hdf-java-2.11.0/0000755002344600011330000000000012441355011011545 5ustar byrnhdfhdf-java-2.11.0/native/0000755002344600011330000000000012441355003013034 5ustar byrnhdfhdf-java-2.11.0/native/Makefile.in0000644002344600011330000000255412225603034015107 0ustar byrnhdf#/**************************************************************************** #* Copyright by The HDF Group. * #* Copyright by the Board of Trustees of the University of Illinois. * #* All rights reserved. * #* * #* This file is part of HDF Java Products. The full HDF Java copyright * #* notice, including terms governing use, modification, and redistribution, * #* is contained in the file, COPYING. COPYING can be found at the root of * #* the source code distribution tree. You can also access it online at * #* http://www.hdfgroup.org/products/licenses.html. If you do not have * #* access to the file, you may request a copy from help@hdfgroup.org. * #****************************************************************************/ H45INC=@H45INC@ H4INC=@HDF4INC@ H5INC=@HDF5INC@ all: hdflib hdf5lib hdflib: FORCE @if test x'$(H4INC)' != x'' ; then $(MAKE) do-hdflib ; fi do-hdflib: cd hdflib; \ $(MAKE) ; hdf5lib: FORCE @if test x'$(H5INC)' != x'' ; then $(MAKE) do-hdf5lib ; fi do-hdf5lib: cd hdf5lib; \ $(MAKE) ; clean: clean-hdflib clean-hdf5lib clean-hdflib: cd hdflib; \ $(MAKE) clean ; clean-hdf5lib: cd hdf5lib; \ $(MAKE) clean ; FORCE: hdf-java-2.11.0/native/CMakeLists.txt0000644002344600011330000003103712355027542015610 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_JNI C) message (STATUS "JAVA: JAVA_HOME=$ENV{JAVA_HOME} JAVA_ROOT=$ENV{JAVA_ROOT}") find_package (JNI) INCLUDE_DIRECTORIES ( ${JNI_INCLUDE_DIRS} ) #----------------------------------------------------------------------------- # Option to Build Shared/Static libs, default is static #----------------------------------------------------------------------------- option (BUILD_SHARED_LIBS "Build Shared Libraries" OFF) set (LIB_TYPE STATIC) if (BUILD_SHARED_LIBS) set (LIB_TYPE SHARED) add_definitions (-DHDFJAVA_BUILT_AS_DYNAMIC_LIB) else (BUILD_SHARED_LIBS) add_definitions (-DHDFJAVA_BUILT_AS_STATIC_LIB) set (CMAKE_POSITION_INDEPENDENT_CODE ON) endif (BUILD_SHARED_LIBS) set (LIB_TYPE ${LIB_TYPE} PARENT_SCOPE) #----------------------------------------------------------------------------- # When building utility executables that generate other (source) files : # we make use of the following variables defined in the root CMakeLists. # Certain systems may add /Debug or /Release to output paths # and we need to call the executable from inside the CMake configuration #----------------------------------------------------------------------------- set (EXE_EXT "") if (WIN32) set (EXE_EXT ".exe") if (NOT CYGWIN) add_definitions (-D_BIND_TO_CURRENT_VCLIBS_VERSION=1) add_definitions (-D_CRT_SECURE_NO_WARNINGS) endif (NOT CYGWIN) endif (WIN32) if (MSVC) set (CMAKE_MFC_FLAG 0) endif (MSVC) #----------------------------------------------------------------------------- # Add some definitions for Debug Builds #----------------------------------------------------------------------------- if (CMAKE_BUILD_TYPE MATCHES Debug) add_definitions (-DDEBUG) #-- NMake Makefiles will overwhelm the console with warnings if -Wall is used. if (NOT WIN32) add_definitions (-Wall) endif (NOT WIN32) else (CMAKE_BUILD_TYPE MATCHES Debug) add_definitions (-UH4_DEBUG_API -DNDEBUG) endif (CMAKE_BUILD_TYPE MATCHES Debug) #----------------------------------------------------------------------------- # Compiler specific flags : Shouldn't there be compiler tests for these #----------------------------------------------------------------------------- if (CMAKE_COMPILER_IS_GNUCC) set (CMAKE_C_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_C_FLAGS} -std=c99 -fomit-frame-pointer -finline-functions -fno-common") endif (CMAKE_COMPILER_IS_GNUCC) if (CMAKE_COMPILER_IS_GNUCXX) set (CMAKE_CXX_FLAGS "${CMAKE_ANSI_CFLAGS} ${CMAKE_CXX_FLAGS} -fomit-frame-pointer -finline-functions -fno-common") endif (CMAKE_COMPILER_IS_GNUCXX) #----------------------------------------------------------------------------- # Option to allow the user to disable compiler warnings #----------------------------------------------------------------------------- option (HDF_DISABLE_COMPILER_WARNINGS "Disable compiler warnings" OFF) if (HDF_DISABLE_COMPILER_WARNINGS) # MSVC uses /w to suppress warnings. It also complains if another # warning level is given, so remove it. if (MSVC) set (HDF_WARNINGS_BLOCKED 1) string (REGEX REPLACE "(^| )([/-])W[0-9]( |$)" " " CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /w") string (REGEX REPLACE "(^| )([/-])W[0-9]( |$)" " " CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /w") endif (MSVC) if (WIN32) add_definitions (-D_CRT_SECURE_NO_WARNINGS) endif (WIN32) # Borland uses -w- to suppress warnings. if (BORLAND) set (HDF_WARNINGS_BLOCKED 1) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w-") endif (BORLAND) # Most compilers use -w to suppress warnings. if (NOT HDF_WARNINGS_BLOCKED) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -w") endif (NOT HDF_WARNINGS_BLOCKED) endif (HDF_DISABLE_COMPILER_WARNINGS) set (EXTERNAL_HEADER_LIST "") set (EXTERNAL_LIBRARY_LIST "") set (EXTERNAL_LIBRARYDLL_LIST "") #----------------------------------------------------------------------------- # This is in here to help some of the GCC based IDES like Eclipse # and code blocks parse the compiler errors and warnings better. #----------------------------------------------------------------------------- if (CMAKE_COMPILER_IS_GNUCC) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fmessage-length=0") endif (CMAKE_COMPILER_IS_GNUCC) if (CMAKE_COMPILER_IS_GNUCXX) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fmessage-length=0") endif (CMAKE_COMPILER_IS_GNUCXX) include (ExternalProject) set (HDF_ALLOW_EXTERNAL_SUPPORT "NO" CACHE STRING "Allow External Library Building (NO SVN TGZ)") set_property (CACHE HDF_ALLOW_EXTERNAL_SUPPORT PROPERTY STRINGS NO SVN TGZ) option (HDF4_USE_EXTERNAL "Use External Library Building for HDF4" 0) option (HDF5_USE_EXTERNAL "Use External Library Building for HDF5" 0) if (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") set (HDF4_USE_EXTERNAL 1 CACHE BOOL "Use External Library Building for HDF4" FORCE) set (HDF5_USE_EXTERNAL 1 CACHE BOOL "Use External Library Building for HDF5" FORCE) if (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN") set (HDF4_URL ${HDF4_SVN_URL}) set (HDF5_URL ${HDF5_SVN_URL}) elseif (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") if (NOT TGZPATH) set (TGZPATH ${HDFJAVA_SOURCE_DIR}) endif (NOT TGZPATH) set (HDF4_URL ${TGZPATH}/${HDF4_TGZ_NAME}) set (HDF5_URL ${TGZPATH}/${HDF5_TGZ_NAME}) endif (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN") endif (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") set (HDF4_LINK_LIBS ${LINK_LIBS}) set (HDF5_LINK_LIBS ${LINK_LIBS}) #----------------------------------------------------------------------------- # HDF4 support #----------------------------------------------------------------------------- if (NOT BUILD_SHARED_LIBS) set (HDF4_USE_STATIC_LIBRARIES 1) endif (NOT BUILD_SHARED_LIBS) if (NOT HJAVA_HDF4_HEADER) if (NOT HDF4_USE_EXTERNAL) find_package (HDF4 NAMES ${HDF4_PACKAGE_NAME}${HDF_PACKAGE_EXT}) if (NOT HDF4_FOUND) find_package (HDF4) # Legacy find endif (NOT HDF4_FOUND) endif (NOT HDF4_USE_EXTERNAL) if (HDF4_FOUND) message (STATUS "HDF4 found: INC=${HDF4_INCLUDE_DIR} TOOLS=${HDF4_TOOLS_DIR}") if ((NOT USE_SHARED_LIBS AND HDF4_BUILD_SHARED_LIBS) OR (USE_SHARED_LIBS AND NOT HDF4_BUILD_SHARED_LIBS)) message (STATUS "HDF4 build type does match requested type") endif ((NOT USE_SHARED_LIBS AND HDF4_BUILD_SHARED_LIBS) OR (USE_SHARED_LIBS AND NOT HDF4_BUILD_SHARED_LIBS)) if (HDF4_BUILD_SHARED_LIBS) add_definitions (-DH4_BUILT_AS_DYNAMIC_LIB) else (HDF4_BUILD_SHARED_LIBS) add_definitions (-DH4_BUILT_AS_STATIC_LIB) endif (HDF4_BUILD_SHARED_LIBS) set (HJAVA_HAVE_HDF_H 1) set (HJAVA_HAVE_HDF4 1) set (HJAVA_HDF4_HEADER "hdf.h") set (HDF4_INCLUDE_DIR_GEN ${HDF4_INCLUDE_DIR}) set (HDF4_INCLUDE_DIRS ${HDF4_INCLUDE_DIR}) else (HDF4_FOUND) if (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") # May need to build JPEG with PIC on x64 machines with gcc # Need to use CMAKE_ANSI_CFLAGS define so that compiler test works if (NOT CMAKE_ANSI_CFLAGS) set (CMAKE_ANSI_CFLAGS " ") endif (NOT CMAKE_ANSI_CFLAGS) if (BUILD_JPEG_WITH_PIC) set (CMAKE_ANSI_CFLAGS "${CMAKE_ANSI_CFLAGS} -fPIC") endif (BUILD_JPEG_WITH_PIC) EXTERNAL_HDF4_LIBRARY (${HDF_ALLOW_EXTERNAL_SUPPORT} ${LIB_TYPE}) set (HJAVA_HAVE_HDF_H 1) set (HJAVA_HAVE_HDF4 1) set (HJAVA_HDF4_HEADER "hdf.h") message (STATUS "HDF4 is built") if (BUILD_SHARED_LIBS) add_definitions (-DH4_BUILT_AS_DYNAMIC_LIB) else (BUILD_SHARED_LIBS) add_definitions (-DH4_BUILT_AS_STATIC_LIB) endif (BUILD_SHARED_LIBS) else (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") message (FATAL_ERROR " HDF4 is Required for HDFJAVA") endif (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") endif (HDF4_FOUND) else (NOT HJAVA_HDF4_HEADER) # This project is being called from within another and HDF4 is already configured set (HJAVA_HAVE_HDF_H 1) set (HJAVA_HAVE_HDF4 1) endif (NOT HJAVA_HDF4_HEADER) if (NOT HDF4_LIBRARY) set (HDF4_LIBRARY ${HDF4_LIBRARIES}) endif (NOT HDF4_LIBRARY) set (HDF4_LINK_LIBS ${HDF4_LINK_LIBS} ${HDF4_LIBRARIES}) INCLUDE_DIRECTORIES (${HDF4_INCLUDE_DIRS}) set (HDF4_FOUND 1 PARENT_SCOPE) set (HDF4_INCLUDE_DIR_GEN ${HDF4_INCLUDE_DIR_GEN} PARENT_SCOPE) set (HDF4_VERSION_STRING ${HDF4_VERSION_STRING} PARENT_SCOPE) #----------------------------------------------------------------------------- # HDF5 support #----------------------------------------------------------------------------- if (NOT BUILD_SHARED_LIBS) set (HDF5_USE_STATIC_LIBRARIES 1) endif (NOT BUILD_SHARED_LIBS) if (NOT HJAVA_HDF5_HEADER) if (NOT HDF5_USE_EXTERNAL) find_package (HDF5 NAMES ${HDF5_PACKAGE_NAME}${HDF_PACKAGE_EXT}) if (NOT HDF5_FOUND) find_package (HDF5) # Legacy find endif (NOT HDF5_FOUND) endif (NOT HDF5_USE_EXTERNAL) if (HDF5_FOUND) message (STATUS "HDF5 found: INC=${HDF5_INCLUDE_DIR} TOOLS=${HDF5_TOOLS_DIR}") if ((NOT USE_SHARED_LIBS AND HDF5_BUILD_SHARED_LIBS) OR (USE_SHARED_LIBS AND NOT HDF5_BUILD_SHARED_LIBS)) message (STATUS "HDF5 build type does match requested type") endif ((NOT USE_SHARED_LIBS AND HDF5_BUILD_SHARED_LIBS) OR (USE_SHARED_LIBS AND NOT HDF5_BUILD_SHARED_LIBS)) if (HDF5_BUILD_SHARED_LIBS) add_definitions (-DH5_BUILT_AS_DYNAMIC_LIB) else (HDF5_BUILD_SHARED_LIBS) add_definitions (-DH5_BUILT_AS_STATIC_LIB) endif (HDF5_BUILD_SHARED_LIBS) set (HJAVA_HAVE_H5PUBCONF_H 1) set (HJAVA_HAVE_HDF5 1) set (HJAVA_HDF5_HEADER "h5pubconf.h") set (HDF5_INCLUDE_DIR_GEN ${HDF5_INCLUDE_DIR}) set (HDF5_INCLUDE_DIRS ${HDF5_INCLUDE_DIR}) else (HDF5_FOUND) if (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") EXTERNAL_HDF5_LIBRARY (${HDF_ALLOW_EXTERNAL_SUPPORT} ${LIB_TYPE}) set (HJAVA_HAVE_H5PUBCONF_H 1) set (HJAVA_HAVE_HDF5 1) set (HJAVA_HDF5_HEADER "h5pubconf.h") message (STATUS "HDF5 is built") if (BUILD_SHARED_LIBS) add_definitions (-DH5_BUILT_AS_DYNAMIC_LIB) else (BUILD_SHARED_LIBS) add_definitions (-DH5_BUILT_AS_STATIC_LIB) endif (BUILD_SHARED_LIBS) else (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") message (FATAL_ERROR " HDF5 is Required for HDFJAVA") endif (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") endif (HDF5_FOUND) else (NOT HJAVA_HDF5_HEADER) # This project is being called from within another and HDF5 is already configured set (HJAVA_HAVE_H5PUBCONF_H 1) set (HJAVA_HAVE_HDF5 1) endif (NOT HJAVA_HDF5_HEADER) if (NOT HDF5_LIBRARY) set (HDF5_LIBRARY ${HDF5_LIBRARIES}) endif (NOT HDF5_LIBRARY) set (HDF5_LINK_LIBS ${HDF5_LINK_LIBS} ${HDF5_LIBRARIES}) INCLUDE_DIRECTORIES (${HDF5_INCLUDE_DIRS}) set (HDF5_FOUND 1 PARENT_SCOPE) set (HDF5_INCLUDE_DIR_GEN ${HDF5_INCLUDE_DIR_GEN} PARENT_SCOPE) set (HDF5_VERSION_STRING ${HDF5_VERSION_STRING} PARENT_SCOPE) add_subdirectory (${HDFJAVA_JNI_SOURCE_DIR}/hdflib hdflib) add_subdirectory (${HDFJAVA_JNI_SOURCE_DIR}/hdf5lib hdf5lib) if (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") if (JPEG_FOUND) add_dependencies (${HDFJAVA_JNI_HDF_LIB_TARGET} JPEG) if (HDF4_FOUND AND HDF4_USE_EXTERNAL) add_dependencies (HDF4 JPEG) endif (HDF4_FOUND AND HDF4_USE_EXTERNAL) endif (JPEG_FOUND) if (ZLIB_FOUND) add_dependencies (${HDFJAVA_JNI_HDF_LIB_TARGET} ZLIB) if (HDF4_FOUND AND HDF4_USE_EXTERNAL) add_dependencies (HDF4 ZLIB) endif (HDF4_FOUND AND HDF4_USE_EXTERNAL) if (HDF5_FOUND AND HDF5_USE_EXTERNAL) add_dependencies (HDF5 ZLIB) endif (HDF5_FOUND AND HDF5_USE_EXTERNAL) endif (ZLIB_FOUND) if (SZIP_FOUND) add_dependencies (${HDFJAVA_JNI_HDF_LIB_TARGET} SZIP) if (HDF4_FOUND AND HDF4_USE_EXTERNAL) add_dependencies (HDF4 SZIP) endif (HDF4_FOUND AND HDF4_USE_EXTERNAL) if (HDF5_FOUND AND HDF5_USE_EXTERNAL) add_dependencies (HDF5 SZIP) endif (HDF5_FOUND AND HDF5_USE_EXTERNAL) endif (SZIP_FOUND) if (HDF4_FOUND AND HDF4_USE_EXTERNAL) add_dependencies (${HDFJAVA_JNI_HDF_LIB_TARGET} HDF4) endif (HDF4_FOUND AND HDF4_USE_EXTERNAL) if (HDF5_FOUND AND HDF5_USE_EXTERNAL) add_dependencies (${HDFJAVA_JNI_HDF5_LIB_TARGET} HDF5) endif (HDF5_FOUND AND HDF5_USE_EXTERNAL) endif (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") hdf-java-2.11.0/native/hdf5lib/0000755002344600011330000000000012441355003014351 5ustar byrnhdfhdf-java-2.11.0/native/hdf5lib/h5eImp.c0000644002344600011330000003412612372144560015661 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifdef __cplusplus extern "C" { #endif /* * This code is the C-interface called by Java programs to access the * general library functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://www.hdfgroup.org/HDF5/doc/ * */ #include #include #include "hdf5.h" #include "h5jni.h" #include "h5eImp.h" /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eauto_is_v2 * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eauto_1is_1v2 (JNIEnv *env, jclass cls, jint stk_id) { herr_t ret_val = -1; unsigned int is_stack = 0; if (stk_id < 0) { h5badArgument(env, "H5Eauto_is_v2: invalid argument"); return 0; } ret_val = H5Eauto_is_v2((hid_t)stk_id, &is_stack); if (ret_val < 0) { h5libraryError(env); return 0; } return is_stack; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eregister_class * Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eregister_1class (JNIEnv *env, jclass cls, jstring cls_name, jstring lib_name, jstring version) { hid_t ret_val = -1; char* the_cls_name; char* the_lib_name; char* the_version; jboolean isCopy; if(cls_name==NULL) { h5nullArgument( env, "H5Eregister_class: error class name is NULL"); return ret_val; } the_cls_name = (char *)ENVPTR->GetStringUTFChars(ENVPAR cls_name,&isCopy); if (the_cls_name == NULL) { h5JNIFatalError( env, "H5Eregister_class: error class name not pinned"); return ret_val; } if(lib_name==NULL) { h5nullArgument( env, "H5Eregister_class: client library or application name is NULL"); return ret_val; } the_lib_name = (char *)ENVPTR->GetStringUTFChars(ENVPAR lib_name,&isCopy); if (the_lib_name == NULL) { h5JNIFatalError( env, "H5Eregister_class: client name not pinned"); return ret_val; } if(version==NULL) { h5nullArgument( env, "H5Eregister_class: version of the client library or application is NULL"); return ret_val; } the_version = (char *)ENVPTR->GetStringUTFChars(ENVPAR version,&isCopy); if (the_version == NULL) { h5JNIFatalError( env, "H5Eregister_class: version not pinned"); return ret_val; } ret_val = H5Eregister_class(the_cls_name, the_lib_name, the_version); ENVPTR->ReleaseStringUTFChars(ENVPAR cls_name, the_cls_name); ENVPTR->ReleaseStringUTFChars(ENVPAR lib_name, the_lib_name); ENVPTR->ReleaseStringUTFChars(ENVPAR version, the_version); if (ret_val < 0) { h5libraryError(env); } return (jint)ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eunregister_class * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eunregister_1class (JNIEnv *env, jclass cls, jint cls_id) { herr_t ret_val = -1; if (cls_id < 0) { h5badArgument(env, "H5Eunregister_class: invalid argument"); return; } ret_val = H5Eunregister_class((hid_t)cls_id); if (ret_val < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eclose_msg * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eclose_1msg (JNIEnv *env, jclass cls, jint err_id) { herr_t ret_val = -1; if (err_id < 0) { h5badArgument(env, "H5Eclose_msg: invalid argument"); return; } ret_val = H5Eclose_msg((hid_t)err_id); if (ret_val < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ecreate_msg * Signature: (IILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ecreate_1msg (JNIEnv *env, jclass cls, jint err_id, jint msg_type, jstring err_msg) { hid_t ret_val = -1; char* the_err_msg; jboolean isCopy; H5E_type_t error_msg_type = (H5E_type_t)msg_type; if (err_id < 0) { h5badArgument(env, "H5Ecreate_msg: invalid argument"); return ret_val; } if(err_msg==NULL) { h5nullArgument( env, "H5Ecreate_msg: error message is NULL"); return ret_val; } the_err_msg = (char *)ENVPTR->GetStringUTFChars(ENVPAR err_msg,&isCopy); if (the_err_msg == NULL) { h5JNIFatalError( env, "H5Ecreate_msg: error message not pinned"); return ret_val; } ret_val = H5Ecreate_msg((hid_t)err_id, error_msg_type, the_err_msg); ENVPTR->ReleaseStringUTFChars(ENVPAR err_msg, the_err_msg); if (ret_val < 0) { h5libraryError(env); return ret_val; } return (jint)ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ecreate_stack * Signature: ()I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ecreate_1stack (JNIEnv *env, jclass cls) { hid_t ret_val = -1; ret_val = H5Ecreate_stack(); if (ret_val < 0) { h5libraryError(env); return -1; } return (jint)ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eget_current_stack * Signature: ()I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eget_1current_1stack (JNIEnv *env, jclass cls) { hid_t ret_val = H5Eget_current_stack(); if (ret_val < 0) { h5libraryError(env); return -1; } return (jint)ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eclose_stack * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eclose_1stack (JNIEnv *env, jclass cls, jint stk_id) { herr_t ret_val = -1; if (stk_id < 0) { h5badArgument(env, "H5Eclose_stack: invalid argument"); return; } ret_val = H5Eclose_stack((hid_t)stk_id); if (ret_val < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eprint1 * Signature: (Ljava/lang/Object;)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eprint1 (JNIEnv *env, jclass cls, jobject stream_obj) { herr_t ret_val = -1; if(!stream_obj) ret_val = H5Eprint1(stdout); else ret_val = H5Eprint1((FILE*)stream_obj); if (ret_val < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eprint2 * Signature: (ILjava/lang/Object;)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eprint2 (JNIEnv *env, jclass cls, jint stk_id, jobject stream_obj) { herr_t ret_val = -1; if (stk_id < 0) { h5badArgument(env, "H5Eprint2: invalid argument"); return; } if(!stream_obj) ret_val = H5Eprint2((hid_t)stk_id, stdout); else ret_val = H5Eprint2((hid_t)stk_id, (FILE*)stream_obj); if (ret_val < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eget_class_name * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eget_1class_1name (JNIEnv *env, jclass cls, jint cls_id) { char *namePtr; jstring str; ssize_t buf_size; if (cls_id < 0) { h5badArgument(env, "H5Eget_class_name: invalid argument"); return NULL; } /* get the length of the name */ buf_size = H5Eget_class_name((hid_t)cls_id, NULL, 0); if (buf_size < 0) { h5badArgument( env, "H5Eget_class_name: buf_size < 0"); return NULL; } if (buf_size == 0) { h5badArgument( env, "H5Eget_class_name: No class name"); return NULL; } buf_size++; /* add extra space for the null terminator */ namePtr = (char*)malloc(sizeof(char)*buf_size); if (namePtr == NULL) { h5outOfMemory( env, "H5Eget_class_name: malloc failed"); return NULL; } buf_size = H5Eget_class_name((hid_t)cls_id, (char *)namePtr, (size_t)buf_size); if (buf_size < 0) { free(namePtr); h5libraryError(env); return NULL; } str = ENVPTR->NewStringUTF(ENVPAR namePtr); free(namePtr); return str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eset_current_stack * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eset_1current_1stack (JNIEnv *env, jclass cls, jint stk_id) { herr_t ret_val = -1; if (stk_id < 0) { h5badArgument(env, "H5Eset_current_stack: invalid argument"); return; } ret_val = H5Eset_current_stack((hid_t)stk_id); if (ret_val < 0) { h5libraryError(env); return; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Epop * Signature: (IJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Epop (JNIEnv *env, jclass cls, jint stk_id, jlong count) { herr_t ret_val = -1; if (stk_id < 0) { h5badArgument(env, "H5Epop: invalid argument"); return; } ret_val = H5Epop((hid_t)stk_id, (size_t)count); if (ret_val < 0) { h5libraryError(env); return; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eclear2 * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eclear2 (JNIEnv *env, jclass cls, jint stk_id) { herr_t ret_val = -1; if (stk_id < 0) { h5badArgument(env, "H5Eclear2: invalid argument"); return; } ret_val = H5Eclear2((hid_t)stk_id); if (ret_val < 0) { h5libraryError(env); return; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eget_msg * Signature: (I[I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eget_1msg (JNIEnv *env, jclass cls, jint msg_id, jintArray error_msg_type_list) { char *namePtr; jstring str; jboolean isCopy; ssize_t buf_size; jint *theArray; H5E_type_t error_msg_type; if (msg_id < 0) { h5badArgument(env, "H5Eget_msg: invalid argument"); return NULL; } /* get the length of the name */ buf_size = H5Eget_msg((hid_t)msg_id, NULL, NULL, 0); if (buf_size < 0) { h5badArgument( env, "H5Eget_msg: buf_size < 0"); return NULL; } if (buf_size == 0) { h5badArgument( env, "H5Eget_msg: No message"); return NULL; } buf_size++; /* add extra space for the null terminator */ namePtr = (char*)malloc(sizeof(char)*buf_size); if (namePtr == NULL) { h5outOfMemory( env, "H5Eget_msg: malloc failed"); return NULL; } if ( error_msg_type_list == NULL ) { h5nullArgument( env, "H5Eget_msg: error_msg_type_list is NULL"); return NULL; } theArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR error_msg_type_list,&isCopy); if (theArray == NULL) { h5JNIFatalError( env, "H5Eget_msg: error_msg_type_list not pinned"); return NULL; } buf_size = H5Eget_msg((hid_t)msg_id, &error_msg_type, (char *)namePtr, (size_t)buf_size); if (buf_size < 0) { free(namePtr); ENVPTR->ReleaseIntArrayElements(ENVPAR error_msg_type_list,theArray,JNI_ABORT); h5libraryError(env); return NULL; } theArray[0] = error_msg_type; ENVPTR->ReleaseIntArrayElements(ENVPAR error_msg_type_list,theArray,0); str = ENVPTR->NewStringUTF(ENVPAR namePtr); free(namePtr); return str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eget_num * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eget_1num (JNIEnv *env, jclass cls, jint stk_id) { ssize_t ret_val = -1; if (stk_id < 0) { h5badArgument(env, "H5Eget_num: invalid argument"); return -1; } ret_val = H5Eget_num((hid_t)stk_id); if (ret_val < 0) { h5libraryError(env); return -1; } return ret_val; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5Constants.c0000644002344600011330000023125612415001402016727 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifdef __cplusplus extern "C" { #endif #include #include "hdf5.h" JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1QUARTER_1HADDR_1MAX(JNIEnv *env, jclass cls) { return (hsize_t)HADDR_MAX/4; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1SZIP_1ALLOW_1K13_1OPTION_1MASK(JNIEnv *env, jclass cls) { return H5_SZIP_ALLOW_K13_OPTION_MASK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1SZIP_1CHIP_1OPTION_1MASK(JNIEnv *env, jclass cls) { return H5_SZIP_CHIP_OPTION_MASK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1SZIP_1EC_1OPTION_1MASK(JNIEnv *env, jclass cls) { return H5_SZIP_EC_OPTION_MASK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1SZIP_1MAX_1PIXELS_1PER_1BLOCK(JNIEnv *env, jclass cls) { return H5_SZIP_MAX_PIXELS_PER_BLOCK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1SZIP_1NN_1OPTION_1MASK(JNIEnv *env, jclass cls) { return H5_SZIP_NN_OPTION_MASK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1INDEX_1UNKNOWN(JNIEnv *env, jclass cls) { return H5_INDEX_UNKNOWN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1INDEX_1NAME(JNIEnv *env, jclass cls) { return H5_INDEX_NAME; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1INDEX_1CRT_1ORDER(JNIEnv *env, jclass cls) { return H5_INDEX_CRT_ORDER; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1INDEX_1N(JNIEnv *env, jclass cls) { return H5_INDEX_N; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1ITER_1UNKNOWN(JNIEnv *env, jclass cls) { return H5_ITER_UNKNOWN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1ITER_1INC(JNIEnv *env, jclass cls) { return H5_ITER_INC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1ITER_1DEC(JNIEnv *env, jclass cls) { return H5_ITER_DEC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1ITER_1NATIVE(JNIEnv *env, jclass cls) { return H5_ITER_NATIVE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5_1ITER_1N(JNIEnv *env, jclass cls) { return H5_ITER_N; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5AC_1CURR_1CACHE_1CONFIG_1VERSION(JNIEnv *env, jclass cls) { return H5AC__CURR_CACHE_CONFIG_VERSION; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5AC_1MAX_1TRACE_1FILE_1NAME_1LEN(JNIEnv *env, jclass cls) { return H5AC__MAX_TRACE_FILE_NAME_LEN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5AC_1METADATA_1WRITE_1STRATEGY_1PROCESS_1ZERO_1ONLY(JNIEnv *env, jclass cls) { #if (H5_VERS_RELEASE >= 6) return H5AC_METADATA_WRITE_STRATEGY__PROCESS_0_ONLY; #else return 0; #endif } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5AC_1METADATA_1WRITE_1STRATEGY_1DISTRIBUTED(JNIEnv *env, jclass cls) { #if (H5_VERS_RELEASE >= 6) return H5AC_METADATA_WRITE_STRATEGY__DISTRIBUTED; #else return 0; #endif } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5C_1incr_1off(JNIEnv *env, jclass cls) { return H5C_incr__off; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5C_1incr_1threshold(JNIEnv *env, jclass cls) { return H5C_incr__threshold; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5C_1flash_1incr_1off(JNIEnv *env, jclass cls) { return H5C_flash_incr__off; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5C_1flash_1incr_1add_1space(JNIEnv *env, jclass cls) { return H5C_flash_incr__add_space; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5C_1decr_1off(JNIEnv *env, jclass cls) { return H5C_decr__off; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5C_1decr_1threshold(JNIEnv *env, jclass cls) { return H5C_decr__threshold; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5C_1decr_1age_1out(JNIEnv *env, jclass cls) { return H5C_decr__age_out; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5C_1decr_1age_1out_1with_1threshold(JNIEnv *env, jclass cls) { return H5C_decr__age_out_with_threshold; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1CHUNK_1BTREE(JNIEnv *env, jclass cls) { return H5D_CHUNK_BTREE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1ALLOC_1TIME_1DEFAULT(JNIEnv *env, jclass cls) { return H5D_ALLOC_TIME_DEFAULT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1ALLOC_1TIME_1EARLY(JNIEnv *env, jclass cls) { return H5D_ALLOC_TIME_EARLY; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1ALLOC_1TIME_1ERROR(JNIEnv *env, jclass cls) { return H5D_ALLOC_TIME_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1ALLOC_1TIME_1INCR(JNIEnv *env, jclass cls) { return H5D_ALLOC_TIME_INCR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1ALLOC_1TIME_1LATE(JNIEnv *env, jclass cls) { return H5D_ALLOC_TIME_LATE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1FILL_1TIME_1ERROR(JNIEnv *env, jclass cls) { return H5D_FILL_TIME_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1FILL_1TIME_1ALLOC(JNIEnv *env, jclass cls) { return H5D_FILL_TIME_ALLOC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1FILL_1TIME_1NEVER(JNIEnv *env, jclass cls) { return H5D_FILL_TIME_NEVER; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1FILL_1TIME_1IFSET(JNIEnv *env, jclass cls) { return H5D_FILL_TIME_IFSET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1FILL_1VALUE_1DEFAULT(JNIEnv *env, jclass cls) { return H5D_FILL_VALUE_DEFAULT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1FILL_1VALUE_1ERROR(JNIEnv *env, jclass cls) { return H5D_FILL_VALUE_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1FILL_1VALUE_1UNDEFINED(JNIEnv *env, jclass cls) { return H5D_FILL_VALUE_UNDEFINED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1FILL_1VALUE_1USER_1DEFINED(JNIEnv *env, jclass cls) { return H5D_FILL_VALUE_USER_DEFINED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1LAYOUT_1ERROR(JNIEnv *env, jclass cls) { return H5D_LAYOUT_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1CHUNKED(JNIEnv *env, jclass cls) { return H5D_CHUNKED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1COMPACT(JNIEnv *env, jclass cls) { return H5D_COMPACT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1CONTIGUOUS(JNIEnv *env, jclass cls) { return H5D_CONTIGUOUS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1NLAYOUTS(JNIEnv *env, jclass cls) { return H5D_NLAYOUTS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1SPACE_1STATUS_1ALLOCATED(JNIEnv *env, jclass cls) { return H5D_SPACE_STATUS_ALLOCATED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1SPACE_1STATUS_1ERROR(JNIEnv *env, jclass cls) { return H5D_SPACE_STATUS_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1SPACE_1STATUS_1NOT_1ALLOCATED(JNIEnv *env, jclass cls) { return H5D_SPACE_STATUS_NOT_ALLOCATED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5D_1SPACE_1STATUS_1PART_1ALLOCATED(JNIEnv *env, jclass cls) { return H5D_SPACE_STATUS_PART_ALLOCATED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1ALIGNMENT(JNIEnv *env, jclass cls) { return H5E_ALIGNMENT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1ALREADYEXISTS(JNIEnv *env, jclass cls) { return H5E_ALREADYEXISTS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1ALREADYINIT(JNIEnv *env, jclass cls) { return H5E_ALREADYINIT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1ARGS(JNIEnv *env, jclass cls) { return H5E_ARGS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1ATOM(JNIEnv *env, jclass cls) { return H5E_ATOM; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1ATTR(JNIEnv *env, jclass cls) { return H5E_ATTR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BADATOM(JNIEnv *env, jclass cls) { return H5E_BADATOM; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BADFILE(JNIEnv *env, jclass cls) { return H5E_BADFILE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BADGROUP(JNIEnv *env, jclass cls) { return H5E_BADGROUP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BADMESG(JNIEnv *env, jclass cls) { return H5E_BADMESG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BADRANGE(JNIEnv *env, jclass cls) { return H5E_BADRANGE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BADSELECT(JNIEnv *env, jclass cls) { return H5E_BADSELECT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BADSIZE(JNIEnv *env, jclass cls) { return H5E_BADSIZE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BADTYPE(JNIEnv *env, jclass cls) { return H5E_BADTYPE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BADVALUE(JNIEnv *env, jclass cls) { return H5E_BADVALUE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1BTREE(JNIEnv *env, jclass cls) { return H5E_BTREE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CACHE(JNIEnv *env, jclass cls) { return H5E_CACHE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CALLBACK(JNIEnv *env, jclass cls) { return H5E_CALLBACK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANAPPLY(JNIEnv *env, jclass cls) { return H5E_CANAPPLY; } /*JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTALLOC(JNIEnv *env, jclass cls) { return H5E_CANTALLOC; }*/ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTCLIP(JNIEnv *env, jclass cls) { return H5E_CANTCLIP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTCLOSEFILE(JNIEnv *env, jclass cls) { return H5E_CANTCLOSEFILE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTCONVERT(JNIEnv *env, jclass cls) { return H5E_CANTCONVERT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTCOPY(JNIEnv *env, jclass cls) { return H5E_CANTCOPY; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTCOUNT(JNIEnv *env, jclass cls) { return H5E_CANTCOUNT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTCREATE(JNIEnv *env, jclass cls) { return H5E_CANTCREATE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTDEC(JNIEnv *env, jclass cls) { return H5E_CANTDEC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTDECODE(JNIEnv *env, jclass cls) { return H5E_CANTDECODE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTDELETE(JNIEnv *env, jclass cls) { return H5E_CANTDELETE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTENCODE(JNIEnv *env, jclass cls) { return H5E_CANTENCODE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTFLUSH(JNIEnv *env, jclass cls) { return H5E_CANTFLUSH; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTFREE(JNIEnv *env, jclass cls) { return H5E_CANTFREE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTGET(JNIEnv *env, jclass cls) { return H5E_CANTGET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTINC(JNIEnv *env, jclass cls) { return H5E_CANTINC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTINIT(JNIEnv *env, jclass cls) { return H5E_CANTINIT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTINSERT(JNIEnv *env, jclass cls) { return H5E_CANTINSERT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTLIST(JNIEnv *env, jclass cls) { return H5E_CANTLIST; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTLOAD(JNIEnv *env, jclass cls) { return H5E_CANTLOAD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTLOCK(JNIEnv *env, jclass cls) { return H5E_CANTLOCK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTNEXT(JNIEnv *env, jclass cls) { return H5E_CANTNEXT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTOPENFILE(JNIEnv *env, jclass cls) { return H5E_CANTOPENFILE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTOPENOBJ(JNIEnv *env, jclass cls) { return H5E_CANTOPENOBJ; } /*JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTRECV(JNIEnv *env, jclass cls) { return H5E_CANTRECV; }*/ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTREGISTER(JNIEnv *env, jclass cls) { return H5E_CANTREGISTER; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTRELEASE(JNIEnv *env, jclass cls) { return H5E_CANTRELEASE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTSELECT(JNIEnv *env, jclass cls) { return H5E_CANTSELECT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTSET(JNIEnv *env, jclass cls) { return H5E_CANTSET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTSPLIT(JNIEnv *env, jclass cls) { return H5E_CANTSPLIT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CANTUNLOCK(JNIEnv *env, jclass cls) { return H5E_CANTUNLOCK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1CLOSEERROR(JNIEnv *env, jclass cls) { return H5E_CLOSEERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1COMPLEN(JNIEnv *env, jclass cls) { return H5E_COMPLEN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1DATASET(JNIEnv *env, jclass cls) { return H5E_DATASET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1DATASPACE(JNIEnv *env, jclass cls) { return H5E_DATASPACE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1DATATYPE(JNIEnv *env, jclass cls) { return H5E_DATATYPE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1DEFAULT(JNIEnv *env, jclass cls) { return H5E_DEFAULT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1DUPCLASS(JNIEnv *env, jclass cls) { return H5E_DUPCLASS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1EFL(JNIEnv *env, jclass cls) { return H5E_EFL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1EXISTS(JNIEnv *env, jclass cls) { return H5E_EXISTS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1FCNTL(JNIEnv *env, jclass cls) { return H5E_FCNTL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1FILE(JNIEnv *env, jclass cls) { return H5E_FILE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1FILEEXISTS(JNIEnv *env, jclass cls) { return H5E_FILEEXISTS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1FILEOPEN(JNIEnv *env, jclass cls) { return H5E_FILEOPEN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1FUNC(JNIEnv *env, jclass cls) { return H5E_FUNC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1HEAP(JNIEnv *env, jclass cls) { return H5E_HEAP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1INTERNAL(JNIEnv *env, jclass cls) { return H5E_INTERNAL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1IO(JNIEnv *env, jclass cls) { return H5E_IO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1LINK(JNIEnv *env, jclass cls) { return H5E_LINK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1LINKCOUNT(JNIEnv *env, jclass cls) { return H5E_LINKCOUNT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1MAJOR(JNIEnv *env, jclass cls) { return H5E_MAJOR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1MINOR(JNIEnv *env, jclass cls) { return H5E_MINOR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1MOUNT(JNIEnv *env, jclass cls) { return H5E_MOUNT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1MPI(JNIEnv *env, jclass cls) { return H5E_MPI; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1MPIERRSTR(JNIEnv *env, jclass cls) { return H5E_MPIERRSTR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1NOFILTER(JNIEnv *env, jclass cls) { return H5E_NOFILTER; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1NOIDS(JNIEnv *env, jclass cls) { return H5E_NOIDS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1NONE_1MAJOR(JNIEnv *env, jclass cls) { return H5E_NONE_MAJOR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1NONE_1MINOR(JNIEnv *env, jclass cls) { return H5E_NONE_MINOR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1NOSPACE(JNIEnv *env, jclass cls) { return H5E_NOSPACE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1NOTCACHED(JNIEnv *env, jclass cls) { return H5E_NOTCACHED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1NOTFOUND(JNIEnv *env, jclass cls) { return H5E_NOTFOUND; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1NOTHDF5(JNIEnv *env, jclass cls) { return H5E_NOTHDF5; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1OHDR(JNIEnv *env, jclass cls) { return H5E_OHDR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1OVERFLOW(JNIEnv *env, jclass cls) { return H5E_OVERFLOW; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1PLINE(JNIEnv *env, jclass cls) { return H5E_PLINE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1PLIST(JNIEnv *env, jclass cls) { return H5E_PLIST; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1PROTECT(JNIEnv *env, jclass cls) { return H5E_PROTECT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1READERROR(JNIEnv *env, jclass cls) { return H5E_READERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1REFERENCE(JNIEnv *env, jclass cls) { return H5E_REFERENCE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1RESOURCE(JNIEnv *env, jclass cls) { return H5E_RESOURCE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1RS(JNIEnv *env, jclass cls) { return H5E_RS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1SEEKERROR(JNIEnv *env, jclass cls) { return H5E_SEEKERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1SETLOCAL(JNIEnv *env, jclass cls) { return H5E_SETLOCAL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1STORAGE(JNIEnv *env, jclass cls) { return H5E_STORAGE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1SYM(JNIEnv *env, jclass cls) { return H5E_SYM; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1TRUNCATED(JNIEnv *env, jclass cls) { return H5E_TRUNCATED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1TST(JNIEnv *env, jclass cls) { return H5E_TST; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1UNINITIALIZED(JNIEnv *env, jclass cls) { return H5E_UNINITIALIZED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1UNSUPPORTED(JNIEnv *env, jclass cls) { return H5E_UNSUPPORTED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1VERSION(JNIEnv *env, jclass cls) { return H5E_VERSION; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1VFL(JNIEnv *env, jclass cls) { return H5E_VFL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1WALK_1DOWNWARD(JNIEnv *env, jclass cls) { return H5E_WALK_DOWNWARD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1WALK_1UPWARD(JNIEnv *env, jclass cls) { return H5E_WALK_UPWARD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5E_1WRITEERROR(JNIEnv *env, jclass cls) { return H5E_WRITEERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1ACC_1CREAT(JNIEnv *env, jclass cls) { return H5F_ACC_CREAT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1ACC_1DEBUG(JNIEnv *env, jclass cls) { return H5F_ACC_DEBUG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1ACC_1EXCL(JNIEnv *env, jclass cls) { return H5F_ACC_EXCL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1ACC_1RDONLY(JNIEnv *env, jclass cls) { return H5F_ACC_RDONLY; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1ACC_1RDWR(JNIEnv *env, jclass cls) { return H5F_ACC_RDWR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1ACC_1TRUNC(JNIEnv *env, jclass cls) { return H5F_ACC_TRUNC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1ACC_1DEFAULT(JNIEnv *env, jclass cls) { return H5F_ACC_DEFAULT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1CLOSE_1DEFAULT(JNIEnv *env, jclass cls) { return H5F_CLOSE_DEFAULT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1CLOSE_1SEMI(JNIEnv *env, jclass cls) { return H5F_CLOSE_SEMI; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1CLOSE_1STRONG(JNIEnv *env, jclass cls) { return H5F_CLOSE_STRONG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1CLOSE_1WEAK(JNIEnv *env, jclass cls) { return H5F_CLOSE_WEAK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1LIBVER_1EARLIEST(JNIEnv *env, jclass cls){return H5F_LIBVER_EARLIEST;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1LIBVER_1LATEST(JNIEnv *env, jclass cls){return H5F_LIBVER_LATEST;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1OBJ_1ALL(JNIEnv *env, jclass cls) { return H5F_OBJ_ALL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1OBJ_1ATTR(JNIEnv *env, jclass cls) { return H5F_OBJ_ATTR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1OBJ_1DATASET(JNIEnv *env, jclass cls) { return H5F_OBJ_DATASET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1OBJ_1DATATYPE(JNIEnv *env, jclass cls) { return H5F_OBJ_DATATYPE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1OBJ_1FILE(JNIEnv *env, jclass cls) { return H5F_OBJ_FILE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1OBJ_1GROUP(JNIEnv *env, jclass cls) { return H5F_OBJ_GROUP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1OBJ_1LOCAL(JNIEnv *env, jclass cls) { return H5F_OBJ_LOCAL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1SCOPE_1GLOBAL(JNIEnv *env, jclass cls) { return H5F_SCOPE_GLOBAL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1SCOPE_1LOCAL(JNIEnv *env, jclass cls) { return H5F_SCOPE_LOCAL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5F_1UNLIMITED(JNIEnv *env, jclass cls) { return (jint)H5F_UNLIMITED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1CORE(JNIEnv *env, jclass cls) { return H5FD_CORE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1DIRECT(JNIEnv *env, jclass cls) { #ifdef H5_HAVE_DIRECT return H5FD_DIRECT; #else return -1; #endif } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1FAMILY(JNIEnv *env, jclass cls) { return H5FD_FAMILY; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG(JNIEnv *env, jclass cls) { return H5FD_LOG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MPIO(JNIEnv *env, jclass cls) { return H5FD_MPIO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MULTI(JNIEnv *env, jclass cls) { return H5FD_MULTI; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1SEC2(JNIEnv *env, jclass cls) { return H5FD_SEC2; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1STDIO(JNIEnv *env, jclass cls) { return H5FD_STDIO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1WINDOWS(JNIEnv *env, jclass cls) { #ifdef H5_HAVE_WINDOWS return H5FD_DIRECT; #else return -1; #endif } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1LOC_1READ(JNIEnv *env, jclass cls) { return H5FD_LOG_LOC_READ; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1LOC_1WRITE(JNIEnv *env, jclass cls) { return H5FD_LOG_LOC_WRITE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1LOC_1SEEK(JNIEnv *env, jclass cls) { return H5FD_LOG_LOC_SEEK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1LOC_1IO(JNIEnv *env, jclass cls) { return H5FD_LOG_LOC_IO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1FILE_1READ(JNIEnv *env, jclass cls) { return H5FD_LOG_FILE_READ; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1FILE_1WRITE(JNIEnv *env, jclass cls) { return H5FD_LOG_FILE_WRITE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1FILE_1IO(JNIEnv *env, jclass cls) { return H5FD_LOG_FILE_IO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1FLAVOR(JNIEnv *env, jclass cls) { return H5FD_LOG_FLAVOR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1NUM_1READ(JNIEnv *env, jclass cls) { return H5FD_LOG_NUM_READ; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1NUM_1WRITE(JNIEnv *env, jclass cls) { return H5FD_LOG_NUM_WRITE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1NUM_1SEEK(JNIEnv *env, jclass cls) { return H5FD_LOG_NUM_SEEK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1NUM_1TRUNCATE(JNIEnv *env, jclass cls) { #if (H5_VERS_RELEASE > 6) /* H5_VERSION_GE(1,8,7) */ return H5FD_LOG_NUM_TRUNCATE; #else return 0; #endif } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1NUM_1IO(JNIEnv *env, jclass cls) { return H5FD_LOG_NUM_IO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1TIME_1OPEN(JNIEnv *env, jclass cls) { return H5FD_LOG_TIME_OPEN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1TIME_1STAT(JNIEnv *env, jclass cls) { #if (H5_VERS_RELEASE > 6) /* H5_VERSION_GE(1,8,7) */ return H5FD_LOG_TIME_STAT; #else return 0; #endif } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1TIME_1READ(JNIEnv *env, jclass cls) { return H5FD_LOG_TIME_READ; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1TIME_1WRITE(JNIEnv *env, jclass cls) { return H5FD_LOG_TIME_WRITE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1TIME_1SEEK(JNIEnv *env, jclass cls) { return H5FD_LOG_TIME_SEEK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1TIME_1CLOSE(JNIEnv *env, jclass cls) { return H5FD_LOG_TIME_CLOSE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1TIME_1IO(JNIEnv *env, jclass cls) { return H5FD_LOG_TIME_IO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1ALLOC(JNIEnv *env, jclass cls) { return H5FD_LOG_ALLOC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1LOG_1ALL(JNIEnv *env, jclass cls) { return H5FD_LOG_ALL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1NOLIST(JNIEnv *env, jclass cls) { return H5FD_MEM_NOLIST; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1DEFAULT(JNIEnv *env, jclass cls) { return H5FD_MEM_DEFAULT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1SUPER(JNIEnv *env, jclass cls) { return H5FD_MEM_SUPER; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1BTREE(JNIEnv *env, jclass cls) { return H5FD_MEM_BTREE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1DRAW(JNIEnv *env, jclass cls) { return H5FD_MEM_DRAW; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1GHEAP(JNIEnv *env, jclass cls) { return H5FD_MEM_GHEAP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1LHEAP(JNIEnv *env, jclass cls) { return H5FD_MEM_LHEAP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1OHDR(JNIEnv *env, jclass cls) { return H5FD_MEM_OHDR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1NTYPES(JNIEnv *env, jclass cls) { return H5FD_MEM_NTYPES; } JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1DEFAULT_1HADDR_1SIZE(JNIEnv *env, jclass cls) { return (hsize_t)(HADDR_MAX/H5FD_MEM_NTYPES); } JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1DEFAULT_1SIZE(JNIEnv *env, jclass cls) { return (hsize_t)0; } JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1DEFAULT_1SUPER_1SIZE(JNIEnv *env, jclass cls) { return (hsize_t)0; } JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1DEFAULT_1BTREE_1SIZE(JNIEnv *env, jclass cls) { return (hsize_t)(1 * (HADDR_MAX / (H5FD_MEM_NTYPES-1))); } JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1DEFAULT_1DRAW_1SIZE(JNIEnv *env, jclass cls) { return (hsize_t)(2 * (HADDR_MAX / (H5FD_MEM_NTYPES-1))); } JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1DEFAULT_1GHEAP_1SIZE(JNIEnv *env, jclass cls) { return (hsize_t)(3 * (HADDR_MAX / (H5FD_MEM_NTYPES-1))); } JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1DEFAULT_1LHEAP_1SIZE(JNIEnv *env, jclass cls) { return (hsize_t)(4 * (HADDR_MAX / (H5FD_MEM_NTYPES-1))); } JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5FD_1MEM_1DEFAULT_1OHDR_1SIZE(JNIEnv *env, jclass cls) { return (hsize_t)(5 * (HADDR_MAX / (H5FD_MEM_NTYPES-1))); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1DATASET(JNIEnv *env, jclass cls) { return H5G_DATASET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1GROUP(JNIEnv *env, jclass cls) { return H5G_GROUP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1LINK(JNIEnv *env, jclass cls) { return H5G_LINK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1UDLINK(JNIEnv *env, jclass cls) { return H5G_UDLINK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1LINK_1ERROR(JNIEnv *env, jclass cls) { return H5G_LINK_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1LINK_1HARD(JNIEnv *env, jclass cls) { return H5G_LINK_HARD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1LINK_1SOFT(JNIEnv *env, jclass cls) { return H5G_LINK_SOFT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1NLIBTYPES(JNIEnv *env, jclass cls) { return H5G_NLIBTYPES; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1NTYPES(JNIEnv *env, jclass cls) { return H5G_NTYPES; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1NUSERTYPES(JNIEnv *env, jclass cls) { return H5G_NUSERTYPES; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1RESERVED_15(JNIEnv *env, jclass cls) { return H5G_RESERVED_5; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1RESERVED_16(JNIEnv *env, jclass cls) { return H5G_RESERVED_6; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1RESERVED_17(JNIEnv *env, jclass cls) { return H5G_RESERVED_7; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1SAME_1LOC(JNIEnv *env, jclass cls) { return H5G_SAME_LOC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1STORAGE_1TYPE_1UNKNOWN(JNIEnv *env, jclass cls){ return H5G_STORAGE_TYPE_UNKNOWN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1STORAGE_1TYPE_1SYMBOL_1TABLE(JNIEnv *env, jclass cls){ return H5G_STORAGE_TYPE_SYMBOL_TABLE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1STORAGE_1TYPE_1COMPACT(JNIEnv *env, jclass cls){ return H5G_STORAGE_TYPE_COMPACT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1STORAGE_1TYPE_1DENSE(JNIEnv *env, jclass cls){ return H5G_STORAGE_TYPE_DENSE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1TYPE(JNIEnv *env, jclass cls) { return H5G_TYPE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5G_1UNKNOWN(JNIEnv *env, jclass cls) { return H5G_UNKNOWN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1ATTR(JNIEnv *env, jclass cls) { return H5I_ATTR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1BADID(JNIEnv *env, jclass cls) { return H5I_BADID; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1DATASET(JNIEnv *env, jclass cls) { return H5I_DATASET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1DATASPACE(JNIEnv *env, jclass cls) { return H5I_DATASPACE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1DATATYPE(JNIEnv *env, jclass cls) { return H5I_DATATYPE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1FILE(JNIEnv *env, jclass cls) { return H5I_FILE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1GENPROP_1CLS(JNIEnv *env, jclass cls) { return H5I_GENPROP_CLS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1GENPROP_1LST(JNIEnv *env, jclass cls) { return H5I_GENPROP_LST; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1GROUP(JNIEnv *env, jclass cls) { return H5I_GROUP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1INVALID_1HID(JNIEnv *env, jclass cls) { return H5I_INVALID_HID; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1REFERENCE(JNIEnv *env, jclass cls) { return H5I_REFERENCE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5I_1VFL(JNIEnv *env, jclass cls) { return H5I_VFL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5L_1TYPE_1ERROR(JNIEnv *env, jclass cls) { return H5L_TYPE_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5L_1TYPE_1HARD(JNIEnv *env, jclass cls) { return H5L_TYPE_HARD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5L_1TYPE_1SOFT(JNIEnv *env, jclass cls) { return H5L_TYPE_SOFT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5L_1TYPE_1EXTERNAL(JNIEnv *env, jclass cls) { return H5L_TYPE_EXTERNAL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5L_1TYPE_1MAX(JNIEnv *env, jclass cls) { return H5L_TYPE_MAX; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1COPY_1SHALLOW_1HIERARCHY_1FLAG(JNIEnv *env, jclass cls){return H5O_COPY_SHALLOW_HIERARCHY_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1COPY_1EXPAND_1SOFT_1LINK_1FLAG(JNIEnv *env, jclass cls){return H5O_COPY_EXPAND_SOFT_LINK_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1COPY_1EXPAND_1EXT_1LINK_1FLAG(JNIEnv *env, jclass cls){return H5O_COPY_EXPAND_EXT_LINK_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1COPY_1EXPAND_1REFERENCE_1FLAG(JNIEnv *env, jclass cls){return H5O_COPY_EXPAND_REFERENCE_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1COPY_1WITHOUT_1ATTR_1FLAG(JNIEnv *env, jclass cls){return H5O_COPY_WITHOUT_ATTR_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1COPY_1PRESERVE_1NULL_1FLAG(JNIEnv *env, jclass cls){return H5O_COPY_PRESERVE_NULL_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1SHMESG_1NONE_1FLAG(JNIEnv *env, jclass cls){return H5O_SHMESG_NONE_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1SHMESG_1SDSPACE_1FLAG(JNIEnv *env, jclass cls){return H5O_SHMESG_SDSPACE_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1SHMESG_1DTYPE_1FLAG(JNIEnv *env, jclass cls){return H5O_SHMESG_DTYPE_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1SHMESG_1FILL_1FLAG(JNIEnv *env, jclass cls){return H5O_SHMESG_FILL_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1SHMESG_1PLINE_1FLAG(JNIEnv *env, jclass cls){return H5O_SHMESG_PLINE_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1SHMESG_1ATTR_1FLAG(JNIEnv *env, jclass cls){return H5O_SHMESG_ATTR_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1SHMESG_1ALL_1FLAG(JNIEnv *env, jclass cls){return H5O_SHMESG_ALL_FLAG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1TYPE_1UNKNOWN(JNIEnv *env, jclass cls) { return H5O_TYPE_UNKNOWN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1TYPE_1GROUP(JNIEnv *env, jclass cls) { return H5O_TYPE_GROUP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1TYPE_1DATASET(JNIEnv *env, jclass cls) { return H5O_TYPE_DATASET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1TYPE_1NAMED_1DATATYPE(JNIEnv *env, jclass cls) { return H5O_TYPE_NAMED_DATATYPE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5O_1TYPE_1NTYPES(JNIEnv *env, jclass cls) { return H5O_TYPE_NTYPES; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1ROOT(JNIEnv *env, jclass cls){return H5P_ROOT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1OBJECT_1CREATE(JNIEnv *env, jclass cls){return H5P_OBJECT_CREATE;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1FILE_1CREATE(JNIEnv *env, jclass cls){return H5P_FILE_CREATE;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1FILE_1ACCESS(JNIEnv *env, jclass cls){return H5P_FILE_ACCESS;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATASET_1CREATE(JNIEnv *env, jclass cls){return H5P_DATASET_CREATE;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATASET_1ACCESS(JNIEnv *env, jclass cls){return H5P_DATASET_ACCESS;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATASET_1XFER(JNIEnv *env, jclass cls){return H5P_DATASET_XFER;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1FILE_1MOUNT(JNIEnv *env, jclass cls){return H5P_FILE_MOUNT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1GROUP_1CREATE(JNIEnv *env, jclass cls){return H5P_GROUP_CREATE;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1GROUP_1ACCESS(JNIEnv *env, jclass cls){return H5P_GROUP_ACCESS;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATATYPE_1CREATE(JNIEnv *env, jclass cls){return H5P_DATATYPE_CREATE;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATATYPE_1ACCESS(JNIEnv *env, jclass cls){return H5P_DATATYPE_ACCESS;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1STRING_1CREATE(JNIEnv *env, jclass cls){return H5P_STRING_CREATE;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1ATTRIBUTE_1CREATE(JNIEnv *env, jclass cls){return H5P_ATTRIBUTE_CREATE;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1OBJECT_1COPY(JNIEnv *env, jclass cls){return H5P_OBJECT_COPY;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1LINK_1CREATE(JNIEnv *env, jclass cls){return H5P_LINK_CREATE;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1LINK_1ACCESS(JNIEnv *env, jclass cls){return H5P_LINK_ACCESS;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1FILE_1CREATE_1DEFAULT(JNIEnv *env, jclass cls){return H5P_FILE_CREATE_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1FILE_1ACCESS_1DEFAULT(JNIEnv *env, jclass cls){return H5P_FILE_ACCESS_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATASET_1CREATE_1DEFAULT(JNIEnv *env, jclass cls){return H5P_DATASET_CREATE_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATASET_1ACCESS_1DEFAULT(JNIEnv *env, jclass cls){return H5P_DATASET_ACCESS_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATASET_1XFER_1DEFAULT(JNIEnv *env, jclass cls){return H5P_DATASET_XFER_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1FILE_1MOUNT_1DEFAULT(JNIEnv *env, jclass cls){return H5P_FILE_MOUNT_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1GROUP_1CREATE_1DEFAULT(JNIEnv *env, jclass cls){return H5P_GROUP_CREATE_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1GROUP_1ACCESS_1DEFAULT(JNIEnv *env, jclass cls){return H5P_GROUP_ACCESS_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATATYPE_1CREATE_1DEFAULT(JNIEnv *env, jclass cls){return H5P_DATATYPE_CREATE_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DATATYPE_1ACCESS_1DEFAULT(JNIEnv *env, jclass cls){return H5P_DATATYPE_ACCESS_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1ATTRIBUTE_1CREATE_1DEFAULT(JNIEnv *env, jclass cls){return H5P_ATTRIBUTE_CREATE_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1OBJECT_1COPY_1DEFAULT(JNIEnv *env, jclass cls){return H5P_OBJECT_COPY_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1LINK_1CREATE_1DEFAULT(JNIEnv *env, jclass cls){return H5P_LINK_CREATE_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1LINK_1ACCESS_1DEFAULT(JNIEnv *env, jclass cls){return H5P_LINK_ACCESS_DEFAULT;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1CRT_1ORDER_1TRACKED(JNIEnv *env, jclass cls){return H5P_CRT_ORDER_TRACKED;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1CRT_1ORDER_1INDEXED(JNIEnv *env, jclass cls){return H5P_CRT_ORDER_INDEXED;} JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1DEFAULT(JNIEnv *env, jclass cls) { return H5P_DEFAULT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5P_1NO_1CLASS(JNIEnv *env, jclass cls) { return H5P_NO_CLASS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5R_1BADTYPE(JNIEnv *env, jclass cls) { return H5R_BADTYPE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5R_1MAXTYPE(JNIEnv *env, jclass cls) { return H5R_MAXTYPE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5R_1OBJ_1REF_1BUF_1SIZE(JNIEnv *env, jclass cls) { return H5R_OBJ_REF_BUF_SIZE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5R_1DSET_1REG_1REF_1BUF_1SIZE(JNIEnv *env, jclass cls) { return H5R_DSET_REG_REF_BUF_SIZE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5R_1OBJECT(JNIEnv *env, jclass cls) { return H5R_OBJECT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5R_1DATASET_1REGION(JNIEnv *env, jclass cls) { return H5R_DATASET_REGION; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1ALL(JNIEnv *env, jclass cls) { return H5S_ALL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1MAX_1RANK(JNIEnv *env, jclass cls) { return H5S_MAX_RANK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1NO_1CLASS(JNIEnv *env, jclass cls) { return H5S_NO_CLASS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1NULL(JNIEnv *env, jclass cls) { return H5S_NULL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SCALAR(JNIEnv *env, jclass cls) { return H5S_SCALAR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SEL_1ALL(JNIEnv *env, jclass cls) { return H5S_SEL_ALL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SEL_1ERROR(JNIEnv *env, jclass cls) { return H5S_SEL_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SEL_1HYPERSLABS(JNIEnv *env, jclass cls) { return H5S_SEL_HYPERSLABS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SEL_1N(JNIEnv *env, jclass cls) { return H5S_SEL_N; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SEL_1NONE(JNIEnv *env, jclass cls) { return H5S_SEL_NONE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SEL_1POINTS(JNIEnv *env, jclass cls) { return H5S_SEL_POINTS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1AND(JNIEnv *env, jclass cls) { return H5S_SELECT_AND; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1APPEND(JNIEnv *env, jclass cls) { return H5S_SELECT_APPEND; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1INVALID(JNIEnv *env, jclass cls) { return H5S_SELECT_INVALID; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1NOOP(JNIEnv *env, jclass cls) { return H5S_SELECT_NOOP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1NOTA(JNIEnv *env, jclass cls) { return H5S_SELECT_NOTA; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1NOTB(JNIEnv *env, jclass cls) { return H5S_SELECT_NOTB; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1OR(JNIEnv *env, jclass cls) { return H5S_SELECT_OR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1PREPEND(JNIEnv *env, jclass cls) { return H5S_SELECT_PREPEND; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1SET(JNIEnv *env, jclass cls) { return H5S_SELECT_SET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SELECT_1XOR(JNIEnv *env, jclass cls) { return H5S_SELECT_XOR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1SIMPLE(JNIEnv *env, jclass cls) { return H5S_SIMPLE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5S_1UNLIMITED(JNIEnv *env, jclass cls) { return (jint)H5S_UNLIMITED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1B16(JNIEnv *env, jclass cls) { return H5T_ALPHA_B16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1B32(JNIEnv *env, jclass cls) { return H5T_ALPHA_B32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1B64(JNIEnv *env, jclass cls) { return H5T_ALPHA_B64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1B8(JNIEnv *env, jclass cls) { return H5T_ALPHA_B8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1F32(JNIEnv *env, jclass cls) { return H5T_ALPHA_F32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1F64(JNIEnv *env, jclass cls) { return H5T_ALPHA_F64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1I16(JNIEnv *env, jclass cls) { return H5T_ALPHA_I16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1I32(JNIEnv *env, jclass cls) { return H5T_ALPHA_I32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1I64(JNIEnv *env, jclass cls) { return H5T_ALPHA_I64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1I8(JNIEnv *env, jclass cls) { return H5T_ALPHA_I8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1U16(JNIEnv *env, jclass cls) { return H5T_ALPHA_U16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1U32(JNIEnv *env, jclass cls) { return H5T_ALPHA_U32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1U64(JNIEnv *env, jclass cls) { return H5T_ALPHA_U64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ALPHA_1U8(JNIEnv *env, jclass cls) { return H5T_ALPHA_U8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ARRAY(JNIEnv *env, jclass cls) { return H5T_ARRAY; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1BITFIELD(JNIEnv *env, jclass cls) { return H5T_BITFIELD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1BKG_1NO(JNIEnv *env, jclass cls) { return H5T_BKG_NO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1BKG_1YES(JNIEnv *env, jclass cls) { return H5T_BKG_YES; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1C_1S1(JNIEnv *env, jclass cls) { return H5T_C_S1; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1COMPOUND(JNIEnv *env, jclass cls) { return H5T_COMPOUND; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CONV_1CONV(JNIEnv *env, jclass cls) { return H5T_CONV_CONV; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CONV_1FREE(JNIEnv *env, jclass cls) { return H5T_CONV_FREE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CONV_1INIT(JNIEnv *env, jclass cls) { return H5T_CONV_INIT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1ERROR(JNIEnv *env, jclass cls) { return H5T_CSET_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1ASCII(JNIEnv *env, jclass cls) { return H5T_CSET_ASCII; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1UTF8(JNIEnv *env, jclass cls) { return H5T_CSET_UTF8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_110(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_10; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_111(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_11; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_112(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_12; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_113(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_13; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_114(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_14; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_115(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_15; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_12(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_2; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_13(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_3; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_14(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_4; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_15(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_5; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_16(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_6; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_17(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_7; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_18(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1CSET_1RESERVED_19(JNIEnv *env, jclass cls) { return H5T_CSET_RESERVED_9; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1DIR_1ASCEND(JNIEnv *env, jclass cls) { return H5T_DIR_ASCEND; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1DIR_1DEFAULT(JNIEnv *env, jclass cls) { return H5T_DIR_DEFAULT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1DIR_1DESCEND(JNIEnv *env, jclass cls) { return H5T_DIR_DESCEND; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ENUM(JNIEnv *env, jclass cls) { return H5T_ENUM; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1FLOAT(JNIEnv *env, jclass cls) { return H5T_FLOAT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1FORTRAN_1S1(JNIEnv *env, jclass cls) { return H5T_FORTRAN_S1; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1IEEE_1F32BE(JNIEnv *env, jclass cls) { return H5T_IEEE_F32BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1IEEE_1F32LE(JNIEnv *env, jclass cls) { return H5T_IEEE_F32LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1IEEE_1F64BE(JNIEnv *env, jclass cls) { return H5T_IEEE_F64BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1IEEE_1F64LE(JNIEnv *env, jclass cls) { return H5T_IEEE_F64LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEGER(JNIEnv *env, jclass cls) { return H5T_INTEGER; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1B16(JNIEnv *env, jclass cls) { return H5T_INTEL_B16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1B32(JNIEnv *env, jclass cls) { return H5T_INTEL_B32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1B64(JNIEnv *env, jclass cls) { return H5T_INTEL_B64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1B8(JNIEnv *env, jclass cls) { return H5T_INTEL_B8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1F32(JNIEnv *env, jclass cls) { return H5T_INTEL_F32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1F64(JNIEnv *env, jclass cls) { return H5T_INTEL_F64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1I16(JNIEnv *env, jclass cls) { return H5T_INTEL_I16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1I32(JNIEnv *env, jclass cls) { return H5T_INTEL_I32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1I64(JNIEnv *env, jclass cls) { return H5T_INTEL_I64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1I8(JNIEnv *env, jclass cls) { return H5T_INTEL_I8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1U16(JNIEnv *env, jclass cls) { return H5T_INTEL_U16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1U32(JNIEnv *env, jclass cls) { return H5T_INTEL_U32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1U64(JNIEnv *env, jclass cls) { return H5T_INTEL_U64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1INTEL_1U8(JNIEnv *env, jclass cls) { return H5T_INTEL_U8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1B16(JNIEnv *env, jclass cls) { return H5T_MIPS_B16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1B32(JNIEnv *env, jclass cls) { return H5T_MIPS_B32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1B64(JNIEnv *env, jclass cls) { return H5T_MIPS_B64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1B8(JNIEnv *env, jclass cls) { return H5T_MIPS_B8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1F32(JNIEnv *env, jclass cls) { return H5T_MIPS_F32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1F64(JNIEnv *env, jclass cls) { return H5T_MIPS_F64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1I16(JNIEnv *env, jclass cls) { return H5T_MIPS_I16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1I32(JNIEnv *env, jclass cls) { return H5T_MIPS_I32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1I64(JNIEnv *env, jclass cls) { return H5T_MIPS_I64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1I8(JNIEnv *env, jclass cls) { return H5T_MIPS_I8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1U16(JNIEnv *env, jclass cls) { return H5T_MIPS_U16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1U32(JNIEnv *env, jclass cls) { return H5T_MIPS_U32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1U64(JNIEnv *env, jclass cls) { return H5T_MIPS_U64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1MIPS_1U8(JNIEnv *env, jclass cls) { return H5T_MIPS_U8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1B16(JNIEnv *env, jclass cls) { return H5T_NATIVE_B16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1B32(JNIEnv *env, jclass cls) { return H5T_NATIVE_B32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1B64(JNIEnv *env, jclass cls) { return H5T_NATIVE_B64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1B8(JNIEnv *env, jclass cls) { return H5T_NATIVE_B8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1CHAR(JNIEnv *env, jclass cls) { return H5T_NATIVE_CHAR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1DOUBLE(JNIEnv *env, jclass cls) { return H5T_NATIVE_DOUBLE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1FLOAT(JNIEnv *env, jclass cls) { return H5T_NATIVE_FLOAT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1HADDR(JNIEnv *env, jclass cls) { return H5T_NATIVE_HADDR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1HBOOL(JNIEnv *env, jclass cls) { return H5T_NATIVE_HBOOL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1HERR(JNIEnv *env, jclass cls) { return H5T_NATIVE_HERR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1HSIZE(JNIEnv *env, jclass cls) { return H5T_NATIVE_HSIZE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1HSSIZE(JNIEnv *env, jclass cls) { return H5T_NATIVE_HSSIZE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT_1FAST16(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT_FAST16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT_1FAST32(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT_FAST32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT_1FAST64(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT_FAST64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT_1FAST8(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT_FAST8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT_1LEAST16(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT_LEAST16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT_1LEAST32(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT_LEAST32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT_1LEAST64(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT_LEAST64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT_1LEAST8(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT_LEAST8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT16(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT32(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT64(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1INT8(JNIEnv *env, jclass cls) { return H5T_NATIVE_INT8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1LDOUBLE(JNIEnv *env, jclass cls) { return H5T_NATIVE_LDOUBLE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1LLONG(JNIEnv *env, jclass cls) { return H5T_NATIVE_LLONG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1LONG(JNIEnv *env, jclass cls) { return H5T_NATIVE_LONG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1OPAQUE(JNIEnv *env, jclass cls) { return H5T_NATIVE_OPAQUE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1SCHAR(JNIEnv *env, jclass cls) { return H5T_NATIVE_SCHAR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1SHORT(JNIEnv *env, jclass cls) { return H5T_NATIVE_SHORT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UCHAR(JNIEnv *env, jclass cls) { return H5T_NATIVE_UCHAR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT_1FAST16(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT_FAST16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT_1FAST32(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT_FAST32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT_1FAST64(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT_FAST64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT_1FAST8(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT_FAST8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT_1LEAST16(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT_LEAST16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT_1LEAST32(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT_LEAST32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT_1LEAST64(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT_LEAST64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT_1LEAST8(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT_LEAST8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT16(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT16; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT32(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT64(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT64; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1UINT8(JNIEnv *env, jclass cls) { return H5T_NATIVE_UINT8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1ULLONG(JNIEnv *env, jclass cls) { return H5T_NATIVE_ULLONG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1ULONG(JNIEnv *env, jclass cls) { return H5T_NATIVE_ULONG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NATIVE_1USHORT(JNIEnv *env, jclass cls) { return H5T_NATIVE_USHORT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NCLASSES(JNIEnv *env, jclass cls) { return H5T_NCLASSES; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NO_1CLASS(JNIEnv *env, jclass cls) { return H5T_NO_CLASS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NORM_1ERROR(JNIEnv *env, jclass cls) { return H5T_NORM_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NORM_1IMPLIED(JNIEnv *env, jclass cls) { return H5T_NORM_IMPLIED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NORM_1MSBSET(JNIEnv *env, jclass cls) { return H5T_NORM_MSBSET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NORM_1NONE(JNIEnv *env, jclass cls) { return H5T_NORM_NONE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NPAD(JNIEnv *env, jclass cls) { return H5T_NPAD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1NSGN(JNIEnv *env, jclass cls) { return H5T_NSGN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1OPAQUE(JNIEnv *env, jclass cls) { return H5T_OPAQUE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1OPAQUE_1TAG_1MAX(JNIEnv *env, jclass cls) { return H5T_OPAQUE_TAG_MAX; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ORDER_1BE(JNIEnv *env, jclass cls) { return H5T_ORDER_BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ORDER_1ERROR(JNIEnv *env, jclass cls) { return H5T_ORDER_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ORDER_1LE(JNIEnv *env, jclass cls) { return H5T_ORDER_LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ORDER_1NONE(JNIEnv *env, jclass cls) { return H5T_ORDER_NONE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1ORDER_1VAX(JNIEnv *env, jclass cls) { return H5T_ORDER_VAX; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1PAD_1BACKGROUND(JNIEnv *env, jclass cls) { return H5T_PAD_BACKGROUND; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1PAD_1ERROR(JNIEnv *env, jclass cls) { return H5T_PAD_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1PAD_1ONE(JNIEnv *env, jclass cls) { return H5T_PAD_ONE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1PAD_1ZERO(JNIEnv *env, jclass cls) { return H5T_PAD_ZERO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1PERS_1DONTCARE(JNIEnv *env, jclass cls) { return H5T_PERS_DONTCARE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1PERS_1HARD(JNIEnv *env, jclass cls) { return H5T_PERS_HARD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1PERS_1SOFT(JNIEnv *env, jclass cls) { return H5T_PERS_SOFT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1REFERENCE(JNIEnv *env, jclass cls) { return H5T_REFERENCE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1SGN_12(JNIEnv *env, jclass cls) { return H5T_SGN_2; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1SGN_1ERROR(JNIEnv *env, jclass cls) { return H5T_SGN_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1SGN_1NONE(JNIEnv *env, jclass cls) { return H5T_SGN_NONE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1B16BE(JNIEnv *env, jclass cls) { return H5T_STD_B16BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1B16LE(JNIEnv *env, jclass cls) { return H5T_STD_B16LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1B32BE(JNIEnv *env, jclass cls) { return H5T_STD_B32BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1B32LE(JNIEnv *env, jclass cls) { return H5T_STD_B32LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1B64BE(JNIEnv *env, jclass cls) { return H5T_STD_B64BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1B64LE(JNIEnv *env, jclass cls) { return H5T_STD_B64LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1B8BE(JNIEnv *env, jclass cls) { return H5T_STD_B8BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1B8LE(JNIEnv *env, jclass cls) { return H5T_STD_B8LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1I16BE(JNIEnv *env, jclass cls) { return H5T_STD_I16BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1I16LE(JNIEnv *env, jclass cls) { return H5T_STD_I16LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1I32BE(JNIEnv *env, jclass cls) { return H5T_STD_I32BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1I32LE(JNIEnv *env, jclass cls) { return H5T_STD_I32LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1I64BE(JNIEnv *env, jclass cls) { return H5T_STD_I64BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1I64LE(JNIEnv *env, jclass cls) { return H5T_STD_I64LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1I8BE(JNIEnv *env, jclass cls) { return H5T_STD_I8BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1I8LE(JNIEnv *env, jclass cls) { return H5T_STD_I8LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1REF_1DSETREG(JNIEnv *env, jclass cls) { return H5T_STD_REF_DSETREG; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1REF_1OBJ(JNIEnv *env, jclass cls) { return H5T_STD_REF_OBJ; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1U16BE(JNIEnv *env, jclass cls) { return H5T_STD_U16BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1U16LE(JNIEnv *env, jclass cls) { return H5T_STD_U16LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1U32BE(JNIEnv *env, jclass cls) { return H5T_STD_U32BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1U32LE(JNIEnv *env, jclass cls) { return H5T_STD_U32LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1U64BE(JNIEnv *env, jclass cls) { return H5T_STD_U64BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1U64LE(JNIEnv *env, jclass cls) { return H5T_STD_U64LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1U8BE(JNIEnv *env, jclass cls) { return H5T_STD_U8BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STD_1U8LE(JNIEnv *env, jclass cls) { return H5T_STD_U8LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1ERROR(JNIEnv *env, jclass cls) { return H5T_STR_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1NULLPAD(JNIEnv *env, jclass cls) { return H5T_STR_NULLPAD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1NULLTERM(JNIEnv *env, jclass cls) { return H5T_STR_NULLTERM; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_110(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_10; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_111(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_11; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_112(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_12; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_113(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_13; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_114(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_14; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_115(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_15; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_13(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_3; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_14(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_4; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_15(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_5; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_16(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_6; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_17(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_7; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_18(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_8; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1RESERVED_19(JNIEnv *env, jclass cls) { return H5T_STR_RESERVED_9; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STR_1SPACEPAD(JNIEnv *env, jclass cls) { return H5T_STR_SPACEPAD; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1STRING(JNIEnv *env, jclass cls) { return H5T_STRING; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1TIME(JNIEnv *env, jclass cls) { return H5T_TIME; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1UNIX_1D32BE(JNIEnv *env, jclass cls) { return H5T_UNIX_D32BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1UNIX_1D32LE(JNIEnv *env, jclass cls) { return H5T_UNIX_D32LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1UNIX_1D64BE(JNIEnv *env, jclass cls) { return H5T_UNIX_D64BE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1UNIX_1D64LE(JNIEnv *env, jclass cls) { return H5T_UNIX_D64LE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1VARIABLE(JNIEnv *env, jclass cls) { return (int)H5T_VARIABLE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5T_1VLEN(JNIEnv *env, jclass cls) { return H5T_VLEN; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1CB_1CONT(JNIEnv *env, jclass cls) { return H5Z_CB_CONT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1CB_1ERROR(JNIEnv *env, jclass cls) { return H5Z_CB_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1CB_1FAIL(JNIEnv *env, jclass cls) { return H5Z_CB_FAIL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1CB_1NO(JNIEnv *env, jclass cls) { return H5Z_CB_NO; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1DISABLE_1EDC(JNIEnv *env, jclass cls) { return H5Z_DISABLE_EDC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1ENABLE_1EDC(JNIEnv *env, jclass cls) { return H5Z_ENABLE_EDC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1ERROR_1EDC(JNIEnv *env, jclass cls) { return H5Z_ERROR_EDC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1CONFIG_1DECODE_1ENABLED(JNIEnv *env, jclass cls) { return H5Z_FILTER_CONFIG_DECODE_ENABLED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1CONFIG_1ENCODE_1ENABLED(JNIEnv *env, jclass cls) { return H5Z_FILTER_CONFIG_ENCODE_ENABLED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1DEFLATE(JNIEnv *env, jclass cls) { return H5Z_FILTER_DEFLATE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1ERROR(JNIEnv *env, jclass cls) { return H5Z_FILTER_ERROR; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1FLETCHER32(JNIEnv *env, jclass cls) { return H5Z_FILTER_FLETCHER32; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1MAX(JNIEnv *env, jclass cls) { return H5Z_FILTER_MAX; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1NBIT(JNIEnv *env, jclass cls) {return H5Z_FILTER_NBIT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1NONE(JNIEnv *env, jclass cls) { return H5Z_FILTER_NONE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1RESERVED(JNIEnv *env, jclass cls) { return H5Z_FILTER_RESERVED; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1SCALEOFFSET(JNIEnv *env, jclass cls){ return H5Z_FILTER_SCALEOFFSET; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1SHUFFLE(JNIEnv *env, jclass cls) { return H5Z_FILTER_SHUFFLE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1SZIP(JNIEnv *env, jclass cls) { return H5Z_FILTER_SZIP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FLAG_1DEFMASK(JNIEnv *env, jclass cls) { return H5Z_FLAG_DEFMASK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FLAG_1INVMASK(JNIEnv *env, jclass cls) { return H5Z_FLAG_INVMASK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FLAG_1MANDATORY(JNIEnv *env, jclass cls) { return H5Z_FLAG_MANDATORY; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FLAG_1OPTIONAL(JNIEnv *env, jclass cls) { return H5Z_FLAG_OPTIONAL; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FLAG_1REVERSE(JNIEnv *env, jclass cls) { return H5Z_FLAG_REVERSE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FLAG_1SKIP_1EDC(JNIEnv *env, jclass cls) { return H5Z_FLAG_SKIP_EDC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1MAX_1NFILTERS(JNIEnv *env, jclass cls) { return H5Z_MAX_NFILTERS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1NO_1EDC(JNIEnv *env, jclass cls) { return H5Z_NO_EDC; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SO_1INT_1MINBITS_1DEFAULT(JNIEnv *env, jclass cls) { return H5Z_SO_INT_MINBITS_DEFAULT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SO_1FLOAT_1DSCALE(JNIEnv *env, jclass cls){return H5Z_SO_FLOAT_DSCALE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SO_1FLOAT_1ESCALE(JNIEnv *env, jclass cls){return H5Z_SO_FLOAT_ESCALE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SO_1INT(JNIEnv *env, jclass cls){return H5Z_SO_INT; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SHUFFLE_1USER_1NPARMS(JNIEnv *env, jclass cls) { return H5Z_SHUFFLE_USER_NPARMS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SHUFFLE_1TOTAL_1NPARMS(JNIEnv *env, jclass cls) { return H5Z_SHUFFLE_TOTAL_NPARMS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SZIP_1USER_1NPARMS(JNIEnv *env, jclass cls) { return H5Z_SZIP_USER_NPARMS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SZIP_1TOTAL_1NPARMS(JNIEnv *env, jclass cls) { return H5Z_SZIP_TOTAL_NPARMS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SZIP_1PARM_1MASK(JNIEnv *env, jclass cls) { return H5Z_SZIP_PARM_MASK; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SZIP_1PARM_1PPB(JNIEnv *env, jclass cls) { return H5Z_SZIP_PARM_PPB; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SZIP_1PARM_1BPP(JNIEnv *env, jclass cls) { return H5Z_SZIP_PARM_BPP; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SZIP_1PARM_1PPS(JNIEnv *env, jclass cls) { return H5Z_SZIP_PARM_PPS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1NBIT_1USER_1NPARMS(JNIEnv *env, jclass cls) { return H5Z_NBIT_USER_NPARMS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1SCALEOFFSET_1USER_1NPARMS(JNIEnv *env, jclass cls) { return H5Z_SCALEOFFSET_USER_NPARMS; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_HDF5Constants_H5Z_1FILTER_1ALL(JNIEnv *env, jclass cls) { return H5Z_FILTER_ALL; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5dImp.h0000644002344600011330000002245212371212307015656 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5D */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5D #define _Included_ncsa_hdf_hdf5lib_H5_H5D #ifdef __cplusplus extern "C" { #endif extern JavaVM *jvm; extern jobject visit_callback; /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dcreate * Signature: (ILjava/lang/String;III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dcreate (JNIEnv*, jclass, jint, jstring, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dchdir_ext * Signature: (Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dchdir_1ext (JNIEnv*, jclass, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dgetdir_1ext * Signature: ([Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dgetdir_1ext (JNIEnv*, jclass, jobjectArray, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dopen * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dopen (JNIEnv*, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dget_space * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dget_1space (JNIEnv*, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dget_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dget_1type (JNIEnv*, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dget_create_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dget_1create_1plist (JNIEnv*, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread * Signature: (IIIII[BZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread (JNIEnv*, jclass, jint, jint, jint, jint, jint, jbyteArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite * Signature: (IIIII[BZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite (JNIEnv*, jclass, jint, jint, jint, jint, jint, jbyteArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dextend * Signature: (I[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dextend (JNIEnv*, jclass, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dclose (JNIEnv*, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dget_storage_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dget_1storage_1size (JNIEnv*, jclass, jint); /* * Copies the content of one dataset to another dataset * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dcopy * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dcopy (JNIEnv*, jclass, jint, jint); /* * Copies the content of one dataset to another dataset * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dvlen_get_buf_size * Signature: (III[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dvlen_1get_1buf_1size (JNIEnv*, jclass, jint, jint, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dvlen_reclaim * Signature: (III[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dvlen_1reclaim (JNIEnv*, jclass, jint, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dget_space_status * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dget_1space_1status (JNIEnv*, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_short * Signature: (IIIII[SZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1short (JNIEnv*, jclass, jint, jint, jint, jint, jint, jshortArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_int * Signature: (IIIII[IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1int (JNIEnv*, jclass, jint, jint, jint, jint, jint, jintArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_long * Signature: (IIIII[JZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1long (JNIEnv*, jclass, jint, jint, jint, jint, jint, jlongArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_float * Signature: (IIIII[FZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1float (JNIEnv*, jclass, jint, jint, jint, jint, jint, jfloatArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_double * Signature: (IIIII[DZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1double (JNIEnv*, jclass, jint, jint, jint, jint, jint, jdoubleArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_string * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1string (JNIEnv*, jclass, jint, jint, jint, jint, jint, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_short * Signature: (IIIII[SZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1short (JNIEnv*, jclass, jint, jint, jint, jint, jint, jshortArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_int * Signature: (IIIII[IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1int (JNIEnv*, jclass, jint, jint, jint, jint, jint, jintArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_long * Signature: (IIIII[JZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1long (JNIEnv*, jclass, jint, jint, jint, jint, jint, jlongArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_float * Signature: (IIIII[FZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1float (JNIEnv*, jclass, jint, jint, jint, jint, jint, jfloatArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_double * Signature: (IIIII[DZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1double (JNIEnv*, jclass, jint, jint, jint, jint, jint, jdoubleArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5DwriteString * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5DwriteString (JNIEnv *, jclass, jint, jint, jint, jint, jint, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5DwriteNotString * Signature: (IIIII[BZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5DwriteNotString (JNIEnv *, jclass, jint, jint, jint, jint, jint, jbyteArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5DreadVL * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5DreadVL (JNIEnv*, jclass, jint, jint, jint, jint, jint, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_reg_ref * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1reg_1ref (JNIEnv*, jclass, jint, jint, jint, jint, jint, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_reg_ref_data * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1reg_1ref_1data (JNIEnv*, jclass, jint, jint, jint, jint, jint, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dcreate2 * Signature: (ILjava/lang/String;IIIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dcreate2 (JNIEnv *, jclass, jint, jstring, jint, jint, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dopen2 * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dopen2 (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dcreate_anon * Signature: (IIIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dcreate_1anon (JNIEnv *, jclass, jint, jint, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dget_space_status * Signature: (I)I; */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dget_1space_1status (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dget_access_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dget_1access_1plist (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dget_offset * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dget_1offset (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dvlen_get_buf_size_long * Signature: (III)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dvlen_1get_1buf_1size_1long (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dfill * Signature: ([BI[BII)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dfill (JNIEnv *, jclass, jbyteArray, jint, jbyteArray, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dset_extent * Signature: (I[J)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dset_1extent (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Diterate * Signature: ([BIILjava/lang/Object;Ljava/lang/Object;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Diterate (JNIEnv *, jclass, jbyteArray, jint, jint, jobject, jobject); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5dImp.c0000644002344600011330000023645512421737515015674 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * This code is the C-interface called by Java programs to access the * Dataset Object API Functions of HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdfdfgroup.org/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include #include #include #include #include "hdf5.h" #include "h5util.h" #include "h5jni.h" #include "h5dImp.h" #ifdef __cplusplus #ifdef _WINDOWS #include #endif #endif #ifdef _WINDOWS #define CHDIR _chdir #define GETCWD _getcwd #else #define CHDIR chdir #define GETCWD getcwd #endif #ifdef H5_HAVE_WIN32_API #define strtoll(S,R,N) _strtoi64(S,R,N) #define strtoull(S,R,N) _strtoui64(S,R,N) #define strtof(S,R) atof(S) #endif /* H5_HAVE_WIN32_API */ #ifdef __cplusplus #define CBENVPTR (cbenv) #define CBENVPAR #define JVMPTR (jvm) #define JVMPAR #define JVMPAR2 #else #define CBENVPTR (*cbenv) #define CBENVPAR cbenv, #define JVMPTR (*jvm) #define JVMPAR jvm #define JVMPAR2 jvm, #endif herr_t H5DreadVL_str (JNIEnv *env, hid_t did, hid_t tid, hid_t mem_sid, hid_t file_sid, hid_t xfer_plist_id, jobjectArray buf); herr_t H5DreadVL_notstr (JNIEnv *env, hid_t did, hid_t tid, hid_t mem_sid, hid_t file_sid, hid_t xfer_plist_id, jobjectArray buf); #define PIN_BYTE_ARRAY() { \ if (isCriticalPinning) \ buffP = (jbyte*)ENVPTR->GetPrimitiveArrayCritical(ENVPAR buf, &isCopy); \ else \ buffP = ENVPTR->GetByteArrayElements(ENVPAR buf, &isCopy); \ } #define UNPIN_BYTE_ARRAY(mode) { \ if (isCriticalPinning) \ ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR buf, buffP, mode); \ else \ ENVPTR->ReleaseByteArrayElements(ENVPAR buf, buffP, mode); \ } #define PIN_SHORT_ARRAY() { \ if (isCriticalPinning) \ buffP = (jshort*)ENVPTR->GetPrimitiveArrayCritical(ENVPAR buf, &isCopy); \ else \ buffP = ENVPTR->GetShortArrayElements(ENVPAR buf, &isCopy); \ } #define UNPIN_SHORT_ARRAY(mode) { \ if (isCriticalPinning) \ ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR buf, buffP, mode); \ else \ ENVPTR->ReleaseShortArrayElements(ENVPAR buf, buffP, mode); \ } #define PIN_INT_ARRAY() { \ if (isCriticalPinning) \ buffP = (jint*)ENVPTR->GetPrimitiveArrayCritical(ENVPAR buf, &isCopy); \ else \ buffP = ENVPTR->GetIntArrayElements(ENVPAR buf, &isCopy); \ } #define UNPIN_INT_ARRAY(mode) { \ if (isCriticalPinning) \ ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR buf, buffP, mode); \ else \ ENVPTR->ReleaseIntArrayElements(ENVPAR buf, buffP, mode); \ } #define PIN_LONG_ARRAY() { \ if (isCriticalPinning) \ buffP = (jlong*)ENVPTR->GetPrimitiveArrayCritical(ENVPAR buf, &isCopy); \ else \ buffP = ENVPTR->GetLongArrayElements(ENVPAR buf,&isCopy); \ } #define UNPIN_LONG_ARRAY(mode) { \ if (isCriticalPinning) \ ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR buf, buffP, mode); \ else \ ENVPTR->ReleaseLongArrayElements(ENVPAR buf, buffP, mode); \ } #define PIN_FLOAT_ARRAY() { \ if (isCriticalPinning) \ buffP = (jfloat*)ENVPTR->GetPrimitiveArrayCritical(ENVPAR buf, &isCopy); \ else \ buffP = ENVPTR->GetFloatArrayElements(ENVPAR buf, &isCopy); \ } #define UNPIN_FLOAT_ARRAY(mode) { \ if (isCriticalPinning) \ ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR buf, buffP, mode); \ else \ ENVPTR->ReleaseFloatArrayElements(ENVPAR buf, buffP, mode); \ } #define PIN_DOUBLE_ARRAY() { \ if (isCriticalPinning) \ buffP = (jdouble*)ENVPTR->GetPrimitiveArrayCritical(ENVPAR buf, &isCopy); \ else \ buffP = ENVPTR->GetDoubleArrayElements(ENVPAR buf, &isCopy); \ } #define UNPIN_DOUBLE_ARRAY(mode) { \ if (isCriticalPinning) \ ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR buf, buffP, mode); \ else \ ENVPTR->ReleaseDoubleArrayElements(ENVPAR buf, buffP, mode); \ } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dcreate * Signature: (ILjava/lang/String;III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dcreate (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint type_id, jint space_id, jint create_plist_id) { hid_t status; char *file; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Dcreate: name is NULL"); return -1; } file = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (file == NULL) { h5JNIFatalError( env, "H5Dcreate: file name not pinned"); return -1; } status = H5Dcreate2((hid_t)loc_id, file, (hid_t)type_id, (hid_t)space_id, (hid_t)H5P_DEFAULT, (hid_t)create_plist_id, (hid_t)H5P_DEFAULT); ENVPTR->ReleaseStringUTFChars(ENVPAR name, file); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dchdir_ext * Signature: (Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dchdir_1ext (JNIEnv *env, jclass clss, jstring dir_name) { hid_t status; char *file; jboolean isCopy; if (dir_name == NULL) { h5nullArgument( env, "H5Dchdir_ext: dir_name is NULL"); return -1; } file = (char*)ENVPTR->GetStringUTFChars(ENVPAR dir_name, &isCopy); if (file == NULL) { h5JNIFatalError( env, "H5Dchdir_ext: file dir not pinned"); return -1; } status = CHDIR( file ); ENVPTR->ReleaseStringUTFChars(ENVPAR dir_name, file); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dgetdir_1ext * Signature: ([Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dgetdir_1ext (JNIEnv *env, jclass clss, jobjectArray dir_name, jint buf_size) { char *aName; jstring str; if (buf_size <= 0) { h5badArgument( env, "H5Dgetcwd: buf_size <= 0"); return -1; } aName = (char*)malloc(sizeof(char) * buf_size); if (aName == NULL) { h5outOfMemory( env, "H5Dgetcwd: malloc failed"); return -1; } GETCWD( (char*)aName, (size_t)buf_size); str = ENVPTR->NewStringUTF(ENVPAR aName); free(aName); if (str == NULL) { h5JNIFatalError( env,"H5Dgetcwd: return string failed"); return -1; } ENVPTR->SetObjectArrayElement(ENVPAR dir_name, 0, str); return 0; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dopen * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dopen (JNIEnv *env, jclass clss, jint loc_id, jstring name) { hid_t status; char *file; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Dopen: name is NULL"); return -1; } file = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (file == NULL) { h5JNIFatalError( env, "H5Dopen: file name not pinned"); return -1; } status = H5Dopen2((hid_t)loc_id, (const char*)file, (hid_t)H5P_DEFAULT); ENVPTR->ReleaseStringUTFChars(ENVPAR name, file); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dget_space * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dget_1space (JNIEnv *env, jclass clss, jint dataset_id) { hid_t retVal = -1; retVal = H5Dget_space((hid_t)dataset_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dget_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dget_1type (JNIEnv *env, jclass clss, jint dataset_id) { hid_t retVal = -1; retVal = H5Dget_type((hid_t)dataset_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dget_create_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dget_1create_1plist (JNIEnv *env, jclass clss, jint dataset_id) { hid_t retVal = -1; retVal = H5Dget_create_plist((hid_t)dataset_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } htri_t H5Tdetect_variable_str(hid_t tid) { htri_t ret_val = 0; if (H5Tget_class(tid) == H5T_COMPOUND) { hid_t mtid = H5Tget_member_type(tid, 0); ret_val = H5Tdetect_variable_str(mtid); H5Tclose (mtid); } else ret_val = H5Tis_variable_str(tid); return ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread * Signature: (IIIII[BZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jbyteArray buf, jboolean isCriticalPinning) { herr_t status; jbyte *buffP; jboolean isCopy; htri_t data_class; /* recursive detect any vlen data values in type (compound, array ...) */ data_class = H5Tdetect_class(mem_type_id, H5T_VLEN); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread: buf does not support variable length type"); return -1; } /* recursive detect any vlen string in type (compound, array ...) */ data_class = H5Tdetect_variable_str(mem_type_id); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread: buf does not support variable length string type"); return -1; } if ( buf == NULL ) { h5nullArgument( env, "H5Dread: buf is NULL"); return -1; } PIN_BYTE_ARRAY(); if (buffP == NULL) { h5JNIFatalError( env, "H5Dread: buf not pinned"); return -1; } status = H5Dread((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); if (status < 0) { UNPIN_BYTE_ARRAY(JNI_ABORT); h5libraryError(env); return -1; } UNPIN_BYTE_ARRAY(0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite * Signature: (IIIII[BZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jbyteArray buf, jboolean isCriticalPinning) { herr_t status; jbyte *buffP; jboolean isCopy; if ( buf == NULL ) { h5nullArgument( env, "H5Dwrite: buf is NULL"); return -1; } PIN_BYTE_ARRAY(); if (buffP == NULL) { h5JNIFatalError( env, "H5Dwrite: buf not pinned"); return -1; } status = H5Dwrite((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); UNPIN_BYTE_ARRAY(JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dextend * Signature: (I[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dextend (JNIEnv *env, jclass clss, jint dataset_id, jbyteArray size) { herr_t status; int i; int rank; hsize_t *sa; hsize_t *lp; jbyte *P; jboolean isCopy; jlong *jlp; if (size == NULL) { h5nullArgument( env, "H5Dextend: array of sizes is NULL"); return -1; } /* * Future: check that the array has correct * rank (same as dataset dataset_id) */ P = ENVPTR->GetByteArrayElements(ENVPAR size, &isCopy); if (P == NULL) { h5JNIFatalError( env, "H5Dextend: array not pinned"); return -1; } i = ENVPTR->GetArrayLength(ENVPAR size); rank = i / sizeof(jlong); sa = lp = (hsize_t*)malloc(rank * sizeof(hsize_t)); if (sa == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR size, P, JNI_ABORT); h5JNIFatalError(env, "H5Dextend: size not converted to hsize_t"); return -1; } jlp = (jlong*)P; for (i = 0; i < rank; i++) { *lp = (hsize_t) * jlp; lp++; jlp++; } status = H5Dextend((hid_t)dataset_id, (hsize_t*)sa); ENVPTR->ReleaseByteArrayElements(ENVPAR size, P, JNI_ABORT); free(sa); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dclose (JNIEnv *env, jclass clss, jint dataset_id) { hid_t retVal = 0; retVal = H5Dclose((hid_t)dataset_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dget_storage_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dget_1storage_1size (JNIEnv *env, jclass clss, jint dataset_id) { hsize_t retVal = (hsize_t)-1; if (dataset_id < 0) { h5badArgument(env, "H5Dget_storage_size: not a dataset"); } retVal = H5Dget_storage_size((hid_t)dataset_id ); return (jlong)retVal; } /* * Copies the content of one dataset to another dataset * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dcopy * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dcopy (JNIEnv *env, jclass clss, jint src_id, jint dst_id) { jbyte *buf; herr_t retVal = -1; hid_t src_did = (hid_t)src_id; hid_t dst_did = (hid_t)dst_id; hid_t tid = -1; hid_t sid = -1; hsize_t total_size = 0, total_allocated_size; total_allocated_size = H5Dget_storage_size(src_did); if (total_allocated_size <=0) return 0; // nothing to write; sid = H5Dget_space(src_did); if (sid < 0) { h5libraryError(env); return -1; } tid = H5Dget_type(src_did); if (tid < 0) { H5Sclose(sid); h5libraryError(env); return -1; } total_size = H5Sget_simple_extent_npoints(sid) * H5Tget_size(tid); H5Sclose(sid); buf = (jbyte*)malloc((int)(total_size * sizeof(jbyte))); if (buf == NULL) { H5Tclose(tid); h5outOfMemory(env, "H5Dcopy: malloc failed"); return -1; } retVal = H5Dread((hid_t)src_did, (hid_t)tid, (hid_t)H5S_ALL, (hid_t)H5S_ALL, (hid_t)H5P_DEFAULT, buf); H5Tclose(tid); if (retVal < 0) { free(buf); h5libraryError(env); return (jint)retVal; } tid = H5Dget_type(dst_did); if (tid < 0) { free(buf); h5libraryError(env); return -1; } retVal = H5Dwrite((hid_t)dst_did, (hid_t)tid, (hid_t)H5S_ALL, (hid_t)H5S_ALL, (hid_t)H5P_DEFAULT, buf); H5Tclose(tid); free(buf); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Copies the content of one dataset to another dataset * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dvlen_get_buf_size * Signature: (III[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dvlen_1get_1buf_1size (JNIEnv *env, jclass clss, jint dataset_id, jint type_id, jint space_id, jintArray size) { jint *P; jboolean isCopy; herr_t status; hsize_t sz; if ( size == NULL ) { h5nullArgument(env, "H5Dvlen_get_buf_size: size is NULL"); return -1; } P = ENVPTR->GetIntArrayElements(ENVPAR size, &isCopy); if (P == NULL) { h5JNIFatalError(env, "H5Dvlen_get_buf_size: array not pinned"); return -1; } status = (jint)H5Dvlen_get_buf_size((hid_t)dataset_id, (hid_t)type_id, (hid_t)space_id, (hsize_t*)&sz); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR size, P, JNI_ABORT); h5libraryError(env); return -1; } P[0] = (jint)sz; ENVPTR->ReleaseIntArrayElements(ENVPAR size, P, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dvlen_reclaim * Signature: (III[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dvlen_1reclaim (JNIEnv *env, jclass clss, jint type_id, jint space_id, jint xfer_plist_id, jbyteArray buf) { herr_t status; jbyte *byteP; jboolean isCopy; if ( buf == NULL ) { h5nullArgument( env, "H5Dvlen_reclaim: buf is NULL"); return -1; } byteP = ENVPTR->GetByteArrayElements(ENVPAR buf, &isCopy); if (byteP == NULL) { h5JNIFatalError( env, "H5Dvlen_reclaim: buf not pinned"); return -1; } status = H5Dvlen_reclaim((hid_t)type_id, (hid_t)space_id, (hid_t)xfer_plist_id, byteP); ENVPTR->ReleaseByteArrayElements(ENVPAR buf, byteP, JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /*************************************************************** * New APIs for HDF5.1.6 * ***************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dget_space_status * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dget_1space_1status (JNIEnv *env, jclass clss, jint dset_id, jintArray status) { jint *theArray; jboolean isCopy; H5D_space_status_t space_status; herr_t retVal = -1; if (status == NULL) { /* exception ? */ h5nullArgument(env, "H5Dget_space_status: status is NULL"); return -1; } theArray = (jint*)ENVPTR->GetIntArrayElements(ENVPAR status, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Dget_space_status: status not pinned"); return -1; } retVal = H5Dget_space_status((hid_t)dset_id, (H5D_space_status_t*)&space_status ); if (retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR status, theArray, JNI_ABORT); h5libraryError(env); return -1; } theArray[0] = space_status; ENVPTR->ReleaseIntArrayElements(ENVPAR status, theArray, 0); return (jint)retVal; } /* //////////////////////////////////////////////////////////////////// // // // New APIs for read data from library // // Using H5Dread(..., Object buf) requires function calls // // theArray.emptyBytes() and theArray.arrayify( buf), which // // triples the actual memory needed by the data set. // // Using the following APIs solves the problem. // // // //////////////////////////////////////////////////////////////////// */ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_short * Signature: (IIIII[SZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1short (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jshortArray buf, jboolean isCriticalPinning) { herr_t status; jshort *buffP; jboolean isCopy; htri_t data_class; /* recursive detect any vlen data values in type (compound, array ...) */ data_class = H5Tdetect_class(mem_type_id, H5T_VLEN); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_short: buf does not support variable length type"); return -1; } /* recursive detect any vlen string in type (compound, array ...) */ data_class = H5Tdetect_variable_str(mem_type_id); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_short: buf does not support variable length string type"); return -1; } if (buf == NULL) { h5nullArgument(env, "H5Dread_short: buf is NULL"); return -1; } PIN_SHORT_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dread_short: buf not pinned"); return -1; } status = H5Dread((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); if (status < 0) { UNPIN_SHORT_ARRAY(JNI_ABORT); h5libraryError(env); return -1; } UNPIN_SHORT_ARRAY(0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_int * Signature: (IIIII[IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1int (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jintArray buf, jboolean isCriticalPinning) { herr_t status; jint *buffP; jboolean isCopy; htri_t data_class; /* recursive detect any vlen data values in type (compound, array ...) */ data_class = H5Tdetect_class(mem_type_id, H5T_VLEN); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_int: buf does not support variable length type"); return -1; } /* recursive detect any vlen string in type (compound, array ...) */ data_class = H5Tdetect_variable_str(mem_type_id); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_int: buf does not support variable length string type"); return -1; } if (buf == NULL) { h5nullArgument(env, "H5Dread_int: buf is NULL"); return -1; } PIN_INT_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dread_int: buf not pinned"); return -1; } status = H5Dread((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); if (status < 0) { UNPIN_INT_ARRAY(JNI_ABORT); h5libraryError(env); return -1; } UNPIN_INT_ARRAY(0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_long * Signature: (IIIII[JZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1long (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jlongArray buf, jboolean isCriticalPinning) { herr_t status; jlong *buffP; jboolean isCopy; htri_t data_class; /* recursive detect any vlen data values in type (compound, array ...) */ data_class = H5Tdetect_class(mem_type_id, H5T_VLEN); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_long: buf does not support variable length type"); return -1; } /* recursive detect any vlen string in type (compound, array ...) */ data_class = H5Tdetect_variable_str(mem_type_id); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_long: buf does not support variable length string type"); return -1; } if (buf == NULL) { h5nullArgument(env, "H5Dread_long: buf is NULL"); return -1; } PIN_LONG_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dread_long: buf not pinned"); return -1; } status = H5Dread((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); if (status < 0) { UNPIN_LONG_ARRAY(JNI_ABORT); h5libraryError(env); return -1; } UNPIN_LONG_ARRAY(0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_float * Signature: (IIIII[FZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1float (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jfloatArray buf, jboolean isCriticalPinning) { herr_t status; jfloat *buffP; jboolean isCopy; htri_t data_class; /* recursive detect any vlen data values in type (compound, array ...) */ data_class = H5Tdetect_class(mem_type_id, H5T_VLEN); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_float: buf does not support variable length type"); return -1; } /* recursive detect any vlen string in type (compound, array ...) */ data_class = H5Tdetect_variable_str(mem_type_id); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_float: buf does not support variable length string type"); return -1; } if (buf == NULL) { h5nullArgument(env, "H5Dread_float: buf is NULL"); return -1; } PIN_FLOAT_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dread_float: buf not pinned"); return -1; } status = H5Dread((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); if (status < 0) { UNPIN_FLOAT_ARRAY(JNI_ABORT); h5libraryError(env); return -1; } UNPIN_FLOAT_ARRAY(0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_double * Signature: (IIIII[DZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1double (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jdoubleArray buf, jboolean isCriticalPinning) { herr_t status; jdouble *buffP; jboolean isCopy; htri_t data_class; /* recursive detect any vlen data values in type (compound, array ...) */ data_class = H5Tdetect_class(mem_type_id, H5T_VLEN); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_double: buf does not support variable length type"); return -1; } /* recursive detect any vlen string in type (compound, array ...) */ data_class = H5Tdetect_variable_str(mem_type_id); if((data_class == 1) || (data_class < 0)) { h5badArgument( env, "H5Dread_double: buf does not support variable length string type"); return -1; } if (buf == NULL) { h5nullArgument(env, "H5Dread_double: buf is NULL"); return -1; } PIN_DOUBLE_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dread_double: buf not pinned"); return -1; } status = H5Dread((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); if (status < 0) { UNPIN_DOUBLE_ARRAY(JNI_ABORT); h5libraryError(env); return -1; } UNPIN_DOUBLE_ARRAY(0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_string * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1string (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jobjectArray j_buf) { herr_t status; char *c_buf; char *cstr; size_t str_len; size_t i; size_t n; size_t pos; jstring jstr; c_buf = cstr = NULL; if (j_buf == NULL) { h5nullArgument(env, "H5Dread_string: buf is NULL"); return -1; } n = ENVPTR->GetArrayLength(ENVPAR j_buf); if (n <= 0) { h5nullArgument(env, "H5Dread_string: buf length <=0"); return -1; } if ((str_len = H5Tget_size((hid_t)mem_type_id)) <=0) { h5libraryError(env); return -1; } if ((cstr = (char*)malloc(str_len + 1)) == NULL) { h5JNIFatalError(env, "H5Dread_string: memory allocation failed."); return -1; } if ((c_buf = (char*)malloc(n * str_len)) == NULL) { if (cstr) free (cstr); cstr = NULL; h5JNIFatalError(env, "H5Dread_string: memory allocation failed."); return -1; } status = H5Dread((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, c_buf); if (status < 0) { if (cstr) free (cstr); cstr = NULL; if (c_buf) free (c_buf); c_buf = NULL; h5libraryError(env); return -1; } pos = 0; for (i=0; iNewStringUTF(ENVPAR cstr); ENVPTR->SetObjectArrayElement(ENVPAR j_buf, i, jstr); pos += str_len; } if (c_buf) free(c_buf); if (cstr) free (cstr); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_short * Signature: (IIIII[SZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1short (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jshortArray buf, jboolean isCriticalPinning) { herr_t status; jshort *buffP; jboolean isCopy; if (buf == NULL ) { h5nullArgument(env, "H5Dwrite_short: buf is NULL"); return -1; } PIN_SHORT_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dwrite_short: buf not pinned"); return -1; } status = H5Dwrite((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); UNPIN_SHORT_ARRAY(JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_int * Signature: (IIIII[IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1int (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jintArray buf, jboolean isCriticalPinning) { herr_t status; jint *buffP; jboolean isCopy; if (buf == NULL) { h5nullArgument(env, "H5Dwrite_int: buf is NULL"); return -1; } PIN_INT_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dwrite_int: buf not pinned"); return -1; } status = H5Dwrite((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); UNPIN_INT_ARRAY(JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_long * Signature: (IIIII[JZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1long (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jlongArray buf, jboolean isCriticalPinning) { herr_t status; jlong *buffP; jboolean isCopy; if (buf == NULL) { h5nullArgument(env, "H5Dwrite_long: buf is NULL"); return -1; } PIN_LONG_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dwrite_long: buf not pinned"); return -1; } status = H5Dwrite((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); UNPIN_LONG_ARRAY(JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_float * Signature: (IIIII[FZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1float (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jfloatArray buf, jboolean isCriticalPinning) { herr_t status; jfloat *buffP; jboolean isCopy; if (buf == NULL) { h5nullArgument(env, "H5Dwrite_float: buf is NULL"); return -1; } PIN_FLOAT_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dwrite_float: buf not pinned"); return -1; } status = H5Dwrite((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); UNPIN_FLOAT_ARRAY(JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dwrite_double * Signature: (IIIII[DZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dwrite_1double (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jdoubleArray buf, jboolean isCriticalPinning) { herr_t status; jdouble *buffP; jboolean isCopy; if (buf == NULL) { h5nullArgument(env, "H5Dwrite_double: buf is NULL"); return -1; } PIN_DOUBLE_ARRAY(); if (buffP == NULL) { h5JNIFatalError(env, "H5Dwrite_double: buf not pinned"); return -1; } status = H5Dwrite((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buffP); UNPIN_DOUBLE_ARRAY(JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } // Rosetta Biosoftware /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5DwriteString * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5DwriteString (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jobjectArray buf) { herr_t status; char **wdata; jsize size; jsize i; if (buf == NULL) { h5nullArgument(env, "H5DwriteString: buf is NULL"); return -1; } size = ENVPTR->GetArrayLength(ENVPAR (jarray) buf); wdata = (char**)malloc(size * sizeof (char*)); if (!wdata) { h5JNIFatalError(env, "H5DwriteString: cannot allocate buffer"); return -1; } memset(wdata, 0, size * sizeof(char*)); for (i = 0; i < size; ++i) { jstring obj = (jstring) ENVPTR->GetObjectArrayElement(ENVPAR (jobjectArray) buf, i); if (obj != 0) { jsize length = ENVPTR->GetStringUTFLength(ENVPAR obj); const char *utf8 = ENVPTR->GetStringUTFChars(ENVPAR obj, 0); if (utf8) { wdata[i] = (char*)malloc(length + 1); if (wdata[i]) { memset(wdata[i], 0, (length + 1)); strncpy(wdata[i], utf8, length); } } ENVPTR->ReleaseStringUTFChars(ENVPAR obj, utf8); ENVPTR->DeleteLocalRef(ENVPAR obj); } } /*for (i = 0; i < size; ++i) */ status = H5Dwrite((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, wdata); // now free memory for (i = 0; i < size; i++) { if(wdata[i]) { free(wdata[i]); } } free(wdata); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5DwriteNotString * Signature: (IIIII[Ljava/lang/String;Z)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5DwriteNotString (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jobjectArray buf, jboolean isCriticalPinning) { herr_t status; hvl_t *wdata; jsize n; jbyte *buffP; jboolean isCopy; jint i; jint j; unsigned char tmp_uchar = 0; char tmp_char = 0; unsigned short tmp_ushort = 0; short tmp_short = 0; unsigned int tmp_uint = 0; int tmp_int = 0; unsigned long tmp_ulong = 0; long tmp_long = 0; unsigned long long tmp_ullong = 0; long long tmp_llong = 0; float tmp_float = 0.0; double tmp_double = 0.0; long double tmp_ldouble = 0.0; H5T_class_t tclass = H5Tget_class(mem_type_id); size_t size = H5Tget_size(mem_type_id); H5T_sign_t nsign = H5Tget_sign(mem_type_id); hid_t sid = H5Aget_space(mem_type_id); hid_t basetid = -1; H5T_class_t basetclass = -1; char *temp; char *token; if(tclass == H5T_VLEN) { basetid = H5Tget_super(mem_type_id); size = H5Tget_size(basetid); basetclass = H5Tget_class(basetid); } if (buf == NULL) { h5nullArgument(env, "H5DwriteNotString: buf is NULL"); return -1; } PIN_BYTE_ARRAY(); if (buffP == NULL) { h5JNIFatalError( env, "H5DwriteNotString: buf not pinned"); return -1; } /* rebuild VL structure */ n = ENVPTR->GetArrayLength(ENVPAR (jarray) buf); printf("H5AwriteVL_num: n=%d of len %d\n", n, sizeof(buf)); wdata = (hvl_t*)calloc(n+1, sizeof(hvl_t)); if (!wdata) { h5JNIFatalError(env, "H5DwriteNotString: cannot allocate buffer"); return -1; } /* Allocate and initialize VL data to write */ for (i = 0; i < n; i++) { int j; jstring obj = (jstring) ENVPTR->GetObjectArrayElement(ENVPAR (jobjectArray) buf, i); if (obj != 0) { jsize length = ENVPTR->GetStringUTFLength(ENVPAR obj); const char *utf8 = ENVPTR->GetStringUTFChars(ENVPAR obj, 0); printf("utf8=%s\n", utf8); temp = malloc(length+1); strncpy(temp, utf8, length); temp[length] = '\0'; printf("temp=%s\n", temp); token = strtok(temp, ","); printf("token[0]:%s\n", token); j = 1; while (1) { token = strtok (NULL, ","); printf("token[%d]:%s\n", j, token); if (token == NULL) break; j++; } printf("H5AwriteVL_num: count=%d obj_len=%d of utf8_len %d\n", j, length, sizeof(utf8)); wdata[i].p = malloc(j * size); wdata[i].len = j; strncpy(temp, utf8, length); temp[length] = '\0'; switch (tclass) { case H5T_FLOAT: if (sizeof(float) == size) { printf("float:%s\n", utf8); j = 0; tmp_float = strtof(strtok(temp, ","), NULL); ((float *)wdata[i].p)[j++] = tmp_float; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_float = strtof(token, NULL); ((float *)wdata[i].p)[j++] = tmp_float; } } else if (sizeof(double) == size) { printf("double:%s\n", utf8); j = 0; tmp_double = strtod(strtok(temp, ","), NULL); ((double *)wdata[i].p)[j++] = tmp_double; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_double = strtod(token, NULL); ((double *)wdata[i].p)[j++] = tmp_double; } } #if H5_SIZEOF_LONG_DOUBLE !=0 else if (sizeof(long double) == size) { printf("longdouble:%s\n", utf8); j = 0; tmp_ldouble = strtold(strtok(temp, ","), NULL); ((long double *)wdata[i].p)[j++] = tmp_ldouble; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ldouble = strtold(token, NULL); ((long double *)wdata[i].p)[j++] = tmp_ldouble; } } #endif break; case H5T_INTEGER: if (sizeof(char) == size) { if(H5T_SGN_NONE == nsign) { printf("uchar:%s\n", utf8); j = 0; tmp_uchar = (unsigned char)strtoul(strtok(temp, ","), NULL, 10); ((unsigned char *)wdata[i].p)[j++] = tmp_uchar; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_uchar = (unsigned char)strtoul(token, NULL, 10); ((unsigned char *)wdata[i].p)[j++] = tmp_uchar; } } else { printf("char:%s\n", utf8); j = 0; tmp_char = (char)strtoul(strtok(temp, ","), NULL, 10); ((char *)wdata[i].p)[j++] = tmp_char; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_char = (char)strtoul(token, NULL, 10); ((char *)wdata[i].p)[j++] = tmp_char; } } } else if (sizeof(int) == size) { if(H5T_SGN_NONE == nsign) { printf("uint:%s\n", utf8); j = 0; tmp_uint = (unsigned int)strtoul(strtok(temp, ","), NULL, 10); ((unsigned int *)wdata[i].p)[j++] = tmp_uint; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_uint = (unsigned int)strtoul(token, NULL, 10); ((unsigned int *)wdata[i].p)[j++] = tmp_uint; } } else { printf("int:%s\n", utf8); j = 0; tmp_int = (int)strtoul(strtok(temp, ","), NULL, 10); ((int *)wdata[i].p)[j++] = tmp_int; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_int = (int)strtoul(token, NULL, 10); ((int *)wdata[i].p)[j++] = tmp_int; } } } else if (sizeof(short) == size) { if(H5T_SGN_NONE == nsign) { printf("ushort:%s\n", utf8); j = 0; tmp_ushort = (unsigned short)strtoul(strtok(temp, ","), NULL, 10); ((unsigned short *)wdata[i].p)[j++] = tmp_ushort; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ushort = (unsigned short)strtoul(token, NULL, 10); ((unsigned short *)wdata[i].p)[j++] = tmp_ushort; } } else { printf("short:%s\n", utf8); j = 0; tmp_short = (short)strtoul(strtok(temp, ","), NULL, 10); ((short *)wdata[i].p)[j++] = tmp_short; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_short = (short)strtoul(token, NULL, 10); ((short *)wdata[i].p)[j++] = tmp_short; } } } else if (sizeof(long) == size) { if(H5T_SGN_NONE == nsign) { printf("ulong:%s\n", utf8); j = 0; tmp_ulong = strtoul(strtok(temp, ","), NULL, 10); ((unsigned long *)wdata[i].p)[j++] = tmp_ulong; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ulong = strtoul(token, NULL, 10); ((unsigned long *)wdata[i].p)[j++] = tmp_ulong; } } else { printf("long:%s\n", utf8); j = 0; tmp_long = strtol(strtok(temp, ","), NULL, 10); ((long *)wdata[i].p)[j++] = tmp_long; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_long = strtol(token, NULL, 10); ((long *)wdata[i].p)[j++] = tmp_long; } } } else if (sizeof(long long) == size) { if(H5T_SGN_NONE == nsign) { printf("ulonglong:%s\n", utf8); j = 0; tmp_ullong = strtoull(strtok(temp, ","), NULL, 10); ((unsigned long long *)wdata[i].p)[j++] = tmp_ullong; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ullong = strtoull(token, NULL, 10); ((unsigned long long *)wdata[i].p)[j++] = tmp_ullong; } } else { printf("longlong:%s\n", utf8); j = 0; tmp_llong = strtoll(strtok(temp, ","), NULL, 10); ((long long *)wdata[i].p)[j++] = tmp_llong; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_llong = strtoll(token, NULL, 10); ((long long *)wdata[i].p)[j++] = tmp_llong; } } } break; case H5T_STRING: { printf("string:%s\n", utf8); } break; case H5T_COMPOUND: { printf("compound:%s\n", utf8); } break; case H5T_ENUM: { printf("enum:%s\n", utf8); } break; case H5T_REFERENCE: printf("reference:%s\n", utf8); break; case H5T_ARRAY: { printf("array:%s\n", utf8); } break; case H5T_VLEN: { printf("vlen:type size=%d, %s\n", size, utf8); switch (basetclass) { case H5T_FLOAT: if (sizeof(float) == size) { printf("vlfloat:%s\n", utf8); j = 0; tmp_float = strtof(strtok(temp, ","), NULL); ((float *)wdata[i].p)[j++] = tmp_float; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_float = strtof(token, NULL); ((float *)wdata[i].p)[j++] = tmp_float; } } else if (sizeof(double) == size) { printf("vldouble:%s\n", utf8); j = 0; tmp_double = strtod(strtok(temp, ","), NULL); ((double *)wdata[i].p)[j++] = tmp_double; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_double = strtod(token, NULL); ((double *)wdata[i].p)[j++] = tmp_double; } } #if H5_SIZEOF_LONG_DOUBLE !=0 else if (sizeof(long double) == size) { printf("vllongdouble:%s\n", utf8); j = 0; tmp_ldouble = strtold(strtok(temp, ","), NULL); ((long double *)wdata[i].p)[j++] = tmp_ldouble; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ldouble = strtold(token, NULL); ((long double *)wdata[i].p)[j++] = tmp_ldouble; } } #endif break; case H5T_INTEGER: if (sizeof(char) == size) { if(H5T_SGN_NONE == nsign) { printf("vluchar:%s\n", utf8); j = 0; tmp_uchar = (unsigned char)strtoul(strtok(temp, ","), NULL, 10); ((unsigned char *)wdata[i].p)[j++] = tmp_uchar; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_uchar = (unsigned char)strtoul(token, NULL, 10); ((unsigned char *)wdata[i].p)[j++] = tmp_uchar; } } else { printf("vlchar:%s\n", utf8); j = 0; tmp_char = (char)strtoul(strtok(temp, ","), NULL, 10); ((char *)wdata[i].p)[j++] = tmp_char; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_char = (char)strtoul(token, NULL, 10); ((char *)wdata[i].p)[j++] = tmp_char; } } } else if (sizeof(int) == size) { if(H5T_SGN_NONE == nsign) { printf("vluint:%s\n", utf8); j = 0; tmp_uint = (unsigned int)strtoul(strtok(temp, ","), NULL, 10); ((unsigned int *)wdata[i].p)[j++] = tmp_uint; while (1) { token = strtok (NULL, ","); printf("token[%d]:%s\n", j, token); if (token == NULL) break; if (token[0] == ' ') token++; tmp_uint = (unsigned int)strtoul(token, NULL, 10); ((unsigned int *)wdata[i].p)[j++] = tmp_uint; } } else { printf("vlint:%s\n", utf8); j = 0; tmp_int = (int)strtoul(strtok(temp, ","), NULL, 10); ((int *)wdata[i].p)[j++] = tmp_int; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_int = (int)strtoul(token, NULL, 10); ((int *)wdata[i].p)[j++] = tmp_int; } } } else if (sizeof(short) == size) { if(H5T_SGN_NONE == nsign) { printf("vlushort:%s\n", utf8); j = 0; tmp_ushort = (unsigned short)strtoul(strtok(temp, ","), NULL, 10); ((unsigned short *)wdata[i].p)[j++] = tmp_ushort; while (1) { token = strtok (NULL, ","); if (token == NULL) break; tmp_ushort = (unsigned short)strtoul(token, NULL, 10); ((unsigned short *)wdata[i].p)[j++] = tmp_ushort; } } else { printf("vlshort:%s\n", utf8); j = 0; tmp_short = (short)strtoul(strtok(temp, ","), NULL, 10); ((short *)wdata[i].p)[j++] = tmp_short; while (1) { token = strtok (NULL, ","); if (token == NULL) break; tmp_short = (short)strtoul(token, NULL, 10); ((short *)wdata[i].p)[j++] = tmp_short; } } } else if (sizeof(long) == size) { if(H5T_SGN_NONE == nsign) { printf("vlulong:%s\n", utf8); j = 0; tmp_ulong = strtoul(strtok(temp, ","), NULL, 10); ((unsigned long *)wdata[i].p)[j++] = tmp_ulong; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ulong = strtoul(token, NULL, 10); ((unsigned long *)wdata[i].p)[j++] = tmp_ulong; } } else { printf("vllong:%s\n", utf8); j = 0; tmp_long = strtol(strtok(temp, ","), NULL, 10); ((long *)wdata[i].p)[j++] = tmp_long; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_long = strtol(token, NULL, 10); ((long *)wdata[i].p)[j++] = tmp_long; } } } else if (sizeof(long long) == size) { if(H5T_SGN_NONE == nsign) { printf("vlulonglong:%s\n", utf8); j = 0; tmp_ullong = strtoull(strtok(temp, ","), NULL, 10); ((unsigned long long *)wdata[i].p)[j++] = tmp_ullong; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ullong = strtoull(token, NULL, 10); ((unsigned long long *)wdata[i].p)[j++] = tmp_ullong; } } else { printf("vllonglong:%s\n", utf8); j = 0; tmp_llong = strtoll(strtok(temp, ","), NULL, 10); ((long long *)wdata[i].p)[j++] = tmp_llong; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_llong = strtoll(token, NULL, 10); ((long long *)wdata[i].p)[j++] = tmp_llong; } } } break; } } break; } /* end switch */ } } /*for (i = 0; i < n; ++i) */ UNPIN_BYTE_ARRAY(0); status = H5Dwrite((hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, wdata); // now free memory for (i = 0; i < n; i++) { if(wdata[i].p) { free(wdata[i].p); } } free(wdata); if (status < 0) { h5libraryError(env); } return (jint)status; } /** * Read VLEN data into array of arrays. * Object[] buf contains VL arrays of data points * Currently only deal with variable length of atomic data types */ /* old version */ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5DreadVL * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5DreadVL (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jobjectArray buf) { htri_t isStr=0, isComplex=0, isVlenStr=0; if (buf == NULL) { h5nullArgument(env, "H5DreadVL: buf is NULL"); return -1; } /* fixed bug 951 if (H5Tget_class((hid_t)mem_type_id) == H5T_COMPOUND) { hid_t nested_tid = H5Tget_member_type((hid_t)mem_type_id, 0); isStr = H5Tis_variable_str(nested_tid); H5Tclose(nested_tid); } else isStr = H5Tis_variable_str((hid_t)mem_type_id); */ /* fixed bug 2105, the following line does not detect array of vlen strings isStr = H5Tdetect_variable_str((hid_t)mem_type_id); */ isStr = H5Tdetect_class((hid_t)mem_type_id, H5T_STRING); /* fixed compound of vlen of compound */ if (H5Tget_class((hid_t)mem_type_id) == H5T_COMPOUND) { hid_t nested_tid = H5Tget_member_type((hid_t)mem_type_id, 0); isComplex = H5Tdetect_class((hid_t)nested_tid, H5T_COMPOUND) || H5Tdetect_class((hid_t)nested_tid, H5T_VLEN); H5Tclose(nested_tid); } else if (H5Tget_class((hid_t)mem_type_id) == H5T_VLEN) { isVlenStr = 1; /* strings created by H5Tvlen_create( H5T_C_S1) */ } if (isStr == 0 || isComplex>0 || isVlenStr) { return (jint) H5DreadVL_notstr (env, (hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buf); } if (isStr > 0) { return (jint) H5DreadVL_str (env, (hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buf); } return -1; } herr_t H5DreadVL_notstr (JNIEnv *env, hid_t did, hid_t tid, hid_t mem_sid, hid_t file_sid, hid_t xfer_plist_id, jobjectArray buf) { jint i; jint n; jstring jstr; herr_t status; h5str_t h5str; hvl_t *rdata; size_t size; size_t max_len = 0; n = ENVPTR->GetArrayLength(ENVPAR buf); rdata = (hvl_t*)calloc(n, sizeof(hvl_t)); if (rdata == NULL) { h5JNIFatalError(env, "H5DreadVL_notstr: failed to allocate buff for read"); return -1; } status = H5Dread(did, tid, mem_sid, file_sid, xfer_plist_id, rdata); if (status < 0) { H5Dvlen_reclaim(tid, mem_sid, xfer_plist_id, rdata); free(rdata); h5JNIFatalError(env, "H5DreadVL_notstr: failed to read data"); return -1; } max_len = 1; for (i=0; ilen > max_len) max_len = (rdata + i)->len; } size = H5Tget_size(tid) * max_len; memset(&h5str, 0, sizeof(h5str_t)); h5str_new(&h5str, 4 * size); if (h5str.s == NULL) { // H5Dvlen_reclaim(tid, mem_sid, xfer_plist_id, rdata); free(rdata); h5JNIFatalError(env, "H5DreadVL_notstr: failed to allocate strng buf"); return -1; } for (i=0; iNewStringUTF(ENVPAR h5str.s); ENVPTR->SetObjectArrayElement(ENVPAR buf, i, jstr); } h5str_free(&h5str); // H5Dvlen_reclaim(tid, mem_sid, xfer_plist_id, rdata); free(rdata); return status; } herr_t H5DreadVL_str (JNIEnv *env, hid_t did, hid_t tid, hid_t mem_sid, hid_t file_sid, hid_t xfer_plist_id, jobjectArray buf) { char **strs; jstring jstr; jint i; jint n; herr_t status = -1; n = ENVPTR->GetArrayLength(ENVPAR buf); strs =(char**)calloc(n, sizeof(char*)); if (strs == NULL) { h5JNIFatalError(env, "H5DreadVL_str: failed to allocate buff for read variable length strings"); return -1; } status = H5Dread(did, tid, mem_sid, file_sid, xfer_plist_id, strs); if (status < 0) { H5Dvlen_reclaim(tid, mem_sid, xfer_plist_id, strs); free(strs); h5JNIFatalError(env, "H5DreadVL_str: failed to read variable length strings"); return -1; } for (i=0; iNewStringUTF(ENVPAR strs[i]); ENVPTR->SetObjectArrayElement(ENVPAR buf, i, jstr); free (strs[i]); } /* for repeatedly reading a dataset with a large number of strs (e.g., 1,000,000 strings, H5Dvlen_reclaim() may crash on Windows because the Java GC will not be able to collect free space in time. Instead, use "free(strs[i])" above to free individual strings after it is done. H5Dvlen_reclaim(tid, mem_sid, xfer_plist_id, strs); */ free(strs); return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_reg_ref * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1reg_1ref (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jobjectArray buf) { herr_t status; h5str_t h5str; size_t size; hdset_reg_ref_t *ref_data; jint i; jint n; jstring jstr; hid_t region = -1; hid_t did = (hid_t) dataset_id; hid_t tid = (hid_t) mem_type_id; hid_t mem_sid = (hid_t) mem_space_id; hid_t file_sid = (hid_t) file_space_id; n = ENVPTR->GetArrayLength(ENVPAR buf); size = sizeof(hdset_reg_ref_t); /*H5Tget_size(tid);*/ ref_data = (hdset_reg_ref_t*)malloc(size * n); if (ref_data == NULL) { h5JNIFatalError(env, "H5Dread_reg_ref: failed to allocate buff for read"); return -1; } status = H5Dread(did, tid, mem_sid, file_sid, xfer_plist_id, ref_data); if (status < 0) { free(ref_data); h5JNIFatalError(env, "H5Dread_reg_ref: failed to read data"); return -1; } memset(&h5str, 0, sizeof(h5str_t)); h5str_new(&h5str, 1024); for (i=0; iNewStringUTF(ENVPAR h5str.s); ENVPTR->SetObjectArrayElement(ENVPAR buf, i, jstr); } h5str_free(&h5str); free(ref_data); return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dread_reg_ref_data * Signature: (IIIII[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dread_1reg_1ref_1data (JNIEnv *env, jclass clss, jint dataset_id, jint mem_type_id, jint mem_space_id, jint file_space_id, jint xfer_plist_id, jobjectArray buf) { herr_t status; h5str_t h5str; size_t size; hdset_reg_ref_t *ref_data; jint i; jint n; jstring jstr; hid_t region_obj; H5S_sel_type region_type; hid_t region = -1; hid_t did = (hid_t) dataset_id; hid_t tid = (hid_t) mem_type_id; hid_t mem_sid = (hid_t) mem_space_id; hid_t file_sid = (hid_t) file_space_id; n = ENVPTR->GetArrayLength(ENVPAR buf); size = sizeof(hdset_reg_ref_t); /*H5Tget_size(tid);*/ ref_data = (hdset_reg_ref_t*)malloc(size * n); if (ref_data == NULL) { h5JNIFatalError(env, "H5Dread_reg_ref_data: failed to allocate buff for read"); return -1; } status = H5Dread(did, tid, mem_sid, file_sid, xfer_plist_id, ref_data); if (status < 0) { free(ref_data); h5JNIFatalError(env, "H5Dread_reg_ref_data: failed to read data"); return -1; } memset(&h5str, 0, sizeof(h5str_t)); h5str_new(&h5str, 1024); for (i=0; i= 0) { region = H5Rget_region(did, H5R_DATASET_REGION, ref_data[i]); if (region >= 0) { region_type = H5Sget_select_type(region); if(region_type==H5S_SEL_POINTS) { h5str_dump_region_points_data(&h5str, region, region_obj); } else { h5str_dump_region_blocks_data(&h5str, region, region_obj); } H5Sclose(region); } H5Dclose(region_obj); } jstr = ENVPTR->NewStringUTF(ENVPAR h5str.s); ENVPTR->SetObjectArrayElement(ENVPAR buf, i, jstr); } h5str_free(&h5str); free(ref_data); return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dcreate2 * Signature: (ILjava/lang/String;IIIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dcreate2 (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint type_id, jint space_id, jint link_plist_id, jint create_plist_id, jint access_plist_id) { hid_t status; char *file; jboolean isCopy; if (name == NULL) { h5nullArgument(env, "_H5Dcreate2: name is NULL"); return -1; } file = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (file == NULL) { h5JNIFatalError(env, "_H5Dcreate2: file name not pinned"); return -1; } status = H5Dcreate2((hid_t)loc_id, (const char*)file, (hid_t)type_id, (hid_t)space_id, (hid_t)link_plist_id, (hid_t)create_plist_id, (hid_t)access_plist_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, file); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dopen2 * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dopen2 (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint access_plist) { hid_t status; char *file; jboolean isCopy; if (name == NULL) { h5nullArgument(env, "_H5Dopen2: name is NULL"); return -1; } file = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (file == NULL) { h5JNIFatalError(env, "_H5Dopen2: file name not pinned"); return -1; } status = H5Dopen2((hid_t)loc_id, file, (hid_t)access_plist ); ENVPTR->ReleaseStringUTFChars(ENVPAR name, file); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Dcreate_anon * Signature: (IIIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Dcreate_1anon (JNIEnv *env, jclass clss, jint loc_id, jint type_id, jint space_id, jint dcpl_id, jint dapl_id) { hid_t status; status = H5Dcreate_anon((hid_t)loc_id, (hid_t)type_id, (hid_t)space_id, (hid_t)dcpl_id, (hid_t)dapl_id); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dget_space_status * Signature: (I)I; */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dget_1space_1status (JNIEnv *env, jclass clss, jint loc_id) { herr_t status; H5D_space_status_t space_status; status = H5Dget_space_status((hid_t)loc_id, (H5D_space_status_t*)&space_status); if (status < 0) { h5libraryError(env); } return (jint)space_status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dget_access_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dget_1access_1plist (JNIEnv *env, jclass clss, jint loc_id) { hid_t status; status = H5Dget_access_plist((hid_t)loc_id); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dget_offset * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dget_1offset (JNIEnv *env, jclass clss, jint loc_id) { haddr_t offset; offset = H5Dget_offset((hid_t)loc_id); if (offset == HADDR_UNDEF) { h5libraryError(env); } return (jlong)offset; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dvlen_get_buf_size_long * Signature: (III)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dvlen_1get_1buf_1size_1long (JNIEnv *env, jclass clss, jint dataset_id, jint type_id, jint space_id) { herr_t status; hsize_t sz; status = H5Dvlen_get_buf_size((hid_t)dataset_id, (hid_t)type_id, (hid_t)space_id, (hsize_t*)&sz); if (status < 0) { h5libraryError(env); return -1; } return (jlong)sz; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dfill * Signature: ([BI[BII)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dfill (JNIEnv *env, jclass clss, jbyteArray fill, jint fill_type_id, jbyteArray buf, jint buf_type_id, jint space_id) { herr_t status; jbyte *fillP; jbyte *buffP; jboolean isCopy1; jboolean isCopy2; if(fill) { fillP = ENVPTR->GetByteArrayElements(ENVPAR fill, &isCopy1); if (fillP == NULL) { h5JNIFatalError( env, "H5Dfill: fill not pinned"); return; } } else fillP = NULL; if (buf == NULL) { h5nullArgument(env, "H5Dfill: buf is NULL"); return; } buffP = ENVPTR->GetByteArrayElements(ENVPAR buf, &isCopy2); if (buffP == NULL) { h5JNIFatalError(env, "H5Dfill: buf not pinned"); return; } status = H5Dfill((const void*)fillP, (hid_t)fill_type_id, (void*)buffP, (hid_t)buf_type_id, (hid_t)space_id); if (status < 0) { ENVPTR->ReleaseByteArrayElements(ENVPAR buf, buffP, JNI_ABORT); if(fillP) { ENVPTR->ReleaseByteArrayElements(ENVPAR fill, fillP, JNI_ABORT); } h5libraryError(env); return; } if (isCopy2 == JNI_TRUE) { ENVPTR->ReleaseByteArrayElements(ENVPAR buf, buffP, 0); } if(fillP) { ENVPTR->ReleaseByteArrayElements(ENVPAR fill, fillP, JNI_ABORT); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Dset_extent * Signature: (I[J)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Dset_1extent (JNIEnv *env, jclass clss, jint loc_id, jlongArray buf) { herr_t status; hsize_t *dims; jlong *buffP; jsize rank; jboolean isCopy; int i = 0; if (buf == NULL) { h5nullArgument(env, "H5Dset_extent: buf is NULL"); return; } rank = ENVPTR->GetArrayLength(ENVPAR buf); if (rank <= 0) { h5JNIFatalError(env, "H5Dset_extent: rank <=0"); return; } buffP = ENVPTR->GetLongArrayElements(ENVPAR buf, &isCopy); if (buffP == NULL) { h5JNIFatalError( env, "H5Dset_extent: buf not pinned"); return; } dims = (hsize_t*) malloc(rank * sizeof(hsize_t)); for (i = 0; i< rank; i++) dims[i] = (hsize_t)buffP[i]; status = H5Dset_extent((hid_t)loc_id, (hsize_t*)dims); free (dims); ENVPTR->ReleaseLongArrayElements(ENVPAR buf, buffP, JNI_ABORT); if (status < 0) { h5libraryError(env); } } herr_t H5D_iterate_cb(void* elem, hid_t elem_id, unsigned ndim, const hsize_t *point, void *op_data) { JNIEnv *cbenv; jint status; jclass cls; jmethodID mid; jbyteArray elemArray; jlongArray pointArray; jsize size; if(JVMPTR->AttachCurrentThread(JVMPAR2 (void**)&cbenv, NULL) != 0) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } cls = CBENVPTR->GetObjectClass(CBENVPAR visit_callback); if (cls == 0) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } mid = CBENVPTR->GetMethodID(CBENVPAR cls, "callback", "([BII[JLncsa/hdf/hdf5lib/callbacks/H5D_iterate_t;)I"); if (mid == 0) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } if (elem == NULL) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } if (point == NULL) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } size = H5Tget_size(elem_id); elemArray = CBENVPTR->NewByteArray(CBENVPAR size); if (elemArray == NULL) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } CBENVPTR->SetByteArrayRegion(CBENVPAR elemArray, 0, size, (jbyte *)elem); pointArray = CBENVPTR->NewLongArray(CBENVPAR 2); if (pointArray == NULL) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } CBENVPTR->SetLongArrayRegion(CBENVPAR pointArray, 0, 2, (const jlong *)point); status = CBENVPTR->CallIntMethod(CBENVPAR visit_callback, mid, elemArray, elem_id, ndim, pointArray, op_data); CBENVPTR->GetByteArrayRegion(CBENVPAR elemArray, 0, size, (jbyte *)elem); JVMPTR->DetachCurrentThread(JVMPAR); return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Diterate * Signature: ([BIILjava/lang/Object;Ljava/lang/Object;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Diterate (JNIEnv *env, jclass clss, jbyteArray buf, jint buf_type, jint space, jobject callback_op, jobject op_data) { jboolean isCopy; jbyte *buffP; herr_t status = -1; ENVPTR->GetJavaVM(ENVPAR &jvm); visit_callback = callback_op; if (op_data == NULL) { h5nullArgument(env, "H5Diterate: op_data is NULL"); return -1; } if (callback_op == NULL) { h5nullArgument(env, "H5Diterate: callback_op is NULL"); return -1; } if (buf == NULL) { h5nullArgument(env, "H5Diterate: buf is NULL"); return -1; } buffP = ENVPTR->GetByteArrayElements(ENVPAR buf, &isCopy); if (buffP == NULL) { h5JNIFatalError(env, "H5Diterate: buf not pinned"); return -1; } status = H5Diterate((void*)buffP, (hid_t)buf_type, (hid_t)space, (H5D_operator_t)H5D_iterate_cb, (void*)op_data); if (status < 0) { ENVPTR->ReleaseByteArrayElements(ENVPAR buf, buffP, JNI_ABORT); h5libraryError(env); return status; } if (isCopy == JNI_TRUE) { ENVPTR->ReleaseByteArrayElements(ENVPAR buf, buffP, 0); } return status; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5lImp.h0000644002344600011330000001214612326542262015673 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5_H5L */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5L #define _Included_ncsa_hdf_hdf5lib_H5_H5L #ifdef __cplusplus extern "C" { #endif extern JavaVM *jvm; extern jobject visit_callback; /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lcopy * Signature: (ILjava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lcopy (JNIEnv *, jclass, jint, jstring, jint, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lcreate_external * Signature: (Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lcreate_1external (JNIEnv *, jclass, jstring, jstring, jint, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lcreate_hard * Signature: (ILjava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lcreate_1hard (JNIEnv *, jclass, jint, jstring, jint, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lcreate_soft * Signature: (Ljava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lcreate_1soft (JNIEnv *, jclass, jstring, jint, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ldelete * Signature: (ILjava/lang/String;I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ldelete (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ldelete_by_idx * Signature: (ILjava/lang/String;IIJI)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ldelete_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lexists * Signature: (ILjava/lang/String;I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lexists (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_info * Signature: (ILjava/lang/String;I)Lncsa/hdf/hdf5lib/structs/H5L_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1info (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_info_by_idx * Signature: (ILjava/lang/String;IIJI)Lncsa/hdf/hdf5lib/structs/H5L_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1info_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_name_by_idx * Signature: (ILjava/lang/String;IIJI)Ljava/lang/String; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1name_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_val * Signature: (ILjava/lang/String;[Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1val (JNIEnv *, jclass, jint, jstring, jobjectArray, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_val_by_idx * Signature: (ILjava/lang/String;IIJ[Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1val_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jobjectArray, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lmove * Signature: (ILjava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lmove (JNIEnv *, jclass, jint, jstring, jint, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lvisit * Signature: (IIILjava/lang/Object;Ljava/lang/Object;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lvisit (JNIEnv *, jclass, jint, jint, jint, jobject, jobject); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lvisit_by_name * Signature: (ILjava/lang/String;IILjava/lang/Object;Ljava/lang/Object;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lvisit_1by_1name (JNIEnv *, jclass, jint, jstring, jint, jint, jobject, jobject, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Literate * Signature: (IIIJLjava/lang/Object;Ljava/lang/Object;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Literate (JNIEnv *, jclass, jint, jint, jint, jlong, jobject, jobject); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Literate_by_name * Signature: (ILjava/lang/String;IILjava/lang/Object;Ljava/lang/Object;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Literate_1by_1name (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jobject, jobject, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5rImp.h0000644002344600011330000000306712371212307015675 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5R */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5R #define _Included_ncsa_hdf_hdf5lib_H5_H5R #ifdef __cplusplus extern "C" { #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Rcreate * Signature: ([BILjava/lang/String;II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Rcreate (JNIEnv *, jclass, jbyteArray, jint, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Rdereference * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Rdereference (JNIEnv *, jclass, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Rget_region * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Rget_1region (JNIEnv *, jclass, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5G_obj_t H5Rget_obj_type * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Rget_1obj_1type (JNIEnv *, jclass, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: int H5Rget_obj_type2 * Signature: (II[B[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Rget_1obj_1type2 (JNIEnv *, jclass, jint, jint, jbyteArray, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Rget_name * Signature: (II[B[Ljava/lang/String;J)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Rget_1name (JNIEnv *, jclass, jint, jint, jbyteArray, jobjectArray, jlong); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/nativeData.c0000644002344600011330000007675312326542262016626 0ustar byrnhdf/**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This module contains the implementation of all the native methods * used for number conversion. This is represented by the Java * class HDFNativeData. * * These routines convert one dimensional arrays of bytes into * one-D arrays of other types (int, float, etc) and vice versa. * * These routines are called from the Java parts of the Java-C * interface. * * ***Important notes: * * 1. These routines are designed to be portable--they use the * C compiler to do the required native data manipulation. * 2. These routines copy the data at least once -- a serious * but unavoidable performance hit. */ #ifdef __cplusplus extern "C" { #endif #include #include "hdf5.h" #include "h5jni.h" /* returns int [] */ JNIEXPORT jintArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToInt___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jintArray rarray; int blen; jint *iarray; jboolean bb; char *bp; jint *iap; int ii; int len; if (bdata == NULL) { h5nullArgument( env, "byteToInt: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError(env, "byteToInt: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jint); rarray = ENVPTR->NewIntArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToInt" ); return NULL; } iarray = ENVPTR->GetIntArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError(env, "byteToInt: pin iarray failed"); return NULL; } bp = (char *)barr; iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jint *)bp; iap++; bp += sizeof(jint); } ENVPTR->ReleaseIntArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns float [] */ JNIEXPORT jfloatArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToFloat___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jfloatArray rarray; int blen; jfloat *farray; jboolean bb; char *bp; jfloat *iap; int ii; int len; if (bdata == NULL) { h5nullArgument( env, "byteToFloat: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError(env, "byteToFloat: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jfloat); rarray = ENVPTR->NewFloatArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToFloat" ); return NULL; } farray = ENVPTR->GetFloatArrayElements(ENVPAR rarray,&bb); if (farray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError(env, "byteToFloat: pin farray failed"); return NULL; } bp = (char *)barr; iap = farray; for (ii = 0; ii < len; ii++) { *iap = *(jfloat *)bp; iap++; bp += sizeof(jfloat); } ENVPTR->ReleaseFloatArrayElements(ENVPAR rarray,farray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns short [] */ JNIEXPORT jshortArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToShort___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jshortArray rarray; int blen; jshort *sarray; jboolean bb; char *bp; jshort *iap; int ii; int len; if (bdata == NULL) { h5nullArgument( env, "byteToShort: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError(env, "byteToShort: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jshort); rarray = ENVPTR->NewShortArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToShort" ); return NULL; } sarray = ENVPTR->GetShortArrayElements(ENVPAR rarray,&bb); if (sarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError(env, "byteToShort: pin sarray failed"); return NULL; } bp = (char *)barr; iap = sarray; for (ii = 0; ii < len; ii++) { *iap = *(jshort *)bp; iap++; bp += sizeof(jshort); } ENVPTR->ReleaseShortArrayElements(ENVPAR rarray,sarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns long [] */ JNIEXPORT jlongArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToLong___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jlongArray rarray; int blen; jlong *larray; jboolean bb; char *bp; jlong *iap; int ii; int len; if (bdata == NULL) { h5nullArgument( env, "byteToLong: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError(env, "byteToLong: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jlong); rarray = ENVPTR->NewLongArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToLong" ); return NULL; } larray = ENVPTR->GetLongArrayElements(ENVPAR rarray,&bb); if (larray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError(env, "byteToLong: pin larray failed"); return NULL; } bp = (char *)barr; iap = larray; for (ii = 0; ii < len; ii++) { *iap = *(jlong *)bp; iap++; bp += sizeof(jlong); } ENVPTR->ReleaseLongArrayElements(ENVPAR rarray,larray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns double [] */ JNIEXPORT jdoubleArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToDouble___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jdoubleArray rarray; int blen; jdouble *darray; jboolean bb; char *bp; jdouble *iap; int ii; int len; if (bdata == NULL) { h5nullArgument( env, "byteToDouble: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError(env, "byteToDouble: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jdouble); rarray = ENVPTR->NewDoubleArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToDouble" ); return NULL; } darray = ENVPTR->GetDoubleArrayElements(ENVPAR rarray,&bb); if (darray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError(env, "byteToDouble: pin darray failed"); return NULL; } bp = (char *)barr; iap = darray; for (ii = 0; ii < len; ii++) { *iap = *(jdouble *)bp; iap++; bp += sizeof(jdouble); } ENVPTR->ReleaseDoubleArrayElements(ENVPAR rarray,darray,0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns int [] */ JNIEXPORT jintArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToInt__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jintArray rarray; int blen; jint *iarray; jint *iap; int ii; jboolean bb; if (bdata == NULL) { h5nullArgument( env, "byteToInt: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError(env, "byteToInt: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*sizeof(jint))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError(env, "byteToInt: getLen failed"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewIntArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToInt" ); return NULL; } iarray = ENVPTR->GetIntArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError(env, "byteToInt: pin iarray failed"); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jint *)bp; iap++; bp += sizeof(jint); } ENVPTR->ReleaseIntArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns short [] */ JNIEXPORT jshortArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToShort__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jshortArray rarray; int blen; jshort *iarray; jshort *iap; int ii; jboolean bb; if (bdata == NULL) { h5nullArgument( env, "byteToShort: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError( env, "byteToShort: getByte failed?"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*(sizeof(jshort)))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5badArgument( env, "byteToShort: start or len is out of bounds"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewShortArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToShort" ); return NULL; } iarray = ENVPTR->GetShortArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError( env, "byteToShort: getShort failed?"); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jshort *)bp; iap++; bp += sizeof(jshort); } ENVPTR->ReleaseShortArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns float [] */ JNIEXPORT jfloatArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToFloat__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jfloatArray rarray; int blen; jfloat *iarray; jfloat *iap; int ii; jboolean bb; if (bdata == NULL) { h5nullArgument( env, "byteToFloat: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError( env, "byteToFloat: getByte failed?"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*(sizeof(jfloat)))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5badArgument( env, "byteToFloat: start or len is out of bounds"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewFloatArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToFloat" ); return NULL; } iarray = ENVPTR->GetFloatArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError( env, "byteToFloat: getFloat failed?"); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jfloat *)bp; iap++; bp += sizeof(jfloat); } ENVPTR->ReleaseFloatArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns long [] */ JNIEXPORT jlongArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToLong__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jlongArray rarray; int blen; jlong *iarray; jlong *iap; int ii; jboolean bb; if (bdata == NULL) { h5nullArgument( env, "byteToLong: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError( env, "byteToLong: getByte failed?"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*(sizeof(jlong)))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5badArgument( env, "byteToLong: start or len is out of bounds"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewLongArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToLong" ); return NULL; } iarray = ENVPTR->GetLongArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError( env, "byteToLong: getLong failed?"); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jlong *)bp; iap++; bp += sizeof(jlong); } ENVPTR->ReleaseLongArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns double [] */ JNIEXPORT jdoubleArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToDouble__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jdoubleArray rarray; int blen; jdouble *iarray; jdouble *iap; int ii; jboolean bb; if (bdata == NULL) { h5nullArgument( env, "byteToDouble: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h5JNIFatalError( env, "byteToDouble: getByte failed?"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*(sizeof(jdouble)))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5badArgument( env, "byteToDouble: start or len is out of bounds"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewDoubleArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5outOfMemory( env, "byteToDouble" ); return NULL; } iarray = ENVPTR->GetDoubleArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h5JNIFatalError( env, "byteToDouble: getDouble failed?"); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jdouble *)bp; iap++; bp += sizeof(jdouble); } ENVPTR->ReleaseDoubleArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_intToByte__II_3I (JNIEnv *env, jclass clss, jint start, jint len, jintArray idata) /* IN: array of int */ { jint *ip; jint *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { int ival; char bytes[4]; } u; if (idata == NULL) { h5nullArgument( env, "intToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetIntArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h5JNIFatalError( env, "intToByte: getInt failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseIntArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5badArgument( env, "intToByte: start or len is out of bounds"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jint); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5outOfMemory( env, "intToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5JNIFatalError( env, "intToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jint); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_shortToByte__II_3S ( JNIEnv *env, jclass clss, jint start, jint len, jshortArray idata) /* IN: array of short */ { jshort *ip; jshort *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { short ival; char bytes[4]; } u; if (idata == NULL) { h5nullArgument( env, "shortToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetShortArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h5JNIFatalError( env, "shortToByte: getShort failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseShortArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5badArgument( env, "shortToByte: start or len is out of bounds"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jshort); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseShortArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5outOfMemory( env, "shortToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseShortArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5JNIFatalError( env, "shortToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jshort); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseShortArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_floatToByte__II_3F ( JNIEnv *env, jclass clss, jint start, jint len, jfloatArray idata) /* IN: array of float */ { jfloat *ip; jfloat *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { float ival; char bytes[4]; } u; if (idata == NULL) { h5nullArgument( env, "floatToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetFloatArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h5JNIFatalError( env, "floatToByte: getFloat failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseFloatArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5badArgument( env, "floatToByte: start or len is out of bounds"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jfloat); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseFloatArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5outOfMemory( env, "floatToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseFloatArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5JNIFatalError( env, "floatToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jfloat); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseFloatArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_doubleToByte__II_3D ( JNIEnv *env, jclass clss, jint start, jint len, jdoubleArray idata) /* IN: array of double */ { jdouble *ip; jdouble *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { double ival; char bytes[8]; } u; if (idata == NULL) { h5nullArgument( env, "doubleToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetDoubleArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h5JNIFatalError( env, "doubleToByte: getDouble failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5badArgument( env, "doubleToByte: start or len is out of bounds"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jdouble); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5outOfMemory( env, "doubleToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5JNIFatalError( env, "doubleToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jdouble); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseDoubleArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_longToByte__II_3J ( JNIEnv *env, jclass clss, jint start, jint len, jlongArray idata) /* IN: array of long */ { jlong *ip; jlong *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { jlong ival; char bytes[8]; } u; if (idata == NULL) { h5nullArgument( env, "longToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetLongArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h5JNIFatalError( env, "longToByte: getLong failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseLongArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5badArgument( env, "longToByte: start or len is out of bounds?\n"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jlong); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5outOfMemory( env, "longToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR idata,iarr,JNI_ABORT); h5JNIFatalError( env, "longToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jlong); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseLongArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_intToByte__I ( JNIEnv *env, jclass clss, jint idata) /* IN: int */ { jbyteArray rarray; jbyte *barray; jbyte *bap; int ij; jboolean bb; union things { int ival; char bytes[sizeof(int)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jint)); if (rarray == NULL) { h5outOfMemory( env, "intToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h5JNIFatalError( env, "intToByte: getByte failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jint); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_floatToByte__F ( JNIEnv *env, jclass clss, jfloat idata) /* IN: int */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { float ival; char bytes[sizeof(float)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jfloat)); if (rarray == NULL) { h5outOfMemory( env, "floatToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h5JNIFatalError( env, "floatToByte: getByte failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jfloat); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_shortToByte__S ( JNIEnv *env, jclass clss, jshort idata) /* IN: short */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { short ival; char bytes[sizeof(short)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jshort)); if (rarray == NULL) { h5outOfMemory( env, "shortToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h5JNIFatalError( env, "shortToByte: getShort failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jshort); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_doubleToByte__D ( JNIEnv *env, jclass clss, jdouble idata) /* IN: double */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { double ival; char bytes[sizeof(double)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jdouble)); if (rarray == NULL) { h5outOfMemory( env, "doubleToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h5JNIFatalError( env, "doubleToByte: getDouble failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jdouble); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_longToByte__J ( JNIEnv *env, jclass clss, jlong idata) /* IN: array of long */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { jlong ival; char bytes[sizeof(jlong)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jlong)); if (rarray == NULL) { h5outOfMemory( env, "longToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h5JNIFatalError( env, "longToByte: getLong failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jlong); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_HDFNativeData_byteToByte__B ( JNIEnv *env, jclass clss, jbyte idata) /* IN: array of long */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { jbyte ival; char bytes[sizeof(jbyte)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jbyte)); if (rarray == NULL) { h5outOfMemory( env, "byteToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h5JNIFatalError( env, "byteToByte: getByte failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jbyte); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5Imp.c0000644002344600011330000001251112326542262015506 0ustar byrnhdf/**************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * ****************************************************************************/ #ifdef __cplusplus extern "C" { #endif /* * This code is the C-interface called by Java programs to access the * general library functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu/HDF5/doc/ * */ #include "hdf5.h" #include #include "h5jni.h" /* #include */ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5open * Signature: ()I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5open (JNIEnv *env, jclass clss) { herr_t retVal = -1; retVal = H5open(); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5close * Signature: ()I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5close (JNIEnv *env, jclass clss) { herr_t retVal = -1; retVal = H5close(); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5dont_atexit * Signature: ()I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5dont_1atexit (JNIEnv *env, jclass clss) { int retVal = H5dont_atexit(); if (retVal < 0) { h5libraryError(env); } return retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5get_libversion * Signature: ([I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5get_1libversion (JNIEnv *env, jclass clss, jintArray libversion) { unsigned *theArray = NULL; jboolean isCopy; int status; if (libversion == NULL) { h5nullArgument( env, "H5get_version: libversion is NULL"); return -1; } theArray = (unsigned *)ENVPTR->GetIntArrayElements(ENVPAR libversion,&isCopy); if (theArray == NULL) { h5JNIFatalError( env, "H5get_libversion: input not pinned"); return -1; } status = H5get_libversion(&(theArray[0]), &(theArray[1]), &(theArray[2])); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR libversion,(jint *)theArray,JNI_ABORT); h5libraryError(env); } else { ENVPTR->ReleaseIntArrayElements(ENVPAR libversion,(jint *)theArray,0); } return (jint)status; } #ifdef notdef /* struct sigaction { int sa_flags; void (*sa_handler)(); sigset_t sa_mask; void (*sa_sigaction)(int, siginfo_t *, void *); }; int sigaction(int sig, struct sigaction *act, struct sigaction *oact); */ void catch_abrt() { /* Raise Java exception */ printf("raise exception....\n"); } #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5check_version * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5check_1version (JNIEnv *env, jclass clss, jint majnum, jint minnum, jint relnum) { int status; /* * In principle, we want to catch the 'abort' signal, and * do something other than crash. * Look up how to do this portably. */ /* int res; struct sigaction ctchit; struct sigaction old; ctchit.sa_handler = catch_abrt; */ /* res = sigaction(SIGABRT, &ctchit, &old); if (res != 0) { printf("sigaction failed\n"); return(-1); } */ /* catch the signal? */ status = H5check_version((unsigned)majnum, (unsigned)minnum, (unsigned)relnum); /* res = sigaction(SIGABRT, &old, 0); if (res != 0) { printf("sigaction failed\n"); return(-1); } */ return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5garbage_collect * Signature: ()I * */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5garbage_1collect (JNIEnv *env, jclass clss) { herr_t retVal = -1; retVal = H5garbage_collect(); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5set_free_list_limits * Signature: (IIIIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5set_1free_1list_1limits (JNIEnv *env, jclass clss, jint reg_global_lim, jint reg_list_lim, jint arr_global_lim, jint arr_list_lim, jint blk_global_lim, jint blk_list_lim ) { int retVal = H5set_free_list_limits((int)reg_global_lim, (int)reg_list_lim, (int)arr_global_lim, (int)arr_list_lim, (int)blk_global_lim, (int)blk_list_lim); if (retVal < 0) { h5libraryError(env); } return retVal; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5tImp.c0000644002344600011330000013155212372144560015701 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * This code is the C-interface called by Java programs to access the * Group Object API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdfdfgroup.org/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include #include #include #include #include "hdf5.h" #include "h5jni.h" #include "h5tImp.h" //#include "h5util.h" /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Topen * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Topen (JNIEnv *env, jclass clss, jint loc_id, jstring name) { hid_t status; char* tname; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Topen: name is NULL"); return -1; } tname = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (tname == NULL) { h5JNIFatalError(env, "H5Topen: name not pinned"); return -1; } status = H5Topen2((hid_t)loc_id, tname, (hid_t)H5P_DEFAULT); ENVPTR->ReleaseStringUTFChars(ENVPAR name,tname); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tcommit1 * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tcommit1 (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint type) { herr_t status; char* tname; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Tcommit: name is NULL"); return -1; } tname = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (tname == NULL) { h5JNIFatalError(env, "H5Tcommit: name not pinned"); return -1; } status = H5Tcommit2((hid_t)loc_id, tname, type, (hid_t)H5P_DEFAULT, (hid_t)H5P_DEFAULT, (hid_t)H5P_DEFAULT); ENVPTR->ReleaseStringUTFChars(ENVPAR name,tname); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tcommitted * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tcommitted (JNIEnv *env, jclass clss, jint type) { htri_t bval; bval = H5Tcommitted(type); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { /* raise exception -- return value is irrelevant */ h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tcreate * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tcreate (JNIEnv *env, jclass clss, jint dclass, jlong size) { hid_t retVal = -1; retVal = H5Tcreate((H5T_class_t )dclass, (size_t)size); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tcopy * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tcopy (JNIEnv *env, jclass clss, jint type_id) { hid_t retVal = -1; retVal = H5Tcopy((hid_t)type_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tequal * Signature: (II)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tequal (JNIEnv *env, jclass clss, jint type_id1, jint type_id2) { htri_t bval; bval = H5Tequal((hid_t)type_id1, (hid_t)type_id2); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { /* raise exception -- return value is irrelevant */ h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tlock * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tlock (JNIEnv *env, jclass clss, jint type_id) { herr_t retVal = -1; retVal = H5Tlock((hid_t)type_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_class * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1class (JNIEnv *env, jclass clss, jint type_id) { H5T_class_t retVal = H5T_NO_CLASS; retVal = H5Tget_class((hid_t)type_id); if (retVal == H5T_NO_CLASS) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_size * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1size (JNIEnv *env, jclass clss, jint type_id) { size_t retVal = 0; retVal = H5Tget_size((hid_t)type_id); if (retVal == 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_size_long * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1size_1long (JNIEnv *env, jclass clss, jint type_id) { size_t retVal = 0; retVal = H5Tget_size((hid_t)type_id); if (retVal == 0) { h5libraryError(env); } return (jlong)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_size * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1size (JNIEnv *env, jclass clss, jint type_id, jlong size) { herr_t retVal = -1; size_t tsize = (size_t)size; retVal = H5Tset_size((hid_t)type_id, tsize); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_order * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1order (JNIEnv *env, jclass clss, jint type_id) { H5T_order_t retVal = H5T_ORDER_ERROR; retVal = H5Tget_order((hid_t)type_id); if (retVal == H5T_ORDER_ERROR) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_order * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1order (JNIEnv *env, jclass clss, jint type_id, jint order) { herr_t retVal = -1; retVal = H5Tset_order((hid_t)type_id, (H5T_order_t)order); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_precision * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1precision (JNIEnv *env, jclass clss, jint type_id) { size_t retVal = 0; retVal = H5Tget_precision((hid_t)type_id); if (retVal == 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_precision_long * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1precision_1long (JNIEnv *env, jclass clss, jint type_id) { size_t retVal = 0; retVal = H5Tget_precision((hid_t)type_id); if (retVal == 0) { h5libraryError(env); } return (jlong)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_precision * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1precision (JNIEnv *env, jclass clss, jint type_id, jlong precision) { herr_t retVal = -1; retVal = H5Tset_precision((hid_t)type_id, (size_t)precision); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_offset * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1offset (JNIEnv *env, jclass clss, jint type_id) { int retVal = 0; retVal = H5Tget_offset((hid_t)type_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_offset * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1offset (JNIEnv *env, jclass clss, jint type_id, jlong offset) { herr_t retVal = -1; retVal = H5Tset_offset((hid_t)type_id, (size_t)offset); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_pad * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1pad (JNIEnv *env, jclass clss, jint type_id, jintArray pad) { herr_t status; jboolean isCopy; jint *P; if (pad == NULL) { h5nullArgument( env, "H5Tget_pad: pad is NULL"); return -1; } P = ENVPTR->GetIntArrayElements(ENVPAR pad,&isCopy); if (P == NULL) { h5JNIFatalError(env, "H5Tget_pad: pad not pinned"); return -1; } status = H5Tget_pad((hid_t)type_id, (H5T_pad_t *)&(P[0]), (H5T_pad_t *)&(P[1])); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR pad,P,JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR pad,P,0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_pad * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1pad (JNIEnv *env, jclass clss, jint type_id, jint lsb, jint msb) { herr_t retVal = -1; retVal = H5Tset_pad((hid_t)type_id, (H5T_pad_t)lsb, (H5T_pad_t)msb); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_sign * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1sign (JNIEnv *env, jclass clss, jint type_id) { H5T_sign_t retVal = H5T_SGN_ERROR; retVal = H5Tget_sign((hid_t)type_id); if (retVal == H5T_SGN_ERROR) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_sign * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1sign (JNIEnv *env, jclass clss, jint type_id, jint sign) { herr_t retVal = -1; retVal = H5Tset_sign((hid_t)type_id, (H5T_sign_t)sign); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_fields_int * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1fields_1int (JNIEnv *env, jclass clss, jint type_id, jintArray fields) { herr_t status; jboolean isCopy; jint *P; if (fields == NULL) { h5nullArgument( env, "H5Tget_fields: fields is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR fields) < 5) { h5badArgument( env, "H5Tget_fields: fields input array < order 5"); return -1; } P = ENVPTR->GetIntArrayElements(ENVPAR fields,&isCopy); if (P == NULL) { h5JNIFatalError(env, "H5Tget_fields: fields not pinned"); return -1; } status = H5Tget_fields((hid_t)type_id, (size_t *)&(P[0]), (size_t *)&(P[1]), (size_t *)&(P[2]), (size_t *)&(P[3]), (size_t *)&(P[4])); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR fields,P,JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR fields,P,0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_fields * Signature: (I[J)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1fields (JNIEnv *env, jclass clss, jint type_id, jlongArray fields) { herr_t status; jboolean isCopy; jlong *fieldsArray; if (fields == NULL) { h5nullArgument( env, "H5Tget_fields: fields is NULL"); return; } if (ENVPTR->GetArrayLength(ENVPAR fields) < 5) { h5badArgument( env, "H5Tget_fields: fields input array < order 5"); return; } fieldsArray = ENVPTR->GetLongArrayElements(ENVPAR fields, &isCopy); if (fieldsArray == NULL) { h5JNIFatalError(env, "H5Tget_fields: fields not pinned"); return; } { /* direct cast (size_t *)variable fails on 32-bit environment */ size_t spos_t = 0; size_t epos_t = 0; size_t esize_t = 0; size_t mpos_t = 0; size_t msize_t = 0; long long fields_temp = *(&fieldsArray[0]); spos_t = (size_t)fields_temp; fields_temp = *(&fieldsArray[1]); epos_t = (size_t)fields_temp; fields_temp = *(&fieldsArray[2]); esize_t = (size_t)fields_temp; fields_temp = *(&fieldsArray[3]); mpos_t = (size_t)fields_temp; fields_temp = *(&fieldsArray[4]); msize_t = (size_t)fields_temp; status = H5Tget_fields((hid_t)type_id, &spos_t, &epos_t, &esize_t, &mpos_t, &msize_t); *(&fieldsArray[0]) = spos_t; *(&fieldsArray[1]) = epos_t; *(&fieldsArray[2]) = esize_t; *(&fieldsArray[3]) = mpos_t; *(&fieldsArray[4]) = msize_t; } if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR fields, fieldsArray, JNI_ABORT); h5libraryError(env); return; } ENVPTR->ReleaseLongArrayElements(ENVPAR fields, fieldsArray, 0); } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_fields * Signature: (IJJJJJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1fields (JNIEnv *env, jclass clss, jint type_id, jlong spos, jlong epos, jlong esize, jlong mpos, jlong msize) { herr_t retVal = -1; retVal = H5Tset_fields((hid_t)type_id, (size_t)spos, (size_t)epos, (size_t)esize, (size_t)mpos, (size_t)msize); if (retVal < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_ebias * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1ebias (JNIEnv *env, jclass clss, jint type_id) { size_t retVal = 0; retVal = H5Tget_ebias((hid_t)type_id); if (retVal == 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_ebias_long * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1ebias_1long (JNIEnv *env, jclass clss, jint type_id) { size_t retVal = 0; retVal = H5Tget_ebias((hid_t)type_id); if (retVal == 0) { h5libraryError(env); } return (jlong)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_ebias * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1ebias (JNIEnv *env, jclass clss, jint type_id, jlong ebias) { herr_t retVal = -1; retVal = H5Tset_ebias((hid_t)type_id, (size_t)ebias); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_norm * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1norm (JNIEnv *env, jclass clss, jint type_id) { H5T_norm_t retVal = H5T_NORM_ERROR; retVal = H5Tget_norm((hid_t)type_id); if (retVal == H5T_NORM_ERROR) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_norm * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1norm (JNIEnv *env, jclass clss, jint type_id, jint norm) { herr_t retVal = -1; retVal = H5Tset_norm((hid_t)type_id, (H5T_norm_t )norm); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_inpad * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1inpad (JNIEnv *env, jclass clss, jint type_id) { H5T_pad_t retVal = H5T_PAD_ERROR; retVal = H5Tget_inpad((hid_t)type_id ); if (retVal == H5T_PAD_ERROR) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_inpad * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1inpad (JNIEnv *env, jclass clss, jint type_id, jint inpad) { herr_t retVal = -1; retVal = H5Tset_inpad((hid_t)type_id, (H5T_pad_t) inpad); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_cset * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1cset (JNIEnv *env, jclass clss, jint type_id) { H5T_cset_t retVal = H5T_CSET_ERROR; retVal = H5Tget_cset((hid_t)type_id); if (retVal == H5T_CSET_ERROR) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_cset * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1cset (JNIEnv *env, jclass clss, jint type_id, jint cset) { herr_t retVal = -1; retVal = H5Tset_cset((hid_t)type_id, (H5T_cset_t)cset); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_strpad * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1strpad (JNIEnv *env, jclass clss, jint type_id) { H5T_str_t retVal = H5T_STR_ERROR; retVal = H5Tget_strpad((hid_t)type_id); if (retVal == H5T_STR_ERROR) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_strpad * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1strpad (JNIEnv *env, jclass clss, jint type_id, jint strpad) { herr_t retVal = -1; retVal = H5Tset_strpad((hid_t)type_id, (H5T_str_t)strpad); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_nmembers * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1nmembers (JNIEnv *env, jclass clss, jint type_id) { int retVal = -1; retVal = H5Tget_nmembers((hid_t)type_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_name * Signature: (II)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1name (JNIEnv *env, jclass clss, jint type_id, jint field_idx) { char *name; jstring str; name = H5Tget_member_name((hid_t)type_id, field_idx); if (name == NULL) { return NULL; } /* may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR name); H5free_memory(name); if (str == NULL) { h5JNIFatalError(env, "H5Tget_member_name: returned string not created"); return NULL; } return str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_index * Signature: (ILjava/lang/String)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1index (JNIEnv *env, jclass clss, jint type_id, jstring field_name) { char *tname; int index; jboolean isCopy; if (field_name == NULL) { h5nullArgument( env, "H5Tget_member_index: field_name is NULL"); return -1; } tname = (char *)ENVPTR->GetStringUTFChars(ENVPAR field_name,&isCopy); if (tname == NULL) { h5JNIFatalError(env, "H5Tget_member_index: field_name not pinned"); return -1; } index = H5Tget_member_index((hid_t)type_id, tname); ENVPTR->ReleaseStringUTFChars(ENVPAR field_name,tname); if (index < 0) { h5libraryError(env); } return index; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_type * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tget_1member_1type (JNIEnv *env, jclass clss, jint type_id, jint field_idx) { hid_t retVal = -1; retVal = H5Tget_member_type((hid_t)type_id, field_idx); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_offset * Signature: (II)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1offset (JNIEnv *env, jclass clss, jint type_id, jint memno) { size_t retVal = 0; retVal = H5Tget_member_offset((hid_t)type_id, memno); return (jlong)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_class * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1class (JNIEnv *env, jclass clss, jint type_id, jint memno) { int retVal = 0; retVal = H5Tget_member_class((hid_t)type_id, memno); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tinsert * Signature: (ILjava/lang/String;JI)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tinsert (JNIEnv *env, jclass clss, jint type_id, jstring name, jlong offset, jint field_id) { herr_t status; char* tname; jboolean isCopy; long off; off = (long)offset; if (name == NULL) { h5nullArgument( env, "H5Tinsert: name is NULL"); return -1; } tname =(char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (tname == NULL) { h5JNIFatalError(env, "H5Tinsert: name not pinned"); return -1; } status = H5Tinsert((hid_t)type_id, tname, (size_t)off, field_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name,tname); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tpack * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tpack (JNIEnv *env, jclass clss, jint type_id) { herr_t retVal = -1; retVal = H5Tpack((hid_t)type_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tclose (JNIEnv *env, jclass clss, jint type_id) { herr_t retVal = 0; retVal = H5Tclose((hid_t)type_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tvlen_create * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tvlen_1create (JNIEnv *env, jclass clss, jint base_id) { hid_t status; status = H5Tvlen_create((hid_t)base_id); if (status < 0) h5libraryError(env); return (jlong)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_tag * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1tag (JNIEnv *env, jclass clss, jint type, jstring tag) { herr_t status; char *tagP; jboolean isCopy; if (tag == NULL) { h5nullArgument( env, "H5Tset_tag: tag is NULL"); return -1; } tagP = (char *)ENVPTR->GetStringUTFChars(ENVPAR tag,&isCopy); if (tagP == NULL) { h5JNIFatalError( env, "H5Tset_tag: tag not pinned"); return -1; } status = H5Tset_tag((hid_t)type, tagP); ENVPTR->ReleaseStringUTFChars(ENVPAR tag,tagP); if (status < 0) h5libraryError(env); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_tag * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1tag (JNIEnv *env, jclass clss, jint type) { jstring str; char *tag; tag = H5Tget_tag((hid_t)type); if (tag == NULL) return NULL; /* may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR tag); H5free_memory(tag); if (str == NULL) { h5JNIFatalError(env, "H5Tget_tag: returned string not created"); return NULL; } return str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_super * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tget_1super (JNIEnv *env, jclass clss, jint type_id) { hid_t status; status = H5Tget_super((hid_t)type_id); if (status < 0) h5libraryError(env); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tenum_create * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tenum_1create (JNIEnv *env, jclass clss, jint base_id) { hid_t status; status = H5Tenum_create((hid_t)base_id); if (status < 0) h5libraryError(env); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_insert_int * Signature: (ILjava/lang/String;[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1insert_1int (JNIEnv *env, jclass clss, jint type_id, jstring name, jintArray value) { herr_t status; jint *intP; char *nameP; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Tenum_insert: name is NULL"); return -1; } nameP = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (nameP == NULL) { h5JNIFatalError( env, "H5Tenum_insert: name not pinned"); return -1; } if ( value == NULL ) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); h5nullArgument( env, "H5Tenum_insert: value is NULL"); return -1; } intP = ENVPTR->GetIntArrayElements(ENVPAR value, &isCopy); if (intP == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); h5JNIFatalError( env, "H5Tenum_insert: value not pinned"); return -1; } status = H5Tenum_insert((hid_t)type_id, nameP, intP); ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR value, intP, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR value, intP, JNI_ABORT); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_insert * Signature: (ILjava/lang/String;[B)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1insert (JNIEnv *env, jclass clss, jint type_id, jstring name, jbyteArray value) { herr_t status; jbyte *byteP; char *nameP; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Tenum_insert: name is NULL"); return; } nameP = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (nameP == NULL) { h5JNIFatalError( env, "H5Tenum_insert: name not pinned"); return; } if ( value == NULL ) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); h5nullArgument( env, "H5Tenum_insert: value is NULL"); return; } byteP = ENVPTR->GetByteArrayElements(ENVPAR value, &isCopy); if (byteP == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); h5JNIFatalError( env, "H5Tenum_insert: value not pinned"); return; } status = H5Tenum_insert((hid_t)type_id, nameP, byteP); ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); ENVPTR->ReleaseByteArrayElements(ENVPAR value, byteP, JNI_ABORT); if (status < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_nameof_int * Signature: (I[I[Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1nameof_1int (JNIEnv *env, jclass clss, jint type_id, jintArray value, jobjectArray name, jint size) { hid_t status; jint *intP; char *nameP; jboolean isCopy; jstring str; if (size <= 0) { h5badArgument( env, "H5Tenum_nameof: name size < 0"); return -1; } nameP = (char *)malloc(sizeof(char)*size); if (nameP == NULL) { /* exception -- out of memory */ h5outOfMemory( env, "H5Tenum_nameof: malloc name size"); return -1; } if ( value == NULL ) { free(nameP); h5nullArgument( env, "H5Tenum_nameof: value is NULL"); return -1; } intP = ENVPTR->GetIntArrayElements(ENVPAR value, &isCopy); if (intP == NULL) { free(nameP); h5JNIFatalError( env, "H5Tenum_nameof: value not pinned"); return -1; } status = H5Tenum_nameof((hid_t)type_id, intP, nameP, (size_t)size); ENVPTR->ReleaseIntArrayElements(ENVPAR value, intP, JNI_ABORT); if (status < 0) { free(nameP); h5libraryError(env); return -1; } str = ENVPTR->NewStringUTF(ENVPAR nameP); if (str == NULL) { free(nameP); h5JNIFatalError( env, "H5Tenum_nameof: return array not created"); return -1; } /* SetObjectArrayElement may raise exceptions */ ENVPTR->SetObjectArrayElement(ENVPAR name, 0, (jobject)str); free(nameP); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_nameof * Signature: (I[BJ)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1nameof (JNIEnv *env, jclass clss, jint type_id, jbyteArray value, jlong size) { herr_t status; jbyte *byteP; char *nameP; jboolean isCopy; jstring str; if (size <= 0) { h5badArgument( env, "H5Tenum_nameof: name size < 0"); return NULL; } nameP = (char *)malloc(sizeof(char)*(size_t)size); if (nameP == NULL) { /* exception -- out of memory */ h5outOfMemory( env, "H5Tenum_nameof: malloc name size"); return NULL; } if ( value == NULL ) { free(nameP); h5nullArgument( env, "H5Tenum_nameof: value is NULL"); return NULL; } byteP = ENVPTR->GetByteArrayElements(ENVPAR value, &isCopy); if (byteP == NULL) { free(nameP); h5JNIFatalError( env, "H5Tenum_nameof: value not pinned"); return NULL; } status = H5Tenum_nameof((hid_t)type_id, byteP, nameP, (size_t)size); ENVPTR->ReleaseByteArrayElements(ENVPAR value, byteP, JNI_ABORT); if (status < 0) { free(nameP); h5libraryError(env); return NULL; } str = ENVPTR->NewStringUTF(ENVPAR nameP); if (str == NULL) { free(nameP); h5JNIFatalError( env, "H5Tenum_nameof: return array not created"); return NULL; } free(nameP); return str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_valueof_int * Signature: (ILjava/lang/String;[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1valueof_1int (JNIEnv *env, jclass clss, jint type_id, jstring name, jintArray value) { herr_t status; jint *intP; char *nameP; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Tenum_valueof: name is NULL"); return -1; } nameP = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (nameP == NULL) { h5JNIFatalError( env, "H5Tenum_valueof: name not pinned"); return -1; } if ( value == NULL ) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); h5nullArgument( env, "H5Tenum_valueof: value is NULL"); return -1; } intP = ENVPTR->GetIntArrayElements(ENVPAR value, &isCopy); if (intP == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); h5JNIFatalError( env, "H5Tenum_valueof: value not pinned"); return -1; } status = H5Tenum_valueof((hid_t)type_id, nameP, intP); ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR value, intP, JNI_ABORT); h5libraryError(env); } ENVPTR->ReleaseIntArrayElements(ENVPAR value, intP, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_valueof * Signature: (ILjava/lang/String;[B)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1valueof (JNIEnv *env, jclass clss, jint type_id, jstring name, jbyteArray value) { herr_t status; jbyte *byteP; char *nameP; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Tenum_valueof: name is NULL"); return; } nameP = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (nameP == NULL) { h5JNIFatalError( env, "H5Tenum_valueof: name not pinned"); return; } if (value == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); h5nullArgument( env, "H5Tenum_valueof: value is NULL"); return; } byteP = ENVPTR->GetByteArrayElements(ENVPAR value, &isCopy); if (byteP == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name,nameP); h5JNIFatalError( env, "H5Tenum_valueof: value not pinned"); return; } status = H5Tenum_valueof((hid_t)type_id, nameP, byteP); ENVPTR->ReleaseStringUTFChars(ENVPAR name, nameP); if (status < 0) { ENVPTR->ReleaseByteArrayElements(ENVPAR value, byteP, JNI_ABORT); h5libraryError(env); return; } ENVPTR->ReleaseByteArrayElements(ENVPAR value, byteP, 0); } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_value_int * Signature: (II[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1value_1int (JNIEnv *env, jclass clss, jint type_id, jint membno, jintArray value) { herr_t status; jint *intP; jboolean isCopy; if ( value == NULL ) { h5nullArgument( env, "H5Tget_member_value: value is NULL"); return -1; } intP = ENVPTR->GetIntArrayElements(ENVPAR value,&isCopy); if (intP == NULL) { h5JNIFatalError( env, "H5Tget_member_value: value not pinned"); return -1; } status = H5Tget_member_value((hid_t)type_id, (int)membno, intP); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR value,intP,JNI_ABORT); h5libraryError(env); } ENVPTR->ReleaseIntArrayElements(ENVPAR value,intP,0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_value * Signature: (II[B)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1value (JNIEnv *env, jclass clss, jint type_id, jint membno, jbyteArray value) { herr_t status; jbyte *byteP; jboolean isCopy; if ( value == NULL ) { h5nullArgument( env, "H5Tget_member_value: value is NULL"); return; } byteP = ENVPTR->GetByteArrayElements(ENVPAR value,&isCopy); if (byteP == NULL) { h5JNIFatalError( env, "H5Tget_member_value: value not pinned"); return; } status = H5Tget_member_value((hid_t)type_id, (int)membno, byteP); if (status < 0) { ENVPTR->ReleaseByteArrayElements(ENVPAR value,byteP,JNI_ABORT); h5libraryError(env); return; } ENVPTR->ReleaseByteArrayElements(ENVPAR value,byteP,0); } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tarray_create * Signature: (II[I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tarray_1create (JNIEnv *env, jclass clss, jint base_id, jint rank, jintArray dims, jintArray perms) { hid_t status; jint *dimsP; jint *permP; int dlen; hsize_t *cdims=NULL; jboolean isCopy; int i; if (rank <= 0) { h5badArgument( env, "H5Tarray_create: rank is < 1"); return -1; } if ( dims == NULL ) { h5nullArgument( env, "H5Tarray_create: dims is NULL"); return -1; } dimsP = ENVPTR->GetIntArrayElements(ENVPAR dims,&isCopy); if (dimsP == NULL) { h5JNIFatalError( env, "H5Tarray_create: dimsP not pinned"); return -1; } dlen = ENVPTR->GetArrayLength(ENVPAR dims); if (dlen != rank) { h5JNIFatalError( env, "H5Tarray_create: dims len != rank"); ENVPTR->ReleaseIntArrayElements(ENVPAR dims,dimsP,JNI_ABORT); return -1; } if (perms == NULL) { permP = NULL; } else { permP = ENVPTR->GetIntArrayElements(ENVPAR perms,&isCopy); if (permP == NULL) { h5JNIFatalError( env, "H5Tarray_create: permP not pinned"); ENVPTR->ReleaseIntArrayElements(ENVPAR dims,dimsP,JNI_ABORT); return -1; } } cdims = (hsize_t *)malloc(dlen * sizeof(hsize_t)); for (i = 0; i < dlen; i++) { cdims[i] = (hsize_t)dimsP[i]; } status = H5Tarray_create2((hid_t)base_id, (int)rank, (const hsize_t *)cdims); ENVPTR->ReleaseIntArrayElements(ENVPAR dims,dimsP,JNI_ABORT); if (permP != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR perms,permP,JNI_ABORT); } free (cdims); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_array_ndims * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1array_1ndims (JNIEnv *env, jclass clss, jint type_id) { int status; status = H5Tget_array_ndims((hid_t)type_id); if (status < 0) h5libraryError(env); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_array_dims * Signature: (I[I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1array_1dims (JNIEnv *env, jclass clss, jint type_id, jintArray dims, jintArray perms) { int status; jint *dimsP; int dlen; int i; hsize_t *cdims=NULL; jboolean isCopy; if ( dims == NULL ) { h5nullArgument( env, "H5Tget_array_dims: value is NULL"); return -1; } dimsP = ENVPTR->GetIntArrayElements(ENVPAR dims,&isCopy); if (dimsP == NULL) { h5JNIFatalError( env, "H5Tget_array_dims: dimsP not pinned"); return -1; } dlen = ENVPTR->GetArrayLength(ENVPAR dims); cdims = (hsize_t *)malloc(dlen * sizeof(hsize_t)); status = H5Tget_array_dims2((hid_t)type_id, (hsize_t *)cdims); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR dims,dimsP,JNI_ABORT); h5libraryError(env); return -1; } for (i = 0; i < dlen; i++) { dimsP[i] = (jint) cdims[i]; } ENVPTR->ReleaseIntArrayElements(ENVPAR dims,dimsP,0); if (cdims) free(cdims); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tis_variable_str * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tis_1variable_1str (JNIEnv *env, jclass clss, jint type_id) { htri_t bval; bval = H5Tis_variable_str((hid_t)type_id); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_native_type * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tget_1native_1type (JNIEnv *env, jclass clss, jint type_id, jint direction) { hid_t native_tid; native_tid = H5Tget_native_type((hid_t)type_id, (H5T_direction_t)direction); if (native_tid < 0){ h5libraryError(env); return -1; } return (jint)native_tid; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tdetect_class * Signature: (II)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tdetect_1class (JNIEnv *env, jclass clss, jint type_id, jint dtype_class) { htri_t bval; bval = H5Tdetect_class((hid_t)type_id, (H5T_class_t)dtype_class); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Topen2 * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Topen2 (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint access_plist) { hid_t status; char* tname; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Topen2: name is NULL"); return -1; } tname = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (tname == NULL) { h5JNIFatalError(env, "H5Topen2: name not pinned"); return -1; } status = H5Topen2((hid_t)loc_id, tname, (hid_t)access_plist); ENVPTR->ReleaseStringUTFChars(ENVPAR name,tname); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tcommit * Signature: (ILjava/lang/String;IIII)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tcommit (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint type, jint link_plist_id, jint create_plist_id, jint access_plist_id) { herr_t status; char* tname; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Tcommit2: name is NULL"); return; } tname = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (tname == NULL) { h5JNIFatalError(env, "H5Tcommit2: name not pinned"); return; } status = H5Tcommit2((hid_t)loc_id, tname, (hid_t)type, (hid_t)link_plist_id, (hid_t)create_plist_id, (hid_t)access_plist_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name,tname); if (status < 0) { h5libraryError(env); } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tarray_create2 * Signature: (II[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tarray_1create2 (JNIEnv *env, jclass clss, jint base_id, jint rank, jlongArray dims) { hid_t status; jlong *dimsP; int dlen; hsize_t *cdims=NULL; jboolean isCopy; int i; if (rank <= 0) { h5badArgument( env, "H5Tarray_create: rank is < 1"); return -1; } if ( dims == NULL ) { h5nullArgument( env, "H5Tarray_create: dims is NULL"); return -1; } dimsP = ENVPTR->GetLongArrayElements(ENVPAR dims,&isCopy); if (dimsP == NULL) { h5JNIFatalError( env, "H5Tarray_create: dimsP not pinned"); return -1; } dlen = ENVPTR->GetArrayLength(ENVPAR dims); if (dlen != rank) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims,dimsP,JNI_ABORT); return -1; } cdims = (hsize_t *)malloc(dlen * sizeof(hsize_t)); for (i = 0; i < dlen; i++) { cdims[i] = (hsize_t)dimsP[i]; } status = H5Tarray_create2((hid_t)base_id, (int)rank, (const hsize_t *)cdims); ENVPTR->ReleaseLongArrayElements(ENVPAR dims,dimsP,JNI_ABORT); free (cdims); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_array_dims2 * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1array_1dims2 (JNIEnv *env, jclass clss, jint type_id, jlongArray dims) { int status; jlong *dimsP; int dlen; int i; hsize_t *cdims=NULL; jboolean isCopy; if ( dims == NULL ) { h5nullArgument( env, "H5Tget_array_dims: value is NULL"); return -1; } dimsP = ENVPTR->GetLongArrayElements(ENVPAR dims,&isCopy); if (dimsP == NULL) { h5JNIFatalError( env, "H5Tget_array_dims: dimsP not pinned"); return -1; } dlen = ENVPTR->GetArrayLength(ENVPAR dims); cdims = (hsize_t *)malloc(dlen * sizeof(hsize_t)); status = H5Tget_array_dims2((hid_t)type_id, (hsize_t *)cdims); if (status < 0) { if (cdims) free(cdims); ENVPTR->ReleaseLongArrayElements(ENVPAR dims,dimsP,JNI_ABORT); h5libraryError(env); return -1; } for (i = 0; i < dlen; i++) { dimsP[i] = (jlong) cdims[i]; } ENVPTR->ReleaseLongArrayElements(ENVPAR dims,dimsP,0); if (cdims) free(cdims); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tconvert * Signature: (IIJ[B[BI)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tconvert (JNIEnv *env, jclass clss, jint src_id, jint dst_id, jlong nelmts, jbyteArray buf, jbyteArray background, jint plist_id) { herr_t status; jbyte *bufP, *bgP=NULL; jboolean isCopy; if (nelmts <= 0) { h5badArgument( env, "H5Tconvert: name nelmts < 0"); return; } bufP = ENVPTR->GetByteArrayElements(ENVPAR buf, &isCopy); if (bufP == NULL) { h5JNIFatalError( env, "H5Tconvert: value not pinned"); return; } if (background) bgP = ENVPTR->GetByteArrayElements(ENVPAR background, &isCopy); status = H5Tconvert((hid_t)src_id, (hid_t)dst_id, (size_t)nelmts, (void *)bufP, (void *)bgP, (hid_t)plist_id) ; ENVPTR->ReleaseByteArrayElements(ENVPAR buf, bufP, 0); if (bgP) ENVPTR->ReleaseByteArrayElements(ENVPAR background, bgP, JNI_ABORT); if (status < 0) { h5libraryError(env); } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5aImp.c0000644002344600011330000015251012431152277015653 0ustar byrnhdf/**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * Attribute API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include "hdf5.h" #include "h5util.h" #include #include #include #include "h5jni.h" #ifdef H5_HAVE_WIN32_API #define strtoll(S,R,N) _strtoi64(S,R,N) #define strtoull(S,R,N) _strtoui64(S,R,N) #define strtof(S,R) atof(S) #endif /* H5_HAVE_WIN32_API */ herr_t H5AreadVL_str (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf); herr_t H5AreadVL_num (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf); herr_t H5AreadVL_comp (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf); herr_t H5AwriteVL_str (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf); herr_t H5AwriteVL_num (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf); herr_t H5AwriteVL_comp (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Acreate * Signature: (ILjava/lang/String;III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Acreate (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint type_id, jint space_id, jint create_plist) { hid_t status; char* aName; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Acreate: name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Acreate: aName is not pinned"); return -1; } status = H5Acreate2((hid_t)loc_id, aName, (hid_t)type_id, (hid_t)space_id, (hid_t)create_plist, (hid_t)H5P_DEFAULT ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,aName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aopen_name * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen_1name (JNIEnv *env, jclass clss, jint loc_id, jstring name) { hid_t status; char* aName; jboolean isCopy; if (name == NULL) { h5nullArgument( env,"H5Aopen_name: name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (aName == NULL) { h5JNIFatalError( env,"H5Aopen_name: name is not pinned"); return -1; } status = H5Aopen_name((hid_t)loc_id, aName); ENVPTR->ReleaseStringUTFChars(ENVPAR name,aName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aopen_idx * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen_1idx (JNIEnv *env, jclass clss, jint loc_id, jint idx) { hid_t retVal = -1; retVal = H5Aopen_idx((hid_t)loc_id, (unsigned int) idx ); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Awrite * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Awrite (JNIEnv *env, jclass clss, jint attr_id, jint mem_type_id, jbyteArray buf) { herr_t status; jbyte *byteP; jboolean isCopy; if (buf == NULL) { h5nullArgument( env,"H5Awrite: buf is NULL"); return -1; } byteP = ENVPTR->GetByteArrayElements(ENVPAR buf,&isCopy); if (byteP == NULL) { h5JNIFatalError( env,"H5Awrite: buf is not pinned"); return -1; } status = H5Awrite((hid_t)attr_id, (hid_t)mem_type_id, byteP); ENVPTR->ReleaseByteArrayElements(ENVPAR buf, byteP,JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5AwriteVL * Signature: (II[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5AwriteVL (JNIEnv *env, jclass clss, jint attr_id, jint mem_type_id, jobjectArray buf) { herr_t status; if (buf == NULL) { h5nullArgument( env,"H5AwriteVL: buf is NULL"); return -1; } if (H5Tis_variable_str((hid_t)mem_type_id) > 0) { status = H5AwriteVL_str (env, (hid_t)attr_id, (hid_t)mem_type_id, buf); } else if (H5Tget_class((hid_t)mem_type_id) == H5T_COMPOUND) { status = H5AwriteVL_comp (env, (hid_t)attr_id, (hid_t)mem_type_id, buf); } else if (H5Tget_class((hid_t)mem_type_id) == H5T_ARRAY) { status = H5AwriteVL_comp (env, (hid_t)attr_id, (hid_t)mem_type_id, buf); } else { status = H5AwriteVL_num (env, (hid_t)attr_id, (hid_t)mem_type_id, buf); } return (jint)status; } herr_t H5AwriteVL_num (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf) { herr_t status = -1; int n; void *wdata = NULL; hvl_t *wndata = NULL; char **wsdata; jint i,j; unsigned char tmp_uchar = 0; char tmp_char = 0; unsigned short tmp_ushort = 0; short tmp_short = 0; unsigned int tmp_uint = 0; int tmp_int = 0; unsigned long tmp_ulong = 0; long tmp_long = 0; unsigned long long tmp_ullong = 0; long long tmp_llong = 0; float tmp_float = 0.0; double tmp_double = 0.0; long double tmp_ldouble = 0.0; H5T_class_t tclass = H5Tget_class(tid); size_t size = H5Tget_size(tid); H5T_sign_t nsign = H5Tget_sign(tid); // hid_t sid = H5Aget_space(tid); hid_t basetid = -1; hid_t basesid = -1; H5T_class_t basetclass = -1; char *temp; char *token; if(tclass == H5T_VLEN) { basetid = H5Tget_super(tid); size = H5Tget_size(basetid); basetclass = H5Tget_class(basetid); // basesid = H5Aget_space(basetid); n = ENVPTR->GetArrayLength(ENVPAR (jarray)buf); if(basetclass == H5T_STRING) { wsdata = (char**)calloc(n+1, sizeof(char*)); wdata = wsdata; } else { wndata = (hvl_t *)calloc(n+1, sizeof(hvl_t)); wdata = wndata; } if (!wdata) { h5JNIFatalError(env, "H5AwriteVL_str: cannot allocate buffer"); return -1; } for (i = 0; i < n; i++) { int j; jstring obj = (jstring) ENVPTR->GetObjectArrayElement(ENVPAR (jobjectArray) buf, i); if (obj != 0) { jsize length = ENVPTR->GetStringUTFLength(ENVPAR obj); const char *utf8 = ENVPTR->GetStringUTFChars(ENVPAR obj, 0); if (utf8) { if(basetclass == H5T_STRING) { wsdata[i] = (char*)malloc(length + 1); } else { temp = malloc(length+1); strncpy(temp, utf8, length); temp[length] = '\0'; token = strtok(temp, ","); j = 1; while (1) { token = strtok (NULL, ","); if (token == NULL) break; j++; } wndata[i].p = malloc(j * size); wndata[i].len = j; strncpy(temp, utf8, length); temp[length] = '\0'; } switch (tclass) { case H5T_VLEN: { switch (basetclass) { case H5T_FLOAT: if (sizeof(float) == size) { j = 0; tmp_float = strtof(strtok(temp, ","), NULL); ((float *)wndata[i].p)[j++] = tmp_float; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_float = strtof(token, NULL); ((float *)wndata[i].p)[j++] = tmp_float; } } else if (sizeof(double) == size) { j = 0; tmp_double = strtod(strtok(temp, ","), NULL); ((double *)wndata[i].p)[j++] = tmp_double; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_double = strtod(token, NULL); ((double *)wndata[i].p)[j++] = tmp_double; } } #if H5_SIZEOF_LONG_DOUBLE !=0 else if (sizeof(long double) == size) { j = 0; tmp_ldouble = strtold(strtok(temp, ","), NULL); ((long double *)wndata[i].p)[j++] = tmp_ldouble; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ldouble = strtold(token, NULL); ((long double *)wndata[i].p)[j++] = tmp_ldouble; } } #endif break; case H5T_INTEGER: if (sizeof(char) == size) { if(H5T_SGN_NONE == nsign) { j = 0; tmp_uchar = (unsigned char)strtoul(strtok(temp, ","), NULL, 10); ((unsigned char *)wndata[i].p)[j++] = tmp_uchar; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_uchar = (unsigned char)strtoul(token, NULL, 10); ((unsigned char *)wndata[i].p)[j++] = tmp_uchar; } } else { j = 0; tmp_char = (char)strtoul(strtok(temp, ","), NULL, 10); ((char *)wndata[i].p)[j++] = tmp_char; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_char = (char)strtoul(token, NULL, 10); ((char *)wndata[i].p)[j++] = tmp_char; } } } else if (sizeof(int) == size) { if(H5T_SGN_NONE == nsign) { j = 0; tmp_uint = (unsigned int)strtoul(strtok(temp, ","), NULL, 10); ((unsigned int *)wndata[i].p)[j++] = tmp_uint; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_uint = (unsigned int)strtoul(token, NULL, 10); ((unsigned int *)wndata[i].p)[j++] = tmp_uint; } } else { j = 0; tmp_int = (int)strtoul(strtok(temp, ","), NULL, 10); ((int *)wndata[i].p)[j++] = tmp_int; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_int = (int)strtoul(token, NULL, 10); ((int *)wndata[i].p)[j++] = tmp_int; } } } else if (sizeof(short) == size) { if(H5T_SGN_NONE == nsign) { j = 0; tmp_ushort = (unsigned short)strtoul(strtok(temp, ","), NULL, 10); ((unsigned short *)wndata[i].p)[j++] = tmp_ushort; while (1) { token = strtok (NULL, ","); if (token == NULL) break; tmp_ushort = (unsigned short)strtoul(token, NULL, 10); ((unsigned short *)wndata[i].p)[j++] = tmp_ushort; } } else { j = 0; tmp_short = (short)strtoul(strtok(temp, ","), NULL, 10); ((short *)wndata[i].p)[j++] = tmp_short; while (1) { token = strtok (NULL, ","); if (token == NULL) break; tmp_short = (short)strtoul(token, NULL, 10); ((short *)wndata[i].p)[j++] = tmp_short; } } } else if (sizeof(long) == size) { if(H5T_SGN_NONE == nsign) { j = 0; tmp_ulong = strtoul(strtok(temp, ","), NULL, 10); ((unsigned long *)wndata[i].p)[j++] = tmp_ulong; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ulong = strtoul(token, NULL, 10); ((unsigned long *)wndata[i].p)[j++] = tmp_ulong; } } else { j = 0; tmp_long = strtol(strtok(temp, ","), NULL, 10); ((long *)wndata[i].p)[j++] = tmp_long; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_long = strtol(token, NULL, 10); ((long *)wndata[i].p)[j++] = tmp_long; } } } else if (sizeof(long long) == size) { if(H5T_SGN_NONE == nsign) { j = 0; tmp_ullong = strtoull(strtok(temp, ","), NULL, 10); ((unsigned long long *)wndata[i].p)[j++] = tmp_ullong; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_ullong = strtoull(token, NULL, 10); ((unsigned long long *)wndata[i].p)[j++] = tmp_ullong; } } else { j = 0; tmp_llong = strtoll(strtok(temp, ","), NULL, 10); ((long long *)wndata[i].p)[j++] = tmp_llong; while (1) { token = strtok (NULL, ","); if (token == NULL) break; if (token[0] == ' ') token++; tmp_llong = strtoll(token, NULL, 10); ((long long *)wndata[i].p)[j++] = tmp_llong; } } } break; case H5T_STRING: { memset(wsdata[i], 0, (length + 1)); strncpy(wsdata[i], utf8, length); } break; } } break; default: h5badArgument(env, "H5AwriteVL_num: not H5T_VLEN"); } /* end switch */ ENVPTR->ReleaseStringUTFChars(ENVPAR obj, utf8); } ENVPTR->DeleteLocalRef(ENVPAR obj); } } status = H5Awrite((hid_t)aid, (hid_t)tid, wdata); // now free memory for (i = 0; i < n; i++) { if(basetclass == H5T_STRING) { if(wsdata[i]) { free(wsdata[i]); } } else { if(wndata[i].p) { free(wndata[i].p); } } } free(wdata); } if (status < 0) { h5libraryError(env); } return status; } herr_t H5AwriteVL_comp (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf) { herr_t status; h5unimplemented(env, "H5AwriteVL_comp: not implemented"); status = -1; return status; } herr_t H5AwriteVL_str (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf) { herr_t status = -1; char **wdata; jsize size; jint i; size = ENVPTR->GetArrayLength(ENVPAR (jarray) buf); wdata = (char**)calloc(size + 1, sizeof (char*)); if (!wdata) { h5JNIFatalError(env, "H5AwriteVL_str: cannot allocate buffer"); return -1; } memset(wdata, 0, size * sizeof(char*)); for (i = 0; i < size; ++i) { jstring obj = (jstring) ENVPTR->GetObjectArrayElement(ENVPAR (jobjectArray) buf, i); if (obj != 0) { jsize length = ENVPTR->GetStringUTFLength(ENVPAR obj); const char *utf8 = ENVPTR->GetStringUTFChars(ENVPAR obj, 0); if (utf8) { wdata[i] = (char*)malloc(length + 1); if (wdata[i]) { memset(wdata[i], 0, (length + 1)); strncpy(wdata[i], utf8, length); } } ENVPTR->ReleaseStringUTFChars(ENVPAR obj, utf8); ENVPTR->DeleteLocalRef(ENVPAR obj); } } /*for (i = 0; i < size; ++i) */ status = H5Awrite((hid_t)aid, (hid_t)tid, wdata); // now free memory for (i = 0; i < size; i++) { if(wdata[i]) { free(wdata[i]); } } free(wdata); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aread * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aread (JNIEnv *env, jclass clss, jint attr_id, jint mem_type_id, jbyteArray buf) { herr_t status; jbyte *byteP; jboolean isCopy; if (buf == NULL) { h5nullArgument( env,"H5Aread: buf is NULL"); return -1; } byteP = ENVPTR->GetByteArrayElements(ENVPAR buf,&isCopy); if (byteP == NULL) { h5JNIFatalError( env,"H5Aread: buf is not pinned"); return -1; } status = H5Aread((hid_t)attr_id, (hid_t)mem_type_id, byteP); if (status < 0) { ENVPTR->ReleaseByteArrayElements(ENVPAR buf,byteP,JNI_ABORT); h5libraryError(env); } else { ENVPTR->ReleaseByteArrayElements(ENVPAR buf,byteP,0); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_space * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aget_1space (JNIEnv *env, jclass clss, jint attr_id) { hid_t retVal = -1; retVal = H5Aget_space((hid_t)attr_id); if (retVal < 0) { /* throw exception */ h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aget_1type (JNIEnv *env, jclass clss, jint attr_id) { hid_t retVal = -1; retVal = H5Aget_type((hid_t)attr_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_name * Signature: (IJ[Ljava/lang/String;)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1name (JNIEnv *env, jclass clss, jint attr_id, jlong buf_size, jobjectArray name) { char *aName; jstring str; hssize_t size; long bs; if (buf_size==0 && name == NULL) return (jlong) H5Aget_name((hid_t)attr_id, 0, NULL); bs = (long)buf_size; if (bs <= 0) { h5badArgument( env, "H5Aget_name: buf_size <= 0"); return -1; } aName = (char*)malloc(sizeof(char)*bs); if (aName == NULL) { h5outOfMemory( env, "H5Aget_name: malloc failed"); return -1; } size = H5Aget_name((hid_t)attr_id, (size_t)buf_size, aName); if (size < 0) { free(aName); h5libraryError(env); return -1; /* exception, returns immediately */ } /* successful return -- save the string; */ str = ENVPTR->NewStringUTF(ENVPAR aName); if (str == NULL) { free(aName); h5JNIFatalError( env,"H5Aget_name: return string failed"); return -1; } free(aName); /* Note: throws ArrayIndexOutOfBoundsException, ArrayStoreException */ ENVPTR->SetObjectArrayElement(ENVPAR name,0,str); return (jlong)size; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_num_attrs * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1num_1attrs (JNIEnv *env, jclass clss, jint loc_id) { int retVal = -1; retVal = H5Aget_num_attrs((hid_t)loc_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Adelete * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Adelete (JNIEnv *env, jclass clss, jint loc_id, jstring name) { herr_t status; char* aName; jboolean isCopy; if (name == NULL) { h5nullArgument( env,"H5Adelete: name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (aName == NULL) { h5JNIFatalError( env,"H5Adelete: name is not pinned"); return -1; } status = H5Adelete((hid_t)loc_id, aName ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,aName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aclose (JNIEnv *env, jclass clss, jint attr_id) { herr_t retVal = 0; if (attr_id > 0) retVal = H5Aclose((hid_t)attr_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5AreadVL * Signature: (II[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5AreadVL (JNIEnv *env, jclass clss, jint attr_id, jint mem_type_id, jobjectArray buf) { htri_t isStr; if ( buf == NULL ) { h5nullArgument( env, "H5AreadVL: buf is NULL"); return -1; } isStr = H5Tis_variable_str((hid_t)mem_type_id); if (H5Tis_variable_str((hid_t)mem_type_id) > 0) { return (jint) H5AreadVL_str (env, (hid_t)attr_id, (hid_t)mem_type_id, buf); } else if (H5Tget_class((hid_t)mem_type_id) == H5T_COMPOUND) { return (jint) H5AreadVL_comp (env, (hid_t)attr_id, (hid_t)mem_type_id, buf); } else if (H5Tget_class((hid_t)mem_type_id) == H5T_ARRAY) { return (jint) H5AreadVL_comp (env, (hid_t)attr_id, (hid_t)mem_type_id, buf); } else { return (jint) H5AreadVL_num (env, (hid_t)attr_id, (hid_t)mem_type_id, buf); } } herr_t H5AreadVL_num (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf) { herr_t status; int i; int n; size_t max_len = 0; h5str_t h5str; jstring jstr; hvl_t *rdata = NULL; size_t size; hid_t sid; hsize_t dims[H5S_MAX_RANK]; n = ENVPTR->GetArrayLength(ENVPAR buf); rdata = (hvl_t *)calloc(n+1, sizeof(hvl_t)); if (rdata == NULL) { h5JNIFatalError( env, "H5AreadVL_num: failed to allocate buff for read"); return -1; } status = H5Aread(aid, tid, rdata); dims[0] = n; sid = H5Screate_simple(1, dims, NULL); if (status < 0) { H5Dvlen_reclaim(tid, sid, H5P_DEFAULT, rdata); H5Sclose(sid); free(rdata); h5JNIFatalError(env, "H5AreadVL_num: failed to read data"); return -1; } for (i = 0; i < n; i++) { if ((rdata +i)->len > max_len) max_len = (rdata + i)->len; } size = H5Tget_size(tid); memset((void *)&h5str, (int)0, (size_t)sizeof(h5str_t)); h5str_new(&h5str, 4*size); if (h5str.s == NULL) { H5Dvlen_reclaim(tid, sid, H5P_DEFAULT, rdata); H5Sclose(sid); free(rdata); h5JNIFatalError(env, "H5AreadVL_num: failed to allocate strng buf"); return -1; } for (i = 0; i < n; i++) { h5str.s[0] = '\0'; h5str_sprintf(&h5str, aid, tid, rdata + i, 0); jstr = ENVPTR->NewStringUTF(ENVPAR h5str.s); ENVPTR->SetObjectArrayElement(ENVPAR buf, i, jstr); } h5str_free(&h5str); H5Dvlen_reclaim(tid, sid, H5P_DEFAULT, rdata); H5Sclose(sid); free(rdata); return status; } herr_t H5AreadVL_comp (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf) { herr_t status; int i; int n; size_t max_len = 0; h5str_t h5str; jstring jstr; char *rdata; size_t size; hid_t p_type; p_type = H5Tget_native_type(tid, H5T_DIR_DEFAULT); size = (((H5Tget_size(tid))>(H5Tget_size(p_type))) ? (H5Tget_size(tid)) : (H5Tget_size(p_type))); H5Tclose(p_type); n = ENVPTR->GetArrayLength(ENVPAR buf); rdata = (char *)malloc(n * size); if (rdata == NULL) { h5JNIFatalError(env, "H5AreadVL_comp: failed to allocate buff for read"); return -1; } status = H5Aread(aid, tid, rdata); if (status < 0) { free(rdata); h5JNIFatalError(env, "H5AreadVL_comp: failed to read data"); return -1; } memset(&h5str, 0, sizeof(h5str_t)); h5str_new(&h5str, 4 * size); if (h5str.s == NULL) { free(rdata); h5JNIFatalError(env, "H5AreadVL_comp: failed to allocate string buf"); return -1; } for (i = 0; i < n; i++) { h5str.s[0] = '\0'; h5str_sprintf(&h5str, aid, tid, rdata + i * size, 0); jstr = ENVPTR->NewStringUTF(ENVPAR h5str.s); ENVPTR->SetObjectArrayElement(ENVPAR buf, i, jstr); } h5str_free(&h5str); free(rdata); return status; } herr_t H5AreadVL_str (JNIEnv *env, hid_t aid, hid_t tid, jobjectArray buf) { herr_t status=-1; jstring jstr; char **strs; int i, n; hid_t sid; hsize_t dims[H5S_MAX_RANK]; n = ENVPTR->GetArrayLength(ENVPAR buf); strs =(char **)malloc(n*sizeof(char *)); if (strs == NULL) { h5JNIFatalError( env, "H5AreadVL_str: failed to allocate buff for read variable length strings"); return -1; } status = H5Aread(aid, tid, strs); if (status < 0) { dims[0] = n; sid = H5Screate_simple(1, dims, NULL); H5Dvlen_reclaim(tid, sid, H5P_DEFAULT, strs); H5Sclose(sid); free(strs); h5JNIFatalError(env, "H5AreadVL_str: failed to read variable length strings"); return -1; } for (i=0; iNewStringUTF(ENVPAR strs[i]); ENVPTR->SetObjectArrayElement(ENVPAR buf, i, jstr); free (strs[i]); } /* for repeatedly reading an attribute with a large number of strs (e.g., 1,000,000 strings, H5Dvlen_reclaim() may crash on Windows because the Java GC will not be able to collect free space in time. Instead, use "free(strs[i])" to free individual strings after it is done. H5Dvlen_reclaim(tid, sid, H5P_DEFAULT, strs); */ if (strs) free(strs); return status; } /* * Copies the content of one dataset to another dataset * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Acopy * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Acopy (JNIEnv *env, jclass clss, jint src_id, jint dst_id) { jbyte *buf; herr_t retVal = -1; hid_t src_did = (hid_t)src_id; hid_t dst_did = (hid_t)dst_id; hid_t tid=-1; hid_t sid=-1; hsize_t total_size = 0; sid = H5Aget_space(src_did); if (sid < 0) { h5libraryError(env); return -1; } tid = H5Aget_type(src_did); if (tid < 0) { H5Sclose(sid); h5libraryError(env); return -1; } total_size = H5Sget_simple_extent_npoints(sid) * H5Tget_size(tid); H5Sclose(sid); buf = (jbyte *)malloc( (int) (total_size * sizeof(jbyte))); if (buf == NULL) { H5Tclose(tid); h5outOfMemory( env, "H5Acopy: malloc failed"); return -1; } retVal = H5Aread(src_did, tid, buf); H5Tclose(tid); if (retVal < 0) { free(buf); h5libraryError(env); return (jint)retVal; } tid = H5Aget_type(dst_did); if (tid < 0) { free(buf); h5libraryError(env); return -1; } retVal = H5Awrite(dst_did, tid, buf); H5Tclose(tid); free(buf); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /********************************************************************** * * * New functions release 1.8.0 * * * **********************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Acreate2 * Signature: (ILjava/lang/String;IIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Acreate2 (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint type_id, jint space_id, jint create_plist, jint access_plist) { hid_t status; char* aName; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Acreate2: name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Acreate2: aName is not pinned"); return -1; } status = H5Acreate2((hid_t)loc_id, aName, (hid_t)type_id, (hid_t)space_id, (hid_t)create_plist, (hid_t)access_plist ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,aName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Aopen * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen (JNIEnv *env, jclass clss, jint obj_id, jstring name, jint access_plist) { hid_t retVal; char* aName; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Aopen: name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Aopen: aName is not pinned"); return -1; } retVal = H5Aopen((hid_t)obj_id, aName, (hid_t)access_plist); ENVPTR->ReleaseStringUTFChars(ENVPAR name,aName); if (retVal< 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Aopen_by_idx * Signature: (ILjava/lang/String;IIIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen_1by_1idx (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint idx_type, jint order, jlong n, jint aapl_id, jint lapl_id) { hid_t retVal; char* aName; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Aopen_by_idx: name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Aopen_by_idx: aName is not pinned"); return -1; } retVal = H5Aopen_by_idx((hid_t)loc_id, aName, (H5_index_t)idx_type, (H5_iter_order_t)order, (hsize_t)n, (hid_t)aapl_id, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name,aName); if (retVal< 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Acreate_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;IIIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Acreate_1by_1name (JNIEnv *env, jclass clss, jint loc_id, jstring obj_name, jstring attr_name, jint type_id, jint space_id, jint acpl_id, jint aapl_id, jint lapl_id) { hid_t retVal; char *aName, *attrName; jboolean isCopy; if (obj_name == NULL) { h5nullArgument( env, "H5Acreate_by_name: object name is NULL"); return -1; } if (attr_name == NULL) { h5nullArgument( env, "H5Acreate_by_name: attribute name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR obj_name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Acreate_by_name: aName is not pinned"); return -1; } attrName = (char *)ENVPTR->GetStringUTFChars(ENVPAR attr_name, &isCopy); if (attrName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,aName); h5JNIFatalError( env, "H5Acreate_by_name: attrName is not pinned"); return -1; } retVal = H5Acreate_by_name((hid_t)loc_id, aName, attrName, (hid_t)type_id, (hid_t)space_id, (hid_t)acpl_id, (hid_t)aapl_id, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,aName); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,attrName); if (retVal< 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aexists_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aexists_1by_1name (JNIEnv *env, jclass clss, jint loc_id, jstring obj_name, jstring attr_name, jint lapl_id) { htri_t retVal; char *aName, *attrName; jboolean isCopy; if (obj_name == NULL) { h5nullArgument( env, "H5Aexists_by_name: object name is NULL"); return -1; } if (attr_name == NULL) { h5nullArgument( env, "H5Aexists_by_name: attribute name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR obj_name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Aexists_by_name: aName is not pinned"); return -1; } attrName = (char *)ENVPTR->GetStringUTFChars(ENVPAR attr_name, &isCopy); if (attrName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,aName); h5JNIFatalError( env, "H5Aexists_by_name: attrName is not pinned"); return -1; } retVal = H5Aexists_by_name((hid_t)loc_id, aName, attrName, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,aName); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,attrName); if (retVal< 0) { h5libraryError(env); } return (jboolean)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Arename * Signature: (ILjava/lang/String;Ljava/lang/String)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Arename (JNIEnv *env, jclass clss, jint loc_id, jstring old_attr_name, jstring new_attr_name) { herr_t retVal; char *oName, *nName; jboolean isCopy; if (old_attr_name == NULL) { h5nullArgument( env, "H5Arename: old_attr_name is NULL"); return -1; } if (new_attr_name == NULL) { h5nullArgument( env, "H5Arename: new_attr_name is NULL"); return -1; } oName = (char *)ENVPTR->GetStringUTFChars(ENVPAR old_attr_name,&isCopy); if (oName == NULL) { h5JNIFatalError( env, "H5Arename: old_attr_name not pinned"); return -1; } nName = (char *)ENVPTR->GetStringUTFChars(ENVPAR new_attr_name,&isCopy); if (nName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR old_attr_name,oName); h5JNIFatalError( env, "H5Arename: new_attr_name not pinned"); return -1; } retVal = H5Arename((hid_t)loc_id, oName, nName); ENVPTR->ReleaseStringUTFChars(ENVPAR old_attr_name,oName); ENVPTR->ReleaseStringUTFChars(ENVPAR new_attr_name,nName); if (retVal< 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Arename_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Arename_1by_1name (JNIEnv *env, jclass clss, jint loc_id, jstring obj_name, jstring old_attr_name, jstring new_attr_name, jint lapl_id) { herr_t retVal; char *aName, *oName, *nName; jboolean isCopy; if (obj_name == NULL) { h5nullArgument( env, "H5Arename_by_name: object name is NULL"); return -1; } if (old_attr_name == NULL) { h5nullArgument( env, "H5Arename_by_name: old_attr_name is NULL"); return -1; } if (new_attr_name == NULL) { h5nullArgument( env, "H5Arename_by_name: new_attr_name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR obj_name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Arename_by_name: object name is not pinned"); return -1; } oName = (char *)ENVPTR->GetStringUTFChars(ENVPAR old_attr_name,&isCopy); if (oName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,aName); h5JNIFatalError( env, "H5Arename_by_name: old_attr_name not pinned"); return -1; } nName = (char *)ENVPTR->GetStringUTFChars(ENVPAR new_attr_name,&isCopy); if (nName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,aName); ENVPTR->ReleaseStringUTFChars(ENVPAR old_attr_name,oName); h5JNIFatalError( env, "H5Arename_by_name: new_attr_name not pinned"); return -1; } retVal = H5Arename_by_name((hid_t)loc_id, aName, oName, nName, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,aName); ENVPTR->ReleaseStringUTFChars(ENVPAR old_attr_name,oName); ENVPTR->ReleaseStringUTFChars(ENVPAR new_attr_name,nName); if (retVal< 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_name_by_idx * Signature: (ILjava/lang/String;IIJI)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1name_1by_1idx (JNIEnv *env, jclass clss, jint loc_id, jstring obj_name, jint idx_type, jint order, jlong n, jint lapl_id) { size_t buf_size; char *aName; char *aValue; jboolean isCopy; jlong status_size; jstring str = NULL; if (obj_name == NULL) { h5nullArgument( env, "H5Aget_name_by_idx: object name is NULL"); return NULL; } aName = (char*)ENVPTR->GetStringUTFChars(ENVPAR obj_name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Aget_name_by_idx: name not pinned"); return NULL; } /* get the length of the attribute name */ status_size = H5Aget_name_by_idx((hid_t)loc_id, aName, (H5_index_t)idx_type, (H5_iter_order_t) order, (hsize_t) n, (char*)NULL, (size_t)0, (hid_t)lapl_id); if(status_size < 0) { ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name, aName); h5libraryError(env); return NULL; } buf_size = (size_t)status_size + 1;/* add extra space for the null terminator */ aValue = (char*)malloc(sizeof(char) * buf_size); if (aValue == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name, aName); h5outOfMemory( env, "H5Aget_name_by_idx: malloc failed "); return NULL; } status_size = H5Aget_name_by_idx((hid_t)loc_id, aName, (H5_index_t)idx_type, (H5_iter_order_t) order, (hsize_t) n, (char*)aValue, (size_t)buf_size, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name, aName); if (status_size < 0) { free(aValue); h5libraryError(env); return NULL; } /* may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR aValue); if (str == NULL) { /* exception -- fatal JNI error */ free(aValue); h5JNIFatalError( env, "H5Aget_name_by_idx: return string not created"); return NULL; } free(aValue); return str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_storage_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1storage_1size (JNIEnv *env, jclass clss, jint attr_id) { hsize_t retVal = (hsize_t)-1; retVal = H5Aget_storage_size((hid_t)attr_id); /* probably returns '0' if fails--don't do an exception if (retVal < 0) { h5libraryError(env); } */ return (jlong)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_info * Signature: (I)Lncsa/hdf/hdf5lib/structs/H5A_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1info (JNIEnv *env, jclass clss, jint attr_id) { herr_t status; H5A_info_t ainfo; jclass cls; jmethodID constructor; jvalue args[4]; jobject ret_info_t = NULL; status = H5Aget_info((hid_t)attr_id, (H5A_info_t*)&ainfo); if (status < 0) { h5libraryError(env); return NULL; } // get a reference to your class if you don't have it already cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5A_info_t"); // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(ZJIJ)V"); args[0].z = ainfo.corder_valid; args[1].j = ainfo.corder; args[2].i = ainfo.cset; args[3].j = ainfo.data_size; ret_info_t = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); return ret_info_t; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_info_by_idx * Signature: (ILjava/lang/String;IIJI)Lncsa/hdf/hdf5lib/structs/H5A_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1info_1by_1idx (JNIEnv *env, jclass clss, jint loc_id, jstring obj_name, jint idx_type, jint order, jlong n, jint lapl_id) { char *aName; herr_t status; H5A_info_t ainfo; jboolean isCopy; jclass cls; jmethodID constructor; jvalue args[4]; jobject ret_info_t = NULL; if (obj_name == NULL) { h5nullArgument( env, "H5Aget_info_by_idx: obj_name is NULL"); return NULL; } aName = (char*)ENVPTR->GetStringUTFChars(ENVPAR obj_name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Aget_info_by_idx: object name not pinned"); return NULL; } status = H5Aget_info_by_idx((hid_t)loc_id, (const char*)aName, (H5_index_t)idx_type, (H5_iter_order_t)order, (hsize_t)n, (H5A_info_t*)&ainfo, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name, aName); if (status < 0) { h5libraryError(env); return NULL; } // get a reference to your class if you don't have it already cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5A_info_t"); // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(ZJIJ)V"); args[0].z = ainfo.corder_valid; args[1].j = ainfo.corder; args[2].i = ainfo.cset; args[3].j = ainfo.data_size; ret_info_t = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); return ret_info_t; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_info_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;I)Lncsa/hdf/hdf5lib/structs/H5A_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1info_1by_1name (JNIEnv *env, jclass clss, jint loc_id, jstring obj_name, jstring attr_name, jint lapl_id) { char *aName; char *attrName; herr_t status; H5A_info_t ainfo; jboolean isCopy; jclass cls; jmethodID constructor; jvalue args[4]; jobject ret_info_t = NULL; if (obj_name == NULL) { h5nullArgument( env, "H5Aget_info_by_name: obj_name is NULL"); return NULL; } if (attr_name == NULL) { h5nullArgument( env, "H5Aget_info_by_name: attr_name is NULL"); return NULL; } aName = (char*)ENVPTR->GetStringUTFChars(ENVPAR obj_name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Aget_info_by_name: object name not pinned"); return NULL; } attrName = (char*)ENVPTR->GetStringUTFChars(ENVPAR attr_name, &isCopy); if (attrName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name, aName); h5JNIFatalError( env, "H5Aget_info_by_name: Attribute name not pinned"); return NULL; } status = H5Aget_info_by_name((hid_t)loc_id, (const char*)aName, (const char*)attrName, (H5A_info_t*)&ainfo,(hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name, aName); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name, attrName); if (status < 0) { h5libraryError(env); return NULL; } // get a reference to your class if you don't have it already cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5A_info_t"); // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(ZJIJ)V"); args[0].z = ainfo.corder_valid; args[1].j = ainfo.corder; args[2].i = ainfo.cset; args[3].j = ainfo.data_size; ret_info_t = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); return ret_info_t; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Adelete_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Adelete_1by_1name (JNIEnv *env, jclass clss, jint loc_id, jstring obj_name, jstring attr_name, jint lapl_id) { herr_t retVal; char *aName, *attrName; jboolean isCopy; if (obj_name == NULL) { h5nullArgument( env, "H5Adelete_by_name: object name is NULL"); return -1; } if (attr_name == NULL) { h5nullArgument( env, "H5Adelete_by_name: attribute name is NULL"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR obj_name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Adelete_by_name: aName is not pinned"); return -1; } attrName = (char *)ENVPTR->GetStringUTFChars(ENVPAR attr_name, &isCopy); if (attrName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,aName); h5JNIFatalError( env, "H5Adelete_by_name: attrName is not pinned"); return -1; } retVal = H5Adelete_by_name((hid_t)loc_id, (const char*)aName, (const char*)attrName, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,aName); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,attrName); if (retVal< 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aexists * Signature: (ILjava/lang/String;)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aexists (JNIEnv *env, jclass clss, jint obj_id, jstring attr_name) { char *aName; jboolean isCopy; htri_t bval = 0; if (attr_name == NULL) { h5nullArgument( env, "H5Aexists: attr_name is NULL"); return JNI_FALSE; } aName = (char*)ENVPTR->GetStringUTFChars(ENVPAR attr_name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Aexists: attr_name not pinned"); return JNI_FALSE; } bval = H5Aexists((hid_t)obj_id, (const char*)aName); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name, aName); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Adelete_by_idx * Signature: (ILjava/lang/String;IIJI)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Adelete_1by_1idx (JNIEnv *env, jclass clss, jint loc_id, jstring obj_name, jint idx_type, jint order, jlong n, jint lapl_id) { char *aName; herr_t status; jboolean isCopy; if (obj_name == NULL) { h5nullArgument( env, "H5Adelete_by_idx: obj_name is NULL"); return; } aName = (char*)ENVPTR->GetStringUTFChars(ENVPAR obj_name, &isCopy); if (aName == NULL) { h5JNIFatalError( env, "H5Adelete_by_idx: obj_name not pinned"); return; } status = H5Adelete_by_idx((hid_t)loc_id, (const char*)aName, (H5_index_t)idx_type, (H5_iter_order_t)order, (hsize_t)n, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name, aName); if (status < 0) { h5libraryError(env); return; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Aopen_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen_1by_1name (JNIEnv *env, jclass clss, jint loc_id, jstring obj_name, jstring attr_name, jint aapl_id, jint lapl_id) { hid_t status; char *aName, *oName; jboolean isCopy; if (obj_name == NULL) { h5nullArgument( env,"_H5Aopen_by_name: obj_name is NULL"); return -1; } if (attr_name == NULL) { h5nullArgument( env,"_H5Aopen_by_name: attr_name is NULL"); return -1; } oName = (char *)ENVPTR->GetStringUTFChars(ENVPAR obj_name,&isCopy); if (oName == NULL) { h5JNIFatalError( env,"_H5Aopen_by_name: obj_name is not pinned"); return -1; } aName = (char *)ENVPTR->GetStringUTFChars(ENVPAR attr_name,&isCopy); if (aName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,oName); h5JNIFatalError( env,"_H5Aopen_by_name: attr_name is not pinned"); return -1; } status = H5Aopen_by_name((hid_t)loc_id, oName, aName, (hid_t)aapl_id, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR obj_name,oName); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,aName); if (status < 0) { h5libraryError(env); } return (jint)status; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/Configure/0000755002344600011330000000000012441355003016272 5ustar byrnhdfhdf-java-2.11.0/native/hdf5lib/Configure/Makefile.in0000644002344600011330000000271210007513716020344 0ustar byrnhdf#/**************************************************************************** # * NCSA HDF * # * National Comptational Science Alliance * # * University of Illinois at Urbana-Champaign * # * 605 E. Springfield, Champaign IL 61820 * # * * # * For conditions of distribution and use, see the accompanying * # * java-hdf5/COPYING file. * # * * # ****************************************************************************/ CC = @CC@ @COPTNOSHARE@ HDF5INC = @HDF5INC@ HDF5LIB = @HDF5LIB@ RM = @RM@ AWK = @AWK@ COPT=@COPT@ CFLAGS = -I. -I$(HDF5INC) LIBS = $(HDF5LIB)/libhdf5.a -lm -lz all: clean list-constants list-constants: mkconst mkconst > H5Const.jjj mkconst: mkconst.o $(CC) $(CFLAGS) -o mkconst mkconst.o $(LIBS) mkconst.o: mkconst.c mkconst.c: $(AWK) -f scr H5Constants-needed > mkconst.c clean: $(RM) -f mkconst mkconst.o mkconst.c H5Const.jjj *.class JAVAC = @JAVAC@ CLASSPATH=@CLASSPATH@ .SUFFIXES: .java .class .java.class: $(JAVAC) -classpath $(CLASSPATH) $< TestHDF5Link: TestHDF5Link.class chmod u+x testlink hdf-java-2.11.0/native/hdf5lib/Configure/H5Constants-needed0000644002344600011330000000425407466243671021637 0ustar byrnhdfH5D_CHUNKED H5D_COMPACT H5D_CONTIGUOUS H5D_LAYOUT_ERROR H5E_ALIGNMENT H5E_ALREADYINIT H5E_ARGS H5E_ATOM H5E_ATTR H5E_BADATOM H5E_BADFILE H5E_BADMESG H5E_BADRANGE H5E_BADTYPE H5E_BADVALUE H5E_BTREE H5E_CACHE H5E_CANTCOPY H5E_CANTCREATE H5E_CANTDECODE H5E_CANTDELETE H5E_CANTENCODE H5E_CANTFLUSH H5E_CANTFREE H5E_CANTINIT H5E_CANTINSERT H5E_CANTLIST H5E_CANTLOAD H5E_CANTOPENFILE H5E_CANTOPENOBJ H5E_CANTREGISTER H5E_CANTSPLIT H5E_CLOSEERROR H5E_COMPLEN H5E_CWG H5E_DATASET H5E_DATASPACE H5E_DATATYPE H5E_EFL H5E_EXISTS H5E_FILE H5E_FILEEXISTS H5E_FILEOPEN H5E_FUNC H5E_HEAP H5E_IO H5E_LINK H5E_LINKCOUNT H5E_MOUNT H5E_MPI H5E_NONE_MAJOR H5E_NONE_MINOR H5E_NOSPACE H5E_NOTCACHED H5E_NOTFOUND H5E_NOTHDF5 H5E_OHDR H5E_OVERFLOW H5E_PLINE H5E_PLIST H5E_PROTECT H5E_READERROR H5E_REFERENCE H5E_RESOURCE H5E_SEEKERROR H5E_SLINK H5E_STORAGE H5E_SYM H5E_TRUNCATED H5E_UNINITIALIZED H5E_UNSUPPORTED H5E_VERSION H5E_WALK_DOWNWARD H5E_WALK_UPWARD H5E_WRITEERROR H5F_ACC_CREAT H5F_ACC_DEBUG H5F_ACC_EXCL H5F_ACC_RDONLY H5F_ACC_RDWR H5F_ACC_TRUNC H5F_SCOPE_DOWN H5F_SCOPE_GLOBAL H5F_SCOPE_LOCAL H5F_UNLIMITED H5G_DATASET H5G_GROUP H5G_LINK H5G_LINK_ERROR H5G_LINK_HARD H5G_LINK_SOFT H5G_TYPE H5G_UNKNOWN H5I_ATTR H5I_BADID H5I_DATASET H5I_DATASPACE H5I_DATATYPE H5I_FILE H5I_GROUP H5I_REFERENCE H5I_VFL H5P_DATASET_CREATE H5P_DATASET_XFER H5P_DEFAULT H5P_FILE_ACCESS H5P_FILE_CREATE H5P_MOUNT H5P_NO_CLASS H5R_BADTYPE H5R_DATASET_REGION H5R_OBJECT H5S_ALL H5S_COMPLEX H5S_MAX_RANK H5S_NO_CLASS H5S_SCALAR H5S_SELECT_INVALID H5S_SELECT_NOOP H5S_SELECT_OR H5S_SELECT_SET H5S_SIMPLE H5S_UNLIMITED H5T_ARRAY H5T_BITFIELD H5T_COMPOUND H5T_CONV_CONV H5T_CONV_FREE H5T_CONV_INIT H5T_CSET_ASCII H5T_CSET_ERROR H5T_ENUM H5T_FLOAT H5T_INTEGER H5T_NORM_ERROR H5T_NORM_IMPLIED H5T_NORM_MSBSET H5T_NORM_NONE H5T_NO_CLASS H5T_OPAQUE H5T_ORDER_BE H5T_ORDER_ERROR H5T_ORDER_LE H5T_ORDER_NONE H5T_ORDER_VAX H5T_PAD_BACKGROUND H5T_PAD_ERROR H5T_PAD_ONE H5T_PAD_ZERO H5T_PERS_DONTCARE H5T_PERS_HARD H5T_PERS_SOFT H5T_REFERENCE H5T_SGN_2 H5T_SGN_ERROR H5T_SGN_NONE H5T_STRING H5T_STR_ERROR H5T_STR_NULLPAD H5T_STR_NULLTERM H5T_STR_SPACEPAD H5T_TIME H5T_VLEN H5Z_FILTER_DEFLATE H5Z_FILTER_ERROR H5Z_FILTER_NONE H5_VERS_MAJOR H5_VERS_MINOR H5_VERS_RELEASE hdf-java-2.11.0/native/hdf5lib/Configure/scr0000644002344600011330000000061007466243671017023 0ustar byrnhdfBEGIN { print "#include " print "#include " print print "main()" print "{" print "\t\/\* AUTOMATICALY GENERATE CONSTANTS */" print "\t\/\* paste into HDFConstants.java */" print print "\tprintf(\"\t\/\*AUTOMATICALLY GENERATED CONSTANTS\*\/ \\n\");" } {print "\tprintf(\"\tfinal static public int "$1" = %d;\\n\", (int)"$1");"} END{ print "" print "\treturn 0;" print "}" } hdf-java-2.11.0/native/hdf5lib/h5zImp.h0000644002344600011330000000150112371212307015674 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5Z */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5Z #define _Included_ncsa_hdf_hdf5lib_H5_H5Z #ifdef __cplusplus extern "C" { #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Zunregister * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Zunregister (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Zfilter_avail * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Zfilter_1avail (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Zget_filter_info * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Zget_1filter_1info (JNIEnv *, jclass, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5gImp.h0000644002344600011330000001274212371212307015662 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5G */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5G #define _Included_ncsa_hdf_hdf5lib_H5_H5G #ifdef __cplusplus extern "C" { #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gcreate * Signature: (ILjava/lang/String;J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gcreate (JNIEnv *, jclass, jint, jstring, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gopen * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gopen (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gclose (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Glink * Signature: (IILjava/lang/String;Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Glink (JNIEnv *, jclass, jint, jint, jstring, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Glink * Signature: (ILjava/lang/String;IILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Glink2 (JNIEnv *, jclass, jint, jstring, jint, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gunlink * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gunlink (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gmove * Signature: (ILjava/lang/String;Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gmove (JNIEnv *, jclass, jint, jstring, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_objinfo * Signature: (ILjava/lang/String;Z[J[J[I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1objinfo (JNIEnv *, jclass, jint, jstring, jboolean, jlongArray, jlongArray, jintArray, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_linkval * Signature: (ILjava/lang/String;I[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1linkval (JNIEnv *, jclass, jint, jstring, jint, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gset_comment * Signature: (ILjava/lang/String;Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gset_1comment (JNIEnv *, jclass, jint, jstring, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_comment * Signature: (ILjava/lang/String;I[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1comment (JNIEnv *, jclass, jint, jstring, jint, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_num_objs * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1num_1objs (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_objname_by_idx * Signature: (IJ[Ljava/lang/String;J)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1objname_1by_1idx (JNIEnv *, jclass, jint, jlong, jobjectArray, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_objtype_by_idx * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1objtype_1by_1idx (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_obj_info_full * Signature: (ILjava/lang/String;[Ljava/lang/String;[I[I[J[JIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1obj_1info_1full (JNIEnv *, jclass, jint, jstring, jobjectArray, jintArray, jintArray, jlongArray, jlongArray, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_obj_info_max * Signature: (I[Ljava/lang/String;[I[I[JII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1obj_1info_1max (JNIEnv *, jclass, jint, jobjectArray, jintArray, jintArray, jlongArray, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gcreate2 * Signature: (ILjava/lang/String;III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gcreate2 (JNIEnv *, jclass, jint, jstring, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gcreate_anon * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gcreate_1anon (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gopen2 * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gopen2 (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_create_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1create_1plist (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_info * Signature: (I)Lncsa/hdf/hdf5lib/structs/H5G_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1info (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_info_by_name * Signature: (ILjava/lang/String;I)Lncsa/hdf/hdf5lib/structs/H5G_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1info_1by_1name (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_info_by_idx * Signature: (ILjava/lang/String;IIJI)Lncsa/hdf/hdf5lib/structs/H5G_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1info_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/Makefile.in0000644002344600011330000000355611351726764016446 0ustar byrnhdf#/**************************************************************************** #* Copyright by The HDF Group. * #* Copyright by the Board of Trustees of the University of Illinois. * #* All rights reserved. * #* * #* This file is part of HDF Java Products. The full HDF Java copyright * #* notice, including terms governing use, modification, and redistribution, * #* is contained in the file, COPYING. COPYING can be found at the root of * #* the source code distribution tree. You can also access it online at * #* http://www.hdfgroup.org/products/licenses.html. If you do not have * #* access to the file, you may request a copy from help@hdfgroup.org. * #****************************************************************************/ CC = @CC@ @COPT@ RM = @RM@ HDF5INC = @HDF5INC@ HDF5LIB = @HDF5LIB@ JAVAINC1=@JAVAINC@ JAVAINC2=@JAVAINC2@ SZLIB=@SZLIB@ ZLIB=@ZLIB@ LIBDIR=../../lib/@JAVATARG@ # Flags passed to the C compiler. Leave these alone. LD=@LD@ LDOPT=@LDOPT@ LLEXT=@LLEXT@ SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ COPT=@COPT@ CFLAGS = -D_FILE_OFFSET_BITS=64 $(DEFS) -I. -I$(HDF5INC) -I$(JAVAINC1) -I$(JAVAINC2) LIBS = $(HDF5LIB)/libhdf5.$(LLEXT) $(ZLIB) $(SZLIB) -lm # Macro def: object filename used OBJECTS = exceptionImp.o h5Constants.o h5Imp.o h5aImp.o h5dImp.o h5eImp.o h5fImp.o h5gImp.o h5iImp.o h5lImp.o h5oImp.o h5pImp.o h5rImp.o h5sImp.o h5tImp.o nativeData.o h5util.o h5zImp.o # make depends on the files specified in the objects macro defination all: libjhdf5 hdf5lib: libjhdf5 libjhdf5: $(OBJECTS) -mkdir -p $(LIBDIR); $(LD) $(LDOPT) -o $(LIBDIR)/libjhdf5.$(JSLEXT) $(LDOPT2) $(OBJECTS) $(LIBS) clean: $(RM) -f *.o so_locations $(LIBDIR)/libjhdf5.$(JSLEXT) hdf-java-2.11.0/native/hdf5lib/h5pImp.h0000644002344600011330000007164212371212307015677 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5_H5P */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5P #define _Included_ncsa_hdf_hdf5lib_H5_H5P #ifdef __cplusplus extern "C" { #endif extern JavaVM *jvm; extern jobject visit_callback; /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pcreate * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Pcreate (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Pclose (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_class * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1class (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pcopy * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Pcopy (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_version * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1version (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_userblock * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1userblock (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_userblock * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1userblock (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_sizes * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1sizes (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_sizes * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1sizes (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_sym_k * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1sym_1k (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_sym_k * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1sym_1k (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_istore_k * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1istore_1k (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_istore_k * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1istore_1k (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_layout * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1layout (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_layout * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1layout (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_chunk * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1chunk (JNIEnv *, jclass, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_chunk * Signature: (II[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1chunk (JNIEnv *, jclass, jint, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_alignment * Signature: (IJJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1alignment (JNIEnv *, jclass, jint, jlong, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_alignment * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1alignment (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_external * Signature: (ILjava/lang/String;JJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1external (JNIEnv *, jclass, jint, jstring, jlong, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_external_count * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1external_1count (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_external * Signature: (IIJ[Ljava/lang/String;[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1external (JNIEnv *, jclass, jint, jint, jlong, jobjectArray, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fill_value * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fill_1value (JNIEnv *, jclass, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fill_value * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fill_1value (JNIEnv *, jclass, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_filter * Signature: (IIIJ[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1filter (JNIEnv *, jclass, jint, jint, jint, jlong, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_nfilters * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1nfilters (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_filter * Signature: (II[I[J[IJ[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1filter (JNIEnv *, jclass, jint, jint, jintArray, jlongArray, jintArray, jlong, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_driver * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1driver (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_cache * Signature: (IIJJD)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1cache (JNIEnv *, jclass, jint, jint, jlong, jlong, jdouble); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_cache * Signature: (I[I[J[J[D)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1cache (JNIEnv *, jclass, jint, jintArray, jlongArray, jlongArray, jdoubleArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_buffer * Signature: (IJ[B[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1buffer (JNIEnv *, jclass, jint, jlong, jbyteArray, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_buffer * Signature: (I[B[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1buffer (JNIEnv *, jclass, jint, jbyteArray, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_buffer_size * Signature: (IJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1buffer_1size (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_buffer_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1buffer_1size (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_preserve * Signature: (IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1preserve (JNIEnv *, jclass, jint, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_preserve * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1preserve (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_deflate * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1deflate (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_gc_references * Signature: (IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1gc_1references (JNIEnv *, jclass, jint, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_gc_references * Signature: (I[Z)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1gc_1references (JNIEnv *, jclass, jint, jbooleanArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_gcreferences * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1gcreferences (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_btree_ratios * Signature: (IDDD)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1btree_1ratios (JNIEnv *, jclass, jint, jdouble, jdouble, jdouble); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_btree_ratios * Signature: (I[D[D[D)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1btree_1ratios (JNIEnv *, jclass, jint, jdoubleArray, jdoubleArray, jdoubleArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_small_data_block_size * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1small_1data_1block_1size (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_small_data_block_size * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1small_1data_1block_1size (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_small_data_block_size_long * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1small_1data_1block_1size_1long (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_alloc_time * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1alloc_1time (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_alloc_time * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1alloc_1time (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fill_time * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fill_1time (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fill_time * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fill_1time (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pfill_value_defined * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pfill_1value_1defined (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fletcher32 * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fletcher32 (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_edc_check * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1edc_1check (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_edc_check * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1edc_1check (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_shuffle * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1shuffle (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_szip * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1szip (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_hyper_vector_size * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1hyper_1vector_1size (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_hyper_vector_size * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1hyper_1vector_1size (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pall_filters_avail * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pall_1filters_1avail (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pmodify_filter * Signature: (IIIJ[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pmodify_1filter (JNIEnv *, jclass, jint, jint, jint, jlong, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_filter_by_id * Signature: (II[I[J[IJ[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1filter_1by_1id (JNIEnv *, jclass, jint, jint, jintArray, jlongArray, jintArray, jlong, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fclose_degree * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fclose_1degree (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fclose_degree * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fclose_1degree (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_family * Signature: (IJI)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1family (JNIEnv *, jclass, jint, jlong, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fapl_family * Signature: (I[J[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fapl_1family (JNIEnv *, jclass, jint, jlongArray, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_core * Signature: (IJZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1core (JNIEnv *, jclass, jint, jlong, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fapl_core * Signature: (I[J[Z)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fapl_1core (JNIEnv *, jclass, jint, jlongArray, jbooleanArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_family_offset * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1family_1offset (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_family_offset * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1family_1offset (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_log * Signature: (ILjava/lang/String;JJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1log (JNIEnv *, jclass, jint, jstring, jlong, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Premove_filter * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5P1remove_1filter (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pexist * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pexist (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_size * Signature: (ILjava/lang/String;)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1size (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_nprops * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1nprops (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_class_name * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1class_1name (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_class_parent * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1class_1parent (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pisa_class * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pisa_1class (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pequal * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pequal (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pcopy_prop * Signature: (IILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pcopy_1prop (JNIEnv *, jclass, jint, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Premove * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Premove (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Punregister * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Punregister (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pclose_list * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pclose_1class (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_filter2 * Signature: (II[I[J[IJ[Ljava/lang/String;[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1filter2 (JNIEnv *, jclass, jint, jint, jintArray, jlongArray, jintArray, jlong, jobjectArray, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_filter_by_id2 * Signature: (II[I[J[IJ[Ljava/lang/String;[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1filter_1by_1id2 (JNIEnv *, jclass, jint, jint, jintArray, jlongArray, jintArray, jlong, jobjectArray, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_nlinks * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1nlinks (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_nlinks * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1nlinks (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_libver_bounds * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1libver_1bounds (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_libver_bounds * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1libver_1bounds (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_link_creation_order * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1link_1creation_1order (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_link_creation_order * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1link_1creation_1order (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_attr_creation_order * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1attr_1creation_1order (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_attr_creation_order * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1attr_1creation_1order (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_copy_object * Signature: (II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1copy_1object (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_copy_object * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1copy_1object (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_create_intermediate_group * Signature: (IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1create_1intermediate_1group (JNIEnv *, jclass, jint, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_create_intermediate_group * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1create_1intermediate_1group (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_data_transform * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1data_1transform (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_data_transform * Signature: (I[Ljava/lang/String;J)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1data_1transform (JNIEnv *, jclass, jint, jobjectArray, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_elink_acc_flags * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1elink_1acc_1flags (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_elink_acc_flags * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1elink_1acc_1flags (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_link_phase_change * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1link_1phase_1change (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_link_phase_change * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1link_1phase_1change (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_attr_phase_change * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1attr_1phase_1change (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_shared_mesg_phase_change * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1shared_1mesg_1phase_1change (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_shared_mesg_phase_change * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1shared_1mesg_1phase_1change (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_shared_mesg_nindexes * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1shared_1mesg_1nindexes (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_shared_mesg_nindexes * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1shared_1mesg_1nindexes (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_shared_mesg_index * Signature: (IIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1shared_1mesg_1index (JNIEnv *, jclass, jint, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_shared_mesg_index * Signature: (II[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1shared_1mesg_1index (JNIEnv *, jclass, jint, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_local_heap_size_hint * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1local_1heap_1size_1hint (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_local_heap_size_hint * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1local_1heap_1size_1hint (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_nbit * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1nbit (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_scaleoffset * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1scaleoffset (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_est_link_info * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1est_1link_1info (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_est_link_info * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1est_1link_1info (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_elink_fapl * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1elink_1fapl (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Pget_elink_fapl * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Pget_1elink_1fapl (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_elink_prefix * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1elink_1prefix (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_elink_prefix * Signature: (I[Ljava/lang/String;)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1elink_1prefix (JNIEnv *, jclass, jint, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_direct * Signature: (IJJJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1direct (JNIEnv *, jclass, jint, jlong, jlong, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fapl_direct * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fapl_1direct (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_sec2 * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1sec2 (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_stdio * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1stdio (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_windows * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1windows (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fapl_muti * Signature: (I[I[I[Ljava/lang/String;[J)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fapl_1multi (JNIEnv *, jclass, jint, jintArray, jintArray, jobjectArray, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_muti * Signature: (I[I[I[Ljava/lang/String;[JZ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1multi (JNIEnv *, jclass, jint, jintArray, jintArray, jobjectArray, jlongArray, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_split * Signature: (ILjava/lang/String;ILjava/lang/String;I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1split (JNIEnv *, jclass, jint, jstring, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_meta_block_size * Signature: (IJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1meta_1block_1size (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_meta_block_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1meta_1block_1size (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_sieve_buf_size * Signature: (IJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1sieve_1buf_1size (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_sieve_buf_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1sieve_1buf_1size (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_elink_file_cache_size * Signature: (II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1elink_1file_1cache_1size (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_elink_file_cache_size * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1elink_1file_1cache_1size (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_mdc_config * Signature: (I)Lncsa/hdf/hdf5lib/structs/H5AC_cache_config_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1mdc_1config (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_mdc_config * Signature: (ILncsa/hdf/hdf5lib/structs/H5AC_cache_config_t;)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1mdc_1config (JNIEnv *, jclass, jint, jobject); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_chunk_cache * Signature: (IJJD)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1chunk_1cache (JNIEnv *, jclass, jint, jlong, jlong, jdouble); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_chunk_cache * Signature: (I[J[J[D)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1chunk_1cache (JNIEnv *, jclass, jint, jlongArray, jlongArray, jdoubleArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_obj_track_times * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1obj_1track_1times (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_obj_track_times * Signature: (IZ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1obj_1track_1times (JNIEnv *, jclass, jint, jboolean); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_char_encoding * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1char_1encoding (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_char_encoding * Signature: (II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1char_1encoding (JNIEnv *, jclass, jint, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/CMakeLists.txt0000644002344600011330000000763312372723703017133 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_JNI_HDF5LIB C) set (HDFJAVA_JNI_HDF5_CSRCS ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/exceptionImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5aImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5Constants.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5dImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5eImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5fImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5gImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5iImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5Imp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5lImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5oImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5pImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5rImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5sImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5tImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5util.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5zImp.c ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/nativeData.c ) set (HDFJAVA_JNI_HDF5_CHDRS ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5aImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5dImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5eImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5fImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5gImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5iImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5jni.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5lImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5oImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5rImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5sImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5tImp.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5util.h ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR}/h5zImp.h ) INCLUDE_DIRECTORIES( ${HDFJAVA_JNI_HDF5LIB_SOURCE_DIR} ) #----------------------------------------------------------------------------- # Run all the CMake configuration tests for our build environment #----------------------------------------------------------------------------- include (${HDF_RESOURCES_DIR}/ConfigureChecks.cmake) set (CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE ON) ########### JNI libraries always must be built shared ############### add_library (${HDFJAVA_JNI_HDF5_LIB_TARGET} SHARED ${HDFJAVA_JNI_HDF5_CSRCS} ${HDFJAVA_JNI_HDF5_CHDRS}) TARGET_C_PROPERTIES (${HDFJAVA_JNI_HDF5_LIB_TARGET} " " " ") TARGET_LINK_LIBRARIES (${HDFJAVA_JNI_HDF5_LIB_TARGET} ${HDF5_LINK_LIBS}) SET_GLOBAL_VARIABLE (HDFJAVA_LIBRARIES_TO_EXPORT "${HDFJAVA_LIBRARIES_TO_EXPORT};${HDFJAVA_JNI_HDF5_LIB_TARGET}") HDFJAVA_SET_LIB_OPTIONS (${HDFJAVA_JNI_HDF5_LIB_TARGET} ${HDFJAVA_JNI_HDF5_LIB_NAME} SHARED) if (WIN32) get_filename_component (HDFJAVA_JNI_HDF5_DLL_NAME ${HDFJAVA_JNI_HDF5_LIB_TARGET} NAME_WE) # message (STATUS "HDFJAVA_JNI_HDF5_DLL_NAME: ${HDFJAVA_JNI_HDF5_DLL_NAME}") if (BUILD_TESTING) add_custom_target (HDFJAVA_JNI_HDF5-Test-Copy ALL COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/${HDFJAVA_JNI_HDF5_DLL_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${HDFJAVA_JNI_HDF5_DLL_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX} COMMENT "Copying ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/${HDFJAVA_JNI_HDF5_DLL_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX} to ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/" ) add_dependencies (HDFJAVA_JNI_HDF5-Test-Copy ${HDFJAVA_JNI_HDF5_LIB_TARGET}) endif (BUILD_TESTING) endif (WIN32) #----------------------------------------------------------------------------- # Add Target(s) to CMake Install for import into other projects #----------------------------------------------------------------------------- if (HDFJAVA_EXPORTED_TARGETS) install ( TARGETS ${HDFJAVA_JNI_HDF5_LIB_TARGET} EXPORT ${HDFJAVA_EXPORTED_TARGETS} LIBRARY DESTINATION ${HJAVA_INSTALL_LIB_DIR} COMPONENT libraries ARCHIVE DESTINATION ${HJAVA_INSTALL_LIB_DIR} COMPONENT libraries RUNTIME DESTINATION ${HJAVA_INSTALL_LIB_DIR} COMPONENT libraries ) endif (HDFJAVA_EXPORTED_TARGETS) hdf-java-2.11.0/native/hdf5lib/h5pImp.c0000644002344600011330000042401312371212307015664 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * This code is the C-interface called by Java programs to access the * Property List API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include #include #include "hdf5.h" #include "h5jni.h" #include "h5pImp.h" #include "h5util.h" #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE (!FALSE) #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pcreate * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Pcreate (JNIEnv *env, jclass clss, jint type) { hid_t retVal = -1; retVal = H5Pcreate((hid_t)type); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Pclose (JNIEnv *env, jclass clss, jint plist) { herr_t retVal = 0; if (plist > 0) retVal = H5Pclose((hid_t)plist); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_class * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1class (JNIEnv *env, jclass clss, jint plist) { hid_t retVal = H5P_NO_CLASS; retVal = H5Pget_class((hid_t) plist); if (retVal == H5P_NO_CLASS) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pcopy * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Pcopy (JNIEnv *env, jclass clss, jint plist) { hid_t retVal = -1; retVal = H5Pcopy((hid_t)plist); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_version * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1version (JNIEnv *env, jclass clss, jint plist, jintArray version_info) { herr_t status; jint *theArray; jboolean isCopy; if (version_info == NULL) { h5nullArgument(env, "H5Pget_version: version_info input array is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR version_info) < 4) { h5badArgument(env, "H5Pget_version: version_info input array < 4"); return -1; } theArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR version_info,&isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_version: version_info not pinned"); return -1; } status = H5Pget_version((hid_t)plist, (unsigned *)&(theArray[0]), (unsigned *)&(theArray[1]), (unsigned *)&(theArray[2]), (unsigned *)&(theArray[3])); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR version_info, theArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR version_info, theArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_userblock * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1userblock (JNIEnv *env, jclass clss, jint plist, jlong size) { long sz; herr_t retVal = -1; sz = (long)size; retVal = H5Pset_userblock((hid_t)plist, (hsize_t)sz); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_userblock * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1userblock (JNIEnv *env, jclass clss, jint plist, jlongArray size) { herr_t status; jlong *theArray; jboolean isCopy; hsize_t s; if (size == NULL) { /* exception ? */ h5nullArgument(env, "H5Pget_userblock: size is NULL"); return -1; } theArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR size, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_userblock: size not pinned"); return -1; } status = H5Pget_userblock((hid_t)plist, &s); if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR size, theArray, JNI_ABORT); h5libraryError(env); return -1; } theArray[0] = s; ENVPTR->ReleaseLongArrayElements(ENVPAR size, theArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_sizes * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1sizes (JNIEnv *env, jclass clss, jint plist, jint sizeof_addr, jint sizeof_size) { herr_t retVal = -1; retVal = H5Pset_sizes((hid_t)plist, (size_t)sizeof_addr, (size_t)sizeof_size); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_sizes * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1sizes (JNIEnv *env, jclass clss, jint plist, jlongArray size) { herr_t status; jlong *theArray; jboolean isCopy; size_t ss; size_t sa; if (size == NULL) { h5nullArgument(env, "H5Pget_sizes: size is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR size) < 2) { h5badArgument(env, "H5Pget_sizes: size input array < 2 elements"); return -1; } theArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR size, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_sizes: size not pinned"); return -1; } status = H5Pget_sizes((hid_t)plist, &sa, &ss); if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR size, theArray, JNI_ABORT); h5libraryError(env); return -1; } theArray[0] = sa; theArray[1] = ss; ENVPTR->ReleaseLongArrayElements(ENVPAR size, theArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_sym_k * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1sym_1k (JNIEnv *env, jclass clss, jint plist, jint ik, jint lk) { herr_t retVal = -1; retVal = H5Pset_sym_k((hid_t)plist, (int)ik, (int)lk); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_sym_k * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1sym_1k (JNIEnv *env, jclass clss, jint plist, jintArray size) { herr_t status; jint *theArray; jboolean isCopy; if (size == NULL) { h5nullArgument(env, "H5Pget_sym_k: size is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR size) < 2) { h5badArgument(env, "H5Pget_sym_k: size < 2 elements"); return -1; } theArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR size, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_sym_k: size not pinned"); return -1; } status = H5Pget_sym_k((hid_t)plist, (unsigned *)&(theArray[0]), (unsigned *)&(theArray[1])); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR size, theArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR size, theArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_istore_k * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1istore_1k (JNIEnv *env, jclass clss, jint plist, jint ik) { herr_t retVal = -1; retVal = H5Pset_istore_k((hid_t)plist, (int)ik); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_istore_k * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1istore_1k (JNIEnv *env, jclass clss, jint plist, jintArray ik) { herr_t status; jint *theArray; jboolean isCopy; if (ik == NULL) { h5nullArgument(env, "H5Pget_store_k: ik is NULL"); return -1; } theArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR ik, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_store_k: size not pinned"); return -1; } status = H5Pget_istore_k((hid_t)plist, (unsigned *)&(theArray[0])); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR ik, theArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR ik, theArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_layout * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1layout (JNIEnv *env, jclass clss, jint plist, jint layout) { herr_t retVal = -1; retVal = H5Pset_layout((hid_t)plist, (H5D_layout_t)layout); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_layout * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1layout (JNIEnv *env, jclass clss, jint plist) { H5D_layout_t retVal = H5D_LAYOUT_ERROR; retVal = H5Pget_layout((hid_t)plist); if (retVal == H5D_LAYOUT_ERROR) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_chunk * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1chunk (JNIEnv *env, jclass clss, jint plist, jint ndims, jbyteArray dim) { herr_t status; jbyte *theArray; jboolean isCopy; hsize_t *da; hsize_t *lp; jlong *jlp; int i; int rank; if (dim == NULL) { h5nullArgument(env, "H5Pset_chunk: dim array is NULL"); return -1; } i = ENVPTR->GetArrayLength(ENVPAR dim); rank = i / sizeof(jlong); if (rank < ndims) { h5badArgument(env, "H5Pset_chunk: dims array < ndims"); return -1; } theArray = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR dim, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pset_chunk: dim array not pinned"); return -1; } da = lp = (hsize_t *)malloc(rank * sizeof(hsize_t)); if (da == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR dim, theArray, JNI_ABORT); h5JNIFatalError(env, "H5Pset_chunk: dims not converted to hsize_t"); return -1; } jlp = (jlong *)theArray; for (i = 0; i < rank; i++) { *lp = (hsize_t)*jlp; lp++; jlp++; } status = H5Pset_chunk((hid_t)plist, (int)ndims, da); ENVPTR->ReleaseByteArrayElements(ENVPAR dim, theArray, JNI_ABORT); free(da); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_chunk * Signature: (II[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1chunk (JNIEnv *env, jclass clss, jint plist, jint max_ndims, jlongArray dims) { herr_t status; jlong *theArray; jboolean isCopy; hsize_t *da; int i; if (dims == NULL) { h5nullArgument(env, "H5Pget_chunk: dims is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR dims) < max_ndims) { h5badArgument(env, "H5Pget_chunk: dims array < max_ndims"); return -1; } theArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR dims, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_chunk: input dims not pinned"); return -1; } da = (hsize_t *)malloc(max_ndims * sizeof(hsize_t)); if (da == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, theArray, JNI_ABORT); h5JNIFatalError(env, "H5Pget_chunk: dims not converted to hsize_t"); return -1; } status = H5Pget_chunk((hid_t)plist, (int)max_ndims, da); if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, theArray, JNI_ABORT); free (da); h5libraryError(env); return -1; } for (i = 0; i < max_ndims; i++) { theArray[i] = da[i]; } free (da); ENVPTR->ReleaseLongArrayElements(ENVPAR dims, theArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_alignment * Signature: (IJJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1alignment (JNIEnv *env, jclass clss, jint plist, jlong threshold, jlong alignment) { long thr; long align; herr_t retVal = -1; thr = (long)threshold; align = (long)alignment; retVal = H5Pset_alignment((hid_t)plist, (hsize_t)thr, (hsize_t)align); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_alignment * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1alignment (JNIEnv *env, jclass clss, jint plist, jlongArray alignment) { herr_t status; jlong *theArray; jboolean isCopy; hsize_t t; hsize_t a; if (alignment == NULL) { h5nullArgument(env, "H5Pget_alignment: input alignment is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR alignment) < 2) { h5badArgument(env, "H5Pget_alignment: alignment input array < 2"); return -1; } theArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR alignment, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_alignment: input array not pinned"); return -1; } status = H5Pget_alignment((hid_t)plist, &t, &a); if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR alignment, theArray, JNI_ABORT); h5libraryError(env); return -1; } theArray[0] = t; theArray[1] = a; ENVPTR->ReleaseLongArrayElements(ENVPAR alignment, theArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_external * Signature: (ILjava/lang/String;JJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1external (JNIEnv *env, jclass clss, jint plist, jstring name, jlong offset, jlong size) { herr_t status; char *file; jboolean isCopy; off_t off; hsize_t sz; hid_t plid; plid = (hid_t)plist; off = (off_t)offset; sz = (hsize_t)size; if (name == NULL) { h5nullArgument(env, "H5Pset_external: name is NULL"); return -1; } file = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (file == NULL) { h5JNIFatalError(env, "H5Pset_external: name not pinned"); return -1; } status = H5Pset_external(plid, file, off, sz); ENVPTR->ReleaseStringUTFChars(ENVPAR name, file); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_external_count * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1external_1count (JNIEnv *env, jclass clss, jint plist) { int retVal = -1; retVal = H5Pget_external_count((hid_t)plist); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_external * Signature: (IIJ[Ljava/lang/String;[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1external (JNIEnv *env, jclass clss, jint plist, jint idx, jlong name_size, jobjectArray name, jlongArray size) { herr_t status; jlong *theArray; jboolean isCopy; char *file; jstring str; off_t o; hsize_t s; if (name_size < 0) { h5badArgument(env, "H5Pget_external: name_size < 0"); return -1; } else if (name_size == 0) { file = NULL; } else { file = (char *)malloc(sizeof(char)*(size_t)name_size); } if (size != NULL) { if (ENVPTR->GetArrayLength(ENVPAR size) < 2) { free(file); h5badArgument(env, "H5Pget_external: size input array < 2"); return -1; } theArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR size, &isCopy); if (theArray == NULL) { free(file); h5JNIFatalError( env, "H5Pget_external: size array not pinned"); return -1; } } status = H5Pget_external((hid_t) plist, (int)idx, (size_t)name_size, file, (off_t *)&o, (hsize_t *)&s); if (status < 0) { if (size != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR size, theArray, JNI_ABORT); } free(file); h5libraryError(env); return -1; } if (size != NULL) { theArray[0] = o; theArray[1] = s; ENVPTR->ReleaseLongArrayElements(ENVPAR size, theArray, 0); } if (file != NULL) { /* NewStringUTF may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR file); if (str == NULL) { free(file); h5JNIFatalError(env, "H5Pget_external: return array not created"); return -1; } /* SetObjectArrayElement may raise exceptions */ ENVPTR->SetObjectArrayElement(ENVPAR name, 0, (jobject)str); free(file); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fill_value * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fill_1value (JNIEnv *env, jclass clss, jint plist_id, jint type_id, jbyteArray value) { jint status = -1; jbyte *byteP; jboolean isCopy; if (value != NULL) { byteP = ENVPTR->GetByteArrayElements(ENVPAR value, &isCopy); if (byteP == NULL) { h5JNIFatalError(env, "H5Pget_fill_value: value array not pinned"); return -1; } } status = H5Pset_fill_value((hid_t)plist_id, (hid_t)type_id, byteP); if (status < 0) { if (value != NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR value, byteP, JNI_ABORT); } h5libraryError(env); return -1; } if (value != NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR value, byteP, JNI_ABORT); } return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fill_value * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fill_1value (JNIEnv *env, jclass clss, jint plist_id, jint type_id, jbyteArray value) { jint status; jbyte *byteP; jboolean isCopy; if (value == NULL) { h5badArgument(env, "H5Pget_fill_value: value is NULL"); return -1; } byteP = ENVPTR->GetByteArrayElements(ENVPAR value, &isCopy); if (byteP == NULL) { h5JNIFatalError(env, "H5Pget_fill_value: value array not pinned"); return -1; } status = H5Pget_fill_value((hid_t)plist_id, (hid_t)type_id, byteP); if (status < 0) { ENVPTR->ReleaseByteArrayElements(ENVPAR value, byteP, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseByteArrayElements(ENVPAR value, byteP, 0); return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_filter * Signature: (IIIJ[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1filter (JNIEnv *env, jclass clss, jint plist, jint filter, jint flags, jlong cd_nelmts, jintArray cd_values) { herr_t status; jint *theArray; jboolean isCopy; if (cd_values == NULL) status = H5Pset_filter((hid_t)plist, (H5Z_filter_t)filter, (unsigned int)flags, (size_t)cd_nelmts, NULL); else { theArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR cd_values, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pset_filter: input array not pinned"); return -1; } status = H5Pset_filter((hid_t)plist, (H5Z_filter_t)filter, (unsigned int)flags, (size_t)cd_nelmts, (const unsigned int *)theArray); ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, theArray, JNI_ABORT); } if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_nfilters * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1nfilters (JNIEnv *env, jclass clss, jint plist) { int retVal = -1; retVal = H5Pget_nfilters((hid_t)plist); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_filter * Signature: (II[I[J[IJ[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1filter (JNIEnv *env, jclass clss, jint plist, jint filter_number, jintArray flags, jlongArray cd_nelmts, jintArray cd_values, jlong namelen, jobjectArray name) { herr_t status; jint *flagsArray; jlong *cd_nelmtsArray; jint *cd_valuesArray; jboolean isCopy; jstring str; char *filter; if (namelen <= 0) { h5badArgument(env, "H5Pget_filter: namelen <= 0"); return -1; } if (flags == NULL) { h5badArgument(env, "H5Pget_filter: flags is NULL"); return -1; } if (cd_nelmts == NULL) { h5badArgument(env, "H5Pget_filter: cd_nelmts is NULL"); return -1; } if (cd_values == NULL) { h5badArgument(env, "H5Pget_filter: cd_values is NULL"); return -1; } filter = (char *)malloc(sizeof(char)*(size_t)namelen); if (filter == NULL) { h5outOfMemory(env, "H5Pget_filter: namelent malloc failed"); return -1; } flagsArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR flags, &isCopy); if (flagsArray == NULL) { free(filter); h5JNIFatalError(env, "H5Pget_filter: flags array not pinned"); return -1; } cd_nelmtsArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR cd_nelmts, &isCopy); if (cd_nelmtsArray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); free(filter); h5JNIFatalError(env, "H5Pget_filter: nelmts array not pinned"); return -1; } cd_valuesArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR cd_values, &isCopy); if (cd_valuesArray == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); free(filter); h5JNIFatalError(env, "H5Pget_filter: elmts array not pinned"); return -1; } { /* direct cast (size_t *)variable fails on 32-bit environment */ long long cd_nelmts_temp = *(cd_nelmtsArray); size_t cd_nelmts_t = (size_t)cd_nelmts_temp; unsigned int filter_config; status = H5Pget_filter2((hid_t)plist, (int)filter_number, (unsigned int *)flagsArray, &cd_nelmts_t, (unsigned int *)cd_valuesArray, (size_t)namelen, filter, &filter_config); *cd_nelmtsArray = cd_nelmts_t; } if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); free(filter); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, 0); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, 0); /* NewStringUTF may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR filter); if (str == NULL) { free(filter); h5JNIFatalError(env, "H5Pget_filter: return string not pinned"); return -1; } /* SetObjectArrayElement may throw exceptiosn */ ENVPTR->SetObjectArrayElement(ENVPAR name, 0, (jobject)str); free(filter); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_driver * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1driver (JNIEnv *env, jclass clss, jint plist) { hid_t retVal = -1; retVal = H5Pget_driver((hid_t) plist); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_cache * Signature: (IIJJD)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1cache (JNIEnv *env, jclass clss, jint plist, jint mdc_nelmts, jlong rdcc_nelmts, jlong rdcc_nbytes, jdouble rdcc_w0) { herr_t retVal = -1; retVal = H5Pset_cache((hid_t)plist, (int)mdc_nelmts, (size_t)rdcc_nelmts, (size_t)rdcc_nbytes, (double) rdcc_w0); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_cache * Signature: (I[I[J[J[D)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1cache (JNIEnv *env, jclass clss, jint plist, jintArray mdc_nelmts, jlongArray rdcc_nelmts, jlongArray rdcc_nbytes, jdoubleArray rdcc_w0) { herr_t status; jint mode; jdouble *w0Array; jlong *rdcc_nelmtsArray; jlong *nbytesArray; jboolean isCopy; if (rdcc_w0 == NULL) { w0Array = (jdouble *)NULL; } else { w0Array = (jdouble *)ENVPTR->GetDoubleArrayElements(ENVPAR rdcc_w0, &isCopy); if (w0Array == NULL) { h5JNIFatalError(env, "H5Pget_cache: w0_array array not pinned"); return -1; } } if (rdcc_nelmts == NULL) { rdcc_nelmtsArray = (jlong *) NULL; } else { rdcc_nelmtsArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR rdcc_nelmts, &isCopy); if (rdcc_nelmtsArray == NULL) { /* exception -- out of memory */ if (w0Array != NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR rdcc_w0, w0Array, JNI_ABORT); } h5JNIFatalError(env, "H5Pget_cache: rdcc_nelmts array not pinned"); return -1; } } if (rdcc_nbytes == NULL) { nbytesArray = (jlong *) NULL; } else { nbytesArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR rdcc_nbytes, &isCopy); if (nbytesArray == NULL) { if (w0Array != NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR rdcc_w0, w0Array, JNI_ABORT); } if (rdcc_nelmtsArray != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR rdcc_nelmts, rdcc_nelmtsArray, JNI_ABORT); } h5JNIFatalError(env, "H5Pget_cache: nbytesArray array not pinned"); return -1; } } { /* direct cast (size_t *)variable fails on 32-bit environment */ long long rdcc_nelmts_temp = *(rdcc_nelmtsArray); size_t rdcc_nelmts_t = (size_t)rdcc_nelmts_temp; long long nbytes_temp = *(nbytesArray); size_t nbytes_t = (size_t)nbytes_temp; status = H5Pget_cache((hid_t)plist, (int *)NULL, &rdcc_nelmts_t, &nbytes_t, (double *)w0Array); *rdcc_nelmtsArray = rdcc_nelmts_t; *nbytesArray = nbytes_t; } if (status < 0) { mode = JNI_ABORT; } else { mode = 0; /* commit and free */ } if (rdcc_nelmtsArray != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR rdcc_nelmts, rdcc_nelmtsArray, mode); } if (nbytesArray != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR rdcc_nbytes, nbytesArray, mode); } if (w0Array != NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR rdcc_w0, w0Array, mode); } if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_buffer * Signature: (IJ[B[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1buffer (JNIEnv *env, jclass clss, jint plist, jlong size, jbyteArray tconv, jbyteArray bkg) { h5unimplemented(env, "H5Pset_buffer: not implemented"); return -1; #ifdef notdef /* DON'T IMPLEMENT THIS!!! */ jint status = -1; jbyte *tconvP; jbyte *bkgP; jboolean isCopy; if (tconv == NULL) tconvP = (jbyte *)NULL; else { tconvP = ENVPTR->GetByteArrayElements(ENVPAR tconv, &isCopy); if (tconvP == NULL) { h5JNIFatalError(env, "H5Pset_buffer: tconv not pinned"); return -1; } } if (bkg == NULL) bkgP = (jbyte *)NULL; else { bkgP = ENVPTR->GetByteArrayElements(ENVPAR bkg, &isCopy); if (bkgP == NULL) { h5JNIFatalError(env, "H5Pset_buffer: bkg not pinned"); return -1; } } status = H5Pset_buffer((hid_t)plist, (size_t)size, tconvP, bkgP); if (status < 0) { if (tconv != NULL) ENVPTR->ReleaseByteArrayElements(ENVPAR tconv, tconvP, JNI_ABORT); if (bkg != NULL) ENVPTR->ReleaseByteArrayElements(ENVPAR bkg, bkgP, JNI_ABORT); h5libraryError(env); return -1; } if (tconv != NULL) ENVPTR->ReleaseByteArrayElements(ENVPAR tconv, tconvP, 0); if (bkg != NULL) ENVPTR->ReleaseByteArrayElements(ENVPAR bkg, bkgP, 0); return status; #endif } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_buffer * Signature: (I[B[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1buffer (JNIEnv *env, jclass clss, jint plist, jbyteArray tconv, jbyteArray bkg) { h5unimplemented(env, "H5Pset_buffer: not implemented"); return -1; #ifdef notdef /* DON'T IMPLEMENT THIS!!! */ jlong status = -1; jbyte *tconvP; jbyte *bkgP; jboolean isCopy; if (tconv == NULL) { h5nullArgument(env, "H5Pget_buffer: tconv input array is NULL"); return -1; } tconvP = ENVPTR->GetByteArrayElements(ENVPAR tconv, &isCopy); if (tconvP == NULL) { h5JNIFatalError(env, "H5Pget_buffer: tconv not pinned"); return -1; } if (bkg == NULL) { h5nullArgument(env, "H5Pget_buffer: bkg array is NULL"); return -1; } bkgP = ENVPTR->GetByteArrayElements(ENVPAR bkg, &isCopy); if (bkgP == NULL) { h5JNIFatalError(env, "H5Pget_buffer: bkg not pinned"); return -1; } status = H5Pget_buffer((hid_t)plist, tconvP, bkgP); if (status < 0) { ENVPTR->ReleaseByteArrayElements(ENVPAR tconv, tconvP, JNI_ABORT); ENVPTR->ReleaseByteArrayElements(ENVPAR bkg, bkgP, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseByteArrayElements(ENVPAR tconv, tconvP, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bkg, bkgP, 0); return status; #endif } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_buffer_size * Signature: (IJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1buffer_1size (JNIEnv *env, jclass clss, jint plist, jlong size) { herr_t status = -1; status = H5Pset_buffer((hid_t)plist, (size_t)size, NULL, NULL); if (status < 0) { h5libraryError(env); return; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_buffer_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1buffer_1size (JNIEnv *env, jclass clss, jint plist) { size_t size = -1; size = H5Pget_buffer((hid_t)plist, NULL, NULL); if (size < 0) { h5libraryError(env); return -1; } return (jlong)size; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_preserve * Signature: (IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1preserve (JNIEnv *env, jclass clss, jint plist, jboolean status) { hbool_t st; herr_t retVal = -1; if (status == JNI_TRUE) { st = TRUE; } else if (status == JNI_FALSE) { st = FALSE; } else { /* exception -- bad argument */ h5badArgument(env, "H5Pset_preserve: status not TRUE or FALSE"); return -1; } retVal = H5Pset_preserve((hid_t)plist, (hbool_t)st); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_preserve * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1preserve (JNIEnv *env, jclass clss, jint plist) { herr_t retValue = -1; retValue = H5Pget_preserve((hid_t)plist); if (retValue < 0) { h5libraryError(env); } return (jint)retValue; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_deflate * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1deflate (JNIEnv *env, jclass clss, jint plist, jint level) { herr_t retValue = -1; retValue = H5Pset_deflate((hid_t)plist, (int)level); if (retValue < 0) { h5libraryError(env); } return (jint)retValue; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_gc_references * Signature: (IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1gc_1references (JNIEnv *env, jclass clss, jint fapl_id, jboolean gc_ref) { herr_t retVal = -1; unsigned gc_ref_val; if (gc_ref == JNI_TRUE) { gc_ref_val = 1; } else { gc_ref_val = 0; } retVal = H5Pset_gc_references((hid_t)fapl_id, gc_ref_val); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_gc_references * Signature: (I[Z)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1gc_1references (JNIEnv *env, jclass clss, jint fapl_id, jbooleanArray gc_ref) { herr_t status; jboolean *theArray; jboolean isCopy; unsigned gc_ref_val = 0; if (gc_ref == NULL) { h5nullArgument(env, "H5Pget_gc_references: gc_ref input array is NULL"); return -1; } theArray = (jboolean *)ENVPTR->GetBooleanArrayElements(ENVPAR gc_ref, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_gc_references: gc_ref not pinned"); return -1; } status = H5Pget_gc_references((hid_t)fapl_id, (unsigned *)&gc_ref_val); if (status < 0) { ENVPTR->ReleaseBooleanArrayElements(ENVPAR gc_ref, theArray, JNI_ABORT); h5libraryError(env); return -1; } if (gc_ref_val == 1) { theArray[0] = JNI_TRUE; } else { theArray[0] = JNI_FALSE; } ENVPTR->ReleaseBooleanArrayElements(ENVPAR gc_ref, theArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_gcreferences * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1gcreferences (JNIEnv *env, jclass clss, jint fapl_id) { herr_t status; unsigned gc_ref_val = 0; status = H5Pget_gc_references((hid_t)fapl_id, (unsigned *)&gc_ref_val); if (status < 0) { h5libraryError(env); return JNI_FALSE; } if (gc_ref_val == 1) { return JNI_TRUE; } return JNI_FALSE; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_btree_ratios * Signature: (IDDD)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1btree_1ratios (JNIEnv *env, jclass clss, jint plist_id, jdouble left, jdouble middle, jdouble right) { herr_t status; status = H5Pset_btree_ratios((hid_t)plist_id, (double)left,(double)middle, (double)right); if (status < 0) { h5libraryError(env); return -1; } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_btree_ratios * Signature: (I[D[D[D)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1btree_1ratios (JNIEnv *env, jclass clss, jint plist_id, jdoubleArray left, jdoubleArray middle, jdoubleArray right) { herr_t status; jdouble *leftP; jdouble *middleP; jdouble *rightP; jboolean isCopy; if (left == NULL) { h5nullArgument(env, "H5Pget_btree_ratios: left input array is NULL"); return -1; } if (middle == NULL) { h5nullArgument(env, "H5Pget_btree_ratios: middle input array is NULL"); return -1; } if (right == NULL) { h5nullArgument(env, "H5Pget_btree_ratios: right input array is NULL"); return -1; } leftP = (jdouble *)ENVPTR->GetDoubleArrayElements(ENVPAR left, &isCopy); if (leftP == NULL) { h5JNIFatalError(env, "H5Pget_btree_ratios: left not pinned"); return -1; } middleP = (jdouble *)ENVPTR->GetDoubleArrayElements(ENVPAR middle, &isCopy); if (middleP == NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR left, leftP, JNI_ABORT); h5JNIFatalError(env, "H5Pget_btree_ratios: middle not pinned"); return -1; } rightP = (jdouble *)ENVPTR->GetDoubleArrayElements(ENVPAR right, &isCopy); if (rightP == NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR left, leftP, JNI_ABORT); ENVPTR->ReleaseDoubleArrayElements(ENVPAR middle, middleP, JNI_ABORT); h5JNIFatalError(env, "H5Pget_btree_ratios: middle not pinned"); return -1; } status = H5Pget_btree_ratios((hid_t)plist_id, (double *)leftP, (double *)middleP, (double *)rightP); if (status < 0) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR left, leftP, JNI_ABORT); ENVPTR->ReleaseDoubleArrayElements(ENVPAR middle, middleP, JNI_ABORT); ENVPTR->ReleaseDoubleArrayElements(ENVPAR right, rightP, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseDoubleArrayElements(ENVPAR left, leftP, 0); ENVPTR->ReleaseDoubleArrayElements(ENVPAR middle, middleP, 0); ENVPTR->ReleaseDoubleArrayElements(ENVPAR right, rightP, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_small_data_block_size * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1small_1data_1block_1size (JNIEnv *env, jclass clss, jint plist, jlong size) { long sz; herr_t retVal = -1; sz = (long)size; retVal = H5Pset_small_data_block_size((hid_t)plist, (hsize_t)sz); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_small_data_block_size * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1small_1data_1block_1size (JNIEnv *env, jclass clss, jint plist, jlongArray size) { herr_t status; jlong *theArray; jboolean isCopy; hsize_t s; if (size == NULL) { /* exception ? */ h5nullArgument(env, "H5Pget_small_user_block_size: size is NULL"); return -1; } theArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR size, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_userblock: size not pinned"); return -1; } status = H5Pget_small_data_block_size((hid_t)plist, &s); if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR size, theArray, JNI_ABORT); h5libraryError(env); return -1; } theArray[0] = s; ENVPTR->ReleaseLongArrayElements(ENVPAR size, theArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_small_data_block_size_long * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1small_1data_1block_1size_1long (JNIEnv *env, jclass clss, jint plist) { herr_t status; hsize_t s; status = H5Pget_small_data_block_size((hid_t)plist, &s); if (status < 0) { h5libraryError(env); return -1; } return (jlong)s; } /*************************************************************** * New APIs for HDF5.1.6 * ***************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_alloc_time * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1alloc_1time (JNIEnv *env, jclass clss, jint plist, jint alloc_time) { herr_t retVal = -1; retVal = H5Pset_alloc_time((hid_t)plist, (H5D_alloc_time_t)alloc_time); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_alloc_time * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1alloc_1time (JNIEnv *env, jclass clss, jint plist, jintArray alloc_time) { herr_t retVal = -1; jint *theArray; jboolean isCopy; H5D_alloc_time_t time; if (alloc_time == NULL) { /* exception ? */ h5nullArgument(env, "H5Pget_alloc_time: alloc_time is NULL"); return -1; } theArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR alloc_time, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_alloc_time: alloc_time not pinned"); return -1; } retVal = H5Pget_alloc_time((hid_t)plist, &time ); if (retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR alloc_time, theArray, JNI_ABORT); h5libraryError(env); return -1; } theArray[0] = time; ENVPTR->ReleaseIntArrayElements(ENVPAR alloc_time, theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fill_time * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fill_1time (JNIEnv *env, jclass clss, jint plist, jint fill_time) { herr_t retVal = -1; retVal = H5Pset_fill_time((hid_t)plist, (H5D_fill_time_t)fill_time); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fill_time * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fill_1time (JNIEnv *env, jclass clss, jint plist, jintArray fill_time) { herr_t retVal = -1; jint *theArray; jboolean isCopy; H5D_fill_time_t time; if (fill_time == NULL) { /* exception ? */ h5nullArgument(env, "H5Pget_fill_time: fill_time is NULL"); return -1; } theArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR fill_time, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_fill_time: fill_time not pinned"); return -1; } retVal = H5Pget_fill_time((hid_t)plist, &time); if (retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR fill_time, theArray, JNI_ABORT); h5libraryError(env); return -1; } theArray[0] = time; ENVPTR->ReleaseIntArrayElements(ENVPAR fill_time, theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pfill_value_defined * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pfill_1value_1defined (JNIEnv *env, jclass clss, jint plist, jintArray status) { herr_t retVal = -1; jint *theArray; jboolean isCopy; H5D_fill_value_t value; if (status == NULL) { /* exception ? */ h5nullArgument(env, "H5Pfill_value_defined: status is NULL"); return -1; } theArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR status, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pfill_value_defined: status not pinned"); return -1; } retVal = H5Pfill_value_defined((hid_t)plist, &value ); if (retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR status, theArray, JNI_ABORT); h5libraryError(env); return -1; } theArray[0] = value; ENVPTR->ReleaseIntArrayElements(ENVPAR status, theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fletcher32 * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fletcher32 (JNIEnv *env, jclass clss, jint plist) { herr_t retVal = -1; retVal = H5Pset_fletcher32((hid_t)plist); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_edc_check * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1edc_1check (JNIEnv *env, jclass clss, jint plist, jint check) { herr_t retVal = -1; retVal = H5Pset_edc_check((hid_t)plist, (H5Z_EDC_t)check); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_edc_check * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1edc_1check (JNIEnv *env, jclass clss, jint plist) { H5Z_EDC_t retVal = (H5Z_EDC_t)-1; retVal = H5Pget_edc_check((hid_t)plist); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_shuffle * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1shuffle (JNIEnv *env, jclass clss, jint plist) { herr_t retVal = -1; retVal = H5Pset_shuffle((hid_t)plist); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_szip * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1szip (JNIEnv *env, jclass clss, jint plist, jint options_mask, jint pixels_per_block) { herr_t retVal = -1; retVal = H5Pset_szip((hid_t)plist, (unsigned int)options_mask, (unsigned int)pixels_per_block); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_hyper_vector_size * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1hyper_1vector_1size (JNIEnv *env, jclass clss, jint plist, jlong vector_size) { herr_t retVal = -1; retVal = H5Pset_hyper_vector_size((hid_t)plist, (size_t)vector_size); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_hyper_vector_size * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1hyper_1vector_1size (JNIEnv *env, jclass clss, jint plist, jlongArray vector_size) { herr_t retVal = -1; jlong *theArray; size_t size; jboolean isCopy; if (vector_size == NULL) { /* exception ? */ h5nullArgument(env, "H5Pget_hyper_vector_size: vector_size is NULL"); return -1; } theArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR vector_size, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_hyper_vector_size: vector_size not pinned"); return -1; } retVal = H5Pget_hyper_vector_size((hid_t)plist, &size); if (retVal < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR vector_size, theArray, JNI_ABORT); h5libraryError(env); return -1; } theArray[0] = size; ENVPTR->ReleaseLongArrayElements(ENVPAR vector_size, theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pall_filters_avail * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pall_1filters_1avail (JNIEnv *env, jclass clss, jint dcpl_id) { htri_t bval; bval = H5Pall_filters_avail((hid_t)dcpl_id); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pmodify_filter * Signature: (IIIJ[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pmodify_1filter (JNIEnv *env, jclass clss, jint plist, jint filter, jint flags, jlong cd_nelmts, jintArray cd_values) { herr_t status; jint *cd_valuesP; jboolean isCopy; if (cd_values == NULL) { h5nullArgument(env, "H5Pmodify_filter: cd_values is NULL"); return -1; } cd_valuesP = ENVPTR->GetIntArrayElements(ENVPAR cd_values,&isCopy); if (cd_valuesP == NULL) { h5JNIFatalError(env, "H5Pmodify_filter: cd_values not pinned"); return -1; } status = H5Pmodify_filter((hid_t)plist, (H5Z_filter_t)filter,(const unsigned int)flags, (size_t)cd_nelmts, (unsigned int *)cd_valuesP); ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesP, JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_filter_by_id * Signature: (II[I[J[IJ[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1filter_1by_1id (JNIEnv *env, jclass clss, jint plist, jint filter, jintArray flags, jlongArray cd_nelmts, jintArray cd_values, jlong namelen, jobjectArray name) { herr_t status; jint *cd_valuesArray; jint *flagsArray; jlong *cd_nelmtsArray; jboolean isCopy; jstring str; char *aName; int i = 0; int rank; long bs; bs = (long)namelen; if (bs <= 0) { h5badArgument(env, "H5Pget_filter_by_id: namelen <= 0"); return -1; } if (flags == NULL) { h5nullArgument(env, "H5Pget_filter_by_id: flags is NULL"); return -1; } if (cd_nelmts == NULL) { h5nullArgument(env, "H5Pget_filter_by_id: cd_nelms is NULL"); return -1; } if (cd_values == NULL) { h5nullArgument(env, "H5Pget_filter_by_id: cd_values is NULL"); return -1; } if (name == NULL) { h5nullArgument(env, "H5Pget_filter_by_id: name is NULL"); return -1; } aName = (char*)malloc(sizeof(char)*bs); if (aName == NULL) { h5outOfMemory(env, "H5Pget_filter_by_id: malloc failed"); return -1; } flagsArray = ENVPTR->GetIntArrayElements(ENVPAR flags, &isCopy); if (flagsArray == NULL) { free(aName); h5JNIFatalError(env, "H5Pget_filter_by_id: flags not pinned"); return -1; } cd_nelmtsArray = ENVPTR->GetLongArrayElements(ENVPAR cd_nelmts, &isCopy); if (cd_nelmtsArray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); free(aName); h5JNIFatalError(env, "H5Pget_filter_by_id: cd_nelms not pinned"); return -1; } cd_valuesArray = ENVPTR->GetIntArrayElements(ENVPAR cd_values, &isCopy); rank = ENVPTR->GetArrayLength(ENVPAR cd_values); if (cd_valuesArray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, JNI_ABORT); free(aName); h5JNIFatalError(env, "H5Pget_filter_by_id: cd_values array not converted to unsigned int."); return -1; } { /* direct cast (size_t *)variable fails on 32-bit environment */ long long cd_nelmts_temp = *(cd_nelmtsArray); size_t cd_nelmts_t = (size_t)cd_nelmts_temp; unsigned int filter_config; status = H5Pget_filter_by_id2( (hid_t)plist, (H5Z_filter_t)filter, (unsigned int *)flagsArray, &cd_nelmts_t, (unsigned int *)cd_valuesArray, (size_t)namelen, (char *)aName, &filter_config); *cd_nelmtsArray = cd_nelmts_t; } if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, JNI_ABORT); free(aName); h5libraryError(env); return -1; } str = ENVPTR->NewStringUTF(ENVPAR aName); ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, 0); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, 0); free(aName); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fclose_degree * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fclose_1degree (JNIEnv *env, jclass clss, jint plist, jint fc_degree) { herr_t retVal = -1; retVal = H5Pset_fclose_degree((hid_t)plist, (H5F_close_degree_t)fc_degree); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fclose_degree * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fclose_1degree (JNIEnv *env, jclass clss, jint plist) { H5F_close_degree_t degree; herr_t retVal = -1; retVal = H5Pget_fclose_degree((hid_t)plist, °ree); if (retVal < 0) { h5libraryError(env); } return (jint)degree; } /********************************************************************** * * * File access properties * * * **********************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_family * Signature: (IJI)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1family (JNIEnv *env, jclass clss, jint plist, jlong memb_size, jint memb_plist) { long ms; herr_t retVal = -1; ms = (long)memb_size; retVal = H5Pset_fapl_family((hid_t)plist, (hsize_t)ms, (hid_t)memb_plist); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fapl_family * Signature: (I[J[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fapl_1family (JNIEnv *env, jclass clss, jint tid, jlongArray memb_size, jintArray memb_plist) { herr_t status; jlong *sizeArray; jint *plistArray; jboolean isCopy; hsize_t *sa; int i; int rank; if (memb_size == NULL) { h5nullArgument(env, "H5Pget_family: memb_size is NULL"); return -1; } if (memb_plist == NULL) { h5nullArgument(env, "H5Pget_family: memb_plist is NULL"); return -1; } sizeArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR memb_size, &isCopy); if (sizeArray == NULL) { h5JNIFatalError(env, "H5Pget_family: sizeArray not pinned"); return -1; } rank = ENVPTR->GetArrayLength(ENVPAR memb_size); sa = (hsize_t *)malloc( rank * sizeof(hsize_t)); if (sa == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR memb_size, sizeArray, JNI_ABORT); h5JNIFatalError(env, "H5Screate-simple: dims not converted to hsize_t"); return -1; } plistArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR memb_plist, &isCopy); if (plistArray == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR memb_size, sizeArray, JNI_ABORT); h5JNIFatalError(env, "H5Pget_family: plistArray not pinned"); return -1; } status = H5Pget_fapl_family ((hid_t)tid, sa, (hid_t *)plistArray); if (status < 0) { free(sa); ENVPTR->ReleaseLongArrayElements(ENVPAR memb_size, sizeArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR memb_plist, plistArray, JNI_ABORT); h5libraryError(env); return -1; } for (i = 0; i < rank; i++) { sizeArray[i] = sa[i]; } free(sa); ENVPTR->ReleaseLongArrayElements(ENVPAR memb_size, sizeArray, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR memb_plist, plistArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_core * Signature: (IJZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1core (JNIEnv *env, jclass clss, jint fapl_id, jlong increment, jboolean backing_store) { herr_t retVal = -1; retVal = H5Pset_fapl_core((hid_t)fapl_id, (size_t)increment, (hbool_t)backing_store); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fapl_core * Signature: (I[J[Z)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fapl_1core (JNIEnv *env, jclass clss, jint fapl_id, jlongArray increment, jbooleanArray backing_store) { herr_t status; jlong *incArray; jboolean *backArray; jboolean isCopy; if (increment == NULL) { h5nullArgument(env, "H5Pget_fapl_core: increment is NULL"); return -1; } if (backing_store == NULL) { h5nullArgument(env, "H5Pget_fapl_core: backing_store is NULL"); return -1; } incArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR increment, &isCopy); if (incArray == NULL) { h5JNIFatalError(env, "H5Pget_fapl_core: incArray not pinned"); return -1; } backArray = (jboolean *)ENVPTR->GetBooleanArrayElements(ENVPAR backing_store, &isCopy); if (backArray == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR increment, incArray, JNI_ABORT); h5JNIFatalError(env, "H5Pget_fapl_core: backArray not pinned"); return -1; } { /* direct cast (size_t *)variable fails on 32-bit environment */ long long inc_temp = *(incArray); size_t inc_t = (size_t)inc_temp; status = H5Pget_fapl_core((hid_t)fapl_id, &inc_t, (hbool_t *)backArray); *incArray = inc_t; } if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR increment, incArray, JNI_ABORT); ENVPTR->ReleaseBooleanArrayElements(ENVPAR backing_store, backArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseLongArrayElements(ENVPAR increment, incArray, 0); ENVPTR->ReleaseBooleanArrayElements(ENVPAR backing_store, backArray, 0); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_family_offset * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1family_1offset (JNIEnv *env, jclass clss, jint fapl_id, jlong offset) { herr_t retVal = -1; retVal = H5Pset_family_offset ((hid_t)fapl_id, (hsize_t)offset); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_family_offset * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1family_1offset (JNIEnv *env, jclass clss, jint fapl_id) { hsize_t offset = -1; herr_t retVal = -1; retVal = H5Pget_family_offset ((hid_t)fapl_id, &offset); if (retVal < 0) { h5libraryError(env); } return (jlong)offset; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_log * Signature: (ILjava/lang/String;JJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1log (JNIEnv *env, jclass clss, jint fapl_id, jstring logfile, jlong flags, jlong buf_size) { herr_t retVal = -1; char *pLogfile; jboolean isCopy; if (logfile == NULL) { h5nullArgument(env, "H5Pset_fapl_log: logfile is NULL"); return; } pLogfile = (char *)ENVPTR->GetStringUTFChars(ENVPAR logfile, &isCopy); if (pLogfile == NULL) { h5JNIFatalError(env, "H5Pset_fapl_log: logfile not pinned"); return; } #if (H5_VERS_RELEASE > 6) /* H5_VERSION_GE(1,8,7) */ retVal = H5Pset_fapl_log( (hid_t)fapl_id, (const char *)pLogfile, (unsigned long long)flags, (size_t)buf_size ); #else retVal = H5Pset_fapl_log( (hid_t)fapl_id, (const char *)pLogfile, (unsigned int)flags, (size_t)buf_size ); #endif if (retVal < 0) { h5libraryError(env); } ENVPTR->ReleaseStringUTFChars(ENVPAR logfile, pLogfile); if (retVal < 0) { h5libraryError(env); } return; } /********************************************************************** * * * New functions release 1.6.3 versus release 1.6.2 * * * **********************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Premove_filter * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5P1remove_1filter (JNIEnv *env, jclass clss, jint obj_id, jint filter) { herr_t status; status = H5Premove_filter ((hid_t)obj_id, (H5Z_filter_t)filter); if (status < 0) { h5libraryError(env); } return status; } /********************************************************************** * * Modified by Peter Cao on July 26, 2006: Some of the Generic Property APIs have callback function pointers, which Java does not support. Only the Generic Property APIs without function pointers are implemented * * **********************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset (JNIEnv *env, jclass clss, jint plid, jstring name, jint val) { char *cstr; jboolean isCopy; hid_t retVal = -1; if (name == NULL) { h5nullArgument(env, "H5Pset: name is NULL"); return -1; } cstr = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (cstr == NULL) { h5JNIFatalError(env, "H5Pset: name not pinned"); return -1; } retVal = H5Pset((hid_t)plid, cstr, &val); ENVPTR->ReleaseStringUTFChars(ENVPAR name, cstr); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pexist * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pexist (JNIEnv *env, jclass clss, jint plid, jstring name) { char *cstr; jboolean isCopy; hid_t retVal = -1; if (name == NULL) { h5nullArgument(env, "H5Pexist: name is NULL"); return -1; } cstr = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (cstr == NULL) { h5JNIFatalError(env, "H5Pexist: name not pinned"); return -1; } retVal = H5Pexist((hid_t)plid, cstr); ENVPTR->ReleaseStringUTFChars(ENVPAR name, cstr); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_size * Signature: (ILjava/lang/String;)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1size (JNIEnv *env, jclass clss, jint plid, jstring name) { char *cstr; jboolean isCopy; hid_t retVal = -1; size_t size; if (name == NULL) { h5nullArgument( env, "H5Pget_size: name is NULL"); return -1; } cstr = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (cstr == NULL) { h5JNIFatalError( env, "H5Pget_size: name not pinned"); return -1; } retVal = H5Pget_size((hid_t)plid, cstr, &size); ENVPTR->ReleaseStringUTFChars(ENVPAR name, cstr); if (retVal < 0) { h5libraryError(env); } return (jlong) size; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_nprops * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1nprops (JNIEnv *env, jclass clss, jint plid) { hid_t retVal = -1; size_t nprops; retVal = H5Pget_nprops((hid_t)plid, &nprops); if (retVal < 0) { h5libraryError(env); } return (jlong)nprops; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_class_name * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1class_1name (JNIEnv *env, jclass clss, jint plid) { char *c_str; jstring j_str; c_str = H5Pget_class_name((hid_t)plid); if (c_str == NULL) { h5libraryError(env); return NULL; } j_str = ENVPTR->NewStringUTF(ENVPAR c_str); H5free_memory(c_str); if (j_str == NULL) { h5JNIFatalError(env,"H5Pget_class_name: return string failed"); } return j_str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_class_parent * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1class_1parent (JNIEnv *env, jclass clss, jint plid) { hid_t retVal = -1; retVal = H5Pget_class_parent((hid_t)plid); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pisa_class * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pisa_1class (JNIEnv *env, jclass clss, jint plid, jint pcls) { htri_t retVal = -1; retVal = H5Pisa_class((hid_t)plid, (hid_t)pcls); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget (JNIEnv *env, jclass clss, jint plid, jstring name) { char *cstr; jboolean isCopy; jint val; herr_t retVal = -1; if (name == NULL) { h5nullArgument(env, "H5Pget: name is NULL"); return -1; } cstr = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (cstr == NULL) { h5JNIFatalError(env, "H5Pget: name not pinned"); return -1; } retVal = H5Pget((hid_t)plid, cstr, &val); ENVPTR->ReleaseStringUTFChars(ENVPAR name, cstr); if (retVal < 0) { h5libraryError(env); } return (jint)val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pequal * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pequal (JNIEnv *env, jclass clss, jint plid1, jint plid2) { htri_t retVal = -1; retVal = H5Pequal((hid_t)plid1, (hid_t)plid2); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pcopy_prop * Signature: (IILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pcopy_1prop (JNIEnv *env, jclass clss, jint dst_plid, jint src_plid, jstring name) { char *cstr; jboolean isCopy; herr_t retVal = -1; if (name == NULL) { h5nullArgument(env, "H5Pcopy_prop: name is NULL"); return -1; } cstr = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (cstr == NULL) { h5JNIFatalError(env, "H5Pcopy_prop: name not pinned"); return -1; } retVal = H5Pcopy_prop((hid_t)dst_plid, (hid_t)src_plid, cstr); ENVPTR->ReleaseStringUTFChars(ENVPAR name, cstr); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Premove * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Premove (JNIEnv *env, jclass clss, jint plid, jstring name) { char *cstr; jboolean isCopy; herr_t retVal = -1; if (name == NULL) { h5nullArgument(env, "H5Premove: name is NULL"); return -1; } cstr = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (cstr == NULL) { h5JNIFatalError(env, "H5Premove: name not pinned"); return -1; } retVal = H5Premove((hid_t)plid, cstr); ENVPTR->ReleaseStringUTFChars(ENVPAR name, cstr); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Punregister * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Punregister (JNIEnv *env, jclass clss, jint plid, jstring name) { char *cstr; jboolean isCopy; herr_t retVal = -1; if (name == NULL) { h5nullArgument(env, "H5Punregister: name is NULL"); return -1; } cstr = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (cstr == NULL) { h5JNIFatalError(env, "H5Punregister: name not pinned"); return -1; } retVal = H5Punregister((hid_t)plid, cstr); ENVPTR->ReleaseStringUTFChars(ENVPAR name, cstr); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pclose_list * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pclose_1class (JNIEnv *env, jclass clss, jint plid) { herr_t retVal = -1; retVal = H5Pclose_class((hid_t)plid); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_filter2 * Signature: (II[I[J[IJ[Ljava/lang/String;[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1filter2 (JNIEnv *env, jclass clss, jint plist, jint filter_number, jintArray flags, jlongArray cd_nelmts, jintArray cd_values, jlong namelen, jobjectArray name, jintArray filter_config) { herr_t status; jint *flagsArray; jlong *cd_nelmtsArray; jint *cd_valuesArray; jint *filter_configArray; jboolean isCopy; char *filter; jstring str; if (namelen <= 0) { h5badArgument(env, "H5Pget_filter: namelen <= 0"); return -1; } if (flags == NULL) { h5badArgument(env, "H5Pget_filter: flags is NULL"); return -1; } if (cd_nelmts == NULL) { h5badArgument(env, "H5Pget_filter: cd_nelmts is NULL"); return -1; } if (filter_config == NULL) { h5badArgument(env, "H5Pget_filter: filter_config is NULL"); return -1; } filter = (char *)malloc(sizeof(char)*(size_t)namelen); if (filter == NULL) { h5outOfMemory(env, "H5Pget_filter: namelent malloc failed"); return -1; } flagsArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR flags, &isCopy); if (flagsArray == NULL) { free(filter); h5JNIFatalError(env, "H5Pget_filter: flags array not pinned"); return -1; } cd_nelmtsArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR cd_nelmts, &isCopy); if (cd_nelmtsArray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); free(filter); h5JNIFatalError(env, "H5Pget_filter: nelmts array not pinned"); return -1; } filter_configArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR filter_config, &isCopy); if (filter_configArray == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); free(filter); h5JNIFatalError(env, "H5Pget_filter: filter_config array not pinned"); return -1; } if (*cd_nelmtsArray == 0 && cd_values == NULL) { /* direct cast (size_t *)variable fails on 32-bit environment */ long long cd_nelmts_temp = 0; size_t cd_nelmts_t = (size_t)cd_nelmts_temp; status = H5Pget_filter2((hid_t)plist, (int)filter_number, (unsigned int *)flagsArray, &cd_nelmts_t, NULL, (size_t)namelen, filter, (unsigned int *)filter_configArray); *cd_nelmtsArray = cd_nelmts_t; } else { if (cd_values == NULL) { h5badArgument(env, "H5Pget_filter: cd_values is NULL"); return -1; } cd_valuesArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR cd_values, &isCopy); if (cd_valuesArray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR filter_config, filter_configArray, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); free(filter); h5JNIFatalError(env, "H5Pget_filter: elmts array not pinned"); return -1; } { /* direct cast (size_t *)variable fails on 32-bit environment */ long long cd_nelmts_temp = *(cd_nelmtsArray); size_t cd_nelmts_t = (size_t)cd_nelmts_temp; status = H5Pget_filter2((hid_t)plist, (int)filter_number, (unsigned int *)flagsArray, &cd_nelmts_t, (unsigned int *)cd_valuesArray, (size_t)namelen, filter, (unsigned int *)filter_configArray); *cd_nelmtsArray = cd_nelmts_t; } } if (status < 0) { if (cd_values) ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR filter_config, filter_configArray, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); free(filter); h5libraryError(env); return -1; } if (cd_values) ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR filter_config, filter_configArray, 0); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, 0); /* NewStringUTF may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR filter); if (str == NULL) { free(filter); h5JNIFatalError(env, "H5Pget_filter: return string not pinned"); return -1; } /* SetObjectArrayElement may throw exceptiosn */ ENVPTR->SetObjectArrayElement(ENVPAR name, 0, (jobject)str); free(filter); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_filter_by_id2 * Signature: (II[I[J[IJ[Ljava/lang/String;[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1filter_1by_1id2 (JNIEnv *env, jclass clss, jint plist, jint filter, jintArray flags, jlongArray cd_nelmts, jintArray cd_values, jlong namelen, jobjectArray name, jintArray filter_config) { herr_t status; int i = 0; jint *cd_valuesArray; jint *flagsArray; jint *filter_configArray; jlong *cd_nelmtsArray; jboolean isCopy; long bs; char *aName; jstring str; bs = (long)namelen; if (bs <= 0) { h5badArgument(env, "H5Pget_filter_by_id: namelen <= 0"); return -1; } if (flags == NULL) { h5nullArgument(env, "H5Pget_filter_by_id: flags is NULL"); return -1; } if (cd_nelmts == NULL) { h5nullArgument(env, "H5Pget_filter_by_id: cd_nelms is NULL"); return -1; } if (cd_values == NULL) { h5nullArgument(env, "H5Pget_filter_by_id: cd_values is NULL"); return -1; } if (name == NULL) { h5nullArgument(env, "H5Pget_filter_by_id: name is NULL"); return -1; } if (filter_config == NULL) { h5badArgument(env, "H5Pget_filter_by_id: filter_config is NULL"); return -1; } aName = (char*)malloc(sizeof(char)*bs); if (aName == NULL) { h5outOfMemory(env, "H5Pget_filter_by_id: malloc failed"); return -1; } flagsArray = ENVPTR->GetIntArrayElements(ENVPAR flags,&isCopy); if (flagsArray == NULL) { free(aName); h5JNIFatalError(env, "H5Pget_filter_by_id: flags not pinned"); return -1; } cd_nelmtsArray = ENVPTR->GetLongArrayElements(ENVPAR cd_nelmts, &isCopy); if (cd_nelmtsArray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); free(aName); h5JNIFatalError(env, "H5Pget_filter_by_id: cd_nelms not pinned"); return -1; } cd_valuesArray = ENVPTR->GetIntArrayElements(ENVPAR cd_values, &isCopy); if (cd_valuesArray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); free(aName); h5JNIFatalError(env, "H5Pget_filter_by_id: cd_values array not converted to unsigned int."); return -1; } filter_configArray = ENVPTR->GetIntArrayElements(ENVPAR filter_config, &isCopy); if (filter_configArray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, JNI_ABORT); free(aName); h5JNIFatalError(env, "H5Pget_filter_by_id: flags not pinned"); return -1; } { /* direct cast (size_t *)variable fails on 32-bit environment */ long long cd_nelmts_temp = *(cd_nelmtsArray); size_t cd_nelmts_t = (size_t)cd_nelmts_temp; status = H5Pget_filter_by_id2((hid_t)plist, (H5Z_filter_t)filter, (unsigned int *)flagsArray, &cd_nelmts_t, (unsigned int *)cd_valuesArray, (size_t)namelen, (char *)aName, (unsigned int *)filter_configArray); *cd_nelmtsArray = cd_nelmts_t; } if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR filter_config, filter_configArray, JNI_ABORT); free(aName); h5libraryError(env); return -1; } str = ENVPTR->NewStringUTF(ENVPAR aName); ENVPTR->ReleaseIntArrayElements(ENVPAR flags, flagsArray, 0); ENVPTR->ReleaseLongArrayElements(ENVPAR cd_nelmts, cd_nelmtsArray, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR cd_values, cd_valuesArray, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR filter_config, filter_configArray, 0); free(aName); return (jint)status; } /********************************************************************** * * * New functions release 1.8.0 * * * **********************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_nlinks * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1nlinks (JNIEnv *env, jclass clss, jint lapl_id) { herr_t retVal = -1; size_t nlinks; retVal = H5Pget_nlinks((hid_t)lapl_id, &nlinks); if (retVal < 0) { h5libraryError(env); } return (jlong) nlinks; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_nlinks * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1nlinks (JNIEnv *env, jclass clss, jint lapl_id, jlong nlinks) { herr_t retVal = -1; if (nlinks <= 0) { h5badArgument(env, "H5Pset_1nlinks: nlinks_l <= 0"); return -1; } retVal = H5Pset_nlinks((hid_t)lapl_id, (size_t)nlinks); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_libver_bounds * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1libver_1bounds (JNIEnv *env, jclass clss, jint fapl_id, jintArray libver) { herr_t retVal = -1; H5F_libver_t *theArray = NULL; jboolean isCopy; if (libver == NULL) { h5nullArgument(env, "H5Pget_libver_bounds: libversion bounds is NULL"); return -1; } theArray = (H5F_libver_t *)ENVPTR->GetIntArrayElements(ENVPAR libver, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_libver_bounds: input not pinned"); return -1; } retVal = H5Pget_libver_bounds((hid_t)fapl_id, &(theArray[0]), &(theArray[1])); if(retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR libver, (jint *)theArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR libver, (jint *)theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_libver_bounds * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1libver_1bounds (JNIEnv *env, jclass clss, jint fapl_id, jint low, jint high) { herr_t retVal = -1; if ((H5F_libver_t)high != H5F_LIBVER_LATEST) { h5badArgument(env, "H5Pset_libver_bounds: invalid high library version bound"); return -1; } if(((H5F_libver_t)low !=H5F_LIBVER_EARLIEST) && ((H5F_libver_t)low != H5F_LIBVER_LATEST)) { h5badArgument(env, "H5Pset_libver_bounds: invalid low library version bound"); return -1; } retVal = H5Pset_libver_bounds((hid_t)fapl_id, (H5F_libver_t)low, (H5F_libver_t)high); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_link_creation_order * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1link_1creation_1order (JNIEnv *env, jclass clss, jint gcpl_id) { herr_t retVal = -1; unsigned crt_order_flags; retVal = H5Pget_link_creation_order((hid_t)gcpl_id, &crt_order_flags); if(retVal < 0) { h5libraryError(env); } return (jint)crt_order_flags; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_link_creation_order * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1link_1creation_1order (JNIEnv *env, jclass clss, jint gcpl_id, jint crt_order_flags) { herr_t retVal = -1; retVal = H5Pset_link_creation_order((hid_t)gcpl_id, crt_order_flags); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_attr_creation_order * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1attr_1creation_1order (JNIEnv *env, jclass clss, jint ocpl_id) { herr_t retVal = -1; unsigned crt_order_flags; retVal = H5Pget_attr_creation_order((hid_t)ocpl_id, &crt_order_flags); if(retVal < 0) { h5libraryError(env); } return (jint)crt_order_flags; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_attr_creation_order * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1attr_1creation_1order (JNIEnv *env, jclass clss, jint ocpl_id, jint crt_order_flags) { herr_t retVal = -1; retVal = H5Pset_attr_creation_order((hid_t)ocpl_id, crt_order_flags); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_copy_object * Signature: (II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1copy_1object (JNIEnv *env, jclass clss, jint ocp_plist_id, jint copy_options) { herr_t retVal = -1; retVal = H5Pset_copy_object((hid_t)ocp_plist_id, (unsigned)copy_options); if(retVal < 0) { h5libraryError(env); } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_copy_object * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1copy_1object (JNIEnv *env, jclass clss, jint ocp_plist_id) { herr_t retVal = -1; unsigned copy_options; retVal = H5Pget_copy_object((hid_t)ocp_plist_id, ©_options); if(retVal < 0) { h5libraryError(env); } return (jint)copy_options; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_create_intermediate_group * Signature: (IZ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1create_1intermediate_1group (JNIEnv *env, jclass clss, jint lcpl_id, jboolean crt_intermed_group) { herr_t retVal = -1; retVal = H5Pset_create_intermediate_group((hid_t)lcpl_id, (unsigned)crt_intermed_group); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_create_intermediate_group * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1create_1intermediate_1group (JNIEnv *env, jclass clss, jint lcpl_id) { herr_t retVal = -1; unsigned crt_intermed_group; retVal = H5Pget_create_intermediate_group((hid_t)lcpl_id, &crt_intermed_group); if(retVal < 0) { h5libraryError(env); } return (jboolean)crt_intermed_group; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_data_transform * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1data_1transform (JNIEnv *env, jclass clss, jint plist_id, jstring expression) { herr_t retVal = -1; char *express; jboolean isCopy; if (expression == NULL) { h5nullArgument(env, "H5Pset_data_transform: expression is NULL"); return -1; } express = (char *)ENVPTR->GetStringUTFChars(ENVPAR expression, &isCopy); if (express == NULL) { h5JNIFatalError(env, "H5Pset_data_transform: expression is not pinned"); return -1; } retVal = H5Pset_data_transform((hid_t)plist_id, (const char*)express); ENVPTR->ReleaseStringUTFChars(ENVPAR expression, express); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_data_transform * Signature: (I[Ljava/lang/String;J)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1data_1transform (JNIEnv *env, jclass clss, jint plist_id, jobjectArray expression, jlong size) { ssize_t buf_size; char *express; jlong express_size; jstring str = NULL; if (size <= 0) { h5badArgument(env, "H5Pget_data_transform: size <= 0"); return -1; } express_size = (jlong)H5Pget_data_transform((hid_t)plist_id, (char*)NULL, (size_t)size); if(express_size < 0) { h5libraryError(env); return -1; } buf_size = (ssize_t)express_size + 1;/* add extra space for the null terminator */ express = (char*)malloc(sizeof(char)*buf_size); if (express == NULL) { h5outOfMemory(env, "H5Pget_data_transform: malloc failed "); return -1; } express_size = (jlong)H5Pget_data_transform((hid_t)plist_id, (char*)express, (size_t)size); if (express_size < 0) { free(express); h5libraryError(env); return -1; } str = ENVPTR->NewStringUTF(ENVPAR express); if (str == NULL) { /* exception -- fatal JNI error */ free(express); h5JNIFatalError(env, "H5Pget_data_transform: return string not created"); return -1; } ENVPTR->SetObjectArrayElement(ENVPAR expression, 0, str); free(express); return express_size; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_elink_acc_flags * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1elink_1acc_1flags (JNIEnv *env, jclass clss, jint lapl_id) { herr_t status; unsigned flags; status = H5Pget_elink_acc_flags((hid_t)lapl_id, &flags); if(status < 0) { h5libraryError(env); } return (jint)flags; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_elink_acc_flags * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1elink_1acc_1flags (JNIEnv *env, jclass clss, jint lapl_id, jint flags) { herr_t retVal; if (((unsigned) flags != H5F_ACC_RDWR) && ((unsigned) flags != H5F_ACC_RDONLY) && ((unsigned) flags != H5F_ACC_DEFAULT)) { h5badArgument(env, "H5Pset_elink_acc_flags: invalid flags value"); return -1; } retVal = H5Pset_elink_acc_flags((hid_t)lapl_id, (unsigned)flags); if (retVal < 0) { h5libraryError(env); } return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_link_phase_change * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1link_1phase_1change (JNIEnv *env, jclass clss, jint gcpl_id, jint max_compact, jint min_dense) { herr_t retVal; if(max_compact < min_dense) { h5badArgument(env, "H5Pset_link_phase_change: max compact value must be >= min dense value"); return -1; } if(max_compact > 65535) { h5badArgument(env, "H5Pset_link_phase_change: max compact value must be < 65536"); return -1; } if(min_dense > 65535) { h5badArgument(env, "H5Pset_link_phase_change: min dense value must be < 65536"); return -1; } retVal = H5Pset_link_phase_change((hid_t)gcpl_id, (unsigned)max_compact, (unsigned)min_dense); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_link_phase_change * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1link_1phase_1change (JNIEnv *env, jclass clss, jint gcpl_id, jintArray links) { herr_t retVal = -1; unsigned *theArray = NULL; jboolean isCopy; if (links == NULL) { h5nullArgument( env, "H5Pget_link_phase_change: links is NULL"); return -1; } theArray = (unsigned *)ENVPTR->GetIntArrayElements(ENVPAR links, &isCopy); if (theArray == NULL) { h5JNIFatalError( env, "H5Pget_link_phase_change: input not pinned"); return -1; } retVal = H5Pget_link_phase_change((hid_t)gcpl_id, &(theArray[0]), &(theArray[1])); if(retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR links, (jint *)theArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR links, (jint *)theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_attr_phase_change * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1attr_1phase_1change (JNIEnv *env, jclass clss, jint ocpl_id, jintArray attributes) { herr_t retVal = -1; unsigned *theArray = NULL; jboolean isCopy; if (attributes == NULL) { h5nullArgument(env, "H5Pget_attr_phase_change: attributes is NULL"); return -1; } theArray = (unsigned *)ENVPTR->GetIntArrayElements(ENVPAR attributes, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_attr_phase_change: input not pinned"); return -1; } retVal = H5Pget_attr_phase_change((hid_t)ocpl_id, &(theArray[0]), &(theArray[1])); if(retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR attributes, (jint *)theArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR attributes, (jint *)theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_shared_mesg_phase_change * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1shared_1mesg_1phase_1change (JNIEnv *env, jclass clss, jint fcpl_id, jintArray size) { herr_t retVal = -1; unsigned *theArray = NULL; jboolean isCopy; if (size == NULL) { h5nullArgument(env, "H5Pget_shared_mesg_phase_change: size is NULL"); return -1; } theArray = (unsigned *)ENVPTR->GetIntArrayElements(ENVPAR size, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_shared_mesg_phase_change: input not pinned"); return -1; } retVal = H5Pget_shared_mesg_phase_change((hid_t)fcpl_id, &(theArray[0]), &(theArray[1])); if(retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR size, (jint *)theArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR size, (jint *)theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_shared_mesg_phase_change * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1shared_1mesg_1phase_1change (JNIEnv *env, jclass clss, jint fcpl_id, jint max_list, jint min_btree) { herr_t retVal; /* Check that values are sensible. The min_btree value must be no greater * than the max list plus one. * * Range check to make certain they will fit into encoded form. */ if(max_list + 1 < min_btree) { h5badArgument(env, "H5Pset_shared_mesg_phase_change: minimum B-tree value is greater than maximum list value"); return -1; } if(max_list > H5O_SHMESG_MAX_LIST_SIZE) { h5badArgument(env, "H5Pset_shared_mesg_phase_change: max list value is larger than H5O_SHMESG_MAX_LIST_SIZE"); return -1; } if(min_btree > H5O_SHMESG_MAX_LIST_SIZE) { h5badArgument(env, "H5Pset_shared_mesg_phase_change: min btree value is larger than H5O_SHMESG_MAX_LIST_SIZE"); return -1; } retVal = H5Pset_shared_mesg_phase_change((hid_t)fcpl_id, (unsigned)max_list, (unsigned)min_btree); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_shared_mesg_nindexes * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1shared_1mesg_1nindexes (JNIEnv *env, jclass clss, jint fcpl_id) { herr_t status; unsigned nindexes; status = H5Pget_shared_mesg_nindexes((hid_t)fcpl_id, &nindexes); if(status < 0) { h5libraryError(env); } return (jint)nindexes; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_shared_mesg_nindexes * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1shared_1mesg_1nindexes (JNIEnv *env, jclass clss, jint plist_id, jint nindexes) { herr_t retVal; if (nindexes > H5O_SHMESG_MAX_NINDEXES) { h5badArgument(env, "H5Pset_shared_mesg_nindexes: number of indexes is greater than H5O_SHMESG_MAX_NINDEXES"); return -1; } retVal = H5Pset_shared_mesg_nindexes((hid_t)plist_id, (unsigned)nindexes); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_shared_mesg_index * Signature: (IIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1shared_1mesg_1index (JNIEnv *env, jclass clss, jint fcpl_id, jint index_num, jint mesg_type_flags, jint min_mesg_size) { herr_t retVal; unsigned nindexes;/* Number of SOHM indexes */ /* Check arguments */ if(mesg_type_flags > H5O_SHMESG_ALL_FLAG) { h5badArgument(env, "H5Pset_shared_mesg_index: unrecognized flags in mesg_type_flags"); return -1; } /* Read the current number of indexes */ if(H5Pget_shared_mesg_nindexes((hid_t)fcpl_id, &nindexes) < 0) { h5libraryError(env); } /* Range check */ if((unsigned)index_num >= nindexes) { h5badArgument(env, "H5Pset_shared_mesg_index: index_num is too large; no such index"); return -1; } retVal = H5Pset_shared_mesg_index((hid_t)fcpl_id, (unsigned)index_num, (unsigned) mesg_type_flags, (unsigned) min_mesg_size); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_shared_mesg_index * Signature: (II[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1shared_1mesg_1index (JNIEnv *env, jclass clss, jint fcpl_id, jint index_num, jintArray mesg_info) { herr_t retVal = -1; unsigned nindexes;/* Number of SOHM indexes */ unsigned *theArray = NULL; jboolean isCopy; /* Read the current number of indexes */ if(H5Pget_shared_mesg_nindexes((hid_t)fcpl_id, &nindexes)<0) { h5libraryError(env); } /* Range check */ if((unsigned)index_num >= nindexes) { h5badArgument(env, "H5Pget_shared_mesg_index: index_num is too large; no such index"); return -1; } if (mesg_info == NULL) { h5nullArgument(env, "H5Pget_shared_mesg_index: mesg_info is NULL"); return -1; } theArray = (unsigned *)ENVPTR->GetIntArrayElements(ENVPAR mesg_info, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_shared_mesg_index: input not pinned"); return -1; } retVal = H5Pget_shared_mesg_index((hid_t)fcpl_id, (unsigned)index_num, &(theArray[0]), &(theArray[1])); if(retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR mesg_info, (jint *)theArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR mesg_info, (jint *)theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_local_heap_size_hint * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1local_1heap_1size_1hint (JNIEnv *env, jclass clss, jint gcpl_id, jlong size_hint) { herr_t retVal = -1; retVal = H5Pset_local_heap_size_hint((hid_t)gcpl_id, (size_t)size_hint); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_local_heap_size_hint * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1local_1heap_1size_1hint (JNIEnv *env, jclass clss, jint gcpl_id) { herr_t status; size_t size_hint; status = H5Pget_local_heap_size_hint((hid_t)gcpl_id, &size_hint); if(status < 0) { h5libraryError(env); } return (jlong)size_hint; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_nbit * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1nbit (JNIEnv *env, jclass clss, jint plist_id) { herr_t retVal = -1; retVal = H5Pset_nbit((hid_t)plist_id); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_scaleoffset * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1scaleoffset (JNIEnv *env, jclass clss, jint plist_id, jint scale_type, jint scale_factor) { herr_t retVal = -1; /* Check arguments */ if(scale_factor < 0) { h5badArgument(env, "H5Pset_scaleoffset: scale factor must be > 0"); return -1; } if(scale_type != H5Z_SO_FLOAT_DSCALE && scale_type != H5Z_SO_FLOAT_ESCALE && scale_type != H5Z_SO_INT){ h5badArgument(env, "H5Pset_scaleoffset: invalid scale type"); return -1; } retVal = H5Pset_scaleoffset((hid_t)plist_id, (H5Z_SO_scale_type_t)scale_type, scale_factor); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_est_link_info * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1est_1link_1info (JNIEnv *env, jclass clss, jint gcpl_id, jint est_num_entries, jint est_name_len) { herr_t retVal = -1; /* Range check values */ if(est_num_entries > 65535) { h5badArgument(env, "H5Pset_est_link_info: est. number of entries must be < 65536"); return -1; } if(est_name_len > 65535) { h5badArgument(env, "H5Pset_est_link_info: est. name length must be < 65536"); return -1; } retVal = H5Pset_est_link_info((hid_t)gcpl_id, (unsigned)est_num_entries, (unsigned)est_name_len); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_est_link_info * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1est_1link_1info (JNIEnv *env, jclass clss, jint gcpl_id, jintArray link_info) { herr_t retVal = -1; unsigned *theArray = NULL; jboolean isCopy; if (link_info == NULL) { h5nullArgument(env, "H5Pget_est_link_info: link_info is NULL"); return -1; } theArray = (unsigned *)ENVPTR->GetIntArrayElements(ENVPAR link_info,&isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_est_link_info: input not pinned"); return -1; } retVal= H5Pget_est_link_info((hid_t)gcpl_id, &(theArray[0]), &(theArray[1])); if(retVal < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR link_info, (jint *)theArray, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR link_info, (jint *)theArray, 0); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_elink_fapl * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1elink_1fapl (JNIEnv *env, jclass clss, jint lapl_id, jint fapl_id) { herr_t retVal = -1; retVal = H5Pset_elink_fapl((hid_t)lapl_id, (hid_t)fapl_id); if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Pget_elink_fapl * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Pget_1elink_1fapl (JNIEnv *env, jclass clss, jint lapl_id) { hid_t retVal = -1; retVal = H5Pget_elink_fapl((hid_t)lapl_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_elink_prefix * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1elink_1prefix (JNIEnv *env, jclass clss, jint lapl_id, jstring prefix) { herr_t retVal = -1; const char *aName; jboolean isCopy; if (prefix == NULL) { h5nullArgument(env, "H5Pset_elink_prefix: prefix is NULL"); return -1; } aName = (const char*)ENVPTR->GetStringUTFChars(ENVPAR prefix, &isCopy); if (aName == NULL) { h5JNIFatalError(env, "H5Pset_elink_prefix: prefix not pinned"); return -1; } retVal = H5Pset_elink_prefix((hid_t)lapl_id, aName); if(retVal < 0) { ENVPTR->ReleaseStringUTFChars(ENVPAR prefix, aName); h5libraryError(env); return -1; } ENVPTR->ReleaseStringUTFChars(ENVPAR prefix, aName); return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_elink_prefix * Signature: (I[Ljava/lang/String;)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1elink_1prefix (JNIEnv *env, jclass clss, jint lapl_id, jobjectArray prefix) { size_t size = -1; char *pre; jlong prefix_size; jstring str = NULL; if (prefix == NULL) { h5nullArgument(env, "H5Pget_elink_prefix: prefix is NULL"); return -1; } prefix_size = (jlong)H5Pget_elink_prefix((hid_t)lapl_id, (char*)NULL, size); if(prefix_size < 0) { h5libraryError(env); return -1; } size = (size_t)prefix_size + 1;/* add extra space for the null terminator */ pre = (char*)malloc(sizeof(char)*size); if (pre == NULL) { h5outOfMemory(env, "H5Pget_elink_prefix: malloc failed "); return -1; } prefix_size = (jlong)H5Pget_elink_prefix((hid_t)lapl_id, (char*)pre, size); if (prefix_size < 0) { free(pre); h5libraryError(env); return -1; } str = ENVPTR->NewStringUTF(ENVPAR pre); if (str == NULL) { /* exception -- fatal JNI error */ free(pre); h5JNIFatalError(env, "H5Pget_elink_prefix: return string not created"); return -1; } ENVPTR->SetObjectArrayElement(ENVPAR prefix, 0, str); free(pre); return prefix_size; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_direct * Signature: (IJJJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1direct (JNIEnv *env, jclass clss, jint fapl_id, jlong alignment, jlong block_size, jlong cbuf_size) { herr_t retVal = -1; #ifdef H5_HAVE_DIRECT retVal = H5Pset_fapl_direct((hid_t)fapl_id, (size_t)alignment, (size_t)block_size, (size_t)cbuf_size); #endif if(retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fapl_direct * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fapl_1direct (JNIEnv *env, jclass clss, jint fapl_id, jlongArray info) { herr_t retVal = -1; #ifdef H5_HAVE_DIRECT size_t alignment = 0; size_t block_size = 0; size_t cbuf_size = 0; jlong *theArray; jboolean isCopy; if (info == NULL) { h5nullArgument(env, "H5Pget_fapl_direct: info input array is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR info) < 3) { h5badArgument( env, "H5Pget_fapl_direct: info input array < 4"); return -1; } theArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR info, &isCopy); if (theArray == NULL) { h5JNIFatalError(env, "H5Pget_fapl_direct: info not pinned"); return -1; } retVal = H5Pget_fapl_direct((hid_t)fapl_id, &alignment, &block_size, &cbuf_size); if(retVal <0) { ENVPTR->ReleaseLongArrayElements(ENVPAR info, theArray, JNI_ABORT); h5libraryError(env); } else { theArray[0] = alignment; theArray[1] = block_size; theArray[2] = cbuf_size; ENVPTR->ReleaseLongArrayElements(ENVPAR info, theArray, 0); } #else if (retVal < 0) { h5libraryError(env); } #endif return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_sec2 * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1sec2 (JNIEnv *env, jclass clss, jint fapl_id) { herr_t retVal = -1; retVal = H5Pset_fapl_sec2((hid_t) fapl_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_stdio * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1stdio (JNIEnv *env, jclass clss, jint fapl_id) { herr_t retVal = -1; retVal = H5Pset_fapl_stdio((hid_t) fapl_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_windows * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1windows (JNIEnv *env, jclass clss, jint fapl_id) { herr_t retVal = -1; #ifdef H5_HAVE_WINDOWS retVal = H5Pset_fapl_windows((hid_t) fapl_id); #endif if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_fapl_muti * Signature: (I[I[I[Ljava/lang/String;[J)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1fapl_1multi (JNIEnv *env, jclass clss, jint tid, jintArray memb_map, jintArray memb_fapl, jobjectArray memb_name, jlongArray memb_addr) { herr_t status; int i; jint *themapArray = NULL; jint *thefaplArray = NULL; jlong *theaddrArray = NULL; char **mName = NULL; jstring str; jboolean isCopy; int relax = 0; if (memb_map) { themapArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR memb_map, &isCopy); if (themapArray == NULL) { h5JNIFatalError(env, "H5Pget_fapl_muti: memb_map not pinned"); return -1; } } if (memb_fapl) { thefaplArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR memb_fapl, &isCopy); if (thefaplArray == NULL) { if (memb_map) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_map, themapArray, JNI_ABORT); h5JNIFatalError(env, "H5Pget_fapl_muti: memb_fapl not pinned"); return -1; } } if (memb_addr) { theaddrArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR memb_addr, &isCopy); if (theaddrArray == NULL) { if (memb_map) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_map, themapArray, JNI_ABORT); if (memb_fapl) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_fapl, thefaplArray, JNI_ABORT); h5JNIFatalError(env, "H5Pget_fapl_muti: memb_addr not pinned"); return -1; } } if (memb_name) mName = (char **)calloc(H5FD_MEM_NTYPES, sizeof (*mName)); status = H5Pget_fapl_multi((hid_t)tid, (H5FD_mem_t *)themapArray, (hid_t *)thefaplArray, mName, (haddr_t *)theaddrArray, (hbool_t *)&relax); if (status < 0) { if (memb_map) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_map, themapArray, JNI_ABORT); if (memb_fapl) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_fapl, thefaplArray, JNI_ABORT); if (memb_addr) ENVPTR->ReleaseLongArrayElements(ENVPAR memb_addr, theaddrArray, JNI_ABORT); if (memb_name) h5str_array_free(mName, H5FD_MEM_NTYPES); h5libraryError(env); return -1; } if (memb_map) { ENVPTR->ReleaseIntArrayElements(ENVPAR memb_map, themapArray, 0); } if (memb_fapl) { ENVPTR->ReleaseIntArrayElements(ENVPAR memb_fapl, thefaplArray, 0); } if (memb_addr) { ENVPTR->ReleaseLongArrayElements(ENVPAR memb_addr, theaddrArray, 0); } if (memb_name) { if (mName) { for (i = 0; i < H5FD_MEM_NTYPES; i++) { if (*(mName + i)) { str = ENVPTR->NewStringUTF(ENVPAR *(mName+i)); ENVPTR->SetObjectArrayElement(ENVPAR memb_name, i, (jobject)str); } } /* for (i=0; iGetIntArrayElements(ENVPAR memb_map, &isCopy); if (themapArray == NULL) { h5JNIFatalError(env, "H5Pget_fapl_muti: memb_map not pinned"); return; } } if (memb_fapl) { thefaplArray = (jint *)ENVPTR->GetIntArrayElements(ENVPAR memb_fapl, &isCopy); if (thefaplArray == NULL) { if (memb_map) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_map, themapArray, JNI_ABORT); h5JNIFatalError(env, "H5Pget_fapl_muti: memb_fapl not pinned"); return; } } if (memb_addr) { theaddrArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR memb_addr, &isCopy); if (theaddrArray == NULL) { if (memb_map) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_map, themapArray, JNI_ABORT); if (memb_fapl) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_fapl, thefaplArray, JNI_ABORT); h5JNIFatalError(env, "H5Pget_fapl_muti: memb_addr not pinned"); return; } } memset(member_name, 0, H5FD_MEM_NTYPES * sizeof(char*)); if (memb_name) { int i; for (i = 0; i < H5FD_MEM_NTYPES; i++) { jstring obj = (jstring) ENVPTR->GetObjectArrayElement(ENVPAR (jobjectArray) memb_name, i); if (obj != 0) { jsize length = ENVPTR->GetStringUTFLength(ENVPAR obj); const char *utf8 = ENVPTR->GetStringUTFChars(ENVPAR obj, 0); if (utf8) { member_name[i] = (char*)malloc(strlen(utf8) + 1); if (member_name[i]) { strcpy(member_name[i], utf8); } } ENVPTR->ReleaseStringUTFChars(ENVPAR obj, utf8); ENVPTR->DeleteLocalRef(ENVPAR obj); } } mName = (const char **)member_name; } status = H5Pset_fapl_multi((hid_t)tid, (const H5FD_mem_t *)themapArray, (const hid_t *)thefaplArray, mName, (const haddr_t *)theaddrArray, (hbool_t)relax); if (status < 0) { if (memb_map) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_map, themapArray, JNI_ABORT); if (memb_fapl) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_fapl, thefaplArray, JNI_ABORT); if (memb_addr) ENVPTR->ReleaseLongArrayElements(ENVPAR memb_addr, theaddrArray, JNI_ABORT); h5libraryError(env); return; } if (memb_map) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_map, themapArray, 0); if (memb_fapl) ENVPTR->ReleaseIntArrayElements(ENVPAR memb_fapl, thefaplArray, 0); if (memb_addr) ENVPTR->ReleaseLongArrayElements(ENVPAR memb_addr, theaddrArray, 0); if (memb_name) { if (mName != NULL) { int i; Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { return; } for (i = 0; i < H5FD_MEM_NTYPES; i++) { rstring = ENVPTR->NewStringUTF(ENVPAR member_name[i]); o = ENVPTR->GetObjectArrayElement(ENVPAR memb_name, i); if (o == NULL) { return; } bb = ENVPTR->IsInstanceOf(ENVPAR o, Sjc); if (bb == JNI_FALSE) { return; } ENVPTR->SetObjectArrayElement(ENVPAR memb_name, i, (jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); free(member_name[i]); } } } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_fapl_split * Signature: (ILjava/lang/String;ILjava/lang/String;I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1fapl_1split (JNIEnv *env, jclass clss, jint fapl_id, jstring metaext, jint meta_pl_id, jstring rawext, jint raw_pl_id) { herr_t retVal = -1; const char *mstr; const char *rstr; jboolean isCopy; if (metaext == NULL) { h5nullArgument( env, "H5Pset_fapl_split: metaext is NULL"); return; } mstr = (const char *)ENVPTR->GetStringUTFChars(ENVPAR metaext, &isCopy); if (mstr == NULL) { h5JNIFatalError( env, "H5Pset_fapl_split: metaext not pinned"); return; } if (rawext == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR metaext, mstr); h5nullArgument( env, "H5Pset_fapl_split: rawext is NULL"); return; } rstr = (const char *)ENVPTR->GetStringUTFChars(ENVPAR rawext, &isCopy); if (rstr == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR metaext, mstr); h5JNIFatalError( env, "H5Pset_fapl_split: rawext not pinned"); return; } retVal = H5Pset_fapl_split((hid_t)fapl_id, mstr, (hid_t)meta_pl_id, rstr, (hid_t)raw_pl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR metaext, mstr); ENVPTR->ReleaseStringUTFChars(ENVPAR rawext, rstr); if (retVal < 0) { h5libraryError(env); } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_meta_block_size * Signature: (IJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1meta_1block_1size (JNIEnv *env, jclass clss, jint plist, jlong size) { long sz; herr_t status = -1; sz = (long)size; status = H5Pset_meta_block_size((hid_t)plist, (hsize_t)sz); if (status < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_meta_block_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1meta_1block_1size (JNIEnv *env, jclass clss, jint plist) { herr_t status; hsize_t s; status = H5Pget_meta_block_size((hid_t)plist, &s); if (status < 0) { h5libraryError(env); return -1; } return (jlong)s; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_sieve_buf_size * Signature: (IJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1sieve_1buf_1size (JNIEnv *env, jclass clss, jint plist, jlong size) { size_t sz; herr_t status = -1; sz = (size_t)size; status = H5Pset_sieve_buf_size((hid_t)plist, (size_t)sz); if (status < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_sieve_buf_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1sieve_1buf_1size (JNIEnv *env, jclass clss, jint plist) { herr_t status; size_t s; status = H5Pget_sieve_buf_size((hid_t)plist, &s); if (status < 0) { h5libraryError(env); return -1; } return (jlong)s; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_elink_file_cache_size * Signature: (II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1elink_1file_1cache_1size (JNIEnv *env, jclass clss, jint plist, jint size) { #if (H5_VERS_RELEASE > 6) /* H5_VERSION_GE(1,8,7) */ unsigned sz; herr_t status = -1; sz = (unsigned)size; status = H5Pset_elink_file_cache_size((hid_t)plist, (unsigned)sz); if (status < 0) { h5libraryError(env); } #else h5unimplemented(env, "H5Pset_elink_file_cache_size: only available > 1.8.6"); #endif } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_elink_file_cache_size * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1elink_1file_1cache_1size (JNIEnv *env, jclass clss, jint plist) { #if (H5_VERS_RELEASE > 6) /* H5_VERSION_GE(1,8,7) */ herr_t status; unsigned s; status = H5Pget_elink_file_cache_size((hid_t)plist, &s); if (status < 0) { h5libraryError(env); return -1; } return (jint)s; #else h5unimplemented(env, "H5Pget_elink_file_cache_size: only available > 1.8.6"); return -1; #endif } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_mdc_config * Signature: (I)Lncsa/hdf/hdf5lib/structs/H5AC_cache_config_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1mdc_1config (JNIEnv *env, jclass clss, jint plist) { herr_t status = -1; H5AC_cache_config_t cacheinfo; jclass cls; jmethodID constructor; jvalue args[30]; jstring j_str = NULL; jobject ret_info_t = NULL; memset(&cacheinfo, 0, sizeof(H5AC_cache_config_t)); cacheinfo.version = H5AC__CURR_CACHE_CONFIG_VERSION; status = H5Pget_mdc_config((hid_t)plist, (H5AC_cache_config_t*)&cacheinfo); if (status < 0) { h5libraryError(env); return NULL; } // get a reference to your class if you don't have it already cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5AC_cache_config_t"); // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(IZZZLjava/lang/String;ZZJDJJJIDDZJIDDIDDZJIZDII)V"); args[0].i = cacheinfo.version; args[1].z = cacheinfo.rpt_fcn_enabled; args[2].z = cacheinfo.open_trace_file; args[3].z = cacheinfo.close_trace_file; if (cacheinfo.trace_file_name != NULL) { j_str = ENVPTR->NewStringUTF(ENVPAR cacheinfo.trace_file_name); } args[4].l = j_str; args[5].z = cacheinfo.evictions_enabled; args[6].z = cacheinfo.set_initial_size; args[7].j = (jlong)cacheinfo.initial_size; args[8].d = cacheinfo.min_clean_fraction; args[9].j = (jlong)cacheinfo.max_size; args[10].j = (jlong)cacheinfo.min_size; args[11].j = cacheinfo.epoch_length; args[12].i = cacheinfo.incr_mode; args[13].d = cacheinfo.lower_hr_threshold; args[14].d = cacheinfo.increment; args[15].z = cacheinfo.apply_max_increment; args[16].j = (jlong)cacheinfo.max_increment; args[17].i = cacheinfo.flash_incr_mode; args[18].d = cacheinfo.flash_multiple; args[19].d = cacheinfo.flash_threshold; args[20].i = cacheinfo.decr_mode; args[21].d = cacheinfo.upper_hr_threshold; args[22].d = cacheinfo.decrement; args[23].z = cacheinfo.apply_max_decrement; args[24].j = (jlong)cacheinfo.max_decrement; args[25].i = cacheinfo.epochs_before_eviction; args[26].z = cacheinfo.apply_empty_reserve; args[27].d = cacheinfo.empty_reserve; args[28].i = cacheinfo.dirty_bytes_threshold; #if (H5_VERS_RELEASE >= 6) args[29].i = cacheinfo.metadata_write_strategy; #endif ret_info_t = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); return ret_info_t; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_mdc_config * Signature: (ILncsa/hdf/hdf5lib/structs/H5AC_cache_config_t;)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1mdc_1config (JNIEnv *env, jclass clss, jint plist, jobject cache_config) { herr_t status; jclass cls; jfieldID fid; jstring j_str; const char *str; H5AC_cache_config_t cacheinfo; cls = ENVPTR->GetObjectClass(ENVPAR cache_config); fid = ENVPTR->GetFieldID(ENVPAR cls, "version", "I"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: version"); return; } cacheinfo.version = ENVPTR->GetIntField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading version failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "rpt_fcn_enabled", "Z"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: rpt_fcn_enabled"); return; } cacheinfo.rpt_fcn_enabled = ENVPTR->GetBooleanField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading rpt_fcn_enabled failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "open_trace_file", "Z"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: open_trace_file"); return; } cacheinfo.open_trace_file = ENVPTR->GetBooleanField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading open_trace_file failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "close_trace_file", "Z"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: close_trace_file"); return; } cacheinfo.close_trace_file = ENVPTR->GetBooleanField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading close_trace_file failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "trace_file_name", "Ljava/lang/String;"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: trace_file_name"); return; } j_str = (jstring)ENVPTR->GetObjectField(ENVPAR cache_config, fid); str = ENVPTR->GetStringUTFChars(ENVPAR j_str, NULL); if (str == NULL) { h5JNIFatalError(env, "H5Pset_mdc_config: out of memory trace_file_name"); return; } strncpy(cacheinfo.trace_file_name, str, 1025); ENVPTR->ReleaseStringUTFChars(ENVPAR j_str, str); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading trace_file_name failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "evictions_enabled", "Z"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: evictions_enabled"); return; } cacheinfo.evictions_enabled = ENVPTR->GetBooleanField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading evictions_enabled failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "set_initial_size", "Z"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: set_initial_size"); return; } cacheinfo.set_initial_size = ENVPTR->GetBooleanField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading set_initial_size failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "initial_size", "J"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: initial_size"); return; } cacheinfo.initial_size = (size_t)ENVPTR->GetLongField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading initial_size failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "min_clean_fraction", "D"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: min_clean_fraction"); return; } cacheinfo.min_clean_fraction = ENVPTR->GetDoubleField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading min_clean_fraction failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "max_size", "J"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: max_size"); return; } cacheinfo.max_size = (size_t)ENVPTR->GetLongField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading max_size failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "min_size", "J"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: min_size"); return; } cacheinfo.min_size = (size_t)ENVPTR->GetLongField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading min_size failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "epoch_length", "J"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: epoch_length"); return; } cacheinfo.epoch_length = (long int)ENVPTR->GetLongField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading epoch_length failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "incr_mode", "I"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: incr_mode"); return; } cacheinfo.incr_mode = (enum H5C_cache_incr_mode)ENVPTR->GetIntField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading incr_mode failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "lower_hr_threshold", "D"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: lower_hr_threshold"); return; } cacheinfo.lower_hr_threshold = ENVPTR->GetDoubleField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading lower_hr_threshold failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "increment", "D"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: increment"); return; } cacheinfo.increment = ENVPTR->GetDoubleField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading increment failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "apply_max_increment", "Z"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: apply_max_increment"); return; } cacheinfo.apply_max_increment = ENVPTR->GetBooleanField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading apply_max_increment failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "max_increment", "J"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: max_increment"); return; } cacheinfo.max_increment = (size_t)ENVPTR->GetLongField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading max_increment failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "flash_incr_mode", "I"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: flash_incr_mode"); return; } cacheinfo.flash_incr_mode = (enum H5C_cache_flash_incr_mode)ENVPTR->GetIntField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading flash_incr_mode failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "flash_multiple", "D"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: flash_multiple"); return; } cacheinfo.flash_multiple = ENVPTR->GetDoubleField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading flash_multiple failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "flash_threshold", "D"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: flash_threshold"); return; } cacheinfo.flash_threshold = ENVPTR->GetDoubleField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading flash_threshold failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "decr_mode", "I"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: decr_mode"); return; } cacheinfo.decr_mode = (enum H5C_cache_decr_mode)ENVPTR->GetIntField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading decr_mode failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "upper_hr_threshold", "D"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: upper_hr_threshold"); return; } cacheinfo.upper_hr_threshold = ENVPTR->GetDoubleField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading upper_hr_threshold failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "decrement", "D"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: decrement"); return; } cacheinfo.decrement = ENVPTR->GetDoubleField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading decrement failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "apply_max_decrement", "Z"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: apply_max_decrement"); return; } cacheinfo.apply_max_decrement = ENVPTR->GetBooleanField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading apply_max_decrement failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "max_decrement", "J"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: max_decrement"); return; } cacheinfo.max_decrement = (size_t)ENVPTR->GetLongField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading max_decrement failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "epochs_before_eviction", "I"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: epochs_before_eviction"); return; } cacheinfo.epochs_before_eviction = ENVPTR->GetIntField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading epochs_before_eviction failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "apply_empty_reserve", "Z"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: apply_empty_reserve"); return; } cacheinfo.apply_empty_reserve = ENVPTR->GetBooleanField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading apply_empty_reserve failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "empty_reserve", "D"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: empty_reserve"); return; } cacheinfo.empty_reserve = ENVPTR->GetDoubleField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading empty_reserve failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "dirty_bytes_threshold", "I"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: dirty_bytes_threshold"); return; } cacheinfo.dirty_bytes_threshold = ENVPTR->GetIntField(ENVPAR cache_config, fid); if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading dirty_bytes_threshold failed"); return; } fid = ENVPTR->GetFieldID(ENVPAR cls, "metadata_write_strategy", "I"); if(fid == 0) { h5badArgument(env, "H5Pset_mdc_config: metadata_write_strategy"); return; } #if (H5_VERS_RELEASE >= 6) cacheinfo.metadata_write_strategy = ENVPTR->GetIntField(ENVPAR cache_config, fid); #endif if(ENVPTR->ExceptionOccurred(ENVONLY)) { h5JNIFatalError(env, "H5Pset_mdc_config: loading metadata_write_strategy failed"); return; } status = H5Pset_mdc_config((hid_t)plist, (H5AC_cache_config_t*)&cacheinfo); if (status < 0) { h5libraryError(env); return; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_chunk_cache * Signature: (IJJD)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1chunk_1cache (JNIEnv *env, jclass clss, jint dapl, jlong rdcc_nslots, jlong rdcc_nbytes, jdouble rdcc_w0) { herr_t retVal = -1; retVal = H5Pset_chunk_cache((hid_t)dapl, (size_t)rdcc_nslots, (size_t)rdcc_nbytes, (double) rdcc_w0); if (retVal < 0) { h5libraryError(env); } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_chunk_cache * Signature: (I[J[J[D)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1chunk_1cache (JNIEnv *env, jclass clss, jint dapl, jlongArray rdcc_nslots, jlongArray rdcc_nbytes, jdoubleArray rdcc_w0) { herr_t status; jint mode; jdouble *w0Array; jlong *rdcc_nslotsArray; jlong *nbytesArray; jboolean isCopy; if (rdcc_w0 == NULL) { w0Array = (jdouble *)NULL; } else { w0Array = (jdouble *)ENVPTR->GetDoubleArrayElements(ENVPAR rdcc_w0, &isCopy); if (w0Array == NULL) { h5JNIFatalError(env, "H5Pget_chunk_cache: w0_array array not pinned"); return; } } if (rdcc_nslots == NULL) { rdcc_nslotsArray = (jlong *)NULL; } else { rdcc_nslotsArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR rdcc_nslots, &isCopy); if (rdcc_nslotsArray == NULL) { /* exception -- out of memory */ if (w0Array != NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR rdcc_w0, w0Array, JNI_ABORT); } h5JNIFatalError(env, "H5Pget_chunk_cache: rdcc_nslots array not pinned"); return; } } if (rdcc_nbytes == NULL) { nbytesArray = (jlong *)NULL; } else { nbytesArray = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR rdcc_nbytes, &isCopy); if (nbytesArray == NULL) { if (w0Array != NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR rdcc_w0, w0Array, JNI_ABORT); } if (rdcc_nslotsArray != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR rdcc_nslots, rdcc_nslotsArray, JNI_ABORT); } h5JNIFatalError(env, "H5Pget_chunk_cache: nbytesArray array not pinned"); return; } } { /* direct cast (size_t *)variable fails on 32-bit environment */ long long rdcc_nslots_temp = *(rdcc_nslotsArray); size_t rdcc_nslots_t = (size_t)rdcc_nslots_temp; long long nbytes_temp = *(nbytesArray); size_t nbytes_t = (size_t)nbytes_temp; status = H5Pget_chunk_cache((hid_t)dapl, &rdcc_nslots_t, &nbytes_t, (double *)w0Array); *rdcc_nslotsArray = rdcc_nslots_t; *nbytesArray = nbytes_t; } if (status < 0) { mode = JNI_ABORT; } else { mode = 0; /* commit and free */ } if (rdcc_nslotsArray != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR rdcc_nslots, rdcc_nslotsArray, mode); } if (nbytesArray != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR rdcc_nbytes, nbytesArray, mode); } if (w0Array != NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR rdcc_w0, w0Array, mode); } if (status < 0) { h5libraryError(env); } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_obj_track_times * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1obj_1track_1times (JNIEnv *env, jclass clss, jint objplid) { herr_t status; hbool_t track_times; status = H5Pget_obj_track_times((hid_t)objplid, &track_times); if (status < 0) { h5libraryError(env); return JNI_FALSE; } if (track_times == 1) { return JNI_TRUE; } return JNI_FALSE; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_obj_track_times * Signature: (IZ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1obj_1track_1times (JNIEnv *env, jclass clss, jint objplid, jboolean track_times) { herr_t status; hbool_t track; if (track_times == JNI_TRUE) { track = 1; } else { track = 0; } status = H5Pset_obj_track_times((hid_t)objplid, track); if (status < 0) { h5libraryError(env); } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pget_char_encoding * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pget_1char_1encoding (JNIEnv *env, jclass clss, jint acpl) { herr_t status; H5T_cset_t encoding; status = H5Pget_char_encoding((hid_t)acpl, &encoding); if (status < 0) { h5libraryError(env); } return encoding; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Pset_char_encoding * Signature: (II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Pset_1char_1encoding (JNIEnv *env, jclass clss, jint acpl, jint encoding) { herr_t status; status = H5Pset_char_encoding((hid_t)acpl, (H5T_cset_t)encoding); if (status < 0) { h5libraryError(env); } return; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5zImp.c0000644002344600011330000000533512371212307015700 0ustar byrnhdf/**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * Reference API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include "hdf5.h" #include #include #include "h5jni.h" /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Zunregister * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Zunregister (JNIEnv *env, jclass clss, jint filter) { herr_t retValue; retValue = H5Zunregister((H5Z_filter_t)filter); if (retValue < 0) { h5libraryError(env); } return (jint)retValue; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Zfilter_avail * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Zfilter_1avail (JNIEnv *env, jclass clss, jint filter) { herr_t retValue; retValue = H5Zfilter_avail((H5Z_filter_t)filter); if (retValue < 0) { h5libraryError(env); } return (jint)retValue; } /********************************************************************** * * * New functions release 1.6.3 versus release 1.6.2 * * * **********************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Zget_filter_info * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Zget_1filter_1info (JNIEnv *env, jclass clss, jint filter) { herr_t status; unsigned int flags = 0; status = H5Zget_filter_info ((H5Z_filter_t) filter, (unsigned *) &flags); if (status < 0) { h5libraryError(env); } return flags; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/exceptionImp.c0000644002344600011330000004025012371212307017163 0ustar byrnhdf/**************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * ****************************************************************************/ /* * This is a utility program used by the HDF Java-C wrapper layer to * generate exceptions. This may be called from any part of the * Java-C interface. * */ #ifdef __cplusplus extern "C" { #endif #include "hdf5.h" #include #include #include "jni.h" #include "h5jni.h" /* #include "H5Eprivate.h" */ /* These types are copied from H5Eprivate.h * They should be moved to a public include file, and deleted from * here. */ #define H5E_NSLOTS 32 /*number of slots in an error stack */ /* * The list of error messages in the system is kept as an array of * error_code/message pairs, one for major error numbers and another for * minor error numbers. */ typedef struct H5E_major_mesg_t { H5E_major_t error_code; const char *str; } H5E_major_mesg_t; typedef struct H5E_minor_mesg_t { H5E_minor_t error_code; const char *str; } H5E_minor_mesg_t; /* major and minor error numbers */ typedef struct H5E_num_t { hid_t maj_num; hid_t min_num; } H5E_num_t; hid_t getMajorErrorNumber(); hid_t getMinorErrorNumber(); int getErrorNumbers(hid_t stk_id, H5E_num_t*); /* get the major and minor error numbers on the top of the error stack */ static herr_t walk_error_callback(unsigned n, const H5E_error2_t *err_desc, void *_err_nums) { H5E_num_t *err_nums = (H5E_num_t *)_err_nums; if (err_desc) { err_nums->maj_num = err_desc->maj_num; err_nums->min_num = err_desc->min_num; } return 0; } char *defineHDF5LibraryException(hid_t maj_num); /* * Class: ncsa_hdf_hdf5lib_exceptions_HDF5Library * Method: H5error_off * Signature: ()I * */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5error_1off (JNIEnv *env, jclass clss ) { H5Eset_auto2(H5E_DEFAULT, NULL, NULL); return 0; } /* * Class: ncsa_hdf_hdf5lib_exceptions_HDFLibraryException * Method: printStackTrace0 * Signature: (Ljava/lang/Object;)V * * Call the HDF-5 library to print the HDF-5 error stack to 'file_name'. */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_exceptions_HDF5LibraryException_printStackTrace0 (JNIEnv *env, jobject obj, jstring file_name) { FILE *stream; char *file; if (file_name == NULL) { H5Eprint2(H5E_DEFAULT, stderr); } else { file = (char *)ENVPTR->GetStringUTFChars(ENVPAR file_name,0); stream = fopen(file, "a+"); H5Eprint2(H5E_DEFAULT, stream); ENVPTR->ReleaseStringUTFChars(ENVPAR file_name, file); if (stream) fclose(stream); } } /* * Class: ncsa_hdf_hdf5lib_exceptions_HDFLibraryException * Method: getMajorErrorNumber * Signature: ()I * * Extract the HDF-5 major error number from the HDF-5 error stack. * * Note: This relies on undocumented, 'private' code in the HDF-5 * library. Later releases will have a public interface for this * purpose. */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_exceptions_HDF5LibraryException_getMajorErrorNumber (JNIEnv *env, jobject obj) { H5E_num_t err_nums; H5Ewalk2(H5E_DEFAULT, H5E_WALK_DOWNWARD, walk_error_callback, &err_nums); return (int) err_nums.maj_num; } hid_t getMajorErrorNumber() { H5E_num_t err_nums; err_nums.maj_num = 0; err_nums.min_num = 0; H5Ewalk2(H5E_DEFAULT, H5E_WALK_DOWNWARD, walk_error_callback, &err_nums); return err_nums.maj_num; } /* * Class: ncsa_hdf_hdf5lib_exceptions_HDFLibraryException * Method: getMinorErrorNumber * Signature: ()I * * Extract the HDF-5 minor error number from the HDF-5 error stack. * * Note: This relies on undocumented, 'private' code in the HDF-5 * library. Later releases will have a public interface for this * purpose. */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_exceptions_HDF5LibraryException_getMinorErrorNumber (JNIEnv *env, jobject obj) { return (jint) getMinorErrorNumber(); } hid_t getMinorErrorNumber() { H5E_num_t err_nums; err_nums.maj_num = 0; err_nums.min_num = 0; H5Ewalk2(H5E_DEFAULT, H5E_WALK_DOWNWARD, walk_error_callback, &err_nums); return err_nums.min_num; } int getErrorNumbers(hid_t stk_id, H5E_num_t *err_nums) { err_nums->maj_num = 0; err_nums->min_num = 0; return H5Ewalk2(stk_id, H5E_WALK_DOWNWARD, walk_error_callback, err_nums); } /* * Routine to raise particular Java exceptions from C */ /* * Create and throw an 'outOfMemoryException' * * Note: This routine never returns from the 'throw', * and the Java native method immediately raises the * exception. */ jboolean h5outOfMemory( JNIEnv *env, char *functName) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR "java/lang/OutOfMemoryError"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR functName); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable ) ex ); if (rval < 0) { printf("FATAL ERROR: OutOfMemoryError: Throw failed\n"); return JNI_FALSE; } return JNI_TRUE; } /* * A fatal error in a JNI call * Create and throw an 'InternalError' * * Note: This routine never returns from the 'throw', * and the Java native method immediately raises the * exception. */ jboolean h5JNIFatalError( JNIEnv *env, char *functName) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR "java/lang/InternalError"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR functName); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable) ex ); if (rval < 0) { printf("FATAL ERROR: JNIFatal: Throw failed\n"); return JNI_FALSE; } return JNI_TRUE; } /* * A NULL argument in an HDF5 call * Create and throw an 'NullPointerException' * * Note: This routine never returns from the 'throw', * and the Java native method immediately raises the * exception. */ jboolean h5nullArgument( JNIEnv *env, char *functName) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR "java/lang/NullPointerException"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR functName); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable) ex ); if (rval < 0) { printf("FATAL ERROR: NullPoitner: Throw failed\n"); return JNI_FALSE; } return JNI_TRUE; } /* * A bad argument in an HDF5 call * Create and throw an 'IllegalArgumentException' * * Note: This routine never returns from the 'throw', * and the Java native method immediately raises the * exception. */ jboolean h5badArgument( JNIEnv *env, char *functName) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR "java/lang/IllegalArgumentException"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR functName); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable) ex ); if (rval < 0) { printf("FATAL ERROR: BadArgument: Throw failed\n"); return JNI_FALSE; } return JNI_TRUE; } /* * Some feature Not implemented yet * Create and throw an 'UnsupportedOperationException' * * Note: This routine never returns from the 'throw', * and the Java native method immediately raises the * exception. */ jboolean h5unimplemented( JNIEnv *env, char *functName) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR "java/lang/UnsupportedOperationException"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR functName); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable) ex ); if (rval < 0) { printf("FATAL ERROR: Unsupported: Throw failed\n"); return JNI_FALSE; } return JNI_TRUE; } /* * h5libraryError() determines the HDF-5 major error code * and creates and throws the appropriate sub-class of * HDF5LibraryException(). This routine should be called * whenever a call to the HDF-5 library fails, i.e., when * the return is -1. * * Note: This routine never returns from the 'throw', * and the Java native method immediately raises the * exception. */ jboolean h5libraryError( JNIEnv *env ) { jmethodID jm; jclass jc; char *args[2]; char *exception; jobject ex; char *msg_str; int rval; int num_errs = 0; int min_num; int maj_num; ssize_t msg_size = 0; H5E_type_t error_msg_type; jstring str = NULL; hid_t stk_id = -1; H5E_num_t exceptionNumbers; /* Save current stack contents for future use */ stk_id = H5Eget_current_stack(); /* This will clear current stack */ getErrorNumbers(stk_id, &exceptionNumbers); maj_num = exceptionNumbers.maj_num; min_num = exceptionNumbers.min_num; exception = (char *)defineHDF5LibraryException(maj_num); jc = ENVPTR->FindClass(ENVPAR exception); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } /* get the length of the name */ msg_size = H5Eget_msg(min_num, NULL, NULL, 0); if(msg_size>0) { msg_size++; /* add extra space for the null terminator */ msg_str = (char*)malloc(sizeof(char)*msg_size); if(msg_str) { msg_size = H5Eget_msg((hid_t)min_num, &error_msg_type, (char *)msg_str, (size_t)msg_size); str = ENVPTR->NewStringUTF(ENVPAR msg_str); free(msg_str); } } else str = NULL; H5Eset_current_stack(stk_id); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable) ex ); if (rval < 0) { printf("FATAL ERROR: h5libraryError: Throw failed\n"); return JNI_FALSE; } return JNI_TRUE; } /* raiseException(). This routine is called to generate * an arbitrary Java exception with a particular message. * * Note: This routine never returns from the 'throw', * and the Java native method immediately raises the * exception. */ jboolean h5raiseException( JNIEnv *env, char *exception, char *message) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR exception); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR message); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable)ex ); if (rval < 0) { printf("FATAL ERROR: raiseException: Throw failed\n"); return JNI_FALSE; } return JNI_TRUE; } /* jboolean buildException( JNIEnv *env, char *exception, jint HDFerr) { jmethodID jm; jclass jc; int args[2]; jobject ex; int rval; jc = ENVPTR->FindClass(ENVPAR exception); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(I)V"); if (jm == NULL) { return JNI_FALSE; } args[0] = HDFerr; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR ex ); if (rval < 0) { printf("FATAL ERROR: raiseException: Throw failed\n"); return JNI_FALSE; } return JNI_TRUE; } */ /* * defineHDF5LibraryException() returns the name of the sub-class * which goes with an HDF-5 error code. */ char *defineHDF5LibraryException(hid_t maj_num) { H5E_major_t err_num = (H5E_major_t) maj_num; if (H5E_ARGS == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5FunctionArgumentException"; else if (H5E_RESOURCE == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5ResourceUnavailableException"; else if (H5E_INTERNAL == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5InternalErrorException"; else if (H5E_FILE == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5FileInterfaceException"; else if (H5E_IO == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5LowLevelIOException"; else if (H5E_FUNC == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5FunctionEntryExitException"; else if (H5E_ATOM == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5AtomException"; else if (H5E_CACHE == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5MetaDataCacheException"; else if (H5E_BTREE == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5BtreeException"; else if (H5E_SYM == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5SymbolTableException"; else if (H5E_HEAP == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5HeapException"; else if (H5E_OHDR == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5ObjectHeaderException"; else if (H5E_DATATYPE == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5DatatypeInterfaceException"; else if (H5E_DATASPACE == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5DataspaceInterfaceException"; else if (H5E_DATASET == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException"; else if (H5E_STORAGE == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5DataStorageException"; else if (H5E_PLIST == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5PropertyListInterfaceException"; else if (H5E_ATTR == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5AttributeException"; else if (H5E_PLINE == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5DataFiltersException"; else if (H5E_EFL == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5ExternalFileListException"; else if (H5E_REFERENCE == err_num) return "ncsa/hdf/hdf5lib/exceptions/HDF5ReferenceException"; return "ncsa/hdf/hdf5lib/exceptions/HDF5LibraryException"; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5tImp.h0000644002344600011330000003271512372144050015701 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5T */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5T #define _Included_ncsa_hdf_hdf5lib_H5_H5T #ifdef __cplusplus extern "C" { #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Topen * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Topen (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tcommit1 * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tcommit1 (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tcommitted * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tcommitted (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tcreate * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tcreate (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tcopy * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tcopy (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tequal * Signature: (II)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tequal (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tlock * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tlock (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_class * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1class (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_size * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1size (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_size_long * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1size_1long (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_size * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1size (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_order * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1order (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_order * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1order (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_precision * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1precision (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_precision_long * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1precision_1long (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_precision * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1precision (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_offset * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1offset (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_offset * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1offset (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_pad * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1pad (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_pad * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1pad (JNIEnv *, jclass, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_sign * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1sign (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_sign * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1sign (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_fields_int * Signature: (I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1fields_1int (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_fields * Signature: (I[J)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1fields (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_fields * Signature: (IJJJJJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1fields (JNIEnv *, jclass, jint, jlong, jlong, jlong, jlong, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_ebias * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1ebias (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_ebias_long * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1ebias_1long (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_ebias * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1ebias (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_norm * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1norm (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_norm * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1norm (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_inpad * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1inpad (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_inpad * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1inpad (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_cset * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1cset (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_cset * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1cset (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_strpad * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1strpad (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_strpad * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1strpad (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_nmembers * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1nmembers (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_name * Signature: (II)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1name (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_index * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1index (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tget_member_type * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tget_1member_1type (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_offset * Signature: (II)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1offset (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_class * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1class (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tinsert * Signature: (ILjava/lang/String;JI)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tinsert (JNIEnv *, jclass, jint, jstring, jlong, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tpack * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tpack (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tclose (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tvlen_create * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tvlen_1create (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tset_tag * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tset_1tag (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_tag * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1tag (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_super * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1super (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tenum_create * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tenum_1create (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_insert_int * Signature: (ILjava/lang/String;[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1insert_1int (JNIEnv *, jclass, jint, jstring, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_insert * Signature: (ILjava/lang/String;[B)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1insert (JNIEnv *, jclass, jint, jstring, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_nameof_int * Signature: (I[I[Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1nameof_1int (JNIEnv *, jclass, jint, jintArray, jobjectArray, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_nameof * Signature: (I[BJ)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1nameof (JNIEnv *, jclass, jint, jbyteArray, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_valueof_int * Signature: (ILjava/lang/String;[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1valueof_1int (JNIEnv *, jclass, jint, jstring, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tenum_valueof * Signature: (ILjava/lang/String;[B)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tenum_1valueof (JNIEnv *, jclass, jint, jstring, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_value_int * Signature: (II[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1value_1int (JNIEnv *, jclass, jint, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_member_value * Signature: (II[B)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1member_1value (JNIEnv *, jclass, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tarray_create * Signature: (II[I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tarray_1create (JNIEnv *, jclass, jint, jint, jintArray, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_array_ndims * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1array_1ndims (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_array_dims * Signature: (I[I[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1array_1dims (JNIEnv *, jclass, jint, jintArray, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tis_variable_str * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tis_1variable_1str (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_native_type * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1native_1type (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tdetect_class * Signature: (II)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tdetect_1class (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Topen2 * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Topen2 (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tcommit * Signature: (ILjava/lang/String;IIII)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tcommit (JNIEnv *, jclass, jint, jstring, jint, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Tarray_create2 * Signature: (II[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Tarray_1create2 (JNIEnv *, jclass, jint, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tget_array_dims2 * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tget_1array_1dims2 (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Tconvert * Signature: (IIJ[B[BI)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Tconvert (JNIEnv *, jclass, jint, jint, jlong, jbyteArray, jbyteArray, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5oImp.c0000644002344600011330000007653712326542262015707 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * This code is the C-interface called by Java programs to access the * Link Object API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdfdfgroup.org/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include #include #include "hdf5.h" #include "h5jni.h" #include "h5oImp.h" #ifdef __cplusplus #define CBENVPTR (cbenv) #define CBENVPAR #define JVMPTR (jvm) #define JVMPAR #define JVMPAR2 #else #define CBENVPTR (*cbenv) #define CBENVPAR cbenv, #define JVMPTR (*jvm) #define JVMPAR jvm #define JVMPAR2 jvm, #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Oopen * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Oopen (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint access_plist_id) { hid_t status; char* oName; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Oopen: name is NULL"); return -1; } oName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (oName == NULL) { h5JNIFatalError( env, "H5Oopen: object name not pinned"); return -1; } status = H5Oopen((hid_t)loc_id, oName, (hid_t)access_plist_id ); ENVPTR->ReleaseStringUTFChars(ENVPAR name, oName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Oclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Oclose (JNIEnv *env, jclass clss, jint object_id) { herr_t retVal = H5Oclose((hid_t)object_id) ; if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ocopy * Signature: (ILjava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ocopy (JNIEnv *env, jclass clss, jint cur_loc_id, jstring cur_name, jint dst_loc_id, jstring dst_name, jint create_id, jint access_id) { char *lCurName; char *lDstName; jboolean isCopy; herr_t status = -1; if (cur_name == NULL) { h5nullArgument(env, "H5Ocopy: cur_name is NULL"); return; } lCurName = (char*)ENVPTR->GetStringUTFChars(ENVPAR cur_name, &isCopy); if (lCurName == NULL) { h5JNIFatalError(env, "H5Ocopy: cur_name not pinned"); return; } if (dst_name == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5nullArgument(env, "H5Ocopy: dst_name is NULL"); return; } lDstName = (char*)ENVPTR->GetStringUTFChars(ENVPAR dst_name, &isCopy); if (lDstName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5JNIFatalError(env, "H5Ocopy: dst_name not pinned"); return; } status = H5Ocopy((hid_t)cur_loc_id, (const char*)lCurName, (hid_t)dst_loc_id, (const char*)lDstName, (hid_t)create_id, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); ENVPTR->ReleaseStringUTFChars(ENVPAR dst_name, lDstName); if (status < 0) { h5libraryError(env); return; } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_info * Signature: (I)Lncsa/hdf/hdf5lib/structs/H5O_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1info (JNIEnv *env, jclass clss, jint loc_id) { herr_t status; H5O_info_t infobuf; jclass cls; jmethodID constructor; jvalue args[12]; jobject hdrinfobuf; jobject ihinfobuf1; jobject ihinfobuf2; jobject ret_info_t = NULL; status = H5Oget_info((hid_t)loc_id, (H5O_info_t*)&infobuf); if (status < 0) { h5libraryError(env); return NULL; } // get a reference to the H5_hdr_info_t class cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5O_hdr_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass H5O_hdr_info_t failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(IIIIJJJJJJ)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID H5O_hdr_info_t failed\n"); return NULL; } args[0].i = infobuf.hdr.version; args[1].i = infobuf.hdr.nmesgs; args[2].i = infobuf.hdr.nchunks; args[3].i = infobuf.hdr.flags; args[4].j = infobuf.hdr.space.total; args[5].j = infobuf.hdr.space.meta; args[6].j = infobuf.hdr.space.mesg; args[7].j = infobuf.hdr.space.free; args[8].j = infobuf.hdr.mesg.present; args[9].j = infobuf.hdr.mesg.shared; hdrinfobuf = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); // get a reference to the H5_ih_info_t class cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5_ih_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass H5_ih_info_t failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(JJ)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID H5_ih_info_t failed\n"); return NULL; } args[0].j = infobuf.meta_size.obj.index_size; args[1].j = infobuf.meta_size.obj.heap_size; ihinfobuf1 = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); args[0].j = infobuf.meta_size.attr.index_size; args[1].j = infobuf.meta_size.attr.heap_size; ihinfobuf2 = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); // get a reference to the H5O_info_t class cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5O_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass H5O_info_t failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(JJIIJJJJJLncsa/hdf/hdf5lib/structs/H5O_hdr_info_t;Lncsa/hdf/hdf5lib/structs/H5_ih_info_t;Lncsa/hdf/hdf5lib/structs/H5_ih_info_t;)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID H5O_info_t failed\n"); return NULL; } args[0].j = infobuf.fileno; args[1].j = infobuf.addr; args[2].i = infobuf.type; args[3].i = infobuf.rc; args[4].j = infobuf.num_attrs; args[5].j = infobuf.atime; args[6].j = infobuf.mtime; args[7].j = infobuf.ctime; args[8].j = infobuf.btime; args[9].l = hdrinfobuf; args[10].l = ihinfobuf1; args[11].l = ihinfobuf2; ret_info_t = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); return ret_info_t; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_info_by_name * Signature: (ILjava/lang/String;IIJI)Lncsa/hdf/hdf5lib/structs/H5O_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1info_1by_1name (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint access_id) { char *lName; herr_t status; H5O_info_t infobuf; jboolean isCopy; jclass cls; jmethodID constructor; jvalue args[12]; jobject hdrinfobuf; jobject ihinfobuf1; jobject ihinfobuf2; jobject ret_info_t = NULL; if (name == NULL) { h5nullArgument(env, "H5Oget_info_by_name: name is NULL"); return NULL; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Oget_info_by_name: name not pinned"); return NULL; } status = H5Oget_info_by_name((hid_t)loc_id, (const char*)lName, (H5O_info_t*)&infobuf, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { h5libraryError(env); return NULL; } // get a reference to the H5_hdr_info_t class cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5O_hdr_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass H5O_hdr_info_t failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(IIIIJJJJJJ)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID H5O_hdr_info_t failed\n"); return NULL; } args[0].i = infobuf.hdr.version; args[1].i = infobuf.hdr.nmesgs; args[2].i = infobuf.hdr.nchunks; args[3].i = infobuf.hdr.flags; args[4].j = infobuf.hdr.space.total; args[5].j = infobuf.hdr.space.meta; args[6].j = infobuf.hdr.space.mesg; args[7].j = infobuf.hdr.space.free; args[8].j = infobuf.hdr.mesg.present; args[9].j = infobuf.hdr.mesg.shared; hdrinfobuf = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); // get a reference to the H5_ih_info_t class cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5_ih_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass H5_ih_info_t failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(JJ)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID H5_ih_info_t failed\n"); return NULL; } args[0].j = infobuf.meta_size.obj.index_size; args[1].j = infobuf.meta_size.obj.heap_size; ihinfobuf1 = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); args[0].j = infobuf.meta_size.attr.index_size; args[1].j = infobuf.meta_size.attr.heap_size; ihinfobuf2 = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); // get a reference to the H5O_info_t class cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5O_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass H5O_info_t failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(JJIIJJJJJLncsa/hdf/hdf5lib/structs/H5O_hdr_info_t;Lncsa/hdf/hdf5lib/structs/H5_ih_info_t;Lncsa/hdf/hdf5lib/structs/H5_ih_info_t;)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID H5O_info_t failed\n"); return NULL; } args[0].j = infobuf.fileno; args[1].j = infobuf.addr; args[2].i = infobuf.type; args[3].i = infobuf.rc; args[4].j = infobuf.num_attrs; args[5].j = infobuf.atime; args[6].j = infobuf.mtime; args[7].j = infobuf.ctime; args[8].j = infobuf.btime; args[9].l = hdrinfobuf; args[10].l = ihinfobuf1; args[11].l = ihinfobuf2; ret_info_t = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); return ret_info_t; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_info_by_idx * Signature: (ILjava/lang/String;IIJI)Lncsa/hdf/hdf5lib/structs/H5O_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1info_1by_1idx (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint index_field, jint order, jlong link_n, jint access_id) { char *lName; herr_t status; H5O_info_t infobuf; jboolean isCopy; jclass cls; jmethodID constructor; jvalue args[12]; jobject hdrinfobuf; jobject ihinfobuf1; jobject ihinfobuf2; jobject ret_info_t = NULL; if (name == NULL) { h5nullArgument(env, "H5Oget_info_by_idx: name is NULL"); return NULL; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Oget_info_by_idx: name not pinned"); return NULL; } status = H5Oget_info_by_idx((hid_t)loc_id, (const char*)lName, (H5_index_t)index_field, (H5_iter_order_t)order, (hsize_t)link_n, (H5O_info_t*)&infobuf, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { h5libraryError(env); return NULL; } // get a reference to the H5_hdr_info_t class cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5O_hdr_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass H5O_hdr_info_t failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(IIIIJJJJJJ)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID H5O_hdr_info_t failed\n"); return NULL; } args[0].i = infobuf.hdr.version; args[1].i = infobuf.hdr.nmesgs; args[2].i = infobuf.hdr.nchunks; args[3].i = infobuf.hdr.flags; args[4].j = infobuf.hdr.space.total; args[5].j = infobuf.hdr.space.meta; args[6].j = infobuf.hdr.space.mesg; args[7].j = infobuf.hdr.space.free; args[8].j = infobuf.hdr.mesg.present; args[9].j = infobuf.hdr.mesg.shared; hdrinfobuf = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); // get a reference to the H5_ih_info_t class cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5_ih_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass H5_ih_info_t failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(JJ)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID H5_ih_info_t failed\n"); return NULL; } args[0].j = infobuf.meta_size.obj.index_size; args[1].j = infobuf.meta_size.obj.heap_size; ihinfobuf1 = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); args[0].j = infobuf.meta_size.attr.index_size; args[1].j = infobuf.meta_size.attr.heap_size; ihinfobuf2 = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); // get a reference to the H5O_info_t class cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5O_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass H5O_info_t failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(JJIIJJJJJLncsa/hdf/hdf5lib/structs/H5O_hdr_info_t;Lncsa/hdf/hdf5lib/structs/H5_ih_info_t;Lncsa/hdf/hdf5lib/structs/H5_ih_info_t;)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID H5O_info_t failed\n"); return NULL; } args[0].j = infobuf.fileno; args[1].j = infobuf.addr; args[2].i = infobuf.type; args[3].i = infobuf.rc; args[4].j = infobuf.num_attrs; args[5].j = infobuf.atime; args[6].j = infobuf.mtime; args[7].j = infobuf.ctime; args[8].j = infobuf.btime; args[9].l = hdrinfobuf; args[10].l = ihinfobuf1; args[11].l = ihinfobuf2; ret_info_t = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); return ret_info_t; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Olink * Signature: (IILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Olink (JNIEnv *env, jclass clss, jint cur_loc_id, jint dst_loc_id, jstring dst_name, jint create_id, jint access_id) { char *lDstName; jboolean isCopy; herr_t status = -1; if (dst_name == NULL) { h5nullArgument(env, "H5Ocreate_hard: dst_name is NULL"); return; } lDstName = (char*)ENVPTR->GetStringUTFChars(ENVPAR dst_name, &isCopy); if (lDstName == NULL) { h5JNIFatalError( env, "H5Ocreate_hard: dst_name not pinned"); return; } status = H5Olink((hid_t)cur_loc_id, (hid_t)dst_loc_id, (const char*)lDstName, (hid_t)create_id, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR dst_name, lDstName); if (status < 0) { h5libraryError(env); return; } return; } herr_t H5O_iterate_cb(hid_t g_id, const char *name, const H5O_info_t *info, void *op_data) { JNIEnv *cbenv; jint status; jclass cls; jmethodID mid; jstring str; jmethodID constructor; jvalue args[12]; jobject hdrinfobuf; jobject ihinfobuf1; jobject ihinfobuf2; jobject cb_info_t = NULL; if(JVMPTR->AttachCurrentThread(JVMPAR2 (void**)&cbenv, NULL) != 0) { /* printf("JNI H5O_iterate_cb error: AttachCurrentThread failed\n"); */ JVMPTR->DetachCurrentThread(JVMPAR); return -1; } cls = CBENVPTR->GetObjectClass(CBENVPAR visit_callback); if (cls == 0) { /* printf("JNI H5O_iterate_cb error: GetObjectClass failed\n"); */ JVMPTR->DetachCurrentThread(JVMPAR); return -1; } mid = CBENVPTR->GetMethodID(CBENVPAR cls, "callback", "(ILjava/lang/String;Lncsa/hdf/hdf5lib/structs/H5O_info_t;Lncsa/hdf/hdf5lib/callbacks/H5O_iterate_t;)I"); if (mid == 0) { /* printf("JNI H5O_iterate_cb error: GetMethodID failed\n"); */ JVMPTR->DetachCurrentThread(JVMPAR); return -1; } str = CBENVPTR->NewStringUTF(CBENVPAR name); // get a reference to the H5_hdr_info_t class cls = CBENVPTR->FindClass(CBENVPAR "ncsa/hdf/hdf5lib/structs/H5O_hdr_info_t"); if (cls == 0) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } // get a reference to the constructor; the name is constructor = CBENVPTR->GetMethodID(CBENVPAR cls, "", "(IIIIJJJJJJ)V"); if (constructor == 0) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } args[0].i = info->hdr.version; args[1].i = info->hdr.nmesgs; args[2].i = info->hdr.nchunks; args[3].i = info->hdr.flags; args[4].j = info->hdr.space.total; args[5].j = info->hdr.space.meta; args[6].j = info->hdr.space.mesg; args[7].j = info->hdr.space.free; args[8].j = info->hdr.mesg.present; args[9].j = info->hdr.mesg.shared; hdrinfobuf = CBENVPTR->NewObjectA(CBENVPAR cls, constructor, args); // get a reference to the H5_ih_info_t class cls = CBENVPTR->FindClass(CBENVPAR "ncsa/hdf/hdf5lib/structs/H5_ih_info_t"); if (cls == 0) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } // get a reference to the constructor; the name is constructor = CBENVPTR->GetMethodID(CBENVPAR cls, "", "(JJ)V"); if (constructor == 0) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } args[0].j = info->meta_size.obj.index_size; args[1].j = info->meta_size.obj.heap_size; ihinfobuf1 = CBENVPTR->NewObjectA(CBENVPAR cls, constructor, args); args[0].j = info->meta_size.attr.index_size; args[1].j = info->meta_size.attr.heap_size; ihinfobuf2 = CBENVPTR->NewObjectA(CBENVPAR cls, constructor, args); // get a reference to the H5O_info_t class cls = CBENVPTR->FindClass(CBENVPAR "ncsa/hdf/hdf5lib/structs/H5O_info_t"); if (cls == 0) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } // get a reference to the constructor; the name is constructor = CBENVPTR->GetMethodID(CBENVPAR cls, "", "(JJIIJJJJJLncsa/hdf/hdf5lib/structs/H5O_hdr_info_t;Lncsa/hdf/hdf5lib/structs/H5_ih_info_t;Lncsa/hdf/hdf5lib/structs/H5_ih_info_t;)V"); if (constructor == 0) { JVMPTR->DetachCurrentThread(JVMPAR); return -1; } args[0].j = info->fileno; args[1].j = info->addr; args[2].i = info->type; args[3].i = info->rc; args[4].j = info->num_attrs; args[5].j = info->atime; args[6].j = info->mtime; args[7].j = info->ctime; args[8].j = info->btime; args[9].l = hdrinfobuf; args[10].l = ihinfobuf1; args[11].l = ihinfobuf2; cb_info_t = CBENVPTR->NewObjectA(CBENVPAR cls, constructor, args); status = CBENVPTR->CallIntMethod(CBENVPAR visit_callback, mid, g_id, str, cb_info_t, op_data); JVMPTR->DetachCurrentThread(JVMPAR); return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ovisit * Signature: (IIILjava/lang/Object;Ljava/lang/Object;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ovisit (JNIEnv *env, jclass clss, jint grp_id, jint idx_type, jint order, jobject callback_op, jobject op_data) { herr_t status = -1; ENVPTR->GetJavaVM(ENVPAR &jvm); visit_callback = callback_op; if (op_data == NULL) { h5nullArgument(env, "H5Ovisit: op_data is NULL"); return -1; } if (callback_op == NULL) { h5nullArgument(env, "H5Ovisit: callback_op is NULL"); return -1; } status = H5Ovisit((hid_t)grp_id, (H5_index_t)idx_type, (H5_iter_order_t)order, (H5O_iterate_t)H5O_iterate_cb, (void*)op_data); if (status < 0) { h5libraryError(env); return status; } return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ovisit_by_name * Signature: (ILjava/lang/String;IILjava/lang/Object;Ljava/lang/Object;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ovisit_1by_1name (JNIEnv *env, jclass clss, jint grp_id, jstring name, jint idx_type, jint order, jobject callback_op, jobject op_data, jint access_id) { jboolean isCopy; char *lName; herr_t status = -1; ENVPTR->GetJavaVM(ENVPAR &jvm); visit_callback = callback_op; if (name == NULL) { h5nullArgument(env, "H5Ovisit_by_name: name is NULL"); return -1; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Ovisit_by_name: name not pinned"); return -1; } if (op_data == NULL) { h5nullArgument(env, "H5Ovisit_by_name: op_data is NULL"); return -1; } if (callback_op == NULL) { h5nullArgument(env, "H5Ovisit_by_name: callback_op is NULL"); return -1; } status = H5Ovisit_by_name((hid_t)grp_id, (const char*)lName, (H5_index_t)idx_type, (H5_iter_order_t)order, (H5O_iterate_t)H5O_iterate_cb, (void*)op_data, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { h5libraryError(env); return status; } return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oset_comment * Signature: (ILjava/lang/String;)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oset_1comment (JNIEnv *env, jclass clss, jint loc_id, jstring comment) { herr_t status; char *oComment; jboolean isCopy; if (comment == NULL) { oComment = NULL; } else { oComment = (char *)ENVPTR->GetStringUTFChars(ENVPAR comment, &isCopy); if (oComment == NULL) { h5JNIFatalError( env, "H5Oset_comment: comment not pinned"); return; } } status = H5Oset_comment((hid_t)loc_id, (const char*)oComment); ENVPTR->ReleaseStringUTFChars(ENVPAR comment, oComment); if (status < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oset_comment_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oset_1comment_1by_1name (JNIEnv *env, jclass clss, jint loc_id, jstring name, jstring comment, jint access_id) { herr_t status; char *oName; char *oComment; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Oset_comment_by_name: name is NULL"); return; } oName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (oName == NULL) { h5JNIFatalError( env, "H5Oset_comment_by_name: name not pinned"); return; } if (comment == NULL) { oComment = NULL; } else { oComment = (char *)ENVPTR->GetStringUTFChars(ENVPAR comment,&isCopy); if (oComment == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, oName); h5JNIFatalError( env, "H5Oset_comment_by_name: comment not pinned"); return; } } status = H5Oset_comment_by_name((hid_t)loc_id, (const char*)oName, (const char*)oComment, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR comment, oComment); ENVPTR->ReleaseStringUTFChars(ENVPAR name, oName); if (status < 0) { h5libraryError(env); } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_comment * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1comment (JNIEnv *env, jclass clss, jint loc_id) { char *oComment; size_t buf_size; ssize_t status; jstring str; /* get the length of the comment */ buf_size = H5Oget_comment((hid_t)loc_id, NULL, 0); if (buf_size < 0) { h5badArgument( env, "H5Oget_comment: buf_size < 0"); return NULL; } if (buf_size == 0) { return NULL; } buf_size++; /* add extra space for the null terminator */ oComment = (char *)malloc(sizeof(char)*buf_size); if (oComment == NULL) { /* exception -- out of memory */ h5outOfMemory( env, "H5Oget_comment: malloc failed"); return NULL; } status = H5Oget_comment((hid_t)loc_id, (char*)oComment, (size_t)buf_size); if (status >= 0) { /* may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR oComment); free(oComment); if (str == NULL) { h5JNIFatalError( env, "H5Oget_comment: return string not allocated"); return NULL; } } else { free(oComment); h5libraryError(env); return NULL; } return (jstring)str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_comment_by_name * Signature: (ILjava/lang/String;I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1comment_1by_1name (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint access_id) { char *oComment; char *oName; size_t buf_size; ssize_t status; jstring str; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Oget_comment_by_name: name is NULL"); return NULL; } oName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (oName == NULL) { h5JNIFatalError( env, "H5Oget_comment_by_name: name not pinned"); return NULL; } /* get the length of the comment */ buf_size = H5Oget_comment_by_name((hid_t)loc_id, (const char*)oName, NULL, 0, (hid_t)access_id); if (buf_size < 0) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, oName); h5badArgument( env, "H5Oget_comment_by_name: buf_size < 0"); return NULL; } if (buf_size == 0) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, oName); return NULL; } buf_size++; /* add extra space for the null terminator */ oComment = (char *)malloc(sizeof(char)*buf_size); if (oComment == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, oName); h5outOfMemory( env, "H5Oget_comment_by_name: malloc failed"); return NULL; } status = H5Oget_comment_by_name((hid_t)loc_id, (const char*)oName, (char*)oComment, (size_t)buf_size, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, oName); if (status >= 0) { /* may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR oComment); free(oComment); if (str == NULL) { h5JNIFatalError( env, "H5Oget_comment_by_name: return string not allocated"); return NULL; } } else { free(oComment); h5libraryError(env); return NULL; } return (jstring)str; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5util.h0000644002344600011330000000352412326542262015747 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF5. The full HDF5 copyright notice, including * * terms governing use, modification, and redistribution, is contained in * * the files COPYING and Copyright.html. COPYING can be found at the root * * of the source code distribution tree; Copyright.html can be found at the * * root level of an installed copy of the electronic HDF5 document set and * * is linked from the top-level documents page. It can also be found at * * http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have * * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef H5UTIL_H__ #define H5UTIL_H__ #ifndef SUCCEED #define SUCCEED 0 #endif #ifndef FAIL #define FAIL (-1) #endif typedef struct h5str_t { char *s; size_t max; /* the allocated size of the string */ } h5str_t; void h5str_new (h5str_t *str, size_t len); void h5str_free (h5str_t *str); void h5str_resize (h5str_t *str, size_t new_len); char* h5str_append (h5str_t *str, const char* cstr); int h5str_sprintf(h5str_t *str, hid_t container, hid_t tid, void *buf, int expand_data); void h5str_array_free(char **strs, size_t len); int h5str_dump_simple_dset(FILE *stream, hid_t dset, int binary_order); int h5str_dump_region_blocks_data(h5str_t *str, hid_t region, hid_t region_obj); int h5str_dump_region_points_data(h5str_t *str, hid_t region, hid_t region_obj); #endif /* H5UTIL_H__ */ hdf-java-2.11.0/native/hdf5lib/h5util.c0000644002344600011330000020275512326542262015751 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF5. The full HDF5 copyright notice, including * * terms governing use, modification, and redistribution, is contained in * * the files COPYING and Copyright.html. COPYING can be found at the root * * of the source code distribution tree; Copyright.html can be found at the * * root level of an installed copy of the electronic HDF5 document set and * * is linked from the top-level documents page. It can also be found at * * http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have * * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifdef __cplusplus extern "C" { #endif #include #include #include #include "hdf5.h" #include "h5util.h" #include "jni.h" /* size of hyperslab buffer when a dataset is bigger than H5TOOLS_MALLOCSIZE */ hsize_t H5TOOLS_BUFSIZE = (32 * 1024 * 1024); /* 32 MB */ int H5TOOLS_TEXT_BLOCK = 16; /* Number of elements on a line in a text export file */ JavaVM *jvm; jobject visit_callback; int h5str_dump_region_blocks(h5str_t *str, hid_t region, hid_t region_obj); int h5str_dump_region_points(h5str_t *str, hid_t region, hid_t region_obj); int h5str_is_zero(const void *_mem, size_t size); hid_t h5str_get_native_type(hid_t type); hid_t h5str_get_little_endian_type(hid_t type); hid_t h5str_get_big_endian_type(hid_t type); htri_t h5str_detect_vlen(hid_t tid); htri_t h5str_detect_vlen_str(hid_t tid); int h5tools_dump_simple_data(FILE *stream, hid_t container, hid_t type, void *_mem, hsize_t nelmts); int h5str_render_bin_output(FILE *stream, hid_t container, hid_t tid, void *_mem, hsize_t block_nelmts); int render_bin_output_region_data_blocks(FILE *stream, hid_t region_id, hid_t container, int ndims, hid_t type_id, hssize_t nblocks, hsize_t *ptdata); int render_bin_output_region_blocks(FILE *stream, hid_t region_space, hid_t region_id, hid_t container); int render_bin_output_region_data_points(FILE *stream, hid_t region_space, hid_t region_id, hid_t container, int ndims, hid_t type_id, hssize_t npoints, hsize_t *ptdata); int render_bin_output_region_points(FILE *stream, hid_t region_space, hid_t region_id, hid_t container); /** frees memory held by array of strings */ void h5str_array_free(char **strs, size_t len) { size_t i; if (!strs || len <= 0) return; for (i = 0; i < len; i++) { if (*(strs + i)) free(*(strs + i)); } /* for (i=0; i 0) { str->s = (char *) malloc(len); str->max = len; str->s[0] = '\0'; } } /** free string memory */ void h5str_free(h5str_t *str) { if (str && str->max > 0) { free(str->s); memset(str, 0, sizeof(h5str_t)); } } /** reset the max size of the string */ void h5str_resize(h5str_t *str, size_t new_len) { char *new_str; if (!str || new_len <= 0 || str->max == new_len) return; new_str = (char *) malloc(new_len); if (new_len > str->max) /* increase memory */ strcpy(new_str, str->s); else strncpy(new_str, str->s, new_len - 1); free(str->s); str->s = new_str; str->max = new_len; } /* appends a copy of the string pointed to by cstr to the h5str. Return Value: the char string point to str->s */ char* h5str_append(h5str_t *str, const char* cstr) { size_t len; if (!str) return NULL; else if (!cstr) return str->s; len = strlen(str->s) + strlen(cstr); while (len >= str->max) /* not enough to hold the new string, double the space */ { h5str_resize(str, str->max * 2); } return strcat(str->s, cstr); } /** print value of a data point into string. Return Value: On success, the total number of characters printed is returned. On error, a negative number is returned. */ int h5str_sprintf(h5str_t *str, hid_t container, hid_t tid, void *ptr, int expand_data) { unsigned char tmp_uchar = 0; char tmp_char = 0; unsigned short tmp_ushort = 0; short tmp_short = 0; unsigned int tmp_uint = 0; int tmp_int = 0; unsigned long tmp_ulong = 0; long tmp_long = 0; unsigned long long tmp_ullong = 0; long long tmp_llong = 0; float tmp_float = 0.0; double tmp_double = 0.0; long double tmp_ldouble = 0.0; static char fmt_llong[8], fmt_ullong[8]; hid_t mtid = -1; size_t offset; size_t nll; char *this_str; int this_strlen; int i; int n; int len; hvl_t *vlptr; char *cptr = (char*) ptr; unsigned char *ucptr = (unsigned char*) ptr; H5T_class_t tclass = H5Tget_class(tid); size_t size = H5Tget_size(tid); H5T_sign_t nsign = H5Tget_sign(tid); int bdata_print = 0; if (!str || !ptr) return -1; /* Build default formats for long long types */ if (!fmt_llong[0]) { sprintf(fmt_llong, "%%%sd", H5_PRINTF_LL_WIDTH); sprintf(fmt_ullong, "%%%su", H5_PRINTF_LL_WIDTH); } this_str = NULL; this_strlen = 0; switch (tclass) { case H5T_FLOAT: if (sizeof(float) == size) { /* if (H5Tequal(tid, H5T_NATIVE_FLOAT)) */ memcpy(&tmp_float, ptr, sizeof(float)); this_str = (char*) malloc(25); sprintf(this_str, "%g", tmp_float); } else if (sizeof(double) == size) { /* if (H5Tequal(tid, H5T_NATIVE_DOUBLE)) */ memcpy(&tmp_double, ptr, sizeof(double)); this_str = (char*) malloc(25); sprintf(this_str, "%g", tmp_double); } #if H5_SIZEOF_LONG_DOUBLE !=0 else if (sizeof(long double) == size) { /* if (H5Tequal(tid, H5T_NATIVE_LDOUBLE)) */ memcpy(&tmp_ldouble, ptr, sizeof(long double)); this_str = (char*) malloc(27); sprintf(this_str, "%Lf", tmp_ldouble); } #endif break; case H5T_STRING: { char *tmp_str; size = 0; if (H5Tis_variable_str(tid)) { tmp_str = *(char**) ptr; if (tmp_str != NULL) size = strlen(tmp_str); } else { tmp_str = cptr; } /* Check for NULL pointer for string */ if (tmp_str == NULL) { this_str = (char *) malloc(5); strncpy(this_str, "NULL", 4); } else { if (size > 0) { this_str = (char *) malloc(size+1); strncpy(this_str, tmp_str, size); } } } break; case H5T_INTEGER: if (sizeof(char) == size) { if(H5T_SGN_NONE == nsign) { /* if (H5Tequal(tid, H5T_NATIVE_UCHAR)) */ memcpy(&tmp_uchar, ptr, sizeof(unsigned char)); this_str = (char*) malloc(7); sprintf(this_str, "%u", tmp_uchar); } else { /* if (H5Tequal(tid, H5T_NATIVE_SCHAR)) */ memcpy(&tmp_char, ptr, sizeof(char)); this_str = (char*) malloc(7); sprintf(this_str, "%hhd", tmp_char); } } else if (sizeof(int) == size) { if(H5T_SGN_NONE == nsign) { /* if (H5Tequal(tid, H5T_NATIVE_UINT)) */ memcpy(&tmp_uint, ptr, sizeof(unsigned int)); this_str = (char*) malloc(14); sprintf(this_str, "%u", tmp_uint); } else { /* if (H5Tequal(tid, H5T_NATIVE_INT)) */ memcpy(&tmp_int, ptr, sizeof(int)); this_str = (char*) malloc(14); sprintf(this_str, "%d", tmp_int); } } else if (sizeof(short) == size) { if(H5T_SGN_NONE == nsign) { /* if (H5Tequal(tid, H5T_NATIVE_USHORT)) */ memcpy(&tmp_ushort, ptr, sizeof(unsigned short)); this_str = (char*) malloc(9); sprintf(this_str, "%u", tmp_ushort); } else { /* if (H5Tequal(tid, H5T_NATIVE_SHORT)) */ memcpy(&tmp_short, ptr, sizeof(short)); this_str = (char*) malloc(9); sprintf(this_str, "%d", tmp_short); } } else if (sizeof(long) == size) { if(H5T_SGN_NONE == nsign) { /* if (H5Tequal(tid, H5T_NATIVE_ULONG)) */ memcpy(&tmp_ulong, ptr, sizeof(unsigned long)); this_str = (char*) malloc(23); sprintf(this_str, "%lu", tmp_ulong); } else { /* if (H5Tequal(tid, H5T_NATIVE_LONG)) */ memcpy(&tmp_long, ptr, sizeof(long)); this_str = (char*) malloc(23); sprintf(this_str, "%ld", tmp_long); } } else if (sizeof(long long) == size) { if(H5T_SGN_NONE == nsign) { /* if (H5Tequal(tid, H5T_NATIVE_ULLONG)) */ memcpy(&tmp_ullong, ptr, sizeof(unsigned long long)); this_str = (char*) malloc(25); sprintf(this_str, fmt_ullong, tmp_ullong); } else { /* if (H5Tequal(tid, H5T_NATIVE_LLONG)) */ memcpy(&tmp_llong, ptr, sizeof(long long)); this_str = (char*) malloc(25); sprintf(this_str, fmt_llong, tmp_llong); } } break; case H5T_COMPOUND: { unsigned i; n = H5Tget_nmembers(tid); h5str_append(str, " {"); for (i = 0; i < n; i++) { offset = H5Tget_member_offset(tid, i); mtid = H5Tget_member_type(tid, i); h5str_sprintf(str, container, mtid, cptr + offset, expand_data); if (i < n - 1) h5str_append(str, ", "); H5Tclose(mtid); } h5str_append(str, "} "); } break; case H5T_ENUM: { char enum_name[1024]; if (H5Tenum_nameof(tid, ptr, enum_name, sizeof enum_name) >= 0) { h5str_append(str, enum_name); } else { size_t i; nll = H5Tget_size(tid); this_str = (char*) malloc(4 * (nll + 1)); if (1 == nll) { sprintf(this_str, "0x%02x", ucptr[0]); } else { for (i = 0; i < (int)nll; i++) sprintf(this_str, "%s%02x", i ? ":" : "", ucptr[i]); } } } break; case H5T_REFERENCE: if (h5str_is_zero(ptr, size)) { h5str_append(str, "NULL"); } else { if (H5R_DSET_REG_REF_BUF_SIZE == size) { /* if (H5Tequal(tid, H5T_STD_REF_DSETREG)) */ /* * Dataset region reference -- * show the type and the referenced object */ char ref_name[1024]; hid_t region_obj; hid_t region; H5S_sel_type region_type; /* get name of the dataset the region reference points to using H5Rget_name */ region_obj = H5Rdereference(container, H5R_DATASET_REGION, ptr); if (region_obj >= 0) { region = H5Rget_region(container, H5R_DATASET_REGION, ptr); if (region >= 0) { if(expand_data) { region_type = H5Sget_select_type(region); if(region_type==H5S_SEL_POINTS) { h5str_dump_region_points_data(str, region, region_obj); } else { h5str_dump_region_blocks_data(str, region, region_obj); } } else { if(H5Rget_name(region_obj, H5R_DATASET_REGION, ptr, (char*)ref_name, 1024) >= 0) { h5str_append(str, ref_name); } region_type = H5Sget_select_type(region); if(region_type==H5S_SEL_POINTS) { h5str_append(str, " REGION_TYPE POINT"); h5str_dump_region_points(str, region, region_obj); } else { h5str_append(str, " REGION_TYPE BLOCK"); h5str_dump_region_blocks(str, region, region_obj); } } H5Sclose(region); } H5Dclose(region_obj); } } else if (H5R_OBJ_REF_BUF_SIZE == size) { /* if (H5Tequal(tid, H5T_STD_REF_OBJ)) */ /* * Object references -- show the type and OID of the referenced * object. */ H5O_info_t oi; hid_t obj; this_str = (char*) malloc(64); obj = H5Rdereference(container, H5R_OBJECT, ptr); H5Oget_info(obj, &oi); /* Print object data and close object */ sprintf(this_str, "%u-%lu", (unsigned) oi.type, oi.addr); H5Oclose(obj); } } break; case H5T_ARRAY: { int rank = 0; hsize_t i, dims[H5S_MAX_RANK], total_elmts; h5str_append(str, "[ "); mtid = H5Tget_super(tid); size = H5Tget_size(mtid); rank = H5Tget_array_ndims(tid); H5Tget_array_dims2(tid, dims); total_elmts = 1; for (i = 0; i < rank; i++) total_elmts *= dims[i]; for (i = 0; i < total_elmts; i++) { h5str_sprintf(str, container, mtid, cptr + i * size, expand_data); if (i < total_elmts - 1) h5str_append(str, ", "); } H5Tclose(mtid); h5str_append(str, "] "); } break; case H5T_VLEN: { unsigned int i; mtid = H5Tget_super(tid); size = H5Tget_size(mtid); vlptr = (hvl_t *) cptr; nll = vlptr->len; for (i = 0; i < (int)nll; i++) { h5str_sprintf(str, container, mtid, ((char *) (vlptr->p)) + i * size, expand_data); if (i < (int)nll - 1) h5str_append(str, ", "); } H5Tclose(mtid); } break; default: { /* All other types get printed as hexadecimal */ size_t i; nll = H5Tget_size(tid); this_str = (char*) malloc(4 * (nll + 1)); if (1 == nll) { sprintf(this_str, "0x%02x", ucptr[0]); } else { for (i = 0; i < (int)nll; i++) sprintf(this_str, "%s%02x", i ? ":" : "", ucptr[i]); } } break; } /* end switch */ if (this_str) { h5str_append(str, this_str); this_strlen = strlen(str->s); free(this_str); } return this_strlen; } /*------------------------------------------------------------------------- * Purpose: Print the data values from a dataset referenced by region blocks. * * Description: * This is a special case subfunction to print the data in a region reference of type blocks. * * Return: * The function returns FAIL if there was an error, otherwise SUCEED *------------------------------------------------------------------------- */ int h5str_print_region_data_blocks(hid_t region_id, h5str_t *str, int ndims, hid_t type_id, hssize_t nblocks, hsize_t *ptdata) { hsize_t *dims1 = NULL; hsize_t *start = NULL; hsize_t *count = NULL; hsize_t blkndx; hsize_t total_size[H5S_MAX_RANK]; unsigned int region_flags; /* buffer extent flags */ hsize_t numelem; hsize_t numindex; size_t jndx; unsigned indx; int type_size; int ret_value = SUCCEED; hid_t mem_space = -1; hid_t sid1 = -1; void *region_buf = NULL; /* Get the dataspace of the dataset */ if((sid1 = H5Dget_space(region_id)) >= 0) { /* Allocate space for the dimension array */ if((dims1 = (hsize_t *) malloc(sizeof(hsize_t) * ndims)) != NULL) { /* find the dimensions of each data space from the block coordinates */ numelem = 1; for (jndx = 0; jndx < ndims; jndx++) { dims1[jndx] = ptdata[jndx + ndims] - ptdata[jndx] + 1; numelem = dims1[jndx] * numelem; } /* Create dataspace for reading buffer */ if((mem_space = H5Screate_simple(ndims, dims1, NULL)) >= 0) { if((type_size = H5Tget_size(type_id)) > 0) { if((region_buf = malloc(type_size * (size_t)numelem)) != NULL) { /* Select (x , x , ..., x ) x (y , y , ..., y ) hyperslab for reading memory dataset */ /* 1 2 n 1 2 n */ if((start = (hsize_t *) malloc(sizeof(hsize_t) * ndims)) != NULL) { if((count = (hsize_t *) malloc(sizeof(hsize_t) * ndims)) != NULL) { for (blkndx = 0; blkndx < nblocks; blkndx++) { for (indx = 0; indx < ndims; indx++) { start[indx] = ptdata[indx + blkndx * ndims * 2]; count[indx] = dims1[indx]; } if(H5Sselect_hyperslab(sid1, H5S_SELECT_SET, start, NULL, count, NULL) >= 0) { if(H5Dread(region_id, type_id, mem_space, sid1, H5P_DEFAULT, region_buf) >= 0) { if(H5Sget_simple_extent_dims(mem_space, total_size, NULL) >= 0) { for (numindex = 0; numindex < numelem; numindex++) { h5str_sprintf(str, region_id, type_id, ((char*)region_buf + numindex * type_size), 1); if (numindex + 1 < numelem) h5str_append(str, ", "); } /* end for (jndx = 0; jndx < numelem; jndx++, region_elmtno++, ctx.cur_elmt++) */ } /* end if(H5Sget_simple_extent_dims(mem_space, total_size, NULL) >= 0) */ } /* end if(H5Dread(region_id, type_id, mem_space, sid1, H5P_DEFAULT, region_buf) >= 0) */ } /* end if(H5Sselect_hyperslab(sid1, H5S_SELECT_SET, start, NULL, count, NULL) >= 0) */ } /* end for (blkndx = 0; blkndx < nblocks; blkndx++) */ free(count); } /* end if((count = (hsize_t *) HDmalloc(sizeof(hsize_t) * ndims)) != NULL) */ else ret_value = -1; free(start); } /* end if((start = (hsize_t *) HDmalloc(sizeof(hsize_t) * ndims)) != NULL) */ else ret_value = -1; free(region_buf); } /* end if((region_buf = HDmalloc(type_size * (size_t)numelem)) != NULL) */ else ret_value = -1; } /* end if((type_size = H5Tget_size(type_id)) > 0) */ else ret_value = -1; if(H5Sclose(mem_space) < 0) ret_value = -1; } /* end if((mem_space = H5Screate_simple(ndims, dims1, NULL)) >= 0) */ else ret_value = -1; free(dims1); } /* end if((dims1 = (hsize_t *) HDmalloc(sizeof(hsize_t) * ndims)) != NULL) */ else ret_value = -1; if(H5Sclose(sid1) < 0) ret_value = -1; } /* end if((sid1 = H5Dget_space(region_id)) >= 0) */ else ret_value = -1; return ret_value; } int h5str_dump_region_blocks_data(h5str_t *str, hid_t region, hid_t region_id) { int ret_value = 0; hssize_t nblocks; hsize_t alloc_size; hsize_t *ptdata; hid_t dtype = -1; hid_t type_id = -1; char tmp_str[256]; int ndims = H5Sget_simple_extent_ndims(region); /* * This function fails if the region does not have blocks. */ H5E_BEGIN_TRY { nblocks = H5Sget_select_hyper_nblocks(region); } H5E_END_TRY; /* Print block information */ if (nblocks > 0) { int i; alloc_size = nblocks * ndims * 2 * sizeof(ptdata[0]); if (alloc_size == (hsize_t)((size_t) alloc_size)) { ptdata = (hsize_t *) malloc((size_t) alloc_size); H5Sget_select_hyper_blocklist(region, (hsize_t) 0, (hsize_t) nblocks, ptdata); if((dtype = H5Dget_type(region_id)) >= 0) { if((type_id = H5Tget_native_type(dtype, H5T_DIR_DEFAULT)) >= 0) { h5str_print_region_data_blocks(region_id, str, ndims, type_id, nblocks, ptdata); if(H5Tclose(type_id) < 0) ret_value = -1; } /* end if((type_id = H5Tget_native_type(dtype, H5T_DIR_DEFAULT)) >= 0) */ else ret_value = -1; if(H5Tclose(dtype) < 0) ret_value = -1; } /* end if((dtype = H5Dget_type(region_id)) >= 0) */ else ret_value = -1; free(ptdata); } /* if (alloc_size == (hsize_t)((size_t)alloc_size)) */ } /* if (nblocks > 0) */ return ret_value; } int h5str_dump_region_blocks(h5str_t *str, hid_t region, hid_t region_id) { int ret_value = 0; hssize_t nblocks; hsize_t alloc_size; hsize_t *ptdata; hid_t dtype = -1; hid_t type_id = -1; char tmp_str[256]; int ndims = H5Sget_simple_extent_ndims(region); /* * This function fails if the region does not have blocks. */ H5E_BEGIN_TRY { nblocks = H5Sget_select_hyper_nblocks(region); } H5E_END_TRY; /* Print block information */ if (nblocks > 0) { int i; alloc_size = nblocks * ndims * 2 * sizeof(ptdata[0]); if (alloc_size == (hsize_t)((size_t) alloc_size)) { ptdata = (hsize_t *) malloc((size_t) alloc_size); H5Sget_select_hyper_blocklist(region, (hsize_t) 0, (hsize_t) nblocks, ptdata); h5str_append(str, " {"); for (i = 0; i < nblocks; i++) { int j; h5str_append(str, " "); /* Start coordinates and opposite corner */ for (j = 0; j < ndims; j++) { tmp_str[0] = '\0'; sprintf(tmp_str, "%s%lu", j ? "," : "(", (unsigned long) ptdata[i * 2 * ndims + j]); h5str_append(str, tmp_str); } for (j = 0; j < ndims; j++) { tmp_str[0] = '\0'; sprintf(tmp_str, "%s%lu", j ? "," : ")-(", (unsigned long) ptdata[i * 2 * ndims + j + ndims]); h5str_append(str, tmp_str); } h5str_append(str, ") "); tmp_str[0] = '\0'; } h5str_append(str, " }"); free(ptdata); } /* if (alloc_size == (hsize_t)((size_t)alloc_size)) */ } /* if (nblocks > 0) */ return ret_value; } /*------------------------------------------------------------------------- * Purpose: Print the data values from a dataset referenced by region points. * * Description: * This is a special case subfunction to print the data in a region reference of type points. * * Return: * The function returns FAIL on error, otherwise SUCCEED *------------------------------------------------------------------------- */ int h5str_print_region_data_points(hid_t region_space, hid_t region_id, h5str_t *str, int ndims, hid_t type_id, hssize_t npoints, hsize_t *ptdata) { hsize_t *dims1 = NULL; hsize_t total_size[H5S_MAX_RANK]; size_t jndx; unsigned indx; int type_size; int ret_value = SUCCEED; unsigned int region_flags; /* buffer extent flags */ hid_t mem_space = -1; void *region_buf = NULL; char tmp_str[256]; /* Allocate space for the dimension array */ if((dims1 = (hsize_t *) malloc(sizeof(hsize_t) * ndims)) != NULL) { dims1[0] = npoints; /* Create dataspace for reading buffer */ if((mem_space = H5Screate_simple(1, dims1, NULL)) >= 0) { if((type_size = H5Tget_size(type_id)) > 0) { if((region_buf = malloc(type_size * (size_t)npoints)) != NULL) { if(H5Dread(region_id, type_id, mem_space, region_space, H5P_DEFAULT, region_buf) >= 0) { for (jndx = 0; jndx < npoints; jndx++) { if(H5Sget_simple_extent_dims(mem_space, total_size, NULL) >= 0) { h5str_sprintf(str, region_id, type_id, ((char*)region_buf + jndx * type_size), 1); if (jndx + 1 < npoints) h5str_append(str, ", "); } /* end if(H5Sget_simple_extent_dims(mem_space, total_size, NULL) >= 0) */ } /* end for (jndx = 0; jndx < npoints; jndx++, elmtno++) */ } /* end if(H5Dread(region_id, type_id, mem_space, region_space, H5P_DEFAULT, region_buf) >= 0) */ else ret_value = -1; free(region_buf); } /* end if((region_buf = HDmalloc(type_size * (size_t)npoints)) != NULL) */ else ret_value = -1; } /* end if((type_size = H5Tget_size(type_id)) > 0) */ else ret_value = -1; if(H5Sclose(mem_space) < 0) ret_value = -1; } /* end if((mem_space = H5Screate_simple(1, dims1, NULL)) >= 0) */ else ret_value = -1; free(dims1); } /* end if((dims1 = (hsize_t *) HDmalloc(sizeof(hsize_t) * ndims)) != NULL) */ else ret_value = -1; return ret_value; } int h5str_dump_region_points_data(h5str_t *str, hid_t region, hid_t region_id) { int ret_value = 0; hssize_t npoints; hsize_t alloc_size; hsize_t *ptdata; char tmp_str[256]; hid_t dtype = -1; hid_t type_id = -1; int ndims = H5Sget_simple_extent_ndims(region); /* * This function fails if the region does not have points. */ H5E_BEGIN_TRY { npoints = H5Sget_select_elem_npoints(region); } H5E_END_TRY; /* Print point information */ if (npoints > 0) { int i; alloc_size = npoints * ndims * sizeof(ptdata[0]); if (alloc_size == (hsize_t)((size_t) alloc_size)) { ptdata = (hsize_t *) malloc((size_t) alloc_size); H5Sget_select_elem_pointlist(region, (hsize_t) 0, (hsize_t) npoints, ptdata); if((dtype = H5Dget_type(region_id)) >= 0) { if((type_id = H5Tget_native_type(dtype, H5T_DIR_DEFAULT)) >= 0) { h5str_print_region_data_points(region, region_id, str, ndims, type_id, npoints, ptdata); if(H5Tclose(type_id) < 0) ret_value = -1; } /* end if((type_id = H5Tget_native_type(dtype, H5T_DIR_DEFAULT)) >= 0) */ else ret_value = -1; if(H5Tclose(dtype) < 0) ret_value = -1; } /* end if((dtype = H5Dget_type(region_id)) >= 0) */ else ret_value = -1; free(ptdata); } } return ret_value; } int h5str_dump_region_points(h5str_t *str, hid_t region, hid_t region_id) { int ret_value = 0; hssize_t npoints; hsize_t alloc_size; hsize_t *ptdata; char tmp_str[256]; hid_t dtype = -1; hid_t type_id = -1; int ndims = H5Sget_simple_extent_ndims(region); /* * This function fails if the region does not have points. */ H5E_BEGIN_TRY { npoints = H5Sget_select_elem_npoints(region); } H5E_END_TRY; /* Print point information */ if (npoints > 0) { int i; alloc_size = npoints * ndims * sizeof(ptdata[0]); if (alloc_size == (hsize_t)((size_t) alloc_size)) { ptdata = (hsize_t *) malloc((size_t) alloc_size); H5Sget_select_elem_pointlist(region, (hsize_t) 0, (hsize_t) npoints, ptdata); h5str_append(str, " {"); for (i = 0; i < npoints; i++) { int j; h5str_append(str, " "); for (j = 0; j < ndims; j++) { tmp_str[0] = '\0'; sprintf(tmp_str, "%s%lu", j ? "," : "(", (unsigned long) (ptdata[i * ndims + j])); h5str_append(str, tmp_str); } h5str_append(str, ") "); } h5str_append(str, " }"); free(ptdata); } } return ret_value; } int h5str_is_zero(const void *_mem, size_t size) { const unsigned char *mem = (const unsigned char *) _mem; while (size-- > 0) if (mem[size]) return 0; return 1; } /*------------------------------------------------------------------------- * Function: h5str_detect_vlen_str * * Purpose: Recursive check for variable length string of a datatype. * * Return: * TRUE : type conatains any variable length string * FALSE : type doesn't contain any variable length string * Negative value: error occur * *------------------------------------------------------------------------- */ htri_t h5str_detect_vlen_str(hid_t tid) { H5T_class_t tclass = H5T_NO_CLASS; htri_t ret = 0; ret = H5Tis_variable_str(tid); if((ret == 1) || (ret < 0)) goto done; tclass = H5Tget_class(tid); if(tclass == H5T_ARRAY || tclass == H5T_VLEN) { hid_t btid = H5Tget_super(tid); if(btid < 0) { ret = (htri_t)btid; goto done; } ret = h5str_detect_vlen_str(btid); if((ret == 1) || (ret < 0)) { H5Tclose(btid); goto done; } } else if(tclass == H5T_COMPOUND) { int i = 0; int n = H5Tget_nmembers(tid); if(n < 0) { n = ret; goto done; } for(i = 0; i < n; i++) { hid_t mtid = H5Tget_member_type(tid, i); ret = h5str_detect_vlen_str(mtid); if((ret == 1) || (ret < 0)) { H5Tclose(mtid); goto done; } H5Tclose(mtid); } } done: return ret; } /*------------------------------------------------------------------------- * Function: h5str_get_native_type * * Purpose: Wrapper around H5Tget_native_type() to work around * Problems with bitfields. * * Return: Success: datatype ID * Failure: FAIL *------------------------------------------------------------------------- */ hid_t h5str_get_native_type(hid_t type) { hid_t p_type; H5T_class_t type_class; type_class = H5Tget_class(type); if(type_class==H5T_BITFIELD) p_type=H5Tcopy(type); else p_type = H5Tget_native_type(type,H5T_DIR_DEFAULT); return(p_type); } /*------------------------------------------------------------------------- * Function: h5str_get_little_endian_type * * Purpose: Get a little endian type from a file type * * Return: Success: datatype ID * Failure: FAIL *------------------------------------------------------------------------- */ hid_t h5str_get_little_endian_type(hid_t tid) { hid_t p_type=-1; H5T_class_t type_class; size_t size; H5T_sign_t sign; type_class = H5Tget_class(tid); size = H5Tget_size(tid); sign = H5Tget_sign(tid); switch( type_class ) { case H5T_INTEGER: { if ( size == 1 && sign == H5T_SGN_2) p_type=H5Tcopy(H5T_STD_I8LE); else if ( size == 2 && sign == H5T_SGN_2) p_type=H5Tcopy(H5T_STD_I16LE); else if ( size == 4 && sign == H5T_SGN_2) p_type=H5Tcopy(H5T_STD_I32LE); else if ( size == 8 && sign == H5T_SGN_2) p_type=H5Tcopy(H5T_STD_I64LE); else if ( size == 1 && sign == H5T_SGN_NONE) p_type=H5Tcopy(H5T_STD_U8LE); else if ( size == 2 && sign == H5T_SGN_NONE) p_type=H5Tcopy(H5T_STD_U16LE); else if ( size == 4 && sign == H5T_SGN_NONE) p_type=H5Tcopy(H5T_STD_U32LE); else if ( size == 8 && sign == H5T_SGN_NONE) p_type=H5Tcopy(H5T_STD_U64LE); } break; case H5T_FLOAT: if ( size == 4) p_type=H5Tcopy(H5T_IEEE_F32LE); else if ( size == 8) p_type=H5Tcopy(H5T_IEEE_F64LE); break; case H5T_TIME: case H5T_BITFIELD: case H5T_OPAQUE: case H5T_STRING: case H5T_COMPOUND: case H5T_REFERENCE: case H5T_ENUM: case H5T_VLEN: case H5T_ARRAY: break; default: break; } return(p_type); } /*------------------------------------------------------------------------- * Function: h5str_get_big_endian_type * * Purpose: Get a big endian type from a file type * * Return: Success: datatype ID * Failure: FAIL *------------------------------------------------------------------------- */ hid_t h5str_get_big_endian_type(hid_t tid) { hid_t p_type=-1; H5T_class_t type_class; size_t size; H5T_sign_t sign; type_class = H5Tget_class(tid); size = H5Tget_size(tid); sign = H5Tget_sign(tid); switch( type_class ) { case H5T_INTEGER: { if ( size == 1 && sign == H5T_SGN_2) p_type=H5Tcopy(H5T_STD_I8BE); else if ( size == 2 && sign == H5T_SGN_2) p_type=H5Tcopy(H5T_STD_I16BE); else if ( size == 4 && sign == H5T_SGN_2) p_type=H5Tcopy(H5T_STD_I32BE); else if ( size == 8 && sign == H5T_SGN_2) p_type=H5Tcopy(H5T_STD_I64BE); else if ( size == 1 && sign == H5T_SGN_NONE) p_type=H5Tcopy(H5T_STD_U8BE); else if ( size == 2 && sign == H5T_SGN_NONE) p_type=H5Tcopy(H5T_STD_U16BE); else if ( size == 4 && sign == H5T_SGN_NONE) p_type=H5Tcopy(H5T_STD_U32BE); else if ( size == 8 && sign == H5T_SGN_NONE) p_type=H5Tcopy(H5T_STD_U64BE); } break; case H5T_FLOAT: if ( size == 4) p_type=H5Tcopy(H5T_IEEE_F32BE); else if ( size == 8) p_type=H5Tcopy(H5T_IEEE_F64BE); break; case H5T_TIME: case H5T_BITFIELD: case H5T_OPAQUE: case H5T_STRING: case H5T_COMPOUND: case H5T_REFERENCE: case H5T_ENUM: case H5T_VLEN: case H5T_ARRAY: break; default: break; } return(p_type); } /*------------------------------------------------------------------------- * Function: h5str_detect_vlen * * Purpose: Recursive check for any variable length data in given type. * * Return: * 1 : type conatains any variable length data * 0 : type doesn't contain any variable length data * Negative value: error occur *------------------------------------------------------------------------- */ htri_t h5str_detect_vlen(hid_t tid) { htri_t ret; /* recursive detect any vlen data values in type (compound, array ...) */ ret = H5Tdetect_class(tid, H5T_VLEN); if((ret == 1) || (ret < 0)) goto done; /* recursive detect any vlen string in type (compound, array ...) */ ret = h5str_detect_vlen_str(tid); if((ret == 1) || (ret < 0)) goto done; done: return ret; } /*------------------------------------------------------------------------- * Function: render_bin_output * * Purpose: Write one element of memory buffer to a binary file stream * * Return: Success: SUCCEED * Failure: FAIL *------------------------------------------------------------------------- */ int h5str_render_bin_output(FILE *stream, hid_t container, hid_t tid, void *_mem, hsize_t block_nelmts) { int ret_value = 0; unsigned char *mem = (unsigned char*)_mem; size_t size; /* datum size */ hsize_t block_index; H5T_class_t type_class; if((size = H5Tget_size(tid)) > 0) { if((type_class = H5Tget_class(tid)) >= 0) { switch (type_class) { case H5T_INTEGER: case H5T_FLOAT: case H5T_ENUM: block_index = block_nelmts * size; while(block_index > 0) { size_t bytes_in = 0; /* # of bytes to write */ size_t bytes_wrote = 0; /* # of bytes written */ size_t item_size = size; /* size of items in bytes */ if(block_index > sizeof(size_t)) bytes_in = sizeof(size_t); else bytes_in = (size_t)block_index; bytes_wrote = fwrite(mem, 1, bytes_in, stream); if(bytes_wrote != bytes_in || (0 == bytes_wrote && ferror(stream))) { ret_value = -1; break; } block_index -= (hsize_t)bytes_wrote; mem = mem + bytes_wrote; } break; case H5T_STRING: { unsigned int i; H5T_str_t pad; char *s; unsigned char tempuchar; pad = H5Tget_strpad(tid); for (block_index = 0; block_index < block_nelmts; block_index++) { mem = ((unsigned char*)_mem) + block_index * size; if (H5Tis_variable_str(tid)) { s = *(char**) mem; if (s != NULL) size = strlen(s); } else { s = (char *) mem; } for (i = 0; i < size && (s[i] || pad != H5T_STR_NULLTERM); i++) { memcpy(&tempuchar, &s[i], sizeof(unsigned char)); if (1 != fwrite(&tempuchar, sizeof(unsigned char), 1, stream)) { ret_value = -1; break; } } /* i */ if(ret_value < 0) break; } /* for (block_index = 0; block_index < block_nelmts; block_index++) */ } break; case H5T_COMPOUND: { unsigned j; hid_t memb; unsigned nmembs; size_t offset; nmembs = H5Tget_nmembers(tid); for (block_index = 0; block_index < block_nelmts; block_index++) { mem = ((unsigned char*)_mem) + block_index * size; for (j = 0; j < nmembs; j++) { offset = H5Tget_member_offset(tid, j); memb = H5Tget_member_type(tid, j); if (h5str_render_bin_output(stream, container, memb, mem + offset, 1) < 0) { H5Tclose(memb); ret_value = -1; break; } H5Tclose(memb); } if(ret_value < 0) break; } } break; case H5T_ARRAY: { int k, ndims; hsize_t i, dims[H5S_MAX_RANK], temp_nelmts, nelmts; hid_t memb; /* get the array's base datatype for each element */ memb = H5Tget_super(tid); ndims = H5Tget_array_ndims(tid); H5Tget_array_dims2(tid, dims); /* calculate the number of array elements */ for (k = 0, nelmts = 1; k < ndims; k++) { temp_nelmts = nelmts; temp_nelmts *= dims[k]; nelmts = (size_t) temp_nelmts; } for (block_index = 0; block_index < block_nelmts; block_index++) { mem = ((unsigned char*)_mem) + block_index * size; /* dump the array element */ if (h5str_render_bin_output(stream, container, memb, mem, nelmts) < 0) { ret_value = -1; break; } } H5Tclose(memb); } break; case H5T_VLEN: { unsigned int i; hsize_t nelmts; hid_t memb; /* get the VL sequences's base datatype for each element */ memb = H5Tget_super(tid); for (block_index = 0; block_index < block_nelmts; block_index++) { mem = ((unsigned char*)_mem) + block_index * size; /* Get the number of sequence elements */ nelmts = ((hvl_t *) mem)->len; /* dump the array element */ if (h5str_render_bin_output(stream, container, memb, ((char *) (((hvl_t *) mem)->p)), nelmts) < 0) { ret_value = -1; break; } } H5Tclose(memb); } break; case H5T_REFERENCE: { if (H5Tequal(tid, H5T_STD_REF_DSETREG)) { /* region data */ hid_t region_id, region_space; H5S_sel_type region_type; for (block_index = 0; block_index < block_nelmts; block_index++) { mem = ((unsigned char*)_mem) + block_index * size; region_id = H5Rdereference(container, H5R_DATASET_REGION, mem); if (region_id >= 0) { region_space = H5Rget_region(container, H5R_DATASET_REGION, mem); if (region_space >= 0) { region_type = H5Sget_select_type(region_space); if(region_type == H5S_SEL_POINTS) ret_value = render_bin_output_region_points(stream, region_space, region_id, container); else ret_value = render_bin_output_region_blocks(stream, region_space, region_id, container); H5Sclose(region_space); } /* end if (region_space >= 0) */ H5Dclose(region_id); } /* end if (region_id >= 0) */ if(ret_value < 0) break; } } else if (H5Tequal(tid, H5T_STD_REF_OBJ)) { ; } } break; default: for (block_index = 0; block_index < block_nelmts; block_index++) { mem = ((unsigned char*)_mem) + block_index * size; if (size != fwrite(mem, sizeof(char), size, stream)) { ret_value = -1; break; } } break; } } /* end if((type_class = H5Tget_class(tid)) >= 0) */ else ret_value = -1; } /* end if((size = H5Tget_size(tid)) > 0) */ else ret_value = -1; return ret_value; } /*------------------------------------------------------------------------- * Purpose: Print the data values from a dataset referenced by region blocks. * * Description: * This is a special case subfunction to print the data in a region reference of type blocks. * * Return: * The function returns FAIL if there was an error, otherwise SUCEED * *------------------------------------------------------------------------- */ int render_bin_output_region_data_blocks(FILE *stream, hid_t region_id, hid_t container, int ndims, hid_t type_id, hssize_t nblocks, hsize_t *ptdata) { hsize_t *dims1 = NULL; hsize_t *start = NULL; hsize_t *count = NULL; hsize_t numelem; hsize_t numindex; hsize_t total_size[H5S_MAX_RANK]; int jndx; int type_size; hid_t mem_space = -1; void *region_buf = NULL; int blkndx; hid_t sid1 = -1; int ret_value = SUCCEED; /* Get the dataspace of the dataset */ if((sid1 = H5Dget_space(region_id)) >= 0) { /* Allocate space for the dimension array */ if((dims1 = (hsize_t *) malloc(sizeof(hsize_t) * ndims)) != NULL) { /* find the dimensions of each data space from the block coordinates */ numelem = 1; for (jndx = 0; jndx < ndims; jndx++) { dims1[jndx] = ptdata[jndx + ndims] - ptdata[jndx] + 1; numelem = dims1[jndx] * numelem; } /* Create dataspace for reading buffer */ if((mem_space = H5Screate_simple(ndims, dims1, NULL)) >= 0) { if((type_size = H5Tget_size(type_id)) > 0) { if((region_buf = malloc(type_size * (size_t)numelem)) != NULL) { /* Select (x , x , ..., x ) x (y , y , ..., y ) hyperslab for reading memory dataset */ /* 1 2 n 1 2 n */ if((start = (hsize_t *) malloc(sizeof(hsize_t) * ndims)) != NULL) { if((count = (hsize_t *) malloc(sizeof(hsize_t) * ndims)) != NULL) { for (blkndx = 0; blkndx < nblocks; blkndx++) { for (jndx = 0; jndx < ndims; jndx++) { start[jndx] = ptdata[jndx + blkndx * ndims * 2]; count[jndx] = dims1[jndx]; } if(H5Sselect_hyperslab(sid1, H5S_SELECT_SET, start, NULL, count, NULL) >= 0) { if(H5Dread(region_id, type_id, mem_space, sid1, H5P_DEFAULT, region_buf) >= 0) { if(H5Sget_simple_extent_dims(mem_space, total_size, NULL) >= 0) { ret_value = h5str_render_bin_output(stream, container, type_id, (char*)region_buf, numelem); } /* end if(H5Sget_simple_extent_dims(mem_space, total_size, NULL) >= 0) */ else { ret_value = -1; break; } } /* end if(H5Dread(region_id, type_id, mem_space, sid1, H5P_DEFAULT, region_buf) >= 0) */ else { ret_value = -1; break; } } /* end if(H5Sselect_hyperslab(sid1, H5S_SELECT_SET, start, NULL, count, NULL) >= 0) */ else { ret_value = -1; break; } /* Render the region data element end */ } /* end for (blkndx = 0; blkndx < nblocks; blkndx++) */ free(count); } /* end if((count = (hsize_t *) HDmalloc(sizeof(hsize_t) * ndims)) != NULL) */ else ret_value = -1; free(start); } /* end if((start = (hsize_t *) HDmalloc(sizeof(hsize_t) * ndims)) != NULL) */ else ret_value = -1; free(region_buf); } /* end if((region_buf = HDmalloc(type_size * (size_t)numelem)) != NULL) */ else ret_value = -1; } /* end if((type_size = H5Tget_size(type_id)) > 0) */ else ret_value = -1; if(H5Sclose(mem_space) < 0) ret_value = -1; } /* end if((mem_space = H5Screate_simple(ndims, dims1, NULL)) >= 0) */ else ret_value = -1; free(dims1); } /* end if((dims1 = (hsize_t *) HDmalloc(sizeof(hsize_t) * ndims)) != NULL) */ else ret_value = -1; if(H5Sclose(sid1) < 0) ret_value = -1; } /* end if((sid1 = H5Dget_space(region_id)) >= 0) */ else ret_value = -1; return ret_value; } /*------------------------------------------------------------------------- * Purpose: Print some values from a dataset referenced by region blocks. * * Description: * This is a special case subfunction to dump a region reference using blocks. * * Return: * The function returns False if ERROR, otherwise True * *------------------------------------------------------------------------- */ int render_bin_output_region_blocks(FILE *stream, hid_t region_space, hid_t region_id, hid_t container) { int ret_value = SUCCEED; hssize_t nblocks; hsize_t alloc_size; hsize_t *ptdata = NULL; int ndims; hid_t dtype; hid_t type_id; if((nblocks = H5Sget_select_hyper_nblocks(region_space)) > 0) { /* Print block information */ if((ndims = H5Sget_simple_extent_ndims(region_space)) >= 0) { alloc_size = nblocks * ndims * 2 * sizeof(ptdata[0]); if((ptdata = (hsize_t*) malloc((size_t) alloc_size)) != NULL) { if(H5Sget_select_hyper_blocklist(region_space, (hsize_t) 0, (hsize_t) nblocks, ptdata) >= 0) { if((dtype = H5Dget_type(region_id)) >= 0) { if((type_id = H5Tget_native_type(dtype, H5T_DIR_DEFAULT)) >= 0) { ret_value = render_bin_output_region_data_blocks(stream, region_id, container, ndims, type_id, nblocks, ptdata); if(H5Tclose(type_id) < 0) ret_value = -1; } /* end if((type_id = H5Tget_native_type(dtype, H5T_DIR_DEFAULT)) >= 0) */ else ret_value = -1; if(H5Tclose(dtype) < 0) ret_value = -1; } /* end if((dtype = H5Dget_type(region_id)) >= 0) */ else ret_value = -1; } /* end if(H5Sget_select_hyper_blocklist(region_space, (hsize_t) 0, (hsize_t) nblocks, ptdata) >= 0) */ else ret_value = -1; free(ptdata); } /* end if((ptdata = (hsize_t*) HDmalloc((size_t) alloc_size)) != NULL) */ else ret_value = -1; } /* end if((ndims = H5Sget_simple_extent_ndims(region_space)) >= 0) */ else ret_value = -1; } /* end if((nblocks = H5Sget_select_hyper_nblocks(region_space)) > 0) */ else ret_value = -1; return ret_value; } /*------------------------------------------------------------------------- * Purpose: Print the data values from a dataset referenced by region points. * * Description: * This is a special case subfunction to print the data in a region reference of type points. * * Return: * The function returns FAIL on error, otherwise SUCCEED * *------------------------------------------------------------------------- */ int render_bin_output_region_data_points(FILE *stream, hid_t region_space, hid_t region_id, hid_t container, int ndims, hid_t type_id, hssize_t npoints, hsize_t *ptdata) { hsize_t *dims1 = NULL; int jndx; int type_size; hid_t mem_space = -1; void *region_buf = NULL; int ret_value = SUCCEED; if((type_size = H5Tget_size(type_id)) > 0) { if((region_buf = malloc(type_size * (size_t)npoints)) != NULL) { /* Allocate space for the dimension array */ if((dims1 = (hsize_t *) malloc(sizeof(hsize_t) * ndims)) != NULL) { dims1[0] = npoints; if((mem_space = H5Screate_simple(1, dims1, NULL)) >= 0) { if(H5Dread(region_id, type_id, mem_space, region_space, H5P_DEFAULT, region_buf) >= 0) { if(H5Sget_simple_extent_dims(region_space, dims1, NULL) >= 0) { ret_value = h5str_render_bin_output(stream, container, type_id, (char*)region_buf, npoints); } /* end if(H5Sget_simple_extent_dims(region_space, dims1, NULL) >= 0) */ else ret_value = -1; } /* end if(H5Dread(region_id, type_id, mem_space, region_space, H5P_DEFAULT, region_buf) >= 0) */ else ret_value = -1; } /* end if((mem_space = H5Screate_simple(1, dims1, NULL)) >= 0) */ else ret_value = -1; free(dims1); } /* end if((dims1 = (hsize_t *) malloc(sizeof(hsize_t) * ndims)) != NULL) */ else ret_value = -1; free(region_buf); } /* end if((region_buf = malloc(type_size * (size_t)npoints)) != NULL) */ else ret_value = -1; if(H5Sclose(mem_space) < 0) ret_value = -1; } /* end if((type_size = H5Tget_size(type_id)) > 0) */ else ret_value = -1; return ret_value; } /*------------------------------------------------------------------------- * Purpose: Print some values from a dataset referenced by region points. * * Description: * This is a special case subfunction to dump a region reference using points. * * Return: * The function returns False if the last dimension has been reached, otherwise True * *------------------------------------------------------------------------- */ int render_bin_output_region_points(FILE *stream, hid_t region_space, hid_t region_id, hid_t container) { int ret_value = SUCCEED; hssize_t npoints; hsize_t alloc_size; hsize_t *ptdata; int ndims; hid_t dtype; hid_t type_id; if((npoints = H5Sget_select_elem_npoints(region_space)) > 0) { /* Allocate space for the dimension array */ if((ndims = H5Sget_simple_extent_ndims(region_space)) >= 0) { alloc_size = npoints * ndims * sizeof(ptdata[0]); if(NULL != (ptdata = (hsize_t *)malloc((size_t) alloc_size))) { if(H5Sget_select_elem_pointlist(region_space, (hsize_t) 0, (hsize_t) npoints, ptdata) >= 0) { if((dtype = H5Dget_type(region_id)) >= 0) { if((type_id = H5Tget_native_type(dtype, H5T_DIR_DEFAULT)) >= 0) { ret_value = render_bin_output_region_data_points(stream, region_space, region_id, container, ndims, type_id, npoints, ptdata); if(H5Tclose(type_id) < 0) ret_value = -1; } /* end if((type_id = H5Tget_native_type(dtype, H5T_DIR_DEFAULT)) >= 0) */ else ret_value = -1; if(H5Tclose(dtype) < 0) ret_value = -1; } /* end if((dtype = H5Dget_type(region_id)) >= 0) */ else ret_value = -1; } /* end if(H5Sget_select_elem_pointlist(region_space, (hsize_t) 0, (hsize_t) npoints, ptdata) >= 0) */ else ret_value = -1; free(ptdata); } /* end if(NULL != (ptdata = (hsize_t *)malloc((size_t) alloc_size))) */ else ret_value = -1; } /* end if((ndims = H5Sget_simple_extent_ndims(region_space)) >= 0) */ else ret_value = -1; } /* end if((npoints = H5Sget_select_elem_npoints(region_space)) > 0) */ else ret_value = -1; return ret_value; } int h5str_dump_simple_dset(FILE *stream, hid_t dset, int binary_order) { int ret_value = SUCCEED; hid_t f_space = -1; /* file data space */ hsize_t elmtno; /* counter */ size_t i; /* counter */ int ndims; int carry; /* counter carry value */ hsize_t zero[8]; /* vector of zeros */ unsigned int flags; /* buffer extent flags */ hsize_t total_size[H5S_MAX_RANK]; /* total size of dataset*/ /* Print info */ size_t p_type_nbytes; /* size of memory type */ hsize_t p_nelmts; /* total selected elmts */ /* Stripmine info */ hsize_t sm_size[H5S_MAX_RANK]; /* stripmine size */ hsize_t sm_nbytes; /* bytes per stripmine */ hsize_t sm_nelmts; /* elements per stripmine*/ unsigned char *sm_buf = NULL; /* buffer for raw data */ hid_t sm_space = -1; /* stripmine data space */ /* Hyperslab info */ hsize_t hs_offset[H5S_MAX_RANK]; /* starting offset */ hsize_t hs_size[H5S_MAX_RANK]; /* size this pass */ hsize_t hs_nelmts; /* elements in request */ /* VL data special information */ unsigned int vl_data = 0; /* contains VL datatypes */ hid_t p_type = -1; hid_t f_type = -1; if(dset < 0) return -1; f_type = H5Dget_type(dset); if (binary_order == 1) p_type = h5str_get_native_type(f_type); else if (binary_order == 2) p_type = h5str_get_little_endian_type(f_type); else if (binary_order == 3) p_type = h5str_get_big_endian_type(f_type); else p_type = H5Tcopy(f_type); H5Tclose(f_type); if (p_type >= 0) { if((f_space = H5Dget_space(dset)) >= 0) { ndims = H5Sget_simple_extent_ndims(f_space); if ((size_t)ndims <= (sizeof(sm_size)/sizeof(sm_size[0]))) { H5Sget_simple_extent_dims(f_space, total_size, NULL); /* calculate the number of elements we're going to print */ p_nelmts = 1; if (ndims > 0) { for (i = 0; i < ndims; i++) p_nelmts *= total_size[i]; } /* end if */ if (p_nelmts > 0) { /* Check if we have VL data in the dataset's datatype */ if (h5str_detect_vlen(p_type) != 0) vl_data = 1; /* * Determine the strip mine size and allocate a buffer. The strip mine is * a hyperslab whose size is manageable. */ sm_nbytes = p_type_nbytes = H5Tget_size(p_type); if (ndims > 0) { for (i = ndims; i > 0; --i) { hsize_t size = H5TOOLS_BUFSIZE / sm_nbytes; if ( size == 0) /* datum size > H5TOOLS_BUFSIZE */ size = 1; sm_size[i - 1] = (((total_size[i - 1]) < (size)) ? (total_size[i - 1]) : (size)); sm_nbytes *= sm_size[i - 1]; } } if(sm_nbytes > 0) { sm_buf = (unsigned char *)malloc((size_t)sm_nbytes); sm_nelmts = sm_nbytes / p_type_nbytes; sm_space = H5Screate_simple(1, &sm_nelmts, NULL); /* The stripmine loop */ memset(hs_offset, 0, sizeof hs_offset); memset(zero, 0, sizeof zero); for (elmtno = 0; elmtno < p_nelmts; elmtno += hs_nelmts) { /* Calculate the hyperslab size */ if (ndims > 0) { for (i = 0, hs_nelmts = 1; i < ndims; i++) { hs_size[i] = (((total_size[i] - hs_offset[i]) < (sm_size[i])) ? (total_size[i] - hs_offset[i]) : (sm_size[i])); hs_nelmts *= hs_size[i]; } H5Sselect_hyperslab(f_space, H5S_SELECT_SET, hs_offset, NULL, hs_size, NULL); H5Sselect_hyperslab(sm_space, H5S_SELECT_SET, zero, NULL, &hs_nelmts, NULL); } else { H5Sselect_all(f_space); H5Sselect_all(sm_space); hs_nelmts = 1; } /* Read the data */ if (H5Dread(dset, p_type, sm_space, f_space, H5P_DEFAULT, sm_buf) >= 0) { if (binary_order == 99) ret_value = h5tools_dump_simple_data(stream, dset, p_type, sm_buf, hs_nelmts); else ret_value = h5str_render_bin_output(stream, dset, p_type, sm_buf, hs_nelmts); /* Reclaim any VL memory, if necessary */ if (vl_data) H5Dvlen_reclaim(p_type, sm_space, H5P_DEFAULT, sm_buf); } else { ret_value = -1; break; } if(ret_value < 0) break; /* Calculate the next hyperslab offset */ for (i = ndims, carry = 1; i > 0 && carry; --i) { hs_offset[i - 1] += hs_size[i - 1]; if (hs_offset[i - 1] == total_size[i - 1]) hs_offset[i - 1] = 0; else carry = 0; } } if(sm_buf) free(sm_buf); } if(sm_space >= 0 && H5Sclose(sm_space) < 0) ret_value = -1; } } if(f_space >= 0 && H5Sclose(f_space) < 0) ret_value = -1; } /* end if((f_space = H5Dget_space(dset)) >= 0) */ else ret_value = -1; if (p_type >= 0) H5Tclose(p_type); } return ret_value; } int h5tools_dump_simple_data(FILE *stream, hid_t container, hid_t type, void *_mem, hsize_t nelmts) { int ret_value = 0; int line_count; unsigned char *mem = (unsigned char*)_mem; size_t size; /* datum size */ H5T_class_t type_class; hsize_t i; /*element counter */ h5str_t buffer; /*string into which to render */ if((size = H5Tget_size(type)) > 0) { for (i = 0, line_count = 0; i < nelmts; i++, line_count++) { size_t bytes_in = 0; /* # of bytes to write */ size_t bytes_wrote = 0; /* # of bytes written */ void* memref = mem + i * size; /* Render the data element*/ h5str_new(&buffer, 32 * size); bytes_in = h5str_sprintf(&buffer, container, type, memref, 1); if(i > 0) { fprintf(stream, ", "); if (line_count >= H5TOOLS_TEXT_BLOCK) { line_count = 0; fprintf(stream, "\n"); } } fprintf(stream, "%s", buffer.s); h5str_free(&buffer); } /* end for (i = 0; i < nelmts... */ fprintf(stream, "\n"); } /* end if((size = H5Tget_size(tid)) > 0) */ else ret_value = -1; return ret_value; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5sImp.c0000644002344600011330000010417412371212307015672 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * This code is the C-interface called by Java programs to access the * Dataspace Object API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdfdfgroup.org/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include #include #include "hdf5.h" #include "h5jni.h" #include "h5sImp.h" /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Screate * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Screate (JNIEnv *env, jclass clss, jint type) { hid_t retVal = -1; retVal = H5Screate((H5S_class_t) type); if (retVal < 0) h5libraryError(env); return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Screate_simple * Signature: (I[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Screate_1simple (JNIEnv *env, jclass clss, jint rank, jlongArray dims, jlongArray maxdims) { hid_t status; jlong *dimsP, *maxdimsP; jboolean isCopy; hsize_t *sa = NULL; hsize_t *msa = NULL; int i; int drank, mrank; hsize_t *lp; jlong *jlp; if (rank < 0) { h5badArgument(env, "H5Screate_simple: rank is invalid"); return -1; } if (dims == NULL) { h5nullArgument(env, "H5Screate_simple: dims is NULL"); return -1; } drank = (int) ENVPTR->GetArrayLength(ENVPAR dims); if (drank != rank) { h5badArgument(env, "H5Screate_simple: dims rank is invalid"); return -1; } if (maxdims != NULL) { mrank = (int) ENVPTR->GetArrayLength(ENVPAR maxdims); if (mrank != rank) { h5badArgument(env, "H5Screate_simple: maxdims rank is invalid"); return -1; } } dimsP = ENVPTR->GetLongArrayElements(ENVPAR dims, &isCopy); if (dimsP == NULL) { h5JNIFatalError(env, "H5Screate_simple: dims not pinned"); return -1; } sa = lp = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (sa == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); h5JNIFatalError(env, "H5Screate_simple: dims not converted to hsize_t"); return -1; } jlp = (jlong *) dimsP; for (i = 0; i < rank; i++) { *lp = (hsize_t) *jlp; lp++; jlp++; } if (maxdims == NULL) { maxdimsP = NULL; msa = (hsize_t *) maxdimsP; } else { maxdimsP = ENVPTR->GetLongArrayElements(ENVPAR maxdims, &isCopy); if (maxdimsP == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); free(sa); h5JNIFatalError(env, "H5Screate_simple: maxdims not pinned"); return -1; } msa = lp = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (msa == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR maxdims, maxdimsP, JNI_ABORT); free(sa); h5JNIFatalError(env, "H5Screate_simple: dims not converted to hsize_t"); return -1; } jlp = (jlong *) maxdimsP; for (i = 0; i < mrank; i++) { *lp = (hsize_t) *jlp; lp++; jlp++; } } status = H5Screate_simple(rank, (const hsize_t *) sa, (const hsize_t *) msa); if (maxdimsP != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR maxdims, maxdimsP, JNI_ABORT); if (msa) free(msa); } ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); if (sa) free(sa); if (status < 0) h5libraryError(env); return (jint) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Scopy * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Scopy (JNIEnv *env, jclass clss, jint space_id) { hid_t retVal = -1; retVal = H5Scopy(space_id); if (retVal < 0) h5libraryError(env); return (jint) retVal; } #ifdef notdef // 10/28/99 -- added code to copy the array -- this is not used, // but serves as a reminder in case we try to implement this in // the future.... /* * Note: the argument coord is actually long coord[][], which has been * flattened by the caller. */ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_elements * Signature: (III[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1elements (JNIEnv *env, jclass clss, jint space_id, jint op, jint num_elemn, jlongArray coord) { herr_t status; jint i; jlong *P; jboolean isCopy; hssize_t *sa; int rank; if (coord == NULL) { h5nullArgument( env, "H5Sselect_elements: coord is NULL"); return -1; } P = ENVPTR->GetLongArrayElements(ENVPAR env,coord,&isCopy); if (P == NULL) { h5JNIFatalError(env, "H5Sselect_elements: coord not pinned"); return -1; } sa = (hssize_t *)malloc( num_elems * 2 * sizeof(hssize_t)); if (sa == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR env,coord,P,JNI_ABORT); h5JNIFatalError(env, "H5Sselect_elements: coord array not converted to hssize_t"); return -1; } for (i= 0; i < (num_elsms * 2); i++) { sa[i] = P[i]; } status = H5Sselect_elements (space_id, (H5S_seloper_t)op, num_elemn, (const hssize_t **)&sa); ENVPTR->ReleaseLongArrayElements(ENVPAR env, coord, P, JNI_ABORT); free(sa); if (status < 0) h5libraryError(env); return (jint)status; } #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_elements * Signature: (III[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1elements (JNIEnv *env, jclass clss, jint space_id, jint op, jint num_elemn, jbyteArray coord) { int ii; hsize_t *lp = NULL; hsize_t *llp; jlong *jlp; herr_t status; jbyte *P; jboolean isCopy; jsize size; int nlongs; if (coord == NULL) { h5nullArgument(env, "H5Sselect_elements: coord is NULL"); return -1; } P = ENVPTR->GetByteArrayElements(ENVPAR coord, &isCopy); if (P == NULL) { h5JNIFatalError(env, "H5Sselect_elements: coord not pinned"); return -1; } size = (int) ENVPTR->GetArrayLength(ENVPAR coord); nlongs = size / sizeof(jlong); lp = (hsize_t *) malloc(nlongs * sizeof(hsize_t)); jlp = (jlong *) P; llp = lp; for (ii = 0; ii < nlongs; ii++) { *lp = (hsize_t) *jlp; lp++; jlp++; } status = H5Sselect_elements(space_id, (H5S_seloper_t) op, num_elemn, (const hsize_t *) llp); ENVPTR->ReleaseByteArrayElements(ENVPAR coord, P, JNI_ABORT); if (llp) free(llp); if (status < 0) h5libraryError(env); return (jint) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_all * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1all (JNIEnv *env, jclass clss, jint space_id) { herr_t retVal = -1; retVal = H5Sselect_all(space_id); if (retVal < 0) h5libraryError(env); return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_none * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1none (JNIEnv *env, jclass clss, jint space_id) { herr_t retVal = -1; retVal = H5Sselect_none(space_id); if (retVal < 0) h5libraryError(env); return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_valid * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1valid (JNIEnv *env, jclass clss, jint space_id) { htri_t bval; bval = H5Sselect_valid(space_id); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_simple_extent_npoints * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1simple_1extent_1npoints (JNIEnv *env, jclass clss, jint space_id) { hssize_t retVal = -1; retVal = H5Sget_simple_extent_npoints(space_id); if (retVal < 0) h5libraryError(env); return (jlong) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_npoints * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1npoints (JNIEnv *env, jclass clss, jint space_id) { hssize_t retVal = -1; retVal = H5Sget_select_npoints(space_id); if (retVal < 0) h5libraryError(env); return (jlong) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1type (JNIEnv *env, jclass clss, jint space_id) { int retVal = -1; retVal = H5Sget_select_type(space_id); if (retVal < 0) h5libraryError(env); return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_simple_extent_ndims * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1simple_1extent_1ndims (JNIEnv *env, jclass clss, jint space_id) { int retVal = -1; retVal = H5Sget_simple_extent_ndims(space_id); if (retVal < 0) h5libraryError(env); return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_simple_extent_dims * Signature: (I[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1simple_1extent_1dims (JNIEnv *env, jclass clss, jint space_id, jlongArray dims, jlongArray maxdims) { int status; jlong *dimsP, *maxdimsP; jboolean isCopy; hsize_t *sa; hsize_t *msa; int i; int rank = -1; int mrank; if (dims == NULL) { dimsP = NULL; sa = (hsize_t *) dimsP; } else { dimsP = ENVPTR->GetLongArrayElements(ENVPAR dims, &isCopy); if (dimsP == NULL) { h5JNIFatalError(env, "H5Pget_simple_extent_dims: dims not pinned"); return -1; } rank = (int) ENVPTR->GetArrayLength(ENVPAR dims); sa = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (sa == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); h5JNIFatalError(env, "H5Sget_simple_extent_dims: dims not converted to hsize_t"); return -1; } } if (maxdims == NULL) { maxdimsP = NULL; msa = (hsize_t *) maxdimsP; } else { maxdimsP = ENVPTR->GetLongArrayElements(ENVPAR maxdims, &isCopy); if (maxdimsP == NULL) { if (dimsP != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); free(sa); } h5JNIFatalError(env, "H5Pget_simple_extent_dims: maxdims not pinned"); return -1; } mrank = (int) ENVPTR->GetArrayLength(ENVPAR maxdims); if (rank < 0) rank = mrank; else if (mrank != rank) { if (dimsP != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); free(sa); } ENVPTR->ReleaseLongArrayElements(ENVPAR maxdims, maxdimsP, JNI_ABORT); h5JNIFatalError(env, "H5Sget_simple_extent_dims: maxdims rank not same as dims"); return -1; } msa = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (msa == NULL) { if (dimsP != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); free(sa); } ENVPTR->ReleaseLongArrayElements(ENVPAR maxdims, maxdimsP, JNI_ABORT); h5JNIFatalError(env, "H5Sget_simple_extent_dims: maxdims not converted to hsize_t"); return -1; } } status = H5Sget_simple_extent_dims(space_id, (hsize_t *) sa, (hsize_t *) msa); if (status < 0) { if (dimsP != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); free(sa); } if (maxdimsP != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR maxdims, maxdimsP, JNI_ABORT); free(msa); } h5libraryError(env); return -1; } if (dimsP != NULL) { for (i = 0; i < rank; i++) { dimsP[i] = sa[i]; } free(sa); ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, 0); } if (maxdimsP != NULL) { for (i = 0; i < rank; i++) { maxdimsP[i] = msa[i]; } free(msa); ENVPTR->ReleaseLongArrayElements(ENVPAR maxdims, maxdimsP, 0); } return (jint) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_simple_extent_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1simple_1extent_1type (JNIEnv *env, jclass clss, jint space_id) { H5S_class_t retVal = H5S_NO_CLASS; if (space_id < 0) h5libraryError(env); retVal = H5Sget_simple_extent_type(space_id); return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sset_extent_simple * Signature: (II[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sset_1extent_1simple (JNIEnv *env, jclass clss, jint space_id, jint rank, jlongArray dims, jlongArray maxdims) { herr_t status; jlong *dimsP, *maxdimsP; jboolean isCopy; hsize_t *sa; hsize_t *msa; int i; int drank, mrank; hsize_t *lp; jlong *jlp; if (dims == NULL) { h5nullArgument(env, "H5Sset_simple_extent: dims is NULL"); return -1; } drank = (int) ENVPTR->GetArrayLength(ENVPAR dims); if (drank != rank) { h5badArgument(env, "H5Screate_simple: dims rank is invalid"); return -1; } if (maxdims != NULL) { mrank = (int) ENVPTR->GetArrayLength(ENVPAR maxdims); if (mrank != rank) { h5badArgument(env, "H5Screate_simple: maxdims rank is invalid"); return -1; } } dimsP = ENVPTR->GetLongArrayElements(ENVPAR dims, &isCopy); if (dimsP == NULL) { h5JNIFatalError(env, "H5Pset_simple_extent: dims not pinned"); return -1; } sa = lp = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (sa == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); h5JNIFatalError(env, "H5Sset_simple_extent: dims not converted to hsize_t"); return -1; } jlp = (jlong *) dimsP; for (i = 0; i < rank; i++) { *lp = (hsize_t) *jlp; lp++; jlp++; } if (maxdims == NULL) { maxdimsP = NULL; msa = (hsize_t *) maxdimsP; } else { maxdimsP = ENVPTR->GetLongArrayElements(ENVPAR maxdims, &isCopy); if (maxdimsP == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); h5JNIFatalError(env, "H5Pset_simple_extent: maxdims not pinned"); return -1; } msa = lp = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (msa == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR maxdims, maxdimsP, JNI_ABORT); free(sa); h5JNIFatalError(env, "H5Sset_simple_extent: maxdims not converted to hsize_t"); return -1; } jlp = (jlong *) maxdimsP; for (i = 0; i < rank; i++) { *lp = (hsize_t) *jlp; lp++; jlp++; } } status = H5Sset_extent_simple(space_id, rank, (hsize_t *) sa, (hsize_t *) msa); ENVPTR->ReleaseLongArrayElements(ENVPAR dims, dimsP, JNI_ABORT); free(sa); if (maxdimsP != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR maxdims, maxdimsP, JNI_ABORT); free(msa); } if (status < 0) h5libraryError(env); return (jint) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sis_simple * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sis_1simple (JNIEnv *env, jclass clss, jint space_id) { htri_t bval; bval = H5Sis_simple(space_id); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Soffset_simple * Signature: (I[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Soffset_1simple (JNIEnv *env, jclass clss, jint space_id, jbyteArray offset) { herr_t status; jbyte *P = NULL; jboolean isCopy; hssize_t *sa; int rank; int i; hssize_t *lp; jlong *jlp; if (offset != NULL) { P = ENVPTR->GetByteArrayElements(ENVPAR offset, &isCopy); if (P == NULL) { h5JNIFatalError(env, "H5Soffset_simple: offset not pinned"); return -1; } i = (int) ENVPTR->GetArrayLength(ENVPAR offset); rank = i / sizeof(jlong); sa = lp = (hssize_t *) malloc(rank * sizeof(hssize_t)); if (sa == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR offset, P, JNI_ABORT); h5JNIFatalError(env, "H5Soffset_simple: offset not converted to hssize_t"); return -1; } jlp = (jlong *) P; for (i = 0; i < rank; i++) { *lp = (hssize_t) *jlp; lp++; jlp++; } } else { P = NULL; sa = (hssize_t *) P; } status = H5Soffset_simple(space_id, sa); if (P != NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR offset, P, JNI_ABORT); free(sa); } if (status < 0) h5libraryError(env); return (jint) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sextent_copy * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sextent_1copy (JNIEnv *env, jclass clss, jint space_id, jint src_id) { herr_t retVal = -1; retVal = H5Sextent_copy(space_id, src_id); if (retVal < 0) h5libraryError(env); return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sextent_equal * Signature: (II)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sextent_1equal (JNIEnv *env, jclass clss, jint space_id, jint src_id) { htri_t bval; bval = H5Sextent_equal(space_id, src_id); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sset_extent_none * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sset_1extent_1none (JNIEnv *env, jclass clss, jint space_id) { herr_t retVal = -1; retVal = H5Sset_extent_none(space_id); if (retVal < 0) h5libraryError(env); return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_hyperslab * Signature: (II[J[J[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1hyperslab (JNIEnv *env, jclass clss, jint space_id, jint op, jlongArray start, jlongArray stride, jlongArray count, jlongArray block) { herr_t status; jlong *startP, *strideP, *countP, *blockP; jboolean isCopy; hsize_t *strt; hsize_t *strd; hsize_t *cnt; hsize_t *blk; int rank; int i; hsize_t *lp; jlong *jlp; if (start == NULL) { h5nullArgument(env, "H5Sselect_hyperslab: start is NULL"); return -1; } if (count == NULL) { h5nullArgument(env, "H5Sselect_hyperslab: count is NULL"); return -1; } rank = (int) ENVPTR->GetArrayLength(ENVPAR start); if (rank != ENVPTR->GetArrayLength(ENVPAR count)) { h5badArgument(env, "H5Sselect_hyperslab: count and start have different rank!"); return -1; } startP = ENVPTR->GetLongArrayElements(ENVPAR start, &isCopy); if (startP == NULL) { h5JNIFatalError(env, "H5Sselect_hyperslab: start not pinned"); return -1; } strt = lp = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (strt == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); h5JNIFatalError(env, "H5Sselect_hyperslab: start not converted to hsize_t"); return -1; } jlp = (jlong *) startP; for (i = 0; i < rank; i++) { *lp = (hsize_t) *jlp; lp++; jlp++; } countP = ENVPTR->GetLongArrayElements(ENVPAR count, &isCopy); if (countP == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); free(strt); h5JNIFatalError(env, "H5Sselect_hyperslab: count not pinned"); return -1; } cnt = lp = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (cnt == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR count, countP, JNI_ABORT); free(strt); h5JNIFatalError(env, "H5Sselect_hyperslab: count not converted to hsize_t"); return -1; } jlp = (jlong *) countP; for (i = 0; i < rank; i++) { *lp = (hsize_t) *jlp; lp++; jlp++; } if (stride == NULL) { strideP = NULL; strd = (hsize_t *) strideP; } else { strideP = ENVPTR->GetLongArrayElements(ENVPAR stride, &isCopy); if (strideP == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR count, countP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); free(cnt); free(strt); h5badArgument(env, "H5Sselect_hyperslab: stride not pinned"); return -1; } strd = lp = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (strd == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR count, countP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR stride, strideP, JNI_ABORT); free(cnt); free(strt); h5JNIFatalError(env, "H5Sselect_hyperslab: stride not converted to hsize_t"); return -1; } jlp = (jlong *) strideP; for (i = 0; i < rank; i++) { *lp = (hsize_t) *jlp; lp++; jlp++; } } if (block == NULL) { blockP = NULL; blk = (hsize_t *) blockP; } else { blockP = ENVPTR->GetLongArrayElements(ENVPAR block, &isCopy); if (blockP == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR stride, strideP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR count, countP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); free(cnt); free(strt); if (strd != NULL) { free(strd); } h5JNIFatalError(env, "H5Sselect_hyperslab: block not pinned"); return -1; } blk = lp = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (blk == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR stride, strideP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR count, countP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR block, blockP, JNI_ABORT); free(cnt); free(strt); if (strd != NULL) { free(strd); } h5JNIFatalError(env, "H5Sget_simple_extent: block not converted to hsize_t"); return -1; } jlp = (jlong *) blockP; for (i = 0; i < rank; i++) { *lp = (hsize_t) *jlp; lp++; jlp++; } } status = H5Sselect_hyperslab(space_id, (H5S_seloper_t) op, (const hsize_t *) strt, (const hsize_t *) strd, (const hsize_t *) cnt, (const hsize_t *) blk); ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR count, countP, JNI_ABORT); free(strt); free(cnt); if (strideP != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR stride, strideP, JNI_ABORT); free(strd); } if (blockP != NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR block, blockP, JNI_ABORT); free(blk); } if (status < 0) h5libraryError(env); return (jint) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Sclose (JNIEnv *env, jclass clss, jint space_id) { herr_t retVal = -1; retVal = H5Sclose(space_id); if (retVal < 0) { h5libraryError(env); } return (jint) retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_hyper_nblocks * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1hyper_1nblocks (JNIEnv *env, jclass clss, jint spaceid) { hssize_t status; status = H5Sget_select_hyper_nblocks((hid_t) spaceid); if (status < 0) h5libraryError(env); return (jlong) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_elem_npoints * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1elem_1npoints (JNIEnv *env, jclass clss, jint spaceid) { hssize_t status; status = H5Sget_select_elem_npoints((hid_t) spaceid); if (status < 0) h5libraryError(env); return (jlong) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_hyper_blocklist * Signature: (IJJ[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1hyper_1blocklist (JNIEnv *env, jclass clss, jint spaceid, jlong startblock, jlong numblocks, jlongArray buf) { herr_t status; jlong *bufP; jboolean isCopy; hsize_t *ba; int i; int rank; long st; long nb; st = (long) startblock; nb = (long) numblocks; if (buf == NULL) { h5nullArgument(env, "H5Sget_select_hyper_blocklist: buf is NULL"); return -1; } rank = H5Sget_simple_extent_ndims(spaceid); if (rank <= 0) rank = 1; if (ENVPTR->GetArrayLength(ENVPAR buf) < (numblocks * rank)) { h5badArgument(env, "H5Sget_select_hyper_blocklist: buf input array too small"); return -1; } bufP = ENVPTR->GetLongArrayElements(ENVPAR buf, &isCopy); if (bufP == NULL) { h5JNIFatalError(env, "H5Sget_select_hyper_blocklist: buf not pinned"); return -1; } ba = (hsize_t *) malloc(nb * 2 * (long) rank * sizeof(hsize_t)); if (ba == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR buf, bufP, JNI_ABORT); h5JNIFatalError(env, "H5Screate-simple: buffer not converted to hsize_t"); return -1; } status = H5Sget_select_hyper_blocklist((hid_t) spaceid, (hsize_t) st, (hsize_t) nb, (hsize_t *) ba); if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR buf, bufP, JNI_ABORT); free(ba); h5libraryError(env); return -1; } for (i = 0; i < (numblocks * 2 * rank); i++) { bufP[i] = ba[i]; } free(ba); ENVPTR->ReleaseLongArrayElements(ENVPAR buf, bufP, 0); return (jint) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_elem_pointlist * Signature: (IJJ[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1elem_1pointlist (JNIEnv *env, jclass clss, jint spaceid, jlong startpoint, jlong numpoints, jlongArray buf) { herr_t status; jlong *bufP; jboolean isCopy; hsize_t *ba; int i; int rank; if (buf == NULL) { h5nullArgument(env, "H5Sget_select_elem_pointlist: buf is NULL"); return -1; } rank = H5Sget_simple_extent_ndims(spaceid); if (rank <= 0) rank = 1; if (ENVPTR->GetArrayLength(ENVPAR buf) < (numpoints * rank)) { h5badArgument(env, "H5Sget_select_elem_pointlist: buf input array too small"); return -1; } bufP = ENVPTR->GetLongArrayElements(ENVPAR buf, &isCopy); if (bufP == NULL) { h5JNIFatalError(env, "H5Sget_select_elem_pointlist: buf not pinned"); return -1; } ba = (hsize_t *) malloc(((long) numpoints * (long) rank) * sizeof(hsize_t)); if (ba == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR buf, bufP, JNI_ABORT); h5JNIFatalError(env, "H5Sget_select_elem_pointlist: buf not converted to hsize_t"); return -1; } status = H5Sget_select_elem_pointlist((hid_t) spaceid, (hsize_t) startpoint, (hsize_t) numpoints, (hsize_t *) ba); if (status < 0) { free(ba); ENVPTR->ReleaseLongArrayElements(ENVPAR buf, bufP, JNI_ABORT); h5libraryError(env); return -1; } for (i = 0; i < (numpoints * rank); i++) { bufP[i] = ba[i]; } free(ba); ENVPTR->ReleaseLongArrayElements(ENVPAR buf, bufP, 0); return (jint) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_bounds * Signature: (I[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1bounds (JNIEnv *env, jclass clss, jint spaceid, jlongArray start, jlongArray end) { herr_t status; jlong *startP, *endP; jboolean isCopy; hsize_t *strt; hsize_t *en; int rank; int i; if (start == NULL) { h5nullArgument(env, "H5Sget_select_bounds: start is NULL"); return -1; } if (end == NULL) { h5nullArgument(env, "H5Sget_select_bounds: end is NULL"); return -1; } startP = ENVPTR->GetLongArrayElements(ENVPAR start, &isCopy); if (startP == NULL) { h5JNIFatalError(env, "H5Sget_select_bounds: start not pinned"); return -1; } rank = (int) ENVPTR->GetArrayLength(ENVPAR start); strt = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (strt == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); h5JNIFatalError(env, "H5Sget_select_bounds: start not converted to hsize_t"); return -1; } endP = ENVPTR->GetLongArrayElements(ENVPAR end, &isCopy); if (endP == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); free(strt); h5JNIFatalError(env, "H5Sget_select_bounds: end not pinned"); return -1; } en = (hsize_t *) malloc(rank * sizeof(hsize_t)); if (en == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR end, endP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); free(strt); h5JNIFatalError(env, "H5Sget_simple_extent: dims not converted to hsize_t"); return -1; } status = H5Sget_select_bounds((hid_t) spaceid, (hsize_t *) strt, (hsize_t *) en); if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR end, endP, JNI_ABORT); free(strt); free(en); h5libraryError(env); return -1; } for (i = 0; i < rank; i++) { startP[i] = strt[i]; endP[i] = en[i]; } ENVPTR->ReleaseLongArrayElements(ENVPAR start, startP, 0); ENVPTR->ReleaseLongArrayElements(ENVPAR end, endP, 0); free(strt); free(en); return (jint) status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sencode * Signature: (I)[B */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sencode (JNIEnv *env, jclass cls, jint obj_id) { herr_t status = -1; unsigned char *bufPtr; size_t buf_size = 0; jbyteArray returnedArray = NULL; if (obj_id < 0) { h5badArgument(env, "H5Sencode: invalid argument"); return NULL; } status = H5Sencode(obj_id, NULL, &buf_size); if (status < 0) { h5libraryError(env); return NULL; } if (buf_size < 0) { h5badArgument(env, "H5Sencode: buf_size < 0"); return NULL; } bufPtr = (unsigned char*) calloc((size_t) 1, buf_size); if (bufPtr == NULL) { h5outOfMemory(env, "H5Sencode: calloc failed"); return NULL; } status = H5Sencode((hid_t) obj_id, bufPtr, &buf_size); if (status < 0) { free(bufPtr); h5libraryError(env); return NULL; } returnedArray = ENVPTR->NewByteArray(ENVPAR buf_size); ENVPTR->SetByteArrayRegion(ENVPAR returnedArray, 0, buf_size, (jbyte *) bufPtr); free(bufPtr); return returnedArray; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sdecode * Signature: ([B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sdecode (JNIEnv *env, jclass cls, jbyteArray buf) { hid_t sid = -1; jbyte *bufP; jboolean isCopy; if (buf == NULL) { h5nullArgument(env, "H5Sdecode: buf is NULL"); return -1; } bufP = ENVPTR->GetByteArrayElements(ENVPAR buf, &isCopy); if (bufP == NULL) { h5JNIFatalError( env, "H5Sdecode: buf not pinned"); return -1; } sid = H5Sdecode(bufP); if (sid < 0) { ENVPTR->ReleaseByteArrayElements(ENVPAR buf, bufP, JNI_ABORT); h5libraryError(env); return -1; } ENVPTR->ReleaseByteArrayElements(ENVPAR buf, bufP, JNI_ABORT); return (jint)sid; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5iImp.c0000644002344600011330000001505012371212307015652 0ustar byrnhdf/**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * Identifier API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include "hdf5.h" #include #include #include "h5jni.h" /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1type (JNIEnv *env, jclass clss, jint obj_id) { H5I_type_t retVal = H5I_BADID; retVal = H5Iget_type((hid_t)obj_id); if (retVal == H5I_BADID) { h5libraryError(env); } return (jint)retVal; } /********************************************************************** * * * New functions release 1.6.2 versus release 1.6.1 * * * **********************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_name * Signature: (ILjava/lang/String;J)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1name (JNIEnv *env, jclass clss, jint obj_id, jobjectArray name, jlong buf_size) { char *aName; jstring str; hssize_t size; long bs; bs = (long)buf_size; if (bs <= 0) { h5badArgument( env, "H5Iget_name: buf_size <= 0"); return -1; } aName = (char*)malloc(sizeof(char)*bs); if (aName == NULL) { h5outOfMemory( env, "H5Iget_name: malloc failed"); return -1; } size = H5Iget_name((hid_t)obj_id, aName, (size_t)buf_size); if (size < 0) { free(aName); h5libraryError(env); return -1; /* exception, returns immediately */ } /* successful return -- save the string; */ str = ENVPTR->NewStringUTF(ENVPAR aName); ENVPTR->SetObjectArrayElement(ENVPAR name,0,str); free(aName); return (jlong)size; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_ref * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1ref (JNIEnv *env, jclass clss, jint obj_id) { int retVal = -1; retVal = H5Iget_ref( (hid_t)obj_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iinc_ref * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iinc_1ref (JNIEnv *env, jclass clss, jint obj_id) { int retVal = -1; retVal = H5Iinc_ref( (hid_t)obj_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Idec_1ref * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Idec_1ref (JNIEnv *env, jclass clss, jint obj_id) { int retVal = -1; retVal = H5Idec_ref( (hid_t)obj_id); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /********************************************************************** * * * New functions release 1.6.3 versus release 1.6.2 * * * **********************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_file_id * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1file_1id (JNIEnv *env, jclass clss, jint obj_id) { hid_t file_id = 0; file_id = H5Iget_file_id ((hid_t) obj_id); if (file_id < 0) { h5libraryError(env); } return (jint) file_id; } /********************************************************************** * * * New functions release 1.8.0 * * * **********************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_type_ref * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1type_1ref (JNIEnv *env, jclass clss, jint type) { int retVal; retVal = H5Iget_type_ref((H5I_type_t)type); if (retVal <0){ h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Inmembers * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Inmembers (JNIEnv *env, jclass clss, jint type) { herr_t retVal; hsize_t num_members; retVal = H5Inmembers((H5I_type_t)type, &num_members); if (retVal <0){ h5libraryError(env); } return (jint)num_members; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iis_valid * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iis_1valid (JNIEnv *env, jclass clss, jint obj_id) { htri_t bval = 0; bval = H5Iis_valid((hid_t)obj_id); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Itype_exists * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Itype_1xists (JNIEnv *env, jclass clss, jint type) { htri_t bval = 0; bval = H5Itype_exists((H5I_type_t)type); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5rImp.c0000644002344600011330000002343712371212307015673 0ustar byrnhdf/**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * Reference API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include "hdf5.h" #include #include #include "h5jni.h" /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Rcreate * Signature: ([BILjava/lang/String;II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Rcreate (JNIEnv *env, jclass clss, jbyteArray ref, jint loc_id, jstring name, jint ref_type, jint space_id) { char* rName; jboolean isCopy; herr_t status; jbyte *refP; if (ref == NULL) { h5nullArgument( env, "H5Rcreate: ref is NULL"); return -1; } if (name == NULL) { h5nullArgument( env, "H5Rcreate: name is NULL"); return -1; } if (ref_type == H5R_OBJECT) { if (ENVPTR->GetArrayLength(ENVPAR ref) != H5R_OBJ_REF_BUF_SIZE) { h5badArgument( env, "H5Rcreate: ref input array != H5R_OBJ_REF_BUF_SIZE"); return -1; } } else if (ref_type == H5R_DATASET_REGION) { if (ENVPTR->GetArrayLength(ENVPAR ref) != H5R_DSET_REG_REF_BUF_SIZE) { h5badArgument( env, "H5Rcreate: region ref input array != H5R_DSET_REG_REF_BUF_SIZE"); return -1; } } else { h5badArgument( env, "H5Rcreate: ref_type unknown type "); return -1; } refP = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR ref, &isCopy); if (refP == NULL) { h5JNIFatalError(env, "H5Rcreate: ref not pinned"); return -1; } rName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (rName == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR ref,refP,JNI_ABORT); h5JNIFatalError(env, "H5Rcreate: name not pinned"); return -1; } status = H5Rcreate(refP, (hid_t)loc_id, rName, (H5R_type_t)ref_type, (hid_t)space_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, rName); if (status < 0) { ENVPTR->ReleaseByteArrayElements(ENVPAR ref, refP, JNI_ABORT); h5libraryError(env); } else { ENVPTR->ReleaseByteArrayElements(ENVPAR ref, refP, 0); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Rdereference * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Rdereference (JNIEnv *env, jclass clss, jint dataset, jint ref_type, jbyteArray ref ) { jboolean isCopy; jbyte *refP; hid_t status; if (ref == NULL) { h5nullArgument( env, "H5Rdereference: ref is NULL"); return -1; } if ((ref_type == H5R_OBJECT) && ENVPTR->GetArrayLength(ENVPAR ref) != H5R_OBJ_REF_BUF_SIZE) { h5badArgument( env, "H5Rdereference: obj ref input array != H5R_OBJ_REF_BUF_SIZE"); return -1; } else if ((ref_type == H5R_DATASET_REGION) && ENVPTR->GetArrayLength(ENVPAR ref) != H5R_DSET_REG_REF_BUF_SIZE) { h5badArgument( env, "H5Rdereference: region ref input array != H5R_DSET_REG_REF_BUF_SIZE"); return -1; } refP = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR ref, &isCopy); if (refP == NULL) { h5JNIFatalError(env, "H5Rderefernce: ref not pinned"); return -1; } status = H5Rdereference((hid_t)dataset, (H5R_type_t)ref_type, refP); ENVPTR->ReleaseByteArrayElements(ENVPAR ref, refP, JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Rget_region * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Rget_1region (JNIEnv *env, jclass clss, jint dataset, jint ref_type, jbyteArray ref ) { hid_t status; jboolean isCopy; jbyte *refP; if (ref_type != H5R_DATASET_REGION) { h5badArgument( env, "H5Rget_region: bad ref_type "); return -1; } if (ref == NULL) { h5nullArgument( env, "H5Rget_region: ref is NULL"); return -1; } if ( ENVPTR->GetArrayLength(ENVPAR ref) != H5R_DSET_REG_REF_BUF_SIZE) { h5badArgument( env, "H5Rget_region: region ref input array != H5R_DSET_REG_REF_BUF_SIZE"); return -1; } refP = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR ref, &isCopy); if (refP == NULL) { h5JNIFatalError(env, "H5Rget_region: ref not pinned"); return -1; } status = H5Rget_region((hid_t)dataset, (H5R_type_t)ref_type, refP); ENVPTR->ReleaseByteArrayElements(ENVPAR ref, refP, JNI_ABORT); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5G_obj_t H5Rget_obj_type * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Rget_1obj_1type (JNIEnv *env, jclass clss, jint loc_id, jint ref_type, jbyteArray ref) { int retVal =-1; jboolean isCopy; jbyte *refP; H5O_type_t object_info; if (ref == NULL) { h5nullArgument( env, "H5Rget_object_type: ref is NULL"); return -1; } refP = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR ref, &isCopy); if (refP == NULL) { h5JNIFatalError(env, "H5Rget_object_type: ref not pinned"); return -1; } retVal = H5Rget_obj_type2((hid_t)loc_id, (H5R_type_t)ref_type, refP, &object_info); if(retVal >= 0) retVal = object_info; ENVPTR->ReleaseByteArrayElements(ENVPAR ref, refP, JNI_ABORT); if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: int H5Rget_obj_type2 * Signature: (II[B[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Rget_1obj_1type2 (JNIEnv *env, jclass clss, jint loc_id, jint ref_type, jbyteArray ref, jintArray ref_obj) { jint status; jboolean isCopy; jbyte *refP; jint *ref_objP; int retVal; if (ref == NULL) { h5nullArgument( env, "H5Rget_object_type: ref is NULL"); return -1; } if (ref_obj == NULL) { h5nullArgument( env, "H5Rget_object_type: ref_obj is NULL"); return -1; } refP = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR ref, &isCopy); if (refP == NULL) { h5JNIFatalError(env, "H5Rget_object_type: ref not pinned"); return -1; } ref_objP = (jint *)ENVPTR->GetIntArrayElements(ENVPAR ref_obj, &isCopy); if (ref_objP == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR ref,refP,0); h5JNIFatalError(env, "H5Rget_object_type: ref_obj not pinned"); return -1; } status = H5Rget_obj_type2((hid_t)loc_id, (H5R_type_t)ref_type, refP, (H5O_type_t*)ref_objP); retVal = ref_objP[0]; ENVPTR->ReleaseByteArrayElements(ENVPAR ref, refP, JNI_ABORT); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR ref_obj,ref_objP, JNI_ABORT); h5libraryError(env); } else { ENVPTR->ReleaseIntArrayElements(ENVPAR ref_obj, ref_objP, 0); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Rget_name * Signature: (II[B[Ljava/lang/String;J)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Rget_1name (JNIEnv *env, jclass clss, jint loc_id, jint ref_type, jbyteArray ref, jobjectArray name, jlong size) { jlong ret_val = -1; jbyte *refP; jboolean isCopy; char *aName=NULL; jstring str; size_t bs; bs = (long)size; if (bs <= 0) { h5badArgument( env, "H5Rget_name: size <= 0"); return -1; } if (ref == NULL) { h5nullArgument( env, "H5Rget_name: ref is NULL"); return -1; } if ((ref_type == H5R_OBJECT) && ENVPTR->GetArrayLength(ENVPAR ref) != H5R_OBJ_REF_BUF_SIZE) { h5badArgument( env, "H5Rdereference: obj ref input array != H5R_OBJ_REF_BUF_SIZE"); return -1; } else if ((ref_type == H5R_DATASET_REGION) && ENVPTR->GetArrayLength(ENVPAR ref) != H5R_DSET_REG_REF_BUF_SIZE) { h5badArgument( env, "H5Rdereference: region ref input array != H5R_DSET_REG_REF_BUF_SIZE"); return -1; } refP = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR ref, &isCopy); if (refP == NULL) { h5JNIFatalError(env, "H5Rcreate: ref not pinned"); return -1; } aName = (char*)malloc(sizeof(char)*bs); if (aName == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR ref, refP, JNI_ABORT); h5outOfMemory( env, "H5Aget_name: malloc failed"); return -1; } ret_val = (jlong) H5Rget_name((hid_t)loc_id, (H5R_type_t) ref_type, refP, aName, bs) ; ENVPTR->ReleaseByteArrayElements(ENVPAR ref, refP, JNI_ABORT); if (ret_val < 0) { free(aName); h5libraryError(env); return -1; } str = ENVPTR->NewStringUTF(ENVPAR aName); ENVPTR->SetObjectArrayElement(ENVPAR name, 0, str); if (aName) free (aName); return ret_val; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5fImp.c0000644002344600011330000004460012326542262015660 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * This code is the C-interface called by Java programs to access the * file interface functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include #include #include #include "hdf5.h" #include "h5jni.h" #include "h5fImp.h" #include "h5util.h" /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fopen * Signature: (Ljava/lang/String;II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fopen (JNIEnv *env, jclass clss, jstring name, jint flags, jint access_id) { hid_t status; char* file; jboolean isCopy; if (name == NULL) { /* exception -- bad argument? */ h5nullArgument( env, "H5Fopen: name is NULL"); return -1; } file = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (file == NULL) { /* exception -- out of memory? */ h5JNIFatalError( env, "H5Fopen: file name not pinned"); return -1; } status = H5Fopen(file, (unsigned) flags, (hid_t) access_id ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,file); if (status < 0) { /* throw exception */ h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fcreate * Signature: (Ljava/lang/String;III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fcreate (JNIEnv *env, jclass clss, jstring name, jint flags, jint create_id, jint access_id) { hid_t status; char* file; jboolean isCopy; if (name == NULL) { /* exception -- bad argument? */ h5nullArgument( env, "H5Fcreate: name is NULL"); return -1; } file = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (file == NULL) { /* exception -- out of memory? */ h5JNIFatalError( env, "H5Fcreate: file name is not pinned"); return -1; } status = H5Fcreate(file, flags, create_id, access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name,file); if (status < 0) { /* throw exception */ h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fflush * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fflush (JNIEnv *env, jclass clss, jint object_id, jint scope) { herr_t retVal = -1; retVal = H5Fflush((hid_t) object_id, (H5F_scope_t) scope ); if (retVal < 0) { /* throw exception */ h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_name * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1name (JNIEnv *env, jclass cls, jint file_id) { char *namePtr; jstring str; ssize_t buf_size; /* get the length of the name */ buf_size = H5Fget_name(file_id, NULL, 0); if (buf_size <= 0) { h5badArgument( env, "H5Fget_name: buf_size <= 0"); return NULL; } buf_size++; /* add extra space for the null terminator */ namePtr = (char*)malloc(sizeof(char)*buf_size); if (namePtr == NULL) { h5outOfMemory( env, "H5Fget_name: malloc failed"); return NULL; } buf_size = H5Fget_name ((hid_t) file_id, (char *)namePtr, (size_t)buf_size); if (buf_size < 0) { free(namePtr); h5libraryError(env); return NULL; } str = ENVPTR->NewStringUTF(ENVPAR namePtr); free(namePtr); return str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fis_hdf5 * Signature: (Ljava/lang/String;)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fis_1hdf5 (JNIEnv *env, jclass clss, jstring name) { htri_t retVal = 0; char * file; jboolean isCopy; if (name == NULL) { /* exception -- bad argument? */ h5nullArgument( env, "H5Fis_hdf5: name is NULL"); return JNI_FALSE; } file = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (file == NULL) { /* exception -- out of memory? */ h5JNIFatalError( env, "H5Fis_hdf5: file name is not pinned"); return JNI_FALSE; } retVal = H5Fis_hdf5(file); ENVPTR->ReleaseStringUTFChars(ENVPAR name,file); if (retVal > 0) { return JNI_TRUE; } else if (retVal == 0) { return JNI_FALSE; } else { /* raise exception here -- return value is irrelevant */ h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_create_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fget_1create_1plist (JNIEnv *env, jclass clss, jint file_id) { hid_t retVal = -1; retVal = H5Fget_create_plist((hid_t) file_id ); if (retVal < 0) { /* throw exception */ h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_access_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fget_1access_1plist (JNIEnv *env, jclass clss, jint file_id) { hid_t retVal = -1; retVal = H5Fget_access_plist((hid_t) file_id); if (retVal < 0) { /* throw exception */ h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_intent * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1intent (JNIEnv *env, jclass cls, jint file_id) { herr_t ret_val = -1; unsigned intent = 0; ret_val = H5Fget_intent((hid_t) file_id, &intent); if (ret_val < 0) { h5libraryError(env); } return (jint)intent; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fclose (JNIEnv *env, jclass clss, jint file_id) { herr_t status = -1; if (file_id > 0) status = H5Fclose((hid_t) file_id ); if (status < 0) { h5libraryError(env); return -1; } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fmount * Signature: (ILjava/lang/String;II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fmount (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint child_id, jint plist_id) { herr_t status; char* file; jboolean isCopy; if (name == NULL) { /* exception -- bad argument? */ h5nullArgument( env, "H5Fmount: name is NULL"); return -1; } file = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (file == NULL) { /* exception -- out of memory? */ h5JNIFatalError( env, "H5Fmount: file name is not pinned"); return -1; } status = H5Fmount((hid_t) loc_id, file, (hid_t) child_id, (hid_t) plist_id ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,file); if (status < 0) { /* throw exception */ h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Funmount * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Funmount (JNIEnv *env, jclass clss, jint loc_id, jstring name) { herr_t status; char* file; jboolean isCopy; if (name == NULL) { /* exception -- bad argument? */ h5nullArgument( env, "H5Funmount: name is NULL"); return -1; } file = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (file == NULL) { h5JNIFatalError( env, "H5Funmount: file name is not pinned"); /* exception -- out of memory? */ return -1; } status = H5Funmount((hid_t) loc_id, file ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,file); if (status < 0) { /* throw exception */ h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_freespace * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1freespace (JNIEnv *env, jclass cls, jint file_id) { hssize_t ret_val = -1; ret_val = H5Fget_freespace((hid_t)file_id); if (ret_val < 0) { h5libraryError(env); } return (jlong)ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Freopen * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Freopen (JNIEnv *env, jclass clss, jint file_id) { hid_t retVal = -1; retVal = H5Freopen((hid_t)file_id); if (retVal < 0) { /* throw exception */ h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_obj_ids_long * Signature: (IIJ[I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1obj_1ids_1long (JNIEnv *env, jclass cls, jint file_id, jint types, jlong maxObjs, jintArray obj_id_list) { ssize_t ret_val; jint *obj_id_listP; jboolean isCopy; hid_t *id_list; int rank; int i; ret_val = -1; if ( obj_id_list == NULL ) { h5nullArgument( env, "H5Fget_obj_ids_long: obj_id_list is NULL"); return -1; } obj_id_listP = ENVPTR->GetIntArrayElements(ENVPAR obj_id_list,&isCopy); if (obj_id_listP == NULL) { h5JNIFatalError( env, "H5Fget_obj_ids_long: obj_id_list not pinned"); return -1; } rank = (int)ENVPTR->GetArrayLength(ENVPAR obj_id_list); id_list = (hid_t *)malloc( rank * sizeof(hid_t)); if (id_list == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR obj_id_list,obj_id_listP,JNI_ABORT); h5JNIFatalError(env, "H5Fget_obj_ids_long: obj_id_list not converted to hid_t"); return -1; } ret_val = H5Fget_obj_ids((hid_t)file_id, (unsigned int)types, (size_t)maxObjs, id_list); if (ret_val < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR obj_id_list,obj_id_listP,JNI_ABORT); free(id_list); h5libraryError(env); return -1; } for (i = 0; i < rank; i++) { obj_id_listP[i] = id_list[i]; } free(id_list); ENVPTR->ReleaseIntArrayElements(ENVPAR obj_id_list,obj_id_listP,0); return (jlong)ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_obj_ids * Signature: (III[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1obj_1ids (JNIEnv *env, jclass clss, jint file_id, jint types, jint obj_count, jintArray obj_id_list) { ssize_t status=-1; jint *obj_id_listP; jboolean isCopy; if ( obj_id_list == NULL ) { h5nullArgument( env, "H5Fget_obj_ids: obj_id_list is NULL"); return -1; } obj_id_listP = ENVPTR->GetIntArrayElements(ENVPAR obj_id_list,&isCopy); if (obj_id_listP == NULL) { h5JNIFatalError( env, "H5Fget_obj_ids: obj_id_list not pinned"); return -1; } status = H5Fget_obj_ids((hid_t)file_id, (unsigned int)types, (int)obj_count, (hid_t*)obj_id_listP); if (status < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR obj_id_list,obj_id_listP,JNI_ABORT); h5libraryError(env); } else { ENVPTR->ReleaseIntArrayElements(ENVPAR obj_id_list,obj_id_listP,0); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_obj_count(hid_t file_id, unsigned int types ) * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1obj_1count (JNIEnv *env, jclass clss, jint file_id, jint types ) { ssize_t status = -1; status = H5Fget_obj_count((hid_t)file_id, (unsigned int)types ); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_obj_count_long * Signature: (II)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1obj_1count_1long (JNIEnv *env, jclass cls, jint file_id, jint types) { ssize_t ret_val = -1; ret_val = H5Fget_obj_count((hid_t)file_id, (unsigned int)types ); if (ret_val < 0) { h5libraryError(env); } return (jlong)ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_name * Signature: (ILjava/lang/String;I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_2name (JNIEnv *env, jclass clss, jint obj_id, jstring name, jint buf_size) { char *aName; jstring str; ssize_t size; if (buf_size <= 0) { h5badArgument( env, "H5Fget_name: buf_size <= 0"); return NULL; } aName = (char*)malloc(sizeof(char)*buf_size); if (aName == NULL) { h5outOfMemory( env, "H5Fget_name: malloc failed"); return NULL; } size = H5Fget_name ((hid_t) obj_id, (char *)aName, (size_t)buf_size); if (size < 0) { free(aName); h5libraryError(env); return NULL; } str = ENVPTR->NewStringUTF(ENVPAR aName); free(aName); return str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_filesize * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1filesize (JNIEnv *env, jclass clss, jint file_id) { herr_t status; hsize_t size = 0; status = H5Fget_filesize ((hid_t) file_id, (hsize_t *) &size); if (status < 0) { h5libraryError(env); } return (jlong) size; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_mdc_hit_rate * Signature: (I)D */ JNIEXPORT jdouble JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1mdc_1hit_1rate (JNIEnv *env, jclass cls, jint file_id) { double rate = 0.0; herr_t ret_val = -1; ret_val = H5Fget_mdc_hit_rate((hid_t)file_id, &rate); if (ret_val < 0) { h5libraryError(env); } return (jdouble)rate; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_mdc_size * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1mdc_1size (JNIEnv *env, jclass cls, jint file_id, jlongArray metadata_cache) { herr_t ret_val = -1; jint size = 0; jlong *metadata_cache_ptr; size_t max_size=0, min_clean_size=0, cur_size=0; int cur_num_entries=0; jboolean isCopy; if ( metadata_cache == NULL ) { h5nullArgument( env, "H5Fget_mdc_size: metadata_cache is NULL"); return -1; } size = (int)ENVPTR->GetArrayLength(ENVPAR metadata_cache); if (size < 3) { h5badArgument(env, "H5Fget_mdc_size: length of metadata_cache < 3."); return -1; } ret_val = H5Fget_mdc_size((hid_t)file_id, &max_size, &min_clean_size, &cur_size, &cur_num_entries); if (ret_val < 0) { h5libraryError(env); return -1; } metadata_cache_ptr = ENVPTR->GetLongArrayElements(ENVPAR metadata_cache,&isCopy); metadata_cache_ptr[0] = max_size; metadata_cache_ptr[1] = min_clean_size; metadata_cache_ptr[2] = cur_size; ENVPTR->ReleaseLongArrayElements(ENVPAR metadata_cache, metadata_cache_ptr, 0); return (jint)cur_num_entries; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Freset_mdc_hit_rate_stats * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Freset_1mdc_1hit_1rate_1stats (JNIEnv *env, jclass cls, jint file_id) { herr_t ret_val = -1; ret_val = H5Freset_mdc_hit_rate_stats((hid_t)file_id); if (ret_val < 0) { h5libraryError(env); } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5export_dataset * Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5export_1dataset (JNIEnv *env, jclass cls, jstring file_export_name, jstring file_name, jstring object_path, jint binary_order) { herr_t status = -1; herr_t ret_val = -1; hid_t file_id = -1; hid_t dataset_id = -1; FILE *stream; char *file_export; char *file; char *object_name; jboolean isCopy; if (file_export_name == NULL) { h5nullArgument(env, "HDF5Library_export_data: file_export_name is NULL"); return; } if (file_name == NULL) { h5nullArgument(env, "HDF5Library_export_data: file_name is NULL"); return; } if (object_path == NULL) { h5nullArgument(env, "HDF5Library_export_data: object_path is NULL"); return; } file = (char *)ENVPTR->GetStringUTFChars(ENVPAR file_name, &isCopy); if (file == NULL) { /* exception -- out of memory? */ h5JNIFatalError( env, "H5Fopen: file name not pinned"); return; } file_id = H5Fopen(file, (unsigned)H5F_ACC_RDWR, (hid_t)H5P_DEFAULT); ENVPTR->ReleaseStringUTFChars(ENVPAR file_name, file); if (file_id < 0) { /* throw exception */ h5libraryError(env); return; } object_name = (char*)ENVPTR->GetStringUTFChars(ENVPAR object_path, &isCopy); if (object_name == NULL) { h5JNIFatalError( env, "H5Dopen: object name not pinned"); return; } dataset_id = H5Dopen2(file_id, (const char*)object_name, (hid_t)H5P_DEFAULT); ENVPTR->ReleaseStringUTFChars(ENVPAR object_path, object_name); if (dataset_id < 0) { H5Fclose(file_id); h5libraryError(env); return; } file_export = (char *)ENVPTR->GetStringUTFChars(ENVPAR file_export_name, 0); stream = fopen(file_export, "w+"); ENVPTR->ReleaseStringUTFChars(ENVPAR file_export_name, file_export); ret_val = h5str_dump_simple_dset(stream, dataset_id, binary_order); if (stream) fclose(stream); H5Dclose(dataset_id); H5Fclose(file_id); if (ret_val < 0) { h5libraryError(env); } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5sImp.h0000644002344600011330000001437512371212307015702 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5S */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5S #define _Included_ncsa_hdf_hdf5lib_H5_H5S #ifdef __cplusplus extern "C" { #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Screate * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Screate (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Screate_simple * Signature: (I[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Screate_1simple (JNIEnv *, jclass, jint, jlongArray, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Scopy * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Scopy (JNIEnv *, jclass, jint); #ifdef notdef // 10/28/99 -- added code to copy the array -- this is not used, // but serves as a reminder in case we try to implement this in // the future.... /* * Note: the argument coord is actually long coord[][], which has been * flattened by the caller. */ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_elements * Signature: (III[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1elements (JNIEnv *, jclass, jint, jint, jint, jlongArray); #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_elements * Signature: (III[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1elements (JNIEnv *, jclass, jint, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_all * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1all (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_none * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1none (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_valid * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1valid (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_simple_extent_npoints * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1simple_1extent_1npoints (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_npoints * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1npoints (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1type (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_simple_extent_ndims * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1simple_1extent_1ndims (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_simple_extent_dims * Signature: (I[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1simple_1extent_1dims (JNIEnv *, jclass, jint, jlongArray, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_simple_extent_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1simple_1extent_1type (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sset_extent_simple * Signature: (II[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sset_1extent_1simple (JNIEnv *, jclass, jint, jint, jlongArray, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sis_simple * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sis_1simple (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Soffset_simple * Signature: (I[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Soffset_1simple (JNIEnv *, jclass, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sextent_copy * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sextent_1copy (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sextent_equal * Signature: (II)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sextent_1equal (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sset_extent_none * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sset_1extent_1none (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sselect_hyperslab * Signature: (II[J[J[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sselect_1hyperslab (JNIEnv *, jclass, jint, jint, jlongArray, jlongArray, jlongArray, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Sclose (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_hyper_nblocks * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1hyper_1nblocks (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_elem_npoints * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1elem_1npoints (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_hyper_blocklist * Signature: (IJJ[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1hyper_1blocklist (JNIEnv *, jclass, jint, jlong, jlong, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_elem_pointlist * Signature: (IJJ[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1elem_1pointlist (JNIEnv *, jclass, jint, jlong, jlong, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sget_select_bounds * Signature: (I[J[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sget_1select_1bounds (JNIEnv *, jclass, jint, jlongArray, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sencode * Signature: (I)[B */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sencode (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Sdecode * Signature: ([B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Sdecode (JNIEnv *, jclass, jbyteArray); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5eImp.h0000644002344600011330000000645712326542262015674 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5E */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5E #define _Included_ncsa_hdf_hdf5lib_H5_H5E #ifdef __cplusplus extern "C" { #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eauto_is_v2 * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eauto_1is_1v2 (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eregister_class * Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eregister_1class (JNIEnv *, jclass, jstring, jstring, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eunregister_class * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eunregister_1class (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eclose_msg * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eclose_1msg (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ecreate_msg * Signature: (IILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ecreate_1msg (JNIEnv *, jclass, jint, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ecreate_stack * Signature: ()I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ecreate_1stack (JNIEnv *, jclass); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eget_current_stack * Signature: ()I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eget_1current_1stack (JNIEnv *, jclass); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eclose_stack * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eclose_1stack (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eprint1 * Signature: (Ljava/lang/Object;)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eprint1 (JNIEnv *, jclass, jobject); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eprint2 * Signature: (ILjava/lang/Object;)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eprint2 (JNIEnv *, jclass, jint, jobject); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eget_class_name * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eget_1class_1name (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eset_current_stack * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eset_1current_1stack (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Epop * Signature: (IJ)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Epop (JNIEnv *, jclass, jint, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eclear2 * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eclear2 (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eget_msg * Signature: (I[I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eget_1msg (JNIEnv *, jclass, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Eget_num * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Eget_1num (JNIEnv *, jclass, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5fImp.h0000644002344600011330000001150512371212307015655 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5F */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5F #define _Included_ncsa_hdf_hdf5lib_H5_H5F #ifdef __cplusplus extern "C" { #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fopen * Signature: (Ljava/lang/String;II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fopen (JNIEnv *, jclass, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fcreate * Signature: (Ljava/lang/String;III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fcreate (JNIEnv *, jclass, jstring, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fflush * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fflush (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_name * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1name (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fis_hdf5 * Signature: (Ljava/lang/String;)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fis_1hdf5 (JNIEnv *, jclass, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_create_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fget_1create_1plist (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_access_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fget_1access_1plist (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_intent * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1intent (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Fclose (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fmount * Signature: (ILjava/lang/String;II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fmount (JNIEnv *, jclass, jint, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Funmount * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Funmount (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_freespace * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1freespace (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Freopen * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Freopen (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_obj_ids_long * Signature: (IIJ[I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1obj_1ids_1long (JNIEnv *, jclass, jint, jint, jlong, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_obj_ids * Signature: (III[I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1obj_1ids (JNIEnv *, jclass, jint, jint, jint, jintArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_obj_count(hid_t file_id, unsigned int types ) * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1obj_1count (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_obj_count_long * Signature: (II)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1obj_1count_1long (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_name * Signature: (ILjava/lang/String;I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_2name (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_filesize * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1filesize (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_mdc_hit_rate * Signature: (I)D */ JNIEXPORT jdouble JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1mdc_1hit_1rate (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Fget_mdc_size * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Fget_1mdc_1size (JNIEnv *, jclass, jint, jlongArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Freset_mdc_hit_rate_stats * Signature: (I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Freset_1mdc_1hit_1rate_1stats (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5export_dataset * Signature: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5export_1dataset (JNIEnv *, jclass, jstring, jstring, jstring, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5gImp.c0000644002344600011330000011564312371212307015661 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * This code is the C-interface called by Java programs to access the * Group Object API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdfdfgroup.org/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include #include #include #include #include "hdf5.h" #include "h5jni.h" #include "h5gImp.h" #include "h5util.h" /* missing definitions from hdf5.h */ #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE (!FALSE) #endif #ifdef __cplusplus herr_t obj_info_all(hid_t g_id, const char *name, const H5L_info_t *linfo, void *op_data); herr_t obj_info_max(hid_t g_id, const char *name, const H5L_info_t *linfo, void *op_data); int H5Gget_obj_info_max(hid_t, char **, int *, int *, unsigned long *, int); int H5Gget_obj_info_full( hid_t loc_id, char **objname, int *otype, int *ltype, unsigned long *fno, unsigned long *objno, int indexType, int indexOrder); #else static herr_t obj_info_all(hid_t g_id, const char *name, const H5L_info_t *linfo, void *op_data); static herr_t obj_info_max(hid_t g_id, const char *name, const H5L_info_t *linfo, void *op_data); static int H5Gget_obj_info_max(hid_t, char **, int *, int *, unsigned long *, int); static int H5Gget_obj_info_full( hid_t loc_id, char **objname, int *otype, int *ltype, unsigned long *fno, unsigned long *objno, int indexType, int indexOrder); #endif typedef struct info_all { char **objname; int *otype; int *ltype; unsigned long *objno; unsigned long *fno; unsigned long idxnum; int count; } info_all_t; /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gcreate * Signature: (ILjava/lang/String;J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gcreate (JNIEnv *env, jclass clss, jint loc_id, jstring name, jlong size_hint) { hid_t status; char* gName; jboolean isCopy; if (name == NULL) { h5nullArgument(env, "H5Gcreate: name is NULL"); return -1; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { h5JNIFatalError(env, "H5Gcreate: file name not pinned"); return -1; } status = H5Gcreate2((hid_t)loc_id, gName, (hid_t)H5P_DEFAULT, (hid_t)H5P_DEFAULT, (hid_t)H5P_DEFAULT ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gopen * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gopen (JNIEnv *env, jclass clss, jint loc_id, jstring name) { hid_t status; char* gName; jboolean isCopy; if (name == NULL) { h5nullArgument(env, "H5Gopen: name is NULL"); return -1; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { h5JNIFatalError(env, "H5Gopen: file name not pinned"); return -1; } status = H5Gopen2((hid_t)loc_id, gName, (hid_t)H5P_DEFAULT ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gclose (JNIEnv *env, jclass clss, jint group_id) { herr_t retVal = H5Gclose((hid_t)group_id) ; if (retVal < 0) { h5libraryError(env); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Glink * Signature: (IILjava/lang/String;Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Glink (JNIEnv *env, jclass clss, jint loc_id, jint link_type, jstring current_name, jstring new_name) { herr_t status; char *cName, *nName; jboolean isCopy; if (current_name == NULL) { h5nullArgument(env, "H5Glink: current_name is NULL"); return -1; } if (new_name == NULL) { h5nullArgument(env, "H5Glink: new_name is NULL"); return -1; } cName = (char *)ENVPTR->GetStringUTFChars(ENVPAR current_name,&isCopy); if (cName == NULL) { h5JNIFatalError(env, "H5Glink: current_name not pinned"); return -1; } nName = (char *)ENVPTR->GetStringUTFChars(ENVPAR new_name,&isCopy); if (nName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR current_name,cName); h5JNIFatalError(env, "H5Glink: new_name not pinned"); return -1; } status = H5Glink((hid_t)loc_id, (H5G_link_t)link_type, cName, nName); ENVPTR->ReleaseStringUTFChars(ENVPAR new_name,nName); ENVPTR->ReleaseStringUTFChars(ENVPAR current_name,cName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Glink * Signature: (ILjava/lang/String;IILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Glink2 (JNIEnv *env, jclass clss, jint current_loc_id, jstring current_name, jint link_type, jint new_loc_id, jstring new_name) { herr_t status; char *cName, *nName; jboolean isCopy; if (current_name == NULL) { h5nullArgument(env, "H5Glink2: current_name is NULL"); return -1; } if (new_name == NULL) { h5nullArgument(env, "H5Glink2: new_name is NULL"); return -1; } cName = (char *)ENVPTR->GetStringUTFChars(ENVPAR current_name,&isCopy); if (cName == NULL) { h5JNIFatalError(env, "H5Glink2: current_name not pinned"); return -1; } nName = (char *)ENVPTR->GetStringUTFChars(ENVPAR new_name,&isCopy); if (nName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR current_name,cName); h5JNIFatalError(env, "H5Glink2: new_name not pinned"); return -1; } status = H5Glink2((hid_t)current_loc_id, cName, (H5G_link_t)link_type, (hid_t)new_loc_id, nName); ENVPTR->ReleaseStringUTFChars(ENVPAR new_name,nName); ENVPTR->ReleaseStringUTFChars(ENVPAR current_name,cName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gunlink * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gunlink (JNIEnv *env, jclass clss, jint loc_id, jstring name) { herr_t status; char* gName; jboolean isCopy; if (name == NULL) { h5nullArgument(env, "H5Gunlink: name is NULL"); return -1; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { h5JNIFatalError(env, "H5Gunlink: name not pinned"); return -1; } status = H5Gunlink((hid_t)loc_id, gName ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gmove * Signature: (ILjava/lang/String;Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gmove (JNIEnv *env, jclass clss, jint loc_id, jstring src, jstring dst) { herr_t status; char *sName, *dName; jboolean isCopy; if (src == NULL) { h5nullArgument(env, "H5Gmove: src is NULL"); return -1; } if (dst == NULL) { h5nullArgument(env, "H5Gmove: dst is NULL"); return -1; } sName = (char *)ENVPTR->GetStringUTFChars(ENVPAR src,&isCopy); if (sName == NULL) { h5JNIFatalError(env, "H5Gmove: src not pinned"); return -1; } dName = (char *)ENVPTR->GetStringUTFChars(ENVPAR dst,&isCopy); if (dName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR src,sName); h5JNIFatalError(env, "H5Gmove: dst not pinned"); return -1; } status = H5Gmove((hid_t)loc_id, sName, dName ); ENVPTR->ReleaseStringUTFChars(ENVPAR dst,dName); ENVPTR->ReleaseStringUTFChars(ENVPAR src,sName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_objinfo * Signature: (ILjava/lang/String;Z[J[J[I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1objinfo (JNIEnv *env, jclass clss, jint loc_id, jstring name, jboolean follow_link, jlongArray fileno, jlongArray objno, jintArray link_info, jlongArray mtime) { char* gName; jboolean isCopy; herr_t retVal; jint *linkInfo; jlong *fileInfo, *objInfo, *timeInfo; hbool_t follow; H5G_stat_t h5gInfo; if (name == NULL) { h5nullArgument(env, "H5Gget_objinfo: name is NULL"); return -1; } if (follow_link == JNI_TRUE) { follow = TRUE; /* HDF5 'TRUE' */ } else if (follow_link == JNI_FALSE) { follow = FALSE; /* HDF5 'FALSE' */ } else { h5badArgument(env, "H5Gget_objinfo: follow_link is invalid"); return -1; } if (fileno == NULL) { h5nullArgument(env, "H5Gget_objinfo: fileno is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR fileno) < 2) { h5badArgument(env, "H5Gget_objinfo: fileno input array < 2"); return -1; } if (objno == NULL) { h5nullArgument(env, "H5Gget_objinfo: objno is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR objno) < 2) { h5badArgument(env, "H5Gget_objinfo: objno input array < 2"); return -1; } if (link_info == NULL) { h5nullArgument(env, "H5Gget_objinfo: link_info is NULL"); return -1; } if (ENVPTR->GetArrayLength(ENVPAR link_info) < 3) { h5badArgument(env, "H5Gget_objinfo: link_info input array < 3"); return -1; } if (mtime == NULL) { h5nullArgument(env, "H5Gget_objinfo: mtime is NULL"); return -1; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { h5JNIFatalError(env, "H5Gget_object: name not pinned"); return -1; } fileInfo = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR fileno,&isCopy); if (fileInfo == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); h5JNIFatalError(env, "H5Gget_object: fileno not pinned"); return -1; } objInfo = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR objno,&isCopy); if (objInfo == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR fileno,fileInfo,JNI_ABORT); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); h5JNIFatalError(env, "H5Gget_object: objno not pinned"); return -1; } linkInfo = (jint *)ENVPTR->GetIntArrayElements(ENVPAR link_info,&isCopy); if (linkInfo == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR objno,objInfo,JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR fileno,fileInfo,JNI_ABORT); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); h5JNIFatalError(env, "H5Gget_object: link_info not pinned"); return -1; } timeInfo = (jlong *)ENVPTR->GetLongArrayElements(ENVPAR mtime,&isCopy); if (timeInfo == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR link_info,linkInfo,JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR objno,objInfo,JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR fileno,fileInfo,JNI_ABORT); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); h5JNIFatalError(env, "H5Gget_object: mtime not pinned"); return -1; } retVal = H5Gget_objinfo((hid_t)loc_id, gName, follow, &h5gInfo); if (retVal < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR mtime,timeInfo,JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR objno,objInfo,JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR fileno,fileInfo,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR link_info,linkInfo,JNI_ABORT); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); h5libraryError(env); return -1; } else { fileInfo[0] = (jlong)h5gInfo.fileno[0]; fileInfo[1] = (jlong)h5gInfo.fileno[1]; objInfo[0] = (jlong)h5gInfo.objno[0]; objInfo[1] = (jlong)h5gInfo.objno[1]; timeInfo[0] = (jlong)h5gInfo.mtime; linkInfo[0] = (jint)h5gInfo.nlink; linkInfo[1] = (jint)h5gInfo.type; linkInfo[2] = (jint)h5gInfo.linklen; ENVPTR->ReleaseLongArrayElements(ENVPAR mtime,timeInfo,0); ENVPTR->ReleaseLongArrayElements(ENVPAR objno,objInfo,0); ENVPTR->ReleaseLongArrayElements(ENVPAR fileno,fileInfo,0); ENVPTR->ReleaseIntArrayElements(ENVPAR link_info,linkInfo,0); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); } return (jint)retVal; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_linkval * Signature: (ILjava/lang/String;I[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1linkval (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint size, jobjectArray value) { char* gName; jboolean isCopy; char *lValue; jstring str; herr_t status; if (size < 0) { h5badArgument(env, "H5Gget_linkval: size < 0"); return -1; } if (name == NULL) { h5nullArgument(env, "H5Gget_linkval: name is NULL"); return -1; } lValue = (char *) malloc(sizeof(char)*size); if (lValue == NULL) { h5outOfMemory(env, "H5Gget_linkval: malloc failed "); return -1; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { free(lValue); h5JNIFatalError(env, "H5Gget_linkval: name not pinned"); return -1; } status = H5Gget_linkval((hid_t)loc_id, gName, (size_t)size, lValue); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (status >= 0) { /* may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR lValue); if (str == NULL) { /* exception -- fatal JNI error */ free(lValue); h5JNIFatalError(env, "H5Gget_linkval: return string not created"); return -1; } /* the SetObjectArrayElement may raise exceptions... */ ENVPTR->SetObjectArrayElement(ENVPAR value,0,(jobject)str); free(lValue); } else { free(lValue); h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gset_comment * Signature: (ILjava/lang/String;Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gset_1comment (JNIEnv *env, jclass clss, jint loc_id, jstring name, jstring comment) { herr_t status; char *gName, *gComment; jboolean isCopy; if (name == NULL) { h5nullArgument(env, "H5Gset_comment: name is NULL"); return -1; } if (comment == NULL) { h5nullArgument(env, "H5Gset_comment: comment is NULL"); return -1; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { h5JNIFatalError(env, "H5Gset_comment: name not pinned"); return -1; } gComment = (char *)ENVPTR->GetStringUTFChars(ENVPAR comment,&isCopy); if (gComment == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); h5JNIFatalError(env, "H5Gset_comment: comment not pinned"); return -1; } status = H5Gset_comment((hid_t)loc_id, gName, gComment); ENVPTR->ReleaseStringUTFChars(ENVPAR comment,gComment); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_comment * Signature: (ILjava/lang/String;I[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1comment (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint bufsize, jobjectArray comment) { char* gName; jboolean isCopy; char *gComment; jstring str; jint status; if (bufsize <= 0) { h5badArgument(env, "H5Gget_comment: bufsize <= 0"); return -1; } if (name == NULL) { h5nullArgument(env, "H5Gget_comment: name is NULL"); return -1; } if (comment == NULL) { h5nullArgument(env, "H5Gget_comment: comment is NULL"); return -1; } gComment = (char *)malloc(sizeof(char)*bufsize); if (gComment == NULL) { /* exception -- out of memory */ h5outOfMemory(env, "H5Gget_comment: malloc failed"); return -1; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { free(gComment); h5JNIFatalError(env, "H5Gget_comment: name not pinned"); return -1; } status = H5Gget_comment((hid_t)loc_id, gName, (size_t)bufsize, gComment); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (status >= 0) { /* may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR gComment); if (str == NULL) { free(gComment); h5JNIFatalError(env, "H5Gget_comment: return string not allocated"); return -1; } /* The SetObjectArrayElement may raise exceptions */ ENVPTR->SetObjectArrayElement(ENVPAR comment,0,(jobject)str); free(gComment); } else { free(gComment); h5libraryError(env); } return (jint)status; } /*************************************************************** * New APIs for HDF5.1.8 * ***************************************************************/ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_num_objs * Signature: (I[J)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1num_1objs (JNIEnv *env, jclass clss, jint loc_id, jlongArray num_obj) { int status; jlong *num_objP; jboolean isCopy; hsize_t *num_obja; int i; int rank; if (num_obj == NULL) { h5nullArgument( env, "H5Gget_num_objs: num_obj is NULL"); return -1; } num_objP = ENVPTR->GetLongArrayElements(ENVPAR num_obj,&isCopy); if (num_objP == NULL) { h5JNIFatalError(env, "H5Gget_num_objs: num_obj not pinned"); return -1; } rank = (int) ENVPTR->GetArrayLength(ENVPAR num_obj); num_obja = (hsize_t *)malloc( rank * sizeof(hsize_t)); if (num_obja == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR num_obj,num_objP,JNI_ABORT); h5JNIFatalError(env, "H5Gget_num_objs: num_obj not converted to hsize_t"); return -1; } status = H5Gget_num_objs((hid_t)loc_id, (hsize_t *)num_obja); if (status < 0) { ENVPTR->ReleaseLongArrayElements(ENVPAR num_obj,num_objP,JNI_ABORT); free(num_obja); h5libraryError(env); return -1; } for (i = 0; i < rank; i++) { num_objP[i] = num_obja[i]; } ENVPTR->ReleaseLongArrayElements(ENVPAR num_obj,num_objP,0); free(num_obja); return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_objname_by_idx * Signature: (IJ[Ljava/lang/String;J)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1objname_1by_1idx (JNIEnv *env, jclass clss, jint group_id, jlong idx, jobjectArray name, jlong buf_size) { char *aName; jstring str; hssize_t size; long bs; bs = (long)buf_size; if (bs <= 0) { h5badArgument( env, "H5Gget_objname_by_idx: buf_size <= 0"); return -1; } aName = (char*)malloc(sizeof(char)*bs); if (aName == NULL) { h5outOfMemory(env, "H5Gget_objname_by_idx: malloc failed"); return -1; } size = H5Gget_objname_by_idx((hid_t)group_id, (hsize_t)idx, aName, (size_t)buf_size); if (size < 0) { free(aName); h5libraryError(env); /* exception, returns immediately */ return -1; } /* successful return -- save the string; */ str = ENVPTR->NewStringUTF(ENVPAR aName); if (str == NULL) { free(aName); h5JNIFatalError( env,"H5Gget_objname_by_idx: return string failed"); return -1; } free(aName); /* Note: throws ArrayIndexOutOfBoundsException, ArrayStoreException */ ENVPTR->SetObjectArrayElement(ENVPAR name,0,str); return (jlong)size; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_objtype_by_idx * Signature: (IJ)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1objtype_1by_1idx (JNIEnv *env, jclass clss, jint group_id, jlong idx) { int type; type = H5Gget_objtype_by_idx((hid_t)group_id, (hsize_t)idx ); if (type < 0) { h5libraryError(env); /* exception, returns immediately */ return -1; } return (jint)type; } /* ///////////////////////////////////////////////////////////////////////////////// // // // Add these methods so that we don't need to call H5Gget_objtype_by_idx // in a loop to get information for all the object in a group, which takes // a lot of time to finish if the number of objects is more than 10,000 // ///////////////////////////////////////////////////////////////////////////////// */ /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_obj_info_full * Signature: (ILjava/lang/String;[Ljava/lang/String;[I[I[J[JIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1obj_1info_1full (JNIEnv *env, jclass clss, jint loc_id, jstring group_name, jobjectArray objName, jintArray oType, jintArray lType, jlongArray fNo, jlongArray oRef, jint n, jint indx_type, jint indx_order) { herr_t ret_val = -1; char *gName=NULL; char **oName=NULL; jboolean isCopy; jstring str; jint *otarr; jint *ltarr; jlong *refP; jlong *fnoP; unsigned long *refs=NULL; unsigned long *fnos=NULL; int i; hid_t gid = (hid_t)loc_id; int indexType = indx_type; int indexOrder = indx_order; if (group_name != NULL) { gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR group_name,&isCopy); if (gName == NULL) { h5JNIFatalError(env, "H5Gget_obj_info_full: name not pinned"); return -1; } gid = H5Gopen2((hid_t)loc_id, gName, H5P_DEFAULT); ENVPTR->ReleaseStringUTFChars(ENVPAR group_name,gName); if(gid < 0) { h5JNIFatalError(env, "H5Gget_obj_info_full: could not get group identifier"); return -1; } } if (oType == NULL) { h5nullArgument(env, "H5Gget_obj_info_full: oType is NULL"); return -1; } if (lType == NULL) { h5nullArgument(env, "H5Gget_obj_info_full: lType is NULL"); return -1; } if (oRef == NULL) { h5nullArgument(env, "H5Gget_obj_info_full: oRef is NULL"); return -1; } otarr = ENVPTR->GetIntArrayElements(ENVPAR oType,&isCopy); if (otarr == NULL) { h5JNIFatalError(env, "H5Gget_obj_info_full: otype not pinned"); return -1; } ltarr = ENVPTR->GetIntArrayElements(ENVPAR lType,&isCopy); if (ltarr == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR oType,otarr,JNI_ABORT); h5JNIFatalError(env, "H5Gget_obj_info_full: ltype not pinned"); return -1; } refP = ENVPTR->GetLongArrayElements(ENVPAR oRef,&isCopy); fnoP = ENVPTR->GetLongArrayElements(ENVPAR fNo,&isCopy); if (refP == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR lType,ltarr,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR oType,otarr,JNI_ABORT); h5JNIFatalError(env, "H5Gget_obj_info_full: type not pinned"); return -1; } oName = (char **)calloc(n, sizeof (*oName)); if (!oName) goto error; refs = (unsigned long *)calloc(n, sizeof (unsigned long)); fnos = (unsigned long *)calloc(n, sizeof (unsigned long)); if (!refs || !fnos) goto error; ret_val = H5Gget_obj_info_full(gid, oName, (int *)otarr, (int *)ltarr, fnos, refs, indexType, indexOrder); if (ret_val < 0) goto error; if (refs) { for (i=0; iNewStringUTF(ENVPAR *(oName+i)); ENVPTR->SetObjectArrayElement(ENVPAR objName,i,(jobject)str); } } /* for (i=0; iReleaseIntArrayElements(ENVPAR lType,ltarr,0); ENVPTR->ReleaseIntArrayElements(ENVPAR oType,otarr,0); ENVPTR->ReleaseLongArrayElements(ENVPAR oRef,refP,0); ENVPTR->ReleaseLongArrayElements(ENVPAR fNo,fnoP,0); if (oName) h5str_array_free(oName, n); if (refs) free(refs); if (fnos) free(fnos); return ret_val; error: if (group_name != NULL) H5Gclose(gid); ENVPTR->ReleaseIntArrayElements(ENVPAR lType,ltarr,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR oType,otarr,JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR oRef,refP,JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR fNo,fnoP,JNI_ABORT); if (oName) h5str_array_free(oName, n); if (refs) free(refs); if (fnos) free(fnos); h5libraryError(env); return -1; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_obj_info_max * Signature: (I[Ljava/lang/String;[I[I[JII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1obj_1info_1max (JNIEnv *env, jclass clss, jint loc_id, jobjectArray objName, jintArray oType, jintArray lType, jlongArray oRef, jint maxnum, jint n) { herr_t ret_val = -1; char **oName=NULL; jboolean isCopy; jstring str; jint *otarr; jint *ltarr; jlong *refP; unsigned long *refs; int i; if (oType == NULL) { h5nullArgument(env, "H5Gget_obj_info_max: oType is NULL"); return -1; } if (lType == NULL) { h5nullArgument(env, "H5Gget_obj_info_max: lType is NULL"); return -1; } if (oRef == NULL) { h5nullArgument(env, "H5Gget_obj_info_max: oRef is NULL"); return -1; } otarr = ENVPTR->GetIntArrayElements(ENVPAR oType,&isCopy); if (otarr == NULL) { h5JNIFatalError(env, "H5Gget_obj_info_max: otype not pinned"); return -1; } ltarr = ENVPTR->GetIntArrayElements(ENVPAR lType,&isCopy); if (ltarr == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR oType,otarr,JNI_ABORT); h5JNIFatalError(env, "H5Gget_obj_info_max: ltype not pinned"); return -1; } refP = ENVPTR->GetLongArrayElements(ENVPAR oRef,&isCopy); if (refP == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR oType,otarr,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR lType,ltarr,JNI_ABORT); h5JNIFatalError(env, "H5Gget_obj_info_max: type not pinned"); return -1; } oName = (char **)calloc(n, sizeof (*oName)); refs = (unsigned long *)calloc(n, sizeof (unsigned long)); ret_val = H5Gget_obj_info_max((hid_t)loc_id, oName, (int *)otarr, (int *)ltarr, refs, maxnum ); if (ret_val < 0) { ENVPTR->ReleaseIntArrayElements(ENVPAR lType,ltarr,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR oType,otarr,JNI_ABORT); ENVPTR->ReleaseLongArrayElements(ENVPAR oRef,refP,JNI_ABORT); h5str_array_free(oName, n); free(refs); h5libraryError(env); return -1; } ENVPTR->ReleaseIntArrayElements(ENVPAR lType,ltarr,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR oType,otarr,JNI_ABORT); if (refs) { for (i=0; iReleaseLongArrayElements(ENVPAR oRef,refP,0); if (oName) { for (i=0; iNewStringUTF(ENVPAR *(oName+i)); ENVPTR->SetObjectArrayElement(ENVPAR objName,i,(jobject)str); } } /* for (i=0; iotype+datainfo->count) = -1; *(datainfo->ltype+datainfo->count) = -1; *(datainfo->objname+datainfo->count) = (char *) malloc(strlen(name)+1); strcpy(*(datainfo->objname+datainfo->count), name); *(datainfo->objno+datainfo->count) = -1; } else { *(datainfo->otype+datainfo->count) = object_info.type; *(datainfo->ltype+datainfo->count) = info->type; *(datainfo->objname+datainfo->count) = (char *) malloc(strlen(name)+1); strcpy(*(datainfo->objname+datainfo->count), name); *(datainfo->fno+datainfo->count) = object_info.fileno; *(datainfo->objno+datainfo->count) = (unsigned long)object_info.addr; /* if(info->type==H5L_TYPE_HARD) *(datainfo->objno+datainfo->count) = (unsigned long)info->u.address; else *(datainfo->objno+datainfo->count) = info->u.val_size; */ } datainfo->count++; return 0; } herr_t obj_info_max(hid_t loc_id, const char *name, const H5L_info_t *info, void *op_data) { int type = -1; herr_t retVal = 0; info_all_t* datainfo = (info_all_t*)op_data; H5O_info_t object_info; retVal = H5Oget_info(loc_id, &object_info); if (retVal < 0) { *(datainfo->otype+datainfo->count) = -1; *(datainfo->ltype+datainfo->count) = -1; *(datainfo->objname+datainfo->count) = NULL; *(datainfo->objno+datainfo->count) = -1; return 1; } else { *(datainfo->otype+datainfo->count) = object_info.type; *(datainfo->ltype+datainfo->count) = info->type; /* this will be freed by h5str_array_free(oName, n)*/ *(datainfo->objname+datainfo->count) = (char *)malloc(strlen(name)+1); strcpy(*(datainfo->objname+datainfo->count), name); if(info->type==H5L_TYPE_HARD) *(datainfo->objno+datainfo->count) = (unsigned long)info->u.address; else *(datainfo->objno+datainfo->count) = info->u.val_size; } datainfo->count++; if(datainfo->count < (int)datainfo->idxnum) return 0; else return 1; } /* * Create a java object of hdf.h5.structs.H5G_info_t * public class H5G_info_t { * public H5G_STORAGE_TYPE storage_type; // Type of storage for links in group * public long nlinks; // Number of links in group * public long max_corder; // Current max. creation order value for group * public int mounted; // Whether group has a file mounted on it * } * */ jobject create_H5G_info_t(JNIEnv *env, H5G_info_t group_info) { jclass cls; jboolean jmounted; jint storage_type; jobject obj; jfieldID fid_storage_type, fid_nlinks, fid_max_corder, fid_mounted; cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5G_info_t"); if (cls == NULL) return NULL; obj = ENVPTR->AllocObject(ENVPAR cls); if (obj == NULL) return NULL; fid_storage_type = ENVPTR->GetFieldID(ENVPAR cls, "storage_type", "I"); fid_nlinks = ENVPTR->GetFieldID(ENVPAR cls, "nlinks", "J"); fid_max_corder = ENVPTR->GetFieldID(ENVPAR cls, "max_corder", "J"); fid_mounted = ENVPTR->GetFieldID(ENVPAR cls, "mounted", "Z"); if (fid_storage_type==NULL || fid_nlinks==NULL || fid_max_corder==NULL || fid_mounted == NULL) return NULL; jmounted = (group_info.mounted==0) ? JNI_FALSE : JNI_TRUE; storage_type = (jint)group_info.storage_type; ENVPTR->SetIntField(ENVPAR obj, fid_storage_type, (jint)storage_type); ENVPTR->SetLongField(ENVPAR obj, fid_nlinks, (jlong)group_info.nlinks); ENVPTR->SetLongField(ENVPAR obj, fid_max_corder, (jlong)group_info.max_corder); ENVPTR->SetBooleanField(ENVPAR obj, fid_mounted, jmounted); return obj; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gcreate2 * Signature: (ILjava/lang/String;III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gcreate2 (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint link_plist_id, jint create_plist_id, jint access_plist_id) { hid_t status; char* gName; jboolean isCopy; if (name == NULL) { h5nullArgument( env, "H5Gcreate: name is NULL"); return -1; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { h5JNIFatalError( env, "H5Gcreate: file name not pinned"); return -1; } status = H5Gcreate2((hid_t)loc_id, gName, (hid_t)link_plist_id, (hid_t)create_plist_id, (hid_t)access_plist_id ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gcreate_anon * Signature: (III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gcreate_1anon (JNIEnv *env, jclass cls, jint loc_id, jint gcpl_id, jint gapl_id) { hid_t ret_val; ret_val = H5Gcreate_anon((hid_t)loc_id, (hid_t)gcpl_id, (hid_t)gapl_id); if (ret_val < 0) { h5libraryError(env); } return (jint)ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Gopen2 * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Gopen2 (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint access_plist_id) { hid_t status; char* gName; jboolean isCopy; if (name == NULL) { h5nullArgument(env, "H5Gopen: name is NULL"); return -1; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { h5JNIFatalError(env, "H5Gopen: file name not pinned"); return -1; } status = H5Gopen2((hid_t)loc_id, gName, (hid_t)access_plist_id ); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (status < 0) { h5libraryError(env); } return (jint)status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_create_plist * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1create_1plist (JNIEnv *env, jclass cls, jint loc_id) { hid_t ret_val; ret_val = H5Gget_create_plist((hid_t)loc_id); if (ret_val < 0) { h5libraryError(env); } return (jint)ret_val; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_info * Signature: (I)Lncsa/hdf/hdf5lib/structs/H5G_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1info (JNIEnv *env, jclass cls, jint loc_id) { H5G_info_t group_info; herr_t ret_val = -1; ret_val = H5Gget_info((hid_t)loc_id, &group_info); if (ret_val < 0) { h5libraryError(env); return NULL; } return create_H5G_info_t(env, group_info); } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_info_by_name * Signature: (ILjava/lang/String;I)Lncsa/hdf/hdf5lib/structs/H5G_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1info_1by_1name (JNIEnv *env, jclass cls, jint loc_id, jstring name, jint lapl_id) { H5G_info_t group_info; herr_t ret_val = -1; char* gName; jboolean isCopy; if (name == NULL) { h5nullArgument(env, "H5Gget_info_by_name: name is NULL"); return NULL; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { h5JNIFatalError(env, "H5Gget_info_by_name: file name not pinned"); return NULL; } ret_val = H5Gget_info_by_name((hid_t)loc_id, gName, &group_info, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (ret_val < 0) { h5libraryError(env); return NULL; } return create_H5G_info_t(env, group_info); } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Gget_info_by_idx * Signature: (ILjava/lang/String;IIJI)Lncsa/hdf/hdf5lib/structs/H5G_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Gget_1info_1by_1idx (JNIEnv *env, jclass cls, jint loc_id, jstring name, jint index_type, jint order, jlong n, jint lapl_id) { H5G_info_t group_info; herr_t ret_val = -1; char* gName; jboolean isCopy; H5_index_t cindex_type = (H5_index_t)index_type; H5_iter_order_t corder = (H5_iter_order_t)order; if (name == NULL) { h5nullArgument(env, "H5Gget_info_by_idx: name is NULL"); return NULL; } gName = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (gName == NULL) { h5JNIFatalError(env, "H5Gget_info_by_idx: file name not pinned"); return NULL; } ret_val = H5Gget_info_by_idx((hid_t)loc_id, gName, cindex_type, corder, (hsize_t)n, &group_info, (hid_t)lapl_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name,gName); if (ret_val < 0) { h5libraryError(env); return NULL; } return create_H5G_info_t(env, group_info); } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5aImp.h0000644002344600011330000001547612371212307015663 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5A */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5A #define _Included_ncsa_hdf_hdf5lib_H5_H5A #ifdef __cplusplus extern "C" { #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Acreate * Signature: (ILjava/lang/String;III)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Acreate (JNIEnv *, jclass, jint, jstring, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aopen_name * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen_1name (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aopen_idx * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen_1idx (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Awrite * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Awrite (JNIEnv *, jclass, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5AwriteVL * Signature: (II[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5AwriteVL (JNIEnv *, jclass, jint, jint, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aread * Signature: (II[B)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aread (JNIEnv *, jclass, jint, jint, jbyteArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_space * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aget_1space (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aget_1type (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_name * Signature: (IJ[Ljava/lang/String;)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1name (JNIEnv *, jclass, jint, jlong, jobjectArray); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_num_attrs * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1num_1attrs (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Adelete * Signature: (ILjava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Adelete (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aclose (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5AreadVL * Signature: (II[Ljava/lang/String;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5AreadVL (JNIEnv *, jclass, jint, jint, jobjectArray); /* * Copies the content of one dataset to another dataset * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Acopy * Signature: (II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Acopy (JNIEnv *, jclass, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Acreate2 * Signature: (ILjava/lang/String;IIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Acreate2 (JNIEnv *, jclass, jint, jstring, jint, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Aopen * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Aopen_by_idx * Signature: (ILjava/lang/String;IIIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Acreate_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;IIIII)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Acreate_1by_1name (JNIEnv *, jclass, jint, jstring, jstring, jint, jint, jint, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aexists_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aexists_1by_1name (JNIEnv *, jclass, jint, jstring, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Arename * Signature: (ILjava/lang/String;Ljava/lang/String)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Arename (JNIEnv *, jclass, jint, jstring, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Arename_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Arename_1by_1name (JNIEnv *, jclass, jint, jstring, jstring, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_name_by_idx * Signature: (ILjava/lang/String;IIJI)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1name_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_storage_size * Signature: (I)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1storage_1size (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_info * Signature: (I)Lncsa/hdf/hdf5lib/structs/H5A_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1info (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_info_by_idx * Signature: (ILjava/lang/String;IIJI)Lncsa/hdf/hdf5lib/structs/H5A_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1info_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aget_info_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;I)Lncsa/hdf/hdf5lib/structs/H5A_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aget_1info_1by_1name (JNIEnv *, jclass, jint, jstring, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Adelete_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Adelete_1by_1name (JNIEnv *, jclass, jint, jstring, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Aexists * Signature: (ILjava/lang/String;)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Aexists (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Adelete_by_idx * Signature: (ILjava/lang/String;IIJI)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Adelete_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Aopen_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;II)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Aopen_1by_1name (JNIEnv *, jclass, jint, jstring, jstring, jint, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5iImp.h0000644002344600011330000000406012371212307015656 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5I */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5I #define _Included_ncsa_hdf_hdf5lib_H5_H5I #ifdef __cplusplus extern "C" { #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_type * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1type (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_name * Signature: (ILjava/lang/String;J)J */ JNIEXPORT jlong JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1name (JNIEnv *, jclass, jint, jobjectArray, jlong); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_ref * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1ref (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iinc_ref * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iinc_1ref (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Idec_1ref * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Idec_1ref (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_file_id * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1file_1id (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iget_type_ref * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iget_1type_1ref (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Inmembers * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Inmembers (JNIEnv*, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Iis_valid * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Iis_1valid (JNIEnv*, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Itype_exists * Signature: (I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Itype_1xists (JNIEnv*, jclass, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5oImp.h0000644002344600011330000000731512371212307015672 0ustar byrnhdf/* DO NOT EDIT THIS FILE - it is machine generated */ #include /* Header for class ncsa_hdf_hdf5lib_H5_H5_H5O */ #ifndef _Included_ncsa_hdf_hdf5lib_H5_H5O #define _Included_ncsa_hdf_hdf5lib_H5_H5O #ifdef __cplusplus extern "C" { #endif extern JavaVM *jvm; extern jobject visit_callback; /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Oopen * Signature: (ILjava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Oopen (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: _H5Oclose * Signature: (I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5__1H5Oclose (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ocopy * Signature: (ILjava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ocopy (JNIEnv *, jclass, jint, jstring, jint, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_info * Signature: (I)Lncsa/hdf/hdf5lib/structs/H5O_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1info (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_info_by_name * Signature: (ILjava/lang/String;I)Lncsa/hdf/hdf5lib/structs/H5O_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1info_1by_1name (JNIEnv *, jclass, jint, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_info_by_idx * Signature: (ILjava/lang/String;IIJI)Lncsa/hdf/hdf5lib/structs/H5O_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1info_1by_1idx (JNIEnv *, jclass, jint, jstring, jint, jint, jlong, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Olink * Signature: (IILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Olink (JNIEnv *, jclass, jint, jint, jstring, jint, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ovisit * Signature: (IIILjava/lang/Object;Ljava/lang/Object;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ovisit (JNIEnv *, jclass, jint, jint, jint, jobject, jobject); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ovisit_by_name * Signature: (ILjava/lang/String;IILjava/lang/Object;Ljava/lang/Object;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ovisit_1by_1name (JNIEnv *, jclass, jint, jstring, jint, jint, jobject, jobject, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oset_comment * Signature: (ILjava/lang/String;)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oset_1comment (JNIEnv *, jclass, jint, jstring); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oset_comment_by_name * Signature: (ILjava/lang/String;Ljava/lang/String;I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oset_1comment_1by_1name (JNIEnv *, jclass, jint, jstring, jstring, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_comment * Signature: (I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1comment (JNIEnv *, jclass, jint); /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Oget_comment_by_name * Signature: (ILjava/lang/String;I)Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Oget_1comment_1by_1name (JNIEnv *, jclass, jint, jstring, jint); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdf5lib/h5lImp.c0000644002344600011330000010643712372144560015675 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * This code is the C-interface called by Java programs to access the * Link Object API Functions of the HDF5 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdfdfgroup.org/HDF5/doc/ * */ #ifdef __cplusplus extern "C" { #endif #include #include #include "hdf5.h" #include "h5jni.h" #include "h5lImp.h" #ifdef __cplusplus #define CBENVPTR (cbenv) #define CBENVPAR #define JVMPTR (jvm) #define JVMPAR #define JVMPAR2 #else #define CBENVPTR (*cbenv) #define CBENVPAR cbenv, #define JVMPTR (*jvm) #define JVMPAR jvm #define JVMPAR2 jvm, #endif /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lcopy * Signature: (ILjava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lcopy (JNIEnv *env, jclass clss, jint cur_loc_id, jstring cur_name, jint dst_loc_id, jstring dst_name, jint create_id, jint access_id) { char *lCurName; char *lDstName; jboolean isCopy; herr_t status = -1; if (cur_name == NULL) { h5nullArgument(env, "H5Lcopy: cur_name is NULL"); return; } lCurName = (char*)ENVPTR->GetStringUTFChars(ENVPAR cur_name, &isCopy); if (lCurName == NULL) { h5JNIFatalError(env, "H5Lcopy: cur_name not pinned"); return; } if (dst_name == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5nullArgument(env, "H5Lcopy: dst_name is NULL"); return; } lDstName = (char*)ENVPTR->GetStringUTFChars(ENVPAR dst_name, &isCopy); if (lDstName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5JNIFatalError(env, "H5Lcopy: dst_name not pinned"); return; } status = H5Lcopy((hid_t)cur_loc_id, (const char*)lCurName, (hid_t)dst_loc_id, (const char*)lDstName, (hid_t)create_id, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); ENVPTR->ReleaseStringUTFChars(ENVPAR dst_name, lDstName); if (status < 0) { h5libraryError(env); return; } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lcreate_external * Signature: (Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lcreate_1external (JNIEnv *env, jclass clss, jstring file_name, jstring cur_name, jint dst_loc_id, jstring dst_name, jint create_id, jint access_id) { char *lFileName; char *lCurName; char *lDstName; jboolean isCopy; herr_t status = -1; if (file_name == NULL) { h5nullArgument(env, "H5Lcreate_external: file_name is NULL"); return; } lFileName = (char*)ENVPTR->GetStringUTFChars(ENVPAR file_name, &isCopy); if (lFileName == NULL) { h5JNIFatalError(env, "H5Lcreate_external: file_name not pinned"); return; } if (cur_name == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR file_name, lFileName); h5nullArgument(env, "H5Lcreate_external: cur_name is NULL"); return; } lCurName = (char*)ENVPTR->GetStringUTFChars(ENVPAR cur_name,&isCopy); if (lCurName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR file_name, lFileName); h5JNIFatalError(env, "H5Lcreate_external: cur_name not pinned"); return; } if (dst_name == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR file_name, lFileName); ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5nullArgument(env, "H5Lcreate_external: dst_name is NULL"); return; } lDstName = (char*)ENVPTR->GetStringUTFChars(ENVPAR dst_name, &isCopy); if (lDstName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR file_name, lFileName); ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5JNIFatalError(env, "H5Lcreate_external: dst_name not pinned"); return; } status = H5Lcreate_external((const char*)lFileName, (const char*)lCurName, (hid_t)dst_loc_id, (const char*)lDstName, (hid_t)create_id, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR file_name, lFileName); ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); ENVPTR->ReleaseStringUTFChars(ENVPAR dst_name, lDstName); if (status < 0) { h5libraryError(env); return; } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lcreate_hard * Signature: (ILjava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lcreate_1hard (JNIEnv *env, jclass clss, jint cur_loc_id, jstring cur_name, jint dst_loc_id, jstring dst_name, jint create_id, jint access_id) { char *lCurName; char *lDstName; jboolean isCopy; herr_t status = -1; if (cur_name == NULL) { h5nullArgument(env, "H5Lcreate_hard: cur_name is NULL"); return; } lCurName = (char*)ENVPTR->GetStringUTFChars(ENVPAR cur_name, &isCopy); if (lCurName == NULL) { h5JNIFatalError(env, "H5Lcreate_hard: cur_name not pinned"); return; } if (dst_name == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5nullArgument(env, "H5Lcreate_hard: dst_name is NULL"); return; } lDstName = (char*)ENVPTR->GetStringUTFChars(ENVPAR dst_name, &isCopy); if (lDstName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5JNIFatalError(env, "H5Lcreate_hard: dst_name not pinned"); return; } status = H5Lcreate_hard((hid_t)cur_loc_id, (const char*)lCurName, (hid_t)dst_loc_id, (const char*)lDstName, (hid_t)create_id, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); ENVPTR->ReleaseStringUTFChars(ENVPAR dst_name, lDstName); if (status < 0) { h5libraryError(env); return; } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lcreate_soft * Signature: (Ljava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lcreate_1soft (JNIEnv *env, jclass clss, jstring cur_name, jint dst_loc_id, jstring dst_name, jint create_id, jint access_id) { char *lCurName; char *lDstName; jboolean isCopy; herr_t status = -1; if (cur_name == NULL) { h5nullArgument(env, "H5Lcreate_soft: cur_name is NULL"); return; } lCurName = (char*)ENVPTR->GetStringUTFChars(ENVPAR cur_name, &isCopy); if (lCurName == NULL) { h5JNIFatalError(env, "H5Lcreate_soft: cur_name not pinned"); return; } if (dst_name == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5nullArgument(env, "H5Lcreate_soft: dst_name is NULL"); return; } lDstName = (char*)ENVPTR->GetStringUTFChars(ENVPAR dst_name,&isCopy); if (lDstName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5JNIFatalError(env, "H5Lcreate_soft: dst_name not pinned"); return; } status = H5Lcreate_soft((const char*)lCurName, (hid_t)dst_loc_id, (const char*)lDstName, (hid_t)create_id, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); ENVPTR->ReleaseStringUTFChars(ENVPAR dst_name, lDstName); if (status < 0) { h5libraryError(env); return; } return; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ldelete * Signature: (ILjava/lang/String;I)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ldelete (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint access_id) { char *lName; jboolean isCopy; herr_t status = -1; if (name == NULL) { h5nullArgument(env, "H5Ldelete: name is NULL"); return; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Ldelete: name not pinned"); return; } status = H5Ldelete((hid_t)loc_id, (const char*)lName, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { h5libraryError(env); return; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Ldelete_by_idx * Signature: (ILjava/lang/String;IIJI)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Ldelete_1by_1idx (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint index_field, jint order, jlong link_n, jint access_id) { char *lName; herr_t status; jboolean isCopy; hsize_t n = (hsize_t)link_n; if (name == NULL) { h5nullArgument(env, "H5Ldelete_by_idx: name is NULL"); return; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Ldelete_by_idx: name not pinned"); return; } status = H5Ldelete_by_idx((hid_t)loc_id, (const char*)lName, (H5_index_t)index_field, (H5_iter_order_t)order, n, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { h5libraryError(env); return; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lexists * Signature: (ILjava/lang/String;I)Z */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lexists (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint access_id) { char *lName; jboolean isCopy; htri_t bval = 0; if (name == NULL) { h5nullArgument(env, "H5Lexists: name is NULL"); return JNI_FALSE; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Lexists: name not pinned"); return JNI_FALSE; } bval = H5Lexists((hid_t)loc_id, (const char*)lName, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (bval > 0) { return JNI_TRUE; } else if (bval == 0) { return JNI_FALSE; } else { h5libraryError(env); return JNI_FALSE; } } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_info * Signature: (ILjava/lang/String;I)Lncsa/hdf/hdf5lib/structs/H5L_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1info (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint access_id) { char *lName; herr_t status; H5L_info_t infobuf; jboolean isCopy; jclass cls; jmethodID constructor; jvalue args[5]; jobject ret_info_t = NULL; if (name == NULL) { h5nullArgument(env, "H5Lget_info: name is NULL"); return NULL; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Lget_info: name not pinned"); return NULL; } status = H5Lget_info((hid_t)loc_id, (const char*)lName, (H5L_info_t*)&infobuf, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { h5libraryError(env); return NULL; } // get a reference to your class if you don't have it already cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5L_info_t"); if (cls == 0) { h5JNIFatalError( env, "JNI error: GetObjectClass failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(IZJIJ)V"); if (constructor == 0) { h5JNIFatalError( env, "JNI error: GetMethodID failed\n"); return NULL; } args[0].i = infobuf.type; args[1].z = infobuf.corder_valid; args[2].j = infobuf.corder; args[3].i = infobuf.cset; if(infobuf.type==0) args[4].j = infobuf.u.address; else args[4].j = infobuf.u.val_size; ret_info_t = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); return ret_info_t; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_info_by_idx * Signature: (ILjava/lang/String;IIJI)Lncsa/hdf/hdf5lib/structs/H5L_info_t; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1info_1by_1idx (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint index_field, jint order, jlong link_n, jint access_id) { char *lName; herr_t status; H5L_info_t infobuf; jboolean isCopy; jclass cls; jmethodID constructor; jvalue args[5]; jobject ret_info_t = NULL; if (name == NULL) { h5nullArgument(env, "H5Lget_info_by_idx: name is NULL"); return NULL; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Lget_info_by_idx: name not pinned"); return NULL; } status = H5Lget_info_by_idx((hid_t)loc_id, (const char*)lName, (H5_index_t)index_field, (H5_iter_order_t)order, (hsize_t)link_n, (H5L_info_t*)&infobuf, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { h5libraryError(env); return NULL; } // get a reference to your class if you don't have it already cls = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdf5lib/structs/H5L_info_t"); if (cls == 0) { h5JNIFatalError(env, "JNI error: GetObjectClass failed\n"); return NULL; } // get a reference to the constructor; the name is constructor = ENVPTR->GetMethodID(ENVPAR cls, "", "(IZJIJ)V"); if (constructor == 0) { h5JNIFatalError(env, "JNI error: GetMethodID failed\n"); return NULL; } args[0].i = infobuf.type; args[1].z = infobuf.corder_valid; args[2].j = infobuf.corder; args[3].i = infobuf.cset; if(infobuf.type==0) args[4].j = infobuf.u.address; else args[4].j = infobuf.u.val_size; ret_info_t = ENVPTR->NewObjectA(ENVPAR cls, constructor, args); return ret_info_t; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_name_by_idx * Signature: (ILjava/lang/String;IIJI)Ljava/lang/String; */ JNIEXPORT jobject JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1name_1by_1idx (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint index_field, jint order, jlong link_n, jint access_id) { size_t buf_size; char *lName; char *lValue; jboolean isCopy; jlong status_size; jstring str = NULL; if (name == NULL) { h5nullArgument(env, "H5Lget_name_by_idx: name is NULL"); return NULL; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Lget_name_by_idx: name not pinned"); return NULL; } /* get the length of the link name */ status_size = H5Lget_name_by_idx((hid_t)loc_id, (const char*)lName, (H5_index_t)index_field, (H5_iter_order_t)order, (hsize_t)link_n, (char*)NULL, (size_t)0, (hid_t)H5P_DEFAULT); if(status_size < 0) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); h5libraryError(env); return NULL; } buf_size = (size_t)status_size + 1;/* add extra space for the null terminator */ lValue = (char*)malloc(sizeof(char) * buf_size); if (lValue == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); h5outOfMemory(env, "H5Lget_name_by_idx: malloc failed "); return NULL; } status_size = H5Lget_name_by_idx((hid_t)loc_id, (const char*)lName, (H5_index_t)index_field, (H5_iter_order_t)order, (hsize_t)link_n, (char*)lValue, (size_t)buf_size, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status_size < 0) { free(lValue); h5libraryError(env); return NULL; } /* may throw OutOfMemoryError */ str = ENVPTR->NewStringUTF(ENVPAR lValue); if (str == NULL) { /* exception -- fatal JNI error */ free(lValue); h5JNIFatalError(env, "H5Lget_name_by_idx: return string not created"); return NULL; } free(lValue); return str; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_val * Signature: (ILjava/lang/String;[Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1val (JNIEnv *env, jclass clss, jint loc_id, jstring name, jobjectArray link_value, jint access_id) { size_t buf_size; herr_t status; H5L_info_t infobuf; char *lName; char *lValue; const char *file_name; const char *obj_name; jboolean isCopy; jstring str; if (name == NULL) { h5nullArgument(env, "H5Lget_val: name is NULL"); return -1; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name,&isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Lget_val: name not pinned"); return -1; } /* get the length of the link val */ status = H5Lget_info((hid_t)loc_id, (const char*)lName, (H5L_info_t*)&infobuf, (hid_t)H5P_DEFAULT); if(status < 0) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); h5libraryError(env); return -1; } buf_size = infobuf.u.val_size + 1;/* add extra space for the null terminator */ if(infobuf.type == H5L_TYPE_HARD) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); h5JNIFatalError(env, "H5Lget_val: link is hard type"); return -1; } lValue = (char*)malloc(sizeof(char) * buf_size); if (lValue == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); h5outOfMemory(env, "H5Lget_val: malloc failed"); return -1; } status = H5Lget_val((hid_t)loc_id, (const char*)lName, (void*)lValue, (size_t)buf_size, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { free(lValue); h5libraryError(env); return -1; } /* may throw OutOfMemoryError */ if(infobuf.type == H5L_TYPE_EXTERNAL) { status = H5Lunpack_elink_val((char*)lValue, (size_t)infobuf.u.val_size, (unsigned*)NULL, (const char**)&file_name, (const char**)&obj_name); if (status < 0) { free(lValue); h5libraryError(env); return -1; } str = ENVPTR->NewStringUTF(ENVPAR obj_name); if (str == NULL) { /* exception -- fatal JNI error */ free(lValue); h5JNIFatalError(env, "H5Lget_val: return string not created"); return -1; } ENVPTR->SetObjectArrayElement(ENVPAR link_value, 0, str); str = ENVPTR->NewStringUTF(ENVPAR file_name); if (str == NULL) { /* exception -- fatal JNI error */ free(lValue); h5JNIFatalError(env, "H5Lget_val: return string not created"); return -1; } ENVPTR->SetObjectArrayElement(ENVPAR link_value, 1, str); } else { str = ENVPTR->NewStringUTF(ENVPAR lValue); if (str == NULL) { /* exception -- fatal JNI error */ free(lValue); h5JNIFatalError(env, "H5Lget_val: return string not created"); return -1; } ENVPTR->SetObjectArrayElement(ENVPAR link_value, 0, str); } free(lValue); return infobuf.type; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lget_val_by_idx * Signature: (ILjava/lang/String;IIJ[Ljava/lang/String;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lget_1val_1by_1idx (JNIEnv *env, jclass clss, jint loc_id, jstring name, jint index_field, jint order, jlong link_n, jobjectArray link_value, jint access_id) { herr_t status; size_t buf_size; H5L_info_t infobuf; char *lName; void *lValue; const char *file_name; const char *obj_name; jboolean isCopy; jstring str; if (name == NULL) { h5nullArgument(env, "H5Lget_val_by_idx: name is NULL"); return -1; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Lget_val_by_idx: name not pinned"); return -1; } /* get the length of the link valuee */ status = H5Lget_info_by_idx((hid_t)loc_id, (const char*)lName, (H5_index_t)index_field, (H5_iter_order_t)order, (hsize_t)link_n, (H5L_info_t*)&infobuf, (hid_t)access_id); if(status < 0) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); h5libraryError(env); return -1; } buf_size = infobuf.u.val_size; if(buf_size < 0) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); h5libraryError(env); return -1; } lValue = (void*)malloc(buf_size); if (lValue == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); h5outOfMemory(env, "H5Lget_val_by_idx: malloc failed "); return -1; } status = H5Lget_val_by_idx((hid_t)loc_id, (const char*)lName, (H5_index_t)index_field, (H5_iter_order_t)order, (hsize_t)link_n, (void*)lValue, (size_t)buf_size, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { free(lValue); h5libraryError(env); return -1; } /* may throw OutOfMemoryError */ if(infobuf.type == H5L_TYPE_EXTERNAL) { status = H5Lunpack_elink_val((char*)lValue, (size_t)infobuf.u.val_size, (unsigned*)NULL, (const char**)&file_name, (const char**)&obj_name); if (status < 0) { free(lValue); h5libraryError(env); return -1; } str = ENVPTR->NewStringUTF(ENVPAR obj_name); if (str == NULL) { /* exception -- fatal JNI error */ free(lValue); h5JNIFatalError(env, "H5Lget_val_by_idx: return string not created"); return -1; } ENVPTR->SetObjectArrayElement(ENVPAR link_value, 0, str); str = ENVPTR->NewStringUTF(ENVPAR file_name); if (str == NULL) { /* exception -- fatal JNI error */ free(lValue); h5JNIFatalError(env, "H5Lget_val_by_idx: return string not created"); return -1; } ENVPTR->SetObjectArrayElement(ENVPAR link_value, 1, str); } else { str = ENVPTR->NewStringUTF(ENVPAR (char *)lValue); if (str == NULL) { /* exception -- fatal JNI error */ free(lValue); h5JNIFatalError(env, "H5Lget_val_by_idx: return string not created"); return -1; } ENVPTR->SetObjectArrayElement(ENVPAR link_value, 0, str); } free(lValue); return infobuf.type; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lmove * Signature: (ILjava/lang/String;ILjava/lang/String;II)V */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lmove (JNIEnv *env, jclass clss, jint cur_loc_id, jstring cur_name, jint dst_loc_id, jstring dst_name, jint create_id, jint access_id) { char *lCurName; char *lDstName; jboolean isCopy; herr_t status = -1; if (cur_name == NULL) { h5nullArgument(env, "H5Lcreate_hard: cur_name is NULL"); return; } lCurName = (char*)ENVPTR->GetStringUTFChars(ENVPAR cur_name, &isCopy); if (lCurName == NULL) { h5JNIFatalError(env, "H5Lcreate_hard: cur_name not pinned"); return; } if (dst_name == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5nullArgument(env, "H5Lcreate_hard: dst_name is NULL"); return; } lDstName = (char*)ENVPTR->GetStringUTFChars(ENVPAR dst_name, &isCopy); if (lDstName == NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); h5JNIFatalError( env, "H5Lcreate_hard: dst_name not pinned"); return; } status = H5Lmove((hid_t)cur_loc_id, (const char*)lCurName, (hid_t)dst_loc_id, (const char*)lDstName, (hid_t)create_id, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR cur_name, lCurName); ENVPTR->ReleaseStringUTFChars(ENVPAR dst_name, lDstName); if (status < 0) { h5libraryError(env); return; } return; } herr_t H5L_iterate_cb(hid_t g_id, const char *name, const H5L_info_t *info, void *op_data) { JNIEnv *cbenv; jint status; jclass cls; jmethodID mid; jstring str; jmethodID constructor; jvalue args[5]; jobject cb_info_t = NULL; if(JVMPTR->AttachCurrentThread(JVMPAR2 (void**)&cbenv, NULL) != 0) { /* printf("JNI H5L_iterate_cb error: AttachCurrentThread failed\n"); */ JVMPTR->DetachCurrentThread(JVMPAR); return -1; } cls = CBENVPTR->GetObjectClass(CBENVPAR visit_callback); if (cls == 0) { /* printf("JNI H5L_iterate_cb error: GetObjectClass failed\n"); */ JVMPTR->DetachCurrentThread(JVMPAR); return -1; } mid = CBENVPTR->GetMethodID(CBENVPAR cls, "callback", "(ILjava/lang/String;Lncsa/hdf/hdf5lib/structs/H5L_info_t;Lncsa/hdf/hdf5lib/callbacks/H5L_iterate_t;)I"); if (mid == 0) { /* printf("JNI H5L_iterate_cb error: GetMethodID failed\n"); */ JVMPTR->DetachCurrentThread(JVMPAR); return -1; } str = CBENVPTR->NewStringUTF(CBENVPAR name); // get a reference to your class if you don't have it already cls = CBENVPTR->FindClass(CBENVPAR "ncsa/hdf/hdf5lib/structs/H5L_info_t"); if (cls == 0) { /* printf("JNI H5L_iterate_cb error: GetObjectClass info failed\n"); */ JVMPTR->DetachCurrentThread(JVMPAR); return -1; } // get a reference to the constructor; the name is constructor = CBENVPTR->GetMethodID(CBENVPAR cls, "", "(IZJIJ)V"); if (constructor == 0) { /* printf("JNI H5L_iterate_cb error: GetMethodID constructor failed\n"); */ JVMPTR->DetachCurrentThread(JVMPAR); return -1; } args[0].i = info->type; args[1].z = info->corder_valid; args[2].j = info->corder; args[3].i = info->cset; if(info->type==0) args[4].j = info->u.address; else args[4].j = info->u.val_size; cb_info_t = CBENVPTR->NewObjectA(CBENVPAR cls, constructor, args); status = CBENVPTR->CallIntMethod(CBENVPAR visit_callback, mid, g_id, str, cb_info_t, op_data); JVMPTR->DetachCurrentThread(JVMPAR); return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lvisit * Signature: (IIILjava/lang/Object;Ljava/lang/Object;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lvisit (JNIEnv *env, jclass clss, jint grp_id, jint idx_type, jint order, jobject callback_op, jobject op_data) { herr_t status = -1; ENVPTR->GetJavaVM(ENVPAR &jvm); visit_callback = callback_op; if (op_data == NULL) { h5nullArgument(env, "H5Lvisit: op_data is NULL"); return -1; } if (callback_op == NULL) { h5nullArgument(env, "H5Lvisit: callback_op is NULL"); return -1; } status = H5Lvisit((hid_t)grp_id, (H5_index_t)idx_type, (H5_iter_order_t)order, (H5L_iterate_t)H5L_iterate_cb, (void*)op_data); if (status < 0) { h5libraryError(env); return status; } return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Lvisit_by_name * Signature: (ILjava/lang/String;IILjava/lang/Object;Ljava/lang/Object;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Lvisit_1by_1name (JNIEnv *env, jclass clss, jint grp_id, jstring name, jint idx_type, jint order, jobject callback_op, jobject op_data, jint access_id) { jboolean isCopy; char *lName; herr_t status = -1; ENVPTR->GetJavaVM(ENVPAR &jvm); visit_callback = callback_op; if (name == NULL) { h5nullArgument(env, "H5Lvisit_by_name: name is NULL"); return -1; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Lvisit_by_name: name not pinned"); return -1; } if (op_data == NULL) { h5nullArgument(env, "H5Lvisit_by_name: op_data is NULL"); return -1; } if (callback_op == NULL) { h5nullArgument(env, "H5Lvisit_by_name: callback_op is NULL"); return -1; } status = H5Lvisit_by_name((hid_t)grp_id, (const char*)lName, (H5_index_t)idx_type, (H5_iter_order_t)order, (H5L_iterate_t)H5L_iterate_cb, (void*)op_data, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { h5libraryError(env); return status; } return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Literate * Signature: (IIIJLjava/lang/Object;Ljava/lang/Object;)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Literate (JNIEnv *env, jclass clss, jint grp_id, jint idx_type, jint order, jlong idx, jobject callback_op, jobject op_data) { hsize_t start_idx = (hsize_t)idx; herr_t status = -1; ENVPTR->GetJavaVM(ENVPAR &jvm); visit_callback = callback_op; if (op_data == NULL) { h5nullArgument(env, "H5Literate: op_data is NULL"); return -1; } if (callback_op == NULL) { h5nullArgument(env, "H5Literate: callback_op is NULL"); return -1; } status = H5Literate((hid_t)grp_id, (H5_index_t)idx_type, (H5_iter_order_t)order, (hsize_t*)&start_idx, (H5L_iterate_t)H5L_iterate_cb, (void*)op_data); if (status < 0) { h5libraryError(env); return status; } return status; } /* * Class: ncsa_hdf_hdf5lib_H5 * Method: H5Literate_by_name * Signature: (ILjava/lang/String;IIJLjava/lang/Object;Ljava/lang/Object;I)I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdf5lib_H5_H5Literate_1by_1name (JNIEnv *env, jclass clss, jint grp_id, jstring name, jint idx_type, jint order, jlong idx, jobject callback_op, jobject op_data, jint access_id) { jboolean isCopy; char *lName; hsize_t start_idx = (hsize_t)idx; herr_t status = -1; ENVPTR->GetJavaVM(ENVPAR &jvm); visit_callback = callback_op; if (name == NULL) { h5nullArgument(env, "H5Literate_by_name: name is NULL"); return -1; } lName = (char*)ENVPTR->GetStringUTFChars(ENVPAR name, &isCopy); if (lName == NULL) { h5JNIFatalError(env, "H5Literate_by_name: name not pinned"); return -1; } if (op_data == NULL) { h5nullArgument(env, "H5Literate_by_name: op_data is NULL"); return -1; } if (callback_op == NULL) { h5nullArgument(env, "H5Literate_by_name: callback_op is NULL"); return -1; } status = H5Literate_by_name((hid_t)grp_id, (const char*)lName, (H5_index_t)idx_type, (H5_iter_order_t)order, (hsize_t*)&start_idx, (H5L_iterate_t)H5L_iterate_cb, (void*)op_data, (hid_t)access_id); ENVPTR->ReleaseStringUTFChars(ENVPAR name, lName); if (status < 0) { h5libraryError(env); return status; } return status; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdf5lib/h5jni.h0000644002344600011330000000362712326542262015556 0ustar byrnhdf/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF Java Products. The full HDF Java copyright * * notice, including terms governing use, modification, and redistribution, * * is contained in the file, COPYING. COPYING can be found at the root of * * the source code distribution tree. You can also access it online at * * http://www.hdfgroup.org/products/licenses.html. If you do not have * * access to the file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "H5version.h" #include #ifndef _Included_h5jni #define _Included_h5jni #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif #ifdef __cplusplus extern "C" { #endif extern jboolean h5JNIFatalError(JNIEnv *, char *); extern jboolean h5nullArgument(JNIEnv *, char *); extern jboolean h5badArgument (JNIEnv *, char *); extern jboolean h5outOfMemory (JNIEnv *, char *); extern jboolean h5libraryError(JNIEnv *env ); extern jboolean h5raiseException(JNIEnv *, char *, char *); extern jboolean h5unimplemented( JNIEnv *env, char *functName); /* implemented at H5.c */ extern jint get_enum_value(JNIEnv *env, jobject enum_obj); extern jobject get_enum_object(JNIEnv *env, const char* enum_class_name, jint enum_val, const char* enum_field_desc); /* implemented at H5G.c */ extern jobject create_H5G_info_t(JNIEnv *env, H5G_info_t group_info); #ifdef __cplusplus } #endif #endif hdf-java-2.11.0/native/hdflib/0000755002344600011330000000000012441355003014264 5ustar byrnhdfhdf-java-2.11.0/native/hdflib/hdfexceptionImp.c0000644002344600011330000001026712326542262017573 0ustar byrnhdf/**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This is a utility program used by the HDF Java-C wrapper layer to * generate exceptions. This may be called from any part of the * Java-C interface. * */ #ifdef __cplusplus extern "C" { #endif #include "jni.h" #include #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif jboolean h4buildException( JNIEnv *env, jint HDFerr) { jmethodID jm; jclass jc; int args[2]; jobject ex; int rval; jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFLibraryException"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(I)V"); if (jm == NULL) { return JNI_FALSE; } args[0] = HDFerr; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable)ex ); return JNI_TRUE; } jboolean h4NotImplemented( JNIEnv *env, char *functName) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFNotImplementedException"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR functName); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable)ex ); return JNI_TRUE; } jboolean h4outOfMemory( JNIEnv *env, char *functName) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR "java/lang/OutOfMemoryError"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR functName); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable)ex ); return JNI_TRUE; } /* * A fatal error in a JNI call */ jboolean h4JNIFatalError( JNIEnv *env, char *functName) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR "java/lang/InternalError"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR functName); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable)ex ); return JNI_TRUE; } jboolean h4raiseException( JNIEnv *env, char *message) { jmethodID jm; jclass jc; char * args[2]; jobject ex; jstring str; int rval; jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFLibraryException"); if (jc == NULL) { return JNI_FALSE; } jm = ENVPTR->GetMethodID(ENVPAR jc, "", "(Ljava/lang/String;)V"); if (jm == NULL) { return JNI_FALSE; } str = ENVPTR->NewStringUTF(ENVPAR message); args[0] = (char *)str; args[1] = 0; ex = ENVPTR->NewObjectA (ENVPAR jc, jm, (jvalue *)args ); rval = ENVPTR->Throw(ENVPAR (jthrowable)ex ); return JNI_TRUE; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfr24Imp.c0000644002344600011330000001502712326542262016203 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean getOldCompInfo( JNIEnv *env, jobject ciobj, comp_info *cinf); JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_1DF24getdims ( JNIEnv *env, jclass clss, jstring filename, jintArray argv) /* OUT: width, height, il */ { intn rval; char *hdf_file; jint *theArgs; jboolean bb; theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); hdf_file =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); /* get image dimension information */ rval = DF24getdims(hdf_file, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1]), (intn *)&(theArgs[2])); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,hdf_file); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_1DF24getimage ( JNIEnv *env, jclass clss, jstring filename, jbyteArray image, /* OUT: image data width X height X 3 */ jint width, jint height) { char *hdf_file; intn rval; jbyte *dat; jboolean bb; hdf_file =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); dat = (jbyte *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR image,&bb); rval = DF24getimage((char *)hdf_file, (VOIDP) dat, (int32) width, (int32) height); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,hdf_file); if (rval == FAIL) { ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR image,dat,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR image,dat,0); return JNI_TRUE; } } JNIEXPORT jshort JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DF24lastref ( JNIEnv *env, jobject obj) { return ((short)DF24lastref()); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_1DF24readref ( JNIEnv *env, jclass clss, jstring filename, jshort ref) { int retVal; char *filePtr; filePtr =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); retVal = DF24readref(filePtr, (short)ref); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,filePtr); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DF24restart ( JNIEnv *env, jobject obj) { int retVal; retVal = DF24restart(); if (retVal) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_1DF24nimages ( JNIEnv *env, jclass clss, jstring hdfFile) { char *hdf_file; hdf_file =(char *) ENVPTR->GetStringUTFChars(ENVPAR hdfFile,0); return(DF24nimages(hdf_file)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DF24reqil ( JNIEnv *env, jclass clss, jint interlace) { return(DF24reqil((intn)interlace)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_1DF24addimage ( JNIEnv *env, jclass clss, jstring filename, jbyteArray image, /* IN: image data width X height X 3 */ jint width, jint height) { intn rval; char *f; jbyte *dat; jboolean bb; f =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); dat = ENVPTR->GetByteArrayElements(ENVPAR image,&bb); rval = DF24addimage((char *)f, (VOIDP) dat, (int32) width, (int32) height); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); ENVPTR->ReleaseByteArrayElements(ENVPAR image,dat,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_1DF24putimage ( JNIEnv *env, jclass clss, jstring filename, jbyteArray image, /* IN: image data width X height X 3 */ jint width, jint height) { intn rval; char *f; jbyte *dat; jboolean bb; f =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); dat = ENVPTR->GetByteArrayElements(ENVPAR image,&bb); rval = DF24putimage((char *)f, (VOIDP) dat, (int32) width, (int32) height); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); ENVPTR->ReleaseByteArrayElements(ENVPAR image,dat,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DF24setcompress ( JNIEnv *env, jclass clss, jint type, jobject cinfo) { intn rval; comp_info cinf; jboolean bval; bval = getOldCompInfo(env, cinfo,&cinf); /* check fo rsuccess... */ /* fill in cinf depending on the value of 'type' */ rval = DF24setcompress((int32) type, (comp_info *)&cinf); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DF24setdims ( JNIEnv *env, jclass clss, jint width, jint height) { intn rval; rval = DF24setdims((int32) width, (int32) height); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DF24setil ( JNIEnv *env, jclass clss, jint il) { intn rval; rval = DF24setil((intn) il); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfdfsdImp.c0000644002344600011330000010334512326542262016515 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "hfile.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4outOfMemory(JNIEnv *env, char *functName); JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDadddata ( JNIEnv *env, jclass clss, jstring filename, jint rank, jintArray dimsizes, /* IN: int[] */ jbyteArray data) /* IN: byte[] */ { intn rval; jchar * name; jbyte * dat; jint * dims; jboolean bb; name =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); dims = (jint *)ENVPTR->GetIntArrayElements(ENVPAR dimsizes,&bb); dat = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR data,&bb); rval = DFSDadddata((char *)name, (intn) rank, (int32 *) dims, (VOIDP) dat); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,(char *)name); ENVPTR->ReleaseByteArrayElements(ENVPAR data,dat,JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes,dims,JNI_ABORT); /* no write back */ if (rval==FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDclear ( JNIEnv *env, jobject obj) { if (DFSDclear( ) == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDendslab ( JNIEnv *env, jobject obj) { if (DFSDendslab( ) == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDendslice ( JNIEnv *env, jobject obj) { if (DFSDendslice( ) == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetcal ( JNIEnv *env, jclass clss, jdoubleArray calInfo, /* OUT: double cal, cal_err, offset, offset_err */ jintArray data_type) /* OUT: */ { int32 rval; jdouble *theCal; jint *theNT; jboolean bb; theCal = (jdouble *)ENVPTR->GetDoubleArrayElements(ENVPAR calInfo, &bb); theNT = (jint *)ENVPTR->GetIntArrayElements(ENVPAR data_type, &bb); rval = DFSDgetcal((float64 *)&(theCal[0]), (float64 *)&(theCal[1]), (float64 *)&(theCal[2]), (float64 *)&(theCal[3]), (int32 *)&(theNT[0])); if (rval == FAIL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR calInfo, theCal, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR data_type, theNT, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseDoubleArrayElements(ENVPAR calInfo, theCal, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR data_type, theNT, 0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetdata ( JNIEnv *env, jclass clss, jstring filename, jint rank, jintArray dimsizes, /* IN: int[] */ jbyteArray data) /* OUT: byte[] */ { intn rval; jchar * name; jbyte * dat; jint * dims; jboolean bb; name =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename, 0); dims = (jint *)ENVPTR->GetIntArrayElements(ENVPAR dimsizes, &bb); /* assume that data is big enough */ dat = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR data, &bb); rval = DFSDgetdata((char *)name, (intn) rank, (int32 *) dims, (VOIDP) dat); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,(char *)name); ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes, dims, JNI_ABORT); /* no write back */ if (rval==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR data, dat, JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR data, dat, 0); /* write back */ return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetdatalen ( JNIEnv *env, jclass clss, jintArray info) /* label_len, unit_len, format_len coords_len */ { intn rval; jint *theInfo; jboolean bb; theInfo = (jint *)ENVPTR->GetIntArrayElements(ENVPAR info, &bb); rval = DFSDgetdatalen((intn *)&(theInfo[0]), (intn *)&(theInfo[1]), (intn *)&(theInfo[2]), (intn *)&(theInfo[3])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR info, theInfo, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR info, theInfo, 0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetdatastrs ( JNIEnv *env, jclass clss, jobjectArray datastrs) /* OUT: label, unit, format, coordsys */ { intn rval; int ll; int ul; int fl; int cl; char * l; char * u; char * f; char * c; jclass Sjc; jstring rstring; jobject o; jboolean bb; rval = DFSDgetdatalen((intn *)&ll, (intn *)&(ul), (intn *)&fl, (intn *)&cl); if (rval == FAIL) { return JNI_FALSE; } l = (char *)HDmalloc(ll+1); if (l == NULL) { h4outOfMemory(env, "DFSDgetdatastrs"); return JNI_FALSE; } u = (char *)HDmalloc(ul+1); if (u == NULL) { HDfree(l); h4outOfMemory(env, "DFSDgetdatastrs"); return JNI_FALSE; } f = (char *)HDmalloc(fl+1); if (f == NULL) { HDfree(u); HDfree(l); h4outOfMemory(env, "DFSDgetdatastrs"); return JNI_FALSE; } c = (char *)HDmalloc(cl+1); if (c == NULL) { HDfree(u); HDfree(f); HDfree(l); h4outOfMemory(env, "DFSDgetdatastrs"); return JNI_FALSE; } rval = DFSDgetdatastrs((char *)l, (char *)u, (char *)f, (char *)c); l[ll] = '\0'; u[ul] = '\0'; f[fl] = '\0'; c[cl] = '\0'; if (rval == FAIL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; } else { Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; /* exception is raised */ } rstring = ENVPTR->NewStringUTF(ENVPAR l); o = ENVPTR->GetObjectArrayElement(ENVPAR datastrs,0); if (o == NULL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR datastrs,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); rstring = ENVPTR->NewStringUTF(ENVPAR u); o = ENVPTR->GetObjectArrayElement(ENVPAR datastrs,1); if (o == NULL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR datastrs,1,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); rstring = ENVPTR->NewStringUTF(ENVPAR f); o = ENVPTR->GetObjectArrayElement(ENVPAR datastrs,2); if (o == NULL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR datastrs,2,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); rstring = ENVPTR->NewStringUTF(ENVPAR c); o = ENVPTR->GetObjectArrayElement(ENVPAR datastrs,3); if (o == NULL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_FALSE; } ENVPTR->DeleteLocalRef(ENVPAR o); ENVPTR->SetObjectArrayElement(ENVPAR datastrs,3,(jobject)rstring); if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); if (c != NULL) HDfree((char *)c); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetdimlen ( JNIEnv *env, jclass clss, jint dim, jintArray dimInfo) /* OUT: int label_len, unit_len, format_len */ { intn rval; jint *theArgs; jboolean bb; theArgs = (jint *)ENVPTR->GetIntArrayElements(ENVPAR dimInfo, &bb); rval = DFSDgetdimlen((intn) dim, (intn *)&(theArgs[0]), (intn *)&(theArgs[1]), (intn *)&(theArgs[2])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR dimInfo, theArgs, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR dimInfo, theArgs, 0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetdims ( JNIEnv *env, jclass clss, jstring filename, jintArray rank, /* OUT: int */ jintArray dimsizes, /* OUT: int[] should be at least 'maxrank' long */ jint maxrank) { intn rval; jchar * name; jint * dims; jint * rnk; jboolean bb; name =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename, 0); dims = (jint *)ENVPTR->GetIntArrayElements(ENVPAR dimsizes, &bb); rnk = (jint *)ENVPTR->GetIntArrayElements(ENVPAR rank, &bb); /* should check lenght of dims.... */ rval = DFSDgetdims((char *)name, (intn *)&(rnk[0]), (int32 *)dims, (intn) maxrank); ENVPTR->ReleaseStringUTFChars(ENVPAR filename, (char *)name); if (rval==FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes, dims, JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR rank, rnk, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes, dims, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR rank, rnk, 0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetdimscale ( JNIEnv *env, jclass clss, jint dim, jint size, jbyteArray scale) /* OUT: byte[] assumed to be long enough */ { intn rval; jbyte *s; jboolean bb; s = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR scale, &bb); rval = DFSDgetdimscale((intn) dim, (int32) size, (VOIDP) s); if (rval==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR scale, s, JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR scale, s, 0); /* write back */ return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetdimstrs ( JNIEnv *env, jclass clss, jint dim, jobjectArray dimstrs) /* OUT: jstring label, jstring unit, jstring format */ { intn rval; int ll; int ul; int fl; char *l; char *u; char *f; jclass Sjc; jstring rstring; jobject o; jboolean bb; rval = DFSDgetdimlen((intn) dim, (intn *)&ll, (intn *)&ul, (intn *)&fl); if (rval == FAIL) { return JNI_FALSE; } l = (char *)HDmalloc(ll+1); if (l == NULL) { h4outOfMemory(env, "DFSDgetdimstrs"); return JNI_FALSE; } u = (char *)HDmalloc(ul+1); if (u == NULL) { HDfree(l); h4outOfMemory(env, "DFSDgetdimstrs"); return JNI_FALSE; } f = (char *)HDmalloc(fl+1); if (f == NULL) { HDfree(u); HDfree(l); h4outOfMemory(env, "DFSDgetdimstrs"); return JNI_FALSE; } rval = DFSDgetdimstrs((intn) dim, (char *)l, (char *)u, (char *)f); l[ll] = '\0'; u[ul] = '\0'; f[fl] = '\0'; if (rval == FAIL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); return JNI_FALSE; } else { Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); return JNI_FALSE; /* exception is raised */ } rstring = ENVPTR->NewStringUTF(ENVPAR l); o = ENVPTR->GetObjectArrayElement(ENVPAR dimstrs,0); if (o == NULL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR dimstrs,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); rstring = ENVPTR->NewStringUTF(ENVPAR u); o = ENVPTR->GetObjectArrayElement(ENVPAR dimstrs,1); if (o == NULL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR dimstrs,1,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); rstring = ENVPTR->NewStringUTF(ENVPAR f); o = ENVPTR->GetObjectArrayElement(ENVPAR dimstrs,2); if (o == NULL) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR dimstrs,2,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); if (l != NULL) HDfree((char *)l); if (u != NULL) HDfree((char *)u); if (f != NULL) HDfree((char *)f); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetfillvalue ( JNIEnv *env, jclass clss, jbyteArray fill_value) /* OUT: some kind of number? */ { intn rval; jbyte *dat; jboolean bb; dat = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR fill_value, &bb); if (dat == NULL) { /* exception */ return(JNI_FALSE); } rval = DFSDgetfillvalue((int32 *)dat); if (rval==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR fill_value, dat, JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR fill_value, dat, 0); /* write back */ return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetNT ( JNIEnv *env, jclass clss, jintArray data_type) /* OUT: Integer */ { intn rval; jint *dt; jboolean bb; dt = ENVPTR->GetIntArrayElements(ENVPAR data_type, &bb); if (dt == NULL) { /* exception */ return(JNI_FALSE); } rval = DFSDgetNT((int32 *)&(dt[0])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR data_type, dt, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR data_type, dt, 0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetrange ( JNIEnv *env, jclass clss, jbyteArray max, /* OUT: byte[]? */ jbyteArray min) /* OUT: byte[] ? */ { int32 retVal; jbyte *minp, *maxp; jboolean bb; maxp = ENVPTR->GetByteArrayElements(ENVPAR max, &bb); minp = ENVPTR->GetByteArrayElements(ENVPAR min, &bb); retVal = DFSDgetrange(maxp, minp); if (retVal==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR max, maxp, JNI_ABORT); ENVPTR->ReleaseByteArrayElements(ENVPAR min, minp, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR max, maxp, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR min, minp, 0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDgetslice ( JNIEnv *env, jclass clss, jstring filename, jintArray winst, /* IN: int[] */ jintArray windims, /* IN: int[] */ jbyteArray data, /* OUT: byte[] */ jintArray dims) /* OUT: int [] */ { intn rval; jchar * name; jbyte * dat; jint * wi; jint * wd; jint * d; jboolean bb; name =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename, 0); wi = (jint *)ENVPTR->GetIntArrayElements(ENVPAR winst, &bb); wd = (jint *)ENVPTR->GetIntArrayElements(ENVPAR windims, &bb); d = (jint *)ENVPTR->GetIntArrayElements(ENVPAR dims, &bb); dat = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR data, &bb); rval = DFSDgetslice((char *)name, (int32 *) wi, (int32 *) wd, (VOIDP) dat, (int32 *) d); ENVPTR->ReleaseStringUTFChars(ENVPAR filename, (char *)name); ENVPTR->ReleaseIntArrayElements(ENVPAR winst, wi, JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR windims, wd, JNI_ABORT); /* no write back */ if (rval==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR data, dat, JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR dims, d, JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR data, dat, 0); /* write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR dims, d, 0); /* write back */ return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDlastref ( JNIEnv *env, jobject obj) { return DFSDlastref( ); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDndatasets ( JNIEnv *env, jclass clss, jstring filename) { intn rval; jchar * name; name =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFSDndatasets((char *)name); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,(char *)name); return rval; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDpre32sdg ( JNIEnv *env, jclass clss, jstring filename, jshort ref, jintArray ispre32) /* OUT: int[] */ { intn rval; jchar * name; jint *d; jboolean bb; d = (jint *)ENVPTR->GetIntArrayElements(ENVPAR ispre32, &bb); name =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename, 0); rval = DFSDpre32sdg((char *)name, (uint16) ref, (intn *)&(d[0])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR ispre32, d, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR ispre32, d, 0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDputdata ( JNIEnv *env, jclass clss, jstring filename, jint rank, jintArray dimsizes, /* IN: int[] */ jbyteArray data) /* IN: byte[] */ { intn rval; jchar * name; jbyte * dat; jint * dims; jboolean bb; name =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename, 0); dims = (jint *)ENVPTR->GetIntArrayElements(ENVPAR dimsizes, &bb); dat = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR data, &bb); rval = DFSDputdata((char *)name, (intn) rank, (int32 *) dims, (VOIDP) dat); ENVPTR->ReleaseStringUTFChars(ENVPAR filename, (char *)name); ENVPTR->ReleaseByteArrayElements(ENVPAR data, dat, JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes, dims, JNI_ABORT); /* no write back */ if (rval==FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDputslice ( JNIEnv *env, jclass clss, jintArray windims, /* IN: int[] */ jbyteArray source, /* IN: byte[] */ jintArray dims) /* IN: int[] */ { intn rval; jbyte * dat; jint * wd; jint * d; jboolean bb; d = (jint *)ENVPTR->GetIntArrayElements(ENVPAR dims,&bb); wd = (jint *)ENVPTR->GetIntArrayElements(ENVPAR windims,&bb); dat = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR source,&bb); rval = DFSDputslice((int32 *)windims, (VOIDP)source, (int32 *)dims); ENVPTR->ReleaseByteArrayElements(ENVPAR source,dat,JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR dims,d,JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR windims,wd,JNI_ABORT); /* no write back */ if (rval==FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDreadref ( JNIEnv *env, jclass clss, jstring filename, jshort ref) { intn rval; jchar * name; name =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFSDreadref((char *)name, (uint16) ref); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,(char *)name); if (rval==FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDreadslab ( JNIEnv *env, jclass clss, jstring filename, jintArray start, /* IN: int[] */ jintArray slab_size, /* IN: int[] */ jintArray stride, /* IN: int[] */ jbyteArray buffer, /* OUT: byte[] */ jintArray buffer_size) /* OUT: int[] */ { intn rval; jbyte * dat; jint * strt; jint * siz; jint * strd; jint * bsize; jchar * name; jboolean bb; name =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); strt = (jint *)ENVPTR->GetIntArrayElements(ENVPAR start,&bb); siz = (jint *)ENVPTR->GetIntArrayElements(ENVPAR slab_size,&bb); strd = (jint *)ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); bsize = (jint *)ENVPTR->GetIntArrayElements(ENVPAR buffer_size,&bb); dat = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR buffer,&bb); rval = DFSDreadslab((char *)name, (int32 *)strt, (int32 *)siz, (int32 *)strd, (VOIDP) dat, (int32 *) bsize); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,(char *)name); ENVPTR->ReleaseIntArrayElements(ENVPAR start,strt,JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR slab_size,siz,JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR stride,strd,JNI_ABORT); /* no write back */ if (rval==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR buffer,dat,JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR buffer_size,bsize,JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR buffer,dat,0); /* write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR buffer_size,bsize,0); /* write back */ return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDrestart ( JNIEnv *env, jobject obj) { if (DFSDrestart( ) == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDsetcal ( JNIEnv *env, jclass clss, jdouble cal, jdouble cal_err, jdouble offset, jdouble offset_err, jint data_type) { if (DFSDsetcal((float64) cal, (float64) cal_err, (float64) offset, (float64) offset_err, (int32) data_type) == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDsetdatastrs ( JNIEnv *env, jclass clss, jstring label, jstring unit, jstring format, jstring coordsys) { intn rval; jchar * l; jchar * u; jchar * f; jchar * c; l =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR label,0); u =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR unit,0); f =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR format,0); c =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR coordsys,0); rval = DFSDsetdatastrs((char *)l, (char *)u, (char *)f, (char *)c); ENVPTR->ReleaseStringUTFChars(ENVPAR label,(char *)l); ENVPTR->ReleaseStringUTFChars(ENVPAR unit,(char *)u); ENVPTR->ReleaseStringUTFChars(ENVPAR format,(char *)f); ENVPTR->ReleaseStringUTFChars(ENVPAR coordsys,(char *)c); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDsetdims ( JNIEnv *env, jclass clss, jint rank, jintArray dimsizes) /* IN: int[] */ { intn rval; jint *d; jboolean bb; d = (jint *)ENVPTR->GetIntArrayElements(ENVPAR dimsizes,&bb); rval = DFSDsetdims ((intn) rank, (int32 *) d); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes,d,JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes,d,0); /* write back */ return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDsetdimscale ( JNIEnv *env, jclass clss, jint dim, jint dimsize, jintArray scale) /* IN: byte[] */ { intn rval; jint *d; jboolean bb; d = (jint *)ENVPTR->GetIntArrayElements(ENVPAR scale,&bb); rval = DFSDsetdimscale ((intn) dim, (int32) dimsize, (VOIDP) d); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR scale,d,JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR scale,d,0); /* write back */ return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDsetdimstrs ( JNIEnv *env, jclass clss, jint dim, jstring label, jstring unit, jstring format) { intn rval; jchar * l; jchar * u; jchar * f; l =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR label,0); u =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR unit,0); f =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR format,0); rval = DFSDsetdimstrs((intn) dim, (char *)l, (char *)u, (char *)f); ENVPTR->ReleaseStringUTFChars(ENVPAR label,(char *)l); ENVPTR->ReleaseStringUTFChars(ENVPAR unit,(char *)u); ENVPTR->ReleaseStringUTFChars(ENVPAR format,(char *)f); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDsetfillvalue ( JNIEnv *env, jclass clss, jbyteArray fill_value) /* IN: ?? */ { intn rval; jbyte * fv; jboolean bb; fv = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR fill_value,&bb); rval = DFSDsetfillvalue((VOIDP) fv); ENVPTR->ReleaseByteArrayElements(ENVPAR fill_value,fv,JNI_ABORT); /* no write back */ if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDsetlengths ( JNIEnv *env, jclass clss, jint label_len, jint unit_len, jint format_len, jint coords_len) { if (DFSDsetlengths((intn) label_len, (intn) unit_len, (intn) format_len, (intn) coords_len) == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDsetNT ( JNIEnv *env, jclass clss, jint data_type) { if (DFSDsetNT((int32) data_type) == FAIL ) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDsetrange ( JNIEnv *env, jclass clss, jbyteArray max, /* IN: byte[] */ jbyteArray min)/* IN: byte[] */ { intn rval; jbyte * mx; jbyte * mn; jboolean bb; mx = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR max,&bb); mn = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR min,&bb); rval = DFSDsetrange((VOIDP) mx, (VOIDP) mn); ENVPTR->ReleaseByteArrayElements(ENVPAR max,mx,JNI_ABORT); /* no write back */ ENVPTR->ReleaseByteArrayElements(ENVPAR min,mn,JNI_ABORT); /* no write back */ if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDstartslab ( JNIEnv *env, jclass clss, jstring filename) { intn rval; jchar * f; f =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFSDstartslab((char *)f); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,(char *)f); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDstartslice ( JNIEnv *env, jclass clss, jstring filename) { intn rval; jchar * f; f =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFSDstartslice((char *)f); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,(char *)f); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDwriteref ( JNIEnv *env, jclass clss, jstring filename, jshort ref) { intn rval; jchar * f; f =(jchar *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFSDwriteref((char *)f,(uint16)ref); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,(char *)f); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFSDwriteslab ( JNIEnv *env, jclass clss, jintArray start, /* IN: int[] */ jintArray stride, /* IN: int[] */ jintArray count, /* IN: int[] */ jbyteArray data) /* IN: byte[] */ { intn rval; jint *strt; jint *strd; jint *cnt; jbyte *d; jboolean bb; strt = (jint *)ENVPTR->GetIntArrayElements(ENVPAR start,&bb); strd = (jint *)ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); cnt = (jint *)ENVPTR->GetIntArrayElements(ENVPAR count,&bb); d = (jbyte *)ENVPTR->GetByteArrayElements(ENVPAR data,&bb); rval = DFSDwriteslab((int32 *)strt, (int32 *) strd, (int32 *) cnt, (VOIDP)d); ENVPTR->ReleaseIntArrayElements(ENVPAR start,strt,JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR stride,strd,JNI_ABORT); /* no write back */ ENVPTR->ReleaseIntArrayElements(ENVPAR count,cnt,JNI_ABORT); /* no write back */ ENVPTR->ReleaseByteArrayElements(ENVPAR data,d,JNI_ABORT); /* no write back */ if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/Makefile.in0000644002344600011330000000377412326542262016353 0ustar byrnhdf #/**************************************************************************** #* Copyright by The HDF Group. #* Copyright by the Board of Trustees of the University of Illinois. #* All rights reserved. #* #* This file is part of HDFJava. The full HDFJava copyright notice, including #* terms governing use, modification, and redistribution, is contained in #* the files COPYING and Copyright.html. COPYING can be found at the root #* of the source code distribution tree; Copyright.html can be found at the #* root level of an installed copy of the electronic HDF5 document set and #* is linked from the top-level documents page. It can also be found at #* http://hdfgroup.org/hdf-java/doc/Copyright.html. If you do not have #* access to either file, you may request a copy from help@hdfgroup.org. #****************************************************************************/ CC = @CC@ @COPT@ RM = @RM@ HDFINC = @HDF4INC@ HDFLIB = @HDF4LIB@ JAVAINC1=@JAVAINC@ JAVAINC2=@JAVAINC2@ LIBDIR=../../lib/@JAVATARG@ ZLIB=@ZLIB@ JPEGLIB=@JPEGLIB@ SZLIB=@SZLIB@ # Flags passed to the C compiler. Leave these alone. LD=@LD@ LDOPT=@LDOPT@ LLEXT=@LLEXT@ SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ COPT=@COPT@ CFLAGS = $(DEFS) -I. -I$(JAVAINC1) -I$(JAVAINC2) -I$(HDFINC) # Be sure to add -lbsd if compiling in a SYSV environment LIBS = $(HDFLIB)/libmfhdf.$(LLEXT) $(HDFLIB)/libdf.$(LLEXT) $(SZLIB) $(ZLIB) $(JPEGLIB) -lm # Macro def: object filename used OBJECTS = hdfstructsutil.o \ hdfImp.o hdfvgroupImp.o hdfvdataImp.o hdfsdsImp.o hdfanImp.o \ hdfdfanImp.o hdfdfsdImp.o hdfr24Imp.o hdfdfpalImp.o hdfr8Imp.o \ hdfgrImp.o hdfheImp.o hdfdfuImp.o \ hdfhxImp.o hdfvfImp.o hdfvhImp.o hdfvqImp.o hdfvsqImp.o \ hdfexceptionImp.o \ hdfdfcompImp.o \ hdfnativeImp.o # make depends on the files specified in the objects macro defination all: libjhdf hdflib: libjhdf libjhdf: $(OBJECTS) -mkdir -p $(LIBDIR); $(LD) $(LDOPT) -o $(LIBDIR)/libjhdf.$(JSLEXT) $(LDOPT2) $(OBJECTS) $(LIBS) clean: $(RM) -f *.o so_locations $(LIBDIR)/libjhdf.$(JSLEXT) hdf-java-2.11.0/native/hdflib/hdfvfImp.c0000644002344600011330000000516312326542262016207 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VFfieldesize ( JNIEnv *env, jclass clss, jint vdata_id, int field_index) { return (VFfieldesize((int32) vdata_id, (int32) field_index)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VFfieldisize ( JNIEnv *env, jclass clss, jint vdata_id, int field_index) { return (VFfieldisize((int32) vdata_id, (int32) field_index)); } JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VFfieldname ( JNIEnv *env, jclass clss, jint vdata_id, int field_index) { jstring rstring; char * str; str = VFfieldname((int32) vdata_id, (int32) field_index); /* check for error */ /* convert it to java string */ rstring = ENVPTR->NewStringUTF(ENVPAR str); return rstring; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VFfieldorder ( JNIEnv *env, jclass clss, jint vdata_id, int field_index) { return (VFfieldorder((int32) vdata_id, (int32) field_index)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VFfieldtype ( JNIEnv *env, jclass clss, jint vdata_id, int field_index) { return (VFfieldtype((int32) vdata_id, (int32) field_index)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VFnfields ( JNIEnv *env, jclass clss, jint key) { return (VFnfields((int32) key)); } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfhxImp.c0000644002344600011330000000442412326542262016212 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HXsetcreatedir ( JNIEnv *env, jclass clss, jstring dir) { intn rval; char *str; if (dir != NULL) { str =(char *) ENVPTR->GetStringUTFChars(ENVPAR dir,0); } else { str = NULL; } rval = HXsetcreatedir((char *)str); if (str != NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR dir,str); } if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HXsetdir ( JNIEnv *env, jclass clss, jstring dir) { intn rval; char *str; if (dir != NULL) { str =(char *) ENVPTR->GetStringUTFChars(ENVPAR dir,0); } else { str = NULL; } rval = HXsetdir(str); if (str != NULL) { ENVPTR->ReleaseStringUTFChars(ENVPAR dir,str); } if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/CMakeLists.txt0000644002344600011330000000633612330267210017033 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_JNI_HDFLIB C) set (HDFJAVA_JNI_HDF_CSRCS ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfanImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfdfanImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfdfcompImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfdfpalImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfdfsdImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfdfuImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfexceptionImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfgrImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfheImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfhxImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfnativeImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfr24Imp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfr8Imp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfsdsImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfstructsutil.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfvdataImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfvfImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfvgroupImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfvhImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfvqImp.c ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR}/hdfvsqImp.c ) INCLUDE_DIRECTORIES ( ${HDFJAVA_JNI_HDFLIB_SOURCE_DIR} ) ########### JNI libraries always must be built shared ############### add_library (${HDFJAVA_JNI_HDF_LIB_TARGET} SHARED ${HDFJAVA_JNI_HDF_CSRCS}) TARGET_C_PROPERTIES (${HDFJAVA_JNI_HDF_LIB_TARGET} " " " ") if (WIN32) TARGET_LINK_LIBRARIES (${HDFJAVA_JNI_HDF_LIB_TARGET} ${HDF4_LINK_LIBS} "ws2_32.lib") else (WIN32) TARGET_LINK_LIBRARIES (${HDFJAVA_JNI_HDF_LIB_TARGET} ${HDF4_LINK_LIBS}) endif (WIN32) SET_GLOBAL_VARIABLE (HDFJAVA_LIBRARIES_TO_EXPORT "${HDFJAVA_LIBRARIES_TO_EXPORT};${HDFJAVA_JNI_HDF_LIB_TARGET}") HDFJAVA_SET_LIB_OPTIONS (${HDFJAVA_JNI_HDF_LIB_TARGET} ${HDFJAVA_JNI_HDF_LIB_NAME} SHARED) if (WIN32) get_filename_component (HDFJAVA_JNI_HDF_DLL_NAME ${HDFJAVA_JNI_HDF_LIB_TARGET} NAME_WE) # message (STATUS "HDFJAVA_JNI_HDF_DLL_NAME: ${HDFJAVA_JNI_HDF_DLL_NAME}") if (BUILD_TESTING) add_custom_target (HDFJAVA_JNI_HDF-Test-Copy ALL COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/${HDFJAVA_JNI_HDF_DLL_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${HDFJAVA_JNI_HDF_DLL_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX} COMMENT "Copying ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_CFG_INTDIR}/${HDFJAVA_JNI_HDF_DLL_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX} to ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/" ) add_dependencies (HDFJAVA_JNI_HDF-Test-Copy ${HDFJAVA_JNI_HDF_LIB_TARGET}) endif (BUILD_TESTING) endif (WIN32) #----------------------------------------------------------------------------- # Add Target(s) to CMake Install for import into other projects #----------------------------------------------------------------------------- if (HDFJAVA_EXPORTED_TARGETS) install ( TARGETS ${HDFJAVA_JNI_HDF_LIB_TARGET} EXPORT ${HDFJAVA_EXPORTED_TARGETS} LIBRARY DESTINATION ${HJAVA_INSTALL_LIB_DIR} COMPONENT libraries ARCHIVE DESTINATION ${HJAVA_INSTALL_LIB_DIR} COMPONENT libraries RUNTIME DESTINATION ${HJAVA_INSTALL_LIB_DIR} COMPONENT libraries ) endif (HDFJAVA_EXPORTED_TARGETS) hdf-java-2.11.0/native/hdflib/hdfr8Imp.c0000644002344600011330000002036712326542262016130 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean getOldCompInfo( JNIEnv *env, jobject ciobj, comp_info *cinf); JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8getdims ( JNIEnv *env, jclass clss, jstring filename, jintArray argv, /* OUT: w, h */ jbooleanArray isp) /* OUT: isp */ { intn rval; char *hdf_file; int ispal; jint *theArgs; jboolean *theB; jboolean bb; theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); theB = ENVPTR->GetBooleanArrayElements(ENVPAR isp,&bb); hdf_file =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); /* get image dimension information */ rval = DFR8getdims(hdf_file, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1]), (intn *)&ispal); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,hdf_file); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); theB[0] = JNI_FALSE; ENVPTR->ReleaseBooleanArrayElements(ENVPAR isp,theB,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); if (ispal) { theB[0] = JNI_TRUE; } else { theB[0] = JNI_FALSE; } ENVPTR->ReleaseBooleanArrayElements(ENVPAR isp,theB,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8getimage ( JNIEnv *env, jclass clss, jstring filename, jbyteArray image, /* OUT: image data width X height X 3 */ jint width, jint height, jbyteArray pallete) /* OUT: byte[] */ { char *hdf_file; intn rval; jbyte *dat; jbyte *p; jboolean bb; hdf_file =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); dat = (jbyte *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR image,&bb); if (pallete == NULL) { rval = DFR8getimage((char *)hdf_file, (uint8 *) dat, (int32) width, (int32) height, (uint8 *)NULL); } else { p = ENVPTR->GetByteArrayElements(ENVPAR pallete,&bb); rval = DFR8getimage((char *)hdf_file, (uint8 *) dat, (int32) width, (int32) height, (uint8 *)p); } ENVPTR->ReleaseStringUTFChars(ENVPAR filename,hdf_file); if (rval == FAIL) { ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR image,dat,JNI_ABORT); if (pallete != NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR pallete,p,JNI_ABORT); } return JNI_FALSE; } else { ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR image,dat,0); if (pallete != NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR pallete,p,0); } return JNI_TRUE; } } JNIEXPORT jshort JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8lastref ( JNIEnv *env, jobject obj) { return ((short)DFR8lastref()); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8readref ( JNIEnv *env, jclass clss, jstring filename, jshort ref) { int retVal; char *filePtr; filePtr =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); retVal = DFR8readref(filePtr, (short)ref); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,filePtr); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8restart ( JNIEnv *env, jobject obj) { int retVal; retVal = DFR8restart(); if (retVal) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8nimages ( JNIEnv *env, jclass clss, jstring hdfFile) { char *hdf_file; hdf_file =(char *) ENVPTR->GetStringUTFChars(ENVPAR hdfFile,0); return(DFR8nimages(hdf_file)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8addimage ( JNIEnv *env, jclass clss, jstring filename, jbyteArray image, /* IN: image data width X height X 3 */ jint width, jint height, jshort compress) { intn rval; char *f; jbyte *dat; jboolean bb; f =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); dat = ENVPTR->GetByteArrayElements(ENVPAR image,&bb); rval = DFR8addimage((char *)f, (VOIDP) dat, (int32) width, (int32) height, (uint16)compress); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); ENVPTR->ReleaseByteArrayElements(ENVPAR image,dat,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8putimage ( JNIEnv *env, jclass clss, jstring filename, jbyteArray image, /* IN: image data width X height X 3 */ jint width, jint height, jint compress) { intn rval; char *f; jbyte *dat; jboolean bb; f =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); dat = ENVPTR->GetByteArrayElements(ENVPAR image,&bb); rval = DFR8putimage((char *)f, (VOIDP) dat, (int32) width, (int32) height, (uint16)compress); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); ENVPTR->ReleaseByteArrayElements(ENVPAR image,dat,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8setcompress ( JNIEnv *env, jclass clss, jint type, jobject cinfo) { intn rval; comp_info cinf; jboolean bval; bval = getOldCompInfo(env, cinfo,&cinf); /* check for success... */ /* fill in cinf depending on the value of 'type' */ rval = DFR8setcompress((int32) type, (comp_info *)&cinf); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8getpalref ( JNIEnv *env, jclass clss, jshortArray palref) /* OUT: Short */ { int rval; short *theArgs; jboolean bb; theArgs = ENVPTR->GetShortArrayElements(ENVPAR palref,&bb); rval = DFR8getpalref((uint16 *)&(theArgs[0])); if (rval == FAIL) { ENVPTR->ReleaseShortArrayElements(ENVPAR palref,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseShortArrayElements(ENVPAR palref,theArgs,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8setpalette ( JNIEnv *env, jclass clss, jbyteArray palette) /* IN: byte[] */ { int rval; jbyte *p; jboolean bb; p = ENVPTR->GetByteArrayElements(ENVPAR palette,&bb); rval = DFR8setpalette((uint8 *)p); ENVPTR->ReleaseByteArrayElements(ENVPAR palette,p,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFR8writeref ( JNIEnv *env, jclass clss, jstring filename, jshort ref) { int retVal; char *filePtr; filePtr =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); retVal = DFR8writeref(filePtr, (short)ref); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,filePtr); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfvhImp.c0000644002344600011330000001045412326542262016210 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VHmakegroup ( JNIEnv *env, jclass oclass, jint file_id, jintArray tag_array, /* IN: int[] */ jintArray ref_array, /* IN: int[] */ jint n_objects, jstring vgroup_name, jstring vgroup_class) { int32 rval; jint *tags; jint *refs; char *name; char *cls; jboolean bb; tags = ENVPTR->GetIntArrayElements(ENVPAR tag_array,&bb); refs = ENVPTR->GetIntArrayElements(ENVPAR ref_array,&bb); name = (char *)ENVPTR->GetStringUTFChars(ENVPAR vgroup_name,0); cls = (char *)ENVPTR->GetStringUTFChars(ENVPAR vgroup_class,0); rval = VHmakegroup((int32) file_id, (int32 *) tags, (int32 *)refs, (int32) n_objects, (char *)name, (char *)cls); ENVPTR->ReleaseIntArrayElements(ENVPAR tag_array,tags,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR ref_array,refs,JNI_ABORT); ENVPTR->ReleaseStringUTFChars(ENVPAR vgroup_name,name); ENVPTR->ReleaseStringUTFChars(ENVPAR vgroup_class,cls); return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VHstoredata ( JNIEnv *env, jclass oclass, jint file_id, jstring fieldname, jbyteArray buf, /* IN: byte[] */ jint n_records, jint data_type, jstring vdata_name, jstring vdata_class) { int32 rval; jbyte *buffer; char *fldname; char *name; char *cls; jboolean bb; buffer = ENVPTR->GetByteArrayElements(ENVPAR buf,&bb); fldname = (char *)ENVPTR->GetStringUTFChars(ENVPAR fieldname,0); name = (char *)ENVPTR->GetStringUTFChars(ENVPAR vdata_name,0); cls = (char *)ENVPTR->GetStringUTFChars(ENVPAR vdata_class,0); rval = VHstoredata((int32) file_id, (char *)fldname, (uint8 *) buffer, (int32) n_records, (int32) data_type, (char *)name, (char *)cls); ENVPTR->ReleaseByteArrayElements(ENVPAR buf,buffer,JNI_ABORT); ENVPTR->ReleaseStringUTFChars(ENVPAR vdata_name,name); ENVPTR->ReleaseStringUTFChars(ENVPAR vdata_class,cls); ENVPTR->ReleaseStringUTFChars(ENVPAR fieldname,fldname); return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VHstoredatam ( JNIEnv *env, jclass oclass, jint file_id, jstring fieldname, jbyteArray buf, /* IN: byte[] */ jint n_records, jint data_type, jstring vdata_name, jstring vdata_class, jint order) { int32 rval; jbyte *buffer; char *fldname; char *name; char *cls; jboolean bb; buffer = ENVPTR->GetByteArrayElements(ENVPAR buf,&bb); fldname = (char *)ENVPTR->GetStringUTFChars(ENVPAR fieldname,0); name = (char *)ENVPTR->GetStringUTFChars(ENVPAR vdata_name,0); cls = (char *)ENVPTR->GetStringUTFChars(ENVPAR vdata_class,0); rval = VHstoredatam((int32) file_id, (char *)fldname, (uint8 *) buffer, (int32) n_records, (int32) data_type, (char *)name, (char *)cls, (int32) order); ENVPTR->ReleaseByteArrayElements(ENVPAR buf,buffer,JNI_ABORT); ENVPTR->ReleaseStringUTFChars(ENVPAR vdata_name,name); ENVPTR->ReleaseStringUTFChars(ENVPAR vdata_class,cls); ENVPTR->ReleaseStringUTFChars(ENVPAR fieldname,fldname); return rval; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfImp.c0000644002344600011330000002203612326542262015651 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "hfile.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4buildException( JNIEnv *env, jint HDFerr); JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Hopen ( JNIEnv *env, jclass clss, jstring hdfFile, jint access) { char* file; int retVal; int errval; jclass jc; file =(char *) ENVPTR->GetStringUTFChars(ENVPAR hdfFile,0); if (file == NULL) { /* call failed? */ jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFJavaException"); if (jc == NULL) { return -1; /* exception is raised */ } ENVPTR->ThrowNew(ENVPAR jc,"Hopen: GetStringUTFChars failed"); } /* open HDF file specified by ncsa_hdf_HDF_file */ retVal = Hopen((char *)file, access, 0); ENVPTR->ReleaseStringUTFChars(ENVPAR hdfFile,file); if (retVal == FAIL) { /* check for error */ /* for now: use top of exception stack: fix this to do whole stack */ errval = HEvalue(1); if (errval != DFE_NONE) { h4buildException( env, errval ); jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFLibraryException"); if (jc == NULL) { return -1; /* exception is raised */ } ENVPTR->ThrowNew(ENVPAR jc,HEstring((hdf_err_code_t)errval)); } return -1; } else { return retVal; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Hclose ( JNIEnv *env, jclass clss, jint fid) { int status = 0; if (fid < 0) { /* maybe not an exception -- the file is already closed? */ return JNI_FALSE; } else { /* close the HDF file */ status = Hclose(fid); if (status == FAIL) { /* ideally, return an exception explaining the reason, especially for DFE_OPENAID error */ return JNI_FALSE; } else { return JNI_TRUE; } } } /* * Class: ncsa_hdf_hdflib_HDFLibrary * Method: HDdont_atexit * Signature: ()I */ JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HDdont_1atexit (JNIEnv *env, jclass clss) { return (jint) HDdont_atexit(); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Hishdf ( JNIEnv *env, jclass clss, jstring hdfFile) { char * hfile; int retVal; hfile = (char *)ENVPTR->GetStringUTFChars(ENVPAR hdfFile,0); /* open HDF file specified by ncsa_hdf_HDF_file */ retVal = Hishdf((char *)hfile); ENVPTR->ReleaseStringUTFChars(ENVPAR hdfFile,hfile); if (retVal == FALSE) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Hnumber ( JNIEnv *env, jclass clss, jint fid) { return (Hnumber(fid, DFTAG_WILDCARD)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFKNTsize ( JNIEnv *env, jclass clss, jint numbertype) { return (DFKNTsize(numbertype)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Hcache ( JNIEnv *env, jclass clss, jint file_id, jint cache_switch) { intn rval; rval = Hcache((int32) file_id, (intn) cache_switch); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Hgetfileversion ( JNIEnv *env, jclass clss, jint file_id, jintArray vers, /* OUT: int major_v, minor_v, release */ jobjectArray string) /* OUT: String[] */ { intn rval; jclass Sjc; char s[LIBVSTR_LEN+1] ; jstring name; jint *theArgs; jboolean bb; jobject o; theArgs = ENVPTR->GetIntArrayElements(ENVPAR vers,&bb); rval = Hgetfileversion((int32) file_id, (uint32 *)&(theArgs[0]), (uint32 *)&(theArgs[1]), (uint32 *)&(theArgs[2]), s); s[LIBVSTR_LEN] = '\0'; if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR vers,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR vers,theArgs,0); Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { return JNI_FALSE; } o = ENVPTR->GetObjectArrayElement(ENVPAR string,0); if (o == NULL) { return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { /* exception */ return JNI_FALSE; } ENVPTR->DeleteLocalRef(ENVPAR o); name = ENVPTR->NewStringUTF(ENVPAR s); if (name != NULL) { ENVPTR->SetObjectArrayElement(ENVPAR string,0,(jobject)name); } return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Hgetlibversion ( JNIEnv *env, jclass clss, jintArray vers, /* OUT: int major_v, minor_v, release */ jobjectArray string) /* OUT: String[] */ { intn rval; jclass Sjc; char s[LIBVSTR_LEN+1] ; jint *theArgs; jstring name; jobject o; jboolean bb; theArgs = ENVPTR->GetIntArrayElements(ENVPAR vers,&bb); s[LIBVSTR_LEN] = '\0'; rval = Hgetlibversion((uint32 *)&(theArgs[0]), (uint32 *)&(theArgs[1]), (uint32 *)&(theArgs[2]), s); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR vers,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR vers,theArgs,0); Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { return JNI_FALSE; } o = ENVPTR->GetObjectArrayElement(ENVPAR string,0); if (o == NULL) { return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { /* exception */ return JNI_FALSE; } ENVPTR->DeleteLocalRef(ENVPAR o); name = ENVPTR->NewStringUTF(ENVPAR s); if (name != NULL) { ENVPTR->SetObjectArrayElement(ENVPAR string,0,(jobject)name); } return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Hsetaccesstype ( JNIEnv *env, jclass clss, jint h_id, jint access_type) { int32 rval; rval = Hsetaccesstype((int32) h_id, (uintn) access_type); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Hsync ( JNIEnv *env, jclass clss, jint file_id) { intn rval; rval = Hsync((int32) file_id); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HDFclose ( JNIEnv *env, jclass clss, jint file_id) { intn rval; rval = Hclose((int32) file_id); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HDFopen ( JNIEnv *env, jclass clss, jstring filename, jint access, jshort n_dds) { int32 rval; char * str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = HDFopen((char *)str, (intn) access, (int16) n_dds); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); return rval; } #ifdef not_yet_implemented JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HDFflusdd ( JNIEnv *env, jclass clss, jint file_id) { intn rval; rval = Hflushdd((int32)file_id); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #endif JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HDgetNTdesc ( JNIEnv *env, jclass clss, jint nt) { char *rval; jstring rstring; rval = HDgetNTdesc((int32) nt); if (rval != NULL) { rstring = ENVPTR->NewStringUTF(ENVPAR rval); } else { rstring = NULL; } return rstring; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfvdataImp.c0000644002344600011330000005327312326542262016700 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4outOfMemory( JNIEnv *env, char *functName); extern jboolean h4NotImplemented( JNIEnv *env, char *functName); JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSattach (JNIEnv *env, jclass clss, jint fid, jint vdata_ref, jstring accessmode) { int retVal; char *access; access = (char *)ENVPTR->GetStringUTFChars(ENVPAR accessmode,0); /* open HDF file specified by ncsa_hdf_HDF_file */ retVal = VSattach(fid, vdata_ref, (char *)access); ENVPTR->ReleaseStringUTFChars(ENVPAR accessmode,access); return retVal; } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSdetach (JNIEnv *env, jclass clss, jint vdata_id) { VSdetach((int32)vdata_id); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSgetid (JNIEnv *env, jclass clss, jint fid, jint vdata_ref) { return(VSgetid((int32)fid, (int32)vdata_ref)); } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSgetclass (JNIEnv *env, jclass clss, jint vdata_id, jobjectArray hdfclass) /* OUT: String */ { char *className; jstring rstring; jclass jc; jobject o; jboolean bb; int r; if (hdfclass == NULL) { /* exception: null argument */ return; } r = ENVPTR->GetArrayLength(ENVPAR hdfclass); if (r < 1) { /* exception: bad argument */ return; } className = (char *)malloc(VSNAMELENMAX+1); if (className == NULL) { h4outOfMemory(env, "VSgetclass"); return; } /* get the class class of the vgroup */ VSgetclass(vdata_id, className); className[VSNAMELENMAX] = '\0'; /* convert it to java string */ rstring = ENVPTR->NewStringUTF(ENVPAR className); o = ENVPTR->GetObjectArrayElement(ENVPAR hdfclass,0); if (o == NULL) { free(className); return; } jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { free(className); return; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { free(className); return; } ENVPTR->SetObjectArrayElement(ENVPAR hdfclass,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); free(className); return; } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSgetname (JNIEnv *env, jclass clss, jint vdata_id, jobjectArray hdfname) /* OUT: String */ { char nameName[VSNAMELENMAX+1]; jstring rstring; jclass jc; jobject o; jboolean bb; /* get the name name of the vgroup */ VSgetname(vdata_id, nameName); nameName[VSNAMELENMAX]='\0'; /* convert it to java string */ rstring = ENVPTR->NewStringUTF(ENVPAR nameName); o = ENVPTR->GetObjectArrayElement(ENVPAR hdfname,0); if (o == NULL) { return; } jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { return; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { return; } ENVPTR->SetObjectArrayElement(ENVPAR hdfname,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); return; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSelts (JNIEnv *env, jclass clss, jint vdata_id) { return(VSelts((int32)vdata_id)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSfdefine (JNIEnv *env, jclass clss, jint vdata_id, jstring fieldname, jint numbertype, jint order) { int32 retVal; char *fldName; fldName = (char *)ENVPTR->GetStringUTFChars(ENVPAR fieldname,0); retVal = VSfdefine((int32)vdata_id,(char *)fldName,(int32)numbertype,(int32)order); ENVPTR->ReleaseStringUTFChars(ENVPAR fieldname,fldName); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSfexist (JNIEnv *env, jclass clss, jint vdata_id, jstring fieldname) { int32 retVal; char *fldName; fldName = (char *)ENVPTR->GetStringUTFChars(ENVPAR fieldname,0); /* Check the fields */ retVal = VSfexist((int32)vdata_id,(char *)fldName); ENVPTR->ReleaseStringUTFChars(ENVPAR fieldname,fldName); if (retVal != FAIL) return JNI_TRUE; else return JNI_FALSE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSfind (JNIEnv *env, jclass clss, jint vdata_id, jstring fieldname) { int32 retVal; char *fldName; fldName = (char *)ENVPTR->GetStringUTFChars(ENVPAR fieldname,0); /* Check the fields */ retVal = VSfind((int32)vdata_id,(char *)fldName); ENVPTR->ReleaseStringUTFChars(ENVPAR fieldname,fldName); return(retVal); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsetblocksize (JNIEnv *env, jclass clss, jint vdata_id, jint blocksize) { int32 retVal; /* Check the fields */ retVal = VSsetblocksize((int32)vdata_id,(int32)blocksize); return(retVal); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsetnumblocks (JNIEnv *env, jclass clss, jint vdata_id, jint numblocks) { int32 retVal; /* Check the fields */ retVal = VSsetnumblocks((int32)vdata_id,(int32)numblocks); return(retVal); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSgetfields (JNIEnv *env, jclass clss, jint vdata_id, jobjectArray fields) /* OUT: String */ { int retVal; jclass jc; char *flds; jstring rstring; jobject o; jboolean bb; flds = (char *)malloc(25600); if (flds == NULL) { h4outOfMemory(env, "VSgetfields"); return FAIL; } /* get the fields name in the vdata */ retVal = VSgetfields((int32)vdata_id, flds); flds[25599] = '\0'; if (retVal != FAIL) { rstring = ENVPTR->NewStringUTF(ENVPAR flds); o = ENVPTR->GetObjectArrayElement(ENVPAR fields,0); if (o == NULL) { free(flds); return FAIL; } jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { free(flds); return FAIL; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { free(flds); return FAIL; } ENVPTR->SetObjectArrayElement(ENVPAR fields,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); } free(flds); return retVal; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSgetinterlace (JNIEnv *env, jclass clss, jint vdata_id) { return(VSgetinterlace((int32)vdata_id)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSinquire ( JNIEnv *env, jclass clss, jint vdata_id, jintArray iargs, /* OUT: int n_records, interlace, vdata_size */ jobjectArray sargs) /* OUT: String fields, vdata_name */ { intn rval; char *flds; char *name; jclass jc; jstring rstring; jint * theIargs; jboolean bb; jobject o; flds = (char *)malloc(MAX_FIELD_SIZE+1); if (flds == NULL) { h4outOfMemory(env, "VSinquire"); return FAIL; } name = (char *)malloc(MAX_NC_NAME+1); if (name == NULL) { free(flds); return FAIL; } theIargs = ENVPTR->GetIntArrayElements(ENVPAR iargs,&bb); if (theIargs == NULL) { free(flds); free(name); return FAIL; } rval = VSinquire((int32) vdata_id, (int32 *)&(theIargs[0]), (int32 *)&(theIargs[1]), flds, (int32 *)&(theIargs[2]), name); flds[MAX_FIELD_SIZE] = '\0'; name[MAX_NC_NAME] = '\0'; if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR iargs,theIargs,JNI_ABORT); free(flds); free(name); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR iargs,theIargs,0); jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { free(flds); free(name); return JNI_FALSE; } o = ENVPTR->GetObjectArrayElement(ENVPAR sargs,0); if (o == NULL) { free(flds); free(name); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { /*GB*/ free(flds); return JNI_FALSE; } rstring = ENVPTR->NewStringUTF(ENVPAR flds); ENVPTR->SetObjectArrayElement(ENVPAR sargs,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); o = ENVPTR->GetObjectArrayElement(ENVPAR sargs,1); if (o == NULL) { free(flds); free(name); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { free(flds); free(name); return JNI_FALSE; } rstring = ENVPTR->NewStringUTF(ENVPAR name); ENVPTR->SetObjectArrayElement(ENVPAR sargs,1,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); free(flds); free(name); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSgetblockinfo ( JNIEnv *env, jclass clss, jint vdata_id, jintArray iargs) /* OUT: int blocksize, num_blocks */ { intn rval; jint * theIargs; jboolean bb; theIargs = ENVPTR->GetIntArrayElements(ENVPAR iargs,&bb); if (theIargs == NULL) { return FAIL; } rval = VSgetblockinfo((int32) vdata_id, (int32 *)&(theIargs[0]), (int32 *)&(theIargs[1])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR iargs,theIargs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR iargs,theIargs,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSlone (JNIEnv *env, jclass clss, jint fid, jintArray ref_array, /* int[] */ jint arraysize ) { int retVal; jint * arr; jboolean bb; if (ref_array == NULL ) { arr = NULL; } else { arr = ENVPTR->GetIntArrayElements(ENVPAR ref_array,&bb); if (arr == NULL) { return FAIL; } } /* get the lone vdata reference number in the vdata */ retVal = VSlone((int32)fid, (int32 *)arr, (int32)arraysize); if (retVal == FAIL) { if (arr != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR ref_array,arr,JNI_ABORT); } } else { if (arr != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR ref_array,arr,0); } } return retVal; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSread (JNIEnv *env, jclass clss, jint vdata_id, jbyteArray databuf, /* OUT: byte[] */ jint nrecords, jint interlace) { int32 retVal; jbyte * data; jboolean bb; data = (jbyte *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR databuf,&bb); /* retrieve the general info. */ retVal = VSread((int32)vdata_id, (unsigned char *)data, nrecords, interlace); if (retVal == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR databuf,data,JNI_ABORT); } else { ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR databuf,data,0); } return retVal; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSseek (JNIEnv *env, jclass clss, jint vdata_id, jint nrecord) { return(VSseek((int32)vdata_id, (int32)nrecord)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsetfields (JNIEnv *env, jclass clss, jint vdata_id, jstring fields) { int32 retVal; char *fldPtr; fldPtr = (char *)ENVPTR->GetStringUTFChars(ENVPAR fields,0); /* set the vdata fields to read */ retVal = VSsetfields((int32)vdata_id, (char *)fldPtr); ENVPTR->ReleaseStringUTFChars(ENVPAR fields,fldPtr); if (retVal != FAIL) { return JNI_TRUE; } else { return JNI_FALSE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsetinterlace (JNIEnv *env, jclass clss, jint vdata_id, jint interlace) { int32 retVal; /* set the interlace for Vdata */ retVal = VSsetinterlace((int32)vdata_id, (int32)interlace); if (retVal != FAIL) { return JNI_TRUE; } else { return JNI_FALSE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsizeof (JNIEnv *env, jclass clss, jint vdata_id, jstring fields) { int32 retVal; char *fldPtr; fldPtr = (char *)ENVPTR->GetStringUTFChars(ENVPAR fields,0); /* get the size of a Vdata */ retVal = VSsizeof((int32)vdata_id, (char *)fldPtr); ENVPTR->ReleaseStringUTFChars(ENVPAR fields,fldPtr); return(retVal); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSappendable ( JNIEnv *env, jclass clss, jint vkey, jint block_size) { int32 rval; rval = VSappendable((int32) vkey, (int32) block_size); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSdump ( JNIEnv *env, jclass clss, jint vkey) { VSdump((int32) vkey); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSfindclass (JNIEnv *env, jclass clss, jint vdata_id, jstring hdfclassname) { int32 rval; char *string; string = (char *)ENVPTR->GetStringUTFChars(ENVPAR hdfclassname,0); /* get the class name of the vgroup */ rval = VSfindclass((int32) vdata_id, string); ENVPTR->ReleaseStringUTFChars(ENVPAR hdfclassname,string); return rval; } /* no idea at all how to deal with 2-D arrays.... */ JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSfpack ( JNIEnv *env, jclass clss, jint vdata_id,jint action, jstring fields_in_buf, jarray buf, jint bufsize, jstring fields, jarray bufptrs) { /* VSfpack((int32) vdata_id, (intn) action, char *fields_in_buf, VOIDP buf, intn buf_size, intn n_records, char *fields, VOIDP bufptrs[]); */ h4NotImplemented(env, "VSfpack"); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSgetversion ( JNIEnv *env, jclass clss, jint key) { return (VSgetversion((int32) key)); } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsetclass ( JNIEnv *env, jclass clss, jint vdata_id, jstring vdata_class) { char *string = (char *)ENVPTR->GetStringUTFChars(ENVPAR vdata_class,0); VSsetclass((int32) vdata_id, (char *)string); ENVPTR->ReleaseStringUTFChars(ENVPAR vdata_class,string); return; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsetexternalfile ( JNIEnv *env, jclass clss, jint vkey, jstring filename, jint offset) { intn rval; char *string = (char *)ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = VSsetexternalfile((int32) vkey, (char *)string, (int32) offset); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,string); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsetname ( JNIEnv *env, jclass clss, jint vdata_id, jstring vdata_name) { char *string = (char *)ENVPTR->GetStringUTFChars(ENVPAR vdata_name,0); VSsetname((int32) vdata_id, (char *)string); ENVPTR->ReleaseStringUTFChars(ENVPAR vdata_name,string); return; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSwrite ( JNIEnv *env, jclass clss, jint vdata_id, jbyteArray databuf, jint n_records, jint interlace) { int32 rval; jbyte *b; jboolean bb; b = ENVPTR->GetByteArrayElements(ENVPAR databuf,&bb); rval = VSwrite((int32) vdata_id, (unsigned char *)b, (int32) n_records, (int32) interlace); if (rval == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR databuf,b,JNI_ABORT); } else { ENVPTR->ReleaseByteArrayElements(ENVPAR databuf,b,0); } return rval; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSattrinfo ( JNIEnv *env, jclass clss, jint id, jint index, jint attr_index, jobjectArray name, /* OUT: String */ jintArray argv) /* OUT: NT, count, size */ { int32 retVal; jint *theArgs; jboolean bb; jclass Sjc; jstring str; jobject o; char nam[256]; /* what is the correct constant??? */ theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); retVal = VSattrinfo((int32)id, (int32)index, (int32)attr_index, nam, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1]), (int32 *)&(theArgs[2])); nam[255] = '\0'; if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); str = ENVPTR->NewStringUTF(ENVPAR nam); o = ENVPTR->GetObjectArrayElement(ENVPAR name,0); if (o == NULL) { return JNI_FALSE; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR name,0,(jobject)str); ENVPTR->DeleteLocalRef(ENVPAR o); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSfindex ( JNIEnv *env, jclass clss, jint id, jstring name, jintArray findex) /* OUT: findex */ { intn rval; char *str; jint *arr; jboolean bb; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR name,0); arr = ENVPTR->GetIntArrayElements(ENVPAR findex,&bb); rval = VSfindex((int32) id, str, (int32 *)arr); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR findex,arr,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR findex,arr,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSfindattr ( JNIEnv *env, jclass clss, jint id, jint index, jstring name) { int32 retVal; char *cname; cname =(char *) ENVPTR->GetStringUTFChars(ENVPAR name,0); retVal = VSfindattr((int32)id, (int32)index, cname); ENVPTR->ReleaseStringUTFChars(ENVPAR name,cname); return retVal; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSfnattrs ( JNIEnv *env, jclass clss, jint id, jint attr) { return (VSfnattrs((int32)id, (int32)attr)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSgetattr ( JNIEnv *env, jclass clss, jint id, jint field_index, jint attr_index, jbyteArray values) /* OUT: byte[] */ { intn rval; jbyte *arr; jboolean bb; arr = ENVPTR->GetByteArrayElements(ENVPAR values,&bb); rval = VSgetattr((int32) id, (int32)field_index, (int32) attr_index, (VOIDP) arr); if (rval == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR values,arr,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR values,arr,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSisattr ( JNIEnv *env, jclass clss, jint id) { intn rval; rval = VSisattr((int32) id); if (rval == 0) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSnattrs ( JNIEnv *env, jclass clss, jint id) { return (VSnattrs((int32) id)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsetattr__IILjava_lang_String_2IILjava_lang_String_2 ( JNIEnv *env, jclass clss, jint id, jint index, jstring attr_name, jint data_type, jint count, jstring values) /* IN: String */ { intn rval; char *str; char *val; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR attr_name,0); val =(char *) ENVPTR->GetStringUTFChars(ENVPAR values,0); rval = VSsetattr((int32) id, (int32) index, (char *)str, (int32) data_type, (int32) count, (VOIDP) val); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,str); ENVPTR->ReleaseStringUTFChars(ENVPAR values,val); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSsetattr__IILjava_lang_String_2II_3B ( JNIEnv *env, jclass clss, jint id, jint index, jstring attr_name, jint data_type, jint count, jbyteArray values) /* IN: byte[] */ { intn rval; jbyte *arr; char *str; jboolean bb; arr = ENVPTR->GetByteArrayElements(ENVPAR values,&bb); str =(char *) ENVPTR->GetStringUTFChars(ENVPAR attr_name,0); rval = VSsetattr((int32) id, (int32) index, (char *)str, (int32) data_type, (int32) count, (VOIDP) arr); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,str); ENVPTR->ReleaseByteArrayElements(ENVPAR values,arr,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfdfcompImp.c0000644002344600011330000000661212326542262017044 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean getOldCompInfo( JNIEnv *env, jobject ciobj, comp_info *cinf); JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFgetcomp ( JNIEnv *env, jclass clss, jint file_id, jshort tag, jshort ref, jbyteArray image, /* OUT: byte[] (really) byte[3][][] or byte[][][3] ? */ jint xdim, jint ydim, jint method) { int rval; jbyte *im; jboolean bb; im = ENVPTR->GetByteArrayElements(ENVPAR image, &bb); rval = DFgetcomp((int32) file_id, (uint16) tag, (uint16) ref, (uint8 *)image, (int32) xdim, (int32) ydim, (int16) method); if (rval == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR image, im, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR image, im, 0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFputcomp ( JNIEnv *env, jclass clss, jint file_id, jshort tag, jshort ref, jbyteArray image, /* IN: byte[] (actually byte[3][][] or byte[][][3] ? */ jint xdim, jint ydim, jbyteArray palette, /* IN: byte[3*256] */ jbyteArray newpal, /* IN?: byte[3*256] */ jint scheme, jobject c_info) /* IN: HDFCompInfo c_info */ { intn rval; jboolean bval; comp_info cinf; jbyte *im; jbyte *p; jbyte *np; jboolean bb; bval = getOldCompInfo(env,c_info,&cinf); /* check for success... */ im = ENVPTR->GetByteArrayElements(ENVPAR image, &bb); p = ENVPTR->GetByteArrayElements(ENVPAR palette, &bb); np = ENVPTR->GetByteArrayElements(ENVPAR newpal, &bb); rval = DFputcomp((int32) file_id, (uint16) tag, (uint16) ref, (uint8 *)im, (int32) xdim, (int32) ydim, (uint8 *)p, (uint8 *)np, (int16) scheme, (comp_info *)&cinf); ENVPTR->ReleaseByteArrayElements(ENVPAR image, im, JNI_ABORT); ENVPTR->ReleaseByteArrayElements(ENVPAR palette, p, JNI_ABORT); if (rval == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR newpal, np, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR newpal, np, 0); return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfanImp.c0000644002344600011330000001775312326542262016202 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4outOfMemory( JNIEnv *env, char *functName); JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANstart ( JNIEnv *env, jclass clss, jint file_id) { return ANstart((int32)file_id); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANend ( JNIEnv *env, jclass clss, jint anid) { int32 retVal; retVal = ANend((int32)anid); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANfileinfo ( JNIEnv *env, jclass clss, jint anid, jintArray info) /* OUT: n_file_label, n_file_desc, n_data_label, n_data_desc */ { int32 retVal; jint *theArgs; jboolean bb; theArgs = ENVPTR->GetIntArrayElements(ENVPAR info,&bb); retVal = ANfileinfo((int32)anid, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1]), (int32 *)&(theArgs[2]), (int32 *)&(theArgs[3])); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR info,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR info,theArgs,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANselect ( JNIEnv *env, jclass clss, jint anid, jint index, jint anntype) { return(ANselect((int32)anid, (int32)index, (ann_type)anntype)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANendaccess ( JNIEnv *env, jclass clss, jint ann_id) { int32 retVal; retVal = ANendaccess((int32)ann_id); if (!retVal) { return JNI_TRUE; } else { return JNI_FALSE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANnumann ( JNIEnv *env, jclass clss, jint an_id, jint anntype, jshort tag, jshort ref) { return( (jint) ANnumann((int32)an_id, (ann_type)anntype, (uint16)tag, (uint16)ref) ); } JNIEXPORT jshort JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANatype2tag ( JNIEnv *env, jclass clss, jint antype) { return (jshort)ANatype2tag((ann_type)antype); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANtag2atype ( JNIEnv *env, jclass clss, jint antag) { return (jint)ANtag2atype((uint16)antag); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANannlist ( JNIEnv *env, jclass clss, jint an_id, jint anntype, jshort tag, jshort ref, jintArray annlist /* OUT: int[] */ ) { intn retVal; jint *iarr; jboolean bb; iarr = ENVPTR->GetIntArrayElements(ENVPAR annlist,&bb); retVal = ANannlist((int32)an_id, (ann_type)anntype, (uint16)tag,(uint16)ref,(int32 *)iarr); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR annlist,iarr,JNI_ABORT); } else { ENVPTR->ReleaseIntArrayElements(ENVPAR annlist,iarr,0); } return (jint)retVal; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANannlen ( JNIEnv *env, jclass clss, jint ann_id) { return ANannlen((int32)ann_id); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANreadann ( JNIEnv *env, jclass clss, jint ann_id, jobjectArray annbuf, /* OUT: string */ jint maxlen) { int32 retVal; char *data; jclass Sjc; jstring rstring; jobject o; jboolean bb; data = (char *)HDmalloc((maxlen+1)*sizeof(char)); if (data == NULL) { /* Exception */ h4outOfMemory(env, "ANreadan"); return JNI_FALSE; } /* read annotation from HDF */ retVal = ANreadann((int32)ann_id, data, (int32)maxlen); data[maxlen] = '\0'; if (retVal == FAIL) { if (data != NULL) HDfree((char *)data); return JNI_FALSE; } else { o = ENVPTR->GetObjectArrayElement(ENVPAR annbuf,0); if (o == NULL) { if (data != NULL) HDfree((char *)data); return JNI_FALSE; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (data != NULL) HDfree((char *)data); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (data != NULL) HDfree((char *)data); return JNI_FALSE; } rstring = ENVPTR->NewStringUTF(ENVPAR data); ENVPTR->SetObjectArrayElement(ENVPAR annbuf,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); if (data != NULL) HDfree((char *)data); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANcreate ( JNIEnv *env, jclass clss, jint an_id, jshort tag, jshort ref, jint type) { return (ANcreate((int32) an_id, (uint16) tag, (uint16) ref, (ann_type) type)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANcreatef ( JNIEnv *env, jclass clss, jint an_id, jint type) { return (ANcreatef((int32) an_id, (ann_type) type)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANget_1tagref ( JNIEnv *env, jclass clss, jint an_id, jint index, jint type, jshortArray tagref) /* OUT: short tag, ref */ { int32 rval; short *theArgs; jboolean bb; theArgs = ENVPTR->GetShortArrayElements(ENVPAR tagref,&bb); rval = ANget_tagref((int32) an_id, (int32) index, (ann_type) type, (uint16 *)&(theArgs[0]), (uint16 *)&(theArgs[1])); if (rval == FAIL) { ENVPTR->ReleaseShortArrayElements(ENVPAR tagref,theArgs,JNI_ABORT); } else { ENVPTR->ReleaseShortArrayElements(ENVPAR tagref,theArgs,0); } return rval; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANid2tagref ( JNIEnv *env, jclass clss, jint an_id, jshortArray tagref) /* OUT: short tag, ref */ { int32 rval; short *theArgs; jboolean bb; theArgs = ENVPTR->GetShortArrayElements(ENVPAR tagref,&bb); rval = ANid2tagref((int32) an_id, (uint16 *)&(theArgs[0]), (uint16 *)&(theArgs[1])); if (rval == FAIL) { ENVPTR->ReleaseShortArrayElements(ENVPAR tagref,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseShortArrayElements(ENVPAR tagref,theArgs,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANtagref2id ( JNIEnv *env, jclass clss, jint an_id, jshort tag, jshort ref ) { return( ANtagref2id((int32) an_id, (uint16) tag, (uint16) ref)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_ANwriteann ( JNIEnv *env, jclass clss, jint ann_id, jstring label, jint ann_length) { intn rval; char * str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR label,0); /* should check that str is as long as ann_length.... */ rval = ANwriteann((int32) ann_id, str, (int32) ann_length); ENVPTR->ReleaseStringUTFChars(ENVPAR label,str); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfdfanImp.c0000644002344600011330000003363112326542262016505 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4outOfMemory( JNIEnv *env, char *functName); JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANaddfds ( JNIEnv *env, jclass clss, jint file_id, jstring description, jint desc_len) { intn rval; char * str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR description,0); /* should check that str is as long as desc_length.... */ rval = DFANaddfds((int32) file_id, (char *)str, (int32) desc_len); ENVPTR->ReleaseStringUTFChars(ENVPAR description,str); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANaddfid ( JNIEnv *env, jclass clss, jint file_id, jstring label) { intn rval; char *str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR label,0); /* should check that str is as long as desc_length.... */ rval = DFANaddfid((int32) file_id, (char *)str); ENVPTR->ReleaseStringUTFChars(ENVPAR label,str); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANclear ( JNIEnv *env, jobject obj) { intn rval; rval = DFANclear( ); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANgetdesc ( JNIEnv *env, jclass clss, jstring filename, jshort tag, jshort ref, jobjectArray desc_buf, /* OUT: String */ jint buf_len) { intn rval; char *data; char *str; jclass Sjc; jstring rstring; jobject o; jboolean bb; data = (char *)HDmalloc((buf_len*sizeof(char)) + 1); if (data == NULL) { /* Exception */ h4outOfMemory(env,"DFANgetdesc"); return JNI_FALSE; } str =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); /* read annotation */ rval = DFANgetdesc((char *)str, (uint16) tag, (uint16) ref, (char *)data, (int32) buf_len); data[buf_len] = '\0'; if (rval == FAIL) { if (data != NULL) HDfree((char *)data); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); return JNI_FALSE; } else { ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); rstring = ENVPTR->NewStringUTF(ENVPAR data); o = ENVPTR->GetObjectArrayElement(ENVPAR desc_buf,0); if (o == NULL) { if (data != NULL) HDfree((char *)data); return JNI_FALSE; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (data != NULL) HDfree((char *)data); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (data != NULL) HDfree((char *)data); return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR desc_buf,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); if (data != NULL) HDfree((char *)data); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANgetdesclen ( JNIEnv *env, jclass clss, jstring filename, jshort tag, jshort ref) { int32 rval; char * str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFANgetdesclen((char *)str, (uint16) tag, (uint16) ref); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANgetfds ( JNIEnv *env, jclass clss, jint file_id, jobjectArray desc_buf, /* OUT: String */ jint buf_len, jint isfirst) { int32 rval; char *data; jclass Sjc; jstring rstring; jobject o; jboolean bb; data = (char *)HDmalloc((buf_len + 1)*sizeof(char)); if (data == NULL) { /* Exception */ h4outOfMemory(env,"DFANgetfds"); return FAIL; } /* should check that data is 'buf_len' long */ rval = DFANgetfds((int32) file_id, (char *)data, (int32) buf_len, (intn) isfirst); data[buf_len] = '\0'; if (rval == FAIL) { if (data != NULL) HDfree((char *)data); } else { rstring = ENVPTR->NewStringUTF(ENVPAR data); o = ENVPTR->GetObjectArrayElement(ENVPAR desc_buf,0); if (o == NULL) { if (data != NULL) HDfree((char *)data); return FAIL; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (data != NULL) HDfree((char *)data); return FAIL; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (data != NULL) HDfree((char *)data); return FAIL; } ENVPTR->SetObjectArrayElement(ENVPAR desc_buf,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); if (data != NULL) HDfree((char *)data); } return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANgetfdslen ( JNIEnv *env, jclass clss, jint file_id, jint isfirst) { return DFANgetfdslen((int32) file_id, (intn) isfirst); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANgetfid ( JNIEnv *env, jclass clss, jint file_id, jobjectArray desc_buf, jint buf_len, jint isfirst) { int32 rval; char *data; jclass Sjc; jstring rstring; jobject o; jboolean bb; data = (char *)HDmalloc((buf_len + 1)*sizeof(char)); if (data == NULL) { /* Exception */ h4outOfMemory(env,"DFANgetfid"); return FAIL; } /* should check that data is 'buf_len' long */ rval = DFANgetfid((int32) file_id, (char *)data, (int32) buf_len, (intn) isfirst); data[buf_len] = '\0'; if (rval == FAIL) { if (data != NULL) HDfree((char *)data); } else { rstring = ENVPTR->NewStringUTF(ENVPAR data); o = ENVPTR->GetObjectArrayElement(ENVPAR desc_buf,0); if (o == NULL) { if (data != NULL) HDfree((char *)data); return FAIL; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (data != NULL) HDfree((char *)data); return FAIL; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (data != NULL) HDfree((char *)data); return FAIL; } ENVPTR->SetObjectArrayElement(ENVPAR desc_buf,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); if (data != NULL) HDfree((char *)data); } return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANgetfidlen ( JNIEnv *env, jclass clss, jint file_id, jint isfirst) { return(DFANgetfidlen((int32) file_id, (intn) isfirst)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANgetlabel ( JNIEnv *env, jclass clss, jstring filename, jshort tag, jshort ref, jobjectArray label_buf, jint buf_len) { intn rval; char *data; jclass Sjc; jstring rstring; char *str; jobject o; jboolean bb; data = (char *)HDmalloc((buf_len + 1)*sizeof(char)); if (data == NULL) { /* Exception */ h4outOfMemory(env,"DFANgetlabel"); return FAIL; } /* should check lenght of buffer */ str =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFANgetlabel((char *)str, (uint16) tag, (uint16) ref, (char *)data, (int32) buf_len); data[buf_len] = '\0'; if (rval == FAIL) { if (data != NULL) HDfree((char *)data); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); } else { ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); rstring = ENVPTR->NewStringUTF(ENVPAR data); o = ENVPTR->GetObjectArrayElement(ENVPAR label_buf,0); if (o == NULL) { if (data != NULL) HDfree((char *)data); return FAIL; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (data != NULL) HDfree((char *)data); return FAIL; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (data != NULL) HDfree((char *)data); return FAIL; } ENVPTR->SetObjectArrayElement(ENVPAR label_buf,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); if (data != NULL) HDfree((char *)data); } return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANgetlablen ( JNIEnv *env, jclass clss, jstring filename, jshort tag, jshort ref) { int32 rval; char *str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFANgetlablen((char *)str, (uint16) tag, (uint16) ref); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANlablist ( JNIEnv *env, jclass clss, jstring filename, jshort tag, jshortArray ref_list, /* OUT: short[] */ jobjectArray label_list, /* OUT: String */ jint list_len, jint label_len, jint start_pos) { int rval; char *data; jclass Sjc; jstring rstring; char *str; jshort *sarr; jboolean bb; jobject o; /* Check that ref_list is long enough? */ data = (char *)HDmalloc((label_len * (list_len - 1)) + 1); if (data == NULL) { /* Exception */ h4outOfMemory(env,"DFANlablist"); return FAIL; } sarr = ENVPTR->GetShortArrayElements(ENVPAR ref_list,&bb); /* should check length of buffer */ str =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFANlablist((char *)str, (uint16) tag, (uint16 *) sarr, (char *)data, (int) list_len, (intn) label_len, (intn) start_pos); data[(label_len * (list_len - 1))] = '\0'; if (rval == FAIL) { if (data != NULL) HDfree((char *)data); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); ENVPTR->ReleaseShortArrayElements(ENVPAR ref_list,(jshort *)sarr, JNI_ABORT); } else { ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); ENVPTR->ReleaseShortArrayElements(ENVPAR ref_list,(jshort *)sarr, 0); rstring = ENVPTR->NewStringUTF(ENVPAR data); o = ENVPTR->GetObjectArrayElement(ENVPAR label_list,0); if (o == NULL) { if (data != NULL) HDfree((char *)data); return FAIL; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (data != NULL) HDfree((char *)data); return FAIL; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (data != NULL) HDfree((char *)data); return FAIL; } ENVPTR->SetObjectArrayElement(ENVPAR label_list,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); if (data != NULL) HDfree((char *)data); } return rval; } JNIEXPORT jshort JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANlastref ( JNIEnv *env, jobject obj) { return (DFANlastref( )); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANputdesc ( JNIEnv *env, jclass clss, jstring filename, jshort tag, jshort ref, jstring description, jint desc_len) { int rval; char *fn; char *str; fn =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); str =(char *) ENVPTR->GetStringUTFChars(ENVPAR description,0); /* should check length of description */ rval = DFANputdesc((char *)fn, (uint16) tag, (uint16) ref, (char *)str, (int32) desc_len); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,fn); ENVPTR->ReleaseStringUTFChars(ENVPAR description,str); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_DFANputlabel ( JNIEnv *env, jclass clss, jstring filename, jshort tag, jshort ref, jstring label) { intn rval; char *fn; char *str; fn =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); str =(char *) ENVPTR->GetStringUTFChars(ENVPAR label,0); /* should check length of description */ rval = DFANputlabel((char *)fn, (uint16) tag, (uint16) ref, (char *)str); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,fn); ENVPTR->ReleaseStringUTFChars(ENVPAR label,str); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfstructsutil.c0000644002344600011330000004617212326542262017540 0ustar byrnhdf/**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This module contains code to translate between the HDF C union 'comp_info' * and a subclass of the Java class CompInfo. * * This is nasty and ugly and probably buggy. * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4outOfMemory( JNIEnv *env, char *functName); /* * Get information from a Java HDFNewCompInfo object in to a C comp_info * struct. * * Extract information for the different types of compression. */ jboolean getNewCompInfo( JNIEnv *env, jobject ciobj, comp_info *cinf) { jfieldID jf; jclass jc; jint ctype; jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFNewCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "ctype", "I"); if (jf == NULL) { return JNI_FALSE; } ctype = ENVPTR->GetIntField(ENVPAR ciobj, jf); switch(ctype) { case COMP_CODE_NONE: case COMP_CODE_RLE: default: break; case COMP_CODE_SKPHUFF: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFSKPHUFFCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "skp_size", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->skphuff.skp_size = ENVPTR->GetIntField(ENVPAR ciobj, jf); break; case COMP_CODE_DEFLATE: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFDeflateCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "level", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->deflate.level = ENVPTR->GetIntField(ENVPAR ciobj, jf); break; case COMP_CODE_SZIP: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFSZIPCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "bits_per_pixel", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->szip.bits_per_pixel = ENVPTR->GetIntField(ENVPAR ciobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "options_mask", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->szip.options_mask = ENVPTR->GetIntField(ENVPAR ciobj, jf); /* changes from hdf-42r0 to hdf-42r1 jf = ENVPTR->GetFieldID(ENVPAR jc, "compression_mode", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->szip.compression_mode = ENVPTR->GetIntField(ENVPAR ciobj, jf); */ jf = ENVPTR->GetFieldID(ENVPAR jc, "pixels", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->szip.pixels = ENVPTR->GetIntField(ENVPAR ciobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "pixels_per_block", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->szip.pixels_per_block = ENVPTR->GetIntField(ENVPAR ciobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "pixels_per_scanline", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->szip.pixels_per_scanline = ENVPTR->GetIntField(ENVPAR ciobj, jf); break; case COMP_CODE_NBIT: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFNBITCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "nt", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->nbit.nt = ENVPTR->GetIntField(ENVPAR ciobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "sign_ext", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->nbit.sign_ext = ENVPTR->GetIntField(ENVPAR ciobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "fill_one", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->nbit.fill_one = ENVPTR->GetIntField(ENVPAR ciobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "start_bit", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->nbit.start_bit = ENVPTR->GetIntField(ENVPAR ciobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "bit_len", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->nbit.bit_len = ENVPTR->GetIntField(ENVPAR ciobj, jf); break; } return JNI_TRUE; } /* * Extract info from C comp_info struct, put in Java HDFCompInfo object. * * Put in the fields for each compression method. */ jboolean setNewCompInfo( JNIEnv *env, jobject ciobj, comp_coder_t coder, comp_info *cinf) { jfieldID jf; jclass jc; jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFCompInfo"); if (jc == NULL) { return JNI_FALSE; } else { jf = ENVPTR->GetFieldID(ENVPAR jc, "ctype", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, coder); } switch(coder) { case COMP_CODE_NONE: case COMP_CODE_RLE: default: break; case COMP_CODE_SKPHUFF: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFSKPHUFFCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "ctype", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, COMP_CODE_SKPHUFF); jf = ENVPTR->GetFieldID(ENVPAR jc, "skp_size", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->skphuff.skp_size ); break; case COMP_CODE_DEFLATE: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFDeflateCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "ctype", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, COMP_CODE_DEFLATE); jf = ENVPTR->GetFieldID(ENVPAR jc, "level", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->deflate.level ); break; case COMP_CODE_SZIP: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFSZIPCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "ctype", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, COMP_CODE_SZIP); jf = ENVPTR->GetFieldID(ENVPAR jc, "bits_per_pixel", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->szip.bits_per_pixel); jf = ENVPTR->GetFieldID(ENVPAR jc, "options_mask", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->szip.options_mask); /* changes from hdf-42r0 to hdf-42r1 jf = ENVPTR->GetFieldID(ENVPAR jc, "compression_mode", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->szip.compression_mode); */ jf = ENVPTR->GetFieldID(ENVPAR jc, "pixels", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->szip.pixels); jf = ENVPTR->GetFieldID(ENVPAR jc, "pixels_per_block", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->szip.pixels_per_block); jf = ENVPTR->GetFieldID(ENVPAR jc, "pixels_per_scanline", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->szip.pixels_per_scanline); break; case COMP_CODE_NBIT: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFNBITCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "ctype", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, COMP_CODE_NBIT); jf = ENVPTR->GetFieldID(ENVPAR jc, "nt", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->nbit.nt); jf = ENVPTR->GetFieldID(ENVPAR jc, "sign_ext", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->nbit.sign_ext ); jf = ENVPTR->GetFieldID(ENVPAR jc, "fill_one", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->nbit.fill_one); jf = ENVPTR->GetFieldID(ENVPAR jc, "start_bit", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->nbit.start_bit ); jf = ENVPTR->GetFieldID(ENVPAR jc, "bit_len", "I"); if (jf == NULL) { return JNI_FALSE; } ENVPTR->SetIntField(ENVPAR ciobj, jf, cinf->nbit.bit_len); break; } return JNI_TRUE; } /* * Get info from old style C comp_info struct, put in HDFCompInfo object. */ jboolean getOldCompInfo( JNIEnv *env, jobject ciobj, comp_info *cinf) { jfieldID jf; jclass jc; jint ctype; jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFOldCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "ctype", "I"); if (jf == NULL) { return JNI_FALSE; } ctype = ENVPTR->GetIntField(ENVPAR ciobj, jf); switch(ctype) { case COMP_NONE: case COMP_RLE: case COMP_IMCOMP: default: break; case COMP_JPEG: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFJPEGCompInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "quality", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->jpeg.quality = ENVPTR->GetIntField(ENVPAR ciobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "force_baseline", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->jpeg.force_baseline = ENVPTR->GetIntField(ENVPAR ciobj, jf); break; } return JNI_TRUE; } /* * Get the Chunk info from C HDF_CHUNK_DEF struct, put in * Java HDFChunkInfo object. */ jboolean getChunkInfo( JNIEnv *env, jobject chunkobj, HDF_CHUNK_DEF *cinf) { jfieldID jf; jclass jc; jint ctype; jobject larr; jint * lens; int i; jboolean bval; jboolean bb; jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFChunkInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "ctype", "I"); if (jf == NULL) { return JNI_FALSE; } ctype = ENVPTR->GetIntField(ENVPAR chunkobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "chunk_lengths", "[I"); if (jf == NULL) { return JNI_FALSE; } larr = ENVPTR->GetObjectField(ENVPAR chunkobj,jf); if (larr == NULL) { return JNI_FALSE; } lens = (jint *)ENVPTR->GetIntArrayElements(ENVPAR (jintArray)larr,&bb); for (i = 0; i < MAX_VAR_DIMS; i++) { cinf->comp.chunk_lengths[i] = (int32)lens[i]; } ENVPTR->ReleaseIntArrayElements(ENVPAR (jintArray)larr,(jint *)lens,JNI_ABORT); if (ctype == (HDF_CHUNK | HDF_COMP)) { jf = ENVPTR->GetFieldID(ENVPAR jc, "comp_type", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->comp.comp_type = ENVPTR->GetIntField(ENVPAR chunkobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "cinfo", "Lncsa/hdf/hdflib/HDFCompInfo;"); if (jf == NULL) { return JNI_FALSE; } larr = ENVPTR->GetObjectField(ENVPAR chunkobj,jf); if (larr == NULL) { return JNI_FALSE; } /* set compression information */ bval = getNewCompInfo(env, (jobject)larr, &(cinf->comp.cinfo)); } else if (ctype == (HDF_CHUNK | HDF_NBIT)) { jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFNBITChunkInfo"); if (jc == NULL) { return JNI_FALSE; } jf = ENVPTR->GetFieldID(ENVPAR jc, "chunk_lengths", "[I"); if (jf == NULL) { return JNI_FALSE; } larr = ENVPTR->GetObjectField(ENVPAR chunkobj,jf); if (larr == NULL) { return JNI_FALSE; } lens = (jint *)ENVPTR->GetIntArrayElements(ENVPAR (jintArray)larr,&bb); for (i = 0; i < MAX_VAR_DIMS; i++) { cinf->nbit.chunk_lengths[i] = (int32)lens[i]; } ENVPTR->ReleaseIntArrayElements(ENVPAR (jintArray)larr,(jint *)lens,JNI_ABORT); jf = ENVPTR->GetFieldID(ENVPAR jc, "start_bit", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->nbit.start_bit = ENVPTR->GetIntField(ENVPAR chunkobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "bit_len", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->nbit.bit_len = ENVPTR->GetIntField(ENVPAR chunkobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "sign_ext", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->nbit.sign_ext = ENVPTR->GetIntField(ENVPAR chunkobj, jf); jf = ENVPTR->GetFieldID(ENVPAR jc, "fill_one", "I"); if (jf == NULL) { return JNI_FALSE; } cinf->nbit.fill_one = ENVPTR->GetIntField(ENVPAR chunkobj, jf); } return JNI_TRUE; } /* * Create C HDF_CHUNK_DEF struct from Java HDFChunkInfo object. * * Determine the compression method, and create an appropriate subclass * of HDFCompInfo. Then call the constructor for HDFChunkInfo. */ jboolean makeChunkInfo( JNIEnv *env, jobject chunkobj, int32 flgs, HDF_CHUNK_DEF *cinf) { jclass jc; jclass jci; jmethodID jmi; jintArray rarray; jobject compinfo; rarray = ENVPTR->NewIntArray(ENVPAR MAX_VAR_DIMS); if (rarray == NULL) { return JNI_FALSE; } ENVPTR->SetIntArrayRegion(ENVPAR rarray,0,MAX_VAR_DIMS,(jint *)cinf->chunk_lengths); /* release rarray? */ jci = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFChunkInfo"); if (jci == NULL) { return JNI_FALSE; } switch (flgs) { case HDF_CHUNK: default: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFCompInfo"); if (jc == NULL) { return JNI_FALSE; } jmi = ENVPTR->GetMethodID(ENVPAR jc, "", "()V"); if (jmi == NULL) { return JNI_FALSE; } compinfo = ENVPTR->NewObject(ENVPAR jc,jmi); break; case (HDF_CHUNK | HDF_COMP): switch (cinf->comp.comp_type) { case COMP_CODE_NONE: default: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFCompInfo"); if (jc == NULL) { return JNI_FALSE; } jmi = ENVPTR->GetMethodID(ENVPAR jc, "", "()V"); if (jmi == NULL) { return JNI_FALSE; } compinfo = ENVPTR->NewObject(ENVPAR jc,jmi); break; case COMP_CODE_JPEG: /* new HDFJPEGCompInfo() */ jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFJPEGCompInfo"); if (jc == NULL) { return JNI_FALSE; } jmi = ENVPTR->GetMethodID(ENVPAR jc, "", "(II)V"); if (jmi == NULL) { return JNI_FALSE; } compinfo = ENVPTR->NewObject(ENVPAR jc,jmi, cinf->comp.cinfo.jpeg.quality, cinf->comp.cinfo.jpeg.force_baseline); break; case COMP_CODE_DEFLATE: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFDeflateCompInfo"); if (jc == NULL) { return JNI_FALSE; } jmi = ENVPTR->GetMethodID(ENVPAR jc, "", "(I)V"); if (jmi == NULL) { return JNI_FALSE; } compinfo = ENVPTR->NewObject(ENVPAR jc,jmi, cinf->comp.cinfo.deflate.level); break; case COMP_CODE_SZIP: jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFSZIPCompInfo"); if (jc == NULL) { return JNI_FALSE; } jmi = ENVPTR->GetMethodID(ENVPAR jc, "", "(IIIII)V"); if (jmi == NULL) { return JNI_FALSE; } compinfo = ENVPTR->NewObject(ENVPAR jc,jmi, cinf->comp.cinfo.szip.bits_per_pixel, cinf->comp.cinfo.szip.options_mask, cinf->comp.cinfo.szip.pixels, cinf->comp.cinfo.szip.pixels_per_block, cinf->comp.cinfo.szip.pixels_per_scanline); break; } break; case (HDF_CHUNK | HDF_NBIT): /* new HDFCompInfo() */ jc = ENVPTR->FindClass(ENVPAR "ncsa/hdf/hdflib/HDFNBITChunkInfo"); if (jc == NULL) { return JNI_FALSE; } jmi = ENVPTR->GetMethodID(ENVPAR jc, "", "([IIIII;)V"); if (jmi == NULL) { return JNI_FALSE; } ENVPTR->CallVoidMethod(ENVPAR chunkobj,jmi, rarray, cinf->nbit.start_bit, cinf->nbit.bit_len, cinf->nbit.sign_ext, cinf->nbit.fill_one); return JNI_TRUE; break; } jmi = ENVPTR->GetMethodID(ENVPAR jci, "", "([IILncsa/hdf/hdflib/HDFCompInfo;)V"); if (jmi == NULL) { return JNI_FALSE; } ENVPTR->CallVoidMethod(ENVPAR chunkobj,jmi, rarray, cinf->comp.comp_type, compinfo); return JNI_TRUE; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HCget_1config_1info ( JNIEnv *env, jclass clss, jint coder_type) /* out: CompInfo */ { intn rval; uint32 compression_config_info=0; /* check for success... */ rval = HCget_config_info( (comp_coder_t) coder_type, (uint32*)&compression_config_info); if (rval == FAIL) return -1; return compression_config_info; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfvsqImp.c0000644002344600011330000001353612326542262016410 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4outOfMemory( JNIEnv *env, char *functName); JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSQuerycount ( JNIEnv *env, jclass clss, jint vdata_id, jintArray n_records) /* OUT: int */ { intn rval; jint * theArg; jboolean bb; theArg = ENVPTR->GetIntArrayElements(ENVPAR n_records,&bb); rval = VSQuerycount((int32) vdata_id, (int32 *)&(theArg[0])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR n_records,theArg,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR n_records,theArg,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSQueryfields ( JNIEnv *env, jclass clss, jint vdata_id, jobjectArray fields) /* OUT: String */ { intn rval; char flds[4096]; jstring rstring; jclass jc; jobject o; jboolean bb; rval = VSQueryfields((int32) vdata_id, (char *)flds); flds[4095] = '\0'; if (rval == FAIL) { return JNI_FALSE; } else { /* convert it to java string */ rstring = ENVPTR->NewStringUTF(ENVPAR flds); /* create a Java String object in the calling environment... */ jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { return JNI_FALSE; /* exception is raised */ } o = ENVPTR->GetObjectArrayElement(ENVPAR fields,0); if (o == NULL) { return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR fields,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSQueryinterlace ( JNIEnv *env, jclass clss, jint vdata_id, jintArray interlace) /* OUT: int */ { intn rval; jint * theArg; jboolean bb; theArg = ENVPTR->GetIntArrayElements(ENVPAR interlace,&bb); rval = VSQueryinterlace((int32) vdata_id, (int32 *)&(theArg[0])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR interlace,theArg,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR interlace,theArg,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSQueryname ( JNIEnv *env, jclass clss, jint vdata_id, jobjectArray vdata_name) /* OUT: String */ { intn rval; char *nm; jstring rstring; jclass jc; jobject o; jboolean bb; nm = (char *)malloc(VSNAMELENMAX+1); if (nm == NULL) { h4outOfMemory(env, "VSQueryname"); return JNI_FALSE; } rval = VSQueryname((int32) vdata_id, (char *)nm); nm[VSNAMELENMAX] = '\0'; if (rval == FAIL) { free(nm); return JNI_FALSE; } else { /* convert it to java string */ rstring = ENVPTR->NewStringUTF(ENVPAR nm); /* create a Java String object in the calling environment... */ jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { free(nm); return JNI_FALSE; /* exception is raised */ } o = ENVPTR->GetObjectArrayElement(ENVPAR vdata_name,0); if (o == NULL) { free(nm); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { free(nm); return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR vdata_name,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); free(nm); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSQueryref ( JNIEnv *env, jclass clss, jint vdata_id) { return (VSQueryref((int32)vdata_id)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSQuerytag ( JNIEnv *env, jclass clss, jint vdata_id) { return (VSQuerytag((int32)vdata_id)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VSQueryvsize ( JNIEnv *env, jclass clss, jint vdata_id, jintArray vdata_size) /* OUT: int */ { intn rval; jint * theArg; jboolean bb; theArg = ENVPTR->GetIntArrayElements(ENVPAR vdata_size,&bb); rval = VSQueryvsize((int32) vdata_id, (int32 *)&(theArg[0])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR vdata_size,theArg,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR vdata_size,theArg,0); return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfdfuImp.c0000644002344600011330000000361212326542262016347 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4NotImplemented( JNIEnv *env, char *functName); JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFUfptoimage ( JNIEnv *env, jclass clss, jint hdim, jint vdim, jfloat max, jfloat min, jfloatArray hscale, /* IN: float [] */ jfloatArray vscale, /* IN: float [] */ jfloatArray data, /* IN: float[][] -- > bytes? */ jbyteArray palette, /* IN: byte[] */ jstring outfile, /* IN */ jint ct_method, /* IN */ jint hres, /* IN */ jint vres, /* IN */ jint compress) /* IN */ { h4NotImplemented(env, "DFUfptoimage (windows)"); return JNI_TRUE; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfdfpalImp.c0000644002344600011330000001140512326542262016656 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFPaddpal ( JNIEnv *env, jclass clss, jstring filename, jbyteArray palette) /* IN: byte[] */ { intn rval; char * f; jbyte *dat; jboolean bb; f = (char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); dat = ENVPTR->GetByteArrayElements(ENVPAR palette,&bb); rval = DFPaddpal((char *)f, (VOIDP) dat); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); ENVPTR->ReleaseByteArrayElements(ENVPAR palette,dat,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFPgetpal ( JNIEnv *env, jclass clss, jstring filename, jbyteArray palette) /* OUT: byte[] */ { intn rval; char * f; jbyte *dat; jboolean bb; f = (char *) ENVPTR->GetStringUTFChars(ENVPAR filename, 0); dat = ENVPTR->GetByteArrayElements(ENVPAR palette, &bb); rval = DFPgetpal((char *)f, (VOIDP) dat); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); if (rval == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR palette, dat, JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR palette, dat, 0); return JNI_TRUE; } } JNIEXPORT jshort JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFPlastref ( JNIEnv *env, jobject obj) { return (DFPlastref( )); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFPnpals ( JNIEnv *env, jclass clss, jstring filename) { intn rval; char * f; f = (char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFPnpals((char *)f); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); return rval; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFPputpal ( JNIEnv *env, jclass clss, jstring filename, jbyteArray palette, /* IN: byte[] */ jint overwrite, jstring filemode) { intn rval; char * f; char * m; jbyte *dat; jboolean bb; f = (char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); m = (char *) ENVPTR->GetStringUTFChars(ENVPAR filemode,0); dat = ENVPTR->GetByteArrayElements(ENVPAR palette,&bb); rval = DFPputpal ((char *)f, (VOIDP) dat, (intn) overwrite, (char *)m); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); ENVPTR->ReleaseStringUTFChars(ENVPAR filemode,m); ENVPTR->ReleaseByteArrayElements(ENVPAR palette,dat,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFPreadref ( JNIEnv *env, jclass clss, jstring filename, jshort ref) { intn rval; char * f; f = (char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFPreadref((char *)f, (uint16) ref); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jshort JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFPrestart ( JNIEnv *env, jobject obj) { return (DFPrestart( )); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_DFPwriteref ( JNIEnv *env, jclass clss, jstring filename, jshort ref) { intn rval; char * f; f = (char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = DFPwriteref((char *)f, (uint16) ref); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfnativeImp.c0000644002344600011330000007742512326542262017074 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This module contains the implementation of all the native methods * used for number conversion. This is represented by the Java * class HDFNativeData. * * These routines convert one dimensional arrays of bytes into * one-D arrays of other types (int, float, etc) and vice versa. * * These routines are called from the Java parts of the Java-C * interface. * * ***Important notes: * * 1. These routines are designed to be portable--they use the * C compiler to do the required native data manipulation. * 2. These routines copy the data at least once -- a serious * but unavoidable performance hit. */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4outOfMemory( JNIEnv *env, char *functName); extern jboolean h4JNIFatalError( JNIEnv *env, char *functName); extern jboolean h4raiseException( JNIEnv *env, char *message); /* returns int [] */ JNIEXPORT jintArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToInt___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jintArray rarray; int blen; jint *iarray; jboolean bb; char *bp; jint *iap; int ii; int len; if (bdata == NULL) { h4raiseException( env, "byteToInt: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToInt: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jint); rarray = ENVPTR->NewIntArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToInt" ); return NULL; } iarray = ENVPTR->GetIntArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToInt: pin iarray failed"); return NULL; } bp = (char *)barr; iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jint *)bp; iap++; bp += sizeof(jint); } ENVPTR->ReleaseIntArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns float [] */ JNIEXPORT jfloatArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToFloat___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jfloatArray rarray; int blen; jfloat *farray; jboolean bb; char *bp; jfloat *iap; int ii; int len; if (bdata == NULL) { h4raiseException( env, "byteToFloat: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToFloat: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jfloat); rarray = ENVPTR->NewFloatArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToFloat" ); return NULL; } farray = ENVPTR->GetFloatArrayElements(ENVPAR rarray,&bb); if (farray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToFloat: pin farray failed"); return NULL; } bp = (char *)barr; iap = farray; for (ii = 0; ii < len; ii++) { *iap = *(jfloat *)bp; iap++; bp += sizeof(jfloat); } ENVPTR->ReleaseFloatArrayElements(ENVPAR rarray,farray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns short [] */ JNIEXPORT jshortArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToShort___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jshortArray rarray; int blen; jshort *sarray; jboolean bb; char *bp; jshort *iap; int ii; int len; if (bdata == NULL) { h4raiseException( env, "byteToShort: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToShort: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jshort); rarray = ENVPTR->NewShortArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToShort" ); return NULL; } sarray = ENVPTR->GetShortArrayElements(ENVPAR rarray,&bb); if (sarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToShort: pin sarray failed"); return NULL; } bp = (char *)barr; iap = sarray; for (ii = 0; ii < len; ii++) { *iap = *(jshort *)bp; iap++; bp += sizeof(jshort); } ENVPTR->ReleaseShortArrayElements(ENVPAR rarray,sarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns long [] */ JNIEXPORT jlongArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToLong___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jlongArray rarray; int blen; jlong *larray; jboolean bb; char *bp; jlong *iap; int ii; int len; if (bdata == NULL) { h4raiseException( env, "byteToLong: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToLong: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jlong); rarray = ENVPTR->NewLongArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToLong" ); return NULL; } larray = ENVPTR->GetLongArrayElements(ENVPAR rarray,&bb); if (larray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToLong: pin larray failed"); return NULL; } bp = (char *)barr; iap = larray; for (ii = 0; ii < len; ii++) { *iap = *(jlong *)bp; iap++; bp += sizeof(jlong); } ENVPTR->ReleaseLongArrayElements(ENVPAR rarray,larray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns double [] */ JNIEXPORT jdoubleArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToDouble___3B ( JNIEnv *env, jclass clss, jbyteArray bdata) /* IN: array of bytes */ { jbyte *barr; jdoubleArray rarray; int blen; jdouble *darray; jboolean bb; char *bp; jdouble *iap; int ii; int len; if (bdata == NULL) { h4raiseException( env, "byteToDouble: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToDouble: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); len = blen/sizeof(jdouble); rarray = ENVPTR->NewDoubleArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToDouble" ); return NULL; } darray = ENVPTR->GetDoubleArrayElements(ENVPAR rarray,&bb); if (darray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToDouble: pin darray failed"); return NULL; } bp = (char *)barr; iap = darray; for (ii = 0; ii < len; ii++) { *iap = *(jdouble *)bp; iap++; bp += sizeof(jdouble); } ENVPTR->ReleaseDoubleArrayElements(ENVPAR rarray,darray,0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns int [] */ JNIEXPORT jintArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToInt__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jintArray rarray; int blen; jint *iarray; jint *iap; int ii; jboolean bb; if (bdata == NULL) { h4raiseException( env, "byteToInt: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToInt: pin failed"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*sizeof(jint))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToInt: getLen failed"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewIntArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToInt" ); return NULL; } iarray = ENVPTR->GetIntArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToInt: pin iarray failed"); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jint *)bp; iap++; bp += sizeof(jint); } ENVPTR->ReleaseIntArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns short [] */ JNIEXPORT jshortArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToShort__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jshortArray rarray; int blen; jshort *iarray; jshort *iap; int ii; jboolean bb; if (bdata == NULL) { h4raiseException( env, "byteToShort: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToShort: getByte failed?"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*(sizeof(jshort)))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4raiseException( env, "byteToShort: start or len is out of bounds"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewShortArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToShort" ); return NULL; } iarray = ENVPTR->GetShortArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToShort: getShort failed?"); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jshort *)bp; iap++; bp += sizeof(jshort); } ENVPTR->ReleaseShortArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns float [] */ JNIEXPORT jfloatArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToFloat__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jfloatArray rarray; int blen; jfloat *iarray; jfloat *iap; int ii; jboolean bb; if (bdata == NULL) { h4raiseException( env, "byteToFloat: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToFloat: getByte failed?"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*(sizeof(jfloat)))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4raiseException( env, "byteToFloat: start or len is out of bounds"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewFloatArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToFloat" ); return NULL; } iarray = ENVPTR->GetFloatArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToFloat: getFloat failed?"); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jfloat *)bp; iap++; bp += sizeof(jfloat); } ENVPTR->ReleaseFloatArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns long [] */ JNIEXPORT jlongArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToLong__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jlongArray rarray; int blen; jlong *iarray; jlong *iap; int ii; jboolean bb; if (bdata == NULL) { h4raiseException( env, "byteToLong: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToLong: getByte failed?"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*(sizeof(jlong)))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4raiseException( env, "byteToLong: start or len is out of bounds"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewLongArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToLong" ); return NULL; } iarray = ENVPTR->GetLongArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4JNIFatalError( env, "byteToLong: getLong failed?"); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jlong *)bp; iap++; bp += sizeof(jlong); } ENVPTR->ReleaseLongArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns double [] */ JNIEXPORT jdoubleArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToDouble__II_3B ( JNIEnv *env, jclass clss, jint start, jint len, jbyteArray bdata) /* IN: array of bytes */ { char *bp; jbyte *barr; jdoubleArray rarray; int blen; jdouble *iarray; jdouble *iap; int ii; jboolean bb; if (bdata == NULL) { h4raiseException( env, "byteToDouble: bdata is NULL?"); return NULL; } barr = ENVPTR->GetByteArrayElements(ENVPAR bdata,&bb); if (barr == NULL) { h4JNIFatalError( env, "byteToDouble: getByte failed?"); return NULL; } blen = ENVPTR->GetArrayLength(ENVPAR bdata); if ((start < 0) || ((int)(start + (len*(sizeof(jdouble)))) > blen)) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4raiseException( env, "byteToDouble: start or len is out of bounds"); return NULL; } bp = (char *)barr + start; rarray = ENVPTR->NewDoubleArray(ENVPAR len); if (rarray == NULL) { ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); h4outOfMemory( env, "byteToDouble" ); return NULL; } iarray = ENVPTR->GetDoubleArrayElements(ENVPAR rarray,&bb); if (iarray == NULL) { h4JNIFatalError( env, "byteToDouble: getDouble failed?"); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return NULL; } iap = iarray; for (ii = 0; ii < len; ii++) { *iap = *(jdouble *)bp; iap++; bp += sizeof(jdouble); } ENVPTR->ReleaseDoubleArrayElements(ENVPAR rarray,iarray, 0); ENVPTR->ReleaseByteArrayElements(ENVPAR bdata,barr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_intToByte__II_3I (JNIEnv *env, jclass clss, jint start, jint len, jintArray idata) /* IN: array of int */ { jint *ip; jint *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { int ival; char bytes[4]; } u; if (idata == NULL) { h4raiseException( env, "intToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetIntArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h4JNIFatalError( env, "intToByte: getInt failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseIntArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4raiseException( env, "intToByte: start or len is out of bounds"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jint); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4outOfMemory( env, "intToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4JNIFatalError( env, "intToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jint); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseIntArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_shortToByte__II_3S ( JNIEnv *env, jclass clss, jint start, jint len, jshortArray idata) /* IN: array of short */ { jshort *ip; jshort *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { short ival; char bytes[4]; } u; if (idata == NULL) { h4raiseException( env, "shortToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetShortArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h4JNIFatalError( env, "shortToByte: getShort failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseShortArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4raiseException( env, "shortToByte: start or len is out of bounds"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jshort); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseShortArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4outOfMemory( env, "shortToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseShortArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4JNIFatalError( env, "shortToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jshort); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseShortArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_floatToByte__II_3F ( JNIEnv *env, jclass clss, jint start, jint len, jfloatArray idata) /* IN: array of float */ { jfloat *ip; jfloat *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { float ival; char bytes[4]; } u; if (idata == NULL) { h4raiseException( env, "floatToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetFloatArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h4JNIFatalError( env, "floatToByte: getFloat failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseFloatArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4raiseException( env, "floatToByte: start or len is out of bounds"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jfloat); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseFloatArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4outOfMemory( env, "floatToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseFloatArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4JNIFatalError( env, "floatToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jfloat); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseFloatArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_doubleToByte__II_3D ( JNIEnv *env, jclass clss, jint start, jint len, jdoubleArray idata) /* IN: array of double */ { jdouble *ip; jdouble *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { double ival; char bytes[8]; } u; if (idata == NULL) { h4raiseException( env, "doubleToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetDoubleArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h4JNIFatalError( env, "doubleToByte: getDouble failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4raiseException( env, "doubleToByte: start or len is out of bounds"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jdouble); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4outOfMemory( env, "doubleToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4JNIFatalError( env, "doubleToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jdouble); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseDoubleArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_longToByte__II_3J ( JNIEnv *env, jclass clss, jint start, jint len, jlongArray idata) /* IN: array of long */ { jlong *ip; jlong *iarr; int ilen; jbyteArray rarray; int blen; jbyte *barray; jbyte *bap; jboolean bb; int ii; int ij; union things { jlong ival; char bytes[8]; } u; if (idata == NULL) { h4raiseException( env, "longToByte: idata is NULL?"); return NULL; } iarr = ENVPTR->GetLongArrayElements(ENVPAR idata,&bb); if (iarr == NULL) { h4JNIFatalError( env, "longToByte: getLong failed?"); return NULL; } ilen = ENVPTR->GetArrayLength(ENVPAR idata); if ((start < 0) || (((start + len)) > ilen)) { ENVPTR->ReleaseLongArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4raiseException( env, "longToByte: start or len is out of bounds?\n"); return NULL; } ip = iarr + start; blen = ilen * sizeof(jlong); rarray = ENVPTR->NewByteArray(ENVPAR blen); if (rarray == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4outOfMemory( env, "longToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { ENVPTR->ReleaseLongArrayElements(ENVPAR idata,iarr,JNI_ABORT); h4JNIFatalError( env, "longToByte: getByte failed?"); return NULL; } bap = barray; for (ii = 0; ii < len; ii++) { u.ival = *ip++; for (ij = 0; ij < sizeof(jlong); ij++) { *bap = u.bytes[ij]; bap++; } } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); ENVPTR->ReleaseLongArrayElements(ENVPAR idata,iarr,JNI_ABORT); return rarray; } /******/ /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_intToByte__I ( JNIEnv *env, jclass clss, jint idata) /* IN: int */ { jbyteArray rarray; jbyte *barray; jbyte *bap; int ij; jboolean bb; union things { int ival; char bytes[sizeof(int)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jint)); if (rarray == NULL) { h4outOfMemory( env, "intToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h4JNIFatalError( env, "intToByte: getByte failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jint); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_floatToByte__F ( JNIEnv *env, jclass clss, jfloat idata) /* IN: int */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { float ival; char bytes[sizeof(float)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jfloat)); if (rarray == NULL) { h4outOfMemory( env, "floatToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h4JNIFatalError( env, "floatToByte: getByte failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jfloat); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_shortToByte__S ( JNIEnv *env, jclass clss, jshort idata) /* IN: short */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { short ival; char bytes[sizeof(short)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jshort)); if (rarray == NULL) { h4outOfMemory( env, "shortToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h4JNIFatalError( env, "shortToByte: getShort failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jshort); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_doubleToByte__D ( JNIEnv *env, jclass clss, jdouble idata) /* IN: double */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { double ival; char bytes[sizeof(double)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jdouble)); if (rarray == NULL) { h4outOfMemory( env, "doubleToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h4JNIFatalError( env, "doubleToByte: getDouble failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jdouble); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_longToByte__J ( JNIEnv *env, jclass clss, jlong idata) /* IN: array of long */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { jlong ival; char bytes[sizeof(jlong)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jlong)); if (rarray == NULL) { h4outOfMemory( env, "longToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h4JNIFatalError( env, "longToByte: getLong failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jlong); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } /* returns byte [] */ JNIEXPORT jbyteArray JNICALL Java_ncsa_hdf_hdflib_HDFNativeData_byteToByte__B ( JNIEnv *env, jclass clss, jbyte idata) /* IN: array of long */ { jbyteArray rarray; jbyte *barray; jbyte *bap; jboolean bb; int ij; union things { jbyte ival; char bytes[sizeof(jbyte)]; } u; rarray = ENVPTR->NewByteArray(ENVPAR sizeof(jbyte)); if (rarray == NULL) { h4outOfMemory( env, "byteToByte" ); return NULL; } barray = ENVPTR->GetByteArrayElements(ENVPAR rarray,&bb); if (barray == NULL) { h4JNIFatalError( env, "byteToByte: getByte failed?"); return NULL; } bap = barray; u.ival = idata; for (ij = 0; ij < sizeof(jbyte); ij++) { *bap = u.bytes[ij]; bap++; } ENVPTR->ReleaseByteArrayElements(ENVPAR rarray,(jbyte *)barray, 0); return rarray; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfsdsImp.c0000644002344600011330000013510212326542262016362 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "mfhdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4outOfMemory( JNIEnv *env, char *functName); extern jboolean makeChunkInfo( JNIEnv *env, jobject chunkobj, int32 flgs, HDF_CHUNK_DEF *cinf); extern jboolean getNewCompInfo( JNIEnv *env, jobject ciobj, comp_info *cinf); extern jboolean setNewCompInfo( JNIEnv *env, jobject ciobj, comp_coder_t coder, comp_info *cinf); extern jboolean getChunkInfo( JNIEnv *env, jobject chunkobj, HDF_CHUNK_DEF *cinf); JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDstart ( JNIEnv *env, jclass clss, jstring filename, jint access) { int32 sdid; char *fname; fname =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); sdid = SDstart(fname, (int32)access); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,fname); return sdid; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDend ( JNIEnv *env, jclass clss, jint sdid) { int32 retVal; retVal = SDend((int32)sdid); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDfileinfo ( JNIEnv *env, jclass clss, jint sdid, jintArray argv) /* OUT: ndatasets, nglobalattr */ { int32 retVal; int32 * theArray; jboolean bb; theArray = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); retVal = SDfileinfo((int32)sdid, &(theArray[0]), &(theArray[1])); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,(jint *)theArray,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,(jint *)theArray,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDselect ( JNIEnv *env, jclass clss, jint sdid, jint index) { return (SDselect((int32)sdid, (int32)index)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDnametoindex ( JNIEnv *env, jclass clss, jint sdid, jstring name) { int32 retVal; char *cname; cname =(char *) ENVPTR->GetStringUTFChars(ENVPAR name,0); /* select the dataset */ retVal = SDnametoindex((int32)sdid, cname); ENVPTR->ReleaseStringUTFChars(ENVPAR name,cname); return retVal; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetinfo ( JNIEnv *env, jclass clss, jint sdsid, jobjectArray name, /* OUT: String */ jintArray dimsizes, /* OUT: int[] */ jintArray argv) /* OUT: rank, NT, nattr */ { int32 retVal; jclass jc; jstring str; jboolean bb; jobject o; char *cname; /* variables of infomation */ int32 *dims; int32 *theArgs; cname = (char *)malloc(MAX_NC_NAME+1); if (cname == NULL) { h4outOfMemory(env, "SDgetinfo"); return FAIL; } dims = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR dimsizes,&bb); theArgs = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); retVal = SDgetinfo((int32)sdsid, cname, &(theArgs[0]), dims, &(theArgs[1]), &(theArgs[2])); cname[MAX_NC_NAME] = '\0'; if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes,(jint *)dims,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR argv,(jint *)theArgs,JNI_ABORT); free(cname); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes,(jint *)dims,0); ENVPTR->ReleaseIntArrayElements(ENVPAR argv,(jint *)theArgs,0); str = ENVPTR->NewStringUTF(ENVPAR cname); o = ENVPTR->GetObjectArrayElement(ENVPAR name,0); if (o == NULL) { free(cname); return JNI_FALSE; } jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { free(cname); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { free(cname); return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR name,0,(jobject)str); ENVPTR->DeleteLocalRef(ENVPAR o); free(cname); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDreaddata ( JNIEnv *env, jclass clss, jint sdsid, jintArray start, jintArray stride, jintArray count, jbyteArray data) { int32 retVal; int32 *strt; int32 *strd; int32 *cnt; jbyte *d; jboolean bb; strt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR start,&bb); if (stride != NULL) { strd = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); } else { strd = (int32 *)NULL; } cnt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR count,&bb); /* assume that 'data' is big enough */ d = (jbyte *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR data,&bb); retVal = SDreaddata((int32)sdsid, strt, strd, cnt, d); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,JNI_ABORT); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,JNI_ABORT); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,JNI_ABORT); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,0); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,0); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,0); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDendaccess ( JNIEnv *env, jclass clss, jint sdsid) { int32 retVal; retVal = SDendaccess((int32)sdsid); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetdimid ( JNIEnv *env, jclass clss, jint sdsid, jint index) { return (SDgetdimid((int32)sdsid, (int32)index)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDdiminfo ( JNIEnv *env, jclass clss, jint dimid, jobjectArray dimname, /* OUT: String */ jintArray argv) /* OUT: count, NT, nattrs */ { int32 retVal; jint *theArgs; jclass Sjc; jstring str; char name[256]; /* what is the correct constant??? */ jboolean bb; jobject o; theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); retVal = SDdiminfo((int32)dimid, name, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1]),(int32 *)&(theArgs[2])); name[255] = '\0'; if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); str = ENVPTR->NewStringUTF(ENVPAR name); o = ENVPTR->GetObjectArrayElement(ENVPAR dimname,0); if (o == NULL) { return JNI_FALSE; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR dimname,0,(jobject)str); ENVPTR->DeleteLocalRef(ENVPAR o); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDidtoref ( JNIEnv *env, jclass clss, jint sdsid) { return(SDidtoref((int32)sdsid)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDreftoindex ( JNIEnv *env, jclass clss, jint sdid, jint ref) { return(SDreftoindex((int32)sdid, (int32)ref)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDattrinfo ( JNIEnv *env, jclass clss, jint id, jint index, jobjectArray name, /* OUT: String */ jintArray argv) /* OUT: NT, count */ { int32 retVal; jint *theArgs; jboolean bb; jclass Sjc; jstring str; jobject o; char nam[256]; /* what is the correct constant??? */ theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); retVal = SDattrinfo((int32)id, (int32)index, nam, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1])); nam[255] = '\0'; if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); str = ENVPTR->NewStringUTF(ENVPAR nam); o = ENVPTR->GetObjectArrayElement(ENVPAR name,0); if (o == NULL) { return JNI_FALSE; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR name,0,(jobject)str); ENVPTR->DeleteLocalRef(ENVPAR o); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDreadattr ( JNIEnv *env, jclass clss, jint id, jint index, jbyteArray dat) { int32 retVal; jbyte * s; jboolean bb; s = ENVPTR->GetByteArrayElements(ENVPAR dat,&bb); retVal = SDreadattr((int32)id,(int32)index,s); if (retVal == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR dat,s,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR dat,s,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDfindattr ( JNIEnv *env, jclass clss, jint id, jstring name) { int32 retVal; char *cname; cname =(char *) ENVPTR->GetStringUTFChars(ENVPAR name,0); retVal = SDfindattr((int32)id, cname); ENVPTR->ReleaseStringUTFChars(ENVPAR name,cname); return retVal; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDiscoordvar ( JNIEnv *env, jclass clss, jint sdsid) { int32 retVal; retVal = SDiscoordvar((int32)sdsid); if (retVal == FALSE) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetcal ( JNIEnv *env, jclass clss, jint sdsid, jdoubleArray argv, /* OUT: Cal, Cal_err, Offset, Offset_err */ jintArray nt) /* OUT: NT */ { int32 retVal; jdouble *theArgs; jint *theNT; jboolean bb; theArgs = ENVPTR->GetDoubleArrayElements(ENVPAR argv,&bb); theNT = ENVPTR->GetIntArrayElements(ENVPAR nt,&bb); retVal = SDgetcal((int32)sdsid, (float64 *)&(theArgs[0]), (float64 *)&(theArgs[1]), (float64 *)&(theArgs[2]), (float64 *)&(theArgs[3]), (int32 *)&(theNT[0])); if (retVal==FAIL) { ENVPTR->ReleaseDoubleArrayElements(ENVPAR argv,theArgs,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR nt,theNT,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseDoubleArrayElements(ENVPAR argv,theArgs,0); ENVPTR->ReleaseIntArrayElements(ENVPAR nt,theNT,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetdatastrs ( JNIEnv *env, jclass clss, jint sdsid, jobjectArray strings, /* OUT: label, unit, format, coordsys */ jint len) /* IN */ { int32 retVal; jclass Sjc; jstring str; jobject o; jboolean bb; jstring label,unit,format,coordsys; char *labVal; char *unitVal; char *fmtVal; char *coordsysVal; int i; Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { return JNI_FALSE; } for (i = 0; i < 4; i++) { o = ENVPTR->GetObjectArrayElement(ENVPAR strings,i); if (o == NULL) { continue; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { /* exception */ return JNI_FALSE; } ENVPTR->DeleteLocalRef(ENVPAR o); } label = (jstring)ENVPTR->GetObjectArrayElement(ENVPAR strings,0); /* allocate space */ if (label == NULL) { labVal = NULL; /* don't read label */ } else { labVal = (char *)HDmalloc(len+1); if (labVal == NULL) { h4outOfMemory(env, "SDgetdatastrs"); return JNI_FALSE; } } ENVPTR->DeleteLocalRef(ENVPAR label); unit = (jstring)ENVPTR->GetObjectArrayElement(ENVPAR strings,1); if (unit == NULL) { unitVal = NULL; } else { unitVal = (char *)HDmalloc(len+1); if (unitVal == NULL) { if (labVal != NULL) HDfree(labVal); h4outOfMemory(env, "SDgetdatastrs"); return JNI_FALSE; } } ENVPTR->DeleteLocalRef(ENVPAR unit); format = (jstring)ENVPTR->GetObjectArrayElement(ENVPAR strings,2); if (format == NULL) { fmtVal = NULL; } else { fmtVal = (char *)HDmalloc(len+1); if (fmtVal == NULL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); h4outOfMemory(env, "SDgetdatastrs"); return JNI_FALSE; } } ENVPTR->DeleteLocalRef(ENVPAR format); coordsys = (jstring)ENVPTR->GetObjectArrayElement(ENVPAR strings,3); if (coordsys == NULL) { coordsysVal = NULL; } else { coordsysVal = (char *)HDmalloc(len+1); if ( coordsysVal == NULL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); h4outOfMemory(env, "SDgetdatastrs"); return JNI_FALSE; } } ENVPTR->DeleteLocalRef(ENVPAR coordsys); retVal = SDgetdatastrs((int32)sdsid, labVal, unitVal, fmtVal, coordsysVal,(int32)len); if (retVal==FAIL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); if (coordsysVal != NULL) HDfree(coordsysVal); return JNI_FALSE; } else { Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); if (coordsysVal != NULL) HDfree(coordsysVal); h4outOfMemory(env, "SDgetdatastrs"); return JNI_FALSE; } if (labVal != NULL) { labVal[len] = '\0'; str = ENVPTR->NewStringUTF(ENVPAR labVal); if (str != NULL) { ENVPTR->SetObjectArrayElement(ENVPAR strings,0,(jobject)str); } HDfree(labVal); } if (unitVal != NULL) { unitVal[len] = '\0'; str = ENVPTR->NewStringUTF(ENVPAR unitVal); if (str != NULL) { ENVPTR->SetObjectArrayElement(ENVPAR strings,1,(jobject)str); } HDfree(unitVal); } if (fmtVal != NULL) { fmtVal[len] = '\0'; str = ENVPTR->NewStringUTF(ENVPAR fmtVal); if (str != NULL) { ENVPTR->SetObjectArrayElement(ENVPAR strings,2,(jobject)str); } HDfree(fmtVal); } if (coordsysVal != NULL) { coordsysVal[len] = '\0'; str = ENVPTR->NewStringUTF(ENVPAR coordsysVal); if (str != NULL) { ENVPTR->SetObjectArrayElement(ENVPAR strings,3,(jobject)str); } HDfree(coordsysVal); } return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetdimstrs ( JNIEnv *env, jclass clss, jint dimid, jobjectArray argv, /* OUT: String label, unit, format, */ jint len) { int32 retVal; char *labVal, *unitVal, *fmtVal; jclass Sjc; jstring str; jobject o; jboolean bb; o = ENVPTR->GetObjectArrayElement(ENVPAR argv,0); if (o == NULL) { labVal = NULL; /* don't read label */ } else { labVal = (char *)HDmalloc(len+1); if (labVal == NULL) { h4outOfMemory(env, "SDgetdimstrs"); return JNI_FALSE; } } ENVPTR->DeleteLocalRef(ENVPAR o); o = ENVPTR->GetObjectArrayElement(ENVPAR argv,1); if (o == NULL) { unitVal = NULL; } else { unitVal = (char *)HDmalloc(len+1); if (unitVal == NULL) { if (labVal != NULL) HDfree(labVal); h4outOfMemory(env, "SDgetdimstrs"); return JNI_FALSE; } } ENVPTR->DeleteLocalRef(ENVPAR o); o = ENVPTR->GetObjectArrayElement(ENVPAR argv,2); if (o == NULL) { fmtVal = NULL; } else { fmtVal = (char *)HDmalloc(len+1); if (fmtVal == NULL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); h4outOfMemory(env, "SDgetdimstrs"); return JNI_FALSE; } } ENVPTR->DeleteLocalRef(ENVPAR o); retVal = SDgetdimstrs((int32)dimid, labVal, unitVal, fmtVal, (int32)len); if (retVal==FAIL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); return JNI_FALSE; } else { Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); return JNI_FALSE; } if (labVal != NULL) { o = ENVPTR->GetObjectArrayElement(ENVPAR argv,0); if (o == NULL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); return JNI_FALSE; } labVal[len] = '\0'; str = ENVPTR->NewStringUTF(ENVPAR labVal); ENVPTR->SetObjectArrayElement(ENVPAR argv,0,(jobject)str); ENVPTR->DeleteLocalRef(ENVPAR o); } if (unitVal != NULL) { o = ENVPTR->GetObjectArrayElement(ENVPAR argv,1); if (o == NULL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); return JNI_FALSE; } unitVal[len] = '\0'; str = ENVPTR->NewStringUTF(ENVPAR unitVal); ENVPTR->SetObjectArrayElement(ENVPAR argv,1,(jobject)str); ENVPTR->DeleteLocalRef(ENVPAR o); } if (fmtVal != NULL) { o = ENVPTR->GetObjectArrayElement(ENVPAR argv,2); if (o == NULL) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); return JNI_FALSE; } fmtVal[len] = '\0'; str = ENVPTR->NewStringUTF(ENVPAR fmtVal); ENVPTR->SetObjectArrayElement(ENVPAR argv,2,(jobject)str); ENVPTR->DeleteLocalRef(ENVPAR o); } if (labVal != NULL) HDfree(labVal); if (unitVal != NULL) HDfree(unitVal); if (fmtVal != NULL) HDfree(fmtVal); return JNI_TRUE; } } /*** note this is returning data of many types in an array of bytes.... */ /* not sure how well this will work for java programs .... */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetdimscale ( JNIEnv *env, jclass clss, jint dimid, jbyteArray data) /* OUT: byte? */ { int32 retVal; jbyte *datVal; jboolean bb; datVal = ENVPTR->GetByteArrayElements(ENVPAR data,&bb); retVal = SDgetdimscale((int32)dimid, (char *)datVal); if (retVal==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR data,datVal,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR data,datVal,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetfillvalue ( JNIEnv *env, jclass clss, jint sdsid, jbyteArray data) /* OUT: byte? */ { int32 retVal; jbyte *datVal; jboolean bb; datVal = ENVPTR->GetByteArrayElements(ENVPAR data,&bb); retVal = SDgetfillvalue((int32)sdsid, (char *)datVal); if (retVal==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR data,datVal,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR data,datVal,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetrange ( JNIEnv *env, jclass clss, jint sdsid, jbyteArray max, /* OUT: byte[]? */ jbyteArray min) /* OUT: byte[] ? */ { int32 retVal; jbyte *minp, *maxp; jboolean bb; maxp = ENVPTR->GetByteArrayElements(ENVPAR max,&bb); minp = ENVPTR->GetByteArrayElements(ENVPAR min,&bb); retVal = SDgetrange((int32)sdsid, maxp, minp); if (retVal==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR max,maxp,JNI_ABORT); ENVPTR->ReleaseByteArrayElements(ENVPAR min,minp,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR max,maxp,0); ENVPTR->ReleaseByteArrayElements(ENVPAR min,minp,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDcreate ( JNIEnv *env, jclass clss, jint sd_id, jstring name, jint number_type, jint rank, jintArray dimsizes) /* IN: int[] */ { int32 rval; char * s; jint * dims; jboolean bb; s =(char *) ENVPTR->GetStringUTFChars(ENVPAR name,0); dims = ENVPTR->GetIntArrayElements(ENVPAR dimsizes,&bb); rval = SDcreate((int32) sd_id, (char *)s, (int32) number_type, (int32) rank, (int32 *)dims); ENVPTR->ReleaseStringUTFChars(ENVPAR name,s); if (rval==FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes,dims,JNI_ABORT); /* no write back */ } else { ENVPTR->ReleaseIntArrayElements(ENVPAR dimsizes,dims,0); /* do write back */ } return rval; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDisrecord ( JNIEnv *env, jclass clss, jint sdsid) { int32 rval; rval = SDisrecord((int32)sdsid); if (rval == TRUE) { return JNI_TRUE; } else { return JNI_FALSE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetattr (JNIEnv *env, jclass clss, jint s_id, jstring attr_name, jint num_type, jint count, jbyteArray values) /* IN: byte[]??? */ { intn rval; jboolean bb; char * s; jbyte * v; s =(char *) ENVPTR->GetStringUTFChars(ENVPAR attr_name,0); v = ENVPTR->GetByteArrayElements(ENVPAR values,&bb); rval = SDsetattr((int32) s_id, (char *)s, (int32) num_type, (int32) count, (VOIDP) v); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,s); if (rval==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR values,v,JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR values,v,0); /* do write back */ return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetcal ( JNIEnv *env, jclass clss, jint sds_id, jdouble cal, jdouble cal_err, jdouble offset, jdouble offset_err, jint number_type) { intn rval; rval = SDsetcal((int32) sds_id, (float64) cal, (float64) cal_err, (float64) offset, (float64) offset_err, (int32) number_type) ; if (rval==FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetdatastrs ( JNIEnv *env, jclass clss, jint sds_id, jstring label, jstring unit, jstring format, jstring coordsys) { intn rval; char * labstr; char * unstr; char * formstr; char * csstr; if (label == NULL) { labstr = NULL; } else { labstr =(char *) ENVPTR->GetStringUTFChars(ENVPAR label,0); } if (unit == NULL) { unstr = NULL; } else { unstr =(char *) ENVPTR->GetStringUTFChars(ENVPAR unit,0); } if (format == NULL) { formstr = NULL; } else { formstr =(char *) ENVPTR->GetStringUTFChars(ENVPAR format,0); } if (coordsys == NULL) { csstr = NULL; } else { csstr =(char *) ENVPTR->GetStringUTFChars(ENVPAR coordsys,0); } rval = SDsetdatastrs((int32) sds_id, labstr, unstr, formstr, csstr); if (labstr != NULL) ENVPTR->ReleaseStringUTFChars(ENVPAR label,labstr); if (unstr != NULL) ENVPTR->ReleaseStringUTFChars(ENVPAR unit,unstr); if (formstr != NULL) ENVPTR->ReleaseStringUTFChars(ENVPAR format,formstr); if (csstr != NULL) ENVPTR->ReleaseStringUTFChars(ENVPAR coordsys,csstr); if (rval==FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetdimname ( JNIEnv *env, jclass clss, jint dim_id, jstring dim_name) { intn rval; char * str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR dim_name,0); rval = SDsetdimname((int32) dim_id, str) ; ENVPTR->ReleaseStringUTFChars(ENVPAR dim_name,str); if (rval==FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetdimscale ( JNIEnv *env, jclass clss, jint dim_id, jint count, jint number_type, jbyteArray data) /* IN: byte[]???*/ { intn rval; jbyte *d; jboolean bb; d = ENVPTR->GetByteArrayElements(ENVPAR data,&bb); rval = SDsetdimscale((int32) dim_id, (int32) count, (int32) number_type, d) ; if (rval==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR data,d,JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR data,d,0); /* do write back */ return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetdimstrs ( JNIEnv *env, jclass clss, jint dim_id, jstring label, jstring unit, jstring format) { intn rval; char * l; char * u; char * f; l =(char *) ENVPTR->GetStringUTFChars(ENVPAR label,0); u =(char *) ENVPTR->GetStringUTFChars(ENVPAR unit,0); f =(char *) ENVPTR->GetStringUTFChars(ENVPAR format,0); rval = SDsetdimstrs((int32) dim_id, l, u, f); ENVPTR->ReleaseStringUTFChars(ENVPAR label,l); ENVPTR->ReleaseStringUTFChars(ENVPAR unit,u); ENVPTR->ReleaseStringUTFChars(ENVPAR format,f); if (rval==FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetexternalfile ( JNIEnv *env, jclass clss, jint sds_id, jstring filename, jint offset) { intn rval; char * f; f =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = SDsetexternalfile((int32) sds_id, f, (int32) offset); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,f); if (rval==FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetfillvalue ( JNIEnv *env, jclass clss, jint sds_id, jbyteArray fill_val) /* IN: ?? byte[] */ { intn rval; jboolean bb; jbyte * d; d = ENVPTR->GetByteArrayElements(ENVPAR fill_val,&bb); rval = SDsetfillvalue((int32) sds_id, (VOIDP) d) ; if (rval==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR fill_val,d,JNI_ABORT); /* no write back */ return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR fill_val,d,0); /* do write back */ return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetrange ( JNIEnv *env, jclass clss, jint sdsid, jbyteArray max, /* IN: byte[]? */ jbyteArray min) /* IN: byte[] ? */ { int32 retVal; jboolean bb; jbyte *minp, *maxp; maxp = ENVPTR->GetByteArrayElements(ENVPAR max,&bb); minp = ENVPTR->GetByteArrayElements(ENVPAR min,&bb); retVal = SDsetrange((int32)sdsid, maxp, minp); if (retVal==FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR max,maxp,JNI_ABORT); ENVPTR->ReleaseByteArrayElements(ENVPAR min,minp,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR max,maxp,0); ENVPTR->ReleaseByteArrayElements(ENVPAR min,minp,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDwritedata ( JNIEnv *env, jclass clss, jint sdsid, jintArray start, jintArray stride, jintArray edge, jbyteArray data) { int32 retVal; int32 *strt; int32 *strd; int32 *e; jbyte *d; jboolean bb; strt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR start,&bb); if (stride != NULL ) { strd = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); } else { strd = (int32 *)NULL; } e = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR edge,&bb); /* assume that 'data' is big enough */ d = (jbyte *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR data,&bb); retVal = SDwritedata((int32)sdsid, strt, strd, e, d); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,JNI_ABORT); if (stride != NULL ) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,JNI_ABORT); } ENVPTR->ReleaseIntArrayElements(ENVPAR edge,(jint *)e,JNI_ABORT); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,0); if (stride != NULL ) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,0); } ENVPTR->ReleaseIntArrayElements(ENVPAR edge,(jint *)e,0); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,0); return JNI_TRUE; } } /* new stuff for chunking */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetnbitdataset ( JNIEnv *env, jclass clss, jint id, jint start_bit, jint bit_len, jint sign_ext, jint fill_one) { intn rval; rval = SDsetnbitdataset((int32)id, (intn) start_bit, (intn) bit_len, (intn) sign_ext, (intn) fill_one); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetcompress ( JNIEnv *env, jclass clss, jint id, jint type, jobject cinfo) /* IN: CompInfo */ { intn rval; comp_info cinf; jboolean bval; /* bzero((char *)&cinf, sizeof(cinf)); */ bval = getNewCompInfo(env, cinfo,&cinf); /* or is it New ? */ /* check for success... */ rval = SDsetcompress((int32) id, (comp_coder_t) type, (comp_info *)&cinf); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetcompinfo ( JNIEnv *env, jclass clss, jint id, jobject cinfo) /* out: CompInfo */ { intn rval; comp_coder_t coder; comp_info cinf; /* check for success... */ rval = SDgetcompinfo((int32) id, (comp_coder_t *) &coder, (comp_info *)&cinf); if (rval == FAIL) { return JNI_FALSE; } else { return setNewCompInfo(env, cinfo, coder, &cinf); } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetcompress ( JNIEnv *env, jclass clss, jint id, jobject cinfo) /* out: CompInfo */ { intn rval; comp_coder_t coder; comp_info cinf; /* check for success... */ rval = SDgetcompress((int32) id, (comp_coder_t *) &coder, (comp_info *)&cinf); if (rval == FAIL) { return JNI_FALSE; } else { return setNewCompInfo(env, cinfo, coder, &cinf); } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetaccesstype ( JNIEnv *env, jclass clss, jint id, jint accesstype ) { intn rval; rval = SDsetaccesstype( (int32) id, (uintn) accesstype ); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetblocksize ( JNIEnv *env, jclass clss, jint sdsid, jint block_size) { intn rval; rval = SDsetblocksize( (int32) sdsid, (int32) block_size ); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetfillmode ( JNIEnv *env, jclass clss, jint sdsid, jint fillmode ) { intn rval; rval = SDsetfillmode( (int32) sdsid, (intn) fillmode ); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetdimval_comp ( JNIEnv *env, jclass clss, jint sdsid, jint comp_mode ) { intn rval; rval = SDsetdimval_comp( (int32) sdsid, (intn) comp_mode ); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDisdimval_bwcomp ( JNIEnv *env, jclass clss, jint dimid ) { intn rval; rval = SDisdimval_bwcomp( (int32) dimid ); if (rval == SD_DIMVAL_BW_COMP) { return JNI_TRUE; } else if (rval == SD_DIMVAL_BW_INCOMP) { return JNI_FALSE; } else { /* exception? */ return JNI_FALSE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetchunk ( JNIEnv *env, jclass clss, jint sdsid, jobject chunk_def, /* IN: HDFChunkInfo */ jint flags) { intn rval; HDF_CHUNK_DEF c_def; jboolean bval; /* bzero((char *)&c_def, sizeof(c_def)); */ bval = getChunkInfo(env, chunk_def,&c_def); /* check results */ rval = SDsetchunk ((int32) sdsid, c_def, (int32) flags); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDgetchunkinfo ( JNIEnv *env, jclass clss, jint sdsid, jobject chunk_def, /* Out: HDFChunkInfo */ jintArray cflags) /* OUT: Integer */ { int32 rval; HDF_CHUNK_DEF cdef; jboolean stat; jint *flgs; jboolean bb; /* bzero((char *)&cdef, sizeof(cdef)); */ flgs = ENVPTR->GetIntArrayElements(ENVPAR cflags,&bb); rval = SDgetchunkinfo( (int32)sdsid, &cdef, (int32 *)&(flgs[0])); /* convert cdef to HDFchunkinfo */ if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR cflags,(jint *)flgs,JNI_ABORT); return JNI_FALSE; } else { stat = makeChunkInfo( env, chunk_def, (int32)*flgs, &cdef); ENVPTR->ReleaseIntArrayElements(ENVPAR cflags,(jint *)flgs,0); return stat/*JNI_TRUE*/; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDreadchunk ( JNIEnv *env, jclass clss, jint sdid, jintArray origin, /* IN: int[] */ jbyteArray dat) /* OUT: byte[] */ { int32 retVal; jbyte * s; jint *arr; jboolean bb; arr = ENVPTR->GetIntArrayElements(ENVPAR origin,&bb); s = ENVPTR->GetByteArrayElements(ENVPAR dat,&bb); retVal = SDreadchunk((int32)sdid,(int32 *)arr,s); ENVPTR->ReleaseIntArrayElements(ENVPAR origin,arr,JNI_ABORT); if (retVal == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR dat,s,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR dat,s,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDsetchunkcache ( JNIEnv *env, jclass clss, jint sdsid, jint maxcache, jint flags) { return ( SDsetchunkcache((int32)sdsid, (int32)maxcache, (int32)flags) ); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDwritechunk ( JNIEnv *env, jclass clss, jint sdid, jintArray index, /* IN: int[] */ jbyteArray dat) /* IN: byte[] */ { int32 retVal; jbyte * s; jint * arr; jboolean bb; s = ENVPTR->GetByteArrayElements(ENVPAR dat,&bb); arr = ENVPTR->GetIntArrayElements(ENVPAR index,&bb); retVal = SDwritechunk((int32)sdid,(int32 *)arr,(char *)s); ENVPTR->ReleaseByteArrayElements(ENVPAR dat,s,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR index,arr,JNI_ABORT); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDcheckempty ( JNIEnv *env, jclass clss, jint sdsid, jintArray emptySDS) /* OUT: 1 if sds is empty */ { int32 retVal; jboolean bb; /* variables of infomation */ intn *isempty; isempty = (intn *)ENVPTR->GetIntArrayElements(ENVPAR emptySDS,&bb); retVal = SDcheckempty((int32)sdsid, (intn *)isempty ); ENVPTR->ReleaseIntArrayElements(ENVPAR emptySDS,(jint *)isempty,0); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } /* //////////////////////////////////////////////////////////////////// // // // New APIs for read data from library // // Using SDreaddata(..., Object buf) requires function calls // // theArray.emptyBytes() and theArray.arrayify( buf), which // // triples the actual memory needed by the data set. // // Using the following APIs solves the problem. // // // //////////////////////////////////////////////////////////////////// */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDreaddata_1short ( JNIEnv *env, jclass clss, jint sdsid, jintArray start, jintArray stride, jintArray count, jshortArray data) { int32 retVal; int32 *strt; int32 *strd; int32 *cnt; jshort *d; jboolean bb; strt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR start,&bb); if (stride != NULL) { strd = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); } else { strd = (int32 *)NULL; } cnt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR count,&bb); /* assume that 'data' is big enough */ d = (jshort *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR data,&bb); retVal = SDreaddata((int32)sdsid, strt, strd, cnt, d); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,JNI_ABORT); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,JNI_ABORT); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,JNI_ABORT); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,0); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,0); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,0); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDreaddata_1int ( JNIEnv *env, jclass clss, jint sdsid, jintArray start, jintArray stride, jintArray count, jintArray data) { int32 retVal; int32 *strt; int32 *strd; int32 *cnt; jint *d; jboolean bb; strt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR start,&bb); if (stride != NULL) { strd = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); } else { strd = (int32 *)NULL; } cnt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR count,&bb); /* assume that 'data' is big enough */ d = (jint *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR data,&bb); retVal = SDreaddata((int32)sdsid, strt, strd, cnt, d); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,JNI_ABORT); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,JNI_ABORT); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,JNI_ABORT); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,0); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,0); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,0); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDreaddata_1long ( JNIEnv *env, jclass clss, jint sdsid, jintArray start, jintArray stride, jintArray count, jlongArray data) { int32 retVal; int32 *strt; int32 *strd; int32 *cnt; jlong *d; jboolean bb; strt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR start,&bb); if (stride != NULL) { strd = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); } else { strd = (int32 *)NULL; } cnt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR count,&bb); /* assume that 'data' is big enough */ d = (jlong *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR data,&bb); retVal = SDreaddata((int32)sdsid, strt, strd, cnt, d); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,JNI_ABORT); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,JNI_ABORT); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,JNI_ABORT); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,0); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,0); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,0); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDreaddata_1float ( JNIEnv *env, jclass clss, jint sdsid, jintArray start, jintArray stride, jintArray count, jfloatArray data) { int32 retVal; int32 *strt; int32 *strd; int32 *cnt; jfloat *d; jboolean bb; strt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR start,&bb); if (stride != NULL) { strd = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); } else { strd = (int32 *)NULL; } cnt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR count,&bb); /* assume that 'data' is big enough */ d = (jfloat *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR data,&bb); retVal = SDreaddata((int32)sdsid, strt, strd, cnt, d); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,JNI_ABORT); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,JNI_ABORT); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,JNI_ABORT); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,JNI_ABORT); return JNI_FALSE; } ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,0); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,0); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,0); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,0); return JNI_TRUE; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_SDreaddata_1double ( JNIEnv *env, jclass clss, jint sdsid, jintArray start, jintArray stride, jintArray count, jdoubleArray data) { int32 retVal; int32 *strt; int32 *strd; int32 *cnt; jdouble *d; jboolean bb; strt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR start,&bb); if (stride != NULL) { strd = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); } else { strd = (int32 *)NULL; } cnt = (int32 *)ENVPTR->GetIntArrayElements(ENVPAR count,&bb); /* assume that 'data' is big enough */ d = (jdouble *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR data,&bb); retVal = SDreaddata((int32)sdsid, strt, strd, cnt, d); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,JNI_ABORT); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,JNI_ABORT); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,JNI_ABORT); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR start,(jint *)strt,0); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,(jint *)strd,0); } ENVPTR->ReleaseIntArrayElements(ENVPAR count,(jint *)cnt,0); ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,d,0); return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfvqImp.c0000644002344600011330000000272612326542262016224 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VQueryref ( JNIEnv *env, jclass clss, jint vkey) { return VQueryref((int32) vkey); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_VQuerytag ( JNIEnv *env, jclass clss, jint vkey) { return VQuerytag((int32) vkey); } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfgrImp.c0000644002344600011330000005036112326542262016204 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "mfhdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif /* Name changed from MAX_GR_NAME to H4_MAX_GR_NAME in hdf4.2r2 */ #define MAX_GR_NAME H4_MAX_GR_NAME extern jboolean h4outOfMemory( JNIEnv *env, char *functName); extern jboolean makeChunkInfo( JNIEnv *env, jobject chunkobj, int32 flgs, HDF_CHUNK_DEF *cinf); extern jboolean getNewCompInfo( JNIEnv *env, jobject ciobj, comp_info *cinf); extern jboolean setNewCompInfo( JNIEnv *env, jobject ciobj, comp_coder_t coder, comp_info *cinf); extern jboolean getChunkInfo( JNIEnv *env, jobject chunkobj, HDF_CHUNK_DEF *cinf); JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRstart ( JNIEnv *env, jclass cls, jint file_id) { return (GRstart((int32) file_id)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRend ( JNIEnv *env, jclass cls, jint gr_id) { intn rval; rval = GRend((int32) gr_id); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRendaccess ( JNIEnv *env, jclass cls, jint gr_id) { intn rval; rval = GRendaccess((int32) gr_id); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRfileinfo ( JNIEnv *env, jclass cls, jint gr_id, jintArray argv) /* OUT: n_datasets, n_fileattrs */ { intn rval; jint *theArgs; jboolean bb; /* dummy */ theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); rval = GRfileinfo((int32) gr_id, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRselect ( JNIEnv *env, jclass cls, jint gr_id, jint index) { return (GRselect((int32) gr_id, (int32) index)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRnametoindex ( JNIEnv *env, jclass cls, jint gr_id, jstring gr_name) { int32 rval; char *str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR gr_name,0); rval = GRnametoindex((int32) gr_id, (char *)str); ENVPTR->ReleaseStringUTFChars(ENVPAR gr_name,str); return rval; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRgetchunkinfo ( JNIEnv *env, jclass cls, jint grsid, jobject chunk_def, /* Out: HDFChunkInfo */ jintArray cflags) /* OUT: Integer */ { int32 rval; HDF_CHUNK_DEF cdef; jboolean stat; jint *flgs; jboolean bb; /* bzero((char *)&cdef, sizeof(cdef)); */ flgs = ENVPTR->GetIntArrayElements(ENVPAR cflags,&bb); rval = GRgetchunkinfo( (int32)grsid, &cdef, (int32 *)&(flgs[0])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR cflags,(jint *)flgs,JNI_ABORT); return JNI_FALSE; } else { stat = JNI_TRUE; if (*flgs != 0) { /* convert cdef to HDFchunkinfo */ stat = makeChunkInfo( env, chunk_def, *flgs, &cdef); } ENVPTR->ReleaseIntArrayElements(ENVPAR cflags,(jint *)flgs,0); return stat/*JNI_TRUE*/; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRgetiminfo ( JNIEnv *env, jclass cls, jint ri_id, jobjectArray gr_name, /* OUT: String[0] */ jintArray argv, /* OUT: int ncomp, data_type, interlace, num_attrs */ jintArray dim_sizes) /* OUT: int[2] */ { intn rval; jint * dims; jint * theArgs; jclass Sjc; char *str; jstring rstring; jboolean bb; jobject o; str = (char *)HDmalloc(MAX_GR_NAME+1); if (str == NULL) { h4outOfMemory(env, "GRgetiminfo"); return JNI_FALSE; } /* check for out of memory error ... */ dims = ENVPTR->GetIntArrayElements(ENVPAR dim_sizes,&bb); theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); rval = GRgetiminfo((int32) ri_id, (char *)str, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1]), (int32 *)&(theArgs[2]), (int32 *)dims, (int32 *)&(theArgs[3])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR dim_sizes,dims,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); if (str != NULL) HDfree(str); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR dim_sizes,dims,0); ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); if (str != NULL) { str[MAX_GR_NAME] = '\0'; rstring = ENVPTR->NewStringUTF(ENVPAR str); o = ENVPTR->GetObjectArrayElement(ENVPAR gr_name,0); if (o == NULL) { return JNI_FALSE; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR gr_name,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); HDfree(str); } return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRreadimage ( JNIEnv *env, jclass cls, jint ri_id, jintArray start, /* IN: int[2] */ jintArray stride, /* IN: int[2] */ jintArray edge, /* IN: int[2] */ jbyteArray data) /* OUT: byte[] */ { intn rval; jbyte *arr; jint *strt; jint *strd; jint *edg; jboolean bb; arr = (jbyte *)ENVPTR->GetPrimitiveArrayCritical(ENVPAR data,&bb); strt = ENVPTR->GetIntArrayElements(ENVPAR start,&bb); if (stride == NULL) { strd = NULL; } else { strd = ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); } edg = ENVPTR->GetIntArrayElements(ENVPAR edge,&bb); if (strd == NULL) { rval = GRreadimage((int32) ri_id, (int32 *)strt, (int32 *)NULL, (int32 *)edg, (VOIDP) arr); } else { rval = GRreadimage((int32) ri_id, (int32 *)strt, (int32 *)strd, (int32 *)edg, (VOIDP) arr); } ENVPTR->ReleaseIntArrayElements(ENVPAR start,strt,JNI_ABORT); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,strd,JNI_ABORT); } ENVPTR->ReleaseIntArrayElements(ENVPAR edge,edg,JNI_ABORT); if (rval == FAIL) { ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,arr,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleasePrimitiveArrayCritical(ENVPAR data,arr,0); return JNI_TRUE; } } JNIEXPORT jshort JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRidtoref ( JNIEnv *env, jclass cls, jint gr_id) { return (GRidtoref((int32) gr_id)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRreftoindex ( JNIEnv *env, jclass cls, jint gr_id, jshort ref) { return (GRreftoindex((int32) gr_id, (uint16)ref)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRreqlutil ( JNIEnv *env, jclass cls, jint gr_id, jint interlace_mode) { intn rval; rval = GRreqlutil((int32) gr_id, (intn)interlace_mode); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRreqimageil ( JNIEnv *env, jclass cls, jint gr_id, jint interlace_mode) { intn rval; rval = GRreqimageil((int32) gr_id, (intn)interlace_mode); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRgetlutid ( JNIEnv *env, jclass cls, jint gr_id, jint index) { return (GRgetlutid((int32) gr_id, (int32)index)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRgetnluts ( JNIEnv *env, jclass cls, jint gr_id) { return (GRgetnluts((int32) gr_id)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRgetlutinfo ( JNIEnv *env, jclass cls, jint ri_id, jintArray argv) /* OUT: ncomp, data_type, interlace, num_entries */ { intn rval; jint * theArgs; jboolean bb; /* dummy */ theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); rval = GRgetlutinfo((int32) ri_id, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1]), (int32 *)&(theArgs[2]), (int32 *)&(theArgs[3])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRreadlut ( JNIEnv *env, jclass cls, jint pal_id, jbyteArray pal_data) /* OUT: byte[] */ { intn rval; jbyte *arr; jboolean bb; arr = ENVPTR->GetByteArrayElements(ENVPAR pal_data,&bb); rval = GRreadlut((int32) pal_id, (VOIDP) arr); if (rval == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR pal_data,arr,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR pal_data,arr,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRattrinfo ( JNIEnv *env, jclass cls, int gr_id, jint attr_index, jobjectArray name, /* OUT: String[] */ jintArray argv) /* OUT: data_type, length */ { int32 rval; char *str; jclass jc; jstring rstring; jint *theArgs; jboolean bb; jobject o; /* check for out of memory error ... */ str = (char *)HDmalloc(MAX_GR_NAME+1); if (str == NULL) { /* exception */ h4outOfMemory(env, "GRattrinfo"); return JNI_FALSE; } theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); rval = GRattrinfo((int32) gr_id, (int32) attr_index, (char *)str, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1])); if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); if (str != NULL) { str[MAX_GR_NAME] = '\0'; rstring = ENVPTR->NewStringUTF(ENVPAR str); o = ENVPTR->GetObjectArrayElement(ENVPAR name,0); if (o == NULL) { return JNI_FALSE; } jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR name,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); HDfree(str); } return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRgetattr ( JNIEnv *env, jclass cls, jint gr_id, jint attr_index, jbyteArray values) /* OUT: byte[] */ { intn rval; jbyte *arr; jboolean bb; arr = ENVPTR->GetByteArrayElements(ENVPAR values,&bb); rval = GRgetattr((int32) gr_id, (int32) attr_index, (VOIDP) arr); if (rval == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR values,arr,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR values,arr,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRfindattr ( JNIEnv *env, jclass cls, jint gr_id, jstring attr_name) /* IN */ { int32 rval; char *str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR attr_name,0); rval = GRfindattr((int32) gr_id, (char *)str); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,str); return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRcreate ( JNIEnv *env, jclass cls, jint gr_id, jstring name, jint ncomp, jint data_type, jint interlace_mode, jintArray dim_sizes) /* IN: int[2] */ { int32 rval; jint *dims; char *str; jboolean bb; dims = ENVPTR->GetIntArrayElements(ENVPAR dim_sizes,&bb); str =(char *) ENVPTR->GetStringUTFChars(ENVPAR name,0); rval = GRcreate( (int32) gr_id, (char *) str, (int32) ncomp, (int32) data_type, (int32) interlace_mode, (int32 *)dims); ENVPTR->ReleaseStringUTFChars(ENVPAR name,str); ENVPTR->ReleaseIntArrayElements(ENVPAR dim_sizes,dims,JNI_ABORT); return rval; } JNIEXPORT jshort JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRluttoref ( JNIEnv *env, jclass cls, jint pal_id) { return (GRluttoref((int32) pal_id)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRsetattr__ILjava_lang_String_2IILjava_lang_String_2 ( JNIEnv *env, jclass cls, jint gr_id, jstring attr_name, jint data_type, jint count, jstring values) /* IN: String */ { intn rval; char *str; char *val; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR attr_name,0); val =(char *) ENVPTR->GetStringUTFChars(ENVPAR values,0); rval = GRsetattr((int32) gr_id, (char *)str, (int32) data_type, (int32) count, (VOIDP) val); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,str); ENVPTR->ReleaseStringUTFChars(ENVPAR values,val); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRsetattr__ILjava_lang_String_2II_3B ( JNIEnv *env, jclass cls, jint gr_id, jstring attr_name, jint data_type, jint count, jbyteArray values) /* IN: byte[] */ { intn rval; jbyte *arr; char *str; jboolean bb; arr = ENVPTR->GetByteArrayElements(ENVPAR values,&bb); str =(char *) ENVPTR->GetStringUTFChars(ENVPAR attr_name,0); rval = GRsetattr((int32) gr_id, (char *)str, (int32) data_type, (int32) count, (VOIDP) arr); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,str); ENVPTR->ReleaseByteArrayElements(ENVPAR values,arr,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRsetcompress ( JNIEnv *env, jclass cls, jint ri_id, jint comp_type, jobject c_info) /* IN: CompInfo */ { intn rval; comp_info cinf; jboolean bval; bval = getNewCompInfo(env, c_info,&cinf); /* check for success... */ rval = GRsetcompress((int32) ri_id, (comp_coder_t) comp_type, (comp_info *)&cinf); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRgetcompress ( JNIEnv *env, jclass cls, jint ri_id, jobject c_info) /* out: CompInfo */ { intn rval; comp_coder_t coder; comp_info cinf; jboolean bval; /* check for success... */ rval = GRgetcompress((int32) ri_id, (comp_coder_t *) &coder, (comp_info *)&cinf); bval = setNewCompInfo(env, c_info,coder,&cinf); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRsetchunk ( JNIEnv *env, jclass cls, jint sdsid, jobject chunk_def, /* IN: HDFChunkInfo */ jint flags) { intn rval; HDF_CHUNK_DEF c_def; jboolean bval; /* bzero((char *)&c_def, sizeof(c_def)); */ bval = getChunkInfo(env, chunk_def,&c_def); /* check results */ rval = SDsetchunk ((int32) sdsid, c_def, (int32) flags); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRsetchunkcache ( JNIEnv *env, jclass cls, jint sdsid, jint maxcache, jint flags) { return ( SDsetchunkcache((int32)sdsid, (int32)maxcache, (int32)flags) ); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRsetexternalfile ( JNIEnv *env, jclass cls, jint ri_id, jstring filename, jint offset) { int32 rval; char *str; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = GRsetexternalfile((int32) ri_id, (char *)str, (int32) offset); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRwriteimage ( JNIEnv *env, jclass cls, jint ri_id, jintArray start, /* IN: int[2] */ jintArray stride, /* IN: int[2] */ jintArray edge, /* IN: int[2] */ jbyteArray data) /* IN: byte[] */ { intn rval; jbyte *arr; jint *strt; jint *strd; jint *edg; jboolean bb; arr = ENVPTR->GetByteArrayElements(ENVPAR data,&bb); strt = ENVPTR->GetIntArrayElements(ENVPAR start,&bb); if (stride == NULL) { strd = NULL; } else { strd = ENVPTR->GetIntArrayElements(ENVPAR stride,&bb); } edg = ENVPTR->GetIntArrayElements(ENVPAR edge,&bb); if (strd == NULL) { rval = GRwriteimage((int32) ri_id, (int32 *)strt, (int32 *)NULL, (int32 *)edg, (VOIDP) arr); } else { rval = GRwriteimage((int32) ri_id, (int32 *)strt, (int32 *)strd, (int32 *)edg, (VOIDP) arr); } ENVPTR->ReleaseIntArrayElements(ENVPAR start,strt,JNI_ABORT); if (stride != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR stride,strd,JNI_ABORT); } ENVPTR->ReleaseIntArrayElements(ENVPAR edge,edg,JNI_ABORT); ENVPTR->ReleaseByteArrayElements(ENVPAR data,arr,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRwritelut ( JNIEnv *env, jclass cls, jint pal_id, jint ncomp, jint data_type, jint interlace, jint num_entries, jbyteArray pal_data) /* IN: byte[] */ { intn rval; jbyte *arr; jboolean bb; arr = ENVPTR->GetByteArrayElements(ENVPAR pal_data,&bb); rval = GRwritelut((int32) pal_id, (int32) ncomp, (int32) data_type, (int32) interlace, (int32) num_entries, (VOIDP) arr); ENVPTR->ReleaseByteArrayElements(ENVPAR pal_data,arr,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRreadchunk ( JNIEnv *env, jclass cls, jint grid, jintArray origin, /* IN: int[] */ jbyteArray dat) /* OUT: byte[] */ { int32 retVal; jbyte * s; jint *arr; jboolean bb; arr = ENVPTR->GetIntArrayElements(ENVPAR origin,&bb); s = ENVPTR->GetByteArrayElements(ENVPAR dat,&bb); retVal = GRreadchunk((int32)grid,(int32 *)arr,s); ENVPTR->ReleaseIntArrayElements(ENVPAR origin,arr,JNI_ABORT); if (retVal == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR dat,s,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR dat,s,0); return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_GRwritechunk ( JNIEnv *env, jclass cls, jint grid, jintArray origin, /* IN: int[] */ jbyteArray dat) /* IN: byte[] */ { int32 retVal; jbyte * s; jint * arr; jboolean bb; s = ENVPTR->GetByteArrayElements(ENVPAR dat,&bb); arr = ENVPTR->GetIntArrayElements(ENVPAR origin,&bb); retVal = GRwritechunk((int32)grid,(int32 *)arr,(char *)s); ENVPTR->ReleaseByteArrayElements(ENVPAR dat,s,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR origin,arr,JNI_ABORT); if (retVal == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfheImp.c0000644002344600011330000000424212326542262016165 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "hfile.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4NotImplemented( JNIEnv *env, char *functName); JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HEvalue ( JNIEnv *env, jclass clss, jint level) { return HEvalue((int32) level); } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFDeprecated_HEprint ( JNIEnv *env, jclass clss, jobject stream, /* FILE * to output to? */ jint level) { printf("HEprint called:\n");fflush(stdout); /* HEprint is not implemented because I don't know HOW to implement it !*/ /* Exception....*/ h4NotImplemented( env, "HEprint"); } JNIEXPORT jstring JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_HEstring ( JNIEnv *env, jclass clss, jshort error_code) { char * str; jstring rstring; str = (char *)HEstring((hdf_err_code_t)error_code); rstring = ENVPTR->NewStringUTF(ENVPAR str); return rstring; } #ifdef __cplusplus } #endif hdf-java-2.11.0/native/hdflib/hdfvgroupImp.c0000644002344600011330000004174612326542262017125 0ustar byrnhdf /**************************************************************************** * NCSA HDF * * National Comptational Science Alliance * * University of Illinois at Urbana-Champaign * * 605 E. Springfield, Champaign IL 61820 * * * * For conditions of distribution and use, see the accompanying * * hdf-java/COPYING file. * * * ****************************************************************************/ /* * This code is the C-interface called by Java programs to access the * HDF 4.1 library. * * Each routine wraps a single HDF entry point, generally with the * analogous arguments and return codes. * * For details of the HDF libraries, see the HDF Documentation at: * http://hdf.ncsa.uiuc.edu * */ #ifdef __cplusplus extern "C" { #endif #include "hdf.h" #include "jni.h" #ifdef __cplusplus #define ENVPTR (env) #define ENVPAR #define ENVONLY #else #define ENVPTR (*env) #define ENVPAR env, #define ENVONLY env #endif extern jboolean h4outOfMemory( JNIEnv *env, char *functName); /* exceptions??... */ JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vstart (JNIEnv *env, jclass clss, jint fid) { intn rval; rval = Vstart((int32)fid); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vattach (JNIEnv *env, jclass clss, jint fid, jint vgroup_ref, jstring accessmode) { int retVal; char *access; access = (char *)ENVPTR->GetStringUTFChars(ENVPAR accessmode,0); /* open HDF file specified by ncsa_hdf_HDF_file */ retVal = Vattach(fid, vgroup_ref, (char *)access); ENVPTR->ReleaseStringUTFChars(ENVPAR accessmode,access); return retVal; } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vdetach (JNIEnv *env, jclass clss, jint vgroup_id) { Vdetach((int32)vgroup_id); } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vend (JNIEnv *env, jclass clss, jint fid) { Vend(fid); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vgetid (JNIEnv *env, jclass clss, jint fid, jint vgroup_ref) { return(Vgetid((int32)fid, (int32)vgroup_ref)); } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vgetclass (JNIEnv *env, jclass clss, jint vgroup_id, jobjectArray hdfclassname) { char *className; jstring rstring; jclass jc; jobject o; jboolean bb; int r; if (hdfclassname == NULL) { /* nullpointer exception */ return; } r = ENVPTR->GetArrayLength(ENVPAR hdfclassname); if (r == 0) { /* invalid arg exception */ return; } className = (char *)malloc(H4_MAX_NC_CLASS+1); if (className == NULL) { h4outOfMemory(env, "Vgetclass"); return; } /* get the class name of the vgroup */ r = Vgetclass(vgroup_id, className); if (r < 0) { /* exception -- failed */ return; } className[H4_MAX_NC_CLASS] = '\0'; /* convert it to java string */ rstring = ENVPTR->NewStringUTF(ENVPAR className); /* create a Java String object in the calling environment... */ jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { free(className); return ; /* exception is raised */ } o = ENVPTR->GetObjectArrayElement(ENVPAR hdfclassname,0); if (o == NULL) { free(className); return ; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { free(className); return ; } ENVPTR->SetObjectArrayElement(ENVPAR hdfclassname,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); free(className); return; } JNIEXPORT void JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vgetname (JNIEnv *env, jclass clss, jint vgroup_id, jobjectArray hdfname) { char *name; jstring rstring; jclass jc; jobject o; jboolean bb; name = (char *) malloc(H4_MAX_NC_NAME+1); if (name == NULL) { h4outOfMemory(env, "Vgetname"); return; } Vgetname(vgroup_id, name); name[H4_MAX_NC_NAME] = '\0'; rstring = ENVPTR->NewStringUTF(ENVPAR name); jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { free(name); return ; /* exception is raised */ } o = ENVPTR->GetObjectArrayElement(ENVPAR hdfname,0); if (o == NULL) { free(name); return ; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { free(name); return ; } ENVPTR->SetObjectArrayElement(ENVPAR hdfname,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); free(name); return; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Visvg (JNIEnv *env, jclass clss, jint vgroup_id, jint vgroup_ref) { int rval; rval = Visvg(vgroup_id, vgroup_ref); if (rval == TRUE || rval == 1) { return JNI_TRUE; } else { return JNI_FALSE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Visvs (JNIEnv *env, jclass clss, jint vgroup_id, jint vdata_ref) { int rval; rval = Visvs(vgroup_id, vdata_ref); if (rval == TRUE || rval == 1) { return JNI_TRUE; } else { return JNI_FALSE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vgettagrefs (JNIEnv *env, jclass clss, jint vgroup_id, jintArray tags, /* OUT: this should be allocated by caller ? */ jintArray refs, /* OUT: this should be allocated by caller ? */ jint size) { jint *tagVal; jint *refVal; int retVal; jboolean iscopy; tagVal = ENVPTR->GetIntArrayElements(ENVPAR tags,&iscopy); refVal = ENVPTR->GetIntArrayElements(ENVPAR refs,&iscopy); if (tagVal == NULL || refVal == NULL) { /* exception */ return FAIL; } /* get the tag/ref pairs number in the vgroup */ retVal = Vgettagrefs(vgroup_id, (int32 *)tagVal, (int32 *)refVal, size); if ( retVal == FAIL ) { ENVPTR->ReleaseIntArrayElements(ENVPAR tags,tagVal,JNI_ABORT); ENVPTR->ReleaseIntArrayElements(ENVPAR refs,refVal,JNI_ABORT); } else { ENVPTR->ReleaseIntArrayElements(ENVPAR tags,tagVal,0); ENVPTR->ReleaseIntArrayElements(ENVPAR refs,refVal,0); } return retVal; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vgettagref (JNIEnv *env, jclass clss, jint vgroup_id, jint index, jintArray tagref) /* OUT: int tag, ref */ { int retVal; jint * theArgs; jboolean bb; theArgs = ENVPTR->GetIntArrayElements(ENVPAR tagref,&bb); /* get the tag/ref pairs number in the vgroup */ retVal = Vgettagref(vgroup_id, index, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1])); if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR tagref,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR tagref,theArgs,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vntagrefs (JNIEnv *env, jclass clss, jint vgroup_id) { return (Vntagrefs(vgroup_id)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vinqtagref (JNIEnv *env, jclass clss, jint vgroup_id, jint tag, jint ref ) { return(Vinqtagref((int32)vgroup_id, (int32)tag, (int32)ref)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vlone (JNIEnv *env, jclass clss, jint fid, jintArray ref_array, jint arraysize) { int retVal; jint * arr; jboolean bb; if (ref_array == NULL) { arr = NULL; } else { arr = ENVPTR->GetIntArrayElements(ENVPAR ref_array,&bb); } /* get the lone group reference number in the vgroup */ retVal = Vlone(fid, (int32 *)arr, arraysize); if (arr != NULL) { ENVPTR->ReleaseIntArrayElements(ENVPAR ref_array,arr, 0); } return retVal; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vaddtagref ( JNIEnv *env, jclass clss, jint vgroup_id, jint tag, jint ref) { return (Vaddtagref((int32) vgroup_id, (int32) tag, (int32) ref)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vdeletetagref ( JNIEnv *env, jclass clss, jint vgroup_id, jint tag, jint ref) { return (Vdeletetagref((int32) vgroup_id, (int32) tag, (int32) ref)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vclose_I ( JNIEnv *env, jclass clss, jint file_id) { intn rval; rval = Vclose((int32) file_id); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vfind ( JNIEnv *env, jclass clss, jint file_id, jstring vgname) { int32 rval; char * vgn; vgn = (char *)ENVPTR->GetStringUTFChars(ENVPAR vgname,0); rval = Vfind((int32)file_id, (char *)vgn); ENVPTR->ReleaseStringUTFChars(ENVPAR vgname,vgn); return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vfindclass ( JNIEnv *env, jclass clss, jint file_id, jstring vgclassname) { int32 rval; char * vgcn; vgcn = (char *)ENVPTR->GetStringUTFChars(ENVPAR vgclassname,0); rval = Vfindclass((int32)file_id, (char *)vgcn); ENVPTR->ReleaseStringUTFChars(ENVPAR vgclassname,vgcn); return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vflocate ( JNIEnv *env, jclass clss, jint key, jstring field) { int32 rval; char * fld; fld = (char *)ENVPTR->GetStringUTFChars(ENVPAR field,0); rval = Vflocate((int32)key, (char *)fld); ENVPTR->ReleaseStringUTFChars(ENVPAR field,fld); return rval; } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vgetnext ( JNIEnv *env, jclass clss, jint vkey, jint elem_ref) { return(Vgetnext((int32) vkey, (int32) elem_ref)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vinquire ( JNIEnv *env, jclass clss, jint vgroup_id, jintArray n_entries, /* OUT: int */ jobjectArray vgroup_name) /* OUT: String */ { intn rval; jclass jc; jstring rstring; char *name; jint * theArg; jobject o; jboolean bb; name = (char *)malloc(H4_MAX_NC_NAME+1); if (name == NULL) { h4outOfMemory(env, "Vinquire"); return JNI_FALSE; } theArg = ENVPTR->GetIntArrayElements(ENVPAR n_entries,&bb); rval = Vinquire((int32) vgroup_id, (int32 *)&(theArg[0]), name); name[H4_MAX_NC_NAME] = '\0'; if (rval == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR n_entries,theArg, JNI_ABORT); free(name); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR n_entries,theArg, 0); jc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (jc == NULL) { free(name); return JNI_FALSE; } o = ENVPTR->GetObjectArrayElement(ENVPAR vgroup_name,0); if (o == NULL) { free(name); return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,jc); if (bb == JNI_FALSE) { free(name); return JNI_FALSE; } rstring = ENVPTR->NewStringUTF(ENVPAR name); ENVPTR->SetObjectArrayElement(ENVPAR vgroup_name,0,(jobject)rstring); ENVPTR->DeleteLocalRef(ENVPAR o); free(name); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vinsert ( JNIEnv *env, jclass clss, jint vgroup_id, jint v_id) { return (Vinsert((int32) vgroup_id, (int32) v_id)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vnrefs ( JNIEnv *env, jclass clss, jint vkey, jint tag) { return(Vnrefs((int32) vkey, (int32) tag)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vopen ( JNIEnv *env, jclass clss, jstring filename, jint access, jshort ndds) { intn rval; char * str; str = (char *)ENVPTR->GetStringUTFChars(ENVPAR filename,0); rval = Vopen((char *)str, (intn) access, (int16) ndds); ENVPTR->ReleaseStringUTFChars(ENVPAR filename,str); return rval; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vsetclass (JNIEnv *env, jclass clss, jint vgroup_id, jstring hdfclassname) { intn rval; char * str; str = (char *)ENVPTR->GetStringUTFChars(ENVPAR hdfclassname,0); rval = Vsetclass((int32)vgroup_id, (char *)str); ENVPTR->ReleaseStringUTFChars(ENVPAR hdfclassname,str); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vsetname (JNIEnv *env, jclass clss, jint vgroup_id, jstring name) { intn rval; char *str; str = (char *)ENVPTR->GetStringUTFChars(ENVPAR name,0); rval = Vsetname((int32)vgroup_id, (char *)str); ENVPTR->ReleaseStringUTFChars(ENVPAR name,str); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary__1Vattrinfo ( JNIEnv *env, jclass clss, jint id, jint index, jobjectArray name, /* OUT: String */ jintArray argv) /* OUT: NT, count, size */ { int32 retVal; jint *theArgs; jboolean bb; jclass Sjc; jstring str; jobject o; char nam[256]; /* what is the correct constant??? */ theArgs = ENVPTR->GetIntArrayElements(ENVPAR argv,&bb); retVal = Vattrinfo2((int32)id, (int32)index, nam, (int32 *)&(theArgs[0]), (int32 *)&(theArgs[1]), (int32 *)&(theArgs[2]), (int32 *)&(theArgs[3]), (uint16 *)&(theArgs[4])); nam[255] = '\0'; if (retVal == FAIL) { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseIntArrayElements(ENVPAR argv,theArgs,0); str = ENVPTR->NewStringUTF(ENVPAR nam); o = ENVPTR->GetObjectArrayElement(ENVPAR name,0); if (o == NULL) { return JNI_FALSE; } Sjc = ENVPTR->FindClass(ENVPAR "java/lang/String"); if (Sjc == NULL) { return JNI_FALSE; } bb = ENVPTR->IsInstanceOf(ENVPAR o,Sjc); if (bb == JNI_FALSE) { return JNI_FALSE; } ENVPTR->SetObjectArrayElement(ENVPAR name,0,(jobject)str); ENVPTR->DeleteLocalRef(ENVPAR o); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vfindattr ( JNIEnv *env, jclass clss, jint id, jstring name) { int32 retVal; char *cname; cname =(char *) ENVPTR->GetStringUTFChars(ENVPAR name,0); retVal = Vfindattr((int32)id, cname); ENVPTR->ReleaseStringUTFChars(ENVPAR name,cname); return retVal; } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vgetattr ( JNIEnv *env, jclass clss, jint gr_id, jint attr_index, jbyteArray values) /* OUT: byte[] */ { intn rval; jbyte *arr; jboolean bb; arr = ENVPTR->GetByteArrayElements(ENVPAR values,&bb); rval = Vgetattr2((int32) gr_id, (int32) attr_index, (VOIDP) arr); if (rval == FAIL) { ENVPTR->ReleaseByteArrayElements(ENVPAR values,arr,JNI_ABORT); return JNI_FALSE; } else { ENVPTR->ReleaseByteArrayElements(ENVPAR values,arr,0); return JNI_TRUE; } } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vgetversion ( JNIEnv *env, jclass clss, jint id) { return (Vgetversion((int32) id)); } JNIEXPORT jint JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vnattrs ( JNIEnv *env, jclass clss, jint id) { return (Vnattrs2((int32) id)); } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vsetattr__ILjava_lang_String_2IILjava_lang_String_2 ( JNIEnv *env, jclass clss, jint gr_id, jstring attr_name, jint data_type, jint count, jstring values) /* IN: String */ { intn rval; char *str; char *val; str =(char *) ENVPTR->GetStringUTFChars(ENVPAR attr_name,0); val =(char *) ENVPTR->GetStringUTFChars(ENVPAR values,0); rval = Vsetattr((int32) gr_id, (char *)str, (int32) data_type, (int32) count, (VOIDP) val); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,str); ENVPTR->ReleaseStringUTFChars(ENVPAR values,val); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } JNIEXPORT jboolean JNICALL Java_ncsa_hdf_hdflib_HDFLibrary_Vsetattr__ILjava_lang_String_2II_3B ( JNIEnv *env, jclass clss, jint id, jstring attr_name, jint data_type, jint count, jbyteArray values) /* IN: byte[] */ { intn rval; jbyte *arr; char *str; jboolean bb; arr = ENVPTR->GetByteArrayElements(ENVPAR values,&bb); str =(char *) ENVPTR->GetStringUTFChars(ENVPAR attr_name,0); rval = Vsetattr((int32) id, (char *)str, (int32) data_type, (int32) count, (VOIDP) arr); ENVPTR->ReleaseStringUTFChars(ENVPAR attr_name,str); ENVPTR->ReleaseByteArrayElements(ENVPAR values,arr,JNI_ABORT); if (rval == FAIL) { return JNI_FALSE; } else { return JNI_TRUE; } } #ifdef __cplusplus } #endif hdf-java-2.11.0/bin/0000755002344600011330000000000012441355011012315 5ustar byrnhdfhdf-java-2.11.0/bin/cmakehdfjava0000755002344600011330000002037712423745433014673 0ustar byrnhdf#! /bin/sh # Build and Test hdfjava using cmake. # Author: Allen Byrne # Albert Cheng # Creation Date: Nov 2012 # Copyright: The HDF Group, 2012 # Debug: remove the comment hash if you want DPRINT to do echo DPRINT=: #DPRINT=echo # variable names progname=`basename $0` # program name cminfile="cmakemin.$$" # Cmake minimum file cfgfile=$progname.$$ # configure file ctest_log=ctest.log # output of ctest script install_log=install.log # output of installation $DPRINT $cfgfile # Remove temporary generated files if exit 0 trap "rm -f $cminfile $cfgfile" 0 #============= # Function definitions #============= TIMESTAMP() { echo "=====" "`date`" "=====" } #========== # main #========== # Show a start time stamp TIMESTAMP # Explain what and where log files are. cat <.log: output of configure LastBuild_.log: output of build LastTest_.log: output of testing LastTestsFailed_.log: list of failed tests EOF # First generate the two needed input files, the $cimnfile and $cfgfile. # Then use ctest to use the two input files. #========== # create the configure file #========== # Create the cmake minimum required file to be used by the following # configure file. Though not absolute needed, it is better to generate # this file before the configure file. Quote the EOF to preven substitution # in the text. #========== #========== cat > $cfgfile <<'EOF' cmake_minimum_required(VERSION 2.8.10 FATAL_ERROR) ######################################################## # This dashboard is maintained by The HDF Group # For any comments please contact cdashhelp@hdfgroup.org # ######################################################## set (CTEST_DASHBOARD_ROOT ${CTEST_SCRIPT_DIRECTORY}) set (CTEST_SOURCE_DIRECTORY "../hdf-java") set (CTEST_BINARY_DIRECTORY ".") set (CTEST_CMAKE_GENERATOR "Unix Makefiles") set (CTEST_BUILD_CONFIGURATION "Release") set (CTEST_MAX_N 8) # -- CDash variables set (LOCAL_NO_SUBMIT TRUE) # No CDash submit. set (MODEL "Experimental") set (CDASH_LOCAL TRUE) set (SITE_BUILDNAME_SUFFIX "cmakehdfjava") # -- URL set for internal check, default is to not update set (LOCAL_SKIP_UPDATE TRUE) set (REPOSITORY_URL "http://svn.hdfgroup.uiuc.edu/hdf-java/trunk") # -- Standard build options set (ADD_BUILD_OPTIONS "-DCMAKE_INSTALL_PREFIX:PATH=. -DHDF_ALLOW_EXTERNAL_SUPPORT:STRING=\"SVN\" -DHDF_PACKAGE_EXTLIBS:BOOL=ON") # Use multiple CPU cores to build include(ProcessorCount) ProcessorCount(N) if(NOT N EQUAL 0) if(N GREATER ${CTEST_MAX_N}) set(N ${CTEST_MAX_N}) endif(N GREATER ${CTEST_MAX_N}) set(CTEST_BUILD_FLAGS -j${N}) set(ctest_test_args ${ctest_test_args} PARALLEL_LEVEL ${N}) endif() # ----------------------------------------------------------- # -- Get environment # ----------------------------------------------------------- ## -- set hostname ## -------------------------- find_program (HOSTNAME_CMD NAMES hostname) exec_program (${HOSTNAME_CMD} ARGS OUTPUT_VARIABLE HOSTNAME) set (CTEST_SITE "${HOSTNAME}${CTEST_SITE_EXT}") find_program (UNAME NAMES uname) macro (getuname name flag) exec_program ("${UNAME}" ARGS "${flag}" OUTPUT_VARIABLE "${name}") endmacro (getuname) getuname (osname -s) getuname (osrel -r) getuname (cpu -m) if (SITE_BUILDNAME_SUFFIX) set (CTEST_BUILD_NAME "${osname}-${osrel}-${cpu}-${SITE_BUILDNAME_SUFFIX}") else (SITE_BUILDNAME_SUFFIX) set (CTEST_BUILD_NAME "${osname}-${osrel}-${cpu}") endif (SITE_BUILDNAME_SUFFIX) # ----------------------------------------------------------- set (BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DSITE:STRING=${CTEST_SITE} -DBUILDNAME:STRING=${CTEST_BUILD_NAME}") # hdf-java builds native libs static set (BUILD_OPTIONS "${BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=OFF -DBUILD_JPEG_WITH_PIC:BOOL=ON -DCMAKE_ANSI_CFLAGS:STRING=-fPIC") #----------------------------------------------------------------------------- # MAC machines need special option #----------------------------------------------------------------------------- if (APPLE) # Compiler choice execute_process(COMMAND xcrun --find cc OUTPUT_VARIABLE XCODE_CC OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND xcrun --find c++ OUTPUT_VARIABLE XCODE_CXX OUTPUT_STRIP_TRAILING_WHITESPACE) SET(ENV{CC} "${XCODE_CC}") SET(ENV{CXX} "${XCODE_CXX}") set (BUILD_OPTIONS "${BUILD_OPTIONS} -DCTEST_USE_LAUNCHERS:BOOL=ON -DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=OFF") endif (APPLE) # ----------------------------------------------------------- find_package (Subversion) set (CTEST_UPDATE_COMMAND "${Subversion_SVN_EXECUTABLE}") # -- Only clean build folder if LOCAL_CLEAR_BUILD is set if (LOCAL_CLEAR_BUILD) set (CTEST_START_WITH_EMPTY_BINARY_DIRECTORY TRUE) ctest_empty_binary_directory (${CTEST_BINARY_DIRECTORY}) endif (LOCAL_CLEAR_BUILD) #----------------------------------------------------------------------------- # Send the main script as a note. list (APPEND CTEST_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}" "${CTEST_SOURCE_DIRECTORY}/config/cmake/cacheinit.cmake" ) # Check for required variables. foreach (req CTEST_CMAKE_GENERATOR CTEST_SITE CTEST_BUILD_NAME ) if (NOT DEFINED ${req}) message(FATAL_ERROR "The containing script must set ${req}") endif (NOT DEFINED ${req}) endforeach (req) ## -- set output to english set($ENV{LC_MESSAGES} "en_EN") #----------------------------------------------------------------------------- # Initialize the CTEST commands #------------------------------ set (CTEST_CMAKE_COMMAND "\"${CMAKE_COMMAND}\"") set (CTEST_CONFIGURE_COMMAND "${CTEST_CMAKE_COMMAND} -C \"${CTEST_SOURCE_DIRECTORY}/config/cmake/cacheinit.cmake\" -DCMAKE_BUILD_TYPE:STRING=${CTEST_BUILD_CONFIGURATION} ${BUILD_OPTIONS} \"-G${CTEST_CMAKE_GENERATOR}\" \"${CTEST_SOURCE_DIRECTORY}\"") # Print summary information. foreach (v CTEST_SITE CTEST_BUILD_NAME CTEST_SOURCE_DIRECTORY CTEST_BINARY_DIRECTORY CTEST_CMAKE_GENERATOR CTEST_BUILD_CONFIGURATION CTEST_CONFIGURE_COMMAND CTEST_SCRIPT_DIRECTORY ) set (vars "${vars} ${v}=[${${v}}]\n") endforeach (v) message ("Dashboard script configuration:\n${vars}\n") CTEST_START (${MODEL} TRACK ${MODEL}) if (NOT LOCAL_SKIP_UPDATE) CTEST_UPDATE (SOURCE "${CTEST_SOURCE_DIRECTORY}") endif (NOT LOCAL_SKIP_UPDATE) CTEST_CONFIGURE (BUILD "${CTEST_BINARY_DIRECTORY}" RETURN_VALUE res) if(NOT res STREQUAL "0") message (FATAL_ERROR "Configure FAILED") endif() message ("Configure DONE") CTEST_READ_CUSTOM_FILES ("${CTEST_BINARY_DIRECTORY}") if (NOT LOCAL_NO_SUBMIT) CTEST_SUBMIT (PARTS Update Configure Notes) endif (NOT LOCAL_NO_SUBMIT) CTEST_BUILD (BUILD "${CTEST_BINARY_DIRECTORY}" APPEND RETURN_VALUE res) if (NOT LOCAL_NO_SUBMIT) CTEST_SUBMIT (PARTS Build) endif (NOT LOCAL_NO_SUBMIT) if(NOT res STREQUAL "0") message (FATAL_ERROR "Build FAILED") endif() message ("build DONE") if (NOT LOCAL_SKIP_TEST) CTEST_TEST (BUILD "${CTEST_BINARY_DIRECTORY}" APPEND ${ctest_test_args} RETURN_VALUE res) if (NOT LOCAL_NO_SUBMIT) CTEST_SUBMIT (PARTS Test) endif (NOT LOCAL_NO_SUBMIT) if(NOT res STREQUAL "0") message (FATAL_ERROR "Test FAILED") endif() message ("test DONE") endif (NOT LOCAL_SKIP_TEST) if(NOT LOCAL_MEMCHECK_TEST) ##----------------------------------------------- ## Package the product ##----------------------------------------------- execute_process(COMMAND cpack -C ${CTEST_BUILD_CONFIGURATION} -V WORKING_DIRECTORY ${CTEST_BINARY_DIRECTORY} RESULT_VARIABLE cpackResult OUTPUT_VARIABLE cpackLog ERROR_VARIABLE cpackLog.err ) file(WRITE ${CTEST_BINARY_DIRECTORY}/cpack.log "${cpackLog.err}" "${cpackLog}") endif(NOT LOCAL_MEMCHECK_TEST) #----------------------------------------------------------------------------- message ("DONE") EOF # Run ctest ctest -S $cfgfile -C Release -V -O $ctest_log exit_code=$? if [ $exit_code = 0 ]; then echo CTest script completed without error else echo Error encountered CTest script fi install_sh=HDFView-2.11.0-Linux.sh echo installing with $install_sh ... ./$install_sh --skip-license > $install_log exit_code=$? if [ $exit_code = 0 ]; then echo Complete without error else echo Error encountered fi TIMESTAMP exit $exit_code hdf-java-2.11.0/bin/hdfview.sh.in0000644002344600011330000000503212401615262014715 0ustar byrnhdf#!/bin/sh # Set up default variable values if not supplied by the user. # Adjust the following two variables to match your environment # where the HDFView is installed, e.g. /home/user1/hdfview HDFJAVA=@JH45INST@ export HDFJAVA # where Java is installed (requires jdk1.4.x or above), e.g. /usr/jdk1.4.2/bin JAVABIN=@JAVABIN@ export JAVABIN ############################################################################### # DO NOT MODIFY BELOW THIS LINE ############################################################################### CPATH=$HDFJAVA"/lib/jhdf.jar:"$HDFJAVA"/lib/jhdf5.jar:"$HDFJAVA"/lib/jhdfobj.jar" CPATH=$CPATH":"$HDFJAVA"/lib/netcdf.jar:"$HDFJAVA"/lib/fits.jar:"$HDFJAVA"/lib/h5srb.jar" CPATH=$CPATH":"$HDFJAVA"/lib/jhdf4obj.jar:"$HDFJAVA"/lib/jhdf5obj.jar:"$HDFJAVA"/lib/jhdfview.jar" CPATH=$CPATH":"$HDFJAVA"/lib/jgraph.jar:"$HDFJAVA"/lib/ext/*" TEST=/usr/bin/test if [ ! -x /usr/bin/test ] then TEST=`which test` fi if [ ! -d \$JAVABIN ]; then JAVALOC=`which java` LASTSLASH=`perl -e "print rindex(\"${JAVALOC}\", '/')"` JAVABIN=`perl -e "print substr(\"${JAVALOC}\", 0, $LASTSLASH)"` fi if $TEST -z "$CLASSPATH"; then CLASSPATH="" fi CLASSPATH=$CPATH":"$CLASSPATH export CLASSPATH if $TEST -n "$JAVABIN" ; then PATH=$JAVABIN":"$PATH export PATH fi if $TEST -e /bin/uname; then os_name=`/bin/uname -s` elif $TEST -e /usr/bin/uname; then os_name=`/usr/bin/uname -s` else os_name=unknown fi if $TEST -z "$LD_LIBRARY_PATH" ; then LD_LIBRARY_PATH="" fi case $os_name in SunOS) LD_LIBRARY_PATH=$HDFJAVA/lib/solaris:$HDFJAVA/lib/ext:$LD_LIBRARY_PATH ;; Linux) LD_LIBRARY_PATH=$HDFJAVA"/lib/linux:"$HDFJAVA"/lib/ext:"$LD_LIBRARY_PATH ;; IRIX*) OSREV=`/bin/uname -r` LD_LIBRARY_PATH=$HDFJAVA"/lib/irix-6.5:"$HDFJAVA"/lib/ext:"$LD_LIBRARY_PATH LD_LIBRARYN32_PATH=$HDFJAVA"/lib/irix-6.5:"$HDFJAVA"/lib/ext":$LD_LIBRARY_PATH export LD_LIBRARYN32_PATH ;; OSF1) LD_LIBRARY_PATH=$HDFJAVA"/lib/alpha:"$HDFJAVA"/lib/ext:"$LD_LIBRARY_PATH ;; AIX) LD_LIBRARY_PATH=$HDFJAVA"/lib/aix:"$HDFJAVA"/lib/ext:"$LD_LIBRARY_PATH ;; Darwin) DYLD_LIBRARY_PATH=$HDFJAVA"/lib/macosx:"$HDFJAVA"/lib/ext:"$DYLD_LIBRARY_PATH export DYLD_LIBRARY_PATH LD_LIBRARY_PATH=$DYLD_LIBRARY_PATH ;; FreeBSD) LD_LIBRARY_PATH=$HDFJAVA"/lib/freebsd:"$HDFJAVA"/lib/ext:"$LD_LIBRARY_PATH ;; *) echo "Unknown Operating System: HDFView may not work correctly" ;; esac export LD_LIBRARY_PATH $JAVABIN/java @JAVAX@ -Djava.library.path=$LD_LIBRARY_PATH ncsa.hdf.view.HDFView -root $HDFJAVA $* hdf-java-2.11.0/bin/hdfview.bat0000755002344600011330000000701412401615262014451 0ustar byrnhdf@ECHO OFF rem Copyright by The HDF Group. rem Copyright by the Board of Trustees of the University of Illinois. rem All rights reserved. rem rem This file is part of HDF-JAVA. The full HDF-JAVA copyright notice, including rem terms governing use, modification, and redistribution, is contained in rem the files COPYING and Copyright.html. COPYING can be found at the root rem of the source code distribution tree; Copyright.html can be found at the rem root level of an installed copy of the electronic HDF-JAVA document set and rem is linked from the top-level documents page. It can also be found at rem http://hdfgroup.org/HDF-JAVA/doc/Copyright.html. If you do not have rem access to either file, you may request a copy from helphdfgroup.org. rem File Name: hdfview.bat rem This batch file is used to execute the hdfview utility rem setlocal enabledelayedexpansion pushd %~dp0 rem Adjust the following two variables to match your environment rem set JAVAHOME= set INSTALLDIR=%CD% rem ############################################################################### rem # DO NOT MODIFY BELOW THIS LINE rem ############################################################################### set nerrors=0 if "%1"=="/?" goto help goto main rem Print a help message :help echo.Executes HDFVIEW echo. echo.Usage: %~nx0 [OPTION] echo. echo. /? Help Information exit /b 0 rem Parse through the parameters sent to file, and set appropriate variables :parse_params for %%a in (%*) do ( if "%%a"=="/?" ( rem Set errorlevel 1 and send to help call :help exit /b 1 ) ) exit /b 0 rem Setup our environment :setup echo.Setting environment if !"%JAVAHOME%"!"\bin\java.exe"=="\bin\java.exe" ( echo."%JAVAHOME%"\bin\java.exe not found, echo.please check your java home directory. goto error ) set java_run="%JAVAHOME%"\bin\java.exe SET PATH="%INSTALLDIR%"\lib\win;"%INSTALLDIR%"\lib\ext @REM set the JNI classpath set JNI_CLASSPATH="%INSTALLDIR%"\lib\jhdf.jar;"%INSTALLDIR%"\lib\jhdf5.jar @REM set the object package classpath set OBJ_CLASSPATH="%INSTALLDIR%"\lib\jhdfobj.jar;"%INSTALLDIR%"\lib\jhdf4obj.jar;"%INSTALLDIR%"\lib\jhdf5obj.jar;"%INSTALLDIR%"\lib\netcdf.jar;"%INSTALLDIR%"\lib\fits.jar set EXT_CLASSPATH="%INSTALLDIR%"\lib\ext\* @REM set the CLASSPATH set CLASSPATH=%JNI_CLASSPATH%;%OBJ_CLASSPATH%;%EXT_CLASSPATH%;"%INSTALLDIR%"\lib\jhdfview.jar exit /b 0 rem Handle errors :error rem For now, our error handling consists of setting nerrors and quitting echo.HDF check failed. set /a nerrors=%nerrors%+1 goto end rem We'll never really get here, but we keep this line for consistency. exit /b rem This is where the magic happens :main call :parse_params %* if %errorlevel% neq 0 ( if %errorlevel% equ 1 ( rem This isn't an error case-- this means /? was specified. Simply rem quit. goto end ) else ( rem Error case. echo.Error parsing parameters! goto error ) ) call :setup if %errorlevel% neq 0 ( echo.Error setting up build environment. goto error ) if "%nerrors%"=="0" ( "%JAVAHOME%"\bin\java -Xmx1024m -Djava.library.path=%PATH% -Dhdfview.root="%INSTALLDIR%" -classpath %CLASSPATH% ncsa.hdf.view.HDFView -root "%INSTALLDIR%" ) rem Fall through to end :end popd endlocal & exit /b %nerrors% hdf-java-2.11.0/configure0000755002344600011330000051670211754457536013514 0ustar byrnhdf#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software # Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME= PACKAGE_TARNAME= PACKAGE_VERSION= PACKAGE_STRING= PACKAGE_BUGREPORT= PACKAGE_URL= ac_unique_file="native/hdflib/hdfImp.c" ac_default_prefix="" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='LTLIBOBJS LIBOBJS VERSSTRING JH5INST JHVINST JH45INST CLASSPATH JAVATARG TARGET H45INC H45LIB HDF4INC HDF5INC JAVAINC2 JAVAINC JAVAX JAVABIN COPTNOSHARE COPT JSLEXT SLEXT LLEXT LDOPT2 LDOPT LD JAR JAVADOC JAVAC JAVA javabin JAVALIB jdkclasses LIBH45 HDF5LIB HDF4LIB SZLIB JPEGLIB ZLIB target_os target_vendor target_cpu target host_os host_vendor host_cpu host build_os build_vendor build_cpu build FIND RM EGREP GREP CPP INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM SET_MAKE OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AWK target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='VERSION' ac_user_opts=' enable_option_checking with_libz with_libjpeg with_libsz with_hdf4 with_hdf5 with_h4toh5 with_jdkclasses with_jdk with_javax with_javabin with_jhdf4 with_jhdf5 ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures this package to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then cat <<\_ACEOF Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-libz=LIB Path to the gzip library (required if not in default path) --with-libjpeg=LIB Path to the jpeg library (required if not in default path) --with-libsz=LIB Path to the szip library (required if not in default path) --with-hdf4=LIB Path to the hdf library (required if not in default path) --with-hdf5=LIB Path to the hdf5 library (required if not in default path) --with-h4toh5=INC,LIB Path to the HDF 4 to 5 library (optional feature, if selected then path required is not in default path) --with-classpath=LIB --with-jdk=INC,LIB Path to the JDK (required if not in default path) --with-javax=LIB --with-javabin=LIB --with-jhdf4=LIB Path to the jhdf4,jar (optional override, used only by H4 to H5) --with-jhdf5=LIB Path to the jhdf45.jar (optional override, used only by the H4 to H5 library) Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF configure generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_aux_dir= for ac_dir in ./config "$srcdir"/./config; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in ./config \"$srcdir\"/./config" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. { $as_echo "$as_me:${as_lineno-$LINENO}: checking if tr works" >&5 $as_echo_n "checking if tr works... " >&6; } TR_TEST="`echo Test | tr 'a-z,' 'A-Z '`" if test $TR_TEST != "TEST"; then as_fn_error $? "tr program doesn't work" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking if expr works" >&5 $as_echo_n "checking if expr works... " >&6; } yyy_ok="yes" yyy_option="$*" for yyy_option do yyy_opt=`expr "x$yyy_option" : 'x.*=.*'` if test "$yyy_opt" != "0"; then zzz_opt=`echo x$yyy_option | awk '{print index($0,"=")}'` if test "$yyy_opt" != "$zzz_opt"; then yyy_optarg=`expr "x$yyy_option" : 'x[^=]*=\(.*\)'` if test -z "$yyy_optarg"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: option $yyy_option too long, configure will fail" >&5 $as_echo "option $yyy_option too long, configure will fail" >&6; } yyy_ok="no" fi fi fi done if test "$yyy_ok" != "yes"; then echo $yyy_ok as_fn_error $? "expr program doesn't work" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ceil in -lm" >&5 $as_echo_n "checking for ceil in -lm... " >&6; } if ${ac_cv_lib_m_ceil+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char ceil (); int main () { return ceil (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_m_ceil=yes else ac_cv_lib_m_ceil=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_ceil" >&5 $as_echo "$ac_cv_lib_m_ceil" >&6; } if test "x$ac_cv_lib_m_ceil" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 _ACEOF LIBS="-lm $LIBS" fi if test "`uname`" = "SunOS" -o "`uname -sr`" = "HP-UX B.11.00"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xdr_int in -lnsl" >&5 $as_echo_n "checking for xdr_int in -lnsl... " >&6; } if ${ac_cv_lib_nsl_xdr_int+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char xdr_int (); int main () { return xdr_int (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_nsl_xdr_int=yes else ac_cv_lib_nsl_xdr_int=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_xdr_int" >&5 $as_echo "$ac_cv_lib_nsl_xdr_int" >&6; } if test "x$ac_cv_lib_nsl_xdr_int" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBNSL 1 _ACEOF LIBS="-lnsl $LIBS" fi fi # Extract the first word of "rm", so it can be a program name with args. set dummy rm; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_RM+:} false; then : $as_echo_n "(cached) " >&6 else case $RM in [\\/]* | ?:[\\/]*) ac_cv_path_RM="$RM" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_RM="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_RM" && ac_cv_path_RM="\"\"" ;; esac fi RM=$ac_cv_path_RM if test -n "$RM"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RM" >&5 $as_echo "$RM" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "find", so it can be a program name with args. set dummy find; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_FIND+:} false; then : $as_echo_n "(cached) " >&6 else case $FIND in [\\/]* | ?:[\\/]*) ac_cv_path_FIND="$FIND" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_FIND="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_FIND" && ac_cv_path_FIND="\"\"" ;; esac fi FIND=$ac_cv_path_FIND if test -n "$FIND"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FIND" >&5 $as_echo "$FIND" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 $as_echo_n "checking target system type... " >&6; } if ${ac_cv_target+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 $as_echo "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- TARGET=$target echo "FYI the target here is: "$target case $target in alpha-dec-osf*.*) TARGETLIB="alpha" LD=$CC; LDOPT="-pthread -shared"; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT="-pthread -shared"; COPTNOSHARED=; ;; *aix*) TARGETLIB="aix" LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT=-G; COPTNOSHARED=; ;; *-*-solaris2*) TARGETLIB="solaris" LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT=-G; COPTNOSHARED=; ;; mips*-sgi-irix6*) TARGETLIB="irix" LD=ld; LLEXT="a"; JSLEXT="so"; ;; x86_64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; TARGETLIB="linux" SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT="-shared -Dx86_64 -fPIC" ; ;; ia64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; TARGETLIB="linux" SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT="-shared -Dia64 -fPIC" ; ;; *-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; TARGETLIB="linux" SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT="-shared -DUNIX386" ; ;; *-freebsd*) LD=$CC; LDOPT=-shared; TARGETLIB="freebsd" SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT="-shared" ; ;; *powerpc-apple*) LD=$CC; LDOPT=-bundle; JSLEXT="jnilib"; LLEXT="a"; SLEXT="dylib"; ;; *) LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; TARGETLIB="$target" esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking gzip compression" >&5 $as_echo_n "checking gzip compression... " >&6; } HAVE_ZLIB="no" withval=""; ZLIB="" # Check whether --with-libz was given. if test "${with_libz+set}" = set; then : withval=$with_libz; fi case "$withval" in yes) ZLIB="" HAVE_ZLIB="no" ;; no) ZLIB="" HAVE_ZLIB="suppressed" ;; *) if test -n "$withval" ; then z_lib="`echo $withval |cut -f2 -d, -s`" ZLIB=$z_lib"/libz."$LLEXT HAVE_ZLIB="yes" else ZLIB="" HAVE_ZLIB="no" fi ;; esac if test -n "$ZLIB"; then LIBS="$LIBS $ZLIB" HAVE_ZLIB="yes" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAVE_ZLIB" >&5 $as_echo "$HAVE_ZLIB" >&6; } if test $HAVE_ZLIB = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: zlib found: $ZLIB" >&5 $as_echo "zlib found: $ZLIB" >&6; }; fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking jpeg compression" >&5 $as_echo_n "checking jpeg compression... " >&6; } HAVE_JPEG="no" withval=""; JPEGLIB="" # Check whether --with-libjpeg was given. if test "${with_libjpeg+set}" = set; then : withval=$with_libjpeg; fi case "$withval" in yes) HAVE_JPEG="no" ;; no) JPEGLIB="" HAVE_JPEG="suppressed" ;; *) if test -n "$withval" ; then jpeg_lib="`echo $withval |cut -f2 -d, -s`" JPEGLIB=$jpeg_lib"/libjpeg."$LLEXT HAVE_JPEG="yes" else HAVE_JPEG="no" fi ;; esac if test -n "$JPEGLIB"; then LIBS="$LIBS $JPEGLIB" HAVE_JPEG="yes" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAVE_JPEG" >&5 $as_echo "$HAVE_JPEG" >&6; } if test $HAVE_JPEG = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: jpeg found: $JPEGLIB" >&5 $as_echo "jpeg found: $JPEGLIB" >&6; }; fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking szip compression" >&5 $as_echo_n "checking szip compression... " >&6; } HAVE_SZIP="no" withval=""; SZLIB="" # Check whether --with-libsz was given. if test "${with_libsz+set}" = set; then : withval=$with_libsz; fi case "$withval" in yes) SZLIB="" HAVE_SZIP="no" ;; no) SZLIB="" HAVE_SZIP="suppressed" ;; *) if test -n "$withval" ; then sz_lib="`echo $withval |cut -f2 -d, -s`" SZLIB=$sz_lib"/libsz."$LLEXT HAVE_SZIP="yes" else SZLIB="" HAVE_SZIP="no" fi ;; esac if test -n "$SZLIB"; then LIBS="$LIBS $SZLIB" HAVE_SZIP="yes" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAVE_SZIP" >&5 $as_echo "$HAVE_SZIP" >&6; } if test $HAVE_SZIP = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: szlib found: $SZLIB" >&5 $as_echo "szlib found: $SZLIB" >&6; }; fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking HDF4 library" >&5 $as_echo_n "checking HDF4 library... " >&6; } HAVE_HDF4="no" withval=""; HDF4LIB="" # Check whether --with-hdf4 was given. if test "${with_hdf4+set}" = set; then : withval=$with_hdf4; fi case "$withval" in yes) HDF4LIB="" HAVE_HDF4="no" ;; no) HDF4LIB="" HAVE_HDF4="suppressed" ;; *) if test -n "$withval" ; then hdf4_inc="`echo $withval |cut -f1 -d,`" if test -n "$hdf4_inc"; then HDF4INC="$hdf4_inc" fi hdf4_lib="`echo $withval |cut -f2 -d, -s`" if test -n "$hdf4_lib"; then HDF4LIB=$hdf4_lib fi HAVE_HDF4="yes" else HDF4LIB="" HAVE_HDF4="no" fi ;; esac if test -n "$HDF4LIB"; then LIBS="$HDF4LIB/libdf.$LLEXT $HDF4LIB/libmfhdf.$LLEXT $LIBS" HAVE_HDF4="yes" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAVE_HDF4" >&5 $as_echo "$HAVE_HDF4" >&6; } if test $HAVE_HDF4 = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: HDF4 found: $HDF4LIB" >&5 $as_echo "HDF4 found: $HDF4LIB" >&6; }; fi if test "$HAVE_HDF4" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependencies for HDF4 library" >&5 $as_echo_n "checking dependencies for HDF4 library... " >&6; } needjpg=`grep 'define H4_HAVE_LIBJPEG 1' $HDF4INC/h4config.h` needgzip=`grep 'define H4_HAVE_LIBZ 1' $HDF4INC/h4config.h` needszip=`grep 'define H4_HAVE_LIBSZ 1' $HDF4INC/h4config.h` if test -n "$needjpg"; then if test "$HAVE_JPEG" != "yes"; then as_fn_error $? " HDF4 library needs JPEG, JPEG not defined." "$LINENO" 5 fi fi if test -n "$needgzip"; then if test "$HAVE_ZLIB" != "yes"; then as_fn_error $? " HDF4 library needs GZIP, GZIP not defined." "$LINENO" 5 fi fi if test -n "$needszip"; then if test "$HAVE_SZIP" != "yes"; then as_fn_error $? " HDF4 library needs SZIP, SZIP not defined." "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: OK" >&5 $as_echo "OK" >&6; } fi ac_cv_lib_HDF4=$HDF4LIB ac_cv_lib_HDF4INC=$HDF4INC { $as_echo "$as_me:${as_lineno-$LINENO}: checking HDF5 library" >&5 $as_echo_n "checking HDF5 library... " >&6; } HAVE_HDF5="no" withval=""; HDF5LIB="" # Check whether --with-hdf5 was given. if test "${with_hdf5+set}" = set; then : withval=$with_hdf5; fi case "$withval" in yes) HDF5LIB="" HAVE_HDF5="no" ;; no) HDF5LIB="" HAVE_HDF5="suppressed" ;; *) if test -n "$withval" ; then hdf5_lib="`echo $withval |cut -f2 -d, -s`" HDF5LIB=$hdf5_lib"/libhdf.$LLEXT" hdf5_inc="`echo $withval |cut -f1 -d,`" if test -n "$hdf5_inc"; then HDF5INC="$hdf5_inc" fi hdf5_lib="`echo $withval |cut -f2 -d, -s`" if test -n "$hdf5_lib"; then HDF5LIB=$hdf5_lib fi HAVE_HDF5="yes" else HDF5LIB="" HAVE_HDF5="no" fi ;; esac if test -n "$HDF5LIB"; then LIBS="$HDF5LIB/libhdf5.$LLEXT $LIBS" HAVE_HDF5="yes" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAVE_HDF5" >&5 $as_echo "$HAVE_HDF5" >&6; } if test $HAVE_HDF5 = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: HDF5 found: $HDF5LIB" >&5 $as_echo "HDF5 found: $HDF5LIB" >&6; }; fi if test -n "$HDF5LIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependencies for HDF5 library" >&5 $as_echo_n "checking dependencies for HDF5 library... " >&6; } DFL=`grep 'filters (external)' $HDF5LIB"/libhdf5.settings" | grep deflate` SZP=`grep 'filters (external)' $HDF5LIB"/libhdf5.settings" | grep szip` if test -n "$DFL"; then if test "$HAVE_ZLIB" != "yes"; then as_fn_error $? " HDF5 library needs GZIP, GZIP not defined." "$LINENO" 5 fi fi if test -n "$SZP"; then if test "$HAVE_SZIP" != "yes"; then as_fn_error $? " HDF5 library needs SZIP, SZIP not defined." "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: OK" >&5 $as_echo "OK" >&6; } fi ac_cv_lib_HDF5=$HDF5LIB ac_cv_lib_HDF5INC=$HDF5INC { $as_echo "$as_me:${as_lineno-$LINENO}: checking HDF4to5 library" >&5 $as_echo_n "checking HDF4to5 library... " >&6; } USEH45="no" withval=""; LIBH45="" # Check whether --with-h4toh5 was given. if test "${with_h4toh5+set}" = set; then : withval=$with_h4toh5; fi case "$withval" in yes) USEH45="no" ;; no) H45LIB="" H45INC="" USEH45="suppressed" ;; *) if test -n "$withval"; then hdf45_inc="`echo $withval |cut -f1 -d,`" if test -n "$hdf45_inc"; then HDF45INC="$hdf45_inc" saved_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$hdf45_inc" fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in h4toh5.h do : ac_fn_c_check_header_mongrel "$LINENO" "h4toh5.h" "ac_cv_header_h4toh5_h" "$ac_includes_default" if test "x$ac_cv_header_h4toh5_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_H4TOH5_H 1 _ACEOF else CPPFLAGS="$saved_CPPFLAGS" as_fn_error $? "cannot find HDF45 header files!" "$LINENO" 5 fi done hdf45_lib="`echo $withval | cut -f2 -d, -s`" if test -n "$hdf45_lib"; then HDF45LIB="$hdf45_lib" saved_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -L$hdf45_lib" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for H4toh5open in -lh4toh5" >&5 $as_echo_n "checking for H4toh5open in -lh4toh5... " >&6; } if ${ac_cv_lib_h4toh5_H4toh5open+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lh4toh5 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char H4toh5open (); int main () { return H4toh5open (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_h4toh5_H4toh5open=yes else ac_cv_lib_h4toh5_H4toh5open=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_h4toh5_H4toh5open" >&5 $as_echo "$ac_cv_lib_h4toh5_H4toh5open" >&6; } if test "x$ac_cv_lib_h4toh5_H4toh5open" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBH4TOH5 1 _ACEOF LIBS="-lh4toh5 $LIBS" else LDFLAGS="$saved_LDFLAGS" as_fn_error $? "cannot find HDF45 library." "$LINENO" 5 fi else as_fn_error $? "cannot find HDF45 library path." "$LINENO" 5 fi USEH45="yes" fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USEH45" >&5 $as_echo "$USEH45" >&6; } if test -n "$H45LIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: h4toh5 library found at: $HDF45LIB" >&5 $as_echo "h4toh5 library found at: $HDF45LIB" >&6; } fi H45LIB=$HDF45LIB H45INC=$HDF45INC ac_cv_lib_HDF45=$HDF45LIB ac_cv_lib_HDF45INC=$HDF45INC withval=""; jdkclasses="" # Check whether --with-jdkclasses was given. if test "${with_jdkclasses+set}" = set; then : withval=$with_jdkclasses; fi jdkclasses=$withval withval=""; JAVALIB="" # Check whether --with-jdk was given. if test "${with_jdk+set}" = set; then : withval=$with_jdk; fi case "$withval" in yes) as_fn_error $? "JDK needed for compilation." "$LINENO" 5 ;; no) as_fn_error $? "JDK needed for compilation." "$LINENO" 5 ;; *) jdk_inc="`echo $withval |cut -f1 -d,`" if test -n "$jdk_inc"; then JAVAINC="$jdk_inc" saved_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $COPT -I$jdk_inc -I$jdk_inc/$TARGETLIB" fi for ac_header in jni.h do : ac_fn_c_check_header_mongrel "$LINENO" "jni.h" "ac_cv_header_jni_h" "$ac_includes_default" if test "x$ac_cv_header_jni_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_JNI_H 1 _ACEOF else CPPFLAGS="$saved_CPPFLAGS" as_fn_error $? "cannot find JDK header files!" "$LINENO" 5 fi done jdk_lib="`echo $withval | cut -f2 -d, -s`" if test -n "$jdk_lib"; then JAVALIB="$jdk_lib" else as_fn_error $? "cannot find jdk library path." "$LINENO" 5 fi ;; esac if test -n "$jdkclasses"; then if test -f $jdkclasses/classes.jar ; then JAVACLASSES=$jdkclasses/classes.jar JAVACLASSPATH_FOUND=1 else as_fn_error $? "cannot find jdk classes in JDK lib path." "$LINENO" 5 fi else if test -f $JAVALIB/classes.zip ; then JAVACLASSES=$JAVALIB/classes.zip JAVACLASSPATH_FOUND=1 elif test -f $JAVALIB/core.jar ; then JAVACLASSES=$JAVALIB/rt.jar JAVACLASSPATH_FOUND=1 elif test -f $JAVALIB/rt.jar ; then JAVACLASSES=$JAVALIB/rt.jar JAVACLASSPATH_FOUND=1 elif test -d $JAVALIB/classes ; then JAVACLASSES=$JAVALIB/classes JAVACLASSPATH_FOUND=1 else JL=`dirname $JAVALIB` if test -f $JL/jre/lib/rt.jar; then JAVACLASSES=$JL/jre/lib/rt.jar JAVACLASSPATH_FOUND=1 JAVALIB=$JL/jre/lib JAVALIB="" else as_fn_error $? "cannot find jdk classes in JDK lib path." "$LINENO" 5 fi fi fi HERE=`pwd` CLASSPATH="$JAVACLASSES"":""$HERE" withval=""; javax="" # Check whether --with-javax was given. if test "${with_javax+set}" = set; then : withval=$with_javax; fi javax=$withval if test -n "$javax" ; then JAVAX=$javax fi withval=""; javabin="" # Check whether --with-javabin was given. if test "${with_javabin+set}" = set; then : withval=$with_javabin; fi javabin=$withval if test -n "$javabin" ; then JAVABIN=$javabin else JAVABIN=`dirname $JAVAINC` JAVABIN="$JAVABIN/bin" fi # Extract the first word of "java", so it can be a program name with args. set dummy java; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_JAVA+:} false; then : $as_echo_n "(cached) " >&6 else case $JAVA in [\\/]* | ?:[\\/]*) ac_cv_path_JAVA="$JAVA" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $JAVABIN do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_JAVA="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi JAVA=$ac_cv_path_JAVA if test -n "$JAVA"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVA" >&5 $as_echo "$JAVA" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "javac", so it can be a program name with args. set dummy javac; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_JAVAC+:} false; then : $as_echo_n "(cached) " >&6 else case $JAVAC in [\\/]* | ?:[\\/]*) ac_cv_path_JAVAC="$JAVAC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $JAVABIN do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_JAVAC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi JAVAC=$ac_cv_path_JAVAC if test -n "$JAVAC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVAC" >&5 $as_echo "$JAVAC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "javadoc", so it can be a program name with args. set dummy javadoc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_JAVADOC+:} false; then : $as_echo_n "(cached) " >&6 else case $JAVADOC in [\\/]* | ?:[\\/]*) ac_cv_path_JAVADOC="$JAVADOC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $JAVABIN do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_JAVADOC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi JAVADOC=$ac_cv_path_JAVADOC if test -n "$JAVADOC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAVADOC" >&5 $as_echo "$JAVADOC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "jar", so it can be a program name with args. set dummy jar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_JAR+:} false; then : $as_echo_n "(cached) " >&6 else case $JAR in [\\/]* | ?:[\\/]*) ac_cv_path_JAR="$JAR" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $JAVABIN do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_JAR="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi JAR=$ac_cv_path_JAR if test -n "$JAR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JAR" >&5 $as_echo "$JAR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi withval=""; # Check whether --with-jhdf4 was given. if test "${with_jhdf4+set}" = set; then : withval=$with_jhdf4; fi case "$withval" in yes) as_fn_error $? "jhdf4 path needed for compilation." "$LINENO" 5 ;; no) ;; *) jhdf_jar="`echo $withval |cut -f1 -d,`" if test -n "$jhdf_jar"; then CLASSPATH="$CLASSPATH"":""$jhdf_jar""/jhdf.jar" fi ;; esac withval=""; # Check whether --with-jhdf5 was given. if test "${with_jhdf5+set}" = set; then : withval=$with_jhdf5; fi case "$withval" in yes) as_fn_error $? "jhdf5 path needed for compilation." "$LINENO" 5 ;; no) #AC_MSG_ERROR( jhdf5 needed for compilation.) # use default path ;; *) jhdf5_jar="`echo $withval |cut -f1 -d,`" if test -n "$jhdf5_jar"; then CLASSPATH="$CLASSPATH"":""$jhdf5_jar""/jhdf5.jar" #else # AC_MSG_ERROR(jhdf5.jar needed for compilation.) # use default path... fi ;; esac ac_cv_lib_JAVAINC=$JAVAINC if test "$prefix" != "NONE" ; then JH45INST="$prefix" else JH45INST="" fi JH45INST_FOUND=1 if test -z "$JH45INST" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking \"JH45 install directory\"" >&5 $as_echo_n "checking \"JH45 install directory\"... " >&6; } if ${ac_cv_lib_JH45INST+:} false; then : $as_echo_n "(cached) " >&6 else JH45INST_FOUND=0 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_JH45INST" >&5 $as_echo "$ac_cv_lib_JH45INST" >&6; } fi if test $JH45INST_FOUND -eq 1; then if test -z "$JH45INST" ; then JH45INST=$ac_cv_lib_JH45INST; fi if test \( ! -d "$JH45INST" \); then JH45INST_FOUND=0 fi if test \( ! -w "$JH45INST" \); then as_fn_error $? " $JH45INST : not writable " "$LINENO" 5 JH45INST_FOUND=0 fi fi until test $JH45INST_FOUND -eq 1; do echo "Please type the directory in which to install the JH45" read JH45INST JH45INST_FOUND=1 if test \( ! -d "$JH45INST" \); then JH45INST_FOUND=0 fi if test \( ! -w "$JH45INST" \); then as_fn_error $? " $JH45INST : not writable " "$LINENO" 5 JH45INST_FOUND=0 fi done ac_cv_lib_JH45INST=$JH45INST JHVINST=$JH45INST JH5INST=$JH45INST case $target in alpha-dec-osf*.*) LD=$CC; LDOPT="-pthread -shared"; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT="-pthread -shared"; COPTNOSHARED=; JAVAINC2=$JAVAINC/alpha ; JAVATARG=alpha; ;; *aix*) LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT=-G; COPTNOSHARED=; JAVAINC2=$JAVAINC/aix ; JAVATARG=aix; ;; *-*-solaris2*) LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT=-G; COPTNOSHARED=; JAVAINC2=$JAVAINC/solaris ; JAVATARG=solaris; ;; mips*-sgi-irix6*) LD=ld; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; OS=`uname -r`; SYS=`uname -s` if test "$SYS" = "IRIX"; then LDOPT2="-check_registry /usr/lib/so_locations"; SLEXT="so"; if test "$GCC" = "yes" ; then LDOPT="-shared"; COPT="-shared" ; COPTNOSHARED=""; else LDOPT="-n32 -shared"; COPT="-n32 -shared" ; COPTNOSHARED="-n32"; fi elif test "$SYS" = "IRIX64"; then LDOPT2="-check_registry /usr/lib/so_locations"; SLEXT="so"; if test "$GCC" = "yes" ; then LDOPT="-shared"; COPT="-shared" ; COPTNOSHARED=""; else LDOPT="-n32 -shared"; COPT="-n32 -shared" ; COPTNOSHARED="-n32"; fi else echo "No such system: "$SYS fi JSLEXT="so"; JAVAINC2=$JAVAINC/irix; JAVATARG=irix-$OS; ;; x86_64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared -Dx86_64 -fPIC" ; JAVAINC2=$JAVAINC/linux; JAVATARG=linux; ;; ia64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared -Dia64 -fPIC" ; JAVAINC2=$JAVAINC/linux; JAVATARG=linux; ;; *-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared -DUNIX386" ; JAVAINC2=$JAVAINC/linux; JAVATARG=linux; ;; *-freebsd*) LD=$CC; LDOPT=-shared; SLEXT="so"; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared" ; JAVAINC2=$JAVAINC/freebsd; JAVATARG=freebsd; ;; *powerpc-apple*) LD=$CC; LDOPT=-bundle; JSLEXT="jnilib"; LLEXT="a"; SLEXT="dylib"; JAVAINC2=$JAVAINC/macosx; JAVATARG=macosx; ;; *) LD=$CC; LDOPT=-G; SLEXT="so"; JSLEXT="so"; LLEXT="a"; COPT=-shared; COPTNOSHSARED=; JAVAINC2=$JAVAINC/$target; JAVATARG=$TARGET ;; esac VERSION=./VERSION VERSSTRING=`/bin/cat ./VERSION | sed -e 's/VERSION=HDF-JAVA-//' ` ## ## Select one of the following, depending on what is being distributed. ## OUTPUT_FILES="Makefile native/Makefile native/hdflib/Makefile native/hdf5lib/Makefile ncsa/Makefile ncsa/hdf/Makefile ncsa/hdf/hdflib/Makefile ncsa/hdf/hdf5lib/Makefile ncsa/hdf/hdf5lib/exceptions/Makefile ncsa/hdf/hdf5lib/callbacks/Makefile ncsa/hdf/hdf5lib/structs/Makefile ncsa/hdf/object/Makefile ncsa/hdf/object/fits/Makefile ncsa/hdf/object/h4/Makefile ncsa/hdf/object/h5/Makefile ncsa/hdf/object/nc2/Makefile ncsa/hdf/view/Makefile bin/hdfview.sh" if test "$USEH45" = "yes"; then ## want H4toH5 configured if test -d "./test"; then ## ## Everything ## # OUTPUT_FILES="$OUTPUT_FILES test/Makefile test/object/misc/testh4file.sh test/object/misc/testh5file.sh test/object/misc/Makefile test/object/misc/runtests.sh test/hdf5lib/junit.sh test/hdf5lib/Makefile test/uitest/junit.sh test/uitest/Makefile examples/Makefile examples/intro/Makefile examples/datasets/Makefile examples/datatypes/Makefile examples/groups/Makefile" OUTPUT_FILES="$OUTPUT_FILES test/Makefile test/object/misc/testh4file.sh test/object/misc/testh5file.sh test/object/misc/Makefile test/object/misc/runtests.sh test/hdf5lib/junit.sh test/hdf5lib/Makefile examples/Makefile examples/intro/Makefile examples/datasets/Makefile examples/datatypes/Makefile examples/groups/Makefile" else ## ## H4, H5, H45, but NO tests ## OUTPUT_FILES="Makefile native/Makefile native/hdflib/Makefile native/hdf5lib/Makefile ncsa/Makefile ncsa/hdf/Makefile ncsa/hdf/hdflib/Makefile ncsa/hdf/hdf5lib/Makefile ncsa/hdf/hdf5lib/exceptions/Makefile ncsa/hdf/hdf5lib/callbacks/Makefile ncsa/hdf/hdf5lib/structs/Makefile ncsa/hdf/object/Makefile ncsa/hdf/object/fits/Makefile ncsa/hdf/object/h4/Makefile ncsa/hdf/object/h5/Makefile ncsa/hdf/object/nc2/Makefile ncsa/hdf/view/Makefile" fi else if test -d "./test"; then ## Don't use H4toH5 (but do include some tests) #OUTPUT_FILES="$OUTPUT_FILES test/Makefile test/object/misc/Makefile test/object/misc/testh4file.sh test/object/misc/testh5file.sh test/object/misc/runtests.sh test/object/misc/TestH5Object.sh test/object/misc/TestH5Table.sh test/object/misc/TestH5MemoryLeak.sh test/object/Makefile test/object/unittests.sh test/hdf5lib/junit.sh test/hdf5lib/Makefile test/uitest/junit.sh test/uitest/Makefile examples/Makefile examples/intro/Makefile examples/datasets/Makefile examples/datatypes/Makefile examples/groups/Makefile examples/runExample.sh" OUTPUT_FILES="$OUTPUT_FILES test/Makefile test/object/misc/Makefile test/object/misc/testh4file.sh test/object/misc/testh5file.sh test/object/misc/runtests.sh test/object/misc/TestH5Object.sh test/object/misc/TestH5Table.sh test/object/misc/TestH5MemoryLeak.sh test/object/Makefile test/object/unittests.sh test/hdf5lib/junit.sh test/hdf5lib/Makefile examples/Makefile examples/intro/Makefile examples/datasets/Makefile examples/datatypes/Makefile examples/groups/Makefile examples/runExample.sh" else ## Don't use H4toH5 (no tests) OUTPUT_FILES="$OUTPUT_FILES" fi fi ac_config_files="$ac_config_files $OUTPUT_FILES" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # Transform confdefs.h into DEFS. # Protect against shell expansion while executing Makefile rules. # Protect against Makefile macro expansion. # # If the first sed substitution is executed (which looks for macros that # take arguments), then branch to the quote section. Otherwise, # look for a macro that doesn't take arguments. ac_script=' :mline /\\$/{ N s,\\\n,, b mline } t clear :clear s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g t quote s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g t quote b any :quote s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g s/\[/\\&/g s/\]/\\&/g s/\$/$$/g H :any ${ g s/^\n// s/\n/ /g p } ' DEFS=`sed -n "$ac_script" confdefs.h` ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by $as_me, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE Configuration files: $config_files Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --he | --h | --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "$OUTPUT_FILES") CONFIG_FILES="$CONFIG_FILES $OUTPUT_FILES" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then if $AWK 'BEGIN { getline <"/dev/null" }' /dev/null; then ac_cs_awk_getline=: ac_cs_awk_pipe_init= ac_cs_awk_read_file=' while ((getline aline < (F[key])) > 0) print(aline) close(F[key])' ac_cs_awk_pipe_fini= else ac_cs_awk_getline=false ac_cs_awk_pipe_init="print \"cat <<'|#_!!_#|' &&\"" ac_cs_awk_read_file=' print "|#_!!_#|" print "cat " F[key] " &&" '$ac_cs_awk_pipe_init # The final `:' finishes the AND list. ac_cs_awk_pipe_fini='END { print "|#_!!_#|"; print ":" }' fi ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF # Create commands to substitute file output variables. { echo "cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1" && echo 'cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&' && echo "$ac_subst_files" | sed 's/.*/F["&"]="$&"/' && echo "_ACAWK" && echo "_ACEOF" } >conf$$files.sh && . ./conf$$files.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 rm -f conf$$files.sh { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" \$ac_cs_awk_pipe_init } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } if (nfields == 3 && !substed) { key = field[2] if (F[key] != "" && line ~ /^[ ]*@.*@[ ]*$/) { \$ac_cs_awk_read_file next } } print line } \$ac_cs_awk_pipe_fini _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" eval set X " :F $CONFIG_FILES " shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | if $ac_cs_awk_getline; then $AWK -f "$ac_tmp/subs.awk" else $AWK -f "$ac_tmp/subs.awk" | $SHELL fi \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi if test -d "./test"; then chmod +x test/object/misc/TestH5Object.sh chmod +x test/object/misc/TestH5Table.sh chmod +x test/object/misc/TestH5MemoryLeak.sh chmod +x test/object/unittests.sh chmod +x test/hdf5lib/junit.sh fi hdf-java-2.11.0/examples/0000755002344600011330000000000012441355011013363 5ustar byrnhdfhdf-java-2.11.0/examples/intro/0000755002344600011330000000000012441355011014516 5ustar byrnhdfhdf-java-2.11.0/examples/intro/H5Object_CreateFile.java0000644002344600011330000000124312326542262021057 0ustar byrnhdf// // Creating and closing a file. package examples.intro; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5File; public class H5Object_CreateFile { static final String FILENAME = "H5Object_CreateFile.h5"; private static void CreateFile() { H5File file = null; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Object_CreateFile.CreateFile(); } } hdf-java-2.11.0/examples/intro/H5_CreateGroup.java0000644002344600011330000000226312326542262020150 0ustar byrnhdf// // Creating and closing a group. package examples.intro; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5_CreateGroup { private static String FILENAME = "H5_CreateGroup.h5"; private static String GROUPNAME = "MyGroup"; private static void CreateGroup() { int file_id = -1; int group_id = -1; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create a group in the file. try { if (file_id >= 0) group_id = H5.H5Gcreate(file_id, "/" + GROUPNAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Close the group. try { if (group_id >= 0) H5.H5Gclose(group_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5_CreateGroup.CreateGroup(); } } hdf-java-2.11.0/examples/intro/H5Object_CreateGroup.java0000644002344600011330000000231712326542262021277 0ustar byrnhdf// // Creating and closing a group. package examples.intro; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; public class H5Object_CreateGroup { private static String FILENAME = "H5Object_CreateGroup.h5"; private static String GROUPNAME = "MyGroup"; private static void CreateGroup() { H5File file = null; H5Group grp = null; int group_id = -1; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create a group in the file. try { grp = (H5Group)file.createGroup("/" + GROUPNAME, null); group_id = grp.open(); } catch (Exception e) { e.printStackTrace(); } // Close the group. try { if (group_id >= 0) grp.close(group_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Object_CreateGroup.CreateGroup(); } } hdf-java-2.11.0/examples/intro/H5Object_ReadWrite.java0000644002344600011330000000353612326542262020751 0ustar byrnhdf// // Writing and reading an existing dataset. package examples.intro; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; public class H5Object_ReadWrite { private static String FILENAME = "H5Object_ReadWrite.h5"; private static String DATASETNAME = "dset"; private static final int DIM_X = 4; private static final int DIM_Y = 6; private static final int DATATYPE_SIZE = 4; private static void ReadWriteDataset() { H5File file = null; Dataset dset = null; int[][] dset_data = new int[DIM_X][DIM_Y]; int[] dset_data_read = new int[DIM_X*DIM_Y]; long[] dims = { DIM_X, DIM_Y }; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_BE, -1); // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * 6 + jndx + 1; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { dset = file.createScalarDS("/" + DATASETNAME, null, typeInt, dims, null, null, 0, dset_data); } catch (Exception e) { e.printStackTrace(); } try { dset.init(); dset_data_read = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Object_ReadWrite.ReadWriteDataset(); } } hdf-java-2.11.0/examples/intro/H5_CreateGroupAbsoluteRelative.java0000644002344600011330000000445512326542262023350 0ustar byrnhdf// // Creating groups using absolute and relative names. package examples.intro; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5_CreateGroupAbsoluteRelative { private static String FILENAME = "H5_CreateGroupAbsoluteRelative.h5"; private static String GROUPNAME = "MyGroup"; private static String GROUPNAME_A = "GroupA"; private static String GROUPNAME_B = "GroupB"; private static void CreateGroupAbsoluteAndRelative() { int file_id = -1; int group1_id = -1; int group2_id = -1; int group3_id = -1; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create a group named "/MyGroup" in the file. try { if (file_id >= 0) group1_id = H5.H5Gcreate(file_id, "/" + GROUPNAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create group "Group_A" in group "MyGroup" using absolute name. try { if (file_id >= 0) group2_id = H5.H5Gcreate(file_id, "/" + GROUPNAME + "/" + GROUPNAME_A, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create group "Group_B" in group "MyGroup" using relative name. try { if (group1_id >= 0) group3_id = H5.H5Gcreate(group1_id, GROUPNAME_B, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Close the group3. try { if (group3_id >= 0) H5.H5Gclose(group3_id); } catch (Exception e) { e.printStackTrace(); } // Close the group2. try { if (group2_id >= 0) H5.H5Gclose(group2_id); } catch (Exception e) { e.printStackTrace(); } // Close the group1. try { if (group1_id >= 0) H5.H5Gclose(group1_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5_CreateGroupAbsoluteRelative.CreateGroupAbsoluteAndRelative(); } } hdf-java-2.11.0/examples/intro/Makefile.in0000644002344600011330000000272212326542262016576 0ustar byrnhdf#/**************************************************************************** # * Copyright by The HDF Group. * # * Copyright by the Board of Trustees of the University of Illinois. * # * All rights reserved. * # * * # * This file is part of HDF Java Products. The full HDF Java copyright * # * notice, including terms governing use, modification, and redistribution, * # * is contained in the file, COPYING. COPYING can be found at the root of * # * the source code distribution tree. You can also access it online at * # * http://www.hdfgroup.org/products/licenses.html. If you do not have * # * access to the file, you may request a copy from help@hdfgroup.org. * # ****************************************************************************/ TOP = ../.. DIR = examples/intro SUBDIRS = NULL JAVAC = @JAVAC@ JAVADOC = @JAVADOC@ JAR = @JAR@ FIND = @FIND@ RM = @RM@ SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ CLASSPATH=@CLASSPATH@ JH45INSTALLDIR=@JH45INST@ H45INC=@H45INC@ H4INC=@HDF4INC@ H5INC=@HDF5INC@ JAVA_SRCS = \ H5_CreateAttribute.java \ H5_CreateDataset.java \ H5_CreateFile.java \ H5_CreateGroup.java \ H5_CreateGroupAbsoluteRelative.java \ H5_CreateGroupDataset.java \ H5_ReadWrite.java include $(TOP)/config/Rules.mk hdf-java-2.11.0/examples/intro/CMakeLists.txt0000644002344600011330000001244712352113716017273 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_EXAMPLES_INTRO Java) set (CMAKE_VERBOSE_MAKEFILE 1) INCLUDE_DIRECTORIES ( ${JAVA_NCSA_HDF_HDF5_BINARY_DIR} ${HDFJAVA_LIB_DIR} ) set (HDF_JAVA_EXAMPLES H5_CreateAttribute H5_CreateDataset H5_CreateFile H5_CreateGroup H5_CreateGroupAbsoluteRelative H5_CreateGroupDataset H5_ReadWrite ) set (HDF_JAVA_OBJECT_EXAMPLES H5Object_CreateAttribute H5Object_CreateDataset H5Object_CreateFile H5Object_CreateGroup H5Object_CreateGroupAbsoluteRelative H5Object_CreateGroupDataset H5Object_ReadWrite ) if (WIN32) set (CMAKE_JAVA_INCLUDE_FLAG_SEP ";") else (WIN32) set (CMAKE_JAVA_INCLUDE_FLAG_SEP ":") endif (WIN32) set (CMAKE_JAVA_INCLUDE_PATH "${HDFJAVA_HDF5_JARS}") set (CMAKE_JAVA_CLASSPATH ".") foreach (CMAKE_INCLUDE_PATH ${CMAKE_JAVA_INCLUDE_PATH}) set (CMAKE_JAVA_CLASSPATH "${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${CMAKE_INCLUDE_PATH}") endforeach (CMAKE_INCLUDE_PATH) foreach (example ${HDF_JAVA_EXAMPLES}) file (WRITE ${PROJECT_BINARY_DIR}/Manifest.txt "Main-Class: examples.intro.${example} " ) add_jar (${example} MANIFEST ${PROJECT_BINARY_DIR}/Manifest.txt ${example}.java) get_target_property (${example}_JAR_FILE ${example} JAR_FILE) # install_jar (${example} ${HJAVA_INSTALL_DATA_DIR}/examples examples) get_target_property (${example}_CLASSPATH ${example} CLASSDIR) add_dependencies (${example} ${HDFJAVA_NCSA_HDF5_LIB_TARGET}) endforeach (example ${HDF_JAVA_EXAMPLES}) set (CMAKE_JAVA_INCLUDE_PATH "${HDFJAVA_HDF5_JARS};${HDFJAVA_HDF4_JARS};${HDFJAVA_OBJECT_JARS};${HDFJAVA_LOGGING_JAR};${HDFJAVA_LOGGING_NOP_JAR}") set (CMAKE_JAVA_CLASSPATH ".") foreach (HDFJAVA_JAR ${CMAKE_JAVA_INCLUDE_PATH}) set (CMAKE_JAVA_CLASSPATH "${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${HDFJAVA_JAR}") endforeach (HDFJAVA_JAR) foreach (example ${HDF_JAVA_OBJECT_EXAMPLES}) file (WRITE ${PROJECT_BINARY_DIR}/Manifest.txt "Main-Class: examples.intro.${example} " ) add_jar (${example} MANIFEST ${PROJECT_BINARY_DIR}/Manifest.txt ${example}.java) get_target_property (${example}_JAR_FILE ${example} JAR_FILE) # install_jar (${example} ${HJAVA_INSTALL_DATA_DIR}/examples examples) get_target_property (${example}_CLASSPATH ${example} CLASSDIR) add_dependencies (${example} ${HDFJAVA_NCSA_H5_LIB_TARGET}) endforeach (example ${HDF_JAVA_OBJECT_EXAMPLES}) MACRO (ADD_H5_TEST resultfile resultcode) add_test ( NAME intro-${resultfile} COMMAND "${CMAKE_COMMAND}" -D "TEST_TESTER=${CMAKE_Java_RUNTIME};${CMAKE_Java_RUNTIME_FLAGS}" -D "TEST_PROGRAM=examples.intro.${resultfile}" -D "TEST_ARGS:STRING=${ARGN}" -D "TEST_CLASSPATH:STRING=${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${${resultfile}_JAR_FILE}" -D "TEST_LIBRARY_DIRECTORY=${CMAKE_TEST_OUTPUT_DIRECTORY}" -D "TEST_FOLDER=${HDFJAVA_EXAMPLES_BINARY_DIR}" -D "TEST_OUTPUT=intro/${resultfile}.out" -D "TEST_EXPECT=${resultcode}" -D "TEST_REFERENCE=intro/${resultfile}.txt" -P "${HDF_RESOURCES_DIR}/runTest.cmake" ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (intro-${resultfile} PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "intro-${resultfile}") ENDMACRO (ADD_H5_TEST file) if (BUILD_TESTING) foreach (example ${HDF_JAVA_EXAMPLES}) add_test ( NAME intro-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ${example}.out ${example}.out.err ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (intro-${example}-clearall-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") add_test ( NAME intro-${example}-copy-objects COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDFJAVA_EXAMPLES_SOURCE_DIR}/testfiles/examples.intro.${example}.txt ${HDFJAVA_EXAMPLES_INTRO_BINARY_DIR}/${example}.txt ) set_tests_properties (intro-${example}-copy-objects PROPERTIES DEPENDS intro-${example}-clearall-objects) set (last_test "intro-${example}-copy-objects") ADD_H5_TEST (${example} 0) endforeach (example ${HDF_JAVA_EXAMPLES}) foreach (example ${HDF_JAVA_OBJECT_EXAMPLES}) add_test ( NAME intro-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ${example}.out ${example}.out.err ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (intro-${example}-clearall-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") add_test ( NAME intro-${example}-copy-objects COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDFJAVA_EXAMPLES_SOURCE_DIR}/testfiles/examples.intro.${example}.txt ${HDFJAVA_EXAMPLES_INTRO_BINARY_DIR}/${example}.txt ) set_tests_properties (intro-${example}-copy-objects PROPERTIES DEPENDS intro-${example}-clearall-objects) set (last_test "intro-${example}-copy-objects") ADD_H5_TEST (${example} 0) endforeach (example ${HDF_JAVA_OBJECT_EXAMPLES}) endif (BUILD_TESTING) hdf-java-2.11.0/examples/intro/H5Object_CreateDataset.java0000644002344600011330000000266512326542262021576 0ustar byrnhdf// // Creating and closing a dataset. package examples.intro; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; public class H5Object_CreateDataset { private static String FILENAME = "H5Object_CreateDataset.h5"; private static String DATASETNAME = "dset"; private static final int DIM_X = 4; private static final int DIM_Y = 6; private static final int DATATYPE_SIZE = 4; private static void CreateDataset() { H5File file = null; Dataset dset = null; int[][] dset_data = new int[DIM_X][DIM_Y]; long[] dims = { DIM_X, DIM_Y }; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_BE, -1); // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { dset = file.createScalarDS("/" + DATASETNAME, null, typeInt, dims, null, null, 0, dset_data); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Object_CreateDataset.CreateDataset(); } } hdf-java-2.11.0/examples/intro/H5Object_CreateAttribute.java0000644002344600011330000000376612375712347022166 0ustar byrnhdf// // Creating a dataset attribute. package examples.intro; import ncsa.hdf.object.Attribute; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; import ncsa.hdf.object.h5.H5ScalarDS; public class H5Object_CreateAttribute { private static String FILENAME = "H5Object_CreateAttribute.h5"; private static String DATASETNAME = "dset"; private static final int DIM_X = 4; private static final int DIM_Y = 6; private static String DATASETATTRIBUTE = "Units"; private static final int DATATYPE_SIZE = 4; private static void CreateDatasetAttribute() { H5File file = null; H5ScalarDS dset = null; Attribute attr = null; int[][] dset_data = new int[DIM_X][DIM_Y]; long[] dims1 = { DIM_X, DIM_Y }; long[] dims = { 2 }; int[] attr_data = { 100, 200 }; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_BE, -1); // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { final H5Group rootGrp = (H5Group)file.get("/"); dset = (H5ScalarDS) H5ScalarDS.create("/" + DATASETNAME, rootGrp, typeInt, dims1, null, null, 0, dset_data); } catch (Exception e) { e.printStackTrace(); } // Create a dataset attribute. try { attr = new Attribute(DATASETATTRIBUTE, typeInt, dims, attr_data); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Object_CreateAttribute.CreateDatasetAttribute(); } } hdf-java-2.11.0/examples/intro/H5_CreateAttribute.java0000644002344600011330000000612412326542262021017 0ustar byrnhdf// // Creating a dataset attribute. package examples.intro; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5_CreateAttribute { private static String FILENAME = "H5_CreateAttribute.h5"; private static String DATASETNAME = "dset"; private static final int DIM_X = 4; private static final int DIM_Y = 6; private static String DATASETATTRIBUTE = "Units"; private static void CreateDatasetAttribute() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims1 = { DIM_X, DIM_Y }; long[] dims = { 2 }; int[] attr_data = { 100, 200 }; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create the data space for the dataset. try { dataspace_id = H5.H5Screate_simple(2, dims1, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, "/" + DATASETNAME, HDF5Constants.H5T_STD_I32BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Create the data space for the attribute. try { dataspace_id = H5.H5Screate_simple(1, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create a dataset attribute. try { if ((dataset_id >= 0) && (dataspace_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, DATASETATTRIBUTE, HDF5Constants.H5T_STD_I32BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the attribute data. try { if (attribute_id >= 0) H5.H5Awrite(attribute_id, HDF5Constants.H5T_NATIVE_INT, attr_data); } catch (Exception e) { e.printStackTrace(); } // Close the attribute. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } // Close the dataspace. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close to the dataset. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5_CreateAttribute.CreateDatasetAttribute(); } } hdf-java-2.11.0/examples/intro/H5_CreateDataset.java0000644002344600011330000000337112326542262020442 0ustar byrnhdf// // Creating and closing a dataset. package examples.intro; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5_CreateDataset { private static String FILENAME = "H5_CreateDataset.h5"; private static String DATASETNAME = "dset"; private static final int DIM_X = 4; private static final int DIM_Y = 6; private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create the data space for the dataset. try { dataspace_id = H5.H5Screate_simple(2, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, "/" + DATASETNAME, HDF5Constants.H5T_STD_I32BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5_CreateDataset.CreateDataset(); } } hdf-java-2.11.0/examples/intro/H5_ReadWrite.java0000644002344600011330000000473512326542262017624 0ustar byrnhdf// // Writing and reading an existing dataset. package examples.intro; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5_ReadWrite { private static String FILENAME = "H5_ReadWrite.h5"; private static String DATASETNAME = "dset"; private static final int DIM_X = 4; private static final int DIM_Y = 6; private static void ReadWriteDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * 6 + jndx + 1; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create the data space for the dataset. try { dataspace_id = H5.H5Screate_simple(2, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, "/" + DATASETNAME, HDF5Constants.H5T_STD_I32BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Close the dataset. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5_ReadWrite.ReadWriteDataset(); } } hdf-java-2.11.0/examples/intro/H5Object_CreateGroupDataset.java0000644002344600011330000000520612326542262022605 0ustar byrnhdf// // Create two datasets within groups. package examples.intro; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; public class H5Object_CreateGroupDataset { private static String FILENAME = "H5Object_CreateGroupDataset.h5"; private static String GROUPNAME = "MyGroup"; private static String GROUPNAME_A = "GroupA"; private static String DATASETNAME1 = "dset1"; private static String DATASETNAME2 = "dset2"; private static final int DIM1_X = 3; private static final int DIM1_Y = 3; private static final int DIM2_X = 2; private static final int DIM2_Y = 10; private static final int DATATYPE_SIZE = 4; private static void h5_crtgrpd() { H5File file = null; H5Group grp = null; Dataset dset = null; int[][] dset1_data = new int[DIM1_X][DIM1_Y]; int[][] dset2_data = new int[DIM2_X][DIM2_Y]; long[] dims1 = { DIM1_X, DIM1_Y }; long[] dims2 = { DIM2_X, DIM2_Y }; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_BE, -1); // Initialize the first dataset. for (int indx = 0; indx < DIM1_X; indx++) for (int jndx = 0; jndx < DIM1_Y; jndx++) dset1_data[indx][jndx] = jndx + 1; // Initialize the second dataset. for (int indx = 0; indx < DIM2_X; indx++) for (int jndx = 0; jndx < DIM2_Y; jndx++) dset2_data[indx][jndx] = jndx + 1; // Open an existing file or create a new file. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create the group for the first dataset. try { grp = (H5Group)file.createGroup("/" + GROUPNAME, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset in group "MyGroup". // Write the first dataset. try { dset = file.createScalarDS("/" + GROUPNAME + "/" + DATASETNAME1, grp, typeInt, dims1, null, null, 0, dset1_data); } catch (Exception e) { e.printStackTrace(); } // Create the second dataset in group "Group_A". try { dset = file.createScalarDS("/" + GROUPNAME + "/" + DATASETNAME2, grp, typeInt, dims2, null, null, 0, dset2_data); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Object_CreateGroupDataset.h5_crtgrpd(); } } hdf-java-2.11.0/examples/intro/H5Object_CreateGroupAbsoluteRelative.java0000644002344600011330000000432512326542262024473 0ustar byrnhdf// // Creating groups using absolute and relative names. package examples.intro; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; public class H5Object_CreateGroupAbsoluteRelative { private static String FILENAME = "H5Object_CreateGroupAbsoluteRelative.h5"; private static String GROUPNAME = "MyGroup"; private static String GROUPNAME_A = "GroupA"; private static String GROUPNAME_B = "GroupB"; private static void CreateGroupAbsoluteAndRelative() { H5File file = null; H5Group grp1 = null; H5Group grp2 = null; H5Group grp3 = null; int group1_id = -1; int group2_id = -1; int group3_id = -1; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create a group named "/MyGroup" in the file. try { grp1 = (H5Group)file.createGroup("/" + GROUPNAME, null); group1_id = grp1.open(); } catch (Exception e) { e.printStackTrace(); } // Create group "Group_A" in group "MyGroup" using absolute name. try { grp2 = (H5Group)file.createGroup("/" + GROUPNAME + "/" + GROUPNAME_A, null); group2_id = grp2.open(); } catch (Exception e) { e.printStackTrace(); } // Create group "Group_B" in group "MyGroup" using relative name. try { grp3 = (H5Group)file.createGroup(GROUPNAME_B, grp1); group3_id = grp3.open(); } catch (Exception e) { e.printStackTrace(); } // Close the group3. try { if (group3_id >= 0) grp3.close(group3_id); } catch (Exception e) { e.printStackTrace(); } // Close the group2. try { if (group2_id >= 0) grp2.close(group2_id); } catch (Exception e) { e.printStackTrace(); } // Close the group1. try { if (group1_id >= 0) grp1.close(group1_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Object_CreateGroupAbsoluteRelative.CreateGroupAbsoluteAndRelative(); } } hdf-java-2.11.0/examples/intro/H5_CreateFile.java0000644002344600011330000000132512326542262017731 0ustar byrnhdf// // Creating and closing a file. package examples.intro; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5_CreateFile { static final String FILENAME = "H5_CreateFile.h5"; private static void CreateFile() { int file_id = -1; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5_CreateFile.CreateFile(); } } hdf-java-2.11.0/examples/intro/H5_CreateGroupDataset.java0000644002344600011330000001153412326542262021457 0ustar byrnhdf// // Create two datasets within groups. package examples.intro; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5_CreateGroupDataset { private static String FILENAME = "H5_CreateGroupDataset.h5"; private static String GROUPNAME = "MyGroup"; private static String GROUPNAME_A = "GroupA"; private static String DATASETNAME1 = "dset1"; private static String DATASETNAME2 = "dset2"; private static final int DIM1_X = 3; private static final int DIM1_Y = 3; private static final int DIM2_X = 2; private static final int DIM2_Y = 10; private static void h5_crtgrpd() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int group_id = -1; int group1_id = -1; int group2_id = -1; int[][] dset1_data = new int[DIM1_X][DIM1_Y]; int[][] dset2_data = new int[DIM2_X][DIM2_Y]; long[] dims1 = { DIM1_X, DIM1_Y }; long[] dims2 = { DIM2_X, DIM2_Y }; // Initialize the first dataset. for (int indx = 0; indx < DIM1_X; indx++) for (int jndx = 0; jndx < DIM1_Y; jndx++) dset1_data[indx][jndx] = jndx + 1; // Initialize the second dataset. for (int indx = 0; indx < DIM2_X; indx++) for (int jndx = 0; jndx < DIM2_Y; jndx++) dset2_data[indx][jndx] = jndx + 1; // Create a file. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); // Create a group named "/MyGroup" in the file. if (file_id >= 0) { group1_id = H5.H5Gcreate(file_id, "/" + GROUPNAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); // Create group "Group_A" in group "MyGroup" using absolute name. if (group1_id >= 0) { group2_id = H5.H5Gcreate(file_id, "/" + GROUPNAME + "/" + GROUPNAME_A, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); if (group2_id >= 0) H5.H5Gclose(group2_id); } if (group1_id >= 0) H5.H5Gclose(group1_id); } } catch (Exception e) { e.printStackTrace(); } // Create the data space for the first dataset. try { dataspace_id = H5.H5Screate_simple(2, dims1, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset in group "MyGroup". try { if ((file_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, "/" + GROUPNAME + "/" + DATASETNAME1, HDF5Constants.H5T_STD_I32BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the first dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset1_data); } catch (Exception e) { e.printStackTrace(); } // Close the data space for the first dataset. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); dataspace_id = -1; } catch (Exception e) { e.printStackTrace(); } // Close the first dataset. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); dataset_id = -1; } catch (Exception e) { e.printStackTrace(); } // Open an existing group of the specified file. try { if (file_id >= 0) group_id = H5.H5Gopen(file_id, "/" + GROUPNAME + "/" + GROUPNAME_A, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create the data space for the second dataset. try { dataspace_id = H5.H5Screate_simple(2, dims2, null); } catch (Exception e) { e.printStackTrace(); } // Create the second dataset in group "Group_A". try { if ((group_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(group_id, DATASETNAME2, HDF5Constants.H5T_STD_I32BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the second dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset2_data); } catch (Exception e) { e.printStackTrace(); } // Close the data space for the second dataset. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the second dataset. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the group. try { if (group_id >= 0) H5.H5Gclose(group_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5_CreateGroupDataset.h5_crtgrpd(); } } hdf-java-2.11.0/examples/datasets/0000755002344600011330000000000012441355011015173 5ustar byrnhdfhdf-java-2.11.0/examples/datasets/H5ObjectEx_D_UnlimitedMod.java0000644002344600011330000002140112326542262022661 0ustar byrnhdf/************************************************************ This example shows how to create and extend an unlimited dataset. The program first writes integers to a dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, outputs it to the screen, extends the dataset, and writes new data to the entire extended dataset. Finally it reopens the file again, reads back the data, and utputs it to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_UnlimitedMod { private static String FILENAME = "H5ObjectEx_D_UnlimitedMod.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int EDIM_X = 6; private static final int EDIM_Y = 10; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; private static void writeUnlimited() { H5File file = null; Dataset dset = null; int file_id = -1; int dcpl_id = -1; int dataspace_id = -1; int dataset_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; long[] maxdims = { HDF5Constants.H5S_UNLIMITED, HDF5Constants.H5S_UNLIMITED }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace with unlimited dimensions. try { dataspace_id = H5.H5Screate_simple(RANK, dims, maxdims); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the chunk size. try { if (dcpl_id >= 0) H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } catch (Exception e) { e.printStackTrace(); } // Create the unlimited dataset. try { if ((file_id >= 0) && (dataspace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, dataspace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void extendUnlimited() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] extdims = { EDIM_X, EDIM_Y }; int[] dset_data; int[][] extend_dset_data = new int[EDIM_X][EDIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.WRITE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. This is a // two dimensional dataset so the dynamic allocation must be done // in steps. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]*(int) dims[1]]; // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset before extension:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Extend the dataset. try { dset.extend(extdims); } catch (Exception e) { e.printStackTrace(); } // Initialize data for writing to the extended dataset. for (int indx = 0; indx < EDIM_X; indx++) for (int jndx = 0; jndx < EDIM_Y; jndx++) extend_dset_data[indx][jndx] = jndx; // Write the data to the extended dataset. try { dset.init(); dset.write(extend_dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readUnlimited() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; int[] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for the read buffer as before. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]*(int) dims[1]]; // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after extension:"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < dims[1]; jndx++) System.out.print(dset_data[(int) (indx*dims[1]+jndx)] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_UnlimitedMod.writeUnlimited(); H5ObjectEx_D_UnlimitedMod.extendUnlimited(); H5ObjectEx_D_UnlimitedMod.readUnlimited(); } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Hyperslab.java0000644002344600011330000001670412326542262022232 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset by hyberslabs. The program first writes integers in a hyperslab selection to a dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. Finally it reads the data again using a different hyperslab selection, and outputs the result to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Hyperslab { private static String FILENAME = "H5ObjectEx_D_Hyperslab.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 6; private static final int DIM_Y = 8; private static final int RANK = 2; private static final int DATATYPE_SIZE = 4; private static void writeHyperslab() { H5File file = null; Dataset dset = null; int file_id = -1; int filespace_id = -1; int dataset_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize data to "1", to make it easier to see the selections. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = 1; // Print the data to the screen. System.out.println("Original Data:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. We will use all default properties for this example. try { if ((file_id >= 0) && (filespace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Define and select the first part of the hyperslab selection. long[] start = { 0, 0 }; long[] stride = { 3, 3 }; long[] count = { 2, 3 }; long[] block = { 2, 2 }; try { if ((filespace_id >= 0)) H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_SET, start, stride, count, block); } catch (Exception e) { e.printStackTrace(); } // Define and select the second part of the hyperslab selection, // which is subtracted from the first selection by the use of // H5S_SELECT_NOTB block[0] = 1; block[1] = 1; try { if ((filespace_id >= 0)) { H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_NOTB, start, stride, count, block); // Write the data to the dataset. if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, filespace_id, HDF5Constants.H5P_DEFAULT, dset_data); } } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readHyperslab() { H5File file = null; Dataset dset = null; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data as written to disk by hyberslabs:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // Initialize the read array. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx*DIM_Y+jndx] = 0; // Define and select the hyperslab to use for reading. try { if (dataset_id >= 0) { filespace_id = H5.H5Dget_space(dataset_id); long[] start = { 0, 1 }; long[] stride = { 4, 4 }; long[] count = { 2, 2 }; long[] block = { 2, 3 }; if (filespace_id >= 0) { H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_SET, start, stride, count, block); // Read the data using the previously defined hyperslab. if ((dataset_id >= 0) && (filespace_id >= 0)) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, filespace_id, HDF5Constants.H5P_DEFAULT, dset_data); } } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data as read from disk by hyberslab:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_Hyperslab.writeHyperslab(); H5ObjectEx_D_Hyperslab.readHyperslab(); } } hdf-java-2.11.0/examples/datasets/H5Ex_D_UnlimitedGzip.java0000644002344600011330000003766612326542262021750 0ustar byrnhdf/************************************************************ This example shows how to create and extend an unlimited dataset with gzip compression. The program first writes integers to a gzip compressed dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, outputs it to the screen, extends the dataset, and writes new data to the extended portions of the dataset. Finally it reopens the file again, reads back the data, and outputs it to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_UnlimitedGzip { private static String FILENAME = "H5Ex_D_UnlimitedGzip.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int EDIM_X = 6; private static final int EDIM_Y = 10; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkGzipFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_DEFLATE); if (available == 0) { System.out.println("gzip filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_DEFLATE); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("gzip filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeUnlimited() { int file_id = -1; int dcpl_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; long[] maxdims = { HDF5Constants.H5S_UNLIMITED, HDF5Constants.H5S_UNLIMITED }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace with unlimited dimensions. try { dataspace_id = H5.H5Screate_simple(RANK, dims, maxdims); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, add the gzip compression // filter. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_deflate(dcpl_id, 9); // Set the chunk size. H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } // Create the unlimited dataset. try { if ((file_id >= 0) && (dataspace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void extendUnlimited() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] extdims = { EDIM_X, EDIM_Y }; long[] start = { 0, 0 }; long[] count = new long[2]; int[][] dset_data; int[][] extend_dset_data = new int[EDIM_X][EDIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDWR, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. This is a // two dimensional dataset so the dynamic allocation must be done // in steps. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]][(int) dims[1]]; // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset before extension:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Extend the dataset. try { if (dataset_id >= 0) H5.H5Dset_extent(dataset_id, extdims); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataspace for the newly extended dataset. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Initialize data for writing to the extended dataset. for (int indx = 0; indx < EDIM_X; indx++) for (int jndx = 0; jndx < EDIM_Y; jndx++) extend_dset_data[indx][jndx] = jndx; // Select the entire dataspace. try { if (dataspace_id >= 0) { H5.H5Sselect_all(dataspace_id); // Subtract a hyperslab reflecting the original dimensions from the // selection. The selection now contains only the newly extended // portions of the dataset. count[0] = dims[0]; count[1] = dims[1]; H5.H5Sselect_hyperslab(dataspace_id, HDF5Constants.H5S_SELECT_NOTB, start, null, count, null); // Write the data to the selected portion of the dataset. if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, dataspace_id, HDF5Constants.H5P_DEFAULT, extend_dset_data); } } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readUnlimited() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for the read buffer as before. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]][(int) dims[1]]; // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after extension:"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < dims[1]; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. if (H5Ex_D_UnlimitedGzip.checkGzipFilter()) { H5Ex_D_UnlimitedGzip.writeUnlimited(); H5Ex_D_UnlimitedGzip.extendUnlimited(); H5Ex_D_UnlimitedGzip.readUnlimited(); } } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_UnlimitedGzip.java0000644002344600011330000004045212326542262023062 0ustar byrnhdf/************************************************************ This example shows how to create and extend an unlimited dataset with gzip compression. The program first writes integers to a gzip compressed dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, outputs it to the screen, extends the dataset, and writes new data to the extended portions of the dataset. Finally it reopens the file again, reads back the data, and outputs it to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_UnlimitedGzip { private static String FILENAME = "H5ObjectEx_D_UnlimitedGzip.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int EDIM_X = 6; private static final int EDIM_Y = 10; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkGzipFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_DEFLATE); if (available == 0) { System.out.println("gzip filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_DEFLATE); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("gzip filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeUnlimited() { H5File file = null; Dataset dset = null; int file_id = -1; int dcpl_id = -1; int dataspace_id = -1; int dataset_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; long[] maxdims = { HDF5Constants.H5S_UNLIMITED, HDF5Constants.H5S_UNLIMITED }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace with unlimited dimensions. try { dataspace_id = H5.H5Screate_simple(RANK, dims, maxdims); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, add the gzip compression // filter. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_deflate(dcpl_id, 9); // Set the chunk size. H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } // Create the unlimited dataset. try { if ((file_id >= 0) && (dataspace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, dataspace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void extendUnlimited() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] extdims = { EDIM_X, EDIM_Y }; long[] start = { 0, 0 }; long[] count = new long[2]; int[] dset_data; int[][] extend_dset_data = new int[EDIM_X][EDIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.WRITE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. This is a // two dimensional dataset so the dynamic allocation must be done // in steps. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]*(int) dims[1]]; // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset before extension:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Extend the dataset. try { dset.extend(extdims); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataspace for the newly extended dataset. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Initialize data for writing to the extended dataset. for (int indx = 0; indx < EDIM_X; indx++) for (int jndx = 0; jndx < EDIM_Y; jndx++) extend_dset_data[indx][jndx] = jndx; // Select the entire dataspace. try { if (dataspace_id >= 0) { H5.H5Sselect_all(dataspace_id); // Subtract a hyperslab reflecting the original dimensions from the // selection. The selection now contains only the newly extended // portions of the dataset. count[0] = dims[0]; count[1] = dims[1]; H5.H5Sselect_hyperslab(dataspace_id, HDF5Constants.H5S_SELECT_NOTB, start, null, count, null); // Write the data to the selected portion of the dataset. if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, dataspace_id, HDF5Constants.H5P_DEFAULT, extend_dset_data); } } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readUnlimited() { H5File file = null; Dataset dset = null; int dataspace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; int[] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for the read buffer as before. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]*(int) dims[1]]; // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after extension:"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < dims[1]; jndx++) System.out.print(dset_data[(int) (indx*dims[1]+jndx)] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. if (H5ObjectEx_D_UnlimitedGzip.checkGzipFilter()) { H5ObjectEx_D_UnlimitedGzip.writeUnlimited(); H5ObjectEx_D_UnlimitedGzip.extendUnlimited(); H5ObjectEx_D_UnlimitedGzip.readUnlimited(); } } } hdf-java-2.11.0/examples/datasets/H5Ex_D_UnlimitedAdd.java0000644002344600011330000002227312326542262021513 0ustar byrnhdf/************************************************************ This example shows how to create and extend an unlimited dataset. The program first writes integers to a dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, outputs it to the screen, extends the dataset, and writes new data to the extended portions of the dataset. Finally it reopens the file again, reads back the data, and outputs it to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_UnlimitedAdd { private static String FILENAME = "H5Ex_D_UnlimitedAdd.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int EDIM_X = 6; private static final int EDIM_Y = 10; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; private static void writeUnlimited() { int file_id = -1; int dcpl_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; long[] maxdims = { HDF5Constants.H5S_UNLIMITED, HDF5Constants.H5S_UNLIMITED }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace with unlimited dimensions. try { dataspace_id = H5.H5Screate_simple(RANK, dims, maxdims); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the chunk size. try { if (dcpl_id >= 0) H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } catch (Exception e) { e.printStackTrace(); } // Create the unlimited dataset. try { if ((file_id >= 0) && (dataspace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void extendUnlimited() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] extdims = { EDIM_X, EDIM_Y }; long[] start = { 0, 0 }; long[] count = new long[2]; int[][] dset_data; int[][] extend_dset_data = new int[EDIM_X][EDIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDWR, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. This is a // two dimensional dataset so the dynamic allocation must be done // in steps. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]][(int) dims[1]]; // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset before extension:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Extend the dataset. try { if (dataset_id >= 0) H5.H5Dset_extent(dataset_id, extdims); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataspace for the newly extended dataset. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Initialize data for writing to the extended dataset. for (int indx = 0; indx < EDIM_X; indx++) for (int jndx = 0; jndx < EDIM_Y; jndx++) extend_dset_data[indx][jndx] = jndx; // Select the entire dataspace. try { if (dataspace_id >= 0) { H5.H5Sselect_all(dataspace_id); // Subtract a hyperslab reflecting the original dimensions from the // selection. The selection now contains only the newly extended // portions of the dataset. count[0] = dims[0]; count[1] = dims[1]; H5.H5Sselect_hyperslab(dataspace_id, HDF5Constants.H5S_SELECT_NOTB, start, null, count, null); // Write the data to the selected portion of the dataset. if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, dataspace_id, HDF5Constants.H5P_DEFAULT, extend_dset_data); } } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readUnlimited() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for the read buffer as before. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]][(int) dims[1]]; // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after extension:"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < dims[1]; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_UnlimitedAdd.writeUnlimited(); H5Ex_D_UnlimitedAdd.extendUnlimited(); H5Ex_D_UnlimitedAdd.readUnlimited(); } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Transform.java0000644002344600011330000001602512326542262022250 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using a data transform expression. The program first writes integers to a dataset using the transform expression TRANSFORM, then closes the file. Next, it reopens the file, reads back the data without a transform, and outputs the data to the screen. Finally it reads the data using the transform expression RTRANSFORM and outputs the results to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; public class H5ObjectEx_D_Transform { private static String FILENAME = "H5ObjectEx_D_Transform.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static String TRANSFORM = "x+1"; private static String RTRANSFORM = "x-1"; private static void writeData() { H5File file = null; Dataset dset = null; int dataset_id = -1; int dxpl_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, Datatype.NATIVE, Datatype.NATIVE, -1); // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; //Output the data to the screen. System.out.println("Original Data:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(" " + dset_data[indx][jndx]+ " "); System.out.println("]"); } //Create a new file using the default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset transfer property list and define the transform expression. try { dxpl_id = H5.H5Pcreate (HDF5Constants.H5P_DATASET_XFER); if (dxpl_id >= 0) H5.H5Pset_data_transform(dxpl_id, TRANSFORM); } catch (Exception e) { e.printStackTrace(); } //Create the dataset using the default properties. Unfortunately we must save as //a native type or the transform operation will fail. try { dset = file.createScalarDS("/" + DATASETNAME, null, typeInt, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } //Write the data to the dataset using the dataset transfer property list. try { if ((dataset_id >= 0) && (dxpl_id >= 0)) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, dxpl_id, dset_data); } catch (Exception e) { e.printStackTrace(); } //End access to the dataset and release resources used by it. try { if (dxpl_id >= 0) H5.H5Pclose(dxpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } //Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readData() { H5File file = null; Dataset dset = null; int dataset_id = -1; int dxpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; //Open an existing file using the default properties. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } //Open an existing dataset using the default properties. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } //Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } //Output the data to the screen. System.out.println("Data as written with transform '" + TRANSFORM + "'"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(" " + dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } //Create the dataset transfer property list and define the transform expression. try { dxpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_XFER); if (dxpl_id >= 0) H5.H5Pset_data_transform(dxpl_id, RTRANSFORM); } catch (Exception e) { e.printStackTrace(); } //Read the data using the dataset transfer property list. try { if ((dataset_id >= 0) && (dxpl_id >= 0)) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, dxpl_id, dset_data); } catch(Exception e) { e.printStackTrace(); } //Output the data to the screen. System.out.println("Data as written with transform '" + TRANSFORM + "' and read with transform '" + RTRANSFORM + "'"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(" " + dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } //Close and release resources. try { if (dxpl_id >= 0) H5.H5Pclose(dxpl_id); } catch(Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch(Exception e) { e.printStackTrace(); } try { file.close(); } catch(Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_Transform.writeData(); H5ObjectEx_D_Transform.readData(); } } hdf-java-2.11.0/examples/datasets/Makefile.in0000644002344600011330000000326212326542262017253 0ustar byrnhdf#/**************************************************************************** # * Copyright by The HDF Group. * # * Copyright by the Board of Trustees of the University of Illinois. * # * All rights reserved. * # * * # * This file is part of HDF Java Products. The full HDF Java copyright * # * notice, including terms governing use, modification, and redistribution, * # * is contained in the file, COPYING. COPYING can be found at the root of * # * the source code distribution tree. You can also access it online at * # * http://www.hdfgroup.org/products/licenses.html. If you do not have * # * access to the file, you may request a copy from help@hdfgroup.org. * # ****************************************************************************/ TOP = ../.. DIR = examples/datasets SUBDIRS = NULL JAVAC = @JAVAC@ JAVADOC = @JAVADOC@ JAR = @JAR@ FIND = @FIND@ RM = @RM@ SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ CLASSPATH=@CLASSPATH@ JH45INSTALLDIR=@JH45INST@ H45INC=@H45INC@ H4INC=@HDF4INC@ H5INC=@HDF5INC@ JAVA_SRCS = \ H5Ex_D_Alloc.java \ H5Ex_D_Checksum.java \ H5Ex_D_Chunk.java \ H5Ex_D_Compact.java \ H5Ex_D_External.java \ H5Ex_D_FillValue.java \ H5Ex_D_Gzip.java \ H5Ex_D_Hyperslab.java \ H5Ex_D_ReadWrite.java \ H5Ex_D_Shuffle.java \ H5Ex_D_Szip.java \ H5Ex_D_UnlimitedAdd.java \ H5Ex_D_UnlimitedGzip.java \ H5Ex_D_UnlimitedMod.java \ H5Ex_D_Nbit.java \ H5Ex_D_Transform.java \ H5Ex_D_Sofloat.java \ H5Ex_D_Soint.java include $(TOP)/config/Rules.mk hdf-java-2.11.0/examples/datasets/H5Ex_D_Hyperslab.java0000644002344600011330000001533412326542262021101 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset by hyberslabs. The program first writes integers in a hyperslab selection to a dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. Finally it reads the data again using a different hyperslab selection, and outputs the result to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Hyperslab { private static String FILENAME = "H5Ex_D_Hyperslab.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 6; private static final int DIM_Y = 8; private static final int RANK = 2; private static void writeHyperslab() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data to "1", to make it easier to see the selections. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = 1; // Print the data to the screen. System.out.println("Original Data:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. We will use all default properties for this example. try { if ((file_id >= 0) && (filespace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Define and select the first part of the hyperslab selection. long[] start = { 0, 0 }; long[] stride = { 3, 3 }; long[] count = { 2, 3 }; long[] block = { 2, 2 }; try { if ((filespace_id >= 0)) H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_SET, start, stride, count, block); } catch (Exception e) { e.printStackTrace(); } // Define and select the second part of the hyperslab selection, // which is subtracted from the first selection by the use of // H5S_SELECT_NOTB block[0] = 1; block[1] = 1; try { if ((filespace_id >= 0)) { H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_NOTB, start, stride, count, block); // Write the data to the dataset. if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, filespace_id, HDF5Constants.H5P_DEFAULT, dset_data); } } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readHyperslab() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data as written to disk by hyberslabs:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Initialize the read array. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = 0; // Define and select the hyperslab to use for reading. try { if (dataset_id >= 0) { filespace_id = H5.H5Dget_space(dataset_id); long[] start = { 0, 1 }; long[] stride = { 4, 4 }; long[] count = { 2, 2 }; long[] block = { 2, 3 }; if (filespace_id >= 0) { H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_SET, start, stride, count, block); // Read the data using the previously defined hyperslab. if ((dataset_id >= 0) && (filespace_id >= 0)) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, filespace_id, HDF5Constants.H5P_DEFAULT, dset_data); } } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data as read from disk by hyberslab:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_Hyperslab.writeHyperslab(); H5Ex_D_Hyperslab.readHyperslab(); } } hdf-java-2.11.0/examples/datasets/H5Ex_D_ReadWrite.java0000644002344600011330000001010112326542262021021 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset. The program first writes integers to a dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_ReadWrite { private static String FILENAME = "H5Ex_D_ReadWrite.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int RANK = 2; private static void WriteDataset() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. We will use all default properties for this example. try { if ((file_id >= 0) && (filespace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int dataset_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open file using the default properties. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDWR, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open dataset using the default properties. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Close the dataset. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_ReadWrite.WriteDataset(); H5Ex_D_ReadWrite.ReadDataset(); } } hdf-java-2.11.0/examples/datasets/CMakeLists.txt0000644002344600011330000001544712352113716017753 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_EXAMPLES_DATASETS Java) set (CMAKE_VERBOSE_MAKEFILE 1) INCLUDE_DIRECTORIES ( ${JAVA_NCSA_HDF_HDF5_BINARY_DIR} ${HDFJAVA_LIB_DIR} ) set (HDF_JAVA_EXAMPLES H5Ex_D_Alloc H5Ex_D_Checksum H5Ex_D_Chunk H5Ex_D_Compact H5Ex_D_External H5Ex_D_FillValue H5Ex_D_Gzip H5Ex_D_Hyperslab H5Ex_D_ReadWrite H5Ex_D_Shuffle H5Ex_D_Szip H5Ex_D_UnlimitedAdd H5Ex_D_UnlimitedGzip H5Ex_D_UnlimitedMod H5Ex_D_Nbit H5Ex_D_Transform H5Ex_D_Sofloat H5Ex_D_Soint ) set (HDF_JAVA_OBJECT_EXAMPLES H5ObjectEx_D_Alloc H5ObjectEx_D_Checksum H5ObjectEx_D_Chunk H5ObjectEx_D_Compact H5ObjectEx_D_External H5ObjectEx_D_FillValue H5ObjectEx_D_Gzip H5ObjectEx_D_Hyperslab H5ObjectEx_D_ReadWrite H5ObjectEx_D_Shuffle H5ObjectEx_D_Szip H5ObjectEx_D_UnlimitedAdd H5ObjectEx_D_UnlimitedGzip H5ObjectEx_D_UnlimitedMod H5ObjectEx_D_Nbit H5ObjectEx_D_Transform H5ObjectEx_D_Sofloat H5ObjectEx_D_Soint ) if (WIN32) set (CMAKE_JAVA_INCLUDE_FLAG_SEP ";") else (WIN32) set (CMAKE_JAVA_INCLUDE_FLAG_SEP ":") endif (WIN32) set (CMAKE_JAVA_INCLUDE_PATH "${HDFJAVA_HDF5_JARS}") set (CMAKE_JAVA_CLASSPATH ".") foreach (HDFJAVA_JAR ${CMAKE_JAVA_INCLUDE_PATH}) set (CMAKE_JAVA_CLASSPATH "${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${HDFJAVA_JAR}") endforeach (HDFJAVA_JAR) foreach (example ${HDF_JAVA_EXAMPLES}) file (WRITE ${PROJECT_BINARY_DIR}/${example}_Manifest.txt "Main-Class: examples.datasets.${example} " ) add_jar (${example} MANIFEST ${PROJECT_BINARY_DIR}/${example}_Manifest.txt ${example}.java) get_target_property (${example}_JAR_FILE ${example} JAR_FILE) # install_jar (${example} ${HJAVA_INSTALL_DATA_DIR}/examples examples) get_target_property (${example}_CLASSPATH ${example} CLASSDIR) add_dependencies (${example} ${HDFJAVA_NCSA_HDF5_LIB_TARGET}) endforeach (example ${HDF_JAVA_EXAMPLES}) set (CMAKE_JAVA_INCLUDE_PATH "${HDFJAVA_HDF5_JARS};${HDFJAVA_HDF4_JARS};${HDFJAVA_OBJECT_JARS};${HDFJAVA_LOGGING_JAR};${HDFJAVA_LOGGING_NOP_JAR}") set (CMAKE_JAVA_CLASSPATH ".") foreach (HDFJAVA_JAR ${CMAKE_JAVA_INCLUDE_PATH}) set (CMAKE_JAVA_CLASSPATH "${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${HDFJAVA_JAR}") endforeach (HDFJAVA_JAR) foreach (example ${HDF_JAVA_OBJECT_EXAMPLES}) file (WRITE ${PROJECT_BINARY_DIR}/${example}_Manifest.txt "Main-Class: examples.datasets.${example} " ) add_jar (${example} MANIFEST ${PROJECT_BINARY_DIR}/${example}_Manifest.txt ${example}.java) get_target_property (${example}_JAR_FILE ${example} JAR_FILE) # install_jar (${example} ${HJAVA_INSTALL_DATA_DIR}/examples examples) get_target_property (${example}_CLASSPATH ${example} CLASSDIR) add_dependencies (${example} ${HDFJAVA_NCSA_H5_LIB_TARGET}) endforeach (example ${HDF_JAVA_OBJECT_EXAMPLES}) MACRO (ADD_H5_TEST resultfile resultcode) add_test ( NAME datasets-${resultfile} COMMAND "${CMAKE_COMMAND}" -D "TEST_TESTER=${CMAKE_Java_RUNTIME};${CMAKE_Java_RUNTIME_FLAGS}" -D "TEST_CLASSPATH:STRING=${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${${resultfile}_JAR_FILE}" -D "TEST_ARGS:STRING=${ARGN}" -D "TEST_PROGRAM=examples.datasets.${resultfile}" -D "TEST_LIBRARY_DIRECTORY=${CMAKE_TEST_OUTPUT_DIRECTORY}" -D "TEST_FOLDER=${HDFJAVA_EXAMPLES_BINARY_DIR}" -D "TEST_OUTPUT=datasets/${resultfile}.out" -D "TEST_EXPECT=${resultcode}" -D "TEST_REFERENCE=datasets/${resultfile}.txt" -P "${HDF_RESOURCES_DIR}/runTest.cmake" ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (datasets-${resultfile} PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "datasets-${resultfile}") ENDMACRO (ADD_H5_TEST file) if (BUILD_TESTING) foreach (example ${HDF_JAVA_EXAMPLES}) if (${example} STREQUAL "H5Ex_D_External") add_test ( NAME datasets-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.data ${example}.out ${example}.out.err ) else (${example} STREQUAL "H5Ex_D_External") add_test ( NAME datasets-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ${example}.out ${example}.out.err ) endif (${example} STREQUAL "H5Ex_D_External") if (NOT "${last_test}" STREQUAL "") set_tests_properties (datasets-${example}-clearall-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") add_test ( NAME datasets-${example}-copy-objects COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDFJAVA_EXAMPLES_SOURCE_DIR}/testfiles/examples.datasets.${example}.txt ${HDFJAVA_EXAMPLES_DATASETS_BINARY_DIR}/${example}.txt ) set_tests_properties (datasets-${example}-copy-objects PROPERTIES DEPENDS datasets-${example}-clearall-objects) set (last_test "datasets-${example}-copy-objects") ADD_H5_TEST (${example} 0) endforeach (example ${HDF_JAVA_EXAMPLES}) foreach (example ${HDF_JAVA_OBJECT_EXAMPLES}) if (${example} STREQUAL "H5ObjectEx_D_External") add_test ( NAME datasets-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.data ${example}.out ${example}.out.err ) else (${example} STREQUAL "H5ObjectEx_D_External") add_test ( NAME datasets-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ${example}.out ${example}.out.err ) endif (${example} STREQUAL "H5ObjectEx_D_External") if (NOT "${last_test}" STREQUAL "") set_tests_properties (datasets-${example}-clearall-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") add_test ( NAME datasets-${example}-copy-objects COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDFJAVA_EXAMPLES_SOURCE_DIR}/testfiles/examples.datasets.${example}.txt ${HDFJAVA_EXAMPLES_DATASETS_BINARY_DIR}/${example}.txt ) set_tests_properties (datasets-${example}-copy-objects PROPERTIES DEPENDS datasets-${example}-clearall-objects) set (last_test "datasets-${example}-copy-objects") ADD_H5_TEST (${example} 0) endforeach (example ${HDF_OBJECT_JAVA_EXAMPLES}) endif (BUILD_TESTING) hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Szip.java0000644002344600011330000002600312326542262021217 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using szip compression. The program first checks if szip compression is available, then if it is it writes integers to a dataset using szip, then closes the file. Next, it reopens the file, reads back the data, and outputs the type of compression and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Szip { private static String FILENAME = "H5ObjectEx_D_Szip.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkSzipFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_SZIP); if (available == 0) { System.out.println("szip filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_SZIP); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("szip filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeSzip() { H5File file = null; Dataset dset = null; int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, add the szip compression // filter. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_szip(dcpl_id, HDF5Constants.H5_SZIP_NN_OPTION_MASK, 8); // Set the chunk size. H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readSzip() { H5File file = null; Dataset dset = null; int dataset_id = -1; int dcpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx*DIM_Y+jndx]) max = dset_data[indx*DIM_Y+jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. if (H5ObjectEx_D_Szip.checkSzipFilter()) { H5ObjectEx_D_Szip.writeSzip(); H5ObjectEx_D_Szip.readSzip(); } } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Sofloat.java0000644002344600011330000003006012326542262021677 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using the Scale-Offset filter. The program first checks if the Scale-Offset filter is available, then if it is it writes floating point numbers to a dataset using Scale-Offset, then closes the file Next, it reopens the file, reads back the data, and outputs the type of filter and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Sofloat { private static String FILENAME = "H5ObjectEx_D_Sofloat.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 8; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkScaleoffsetFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_SCALEOFFSET); if (available == 0) { System.out.println("Scale-Offset filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_SCALEOFFSET); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("Scale-Offset filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeData() { H5File file = null; Dataset dset = null; int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; double[][] dset_data = new double[DIM_X][DIM_Y]; final H5Datatype typeFloat = new H5Datatype(Datatype.CLASS_FLOAT, DATATYPE_SIZE, Datatype.NATIVE, Datatype.NATIVE); //Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) { double x = indx; double y = jndx; dset_data[indx][jndx] = (x + 1) / (y + 0.3) + y; } //Find the maximum value in the dataset, to verify that it was read correctly. double max = dset_data[0][0]; double min = dset_data[0][0]; for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) { if (max < dset_data[indx][jndx]) max = dset_data[indx][jndx]; if (min > dset_data[indx][jndx]) min = dset_data[indx][jndx]; } //Print the maximum value. System.out.println("Maximum value in write buffer is: " + max); System.out.println("Minimum value in write buffer is: " + min); //Create a new file using the default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } //Create dataspace. Setting maximum size to NULL sets the maximum size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeFloat.toNative(); } catch (Exception e) { e.printStackTrace(); } //Create the dataset creation property list, add the Scale-Offset // filter and set the chunk size. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_scaleoffset(dcpl_id, HDF5Constants.H5Z_SO_FLOAT_DSCALE, 2); H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } //Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } //Write the data to the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } //Close and release resources. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } //Close file try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readData() { H5File file = null; Dataset dset = null; int dataset_id = -1; int dcpl_id = -1; double[] dset_data = new double[DIM_X*DIM_Y]; // Open file using the default properties. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open dataset using the default properties. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } //Retrieve dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } //Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } //Read the data using the default properties. try { dset.init(); dset_data = (double[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } //Find the maximum value in the dataset, to verify that it was read correctly. double max = dset_data[0]; double min = dset_data[0]; for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) { if (max < dset_data[indx*DIM_Y+jndx]) max = dset_data[indx*DIM_Y+jndx]; if (min > dset_data[indx*DIM_Y+jndx]) min = dset_data[indx*DIM_Y+jndx]; } //Print the maximum value. System.out.println("Maximum value in "+ DATASETNAME + " is: " + max); System.out.println("Minimum value in " + DATASETNAME + " is: " + min); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { //Check if Scale-Offset compression is available and can be used //for both compression and decompression. Normally we do not //perform error checking in these examples for the sake of //clarity, but in this case we will make an exception because this //filter is an optional part of the hdf5 library. if (H5ObjectEx_D_Sofloat.checkScaleoffsetFilter()) { H5ObjectEx_D_Sofloat.writeData(); H5ObjectEx_D_Sofloat.readData(); } } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Transform.java0000644002344600011330000001671112326542262021123 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using a data transform expression. The program first writes integers to a dataset using the transform expression TRANSFORM, then closes the file. Next, it reopens the file, reads back the data without a transform, and outputs the data to the screen. Finally it reads the data using the transform expression RTRANSFORM and outputs the results to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Transform { private static String FILE = "H5Ex_D_Transform.h5"; private static String DATASET = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static String TRANSFORM = "x+1"; private static String RTRANSFORM = "x-1"; private static void writeData() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dxpl_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data. for (int i = 0; i < DIM_X; i++) for (int j = 0; j < DIM_Y; j++) dset_data[i][j] = i * j - j; //Output the data to the screen. System.out.println("Original Data:"); for (int i = 0; i < DIM_X; i++) { System.out.print(" ["); for (int j = 0; j < DIM_Y; j++) System.out.print(" " + dset_data[i][j]+ " "); System.out.println("]"); } //Create a new file using the default properties. try { file_id = H5.H5Fcreate(FILE, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(2, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset transfer property list and define the transform expression. try { dxpl_id = H5.H5Pcreate (HDF5Constants.H5P_DATASET_XFER); if (dxpl_id >= 0) H5.H5Pset_data_transform(dxpl_id, TRANSFORM); } catch (Exception e) { e.printStackTrace(); } //Create the dataset using the default properties. Unfortunately we must save as //a native type or the transform operation will fail. try { if ((file_id >= 0) && (filespace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASET, HDF5Constants.H5T_NATIVE_INT, filespace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Write the data to the dataset using the dataset transfer property list. try { if ((dataset_id >= 0) && (dxpl_id >= 0)) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, dxpl_id, dset_data); } catch (Exception e) { e.printStackTrace(); } //End access to the dataset and release resources used by it. try { if (dxpl_id >= 0) H5.H5Pclose(dxpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } //Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readData() { int file_id = -1; int dataset_id = -1; int dxpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; //Open an existing file using the default properties. try { file_id = H5.H5Fopen(FILE, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Open an existing dataset using the default properties. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASET, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Read the data using the default properties. try { if(dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } //Output the data to the screen. System.out.println("Data as written with transform '" + TRANSFORM + "'"); for (int i = 0; i < DIM_X; i++) { System.out.print(" ["); for (int j = 0; j < DIM_Y; j++) System.out.print(" " + dset_data[i][j] + " "); System.out.println("]"); } //Create the dataset transfer property list and define the transform expression. try { dxpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_XFER); if (dxpl_id >= 0) H5.H5Pset_data_transform(dxpl_id, RTRANSFORM); } catch (Exception e) { e.printStackTrace(); } //Read the data using the dataset transfer property list. try { if ((dataset_id >= 0) && (dxpl_id >= 0)) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, dxpl_id, dset_data); } catch(Exception e) { e.printStackTrace(); } //Output the data to the screen. System.out.println("Data as written with transform '" + TRANSFORM + "' and read with transform '" + RTRANSFORM + "'"); for (int i = 0; i < DIM_X; i++) { System.out.print(" ["); for (int j = 0; j < DIM_Y; j++) System.out.print(" " + dset_data[i][j] + " "); System.out.println("]"); } //Close and release resources. try { if (dxpl_id >= 0) H5.H5Pclose(dxpl_id); } catch(Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch(Exception e) { e.printStackTrace(); } try { if (file_id >= 0) H5.H5Fclose(file_id); } catch(Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_Transform.writeData(); H5Ex_D_Transform.readData(); } } hdf-java-2.11.0/examples/datasets/H5Ex_D_External.java0000644002344600011330000001255312326542262020732 0ustar byrnhdf/************************************************************ This example shows how to read and write data to an external dataset. The program first writes integers to an external dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs the name of the external data file and the data to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_External { private static String FILENAME = "H5Ex_D_External.h5"; private static String EXTERNALNAME = "H5Ex_D_External.data"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int RANK = 2; private static final int NAME_BUF_SIZE = 32; private static void writeExternal() { int file_id = -1; int dcpl_id = -1; int filespace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // set the external file. try { if (dcpl_id >= 0) H5.H5Pset_external(dcpl_id, EXTERNALNAME, 0, HDF5Constants.H5F_UNLIMITED); } catch (Exception e) { e.printStackTrace(); } // Create the HDF5Constants.dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readExternal() { int file_id = -1; int dcpl_id = -1; int dataset_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; String[] Xname = new String[1]; // Open file using the default properties. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDWR, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open dataset using the default properties. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the name of the external file. long[] Xsize = new long[NAME_BUF_SIZE]; try { if (dcpl_id >= 0) H5.H5Pget_external(dcpl_id, 0, Xsize.length, Xname, Xsize); } catch (Exception e) { e.printStackTrace(); } System.out.println(DATASETNAME + " is stored in file: " + Xname[0]); // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Close the dataset. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_External.writeExternal(); H5Ex_D_External.readExternal(); } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Alloc.java0000644002344600011330000002003412326542262020173 0ustar byrnhdf/************************************************************ This example shows how to set the space allocation time for a dataset. The program first creates two datasets, one with the default allocation time (late) and one with early allocation time, and displays whether each has been allocated and their allocation size. Next, it writes data to the datasets, and again displays whether each has been allocated and their allocation size. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Alloc { private static String FILENAME = "H5Ex_D_Alloc.h5"; private static String DATASETNAME1 = "DS1"; private static String DATASETNAME2 = "DS2"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int FILLVAL = 99; private static final int RANK = 2; // Values for the status of space allocation enum H5D_space_status { H5D_SPACE_STATUS_ERROR(-1), H5D_SPACE_STATUS_NOT_ALLOCATED(0), H5D_SPACE_STATUS_PART_ALLOCATED( 1), H5D_SPACE_STATUS_ALLOCATED(2); private static final Map lookup = new HashMap(); static { for (H5D_space_status s : EnumSet.allOf(H5D_space_status.class)) lookup.put(s.getCode(), s); } private int code; H5D_space_status(int space_status) { this.code = space_status; } public int getCode() { return this.code; } public static H5D_space_status get(int code) { return lookup.get(code); } } private static void allocation() { int file_id = -1; int filespace_id = -1; int dataset_id1 = -1; int dataset_id2 = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; int[] space_status = new int[1]; long storage_size = 0; // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = FILLVAL; // Create a file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, and set the chunk size. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the allocation time to "early". This way we can be sure // that reading from the dataset immediately after creation will // return the fill value. try { if (dcpl_id >= 0) H5.H5Pset_alloc_time(dcpl_id, HDF5Constants.H5D_ALLOC_TIME_EARLY); } catch (Exception e) { e.printStackTrace(); } System.out.println("Creating datasets..."); System.out.println(DATASETNAME1 + " has allocation time H5D_ALLOC_TIME_LATE"); System.out.println(DATASETNAME2 + " has allocation time H5D_ALLOC_TIME_EARLY"); System.out.println(); // Create the dataset using the dataset default creation property list. try { if ((file_id >= 0) && (filespace_id >= 0)) dataset_id1 = H5.H5Dcreate(file_id, DATASETNAME1, HDF5Constants.H5T_NATIVE_INT, filespace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create the dataset using the dataset creation property list. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id2 = H5.H5Dcreate(file_id, DATASETNAME2, HDF5Constants.H5T_NATIVE_INT, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print space status and storage size for dset1. try { if (dataset_id1 >= 0) H5.H5Dget_space_status(dataset_id1, space_status); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id1 >= 0) storage_size = H5.H5Dget_storage_size(dataset_id1); } catch (Exception e) { e.printStackTrace(); } String the_space = " "; if (H5D_space_status.get(space_status[0]) != H5D_space_status.H5D_SPACE_STATUS_ALLOCATED) the_space += "not "; System.out.println("Space for " + DATASETNAME1 + " has" + the_space + "been allocated."); System.out.println("Storage size for " + DATASETNAME1 + " is: " + storage_size + " bytes."); // Retrieve and print space status and storage size for dset2. try { if (dataset_id2 >= 0) H5.H5Dget_space_status(dataset_id2, space_status); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id2 >= 0) storage_size = H5.H5Dget_storage_size(dataset_id2); } catch (Exception e) { e.printStackTrace(); } the_space = " "; if (H5D_space_status.get(space_status[0]) != H5D_space_status.H5D_SPACE_STATUS_ALLOCATED) the_space += "not "; System.out.println("Space for " + DATASETNAME2 + " has" + the_space + "been allocated."); System.out.println("Storage size for " + DATASETNAME2 + " is: " + storage_size + " bytes."); System.out.println(); System.out.println("Writing data..."); System.out.println(); // Write the data to the datasets. try { if (dataset_id1 >= 0) H5.H5Dwrite(dataset_id1, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data[0]); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id2 >= 0) H5.H5Dwrite(dataset_id2, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data[0]); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print space status and storage size for dset1. try { if (dataset_id1 >= 0) H5.H5Dget_space_status(dataset_id1, space_status); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id1 >= 0) storage_size = H5.H5Dget_storage_size(dataset_id1); } catch (Exception e) { e.printStackTrace(); } the_space = " "; if (H5D_space_status.get(space_status[0]) != H5D_space_status.H5D_SPACE_STATUS_ALLOCATED) the_space += "not "; System.out.println("Space for " + DATASETNAME1 + " has" + the_space + "been allocated."); System.out.println("Storage size for " + DATASETNAME1 + " is: " + storage_size + " bytes."); // Retrieve and print space status and storage size for dset2. try { if (dataset_id2 >= 0) H5.H5Dget_space_status(dataset_id2, space_status); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id2 >= 0) storage_size = H5.H5Dget_storage_size(dataset_id2); } catch (Exception e) { e.printStackTrace(); } the_space = " "; if (H5D_space_status.get(space_status[0]) != H5D_space_status.H5D_SPACE_STATUS_ALLOCATED) the_space += "not "; System.out.println("Space for " + DATASETNAME2 + " has" + the_space + "been allocated."); System.out.println("Storage size for " + DATASETNAME2 + " is: " + storage_size + " bytes."); System.out.println(); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id1 >= 0) H5.H5Dclose(dataset_id1); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id2 >= 0) H5.H5Dclose(dataset_id2); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_Alloc.allocation(); } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Szip.java0000644002344600011330000002525612326542262020101 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using szip compression. The program first checks if szip compression is available, then if it is it writes integers to a dataset using szip, then closes the file. Next, it reopens the file, reads back the data, and outputs the type of compression and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Szip { private static String FILENAME = "H5Ex_D_Szip.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkSzipFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_SZIP); if (available == 0) { System.out.println("szip filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_SZIP); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("szip filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeSzip() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, add the szip compression // filter. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_szip(dcpl_id, HDF5Constants.H5_SZIP_NN_OPTION_MASK, 8); // Set the chunk size. H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readSzip() { int file_id = -1; int dataset_id = -1; int dcpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { if (dataset_id >= 0) { H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0][0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx][jndx]) max = dset_data[indx][jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. if (H5Ex_D_Szip.checkSzipFilter()) { H5Ex_D_Szip.writeSzip(); H5Ex_D_Szip.readSzip(); } } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Gzip.java0000644002344600011330000002530412326542262020057 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using gzip compression (also called zlib or deflate). The program first checks if gzip compression is available, then if it is it writes integers to a dataset using gzip, then closes the file. Next, it reopens the file, reads back the data, and outputs the type of compression and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Gzip { private static String FILENAME = "H5Ex_D_Gzip.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkGzipFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_DEFLATE); if (available == 0) { System.out.println("gzip filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_DEFLATE); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("gzip filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeGzip() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, add the gzip compression // filter. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_deflate(dcpl_id, 9); // Set the chunk size. H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readGzip() { int file_id = -1; int dataset_id = -1; int dcpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { if (dataset_id >= 0) { H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0][0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx][jndx]) max = dset_data[indx][jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. if (H5Ex_D_Gzip.checkGzipFilter()) { H5Ex_D_Gzip.writeGzip(); H5Ex_D_Gzip.readGzip(); } } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Nbit.java0000644002344600011330000002555212326542262021176 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using the N-Bit filter. The program first checks if the N-Bit filter is available, then if it is it writes integers to a dataset using N-Bit, then closes the file. Next, it reopens the file, reads back the data, and outputs the type of filter and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Nbit { private static String FILENAME = "H5ObjectEx_D_Nbit.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkNbitFilter() { try { //Check if N-Bit compression is available and can be used for both compression and decompression. int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_NBIT); if (available == 0) { System.out.println("N-Bit filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info (HDF5Constants.H5Z_FILTER_NBIT); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("N-Bit filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeData() throws Exception { H5File file = null; Dataset dset = null; int file_id = -1; int filespace_id = -1; int dataset_id = -1; int type_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; try { //Create a new file using the default properties. file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); //Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. filespace_id = H5.H5Screate_simple (RANK, dims, null); //Create the datatype to use with the N-Bit filter. It has an uncompressed size of 32 bits, //but will have a size of 16 bits after being packed by the N-Bit filter. type_id = typeInt.toNative(); H5.H5Tset_precision(type_id, 16); H5.H5Tset_offset(type_id, 5); //Create the dataset creation property list, add the N-Bit filter and set the chunk size. dcpl_id= H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); H5.H5Pset_nbit(dcpl_id); H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); //Create the dataset. if ((file_id >= 0) && (filespace_id >= 0) && (type_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); //Write the data to the dataset. H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } finally { //Close and release resources. if(dcpl_id >= 0) H5.H5Pclose(dcpl_id); if(type_id >= 0) H5.H5Tclose(type_id); if(dataset_id >= 0) dset.close(dataset_id); if(filespace_id >= 0) H5.H5Sclose(filespace_id); file.close(); } } private static void readData() throws Exception { H5File file = null; H5ScalarDS dset = null; int dataset_id = -1; int dcpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } //Retrieve and print the filter type. Here we only retrieve the //first filter because we know that we only added one filter. try { if(dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx*DIM_Y+jndx]) max = dset_data[indx*DIM_Y+jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { /* * Check if N-Bit compression is available and can be used for both * compression and decompression. Normally we do not perform error * checking in these examples for the sake of clarity, but in this * case we will make an exception because this filter is an * optional part of the hdf5 library. */ try { if (H5ObjectEx_D_Nbit.checkNbitFilter()) { H5ObjectEx_D_Nbit.writeData(); H5ObjectEx_D_Nbit.readData(); } } catch(Exception ex) { ex.printStackTrace(); } } } hdf-java-2.11.0/examples/datasets/H5Ex_D_FillValue.java0000644002344600011330000001434712326542262021036 0ustar byrnhdf/************************************************************ This example shows how to set the fill value for a dataset. The program first sets the fill value to FILLVAL, creates a dataset with dimensions of DIM_XxDIM_Y, reads from the uninitialized dataset, and outputs the contents to the screen. Next, it writes integers to the dataset, reads the data back, and outputs it to the screen. Finally it extends the dataset, reads from it, and outputs the result to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_FillValue { private static String FILENAME = "H5Ex_D_FillValue.h5"; private static String DATASETNAME = "ExtendibleArray"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int EDIM_X = 6; private static final int EDIM_Y = 10; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; private static final int FILLVAL = 99; private static void fillValue() { int file_id = -1; int dcpl_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] extdims = { EDIM_X, EDIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; long[] maxdims = { HDF5Constants.H5S_UNLIMITED, HDF5Constants.H5S_UNLIMITED }; int[][] write_dset_data = new int[DIM_X][DIM_Y]; int[][] read_dset_data = new int[DIM_X][DIM_Y]; int[][] extend_dset_data = new int[EDIM_X][EDIM_Y]; // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) write_dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace with unlimited dimensions. try { dataspace_id = H5.H5Screate_simple(RANK, dims, maxdims); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the chunk size. try { if (dcpl_id >= 0) H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } catch (Exception e) { e.printStackTrace(); } // Set the fill value for the dataset try { int[] fill_value = { FILLVAL }; if (dcpl_id >= 0) H5.H5Pset_fill_value(dcpl_id, HDF5Constants.H5T_NATIVE_INT, fill_value); } catch (Exception e) { e.printStackTrace(); } // Set the allocation time to "early". This way we can be sure // that reading from the dataset immediately after creation will // return the fill value. try { if (dcpl_id >= 0) H5.H5Pset_alloc_time(dcpl_id, HDF5Constants.H5D_ALLOC_TIME_EARLY); } catch (Exception e) { e.printStackTrace(); } // Create the dataset using the dataset creation property list. try { if ((file_id >= 0) && (dataspace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Read values from the dataset, which has not been written to yet. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, read_dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset before being written to:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(read_dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, write_dset_data); } catch (Exception e) { e.printStackTrace(); } // Read the data back. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, read_dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after being written to:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(read_dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Extend the dataset. try { if (dataset_id >= 0) H5.H5Dset_extent(dataset_id, extdims); } catch (Exception e) { e.printStackTrace(); } // Read from the extended dataset. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, extend_dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after extension:"); for (int indx = 0; indx < EDIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < EDIM_Y; jndx++) System.out.print(extend_dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_FillValue.fillValue(); } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Alloc.java0000644002344600011330000002074212326542262021330 0ustar byrnhdf/************************************************************ This example shows how to set the space allocation time for a dataset. The program first creates two datasets, one with the default allocation time (late) and one with early allocation time, and displays whether each has been allocated and their allocation size. Next, it writes data to the datasets, and again displays whether each has been allocated and their allocation size. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Alloc { private static String FILENAME = "H5ObjectEx_D_Alloc.h5"; private static String DATASETNAME1 = "DS1"; private static String DATASETNAME2 = "DS2"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int FILLVAL = 99; private static final int RANK = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5D_space_status { H5D_SPACE_STATUS_ERROR(-1), H5D_SPACE_STATUS_NOT_ALLOCATED(0), H5D_SPACE_STATUS_PART_ALLOCATED( 1), H5D_SPACE_STATUS_ALLOCATED(2); private static final Map lookup = new HashMap(); static { for (H5D_space_status s : EnumSet.allOf(H5D_space_status.class)) lookup.put(s.getCode(), s); } private int code; H5D_space_status(int space_status) { this.code = space_status; } public int getCode() { return this.code; } public static H5D_space_status get(int code) { return lookup.get(code); } } private static void allocation() { H5File file = null; Dataset dset1 = null; Dataset dset2 = null; int file_id = -1; int filespace_id = -1; int dataset_id1 = -1; int dataset_id2 = -1; int dcpl_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; int[] space_status = new int[1]; long storage_size = 0; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_BE, -1); // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = FILLVAL; // Create a file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } System.out.println("Creating datasets..."); System.out.println(DATASETNAME1 + " has allocation time H5D_ALLOC_TIME_LATE"); // Create the dataset using the dataset default creation property list. try { dset1 = file.createScalarDS(DATASETNAME1, null, typeInt, dims, null, null, 0, null); dataset_id1 = dset1.open(); } catch (Exception e) { e.printStackTrace(); } System.out.println(DATASETNAME2 + " has allocation time H5D_ALLOC_TIME_EARLY"); System.out.println(); // Create the dataset creation property list, and set the chunk size. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the allocation time to "early". This way we can be sure // that reading from the dataset immediately after creation will // return the fill value. try { if (dcpl_id >= 0) H5.H5Pset_alloc_time(dcpl_id, HDF5Constants.H5D_ALLOC_TIME_EARLY); } catch (Exception e) { e.printStackTrace(); } // Create the dataset using the dataset creation property list. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeInt.toNative(); if ((file_id >= 0) && (filespace_id >= 0) && (type_id >= 0) && (dcpl_id >= 0)) { dataset_id2 = H5.H5Dcreate(file_id, DATASETNAME2, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset2 = new H5ScalarDS(file, DATASETNAME2, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset2); } } catch (Exception e) { e.printStackTrace(); } // Retrieve and print space status and storage size for dset1. try { if (dataset_id1 >= 0) H5.H5Dget_space_status(dataset_id1, space_status); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id1 >= 0) storage_size = H5.H5Dget_storage_size(dataset_id1); } catch (Exception e) { e.printStackTrace(); } String the_space = " "; if (H5D_space_status.get(space_status[0]) != H5D_space_status.H5D_SPACE_STATUS_ALLOCATED) the_space += "not "; System.out.println("Space for " + DATASETNAME1 + " has" + the_space + "been allocated."); System.out.println("Storage size for " + DATASETNAME1 + " is: " + storage_size + " bytes."); // Retrieve and print space status and storage size for dset2. try { if (dataset_id2 >= 0) H5.H5Dget_space_status(dataset_id2, space_status); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id2 >= 0) storage_size = H5.H5Dget_storage_size(dataset_id2); } catch (Exception e) { e.printStackTrace(); } the_space = " "; if (H5D_space_status.get(space_status[0]) != H5D_space_status.H5D_SPACE_STATUS_ALLOCATED) the_space += "not "; System.out.println("Space for " + DATASETNAME2 + " has" + the_space + "been allocated."); System.out.println("Storage size for " + DATASETNAME2 + " is: " + storage_size + " bytes."); System.out.println(); System.out.println("Writing data..."); System.out.println(); // Write the data to the datasets. try { if (dset1 != null) dset1.write(dset_data); } catch (Exception e) { e.printStackTrace(); } try { if (dset2 != null) dset2.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print space status and storage size for dset1. try { if (dataset_id1 >= 0) H5.H5Dget_space_status(dataset_id1, space_status); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id1 >= 0) storage_size = H5.H5Dget_storage_size(dataset_id1); } catch (Exception e) { e.printStackTrace(); } the_space = " "; if (H5D_space_status.get(space_status[0]) != H5D_space_status.H5D_SPACE_STATUS_ALLOCATED) the_space += "not "; System.out.println("Space for " + DATASETNAME1 + " has" + the_space + "been allocated."); System.out.println("Storage size for " + DATASETNAME1 + " is: " + storage_size + " bytes."); // Retrieve and print space status and storage size for dset2. try { if (dataset_id2 >= 0) H5.H5Dget_space_status(dataset_id2, space_status); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id2 >= 0) storage_size = H5.H5Dget_storage_size(dataset_id2); } catch (Exception e) { e.printStackTrace(); } the_space = " "; if (H5D_space_status.get(space_status[0]) != H5D_space_status.H5D_SPACE_STATUS_ALLOCATED) the_space += "not "; System.out.println("Space for " + DATASETNAME2 + " has" + the_space + "been allocated."); System.out.println("Storage size for " + DATASETNAME2 + " is: " + storage_size + " bytes."); System.out.println(); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id1 >= 0) dset1.close(dataset_id1); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id2 >= 0) dset2.close(dataset_id2); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_Alloc.allocation(); } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Soint.java0000644002344600011330000002615612326542262021377 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using the Scale-Offset filter. The program first checks if the Scale-Offset filter is available, then if it is it writes integers to a dataset using Scale-Offset, then closes the file Next, it reopens the file, reads back the data, and outputs the type of filter and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Soint { private static String FILENAME = "H5ObjectEx_D_Soint.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkScaleoffsetFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_SCALEOFFSET); if (available == 0) { System.out.println("Scale-Offset filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_SCALEOFFSET); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("Scale-Offset filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeData() { H5File file = null; Dataset dset = null; int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); //Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; //Create a new file using the default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } //Create dataspace. Setting maximum size to NULL sets the maximum size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } //Create the dataset creation property list, add the Scale-Offset // filter and set the chunk size. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_scaleoffset(dcpl_id, HDF5Constants.H5Z_SO_INT, HDF5Constants.H5Z_SO_INT_MINBITS_DEFAULT); H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } //Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } //Write the data to the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } //Close and release resources. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } //Close file try { if (file_id >= 0) file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readData() { H5File file = null; Dataset dset = null; int dataset_id = -1; int dcpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; // Open file using the default properties. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open dataset using the default properties. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } //Retrieve dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } //Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } //Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } //Find the maximum value in the dataset, to verify that it was read correctly. int max = dset_data[0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx*DIM_Y+jndx]) max = dset_data[indx*DIM_Y+jndx]; } //Print the maximum value. System.out.println("Maximum value in "+ DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { //Check if Scale-Offset compression is available and can be used //for both compression and decompression. Normally we do not //perform error checking in these examples for the sake of //clarity, but in this case we will make an exception because this //filter is an optional part of the hdf5 library. if (H5ObjectEx_D_Soint.checkScaleoffsetFilter()) { H5ObjectEx_D_Soint.writeData(); H5ObjectEx_D_Soint.readData(); } } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_External.java0000644002344600011330000001375012326542262022061 0ustar byrnhdf/************************************************************ This example shows how to read and write data to an external dataset. The program first writes integers to an external dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs the name of the external data file and the data to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_External { private static String FILENAME = "H5ObjectEx_D_External.h5"; private static String EXTERNALNAME = "H5ObjectEx_D_External.data"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int RANK = 2; private static final int NAME_BUF_SIZE = 32; private static final int DATATYPE_SIZE = 4; private static void writeExternal() { H5File file = null; Dataset dset = null; int file_id = -1; int dcpl_id = -1; int filespace_id = -1; int dataset_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // set the external file. try { if (dcpl_id >= 0) H5.H5Pset_external(dcpl_id, EXTERNALNAME, 0, HDF5Constants.H5F_UNLIMITED); } catch (Exception e) { e.printStackTrace(); } // Create the HDF5Constants.dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readExternal() { H5File file = null; Dataset dset = null; int dcpl_id = -1; int dataset_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; String[] Xname = new String[1]; // Open file using the default properties. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open dataset using the default properties. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the name of the external file. long[] Xsize = new long[NAME_BUF_SIZE]; try { if (dcpl_id >= 0) H5.H5Pget_external(dcpl_id, 0, Xsize.length, Xname, Xsize); } catch (Exception e) { e.printStackTrace(); } System.out.println(DATASETNAME + " is stored in file: " + Xname[0]); // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // Close the dataset. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_External.writeExternal(); H5ObjectEx_D_External.readExternal(); } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Checksum.java0000644002344600011330000002623012326542262020707 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using the Fletcher32 checksum filter. The program first checks if the Fletcher32 filter is available, then if it is it writes integers to a dataset using Fletcher32, then closes the file. Next, it reopens the file, reads back the data, checks if the filter detected an error and outputs the type of filter and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Checksum { private static String FILENAME = "H5Ex_D_Checksum.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(-1), H5Z_FILTER_NONE(0), H5Z_FILTER_DEFLATE(1), H5Z_FILTER_SHUFFLE( 2), H5Z_FILTER_FLETCHER32(3), H5Z_FILTER_SZIP(4), H5Z_FILTER_NBIT(5), H5Z_FILTER_SCALEOFFSET( 6), H5Z_FILTER_RESERVED(256), H5Z_FILTER_MAX(65535); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkFletcher32Filter() { try { int available = H5.H5Zfilter_avail(H5Z_filter.H5Z_FILTER_FLETCHER32.getCode()); if (available == 0) { System.out.println("N-Bit filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_FLETCHER32); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out .println("N-Bit filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeChecksum() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, add the N-Bit filter. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_fletcher32(dcpl_id); // Set the chunk size. H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readChecksum() { int file_id = -1; int dataset_id = -1; int dcpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { if (dataset_id >= 0) { int status = H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); // Check if the read was successful. Normally we do not perform // error checking in these examples for the sake of clarity, but in // this case we will make an exception because this is how the // fletcher32 checksum filter reports data errors. if (status < 0) { System.out.print("Dataset read failed!"); try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); if (dataset_id >= 0) H5.H5Dclose(dataset_id); if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } return; } } } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0][0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx][jndx]) max = dset_data[indx][jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if the Fletcher32 filter is available and can be used for // both encoding and decoding. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. // size to be the current size. if (H5Ex_D_Checksum.checkFletcher32Filter()) { H5Ex_D_Checksum.writeChecksum(); H5Ex_D_Checksum.readChecksum(); } } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Sofloat.java0000644002344600011330000002730312326542262020556 0ustar byrnhdf /************************************************************ This example shows how to read and write data to a dataset using the Scale-Offset filter. The program first checks if the Scale-Offset filter is available, then if it is it writes floating point numbers to a dataset using Scale-Offset, then closes the file Next, it reopens the file, reads back the data, and outputs the type of filter and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Sofloat { private static String FILENAME = "H5Ex_D_Sofloat.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkScaleoffsetFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_SCALEOFFSET); if (available == 0) { System.out.println("Scale-Offset filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_SCALEOFFSET); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("Scale-Offset filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeData() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; double[][] dset_data = new double[DIM_X][DIM_Y]; //Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) { double x = indx; double y = jndx; dset_data[indx][jndx] = (x + 1) / (y + 0.3) + y; } //Find the maximum value in the dataset, to verify that it was read correctly. double max = dset_data[0][0]; double min = dset_data[0][0]; for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) { if (max < dset_data[indx][jndx]) max = dset_data[indx][jndx]; if (min > dset_data[indx][jndx]) min = dset_data[indx][jndx]; } //Print the maximum value. System.out.println("Maximum value in write buffer is: " + max); System.out.println("Minimum value in write buffer is: " + min); //Create a new file using the default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Create dataspace. Setting maximum size to NULL sets the maximum size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } //Create the dataset creation property list, add the Scale-Offset // filter and set the chunk size. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_scaleoffset(dcpl_id, HDF5Constants.H5Z_SO_FLOAT_DSCALE, 2); H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } //Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_IEEE_F64LE, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } //Close and release resources. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } //Close file try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readData() { int file_id = -1; int dataset_id = -1; int dcpl_id = -1; double[][] dset_data = new double[DIM_X][DIM_Y]; // Open file using the default properties. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open dataset using the default properties. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Retrieve dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } //Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } //Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } //Find the maximum value in the dataset, to verify that it was read correctly. double max = dset_data[0][0]; double min = dset_data[0][0]; for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) { if (max < dset_data[indx][jndx]) max = dset_data[indx][jndx]; if (min > dset_data[indx][jndx]) min = dset_data[indx][jndx]; } //Print the maximum value. System.out.println("Maximum value in "+ DATASETNAME + " is: " + max); System.out.println("Minimum value in " + DATASETNAME + " is: " + min); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { //Check if Scale-Offset compression is available and can be used //for both compression and decompression. Normally we do not //perform error checking in these examples for the sake of //clarity, but in this case we will make an exception because this //filter is an optional part of the hdf5 library. if (H5Ex_D_Sofloat.checkScaleoffsetFilter()) { H5Ex_D_Sofloat.writeData(); H5Ex_D_Sofloat.readData(); } } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Soint.java0000644002344600011330000002535412326542262020247 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using the Scale-Offset filter. The program first checks if the Scale-Offset filter is available, then if it is it writes integers to a dataset using Scale-Offset, then closes the file Next, it reopens the file, reads back the data, and outputs the type of filter and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Soint { private static String FILENAME = "H5Ex_D_Soint.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkScaleoffsetFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_SCALEOFFSET); if (available == 0) { System.out.println("Scale-Offset filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_SCALEOFFSET); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("Scale-Offset filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeData() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; //Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; //Create a new file using the default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Create dataspace. Setting maximum size to NULL sets the maximum size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } //Create the dataset creation property list, add the Scale-Offset // filter and set the chunk size. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_scaleoffset(dcpl_id, HDF5Constants.H5Z_SO_INT, HDF5Constants.H5Z_SO_INT_MINBITS_DEFAULT); H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } //Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } //Close and release resources. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } //Close file try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readData() { int file_id = -1; int dataset_id = -1; int dcpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open file using the default properties. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open dataset using the default properties. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Retrieve dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } //Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } //Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } //Find the maximum value in the dataset, to verify that it was read correctly. int max = dset_data[0][0]; for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) { if (max < dset_data[indx][jndx]) max = dset_data[indx][jndx]; } //Print the maximum value. System.out.println("Maximum value in "+ DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { //Check if Scale-Offset compression is available and can be used //for both compression and decompression. Normally we do not //perform error checking in these examples for the sake of //clarity, but in this case we will make an exception because this //filter is an optional part of the hdf5 library. if (H5Ex_D_Soint.checkScaleoffsetFilter()) { H5Ex_D_Soint.writeData(); H5Ex_D_Soint.readData(); } } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Gzip.java0000644002344600011330000002162512326542262021210 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using gzip compression (also called zlib or deflate). The program first checks if gzip compression is available, then if it is it writes integers to a dataset using gzip, then closes the file. Next, it reopens the file, reads back the data, and outputs the type of compression and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Gzip { private static String FILENAME = "H5ObjectEx_D_Gzip.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkGzipFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_DEFLATE); if (available == 0) { System.out.println("gzip filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_DEFLATE); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("gzip filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeGzip() { H5File file = null; Dataset dset = null; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { file.createScalarDS(DATASETNAME, null, typeInt, dims, null, chunk_dims, 9, null, dset_data); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readGzip() { H5File file = null; Dataset dset = null; int dataset_id = -1; int dcpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx*DIM_Y+jndx]) max = dset_data[indx*DIM_Y+jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. if (H5ObjectEx_D_Gzip.checkGzipFilter()) { H5ObjectEx_D_Gzip.writeGzip(); H5ObjectEx_D_Gzip.readGzip(); } } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Chunk.java0000644002344600011330000002115512326542262020216 0ustar byrnhdf/************************************************************ This example shows how to create a chunked dataset. The program first writes integers in a hyperslab selection to a chunked dataset with dataspace dimensions of DIM_XxDIM_Y and chunk size of CHUNK_XxCHUNK_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. Finally it reads the data again using a different hyperslab selection, and outputs the result to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Chunk { private static String FILENAME = "H5Ex_D_Chunk.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 6; private static final int DIM_Y = 8; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; // Values for the status of space allocation enum H5D_layout { H5D_LAYOUT_ERROR(-1), H5D_COMPACT(0), H5D_CONTIGUOUS(1), H5D_CHUNKED(2), H5D_NLAYOUTS(3); private static final Map lookup = new HashMap(); static { for (H5D_layout s : EnumSet.allOf(H5D_layout.class)) lookup.put(s.getCode(), s); } private int code; H5D_layout(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5D_layout get(int code) { return lookup.get(code); } } private static void writeChunk() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data to "1", to make it easier to see the selections. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = 1; // Print the data to the screen. System.out.println("Original Data:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the chunk size. try { if (dcpl_id >= 0) H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } catch (Exception e) { e.printStackTrace(); } // Create the chunked dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Define and select the first part of the hyperslab selection. long[] start = { 0, 0 }; long[] stride = { 3, 3 }; long[] count = { 2, 3 }; long[] block = { 2, 2 }; try { if ((filespace_id >= 0)) H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_SET, start, stride, count, block); } catch (Exception e) { e.printStackTrace(); } // Define and select the second part of the hyperslab selection, // which is subtracted from the first selection by the use of // H5S_SELECT_NOTB block[0] = 1; block[1] = 1; try { if ((filespace_id >= 0)) { H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_NOTB, start, stride, count, block); // Write the data to the dataset. if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, filespace_id, HDF5Constants.H5P_DEFAULT, dset_data); } } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readChunk() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Print the storage layout. try { if (dcpl_id >= 0) { int layout_type = H5.H5Pget_layout(dcpl_id); System.out.print("Storage layout for " + DATASETNAME + " is: "); switch (H5D_layout.get(layout_type)) { case H5D_COMPACT: System.out.println("H5D_COMPACT"); break; case H5D_CONTIGUOUS: System.out.println("H5D_CONTIGUOUS"); break; case H5D_CHUNKED: System.out.println("H5D_CHUNKED"); break; } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data as written to disk by hyberslabs:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Initialize the read array. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = 0; // Define and select the hyperslab to use for reading. try { if (dataset_id >= 0) { filespace_id = H5.H5Dget_space(dataset_id); long[] start = { 0, 1 }; long[] stride = { 4, 4 }; long[] count = { 2, 2 }; long[] block = { 2, 3 }; if (filespace_id >= 0) { H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_SET, start, stride, count, block); // Read the data using the previously defined hyperslab. if ((dataset_id >= 0) && (filespace_id >= 0)) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, filespace_id, HDF5Constants.H5P_DEFAULT, dset_data); } } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data as read from disk by hyberslab:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_Chunk.writeChunk(); H5Ex_D_Chunk.readChunk(); } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Shuffle.java0000644002344600011330000003047012326542262020542 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using the shuffle filter with gzip compression. The program first checks if the shuffle and gzip filters are available, then if they are it writes integers to a dataset using shuffle+gzip, then closes the file. Next, it reopens the file, reads back the data, and outputs the types of filters and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Shuffle { private static String FILENAME = "H5Ex_D_Shuffle.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkGzipFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_DEFLATE); if (available == 0) { System.out.println("gzip filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_DEFLATE); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("gzip filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static boolean checkShuffleFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_SHUFFLE); if (available == 0) { System.out.println("Shuffle filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_SHUFFLE); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("Shuffle filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeShuffle() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, add the shuffle // filter and the gzip compression filter. // The order in which the filters are added here is significant - // we will see much greater results when the shuffle is applied // first. The order in which the filters are added to the property // list is the order in which they will be invoked when writing // data. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_shuffle(dcpl_id); H5.H5Pset_deflate(dcpl_id, 9); // Set the chunk size. H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readShuffle() { int file_id = -1; int dataset_id = -1; int dcpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve the number of filters, and retrieve and print the // type of each. try { if (dcpl_id >= 0) { int nfilters = H5.H5Pget_nfilters(dcpl_id); for (int indx = 0; indx < nfilters; indx++) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, indx, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter " + indx + ": Type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { if (dataset_id >= 0) { H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0][0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx][jndx]) max = dset_data[indx][jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. // Similarly, check for availability of the shuffle filter. if (H5Ex_D_Shuffle.checkGzipFilter() && H5Ex_D_Shuffle.checkShuffleFilter()) { H5Ex_D_Shuffle.writeShuffle(); H5Ex_D_Shuffle.readShuffle(); } } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_UnlimitedAdd.java0000644002344600011330000002326012326542262022637 0ustar byrnhdf/************************************************************ This example shows how to create and extend an unlimited dataset. The program first writes integers to a dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, outputs it to the screen, extends the dataset, and writes new data to the extended portions of the dataset. Finally it reopens the file again, reads back the data, and outputs it to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_UnlimitedAdd { private static String FILENAME = "H5ObjectEx_D_UnlimitedAdd.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int EDIM_X = 6; private static final int EDIM_Y = 10; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; private static void writeUnlimited() { H5File file = null; Dataset dset = null; int file_id = -1; int dcpl_id = -1; int dataspace_id = -1; int dataset_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; long[] maxdims = { HDF5Constants.H5S_UNLIMITED, HDF5Constants.H5S_UNLIMITED }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace with unlimited dimensions. try { dataspace_id = H5.H5Screate_simple(RANK, dims, maxdims); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the chunk size. try { if (dcpl_id >= 0) H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } catch (Exception e) { e.printStackTrace(); } // Create the unlimited dataset. try { if ((file_id >= 0) && (dataspace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, dataspace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void extendUnlimited() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] extdims = { EDIM_X, EDIM_Y }; long[] start = { 0, 0 }; long[] count = new long[2]; int[] dset_data; int[][] extend_dset_data = new int[EDIM_X][EDIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.WRITE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. This is a // two dimensional dataset so the dynamic allocation must be done // in steps. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]*(int) dims[1]]; // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset before extension:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Extend the dataset. try { dset.extend(extdims); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataspace for the newly extended dataset. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Initialize data for writing to the extended dataset. for (int indx = 0; indx < EDIM_X; indx++) for (int jndx = 0; jndx < EDIM_Y; jndx++) extend_dset_data[indx][jndx] = jndx; // Select the entire dataspace. try { if (dataspace_id >= 0) { H5.H5Sselect_all(dataspace_id); // Subtract a hyperslab reflecting the original dimensions from the // selection. The selection now contains only the newly extended // portions of the dataset. count[0] = dims[0]; count[1] = dims[1]; H5.H5Sselect_hyperslab(dataspace_id, HDF5Constants.H5S_SELECT_NOTB, start, null, count, null); // Write the data to the selected portion of the dataset. if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, dataspace_id, HDF5Constants.H5P_DEFAULT, extend_dset_data); } } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readUnlimited() { H5File file = null; Dataset dset = null; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; int[] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for the read buffer as before. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]*(int) dims[1]]; // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after extension:"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < dims[1]; jndx++) System.out.print(dset_data[(int) (indx*dims[1]+jndx)] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_UnlimitedAdd.writeUnlimited(); H5ObjectEx_D_UnlimitedAdd.extendUnlimited(); H5ObjectEx_D_UnlimitedAdd.readUnlimited(); } } hdf-java-2.11.0/examples/datasets/H5Ex_D_UnlimitedMod.java0000644002344600011330000002131612326542262021537 0ustar byrnhdf/************************************************************ This example shows how to create and extend an unlimited dataset. The program first writes integers to a dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, outputs it to the screen, extends the dataset, and writes new data to the entire extended dataset. Finally it reopens the file again, reads back the data, and utputs it to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_UnlimitedMod { private static String FILENAME = "H5Ex_D_UnlimitedMod.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int EDIM_X = 6; private static final int EDIM_Y = 10; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; private static void writeUnlimited() { int file_id = -1; int dcpl_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; long[] maxdims = { HDF5Constants.H5S_UNLIMITED, HDF5Constants.H5S_UNLIMITED }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace with unlimited dimensions. try { dataspace_id = H5.H5Screate_simple(RANK, dims, maxdims); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the chunk size. try { if (dcpl_id >= 0) H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } catch (Exception e) { e.printStackTrace(); } // Create the unlimited dataset. try { if ((file_id >= 0) && (dataspace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void extendUnlimited() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] extdims = { EDIM_X, EDIM_Y }; int[][] dset_data; int[][] extend_dset_data = new int[EDIM_X][EDIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDWR, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. This is a // two dimensional dataset so the dynamic allocation must be done // in steps. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]][(int) dims[1]]; // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset before extension:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Extend the dataset. try { if (dataset_id >= 0) H5.H5Dset_extent(dataset_id, extdims); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataspace for the newly extended dataset. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Initialize data for writing to the extended dataset. for (int indx = 0; indx < EDIM_X; indx++) for (int jndx = 0; jndx < EDIM_Y; jndx++) extend_dset_data[indx][jndx] = jndx; // Write the data tto the extended dataset. try { if ((dataspace_id >= 0) && (dataset_id >= 0)) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, dataspace_id, HDF5Constants.H5P_DEFAULT, extend_dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readUnlimited() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for the read buffer as before. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to rows. dset_data = new int[(int) dims[0]][(int) dims[1]]; // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after extension:"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < dims[1]; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_UnlimitedMod.writeUnlimited(); H5Ex_D_UnlimitedMod.extendUnlimited(); H5Ex_D_UnlimitedMod.readUnlimited(); } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_ReadWrite.java0000644002344600011330000000617712326542262022172 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset. The program first writes integers to a dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; public class H5ObjectEx_D_ReadWrite { private static String FILENAME = "H5ObjectEx_D_ReadWrite.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int DATATYPE_SIZE = 4; private static void WriteDataset() { H5File file = null; Dataset dset = null; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. We will use all default properties for this example. // And write the data to the dataset. try { dset = file.createScalarDS("/" + DATASETNAME, null, typeInt, dims, null, null, 0, dset_data); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; Dataset dset = null; int[] dset_data = new int[DIM_X*DIM_Y]; // Open file using the default properties. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open dataset using the default properties. try { dset = (Dataset) file.get(DATASETNAME); } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_ReadWrite.WriteDataset(); H5ObjectEx_D_ReadWrite.ReadDataset(); } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_FillValue.java0000644002344600011330000001504112326542262022155 0ustar byrnhdf/************************************************************ This example shows how to set the fill value for a dataset. The program first sets the fill value to FILLVAL, creates a dataset with dimensions of DIM_XxDIM_Y, reads from the uninitialized dataset, and outputs the contents to the screen. Next, it writes integers to the dataset, reads the data back, and outputs it to the screen. Finally it extends the dataset, reads from it, and outputs the result to the screen. ************************************************************/ package examples.datasets; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_FillValue { private static String FILENAME = "H5ObjectEx_D_FillValue.h5"; private static String DATASETNAME = "ExtendibleArray"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int EDIM_X = 6; private static final int EDIM_Y = 10; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; private static final int FILLVAL = 99; private static final int DATATYPE_SIZE = 4; private static void fillValue() { H5File file = null; H5ScalarDS dset = null; int file_id = -1; int dcpl_id = -1; int dataspace_id = -1; int dataset_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] extdims = { EDIM_X, EDIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; long[] maxdims = { HDF5Constants.H5S_UNLIMITED, HDF5Constants.H5S_UNLIMITED }; int[][] write_dset_data = new int[DIM_X][DIM_Y]; int[] read_dset_data = new int[DIM_X*DIM_Y]; int[] extend_dset_data = new int[EDIM_X*EDIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize the dataset. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) write_dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace with unlimited dimensions. try { dataspace_id = H5.H5Screate_simple(RANK, dims, maxdims); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the chunk size. try { if (dcpl_id >= 0) H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } catch (Exception e) { e.printStackTrace(); } // Set the fill value for the dataset try { int[] fill_value = { FILLVAL }; if (dcpl_id >= 0) H5.H5Pset_fill_value(dcpl_id, HDF5Constants.H5T_NATIVE_INT, fill_value); } catch (Exception e) { e.printStackTrace(); } // Set the allocation time to "early". This way we can be sure // that reading from the dataset immediately after creation will // return the fill value. try { if (dcpl_id >= 0) H5.H5Pset_alloc_time(dcpl_id, HDF5Constants.H5D_ALLOC_TIME_EARLY); } catch (Exception e) { e.printStackTrace(); } // Create the dataset using the dataset creation property list. try { if ((file_id >= 0) && (dataspace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, dataspace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Read values from the dataset, which has not been written to yet. try { dset.init(); read_dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset before being written to:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(read_dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // Write the data to the dataset. try { dset.write(write_dset_data); } catch (Exception e) { e.printStackTrace(); } // Read the data back. try { dset.init(); read_dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after being written to:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(read_dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // Extend the dataset. try { dset.extend(extdims); } catch (Exception e) { e.printStackTrace(); } // Read from the extended dataset. try { dset.init(); extend_dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Dataset after extension:"); for (int indx = 0; indx < EDIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < EDIM_Y; jndx++) System.out.print(extend_dset_data[indx*EDIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_FillValue.fillValue(); } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Chunk.java0000644002344600011330000002270712326542262021351 0ustar byrnhdf/************************************************************ This example shows how to create a chunked dataset. The program first writes integers in a hyperslab selection to a chunked dataset with dataspace dimensions of DIM_XxDIM_Y and chunk size of CHUNK_XxCHUNK_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. Finally it reads the data again using a different hyperslab selection, and outputs the result to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Chunk { private static String FILENAME = "H5ObjectEx_D_Chunk.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 6; private static final int DIM_Y = 8; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 4; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5D_layout { H5D_LAYOUT_ERROR(-1), H5D_COMPACT(0), H5D_CONTIGUOUS(1), H5D_CHUNKED(2), H5D_NLAYOUTS(3); private static final Map lookup = new HashMap(); static { for (H5D_layout s : EnumSet.allOf(H5D_layout.class)) lookup.put(s.getCode(), s); } private int code; H5D_layout(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5D_layout get(int code) { return lookup.get(code); } } private static void writeChunk() { H5File file = null; Dataset dset = null; int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize data to "1", to make it easier to see the selections. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = 1; // Print the data to the screen. System.out.println("Original Data:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the chunk size. try { if (dcpl_id >= 0) H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } catch (Exception e) { e.printStackTrace(); } // Create the chunked dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } } catch (Exception e) { e.printStackTrace(); } // Define and select the first part of the hyperslab selection. long[] start = { 0, 0 }; long[] stride = { 3, 3 }; long[] count = { 2, 3 }; long[] block = { 2, 2 }; try { if ((filespace_id >= 0)) H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_SET, start, stride, count, block); } catch (Exception e) { e.printStackTrace(); } // Define and select the second part of the hyperslab selection, // which is subtracted from the first selection by the use of // H5S_SELECT_NOTB block[0] = 1; block[1] = 1; try { if ((filespace_id >= 0)) { H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_NOTB, start, stride, count, block); // Write the data to the dataset. if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, filespace_id, HDF5Constants.H5P_DEFAULT, dset_data); } } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readChunk() { H5File file = null; Dataset dset = null; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Print the storage layout. try { if (dcpl_id >= 0) { int layout_type = H5.H5Pget_layout(dcpl_id); System.out.print("Storage layout for " + DATASETNAME + " is: "); switch (H5D_layout.get(layout_type)) { case H5D_COMPACT: System.out.println("H5D_COMPACT"); break; case H5D_CONTIGUOUS: System.out.println("H5D_CONTIGUOUS"); break; case H5D_CHUNKED: System.out.println("H5D_CHUNKED"); break; } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data as written to disk by hyberslabs:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // Initialize the read array. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx*DIM_Y+jndx] = 0; // Define and select the hyperslab to use for reading. try { if (dataset_id >= 0) { filespace_id = H5.H5Dget_space(dataset_id); long[] start = { 0, 1 }; long[] stride = { 4, 4 }; long[] count = { 2, 2 }; long[] block = { 2, 3 }; if (filespace_id >= 0) { H5.H5Sselect_hyperslab(filespace_id, HDF5Constants.H5S_SELECT_SET, start, stride, count, block); // Read the data using the previously defined hyperslab. if ((dataset_id >= 0) && (filespace_id >= 0)) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, filespace_id, HDF5Constants.H5P_DEFAULT, dset_data); } } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data as read from disk by hyberslab:"); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_Chunk.writeChunk(); H5ObjectEx_D_Chunk.readChunk(); } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Checksum.java0000644002344600011330000002520412326542262022036 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using the Fletcher32 checksum filter. The program first checks if the Fletcher32 filter is available, then if it is it writes integers to a dataset using Fletcher32, then closes the file. Next, it reopens the file, reads back the data, checks if the filter detected an error and outputs the type of filter and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Checksum { private static String FILENAME = "H5ObjectEx_D_Checksum.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(-1), H5Z_FILTER_NONE(0), H5Z_FILTER_DEFLATE(1), H5Z_FILTER_SHUFFLE( 2), H5Z_FILTER_FLETCHER32(3), H5Z_FILTER_SZIP(4), H5Z_FILTER_NBIT(5), H5Z_FILTER_SCALEOFFSET( 6), H5Z_FILTER_RESERVED(256), H5Z_FILTER_MAX(65535); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkFletcher32Filter() { try { int available = H5.H5Zfilter_avail(H5Z_filter.H5Z_FILTER_FLETCHER32.getCode()); if (available == 0) { System.out.println("N-Bit filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_FLETCHER32); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out .println("N-Bit filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeChecksum() { H5File file = null; Dataset dset = null; int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[] dset_data = new int[DIM_X*DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx*DIM_Y+jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, add the N-Bit filter. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_fletcher32(dcpl_id); // Set the chunk size. H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (type_id >= 0) && (dcpl_id >= 0)) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dset != null) dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readChecksum() { H5File file = null; Dataset dset = null; int file_id = -1; int dataset_id = -1; int dcpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve and print the filter type. Here we only retrieve the // first filter because we know that we only added one filter. try { if (dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx*DIM_Y+jndx]) max = dset_data[indx*DIM_Y+jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if the Fletcher32 filter is available and can be used for // both encoding and decoding. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. // size to be the current size. if (H5ObjectEx_D_Checksum.checkFletcher32Filter()) { H5ObjectEx_D_Checksum.writeChecksum(); H5ObjectEx_D_Checksum.readChecksum(); } } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Compact.java0000644002344600011330000001435012326542262020533 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a compact dataset. The program first writes integers to a compact dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Compact { private static String FILENAME = "H5Ex_D_Compact.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int RANK = 2; // Values for the status of space allocation enum H5D_layout { H5D_LAYOUT_ERROR(-1), H5D_COMPACT(0), H5D_CONTIGUOUS(1), H5D_CHUNKED(2), H5D_NLAYOUTS( 3); private static final Map lookup = new HashMap(); static { for (H5D_layout s : EnumSet.allOf(H5D_layout.class)) lookup.put(s.getCode(), s); } private int code; H5D_layout(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5D_layout get(int code) { return lookup.get(code); } } private static void writeCompact() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the layout to compact. try { if (dcpl_id >= 0) H5.H5Pset_layout(dcpl_id, H5D_layout.H5D_COMPACT.getCode()); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. We will use all default properties for this example. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readCompact() { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open file and dataset using the default properties. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Print the storage layout. try { if (dcpl_id >= 0) { int layout_type = H5.H5Pget_layout(dcpl_id); System.out.print("Storage layout for " + DATASETNAME + " is: "); switch (H5D_layout.get(layout_type)) { case H5D_COMPACT: System.out.println("H5D_COMPACT"); break; case H5D_CONTIGUOUS: System.out.println("H5D_CONTIGUOUS"); break; case H5D_CHUNKED: System.out.println("H5D_CHUNKED"); break; } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data for " + DATASETNAME + " is: "); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx][jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_D_Compact.writeCompact(); H5Ex_D_Compact.readCompact(); } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Shuffle.java0000644002344600011330000003122712326542262021672 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using the shuffle filter with gzip compression. The program first checks if the shuffle and gzip filters are available, then if they are it writes integers to a dataset using shuffle+gzip, then closes the file. Next, it reopens the file, reads back the data, and outputs the types of filters and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Shuffle { private static String FILENAME = "H5ObjectEx_D_Shuffle.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkGzipFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_DEFLATE); if (available == 0) { System.out.println("gzip filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_DEFLATE); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("gzip filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static boolean checkShuffleFilter() { try { int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_SHUFFLE); if (available == 0) { System.out.println("Shuffle filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info(HDF5Constants.H5Z_FILTER_SHUFFLE); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("Shuffle filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeShuffle() { H5File file = null; Dataset dset = null; int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list, add the shuffle // filter and the gzip compression filter. // The order in which the filters are added here is significant - // we will see much greater results when the shuffle is applied // first. The order in which the filters are added to the property // list is the order in which they will be invoked when writing // data. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); if (dcpl_id >= 0) { H5.H5Pset_shuffle(dcpl_id); H5.H5Pset_deflate(dcpl_id, 9); // Set the chunk size. H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); } } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readShuffle() { H5File file = null; Dataset dset = null; int dataset_id = -1; int dcpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Retrieve the number of filters, and retrieve and print the // type of each. try { if (dcpl_id >= 0) { int nfilters = H5.H5Pget_nfilters(dcpl_id); for (int indx = 0; indx < nfilters; indx++) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, indx, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter " + indx + ": Type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx*DIM_Y+jndx]) max = dset_data[indx*DIM_Y+jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. // Similarly, check for availability of the shuffle filter. if (H5ObjectEx_D_Shuffle.checkGzipFilter() && H5ObjectEx_D_Shuffle.checkShuffleFilter()) { H5ObjectEx_D_Shuffle.writeShuffle(); H5ObjectEx_D_Shuffle.readShuffle(); } } } hdf-java-2.11.0/examples/datasets/H5Ex_D_Nbit.java0000644002344600011330000002475712326542262020055 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a dataset using the N-Bit filter. The program first checks if the N-Bit filter is available, then if it is it writes integers to a dataset using N-Bit, then closes the file. Next, it reopens the file, reads back the data, and outputs the type of filter and the maximum value in the dataset to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_D_Nbit { private static String FILENAME = "H5Ex_D_Nbit.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 32; private static final int DIM_Y = 64; private static final int CHUNK_X = 4; private static final int CHUNK_Y = 8; private static final int RANK = 2; private static final int NDIMS = 2; // Values for the status of space allocation enum H5Z_filter { H5Z_FILTER_ERROR(HDF5Constants.H5Z_FILTER_ERROR), H5Z_FILTER_NONE(HDF5Constants.H5Z_FILTER_NONE), H5Z_FILTER_DEFLATE(HDF5Constants.H5Z_FILTER_DEFLATE), H5Z_FILTER_SHUFFLE(HDF5Constants.H5Z_FILTER_SHUFFLE), H5Z_FILTER_FLETCHER32(HDF5Constants.H5Z_FILTER_FLETCHER32), H5Z_FILTER_SZIP(HDF5Constants.H5Z_FILTER_SZIP), H5Z_FILTER_NBIT(HDF5Constants.H5Z_FILTER_NBIT), H5Z_FILTER_SCALEOFFSET(HDF5Constants.H5Z_FILTER_SCALEOFFSET), H5Z_FILTER_RESERVED(HDF5Constants.H5Z_FILTER_RESERVED), H5Z_FILTER_MAX(HDF5Constants.H5Z_FILTER_MAX); private static final Map lookup = new HashMap(); static { for (H5Z_filter s : EnumSet.allOf(H5Z_filter.class)) lookup.put(s.getCode(), s); } private int code; H5Z_filter(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5Z_filter get(int code) { return lookup.get(code); } } private static boolean checkNbitFilter() { try { //Check if N-Bit compression is available and can be used for both compression and decompression. int available = H5.H5Zfilter_avail(HDF5Constants.H5Z_FILTER_NBIT); if (available == 0) { System.out.println("N-Bit filter not available."); return false; } } catch (Exception e) { e.printStackTrace(); } try { int filter_info = H5.H5Zget_filter_info (HDF5Constants.H5Z_FILTER_NBIT); if (((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_ENCODE_ENABLED) == 0) || ((filter_info & HDF5Constants.H5Z_FILTER_CONFIG_DECODE_ENABLED) == 0)) { System.out.println("N-Bit filter not available for encoding and decoding."); return false; } } catch (Exception e) { e.printStackTrace(); } return true; } private static void writeData() throws Exception { int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dtype_id = -1; int dcpl_id = -1; long[] dims = { DIM_X, DIM_Y }; long[] chunk_dims = { CHUNK_X, CHUNK_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; try { //Create a new file using the default properties. file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); //Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. filespace_id = H5.H5Screate_simple (RANK, dims, null); //Create the datatype to use with the N-Bit filter. It has an uncompressed size of 32 bits, //but will have a size of 16 bits after being packed by the N-Bit filter. dtype_id = H5.H5Tcopy(HDF5Constants.H5T_STD_I32LE); H5.H5Tset_precision(dtype_id, 16); H5.H5Tset_offset(dtype_id, 5); //Create the dataset creation property list, add the N-Bit filter and set the chunk size. dcpl_id= H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); H5.H5Pset_nbit(dcpl_id); H5.H5Pset_chunk(dcpl_id, NDIMS, chunk_dims); //Create the dataset. dataset_id = H5.H5Dcreate(file_id, DATASETNAME, dtype_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); //Write the data to the dataset. H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } finally { //Close and release resources. if(dcpl_id >= 0) H5.H5Pclose(dcpl_id); if(dtype_id >= 0) H5.H5Tclose(dtype_id); if(dataset_id >= 0) H5.H5Dclose(dataset_id); if(filespace_id >= 0) H5.H5Sclose(filespace_id); if(file_id >= 0) H5.H5Fclose(file_id); } } private static void readData() throws Exception { int file_id = -1; int dataset_id = -1; int dcpl_id = -1; int[][] dset_data = new int[DIM_X][DIM_Y]; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } //Retrieve and print the filter type. Here we only retrieve the //first filter because we know that we only added one filter. try { if(dcpl_id >= 0) { // Java lib requires a valid filter_name object and cd_values int[] flags = { 0 }; long[] cd_nelmts = { 1 }; int[] cd_values = { 0 }; String[] filter_name = { "" }; int[] filter_config = { 0 }; int filter_type = -1; filter_type = H5.H5Pget_filter(dcpl_id, 0, flags, cd_nelmts, cd_values, 120, filter_name, filter_config); System.out.print("Filter type is: "); switch (H5Z_filter.get(filter_type)) { case H5Z_FILTER_DEFLATE: System.out.println("H5Z_FILTER_DEFLATE"); break; case H5Z_FILTER_SHUFFLE: System.out.println("H5Z_FILTER_SHUFFLE"); break; case H5Z_FILTER_FLETCHER32: System.out.println("H5Z_FILTER_FLETCHER32"); break; case H5Z_FILTER_SZIP: System.out.println("H5Z_FILTER_SZIP"); break; case H5Z_FILTER_NBIT: System.out.println("H5Z_FILTER_NBIT"); break; case H5Z_FILTER_SCALEOFFSET: System.out.println("H5Z_FILTER_SCALEOFFSET"); break; default: System.out.println("H5Z_FILTER_ERROR"); } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { if (dataset_id >= 0) { int status = H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); // Check if the read was successful. if (status < 0) System.out.print("Dataset read failed!"); } } catch (Exception e) { e.printStackTrace(); } // Find the maximum value in the dataset, to verify that it was read // correctly. int max = dset_data[0][0]; for (int indx = 0; indx < DIM_X; indx++) { for (int jndx = 0; jndx < DIM_Y; jndx++) if (max < dset_data[indx][jndx]) max = dset_data[indx][jndx]; } // Print the maximum value. System.out.println("Maximum value in " + DATASETNAME + " is: " + max); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { /* * Check if N-Bit compression is available and can be used for both * compression and decompression. Normally we do not perform error * checking in these examples for the sake of clarity, but in this * case we will make an exception because this filter is an * optional part of the hdf5 library. */ try { if (H5Ex_D_Nbit.checkNbitFilter()) { H5Ex_D_Nbit.writeData(); H5Ex_D_Nbit.readData(); } } catch(Exception ex) { ex.printStackTrace(); } } } hdf-java-2.11.0/examples/datasets/H5ObjectEx_D_Compact.java0000644002344600011330000001546412326542262021671 0ustar byrnhdf/************************************************************ This example shows how to read and write data to a compact dataset. The program first writes integers to a compact dataset with dataspace dimensions of DIM_XxDIM_Y, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. ************************************************************/ package examples.datasets; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_D_Compact { private static String FILENAME = "H5ObjectEx_D_Compact.h5"; private static String DATASETNAME = "DS1"; private static final int DIM_X = 4; private static final int DIM_Y = 7; private static final int RANK = 2; private static final int DATATYPE_SIZE = 4; // Values for the status of space allocation enum H5D_layout { H5D_LAYOUT_ERROR(-1), H5D_COMPACT(0), H5D_CONTIGUOUS(1), H5D_CHUNKED(2), H5D_NLAYOUTS( 3); private static final Map lookup = new HashMap(); static { for (H5D_layout s : EnumSet.allOf(H5D_layout.class)) lookup.put(s.getCode(), s); } private int code; H5D_layout(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5D_layout get(int code) { return lookup.get(code); } } private static void writeCompact() { H5File file = null; Dataset dset = null; int file_id = -1; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int type_id = -1; long[] dims = { DIM_X, DIM_Y }; int[][] dset_data = new int[DIM_X][DIM_Y]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, DATATYPE_SIZE, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM_X; indx++) for (int jndx = 0; jndx < DIM_Y; jndx++) dset_data[indx][jndx] = indx * jndx - jndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); type_id = typeInt.toNative(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset creation property list. try { dcpl_id = H5.H5Pcreate(HDF5Constants.H5P_DATASET_CREATE); } catch (Exception e) { e.printStackTrace(); } // Set the layout to compact. try { if (dcpl_id >= 0) H5.H5Pset_layout(dcpl_id, H5D_layout.H5D_COMPACT.getCode()); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. We will use all default properties for this example. try { if ((file_id >= 0) && (filespace_id >= 0) && (dcpl_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, filespace_id, HDF5Constants.H5P_DEFAULT, dcpl_id, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (type_id >= 0) H5.H5Tclose(type_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readCompact() { H5File file = null; Dataset dset = null; int filespace_id = -1; int dataset_id = -1; int dcpl_id = -1; int[] dset_data = new int[DIM_X*DIM_Y]; // Open file and dataset using the default properties. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (Dataset) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Retrieve the dataset creation property list. try { if (dataset_id >= 0) dcpl_id = H5.H5Dget_create_plist(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Print the storage layout. try { if (dcpl_id >= 0) { int layout_type = H5.H5Pget_layout(dcpl_id); System.out.print("Storage layout for " + DATASETNAME + " is: "); switch (H5D_layout.get(layout_type)) { case H5D_COMPACT: System.out.println("H5D_COMPACT"); break; case H5D_CONTIGUOUS: System.out.println("H5D_CONTIGUOUS"); break; case H5D_CHUNKED: System.out.println("H5D_CHUNKED"); break; } System.out.println(); } } catch (Exception e) { e.printStackTrace(); } // Read the data using the default properties. try { dset.init(); dset_data = (int[]) dset.getData(); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Data for " + DATASETNAME + " is: "); for (int indx = 0; indx < DIM_X; indx++) { System.out.print(" [ "); for (int jndx = 0; jndx < DIM_Y; jndx++) System.out.print(dset_data[indx*DIM_Y+jndx] + " "); System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dcpl_id >= 0) H5.H5Pclose(dcpl_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_D_Compact.writeCompact(); H5ObjectEx_D_Compact.readCompact(); } } hdf-java-2.11.0/examples/datatypes/0000755002344600011330000000000012441355011015361 5ustar byrnhdfhdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_OpaqueAttribute.java0000644002344600011330000001617712326542262023631 0ustar byrnhdf/************************************************************ This example shows how to read and write opaque datatypes to an attribute. The program first writes opaque data to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_OpaqueAttribute { private static String FILENAME = "H5ObjectEx_T_OpaqueAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int LEN = 7; private static final int RANK = 1; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int datatype_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; byte[] dset_data = new byte[DIM0 * LEN]; byte[] str_data = { 'O', 'P', 'A', 'Q', 'U', 'E' }; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 4, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM0; indx++) { for (int jndx = 0; jndx < LEN - 1; jndx++) dset_data[jndx + indx * LEN] = str_data[jndx]; dset_data[LEN - 1 + indx * LEN] = (byte) (indx + '0'); } // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeInt, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Create opaque datatype and set the tag to something appropriate. // For this example we will write and view the data as a character // array. try { datatype_id = H5.H5Tcreate(HDF5Constants.H5T_OPAQUE, LEN); if (datatype_id >= 0) H5.H5Tset_tag(datatype_id, "Character array"); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { if ((dataset_id >= 0) && (datatype_id >= 0) && (dataspace_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, datatype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if ((attribute_id >= 0) && (datatype_id >= 0)) H5.H5Awrite(attribute_id, datatype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (datatype_id >= 0) H5.H5Tclose(datatype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int datatype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; int type_len = -1; long[] dims = { DIM0 }; byte[] dset_data; String tag_name = null; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get datatype and properties for the datatype. try { if (attribute_id >= 0) datatype_id = H5.H5Aget_type(attribute_id); if (datatype_id >= 0) { type_len = H5.H5Tget_size(datatype_id); tag_name = H5.H5Tget_tag(datatype_id); } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate buffer. dset_data = new byte[(int) dims[0] * type_len]; // Read data. try { if ((attribute_id >= 0) && (datatype_id >= 0)) H5.H5Aread(attribute_id, datatype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Datatype tag for " + ATTRIBUTENAME + " is: \"" + tag_name + "\""); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(ATTRIBUTENAME + "[" + indx + "]: "); for (int jndx = 0; jndx < type_len; jndx++) { char temp = (char) dset_data[jndx + indx * type_len]; System.out.print(temp); } System.out.println(""); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (datatype_id >= 0) H5.H5Tclose(datatype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_OpaqueAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_OpaqueAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_String.java0000644002344600011330000001704312326542262021752 0ustar byrnhdf/************************************************************ This example shows how to read and write string datatypes to a dataset. The program first writes strings to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_String { private static String FILENAME = "H5ObjectEx_T_String.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int SDIM = 8; private static final int RANK = 1; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int file_id = -1; int memtype_id = -1; int filetype_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; byte[][] dset_data = new byte[DIM0][SDIM]; StringBuffer[] str_data = { new StringBuffer("Parting"), new StringBuffer("is such"), new StringBuffer("sweet"), new StringBuffer("sorrow.") }; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create file and memory datatypes. For this example we will save // the strings as FORTRAN strings, therefore they do not need space // for the null terminator in the file. try { filetype_id = H5.H5Tcopy(HDF5Constants.H5T_FORTRAN_S1); if (filetype_id >= 0) H5.H5Tset_size(filetype_id, SDIM - 1); } catch (Exception e) { e.printStackTrace(); } try { memtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (memtype_id >= 0) H5.H5Tset_size(memtype_id, SDIM); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset and write the string data to it. try { if ((file_id >= 0) && (filetype_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { for (int indx = 0; indx < DIM0; indx++) { for (int jndx = 0; jndx < SDIM; jndx++) { if (jndx < str_data[indx].length()) dset_data[indx][jndx] = (byte) str_data[indx].charAt(jndx); else dset_data[indx][jndx] = 0; } } if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dwrite(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int filetype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; int sdim = 0; long[] dims = { DIM0 }; byte[][] dset_data; StringBuffer[] str_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get the datatype and its size. try { if (dataset_id >= 0) filetype_id = H5.H5Dget_type(dataset_id); if (filetype_id >= 0) { sdim = H5.H5Tget_size(filetype_id); sdim++; // Make room for null terminator } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate space for data. dset_data = new byte[(int) dims[0]][sdim]; str_data = new StringBuffer[(int) dims[0]]; // Create the memory datatype. try { memtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (memtype_id >= 0) H5.H5Tset_size(memtype_id, sdim); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dread(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); byte[] tempbuf = new byte[sdim]; for (int indx = 0; indx < (int) dims[0]; indx++) { for (int jndx = 0; jndx < sdim; jndx++) { tempbuf[jndx] = dset_data[indx][jndx]; } str_data[indx] = new StringBuffer(new String(tempbuf).trim()); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + " [" + indx + "]: " + str_data[indx]); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_String.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_String.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_Float.java0000644002344600011330000001222112326542262021542 0ustar byrnhdf/************************************************************ This example shows how to read and write integer datatypes to a dataset. The program first writes integers to a dataset with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.text.DecimalFormat; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_Float { private static String FILENAME = "H5ObjectEx_T_Float.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; double[][] dset_data = new double[DIM0][DIM1]; final H5Datatype typeFloat = new H5Datatype(Datatype.CLASS_FLOAT, 8, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = indx / (jndx + 0.5) + jndx; } // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset and write the floating point data to it. In // this example we will save the data as 64 bit little endian IEEE // floating point numbers, regardless of the native type. The HDF5 // library automatically converts between different floating point // types. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeFloat, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; double[][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new double[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. DecimalFormat df = new DecimalFormat("#,##0.0000"); System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print(" " + df.format(dset_data[indx][jndx])); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_Float.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_Float.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_BitAttribute.java0000644002344600011330000001456312326542262021763 0ustar byrnhdf/************************************************************ This example shows how to read and write bitfield datatypes to an attribute. The program first writes bit fields to an attribute with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_BitAttribute { private static String FILENAME = "H5Ex_T_BitAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static final int RANK = 2; private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data = new int[DIM0][DIM1]; // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = 0; dset_data[indx][jndx] |= (indx * jndx - jndx) & 0x03; /* Field "A" */ dset_data[indx][jndx] |= (indx & 0x03) << 2; /* Field "B" */ dset_data[indx][jndx] |= (jndx & 0x03) << 4; /* Field "C" */ dset_data[indx][jndx] |= ((indx + jndx) & 0x03) << 6; /* Field "D" */ } // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if (dataspace_id >= 0) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { if ((dataset_id >= 0) && (dataspace_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, HDF5Constants.H5T_STD_B8BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if (attribute_id >= 0) H5.H5Awrite(attribute_id, HDF5Constants.H5T_NATIVE_B8, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (attribute_id >= 0) H5.H5Aread(attribute_id, HDF5Constants.H5T_NATIVE_B8, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println(ATTRIBUTENAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print("{" + (dset_data[indx][jndx] & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 2) & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 4) & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 6) & 0x03) + "}"); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_BitAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_BitAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_OpaqueAttribute.java0000644002344600011330000001600712326542262022472 0ustar byrnhdf/************************************************************ This example shows how to read and write opaque datatypes to an attribute. The program first writes opaque data to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_OpaqueAttribute { private static String FILENAME = "H5Ex_T_OpaqueAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int LEN = 7; private static final int RANK = 1; private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int datatype_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; byte[] dset_data = new byte[DIM0 * LEN]; byte[] str_data = { 'O', 'P', 'A', 'Q', 'U', 'E' }; // Initialize data. for (int indx = 0; indx < DIM0; indx++) { for (int jndx = 0; jndx < LEN - 1; jndx++) dset_data[jndx + indx * LEN] = str_data[jndx]; dset_data[LEN - 1 + indx * LEN] = (byte) (indx + '0'); } // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if (dataspace_id >= 0) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create opaque datatype and set the tag to something appropriate. // For this example we will write and view the data as a character // array. try { datatype_id = H5.H5Tcreate(HDF5Constants.H5T_OPAQUE, LEN); if (datatype_id >= 0) H5.H5Tset_tag(datatype_id, "Character array"); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { if ((dataset_id >= 0) && (datatype_id >= 0) && (dataspace_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, datatype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if ((attribute_id >= 0) && (datatype_id >= 0)) H5.H5Awrite(attribute_id, datatype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (datatype_id >= 0) H5.H5Tclose(datatype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int datatype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; int type_len = -1; long[] dims = { DIM0 }; byte[] dset_data; String tag_name = null; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get datatype and properties for the datatype. try { if (attribute_id >= 0) datatype_id = H5.H5Aget_type(attribute_id); if (datatype_id >= 0) { type_len = H5.H5Tget_size(datatype_id); tag_name = H5.H5Tget_tag(datatype_id); } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate buffer. dset_data = new byte[(int) dims[0] * type_len]; // Read data. try { if ((attribute_id >= 0) && (datatype_id >= 0)) H5.H5Aread(attribute_id, datatype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Datatype tag for " + ATTRIBUTENAME + " is: \"" + tag_name + "\""); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(ATTRIBUTENAME + "[" + indx + "]: "); for (int jndx = 0; jndx < type_len; jndx++) { char temp = (char) dset_data[jndx + indx * type_len]; System.out.print(temp); } System.out.println(""); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (datatype_id >= 0) H5.H5Tclose(datatype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_OpaqueAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_OpaqueAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_ObjectReference.java0000644002344600011330000001747012326542262023535 0ustar byrnhdf/************************************************************ This example shows how to read and write object references to a dataset. The program first creates objects in the file and writes references to those objects to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, dereferences the references, and outputs the names of their targets to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_ObjectReference { private static String FILENAME = "H5ObjectEx_T_ObjectReference.h5"; private static String DATASETNAME = "DS1"; private static String DATASETNAME2 = "DS2"; private static String GROUPNAME = "G1"; private static final int DIM0 = 2; private static final int RANK = 1; // Values for the status of space allocation enum H5G_obj { H5G_UNKNOWN(HDF5Constants.H5G_UNKNOWN), /* Unknown object type */ H5G_GROUP(HDF5Constants.H5G_GROUP), /* Object is a group */ H5G_DATASET(HDF5Constants.H5G_DATASET), /* Object is a dataset */ H5G_TYPE(HDF5Constants.H5G_TYPE), /* Object is a named data type */ H5G_LINK(HDF5Constants.H5G_LINK), /* Object is a symbolic link */ H5G_UDLINK(HDF5Constants.H5G_UDLINK), /* Object is a user-defined link */ H5G_RESERVED_5(HDF5Constants.H5G_RESERVED_5), /* Reserved for future use */ H5G_RESERVED_6(HDF5Constants.H5G_RESERVED_6), /* Reserved for future use */ H5G_RESERVED_7(HDF5Constants.H5G_RESERVED_7); /* Reserved for future use */ private static final Map lookup = new HashMap(); static { for (H5G_obj s : EnumSet.allOf(H5G_obj.class)) lookup.put(s.getCode(), s); } private int code; H5G_obj(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5G_obj get(int code) { return lookup.get(code); } } private static void writeObjRef() { H5File file = null; H5ScalarDS dset = null; H5ScalarDS dset2 = null; H5Group grp = null; long[] dims = { DIM0 }; long[] dset_data = new long[DIM0]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 8, Datatype.ORDER_BE, -1); final H5Datatype typeRef = new H5Datatype(Datatype.CLASS_REFERENCE, -1, -1, -1); // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dset2 = (H5ScalarDS) file.createScalarDS(DATASETNAME2, null, typeInt, dims, null, null, 0, null); } catch (Exception e) { e.printStackTrace(); } // Create a group in the file. try { grp = (H5Group) file.createGroup("/" + GROUPNAME, null); } catch (Exception e) { e.printStackTrace(); } // Create references to the previously created objects. Passing -1 // as space_id causes this parameter to be ignored. Other values // besides valid dataspaces result in an error. try { dset_data[0] = grp.getOID()[0]; dset_data[1] = dset2.getOID()[0]; } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeRef, dims, null, null, 0, dset_data); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void readObjRef() { H5File file = null; H5ScalarDS dset = null; int dataset_id = -1; int dataspace_id = -1; int object_type = -1; int object_id = -1; long[] dims = { DIM0 }; byte[][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new byte[(int) dims[0]][8]; // Read the data using the default properties. try { if (dataset_id >= 0) { H5.H5Dread(dataset_id, HDF5Constants.H5T_STD_REF_OBJ, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + "[" + indx + "]:"); System.out.print(" ->"); // Open the referenced object, get its name and type. try { if (dataset_id >= 0) { int[] otype = { 1 }; object_id = H5.H5Rdereference(dataset_id, HDF5Constants.H5R_OBJECT, dset_data[indx]); object_type = H5.H5Rget_obj_type(dataset_id, HDF5Constants.H5R_OBJECT, dset_data[indx], otype); } String[] obj_name = new String[1]; long name_size = 1; if (object_type >= 0) { // Get the length of the name and retrieve the name. name_size = 1 + H5.H5Iget_name(object_id, obj_name, name_size); } if ((object_id >= 0) && (object_type >= -1)) { switch (H5G_obj.get(object_type)) { case H5G_GROUP: System.out.print("H5G_GROUP"); try { if (object_id >= 0) H5.H5Gclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; case H5G_DATASET: System.out.print("H5G_DATASET"); try { if (object_id >= 0) H5.H5Dclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; case H5G_TYPE: System.out.print("H5G_TYPE"); try { if (object_id >= 0) H5.H5Tclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; default: System.out.print("UNHANDLED"); } } // Print the name. if (name_size > 1) System.out.println(": " + obj_name[0]); } catch (Exception e) { e.printStackTrace(); } } // End access to the dataset and release resources used by it. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. H5ObjectEx_T_ObjectReference.writeObjRef(); H5ObjectEx_T_ObjectReference.readObjRef(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_CompoundAttribute.java0000644002344600011330000003540012326542262023022 0ustar byrnhdf/************************************************************ This example shows how to read and write compound datatypes to an attribute. The program first writes compound structures to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectInputStream; import java.io.ObjectOutput; import java.io.ObjectOutputStream; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_CompoundAttribute { private static String FILENAME = "H5Ex_T_CompoundAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int RANK = 1; // CompoundDatatype class is used to capture basic externalization information. // Strings need to have a Maximum Size specified. private static class CompoundDatatype { protected static final int OBJHEADERSIZE = 2; protected static final int[] MAGICNUMBERVALUE = { 0xac, 0xed, 0x00, 0x05 }; protected static final int MAGICNUMBER = 4; protected static final int INTEGERSIZE = 4; protected static final int DOUBLESIZE = 8; protected final static int MAXSTRINGSIZE = 80; public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { } public void writeExternal(ObjectOutput out) throws IOException { } } // Compound type class includes supporting Sensor_Datatype class. // The Sensor_Datatype class could be external as well. private static class Sensor implements java.io.Externalizable { static Sensor_Datatype datatypes; int serial_no; String location; double temperature; double pressure; Sensor() { datatypes = new Sensor_Datatype(); } // Each data member field must be shown how to be written and read. // Strings need to be handled by bytes. public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { serial_no = in.readInt(); byte[] tempbuf = new byte[CompoundDatatype.MAXSTRINGSIZE]; for (int indx = 0; indx < CompoundDatatype.MAXSTRINGSIZE; indx++) { tempbuf[indx] = in.readByte(); } location = new String(tempbuf).trim(); temperature = in.readDouble(); pressure = in.readDouble(); } public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(serial_no); for (int indx = 0; indx < CompoundDatatype.MAXSTRINGSIZE; indx++) { if (indx < location.length()) out.writeByte(location.charAt(indx)); else out.writeByte(0); } out.writeDouble(temperature); out.writeDouble(pressure); } } // Using Java Externalization will add a two-byte object header in // the stream, which needs to be called out in the datatypes. private static class Sensor_Datatype extends CompoundDatatype { static int numberMembers = 5; static int[] memberDims = { 1, 1, 1, 1, 1 }; String[] memberNames = { "ObjectHeader", "Serial number", "Location", "Temperature (F)", "Pressure (inHg)" }; int[] memberMemTypes = { HDF5Constants.H5T_NATIVE_SHORT, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5T_NATIVE_DOUBLE }; int[] memberFileTypes = { HDF5Constants.H5T_STD_I16BE, HDF5Constants.H5T_STD_I32BE, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_IEEE_F64BE, HDF5Constants.H5T_IEEE_F64BE }; static int[] memberStorage = { OBJHEADERSIZE, INTEGERSIZE, MAXSTRINGSIZE, DOUBLESIZE, DOUBLESIZE }; // Data size is the storage size for the members not the object. // Java Externalization also adds a 4-byte "Magic Number" to the beginning // of the data stream static int getTotalDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return DIM0 * data_size + MAGICNUMBER; } static int getDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return data_size; } static int getOffset(int memberItem) { int data_offset = 0; for (int indx = 0; indx < memberItem; indx++) data_offset += memberStorage[indx]; return data_offset; } } private static void CreateDataset() { int file_id = -1; int strtype_id = -1; int memtype_id = -1; int filetype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; Sensor[] object_data = new Sensor[DIM0]; byte[] dset_data = null; // Initialize data. object_data[0] = new Sensor(); object_data[0].serial_no = 1153; object_data[0].location = new String("Exterior (static)"); object_data[0].temperature = 53.23; object_data[0].pressure = 24.57; object_data[1] = new Sensor(); object_data[1].serial_no = 1184; object_data[1].location = new String("Intake"); object_data[1].temperature = 55.12; object_data[1].pressure = 22.95; object_data[2] = new Sensor(); object_data[2].serial_no = 1027; object_data[2].location = new String("Intake manifold"); object_data[2].temperature = 103.55; object_data[2].pressure = 31.23; object_data[3] = new Sensor(); object_data[3].serial_no = 1313; object_data[3].location = new String("Exhaust manifold"); object_data[3].temperature = 1252.89; object_data[3].pressure = 84.11; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for memory. try { memtype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (memtype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberMemTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(memtype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for the file. Because the standard // types we are using for the file may have different sizes than // the corresponding native types, we must manually calculate the // offset of each member. try { filetype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (filetype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberFileTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(filetype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if (dataspace_id >= 0) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute. try { if ((dataset_id >= 0) && (dataspace_id >= 0) && (filetype_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the compound data. try { ByteArrayOutputStream baos = new ByteArrayOutputStream(Sensor_Datatype.getTotalDataSize()); ObjectOutputStream oout = new ObjectOutputStream(baos); for (int indx = 0; indx < DIM0; indx++) { object_data[indx].writeExternal(oout); oout.flush(); } oout.close(); baos.close(); dset_data = baos.toByteArray(); byte[] write_data = new byte[dset_data.length - CompoundDatatype.MAGICNUMBER]; for(int indx = 0; indx < dset_data.length - CompoundDatatype.MAGICNUMBER; indx++) write_data[indx] = dset_data[indx + CompoundDatatype.MAGICNUMBER]; if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Awrite(attribute_id, memtype_id, write_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int strtype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; Sensor[] object_data2; byte[] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. This is a // three dimensional dataset when the array datatype is included so // the dynamic allocation must be done in steps. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for memory. try { memtype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (memtype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberMemTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(memtype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // allocate memory for read buffer. byte[] read_data = new byte[(int) dims[0] * Sensor_Datatype.getDataSize()]; object_data2 = new Sensor[(int) dims[0]]; // Read data. try { if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Aread(attribute_id, memtype_id, read_data); dset_data = new byte[read_data.length + CompoundDatatype.MAGICNUMBER]; for (int indx = 0; indx < CompoundDatatype.MAGICNUMBER; indx++) dset_data[indx] = (byte) CompoundDatatype.MAGICNUMBERVALUE[indx]; for (int indx = 0; indx < read_data.length; indx++) dset_data[indx + CompoundDatatype.MAGICNUMBER] = read_data[indx]; ObjectInputStream objectIn = new ObjectInputStream(new ByteArrayInputStream(dset_data)); for (int indx = 0; indx < (int) dims[0]; indx++) { object_data2[indx] = new Sensor(); object_data2[indx].readExternal(objectIn); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(ATTRIBUTENAME + " [" + indx + "]:"); System.out.println("Serial number : " + object_data2[indx].serial_no); System.out.println("Location : " + object_data2[indx].location); System.out.println("Temperature (F) : " + object_data2[indx].temperature); System.out.println("Pressure (inHg) : " + object_data2[indx].pressure); System.out.println(); } System.out.println(); try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_CompoundAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_CompoundAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_StringAttribute.java0000644002344600011330000002000012326542262022472 0ustar byrnhdf/************************************************************ This example shows how to read and write string datatypes to an attribute. The program first writes strings to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_StringAttribute { private static String FILENAME = "H5Ex_T_StringAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int SDIM = 8; private static final int RANK = 1; private static void CreateDataset() { int file_id = -1; int memtype_id = -1; int filetype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; byte[][] dset_data = new byte[DIM0][SDIM]; StringBuffer[] str_data = { new StringBuffer("Parting"), new StringBuffer("is such"), new StringBuffer("sweet"), new StringBuffer("sorrow.") }; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create file and memory datatypes. For this example we will save // the strings as FORTRAN strings, therefore they do not need space // for the null terminator in the file. try { filetype_id = H5.H5Tcopy(HDF5Constants.H5T_FORTRAN_S1); if (filetype_id >= 0) H5.H5Tset_size(filetype_id, SDIM - 1); } catch (Exception e) { e.printStackTrace(); } try { memtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (memtype_id >= 0) H5.H5Tset_size(memtype_id, SDIM); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if (dataspace_id >= 0) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute. try { if ((dataset_id >= 0) && (dataspace_id >= 0) && (filetype_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { for (int indx = 0; indx < DIM0; indx++) { for (int jndx = 0; jndx < SDIM; jndx++) { if (jndx < str_data[indx].length()) dset_data[indx][jndx] = (byte) str_data[indx].charAt(jndx); else dset_data[indx][jndx] = 0; } } if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Awrite(attribute_id, memtype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int filetype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; int sdim = 0; long[] dims = { DIM0 }; byte[][] dset_data; StringBuffer[] str_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get the datatype and its size. try { if (attribute_id >= 0) filetype_id = H5.H5Aget_type(attribute_id); if (filetype_id >= 0) { sdim = H5.H5Tget_size(filetype_id); sdim++; // Make room for null terminator } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate space for data. dset_data = new byte[(int) dims[0]][sdim]; str_data = new StringBuffer[(int) dims[0]]; // Create the memory datatype. try { memtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (memtype_id >= 0) H5.H5Tset_size(memtype_id, sdim); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Aread(attribute_id, memtype_id, dset_data); byte[] tempbuf = new byte[sdim]; for (int indx = 0; indx < (int) dims[0]; indx++) { for (int jndx = 0; jndx < sdim; jndx++) { tempbuf[jndx] = dset_data[indx][jndx]; } str_data[indx] = new StringBuffer(new String(tempbuf).trim()); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + " [" + indx + "]: " + str_data[indx]); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_StringAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_StringAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_ObjectReference.java0000644002344600011330000002207712326542262022405 0ustar byrnhdf/************************************************************ This example shows how to read and write object references to a dataset. The program first creates objects in the file and writes references to those objects to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, dereferences the references, and outputs the names of their targets to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_ObjectReference { private static String FILENAME = "H5Ex_T_ObjectReference.h5"; private static String DATASETNAME = "DS1"; private static String DATASETNAME2 = "DS2"; private static String GROUPNAME = "G1"; private static final int DIM0 = 2; private static final int RANK = 1; // Values for the status of space allocation enum H5G_obj { H5G_UNKNOWN(HDF5Constants.H5G_UNKNOWN), /* Unknown object type */ H5G_GROUP(HDF5Constants.H5G_GROUP), /* Object is a group */ H5G_DATASET(HDF5Constants.H5G_DATASET), /* Object is a dataset */ H5G_TYPE(HDF5Constants.H5G_TYPE), /* Object is a named data type */ H5G_LINK(HDF5Constants.H5G_LINK), /* Object is a symbolic link */ H5G_UDLINK(HDF5Constants.H5G_UDLINK), /* Object is a user-defined link */ H5G_RESERVED_5(HDF5Constants.H5G_RESERVED_5), /* Reserved for future use */ H5G_RESERVED_6(HDF5Constants.H5G_RESERVED_6), /* Reserved for future use */ H5G_RESERVED_7(HDF5Constants.H5G_RESERVED_7); /* Reserved for future use */ private static final Map lookup = new HashMap(); static { for (H5G_obj s : EnumSet.allOf(H5G_obj.class)) lookup.put(s.getCode(), s); } private int code; H5G_obj(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5G_obj get(int code) { return lookup.get(code); } } private static void writeObjRef() { int file_id = -1; int dataspace_id = -1; int filespace_id = -1; int group_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; byte[][] dset_data = new byte[DIM0][8]; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if ((file_id >= 0) && (dataspace_id >= 0)) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME2, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); if (dataset_id >= 0) H5.H5Dclose(dataset_id); dataset_id = -1; H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create a group in the file. try { if (file_id >= 0) group_id = H5.H5Gcreate(file_id, GROUPNAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); if (group_id >= 0) H5.H5Gclose(group_id); group_id = -1; } catch (Exception e) { e.printStackTrace(); } // Create references to the previously created objects. Passing -1 // as space_id causes this parameter to be ignored. Other values // besides valid dataspaces result in an error. try { if (file_id >= 0) { byte rbuf0[] = H5.H5Rcreate(file_id, GROUPNAME, HDF5Constants.H5R_OBJECT, -1); byte rbuf1[] = H5.H5Rcreate(file_id, DATASETNAME2, HDF5Constants.H5R_OBJECT, -1); for (int indx = 0; indx < 8; indx++) { dset_data[0][indx] = rbuf0[indx]; dset_data[1][indx] = rbuf1[indx]; } } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { filespace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (filespace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_REF_OBJ, filespace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the object references to it. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_STD_REF_OBJ, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (filespace_id >= 0) H5.H5Sclose(filespace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readObjRef() { int file_id = -1; int dataset_id = -1; int dataspace_id = -1; int object_type = -1; int object_id = -1; long[] dims = { DIM0 }; byte[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new byte[(int) dims[0]][8]; // Read the data using the default properties. try { if (dataset_id >= 0) { H5.H5Dread(dataset_id, HDF5Constants.H5T_STD_REF_OBJ, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + "[" + indx + "]:"); System.out.print(" ->"); // Open the referenced object, get its name and type. try { if (dataset_id >= 0) { int[] otype = { 1 }; object_id = H5.H5Rdereference(dataset_id, HDF5Constants.H5R_OBJECT, dset_data[indx]); object_type = H5.H5Rget_obj_type(dataset_id, HDF5Constants.H5R_OBJECT, dset_data[indx], otype); } String[] obj_name = new String[1]; long name_size = 1; if (object_type >= 0) { // Get the length of the name and retrieve the name. name_size = 1 + H5.H5Iget_name(object_id, obj_name, name_size); } if ((object_id >= 0) && (object_type >= -1)) { switch (H5G_obj.get(object_type)) { case H5G_GROUP: System.out.print("H5G_GROUP"); try { if (object_id >= 0) H5.H5Gclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; case H5G_DATASET: System.out.print("H5G_DATASET"); try { if (object_id >= 0) H5.H5Dclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; case H5G_TYPE: System.out.print("H5G_TYPE"); try { if (object_id >= 0) H5.H5Tclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; default: System.out.print("UNHANDLED"); } } // Print the name. if (name_size > 1) System.out.println(": " + obj_name[0]); } catch (Exception e) { e.printStackTrace(); } } // End access to the dataset and release resources used by it. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { // Check if gzip compression is available and can be used for both // compression and decompression. Normally we do not perform error // checking in these examples for the sake of clarity, but in this // case we will make an exception because this filter is an // optional part of the hdf5 library. H5Ex_T_ObjectReference.writeObjRef(); H5Ex_T_ObjectReference.readObjRef(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_ArrayAttribute.java0000644002344600011330000001653612326542262023454 0ustar byrnhdf/************************************************************ This example shows how to read and write array datatypes to an attribute. The program first writes integers arrays of dimension ADIM0xADIM1 to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Attribute; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_ArrayAttribute { private static String FILENAME = "H5ObjectEx_T_ArrayAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int ADIM0 = 3; private static final int ADIM1 = 5; private static final int NDIMS = 2; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int filetype_id = -1; int memtype_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; long[] adims = { ADIM0, ADIM1 }; int[][][] dset_data = new int[DIM0][ADIM0][ADIM1]; final H5Datatype typeIntArray = new H5Datatype(Datatype.CLASS_ARRAY, 8, Datatype.ORDER_LE, -1); final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 4, Datatype.ORDER_LE, -1); // Initialize data. indx is the element in the dataspace, jndx and kndx the // elements within the array datatype. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < ADIM0; jndx++) for (int kndx = 0; kndx < ADIM1; kndx++) dset_data[indx][jndx][kndx] = indx * jndx - jndx * kndx + indx * kndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create array datatypes for file. try { filetype_id = H5.H5Tarray_create(HDF5Constants.H5T_STD_I64LE, NDIMS, adims); typeIntArray.fromNative(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Create array datatypes for memory. try { memtype_id = H5.H5Tarray_create(HDF5Constants.H5T_NATIVE_INT, NDIMS, adims); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeInt, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { Attribute dataArray = new Attribute(ATTRIBUTENAME, typeIntArray, dims); dset.writeMetadata(dataArray); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Awrite(attribute_id, memtype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int filetype_id = -1; int memtype_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; long[] adims = { ADIM0, ADIM1 }; int[][][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get the datatype. try { if (attribute_id >= 0) filetype_id = H5.H5Aget_type(attribute_id); } catch (Exception e) { e.printStackTrace(); } // Get the datatype's dimensions. try { if (filetype_id >= 0) H5.H5Tget_array_dims(filetype_id, adims); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (adims[0])][(int) (adims[1])]; // Create array datatypes for memory. try { memtype_id = H5.H5Tarray_create(HDF5Constants.H5T_NATIVE_INT, 2, adims); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Aread(attribute_id, memtype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(ATTRIBUTENAME + " [" + indx + "]:"); for (int jndx = 0; jndx < adims[0]; jndx++) { System.out.print(" ["); for (int kndx = 0; kndx < adims[1]; kndx++) System.out.print(dset_data[indx][jndx][kndx] + " "); System.out.println("]"); } System.out.println(); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_ArrayAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_ArrayAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_String.java0000644002344600011330000001631012326542262020617 0ustar byrnhdf/************************************************************ This example shows how to read and write string datatypes to a dataset. The program first writes strings to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_String { private static String FILENAME = "H5Ex_T_String.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int SDIM = 8; private static final int RANK = 1; private static void CreateDataset() { int file_id = -1; int memtype_id = -1; int filetype_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; byte[][] dset_data = new byte[DIM0][SDIM]; StringBuffer[] str_data = { new StringBuffer("Parting"), new StringBuffer("is such"), new StringBuffer("sweet"), new StringBuffer("sorrow.") }; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create file and memory datatypes. For this example we will save // the strings as FORTRAN strings, therefore they do not need space // for the null terminator in the file. try { filetype_id = H5.H5Tcopy(HDF5Constants.H5T_FORTRAN_S1); if (filetype_id >= 0) H5.H5Tset_size(filetype_id, SDIM - 1); } catch (Exception e) { e.printStackTrace(); } try { memtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (memtype_id >= 0) H5.H5Tset_size(memtype_id, SDIM); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset and write the string data to it. try { if ((file_id >= 0) && (filetype_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { for (int indx = 0; indx < DIM0; indx++) { for (int jndx = 0; jndx < SDIM; jndx++) { if (jndx < str_data[indx].length()) dset_data[indx][jndx] = (byte) str_data[indx].charAt(jndx); else dset_data[indx][jndx] = 0; } } if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dwrite(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int filetype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; int sdim = 0; long[] dims = { DIM0 }; byte[][] dset_data; StringBuffer[] str_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get the datatype and its size. try { if (dataset_id >= 0) filetype_id = H5.H5Dget_type(dataset_id); if (filetype_id >= 0) { sdim = H5.H5Tget_size(filetype_id); sdim++; // Make room for null terminator } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate space for data. dset_data = new byte[(int) dims[0]][sdim]; str_data = new StringBuffer[(int) dims[0]]; // Create the memory datatype. try { memtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (memtype_id >= 0) H5.H5Tset_size(memtype_id, sdim); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dread(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); byte[] tempbuf = new byte[sdim]; for (int indx = 0; indx < (int) dims[0]; indx++) { for (int jndx = 0; jndx < sdim; jndx++) { tempbuf[jndx] = dset_data[indx][jndx]; } str_data[indx] = new StringBuffer(new String(tempbuf).trim()); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + " [" + indx + "]: " + str_data[indx]); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_String.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_String.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/Makefile.in0000644002344600011330000000335612326542262017445 0ustar byrnhdf#/**************************************************************************** # * Copyright by The HDF Group. * # * Copyright by the Board of Trustees of the University of Illinois. * # * All rights reserved. * # * * # * This file is part of HDF Java Products. The full HDF Java copyright * # * notice, including terms governing use, modification, and redistribution, * # * is contained in the file, COPYING. COPYING can be found at the root of * # * the source code distribution tree. You can also access it online at * # * http://www.hdfgroup.org/products/licenses.html. If you do not have * # * access to the file, you may request a copy from help@hdfgroup.org. * # ****************************************************************************/ TOP = ../.. DIR = examples/datatypes SUBDIRS = NULL JAVAC = @JAVAC@ JAVADOC = @JAVADOC@ JAR = @JAR@ FIND = @FIND@ RM = @RM@ SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ CLASSPATH=@CLASSPATH@ JH45INSTALLDIR=@JH45INST@ H45INC=@H45INC@ H4INC=@HDF4INC@ H5INC=@HDF5INC@ JAVA_SRCS = \ H5Ex_T_Array.java \ H5Ex_T_ArrayAttribute.java \ H5Ex_T_Bit.java \ H5Ex_T_BitAttribute.java \ H5Ex_T_Commit.java \ H5Ex_T_Compound.java \ H5Ex_T_CompoundAttribute.java \ H5Ex_T_Float.java \ H5Ex_T_FloatAttribute.java \ H5Ex_T_Integer.java \ H5Ex_T_IntegerAttribute.java \ H5Ex_T_ObjectReference.java \ H5Ex_T_ObjectReferenceAttribute.java \ H5Ex_T_Opaque.java \ H5Ex_T_OpaqueAttribute.java \ H5Ex_T_String.java \ H5Ex_T_StringAttribute.java \ H5Ex_T_VLString.java include $(TOP)/config/Rules.mk hdf-java-2.11.0/examples/datatypes/H5Ex_T_Bit.java0000644002344600011330000001274212326542262020074 0ustar byrnhdf/************************************************************ This example shows how to read and write bitfield datatypes to a dataset. The program first writes bit fields to a dataset with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_Bit { private static String FILENAME = "H5Ex_T_Bit.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static final int RANK = 2; private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data = new int[DIM0][DIM1]; // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = 0; dset_data[indx][jndx] |= (indx * jndx - jndx) & 0x03; /* Field "A" */ dset_data[indx][jndx] |= (indx & 0x03) << 2; /* Field "B" */ dset_data[indx][jndx] |= (jndx & 0x03) << 4; /* Field "C" */ dset_data[indx][jndx] |= ((indx + jndx) & 0x03) << 6; /* Field "D" */ } // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_B8BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the bitfield data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_B8, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_B8, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print("{" + (dset_data[indx][jndx] & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 2) & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 4) & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 6) & 0x03) + "}"); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_Bit.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_Bit.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_FloatAttribute.java0000644002344600011330000001400712326542262022303 0ustar byrnhdf/************************************************************ This example shows how to read and write floating point datatypes to an attribute. The program first writes floating point numbers to an attribute with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.text.DecimalFormat; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_FloatAttribute { private static String FILENAME = "H5Ex_T_FloatAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static final int RANK = 2; private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; double[][] dset_data = new double[DIM0][DIM1]; // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = indx / (jndx + 0.5) + jndx; } // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if (dataspace_id >= 0) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { if ((dataset_id >= 0) && (dataspace_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, HDF5Constants.H5T_IEEE_F64LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if (attribute_id >= 0) H5.H5Awrite(attribute_id, HDF5Constants.H5T_NATIVE_DOUBLE, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; double[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new double[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (attribute_id >= 0) H5.H5Aread(attribute_id, HDF5Constants.H5T_NATIVE_DOUBLE, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. DecimalFormat df = new DecimalFormat("#,##0.0000"); System.out.println(ATTRIBUTENAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print(" " + df.format(dset_data[indx][jndx])); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_FloatAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_FloatAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_StringAttribute.java0000644002344600011330000002017012326542262023631 0ustar byrnhdf/************************************************************ This example shows how to read and write string datatypes to an attribute. The program first writes strings to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_StringAttribute { private static String FILENAME = "H5ObjectEx_T_StringAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int SDIM = 8; private static final int RANK = 1; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int memtype_id = -1; int filetype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; byte[][] dset_data = new byte[DIM0][SDIM]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 4, Datatype.ORDER_LE, -1); StringBuffer[] str_data = { new StringBuffer("Parting"), new StringBuffer("is such"), new StringBuffer("sweet"), new StringBuffer("sorrow.") }; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create file and memory datatypes. For this example we will save // the strings as FORTRAN strings, therefore they do not need space // for the null terminator in the file. try { filetype_id = H5.H5Tcopy(HDF5Constants.H5T_FORTRAN_S1); if (filetype_id >= 0) H5.H5Tset_size(filetype_id, SDIM - 1); } catch (Exception e) { e.printStackTrace(); } try { memtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (memtype_id >= 0) H5.H5Tset_size(memtype_id, SDIM); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeInt, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute. try { if ((dataset_id >= 0) && (dataspace_id >= 0) && (filetype_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { for (int indx = 0; indx < DIM0; indx++) { for (int jndx = 0; jndx < SDIM; jndx++) { if (jndx < str_data[indx].length()) dset_data[indx][jndx] = (byte) str_data[indx].charAt(jndx); else dset_data[indx][jndx] = 0; } } if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Awrite(attribute_id, memtype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int filetype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; int sdim = 0; long[] dims = { DIM0 }; byte[][] dset_data; StringBuffer[] str_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get the datatype and its size. try { if (attribute_id >= 0) filetype_id = H5.H5Aget_type(attribute_id); if (filetype_id >= 0) { sdim = H5.H5Tget_size(filetype_id); sdim++; // Make room for null terminator } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate space for data. dset_data = new byte[(int) dims[0]][sdim]; str_data = new StringBuffer[(int) dims[0]]; // Create the memory datatype. try { memtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (memtype_id >= 0) H5.H5Tset_size(memtype_id, sdim); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Aread(attribute_id, memtype_id, dset_data); byte[] tempbuf = new byte[sdim]; for (int indx = 0; indx < (int) dims[0]; indx++) { for (int jndx = 0; jndx < sdim; jndx++) { tempbuf[jndx] = dset_data[indx][jndx]; } str_data[indx] = new StringBuffer(new String(tempbuf).trim()); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + " [" + indx + "]: " + str_data[indx]); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_StringAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_StringAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_Commit.java0000644002344600011330000002076512326542262021741 0ustar byrnhdf/************************************************************ This example shows how to commit a named datatype to a file, and read back that datatype. The program first defines a compound datatype, commits it to a file, then closes the file. Next, it reopens the file, opens the datatype, and outputs the names of its fields to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5File; public class H5ObjectEx_T_Commit { private static String FILENAME = "H5ObjectEx_T_Commit.h5"; private static String DATATYPENAME = "Sensor_Type"; // Values for the various classes of datatypes enum H5T_class { H5T_NO_CLASS(HDF5Constants.H5T_NO_CLASS), // error H5T_INTEGER(HDF5Constants.H5T_INTEGER), // integer types H5T_FLOAT(HDF5Constants.H5T_FLOAT), // floating-point types H5T_TIME(HDF5Constants.H5T_TIME), // date and time types H5T_STRING(HDF5Constants.H5T_STRING), // character string types H5T_BITFIELD(HDF5Constants.H5T_BITFIELD), // bit field types H5T_OPAQUE(HDF5Constants.H5T_OPAQUE), // opaque types H5T_COMPOUND(HDF5Constants.H5T_COMPOUND), // compound types H5T_REFERENCE(HDF5Constants.H5T_REFERENCE), // reference types H5T_ENUM(HDF5Constants.H5T_ENUM), // enumeration types H5T_VLEN(HDF5Constants.H5T_VLEN), // Variable-Length types H5T_ARRAY(HDF5Constants.H5T_ARRAY), // Array types H5T_NCLASSES(11); // this must be last private static final Map lookup = new HashMap(); static { for (H5T_class s : EnumSet.allOf(H5T_class.class)) lookup.put(s.getCode(), s); } private int code; H5T_class(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5T_class get(int code) { return lookup.get(code); } } // CompoundDatatype class is used to capture basic externalization information. // Strings need to have a Maximum Size specified. private static class CompoundDatatype { protected static final int OBJHEADERSIZE = 2; protected static final int[] MAGICNUMBERVALUE = { 0xac, 0xed, 0x00, 0x05 }; protected static final int MAGICNUMBER = 4; protected static final int INTEGERSIZE = 4; protected static final int DOUBLESIZE = 8; protected final static int MAXSTRINGSIZE = 80; public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { } public void writeExternal(ObjectOutput out) throws IOException { } } // The supporting Sensor_Datatype class. // Using Java Externalization will add a two-byte object header in // the stream, which needs to be called out in the datatypes. private static class Sensor_Datatype extends CompoundDatatype { static int numberMembers = 5; static int[] memberDims = { 1, 1, 1, 1, 1 }; String[] memberNames = { "ObjectHeader", "Serial number", "Location", "Temperature (F)", "Pressure (inHg)" }; int[] memberMemTypes = { HDF5Constants.H5T_NATIVE_SHORT, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5T_NATIVE_DOUBLE }; int[] memberFileTypes = { HDF5Constants.H5T_STD_I16BE, HDF5Constants.H5T_STD_I32BE, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_IEEE_F64BE, HDF5Constants.H5T_IEEE_F64BE }; static int[] memberStorage = { OBJHEADERSIZE, INTEGERSIZE, MAXSTRINGSIZE, DOUBLESIZE, DOUBLESIZE }; // Data size is the storage size for the members not the object. // Java Externalization also adds a 4-byte "Magic Number" to the beginning // of the data stream static int getDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return data_size; } static int getOffset(int memberItem) { int data_offset = 0; for (int indx = 0; indx < memberItem; indx++) data_offset += memberStorage[indx]; return data_offset; } } private static void CreateDataType() { H5File file = null; int file_id = -1; int strtype_id = -1; int filetype_id = -1; Sensor_Datatype datatypes = new Sensor_Datatype(); // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for the file. Because the standard // types we are using for the file may have different sizes than // the corresponding native types, we must manually calculate the // offset of each member. try { filetype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (filetype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = datatypes.memberFileTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(filetype_id, datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Commit the compound datatype to the file, creating a named datatype. try { if ((file_id >= 0) && (filetype_id >= 0)) H5.H5Tcommit(file_id, DATATYPENAME, filetype_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the str type. try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataType() { H5File file = null; int file_id = -1; int typeclass_id = -1; int filetype_id = -1; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Open named datatype. try { if (file_id >= 0) filetype_id = H5.H5Topen(file_id, DATATYPENAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Named datatype: " + DATATYPENAME+": "); // Get datatype class. If it isn't compound, we won't print anything. try { if (filetype_id >= 0) typeclass_id = H5.H5Tget_class(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if (H5T_class.get(typeclass_id) == H5T_class.H5T_COMPOUND) { System.out.println(" Class: H5T_COMPOUND"); int nmembs = H5.H5Tget_nmembers(filetype_id); // Iterate over compound datatype members. for (int indx = 0; indx < nmembs; indx++) { String member_name = H5.H5Tget_member_name(filetype_id, indx); System.out.println(" " + member_name); } } } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_Commit.CreateDataType(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_Commit.ReadDataType(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_Opaque.java0000644002344600011330000001461112326542262020605 0ustar byrnhdf/************************************************************ This example shows how to read and write opaque datatypes to a dataset. The program first writes opaque data to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_Opaque { private static String FILENAME = "H5Ex_T_Opaque.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int LEN = 7; private static final int RANK = 1; private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int datatype_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; byte[] dset_data = new byte[DIM0 * LEN]; byte[] str_data = { 'O', 'P', 'A', 'Q', 'U', 'E' }; // Initialize data. for (int indx = 0; indx < DIM0; indx++) { for (int jndx = 0; jndx < LEN - 1; jndx++) dset_data[jndx + indx * LEN] = str_data[jndx]; dset_data[LEN - 1 + indx * LEN] = (byte) (indx + '0'); } // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create opaque datatype and set the tag to something appropriate. // For this example we will write and view the data as a character // array. try { datatype_id = H5.H5Tcreate(HDF5Constants.H5T_OPAQUE, LEN); if (datatype_id >= 0) H5.H5Tset_tag(datatype_id, "Character array"); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset and write the integer data to it. In this // example we will save the data as 64 bit big endian integers, // regardless of the native integer type. The HDF5 library // automatically converts between different integer types. try { if ((file_id >= 0) && (datatype_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, datatype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the opaque data to the dataset. try { if ((dataset_id >= 0) && (datatype_id >= 0)) H5.H5Dwrite(dataset_id, datatype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (datatype_id >= 0) H5.H5Tclose(datatype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int datatype_id = -1; int dataspace_id = -1; int dataset_id = -1; int type_len = -1; long[] dims = { DIM0 }; byte[] dset_data; String tag_name = null; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get datatype and properties for the datatype. try { if (dataset_id >= 0) datatype_id = H5.H5Dget_type(dataset_id); if (datatype_id >= 0) { type_len = H5.H5Tget_size(datatype_id); tag_name = H5.H5Tget_tag(datatype_id); } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate buffer. dset_data = new byte[(int) dims[0] * type_len]; // Read data. try { if ((dataset_id >= 0) && (datatype_id >= 0)) H5.H5Dread(dataset_id, datatype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Datatype tag for " + DATASETNAME + " is: \"" + tag_name + "\""); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(DATASETNAME + "[" + indx + "]: "); for (int jndx = 0; jndx < type_len; jndx++) { char temp = (char) dset_data[jndx + indx * type_len]; System.out.print(temp); } System.out.println(""); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (datatype_id >= 0) H5.H5Tclose(datatype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_Opaque.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_Opaque.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/CMakeLists.txt0000644002344600011330000001370712352113716020136 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_EXAMPLES_DATATYPES Java) set (CMAKE_VERBOSE_MAKEFILE 1) INCLUDE_DIRECTORIES ( ${JAVA_NCSA_HDF_HDF5_BINARY_DIR} ${HDFJAVA_LIB_DIR} ) set (HDF_JAVA_EXAMPLES H5Ex_T_Array H5Ex_T_ArrayAttribute H5Ex_T_Bit H5Ex_T_BitAttribute H5Ex_T_Commit H5Ex_T_Compound H5Ex_T_CompoundAttribute H5Ex_T_Float H5Ex_T_FloatAttribute H5Ex_T_Integer H5Ex_T_IntegerAttribute H5Ex_T_ObjectReference H5Ex_T_ObjectReferenceAttribute H5Ex_T_Opaque H5Ex_T_OpaqueAttribute H5Ex_T_String H5Ex_T_StringAttribute H5Ex_T_VLString ) set (HDF_JAVA_OBJECT_EXAMPLES H5ObjectEx_T_Array H5ObjectEx_T_ArrayAttribute H5ObjectEx_T_Bit H5ObjectEx_T_BitAttribute H5ObjectEx_T_Commit H5ObjectEx_T_Compound H5ObjectEx_T_CompoundAttribute H5ObjectEx_T_Float H5ObjectEx_T_FloatAttribute H5ObjectEx_T_Integer H5ObjectEx_T_IntegerAttribute H5ObjectEx_T_ObjectReference H5ObjectEx_T_ObjectReferenceAttribute H5ObjectEx_T_Opaque H5ObjectEx_T_OpaqueAttribute H5ObjectEx_T_String H5ObjectEx_T_StringAttribute H5ObjectEx_T_VLString ) if (WIN32) set (CMAKE_JAVA_INCLUDE_FLAG_SEP ";") else (WIN32) set (CMAKE_JAVA_INCLUDE_FLAG_SEP ":") endif (WIN32) set (CMAKE_JAVA_INCLUDE_PATH "${HDFJAVA_HDF5_JARS}") set (CMAKE_JAVA_CLASSPATH ".") foreach (CMAKE_INCLUDE_PATH ${CMAKE_JAVA_INCLUDE_PATH}) set (CMAKE_JAVA_CLASSPATH "${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${CMAKE_INCLUDE_PATH}") endforeach (CMAKE_INCLUDE_PATH) foreach (example ${HDF_JAVA_EXAMPLES}) file (WRITE ${PROJECT_BINARY_DIR}/Manifest.txt "Main-Class: examples.datatypes.${example} " ) add_jar (${example} MANIFEST ${PROJECT_BINARY_DIR}/Manifest.txt ${example}.java) get_target_property (${example}_JAR_FILE ${example} JAR_FILE) # install_jar (${example} ${HJAVA_INSTALL_DATA_DIR}/examples examples) get_target_property (${example}_CLASSPATH ${example} CLASSDIR) add_dependencies (${example} ${HDFJAVA_NCSA_HDF5_LIB_TARGET}) endforeach (example ${HDF_JAVA_EXAMPLES}) set (CMAKE_JAVA_INCLUDE_PATH "${HDFJAVA_HDF5_JARS};${HDFJAVA_HDF4_JARS};${HDFJAVA_OBJECT_JARS};${HDFJAVA_LOGGING_JAR};${HDFJAVA_LOGGING_NOP_JAR}") set (CMAKE_JAVA_CLASSPATH ".") foreach (HDFJAVA_JAR ${CMAKE_JAVA_INCLUDE_PATH}) set (CMAKE_JAVA_CLASSPATH "${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${HDFJAVA_JAR}") endforeach (HDFJAVA_JAR) foreach (example ${HDF_JAVA_OBJECT_EXAMPLES}) file (WRITE ${PROJECT_BINARY_DIR}/Manifest.txt "Main-Class: examples.datatypes.${example} " ) add_jar (${example} MANIFEST ${PROJECT_BINARY_DIR}/Manifest.txt ${example}.java) get_target_property (${example}_JAR_FILE ${example} JAR_FILE) # install_jar (${example} ${HJAVA_INSTALL_DATA_DIR}/examples examples) get_target_property (${example}_CLASSPATH ${example} CLASSDIR) add_dependencies (${example} ${HDFJAVA_NCSA_H5_LIB_TARGET}) endforeach (example ${HDF_JAVA_OBJECT_EXAMPLES}) MACRO (ADD_H5_TEST resultfile resultcode) add_test ( NAME datatypes-${resultfile} COMMAND "${CMAKE_COMMAND}" -D "TEST_TESTER=${CMAKE_Java_RUNTIME};${CMAKE_Java_RUNTIME_FLAGS}" -D "TEST_PROGRAM=examples.datatypes.${resultfile}" -D "TEST_ARGS:STRING=${ARGN}" -D "TEST_CLASSPATH:STRING=${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${${resultfile}_JAR_FILE}" -D "TEST_LIBRARY_DIRECTORY=${CMAKE_TEST_OUTPUT_DIRECTORY}" -D "TEST_FOLDER=${HDFJAVA_EXAMPLES_BINARY_DIR}" -D "TEST_OUTPUT=datatypes/${resultfile}.out" -D "TEST_EXPECT=${resultcode}" -D "TEST_REFERENCE=datatypes/${resultfile}.txt" -P "${HDF_RESOURCES_DIR}/runTest.cmake" ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (datatypes-${resultfile} PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "datatypes-${resultfile}") ENDMACRO (ADD_H5_TEST file) if (BUILD_TESTING) foreach (example ${HDF_JAVA_EXAMPLES}) add_test ( NAME datatypes-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ${example}.out ${example}.out.err ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (datatypes-${example}-clearall-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") add_test ( NAME datatypes-${example}-copy-objects COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDFJAVA_EXAMPLES_SOURCE_DIR}/testfiles/examples.datatypes.${example}.txt ${HDFJAVA_EXAMPLES_DATATYPES_BINARY_DIR}/${example}.txt ) set_tests_properties (datatypes-${example}-copy-objects PROPERTIES DEPENDS datatypes-${example}-clearall-objects) set (last_test "datatypes-${example}-copy-objects") ADD_H5_TEST (${example} 0) endforeach (example ${HDF_JAVA_EXAMPLES}) foreach (example ${HDF_JAVA_OBJECT_EXAMPLES}) add_test ( NAME datatypes-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ${example}.out ${example}.out.err ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (datatypes-${example}-clearall-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") add_test ( NAME datatypes-${example}-copy-objects COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDFJAVA_EXAMPLES_SOURCE_DIR}/testfiles/examples.datatypes.${example}.txt ${HDFJAVA_EXAMPLES_DATATYPES_BINARY_DIR}/${example}.txt ) set_tests_properties (datatypes-${example}-copy-objects PROPERTIES DEPENDS datatypes-${example}-clearall-objects) set (last_test "datatypes-${example}-copy-objects") ADD_H5_TEST (${example} 0) endforeach (example ${HDF_JAVA_OBJECT_EXAMPLES}) endif (BUILD_TESTING) hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_Compound.java0000644002344600011330000003364512326542262022276 0ustar byrnhdf/************************************************************ This example shows how to read and write compound datatypes to a dataset. The program first writes compound structures to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectInputStream; import java.io.ObjectOutput; import java.io.ObjectOutputStream; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5CompoundDS; import ncsa.hdf.object.h5.H5File; public class H5ObjectEx_T_Compound { private static String FILENAME = "H5ObjectEx_T_Compound.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int RANK = 1; // CompoundDatatype class is used to capture basic externalization information. // Strings need to have a Maximum Size specified. private static class CompoundDatatype { protected static final int OBJHEADERSIZE = 2; protected static final int[] MAGICNUMBERVALUE = { 0xac, 0xed, 0x00, 0x05 }; protected static final int MAGICNUMBER = 4; protected static final int INTEGERSIZE = 4; protected static final int DOUBLESIZE = 8; protected final static int MAXSTRINGSIZE = 80; public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { } public void writeExternal(ObjectOutput out) throws IOException { } } // Compound type class includes supporting Sensor_Datatype class. // The Sensor_Datatype class could be external as well. private static class Sensor implements java.io.Externalizable { static Sensor_Datatype datatypes; int serial_no; String location; double temperature; double pressure; Sensor() { datatypes = new Sensor_Datatype(); } // Each data member field must be shown how to be written and read. // Strings need to be handled by bytes. public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { serial_no = in.readInt(); byte[] tempbuf = new byte[CompoundDatatype.MAXSTRINGSIZE]; for (int indx = 0; indx < CompoundDatatype.MAXSTRINGSIZE; indx++) { tempbuf[indx] = in.readByte(); } location = new String(tempbuf).trim(); temperature = in.readDouble(); pressure = in.readDouble(); } public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(serial_no); for (int indx = 0; indx < CompoundDatatype.MAXSTRINGSIZE; indx++) { if (indx < location.length()) out.writeByte(location.charAt(indx)); else out.writeByte(0); } out.writeDouble(temperature); out.writeDouble(pressure); } } // Using Java Externalization will add a two-byte object header in // the stream, which needs to be called out in the datatypes. private static class Sensor_Datatype extends CompoundDatatype { static int numberMembers = 5; static int[] memberDims = { 1, 1, 1, 1, 1 }; String[] memberNames = { "ObjectHeader", "Serial number", "Location", "Temperature (F)", "Pressure (inHg)" }; int[] memberMemTypes = { HDF5Constants.H5T_NATIVE_SHORT, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5T_NATIVE_DOUBLE }; int[] memberFileTypes = { HDF5Constants.H5T_STD_I16BE, HDF5Constants.H5T_STD_I32BE, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_IEEE_F64BE, HDF5Constants.H5T_IEEE_F64BE }; static int[] memberStorage = { OBJHEADERSIZE, INTEGERSIZE, MAXSTRINGSIZE, DOUBLESIZE, DOUBLESIZE }; // Data size is the storage size for the members not the object. // Java Externalization also adds a 4-byte "Magic Number" to the beginning // of the data stream static int getTotalDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return DIM0 * data_size + MAGICNUMBER; } static int getDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return data_size; } static int getOffset(int memberItem) { int data_offset = 0; for (int indx = 0; indx < memberItem; indx++) data_offset += memberStorage[indx]; return data_offset; } } private static void CreateDataset() { H5File file = null; int file_id = -1; int strtype_id = -1; int memtype_id = -1; int filetype_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; Sensor[] object_data = new Sensor[DIM0]; byte[] dset_data = null; // Initialize data. object_data[0] = new Sensor(); object_data[0].serial_no = 1153; object_data[0].location = new String("Exterior (static)"); object_data[0].temperature = 53.23; object_data[0].pressure = 24.57; object_data[1] = new Sensor(); object_data[1].serial_no = 1184; object_data[1].location = new String("Intake"); object_data[1].temperature = 55.12; object_data[1].pressure = 22.95; object_data[2] = new Sensor(); object_data[2].serial_no = 1027; object_data[2].location = new String("Intake manifold"); object_data[2].temperature = 103.55; object_data[2].pressure = 31.23; object_data[3] = new Sensor(); object_data[3].serial_no = 1313; object_data[3].location = new String("Exhaust manifold"); object_data[3].temperature = 1252.89; object_data[3].pressure = 84.11; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for memory. try { memtype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (memtype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberMemTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(memtype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for the file. Because the standard // types we are using for the file may have different sizes than // the corresponding native types, we must manually calculate the // offset of each member. try { filetype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (filetype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberFileTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(filetype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (dataspace_id >= 0) && (filetype_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the compound data to the dataset. try { ByteArrayOutputStream baos = new ByteArrayOutputStream(Sensor_Datatype.getTotalDataSize()); ObjectOutputStream oout = new ObjectOutputStream(baos); for (int indx = 0; indx < DIM0; indx++) { object_data[indx].writeExternal(oout); oout.flush(); } oout.close(); baos.close(); dset_data = baos.toByteArray(); byte[] write_data = new byte[dset_data.length-CompoundDatatype.MAGICNUMBER]; for(int indx=0; indx= 0) && (memtype_id >= 0)) H5.H5Dwrite(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, write_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5CompoundDS dset = null; int strtype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; Sensor[] object_data2; byte[] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5CompoundDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for memory. try { memtype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (memtype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberMemTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(memtype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // allocate memory for read buffer. byte[] read_data = new byte[(int) dims[0] * Sensor_Datatype.getDataSize()]; object_data2 = new Sensor[(int) dims[0]]; // Read data. try { if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dread(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, read_data); dset_data = new byte[read_data.length + CompoundDatatype.MAGICNUMBER]; for (int indx = 0; indx < CompoundDatatype.MAGICNUMBER; indx++) dset_data[indx] = (byte) CompoundDatatype.MAGICNUMBERVALUE[indx]; for (int indx = 0; indx < read_data.length; indx++) dset_data[indx + CompoundDatatype.MAGICNUMBER] = read_data[indx]; ObjectInputStream objectIn = new ObjectInputStream(new ByteArrayInputStream(dset_data)); for (int indx = 0; indx < (int) dims[0]; indx++) { object_data2[indx] = new Sensor(); object_data2[indx].readExternal(objectIn); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + " [" + indx + "]:"); System.out.println("Serial number : " + object_data2[indx].serial_no); System.out.println("Location : " + object_data2[indx].location); System.out.println("Temperature (F) : " + object_data2[indx].temperature); System.out.println("Pressure (inHg) : " + object_data2[indx].pressure); System.out.println(); } System.out.println(); try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_Compound.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_Compound.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_Array.java0000644002344600011330000001502712326542262020433 0ustar byrnhdf/************************************************************ This example shows how to read and write array datatypes to a dataset. The program first writes integers arrays of dimension ADIM0xADIM1 to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_Array { private static String FILENAME = "H5Ex_T_Array.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int ADIM0 = 3; private static final int ADIM1 = 5; private static final int RANK = 1; private static final int NDIMS = 2; private static void CreateDataset() { int file_id = -1; int filetype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; long[] adims = { ADIM0, ADIM1 }; int[][][] dset_data = new int[DIM0][ADIM0][ADIM1]; // Initialize data. indx is the element in the dataspace, jndx and kndx the // elements within the array datatype. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < ADIM0; jndx++) for (int kndx = 0; kndx < ADIM1; kndx++) dset_data[indx][jndx][kndx] = indx * jndx - jndx * kndx + indx * kndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create array datatypes for file. try { filetype_id = H5.H5Tarray_create(HDF5Constants.H5T_STD_I64LE, NDIMS, adims); } catch (Exception e) { e.printStackTrace(); } // Create array datatypes for memory. try { memtype_id = H5.H5Tarray_create(HDF5Constants.H5T_NATIVE_INT, NDIMS, adims); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (dataspace_id >= 0) && (filetype_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dwrite(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int filetype_id = -1; int memtype_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; long[] adims = { ADIM0, ADIM1 }; int[][][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get the datatype. try { if (dataset_id >= 0) filetype_id = H5.H5Dget_type(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Get the datatype's dimensions. try { if (filetype_id >= 0) H5.H5Tget_array_dims(filetype_id, adims); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (adims[0])][(int) (adims[1])]; // Create array datatypes for memory. try { memtype_id = H5.H5Tarray_create(HDF5Constants.H5T_NATIVE_INT, 2, adims); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dread(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + " [" + indx + "]:"); for (int jndx = 0; jndx < adims[0]; jndx++) { System.out.print(" ["); for (int kndx = 0; kndx < adims[1]; kndx++) System.out.print(dset_data[indx][jndx][kndx] + " "); System.out.println("]"); } System.out.println(); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_Array.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_Array.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_BitAttribute.java0000644002344600011330000001475312326542262023113 0ustar byrnhdf/************************************************************ This example shows how to read and write bitfield datatypes to an attribute. The program first writes bit fields to an attribute with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_BitAttribute { private static String FILENAME = "H5ObjectEx_T_BitAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static final int RANK = 2; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data = new int[DIM0][DIM1]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 4, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = 0; dset_data[indx][jndx] |= (indx * jndx - jndx) & 0x03; /* Field "A" */ dset_data[indx][jndx] |= (indx & 0x03) << 2; /* Field "B" */ dset_data[indx][jndx] |= (jndx & 0x03) << 4; /* Field "C" */ dset_data[indx][jndx] |= ((indx + jndx) & 0x03) << 6; /* Field "D" */ } // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeInt, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { if ((dataset_id >= 0) && (dataspace_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, HDF5Constants.H5T_STD_B8BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if (attribute_id >= 0) H5.H5Awrite(attribute_id, HDF5Constants.H5T_NATIVE_B8, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (attribute_id >= 0) H5.H5Aread(attribute_id, HDF5Constants.H5T_NATIVE_B8, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println(ATTRIBUTENAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print("{" + (dset_data[indx][jndx] & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 2) & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 4) & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 6) & 0x03) + "}"); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_BitAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_BitAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_Compound.java0000644002344600011330000003344412326542262021144 0ustar byrnhdf/************************************************************ This example shows how to read and write compound datatypes to a dataset. The program first writes compound structures to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectInputStream; import java.io.ObjectOutput; import java.io.ObjectOutputStream; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_Compound { private static String FILENAME = "H5Ex_T_Compound.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int RANK = 1; // CompoundDatatype class is used to capture basic externalization information. // Strings need to have a Maximum Size specified. private static class CompoundDatatype { protected static final int OBJHEADERSIZE = 2; protected static final int[] MAGICNUMBERVALUE = { 0xac, 0xed, 0x00, 0x05 }; protected static final int MAGICNUMBER = 4; protected static final int INTEGERSIZE = 4; protected static final int DOUBLESIZE = 8; protected final static int MAXSTRINGSIZE = 80; public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { } public void writeExternal(ObjectOutput out) throws IOException { } } // Compound type class includes supporting Sensor_Datatype class. // The Sensor_Datatype class could be external as well. private static class Sensor implements java.io.Externalizable { static Sensor_Datatype datatypes; int serial_no; String location; double temperature; double pressure; Sensor() { datatypes = new Sensor_Datatype(); } // Each data member field must be shown how to be written and read. // Strings need to be handled by bytes. public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { serial_no = in.readInt(); byte[] tempbuf = new byte[CompoundDatatype.MAXSTRINGSIZE]; for (int indx = 0; indx < CompoundDatatype.MAXSTRINGSIZE; indx++) { tempbuf[indx] = in.readByte(); } location = new String(tempbuf).trim(); temperature = in.readDouble(); pressure = in.readDouble(); } public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(serial_no); for (int indx = 0; indx < CompoundDatatype.MAXSTRINGSIZE; indx++) { if (indx < location.length()) out.writeByte(location.charAt(indx)); else out.writeByte(0); } out.writeDouble(temperature); out.writeDouble(pressure); } } // Using Java Externalization will add a two-byte object header in // the stream, which needs to be called out in the datatypes. private static class Sensor_Datatype extends CompoundDatatype { static int numberMembers = 5; static int[] memberDims = { 1, 1, 1, 1, 1 }; String[] memberNames = { "ObjectHeader", "Serial number", "Location", "Temperature (F)", "Pressure (inHg)" }; int[] memberMemTypes = { HDF5Constants.H5T_NATIVE_SHORT, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5T_NATIVE_DOUBLE }; int[] memberFileTypes = { HDF5Constants.H5T_STD_I16BE, HDF5Constants.H5T_STD_I32BE, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_IEEE_F64BE, HDF5Constants.H5T_IEEE_F64BE }; static int[] memberStorage = { OBJHEADERSIZE, INTEGERSIZE, MAXSTRINGSIZE, DOUBLESIZE, DOUBLESIZE }; // Data size is the storage size for the members not the object. // Java Externalization also adds a 4-byte "Magic Number" to the beginning // of the data stream static int getTotalDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return DIM0 * data_size + MAGICNUMBER; } static int getDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return data_size; } static int getOffset(int memberItem) { int data_offset = 0; for (int indx = 0; indx < memberItem; indx++) data_offset += memberStorage[indx]; return data_offset; } } private static void CreateDataset() { int file_id = -1; int strtype_id = -1; int memtype_id = -1; int filetype_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; Sensor[] object_data = new Sensor[DIM0]; byte[] dset_data = null; // Initialize data. object_data[0] = new Sensor(); object_data[0].serial_no = 1153; object_data[0].location = new String("Exterior (static)"); object_data[0].temperature = 53.23; object_data[0].pressure = 24.57; object_data[1] = new Sensor(); object_data[1].serial_no = 1184; object_data[1].location = new String("Intake"); object_data[1].temperature = 55.12; object_data[1].pressure = 22.95; object_data[2] = new Sensor(); object_data[2].serial_no = 1027; object_data[2].location = new String("Intake manifold"); object_data[2].temperature = 103.55; object_data[2].pressure = 31.23; object_data[3] = new Sensor(); object_data[3].serial_no = 1313; object_data[3].location = new String("Exhaust manifold"); object_data[3].temperature = 1252.89; object_data[3].pressure = 84.11; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for memory. try { memtype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (memtype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberMemTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(memtype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for the file. Because the standard // types we are using for the file may have different sizes than // the corresponding native types, we must manually calculate the // offset of each member. try { filetype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (filetype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberFileTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(filetype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (dataspace_id >= 0) && (filetype_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the compound data to the dataset. try { ByteArrayOutputStream baos = new ByteArrayOutputStream(Sensor_Datatype.getTotalDataSize()); ObjectOutputStream oout = new ObjectOutputStream(baos); for (int indx = 0; indx < DIM0; indx++) { object_data[indx].writeExternal(oout); oout.flush(); } oout.close(); baos.close(); dset_data = baos.toByteArray(); byte[] write_data = new byte[dset_data.length-CompoundDatatype.MAGICNUMBER]; for(int indx=0; indx= 0) && (memtype_id >= 0)) H5.H5Dwrite(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, write_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int strtype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; Sensor[] object_data2; byte[] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for memory. try { memtype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (memtype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberMemTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(memtype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // allocate memory for read buffer. byte[] read_data = new byte[(int) dims[0] * Sensor_Datatype.getDataSize()]; object_data2 = new Sensor[(int) dims[0]]; // Read data. try { if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dread(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, read_data); dset_data = new byte[read_data.length + CompoundDatatype.MAGICNUMBER]; for (int indx = 0; indx < CompoundDatatype.MAGICNUMBER; indx++) dset_data[indx] = (byte) CompoundDatatype.MAGICNUMBERVALUE[indx]; for (int indx = 0; indx < read_data.length; indx++) dset_data[indx + CompoundDatatype.MAGICNUMBER] = read_data[indx]; ObjectInputStream objectIn = new ObjectInputStream(new ByteArrayInputStream(dset_data)); for (int indx = 0; indx < (int) dims[0]; indx++) { object_data2[indx] = new Sensor(); object_data2[indx].readExternal(objectIn); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + " [" + indx + "]:"); System.out.println("Serial number : " + object_data2[indx].serial_no); System.out.println("Location : " + object_data2[indx].location); System.out.println("Temperature (F) : " + object_data2[indx].temperature); System.out.println("Pressure (inHg) : " + object_data2[indx].pressure); System.out.println(); } System.out.println(); try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_Compound.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_Compound.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_Opaque.java0000644002344600011330000001507712326542262021743 0ustar byrnhdf/************************************************************ This example shows how to read and write opaque datatypes to a dataset. The program first writes opaque data to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_Opaque { private static String FILENAME = "H5ObjectEx_T_Opaque.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int LEN = 7; private static final int RANK = 1; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int file_id = -1; int dataspace_id = -1; int datatype_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; byte[] dset_data = new byte[DIM0 * LEN]; byte[] str_data = { 'O', 'P', 'A', 'Q', 'U', 'E' }; // Initialize data. for (int indx = 0; indx < DIM0; indx++) { for (int jndx = 0; jndx < LEN - 1; jndx++) dset_data[jndx + indx * LEN] = str_data[jndx]; dset_data[LEN - 1 + indx * LEN] = (byte) (indx + '0'); } // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create opaque datatype and set the tag to something appropriate. // For this example we will write and view the data as a character // array. try { datatype_id = H5.H5Tcreate(HDF5Constants.H5T_OPAQUE, LEN); if (datatype_id >= 0) H5.H5Tset_tag(datatype_id, "Character array"); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset and write the integer data to it. In this // example we will save the data as 64 bit big endian integers, // regardless of the native integer type. The HDF5 library // automatically converts between different integer types. try { if ((file_id >= 0) && (datatype_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, datatype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the opaque data to the dataset. try { dset.write(dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (datatype_id >= 0) H5.H5Tclose(datatype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int datatype_id = -1; int dataspace_id = -1; int dataset_id = -1; int type_len = -1; long[] dims = { DIM0 }; byte[] dset_data; String tag_name = null; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get datatype and properties for the datatype. try { if (dataset_id >= 0) datatype_id = H5.H5Dget_type(dataset_id); if (datatype_id >= 0) { type_len = H5.H5Tget_size(datatype_id); tag_name = H5.H5Tget_tag(datatype_id); } } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate buffer. dset_data = new byte[(int) dims[0] * type_len]; // Read data. try { if ((dataset_id >= 0) && (datatype_id >= 0)) H5.H5Dread(dataset_id, datatype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Datatype tag for " + DATASETNAME + " is: \"" + tag_name + "\""); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(DATASETNAME + "[" + indx + "]: "); for (int jndx = 0; jndx < type_len; jndx++) { char temp = (char) dset_data[jndx + indx * type_len]; System.out.print(temp); } System.out.println(""); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } try { if (datatype_id >= 0) H5.H5Tclose(datatype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_Opaque.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_Opaque.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_Commit.java0000644002344600011330000002064412326542262020606 0ustar byrnhdf/************************************************************ This example shows how to commit a named datatype to a file, and read back that datatype. The program first defines a compound datatype, commits it to a file, then closes the file. Next, it reopens the file, opens the datatype, and outputs the names of its fields to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_Commit { private static String FILENAME = "H5Ex_T_Commit.h5"; private static String DATATYPENAME = "Sensor_Type"; // Values for the various classes of datatypes enum H5T_class { H5T_NO_CLASS(HDF5Constants.H5T_NO_CLASS), // error H5T_INTEGER(HDF5Constants.H5T_INTEGER), // integer types H5T_FLOAT(HDF5Constants.H5T_FLOAT), // floating-point types H5T_TIME(HDF5Constants.H5T_TIME), // date and time types H5T_STRING(HDF5Constants.H5T_STRING), // character string types H5T_BITFIELD(HDF5Constants.H5T_BITFIELD), // bit field types H5T_OPAQUE(HDF5Constants.H5T_OPAQUE), // opaque types H5T_COMPOUND(HDF5Constants.H5T_COMPOUND), // compound types H5T_REFERENCE(HDF5Constants.H5T_REFERENCE), // reference types H5T_ENUM(HDF5Constants.H5T_ENUM), // enumeration types H5T_VLEN(HDF5Constants.H5T_VLEN), // Variable-Length types H5T_ARRAY(HDF5Constants.H5T_ARRAY), // Array types H5T_NCLASSES(11); // this must be last private static final Map lookup = new HashMap(); static { for (H5T_class s : EnumSet.allOf(H5T_class.class)) lookup.put(s.getCode(), s); } private int code; H5T_class(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5T_class get(int code) { return lookup.get(code); } } // CompoundDatatype class is used to capture basic externalization information. // Strings need to have a Maximum Size specified. private static class CompoundDatatype { protected static final int OBJHEADERSIZE = 2; protected static final int[] MAGICNUMBERVALUE = { 0xac, 0xed, 0x00, 0x05 }; protected static final int MAGICNUMBER = 4; protected static final int INTEGERSIZE = 4; protected static final int DOUBLESIZE = 8; protected final static int MAXSTRINGSIZE = 80; public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { } public void writeExternal(ObjectOutput out) throws IOException { } } // The supporting Sensor_Datatype class. // Using Java Externalization will add a two-byte object header in // the stream, which needs to be called out in the datatypes. private static class Sensor_Datatype extends CompoundDatatype { static int numberMembers = 5; static int[] memberDims = { 1, 1, 1, 1, 1 }; String[] memberNames = { "ObjectHeader", "Serial number", "Location", "Temperature (F)", "Pressure (inHg)" }; int[] memberMemTypes = { HDF5Constants.H5T_NATIVE_SHORT, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5T_NATIVE_DOUBLE }; int[] memberFileTypes = { HDF5Constants.H5T_STD_I16BE, HDF5Constants.H5T_STD_I32BE, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_IEEE_F64BE, HDF5Constants.H5T_IEEE_F64BE }; static int[] memberStorage = { OBJHEADERSIZE, INTEGERSIZE, MAXSTRINGSIZE, DOUBLESIZE, DOUBLESIZE }; // Data size is the storage size for the members not the object. // Java Externalization also adds a 4-byte "Magic Number" to the beginning // of the data stream static int getDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return data_size; } static int getOffset(int memberItem) { int data_offset = 0; for (int indx = 0; indx < memberItem; indx++) data_offset += memberStorage[indx]; return data_offset; } } private static void CreateDataType() { int file_id = -1; int strtype_id = -1; int filetype_id = -1; Sensor_Datatype datatypes = new Sensor_Datatype(); // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for the file. Because the standard // types we are using for the file may have different sizes than // the corresponding native types, we must manually calculate the // offset of each member. try { filetype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (filetype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = datatypes.memberFileTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(filetype_id, datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Commit the compound datatype to the file, creating a named datatype. try { if ((file_id >= 0) && (filetype_id >= 0)) H5.H5Tcommit(file_id, DATATYPENAME, filetype_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the str type. try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataType() { int file_id = -1; int typeclass_id = -1; int filetype_id = -1; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open named datatype. try { if (file_id >= 0) filetype_id = H5.H5Topen(file_id, DATATYPENAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println("Named datatype: " + DATATYPENAME+": "); // Get datatype class. If it isn't compound, we won't print anything. try { if (filetype_id >= 0) typeclass_id = H5.H5Tget_class(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if (H5T_class.get(typeclass_id) == H5T_class.H5T_COMPOUND) { System.out.println(" Class: H5T_COMPOUND"); int nmembs = H5.H5Tget_nmembers(filetype_id); // Iterate over compound datatype members. for (int indx = 0; indx < nmembs; indx++) { String member_name = H5.H5Tget_member_name(filetype_id, indx); System.out.println(" " + member_name); } } } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_Commit.CreateDataType(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_Commit.ReadDataType(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_VLString.java0000644002344600011330000000331712326542262022213 0ustar byrnhdfpackage examples.datatypes; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_VLString { private static String FILENAME = "H5ObjectEx_T_VLString.h5"; private static String DATASETNAME = "DS1"; private static void createDataset() { H5File file = null; String[] str_data = { "Parting", "is such", "sweet", "sorrow." }; long[] dims = { str_data.length }; final H5Datatype typeVLStr = new H5Datatype(Datatype.CLASS_STRING, -1, -1, -1); // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); // Create the dataset and write the string data to it. file.createScalarDS(DATASETNAME, null, typeVLStr, dims, null, null, 0, str_data); } catch (Exception e) { e.printStackTrace(); } } private static void readDataset() { H5File file = null; H5ScalarDS dset = null; String[] str_data = { "", "", "", "" }; try { file = new H5File(FILENAME, FileFormat.READ); dset = (H5ScalarDS) file.get(DATASETNAME); str_data = (String[]) dset.read(); } catch (Exception e) { e.printStackTrace(); } for (int indx = 0; indx < str_data.length; indx++) System.out.println(DATASETNAME + " [" + indx + "]: " + str_data[indx]); } public static void main(String[] args) { H5ObjectEx_T_VLString.createDataset(); H5ObjectEx_T_VLString.readDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_ArrayAttribute.java0000644002344600011330000001664312326542262022324 0ustar byrnhdf/************************************************************ This example shows how to read and write array datatypes to an attribute. The program first writes integers arrays of dimension ADIM0xADIM1 to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_ArrayAttribute { private static String FILENAME = "H5Ex_T_ArrayAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int ADIM0 = 3; private static final int ADIM1 = 5; private static final int RANK = 1; private static final int NDIMS = 2; private static void CreateDataset() { int file_id = -1; int filetype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; long[] adims = { ADIM0, ADIM1 }; int[][][] dset_data = new int[DIM0][ADIM0][ADIM1]; // Initialize data. indx is the element in the dataspace, jndx and kndx the // elements within the array datatype. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < ADIM0; jndx++) for (int kndx = 0; kndx < ADIM1; kndx++) dset_data[indx][jndx][kndx] = indx * jndx - jndx * kndx + indx * kndx; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create array datatypes for file. try { filetype_id = H5.H5Tarray_create(HDF5Constants.H5T_STD_I64LE, NDIMS, adims); } catch (Exception e) { e.printStackTrace(); } // Create array datatypes for memory. try { memtype_id = H5.H5Tarray_create(HDF5Constants.H5T_NATIVE_INT, NDIMS, adims); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if (dataspace_id >= 0) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { if ((dataset_id >= 0) && (dataspace_id >= 0) && (filetype_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Awrite(attribute_id, memtype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int filetype_id = -1; int memtype_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; long[] adims = { ADIM0, ADIM1 }; int[][][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get the datatype. try { if (attribute_id >= 0) filetype_id = H5.H5Aget_type(attribute_id); } catch (Exception e) { e.printStackTrace(); } // Get the datatype's dimensions. try { if (filetype_id >= 0) H5.H5Tget_array_dims(filetype_id, adims); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (adims[0])][(int) (adims[1])]; // Create array datatypes for memory. try { memtype_id = H5.H5Tarray_create(HDF5Constants.H5T_NATIVE_INT, 2, adims); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Aread(attribute_id, memtype_id, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(ATTRIBUTENAME + " [" + indx + "]:"); for (int jndx = 0; jndx < adims[0]; jndx++) { System.out.print(" ["); for (int kndx = 0; kndx < adims[1]; kndx++) System.out.print(dset_data[indx][jndx][kndx] + " "); System.out.println("]"); } System.out.println(); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_ArrayAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_ArrayAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_IntegerAttribute.java0000644002344600011330000001360112326542262023761 0ustar byrnhdf/************************************************************ This example shows how to read and write integer datatypes to an attribute. The program first writes integers to an attribute with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.text.DecimalFormat; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Attribute; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_IntegerAttribute { private static String FILENAME = "H5ObjectEx_T_IntegerAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data = new int[DIM0][DIM1]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 4, Datatype.ORDER_LE, -1); final H5Datatype typeBigInt = new H5Datatype(Datatype.CLASS_INTEGER, 8, Datatype.ORDER_BE, -1); // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = indx * jndx - jndx; } // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeInt, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { Attribute dataArray = new Attribute(ATTRIBUTENAME, typeBigInt, dims); dset.writeMetadata(dataArray); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); if (attribute_id >= 0) H5.H5Awrite(attribute_id, HDF5Constants.H5T_NATIVE_INT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (attribute_id >= 0) H5.H5Aread(attribute_id, HDF5Constants.H5T_NATIVE_INT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. DecimalFormat df = new DecimalFormat("#,##0"); System.out.println(ATTRIBUTENAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print(" " + df.format(dset_data[indx][jndx])); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_IntegerAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_IntegerAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_ObjectReferenceAttribute.java0000644002344600011330000002352212326542262024265 0ustar byrnhdf/************************************************************ This example shows how to read and write object references to an attribute. The program first creates objects in the file and writes references to those objects to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, dereferences the references, and outputs the names of their targets to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_ObjectReferenceAttribute { private static String FILENAME = "H5Ex_T_ObjectReferenceAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static String DATASETNAME2 = "DS2"; private static String GROUPNAME = "G1"; private static final int DIM0 = 2; private static final int RANK = 1; // Values for the status of space allocation enum H5G_obj { H5G_UNKNOWN(HDF5Constants.H5G_UNKNOWN), /* Unknown object type */ H5G_GROUP(HDF5Constants.H5G_GROUP), /* Object is a group */ H5G_DATASET(HDF5Constants.H5G_DATASET), /* Object is a dataset */ H5G_TYPE(HDF5Constants.H5G_TYPE), /* Object is a named data type */ H5G_LINK(HDF5Constants.H5G_LINK), /* Object is a symbolic link */ H5G_UDLINK(HDF5Constants.H5G_UDLINK), /* Object is a user-defined link */ H5G_RESERVED_5(HDF5Constants.H5G_RESERVED_5), /* Reserved for future use */ H5G_RESERVED_6(HDF5Constants.H5G_RESERVED_6), /* Reserved for future use */ H5G_RESERVED_7(HDF5Constants.H5G_RESERVED_7); /* Reserved for future use */ private static final Map lookup = new HashMap(); static { for (H5G_obj s : EnumSet.allOf(H5G_obj.class)) lookup.put(s.getCode(), s); } private int code; H5G_obj(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5G_obj get(int code) { return lookup.get(code); } } private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int group_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; byte[][] dset_data = new byte[DIM0][8]; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if (dataspace_id >= 0) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME2, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); if (dataset_id >= 0) H5.H5Dclose(dataset_id); dataset_id = -1; H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create a group in the file. try { if (file_id >= 0) group_id = H5.H5Gcreate(file_id, GROUPNAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); if (group_id >= 0) H5.H5Gclose(group_id); group_id = -1; } catch (Exception e) { e.printStackTrace(); } // Create references to the previously created objects. Passing -1 // as space_id causes this parameter to be ignored. Other values // besides valid dataspaces result in an error. try { if (file_id >= 0) { byte rbuf0[] = H5.H5Rcreate(file_id, GROUPNAME, HDF5Constants.H5R_OBJECT, -1); byte rbuf1[] = H5.H5Rcreate(file_id, DATASETNAME2, HDF5Constants.H5R_OBJECT, -1); for (int indx = 0; indx < 8; indx++) { dset_data[0][indx] = rbuf0[indx]; dset_data[1][indx] = rbuf1[indx]; } } } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace to serve as the parent // for the attribute. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if (dataspace_id >= 0) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { if ((dataset_id >= 0) && (dataspace_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, HDF5Constants.H5T_STD_REF_OBJ, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if (attribute_id >= 0) H5.H5Awrite(attribute_id, HDF5Constants.H5T_STD_REF_OBJ, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; int object_type = -1; int object_id = -1; long[] dims = { DIM0 }; byte[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new byte[(int) dims[0]][8]; // Read data. try { if (attribute_id >= 0) H5.H5Aread(attribute_id, HDF5Constants.H5T_STD_REF_OBJ, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(ATTRIBUTENAME + "[" + indx + "]:"); System.out.print(" ->"); // Open the referenced object, get its name and type. try { if (dataset_id >= 0) { int[] otype = { 1 }; object_id = H5.H5Rdereference(dataset_id, HDF5Constants.H5R_OBJECT, dset_data[indx]); object_type = H5.H5Rget_obj_type(dataset_id, HDF5Constants.H5R_OBJECT, dset_data[indx], otype); } String[] obj_name = new String[1]; long name_size = 1; if (object_type >= 0) { // Get the length of the name and retrieve the name. name_size = 1 + H5.H5Iget_name(object_id, obj_name, name_size); } if ((object_id >= 0) && (object_type >= -1)) { switch (H5G_obj.get(object_type)) { case H5G_GROUP: System.out.print("H5G_GROUP"); try { if (object_id >= 0) H5.H5Gclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; case H5G_DATASET: System.out.print("H5G_DATASET"); try { if (object_id >= 0) H5.H5Dclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; case H5G_TYPE: System.out.print("H5G_TYPE"); try { if (object_id >= 0) H5.H5Tclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; default: System.out.print("UNHANDLED"); } } // Print the name. if (name_size > 1) System.out.println(": " + obj_name[0]); } catch (Exception e) { e.printStackTrace(); } } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_ObjectReferenceAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_ObjectReferenceAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_IntegerAttribute.java0000644002344600011330000001373212326542262022637 0ustar byrnhdf/************************************************************ This example shows how to read and write integer datatypes to an attribute. The program first writes integers to an attribute with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.text.DecimalFormat; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_IntegerAttribute { private static String FILENAME = "H5Ex_T_IntegerAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static final int RANK = 2; private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data = new int[DIM0][DIM1]; // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = indx * jndx - jndx; } // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dataspace_id = H5.H5Screate(HDF5Constants.H5S_SCALAR); if (dataspace_id >= 0) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I32LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); H5.H5Sclose(dataspace_id); dataspace_id = -1; } } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { if ((dataset_id >= 0) && (dataspace_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, HDF5Constants.H5T_STD_I64BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if (attribute_id >= 0) H5.H5Awrite(attribute_id, HDF5Constants.H5T_NATIVE_INT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (attribute_id >= 0) H5.H5Aread(attribute_id, HDF5Constants.H5T_NATIVE_INT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. DecimalFormat df = new DecimalFormat("#,##0"); System.out.println(ATTRIBUTENAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print(" " + df.format(dset_data[indx][jndx])); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_IntegerAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_IntegerAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_ObjectReferenceAttribute.java0000644002344600011330000002065412326542262025417 0ustar byrnhdf/************************************************************ This example shows how to read and write object references to an attribute. The program first creates objects in the file and writes references to those objects to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, dereferences the references, and outputs the names of their targets to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Attribute; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_ObjectReferenceAttribute { private static String FILENAME = "H5ObjectEx_T_ObjectReferenceAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static String DATASETNAME2 = "DS2"; private static String GROUPNAME = "G1"; private static final int DIM0 = 2; private static final int RANK = 1; // Values for the status of space allocation enum H5G_obj { H5G_UNKNOWN(HDF5Constants.H5G_UNKNOWN), /* Unknown object type */ H5G_GROUP(HDF5Constants.H5G_GROUP), /* Object is a group */ H5G_DATASET(HDF5Constants.H5G_DATASET), /* Object is a dataset */ H5G_TYPE(HDF5Constants.H5G_TYPE), /* Object is a named data type */ H5G_LINK(HDF5Constants.H5G_LINK), /* Object is a symbolic link */ H5G_UDLINK(HDF5Constants.H5G_UDLINK), /* Object is a user-defined link */ H5G_RESERVED_5(HDF5Constants.H5G_RESERVED_5), /* Reserved for future use */ H5G_RESERVED_6(HDF5Constants.H5G_RESERVED_6), /* Reserved for future use */ H5G_RESERVED_7(HDF5Constants.H5G_RESERVED_7); /* Reserved for future use */ private static final Map lookup = new HashMap(); static { for (H5G_obj s : EnumSet.allOf(H5G_obj.class)) lookup.put(s.getCode(), s); } private int code; H5G_obj(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5G_obj get(int code) { return lookup.get(code); } } private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; H5ScalarDS dset2 = null; H5Group grp = null; long[] dims = { DIM0 }; long[] dset_data = new long[DIM0]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 8, Datatype.ORDER_BE, -1); final H5Datatype typeRef = new H5Datatype(Datatype.CLASS_REFERENCE, -1, -1, -1); // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dset2 = (H5ScalarDS) file.createScalarDS(DATASETNAME2, null, typeInt, dims, null, null, 0, null); } catch (Exception e) { e.printStackTrace(); } // Create a group in the file. try { grp = (H5Group) file.createGroup("/" + GROUPNAME, null); } catch (Exception e) { e.printStackTrace(); } // Create references to the previously created objects. Passing -1 // as space_id causes this parameter to be ignored. Other values // besides valid dataspaces result in an error. try { dset_data[0] = grp.getOID()[0]; dset_data[1] = dset2.getOID()[0]; } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace to serve as the parent // for the attribute. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeInt, dims, null, null, 0, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { Attribute attr = new Attribute(ATTRIBUTENAME, typeRef, dims); attr.setValue(dset_data); file.writeAttribute(dset, attr, false); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; int object_type = -1; int object_id = -1; long[] dims = { DIM0 }; byte[][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new byte[(int) dims[0]][8]; // Read data. try { if (attribute_id >= 0) H5.H5Aread(attribute_id, HDF5Constants.H5T_STD_REF_OBJ, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(ATTRIBUTENAME + "[" + indx + "]:"); System.out.print(" ->"); // Open the referenced object, get its name and type. try { if (dataset_id >= 0) { int[] otype = { 1 }; object_id = H5.H5Rdereference(dataset_id, HDF5Constants.H5R_OBJECT, dset_data[indx]); object_type = H5.H5Rget_obj_type(dataset_id, HDF5Constants.H5R_OBJECT, dset_data[indx], otype); } String[] obj_name = new String[1]; long name_size = 1; if (object_type >= 0) { // Get the length of the name and retrieve the name. name_size = 1 + H5.H5Iget_name(object_id, obj_name, name_size); } if ((object_id >= 0) && (object_type >= -1)) { switch (H5G_obj.get(object_type)) { case H5G_GROUP: System.out.print("H5G_GROUP"); try { if (object_id >= 0) H5.H5Gclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; case H5G_DATASET: System.out.print("H5G_DATASET"); try { if (object_id >= 0) H5.H5Dclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; case H5G_TYPE: System.out.print("H5G_TYPE"); try { if (object_id >= 0) H5.H5Tclose(object_id); } catch (Exception e) { e.printStackTrace(); } break; default: System.out.print("UNHANDLED"); } } // Print the name. if (name_size > 1) System.out.println(": " + obj_name[0]); } catch (Exception e) { e.printStackTrace(); } } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_ObjectReferenceAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_ObjectReferenceAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_Float.java0000644002344600011330000001256612326542262020427 0ustar byrnhdf/************************************************************ This example shows how to read and write integer datatypes to a dataset. The program first writes integers to a dataset with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.text.DecimalFormat; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_Float { private static String FILENAME = "H5Ex_T_Float.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static final int RANK = 2; private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; double[][] dset_data = new double[DIM0][DIM1]; // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = indx / (jndx + 0.5) + jndx; } // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset and write the floating point data to it. In // this example we will save the data as 64 bit little endian IEEE // floating point numbers, regardless of the native type. The HDF5 // library automatically converts between different floating point // types. try { if ((file_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_IEEE_F64LE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; double[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new double[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. DecimalFormat df = new DecimalFormat("#,##0.0000"); System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print(" " + df.format(dset_data[indx][jndx])); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_Float.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_Float.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_CompoundAttribute.java0000644002344600011330000003562612326542262024163 0ustar byrnhdf/************************************************************ This example shows how to read and write compound datatypes to an attribute. The program first writes compound structures to an attribute with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectInputStream; import java.io.ObjectOutput; import java.io.ObjectOutputStream; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_CompoundAttribute { private static String FILENAME = "H5ObjectEx_T_CompoundAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int RANK = 1; // CompoundDatatype class is used to capture basic externalization information. // Strings need to have a Maximum Size specified. private static class CompoundDatatype { protected static final int OBJHEADERSIZE = 2; protected static final int[] MAGICNUMBERVALUE = { 0xac, 0xed, 0x00, 0x05 }; protected static final int MAGICNUMBER = 4; protected static final int INTEGERSIZE = 4; protected static final int DOUBLESIZE = 8; protected final static int MAXSTRINGSIZE = 80; public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { } public void writeExternal(ObjectOutput out) throws IOException { } } // Compound type class includes supporting Sensor_Datatype class. // The Sensor_Datatype class could be external as well. private static class Sensor implements java.io.Externalizable { static Sensor_Datatype datatypes; int serial_no; String location; double temperature; double pressure; Sensor() { datatypes = new Sensor_Datatype(); } // Each data member field must be shown how to be written and read. // Strings need to be handled by bytes. public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { serial_no = in.readInt(); byte[] tempbuf = new byte[CompoundDatatype.MAXSTRINGSIZE]; for (int indx = 0; indx < CompoundDatatype.MAXSTRINGSIZE; indx++) { tempbuf[indx] = in.readByte(); } location = new String(tempbuf).trim(); temperature = in.readDouble(); pressure = in.readDouble(); } public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(serial_no); for (int indx = 0; indx < CompoundDatatype.MAXSTRINGSIZE; indx++) { if (indx < location.length()) out.writeByte(location.charAt(indx)); else out.writeByte(0); } out.writeDouble(temperature); out.writeDouble(pressure); } } // Using Java Externalization will add a two-byte object header in // the stream, which needs to be called out in the datatypes. private static class Sensor_Datatype extends CompoundDatatype { static int numberMembers = 5; static int[] memberDims = { 1, 1, 1, 1, 1 }; String[] memberNames = { "ObjectHeader", "Serial number", "Location", "Temperature (F)", "Pressure (inHg)" }; int[] memberMemTypes = { HDF5Constants.H5T_NATIVE_SHORT, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_NATIVE_DOUBLE, HDF5Constants.H5T_NATIVE_DOUBLE }; int[] memberFileTypes = { HDF5Constants.H5T_STD_I16BE, HDF5Constants.H5T_STD_I32BE, HDF5Constants.H5T_C_S1, HDF5Constants.H5T_IEEE_F64BE, HDF5Constants.H5T_IEEE_F64BE }; static int[] memberStorage = { OBJHEADERSIZE, INTEGERSIZE, MAXSTRINGSIZE, DOUBLESIZE, DOUBLESIZE }; // Data size is the storage size for the members not the object. // Java Externalization also adds a 4-byte "Magic Number" to the beginning // of the data stream static int getTotalDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return DIM0 * data_size + MAGICNUMBER; } static int getDataSize() { int data_size = 0; for (int indx = 0; indx < numberMembers; indx++) data_size += memberStorage[indx] * memberDims[indx]; return data_size; } static int getOffset(int memberItem) { int data_offset = 0; for (int indx = 0; indx < memberItem; indx++) data_offset += memberStorage[indx]; return data_offset; } } private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int file_id = -1; int strtype_id = -1; int memtype_id = -1; int filetype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; Sensor[] object_data = new Sensor[DIM0]; byte[] dset_data = null; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 4, Datatype.ORDER_LE, -1); // Initialize data. object_data[0] = new Sensor(); object_data[0].serial_no = 1153; object_data[0].location = new String("Exterior (static)"); object_data[0].temperature = 53.23; object_data[0].pressure = 24.57; object_data[1] = new Sensor(); object_data[1].serial_no = 1184; object_data[1].location = new String("Intake"); object_data[1].temperature = 55.12; object_data[1].pressure = 22.95; object_data[2] = new Sensor(); object_data[2].serial_no = 1027; object_data[2].location = new String("Intake manifold"); object_data[2].temperature = 103.55; object_data[2].pressure = 31.23; object_data[3] = new Sensor(); object_data[3].serial_no = 1313; object_data[3].location = new String("Exhaust manifold"); object_data[3].temperature = 1252.89; object_data[3].pressure = 84.11; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for memory. try { memtype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (memtype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberMemTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(memtype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for the file. Because the standard // types we are using for the file may have different sizes than // the corresponding native types, we must manually calculate the // offset of each member. try { filetype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (filetype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberFileTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(filetype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeInt, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the attribute. try { if ((dataset_id >= 0) && (dataspace_id >= 0) && (filetype_id >= 0)) attribute_id = H5.H5Acreate(dataset_id, ATTRIBUTENAME, filetype_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the compound data. try { ByteArrayOutputStream baos = new ByteArrayOutputStream(Sensor_Datatype.getTotalDataSize()); ObjectOutputStream oout = new ObjectOutputStream(baos); for (int indx = 0; indx < DIM0; indx++) { object_data[indx].writeExternal(oout); oout.flush(); } oout.close(); baos.close(); dset_data = baos.toByteArray(); byte[] write_data = new byte[dset_data.length - CompoundDatatype.MAGICNUMBER]; for(int indx = 0; indx < dset_data.length - CompoundDatatype.MAGICNUMBER; indx++) write_data[indx] = dset_data[indx + CompoundDatatype.MAGICNUMBER]; if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Awrite(attribute_id, memtype_id, write_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int strtype_id = -1; int memtype_id = -1; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0 }; Sensor[] object_data2; byte[] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. This is a // three dimensional dataset when the array datatype is included so // the dynamic allocation must be done in steps. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create string datatype. try { strtype_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); if (strtype_id >= 0) H5.H5Tset_size(strtype_id, CompoundDatatype.MAXSTRINGSIZE); } catch (Exception e) { e.printStackTrace(); } // Create the compound datatype for memory. try { memtype_id = H5.H5Tcreate(HDF5Constants.H5T_COMPOUND, Sensor_Datatype.getDataSize()); if (memtype_id >= 0) { for (int indx = 0; indx < Sensor_Datatype.numberMembers; indx++) { int type_id = Sensor.datatypes.memberMemTypes[indx]; if (type_id == HDF5Constants.H5T_C_S1) type_id = strtype_id; H5.H5Tinsert(memtype_id, Sensor.datatypes.memberNames[indx], Sensor_Datatype.getOffset(indx), type_id); } } } catch (Exception e) { e.printStackTrace(); } // allocate memory for read buffer. byte[] read_data = new byte[(int) dims[0] * Sensor_Datatype.getDataSize()]; object_data2 = new Sensor[(int) dims[0]]; // Read data. try { if ((attribute_id >= 0) && (memtype_id >= 0)) H5.H5Aread(attribute_id, memtype_id, read_data); dset_data = new byte[read_data.length + CompoundDatatype.MAGICNUMBER]; for (int indx = 0; indx < CompoundDatatype.MAGICNUMBER; indx++) dset_data[indx] = (byte) CompoundDatatype.MAGICNUMBERVALUE[indx]; for (int indx = 0; indx < read_data.length; indx++) dset_data[indx + CompoundDatatype.MAGICNUMBER] = read_data[indx]; ObjectInputStream objectIn = new ObjectInputStream(new ByteArrayInputStream(dset_data)); for (int indx = 0; indx < (int) dims[0]; indx++) { object_data2[indx] = new Sensor(); object_data2[indx].readExternal(objectIn); } } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(ATTRIBUTENAME + " [" + indx + "]:"); System.out.println("Serial number : " + object_data2[indx].serial_no); System.out.println("Location : " + object_data2[indx].location); System.out.println("Temperature (F) : " + object_data2[indx].temperature); System.out.println("Pressure (inHg) : " + object_data2[indx].pressure); System.out.println(); } System.out.println(); try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } try { if (strtype_id >= 0) H5.H5Tclose(strtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_CompoundAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_CompoundAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_VLString.java0000644002344600011330000000722412326542262021065 0ustar byrnhdfpackage examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_VLString { private static String FILENAME = "H5Ex_T_VLString.h5"; private static String DATASETNAME = "DS1"; private static void createDataset() { int file_id = -1; int type_id = -1; int dataspace_id = -1; int dataset_id = -1; int rank = 1; String[] str_data = { "Parting", "is such", "sweet", "sorrow." }; long[] dims = { str_data.length }; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } try { type_id = H5.H5Tcopy(HDF5Constants.H5T_C_S1); H5.H5Tset_size(type_id, HDF5Constants.H5T_VARIABLE); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(rank, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset and write the string data to it. try { if ((file_id >= 0) && (type_id >= 0) && (dataspace_id >= 0)) { dataset_id = H5.H5Dcreate(file_id, DATASETNAME, type_id, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >=0) H5.H5DwriteString(dataset_id, type_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, str_data); } catch (Exception e) { e.printStackTrace(); } try { H5.H5Sclose(dataspace_id); H5.H5Tclose(type_id); H5.H5Dclose(dataset_id); H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void readDataset() { int file_id = -1; int type_id = -1; int dataset_id = -1; String[] str_data = { "", "", "", "" }; try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT);; } catch (Exception e) { e.printStackTrace(); } try { dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); type_id = H5.H5Dget_type(dataset_id); H5.H5DreadVL(dataset_id, type_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, str_data); } catch (Exception e) { e.printStackTrace(); } for (int indx = 0; indx < str_data.length; indx++) System.out.println(DATASETNAME + " [" + indx + "]: " + str_data[indx]); try { H5.H5Tclose(type_id); H5.H5Dclose(dataset_id); H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_VLString.createDataset(); H5Ex_T_VLString.readDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_Integer.java0000644002344600011330000001212112326542262022071 0ustar byrnhdf/************************************************************ This example shows how to read and write integer datatypes to a dataset. The program first writes integers to a dataset with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.text.DecimalFormat; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_Integer { private static String FILENAME = "H5ObjectEx_T_Integer.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data = new int[DIM0][DIM1]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 8, Datatype.ORDER_BE, -1); // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = indx * jndx - jndx; } // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create the dataset and write the integer data to it. In this // example we will save the data as 64 bit big endian integers, // regardless of the native integer type. The HDF5 library // automatically converts between different integer types. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeInt, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. DecimalFormat df = new DecimalFormat("#,##0"); System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print(" " + df.format(dset_data[indx][jndx])); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_Integer.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_Integer.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_Array.java0000644002344600011330000001452712326542262021566 0ustar byrnhdf/************************************************************ This example shows how to read and write array datatypes to a dataset. The program first writes integers arrays of dimension ADIM0xADIM1 to a dataset with a dataspace of DIM0, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_Array { private static String FILENAME = "H5ObjectEx_T_Array.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int ADIM0 = 3; private static final int ADIM1 = 5; private static final int NDIMS = 2; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int filetype_id = -1; int memtype_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; long[] adims = { ADIM0, ADIM1 }; int[][][] dset_data = new int[DIM0][ADIM0][ADIM1]; final H5Datatype typeIntArray = new H5Datatype(Datatype.CLASS_ARRAY, 8, Datatype.ORDER_LE, -1); // Initialize data. indx is the element in the dataspace, jndx and kndx the // elements within the array datatype. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < ADIM0; jndx++) for (int kndx = 0; kndx < ADIM1; kndx++) dset_data[indx][jndx][kndx] = indx * jndx - jndx * kndx + indx * kndx; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create array datatypes for file. try { filetype_id = H5.H5Tarray_create(HDF5Constants.H5T_STD_I64LE, NDIMS, adims); typeIntArray.fromNative(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Create array datatypes for memory. try { memtype_id = H5.H5Tarray_create(HDF5Constants.H5T_NATIVE_INT, NDIMS, adims); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeIntArray, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dwrite(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int filetype_id = -1; int memtype_id = -1; int dataset_id = -1; long[] dims = { DIM0 }; long[] adims = { ADIM0, ADIM1 }; int[][][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get the datatype. try { if (dataset_id >= 0) filetype_id = H5.H5Dget_type(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Get the datatype's dimensions. try { if (filetype_id >= 0) H5.H5Tget_array_dims(filetype_id, adims); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (adims[0])][(int) (adims[1])]; // Create array datatypes for memory. try { memtype_id = H5.H5Tarray_create(HDF5Constants.H5T_NATIVE_INT, 2, adims); } catch (Exception e) { e.printStackTrace(); } // Read data. try { if ((dataset_id >= 0) && (memtype_id >= 0)) H5.H5Dread(dataset_id, memtype_id, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. for (int indx = 0; indx < dims[0]; indx++) { System.out.println(DATASETNAME + " [" + indx + "]:"); for (int jndx = 0; jndx < adims[0]; jndx++) { System.out.print(" ["); for (int kndx = 0; kndx < adims[1]; kndx++) System.out.print(dset_data[indx][jndx][kndx] + " "); System.out.println("]"); } System.out.println(); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the file type. try { if (filetype_id >= 0) H5.H5Tclose(filetype_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the mem type. try { if (memtype_id >= 0) H5.H5Tclose(memtype_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_Array.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_Array.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5Ex_T_Integer.java0000644002344600011330000001247512326542262020756 0ustar byrnhdf/************************************************************ This example shows how to read and write integer datatypes to a dataset. The program first writes integers to a dataset with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.text.DecimalFormat; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_T_Integer { private static String FILENAME = "H5Ex_T_Integer.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static final int RANK = 2; private static void CreateDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data = new int[DIM0][DIM1]; // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = indx * jndx - jndx; } // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset and write the integer data to it. In this // example we will save the data as 64 bit big endian integers, // regardless of the native integer type. The HDF5 library // automatically converts between different integer types. try { if ((file_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_I64BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Write the data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data; // Open an existing file. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { if (file_id >= 0) dataset_id = H5.H5Dopen(file_id, DATASETNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_INT, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. DecimalFormat df = new DecimalFormat("#,##0"); System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print(" " + df.format(dset_data[indx][jndx])); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) H5.H5Dclose(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_T_Integer.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5Ex_T_Integer.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_Bit.java0000644002344600011330000001425112326542262021220 0ustar byrnhdf/************************************************************ This example shows how to read and write bitfield datatypes to a dataset. The program first writes bit fields to a dataset with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_Bit { private static String FILENAME = "H5ObjectEx_T_Bit.h5"; private static String DATASETNAME = "DS1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static final int RANK = 2; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int file_id = -1; int dataspace_id = -1; int dataset_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data = new int[DIM0][DIM1]; final H5Datatype typeBitField = new H5Datatype(Datatype.CLASS_BITFIELD, 8, Datatype.ORDER_BE, -1); // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = 0; dset_data[indx][jndx] |= (indx * jndx - jndx) & 0x03; /* Field "A" */ dset_data[indx][jndx] |= (indx & 0x03) << 2; /* Field "B" */ dset_data[indx][jndx] |= (jndx & 0x03) << 4; /* Field "C" */ dset_data[indx][jndx] |= ((indx + jndx) & 0x03) << 6; /* Field "D" */ } // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataspace. Setting maximum size to NULL sets the maximum // size to be the current size. try { dataspace_id = H5.H5Screate_simple(RANK, dims, null); } catch (Exception e) { e.printStackTrace(); } // Create the dataset. try { if ((file_id >= 0) && (dataspace_id >= 0)) dataset_id = H5.H5Dcreate(file_id, DATASETNAME, HDF5Constants.H5T_STD_B8BE, dataspace_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); dset = new H5ScalarDS(file, DATASETNAME, "/"); Group pgroup = (Group) file.get("/"); pgroup.addToMemberList(dset); } catch (Exception e) { e.printStackTrace(); } // Write the bitfield data to the dataset. try { if (dataset_id >= 0) H5.H5Dwrite(dataset_id, HDF5Constants.H5T_NATIVE_B8, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int dataset_id = -1; int dataspace_id = -1; long[] dims = { DIM0, DIM1 }; int[][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (dataset_id >= 0) dataspace_id = H5.H5Dget_space(dataset_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new int[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (dataset_id >= 0) H5.H5Dread(dataset_id, HDF5Constants.H5T_NATIVE_B8, HDF5Constants.H5S_ALL, HDF5Constants.H5S_ALL, HDF5Constants.H5P_DEFAULT, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. System.out.println(DATASETNAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print("{" + (dset_data[indx][jndx] & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 2) & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 4) & 0x03) + ", "); System.out.print(((dset_data[indx][jndx] >> 6) & 0x03) + "}"); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_Bit.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_Bit.ReadDataset(); } } hdf-java-2.11.0/examples/datatypes/H5ObjectEx_T_FloatAttribute.java0000644002344600011330000001371512326542262023437 0ustar byrnhdf/************************************************************ This example shows how to read and write floating point datatypes to an attribute. The program first writes floating point numbers to an attribute with a dataspace of DIM0xDIM1, then closes the file. Next, it reopens the file, reads back the data, and outputs it to the screen. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.datatypes; import java.text.DecimalFormat; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.object.Attribute; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5Datatype; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5ScalarDS; public class H5ObjectEx_T_FloatAttribute { private static String FILENAME = "H5ObjectEx_T_FloatAttribute.h5"; private static String DATASETNAME = "DS1"; private static String ATTRIBUTENAME = "A1"; private static final int DIM0 = 4; private static final int DIM1 = 7; private static final int RANK = 2; private static void CreateDataset() { H5File file = null; H5ScalarDS dset = null; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; double[][] dset_data = new double[DIM0][DIM1]; final H5Datatype typeInt = new H5Datatype(Datatype.CLASS_INTEGER, 4, Datatype.ORDER_LE, -1); final H5Datatype typeFloat = new H5Datatype(Datatype.CLASS_FLOAT, 8, Datatype.ORDER_LE, -1); // Initialize data. for (int indx = 0; indx < DIM0; indx++) for (int jndx = 0; jndx < DIM1; jndx++) { dset_data[indx][jndx] = indx / (jndx + 0.5) + jndx; } // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create dataset with a scalar dataspace. try { dset = (H5ScalarDS) file.createScalarDS(DATASETNAME, null, typeInt, dims, null, null, 0, null); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } // Create the attribute and write the array data to it. try { Attribute dataFloat = new Attribute(ATTRIBUTENAME, typeFloat, dims); dset.writeMetadata(dataFloat); } catch (Exception e) { e.printStackTrace(); } // Write the dataset. try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); if (attribute_id >= 0) H5.H5Awrite(attribute_id, HDF5Constants.H5T_NATIVE_DOUBLE, dset_data); } catch (Exception e) { e.printStackTrace(); } // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } private static void ReadDataset() { H5File file = null; H5ScalarDS dset = null; int dataspace_id = -1; int dataset_id = -1; int attribute_id = -1; long[] dims = { DIM0, DIM1 }; double[][] dset_data; // Open an existing file. try { file = new H5File(FILENAME, FileFormat.READ); file.open(); } catch (Exception e) { e.printStackTrace(); } // Open an existing dataset. try { dset = (H5ScalarDS) file.get(DATASETNAME); dataset_id = dset.open(); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) attribute_id = H5.H5Aopen_by_name(dataset_id, ".", ATTRIBUTENAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Get dataspace and allocate memory for read buffer. try { if (attribute_id >= 0) dataspace_id = H5.H5Aget_space(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataspace_id >= 0) H5.H5Sget_simple_extent_dims(dataspace_id, dims, null); } catch (Exception e) { e.printStackTrace(); } // Allocate array of pointers to two-dimensional arrays (the // elements of the dataset. dset_data = new double[(int) dims[0]][(int) (dims[1])]; // Read data. try { if (attribute_id >= 0) H5.H5Aread(attribute_id, HDF5Constants.H5T_NATIVE_DOUBLE, dset_data); } catch (Exception e) { e.printStackTrace(); } // Output the data to the screen. DecimalFormat df = new DecimalFormat("#,##0.0000"); System.out.println(ATTRIBUTENAME + ":"); for (int indx = 0; indx < dims[0]; indx++) { System.out.print(" ["); for (int jndx = 0; jndx < dims[1]; jndx++) { System.out.print(" " + df.format(dset_data[indx][jndx])); } System.out.println("]"); } System.out.println(); // End access to the dataset and release resources used by it. try { if (attribute_id >= 0) H5.H5Aclose(attribute_id); } catch (Exception e) { e.printStackTrace(); } try { if (dataset_id >= 0) dset.close(dataset_id); } catch (Exception e) { e.printStackTrace(); } // Terminate access to the data space. try { if (dataspace_id >= 0) H5.H5Sclose(dataspace_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_T_FloatAttribute.CreateDataset(); // Now we begin the read section of this example. Here we assume // the dataset and array have the same name and rank, but can have // any size. Therefore we must allocate a new array to read in // data using malloc(). H5ObjectEx_T_FloatAttribute.ReadDataset(); } } hdf-java-2.11.0/examples/Makefile.in0000644002344600011330000002446312326542262015451 0ustar byrnhdf#/**************************************************************************** #* Copyright by The HDF Group. * #* Copyright by the Board of Trustees of the University of Illinois. * #* All rights reserved. * #* * #* This file is part of HDF Java Products. The full HDF Java copyright * #* notice, including terms governing use, modification, and redistribution, * #* is contained in the file, COPYING. COPYING can be found at the root of * #* the source code distribution tree. You can also access it online at * #* http://www.hdfgroup.org/products/licenses.html. If you do not have * #* access to the file, you may request a copy from help@hdfgroup.org. * #****************************************************************************/ TOP = .. DIR = examples SUBDIRS = intro groups datasets datatypes JAVAC = @JAVAC@ JAVADOC = @JAVADOC@ JAR = @JAR@ FIND = @FIND@ RM = @RM@ SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ CLASSPATH=@CLASSPATH@ JH45INSTALLDIR=@JH45INST@ H45INC=@H45INC@ H4INC=@HDF4INC@ H5INC=@HDF5INC@ include $(TOP)/config/Rules.mk check: (cd groups; $(MAKE) check;) chmod u+x runExample.sh $(RM) $(TOP)/lib/$(DIR)/*.h5; $(RM) $(TOP)/lib/$(DIR)/h5ex_d_extern.data; $(RM) $(TOP)/lib/$(DIR)/*.out; $(MAKE) run-intro; $(MAKE) run-groups; $(MAKE) run-datasets; $(MAKE) run-datatypes; $(RM) $(TOP)/lib/$(DIR)/*.h5; $(RM) $(TOP)/lib/$(DIR)/h5ex_d_extern.data; $(RM) $(TOP)/lib/$(DIR)/*.out; run-intro: @if ./runExample.sh examples.intro.H5_CreateDataset; then \ echo " PASSED intro.H5_CreateDataset"; else \ echo "**FAILED** intro.H5_CreateDataset"; fi; @if ./runExample.sh examples.intro.H5_CreateAttribute; then \ echo " PASSED intro.H5_CreateAttribute"; else \ echo "**FAILED** intro.H5_CreateAttribute"; fi; @if ./runExample.sh examples.intro.H5_CreateFile; then \ echo " PASSED intro.H5_CreateFile"; else \ echo "**FAILED** intro.H5_CreateFile"; fi; @if ./runExample.sh examples.intro.H5_CreateGroup; then \ echo " PASSED intro.H5_CreateGroup"; else \ echo "**FAILED** intro.H5_CreateGroup"; fi; @if ./runExample.sh examples.intro.H5_CreateGroupAbsoluteRelative; then \ echo " PASSED intro.H5_CreateGroupAbsoluteRelative"; else \ echo "**FAILED** intro.H5_CreateGroupAbsoluteRelative"; fi; @if ./runExample.sh examples.intro.H5_CreateGroupDataset; then \ echo " PASSED intro.H5_CreateGroupDataset"; else \ echo "**FAILED** intro.H5_CreateGroupDataset"; fi; @if ./runExample.sh examples.intro.H5_ReadWrite; then \ echo " PASSED intro.H5_ReadWrite"; else \ echo "**FAILED** intro.H5_ReadWrite"; fi; run-groups: @if ./runExample.sh examples.groups.H5Ex_G_Create; then \ echo " PASSED groups.H5Ex_G_Create"; else \ echo "**FAILED** groups.H5Ex_G_Create"; fi; cp groups/h5ex_g_iterate.h5 h5ex_g_iterate.h5; @if ./runExample.sh examples.groups.H5Ex_G_Iterate; then \ echo " PASSED groups.H5Ex_G_Iterate"; else \ echo "**FAILED** groups.H5Ex_G_Iterate"; fi; @if ./runExample.sh examples.groups.H5Ex_G_Compact; then \ echo " PASSED groups.H5Ex_G_Compact"; else \ echo "**FAILED** groups.H5Ex_G_Compact"; fi; @if ./runExample.sh examples.groups.H5Ex_G_Corder; then \ echo " PASSED groups.H5Ex_G_Corder"; else \ echo "**FAILED** groups.H5Ex_G_Corder"; fi; @if ./runExample.sh examples.groups.H5Ex_G_Intermediate; then \ echo " PASSED groups.H5Ex_G_Intermediate"; else \ echo "**FAILED** groups.H5Ex_G_Intermediate"; fi; @if ./runExample.sh examples.groups.H5Ex_G_Phase; then \ echo " PASSED groups.H5Ex_G_Phase"; else \ echo "**FAILED** groups.H5Ex_G_Phase"; fi; @if ./runExample.sh examples.groups.H5Ex_G_Visit; then \ echo " PASSED groups.H5Ex_G_Visit"; else \ echo "**FAILED** groups.H5Ex_G_Visit"; fi; run-datasets: @if ./runExample.sh examples.datasets.H5Ex_D_Alloc; then \ echo " PASSED datasets.H5Ex_D_Alloc"; else \ echo "**FAILED** datasets.H5Ex_D_Alloc"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Checksum; then \ echo " PASSED datasets.H5Ex_D_Checksum"; else \ echo "**FAILED** datasets.H5Ex_D_Checksum"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Chunk; then \ echo " PASSED datasets.H5Ex_D_Chunk"; else \ echo "**FAILED** datasets.H5Ex_D_Chunk"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Compact; then \ echo " PASSED datasets.H5Ex_D_Compact"; else \ echo "**FAILED** datasets.H5Ex_D_Compact"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_External; then \ echo " PASSED datasets.H5Ex_D_External"; else \ echo "**FAILED** datasets.H5Ex_D_External"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_FillValue; then \ echo " PASSED datasets.H5Ex_D_FillValue"; else \ echo "**FAILED** datasets.H5Ex_D_FillValue"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Gzip; then \ echo " PASSED datasets.H5Ex_D_Gzip"; else \ echo "**FAILED** datasets.H5Ex_D_Gzip"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Hyperslab; then \ echo " PASSED datasets.H5Ex_D_Hyperslab"; else \ echo "**FAILED** datasets.H5Ex_D_Hyperslab"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_ReadWrite; then \ echo " PASSED datasets.H5Ex_D_ReadWrite"; else \ echo "**FAILED** datasets.H5Ex_D_ReadWrite"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Shuffle; then \ echo " PASSED datasets.H5Ex_D_Shuffle"; else \ echo "**FAILED** datasets.H5Ex_D_Shuffle"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Szip; then \ echo " PASSED datasets.H5Ex_D_Szip"; else \ echo "**FAILED** datasets.H5Ex_D_Szip"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_UnlimitedAdd; then \ echo " PASSED datasets.H5Ex_D_UnlimitedAdd"; else \ echo "**FAILED** datasets.H5Ex_D_UnlimitedAdd"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_UnlimitedGzip; then \ echo " PASSED datasets.H5Ex_D_UnlimitedGzip"; else \ echo "**FAILED** datasets.H5Ex_D_UnlimitedGzip"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_UnlimitedMod; then \ echo " PASSED datasets.H5Ex_D_UnlimitedMod"; else \ echo "**FAILED** datasets.H5Ex_D_UnlimitedMod"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Nbit; then \ echo " PASSED datasets.H5Ex_D_Nbit"; else \ echo "**FAILED** datasets.H5Ex_D_Nbit"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Transform; then \ echo " PASSED datasets.H5Ex_D_Transform"; else \ echo "**FAILED** datasets.H5Ex_D_Transform"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Sofloat; then \ echo " PASSED datasets.H5Ex_D_Sofloat"; else \ echo "**FAILED** datasets.H5Ex_D_Sofloat"; fi; @if ./runExample.sh examples.datasets.H5Ex_D_Soint; then \ echo " PASSED datasets.H5Ex_D_Soint"; else \ echo "**FAILED** datasets.H5Ex_D_Soint"; fi; run-datatypes: @if ./runExample.sh examples.datatypes.H5Ex_T_Array; then \ echo " PASSED datatypes.H5Ex_T_Array"; else \ echo "**FAILED** datatypes.H5Ex_T_Array"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_ArrayAttribute; then \ echo " PASSED datatypes.H5Ex_T_ArrayAttribute"; else \ echo "**FAILED** datatypes.H5Ex_T_ArrayAttribute"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_Bit; then \ echo " PASSED datatypes.H5Ex_T_Bit"; else \ echo "**FAILED** datatypes.H5Ex_T_Bit"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_BitAttribute; then \ echo " PASSED datatypes.H5Ex_T_BitAttribute"; else \ echo "**FAILED** datatypes.H5Ex_T_BitAttribute"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_Commit; then \ echo " PASSED datatypes.H5Ex_T_Commit"; else \ echo "**FAILED** datatypes.H5Ex_T_Commit"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_Compound; then \ echo " PASSED datatypes.H5Ex_T_Compound"; else \ echo "**FAILED** datatypes.H5Ex_T_Compound"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_CompoundAttribute; then \ echo " PASSED datatypes.H5Ex_T_CompoundAttribute"; else \ echo "**FAILED** datatypes.H5Ex_T_CompoundAttribute"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_Float; then \ echo " PASSED datatypes.H5Ex_T_Float"; else \ echo "**FAILED** datatypes.H5Ex_T_Float"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_FloatAttribute; then \ echo " PASSED datatypes.H5Ex_T_FloatAttribute"; else \ echo "**FAILED** datatypes.H5Ex_T_FloatAttribute"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_Integer; then \ echo " PASSED datatypes.H5Ex_T_Integer"; else \ echo "**FAILED** datatypes.H5Ex_T_Integer"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_IntegerAttribute; then \ echo " PASSED datatypes.H5Ex_T_IntegerAttribute"; else \ echo "**FAILED** datatypes.H5Ex_T_IntegerAttribute"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_ObjectReference; then \ echo " PASSED datatypes.H5Ex_T_ObjectReference"; else \ echo "**FAILED** datatypes.H5Ex_T_ObjectReference"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_ObjectReferenceAttribute; then \ echo " PASSED datatypes.H5Ex_T_ObjectReferenceAttribute"; else \ echo "**FAILED** datatypes.H5Ex_T_ObjectReferenceAttribute"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_Opaque; then \ echo " PASSED datatypes.H5Ex_T_Opaque"; else \ echo "**FAILED** datatypes.H5Ex_T_Opaque"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_OpaqueAttribute; then \ echo " PASSED datatypes.H5Ex_T_OpaqueAttribute"; else \ echo "**FAILED** datatypes.H5Ex_T_OpaqueAttribute"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_String; then \ echo " PASSED datatypes.H5Ex_T_String"; else \ echo "**FAILED** datatypes.H5Ex_T_String"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_StringAttribute; then \ echo " PASSED datatypes.H5Ex_T_StringAttribute"; else \ echo "**FAILED** datatypes.H5Ex_T_StringAttribute"; fi; @if ./runExample.sh examples.datatypes.H5Ex_T_VLString; then \ echo " PASSED datatypes.H5Ex_T_VLString"; else \ echo "**FAILED** datatypes.H5Ex_T_VLString"; fi; hdf-java-2.11.0/examples/CMakeLists.txt0000644002344600011330000000053512330267210016126 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_EXAMPLES) add_subdirectory (${HDFJAVA_EXAMPLES_SOURCE_DIR}/datasets datasets) add_subdirectory (${HDFJAVA_EXAMPLES_SOURCE_DIR}/datatypes datatypes) add_subdirectory (${HDFJAVA_EXAMPLES_SOURCE_DIR}/groups groups) add_subdirectory (${HDFJAVA_EXAMPLES_SOURCE_DIR}/intro intro) hdf-java-2.11.0/examples/testfiles/0000755002344600011330000000000012441355011015365 5ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.intro.H5_CreateAttribute.txt0000644002344600011330000000000012326542262024516 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_Float.txt0000644002344600011330000000033212326542262025256 0ustar byrnhdfDS1: [ 0.0000 1.0000 2.0000 3.0000 4.0000 5.0000 6.0000] [ 2.0000 1.6667 2.4000 3.2857 4.2222 5.1818 6.1538] [ 4.0000 2.3333 2.8000 3.5714 4.4444 5.3636 6.3077] [ 6.0000 3.0000 3.2000 3.8571 4.6667 5.5455 6.4615] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Checksum.txt0000644002344600011330000000010512326542262025543 0ustar byrnhdfFilter type is: H5Z_FILTER_FLETCHER32 Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_BitAttribute.txt0000644002344600011330000000054512326542262026621 0ustar byrnhdfA1: [{0, 0, 0, 0}{3, 0, 1, 1}{2, 0, 2, 2}{1, 0, 3, 3}{0, 0, 0, 0}{3, 0, 1, 1}{2, 0, 2, 2}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] hdf-java-2.11.0/examples/testfiles/examples.groups.H5Ex_G_Visit.txt0000644002344600011330000000075412326542262023474 0ustar byrnhdfObjects in the file: / (Group) /group1 (Group) /group1/dset1 (Dataset) /group1/group3 (Group) /group1/group3/group4 (Group) /group1/group3/group4/group1 (Group) /group1/group3/group4/group2 (Group) Links in the file: /group1 (Group) /group1/dset1 (Dataset) /group1/group3 (Group) /group1/group3/dset2 (Dataset) /group1/group3/group4 (Group) /group1/group3/group4/group1 (Group) /group1/group3/group4/group1/group5 (Group) /group1/group3/group4/group2 (Group) /group2 (Group) hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_UnlimitedGzip.txt0000644002344600011330000000051312326542262026570 0ustar byrnhdfDataset before extension: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Filter type is: H5Z_FILTER_DEFLATE Dataset after extension: [ 0 -1 -2 -3 -4 -5 -6 7 8 9 ] [ 0 0 0 0 0 0 0 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 2 4 6 8 10 12 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_ObjectReference.txt0000644002344600011330000000006212326542262027236 0ustar byrnhdfDS1[0]: ->H5G_GROUP: DS1[1]: ->H5G_DATASET: hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_Array.txt0000644002344600011330000000033612326542262025273 0ustar byrnhdfDS1 [0]: [0 0 0 0 0 ] [0 -1 -2 -3 -4 ] [0 -2 -4 -6 -8 ] DS1 [1]: [0 1 2 3 4 ] [1 1 1 1 1 ] [2 1 0 -1 -2 ] DS1 [2]: [0 2 4 6 8 ] [2 3 4 5 6 ] [4 4 4 4 4 ] DS1 [3]: [0 3 6 9 12 ] [3 5 7 9 11 ] [6 7 8 9 10 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_UnlimitedAdd.txt0000644002344600011330000000044712326542262025226 0ustar byrnhdfDataset before extension: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Dataset after extension: [ 0 -1 -2 -3 -4 -5 -6 7 8 9 ] [ 0 0 0 0 0 0 0 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 2 4 6 8 10 12 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Chunk.txt0000644002344600011330000000100012326542262023715 0ustar byrnhdfOriginal Data: [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] Storage layout for DS1 is: H5D_CHUNKED Data as written to disk by hyberslabs: [ 0 1 0 0 1 0 0 1 ] [ 1 1 0 1 1 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] [ 0 1 0 0 1 0 0 1 ] [ 1 1 0 1 1 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] Data as read from disk by hyberslab: [ 0 1 0 0 0 0 0 1 ] [ 0 1 0 1 0 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] [ 0 0 0 0 0 0 0 0 ] [ 0 1 0 1 0 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_UnlimitedGzip.txt0000644002344600011330000000051312326542262025441 0ustar byrnhdfDataset before extension: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Filter type is: H5Z_FILTER_DEFLATE Dataset after extension: [ 0 -1 -2 -3 -4 -5 -6 7 8 9 ] [ 0 0 0 0 0 0 0 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 2 4 6 8 10 12 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Szip.txt0000644002344600011330000000007712326542262024736 0ustar byrnhdfFilter type is: H5Z_FILTER_SZIP Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.groups.H5Ex_G_Intermediate.txt0000644002344600011330000000012312326542262024776 0ustar byrnhdfObjects in the file_id: / (Group) /G1 (Group) /G1/G2 (Group) /G1/G2/G3 (Group) hdf-java-2.11.0/examples/testfiles/examples.groups.H5ObjectEx_G_Iterate.txt0000644002344600011330000000012012326542262025105 0ustar byrnhdfObjects in root group: Dataset: DS1 Datatype: DT1 Group: G1 Dataset: L1 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Transform.txt0000644002344600011330000000067412326542262025767 0ustar byrnhdfOriginal Data: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Data as written with transform 'x+1' [ 1 0 -1 -2 -3 -4 -5 ] [ 1 1 1 1 1 1 1 ] [ 1 2 3 4 5 6 7 ] [ 1 3 5 7 9 11 13 ] Data as written with transform 'x+1' and read with transform 'x-1' [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_Bit.txt0000644002344600011330000000054612326542262024736 0ustar byrnhdfDS1: [{0, 0, 0, 0}{3, 0, 1, 1}{2, 0, 2, 2}{1, 0, 3, 3}{0, 0, 0, 0}{3, 0, 1, 1}{2, 0, 2, 2}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] hdf-java-2.11.0/examples/testfiles/examples.intro.H5Object_CreateGroupDataset.txt0000644002344600011330000000000012326542262026304 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.intro.H5_CreateGroup.txt0000644002344600011330000000000012326542262023647 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.groups.H5ObjectEx_G_Intermediate.txt0000644002344600011330000000012312326542262026125 0ustar byrnhdfObjects in the file_id: / (Group) /G1 (Group) /G1/G2 (Group) /G1/G2/G3 (Group) hdf-java-2.11.0/examples/testfiles/examples.groups.H5Ex_G_Phase.txt0000644002344600011330000000127712326542262023437 0ustar byrnhdf1 Group : Storage type is H5G_STORAGE_TYPE_COMPACT 2 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 3 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 4 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 5 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 6 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 7 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 6 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 5 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 4 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 3 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 2 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 1 Group : Storage type is H5G_STORAGE_TYPE_COMPACT 0 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Chunk.txt0000644002344600011330000000100012326542262025044 0ustar byrnhdfOriginal Data: [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] Storage layout for DS1 is: H5D_CHUNKED Data as written to disk by hyberslabs: [ 0 1 0 0 1 0 0 1 ] [ 1 1 0 1 1 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] [ 0 1 0 0 1 0 0 1 ] [ 1 1 0 1 1 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] Data as read from disk by hyberslab: [ 0 1 0 0 0 0 0 1 ] [ 0 1 0 1 0 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] [ 0 0 0 0 0 0 0 0 ] [ 0 1 0 1 0 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Szip.txt0000644002344600011330000000007712326542262023607 0ustar byrnhdfFilter type is: H5Z_FILTER_SZIP Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.intro.H5Object_ReadWrite.txt0000644002344600011330000000000012326542262024444 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.groups.H5ObjectEx_G_Corder.txt0000644002344600011330000000026412326542262024737 0ustar byrnhdfTraversing group using alphabetical indices: Index 0: 5 Index 1: D Index 2: F Index 3: H Traversing group using creation order indices: Index 0: H Index 1: D Index 2: F Index 3: 5 hdf-java-2.11.0/examples/testfiles/examples.intro.H5Object_CreateFile.txt0000644002344600011330000000000012326542262024561 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Soint.txt0000644002344600011330000000010612326542262025076 0ustar byrnhdfFilter type is: H5Z_FILTER_SCALEOFFSET Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Compact.txt0000644002344600011330000000021712326542262024244 0ustar byrnhdfStorage layout for DS1 is: H5D_COMPACT Data for DS1 is: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_External.txt0000644002344600011330000000020612326542262024436 0ustar byrnhdfDS1 is stored in file: H5Ex_D_External.data DS1: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Nbit.txt0000644002344600011330000000007712326542262023556 0ustar byrnhdfFilter type is: H5Z_FILTER_NBIT Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_IntegerAttribute.txt0000644002344600011330000000012512326542262027472 0ustar byrnhdfA1: [ 0 -1 -2 -3 -4 -5 -6] [ 0 0 0 0 0 0 0] [ 0 1 2 3 4 5 6] [ 0 2 4 6 8 10 12] hdf-java-2.11.0/examples/testfiles/examples.intro.H5_CreateDataset.txt0000644002344600011330000000000012326542262024140 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.groups.H5Ex_G_Compact.txt0000644002344600011330000000036312326542262023760 0ustar byrnhdfGroup storage type for H5Ex_G_Compact1.h5 is: H5G_STORAGE_TYPE_SYMBOL_TABLE File size for H5Ex_G_Compact1.h5 is: 1832 bytes Group storage type for H5Ex_G_Compact2.h5 is: H5G_STORAGE_TYPE_COMPACT File size for H5Ex_G_Compact2.h5 is: 342 bytes hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Gzip.txt0000644002344600011330000000010212326542262023560 0ustar byrnhdfFilter type is: H5Z_FILTER_DEFLATE Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Alloc.txt0000644002344600011330000000063412326542262025042 0ustar byrnhdfCreating datasets... DS1 has allocation time H5D_ALLOC_TIME_LATE DS2 has allocation time H5D_ALLOC_TIME_EARLY Space for DS1 has not been allocated. Storage size for DS1 is: 0 bytes. Space for DS2 has been allocated. Storage size for DS2 is: 112 bytes. Writing data... Space for DS1 has been allocated. Storage size for DS1 is: 112 bytes. Space for DS2 has been allocated. Storage size for DS2 is: 112 bytes. hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_ReadWrite.txt0000644002344600011330000000013212326542262024540 0ustar byrnhdfDS1: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Sofloat.txt0000644002344600011330000000035212326542262024265 0ustar byrnhdfMaximum value in write buffer is: 106.66666666666667 Minimum value in write buffer is: 1.7692307692307692 Filter type is: H5Z_FILTER_SCALEOFFSET Maximum value in DS1 is: 106.66169811320755 Minimum value in DS1 is: 1.7692307692307692 hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_String.txt0000644002344600011330000000010312326542262024324 0ustar byrnhdfDS1 [0]: Parting DS1 [1]: is such DS1 [2]: sweet DS1 [3]: sorrow. hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_FloatAttribute.txt0000644002344600011330000000033112326542262026012 0ustar byrnhdfA1: [ 0.0000 1.0000 2.0000 3.0000 4.0000 5.0000 6.0000] [ 2.0000 1.6667 2.4000 3.2857 4.2222 5.1818 6.1538] [ 4.0000 2.3333 2.8000 3.5714 4.4444 5.3636 6.3077] [ 6.0000 3.0000 3.2000 3.8571 4.6667 5.5455 6.4615] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_Array.txt0000644002344600011330000000033612326542262024144 0ustar byrnhdfDS1 [0]: [0 0 0 0 0 ] [0 -1 -2 -3 -4 ] [0 -2 -4 -6 -8 ] DS1 [1]: [0 1 2 3 4 ] [1 1 1 1 1 ] [2 1 0 -1 -2 ] DS1 [2]: [0 2 4 6 8 ] [2 3 4 5 6 ] [4 4 4 4 4 ] DS1 [3]: [0 3 6 9 12 ] [3 5 7 9 11 ] [6 7 8 9 10 ] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_Opaque.txt0000644002344600011330000000015412326542262024316 0ustar byrnhdfDatatype tag for DS1 is: "Character array" DS1[0]: OPAQUE0 DS1[1]: OPAQUE1 DS1[2]: OPAQUE2 DS1[3]: OPAQUE3 hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_ArrayAttribute.txt0000644002344600011330000000033212326542262026024 0ustar byrnhdfA1 [0]: [0 0 0 0 0 ] [0 -1 -2 -3 -4 ] [0 -2 -4 -6 -8 ] A1 [1]: [0 1 2 3 4 ] [1 1 1 1 1 ] [2 1 0 -1 -2 ] A1 [2]: [0 2 4 6 8 ] [2 3 4 5 6 ] [4 4 4 4 4 ] A1 [3]: [0 3 6 9 12 ] [3 5 7 9 11 ] [6 7 8 9 10 ] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_CompoundAttribute.txt0000644002344600011330000000070612326542262027666 0ustar byrnhdfA1 [0]: Serial number : 1153 Location : Exterior (static) Temperature (F) : 53.23 Pressure (inHg) : 24.57 A1 [1]: Serial number : 1184 Location : Intake Temperature (F) : 55.12 Pressure (inHg) : 22.95 A1 [2]: Serial number : 1027 Location : Intake manifold Temperature (F) : 103.55 Pressure (inHg) : 31.23 A1 [3]: Serial number : 1313 Location : Exhaust manifold Temperature (F) : 1252.89 Pressure (inHg) : 84.11 hdf-java-2.11.0/examples/testfiles/examples.groups.H5Ex_G_Iterate.txt0000644002344600011330000000012012326542262023756 0ustar byrnhdfObjects in root group: Dataset: DS1 Datatype: DT1 Group: G1 Dataset: L1 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Gzip.txt0000644002344600011330000000010212326542262024707 0ustar byrnhdfFilter type is: H5Z_FILTER_DEFLATE Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_StringAttribute.txt0000644002344600011330000000010312326542262027337 0ustar byrnhdfDS1 [0]: Parting DS1 [1]: is such DS1 [2]: sweet DS1 [3]: sorrow. hdf-java-2.11.0/examples/testfiles/examples.groups.H5Ex_G_Corder.txt0000644002344600011330000000026412326542262023610 0ustar byrnhdfTraversing group using alphabetical indices: Index 0: 5 Index 1: D Index 2: F Index 3: H Traversing group using creation order indices: Index 0: H Index 1: D Index 2: F Index 3: 5 hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_Commit.txt0000644002344600011330000000021612326542262025442 0ustar byrnhdfNamed datatype: Sensor_Type: Class: H5T_COMPOUND ObjectHeader Serial number Location Temperature (F) Pressure (inHg) hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_StringAttribute.txt0000644002344600011330000000010312326542262026210 0ustar byrnhdfDS1 [0]: Parting DS1 [1]: is such DS1 [2]: sweet DS1 [3]: sorrow. hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_FillValue.txt0000644002344600011330000000072712326542262025676 0ustar byrnhdfDataset before being written to: [ 99 99 99 99 99 99 99 ] [ 99 99 99 99 99 99 99 ] [ 99 99 99 99 99 99 99 ] [ 99 99 99 99 99 99 99 ] Dataset after being written to: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Dataset after extension: [ 0 -1 -2 -3 -4 -5 -6 99 99 99 ] [ 0 0 0 0 0 0 0 99 99 99 ] [ 0 1 2 3 4 5 6 99 99 99 ] [ 0 2 4 6 8 10 12 99 99 99 ] [ 99 99 99 99 99 99 99 99 99 99 ] [ 99 99 99 99 99 99 99 99 99 99 ] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_VLString.txt0000644002344600011330000000010212326542262025714 0ustar byrnhdfDS1 [0]: Parting DS1 [1]: is such DS1 [2]: sweet DS1 [3]: sorrow. hdf-java-2.11.0/examples/testfiles/examples.intro.H5Object_CreateAttribute.txt0000644002344600011330000000000012326542262025645 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_OpaqueAttribute.txt0000644002344600011330000000014712326542262026204 0ustar byrnhdfDatatype tag for A1 is: "Character array" A1[0]: OPAQUE0 A1[1]: OPAQUE1 A1[2]: OPAQUE2 A1[3]: OPAQUE3 hdf-java-2.11.0/examples/testfiles/examples.intro.H5_CreateFile.txt0000644002344600011330000000000012326542262023432 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_UnlimitedMod.txt0000644002344600011330000000043712326542262025254 0ustar byrnhdfDataset before extension: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Dataset after extension: [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Shuffle.txt0000644002344600011330000000015412326542262025401 0ustar byrnhdfFilter 0: Type is: H5Z_FILTER_SHUFFLE Filter 1: Type is: H5Z_FILTER_DEFLATE Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.intro.H5Object_CreateDataset.txt0000644002344600011330000000000012326542262025267 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Hyperslab.txt0000644002344600011330000000073012326542262024607 0ustar byrnhdfOriginal Data: [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] Data as written to disk by hyberslabs: [ 0 1 0 0 1 0 0 1 ] [ 1 1 0 1 1 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] [ 0 1 0 0 1 0 0 1 ] [ 1 1 0 1 1 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] Data as read from disk by hyberslab: [ 0 1 0 0 0 0 0 1 ] [ 0 1 0 1 0 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] [ 0 0 0 0 0 0 0 0 ] [ 0 1 0 1 0 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] hdf-java-2.11.0/examples/testfiles/examples.groups.H5ObjectEx_G_Phase.txt0000644002344600011330000000127712326542262024566 0ustar byrnhdf1 Group : Storage type is H5G_STORAGE_TYPE_COMPACT 2 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 3 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 4 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 5 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 6 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 7 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 6 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 5 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 4 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 3 Groups: Storage type is H5G_STORAGE_TYPE_DENSE 2 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT 1 Group : Storage type is H5G_STORAGE_TYPE_COMPACT 0 Groups: Storage type is H5G_STORAGE_TYPE_COMPACT hdf-java-2.11.0/examples/testfiles/examples.intro.H5_ReadWrite.txt0000644002344600011330000000000012326542262023315 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.intro.H5_CreateGroupAbsoluteRelative.txt0000644002344600011330000000000012326542262027042 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.groups.H5ObjectEx_G_Create.txt0000644002344600011330000000000012326542262024710 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.intro.H5Object_CreateGroupAbsoluteRelative.txt0000644002344600011330000000000012326542262030171 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Sofloat.txt0000644002344600011330000000035212326542262025414 0ustar byrnhdfMaximum value in write buffer is: 106.66666666666667 Minimum value in write buffer is: 1.7692307692307692 Filter type is: H5Z_FILTER_SCALEOFFSET Maximum value in DS1 is: 106.66169811320755 Minimum value in DS1 is: 1.7692307692307692 hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_ObjectReferenceAttribute.txt0000644002344600011330000000006012326542262027771 0ustar byrnhdfA1[0]: ->H5G_GROUP: A1[1]: ->H5G_DATASET: hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_Integer.txt0000644002344600011330000000012612326542262024460 0ustar byrnhdfDS1: [ 0 -1 -2 -3 -4 -5 -6] [ 0 0 0 0 0 0 0] [ 0 1 2 3 4 5 6] [ 0 2 4 6 8 10 12] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_ObjectReference.txt0000644002344600011330000000006212326542262026107 0ustar byrnhdfDS1[0]: ->H5G_GROUP: DS1[1]: ->H5G_DATASET: hdf-java-2.11.0/examples/testfiles/examples.intro.H5Object_CreateGroup.txt0000644002344600011330000000000012326542262024776 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_Commit.txt0000644002344600011330000000021612326542262024313 0ustar byrnhdfNamed datatype: Sensor_Type: Class: H5T_COMPOUND ObjectHeader Serial number Location Temperature (F) Pressure (inHg) hdf-java-2.11.0/examples/testfiles/examples.groups.H5Ex_G_Create.txt0000644002344600011330000000000012326542262023561 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_String.txt0000644002344600011330000000010312326542262025453 0ustar byrnhdfDS1 [0]: Parting DS1 [1]: is such DS1 [2]: sweet DS1 [3]: sorrow. hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_Opaque.txt0000644002344600011330000000015412326542262025445 0ustar byrnhdfDatatype tag for DS1 is: "Character array" DS1[0]: OPAQUE0 DS1[1]: OPAQUE1 DS1[2]: OPAQUE2 DS1[3]: OPAQUE3 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Compact.txt0000644002344600011330000000021712326542262025373 0ustar byrnhdfStorage layout for DS1 is: H5D_COMPACT Data for DS1 is: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Transform.txt0000644002344600011330000000067412326542262024640 0ustar byrnhdfOriginal Data: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Data as written with transform 'x+1' [ 1 0 -1 -2 -3 -4 -5 ] [ 1 1 1 1 1 1 1 ] [ 1 2 3 4 5 6 7 ] [ 1 3 5 7 9 11 13 ] Data as written with transform 'x+1' and read with transform 'x-1' [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_ReadWrite.txt0000644002344600011330000000013212326542262025667 0ustar byrnhdfDS1: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_UnlimitedAdd.txt0000644002344600011330000000044712326542262026355 0ustar byrnhdfDataset before extension: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Dataset after extension: [ 0 -1 -2 -3 -4 -5 -6 7 8 9 ] [ 0 0 0 0 0 0 0 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 2 4 6 8 10 12 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_BitAttribute.txt0000644002344600011330000000054512326542262025472 0ustar byrnhdfA1: [{0, 0, 0, 0}{3, 0, 1, 1}{2, 0, 2, 2}{1, 0, 3, 3}{0, 0, 0, 0}{3, 0, 1, 1}{2, 0, 2, 2}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_ArrayAttribute.txt0000644002344600011330000000033212326542262027153 0ustar byrnhdfA1 [0]: [0 0 0 0 0 ] [0 -1 -2 -3 -4 ] [0 -2 -4 -6 -8 ] A1 [1]: [0 1 2 3 4 ] [1 1 1 1 1 ] [2 1 0 -1 -2 ] A1 [2]: [0 2 4 6 8 ] [2 3 4 5 6 ] [4 4 4 4 4 ] A1 [3]: [0 3 6 9 12 ] [3 5 7 9 11 ] [6 7 8 9 10 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Shuffle.txt0000644002344600011330000000015412326542262024252 0ustar byrnhdfFilter 0: Type is: H5Z_FILTER_SHUFFLE Filter 1: Type is: H5Z_FILTER_DEFLATE Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Soint.txt0000644002344600011330000000010612326542262023747 0ustar byrnhdfFilter type is: H5Z_FILTER_SCALEOFFSET Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_FloatAttribute.txt0000644002344600011330000000033112326542262027141 0ustar byrnhdfA1: [ 0.0000 1.0000 2.0000 3.0000 4.0000 5.0000 6.0000] [ 2.0000 1.6667 2.4000 3.2857 4.2222 5.1818 6.1538] [ 4.0000 2.3333 2.8000 3.5714 4.4444 5.3636 6.3077] [ 6.0000 3.0000 3.2000 3.8571 4.6667 5.5455 6.4615] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_CompoundAttribute.txt0000644002344600011330000000070612326542262026537 0ustar byrnhdfA1 [0]: Serial number : 1153 Location : Exterior (static) Temperature (F) : 53.23 Pressure (inHg) : 24.57 A1 [1]: Serial number : 1184 Location : Intake Temperature (F) : 55.12 Pressure (inHg) : 22.95 A1 [2]: Serial number : 1027 Location : Intake manifold Temperature (F) : 103.55 Pressure (inHg) : 31.23 A1 [3]: Serial number : 1313 Location : Exhaust manifold Temperature (F) : 1252.89 Pressure (inHg) : 84.11 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_UnlimitedMod.txt0000644002344600011330000000043712326542262026403 0ustar byrnhdfDataset before extension: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Dataset after extension: [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] [ 0 1 2 3 4 5 6 7 8 9 ] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_Float.txt0000644002344600011330000000033212326542262024127 0ustar byrnhdfDS1: [ 0.0000 1.0000 2.0000 3.0000 4.0000 5.0000 6.0000] [ 2.0000 1.6667 2.4000 3.2857 4.2222 5.1818 6.1538] [ 4.0000 2.3333 2.8000 3.5714 4.4444 5.3636 6.3077] [ 6.0000 3.0000 3.2000 3.8571 4.6667 5.5455 6.4615] hdf-java-2.11.0/examples/testfiles/examples.groups.H5ObjectEx_G_Visit.txt0000644002344600011330000000075412326542262024623 0ustar byrnhdfObjects in the file: / (Group) /group1 (Group) /group1/dset1 (Dataset) /group1/group3 (Group) /group1/group3/group4 (Group) /group1/group3/group4/group1 (Group) /group1/group3/group4/group2 (Group) Links in the file: /group1 (Group) /group1/dset1 (Dataset) /group1/group3 (Group) /group1/group3/dset2 (Dataset) /group1/group3/group4 (Group) /group1/group3/group4/group1 (Group) /group1/group3/group4/group1/group5 (Group) /group1/group3/group4/group2 (Group) /group2 (Group) hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Alloc.txt0000644002344600011330000000063412326542262023713 0ustar byrnhdfCreating datasets... DS1 has allocation time H5D_ALLOC_TIME_LATE DS2 has allocation time H5D_ALLOC_TIME_EARLY Space for DS1 has not been allocated. Storage size for DS1 is: 0 bytes. Space for DS2 has been allocated. Storage size for DS2 is: 112 bytes. Writing data... Space for DS1 has been allocated. Storage size for DS1 is: 112 bytes. Space for DS2 has been allocated. Storage size for DS2 is: 112 bytes. hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_Bit.txt0000644002344600011330000000054612326542262023607 0ustar byrnhdfDS1: [{0, 0, 0, 0}{3, 0, 1, 1}{2, 0, 2, 2}{1, 0, 3, 3}{0, 0, 0, 0}{3, 0, 1, 1}{2, 0, 2, 2}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] [{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}{0, 0, 0, 0}] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_IntegerAttribute.txt0000644002344600011330000000012512326542262026343 0ustar byrnhdfA1: [ 0 -1 -2 -3 -4 -5 -6] [ 0 0 0 0 0 0 0] [ 0 1 2 3 4 5 6] [ 0 2 4 6 8 10 12] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_Integer.txt0000644002344600011330000000012612326542262025607 0ustar byrnhdfDS1: [ 0 -1 -2 -3 -4 -5 -6] [ 0 0 0 0 0 0 0] [ 0 1 2 3 4 5 6] [ 0 2 4 6 8 10 12] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_Compound.txt0000644002344600011330000000071212326542262025777 0ustar byrnhdfDS1 [0]: Serial number : 1153 Location : Exterior (static) Temperature (F) : 53.23 Pressure (inHg) : 24.57 DS1 [1]: Serial number : 1184 Location : Intake Temperature (F) : 55.12 Pressure (inHg) : 22.95 DS1 [2]: Serial number : 1027 Location : Intake manifold Temperature (F) : 103.55 Pressure (inHg) : 31.23 DS1 [3]: Serial number : 1313 Location : Exhaust manifold Temperature (F) : 1252.89 Pressure (inHg) : 84.11 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Hyperslab.txt0000644002344600011330000000073012326542262025736 0ustar byrnhdfOriginal Data: [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] [ 1 1 1 1 1 1 1 1 ] Data as written to disk by hyberslabs: [ 0 1 0 0 1 0 0 1 ] [ 1 1 0 1 1 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] [ 0 1 0 0 1 0 0 1 ] [ 1 1 0 1 1 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] Data as read from disk by hyberslab: [ 0 1 0 0 0 0 0 1 ] [ 0 1 0 1 0 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] [ 0 0 0 0 0 0 0 0 ] [ 0 1 0 1 0 0 1 1 ] [ 0 0 0 0 0 0 0 0 ] hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_Checksum.txt0000644002344600011330000000010512326542262024414 0ustar byrnhdfFilter type is: H5Z_FILTER_FLETCHER32 Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_External.txt0000644002344600011330000000021412326542262025564 0ustar byrnhdfDS1 is stored in file: H5ObjectEx_D_External.data DS1: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] hdf-java-2.11.0/examples/testfiles/examples.groups.H5ObjectEx_G_Compact.txt0000644002344600011330000000041412326542262025104 0ustar byrnhdfGroup storage type for H5ObjectEx_G_Compact1.h5 is: H5G_STORAGE_TYPE_SYMBOL_TABLE File size for H5ObjectEx_G_Compact1.h5 is: 1832 bytes Group storage type for H5ObjectEx_G_Compact2.h5 is: H5G_STORAGE_TYPE_COMPACT File size for H5ObjectEx_G_Compact2.h5 is: 1275 bytes hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_ObjectReferenceAttribute.txt0000644002344600011330000000006012326542262031120 0ustar byrnhdfA1[0]: ->H5G_GROUP: A1[1]: ->H5G_DATASET: hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_VLString.txt0000644002344600011330000000010212326542262024565 0ustar byrnhdfDS1 [0]: Parting DS1 [1]: is such DS1 [2]: sweet DS1 [3]: sorrow. hdf-java-2.11.0/examples/testfiles/examples.datasets.H5ObjectEx_D_Nbit.txt0000644002344600011330000000007712326542262024705 0ustar byrnhdfFilter type is: H5Z_FILTER_NBIT Maximum value in DS1 is: 1890 hdf-java-2.11.0/examples/testfiles/examples.intro.H5_CreateGroupDataset.txt0000644002344600011330000000000012326542262025155 0ustar byrnhdfhdf-java-2.11.0/examples/testfiles/examples.datatypes.H5ObjectEx_T_OpaqueAttribute.txt0000644002344600011330000000014712326542262027333 0ustar byrnhdfDatatype tag for A1 is: "Character array" A1[0]: OPAQUE0 A1[1]: OPAQUE1 A1[2]: OPAQUE2 A1[3]: OPAQUE3 hdf-java-2.11.0/examples/testfiles/examples.datasets.H5Ex_D_FillValue.txt0000644002344600011330000000072712326542262024547 0ustar byrnhdfDataset before being written to: [ 99 99 99 99 99 99 99 ] [ 99 99 99 99 99 99 99 ] [ 99 99 99 99 99 99 99 ] [ 99 99 99 99 99 99 99 ] Dataset after being written to: [ 0 -1 -2 -3 -4 -5 -6 ] [ 0 0 0 0 0 0 0 ] [ 0 1 2 3 4 5 6 ] [ 0 2 4 6 8 10 12 ] Dataset after extension: [ 0 -1 -2 -3 -4 -5 -6 99 99 99 ] [ 0 0 0 0 0 0 0 99 99 99 ] [ 0 1 2 3 4 5 6 99 99 99 ] [ 0 2 4 6 8 10 12 99 99 99 ] [ 99 99 99 99 99 99 99 99 99 99 ] [ 99 99 99 99 99 99 99 99 99 99 ] hdf-java-2.11.0/examples/testfiles/examples.datatypes.H5Ex_T_Compound.txt0000644002344600011330000000071212326542262024650 0ustar byrnhdfDS1 [0]: Serial number : 1153 Location : Exterior (static) Temperature (F) : 53.23 Pressure (inHg) : 24.57 DS1 [1]: Serial number : 1184 Location : Intake Temperature (F) : 55.12 Pressure (inHg) : 22.95 DS1 [2]: Serial number : 1027 Location : Intake manifold Temperature (F) : 103.55 Pressure (inHg) : 31.23 DS1 [3]: Serial number : 1313 Location : Exhaust manifold Temperature (F) : 1252.89 Pressure (inHg) : 84.11 hdf-java-2.11.0/examples/runExample.sh.in0000644002344600011330000000263112326542262016456 0ustar byrnhdf#!/bin/sh # Set up default variable values if not supplied by the user. # where the new builds exist HDFBLD_HOME=@abs_top_builddir@ export HDFBLD_HOME # where Java is installed (requires jdk1.4.x) JAVAPATH=@JAVABIN@ export JAVAPATH RM=@RM@ CPATH="..:"$HDFBLD_HOME"/lib/jhdf5.jar:"$HDFBLD_HOME"/lib/slf4j-api-1.7.5.jar:"$HDFBLD_HOME"/lib/ext/slf4j-nop-1.7.5.jar" TEST=/usr/bin/test if [ ! -x /usr/bin/test ] then TEST=`which test` fi if $TEST -z "$CLASSPATH"; then CLASSPATH="" fi CLASSPATH=$CPATH":"$CLASSPATH export CLASSPATH if $TEST -n "$JAVAPATH" ; then PATH=$JAVAPATH":"$PATH export PATH fi if $TEST -e /bin/uname; then os_name=`/bin/uname -s` elif $TEST -e /usr/bin/uname; then os_name=`/usr/bin/uname -s` else os_name=unknown fi case $os_name in SunOS) OS_NAME=solaris ;; Linux) OS_NAME=linux ;; IRIX*) OS_NAME=irix-6.5 ;; OSF1) OS_NAME=alpha ;; AIX) OS_NAME=aix ;; Darwin) OS_NAME=macosx ;; FreeBSD) OS_NAME=freebsd ;; *) echo "Unknown Operating System: HDF-Java may not work correctly" ;; esac (cd $HDFBLD_HOME/lib/examples; $JAVAPATH/java -Xmx1024M -Djava.library.path=$HDFBLD_HOME"/lib/"$OS_NAME "$1" > "$1".out) if diff $HDFBLD_HOME/lib/examples/"$1".out testfiles/"$1".txt > /dev/null; then exit 0 else exit 1 fi hdf-java-2.11.0/examples/groups/0000755002344600011330000000000012441355011014702 5ustar byrnhdfhdf-java-2.11.0/examples/groups/H5Ex_G_Traverse.java0000644002344600011330000001133112326542262020446 0ustar byrnhdf/************************************************************ This example shows a way to recursively traverse the file using H5Literate. The method shown here guarantees that the recursion will not enter an infinite loop, but does not prevent objects from being visited more than once. The program prints the directory structure of the file specified in FILE. The default file used by this example implements the structure described in the User's Guide, chapter 4, figure 26. This file is intended for use with HDF5 Library version 1.8 ************************************************************/ package examples.groups; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.callbacks.H5L_iterate_cb; import ncsa.hdf.hdf5lib.callbacks.H5L_iterate_t; import ncsa.hdf.hdf5lib.structs.H5L_info_t; import ncsa.hdf.hdf5lib.structs.H5O_info_t; import examples.groups.H5Ex_G_Iterate.H5O_type; class opdata implements H5L_iterate_t { int recurs; opdata prev; long addr; } public class H5Ex_G_Traverse { private static String FILE = "h5ex_g_traverse.h5"; public static H5L_iterate_cb iter_cb = new H5L_iter_callbackT(); private static void OpenGroup(){ int file_id = -1; H5O_info_t infobuf; opdata od = new opdata(); // Open file and initialize the operator data structure. try{ file_id = H5.H5Fopen(FILE, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); if(file_id>=0){ infobuf = H5.H5Oget_info(file_id); od.recurs = 0; od.prev = null; od.addr = infobuf.addr; } } catch (Exception e) { e.printStackTrace(); } //Print the root group and formatting, begin iteration. try{ System.out.println("/ {"); //H5L_iterate_cb iter_cb = new H5L_iter_callbackT(); H5.H5Literate(file_id, HDF5Constants.H5_INDEX_NAME, HDF5Constants.H5_ITER_NATIVE, 0L, iter_cb, od); System.out.println("}"); } catch (Exception e) { e.printStackTrace(); } //Close and release resources. try{ if(file_id>=0) H5.H5Fclose (file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_G_Traverse.OpenGroup(); } } class H5L_iter_callbackT implements H5L_iterate_cb { public int callback(int group, String name, H5L_info_t info, H5L_iterate_t op_data) { H5O_info_t infobuf; int return_val = 0; opdata od = (opdata)op_data; //Type conversion int spaces = 2 * (od.recurs + 1); //Number of white spaces to prepend to output. //Get type of the object and display its name and type. // The name of the object is passed to this function by the Library. try{ infobuf = H5.H5Oget_info_by_name (group, name, HDF5Constants.H5P_DEFAULT); for(int i=0;i lookup = new HashMap(); static { for (H5O_type s : EnumSet.allOf(H5O_type.class)) lookup.put(s.getCode(), s); } private int code; H5O_type(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5O_type get(int code) { return lookup.get(code); } } private static void do_iterate() { H5File file = null; int o_id = -1; // Open a file using default properties. try { file = new H5File(FILENAME, FileFormat.READ); } catch (Exception e) { e.printStackTrace(); } // Begin iteration. System.out.println("Objects in root group:"); try { int objType; H5O_info_t info; HObject obj = null; H5Group grp = (H5Group)file.get(DATASETNAME); List memberList = grp.getMemberList(); Iterator it = memberList.iterator(); while (it.hasNext()) { obj = it.next(); o_id = obj.open(); if (o_id >= 0) { info = H5.H5Oget_info(o_id); objType = info.type; // Get type of the object and display its name and type. switch (H5O_type.get(objType)) { case H5O_TYPE_GROUP: System.out.println(" Group: " + obj.getName()); break; case H5O_TYPE_DATASET: System.out.println(" Dataset: " + obj.getName()); break; case H5O_TYPE_NAMED_DATATYPE: System.out.println(" Datatype: " + obj.getName()); break; default: System.out.println(" Unknown: " + obj.getName()); } obj.close(o_id); } } } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_G_Iterate.do_iterate(); } } hdf-java-2.11.0/examples/groups/Makefile.in0000644002344600011330000000302212326542262016754 0ustar byrnhdf#/**************************************************************************** # * Copyright by The HDF Group. * # * Copyright by the Board of Trustees of the University of Illinois. * # * All rights reserved. * # * * # * This file is part of HDF Java Products. The full HDF Java copyright * # * notice, including terms governing use, modification, and redistribution, * # * is contained in the file, COPYING. COPYING can be found at the root of * # * the source code distribution tree. You can also access it online at * # * http://www.hdfgroup.org/products/licenses.html. If you do not have * # * access to the file, you may request a copy from help@hdfgroup.org. * # ****************************************************************************/ TOP = ../.. DIR = examples/groups SUBDIRS = NULL JAVAC = @JAVAC@ JAVADOC = @JAVADOC@ JAR = @JAR@ FIND = @FIND@ RM = @RM@ SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ CLASSPATH=@CLASSPATH@ JH45INSTALLDIR=@JH45INST@ H45INC=@H45INC@ H4INC=@HDF4INC@ H5INC=@HDF5INC@ JAVA_SRCS = \ H5Ex_G_Create.java \ H5Ex_G_Iterate.java \ H5Ex_G_Compact.java \ H5Ex_G_Corder.java \ H5Ex_G_Intermediate.java \ H5Ex_G_Phase.java \ H5Ex_G_Visit.java check: all cp h5ex_g_iterate.h5 $(TOP)/lib/$(DIR) cp h5ex_g_visit.h5 $(TOP)/lib/$(DIR) include $(TOP)/config/Rules.mk hdf-java-2.11.0/examples/groups/H5Ex_G_Iterate.java0000644002344600011330000000532412326542262020255 0ustar byrnhdf/************************************************************ This example shows how to iterate over group members using H5Gget_obj_info_all. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.groups; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_G_Iterate { private static String FILENAME = "groups/h5ex_g_iterate.h5"; private static String DATASETNAME = "/"; enum H5O_type { H5O_TYPE_UNKNOWN(-1), // Unknown object type H5O_TYPE_GROUP(0), // Object is a group H5O_TYPE_DATASET(1), // Object is a dataset H5O_TYPE_NAMED_DATATYPE(2), // Object is a named data type H5O_TYPE_NTYPES(3); // Number of different object types private static final Map lookup = new HashMap(); static { for (H5O_type s : EnumSet.allOf(H5O_type.class)) lookup.put(s.getCode(), s); } private int code; H5O_type(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5O_type get(int code) { return lookup.get(code); } } private static void do_iterate() { int file_id = -1; // Open a file using default properties. try { file_id = H5.H5Fopen(FILENAME, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Begin iteration. System.out.println("Objects in root group:"); try { if (file_id >= 0) { int count = (int)H5.H5Gn_members(file_id, DATASETNAME); String[] oname = new String[count]; int[] otype = new int[count]; int[] ltype = new int[count]; long[] orefs = new long[count]; H5.H5Gget_obj_info_all(file_id, DATASETNAME, oname, otype, ltype, orefs, HDF5Constants.H5_INDEX_NAME); // Get type of the object and display its name and type. for (int indx = 0; indx < otype.length; indx++) { switch (H5O_type.get(otype[indx])) { case H5O_TYPE_GROUP: System.out.println(" Group: " + oname[indx]); break; case H5O_TYPE_DATASET: System.out.println(" Dataset: " + oname[indx]); break; case H5O_TYPE_NAMED_DATATYPE: System.out.println(" Datatype: " + oname[indx]); break; default: System.out.println(" Unknown: " + oname[indx]); } } } } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_G_Iterate.do_iterate(); } } hdf-java-2.11.0/examples/groups/H5ObjectEx_G_Create.java0000644002344600011330000000331012326542262021203 0ustar byrnhdf/************************************************************ This example shows how to create, open, and close a group. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.groups; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; public class H5ObjectEx_G_Create { private static String FILENAME = "H5ObjectEx_G_Create.h5"; private static String GROUPNAME = "G1"; private static void CreateGroup() { H5File file = null; H5Group grp = null; int group_id = -1; // Create a new file using default properties. try { file = new H5File(FILENAME, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } // Create a group in the file. try { grp = (H5Group)file.createGroup("/" + GROUPNAME, null); group_id = grp.open(); } catch (Exception e) { e.printStackTrace(); } // Close the group. The handle "group" can no longer be used. try { if (group_id >= 0) grp.close(group_id); } catch (Exception e) { e.printStackTrace(); } // Re-open the group, obtaining a new handle. try { group_id = grp.open(); } catch (Exception e) { e.printStackTrace(); } // Close the group. try { if (group_id >= 0) grp.close(group_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_G_Create.CreateGroup(); } } hdf-java-2.11.0/examples/groups/CMakeLists.txt0000644002344600011330000001761512352113716017461 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_EXAMPLES_GROUPS Java) set (CMAKE_VERBOSE_MAKEFILE 1) INCLUDE_DIRECTORIES ( ${JAVA_NCSA_HDF_HDF5_BINARY_DIR} ${HDFJAVA_LIB_DIR} ) set (HDF_JAVA_EXAMPLES H5Ex_G_Create H5Ex_G_Iterate H5Ex_G_Compact H5Ex_G_Corder H5Ex_G_Intermediate H5Ex_G_Phase H5Ex_G_Visit ) set (HDF_JAVA_OBJECT_EXAMPLES H5ObjectEx_G_Create H5ObjectEx_G_Iterate H5ObjectEx_G_Compact H5ObjectEx_G_Corder H5ObjectEx_G_Intermediate H5ObjectEx_G_Phase H5ObjectEx_G_Visit ) if (WIN32) set (CMAKE_JAVA_INCLUDE_FLAG_SEP ";") else (WIN32) set (CMAKE_JAVA_INCLUDE_FLAG_SEP ":") endif (WIN32) set (CMAKE_JAVA_INCLUDE_PATH "${HDFJAVA_HDF5_JARS}") set (CMAKE_JAVA_CLASSPATH ".") foreach (CMAKE_INCLUDE_PATH ${CMAKE_JAVA_INCLUDE_PATH}) set (CMAKE_JAVA_CLASSPATH "${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${CMAKE_INCLUDE_PATH}") endforeach (CMAKE_INCLUDE_PATH) foreach (example ${HDF_JAVA_EXAMPLES}) file (WRITE ${PROJECT_BINARY_DIR}/Manifest.txt "Main-Class: examples.groups.${example} " ) add_jar (${example} MANIFEST ${PROJECT_BINARY_DIR}/Manifest.txt ${example}.java) get_target_property (${example}_JAR_FILE ${example} JAR_FILE) # install_jar (${example} ${HJAVA_INSTALL_DATA_DIR}/examples examples) get_target_property (${example}_CLASSPATH ${example} CLASSDIR) add_dependencies (${example} ${HDFJAVA_NCSA_HDF5_LIB_TARGET}) endforeach (example ${HDF_JAVA_EXAMPLES}) set (CMAKE_JAVA_INCLUDE_PATH "${HDFJAVA_HDF5_JARS};${HDFJAVA_HDF4_JARS};${HDFJAVA_OBJECT_JARS};${HDFJAVA_LOGGING_JAR};${HDFJAVA_LOGGING_NOP_JAR}") set (CMAKE_JAVA_CLASSPATH ".") foreach (HDFJAVA_JAR ${CMAKE_JAVA_INCLUDE_PATH}) set (CMAKE_JAVA_CLASSPATH "${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${HDFJAVA_JAR}") endforeach (HDFJAVA_JAR) foreach (example ${HDF_JAVA_OBJECT_EXAMPLES}) file (WRITE ${PROJECT_BINARY_DIR}/Manifest.txt "Main-Class: examples.groups.${example} " ) add_jar (${example} MANIFEST ${PROJECT_BINARY_DIR}/Manifest.txt ${example}.java) get_target_property (${example}_JAR_FILE ${example} JAR_FILE) # install_jar (${example} ${HJAVA_INSTALL_DATA_DIR}/examples examples) get_target_property (${example}_CLASSPATH ${example} CLASSDIR) add_dependencies (${example} ${HDFJAVA_NCSA_H5_LIB_TARGET}) endforeach (example ${HDF_JAVA_OBJECT_EXAMPLES}) set (HDF_JAVA_TEST_FILES h5ex_g_iterate.h5 h5ex_g_visit.h5 ) foreach (h5_file ${HDF_JAVA_TEST_FILES}) set (dest "${PROJECT_BINARY_DIR}/${h5_file}") #message (STATUS " Copying ${h5_file}") add_custom_command ( TARGET H5Ex_G_Visit POST_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${PROJECT_SOURCE_DIR}/${h5_file} ${dest} ) endforeach (h5_file ${HDF_JAVA_TEST_FILES}) MACRO (ADD_H5_TEST resultfile resultcode) add_test ( NAME groups-${resultfile} COMMAND "${CMAKE_COMMAND}" -D "TEST_TESTER=${CMAKE_Java_RUNTIME};${CMAKE_Java_RUNTIME_FLAGS}" -D "TEST_PROGRAM=examples.groups.${resultfile}" -D "TEST_ARGS:STRING=${ARGN}" -D "TEST_CLASSPATH:STRING=${CMAKE_JAVA_CLASSPATH}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${${resultfile}_JAR_FILE}" -D "TEST_LIBRARY_DIRECTORY=${CMAKE_TEST_OUTPUT_DIRECTORY}" -D "TEST_FOLDER=${HDFJAVA_EXAMPLES_BINARY_DIR}" -D "TEST_OUTPUT=groups/${resultfile}.out" -D "TEST_EXPECT=${resultcode}" -D "TEST_REFERENCE=groups/${resultfile}.txt" -P "${HDF_RESOURCES_DIR}/runTest.cmake" ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (groups-${resultfile} PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "groups-${resultfile}") ENDMACRO (ADD_H5_TEST file) if (BUILD_TESTING) foreach (example ${HDF_JAVA_EXAMPLES}) add_test ( NAME groups-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${example}.out ${example}.out.err ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (groups-${example}-clearall-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "groups-${example}-clearall-objects") if (NOT ${example} STREQUAL "H5Ex_G_Iterate" AND NOT ${example} STREQUAL "H5Ex_G_Visit") if (${example} STREQUAL "H5Ex_G_Compact") add_test ( NAME groups-${example}-clearall-h5s COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}1.h5 ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}2.h5 ) else (${example} STREQUAL "H5Ex_G_Compact") add_test ( NAME groups-${example}-clearall-h5s COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ) endif (${example} STREQUAL "H5Ex_G_Compact") if (NOT "${last_test}" STREQUAL "") set_tests_properties (groups-${example}-clearall-h5s PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "groups-${example}-clearall-h5s") endif (NOT ${example} STREQUAL "H5Ex_G_Iterate" AND NOT ${example} STREQUAL "H5Ex_G_Visit") add_test ( NAME groups-${example}-copy-objects COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDFJAVA_EXAMPLES_SOURCE_DIR}/testfiles/examples.groups.${example}.txt ${HDFJAVA_EXAMPLES_GROUPS_BINARY_DIR}/${example}.txt ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (groups-${example}-copy-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "groups-${example}-copy-objects") ADD_H5_TEST (${example} 0) endforeach (example ${HDF_JAVA_EXAMPLES}) foreach (example ${HDF_JAVA_OBJECT_EXAMPLES}) add_test ( NAME groups-${example}-clearall-objects COMMAND ${CMAKE_COMMAND} -E remove ${example}.out ${example}.out.err ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (groups-${example}-clearall-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "groups-${example}-clearall-objects") if (NOT ${example} STREQUAL "H5ObjectEx_G_Iterate" AND NOT ${example} STREQUAL "H5ObjectEx_G_Visit") if (${example} STREQUAL "H5ObjectEx_G_Compact") add_test ( NAME groups-${example}-clearall-h5s COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}1.h5 ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}2.h5 ) else (${example} STREQUAL "H5ObjectEx_G_Compact") add_test ( NAME groups-${example}-clearall-h5s COMMAND ${CMAKE_COMMAND} -E remove ${HDFJAVA_EXAMPLES_BINARY_DIR}/${example}.h5 ) endif (${example} STREQUAL "H5ObjectEx_G_Compact") if (NOT "${last_test}" STREQUAL "") set_tests_properties (groups-${example}-clearall-h5s PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "groups-${example}-clearall-h5s") endif (NOT ${example} STREQUAL "H5ObjectEx_G_Iterate" AND NOT ${example} STREQUAL "H5ObjectEx_G_Visit") add_test ( NAME groups-${example}-copy-objects COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDFJAVA_EXAMPLES_SOURCE_DIR}/testfiles/examples.groups.${example}.txt ${HDFJAVA_EXAMPLES_GROUPS_BINARY_DIR}/${example}.txt ) if (NOT "${last_test}" STREQUAL "") set_tests_properties (groups-${example}-copy-objects PROPERTIES DEPENDS ${last_test}) endif (NOT "${last_test}" STREQUAL "") set (last_test "groups-${example}-copy-objects") ADD_H5_TEST (${example} 0) endforeach (example ${HDF_JAVA_OBJECT_EXAMPLES}) endif (BUILD_TESTING) hdf-java-2.11.0/examples/groups/H5Ex_G_Corder.java0000644002344600011330000000657412326542262020106 0ustar byrnhdfpackage examples.groups; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.structs.H5G_info_t; public class H5Ex_G_Corder { private static String FILE = "H5Ex_G_Corder.h5"; private static void CreateGroup() throws Exception { int file_id = -1; int group_id = -1; int subgroup_id = -1; int gcpl_id = -1; int status; H5G_info_t ginfo; int i; String name; try { // Create a new file using default properties. file_id = H5.H5Fcreate (FILE, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); // Create group creation property list and enable link creation order tracking. gcpl_id = H5.H5Pcreate (HDF5Constants.H5P_GROUP_CREATE); status = H5.H5Pset_link_creation_order(gcpl_id, HDF5Constants.H5P_CRT_ORDER_TRACKED + HDF5Constants.H5P_CRT_ORDER_INDEXED); // Create primary group using the property list. if (status >= 0) group_id = H5.H5Gcreate(file_id, "index_group", HDF5Constants.H5P_DEFAULT, gcpl_id, HDF5Constants.H5P_DEFAULT); try { /* * Create subgroups in the primary group. These will be tracked * by creation order. Note that these groups do not have to have * the creation order tracking property set. */ subgroup_id = H5.H5Gcreate(group_id, "H", HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); status = H5.H5Gclose(subgroup_id); subgroup_id = H5.H5Gcreate(group_id, "D", HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); status = H5.H5Gclose(subgroup_id); subgroup_id = H5.H5Gcreate(group_id, "F", HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); status = H5.H5Gclose(subgroup_id); subgroup_id = H5.H5Gcreate(group_id, "5", HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); status = H5.H5Gclose(subgroup_id); // Get group info. ginfo= H5.H5Gget_info(group_id); //Traverse links in the primary group using alphabetical indices (H5_INDEX_NAME). System.out.println("Traversing group using alphabetical indices:"); for (i=0; i= 0) H5.H5Pclose (gcpl_id); if (group_id >= 0) H5.H5Gclose (group_id); if (file_id >= 0) H5.H5Fclose (file_id); } } public static void main(String[] args) { try { H5Ex_G_Corder.CreateGroup(); } catch(Exception ex) { ex.printStackTrace(); } } } hdf-java-2.11.0/examples/groups/H5Ex_G_Compact.java0000644002344600011330000001603112326542262020243 0ustar byrnhdfpackage examples.groups; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.structs.H5G_info_t; public class H5Ex_G_Compact { private static final String FILE1 = "H5Ex_G_Compact1.h5"; private static final String FILE2 = "H5Ex_G_Compact2.h5"; private static final String GROUP = "G1"; enum H5G_storage { H5G_STORAGE_TYPE_UNKNOWN(-1), H5G_STORAGE_TYPE_SYMBOL_TABLE(0), H5G_STORAGE_TYPE_COMPACT(1), H5G_STORAGE_TYPE_DENSE(2); private static final Map lookup = new HashMap(); static { for (H5G_storage s : EnumSet.allOf(H5G_storage.class)) lookup.put(s.getCode(), s); } private int code; H5G_storage(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5G_storage get(int code) { return lookup.get(code); } } public static void CreateGroup() { int file_id = -1; int group_id = -1; int fapl_id = -1; H5G_info_t ginfo; long size; //Create file 1. This file will use original format groups. try { file_id = H5.H5Fcreate (FILE1, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Create a group in the file1. try { if(file_id >= 0) group_id = H5.H5Gcreate(file_id, GROUP, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Obtain the group info and print the group storage type. try { if(group_id >= 0) { ginfo = H5.H5Gget_info(group_id); System.out.print("Group storage type for " + FILE1 + " is: "); switch (H5G_storage.get(ginfo.storage_type)) { case H5G_STORAGE_TYPE_COMPACT: System.out.println("H5G_STORAGE_TYPE_COMPACT"); // New compact format break; case H5G_STORAGE_TYPE_DENSE: System.out.println("H5G_STORAGE_TYPE_DENSE"); //New dense (indexed) format break; case H5G_STORAGE_TYPE_SYMBOL_TABLE: System.out.println("H5G_STORAGE_TYPE_SYMBOL_TABLE"); //Original format } } } catch(Exception e) { e.printStackTrace(); } // Close the group. try { if (group_id >= 0) H5.H5Gclose(group_id); } catch (Exception e) { e.printStackTrace(); } //close the file 1. try { if (file_id >= 0) H5.H5Fclose (file_id); } catch (Exception e) { e.printStackTrace(); } // Re-open file 1. Need to get the correct file size. try { file_id = H5.H5Fopen(FILE1, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Obtain and print the file size. try { if(file_id >= 0){ size = H5.H5Fget_filesize (file_id); System.out.println ("File size for " + FILE1 + " is: " + size + " bytes" ); } } catch(Exception e) { e.printStackTrace(); } //Close FILE1. try { if (file_id >= 0) H5.H5Fclose (file_id); } catch (Exception e) { e.printStackTrace(); } //Set file access property list to allow the latest file format. // This will allow the library to create new compact format groups. try { fapl_id = H5.H5Pcreate (HDF5Constants.H5P_FILE_ACCESS); if(fapl_id >= 0) H5.H5Pset_libver_bounds (fapl_id, HDF5Constants.H5F_LIBVER_LATEST, HDF5Constants.H5F_LIBVER_LATEST); } catch (Exception e) { e.printStackTrace(); } System.out.println(); //Create file 2 using the new file access property list. try { file_id = H5.H5Fcreate(FILE2, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, fapl_id); } catch (Exception e) { e.printStackTrace(); } //Create group in file2. try { if(file_id >= 0) group_id = H5.H5Gcreate(file_id, GROUP, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Obtain the group info and print the group storage type. try { if(group_id >= 0) { ginfo = H5.H5Gget_info(group_id); System.out.print("Group storage type for " + FILE2 + " is: "); switch (H5G_storage.get(ginfo.storage_type)) { case H5G_STORAGE_TYPE_COMPACT: System.out.println("H5G_STORAGE_TYPE_COMPACT"); //New compact format break; case H5G_STORAGE_TYPE_DENSE: System.out.println("H5G_STORAGE_TYPE_DENSE"); // New dense (indexed) format break; case H5G_STORAGE_TYPE_SYMBOL_TABLE: System.out.println("H5G_STORAGE_TYPE_SYMBOL_TABLE"); // Original format } } } catch (Exception e) { e.printStackTrace(); } // Close the group. try { if (group_id >= 0) H5.H5Gclose(group_id); } catch (Exception e) { e.printStackTrace(); } //close the file 2. try { if (file_id >= 0) H5.H5Fclose (file_id); } catch (Exception e) { e.printStackTrace(); } //Re-open file 2. Needed to get the correct file size. try { file_id = H5.H5Fopen (FILE2, HDF5Constants.H5F_ACC_RDONLY, fapl_id); } catch (Exception e) { e.printStackTrace(); } //Obtain and print the file size. try { if(file_id >= 0) { size = H5.H5Fget_filesize (file_id); System.out.println ("File size for " + FILE2 + " is: " + size + " bytes"); } } catch (Exception e) { e.printStackTrace(); } //Close FILE2. try { if (file_id >= 0) H5.H5Fclose (file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_G_Compact.CreateGroup(); } } hdf-java-2.11.0/examples/groups/H5Ex_G_Visit.java0000644002344600011330000001205412326542262017754 0ustar byrnhdf/************************************************************ This example shows how to recursively traverse a file using H5Ovisit and H5Lvisit. The program prints all of the objects in the file specified in FILE, then prints all of the links in that file. The default file used by this example implements the structure described in the User's Guide, chapter 4, figure 26. This file is intended for use with HDF5 Library version 1.8 ************************************************************/ package examples.groups; import java.util.ArrayList; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.callbacks.H5L_iterate_cb; import ncsa.hdf.hdf5lib.callbacks.H5L_iterate_t; import ncsa.hdf.hdf5lib.callbacks.H5O_iterate_cb; import ncsa.hdf.hdf5lib.callbacks.H5O_iterate_t; import ncsa.hdf.hdf5lib.structs.H5L_info_t; import ncsa.hdf.hdf5lib.structs.H5O_info_t; public class H5Ex_G_Visit { private static String FILE = "groups/h5ex_g_visit.h5"; public static void main(String[] args) { try { (new H5Ex_G_Visit()).VisitGroup(); } catch(Exception ex) { ex.printStackTrace(); } } private void VisitGroup() throws Exception { int file_id = -1; try { //Open file file_id = H5.H5Fopen(FILE, HDF5Constants.H5F_ACC_RDONLY, HDF5Constants.H5P_DEFAULT); //Begin iteration using H5Ovisit System.out.println("Objects in the file:"); H5O_iterate_t iter_data = new H5O_iter_data(); H5O_iterate_cb iter_cb = new H5O_iter_callback(); H5.H5Ovisit(file_id, HDF5Constants.H5_INDEX_NAME, HDF5Constants.H5_ITER_NATIVE, iter_cb, iter_data); System.out.println(); //Repeat the same process using H5Lvisit H5L_iterate_t iter_data2 = new H5L_iter_data(); H5L_iterate_cb iter_cb2 = new H5L_iter_callback(); System.out.println ("Links in the file:"); H5.H5Lvisit(file_id, HDF5Constants.H5_INDEX_NAME, HDF5Constants.H5_ITER_NATIVE, iter_cb2, iter_data2); } catch (Exception e) { e.printStackTrace(); } finally { //Close and release resources. if(file_id >= 0) H5.H5Fclose (file_id); } } /************************************************************ * Operator function for H5Lvisit. This function simply * retrieves the info for the object the current link points * to, and calls the operator function for H5Ovisit. ************************************************************/ private class idata { public String link_name = null; public int link_type = -1; idata(String name, int type) { this.link_name = name; this.link_type = type; } } private class H5L_iter_data implements H5L_iterate_t { public ArrayList iterdata = new ArrayList(); } private class H5L_iter_callback implements H5L_iterate_cb { public int callback(int group, String name, H5L_info_t info, H5L_iterate_t op_data) { idata id = new idata(name, info.type); ((H5L_iter_data)op_data).iterdata.add(id); H5O_info_t infobuf; int ret = 0; try { //Get type of the object and display its name and type. The name of the object is passed to this function by the Library. infobuf = H5.H5Oget_info_by_name (group, name, HDF5Constants.H5P_DEFAULT); H5O_iterate_cb iter_cbO = new H5O_iter_callback(); H5O_iterate_t iter_dataO = new H5O_iter_data(); ret=iter_cbO.callback(group, name, infobuf, iter_dataO); } catch (Exception e) { e.printStackTrace(); } return ret; } } private class H5O_iter_data implements H5O_iterate_t { public ArrayList iterdata = new ArrayList(); } private class H5O_iter_callback implements H5O_iterate_cb { public int callback(int group, String name, H5O_info_t info, H5O_iterate_t op_data) { idata id = new idata(name, info.type); ((H5O_iter_data)op_data).iterdata.add(id); System.out.print("/"); /* Print root group in object path */ //Check if the current object is the root group, and if not print the full path name and type. if (name.charAt(0) == '.') /* Root group, do not print '.' */ System.out.println(" (Group)"); else if(info.type == HDF5Constants.H5O_TYPE_GROUP ) System.out.println(name + " (Group)" ); else if(info.type == HDF5Constants.H5O_TYPE_DATASET) System.out.println(name + " (Dataset)"); else if (info.type == HDF5Constants.H5O_TYPE_NAMED_DATATYPE ) System.out.println(name + " (Datatype)"); else System.out.println(name + " (Unknown)"); return 0; } } } hdf-java-2.11.0/examples/groups/h5ex_g_visit.h50000644002344600011330000001425011354150326017543 0ustar byrnhdf‰HDF  ÿÿÿÿÿÿÿÿ¨ÿÿÿÿÿÿÿÿ €`HEAP€group1group2èTREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ@ €`HEAP@0È TREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ( ðÐSNODðÐÈ ¨ˆHEAP@0èTREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ ( ¨ˆ ( ÿÿÿÿÿÿÿÿ ÐNHhSNODø (È ¨ˆlink2SNODø (H(dset1link1group3HEAP@((TREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿè  (HEAP@(hTREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ   ˜xSNOD¸˜x pP0HEAPp TREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ  P0SNOD ðÐdset2group3group4group1group2link2group5hdf-java-2.11.0/examples/groups/H5ObjectEx_G_Compact.java0000644002344600011330000001553712326542262021404 0ustar byrnhdfpackage examples.groups; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.structs.H5G_info_t; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; public class H5ObjectEx_G_Compact { private static final String FILE1 = "H5ObjectEx_G_Compact1.h5"; private static final String FILE2 = "H5ObjectEx_G_Compact2.h5"; private static final String GROUP = "G1"; enum H5G_storage { H5G_STORAGE_TYPE_UNKNOWN(-1), H5G_STORAGE_TYPE_SYMBOL_TABLE(0), H5G_STORAGE_TYPE_COMPACT(1), H5G_STORAGE_TYPE_DENSE(2); private static final Map lookup = new HashMap(); static { for (H5G_storage s : EnumSet.allOf(H5G_storage.class)) lookup.put(s.getCode(), s); } private int code; H5G_storage(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5G_storage get(int code) { return lookup.get(code); } } public static void CreateGroup() { H5File file = null; H5Group grp = null; int file_id = -1; int group_id = -1; int fapl_id = -1; H5G_info_t ginfo; long size; //Create file 1. This file will use original format groups. try { file = new H5File(FILE1, FileFormat.CREATE); file.open(); } catch (Exception e) { e.printStackTrace(); } //Create a group in the file1. try { grp = (H5Group)file.createGroup(GROUP, null); group_id = grp.open(); } catch (Exception e) { e.printStackTrace(); } // Obtain the group info and print the group storage type. try { if(group_id >= 0) { ginfo = H5.H5Gget_info(group_id); System.out.print("Group storage type for " + FILE1 + " is: "); switch (H5G_storage.get(ginfo.storage_type)) { case H5G_STORAGE_TYPE_COMPACT: System.out.println("H5G_STORAGE_TYPE_COMPACT"); // New compact format break; case H5G_STORAGE_TYPE_DENSE: System.out.println("H5G_STORAGE_TYPE_DENSE"); //New dense (indexed) format break; case H5G_STORAGE_TYPE_SYMBOL_TABLE: System.out.println("H5G_STORAGE_TYPE_SYMBOL_TABLE"); //Original format } } } catch(Exception e) { e.printStackTrace(); } // Close the group. try { if (group_id >= 0) grp.close(group_id); } catch (Exception e) { e.printStackTrace(); } //close the file 1. try { file.close(); } catch (Exception e) { e.printStackTrace(); } // Re-open file 1. Need to get the correct file size. try { file = new H5File(FILE1, FileFormat.READ); file_id = file.open(); } catch (Exception e) { e.printStackTrace(); } //Obtain and print the file size. try { if(file_id >= 0) { size = H5.H5Fget_filesize (file_id); System.out.println ("File size for " + FILE1 + " is: " + size + " bytes" ); } } catch(Exception e) { e.printStackTrace(); } //Close FILE1. try { file.close(); } catch (Exception e) { e.printStackTrace(); } //Set file access property list to allow the latest file format. // This will allow the library to create new compact format groups. try { fapl_id = H5.H5Pcreate (HDF5Constants.H5P_FILE_ACCESS); if(fapl_id >= 0) H5.H5Pset_libver_bounds (fapl_id, HDF5Constants.H5F_LIBVER_LATEST, HDF5Constants.H5F_LIBVER_LATEST); } catch (Exception e) { e.printStackTrace(); } System.out.println(); //Create file 2 using the new file access property list. try { file = new H5File(FILE2, FileFormat.CREATE); file.open(fapl_id); } catch (Exception e) { e.printStackTrace(); } //Create group in file2. try { grp = (H5Group)file.createGroup(GROUP, null); group_id = grp.open(); } catch (Exception e) { e.printStackTrace(); } //Obtain the group info and print the group storage type. try { if(group_id >= 0) { ginfo = H5.H5Gget_info(group_id); System.out.print("Group storage type for " + FILE2 + " is: "); switch (H5G_storage.get(ginfo.storage_type)) { case H5G_STORAGE_TYPE_COMPACT: System.out.println("H5G_STORAGE_TYPE_COMPACT"); //New compact format break; case H5G_STORAGE_TYPE_DENSE: System.out.println("H5G_STORAGE_TYPE_DENSE"); // New dense (indexed) format break; case H5G_STORAGE_TYPE_SYMBOL_TABLE: System.out.println("H5G_STORAGE_TYPE_SYMBOL_TABLE"); // Original format } } } catch (Exception e) { e.printStackTrace(); } // Close the group. try { if (group_id >= 0) grp.close(group_id); } catch (Exception e) { e.printStackTrace(); } //close the file 2. try { file.close(); } catch (Exception e) { e.printStackTrace(); } //Re-open file 2. Needed to get the correct file size. try { file = new H5File(FILE2, FileFormat.READ); file_id = file.open(fapl_id); } catch (Exception e) { e.printStackTrace(); } //Obtain and print the file size. try { if(file_id >= 0) { size = H5.H5Fget_filesize (file_id); System.out.println ("File size for " + FILE2 + " is: " + size + " bytes"); } } catch (Exception e) { e.printStackTrace(); } //Close FILE2. try { file.close(); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_G_Compact.CreateGroup(); } } hdf-java-2.11.0/examples/groups/H5Ex_G_Intermediate.java0000644002344600011330000000772112326542262021275 0ustar byrnhdf/************************************************************ This example shows how to create intermediate groups with a single call to H5Gcreate. This file is intended for use with HDF5 Library version 1.8 ************************************************************/ package examples.groups; import java.util.ArrayList; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.callbacks.H5O_iterate_cb; import ncsa.hdf.hdf5lib.callbacks.H5O_iterate_t; import ncsa.hdf.hdf5lib.structs.H5O_info_t; public class H5Ex_G_Intermediate { private static String FILE = "H5Ex_G_Intermediate.h5"; private void CreateGroup() throws Exception { int file_id = -1; int group_id = -1; int gcpl_id = -1; try { // Create a new file_id using the default properties. file_id = H5.H5Fcreate(FILE, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); //Create group_id creation property list and set it to allow creation of intermediate group_ids. gcpl_id = H5.H5Pcreate (HDF5Constants.H5P_LINK_CREATE); H5.H5Pset_create_intermediate_group(gcpl_id, true); /* * Create the group_id /G1/G2/G3. Note that /G1 and /G1/G2 do not * exist yet. This call would cause an error if we did not use the * previously created property list. */ group_id = H5.H5Gcreate(file_id, "/G1/G2/G3", gcpl_id, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); //Print all the objects in the file_ids to show that intermediate group_ids have been created. System.out.println("Objects in the file_id:"); //H5O_iterate_t iter_data = null; H5O_iterate_t iter_data = new H5O_iter_data(); H5O_iterate_cb iter_cb = new H5O_iter_callback(); H5.H5Ovisit(file_id, HDF5Constants.H5_INDEX_NAME, HDF5Constants.H5_ITER_NATIVE, iter_cb, iter_data); } catch (Exception e) { e.printStackTrace(); } finally{ //Close and release resources. if (gcpl_id >= 0) H5.H5Pclose (gcpl_id); if (group_id >= 0) H5.H5Gclose (group_id); if(file_id >= 0) H5.H5Fclose (file_id); } } public static void main(String[] args) { try { (new H5Ex_G_Intermediate()).CreateGroup(); } catch(Exception ex) { ex.printStackTrace(); } } private class idata { public String link_name = null; public int link_type = -1; idata(String name, int type) { this.link_name = name; this.link_type = type; } } private class H5O_iter_data implements H5O_iterate_t { public ArrayList iterdata = new ArrayList(); } private class H5O_iter_callback implements H5O_iterate_cb { public int callback(int group, String name, H5O_info_t info, H5O_iterate_t op_data) { idata id = new idata(name, info.type); ((H5O_iter_data)op_data).iterdata.add(id); System.out.print("/"); /* Print root group in object path */ //Check if the current object is the root group, and if not print the full path name and type. if (name.charAt(0) == '.') /* Root group, do not print '.' */ System.out.println(" (Group)"); else if(info.type == HDF5Constants.H5O_TYPE_GROUP ) System.out.println(name + " (Group)" ); else if(info.type == HDF5Constants.H5O_TYPE_DATASET) System.out.println(name + " (Dataset)"); else if (info.type == HDF5Constants.H5O_TYPE_NAMED_DATATYPE ) System.out.println(name + " (Datatype)"); else System.out.println(name + " (Unknown)"); return 0; } } } hdf-java-2.11.0/examples/groups/h5ex_g_iterate.h50000644002344600011330000000556011115572274020053 0ustar byrnhdf‰HDF  ÿÿÿÿÿÿÿÿp ÿÿÿÿÿÿÿÿ €`HEAP(€G1DS1DT1L1ØTREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ@  €`HEAP P TREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ  ðÐSNODˆ¨ðÐ ø ( ÿÿÿÿÿÿÿÿƒüNHh@  ( ˜ÍüNHhSNODøDS2hdf-java-2.11.0/examples/groups/H5Ex_G_Create.java0000644002344600011330000000340112326542262020055 0ustar byrnhdf/************************************************************ This example shows how to create, open, and close a group. This file is intended for use with HDF5 Library verion 1.6 ************************************************************/ package examples.groups; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; public class H5Ex_G_Create { private static String FILENAME = "H5Ex_G_Create.h5"; private static String GROUPNAME = "G1"; private static void CreateGroup() { int file_id = -1; int group_id = -1; // Create a new file using default properties. try { file_id = H5.H5Fcreate(FILENAME, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Create a group in the file. try { if (file_id >= 0) group_id = H5.H5Gcreate(file_id, "/" + GROUPNAME, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Close the group. The handle "group" can no longer be used. try { if (group_id >= 0) H5.H5Gclose(group_id); } catch (Exception e) { e.printStackTrace(); } // Re-open the group, obtaining a new handle. try { if (file_id >= 0) group_id = H5.H5Gopen(file_id, "/" + GROUPNAME, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } // Close the group. try { if (group_id >= 0) H5.H5Gclose(group_id); } catch (Exception e) { e.printStackTrace(); } // Close the file. try { if (file_id >= 0) H5.H5Fclose(file_id); } catch (Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_G_Create.CreateGroup(); } } hdf-java-2.11.0/examples/groups/H5Ex_G_Phase.java0000644002344600011330000001611612326542262017721 0ustar byrnhdf/************************************************************ This example shows how to set the conditions for conversion between compact and dense (indexed) groups. This file is intended for use with HDF5 Library version 1.8 ************************************************************/ package examples.groups; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.structs.H5G_info_t; public class H5Ex_G_Phase { private static String FILE = "H5Ex_G_Phase.h5"; private static int MAX_GROUPS = 7; private static int MAX_COMPACT = 5; private static int MIN_DENSE = 3; enum H5G_storage { H5G_STORAGE_TYPE_UNKNOWN(-1), H5G_STORAGE_TYPE_SYMBOL_TABLE(0), H5G_STORAGE_TYPE_COMPACT(1), H5G_STORAGE_TYPE_DENSE(2); private static final Map lookup = new HashMap(); static { for (H5G_storage s : EnumSet.allOf(H5G_storage.class)) lookup.put(s.getCode(), s); } private int code; H5G_storage(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5G_storage get(int code) { return lookup.get(code); } } private static void CreateGroup() { int file_id = -1; int group_id = -1; int subgroup_id = -1; int fapl_id = -1; int gcpl_id = -1; H5G_info_t ginfo; String name = "G0"; // Name of subgroup_id int i; //Set file access property list to allow the latest file format.This will allow the library to create new format groups. try { fapl_id = H5.H5Pcreate(HDF5Constants.H5P_FILE_ACCESS); if(fapl_id >= 0) H5.H5Pset_libver_bounds (fapl_id, HDF5Constants.H5F_LIBVER_LATEST, HDF5Constants.H5F_LIBVER_LATEST); } catch (Exception e) { e.printStackTrace(); } //Create group access property list and set the phase change conditions. try { gcpl_id = H5.H5Pcreate(HDF5Constants.H5P_GROUP_CREATE); if(gcpl_id >= 0) H5.H5Pset_link_phase_change (gcpl_id, MAX_COMPACT, MIN_DENSE); } catch (Exception e) { e.printStackTrace(); } //Create a new file using the default properties. try { if(fapl_id >= 0) file_id = H5.H5Fcreate (FILE, HDF5Constants.H5F_ACC_TRUNC, HDF5Constants.H5P_DEFAULT, fapl_id); } catch (Exception e) { e.printStackTrace(); } //Create primary group. try { if((file_id >= 0) && (gcpl_id >= 0)) group_id = H5.H5Gcreate(file_id, name, HDF5Constants.H5P_DEFAULT, gcpl_id, HDF5Constants.H5P_DEFAULT); } catch (Exception e) { e.printStackTrace(); } //Add subgroups to "group" one at a time, print the storage type for "group" after each subgroup is created. for (i = 1; i <= MAX_GROUPS; i++) { //Define the subgroup name and create the subgroup. char append = (char) (((char)i) + '0'); name = name + append; /* G1, G2, G3 etc. */ try { if(group_id >= 0) { subgroup_id = H5.H5Gcreate(group_id, name, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT, HDF5Constants.H5P_DEFAULT); H5.H5Gclose (subgroup_id); } } catch (Exception e) { e.printStackTrace(); } //Obtain the group info and print the group storage type try { if(group_id >= 0) { ginfo = H5.H5Gget_info (group_id); System.out.print(ginfo.nlinks + " Group"+(ginfo.nlinks == 1 ? " " : "s") + ": Storage type is "); switch (H5G_storage.get(ginfo.storage_type)) { case H5G_STORAGE_TYPE_COMPACT: System.out.println("H5G_STORAGE_TYPE_COMPACT"); // New compact format break; case H5G_STORAGE_TYPE_DENSE: System.out.println("H5G_STORAGE_TYPE_DENSE"); //New dense (indexed) format break; case H5G_STORAGE_TYPE_SYMBOL_TABLE: System.out.println("H5G_STORAGE_TYPE_SYMBOL_TABLE"); //Original format } } } catch (Exception e) { e.printStackTrace(); } } System.out.println(); //Delete subgroups one at a time, print the storage type for "group" after each subgroup is deleted. for (i = MAX_GROUPS; i >= 1; i--) { //Define the subgroup name and delete the subgroup. try { H5.H5Ldelete(group_id, name, HDF5Constants.H5P_DEFAULT); } catch(Exception e) { e.printStackTrace(); } name = name.substring(0, i+1); //Obtain the group info and print the group storage type try { if(group_id >= 0){ ginfo = H5.H5Gget_info(group_id); System.out.print(ginfo.nlinks + " Group"+(ginfo.nlinks == 1 ? " " : "s") + ": Storage type is "); switch (H5G_storage.get(ginfo.storage_type)) { case H5G_STORAGE_TYPE_COMPACT: System.out.println("H5G_STORAGE_TYPE_COMPACT"); // New compact format break; case H5G_STORAGE_TYPE_DENSE: System.out.println("H5G_STORAGE_TYPE_DENSE"); //New dense (indexed) format break; case H5G_STORAGE_TYPE_SYMBOL_TABLE: System.out.println("H5G_STORAGE_TYPE_SYMBOL_TABLE"); //Original format } } } catch(Exception e) { e.printStackTrace(); } } //Close and release resources try { if(fapl_id >= 0) H5.H5Pclose (fapl_id); } catch(Exception e) { e.printStackTrace(); } try { if(gcpl_id >= 0) H5.H5Pclose (gcpl_id); } catch(Exception e) { e.printStackTrace(); } //Close the group try { if(group_id >= 0) H5.H5Gclose (group_id); } catch(Exception e) { e.printStackTrace(); } //Close the file try { if(file_id >= 0) H5.H5Fclose (file_id); } catch(Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5Ex_G_Phase.CreateGroup(); } } hdf-java-2.11.0/examples/groups/H5ObjectEx_G_Visit.java0000644002344600011330000001210712326542262021102 0ustar byrnhdf/************************************************************ This example shows how to recursively traverse a file using H5Ovisit and H5Lvisit. The program prints all of the objects in the file specified in FILE, then prints all of the links in that file. The default file used by this example implements the structure described in the User's Guide, chapter 4, figure 26. This file is intended for use with HDF5 Library version 1.8 ************************************************************/ package examples.groups; import java.util.ArrayList; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.callbacks.H5L_iterate_cb; import ncsa.hdf.hdf5lib.callbacks.H5L_iterate_t; import ncsa.hdf.hdf5lib.callbacks.H5O_iterate_cb; import ncsa.hdf.hdf5lib.callbacks.H5O_iterate_t; import ncsa.hdf.hdf5lib.structs.H5L_info_t; import ncsa.hdf.hdf5lib.structs.H5O_info_t; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5File; public class H5ObjectEx_G_Visit { private static String FILE = "groups/h5ex_g_visit.h5"; public static void main(String[] args) { try { (new H5ObjectEx_G_Visit()).VisitGroup(); } catch(Exception ex) { ex.printStackTrace(); } } private void VisitGroup() throws Exception { H5File file = null; int file_id = -1; try { //Open file file = new H5File(FILE, FileFormat.READ); file_id = file.open(); //Begin iteration using H5Ovisit System.out.println("Objects in the file:"); H5O_iterate_t iter_data = new H5O_iter_data(); H5O_iterate_cb iter_cb = new H5O_iter_callback(); H5.H5Ovisit(file_id, HDF5Constants.H5_INDEX_NAME, HDF5Constants.H5_ITER_NATIVE, iter_cb, iter_data); System.out.println(); //Repeat the same process using H5Lvisit H5L_iterate_t iter_data2 = new H5L_iter_data(); H5L_iterate_cb iter_cb2 = new H5L_iter_callback(); System.out.println ("Links in the file:"); H5.H5Lvisit(file_id, HDF5Constants.H5_INDEX_NAME, HDF5Constants.H5_ITER_NATIVE, iter_cb2, iter_data2); } catch (Exception e) { e.printStackTrace(); } finally { file.close(); } } /************************************************************ * Operator function for H5Lvisit. This function simply * retrieves the info for the object the current link points * to, and calls the operator function for H5Ovisit. ************************************************************/ private class idata { public String link_name = null; public int link_type = -1; idata(String name, int type) { this.link_name = name; this.link_type = type; } } private class H5L_iter_data implements H5L_iterate_t { public ArrayList iterdata = new ArrayList(); } private class H5L_iter_callback implements H5L_iterate_cb { public int callback(int group, String name, H5L_info_t info, H5L_iterate_t op_data) { idata id = new idata(name, info.type); ((H5L_iter_data)op_data).iterdata.add(id); H5O_info_t infobuf; int ret = 0; try { //Get type of the object and display its name and type. The name of the object is passed to this function by the Library. infobuf = H5.H5Oget_info_by_name (group, name, HDF5Constants.H5P_DEFAULT); H5O_iterate_cb iter_cbO = new H5O_iter_callback(); H5O_iterate_t iter_dataO = new H5O_iter_data(); ret=iter_cbO.callback(group, name, infobuf, iter_dataO); } catch (Exception e) { e.printStackTrace(); } return ret; } } private class H5O_iter_data implements H5O_iterate_t { public ArrayList iterdata = new ArrayList(); } private class H5O_iter_callback implements H5O_iterate_cb { public int callback(int group, String name, H5O_info_t info, H5O_iterate_t op_data) { idata id = new idata(name, info.type); ((H5O_iter_data)op_data).iterdata.add(id); System.out.print("/"); /* Print root group in object path */ //Check if the current object is the root group, and if not print the full path name and type. if (name.charAt(0) == '.') /* Root group, do not print '.' */ System.out.println(" (Group)"); else if(info.type == HDF5Constants.H5O_TYPE_GROUP ) System.out.println(name + " (Group)" ); else if(info.type == HDF5Constants.H5O_TYPE_DATASET) System.out.println(name + " (Dataset)"); else if (info.type == HDF5Constants.H5O_TYPE_NAMED_DATATYPE ) System.out.println(name + " (Datatype)"); else System.out.println(name + " (Unknown)"); return 0; } } } hdf-java-2.11.0/examples/groups/H5ObjectEx_G_Corder.java0000644002344600011330000000600012326542262021215 0ustar byrnhdfpackage examples.groups; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.structs.H5G_info_t; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; public class H5ObjectEx_G_Corder { private static String FILE = "H5ObjectEx_G_Corder.h5"; private static void CreateGroup() throws Exception { H5File file = null; H5Group grp = null; int group_id = -1; int gcpl_id = -1; int status; H5G_info_t ginfo; int i; String name; try { // Create a new file using default properties. file = new H5File(FILE, FileFormat.CREATE); file.open(); // Create group creation property list and enable link creation order tracking. gcpl_id = H5.H5Pcreate (HDF5Constants.H5P_GROUP_CREATE); status = H5.H5Pset_link_creation_order(gcpl_id, HDF5Constants.H5P_CRT_ORDER_TRACKED + HDF5Constants.H5P_CRT_ORDER_INDEXED); // Create primary group using the property list. if (status >= 0) { grp = (H5Group) file.createGroup("index_group", null, HDF5Constants.H5P_DEFAULT, gcpl_id); group_id = grp.open(); } try { /* * Create subgroups in the primary group. These will be tracked * by creation order. Note that these groups do not have to have * the creation order tracking property set. */ file.createGroup("H", grp); file.createGroup("D", grp); file.createGroup("F", grp); file.createGroup("5", grp); // Get group info. ginfo = H5.H5Gget_info(group_id); //Traverse links in the primary group using alphabetical indices (H5_INDEX_NAME). System.out.println("Traversing group using alphabetical indices:"); for (i = 0; i < ginfo.nlinks; i++) { //Retrieve the name of the ith link in a group name = H5.H5Lget_name_by_idx(group_id, ".", HDF5Constants.H5_INDEX_NAME, HDF5Constants.H5_ITER_INC, i, HDF5Constants.H5P_DEFAULT); System.out.println("Index " + i + ": " + name); } //Traverse links in the primary group by creation order (H5_INDEX_CRT_ORDER). System.out.println("Traversing group using creation order indices:"); for (i = 0; i < ginfo.nlinks; i++) { //Retrieve the name of the ith link in a group name = H5.H5Lget_name_by_idx(group_id, ".", HDF5Constants.H5_INDEX_CRT_ORDER, HDF5Constants.H5_ITER_INC, i, HDF5Constants.H5P_DEFAULT); System.out.println("Index " + i + ": " + name); } } catch (Exception e) { e.printStackTrace(); } } catch (Exception e) { e.printStackTrace(); } finally { // Close and release resources. // Group property lists closed during createGroup if (group_id >= 0) grp.close (group_id); file.close(); } } public static void main(String[] args) { try { H5ObjectEx_G_Corder.CreateGroup(); } catch(Exception ex) { ex.printStackTrace(); } } } hdf-java-2.11.0/examples/groups/H5ObjectEx_G_Intermediate.java0000644002344600011330000000752612326542262022427 0ustar byrnhdf/************************************************************ This example shows how to create intermediate groups with a single call to H5Gcreate. This file is intended for use with HDF5 Library version 1.8 ************************************************************/ package examples.groups; import java.util.ArrayList; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.callbacks.H5O_iterate_cb; import ncsa.hdf.hdf5lib.callbacks.H5O_iterate_t; import ncsa.hdf.hdf5lib.structs.H5O_info_t; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.h5.H5File; public class H5ObjectEx_G_Intermediate { private static String FILE = "H5ObjectEx_G_Intermediate.h5"; private void CreateGroup() throws Exception { H5File file = null; int file_id = -1; int lcpl_id = -1; try { // Create a new file_id using the default properties. file = new H5File(FILE, FileFormat.CREATE); file_id = file.open(); //Create group_id creation property list and set it to allow creation of intermediate group_ids. lcpl_id = H5.H5Pcreate (HDF5Constants.H5P_LINK_CREATE); H5.H5Pset_create_intermediate_group(lcpl_id, true); /* * Create the group_id /G1/G2/G3. Note that /G1 and /G1/G2 do not * exist yet. This call would cause an error if we did not use the * previously created property list. */ file.createGroup("/G1/G2/G3", null, lcpl_id); //Print all the objects in the file_ids to show that intermediate group_ids have been created. System.out.println("Objects in the file_id:"); //H5O_iterate_t iter_data = null; H5O_iterate_t iter_data = new H5O_iter_data(); H5O_iterate_cb iter_cb = new H5O_iter_callback(); H5.H5Ovisit(file_id, HDF5Constants.H5_INDEX_NAME, HDF5Constants.H5_ITER_NATIVE, iter_cb, iter_data); } catch (Exception e) { e.printStackTrace(); } finally{ //Close and release resources. if (lcpl_id >= 0) H5.H5Pclose (lcpl_id); file.close(); } } public static void main(String[] args) { try { (new H5ObjectEx_G_Intermediate()).CreateGroup(); } catch(Exception ex) { ex.printStackTrace(); } } private class idata { public String link_name = null; public int link_type = -1; idata(String name, int type) { this.link_name = name; this.link_type = type; } } private class H5O_iter_data implements H5O_iterate_t { public ArrayList iterdata = new ArrayList(); } private class H5O_iter_callback implements H5O_iterate_cb { public int callback(int group, String name, H5O_info_t info, H5O_iterate_t op_data) { idata id = new idata(name, info.type); ((H5O_iter_data)op_data).iterdata.add(id); System.out.print("/"); /* Print root group in object path */ //Check if the current object is the root group, and if not print the full path name and type. if (name.charAt(0) == '.') /* Root group, do not print '.' */ System.out.println(" (Group)"); else if(info.type == HDF5Constants.H5O_TYPE_GROUP ) System.out.println(name + " (Group)" ); else if(info.type == HDF5Constants.H5O_TYPE_DATASET) System.out.println(name + " (Dataset)"); else if (info.type == HDF5Constants.H5O_TYPE_NAMED_DATATYPE ) System.out.println(name + " (Datatype)"); else System.out.println(name + " (Unknown)"); return 0; } } } hdf-java-2.11.0/examples/groups/H5ObjectEx_G_Phase.java0000644002344600011330000001565712326542262021061 0ustar byrnhdf/************************************************************ This example shows how to set the conditions for conversion between compact and dense (indexed) groups. This file is intended for use with HDF5 Library version 1.8 ************************************************************/ package examples.groups; import java.util.EnumSet; import java.util.HashMap; import java.util.Map; import ncsa.hdf.hdf5lib.H5; import ncsa.hdf.hdf5lib.HDF5Constants; import ncsa.hdf.hdf5lib.exceptions.HDF5Exception; import ncsa.hdf.hdf5lib.structs.H5G_info_t; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.h5.H5File; import ncsa.hdf.object.h5.H5Group; public class H5ObjectEx_G_Phase { private static String FILE = "H5ObjectEx_G_Phase.h5"; private static int MAX_GROUPS = 7; private static int MAX_COMPACT = 5; private static int MIN_DENSE = 3; enum H5G_storage { H5G_STORAGE_TYPE_UNKNOWN(-1), H5G_STORAGE_TYPE_SYMBOL_TABLE(0), H5G_STORAGE_TYPE_COMPACT(1), H5G_STORAGE_TYPE_DENSE(2); private static final Map lookup = new HashMap(); static { for (H5G_storage s : EnumSet.allOf(H5G_storage.class)) lookup.put(s.getCode(), s); } private int code; H5G_storage(int layout_type) { this.code = layout_type; } public int getCode() { return this.code; } public static H5G_storage get(int code) { return lookup.get(code); } } private static void CreateGroup() { H5File file = null; H5Group grp = null; int group_id = -1; int fapl_id = -1; int gcpl_id = -1; H5G_info_t ginfo; String name = "G0"; // Name of subgroup_id int i; //Set file access property list to allow the latest file format.This will allow the library to create new format groups. try { fapl_id = H5.H5Pcreate(HDF5Constants.H5P_FILE_ACCESS); if(fapl_id >= 0) H5.H5Pset_libver_bounds (fapl_id, HDF5Constants.H5F_LIBVER_LATEST, HDF5Constants.H5F_LIBVER_LATEST); } catch (Exception e) { e.printStackTrace(); } //Create a new file using the default properties. try { if(fapl_id >= 0) { file = new H5File(FILE, FileFormat.CREATE); file.open(fapl_id); } } catch (Exception e) { e.printStackTrace(); } //Create primary group. try { //Create group creation property list and set the phase change conditions. gcpl_id = file.createGcpl(0, MAX_COMPACT, MIN_DENSE); if(gcpl_id >= 0) { grp = (H5Group) file.createGroup(name, null, HDF5Constants.H5P_DEFAULT, gcpl_id); gcpl_id = -1; //Create closes the group creation property list group_id = grp.open(); } } catch (Exception e) { e.printStackTrace(); } //Add subgroups to "group" one at a time, print the storage type for "group" after each subgroup is created. for (i = 1; i <= MAX_GROUPS; i++) { //Define the subgroup name and create the subgroup. char append = (char) (((char)i) + '0'); name = name + append; /* G1, G2, G3 etc. */ try { file.createGroup(name, grp); } catch (Exception e) { e.printStackTrace(); } //Obtain the group info and print the group storage type try { if(group_id >= 0) { ginfo = H5.H5Gget_info (group_id); System.out.print(ginfo.nlinks + " Group"+(ginfo.nlinks == 1 ? " " : "s") + ": Storage type is "); switch (H5G_storage.get(ginfo.storage_type)) { case H5G_STORAGE_TYPE_COMPACT: System.out.println("H5G_STORAGE_TYPE_COMPACT"); // New compact format break; case H5G_STORAGE_TYPE_DENSE: System.out.println("H5G_STORAGE_TYPE_DENSE"); //New dense (indexed) format break; case H5G_STORAGE_TYPE_SYMBOL_TABLE: System.out.println("H5G_STORAGE_TYPE_SYMBOL_TABLE"); //Original format } } } catch (Exception e) { e.printStackTrace(); } } System.out.println(); //Delete subgroups one at a time, print the storage type for "group" after each subgroup is deleted. for (i = MAX_GROUPS; i >= 1; i--) { //Define the subgroup name and delete the subgroup. try { Group subgrp = (Group) file.get("/G0/" + name); if(subgrp == null) throw new HDF5Exception( "The subgroup - "+name+" - object could not be found."); file.delete(subgrp); } catch(Exception e) { e.printStackTrace(); } name = name.substring(0, i+1); //Obtain the group info and print the group storage type try { if(group_id >= 0){ ginfo = H5.H5Gget_info(group_id); System.out.print(ginfo.nlinks + " Group"+(ginfo.nlinks == 1 ? " " : "s") + ": Storage type is "); switch (H5G_storage.get(ginfo.storage_type)) { case H5G_STORAGE_TYPE_COMPACT: System.out.println("H5G_STORAGE_TYPE_COMPACT"); // New compact format break; case H5G_STORAGE_TYPE_DENSE: System.out.println("H5G_STORAGE_TYPE_DENSE"); //New dense (indexed) format break; case H5G_STORAGE_TYPE_SYMBOL_TABLE: System.out.println("H5G_STORAGE_TYPE_SYMBOL_TABLE"); //Original format } } } catch(Exception e) { e.printStackTrace(); } } //Close and release resources try { if(fapl_id >= 0) H5.H5Pclose (fapl_id); } catch(Exception e) { e.printStackTrace(); } //Close the group try { if(group_id >= 0) grp.close (group_id); } catch(Exception e) { e.printStackTrace(); } //Close the file try { file.close(); } catch(Exception e) { e.printStackTrace(); } } public static void main(String[] args) { H5ObjectEx_G_Phase.CreateGroup(); } } hdf-java-2.11.0/configure.in0000644002344600011330000005364012326542262014076 0ustar byrnhdfdnl****************************************************************************/ dnl* NCSA HDF * dnl* National Comptational Science Alliance * dnl* University of Illinois at Urbana-Champaign * dnl* 605 E. Springfield, Champaign IL 61820 * dnl* * dnl* For conditions of distribution and use, see the accompanying * dnl* hdf-java/COPYING file. * dnl* * dnl****************************************************************************/ dnl Process this file with autoconf to produce a configure script. AC_INIT(native/hdflib/hdfImp.c) AC_CONFIG_AUX_DIR(./config) dnl ---------------------------------------------------------------------- dnl Some platforms have broken tr, basename, and/or xargs programs. Check dnl that it actually does what it's supposed to do. Catch this early dnl since configure relies upon tr heavily and there's no use continuing dnl if it's broken. dnl AC_MSG_CHECKING([if tr works]) TR_TEST="`echo Test | tr 'a-z,' 'A-Z '`" if test $TR_TEST != "TEST"; then AC_MSG_ERROR([tr program doesn't work]) else AC_MSG_RESULT([yes]) fi AC_PROG_AWK dnl ---------------------------------------------------------------------- dnl Some platforms have broken 'expr' programs. Check dnl that it actually does what it's supposed to do. Catch this early dnl since configure relies upon 'expr' to process its arguments, and dnl there isn't much use continuging if it's broken. dnl AC_MSG_CHECKING([if expr works]) yyy_ok="yes" yyy_option="$*" for yyy_option do yyy_opt=`expr "x$yyy_option" : 'x.*=.*'` if test "$yyy_opt" != "0"; then zzz_opt=`echo x$yyy_option | awk '{print [index($0,"=")]}'` if test "$yyy_opt" != "$zzz_opt"; then dnl AC_MSG_WARN([$yyy_option: option is empty?]) dnl yyy_ok="maybe" dnl else yyy_optarg=`expr "x$yyy_option" : 'x[[^=]]*=\(.*\)'` if test -z "$yyy_optarg"; then AC_MSG_RESULT([option $yyy_option too long, configure will fail]) yyy_ok="no" fi fi fi done if test "$yyy_ok" != "yes"; then echo $yyy_ok AC_MSG_ERROR([expr program doesn't work]) else AC_MSG_RESULT([yes]) fi dnl Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_HEADER_STDC AC_CHECK_LIB(m,ceil) if test "`uname`" = "SunOS" -o "`uname -sr`" = "HP-UX B.11.00"; then dnl ...for Solaris and hdf4 AC_CHECK_LIB(nsl, xdr_int) fi AC_PREFIX_DEFAULT("") AC_PATH_PROG(RM,rm,\"\",,) AC_PATH_PROG(FIND,find,\"\",,) dnl dnl Some platform specific settings for different Java implementations dnl AC_CANONICAL_SYSTEM TARGET=$target echo "FYI the target here is: "$target case $target in alpha-dec-osf*.*) TARGETLIB="alpha" LD=$CC; LDOPT="-pthread -shared"; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT="-pthread -shared"; COPTNOSHARED=; ;; *aix*) TARGETLIB="aix" LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT=-G; COPTNOSHARED=; ;; *-*-solaris2*) TARGETLIB="solaris" LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT=-G; COPTNOSHARED=; ;; mips*-sgi-irix6*) TARGETLIB="irix" LD=ld; LLEXT="a"; JSLEXT="so"; ;; x86_64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; TARGETLIB="linux" SLEXT="so"; LLEXT="a"; dnl the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared -Dx86_64 -fPIC" ; ;; ia64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; TARGETLIB="linux" SLEXT="so"; LLEXT="a"; dnl the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared -Dia64 -fPIC" ; ;; *-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; TARGETLIB="linux" SLEXT="so"; LLEXT="a"; dnl the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared -DUNIX386" ; ;; *-freebsd*) LD=$CC; LDOPT=-shared; TARGETLIB="freebsd" SLEXT="so"; LLEXT="a"; dnl the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared" ; ;; *powerpc-apple*) LD=$CC; LDOPT=-bundle; JSLEXT="jnilib"; LLEXT="a"; SLEXT="dylib"; ;; *) LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; TARGETLIB="$target" esac dnl ---------------- dnl Check for the external compression libraries required by the dnl HDF libraries. dnl dnl Note: we need to find static libraries, so we can't rely on dnl autoconf for these detections. dnl AC_MSG_CHECKING([gzip compression]) HAVE_ZLIB="no" withval=""; AC_SUBST(ZLIB) ZLIB="" AC_ARG_WITH(libz,[ --with-libz=LIB Path to the gzip library (required if not in default path)],,) case "$withval" in yes) ZLIB="" HAVE_ZLIB="no" ;; no) ZLIB="" HAVE_ZLIB="suppressed" ;; *) if test -n "$withval" ; then z_lib="`echo $withval |cut -f2 -d, -s`" ZLIB=$z_lib"/libz."$LLEXT HAVE_ZLIB="yes" else ZLIB="" HAVE_ZLIB="no" fi ;; esac if test -n "$ZLIB"; then LIBS="$LIBS $ZLIB" HAVE_ZLIB="yes" fi AC_MSG_RESULT([$HAVE_ZLIB]) if test $HAVE_ZLIB = "yes"; then AC_MSG_RESULT([zlib found: $ZLIB]); fi AC_MSG_CHECKING([jpeg compression]) HAVE_JPEG="no" withval=""; AC_SUBST(JPEGLIB) JPEGLIB="" AC_ARG_WITH(libjpeg,[ --with-libjpeg=LIB Path to the jpeg library (required if not in default path)],,) case "$withval" in yes) HAVE_JPEG="no" ;; no) JPEGLIB="" HAVE_JPEG="suppressed" ;; *) if test -n "$withval" ; then jpeg_lib="`echo $withval |cut -f2 -d, -s`" JPEGLIB=$jpeg_lib"/libjpeg."$LLEXT dnl AC_MSG_RESULT([jpeg found: $JPEGLIB]); HAVE_JPEG="yes" else HAVE_JPEG="no" fi ;; esac if test -n "$JPEGLIB"; then LIBS="$LIBS $JPEGLIB" HAVE_JPEG="yes" fi AC_MSG_RESULT([$HAVE_JPEG]) if test $HAVE_JPEG = "yes"; then AC_MSG_RESULT([jpeg found: $JPEGLIB]); fi AC_MSG_CHECKING([szip compression]) HAVE_SZIP="no" withval=""; AC_SUBST(SZLIB) SZLIB="" AC_ARG_WITH(libsz,[ --with-libsz=LIB Path to the szip library (required if not in default path)],,) case "$withval" in yes) SZLIB="" HAVE_SZIP="no" ;; no) SZLIB="" HAVE_SZIP="suppressed" ;; *) if test -n "$withval" ; then sz_lib="`echo $withval |cut -f2 -d, -s`" SZLIB=$sz_lib"/libsz."$LLEXT dnl AC_MSG_RESULT([szlib found: $SZLIB]); HAVE_SZIP="yes" else SZLIB="" HAVE_SZIP="no" fi ;; esac if test -n "$SZLIB"; then LIBS="$LIBS $SZLIB" HAVE_SZIP="yes" fi AC_MSG_RESULT([$HAVE_SZIP]) if test $HAVE_SZIP = "yes"; then AC_MSG_RESULT([szlib found: $SZLIB]); fi dnl dnl Look for HDF4 library, if selected. dnl Must find static libraries. dnl AC_MSG_CHECKING([HDF4 library]) HAVE_HDF4="no" withval=""; AC_SUBST(HDF4LIB) HDF4LIB="" AC_ARG_WITH(hdf4,[ --with-hdf4=LIB Path to the hdf library (required if not in default path)],,) case "$withval" in yes) dnl AC_MSG_ERROR(HDF4 library needed for compilation.) HDF4LIB="" HAVE_HDF4="no" ;; no) HDF4LIB="" HAVE_HDF4="suppressed" ;; *) if test -n "$withval" ; then hdf4_inc="`echo $withval |cut -f1 -d,`" if test -n "$hdf4_inc"; then HDF4INC="$hdf4_inc" fi hdf4_lib="`echo $withval |cut -f2 -d, -s`" if test -n "$hdf4_lib"; then HDF4LIB=$hdf4_lib fi HAVE_HDF4="yes" else HDF4LIB="" HAVE_HDF4="no" fi ;; esac if test -n "$HDF4LIB"; then LIBS="$HDF4LIB/libdf.$LLEXT $HDF4LIB/libmfhdf.$LLEXT $LIBS" HAVE_HDF4="yes" fi AC_MSG_RESULT([$HAVE_HDF4]) if test $HAVE_HDF4 = "yes"; then AC_MSG_RESULT([HDF4 found: $HDF4LIB]); fi dnl dnl Check that the libraries that HDF4 needs have been found dnl dnl Must stop here if something is missing. dnl if test "$HAVE_HDF4" = "yes"; then AC_MSG_CHECKING([dependencies for HDF4 library]) needjpg=`grep 'define H4_HAVE_LIBJPEG 1' $HDF4INC/h4config.h` needgzip=`grep 'define H4_HAVE_LIBZ 1' $HDF4INC/h4config.h` needszip=`grep 'define H4_HAVE_LIBSZ 1' $HDF4INC/h4config.h` if test -n "$needjpg"; then if test "$HAVE_JPEG" != "yes"; then AC_MSG_ERROR([ HDF4 library needs JPEG, JPEG not defined.]) fi fi if test -n "$needgzip"; then if test "$HAVE_ZLIB" != "yes"; then AC_MSG_ERROR([ HDF4 library needs GZIP, GZIP not defined.]) fi fi if test -n "$needszip"; then if test "$HAVE_SZIP" != "yes"; then AC_MSG_ERROR([ HDF4 library needs SZIP, SZIP not defined.]) fi fi AC_MSG_RESULT([OK]) fi ac_cv_lib_HDF4=$HDF4LIB ac_cv_lib_HDF4INC=$HDF4INC AC_MSG_CHECKING([HDF5 library]) HAVE_HDF5="no" withval=""; AC_SUBST(HDF5LIB) HDF5LIB="" AC_ARG_WITH(hdf5,[ --with-hdf5=LIB Path to the hdf5 library (required if not in default path)],,) case "$withval" in yes) HDF5LIB="" HAVE_HDF5="no" ;; no) HDF5LIB="" HAVE_HDF5="suppressed" ;; *) if test -n "$withval" ; then hdf5_lib="`echo $withval |cut -f2 -d, -s`" HDF5LIB=$hdf5_lib"/libhdf.$LLEXT" hdf5_inc="`echo $withval |cut -f1 -d,`" if test -n "$hdf5_inc"; then HDF5INC="$hdf5_inc" fi hdf5_lib="`echo $withval |cut -f2 -d, -s`" if test -n "$hdf5_lib"; then HDF5LIB=$hdf5_lib fi HAVE_HDF5="yes" else HDF5LIB="" HAVE_HDF5="no" fi ;; esac if test -n "$HDF5LIB"; then LIBS="$HDF5LIB/libhdf5.$LLEXT $LIBS" HAVE_HDF5="yes" fi AC_MSG_RESULT([$HAVE_HDF5]) if test $HAVE_HDF5 = "yes"; then AC_MSG_RESULT([HDF5 found: $HDF5LIB]); fi dnl dnl Check that the libraries that HDF4 needs have been found dnl dnl Must stop here if something is missing. dnl if test -n "$HDF5LIB"; then AC_MSG_CHECKING([dependencies for HDF5 library]) DFL=`grep 'filters (external)' $HDF5LIB"/libhdf5.settings" | grep deflate` SZP=`grep 'filters (external)' $HDF5LIB"/libhdf5.settings" | grep szip` if test -n "$DFL"; then if test "$HAVE_ZLIB" != "yes"; then AC_MSG_ERROR([ HDF5 library needs GZIP, GZIP not defined.]) fi fi if test -n "$SZP"; then if test "$HAVE_SZIP" != "yes"; then AC_MSG_ERROR([ HDF5 library needs SZIP, SZIP not defined.]) fi fi AC_MSG_RESULT([OK]) fi ac_cv_lib_HDF5=$HDF5LIB ac_cv_lib_HDF5INC=$HDF5INC dnl check for libh4toh5 == if with-h4toh5 is not set, then can dnl only build hdf and hdf5 separately. dnl dnl This code need to be updated to check all the dependencies, dnl as for H4 and H5 libs above. AC_MSG_CHECKING([HDF4to5 library]) USEH45="no" withval=""; AC_SUBST(LIBH45) LIBH45="" AC_ARG_WITH(h4toh5,[ --with-h4toh5=INC,LIB Path to the HDF 4 to 5 library (optional feature, if selected then path required is not in default path)],,) case "$withval" in yes) USEH45="no" ;; no) H45LIB="" H45INC="" USEH45="suppressed" ;; *) if test -n "$withval"; then hdf45_inc="`echo $withval |cut -f1 -d,`" if test -n "$hdf45_inc"; then HDF45INC="$hdf45_inc" saved_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -I$hdf45_inc" fi AC_CHECK_HEADERS(h4toh5.h,, CPPFLAGS="$saved_CPPFLAGS" AC_MSG_ERROR(cannot find HDF45 header files!)) hdf45_lib="`echo $withval | cut -f2 -d, -s`" if test -n "$hdf45_lib"; then HDF45LIB="$hdf45_lib" saved_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -L$hdf45_lib" AC_CHECK_LIB(h4toh5, H4toh5open,, LDFLAGS="$saved_LDFLAGS" AC_MSG_ERROR(cannot find HDF45 library.)) else AC_MSG_ERROR(cannot find HDF45 library path.) fi USEH45="yes" fi ;; esac AC_MSG_RESULT([$USEH45]) if test -n "$H45LIB"; then AC_MSG_RESULT([h4toh5 library found at: $HDF45LIB]) fi H45LIB=$HDF45LIB H45INC=$HDF45INC ac_cv_lib_HDF45=$HDF45LIB ac_cv_lib_HDF45INC=$HDF45INC dnl find java stuff: use -with-jdk withval=""; AC_SUBST(jdkclasses) jdkclasses="" AC_ARG_WITH(jdkclasses,[ --with-classpath=LIB],,) jdkclasses=$withval withval=""; AC_SUBST(JAVALIB) JAVALIB="" AC_ARG_WITH(jdk,[ --with-jdk=INC,LIB Path to the JDK (required if not in default path)],,) case "$withval" in yes) AC_MSG_ERROR(JDK needed for compilation.) ;; no) AC_MSG_ERROR(JDK needed for compilation.) ;; *) jdk_inc="`echo $withval |cut -f1 -d,`" if test -n "$jdk_inc"; then JAVAINC="$jdk_inc" saved_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $COPT -I$jdk_inc -I$jdk_inc/$TARGETLIB" fi AC_CHECK_HEADERS(jni.h,, CPPFLAGS="$saved_CPPFLAGS" AC_MSG_ERROR(cannot find JDK header files!)) jdk_lib="`echo $withval | cut -f2 -d, -s`" if test -n "$jdk_lib"; then JAVALIB="$jdk_lib" else AC_MSG_ERROR(cannot find jdk library path.) fi ;; esac if test -n "$jdkclasses"; then if test -f $jdkclasses/classes.jar ; then JAVACLASSES=$jdkclasses/classes.jar JAVACLASSPATH_FOUND=1 else AC_MSG_ERROR(cannot find jdk classes in JDK lib path.) fi else if test -f $JAVALIB/classes.zip ; then JAVACLASSES=$JAVALIB/classes.zip JAVACLASSPATH_FOUND=1 elif test -f $JAVALIB/core.jar ; then JAVACLASSES=$JAVALIB/rt.jar JAVACLASSPATH_FOUND=1 elif test -f $JAVALIB/rt.jar ; then JAVACLASSES=$JAVALIB/rt.jar JAVACLASSPATH_FOUND=1 elif test -d $JAVALIB/classes ; then JAVACLASSES=$JAVALIB/classes JAVACLASSPATH_FOUND=1 else JL=`dirname $JAVALIB` if test -f $JL/jre/lib/rt.jar; then JAVACLASSES=$JL/jre/lib/rt.jar JAVACLASSPATH_FOUND=1 JAVALIB=$JL/jre/lib AC_SUBST(JAVALIB) JAVALIB="" else AC_MSG_ERROR(cannot find jdk classes in JDK lib path.) fi fi fi HERE=`pwd` CLASSPATH="$JAVACLASSES"":""$HERE" withval=""; AC_SUBST(javabin) javax="" AC_ARG_WITH(javax,[ --with-javax=LIB],,) javax=$withval if test -n "$javax" ; then JAVAX=$javax fi withval=""; AC_SUBST(javabin) javabin="" AC_ARG_WITH(javabin,[ --with-javabin=LIB],,) javabin=$withval if test -n "$javabin" ; then JAVABIN=$javabin else JAVABIN=`dirname $JAVAINC` JAVABIN="$JAVABIN/bin" fi AC_PATH_PROG(JAVA,java,,$JAVABIN,) AC_PATH_PROG(JAVAC,javac,,$JAVABIN,) AC_PATH_PROG(JAVADOC,javadoc,,$JAVABIN,) AC_PATH_PROG(JAR,jar,,$JAVABIN,) dnl optional find the jhdf wrappers withval=""; AC_ARG_WITH(jhdf4,[ --with-jhdf4=LIB Path to the jhdf4,jar (optional override, used only by H4 to H5) ],,) case "$withval" in yes) AC_MSG_ERROR(jhdf4 path needed for compilation.) ;; no) dnl use default path ;; *) jhdf_jar="`echo $withval |cut -f1 -d,`" if test -n "$jhdf_jar"; then CLASSPATH="$CLASSPATH"":""$jhdf_jar""/jhdf.jar" fi ;; esac withval=""; AC_ARG_WITH(jhdf5,[ --with-jhdf5=LIB Path to the jhdf45.jar (optional override, used only by the H4 to H5 library) ],,) case "$withval" in yes) AC_MSG_ERROR( jhdf5 path needed for compilation.) ;; no) #AC_MSG_ERROR( jhdf5 needed for compilation.) # use default path ;; *) jhdf5_jar="`echo $withval |cut -f1 -d,`" if test -n "$jhdf5_jar"; then CLASSPATH="$CLASSPATH"":""$jhdf5_jar""/jhdf5.jar" #else # AC_MSG_ERROR(jhdf5.jar needed for compilation.) # use default path... fi ;; esac ac_cv_lib_JAVAINC=$JAVAINC if test "$prefix" != "NONE" ; then JH45INST="$prefix" else JH45INST="" fi JH45INST_FOUND=1 if test -z "$JH45INST" ; then AC_CACHE_CHECK("JH45 install directory",ac_cv_lib_JH45INST,JH45INST_FOUND=0) fi if test $JH45INST_FOUND -eq 1; then if test -z "$JH45INST" ; then JH45INST=$ac_cv_lib_JH45INST; fi if test \( ! -d "$JH45INST" \); then JH45INST_FOUND=0 fi if test \( ! -w "$JH45INST" \); then AC_MSG_ERROR( [ $JH45INST : not writable ]) JH45INST_FOUND=0 fi fi until test $JH45INST_FOUND -eq 1; do echo "Please type the directory in which to install the JH45" read JH45INST JH45INST_FOUND=1 if test \( ! -d "$JH45INST" \); then JH45INST_FOUND=0 fi if test \( ! -w "$JH45INST" \); then AC_MSG_ERROR( [ $JH45INST : not writable ]) JH45INST_FOUND=0 fi done ac_cv_lib_JH45INST=$JH45INST JHVINST=$JH45INST JH5INST=$JH45INST case $target in alpha-dec-osf*.*) LD=$CC; LDOPT="-pthread -shared"; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT="-pthread -shared"; COPTNOSHARED=; JAVAINC2=$JAVAINC/alpha ; JAVATARG=alpha; ;; *aix*) LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT=-G; COPTNOSHARED=; JAVAINC2=$JAVAINC/aix ; JAVATARG=aix; ;; *-*-solaris2*) LD=$CC; LDOPT=-G; SLEXT="so"; LLEXT="a"; JSLEXT="so"; COPT=-G; COPTNOSHARED=; JAVAINC2=$JAVAINC/solaris ; JAVATARG=solaris; ;; mips*-sgi-irix6*) LD=ld; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; OS=`uname -r`; SYS=`uname -s` if test "$SYS" = "IRIX"; then LDOPT2="-check_registry /usr/lib/so_locations"; SLEXT="so"; if test "$GCC" = "yes" ; then LDOPT="-shared"; COPT="-shared" ; COPTNOSHARED=""; else LDOPT="-n32 -shared"; COPT="-n32 -shared" ; COPTNOSHARED="-n32"; fi elif test "$SYS" = "IRIX64"; then LDOPT2="-check_registry /usr/lib/so_locations"; SLEXT="so"; if test "$GCC" = "yes" ; then LDOPT="-shared"; COPT="-shared" ; COPTNOSHARED=""; else LDOPT="-n32 -shared"; COPT="-n32 -shared" ; COPTNOSHARED="-n32"; fi else echo "No such system: "$SYS fi JSLEXT="so"; JAVAINC2=$JAVAINC/irix; JAVATARG=irix-$OS; ;; x86_64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared -Dx86_64 -fPIC" ; JAVAINC2=$JAVAINC/linux; JAVATARG=linux; ;; ia64-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared -Dia64 -fPIC" ; JAVAINC2=$JAVAINC/linux; JAVATARG=linux; ;; *-pc-linux*) LD=$CC; LDOPT=-shared; SLEXT="so"; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared -DUNIX386" ; JAVAINC2=$JAVAINC/linux; JAVATARG=linux; ;; *-freebsd*) LD=$CC; LDOPT=-shared; SLEXT="so"; LLEXT="a"; # the extension for the HDF and other libraries to link to JSLEXT="so"; COPT="-shared" ; JAVAINC2=$JAVAINC/freebsd; JAVATARG=freebsd; ;; *powerpc-apple*) LD=$CC; LDOPT=-bundle; JSLEXT="jnilib"; LLEXT="a"; SLEXT="dylib"; JAVAINC2=$JAVAINC/macosx; JAVATARG=macosx; ;; *) LD=$CC; LDOPT=-G; SLEXT="so"; JSLEXT="so"; LLEXT="a"; COPT=-shared; COPTNOSHSARED=; JAVAINC2=$JAVAINC/$target; JAVATARG=$TARGET ;; esac AC_SUBST(LD) AC_SUBST(LDOPT) AC_SUBST(LDOPT2) AC_SUBST(LLEXT) AC_SUBST(SLEXT) AC_SUBST(JSLEXT) AC_SUBST(COPT) AC_SUBST(COPTNOSHARE) AC_SUBST(RM) AC_SUBST(AWK) AC_SUBST(FIND) AC_SUBST(JAVA) AC_SUBST(JAVABIN) AC_SUBST(JAVAX) AC_SUBST(JAVAC) AC_SUBST(JAVADOC) AC_SUBST(JAVAINC) AC_SUBST(JAVAINC2) AC_SUBST(HDF5LIB) AC_SUBST(HDF5INC) AC_SUBST(HDF4LIB) AC_SUBST(HDF4INC) AC_SUBST(H45LIB) AC_SUBST(H45INC) AC_SUBST(TARGET) AC_SUBST(JAVATARG) AC_SUBST(JAR) AC_SUBST(CLASSPATH) AC_SUBST(JH45INST) AC_SUBST(JHVINST) AC_SUBST(JH5INST) AC_SUBST(ZLIB) AC_SUBST(SZLIB) AC_SUBST_FILE(VERSION) VERSION=./VERSION VERSSTRING=`/bin/cat ./VERSION | sed -e 's/VERSION=HDF-JAVA-//' ` AC_SUBST(VERSSTRING) ## ## Select one of the following, depending on what is being distributed. ## OUTPUT_FILES="Makefile native/Makefile native/hdflib/Makefile native/hdf5lib/Makefile ncsa/Makefile ncsa/hdf/Makefile ncsa/hdf/hdflib/Makefile ncsa/hdf/hdf5lib/Makefile ncsa/hdf/hdf5lib/exceptions/Makefile ncsa/hdf/hdf5lib/callbacks/Makefile ncsa/hdf/hdf5lib/structs/Makefile ncsa/hdf/object/Makefile ncsa/hdf/object/fits/Makefile ncsa/hdf/object/h4/Makefile ncsa/hdf/object/h5/Makefile ncsa/hdf/object/nc2/Makefile ncsa/hdf/view/Makefile bin/hdfview.sh" if test "$USEH45" = "yes"; then ## want H4toH5 configured if test -d "./test"; then ## ## Everything ## # OUTPUT_FILES="$OUTPUT_FILES test/Makefile test/object/misc/testh4file.sh test/object/misc/testh5file.sh test/object/misc/Makefile test/object/misc/runtests.sh test/hdf5lib/junit.sh test/hdf5lib/Makefile test/uitest/junit.sh test/uitest/Makefile examples/Makefile examples/intro/Makefile examples/datasets/Makefile examples/datatypes/Makefile examples/groups/Makefile" OUTPUT_FILES="$OUTPUT_FILES test/Makefile test/object/misc/testh4file.sh test/object/misc/testh5file.sh test/object/misc/Makefile test/object/misc/runtests.sh test/hdf5lib/junit.sh test/hdf5lib/Makefile examples/Makefile examples/intro/Makefile examples/datasets/Makefile examples/datatypes/Makefile examples/groups/Makefile" else ## ## H4, H5, H45, but NO tests ## OUTPUT_FILES="Makefile native/Makefile native/hdflib/Makefile native/hdf5lib/Makefile ncsa/Makefile ncsa/hdf/Makefile ncsa/hdf/hdflib/Makefile ncsa/hdf/hdf5lib/Makefile ncsa/hdf/hdf5lib/exceptions/Makefile ncsa/hdf/hdf5lib/callbacks/Makefile ncsa/hdf/hdf5lib/structs/Makefile ncsa/hdf/object/Makefile ncsa/hdf/object/fits/Makefile ncsa/hdf/object/h4/Makefile ncsa/hdf/object/h5/Makefile ncsa/hdf/object/nc2/Makefile ncsa/hdf/view/Makefile" fi else if test -d "./test"; then ## Don't use H4toH5 (but do include some tests) #OUTPUT_FILES="$OUTPUT_FILES test/Makefile test/object/misc/Makefile test/object/misc/testh4file.sh test/object/misc/testh5file.sh test/object/misc/runtests.sh test/object/misc/TestH5Object.sh test/object/misc/TestH5Table.sh test/object/misc/TestH5MemoryLeak.sh test/object/Makefile test/object/unittests.sh test/hdf5lib/junit.sh test/hdf5lib/Makefile test/uitest/junit.sh test/uitest/Makefile examples/Makefile examples/intro/Makefile examples/datasets/Makefile examples/datatypes/Makefile examples/groups/Makefile examples/runExample.sh" OUTPUT_FILES="$OUTPUT_FILES test/Makefile test/object/misc/Makefile test/object/misc/testh4file.sh test/object/misc/testh5file.sh test/object/misc/runtests.sh test/object/misc/TestH5Object.sh test/object/misc/TestH5Table.sh test/object/misc/TestH5MemoryLeak.sh test/object/Makefile test/object/unittests.sh test/hdf5lib/junit.sh test/hdf5lib/Makefile examples/Makefile examples/intro/Makefile examples/datasets/Makefile examples/datatypes/Makefile examples/groups/Makefile examples/runExample.sh" else ## Don't use H4toH5 (no tests) OUTPUT_FILES="$OUTPUT_FILES" fi fi AC_OUTPUT($OUTPUT_FILES) if test -d "./test"; then chmod +x test/object/misc/TestH5Object.sh chmod +x test/object/misc/TestH5Table.sh chmod +x test/object/misc/TestH5MemoryLeak.sh chmod +x test/object/unittests.sh chmod +x test/hdf5lib/junit.sh fi hdf-java-2.11.0/Makefile.in0000644002344600011330000006737012301475474013642 0ustar byrnhdf#/**************************************************************************** #* Copyright by The HDF Group. * #* Copyright by the Board of Trustees of the University of Illinois. * #* All rights reserved. * #* * #* This file is part of HDF Java Products. The full HDF Java copyright * #* notice, including terms governing use, modification, and redistribution, * #* is contained in the file, COPYING. COPYING can be found at the root of * #* the source code distribution tree. You can also access it online at * #* http://www.hdfgroup.org/products/licenses.html. If you do not have * #* access to the file, you may request a copy from help@hdfgroup.org. * #****************************************************************************/ TOP = . DIR = . @VERSION@ JAVAC = @JAVAC@ JAVADOC = @JAVADOC@ JAR = @JAR@ FIND = @FIND@ RM = @RM@ JAVADOC_FLAGS = -version -author SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ CLASSPATH=@CLASSPATH@ JH45INSTALLDIR=@JH45INST@ H45INC=@H45INC@ H4INC=@HDF4INC@ H5INC=@HDF5INC@ #make this relative to the source root... LIBDIR=$(JH45INSTALLDIR)/lib BINDIR=$(JH45INSTALLDIR)/bin DOCDIR= $(JH45INSTALLDIR)/docs CLASS_DIR=$(TOP)/lib CP="$(CLASSPATH):$(CLASS_DIR):. " CURRENTDIR = . JAR_DIR=$(CLASS_DIR) OUT_DIR=$(CLASS_DIR)/$(DIR) HDFVIEWDISTFILES= ./ncsa/hdf/view/*.java ./ncsa/hdf/view/Makefile.in ./ncsa/hdf/view/CMakeLists.txt $(HDFVIEWICONS) HDFOBJDISTFILES= ./ncsa/hdf/object/*.java ./ncsa/hdf/object/Makefile.in ./ncsa/hdf/object/CMakeLists.txt H4OBJDISTFILES= ./ncsa/hdf/object/h4/*.java ./ncsa/hdf/object/h4/Makefile.in ./ncsa/hdf/object/h4/CMakeLists.txt H5OBJDISTFILES= ./ncsa/hdf/object/h5/*.java ./ncsa/hdf/object/h5/Makefile.in ./ncsa/hdf/object/h5/CMakeLists.txt FITSDISTJARFILE = $(CLASS_DIR)/fits.jar NC2SDISTJARFILE = $(CLASS_DIR)/netcdf.jar JUNITSDISTJARFILE = $(CLASS_DIR)/junit.jar LOGGINGDISTJARFILE = $(CLASS_DIR)/slf4j-api-1.7.5.jar $(CLASS_DIR)/slf4j-nop-1.7.5.jar NC2OBJDISTFILES= ./ncsa/hdf/object/nc2/*.java ./ncsa/hdf/object/nc2/Makefile.in ./ncsa/hdf/object/nc2/CMakeLists.txt $(CLASS_DIR)/netcdf.jar FITSOBJDISTFILES= ./ncsa/hdf/object/fits/*.java ./ncsa/hdf/object/fits/Makefile.in ./ncsa/hdf/object/fits/CMakeLists.txt $(CLASS_DIR)/fits.jar TOPDIST=./VERSION ./COPYING ./Makefile.in ./CMakeLists.txt ./CTestConfig.cmake \ ./Readme.txt \ ./bin/hdfview.sh.in ./bin/hdfview.bat \ ./runconfig-example.sh \ ./configure.in ./config/config* ./config/install-sh ./config/Rules.mk \ ./config/config/CMake/* \ ./samples/* \ ./configure ./native/Makefile.in ./native/CMakeLists.txt \ ./ncsa/Makefile.in ./ncsa/CMakeLists.txt ./ncsa/hdf/Makefile.in ./ncsa/hdf/CMakeLists.txt JHIDISTFILES=./native/hdflib/Makefile.in \ ./native/hdflib/nt_makefile \ ./native/hdflib/*.c \ ./native/hdflib/Makefile.in ./native/hdflib/CMakeLists.txt \ ./ncsa/hdf/hdflib/*.java \ ./ncsa/hdf/hdflib/Makefile.in ./ncsa/hdf/hdflib/CMakeLists.txt JHI5DISTFILES= ./native/hdf5lib/Makefile.in \ ./native/hdf5lib/nt_makefile \ ./native/hdf5lib/*.c ./native/hdf5lib/*.h \ ./native/hdf5lib/Makefile.in ./native/hdf5lib/CMakeLists.txt \ ./ncsa/hdf/hdf5lib/*.java \ ./ncsa/hdf/hdf5lib/callbacks/*.java \ ./ncsa/hdf/hdf5lib/exceptions/*.java \ ./ncsa/hdf/hdf5lib/structs/*.java \ ./ncsa/hdf/hdf5lib/Makefile.in ./ncsa/hdf/hdf5lib/CMakeLists.txt \ ./ncsa/hdf/hdf5lib/callbacks/Makefile.in \ ./ncsa/hdf/hdf5lib/exceptions/Makefile.in \ ./ncsa/hdf/hdf5lib/structs/Makefile.in EXAMPLESFILES=./examples/*.in ./examples/CMakeLists.txt \ ./examples/intro/*.java ./examples/intro/*.in ./examples/intro/CMakeLists.txt \ ./examples/groups/*.java ./examples/groups/*.in ./examples/groups/CMakeLists.txt ./examples/groups/*.h5 \ ./examples/datasets/*.java ./examples/datasets/*.in ./examples/datsets/CMakeLists.txt \ ./examples/datatypes/*.java ./examples/datatypes/*.in ./examples/datatypes/CMakeLists.txt \ ./examples/testfiles/*.txt TESTFILES=./test/Makefile.in ./test/Makefile.in ./test/CMakeLists.txt \ ./test/object/misc/*.java ./test/object/misc/*.in ./test/object/misc/CMakeLists.txt \ ./test/object/*.in ./test/object/CMakeLists.txt ./test/object/*.java \ ./test/hdf5lib/*.in ./test/hdf5lib/CMakeLists.txt ./test/hdf5lib/*.java \ ./test/hdf5lib/h5ex_g_iterate.hdf ./test/object/h5ex_d_extern.data ./test/object/h5ex_d_extern.hdf5 GUITESTFILES=./test/uitest/*.in ./test/uitest/CMakeLists.txt ./test/uitest/*.java \ $(CLASS_DIR)/fest-assert-1.2.jar $(CLASS_DIR)/fest-reflect-1.2.jar $(CLASS_DIR)/fest-swing-1.2.jar \ $(CLASS_DIR)/fest-util-1.1.2.jar $(CLASS_DIR)/fest-annotations-1.0.jar DOCFILES= WINDOWSFILES=./windows/hdfview.bat ./windows/copy_hdf.bat ./windows/javabuild.bat \ ./windows/javacheck.bat ./windows/javainstall.bat ./windows/jnibuild.bat \ ./windows/proj/all/hdfjava.sln ./windows/proj/jhdf/jhdf.vcproj ./windows/proj/jhdf5/jhdf5.vcproj DISTFILES= $(TOPDIST) $(JHI5DISTFILES) $(JHIDISTFILES) $(HDFDISTFILES) $(HDFVIEWDISTFILES) $(HDFOBJDISTFILES) $(H4OBJDISTFILES) $(H5OBJDISTFILES) $(NC2OBJDISTFILES) $(FITSOBJDISTFILES) $(TESTFILES) $(DOCFILES) $(FITSDISTJARFILE) $(NC2DISTJARFILE) $(JUNITSDISTJARFILE) $(EXAMPLESFILES) $(WINDOWSFILES) JHIPACKAGES = \ ncsa.hdf.hdflib JHI5PACKAGES = \ ncsa.hdf.hdf5lib.callbacks \ ncsa.hdf.hdf5lib.exceptions \ ncsa.hdf.hdf5lib.structs \ ncsa.hdf.hdf5lib HDFOBJPACKAGES = ncsa.hdf.object H4OBJPACKAGES = ncsa.hdf.object.h4 H5OBJPACKAGES = ncsa.hdf.object.h5 NC2OBJPACKAGES = ncsa.hdf.object.nc2 FITSOBJPACKAGES = ncsa.hdf.object.fits HDFVIEWPACKAGES= ncsa.hdf.view TESTPACKAGES = test.object all: natives ncsa do-examples just-hdf4: hdflib jhdf-packages just-hdf5: hdf5lib jhdf5-packages install-just-hdf4: install-hdflib install-jhdf install-just-hdf5: install-hdf5lib install-jhdf5 packages: jhdf-packages jhdf5-packages nc2-packages fits-packages jhdfobj-packages jhdfview-packages jhdf-packages: @if test x'$(H4INC)' != x'' ; then $(MAKE) do-jhdf-packages; fi do-jhdf-packages: $(JHIPACKAGES) $(JAR) cf $(CLASS_DIR)/jhdf.jar -C $(CLASS_DIR) $(JHICLASSES) jhdf5-packages: $(JHI5PACKAGES) $(JAR) cf $(CLASS_DIR)/jhdf5.jar -C $(CLASS_DIR) $(JHI5CLASSES) nc2-packages: $(NC2OBJPACKAGES) -mkdir -p $(CLASS_DIR)/ext $(JAR) cf $(CLASS_DIR)/ext/nc2obj.jar -C $(CLASS_DIR) $(NC2OBJCLASSES) fits-packages: $(FITSOBJPACKAGES) -mkdir -p $(CLASS_DIR)/ext $(JAR) cf $(CLASS_DIR)/ext/fitsobj.jar -C $(CLASS_DIR) $(FITSOBJCLASSES) jhdfobj-packages: $(HDFOBJPACKAGES) $(JAR) cf $(CLASS_DIR)/jhdfobj.jar -C $(CLASS_DIR) $(HDFOBJCLASSES) @if test x'$(H4INC)' != x'' ; then $(MAKE) do-jh4obj-packages ; fi @if test x'$(H5INC)' != x'' ; then $(MAKE) do-jh5obj-packages ; fi do-jh4obj-packages: $(H4OBJPACKAGES) $(JAR) cf $(CLASS_DIR)/jhdf4obj.jar -C $(CLASS_DIR) $(H4OBJCLASSES) do-jh5obj-packages: $(H5OBJPACKAGES) $(JAR) cf $(CLASS_DIR)/jhdf5obj.jar -C $(CLASS_DIR) $(H5OBJCLASSES) jhdfview-packages: $(HDFVIEWPACKAGES) $(JAR) cf $(CLASS_DIR)/jhdfview.jar -C $(CLASS_DIR) $(HDFVIEWCLASSES) $(HDFVIEWICONS) classes: packages natives: FORCE cd native; \ $(MAKE) hdflib: FORCE cd native; \ $(MAKE) hdflib hdf5lib: FORCE cd native; \ $(MAKE) hdf5lib ncsa: FORCE cd ncsa; \ $(MAKE) FORCE: ## revise arrangement of docs, java docs. docs: javadocs javadocs: -mkdir -p docs/javadocs; @if test x'$(H45INC)' != x'' ; then \ $(JAVADOC) -sourcepath $(CLASSPATH) -d ./docs/javadocs $(JAVADOC_FLAGS) $(JH45PACKAGES) ncsa.hdf.hdflib $(JHI5PACKAGES) $(HDFOBJPACKAGES) $(H4OBJPACKAGES) $(H5OBJPACKAGES); \ else \ $(JAVADOC) -sourcepath $(CLASSPATH) -d ./docs/javadocs $(JAVADOC_FLAGS) ncsa.hdf.hdflib $(JHI5PACKAGES) $(HDFOBJPACKAGES) $(H4OBJPACKAGES) $(H5OBJPACKAGES) ; \ fi tests: @if test -d "test"; then cd test; $(MAKE); fi do-examples: @if test -d "examples"; then cd examples; $(MAKE); fi clean-examples: @if test -d "examples"; then cd examples; $(MAKE) clean; fi clean-test: @if test -d "test"; then cd test; $(MAKE) clean; fi clean: clean-natives clean-ncsa clean-classes clean-test clean-examples clean-classes: $(FIND) ./ncsa \( -name '#*' -o -name '*~' -o -name '*.class' \) -exec $(RM) -f {} \; ;\ $(RM) -f $(CLASS_DIR)/jhdf.jar $(RM) -f $(CLASS_DIR)/jhdf5.jar $(RM) -f $(CLASS_DIR)/jhdfobj.jar $(RM) -f $(CLASS_DIR)/jhdf4obj.jar $(RM) -f $(CLASS_DIR)/jhdf5obj.jar $(RM) -f $(CLASS_DIR)/jhdfview.jar $(RM) -f $(CLASS_DIR)/ext/nc2obj.jar $(RM) -f $(CLASS_DIR)/ext/fitsobj.jar clean-packages: clean-classes clean-natives: cd native; \ $(MAKE) clean; clean-ncsa: cd ncsa; \ $(MAKE) clean; clean-hdflib: cd native; \ $(MAKE) clean-hdflib; clean-hdf5lib: cd native; \ $(MAKE) clean-hdf5lib; clean-docs: cd docs; \ $(RM) *.html cd docs/javadocs; \ $(RM) -r *.html check-all: check check-mem-leak check-mem-leak: install $(TESTPACKAGES) cd test/object/misc; $(MAKE) check-memory-leak; check: packages cd test; \ $(MAKE) check; cd examples; \ $(MAKE) check; install: install-lib install-jhdf install-jhdf5 install-jhdfobj install-jhdfview @echo "Install complete" uninstall: uninstall-jhdfview uninstall-jhdfobj uninstall-lib uninstall-jhi uninstall-jhi5 install-lib: natives -mkdir -p $(LIBDIR); -mkdir -p $(LIBDIR)/@JAVATARG@ @if test x'$(H5INC)' != x'' ; then \ cp $(CLASS_DIR)/@JAVATARG@/libjhdf5.$(JSLEXT) $(LIBDIR)/@JAVATARG@ ; \ cp $(H5INC)/../lib/*.settings $(LIBDIR)/@JAVATARG@ ; fi @if test x'$(H4INC)' != x'' ; then \ cp $(CLASS_DIR)/@JAVATARG@/libjhdf.$(JSLEXT) $(LIBDIR)/@JAVATARG@ ; \ cp $(H4INC)/../lib/*.settings $(LIBDIR)/@JAVATARG@ ; fi @if test x'$(H45INC)' != x'' ; then \ cp $(CLASS_DIR)/@JAVATARG@/libjh4toh5.$(JSLEXT) $(LIBDIR)/@JAVATARG@ ; fi @echo "Install Natives complete" install-hdflib: @if test x'$(H4INC)' != x'' ; then $(MAKE) do-install-hdflib ; fi do-install-hdflib: hdflib -mkdir -p $(LIBDIR); -mkdir -p $(LIBDIR)/@JAVATARG@ cp $(CLASS_DIR)/@JAVATARG@/libjhdf.$(JSLEXT) $(LIBDIR)/@JAVATARG@ @echo "Install Native HDF complete" install-hdf5lib: hdf5lib @if test x'$(H5INC)' != x'' ; then $(MAKE) do-install-hdf5lib ; fi do-install-hdf5lib: hdf5lib -mkdir -p $(LIBDIR); -mkdir -p $(LIBDIR)/@JAVATARG@ cp $(CLASS_DIR)/@JAVATARG@/libjhdf5.$(JSLEXT) $(LIBDIR)/@JAVATARG@ echo "Install Native HDF5 complete" uninstall-lib: $(RM) -f $(LIBDIR)/@JAVATARG@/libjhdf.$(JSLEXT) $(RM) -f $(LIBDIR)/@JAVATARG@/libjhdf5.$(JSLEXT) install-jars: install-jhdf install-jhdf5 install-jhdfobject install-jhdfview install-jhdf: @if test x'$(H4INC)' != x'' ; then $(MAKE) do-install-jhdf ; fi do-install-jhdf: jhdf-packages -mkdir -p $(LIBDIR); $(JAR) cf $(JH45INSTALLDIR)/lib/jhdf.jar -C $(CLASS_DIR) $(JHICLASSES) @echo "Install JHI complete" install-jhdf5: @if test x'$(H5INC)' != x'' ; then $(MAKE) do-install-jhdf5 ; fi do-install-jhdf5: jhdf5-packages -mkdir -p $(LIBDIR); $(JAR) cf $(JH45INSTALLDIR)/lib/jhdf5.jar -C $(CLASS_DIR) $(JHI5CLASSES) @echo "Install JHI5 complete" install-jhdfobj: ncsa.hdf.object -mkdir -p $(LIBDIR); $(JAR) cf $(JH45INSTALLDIR)/lib/jhdfobj.jar -C $(CLASS_DIR) $(HDFOBJCLASSES) @if test x'$(H4INC)' != x'' ; then $(MAKE) do-install-jhdf4obj ; fi @if test x'$(H5INC)' != x'' ; then $(MAKE) do-install-jhdf5obj ; fi @echo "Install HDFOBJ complete" do-install-jhdf4obj: ncsa.hdf.object.h4 -mkdir -p $(LIBDIR); $(JAR) cf $(JH45INSTALLDIR)/lib/jhdf4obj.jar -C $(CLASS_DIR) $(H4OBJCLASSES) @echo "Install JHDF4 complete" do-install-jhdf5obj: ncsa.hdf.object.h5 -mkdir -p $(LIBDIR); $(JAR) cf $(JH45INSTALLDIR)/lib/jhdf5obj.jar -C $(CLASS_DIR) $(H5OBJCLASSES) @echo "Install JHDF4 complete" install-jhdfview: ncsa.hdf.view -mkdir -p $(LIBDIR); $(JAR) cf $(JH45INSTALLDIR)/lib/jhdfview.jar -C $(CLASS_DIR) $(HDFVIEWCLASSES) $(HDFVIEWICONS) -mkdir -p $(LIBDIR)/ext $(JAR) cf $(JH45INSTALLDIR)/lib/ext/nc2obj.jar -C $(CLASS_DIR) $(NC2OBJCLASSES) $(JAR) cf $(JH45INSTALLDIR)/lib/ext/fitsobj.jar -C $(CLASS_DIR) $(FITSOBJCLASSES) -mkdir -p $(BINDIR); cp lib/netcdf.jar $(LIBDIR) cp lib/fits.jar $(LIBDIR) cp lib/junit.jar $(LIBDIR) cp lib/slf4j-api-1.7.5.jar $(LIBDIR) cp lib/ext/slf4j-nop-1.7.5.jar $(LIBDIR) cp bin/hdfview.sh $(BINDIR) chmod a+x $(BINDIR)/hdfview.sh @echo "Install HDFVIEW complete" uninstall-jhi5: $(RM) -f $(JH45INSTALLDIR)/lib/jhdf5.jar uninstall-jhi: $(RM) -f $(JH45INSTALLDIR)/lib/jhdf.jar uninstall-jhdfobj: $(RM) -f $(JH45INSTALLDIR)/lib/jhdfobj.jar $(RM) -f $(JH45INSTALLDIR)/lib/jhdf4obj.jar $(RM) -f $(JH45INSTALLDIR)/lib/jhdf5obj.jar uninstall-jhdfview: $(RM) -f $(JH45INSTALLDIR)/lib/jhdfview.jar; install-docs: install-javadocs install-javadocs: -mkdir -p $(DOCDIR)/javadocs; @if test x'$(H45INC)' != x'' ; then \ $(JAVADOC) -sourcepath $(CLASSPATH) -d $(DOCDIR)/javadocs $(JAVADOC_FLAGS) $(JH45PACKAGES) ncsa.hdf.hdflib $(JHI5PACKAGES) $(HDFOBJPACKAGES); \ else \ $(JAVADOC) -sourcepath $(CLASSPATH) -d $(DOCDIR)/javadocs $(JAVADOC_FLAGS) ncsa.hdf.hdflib $(JHI5PACKAGES) $(HDFOBJPACKAGES); \ fi -mkdir -p $(DOCDIR)/javadocs/images; cp docs/javadocs/images/*.gif $(DOCDIR)/javadocs/images; uninstall-javadocs: $(RM) -rf $(DOCDIR)/javadocs/*.html $(DOCDIR)/images distclean: clean-natives clean-ncsa clean-classes clean-test clean-examples $(RM) -f config.cache config.status config.log $(RM) -rf $(CLASS_DIR)/@JAVATARG@ $(RM) -rf $(CLASS_DIR)/jhdf.jar $(RM) -rf $(CLASS_DIR)/jhdf4obj.jar $(RM) -rf $(CLASS_DIR)/jhdf5.jar $(RM) -rf $(CLASS_DIR)/jhdf5obj.jar $(RM) -rf $(CLASS_DIR)/jhdfobj.jar $(RM) -rf $(CLASS_DIR)/jhdfview.jar $(RM) -f ./native/Makefile $(RM) -rf ./native/hdflib/Makefile $(RM) -rf ./native/hdf5lib/Makefile $(RM) -f ./ncsa/Makefile $(RM) -rf ./ncsa/hdf/Makefile $(RM) -rf ./ncsa/hdf/hdflib/Makefile $(RM) -rf ./ncsa/hdf/hdf5lib/Makefile $(RM) -rf ./ncsa/hdf/hdf5lib/callbacks/Makefile $(RM) -rf ./ncsa/hdf/hdf5lib/exceptions/Makefile $(RM) -rf ./ncsa/hdf/hdf5lib/structs/Makefile $(RM) -rf ./ncsa/hdf/object/Makefile $(RM) -rf ./ncsa/hdf/object/h4/Makefile $(RM) -rf ./ncsa/hdf/object/h5/Makefile $(RM) -rf ./ncsa/hdf/object/fits/Makefile $(RM) -rf ./ncsa/hdf/object/nc2/Makefile $(RM) -rf ./ncsa/hdf/view/Makefile $(RM) -rf ./test/Makefile $(RM) -rf ./test/hdf5lib/Makefile $(RM) -rf ./test/hdf5lib/*.sh $(RM) -rf ./test/object/Makefile $(RM) -rf ./test/object/*.sh $(RM) -rf ./test/object/misc/Makefile $(RM) -rf ./test/object/misc/*.sh $(RM) -rf ./examples/Makefile $(RM) -rf ./examples/runExample.sh $(RM) -rf ./examples/intro/Makefile $(RM) -rf ./examples/groups/Makefile $(RM) -rf ./examples/datasets/Makefile $(RM) -rf ./examples/datatypes/Makefile $(RM) -rf ./Makefile src-dist: docs -mkdir -p hdf-java tar cvf $(VERSION)-x.tar $(DISTFILES) ; mv $(VERSION)-x.tar hdf-java/ cd hdf-java ; tar xf $(VERSION)-x.tar ; $(RM) -f $(VERSION)-x.tar ; find . -name .svn -exec rm -rf {} \; cd .. tar cvf $(VERSION)-src.tar hdf-java/* $(RM) -rf hdf-java # -------- # Packages # -------- ncsa.hdf.hdf5lib: \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/H5.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/HDF5Constants.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/HDF5GroupInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/HDFArray.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/HDFNativeData.class ncsa.hdf.hdf5lib.exceptions: \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5AtomException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5AttributeException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5BtreeException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5DataFiltersException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5DataStorageException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5DataspaceInterfaceException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5DatatypeInterfaceException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5Exception.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5ExternalFileListException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5FileInterfaceException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5FunctionArgumentException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5FunctionEntryExitException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5HeapException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5InternalErrorException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5JavaException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5LibraryException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5LowLevelIOException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5MetaDataCacheException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5ObjectHeaderException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5PropertyListInterfaceException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5ReferenceException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5ResourceUnavailableException.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/exceptions/HDF5SymbolTableException.class ncsa.hdf.hdf5lib.callbacks: \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/callbacks/Callbacks.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/callbacks/H5L_iterate_cb.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/callbacks/H5L_iterate_t.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/callbacks/H5O_iterate_cb.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/callbacks/H5O_iterate_t.class ncsa.hdf.hdf5lib.structs: \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/structs/H5_ih_info_t.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/structs/H5A_info_t.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/structs/H5G_info_t.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/structs/H5L_info_t.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/structs/H5O_info_t.class \ $(CLASS_DIR)/ncsa/hdf/hdf5lib/structs/H5O_hdr_info_t.class ncsa.hdf.hdflib: \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFArray.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFChunkInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFCompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFConstants.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFDeflateCompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFDeprecated.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFException.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFIMCOMPCompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFJPEGCompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFJavaException.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFLibrary.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFLibraryException.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFNBITChunkInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFNBITCompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFNativeData.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFNewCompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFNotImplementedException.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFOldCompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFOldRLECompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFRLECompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFSKPHUFFCompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFSZIPCompInfo.class \ $(CLASS_DIR)/ncsa/hdf/hdflib/HDFTable.class ncsa.hdf.object: \ $(CLASS_DIR)/ncsa/hdf/object/Attribute.class \ $(CLASS_DIR)/ncsa/hdf/object/CompoundDS.class \ $(CLASS_DIR)/ncsa/hdf/object/DataFormat.class \ $(CLASS_DIR)/ncsa/hdf/object/Dataset.class \ $(CLASS_DIR)/ncsa/hdf/object/Group.class \ $(CLASS_DIR)/ncsa/hdf/object/HObject.class \ $(CLASS_DIR)/ncsa/hdf/object/ScalarDS.class \ $(CLASS_DIR)/ncsa/hdf/object/Datatype.class \ $(CLASS_DIR)/ncsa/hdf/object/FileFormat.class \ $(CLASS_DIR)/ncsa/hdf/object/Metadata.class ncsa.hdf.object.h4: \ $(CLASS_DIR)/ncsa/hdf/object/h4/H4GRImage.class \ $(CLASS_DIR)/ncsa/hdf/object/h4/H4Group.class \ $(CLASS_DIR)/ncsa/hdf/object/h4/H4SDS.class \ $(CLASS_DIR)/ncsa/hdf/object/h4/H4Vdata.class \ $(CLASS_DIR)/ncsa/hdf/object/h4/H4Datatype.class \ $(CLASS_DIR)/ncsa/hdf/object/h4/H4File.class \ ncsa.hdf.object.h5: \ $(CLASS_DIR)/ncsa/hdf/object/h5/H5CompoundDS.class \ $(CLASS_DIR)/ncsa/hdf/object/h5/H5Group.class \ $(CLASS_DIR)/ncsa/hdf/object/h5/H5ScalarDS.class \ $(CLASS_DIR)/ncsa/hdf/object/h5/H5Datatype.class \ $(CLASS_DIR)/ncsa/hdf/object/h5/H5File.class \ ncsa.hdf.object.nc2: \ $(CLASS_DIR)/ncsa/hdf/object/nc2/NC2Dataset.class \ $(CLASS_DIR)/ncsa/hdf/object/nc2/NC2Datatype.class \ $(CLASS_DIR)/ncsa/hdf/object/nc2/NC2File.class \ $(CLASS_DIR)/ncsa/hdf/object/nc2/NC2Group.class ncsa.hdf.object.fits: \ $(CLASS_DIR)/ncsa/hdf/object/fits/FitsDataset.class \ $(CLASS_DIR)/ncsa/hdf/object/fits/FitsDatatype.class \ $(CLASS_DIR)/ncsa/hdf/object/fits/FitsFile.class \ $(CLASS_DIR)/ncsa/hdf/object/fits/FitsGroup.class # # The test files are not included in the preliminary source release # test.object: \ ./test/object/misc/TestH4File.class \ ./test/object/misc/TestH5File.class # # The Hdfviewer # ncsa.hdf.view: \ $(CLASS_DIR)/ncsa/hdf/view/TreeView.class \ $(CLASS_DIR)/ncsa/hdf/view/FileConversionDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/DataOptionDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/HDFView.class \ $(CLASS_DIR)/ncsa/hdf/view/ImageView.class \ $(CLASS_DIR)/ncsa/hdf/view/TableView.class \ $(CLASS_DIR)/ncsa/hdf/view/TextView.class \ $(CLASS_DIR)/ncsa/hdf/view/ViewProperties.class \ $(CLASS_DIR)/ncsa/hdf/view/NewDatasetDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/NewDatatypeDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/NewLinkDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/NewLinkDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/NewTableDataDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/NewFileDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/UserOptionsDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/DefaultFileFilter.class \ $(CLASS_DIR)/ncsa/hdf/view/MathConversionDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/Tools.class \ $(CLASS_DIR)/ncsa/hdf/view/DataView.class \ $(CLASS_DIR)/ncsa/hdf/view/Chart.class \ $(CLASS_DIR)/ncsa/hdf/view/PaletteView.class \ $(CLASS_DIR)/ncsa/hdf/view/MetaDataView.class \ $(CLASS_DIR)/ncsa/hdf/view/HelpView.class \ $(CLASS_DIR)/ncsa/hdf/view/NewImageDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/NewGroupDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/NewAttributeDialog.class \ $(CLASS_DIR)/ncsa/hdf/view/DefaultImageView.class \ $(CLASS_DIR)/ncsa/hdf/view/DefaultTableView.class \ $(CLASS_DIR)/ncsa/hdf/view/DefaultTreeView.class \ $(CLASS_DIR)/ncsa/hdf/view/DefaultMetaDataView.class \ $(CLASS_DIR)/ncsa/hdf/view/DefaultTextView.class \ $(CLASS_DIR)/ncsa/hdf/view/ViewManager.class \ $(CLASS_DIR)/ncsa/hdf/view/DefaultPaletteView.class # All classes that are built, including private classes: # This is what is loaded into the 'jar' file. # JHI5CLASSES= ncsa/hdf/hdf5lib JHICLASSES= ncsa/hdf/hdflib HDFOBJCLASSES= ncsa/hdf/object H4OBJCLASSES= ncsa/hdf/object/h4 H5OBJCLASSES= ncsa/hdf/object/h5 NC2OBJCLASSES= ncsa/hdf/object/nc2 FITSOBJCLASSES= ./ncsa/hdf/object/fits HDFVIEWCLASSES=./ncsa/hdf/view HDFVIEWICONS= ./ncsa/hdf/view/icons/*.gif \ ./ncsa/hdf/view/*.html ## # Source to pack for distribution ## JAVASRCS= \ ./ncsa/hdf/hdf5lib/H5.java \ ./ncsa/hdf/hdf5lib/HDF5Constants.java \ ./ncsa/hdf/hdf5lib/HDF5GroupInfo.java \ ./ncsa/hdf/hdf5lib/HDFArray.java \ ./ncsa/hdf/hdf5lib/HDFNativeData.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5AtomException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5AttributeException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5BtreeException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5DataFiltersException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5DataStorageException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5DatasetInterfaceException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5DataspaceInterfaceException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5DatatypeInterfaceException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5Exception.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5ExternalFileListException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5FileInterfaceException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5FunctionArgumentException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5FunctionEntryExitException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5HeapException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5InternalErrorException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5JavaException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5LibraryException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5LowLevelIOException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5MetaDataCacheException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5ObjectHeaderException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5PropertyListInterfaceException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5ReferenceException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5ResourceUnavailableException.java \ ./ncsa/hdf/hdf5lib/exceptions/HDF5SymbolTableException.java \ ./ncsa/hdf/hdf5lib/callbacks/Callbacks.java \ ./ncsa/hdf/hdf5lib/callbacks/H5L_iterate_cb.java \ ./ncsa/hdf/hdf5lib/callbacks/H5L_iterate_t.java \ ./ncsa/hdf/hdf5lib/callbacks/H5O_iterate_cb.java \ ./ncsa/hdf/hdf5lib/callbacks/H5O_iterate_t.java \ ./ncsa/hdf/hdf5lib/structs/H5_ih_info_t.java \ ./ncsa/hdf/hdf5lib/structs/H5A_info_t.java \ ./ncsa/hdf/hdf5lib/structs/H5G_info_t.java \ ./ncsa/hdf/hdf5lib/structs/H5L_info_t.java \ ./ncsa/hdf/hdf5lib/structs/H5O_info_t.java \ ./ncsa/hdf/hdf5lib/structs/H5O_hdr_info_t.java \ ./ncsa/hdf/hdflib/HDFArray.java \ ./ncsa/hdf/hdflib/HDFChunkInfo.java \ ./ncsa/hdf/hdflib/HDFCompInfo.java \ ./ncsa/hdf/hdflib/HDFConstants.java \ ./ncsa/hdf/hdflib/HDFDeflateCompInfo.java \ ./ncsa/hdf/hdflib/HDFDeprecated.java \ ./ncsa/hdf/hdflib/HDFException.java \ ./ncsa/hdf/hdflib/HDFIMCOMPCompInfo.java \ ./ncsa/hdf/hdflib/HDFJPEGCompInfo.java \ ./ncsa/hdf/hdflib/HDFSZIPCompInfo.java \ ./ncsa/hdf/hdflib/HDFJavaException.java \ ./ncsa/hdf/hdflib/HDFLibrary.java \ ./ncsa/hdf/hdflib/HDFLibraryException.java \ ./ncsa/hdf/hdflib/HDFNBITChunkInfo.java \ ./ncsa/hdf/hdflib/HDFNBITCompInfo.java \ ./ncsa/hdf/hdflib/HDFNativeData.java \ ./ncsa/hdf/hdflib/HDFNewCompInfo.java \ ./ncsa/hdf/hdflib/HDFNotImplementedException.java \ ./ncsa/hdf/hdflib/HDFOldCompInfo.java \ ./ncsa/hdf/hdflib/HDFOldRLECompInfo.java \ ./ncsa/hdf/hdflib/HDFRLECompInfo.java \ ./ncsa/hdf/hdflib/HDFSKPHUFFCompInfo.java \ ./ncsa/hdf/hdflib/HDFTable.java \ ./ncsa/hdf/object/Attribute.java \ ./ncsa/hdf/object/CompoundDS.java \ ./ncsa/hdf/object/DataFormat.java \ ./ncsa/hdf/object/Dataset.java \ ./ncsa/hdf/object/Group.java \ ./ncsa/hdf/object/h4/H4GRImage.java \ ./ncsa/hdf/object/h4/H4Group.java \ ./ncsa/hdf/object/h4/H4SDS.java \ ./ncsa/hdf/object/h4/H4Vdata.java \ ./ncsa/hdf/object/h5/H5CompoundDS.java \ ./ncsa/hdf/object/h5/H5Group.java \ ./ncsa/hdf/object/h5/H5ScalarDS.java \ ./ncsa/hdf/object/HObject.java \ ./ncsa/hdf/object/ScalarDS.java \ ./ncsa/hdf/object/Metadata.java \ ./ncsa/hdf/object/FileFormat.java \ ./ncsa/hdf/object/h4/H4File.java \ ./ncsa/hdf/object/h5/H5File.java \ ./ncsa/hdf/object/Datatype.java \ ./ncsa/hdf/object/h4/H4Datatype.java \ ./ncsa/hdf/object/h5/H5Datatype.java \ ./ncsa/hdf/object/nc2/*.java \ ./ncsa/hdf/object/fits/*.java \ ./ncsa/hdf/view/DataOptionDialog.java \ ./ncsa/hdf/view/HDFView.java \ ./ncsa/hdf/view/ImageView.java \ ./ncsa/hdf/view/TableView.java \ ./ncsa/hdf/view/TextView.java \ ./ncsa/hdf/view/TreeView.java \ ./ncsa/hdf/view/ViewManager.java \ ./ncsa/hdf/view/ViewProperties.java \ ./ncsa/hdf/view/NewAttributeDialog.java \ ./ncsa/hdf/view/NewDatasetDialog.java \ ./ncsa/hdf/view/NewDatatypeDialog.java \ ./ncsa/hdf/view/NewLinkDialog.java \ ./ncsa/hdf/view/NewTableDataDialog.java \ ./ncsa/hdf/view/NewFileDialog.java \ ./ncsa/hdf/view/NewGroupDialog.java \ ./ncsa/hdf/view/DefaultFileFilter.java \ ./ncsa/hdf/view/FileConversionDialog.java \ ./ncsa/hdf/view/MathConversionDialog.java \ ./ncsa/hdf/view/NewImageDialog.java \ ./ncsa/hdf/view/UserOptionsDialog.java \ ./ncsa/hdf/view/Tools.java \ ./ncsa/hdf/view/Chart.java \ ./ncsa/hdf/view/DataView.java \ ./ncsa/hdf/view/DefaultImageView.java \ ./ncsa/hdf/view/DefaultMetaDataView.java \ ./ncsa/hdf/view/DefaultPaletteView.java \ ./ncsa/hdf/view/DefaultTableView.java \ ./ncsa/hdf/view/DefaultTextView.java \ ./ncsa/hdf/view/DefaultTreeView.java \ ./ncsa/hdf/view/MetaDataView.java \ ./ncsa/hdf/view/HelpView.java \ ./ncsa/hdf/view/PaletteView.java \ ./test/object/misc/TestH4File.java \ ./test/object/misc/TestH5File.java \ hdf-java-2.11.0/lib/0000755002344600011330000000000012441355011012313 5ustar byrnhdfhdf-java-2.11.0/lib/macosx/0000755002344600011330000000000012441355005013610 5ustar byrnhdfhdf-java-2.11.0/lib/macosx/run_otool.sh0000755002344600011330000000017110337704710016171 0ustar byrnhdf otool -L libjhdf5.jnilib otool -L libhdf5.dylib otool -L libdf.dylib otool -L libmfhdf.dylib otool -L libjhdf.jnilib hdf-java-2.11.0/lib/macosx/run_soft_links.sh0000755002344600011330000000076610337704710017222 0ustar byrnhdf rm libhdf5.0.dylib rm libhdf5.dylib rm libsz.2.dylib rm libsz.dylib rm libdf.0.dylib rm libdf.dylib rm libmfhdf.0.dylib rm libmfhdf.dylib rm libz.dylib ln -s libhdf5.0.0.0.dylib libhdf5.0.dylib ln -s libhdf5.0.0.0.dylib libhdf5.dylib ln -s libsz.2.0.0.dylib libsz.2.dylib ln -s libsz.2.0.0.dylib libsz.dylib ln -s libdf.0.0.0.dylib libdf.0.dylib ln -s libdf.0.0.0.dylib libdf.dylib ln -s libmfhdf.0.0.0.dylib libmfhdf.0.dylib ln -s libmfhdf.0.0.0.dylib libmfhdf.dylib ln -s libz.1.dylib libz.dylib hdf-java-2.11.0/lib/macosx/run_install_name_tool.sh0000755002344600011330000000305010337704710020537 0ustar byrnhdf #hdf5 jni names: libjhdf5.jnilib install_name_tool -change /afs/.ncsa.uiuc.edu/projects/hdf/java/java9/xcao/hdf5-1.6.4-build/pommier_ibm/lib/libhdf5.0.dylib libhdf5.0.dylib libjhdf5.jnilib install_name_tool -change /afs/ncsa.uiuc.edu/projects/hdf/packages/szip/Darwin-7.7/lib/libsz.2.dylib libsz.2.dylib libjhdf5.jnilib install_name_tool -change /usr/lib/libz.1.dylib libz.1.dylib libjhdf5.jnilib # hdf5 lib names: libhdf5.dylib install_name_tool -change /afs/ncsa.uiuc.edu/projects/hdf/packages/szip/Darwin-7.7/lib/libsz.2.dylib libsz.2.dylib libhdf5.dylib install_name_tool -change /usr/lib/libz.1.dylib libz.1.dylib libhdf5.dylib #hdf5 jni names: libjhdf.jnilib install_name_tool -change /afs/.ncsa.uiuc.edu/projects/hdf/java/java8/xcao/hdf4_shared/lib/libmfhdf.0.dylib libmfhdf.0.dylib libjhdf.jnilib install_name_tool -change /afs/.ncsa.uiuc.edu/projects/hdf/java/java8/xcao/hdf4_shared/lib/libdf.0.dylib libdf.0.dylib libjhdf.jnilib install_name_tool -change /afs/ncsa.uiuc.edu/projects/hdf/packages/szip/Darwin-7.7/lib/libsz.2.dylib libsz.2.dylib libjhdf.jnilib install_name_tool -change /sw/lib/libjpeg.62.dylib libjpeg.62.dylib libjhdf.jnilib install_name_tool -change /usr/lib/libz.1.dylib libz.1.dylib libjhdf.jnilib #hdf5 lib names: libdf.dylib install_name_tool -change /sw/lib/libjpeg.62.dylib libjpeg.62.dylib libdf.dylib install_name_tool -change /sw/lib/libjpeg.62.dylib libjpeg.62.dylib libmfhdf.dylib install_name_tool -change /usr/lib/libz.1.dylib libz.1.dylib libdf.dylib install_name_tool -change /usr/lib/libz.1.dylib libz.1.dylib libmfhdf.dylib hdf-java-2.11.0/lib/ext/0000755002344600011330000000000012441355010013112 5ustar byrnhdfhdf-java-2.11.0/UserMacros.cmake0000644002344600011330000000126612326542262014647 0ustar byrnhdf######################################################## # Include file for user options ######################################################## #----------------------------------------------------------------------------- # Option to Build with User Defined Values #----------------------------------------------------------------------------- MACRO (MACRO_USER_DEFINED_LIBS) set (USER_DEFINED_VALUE "FALSE") ENDMACRO (MACRO_USER_DEFINED_LIBS) #------------------------------------------------------------------------------- option (BUILD_USER_DEFINED_LIBS "Build With User Defined Values" OFF) if (BUILD_USER_DEFINED_LIBS) MACRO_USER_DEFINED_LIBS () endif (BUILD_USER_DEFINED_LIBS) hdf-java-2.11.0/samples/0000755002344600011330000000000012441355005013214 5ustar byrnhdfhdf-java-2.11.0/samples/hdf5_test.h50000644002344600011330000664630312267506521015370 0ustar byrnhdf‰HDF  ÿÿÿÿÿÿÿÿÃLÿÿÿÿÿÿÿÿ €`HEAP@€A notearraysdatatypesimagesdsetNotesÀTREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿà( V`p @C@€ -ó»Nû%xSNOD8Ð`( Â¨(ЀÆHÆHEAP€Ø[< (^CfGˆ ¨ €ÆHÆThis file was created for testing purpose. fdaIt contains groups, datatypes, datasets, links.jfdjsakfldsaj; fjdklsajfdkl;as fjdksaljfdkl;as fjdsklajfdkls;a jfdklsa;jfdlsa fdsajfdlk;sa ð?@à?€?@UUUUUUÕ?€@UUUUUU@Ð?A@š™™™™™É?€A ÍÌÌÌÌÌ@UUUUUUÅ?ÈA «ªªªªª@’$I’$IÂ?B %I’$I’@À?DB €@ÇqÇq¼?€B ÇqÇq@ š™™™™™¹?¢Bffffff@é@Y@ÈBd@Y@e Y@ÊBe Y@fUUUUUY@ÐBfUUUUUY@gY@ÚBgY@hÍÌÌÌÌ Y@èBhÍÌÌÌÌ Y@i«ªªªª Y@úBi«ªªªª Y@j’$I’$ Y@Cj’$I’$ Y@5Y@CkY@lrÇqY@$ClrÇqY@mfffffY@5CmfffffY@È i@HCÈ i@Éi@ICÉi@Ê«ªªªª i@LCÊ«ªªªª i@Ëi@QCËi@Ìfffffi@XCÌfffffi@ÍUUUUUi@aCÍUUUUUi@ÎI’$I’i@lCÎI’$I’i@Ïi@yCÏi@Ð9Žã8Ži@„CÐ9Žã8Ži@Ñ33333i@€ŒCÑ33333i@ ÿÿÿÿhØð •ã A•ãCfG 0IMAGE_VERSION1.2 0CLASSIMAGE ÿÿÿÿë:`8•ã•ã ž”•ãª/\M 0CLASSIMAGEXÙØ€` @testthis is a test TREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÈÛ=hSNODh0xÈK;ÿÿÿÿ  d2 d2CfG 8test test 0ÿÿÿÿ d2  fd2CfGxÿÿÿÿ  d2  @´d2 CfGpÿÿÿÿ*h  î  CfGxHEAPÈH5T_NATIVE_INT/t9òΡ:fff?š™Ù?ff&@`@ÍÌŒ@ff¦@33Ã@à@š™ù@33 Aš™A(AÍÌ4A33CAš™QAff^AÍÌlAš™yA„A33‹Aš™‘AÍ̘A33ŸAff¦AÍ̬A´AffºAš™ÁAÈA33ÏAš™ÕAÍÌÜA33ãAš™éAÍÌðA33÷Aš™ýAffBš™BÍÌB B33BÍÌBB33BffBš™BÍÌ"B&Bš™Ù?`@ff¦@à@33 A(A33CAff^Aš™yA33‹AÍ̘Aff¦A´Aš™ÁA33ÏAÍÌÜAš™éA33÷AffBÍÌB33BBffBÍÌ"B33)B33/Bš™5Bš™;BBBHBNBTBZBš™_Bš™eB33kBÍÌpBffvBš™{Bš™€B33ƒBÍÌ…BffˆB‹BffBÍÌB33’Bš™”B—B{.>ff&@`@š™ù@(Aš™QAš™yAš™‘Aff¦AffºA33ÏA33ãA33÷Aš™B33B33BÍÌ"Bff,Bš™5BÍÌ>BHBÍÌPBZBffbB33kBš™sBš™{BÍÌBÍÌ…Bš™‰BffB‘Bš™”B˜Bff›Bš™žBÍÌ¡BÍ̤BÍ̧Bš™ªB33­BÍ̯B33²Bš™´BÍ̶BÍ̸BÍ̺Bš™¼B33¾BÍÌ¿B33³>ff¦@à@(Aff^A33‹Aff¦Aš™ÁAÍÌÜA33÷AÍÌBBÍÌ"B33/Bš™;BHBTBš™_B33kBffvBš™€BÍÌ…B‹BÍÌBš™”B33™Bš™BÍÌ¡BÍÌ¥Bš™©B33­Bš™°BÍ̳BÍ̶Bff¹B¼B33¾B33ÀBÂBš™ÃBÅBÆBÇBš™ÇBÍÌÇBÈBÍÌÇBš™ÇBÇBÆB¸?š™ù@(Aš™QA33‹AÍ̬A33ÏAÍÌðAÍÌB33B33)BÍÌ8BHBÍÌVBš™eBš™sBš™€B33‡BffBff“B33™Bš™žBÍÌ£Bš™¨B33­Bff±B33µBÍ̸B¼BÍ̾B33ÁB33ÃBÅB33ÆB33ÇBÍÌÇBÈBÍÌÇB33ÇB33ÆBÅB33ÃB33ÁBÍ̾B¼BÍ̸B33µBff±B33­Bš™¨B333?(Aff^Aš™yAff¦A33ÏA33÷A33BÍÌ"Bš™5BHBZB33kBš™{BÍÌ…BffBš™”Bff›BÍÌ¡BÍ̧B33­B33²BÍ̶BÍ̺B33¾B33ÁBš™ÃBš™ÅBÇBÍÌÇBÈBÍÌÇBÇBš™ÅBš™ÃB33ÁB33¾BÍ̺BÍ̶B33²B33­BÍ̧BÍÌ¡Bff›Bš™”BffBÍÌ…Bš™{B33kBZBR¸^?š™QA33‹Aš™‘Aš™ÁAÍÌðA33B&Bš™;BÍÌPBš™eB33yBÍÌ…Bš™ŽB—Bš™žBÍÌ¥Bff¬B33²Bff·B¼BÍÌ¿BÍÌÂB33ÅBÇBÍÌÇBÈBffÇBÆBÄB33ÁBš™½Bff¹Bš™´B¯Bš™¨BÍÌ¡BffšB33’Bš™‰Bš™€BnBZBÍÌDB33/B33BffBš™ÕAff¦AÍÌlAff†?š™yAff¦Aff¦AÍÌÜAÍÌBÍÌ"Bš™;BTB33kBš™€B‹Bš™”Bš™BÍÌ¥B33­BÍ̳Bff¹B33¾BÂBÅBÇBÍÌÇBÍÌÇBÇBÅBÂB33¾Bff¹BÍ̳B33­BÍÌ¥Bš™Bš™”B‹Bš™€B33kBTBš™;BÍÌ"BÍÌBÍÌÜAff¦Aff^Aà@àÀff^Áff¦ÁÍÌÜÁö(œ?š™‘Aš™ÁAffºA33÷A33Bš™5BÍÌPB33kBÍÌBffB˜BÍÌ¡Bš™ªB33²BÍ̸B33¾BffÂBš™ÅBffÇBÈBffÇBš™ÅBffÂB33¾BÍ̸B33²Bš™ªBÍÌ¡B˜BffBÍÌB33kBÍÌPBš™5B33B33÷AffºAš™yAš™ù@š™ùÀš™yÁffºÁ33÷Á33š™5ÂÍÌPÂ33kÂÍÌÂ…ë±?ff¦AÍÌÜA33ÏAÍÌB33)BHBš™eBš™€BffB33™BÍÌ£B33­B33µB¼B33ÁBÅB33ÇBÈB33ÇBÅB33ÁB¼B33µB33­BÍÌ£B33™BffBš™€Bš™eBHB33)BÍÌB33ÏA33‹A33 A33 Á33‹Á33ÏÁÍÌÂ33)ÂHš™eš™€ÂffÂ33™ÂÍÌ£Â33­Â33µÂ®Ç?ffºA33÷A33ãABÍÌ8BZB33yB‹B˜BÍÌ£B®BÍ̶Bš™½BÍÌÂB33ÆBÍÌÇBš™ÇBš™ÅBš™ÁB¼Bš™´Bff«BÍÌ Bš™”B33‡BÍÌpBÍÌPB33/B B33ÏA„Aà@ff&À33CÁÍ̬Á33÷Áš™ÂBÂffbš™€Âš™ŽÂff›ÂÍ̦š™°ÂÍ̸Â33¿ÂÄÂÇÂÈÂR¸Þ?33ÏAÍÌB33÷AÍÌ"BHB33kBÍÌ…Bš™”BÍÌ¡B33­BÍ̶B33¾Bš™ÃBÇBÈBÇBš™ÃB33¾BÍ̶B33­BÍÌ¡Bš™”BÍÌ…B33kBHBÍÌ"B33÷Aff¦A(A(Áff¦Á33÷ÁÍÌ"ÂHÂ33kÂÍ̅š™”ÂÍÌ¡Â33­ÂÍ̶Â33¾Âš™ÃÂÇÂÈÂÇš™ÃÂ33¾ÂÍ̶Âázô?33ãABš™B33/BÍÌVBš™{Bš™ŽBš™Bš™ªB33µBš™½Bš™ÃBÇBÈB33ÆBÂBff»B33²BÍ̦B33™Bš™‰BÍÌpB33KBÍÌ"BÍÌðAÍ̘Aš™ù@`ÀÍÌlÁ33ÏÁÍÌš™;ÂffbÂ33ƒÂff“ÂÍ̡®Â33¸ÂÍÌ¿ÂÅš™ÇÂÍÌÇÂ33ÅÂ33ÀÂÍ̸¯ÂÍ̢š™”š™„¸@33÷AÍÌ"B33Bš™;Bš™eBÍÌ…B—BÍÌ¥B33²B¼BÍÌÂBÇBÈBÆB33ÁBff¹B¯BÍÌ¡B33’Bš™€BZB33/BffBff¦A33 A`Àš™yÁÍÌÜÁffÂHÂÍÌp‹Âff›Âš™©Â33µÂ33¾ÂffÄš™ÇÂÍÌÇÂÅÂ33¿ÂÍ̶Âff«Âš™ÂffÂffvÂNÂÍÌ"š™éÁ@š™B33/B33BHBš™sBffBš™žB33­BÍ̸B33ÁB33ÆBÈB33ÆB33ÁBÍ̸B33­Bš™žBffBš™sBHB33B33ÏAš™QAš™QÁ33ÏÁ33ÂHš™sÂffš™žÂ33­ÂÍ̸Â33ÁÂ33ÆÂÈÂ33ÆÂ33ÁÂÍ̸Â33­Âš™žÂffš™sÂHÂ33Â33ÏÁš™QÁš™QAHá@33Bš™;BÍÌ"BTBš™€Bš™”BÍÌ¥BÍ̳B33¾BÅBÍÌÇBÇBÂBff¹B33­Bš™B‹B33kBš™;BÍÌBff¦Aà@àÀff¦ÁÍÌš™;Â33k‹š™Â33­Âff¹ÂÂÂÇÂÍÌÇÂÅÂ33¾ÂÍ̳ÂÍ̥š™”š™€ÂTÂÍÌ"ÂÍÌÜÁff^Áff^AÍÌÜAÍÌ"BTBÂ%@33BHBff,Bš™_B33‡Bff›Bff¬Bff¹BffÂB33ÇBš™ÇBš™ÃBff»B¯Bš™žB‹BffhBš™5Bš™ýA33‹Aff&@33CÁš™ÕÁÍÌ"ÂÍÌVÂ33ƒÂ˜Âš™©Âff·Â33ÁÂÍÌÆÂÍÌÇš™ÄÂ33½Âff±ÂÍ̡š™ŽÂÍÌpÂÍÌ>ÂÍÌÂ33ŸÁff¦Àš™Aš™ÁA33BNBff~Bš™”BÍ̦B×£0@ÍÌ"BTBš™5B33kBffBÍÌ¡B33²B33¾Bš™ÅBÈBš™ÅB33¾B33²BÍÌ¡BffB33kBš™5B33÷Aš™yAš™yÁ33÷Áš™5Â33kÂffÂÍÌ¡Â33²Â33¾Âš™ÅÂÈš™ÅÂ33¾Â33²ÂÍÌ¡ÂffÂ33kš™5Â33÷Áš™yÁš™yA33÷Aš™5B33kBffBÍÌ¡B33²B33¾Bš™ÅB„AffBÍÌ>BffvBff“BÍ̧Bff·BÂBffÇB33ÇBš™ÁBÍ̶BÍ̦B33’Bš™sBš™;Bš™ýAš™yAfff¿33‹Áš™ÂBÂ33yš™”š™¨Â33¸Âffš™ÇÂÇÂ33Á¶ÂÍ̥‘ÂÍÌpÂÍÌ8Â33÷ÁÍÌlÁš™Ù?š™‘AÍÌBÍÌDBš™{BÍÌ•Bš™©BÍ̸BÍÌÂBš™ÇBÇBÍÌÀB33‹AÍÌBHBš™€B33™B33­B¼BÅBÈBÅB¼B33­B33™Bš™€BHBÍÌB33‹A33‹ÁÍÌÂHš™€Â33™Â33­Â¼ÂÅÂÈÂżÂ33­Â33™Âš™€ÂHÂÍÌÂ33‹Á33‹AÍÌBHBš™€B33™B33­B¼BÅBÈBÅB¼B33­B33™Bš™‘A33BÍÌPBÍÌ…Bš™žB33²BÍÌ¿BÇBffÇB33ÁBš™´BÍÌ¡Bš™‰BZB33Bff¦Aff&@š™yÁš™ÂHÂÍÌÂff›ÂÍ̯Â33¾Â33ÆÂÍÌÇÂffÂÂÍ̶ÂÍ̤ÂffÂffbÂÍÌ"ÂffºÁff¦Àš™QA33÷AÍÌ>Bš™{B˜B33­Bš™¼Bš™ÅBÈBš™ÃBÍ̸BÍ̧B‘B33kBff,BÍ̘ABZB‹BÍÌ£BÍ̶BÍÌÂBÍÌÇBš™ÅB¼Bff«Bš™”BÍÌpB33/B33ÏAà@33CÁ33÷ÁBš™€Âff›Âš™°Â33¿ÂÇÂ33ÇÂ33ÀÂ33²Âš™Â33ƒÂHÂffÂff^Áff¦@š™ÁA33)B33kB33’Bš™©BÍ̺BÅBÈBš™ÃB33¸BÍÌ¥BffBš™_BffBff¦Aš™Ù?33ŸAffBffbBÍÌBš™¨BÍ̺B33ÅBÍÌÇBffÂB33µBÍÌ BÍÌ…B33KBffBš™QAàÀš™ÕÁš™5Â33yÂ33™ÂÍ̯Â33¿ÂÇÂÇÂÍ̾¯˜ÂffvÂff2Â33ÏÁ33ÃÀff^Aš™BNB33‡BÍÌ¡B¶BÍÌÂBÈBÅBºBÍ̧Bš™ŽBš™_B33BÍ̘Afff¿ff¦Áš™Âff¦AÍÌ"B33kBš™”B33­B33¾BÇBÇB33¾B33­Bš™”B33kBÍÌ"Bff¦Aff¦ÁÍÌ"Â33kš™”Â33­Â33¾ÂÇÂÇÂ33¾Â33­Âš™”Â33kÂÍÌ"Âff¦Áff¦AÍÌ"B33kBš™”B33­B33¾BÇBÇB33¾B33­Bš™”B33kBÍÌ"Bff¦Aff¦ÁÍÌ"Â33kš™”ÂÍ̬A33)Bš™sB33™Bff±B33ÁBÍÌÇBÅBÍ̸BÍÌ£B33‡BHBÍÌðA33 Aš™QÁÍÌÂÍÌVÂffš™¨Â¼Â33ÆÂ33ÇÂÍ̾Â33­Âff“š™eÂ33Â33‹ÁÍÌŒ@33ÏAÍÌ8Bš™€Bš™žB33µB33ÃBÈB33ÃB33µBš™žBš™€BÍÌ8B33ÏAÍÌŒ@33‹Á33š™eÂff“Â33­ÂÍ̾´A33/Bš™{Bš™B33µBš™ÃBÈBÂB33²B33™BÍÌpBÍÌ"BÍ̘A`À33ÏÁš™;Â33ƒÂÍÌ¡Â33¸ÂÅÂÍÌÇÂ33À¯š™”š™eš™yÁà@š™éAHBffˆBÍÌ¥BÍ̺BÆB33ÇB33¾Bff«BÍÌBZBÍÌB33CA(ÁffÂTÂffš™©Â33½ÂÇš™ÆÂffºAš™5BÍÌBÍÌ¡BÍ̸Bš™ÅBffÇB33¾Bš™ªBffBÍÌPB33÷Aš™ù@š™yÁ33Â33k˜Â33²ÂffÂÂÈÂffÂÂ33²Â˜Â33kÂ33š™yÁš™ù@33÷AÍÌPBffBš™ªB33¾BffÇBš™ÅBÍ̸BÍÌ¡BÍÌBš™5BffºAffºÁš™5ÂÍÌÂÍÌ¡ÂÍ̸š™ÅÂffÇÂ33¾Âš™ªÂš™ÁAš™;BÍÌ…BÍÌ¥B¼BÇBÆBff¹BÍÌ¡Bš™€B33/Bff¦A`ÀÍÌÜÁH‹š™©Â33¾Âš™ÇÂÅÂÍ̶š™ÂffvÂÍÌ"Â33‹Áà@33÷ATBÍÌB33­B33ÀBÍÌÇBš™ÃBÍ̳B33™B33kBBff^A(ÁÍÌš™_š™”š™°ÂÂÂÈš™°Âš™”š™_ÂÈABBš™‰Bš™©BÍ̾BÍÌÇBÄBÍ̳B˜Bš™eB B(AÍÌlÁffš™sš™Âff·Âš™ÅÂǼÂÍ̤Â33ƒÂff2Âff¦ÁÍÌŒ@š™éAÍÌPBÍÌB®B33ÁBÈBÂBÍ̯B33’BÍÌVB33÷A33Ã@Í̘Áff,š™€ÂÍÌ¢ÂÍ̺ÂÍÌÆÂÆÂÍ̸ÂÍÌŸÂ33yÂÍÌ"„Á33ÏAHBffB33­B33ÁBÈB33ÁB33­BffBHB33ÏA33ÏÁHÂffÂ33­Â33ÁÂÈÂ33ÁÂ33­ÂffÂHÂ33ÏÁ33ÏAHBffB33­B33ÁBÈB33ÁB33­BffBHB33ÏA33ÏÁHÂffÂ33­Â33ÁÂÈÂ33ÁÂ33­ÂffÂHÂ33ÏÁ33ÏAš™ÕANB‘Bš™°B33ÃBÍÌÇBš™½BÍÌ¥BÍÌB33)B„A(ÁÍÌÂÍÌpš™žÂff¹ÂÍÌÆÂš™Å¶Â33™ÂffbÂffÂ33ÃÀff¦AÍÌ8BffˆBš™ªB33ÀBÈB33ÁBff¬B‹BÍÌ>B´AÍÌŒÀ33÷ÁÍÌ\—š™´ÂÅÂÇÂÍ̺ÂÍÌ ÂffvÂ33Â33CÁÍÌlAÍÌ"Bff~BÍÌÜATBš™”BÍ̳BÅBÇBff¹Bš™B33kBÍÌBà@ff¦Áš™;‹Â33­ÂÂÂÍÌÇÂ33¾ÂÍ̥š™€ÂÍÌ"Âff^Áff^AÍÌ"Bš™€BÍÌ¥B33¾BÍÌÇBÂB33­B‹Bš™;Bff¦AàÀÍÌÂ33kš™Âff¹ÂÇÂÅÂÍ̳š™”ÂTÂÍÌÜÁÍÌÜATBš™”BÍ̳B33ãAZB˜BÍ̶B33ÆBš™ÅBš™´Bš™”BÍÌPB33ÏAff&À33÷ÁffbÂff›ÂÍ̸ÂÇš™ÄÂ33²Â‘ÂHÂffºÁff¦@š™B33kBš™žBÍ̺BffÇBš™ÃBÍ̯BffBÍÌ>Bff¦Aš™ùÀ33š™sÂÍ̡š™¼ÂÍÌÇÂffÂÂ33­Âš™‰Âš™5š™‘Á(A33Bš™{BÍ̤B33¾BÈBš™éAš™_Bff›Bff¹B33ÇBš™ÃB¯B‹Bš™5B33‹A33CÁÍÌ"Â33ƒÂš™©Â33ÁÂÍÌÇÂ33½ÂÍÌ¡ÂÍÌpÂÍÌÂff¦Àš™ÁANBš™”B33µBÆBš™ÅBÍ̳B33’BHB´AàÀ33ÂffvÂÍÌ£Â33¾ÂÈÂ33ÀÂÍ̧š™€ÂffÂ(ÁÍ̘Aš™;BffBš™°BffÄBÇB33¸BÍÌðAš™eBš™žB¼BÍÌÇB33ÁBš™¨Bš™€B33B33 AÍ̬ÁHÂff“Â33µÂ33ÆÂÅÂff±ÂffÂÍÌ8Â33‹Áš™QA33)B33‡B33­B33ÃB33ÇBÍ̸B33™BÍÌVB33ÏAÍÌŒÀÍÌš™sÂÍÌ£ÂÍ̾ÂÈÂÍ̾ÂỊ́š™sÂÍÌÂÍÌŒÀ33ÏAÍÌVB33™BÍ̸B33ÇB33ÃB33­B33‡B33÷A33kBÍÌ¡B33¾BÈB33¾BÍÌ¡B33kB33÷A33÷Á33kÂÍÌ¡Â33¾ÂÈÂ33¾ÂÍÌ¡Â33kÂ33÷Á33÷A33kBÍÌ¡B33¾BÈB33¾BÍÌ¡B33kB33÷A33÷Á33kÂÍÌ¡Â33¾ÂÈÂ33¾ÂÍÌ¡Â33kÂ33÷Á33÷A33kBÍÌ¡B33¾BÈB33¾BÍÌ¡B33kB33÷Aš™ýAÍÌpBÍ̤B33ÀBÍÌÇBÍ̺BffšBTBffºA33 Áš™ÂÍ̅®ÂffÄÂ33ÆÂÍ̳š™ŽÂš™5ÂÍÌlÁ33‹AÍÌ>B33’B¶BÇB33ÃBff«BÍÌBB33Ã@33ÏÁÍÌ\š™Âš™¼ÂÈÂÍ̾ÂÍÌ¡Âffhš™éÁff&@ÍÌB33yBÍ̧Bš™ÁBš™ÇBÍ̸B—B33KBff¦AÍÌ4ÁffBffvBÍ̧BÂB33ÇBÍ̶B33’Bš™;Bš™yA33‹ÁBš™”Â33¸Âš™ÇÂ33ÁÂÍÌ¥ÂÍÌpÂ33÷Áš™Ù?ÍÌBš™{Bš™©BÍÌÂBÇB33µBÍÌBš™5Bff^AÍ̘ÁH—Âff¹ÂÍÌÇÂ33ÀÂÍÌ£Â33kš™éÁ`@33Bš™€Bff«Bš™ÃBš™ÆBÍ̳BffB33/B33CAff¦ÁNš™Bš™{Bš™ªBš™ÃB33ÆB33²Bš™‰BÍÌ"Bš™ù@33ÏÁffbÂÍÌ¡ÂÍÌ¿ÂÍÌÇÂÍ̸š™”ÂÍÌ>š™yÁš™‘AHB˜BÍ̺BÈB33¾Bš™žBZBffºA(Áff,Âffš™´ÂÇÂffÂÂÍ̧š™sÂ33÷Áff&@33BÍÌB33­Bš™ÄBš™ÅBÍ̯BÍÌ…B33Bff¦@33ãÁ33kÂÍ̤ÂÍÌBš™€B33­BÅBÅB33­Bš™€BÍÌBÍÌš™€Â33­ÂÅÂÅÂ33­Âš™€ÂÍÌÂÍÌBš™€B33­BÅBÅB33­Bš™€BÍÌBÍÌš™€Â33­ÂÅÂÅÂ33­Âš™€ÂÍÌÂÍÌBš™€B33­BÅBÅB33­Bš™€BÍÌBÍÌš™€Â33­ÂÅ B33ƒBÍ̯BÆB33ÃBÍ̧BnBÍÌÜAš™ùÀ33)š™ŽÂÍ̶š™ÇÂ33¿Âš™žÂTÂ33ŸÁš™yAÍÌDB33™Bš™¼BÈBºBš™”BÍÌ8B33CAffºÁš™_ÂÍÌ¢Â33ÁÂÇÂÍ̳š™‰ÂffÂÍÌŒÀ33÷A33yBff«Bš™ÄBÅBff¬Bš™{Bš™ýA`À33ÂffˆÂ³ÂÇš™ÁÂ33BÍÌ…B33²BÇB33ÁBÍÌ¡BZBff¦Aš™yÁHÂff›Â33¾ÂÍÌÇÂÍ̶ÂffÂÍÌ"Âff¦À33÷Aš™{B33­Bš™ÅBš™ÃBÍ̧B33kB33ÏA(Áš™5š™”ÂÍ̺ÂÈÂÍ̺š™”š™5Â(Á33ÏA33kBÍ̧Bš™ÃBš™ÅB33­Bš™{B33÷Aff¦ÀÍÌ"ÂffÂÍ̶ÂÍÌÇÂ33¾Âff›ÂÍÌBffˆBš™´Bš™ÇBÍ̾Bff›BÍÌDBff^AffºÁš™eÂÍ̦š™ÃÂ33ÅÂff«Âš™sÂÍÌÜÁš™Aš™5BÍÌ•B¼BÈB33¸Bš™ŽBÍÌ"BÍÌŒ@ffÂÍÌš™°ÂÍÌÆÂ33ÁÂÍÌ ÂTš™‘ÁÍ̘AÍÌVBÍÌ¡Bš™ÁBš™ÆBÍ̯Bš™€Bš™ýAff¦À&ÂÍÌÂÍ̸ÂÈÂff»Âš™”Âff2ÂB‹BÍ̶BÍÌÇB¼Bš™”B33/Bà@33÷Áš™€Âš™°ÂÇÂ33Àš™ÂHÂff^Áš™ÁA33kBš™©BÅBš™ÃBÍÌ¥Bš™_Bff¦A33‹ÁTÂÍÌ¡ÂÂÂÆÂ33­ÂffvÂÍÌÜÁ(Aš™;B33™B33¾Bš™ÇBÍ̳BÍÌ…BÍÌB`ÀÍÌ"ÂÍÌÂff¹ÂÈÂff¹ÂÍÌÂÍÌ"Â`À33BffBÍ̸BÈBÍ̸BffB33B33ÂffÂÍ̸ÂÈÂÍ̸ÂffÂ33Â33BffBÍ̸BÈBÍ̸BffB33B33ÂffÂÍ̸ÂÈÂÍ̸ÂffÂ33Â33BffBÍ̸BÈBÍ̸BffB33B33ÂffÂÍ̸ÂÈÂÍ̸ÂffÂ33Â33BffBÍÌBÍ̺BÍÌÇB33µBÍÌ…BffBàÀš™5Â33™Â33¿ÂǯÂffvÂ33ÏÁff^ANBÍÌ¡BÍÌÂBÅBÍ̧Bš™_BÍ̘Aff¦Áš™eš™©Âš™ÅÂÂÂÍÌŸÂHÂ33CÁÍÌÜAš™{Bš™°B33ÇB33¾B—B33/Bff¦@ÍÌÂffˆÂÍ̶ÂÈÂff¹Âffš™Ù?ÍÌ"B33’Bš™B33’Bš™¼Bš™ÇBff±Bš™{Bš™ÕAff^ÁÍÌPÂÍÌ£ÂÄš™ÃÂÍÌ¢ÂNš™QÁÍÌÜAff~B33²Bš™ÇB¼B‘BffBfff¿ÍÌ"Âff“Â33½ÂffÇš™°Â33yÂ33ÏÁÍÌlATBÍ̤BffÄB33ÃBÍÌ¡B33KB33CA33ãÁš™€Â³ÂÍÌÇÂff»ÂÍÌÂ33š™Ù?&Bš™”Bš™½BÍÌ"Bš™”B33¾BÇB33­B33kBff¦Aff¦Á33kÂ33­ÂÇÂ33¾Âš™”ÂÍÌ"ÂÍÌ"Bš™”B33¾BÇB33­B33kBff¦Aff¦Á33kÂ33­ÂÇÂ33¾Âš™”ÂÍÌ"ÂÍÌ"Bš™”B33¾BÇB33­B33kBff¦Aff¦Á33kÂ33­ÂÇÂ33¾Âš™”ÂÍÌ"ÂÍÌ"Bš™”B33¾BÇB&B—BÍÌ¿BÆBš™¨BZBÍÌlAÍÌÜÁÍÌÂ33µÂÈÂÍ̶š™„š™éÁš™QATBÍ̦Bš™ÅBÍÌÀB33™Bff,Bš™Ù?š™š™”ÂÍ̾š™ÆÂš™ªÂš™_„Á33ÏAff~BÍ̳BÈB33¸B33‡B33÷AÍÌ4ÁNÂÍ̤ÂÅš™ÁÂff›Âff2Â`À33B33’Bš™½BÇBff¬B33)B33™B33ÁBÅBÍÌ£BHB33 AÍÌÂff¼Â33ÇÂ33­Âš™eÂ33‹Á33ÏAš™€B33µBÈB33µBš™€B33ÏA33‹Áš™eÂ33­Â33ǼÂffÂÍÌÂ33 AHBÍÌ£BÅB33ÁB33™B33)B33)Â33™Â33ÁÂÅÂÍÌ£ÂHÂ33 ÁÍÌBffB¼B33ÇB33­Bš™eBff,Bff›BffÂBš™ÃBš™žBš™5Bff&@ÍÌ"˜Â33Áš™ÄÂÍÌ¡ÂÍÌ>Âff¦À33Bš™”BÍÌ¿Bš™ÅBÍ̤BHBš™ù@33‘Â33¾Â33ÆÂÍ̧ÂÍÌPÂ(Áš™BffBš™¼BÇBš™ªBZBš™QA33÷Áš™‰ÂÍ̺ÂffÇÂ33­Âffbš™yÁ33ãAÍÌ…BÍ̸BÍÌÇBÍ̯B33kBš™‘A33/Bš™Bš™ÃBÂB33™BÍÌ"B`Àš™;ÂÍÌ¡ÂÅÂ33Àš™”ÂÂà@HBÍÌ¥BÆB33¾BÍÌBÍÌB(ÁTš™©ÂǼ‹Â33÷Áff^Aš™_B33­Bš™ÇBff¹BÍÌ…BÍÌÜA33‹Á33kš™°ÂÍÌÇÂÍ̶š™€Âš™ÁÁff¦AffvBÍ̳BÈBÍ̳BffvBff¦Aš™ÁÁff2BÍÌŸBš™ÄB33ÀBff“B33Bš™ÁTš™ªÂ33ǺÂÍ̅š™ÕÁÍ̘Aš™sBÍ̳BÈB33²BnB33‹A33ãÁffˆÂff»ÂÇš™¨ÂNš™ùÀBÍÌ•B33ÁBÄBš™Bff,Bš™Ù¿ÍÌ8ÂÍÌ¡Â33ÅÂ33¿Â‘ÂÍÌÂÍÌ4AZBff¬Bš™ÇBÍ̸B33ƒBÈAff¦Á33yš™5BÍÌ¡Bš™ÅB33¾BffB33÷Aš™yÁ33kÂ33²ÂÈÂ33²Â33kš™yÁ33÷AffB33¾Bš™ÅBÍÌ¡Bš™5Bš™5ÂÍ̡š™ÅÂ33¾ÂffÂ33÷Áš™yA33kB33²BÈB33²B33kBš™yA33÷ÁffÂ33¾Âš™ÅÂÍ̡š™5š™5BÍÌ¡Bš™ÅB33¾BffB33÷Aš™yÁ33kÂ33²ÂÍÌ8BÍÌ£B33ÆB¼B33‡B33ÏAÍ̬Áš™€ÂÍ̸Â33Çš™¨ÂHÂÍÌŒÀ33)Bš™žBÅBÍ̾BffBÍÌðA33‹Áš™sÂ33µÂÍÌÇÂ33­ÂÍÌVÂ33 Á33B33™B33ÃB33ÁBff“BÍÌBš™QÁš™eÂff±ÂÈÂff±Âš™eš™QÁÍÌBff“B33ÁB33ÃB33™B33B33 ÁÍÌVÂ33­ÂÍÌÇš™;BÍÌ¥BÇBff¹Bš™€Bff¦AÍÌÜÁ‹Â33¾ÂÅš™ÂÍÌ"Âà@TB33­BÍÌÇBÍ̳B33kBff^AÍÌš™”š™”ÂÍÌÂff^A33kBÍ̳BÍÌÇB33­BTBà@ÍÌ"š™ÂÅÂ33¾Â‹ÂÍÌÜÁff¦Aš™€Bff¹BÇBÍÌ¥Bš™;Bš™;ÂÍÌ¥ÂÇÂff¹ÂÍÌ>BÍ̧BffÇBÍ̶Bš™sBš™yAš™š™”ÂffÂÂ33Á‘Â33÷Áš™‘Aš™{BÍ̸BÇBÍ̤Bš™5Bff&ÀHš™ªÂÍÌÇš™´Â33kš™QÁ33B˜Bš™ÃBÍÌ¿BffB33ãAff¦ÁÍÌÂÍ̺Â33ÆÂÍÌ¡Âff,Âff¦@ÍÌPB33­BÈB33²BffbB(A33Âff›Âš™ÄÂ33¾Âš™‰ÂBBš™©BÍÌÇBÍ̳Bš™eB(Affš™Âš™Å¼Â33ƒÂff¦Áš™éAÍÌB33ÁBÂB33’B33÷AÍ̘Áš™€ÂÍÌºÂÆÂÍÌŸÂÍÌ"Â33 Aš™_B33²BÍÌÇBff«BHBš™Ù?š™;ÂÍ̧š™ÇÂ33µÂ33kÂ33CÁBff›BÅB33½BÍÌ…B´AÍÌÜÁffÂ33ÀÂÍÌš™”ÂffÂÍÌDBff«BÈBš™°BÍÌVBff¦@ff2ÂÍÌ¥ÂffÇÂ33µÂffhÂ(Áš™BÍÌŸB33ÆBff¹B33yBš™yA Â33™Âš™ÄÂ33½Âš™„Âff¦ÁÍÌðA33’BffÂB33ÀB33ŒB33ÏAÈÁ‹ÂÍÌ¿ÂÍÌÂÂff“Â33÷Á33ŸA33ƒBš™¼BÅBffšB33BÍÌlÁffvÂÍ̸š™ÆÂÍÌ ÂÍÌ"š™AHB33­BÈB33­BHBHÂ33­ÂÈÂ33­ÂHÂHB33­BÈB33­BHBHÂ33­ÂÈÂ33­ÂHÂHB33­BÈB33­BHBHÂ33­ÂÈÂ33­ÂHÂHB33­BÈB33­BHBHÂ33­ÂÈÂ33­ÂHÂHB33KB¯BÈBš™©BÍÌ8Bff¦ÀÍÌ\ÂÍ̳ÂffÇÂÍÌ£Â&Â(AnB33¸B33ÆBš™BÍÌBš™yÁff~¼š™Ä—š™ýÁff¦A33‡B33¿BffÂBÍÌBš™ÕA33ÏÁš™ŽÂÂÂÍÌ¿ÂffˆÂÍ̬Á33÷AÍÌ•BffÄBš™¼Bš™€B„A33š™œÂÆÂÍ̸ÂÍÌpÂÍÌ4ÁÍÌ"BÍÌ¢BNBš™°BÍÌÇBÍÌ¥B33)B(ÁÍÌpÂff¹Âš™ÅÂ33™ÂffÂff¦AffˆB33ÀB33ÁB‹B´A33÷Á—ÂÅÂÍ̺ÂffvÂ33CÁÍÌ"BÍÌ£Bš™ÇB33²BTBš™Ù?H¯ÂÍÌÇÂÍ̧Â33/Â33 A33kB33¸BÆBff›BÍÌBÍ̘ÁÍÌ…Â33¿ÂÂÂffš™ÁÁš™éAš™”BffÄBÍÌPB33²BffÇBÍÌ¡B33Bš™yÁÍÌÂ33¾ÂffÂÂffÂffºÁ33÷A˜Bš™ÅBÍ̸B33kBš™ù@š™5š™ªÂÈš™ªÂš™5š™ù@33kBÍ̸Bš™ÅB˜B33÷AffºÁffÂffÂÂ33¾ÂÍÌš™yÁ33BÍÌ¡BffÇB33²BÍÌPBÍÌPÂ33²ÂffÇÂÍÌ¡Â33š™yAÍÌB33¾BffÂBTBÍ̳BÇBš™BÍÌBff¦Á‹ÂÂÂ33¾Âš™€Âff^ÁÍÌ"BÍÌ¥BÍÌÇB33­Bš™;BàÀ33kÂff¹ÂÅš™”ÂÍÌÜÁÍÌÜAš™”BÅBff¹B33kBà@š™;Â33­ÂÍÌÇÂÍÌ¥ÂÍÌ"Âff^Aš™€B33¾BÂB‹Bff¦AÍÌš™ÂÇÂÍ̳ÂTÂTBÍ̳BÇBš™BÍÌVB33µB33ÆB33™BÍÌðA33ÏÁff“ÂÅÂÍ̸š™eÂÍÌŒÀHBff±B33ÇBš™žBÍÌBÍ̬ÁffÂ33üš™sÂ33 ÁÍÌ8B33­BÍÌÇBÍÌ£B33B33‹Á33‡Â33ÁÂÍ̾š™€Âš™QÁ33)Bš™¨BÈBš™¨B33)Bš™QÁš™€ÂÍ̾Â33ÁÂ33‡Â33‹Á33BÍÌ£BÍÌÇB33­BÍÌ8BZBÍ̶Bš™ÅBš™”B33ÏA33÷Áff›ÂÇÂ33²ÂHÂff¦@33kBÍ̺Bš™ÃBffBff¦A33ÂÍÌ¡ÂÍÌÇÂ33­Âš™5Â(Aš™{B33¾B33ÁBÍÌ…Bš™yAÍÌ"ÂÍ̧ÂÈÂÍ̧ÂÍÌ"š™yAÍÌ…B33ÁB33¾Bš™{B(Aš™5Â33­ÂÍÌÇÂÍÌ¡Â33Âff¦AffBš™ÃBÍ̺B33kBff¦@ÍÌ\B33¸Bš™ÄBÍÌBÍ̬A33ÂÍÌ¢ÂÍÌÇš™ªÂ33)ÂÍÌlAÍÌ…Bš™ÁB33½Bš™sBà@ÍÌDÂ33²ÂÍÌÆÂ33™Â33ãÁš™éAffšBÇBff±BBBš™ùÀffvš™½Â33Áš™„Âff^Áff,Bff«BÍÌÇBÍÌ¡B B´Á‘ÂÅÂff·ÂZÂfff?š™_BÍ̸BffÄBš™ŽBff¦AÍÌš™_Bff¹Bš™ÃB‹B33‹AÍÌ"š™©ÂÍÌÇÂÍÌ¡ÂÍÌš™ÁAš™”BÆBÍ̳BHBàÀffvÂ33¾Â33Àš™€Â(Áš™;Bš™°BÇB33™BÍÌÜA33÷Áš™Âš™ÇÂ33­Â33/Âff^AÍÌ…BÂB¼B33kB`@TÂÍ̶ÂÅÂÍÌÂff¦ÁBÍÌ¥BÈBÍÌ¥BBff¦ÁÍÌÂffbBÍ̺BffÂBÍÌ…Bš™QAš™5ÂÍ̯ÂǘÂ33ÏÁš™BÍÌ¡BÈBÍ̧B33Bff¦Á‘š™Åš™´ÂHš™ù@š™{BÍÌ¿B33¾Bš™sBff¦@ÍÌPÂÍ̶š™ÄÂffš™‘ÁÍÌ"Bš™ªBÍÌÇBš™žB33÷A33ãÁff›ÂffÇÂ33­Âff,š™yAš™‰Bš™ÃBÍ̸BZBff&À33kš™¼Âš™eB¼B33ÁBš™€B33 AHÂ33µÂÅÂffÂ33‹Á33)B33­B33ÇB33™B33ÏAÍÌÂÍÌ£ÂÈÂÍÌ£ÂÍÌÂ33ÏA33™B33ÇB33­B33)B33‹ÁffÂÅÂ33µÂHÂ33 Aš™€B33ÁB¼Bš™eBš™e¼Â33Áš™€Â33 ÁHB33µBÅBffB33‹A33)Â33­Â33ÇÂffhB33½BÍÌ¿BffvBÍÌŒ@ZºÂÂÂÍÌÂ33 Á33KBÍ̶BÄBffˆBš™QAš™;³š™Åš™ŽÂ33‹Áff,B¯BÍÌÆBš™”BÍ̬Affš™ªÂš™ÇÂffšÂ33ÏÁ BÍÌ¥BÈBÍÌŸBÍÌðA33÷ÁÍÌ ÂÈÂÍ̤ÂÍÌš™ÕAff›Bš™ÇBš™©B33B´ÁÍÌ•ÂÇ®Â33kB33¾B33¾B33kB33kÂ33¾Â33¾Â33kÂ33kB33¾B33¾B33kB33kÂ33¾Â33¾Â33kÂ33kB33¾B33¾B33kB33kÂ33¾Â33¾Â33kÂ33kB33¾B33¾B33kB33kÂ33¾Â33¾Â33kÂ33kB33¾B33¾B33kB33kÂ33¾Â33¾Â33kÂnB33¿Bš™¼Bš™_BÍÌŒÀš™{š™ÁÂff¹ÂÍÌPÂ33 Aš™„Bš™ÃB¶BBBš™QÁ‹Â33ÅÂ33²Âff2Â33‹A‘Bš™ÆB®BÍÌ"BÍ̬Á—ÂffÇš™©ÂÍÌÂ33ÏAš™œBÍÌÇBÍ̤BffBÍÌðÁÍÌ¡ÂÈÂÍÌŸÂ33ãÁÍÌBÍ̦BÍÌÇBffšBš™ÁA33Âff«ÂÇš™”Â33ŸÁÍÌpB33ÀBÍ̺BTB33 ÁÍÌ…ÂffÄÂÍ̳š™5Â33‹A33’BÇBff«BB33ÏÁš™ÂÈÂÍ̡š™éÁÍÌBÍ̧Bš™ÇB—Bff¦A33)š™°Âš™Å‹Â33CÁHB33¸BÂBš™{B`@š™eÂ33¾Â33½Âš™_Âff¦@š™€BÍÌÂBÍ̶BBBff^ÁffÂÆÂ¯ÂÍÌ"´Aš™sB33ÁBÍ̸BHBš™QÁffÂ33ÆÂ33­Â33Â33ÏAš™žBÈBš™žB33ÏA33Â33­Â33ÆÂffš™QÁHBÍ̸B33ÁBš™sBš™sÂ33ÁÂÍ̸ÂHš™QAffB33ÆB33­B33B33ÏÁš™žÂÈš™žÂ33ÏÁ33B33­B33ÆBffBš™QAHÂÍ̸Â33Áš™sš™sBffvBÂBÍ̶Bš™;B33‹Áš™”š™ÇÂÍÌ¥Â33÷ÁÍÌBš™©BÇBÍÌBff^AHÂff¹Â33ÀÂ33kÂ`@š™€Bš™ÃBÍ̳B33/Bff¦Á33™ÂÍÌÇÂÍÌ¡ÂÍÌÜÁB33­BÆB‹B(AT¼Â33¾Âš™_Âà@ÍÌ…BÅBš™°BÍÌ"Bš™ÁÁš™ÂÈš™Âš™ÁÁÍÌ"Bš™°B33yBÍÌÂBš™´B33/BÍ̬Áff›ÂÈš™ÂffºÁ33)B³Bš™ÃBff~Bš™Ù?š™s¶š™5Â33ŸA33™BÈBÍÌŸBÈAÍÌ"Âff±ÂffÄÂÍÌÂ`ÀnB33ÁBff·Bš™;Bš™‘Á—ÂÍÌÇÂÍ̡š™ÕÁffBÍ̯BÅBš™„Bff¦@ffhÂ33ÀÂÍ̸ÂB„Aš™”Bš™ÇBš™{Bš™ÃB33²BÍÌ"B33ÏÁÍÌ¡ÂÍÌÇš™”š™yÁHBÍ̺B33¾BZB(ÁffÂÇÂÍ̧Â33÷Á33B33­Bš™ÅBÍÌ…Bff¦@33kÂ33ÁÂÍ̶š™5Âff¦Aff›BÈBff›Bff¦Aš™5ÂÍ̶Â33ÁÂ33kÂff¦@ÍÌ…Bš™ÅB33­B33B33÷ÁÍ̧ÂÇÂffÂ(ÁZB33¾BÍ̺Bff~BffÄBÍ̯BBÍÌðÁÍ̧ÂÍÌÆÂ‹Âš™ùÀš™eBÍÌÀBÍ̶Bff2B´Áš™žÂÍÌÇÂÍ̕š™yÁ33KB¼Bš™¼BNBÍÌlÁš™”ÂÍÌÇÂÍÌŸÂffºÁ33/B¶B33ÁBffhBàÀš™‰Âš™ÆÂš™¨Â33÷ÁÍÌB¯Bš™ÄBš™€Bfff?š™{ÂÄš™°Â33š™éAÍ̦BÇB33ŒBš™€BÅB33­BÍÌBÍÌÂ33­ÂÅš™€Âš™€BÅB33­BÍÌBÍÌÂ33­ÂÅš™€Âš™€BÅB33­BÍÌBÍÌÂ33­ÂÅš™€Âš™€BÅB33­BÍÌBÍÌÂ33­ÂÅš™€Âš™€BÅB33­BÍÌBÍÌÂ33­ÂÅš™€Âš™€BÅB33­BÍÌBÍÌBš™ÅBš™ªB33÷A33Â33²ÂffÂÂ33kš™ù@ffBffÇBÍÌ¡BffºAš™5ÂÍ̸Â33¾ÂÍÌPš™yA˜BÈB˜Bš™yAÍÌPÂ33¾ÂÍ̸š™5ÂffºAÍÌ¡BffÇBffBš™ù@33kÂffÂÂ33²Â33Â33÷Aš™ªBš™ÅBÍÌBÍÌš™Åš™ªÂ33÷Á33B33²BffÂB33kBš™ùÀ33ƒBÆBÍ̧BÍÌÜA33)ÂÍ̶Â33¿ÂTš™yA33™BÈBš™”B33CAš™_Â33ÁÂÍ̳ÂffÂ33÷Aff«BÅBš™{B`ÀffˆÂÇÂỊ́š™ÁÁš™5Bff¹B33½BHBÍ̘Áš™ÂÍÌÇÂÍÌÂ33 Á33kBÍÌÂBš™°B33BÍ̯š™ÃÂÍÌpÂà@ffBš™ÇBÍÌŸBff¦ABš™„Bš™ÆBÍ̤Bš™ÁAÍÌ8ÂÍ̺Âff»Âš™;ÂffºAÍÌ£BÍÌÆBÍÌ…Bfff?33ƒÂ33ÆÂÍÌ¥ÂÈÁš™5BºB¼BÍÌ>B´ÁÍÌ¢ÂÇÂ33‡Âš™Ù¿ÍÌBÆBÍ̦B33ÏAff2Âff¹Âš™¼ÂBÂÍ̬AÍÌ¡BÇBffˆBff&@š™€ÂÍÌÅÂÍ̧š™ÕÁ33/BÍ̸B33½BÍÌDBff¦ÁÍÌ ÂÍÌ…BÇBÍÌ¡Bff¦AHÂ33¾ÂÍ̶ÂÍÌ"Â33÷A33­Bš™ÃB33kB(Áš™”ÂÈš™”Â(Á33kBš™ÃB33­B33÷AÍÌ"ÂÍ̶Â33¾ÂHÂff¦AÍÌ¡BÇBÍÌ…BÍÌ…ÂÇÂÍÌ¡Âff¦ÁHB33¾BÍ̶BÍÌ"B33÷Á33­Âš™ÃÂ33kÂ(Aš™”BÈBš™”B(A33kš™ÃÂ33‡B33ÇBš™žB33‹AÍÌVÂ33ÁÂff±ÂÍÌÂ33B33µBÍ̾BHBÍ̬ÁÍÌ£Â33ÆÂš™€ÂÍÌŒ@ffBÍÌÇB33™Bš™QAš™eÂ33ÃÂ33­ÂÍÌðÁ33)BÍ̸B¼BÍÌ8B33ÏÁš™¨ÂÅš™sÂ33 Aff“BÈBff“B33 Aš™sÂÅš™¨Â33ÏÁÍÌ8B¼BÍ̸B33)BÍÌðÁ33­Â33ÃÂffˆBš™ÇBff›Bff^Aš™eš™ÃÂff«ÂÍÌÜÁš™5B¼B33¸BÍÌ"Bffš™°Â33ÁÂTÂÍ̘AÍÌ¡Bš™ÆBš™€Bff¦ÀÍÌÂÈš™”Â33 ÁffvBš™ÅBÍÌ¥B´AHÂ33¿ÂÍ̳Â33ÂB33µB33¾BBBš™ÁÁÍ̧ÂÅÂÍÌpÂ(A—BÍÌÇBffB`@33ƒÂÇÂÍ̟š™‰BÍÌÇB˜B(Aš™sš™ÅÂÍ̤Âff¦ÁÍÌPB33ÁBÍ̯B33÷Aff,ÂÍ̺ÂÍ̸ÂÍÌ"š™B33²BÍÌ¿BHBffºÁÍ̧š™ÄÂ33kš™QAff›BffÇBÍÌ…Bff&ÀffÂÈš™”š™ùÀš™{B33ÆBÍÌ¡Bš™‘AZÂffÂÂ33­Â33ãÁš™5Bš™¼BÍ̶B33B33š™´Â33¾ÂÍÌ>‹BÍÌÇBš™”Bà@š™€ÂÇš™Âff^Á33kBÅBÍÌ¥Bff¦ATÂÂÂ33­ÂÍÌÜÁš™;B33¾BÍ̳BÍÌBÍÌ"Âff¹Âff¹ÂÍÌ"ÂÍÌBÍ̳B33¾Bš™;BÍÌÜÁ33­ÂÂÂTÂff¦AÍÌ¥BÅB33kBff^Áš™ÂÇš™€Âà@š™”BÍÌÇB‹B‹ÂÍÌÇš™”ÂàÀ33ŒBÈB‘B`@33‡ÂÍÌÇÂÍÌ•ÂàÀÍÌB33ÇBffšB(A33yš™ÆÂš™žÂff^ÁnBš™ÅBÍÌ¢B33‹AffbÂffÄÂÍ̦Âff¦ÁÍÌVBÍÌÂBš™ªBš™ÁA33KÂ33Á®ÂÍÌÜÁÍÌ>B33¿Bff±B33÷Aff2Â33½Âš™´ÂÍÌÂ&BÍ̺Bff·BB33Â33¸ÂºÂÍÌ" BffBÈBffBffÂÈÂffÂffBÈBffBffÂÈÂffÂffBÈBffBffÂÈÂffÂffBÈBffBffÂÈÂffÂffBÈBffBffÂÈÂffÂffBÈBffBffÂÈÂffÂffBš™ŽBÈBš™‰B`Àff“ÂÍÌÇš™„Âà@˜B33ÇBff~B(Áš™œÂš™ÆÂš™sÂff^AÍÌ Bš™ÅBffhB33‹ÁÍ̤ÂffÄÂÍÌ\Âff¦Aš™¨BÍÌÂBÍÌPBš™ÁÁff¬Â33ÁÂÍÌDÂÍÌÜAÍ̯B33¿BÍÌ8B33÷Á³Â33½Âff,ÂÍÌB¶BÍ̺Bš™BÂÍ̸Â33¸ÂÍÌÂÍÌ"Bff»BÍÌBÍÌÇBÍÌ…BàÀ33™ÂÇÂffvÂff^AÍÌ¡BÅBš™_Bff¦Áš™©ÂÂÂHÂÍÌÜAš™°B33¾B33/BÍÌÂÍ̶Âff¹ÂÂÍÌ"B¼BÍ̳B33÷Aš™;Â33ÀÂ33­Âš™ÁÁTBš™ÃBÍÌ¥B33‹A33kÂÆÂš™Â(Áš™€Bš™ÇBš™”B`@‹ÂÈ‹Â`@š™”Bš™ÇB‘BÍÌÇBÍÌB(Áš™žÂš™ÅÂffbÂff¦Aš™ªB33ÁBÍÌ>B33÷Áš™´ÂÍ̺Â33ÂÍÌ"Bš™¼B33²B33ãAHÂffÂÂÍ̧š™‘Á33kB33ÆBff›Bš™ù@ÍÌ…ÂÈÂffÂff&@š™”BffÇBš™{Bš™QÁÍ̡š™ÄÂZÂffºA33­BÍÌ¿Bš™5Bš™ÂÍ̶ÂÍ̸Â33Âff,B33¾BÍ̯B33’Bš™ÇBš™{Bff^ÁỊ́š™ÃÂNÂÍÌÜA33²B¼BffBÍÌ"Â33½Âš™°Â33ÏÁTBffÄBÍÌ¡B33CAš™€ÂÍÌÇÂÍÌš™Ù?š™”B33ÇBffvBš™yÁÍÌ¥ÂÍÌÂÂHš™éAÍ̳BÍ̺BB33)Â33¾Â¯Âš™ÁÁZBÅBÍÌŸB(A33ƒÂÍÌÇÂffÂ`@—BÇBÍÌpBff“B33ÇBš™sB33‹Áš™¨Â33ÁÂÍÌ8ÂÍÌBÍ̸B33µBÍÌðAHÂ33ÃÂỊ́š™QÁš™€BÍÌÇBffBÍÌŒÀ33™Â33ÆÂš™eÂÍ̬A33­BÍ̾B33)B33¼Âff±Â33ÏÁÍÌVBÅBš™žB33 A33‡ÂÈÂ33‡Â33 Aš™žBÅBÍÌVB33ÏÁff±Â¼Â33Â33)BÍ̾B33­BÍ̬Aš™”BÇB33kBff¦Á33­Â33¾ÂÍÌ"ÂÍÌ"B33¾B33­Bff¦A33kÂÇš™”š™”BÇB33kBff¦Á33­Â33¾ÂÍÌ"ÂÍÌ"B33¾B33­Bff¦A33kÂÇš™”š™”BÇB33kBff¦Á33­Â33¾ÂÍÌ"ÂÍÌ"B33¾B33­Bff¦A33kÂÇš™”š™”BÇB33kBff¦ÁÍÌ•Bš™ÆBffbBš™ÁÁff±ÂÍ̺ š™;BffÂBÍÌ£BÍÌ4AÍÌ…ÂÈÂ33ƒÂš™QAÍÌ¥Bš™ÁBš™5BÍ̼ÂÍ̯´ÁffhBÇBff“Bš™Ù¿˜ÂÆÂÍÌ\Â33ÏA³Bff¹Bš™BBÂ33ÃÂÍ̡š™ÁffˆBÈBš™€BÍÌlÁÍ̧ÂÍÌÀÂ33/Â33B33½B®Bff¦An—BÆBZBÍÌÜÁ33µÂÍ̶š™éÁTBš™ÅB33™Bš™Ù?š™”š™ÆÂš™_Â33ÏAÍ̳B33¸B33÷ANÂÅÂff›Â`À33’BÇBš™eBš™ÁÁ33²Âff¹ÂffÂHBffÄBš™Bff¦@ÍÌÂ33ÇÂ33k´Aš™°BÍ̺BÍÌBBš™ÃÂÍÌŸÂàÀffBš™ÇBÍÌpBff¦Á¯Â˜Bš™ÅBÍÌPB33÷ÁÍ̸Â33²ÂffºÁ33kBffÇBffBš™ùÀÍÌ¡Âffš™5Â33B33¾Bš™ªBš™yAÍÌÂÈÂÍÌš™yAš™ªB33¾B33Bš™5ÂffÂÂÍ̡š™ùÀffBffÇB33kBffºÁ33²ÂÍ̸Â33÷ÁÍÌPBš™ÅB˜B˜Âš™ÅÂÍÌPÂ33÷AÍ̸B33²BffºA33kÂffÇÂèéêëìíîïðñòóôõö÷øùúûüýþÿ     LMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}°·²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàá !"#$%&'()*+,-./0123456789:;<=>?@ABCDExyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ     @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopq¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕ      !"#$%&'()*+,-./0123456789lmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcde˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉüýþÿ                           ! " # $ % & ' ( ) * + , - ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  € ‚ ƒ „ … † ‡ ˆ ‰ Š ‹ Œ Ž ‘ Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Œ Ž ‘ ’ “ ” • – — ˜ ™ š › œ ž Ÿ   ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ                           ! T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  € ‚ ƒ „ … ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é     ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M € ‚ ƒ „ … † ‡ ˆ ‰ Š ‹ Œ Ž ‘ ’ “ ” • – — ˜ ™ š › œ ž Ÿ   ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ                 H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý  !"#$%&'()*+,-./0123456789:;<=>?@Atuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ <=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklm ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑ      !"#$%&'()*+,-./012345hijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™ÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüý0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅøùúûüýþÿ      !"#$%&'()\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñ$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹ìíîïðñòóôõö÷øùúûüýþÿ     PQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäå !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHI|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­àáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ     DEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstu¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙ   !"#$%&'()*+,-./0123456789:;<=pqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡ÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ89:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghiœžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍ      !"#$%&'()*+,-./01defghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•ÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øù,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁôõö÷øùúûüýþÿ      !"#$%XYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìí !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µèéêëìíîïðñòóôõö÷øùúûüýþÿ     LMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàá !"#$%&'()*+,-./0123456789:;<=>?@ABCDExyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ     @ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopq¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕ                   ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z { | } ~  € ‚ ƒ „ … † ‡ ˆ ‰ Š ‹ Œ Ž ‘ ’ “ ” • – — ˜ ™ š › œ Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ !!4!5!6!7!8!9!:!;!!?!@!A!B!C!D!E!F!G!H!I!J!K!L!M!N!O!P!Q!R!S!T!U!V!W!X!Y!Z![!\!]!^!_!`!a!b!c!d!e!˜!™!š!›!œ!!ž!Ÿ! !¡!¢!£!¤!¥!¦!§!¨!©!ª!«!¬!­!®!¯!°!±!²!³!´!µ!¶!·!¸!¹!º!»!¼!½!¾!¿!À!Á!Â!Ã!Ä!Å!Æ!Ç!È!É!ü!ý!þ!ÿ!""""""""" " " " " """"""""""""""""""" "!"""#"$"%"&"'"(")"*"+","-"`"a"b"c"d"e"f"g"h"i"j"k"l"m"n"o"p"q"r"s"t"u"v"w"x"y"z"{"|"}"~""€""‚"ƒ"„"…"†"‡"ˆ"‰"Š"‹"Œ""Ž"""‘"Ä"Å"Æ"Ç"È"É"Ê"Ë"Ì"Í"Î"Ï"Ð"Ñ"Ò"Ó"Ô"Õ"Ö"×"Ø"Ù"Ú"Û"Ü"Ý"Þ"ß"à"á"â"ã"ä"å"æ"ç"è"é"ê"ë"ì"í"î"ï"ð"ñ"ò"ó"ô"õ"(#)#*#+#,#-#.#/#0#1#2#3#4#5#6#7#8#9#:#;#<#=#>#?#@#A#B#C#D#E#F#G#H#I#J#K#L#M#N#O#P#Q#R#S#T#U#V#W#X#Y#Œ##Ž###‘#’#“#”#•#–#—#˜#™#š#›#œ##ž#Ÿ# #¡#¢#£#¤#¥#¦#§#¨#©#ª#«#¬#­#®#¯#°#±#²#³#´#µ#¶#·#¸#¹#º#»#¼#½#ð#ñ#ò#ó#ô#õ#ö#÷#ø#ù#ú#û#ü#ý#þ#ÿ#$$$$$$$$$ $ $ $ $ $$$$$$$$$$$$$$$$$$$ $!$T$U$V$W$X$Y$Z$[$\$]$^$_$`$a$b$c$d$e$f$g$h$i$j$k$l$m$n$o$p$q$r$s$t$u$v$w$x$y$z${$|$}$~$$€$$‚$ƒ$„$…$¸$¹$º$»$¼$½$¾$¿$À$Á$Â$Ã$Ä$Å$Æ$Ç$È$É$Ê$Ë$Ì$Í$Î$Ï$Ð$Ñ$Ò$Ó$Ô$Õ$Ö$×$Ø$Ù$Ú$Û$Ü$Ý$Þ$ß$à$á$â$ã$ä$å$æ$ç$è$é$%%%% %!%"%#%$%%%&%'%(%)%*%+%,%-%.%/%0%1%2%3%4%5%6%7%8%9%:%;%<%=%>%?%@%A%B%C%D%E%F%G%H%I%J%K%L%M%€%%‚%ƒ%„%…%†%‡%ˆ%‰%Š%‹%Œ%%Ž%%%‘%’%“%”%•%–%—%˜%™%š%›%œ%%ž%Ÿ% %¡%¢%£%¤%¥%¦%§%¨%©%ª%«%¬%­%®%¯%°%±%ä%å%æ%ç%è%é%ê%ë%ì%í%î%ï%ð%ñ%ò%ó%ô%õ%ö%÷%ø%ù%ú%û%ü%ý%þ%ÿ%&&&&&&&&& & & & & &&&&&&&&&H&I&J&K&L&M&N&O&P&Q&R&S&T&U&V&W&X&Y&Z&[&\&]&^&_&`&a&b&c&d&e&f&g&h&i&j&k&l&m&n&o&p&q&r&s&t&u&v&w&x&y&¬&­&®&¯&°&±&²&³&´&µ&¶&·&¸&¹&º&»&¼&½&¾&¿&À&Á&Â&Ã&Ä&Å&Æ&Ç&È&É&Ê&Ë&Ì&Í&Î&Ï&Ð&Ñ&Ò&Ó&Ô&Õ&Ö&×&Ø&Ù&Ú&Û&Ü&Ý&'''''''''''''''' '!'"'#'$'%'&'''(')'*'+','-'.'/'0'1'2'3'4'5'6'7'8'9':';'<'='>'?'@'A't'u'v'w'x'y'z'{'|'}'~''€''‚'ƒ'„'…'†'‡'ˆ'‰'Š'‹'Œ''Ž'''‘'’'“'”'•'–'—'˜'™'š'›'œ''ž'Ÿ' '¡'¢'£'¤'¥'Ø'Ù'Ú'Û'Ü'Ý'Þ'ß'à'á'â'ã'ä'å'æ'ç'è'é'ê'ë'ì'í'î'ï'ð'ñ'ò'ó'ô'õ'ö'÷'ø'ù'ú'û'ü'ý'þ'ÿ'((((((((( (<(=(>(?(@(A(B(C(D(E(F(G(H(I(J(K(L(M(N(O(P(Q(R(S(T(U(V(W(X(Y(Z([(\(](^(_(`(a(b(c(d(e(f(g(h(i(j(k(l(m( (¡(¢(£(¤(¥(¦(§(¨(©(ª(«(¬(­(®(¯(°(±(²(³(´(µ(¶(·(¸(¹(º(»(¼(½(¾(¿(À(Á(Â(Ã(Ä(Å(Æ(Ç(È(É(Ê(Ë(Ì(Í(Î(Ï(Ð(Ñ())))) ) ) ) ) ))))))))))))))))))) )!)")#)$)%)&)')()))*)+),)-).)/)0)1)2)3)4)5)h)i)j)k)l)m)n)o)p)q)r)s)t)u)v)w)x)y)z){)|)})~))€))‚)ƒ)„)…)†)‡)ˆ)‰)Š)‹)Œ))Ž)))‘)’)“)”)•)–)—)˜)™)Ì)Í)Î)Ï)Ð)Ñ)Ò)Ó)Ô)Õ)Ö)×)Ø)Ù)Ú)Û)Ü)Ý)Þ)ß)à)á)â)ã)ä)å)æ)ç)è)é)ê)ë)ì)í)î)ï)ð)ñ)ò)ó)ô)õ)ö)÷)ø)ù)ú)û)ü)ý)0*1*2*3*4*5*6*7*8*9*:*;*<*=*>*?*@*A*B*C*D*E*F*G*H*I*J*K*L*M*N*O*P*Q*R*S*T*U*V*W*X*Y*Z*[*\*]*^*_*`*a*”*•*–*—*˜*™*š*›*œ**ž*Ÿ* *¡*¢*£*¤*¥*¦*§*¨*©*ª*«*¬*­*®*¯*°*±*²*³*´*µ*¶*·*¸*¹*º*»*¼*½*¾*¿*À*Á*Â*Ã*Ä*Å*®0}}fG©†«0}}ÂO ‡¬1}}f7q‡«2€€L#Õ‡ª5ƒƒxw9ˆ©5††G¹ˆ¨6……!‰©6ƒƒìœe‰ª8ƒƒqœÉ‰©8„„G1-Ч :„„ó!‘Ч :ˆˆ}µõЧ :ˆˆq2Y‹§!:‰‰x.½‹§!:ŠŠ7.!Œ¨!:‡‡7º…Œ¨":††7Ý錩"9ƒƒwOM«#9€€7d±«%8~~7·Ž©(8||xyŽ©)9yy!ÝŽ«*9~~šêA®+:……jÃ¥¯,8ŠŠ”à ¯-8  Åm¯.8¦¦Eêѯ.8ŠŠÔ5‘¯08||—ꙑ®08‚‚žBý‘­08€€UÃa’®08{{bÃÅ’®06zz'?)“®06||ž¯“¯06}}syñ“¯05b@U”°25‚‚'´¹”¯24‰‰Dœ•¯24††AB•®34ww¿Hå•«34uu6lI–ª44‚‚ ­–ª44ÔÜ—«54––4Üu—­34ŸŸhÙ—®24¦¦4h=˜¯24§§¨@¡˜¯12¨c™®1/––¨@i™®0/’’=hÍ™¬0‡‡qÛ¹­ª0‚‚g7®ª1q7®©1x#宨4‚‚x#I¯¨5ˆˆ‘O­¯©6ŠŠx¹°ª6……x¹u°©8„„¹Ù°¨8„„Gl=±§:††xÜ¡±§ :††xµ²§ :……xli²§ :„„7.Ͳ¨ :ƒƒ7º1³©!:€€7œ•³ª"97ù³¬"9~~7Ý]´­"87ÝÁ´ª%87?%µ¨(8€€x‰µ¨)8!íµª*9‡‡ÃQ¶®+9Õµ¶¯,8  t·¯-8ËËEO}·°.8ØØ8Há·¯.8««s!E¸®-8ŠŠôH©¸­-8ˆˆÙH ¹­-8Ùq¹­-8uuDÃÕ¹¯-6rrÚd9º¯-6qq'hº¯-5rrb{»¯-5vv÷{e»°15||IÉ»°24„„D´-¼¯24€€ÿÜ‘¼­34qqÅBõ¼¬35tt¿?Y½¬45ŠŠ l½½¬45œœ–?!¾¬45­­Ô?…¾­35ºº4龯35ÂÂ4»M¿¯35ÃÃ4@±¿¯23¿¿4FÀ®20··¨{yÀ®10­­ÐÝÀ©/™™7&ÉÔ¨/ŽŽ‘-Õ¨0……‘!‘Õ©1„„7uõÕ¨4……ÉwYÖ©4ŒŒ7O½Öª5x¹!ת5‹‹xº…ת7ŠŠxÜéש7‰‰x?Mب7ˆˆ7·±Ø¨7ˆˆxÙ¨9„„x·yÙ© 9€€x2ÝÙª 9}}7·AÚ¬!9zzxœ¥Ú­!9zz7’ Û¬"8zz‘OmÛª"7}}wºÑÛ©$775Ü©'7††‘™Üª(7‹‹G?ýܬ)8’’Ìaݯ*9––šÃÅݯ+8°°”O)Þ¯,8êêE!Þ¯-8üü8€ñÞ®.8ÃÃÅ€Uß­+8••¿!¹ß­+8‰‰žtà¬+8xxDÝà­+8pp¤Håà¯+6jj'Iá¯+5hhÚl­á°+5jjDdâ°+5oo/luâ°14vvj´Ùâ¯14€€'l=ã­14‚‚pH¡ã¬24||+Ãä«35†† iä«35  ÅdÍäª35··–d1åª45ËËÔl•å¬35ÖÖ–´ùå®35ÚÚ4]æ¯35ÚÚ4hÁæ¯23ææ4»%ç¯22ÛÛ¨ü‰ç¯11ÏÏãüíç¨.¤¤ÉñÙû©/¨¨É&=üª/««É¹¡ü©0¥¥É‹ý¨3™™‘!iý©4——7Íý©4œœ‘O1þª4””xB•þª6’’x1ùþª6x1]ÿª6‰‰‘µÁÿª6ˆˆ7[%ª8‡‡7߉«8x·í­8uu7$Q® 8uu‘@µ® 7ss7?«!7ttÉ1}©!6yy7á©$6……‘´E©&6ŽŽw©­(6•• ¯)7››)»q¯*7ÆÆädÕ®+8åå•9¯,8ž!¯-8ÊÊ¥è®-8àà¿!e®+8««Utɬ+8††8Ã-­+8„„'º‘¯+8mmÈ€õ¯+5ii¤tY°+5iijý°+5kkŸœ! °+4kkpÜ… ¯04ooe?é ­14}} M ¬13p± «13‘‘mà «26±±¿?y ª36ÐО[Ý §36ÚÚ~ýA ¦36ÞÞ »¥ ©36ååh ­36ññï¯m ¯26óó4¯Ñ ¯24óó45¯13éé¨ü™¯13ãã–]ý©-››Ç&é"«-™™uÌM#«.  ÉO±#©/¤¤Éè$¨0§§77y$¨1®®‘OÝ$¨3¶¶7!A%¨4µµ‘O¥%©3°°xB &¬3§§xBm&¬4››‘1Ñ&«4““xœ5'¬4ŽŽ‘·™'­4……‘iý'®6yy7ia(®6rr‘yÅ(® 4||7ß))¬!4‡‡7l)¬!3……‘Oñ)¬#3……‘êU*­&3••‘¹*®'3µµóB+¯(4ÓÓ+¯)4ÛÛäå+®*5ÝÝúI,¯+5ÇÇeO­,®,5¾¾Ú€-®,5ÐÐÚtu-®,5³³DHÙ-®,5„„UÜ=.¯,5‚‚¦1¡.°,5yyjH/°,3eeÈ€i/°,3``I!Í/°,2kkMB10®,2uu”Ü•0¬02ww Bù0¬01pB]1®01––RlÁ1¯11¹¹ž1%2°14ÒÒ¿‰2®24ààÙ´í2ª24ççÿ?Q3¨34îî¿»µ3ª24ùùr4¬14ÿÿ~{}4­14ÿÿhá4®14ÿÿ»E5¯04óóÿh©5¯/4ììã] 6ª,¡¡wBùIª,˜˜É}]J©.ÉÌÁJ¨.¥¥ÉO%K¨/¬¬7è‰K¨0²²ÉèíK¨3¸¸7#QL©3§§‘!µLª2±±x1M¬2¹¹G?}M­3¾¾GáM¬3ººGœEN­3­­x?©N­3––x2 O®5‚‚‘qO®5{{‘ÕO­ 3vv‘9P® 3zzÉlP¯ 2……xºQ¯#1œœxBeQ¯&1ººGêÉQ¯'2××LÌ-R¯(3èè\ÑR¯)3áákBõR¯*3ÎέOYS®+3ÍÍÕ½S®,3»»v!!T®,3ÆÆvt…T®-3ÆÆvºéT¯-3””vêMU°-3ŒŒI1±U°-3}}Ú?V°-2jjŸHyV°-2hhÙ€ÝV¯-2uuÙOAW­-2€€ÎÃ¥W¬/1‚‚žÃ X®01DÃmX°01±±RBÑX°10ààž´5Y¯13ïïmœ™Y¯23îîmlýY¬23ïïô?aZ©23øøEÅZ©03ÿÿr{)[ª03ÿÿ§y[ª03þþ¯ñ[¬/3ÿÿrU\®/4õõ©â¹\­.4ððrâ]ª+©©É q©+££u&mq¨,¤¤ÉÂÑq¨-©©Éñ5r¨/««É!™r©/®®x#ýrª0­­É!as«0¶¶x!Ås«1ººxè)t­1»»7Ot®1ººqºñt®1¾¾gêUu­2ÅÅ‘?¹u®2ÄÄGÜv¯2¾¾‘œv­2™™7Ãåv¬2‹‹xºIw­2‡‡xÜ­w® 1‘?x¯!1ÃÃqOux°%1ÛÛfOÙx°&1ààgê=y°'2ÚÚLÌ¡y°(2ÝÝÕÌz¯)1ÌÌÕOiz®*1ÑÑþHÍz®+1ÆÆfO1{®,1ÅÅú•{®/1ÈÈþ!ù{®/1§§Ã]|°/1vHÁ|°/1ww£%}°/2xx^B‰}°/2~~¢ºí}°/2‚‚zQ~¯/1……½ýµ~¯/1‘‘Åy°/1¬¬y}°00ÕÕž·á¯00êêÅÜE€¯13ööžH©€¯13òòmd ­23òòm?qª23ùùmÕ©/3ýý 9‚©/3ùù~{‚ª/3óóròƒ«.3ýý§%eƒ¬.4øørYɃ­-4ôôÿÖ-„©+ªªu혨+¨¨É:}˜¨,¦¦ÉFᘨ,ªªwöE™©.°°wG©™ª/··wO š¬0»»Éèqš­0ÈÈwèÕš®1ÌÌ719›¯1ÎÎxO›°1ÍÍftœ°1ÓÓ<Heœ®2ÜÜk!Éœ¯2ßßgÃ-®2ÚÚx‘®2ÁÁ‘Hõ®2ÃÃOYž­1ËËxœ½ž®1ÑÑG?!Ÿ°0××ûœ…Ÿ±#0Úڙ韱%1ßßeOM ±%1ààÕ€± °%2ÙÙq€¡¯&0××­By¡¯&0ÍÍqÝ¡­'0ÎÎþhA¢¬'0¾¾e?¥¢­.0²²e £®-0µµ£Om£¯.0––!Ñ£¯.0{{^O5¤°/2‚‚¥O™¤°02ˆˆÆOý¤°32……¥Ha¥°31““¼´Å¥°/1°°Ÿ·)¦°/0ÎÎ¥ü¦°/0è袴ñ¦°/0ççžœU§°/2ííp?¹§¯/2ææp»¨¯/2ãã§h¨­/2ããm3娫02ãã~3I©ª02ää ]­©ª02åå–Fª«/2ððã5uª­/3ïï~²Ùª¯.3ïïmY=«©,­­Éí)¿¨,§§#<¿¨,¤¤É:ñ¿¨,ªªwUÀª-¶¶w¹À­-ÃÃ7&Á¯.ÊÊu!Á°.¼¼ÉOåÁ¯/ËËx!I°/ÝÝg€­Â±1èè<€Ã±0ïïÄOuð0ïï™HÙï0ççú!=Ä­/ÚÚL!¡Ä®/ØØxºÅ¯/ÞÞG!iů/ååLHÍŰ/ààúB1Ʊ/ØØ:H•Ʊ"/ÖÖKHùƱ"/ààÄH]ǰ"/ççLÝÁǰ#0ØØ!%Ȱ&/ÝÝkê‰È®'/ÊÊþüíÈ«'/ÍÍLQÉ«'/½½û´µÉ­./®®fÌʯ./ÈÈŸ!}ʯ//¸¸£¹áʰ//ŽŽŽOE˰0/‡‡ŸO©Ë°1/„„< ̰3/‹‹£Oq̰40ªªÄºÕ̰/0ÑÑ£19Ͱ/1ââÜͰ/1ååDÜΰ/2ððpheί/1ïïŸhÉή/1ââD-ϯ/1ØØ§ò‘Ï­/1ÑÑbòõÏ«/1ÑÑÿòYЪ/1ÛÛÿö½Ð¬/1éé !Ñ­.1ëë–…Ñ®.0îî _éѯ-1ïïAÖMÒª,­­‹í9æ¨,¨¨#æ©,¦¦Ééç«,¯¯wTeç®-¼¼7ÀÉç°-ÃÃÉñ-è±.ÄÄwè‘è°.ÁÁ7Oõè±/ËËx#Yé±.ÕÕg½é±0ÝÝÂ!!ê±0èè£!…ê°/õõÂHéê­/ýý<€Më­/üüg#±ë°/ééOì°.ããqOyì±.ÜÜgÝì±.ÙÙÂHAí±.ÜÜÀH¥í± /ßß;à î° /ååÄ1mî°!/ääfHÑî°#/××LH5ï¯&/ÔÔþ1™ï®(/ÏÏf?ýï¬)/ÎÎf]að¬)/ÄÄehÅð®./»»fê)ñ¯//ÇÇú7ñ°0/ÒÒ£èññ°1/¦¦£õUò°1/£#¹ò°2/‹‹úÝó°4/¤¤£ó°40ËËÄtåó°/0àà£ÃIô°/0èèÚ­ô°/1é韵õ¯/1ööpduõ¯/1îîŸdÙõ®/1áᤴ=ö¬/1ÕÕb¡ö«/1ÊÊpù÷«.1ÈÈC²i÷¬.1ÓÓp_Í÷­.1åå§â1ø¯-1ððÿù•ø¯-0õõEYùø¯,0ûûôÖ]ù«,¨¨u:I «,©©É­ ¬,¬¬ÉÌ®,»»wçu°,ÆÆ7çÙ°,ÅÅÉñ=°-¼¼7!¡±-¼¼x#±.ÉÉx#i°.ÚÚGÃͰ.ããqH1®-îîÛ!•­/ööLÌù­.ùùûO]°.÷÷L€Á±.ööqÝ%±,ññk‰±,ììq1í°,èèqBQ°,ããfõ°+â⎜°+ááÄ1}¯!+ÞÞúºá¯#+ÞÞL1E¯&-ÏÏL©¯(-ÛÛfê ¯*-ÍÍŸq¯*-ÇÇ^»Õ¯/-ÂÂ^d9¯/-³³£°1-ÑÑ£!°2-¿¿£Be°3,¥¥£Ìɯ3,ªªÄÃ-¯5-ÍÍÄ‘°4-èèÄdõ°/-ççÄœY°/.ëë½°/.ööb?!°/.íížµ…¯/.ããpé®/.××DüM«/.ÏÏp±ª//ÃÃD²«./¹¹¦Öy®-/»»CÖݯ-/ÇÇD²A°,/åå§Y¥°,0êêUÖ ¯+0òòEÖm ­-««#äY4­-­­É½4®-³³w!5°-½½wÛ…5°-ÄÄÉ&é5°-ÀÀwñM6±.¸¸qì±6±.ÇÇ}O7±.ËËq!y7¯.ÏÏÛèÝ7­-ÕÕqOA8­-ÛÛq!¥8®.ááLt 9±.ççqBm9².ííqèÑ9².ððg!5:²,òòfH™:±+òòûÃý:±+ïïGÃa;°+êêG1Å;¯+ããLœ)<°*ÝÝfÃ<¯!*ÚÚûºñ<¯#*ÛÛLtU=¯&,ÔÔLt¹=¯(,ÏÏþÃ>¯*,ÎΙ?>°*,ÅÅnå>°.,¾¾nI?°/,ÂÂŽ­?°2,ÏÏÄ@°3,ÈÈŸu@°4,ÏÏnlÙ@°3,áá¼d=A°4,îî¼´¡A°3,ðð´B°/,ííndiB°/-óó÷ÜÍB°/-øø¢l1C¯/-ëë¥h•C¬/-áá^¯ùCª/.ÖÖDc]D©/.ÉÉp²ÁDª/.»»DÖ%E­..³³¤Ö‰E°-/±±DÖíE°-/´´pÖQF°,/ÊÊD²µF°,/ÔÔ§ÖG®+0ÞÞžÖ}G­+««Ééi[­+±±w&Í[¯+¿¿É>1\°+ÆÆ7G•\±-ÁÁ7Gù\±-¼¼xÌ]]².ÀÀÛOÁ]².ËËgO%^²-ÏÏgB‰^°-ÐÐÂOí^¯.ÑÑeBQ_°-ÔÔµ_²-ØØÄO`³,ààúñ}`²,ççûHá`²,îîþ!Ea²,ôô>º©a²,ôôfO b±,ññL!qb°+êêqºÕb° +ááÛH9c° *×בHc¯!*ÕÕxÃd¯#*ÞÞkHed¯&,ÙÙgtÉd°(,ÕÕûº-e±),ÔÔfB‘e±),ÌÌ£dõe±,,ÁÁ£´Yf°.,ÄÄŸ»½f°1,ÏÏÄ]!g°3,ÑÑŽ´…g°4,ÚÚÆ?ég°3,éé½Mh°3,óó¥?±h°2,ôônli°/,ðð^yi°/+õõ^?Ýi¯/+øøb3Aj«/+ååz¥j©/,ÚÚb¯ k©/-ÒÒØmkª/-ÅÅpÖÑk­/.··DÖ5l¯..®®pÖ™l¯./ªª¤Öýl¯./««DÖam°-/¶¶DøÅm°-/ÆÆŸY)n®,0ÔÔpYn®,°°wäy‚¯,¹¹wLÝ‚°,ËË7ÂAƒ±,ËË7饃± .¼¼7Ì „± .ººxm„± /ÉÉgGÑ„±/ÐÐL5…±.ÔÔû™…².ÔÔJý…³/ÖÖŽha†³.ØØÄņ´.Üܼñ)‡³.ãã:B‡²-èèúdñ‡²-ððgOUˆ²-ôôLO¹ˆ²-ôôq€‰±-ððG€‰±,ççxºå‰±"+ÝÝxtIа"*ÔÔqº­Š¯"*ÒÒ‘œ‹¯#*ÝÝqÜu‹¯&+ÜÜûÃÙ‹°'+ÚÚþ!=Œ±'+ÚÚû¡Œ±'+ÓÓJܱ++ÈÈ^»i°-+ÅÅŽ3Ͱ0+ËËe»1ް3+ÉÉf3•ް3,ÍÍ£Ïùް2,ÙÙ÷»]°2+å厴Á°0+êê£%°/+éé^ñ‰°/*ìì^í®/*ëë¢Q‘ª/*ÞÞ3µ‘¨/,ÕÕÅF’«/,ÍÍbc}’®/,ÂÂ÷²á’¯/-¶¶²E“¯/.®®pY©“¯/.««pY ”¯//¬¬pÖq”¯./¬¬DÖÕ”¯./ÀÀDÖ9•­-/ÔÔø•°,¹¹7퉩±,ÄÄÉÂí©°,ËËwQª°,ÈÈxµª° .¾¾‘髱!.ÀÀxì}«± .ÍÍqB᫱.ÖÖûÌE¬²/ØØf©¬²/ÚÚg] ­³/ÛÛfòq­³/ÞÞ£cÕ­³/áán9®³/ææ/Ì®².ììTñ¯².óóÄOe¯±/ôôqºÉ¯±.ôôÉO-°±.ïïÛÝ‘°±-ääûHõ°±#,ÛÛq¹Y±±#+ÒÒqݽ±°#+ÐÐGœ!²¯#*××q2…²°&+ÚÚgé²±&+ÚÚgÃM³±&+ÜÜû±³±&+ÖÖfB´±)+ÐÐÂy´°,+ÍÍ£´Ý´°0+ÒÒfçAµ°2+ÄÄf3¥µ°3+ÅÅ£3 ¶±1+ÊÊÄ»m¶±1+ØØ£ÏѶ°/*ââÄ™5·°/*ååÄ´™·°/*ÞÞ^ý·¯/)ÖÖzça¸«/)ÓÓ½Ÿª/+ÎÎ?)¹­/+ÇÇz¹¯/,¾¾m]ñ¹¯/-µµpâUº¯0.°°%¹º¯0.¯¯÷Ö»¯0/±±Ö»®//¬¬ÈÖå»®//½½ŸÖI¼­./ÑÑ÷Y­¼².ÇÇ7™Ð±,ÍÍwåýб.ÅÅ7åaѰ.ÁÁxÅѰ#.ÆÆ‘é)Ò°%.ËËÛ>Ò±%.ÏÏûGñÒ±$/ÛÛg¹UÓ²$0ßßLñ¹Ó²$0ááq´Ô²$0ââLFÔ²#0ãã²åÔ²0ççÄÖIÕ² 0ììJü­Õ² /ðð£èÖ²!1õõ<¹uÖ±"2ööûOÙÖ±"1òòqè=×±#1ìì‘€¡×±#0ââG!ر!/ÙÙgÝiر",ÐÐxºÍذ"+ÏÏGº1Ù±"+ÖÖqœ•Ù±$+ÙÙgÃùÙ±%+ØØû]Ú±%+ØØgÃÁÚ±%+××ûd%Û±++ÔÔf‰Û±,+ÖÖfíÛ±.+ØØfQܱ/+ÖÖµܰ0+Íͣݱ1+ÉÉÂÏ}ݰ3-ËË£Àáݰ4*ÖÖÄüEÞ°1,ÙÙ¢©Þ¯1)ÒÒÆ ß®1)ÅÅzdqß­1(ÅŽdÕß®1*ÂÂ8<9à°1+ÀÀ8à°1,ººz»á°1,··¥Àeá¯/-´´m¯Éá¯/.¶¶bâ-â®./¹¹p%‘â­./µµ¤Öõâ¬--¿¿ŸÖYã¬--ÉÉ¢Ö½ã²/ÑÑx<©÷².ÐÐx ø±/ÃÑTqø°0ÃÑÏÕø°#0ÐÐx>9ù°%0ÖÖqÛù°%1ÓÓqÌú±%2ààqÌeú±%3ääL&Éú²$4ççL-û²$4èè<T‘û²$6êê¼²õû²!5íí;²Yü²!4ðð½Ï½ü²"3óó7!ý²"4ööqè…ý±"5õõ‘èéý±"5ññG!Mþ±#4ììqw±þ±#3áá¹€ÿ±!2ÚÚ‘Oyÿ°!1ÑÑ}OÝÿ°"0ÐÐG¹A±"0ØØqñ¥±%.ÙÙ}B ±&.ÖÖLBm±&-ÕÕgѱ'-ÕÕf5±,,ÔÔ´™±,+ÔÔÂçý±.*ÖÖÂa°/)ììeÏů0.ááÂ:)®1.ÓÓ£À­4/ÌÌÄ]ñ®4.ÊÊ^U¯1/ÌÌÆŽ¹®1.ÈÈ¥J­1.ÀÀz™®1.¼¼Žå°1/¼¼½:I°1/¼¼—À­°1-¹¹8À°1.··Åöu°/-¸¸žÙ¯/-¼¼¥ù= ®..¿¿mY¡ ¬..ÁÁÖ «--ÁÁ¦Öi ª--ÅÅÖÍ ²/ÕÕóT¹²0ÒÒGí±0ÌÌìT±0ÎÎGJå°#1ØØL>I °%1ÚÚþG­ °%2××û&!°%3ääû}u!±%4ééL¹Ù!±&4ììfÌ="±&7îî<ç¡"²&7ðð^ò#±$6òòKi#²$5ôô;Í#²$5öö¥71$±#5÷÷n!•$±#7ôôû7ù$±#7ððx!]%°"6éégwÁ%°"6ââgw%&¯ 3ÙÙx!‰&¯ 2ÒÒÛ!í&°!0ÏÏGºQ'°#0ÔÔ7œµ'±&0ÕÕxd(±'/ÓÓx´}(±(/ÑÑgá(°)-ÒÒÂE)°,-ÓÓÄ©)°,+ÒÒŽÏ *¯.)ÐÐÄÀq*¯/)ããÄÕ*®0.èèÂö9+«1/ççfT+ª4/ÚÚÄÆ,¬4/ÌÌÆTe,¯1/ÄÄ¥íÉ,°1/¿¿˜:--°1.¹¹z:‘-°1.¹¹zöõ-±1/¹¹½¼Y.±1/¹¹—ö½.°1.¹¹s¼!/°1.¸¸¥F…/°/.ººžåé/¯/.ÀÀž_M0®..ÃÃmY±0«..ÉÉpÖ1ª-.ÆÆDÖy1¨-.ÉɤÖÝ1²1ÕÕû½ÉE²1ÑÑL--F±1ÖÖ‘F±1ÞÞóJõF±#2ÞÞÂYG°&2ÚÚ̽G°&4ÜÜäé!H°&4ççûÛ…H°'5ëëkééH±'5ïïó&MI±'8ññk&±I²'8ôôäÏJ±'8÷÷<åyJ±&7÷÷÷TÝJ±&7÷÷˜dAK±%6÷÷K>¥K±$8ôô<ñ L±$8îîqÛmL°#7ééf}ÑL¯#6ááû!5M¯ 4ÚÚqO™M¯ 3ÔÔgÛýM°"2ÏϹñaN°#1ÎÎ7™ÅN±'1ÏÏw3)O±)/ÎÎ7]O°+0ÏÏqöñO®+/ÐÐ>ÀUP®,-ÒÒ£:¹P¯-,ÑÑŽQ¯/+ÎμöQ°0+Ë˼ÆåQ°1/ããÄIR®21óóúå­R­5/ëë£;S®5/ÕÕ¼åuS°2/ÄĽÆÙS±2/ºº˜-=T±2.µµÁ¡T±2.¸¸ÁÆU±20¸¸½ÆiU±20¹¹8KÍU±2/¹¹z1V°2/ºº¿˜•V°//½½z5ùV¯/0ÀÀC_]W­.0ÄÄDYÁW«.0ÊÊpÖ%X©-/ÊÊpÖ‰X§-/ÎÎCÖíX²2ààéøÙl²2ÚÚéK=m±3ããL¡m±3þþ)n±&3ÿÿÕ&in°'4ÿÿ\&Ín°(5ççf&1o¯(5åå&•o°)6ííÕ>ùo±*7ññ­B]p±*9ôôGÁp±*:ôôLd%q±):õõT‰q±)9øø•íq±(9øøÄÀQr±(9÷÷Jϵr±':óóÂçs°&9ííÂ}s¯&9ããÂ>ás¯$8ÚÚÂñEt°!5ÔÔûg©t°!4ÔÔ} u°#4ÓÓ¹?qu±%4ÌÌxŽÕu±)3ÊÊxü9v±*3Í͹Fv¯,1ÏÏGw®,1ÒÒgTew®-0ÒÒÂTÉw¯-.ÒÒ™F-x°/-ÑѼK‘x±0-ÚÚÆ;õx±10ÏϘîYy°22Üܼî½y¯50ôô¼!z¯60å墅z±20ˢéz±20ÅÅ;M{±2/··z±{±2/··zK|±21¶¶îy|±21¹¹½Ý|±20ºº¥øA}°20½½ž½¥}°/1¿¿Å_ ~¯/1ÄÄmøm~¯.1ÆÆpÖÑ~¬.1ÇǦÖ5¨-1Ì̤֙§-1ÙÙCÖý²4ææé—铱4ääM”±4ÜÜ<±”±5ÕÕÑé•°&5ØØäGy•°'5ëëéÝ•°(7ÿÿÄÛA–°)7ññJÛ¥–°*8îîúÌ —°+8êêóÌm—°,;îî&Ñ—°,<øø­Â5˜±*<ÿÿÕÏ™˜±*<þþqÀý˜±)<ööÕía™±)<úú£ŽÅ™°)<õõn)š®(<ïïnš¯(;çç™ñš°';ÞÞ™™U›°%8ÖÖ™d¹›¯$7ÔÔ}dœ°%6ÏÏG™œ±&6Ë˹»åœ±)5ÈÈGÀI±+6ÊÊGT­¯,6ÍÍ}ž¯,3ÏÏgåuž°.2ÐÐÂåÙž±.1ÑÑ£;=Ÿ±00ÐЙ±11ÓÓ^ø °22ÏϘ½i °34ÔÔz½Í °64å嘽1¡°64å増•¡±32ÛÛ¼—ù¡±32ÍÍÆs]¢±32··îÁ¢±32¼¼˜K%£±33»»z‰£±33½½z—í£±33¾¾K—Q¤°33¾¾÷Öµ¤¯/2ÀÀb—¥¯/2ÂÂÅÖ}¥­.3ÄÄ¿Öᥫ.3ÈÈCÖE¦§-3ËËÈÖ©¦§-3ÕÕ¾Ö §²5ÛÛä½ùº±5ØØ•ø]»±6ÛÛÎÆÁ»± 6ÔÔ”<%¼±&7ÌÌ鉼°(7ÖÖ>í¼°)8ééJGQ½°*8õõ&µ½°+9òòúó¾¯,:ïï­Û}¾¯-=ðð­>á¾°.>ööûçE¿±)>úúç©¿°)>üü;: À¯*>øøníqÀ¯*>ððÂÕÀ¯*?ìì<<9Á®*?èèŽçÁ¯+>ããŽÏ¯*=ÜÜÂŽe°';ØØg™É°&:ÕÕÛ<-ñ&9Ñѹ‘ñ'9ÍÍx:õð*8ËË}]Yİ*8ÍÍ}½Ä±+9ÐÐûå!ű+8ÒÒÂ5…ű.7ÓÓÄÁéŲ.4ÔÔ™_MƲ05ÔÔÂø±Æ±14ÑÑ£8DZ26ÖÖn—yǰ36ÕÕ^8ÝDZ66ÕÕ¼8Aȱ66åå÷—¥È±34ííÆ8 ɱ34ÙÙ˜8mɱ34ÂÂ¥îÑɱ34ÀÀÆS5ʱ34¿¿˜î™Ê±34ÀÀýʱ34¿¿¢½a˰35ÁÁD—Å˰/3ÀÀŸÖ)Ì®/3ÀÀ§Ö̪.4ÀÀ Öñ̨.4ÆÆbÖUͨ-4ÇǾֹͨ-4ÏϦÖβ6ÐЕK â±7ÍÍ/mâ±7ÙÙS½Ñâ± 7ââ6Ä5ã°&8ÜÜ”™™ã°(8ÐÐ>ýã°)9ËËGaä°*:ééGÅä°+:óó¹)å°-;ýýóå°.>üü­óñå°.?ôôLUæ°)?ññúç¹æ¯)?õõ¼ç°*@ûû^Ïç°*@ññ™Jåç°+BëëfçIè¯,Bä䣙­è¯,AÞÞŽÏé±-@ÚÚ>:ué±)=××¹ÏÙé±)=ÖÖ¹Ž=ê±)<ÓÓ7À¡ê°*<ÓÓ¹ë®*<ÒÒ}Tië¯*<ÖÖqåÍë¯+<ØØÛÁ1ì¯,<ÚÚûÁ•ì±.;ÛÛÂùì±/9ÜÜ£—]í±09ÜÜ£—Áí²18ÒÒ£—%î±28ææÄ—‰î±39åån—íî²68ÎÎ^—Qï±78ßßb8µï±38óó¢8ð±38ßߥÔ}ð±36ÕÕ¥sáð±36ÈÈ÷SEñ±36Äļ©ñ±36ÃÞS ò±35ÃÃ¥îqò±35žsÕò°/6ÂÂD—9ó­/6ÁÁ—ó©.7¾¾pÖô©.7ÂÂCÖeô©-5ÂÂMÖÉô©-5ÈȤY-õ²7ÙÙSå ±!7××îî} ±#8ÏÏEá ±'8ÍÍSåE ±(8ÒÒ/í© °*9ÕÕ'< °,:ÔÔ•óq °-:ØØóÕ °-;ææì9 °,<øøúì °*?ýý­& °)@ùùqÌe °+@õõûéÉ °+@ööúJ-°+A÷÷™d‘°+A÷÷<çõ°+CííñçY°+CââÂĽ°+CÚÚÂí!±+B××Âí…±-?××ûíé±->ÙÙ!íM°->ÙÙ¹-±¯-=ãã7­->ää7-y¯->ââxݰ.>ââÛîA°.>ààû_¥±/=ßßf— ±/<ÜÜúYm±0:ÚÚeÖѲ0;ÑÑÄÖ5²1:ïï—™²1:øø—ý²29ÓÓÄ8a²29ÑÑ^Ôű39ææb8)±39ÜÜ¥Ô±39ææ¥Eñ±37ÏÏ¢ôU±36ÊÊž+¹±36ÆÆ¢6±36ÅÅž±36ÄÄž+å¯16ÄÄbSIª07ÃÞî­©.7ÀÀb½«,7¾¾bÖu©*5¾¾pÖÙ¨*6ÃÃC—=²9ÝÝz-)0²!9ÚÚÅ0±"9ÍÍE˜ñ0±&9ÆÆ îU1°)9ÎÎ/¹1°+:ÒÒ”í2°,=ÍÍ•ä2¯-=ÌÌ7å2¯-=ÔÔGI3°,=ââG­3°+@óóÕ&4°*@ÿÿó&u4°+Aÿÿq>Ù4°+BþþÄÏ=5°+Dóó¼Â¡5°+Dêênç6°+Eáá™Ji6°+EØØÂ:Í6°+EÔÔg17±+D××}•7°.DÞÞ¹¼ù7°.Cää}-]8¯.Eéé}ÆÁ8®.Dïï}K%9®.BððOK‰9°.Bîî¹îí9°.BèègQ:¯.Bããføµ:°/BÜÜgÖ;±/B××fÖ};²0AÑÑ£Öá;²0AÍÍ—E<²1Aççb8©<²1Aÿÿ^8 =²2AÛÛŸ8q=²2@ÈÈ£ÔÕ=²3@××Ô9>±3>ÓÓn–>±3>êꢖ?±3>ÙÙ¢ãe?±3<ÒÒžëÉ?±3<ËË¥R-@°3;ÆÆžR‘@¯3:ÆÆ¢Óõ@­18ÆÆD/YA©08ÃÃ÷½A©.7ÁÁÿS!B«,7»»¿8…Bª*9»»b—éB¨*9¾¾D—MC± 9ÓÓS9W±"9ÐÐgW±#9ÏÏ+çX°%9ÒÒ+eX°*:ÑÑ/ÉX®+;ÊÊ”ç-Y®,>ÀÀÄó‘Y¯-?ÈÈóõY¯->ÊÊ£GYZ¯,>ÕÕì½Z°+Aççó![°+AúúqÛ…[¯,BÿÿLéé[®,CÿÿJçM\®,D÷÷:±\®,DêêŽç]®,Fáá£y]¯,EÙÙ™ŽÝ]°,E××A^°,EÜÜg-¥^°.Dãã}Æ _¯.DééÛåm_®.EððÛ;Ñ_­.Eöö};5`¯.Eøø}î™`°.Eôôg_ý`°.Eííg—aa°.DääfÖÅa±/CÞÞgÖ)b±/CÕÕ£Öb²0DÏÏ£Öñb²0CÉÉÄ8Uc²1BÑѼ8¹c²1Búú¢Ôd²2Bää^Ôd²2BÈÈÄ–åd²3AÐУ–Ie±3AËËŸô­e±3@ääãf²3@ääãuf±3>ÜÜbëÙf±3<ÑÑ¥(=g°3;ÉÉž”¡g°3;ÆÆ¢'h¬19ÅÅD•ih¨/8¤ÎÍh§.7¿¿m-1iª,7ººsî•i©+9¼¼ÿøùi¦+9½½pÖ]j±!8Î΢ìI~±"8ÊÊÓó­~±#8Ðб$9ÎÎ u¯+;ÇÇ'ÂÙ®,<ÊÊ•=€¯,?ÔÔJ󡀯-@ÈÈé¯-@ÎÎ<ói¯,@××ä&Ͱ,CÞÞûJ1‚¯,Cææqç•‚­,Cîîqäù‚«,CööGÂ]ƒ«,DûûgçÁƒª,Dÿÿg™%„«,Fúúg牄­,FòòÂÏ턯,FììÂQ…±,EêêñTµ…¯/EççÛ冬/Eåå¹;}†«/GææO;ᆫ/FôôxÁE‡¬/Jøø&©‡¯/Iôô>— ˆ±/Hïïû—qˆ±/GèèûÖÕˆ±/FààfÖ9‰±/EÙÙ£Ö‰²0FÓÓ£—в0EÆÆÄ8eв1DÀÀÆÔÉŠ²1Dôô¥–-‹²2DëëÆã‘‹²2DÏÏ^ãõ‹²2DÔÔnYŒ±2DËËÄ𽌱2Dßߟ!²2Cêêeð…±2?àà£ëé¯2?ÓÓp MŽ®2<ÉÉb'±Ž­2;ÆÆž©0:ÆÆžy¦/:ÃÃD•Ý¥.9¾¾píA§,9¾¾ÙK¥¦,9ÁÁs ‘¦,9ÀÀ–8m‘°"7ÎÎÓ7Y¥¯#7ËË/Û½¥°#8ÉÉ'>!¦°$9ÉÉMÂ…¦°,;ËËé馰-=ÎÎñM§®-@ÏÏé±§­,AÊÊJ>¨®,BÏÏ<íy¨°-BÑÑäTݨ°-DÒÒÕ½A©¯-DÒÒqø¥©­-DÕÕGT ª«-D××xímª©-EÜÜgJѪ©-Eàà&5««-Gææg™™«®-GëëÛ3ý«°-Gëë¹öa¬°-Féé7Ŭ¬/Fçç7;)­«/Fèè7;­ª/Híí#;ñ­ª/HööwøU®¬/Lööñ—¹®®/Kïï—¯°/Jìì>Ö¯±/IêêÂÖ寱/Hãã™ÖI°²/GÙÙÂÖ­°±0FÐÐÄ—±²0EÃüÔu±²1DÄÄÆ4Ù±²1DççÆã=²²2Eéé¼ð¡²²2EË˼ð³°2Dßߎi³±2EÅÅŸͳ±2EÚÚŸ1´±2EááeA•´®2@ÜÜÚù´©2?ÔÔÚ ]µ«2=ÌÌŸ'Áµ©2<ÈÈbŸ%¶¤0;ÆÆm‰¶£/:ÇÇ÷Jí¶¢.:ÈÈDŽQ·£-:ÅŤµ·¤,9ÂÂmK¸§-9¾¾Us}¸¯#6ÍÍ/Œi̯$6ÉÉ/7Ḭ́$7ÈÈ”&1Ͱ&8ÌÌ”ñ•Ͱ-:ÎÎ>ùͰ.<ÏÏ]έ-?ÐÐJ&Áέ,@ÕÕ<:%ϯ,BÖÖ<ø‰Ï°-BÓÓÂÖíϰ.DÏÏéÖQа.DÉÉÛֵа-DÇÇq½Ñ®-EËËGK}Ñ­-FÏÏgÄáѬ-FØØñçEÒ­-FÞÞ}©Ò¯-Fãã}À Ó¯-GææxöqÓ­-HææwòÕÓ«0Hææ759Ôª0HææwùÔ©0Jèè#ÁÕª0Jìì7—eÕ­0Líí&—ÉÕ°0KììñÖ-Ö°0KèèfÖ‘Ö°0JààÂÖõÖ±/JÛÛÄÖY×±/IÕÕŽ—½×±0HÒÒ¼—!ز0GÕÕÆÔ…Ø²1E»»Æ4騲1EÖÖÆðMÙ²2EÐИбÙ±2EÙÙ¼æÚ°1Eë룃yÚ°1EÚÚ£ªÝÚ°1DØØ£AÛ­1DççÚª¥Û¨1@ââŸC ܦ1@ÜÜ£ mܪ1@ÔÔÚ¤Ñܦ1?ÍÍI5Ý¡0<ÉÉ£™Ý¢/;ÈÈ÷ýÝ¡.;ÇÇmÄaÞ¢-:ÈÈD•ÅÞ¤-;ÄÄÈ/)ß§.;¿¿pß±%5ÀÀèyó±&5»»IèÝó±'6ºº'óAô±(7¿¿'B¥ô±.8¿¿I> õ°.:¿¿<>mõ°-=ÁÁ<ñÑõ°,>ããÂí5ö°,@åå<;™ö°-@ÞÞÂ5ýö±.CÕÕîa÷°/DÌÌû½Å÷°.EÈÈGî)ø°.EÈÈ}-ø°.GÌÌgíñø¯.GÒÒ}Uù¯.GÕÕG3¹ù¯.G××¹Àú­.HÙÙ7öú¬.IÛÛ‹òåúª0IÜÜ#;Iû©0IÛÛuø­û©0KÜÜwYüª0LÛÛ!Öuü­0LßßxÖÙü°0Kàà}—=ý±0LÜÜÛÖ¡ý±0KÕÕf—þ±/LÐÐÂÖiþ±/KÐм—Íþ±0JÑѼ—1ÿ±0IÔÔÆÔ•ÿ²1GÂÂÆùÿ²1GççÁð]²2FÒÒøÁ±2FÚÚ˜æ%°1EÞÞŽ„‰°1EèèeÍí¬1Dððe„Q¨1Cííþµ¦1Aççe`§1AããŸ*}©1@Ýݤá£1@ÖÖbIE 0=ÏÏÙ©¢/<ÊÊžÄ £.;ÅÅ¿q£-;ÄÄ÷Õ¦-;ÀÀMÓ9¨.;¼¼CU²&5Çǹ‰²'5ÃÃ'wí±(5ÀÀIOQ°+5ÀÀѹµ°06ÃÃä̱/8ÆÆB}°-:ÐÐéá¯,;ìì>>E°,=íí>穱->ää>< ±/AÙÙTq±0CÏÏ}îÕ±.DÇÇ7-9°.FÈÈGí¯.HÉÉÛÎ ¯.HÏÏ}Že ®.GÐÐ}3É ¬.HÏÏxÀ-!ª.IÑÑ!]‘!ª.IÔÔÉöõ!ª0JÖÖu5Y"©0JÔÔ‹Y½"ª0MÑÑ7Ö!#«0MÓÓìÖ…#­0MÓÓOÖé#°0LÓÓG—M$²0MÐÐgÖ±$±0MÍÍ—%±/NÊÊ™—y%±/MÌÌn—Ý%±0NÌÌ—A&±0MÌÌÁE¥&±1JÏÏøã '±1JôôÁ~m'±2Iàà˜AÑ'±2HÒÒnæ5(°1GÒÒ™„™(®1Fææ£¡ý(¨1Dûûea)¦1DÿÿfÅ)¥1Cÿÿ¤¡)*¦1CÿÿŸ**¦1AööŸ ñ*¡1@ç矾U+ /?ÕÕD¤¹+¢/?ÇÇD,¤.<½½Ùp,¥-<ÄÄžDå,§.<ÀÀpbI-¨/<»»¦¿­-²(5ÍÍÓñ™A±)5ÉÉOýA°)5ÅÅŒaB¯*5ÂÂÑwÅB°+5ÄÄä¹)C°+6ÎÎwC°,8ÞÞéññC°,9ëë&ÛUD±-<íígg¹D±-=ää&E±.@ØØÌJE±.BÌÌGÎåE±-DÆÆ¹/IF°-FÄÄw­F¯-GÅÅwÎG­-HËËwuG«-HËËw3ÙG©-HÌÌw=H©-HÎÎ#¡H«-JÔÔ#5I¬/JÔÔu_iI­/KÓÓ#øÍI®/KÐÐ#Ö1J¯/NÐÐ7Ö•J°/MÊÊ7ÖùJ±/MÅÅ}—]K²/MÄÄûÖÁK²/MÆÆ™—%L±-MÇÇŽ—‰L±-MÇǼ—íL±.NÇÇÆ—QM°/NÍÍz8µM±0MÍ͘EN°0MØØ˜E}N°1Káá¼–áN°1JÔÔŽ¿EO°1Hä䣩O«1Gààe© P¦1Eßße¡qP¥1D××v¡ÕP£1CÖÖ\*9Q¤1CÞÞÚ*Q£1Aåå÷*R 1Aêêb¾eR¡3@êêp¦ÉR£2?èè -S¥2<ääDp‘S¥1<ËËCÓõS¦0>ÄÄCAYT¨/>¾¾p¿½T±(2ØØñ©h±)3××Î> i±)4ÒÒ•Oqi±*6ÑÑ£ÌÕi±+8ÓÓ<è9j±+9ÜÜ>wj±,9ëëé&k±,9ííÛìek±-;îîÌóÉk±-<ææ}Û-l±.=ÜÜì‘l±.?ÑÑOíõl±-AÊÊì/Ym°-CÈÈwνm®-EÉÉ‹Î!nª-EÆÆw:…nª-HÉÉ#Àénª-HÎÎ#Mo¬-HÓÓu±o®-JÚÚŒYp°/KÝÝuÖyp±/LÝÝuÖÝp±/MØØ‹ÖAq±/NÓÓèÖ¥q±/MÉÉ7Ö r±/JÂÂÛÖmr±/GÀÀ—Ñr²/JÃÃÄY5s²-NÆÆn—™s°.NÅżÖýs­.GÅÅÆ—at¬/DÌÌ¥8Åt®0NÍ͘8)u°0LÍÍ¥Eu¯1JææÆEñu°1KÛÛ¼ôUv®1MïïÄA¹v§1LããŽ(w£1FÚÚ÷„w£1BÕÕb(åw£1EÒÒ„Ix¤1CÕÕŸ`­x¡1@ÖÖŸ*yŸ1?ÒÒMuy¢2@ÌÌp¦Ùy¦2?ÆÆpR=z¦2<ÀÀÙ¡z¤1<ÎÎÿ{§0CÆÆp i{¨/B¼¼p–Í{®(0öö-F¹°)1óóα)3óó•3±*5ööÄå±+6÷÷ñI‘±+7üüÂO­‘±,8þþBè’±,8öö&Ou’±-:ôôéÛÙ’±-;ííÛL=“±.=ãã!<¡“°.?ÙÙÉΔ¯-AÐÐOîi”®-CÎÎwîÍ”­-DÎÎèS1•«-EËËuK••¬-HÑÑu;ù•­-HÙÙu½]–¯-HßßuÖÁ–±-JââŒÖ%—²0KääõÖ‰—²0LååèÖí—±0Mßß‹ÖQ˜±0NÙÙèÖµ˜±0KÏÏ7Ö™±0KÉÉ&—}™±0KÄÄÂÖá™±0PÂÂÄ—Eš±/WÂÂnÖ©š®/YÆÆŽ— ›¬/VÈÈnÖq›®/RÉɼ—Õ›°0OÓÓÆø9œ±0MááÆ—œ±1Hëë¼8¯1FÞÞnse©1GààÄÅÉ¡1HëëŸë-ž¡1Fè葞¡1BØØ¢ëõž¡1DÕÕžYŸ£1A××^潟Ÿ1?×פ! ž1?ÕÕ¤6… ¤2@ÒÒ6é ¨2@ÍÍpAM¡§1=ÉÉD+±¡¤1;ÖÖC¿¢§0=ÌÌpEy¢©0=¿¿§ÔÝ¢¬(/öö/Fɶ¯)0òò¼F-·±)1÷÷nü‘·±*2ÿÿJ¯õ·°+4ÿÿÂ?Y¸±+5üü>}½¸°,7ôôB!!¹¯,7ööÌx…¹®-:óóB&鹯-:íí}éMº±.<ææ7籺±.>ÚÚèK»±.@ÔÔO8y»°.BÑÑè8Ý»¯.CÐÐu—A¼®.DÔÔŒ—¥¼¯.IÝÝu— ½°.Iææu—m½±.Jë댽ѽ².Lëëu½5¾²0Mèè#—™¾²0NèèõÖý¾±0Nââu—a¿±0OßßèÖÅ¿±0K××¹—)À±0NÓÓéÖÀ±0TËËÖñÀ°0_ÄÄÄ—UÁ®0iÂÂŽÖ¹Á­0mÈÈn—­0lÏÏ^Ö¯0kÎμÖå°0`ÔÔbÖIò0Yææn—­Ã°1OßßėĬ1HààŸ8uĤ1HÒÒÄÙÄœ1Gìì£ =Åž1EååúA¡Åž1@ÕÕeAÆ 1CÒÒ iÆ 1?ÒÒ^ôÍÆ1<ÏÏ–1Çž1<ÎÎÚE•Ǥ1=Êʤ–ùǨ1>ÈÈDE]È¥1>ÅÅDEÁÈ¢1=ãã¤Å%ɧ08ØØDE‰Éª09ÊÊmÔíÉ®)/÷÷nÏÙݰ*/øøn=Þ±*0ÿÿ:¡Þ±+1ÿÿ™ñß±+2ÿÿ>Ìiß±+3ÿÿB¹Íß°,5ÿÿÌ1à®,6þþ¹¹•à®-8îî!ñùà¯-9ååOÂ]á±.;ããèÄÁá±.=ÝÝ!K%â±.?ÓÓ—‰â°.AÑѹ—íâ±.BÚÚw8Qã±.Cââu—µã±.Hèèu—ä±.Jîî#8}ä±.Kòòuáä².Mòòõ½Eå²1PïïuÖ©å²1OîîXÖ æ²1QååŒÖqæ²1OÜÜ#ÖÕæ±1LÑѹÖ9ç±1QÒÒû—ç°1^ìì™Öè¯1m»»Ž—eè¬1zÄÄnÖÉè¬1ßß¼Ö-é­1€ÈÈbÖ‘é¯1€ÍͼÖõé¯1{ÞÞ^—Yê¯1rèèÄÖ½ê®0eâ⟗!ë©0YØØÄ8…ë1TÚÚEéë™1MââMìœ1GååÄU±ì1BßߟUíž1DÕÕÚôyíž1@ÏÏŸÔÝí1<ËËD8Aîž1;ÌÌŸ8¥î¤0;ÍÍÚ— ï§0<ËËD—mï£0=ÅÅp—Ñï¢0;ììps5ð§1:ààC½™ðª19ÈÈp8ýð°)1øø3é±*1úúÄM±*0ÿÿÄ?±²+0ÿÿ£±+1ÿÿ>By°+2ÿÿ}¹Ý¯,4üü¹BA¯,5ôôw&¥°-7õõ#d °-8ôôèm¯.9ää!íÑ®.;ÚÚ¹;5 ¯/=ÛÛO8™ ±/?Ýݽý ±/AÚÚ!Ea ±/Dññè8Å ±/Iôôè8) ²/L÷÷#— ±/NööX—ñ ±/PööŒ—U ²1RøøXÖ¹ ²1RùùŒÖ ²1Sôôõ— ²1QÛÛ#Öå ²1OÚÚx—I±1V××ñÖ­°1fää£Ö®1wäänÖu­2†ÎμÖÙ®2ÑÑ¢Ö=°2ÁÁ^—¡°2ÔÔ÷Ö°1Žáá^Öi±1‡èè—Í®0{ààÚ—1£0pØØŸ—•š1iÙÙ8ù›1_ÝÝŸE]Ÿ1UÝÝsÁ 1NÔÔE%1KÏÏÄE‰ž1EÉÉŸ8íž1?ÇÇŸ8Qž1;ÈÈp—µ¤/9ÊÊb—¦/9ÊÊ—}¢08ÆÆbÖá£08íímÖE©16áábÖ©«17ÉÉD— ±)6ïïÄ3ù+²*4ððJ>],²*3÷÷™Á,²+1ýýÂñ%-¯+1üüñ‰-­+2ûû7Bí-¯,3øø!ÃQ.±,4ôô!Bµ.°-6ññèÂ/­-7òòèŽ}/«.8ïïO¼á/¬.:îî7;E0®/<îî#z©0°/>ééO¥ 1±/@ååuq1°/BððXsÕ1±/JóóuE92°/Möö#82¯/OööX83°/RõõŒ—e3°2Tõõu8É3°2Tóó#½-4±2Síí#—‘4±2RÜÜwÖõ4±2Qââ7—Y5±2ZÚÚgY½5¯2lßß™—!6¬2ÿÿÀ—…6¬4Œå寗é6¯3–Ñј—M7±3™ÎÎ¥Ö±7±2šÙÙ¥—8²1™ßߥ8y8±1”ààb—Ý8§0ŒÛÛ—A9œ0†ÕÕŸ—¥9›1ÖÖÚ8 :¡1xÖÖ8m:¤1nÒÒŸÔÑ:£1fÈÈŸ85;Ÿ1]ÃÃp8™;1V—ý;ž1MÄÄÚ—a<ž1DÅÅe—Å<£/>ÆÆDÖ)=¥/;ÆÆÖ=¤/;ÅŤÖñ=¥07ëë¤ÖU>ª15áápÖ¹>¬24ÉɧÖ?²)<ææ<ü S²);êê<»mS²*8ðð´ÑS²+5õõ>5T¯+4ööñ¹™T­+4úúOHýT¬,5ûû¹}aU°,6ýý!7ÅU¯-7ääè&)V«-8åå#™V«.9ÿÿèñV¬.;ÿÿ!ÆUW¬/=ÿÿO-¹W­/?òòOX±/Aôôè”X²/Cèè#åX±/JííuIY±/MññŒU­Y°/PôôŒSZ±/SññXSuZ¯2WêêŒKÙZ¯2Uááu=[°2U××#—¡[°2SØØ#ø\°2SÚÚ!—i\±2]ÔÔB½Í\®2nåå—1]«2‚ÿÿöø•]«4‘õõ8ù]®4šÝÝÁ—]^±3Ÿååø8Á^²2¢ÛÛz8%_±1¡ÚÚz8‰_©1žÕÕ¢8í_ž0™ÒÒ¢8Q`ž0•ÑÑD—µ`¦1”ÐЗaª1ÍÍ÷8}a¨3‰ÆÆp8áa¥1‚¾¾8Eb¡3z¹¹8©bž1r»»ŸÖ cž3f¿¿DÖqc¡1XÀÀÖÕc£0P¿¿÷Ö9d¤/IÀÀpYd£1FÅÅDYe¨0Cåå¤Yee«3?ÜÜÈÖÉe¬2=ÊÊŸÖ-f²)@èè™dz²'=ëë<}z²*:ðð<áz±*7òòÂÃE{±+5õõB©{®,5üü¹ñ |®,5ÿÿ!œq|¯,6õõèÛÕ|¬,7ååõÂ9}ª,7îîu}ª,9ÿÿè™~¬,;ÿÿèe~ª/=ÿÿ#É~¬/?õõ#Ä-±0@÷÷‹•‘²0BîîõÓõ²1JííŒRY€²1MííŒR½€²2Ré錔!±2Vããõ/…°1WÛÛ‹Óé¯1XÎÎ#;M‚®1WÇÇ#s±‚®1TËËwƒ¯1SÇÇ7Eyƒ®1^ÐÐñ8݃¬1pòòÀEA„¬1‚öös¥„®2‘òòÁE …°2œÛÛøEm…²2£ââøEÑ…²2§ÜÜzE5†«2ªÔÔ¥s™†ž2¦ÎÎÅsý†Ÿ2¡ÍÍžÔa‡©2 ÏÏ¿ÔҰ3ŸÏÏU8)ˆ°3ÊÊb8ˆ«4™ÂÂ8ñˆ¦3•¹¹Ÿ—U‰£4’³³Ÿ—¹‰Ÿ3‰µµŸ—Š 4y¸¸ŸÖŠ£3j¹¹¤Ö劣4`¶¶eÖI‹¤2X¼¼^Y­‹¤2RÆÆÖŒª1OÛÛŸ²uŒ¬3NÙÙ¤ÖÙŒ­3KÎÎÚÖ=²'BññÄB)¡²(Aòò¡±(@óó>êñ¡°*>òòÂBU¢°+<ôôñ¹¢±,:þþBœ£±,8ÿÿ>£®,7ææ!d士,6øøuÂI¤ª,6ÿÿè™­¤«,7ÿÿ!£¥­,8üüè™u¥­/;úúõ<Ù¥¯0>ôôŒ=¦±0Aééõ•¡¦²1EóóŒR§²1Iêꌔi§²2MÝÝX”ͧ²2RÒÒŒ'1¨²2UÊÊõ••¨±1W‹”ù¨°1X½½#Ù]©¯1Z¼¼‹Á©°1[ÄÄw+%ª±1TÀÀ¹¥‰ª¯1XÙÙd+íª­1gúúöžQ«¯1|ÝÝù+µ«°2áá²A¬±2—ÏÏø¿}¬³2žÏϽAᬱ2¥àའE­¦2ªÔÔ¥ô©­ž2«ÊÊs– ®¥2¬ÊÊ÷Ôq®¬2¬ÎÎRÔÕ®¯4ªÍÍb89¯¯4ªËËCÔ¯¬4¨ÄÄpÔ°§4©´´8e°£4Ÿ­­D—ɰŸ4™¯¯D—-±Ÿ4³³£Ö‘±£4±±ŸÖõ±¢4t¯¯ÖY²£3hºº¤Y½²¤2]ÊÊŸÖ!³ª2XÖÖŸY…³­3XØØ¤Öé³­4YÔÔ¤ÖM´±'CóóÃ9Ȳ(Bòò>Bȱ(AòòéÃɲ+?ððéBeɲ,=óóñBÉɲ-;þþ-ʱ-:ÿÿBñ‘ʯ-9ððOõʯ-7ÿÿèÂYË­-7ÿÿ!d½Ë®-7÷÷!Â!̰-8ìì#ú…̱0:ïïŒ<é̲0=êêõ<MͲ0@ÙÙŒ±Í²1Dëëõ'β1HÝÝX'yβ2LÉÉŒMÝβ2QººŒIAϲ3T±±ŒI¥Ï²1V««ŒŸ б1W¥¥#•mв1Y¨¨#Ñв1Z¸¸!”5ѱ1U¼¼Û”™Ñ°1WÝÝ”ýѱ1eáá] aÒ±1yÍÍÁ”ÅÒ±2ŠÍÍøR)Ó±2”ÁÁÖRÓ³2›ÉÉ—RñÓ¯2£ääÖ6UÔ¤2«ÕÕ8ÿ¹Ô£2¬ÉÉs Õ«2®ÈÈpÔÕ®2¯ÉÉDÔåÕ¯4°ÈÈCÔIÖ­4¯ÈÈeÔ­Öª4¯ÄĤEר4¯±±÷Eu×£4©¦¦ž8Ùל4¢¨¨b—=ØŸ4˜¬¬D—¡Ø£4Œ««ŸÖÙ¤4€¬¬ŸÖiÙ¢4u¼¼ÖÍÙ¥3iÓÓÖ1Ú­3cÖÖÖ•Ú®3`ÝݤÖùÚ­4`ÛÛ¤—]Û±(EììñIï°)EííéB­ï°)Cîî&Ìð±+Aíí&Buð²,?ïïBœÙð²-=ýýññ=ñ±-<ÿÿÃñ¡ñ±-;ÿÿOdò±-8þþèÂiò°-8÷÷u>Íò±-7òò#1ó²-8òòuf•ó²0:ððXäùó²1=ããõ]ô²1?ÒÒõÁô²1CÚÚõI%õ²2GÍ͌ډõ²3J»»õÑíõ²3N¯¯õÑQö²3R¨¨Œeµö²2T¢¢X÷±2W››Œe}÷²2Y#Úá÷²2Yªª7ÚEø²2W²²ÛÚ©ø²2XÒÒ´I ù²2b»»¼Úqù²2sÄÄIÕù²2…¾¾Á'9ú²2½½ø ú²2˜ÎΗDû©2 åå—`eû£2ªÕÕ8§Éû«2­ÈÈÅA-ü­2¯ÄÄž¿‘ü­2±ÅÅ÷ãõü°5³ÄÄž–Yý®5´ÆÆmô½ýª5µÃÃb !þ©5µ±±Ds…þ¡5¯§§pÔéþš5¬¨¨b8Mÿž5£­­÷E±ÿ¢5™¬¬—£5ޝ¯¤—y¢4ƒÂ—ݩ3xÛÛDÖA®3sÙÙŸ—¥¬4káá¤8 ¬5iÞÞ¤Ôm²+Iøøé´Y±+HééÛñ½±)FëëÌB!±,Dðð}ñ…±-Bããdé².@ÿÿM±.?åå¹±±.>ÿÿ!±.:ÿÿ#Ây±.9ÿÿuñݲ.9ûûuûA².9ööèf¥²1:ìì# ²1<ÞÞum²1>ÐЌѲ2@ÌÌu\5²3EÅÅu\™²3I¸¸u\ý²3L§§õÕa±4Oœœu\ű2Ršš#Õ)²2U‹\±2W  wþñ²2W§§!úU²2X®®ñe¹²2X™Ú ²2^¿¿À ²2p½½Ñå ²2€ÄĘÑI!³2ŒÅŘI­!¯2•ÔÔ½M"¤2ÛÛ8 u"¦2¨ÚÚ8 Ù"®2©ÑÑÅ(=#¬2­ÈÈž¡#¬2°ÄÄRÿ$¯5±ÇÇmAi$¬5²ËËôðÍ$¨5´ÅÅmÿ1%¦5´¼¼ë•%Ÿ5¯³³ŸUù%›5«­­Dô]&ž5¥««sÁ&¡5Ÿ³³E%'£5—ÃÃp½‰'¨5ŒÒÒŸí'®4‚ØØ¤EQ(®4}ääÚÔµ(­4ußߤÔ)­6pÚÚD4})²+Nííú3i=²,MêêÍ=±*Lýýéñ1>±,JØØÌd•>±-Hîîù>±.Fúú¹™]?².DÕÕtÁ?².Cÿÿ!Â%@±.?ÿÿ#d‰@².>ÿÿ >í@².=ýýèQA².=÷÷!ûµA²1=ççèûB²2>ÚÚõÕ}B²2@ÒÒuLáB²3?ÁÁuLEC±3CÂÂõ)©C±4E¼¼‹k D±4K¬¬#LqD±4NššèÕÕD°3Q““#þ9E±3R’’èÕE²3V““èLF²3Vžž¹úeF²3Z°°ñÑÉF²3VÑÑ™£-G±3[ÎÎÀ‘G²3lÃÃÆvõG²2~ÆÆ;jYH³2ŠÑÑzѽH¬2’ëë— !I£2šØØ8I…I©2¦ÖÖ8`éI¬2©ÐÐs'MJ­2­ÇÇU`±J¯2¯ÆÆb K¯6°ÊÊ”RyKª6°ÐФRÝK¤6°ÎÎD AL£6¯ÇÇp ¥L6«ÂÂpÙ M6¨ÂžmM 6¤ÃäÅÑM¢6 ÉɤU5N¨6šÑÑÚÅ™N«5“ØØmýN¬4ŠÞÞDžaOª4†ääDðÅO©5ƒÞÞDð)P«6{ÚÚDÐP±+QõõÏüyd±,PççÝd±,OááAe²-Mêê¥e².Kÿÿñ´ f²/Iíí¹´mf²/GÿÿOÑf²/Gÿÿ€5g²/Bòòu>™g²/Aïï fýg²/@ññ#&ah²/?ëë#gÅh²2?ÞÞuó)i²2?ÖÖ#Li²2AÖÖ‹Lñi²3@ÂÂuLUj²3BÂÂuó¹j±4E½½õ­k°4KµµõLk®5M­­#Låk®3P¨¨‹ûIl°3R¢¢OÕ­l±3U7Õm±3U››¹ûum±3Y©©>úÙm°3UÇÇŽú=n°3Z¼\¡n²3i¼¼o²2|ÈÈÁ\io²2‰××zÍo©2“ôô×1p§2šÐÐj•p«2¦ÒÒ¢Ñùp«2©ÐÐU ]q°2¬ËËÅIÁq±2­ÌÌ+M%r®6®ÔÔpp‰r¨6®ÚÚm ír¤6­ÛÛp Qs¢6­ÛÛD¾µsž6©ØØDDt 6§ÝÝD }t¢6¤ããRát¥6¢ääÙEuª6ŸààDR©u©6šã㟠v§5•ëëŸ qv¥5’ààpCÕv¥5’ÝÝpª9w¨6‰ÙÙ§„w°-SÑÑŽ‰‹±,Rååd틲-QÜÜddQŒ².OççBµŒ²/Mï﹎²/Kÿÿt™}²/Jññ!Âá²/IÙÙ!ñE޲/EÛÛ!&©Ž²/Dáá€g ²/BááèÛq²/AÞÞ€óÕ²2@ÜÜ#ó9²2AÚÚ€ó²3AÔÔ#L‘²3@ÉÉõqe‘²4AÃËÉ‘±4C¾¾#G-’¯5IÁÁ#q‘’®5MÎÎ#Lõ’¯3O××èLY“±3RÒÒ¹L½“²3UÄÄÛL!”±3U²²ñL…”°3W¶¶ÂLé”°3RÏÏŽÕM•±3XÙÙök±•²3jãã˜Õ–²2}ïï˜y–°2‰êê¥\Ý–«2’ññ;ÕA—«2˜ÉÉz\¥—­2¤ÎÎUj ˜¯2¦ÒÒžÑm˜±2«ÐÐÙMј°2«ÓÓb”5™¬6¬ÙÙmÓ™™¨6­àà ý™¥6¬ââpIaš¤6¬ééIÅš¡6¨ç礤)›¢6¦ììŸÚ›¥6¤òò¤ ñ›¨6£ïUœ¨6¡èèŸM¹œ§6 ì줤¤5ööŸ¦¢5›ÞÞ¤¡å¤5™ÛÛŸ‚Iž§7’ÚÚ¤‚­ž±&Vê꙲²)TÛÛ>Ïý²²-SØØBJa³²/PÿÿÌų²/Oààd)´²/LÊʹ´²/LÊÊÝññ´²/JÁÁ!&Uµ²/HÕÕOÛ¹µ²/Fàà!Û¶²/EÚÚ€G¶²/BÙÙ#Gå¶²2Bßß GI·²2AÜÜ#G­·±3CÍÍõG¸±3AÌÌ#Gu¸²4CÍÍõqÙ¸²4DÓÓ#G=¹±4JÝÝõq¡¹±5Mëëuqº±2Oõõèqiº²2Qôô¹qͺ±2Têê¹q1»¯2UÄÄBq•»¯2UÆÆ™qù»°2QååÀq]¼±2WøønóÁ¼²2jÿÿ¼L%½²2~ÿÿz­‰½¯2ŒååLí½«2“××bóQ¾­2™ÉÉ^µ¾°2ŸÑў俱2¤×׿”}¿¯2¦ÖÖb-á¿®2©ÕÕDEÀ«7©ÕÕpΩÀ§7©ØØp• Á¦7©ÜÜCÚqÁ¥7©îî¤jÕÁ¢7¥ññDj9£7£ððŸv§7£òòÈvè7¢ïïÈÈeæ7¤ëëŸÚÉÃ¥7¥óó¤È-Ä£7¥þþ¤M‘Ä£7£ßߤ¡õÄ¥7˜ÜܤˆYŨ7–ÚÚ¾‚½Å²'XËË<å©Ù²(WÊÊ Ú²+W÷÷&ÀqÚ².UÜÜH>ÕÚ².TÕÕHû9Û².RÑÑO>Û³.RººÝ&ܳ.PÄÄOgeܲ.MÛÛÝÛÉܲ.KååOÛ-ݲ.KÛÛOG‘ݲ.H××!Gõݲ1HÜÜèxYÞ±1GÙÙ#ì½Þ±2HÌÌ€x!ß±2FÐÐ#x…ß²3Gââèéß²3Gôô#xMà²4Júúõ±à±4N÷÷#xá²2Rööèxyá²2UøøBÝá±2UøøÛGAâ°2VÖÖ>¥â±2XÕÕ3 ã±2UêêÀ­mã±2ZêênÑã±2kçç¼q5ä±4{ããzq™ä­4‰ÏÏqýä©4‘ÎÎqaå®4˜ÙÙ¿ÕÅå±4¦àà÷<)æ¯4§ääDÄæ­4¥ßßDÄñæ¬4¤ÙÙCÄUçª7¢××D•¹ç§7£××Ù£è§7¤Üܧ\è¦7¤õõ\åè£7¡ûûDþIé¤7¡øøpš­é¨7¡õõDšê¨7¤õõÚvuê¥6§øøŸvÙê£6¬ÿÿ¤›=ë¤6®ÿÿ¤ ¡ë¥6«àाì©6¡ÞÞÈ‚iìª6œÜÜv„Íì±(YÌÌd¹ ²)XÏÏñ; ²+XââB3 ²-VÒÒÛå ².UÐÐHÛI ².T¹¹Ã&­ ³.SÕÕÃÛ ³.RÙÙº&u ².Nââ!ÛÙ ².MèèOó= ².LææÝG¡ ².KßßOì ²0JÛÛÝìi ±0Jàà€‘Í ±1Jääè‘1 ²1Iîî!x• ±2Gúú!xù ²2Hÿÿ!x] ²3LÿÿèxÁ ±3OøøOx% ²3Rõõ‰ ²3Sööxí ±3VööQ ±3Tôô3µ ±3XèèÀx ²3Uèè¼G} ²3YØØTá ±3kÏÏKE ¯6{ÔÔ¥x© ¨6†ÓÓ¥x §6áás‘q ®6–ããsûÕ °6¡ééÙ<9 ­6£êê'< ª6¡áá¤û «6¡ÙÙDûe ª7 ØØCúÉ §7 ÛÛp<- §7¢ããmû‘ ¨7¡óóÙþõ ¥7 ÿÿDfY ¤7 ÿÿD\½ ¦7žúú^v! §7¡üüDÚ… ¤6¤ÿÿÚ é £6¦ÿÿ¤ÚM ¦6¦ûûÚ¾± ¨6£ããȾ ¬6£ßßvCy ­6 ÝÝÈÿÝ ±*\ÜÜG:É' ²*[ÿÿí-( ²+[ÿÿÑ( ²,YêêÃGõ( ²-XÓÓÛY) ²-WÆÆ1é½) ²-V××B}!* ³-VññÃ&…* ³-SëëºÛé* ³-Ríí¹ÛM+ ²-QööO}±+ ²-Oðð!ì, ±/Oææ€ìy, ±0OññèìÝ, ²0Oÿÿ€ìA- ²0Mÿÿ!x¥- ±1JÿÿOG . ±1Jþþxm. ²2MõõxÑ. ²2P÷÷ÃG5/ ²3SýýBx™/ ±3Výýñý/ ±3Vöödxa0 ±3TññŽÅ0 ±3Wãã3)1 ²3Vâân1 ²3ZÕÕnñ1 ²3kÒÒ^xU2 ¯6yÙÙι2 §6…ÒÒžx3 ¦6‹ØØ”3 ¬6’ßß÷qå3 ®6™ãã¿gI4 «6›ââžû­4 ©6›ÙÙDq5 ©6›ÓÓ¤gu5 ¨8ÖÖDfÙ5 ¦8žÜܤ£=6 ¨8 èèpÄ¡6 ©8 êêp^7 ¦8 üü¤i7 £8þþ¤ÚÍ7 ¤8›÷÷Dv18 ¦8œùù¤e•8 ¤6œÿÿÈ'ù8 ¥6ýýŸp]9 ¨6œììÈ Á9 «6›ââv§%: ®6™ààvA‰: ®6žÞÞÈôí: ²-\ÿÿ¹éÙN ²-\ÿÿOÂ=O ²-[ÿÿÌä¡O ².ZÿÿÛP ².YõõºÛiP ².YòòÝ&ÍP ².XüüHG1Q ².XÿÿÃÛ•Q ³.UÿÿÃGùQ ³.TùùÃG]R ².SøøÃìÁR ².Róó¹ì%S ±/Rëë€ì‰S ±0Rêê€ìíS ²0Rîî#7QT ²0Püü!GµT ±1LÿÿOxU ²1KÿÿG}U ²2OþþxáU ²2RûûBqEV ²4Tþþñ©V ±4Wÿÿdq W ±4WûûÂqW ±4Wíí»xÕW ±4Vßߘ‘9X ²4UÖÖ˜xX ²4\ÖÖ¼Y ±4j××^xeY ®4y××KÉY ª4‚ØØx-Z «4ŠÛÛx‘Z ¯4áá¤xõZ ®4”ÜÜp‘Y[ «4•ÙÙmq½[ ¨4•ÖÖpL!\ ¦4–×ןL…\ §8˜ÛÛMfé\ ©8˜àऎM] ©8›ææM¢±] ©8›ðð¤¢^ ¥8œóóDÆy^ ¢8˜óóDbÝ^ £8–öö¤÷A_ ¤8•õõÈR¥_ ¥7“òò¤R ` §7“ëëÚÿm` ©7’ããÈEÑ` ¬7‘ÞÞvã5a ­7ˆÞÞÈE™a ®7”ßßÈEýa ²1\ëë&óéu ²0\îîÃMv ²1[üü<±v ²1[ÿÿtéw ²/ZÿÿÝóyw ²/Yôô#ÛÝw ²/YòòÝ&Ax ³/YììºG¥x ³/Wïïº} y ³/Vññºìmy ²/Uôô1¹Ñy ²/UîîÃì5z ²0TääÝ7™z ±0Uãã!‘ýz ²1Uêê€7a{ ²1Sûû!7Å{ ²2OýýOx)| ²2Oÿÿx| ²3QÿÿÃxñ| ²3Sÿÿ}U} ²4UÿÿÃG¹} ±4XüüÃ~ ±4Yòò¹G~ ±4Xååñ‘å~ ±4UÞÞ:I ²4UÛÛ‘­ ²4\ÞÞJì€ ®4hßßxu€ ª4uÜÜ^‘Ù€ ¬4|ÚÚ6ì= ¯4…ÛÛÙ‘¡ °4Œàà”G‚ ®4ÛÛD‘i‚ «4ŽØØMxÍ‚ ©4Ž××Cq1ƒ ¦4ÛÛDq•ƒ §9’ßßDLùƒ ¨9“ååMÄ]„ ¨9”çç¤KÁ„ ¨9“ééÚK%… ¥9•êê¤z‰… ¡9’ëëDsí…  9Žîî¤EQ† £9‰îîesµ† §9…ìì¤ ‡ ª9ååv }‡ «9~ßße–ᇠ­9ÜÜÈ–Eˆ ®9€ÝÝÈ–©ˆ ®9‘ßß¾– ‰ ²6[èè‘ùœ ³6[ííœé] ²4[ûûOÁ ²5Zÿÿ!&%ž ²1ZÿÿÝG‰ž ²1YòòÝÛíž ²1YááºÌQŸ ²1YèèÝ̵Ÿ ³1Xòò!G  ³1Xúúݹ}  ³1Wûûºìá  ²1VôôºìE¡ ±1VììO7©¡ ±1WóóO7 ¢ ²2Wÿÿ!7q¢ ±2Xõõ€xÕ¢ °3QôôO79£ ±3Q÷÷x£ ²4SüüÃx¤ ²4Uÿÿxe¤ ²5Xÿÿ}Gɤ ²5Xööñ-¥ ²5Yèègq‘¥ ±5XÞÞñ­õ¥ ±5WÞÞÂY¦ ²5Uãã£G½¦ ±5YééÄ!§ ¬5eëëÄ…§ ©6nææìé§ ¬6uááb‘M¨ ®6~ÝÝ”‘±¨ ®6ƒÝÝDq© ®6…ÙÙp‘y© ­6„××÷‘Ý© ª6‡××DAª §6‰ÜÜDG¥ª ¨9‹áá¤q « ©9ŒççÚfm« ¨9ééÈÄÑ« §9ããjS5¬ ¤9ãã›S™¬  9‹ååÚý¬ ¡9ƒçç¾6a­ §9~èèvAÅ­ ª;xææv+)® «;ráávã® «;lÛÛÈÔñ® ¬;oÚÚ¾–U¯ ­;ƒÛÛ¤–¹¯ ­;”ÞÞ¾–° ³:[öö¹ì Ä ³:[÷÷¹ìmÄ ²9[øøÝGÑÄ ²9[ÿÿ.G5Å ²2Zÿÿºó™Å ²2ZññBÛýÅ ²2ZÛÛÃGaÆ ²2ZééH&ÅÆ ³2YððÃ&)Ç ³2YññœÛÇ ³2XððGñÇ ³2Xëë.ìUÈ ²2Xëëtì¹È ²2YùùìÉ ²3Yÿÿt7É °3Yíít7åÉ °4SèèÃxIÊ ²4TêêÃx­Ê ²4UòòxË ²5XÿÿÃuË ³5YÿÿñqÙË ²5Zôôg­=Ì ²7Zãã>ó¡Ì ²5Yááf)Í ±7YääfLiÍ ²5UêêÂ)ÍÍ °7Xòò£q1Î ¬5_ôôG•Î «:dïïbxùÎ ¬8jææ¢x]Ï ¬:sààÙxÁÏ ®8yÝÝb‘%Ð ®:zÚÚp‘‰Ð ­8zÙÙM‘íÐ ª:ÙÙ¤QÑ ¨:‚ÜÜÚxµÑ ©9…ããÈÒ ©9‡èèe}Ò ¨9ˆéévóáÒ ¦9ˆââþÚEÓ ¢9ˆààvŸ©Ó Ÿ9ƒããe• Ô £9}æævRqÔ ©9yççvëÕÔ «<såå ë9Õ ª<nàà®RÕ ©<iÚÚÈæÖ «<oÚÚ¤4eÖ ­<„ÛÛÊ4ÉÖ ­<—ÞÞ¾–-× ³>[ììÝ‘ë ²=Zòò!ì}ë ²<Zòò€Gáë ²9Zùù€ìEì ²9ZÿÿÝG©ì ²7ZññÃÌ í ³6YÞÞ’Ûqí ³6YééœéÕí ³5Zíílñ9î ³4Yííi&î ³3YïïiÌï ³3XòòNGeï ³5X÷÷NGÉï ²6YÿÿPì-ð ²6ZÿÿP‘‘ð ²6Zåå1ìõð ²7VÞÞ1xYñ ²8VßßÃx½ñ ³8Xêê¹ó!ò ³8Yùù¹­…ò ³9ZýýÛ­éò ³9Zôô­Mó ³;Zéé˜)±ó ²:ZèèÀÕô ²<[ëë­yô °;Wïïú­Ýô «=Wòò^­Aõ ©<\óó¢¥õ ­=^ððÅG ö ®;béé¥qmö ®<jââmxÑö ¯:qßßpx5÷ ­;tÜܤx™÷ ¬9tÛÛ¤xý÷ ª:xÜÜÈxaø ¨:}ßßv7Åø ¨8ää ‘)ù ©;„èè xù §=…ééþqñù ¤>‡ææþqUú ¡>‚ääv\¹ú  =ææv\û ¦;}èè ×û «:zèè Ñåû «=zææ MIü ©=xááÈ(­ü ª=tÜÜÊëý ¬=|ÛÛ¦ôuý ­=…ÜܦÔÙý ­=˜ßß¡Ô=þ ³@Zãã€}) ²?Zíí€ó ²=Zððu¹ñ ²;Zôô€GU ²9Zöö€}¹ ³7ZèèÝ& ³7ZÚÚºñ ³6Zååº>å ,5Xìì’ñI ,5Xóó2é­ ³4XýýŠó ³4YÿÿPÌu ²6Yÿÿ’LÙ ³6ZÿÿHÛ= ²6Zÿÿó¡ ²7Zââ1ó ²7ZÝÝÜÛi ³8ZÝÝêLÍ ³8ZççÃ1 .9[õõÕ• .;]ùù™Õù .;^øøñ)] ²;\ôôÄšÁ ³<\íí™\% ±<YïïeÕ‰ ­=WððÄ)í §=Wíí^kQ ¥=Xëëbµ «=Zêêbx ¯=]ççÅ} °<`ááÙxá ®<`ããDxE ­;gàà¤x© ­;jßߤ7  «:pÞÞÈxq ¨:ráá xÕ ©;xääk79 ¨<èèš7 ¦=‰èèk! ¤=Šèè Ge! ¢=‰ççvGÉ! ¢=Œèè )-" §<ŠëëšÕ‘" ¬;‡ëë ×õ" ¬>‹éévÑY# ¬>‘ââ¾M½# ­>‹ÞÞ¦ !$ ®>‰ÛÛ¦R…$ ®>ÜÜ©ëé$ ­>¡ÝÝ©AM% ²BZââ€g99 ²AZìì€g9 ²?Zðð &: ²=Zïï Ûe: ³:Zìì€&É: ³7ZßßÝ>-; ³7ZÔÔH‘; ³7ZÑÑ.>õ; ³6XÚÚ.ÂY< ³6Xããº>½< ³5Xíí>!= ³5Yõõ.…= ³7Y÷÷oéé= ³7Zôô.éM> ²7Zïï.g±> ²8Zääé? ²8ZááÃ>y? ³9ZææœÂÝ? ³9\ðð<A@ ³9]÷÷Â¥@ .<]ùù»ä A ²<^þþÂämA ²<\ýýÂÑÑA ²=\ïïf×5B ±=]ððfÕ™B ­>[ðð<×ýB ¨>[ììe\aC ¥?YèèŸ)ÅC ª>Zççp))D ¯>\ææbkD °=_ààbqñD ¯=^ääD­UE ®<aàहE ­<eàà¤xF «;kààÚxF ©;nããÈxåF ©>uææ ‘IG §>êêþ‘­G ¥>‡ìì xH ¦=‹ììþÉuH ¤=ìì ‘ÙH ¥>‘íí =I ©>îî ¡I ¬?îî›)J ­?šëë¾\iJ ­?¥ää¦ÑÍJ ­?žÞÞ¦Ñ1K ­?šÞÞ©j•K ­?œÝÝMùK ¬?¦ÝÝ©']L ²F\ÝÝ€éI` ²B\áá€&­` ²C\åå!&a ²?\èè€gua ³;\åå!&Ùa ³8\ÜÜ.Â=b ³8\ÔÔÙ¡b ³8\ËË™c ³7ZÔÔtic ³7ZÚÚ™Íc ³7ZààPd1d ³7[ää¶<•d ³8[èè2™ùd ³8\éé¶J]e ³8\çç1JÁe ³9\îîŽ%f ³9\ííH‰f ³:\ôôÃÏíf ³:]ýýíQg ³<]ÿÿBíµg ³=]ýýñíh ²>^ÿÿg}h ²>^ÿÿkÎáh ²>\øøq•Ei ±?_ùùû'©i ®?]ùùe' j «@\ððÄqj ª@[ëë^jÕj ¬?Zééžú9k ¯?[èèDjk °>]ââD l ¯>\ããDþel ®=]ààC­Él ­=bàভ-m «<eá᤭‘m ¨>iääÈõm §AqççÈ‘Yn ¦@}ëë›x½n ¨>„îîvx!o ©=‰ìì ‘…o ¨=˜ëëv‘éo ©>›ììÈ‘Mp ¬@œííÈx±p ­A íí¾Lq ­@±êê¦\yq ­@½ãã¦Ýq ¬@·ÛÛ©Ar ¬@±ÞÞ¦Õ¥r «@µÝÝ©× s ª@ºÝÝ©Ñms ²H[ÐÐ!gY‡ ²F[ÙÙÝg½‡ ²F[ààº&!ˆ ²B[ããH&…ˆ ³;[ááºééˆ ³:[ØØºM‰ ³:[ÐÐ’™±‰ ³:[ÍÍ’]Š ³;ZÕÕyŠ ²;ZÜÜ’:ÝŠ ³;Zãã¶JA‹ ³;[èèÞŽ¥‹ ³;[ííµ¼ Œ ³;\ðð|åmŒ ³;\ôô2ÑŒ ³<\ûû1˜5 .<]úúÃå™ ³=]ûûÃåý ³=]ýýº;aŽ ³=^ÿÿ¹;ÅŽ ³?^ÿÿ};) ²A^ÿÿgî ²B^ÿÿÂñ ²B^ÿÿ£U ²C^ÿÿeî¹ ¯C^ÿÿŸS‘ ¬C]þþ‘ ­D[ôô¤”å‘ ¯B\íí¤MI’ °B[ééD ­’ ¯A\èèCד ­A[ÝÝC×u“ ­@^ÝÝpšÙ“ ¬@bÞÞC)=” «?dàà¦)¡” ¨?gã㤭• ¦Boææ¾i• ¨Azééȑ͕ «?„ëë›1– ¬>ˆëëÈ‘•– ¬>›ìì¾7ù– ¬?¦ëë¦x]— ­A¯éé¦GÁ— ­B¸çç¦g%˜ ­BÈââ`鉘 ¬BÓÝÝ`ûí˜ «BÌÛÛ©ûQ™ ªBÆÜÜ©Lµ™ ©BØÛÛ\š ¨BÙÜÜÕ}š ²J[ÇÇ!Li® ²I[ÑѺÛÍ® ²G[ØØÃ&1¯ ²E[ÚÚÃg•¯ ³=[××ÃÛù¯ ³;[ÌÌ’ñ]° ³;[ÃÜÂÁ° ³;[ÊÊ1À%± ²<ZÓÓPö‰± ²<ZÝݶÆí± ³=Zåå¶Q² ³=[íí¶˜µ² ³<[ôôN½³ ³<\ùùÞ—}³ ³<\ýýPÖá³ ³=\ÿÿ1ÖE´ .=]ÿÿœ—©´ ³>^ÿÿœ— µ ³>^ÿÿÛYqµ ³?^ÿÿ}—Õµ ³B^ÿÿBø9¶ ³C_ÿÿq—¶ ²C^ÿÿfÖ· ²D^ÿÿúÖe· ±D^ÿÿú—É· ®E^ÿÿÄ8-¸ ­E^ÿÿ÷s‘¸ ¯E\÷÷Ù+õ¸ °C^ññžëY¹ °C]êêRR½¹ ¯B^ææRM!º ­B^ÜÜp0…º ¬AbÜÜ(®éº ­AcÞÞpšM» ­@cààC)±» ©@eãã¦)¼ §Blææ¦­y¼ ªAxéé¾ݼ «Aë뾑A½ ¬@ƒëë¾x¥½ ¬@”ìì¦x ¾ ­A¬ëë©xm¾ ­AÂèè`GѾ ­BÎää`}5¿ ¬CÚßßg™¿ ¬CßÜÜgý¿ «CÚÙÙ©gaÀ ©CØÛÛ©qÅÀ §CìÛÛÍq)Á ¦CòÜÜÁ ²MZÊÊ!&yÕ ²LZÏÏ!&ÝÕ ²HZÐкgAÖ ²FZÒÒHÛ¥Ö ³>ZÑѺG × ³<ZÊÊ.gm× ³<ZÅÅ.dÑ× ³=ZÌ̺5Ø ²>ZÖÖ’™Ø ²>Zßß2˜ýØ ³?Zçç¶øaÙ ³?[ññ¶—ÅÙ ³=[ööÞÖ)Ú ³>\ûûPÖÚ ³>\ÿÿ1—ñÚ ³?]üüœ—UÛ ³?^üüœÖ¹Û ³@^ûûœ—Ü ³@^ùù}—Ü ³@_ûû}ÖåÜ ³D^úúÛ—IÝ ²D_üüf—­Ý ±D^þþf—Þ ±E^ÿÿf—uÞ ±E]ÿÿ£—ÙÞ ¯F]þþ—=ß ®F^ýýp8¡ß ®F_÷÷pEà ¯D_òò¿Eià ®D`ììm Íà ­Caåå§R1á ­CbÜÜC •á ­BeÜÜ`jùá ®BeÞÞC0]â ¯Aaàà( Áâ ¬Abåå¦þ%ã ¨Ahçç¦)‰ã ©Btéé*íã ªC{ëë¡Qä «D}íí¡µä ¬Dîî¦xå ­C®íí©}å ­BËêê¦xáå ­BÚåå`GEæ ­Dãáá©G©æ ¬DèÜÜ¡G ç ªDæØØGqç ¨DäÚÚÍxÕç ¦DòÙÙx9è ¦DüÚÚxè ²NZÓÓ݉ü ²LZÐÐOgíü ²IZËËOÛQý ³GZËËÝóµý ³>ZÏÏO¹þ ³<ZÏÏ€g}þ ³=ZÎÎàÂáþ ³=ZÎÎoEÿ ²>ZÙÙo©ÿ ²?Zâ☠³@Zëë…Áq ³@[òò¶øÕ ³>[÷÷P—9 ³>\ùù’— ³>\üü’— ³?]ùù’8e ³@^÷÷B8É ³@`÷÷B—- ³@^øø}—‘ ²A_ûû}—õ ²D^ýý}—Y ²D_ÿÿfø½ °E^ÿÿfÖ! ¯E^ÿÿe—… ¯F^ýý¤Öé ¯F_úú—M ®G`ùùb—± ­Ga÷÷b8 ­Daòò§8y ¬Daéé§ôÝ ¬DaááC6A ®CdÜܦ'¥ ®ChÜܦI ®BgÞÞ*×m ®Bcàà*×Ñ «Bbåå¦×5 ¨Ajçç¦þ™ ©Bvéé¦)ý «D|ëë`qa ¬E€îî`Å ­Eîî©) ®D­îî©x ®BÍêê©xñ ­AÞææ„‘U ­Eíáá©7¹ ¬EöÜÜx ªEö××Íx ¨EôØØ©xå §EøØØÍxI §EÿØØÍ‘­ ²K[ÐÐOç™# ²JZÍÍÝ>ý# ³I[ÉÉOa$ ³HZËËtÛÅ$ ³G[ÎκG)% ³EZÍÍÝÛ% ³E[ÌÌ.>ñ% ²DZÐÐ.nU& ²D[ÙÙ.À¹& ³CZäät:' ³C[ìì’n' ³C[ôô1Îå' ³A\ùùPKI( ³A\ûûº½­( ³A]üüº—) ³A]üüºÔu) ³A^ûûºÔÙ) ³A^üü}Ô=* ²A^üü¹Ô¡* ²A^þþ}Ô+ ²C^ÿÿg8i+ ²D^ÿÿf—Í+ °E^ÿÿv—1, ®E\ÿÿ\—•, ®F`ûûeÖù, ®Fa÷÷¤—]- ­Gaõõ —Á- ¬Gbññp—%. «IbííR8‰. «Haää§sí. ­HaÝÝ`Q/ ®GbÜܾ/µ/ ®GkÜ܈0 ®FjÞÞÈ•}0 ®Feââˆ'á0 «Fdå徕E1 ¨Gkçç`•©1 ªHxêêÍ£ 2 ¬H}ìì`)q2 ­GññÍÕ2 ®G‘ññ`k93 ®F«ïïÍG3 ¬FÆíí©‘4 «FÙææ©qe4 ªGîáá©qÉ4 ©GüÚÚ‘-5 ¨Gý××Íx‘5 §GùØØxõ5 ¦G÷ÖÖÍwY6 §GÿÖÖ7½6 ²K]ÏÏO:©J ²J\ÒÒO K ³J]ÓÓt>qK ³F\ÖÖºéÕK ³G]ÕÕÛ9L ³E\ÎκñL ³D]ÉɺM ²D\ÒÒt:eM ²C^ÜÜtÉM ²C]çç:-N ³C^ðð’:‘N ³B]ööPíõN ³B^úú1-YO ³B]ýý½O ³B^ýýÃE!P ³B]ùùH–…P ³B]÷÷}ãéP ³B]÷÷}ãMQ ²B^öö¹ ±Q ²D\÷÷gR ²D\÷÷fsyR ±E[úúú8ÝR ¯E]úúfÖAS ­F^üüv—¥S ¬F`øøeÖ T ­G_õõD—mT ­G`ððCÖÑT ¬Gbííp—5U «IcççC8™U ¬Hdàà§—ýU ®HdÚÚ`saV ¯HdÜÜ‚ÅV ®GkÝ݈½)W ®Ghß߈—W ­Feâ∽ñW ¬GfååUX ¬Inçç©î¹X «Ixêê©^Y «Hìì©ÚY ­H‰òòÍkåY ­Gòò`kIZ «G¥ððÍ­Z ¨F¾íí[ ¨FÐææ­u[ ¨GáßßqÙ[ ¨GðÚÚ©­=\ ©GùÖÖÍq¡\ ¨GÿÕÕÍx] §GôÔÔxi] ¦GíÔÔ7Í] ²M]ÒÒÝŽ¹q ³K]××!<r ³J]ØØOdr ³G]ÚÚºñår ³G]ÛÛºûIs ²G]××t­s ²F]ÒÒtt ²F]ÜÜtŽut ³E^ååtnÙt ³E^îîJ=u ³D^õõ’J¡u ³D^ùù1Jv ³D^ùù1íiv ³D^úúœÍv ³D^øø1K1w ³D^òòBë•w ³D\ïïÃëùw ³D^íí}]x ²D_ííG6Áx ²D^ïïgë%y ²E[ïïÂ+‰y ±F[òòesíy ±F\ññe—Qz ¯G^ôôÚ—µz ®G_ôôDÖ{ ®H]òòp—}{ ­H]ììb—á{ ¬I_åå§ÖE| ¬J`ááC—©| ®Jbßß¡— } ¯JcÝÝ¡Öq} ¯IeÜܾ—Õ} ¯HiÝÝÊÖ9~ ¯Hgßß¡—~ ®Heãã©— ­Ggææ©8e «Jnéé„zÉ ©Jyêê©¥-€ ªI€ììÍ-‘€ ¬I‡ôôäõ€ ­HžôôÍ\Y ªH£ññ ½ ¨G«îîk!‚ ©G¹ææÍ…‚ ªGÓààé‚ ¬GêÚÚ„­Mƒ ¬GôÔÔ©­±ƒ «GôÓÓx„ ¨GõÑÑxy„ §GîÐÐ݄͑ ³M]ÕÕ!<ɘ ³J]ÕÕ!d-™ ²I]ÒÒ!<‘™ ³H]ÕÕ!Âõ™ ³H]ÚÚOñYš ²G]ÝÝÝû½š ³F]ÜÜÝÂ!› ³F]èè.J…› ³E]ññºé› ³E]÷÷H<Mœ ³D]ûû’<±œ ³D]úúH ³E]õõ’Ñy ³E]òòÃíÝ ´E]ïïÔAž ³E]ííB ¥ž ³E^êêÛ` Ÿ ³E_êê} mŸ ²Eaëë¹ ÑŸ ²F`ííÛ”5  ±F]ññf/™  ±G\ôôeÅý  ±G[óóÚ½a¡ °G[ïïDEÅ¡ °H[îîp8)¢ °I[ììÙ8¢ ®I\éé§—ñ¢ ­I\ââ§—U£ ­K_ÞÞC—¹£ ­Jcßߡ֤ ®Jfáᦗ¤ ¯IgÝÝÖå¤ ¯IgÞÞ©—I¥ ¯Hgáá©Ö­¥ ®Hhãㄽ¦ ¬Hlææ„½u¦ «Ksé驽٦ ©K|êê8=§ ªJ‚ìì8¡§ ­JŠôôÍ'¨ ­I˜ôô×i¨ ­I ññÍ\ͨ ¬HªììÍš1© ¬H¹ææ•© ¬GÏßßÍù© ¬GäØØÍ­]ª ¬GîÓÓÁª «GòÐЩx%« ªGøÍͩɉ« ©GòÍÍ©‘í« ³M^××!dÙ¿ ³K^ÜÜ€Â=À ²J^ÜÜ!¡À ³J^ÙÙOÂÁ ³I^ÚÚÝñiÁ ³I^ââOgÍÁ ³I^ììÝé1 ³H^õõO>• ³G^òòt<ù ³G^ððt]à ³G^öötÁà ³F^öö.ä%Ä ³H^ññtä‰Ä ³H^íí'íÄ .H^ííº'QÅ .H^ìì}µÅ ³H^ææ}IÆ ³H`ääÛI}Æ ³HaååqIáÆ ²H`ëëfIEÇ ²G]ððÂM©Ç ²GZññŸ” È ±GYïïD6qÈ °HXòòŸSÕÈ ±IXîîpE9É ±I[êêpsÉ °I_ææ§8Ê ®Jbáá(8eÊ ­Keßß(8ÉÊ ®KiÜÜ—-Ë ®KlÜÜ 8‘Ë ®JkÞÞ —õË ¯Jláá„—YÌ ¯Ilãã„—½Ì ®Ioææ —!Í ­Hréé©—…Í ¬Lyìì©8éÍ «Míí8MÎ «L…ïïÍ—±Î «LŒôôÍ¥Ï ¬KŽóóÍyÏ ­KŸðð©)ÝÏ ®J­ííÍ­AÐ ­J³ç穥Р¬H½àਗ਼ Ñ «HÌ××LmÑ «HÞÏÏ©‘ÑÑ ¬HñÊÊÍq5Ò ­HþÈÈ©™Ò ®HýÇÇxýÒ ³M^ÖÖOÂéæ ³K^ÙÙtûMç ³J^××Hñ±ç ³J^ÕÕgè ³K^ØØÛyè ³K^ÞÞÛÝè ³J^ççOgAé .J^øø!g¥é .I^ññÝ ê ´I^íí.émê ³H^ïïÝÑê ³H^ððÝ\5ë ³I^îîÝ™ë ³I^ëëºýë ´I^ëë¹<aì ´I^ää}Åì .I]ÜÜÛÑ)í .I_ØØgeí ³I`ßßûúñí ³I_îîÂ×Uî ³G\øøŸ×¹î ²HZøø•Ñï ±HXóóŸï °IXééDëåï °IYççDÅIð ¯J`åå ž­ð ®JgââC+ñ ®JnááCÅuñ ®Lsàà(EÙñ ®Ksáá—=ò ­Ksáár—¡ò ­Kqààr—ó ®Joââ 8ió ®Ipåå —Íó ­Irçç 81ô ¬Kvéé —•ô ¬Nzìì„8ùô «NííÍÔ]õ ©M„îî©8Áõ ¨MŠóó©E%ö ©L“òò͉ö ¬Lîî©níö ­K êêÍÚQ÷ ­Kžää©qµ÷ ­H ÜÜÍ‘ø ¬H¬ÓÓ©}ø ¬H¼ËË©xáø ®HÒÆÆ©Eù °HðÃÃq©ù ±HýÂÂÊq ú ²M_ÕÕHdù ³J_ÖÖBû] ³J_××BÛÁ ³I_ÚÚêG% ³L_ßß1G‰ ³M_ååÌGí .L_ééÝÛQ ³L_ðð!Gµ ³K_íí!é ³K_ëë!L} ³J_ìì€Õá ´J_îî!éE ´I_ííOÕ© ´I_ëëÑ  ³I_êê¹äq ³I_Ýݹ<Õ ´I^ááG>9 ´I_ììgg ´I`øøfk ³I^ýý£ke ³H[úúÄšÉ ²JYïïŸ0- ±JZååDj‘ °KZââDCõ ¯K_ààDRY ®Lhàঠ½ ­LrààM'! ¬Mzáᦔ… ¬N{ââ¡ëé ¬N{ää„UM ­MzääªÅ± ­MvááE ®Lqääƒy ­LrææƒUÝ ¬LtèèrEA «KwëëƒE¥ ªOzëë„s  §O~ëë„Em ¦N„ì쪗Ñ ¦N‹ïï9—5 ¨M–îî„—™ ¬M™ìì©8ý ­L›çç͘a ­L¢âânÅ ­HªÙÙ©û) ®H«ÏÏÍG ¯HŸÇÇ©gñ ±H™Â©kU ²Hº¿¿¡k¹ ³HÒ½½ˆ­! ³O_ÔÔH 5 ³M_ÕÕBûm5 ³L_ÛÛÃÛÑ5 ³L_ããÌG56 ³N_ééO}™6 ³N_ììOGý6 ³M_ììOGa7 ³M_èèO‘Å7 ³L^ìì!ó)8 ²L^ïïOó8 ³K^îîOLñ8 ³K^êêÝÕU9 ³J^ææOL¹9 ´J^ää!×: ³J^ââwû: ³J_óóxfå: ³Jaüü}gI; ²Jaÿÿûq­; ±JaÿÿÂG< ²J^óóŸ­u< ²H[ääŸkÙ< ²H[ßß×== ±I\ÝÝŸj¡= ®I_ßßM'> ¬JkÞÞ¾Mi> ¬LsÞÞ¾0Í> ©M}ßß¾×1? ©M‚áá0•? ªNââ©Ñù? «N}åå„']@ ¬N{ææªÑÁ@ ¬Mxååª'%A ¬Msæær'‰A «LsèèƒRíA «LxééƒQB «K{ëëªÅµB ©N~ëëª+C ¦N„ëëÅ}C ¥Oìì©ÔáC ¦M”îî©8ED ªNšîî©—©D ­L êê„— E ®M«åå©—qE ¯K¼ßß©ÖÕE ¯HÉÖÖ©K9F °GÅÌÌ©ÂF ±HªÅÅLG ²Gš¾¾feG ³H›ºº¡þÉG ´G­¶¶Ík-H ³R_ÒÒOÂ\ ³Q_ÖÖû}\ ³P_ÞÞHÛá\ ³M_ååqE] ³N_êêOÛ©] ³N_èèOq ^ ³N_ææ!7q^ ³N_ééèìÕ^ ±N^ïï!x9_ ±N^ððèG_ ²N^êê!G` ²N^ää!óe` ³K^ää!óÉ` ´K^èèwL-a ´K^íí!L‘a ²J_ÿÿxGõa ¯JcÿÿÛqYb ¬Icññfx½b ­IaÝÝ£q!c °G]ÑÑ£…c °JZÑÑŸqéc °J\ÜÜŸ­Md ®J_ççDÕ±d ªJaààM\e ©Jtàà¾Õye ªKyàà¾ÕÝe ¨Kàà‚)Af ©Kƒââ*Õ¥f ªJ~ããÕ g «KyååƒÕmg «Nyåår)Ñg «Pwææ¸\5h «Qwççrj™h «QxêêƒIýh «P}ëëƒ'ai «O‚ëëªDÅi «M…ëëƒ )j ©Kèè©Ùj ¨M—êê©Ôñj ¨K îî©8Uk «M¬îî„E¹k ®K¶êê„Ôl °M¾ääªÔl ±KÈßß„žål ±IÐÖÖ©ÓIm ±GÖË˩ŭm ²JÑÃéžn ²Hкº/un ³J¯µµÙn ³F®³³”=o ´V\ÛÛ!<)ƒ ³U^ÞÞO>ƒ ³T`ååºgñƒ ³R`êêºÛU„ ³Q_êêÛ¹„ ³O_ççèG… ³O_ããè‘… ²OaèèèGå… ±Obëë#GI† °O_ìì#G­† ¯O]èè#G‡ ¯O]ìì€óu‡ ²LaøøèGÙ‡ ´LcÿÿwG=ˆ ³Kbÿÿ7q¡ˆ °K`ùù}x‰ ­Jdââgxi‰ ­JaÊÊú͉ ¯I]ÀÀ£x1Š ±H^ÉÉĕР±J[ÖÖŸqùŠ °IZßßDG]‹ ­IeààDóÁ‹ «Isââ¦L%Œ «JyááML‰Œ «Jzââ*óíŒ «K~áá*­Q ªK€ãã¡óµ ©J}ääLŽ ªKxååª)}Ž ªOræææÕᎠªPlééþE ªQtéé¸j© ªQvêêƒI «P€ëëªMq ¬O‹ëëª”Õ ­M–êê ”9‘ ­K¤è脞‘ «K²éé„Ô’ «K¼ïïªÔe’ ®KËìì„ÔÉ’ °KÓèè„Ô-“ ±KÙãã©U‘“ ±KÛÝÝ„Dõ“ ±GÜÓÓ© Y” °HÝÉɩԽ” °HÙÀÀÍ8!• ²IÙ¶¶`Ô…• ³HѲ²8é• ³G¸®®©SM– ³X[ããO<9ª ³X^äätñª ³W`çç¹g« ³U`ééqe« ³Q`ééLÉ« ³O_èèèG-¬ ³O`ççè쑬 ³Oaçç#Gõ¬ ²ObææõGY­ °O`ææõG½­ ­O_éé#G!® ®O`ôôèG…® ²MbÿÿwGé® ²Mcÿÿ!M¯ °Lbøø!챯 ¬L`ÌÌqx° ¬KfÁÁgy° °K_½½Âxݰ ²J\ÃãxA± ²I^ÕÕ£x¥± ²KaÞÞŸ ² ±Jdßßxm² °KmÙÙDѲ ¯KvââDG5³ ¯Kwââ¦q™³ ¯K{ââ¦ý³ ­L}ââ¦a´ «Lxää©Å´ ªMqåå©G)µ ©NkççªLµ ªOléé Õñµ ªPnêê¸ÕU¶ ªRuëër×¹¶ ªR|ëërÑ· ¬Q‰ëëªI· ¬O˜ëëªDå· ¬N¨èè„”I¸ ªL¸èè©/­¸ ©LÉéé„U¹ ­LÓëë©Ôu¹ °LÛéé©8Ù¹ °Lâææ©Ô=º ¯Lçàà© ¡º ¯LæÛÛ©R» ®HäÑÑ©ëi» ®IâÆÆ©ÔÍ» °IÛ¾¾© 1¼ ³JÔ³³•¼ ³IÔ®®©ôù¼ ³H½ªªÍ]½ ³YYââOÂIÑ ³X[ãã¹û­Ñ ³X^ââOÛÒ ³V^ââOóuÒ ³P^ããO¹ÙÒ ³P^ååèq=Ó ³P_åå#G¡Ó ³P`ääõxÔ ±Paàà#GiÔ ¯P`ÝÝõGÍÔ ®P_áá#G1Õ ¬P`êê€•Õ ­Oaêê!GùÕ ®NaÓÓOG]Ö ¯N`¸¸GqÁÖ ±M^¸¸}G%× ±Mb¾¾gG‰× ±L\ÉÉfí× ±L[ÐÐexQØ ²LcÖÖ£µØ ²KkÙÙŸÙ ±JqááDx}Ù ±Kvçç¤áÙ ±Kyââ¤EÚ °Kyââ¾©Ú ®Kyââ*G Û «Lxää`qÛ ©Lnåå ÕÛ ©Meçç9Ü ªN`éérLÜ ªOjêêrÕÝ ªQrêê¸\eÝ «R}êêƒ×ÉÝ «R‡ëëƒj-Þ ¬Q—ëëƒÑ‘Þ «Q©ééªÚõÞ ªN»èè©ÑYß ©LËçç© ½ß ªLÜçç©'!à ¬Låéé©M…à ¬Léææ©+éà ®Líââ©ôMá ¯LðÞÞ©ô±á ®LíÖÖ© â ®IçÌÌÍ yâ °Jâ© Ýâ ²J×¹¹© Aã ³KË®®©Ó¥ã ³J¹ªªÍÓ ä ³Iª¦¦©Îmä ²WWææ!Yø ²VZêê!½ø ³V\êê!û!ù ³V^åå€Û…ù ³R]àà!Géù ³R^ÞÞèGMú ²R_ÜÜèq±ú ¯RaÜÜ#Ûû ®R`ÑÑõqyû ±R`ÇÇ#GÝû ¯R`¿¿èGAü ªRa¹¹èG¥ü «Paººwì ý ®P`¿¿¹mý ±P_ÃÃGGÑý ³O\ÃÃ}5þ ²OZÇÇkx™þ ±NZÐÐfGýþ ±NbÙÙúqaÿ ±Mjàà£Åÿ ±LqååÚx) ±Lvéé¤ ±Lxìì¾ñ ±LzææÈ‘U °Mwååȹ ®Msåå¦ ªMmåå© ©Mbåå§å ©N]åårGI ªOaåå=)­ «QlåårÕ «Rxàà u ¬S‰áá©úÙ ¬S•ää©\= ¬T¤ååª\¡ «Q¶ææ©× ªOÇçç9þi ªOÕç焚Í «Oáçç„×1 ¬Oçëë©M• «Oëææ©6ù ¬Oîßß©E] ®OîÜÜ©ÔÁ ®OéÖÖ©ë% ¯LãÍÍ© ‰ ±MÚÁÁ© í ²MË··©RQ ³N¼©©Í+µ ³M¦££©U ³L  ©U} ³WUêꀙi ³WWììèÂÍ ³W[êêuû1 ³W\ææèg• ±S]ââ!Ûù °S]ááè&]! ¯S_ÛÛèûÁ! ®SaÍÍ#Â%" °S_ÂÂ#‰" ²S`»»#gí" ±Sa´´èGQ# ¯Sa²²!Gµ# ®R`µµ!x$ ¯R_ººx7}$ ¯Q_¿¿Gá$ ±Q^ÆÆÛxE% ±PVÍÍg©% °P_ÕÕf & °OnÜÜvq& °OtââúGÕ& ±LxææÈ9' ±LxëëÈG' ±LxïïÈG( °LyééÈe( ¯MsççÈGÉ( ­Mjçç*­-) ªM`ææCì‘) ©M[æærõ) ªN_ååÿ­Y* «Ojååró½* ¬RvããrL!+ ­S€ââ„Õ…+ ¬S“ããÍ\é+ ¬SžããÍ\M, «T­ää©Õ±, «T»ääÍ\- «PËää©Õy- ¬OÔå婚Ý- «OÝååÍ×A. ¬Oáää©I¥. ®OåããÍ” / ®OæßßÍëm/ ¯OäÙÙ©ôÑ/ ¯OàÐЩð50 ¯MÚÄÄ„ ™0 °Nη·©`ý0 ²N¾¬¬Í a1 ²O®¥¥©ÔÅ1 ³N›  8)2 ²Mœœ©—2 ´ZRííèÂyF ³ZUêêuÂÝF ´XXçç#ÂAG ³XZææ!Â¥G ¯S[ããO> H ®S\ààèÂmH °S^ÙÙè<ÑH ±S`ÁÁ#Ž5I ²S`¸¸õ™™I ³Sa³³#ÂýI ³Sa¯¯#éaJ ²Sa¯¯!qÅJ ²S`²²7G)K ±S`¶¶!K ±Rb»»xGñK ±RaÈÈgGUL °Q^ÍÍþG¹L °QjÕÕûM ®PyÙÙvGM ¯P}ßßúqåM ±NzååvqIN ±NxêêeL­N °Nvîî›kO °Nsêê›LuO ®Njéé¾­ÙO «Ncéé¦ó=P ©P[çç(­¡P ªP]ççr)Q «OhææÿóiQ ¬Pvåå„LÍQ ­Tåå ­1R ­Uˆãã„L•R ­V™ää þùR ­V£ääªû]S ­U¯ãã„kÁS ®T»ããªÕ%T ®QÆââ©Õ‰T «QÏááÍšíT ¨QÔÞÞ×QU ªQ×ÝÝ×µU ®QÙÜÜRV ¯QÙÚÚU}V °Q×ÓÓ–áV °QÒÈÈ©AEW °O̹¹ÍM©W ±OÅ­­©( X ²P´¥¥ÍëqX ³P£¡¡`sÕX ²PÍ89Y °O|™™©8Y ³\Nëë#‰m ²\Qèè€ím ³[Uååè™Qn ³[Wää!™µn ²TXàà!™o ²TZÙÙ¹™}o ³T\ÌÌ7Jáo ³T^¹¹èEp ³Ta±±èn©p ´Tb¯¯è™ q ³Tb®®èäqq ³Ta®®èLÕq ³T_°°7ó9r ²Sa³³¹Lr ²SfµµGós ²RhÃÃgqes ²RnÊÊkqÉs ²QuÒÒþq-t °Q|ÙÙþq‘t ±Q{ßßv­õt ²NwããvkYu ²Nvêê›Õ½u ±Npìì›é!v °NjííÈÕ…v ­Naëë¾Õév ªN^ëë¦LMw ªP_êê§L±w ªPeêê§Õx «Ppèè©Õyx ­Q}çç¾kÝx ­T‰ææÊóAy ­Uââ`­¥y ®V™áá©û z ®V¡ßß©Õmz ®Uªàà©LÑz ®T´ÞÞ©)5{ ­QºÜÜ„)™{ «QÀÛÛ©)ý{ «QÃÙÙ©Õa| ­QÇÖÖ©šÅ| ¯QÆÕÕ©M)} °QÅÒÒM} °QÁÊÊ© ñ} ±Q¼»»Í U~ ±O»¯¯©`¹~ ²Pµ¤¤©R ²Q¦žžÍë ³Q–œœ¡Ôå ±P‹˜˜8I€ °Ou””¡Ô­€ ³XJèè#™™” ±XMççèJý” ±XQææ!Ža• ´WTââ!nÅ• ´VWÚÚ7:)– ´VYÎÎOÄ– ´V\¿¿!:ñ– ³V^µµèÆU— ´Vd®®#˜¹— ³Ve®®èΘ ³Vd­­7<˜ ³Vb­­!å˜ ³V_­­!I™ ³Va­­xû­™ ²Ug¯¯Góš ²Sl¸¸k­uš ³RwÁÁûþÙš ³QyÍÍþq=› ³Px××þq¡› ³OtÝÝ œ ²Qráávúiœ ²Qtçç›Íœ °Slëë¾Ú1 ¯SbííDä• ¬SZîîCù «S_îî§]ž ªTfíí§<Áž ªTmêê¦ä%Ÿ ¬[vèè¾L‰Ÿ ¬[çç¾ÕíŸ ¬Zää*Q  ­X—ááÕµ  ®X›ßß`L¡ ®W ßßL}¡ «V©ÜÜóá¡ ©T®ÛÛ­E¢ ©S±ÙÙq©¢ ªS²×ש) £ ®R´ÔÔÍ\q£ °R¶ÏÏ©)Õ£ ®QµËË×9¤ ®Q³Åũפ ¯P®¹¹I¥ °P«­­Re¥ ±Vª££ôÉ¥ ²U¤žž©Ô-¦ ³T™šš©8‘¦ ²Rˆ––©8õ¦ ²P~““8Y§ ±Nf‘‘©Ô½§ ³YDàà!:©» ²XFââè: ¼ ³XJààèq¼ ´XPÙÙ!ÆÕ¼ .VRÏÏè-9½ ´VWÂÂ7¼½ ´V]µµèT¾ ³V_±±#Ke¾ ´V`¬¬#˜É¾ ³Va¬¬è¼-¿ ³V`««è™‘¿ ³V_ªª7<õ¿ ³Vb©©7YÀ ³Ug©©¹½À ³To««GÕ!Á ³Ss¯¯gä…Á ³Rw··k£éÁ ³QzÅÅþ<M ²P|ÎÎ\£±Â ²OyÖÖv•à ±RpÞÞv•yà °Rgãã¾<Ýà ¯T`è覣AÄ ®T\ìì(<¥Ä ­T`ïï§• Å «TfïïCÎmÅ ªUoîî*ÑÅ ªUyë뾕5Æ «[„ééˆ'™Æ «Zççˆ<ýÆ «Y–ääˆ\aÇ ¬Xœââ¡ÅÇ ­X àà¦û)È ¬W¡ÞÞ©LÈ ªV£ÚÚÍ\ñÈ ¨U¤ÙÙ<UÉ ¨V¦ÕÕÍ¹É «S¥ÑÑ©×Ê ¯S¥ÍÍ©QÊ ¯S¤ÃÃÍ­åÊ ¬R¥»»©)IË «Q£³³0­Ë ¬Q¢ªª'Ì ®Q¢¡¡ uÌ ®VŸ››8ÙÌ ¯U™˜˜©Ô=Í °TŽ••ÍÔ¡Í ±Rƒ‘‘©ÔÎ ²Pq©ÔiÎ ±OhŠŠÍ8ÍÎ ´Y=ÏÏè¹â ´X?ÓÓ!ã ´XFÏÏèTã .XJÇÇ!zåã ´WP½½èzIä ´WT´´è˜­ä ´W[««#;å ³W]ªª‹Kuå ´W`§§uKÙå ´W`§§u=æ ³W^¦¦è•¡æ ³W^¥¥wÄç ³Uc¦¦wJiç ³Uh¦¦GÑÍç ³Tn©©qä1è ³SsªªL•è ²Rt±±kJùè ²Qv¼¼þ•]é ±PtÃà Áé ±PpËËvK%ê °UgÓÓ›;‰ê ¯UaÜܾ¥íê ®U]ää¦Që ®U\éé(nµë ­Veìì`ì «Vkìì¾î}ì ªXtëëÈáì «X}éé›Eí «Z†èèÈ©í ªZåå›K î ªZ”ââ¾qî «Y˜àà¡ÄÕî «Y›Ýݦ<9ï «XœÚÚ©Õï ­WÕÕ©óð ­VžÏÏ©eð ¬WžÊÊ©-Éð ®WÇÇ©Î-ñ °Wœ¿¿Ñ‘ñ ±V›±±©)õñ °Vž©©)Yò ¯Uœ¢¢š½ò °UœœœÈ!ó ±T›˜˜Ó…ó ®Xš””¡Uéó «W“‘‘–Mô «Vˆ©U±ô ­U€‹‹ÍEõ ±Ss‰‰©Ôyõ ²Qk‡‡©8Ýõ .Z6»»è-É ´Y:¾¾è-- ´Y?»»è˜‘ ´YD³³#½õ ´XK©©#½Y ´XO¤¤u;½ ´XV  ‹;! ´XY¡¡õ/… ³X^ŸŸu-é ´X\  ŒÎM ´X\¡¡u-± ³X^¡¡u³Uc££É-y³Uh££¹Ý³To¤¤qnA²Ts©©L¥²Ss­­kÄ ±Rq²²þ•m±Rj¸¸þ:ѰRc¿¿ÈÆ5¯W\ÉÉÈ8™¯WZÔÔ¾Öý¯W\ààC—a®W\ååCSŬXhèèCK)«Xnèè¾z«Zwçç›—ñ«Zåå›—U«Z†ää›—¹«ZŠáá¦8ªZÞÞ¦8ªZ‘ÜÜ©½å«Z“ØØ©;I­Y“ÒÒ©n­¯Y“Êʦú°Y“ÄÄúu°Z”¼¼¡•Ù±Y“¸¸Í•=±Y“°°©¡²X’¢¢ ²X•™™©\i³W“••\ͳW”““ 1´W”‘‘¡v•±W“Iù«WŒ‹‹©p]©Vƒ……6ÁªU~ˆˆ©+%¯Ty……©ô‰¯Rsƒƒ©8í.[2©©uåÙ0.Z5¤¤#î=1´Y;  u¡1³ZA››#82³YG––ui2³YK““õKÍ2´YR’’uK13´YV––uK•3´YX˜˜õ¥ù3´YY™™ŒS]4´YYššŒÁ4³Y^››Œ8%5³Vcœœ#½‰5³Vižžx+í5³Vo¡¡q-Q6²Ur¢¢q/µ6²Ur¥¥k¼7±Tj««þn}7°T`°° Ÿá7°TW¶¶ÈE8¯XT¾¾Úz©8®YWÅŦ— 9®Y\ÌÌ¡—q9­YaÚÚ*—Õ9«Ylàà¾9:ªYrââ›:«[{ââv8;«[‚ââ›—e;«\ˆÞÞ¾—É;«\ŠÚÚ¦—-<ª]Œ××C—‘<ª\ØØC—õ<¬\ÒÒC—Y=®[ÇÇ©s½=¯[»»©K!>°[޲²Î…>±\ªª•é>±\ަ¦ÍŸM?±\ŽŸŸ±?²[™™©×@²[’’ey@³ZŽ‘‘©jÝ@´ZjAA´Z‹‹© ¥A³Xˆˆþ B°X‰‡‡©vmB­W€……© ÑB«V~€€„65C¬U}}„+™C¬Ty||„+ýC.\-œœuséW´[3——õ8MX´Z8••õ½±X³Z<õ½Y³ZB‹‹ŒSyY³ZG‡‡Œ-ÝY³ZMˆˆŒAZ³ZQŽŽŒ¥Z³ZS‹s [´ZS’’X½m[´ZU‘‘ŒEÑ[³ZZ””#—5\³Wa””É8™\²Wi––GSý\²Wm™™GKa]±WlŸŸq-Å]°Wj¡¡­)^¯Wb¤¤þ•^¯WX¨¨vJñ^¯WP­­È•U_¯[Q²²¾¥¹_®[X¸¸¡½`­[`½½ˆ`¬[fÊÊ®8å`«[oÐЮ8Ia©[uÓÓ›—­aª]|ÕÕÈ8bª]‚××¾8ubª]†ÖÖ¦—Ùbª]‡ÔÔ¦—=cª^ŠÑѦ8¡c«^‹Êʦ—d¬^‹Ãé8id®^‹¹¹©—Íd¯^а°©81e°^‰©©©½•e°_‰¤¤©Sùe±^ˆŸŸ`Î]f±^Š™™Í•Áf²]‰’’`%g³]ŒŒŒÍÚ‰g³\‹ŠŠ`×íg´\ˆˆ©úQh´\††\µhµX„„© i´X‡ƒƒ©š}i°W~„\ái¬W~~©IEj«Vƒ||„ ©j«U}{{„p k.\+’’õ8ù~/[.Œs]´[4ŠŠXÁ´Z8……Œî%€³[>‚‚õ‰€³[B~~Œí€³[HŒSQ³[K„„uîµ³[NˆˆuE‚´[N‰‰Œ}‚´[O‰‰uSႳ[W‹‹ÉsEƒ²Y_‹‹És©ƒ±YfŽŽGS „¯Ygxq„­Yg––kÎÕ„¬Zb˜˜­Ä9…¬Z[››š<…®ZQžžv<†®ZN¢¢Èe†®\R§§¾¼É†®\[ªªÈî-‡­\e¯¯®S‘‡¬\l¹¹®Kõ‡©^u¾¾ˆYˆ¨^zÁÁ¦8½ˆª^ÄÄ`!‰©^ƒÅŦ½…‰©_†ÅÅC8鉩_†Ãæ—MŠª`ˆÁÁC8±Š¬`‰¶¶C—‹­a‡²²©—y‹®a†ªª¦—Ý‹¯c†££¡—AŒ°a…žž8¥Œ°`…››s ±`…˜˜ÍKm²`‡””÷Ѳ_‡÷5޳^ˆˆ©™Ž³^Œ‡‡Íúý޳^„„© a´]Œ‚‚©þųX‹€€©š)°W„€€©\¬W{©vñ«W|}}©+U‘«Vzz©ë¹‘«V~zz©+’.](ŒŒŒ½ ¦.[+ŠŠXSm¦.\/……ŒѦ´\3‚‚X5§´[7}}Œ™§³[<{{Œý§³]@||ŒUa¨³[C€€ŒSŨ³]IƒƒŒs)©³[HƒƒŒ+©³]K„„Œ/ñ©²[R„„wUª°\[……7U¹ª­Za‡‡xS«ª]bˆˆxS«©[`‰‰­-嫨]_ŒŒk•I¬«[Zv£­¬­^T““È­®^T––¾úu­®]\œœ¾•Ù­­]g  ›Î=®­_p££›^¡®«_vªªˆn¯¨_{­­ˆi¯¨_~¯¯¡¢Í¯ª_ƒ°°¦S1°©_„°°CS•°¨`„°°©žù°¦`ƒ¯¯CS]±¨b…®®©sÁ±©b†¨¨©%²ªbƒ¥¥`8‰²¬b‚žžÍ—í²®cƒ››8Q³¯c‚••©8µ³±bƒ’’—´²a…‘‘¡E}´²`ˆŽŽ¡¥á´³`ˆˆˆÎEµ³_……©µ³_‹ƒƒ ¶³^‹©eq¶³^‹„\Õ¶°W‰~~„k9·­W}}Ík·ªWw}}„׸ªWu||Í'e¸ªW}zz©0ɸªVyyyÍ”-¹´`&ŠŠŒKÍ.](‰‰X/}Í´\-„„Œ/áÍ´[1‚‚XEδ_3€€Œ©Î´_7}}õ+ Ï´`:}}ŒUqϳ_<ŒUÕϳ`G€€u9г_D€€ŒÓг`G€€u'ѱ_O€€É'eѯ]Zx/ÉÑ«\_x-Ò©^^ƒƒxőҨ]\‚‚šõÒ©_`„„k”YÓ«^\††vѽÓ­`YŠŠÈ×!Ô®`\ŒŒ¾…Ô®\g¾£éÔ¬]q’’ˆMÕ«_z””ˆ:±Õª`››¾ŸÖ¨`žž¡yÖ¨_‚ŸŸ`ŸÝÖ©^…  ©•Aת]„¡¡©¥×©bƒ¢¢„D Ø«c¢¢„ mجdƒ¢¢©pÑØ«dƒŸŸ©ë5Ù¬d„œœÍs™Ù¯dƒ˜˜©ÔýÙ°c„””EaÚ±cƒÍÔÅÚ²c…ŒŒ©—)Û²d‡‰‰8Û³dЇ‡8ñÛ³dŒ„„ÍÅUܳb‚‚©b¹Ü´_Œ©ŸÝ´]‹€€„ݲ[Š}}©fåݯ[…}}„­IÞ«Z||©k­ÞªYs{{ÍLߪXozz©)uߪXuyyÍjÙߪWrxx©Ñ=à´`(‰‰ŒÓ)ô´^'ˆˆX”ô³\(††Œ/ñô³[)„„XÓUõ´_.Œë¹õ´_3X+ö´_7€€ŒUö´_9€€õëåö³_=ŒRI÷³_?Œp­÷²_DŒMø±_JÉ'uø®\Ox÷Ùøª]Vxb=ùª]Zqž¡ù¬^]€€k+ú«^Yþ”iú¬_[ƒƒvIÍú¬_^ƒƒ¾1û­_e……¾×•û­`n„„¾úùû¬aw……¡<]ü«b……¡<Áü©b„`£%ý§bŒ`‰ý¨bŒ‘‘©eíýªaŠ””CÚQþª`†——©Úµþ­c‚šš©Iÿ¯c€žž©D}ÿ°e‚ŸŸ© áÿ¯eƒ™™©CE°e€––©6©±e““¿ ²cƒ©–q²c„ŠŠ©8Õ³d†‡‡989³eˆ„„©8³e‹‚‚©—´eŒ‚‚©se´cЩɴaŠ©Ä-³^‰~~Íe‘¯]‡{{©\õ¬^€{{©fYª]w{{©L½ª[kzz©)!ªYfxx©e…ªWjxx©jéªWlww©¤M´_*‹‹XÎ9´])ŠŠŒ”³[)‰‰XγZ)ˆˆŒÓe´_-‡‡ŒëÉ´_1ˆˆXS-´_5……Œô‘³_7€€Œ6õ±_;}}u Y²_>}}u½²_A}}XI!°_H}}ÉÚ…¬\O}}7'éª\S}}x÷M ¬\X||qS± ¬]Z||kž!ª]\|| y!«^^~~›IÝ!«^d~~¾ÑA"ª_k}}¾ú¥"«bu}}*\ #¬c~~`úm#«d‡~~`Ñ#¨e‹ƒƒ©ú5$¦eƒƒ©û™$©dŒ‡‡©þý$¬c‰‰‰©þa%­b…©×Å%¯d€‘‘©j)&°d€••©I&°f€––„Dñ&±f‚’’©MU'±f…‘‘Í ¹'±f†„§(²d‡ŠŠ©U(²d‰‡‡„Ôå(²f‹ƒƒ©ÔI)²fŒ€€©Ô­)²f~~ÍÔ*²fŽ€€©Eu*²eŠ€€ÍžÙ*°c‰~~•=+­a†}}Íe¡+«`‚||e,ªa{zzÍúi,ª`tzz©vÍ,ª^lyy©­1-ª[duu©š•-ªZcvvÍjù-ªYbvv©/].´^-ˆˆX”IB´]-ˆˆX”­B´[,ˆˆŒRC´\,ˆˆXÓuC´^/ŠŠŒ6ÙC´^1‰‰X+=D´^3ˆˆŒÔ¡D³^4€€õ+E²^9~~õ”iE³^<~~ŒMÍE²^@||ŒÑ1F¯^E||Éj•F­\K||7ÚùF«\Q||x^]Gª\U||kEÁG¨]Vxx\S%H¨]\yyv'‰H¨^^||ÈíH¨^f||¾ÚQI§^p}}*úµI©bz}}¡fJ«c…}}`ú}J©d}}©úáJ¦e~~CfEK¥e©þ©K¨dŽ€€Ck L¬cŠ„šqL¯b‡„„©þÕL°e……©×9M°e††©jM°f††© N±g€ŠŠ© eN±g†ˆˆ©MÉN±fˆˆˆ©`-O±eŠ……„6‘O²eŒ„„ÍôõO±gŒ€€©ÔYP°gŒ~~ÍE½P®gŒ}}`Ô!Q®f‹}}Å…Q­f‰}}ÙéQ«e†||`MRªd€yyÚ±Rªc{zzÚSªduxx¡ySªcnxxÚÝSª`ixxÍúAT«^crrD¥T«\]uu©Ó U«[]vv©+mU.`2Œ/Yi´_0XÓ½i³^0Œ/!j³]0„„X …j´_1‡‡Œ”éj._2ˆˆX6Mkµ_3ˆˆŒE±k´_4……XUl´_9„„‹ yl³_;„„uÚÝl±_?X×Am°_D‹\¥m®\I€€7e nª\M€€q”mn¨]R€€kEÑn§]S~~e5o§^X~~È™o§^\~~Èýo¦_d~~*äap¦_n~~¡×Åp¨az~~¡û)q©b„~~©þq¨cŒ~~©ûñq¥d‘}}CûUr¥d”}}„k¹r§c“~~(Õs¬bŽ~~©\s¯a‰€€(×ås¯e‚€€©\It°e€€© ­t±f~~©×u±g€€€©0uu±g„~~© Ùu±f†}}©*=v±e‰||ÍM¡v±e{{©ëw¯g‹zz©–iw­g‰xxÍEÍw«f‡xx©s1x«e…xxë•x«e…xx©/ùx«e€ww']y«eyvvjÁyªervvú%zªfmttÚ‰z«dkss¡•íz«biqq¡Q{«`cmm+µ{«_\rrÍE|«_Znn©Ô}|´a7~~XÓi´`6~~ŒÓͳ_6XÓ1‘³^5ƒƒŒ'•‘´`5††X ù‘´`5ˆˆŒ']’.`6‰‰õÓÁ’µ`6‡‡õ6%“´`;……õI‰“±`=„„uÑí“®`@„„Œ×Q”­`Dƒƒ‹\µ”ª]I‚‚Év•¨^M‚‚L}•§^Q‚‚fKá•§^Rj¥E–§_VÚ'©–§`Y¾\ —¦`a*þq—¦bk~~LÕ—§au~~ÍL9˜¨b€~~©g˜¦cˆ~~©k™¥dŒ}}„Le™¦d•}}CLÉ™¨c”}}„L-š¬b}}„f‘š¯a‹}}©úõš°d„}}©×Y›°d||©š½›±f||©)!œ±f||„ …œ²fzz© 露f„zz© M²d‡yy© ±±d‰yy` ž¯eŠyy+yž¬d†ww`¿Ýž¬dww+AŸ¬c€ww©Ó¥Ÿ«cww  «dztt©em «drss©\Ñ «emrr`š5¡«djrr©e™¡«cippý¡«bjppa¢«bfkk`”Å¢«baqq©6)£«c_mm©¿£´c?uAy·´c=~~ŒëÝ·³b=X6A¸³a=ƒƒŒ ¥¸´d=††XI ¹´d;‡‡ŒÑm¹µd;ˆˆXMѹ´d;‡‡Œ'5º³d?„„u\™º°d@„„u\ýº¬dC„„Œþa»ªdF‚‚ušÅ»¨aK‚‚7Õ)¼§aN€€q\¼§aQ€€f•ñ¼§bReŸU½§bY ä¹½§cZ~~ˆL¾¦c_~~¡L¾§dg~~óå¾§dq~~©qI¿¦d{~~©L­¿¥eƒ~~©qÀ§f‡}}©quÀ©f}}„qÙÀ«e}}©L=Á®d}}©þ¡Á°dŠ||©ú°cƒ{{`×i±c~{{©Õͱez{{©\1òey{{©š•òe{{{©0ùòe|zz©×]IJc€yy©jÁIJcƒxx'%Űbƒxx”‰Å¯_xxpíů`|xxÎQƯ_zttµÆ®_vtt`ÑǬ`rssÕ}Ǭbmss`)áǬcjrrÍ­EÈ«akqq©)©È«aloo©Ú É«aloo©/qɬbkjj„sÕÉ«egoo©Ô9Ê«hfmm©ÔÊ.dDX+‰Þ´dD~~Œ+íÞ³cDXQß´bCƒƒŒÓµß´eC„„XMà´eC‡‡ŒÑ}à.eBˆˆõÑáà´eB„„ŒEá³eD„„õ)©á°eE„„Œ) â¬eGƒƒu­qâªeJ‚‚Œ)Õâ©bO‚‚‹L9ã©bR7LãªbTÕeäªcUÚeä©c\ óÉä§d\~~¾)-å§d\~~`ó‘å¨ea~~9õå¨fi~~GYæ¦gr~~©G½æ§h{~~„‘!ç©i}} G…ç«i†||©éç¬hˆ}}©GMè¯gˆ{{`þ±è°f„{{©fé±b{{„úyé±cy{{©\Ýé±dtxx©×Aê²do{{`¥ê²dpyy¡) ë²dryy¡Õmë²cvyy¡ÑÑë²awxx•5ì²_wxx`™ì²^txx„•ýì±\svv©aí²[rss©IÅí²]mss`Õ)î®_lss©­î¬ajrr©­ñî¬bkqq©GUï¬^moo©‘¹ï­_ooo©ûð¬`omm©ð¬cojj„6åð¬gnoo„ôIñ¬kmll„E­ñ.dIŒ+™´dJ€€Xsý³eI€€X a³eIŒ/Å´gI„„X')´hI††ŒI.gH‡‡õ×ñ´gH„„Œ)U´fIƒƒX­¹²fJ‚‚õ‘ ®eL‚‚Œ ¬eN‚‚uå ¬eRŒI «gTÉ­ «iXóó «kY~~Lu ©k]~~ÑqÙ ¨j[~~*G= ¨i\~~`‘¡ ©h^}}„‘ §gd}}Í‘i §in}}©‘Í ©lx}}©x1ªo}||„x•«ozz©xù­nƒ||©q]¯l…yy©þÁ°jƒyy©ú%±h}xx„‰±guxx £í²eovv(Q²ckyy„)µ²biyy„­³bjxx©)}³bmvv©\á³bmvv„E³^muu(Ä©²[luu©Ä °Yktt©Jq±Wjrr`ÕÕ³WgqqÍó9°Yhqq`q­]hpp©x­^koo©e¯bnnn`xɱcqnn©q-®eqmm„q‘¬ipjj„\õ­ppmmCIY­vojj©D½´eR‚‚Xô©,´fRŒE -³fR€€uUq-³hRŒÓÕ-´iRƒƒX•9.´hR„„Œ.´hR……Œ\/´hR‚‚õLe/´gU‚‚õ­É/²fV‚‚õ‘-0¯fW‚‚X‘‘0«fXu‘õ0©fYŒ‘Y1¨h[Çx½1¨j\~~xG!2§l\~~Õx…2©mb~~Úé2«ma~~¦xM3ªla~~`‘±3¨kb}}„74¦le}}„‘y4¨mk}}Í7Ý4©pq}}`‘A5ªruzz©x¥5¬rzzz©x 6®p|yy©Lm6°myy©ÂÑ6±kxx„£57±g|vvC™7±euvv©úý7²dmtt©a8²beww`qÅ8³acuu`G)9³``uu`G9´a_ss`Lñ9´`_tt`U:³[^ss`¹:±Y^rr`ä;®Warr©;®Vbqq`qå;°Weqq`GI<±Ygpp©x­<°^ioo`‘=®_knn©7u=°dkmm©‘Ù=³emll(x=>³imjj©G¡>±mjhhCš?¯tjll©Ñi?®{rii`'Í?´iWƒƒŒë¹S´jWu+T³jW€€XUT³kWuåT³jWƒƒŒÓIU³kWƒƒu•­U´kW„„ŒV´jW‚‚õóuV´jX‚‚ŒìÙV³iY‚‚õ‘=W­iYõì¡W¨h[õ‘X¨h\u7iX§j]~~‹‘ÍX¦k^}}É‘1Y§m_~~­7•Y«od~~Ú‘ùY¬oc}} 7]Zªoc}} 7ÁZ§oc}}`‘%[¦qf}}©7‰[¨rj}}©7í[©sn}}©ÉQ\ªtpzz‘µ\®sryy©x]°qtxx„q}]±nvxx©fá]²lvww„ÂE^²dstt©f©^²cmss©L _²agrr©xq_±`btt©GÕ_±_^ss©9`²^Zrr„ì`³_YqqCqa´^Wrr©Gea²WXpp©óÉa¯TXpp`}-b¬S\pp©q‘b¬S^oo`xõb®Wcoo©7Yc°[cnn`7½c°`fnn©7!d±bgmm©w…d´hill`7édµjjkk„7Me´okii`x±e²vjgg©f²}fkk`šyf²„ohh©jÝf´l]……XÓÉz³l]‚‚uS-{³m]€€Œ8‘{³n]X8õ{³m]ŒY|³m]ƒƒuƽ|³m]„„Œ!}³l]‚‚Œq…}³l[‚‚õxé}±k\‚‚õ‘M~¬k]õw±~©k^õ‘©h_~~õwy¨i`}}‹ÉÝ©ja}}‹7A€ªla~~É¥€¬me~~w «oe}}DÉm¨od}}C7ѧpd}}`75‚¨se}}7™‚¨sf}}„‘ý‚¨sh{{„xaƒªshyy©ûŃ®qiww©q)„°njxx©q„±lkuu©qñ„±jktt©gU…±ciss©q¹…²bfrr©x†°`bqq©x†­^_rr©‘冬]ZqqCxI‡®]Wpp©x­‡±]Unn(¹ˆ³\Rpp©Guˆ°UQmmCxÙˆ¬SSoo©x=‰«SWoo`x¡‰¬TXoo©7Š­X^oo`7iŠ­\^nn©7ÍŠ®camm`71‹²fcll`7•‹µngjj`7ù‹¶piii`7]Œµxkhh¡xÁŒ±iff¡%²‡ekk©‰µŽqhh`Õí´na‡‡Œ”Ù¡´oaƒƒu6=¢³oaŒS¡¢³pa€€uoau¥i£³oaŒÍ£°oa‹<1¤®nauG•¤¯n_õxù¤®m`õw]¥¬m`~~õ7Á¥«ma~~uÉ%¦ªhb||õɉ¦ªic||#Éí¦­id||‹wQ§­jd||wwµ§¬ke||þ7¨ªmf||Ÿ7}¨§nf||¦ÉᨨngzzCÉE©©rgzz„‘©©©qfzz©x ª©qfzz„Gqªªofyy͙ժ­mhww„f9«¯khww©x«°ihuuÍ7¬°ghtt©‘e¬¯cgqq©‘ɬ®bepp`7-­«`dpp`É‘­©^coo`7õ­©]]mm©xY®«]Zmm`x½®¯]Vll`x!¯±\Rmm¦x…¯°TPll`7鯬SPmm`xM°«STmm©x±°«VUii©x±«[Wmm©7y±«`Ypp`xݱ¬h[oo©7A²¯j]kk`‘¥²³tagg©w ³´xdgg¦7m³´€fhh*‘ѳ²ˆfee¡G5´´gii`™´¶™odd©šý´ ÿÿÿÿ{+€ÉxCfG 8HDF4_OBJECT_TYPEVdata HHDF4_OBJECT_NAMEVdata with mixed typesTREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÅ@ SNOD°ÄHEAP`0ÚTREEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿðÓP1D String2D float array2D int array3D int arrayArrayOfStructuresVdata with mixed types4D int8RèÓÅ¿>VMWDAINBXQ m«ðAÇv&A`¿„B¯ÕÓA¯ØšB¾ ÁB5œ©BqÁ B dcBÄ"B›BšögB¶ðAµ2¼BQB™»NAÛ»BCtÅB9¾AJOBJôØ¡>YFOAIISPPS ZÈ“B¥ÇAÄÃ@ÿåBÁÎB@b‡@P¶BR¢B¿ÎhBúÌAî-BÎ Aûó»B„?œB¯NB)µªA±ÅBaŒ@b„B§í¿ARèÓÅ¿>VMWDAINBXQ • BR-ŽB}ЕA%EÆB ÑÀB{[ºB\Ö BÆS®B®ë.Bß?ä@{nä=Vw¶BÇ̤BžqA §YFOAIISPPS Ä&aBð B6[ÃB‘Õ¦Bàß AÝ¡B ÿpBÌG_B±”VB­í¦BYåAo‚ÖAp·BÖÅB, ˜BDÞŽBS¹BÌ~6AA„•BK$BRèÓÅ¿>VMWDAINBXQ ÞéAóLB6°B¢õª@ipÎA›…BTW™Bò‡BptBjReB¡®A±™Bòs¤B8VŸBÌ·®AÜÞ@BÓæ¶AkUäAÝ«1B:9rBH ôh?HFFPQKLLBN ¤5Bæ¾XBgù#A»X€B+B5Û AFv¬BOs€BÖÇ@>i»B¶¹•@›B¿âoBÀÂBì1¼Bëåë@ÕkB²o½B"¾‹B0*AV¤'?BYAKSOSDJR ÒÎhBƃ?B©;B…9hBÏ’€AØJÜAÍBU„®ACÅ:A/Å«B’œ2B”œîA×=AZŒéA­BgÍ…BÅKÃA ÆAóQÁB»à‡BG¯–6@EDXVUWHYMJ •®¯B7±Bâq=]ó@ÛÙ„B_B¹íBŸ¼ÄBµñB!Ã’BW¹–BxÙBl¹BÇ&®B¿6/B£»íA©´/BtD{>ù‹[BFKƒBX Ð_@YHXRDCHXXW “[¾B¯U¡A…ægA^¾ñA†ã-BØ=rBœÌ²B\amB]¨AßÙ¦B -@jZ¯B„· B]xBíBkŠA«ªâA_ú‰A]»Aƒq BO NðÕ@VHBKFUCHYA ~¥B&kB²ƒ°>9’BK~@íˆ%Bþõ€BRÎóAEþú@äòÂB…;B®BlBΣBDY»BöÁB=äA¸iB:flB‡ª–A»-BK eA³@HYIVATPBSR T_”A²è[BËï B¶ŠBU¡pA˧Bö{’B7i–B©r“BÃØ*B;–£BúAJEBñ‚B¥ä%BõÔ¸A(ŸâAÝJ¼BØ A­œBW <Î.?NBPNVGDKXW zæ°B„iJB–›®B-¶Ak´¤BY̱Boè;B EÂB¯±¾B¸ÙA•ÞB]MB ²A?l¯A4†@ÉÿóA«ÖAµüÄBfcB€{BN @âä@XESPFUJSIB ±ý‰B¢†B¹´”B1¬ABÅÝX@¶BÇ™HAì†B#õÃBøL°Bé¾B ©&BؾBºÛŽAkyQB §B`ùA§q@àW•BâµfAG޳9ADNYQCELJWH tåA‹q´BàýBRšBO6BL,“A3>ÂBךB AГ3BóaèAs~…B®9BÌÞ¦BØ•SB–"šBynç@º‹BÔxºA"¨h@K3³?EFUJJIOIXJ ŒiRB±“ãAŽ©ÀA¸ #@qF°B+þ™Bfã©BÖ¤§BGÕAFEOQLUHOBF «Õ/B©¼B?0EBô\ÓA1‡B¾¶B¡*BÀ(mB~ùBóaxB2}˜A§A¾7€BäÂAÚRé@r¶KA¡`BLñ§BU¹BÓõBMÓN@ELUVBBDLKU hj&B2šB?ã®B·£A5x÷@‘V¤AÉFB²˜B…0ÁBC‰»B·:¿B¢žBüIBpD^BüÌ@'ODA;¹r@íì„@èñ“B!òBA¹·â?UYJHGABBAY À“²Bì§BŽŠ1B¶TA«Ž2BºAÔ  B6z–BHû&}&BBÛ¹!!¹¹!!!!€7w7GGG¹GÛxéû™Â&<ûÛqÛñûBÛ¹!¹¹B#BBñw#蹌¹O&ÃOw}¹!è€uõ#ŒŒuŒuuu#uuŒ7¹7O¹}ÃBÜÜœÃúO€!!!œ?œh?B·h°[2ºZ[o’ºººHÃB1!1i°Z$ ||¶Pжê°º t.ÝÝ€!OHOO!ºt!Oº¹!O¹Oè#!OtººÃ’œœœ’’ܶ’.€.ºÃHO!ì#‹#‹u###€è€!!!#uOOO!è##€####!!OO#è#uu##uu#u#u#u#u#u#u#u#uu#u#u##Œ!w¹dwwu######uÜÃÝOXHúœOHHÃÃ!O!}BBB&¹¹ÌÌÌÌÌ̹!!#!ÃHO!.Hœ2’’11¯»7Ì!èOHl?l2ÜÜŠ?i‰@ßycccw&}G¹GqÛÛÛBBÛù¹!wOOÝ7!!!!w7x¹xxGÛûÂ>JÂJ>gGGÛÛ&Û&BÃ}ñlBÃ}Oñ‹¹Ûõ¹¹w#èÌÃ!O#õ#Œ#Œ‹uuXuuuõè7OèO¹¹ÃBܜútÃtO!#€¹!BB3œli··°…’ºàHtOtHH.’llN|¶Ë""[ i2ÞÞ.tttÝ ÝtHOOººº!!O!€è!!è€!tttt.tºHœ1t.tÝttO!èèèèè##u##€u€!OÝuu #€€#XXÒX##€##w!!#€#uu€#uu#u#u#u#u#u#u#u#u#uu#u#uuwŒŒ}ŒÉ#####u##ÜB?ÛH€OÝ#œœœœÃt!Ã}OOOBBBñBÌÌÌÌñññBÌÌO!OtºOàtH€2œ?2hHêy»O!ìBOÜ???2ÜÜl?[·[·âcYØ3¹Û}G7w7¹qgÛ}Ã}¹Oww!wOOO7!7!x7777}ÛG>ûû™™ñûÛqG7xG¹}!¹ÛB?dOBÛñ!õO¹ÛO¹ñdÌ&ñ}7wŒ‹õõu###uu##!!O7¹ÃÜܜúºBÃO!O€#tÜœœ»´·Þ 2Nºo…11’’HºHÃH1ê¶¶’…Š" µ¶2¶tootÃHÃêBt!OOOtOO!ÝO!€!!è€!HttÝÝÝ.t.1œ’H1àttÝ!!èè7#è7O!w€w!!ݺ¹t!!!Oº¹!!w#uuu€##€w€€uu####u#u#u#u#u#u#u#uuu#u#u#ÉuwuŒÉŒw#uuuu#uuœdœ´ÃºÃ¹œ€œÜ?Üœà¹BœÃ¹O!¹ÌBñBÌ&ññÌBÌÌÌÃ!!Ý!Ý€!.’l.œÜ{i´BÃOOtHêlll2l2?µ?iÜ?´cdÛ}¹¹7xxG¹}}¹¹¹!!w!!!!!!!Ox!7w77GÛ}gBg™ñGGG¹G77Oxw¹Bý¹´ü¹BdB¹Ûœœdñœñ?»À&>>>7ŒŒwO! €Ý##!HBBœ?dœºOÝOBºè€!!#¹O}B´@$lPP.ººttOÝHH’Ü…to’¶2Þê’H.P?2ºH1êÜOèOO!!!OOÝ!!OO€#####€!ÝÝ€€€Ý.’N[·[i2ºH.OÝOO!!uè}O!!ÝuÒõ!!€#!!O¹O!w€€€#u u##€w!#u€#uuu#u#u#u#u#u#u#u###u#u#uuuw!ÉuwŒÉuuuuu#¹œ}!lBhÃÜ11BœÃÃÃB̺¹!}ÌÃÌBñññBÌÌÃñêOtÃ2œHºœœœ.1œµýÜh±´Ý´?H1êœ2ÜêlÜ?Nœý·??3Fñ}G7!x¹7x!!7!O!7O!7!ww#!!w77!7!G¹Ûñ&Bdñ}GGG¹x7x!7!}ñdÃ?}Ã3Üœ¹w!œ}ñ?œüÀŽÁ:Áù¹uè¹€€ÝH!uÝHB1œÜl?dÃ!€€XOO€!O€#œÃ1¹Ã’œà Š.Pººt.Ý!€O!€Htà..t’êêH1ÜNœtÝHêêO€!O#€€!!€#€OO!!!ÝOHÃHtt.tº’2´iµŠœtºt.O!èè#è!¹ººº!€€!€#€##€##uuuw#€uuuu##!!######u#u#u#u#u#u#u#u#uu#u#u#ÉXÉw#wuŒuuuuuu#dÛH#Ü?1úÒB}º¹&!O¹¹Ìññdñêd´HHœ??l2ÝÃ’œ1ºÃlýt?ýêÜ2iÃ11œ222?2?l’1i·h?»FF¯dB}¹7wwÉw7#ww!!7OÝxO!#u#w!ww!77¹!O}Ìñ™dBG¹Gxxwwww!#u€€uººlF´œ»·œ»lÜ´Ü]F»ÀzÖ_;ÖÖÖø:¹!tººÃ’t.tÃ’1ÃÜlœÃ¹!O!!Ý}Àu!Üd´´Bœýi?PºœàP¶PP’’Htt!ÝõXà€ €oàotHl2’œœ’t !HÃÝOèOOè!!!€€#€!HÃÃÃÃÃBꜜ1ÃH’œ[°ýµ2P’’’HHÃH!#€!#u€!Ý1êܺ #!!!!€€w€w€€##u#u€#!!€€u€u#u#u#u#u#u#u#u#u#u#u#u#uwuuwuÉ#}w#Éuuuu¹ÃÃÃ#€€œBlÜBúù¹ÃÜOè¹Ì̹¹ÌñddññBêBB!ÝtH1œœÜÝ1OœHl22°i12°·2Ü11ÜÜll?lúœl1»?hh3Û}¹w#‹#wwu###!!7O!7Ow##w!7èwè!!7O¹}d»»dB}¹G¹7wÉw#x!wu!BBlœy@?ýFœ¯h´Üüi3:Æ——z5øÖâd!OœÜH’’’’Ã1œœBÃHHùÝÃ!uÝœhü¯ÃÃPHº…±±"¶1Ã’tÝOÝ€€€ €€ €àHlltÝ.¹Ý€ÝO€!O!!OOO!!!è!è#OÃBHÝÝOÃHt.ÝtH’lµµl¶Ü1º’’1ê1.ÝOH€ õ€€ÝH€O1ÃOXX€!w##uu#u###uuu€#€!Ow###uu#u#u#u#u#u#u#u#u#u#u#ÉuwwuÉuwÉ´w##uuuuOOwÃX!œºÃ!l’OH¹ÃOèÌñÌO7Bç´êÃÌÃh?œHÝ€!ÝlÜO1œ2??œŠŠ1NiµdHºÃ1œ?´llœHtººÜ?hü¹¹!ww#ÉuÉuu##ww!!!7!7www¹wèèèw7OO¹!¹BÛ¹¹Ìég}G¹xOwu!!!Ãh?ý{@%¯´ßii?ÃlÃüÎKîÆ-øÖ5!!ÜÜào’¶ê1’’Hê1BÃOOO¹º€#!¹!!!ºÃdÜýе% ¶| 2…HPêêÃtHHtÝÝOH! u!tdlOœÝu! u!OO!!!OOO7!è!!!!BtBêHHÃHtttº1œœµŠliN1’H1ê1HtÃê.€!à€ € €Ot!€!€€####uu#uuuuu###!O!€u€##u#u#u#u#u#u#u#u#uuu#uuuuuuwuwÉüw!#uuuu¹Ã}º¹!uñºœHBœdœB!B?»Bw!ñdñ¹OGdñ̹OÃÃÃHÃúݺ¹ºHú÷iÞ’?°2œœœÃB1¹t2?21¹HBHHý´´Bœ!}}Ow#Œuuu####€7wwww!Éw}ɹè‹!w¹Œ}¹è!¹!€!&>¯Oɹ#O}üÜܵ@@iB´’´hœd??™Ž£ÄÄB̹¹¹¹O!OººO!FÝœllÃ2iÞN2¶Ü’1úººº1ÃB1ºÝÃÜœ·ü¯}!7¹7www7uuuu#w#w#wɹ¹xññ7O77è&wO7èO¹¹¹¹èGû>Ïâ5ÏÛ!uuÃÜ´?œœ. l@·[?lœ}œ´d?û™äÂ<3—YcYYa2¶¶ÞNŠ2êêêêêêBO!#€uÒu#€Ý#ºœHÃd?Ã..’¶°Š ±°Pt1€ÝtÃÃÃÃÃBdœH!€!ÝO!€uu#!OO!!èõè!O!OÌ!OOB1BÃttOt!Hº.Ýݺ2µµiµ22’1¶tt1ÞNP...H.tºt.€ uXu!uuu#uu#u##u#uu##w!€#uu##u#u#u#u#u#u#u#u#uu#u#uu‹uuw#ŒwÛ###uuu#¹Oèèw!w!ÃÃÃûHÃ##?ÌXõ¹ñBO!ì7ÌÌ̹¹¹!Ow#€!º¹Ý?!œyOõ?œµÃ2P2ÞœÃHÝ!ºÃ¹tÜBºœll·¯%aº¹OÛ¹!7“uuuu#u#uu¹}}ñ™dÂ>GÛéd>7è7¹ÛÃd}¹&B]ö¹¹BÃ#Ý?µHœ?º.Ü2Üldœœlœ´Bñ>Â<éGéç5ÖùùYY²±·|N[[?222dldÌ!€!ºOuXÒXu€¹Oœ}H¹œa{H°ßµŠZZ°ŠÞ¶to.€€ÝtHtBOè#€!O€###€!!O!è#è!7O¹OOèè!!BÃÃHtttºtH1Ã1l°µii°ýNiµ?i1’|·‰"2Þ…Š2¶..à €€€!€!##uuuŒuwu#uu€u€uu€!!€#u#u#u#u#u#u#u#u#u#u#uu#u##uɹ¹Éu‹uw##uuu#¹Oè#è€w€H}œÃ¹Bl?¹!Oñ!X‹OBÌG!OìÌÌGG¹G¹¹w!!!!!!!OÃy?1¯iÃ?Pi21œœºH¹€Oú!œ´?d?Ü?·ya»dºwù}B#u#u##uuuŒwxwû55TÀí-åí&éì¹G}Û>dñÛÛG}>ñ!ñ!!#Ãl{yœ[ŠÃ€Ãœ?ÃBÀd™Â>GGóÛÏøÖ%ÖÖYØ@°°··ŠêÜÜÜlÜBt!è!BÀ#XXÒ#º!O¹Ý#Oº2Þœ ØŠi "|i|¶’Ptº.tºH¹O!!!!!!€###èèèèèè#!OO7OO7èèè!!!tOtOÝOºHlœ2Ã1´µý{i[°?N?l°Šêµ ‰Š|‰["¶PPHt.€ X#uu##Œ#7u u#uuu##€!w€uu#uu#u#u#u#u#u#u#u#uu##u#u#w}}wÉwŒ##u#uu#¹¹Oè##èu#!wº}ÝÜ´d¹º¹ÃOOu!¹OO7!ìóGìÌÌG!7!7ww!O!!1}!ܵ?Ãܺœœ¹ºÃ€uݹºœ´ý´»»?»[»i{F·ÃÃÛd¹uuuuuuuuÉu7Œ#ŽÁÖYøø5ííöéé>dñ>ñû¹ì}&dçdB?O€Bdß%%±°ºt!ÝOûœ>´̹7¹é&ÂöÖ_TâÖ²%·ý[·ýlêÜÃêêBO!OX!O#€€uÒX¹Ã!ºÝ¹ÃHiHê¶i°Š ZŠ2|µP’ºt!OtO!è!OÝ€õu#è!!èè###èÌOèèèè#‹è!OOOOOttH’1dœÜº’´?i·ýN[·Š2’œiN¶N|i‰"[ Š2¶2tà€€u#u####‹wOu##u€uu !!7!#uu#u#u#u#u#u#u#u#u#u#uu#u#Éuu7!ŒuwŒ###uuuu!¹!!èè#uèu€¹œÃÜœÃè!Oè¹uèO!7èè7ìGGGó&&ÌG7w##w!¹d!œhÜô{üœœÜBºœÃÃBºu!ºBœ??ÜÜ?lµhi?ý·ýhl}ÃdB7XXXuu##w#}É‹q-K;JT;5JÀ¼Žñ}G¹Ûû»ddÝ€’?2[ý@[tÝOH¹´´}Oñ>>ç:]ååY²´´ih°ýµN´ÜBHt!!€“ #X€wXXX!º€BBÜÃ1õPiNN…|"‰‰|Ë[°Þ2PH.u õ###u€!!€#õ#!7èèuõ##è!!#èèè‹õõõè!!!!tººH11Ã1œœÜµµµ21ºliŠ2’Pܶ¶ŠN||Ë|Þ…êPtàݺOÝ! u##Éww7#u#uuu##!¹!€uu ##u#u#u#u#u#u#u#u#uu#u#uu#uwÉuÉw#u#u#u#uwè7èè€èèXu#!Ã!?œñ€!¹ÃO!‹#è7!èè77ìóÌééé&}7#Éè#ww!!œB!lBýdhcl¹ÃBBœB1º¹ÃÜB}ÃB2µýý··ýhh¹¹Bñ»?w##uu#wwÉè¹x&íT<-K•ÆåŽ5GÛG¹Ì¹é´d!€Bº!ºlºl@úOHBññ´ç!dœñññÂ:öTÏdl?ýhýýh´lêBt!#€!# #uÒXuX#!BÜÜNê2PÞ"|° ‰Z‰[°µŠœºàu#€Òõ!OO.O!èè7è#uuuõ##õŒ###õ‹õŒõõõ#€!OttºHú2??211º2œ2Šl2’1àHêŠP|¶………2|¶ºÝ..ÝXÒ#uuwèw‹wu#u€u#u#!!O!#uuuu#u#u#u#u#u#u#u#u#u##u###wuuÉuuw#u#uuuu#èè##è!!u#OO¹XB?BBw#!B7õ##!ìOìèèìGÌé>>>&̹7!7wŒõ€#!ºÃÃ!¹1h!HOÝBÃ}œœÃBùºœÃºº1?»h¯{%ayù€?d}º!€#uu#wõ‹}GÛÀÆííîÄ<K¼˜—Ö—Y˜™ÌìGw¹BB1¹Ã€ºBÜýli±hHºÃ!ñ‹¹OÃBéñç5í>Ïç>ê’ê?ý´°?dê1BBtO€!# uX“€uX!œÝHHºÝÝHêµ2°‰Z‰°"["Þ21H.!€€è#OBêBHO!!!è#õŒõ‹Œèèõõuè#õ#‹õ‹õõèõ€!ÝttH€?i·´1ÜÜ2°°ýl2.êŠ||" "PÞ…¶¶N[œàu #€!##uèèw#u##uuu€u##!!!€#u##u#u#u#u#u#u#u#u#uuu#u#u#wŒX7uŒwÉuu#Éuuèõõè€7!èè¹O#€¹}dñO#¹è}!Œ#è!!7èèè#¹&B&B&&&G¹7èèuuw!!¹O¹ºHBº?ÜHi1lœ??Bº}B¹!}}d»»h»Fü¯?œ»ÃœÜüyFd“XOu##‹O>Žíé<<<<Âú£•;—ÖÖYøÃOÌO¹Ã?1€ºt1B»@iHµµµHBd#èÌ&OG™™K>çÂ>&ññBB1ÜœißhµêHHt!€Ý!€ X X X !úÃÜdHO!OÃêñ1µý?ܵ?ê2ÜÃOºHÝ!ÝÃÜêOHO€O!èèèuuõõ#uõuu#õõõõõõ#è!耀!tHú1.1?N12.º’?Ü’?i·2¶’êi2i $ |Þ"NP’HO€€€# X##u###‹#uuuuuuuu#!ww#u##u#u#u#u#u#u#u#u###€#u#w¹w#u#w!wuuuuu#uuO##!èè€è#O!!wO¹»ñÌè¹!##èè7€è#è#!ñ&}Ì&&ÛG!!€###w!OºÃ!1!ݵ%¯ºc·?ül´d?ÜddBB}wÃ}œdœ?üýý??ý´ÃyùyFœOu!wuŒwÛ>>ûûûfûúnÎÓî½_ùdBdühdœýý.Ã1œ´êtêÜP.H@ýHOd&¹&Â:Ž<<JŽÂŽÛ}BBHÜ?·aß°2HHt€!HtÝ!Ý! Xu €º¹ºÃH¹OO¹»hlœÜÜœ?ñÃÃHt!HêHÝOO€O#è###‹uõèuõŒuõõõ‹õõõèè!€#!ÝÃl2œ1ÃH’œÃ2Üiܵ°ØÜ[¯i...ê·‰aYZ i2t!u####èèu‹u###uXuuu#uuu#w€w#u##u#u#u#u#u#uÉu#u#u###uuw!wuuuw!wuuu##u#uÃOO!õõ€èõè!!¹!¹ñB!Oèõõ#èèè###è#OBñ¹G&ÌG¹O7w#uuu##!¹ÃÜõÜß2’h·ü´cÜ?´´h»ñ¹BBBñdœd»Ø%ß»!%{F´œO###u7ÛŽûûÂÂûÂÎzÓμ]3!B´´Ü?yh1œly{@ê?i[iÜü&ñ™Ž™<™™<<ÄϘÛBB}Ül·yß°[ýi?.€ÃºÝ¹ºÃÝ€uu €ÝÝ#€!èèèOOÃdÜdÜÜœœœœñBÃê1tH1ÝtO!O###õ#õ#uuŒõŒu‹##è#‹#èè€!!OHêdÜÃ1Hºº1tHºliýý%i··i1êêÞ2 °Z$i"N2HO€€#€è€è#uu##uuuuu#u###u#w#####u#u#u#uÉu#u#u#u#u###uu#w#uu#####uu#u##uÜÃtÝ€#!€u#wO¹wO>ÛO&!è‹#‹#èèè####uwñéBéñ&Û}¹¹!#u##!!¹ºHdœB÷y’Üœ1Ã{l?1hy?Ãñ1¹OÃBBBB?hhüc¯œ3?ÝB»´}ÝÀw#7¹éÂ<ûfÂÂûú•/•'Îöêld?hcØyBº·òYaÖYa%±´[@yüçÏŽ»™><™™™™ŽÁ_Žd>ñBœdl´[µ@$±@1€Ã¹!OÃÃ}º€!u€}O#!õ#èèèOBúBl??l1BÃtÝÝtºttt.!!O€##õõõõuõ#Œuõ#èè!è###õõèèè€tHÃ’Ht’1œÜl1Ü’2»µliaŠ´22‰$%@[ÞêµN?…H1H!!€è!O€è#######uÉu####www€w###u#u#u#u#u#u#u#u#u###uuu#u###u#u#uu###u#?ÜÃH€€!!õ€è!!wOñdO¹w#!O7€è##õ#õuu#7ñdé>ñ&Û¹ww#€O!!!O¹€ÜlݺßiܵO ´»»l´ch1}ÃBBœB}œ]âccYؙù?7º´}Oœ€!#€w#uw7}&Ûûûûûgg/SîîTÏh·¯·»h·»h¯Ã!Hdü²Ö²²%@2l{YYcò3ÏÀ»¼ö>Â>™™ŽÀÂdBñ´l´‰·?°·‰@2.H¹Ý!OºÃB¹ºOOHºO}è!!€è#!ºBºº´»´œÃºt!à’l1ÃtOO!è#è#‹õuõ‹##è!è!!7è##õ###€!!OOHÃÃH1Ü’ÜliÝÜll?±@?2Ü´‰²²²%ØltPH.’11O!!!!¹!!è##w##u#uu#u##!!w!7€#u#u#u#u#u#u#u#u#uu####uuuu###uuu#u######ýÞê’tÝÝ€ è#wè#!ñ!¹èõ7O¹!è‹õ#‹#Œ#‹èÌçç>Ì&Ì}ÛÌÛù¹¹¹€w€!1ÝÜ€Ü2Ã[ú2[i»µý@¯´B2hü?lBFh²FŽ?Ž»¹dœ!!“!,Xuu#w7Û>óûgÛggfúS——øå3´h[´?Ü1œÜñÃOdd{ØYY@@yý¯YÖòÏd™3Žû&Âñ>gÛ´}ÂñÛlýyy[µµi[iÃH}¹Ow!¹B¹}¹¹¹¹OHèè!!#u€OB}ºÜ´Üœ1Ã’’HŠ@µœHt!!O!è##uõõ##è¹!è!èõ####èèOOHtÃlÜHºt1t1œilººœ[ܱ¯h??@·ß$²i1ê..H1.1tO!!!!¹!!#è#ww##uuu###w!7!!!w#u#u#u#u#u#u#u#u#uu####uuu###uuuu#É#####·µ2¶tt€õ!!èèè¹&´7¹!‹èèÌÌè#õõ##õ‹#è>>ñ&&ñdçB}!w€€€#€ÃÝÃÒ1º1212l?lýh?´?2Ühhl´´œ?dd¯]À3]ü?üýº€º!#uuXŒ‹#xG&g™™JÓs——Ö—5ÜÜÜÜHHݹºBêOBüüßÖy¯h¯ØY]dÛÛ&ÛñÂÛÛÂ>ÂB&dÄñÂñd»@%|i·ZÃHÌOwè!!¹!!¹wè!Ouè!!è€!¹Ýû?œÜ2lŠl1’2ýlºÝO€!ì!##õõu‹èèO¹7#è#õu###耹êÃÃÜê’HÃlœ?2´i?œÝ2œ{?Ný´?ÜÜl?ý@22@ýêt€ÃºO!€!O!!#####uuuŒuu##ww€7!7w#u#u#u#u#u#u#u#u##u#u##########uuu######‰"Þ21H.# OO!7O}BF¯O7èõ!OñÌ!#‹õõ#‹õ#7ìÌñd>Ì&B}!u#w€#ÝO º€€ÃœœÜ1H1µý´2Ü?l2dœ»»d»»Bœ3B]ùâ3Ã{Bº!€€uuwwwwOGìgön-E8888——%tºÝ€!tHdè!7O!ñêy´ÜBù%´&x¹ñÛ}>ñ}ñ¹>&ÂÀ´ÀÆâödBd´ý%±Š?N[$ê}¹!w#É!u7¹!7¹wè!!!!!Oº!BÃB?d?¯@y$·ŠP’2ººBÃBB#‹õuõèè€7OO#õ#è#Œõõõ#!OBêÃHHHÃlÜlÃll??21ºº Ãi?œ?ê12µ·¯12œ’.t.!!OºHHù!€#€####uuŒuuu##u#w!!!w#u#u#u#u#u#u#u#u##uu####w##u###u#u#####‰2°°22tàOu!è‹!ìB!èè7!è̹èŒõŒŒ#‹èè!éç´&¹¹O¹O¹¹wu#€!€u!úÃ.1œN1tt€1i?´i?œœœÃ»ÃœdBB¹dÛÀ_¯»Bh{œB€€€#wè‹wì&ÛÛ™ÀÄÄ^;SS½ÖÖ¯Ý º’H€ºHHOO!!!ìBdhüd}¹BÛ}¹7¹}Â>ÛGd™üÀñÀÂÀö™?ý{‰i1Ši%µ¹OOì!7è#èwè#wè7!!!¹HO!¹œœº}Hdhü·‰@@2lý°µdÃÌBñO!!èõuèO7!è7è##è!7#õ#è#!OtBêœll21œÜl»2ýh1HBœý´1»¹Ãdï?µººº’!ºÃÝ€!ºÃÃù!w€!#X#uuuuu#uuww!7w#uu#u#u#u#u#u#u#u#u###u#uuuu######u####uui"‰a%ýà!! #è#!¹w¹O¹èèOO‹Ìè##‹õõ#è7O¹Bdñ77www!u u#€¹€ !àœœ1Ã’.ºœº’œÜÜB1Ü»»l?Ã}œ1ñœ}BBñ¯ÏÌB{Ø@´µœ!#Xuèè77}ÛÛ>™••ÓK8ÖÖc?2ldêOêHO!Oè!èO1d»hœ!wOwwwwÛG¹}´gdŽ™F>™OllÜl2µ¶[tB&}O7èèèèè##‹#è!!ÝÃ1BºBBO¹¹œ[·@·Š2µ?ÜBHÃÌ77è#õ#èè!èè€è#èè7“õ7!èèOBÃ1dµ´lllÃl»??»Ã?@’Oººœ?Ü?µœ¯ÃtºÝÃ’œ€OtHH¹Ý¹Ãº!€#€##uuÉu#uuu#u##w€w#u#u#u#u#u#u#u#u#uuu#u##uu###u######u###wi@@@2HBÃ!#èèèèŒ7è7!õO#O¹Oè###Œ#!O¹ÌBl´dB!#è€w##!€€€u€àÝ1ºÃHºtœlÜd[ý1€Ã?dÃ?ÃBtOùº!BdÃÌd?OBh{²%·ýº!uuèww‹wÛ}}û££\+ss——ÖY@·ý?1ºÃÃOHÃBBÃÃBB}!#!wèO¹¹77¹d¹¹¹}BÛ]:™3ÃÌ´lÜlNi1µÃêñBÌ!7è#uõõ##èè!OHBœOÝO¹!º¹ñdd?ý·µ´Šœ?µœºtO¹¹è!èèèèè!Oè!èèè€è!è#è!¹O!Ãl´2Üœ´lü´œœ·ÃBÜ´´ÃÃ?d´´œý2Ü’’Ý.º€HÃHÝ€!H¹!uu#€##u#uu‹uÉu#######u#u#u#u#u#u#uu#u#u#u##u#######u#uu#u##wèl?ýµtH»Ã!“Ò##õ‹OOè7!#ìÌ!7Oì!èèèõèOÌÃHHH?lÌ!èèw#u!ÝO€#.ÃÃ.œtt€ÝtÝÃ1Ü»F}B1œÃ!Ý!!BœO#OÃO¹!º?%alÜ1ºÝuuè#‹uŒì¹7}f>fÕ'6E8—ÖÖY{»?ÜBêBÃBÃÃÃÃBBêÃO€##Xu!uuwè7¹ÌÛñd}}B7¹7¹#¹öŽŽñBê?l’ê2?’?ÜBñ>B¹è#õ‹õ#è7Oº!º}œººO¹Ý}}Ü´h¯ý?dœl?tO̹O!7!èè!!è!¹!!èè!O!è¹è##!O€è!dýµ´µ2HœdÃlÜ}ÃhºÝÜ?ýhlúÝÝÃ’´1º€ºœ1ºœ?ÜÃÝ!€!Ý!Ý€u u#€#uuuuuuu##u#uuuu##u#uÉu#u#uÉu#u#u##uu########u##u##u#uè!?œº!yd!ÃB!è#!¹Bèè¹OOÌ̹ìOè##èOÃêÃHtHBH¹!!èuu#¹º!!ÝÝÝÝœ.€€HHHBHºO»ýdº!¹}lÜHº!’»ºÝº??2Ü!@¯ý!HœO€Xuuõu‹õèw!¹}qkäj+88—Ö²¯1OB1ÃÃHHHHHttÃêBHtOOº€#!!uu!èÌ&ñÛBB¹}º!OX7ÛÉB>dñ}}BHÝH1?Ü´Üdd?dBO##õõuè!!ÃÝÃÃ?œºBÃ}&ñ´]y¯ýldœÜºOO‹è!!!O¹O7è!7!è!O!7!#èè#õèOO!ÜÃÃêêtOº€€œ}.ҹÜñl´ü?H€.ºœº1.1ýŠ.ຜH!€Ýt!€¹!€uu uuuuuuu###u#uuu#u#u#u##u#u#u#u##u#####u########u#u##u##w!´ê€#Oœ¯]Ì#O¹èñ¹è!ÌÌñBÌÌÌOOè#€OHê11ÃÃ1êBÌO¹!w#€¹ººÝ€€º1µ€ÝtB2dœºœº¹º¹ÛùÜ!€XÃ{ýºÃÃ2œ1·ÃܜÀO1Ã!!!è‹è#èwwGx7­Õ\'U8—8ÖÖB!ÃÃOOOOtOÝ!€ºHHÃH¹ººÃºº¹€#!!¹¹Ì}ñº¹ºOÛBññw}dÂdÜÌÝBHtOHlý´´?´dB!è#õèè!!º!1œiÜB}ºBBÃB¯_%]?ÜBº!O#õè7ÌÌ̹O¹O!è!7!7!è####èñd?ÜêÃ111œ?ºÃB!}ݹ!úݴü@a%[´ÃH.t.Ã.ºŠ??¶1.tº.tºº!Ý€# #u#uuuuuuu###uuuuuuu#u#uuu#u#u#u#u#uw##u#u#########u#####wwÃBBÃê¹õ´!#ÌÃÌè&ññÌññ̹OOÝOH1œ2Š2Ül´?œB¹¹O!¹ºº¹HºHl¯ÜºXÝuOœBB¹èu¹B!ñhhâcFýúh[µ[2µ2N$%ŠÃ€!ݺ.ÝlœÃB&Ì̹7OèwO7‘xQ\M6îE8øÖ²´ÌêBÝOOtttt..ttÃ’ÃHO!¹OO!Xu€uu‹OBdOû?´hñÛ™™Bdº!HÜÃOtñlýh3?d̹!è!!!!¹Ýœœ»œœOH¹BBBBñ´F_cüBH!!!##!!Bñ̹&7è!!!!èè#7##!3h»ÌtHÝHl?œœÜ?hœœdB?l»ýýÜ’ú.H?¶Ã1º2PHÝtHHººÝ!€€#u #u uu‹uuÉ##uuÉuu#uuÉ#u###u#u#u#u#u#ww##uu###u#u#######w#è#cü»âù´BdBO&ñç5â7ñÏ3Àçdñœê1Hº’œlýµ?µýµdt¹¹!!¹OÝO¹ºœœµœœ€H!OHOHOºu!¹XÛ´d?Ý€º»·2lÃ’´µ?dBH€t€º2BÃ1d?ñ¹wuwx7‘Õ×Õ×ν—%ÖüdBêÃÝÝÝtºHB1Hºt.Otºº!!¹ºÝ!!###ÛBB}?¯?ñuÛñBÛO¹BÌHHBBdühi»?1Ý!!!!Ý€œœ[dlœº!¹Bdö555F´H!!!!!èOÌO7OñÃ!è!O¹!€###è!ñ?»êêêHtHœ1œ?Ãý»¯´ÜÝ€¹´hý.œœlœ.ºÃº1oº’’ÃHºHú€uuu #uuuŒuuuu#uwuuu#uÉuuuu#u#u#u#u#u#uu#!€wuuu#uuu#u#####w#w###&â_ç]dtB!Ì&5YÖÂJí¼îÏÏ:»´Ãl2Þ¶P1¶2lÜl?2ýlµœÝ!€¹HOÝ!!¹ºý»{»õt·»À݀ººuOB!ü]?}Oœºº»{ýlœ!H3{ýùttݺ2œli[@}7#ÉGÉ‘G)LÕÚÄ:ÏyhHêHœtt!€ÃêtttºtOOO1tºH¹œ1##è!BdñÃB¹}!7}¹è¹ÛBùBÜÜBBtOtÃBêl?µýi··»?œê€ÃºÝ!!¹Ü2Þ¶HttB™JnîY;]ÏB€èOO!GÌñ¹èè!O!#!tÃÃHO !èè!OHñdll2ÜlœÜ?lùlÝÃÝ?lý?º€ ÝOH?tÝÝÃÝtl[NœÜú’ÜÜúº!u uuu###uuu#uŒuuuuu##uuuuu#u#u#u#u#u#u#u#u#u#u#uu#####u###u#O!!u‹d]YBÌB!€!#}ç¼——ÖK:-Så—K3T?2|"°|Š2¶œœÜ2lܵ2µ2Ãt!€Ýº!œ}t¹!>œüH·{Nt€1!X#œâñÀ»3BÛ»dB´yB?1€ºº.1œ[$%@3dO¹OŒ‹É‘ìGGLLd¯31OHº1?t’!!ÃOOtHOtOtÃ!€ºtÃÜ€è¹ÛœO}dñB}!¹ÛÜB¹€Ý}OêOOÃd´?µhýý·[?œlhœœºÝ¹º}HÃê2¶1Pêêñ™:ŽnÎ;—ø3dBO€õè!!!ìì7è‹èOOOHêêHt.!€!lÜê111’l[»lÜÜ€Ýu.OÜlܺ€ÝuB?{cº€!ºÜý??ilÜtÃúÝÝ!€#uuuu#uuu#uuXu#uuuuuuuuuu#u#u#u#u#u#uÉuu#u#u#u############u€w€è}éd>ìÌO!#º}é:-;½Öå-Tî;½åíåò´?" "Nlœ1œœt22µ?2?1tÝ!ݺO!ºÃê!êÜêllÃ2’1BÃd´d´ñ]]F3¯3B}ÃB?²iܺ .Ýœ2Ü2´{%¯]}GÛÉ#xwGGì‘xw¹d?O! !Ý1tuÃÃèO€OOºººHBOOÃÜ»·OX“¹œ¹!Bœ}ÛB¹è¹Bœ}O!}ÃBÃOè!tH?ýiiµ@a±iß´œÃºHBBÃö222??d:T÷nÎ;øÖ½TdÌè!O!7O7!èèõ#!OHêêÃHHtÃ!!ê´dêÃllÜœ1’œi2Ülœº1Ýu !Ü!X! l²y?tÃl?ýl2?1ººÃtOººO€##u###uuuuŒu#w##uuuuuuuu#u#u#u#u#u#u#u#u#É#u##u#########€####€ñ¹éÌdŒ€#>ϼ/K8Kí/-KåöåFl?i ·"?ll212t?µµ|ll1ºOݺt!HBlBHdH?dt1i?œHBœºwO¹¹dF_Ö_5_øÖc»?l¶$.ÝtHHœ»»?¯Y%À¯>wwww‹w77xxGx‘uBu€X€€’Ý!O!!O€!ÝO¹Ht!tO€uOBœœÝ»´d¹!Ýèu#Xº}º¹#u¹œ!u€!OÌêli{±±ß@»··œ1HºBœê12NŠ2l»Ïö˜-nÎK8—Y5ÏB!OOOOèèõè!!!Oêll’t122êO€OO!ºêýµœÃtœºtœ´»2!!€ºÜºÝœÃ¹tBFyÜ݀ݺÝ!..Ã1ÃHºººÝ!€####uu#uŒuu#uu##ŒuuÉuu#u#u#u#uu#u#u#uu#u#u##u#########X耀u#u]öÂÌìOñ¼ÆÎs8—-”ÎÎÓîTåò3ý·‰·µ2œœ’O’.2œPœP?œHÃ’1ÃHHOêê?tÃBl´œÃê1Ã1œÃ¹}è´ü55YÖÖ—ÖÖÖÖ_â¶ ±ŠN.ºlBB»]çÏâYYü¹w7wŒÉwÉww77è#èOõt ! Üt2ýÃ!OOOÝ!tºO!€tO X €è#OOºH}tº!#€# !#€¹ÃÃÝu€¹#€€OtÃñÜl?ýýý@Ø%°[µœ2iÜÃÜÜ?ý[ýhhÏ:ÆK/÷î8——øöñO!#€BO#èèèèOÌBêlH¶µý!!€€H?i?µ2œt’úl1lllB.!ô2œl1Bt#œlhܺX Ý Ýº1ººÃºtO!!!!##u#uuuuuuuuŒXuuuuuuu#u#u#u#u#u#u#u#u#u#u#u##u########u#è#u€#}d3Ïñìñ>&T-•Å8—Ó•í”íŽ?·‰·µÜ1ºÝlœºÞ?µ2Pµœ’¶œÜœ1ÝHÃOHOœ´êH!HŠ?Ã1ñÃ!Xè}»%ÁÖ—½—ÖÖYâ¯?œ$±±@ihü{´ç&éÏòâ_]>¹7¹wwwwuÉ#wè€õ€!O!€u€Ü´ÖØ?OÝ!!OHHO€€u€O€#Ýtú€€¹Ý!º€€€ u!ÝOºœœÃO!€€è€OêÜý·ßßhýÜHHlœ11Ül?i@F¯Ïϼ-//6s—søÖåçO!!!!!!!èOì!è?hhýµNý·@´ê# õOÃlœÜÃl2?œ´ÜBlO!€ÃœttHlœ2Bœ€#X€H?œœ2Ã!Ý€.ºººº¹ÝO!!€u#uu‹uuu#uŒuuuuuuuuuuuÉu#u#uÉu#u#u#u#u#####u##########u ##u!BOñ>çJ>&Bççí”ÓsEÎÑ'•::ç»3]{¯»2œºœ. ºÞ1l’’2ll21ºÜltHÝÝê??ñÜlœO1#,!¹uuBd?_<ûn'K;½øâ⯊±aY±ÖÖ²%çBé>>:>¹7‹è#!!!!#€€O€!OÃt!!.HÃl?ýØcêOtÝOÃBÃ!Ý!ÃlB€!1Bº!ºÃ.OHú!!€ X€ÃœœBÃO!ÝO!!OtBñêl[@{{y@%yýlÜýlµ????ý@c5T••/+E888Ö]&ÌÌÌO!OÌèOOO#Odh?llll222ÜO€€ÝtOtÃÝÃlœµlœÝu!Ã1Ã1ÜBHÜ!!ºº!Ò€HHº1º.Ý !ttººtt¹º!!#uuuÉuuuuÉuXu7#7O7wuu#u#u#u#u#u#u#u#u#u#u#u##u#########u#!!##B!&ÌÂÏöåå<ä••ISî•ÑÑäÑ<:ÂÂÂ?À»»h»B1BÃÃHœPºœ¶·Pº2lŠlœH1!µ´1h¯lOH!#1ºÝ#u!7!}œw™Gó\ÕÎîÖÖY%%{YÖ²Ö²Ö²ò¯:»ÏB&ÌBG¹wèOu##!!€!!º!HB?ºÝtBÃÜ´»OÃÜêHÝtHHßy%y?úœœœÃÝÝœÝH..¶l1º€œµdºÝÝtOHHHÌÃBÜÜü·¯°ß?22i1’hi??ý{5—îí•Ó EÔ8——øåÏB!ññ!OOOè€!HêÜêliŠê11œÜêÃt€XÝÃÝœÝH!1lÜ2Ã1?ÜH€Bººt€tºOÝÃ!€Ýu!€.ºÃÃÝÝàÝ€€€€€!!w#uuuuu#uuuuXw}O¹}}!####u#u#u#u#u#u#u#u##u#uÉu##########u!BHuX¹Û&Jî—ÖÖÖJMIs/M\ÕJÂÛÂdB}¹tݺºPàP’l¶?"iµlµºÝÝ’lêºBñ€€!€€ €¹Ý¹}}!}€É7x‘ÕÑ•;ÖYÖÖÖ%YÖYÖÖÖÖÖÖ%_òdOì7Œ#!#}túiº Ã1!Hê¹HBOBÃHêÃHô·hdÃÜ´ýÜh%y{´BÃdýl€ÝHÝ’?‰yNº1l·ݺ#ÜBÃHÃ?´ý··ý@a@???1ÃNhh@Füå5Ö8•”/R++ãÔ88—5]O!O!èè!OO€O!€õÝêtê?i°?1êHÝHl.HÜÃttHݹ2Ü2BH!ÝœœœdÃ1!uÃê!HB €€ÝÝ€..€€€Ý€€€€!Ý€uuwwwu#uu#uu!BBOuu#uu#u#u#u#u#u#u#u#u################u#€è##!èñÛÂé<å——ÖTÕ)M”Å/×))Ñ<äfÛÂ>dÛB&ÃBBHºÃܜú1?¶lýýi2»°?ÃHº¯HÝè€Ý€!!!!!!Ãñ}}!ww‘ÉÕÕ¼ÁYYùÖ½½——ÖÖÖÖÖÖYÖ%üÌGO7#w¹!œœ1!µ2..ºÝOd·!êÃÃêêBÃÃ?¯y@´œBHlÜÜhh@c@h»·h1œÜœl?[@i22ý·ººÃ1œêBBêl?´»[ü[·ßaßiж1œ?»còâî—½”' 'R–88—ÏÌ!!!OèêñH€€t.€’êiHê.ÝÃH1êtOH11ÜHÃO€H€ººº !œ11œÃœhýüºOÜœœÝݺ.!Ý€ÝÝ€€!O!!wuuu##u#uuuuŒuO¹uŒu#uu##u#u#u#u#u#u#u#u##############uu#!!#õuè¹ñ<í-å;•é)Ñ S”\)Ûûg¹¹¹!¹ÃBºÃ2àl.œÜœÞœœ?N?œ2»?Ã?ýa!€!!€!€u#u#¹B}!wwwɋɑììé:;ÖÆ½8—s88——YÖY²?Û77##O¹¹lܵl.ºœÝÝ?!ÃtOH!HHÃdh{{´ÜB?l??»@F{»{hýœœ21œŠœ1’N?@œÃ1¹œBêddd??»ý»·ýý@@ÞÜN?œœ?âYÁ½8E”” R–Ô8—JçÌO!#€õ ÜB!€Ý€ÜHl2Ü tHHHºÃ2ºtBÜ?hœÃÜÃO BœºOHBÜ?œ?œÃÃHHHºœtÝú..º€€€€!ÝÝ!!w#uu#uu#uuÉuŒŒuuŒ“u#uu#u#u#u#u#u#u#u#u##########u#######!O€uõ#g&éLó)ä<•<Õ­ÕÑ'KÑÕ­qggì¹O7!O!!ÝÝœ!»¹ºœdP!.HºÜh?1»´ÃOèXõ!#€Ãu€¹¹#w7wÉwwuw!}G¹7G&Âí<\Î+SsÔ—-¼˜ø5ö>ñ&¹‹!OB11µ[ß·$@?1´»d!è!tú€tÜÜ?Ã?[ý»h¯¯ü]hhœœB!ÜŠœºP11Šlt1HH€!tOOO¹Ìêd??»ü·¯·@@°µ‰¯h޼;ES8ÔÓMIM4ãÔ8î•<>>BÃÃO€!ÃÃtHœê1êtµßêt.ý·µ2œ11l·2ò?ý´º!lBÝÝ2lܜú!!# ¹ºÃHO1€ºœÜ11œº.ºtÝÝOÝ!€w€u##u#wuuu#uu##u##uuu##u#u#u#u#uu#u#u##########u#u#ww€è#!!!èu>ó<îs•'•-•äJ//ÎLä:<™:éLé<é&&̹¹!O€#€#BœB#¹Ãº€!t!d·²ØOõ!€!è“Xu €º¹Ý}º7#wu##ÉuuwO¹¹¹Ì>góÂäJI•SEsUsÓÓ¢;½Áñ&ÌOè7O!OBB1œ·iiyßlOêBO€tHÜ1H€!BÜBBl1´?»{h»h]ü¯3ê´Ãœi··µ·œ’?Ü.1t.€!ºO!!OHd´ý{[$aZ·±%ù™&ä•SS6Eô”MM((Ш4Ô8S•>ç´ñÃÝuÝ X1[[?ýH1êHt$·µœ’ºtÃlhºudh?lhlÃ1!tÝ!Oº!OºH1H!O!Ã?º!t!Üœº’ܺÃúOÝ!!€##u###u#uuuuuuuuuuuuu##u#u#u#u#uu#u#u#u#############ww!!#u#!!€ŽäóÑÑä/s-ííS”J<äç-¼í:<ÂäÂ>&O¹!wÝ#º#ñ!¹!OH!ݹÝÃHh€!OèèèXu!!!Ü}!O#ww‹‹ww!#u€ÝÃBBé&óääÄŽ•Å8ô++++¢bŽB}ÌOèè#!1?œ?2lºBêÌÃBO!tºê1?H€OÃÃÃB´œl?{y¯ââF¯3ÃÃêtºœ2l¶l¶1Þ2’1HõtHÃÌO!OÌêêBÜi[·@@$±a±aaââó)”” ÓÓMÑjMƒÐã–ÔS:JÂÌO##OHtÜܺHÜ?i2l´iillHê¶´µÜt!ÝÃH!tÃ!̯´ý?H€œœ€€Ý ºœl?œBlldlœº!tuàÃÃtÃ’Ã1œÃtÝ!!!w##!ww#u##uuuuuuuuuuu###u#u#u#u#Éu#u#u#############w€!!!##!¹¹!::äÕ)\Ó—8EKÑÑ<<™ñ&ìO¹OݹÝú¹¹}uÝœ1útO€€!!õ!è“!Òõu€ºBœd?À##O¹#w7}Û¹€€!Ãddç>g£ŽÎ8—ÔÔôsUÙ”—˜&Âñ!#!!èOºê?ܜúÜ?OOêÌÌOHO!ÃHBºýyy·ÜHd?{ò%YÖcc¯ddlÜ2lœêNÞP¶Pê?.êêêÃOè!OBBêdl???dµ[ßµ3<éÛ)Ó/6/M ×*æÐÔÔSJ>éñBtÃ1.€ÝºtOœ°l2êêµ2´ilHàH2´´tõO!XOÜÜBœºœ1BÝBHœdê´Oœ?ÜÃÝ€Ý.tÃà1Ü2œºº¹ºO!€w!¹OwX###uuuuuuuu#wuŒuu#uuu#uu#uu#u#u#############7!¹##!BœÃO-•ä'IRSssE/-Õó>Ž<-E8•çç>äé̹Oºº.€ÝÃù¹ÌÜ´?PÜ’€€€€ÒÝHH€€ uÝy?Ü!ú#ÀB3¹ww#¹?>}g>>éÛ<ÂJ—888EEΟKí:FöGOèè1OtH!ÃHOœ?œO€€Bh?O!OOOH´·ü´œ?»h33]F5²Y²_òü»?l?µ°°Þ°Z|Þo.ot.11º¹ºÃBBÃBd´1œd??dœ&&óìóä-8ô”Ij0`ð–ÔÔ8•ÀåüBÝ Ý1Ýtºtº2ih´€t»a¯l??œ2€HyØÜÃlê#Ý€tœHœ¹œ´Üº´¹1O€õ€¹ÃÜýNÃ.’œœµ’º2tºÝtœº¹€w!7!7u##uÉu#uÉu##uu##u#u#Éuu##u##uÉuuuuuuuuuuw#€!#!}¹!èuèè!èîn\ä×j/+RRÓ''ÑÕ™J:/ÅEÓÎí<ççñéé̹O¹H’º.tººwOÜ1ºº! €ÝÝH2hµ!.œ!’ݺùœ´l?Ýuܹ€¹}B}#gñBÛ}&ÛGÛ>gé-8—ÔsEs½zí;í<:&!O!€€OH!!º!HBHHHÝ!êü´Ì!¹OOOº1ÜÜhhòòòö_ÖÖY5hFý?22´Ë Ë…2œœdœBÃdœBBœllœÃ1BÃBñÂdñ>dñóxóLS8sRM*ˆÿ4Ô88•Â>OOÝu.!lŠÝt·yýlÜêHê´hýl?ýullt!ºt O2Ü2ÝÃÃh¹l!ÃõBêúêOHœµ±¯ÜºÃ.!PÃl’úºBù!#èww##u#u#u#uuu#u##uu#u#uu######u#uu#uu##u#uu#u#!u€OOuuõuè!è½ÎÎ'Ó/×jÑ\Õ\LéJ3Ï:•-SEsÓ•J:Ïd>éÌG!!ºÃ’º.}º!w}€.ÝÝݺ..ÝàÝHêl$y1.H ôlÜ’!!!?ܺ}BB!w}ÃwO}BgÛÛ}¹G&ì‘L•68888——ííéTÀñèO#!!H€#OOHHÃ1HH1?]hê7èõ#Ýtõdd´ù²_âùYÖÖÖ%ââ{yØ{·[·ZZ| ||µµŠ·ý?ôdBdd´»»lœB}Ý7}B>d™góGú6Eô”0× æãÔ8ÔJ<d1€ 1ºHœ2œ2??êûØyý¯·lÜllÃÜ?ÃÜ #º!2œlOH€ÃÜ1!!!B!Oè!Oº#Ül}liiÜ1’12œ’2HÃÝ€€}Ow##u#uu#u#u#u###u#u#u#u####u#u####u#uuu#uuuuuu€X##u#!€###€!!!8¥-Ó-'Ñk)GÕÀJJÄΔ+sÎíJ:3Jd>é¹O¹ºÃúºÃ}!è!€#€Ý.¹ºÃHttHêlµh$iÃÝ.œ¯?H?œàXœ?ݹÃñ}w#¹!w}ÛÛÃÛ}OÉ77‘GóÕE8——Kä:Ìççñ!##ÃH!ÌO€Ý1BÜ1º1ê»d!BÌÃdœ?µü²ÖÖ²YÖÖÖÖ²ù²ÖYÖÖ%c±a$$@ßß·´l?»ÃñÜÜœÃÝ!!}ÛB>>ûûLq)ú”/”Iˆ¾ã–88-Ï<ÂBB1ܵ·2ttÝ€tœlœ´l?hYl»œ!Ý€{ÜÝlÝÝ1œÃºº!u#¹ÃõB€OHOO œ1uÜ2œ2?œœÃܺÃݹ€!€#uu#uÉu#u#u#u#u#u#u#u#u#u#u#####u##u#u#uuu#u€#uu#w #wu€#è!OO¹—½-eÕÕ­­‘‘‘ìììóö5:••S8íJd>é鹜2œ’ºÃº!#u#u€¹HºÃœœœ1Ül?lý´1êlÝœ?Ãü·ºBœ¹¹#!¹O!7!7!¹¹¹¹¹7Éw7ìóÕ×I8———z<äÛ&ñìO!èO!tBè!HÃÃ1œÃºttÃ?ld´´dÜlh¯c²ÖÖÖÖ²ÖÖÖÖÖÁ_Y²ÖÖY%Ø{±Øß@ya¯l»ü´´?Bñ}ÜdœB}¹!O¹}BgÃ}ÛggLÕäÚpÓM0* –8E/JççÏ´dHOHœÜº€€€!1H??dêô@¯ýœÝl1yØ·ltÒº1œÃݺºHÃHÃ!ÃO!õOõ€õO!OÃtºHº’1ºÒÝ.º€t€¹€#uuuu#w#uu#u#u#u#u#u#u#u#u#Éu#u#####uÉuu#u # #u#€u#€uu€uuõõ#èOO88¢ÎÕqG‘Ç‘‹ìGì¹ûÂäI-Ô8;•Âd>>ñ̜ܴœÃO!!€w!#!¹¹¹Ã2?´ÜêÜ2l?µê1?€Ý’ÜÜ?d!ºÜüù¹¹!!O7!7#w77¹7¹7ÉÉìÕ——88î\é&>GGÌOOBOBOñH!ºO!ºHHÃHtºBd´»]´??l?3¯ØÖÖÖÖÖøYYÖÖø—˜5_YÖÖ%òù%còy%ÖØÖF]]BB?™ÂñBBœ?œœ1ùO!!}ÃÛ}¹qqG‘Õ\×IRRj*ðôÔÎ<ÌO}1µÜºÝ!€!!www!OOœÜ2Üê’1ê[´Ã1tº!Ýuݺ!¯´œB!w!!!7!www777w7ìóJ--8—8Ez8½éäLÂéÌGhñBdOO€€ºtºœÜÃ!Ü»3»3Ï»´ñ3Fc²²YYÖÖÖøøÖ½—;å5Á²ÖÖ²Ö²5%ùÖØ²cF´?dñ&ÛBñl?œœœBùO}BñÛG}qxÄÓ¢''R”Ȉ(Aô8í<>é´d1ºtº2Üœ2œÃœ1ñl?´ÜBu?yld1%ÃO!œ··yÃHHܺ!O€O€O!dê´?dÃHtÜO€€ÝHº ºBH!ÝuOX##u#uuuu#u#u#u#u#u#u#u#u#u#u###É#u#u#uuu#uu#u€##!uu€u#!##€!€€è€8úÛÉ‘ÉO‹w}¹}>ÂqóÕ<ÎE½-ä&ñ>>>>ñ̹¹ÃB?œºOÝO¹O!è!ww!OB1OO1Ü1tH.dh´HÃllº€¹!!ý?{d¹BÛ!uww€7!wuw!Éwì7G<•:-8—8½LíÂéìBÌ]òcÌñOºOÝH¹Ýœ2ÃB´ç33»Ï™´ç?]â%ÖÖÖÖY—Ö˜îKKî;îøÖÖÖÖ_ùöÏd&ñ´Â»ŽñBœdÜœœœÃ¹¹BB}¹qGG­/M'M ˆ(ðÔ8síÂçOêÜÜœœ!.ÝÃ?2hü?´Bd»l?¯ýºXµ1 Ý!œÜ?iœ2HœºO€tB#]Øœ?hhO๺1OHÃOOHO€OÝ#wÒ!Òuuu##uÉwu#u#u#u#u#u#u#u#u##u#uu######u#uuu# ##€#€uuu w!€õè!!èuuEΕG‘7#7w¹è¹&™óóäK-<éÛGÌ&ÌO7Oº¹º}ºº¹H}º77èO¹}HÃÃÃÃ’Ht€!H!HÜÝ??Pºœœ¹¹ÛO%{#!!7€w#w!www!uw777G<•Ä-K½½óååé>G¹ñ´F²Öüè¹Oè€!ݺºœÃÃdÏÀüdd<»À¯â%ÖÖÖ—½K-Sî;åîø_ø3Ï>ÂBÀ¯Ö´ÛBýœ?lýBù}ÛÛGxxGÑIÑ M `RãEîsøÌHHÃ2Ü!!º´lÜFaØ{´»ÜOÃ1ºHlº¹! €ÃÝý·ýÃ1{a¯ê!BÃ##´êOOÜHHO!O´?œB1B#€#uuu##u##uu##uu#uu#u#uuuuuuuuuuÉuu####uww#uwuu#uu#uuuu#uXuu##u##!!!èu6/'Ióxx}wuu¹}B&>gqóä•Ä••Gì7ìÌGèè!!!Oºº¹ºÃÃ}¹!èèOO¹Oœll’tt€ÒÝ#º1’Ãú¯œBdâ}Ýý¹!X!!Owuw!!uŒuÉw777óéLäÄÎs—<TÏ>ÛÌÌ&T²²Ï7èè!w€OO¹ñBB´çÏ:À]ŽJ™Ž:ÀÀöùYÖÖÖÖ—KSs8½îå53í>>™F_²À?ŽŽ»l2dÜÃ?œÜ¹}BñÛGGq­”R'**‚`UÔSKö5?»Ü!#ºÃdœœÝtOÃH3?hO€ºÃ2ýyY{1Ãt!11!ÃüýB1Ã1ÃOÃHBÒ#€€!!XÒt!Bœ!ºBúOO!€#uuuuu##u#u#u##u#u#u#u#uÉuuÉuu#u#u#u###uww#uww#u€#€€€!!€uuuu###uXuè€#u6Ó'ÑÕLG¹‹wñdŽññ&ûLóL<Ä<çó77#7!Oì!7èO¹¹!OºººÃHH¹Oèèè!OtÜlÜ1HÝõ#Œ1œ?º ܺw!ÀOݹBu}Œ¹!!¹!7uuŒuÉÉÉw‘‘ì\<Η—KTíTJ>G&}¹Ìçò7!7!ww!!ºœd´ÏÀöTÆTí::ö¼ö¼Få_YÖÖÖÖ½sSÓ/ÓSîs½sÖ—Ö—555öÀ3]ââ]ü™d}»´ÜœBœ}´ddBÃgB}Gqg£î8ž/MI ˆ*U8K:»´tÝ€€Ý!ÃO!#Ý·¯ò´dݺ€Ýœý?ܺÃÜÃÝݺ€Ý€1´´y»»dê!è€O!€O€ÃBêO!!!¹!#u###u uu#uuu#u#u##u#u#u#uuuuuuu#u######ww#€w##!!wuuu##w€w##€#€uu€w#u!!!è++Ó<<éìw7»3>ñÂäéé<äÄéììèèèè7è!7O¹¹!!!!Oº¹ºBù€#u€#H1Ã1Htà€€!Bdœ12.€.?üFBÛ]œ!ÃB!1OO¹}}¹wuwŒuu#wÉwÉìóóS88——½-JÂÌéÛé&&ÏåTd>ñÛ}!OÛñ™3]öÀ:öÆå;åÆ-ÆÆK˜5_YÖÖÖ——SÓÓÓ6-S———ÖÖÖÖÖ__òçÀ]F»À»dÛ€œœÃ1ñœÃdñ}BÛÃ&gÛóLs—66' ˆ*`ôEíçÌdl?´H1XtÃ?h1# Ou´üâc´´?ùºBliý2B€€Ãº XÝtÝœ@²¯ü[dHXHêHH!O!€O!è!!!!##uuuu#u#u#uuuu#u#u#u#u##u###u#u#w###ww€####w!w!u#uuuuuuu€#€#uu#O!€èè!€ãô+ë-TÏÌÌñ¼öÀÂÂJ<ûÕäBGdTÀÏç>ñg?ŽüFTTFK;îî;Kî½ø½_øÖÖÖÖÖ—½U++ë6ëÓ/½—_—YÖÖÖYùò™3ü]?´B´}º?ÜüüBÛB}B}Û>ñgGx¢Es8ÓM*ˆ`RôEåí>Ãd2lÃ1œ?hlO!Ãh]F²hBl´µÃ€!1ýlº!œ1Oº1lœ»¯ÖßÃ!€õ!#õtOO!t€è€u#!Oè##uuuuuuuu#uu#u#uu#u#u#u#u#u#u#u#uw#w#w#€ww##w€ww#!€!€#uu uu€#uuu€!##u#èuãÔÔ88—->&édö<<£éLLûÛG¹è7èè###‹uõ#€#u€!.ÜœœÃº.ÜŠÃÜ?2Ã..OOÌ?»HºÃlœ€uºBù]_Ö²ý@ÖØ»ºwX#!¹wuw#Éuu‹‹ÉŒ‘óú—Ö—éGéÛÛÌÌ&ÂÏÀ펙dd™»ÀTåå;îø½½½——sîK——Ö—ÖÖÖÖÖÖ—8Esô+6+SÖÖYÖÖÖÖÖ5âüü3´ñ´]üh»œÜBl´üý3BÛB}>ù}}Gq>HܜÜ·Ã!´ü{?!“?»Ã´´ñ·ß´Ýtœ??tÝ€€HÃÝÝH??ýœ·¯Ü“€èõ!tX€ õõ!õ€#õèèèõõõ‹uuuuuu#u##uu#u#u#u#uu#u######u#w####www!w#w!w##w€#€#€#uuuu€#€#uu#XXu€#AãÔ8—ÖîÀ>>:nÄ™ÄéÕÕ\L>óG¹è!èèõ‹!èèèèOè€!ݺÜ2Š?2œ’’1€.º1ÜÜH!èBñÜ1HliÝuñŽ3·a¯´ü%%ch?B}¹¹!7w##uÉu‹É‹xq)ä/½½øÆ<é>G&óÛ>çç:í<çÏŽ™<:]å5Á_ø8—88—88îSî½—ÖÖÖÖÖÖÖÖ—8ÔÔUA+SÅSî—ÖY²YYYÖY²â]ü{aüÜ´µOÜœB!B7}Û¹Û¹¹É7gJn΢R' *`æðEÔ;¼dd1ÜœÃOœ]lBldüýOõOÌ»êÜýHtºœ´ÃO€tÜœÃ!Ü·ýÃtœ#X!!“tÀ# #Ò#õ#!##õ‹õõu‹u#uuu#uu#uuu#u#uu#uu##u#u###u#####€w€}O##wu##uuuu#u#uuu##€#€#uu#uuw€ ðôÔÖ—5ç>ŽöÆíäóÕäúé<&Û¹77è!èèèè###!#€€!€Ýº.’N°iŠœ’œ´@yüê€üõBœy[l{üh¹»üö%%c{ÖYYÖ%´}#wÝ#www#É#w‘ììG)n-K½Ä™>GG¹óóçÏJç™Ï:ÏŽÀTåÁÁ——————88ÔsSSîs——ÖÖÖYÖ——88ÔEôU sÔ——ÖÖ—ÖYYÖY%âhF»¯»hüdÜ´œÜ7œ¹}ñB¹}}g¹wLJn•Ij” 'ãôE¢<̹èèO7èèèèèè!!X!ºÝ. ºPlN¶ýýßa@··ülH!Oè¹êB´hYýFh´´¹55dTÖùÖ%Ö¯!!€¹uuÉuÉ7É7É‘óäíîåîåí<óóìì&ÌéJdççÄíííí--î_—YÖÖ——8Ô8ÔEô+6+Sî½ÖÖ—888888ÔEôsôEÔ8———ÖÖÁc²5câ¯]»»3´Bddœ}¹ÃdB7ݹÃB¹x}xfþfúÚ'R++¿/ä»Fýl?l?œ»œ?dOOêüBBdBBl»?hd!€1{ilÝÃh¯Ã!»?dO1œu!HtÒ€õHBBO!Ý!!!è€è€#õuuuuuuuuuuuu#u#u#uu#u#uu#uu#u##u#w€w#####u###w!wwu##uuuuw!!########u##€#‚* ës——:ìG&çí•-çJJJ•”™B}̹¹ì!èèè#u#!!tº€Ý!ݶN[·[‰°iýlÃtHHÌ!O´ê¹B²»œBcB}B&Àg&éÂŽÀÁc¯··B#7Gwu77Œó7ì‘ìéÄ;-˜îíä7GG&&>ÏÂçJ:¼-ÆKKîøÖÖÖ—888ÔÔ––ãëRRÓ/S8——Ö88ÔÔ88ÔÔ–Eôss888—ÖøYÖ²²%Fü3»dBdœB}œB¹º!!¹}7wxGLûúúeŸ'Ÿ¦ÑÑ™ñB´F¹üF´Ouw¹É#¹éŒŒìè‘ì::gççóóGìóÛéçÂçŽ-Æå;;î_—ÖÖÖÖ88ÔÔ––ôããë(”'•Î-îøÖ—8Ô8Ô88ÔEôU+EE½—ÖÖÖÖYYYØ´»´dBBÛ¹º¹Ãñœ}ݹ¹!}}7wxqGþúvúÚÚvjš\<ñ[µ´ý»Bl?!ñ[ÌõHêO!OOòdHOÃ!õ!Ü@¯Üº€ º¹Ou}u¹BhÖa»ÃXHý{ê!õ€#ÝOO!€#€uXXuuuu#uÉu#u#u###u##u##u#u#######u##w#####uw!wuuu#u###uu##w##u####uuu##w# ® ÕIsîîå5TKí:TS½—-çd&¹!7!7€èè€è€!¹ÃÝœº!.ºœ1lºÃúÝttt€!1Ãü»d!ºw!Ã}ÛcüÀçéì7GB7Ûwhiزc´}¹¹7¹¹Ì7G7ÛGGìéìóÂóéó&JçäÂç™çÏTå;;Á——ÖÖÖ—8Ô–ããððë '•íK8—sîUUÔ8Ô8ÔÔôÅ+Uz8——ÖY²²%y{¯´´BOO¹BB}!Ãd¹¹!¹Û¹7GÛLffþš\v××Ñû&dÃ@h·F¯ÃO!Oê!·OXO!#Xt!ÃdlBºB?ºÃtÃÒÒ!7“wX¹B?%Öa»ètòê€!!HÀ!€u uXXXuu‹#uuu#u####u##u##u#uÉ#u#######€######uu#w#u##wuu#w##uu##uuuu##u#u#w##)Õ××Ñ'-S——Ö—Öøå½îSî8Tçñù¹¹!7èèO¹¹!Ý!O1HÀHÝ H!º!º1B1ÃtÝH1êêl{¯d!BF»¹Ã!}¹¹O‹!¹w7w}¹d?aY²ÃO´c{B7苹éì7Û>Âéñé>íT½øTíJ™3ö;;;ø——ÖÖÖÖ—Ô4ãððA 'ŸJŽKs8sS+UôÔÔÔÔsU+Å+SsøøøY²acyh[´?´´œ¹¹¹ù¹B?œ!!w¹Û}xqqúûk­­­vIÚÚ<û>lca¯3BÃOÝÀêdÜ!êllÜ!Ýd?BOtÃO#ÃýÜÃÜ1€X#w¹!¹O}ücF?õ# #·Ì#€#OOXèuXuuXuuuuuuu####u#u#u#u#Éu##u#u#######uw####u##u#uuwwwuu#u###Éuu#u######w####uL)L×Ñ”E———ÖÖÖÖÖ—E—8îøFdBñÌO7€èèOOO!OêÃH?ºt#u}ÃH¹ÝBOºÝ!€!Oºêtc²B7#¹ñ¹²òÛÉ#Œ}7!€èºœµ{hd¯Y%]ñ´öB7‹è7Œ7&ñ>&:øÖÖÖ½KÄçÀöò5ùÁ——ÖÖÖÖ——Ô4ðÐæƒªªC ¤I£Ä•/ÔE+6ÓëôôÔÔÔôUë++½½øY%âyaß[ýhÃÃO}º!w!ݹ¹O7¹w¹ÛGÛûÛ<þ­­­v•£™>ñí;5î½î-í3Àöò;øYÖÖ—Ö—Ö——Ôðæ„Í„`*¤IÄÓUsô+6Rëð––ÔÔô+ëAëÓSî_øùycaß[h?O!!¹!!!!!OÃ}¹ìGÛÂÂûfLq­­þÚÄŸÄ:™}¹}BÜt´üòc32HÜlh¯ýµ?HtÃ?··lühê#X!œh{aœ#!¹¹¹¹!è!Xè#X!!#õ“Ò##õõè!uXXuuuuuu#u#u####uÉu#uÉuu###u##u#########u#u#u#u####w!wuwuuu##u#u#w##u##uww##uu£J•ŸÑI ðôÔôE—Ö—Ö——8sE8ÖYòñOèõè!€#è!!OHuêœêÃO¹O#u“¹XXú!!€€.11ÃHœB“!OÛh]5}¹#¹!]!¹!}!¹¹#u!º¹œÛ}}ÂF_²YÖYç>>¹wO¹ÌBé>çOÌèw&ìóÛí/ÎÎ:ÀYÖÖÖÖÖÖ—Y—Ö—88EEôA(„(„`*M¦RÙÿ –ô 愃ðï4–4¨ðRRÓ/—ø_Øa@ °°´ýh?B¹º}Û}ÃÛÛ}¹ì77‘7‘Góû<<£<ŽÂddgBBBèêòùò]»[ººlý@2œtlt!H€»{hB€Ot!ÃñH?· !X!!!!X#!O!õ““uõõXXõuuuXuuuuuuuu###u####u##u############uuuu##uu#####uÉu###ww##uw##É###################ûn88Ô–ëæð UEEsE8ÔÔÔÔ88ÖåñOÃ!#èèBÌ#è€!Ý!tt!€è#u#u##耓ù€œhœ?]YcBý¯O¹!ÌÌ?Ý!œ»FâY%öŽñ}B»%íé>:ÄäKÖ-J-_ÖÖ%F3ñOèOÛL<ÎîîSK;½ÖÖÖÖÖÖÖ—Ö—Ö—Ö—ø—8sÅëëæ66A+¿EÔÔ–ãæ(„æðï44(RÓÓÓ-î8ø_âaØZ‰°hlµ[ß{?lB?hdBB}¹7ÉwwÉ7Éxqûú<<™Â™ÛÃÃÌ3ü¯B>Fyy?HBh@F?·HÜ1Ü{ÃÝ€![yO Ot!{Ö{!è#€è#XXõXXõ#!OOuõŒõuuuuXuuuuuuuu#u##u#u##u##u#uw#########uw#ww##u#u#uuuu#w€ww#u##uu##w##w######uuuu#uuþ/6+M` R6+ôEÔ8ÔôÔ888Öøç7OOè#O>?èO€O’?h?t€!O!!!#è!Ãuñl}l}ñ´{%hüœÃB!!ºÝOâ²3&¹B™_>ó<:<Kn<<>íòFFü¯?}!x&éçK88————½½—Ö—Ö—ÖÖ—Ö—ÖÖÖ——8 AA ô–E–EEÅEÔ8Ô–ðæÐðÐ((”pRÓS½5{a‰·Š[±y·l»h´}Û´d?dÌGèww77É77xGqû£™dñÌOBÃ3]ýœ{ÜHlý´l{lhØ{2H€tlܺèHO!{c{uÝ€ u !Ò!!!!!O!!ŒõõXuuuuuuuuuuu#uu#u#uÉu#uÉ#u##u############w!€#######u#u##w€#####uu#w##w#######uu#u#u#q£ÑÑÑI 00×0M”Î+ôô –Ô8——Ö3!7èè!Ì?3¹OO!êO.11êÜÃÃB!€€#H?¯dB€ñ´h¯ÜBÃÃ!uÝÃùñ»Á53&G}g´íöåT<Õú<ÄÏ>é3>Ïñ̹̹ñÂÄK——8——8½ÖÖÖÖÖ—Ö—ÖÖÖÖ—Ö—8EUUôÔ88———s½888ÔUëð ðã(” ”//ÙSîÆFü¯hZ·2[ßýܺœ?œ!º3™ñ&¹77ww‹7ÉÉ7Ggû>>™ŽB?èB?üœBh?!!H?d{!Bh´?´.ÃHOu O!!!¹ÃÒ€€€€!! BBºww#Xuõuuuuuuuuuuuu#uu#####uu#u#u#u###########uu##w#u###uÉuuu#uu#######u###w###w##uu#wwwwww!­ÕûÕ\ÑjÕ)­)))\ (ëã–ÔÔ—ÖTÂÌ!!è7ñ»F!!€OOÝOÃ1HHÃ1Ãt!u èÒ€´!Ow7Û´d´ÛœÃÃÝOHHºœÃÝÌñ5ÖÖ_Ž´gû»çå5¼ûxÄ<ç<é&>ç3?B¹B&dí;8½E88———ÖÖ—Ö—ÖÖÖÖÖ—ÖÖ———8EsEE88———ÖÖÖ——88s+s–ô ëR” ”ÎÓK;K]l"µl[?2ººÝºHd»hüÛB}7ww‹‹‹ÉwÉ7}ÛÛ}™™´Ž:d}Ì3?Od?œ´»ÃuÃ!dâa¹hu1l’ê€Ýt!ÃBtuXèõX#Ý..ttt€€.ÃÃÝ# #uuŒuŒuŒuuuuuuuu##u###w##u##u##uÉu#########w#w#w#####u#u#u###uu#w€w#uu######u#u###u#####èGqLÕLLnäÕ­­­­)®ˆMæA+E——òÌOìè!]cFÌOOt.ÝBÜ2Ü.t.€ €!HOÃÜBê!7¹Éñ¹7}Ã}ÃH!à’HÃÜÃ}´»À5²ÖÖ²Y˜™ŽÌñ¼¼ûqÆÖø»BBñç3>ñBÃBÂŽ¼;z¥sE88—8½—Ö—Y————Ö—8———88Ô88———ÖÖÖÖÖÖÖ——8EÔÔÔô++ÿR D'”p/-K˜;]dl?ÞŠ$[l€ÝÃBBœBñœñ}wèwu‹#èèèw7OxG}q£?3̹ôhñÃ!B¹!BœFFèÜ»´´ÜµÜººlÃ!Ò!BÜtèO1œŠHN’!.€XÒXÒXXXuuuuŒuuuuu#u#u#u#www####u##u##u########7€w€!w######u#u#É##wwwwww#u######u####u#uuuuuu#qxqGx:Õ­­­š 0* (AE8½TGè‹}çòÖ%ñ¹!OO!BlêH€à.€€.Ü´ê€dOñ̹¹Ûd¹BÃèÃHÜ12?ÜÃ?ñÌçÏøÖÖÖ—Ö<>Û¹&ÛG™Âö_5»>Bdü»´¹H}7&™Æ-”USSK—ø—½—ø8—88888——8888ÖÖÖÖYYYÖÖÖÖÖÖ————Eô A§”D'•”/-KKåÏlii?·µœºœà€.!ݹO}¹¹¹#èÉ##wwO7¹Owww}&>™:Bê»{ù%âý!»êX»OddÃêl?œ?à €tHO€!O!Ý1i·.1±[º´} u€XXuX‹u#ŒXuuuu#uu#u###w€!€wu#u#u##u#########www#w#uu###u##uu##ww!!!€#w#u###uuu#uu###w##uèwèGx‘ìÉ‘&JÂó‘‘Q)ÑM0*ëôôsî>!77¹óÏö5ådɹèèèõ!OºÝÒo€Ò.HܵlHOêOBB´hB€O}¹lý´iÞ°‰°Ž3Ž:KSSEs8——£J™óìììóxxgö5¯d&ddÃBñœÛ™ĕÓRR”/Ó;sE8EsEEEEssÔÔ888———ÖÖÖYÖ²ÖÖÖÖÖÖÖÖÖ——Eôð(M'M'”ÎKåå¯Ï?1ÞŠÜ?’Ã.H€ºu€#uw¹¹ww#uwèwww#wwwO}ÌÃd´œ¹1»}ÌB&ñޝ_aê€tÃÃ!OOêýý@[·?!ÜÃt€€têB.’ii[»h€u XuXXuuX‹õ‹u##uuu##### uà.!€#€u#u##u##uuuuuu######w#####u#uÉu##w€ww##############u###u#u#èw!!!ì‘ì‘77géó7‘ììLI'I (ãÔS-J&77!77L>Æ5‹Œwèè!!!# à 22êœtOõhÃ?ýÜ1?´lH?µi|°ß{öTKS-MÎ+sz8;£J<Gó&ñ&g¹Û™À3>ÌÌÃBêBñœ>d™£™<•R””'•”Ù+¥+ž+A¿A ô–ÔÔ8ÔÔ8——ÖÖÖYÖYÖÖÖÖ—ÖÖÖÖÖÖ8Ôð(MIM”ÎÆ5òhdœ’22ºÃºBººÝœÃœœBºGOwwww##èèwO!èè¹Ãñœ21ü·d¹ñO7¹ñ:öâ·Ã´t#Ò1B!Ãêµh·1?´ý11Ý €Hœœtu1ÃÜœ?€uuuuXuXuŒuuu‹‹u‹õ###u !O.ººt€€ uu#uuÉ#uÉ#uÉu#w#ww€#########u#uu#ww€####u#########u##u##u###è#wè‘wÉ7‹É7gGìw‘‹Q‘ìk××0MÓ+S-ÏéO!!#ó&T_Ï7‹#u#!èõ è .’lµ?ÃB´õÜñêŒ!Ã?ü¯F{òü@·[¯2Þ@%TKn'jÑD/Ó½s¼TJGì¹ó&GG}dÀöBÃBÃBBñÂdÂú<<''MIIŸ•””” ”RRR6ÿ ÔÔÔÔEE8——ÖÖÖÖÖÖ—8—88—ÖÖÖÖ8Ô+ 'ÓK;5ö»?2··iý?2?À€Hl´´Û¹OÉw!ww#wwO#7¹}Ìñd¯ü·´¹&ñdç>¹üýhœèõOÜh€1h¯ý€ 1ºHiêuÒÝt! ÒO#Ý€# uuXuXuu#‹u##õ#u### X#t111’t€€# #####u#######ww€#w########uuu#####w##u#u##u#u#u#u#Éu#u########u7‘‹É‹‹‹7wwÉ‹‘‹‘‘‘kúÑ M”'çé¹OÝ!è7GGç:&77èõXõu€¹Üý?N?ÃHÜ?hÜ?h»»dBœO!BhcYÖØü·H12À˜—beeÑ'Ó'/ÎKJ-BGG}ÛG}G}ÂFÖÖâÏñBÌBœññdÂ>fäIÚÑÑeeÚÚÚIÚI' D`§A¿ã–ô sÔ8E———Ö—8ÔÔÔôô8—————8+ MI'Så;øÖùc{‰[?ýœ2ºººÃÜdB¹¹xOw7¹¹¹¹}&¹¹Ãdñd»Ã}üÃBÌ´O&3c%%B´œÃêOHÃtÃHu !Bœ XOH?¯yFÜ€€è !!tXèÒ€Xuuuuuuuuuõ#õ#èè€!!!#!ÝBÜœœÃt€€€# ######uw#####www######u##u##u#####u##uu#u#######u##uÉu#uu#####7‹w‘wwÉw‘‹‘77‘‘ì\p”IÑÑ<<ñ!€ uŒ77¹}èèèO#Xu !1µl12ÃÃ?·²câ²B¹OO¹Ã3y3BÃÌH!œ]ÆÖKj'''Ñ:ÏÛ¹¹G&}Û¹ì&Ž_ÖÖÀ´ñBñdÂÂñûf\\\Õ\Õ\þúeÚÑÑIM (ÿAðÿëUôsE½EÔÔ4ã¨ðð–Ô88——8sÓ'II/K;YY_%a’¶l¹tÃÜlœ1ù¹ÛB¹7¹¹GÛññ&¹¹ÌddBºœ!¹dÌBÌŒ!ÌñB¯·FÒ!´€ÃH#!ý´ !€tBOXXXÜ@?!Òu€u€!X#Xuuuuuuu‹uuuõõè#€!OOtÝtHœ2?11º!€u# ###############€#####u####uÉuu###u##uuÉu##u#u#u#u#uu##u#u####è#ÉÉ‹Éw‘w7ww‹É‘‘‘úúIÓUð”:d}€€# ‹!7ì¹}!!èu u€Oœ’ uHÃ1»Øyü>?ò¹œwXè¹¹!ìOŒ#OXè?BÀûûÕLL)kLÕþÕLúÑ£vjÑ I`'` RR ÙžÅUÅmžððÐÐïЫ4ãôEÔ88E”IÑ”-KÖÖY²²[œ?iÜÃHºœÃœÃºH}œdd&¹}}ÛBñññB¹!!¹ÃBBññ´ñdç!èOXHl!H?!tt´²1Xè!uXu#Xu¹ÌO#õuõõ#XXèuõuuuuuuuu‹õõ##€!ÝÝOÝ!tÜܺºÝ# u€##€####w####uu#########uu##uu#u##u##u##u#u#uuÉu#u#u###u###u##è#èÉɋɋwwÉ‹‹w‘‹7óä¢/ÓU88ÔUÎ:ñO#€ÝO#wu7!¹##€# X u€€!O1ñd!ÌOÌññOw#õŒ7!7!&!èññ™ñqfJúä'”ÑäÕ/Ä-çç>}ÛdÂ&dûÛGÛJY5ü´´>f&góLLLó­LLûÕÕûúú\\×jÑ IMp ¾D RÙR Cª„ƒÐ†ÐÐæ ôÔ8E+”'/KÖÖ²¯y@’PºtOÜlº.}ºœ´™dñÛÂdÂ>&}G¹¹ññOwd´ñBB¹O!»dO!#ê?ê´´!,€H!!O!èu#€“##€!O¹€ŒõõõõõuuŒõ‹uÉ###u#€õ€€!ÝOÝ!ÝÝttºº!!€#u€#u##########u#u#u####u#u#u###u#u##########uÉu#uu#u##u#u##u###è###ìì77wÉw7‹w‘77G<E8Ô–Ô8——;¹#w€#è‹õèw#!!#€€# €€€Oº}œ?dÌBÃ&èOBçÌ´¹¹!wè¹!Œ7¹èéÌOè}ÛqÛú:LÕÕ)LííñO¹dç>>&7qåùdŽ™Âñ&gÛóóóLqGqLLLLLLÕkÕ\Õ\jÑM”Ó II¤Ú ¤M¤¦¡‚‚ÍÐ³ƒðãÔÔÔS/”'nÎÆ˜_²Fcaœl.º1[¯Ãºlô?ññ>:3Ž&¹7¹Ì¹wõèdñd»™ñ}Ãlñœœ1ºœtœHœ?¯Ü!!€ºh1!õu#!õ“#õ“#¹ÌOèõè#ŒX‹Œõ‹Œõuu‹##‹u€€€€€€ÝÝttºÝÝ€€€€€€# #€#€#€#####w#######u##u#uÉu#uÉu#u###u####uwuuuuuuuÉu##u##u##è####uì777É‹wììw‹ÉGÕ:½EÔÔÔãã–Ô8—JÛwèw#õuèwè#è€O#€!uÒ €!œdœ}¹¹!ñöc]BdB¹w#7¹ÌèèÌ&ìwìGGGóLLk\ÕLÕóóóéÂ>ñ}¹¹ÛÂg¹}G7éÖÏJdñ&ÛÛGGGGGGqGqqqqqqqqóL­Lóä”-ΕÚjjvvÈÚÈM¡ˆ‚¨ïæ‡ÐÐï4–ÔÔôR'I•í»´ý?OB1œÜÜÃÜœ?»3dÀTŽ&}>>ñ۹蹻ñüŽ%Ìè¹B?´¯l´´´1º! €?¯?HÒ!OØu!#õuuŒX#õõ##è####õuõŒõ##õuèèèõu# Ý H€êºêêºÃ’ÝXX€#u€u### u#u##########u##uu#w##uuuuuuu#uu##u#u##u######u#u##w######uèèèuGÛóìOGìwèGì‹G™ísUë((6–——Ö¼7èÉŒ#u#èè!!!º€€OÝ€#X!O¹}¹¹ñññdhF3?BOèèèèè‹è77w777ìGqGqLG­GìGL&ñBÛ¹¹}Ûg>>ç™&Û5åÀ>û>&gÛÛGGxìxxxxxG­qqqqÕ<ÄÄÄ•£\\þššvv› ¾‚„––¨4¨¨44ÔÔ–EÓ”'••ÄÄnÆöÀühÜÜBÜœÝ!œÜ?ld´»™™ŽÀÂñòâFÖhdh3d]²F´Bº¹€1´·[21dhhO€€ OOêOic?èŒ#è#“Œõõ##è####‹uŒõŒõ#w#ŒõõõuèÝ€€Hê22?Šœ11t€ u€##€#uu#########w####u#u##w#w#u#u#u#uuu#uÉ##u##u#u#u##u######u###õ##èèwóó7}>>¹Ç¹&&ì7<¥—EÓ 0*6s8ÖT&7w‹###uuuè!èOBÀX #u#!}ÃBBèÌ3ü´ùÝ!€!è!#ŒŒ‹è‹‹‹7ìxì‘x‘ìììGÌÛÛù¹¹¹ÛÂñdÛq>:;3ÛÛ&Û&ÛóGìì‘‘xxxxxxxGxx‘û<<ûûú<ûþf\vÚ Ú¾¾CÿEÔÔÔÔ––––ÔÔÔsëD'”ÎJnö3FdÝHô?ú1œÜÜœœdd™™˜å]ç>5²Y]FFºñ#Ìh3Ã!œºBÜ?llÜœÃO#€?€!BH·ÜèXõ#õõŒuu###u#õuu‹õuuõè#Xõ#è!OH€t’?’1ÃH!Ý!€€€õ##è######################ww€ww##uuuuu#uÉu##u##u######u##u###w####u#èè€#‹7¹wGñ>Ì}x7Góìó:/”I×0 RS½ÖÖç‹‹77!!èuè!O!Hê€#€!#èO}BBÌù¹!!!ÃÃÝ! €€€€!è#õõ‹‹‹‹w77‘7‘7É7É77ì¹G¹¹¹¹G}}Û&ñ]öçÛÛÂ:íGÛé}&ÛÛ}ììììxGxxGxxxxqgûqgf£Ä^Úve'p §AôÔEÔÔÔÔ––––EÔE”MÄní¼ö_Yd}º?´œHºº!ºº}BññññO&¹èuÌOè?B!O¹}Ãl»?¯{{{lœ!!ºt!ºd{Xu€õuOwuuXX“XXõõõõõuõuuuu#u#X#!HÃHHÃ1œ2œœH! u€!!Ãè#è#èè#####u######w####u#########uuuuu#uu##u###u###u#u#u#É###########õ##ìw7¹Gww¹w7É‹7‘Éx‘‘­)LÂöâÀè77&Ïüüdñ!èè!!#!!!!!€!¹¹ÃBº¹ºÃÃ..ào.t’21Oè#Œ‹7è7w‹‹##É#‹#wwèO¹77777x¹}}g¹¹Gó<éóÛ&G}ì¹ì7‘77xxxGG‘‘ìx‘ì‘G‘xqqLÄKKzsEs ––––søøø—8—8——Ö—Ô+”II'n-Ö²ÖYdOÃÃHHÝݺݺ¹}¹}ÛÛGé>ó&Ì7G¹Ì?!!»´´œÃÃd»Bºº?¯%FêO1õ“1´ê“€ X“X#!€uXuuXXXXXXXŒõŒu##è€#€OtOOºHt1Ãt ! uXõuu#!€“#èèèè######€###########u#uu#u#u#uu#uu‹#u#u##uu#u#u##u##u##uw#########õ#&G}G!}>>u‹ìÉW‘É7‘‘­óL¹&õ7Oç²ÖÖ²Ø5Fê¹7èõŒ#€#uu#w!ÜÃú!€¹ÃÃ’1P1P’’’2?2Hèèèè‹è7##ÉwuÉwwwww¹¹7¹77w777¹}}}Ã}!xì‘é&GÛÌÌG¹ìì777x7xxxGq­Gì‘‘q‘‘GqfÄSS6A+ãÔ–––s—YÖÖÖÖÖÖÖÖÖÖ—+ M'••¼¼K_²ÖÖh#Ã1ºÝÝ!ݺº}¹¹¹¹ÛLóéÂ>Â&ÛöÃçüÖhÜBldýdHOdºÃ1w#€dýýœH·€Òê»H!u“ u#€€##€€uuuuXuuXuuuuu€!!O!!OtOtHÃ1Hºu€€!€u€!##!èèèèè#è###############u##u#uu#u##u#uuuuuuÉu#u###Éu#u##u#uu#########è###èâÀñ¹77Gñ»™ÛÉ‹‹É7ÉÉ7‘‘7‘7}#õ¹!ì7ÀÖÖÖÖÖYùÏÌ#è!è!èuu#€#€¹BÃ!€€Ýº12Þ?Þ2¶PP2°hd¹Oì‹uè7www7Éuuw##è7}Ox¹¹!wwww}Ã>BOwìììGGóÛG&&ÛGììì77xxxq­ó)L)qGxxx‘‘‘xóÚŸ•RëëRæ44–8—Ö—ÖÖ————ÖÖÖ8ëMMDIJT5ÖÖø]]»ñ¹¹¹Oº}BÌÌ}}Gìó<ééçöÏ]3ââØ%d?ý´??lœÃd?OÀO2¯ýººBº€ºÃÜ1X€X€u uu€€uu uuuuuuuXXuu!!OOÝݺHHºHttOO€ÒX#€õè#XX#è#èèèè#########€########u####u#uÉuuuuuÉuuu#u##uu##u##uÉ##########õ#èèèè!™™¹¹ñ¯™¹ww‹Œ‹‘xÇ‹w‹#!w‹Œ‹xäí8Ô88——ÖÖcñ#O!õõ#€€€u€!ºÃu€€ÝݺÒ2œ1Ü1œ1ÃlÃ2BB¹wOŒ!‹!¹ww}ñwx}w#!É###ww!7ww}ÛBññ¹É‘ìGìGÌÛéñ&ÌGGì‘ìxxó­­­)Õ­­­Gqxxxxx7‘xqq\\×ÑM(ëôÔÔÔ888888888Es8–ðMMM '•:í]_Öø½n^nfqÛÛ7}ÛÛñd>ñ&ìGÌGìÌJç3&¹décBœOBý´HÃBÜ!œ?{a¹XÝ€!OHÜœœ €Ý!€€€O¹º!#uXXÒXuu!#XuOºÝÝ !€ààH2œÝ!!è#!€O!#õè!#õ!O!#õ##è#uu u###w###u#Éu#uÉu#u#uÉu#uu##u#u#u#uu####################€O¹œÛ}7™»´Ž>¹É#‹w‹‹‘77èŒõè##èóé<ÎEô4–ÔÔ——Öâñ#!! 耀#€uu#€ÝX €Ã¶2PùOºÃœ2Üœœ?»ü&Û7Û¹è‹É}ù&#&}“#u#w!7wwww}ÛB™™ñG}ó¹G}&ñ>ñéóÌLÛóóÛLÕÕ)š\Õ)kxxxx7xx77GG)Õ×ÑM RëA¿–ôô–ôãôôA~–ð6MMM¤•ŸJ¼TK—žSzž£ÂgqGÛ&>çñÌìGÌéñ&&>&7w¹ñ»yœH¹œ?»»?Ü#X´ü[t€X tu€Hºœ#Xu u u€!€!€#uuuuu#u€!!!Ý!OÝÝOHlú!###è€!!è#è€è#õO!è###€#€###########u#u#u#u##u#u#u##uu#u#u#u#u##################€##è!¹¹}ñ}¹>}}Gèw‹‹Œw‹WŒ7èXŒõŒèéJ-S––ãAøÖF&u€##€#uuuuXXXXu“ÒtÜÜ.ñOO¹}ÃÃ}´3™Àöûóww‹w7#wG>¹Œ!B}!!u#€!w!777Û&ñ™ñggg&Û&>Â>Â>>éégé>Â<ÂääÑ×Õ×\))kq­xxx‘‘xÉ‘)\ÑÑjM' Ó§RRD C M¦RUÓRIID”/;½—8—EÅU¿ÙŸûLq¹7¹&>>dGGGGìÌéd>d&É7¹dl»d¹!}»¯h¯l€B2À!ÒX€ÒÒ€!H€ u€€ÝÝÝ!€##uX#w#u##u€Ý!€!tàÝ€àtiêOO€õõ€è€!O#Ò#€#!OOO耀èõ#u#€##€######u###u##u##u#u#uu##u#u#u#u#################õ##è#õ#Bd}¹}¹O‹Œ##‹ÉÉ7‹õ#èB´33åsîÓ Ap'÷;½ø™¹õõX#èõX‹uuuŒXuº€X!úºèw¹BBÛ}¹BÂñû:>LqûÛìÛ7‹&¹Œ77u!}¹Xu#ww!7!¹¹Ûññ>ÂÂéûé&&g&™™™d<™JJŽÏíííΕ''júj þ­­­‘xx‘‘‘xL\Õ×Ñ IIÑ 0j MR¿S”'DpÙ÷——8—Ô m¿ÙpŸIúLqqxwÉ7&éÏÏççd&O>7‹è¹7ÜlüFýlh?{?œ3ÃXXX!ÒXXÒX!##€ººÝÝ!€u !uuu#è#耀€€€ÝHêÝÃlêlhl’Ý!õ#€€OÝ!€!!OÝÃO!!!!!!€u##€#€#########u#u##u##u#u#u#u#u#u#u#u#u################õ###èè€ü´Bug´dÂ]dxwww‹7‹‹W#!!Bò5_ø;KSë”II•ÀŽ&wõ‹Ò#!èu#‹u##èè}OÝݺÝ!!!7Ì&¹¹ÌgÛdn>¼ä™q<Âéöì!#uwuu!€€###!7¹¹g>™™dggg&&é™]:J޼å˜åå;;;îîS”M ×ך))­‘‘7xGgéûûL\ÕÕ\\š\ Ñ ¾ pzzb^pp÷žE—8–§(A§D¤IúþLgG‘wwGÌñTùâ]ÂÏFÀ»ç#è7!èB?ÜBœBœh´»´!»cX““¹“uuŒXuuu!€€€u uXu!€u##uè#Ott!.1Üê1ê·?°lPÝ õ €!HHÃ!H1BHtO!è#è!!7€è#€#€è########u##u##u##u#u#u#u#u#u#u#u#u#################u‹#èè€!d}Û!}}ñüBG#Œuì¹777ÌÌdOBF]öåK/Å'ä\f<™™}uuèŒõ!‹õ‹uŒõu#!ݺÃÜ’.€G}̹&™Ž;<íÄn:Ïéí¹ŒŒ#!€ÝºO¹!€€w!!Ûñd™™™J™éLÛ&gÛñÂÀöƘ½—ÖÖ——Y—ø—ÖÖ—8s+ëRM0®š))­‘xxxG}gggqq­­­k\ÈIÚ ¾IbK÷bpppDÅUÔÔA(§rCMÈjþkkkÛGxwìÛñÏÀ]TùÏñ´öÌB>?tuH»œœ!ݹ!œh}uŒ“wX“#XuXuÒuuuuXX#€O!!€#€u#€!tHOHœœ11t2!P€àÒu€!!ÝtÃÃÃêt!€€ €#!!O€èõ€#èè#€##€w#####u##u##u###u#u#u#u#u#u#u#uu################è#è#w!!Bh}!BB¹G¹¹‹#7BF¯]hdh¯ÏçÏÏ<•\‘‘GûÀÁñ#u#õ‹èèŒõõõ##€!tê?i·hltèèÌdÏâ<íéí•Ks˜÷<ó&>Gè!!wO}!ÃÃB}¹w!¹&>™™J>&&gÛGgd˜ø—ÖÖ——Ö——Ö——————8EE R j0 þ)xxGGGGxxx‘xq­))eI È IM'^b§DCC¿ž6ë¿`„(C¦¾ÈvþkLk}x7Gñû>d3BÛÛ>h?üd!€dhBt?BO#XŒ}XuXXŒX“#Œ#u#“uX €€!€!O#€!!!uu€€Ý.tt11’1.’,àX.tott.!.tH2꺀 õ€#€!!!!èu#€€è€#uu#######u#Éu#u#Éuu#u#u#u#u#u#u#u#uw################èè#è#èÛŒ¹}ÛÃ>¹w#77¹ÌÌèñc%dÌ>&óéä\äó‘7G޲dèŒ#Œõ‹Œ##!!!ÝtHº1¶?[NÌçòù5öJÏdñ5cÀÏœè7·ÖYhœ?ýÃèÒ!ºº!õd7õ#XŒŒw“õ“èŒ###!O€#u uw!¹!# 耀!tºº12Ýt2.ào.’€tHtÝtHHÃ.!Ýt€ !èè!!##!!è€##u€########u#u##uu##u#u#u#u#u#u#u#u#u###############u#è!è##è¹Bñ}Ãñ}O¹è#¹3ØùYY´ê&ÌGìóóéGÉw‘ì&Â}è#u‹õõ## €tÜP’¶2PêNi22»33â²YY5ííí•ÎKs—s¼<&óG¹¹O¹uÌB}ñ?}º}ÛÛñÂ>ŽK3ç>ÛGÛ>nÀ:nÎK½—ÔÔÔÔÔ8———Ö———8s/•'••£)kG‘qq‘xxw7xxx­fDM”RpR”p¿¿C¾ ¦¦CDm8Ô§`C¡ˆÈ® )­­qgq}g™ÀÂ&>™»»w€ñ»ddµ?F1ñ?OÒê»#Oº!€!uŒŒŒuŒŒŒŒ‹uuu!##€¹Ý€uÝ€##€!!OÝݺ1œÃHÃ’º.ººt.ºtt.HÃHºHtà!à! õ!!!èè#èè#!!!##uu€w#uuuuuu#uu#uuu#u#u#u#u#u#u#u#uw####u#uuu#u#####è€è##!##!¹Bñññ&w7èè}édÖØ{·ññO777ìì‘GÉ‹‹##¹Ì¹wõõõõ‹€õ Ý’2P.to.’l?ýyY_YÖYÖÖ—øîKT--K/Så&GéÌÌ&d&]3Ž}dB¹}Bg>ééçíT:>éÛñ:::í-E–ãã s8Ö—Ö—Ö—8—s½—½î^Úkk­q­qxx7xGqkþ£”DŸCÓ6ë+ÓC§©©r¡¦DDÙÔ8U¿ ©*ˆ› škþkqqÂÂÂŽ¼Àgñ>>Û“Bñhüa»{yõ“XOh!õO!OuX!!ŒŒuuŒuŒõŒõuõ‹uu€#w€!w##€!! #Ý1ºOtºº’Üt.€.ºº...O.OºHºÝ.!ÝÝÝ€€#€#è##€uuuu##€#è!####uuu#uu#uuuÉu#u#uÉu#u#uÉu#u#u######u##u#u#####!OOO!!œ}¹Ãd´œ¯3d&7èB&»dÃBB7#‹‹ÉwÇ7‹Œ#‹‹u!w#uŒõõèOHt.t’’PH.Hd´]ùÖYÖ—ø—Ö—ÖÖ—Ö—½î;^Ú£JL>ç>éd:TÀ5YÁÁFÂ?>B7}}&Û&é䙎ñèuuÌOèXŒõŒŒuu‹ŒŒu‹uww€èèuu!ºB1êH111ÜœBB½—Ö——88sE88888E½88—-ÛGéé<3åÖ——½½Ö;:gBB¹!}BÛ&Âä™dÂÂñgé><ää''IIIIM”6SEs888—8—————88—¥)­šL‘qxq­kÚÚ'RR6 Ô88sEÿ©©©¦m~žôô(¦¦¾ÈÈÈeþekf£ÆK¼¢:ŽgÛ™:Ž»3ñu¹º¹»?HêBºXõd “# O#èõ“õõŒ#õõuŒuõõu!èuu€!€#!€X OœºuÝ!€!€#€€€u€!ÝÝ!!ÝO!€u€!€€!!!# õ#€#€õ#€è€è€è€!è####u#u#uuuuuu#‹uuÉuu#u#u#u#u#u#u#u##########w#ww#Ý€€€Oººº¹!!è!OÌBÃÌùèuO¹¹ìõõ!O#“õuXŒ##XXŒuu#w!w!€#€ÝtOtOOÃÃÜdçíîsîÔ888Ôs+ +6Ù¥8———KJ&&çåø—8îU½Ö5™>ñ}}}ñB>™ÂûñgÛÛggé\<Ñeú××ÑŸëÅž+ÅE———8—8—8Ô8EnÚq‘xqq­­)þšj/ ÿÙ 8—Ö8ÔU  ©(©ÿ~§§§*¾*¾›vvvþkkûfúÂf™nnfg£ŽÀŽÀ²%!wO´OºBOõ€êd!õ#X#Xõõõ#uXõõuuõuuuõ!#õ#w!!#u€#u€ÝÝu!ww##u##€u€!!!€€O!!u#€!!!!!€õ#õ#è€#è€è!!!è!!!!€###uuu#uwuuÉuuuuu#u#u#u#u#u#u#u#u#u######w#w#w#è€!à!tH’HOO!!u#!¹#Ìñ#Œè¹G7‹#õ‹õ#XõuXX##Xuuuuw!!w€!#€ÝÝ!€è#X€O}&ÂçÎîëÓÓ+ãÔÔôR pÿÅ—Ö—Â>JÖÖ—îSÎÎÑK——ŽBÃ}Bñ<™dûÛGGGÛGéLÕéÕÑä<>gkkš0jCR '”ëUÅEUEEsE———8˜nûGgkk­­­þvIIÙ¿ÓC¿8ÖÖEs§  © ãrr *¦¦Èvv qkenÄÄ÷ø˜ŽÄ¼öÆù²öyñO“!œdBê»Ã#!Bœ! #ÒõX#uõ#õŒõuu#õuõuõè#u#!èè# u€€€€€€Xu###uXÒw#u€!€€!w!#uõ€!!!!##€€€€!!!OOOOO¹O!!è!uu#u##u###uuuu#uÉuuu#u#u#u#u#u#u#u##u####w##w#€w€èttH’Ü22¹!èè?ñÃÌOõ#O‹“G7#7õõ#‹““XŒŒXŒŒŒuuu####w# €ÝÝuX#õXè¹ñ&>:ÓÓ Ij' ÓôëM j\×IŸŸ-—ÖÖTöøå-''ÑJíöÂ>ñ}}}œÂÂç™JûÛG}GG‘óóLÕL×ûfgqG­k×j'M0×0Ñ'Ñ''RÅ+ÅÔ8———ÖKÂLfþkk­kj¤8§DRR§ÿÿ—Ö——Ôÿr~~ÔÔÿ`Í©`(C¦Èv\š­f£ñ™dç<™<>gÛÛG‘GGGGóGGqxxxqGóLLó­óL)ÕþjIM””žÔÔÔÔUD Ô8Ô8Se \jDmÿA`  ÔÔÔ¨=~ô—½¿³¬Íƒ ©¦¾vv­kþffþþún½ÀŽ˜ö>ûñ7w,ÝiÃO¹èu#XŒõXŒõŒõõŒuŒuuuuu#u#õ#u‹uuuuu‹uuuuu#uu#w!wuuuXuŒX##uu#w7!!èuõõõ##€õ# õ€!!!ÝÃ1œHtHÝ!ºO€uuuXuu#u###uÉu#u#u#u#u#u##uu#####€u#u#w#É###u#!!ºº€Ýtto1êµ[èè!!¹!#ŒX#!!O!#uõu‹#õŒõŒõŒŒ‹ŒŒ‹uuu#€€!!!¹¹ºÝ¹}’BÃù¹Ìd>>ñgB>>Âçdç<ñgqLGìGGGGGGìxxxxxGqGLÕÕ×ÑID”/UÔ8Ô RëÔ ô”Ñ×פ6U¿C©¡rÿæð ––¨«4Ô—8s³9ª„¡¤È þ­‘­qkkú£ö¼Æ:Ƙ<Û}!uݺ,¹!##Œ“ŒXŒõXŒõõõuuu‹u‹u#uu‹uuuŒuuuuuuuuuuuuuw#uuuŒuŒuuuuuu##!wwuuuu##õõõ€õ€!ÝtOtÜêÜHOº!!O!w##u#u#u##u#u#u##u#É#u#u#uu##u#€uuu #u#uu##wuXtO!Ý1!2l’ŠêÞi‰#XuO!#uXXèO¹¹!€èè€è##ŒõŒõŒõ‹ŒuŒXX#!¹¹¹!O¹¹!€Ý¹HdÌOOOÌ&ñé™fqqGó‘­Õìxx77xGì‘éJ¼_Æ:î——88ÖÖÁöŽ<ñ>>Û}>dJŽ™ÂûÛó¹qGxGGGGGqGGxxGLÕ\×jÑÚÑ 'M+ôô ÓÓÎ'Ú×Ú”U–ÿ¦*`ƒ¨4V«‡–EÔ–«¬9„ʈ¾È šþ­qkþfļ™£ŽŽŽ™Öù¹OuX“Ò€w#õuõŒuŒõõŒõuu‹uuuuuu#u‹uuuuu#Œu#uuu#uuuŒŒuuuuŒuuuuXŒuu#####uuuu#õ# # u€€€OOººHÃÃ1Oݹ€!O!!!€ww#u##u#u###u##u#u#u#u#u##u#u€u€uuuuuuu€w€€!Ý!€H€œµ¶tê1’1!uu##Xuè#!¹OOOO!O!€€è#õõõŒõŒXŒõuuu€ÝHH!!€è#è!¹H¹ÃñÌ>déÌéd<>GxxqLL\óG}GwxûóìGG>Žn£6E———ÖÖøÀÂñÛñBÛÀŽíÂûÛGGqÛqGGGìGxGqx‘G)Õú\\×þš×M6EÔë R+UU/I 'ÙÙ ¦*¡(„¸Ð﨨V††ƒU¿ô4«¬³ªÊˆ¾¤\­q­qfú£n¢ÀŽÄfffö˜>}XŒÝ€€XuŒ“uuŒuuŒuuŒuŒuuu#u##u#uu#uuuŒu#Œ#u‹uuuŒuXŒuŒXŒuÉuuŒuŒuuu##uuuŒu#u#õuu#€!!OHHÃHHOH!€O€!!!####uu#uÉu##u#u##u#u##u#u#u#u ###uu # uwè##€!O€œº’1H.1t’l’êtO€#è!!OÃ!OOO!!OO!!€è€€#XXXXXõõuõ€€#€!tÃ!€#!!!O¹´3¯3ÌÌ&&ÛG77xìó•gLÛ¹7¹>déGÌ}}gÂ<'/S8—ÖÖ5Ž´™33»ŽÀ]Ž™ÂûgÛ&ûÂgGGx7xGGGG­ì­óLÕ\\Õ\Õš×I”ëôð ` Ô8—ÔÅ/I Ú¦D¦ˆ`„¸†VVV††¸4ÔEã᪄¡ˆ¦Ú ­qkûÂļÁ¼ûfGÛLÛñ¹7w#}uXŒ#XŒuŒ“uuXuŒuuuuuuu#u###u#uuŒuuuuuuuuuuuuŒuuŒuuuuuuuuuuŒXŒuuuuuuuõ#õõuõ##€!OºBÃÃOOè€!##!!€##uuuu#u#u##u##u####u#u#u##u##€u€#€u#uu#€#€!ÝÝl1œÜ2.t1’’êt1!!è€è!!¹!!!¹OOOt!€!Ý!! õõõõõu##ÝÝà€€Ý.ºt!€!!€OBBñ3âòÌìGG77GGxó£•ÓÎÎí>g¹¹}gûû¹Ì}Ûgû<Ÿ”R6S—Y˜öö˜%ùööÀç:Ï<ÂÂÂÂ>Â<Ž™ÂéqGGGGGqqLkL­ó­)óL­LþûkÕÕš××RU–AM(ës88EU6¤È¤¦m*¾`͇«ïVV†¬¨ãÔ–=«ª ©¦¾Èþ­þkgûfÂÄn˜Tûfqx7qÛÉuŒuu“Xu#uŒuuŒXŒuŒuuuŒu##‹u####uu#uuuŒuu#‹uu‹uuŒuXŒuŒXŒuuuŒuŒuuŒuu‹XŒu#u#u#õu#€#!!!¹ºt¹!! u€u€!w####uu###u##u#Éu#u#u##u#u#u#uu###€#€€€# €€ÝÝ݀ݜº’2’tPt2Üà.à ¹¹º¹O!!uèO!OºtÝOHºÝè õ u õ€€ttHt.Ýoto€Ý€#OêdññÌñ¯çè7è7}>ñGéíΕ<&¹ñ&¹¹&¹¹}ñûL\I6Ô8½8øø²å_YÖ²²ù²Yâö:JŽÂ™™™™Jn™äLóLóqqqq­kÕéÕÕLLÕÕkó­ûÕL)))ÕšMM `RëÔ8Ô+ÓMj j`›*„‡V4¨V‡ÐÿãÔªrC¦Èþkqxk™£ÂÂfö¼qÛxgww7w#uèwXŒuŒŒuuŒ#uuuX‹u#uuuu##u##u#uuuuuu‹uuuuuuuXŒuŒXŒuuuŒuuuuuuŒuuuuuŒuõõ#õõõ#è€!Ý!ÝO!€#XXŒõ!#!€# uu #uuu##u##uu#u##uÉu#u#uu#u# u##€#!€!è€OÜÃt.¶¶¶·P¶µ$±?BHºº¹tO!#!€#O!uOHÃ1œHÃ!tX€#€€€!t.’H...P1’tH’êüç3d>>dé‹è7ó>™f:”-'Â<¹w}dŽdÃXÛ}gLI/ôs—½ÁøY_Ö²Á__ø5TÀí:™JŽn:Ä:ƘÎ<ûó­þqqúÚä<äLÕÕLLó­q)\)××IRôÔ888ÔÔÙ6DÑD È ¾¦*©ƒ¬44444¨¿ ã﫸rƒC¦¤evqkû™Ä£>g£ööÂxwGw‹####õuŒXŒuu#uŒuuuuuu##u#uuu#uu#‹u#‹uuuuu#uuuu#ŒuuuuuuuuuuŒuŒuuŒuŒuuu##Œuuuuuu##w##€#€##uuuuu####uuuuuu#uuuÉu#wu##u#u#u######€u#€u u€!€õHu€t1?ÝÝê11"‰‰²@·¯[´yÃH¹tO!! €õ OÝ!HÃHt€º€t!Ý €º1HH1?µ’..º…t’P2i¯y]Ï3À>G7è‹7&ŽúÑ••í•çûÛ!}Bñ™dœñuñÉûÑ'+E—¥-Ö_âù²²ùcFââò¼Ä::Æ-¼TK˜¼™<Õä£<£••<£<•Ε'<\ûL\<×Q­)0' 8ÔÔÔÔ88UpIžCM ¾`¦¸¸~~ 44–44ãU =««¸ª  (C÷bfgggñgfñÄ:Æö7‹“‹õ““Œ“ŒuuuXuuuuuu‹uu##u#uu‹#uu#uuuuuuu#u##u#uu‹uuŒuŒuŒuu‹uŒuuuuŒuuuu#u##uŒuŒuu#u#u€uuu u#uuuuu##u#u#u###uu#uu#####u###u#u######u###u#!!!#º€ÝÝ€1Ht. Hêê°l!ÜÜFÃHtOO!!#€##Ý!OHBœœdœlÃê’ê’’1œ?cØ·2ŠÞ..2µh@y55¼:òå>ìGììG&™À¼™íSS-JÂ&ÛdñdBÃw}Ûg<ÚIÎS—˜ÁYY5òòò]3öT]¼T-Tzz˜;KK•ÄJÑäJ•K;¥nîKÄ<Õó-ÎÑ))šÈÓU–UEÔ8ÔÔÓ ¤'D ¾ ¾¦ ¸ ÔEEã4––Ô–ã=ƒª CDÙ£fkxqq}gûñgÛ77Owèuõu#õ##uuuŒuŒŒuuuu#uuÉu#uuuu‹uu#u#u#uu#u#u#‹uuuuuuuuuuuuuuŒuŒXŒuuÉuu#u#u#‹uu#uuuuuu uuuuuuuuuu##uu #uu#uuÉ#u#u#u##u#u##u#####u #€##€!¹t€O€O!XtH1H’PPàà€Ã¯3O¹tOO!tOtÝÝ!!O€€!Xõ!ÃÃÝ!œµ°´1tÜ@YÖÖ%c{¶l1Üýü]¼::Tç<&ÌÌ&ñ™Ž:Lnî8î-ÛÌB&h}Û!ñ}g/8½—ÖÖÖ_òü3ÏÀ]¼TƼ--˜½½;;/-Î--nÄ•:Æ8Ö—SKz———88½;núú•• \\ vIp6+ô8Ô8U+ȤpC¦CCr4Ô88sã¨4ÔÔ–=¸ª`ʤD¢ÚfqqxxGqx¹ÛÛ}}O“#õõ##õŒ“u#w#uXuuuu‹uu#u#uuu#uuuu‹uuuuuu‹###uuuuuŒuŒuuuÉuuuuuuŒuu####Éu#uuŒuuuuuuuuXXXuXuuŒuŒuuuuuu#u#u€######w###u#uÉ#u#u###€####w!€€ÝOO!Ou !ݺ ºotêµ[?Š´a²dh¯%tt!!OÃBOttO€è€!# !tdHÃÃd[iܵØÖøÖÖÖÖØühÜÃ?üüŽŽJÄ<KJ<éógñÂÂÂû•---öJd?ç]À_FÌOw#&ÛgLggû£fJ:-î—ÖøTJ>£ggLä-íç3F⯗ùÖòù!OX!Û¹>™¼;ÖÖÖYÖÖÖYYY²YYÖ—5î88sîSîESssSÎÄ<<¼îSK8½8—8————8sK÷÷ú þš\v+ë+ÔUÙ DbpÙp`¦( ãs8——8Ô4¨ï=¬¸ƒ9`C¤Ú\kx‘x‘x7wO¹}ÃÃ!Ý€ u€#€èè##uu##uuuu#u###‹uu#‹uuu#‹uuuuuu#u##uuuuuuuu#u#uuuÉu##w#uuuuuuuuuu‹uŒuŒuuŒuXuXuuŒÉŒuÉuuuuuuu€#€####€w##uu##u##u#u######u#€!!w!OÝO#€!!€#Ý“€12µlº2!3Ö´¹!HBH1ÜêHÌH!!OOO!!!õ!#t#OHH1ÜlÏë+SÔ———Öø˜¼LgûúÄ<•Ä-½˜À<>&ÛqÂ<Ä:&d>ç3>ç5öF»º€Ý¹}7ÑÑRÔô88E8zÄgóGxÂ:<<<<£n¢Ž™gBg>éŽç<ñéÌñ&íçÂT3]»]!¹OBÛ¹>K˜Á—ÖÖÖÖÖÖÖÖYÖÖÖÖÖÖ—K//+UUÓ''/Å”Ñ×£:ŸŸ•D pësÔEÔ—88ÅbŸf­kL)jÑ”÷8—U'+UCCm r ~~Uÿô–44¨=ƒª9ƒ9ʧC¤ŸŸfûqq‘GxÉè!¹Ã1t .àÝ€õõ7#uuu#uuuuu‹uÉ##uuu#uÉuu#‹uuÉuu#uuuuuu#uuuuÉuuuuu###ww!w€u#uu#‹uuuuuuuŒuuŒXŒuuuuŒuŒuŒuuuuu##€###uuuuuuuuuuuu#u###u#u## #uu!!!¹O!¹€XOÀ 1‰·@@[¯%ÝBÏçOüçB!O!€!!t!ÒÒ!Ý€##€õ#èõõ“#¹O¹G}\'jÚM+CÓ+îÎ<Ûì¹Û>ûúä'-;™Â}ñ&égçT3ññd>dç<çñ´»Û¹}77޼Tå½ÖÖÖÖÖÖÖøøøø——Ö—8îÓ”/Óë+UëRpM'÷bž+”I×ú<<£eÚÚID C6¿–888—sÄe\fL)ej¤”88”+ôC(§rrrrmrÿ ––4¨=r©¡ˆ¡CDŸŸekgqggxqxì7è#OHt€€Ãê€èŒŒuu#uuuÉuuuuu#uu#u#uuuuuuuuuuuu#u#u#uu‹#u#uuuu#u#uu###wwwu‹#uuuuuuÉuuuuuuuuuuŒuuuŒuuuuuuuu#######uuuuuuuuuuuu#u###u#u####uuuu!O¹Bè!# u.º.Þ["?ºty#{ü´€ÌÃ!!ìt!Ýt€à!!!€èè€#!!€O!õè#èO7G}GLk\\×' ”'•;íÛG¹}qûÕ££>ÂñJ:Ž3__F]™™ddÏT5_´d3d}!Û}Â<¼;îøÖÖ—YÖÖøø½ø———½-ΔÎÓëSô6 IÚ'÷SžIÑú\úúûþþ×jIDM §UÔÔÔÔEž•eeúv­šj/E86÷ÔE”ëE¿§C§rr~m ã–44V=r9ʈʈ‚DCp££Âkgqxqq&&ì!ÃHoHlÜÝõ!wõ#uu#uuuuuuuuu###uu#u#u#uÉuu#u#‹uuuu#uuuuu#u#‹uuu#u######uuuuÉuu#uuuu‹uŒuŒuŒuuuuu#uuuuÉuu#u#####uuuuu#uuuu#u#u###uu#u#uuuݹwX##€!XÃuñý€Þ@$?2@Ü´OOlÃõ€ÃBH1êtOÝ!!!õ#OOOõõ!è€#èwuw!7q)\\Ó/'•'I:¥Æ™&G}éû­ääLq>gññd<âTFY3<Žå_>ñ¹´ÃÛ}}™™TÆT5½øÖ——Ö———8——8S/””RÓ6+Ô+”MÑjÚ^ES'Úúfúúfþkšþ×j M`6ôÔEÔÅÙÚÚÚúDÓ+ÙÓ/88p'Ù+§§ ÿ~–ãÔ4–4¨¨ïªÊˆˆˆ¾¦p¢¢^£ÂgqkqkqGóÌìOO€ êýl#õ!!‹u‹#uu#u#u#uu#uuu#uu‹uuuuuu#uuuuuuÉuu#uuu‹uuuuu‹#u#u##uuu#uuuuuuuu#uuuuuuuuuuuuÉu###É#uuu######u#uu#uuuuÉuuu#u###u#uu##uuu!€u!€#€!XX€.ººt.’[y2chÃOÜàÝêyßèõ#HlêH1t€##?3Ï´ñO!è#!!õuwÉGq‘L­•×'•<ÆJ&G&dûûLf)ú™J™g}}ÛG}ÛöÀâ:™ŽäJ:F&!Û&}dBù__;KÖÖ————Ö——88EîÎ/Ó/ ”6EU Ú×\e”Eä×ûþûûkÕ\×\ ×0 *Më–Esë/'júÚ•+EÔÙÅ6EÙ'MU8 Ù§rr ~–––4¨¨¨¨=ƒÍˆ¾È¤pž¥z£úfffúkqóé&¹!!!’lÜ!!è‹uuuu#‹uuuÉu#uu#u#‹uuuuÉuu#uu#uuuÉuuu#‹uÉuuuÉuuuuuuuÉ#uuuuu#u#u#uÉuuuuuŒuŒuuŒuuuuuw##uu##uÉ#uuuu#uuuuuÉuuuu#uÉu#u#u####u##u!w€OO!!Ý!H2œto.Py2Ül2l?àÒŠ·@2?€#õOH1ÃHtBHÃl´ü%âF3çBBÌOHO!¹!ww77GÉóGóíäÏ-:ÛGñÂgLúÎ;S˜¼Jdû&ñÂF⻎ñ™éìçö&¹ñBñ¯]]3::];ø—Ö—Ö—888EEU+ÓÓÓÓ' 'Ó6IÑ×\vK¥'\þLLgkLLLfúך) +¿+Ó e\še”6¿++Ó'””'I¿8EEUô~mR –44¨4¨Vƒr¦¦M¤p¢z½˜¢^£eeþkÕÂ&&Ã1ºÃH€!X##u#uuuu#uuu#u#uuuuuu#uuu#uuuu‹#uuuuuuuuuu#uuuuÉu#uuuuuuu‹uuu‹#uuuu#u‹uuuuuu#u#u#u#u####uu#uuu#u###uuuuuuuuuu#u####u###€u#!º!€!ºOÝÃ2#.h [µ€‰´icßýoN?P.õõ€!€#àHt’BlòcÖÖÖøùââH#€wu##7w7Gqéä<äíg}Ûûggä^˜8KÄgÛ77ñ™d™ö™™™>Â<ééÏåâéGÌñdñŽ»FTåø—————8ÔÔEôUUUëAë6 IÑM'\\þšÕ\•ŸäLLóqLqqqLþú×Õ\š0×j'”pÎÑÕ)­)Ú/sÔÔÔÅ/p”'”Ù8888¿–~(§ ô–4¨¨¨V¨ï~(bpp^z8zz^£e\úšþfûgÛBB1tº€#“èè#u#u#uu####u‹uu‹uuÉuu#uu#‹uuuuu#u#u#uuu#uu#uuuuuuu#u#uuuuÉuuuu#uuuuuuu‹uu‹uuÉu##uuÉuu##u#u#uuu#uuuÉuuuuuu#uu##u########€u€# OÃ1BÜœ1œl1€ºœº´?Ã.?N±iàܺèõÒõ€€!ÝOœý3]Y²ÖÖÖYYYYa?!#è#w¹!Œ¹wGóóé<äÂä:néÛì&éú-;zK:™::gdû}™}>Â:íJéíYò»»dñ¹»ø²—Ö——8E88ÔsU UôS++ÓMÑÑ))­)LLeó)óGG‘GGþfú\×)ÕÑ••IÕ­­G‘û6ôE8 /6DÅsEUÅÔ¿ §C¿–Ô44¨V†VVïï~§ž¢pee^^¢½¢^ÚŸ\vúúÂñ}}BºHOõ!Œu#uuu‹uu#uÉuuuuuuuuu#uu#uuuuÉu#uuu#uuu#uu#uu#u#u‹uu##uÉuuuuuuu#u#u#uuuuŒuuuuu#u#uuuuu#u##ÉuuuuÉ#uuuuuuuÉuuuu#u####€w€#€##Ý€u!º.Ýœ1’œ’œPÃý’œ.?ÝÃiaý±œýœuõõOÒX€ºB´¯TåøÖYÖ²±%yú´´!w!7¹77Ûä&&óé<&óÛggÂúûJÚ^Ö—½T:Á>]Ž™Â:ûJ:<é>ç5ÖÖ²3ÌBd]ùÖÖÖÖøø——8sUEô ëë ô++s /'I×)­‘óLqG‘‘‘‘xxxqþú£)­)\ÄÄJÕóqxxqq\IDRë/pÔ8EEEÅ÷÷C§p§–Ô4–4VV¨¨V Dppb£eþee¢^ŸŸÚŸÚÚ£ŸäGìó<&&óìgÕû•Än8½Ön•g™d:3_ù>äÛGóÌ3ü3?3´´´Ïö5Y²55;½½sUU+ëÓÓëëUôEUÓ•\L­‘‘‘‘xGxx‘7‘7‘xxL£úqGGLÂäqGx‘7‘xGšÑ'”ÓÙÙžÅÔÅž88¢” 6Ù Ô–¨4V¨¨ï=§¤D^ŸeþþþfÄ÷¢þÚe£Ä™Â}¹€BOXè#Œ#uuu#u#uuÉu##u#u#uÉu##uu#uuu#u#uuu#uuu#uuu#u##u‹uuuuuÉu##u#uuuu#uuuÉuuuuuÉu#uuu#u#u#Éuuuuuuuuuuuu#u#u#u#u#u#u#u#u#w!ww!€€!ºX’Ã.t .Pýµ»µ?Ýl»·ihOÃB]Fñ¯cèèÌù!Ïíçí½Î<•ò{²@hÜ1»3BÀ#!}Û&>>óìì:™ûû<<-••-——îäéŽ<ö:¼n;å>™ÂóGììBGBOdd»»´Ïü]À]öÆ;îUU++ÓRÓÓÓÓë+UÓ•óì‘ì‘7‘‘7‘77‘77É‘xqfÂfLxGìqGó}qx777w77xšj”ÅEÔ—žUb'žsb'DA¿6 Ô44¨¨¨=rC¤ŸD÷DevkkeÚ÷ŸÚvvúŸ™>¹wX!€X#XŒ‹u#uuuu#uuu####u#u#uÉu##u#u#uu#‹uuu‹uuu#u#uÉuuuuuu‹uuuu#uuu#u#uu#uuuu#uÉuuuu#‹uuu#uuuuuuuuuu‹uuuuu#u#u#u#u#u#u#uu#wwè€!!!X.€ÃºÝHlPtPPÃÒ.œ{ý?!ºB´dñYY¯!ç!BÌÌÌñé>>TÓ••:çF?2ÃñÜ}ww¹ÌB&&&&GGgÂíŽÂfúJ£<½—Ö;<™öJŽ™<J¼ÁTK>77Ì!#Ì´»¯»?ç™™™Ží¼KSSK+6ÓÓÓ// ÓS88Æqx‘w‘wÉ7ÉwÉ777‘xûqqqgqxx‘xx¹Gxxx7777777xÕE8sôÙÙDÚ'b÷IDÿÅ¿ –Ô4444¨Ð `¾¤Úž^^Ÿeev\úŸÄkkþff}wXuXu€uõu#uuu#u‹u#u######u#u##u#uÉuuu#uuuuÉuuuÉu‹u##uu#uuuuuuu##uÉu#uuuu‹uu#u#uuuuu#uuuu#u####u#uu‹#uuuuuÉu#u#u#u#u#u#u#u#uèè#wwO!#ÒÝàœ@¶ŠºPœÜPµý»dœ»%@Y¯Û´À™Fddö¯]òòFÏçñ&>d™<>Âd™:-+/ÓÓÓΔÎ'””6Sî¥çdöc_â²FÂññ><ÄnΕÎ/ΕÑII'£fGG7ÉÉw##ÉwwÉ7wwx}gqÉÉÉÉÉ‘7‘xxx‘77x7‘7É7‘w)䕞¥¿U8'ȤjŸpe pm¿ž~ ï44¨–ôÙDvj£¤ŸÚfþþþfþqxÉÇuuuÒ wuuu‹uuuu#u#uuu##u#Éu#u#u##u#uuuu#u#u#uu#uuuu##uÉuuuu‹u‹u##u#u#uuuuÉu‹uu‹uu#uu#uuuu#uu##uuuuu#uu#uuu#u#u#u#u#u#u#u#uu###u##!€ºÒ.ÝPÞ¶¶PP"N¯h3œ¹Üý·]üÛ¹3öòò_²Ö5öÏóì)éÑÓ”øT´´·Þtœu#€èè!OGÌdçé&<3À¼<LqqúqBÛgû<Ñ<'•••JeÑ××ûéx7ww###Œ‹Éw7ÉÉÉ7x7ÉŒÇuÉÉ7‘7‘xx‘x‘‘7‘77‘‘‘óäúeÚÚDU¦jÈIM” pRž¿Ùÿ¿r~ÿã m÷eee¤ŸŸŸ^ÄŸekfúþkÉŒuŒXX Xuuu‹uuu#uu#u#u####uuu###u#u##u#u#uu#uu#uu#u#uu#uuuuuuuuuuuÉu#uu#u#uuuuuuuu#‹uu‹uu#uuu##uÉuuuuÉu#####u#u#u#u#u#u#u#u##Éèè##è€# H1iº.¶.o…NŠÜ¶lBlYyœB™w¹d_ÖÖÖTò;øå;íLóó)ÑÑ';—ò¯·1HÃÜýºBñBÌBBÏÏ´&&éÂÀ¼øø¼ŽÂLÕó&<ó•-í<<ì>̹}O#?´œœºÛBÃÛÛgñÂÂBg¹Gg\úÄ£f)Õ×\LqG77#‹##Œuu‹#ÉwwÉÉ77ÉÉwÉÉÉ7É7‘xGGGxx‘‘‘ÉxxGL\k­ÕvvvvIÚŸÙÙΞDRžmmôEr§r©rÿpp¾ÚvÚŸbD¤ŸD¤^Ÿ£kkq7ÉÉ##XX#uÒuÉ#u‹uu‹uu‹uu#u#uwu#u#u###uÉu‹uuu‹uuu‹#uu#uu###u#uuuuuu#uu##uu‹#uu#uu#uÉuuuuuuu#uu#u#u#uuuuuu#u#u#u#u#u#u#uuuuuuu#uuèèèè耀u’ÜiÞàl Þ‰œ2l[1d?ÃüýOœœdd3d»´aK—î½——8—K\ä××í-YÖ]ü»´BB%cl??lÜh%â]çgLóû:TŽT¼:LgLäÑ-&é<ÂJäíç&¹ºtœdœ}BÛ}}}gñ>f>ûq}GqqqgûLÕÕûfúú<ÕÕÕgqqxxÉwÉuÉuÉu##wÉwww‘ÉÉÉÉuÉÉÉxÉxx7qg‘G‘7xx‘qfgLÕÕþfúþv£^¢z½ÅžÅžmmm ~r§rÿ pÿpDÚȤ÷pD¦DŸÄûÉwÉXŒXŒuuXŒuu##Éuwwu‹wwuÉuuuu#wwuuÉuuuuuuuuÉuuuÉuuuÉuÉu#####uÉu#uuuu#uuu#uuuu#uuÉuuuu#u#uuu‹uÉu#u#uu#u#u###u####uÉu#Éu##wwwuu#wè õҀ݀.€ttoto.….’‰°1t?hý1lœ@´¹Ž]_<<•-;Kî8îî'JÓ×ÑK½;TÀ»B¹B¹Û´¯h‰y{·Fyü_:éLf™ÀÄÆÆ:éìóóóø•Â:Äçä<BO!!ݺ}œBÃBÃ}}ÛÛgñû&gqGGGGGqLqqLLLûffú<úLGx‘wÉwuÉ#u##É##wÉwwÉ#ÉuÉÉwwwÉw7xfB¹ÃO»òh»»·»ñ>¼-JÕqûfÛ™™fGìóéL:-îíŽÂé<Ï>çÛ€!ººÝÃBB}Û}¹}}}ÛÛ&ÛÛqGGxxGGGGqGqÛLLû<<£äÛw7ÉwÉ##uÉu###ÉuÉwÉw#‹É#Éww7uÉxg<Ä™úLxGLú:KÄLkþLûfŸ£ŽŸ<£Ä£DpŸD§bÿÿ – A(DCpDŸÈ¤pm¤CÙŸúf7ŒuŒuuuuw#uŒuÉu#uÉwwÉuwwu##uu####uu#u#uuuuu#uuu#u#u##u####uÉu#uuuuuuuu#‹uuu#uuuuu#u#uu#uuuuuu#u#uu#uu#uu#uÉu#u#u#########õu#è!è!€€€à1¶1¶2N|" Z µ1[{œi·yý´ý2@·B?ü²cF´écçéÕéóGÕäJ-<•S•ä-½T¹ÌèO€´h»»lBññÌéçíSS+ÎeeúqL­GìLLÂLìJíJéÂJí:»ºOº¹}Ã}º}¹7¹G7GGÛÛó}GGxxxxxxGGGqqÛqfffûqx‘77É#ÉÉu##ÉuuuÉu#u‹Éu‹#Éw7Éw7xg£Âóxó>ŽíçÂ7}ñŽññBÃ1ºÝx!!!!7!¹x77!777wwÉwÉwÉ77wx7xxxGqgqqqGxÉ7ÉwÉuÉuÉuŒu‹ŒuuuÉu‹#ÉwwÉwq}qÛqqLqqgfûGGLfûLLþ™nnŽÄŸn¼¼n÷¢¥^DpD¤DpD§žÅbDppŸeŸ¢žž¤Ù”Ú£kŒÇuu‹uuuuu#Éuu#uuu‹u‹u‹uuuu###uuuuu#uuu‹uu#uuu‹#uu#u##u#u#u#uuuuuuu#u#u#uuu#u#u#uuuuuuu#u#uuuuuu#ÉuuuuÉuuu#uÉ#u##uw#####€#€ ÝÃP2µi|2ŠŠêPH‰lNHœœ[yFýœ¹´?¹lFyÜdýy?±ý¯}¹7‹É7GGGÉggJÂf£û•'Jå—ølüê?BÌÌ&dJÏí”'/ ÔÔ8USSîJóéé&ÌG¹ÂŽÀÂç&&¹d}Bœd?ùÝ7!7!w77w7w7wwwÉww#ÉwÉÉwÉwÉx7¹xgggLqxxwwÉwÉ#uÉuuÉuuuuÉ#ww#ÉwÉ77xÛggÂeÂÄúûþ>fLqÛ‘xkgûf££ŸÄŽÆ½¥n^^bzbpDp¤DDŸpžbpŸŸ÷¥ÅŸCúqwwŒuuu‹#Éuw#uuuuuŒu‹Œuu‹u‹uuu##uuuuu#uuuu#uuÉuuuu#u#u##u#uuu#u#‹uŒ#uuu#‹uuuu‹uu#‹uÉuuÉuuuu‹uu#u#u#u#uuuu#u#u#u#Éu#####€ # ݺPP¶Š[°°Þi‰‰[2ill@ßü{F@¯h?ñdBhÃ3B´lÃ{1ºGìGÛ¹77G77gxqxqÂþLóJÏ]â¯ç?¯hêOÌÂñäJÑ× ÓU¿ÔÔÔsJóÌéìÛ&Û™JÂ7:ŽBìõG!ÃBÃl?Ã}¹¹!!w##wwww777wwwÉw###Éwww7wxxGgûûgG‘w‘7É#É#ÉuÉÉuÉuÉ#www7www777xgLûJŽÄ¼:úgLqGxxq‘qûþûJ^Žef£÷Ž£^^¢Åb÷pppDDDŸŸÈÚŸDŸŸpeg‹ÉŒuuŒuuuu#uuuu‹uuu‹#uÉu‹uuuuu##uuXÉuuuÉuu‹#uuuuu#u#u#Éu###u#uuŒuuuuu#uuuuu#uu#uuuuuuuuuu#uuuuu#u##uuu#u#uuu#u#u##u##€##€ €..P¶PPËÞ1PÞi°?@1{Ül?cdÛBddâ»»¹À{y{º#Ãl?²Öù:ûÛGÉ7ÉwÉÛxxxqxLxóGç:Y3üd´ç»ý3lOOÌñéäÕÕIëÓ++s—í7ìçüññ™™&¹wO¹}ºÃœ¹}¹w#w#wuÉ#wÉèwwwwwèwwww#É#É7!x¹xq<ÂgGG‘ÉwÉwÉwwwwŒ‹Éuuu#w#¹x7Éwx‘xqûfgf£n/TÄqÉÛûqqGqggûf£ff£Ä£ÄÄ^z½zmp÷ÈŸ÷eDÈÈeevveDŸIDÄqŒuuuuuuuuuuuu‹uuu‹uu‹‹uuu‹u#u#uuuuuuu#uuuuuuu#u#u‹uu#uuuuu#uu#uÉuuu#‹uuÉuu#‹uuu#uu#u#u#u#‹uu#uuuuuuÉ####uÉ#uuuuuuuuÒu# €..àP"‰|ŠPPÞµŠ€PܺœaFêBd´´´FÖ?»c²´´ÃhñÖ5___>ñÛ}x¹É}w¹w7Éì7GÛÏòåòc33´Blýh?BO¹Ì}ó&L\I'R /K:ì7ñç>>d™™ÛBddB}ÃÃÃBú¹Ow##wÉwu‹###‹w‹wwwwwwwwwww77¹¹Gg™ÂŽ™ÛÛññB¹ÃBBÃÃBù¹w#É#w##Éu###É##w##wwwwwwww7xx¹Gg<ÂÛGx‘wÉ77É77777x7Éwwwuw77xx‘‘xqqqLL<¼;½q‘Gq¹‘}Gq}LgfÂÂÂe£Ä^Æ¥z½—8Åž¥m¦bp¤¤¦DDŸee¤ÚekÉŒuuuuuuuuuuu‹uuŒuuuu‹u‹u‹u‹uu#u#uuu#u#uuuuu‹uu‹uÉuuu#u#uuuuuuu#uuu#uÉuu#u#uÉu#uuuu#uÉuu#uÉuuuuuuuuu##uu##u###É#####€u€Ý.º12PœÞ¶…P¶¶’¶1¶.12µh?h¯Fc¯ñüÃŽ?Àcý#´F»]_nöTÆÖÖâ¹7¹¹7¹¹wõ#OÌ}G&ÏùòB!1d???1}}ñ>éLó­)\jÕÕ<ÏÌÌñddÂdÂ>™ññB!€XÝ1BÃÃHO7w#u##wwuuuŒ‹uuuuuuu##ÉwÉ7ww7x¹G}fûqGGxx7‘7777wxÉ‘x7wwwÉ77GóGìGLþûûLf<^K;¥nûxggxÛG7xxgÂÄŽÄÄÂfÄÆ¥˜zz½—s¥žžmpD¤pÙ§D¦ŸCD¤ŸDI\‘‹‹ÉXu‹uu‹uu‹uuuuuuuu‹u‹u‹uu‹u‹uuu#u#uuu‹#uÉuuuuuuuu#uu#uu#uuÉu#uu#uuuuu#uuuuuuuuÉu#uuuuuuuuu#u#u#u#u#u###u###u######Ý€Ý1Ü22N22Š|"жŠÞ1ý@ß·»»üüüc´¯¯c¯!d!´âB&´™ü>ñ¼J޼:ÁÁÁ]ñw!Ow!¹œÛ}Û¹7Géé&dòåö&Bœd»¯]d}}gñgqGéûÕÕ)óéçBñññÂdÂ&>ñB!!€#tBœBÃO!wwÉ#É#w#ŒŒ‹XŒuÇu‹u‹ÉuÉ#wwwÉww7xxGg}xxx7x7x7777xìxLgGw‘!7¹¹gûLóäûkókä<÷˜K£Ž¼¼Äú£¼½˜ÁÁ½8z¿zCDppCpb§§CDCDŸ¤IIþ‘Ç#uXuuuuuuuuuŒu‹u‹u‹u‹#u‹#‹#u#õ‹uuuu#uuuuuuu#uÉuu#uu#‹uu#uuuuuu‹uu‹u#uuu#uÉuu#uuuuu#u#u#‹uu#uuuuu#‹u##u#u##u##uu####€ à’œ1P¶l….’ŠŠPœ¶µµ·[[»ý·ÜHcüýºñÃ}œd#B!}Bœ¹#ŒŒñÀõŒJÆ•:½Yö37OÃ?h·üüñè‹ÌìG<åâÛñ»œÛG}ÛG‘GäÕG‘ÛÌñÌOÃñBñÂ<>d}¹ÃÛú.ÃÜldB¹!7ww#wÉ#w#w##É#uuu#uÉ#wwÉ#ÉÉwÉ77¹xÛqxGx777777É7Gó<<éx7xx¹q&ééL)Õ\fÕ­L•ÄJÂÂÂÂû}¹xx¹Gg™¼Æ˜¼¼¢˜zz¥žÅmp¦¤CCC¦(`¦¤DDŸ¤ÚŸ×‹ÉuuuuuŒu‹u‹uuuuuuuu‹#‹#‹õ##uõ#uuu‹u‹#u#u#u#uuu#uu#uuuuuu#u#u#uuÉuuuu#u#uuu#uu#u#u‹uu‹uuuu#uuu‹#uuuuÉu##uÉu#####u#w€€ .ºº.tµ?’22PlŠh·BÜœ?´êF´´º´¹€}ùœÃù€#lè7!ŒÕ¼--ø5TFå´Ìôlü?hFBìÌÂóÌí5ûg&Û}ññg>¹Gxx‘xeÎóìÛ!ºOBñ>>é&>ñ7è}B1¹1œ2?lÃ}O777wwwÉ7www!wwwÉÉw#Éw#ÉwÉuÉwÉ7xGÛqG}GÉ7É77É‘¹ÛJí•äGGG¹Gqgé<ÑäÄJúó­ÕqÕ£nn™™™}G¹GG}g£™^˜z˜¢¼Æ˜zzK÷bÅ¿CȾD¦¾¦¦¦¤¾¤¤DڔёÇwuuuuuÉuuuuuu‹uuuuu#‹#‹#èõ‹#õuõ#uuuuuuuuuuu#uuu#uu‹uuÉuuu#uuuuuuu#uu‹uu#uuu#uuuuuu#uuuÉuuu#uÉuuu#uuu#u##u#u##u##w!!ÃPœ¶ÜP1PºP..o1?Ü’llýld·h?œü·»?¯ü@»üB»€#ºñh{?uX<Õ•K:—T:dâÏtdBÜ?ÜêhGé>>¼ù™éBÛgdÂññGx7‘7q™Æ_:>GñOOOBÃÃÂd&Gì¹&OÝB’B.œœœBBÌ7¹!ww#wwwwww##w###‹###‹uw#ÉÉÉ777GÛq}q}‘77777xó><í/<óÛGxÛggä•ΔJú­­û;nÂ<ŽŽÂgÛ¹x}}ûÂę£n^¼÷Ƙ¥Æ˜¢DŸ§ b¾¦C¦¦D(pD¾Ú¤MIpI‘Ç‹uuu‹uuuuuu‹uuuuu‹u#‹##‹#‹#õ#‹õ#õ#u#u#u‹#u‹uu#u‹#uu#uuu‹#uuÉu#u#uuÉuuuuu‹#uu‹#uÉu#uu#uuuu#uuuuu#uuu#u#u#u####u##w!!€tºt’’œºlNlN?i¯a´ll?´œ€´BHF»Ãl{%œh·¯œ´Öa{œ?ô»qÕ<¼¼Jçíñdç̹BÃÃB´ÀçÂdä&<öödÛÛ}ñ™]:ŽÛxÉxÛqöüñBO¹B>dé¹ñHB??[œ2?dÜêB¹}}}7wu###É#ÉwÉwÉ#ÉÉÉÉÉÉ‹É##7x7}G}x¹gÛwx7ÉÉÉxgJ-K/äÕóGqGg•/S6”­Lú¼^™f£Ž>¹¹7¹}qÛû£££Än^b¢¥¥÷¼ž¥žDpCM¤(mpppp¦¤¾¾ÈÈM'Q‹#€ uuuuuuuuXuŒuuuuuu##õ###õuu##õ#õ‹uuuuuuuuÉu#uu#uÉuuuuuuÉuuuuuu#uuu#uÉuuuuuuuuuuu#uu#u#u‹u#u#u‹uÉu####u##w##u#!ºÌÃÝ !HÃ1.º1’t"ii·?µ?ÜÜúlÃ1œ1Ý!œ!ùý´¹h{º!œÃ?Ou#tXºýäììéé>éñ&OèìBHBBOÌ>ñÂé&™™ñq´Ì}ÆÁFnÛÉÉwÛÛd¹Ì}ñddddñO»¯hl2œ1œÜdlddñB¹¹}¹7wwwŒuÉuwÉww#Éwwwwww#w‹‹7!x}}G¹7¹xw¹x77xGÄ-ÓÓ'äqxqû:ÆSîES/'•ú­qûú™<ñÂÂÂû!¹77xÛûfúeÄÄ^b¥¥¢ž¢žžbžbbpCp§mm^p^DȾ¦*CD‘ÇŒ u#uÉuuuu‹uuuuuuu‹uuuuõõ#‹uõuu‹uuuu#u#u#u##É###u#uu#uuuu##u#u#uuu#uuuuuuuÉu#u#u#uu‹uuuuuuuuuuuuuu#uu#u##€###€!ÃHOH1’ÝÝÃܵ2N$œµŠHB2€œ?·?2!¹·ltH¹ºB#ÒhlûuÝ#B??€Ý»2Ý<ú™úä<&óédñÌ&OOÃñ!7OìóOìéÌÛûqB¹>}ç»F:™Âg¹7ŒÉuBºBÌd´ddçdÌO#êlêêll1œÜlddÜñ̹¹7!#uuw‹uuÉw#ÉÉuÉÉwÉwwÉ‹Éw7g>ûñG¹G}¹x¹w7wÉ7xLÂíÓìqqLnîzÅE /”•Õóqļn™Âg}¹}}}O¹gfgf£b^Ÿ£n¢¢ž¥ž¢D÷ÿ¿bDDCCbpppC¾¾¦¦C QÇu uu#uuuuuuuŒu#u#uu#uu‹#u#u#u‹uuu#u#‹uuuuuuu#uuu#u#uuu####uu#‹uu#uu#u#u#u#uuuuu‹uuuuuÉu#uÉu#uÉuuuu#uuuuu##uu€!OOÝ.Ý€ÝÝttêt1’tµµºhlaÜÝ1ý´´ýºd´1}œX!ÜOBÝÃB´l?€1?€¼ûx77&ÛGññ̹BBèBÃÌ!¹ÌG&é7G7ÂTxBBdñ<ùÀûÛGwŒwèÃÌÃÃBñ&ñ´»ÌèBO€!Ãêœ1ÜdlldB¹xOwÉuÉu#Éwww#Éu#ÉwwwÉ7w7!ÉOgñBg}¹¹g¹O}w¹7xxGÛé••óóÕûfSS++/”Ä£qLJ:Ž£™g}ÛÛ}}ggfg££Ä¼¢^Ä£Ÿb¥ž¢D¤msÿp¦¤¤¾DpCDC¡¾`D‘ÉÉ X##u#u#uuŒuuu‹#u#u‹u#u#uu‹õ#uu#u#uuuu#u#u#uu#u#uÉuuu‹uuu##uuuuu‹#u‹uuu‹#uuuuÉuuuÉu#uuuuuuuuuuu#uu#uuuu##€u#è!OOtOÃ’ÝtÜŠêêPê¶11P?i[ºÃœÝ?HÝB?œÜ{µÜ{»HººHÃBl21œiyy{·l!?tÆ&xGìG¹Ìñ7èOOBdHBOOO&éBçÛ&7Ûg}´d™>}xÉu¹¹¹¹!Ì!O¹¹ÃÏBOêO1꺺œÜ2dÜÜB}º}¹¹O!w#É##ÉwÉ#Éw#wÉ7wwwx7w7>ŽÀÏ}&}¹ñ¹77¹7GqéJI)Léļ¢Ó '•J<äûqqGgggÂÂñÛ¹Ox&>ûûf££ÄÆ¥Æ^nÄŸe£pbžžDpÙs–pÈCÈMC¦¦((©¦¤QÉ# Xu#u#u‹uuuuŒuuuuuuu#õ‹uu#uu#u#uuu#u#u‹uu#uu#uuuuuu#uuuÉu#uuÉuuuuuuuuÉuuuu#u#uuuuuuu#u#u#u#u#uuuuuuuu#uu##€è€è€!OO€HHtÃÃHê?‰·{Þµt.l2ÜÝ·¹ÝÃ1BÀu€ÝHt?i1€ Ãú1ii@Üýa²2ºÃÀxŒ7ÌÛ¹ÌÌèOÌ#´d»33Ïç]TJ>ìÉÛÂFÏh»&™>ö˜Àñ¹ÛÛwœºèº¹#!!O¹Bd&¹OOHHÜ2œœœB}}¹¹¹}¹!wuuÉ##wwwÉww77777#7GdÀFF™»ÛÃgÛ}xGÛÕ<äÕLLLû•¼Ó/'MJ<äÕqGxg&gÛ¹777#wñÂ>™ÂÄ¼ÆÆ¼¼ŽŸŸeÚÚŸbm÷D¤mUmDC¦¾¾¦©© r„¾Çuu uÉuuuu#Œuuuuuu#u‹uuu#uuu‹uuuu#u‹uuuuuu‹uuuuu#uu#uuuuu#É#uuuÉuuÉu#uuuuu‹#uu#u#u#u#uu‹#uu‹#uu#uÉu####u#€#è€#è€!Ot??êttt11H2Nêi@[2º»´ ÃÜݵ·œ!ºœÝݺ2Ãl1Ãiiœ?»Ø±ylºu?@€µñ¹&Fü&¹OOœdHtêdÝñ»´&>_òç&>Àò»3ññdÛ>FÛ¹Û´ñ?œ¹O!èOèO!¹BñÌ!BO!tÜ1B’ÃÃÛBÛºO!O¹}¹¹ww!wwwww7w777¹¹¹¹7ÛñÀÀ™òcFâcü3™û}qg<<<ÕéÑÄÎ///””J<<ÂéÛqGgñ}}xw7w#7&ñfÂÄŽ¼ÆÆÆ˜¼£££ÚŸ£Ú÷mDÈpm¦¤`*¾¡C rrƒ ¦QÇu #u#uuuuuu‹uu‹u#uuu#uuu‹uuuu#u#uuuu#u#uÉuuu‹uuuuuu#‹uuuu#uuuuuuuuuu#u#uuuuu#‹uuuuuu#uuuuuuuu#uuuuwu####w€è€€!è!OOHHêlýy²²[Ý[’Š{22œÝÃtœýÝtÃ21[µ€ß?1Ü{lœ·@i‰»l.ÜB€¹´[·ÛññÛ>Ãdh·ÜHêd´ñ>Â5Á:>ÏÀddñœñ&ñg]ö´¹}Bdº!€#!èOÌÌBñÌèBHHÃÃÃÜÃÃ}º}}}!7!!¹}}}¹}¹¹7wwwwww7OG¹GÛ¹ÛÛ>33¯5F5%¯ö3ñd>}7GgJ<:În/ÎI''I<<Â<ÂûG}g}G¹7‹#uw!x}Ûf¼¼ÆÆÁø˜ŽeeþeŸbÙž¿÷MC¤¾¦*¦`¦ =r„ Cš‘ÉX€u#uu#uu‹uXuuuuuu#uu#u#uu#u#uu‹u#uu‹#uuuuuuuu‹uu‹uuuuu###u#u#u#u#u#uuu#uuÉuuuu#uÉu‹uuuÉuuÉuu‹u#uuw##w##è€èè!!!!Ot€#!!!’l12ti‰ýH1’ÊÃi2à l??lº´´œtlНPÜ2iý·lÜ’€?l»Üý2{2Û¹èBB€ÃœºÃ1BtHBOÌd>íç:3òç»33»™B}ñ}dwÏ»“ÜÃÃO#€}ÌÃBñBÃBºÃœ’ººÃœBÃ}!w!!¹}Ã}¹}B¹ñ¹7Û¹77Û¹¹¹¹Â}ÛñÛ¹™À3ö²ùò5ÀüŽÂñ}xGf<KíJ-ÎK”'IÑä>>>}7GÛ}}x!Éu‹7ìOGg™nÁøÁ˜n™£ef¤ŸŸŸDDÙžp¦¤¦¦¾„ r==¨ïÿM‘Éuu#uuÉuuuuuuuu#u#‹uu#uuu#u#uu#uuuuuuuu‹uuuÉuuuuuÉ#uuu#uuuuuu#u#uuuu‹uuuuuuuuuu#uuu#u#Éu#u#u##u#uÉ#uu#u#€#è€OOOOtH!XÝ݀݀€.2HtXŠÜ·Üý·œ.œµ1ºl1µil€l’Ý?@@{·µ@[€i¯±c%»t¯@è!ÃBÜ#èºlœÃ1l·è¹Ï]öö]>d™3FddÛ´3BÀh¹ºuBB€uÃl?¹HÌÌÃ&O!¹ºBœ1ÃOÃÃÃÃ}¹}¹w!¹¹}º}¹}¹ñÛBÛñBg¹ggñ>w&ŽŽ&&dÏÏö3òù]´ñgGGgûŽTKK/ÓKÓÑäé&g&ÌG¹wwwww##u##77}û™Ž¼Æz˜˜¼Ž£eev\Ú÷bpDCCpCp§¦``(~=peG#uuuuuuuuÉuuÉu‹uuuu#uu#uu#uu#uuu#u‹uuuuuuu#u#uuuuu#u#uu#u#u#uu‹#u#uuuuu‹uuu#u#uu#uu#u##u#u##u##u#uu#u#####!!O!!!€#õ€ÝÝõtH!1HÃ’lµÃº’ýýlHtœÒliý!!œ·?ilØœÝßN?ºaN÷œ¯htº.ldBBÃBdlœÃœ1HtB3çç3:dÏÏŽ»»ü»ñÛñÛBB!BO?OÒu€ÝºÃœBÌBBBÃÌÃ!!¹}ÃBúººÃ}Ã}¹¹O¹¹ºO¹}¹¹}}&ñ}ñB¹}¹ÛÛñdÛ¹dñdöÏççdåŽñÂñÛqGggû<í-sΕ”SΕ£<>éÛÌ}ìOìw‹w##uŒuu‹è7ÛÂÄn¼Æ¥˜¥Æ¼ÄŽ÷bŸŸppppDC§ÿÿrr 4rÿ§fwXuu#u#uuuuuuuuu#uuu‹uu#uu#‹uu#uuuuuuuuuuu#u#uu#u#uu‹u#‹uu#‹uuuuu‹uuu‹uuuu#‹uu‹uu#É#u#u###u##u##u##u#u####u##è€!€õõ€OêH!.€tê຺݀.’Ý€.ºÃÝÝl2Ü1??Ü··@°[ÜiÃN·ÜœßÖ·ý!€Ãl´œœB?h·»1Ã??ÃBBÏ3çññÏö™>´d?}¹B}}&¹>!XºtÃÝÝœ»h´1ÜlB̹O¹º}ºÃBœB1BB}¹O7ÛœñºO¹¹wO¹¹BÛ!Û¹7x}Û¹ñ3Û333dÀíö²ÁùTdg}Gqqûú<:-îS/'”Ó-ΕÄÂB&éÛ!ÉOwèuuuuŒõè‹è7&ÂÄnŽn¼ÆÆ¼nÄŸ¢ž^¤¤pDCp§pDCRrm§rrrr6^gÉuuuuuuu#u#u#uu#uu#uu#uu‹uuuu#uu‹#uu‹uu‹#uuÉuu‹#u##uuuuuuuuuuÉuuuuu#uuuu#uuuuuuuuu#u#u###u##uÉ#u##u##u#uuuõu#!!O!€€õ,耀ÃÜ1H€ºÒÝœtºœºº.œ21ºœœ2?y·1[´Ãœ´·2ÃýÜllÜõÃÀý?BB?»ýh´húH1BÃ?%´édÏ<&ç}Û¹Ûñ´¹}B}¹}B?´B¹¹ÝºÜ!lh??BddBÃO!¹!¹Ãœ?dÜB}¹}œ´Ã}¹!!}!¹}Ûd¹B¹!}&»À¯Ï>çÏçòå55_5gÛggûäJnKK--Ó” '”//¼nJÂ>BÌB}7èOèuŒuuŒu#õuè¹éÄŽn^¼bnÄŸÄ£úe^Ú¤DD¤Dm ¿m§ž~r§ r«ª §”qÇuÉu#uÉuuuuuu#u‹u#‹uuuu#uuuu#‹uuuuuuuuuuuu#uuuuuuÉuu#uÉuuÉuuuuu#uÉuuÉu#uÉuuÉu#uÉuu#u##u#u#É#u#u#u#####u#u##€!!!##€“õÃ?tO!! €€H€à’ÝœN@iŠ2i¯‰.ß$NÜ1#œÃ·±º{º?Ü{y1#,ÃtllêtœÃd»»»?¯?lÜ1?Ì]òçÌ>&ì&&>Û}Bñ?B}Oè7¹B!OÀHµÜÜÃO¹ºHÃ1BùO7!Oœd?´?ÜñœÛ}}&ô?BùBBñ»ÂG}}¹Ûñ>dñ´çh3çöŽöö}gqgÂJK;KK-ӔΔ''•nn:™>B¹!Oè!¹wuu#uõuXŒ#¹û™Žn¼b¼^ÄŸÄÄŸÚŸDŸÚDppCpm¿ mmpD©©Íʪ©r‘Éuuuuuuu#uÉu#uuuuuuu#uu‹#u#uuuuu#uu‹uuuuuu##uuuu#uu#uuuuuuuu#u#uuu#uu#Éuu#uuuuuuu#u##u###u#uu#u##u######è ##€!uõ €!€X!€õ! º.tÒº€H1œ€àÃ??H[@Ü’œœi·¯·!Oº?{»»œœ1ºOHt??·h¯¹êOœdÜld´dl´œÌñdÏÏ>ìÌGdÛñ}ÃB¹!è!èè!#€!1@!ݺ¹!¹º}ºO!!O!O¹ÜddldœñB¹¹}¹B?dñÃ]hŽh]ü}Û7w7w}Bö3ç´Ï3:™:޼ÄÛgÛû}¹w#è!¹O!èè#XŒXŒõ#xñ£n¼¢^÷^ÚŸŸÄŸŸpbbmbD¦§mžÿC¦CCÍ96ŸQ7ÇuÉu#u#uuuuu#uÉuuu#‹uuuuu‹uu#u#‹uuuu‹uu‹uuu#uu#uÉuu#u#u#u#uuuu#uu##uu#u#u#u#u#uuuÉu##uÉu#u####u##‹####è€è!èu#€u#€!õ ÃÜÜlÃd?l?.Nœ2µý¶ÝHÞi°[@ß·°1ºñ2?²F¯ÜØBOBBh{Øl{h·hlÃÌ?´3?üF?dÌÌ&&dd™dÂyÁ⎙:•/½E—sK•'””Î'<<>ñO¹!è#è!OOè#uŒŒXŒu##!BöÁøzz¢¢D÷pŸD÷pD¤ÈŸCDD¤¾¾¤©   ©¦pkÇÉ###w#Xu#uu#‹uuuuuuu#‹uu#u‹u‹uuu#‹uuuuuuuuuuuuu#uuu‹u#u#‹uu‹uuuuuu#uuuuuu###uÉu#u#u#u#u##########u##€!!!!!!!€# õ€X uõ€ €OݵH?€lº1œ2Ü?¯2·{%%%œd%¯Y%ܺhýœFlH!BÃ?´€HHñdñ}>ññçÛÂ3ûG™éJ>dBÃÃdlHO!XX!!OBêê€H¹OÃ}ÃÃO#!!è#èè!OÌÃBñBœd??´dêÌHOH#€B´€}œg3ÀÀ™´O7O‹Ì>Ì7>ñéw&}ÏÀhâ_²Y˜nļsEs¥ÓÑ''”•Ä™<<¹!èõuèè##‹õŒŒŒõ‹##w7ñÀÁøøz¥Åž¿UbŸŸŸŸ¤e^Ÿ¤Ú¤¾v¾¾¤¦C((„©C`p÷fÉÉÉŒX u #u‹u‹##uuu#uuuuuuuuuuu‹uuuuu‹uu‹#u#uÉu#uu#uuu‹uuuuuuuuuuÉuu#u#u#uuÉu#u####u#u#u#u#########uè!è!!!è€u!!!O´ê!ÝHOÝHoº.€.º,N1´ýaµ{»hayh?hYyýœHÜÜhÃHêõÃ?H´ßtÃ1ñÛñgŽ™Žñg>&‘éééÛÛO!¹}Bœ!õ€!€êdO!OBÃ&!èèõ“#è€è!O!O}}ñ}¹ñdd»¯¯3´?B!tü´ºñü]ö™w!¹è¹ññ&dççé¹é>ÀFÁâÆø˜ÄÄ^žSbÎÚÚI”•ÄÂ>ÂB!uè!èõŒõŒŒXŒõ‹#‹w¹döù²ø½½¥s÷RbCpDD£Ÿ¤ŸŸ¤¤¤¤¤¤¤CC ©©©„©CRÙŸ­É‹XXu uuu#‹uuuuuu#u#u‹uuuuuuuuuuuuuuuuuuuuuuu#uu#uuuuÉuuÉu#uÉuuu#uu#uu##u##u#uÉuu#u#u###########€€w!!!!##u uu€!Ãt´µBÃÜœNiZ@·Øi?iœœ»ºFBO€»FýBÃÃ?ÃOÀ€H!€OÃÃõtl´·yB7¹ñ]3FFd}w¹g&é<ç&é¹ññܹ#X#}BúÝ!!êBêÃÜ»?ÃtÃÃOOO€õ#“€#õ#!¹O¹}!Où!Bñ´Fâò3??´H!´hdwBñ3™À?O!7Oñdç>>dŽçdÀö:À3ŽŽÆÆ:•'/•••Ñ×ÑÑŸ”••:>ééñBOè!!#ŒõŒõXŒŒŒŒ##!Û]ÁøÖ—Ö8spDCe¤÷žbDŸŸ¤¤¤¤¤¦pC(CCÍ¡©C mD ‹É#uu€ uuu‹u‹uuu#uu‹uuuuuu‹uuuuuu‹uuuuu‹#u#u#u‹#uuÉu#uuuuuuuuuuuuu‹#uu#uu##u##u##u#u#u#u##########€#!€w!€ #€u õ€.èÒ OºÜ·œ@°ýNl22’»HºÜ1!úèÃBcºœÃœHú´d?aüêt3ØOBd]dÛ™Ž˜]™xwÛGì<Âí3ç&d!Ò“!OO!uuºÃB?dB€¹€#€!Ot€OÝO!!ÝO!t¹!¹Ã}¹B3¯ùò33êœ}Û>âÖ]B!}OO&ñB¹d>B>d::™JŽŽ£nÄŸI'ÄŸ<ÚÚI”Ä<é&&BñÃOèu#uXõõõŒõõŒXŒ#7Û´¼Áø——8Åž÷žmbDpb÷¤DŸ¤¤DCDpppC©¡Ê© r§(¾­Éwuu uuuu#u‹uuuuu#uu#u#‹uuuu‹uuuuuu‹uuuuuu#uuuuuuuuu#u#u#u#u#u#uuuuu‹uu##u#É#uuu#u#u################€€€u#!OºtÃO1BHºtH2Ãtu àÒ2œº?ÜÝœº¹€€Ãd!¹Ãºh%yüOOl·cßF·ühh!!#»OÛ´}Éw¹Ž]]Ž3ŽÂ&ñϼíT7B¹d¹èu#€X#HºOOÃÃ?tBê#Oõ #€!Ýè!ÃêêO€!!!OºÃÃBÃ}Ìd>ç3ù²]¯üBÜdhF%]ÛÀ%â?¹¹¹OÌÌ»dÛÂûäÂ<>¹BBÀ#XXèè!utœœBêñtdhÃ!OBtO#€€#€!€€HêÃtOtݹBñd´Ûñ&ñçJòY3»B´¯´ÀüÀÀ%húÃÌHê?»33»À™äéûŽ™&7‹¹Œ77#ñBBwOX X##X€O€¹êBOOÃêlêOÃÝOÝtÝt1êÝOÃêúÃ}l´h»3Ïd35åö²c33ýüB»]öÀâ_Y¯ÃB1̺OBÀ]:Ä•K•Ä”;Ó'eúú\Õ×úú•ÄÄÏñ¹O€u ##u#‹uuõõ#‹O7¹>޼Áz¢UÅ+pmpDDDDŸŸpp§p¦¾¾¤È››¡ʪªï=ŸqÇu€uX€u#uuuuuuu#uuuuuuuuuuuu‹uuuuuuuuuÉu#uuu#uuuuÉuuuu#uuuu‹uuuuu#uu#uu#u###u#u#uuÉu#u##############€!€u€€€€àtttH2?œÃ1º.·iœýNY@´Š@¯ýd€»?»BØcØ{Üý´ÃHœ€!!º´FO!»òâòò]Á%™}w}x#77!}w7‹¹G¹¹Ou u#õõõ!!õ!XOÜd´€OÃtOtHHH1dtݺ2ÜdÃÃB}BÀ™5dÂÏöâ5ò¯BñhhdñÀdŽY%¯dÃÃO!OOBd>ñ>ú•nÎ-ÎΕÑÑ<<ÕfúÄ:¼TŽddB¹t!!!€è€#€#õ‹###è¹ÛñÂŽö˜˜¥;zUžÙbmp¤Ÿ¤£Ÿ¤Ÿ¤Ÿ¤¾ÈÈvÈÈȾ¦©ͪr~pÇÉuu€Xu#u‹õ#uuuu##Éu#uuuuuuuuuu‹uuu‹uuuuŒuuŒ#wu#uuu#u#‹uuÉuuuÉuu#uu#‹u###u#u##u#u##u###uõõõ###è##uuu€€O1êtÝ’Ü1€11ÝÝ1œ.ÝÝ!º€Ã?[hi·y@ÜýF{üdê?ÜHºÜœ#H?hò²ÖhÃ&B™dŽâ˜Žñ]Û¹èÉ7¹‹u7¹¹OO!X!€uX õ#O!t!!HHêêBêOHOOHÝ!OHÃÃÃÜÜÜ1BÜ?ÜBñdñññ7&ééççYÖ%òñÌ3ñ»»Û™ñcY%hB!ÝÃHBœÛ¹}g<•'Î/••nÄ<úÄÄJúÕL£™>B̹Ý!O!€# #õ#õ#õuè¹¹B™Àn¼zb^ž¿bDppC¤DŸÈÈŸ¤¤¤¤¾ÈÈȮȾ¦¦©(©„r=¸¸ƒpkÉu#uXuõ#‹u#uuuu#uu#uuu‹uu‹uuuuuuuuuuuÉu#uuuuÉuu#u#uuuuuuuuuuuuuu#uuuu#uuÉ##u##u#uuu#u##uõ###õè€è€!ÝO! !õ°êtêÝ ÝÜœà€º ºœýذœXµ{%?!tdÝÃêB»·!ñHÜB1Ot¹hBHœh²»üçÀŽ3c™&²™>!¹!ÛŒè7èè!O€Ý# u##€!õ#!BœOOHBOHOOtBꜜÃÃêœñÛBÛ}¹ÛGé><:cY5]ñO?ñÖñññFùYù¯´1ù?dÂ<3Àn¼z¿÷DDCDÙ§DpDÚŸ¤¤¤ÈvvÈÈȈ¾¾C C¦¡ªrƒªªƒpڑǹ¹#Xu#õ‹#uuuu#u##uuuuuuuuu#‹uuu‹uuuu##uu#uuuuuuu‹uÉuuÉuu#u#u#u#‹uuu#u##uu##u#u#u#u##u#######èõu#!O!!1€à12[µ.ê$·Øa·º?œº#ºi€Ýi1!HÃHÜOBñÝÒ{Htœ´{¯´´ýý??»ü»Yò!>g¯>Œ]ÖÁF}wÌŒ#èè€OÃœÝ õ€!€èO#tHÃÃBHOl»ê€èt!OÃBêêñ?h´ld»h?Bñd™&ñdÛGwGÛéGÛG>ÏdÌ!7B3ñ&&ŽFy²Öa´ºl»»3™ûÚäI''ún•<ÂdñBHÃú!OÝOÝ€è!!!èO3À¼TK¥¥ssÙ'¤DCpmÙDD^DÚ¤ÚÈvțȾ¾¾¾¦¦C¦ˆ›*„ªª9ª CŸq¹}w!õ#õ#õ#uuuu#uÉu#u‹uuuu‹uuuuuuuuuu##uuuÉuuuuÉuuuuuuuuu#uu#uuuuuÉuu##u##uÉ#u#u#u#u#u####õ#õ#uõ#!!€€€tt1´P.¶2otµµ11iiœÝl{œu1Ò€ÝÃ2œد·´OXH!BœBayH2ØYFü?»cØâFÁ²À˜3}ÛŽc²™u¹uèO!¹Ã1t!#€!#€!€OÃBêêÌêü»O€OOÃê>Bê?üüh»?BÛÂŽÀöŽ&¹Ûçû&7ÛGGÌ77¹¹ÌÌõÌÌñÛ™À{c{´œOBœ>´ÀŽÑÚIIÑeŸnÄ<Â<™û<<£<úûû&GÃÃ1Bú¹O!€è€!OÃBñdŽ3nn^Ξ”÷¿žD¤D¤pp¤¤D¤ÈŸÈvvÈȾ¾¦Ê¾ˆ*¦¾››¾¾¾Ê¾©¦kÇ77X#õ#õ‹#uuuuu#u#uuuuuuuuuuu‹uuuu‹uuuÉuuu##uuuuu#u#u#u#uu#‹uuÉuuuuu#uÉ#u#u#u#u#u#uÉuõu##õ‹##èè!!!O!OttHto22,.à ÒXà€ OÃÒ1€t@·Ý1ÃH2@l»?ÌõH€Ã€Ü%%hÜHHh?l»]dd}¹‹gûÛ3F™7w7u“3#è‹!¹HÃÃHtàõõ#è!!õ!ÃBÃÃH1´üÃOÌÃÃBBBêñûê̹BédÏöÀG‹7>¹x7¹‹ÌG7ìÌOu#&Ì>çd}}ñÂÀ¯»œBBBñBûÂñÛw7Œu““¹¹wè#u#€#€€X!t!€ÝÝ#èdB?´BBû!OBBÌÌOÌÌÌÃñÌ!!ìOó&Ìì}ÛOÉ7Bx!Gw¹é&çññöÌñ7èññ&&ûñd´´ü´çö¼ÄJ”÷”¢ÎÕf™gŽÀJ™Â>fgÛÛœO!ÝݺÝ!ݺºOO!€OÃ}ñgñ£ÄÄb”Dp÷DD¤ÚÈj›Ú¾vvvȾ¤¾¾¦`¡¡‚ˆˆ › ®È¾¾Èˆ¾¦¦¾­uÉu##õ##u#uÉuuuuÉuuuuuuuuuuuuuuuuu‹u#¹¹7Œu#Œuu‹#uuuu#uuuuuuu#uuuu‹#u###u##u##uÉu##u###è###O¹Oèõõ#€# õà?°Š’.oººt.º’1t°ºt.œ´!X’?œýOœ?F´ÃBlüyy²lHl»œFllhB¯ycùwww777O!w#u#!!!#èXõŒX!€!€tÃH€€.t!ÌBñdddh3´HÌOO¹ÌùO!O7!ì!7èè¹OOÛ}!OB?´B3dè‹èÌdddñ?ü]»cÄ:•Ó•ûgóûff>fû&û>ûBÛ¹¹¹Ý.ºBÃHÜ.tttÃÃÃñg>ff£b¢ÙbpM¤ÚÈevþvevv ®È¤Ê¾ˆ¡¡‚¡¡¡*¡¾È››ˆÊ¦¦©©¦v‘Ç}#‹‹õ#õ uŒ‹u#uuuu#u‹uu‹uu‹uu‹uu‹uuuu###uuuwuuuuu#uu‹uuÉuu#uu#‹uuuuuÉu##u##u##w#uu###è€è€èè€Oè#è€# õ Òà.1’ŠiµZººPÝ1ºllœ[tºŠµý·{hÜHlÝHê´ê´€dêtÃêO!»ý¯c²c¯]»Ã}üñ>#‹uuw!!!€##!!!!!#Œ#uèO!!t€ÝHH1êÌBÌBBBBÃdd´BHOììOìOì¹¹!OO!è7!¹OOÃ!#OÃ!èHd»üh´?¯´öcöçG!¹O!Ãñ?´Bd»üÀÀ:í-Jä'//••Ä<ûggóógégûññ&&BÛB̹!Ý!€€ÝÃ’œliiNNPP11ù¹Û˜ÀÂú^¢Å¥mp¤¤Èv þþvv Èʦ¦¡¡`¡`¡¡©Ê‚ˆˆÊ¡¡9¦šÉu&wŒ‹‹ u u‹‹Œu‹#uuÉuuuuuuuuuuuuuuuuuuuw#uu##u#u#uu#uuuuuuuu#uuuuÉuuuu#u#uÉu#‹##u‹õu#!!!!è #è!è##€#€!õÝH € .oýœPœº2ýœX’œ’!1œœœÜ·[?hyÃ!µÜ!?“€?õÃ#l{FFÖF´Bâ3F™FF#uŒuw¹¹¹#!t¹O!!!uŒ#€OOºÃt11tttOÌBB̹OÌHBO!OO7OOO!7!!7!!¹èO¹ÌÌ!è!]¯]3üd»ç]5ÖùdìÌèÌBñdddd™ö;-JÑn£ÂgóóGqóLó>>>gÛ}}}ù݀€u€€Ýºº’2ŠP’H1ÜêÙñÄ™eÄ^bbÅÙD¤¤È kšk v š v¾¦¦©©©©©ª©¡¡`©©¡Ê¡Ê¦¡¡¡¦ÈÉǹ‹7‹‹# uuu‹uuuuuuuuu‹uu‹uu‹uuuuuu‹uu###uÉu#uuu‹uuu#uÉuu#u#uuÉuuuu#u####u#u###‹õXõ##¹Ý!€#€u€#èè€õ€€àt11i°?.XllœºtX’.œ°aÝÝßïýü{{h?1œt!??1ê´»c%¯?dÌ}â_ÖYâF²_ùÀw##w!!¹!!¹BÃt€€€!#!!ºBº?HOÃÃ1’BOBñÌO!!€O!O1ÃtÌO!!!Oè€OOOè!è!OOÌè#ñ»d´{²hdÀÀ²_²Ödº}!}?h»ñ¹>d™ÀåîÎÑ•'<<ÂûÛq7GGÛG&û&Û¹G¹¹¹¹O€€ €ÝH..º.o..Ü»ÂÂff™ŽK—;™•Ä<ä<<>ûg}ì7ìGìw7wwèO!w#€#€€!€!.ÃtP¶2¶1HÃBñgkqûeÄ^žDDDC¦¤ÈÈ›v vÈȾ¦¦©¦©©©©Í`©¡©©©¡`¡¡©©`eÉɹw‹‹‹u Xu‹‹è#wu#‹uŒuu‹uu‹uuuÉuuuÉu#u#u###u#uuu#uuuu#u#uuuuuu#uuu#uuÉu#u##u#uu#u#è!!O!èu èè€è€!!# #ÝÃtàº1êtt´€Ý?11?.!?c°1?l´HÃÜüaØ!Ã@dÜlh[»œH?ÃdBOç>3d_ö3ÀŽ>w!¹¹!€!!!ÃÝè€!Ý€!€!ºÝ¹ÃtO!€OHêt#€HêB!ÝOtOH1.HÝt.tÝtHêœêê´ý»d¯FOOd?3]3ÏââÏ3ÏåââÌBÃÛñœññÂ>û>J¼5KJÑ<úäÂû>ûÛ777777w#‹#wwuÒu#!ݺHºº’’’¶Þµ|21Ãú¹}g£eŸ¤¤DCCpC¦¤¾È›È¾¦¦¦``©©„ÍÍ¡¡©©©¡©©¡©¡©Í¦¤Éuwè‹‹uuuuuŒ‹wèw#uuuu‹uuuuuuu#uu#u#uu##uu###uu#uuÉuu‹#uuuÉu#u#uu#u‹#u#u#É#u##u#uwè!OO!è ##€€€!!#u #tÃܵ?œt1Šý?Hi?XO2iyHý¯?uÜ?ý?€ºÃi´€H1œy?µd€»¯HÃhcù»ü¹èÌÛñŽÂww¹ñ!¹¹O!!¹¹¹¹O!!u€# Ò€€!ºOtÃèX€!ÃÌ!#!Ãd21tt’tH1!ÝHttÃ2?´?hÜl[{¯ù²ÖÖ%ÀBÌ}ñ»>5ççJéGüÏñ»d?ñÌ}ÛñÂñBÂñûf>>ûÛ7wwÉè7wuŒŒõ“uu!!ºÃÃÃ’œ1P¶¶¶NÞP1œœÛ}BqfúúÄ÷ÙžRRp(pC¦¦¾¾¾¦©``©©ÍÍÍ¡©©¡©©Í©¡`ÄÉÇX‹‹‹É#€ #‹‹‹#uuuuŒuuu‹uŒu‹uu###u#u###u#É##u#uuuuuuuuu#uuuuuu#‹uuuuu##u#u#u#uu#è!!è!è€!!€è€!!€uõu€ºœtHH1tH€ ÃÝÜœH#!Üܺlh?œœlÜ!º´œýB@%aaº´Ü´1²c²ýccüò¯ddxÛÂ7x&7O!€#!OO¹ºO!è õõ # !ÝtÃOt€Ò€OOOO€!ttHHÃÃttºÝÃ2tê’Hl[@@h»êêh·iFùùcYÖddddççóóÌìç77ÌBÌBœBBññd™Âñgûgó<¼néû<<ÂÂd&¹7w#ŒŒ#ŒŒŒu#u!!!!ºHº..º’2¶¶ÞP1œœœ}}Ûfff£pp¿m§C`C(¦¦*¡¡¦©¦`©¡Íʡʡ©¡©©©©©Í© `ÚÉw苌‹w€w€è‹‹õõuu‹uuŒuuuuuuuuÉ##u###uwuuu##Éuu#u#u#uuÉuu#u#uÉuuuuÉuu#u#u#u##u##uè!!!#!!O!€€è€€#u #€Ý¹t!Ý2ÃtÝ2O1!!¹ÝÜýOHH·².!1BœÝÃÜœ´?hh?Ü{µýYa{dü3Fù%d]_&ñg]¹!#ÝdlOݹ!!!uXuXÒ€ÝÝݺtO1u##!O€OOttHt.!tºH1œPúN[@c%ØØahœl?êh]²YùdÏdÂŽñóÌééGGGèèO¹¹}}Û}™ö»Âûx7û<Áûûg<<ñ¹wwŒuŒŒõõuuõ#!ÝOOÝO€àoo…¶P’’’BB}}}ffe¤bb§§C¦¦**¦¦¦``©©©„©Í©ÍÍÍÍÍÊ¡©©`Í„¦vÉ“w7‹7G?Xu“x7Œ#uŒ#¹¹wuuuuÉuuuuu##u###uuuuuu#uuu#uu#uuuu#‹uuuuuuuuuu#uuu####uuuu€€€#!O€OOOO€è#X€u€€œœ11Üœt.1Ü1t!tº€OÜ?Üu!úúB1?ÝHdH2H!œHºY?´œ·´ê´èHBB»5YF5öÂYâñwºÝ1dl¹!O€!!# #u€Ýº¹ººOÝO#ÝOÝOOt.Ot.! t’œœll2’PN[·¯a²YYÖY»?dçÀTâùù5FŽ™»&ééLÌÌñéO77¹¹OºÛ!}Û´]nŽgggg<<<<™<<éÂdñ}7!‹uuõŒõuu#€!OÝOtºÝ...t’1Pºººº}¹}gfv\e¤ pR§`¾ˆÈˆ¾`Í`Í`Í©©©ÍÍÍÍÍ©©©©©Í©©Í`„¦þÉuè‹W‹w}X#uì쌋uXuwwuuuÉuuuuu#u#u#u#u#u#u#uuuuu‹#uu#u#uuuuu#u#u#u#uu#uuu#####u !!Ý!ݹO¹ÝO!€#€Xu €O1BÃ2?´Ü1Ã.XlÃHÜÃÝutOº€XÃ1!ºdý@{hý@ØßhÜœê´Ã¹ñ3d%_¯ÀndBÂF3>tÝœldܺOÝ€!!##€#€Ýº¹.¹ÝO!€H1H.OOOttOÝ.122liNœlµi?i¯c%%%ÖÖØFhÂç»3ÀöâÀŽ»ö¯öT}ìì7ìÌÏü3O!Ìñ!}ñ<ŽŽŽ-™fgó<gä<äééççç™>ÌO7uõŒŒXXuu!ÝOOOtºººtt’P1ÃH}}¹gfúfveDCpC§`‚ˆˆˆ©©©Í`Í©ÍÍÍÍ©©Í©Í©Í©©©Í©©(e7‹u#싌#Xu#‹ÉŒuuŒu##Œ#uuuu#uÉu##Éu#uÉuuu#uu#u#uuuu#‹uuu#uu#‹uu#uuu#‹uuÉu####u€!!ݺOtºº!!###€#! €€ººº€OÜœœêÃH!Ã1HHÃt!µ?œt€ O€lܵœºœB@´µÜ··%·BÃB?FFòFñÀd>™¹d™7Û¯ö´!€lœÃººº€!!€#€##!!!!Ý!!Ý!tHêêt!!!OººtÝÝÜœ2N?œŠNlœ´3]ÏÏF5»>Âd™Ž3:ŽÀÀñ‹7OìÌ>¯»Ü¹Bñ}BñÂÂ™Ž˜TíÂgJ¼Žûûä<:í:Ž&OèõXXXXu#èºOOÝ!Oººtttt’11œ1BÃ}GgÂeeÚDpb§C¡¡¾Ê¡©©„©ÍÍÍ„©Í©Í¡Í©©Í„„©©¡peÉu#Gçw‹XuX¹ÇÇŒ##uŒ##X‹#uu#uuu###u#u#uuu#uu#uuuuuÉuuuuuu‹#uuuuuu‹#uuuuuuu####èÝ€!ÝÝOºÃÝ!€#€€!€H€¹ÝœºÃº€€!ºHOtO€ÃúºOHlÝt!€Ý€Ã€€Oœ!€ÜO1’?ÜÃßdÜh3%yüY»ñ&ÀÛÛ]™]7ñÝÝœÜtÝO!¹€!!€€!#u#€#€#€!Ot.H1dÜ€!!OtOÝO.º1œœœœœœÜœd>ÌÂ>çç?dÌññûñ>ññÀ>Ž>ñ&‹OO7OOOê»ü·3»´d&ÛÛñÂ<<ÂnƘ™Ângéé䙕<<çJÏd¹‹uõõuu!!OºO!!!!!OÝÝ.ºH’H’ÃÃBÛ}¹ÛfeÚDpÙ§§C¡¦©©„„©ÍÍÍÍÍ©©©¡Í©Í©„Í©„„¦qWwO¹é‹ÉuuuñxÉ‹#uuuÉ##uuu‹u‹uu###u#uu#u#‹uuu#‹u#uuu#uÉuuuuuÉuuÉuuuuÉuuu#uuÉ###ÝÝ.ºHºººO€€€!!!!Ý!ºœÃœdHºH1œÃ!€ºà!1µÜ1iúºœµtÝݺºÃÃýi¯Øay¯2¯cYYFœd%}#ÛÖ²3¹¹™ü11?2ÃÝ€ÝÝuu!€w!€#######€tOtÃÜl¶€!!tÃ1ÃHºÝÝHúº’1’º}Ûñ&ÛóÂñ>ÂBqÛÛÛg>>gg™>ÛŽì7O¹è!깺2»hdB!¹¹BÂŽ™™úfn:Ä<ÂÂÂÄJéÕóéó:}uõXuuè!ÝOOO!!€!OÝOÝOttt.tº}}ÛqfŸDŸpp§((  „„ ©©ÍÍͩͩ©©Í©¡¡¡ÍÍÍÍ©Íͩͩ̈́©ÍÍ ¦kÇ#茋ÇÉXuXB‘‹ŒŒ#uuuu#uÉuuuuu#####Éu#uuuuu‹#uuuuu#uuuuu#u#uuuuuuuuuuuu#uuu##w€!ݺÃúÝ!#€w#w€w#€€ÝºÃÝܺtÝÃBÃÃ.Ýàt2NlÜoºH.?llHÃH·ýhœ?li#2{c{B}öüŽùâÀ»´BüF11lܜÀ!€Òuu#€!##uu## #ݹHºêÜÜ?’tOBêBBHÃBÃÃÃÃ1Ã}¹}ÛûéìÏŽ>ÛÛ}ÛÛgé>ÂdŽ™éÀx¹ÌOBýýÜ21œBdçÛ¹g>Ž™™f<û™3Bœ7BÃŽ€¹11Üà !€ÒÒ uuuuuŒXuuu!OH1t1’1i´êÃHOºOOÜ1œœœÃÜœœñ&Ûó<íÆ™ÛB>d&éd™™í<™˜âød&!OèOltHºt¹ºÛBÂ}BgÂ}}ñ>&çÏöñ5»Žö:Âé<&™d]¹!¹ÃÃOOœÜHºÝœ¹&™3ñûgñÛgfn£qûŽÄ•ν”äéÕÌó&&BBHº¹¹ºO¹tOHBÃÌOOOO!OOÝO!wx}ûŸŸŸM¾¾¾©„ªªrƒƒªª©©©„©©©©¡Í`¡ÍÍ©„„©©9Í9³ÍÍ9©¦ÚÉÇw‹7¹‹‹ŒwŒg}‹u#uu‹XuuuÉu####Éu##u#ÉuÉwuuÉwuu#É##‹u###‹uuu#‹u#uuuuuuw€¹O€#€!!O!!!€€#€#uuu#€è€!#€!€€#€# !€Ýê.oHÃ1º.œœÜiµ?Hý[œºOh»i!ý2HÝBh!}7#7wñ?Ü´!}!¹ÃúºÃ€ÒXXuèu茓X!HÜœœœœê’2ܶêêÃ.õOO#èÃÌÛdœ&&dç&3?üühü]ç™í::ñÂgÛ!}è¹dlB1œ2}HdBd´™™ñÛqÛGL><<£n£IÎÎ;í<é>ÂdÃ}ºOO!!!!!OHOO!è!è!!!w!xÛf££ŸŸDM¾¾‚*ƒr¸rƒƒªƒ©©©„„ª„©©©ÍÍ©©©©„ÍÍ9ͳÍÍCJ7u‹Œ‹O‹uŒxuw#77uuŒuuu##u#uÉu#uu#u##u#u#¹wuuuuuwu‹‹#‹#‹#u‹##uuuuuu#u##è€!€w€!!!€!!w€###u#u##è€w!ÝÃHO€u##O!Ý€àà"ÞtÝ’.àº1Ò!.X1œÜdO?H!ÃýÜÃ1BHœdýhœ}Bd¹ñÛ!Ûºu!»d?hÃOÌœ1Bœ2·œ.!€XõXXõu##ÝÃÜÜœÃÃÜœ’1ÜÜ1H’ÃHH!Oêd!Ã&BBñ>&ñ»çñl´ld»dÛ&Âç::ŽLÛ¹¹#}ºBœhhœœlÃdÂñŽ>qwgGxqÛû£JÑä­ä•-TíÏÏ:3çt!OÝOO!!!!Oººèèè###€èw7}gú£ÄŸDD¦M**¡ªæ¸ƒªª „„ª„„©„©©Í`©©ÍÍ©„©©©Í³ÍÍ99`pú7#ÉŒŒwŒ7‹u‹Û™uw#uŒuw###u##u###u#Éu#u#u¹w#uuŒ#wŒ‹u‹#‹#‹uuuuu‹uuu u€€€#€w€O¹º¹!!!w€w##uu€#€##!!!X€¹Ý##!ºÌœHÝààPµ·N¶Š?1º.€º1€ !êµlh[ýý%{{Yc2?·ü@´ýü@dw#èBdÏ]´BdÜ´Ü???Ã!¹Ã1BÃÃÃltu€# #èÒ#!€€!ÜœœH!.’1Hê?´?l»OÜü´!ÃññéBñ&´´ñ´ddñB>&Âû7¹wÛ!w!}B¹H»¯hlœÃBñÛñŽÂ}7q}x7qgûÂúnÄÑÕ)äää<Ïçdº¹!!!!!O!Ý!Ot¹èè#õõ#èw!!qg££ŸDD¦¦¦©©ª ¸rrªª„©„©©©©©©©©©Í©©©ÍÍ©„C©©Í9ÍÍÍÍ©`pxu‹#‹#‹‹Œ#Éww7x!wuuu#uuu##u#u#u##u#u####u####õ‹uõu#‹uuuuuu‹uuuu#uu€w!€€!ݹHº!##€##u #u #u€#èw€#!º!XÒuèOêºH’t.ê¶œœœ?2º1À´·¯c·h¯[cdl@{¯´´?µYÜlBœÛ!¯Öù´B¹B»hÃd¯œHÃÃútH€€t!uè!õõõ€êúºÃÃtt’1ºtÜl3ýêÃÜ»2HÃÃBdddñÌ´d?Ž>ÛóÛó7xw¹¹¹€w!ººÃ¹llBœBÛd>ñ™™}qûÛxxgûLfJn£ÕÕóéé>éÌ&B̺O!€è€#!!¹O¹OOOè#õ#õ#€!OG}gfe£ŸD¤¤¾*` rr¸ƒƒƒª©©©©©©©©Í©©©Í©©©9ÍÍÍ©©©©ͳ9©CD¤ÉŒ‹w#Éww‹uŒ}>Œ7!w#u##uu#u###Éu#u#u##u#uu####uuu‹‹#‹#‹õu‹#õ#u#uu#u€€!€w!¹¹º¹¹!####u uuuuuuuu#€#€!ÝO€uu u€#Ò1lto.’HHà€’Üº.“ H?{·Ü“ºdØ·{ºl?lÃÜœ´ñœ3´]Y¯cc´œh@h?µdœºñBÃ1’Ã?Ü2dHèXX€ÝtêÜÜ1t1œœœœ1Hô3{¯´?ldœ1ÜÃÃBd»3Fü3¯ü»?´dÏììx¹7w!}!èÝ}œdœÝœ»»B}}Ã>™dÂ}>™ûGxûgqÛ<ÄÄÄ•äóóóóóÌ&ññÌO¹!èè€###!!!!!€!èè#õ#èèw¹G}kfú£Ú¤¾ÈȦ©§r=r ©©ª©9„„©©©©©©©©Í©©©©©Í9©©©©©ª„¦C¤kÉÉu‹#w7O‹w‹w>7ŒŒw#uu#w#Éu##uu#u#É#uÉu###!7w#X‹##è‹##‹##‹#uuõ#õuu€#!!w!!!º¹ºO!# u#uuuuuuu#uu ##€##€€##è!!€t€t’t1?ê1œ.€.€ !Ý!õÒB?OhÜýÃy´ÃOyBÝÛôÖ%¯»c»œ€Ý1´·œÝÃ?ÜO!€!Oººœ’B1ÃO!õ€Hê1ÃêÜltº1œœ1HÃñ´?üy¯[llµÜºHÃ}Bd´dÏñB´»»´ñœB}ñ<7¹77!7!Ãd¹ÛºBiýœi´´ÃHBd}ÛBÂÛûŽgqqqGGLÂÄJŽ<óLéLÌé>ÌO!!è##€è€u#!€èuè!èè###è!!xGÛgfvúÈÈÈÈÈ*Crÿrr„Íͩͩ©Í©ÍÍ©©„©Í©©„©9ÍÍ9©©©¦Í©©¦CDv‘Éw#Œ‹#ÉwŒ¹>www7wuu######u#u##u#u#u#u#uÉuw!7uŒu#‹##‹õ##èè#õ‹#õu#õ#!!!è#!¹OO¹!###€uuuuuuu#u#u#u##€!!!u u X!Ã1€.1H’Ý’l1ºº.1?HÃdêB?H?Fyy@üi¯dÃÜ´Hœ¹]¹¹Ü1ÜÜ’ºB’dÜýýOO!!!ÝÝ.œºÝºÃ!tÃúº1œ1œ’’œ2œÜ?ñññÌñ´Ü{¯ê2ŠÜtBù¹BBÌñ]»»dBññéÛ}ÌG¹7¹!!#!}O!¹BùÃÃiܹ¹´?¹ñ™ö}¹™™>GGqgqGgÂóÌ&ê&c{l?lH2iÃÃÃBœñ&™ÏdÏdŽ´ñ3B&&ñ¹7è¹¹#ÝH!O¹Ãœ¹º´?y¯ºHÃ}»öñB3gG>ÀÀgGûGGqûûûû&><ñÂ>̹!è##€#€!€è##€è!!¹7èèèèè7¹Ggkþþvv››È¾¦§§©¾Ê`©©©©„©©©©©Í©©Í¡¡ÍÍÍÍÍ©©©©©`¦pŸ­Ç‹uŒuuÉ#ug7uwwŒ“ÉuuuuuuuuuuuuÉuuuu¹u“wuu}uuuuu#uuuõ#‹#õ#õõõ#uuu€#!èè#€w!€uuu uu u##u#uu#u#u€uu€!!u#u u#€€€HÜœt’’ €t€Ý€.€o €t!tHda²ýBœü{Ü?œlBl?Üœ¹Ü #õu!XœÜ?œiµ2œÜ’??.€Ã1?Ýt12ÃÝ õõ#!!.!€!HÃtH1OºBBœBÌÏ3ÌÌ3²¯?1HÜ’1B}BœÛÌ™Ûd3]²FdññÌÌÌdÃ}ÃOœ?F!ºl2hB!!B»?FdÛ™Žñ¹&ûÀÂGûÂÂ}qÛÛÛóóÛ&&&BñBO€###u ###!è€#è!!7O!è#è7!!xGkûþþ v›¾DC§§¦¾¾*`©Í©©©©©©Í©©ÍÍ©©©©`¦DÚ‘ÇÇuwwÉuX‹uuuŒu#wwuuu#uÉu##u#uuu#uw}7Œ!Éu¹#u#u#uu#‹‹õ##‹õuõ####€è!!!€è!€è#uuuuuuuu€u#õ#õ#€õ####uè!€##u€Ý€€t Ý’’H1œHH!ຜºà ¶H{»´hýœÜÃc?ÃhcF?´ÃÜ´!!õ“!!BÜœÜiµ22’ll?µÜHêÌ!??ÝtºtuÒ#ÝOt! €t1ÃtlœœdœFùF3»´hü´1BœÃ1?œBÃBññB>&&éÂ>d]]]Ûdd¹OOÌBݹO}B¹?OHººÃ?ÃÝ!!ÂööüññdûÛ:™Ûû™Jû}Ûg&}¹GÌñéÌOè!Otè#uuuu#uèèè!èè!è7è##èè77¹Ggkþ\vv¾¦(§C*¾ˆˆˆ¡¦©ÍÍ©©Í©©Í©©Í©©ÍÍÍ©©©„©CDeÉÉŒw¹7€uŒuŒ77#u7!Œ########uuuu#uuuw¹!uwuŒwuu‹uu‹u‹u##õõ##õ#è#€€€!!!è!w!w#uuuuuuuõuuuu#õ€##õ€u€u###uu#!¹ÃH.Hà€º’tÝêÜ?Š122ŠŠœ21!œ?¯·l!H1#œ€ÃlûÃ܀úOBdlhœ‰µÞ‰??ºà.’2?@Øy?2ºt€€#!O!t€ !ÜœÃ]h3?Bñ&FâF´7ÃB¹Ý.ºÃlœdd&Û<ÀŽ™Ž:}´ñÛ¹OœÃBBºÝÃÜh?%¯œÝºœÜ¹O!u}dhâ%À}Û>Û}éÛxqGÛûÛBÂñ&GGGÌÌÌO!!O€#è#u#uu#€èè!è!èè#‹uuèwwGqLkþ v›¾¦(`¾È›È›¾¡¦©©©©©©¡©Í©©©ÍÍÍ©©©©„ CDeÉŒ#¹7wu‹uu¹}wÉ!7u####u#u#uÉu#uuu#u€ÉX#uŒw#uuuuuu#õ#õ‹õõ##õuõ#uè!!!!è!èè#õu#õ#õ#u##õ€õ##è€u##è€#u#uuu€tÃúºœ’tÃt€€ÝÜtºo2N Otü{ò·hœBdœOœlµ%llº2dê?·¯y¯ý@ýl[’1Pµi2œ´ùØâ{@ܺÃÝ !!!#!O#€OÃÃÃB?ü»dÌd3BÌÏ´3BÌÝOÝuÝœœ´™™Âûç::ÆTÂûG}>»ñ¹OtOÝ!Ã?ÃBd»yØØ´1œºuX#¹»]dd¹xx¹ì77gÛñ>Û¹GO7!BêÃO!!èè##u###èèèè##u‹õuŒuuɹqLkþþÈȾCCC¾›››¦¦©©©¦¡Í©©¡©©©©©Í©Í©Í©©©Í©Í©CD×ÉŒuu#uuuŒu#w#u#w####uuuu#uuuu#u#uŒ#uu#uuuu#u#‹uu‹uu#õ#õ#õu# €#€!!O7è##uu#u#õuuuõ#õ#õ#€#€è#€è€è€#u#èè#€!ààݶ2’11º.!€o à¶2àÀ€º2´{%·%{ÜOºuœ»daß°H1HºH?Ãúœµ@°?Š2œÞlœµY{¯a»œHHÝ €OÝ#€OÝOHÌÌÌdç´Ïö»ñ&BÜB!B´ddd™3À::TíåÁíÂ>7BñOèu€OººHºÃÜ]œhyرdºOÝ#X!!¹ñ»ŽŽì7¹xxóGÛÛBñÛ¹ì!G!è!ÃHÃ!!!è###õuu#u#u#uõuuõŒŒŒ#xqqkþ ÈÚ¦¡*¾›v›¾¦CCC©©Í©©©©©„„„„„Í©9©©©©©9„Í„C Ñ‘ÉÉuuu###Éuuu#uuuw##Éuuu‹#uu#uu‹uu#u#É#uu‹uu‹uu#uu#õ#õ#õ#õu耀!€!!!!#õuu##uu##‹õ####€õ###è€##è€èè#w!wu€€!àÝ’Ã1’Ü’ÃoP| ‰Š’tOHBÃhÜ·ýa%Ü?lºœ!œ°NttHtêÃ!ÝuÜ2Ã’222’1NBHœH, €!ºO!!HHBÃÌÃÌÃ&Ï]ç33dddBñÃññBœÜ»·üŽd:ŽíŽÄJ™ûìÛgdÛBO#€!œœlœÃ1Od¹ý[¯?’BB!ŒO¹ñgñ>&O‹7Ç‹G7‘}}Ã}}wè7#èÌOO#õ!7èè#õõŒõõõuõõõŒŒŒŒ‹XŒ#ÉGGq­þvȾ¡ˆ®®›È¾¦¦¦¦©©©©©`Í`Í`©©©„©„„©©„©Í©„©„„9ª©„©”'ÉwuÉuwww#w#u#w#u#ww#uuuuÉuu#‹uuu#ÉuuuuŒuŒuuuuuu#uõuuõ#õ#õ€è!!!!!!è#uuõ‹u##õ#####õèu##€#€#è#u€è#€u##èè€..ݺàÝt.ÝHÃt’..o…| |°t11Ü{´¯ºdhýFœ»ºO€Òt’œ?1êlê!Hlµ22ŠN¶PNèt#!ººÒ€€!ÝÝtHOBñÃHÃHB>OBÏBdd»dœ}lBñÀ%ÖâÂûn¼FJÂ}Gx&3ç>d#œ»ü?ÛºÃ̹O!uŒ#ÌéÌÌñdd??lܺO¹!O¹www##uu#w!w#uŒXuÉuu#ww!¹!w#uuŒX####uŒXŒuŒuŒXŒXŒXŒõŒŒŒÉxxqkþv¾¾¾¡¡``©C©©©©©©©©9©©©©©Í©©©©©©©„„„§   ƒª9ƒ¡(pŸÉ#É##uuwwuu#w!7!#####uÉ#####uuu#u#‹uuu#‹uuuÉuuu#u#è#####è##è###uuu#u#uu#u#u#u‹##u###õ#õ#õ€##€èuu€#è!OOººto¶’.H…tPP……Ë| ZZØyÖ{c3hhy@l?2.œh·¹»ÃB1ÃtHÜœHº.Ý.P2¶’PÜœHººÌêÃ!€€Ü’N?µý‰2lÜœ1ÃHH´?œBœÛ7B?üyÃdÀö:äGû¼Tö:ÛÛ¹¹GñÛ!}O!ñ?B}!#X#!è!Ì>GwO̹º?lÝݹ€!!###€w#uuuuuXŒuuw#uuuõuuwwõõŒõõŒuu#uŒXŒuuXŒXŒXŒŒXŒŒuuXÉ7xqk ›¾¾*``©©©©©©©„©Í„©„©©Í©ÍÍÍ©©©Í©©©„©„©ÍÍ9ÍÍ„ Ù\‘Ç7###u#uw€ww¹!!w#w##uuu#u#ww#uuuuÉuuu#uuuu#uuu‹#uu######è#######u#uu#uu#uõ#u####u##õ#####uèuu#uõ u#!!!Ýt’PPÞ["¶¶|iiPË |[[·ØFc·Ã?ý2Ã1ºœÜÜÃÃ1Ãliµ1Pœœ2ll¶œàº1¶liÃO!OtºÃH1êt¶o.l1ÃÃÃ1úHlBÜñÃñ¹!wdy{»ùâ™íìf™gdÂ>xG¹¹}ÛOŒ#ºO€h!O¹!èè!dFüdd}¹œœÃº!€º!Ow#uX#w#uuuuŒŒXuuXuuuuuuuŒŒŒXuuu#ŒõuõŒXŒuŒuŒXXŒXŒXŒõõŒŒÉ7xk\vȾ*¡`©C©C„©©©©©©©„Í©Í``¡Í©©Í©©©©ÍÍ9Í©Cp”q‘É#u####ww!w¹¹}!w#!####uuuuw#uuuuuuu#u‹uuuÉuuuuuuu#######u#u###u#uu#uu#uu#u‹#u#u##u###õ#õ#õ€õ#€u u€#€!€€.1¶Š2¶Z[ i° |¶Š’1œhd3¯ùY@Ül}?ýº!BwwHÜ??l2l’Ü"[Š’12ÞÜtÜ??ld2Ü112ݒܶHHÜœÃÃÃú}œBºÛŒÛ¹ññ!»¯d>éÏÀÂÂÀÂ>Ì&¹¹¹7õu!“OÃ!!}O#èèè!¹B]]ññœÃ¹Ã¹ºÝ!¹!##uX“u#uuŒuuuuuŒXŒuuÉ##uõuu#uŒ“ŒŒŒuŒuŒXŒXXŒuŒXŒXŒXŒX‹uX‹7qkeÈÈ*¡¡©©C„(©(©©©©©©Í©©Í©©¡¡Í©„„„ªªª„99ÍÍ( RúóÉwŒ###ww#wwXw¹Owuuw#######u€#É#uu###uuuu#uuuu#u#u#uuuuuuuuu#uuu#u#u‹#u‹u#uu#u####u#õ#õ###€#è€#€#u!!u!€€€.P2¶ŠŠZ$±°i°Z ŠPP à!tB!¹ñy%d#Ý .! Ý#¹œ¹Ã122Ü1ÃHàHœÜÃ2ýµ2¶ý·°2·»»ýýÜHºàê.ÝHŠ1HêÜÜœBœBºÃddBÜÛ}ñ}´ÂB™dñ-FÏ>ñdñOO!õXuO!X#º!!O€!dü]çÏéd1OÃÃO!€uuuuŒXuuŒXuuu#uXŒuuuuuŒŒŒŒXuuuuu#XuuŒXŒXŒuXŒXŒXŒXŒõõõuŒ‹ÉLfjÚ¾*Í©©„C„„©©©©„©©©``©©©`©`©©©„©9ÍÍ** ‘ì‹èu#ww!w#è#Xu#wuuu##u##u#u####u##uÉuu#uÉuu#u#uuu‹uu#‹uu#uuu#u##u#u#uuuuuu#u##u‹u##uuõ##õ##õ€##€#u!O€€€Ý.’’…’ËŠ"Z$$‰ ŠŠÞ¶¶l?êO#!OdºÃ1# Ò!ºÃœœº!€tHºº?µiNÜ12iµP2·‰°O€€HHÝ!.Ý!’’2Hê1l???œBœdœœdd}™ññB»Ã}}¹w&Ìç&ÛÌñÌOOÜê#“€# w!¹OÌ´ü3dÌG&ÌBñÃB¹€BB!Ow#ŒŒXŒu#uŒuŒuŒuuŒuuXŒXŒuuuww#ŒuŒXŒuŒuuŒXŒuŒuŒuŒXŒXŒXŒuuŒu7qfe ˆ¡©©©©„©©©`©©©©©©``Í©©©„©©`ÍÍÍÍÍ©``''ó‘Œ7u!èw!!!#uuw##w!wwuuuuu#uÉuuuu#É##uuuuuuu#uuu‹#uu#uuuu#uu#u###u#u#wuuu#u‹uu#u#u#u##‹õ#õ#####uu#u !O€€€.ÃP…tÞŠ||[‰Z[ii"ilN %±·´??º¹!u#€ €€!XB?´O €Ý.€º22ýßß[Šlil2ÜP¶µ[ÝÃ!!Xº’u.HÜltÜ2llldÜœBœ»d7´™´33¯ñ3B7>&>]òÏ&¹wè¹##O´·O #€“¹ÜOOºd?¹!!ì7¹Ì¹ºBœñù}¹wõXuuuuŒXuuŒuuŒuuŒŒXŒXŒXuuuuuuuŒXŒXŒuŒXuŒXŒXŒXŒXŒXŒõŒõŒuŒ‹7ÕÚ ¾`9©„ ©©`©„©©`¡¡¡`„©©`©©©©©©„„„„`ÍÊ9``MM)­‹‹7‹!!w!w#u###Xww€7uuwuuÉuuuuu#u#uuuu#u#u#uuu#uuuuu#‹uuu#‹uu‹uuuuuu#uuu#uuuu#u#####u#uõuõ#õõõ õu#€€uu€€€àº’1’…ŠŠ["°Þ"·µ2ꊊ[±i2?ÜùBy»!!# ÝX#€€Ý¹€Œ!11Ü12lýß@±a·[[µ2Nœ[±[œº.œHÝ .€’?i2êÜ2ÃÃÃB1œœdBBd]ö»¹Ââd?dñÀòñ&ñ7èèõèOO!OBêêuu€u¹1¹¹}BœñB!è‹èOŒBñ»ýdœBBB7#uŒuXŒŒXŒXŒXŒXŒuXŒXŒXŒuuŒuuŒuuuuŒuXŒuŒXuXŒXŒXXŒXŒõŒXõŒuŒÉóÑ*`„Í©©„©©©©„ („„©©„(©©`Í`©©`©„„C©`¡9ª`* ”Ñ‘‘Ç‹õ“èuè######ww!w#w#u##uuu#u#u#uuuu#uu#uu‹#u#uuÉu#uuuu#uuuuuuuu#u#u‹#uu‹#u#u‹#uuuuu‹õuu‹õ####õ#uõ€#uu!tÝ.H¶Š2PÞN ° NNÞ’1’’li·@@i‰¯hÜH3üdœX!·?.€€€€!BœPºœ2Ülܱ[´Ü[yý´Š2212N2ýl11.OàÃ1HH2hµ1ÝtÜdddBBœñB}œ´ŽŽ´¹]}Ž»ö{>ÏÛ>ç&!èè‹!¹ñBê´êdÃ!OÝ!O!OO¹¹¹7èÌ&ç»ö´d?ddñ#uuuuŒXŒuŒXuŒXuŒXuŒXXuŒuuuŒuuuuuuŒuuŒuuŒXuŒXŒuŒXŒŒõõõXuŒÇxÕÚ¦`„„Í`©©©©„C©©```````©``©`©©(©C©``¡¡©`¡MD”I‹‹èGèu¹!###ww!w€w!uu##uwuu#uu#uuu#u#uu#‹uuuuuu‹uuuuu#u#u‹uu#u#u#‹uuuuuuu#uuuuuuuu#u#uu####è#####õ#€èu €OHºtHÞiN¶2ŠNÞµiiÞÜl1t’N[¯±·¯ýdºÃ3l2ÜœýºtÝ#uÃÜ’Ãàt2Pœ1’µº’H÷2œ22Nlê2ºœ!1HtÝ€HH1êµÃtHBBÜdlÜœœB}ñ>˜B™}>F´™O>¹&¹‹Œ‹õõè!!{Ã}Ã!Xuu!!!O!!èèü]F?BœBd?´>}wuõŒuXŒuXõuŒõuŒuŒXŒuŒŒuŒuu#uÉuuuŒuXŒuXŒuXŒuŒuXuŒuŒõŒõõõu‹É­Ú `©©©©„©„©©©©©„C©©`©`©`©©`„`©`©¡¡¦„*¾ Ió‹É‹¹ñO!ñÃwww!!!7!#7#uu#uwu#uu#uu‹#uuu#uuuuÉuuÉuuu#u#uu‹uuuu#uu‹#uuuuÉuu‹#uuu‹#u#u###########õ####€è€€€è!ºOOÝ2iiж¶¶1¶Šiµll’ÝtHœ?ý2»?lµlï{·N?i?21P{@?œPº’ŠÜœiy@¯µÃH1HlÜÜi?lµli.??ÃHHÃêê?HHêꜜBñBÛ¹¹B¹ñÂd´¹ñ>ÂñÛ¹O¹ì‹ŒŒuuu‹#èèüùÃ!u###è!##u!Odò3¹´B&ÛÃBñd>Ì7#uuõŒXŒuŒõXŒõõuuuuŒuXuu####uuŒuuŒuuuŒuuŒuŒXuŒXŒuŒŒõõõõõ‹‹DC`„„©©©©©©©©©C©(©C©`©`©````¡¡©`¡¡`¦Dp÷ú‘Éw‹u!ÌwwBÛ!!!7!w!wuO!##uuwuu#‹uuuuu#‹uuu#uuuuuuu#uu#‹uuuu#u#‹uuuuu#u#uuuuuu#uuuu‹uu‹õu########õ####è€!!€!º€ÝÝtœi"iP¶2NŠÜÜllœÜlܺºl»l´Ã¹?ÜœÃÜ·Ø12N[±¯2œ?dP’’2°l21œ»l´ýh{yÜhàºÃH211HHê?ÜêêBêBÃ}ÃBBœB¹O}}¹¹¹»¹G}ñ7}]3&wuõ‹è‹#èè!€#€!1B!O!XèXuuèuwOdñ´ÌÃ}¹&ñ>éÌ!###õXŒõõŒõuŒõŒ#uuuuuuuw#w#uuXŒuuŒuŒuuŒuXuŒuŒuuŒ‹uõõõuõ#‹wþŸ¦C„©„Í„©Í©©```©``¦``©©©`©`©¦*¡`©¡``Cp”Ú‘ÉÉ#uuu!u“¹www!ww##u#¹}7#uu#uuuuu#uÉuuuu‹#uu#u#u#uu#uuuuu#u#uuuu#u#u#uu#uuÉuu‹uu#uuuŒXuuuuuuè##õ###€#uè!!!!OOÝt’œ2?NŠNµ[µlêlý??ýBÃ?Ã!ÜB!êHl[[œ‰µi@±{µÜH€º’2ii2iܵlµºyYÖyy@¯ýXÞœP2[?HêllÃBÜ?BÃÌ}Ãw¹}}}}¹7}7]7Û¹}>B>»¯ñOŒÇŒŒŒõŒõ“Œ##Xu#uºœO€wX#ÒuõèõOÛ»öçÌBñ´7OB̹}&>>ñ̹7èw##w#u#‹u#u##w#uÉuuÉ##u#uuŒXuŒuuuuŒuuŒuXuŒuŒ‹Œõ‹õ õõ#‹É‘šÈMCÍ„„©Í`©©ª((„C„C„©`C©``¦¡¡Ê*©©¦CDek‘É7wX#€X##Œwwww###u#u#¹¹w##u#u#uu#uuuu#uuuuu#uuuuu#‹uuÉuuÉuu‹uuu#‹uuu‹uuu#uuuuuu#‹uu#uu#u####èè####€è€#€OOO!!Otê22lNh°µý??µý?2??dÃ!l?Ü?ÃݺÝH ’’ŠiPNN1tH’lÞ|lаiý?ÃÜý´2ya²Ø%²%²Pl?2Ü2€2i?êlÃ?llBú!!!!!!O¹}Ãw}ñB‹}}7wÛ%dwŒu‹#‹‹w!7“X€è€!XuœO#€u!uuXõ“7O´d&!ñùÌñÌÌO!è!O!Oèèè€èèèèw###uu##uu#ÉuuuŒuuuuŒuuuXuŒuŒuuuõ‹õõõõõõõ‹‹­ÚC¦©„„©„„©``¦¦¦¦C©©©©¦¡¡*¦©C¦¡DvQÇÉÉŒuu#€Ò€!w!!!€€####wX!!uuw#Éuuu‹uuu#uuuÉuuu‹u#uÉuuuuuuuuuuuuuuuuuuuuuu#uu#uuuÉuuuu#u#w#wèèèè€èè##è耀€!ºHºOà!€liii[µµ?[?l·»?h@üÜcldœOÃÜÃH?µ."àP1¶ºÝ’Ü|·ß2ºµ[[NÜ œ?tê¯%¯·Ø°ŠH1µ?22lÃÃ?dÜ??dÃùu#€!wÃ!OÃ}Ãññ}¹¹}¹###!¹¹wXu‹##uXõuuè##õõ€!OHÃÝ#u##€#!O!Ìd7O¹!¹¹Bd>ñOO!è!è!!##€!!€è€è#wu#uuuuuuXuuŒuuŒuuuuŒu‹XuuuuŒuŒuuuu##u#õ#‹‹ÉxþM`(„`¡©„(©©©C©C©©¦¦©`¡¡©¦¡¦`C`¾j‹‹uÉ‹Œu#u##€€€€!!!€u u##u¹}!w!¹!u##uuu#wuuuuuuuuwuuu#w#####w##uu##u#uu##uuÉu###Éuu#Éuu####!!!!è€7!èè€#€#XÝO.H’.à.ÝàB?ý·‰i[´i@ý?33{»3ýü?!€»´i1º·œNœµP´ ?PµŠ[i°lµ.12œlµ·´üº}!ïØùùFñt2µ"iNl´lœ1dœdBº€€HOF1u}1!?]BdwB¹##uuuw##uuuèè7!èè€!€õõè!¹ÃB!!OO¹èO¹¹B´»¹¹¹!wèO¹&ññÃO!è€u### u###è€#w###uuuuuuuuŒuuuuuuŒuŒuuuuuŒuŒuuuŒõ‹uõuu‹#uuXX#ì\jM ``©`©©©D©¦C©©(©¦`¦`CCMv)‘Éuu#uw#wwè#!ÝÝÝÝà€ u uu€u!¹w#w77Xu#uuuuuuuuuuuÉuuu##uuuu#u#u##w#u#u###uuuuu#uuuuÉuuuuw#õ!##!€õ€O!###€u€€€Ý..’Pt€HÜê12i·°?µµµ[ý·´Ãñ3´œdØ·%%´2%°2¶l‰ ·NP·[Ši.iail1h{hµ3ÃÃ!¹}´Ìh?YZ?1êŠ2HÜœœBBÛHœœÃè#OüºuBœ!ü¹X¹ŒõuuŒŒÒuwŒuu#!¹¹OèOOOè #!HÃÃ!!¹!!O¹BBO##è##7O¹ÌBÌ!!€#€!€!õu€€€€#€###uu#uuŒuŒuuuŒuŒuuuuuuŒuuŒuuuuŒuuuu‹u‹uuu##uŒX‹Q)jI ` ¦¡`C©C©©©„`¦©©C¤CpúÉ#uu#w#u##€€OºtÝ€€€ u u€uwwuuwwuuuu##uuuuuuuuuuuuÉw#uu‹uÉuw####u###u#u#uu#uuuuuu#uXuwwèu!€OÃt!#!€##€!€€àºtt12¶’’’1œlllÜlllµlhc¯´Bñ€OOBÃ1´ü¯yZlºllºÜÃ2‰±ÞÞP°?[?[ýµß%%{üý»dùÌÌdñ·Šœ2lýh?ÜdÜñÃB}º}OO¹HBœdœB´œœBO!O}wwXŒ““ŒuuXŒuuuŒu#w!!!#!OO€õ€!O!OO!uèOB!O}¹ÛÏ»Ì#õuõõè!!OO¹¹¹!!!€!!Ot¹!€!€!€!€##u#u#uÉuuuuŒuuuuuuŒuŒuuŒuuuuŒuu‹#Œuuuuu#u‹##uuuÇÇ)ÚDpCCC`©©©„`©`Ê¡©CCCpe­ÉÉwuuu### €€€ÝºHO€€€ €€ €#u##Œu#Éuuuu##u##uÉuuÉuuuuw!!wuu#w###uuuu#uu#u####uu#uuuuwuuu€!€#OtBêBHÝ€!#€!Ý€Ýtº€à’œN"lÃ1llÜýýµ?iýÜêlBÌ!ÃÜB1¹HœÝ?yy±ºÃ1±2iœ‰·l¶i2"·°·ýÜœ[y±YaYYy]»d»ê1?[»llœB}}}¹O!!!OOO!#€}ü?ñùu#“#X!uuŒŒXŒuuu#u###uõu#X#!!è#€Oõ Xu€#!¹u!¯ü?»¯¹è#ŒŒõ#èèè!!!O#u#€!!OOOÝO!!!w!u##uÉu#uuuŒuuuŒuŒuŒuuuuuuuŒuuuuŒuuuuu‹u#uuuŒuÉ#uwuÇŒ‘qe'¤D©CC¦`¦©„©` CC¤ŸÄú}ÉŒŒ##w##u €àtºººÃH¹€€€w€#€w€u#uuuÉ#uwuuuuuuwuuuuuuuu#!!7w##w##uuuÉu#u##u#u#u#u#uu#u###€#€#€€ºHHOHHHÝ€€€ÝÝÝtº2.ºoŠ·?2??2l[¯[lœœÜœ1êÃê!t!Oœ!1?HœH€?œ?NN’[[¶Š2±Þ’[Š?‰iµlº2%cY%YÖ%%ücF¯·ÜÃÜ???dÃñÃ}¹}¹OXuOº!¹ÃHBÃ!œBÃ#!#uXwwwuuu“Xuwww#èwuXŒŒXXu€€€€€Ý!õõõuu€O¹?ñ¹}ñ3dèõõõõõ#èèèè77!€è€!!OÝOO!!!€€w####uuu#ŒuuuuŒuuuuuuuŒuŒuŒuuuŒuuuŒõ‹uuuu##uŒXuuXuu#uÉÉ‘­\ÚMCCCC` `DCCÚ\qqxÉuXu#Xu#€ ào.H…’Htt!#!!€ €u€wu#####wu#XŒuuuu#uuuuuuuu##7€wuu#uuuuu##w#u###u#u##uuu### u€€€€€ÝOtt.tHHÝ€àÝ!.ºt1P"Z"2¶@·ý°@{[Ü·[?ܺtœÃÃB!ÃÃHt?ay1à ÃÒœ@yÜ2lßi¶°±$$’?P???@œœýœ´œœd»¯FFùc¯·»?BÜ}}¹!!!!7!X#!}F{´#??w¹!u#X#X#u#uuu#€###uuuXXXXõuè#€#€€!!€ õ!!!!#}œB¹¹}ÃBèuuu‹u##èèè€!!!€!!ÝO!!!!€w€è€#wu#uu#uuuŒuuu‹uŒuŒuuuuuuuuŒuuuŒuuuuu#u#Œ##uŒuuŒÒX #uXÇÇQ­veID”Mj\×Ñek‘ÇÇÇuuu €uõu€Ýt…P¶œº€è€è!€€#uuu#u##ww#uÉ#ŒXwwuu#uuuu#uuuu#u#uu#uww#####w#uuu#####u#u##è€# €à.ºººHÃ1’.ÝÝ€tHot1œ.H·²Øit¶y@¯·Ü?·yýœœ€HOOt1€!tH?ýýN1tÞÒœ2œ’Šýli‰iŠ?"µµß߯iœÃ!œñœBdñB}Oýöd?ÜÛB}!wwwww#wX!ñ?h»BÃ?}¹u###èXu #Xu#è!#XÒuXŒŒõuuXè€# #€## #õXèO¹¹¹!!¹¹¹OO¹Bñè‹uXõ#èè#èè!è€è!!O¹Ý!!!€w€€!€#wu#uuuŒuuuŒuXuuuuu‹uŒuŒuŒuuŒuuŒuŒu‹uuuŒuÉuuuuuu XuuuuÉ‹ÉþÑÇ‘ÉÉÉw## u èè€ÝPÞÞ¶ŠÞt õ7O!€#uXuuuu#w!w#Éu#‹u¹¹wuÉuuÉuuuuu#uuuu##u¹Oww#uuuu####u#u##uu##!!€à€.º11’µ¶Ü2’€à1.’’tt¶2’i2"@ZZ‰2’?µ??h·hµœÜ·œ.œOÃOtê´!tBiœ2hi.œHºÒœœÜØl’Nl@·°¶œ°ýµ%±%YœºBO¹¹d»?c»»Ö¹º}}O!!¹O}€#Œ#Xw€w!BÛ¹Od?¹!OO#XXu##è#ÒuX#!€uXu#uXÒ“Xu ÒX€€!€€€õõ è!HÌtÛ¹¹¹!wÌñB¹!èèõõuè!!!èèè€#€€!€O!!!!!€w#w###uuu‹uuŒuuuuuu‹uuuuuu#uuu‹XuŒuuuuuu‹uuuuu#uuuuuu uuuuÉuÉÉÉÉÉɋɋɋÉÉÉwuuuuX€u€!H1œÞÞŠ¶.à!!Oè!u##uX#uuX#wX¹Bw}u‹w}u‹Xu#uuuuu#uŒ7X#!Œ!!!!w#u##uÉ##uw#èu#u##€è€.Ò..’’¶œœ22’€ê2ê’PŠt¶µ¶ ßP1[?·[»Ü2Ü?´2?»´2ÜHt€!ꀀ ºÝÃ’€P´ý12ýµ·ß··ý‰‰@i°ýýlýŠýÜý¯h?»´dF?Fcœ´!w!O!#uu#¹u#X!#¹!!O¹lºBB}!!O!#Xu€!#!!#Xu#!èuuè##uuuuuu!!€€€!tH€##€!OOO¹}¹O¹¹!ÃB!!èõõ#èèèèèu#€#€w€!!!!!!€!€€w€w#É#uXuuuuuuÉuuuuuuuuuuuuuuŒuu#uu‹uuuu#u#uu‹u#uuuuuuuuuuu#u#u#####uÉ##ÉŒu##uè õÝ1¶2¶¶PP.€€€#‹##!¹€###wX##Œ7¹uwWuɹÉw¹7w###u#uuwuŒuuuÉuuw####www#XŒŒXXè#è€è€!€ oº1P22.€ àtPto¶H?i€PÃê11’lÜœH1ܵ?ÃBl{adœ€Oý[iHÝt ÃÝ?µß{[µ?µaµ[ý»PlNýiÜl?yh»»F?yY¯?d»!##!w!!uwuwu¹¹¹u}Ã}}ñB¹!èw!w#uu#!!##€uu!!!#u#€€#€#uu€ut!!€!.HBOÝ!!€èè#Oº¹O!¹wO}̹¹7èu#####u#u€#€#€!€!!!€!w##€ww##uu‹Xu‹uuuuuuuu‹uu‹uu‹uuuuuŒuuuuu‹uu‹uu#uuu#‹‹‹##u#u##u #uuu€uuuuuu#uXu#u€!õHPNiµÞ¶œ.!€€èõõuu¹}wu#!¹u#wX#wŒ‹É¹É7u¹}¹Ow####u#}u#w“wu#w#w#uuuuuuuw€!!€uÒ €€€ .ºo.21œtHot.t…1.Š HŠ´l?ýµ[{ý1BÃÃ÷œººÝúÜ?èuÃò·œºÃ?·ý?œ?iýl1ý±[??iýµ’°Ü?»ýôFülÖÖ²cF»´OB¹!##w!7!##u!!¹¹¹èÃ}!!¹OwuX#èuXõu€!O€!!#!O!u#€##€#€€#u !€!!OtHHOÝO!!€€#!!¹!¹!7!7¹Ì̹OOèuuõõuu##€è€€€€w€!€€w€€€#w##uuuuXuuuuuu#u‹uuuuuuuuuuuuŒuuuu‹uuuuuuu‹uu‹#u‹‹‹u‹uuu# u € uuuu#u#èõ€Ý.HP2Š2œ’ººÝ!€è€èuuu!OuXw!7u#7uu#u7xÛwÉŒ77¹Ow##€##w}!wwu!#w€w!w#uuuuuw€#XÒ!€ÝÝ.Ý..¶"2PÞ2Hoà.lHÝtNotP¶"%‰ß‰l¶hF?ldB2h»lBº! è !œdh?»»c2œi2°¯?µdlidH2ýß·i·iÜ@·2lÜdd{⯴Ø%F»üôÃ!!!OO!##!€O¹!OH!}!è¹}O#Œèõu#õ“Xè##!OOH!!Oº€uu€ uu#€# uX #€.tºOÝ!!!!!!!!!!w!www!èOO¹¹!è##õõŒ###è!!!!!!€w#€w€##uuuuuuuŒŒŒuŒuu‹uuuuuuuuuuuuuu‹uuu##uuÉu#u#uuuuuuu‹u‹#‹#uu #u€u####€#€uuuuuuu€€Ò.’ê…P¶ÞŠ2œB¹¹èèè€#€uŒwwuuw#wuw!#Œw¹wxÛwwŒÉ#¹wuu###uu#¹uu!Œwuuww€7w#€u#€!!Ýt Hê2Ht2¶‰·µNœŠ2ê1t?¶êêhµ ‰êàPܲ@œHÜhýÜB?¹€¹Hd€d¯Fyü¯?»Üý¯ß¯{?lý@»22ld?@@ii@?»´·hܯyhFñü»ö}?¯ÜdBù¹!Oݹœ}œÃº¹BO##¹7uuuuõuõX‹!!€ÝOOº¹€#€€#õ õuuu#€#€u # €!Oºtt€€!O!!!Oè#èwèuuè#èèèèè#õõõŒõõõèè!!!!€##€uuu€uu uXuuuŒXXŒuuuuu#u#uuu‹uu‹u‹#uuuuÉuuÉ#uuu#u‹#u‹#u#u#‹õ#õuuu# uu#u#u##uuuuuuÒ €à HŠËP……’œÃ¹#¹¹èuuX uuŒ#77#ÉXŒXuw#X#¹ÉÉxwx7G¹w#uuuu#uu#¹Œu!Xw####w##u#Xu€Ýºœ?ttHêP1’Pê2PŠ·Pœ1ê2ÜÜ2?Ü2[[2Z@êtê?y{ýÃù¹œºtO€!!€!uHuÜF·òüF»¯¯l?B»»ý?Bœ?œÃœµ@µlµ{ß%yýc¯d¯dññBBFyd{دdB!€!¹ÃBÜB?têO!è!!!#uèuuŒuŒõè!!è!!!€!õõõ#õ€õX uu€€!€€#€€ €tºH#€!!è!!!è##€#uuèuuu##õõŒuuõŒõu#è#€è€#€u Xu Xu XXXŒŒXuŒuuuŒuŒuuu#‹uuuuuuuuu‹u#u#u#uu##Éu#uuuuu‹u‹õ#õ#õ# u€u##uw#Éw#É#uu#uu €oo…||"˶…¹!w77Éè#uu uŒÉ!w##uŒÉuuuuÉ!#‹7ɹ7}}É#uuuu #€}#u7w!O!ww€#uu€u X Ý1PÝàt¶2t’P ºµ’H.ÒtHÝêêê1|HµŠ’1€l¯ccüñBºœ!!u!Ý#€ºœ?´l´]{ââ²F¯?B»ºœœœÃÜ´?’2·ß?œl@[ý»l»B¯ññ¹OÜhh´ýlBÃBl?dHd1O€Ã!¹èèè!#Œõ#uõuu##Ò !O€OOÝ!õõ€èõXõu€€€!!!!€€€!OHHº€è!!èèèw!€#w#uõw#õõõõõuèuuŒõõõõuuXuu#uXuXXXXXXXXŒXXŒuuuuuuuuuÉuuuuuuuuuuuuuuu####uÉu#uuÉuu‹#uuu#õ##õõuu u###‹‹‹‹‹#ÉuÉu#u€ ào.|||€ ww‹‹#w€€€#wŒu#XŒ#uwwuŒ#wuuɌɌÉWwx##É#uu##OOw#X¹!w!w€w!w€# €Ý!€ºœÜ’’P¶PP¶°Ht.H21t€ÃÝÝtÜPt222œ1Bº?adñ}B!€!!!€!ÝO?ya²â]ücü¯?hdœºBÃ1œ?[·iµœ´ý@[¯[µ?·lldBBd»dÃ}O¯dœF{œl¹·ÜHÝtê»ÜÃB“¹õOXõèuÒX!ú€€Htt t!#€#€#####!Ý# XÝÝ€ºO!€!ݹº!èèèõ#uu###uuuõõuuu‹u‹uõŒõŒõŒuuuXuXXuXuuXuuuuŒuXuuŒuuŒuuu‹uuuuu‹uu‹u#u#‹Xuuu#u##uuuuu#uuuuuuu#uuuõ#õ u uX€wè##É‹‹#‹uõu€€àà.…¶¶o XõõŒè7!x¹¹!#uuu#u##u“ww“u7“w##‹##77}Guuw#Œ!#!u#€#O€u!!€# uÝ € ’à.i1’t’’H¶°êt.à 1tot2.HHê2.ÞœH´¯BÃO}B¹èèèOOttl??hÝB?»BÃlB?Ü1»1Ý!ºº2·¯@l??l··?[»l´l´ÃñlF¯ühÜ?œO!lýiÃý€O1lºHêêydè#!è€èÒ€!!!ÝtÝ€à Ý#t.Ý!!èõ#è!€Ýt! #€€!€€u##!€7€è###u#####uuŒuõ‹õõõõuuõŒuŒuuuŒuXŒuuuuuuŒuŒuuuŒuŒuuuuuuuuuuuuuuuuuuu‹uu#u#u####u#u#uu#u#u#u#uu‹u#uu#uuu€#uõŒ‹¹&‹#u##€€àHPP…’…ºº€€X#uèuè!ww7w#u##uuu##wuw#Œ¹ñ!#uuuw7wÉ7g7Œ!uu##€!è€#!!€Ý€u€à€à2’º1 €2H¶1l°2à’1Š à.t’2°¶?P·°lµÃ?h!èOèÌGè‹‹èè uÝÜýý1²Bê¹HBœœ1Ã?HtºHt2?[@·[œ?B1lHl»üô{@·Üº»ÃOÜO?ÜhÃܺ1Fy¯Hœ»!O!!è€X€!àݺœ2œtºt1’º€!OO#õõèèOO.ÝOººè€#uu€###è####õõõõõõuõ‹uuŒXuŒuŒõŒõŒõõŒuŒuŒuXŒuŒuŒuuuXŒuŒuuuŒuŒu‹uuuu‹uuuuuŒuŒõõu#w###‹#u#uu#u#uuuuuu‹uu#uuuuu u u€#u##‹7Û##Œ#!ÝÝÝ1Pœ1’º.à€€€u €!uèèwu#u‹uuu#uu#u€#wuuÛ7#uu#!77ww7}#»¹€OXO»üH!H€!€€ÝÝ€ € .œº ຒ2¶êÞ@1Þµ€. €HtP@[‰NPilصlµºhHºÜHÌÃBOOè#è#€€!ÝÝ1h?lh?OÃÃBÜBÜÜÃÜÃÜÜlli1ÜtHl1lµÃ2±œ1œ1œ??¯»²Fcc???»h´»Ãê{œœ1ÃtºtH1?H?l!ê?BÝO!tÜÜêÃ11ÃÝŠœ’Ãt!€€tOOèèõ#è!à! !tÝ#€€€€#€€#õõ###uõõuŒõuõuuuuuuuŒuuuŒõuŒuŒuuŒXŒuŒuXuŒuŒuuuuŒuŒuuuuuuu‹uuu‹uuuuuuu#èèèèèè##‹uu#uu‹#u#uÉuuu#uu#uu#uuuu uu!‹Œ‹}w‹u#€!.tÃPœP…..ÝÝÝ€€###õu#u‹uÉ### uuuu##uuuu7¹X€€w!7¹ww!ɹX»ddÃB¹¹»ýBHñÝOÝ!Ý!!.€¶µ’oPœPê¶·ià1H.?Š2H .€N.122µ$ýýµiœYØœÃtdhOõ!õè€õOl?œœlyyýñ´ühdhÃ!Ã1ê´h?[2ÞtºN2hµl€?2ÜÜ´??·h¯%câ3´3Bü»º¹Ü´´Ü»ÃÜý»Ü?[O€XÝHlB!HHHOÝOœ´N22l2111ººt€X!!OOOèè#€Ã1º€€Ot#uu€##uuõõõõõuŒõŒõõŒuõ‹uuŒuuuuŒuuŒXuŒXŒXŒXŒXuŒuŒuuuŒuŒuuuuŒuŒuuuŒuuuuuu#‹õu‹#è!!!7!è##uu#‹uuuuuuuuu#uu#uu#uuuuuu#uX#uŒ7ñè##õu!.Hê¶2ê1’’º’ºÝ!€!# õõuuuu#w#uu#u€u##XuuuŒuu7!wwww7!7!wœœºœÜBœBºOtHÝ!Ýtܵtê[[1.¶ýµ11‰ýŠ?.1tê°H’¶t¶µ[¶’2$a%ya??#º¹Ã?dOõèX##€td?lÜ’¯´?d´»¯h?hdÜÜ1Ü2êNl·µµ[Šiliݺµœº1ÜÜ?Ãâ´3>ñ¹ÛhFdôh@´h.lý?lÃHœÃºœœO€€.ºhllºÝHtÝÝ.t’1œH1HHÝ!!!OO!€HêÃHHú€€u#€#uõõõuuuuõõõŒõŒõõõuuuuuuuuuXŒuŒXŒXŒXŒXŒXŒuXŒuŒuXuuŒuŒuuuuuuuuX‹uu#uuu#èèèw!èèè###uuuuu#uu#u#uu‹#uu‹#uuuu# uuuu##õè}#### €t11êPPœ¶2PÃH!€!€èu#uu‹#uw€u# uuu#u#ŒXÉuŒwÛw!w#u#è!!¹tuBÝÝ!ÃÃ!!!ÝõOHt€!ÝH21ê2Šll2HHêiê1ê@N’€ P·12@°Ý܉µ?ܺ´??cy»aœºHÃ1!õ.Ý!Ý!Ýt11.uœB´´d»´]´?Ü»l1HlÜ1HdŠi‰ i?1’Üiý[@ýl11ÜO!BB]]çÀ]¯cFýyüÃtà !t€! œ1ÝOlHHtt€1!’tºº..Hl??NÜœ.ººÜ?êHO!!OO€€!!ºÃºu€€#€#€uuu‹õŒõŒõŒõŒõõŒuŒõuu‹uu‹uuŒuŒXuŒXŒXŒXŒuŒXŒuuuŒuŒuXuuŒuŒu‹uŒuuuu#u###èè!èèè####uuõ‹uuuu#‹uu#uuuuuuuuuuuuuuuXuww#‹#####€!t’1’11’1l21ºO!€€è# ###è###w# #uuu#u##uu#u7B!wuuu#wèèÀ!.1€€!º!!€u!€!t!ÝtH1êê11?êê·°2·@’2ŠÜH?ê1’êt.?yN?µÜº¶º“BñB?h´lhœ}1t.HH.Ý.ººOù?3{Ìd?œ}1»ý?ÜÜ1?¶iµµ?Þ?2ºœ2œ?ÜÜœÜ?Oñ¹_FF3âF?üd{{lœHýHýÜ !ÝùœHÝÒ!ÝÜ2Ü1àtÃàÃPœ1œ¶œº.12?ÃH1Ýõ€!!OHÃH.ÝtO€# uu uuX##õõõŒõõŒõõŒõõŒõŒuuŒXuŒuuŒuXŒŒXŒŒXŒXŒXŒuXuŒuuuuŒuŒuuuuuuuŒX‹uu###èè!èèuõ#u#uõ#uuuu#uuuuu‹#u#u#u#u#uuuuuuuwuŒuè¹Ì#õ€!t1êê2Þœ’œÜ’Ý!!!€#Xõõuõuèw##!u#u# uu#X#wuÉu#O7wuu#è€uõOê€êÒ.HÝO!t!Ò€!tÝÝtÜ2ê1Ü.€2ÜPýŠHN?2Üàtà1lê1iH1»·1Ý!¹!u!B#ü²ÜB.ºÝlàºt œ[ÃOlœydñBB¹Ãœ¹€èÃ?hhHÝO1.1H21ܶ1Š1lµ?»iÜi?œ»]d>]ö3™üHêBOœ¹ÃtÃ#tÜlúO€t Ý.H2µ[·‰i2Üܺ Ý2œ1Ãt.€ õHÃÃÝOOtÝÝÝOÝ!€€€# uuuXXõõŒõŒõŒŒXŒŒXŒõuuõŒuuuŒuuŒuXŒXXŒXuuuuuuuŒuŒuuŒXŒuuuuŒuuŒuuu#uw#ww###uuuuuõõõõuuuu‹u#‹uuÉuuuuu‹uuu###u#uuuuuuuXu###€!.êll22l2PÃHºÝO!#uuuu#!!!èèuuuuuuuuuuu#u#w#uuw#uuuu##€€€€.H’HtÝ!!uu€ÝÝt€Hê’êÝêÝ€êêH1€’?X? HtH2tH2’Ã2’.!µ?ºt¹¹¹w#w¹iBº€ºœº€ ºÝh´ý?BBdñü´»}#!!u€Ãd´1d2êit2Š[·@2´i???2œ´œºB»3FdŽ>ñ}}w&œ»dHOHHliÃ!!2·´·?ÀO1ºtÝàtº.€ÒÃÝt1’.€tººÃ’ú݀ €HÜ1!€t!tHÃú!€€u#uXuXõŒõõŒõŒXXŒŒXŒõõuŒuuŒuŒuuXuŒuuŒXŒXŒuŒuŒuŒuuuuŒuuuŒuŒuuuuuuuÉu####è####u‹õuõõuuuuuu#uuuuuuuuuÉuuu‹#u#uÉuuuuŒuuuuuuuX€!tHÜ22êê1ºÝÝ€€è€uõu€#èO!è#uu##uuuuuuuu#uu##uŒuw#Éu##€€!€€.HHHt!!€€€!€õHÜHHÃêlêttl?µi?êti1 €‰’€êŠllê2HH€!.€.€.ݹ}¹O¹¹¹Ý!}Ã}.uÝÝ1º ÃØ%YF3»Yâ¹€!Bœ¹XXtHê’ÃýÜݺµŠÜ2´lœhœ·?hh?œñdBdñO‹¹}̹}¹Ü´lBÃÃÜ?·?[·ýdÝ ÃÜ1u Ã21œli?lœ1µ?ºHiœºtt.Ýttº! Ýt! €€ÝOtÝ!!!€€€uuuXuõŒõŒXŒõŒXXŒõõŒuuõŒuuuŒuŒuuŒXuŒXŒuuŒuuŒuuŒuŒuuŒuuuÉuuuuuuuuu#####u#uuuõõŒ‹õõ‹õ‹##uu#u#u#u#uuu#uuuÉuuuu#‹u‹u##uuu €t1êê2NµŠ21Ht!OÝ##€è€!!!!èè#u##€uuu #uuu!uŒuww#uwwu##€€#à!€!ÝÝÝÝ€ €€!tHtHê1HHHll.2H.tl2µêÃ?ý.tBÝ.B’?’Hi1º€ ºÜýÝÛÌ}¹¹!# Àº€€€ºÃ#yØ%yd»»¹ºw#!ºO!!€€1OH.H 1dºœ[{yµülh@ý»l´´}}!ÛBñ¹¹Ã¹#?BBê1Bœ2BÜÝOHÃ2ÃtÃ!HÝ Òݺtݺ.1œBÝ!¹º.€€ €ÝtêÃ!€.HH!ttttt.Otè€!€# uuõXŒXõŒXŒXŒõõŒõuŒuuXuŒuuuXŒuŒuŒuXŒuuŒXuuŒuXuuŒuuuuu#ÉuÉuÉuu#u#u##uuõõõõuõõõõuõ#õõu#uuuuuuuu#uu#uuuu##u‹#uuuuuu u#!t1ê1ê¶lÜHtÝ!€#!€èè!!OOOè€##uu#€uuuuuuuu#uu#wwwÉw###!€!!ÝÝÝ€€€#€è€€€OH1ê’tH’HàHlHÝÃêÝÜhêÝtHÝHl·yêi´·@ÜœÜt1Ü’Ý’ahBB¹¹OO!€!wºu!œºu€uucö»_²ñ¹´º}¹OÝÃt!œO!tt1H!Hœµ2´¯üy»¯%?´ü{üù¹¹O}¹}O¹Ã!!œ?´´Ò€B?21!ÝHu€Ã€ÒHÝÝtº.ÝtºOºÃ#ut€€ÝÝÝÝÝÝt’1ºÝtt.!ÝtÃêú!!!!#uuuuõŒõŒõõõõŒõõŒuõuuŒuŒuuŒuŒuŒXuŒXuŒuuŒuuŒuuŒuŒuuuuuÉu#u#uu#uuuuu#u#uõuŒõŒõõuŒ‹uuõuu‹uu#‹uÉu#uu#uu#uu#uu#‹u‹#‹uuXu€ÝÃ111’’1Hà€!€uXuuuõèèèè###u€#u#uu uuuuuuuu####uuw##è!!OtttO!###€€!tttÝtºH.t’HÝoêHÜHHê12?êÜ’l2ܰlÝlê2!’œih’!{@}¹!wèww#€€u€?}€w“¹ÀŽdö3uñOB¹ºº}ÃBO#Hl€týý€Blü»F{c¯ù]»?¹}ñññ¹OÜ12ÃOOÜdÜ€ t#1?h·tu!Hœœt€ €.tÝ!ݹOXèº#€!ÝO.tH’ºtttÝ €€€ÝÃÃút!! uuuuõõõõõŒõõuŒõuõŒuŒuuuŒuXuuŒXXŒuŒXuŒuuŒuuŒuXuuuuuÉuuuuuuuuuuuu‹uuu‹Œuõu‹õuŒõuuõõu#‹uu#uuuuuu‹#uu‹u#uuu‹u‹##Éuuuu!Ýœ111P1tÝà!!!€èèè###è#uX #u€# uuuuuuuuu#7}7#Œu####€OººHHtO!#õ##èÝÃ1ÃÝÝ.O.H.t’t.l2H?Ò€êê°X?êHÃ1Ü1Ãl2ýêiµ1Ãýi€.Ý!!wO!###XuX!#¹uw#uÂÛG˜B7¹uO}ºO!##!Ý!“œlHô[ÃÜ»Bý´´ñ´¹]#y´dñ}¹¹BB»´ll2?2HH?dÜÒÒOX €Ý1ÝÒ€Ã1uݺºHÃÃÃOº#!Bè€!ÝÝÝÝÝH’ÜÝ.ººt.HHHttHêdÃt€##€#uõŒuu‹u#‹õõuŒõ‹õuõŒuuŒuŒuŒXŒXuuŒuuXuuŒuuŒuŒuuuuu#uuuuuuuuu‹uuuŒuuuõuõõuõ‹uõõuuuu#u#uu#u#uuuuuÉuuuuuuu##‹#‹u#u!.Ã1œttHtt.àà€ #!wu!è##€èuuuuuuuuu uuu uuuu€¹}ÝwuÉ#w#èèOOHO!!###õõõ€tB’HºHtÝHàt2H.Ãiõê!õ.HÝHÒ?[À?ÝHÝ€daa?[¯#Ýwuuw!###X#u!!€#XuŒ7GG>g77ÛGu“¹#€##!€€#uÒ€!Ý1´2´Hê?¯dB!¹¹#}}GB!}ñB»F?µ?1PHHBœêBÃlÝ, ,uÒúÝÒOÃ!º€!€€!ÃÃ!!€è!€õõuu€ÝtÝ€€€€ºÃ.t11ºÝttt€€tBœ!€€!€uuu‹uu###uõuõuõõuŒuuŒuuuuŒXŒuŒXuŒuŒuŒuuXuŒuX‹u#u#uuuuuuuŒuuuŒuuõuõuuu‹õ#uõõuõ#‹uuuu‹#uuuu#u#uuuuuuu‹#u‹##uuw€¹º1œœHtHHH.O€#€Ý!#èè##õuõõuuuX Xuuuuuuu#uuŒwOwuuuõ###€!OOºÝ!€€èèwèu €tºHÃ1.tt121êH1ÝtÜ€H!HÃ2ÝH?·êHO?{Üýê1?1º!?à uº€Xu#€uuX!X“¹}uw‹}è‘ÛìwŒwŒw“X}ÝO¹O€#€#€OêÜH?B¯3»F´OB¹!7!u7!OññB}?ddc¯iŠHP2??BH꺒#€,“€XX!! BÝ躺ÝÝ€#€!!O¹HOOºt.Ý!€€!Ý€Xà€€ºtº1.ÝÝOtÝ!€ÃHO!O!€uuu€## õXXõuõXXXõuŒuXuŒuŒuuuŒuuŒuuuuXuŒuuuuuXuuuuŒuŒuuu#É#uuuuŒuŒuŒ‹õuu#‹#‹#‹u###uuuu‹uuuuuu#u#uÉuuuuu###u#!œÜœºÃt!ÝO€!à€€Ý€ÝºÝ€#è###õuuuuu#É#uu€Xwu¹ÉwuÉuuŒuu#!#èè€w!ÝOÀè!uõèOè# Ò€ÃHÜN2tP¶2êêÃ’€lê €tH1€X.tÝÃê@´htt´œœ !€ €uu#€€#uXu!“uu!!uuŒŒuwO7ww‹‹uwŒ##Owèuuèuuuê»lÃtÜtñB!¹d?Ûñœ™ÃdœÛ}º}ñÃ?Ü11lýý?21œÜÜ .H’€Ýu !t€€¹!Xݹ݀#€#€!#!€€€ €€€€€u€€€!€àÝ€Ýtt.tt.ttHHHtÝÝ!ÝÝ!!€€uõ õõuõuuuõõXuXuŒuŒuuXuŒuuuŒuuuŒuŒuuuŒuŒuŒuŒuŒuuu‹uuuu##uuuuuuuuuuu#uuuu#u##u‹uuuuuuuuÉu‹uuuuuuuuuuuu#!¹HÃBœBO!!!€€#X# €.ÃÃÝ###uõuu#u#uu#uuu#ŒuŒ7Œu‹Œ#77#uuu€€w!!!!O¹#u€õõõ#?Ò€·êÜ .¶.t µoêiýê..HêH@€Òt´1ê´ êÃt€œlÝœÒOtu€# #uu€!XÒu“X uuuXŒX‹u#‹èŒŒŒõ‹uwŒõ#!#õu€tOhÝÜO!OwŒ¹3´d¹»hh3»´´B}ºÃ¹œœœBÃÜ»Nl222llt€ºÃ.2€ !!X!X!#Ot!€ u####€#uX !€# €!H1tºtàÝ..€Ý.ttHH1êBHºOtO!€€è€u#u # u# uXuuuXuuuŒuŒuuŒuŒuuŒuuuuuŒuuuuuuuuuuXuuuu#uuuuu‹Xu‹uuõuuuu#u##u#uu#uu#‹uuuuuuuuuÉu#uuuuuu###tHÃÃtOÝO!耀õõõ €Ý!º’ºÝ###‹u‹uuu###u#uuwuwuwŒ‹#‹w¹¹!uX #w€w€#€!!uu!€#€#O!B€OtÜ?’2Š1t" . .i.{tPt 11tà,t€’H!hÜê! OH!Ã2€Ýº!€!# u€¹€XOX##u€uuuŒXŒõu##õõŒõŒõè#€è Ò!Ãê1OœÝt. !&¹!»Fâ´ü»™œlBd´??dœdÜBÃBœœÜl222llŠ?º .Ý1!€!€X€“€!OÝ# uu##X#è€u €€! #€€!O1ܺݺt€€à!ÝttHHBêêBHHOÝ€è u!!!€uõu#€#uu#uuuŒuŒuuuŒuuXuuXuŒuuŒuuŒuuŒuŒuŒuŒuuŒuu‹u#uuuuuuuu‹uuŒ#uuu#u#u##u#uuuuuu‹u#u#uuuuuuuuuè€!!¹HÝ€!€€èõ##õõ Oºtºtºt!##uuuuuu‹u###uÉu##wwwŒuÉwx!O###€##€#u#uu€X€!€€!€OtÝ€êýêt2NµŠÞP.H€.ê¶l[2¶¶.µtP2!Ý1lOyܺX€ÝÃýÝuÀw€!#uuwu“!“X¹ÒŒXŒuXŒŒõõX‹#!õ#õ#X ÝtH1ꜵ·¶?2{·3ñ¹Oñ}?hdH}œ¹´´»??ºtœ´»?œ1ÜŠ´N´?HÜœ?1122œOº!XXÝ#€€XX#€#uuuõuXu€€u€€!€OHB1t!tt€€ÝàÝHHHtHHtOO!!!!!uu!!!!u #€€# #€#uuuuuuŒXuŒuŒuŒuuXuŒuuXuuŒuuuuuuuuu#uuuuŒu‹Xu‹u#uuuu#uŒ#uuuuuuu‹uuuuuuuuuu#u#u#u#u##è!!OOHºOOO!!!èõõõõõ€OtHÃHOÝÝ!#u#uuu#uu#w#uuuuX#w¹ÉuŒŒw‹uuu#€#u##uuXuu€#€!X €!Ý!tt’Hê°?êP2|µ¶P?°@H. tHà. t·NÝÜ1H€Ã»t1X€H¹ýÜœw##w€uuÒuXuXX´uXuuŒuXuXŒ“õ€Oõ!ÝH111?N21·@·Šl[BÌuB¯%¯Fd?´Ã»ü·¯ü?Üœ1lýý?œÜlµiýiµ.Ãàœ.tÜÜ’tÝõ! u Xu#è##XŒŒuuXu€#!OO!!OOtO.!ÝH.OtHHHttO€!€!€€€€€€€€€è€€u耀# ##uu#uuŒuuŒuuuuuŒuŒuuXuuŒXuXuXŒuŒX‹#uuuŒuuuuuuuuu#uu#uuuuŒu#uu‹uuuuuuu‹uu‹#uu‹#uu#uu##!!OOOO!!Ý!€€€õõ õ€OÃÃÃú!€u€uuuõ‹õ‹#uw#w#uu#Œwè¹wwŒ‹uuŒu#€#u€€#€uu#€u €!€!HÃàt êH’t.[’’."Z¶H.ÞêPtN¶1à°µ.‰a’HÒdÜtÝXÃÒÒ»lœ#uÒX#uuuuwŒOwh}wuuXu#uuX!tõÝÒ..1oºPl°ZßZo?N·lÝtÌBè¹ÌBœy¯ý´œÃ??œBÜlµ?lllµý[[ýýÃ.€’ܜúHú݀݀Xuuuuuu‹õõõu#uu€è€OOÝ!Ý!ÝOºÝtHHtHtHHHtOÝ!!!€è###€è###€#!#€è#€##€u#uuuuŒuuŒuŒuŒuuuuŒuŒuuuŒuuuuuuuuuu‹uuuŒuuŒuuu#u#u‹uu‹uuuuuuuuuuu‹uuuuuuuuuuuu‹u#u##èè!!O€#€!€##€õõ#€!ºBÃù݀X Xuuu‹XuuuuwwwuŒuÉXww¹7èu##w#w€w€u###u #€!€u€OtHêê[Ý2 ¶tŠN¶P¶to¶¶2.ÝNê1’’tPµê‰lê%1t#œtºhÝ€€uÝwuŒXuu##Œu“¹wwuuuu##!Ýtœêot 1t2°%µœ1Ãlýhyµlül´»œ¹?{yý´llÜœdÜ´?µl´´?l2?N?iý[···t€1?2?.Ý ÝÝH€Ý€€X uuõõõõõ‹Œ##XX#Xõ€€O!!!O!àt!!tHtOttO!!!€€€u€u#€€€€€u€#€€u €###uÉŒuuXŒuuXuuŒuŒuuuuuŒuuuŒuŒuŒuuÉuuuŒuuuuuŒu‹uu#uuuuuuõu‹u#uuu#uuuuuuuuuu#u#uuuu#uuuuu#O€€€€#õ #u#€!!B¹!€#w€uuu‹uuuuu#uèèwuuu#Œ#Œ¹#èŒ#w!wuuuu#€#uXuu€!t!ÝÝtÃ’ttH1°itZ·tÞ°N’P2oNŠ2¶µ¶2HŠ1¶ê°2h€H»Ü???û@ÝuÝt#uuw#uu#uèX}¹!uuŒu#è€tBÜœœÝ1Š1’ @aØýÝÝ2ýF@·c{¯´œB·ý{lœÃœ?llœdlœll´l2¶l´µi?µih··212ÃHt’€Ý?ý.Ã. €º“#uXŒèŒ‹##‹uõ‹#€###!Otº!!€!.O.!ÝÝttÝÝOt!!€#€è€# #€!!!#€!€!€è##uuuuuuuŒuuuŒuŒuuuuŒuŒuuuuŒuuuu#uuuuuuuuu‹uuuuuuuu‹uuu‹uu‹uuuuuu‹uŒuŒuuÉuÉu#‹uu#u##uuu€è!€è##õ€€€€€€!!!O!!!#u XXuXuuuŒuu‹uu¹¹!uŒ#uw¹Œõuõwõ#uuu€!!#€##uXu!uºœÜœ€Ý.ö2’1yi’N¶’жPPµ t.Hà€12±°2Üêê[lÜ!tlH€ÝlÃl?t €¹uX#X#“w!Oõ#Oèè!u#èuu!ºl@2ܵ·..Nµi·?œ2dl»üF»ü1¹Ã´ýlh·ül@?œýœÜ?[´µ?lliii··hý···´ºt€ €B1º11€1t€’Ü€t€uX#ŒõŒuuõuè€####€!!ÝOà!!OtOÝ!OÝÝÝ!!Ý!€€##€####€è!!€€#####€uuu#uuuuuuuŒuuuuuŒuuŒuuŒuuuŒuuu#u##u#uu‹uuuu#uuuuuuuuuuuuuuuu‹uuuuŒuuuuu##uuuu#uuuuuuuu#è!€#€€##€€!!Oºº¹Ý!!€#uuuuuuuu#uuuu#wwuŒuu#¹Û#wuuwX#€###!€uuu## #€u !ttot.à¶œt H.2l.PtN’?$‰1%°[2iê2µ‰¶€1À!! €!€€O€!!“ uuO#¹èO!]Ü}¹è!OèXXu€ÝO·ýÒoi‰¶ÞœœOÒºÃ&¯?ÌO‹ññBÌBœBœœ?ýlýýýNý{[?Üœ?´µiýiµÞ?ii°°ýýhhhlHÃÜtÝ’21Htà2HàH2ݺ€uX#ŒŒõ‹õõõ#èè€#€€!€!!€€€!!€€!€!!!€€!€è u##u€ u€€€w€!u # #€#€#w##Éuuu‹uuŒuŒuuuuuŒuuu#uu#####uuuuuuuXŒuu‹uu‹uuuu‹uuuuuuuuuuuuuuu‹uu#u#uuu#‹u#u#uuuu€#€€€#€€€!!!Ot!!è€#uuuuuu‹u‹u‹uu#uŒuwwu#w}‹!Œ##€€!€###uuuu##u#! €!Ã.œ12œ1Ý’ºiµ’µ°?ÜÜ@·Šºl°221µ12H’[µµia €Ý XOÝtl€ Ý€ÝõuXõ!!dOu!!!!#!# 耀.lyŠlPýÞŠ’¹Ìwñ´´OwÌwÌ!¹ÌGOÜ´l·hhhµ2œ2µl·?œ[[[´[iŠ?i°°[ýýýýHt1HtÝH..ºà22H’€€uõ#õõõ#ŒõŒõõ€#èè!è€#uu #€!€€!€!€€#€##uõuX uuu #w€!!€è€€!€!€€#w###uuuXuuuuuuŒuŒõõuuu##########u#uu‹uuuuuuuuu‹uuuuuu‹uu‹uuuu‹uuuuu#u##uÉuuuuu#u#€õ###è耀#€!€!OtOtO!!#è###uuu#uuuuuuuuuŒu¹¹w#Œ#7Xw“!#€€!!# uuuw##uX€!#œº€.oº’Š12º.Ý’œ?.œl·?€1œ2€’tHt’ê.ºÝÜtOOœ €XÒ€€!œXº!€#X !OOœttBœÃÝ€!Ý# !ºœµý[[{°iœ»l¹´´!Ìè!ÏÌÌÌBHÜ·üah´l»2Ã’2??µ?Šiµý?Nii?Šý°[[···h´1OtÜtHtº22NÜµŠœ¶..’€€XXXŒuõõõõõu###€è!èu€u#€€!ÝÝ€€€€€#õõ uXuXuuuuu#€!O!O!!O!!!!w###uuuuŒuŒuŒuuuuuu‹õu‹#‹è#w#####‹uu‹XuuŒÉuuuuuuuuuuu‹uuuuuuu‹uuuuuu#u#u#uuu#u#‹uuõõuõõ€õ€#€€!!!ÝOÝ!€€##u#uuuuŒu‹uuŒuu‹u‹uŒ#¹¹wuu7O#wX!u #!!€uuuuuu##u€! !Ýo..PŠ·.ÃÜõýhlºÝ1€’ÝÜ2ÜtÃÃ1Üt.1tºH1€t€ Òt´œÃ2€ ú €!.ôl!€Ã1!º!!!Ý€u #.€u.œl?yØyYߨ·ØcùFd̹dñññBdœd´{@aµµ22œºÃ2l?2?i?ý·‰iý·["[[°iiýhhýiHtêlttêŠýlµÞ?P’Šào1€ XXXõŒõõõuuè#õõ###u Xu u#€€!€€è€#€u XuXuŒuu#u€!Ot¹OO!!!!!€#€####uuŒuuuuuŒuŒuŒõõuuu##!èèèè###uuuuuuuuuuuu‹uuuu‹uuuuuuuuuuuuuu#u‹#u#uÉuu#uuuuuõõõ#õ###€€!!!Ý!ÝO!!€#uuuuuuuuuuŒuuuuuuuuuuu#uuõ#É#7#w!€# €€uuu##ŒXw!w€!uݺ’ ooœºœ? ºÜœHÝ!º}ºÃœH€ÝHtÃ.OÝBÒ#€!ºµdœÒu1ÝX!? ´ÃõH,!€!ÝHݹt1OHºÝººÝtXtºHlýý·±Øaßê133BOBê´Ã€Hœilh°{h¯2´lÜœ’’l¶2Nl?2·[·µ[Z@ ·°°ýýh·ý€êlB€Hê1.t.t’Š’¶ u uXõõuuu#€uuuuu#õõXXXX Xu ##õ #õõXuuuuXuuw€!OO¹tÝ!!€!#€#uuuuuuuuuuŒuuuuuuuuŒuõ‹#è#!è!!èè##u#uuuŒuuuuuuuuuuuuuuuu‹uu‹uuuu‹u#u#uÉuuuu#u‹uuu#u##€€€!€OO!OÝO!Ý!!€#u u uXu‹u‹uuu‹uu‹uuuŒuuŒuu##ŒŒÌ#!€!àu€€ uu#uuuw!!¹º.ºÃ12P1tt°.uœ!º!€#€X€€O!Ou?œ}´?u?œ».!#Ü“Ã1!!ºÝ€€!OÃlœt€ÒÝ €l2œœhº2œHHº€€€œi{y{···¯H?»Üê!HB1.l?l?iß·i·2´µ2µµi ýß@‰‰@@‰·i‰‰· · [@h»€tÜNHt€Š22ot’’"iNààÝ€ uu#uuuu#è##u#uuuXXuuXuXõ# õõõ# XXXuuuu#€w€Ot¹!!€w€#€##uuu#u#u#uuu‹uŒu‹uŒõõõuõ##è!!7!èè##u‹#uuuuŒuu‹uuuu‹uuu‹uuuuuuu‹uuuuÉ###u###uuuuuuuuè!!!!OOOOtOO!!!€€€€uuXŒuuuuu#u‹uuuuuu‹uuÉ#uw7wu7w!}u€!€€€uu€uu!#!€!ºœœºà1Š….à€ÃÀÃ!€!€ºœ€Ý!H€!X´.´BÜ!!º“À!Ý€ÃÜÜ11œ€œµºÝO tÃ!HÝtÝœœ1º2œÝºÃtÝÜœÜh{·µ¯ýòdêêB!êòühB1ê·l@[2ý@hý@ý{ýµ@N‰°‰ýNµ¯ iœNNŠÞ[·i°·‰{h»hh»ýêtÝêÝ.ÝÝ..tÞ°Š’2"· à. € u€#uuuõõõõuõõõuuuuuuuuõu õXXõõõuXXXXuuww!w!w##uu#uuuu#uuuŒuŒu‹XuuuuXuuuuu##€!!!!!èèè#èuuuu‹uuuuuuu‹uŒuuŒuuuŒuuuuuuuuuuuuuuuuuuwu#u#ww!!!!O¹ttOOOO!€èuuuuuXXŒuuuuuuuuu‹uuuuuu#XXw“O!O¹!w}OX¹€## #€#X€u€€€.€u.’€œ’µÃúÜ! uÝ1!Ý€.€’œÃ.!Ãà’HÃ.1H€ Òt!ºœÝ1!Ã. µÜt’ !àÃtº1Pº2 ·NH?H[c·»!Oh´¯l?d3ññBBOêñ?dlÜ[[[@@ý··@°··‰·°°·[ |ж¶¶2Þlµ‰ß@߉h[üüüh»»ßŠÝ t..’tÝtt.1œœµo.PN1’à€#€èuuŒuõõõõõõõuõuõõõXõuõõXõXõõXuXuXuuuèèè!èè##u#uuu#uuuŒuuuuuuuuŒuŒuŒuõõuu#è!è!è€è€u€#uuuuuuŒuŒuŒuXuuuuuuŒuuuX‹uuuu‹uu#u‹##u#uuuuuu#€€!ÝÝÝOOOOOOOO!€è##uuuuXuŒuuuu‹uu‹uuX‹uuuuÉuXwuwBwèÛ¹!}¹#!!€#uuuuu€ €œ’Ü[µ’ýº€·Nœ.·µ¹ÝHÝÝÝ€Xœ..11ºÝœ1Ü2!µœœœÝ’Oº lÝ1HÒÒHtÝ.Òl·.t€h·ŠÃ’Pi’º.t2y²ü?¹OO·Oê´òââ¯d¹Ì¹¹B?êÜܻ·@·@ý[[@·±ß·"ý ["[ [°iµ ß Z{@@߯üüüüüh31ÝÒÝ’ÜÜêH’êHtHê.P¶’Ý€ #uu‹XŒõŒõŒõŒõŒõŒXŒõŒuõõõXõXõuXuŒuXuu##èè##uõõõõõõõõõuuuŒuŒuŒuuuuuuuuuuu#€#€!è!è###u#u#uuuuuuuuuŒuŒuŒuuuuuŒuuuuuuuuuuu‹uuu‹uu#uu# #€€!!Ý!Ý!!!!!!è##õõõuuŒuŒuuuu‹uuuuuuuuuuuÉuu#u#uu!w#̹è¹w#w#X€€€€€Ãtº1?€22º@P€..ºÃÃÝ€HœNº1’2œýе1Ý€’l“.Ý€HºÜ ºÜ!€µy2Ý1.º€..’N2’Ü11êê1H’.àº212üß´üFFœdd´]¯ýÃOñ7èè!èBBÜBœl[@··ii´°i[‰‰‰$·° ""°[‰@@@ß@@¯333333hê?ll’’€€.H1lê.à œ[Š’º¶Ã’.€€wuuŒõŒõŒõŒõŒõõŒõŒXŒXõõõXõXõõŒuõXõuuu#è##è###ŒõŒuõŒuX‹uŒuuuuuuuŒuŒuŒõuuu#uèèè€##€u#u#uuuuu‹uŒuŒuuuuuuuuu‹uuuuuuu‹#uuu‹uuuuu#u## ##€€!!Ý!!Ý!!!€€##õõõXŒuŒuuuuuuuuuuuuuŒuuuuu#uXwuuwŒuO#¹!#!!€X# #!O€#€tœ.2’P€œà€li2t ÒºHHt€ÝÝN?œœ[Š.Òº?1œ12œºœ€.º?œH2H! œ2º12º€.€à1êHHH’1HP.’1êêH??¯²%dÃtBOO!èB¹Ì¹èè#¹œBœlœ?i?Ü2?µi‰·‰[|[‰[° ‰‰Z{@@@¯hýý»»ý3h»»»Òê21t2êêê·llß@ýýHP|?Þ.Ò1º€##uuŒXõŒõõŒõXŒXŒXŒXŒŒXõXuõuõXuXXuõuu#èè#è####õõŒõŒõõŒuuuuŒuŒuŒuuuuuuuu#uõ€##€è##uuu#uu#u‹uXuuuuŒuŒuŒuu‹uuuu‹uÉuuuu##uu#u#õ#õuuuu€#€è€€!!OÝ!!!###õõõXŒõuuuŒ#u#‹uuuu‹uu#uuÉu#u#uwuuw#uÌè€##è#u#€#u€€# €€’2€ÜÜ HÜÃÃÝÝÃÃHHu!1œ1OÃ2..Ã2Ã1?Ü’tº12 l2Ü€H[€ÝœºÒ€·1º€’2à€’Pœ21H’t’Þ’t°’2ÃOOt´d?´Ø²@õX#H?ê7èè!è!!HÌHœ?’ÜÜ2’12?[‰@µ@@[°N¶µµ[‰°i·{@···ýý»´´»»»´2·iÜÜ[i2H·H€lÜl[¶’êœ?Nµ¶Ã.€€€uuuŒõõŒõõŒõõŒõŒXŒXŒXXõõõuXuXuõXuu###è€###u‹õŒuõõuŒõuuuŒuuuuuuŒuŒuŒõ#u#u#u€####€õ#u##uuuuuuuŒuuuuuuuuuuuuuuuu#uÉ#uu‹#uuõ#uuuõ u #€#€!!ÝOÝO!!#€õ#õõõõŒuŒuuu‹uuu‹#uuuuu#uu####u##uwwuÃ!uõ€è €€€€€€€ÝHÃH1œº.Ò1Òàº[,º2º€HœÃ1œ12?.œiý.tº.. œÝÝ1´Òݺ€ÝhHµ2tÃ.ÜÝœ.Ý2¶ºl ·2ê¶Pi¶’àÝ’lOêü!!!{l»cdOBBBO!!èè!OBÃÃl´µ2œœ?Üœllii´¶iý°°i¶2¶Šµýi´ý·¯h»´´?´´ܵ?ttHÝ,€Ü Ò€ÒÝH@·[¶2œ2.Ý!!!wuuuŒuõõŒuõŒõXŒõŒXŒXXŒuuõuŒXõXuuu##€###u#uuõuŒuŒuõŒuŒuuuŒuŒuuuuuuuu#u#õ#####€#u####uu#uŒu‹uuŒu‹uŒu‹uuuÉuu#u#u#uu##uu#õu#õuuuu##€#€€!!Ý!O!!€èõ#õõõŒõõuuŒuuuuuuuuuuu‹uuÉ#u####uwu#!u¹è#€€#!!€u€Ý€.ÜÜ1’œHú€œ€ 2Ý€ta’!l»1€º?.€tœÝºlµÜœ···ýݺµµºtH’,€#ÒÃÝ €HàXà?Nœ[[’2‰iÞN¶µ2µ´l{Öyü´êêñBÃBêÝÃdtÜÌÌtOÃB?´i·hýl2ll2?l[ýµ[°µŠl22¶l2l°hý[?´d´´?ç´´´´€t’õÝ€.Ý€t€1’€O .!11œ.ºÝÝàÝ!!w#ÉõuuŒuuõuõŒõõXŒXXŒXõuõuXõXuõõuuuè###uõõõuõuõuuŒuuuuuuŒuuuuuŒuŒuŒõ###õ#õ#õè#######u#uuuuuŒuuuXuuuuu#uuu#uuu####u##uuõ#õ#uu€€€€!€!€!OÝO!!€###õõŒõõuuŒuuŒuuŒuuuuu‹uu#uu#u####u!uuwŒuu€!€#ÝtuÒàºÝÝúœtt?t€Ýt€uÜHÝ €2Ýtº2?œÃ1ý1€!µ’ÝtÃiºÃ??Ýt€?º€ÝÒ!ºH!.€ºý?’1t1ýß œNN¶2P°ê2êB?òyêOHõ€Bêý?ê?O!!ÝOOtOµýý¯·@iµi[i[?·i?lеµÞÞÞ2Ü2?i´?´??´dddÏ»´ddÝ€t€ÜtHtt.HÜÜêl€€ !.’P1’ú݀€!wuXŒŒXõuu#u#uŒuõŒõõõuõuuuuõXŒuu€!!###uuuuŒuŒuuuuuŒuŒu‹uuŒuŒuuuuuuuõõõõõõõõõõõõõõ##õ#‹uuuuuuuuuuuuuuu#uuu#uÉuuuu#uu#õõõu#€€!!€€€!Ý€Ý!!!€è#uõõ#õõõŒuuuuuuuuuuŒuŒuuuuŒuuuuuuuwwww!wè#€€€#€u€€€u Ãlº 2’€€..Ã’ºlÃ1Ý€ ºt€.ݵ€Ãà{ýt@1hl.’€€€ Ü?.ÝÒÝo º.€iúÃ1º.l.1·@?i1’’…H’‰aN.ýt!B€!è?ÃO#1HtdlÃBOÃHBt!!!!Ýê´¯····hµüýý@µ[°iiµµiiµµi????´?dç?ç??´´´l .êÝlêà êt€t€ÝÜH €.HÃú.ÃHºOO¹!#õõuŒuu#‹uuuuuõ##uuu####uuuuõuu#è#èu‹uuŒuu#ŒuŒõ‹uuuuXuuuuuuuŒu‹uŒõŒõõŒõõõõõõõõ#õ‹uuu#u#uÉuu‹uu‹uuÉuu#u#uuuu#u#uuuuõõuu€è!!!!€€!€€!€€#è€#uõuõu‹õ‹Œuu‹#uuuu‹uuuuuŒuuuuuu#u#u#è!ww##u##€u€!Ý.Ý!ºÜÀºœtºœ. ?aH€Ò.’€ÝÃt?àœÝœÝX·‰?Ó’ý€º2À1 €2ýlÝà tœ1µt œ°ÃõŠlPiPÞœ’‰‰‰ØZ@y·[Hè!dyyâlœOê1dêÝõ€€€õ€ÝttBê¶@@·ýi??Niýý°?аý°[°"°[iýiµ»»´´ddddÃêœ!êê1!Ü1H1!Ò.€OHÃ1ÃÝ..ºÝ¹!!!w‹uu‹uõ‹õõŒõõ‹###è#€è€èèè€è##u#€è#u#uõuõuŒuuuuuXuŒuŒuŒuŒuŒu‹uuXuuuŒuŒõõŒŒõŒuuu‹##uuuu#uuuuuuuuuuuuu#‹uu#u#uuuu#u#uuu#€!€€Ý!€!€€€€€w##u õõõõõõõu‹uuuuu‹uuuuuŒuuŒuuu‹uuuuÉu####w####€uu u€!!!ݺœlÜô.XÝHu œ1Ã’OH€’!Štº.it2lººº.Ü1X1€àÃl2º!º€,ÝœHl··lúµH€ýlÜ[ÜPºPt’l2$’ŠŠß·{Bêñ]¯llBÜÜBHÃtHÝO€ÝàH1êÜ??Üýýi??Nµ??N2llµ?iµ°·‰‰‰@@···hý»´?dddddddddœÃ’ÃlÃ! O1HtHÃÃtttºº€!Ý!è!èèõuuuõõXõõõŒõõ###€#èèè!€!!!!!€!è€##uuuuŒuuŒuuŒuŒuuuuuuuuuuuXuuŒuuŒuõõõ‹uõ‹uõ‹õ#õ##u#u‹uu#uuuu‹uuu#uuuuu‹uuu#u‹uuu###!!!!€Ý!€€ÝÝ€€#u uuŒõXŒuŒu‹uu#uuuuuuu‹uuuuuuuuuuu#u#uu#u#####u€##uXu##€€#€!ºÝ ÝOÝtÃ! €utÃÝ!Ý1€Ý.Ý HÃÝ1HÃO1ºÃ@l€.À à t ÝœÝtH?l1Ãt’€.œºµ$a@°ÃNÞý"tt..€.1êBlÜÜœ?ÝÜÜ!ÝÝOÝtÝtHÃ’’ê2Ü’H1ꜜ2llÜ2’º12?°°··@ß߉¯·ý´?ç´´ç?dÜddd?HÝÝOœt!€OtO€ XuO€u #€.t€€!!€èè!####õŒŒXŒõõŒõõõu##€#€èèè!!!è!è!w#uuuŒuuuuuuŒuuuuŒuŒuŒuŒuŒuuŒuuu‹õŒ‹õŒõŒuŒõ‹õu‹##õ#uuuu#‹uuuuuu‹uuu#uuuuu#‹uuuu#u耀!!!!!€€€!Ý€€Ý€uuXuuuŒõõuuuŒ‹uu‹uuuuuuuu‹uuu‹uuuu‹uÉ#uu#u#u#uuuXuu#€!!ùݹݺ}t€Ý€#’ÜHtÝuÒº€Ýº€XÝÜ?€àºÃÝH1œœOl2t HœHºÃ€Ò.1ý@€ÝœÝ12?œ·2Pœ’?1¶@{hœ22.o.H?HBHÝÝlHttlÝHOÝ€ÝOHÃ2ê1êêê1êt’êêêܶ2œ?l2iiý[i[‰‰ß$@·hh[]h?ddl?ddddddd¹º! ÝÃÃÃHÝÝ€!OtHO!€è€Ý# €€€€õõ#èõ#è#uõõuõõŒXŒõŒõuu##è€è€èè#èè€#èuuuuuŒuŒuŒXuuuuŒuuuuuuuuu‹uuuŒuõuõõ‹õ‹õ‹õ‹õ‹õ##‹u‹#u#uuuuu‹uuuuuuu‹u#uÉuuuu#u#uu#è€!!!€#€# ÝÝÝ€€#uuXuuuuŒuŒuŒuõ‹uuuuu‹uuuuuu#uuuuuuuu####u#u#uu#uuu#èw!w€€uu##€t#ÝºÝ ,#ÃÃ1!tX€!€t€Ü.€ºHÜ1´Hº!ÜlúàÒXX€!€€1?tœÃXÝi%?@@ý¶.P?[@{@¶H’àPN’t1[H.!ÝOHtHœÜõ€€tHêê?ll22NµŠ2Šêêê11ê2œ?iµýý°°°[·Z±Ø%Øßiýý´??l?dddddddddd!HúB1º!11ttH€€º¹tÝ€€ X #€õõ#õèèèuŒõŒuŒuõŒõõõuuu€#è#€##€#####uuuŒuuuuuuuŒuŒuuuŒu‹uŒuuuXuŒuuuŒuŒ‹õŒõŒõŒõõõ‹#õ#uuuu#‹uuuuuuuuuu#uuuuuuu#uuuuu#uè€#€€€# ! €Ýº€àÝ€#uXuuuuuu‹u‹u‹Xuuu‹uuuuuÉuuu#uÉuÉu##u##u#u#u###w#èè!!w#}B¹€!€X€¹ #Ýt¹.ÝXHÝ X!ºtŠýµÃàÜtºHÝ!œÃÃO €.ºÝ€€ºl’tºNtݺ1!2Ü2{l.2Ý12œ2¶2ô2Ã’ê·ÞNi@ýlê1ÃÜH1Ýtê1?l´?¶êê2µµl21êê1’1ê1’œl1œœiµ[[‰ß$±a%±@hi?l???dddddddddd1ºÃH! Ý#ÝÃ!!Ã!!!!ÝOÝOºº€#€!!#õ#õ#è#õõŒuõuõŒõuuuuu##€è€è€è€#€uuuuuuXuXŒuuŒuuuuuuŒuuXuuuŒX‹uuuŒuõ‹õõŒõ‹uõõ‹õ‹õõ#‹uu#uuuu#uuuuu‹uu‹u#u#u#uu#u‹#uuu#€###u uÝ€!¹ºÝ€!#uuXŒuuu‹uuuõuŒu‹uuuuuuuuuuu#uuuuu#u#####u#uuuu#õ##èOO!!!ÃÝX!!u€!€ºH!.’Ã.Ý ÝŠH’’1¶Ü¶t1àœÝÜ[Àººœ€tÝ€Ý1PtÃil1Ò22Ü.ºœœ.?ÜÜlttº@?±alÃ1ÜN@yß?$ßý@ý´HH1œHHÝ@üýl?dµ¶ê1êNýµÜеiµµ´Š2œœ2¶2·°··‰‰·° Zßh[h»???dlddddddddd´œœ!!!ÃÃBHºO!!€€!ºÃHO!# #!!è#èõŒXŒõŒõõuuõuõŒ‹uuu######€èè€è###XuŒuŒXXŒuXuŒuŒXŒu‹uŒu‹uu#uuuõuuuõuu‹õõõ‹õõõuu‹#uuuŒ#uuu‹uu‹u#u#uuuu#‹uu##u#uu‹uu#€!! Xw!}ºO€w#€wuuuuuuuuuuu‹uŒuXuuuuu‹uu################uuu#wuXuu#!¹HO€!!€!ÝÝ€€t¶¶ ’11..o.PÞŠN°"i.iit¶Ý2o€º1tHœÜlÃtœÜº’ºt’iº%@2À€ ºoº’Š[ý@µµ2iÝ2¯{·[Ü1lÃ1ýlÃHºÝOHœd%{´?l?llêêN·°?µ°°[°°[l2[hý[ý·ý‰@@Z߉h@h´´´´d?ddldddd??#õõ!!OºBOOÝè õ€!#ÝHH¹OºH€!€O!€õ#õõõõŒõõŒõ‹Œuõuuõ#u€#€#€#èè€##€##uuuŒuuŒXuŒuuuuuuuu‹u‹uŒuŒuõŒXŒõuX‹õõuŒuuuu‹õ#uu#uu‹uu‹uuuuuu#u##u#uuuuu‹#u#uu###€!€#uu€!¹!€wuuuuuuuuuuu‹#uuuuuu‹uu‹uuuu‹#u#u‹u#u#####u#uuuuuuuuu#€u!OºÝt€ ,X.1o’Þt¶¶…ÞN"|Ë˵1’t¶HP’.êy2ttH€OÃH!HêÃ’1N2tŠÝ€ œÝ!H1œ·ÜlŠê´êHê·Øßy?Ü·´ÃldtBH!td?êl??ܺBllœ2߉@Ni[[i?2êlÜýiµ[·ß±a±yyß@¯]h»´´´ldddldÜdddl™´?´1Ãt€€€ Ò,XݺÃÃtÝtÝÝ!Ý!€èu€€!!#õ#õuõõõŒõuõuõõŒõuu#u##€###€###€u##uuuuŒuuŒuuuŒuŒuŒu‹XuuuuuŒõuuõXõõõuuuuuuŒuuõuuuuuuuuuuõ‹uu‹u‹u‹#‹uu‹uu‹uuuu‹u##èè!!u u!w!#è#uuuõuuuuuu‹uuuu#uuuuXuuuuuuuõu#‹u#u##uuÉuu#uu#uuu€u€!t!!!ÝtººÝOÃ1’º.otÞ¶P…¶ÞŠ Z N µN.œº’t¶¶t2o.2.õ ÝÝê2’Ýl1NH tœH€X ºlH2êl@ýNê·’?µ@i2{hhdBBOÝtO!Ã?l¹O1BÜÜHú.Ã?ý?ŠiêÞ´Š2’HHHŠ´l·ß±aØ$ß@¯¯ü3dddd??™?´¶?2’œiýl’tàœl2’úÝÝttàu è!!!õ€###u‹õuõŒuuõŒõõõõõ#u#u#uu##u#u##uuuuŒuuŒuuuŒuuuuuuX‹u‹uu‹X‹##uŒõuuŒuŒuŒuuuŒuõ‹õ#‹õ#‹õ‹uu‹uuuuu#uu‹uu#uuuuõ#u###èè!€uu#è!#€#è##uuuuu‹uuuuuuuu‹uX‹uuu‹õu‹uu##u##u‹u#uuu#uuu€uu#€€€!tO.OttO!Ý€ €.HÃ’¶.’Þ¶PÞ2PŠ ‰ N¶à’t’°¶·Nê.°N@@l ,1?t€ÃêÝ’ý22t2ººà’?2[?Šê¶1i[ŠNHN2.HH2´ltÃ?ÜB’ÃÀO!!HÜÃOêH?êHO!tH’1œœêPê’H’1êê´iNý%aØa±yyß@¯]h»´?dêñdd??´.to oPlŠ21to..o€€.t.€€€ÝÝ!ÝO!€õ€èè#uuuu#uuõ‹õuuuuõuuuuu uu #uuu#uuuuuŒuuŒuuuŒuŒu‹uuuuu‹uuè€èõõõõõuuuõuõŒuuuõuuuu‹uõ‹uuuuu‹u‹#u##uuuõu#uu#u#õõ#uu###€€€##è€èè####uuuuuuu‹uuuuuuuuu#u##u#õ#u#u##u#uu#uuuuuuX #€#€€#€!OOOÝàHºOÝ!2iŠ…PŠi°µÞNZßN.’ÜH¶?êNœ’t,2t €.?HtŠ?tàêê€t22ÊÝ ºPµ11H¶iY·ê2HêÜ’êÃl´t!t€OOõ èÝ!OÃêHOÃl?ÃÃHÃBH12lÜŠÜê’11ê¶N?µ?ýaY%ØØaØay¯·hlddêññêd´ld?»ŠPPÞœ.àoºPœPPP2.tº.Ýà€€€€€à!€€!õ###uuuuuuõuõuõ#uõ# uuõõuuuuu#uuuuuŒuuuŒuuuŒuuuuuuŒuu#u#è##õ#õõXõuXuuŒuuõuõuuuuuu‹uuu‹u‹uuuuu‹#‹#u#‹uuõ##‹uuuõuu #€!!w€è€èè#####‹uuu‹uuuX‹uŒu#uuu#u#õ#u######u##u#u#u#uuuuu€€€#€è€€€€!€€€!tºtttt¶P2|°[Zß°2’êoHtê’êµlµ€t¶lH à €1ê. 1ßߨ1º·i2P2l¶2$ê2¶’.…1[?ýHêtÝ€#€X#€õÝOtB!!ꜺÃÜÒœ1112211’111ê2?i?µ¯ß±yßßß·ý»Ï´ddêññBñêddddd»’º1µµP12‰@ i¶Ã’PlPÃÃ’º.tà€!à!€!#õõ#õ######uu###õ####õuuõõõõuuu#uuu#uuŒuuŒuuuŒuŒuŒu#u###€#õ#€##uõõuõõuõõuõuõuu#uuuuuuuuu‹uu##uu#uuõ##õ‹õ###õu‹##è€!!!!!!!!###õ‹uuuuuuuuuuuuuuu##u#u#u#õ#õuõ#õ#u##‹##u###€€€!!€€!ÝOOO!€€€ÜÃttH’ÃoP¶ŠN°µi[[°lt€€.HÒ1..êPtlê,t.têo2Þ’..tŠyiÃÝl@B1iiµ"œ¶iÞ¶Š’êiµ%%lêÜ´ê€õ# O€õ!Ã?êuOÝ€€OO€!OÃBÃÃÜ1Bœ1ÃÃ1Ã’1’HH12?[ýµhi·[·üý´?´´?ddBBBBddd?´´Ý..Ý.Ã’’€.’Ü22œ’º...H121tt.€€ #uõ#õõ###õ#õ#õ#€#€#€#uuõXõõõ uuu#uu‹uuuuuuuŒuuuuu‹#u###!€õõ€!!èõõuõuõuõuõõuuuuuu‹uu‹u‹uu‹u‹#u##uõ#õõ#õ#õ#õ##èèè!€!€OOO!!!!#uuu#uu#uuu‹uuŒuu‹#uu#u##õ##õ###u#õ#u######€#!€#€€#€!!OHHºtttt..HœlêŠP¶N‰iµ¶’tÝ.Ý.Otµµý[±ÜtH’t HP¶N‰$µtt?Ý.Hôl¶ØZ¶"NÞ°..|°N[êê€ÝÝ€tBO€tHdl!€O!#€OOÃOÃHBœ¹1ÃÝÝ1Ü11êÜ1tHê22Ü??lýh[ühh´´´dêñêBBñdd´·ýlÃH1œ1!€Oº!!º.ܶÜ1œ2ºÃ11€ ###õuõõu###õõuõè#€è€èè#€uuuõuõõõõõŒuuXuŒuŒŒuŒuuuÉXuu#èè#õõuu€#€€!!OèuuXXuuuõõu#è#uuuuuuuuuuuuu‹uu##‹##õ###õõuu#è!!!OO¹!!!¹!èè##è#u#‹uu#uuuÉuuuuu#u#õõ#õ€#õ#õ#õ€##€#õõ€!€€€€!€€€€€€O!!Ý!O !Ýt1œ’œŠNŠýiNlP2Ü..€tÝ2ý!ti·ltÝNœ´t tH1ݰ22’ ê1êHÝÃHO1¶P?|Nœ’P’Ši?2HÝtO!€€êh»?#è###!OOOOOOHÌBñœœBºHÃú11l?ŠlNlÜ’êi?li»üh?´Ï´ÜñBBddBd?´?´!##!!è!Ã}ÝOÃÃBœº.º11.’1œêH!€Ýõõõõõuõõõõuõu##€è€è€è€##u#uuuuõõuuuu‹uuuuuuuŒuuuu#w7!è€è€u耀!!!¹O!è##èè##u#uuuuuuuuuuuuu#uuuu###õ#uõ#õ#‹uõ##èè!!!#€w!!!!è##u##uuuuuuu#uuuuu#uu#u##õ##€#€# #õ###uè!€###u€!Ý!!€! OÝ!!€t!ÃÃÃ1úÃêt.H’ê’2t€ÝÝÃ!Ã2ll €ÝœýÝ..tH1êµ.|N’êHi2êiÜt1HÃ?°ŠÞ|ii"H.Hto.€t!! €OBê»dOO€!€!!OtOHÌtHÃÃHººHHºÜ?·@¯·ýlh2êêÜhý´´´´?dñêBdd?´»õ€#Ò#H!º¹O¹H¹!Ýà..à€€!H1œœH!!Ý€€uõ uu õõõ uu##€è€èè##€####u#u#ŒuŒuXuŒuuŒuŒuuu#u#!€w#u#€€#€!!Ý!º¹O!!!¹€!è€#€#uuu#uuuuuu###uu#èõõ#õ#‹#õ#õ#õu#è耀w€#!!!w#uuõõõ‹uu#u#‹uuu#u#uu#u#uu #u€##€###€#€X€!€# #ÝX#€!!€!€!ºOÝÝOÃtêÃHº.€àtêH11êê.O.ҀõdÃÝ?2t1H?º.1 ݺºH€’€.µ2’ý?Y?tHtêÜÒŠÞ…l°Pº221’tÝHHtÝ!ÝHêÜOd?H!OÌO!!è!!OOOOÌÃÃÌÌÃÃùºHº?ll2?iii[1B?ý»»»»üü»ç»»êñdBddêd»»´´»3ºOñÃu,###!!OO!# €Ý€ €ÝtºHHOÝ!!O!€##è#õõuuuu XX#è#€u€#uõ# u#u#uuuuu‹uuuŒuuuu#uÉuuw##uu#€€#€ÝOÝ!!OOOOO¹º!!!!!€€!uuuu####X#€##u #uõõ###õõ#õuõ####w!!Oݹ!èuuõõõõuuu#uuuuuu#uuuu‹uuu€õ#u€#è€#€#€##€õuèuXu!ºÝ!Ý€ÝÝtºHÃ!OHÃêtHtÝÝÝÝ€àttÃ’11Ý!€!OÝÃÜýº€œÃi2’XµÝÝÃ1ܺ ?àê·t2µ1 ?@êÝ1H"i2…Nt¶2êê1.HÃOtÃêêBOOOO!!!!7OOOOtÌBÃÌÃÃBÃúHÃHH1HHÃ’ê2Üܵ´êÜ»h´´»Fòö33»´ñêBd»´´»3O2t#OÃÃêt!€! €ÝÝÝ€€!!€€!€!!!!!€O!#€!€€#!!€èuõXÒ#õ#u#õõõuõ#õuuuuuŒuuXuŒuŒXŒuuÉ#€w#€#€€€#€u€€OÝO!!!Ý!OOº!!OO!!!!u u €€€€# u uõõuuuu#õu‹#õ‹#####€€!O¹O!!uuuõu‹u#uu#‹uÉuuu#‹uuuu#uuu€õ€€€€€è€#€€#€è õõ€OººººtºÃ1ÃÝO!OH!t€€.ººtݺÝtèu! Ý€€€HýayºlœltÜt€Ý€€.’2´HH€?HH€€HHl[µê2P|µl·ŠP.Ã1ÃH!Ý€!tñBtH!!BOOOO!!OO¹ÌOÌêÃÃHHHt1Ül?lÜÜllêê´ý]¯F¯¯ò¯ü»»´BBBBBBñddl´´?»».€t??HàtHà à! €.ÃÃú.!€€#€uu€!!è€è #!!!!Ý!!€€uõõXõõõõuXõõõõõõõuuuuuuŒuuuuuŒuu##w€uuu#è# õ 耀€€!ÝOOtO!OOOººO€€è € €€!ÝttÝÝ!!ÝÝ€è##‹õõ##õ#õ#õ#u#è€##€!!èuõu‹u#u‹#uuuuuuÉuuu#u#uuu# u€#è€è€€#€u##€#è€!!!!ÝOººººtºõO!õXÝ€!ÝÝtH’ºtœBÃ!X X€ÃœO €µ·ºµ·t€º,,Hºt €œÝÝiܵliµN l.122Þ2µ¶.Pêlêê1ºHt€!#€OBHt!OÌÃÌOOìOOO!OOHBÃH¹ºººtHBHHB12?lÜÜœêl´ü]üÀ]À?BÌBBÃÌêddl´´™?´i2oÒÒoà€ Ò à.ttºtÃÃÝ€€!uu€u#€!€!!€!!!ÝO!!€#uu #XõõõõõõõXXõõõõuõõŒuŒuuŒuŒuuuuu##uuXXu uu€!!Ý!!€!ÝOOOOÝ!ÝOOH!€#õ õ€€Ý.ºHœ1HH11Ht€èè##õ##õõu##õ#u# uu€!w# uuu###uu#uu#uuuu#uuu#uuuu#€u€€!€èè # #€€€€!€!Ý!€!ÝÝÝ!€€ OÝ!€€Ý!.ºHÃHHHùÃ!u!!H21OXttHº?1ÃXݺºtœÜú€ÝÝtê’B’€Ül?iŠ1е¶N2¶1P1tHH!!!õ€€!!tOOOOHêñHOOOOìO!ìOOOOÌBñH¹Ot¹ºHH1ê1B1H’Ã1œêBBêç?hÀ3Ï??çdBBBBÃBddd??d Ý’¶’o.œŠN2ºà.o .# !Ã!XX€!#õõ!!!O!!!!!ÝuuõX u##õXuõuõuõXuXõõuõuuuuuuŒuuwuÉu‹#uuuuuuXX#€ÃBÃHOtH!!OtOOO!!OOÝ耀õ €€ÝtH’lê11êÜ1tO€èõõõ##uuõõ##õuuu#€¹!€uõuu#õ#u‹uuu#uuu#uuu#uuuu# uu€è€è!€#€###õ!!€è€!tttº¹tO.t!Ý!.HÃ’€H12œÃ1Üd1}#X¹Bly¯€ÒÝi€€Xº1Ýliº tll.11õ1·’Hêêt1Ši[µ¶Š¶l’¶tHHt€!€Ý!è!O!€!!OOêñÃÌÌÌ!O̹O¹OOOO!¹ººÃêldêÃ1ÃttHOtÌd»çddêBBBÃBBñd?´´´dddd€ €’œÃà€€oÃ1Htº€Ý! XuuXuõõõ€OÃ1B1Ã!uõXõu#uõõ##uXÒXu X“X€XÝX “X##uŒŒ#‹ŒÉè‹‹‹ÉŒX X # Ý»lœêêHO!tO¹HOOOÝ!!Ý!#X€!€Ý.HHHttP?"Þ’HH!€€#õ#u‹õõ##€!€u€!Ow#uu###õ#õ#õuuuuuuuuu#u###uuu€€€#€u#€!€èõ õè€è€!!!€!O#OÃO#¹uÝàê’tà’ê¶ý·[Ã!# OÝÝÜh?B€õÝ!XBX¹€ÃlO!ÝÊÝ[".?Þ’êÜ1"Þ22|µ¶P2êêH’H’HÝ!Ý!€€!O!èèèèOÌBêñêñÃÌO¹ÃÌÌOOOOO!OtÌBêêÃBBêBÃHÌÃBBBñç´´d>>BBÌÃñdddd´ddºHº.€€à€Ã! €tºt11O€€#Xuõ€!OH’11H!u uè€#õ‹õŒõ#X#!Ý!€uXÃ!ÝÒÒXÝ€€Œ““èwwu##ŒŒ‹ww‹€#,XÝOHl2BHHÃHtùOOO!€€€Ý!!t.!t€XÒ€1??l¶NýPoP…¶HÝ!!õu‹õuõ#õõõ€€!!!€#uuõ#õ#‹õ‹uuõuuuuuuu#u#uuuu uu#€€€€€è!!€##€!€ #€è€ºBÝXXO#!’.oHi…¶¶Þ‰i?H u€B1œd?ººõ!!?OÀҀ1€ ºŠµ¶‰¶1Š’21°iж2еÞPêêÃ.!!!ÝO €€€#€€#€!7OÃBñBBÃHOO!!ÝÃ1BBBBHHO¹ÌÌBñññdddññBBÌBBñddddddddd..tt€ €ÝÒà1221º.ê1Ht!O!#€#€!ÝÝtOÝ!€uu€!Ý!€!!!èè!tO!u €ÝH÷?t X€ÝO€Ò“Xuu#uuÉw#X ¹µy{µœdœHOÝ!ÝÝO!€!€€è€!!!!OO!Ý€!ÝtÃ111‰ŠN2’µ. .€€!#õèu‹#u#€€€ÝOO!!è€w#####õõ‹õuuuuuuuuèuuuuuuu€€€!!!#€u€èè##è!耀€u#ÝÃÃ!O,€“2ê1’à|‰°±°¶Hêld´Ü[BBœOÃ!Ò#OÒ!è ÒO!Xêttœµ2Š·P’º°$ý 2ŠN°NŠlŠiiN21HO!€€!Oõ€èu€#€uõõ#!¹ÌÌÃBÃÌÃHOOOOO!OOOOO!OOÃBêBÃHtOOOtBBñddd?çddBBBñBBdd>ddd>Ò .êlêt.àà.HH’ܺtÝ!ÝO!#!€!€€€ õÒ uõ è€!€è!!!€õu #€ÝO1¯i2?tt1ÝHooœÝuÒX#èu X#uÜ@·?Ü1HÝ€u€!€€è€!!€!!OÝ€ÝÝ€€ !tt..H’êH2i…ŠHt€!!€#èuuu#€OHHÃOO!è!!!è#uõ#‹õ#‹u#u#uuuu##uõuu##OOÝ!!€€è u#õõõ#€#€!O!€€!€HõOtÜ€t1¶‰[¶’µ|$‰°êÝ#OH@?»€.!!!! ºOº#“€!2º! ’’.ºàœËt¶N2êN¶2êÞ?ŠŠN"µŠHHÝ!!€!€#€#€#€#èèè!BÃÌÌÃÌHÌÃÃOOOOO!OOOOO!!!ÝOOÃBÃHOtÌHHHOOOÌÌÌÌBñBddddd´ñBÌBBBñddñññddddd1. ot.tºtààot.€ttÝ€!Ý€u€#€ u X €è XÒÒõ€€ÝÃH! # u u€œ@[µH2[?"Pº.àÒà €.€€àÃ1œ1B’H!!€€€€àÝ!OÝ!!!€#€O!€OtOOÃt€!tÃ’t¶¶¶à’|’’OOO€èuõ#uèOÃêBB!€èè!èè###õ‹#õ‹õ#õ#õ#u#uuuõuu#€!ÝO€####€#€€€õõ€€€è!ººO!€ºÒ€€i1€’.H¶±$"P’?ý?HHèê!O#1!Ãt!H?Oœ!!ÝÃOÝB.11Ãê1’Š"Ši2’12…[·µŠ°ýŠêêŠ2HOOOO!###õõXXXu#€!!!!¹ÃÌÃÌÃÌÃÌOOOOOOOO!O7!!è!7O!!ÝOtOOHBêñêÃO!ÌBBÌBBBñddñê>dñBBÌBñdñBBñ>ñ>>|?¶oàot’ŠÞtà’.tt.ÝÝÝÝ€€u X Ò XÒõõõ##€€OHêêÃÝ€€ X €.ºœ?lYØy‰?$‰ËP¶|ZØZŠ.ºPPH. €.º!ÝÝu €u €€€ÝÝOÝtOÝ€!Ý!€Ý!ÝÃÃ1B11ttê¶t2NŠiàt€€€#u#u#è€OÃBHO!è!è€èuõ#õ###‹õ#õ#uu#õ#uuõuuu#!w€#uu u€€#è€è€#€!O!!!ÝÝ€€t’ttà’o°tÞ"’¶ÞN¶t.X!ÃýHuÒX B!H€!¹ÃXH!€ÃÝXêt€.H12µ@?"µP¶22ê·êl@°êH12ê!!O!è#õ#€uõXX#€!Oº¹OOÌÃÌÃÃÃ̹OOOOìOOOO!è!OÝÝ!OOOOñêBBÃOOBññBñBñdñBBêñBBBBBBdêBBñdd’µZaZ°¶tàP[‰°N’.o.tÝtºº¹€u XX à#€!Ý.ÝO.!Ýtt. ºt.tÝà.’2·±%Z·ŠÞ"|ÞÞ|Z±$$"PP¶1ººl!Ò !tÝ, !à!€à€#ÝO.ÝÝÝÝ!€€#!!€Oê!têÜê1’1..’"ZŠiN!õ#€#õ!耀!¹OO!€€!!!è#u#õ#õ‹#õõõ##õ#õ€u#õ#u####€uu Xuu## #€u #€!Ãt!!€!.t€°’’t….Ši¶t2êt€Ýõ!“O€!u€!!!ºÝÝOº1t’t€ê?ýyµß·N2ŠiÞl¶iêŠ2µ¶?lê121.Oèèèõ#è!##u!!O¹Ãdl?dÜêBÃÃÃBBBÌtOOO¹OO!O!7!!!!OOÝHHtÃÃHOtOññddddddd>ñññBÃ&ÃBññddñññddddd P[±Z°Št.l µP’àÝ.ÝÝ!Ý! uX tÃ1?dÃO€#€Ý.àà..o.t.ºÜ?2HttHl‰aNi@‰.Љ$$Z‰Ë¶ºào.€Ò .X €u €!.tÃ1HHt!€€€X X !tOHÜ’tt’Ü2¶1N1?Pµý1OÝO€è€€è!OO€õ#€uè€##u######‹õ‹õèõ#€#õ#u€#€#€##uuuu##u uuu€€#€!OÃHO.tt12¶.H…Š|¶1е¶µ¶t €ÝtB€!#!è€ÃuX1tÃà!H?ÝêÃê€t€ÝHNl?ý?2µl["êNiŠNêê2ÝàHÜê1HHO#èèõ‹õõõ#õè!¹¹ÃB?´?ùÃBñBBùO¹OOOO7!!!èèè!#èOtÌHOÌHÃÃÃÃddddd>ñêBBBñBBBBñddddñBddÂdd@°P.H2[@°¶t..tt..ÝÝ€€€uu Ò!œµ?¶lBÝ€€€ÝO€€Ãl2œ1Ptt’ê¶1H.tt¶°°N°$PŠZ°N|?º’Š’t.ºÃH€€àà Ý€€€HÜÜHÝÝ€€€€ÝÝtOÃ!õOOH?@Nà.HH.€.tt’¶HHO!O!!#!!€###õõuuuu u#èõõõ##õ‹#õõuõ#€###õ#€è€#uuuuuuuu#€uu€€!ÝOÝOBHÝHÜHH’2NËN¶¶¶¶’. €€Ý#!“BõO€ÒOHÃ!týº tݵt€€!HHHH’êêN@[µi?êµµýlê’tÝ.ttÝÝ€€õ‹õ#õ#õõõèOHBBBB1l?1BHÃÃBêñÃÌÌOèOOO!è!!!!è€èè!ÝOOOtHBHÃÃÌÃBÌBÌBBBññ>ññBñBBñBÌÌBd?ddddñññddd¶êê1tttÞÜ..ooottÝ€€ uu“ûiÜ1ê?!!!€!!Ý.tÃ2ii2HH’HtºHt....têê¶µ°2?·iêêê.HÜ1H1ººt.º’ÃÝ€! tHHHHº.Ý. Ý’t“€€!€€!OÃtPyÜl à otoHеÜtOOOÝO€€€#€#€#€€uuõuu#õ##‹õ#‹õ#õ#u#õuõ#õ耀!!€uuuuuuuu€u€# €!!.OtÝOHttHHê2¶¶| ‰i1.€ ÝH!€tdBÒ?!BÃhèHHtÜltêÒÝtNlttêH€Þ?êlýŠê2l¶i21H.tHHOÝÝ!#õ‹èèèõ‹õè!ÃÃBêœÃdlÜêÃÃBBBBÌHÌOè!!!è##õè!€!OOOHBñêBÃHHÌÌÌÌÌÌBBBñBñBBBBñÌÃBñd´´ddddñœññ>dd€.Ht.€ € €€€Ý€Ýtt!€#uuu u!!Ý€ ,X##Òõ!HººݺHàXoÃtà!à€àÝ.tt.H2°·@êH2êHHHOÝHtº11Üœº.Ýà€tœ12l’..HêtH’1HtH1t€tÝõêY€ , 1€.’Üê’¶?Þê!!OOO!€õõõ#€è€!èuuuõuõ##õ##õõ‹#õ#õõuõ#õ€è!O!è#uuuuu##### €!!Ý.ttOÝt1H.H .P22¶êt.àÝÝ!€€€ê#!ÝOôýHêH1!t .€’ê[2tHtt2·?[µý2Ü’HÝ22êHHHtO!!€èõ##‹#õ##!OÃBêêÜÜ?µ?µ´êBBÃÃÌÃÌÌOOOO!#è!OOè!è!OOO!OttHÃÃBBÃÃHÃBÌÌÌÃÌBBBBBBñBBÃÌÌBddddñññd´u €€õ €!ÒÒÒX €!ttÝÝ€€uuu!wXXu€€€€€!€!tHBœO€t!Ý2O€€€€€€€€t.à.êNýB!OtÃBÝtÝOOÜ2y@iÃ.Ã2еi?1Ýtœ?[PHP1tÝ1ÃttÃÜÌ[t’Ntýàttt’Š1.tèè!!€#€õõ #€!€èèõ õuõ#õ##õõõ#‹õ###uuu#€è!!!!#õuuuu####€##!!ÝOtºtttÝO1HoH1H’¶Š¶.Ý€ÝOOO!èOÝÝ!Ý!€´O!ÝO€hlttê.tttl?21’êl2i·l1Ü12µê’à’’H.€ttÝ!€€è#õèèè##è!Ü21lll?lêêBHÌBÌOOO¹OO!!!!OOOOOtOHHHBêñBBÃÌHÌÌBÌBÌÌ&BBBÌB&BBñdd´d?dññññ>d´õõõõ€õ Xõ#€õÒõ#€!!€!è##u““u#õõ€!!€ÜdÃÝ€õ!€X!uuB€# #€€€àà.ttÝÝtHêO!OÝBêHHHêœÃH¹.ÃH.º1l2Ü221H’œ…t€otH€HO!êdtO€PÜ’ .HP1…H’Üt €€èè##õ €€€!èèuõõõuuuõ#õõu‹#‹#õ‹õõ#€€€!!O!wuuuuõŒuu#### #ÝOttººtàúÝtt€àê2ê’tÝtÝ€!OHÃÌOB#!lµH€!!êXOÝÝtt2.toê2lÞµ°ýNt’’êHt2l’ê.Ht’HÝÝ!èu#uuuèèèèèè!tBêlllÜêêœ2l2lÜÜÜñÃÌÌOOO!OOO7O!OOOOO!tOHBBêêœêBBBÌÌHÌBBÌBBññBBÌBBñd?´dddñœññd´XXõõuõ““Xõõ##õõ##è€è!##uwuõ#!O!€Ý#€êêt#èÒè€è!##ÃO€u u €!!ÝÃ1H€àtH!têHHêêHÃH1œ11ºº’ܶH..HHÃ’HHº1¶°ÞtàÒÝÝ!!tÌܺ’.11lHŠŠ1’1H€è#õõ #€!!ÝÝ!€#XŒXõuõuuõuõ###õõ###õ#èè!!!OèõXõu#uu‹u#u###èݺO.tºtÝ1’.àÝà!,Ý11.€ ÒX#!¹¹!!tõÝ?2à!õB€“€ÝÝ’l ° 1µµ[@[2ÜNêtÝ.€týê2HHÝ’BÝ!#Xõuuuuõ##uõ€OHBœllllÞlN?ll2Ü´êBHÌHÌì!ÌO!èOÌO!èO!O!OOtHÌHHêBêldBBBÌÌÌÌBBBñêñB&ÃÌB>d?dññññddç´´õŒŒŒŒõ‹#“Œu########è##uŒuŒ#õ““õOO€€!O耀èõuõuõèOO!## õèÝõ!tHtOÝ.OtêêÃ1ÜÃH1tttºœ’H.º1œ’Húºt..Ýtºti··°Hê1ÒõÃdHX#ào...’’têêHtêê.èuõõ€!t.tOÝOè#õŒXXõu#õ#õuõõ‹#‹õõ##€€!!7!#uuõuu##‹u#u###€€OºÝÝtº.ttúÝÝttÝ!€ #ÝtOºO!#èè‹Ã#!ÃàX¶HêBõêê??êtt¶’t.ol·[ýilÃtH.ê’€€.Niê’ÝÝ€õ! XõuõuõŒ#è!è!OH1êêÜlŠ?l222œÜê1BÃÌÌÌBñBBñBO!ìOO!!OOHHBBêBê?´?dñBBÌÃÌBÌê>>êñBÌd?dñññd´ŒõuXŒXu7èèõõŒõXõõ#õõõõ‹u‹Œõèè##€ÝÝOO!€!!!##èèè!#w€€€€# !tHÃHHHHt€Ãlêt2?tHœº...Ãà.t..º’ÃÝo.ººà€à.1°²ý?Ý€Ý!HèÒ€!tH€212ê€tHHÜ2HH€€uõèÝHHtOÝ!€#õõXõõuõuõõ‹õ#õ##‹#õèè!èèè#Xu###u#€######耀tº.!.tÝÝ !ÝݺÃÝÝ€è€OOOè!¹!!!!èè€!ÝiP2ÝÝXÝ€Ýõ€tiýZ[µÞµ$µtt1Ü’..ê1lit?êê.HOttt!#Xõ#uuu#!OºHBê?l2ܶܶ1ŠŠ¶¶2Ü1êHHHHHHHHOtt!OHOO!OOO!èOÃBBÃBlñBÌBÌBBñ>>ññ?3»´´´çdœ>>d´»33õõuuõõõõu##XÒXu#X u####uu#uÒ €tt€!Ý!!OO€è€OÒèõOè€!O€#ݺººÃÃHÃHtOH’tH!tÝH.tºÝtÃÀ.œ’ºÃ1Hli?’iN2HÜ´Ü!!O#õ!õ#tHl€.Xt!OêÌÃêBtHõ€€ÝHHHOÝ!èèèuõõõ u#õõX##õuõõ####èè###õõ#uõõu##õ##XuÝÝ!t!!€Ý.ººtºÃº€ u€!!#€#€!!è!õ!7¹õ#“tuÝ! € H!H.ê H€P?1H’°ê·±i·2t1tH11H.tP2HttOt!èõõ##õŒuèuuÝÃt!HÃÜ1ÜêNlµ222ŠÞŠ?21’1HtH1lNŠÃ111ê1’HÃÝO!OO!!¹ÌBBBñê>d?ê>BÌÌBñññdñBêd»´dd´»?ddd&ç™3ü»Œuuuuõuu#€# õuõ Xuu####uu#u €.HBúOOºO!€!õ€Ò# !H1H€u!Hœê.€!tH’!t’êtH1!’!t€O?{œÃ¶œº?hl»d²ý‰²1èO!##7OÃOOõ Ýtê.º!ºõ#èè#!!tBêÃ’ÝÝ.ttO.!!€#€#uuuuõ#uõuuõõu#‹uuõ#‹è##‹uõõ###uõuuX# X Ýt€Ý€€€!..tººt!€€u€uõ€#€è##Oè!X#X!#ÃÃ!ºOÝœêàê.l.Hi’11H’1µHHêHNl’P’..t’ŠŠê.ººOO!!#‹õè#õ#!!ÝÝtHÃê2lÜ2ê’êêlN[ŠNÞÞŠŠ¶¶11HÞ‰¶¶¶ŠiiŠ2êêHHOÝOOOOÌBñññd´dññBÃÌBñddññ´ý»´dÜ?dddddñ´»ÀŽõõu#uu#€#€ u#€ XXuuuu‹uu##€€.1BHHHÃO€HO!#uX!ºttHººtÃÃO€!tOHêtµyý€Ht€€!ÃÝ꺒h¯ü»»F²ü··Ü°€õõõŒX#!!7u€€!ÝtttÃB€O#!!èèOOÃê’HttÝÝ!€€€!èu###€#€õ€õ##õ#uuu#u‹###‹##õŒu###õuu #u #ÝÝ!€€€à.tttºÝ€€€!€õ õ€!!!€!Bº¹!tO1 uXº’€º[œO’ÜlýtHµ1ÜiiH’H.HPHHtê2P¶¶êêê’t.OÝ!è###èè###€O!HêHl2?ê2ê222H’êÞ|iNŠ?°{°·…H‰‰µµ°·[µœ11HºOOOOÌÌê>dd??çdñBÌBBdddñd»?dd??ddd癎3õõuuu##è u# €€#XuuXuuõuõ€è !t’HHHºtOtÝ!ÝOtÝÝ!€ H!€º11Ht€ttOttOt’l?lêÃhlÜêBtÜ!#ÜOÜ»²²âÖÖ´¹è €€€õõ###õèõ!è!Ýõ € HH€õ!€OHtH1HHHtÝ!€€#è€!!#€#€€õ€õõõ#õ#õu#õ#u#‹õ#‹õõuõõ#####uuuu u€!Ý!€€!ÝOÝOÝ.Ý u€€# 耀!!!OO!Oõ!OÃÝO¹l2€€ºººt€là’N?µ’2lHê‰Ø[êt1‰N€2i[ý¶tà !€!€uõ#è##è€OtOê?ê?ê?êê1Ü1212Þ[‰‰i?Šý@hßl.N·"@°ýN?2’ÃHOÌÌÌñdddd>dçdddññBBñddddñ´??dl™´´´´Â´ÏÏõuu#u€€!u!€#u XuuXXXuuuèõ€ÝH’1’1ÃH!€!.Ã11t!Ý’1ÃHºHHÝ!º!HºÝOtÃÜ2êtll··dhhÜüHl´´Ž™øÖÏù_»!!€ !€€€õõŒX!#èõ€OÝÃÝ€tH€H#€!#tê1Ã1tH.!€€!€€€!!!€#€è€#õ õuõuuuuu#õu#õ‹#õõõ‹õ‹##€õuu€# # #€€€€!!!!!!€!€ €€à!ÝtOO.O!€##Ò#!ºè€Ý#uºÃÝÝœµêÝ€HÝt?HHàtH.…°ê’êNtH’HHttÝ€€€#u€è!#èOBê2lý2ýµêŠêêêŠ2ii°µ‰‰iN"i??µêtÜiŠœ?lœœœœ1BÃÌtÌBBBdd>dd??ddddñññddddd´?dl?»»çd™™™»Žõõuuõ##!!¹O!€uuu XuXXuu耀ݺÃPœ2êêÜÜ’tH1Bê.ÝÝlÜBHºtÝÝÝ!ºHÝOt1Ü???ý@ÜêyhiòyhØ´BdFâ3ññçééçc_Ã#X.Ý€õXÒè!!èO!!Oê.€àt€HÝ!Ý€!tÝ.t.tÝÝ!Ý!ÝO€!!!!€#!€€€#èõ€##õ#uuu‹õ#õõõ‹uõ#õ### u#€€# #€!€è!!!!!€##€ €Ý.ºº1’Ã1À !º!O#O€º€€€€€€€XH’€Š?a2tHl·lN?ÞHo2ÞÞ’oH@·?H!€€€€€€€€!!O!OOBêÜl´·hliÜ21êNi·[ilŠŠŠµýýl?êêêHÃꜜœÜœÃHÃOO!7!ÌBñ>ddd>ddç´ç?ddêñd?d?´??™l?Ï»´´çddŽŽ3uõuõuu€!OHHºÝ!€€uu Xu#€!OOtÃ1œœ21Ül?lêêê.HH2ê2êl´2úHÃt#tHH1BÃÃHê´ÜêÜd{{»hد{hÏÌéñ<ò¯ttttÝ€ u!BÌBOOè!€àÒà Ý€t.àÝà Ý!€!!ÝÝO!õ€€€!Ý!!!!!!€!è#õuuu#u#u‹#õõõõ###õõõu€€!# #€!!!!!OO!èè耀àà.’œœÜ1ÃH1HÝõ€ÝO #X¹tu€’úºœ Ã1€1H¶’HÒtŠÝ .·ŠtàŠ[lPt’êH€õ€!tOÝ!OOOOOHBêÜ?ý@ý?iilllµl¶µµi°‰2µ??êHBBÃd´êHœœ1}OOO!!O!ìÌÌddd>ddd´´?ç´dñ>ñd?ç?´´´´´ç´´´d?´ÂÂÏ3Žõõuõõu#躺}ÃÃú€€#uu#€!ÝúH11’’ê2ÜÜ2êÜ2µ@[?iê1ê[µý´1ÝOÃêtÃÃÃÜêêÜÝ1êÃl!êd»Hêd»ÌB´B»ÌçdBdý?·’t.à€#!ù!OOBB21ê.H àHt.º1œt àõ€!ÝOÝ€# õu€Ý!Ý!!OOOO!€!#õ#uuu#õ##‹õ#‹õèõ€uu u€! u#€!!OOO!7è#õè€Ýà.ºœ2222Ãà€!tÝ€!O€O!O€ÝÃÜÜ.€1ݶ?H1 Hi‰1têHêHÞ.¶H.2’€HÃHÝ#!OHººtOOOêêl°{[iýhýýý±@ýß°Šl·lŠê1êêHBñÃÌBêBêœÃÃBêÌOì¹ÌÌÌ&Bddddd´´?ç´dBñd´´ç?Ï»´??dddÏçdd>dŽ3Ž##u#u€#€Bº#ÒX€¹.€# u€.t!HÃúºtºHÜllê1êêBHýlHlÜÝHêÃHtHllO?HllÃt?œH´´·O´1€BH¹dꀜ}OcdéÌ>ÏOÝ’NHHHÝ€€!O}O#!ÃñBt.’’tœ2‰Pt’2Š1t.!!OÝ!€€€#€€O!!ÝOtHHO!#õ##uuuõuõ##õ##õ##õ€€#õõ€!OÝݹ¹!€èèè#èèè#è€t1P2lœtº.€€€€!t #º€!€œ1 €ÝÝ€ Ý’t’t1l°l1iiHPt2ttP…¶êHHHÝ€!õ#HÃtH!€€Ì€!HêÜNiN[@Ný@·@@°¶êÞlŠ·ý2êêBÃÌBBBÃBÌÃBBÃÌ!OO¹ÌÌBB>dddddd?ç´ç?çññdç´´´Ï3´´dh´ddd´çç»3çÂÂdÂÏu###!!!O€!!!!Ý€èX€€€€Ýº’HHHººººtHt.HHtt21ÝHH!t€!1l´?ÜO1BÃHÜÜêÜÜ?lÜ?BB!õO#!ºOÃBñÌè´·¯°1H¶¶¶¶1t€€€!uu###!ÝOÃ1l¶’‰t1H’2HÝÝO!€è€# õ€!!!OºHÌ!€èè€#uu‹u‹u##õ#õ###u#€#Xu€€¹OOO!€#uè€õ#õõ#€1P22œt.€€Ý€ Ò ÝOXÒ!!€uX€€ €tÃHݵlàtêNêÜH1t..12·P’¶¶.H.!!ÝÌtHBlÃÀ!!ÃHHê?NNý°êµiiêŠêtŠ2ê2°"°· µ¶êêBBÃÌÌBBBBÌÃO¹OOìÌBñd?d?dç´ç?dçdddd´´´´»3´´çd?3dçç´À3ç>>>Âçõõõu#è€!u#€ u€!Ý€OÝ!àtHúºtºttO€ÝÝ.Ý.ttÝHt!...Ht!tÃHtHtH11Ãtêd?1¯·hýX!Oê´ddu!#è¹O#ÌOèOHH…¶|µ?¶ÃÝ uu,X€!ÝêÜ1ê2’ý[ý±Y°œPÝt1tOO!!!€€#õ €ÝttºHÃHO!è耀#õ#uuuu#õ#õu##õ€uu€ uu€O¹!!!€uX u #€!€Ot1Ã’1º€€tÝ€ u€€#€! H Ò€€Ýt2i2.t’€.tH€ê‰HÝ’2’еltÝ’ÝÀ€!tBêÜêHOHÃêHH12Nµ"·ýiýêlNl’1ŠN$@‰"iµlê2ÜBÌBBBBBÌÃÌÌÌOBÌÌBñddçddddddd??ddlç´´´´»h´´d>»d´çÀ3çd<ññçJõXõXXõuX!€u“Ò€tÃtOt1œ’tººtOÝÝÝ€!tHHHÝÝOÝÝ!HBtOtÝ#€€uH€HÃÃê??1õœ´ÃHÃdF´ý?Ò¹OÌdè1H.tÞN?œº!XXXõ 耀!€ÝÝt€t1Š.[ lœÜ1œt!!€€èõ õ€!tHÃÃHÃO€€#€èè#uuuuu#õ#uõ#õ#€#€€uu€€!Ý!!w#uõ uèõ €!.H1H.€.º.àÝ€ X !!# uÝtOX€!€€.ºº’œ’ÝH?Š´NlH2Ý’2Ü2H’Ül¶ê¶ÜHÝ€1€€t.ÌêêêÃHÃ?êÃê?µ22i°µ"iê2·iN2lN嶉‰‰iiµ?llÜêñBBBñBÃBBÃBÃÌÌBÃBBd?´??dddddddddç?ç´´´´´3çddñ´´ççç3üç<çñçuõuõuuuu#€€!Ý}ºttHÜl¶’º’’úÝOOOà€tÃ1ÃÃt€.€!ttHtà!H1º€€õ?lºHÜh´¯œlOld´{Fyò{Fd²55%]´Ý.2 ê1HÝ XXX!OtHHtt.œ??ià P¶€ºoÝœÃݺOw#uõu Òõ€OHÃ1HtOõ#!O€õuuuuu#u###õ#õu€u uu €!!!!wuuuuu€! õ.têºHºt.º!XÒu€€õÒ#t€!HOHÃ’€.!àÝt’2?P?tHêo€1ê’êH.Ý11tº1ê’.ÝtàtÃHHêÜêtÃldÃêÜ2ÞNÞ|µµêl221µŠ?°2 °‰°N"[iN´lñBññññBBÌÌBBBÌHBl?´?dddddddd??´?ç´´ç?´çdd?ddñ>d>d™´ç:ÀÏç<>>玌õõõuu#€u##€Ýºt!OHêêê¶œ1’œ1Hº¹tOO!OBêBHHOHÝ€!!Ott€!1dúHth·ý´´lhÃ!d3ù%5%åò5²ùå_%ù´t’1’t.€uXXu#Ò#ºÃtH1Hl?1’1Ò’NÜ1ºt!è€uu õXX#!tÃ1ÃHt!€!OO!uõ#uuuu####u#uuu##u #€!€!!èu#uõ#€€Ýt¶ê…tot1œº!!!u u!!€€!H€.ÝHÝ1’[?2œœ’ºHÝ1t.t?N?.?ltà11ÃÜÜH !1œHêÃHÃt.ÃêlêÝtHêÃê1ê22N|°·Š@·µŠlꊵ N[ŠNŠ"[ °ldêBñÜBBêBHÌHBêd´´?d?dddd?d?dd´ç´?ç?ç?´Ï´dñd´dd>dd>ççÏ]:çç™çXŒXXõuuu€ XXu€!!ÝH1’HHÃ’ÃOtºtÃOÃHtO!€X !ttHº€!2à êê2{Bê»%%·3?3Ã{ö²Ö5ÖYîøò_ÖY{êà!€õ õ#€€ÃœÜÜP11P!Ã!XÝœÒo?2Pº#€€###€#uu õÝtÃHHHH.OOOtOO!#õuõuu‹#####õ # u€u !!Ý!€w#u#è#!Ýt’Šii¶tHÃú!€€€!#€OÌÌHO€# õ!’Ã’’’œPœPi··iH’Ht1’1êê t?HO1ÃÝ!1ÜÜ1ÃHtHÜêHÃÝBHHý?lÞN""|NýN2H¶ê2°[µ¶Þ2|°[°°ýŠê1Bdddd?dêBBêêd´´´???çdddddç?ç?´´ddd?´´´ñddd>ddç´ç´ÂÏü:çççJdççñ>ÀÏ:J:Ïçduõ‹õuõŒu##€###€!€OO!OHÃt’º1œtHHº1 ºt.€º ! !Ý€è€#Xõ#€!ê1!ý»»BÌ3òñâç3ñ&Ìç>éåTçÏ33hÝÝ€#è#õõ#!€ºÝº.ooº.€ºH’ººýº.º!€€Ýº!€##€€!ttêlÜB.!€ttO!€ #€Xu€€€è€u!èè õõ€!ºº1ú!!ÝŒ!èÒ€1êê2Šà’à.¶P€.tà..1êµNêPê1.t.ê’êêNµPPPP’l°1tPHHH2[21t.¶ttÝH€Ý t1?ýêlP2tH1êÃtHê1Üý‰[NŠŠŠNŠ[ÞÞÞÞN·Š2NµŠŠµ´lœœÜÜd?dÜdddñHBl´´´´´?ddd?ç?´´ç?dddd?d?dBBñ>>ddçd>>>3Ïç]3ñççõuXuŒuuuu###uuwè7OO!!Hú€2œP22¶.11H1t’tttt!tt€Ý€!t!€€õèt!ܺ1ú´]B7Àç™â3d»Ï>¹B‹ÌééG>é>œ´ !€Œõõõ#!OÝÃÝà. o21úº€Ò}!€Ý€€tX,!€€€!!ÝtÜBt!ÝtttO!€ XX õ u€#€€u#####€€!຺ú! Òuõ€OHÝŠ’µ°%‰2’ý.t’22·ßPÞŠµÞê¶Poê2Pê1HÞt12’Þ2ŠN¶¶H¶µ1PNêŠ1¶¶H¶’t.€õ.ÃêHÝàtÒ’2ê?êOÝêê22lµN2li¶2"N°""i2µ°[·°ii´lÜÜÜÜ?dñddÜd´´´´´´´?ddd´´´ç?dddddld?dBBñdç´çdç>d:çü3Ï>uŒuuuuŒuuuuuuuuuè!!#€ttœÜ?iŠœ’Š?¶œœ211tà€!1!êêÃ!€€€OÜœœÝl»™w¹dÀdÏO>Ïñ&Œ777d>>dœdBX Xõõ‹u!!Ý€u .œ¶2ÞÞ[i11B!uÒu?{ýº.Ü€€€OtÝOOH1ÃHÝ€ÝtÝ€ õu€#u€€#€#u€u#u#!¹ºº....ºÝ€u €!ÝÃ221Pt‰2µÜ.lýt’2H¶ê‰·|2"‰··2HNŠ’Þ°NŠ[|"˶Š.l¶ê¶êê2Þ2Pµµ1¶1tHtHt11êtêoê[êNoœ2lÜll1[Ný°iµiN|"i ?ŠPÞ°·[ilêlÜœêÜ´??ddêdÜd??»´´´´´?d?l?d?ç´ç?çdddddldddBñddç´ÂçÂ>çÏçç3ÏÏ::uuuuŒuuuuuuuŒuuu#!èõõOtOÃ11lilPœlµ22Ni?µ1êÜŠ´ÃêêêBtt!€t´ÜºBBÃB3dÌ»B̹¹¹#}ÌììG7>ñ3ñdBBtXu“u###!!!€àX ..1’Ü·[ýœu!!€OÃ!ݺ€ HÃ1êêÃÃõ1€ tHt!u u€!!ÝÝ€#€u # ##€!Oºººº..ÝàÒÒ€ºÃHttêN°@P21i?lHHàN2[[@iµiiN¶’’P22°µ2Zµµ|‰°‰‰"Z±[Š[Zi2ŠNN2ii¶2ê’H21H.2ê121PtêOêýh??lÜý[[[°[iÞ2Š22µÞi2?µŠ2llêÜêêÜÜddddddddç?´´´?ç?ddd?ç?ç?d?ddñê>dç´ççÂd™çÏ3ÀõuŒuuuŒuuuŒuuuu#uèèõ€OtHÜ2êl´êêœÜii??ý@»2Ü’HHt!!HBH}d?d?Àdñ´´dÛ¹¹}¹¹O7ÌÌ>B>dœOuŒXuõŒXu#!O!€Ý€Ý’ܶPºàÝuºBBBŒXu¹Ou #’ÃêÜ1HH’!t1Ü1ouÒ uè€!!!!##uuuu#€!!Ýt..ººº.à .HHÃlýµ’ÜZ±ltiýà € à1Ü@±t굊ÜNNi‰"‰‰ÞµP µŠZ Z"…Þ2‰ŠHPŠ?µµŠŠl2lŠêO êêêt’µÜŠ?°l¶H’êiii´ê1lN?ll2êê’’2ê°µllêê??ê1êlldldl´´?d??»3»ý´´´?´´´´´?dddd?ç´´?ddddd>ñ>>dç>çÂ<ŽJŽ:uuuuuXuu#uuu####耀€!HÃÃ1Ü??µµê1t’êÜý?ÜHê´ÜdHÜllÜÜHtHt!€utdBœd´´dÛ»?ddññBdBõwOwÛdñ¹ñÛwõXu#õõ#è##€!€€Ý2[ß{ ? ¹HºuXO¹w“u€!Ý€ºH’êêH.Ýtœ.X .tà€€!¹O!#è€u€uuu€è€!OÝÝ!o.o .’œ1Hà.HHi²±[1€ ! !Üœ?? €ý·µya$a·lµ"a·µ…¶‰ÞNÞ|¶ËŠŠ°"2ê12Nµ["ýµl¶¶l2êêHHtÃHHêH,.lܰi???2H’’ê2ê’2ê22P21?lllÜê2êHHêÜddlddl´´´?ç?»»3»´´?ç?´´´?ddd´´?ddddddñêñBBñdddççd癙癙:Ä™™õõXuõuuXuuuu#!è€u€!!OHêêlê??µ?’lÜÃê2ýýiêê´·»?HÜêtHº!!€€BBññdœ}œdÃhh»¯ü»B¹ñ¹O¹ñBOèè#èèõõ!O!!u#€€ºtܶ2l2h??œ€w#u#“uu!Hݺ’1Ül2êHH..ººÝ uݹ¹O!€##uuu€#€!!tÝÝà.....’22’ºê?N2ê1tt’Ý€XÝÃ!!1h2l·@±·1ê22¶2¶1…N…[°…[¶|°Z Z"жŠ2ÞHiýN°iµÞ2l¶ê1ÜlHtt11l¶@µê’2iµ?NŠÜ2Š2Š22l¶1êÞê1lêÜ2llêBHBBêBêÜldÜl??´ç´´´´3???´´ddddd?çddd?´çddd>B&BBñd´Ïççç™™™Jf>™¼::<õuuXuõõuuuXuè€è€õõ#!ÃBêêœlH’l1Ü’1·y%¯»´?´3?»»lжêê1ºº!躹¹Û&ñ!Ã}BOBœ»dœdÃOºuO¹ÛO¹!#ŒõW“ŒŒwèOO€u€!Ý.OÝ.º.º !#uO!!u#Ý##OºHtt’2ÞêtœHt.Ý€àt¹!è##uXuuu€!!O!t.Ý.º’’….’P.!à1Š·ßP€àtÝtOlüÃܵÃ%¯Øý1.12êi‰?"N¶P|Š$ "°¶Z$ߊl¶¶Þê2Š2l2ŠÞê’’t1Ã2Hê’tHꊵ2·?µ?l22?NÜ2llêÜŠŠêlê´1ÜêêêBêBÃBêœd?l??´´´´ç3h»l??ç?´´´ddd´?ç?´dç´ddddñBÌÌBBñd´´ÏÏççç™çç<éfJT<<õu#uu##uõõõuu#!!#€€!tBêêBœÜ1HêÜ2·´?êB´·¯ù¯´¯c[ýꜜtœÃ!uw!è!7ºœœ}ÝÃ?œd?œœh#uuuXXXŒŒXõõ‹õõ‹#uu#€!€!Biý21. à.#º€ÝèõOO!èÝ1œ’12ê.t1.€€€Ýºº¹!!##uèuõ#€#€#€ÝHt’tH¶P.º…¶Nl€t1.1N.oàÝ OõÝ!´HÃêuýi’HœiœN{lhiÞ…¶|i ‰ Z‰‰‰Z°Šl1HêiiÞiiNil1ÞêÜHHêêHtHttt12Šý е°°ýiŠÜê¶2Þ¶l2ê?2êêêêêBBBBêBBBBÜll?´´´´´»3hü33´çd?dddç´´´çdçddddddd>ññBB&̹ñd´´ç3»ÏççJç™ç<ÂdÂÂŽnnö™:uuuõXuuXuuuuu#!OÝÝOHêÜœœêêHHêl?Üh%{´dÃB»?¯ò¯cß[ê1’ݺÃO!!!wOwOÛ1}º}ÃÃhÃOœÜ´ uuXXXXõõõŒõõ‹õõu #€Ý¹HH12Ü1œ’Ýàu €u!¹¹º!!HHt22¶1t!à.t.Ýtº¹Ý!u###è€#õ!€ÝOttH1tê¶¶2P2Þ1ààHÜ$ßZ1t€!Ý õ€õB€#uHº€# €Ýœ’t2êêiN@‰ZZ±$°|ÞÞ" [it1…¶Niiiµ°µ2lŠ2ê1ÃêÜ2ÜÜ.êŠllеlŠ?NN?lжê22Ül?2l2êêBBBêBêêñBêêÜ»´´»»»33»»?ddd?ç´ddd???ddddddññBBÌÌ̹ñdçç:ÏÏççç™çJ™™JÄŽŽ:™nè€èuõu#õõõõõu#!OHHÃ1œÜê1êBBHB1êdhl{aØüOO´ç3´»@·µÜÃÝOOBH¹O#!!w€OO!!ÝO#d}#!ÛÝwOuuXÒXXuu‹õõõŒõ‹#€#€#!tºº€Ý€€Hœœ’ Ý€Ý! tO!O!!ݺú2ê1Hto!ÝÝOº!€u#uXXõ#€!õ€€!ÝOtHH¶ê..…2¶.?ß@2i1º tº€ !Hêê[@{ܺÝ.t!.Ã1.t’°N·"Z [ Z±$[ [° "2¶ê…ܵ°°µÞ·Niжi1HÃHHêÜêtÃ2NýNll?Š22ÞÞ22?22Þl2Nµ?ldÜêBBBÃêêddÜd?ýh»´»»33»»3Ï»çd>d´ddd?ç?´?dddd>ñ&Ì̹Ìñç´Ï33Ï™JŽJÂ<™JJ¼:JŽ#è€è#€#uXõõu€!¹HBÃHÃ1êœêHê1HHHHdHêH?B´ñOOèÃOÌÃ{{üµÜœ?ÜÃÃÃ!è!¹€##uXu#w#ÝÃOÒ€OX“uXuuuuu#õõŒõõ###!!!!Ý!!!ÝHÃHHúH€àÝtÝ€è!tHH12Nµê’ttt.ÝO!ÝOO!èuõuuXuuè€Ý€€àtHH1êŠ2P.t…2’’’Hê?ÜtÒ€’O õÒè€OO!OÃlÜo€€tà’2µŠµ’[i@Z±%±‰ °iŠÞ¶12°iŠŠ1HP?N?ŠiN·iNµ2êÜê11Ül2êNµýýiµµi|NNµµÞ¶ÞÞlNµ??NlÜÜÜê1ÃHBBêdd´l?´»´´´Ï»»»»Ïühçddd?´Ï3»çddç´ç´´?çddd>d>ñ&ÌÌóñdç´çdÏ3ÏÏÏçÏÏççÏŽ<çñBÌÌÌÌ&ñdçÏÏÏÏÏÏÏJ:<ÏííŽ:¼J<™dç´3»ÏÏ3:ÏÏÏÏÏJçŽöíTÏ:çTÏ™è!!!ÝO!! #€€!Ot’Ã’1œ1HHOÝ1BÃHÃddœBO#B3â²BBadÜœO!Ý€€€€w###uuŒX“Xw#u#u“uu##èèè#€#€OOtºtÝ€€€ XÒuœiý?œà2P2HHê’À.HÃtooà!€ÝOHO!èõ‹èèw!€€€ !HHH’¶22Þ2¶’t¶P.’H€utOõ€!º¹uOèO?Üt€ P’Š?[2"ý߉·Pi‰ ‰ ·"NiN2l[?Ülý·[°[ ‰‰‰·°[N°µ’2’1’êlý@·‰{߉ý°["ŠÞÞ2êŠ22?2¶2êê1111œdll?´ý»h»»h»3hüüö]]ü33»»Ïçç´ç´´´?çldd>>d>ñB&ññdÂdçÏ33»ÏÏÏ33:ÏÏÏ:Ï:öTí:ç:JTY¼Ïõ#€##€€#!!OOOOOO1ÃtÝݹttHtÝHêêÜ?ÃBœºOO¹!!O!O´´h!Bü1dܺݺÝÝÝ!!#uXÉu#ɹŒX#Xu7w##uu #€€!!OOHHHOú݀€u€#t€Ý!€tÜ2’lÞ2P1Ü1tHÃttH1’HtHOOè#õõè!7è!€ÝÃHO.HêÞŠ¶P1ºÃHà.11Ã..ºHOOÃ1Ou€õO OOÝÜt12Z1Pœo°‰ŠNê·°2NŠêÞ2lµlêl2ê’ê?ýß@¯°i°·µNŠ21’PttÃÃ1?ýi[·‰@Z߉‰Z@°|iN¶¶’1ê’1Ü2œ11ÃêÜl2dl?´´hl´»´?´»üü]üüöüÏÏÏ»3Ï´´3ç´ç??çdddddd>ñddñBñ>dç3Ï3ÏÏ3íÀ:ÏÏ:ç:T3JÏ>ÏYTÏuu#õõõ#€€ÝÝt1’H’Ã’œœœÃºHH1ê1êêêêú¹H!X€XuXOõ!!èBýÃ[?H¶lHX#Ý!u€#u#uXXXXuŒŒXuuuè#XX€€àÃt1ê1BtÝ€!!€ €Ýººlœ#u€èHÃH.Üt?ê’꜒.’tttOHBÃ##õõè!Ý€è!!!tHo…PÞ…’t.tú.Ý€€OH1ÃÃH!€!tt€ à¶[NŠ’P’iý2µ.µ¶ŠŠ @°Šl2êlê?lêêêil2lµ·ßß$Z·‰‰‰[°°2lµŠÜê1tHHHHê?´i[ß‰ß ‰° [[µlœ1ê1’’1Ã1ꜜœÜÜ2?µµll´»l?dd?33h3333333»3Ï´?ç?ç?´?çl?d>dd>>çdd>dçÏ]]ÏçÏÏò::Ï•øí²ÏööÖö]õõ####õõ€O.t1HÃÃ’Ãt.O1ÃH1Ü?l2h?º €Ý€#O!èÃè€è!O»´ê[?2ÜÜœº€ÒX#w#w#!wwwu###uuuuõõXÒ!.H1’P11HHHOÝ݀ݺºº.€Ý€ OÝ!ݺHÃàºXܶœ1’tÝ.t€OHO!!!!#è!€€€!Ý!O!!Ý.Ht…P|"|Šlœ11’ºOtê11êÃÝ€€!#€Hœê1’Ši °°2œl.Pê°ê|2¶·‰[µl??l?Ü?lÜêêlýi[a$߉‰Z‰[°[iµµ?2œ1HHHÃêl?´i[·ZZ[°°µl¶œ22?2êBêÃÃHBÜÜ22Ü?´iµ´´ýüü33»33ü3]]3333ý33´´ç?ç?ç??dddddddd>Âd>>ç´>>dççç3ÏçÏÏ:ííTÀ]Öööòö²FÀuu#è# #€!.ttHHºÃHHHtÝÝO.BêêêêÜÜêÝÜœ11H€€õõ€!!!XOHÃêêê’HH.#€!#€#!u!u€uuuuuuŒXŒXuõõt’’ê22œ’.Ý!€Ý€!.ÃÃ.€Ý!ݺt!€!1HÝ’.21l1ºt...ttHHtO!!è#!OO€€€ÝO!Ý!€.¶P¶˰ |Šê1ÃHO.tÃÜ´i´êÝ# €!.Ýà.’à.i Þ.N°aZ·[µ‰µll???´d?lldÜŠ@@@$±±$·‰‰‰°i°Niµ2¶Ü1Ã’1œÜ´»[ý°ý@‰Z°|°µlÜÜ2221ÃHHHÃ1êÜÜÜll??µýýý»iiýýhh3ý3333333333333´´ddddç´dñddd>>dddññdçÏÏ3ÏÏç:Ïòíííå5ÁòøâöâFùò»õ#è!€#€#!ºtݺtHHH¹ºOOOtOêlBtBê1Ü1OÃO€€ÝO#!OB!!èOHH’êê2êÝ OºX##¹u!u!èÃO!€#u#õ€# tÃ2¶’t€ €€€!ºHºÝÝÝœºHÃÝ!!tºtºtÜ’1œ’º.tHÃ21HHÃBO#!##!OttÝtÝ!à.t1ÞËNŠŠËËP..!€€€tH€ÝÝÝÝ!€!tOHHto..¶Ë°$$°H1t2?Zß $Z[Š?µ?lœ´Üll?iýyy$$$$Z·iŠ?еŠ22µŠœœœ’œºÃ1?´hýi?°°Z°|l2ܶœ1úÃHºHHÃ1ÜÜl?´´ýhü··hýýüÏ´´´ÏÏ»:3Ïddddç?ñddddÂd>ddÂdÂd»»dçç3ÏçççÏÏ3öí:T5øü3_òFö»u#è!è€è !HO.tttºººOt¹tOO#HdBOOêd?ÃH1B’HèÃêO!Ãd´!Ì!OÃHê22ý·2!€Ýu€!1!Ã!uXO¹O€€#!€€Ot.tº..ÝÝttÝHÃÃÝ!ݺBt€€tBÀºl2l111ÃHºH’œ1œÃºHO#O€#!ttO.tÝàt’P¶Š[°|ŠÞ¶otO!€ €!.êBHÝ!Ý.tHOÝ1??P..Þµ·|NÞ[@ßZ‰N߉‰µ2Nlœlêœ?·[·ßØ%$$$‰µZ°l2lµ?2ÜlœœºÝœÃ’1œ2·?¶Ni·"µ¶Üœ1’’1œÜ11êœê2´´ýýýýýh·¯·»ý»»´´çdç´Ï»í33Ï´?dddd´?ddd>ddd>>>dç»3´çÏ»Ï]üÏ3:F;åTíTTÏå53FÏØ5òâ#èè!!€€€!H!ttttOOOOOOOè!HÌBêý1!€Ýl{hõ#èOOêHtOOH1êl´µNÀ.ÝBl?œOHly»º u !ÃOHOt’Ã’œÃº..tºHÜúÝ.OÝÝݺHÃ1Ü1œœlœ2œ’Ã.’HÃ’1’ºttO!##!!!Ýt!€Ýº..t¶NŠÞ|N22PH.tt€€!Ot!Ýttttt!õO€€O12lÞŠNŠÞ2NN2?ŠêllЉ‰?¶122êêêÃêB2hýý°ß‰·‰‰µ·[ill??lœœÃ1úº2œœêlhllê?N"¶222œ11Ülœ1ldl?µihýµ´´ihhhi??´??dd´´çdddñ>d?ñññññBñ>>ñ>>d>d紻ϴ]çÏÏÏòTí:KÏö:Ï_ööÏFFFFè€!!è!€!€HºÝOtttOO!O!O!è!èOÌOO¹êÜÜ1Hºœ´l!B€!OH´BHHtHÃ.Ü·?t’ÃÜ?œÝu1ÃݺœHtºÃHHê1ܵ2’ºº’’HHl’!€!ÝÝ!Ýœl?µÜÜœtt.t’!àtHÃ’’ÃO..Ý!€õ#!èèOt€€tÝ.’Þ|ŠP…t..€ €€!€OHtOO!€õ€tHOt!€Š[µ¶°ß@2¶ê’112жPÃ1œÃ1êBHBHêµ?µiiNŠi°°??lêÃ’B1ÃHHúÜœœ’ºHHê?Üêl¶?¶11111’útHH1Ü?l???´´´?ll´´´?ldêñBB>ddddñññBBB&BññBBBBÌÃÌÃBBññBññ>>>dd´´>´çñ>ddd>dÏ::ö::ÏÏçT3d>ç´d ( (!(")%*&+'*'*))))+*+*+()&*%)$-+-+-+.,.,/-/-/-.,.,/-/-0.0.1/1-.+.)0*2 ,3",4#-7#.8$/7"+9$-:%,<'.>'/?(0>'->'-=#.<"-8 -6+5*5*4+4+3-3-3-3-1/1/1/1/0/0/0/0/0/0/0/0/0/1 02!13"23"22!11 00//1/1,0*.(,'+%*$) &%$"!!""! !  !!$#" !#$%&%%%%%%%% $ $%&&% $ " !  "#$%&%%%%%%%%--,,,+++,,,,,, ,,+++,,---,-. / /.-,........!0!0!0!0!0!0!0!.#/#-#-#-",",",",$.$.$.$.$.$.$.$.!+!+!+!+!+!+!+!+#-$.%/&0(2) 3*!4*!2( /( -( -',),),(+(+(*(**++,,-,-/.-.(,(-*/,1,1+0*/).(-',',&+%*$)$)"(#-!-",",%-%-&,&,$(%)&)&)'(()*)*)4"04"05#15#16$07%1:&1:&1?)5?)5@)3A*4A*2B+3B+3C,4E+6E+6G,5H-6I.7J/8M/7M/7O06O06P17Q28T49W7^:j=:j=:j=:m<8n=9n=8n=8pA;pA;oC:oD;nF:nH;mI;mI;gF7gF7hG8iH9jI:jI:kJ;kJ;lKgI>fH>eG=dF>cE=bDjH?kI@kI@lJAmKBnLCoMDpNEpNDuOFrNBnLBiK@hJ?hL@jLBmLCkHBnICqHDmFAf@=_>9]<7\=8\=;^?=aB@bCAbCA`A?]><[<:_@>^?=\=;Z;9X97U64T53R44R46P37N15M04O13P24S36T47O/0O/0S10U32X44Z66\97\:8R65M32J0/I/.M1.N2/M1.K/,P3/P3/R51S62V72W83Y:5X;7Q95O:7P;8P;8R:8R:8S:6T;7U<7V=8Y>7Z?8]@:^A;_B<^B>`DC^DE_EF^DE]CD[ABX>?W=>Z@AZ@AZ@AY?@Y?@X>?X>?V>>O<8N<8O=9O=9Q>:Q>:S>9S>9R>7UA:ZC;^G?cJCdKDeLEeMCbJ@cK?eMAfNBgOCfNBfNBeMAgOCgOChPDiQEiQEhPDgOCfPBcN;bP:cQ=cQ=cPAbO@aMB`LA[G@ZF?YDAXC@WBAXCBYCEYCE\BE\BE[AD[ADZ@CY?BX>AX>AW=@W=@W=@W=@W=@W=@W=@W=@X9>X9>Y:?Y:?Y:?Y:?[;@[;@Z7=Y6qPAtSDvUFwVGvUFvUFuTEtSDrQBpO@nM>lK'/?(0>'->'/=#.<"-8 -6+5*5*4+4+3-3-3-3-1/1/1/1/0/0/0/0/0/0/0/0/0/0/1 02!12!11 00/0//1.0+/*.(,&*$)$) &%#"!!""! !!  !!$#" !#$%&%%%%%%%% $%&''&% " "!!#$%&&%%%%%%%%,,,,,+++,,,,,, ,,+++,,---,-. / /.-,........ / / / / / / / -#/#-#-#-",",",",$.$.$.$.$.$.$.$.!+!+!+!+!+!+!+!+#-$.%/&0'1) 3) 3*!2( /( -( -( -*-),),),)+*,+,+,+,,-.-,-)-).*/*/+0*/*/).',',',&+%*$)$)#)#+!-!+",$,%-%+&,%)%)&)'*'(()*)+*3!/3!/4"05#17%18&2;'2;'2?)5?)5A*4A*4B+3B+3C,4C,4E+6F,7H-6I.7J/8K09N08N08O06O06P17Q28T49W79qBkN>jM=iLeG?dF>cE=bDjH?kI@kI@lJAmKBnLCoMDpNEpNDtNErNBoMCkMBjLAiMAjLBmLCjGAoJDtKGqJEkEBbA<_>9\=8]><_@>aB@cDBcDBaB@^?=\=;\=;\=;[<:Z;9Y:8X97X97V88T68R59P37O26P24Q35S36T47P01Q12T21U32X44Y55Z75Z86R63L21I/.H.-L0-L0-K/,I-*N1-O2.P3/R51U61W83X94X;7Q95P;8P;8P;8S;9S;9T;7T;7U<7V=8Y>7Z?8\?9^A;^A;^B>`DC^DC^DE^DC]CD[A@Y?@W=X>?X>=W=>V>:Q>:R?;S>9S>9S?8UA:[D<_H@bIBdKDeLEeMCcKAdL@eMAgOCgOCgOCfNBfNBfNBgOChPDiQEiQEhPDgOCfOAdOAW=@W=@W=@W=@W=@W=@W=@W=@W=@W=@U8$/=%2?%2@&1B&2B'0E'/E'/I*0H)/J*/N+1R/3W48]9;a>nL@nL@nL@nL@nL@mK?kI=iG;gE9fD8dB6bB7`E>^E@\E?YE>VB;R?8O>6M<4 ( (!(")%*&+'*'*))**,+,++(*'+&*%-+-+-+.,.,/-/-/-/-/-/-0.0.1/1/2 0/+1+2*3+4 ,5!-6 ,7!-8!+:#-;$.?%0@&/A'0@&/@&/=#.<"-8 -6+5*5*4+5,3-3-3-3-1/1/1/1//././././././././.0/1 01 01 01 00//..0.0*.)-'+&*$)#( &%#"!"##!!"!  "!$#" !#$%&%%%%%%%%&'())('$$##$%&''&&&&&&&&++++++++,,,,,, ,,+++,,---,-. / /.-,...............,".",",",#-#-#-#-$.$.$.$.$.$.$.$.",",",",",",",",$.$.%/&0'1(2(2) 1( /( -( -( -*-*-*-*-, .+-,-,-,-+,-,+,+/*/).(-(-).*/*/',',&+&+%*%*$)#)"*!+!+",$,%-%+%+&*&*'(()())*+*+*2 .3!/4".6$0:&2<(4=)4>*5@+4@+4B+5B+5C,4C,4F,5F,5G,5H-6H-6I.7L.6N08N08O19P17P17R27S38U5:X8=]:>_;=g>9k>9o>:o>:p?:p?:tE=tE=rF=rG>pHkN>iLeG=dFcE=gEkI@kI@lJAmKBnLCoMDpNEpNDsMDrNBqOEnPEmODkOCkMClKBjGApKEvMIuNIoIFfE@a@;]>9_@>`A?bCAdECdECbCA`A?_@>[<:[<:[<:[<:[<:\=;\=;[==W9;U87Z?8\?9]@:]@:]A=_C@^EA^DC^EA]CB[B>Y?>X?;Y?>Y@=X?;W=:V<;U=;P=9O=9P=9Q>:Q>:R?;S>9T?:W@:XA;[D<^G?bIBdKDeLEeMCdLBeMAfNBgOChPDhPDgOCfNBfNBgOChPDiQEiQEhPDgOCfOAfQ@fQ>fQ@eP?dN@bL>`J?^H=\E?[D>ZB@YA?X@@X@@Y@CY@CX>AX>AX>AW=@W=@V:V>:R=8P;6M:4I81G6/ ( (!(")%*&+'*'*****,+,+,)*'+&*%-+-+-+.,.,/-/-/-/-0.0.0.1/2 02 02 01+1+2*3+4+5,5+7,8 -<"-=#.?%0@&/A'0A&/@&/>$/=#.9!.7,6+6+5,5,3-3-3-3-1/1/1/1//./././././././..-/.0/0/0/0//..--/-/)-(,&*%)#("'%$#"""#$"!"!! ""$#" !#$%&%%%%%%%%'()**)('&$%&&'((%%%%%%%'***+++,,,,,,,, ,,+++,,---,-. / /.-,........,,,,,,,*".",",",#-#-#-#-$.$.$.$.$.$.$.$.",",",",",",",",$.$.%/%/&0'1'1(0( /( -( -( -+ .+ .+ .,!/-!/-!/-.-.,-+,,+*+-1*/(-',&+',).*/&+&+&+&+%*%*%*$*#+!+!+",$,%+%+&,'+'+())*)**+,+,)2 .3!/4".7%1;'3=)4?+6@,7A,5A,5C,6C,4D-5D-5G-6G-6H-6I.7I.7J/8M/7O19O19P38Q28Q28S38T49V6;Y9>^;?`<>i=9l?:p?;q@;q@;rAnM>nM>nM>nM>nM>nM>nM>oO@lO?lO?jM=iL>hK=hK=gJeG=eG?fE>fD;fD;eC:eC:eC:gEkI@kI@lJAmKBnLCoMDpNEpNDrLCrNBqOEpRGoQFmQElNDmLCkHBpKEuLHsLGmGDeD?bA<_@;aB?bCAdECeFDeFDeFDdECcDB^?=^?=^?=]><]><]><]><]=>Z<>X;?X9>V77Y>7[>8\?9\?9\A:_C?]D@^EA^EA]D@\C?ZA=Y@:W>:V=9V=9U<8T<8P=9P>:Q>:Q>:R?;S@_G=]F>]D?[D>Z@?X@>X>?W??X>AY?BVU;>U;>U;>U;>U;>U;>U;>U;>U;>U;>U;>U;>U;>U8".@$0A%1B&2C%/A&/>$/=#.9!.8 -6+6+5,6 -3-3-3-3-1/1/1/1/.-.-.-.-.-.-.-.--,-,.-/./..--,-,,.+-(,'+%)$(!&!&$#"""#$%""#""!#"$#" !#$%&%%%%%%%%()****)((((()))*&&&&&&&&())*++,,,,,,,, ,,+++,,---,-. / /.-,........,,,,,,,*!-!+!+",#-$.$.$.$.$.$.$.$.$.$.$.#-#-#-#-#-#-#-#-$.$.%/%/%/&0&0&.&-&+',( -*-+ .,!/,!/."0."0. /-.,-,--,+,-1+0(-&+&+&+(-).%*%*%*%*&+&+&+%+$,",$,%-&,&,',(,),),)**+,)-*-*-*3!/4".8$0:&2<(3?+6A+7B-6C,6C,6D-5D-5G-6G.4H/5H/5I.7J/8L.6N08O19P2:Q28R39S29S38T49U5:Y6:\9=_<@a=?i=9l?:m@;q@;rAtJ>rJ>pK;oK;oK;oN=nMpO>pO>pO>pO>pO>pO>pO>pQ?oP>oP>nO=mM>kKjJ=mM@lL?lLAkK@jI@hG>hG>gF=fD;eC:dB9dB9eC:fD;gEbAeCAfDBgEChFDiGEiGEiGEiGEfDBeCAdB@b@>a?=_=;^<:\=;\>@\=B[=?Z<>Z:=X8;W78V67Z89Y76Z66Z66Y64Y64[54X53U64P20L.,K-+K-+K-+I+)G)'F(&G)'H*(J,*M/-O1/Q31P41N64M85M85O:7R:8S;9U<8U<8V=8V=8Y>7Y>7Z=7[>8[>8Z?8^B>\C>]D?]D?]D?\C>[B=ZA9W>9V=8V=8U<7U<7T;6S;7R=:Q>:Q>:R?;T?:W?;YBdM=fOAgP@hQCgP@gPBfO?eN@fO?gPBhQAhQCgP@fOAeN>gPBgPBhNAeN@fK@aI=aF=]D=_C?\C>\@?X>=X;=V<=X;=W=>T:=T:=T:=T:=T:=T:=U;>U;>T:=T:=T:=T:=T:=T:=T:=T:=W:>V9=U8".B$0C%1D&2C%/C%/@$0>$/:"/8 -7,7,6 -6 -3-3-3-3-1/1/1/1/.-.-.-.-.-.-.-.-,+,+-,.-.--,,+,++-*,'+&*$(#' % %##"!"#%&#"##"!##$#" !#$%&%%%%%%%%(()**)(((((((((($$$$$$$$'(()*+,,,,,,,, ,,+++,,---,-. / /.-,........,,,,,,,* , *!+",#-$.%/%/$.$.$.$.$.$.$.$.#-#-#-#-#-#-#-#-%/%/%/%/%/%/%/%-$+%*%*&+),*-+ .+ .-!/-!/. /-.-.-./.,/,0*/).',&+&+&+&+$)$)%*%*&+&+',',&.$.&.'-'-(.)-)-*-*+*++,-*.+.+.)5#/6$09%1;'2=)4?+6A,5B-6D-7D-5E.6E.6H/5H/5I06I06J/8K09M/7O19P2:Q3;R39S4:T49T49U5:V6;Z7;]:>`=Ad=>j>;k>9l?:nA;rAuD=vE>xIAwH>uI>tJ>qJ;pK;nJ:nJ:nMnN?lL=lL?kK>nNAmM@mMBlLAkJAiH?iH?hG>eC:eC:dB9dB9dB9eC:gEe?eFAgECgEChFDiGEjHFkIGlJHlJHkIGjHFhFDeCAb@>`><^<:\:9^>A]?A]?A]?A]=@\<=Z:;Y:8\:9[98\88\97\97[86]76[86X96T73P1/N0.O0.M/-K-+I+)E'%F(&G)'H*(J,*K-+L.,L0-K31J52K63M85P86R:8T;7T;7W>9W>9Y>7Y>7Z=7Z=7Z=7Y>7]B;\C<]D?]D=]D?\C<[B=[B;V=8V=6U<7U<5T;6T;4S:5R;5R=8R?;R?;S@cHAdI@bK=cLfO?fO?fO?eN>eN>dM=eN>fO?gP@gP@fO?eN>dM=gM@gM@gLAgLAeJ?cH?aF?`E>_C?]A>[?>Y=U;>U;>S9$/:"/8 -7,7,6 -7!.3-3-3-3-1/1/1/1/-,-,-,-,-,-,-,-,+*,+-,-,-,-,,++**,*,'+%)#'"& %$""!!"#%&####""$#$#" !#$%&%%%%%%%%'())))('((((('''########&'')*+,-,,,,,, ,,+++,,---,-. / /.-,........-------++ *!+",#-$.%/&0$.$.$.$.$.$.$.$.$.$.$.$.$.$.$.$.%/%/%/$.$.$.$.$,")#*#*%,(-).*/*/,0,0-0. 1. 1. 101/!2+/*/*/).(-&+$)#($)$)$)%*&+',',',(.(.).*/*/+/,/,/,+-,-,.+/+0,0*0*:&2:&1;'2<(3?)5@+4B+5B+5E.6E.6H.7H/5J/6J/6K05K05M/7M/7N08O19Q28R39S4:T5;U5:U5:X59Y6:[8<^;?b>@e>?j>;k>8m@:nA;sB=uD=vE>wF?wH>wH>uI>sI;pI:oJ:mJ7mJ7pLqP?pO>oN=nMjH>eC:dB9cA8cA8dB9eC:gEfE@fGBhGBjGCjGCkHDlIEnKGoLHpMInKGlIEjGChEAeB>b?;`=9^<:]=>^>A_?B`@A`@A_?@_=>^<;^::^;9`:9`:9`:9`:7`:7^;7^=8X94V42R30T20Q2/O0-L-*G(&G(&F(&G)'G))H**H**H,+I1/H30I41K63O75P86R95S:6W>9W>9Y>7X=6Y<6Y<6Y<6X=6\A:[C9\C<]E;]D=]E;\C<[C9U<5U=3T;4T<2S:3S;1R92Q:2S>9S>;S>;T?bG>aJeN>dM=cLfO?gP@gP@fO?eN>dM?eJ?fJ?gJBgJBfIAeHBcF@bEA`B@^@>\>>Y;;W99W99V8:U8:R8;S9U;>V$/:"/9!.8 -7,7!.7!.3-3-3-3-1/1/1/1/-,-,-,-,-,-,-,-,*)+*,+-,-,,++**)*,)+&*%)#'!%$$""!!"$%&##$##"$#$#" !#$%&%%%%%%%%&'())('&((('''&&!!!!!!!!&&'(*+,-,,,,,, ,,+++,,---,-. / /.-,........-------++) *",#-%/&0&0$.$.$.$.$.$.$.$.$.$.$.$.$.$.$.$.%/%/%/$.$.$.#-#-!)!(")$+',(-).*/+/+/-0-0. 1/!22!30"3*.).*/*/).&+#(!&#($)$)%*&+',',(-)/)/*/+0+/,0-0-.-,-*-*.+0,0,0*1+;'2;'2<(3=)4?*3?*3A*4A*2E.6F/7H/5I06J/6K07K05K05N08N08O19P38R39S4:T5;T5:V6;V69X59Y6:\9=^<=b>@f@?j?9l?9m@:oBwF?xH>wH>wH>tH;sI;pI:nI9lI6lI6oK;oK;pLsO?sO?tP@tP@tP@tP@tP@tP@tP@tP@sR?sR?rQ@qP?pO>oN=nM>nM>pNBpNBoMAnL@mKAlJ@kI?kI?eC:dB9cA8cA8dB9eC:fD;gE<_=>^>A`@AaABbBCaABa?>`>=^;9^;9a;:a;:b<9b<9c=:c=:a>:\;6Y62V50U31U31R0.N/,G(&G(&F(&F(&F((F((F((E)(G/-F1.H30I41M53O75R95R95W>9W>9Y>7X=6Y<6Y<6X;5W<5\A8[C9\D:]E;]E;]E;\D:[C9U=3T<2T<2S;1S;1R:0R:0Q:2U=9S>;T?9Y>7Y>7Z?8\A:`C=aF=bH;aJ:bK;cLfO?fO?fO?fO?eN>dM?eH@eH@fICgJDfICeHBdGCcFB_A?^@>[==Y;;W99V88V8:U8:T7;S9V(4>(4>)2>)2?(2@)3A*2B+3G-6G.4I.5J/6J/4K05N16N16P17P17Q28Q28S29S38T49T49U28V37W37Y57[79_;=c>g<6j=7mA8pD;vE>xG@xH>yI?yJ@xJ=uIvQ?wR@wR@vQ?tQ>tS@sR?sR?rQ>rQ@qP?qP?qP?rQBpO@nL@lJ>jHc@?a?@b@AcA@cA@d@@d@@b<;b<;b<9b<9c;9c;9c<7b=7`;5^;5_:4[82X51S2-O-+L*(G(&G(&F((G))G*,G*,H+-F,-J20H30H30I41L42M53P73P73W>9W>9Y>7Y>7Z=7Z=7Z=7Y>7\A8[C9\D:]E;]E;\D:[C9ZB8V>4V>4U=3U=3T<2T<2S;1R;3T<8R=:U=;U=;U=;U=;W>:W>:V:6W;7X=6Z?8]@:_B<`C=`E<^C8]F8_H:aJeN@gPBhQChQChQCgPBfOAeN@dM?cL>cK?eHBfICfIEfIEeHDdGCbDBaCA\><[=;Z<V)2?*3@)3A*2A*2A*2F-3F-3H-4I.3K05L16O27O27P17P17Q28Q28S38S38T49T47V37V37X46Y57[79^:>g<6j=7mA8pD;vE>xH>yI?yI?zL?yK>uIwR@wR@wR@vQ?vQ?vS@tS@sR?sR?rQ@rQ@qP?qP?rQBpO@nL@lJ>jH=^>?`>?a?>a?>b@?d@@eB@d>=d>;d>;d>;e=;e>9e>9e>9b;6a<6a:5^93[52U2.Q.,N,*J('H)'G))G))G*,G*,G*,F,-H0.G2/G2/I41L42N64Q84R95W>9W>9Y>7Y>7Z=7Z=7Z=7Y>7\A:[C9\C<]E;]D=\D:[B;ZB8W>7V>4V=6U=3U<5T<2T;4T;4T<8R=:T<:U=;U=;V>:W>:W;7W;7Y>7Z?8]@:_B<`C=aD<_D9^G9_H:aJeN@fOAgPBiRDiRDhQCgPBfOAeN@dM?cK?cHAdGCeGEeHDdFDcECaCA`B@\><[=;Y;;X::W99W99X::W;:S9U;>U;>T:=T:=S9'1@)3B+5C,4B+3B(1A(.E*1F+2I,1K.3M05O26P37Q48P17P17R27R27S38S38V37V37W37W35X46Y57]67`9:c<=e==g<6j>5mA8qEyI?yI=zL?yK>uJ:sI9qJ9pK8pM9pM9qL9sM:sM:sM:tN;uOxR?yS@yS@xR?wR?wT@wT@vS?vS?uR?uR?tP@tP@tP@sO?qM?nJhF=gEb@?a?>_=<^<;`<e?:g>:g>:g>8f=7d=6d;5`92]61X2/S0.P.,L*)J+)I++H*,G*.G*.G*.E+,E-+D/,F1.I41M53P86R95S:6W>9W>9Y>7Y>7Z=7Z=7Z=7Y>7[@9ZA:[B=\C<\C>[B;ZA9W>7W>9V=6V=8U<5U<7T;6S;7T<:T<:U=;V<;W=;X<8X<8Z=7\?9_@;`AZ>=X<;W;:V:9W;:X<;X<;U;>U;>T:=T:=T:=S9'1A*4D-5D-5C,4B)/A(.D)0E*/H+0K.3M04P37Q48R59P17P17R27R27S38S38V37V37X46X46X46Y57]67`9:b;zJ>zL?yKxR?yS@zTAzTAyS@yS@yTAxUAwT@wT@vS@vS@uQAuQAuQAsO?qM?oK=mI=lHhF=gEiG>mKBnLCnLCoMDpNErPGrPGsQGwQHuQEqOEmODmODlPDnPFqPGpMGrMGsJFqJEoIFkJEjIDjIDmJDpKEqLFrMGsNHtOIuPJuPJuPJuPJtOIrMGpKEmHBjE?iC@dA?a?>_=<];:^;9`=;e?>gA>gA>gA>hA8e<6b93_62[4/W10T1/N,+L-+L,/J,.H+/G*.G*.E+.C++B-*F1.I41O75Q97T;7U<8V=8V=8X=6X=6Y<6Y<6Y<6X=6Z>:Y@;ZA<[B=[B=ZA9W>9W>9V=8V=8U<7U<7U<8S;9S;9T<:U=;V<;W=;Z>;Y=9Y=9[>8]@:_@;`AaI?bJ@bJ@cKAcKAcKAcKAbJ@aI?`H>_G=^F<^E>[B>\BA_CB]CB_CB\BA]A@Z@?Z>=W=W=@VT:=R8;R8;Q7:T:=T:=S97k?4nB7rF;wG=yI=zJ>zJ>{M>zL=wLxR?yS@{UB{UB{UBzTAzTAzV@zV@yTAyTAxS@xS@wR@wR@vQAuP@sN>pK;oIiG>iG>iG>jH?kI@nLCoMDoMDqOFrPGsQHsQHtRHxRIvRFsQGoQFnPEmQEnPFqPGpMGrMGsJFqJEoIFkJEjIDjIDpKEqJCrKDsLEtMFuNGvOHwPIvOHwPIwPIvOHtMFqJCnG@kF@fCAd@@a><_<:^;9`=;e?iA?iB=jA=jA=jA;jA;jA;jA;lA:k@9h=6c:4_62[4/X21U20Q/.O0.N.1K-/I,0G*/D).D*-A))A,)E0-J52P86R:8T;7U<8V=8V=8X=6X=6Y<6Y<6Y<6X=6Y=9X?;Y@:W>:W>:V=9V=9U<8U<8T;7T;7S98S98T:9U;:Y==[?<[?<[>:\?;]>9^?:_@;`AW?=W=:X>=Y?@Y?BW=@V'/@)1B+3D-5F-3E,2E*1D)0E*/F+0I,0K.2N/4P16Q35R46Q16Q16R27R27U26U26V37V45Z68Z68[45\56]67_89b::d;7i>7l@5oC8rF;xH{K?{K?{M>zL=wL;uL:rL9qL9qN8rO9tN;tN;tN;uOxR?yS@zTA|VC|VC|VC{UB{UB{WA{WAzUBzUByTAyTAxSAxSAwRBuP@sN>qLa>jC>kB>kB>kB:X>=Y@X?;W==[?<\@=]@<]@<^?:_@;`A<`A\C>Y@;X?:W>9V=8U<7T;6T;6S:6S;;T<Z@AZ@CY?BX>AVT:=T:=T:=T:=S97l@5oC8sG{K={K=|N?{M>wL;uL:sM8rN8rO9rO9tN9uO:uO:uO:vP;vP;wQzT?{U@|VA}WB}WB|VA{U@|XB|XB{WA{WAzUBzUByTByTBwR@vQ?tO?qLpKBmKBlJAkI@kI@lJAmKBnLCpNEpNEqOFrPGsQHtRIuSJvTJzTKyUIvTJrTIqSHoSGnPFpOFpMGrMGsJFqJEoIFkJEjIDjIBqLFrKDsLEtMFuNGvOHwPIwPIwPIyRKzSLzSLyRKvOHrKDoJDiCBfBBfCAeB@f@?f@?e?X>=X>?W=]?=^@>^A=^A=_@;_@;bAZA=ZA=Y@:V=9U<8T;7S:6R95R95P88P:=S>=S>=R=9U@;X@>[AB[ADZ@CY?BX>AX>AW=@W=@T:=T:=S9|N?{M>xM=uL:sM:rN8sO9sO9sO9uO:uO:vP;vP;wQzT?|VA}WB}WB}WB|VA|VA|XB|XB|XB{WA{VCzUBzUCyTBwR@vQ?tO?qLpL@nLBmKAlJ@lJ@mKBnLCnLCqOFqOFrPGsQGtRHuSIvTJxTH{UJzTGyUIvTHtTGpSEpPEoODrMErMErKDqJCoJDlICjIBjIBqLDsLEsLEtMFuNGvPGwPIxRIxRIySJ{UL|VMzTKwQHsMDqJCiC@gDBgD@gD@hB?gA>fA;e@:iB;iB;jA;jA;jB:jB:lA:lA:mB9k@7h;5c81]4.Z3.Y30W42W54T45R23N02J-1H+0D).C),B**C.+I1/N64Q97Q97R95Q84U<8U<7W;7W;7W;7W;7X;7W;7U;:V<;W=>X>=X>?W=\@=]A>^A=^A=_B<_B<`A<`A<`A<_B<^B>\C>[B>ZA=Y@:W>:X?;X?;W>:V=9U<8T;7S:6S98O77N98R::Q<;T<'/?(0?(0@)1@)1A*2B+3E,2F-3G.4G.4I.3I.3L/3M04N15O26Q35Q27S29S29S29T3:T3:U5:U5:W48Y6:Z7;[8<\:;];<^<;^<=`<{M=~O?P@~N@|N?zO?yN>xO=uO:tP:tP8sO9sO9sO9tP:tP:tP:uO:uO:{U@{U@}T@~UA~UAVBVB~XCZGZG}XE|WDzUCyTBxSAwR@zUEyTDwQDuOBsM@sM@sMBsM@oK=oK;pL>pL>pL@pKBqLCqLCvQHvQHwRIxTHyUGzVH{WG{WG{VF}VG}WJ}WJ{WIzVHyUIxTHsNErMDpKBoJAlJAmKBlKBnLCrMDrLCrLCrLCsMDuODwQHxRG}WL}WL~VJWK€XL~VJxQBsM@nI@nIAnIAnIAnIAmH@mG>lF=mE;nF:V<;U<8U;:W>:Y?>ZA=W==ZA=\C?[?;[?;\A:\A:]B;]B;^C<^C<`G@^E>\C>Y@;X?:X?:X?:Y@;X?;X?;W==W?;Y?>X@X>=W=>T:;T:;S9:S9:S9?`A?`>_=>d=>h>?nC=rG>wL<|N>P>P>~O?~N@|NAzO?xO=xO;uO8tP8tP:sP:tP:tP:uQ;uQ;vP;vP;{U@{U@~UA~UAVBVB€WC~XC€ZGZG~YF|WDzUCyTBxSAwR@zUEyTDwQDuOBsM@sM@sMBsM@rN>rOrN>qMAqMAqLCqLCuPGvQHwSGxTFyUGzVF{XE|WE|UD}VE~WH~WH|WG{VFzTGySFsOCrNBoMAmK?mKAmKAmMBnLBsNEsMDsMDsMDtNCvPExRGySHYLWK~WHWI‚XJ€VH|RBvO@qK@pKBoJAnI@nI@mI=nH=nH=nF:oG;sI;tJ:V=9U<8U<8V=9X?;Y@Y@;Y@;Y@9ZA:ZA:[B;[B;\C<_F?^E>\C:W>:W=:W>:X?;X?;Y@[B>[B>Y@=W=@_?@`>=b?=b?=b?=b>>`<<^<;\:9X89W78U79T68R46P24O05N15I03G13F02E/1E/1D.0C-/C-/C-/C-/C-/C-/C-/C-/C-/C-/C-/D.0F02G13H24H24G13G13%(%(&(')(')(+(,(1)1)3)4*6+7,: +9",:"07!.6 -4+2*1)2*2*0*0*/*/*/*/*- *- *0.0.0.1/1/2 02 02 00.1/2 03!14"25#35#36$43!13!12 01/1/0./-/-0.0.0./-/-.,.,-++*+*+*+*+*+*+*+*)()()()()()()()()+)+*,*,*,(*')&($&$&#%#%"$"$!##''&%$##"""""""""&&&&&&&&''&&&()*)*+,--,++,,,- .". . .........-+**+-.,,--..//.. .!/!/"0$0"0!/ / / / / / / / / / / / / / / --+!,!,"-"-$.$.%-&.'/(0)0(/'.&-).).).).).).).).',(-).*/+0+0*/).(-(-).).*/*/*/+0,1,1,1,1,1,1,1,0,0, ., ., .+-+-,-,-0/0/0./-/-0.1/1/2 .2 .2 ,3!-5!-6".6"-7#.7"+8#,:#-;$.<%-=&.@&/@&/@)1A*2B+3C,4F-3G.4I.5I.5I.3I.3L/3M04O05P16Q35Q27R18R1:S29S29T3:T3:U5:U5:X8;X8;Y9_=>f>?i?@oD>tI@xM=}O?€Q?R@P@P@}O@{P@yP>yPpJ?sKAtL@sI=tJ>uK=uK=vK;vK;uJ:sI;qF=oD;kC;h@8d=6b;4_:4\95W53W53T53R42P22M//J-/H+-G-,G-,I/.J0/L21M32N43O54O54P65R87T:9U;:U;:U;:U;:W>:V=9U<8T;7T;7U<8V=9V=9V=9U<8T;7T;7R95R95Q84P73Q76P65P65Q76S98U;:W>:Y@]D=[B;ZA:Y@9Y@9Y@;Y@;V=9V=9V<;W==W>:W>:W>:X?;X?;Y@ZA=Y?>X>=T:;T:;S9:S9:R8;Q7:Q7:P7:M55K65K57K57K57K57K58K58M6?`>=b?=c??c??a?>`>=_=>^<=W7:W7:U79S57Q27P16N15K14L36I35H24G13E/1D.0C-/B,.C-/C-/C-/C-/C-/C-/C-/C-/D.0E/1G13H24H24H24G13G13%(%(&(')(')(+(+(/)1)3)4*6+7,: +8!+9#08"/6 -5,2*2*3+3+0*0*/*/*/*/*- *- *0.0.0.1/1/2 02 02 02 02 03!13!14"25#35#36$44"24"23!12 00./-.,.,0./-/-/-.,-+-+-+*)*)*)*)*)*)*)*))()()()()()()()()+)+*,*,*,(*')&($&$&#%#%"$"$!## (('&&%$$########&&&&&&&&''&&&()*)*+---,,,,,-- .".!/ ........ /-+))+-/,,--..//.. .!/!/"0$0"0!/ / / / / / / / / / / / / / / --+!,!,"-"-$.$.&.'/(0)1*1)0(/'.*/*/*/*/*/*/*/*/',(-).+0+0+0*/*/(-(-(-).).).).).+0+0+0+0+0+0+0+/.!2-!/-!/, .+-*,+,*+0/0/1/0.0.1/1/1/2 .3!/3!-3!-6".7#/7#.7#.7"+8#,9",:#-;$,<%-?%.@&/A*2A*2B+3C,4F-3G.4I.5I.5I.3I.3L/3M04O05P16Q35Q27R18R1:S29S29T3:T3:U5:U5:X8;Y9\<=]=>^>?`>=h@AkB@qF@uK?|N?R?R>‚S?€Q?€QA~PA|Q@{P?zQ=wR8wR8vP9uQ9wQ:xR;yS}W@}W@€WA€WAXBXB‚YC€ZC[F€\FZG}XE{VCzUByTBxSAyTDxSCwRBuP@uOBuOBuOBvQAzUCzUCyTDxSCvPCuODtNEtNEvPGwQHxRGySFzUE{VF|WE|WE~WFXGXG€YHXI~WH{UHzTGwSEvRDtPDqOCpNDqOEqOErPFwRIwRIxRIxRIySH|TJ~VJWK‡]Q…YL…WJ„VI‡WIˆXJ†VHƒUH{SIvQHtNErLAqK@sM@vNBxPDvL@vL>wM?wM=xM=xM=wL8d=6b=7b=7[84Y75V75T53Q33O11L/1K.0J.-H.-I/.K10L21M32N43N43P65P65R87S98T:9U;:U;:U;:V=9V=9U<8T;7T;7T;7T;7T;7U<8U<8T;7S:6S:6R95Q84Q84P65P65P65P65Q76S98U<8V=9X?:X?:X?8Y@9ZA:ZA:ZA:[B;]D=\C<[B;ZA:ZA:Y@9Y@;Y@;U<8U<8V<;W==X>=Y?>Y?>W>:X?;X?;X?;Y@[B>[B>[B>[B>[B>[B>[B>\C>\C>]D@]D@\C?[B>Z@?Y?>U;=a>>c??b@?a?>`>?]=>W7:V69T68S57Q27O05M04K14N58K57J46H24F02D.0C-/B,.C-/C-/C-/C-/C-/C-/C-/C-/E/1F02G13H24H24H24G13F02%(%(%(&)'')(+(+(.(0(2(3)5*6+7 *7 *9#08"/6 -5,2*2*3+3+0*0*/*/*/*/*- *- *0.0.0.1/1/2 02 02 03!13!13!14"24"24"25#35#34"24"23!12 00./-.,.,/-/-/-.,-+-+-+,**)*)*)*)*)*)*)*)('('('('('('('(')+)+*,*,*,(*')&($&$&#%#%"$"$!## ('''&&&&$$$$$$$$&&&&&&&&''&&&()**+,-..-,,-- . .!/#/!/ ........ /-+))+-/,,--..//.. .!/!/"0$0"0!/ / / / / / / / / / / / / / / --+!,!,"-"-$.$.&.'/(0)1*1)0(/'.*/*/*/*/*/*/*/*/(-).*/+0,1,1+0*/).).).).).(-(-(-).).).).).).).)-.!2-!/-!/, .+-*,+,*+0/0/1/2 02 01/1/1/3!/3!/3!-4".7#/7#/7#.8$/8#,8#,:#-;$.<%-=&.@&/@&/D*3D*3E+4F,5G.4H/5J/6J/6K.3K.3M.3N/4O05P16Q35Q27S29V3:V3:V3:W4:X5;X5;X5;[8<[8<\:;];<^<=_=>`>=b>>iABmDBrGAwMA~PA€S@ƒT@„UAR@R@QA}RA|Q>{RW>€X?€X?Y@Y@‚ZA‚ZAƒ[B[D‚\G€\F[E~ZD|WDzUByTAyTAyTBxSAwRBvQAuP@vQAwQDwRB|WE|WE{VFyTDxREwQFvPGuOFwQHxRIySHzTG{VF|WG}XF}XE€YHƒYI„ZJ„ZJZI€YH~YI}XH{UHyUGxTHvRFtRFtRFuSGuSGzVJzVJzTI{UJ}UK~VL‚XL„XMŒ^QŠZNˆVKˆWIŒXKŽXLWKˆVK€VJ{UJyQGvNDuMCwOC{QE}SE{OB{OBzNAzO?|N?|N>}O?{P@uK?sI=pE9X?:X?8X?8Y@9ZA:ZA:ZA:[C9[C9[C9[C9[B;ZA:ZA:W>:X>=Y?>Z@?Z@?X?;X?;X?;Y@]D@]D@]D@]D@]D@]D@]D@]D@]D?]D?^EA^EA^EA\C?[A@Z@?W=>V<=V<=T:;S9=a?>a?@a?@^>?]=>V69U79T5:R38O26N15M05J/4N58K57J46H24F02D.0C-/B,.C-/C-/C-/C-/C-/C-/C-/C-/F02F02G13H24H24G13F02E/1%(%(%(&)''(()(+(-'.(1(3)5*6+7 *7 *9#07!.6 -4+2*1)2*2*0*0*/*/*/*/*- *- */.0.0.1/1/2 02 02 03!13!13!13!13!13!13!13!13!13!12 01/1/0./-/-/-.,.,-+-+,*,*,*)()()()()()()()(('('('('('('('(')+)+*,*,*,(*')&($&$&#%#%"$"$!##&&&&&&&&%%%%%%%%&&&&&&&&''&&&()**+-...----- .!/!/#/"0 .........-+**+-.,,--..//.. .!/!/"0$0"0!/ / / / / / / / / / / / / / / --+!,!,"-"-$.$.'/(0)1*2+2*1)0(/+0+0+0+0+0+0+0+0(-).+0,1,1,1+0+0+0*/*/*/).).(-(-(-(-(-(-(-(-(-(,,0, ., ., .+-+-,-,-0/0/2 03!13!12 01/1/3!/4"04".5#/7#/8$08$/8$/9$-9$-;$.<%/=&.>'/A'0B(1D*3D*3E+4F,5G.4H/5J/6K07K.3K.3M.3N/4O05P16Q35R25W4:W4;X5`>?a?>b>>kCCnEAtIByM@QA‚U@…W@…W@‚S?‚SARB€S@}S=|T;{S9{S9yQ8zR9{S:}U<~V=€X?Y@Y@Y@Y@‚ZA‚ZAƒ[Bƒ[B„\C‚]C]E]G€\F~ZD|WD{VCzUByTAyTBxSAwRBvQAvQAwRBxRExSC|WE{VC{VDzUEySFxRExRGwQHySJzTIzTG{UH}XH~YG~YF€ZG…[K†\L†\L‡]M„]Lƒ\KZKZJYL~XK{WKzVJzVJxVJyWKyWK|XL|XL}WL}WLWMƒYM†ZO‰[N]QŒZOŒXKŽXL“ZO”ZO’XMWKƒWL~VJ|TJzRFzRF}SE~TFUG~RE}RB|QA~P@~P@~P@QA€RBzNAwMArH8_<8\;6W85U64S53R42R44N21O32O32P43P43Q54Q54R65S76S76S76S76T87V:9X<;Y=:W>:W>:W>:V=9T;7S:6R95S:6S:6S:6S:6S:6S:6S:6S:6Q76Q76P65P65Q76R87T;7U<8W>9W>9W>7X?8X?8Y@9Y@9ZA:ZB8ZB8[C9\D:\C<[B;ZA9X?:X?;X?;X>=Y?>Y?>Y?>X?;Y@[B>[B>^EA^EA^EA^EA^EA^EA^EA^EA^E@^E@_FB_FB_FB]D@\BA[A@Z@AY?@X>?V<=U;>S9M6=`>?^>?]=>]=>U79T68S49Q48O26M04L/4J/4L36I35H24G13E/1D.0C-/B,.C-/C-/C-/C-/C-/C-/C-/C-/E/1F02F02G13F02E/1D.0C-/#(#(%(&)''(()(+(-'-'0'1(3)4*6)7 *8"/6 -4+3*1)0(1)1)0*0*/*/*/*/*- *- */././.0/0/1 01 01 01 01 01 01 01 01 01 01 02 01/1/1/1/1/1/0..,.,.,-+-+,*,*+))()()()()()()()('&'&'&'&'&'&'&'&)+)+*,*,*,(*')&($&$&#%#%"$"$!##%%%&&&&&&&&&&&&&&&&&&&&&''&&&()**+-.//.--. . .!/!/$0"0 ........,,,,,,,,,,--..//.. .!/!/"0$0"0!/ / / / / / / / / / / / / / / --+!,!,"-"-$.$.'/(0)1*2+2*1)0(/,0,0,0,0,0,0,0,0)-*.,0-1.2.2-1,0,1,1,1+0*/).).).(-(-(-(-(-(-(-(,+/+-+-+-, ., .-.-./.0/3!14"24"23!11/0.4"04"04".5#/7#/8$08$/9%0:%.;&/=&0>'1?(0@)1C)2C)2D*3E+4G,5H-6I.5J/6M/7M/7L-3L-3M.3N/4P05Q16R25R25Y6\7>]9=]9=]9=]9;^:<_;;`<>d>=mDBqF@vJAzO?€S@„V?‡WA‡WA„T@ƒT@‚SATA~T>}U<|T:|U8{Q8|R9}S:U<€V=‚X?ƒY@„ZA‚Z@‚Z@ƒ[Aƒ[A‚]B‚]Bƒ^Cƒ^D‚^F]E€\F[E}YC{WAzUBzUByTBxSAwR@vQ?vQAwRByTDyTD{TC{UB{TC{TEzRFzRFzRHzRH|TJ}UK}UI~VJXI€YH[H‚\Iˆ_M‰^M‰`N‰`N‰_O†_N„]Lƒ\K‚]M\L€ZM~ZL}YK}YK~ZN[O~ZN~ZNYLYLYM…[OŠ[QŒ\P[PYM‘XM•[P˜\Q˜\Q—YNVK…WJ‚XJWK€VH€VHUHUHVFƒUF‚TD€RB€Q?€Q?R@ƒTB„UE~RE{OBuK=pF:jB6h@6gA8gB:cA8a>8]<7X94V74U63T73T64Q52Q52Q52R63R63R63S74S74T85S74S74S74T85V:7X<9Y=:X?;Y@9W>7X?8X?8Y@9Y@9Y@9X@6YA5[C9\D:\D:[C9ZA:Y@9ZA[B>\C?^EA^EA^EA^EA^EA^EA^EA^EA^E@_FA`GC`GC_FB^EA]CB\BA\BC[ABZ@AX>?VT:=R9]=>\'1?(2@)1A*2D*3D*3E+4E+4G,5H-6I.5J/6M/7M/7L-3L-3M.3N/4P05Q16R25T15[6=[6=\7>\7>]8?]9=^:>^:<]9;^:<^::_;;`<>e?>nECrG@wK@}O?‚S?…W?‡W@ˆXA„T>„T@„T@‚S?T=~T;~U9}T8}Q6~R7S:V:ƒW>ƒZ>„ZA…\@ƒY@ƒ\?ƒ[A„]@‚]Bƒ^Aƒ^Cƒ^C‚^D]E€\F[E}YC|XBzUBzUBxSAxSAwR@vQ?wRBxSCyTDzUCzTAzTAzSBzSBzSD{SG{SI{SI}UK~VJWK€YJZI‚\I‚\I…\JŠ_N‹`O‹bP‹bPŠ`P‰_Oˆ^N…^M…^Oƒ^N‚\O[N[M[M€\P]Q[O[O€ZMYM„ZN‡[N‹]PŽ\QŽZM‘XM“YN˜\Qœ^Sœ^S˜XNVJ†VHƒYKƒYK„XKƒWJ‚WGVFƒUE„VF„UC‚SAR@R@ƒS?…TC…VD‚TE}QDwK>pF8lB6h@4h@6hB9fA8b@7_<6[:5X72V74V74U84S53S74S74S74S74S74T85T85T85S74S74R63T85V:7X<9Z>;Y@7W>7X?8X?8Y@9YA7X@6YA5[C9\D:]E;\D:ZA:Y@9[B=[B=ZA:W>:Y@[B>\C?\C?_FB_FB_FB_FB_FB_FB_FB_FB_FA_FA`GC`GC`GC_FB]CB\BA^DE]CD[ABZ@AX>AVT5:S6:Q48P37L16K05J/4H/3E/1E/1E/1D.0D.0D.0D.0C-/C-/C-/C-/C-/C-/C-/C-/C-/D.0D.0E/1E/1D.0B,.@*,?)+ & &"'"'%&%&''('-(-(/(/(2)2)4(4(4+4+3*3*1)1)0(0(.(.(-(-(-(-(+(+(*+*+*+*+*+*+*+*+*+*+,-,-,-,-*+,+/-/-/-/-/-/-/-/-/-/-/-.,.,-+-+,**)*)*)*)*)*))()(('('('('('('('('*,(*'))+,.+-')#%$&$&#%#%"$"$!##%%%%%%%%%%%%%%%%((((((((((())**++++,,---.. . . . .". . ........,,,,,,,,,,,,,,,,.. . . . .". .!/ / / / / / / / / / / / / / / -!0!.#.#.#.#.$.$.'/(0*2+3,3+2)0(/,0.0.0-/-/-/,.,./1/1/1/1/1/1/1-1- 2- 2,1,1+0+0*/*/&+&+&+&+&+(-).+/,0, ., .-!/-!/."0/!0/!03"23"23!13!12 02 01/1/0,1-3!-5#/8$08$08$/7#.8#,9$-;$.=&0?(0A*2D*3E+4F+4F+4G,5H-6K-5L.6N/7N/7M.4N/5P05Q16T17U28V37V37Z5T=~T;~U7V8€S6T7ƒU;ƒW:†X>‡[>‰]B‡^@ŠaE‰`BˆaD‡`A…`C„`@„_B„_B€\B[A}YA{W?{W?{W?}YC}YC}XE|WDzUBxS@wR@xSAyTBzUCyS@|S?}TB~TD~TF}SE|RF{QE}SG~THUI‚XJ„ZJ†]K‡^Lˆ_KŠ_LŠ_L‹`M‹`M‹`O‹bP‹aQ‰bQ‡`O†_Nƒ^N‚]M[N[N[N‚\Oƒ]Pƒ]P…]Q…]Qˆ^P‰]PŒ^QŽ]O™eX˜_T•[O˜\Qž`U `TœZN‘UJ‹ZL‡\Lˆ]MŠ\MˆZK†XHƒUE‚SA…VD‡VE‡VE‡WC†VB†S>„Q>Q=‚SC|QAvK;pF6lB4h@4g?3f@5kF=gE:T;7R95P73T;7T;7S:6R95R95S:6T;7T;7V<;V<;V<;V<;V<;V<;V=9V=9V=8V=8U<5V=6W>7Y@9ZA:\D:[C9[C7[C7[C7[C7[C7[C9[C9Y@9ZA:[B=[B=ZA9\C?]D@^EA_FB_FB^EA]D@\C?_FB_FB`GC`GCaHDaHDbIEbIE_FA`GBaHDbIEbIEaHD`FE_ED`FG^DE\BC\BC\BEZ@CVR<>S=@S=@R;AP9?L5;H17F/7F/7F/7G08F18F39H5;I6zL?P>…U?ˆY?ŒZ?[@[B‹YB†V@„T=‚TwL7]<5Z<4Z;6Z;6Y<8Y<8Y<8Y<8Y<8Y<8Y<8X;7X;7X;7Y<8Y<8Y<8Y<8Y<8Y=:X?;X?;X?;W>:U<8S:6R95U<8T;7S:6R95R95S:6T;7U<8V<;V<;V<;V<;V<;V<;V=9V=9V=8V=8U<5V=6W>7Y@9ZA:\D:\D8\D8\D8\D8\D8\D8\D:\D:[B;[B;\C>\C>\C>ZAS=?T>AT>AR;AP9?L5;H17F/7F/7F/7F18E28F39G4:I6lE@qF?uI>{M>R@†V?Š[?Ž\A]B\DŒZA‡W@„T=‚T:‚V9‚Y9…Z8…V8‡V8‰X:ˆY;Š[=Š]>‹^?‹`@ŠaAŠaA‰bAˆa@…a?…a?„b?ƒ`@^B€\B[A~Z@}YA}YA~ZB~ZB}YC}YC{VCzUBzUBzUBzUC{VC}T@}T>~UAVDUE~TD}SE}SE~TFUG€VH‚XH„[I†]Iˆ_K‰`JŒbLŽaLŽaNŽaNŒaNŒaNŒaP‹bP‰_O‡`O…^M„]Lƒ\M„]Nƒ^N„_O†_P†_Pˆ^P‰_QŠ^Q‹`PŽ^P_Q•aS”_Q–^QœbT£hZ¨j]¦hY fX_P`PaQ`NŽ_M^LŒ[J‹[G‘^K‘^I’_J“_J‘]H\FŽZDŒYD‚SATA€S@|Q@yN=uK;oH9mE9iC6gC7eC9dB8a@7`?6_>5]?7\=8\=8\=8\=8\=8\=8\=8\=8Z;6Z;6Y:5Y:5Y:5Y:5Y:5X;7W;8V=9W>:W>:W>:V=9U<8T;7U<8T;7S:6R95R95S:6T;7U<8V<;V<;V<;V<;V<;V<;V=9V=9V=8V=8U<5V=6W>7Y@9ZA:\D:^F:^G9^G9^G9^F:^F:^F:^F:]E;]E;^E>^E>]D=\C<[B=ZA<\C?]D@^EA_FB_FB^EA]D@\C?^EA_FB_FB`GC`GCaHDaHDaHD_FA`GBaHDbIEbIEaHD`FE_ED`FG^DE\BC\BC]CF\BEX>AS:=Q99O:9P:S=?T>@U?BV@CR;AP9?L5;H17F/7F/7F/7F18E28D39G4:H5;I6:I6:I49H38I36I36J46J46M47N58N66O56U79U79T68T68T5:S49R59R59P38M27L18I06H/5F-3E+4E,2D.1D.0D.0D.0D.0D.0D.0D.0C-/C-/B,.B,.B,.B,.C-/C-/I35H24H24G13F02E/1D.0D.0 & &!'!'#&#&&'''*'*',&.'1(1(1&2'4+4+3*3*1)1)0(0(/)/).).).).),),))+)+)+)+)+)+)+)+)+)++-+-+-+-)+*+,+-+-+-+-+-+-+-+.,.,.,-+-+,*,*+)+*+**))((''&'&&%'&'&'&'&'&'&'&'&*,(*%'$&$&%'&(&($&$&#%#%"$"$!##%%%%%%%%''''''''********)))**++,+++,,---.. . . . .". .!/ / / / / / / /,,,,,,,,,,,,,,,,.. . . . .". .!/ / / / / / / / / / / / / / / -!0!.#.#.#.#.$.$.)1)1)1)1*1*1*1+1-/.//0/0/00101011212121212121202/ 3.!3.!3- 2,1,1,1+0- 2,1*/).(-(-(-)-,0, ., .-!/-!/."0/!0/!03"23"23!13!12 02 01/1/0,1-3!-5#/8$08$08$/7#.:%.:%.<%/=&0?(0@)1C)2C)2H*4H*4I+5J,6L-5M.6N/7N/7Q07Q07T17U28V39W4:Y59Y59]6;^7<^7<^7<_8;`9<`9:`9:`9:b<;d>=c=;hB?mFAsHAxI?}M?‚S?ˆY?\>]@‘^A‘^CŽZBŠXA…V<ƒV9…X9†[9ˆ];ŠY;‹X;ŒY<Œ[=Ž]?^@`AŒaAbBŠaA‰bAˆa@†b@…a?„b?„aA‚_C‚^D]C€\B€\D[C[C[C~ZD}YC}XE|WD{VC{VC{VD|VC~UA~U?VB€WC€VFUE~TF~TF~TFUGWGƒZH…\J‡^Jˆ_IŠ`JbMbMbOŽaNŒaNŒaN‹`O‹`OŠ`P‰_O†_N…^M…^O…^O…`P‡`Q‡`QŠ`RŠ`RŠ`RŒaQŽ`Q`RaQ™hY™eW™dTœdU fX fXdS˜`O“`OaOaO`NŽ_MŽ^JŽ^J]G”aL”aL•aL•aK”`J’^H\FŽ\E…VB‚UB€S@}P=yN=wL;uK;rK5\>6\=8\=8\=8\=8\=8\=8\=8[<7Z;6Z;6Z;6Y:5Y:5Y:5X;5V:7T;7U<8V=9W>:W>:W>:W>:V=9U<8T;7S:6S:6T;7U<8V=9V<;V<;V<;V<;V<;V<;V=9V=9V=8V=8U<5V=6W>7Y@9ZA:\D:`H<`I;`I;`I;`H<`H<`H<`H<^F<_G=`G@`G@_F?^E>]D?\C>\C?]D@^EA_FB_FB^EA]D@\C?^EA^EA^EA_FB`GC`GC`GCaHD_FA`GBaHDbIEbIEaHD`FE_ED_EF]CD\BC\BC^DG]CFY?BT;>Q99O:9Q;=R<>S=?U?AV@CWADR;AP9?L5;H17F/7F/7F/7F18D17C28G4:H5;H59H59H38H38I36I36J46K57N58O69O77Q78U8:V8:U79T68S49Q48P37O26K05J/4I06G.4F-3E,2D*3D+1D.1D.0C-/C-/C-/D.0E/1F02E/1D.0B,.A+-A+-B,.D.0E/1I35H24H24G13F02F02E/1E/1&&!'!'#&#&&''')&*',&,&.'/(1&1&4+4+3*3*1)1)0(0(0*0*/*/*/*/*- *- *)+)+)+)+)+)+)+)+)+)++-+-+-+-)+*+,+-+-+-+-+-+-+-+.,-+-+,*,*+)+)+)+*+**))(('&%%$%$'&'&'&'&'&'&'&'&(*')%'#%"$#%%'&($&$&#%#%"$"$!##%%%%%%%%))))))))++++++++)**++,,,+++,,---.. . . . .". .!/ / / / / / / /,,,,,,,,,,,,,,,,.. . . . .". .!/ / / / / / / / / / / / / / / -!0!.#.#.#.#.$.$.)1)1)1)1*1*1*1+1-/.//0/00112122312121212121212020!4.!3.!3.!3- 2,1,1,1.!3- 2+0*/).).).*.,0, ., .-!/-!/."0/!0/!03"23"23!13!12 02 01/1/0,1-3!-5#/8$08$08$/7#.;&/;&/=&0>'1>'/?(0B(1B(1H*4H*4J*5K+6L-5M.6O.7O.7T18T18U28V39X3:Y4;Z6:Z6:^7:_6:_6:`7;a8>f>~O?ƒU>ˆY?\>]@‘^A‘^C\A‹Y@‡X>†Y<‡Z;ˆ];‹_<Ž[<Ž[<\=^>_?Ž`?Ža@b@b@‹c@Šd@‰c?‡c?…c>…c>„b?ƒ`Bƒ`Dƒ_E‚^D‚^D]C€\D€\D~ZD~ZD~ZD~ZD}XE|WD|WD|VCVBWA‚WD‚WD‚WG‚WGUH€TG€TGUH‚WG„YH†[Jˆ]JŠ`J‹aK‘dO‘bNcNbMŽaNŽaN‹`M‹`MŠaO‰`Nˆ^Nˆ^N†_N‡`OˆaR‰bS‹aSŒ`SbRbRbSbS‘bR’cSšiZšgV™fU™dT™dR˜cQ–^M‘\J’_L`L_KŽ^JŽ^J]J]J]H•aL•aK˜aL—aI–`H”^F“]E[E‰YE„UA~QjH9\=8\=8[<7Z;6Z;6Y:5X;5V:7T;7T;7U<8V=9W>:X?;Y@7Y@9ZA:\D:aJaI?aI?`G@_F?^E>]D?\C?]D@^EA_FB_FB^EA]D@\C?]D@^EA^EA^EA_FB`GC`GC`GC_FA`GBaHDbIEbIEaHD`FE_ED_EF]CD\BC]CD^DG^DGZ@CV=@R::Q<;R<>S=?T>@U?AV@CV@CR;AP9?L5;H17F/7F/7F/7F18D17C28D39E4:H59H59G48F37H46H46J46K57L68N8:Q99R89V9;V8:U6;S49Q48P37N16L16I.5I.5G.4F-3C,4B+3B+3A*0D.1C-/B,.B,.C-/D.0F02H24G13F02D.0C-/C-/D.0F02G13H24H24H24G13G13G13F02F02&&!'!'#&#&&'&'(&)&+%,&-&.'0%1&4+4+3*3*1)1)0(0(0*0*/*/*/*/*- *- *)+)+)+)+)+)+)+)+)+)++-+-+-+-)+*+,+-+-+-+-+-+-+-+-+-+-+,*+)+)+)*(,++**))('&%$$#$#&%&%&%&%&%&%&%&%%'&(&($&"$!##%%'$&$&#%#%"$"$!##%%%%%%%%******** , ,!, , , , ,,***+,,,-+++,,---.. . . . .". .--------,,,,,,,,,,,,,,,,.. . . . .". .!/ / / / / / / / / / / / / / / -!0!.#.#.#.#.$.$.*2)1)1(0)0*1*1,2-/.//0011223233 4232323232323231 30!4/"4/"4.!3.!3- 2- 2,1.!3- 2+0*/*/+0+0,0,0, ., .-!/-!/."0/!0/!03"23"23!13!12 02 01/1/0,1-3!-5#/8$08$08$/7#.;&/<'0=&0>'1>'/?(0A'0C(1H*4H*4J*5K+6L-5M.6O.7O.7U29U29V39W4:Y4;Z5<[7;[7;_6:`7;`7;a8]>‘^?]@\A[BŠ[?Š[=Š]<Š_<‹_<‘^?“^?“^?’_@’_@’aAbAcBŽcA‹c@Šd@ˆd@‡c?…c>…c>…c@„aC„aE…aG…aG„`Fƒ_E‚^F]E~ZD[E[E[EZG~YF|WD}WB€WA‚XBƒXEƒXEƒXGƒXH‚VIUH€TGUHƒXH…ZI‡\I‰^KŠ`J‹aK“dP’cO‘dOcNbOŽaN‹`M‹`MŠaOŠaO‰_O‰_O‡`OˆaPŠcTcUaTŽbUŽcSdT‘cT’dU“dT“dT“dR”cR”cR•dS—dQ–cP”aN’_L‘aM`L_KŽ^J]J‘^I’_J’_J–bL–bL˜bJ˜bJ—aI•_G”\E’\DŒ\F†WC}P;wJ5tG4sH5uL:xN>sL=rM=qM?oK?jH>fD:`@5^=4]<5[<7[<7[<7[<7[<7[<7[<7_@;_@;^?:]>9\=8[<7Z;6Y<6W;8U<8T;7T;7U<8W>:X?;Y@:V=9U<8T;7T;7U<8V=9W>:V<;V<;V<;V<;V<;V<;V=9V=9V=8V=8U<5V=6W>7Y@9ZA:\D:aJ`H>aI?aI?aHA_F?^E>]D=\C?]D@^EA_FB_FB^EA]D@\C?]D@]D@]D@^EA^EA_FB_FB`GC_FA`GBaHDbIEbIEaHD`FE_ED_EF]CD\BC]CD_EH_EH[ADW>AU==S>=S=?T>@T>@T>@U?BU?BR;AP9?L5;H17F/7F/7F/7F18C06B17C28E4:G48G48F37F37G35H46J46K57M79O9;R::S9:U8:U79T5:S49Q48O26L16L16H-4H-4F-3F-3C,4B+3B+3B+1D.1C-/B,.A+-B,.D.0G13I35H24H24G13F02F02G13H24H24H24H24H24H24H24H24H24H24&&''"&#&&'&''%)&+%,&-&.'.%0%4+4+3*3*1)1)0(0(1+1+0 +0 +0 +0 +.!+.!+)+)+)+)+)+)+)+)+)+)++-+-+-+-)+*+.-/-/-/-/-/-/-/--+,*,*,*+)+)*(*(,++**)('&%%$#"#"&%&%&%&%&%&%&%&%"$$&')&(#% "!##%$&$&#%#%"$"$!##%%%%%%%%********!-"-#-"-"-!-!-!-*+++,,--+++,,---.. . . . .". .,,,,,,,,,,,,,,,,,,,,,,,,.. . . . .". .!/ / / / / / / / / / / / / / / -!0!.#.#.#.#.$.$.+3*2(0'/(/)0+2-3,..//001123 43 44!5232323232323231 31"5/"4/"4.!3.!3- 2- 2- 2- 2,1+0+0+0,1.!3.!2,0, ., .-!/-!/."0/!0/!03"23"23!13!12 02 01/1/0,1-3!-5#/8$08$08$/7#.<'0<'0=&0>'1>'/?(0A'0B'0H*4I)4J*5K+6L-5M.6O.7O.7V3:V3:X3:Y4;Z5<[6=\8<\8<`7;`7;`7;a8>h@>g?=g?=h@>lE@qHBsG>xJ=}N<‚T=‰W<Œ[=\=]>Ž[>\?]BŽ_CŽ_AŒ_>Š_<‹_:“a@•`@•`@”bA”bA“bA’dB‘eBŽc@Œd@Šd?ˆe?‡d>†d>…e>„d>„aC…bF†cG‡dH†bH„`Fƒ_E]C[C[C€\F]G€\F[E}XE}WBXB‚XBƒXE„YF„YHƒXH‚VI‚VIUHUHƒXH…ZI‡\I‰^K‹aKŒbJ”eQ“dP“dP‘bNbMŽaL‹`MŠ_L‹`O‹`O‰_O‰_OˆaP‰bQ‹dSŽdTdT‘cT‘cT’dU’dU“eV“eU“eUcP’cQ”eQ”eQ•eQ•eQ”dP“cO“cO’bN“`M’_L’_J”aL–bM—cMšcN›dO›eM›eM›cJ™aH—_F•_GŽ^HˆZC‚S?zM8wJ7tI6uL:vL7_>9_>9_>9_>9_>9_>9_>9dC>cB=bA9^=8[<7Y=:V=9U<8T;7T;7V=9X?;Y@:V=9U<8T;7T;7U<8V=9W>:V<;V<;V<;V<;V<;V<;V=9V=9V=8V=8U<5V=6W>7Y@9ZA:\D:aJ]D=\C?]D@^EA_FB_FB^EA]D@\C?\C?]D@]D@^EA^EA_FB_FB_FB_FA`GBaHDbIEbIEaHD`FE_ED_EF]CD\BC^DE_EH_EH\BEX?BW??U@?U?AT>@T>@S=?S=@S=@R;AP9?L5;H17F/7F/7F/7F18C06B17C28D39E58E58F37E26G35H46J46L68N8:O9;Q<;S;;S6:T5:R59Q48P38O27M27L16G.4F-3F,5F,5C,4C,4C,6C,4D.1C-/A+-@*,B,.E/1H24J46I35I35J46J46J46J46I35I35H24H24H24H24H24H24I35I35 ( &!'!'#(#&&'''''(%+&+%-&-&.'.'3+3+3*2*1)1)0(0(1+1+0 +0 +0 +0 +0 +.!+*+)+*+)+*+)+*+)+*+)+,-+-,-+-*+*+.-/-/-/-/-/-/-/--+,*,*+)+)*(*(*(,++**)('&%$##" !$%$'$'$'$'$'$'$'""&')%)#%" "#$&"&#%!%"$ $!##%%'%'%'% - + - + - + -!-"-"-#-"-"-"-!-!-*++,,---+++,,---.. . . . . . .++++++++,,,,,,,,,,,,,,,,.. . . . . . . / / / / / / / / / / / / / / / -#0#.#.#.#.$.$.$.+3*2(0(/(/)0+2-3,..//001233 44!54!5232323232323231 31"50#5/"4/"4.!3.!3- 2- 2,1,1+0+0,1- 2/"40#4, ., ,, .-!--!//!./!0/!.3"23#03!13!/2 02 .1/1-0,1-3!/5#/8#28$08$07#.<&2<'0>'1>'1>'1>'/A'2A'0H*4H*4I+5J,4L-5M.6N/7O.5T3:V39W4:X5;Y6h@>g?=iB=lE@pIBrG@uI>{M=S<‡X>Œ[=]<^=Z;\<_AaCaCŽa@Œ`;]9–a?—a?—a?–a?•cB”cB’dB‘eBŽc@Œd@Œd@Šd?ˆe?‡d>‡d>…c>…bB…bD‡dF‡dH‡dH…bFƒ`D‚^D[A€\D]E‚^F]E[E}YC}WBY@‚ZA„ZD„[E…ZGƒZFƒXGWGVFXFƒXG„[G‡\I‰`J‹aKŒbJ“fO“fQ“dP‘dObMŽaL‹`MŠ_L‹`O‹`OŠaOŠ`PŠ`PŠcRŽdTeUdT‘cT’dU’dU“eV“eV”fV”fV•fT–gU˜gV˜hT–fR”dP“cO’bN–fR•eQ–cP•bO•bO—dO™eO›gQfQgOžhPgMeL›cHšbI—aG^E‹[D‡W@Q;|M9zK9xK8vK:rH8qJ;rL?rN@nL@jJ=fF;dC:bA:`A`A9\=8[>:Y=9W;8V:7V:7W;8Y=:X?;W>:V=9U<8U<8U<8U<8V=9W=9XA9ZA<[D<`H<_I;`I;`I;`I;`H<`H<`H<_G;`H<`H>aI?`G@_F?_D=\C>\C?]D@^EA_FB_FB^EA]D@\C?\C?\C?]D@]D@^EA^EA_FB_FB_FA`GBaHDbIEbIEaHD`FE_ED^DC]CB\BC^DE`FG`FG]CDYAAYAAWBAVA@U?AT>@S=?R<>R(5='3=%2=%2>&3@)3C+8F,7E+4F+2G,3H-2K.3L/4M05N/4P16R25S36U58V69X89[9:\:;^7:_89a:;c<=d=>d>=d>=d>=c=^@“a@“a>^=_>bA‘cA‘cA’b>`<’^9—_<–^;”^:“_:‘_<‘a=b>d?b?‹c?‹c?Šb>‰a>‰a>‰a>ˆ`=„`>…aA…aA†aD‡bEˆcFˆcF‰dI†aF†aG…`F„_Eƒ^Dƒ]F‚\E‚]C\A‚]B‡_E‡bGŠbH‡bHˆ`G…_H„[E[DƒZD‚\E…\F…_H‰`J‹cJeMeM’eNfNeMcKŒbL‹aKbObObObQbQŒcQbQŒbReUdWdW‘eX“eV”fW•fV•fV—fW—fU™fU™fU™dR™dR›cR™dR—dS˜eT˜eT™fSšeS›gR›gQ›gQšdLœfNŸgN¡iN¢jO iKŸfKœeGšdH•bE]B‹W?‡S=ƒP;€O>~O?yKaE:_B:]@8]?7[>6\>6]@8aC;bE=cE=bE=aC;_B:_A9^A9_A9_@;]>9[<7Y<8W:6W:6X;7Y<8Z>:U96V:7X<;Y==X>=W=:X?;W>:V=9T<8T=7U=9UA:ZB>YE>aJD_KB`IA`J?_I>^H;^F:^F:`H<`H[B>[B>]D@]D@]D@]D@]D@]D@]D@]D@]D@]D@]CB\BA\BA[A@[A@YA?YA?WB?WB?WBAU@?S>=Q<;P:(5='4>&3>&3?'4A)6C+8D-7E+4E,2G,1H-2I.3J/4M04N15Q35Q35R46T68W78X89Y9:\:;^78_89a:;c<=d>=d>=d>=d>;d>;e?‡X>_A“a@“a>`<‘a=‘cA’dB”d@“c?”`;”^:˜`;—_:–^;“_:‘_:‘a;‘c?e?Žc@‹c?‹c?Šb>Œa?‹`>Œ_>‹`>‡`?…a?†bB†bB‡cCˆdDˆcF‰dG‡bG‡bG†aF…`E…`F„_E„_Eƒ^C\Aƒ^A…`C†aD‡bE‡bE†aF…`Eƒ^Dƒ^D‚\Eƒ]F„^G†`IˆbK‰dJeMeLfNfNeMŽdLŒbL‹aKbObObObObQbQbQbQeWeWdW‘eX“eV”fW•fV•fV™eW™eWšeUšeUœdSœdSœcR›cR™dT˜eT™fU™fS›fT›gRœhRœhRœfNgM hM¡iN¡jL¡jL¡hK gIŸhI›fF—bC’\@W?ŠS>†Q?ƒRA}M?wK>rJ>oK?mM@iK@dH<`E:_C8^A9\?7[>6[>6]@8_B:aDbE=`C;_B:_B:^A9^A9_>9^=8Z;6Y:5X96Y:7Y<8Z=9V:7W;8Y==Y?>X>=X>?W=;Z>;X?;Y@:V=9T<8T<8R=8T?:VA[B>[B>]D@]D@]D@]D@]D@]D@]D@]D@]D@]D@\C?\C?[B>[B>[B>YA=YA?WB?WB?WB?U@?T?>R=(5='4>&3?'4@(5A)6E+6F,7F+4G,3H-2I.3L/4M05N15N15Q35R46T47U58W78Y9:\:;\:;_89a9:c;;d<>f>>f>R=‹Y>’_@–a?”b=’b<“c=’d@’d@”d@”d@–b=–`:™a<˜`;—_:”`9’`;’b<‘c?f@Žd>Œe>Œd@‹c?b@Œa?Œa?Šb?ˆa@†b@‡cA‡cA‡cCˆdDˆdDˆdDˆcFˆcFˆcH‡bG‡bG†aF†aG†aFƒ^C„_B…`C†aD†aD†aD†aF…`E…`F…`F„^G„^G…_H‡aJ‰cLŠeKŽdLŽdKeMfNeMŽdLŒbL‹aKbObObObObQbQbQbQeWeWeU‘fV“eV”fW•fV•fV™fU™fUšeUšeUœdSœdSdSœdSšeU™fU›fT›fTœgUœhSŸhSŸhS¡iR¡iP hM hM¢iL£jM¤kM¥lN¦pN¤nLŸhI›dF–^C‘[AYC‹XC‚Q@}O?vL>qK>mK?hK=dH:`D8`D9_C8]A6[?4[?4\@5^B7`D9eI>dH=dH=cG9_>9[<7Z;6Y:5Y:5Y<8Y<8W;8X<9Z>=[?>Z@?Y?>Y?>X>=Z<:[=;[=;[=;[?<\@=ZA=ZA=X?;X?;U=9T<8R=8R=8S>9S>9XC>YD?YE>ZF=]F>^H=`H<`H<`H[B>[B>]D@]D@]D@]D@]D@]D@]D@]D@]D@\C?\C?\C?[B>ZA=ZA=YA=YA?WB?WB?WB?VA@T?>R=>f>>f>kD?mF?nG@nG@oHArKDrLAyN>ƒU>Ž\A–aA—c>—c>•c>•e?“eA“eA•eA•e?˜d=˜b<›c>šb=—a;•a:“aqLeI>eI>eI>cG9\=8[<7Z;6Z;6X;7X;7X<9Y=:[?>\@?Z@?Z@?Y?>Y?>\><\><\><]?=\@=]A>[B>[B>Y@:U=9R=8Q<7Q<7P;6T?:U@;VB;XD;]F>^H=aI=bJ>`H[B>[B>\C?\C?\C?\C?\C?\C?\C?\C?\C?\C?\C?[B>[B>ZA=ZA=X@WB?WB?WB?WBAU@?T?>S>=O9;M79I36F03E/2E/2F/5F16D/8C/8E09E09E07E07F/5F/5J15J15K26M47P69Q78R89R9>g?=g?=g?=f>jC>kD=kD=lE>mF?nH?oI@rLCtL@}O?†V?‘^A™cAšd>˜d=˜g?–f>”g@”g@–f@–f@™e>›e?e@œd?™c=—c<”c;‘d;‘e>f>Žg@Žg@gBŒfAeAŒd@Žc@Œd@‹eA‰eA‰eCˆdBˆdBˆdBˆdDˆdD‰dG‰dGŠeHŠeHŠeJŠeJŠeJŠeJˆcFˆcFˆcF‡bE‡bE‡bE‡bGˆcHˆcIˆcI‡aJ‡aJ‡aJˆbK‰cLŠeKŒbJcJŽdLeMeMeMŽdNcMŽcPŽcPŽcPŽcPŽcRŽcRŽcRŽcReUeUeU‘fV“eU”fV•fV•fV˜eT™fUšeS›fTžfUžfU gTŸhThVžiW hW¡jV¡jV¢kV£jV£kT©oW§nS¤kP£jM§kOªoQ®sU¯wV³{V²zU¯wR¬tQ¨pO£lMŸjKœiN’`G‰[D~T>tN;oL9jK9eH6cF6dH3Z>3[?4\@5cGfJ?eI>dH=bF;aE:a@9`?8^@8]?7\=8Z;6X;7W:6X<8Y=9[?<\@=Z@?Z@?Y?>Y?>\><\><]?=]?=]A>]A>\C?\C?ZA=ZA=X@9Q<7P;6O:5R=8S>9UA:XD;\E=_I>bJ>cK?aI=aI=cH?cH?bEA`C?^@>\@=^B?\C?\C?\C?\C?\C?\C?\C?]D@]D@]D@\C?\C?[B>[B>[B>\C?\C?\C?\C?\C?\C?\C?\C?\C?[B>[B>ZA=ZA=Y@WB?WB?XC@WBAVA@U@?T?>P:&3?'4A)6B+5E+6F,7F,7E+4H-4H-4K.3L/4M05N16P16Q27T47T47U58W7:[9:\:;];<_;;a9:b::d<>g?=g?=g?=g@;lE@lE@kD=kD=lE>mF?oI@pH@tLByM@€Q?ŠX?•`@›eAœe>še=œh@™h@—g?•hA—gA˜g?›g@œhAžfAe@šd>˜d=•d<’e<‘e>Žg>hAhAŽhCgBŽfBeAdAeAŒfBŠfB‰eC‰eC‰eCˆdBˆdDˆdD‰dG‰dG‰dGŠeHŠeJ‹fK‹fK‹fKŒgJ‹fIŠeH‰dGˆcF‰dG‰dIŠeJ‰dJˆcI‡aJ†`I‡aJ‡aJ‰cL‰dJ‹aIŒbIŽdLeMfNeMŽdNŽdNdQdQdQdQdSdSdSdSeUeUeU‘fV“eU”fV•fV•fT˜eT™fSšeS›fTžfUŸgV¡hU¡hU¡jV¡jV¢kW¢kV£lW¤lU¥mV¥mTªqV¨oR§nQ¨mOªoQ­rR±vV´yW¶|V´}V³|U±yT¯wT«sP¨qR¥pQšiKbH‚X?wQ:pM7lK8hI5dG7eI=cG<_C8\@5Z>3Y=2Z>3[?4_C8aE:cGfJ?eI>dH=bF;a@9a@9_A9^@8]>9Z;6W:6V95W;7X<8Z>;[?Y?>X>=\><\><]?=]?=]A>]A>[B>\C?ZA=ZA=YA=YA=U@;S>9Q<7P;6R=8S>9UA:XD;]F>_I>cK?dL@aI=aI=cH?bG>bEA`C?]?=[?<^B?\C?\C?\C?\C?\C?\C?\C?]D@]D@]D@\C?\C?[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>ZA=Y@VA>WB?XC@XCBWBAVA@U@?P:&3?'4C)4E+6G+7G,5G,5F+4J,4K-5L/4M05O06P17Q27Q27T47U58X59Y6:[9:];<_;=_;;b:;d:;f=;g>i@>h?;h?;oFBnE?mD>lC=mE=nF>pH@qI?wMA|N>‚R2Y=1Y=1Z>2[?3^B6aE9eI=gK?fJ>eI=dH:Y@:[=;[=;\><\><\@=\@=[B>[B>ZA=[B>ZB>ZB>WB=VA9R=8S>9T?:VB;XD;]F>`J?cK?dL@aI=aI=cH?bG>aD@_B>\>;^B?\C?\C?\C?\C?\C?\C?\C?]D@]D@]D@\C?\C?[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>ZA=ZA=ZA=Y@WB?XC@YDCXCBWBAVA@P:&3?(2D*5F,7H-6H-6G,5F+4K-5K-5L/4M05O06P17Q27Q27T47U58X59Z7;[9:];<_;=b;i@lDpH@sH?xM=}N:…S:[<œb= f> e;d9 k?žk@ši@˜h@™h@ši@žjB kC kCžiA›g?—f=•e=‘feI=bA8bA8aC;`B:^@8[=5W:4U82U95V:6X<8Y=9X?;X?;W>:V=9[=;[=;[=;\><[?<\@=ZA=ZA=ZA=[B>[C?\D@YD?WB=U@;T?:T?:U@;WCaD@^A=\>[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>[B>ZA=ZA=Y@WB?YDAYDCXCBWBAWBAQ;=N8:K58H25F03F03G06G27G29E28D/6B-4A,3A,3C,4D-5D*3D+1F,5G.4J/8K07L1:L39L37J47I36I36H25H25G14G14G14G14F03E/2D.1C-0B,/A+.D-5D-5D-5D-5D-3D-3F-3F-3E,0D+/C*-B),A(+>(*?''?&)B)-B)-B)-B),B**B*(B*(B*&',',(,(,)-)-+,+,-*.+0,1-2 ,3!-3!-4".5#/4".4".3!-2 ,1+1+0*4".4".3!-3!-2 ,2 ,1+1+/./././././././.0//.-,,++*+*,+-,/-0.0.1/1/2 02 02 01/1/0.0./-/-.,.,+**)&'#$!"  !' &&$#### "#&'('&%#$$%&''((()**)(())**++,,---------...//00.........--,,+++++++++++++++++++**+,--..,,--.. / /"1"1"1"1"1"1"1"1 / /!0!0"1"1#2#0#/#-#-$.&.'/'/'/'.'.)/)/*0*0-1-1-/.0.0/11 32!42!43"53"53"52!42!41 31 302023"53"52!42!41 31 30202/1021 33"53"53"52!42!33!/3!-5!-6".6".7#/8"/9#0:"0:"0:"0;#1="1>#2>#2=%3:$1:$19#09#0:"0;#0=%2>&3B(3C)4E)5F+4H-6I.7M/7M/7O08O08O06P17Q07R18R27R27X59X59Z6:[7;\8:]9;`9<`9:`67d87g;:i=:l@=mA>mA>mBrG>tI@vJ?{M=O8‡T7“]; d?¦kA§j=£i;¢l> m@žmBžmDŸnEŸnE¡mE¢mC¢mC¡lBj?˜i=•h>“h=’h>i>j>Œj=Œi?‹h>g@Œf?Œf?Œf?ŒiCŒiC‹hBŠgA‰eAˆd@‡c?‡c?…a?†b@ˆdD‰eEŠfF‰eE‰dGˆcFjMŽiLŽiLhKŒgJ‹fI‹fKŠeJ‹fL‹fL‹eN‹eN‹eN‹eN‹eN‹fLfNfMfNfNfNfNfPfP‘fSeReRdQeT‘fU“hW”iX’iW’iW“hU”iV–iV—jW˜iW™jV™fSšgR›gRœhSŸhS¡jU¢iU£jV¥kW¥kU¦lVªnV«oW¬pV­qW¯rV³vY³tU±rS°qP²sR·wT»{X½X»}T¹Qº}Q·|P¸{O¶{O´{P²{R­yQ£sM•gE†[;yQ7qM3pM7oO:hK;eI;cG9`D6^B4]A3]A3]A3]A3^B4_C5aE7cG9eI;fJ9W>9W>9Y;9X:8V86U75U96X<9ZA=\C?ZA=ZA=YA=YA=WB=WB=WB=WB=U@;U@;VB;XD;\E=_I>cK?eMAcK?cK?dI@cH?cFBbEAaCA`DAY=:W>:X?;Y@[B>[B>[B>ZA=Y@:W>:X?;X?;X?;Y@Y@*+?*)>(*<&);%(;%(;%'<'&=(%?*'@+(',','+(,(,)-*++,.+.+0,1-2 ,3!-4".4".5#/5#/4".3!-3!-2 ,2 ,1+4".4".3!-3!-2 ,2 ,1+1+/././././././././..-,++**)+*+*,+/-/-0.0.1/1/2 02 01/1/0.0./-/-.,.,+**)&'$%!" ! &%%#"""# "$%'''&%$$$%&''''()**)('())**+++--------,---.///.........---,,+++++++++++++++++++,,,,---,--.. / / /"1"1"1"1"1"1"1"1 / /!0!0"1"1#2#0#/#-#-$.&.'/'/'/'.'.)/)/*0*0-1-1-/.0.0/11 32!42!43"53"53"53"52!42!41 31 3023"53"52!42!41 31 30202/1021 33"53"53"52!42!33!/3!-6".6".7#/7#/8"/9#0:"0:"0;#1;#1>#2>#2>#2?$3<$2:$19#09#0;#0<$1=%2>'1B(3C)2E*3F+4H-6J/8M/7M/7O08O08O06P17Q07R18R27R27W48X59Z6:[7;\8:]9;`9;l@=mA>mBoD=oD=pE>qF=sH?uJAwK>O;…Q9V8™^<¥g@©l@©l=¥k;£m>¢n?¡nAŸnCŸnE oD£nD£nD¢mC mB›j?˜i=”g=’i=i>j>k>k>Œi?Œi?g@g@Œf?Œf?jDjDŒiC‹hBŠfB‰eAˆd@‡c?†b@‡cAˆdD‰eEŠfFŠfF‰dGˆcFŽiLŽiLŽiLhKŒgJ‹fI‹fK‹fKŠeKŠeKŠdMŠdMŠdMŠdMŠdMŠeKfNfMfNfNfNfNfPfP‘fSeReRdQeT‘fU“hW”iX’iW’iW”iV”iV—jW—jU˜iU™jVšgRšgRœhSiS iT¡jU£jV¤lU¦lV©mU©mU«oU¬pV®qU¯rV¯rU´uV³tS²sR³sPµuR¸xT»{W¾~X¾T¼R¼R»~Q»~Qº}P·}O´~P¯zP¥tL—iE‰^>}V9uP6rN6oO:hK;eI;bF8_C5]A3]A3]A3^B4]A3^B4_C5aE7cG9eI;fJ9W>9W>9Y;9W97V86U75U96X<9Y@<[B>ZA=ZA=YA=YA=WB=WB=WB=WB=U@;U@;UA:WC:[D<^H=bJ>dL@dL@cK?dI@cH?cFBbEAaCA`DAZ>;Y@ZA=ZA=Y@:W>:Y@[B>[B>ZA=ZA=ZA=ZA=ZA=ZA=ZA=YA=]EC[FC\GD[FCZEDYDCWBAVA@V@BS=?P:=L69I36H25G06F16E07D17D/6D/6C.5C.5C,4C,4D*5D*5D*5E+6F*6F*6G+9F,7J17H25H25H25H25I36I36I36J47J47K58K58J47I36H25G14I/8G-6E+4E+4E.4F/5D-3A*0D.1C-0C-/A-.?+,>*+>*)=)*;');$*;$*;%(<&(=('?*)@+(&+','+(,(,)-*+*+/,/,1-2 .3!-4".5#/5#/5#/5#/5#/4".4".3!-3!-3!-4".4".3!-3!-2 ,2 ,1+1+/./././././././..--,+**))(*)*)+*.,.,/-/-0.0.1/1/1/1/0.0./-/-.,.,+**)&'%&"# !"!%$$"!!!"#$%&''&&$$%%&&''&'())('&((())**++++++++++++,---............-,,,+++++++++++++++++.----,,,---.. / /!0"1"1"1"1"1"1"1"1 / /!0!0"1"1#2#0#/#-#-$.&.'/'/'/'.'.)/)/*0*0-1-1-/.0.0/11 32!42!43"54#63"53"52!42!41 31 31 34!54!53 43 4232312120112234!54!54!53 43 35 /6".6".6".8"/9#09#09#0:"0;#1="1="1>#2?$3@$3?$3<$1<$1;#0;#0;#0=%2@&1A'2D(4D)2G)3I+3K-5L.6M/7N08O08O08P/6Q07Q07R18T17T17X48X48Y59Z6:]69^7:_8;a9:a86d85g;8j>;lA;mBuJAwMA{M>…R=‹U9“[:Ÿc>©j?­o@­o>ªn<§o>¥o@£pC¡qC¡pE¡pE¤oE¤oC¡nA m@›j?˜i=”h;’i;j=j=Žl?l?Œk>Œk>Œi?Œi?h>h>ŽkCjBjD‹hBŠgA‰f@‰eAˆd@†b@‡cAˆdBŠfDŠfFŠfF‰eE‰eEŽiLŽiLhKhKŒgJŒgJ‹fK‹fKŠeKŠeKŠdMŠdMŠdMŠdMŠdMŠeKfNfMfNfNfNfNfPfP‘fSeReRdQeT‘fU“hW”iX’iU“jV”iV”iV—jU˜kV™jV™kTœiTœiTžjTŸkU¢kV£mU¥mV¦lVªnV¬nU¬nU­oV®pW±qV²rV²sT´sUµtT¶vS¸vSºxU¼{U½|V¾}W¿€U¿€U¾S¾S½P¼Pº€P¸€Q±{O©uMmGcB„[?zU;uQ9qN:hK;dH:aE7^B4\@2\@2^B4_C5^B4_C5`D6aE7cG9dH:eI;fJ3Y=2Y>5Y>5Y>7Y>7W>7W>7W>9W>9W97V86U75U75U96W;8X?;ZA=ZA=ZA=YA=YA=WB=WB=WB=WB=T?:T?:T@9UA8ZC;\F;`H:W>:ZA=ZA=ZA=[B>[B>\C?\C?\C?ZA=ZA=ZA=ZA=ZA=ZA=ZA=YA=^FD\GD\GD\GD[FEYDCWBAVA@V@BT>@Q;>N8;K58I36H17G27F16E26E05E05D/6D/6D-7D-7F,7F,7F,9E+8F*8F*8F*9D*5H/5F03G14G14H25I36J47J47K58K58L69L69L69J47I36H25J09G-6E+4F,5F/5F/5D-3B+1C/1B.0B./@..>,,=++=+)<**<',;&+:%*:&(:&'<('=)(>*)&+&+&*'+(,(,)**+/,/,1-2 .3!-4".5#/5#/5#/4".4".4".4".4".4".4".4".4".3!-3!-2 ,2 ,1+1+/./././././././.-,,+*))()()(*)*)-+-+.,.,/-/-0.0.1/1/0.0./-/-.,.,+**)'(%&$%"# $#$## !   !$$%&&&'&%%%%&&&&&'())('&((())***++++++++***++,,,........ /..--,,,++++++++++++++++/ /..-,++-... /!0!0!0"1"1"1"1"1"1"1"1 / /!0!0"1"1#2#0#/#-#-$.&.'/'/'/'.'.)/)/*0*0-1-1-/.0.0/11 32!42!43"54#64#64#63"52!42!42!41 34!54!53 43 4232312120112234!54!54!53 43 36!06".6".7#/8"/9#09#0:$1;#1;#1="1>#2>#2?$3@$3@%4?%2=%2<$1<$1<$1>'1A'2B(3D)2E*3H*2I+3K-5M/7N08N08O08O08P/6Q07Q07R18T17T17X48X48Y59Z6:]69^7:_8;`89c76e96h<9j>;mBpEtI@wLCzPDQB‰U?‘Z<œ`>§iB¯oC±qA±r?¯q>«q?¨sA¥rC£sE£rG¤qD¥pD¥pD¢oBžn@œk@—k>”i<’i;j=Žl>Žm@Žm@l?l?j@j@Ži?Ži?lDŽkCŽkEŒiC‹hBŠgAŠfB‰eA‡cAˆdB‰eCŠfD‹gG‹gGŠfF‰eEhKhKhKhKŒgJŒgJŒgLŒgL‰dJ‰dJ‰cL‰cL‰cL‰cL‰cL‰dJfNfMfNfNfNfNfPfP‘fSeReRdQeT‘fU“hW”iX“jV“jV”iV•jW—jU˜kV™kTšlUžkVžlU lV¡mW¤nV¥oW§oX¨nV­qW®pW¯qX°sW²rW³sW³tU´uTµtT¶vSºxU¼{U¾}W¾}WÀ|WÀ|U¿~V¾T¾S¾S½P½P¼P¹P´~P¬yN¡qK•iFŠaE‚ZAyS7W>7W>7V=8V=8V86V86U75U75U96W;8W>:Y@9S>9S?8T@7XA9[E:^F:_G;dL@cK?dI@cH?cFBbEAaCA`DA]A>[B>ZA=ZA=Y@:X?;X?;X?;X?;X?;X?;W>:W>:ZA=[B>[B>\C?\C?]D@]D@]D@[B>[B>[B>[B>[B>[B>[B>ZB>^FD\GD]HE\GD[FEZEDXCBWBAV@BT>@R,,;++;,):**;(,<'.;&+:&(:&(;'(<('=)(%*&+&*&*'+(,)*)*.+/,0,1-3!-4".4".5#/3!-3!-3!-3!-4".4".4".4".4".4".3!-3!-2 ,2 ,1+1+/./././././././.-,,+*))()()(*)*),*,*-+-+.,.,/-/-1/1/0.0./-/-.,.,+*+*()&'%&#$!%!%$## !   !%&'''())((((''''''))))''(())**++++++++++))**++,,........ / / /..--,++++++++++++++++0!0 /.--,,... /!0!0!0"1"1"1"1"1"1"1"1"1 / /!0!0"1"1#2#0#/#-#-$.&.'/'/'/'.'.)/)/*0*0-1-1-/.0.0/11 32!42!43"55$74#64#64#63"52!42!42!44!54!53 43 4232312120112234!54!54!53 43 36!07#/8"/9#09#0:$1;#1;#1="1>#2>#2?$3@$3A%4A%4@%4@&3>&3=%2=%2@&1A'2C'3D)2E*3E*3H*2J,4M.4N/5O06P17P/8P/8P/6Q07S07T18T17T17W37W37Z38[49\58]69_6:_78d87g:7i<7l?:nA–k>’l=‘m=m=o@o@Žm@Žm@l?l?j@j@mElDlDŽkCjD‹hB‹hBŠgA‡c?ˆd@ŠfD‹gE‹gE‹gEŠfFŠfFŒgJŒgJŒgJŒgJhKhKhMhMŠeKŠeKŠdMŠdMŠdMŠdMŠdMŠeKfNfMfNfNfNfNfPfP‘fSeReRdQeT‘fU“hW”iX“jV”kU•kU–lV˜kV™lWšlUšlU nW nW¢nX£oW¦pX§qY©qZªpX±sZ³sX´tY´tYµsY¶uY¶uW¶uU·uU¹wU¾zWÁ}XÃZÃXÃ~WÁ}V½|T½|R¾~R¾~R¾~P½N¼€Nº€P¹€S°{Q¤rMšlJ‘eJ‡_F|VAtQ>iL:eJ9aF5]B1\A0^C2aF5cH7bG6cH7cH7dI8eJ9fK:gL;gL;iI7W>7V=6V=8V86V86V86W97W;8X<9X?;Y@9S>9S?8T@7W@8YC8]E9^F:cK?bJ>cH?bG>bEAaD@`B@_C@\@=ZA=Y@:W>:V=9W>:W>:W>:W>:W>:W>:X?;X?;ZA=[B>[B>\C?\C?]D@]D@]D@]D@]D@]D@]D@]D@]D@]D@\D@]EC\GD\GD\GD[FEYDCWBAVA@V@BU?AT>AR..<,,:,+:,):**<)-<'.;&+:&(:&(;'(<('<('%*%*%)&*&*'+())*-*-*/+0,1+2 ,3!-4".1+1+2 ,2 ,2 ,3!-3!-3!-4".4".3!-3!-2 ,2 ,1+1+/./././././././..--,+**))(*)*)+*+)+),*,*-+-+.,.,1/1/0.0./-/-.,.,,++*()'(&'%&#'#'%$$"!!!"''&&'()*))((''&&()*++*)()***+,,,++++++++)***++,,........!0 / / /.---++++++++++++++++/ / /....-. / /!0!0"1"1"1"1"1"1"1"1"1"1"1 / /!0!0"1"1#2#0#/#-#-$.&.'/'/'/'.'.)/)/*0*0-1-1-/.0.0/11 32!42!43"55$75$75$74#64#63"53"52!44!54!53 43 4232312120112234!54!54!53 43 37"17#/8"/9#0:$1:$1;#1<$2>#2>#2>#2?$3A%4A%4A%4B&5A'4?'4>&3>&3A'2B(3D)2E*3E*3F+4I+3J,4M.4O06P17P17P/8P/8P/6Q07S07T18T17T17V26W37Z38[49\58]69_6:`68d87g:7j=8l?:oB=pC>pC=qD>pD;qE©kF²qG¹uF¹vB·v@µv@±xC­xD¬xHªwH©vI¨uH¨tE¨tE¦sF¢rDŸpB›o@˜m@”n?“o?‘o?pApAnAnAŽm@Žm@ŽkAŽkA‘nFmEmElDŽkEŒiCŒiC‹hBˆd@‰eAŠfD‹gEŒhFŒhF‹gGŠfF‹fI‹fIŒgJŒgJhKhKŽiNŽiN‹fL‹fL‹eN‹eN‹eN‹eN‹eN‹fLfNfMfNfNfNfNfPfP‘fSeReRdQeT‘fU“hW”iV”kW”kU•kU–lV™lW™lWšlU›mV¢pY¢pY¤pX¥qY¨rZ©s[«s\¬rZ´v]¶v[¶v[¶vZ·vZ·vX·vV·vV¹wU»yVÀ|WÃZÅZÅZÅ€YÅ€YÀ|U¾}U¿~T¿S¿QÀ€P¿P¼‚R½…V²}Q¥sN›mL”hM‹aIXDwR@mNjJ=fH=dF;cE:cE:bF;bF;]B9\A8\A8[@7X?8W>7V=6V=6W97W97X:8Y;9Y=:Z>;Y@aF=`C?_B>_A?]A>Y=:W>:W>:W>:V=9V=9V=9V=9V=9V=9V=9V=9W>:W>:X?;X?;ZA=ZA=ZA=[B>[B>\C?\C?\C?^EA^EA^EA^EA^EA^EA^EA]EA\DB[FC[FC[FCZEDXCBVA@U@?V@BV@BU?BT>AS=@P:=N7=L7..;-,:,+:,)9+*=*.=(/<'.:%*:&(:&';'(<('$)%*%)&*&*'+()(),),).*/+0*1+2 ,2 ,/)/)0*0*1+2 ,2 ,3!-4".4".3!-3!-2 ,2 ,1+1+/././././././././..-,++**)+*+*,+*(*(+)+),*,*-+-+1/1/0.0./-/-.,.,,++*)*()'(&'$($( &%%#"""#('&&&()+)))('&&&)*+,,+*)+++,,--.--------**++,,--........!0!0 / /...-++++++++++++++++... / / / /!0 / / /!0!0"1"1#2"1"1"1"1"1"1"1"1 / /!0!0"1"1#2#0#/#-#-$.&.'/'/'/'.'.)/)/*0*0-1-1-/.0.0/11 32!42!43"56%85$75$74#64#63"53"53"54!54!53 43 4232312120112234!54!54!53 43 37"19#09#09#0;#1;#1<$2<$2>#2?$3@$3@$3A%4A%4D%5B&5B(5@(5A'2A'2A'2C)4E*3F+4H*2H*2I+3K-5N/5O06P17Q28P/8P/8R/6S07S07T18U07U07X16X16Y27Z38\37]48^59`68e96g:5j=8m@;oBqD>pD;qEhMjO>jO>mM@lL?hK=fI;eGeI>^C8]B7]B9[@7X?8W>7V=6U<5X:8X:8Y;9[=;[?<[?^A=]?=[?:W>:X?;X?;Y@[B>[B>^EA^EA^EA^EA^EA^EA^EA]EA[CAYDAYDAYDAXCBVA@T?>S>=V@BV@BV@CV@CU?BR..;-,:,+8-)9+*>+1=*0;(.:'+9&(9''9'':(($)#)%)%)&*&*')())(+(,)-*/)0*1+1+.(.(/)/)0*1+2 ,2 ,4".4".3!-3!-2 ,2 ,1+1+/./././././././.0//.-,,++*+*,+-,)()(*(*)+)+*,*,+1/0/0././-.-.,-,,++(+*())('(&'%)"& &$"####&'&%&'*+*))('&&%*),+-*+(,*,+-,.-++++++++)))**+++,,.,.,.,!0!.!0 - /,.++)+)+)+)+)+)+)+)-+., /!."1"/ / -!0!."1"/#2#2"1"1"1"1"1"1"1"1 / /!0!0"1"1#2#0"/#-#-$.$.'/'/'/'.'.(/)/*0*0+1-1-/.0.0/11 32!43 44!47$77$76#66#65"55"54!44!44!44!43 43 3232212110111234!44!54!43 45 38!19#09#0:$1;#1<$2<$2<$2>#2?$3?$3@&3A%3B&4B&4B&4C)6@)3A'2A'2B(3C)2E*3F+2H*2H*2J,4K.3N/5O06P17R18P/6R/6R/5S06S06T17U07U15X16X16Y27Z38[47\58^59^67e98g;8j=:lA;oB=qD>qD>qE{OB€UE„YIŠ[G“[@ dB¯nF¸uH½wD¼w@¹v?·y@¶{C³|D¯|E­zE¬xF«wEªvD¨vE©wF¦vF¤tD rAœr@šrA—sA•sC’p@‘qB‘pCoBoBmCmClB’oE’oG‘nFmGlFŽkEiEiEˆdB‰eC‹gEŒhFŒhHŒhHŒhH‹fIŠeH‹fK‹fKŒgLhMŽiNŽiNjPŽiOŽiOŽhQŽhQŽhQŽhQŽhQgQfN’eN’eN’eN’eNfN’ePfP‘fSeReRdQeR‘fS“hW”iV•jW–kX–kX™lW™lWšmV›mV›mU¤r[¥sZ¦rZªtZ¬t[®uZ°tZ±uY¹y]¹z[ºy[ºyY¹xX¹xXºxXºxVÀ|YÁ}ZÂ~YÃZÅZƃYÈ…[È…[ǃ\ǃ\Ç„ZÉ„ZʆYˇXˉYɉYň[¸T§sLœkJ•hKbK…ZG{TCqP?lM;eH8aD2aD4dG5hMjOjOiL7V=6U<5W;7X<9Z<:[?<\@=[B>[B>[B>X?;W?;W?;U@;U@;U@;U@;U@;WB=VB;XA;XA9XA9ZD9]E;^F:^F<]E;^C:]B;\A:[?;\?;Z>;Q84Q97R87S98T:9U;:U;:U;:T:9T:9U;:V<;W==X?;X?;X?:X?;Y@;Y@ZB@ZB@ZB@WBAU@?S>=R<>U?AV@BWADWADV@BS=?P:=N:I.?J-?J...<,,;++:,+:*+>+/=*0;(.:'+9&(9&(9'':((%+#+%*%*%*%*%(&(''(')()(,','-(-(1+1+1+1+1+1+1+1+2 ,2 ,2 ,2 ,2 ,2 ,2 ,2 ,-,-,-,-,-,-,-,-,1 00//..-,++**)*),+*+,+*+,+*+,+*+.-,-.-+,-,*+,+,+.+/).*+(*&(%'$$%"#!%!% $ %$$&'))))))))))))))))(*), + -!,,*,*,*,*&&'' ( (!)!) ( ( (!)!)"*"*"*!+!+!-!+!-!+!-!+$0#-!- *+ * , +,)+(*')''%(&)'*(,*,*,*,* - +!.!,"/"-#0#0!0!0!0!0"1"1"1"1... / /!0!0!.#0"-*))",%/'1&.&.'/(/)0)0*1+1/10100111122425 18#47"38!37 27 06/7/6/5 13!13 33!13 33!13 33!1112 03 34"25"56$46#69$5:#3<$4<$4=%5?'5@(6@(5A)6?'4?'4?'4?(2A'2A'2A'2A'2A'2A'2B&2C(1C(1C(1E'1E'/J+3J+1K,2K,2M,3M-2N.3N.3R/3S/3S/3T04T04U15U15U13V24V24V24V24X46Z68_8;`9:b89d;9j>=kB>oD>pE>pE>oD;oC8rF9yK<~P@SCƒVCƒVC…U?’\@©mK¸uK·q@¸o:Á{@€D¸|@¹FµE²@°}>®{<­y=«z?«z@©v?©vA¨vA¦wC¡vAt@—r>”p>™uE–tF•sF“qD’oE’lE‘kDjC–sK•sM“qK‘oJmHkF‹iFŠgG‰fH‰fH‰fJŠgKŠfLŠfL‹gM‹gMŠeK‰dJ‰dJ‰dJŠeKŒgMŽiOiRjSjSjSjSjSjSjS’iS•hS–gS•fR•fR”eQ’eP’cO‘dO“fQ“fQ“fQ“fQ‘gQ’hR’gT’gT–gW—hX˜iY˜kXšmXœoXžpYžpX¥sZ¦sX¨rV«rU±tX¶vZ»z^½|\¿[¾€Y¿Y¿[À~[À~\À~\À~\Ã\Ã\Á€ZÁ€ZÂYăYÆ…[dž\ËŠbËŠbÊ…[Ç€TÌ‚UÖ‰[Õ‹\ωXÅ…W¹~R¬wM¢pK™lK’fK†\D}T@{TCuP>nJ:gF3fE4iJ6mP>qU@oTAoT?qTBqU@qTBqR>pQ?oP_G=^E>\C7W>7Z?8X?:V>U==T<Z>=Y@;ZA:ZA<[B;]D?^E>^E@_F?_FA`G@`GBaHA`GB_F?]D?\C>\@=]?=\@?Z@?X@@T>@Q;=O;=T@BS?AQ=>O;).=(-;&+9%'8$&8$&8$&9%'#+#+#*#*%*%*%(%(''''(')()&*','-(1+1+1+1+1+1+1+1+2 ,2 ,2 ,2 ,2 ,2 ,2 ,2 ,-,-,-,-,-,-,-,-,1 00//..--,+*+**)*+*+*+*+*+*+*+*+,-,-,-+,+,*+*+,).*.(-',&+'*&(%(%#$#$"&!%!% $ %'(**************(*()) *!+!+", * * * * * * * * & %!&!&"'"'#(#("'"'"'#(#($)$)$*!+!+!+!+!+!+!+!+#-",!+ *)) *!+ *)))((''%&&''(((******** + +!,!,"-"-#.#."1"1"1!0!0!0!0!0.. / /!0!0"1"/!0 -*)*!,%/'1&.&.'/'/)0)0*1+1/10111114242405 19"28!19!19!18 .8 .9-7-5 13!13!13!13!13!13!13!12 02 03!14"25#36$47%59$5:#3<$4<$4=%5?'5@(6@(5A)6?'4?'4?(2?(2?(0?(0?(0?(0A'2A'2B'0C(1C(1C(1F(0F(0J+1K,2K,2L-3M-2N.3N.3P-1S/1S/1S/1T02T02U13U13U13V24V24V24W35X46[79]9;`9:c;qF=qE:sG:yK<|N>R?T?ƒVA…U>’\@©mKºwM»sA¼s<Ã}AÃE¹}?º„F¶ƒB¶?³~:²}9¯|:¬|<¬|>ªw>«x?ªyA§x@¤vBžu?šr?–q=™uE˜tD—rF–qE”nG’lE’jF‘kF”qK’pJ‘oJnIŽlIkHŒiI‹hH‰fJ‰fJ‰eKŠfLŠfNŠfNŠfPŠfPŠdM‰cL‰cL‰cLŠdMŒfOŽhQiRjSjSjSjSjSjSjS’iS–gS—gS–fR–fR”eQ“dP“dP’cO“fQ“fQ“fQ“fQ’hR’hR’hR•hU–gW—fX˜iY™jX›lZ›nWžpYŸpV¦t[§tWªrW®sU´tX¹vY¾yZÀ{Z¿€W¾U¿€W¿€WÀ~[À~[À~\À~\Å^Ä€]Â[Á€XÂWÄXÄ…YņZʉ_ÍŠ_·[Ì‚UÓ…WÜ‹\ÚŒ\ÒˆWÉ…V¼R­vM£rJšmL“gJ‡]DU?|SAvO>pI8jG4iF3jK7oP:W?;X@WB=WB=VC=VC=VC=VC=UD=VC_F?^E>]D=[B;X?8W>7W>7X?8XA;V>>S=?R<>Q;=R9Z;@Z=?[?;ZA:ZA:[B;]D=^E>^E>_F?_F?_F?`G@`G@`G@^E>]D=^C<]@<]?=^@>]A@Z@AW>AS=?R<>T@BU?AU?AYAA\BA\C?\@=W=*,=)+;')9%'8$&8$&8$&9%'#+#+#*#*%*%*%(%(&&''(')()&*',','0*0*0*0*0*0*0*0*2 ,2 ,2 ,2 ,2 ,2 ,2 ,2 ,.-.-.-.-.-.-.-.-0/0//..--,,+,++*,+,+,+,+,+,+,+,+.-.-.--,-,,+,+,),(,&,&,&,(+'*'*'%&%&$(#'#'"&"'!))++++++++++++++)+) * * *!+!+!+ * * * * * * * *&&'' ( (!)!) ( ( (!)!)"*"*"*!+!+!+!+!+!+!+!+#-",!+))) * * * * *)((('&&&''(()******** + +!,!,"-"-#.#.#2#2"1!0 / /.. / /!0!0"1"1"1#0!0, +**!,%/&0&.&.'/'/)0)0*1+1/1121111425 35 15 19"29"2:"29!18 .8 .:.7-5 13!13!13!13!13!13!13!12 02 03!14"25#36$47%59$5:#3<$4<$2=%3?'5@(6@(5A)6?(2?(2?(2?(2?(0?(0?(0?(0A'0B'0B'0C(1F(0F(0G)1G)1K,2K,2L,1M-2M-2N.3P-1Q.2S/1S/1S/1T02T02U13U13U13V24V24V24W35Y57[79]9;a:;d<=f<=f<=h?=l@=oD>qF?rG>uI>vJ=yKƒT@†V?’\@©mI½xNÀyEÁy?Æ€DÄ‚Fº~@¼†H¸…D¸ƒA·€=´;²=°€@°€B®{B­zA¬{C¨yA¥wCŸv@œtA˜s?™uE—uE–tG”rE”nG“mF“kG‘kF‘nHmGmHŽlGŽlIkHŒiIŒiI‰fJ‰fJ‰eK‰eK‰eM‰eM‰eO‰eOŠdM‰cL‰cL‰cLŠdMŒfOŽhQiRjSjSjSjSjSjSjS’iS•hS–gS•fR•fR”eQ”eQ”eQ”eQ“fQ“fQ”gR”gR•hS•hS”jT–iV–gW˜gY™hY™jX›lZœnWžpYŸpV¨v]«uY¬tY±vX¶vZºwZ¿z[À{Z¿€W¾U¿€W¿€W¿[¿[À~[À~[ǃ`Æ‚_Å\ÂYÂXÄ„XÅ…YƆXʇZÏ‹\ÒŠZÔˆWÚ‰Zà_ÜŽ]Ó‰XÉ…V¼R­xN£sKœoN”hK‰_F€WA{R>vP=rL9mJ6lI5kL7oP;oS=qW@rXAtXBuYCwXCwXCwWBvVAwXCtU@oS=nRiN=fK:`F7_E6]C6\A6YA7X@6Y@9Y@9X?:W>:V=9U<8V>:X@\D@XC>XC>WD>WD>WD>WD>VE>WD=[D>\C<[B;ZA:[B;\C<^E>_F?^E>]D=\CQ;=R9[?;ZA:ZA:[B;]D=^E>^E>_F?^E>_F?`G@`G@_F?^E>]D=^C<]@:]@<^A=^B?\BA[ABX@@W??Z@CY?@]?AaABeCBcA?a>*,=)+;')9%'8$&8$&8$&9%'#+#+#*#*%*%*%(%(&&&&'&(')&)&+&,'0*0*0*0*0*0*0*0*1+1+1+1+1+1+1+1+.-.-.-.-.-.-.-.-0/0//./..--,-,,+-,-,-,-,-,-,-,-,.-.-.--,-,,+,+,)+'+%+%,&-)-)-*-*'('(&*%)$($($)"*+--------------+ * * *!+!+!+!+!+ * * * * * * * *&&'' ( (!)!) ( ( (!)!)"*"*"*!+!+!+!+!+!+!+!+",!+ *)(() *!+ * *))(((&'''()))******** + +!,!,"-"-#.#.$3#2"1!0 /-,, / /!0!0"1"1#2#0 /, + + +"-$.&0&.&.'/'/)0)0*1+102121122425 35 16!2:#39"2:"29!19!/8 .:.8 .6!04"24"24"24"24"24"24"22 03!14"25#36$47%58&6:%4;#3<$4<$2=%3?'5@(5@(5A)6>'1>'1>'1>'/>'/>'/>'/@&/A&/B'0B'0C(1F(0G)1H*2H+0K,2L-3M-2M-2N.3O/4Q.2Q.2S/1S/1S/1T02T02U13U13U13W35W35W35X46Y57\8:^:?f<=f<=g=>k?>nB?rGAtIByMDxLAxJ=yKƒTB†V?“\>©mI¿{NÆ}JÉ~DʃEŃF¼€B¿ˆH¼†F»„Cºƒ@·‚>µ‚@³ƒC³ƒE±D¯~D®}E¨{B¤yD wAuB™uA˜vF—uE–tG•sF•oH“mF“kG’lGŽkEkEkFkFkHkHjJjJŠgKŠgK‰eK‰eK‰eMˆdLˆdNˆdNŠdM‰cL‰cL‰cLŠdMŒfOŽhQiRjSjSjSjSjSjSjS’iS•hS–gS•fR•fR•fR•fR•fR•fR“fQ“fQ”gR•hS–iT—jU•kU˜kX—hX˜gXšiZ›jYœmYoXžpX qW«x]­w[°wZ´y[¸yZ¼y\À{\Á|[ÀX¿‚VÀXÀXÀ€\À€\Á\Á\È„aǃ^Æ‚[ƃYƃXÇ„WÈ…XɇW͇VÓ‹YÙ[ÜŒ[á]å“aà_Ó‰XÉ…T¼P­xN£sKœoN“jL‰aG‚YC{R>yPnR=nQ?mP>hM_F?^E>]D=\CQ;=P:^E>_F?_F?_F?`G@`G@`G@^E>]D=^C<\A:^A;_D=`D@^EA]CB^BA^BA`BD]=>_;=d=>f<=d87e77n7:p-4m*3a*/Y,/R/3O26L16J/4M4:K4:H59E58F37G06K-5J,4G-6C.5C.5B-4C.3D/4F16G35J68K79M9:N:;O;*,=)+;')9%'8$&8$&8$&9%'#+#+#*#*%*%*%(%(%%&&'&'&(%)&+&+&/)/)/)/)/)/)/)/)1+1+1+1+1+1+1+1+/./././././././.0/0//././..-.-.--,-,-,-,-,-,-,-,.-.-.--,-,,+,+,)*&+%+%,&-).*.+.+()()'+&*&*%)%*#+ ,,,,,,,,,,,,,,,,",",",!+!+!+!+!+ * * * * * * * *&&'' ( (!)!) ( ( (!)!)"*"*"*!+!+!+!+!+!+!+!+",!+)((())!+!+!+ * *))('''())) ********* + +!,!,"-"-#.#.#2#2"1 /.-,+ / / /!0!0"1"1"/., + +!,"-$.%/&.&.'/'/)0)0*1+10223223 35 36!46!26!2:#3:#3;#3:"2:"09!/; /8 .7 06!06!06!06!06!06!06!05 /5 /6!07"18#29$3:%4;&5;#3>#2>#2?$3A'4B(5B(5C)4@&1@&1@&/@&/@&/@'-@'-@'-A&/B'0D&.F(0G)1H*2J+1J+1M,3M-2M-2N.3Q.2Q.2Q.2R/3S/1S/1S/1T02T02U13U13U13W35W35W35X46Z68\8:^:f=Af<>h;>i=>k?>nB?sFAuHB{LDzKAxJ=xJ;{L<P>ƒTB‡W@”]?¨lG¿{LÉ€KÌ‚EË„DÆ…E¿ƒDÀ‰I¾‰G½†C¼†@º…?¸†A·†D¶†H´‚G±€F¯~F©|C¤yD yBœwCšvB˜vF˜vF—uH•sF“pH’oG“mH’lGjDŒjDkFkFkHŽlIŽkKŽkKŠgKŠgK‰eK‰eKˆdL‡cK‡cM†bLŠdM‰cL‰cL‰cLŠdMŒfOŽhQiRjSjSjSjSjSjSjS’iS’hR”gR•hS•hS•hS•hS•hS•hS“fQ”gR•hS–iT—jU˜kV™lWšmZ˜iYšiZ›j[l[žnZ pZ¡qZ¤rY­z_°z^³z]¸{^»|]¾|\Á|]Á|[ÀXÀVÀXÀXÀ€\À€\Á\Á\Æ…_Æ…_ǃ\Ç„ZÇ„YÉ…XˇZΈWшUÙŒXßZâ[è’_é–bâ^Õ‰WÈ„S¼P­xN£sKœqO”kMŠbH‚ZA{R<{RoPkN8XA;\E?^GA[G@[G@ZG@ZG@ZG@ZG@YH@ZG@]F>]D=\C<[B;[B;[B;\C<]D=_F?_F?^E>^E>\C<[B;ZA:XA;U=;S>=R=bG>cH?cH?cH?bG>`E<_D;_D;`Ek9:j76u=>ŠEH˜;E”3>~.7k-2\/2T15N15J/4N5;J5*,=)+;')9%'8$&8$&8$&9%'#+#+#*#*%*%*%(%(%%%%&%'&'$(%*%+&/)/)/)/)/)/)/)/)0*0*0*0*0*0*0*0*/./././././././././././././././..-.-.-.-.-.-.-.-.-.-.--,-,,+,+,)+',&,&-'.*.*.+.+)*()'+&*&*%)%*$*".!.!.!.!.!.!.!.!.!.!.!.!.!.!.!.#-#-",",",!+!+!+ * * * * * * * *&&'' ( (!)!) ( ( (!)!)"*"*"*!+!+!+!+!+!+!+!+!+ *)(''()",!+!+!+ *)))'(()) * * ********* + +!,!,"-"-#.#.!0!0 / /.-,,-... /!0!0!.-+!,!,"-"-$.$.&.&.'/'/)0)0*1+11 323223 36!46!46!27"3;$4:#3;#3;#3:"09!/; /9!/8!17"17"17"17"17"17"17"16!06!07"18#29$3:%4;&5<%5;#1>#2>#2?%2A'4B(5B(3C)4?%0?%.?%.?%.?&,?&,?&,?&,A&/A&/E'/F(0H*2I+3K,2L-3M-2N.3N.3O/4Q.2R/3R/3R/3S/1S/1S/1T02T02U13U13U13X46X46X46Y57Z68]9;_;=b;>e;?f<@h;>j=@l@AoCBrEBsFAzKEyJ@xI?xJ={K=€QA„UEŠXA–_@¨mC¾zIÊJσE̓BÈ„CÆEÁŠI¿ŠH¾‡D½‡A¼†@¹‡B¹ˆF¸ˆJµƒH³‚H­~F©|C£xCŸxAœwCšvB™wG˜vF—uH–tG”qI’oG“mH‘nHkEkEŽlGŽlGŽlIŽlIlLlLŠgKŠgK‰eKˆdJ‡cK†bJ†bL…aKŠdM‰cL‰cL‰cLŠdMŒfOŽhQiRjSjSjSjSjSjSjSjS’hR”gR•hS•hS–iT–iT–iT–iT”gR”gR•hS—jU˜kVšmX›nYnZ›lZœkZl[Ÿo[¡q]¤q\¥s\§tY±{_³|^¸}_»~_¿~^À~^Â}^À~\ÂYÁ‚WÁ‚YÁ[Á]Á]€]€]Å„^Å„\Ç„ZȃYÉ…X͆XψZÓ‰X׊TÞWä’Zæ‘Zê“]ë–`â‘\ÔˆVǃRº}N«vL¢rJ›pN”kMŠbH‚ZA|T;}U<V@}X>|X@wXuZ=x]B|^B€`GbFƒaHƒaHzZEuVBrS?oPjM;gJ:cF8_C7^B6\A6[@7[@9\A:[B;\C9W>9W@:YB<\E?^GA]IB]IB\IB\IB\IB\IB[JB\IB^G?^E>\C<[B;ZA:[B;\C<\C<_F?_F?`G@_F?^E>\C<[B;YB=R=:S;;R:8R89R87S9:S98U8:U98W9;Y;;[=?\><[@9\A8\A8]B9_D;`E<`EaF=bGdI@dIBcGCdEBeCAeAAf>>m?AuCDt>>v<;‡KKª[`ÆXc¼HUš=E|59f47X46P16I06N4=K6=I6*,=)+;')9%'8$&8$&8$&9%'#+#+#*#*%*%*%(%($$%%&%'&'$(%*%*%.(.(.(.(.(.(.(.(0*0*0*0*0*0*0*0*0/0/0/0/0/0/0/0//././.0/0/0/0/0//-/-/-/-/-/-/-/-/-/-/-.,.,-+-+-)-)-'-'-'.*.*.+.+()()'+&*&*%)%*#)#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/#/$.$.#-#-",!+!+ * * * * * * * * *(())** + +*** + +!,!,!,!+!+!+!+!+!+!+!+!+ *)'''((",",!+!+ * * *)((()) * *!+******** + +!,!,"-"-#.#......---,,,-... --+!,"-"-"-$.#-&.&.'/'/)0)0*1+11 33 43 33 36!46!47"37"3;$4;$4;#3;#3:"0:"0g:?ixH>zJ>~M?‚QB†UFŠXA—a?©l@¿yFÊ‚GÏ„C̃?É…DƉHˆHÀ‰HÀ‡D½‡A½‡A¼‡Cº‰GºŠLµ„I³‚H­~F¦|B¡xBžw@›vBšvB™wG˜xG—vI•tG”qI“pH’oI‘nHmGmGmHmHmJmJlLlL‹hLŠgK‰eKˆdJ‡cK…aI…aK„`J‰eMˆdLˆdLˆdL‰eM‹gOiQŽjRkSkSkSkSkSkSkSjS’hR’hR“iS“iS–iT—jU—jU˜kV•fR•fR—hT˜iUškWœmYnZžo[n\žo] o^¡q]¥r_¦s^©u_«u[´|a¶}`ºa½€aÁ€`€`Ã~]À~[Â[Á‚YÁ[Á[Á]Á]Á]Á]ă]ă[ƃYȃY͆XЈXÔŠ[ØŒZÜTã‘Uç’Yç‘Xé“Zë”^àZÓ‡SÄ‚P·}M©vKŸrIšoM“jL‰aG‚ZA~T<W=‚ZA‚]B]C{\?wXhK;eH:^B6^B6]A6\@5[@7\A8]B;^C\C<[B;ZA:ZA:[B;[B;_F?`G@aHAaHA`G@]D=[B;YB>]?=[@9\A8\A8]B9_D;`E<`EdM?dM?dL@eJAdIBdE@eD?gA@kB@vHH}KJwA?u;9‰ML²bcÜgpÏS^£BI7:g56X65Q48K28N4=L5?J5>F5;D58A55@44B44F37F16F16E05F24G35I57J68M9:N:;P<;Q=:Q>:O<8N;7L87J65I54H43F23E12E13D02B.0A-/A,1@+0>*,=)+;')9%'8$&8$&8$&9%'#+#+#*#*%*%*%(%($$$$&%&%'$'$*%*%.(.(.(.(.(.(.(.(0*0*0*0*0*0*0*0*0/0/0/0/0/0/0/0//././.0/0/0/1 01 0/-/-/-/-/-/-/-/-/-/-/-.,.,-+-+-).*.(.(.(.*.*-*-*()()&*&*%)%)$)$)&.$0$0$0$0$0$0$0$0$0$0$0$0$0$0$0%/$.$.#-",!+!+ * * * * * * * * *(())** + +*** + +!,!,!,!+!+!+!+!+!+!+!+!+ *(''''(",",",!+!+ * *)(()) * *!+!+******** + +!,!,"-"-#.#.----....++,,---,,+!,"-#.#.#-#-&.&.'/'/)0)0*1+11 33 43 34!46!47"57"37"3;$4;$4<$4;#3;#1:"0j=@m@CpBDqCCsCArB>uF@uFzJ>N@ƒRC‡VGŒXB™a>¨k>¾yBËD΃@̃>ɆBÇŠG‰F¿ˆEÀ‡B¿†A¿†A¼‡Cº‰GºŠL¶…J±ƒH¬F¥{A¡xB›v?švB—vA™yH˜xG—vI•tG•rJ“pH’oI‘nH‘oI‘oI‘oJnInKmJlLlL‹hLŠgK‰eKˆdJ†bJ…aI„`J„`J‰eMˆdLˆdLˆdL‰eM‹gOiQŽjRkSkSkSkSkSkSkSkS‘hR’hR“iS“iS–iT—jU˜kV˜kV•fR–gS—hT™jV›lXžnZŸo[ p\žo]Ÿp^¡q]£s_¦s^©u_¬v^®v]¶}b¹~`¼bÀbÂaÃ_Ã~]Á\Â[Á‚YÁ[Á[Á]Á]Á]Á[ÂZÅ‚XÇ‚XË„XΆVÓ‰XØŒ[ÝZßTæ’Té“Xç‘Vê‘Yé”]àZЇRÃOµ}N¨uJžqJ™nL’iK‰aG‚Z@U<‚Y=…]C…`Cƒ`D^?yZ=uX8tW9vY9y\>}`@€aD‚cD…cG†dI‚_I|\GxWDuVBsTBqR@mM>gJ:_B4]A5]A6\@5\?7\A8^C<_D=W>7X?8Y@9[B;[D<[D<[D<[D<_KB_KB^LB^LB^LB^LB]LB^LB^G?^E>]D=[B;ZA:ZA:[B;[B;`G@`G@aHAaHA`G@^E>\C:U=9U<8T;7V=9U<8W;8W;8Y;9[=;]?=^A=[@9\A8\A8]B9_D;`E<`EgM@eN>fOAeN@fK@dI@cF@bC>fC?mFAzNKOKs@O3?M3>J3;G48C55C54B43F35G27F16F24F24H46I57J67N:;O;:P<;Q==R?;Q>:P=9R?;Q>:P=9N;7L87J65I54H43F23E12E13D02B.0A-/A,1@+0>*,=)+;')9%'8$&8$&8$&9%'!)!)")")%*%*&)&)'''')()(*'*'-(-(.(.(/)/)0*0*1+1+2 ,2 ,2 ,1+1+0*0*0*0/0/0/0/0/0/0/0/2!12!12!12!12!12!12!12!11/3/3/3/3/3/3/3/3/2.0,/+/+/+/+0*/+/)/).(.*-),),)()()'+'+'+'+',',%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-!+!+!+!+!+!+!+!+!+!+ * *))((**++,,--------- -)))(('''!+!+ * *))(())))))))) * *!+!+",",", + +**))(())))))))........,,,,,,,*,* +!,"-#.%/%/(0(0(0)1*1+2+2,22!43 43 33 3424240407 08!1:"2;#3;#1:"0; /8 .:$1:$1;%2;%2<&3<&3='4='49#09#08"/8"/9#0;%2<&3>&4@&3A%3A%1A%1A%1A%1A&/A&/A&/A&-A&-A&-A&+A&+A&+A&+E(-F'-G(.H)/J)0K+0L,1L,1Q.4R/3S/3T02T02U13W03W01W.2W.2X/3X/3Y04Y04Z15Z15\37[26[26[26\37^59`7;a8m?Bm?Bo>Ap@@sCAvFB{JE|LB~LC~LAN@ƒRCŒXJ’^Fšb=¬n=Ä}EІGÒ‡Cχ?ʇALjCÅŒIÁŠGÀ‡BÀ‡@‰DÁŠG½ŠI¹‰K°D­D©|C¥{A¢yCžyByE›zE˜xG–xF•vH“tF“rI“rI”qK”qK“qK’pJ‘oJnImJŽlIŽkKjJjNŒiM‰eK†bH…aIƒ_Gƒ_Iƒ_I‡eL‡eL‡eL‡eLˆfMŠhOŒjQkRmTmTŽlSŽlSkRkRŒjQiQgQgQ‘hR‘hR“iS“iS–iT–iT˜iU™jV›kWmYŸo[£p]¤q^£s_¡r`¢sa¤t`¥ua¨u`«wa®v_°v^¹}c¼bÀ€dÁ€bÀ~^À~\€^Ä‚_Á€ZÁ€XÁ[Á[Áƒ^Áƒ^„]Ã]Å„\Ç„ZÈ„W̃VчVÙ‹Zß^ã’]ê˜\í™Yî˜[í—\é“ZâV؈S·S¾~N²|M¦uJœpI•mJhIŠcF†^D‡^B†]?„]@…aAˆeGˆgF„eF€b@|_?|_=~_@‚dB‡fG‡fE„aC]A}[B{[D{[FzZExWDsT@pQ?lO?fI;dG9aC8]A5\@5\@5\?7\A8X?8X?8X?8Y@9YB:\E=^G?_H@_KB_KB^LB]KA]KA\J@[J@[I?_H@`G@`G@_F?_F?_F?_F?_F?cJCcJCbIBbIBaHAaHAaHA_H@[D>YE>XD=XD=YB`C?`C=aD<`D9`D9_C8`D9aE:cGfJ?fJ?gK@gK@hLAhLAgM@gM>gMdM?cK?eJ?eJAeH@dF>hE?kF@nE?qD>sDN0:J17G14F23G34G35H46I57J68K79M9:N:;N:;Q=>Q=*,=)+;')9%'7#%6"$5!#!)"*")#*%*&+&)&)'''')()(*'*'-(-(.(.(/)/)0*0*1+1+2 ,2 ,2 ,1+1+0*0*0*0/0/0/0/0/0/0/0/2!12!12!12!12!12!12!12!13/3/3/3/3/3/3/3/3/2.1-/+/+/+0,0*/+/)/).(.*-),),))*)*(,(,(,(,(-(-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-%-!+!+!+!+!+!+!+!+!+!+ * *))((***++,,---------)))(('''!+ * *))((())))))))) * * *!+!+",", + +**))(())))))))........,,,,,,,*,* +!,"-#.%/%/(0(0(0)1*1+2+2,21 32322225 35 35 15 18!19"2;#3<$4<$2;#1&3A%3A%3A%1A%1A%1A&/A&/A&/A&-A&-A&-A&+A&+A&+A&+C&+F'-F'-G(.H)/J*/K+0L,1L,/Q.2R/3S/1S/1T02T02W01W01W.2W.2X/3X/3Y04Y04Z15Z15\37[26[26[26\37^59`7;b8l>Am?Ao??p@>sC?vGA|KD~ND€NCPB‚QB…TCŒYH”^Džd>¯q>Æ€EÔ‰H׊DÒˆ?͉BÉŠCÇŒHÊE‡AÁ†@‰DÀ‰F¼‰H¸†I°D«~C©|C£{@ yBxAœxD™zD•wE•wE•vH•vH•tK”sJ”qK”qK‘oI‘oInInImJŽlIŽkKŽkKŒiMŠgKˆdJ†bH„`Hƒ_Gƒ_Iƒ_I‡eL†dK†dK†dK‡eL‰gN‹iPŒjQŽlSŽlSŽlSkRkRŒjQŒjQ‹iPŽhQgQgQ‘hR’hR“iS•hS–iT™jV™jVœlXmY¡n[£p]¤q^¥r_¡r`¢s_¤t`§t_ªv`­w_°v^³w]º}a¿cÂcÁ€`À~\À~[€]ă]Á€ZÂYÁ[‚\Áƒ^„_„]„[Ä…ZÇ„YÉ…XχWÖŠYÞŽ[ä’`è•_è–Zé˜Yì˜Zë—[ç’[ÞVÕˆT̆S¼€N±}N¥vLœrJ–nK’kJŽgJŒcGaD‹`@ŠaC‹dCiIkHŠiH…gCa?~b=€b@ƒeAˆgFˆgD…bB‚_A€^C€^E~^G}]F{[FyYDuVBsTBlL=hK;eH:bE7_C7]A5]A6\A8[@7Y@9Y@9ZA:ZC;]F>_H@`IA`LC`LC^LB^LB]KA]KA[J@\J@`IAaHAaHA`G@`G@_F?_F?_F?bIBbIBbIBaHA`G@`G@`G@^G?ZC;XD;XD=WC:YB_D=aD@aD>aD@aD>bF;aE:aE:aE:aE:bF;dH=eI>fJ?fJ?gK@gK@hLAhLAiMBiMAiM?gMdM?dL@cK?cKAeJAdG?fH@iHAjH?mG>mE;nC:t@5†=7‚93p92`:1S:3N;5P::Q>:R?;R?;S@:S@:Q>:Q>:P=9O<8N:9M98L87K76I56G34E13C/1B.0A-/A,1A,1>*,>*,<(*;')9%'7#%6"$5!#"*"*")#*%*&+&)'*'''')()(*'*'-(-(.(.(/)/)0*0*1+1+2 ,2 ,2 ,1+1+0*0*0*0/0/0/0/0/0/0/0/2!12!12!12!12!12!12!12!140404040404040403/2.1-0,/+/+0,1+/+/)/).(.*-),),)*+*+)-)-)-)-).).%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+!+!+!+!+!+!+!+!+!+!+ * *))(()**++,,,,,,,,,,,)))((''' * * *))(('(((((((())) *!+!+!+", + +**))((''''''''........-------+,* +!,"-#.%/%/(0(0(0)1*1+2+2,2/11211225 36!46!27"39"2:#3<$4=%5=%3<$2="1&3>&3;#0;#0:"/9!.:"/;#0=%2>&3A%3C%1C%1C%1C%/C%/C%/C%-D&.D&.D',D',D',D'+D'+D'+F'-F'-H(-I).J*/K+0N+/N+/R.2R.0R.0S/1V/0V/0V/0W01W.2X.2Y/3Y/3Z04Z04[15[15]37\26\26\26]37_59a7;b8Ap@@p@>qA=uD?xG@~LCOD†RE‡SE‡TC‰VCZG“]A£iA´u@Ê„FØIÚEÕ‹@ÐŒCÌŽEÈGÄ‹D‡Aˆ?ÈBÁˆC¼†F¶„G¯~C«~C¨{B¢z?ŸxA›x@˜wB—xB“uC”vD–wI—xJ–vM”tK“qK’pJmGmGmHmHmJŽlIŽkKŽkKŠgK‰fJ‡cI„`Fƒ_G‚^F‚^H‚^H†dKƒcJƒcJƒcJ„dK†fMˆhO‰iPŒlS‹kR‹kRŠjQŠjQ‰iP‰iP‹iPgPŽhQŽhQiR‘hR“iS•hS•hSškWškWœlX mZ£n\¤o]¥p^¥r_¡r^¢s_¤t`§t_ªv`¯w`³w_µw^½}bÀcÂcÃaÁ]À~[€]Å„^Ä€[Â[Á[‚\Áƒ^„_À…]Ã…\Ä…ZɆY·YÔŠYÜŽ]å“aì–cî™bæ–[ç—Zè–\ç•]ã’[ÚWшUȆT¸~N­zM¡tJ›qK—oK–oN•lN”kM‘fFeCfF‘kG’nL’pKoLŒnHƒeA‚d>…dAˆhB‹iF‹iD‰eC…bBƒaEƒaFƒaHƒaH_H~^G|\GyZErS?pQ?kN>gJ:dG9bE7`D8^D7\A8ZB8ZB8[C9\F;^H=`J?bLAaMBaMB_MA_MA^L@^L@\L?]K?bKCbIBbIBaHAaHA`G@`G@`G@aHA`G@`G@`G@_F?^E>^E>]F>YB:WC8WC:WC8YB:YC8ZA:ZB8]D=^FhJ?hJ?hJ?iK@iK@jLAjLAkMBjNBiM?hN?hNAeN@eMAcMBcLDdKDbIBeJAfIAgI?iG=jF:hD8kA5m7-l5.a9/W;0Q=6P>:UR4:Q>:R?9R?9S@:S@:R?;Q>:Q>:O<8N:9M98M98L87J67I56F24D02B.0A-/A,1A,1=)+=)+<(*:&(9%'7#%6"$5!#"*#+#*#*&+','*'*'''')()(*'*'-(-(.(.(/)/)0*0*1+1+2 ,2 ,2 ,1+1+0*0*0*0/0/0/0/0/0/0/0/2!12!12!12!12!12!12!13!14040404040404040403/1-0,0,0,1-1+/+/)/).(.*-),),)+,+,*.*.*.*.*/*/%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+!+!+!+!+!+!+!+!+!+!+ * *))(()))*+++,,,,,,,,,)))((''' *)))('''''''''''()) * *!+!+!+ + +**))((''''''''........-------+,* +!,"-#.%/%/(0(0(0)1*1+2+2,2.00111225 36!47"38#4:#3;$4=%5>&6>&4=%3>#2="1;#0;#0<$1<$1=%2=%2>&3>&3<$1;#0:"/:"/:"/;#0<$1?%2A%1C%1C%1C%/C%/C%/C%-C%-D&.D',D',D',D'+D'+D'+D'+F'-F'-H(-I).J*/K+0N+/N+/Q-/R.0R.0S/1U./V/0V/0W/0X.2X.2Y/3Y/3Z04Z04[15[15]37\26\26\26]37_59a7;d7:f8:k;;o??p@>p@yI?€NCƒRD‰UG‹XG‹XEŒYDŽ[F”_@§nC¹zDΉHÛ‘Jß‘GÚŽBÔDÐHÈŽEÅŒEÄŠAÉ@ĉCÁˆC»…E´‚E¯~C«~C¦|B¢z?žw@™v>—vA•v@’tB”vD–wI˜yK˜xO–vM”rL’pJmGmGmHŽlGŽlIŽlIŽkKŽkK‰fJ‡dH…aG„`F‚^F‚^F‚^H^H…cJ‚bI‚bI‚bIƒcJ…eL‡gNˆhO‹kR‹kR‹kRŠjQŠjQ‰iP‰iP‹iPiQŽhQŽhQiR‘hR’iS“iS–iT›lX›lXŸlY¡n[£n\¤o]¥p^¤q^¡r^¡s\¤t^¨v_­w_°x_´x`¸x]¾}aÀaÄ‚bÃ_Á\Á\Â\Å„^Ä€[Â\Â\‚\„_Ã…`Á†^Ã…\Ƈ\ˈ[Ò‹]Û^ä”aê—cñšeñœeå–[ä˜\æ—^å–^ß’\ØŒZΈWŇX°zL§vKrH—pI—oK˜rN™pP›pP•hG–jG–kI–nJ—qM”rL”rM’rKˆjD‡jBˆhB‹kDŽlGŽlFŒhD‰eA†cC…dE„bF„bFbF€aE_F~^GyZEwXCrVAnR=jM;gJ8cH7bF8_D9\D:]E;]E;^H=`J?bLAdNCcODbNCaOC`NB`NB_MA^NA_MAdMEeLEdKDcJCbIBaHAaHA`G@_F?_F?_F?^E>^E>]D=]D=\E=WA6VB7VB7WC8ZD9ZD9\D:\D:_G=aI?fKBiNEjMEiLDfIAdH=hJ?gI>fH=fH=gI>hJ?iK@jLAjLAjLAjLAkMBkMBlNClNCmODjN@jN@iOBhMBfNDdNCdMEdMEdKDdKDfKDgJBfH>fF;eC9gA6i>7f>6_A9ZA:TA;S?>U;>X9?Y3>X2?T3>Q3=P5:Q>:R?9R?9S@:S@:S@&6>&4=%3>#2="1;#0;#0<$1<$1=%2=%2>&3>&3=%2<$1;#0:"/:"/:"/;#0>$1C%1D$/D$/D$/D$/D%-D%-D%-F'-F'-F'-F',F',F',F(*F(*G',G',H(-I).L)-M*.N+/N+/Q-/Q-/S,-T-.T-.U./V..W/0X.2X.2Y/3Y/3Z04Z04[15[15]37\26\26\26]37_59a7;d7:f88k;7o?;pA;rA|J?€O@„SBŠWDŒYDŽZE[E’^H–aAªqD¼~EÒ‹IÞ”Ká“HÜBÕCÑ‘GÊŽFÇŒFÆŠBÆŠBÆ‹EÊE»…E´‚E®€D«~C¦|B¡z?œw@™v>–u@•v@‘sA‘uC”xI—{L™yP—wN”tM’rKnHnHnImHmJŽlIŽkKŽkKˆeI‡dH…aGƒ_E‚^F‚^Fƒ_I‚_I…cJ‚bI‚bI‚bIƒcJ…eL‡gNˆhOŒlSŒlS‹kR‹kRŠjQŠjQ‰iP‹iPŽjRŽjRŽjRjS“jT“jT”jT—jUœmYnZ mZ¡n[£n\¤o]§o^¥p^ r[¡s\¤t^¨v_­w_²x`¶xa¹y^¿~bÂbÆbÆ`€]Á\ă]Æ…_Å\Â\Ã^Ã_Ã…`Á…`Á†^Ć]ȉ^΋^×_à”bè—bî™có™dð›dã–^á™_ã˜aá•aÚ‘^Ó‹[ȆVÀƒV¨sG qG˜nD•nG˜pLšrOrPrP˜lIšnI›pMšsL™sN•tK•sM”tKoHŽnEŒlEŽnE‘oI‘pGmGjD†dA†cC„cDƒbC‚`D_C`D`D~`F|^Fz[FvWBpT?kO:hK9eJ9aG:_G;_G;_G;`J=bL?eOBfPCdQCdQCcQCbPBbPBaOA`PA`NBgPHgNGfMFeLEdKDbIBbIBaHA_F?_F?^E>^E>]D=]D=\C<[D_B>[B>X@@VY6=W1:R?;R?9R?9S@:TA;TA:TA;TA=S@&3>&3>&3=%2;#0:"/9!.:"/;#0=#.C%/D$/D$/D$/D%-D%-D%-D%-F'-F'-F',F',F',F',F(*F(*G',G',H(-I).L)-M*.N+/N,-P,.Q-/S,-S,-T-.U./V..V..X.2X.2Y/3Y/3Z04Z04[15[15]37\26\26\26]37_59a7;d7:e85k<6o@:qB:sB;uE;zH=}L>€O>„T@‰VA‹YBŽZD\D•aIšeE¬rD½DÓŒJà”Iá”FÜBÕCÑ‘GÉEÇDÈŒDÉEÈGÆH¾ˆH·…H°‚F«E¨~D¢{@xA—w>•v@”v@tB’vD”xI–zK˜xO—wN–vO•uN“qK“qK’pK‘oJnKŽlIŽkKjJˆeI‡dH…aG„`Fƒ_G„`H„`J„aK†dKƒcJƒcJƒcJ„dK†fMˆhO‰iPmTmTmTŒlS‹kR‹kR‹kRŠjQmTlTlT‘mU’lU•lV–lV–lVžo[žo[¡n[¢o\¤o]¤o]§o^¥p^ r[¡s\¤t]©u_®x`³ya¸za¼z`À}bÃaÇ‚cÆ`€]€]ă]Æ…_Å\ă]Ä‚_Ã…`Ã…`‡_‡_ć[ËŒ`ÑŽaÚ’bã•dê—cî—að•^ì•_à•^Ü—`Ü•_Ù’^ÔŒ\É…V¿S¶}P£pEœoF˜nF˜qJ›sOžvR uSŸtQžrM tO¡wQžwP›uN—tL–uL•uL”tK’rIpG‘qH”sJ”sJ“pHmE‰gB‡eB…dAƒbA`?`A`A`CbFaG}_Ez\DtXBpT>lP:iN;cIbL?dNAgQDhREfSEfSEdRDdRDcQCcQCaQBbPBiRJiPIhOHgNGeLEdKDbIBbIB_F?_F?^E>^E>]D=]D=]D=[E:WA6VC5WD6YF8]G:_IdL@fNBjODlQFmQFmQFkODjNCmODlNClNCkMBlNCmODoQFpRGmODmODnPEnPEoQFoQFpRGpRGlPDlPDkPEjOFhOHgNGgNIgNIeLGhLHiLHjKFkJCkI@kF>jE?Z;9Z<W=>V[6>[6>X2=T3TA=TA=S@=P<;P<;O;:P<=N:;K79H46E13C/1B-2B-2>*,>*,=)+=)+<(*<(*;');')$,$,$+%,',(-(+),'''')()(*'*'-(-(.(.(/)/)0*0*1+1+2 ,2 ,2 ,1+1+0*0*0*0/0/0/0/0/0/0/0/2!12!12!12!12!12!12!13!16!27 27 27 27 27 27 27 261504/3.2-2-3.3-1+/)/).(.*-),),))*)*(,(,(,(,(-(-&*&*&*&*&*&*&*&*&*&*&*&*&*&*&*%+#+!+!+!+!+!+!+!+!+!+ * *))(()**++,,,,,,,,,,*+))(('''(((''&&%$$$$$$$$''(())) * + +**))(())))))))........ / / / / / / / -,* +!,"-#.%/%/(0(0(0)1*1+2+2,21 32322225 35 35 15 18!19"2;#3<$4<$2;#1$/>$/?%0?%0@&1@&1@&1?%0=#.<"-;!,;!,<"-=!-C%/D$/D$/D$/D%-D%-D%+D%+G(.G(.G(-G(-G)+G)+G)+G)+G',G',J'+K(,L)-M*.O+-O+-R+.R+,S,-S,-U--U--U--V..X.2X.2Y/3Y/3Z04Z04[15[15]37\26\26\26]37_59a7;d7:e85k<6p?:rA:sC9vF:{J<~M>‚O>„Q>‡T?‰W@ŒX@‘^C—dIžiG¬rB½BÓHà”Ià“EÛ?ÔAÒDÉDÇDÉEËGËJÉK‹K»‡K²„H¬‚F©E£|AxA˜x?–wA”v@’vD’vD“wH”xI•xN•xN˜xQ˜xQ—uO–tN•sN“qL‘oLmJjJŒiIˆeI‡dH†bH…aG…aI…aI†bL…bL‡eL„dK„dK„dK…eL‡gN‰iPŠjQoVŽnUŽnUmTmTŒlSŒlSŒlS‘oV‘oV’nV“oW”nW—nX˜nX˜nXŸp\Ÿp\¢o\¢o\¤o]¦n]§n]¥p^ r[¡s\¤t]ªv`°xaµyaºza½{aÁ~cÅ€aÇ‚cÇ‚aÃ^Â[Ã]dž`Æ‚_Ä‚_Ä‚_Ã…`Ã…`‡_‡_ň\ÎcÔ’bÝ•cå˜dê—cí“^íYæYÙYÕ’]Õ\Ï‹ZÉ…V½}O³vJ©sG¡pGœqGšsJœvO¡yU£{W£xU¢vS¥yT¨|U©W¥~UŸzPšwM˜wL™xM˜yM–wK“tH“tH–uJ—tJ—rH“pHkF‹iDˆfA†dAƒb?‚a@‚aB€aD‚cF‚cG€bH}_Ey[CuW?oS;kP;dJ;bJ>bJ>cK?dNAfPChREjTGgTFgTFeSEeSEdRDdRDbRCcQCkTLkRKjQJhOHfMFdKDcJCbIB`G@`G@_F?_F?^E>^E>]D=\F;WA6VC5XE7[H:_IBYV7=P7=L7UBXE>VC?UB>TA=S@=Q=O;*,>*,>*,=)+$,$,%,%,&-(-),),''''(()(*'*'+(-(-(-(.).)/*/*0 +1+2 ,2 ,2 ,1+1+0*0*0*0 -0 -0/0 -0/0 -0/0 -2!12"/2!12"/2!12"/2!13!/6!26!07 26!07 26!07 26!07 25 /4/2,2-2,3.3-1+/)/+.*.*-),),+()(+'+'+',',',',&+%*&+%*&+%*&+%*&+%*&+%*&+%*&+%+#+!+!-!+!-!+!-!+!- + ,*+)**))**++,,,,,,,,,,+)+(*')'*()'(&'%$$$$$$$$'''(())* + +**))(())))))))........ / / / / / / / -,* +!,"-#.%/%/(0(0(0)1)1*2+2+22!43 43 33 3224240407 08!19"2;#3;#1:"09!/:.=#0=#0>$1>$1?%2?%0@&1@&1@&1?%0>$/<"-< ,;!,=!-=!-C%/D$/D$/D$/D%-D%-D%-D%+G(.G(.G(-H(-H(-H(+H(+H(+G',G',J'+K(,L)-M*.O+/O+-R+.R+.R+.S,/T,-U-.U-.V./X.2X.2Y/3Y/3Z04Z04[15[15]37\26\26\26]37_59a7;d7:e85k;7o@:rB8tD8wF8{J;N=‚M;…Q<‡S=‹U=W=“]AœeG£lE°q<Á}>Ô‹Fß“Gà“CÚŽ@ÓŽAÑEÉDÇDÉDÌGÍ“JË’KÆŒL½ŠK²…J­…J¨F¢~DzB™xB–wA•wC•wE“wE“wG“wH”wK•xN™yP™yP™yP˜xO—uO“sL‘oJŽnHkH‹jI‰fH‡fG‡dH…cG…aG…cH‡cK‡eL…eL„fL…eL…eL†fMˆhOŠjQ‹kRpWoVoVŽnUŽnUmTmTmT’pW“oW“oW”pX•oX˜oY˜oY™oYžq\Ÿp\¡q]£p]£p]¤o]¦n]¤o]¡q]¢r^¦s^¬u`°x_¶z`¹|_½|^Á~aÃaŃaŃ`Â\‚\Ä…\Ɔ`Ã`Ã`Ä„aÄ„`ĆaÅ…_Ƈ^LJ[ÓcÙ“bß•då˜dé–bé’]çXà‹UÔŒZÏ]ÍŠ]ɆY¿SµvK¨oD kA¢sIŸtJ vN¢{R¦V©W¨}S¤yO«€V®ƒY®„\«W¤}TŸzPœyOœ{P›zO—xL•vJ”uI—vK—vK—tJ”sH‘oIŽnH‹iD‡gA„c@ƒb?ƒbAƒbC„cD‚cFbF`D|\CxX?sU;pQeK>fL?fOAhQCiSEkUGhUFfUEfUEeTDeTDdSCcSCdRDjVKkUJiSHhRGgOEeMCcKAcJC`G@`G@`G@_F?^G?]F>]F>]F>XB7WD6[E8^H;aK>cM@fNBgOCiQEhPDhPDhPDkPElQFmRGmRGoSEnRDnRDmQCnRDpSErUGsVHoRDoRDoRDrRErRGsSHsSHrTInRGlQFlQHlQHkPIjOHjNJjNJiLHkLGnMHpMGrMEsLErLCnKEgKJ`JL_FJ]CF^?D^>Ca8VC=VC=WD>VE=XE>WFTA=S?>R>=Q==P<=M9:I56F23D01C/1B.0@,.@,.@,.@,.?+-?+-?+-?+-%.%.%-%-%-&-&+&+&'&'&''''%'%'%(%+(+(+(+(+(+(+(-(.)/*0*1+1+2 ,2 ,2 ,1+1+1-1+1-1+1-1+3!/3!-3!/3!-3!/3!-3!/3!-3!/3!-5 /3!-5 /3!-5 /3!-4.2 ,4.1+3-0*2,2,3-2,0./--+,*+**+),)-)-(,'.&-&-%,$,"*$,"*$,"*$,"*&.$,%-#+$,"*#+#+",", . , . ,.,!0--)*(**((((((((,,++**)),*,*,*,*)(*(*''$%%%$#"!!!"#$&'()********(((((((( / / / / / / / /.-,,-.!0"/%2&0&0&0&0&0&0&0'1'1(2(2) 3) 3, 4, 4.2021 21 22!33 34"24"26!06!07"18!19#09#0:$1;#1;#1;#1<$2<$2=%3=%2@&3@&3A%3A%3@$0@$0A#-?$-@",@",B$0D&2F(2H*4I)4H)1H'0G&/J)0J)0J)0L)/L)/L)/L)/L)/M*0L)/M(/L'.M(/N)0R*2S,1T+1T+1U,2U,2W,3W,3X-4X-4Y/3Z04Z04[15[15\26\26\26]37]37]37]37_59a7;d:>e;=f:;j<“W?–Z>œaA¤hF­nB»p7Ë|9׉?ÛŽ@ÜBÛ’EÒŽEȈ@ËŒEÈŒDÆ@ÇŽAÈBÅ‹B¿„B¶€B«E¥‚H¢E }Eœ|Cœ{E›|Fš|H—yG—yG–zJ–zK—{L—zN˜{O˜{O—zN–yM–wK’uI‘qHŒoEmF‰kE‹jGˆjF‰hG†gH‡eI„eH…cGƒdG…gKƒhK…gK†hL‡iM‰kO‹mQŒnRqU‘rV”rW•sX•sX•sX”rW”pV“oW”nW”nW•oX˜oY™pZšq[œr\œr\žq\žq\Ÿp\žo[žo[Ÿo[¡n]¢l`¥m`¨o^«s\°w\µ}\»\¾‚^Á‚_À^Á]À€\‚\Ä…\Ƈ\lj`¿ƒaÂ…fƇfLJddž`̇`ÓŠaØŽaÚ_Þ`ä”cç•cç”bâ]ÝŠX׆W͆\É…^Â\¹yS°rM¨nH¦pJ¦uM¤uK£vL£xM¥|N§Nª€N¬ƒO­ƒQ®ƒV¬ƒWª€V¨S¤}R¡|P {O{N›zM›zMš{M˜yK—xJ•vH‘uFsGŽqIŽqIpJŒnH‰kE†hD†eB„cB‰hG‡fG„cD„bFƒaF]ByU;sQ8pL\H?XB7[E:_G=bLAfPEiSHjTIkUJiSHgSHgSHgSHgSHfRGfRGfSEfSBhS@hS@iTAiTCjSCmSDmSDnRFoSGoSGpRGqSIqSItSJrTJoTKlTJkSGjRFlQHmRIoSHoSHlPEmQEnPEpPEoOBoMAmK?kK@hKGfJGbHGaED_CB]??[==Z<TA=S@:Q>:R?;O;:L87H43F21E10E10E10?--?-->,,=++<**;)):((:((#.#.%-%-%-%-&+&+&'&'&'&''%'%'%'%*(*(*(*(*(*(+(+(.)/*0*0*1+1+2 ,2 ,1+1+1+1+1+1+1+1+3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-2 ,2 ,2 ,1+1+0*0*0*3/2.0./--+,*+,*+)-)-(.(.&-&-&-$,$,",",",",",",",$.#-#-",",!+!+!+".". . . . ...0/-+****((((((((,++**)))++++++++))***('$&$$#"!!!""#$&'((********(((((((( / / / / / / / / /.--. /!0"/&2&0&0&0&0&0&0&0'1'1'1(2(2) 3) 3, 4- 2.2011 21 22!33!14"26!06!07"17"19#09#0:$1:$1;#3;#3<$4<$4=%3?$3@&3@&3A%3A%3C%1B$0B$.A#-A#-@",B$0C%1E'1F(2H(3H(3G&/G&/J)0J)0L)0L)0M(/M(/M(/M(/M*0L)/M(/L'.M(/N)0R*2S+3T+3T+3U,4U,4W,5W,5X-6X-4Y.5Y/3Y/3Z04Z04[15[15[15]37]37]37]37_59a7;d:>e;?f9nAšZ>Ÿ`=¦hC±m>¿o2Ñ}7ÞŒBÞ‘CÜBÙ’DÒŽGɉBÊ‹FÆŒCÅŒ?ÅŽ>ÇŽAÄŠ@¿„@¶€@ª‚G£ƒJ €Gž~Eœ{Eœ{E›|F›{H˜zH˜zH—{K—{K˜|M˜|M™}N™}N™}N—{L–zK“wHsGŽqEŒoG‹nF‰kE‰kEˆjH‡iG†gH…fG„eFƒfF†hL„iLƒhK„iL‡iM‰kO‹mQŒnRqUqU”rW•sX•sX•sX•qW”pV–pY–pY–pY–pY™pZšq[›r\›r\›q[›q[p[žq\žq\žq\Ÿp\ o^¤kb¦la©n^¬r\°wZ´|Yº€Z¼‚\¿ƒ^¾‚]À‚]À‚]Áƒ\Ã…\Ƈ\ƈ_‡eÈhƇfƆbÈ„]Í…]Ö‰_ÜŽ`à`â`ä’`ä’`â`Ý\؇XÒ…YÉ„]Ã^½}ZµvS®rP©qN¨tO§wO¤wM¤yL¦|L¨~L«‚N­„L°…N°‡Q±‰X°‡Y¯†Z­„X©ƒV§T¤R£~R ~QŸ~Qž}Pœ}Oš{M–zK•yJ“xK‘tJ‘tLrLŽpJ‹mG‡iC†eB„c@ŠgGˆeE†cE†cE†cG‚_C}X=xR;sN_G=]F>ZF=ZF=ZH>ZI?\J@^H=`H>cKAeMCfPEgQFgQFgQFgSHgSHfTHfTHgUIgUIfVIfVGgVDgVBgVBgVBhUDhUDjUDlUEnTGnTGpTIpTIrTJrTJuTMsUMpULmUKkSGjRFlQFlQFnRFoSGmQCnRDpSEpSEqQBoO@nN?kN@lNFjMGgKGeIEbFB`D@\C?[B>X@;TA;UBXJ=VI9TF9WD>VC?UB>TA=S@:Q>:Q>:O<8M:6J73H51F3/E2.E2.@.,@..?-->,,=++<**;));))#.#.%-%-%-%-&+&+&'&'&'&''%'%'%'%*(*(*(*(*(*(+(+(.).)/)0*1+1+1+2 ,1+1+1+1+1+1+1+1+3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-2 ,2 ,2 ,1+1+0*0*0*1/0.0./--+,*+,*+)-(,'.'.&-%,%,$,"* * * * * * * *#-#-#-",",!+!+ *".". . . . .../.,+)))*********+++**))(++++++++()**)('$%"""!!  "#$$&&'(********)))))))) / / / / / / / /!0!0 / / /!0#2$1&2&0&0&0&0&0&0&0&0'1'1(2(2) 3) 3+3,1.2011 21 22!33!13!16!06!07"17"19#09#0:$1:$1;#3="3>#2>#2?$3@$3A%3A%3D&2C%1D$1C#0C#.B"-B"-B"-A#-B$.E%0F&1F'/F'/G&/F%.L)0L)0L)/L)/M(/M(/M)-M)-N)0M(/M(/L'.M(/N)0R*2S+3T+3T+3V+4V+4W,5W,5X-6X-4X-4X.2X.2Y/3Y/3Z04Z04Z04]37]37]37]37_59a7;d:>e;?f9nA›\=¡a=¨hB²n=Àp3Õ9ã‘Gã”GÝ‘C×BÏŒEȉBÇ‹EÄŠAË@ÁŒ>ÄŒAŠ@½„?´@©‚G£ƒJ €Gž~Eœ{Eœ{E›|F›|Fš|Hš|H™}K™}Kš~Nš~N›O›Pš~O™}N—{L•yJ’uIsGŽqIpHŠlFŠlF‰kIˆjH‡hI†gH…fG„gG‡iM…jM„iL„iL‡iM‰kO‹mQŒnRpTqU”rW•sX–tY–tY–rX•qW˜r[˜r[˜r[™s\›r\œs]œs]œs]špZšpZp[žq\Ÿr]Ÿr]¡r^¢q`¤k`¦la§n]ªr[¯vY³{X¹Z»\¾‚^¾‚^À^À^‚^Ä„^Ƈ^ƈaÇ‹gÆŠhƇdÅ„^ȃZφ]×`ß‘cá“câ’aá‘`Ý^Ù‹[ÔˆWÑ„VË‚UÄX¼{UµuQ¯sN­sN¬vP¬xQªzR§zP§|O©O«ƒP®…Q±ˆP³ŠR´‹S·\¶Ž]´‹]²‰[®ˆY¬†W©…U©„W¥ƒU£ƒT¢TŸ€R~Pš~O™}N˜{O˜xO—wN–vO“sLpJŒlFˆgD†eB‹hHŠgG‰fH‰fHˆeI…bF€]A|X@wR@uQCtPBpPAnQAkQ@hQ?eS?jXDhWCfWBfWBfUAgVBhWCiXDfWDgXEhWGhWGjTFhRDgOCfNBaI?`H>^H=[G<[G>[I?[J@]KAdNCeMAgOChPDgQDfPCeOBeOBfSEgTFfTFgUGhVHiWIiYJiYIiXFiXDjXDjXDjWFjWFlWFmVFoUHoUHqUJqUJrVKrVKtVNsVNqVMnVLlTHkSGlQFlQFlREmSFoSEpTFqTFrUGqTDpSCqQBnQCoQGnQIlOIjMGgLEeJCbIDaHC^E@]D@[C?YA=T?;TA;UBZI?YK>XJ=VH;UGVC=UB8O<6O<6N;5L93J71H5/F3-D1-C/.B./A-.@,-?+,>*+=)*=)*#.#.%-%-%-%-&+&+&'&'&'&''%'%'%'%*(*(*(*(*(*(+(+(-(.)/)0*0*1+1+1+1+1+1+1+1+1+1+1+3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-2 ,2 ,2 ,1+1+0*0*0*1/0.0./--++*+,*+(,(,'.&-&-%,%,#+ * * * * * * * *#-",",",!+ * * *".". . . . .../.,*))))********+***)(((********(()))(&##!!!!   ##$%%&''********)))))))) / / / / / / / /"1"1!0!0"1#2$3%2&2&0&0&0&0&0&0&0&0&0&0'1(2(2(2+3,1-1/0011 21 22 03!16!06!07"17"19#09#0:$1;#1="3="3?#2?#2@$3@$2A%3C$3D&2E%2E%2D$/D#.D#.D#.C"-B"-B$.D$/D$/E&.E&.F%.F%,L)0L)0L)/L)/M(/M(/M)-M)-N)0M(/M(/L'.M(/N)0R*2S+3T+3T+3V+4V+4W,5W,5X-6X-4W-1W-1W-1X.2X.2Y/3Y/3Z04]37]37]37]37_59a7;d:>e;?f9é•Lå–IÜBÕAÎŒBȉBĉCÁ‰?¾‰=¾‹<¿‹?¾Š?º…?²‚@©‚G£ƒJ €Gž~Eœ{Eœ{E›|F›|Fœ~Jœ~JšJ›Mœ€Nœ€Nœ€PQœ€Q›P™}N—{L”wK‘tHrJŽqIŒnHŒnH‹mKŠlJ‰jKˆiJ‡hI…hH†kN†kN…jM…jMˆjN‰kO‹mQŒnRpTqU”rW–tY–tY—uZ—sY—sY™s\št]›u^œv_žu_t^t^œs]™oYšpZp[žq\Ÿr]¡t_£t`¤sb¤k`¦l`§n[ªr[®uX²zY¸}[º€[¾‚`¾‚`À`Á‚aÃ`Ä„`Ɔ`Ɔ`É‹fljdÅ…_Å„ZÊ…[ÓŠ_Ü’cã—fà”cÞ’`Û]׋ZІU̓TÉQÆS¾{Q¶wN¯qJ¬qI¯uO°{S®}T­~T©~SªS¬„Q¯‡S²‹T¶U¸U¹Xº’^¹‘^¸]¶Ž[±‹Z¯‰X­‰W¬ˆX¨†V¦„V¤ƒV¡€S RžQ~P~P~R}T›{R˜xQ”tMoI‹kE‰hE‹iFŒiIŒiKŒiK‹hLˆeI„aE]EzUCxTFtSDqQBnQAkQ@iR@fT@lZFjYEiZEhYDiXDhWCiXDiXDiXFiZGjYIkXIlVHjTFiQEhPDbJ@bJ@aI?_I>]I@]KA^LB^L@fPEhPDiQEjRFiSFhREgQDfPCgTFgTFgUGiWIjXJkYKk[Ll\Ll[Il[GlZFlZFlYHkXGmXGmXGnWIpVIrVKrVKsWLsWLsVNtWOpXNoWMmUIkSGlQFlQFmSFmSFqUGqUGsVHtWItWGsVFtTEqTFoSGoSHnRGlPEjOFiNEhMDeMCbIBaHA^GA\E?XD=VB;T?:T?:V>=R=:S>;T?:TA;UBYH>ZI?YK>XJ=WIVC=UB"1>"1A"2A"2B#2B#2C$3D$1F&3F$2F%0F%0G#/F",F",D#,C#.C#.C$,D%-E$-F%.G&-G&-L)0L)/M(/M(/M)-M)-O(-O(-N*.M)-M)-L(,O(-P).S*0T+1T+1T+1V+2V+2Y,3Y,3Z-4Z-4Y,1Y,1Y,1Z-2Z-2[.3[.3\/4_27_27_27_27a49c6;f9>g:?f9Ìx8à‰Bê–Må–IÚŽBÓ‹?ÌŠ@Ĉ@ÁˆA½‡=¹ˆ;¹ˆ;ºŠ>¹‰?¶…@°ƒB§ƒE£ƒH €Gž~Eœ|Cœ|C›|E›|EIIœJœL‚M‚Mž‚Pž‚Pœ‚Q›€Q™~O—|M”yL‘vIsKŽrJqJŒpI‹nLŠmK‰lLˆkK‡jJ‡jJˆmP‡lO†kN†kNˆjN‰kO‹mQŒnRpTqU”rW–tY—uZ˜v[˜tZ˜tZ›u^œv_w`žxaŸv`žu_t^œs]špZšpZp[Ÿr] s^¡t_£t`¥tc¤oa¦na§p\ªt\®wY²zY¸}[º]½€a½€aÁ‚cÂdÅ‚eÆ„dÆ„aÆ…_Lj_Æ…[Å…YɆYÏ‹\Ø’aß—gäšiÛ‘`Ù^Õ‹ZχWÊ„SÆQÂ~OÀ}P¸xL³tI¯qH­tI°yP³€U±‚V®‚U¬T­…T¯‡T±ŒW´X¹’Y¼•Z½–[¼•^»“_·’]µ[³ŽZ±ŒX®ŠV®ŠX©‡W¨†V¥ƒU¢‚S RŸ~Q R R£‚U¢V T|S™xO”rLnHŽlGkHŽlIlLlLŒiK‰fH†cG„`H{XEzVFvUDpSAnS@mT@kU@iWAm[El\El\El\ElZDkYCjXBiXDjYGkZHlYHlYHmWIlUGlREkQDfK@cK?bJ@aK@_K@^L@_MCaMBfPEiQEjRFlTHkUHkUHkUHjTGhUGiVHiWIjXJkYKm[Mm]Nm]Mn]Kn\Hn\Hm[GlYHlYHmXGmXGnWInWIqVKqVKrWLrWLrWNsXOpXNnXMlVIkUHkSGkSGnTGnTGpVGqWHsWItXJvYIuXHtWGsVFoSEoSEnRFnRFmQEkQDkPEjODdLBdLBaK@_I>]F>[DYIXE>XE>WD=VC"1@!1A"2A"1B#2C#2D$1D$1G%3G&1I%1H$0H$.G#-G#-F",F%0D$/D%-D%-E$-F%.H'.H'.L)/L)/M(/M(/M)-M)-O(-O(-N*.M)-M)-L(,O(-P).S*0T+1T+1T+1V+2V+2Y,3Y,3Z-4Z-4Z-2Z-2Z-2[.3[.3\/4\/4\/4_27_27_27_27a49c6;f9>g:=f:;i=Ó?ãŒEé•Lâ“HØŒ@ÏŠ=ɉ?†>À‡@º†=¶†:µ‡:µ‰>µ‰@³†B­„B§ƒG£ƒH €Gž~Eœ|Cœ|C›|E›|EIIœJœJ‚K‚KžƒNžƒNƒRœRšP—|M”yL’wJtLsKŽrKŽrKpNŒoM‹nNŠmM‰lL‰lL‰nQˆmP‡lO†kN‰kO‰kOŠlP‹mQŽoSqU”rW–tY˜v[™w\šv\™u[›u^œv_žxaŸyb wažu_œs]šq[œr\œr\Ÿr]Ÿr] s^¡t_£t`¤sb¦qc¨pa©r^«u]¯xZ²{\¶~]º_¼b¿c€făgƃfÆ„dÆ„bÈ„_È…ZÇ…UʆWΊYב`Ü–cà˜fà˜fÔŒZÒŠXχWÊ„SÅRÁO¿|O½}OµwH³vG²xJ³zMµQµ‚U³„V¯…U­…T¯‡T°‹V³ŽW·“Yº–Z¿™[Áš_¾—^½–]¹•[·’[µY³ŽY°W¯‹W®ŠXªˆX§…U¤‚T¢€R¡€S£T£‚U§…X¥„W¥ƒV¡€U|Q™xO•tK“qKŽlG‘oL’oO‘nNjLˆeG†cG„bG}ZGyXGuVDqTBoTAmWBmXClZDn^Gn^Gn^Gn^Gn\FlZDkYCjXBlZFkZHlYHnYHnWIlUGlREkQDhMBgLAfKBcKAbLAaMBbNEcODgQDiQEkSGmUInXKnXKnXKnXKkXJkXJkYKlZLm[Mn\Nm]Nn^Np]Lo]Io]In\HmZIlYHmXGmXGmVHmVHnVJnVJqVKoWKrWNpXNmWLlVKlVIkUHlTHmUIpVIqWJpVGqWHtXJuYKvYIvYIuXHuXHpUBpUBpUDpUDpUDpUDoUFoUFjPCgPBfOAcM?`J=^H;]G:\F;]F@[C?ZB@X@WD=VC»sAÅx@Û†EåŽGæ’IÝŽCÓ‰>Ή>LJ?¿…<½‡?·…>³„<°†<°ˆ@±‰C¯‡B¬…D¦„G£ƒJ €Gž~Eœ|Cœ|C›|C›|C€H€Hœ‚Iœ‚IƒJƒJ‚KžƒNœ‚Q›€Q™~O—|M”yL‘vIsKŽrJsLsLŽqOpNŒoO‹nNŠmMŠmMŠoR‰nQˆmP‡lO‰kO‰kOŠlP‹mQŽoSqU”rW—uZ˜v[™w\›w]šv\›u^œv_žxaŸyb wažu_›r\™pZžt^žt^ s^ s^ s^¡t_¢s_£s_§tc¨sa©u_­w]°x]³|]·~`»€b¼c¿d€hÄ‚hƃhȃdȃbȃ\Ë„V̆RЊVÖ\Ý–bߘdÜ–bØ’^̆SɆRÈ„SŃSÀS¿Q½}Q»}N´vE¶zH¹O¹„R¸„T´„T³…T°†T¯‡T®‰T±ŒWµY¹•[¼˜\¿›]Á_¿›_¾š^¼˜\º–\¸”Z¶‘ZµY³Z³[°ŒZ­‰W©…U¨„T¦„V©„W©‡Yª…X¨†X©„W¥ƒU¢€Sž{Q›xP™vPnI“qN”qQ’oOŒiK‡dF„bFƒaF}ZGyXGuVDqTBpUBnXCp[Fo]Go_Hp`Iq_Iq_Ir]HoZEmXClWBkYElZFnYFnYFnWGnTEmQElPDjNBhNAgLAdL@cMBbNCcODdPEjTGlUGmVHoXJoYKoYKoYKnXJn[Ln[Lm\Lm\Ln]Mn]Mm]Mm]Mp]Lp^Jo]Im[GlYHkXGlWFlWFkUGkUGlVIlVInVJmWJoWMnXMkUJiUJkUHkUHlVInXKqZLr[MpVGqWHsYJtZKv[Jv[JuZIuZGtXCuYDuYDuYDtYFuZGuZItZIoUDlUCkTDiRBgPBeN@bL>aK>`G@_FA]D@YBWD=VC7O<5N;4M:3M:3M:3M:4K63K65J54I43H32G21F10F10#.#.%-%-%-%-&+&+&'&'&'&''%'%'%'%*(*(*(*(*(*(+(+(,','-'.(.(/)/)0*1+1+1+1+1+1+1+1+3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-2 ,2 ,2 ,1+1+0*0*0*0//./..-*+)*),'+&+$*$,#+#+"* * *",",",",",",",",!+!+ * *))((".". . . . ...-,*('''((((((((())((''&&&&&&&&&&&''('& $ !#!"#$%%%&&%%%%$$******** + + + + + + + + / / / / / / / /"1!0 / /!0"1#2$1&2&0&0&0&0&0&0&0$.$.%/%/&0&0'1)1*/+/././/0/01/1/6!06!07"17"19#09#0:$1;#1@!0A!0B"1B"1D"0D"0E#1E$/J&2J&2J$/J$/I#.I#.J"+H#+J&0G&/F%.E$+F%,H'.L)0M*0M(/M)-O(-O(-O(-O(+O(+O(+P).O(-O(-N',P'-Q(.S*0T+1U*1U*1X+2X+2Y,3Y,3[,4[,2[.1\/2\/2]03]03^14^14^14_25_25_25_25a47c69f9œ\@¢`>ªe<´k>¾uBÊ{@ߊIæHã‘HÙ‹Aч>͉@Ƈ@½„=»†@´…?¯„?­…?®‡B®‰E­ˆD©†F¦ƒI£ƒJ Iž~Eœ{Eœ|C›|E›|E€H€H›Hœ‚Iœ‚IƒJƒJ‚Kœ‚Q›€Q™~O–{L”yL‘vIsKŽrJtMtMrPŽqOpPŒoO‹nNŠmMŠoRŠoRˆmP‡lO‰kO‰kOŠlP‹mQŽoSqU”rW—uZ™w\šx]›w]›w]št]œv_žxaŸyb wažu_šq[˜oYŸu_Ÿu_¡t_¡t_ s^ s^¡r^¡r^¦ud©vcªv`¬y^°z^´}_¸a¼€d»}d¿f€hÅ‚hÉ„gȃdɃaÊ‚ZΆTшQÖVÜ•_ášdߘdØ’^ÒŒXÅ‚NÄ‚NÄ‚PÄ‚RÁS¿Q¼~O»}N³uB¹}G¾…P¾‰U»‡Uµ†R³…S°‡S¯‡S¯ŠS±ŒUµ‘W¹•Y½™[Àœ^ž`ž`Á_¿›_½™]»—[¹•[·“Y·’[·”^´‘[°ŒX­‰U«‡U«‡U®ˆY®ŠZ¬†Uª†T«…T¨„T¦T¡Rž{QœyQ’oI”rM–tQ“pPŒiK†cEƒaE‚`EzZEwXFsVDpUBoVBpZEr]Hr`Jp`Ip`Ir`Jr`Jr]Hp[FnXCmWBmXEkYEnYFmXEoUFmSDmQEkOCjNBjNBhMBeMAeMCeODdPEdQCmVHnWIoXJpYKoYKoYKnXJmWIp]Np]No^Nn]Mn]Mn]Mm]Mn]Kp^Jo]In\Hm[GlYHjWFkVEkVEjTFkUGkUHkUHlVIjWImWLkWLhTIhTIjTGkUHlVIoYLr[Ms\NoUFpVGrXItZKv[Jv[JuZIuZGw[Ex\Dx\Fy]Gy]Gy^Iy^Iz_JsZDrYEqXDmVDkTBiR@fQ>eOAaI?`G@^E@[B;XA;XA9XA9VB9VB9UA8TB8TB8UC9UD:VE;VE;YF?YF?XE>WD=VC7O<5M:3L92M:3N;4O<6L74L76K65J54I43H32G21G21!,!,$,$,%-%-',',()()()())')')')')')')')')')'*'*'.).).(.(.(0*1+2 ,1+1+1+1+1+1+1+1+0*1+1+2 ,3!-4".4".5#/4".3!-2 ,1+1+2 ,3!-4".5#/5#/4".3!-2 ,1+0*0*-,+,*+*+)*)*'+'+%*$*$,!+!+ * * *!+!+ * *))((&&&&&&&& , ,,,,,,,***))(('(((((((())((''&&((((((((&&&&&&&$$###$%%%'''''''' + + + + + + + + + + + + + + + +!0"1"1#2#2$3$3$3#2#2#2#2#2#2#2#0#/#-#-$.$.%/%/%/",#-&0'1(2'1&0'/).*.,--.-..//-0.4.5 /5 /6!07!.8"/8"/9!/B#2C#2C#0D$1E#1F$2F%0F%0H$0H$.I#.I#.I$,I$,K#,I$,I&-G&-I&-J'.J'.K(.L'.L'.P(0P).P).P),Q(,Q(,Q(,Q)*P'+P'+P'+Q(,Q(,R)-S)-S)-X+0X+0X)/X)/X)/Z+1[,2\-3\.1]/1]/1^02^02_13_13_13`24`24`24`24b46d68g9;h:É|FЀCÝŠFÛ‡?Ô„=Ñ„>ΈBÊŠCÅ‹B¿‹B¹ˆC´‡C­…@©‚?§@¥‚B¦ƒC¥ƒF¡HŸ~Hž}Hœ{EšyDšyC™zDš{Dš}E›~Fš€Gœ‚Iœ‚Iœ‚I›H›€I™N–~N”|L‘yIwIwIŽuLvM‘xP‘xPvSuRŽtSsRŒrQŒrQŒqT‹pS‹pSŠoRŒnR‹mQ‹mQ‹mQŽoSqU”rW—uZ™w\šx]›w]›w]ŸybŸybžxaw`žu_žu_t^t^s]žt^ s^ s^¡t_¢u`£t`£t`§ve¨xd«yb®{`²|`´}_·~a¹}a½fÀ€gÁeÄfÇ‚cʃcÍ„aφ[ÓŠUÜ‘Wä™`äœbß–_ÖYωŬRÈ…QÆ„PŃQƒPÁQ‚RÃSÄQćPÈNŠQ‹S¿ŠT¼ŠU¹ŠVµŠU³ŠTµŽU·“Y¼˜\Áš_Ã_Äž`à`Ä¡a `Á_¿›]½™[»—[¹•Y¸”Z½™_¹”]¶‘\µ[µ\µ\µZ°‹W²ŠW¬‡Sª‚O§P§R¦T¤S }SœySšvR–tQ”qQoP‹jKƒaE|]AxYDuYDuYDtYDt[Es]Ft`HsaIvdLvdLweMvdLwcKv`Iv]Gr\Er]Hp^Hq\IoZGqWFpVEpTFoSEpTHkOCeK>bK=eMAgQDeRDdQClUGmVFoXHqZJp[Jp[Jp[Jp[Jq^Mq^Mp_Mp_Mp_Mp_Mo`Mp_MsaMs^Kq\IoZGlYHlYHmZImZIkXIkXIjWIjWIiVHhVHhTIhTIhTIhTIiVHiVHlVIlVImWImWIr[Kt]Mx^Oy_Py_Nx^Mx]Lw\IsWAvX>y[Cy]E{_G{_Iz`Iz`Iz`Ix_Iv]GsZFnXClVAjT?iRBiNCgLCaHA]E;ZA:WA6U?4U?4ZF=YEÎFÓƒDÖ†AÓƒ<Ï€;Ì=Ê…BȉDÊE¼ŠC·ˆD²†E¬ƒE§C¤€D¤€D¤‚E¤G Jž}Jœ{HšyF™xE™xC˜xE˜yC˜zD™|D˜~E™Fš€Gš€G™F—~F—€N•}M“{K‘yIxJwIvMvM’yQ’yQ‘wTvSuTŽtSsRŒrQŒqTŒqT‹pS‹pSŒnRŒnR‹mQ‹mQpTqU”rW—uZ™w\šx]›w]›w]žxažxaw`œv_žu_t^œs]œs]žt^žt^ s^¡t_¡t_¢u`£t`¤ua§ve¨xd«yb­{`°}`´`¶aº~b¾€gÁeÂeÆdÉ‚b̆bÒ‹aÔŒ\Þ‘Yã—[èœ`æ›aà•\ÖVψRÊ„PʇSȆRÇ…SÇ…SÇ…SȆTʈVÉŠUÈŠQÇ‹OÇŒRÅTÂŽUÀV¼UºV¶U·U»”Y¿™[Á›]Ã^Äž_Äž_Å¢báaßaÁ_Àœ^¾š\½™]¼˜\½™]º–\·“Y¸‘X¹’[¹’[·Y´VµŒV°‰R¬„Pª‚O«ƒR¨‚S¦€S£~RzRšwQ•sN“qNnM‰hI‚`D{\@xYDtYDtYDsZDr\Er^Fr`HsaIucKvdLvdLxdLxbKwaJw^Ht^Gr]Hp^Hq\IpYGqWFpVEpTFpTFoSGkOCgK?dJ=eMAfPCfPCfPBlUEmVFoXHqZJq\Kr]Lq\Kq\Kq^Mq^Mp_Mp_Mp_Mp_Mo`Mp_MsaMt_Lq\IoZGlYHlYHmZIn[JkXIjWHjWIhVHhVHgUGgUIgUIgUIhTIhUGiVHkUHlVIlVHmWIpYIr[Kv\Mw]Nx^Mx^Mx]Lw\IxZBy[A{]C}_E|`H|`H|`Hz`Gy_Hx^Gu\FsZDqXBmW@lVAkTBlREiNCdLB_G=\D:YA7X@6V@5[Dw[Cu[DtZCs[Cr\Dr^Eq`FraGtcIudJxdKxdKycKzbJz`Ix_Is]Hq\Gr\Gq[FrYErWDrUErUEpSElPBhL@fL?eN@eOAfPBeOAkTDlUEoXHqZJr]Ls^Mt_Nt_Nq^Mq^Mp_Mp_Mp_Mp_Mo`Mp_MsaMt_Lr]Jq\In[JmZImZIn[JiXHiXHiWIgWHgWHfVGfVIeUHfTHgUIgUGhVHiVHjWIlVHlVHlWFnYHpYIr[Kv\Kw]Lw]Lw\I|^F~_C~`DaEaG}bG|aF{`Ew]Dw]Dv\Et\DrZBqYApWApWCpVGnTGjODeJ?aF;\D8ZB6XB5[E:ZD9VB9T@7S?6S?6T@9T@9M:4N;5N;7M:4L95J71H51G4.J73K82K84L93M:6N;5O<8O<6P84O73N62M51L40K3/J2.J2. + +"*#+$,$,%*&+()()()())')')')')')')')')')'*'*'.).).(.(.(0*1+2 ,2 ,2 ,2 ,2 ,2 ,2 ,2 ,2 ,2 ,2 ,2 ,2 ,3!-3!-3!-3!-4".3!-2 ,1+1+2 ,3!-4".4".4".3!-2 ,1+0*/).)*+)*(*(*')&(%*%*"*"*",!+ +*** *)))('''%%%%%%%%++++++++)))((''&(((((((())((''&&(((((((('''''''%'%%&&'''(((((((( + + + + + + + + + + + + + + + + /!0!0"1"1#2#2#2"1"1"1"1"1"1"1"/#/#-#-$.$.%/%/%/$.$.%/&0&0&0'1(0*/+/-.././/00.1/3-4.4.5 /6 -7!.7!.8 -@$0@$0C%1C%/D&0D&0E'/F'/D%-E$+E$+E$+G$*G$*G$*G$*I&-I&-I&,J'-K&-L'.N',N',P),P),Q(,Q(,R(*R(*R(*R(*P()P()Q')R(*R(*S)+U(+U(+X*-X*-W),W),Y(,[*.\+/],/],/^..^.._//_//`00`00`00c33c33c33d44f66h88j::l<:l<8o@8rC9sE6tF6wJ5}O8„R;‰S9•Y=Ÿ^>©a9¶j9ÉxAÖ‚DׄBÈ{7Ây5¾w7½y:»}@»B¸‚B´‚C®€B©E¤{G xGœvGœvGœxFyG™wI˜vI–tG•sE”rD”rD”tE”tC–xF—yE–{F˜}F˜}F˜}F—|E–}G•~L“}L’|K‘{JzK‘{L’{Q’{Q“|S’{R’zVxTwUŽvTŽvTuSŽsVŽsVrUrUŽpTŽpToSoSqU‘rV•sX—uZ˜v[™w\šv\™u[›u^›u^št]št]œs]œs]œs]œs] v` v`¢u`£va£va¤wb¥vb¥vb¦we§xdªzc­~b±€b·‚c¹‚d½eÁ„găeÄ‚bɃ_ÑŠ`Ø’aášdéždñ¡dò¡bîžcè™`à“[ÙŽWÒ‰TψT̆S̆S͇TωUÓŒXÖYÙ’\Û”\Ö•UÕ•UÔ—XÓ—YÏ—ZÌ–ZÇ•ZÕZÄ—\˜\Ù]Ä›]Åœ^Åœ\Åœ\Ä\ßa a c aßaßaßaßaÁ›\Àš[¿—YÀ™X›ZÄ›[Á˜X¾•U½“W¹U´ŠP±ˆP±ˆT¯‡T­…T¨‚S¡|P›xP“qKŽlGŠiH†eD~_@y\>x\Dv^Fu]Er\Dq]Dr^Eq`FraGsbHtcIwcJycK|dL{cK{aJzbJs]Fq\Gr\GsZFsXEsXEsVFsVFpSEnQCkMBiMAgM@fOAfOAeOAjSClUEoXHr[Ks^Mu`OvaPvaPq^Mq^Mp_Mp_Mp_Mp_Mo`Mp_MsaMt_Ls^Kr]Jo\Kn[JmZIl[IiXHgWGgWHgWHfVGcVFcUHcUHeUHfTHfTFgUGiVHiVHkUGlVHjUDkVEnWGpYItZIu[Jv\Kx]H€bJbFcGcGcIaG|aF{`Ew[Cv\Cv\Eu[Dt\Ds[CsZDsZFtZKrXKnTGiOBeJ?bG<^F:]E9[E:ZD9XA9UA8T@7T@7UA:U@;N;7N:9N:9M98K76H43F21D0/G32H43I54K76L87N:9O;:Q<9N62N62M51L40K3/J2.I1-I1-* +"*"*#+$,%*%*()()()())')')')')')')')')')'*'*'.).).(.(.(0*1+2 ,3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-3!-2 ,2 ,2 ,2 ,4".3!-2 ,1+1+2 ,3!-4".3!-3!-2 ,1+0*/).(-()*(*(*')%(%(%*$)"*"*!, + +***)))('''&%%%%%%%%********)((''&&&(((((((())((''&&(((((((((((((((&(&&''((((((((((( + + + + + + + + + + + + + + + + / / /!0!0"1"1#2!0!0!0!0!0!0!0!.#/#-#-$.$.%/%/%/%/$.%/%/%/&0'1)1*/,0.//0/0011/1/3-3-3-4.5,6 -6 -8 ->$/>$-?$-@%.A&/A&-A&-D&.C&+D%+D%+D%*E%*E%*E%(G$(I&,J%,J%,K&-K'+L(,N',N',Q(,Q(,R(*R(*R(*R(*R()R()Q')Q')Q')R(*T'*U(+U(+U(+X*-W),X'+X'+Y(,Z)-\).]+.],/]--]--^..^.._//_//`00c33c33c33c33e55g77j::k;9m<7p@6rD7sE5rG4wJ5}O8‚R;ŒV<—\>¢`>¬d<»m<ÌzBÖAÔ=Âw3»v3¸t7µu8µx?´|A°}>­}?¦y>¢wBžtDšqE–oD–oD—qD—rE“pF’oE‘nD‘nD‘nD’pC’qD“sD˜yJ™{I˜|J™~IšJšJ™~I—~H”}K’|K‘{J‘{J‘{L’|M”}S”}S”}T“|S“{W’zV‘yWwUwUŽvTtWtWŽsVŽsVqUqUŽpTŽpT‘rV’sW–tY—uZ˜v[˜v[™u[™u[št]št]št]št]œs]œs]t^t^¡wa¡wa£va¤wb¤wb¥xc¦wc¦wc¦yf§zeª|e®e³f¸ƒd»„f¿„fÆgÆ…eÇ…b͈_Ö_ߘbé¡fð¦gó£dò¡bîœbè—_á”\Ü‘Z׎YÓŒXÌ…Q͆R·SшS׋WÛYß’Zà•[ßšYÞ›WÛœYÙœ[Õ›\Òš]Í™]ʘ]Êœ`Èœ_Èœ_Èœ_Èœ_Èœ]Èœ]Æ]Á_ÀžaÀcÁŸbž`ž`ÅŸ`ÅŸ`Ä\ÜYÄ›YÆ[É¡\Ë \ÈXÅšV–W¾‘V¹ŒS´‰R³ŠT±‰U®†Uª„U¢}Q›xN’pJkFˆgF…dC€aB{^@z`Gx`Hw_Gt^Fs_Fs_FraGsbHtcIudJxdKzdL|dL}cL}aK{aJt[Er\Et[EsZDtYFuXFvVGvVGsSDpSCoRDlPBiOBfOAgPBgPBlUEmVDpYGs\Ju`MvaNwbOwbOq_Kq_Kp_Kp_Kp_Kp_Ko`Kp_Ks^Kt]Ks^Kr]Jo\Kn[Jl[IkZHhWGgWGgWHdWGcVFbVFbVHbTGdTGeUHfTFfTFgUGhVHiVGiVGjUDjUDkVEmXGpYGr[Is\Jv]GcK‚cGƒdH‚cG€bHaG}_Gz^Fw[Cw[Cv\Ev\Ev[Fv[Fu\Fu\Hx]LuYKrVHmQChNAeK>bJ>aI=]E;[E:YB:W@8T@9T@9UA:U@;P<;O;%+?$+@%,@%,B%*B%*C$)C$)C$)C$)C%'D$'I&,J%,J%,K&-K'+L(,N',N'*Q(,Q(,R(*R(*R(*R(*R()R()Q')Q')Q')R(*T'*U(+U(+U(+W),W),X'+X'+X'+Y(,\).]+.\,,]--]--]--^.._//_//_//a11a11a11b22d44f66h88j:8m<7p@6rD7sE5rG4uK5}O8‚R;W=˜]?¤b@¯f=¾p?Ï}CÙAÓ€:Áx4ºv5³s6¯r9¯t<¬u<¨v;£u9žq:™p<•l@’h@Žg@Žg@h?i@ŽhAŒiCŒiCjBlD‘nD’qF”sF˜yK™zK™}Mš~Lš~LšJ™~I˜~K“|J‘{J‘{J‘{J’|M”~O•~T—€V•~U”}T”|X“{W’zXxVxVwUuXuXtWtWrVrVqUqU’sW“tX–tY—uZ˜v[˜v[˜tZ˜tZšt]št]št]›u^t^žu_žu_žu_¢xb¢xb¤wb¥xc¥xc¦yd§xd§xd¦yf§zeª|e®e´‚gº…f½†gÁ†fʼngȈeËŠbÒŽaÛ•aäžbí¦dõªgõ¤eóŸaí›aè—_å–^à“]Û]ÖZφSЇTшSÖ‹TÚWà‘Yå”\æ—\ä[ãžYàŸ[ß ]Úž_×^Òœ^Κ^ÏžcÌžbËaÊœ`Êœ^Êœ^Ëž]ËŸ`ÁaÀcÁždÁždžbž`ÅŸ`ÅŸ^Åž[ÄXÇŸZÊ¢\Ϥ_Ï¥]Ì¢ZÉžYŘWÁ“W»ŽS¸‹RµŠS³ŠT¯‡Tª„U£}PšwM’oIŒjEˆgD‡fEƒdE€cE}cJ{cKwaIv`HuaHuaHtcItcIveKveKzdL{eM}cL}cL|`Jz`It[Er\Et[Et[EvYGvYGxXIxXItTEuUFsVHpTFlPDiOBhQCiRBnWGoXFr[It]Ku`MvaNwbOwbOq_Kq_Kp_Kp_Kp_Kp_Ko`Kp_Kq\Is\Jr]Jq\In[JmZIjYGiXFgWGfVFdWGcVFbVFaUEaUGaUGbTGdTGeSEfTFfTFgUGhUFiVGkVEkVEkVElWFnWEpYGr[Iv]GaI€aEbFbFaG}_E|^F{]Ey]Ey]Ew]Fw]Fw\Gw\Gu\Fu\Fx]Lv[JsWIoSEkQDiOBfNBeMA`H>^F<[DO;=L8:I57E13B.0@,.B.0B.0D02E13G35I57K79L68K31L3/K2.J1-I0,H/+G.*F-))*!)"*"*#+$)$)()()()())')')')')')')')')')'*'*'.).).(.(.(0*1+2 ,4".4".4".4".4".4".4".4".4".4".4".3!-2 ,1+1+1+4".3!-2 ,1+1+2 ,3!-4".3!-2 ,1+0*/).(-','()')')&(%($'")!("*"*!, ++***(((''&&%$$$$$$$$))))))))('''&&%%(((((((())((''&&(((((((()))))))') ( (!)!)"*"*"*!)!)!)!)!)!)!)) + + + + + + + + + + + + + + + +.. / /!0!0!0"1 / / / / / / / -#/#-#-$.$.%/%/%/&0%/$.$.$.&0'1+3+0-1/0/001012 02 02,2,3-3-5,5,5,6 ,8!+8!)9"*9"*:#)<#)=$(=$(@%*@%*B%)B%)B%'B%'B%'C%'I&,J%,J&*K'+M&+N',N'*N'*Q(,Q)*R(*R(*R()R()T()T()Q'(Q'(Q'(R()T()U)*V(*V(*W)+V(*W&)W&)Y'*Z(+\*-]+.]+,]+,^,-^,-_-._-._-.`./a/0a/0a/0b01c12f45h67i76m<5p@6rD7sE5rG4uK5}O8‚R;‹U;—\>£a>±h=ÄtAÕEÝ„BÕ‚<Â|7¹y9±s8­r:ªq<¥p:¡p6›n3–k6’h6Žd:‹`=‰^<‰^<Š`:‰b;‰c?‡c?ˆd@ŠgAjD‘nF“rI•tI–wI—xI—{K˜|J˜|J˜|J—{I–|I‘{I|J|J|J’}N”P–V—‚W•V”~U“}X’|W‘zXyWxVxV‘vY‘vYuXuX‘sW‘sWrVrV’sW“tX—uZ˜v[˜v[˜v[˜tZ—sYšt]št]›u^œv_žu_Ÿv` wa wa¢xb£yc¥xc¦yd¦yd§ze¨ye¨ye¦yf§ze«}f¯€fµƒh¹†g¾‡hÈhÆŠhË‹gÑŽdדdà›bè£bðªdö¬eö¥dô bí›aé˜`æ—_à“]ÚŽ\Ô‹XÔ‹XÔ‹X׋WÛŽXáYæ”\ë–]êš]é \æ¡\å¢^â¡_Ý _Úž_Õ`Ð^ÑŸbÏŸaΞ`Í_Í_Ξ`ÏŸ_Í¡dÅ¡g¢iÄ¡iÄ¡gÄ dÄ bÆ aÆ _ÆŸ\ÆŸZÉ¡YÏ¥[Ô¨_Ô¨]Ñ¥Z΢YÆ™X”X¼ŽR¸‹PµŠS³ŠT¯‡Tª„S£}PšwM’oG‹iDˆgD‰hG†gH„gI€fK~fLzeJydIwcHudHveIveIxgKxgK{fK{fK~dK|bI{_Gz^Ht[Er\Et[Et[EvYGvYGyZHyZHvVGxXIwZLsWIoSEkQBiRDjSCpYIqZHs\Ju^LvaNvaNvaNvaNq_Kq_Kp_Kp_Kp_Kp_Ko`Kp_KoZGqZHq\Iq\ImZIkXGhWEgVDfVFfVFdWGcVFbVFaUE_VG`TFaSFdTGdTEeUFfTFgUGhUFhUFlYHkXGlWFlWFnWEpYGr[Iu\F|^F}^B~^E~^E~^E}]D{]Ez\D{_Iz^Hy_Hx^Gw\Gw\Gv[Fv[Fw\KuZIsXGpUDmSDkQBkQDkPEbJ@aI?]F>YB:W@:U>8R>7R=8N:;N9>L7).<',@+0A,1B-2C.3E05F16G27I35J20J1,J1,I0+G.)F-(F-(E,')))!)"*"*#+$)&+(+(+(+()))))))*)*'*)*'*'*'*'*'.).)-(-(-(/*0 +1!,4".4".4".4".4".4".4".4".5#/4".4".3!-2 .1+1-0*4".3",4 ,1+1+2 ,3!-4".2 ,2 ,1+0*/).(-),)')&)&(%($'$'!(!("*"*!* ) +(**((''&&%%$&&&&&&&))))))))(''&&%%%(((((((())((''&&(((((((()''''''' ( ( (!)"*"*"*#+!)!)!)!)!)!)!)!)!+ + + + + + + + + + + + + + + +,.. / /!0!0"1 / / / / / / / /"/"-#/$.$.%/%/%/&0%/$.#-$.%/*2+ 1+0-1/001011 22 02 02.2,2,3-4+5,5,6 ,7 *7 (8!)8!)9"(9"(<#)<#'?&,@%*@%*@%*@&)@&)@&)B%)G',J%,J&*K'+K'+N',N',N'*Q(,Q(,Q(,R(,R(*R(*R(*R(*Q')Q'(Q')R()T'*U)*U(+U)*W),V(*U'*U')X'+Y(+Z)-[*-\+.\+.\+.],/],/^-0^-0_//_//_//_//`00a11d44f66g75m<7p@6rD7sE6rG6wJ5}O8‚S9‰S7’Z9¡a;®j;ÃxAÕ…H܉EÕ†AÂ;¸z=°u;ªq:¤q<¡o<šm6•j5‘g5d6Š`:‡\:ƒZ:ƒZ:„\8„^9…_;„`>†b>ˆd@ŒiC‘nH”rL–uL”uI•vJ”xI•yJ–zK–zJ•yJ“xIzKzKzK{L’}P”R—‚W˜ƒX•V•V”~W“}X’|W‘{VzU‘yW‘vX‘vX‘vYuX’tX‘sW‘sWrV“tX“tX—uZ˜v[˜v[—uZ—sY—s[šv^›u^œv_žu_ v`£vc¤wd¤wd¥xe¥xc¥xc¦yd§ze§zc¨zc©zf¦yf¨{h«}f¯€f¶ƒh»†g‡gƇdÊŠfÏŒbÖcÝ–bçœcí£dô©eú«fù¥gö eð›bê˜^ç–_â“[Û‹VÔ‡QÚXÚVÜVÞ’Xã”Yç™[ë›\ìž\é£^ç¤^ç¤`ã¢^ߢ_Û ^Õž^Ñž]Ó aÑŸ`Ξ`Í_Ξ`ÏŸaÑ¡aÏ£dË£hȤjȤjÉ¢gÉ¢gÈ¢dÈ¢cÈ¢aÆŸ\Ç [Ê¢\ѧ]Õ«_Öª_Ó¨ZÏ£XȘVÄ”V¿ŽSºŒP·ŠQ´‰T¯†R¬„S¢}PšwMnHŠjD‡iGˆiJ‡jJ…jLgLgK|gJzeHxdIxdIyeJyeJ{gL{gL|gL~fL~dK|`H|^Fy]Gt\Dr\Et[Et[Ev[Fw[FyZHyZHwXFyZHy\LvYIpUDmRAlRCnTCr\Gs]Fu_Hv`IvbJvaLvaLu`Kq_Iq_Ip`Ip_Kp_Kp_Ko`Kp_KnYHoZIp[Jp[JmZIkXGgVFeTDgVFfVFeUFeUFbUEbUE`TFaSFaSFcSFdTEdTEfTFfTFhUFhUFn[JoZImXGmVFnWEoXFsYHuZGy[C{[B|\C}]D}]D|\Ez\DyZE|`J|`Jz`Iy^Ix]Hw\Gv[Hv[Hu[JtZKqWHoUFkTFkTFkTFkSGdLBaK@^G?ZC;V?9T=7Q=6P;6M79K79I57F24C/1>*,:&(8$&?+-@+0A,1B-2C.3C04E05E13I11I1/H0.G/-F.,E-)D,(D,(*******!)#+$+$+$+$+&+&+'+,+,),+-*-*.+.+.++(+(,(,(- )- ).!*.!*3",5!,5!,5!,5!,5!,5!-5!-5 /5 /5 /5 /5 15 /5 15 /4 +4 )5+4 +5!,5!,5!-5!-2 ,2 ,0 -0 -/,/,/.,-(+%,%*")")#*%,&-")")")!(!)' ( ('&&%'&&&')))))**&''()**+''&&%%% $&&&&&&&&$$%&&'((&&''&&&''%%%%%## &!&"'"'#(#($)$)%*$)#(!&!&!&"'!'' ( (!)!)"*"*"*!)!) ( (''&(+-,,,. /!0 / / / / / / / / /-!0!."/"/$0$0$.$.'-'-(.(.*/*/+/+/.0.0/0/0111/2.2.2,3-4-5.5,5+3&3$4%5&5&6'7 (7 &5&:!'<#)<#);"(;"(=$*@%*E&,I&,I&,J'-J'-L'.L'.L(,P).P).P).Q(.Q(.Q(.Q(.R'.P&*P&(P&*P&(P&*P&(P&*P&(P#(Q$'R%*S&)U(-V),W*/W*/U+/V,0V,.W-/X.0Y/1Z02[12W-.W-.Y/0Z01\31]42_64a52k;7m>8o@8pA7rD5vI6}O8…S8[:•`8žd6ªm7½{?ΉHЊDȃ>¼|>´y?¬u=¦s<Ÿq=˜n<‘i8Šd5ˆ_3„]4Y5W4~X4}Y5€\8‚^:†b>ˆb>†b>‡c?‰eAŒhDkFmG“sL–vO™yR™yR•xP“vL”wO•yQ‘xOyOyOyO‘zP“|R•~U–V—€W—€W–V–~X•}W”|V“{U“{U’xW’xW“xZ“xZ”wY“vX’uW‘tV•vZ”uY•sZ”rY”rY•sZ—s[˜t\›y`ya wc¡vc¦ud©ug©ug©ugªyj¨yg¨ye¦yd§zc¨|c«}e¬~gª}jª|l®~j³i»ƒhÈjË‹hÑfÒ‰`׊\Ý^è˜có¡iù§kù¨iù¥gþ¨mø¢iï™`æ‘Xá‹RߊQà‹RßQã“Vã•Uã˜Uä›WåŸYæ¢[è¤[è¥^ç§_ç¨aç¨cá¥_Û \מ[ÖŸ\Ô¡_פcÓ¢`Í]ÇšYÇ™[É^Í¡bФeËŸbÌ c΢eͤfÍ£gË£fÈ¢dÇ¡cʤe˦bΧbЪaЩ^ЦZÎ¥VÍ¡VП]Ì™ZÆ”WÁT¼U·ŠS¯†Rª‚Q¦UšwOmG‡iEˆkK‰nP‡nP„kMjK|gHydEydE{fI}hK|gJ{fI}eK}eK~dK}cJ}aK{_I{\Gx\FqW@rZBt\Dv^Fx^Gw]Fw[FvZEz^I|`K`L}^JyZFvWCvWCuYCt\@s^?u`CxcFxeGyeJwfJwfLtcItbJrbIqaJo`Im^Gm^Im\JlYJlYJlYJkXIkXIkXIkXJjWIbOA`N@_M?^L>^L>^L>_M?_O@]M@\NA^QA`SCdTEgUGjWHkXImXGmXGmVFpVGrXGu[Jy^M{`M}^I~^G}]F|\EzZCyYDwXCvWCw[Fw[Fx]Hx]Jx]Jx]Jv[Ju[JpYKnXJlVHjTFgQDeOBcM@bLA`J?\H?ZF?XD=UA:R>7P;6N94M85L76J54G21D.0A+->*+=)*<**<)+=*,=*,>+-<,-?,0?,0@+2A*2A*0A*0A+.A+-A+-A+-********#,#,$,$,$,$,&,'+,--+-+.,-*.+.+.++(,),(- ),!)-"*-"(.!(3",5!,5!,5!,5!,5!,5!-5!-5 /5 /5 15 15 15 15 15 /5+5 )5 )5 )5!,5!,5!-5!-1+1+0 -/,.-.-,-*,',$+#*#*#*#*$+%,")")")!(!( ' ' ('''&('''))****,,'''()***((''&&%%&&&&&&&&%%&&&&''%%&&%%&&%%####"" &!&"'"'#(#($)$)%*$)#(!&!&!&"'!'!' ( ( (!)!)"*"*!)!) ( (''&(+-,,,- /!0 / / / / / / / ///00"/"/$0$0$.$.'-'-).).*.*.+/+/.0.0/0/0111/2.2.2,3-4-5.5,5+3&3$4%5&5&6'7 (7 (6'8!):#+:#+8!)8!):#+?&,E&,F&+I&,I&,J'-J'-L'.L'.M%-M%-M%-M%-N%-N%-N%-N%+P%,P&*P&*P&*P&*P&*P&*P&*O%)P&*P&*Q'+R(,S)-T*.T*.T+1T+1U,0V-1W.2X/3Y12Y12V..V..X00Y11[31\42^64_62h;8l<8o@:pA9qC6vH8~N8…S8ŠX5’]3šb1¥j2¶x;ƇDʇAÁ€<¶x;±v>§s:Ÿp:™n;‘k:‹e6†a5…^5„]6Y5~X4~X4}[6~^8€`:†b>ˆb>†b>‡c?‰eA‹gCkFŽlGpJ“sM–vP–vP’tN‘sM’tN’vO‘xPyPyPyP‘zQ“|S•~U–V—€W—€W–V–V•~U”}T”}T“{U”zW•{Z•{Z–|[—z\–y[”wY“vX•vZ•vZ•sZ•sZ•sZ•sZ˜t^—u\œzaœza wa¤wd¨tfªug¬sh«ui¬xj©xi§zg¤zd§zc¨|c«}e¬~g«|j«|l°}j³g»‚gņg͉dÓŒbÖ‰[Û‹Zâ‘\ìšbø¡kü¦mú¤iø¢gù£jôžeí—^ç‘XåŒTãRæUç“Uæ•Tå˜Tä™UãUå¡Xä¥Xå§Zæ¨]å©aæªbå©cà¥_Û¢]Ö Z× ]Ö¤_Ø¥cÔ¥aР^Ëž]Êž_Ì aͤdÑ¥fΡ`Ï¢aТdФeͤfË£fÈ¡fÆ bË¥fͧfϪfÑ«dÒ«`Ò¨\ЧXÒ¤YÒŸ^Í™]Ç“WÂU¾U¸‹T²‡T¬„S¤S˜wNmG†iG†lK‡nO…mQƒlM~iJ{gFydEydE}fGhI~fJ}eI~dK~dKcKcK}aK{_I{\Gw[EqW@qYAs[Ct\Dv\Ev\Ew[Ew[E|`J~bLbM€aL}]HzZEzZEz\Dw`AvbAwcBxdCwdDwdFtcEsbFsbHr`Hp`Go_Hl]Fk\Gj[FiZGkXIkXJjWIiVHiVHhUGgTFgTFaN@`M?_L>^K=^K=_L>`M?_M?\L?[M@]P@`SCdTEgWHkXIlYJnYHmXGpVGqWHtYHw\Ky^M|_M}^I~^G}]F|\EzZEyYDwXDwXDtXCuYDuZGv[Hv[JuZItYHrXInXJkXJiVHgTFdPEbNC`LA`LA\H?[G>YE>WC7P;6O:5O75N64J52G2/E0/C.-@,+?+*=++=++=*,=*,;+,;+,;+.;*0<'0<&2<'0<'.<'.<',<(*<(*********#,#,$,$,$,$,&,'+*-,+,+-,-*.+.+.+,),),(- )- ).!*.!(1")5!*6!*6 ,6 ,6 ,6 ,6 -6 -6/6/6/6/6161616/6 ,6!*6 ,6 ,4 +4 +4 ,4 ,0,/+.+.+-,,+*+)+$)#+$,$,$,$,#+"*"*"*"*!)!) ( ( ( ( ((')((())****,,''(())**))((''&&&&&&&&&&''&&&&%%$$%%$$%%%%####"" &!&"'"'#(#($)$)%*$)#(!&!&!&"'!'!''' (!)!)!)"*!)!) ( (''&(+,++,-. / / / / / / / / ///!0!0"/"/$0$0&.&.'-'-).).*.*.+/+/././/0/01/1/2.2,2,3-4+5,5,5+4'4%4%5&5&6'6'6'6'8!):#+:#+8!)7 (9"*>%+D%+E%*F&+F&+I&,I&,J'-J'-I$+I$+K#+K#+K#+K#+L#+L#)P%,P&*P&*P&*P&*P&*P&*P&*Q'+Q'+Q'+Q'+Q'+R(,R(,R(,T+/T+/U,0V-1W.2X/3Y12Y12V..V..X0.Y1/[31\42^64_62h;8l<8n?9o@6qC6uG7~N8…S8†T3Z2˜`1¢f0±s8À€@Å‚>½|:²t9¬q9¢n5šk5•j7g6ˆb5ƒ^2„]4ƒ\5Y5Y4Y5}[6~^7€`9†b>†b>†b>‡c?ˆd@ŠfBŒjEkFmGpJ‘sM’tNrLqKrL‘uN‘xPxOxOxO‘zQ’{R”}T•~U—€W—€W–V–V•~U•~U•~U•}W—}Z—}\˜~]˜~]š}]˜{[—z\–y[–w[–w[—u\–t[–t[—u\™u]˜v]{`{`¡xb¥xc§veªwf«vh«vhªyj¨yi¥zg£zd¥{c¦|cª~e¬~gª{i«|j°}h¶€h¾‚fņëcÓŠaÕˆZÜŒ[å”_ïeú£mü¦mù£hö eòdïšcë”^ç‘XæWè’Wë•Zì˜Zè—Xç™WåœXä Yæ£\æ¦\æ¨]åª^æªbç«eåªdá¦`Û¢]ס[Ù¢_ئaÙ¦dÕ¦bÔ¤bУ`Ï£bÏ£bÎ¥eÑ¥fÒ¥dÒ¥dÑ¥fÎ¥eͤfÊ¢dÇ¡cÆ b̦gΨgѪgÓ­fÔ¬dÔª^Ó¨ZÔ¦[Ó _Κ^È”ZÂV¿X¹‹W²ˆV¬†W¡|R–tNŒlF…hF„jI…lM„lP‚kL~iJ{gFxcDxcD}fG~gH~fJ|dHeLeLcKcK}aK{_Iz[Fw[EqW@pX@qW@rXAsYBu[Dw[Ex\F`K‚cN„ePƒdOaL~^I~^I~`H{dEydEydEydEwdFubDs_Dr^EraGq_Go_Hm\HkZFjYGgXEfWDkXIjWIiVHhUGgTFeRDdQCdQC_L>_L>^K=]J<]J<^K=_L>_M?[K>[M@]P@_RBeUFgWHkXImZKnYHnYHrXIrXIuZIw\Ky^M{^L}^I}]F|\G{[FyZExYDxYEwXDrUCrUCsXEsXEsXGsXGpVEnWGlVHiVHhUGfSEcODaMB`LA_K@ZF=YE+-=*,:*+9)*9),8'-8#,8".8#,8#*8#*8#(8$&8$&))))))))#,#,$,$,$,$,&,'+*-,+,+-,-*.+.+.+,)- *- )- ).!*/"+/")1")6"+7"+7!-7!-7!-7!-7!.7!.7 07 07 07 07 27 27 27 06 ,6!*6 ,6 ,4 +4 +4 ,4 ,.*.*-*,),++*)*(,#)"*$,%-%-$,"*!)"*"*"*!)!) ( ( (!)!))(*))())****,,(((())))*)))((''&&&&&&&&(('&&%$$#$$$##$$%%####"" &!&"'"'#(#($)$)%*$)#(!&!&!&"'!' &'' ( (!)!)!)!)!) ( (''&(*,+++-. / / / / / / / / ///!0!0"/"/$0$.&.&.'-'-).).*.*.+/+/././/0/01/1/2,2,2,3-4+5,5,5+5(5&5&5&5&5&5&5&6'8!):#+9"*7 (6'8!)<#)C$*D$)E%*E%*H%+H%+I&,I&,I$+I$+K#+K#+K#+K#+L#+L#)O$+O%)O%)O%)O%)O%)O%)O%)Q'+Q'+Q'+Q'+Q'+P&*P&*P&*S*.S*.T+/U,0V-1W/0X01Y12V..V..X0.Y1/[31\42^64_62g:5l=7n?9o@6pB5uG7|N7‚S7†T3Z2˜`1¢f0¯q6½}=À;»z8±s8©p9 k5˜i3’i5Œf5‡b5ƒ^2„]6ƒ\5‚Z6€Z5~Z6]7_8a:…c>†b>†b>†b>ˆd@‰gB‹iDŒjEŒlFoI‘sM‘sMrLqKrL‘uNwOxOxOxOyP’{R”}T•~U—€W—€W–V–V–V–V–V–~X—}Z—}\˜~]˜~]š}]˜{[—z\–y[˜y]—x\˜v]—u\—u\˜v]šv^›w]ž|`ž|`¢za¦yd¨xd«xg«wi«wi©zj¥zi¤{g¡{f¢|e¥}d¨~f«~g«|h¯|g²~h¸€g¿‚eƆc͈aш]Ô†XÜŒ[è•aóžgû¤nü¦mù£hö gïšcí˜aê“]çZçZé”[ì—^ìš^êš]é›[èž]æ¡\ç¤^æ¨_å©`æªaç«eæ«eåªdà§`Ü£^Ø¢\Ù¤`Ú¨cÖ¥bÖ§cÕ¥cÓ¦cÒ¦eÑ¥dÎ¥eÎ¥cÕ©hÔ¨gѨhΧf̤fÈ¢cÆ aÅŸ`Ë¥fͦeЩfÓ«eÕ«cÕ©`Õ§\Õ¥]Ó¡bÍ›`Æ“ZÁX¼Y¹‹Y²ˆX­‡ZxN”rL‹jG…hFƒhJ„kM„jO‚kL~iJ{gFydEydE}fGhI~fJ}eIeLeL€dLcK}aKz^Hz[FvZDqW@oW?pV?pV?qW@tZCx\Fz^H}^IbM„eP„eP‚bM€`K_JaI|bGydEydEydGxcFuaFs_Fq]EsaIr`Jp^Jn]IkZHiXFgXEgVFlYKlYKjWIhUGgTFeRDcPBcPB]J<]J<\I;[H:\I;]J<^K=^L>[K>ZL?\O?_RBeUFhXIlYJmZKoZIoZIsYJtZKv[Jw\Kx]Lz]K{\G|\E{[FzZEyZExYDxYEuYDrUCrUCrWDsXEsXGrWFpVEnWGjTFhUGfSEeRDcODaMB`LA_K@YE9R=8M53M53J52I41G21F10D0/C/.A//@..?,.=*,9)*8()7'*6%+6"+7!-7"+7")7")7"'7#%7#%))))))))#,#,$,$,$,$,&,'+*-,+,+-,-*.+.+.+/*/*/)0 *1!+1!+1")3"*6"+7"+7"+7"+7!-7!-7!-7!-7!.7!.7 07 07 07 07 27 07!.7!-7!-6 ,4 ,3+3+3+.*.*,+,++*+*(+'+"(!)#+$,$,#+!) ("*"*"*!)!) ( ( (!)!))(*))())****,,))))((((*)))((''&&&&&&&&(('&&%$$#$$$##$$%%####"" &!&"'"'#(#($)$)%*$)#(!&!&!&"'!' &&&'' ( (!)!)!) ( (''&(*)(()*+, - - - - - - - - / /!.!.#/#/$.$.&.&,(-(-)-)-+.+.+.+.././/./.1/1/2,2,2*3+4+5,5+5+5(5&5&5&5&5&5&5&6'8!):#+9"*6'5&7 (;"(A$)B#(D$)D$)E%*E%*H%+H%+J%,J%,J%,J%,L$,L$,L$,M$*O$+O%)O%)O%)O%)O%)O%)O%)Q'+Q'+Q'+P&*P&*P&*P&*P&*R)-S*.T+/U,0V./W/0X01X00V..V..X0.Y1/[4/\50^72_62f;5i<6k>8l@5pB5tF6|N7‚S7‡U4\4™c5¡h3®q8¼|>¿~<¹y9±t;©p9 k5˜i5’i5g6‰d7„b5ƒ]6‚\5‚\7‚\7^8_9a:‚b9†d>†c=†c=†c=†d>ˆf@‰gA‰iBŒlEpI‘tL’uMtLtL‘uM“wOwOŽwNŽwNŽwNxO‘zQ“|S”}T–V–V—€W—€W—€W—€W—€W—Y•{X–|Y—}Z—}Z˜{[—zZ–y[•xZš{^™z]šx]™w\™w^šx_œx`y_Ÿ~_ }_£{a§zc¨yeªzfªyhªyh¨zj¤{i¢|g |f¡}e¢~d¥€f©g­}f³}e·f½eÄcʆaχ_Òˆ[Õ„UÝ‹Yè•aóžgù¢lú¤kø¢iö gî™bê—aé”^ç’[æ‘Zè“Zë–]ë™_ìœaé_ç `ç¤`æ¥aæ§`æªbåªdæ«eå¬gãªeߦaÛ¢_Ø¡^Ú¥aܪeÖ¥bÖ§cÖ¦dÔ§dÓ¨dÒ§cФcͤbÖ­kÓ¬gѪgͨdË¥dǤbÅ¢`Æ _É£bˤaϧbÓ¨cרb×§_Ö¦\Ô£^Ô¢eΛbÅ’[¾ŒW¹ŠV´ˆW°…XªƒXštM’pJŒkH†iGƒhJƒjLƒiN‚kLjK|hGzfEzfE~gH€iJhI~gH€fK€fK€dLcK}aIz^FyZEuYCpV=pV=oUuYAx\Dz^Fz\D~`HƒcL…eNƒcL€`I‚_IaI{aFzbF{cGydIxcHv`Ht`Gs_Gu`Kr`Lq_Ko\Kl[KkZJiXHiWImZLlYKkXJiVHgTFeRDdQCcPB[H:ZG9ZG9ZG9ZG9\I;]J<]K=\L?[M@]P@`SCdTEgWHkXIlYJnYHoZIsYJtZKv[Jw\Kw\Kx[IxYEyYDxYDxYDwXDwXDuXFuXFsVDsXEtYHtYHsYJsYJrXIoXHiSEgTFfSEdQCcODbNCaMB`LAZF=ZF=YE>WC9O75N64K63J52H32G21E10E10A//@..?,.=*,9)*7'(5%(4#)7#,7#.7#,7$*7$*7$(7$&7$&((((((((#,#,$,$,$,$,&,'+*-*+,+-,-*.+.+.+/*0 +0 *1!+1!+2",2#*3"*8#,8#,8#,8#,8".8".8".8".8"/8"/8!18!18!18!18!38!18"/8".7!-6 ,4 ,3+2*2*.*.*,+,++*+*),'+#)!)"*#+#+"*!)!)"*"*"*!)!) ( ( ( ( ((')((())****,,**))((''))((''&&&&&&&&&&''&&&&%%$$%%$$%%%%####"" &!&"'"'#(#($)$)%*$)#(!&!&!&"'!'%&&&' ( ( (!)!) ( (''&&))((()+, - - - - - - - - / -!.!.#/#-$.$,&,&,(-(,)-)-+.+.+.+.././/./.1/1-2,2,2*3+4+5,5+5 )6)6'6'5&5&4%4%4%7 (9"*:#+9"*6'4%6':!'@#(A"'C#(C#(D$)D$)G$*G$*J%,J%,J%,J%,L$,L$,L$,L%*M$*N$(N$(N$(N$(N$(N$(N$(O%)O%)O%)P&*P&*P&*P&*P&*R)-R)-S*.T,-U-.V./W//W//V..V.,X0.Y1/[4/\50^72_60e:4h;5k?6l@5oA4tF6{M6€S6‡V5’^6›e7¢h6­p7¸{<¼|<¹y9±t;¨q;žk6–h4h5Œh6Še8…c6ƒ]6„^7„^9ƒ`:„a;ƒc:‚e;ƒf<†d>†c=†c=…c=…c=‡e?‡g@ˆhA‹kDpH‘tL’uMtLtL’vN’yPŽwNŽwNŽwNŽwNxO‘zQ“|S”}T–V–V—€W—€W˜X˜X˜X˜X–|W–|Y—}Z—}Z™|\—zZ–y[•xZ›|_š{^›y^›y^›y`›y`yažz` `¡~^¤}`¨|c©{d«{gª{i©|i¥|j¢|i }gŸ|f ~e¡f¤€f©f²~f¸d¼€dÄeȆc͈aш_Ô‡YÙ‰XáŽZì—aòfõŸfôžeódòdê—aé–`æ“]ä‘[æ‘Zå“[ç•]è˜]ìbêžbè¡cç£bæ¥cä§dä©eä«fä«fá«eá¨cÛ¥_Ø¡^×¢^Ù§bÜ«fÙ¨eØ©eÖ©fÖ©fÕªfÔ©eÓ¨dШcÖ¯jÓ®hѬfÌ©eɦbÈ¥aǤbÆ£_Ê£`Í¥`Ò§cÕ¨dÙ¨cÙ§`ئ_×¥`Ô¢gÌ›cÑ\¹ŠV´†T¯ƒR©€R¥~S˜rK’pKlI‡jJ†iK„iL„jOƒlMƒlL~jI{gF|hG€iJ‚kLjK€iJgLgLeMcK|`Hy]ExYDvWBpTXD=VB;U@;T?:Q97P86M85K63I43G21E10D0/@..?-->+-<)+8()6&'5%(4#)7#,7#.7#,7$*7$*7$(7$&7$&((((((((#,#,$,$,$,$,&,&+)-)+*++,+*,+,+,+0 +0 +0 *1!+2!+3",3"*4#+8#*9"*9"*9"*9",9",9!.9!.9!.9!.9!/9!/9!19!19!19!19#08"/7!.6 -4 ,3+2,1+/-/--.-.,-,-),(,$*",!+ * *!+",",",",",!+!+ * * *'''&('''))****,,***)('''((''&&%%&&&&&&&&%%&&&&''%%&&%%&&%%####"" &!&"'"'#(#($)$)%*$)#(!&!&!&"'!'%%&&''' (!)!) ( (''&&)(''()+, - - - - - - - -!-!-".",#-#-&.&,','+),),*-*++,+,+.+..-.-/./.1-1-2,2*2*3+4*5+5+5 )7 *7 (6'5&5&4%3$3$7 (9"*:#+8!)5&4%5&9 &?"'@!&A"'A"'C#(C#(D$)D$)G$*G$*H#*H#*H#*H#*J"*J#(M$*M$(M$(M$(M$(M$(M$(M$(L#'L#'M$(N%)O&*P'+P'+Q(,R*+R*+S+,T,-U-.V..W//W//V.,V.,X0.Y2-[4/\50^70_60e:4g<5i>5j@4mA4qF5zM8€R8†U5^6še9 h5ªo7µw:¹y;¶v8®s;¦o9œi4”f2Žf3‹g7‰d7…c6‚_7ƒ`8†`9†c;‡d<†f=…h>…h<†e<†e<…d;„c:…d;…e<†f=‡g>†i?ŠmCŽqGtIŽsHŽsHŽvJwNŽwNŽwNvMvMxOyP’{R“|S–V–V—€W—€W˜X™‚Y™‚YšƒZ˜~Y™Z™\š€]›~\š}[˜{[—zZœ}`œ}`œz^œz^œz_œz_Ÿ{aŸ|`¡~^£_¥~_©}bª|e«|hª}j¨}j£}h }gž~g}fž~e¡f¤€f©f·d½€cƒdÇ…c͇cш_Õˆ\ÖˆXá]ç”`ïšdò›eðšaí—^ì–]ë–]æ“]ä“\ã’[â‘ZãZä“[æ•]è—_êždéždç¡eå¤då¥eä§fã¨fãªgáªgߪfÞ§dØ£_Õ \Ô¢]Ø¥cÜ«hß®kÝ®jÛ®jÚ­iØ­hØ­hØ­hÖ®hÕ°iѯgÏ­e̪cʨaȧ`ɦbɧ`ͦaШcÕªfØ«gݬgÝ«fÞ©eÛ¨fÔ¡hÊ›e¿Zµ‡S­P¨~N¤{OžyO•rJ’pKŽmJ‰lL‡jL…jM…kP„mN…nN€lI}iF}iF‚kKƒlLƒlLjJ‚iKhJfKdI|aFy^CxZBvX@oS;pTWC,,=*,<)+8()7'(6&)5$*5!*5!,5!*5"(5"(5"&5"$5"$((((((((#,#,$,$,$,$,&,&+)-)+)+*,+*,+,+,+0 +0 +1!+1!+3",3",4#+6"+9"*9"*9"*9"*9",9",9!.9!.9!.9!.9!/9!/9!19!19!19!19#09#08"/6 -4 ,2*1+1+/-/-./-.-.,-*-).%-", *)) *",#-",",",!+!+ * * *'&&%'&&&))****,,+**)(''&''&&%%% $&&&&&&&&$$%&&'((&&''&&&'%%####""!&!&"'"'#(#($)$)%*$)#(!&!&!&"'!'%%%&&'' (!)!) ( (''&&'(''()*+ - - - - - - - -!-!-",",#-#-&,&,'+'+),),*+*++,+,+.+,.-.-/./,1-1+2*2*2*3*4*5+5+5 )7 (7 (6'5&5&4%3$3$7 (9"*:#+8!)5&3$4%8%?"'@!&@!&A"'B"'C#(C#(D$)D!'D!'E 'E 'E 'E 'G'G %M$*M$(M$(M$(M$(M$(M$(M$(K"&K"&L#'M$(O&*P'+Q(,R)-Q)*R*+S+,T,-U--V..V..W/-V.,V/*X1,Y2-[4/\50^70^70e:3g<5i>5j@4mA4qF5zM8€R8‚T3Ž\7˜c7žf5§k5²t9·w:´t7¬p:£k8˜f3‘c1Œd3‰e5…c5„b5ƒ`8„a9ˆb;‡d<ˆg>ˆi=†i=…j=…e<†e<…d;„c:ƒc:„d;†f=…h>ƒf<†k@ŠoDŒqFŒqFŒqFŒtHŽvJŽwNvMvMvMŽwNyP’{R“|S–V–V—€W—€W˜X™‚YšƒZšƒZ›\›\œ‚_œ‚_ž_œ]›~^š}]~aœ}`{_œz^œz_{`Ÿ{a }a¢_¢€]¥~_§~bª~eª}f¨~h¨k¢~hž~ggœ~dž~e¡d¤€f«d¹€bÁ€`Ç‚ăbч`Óˆ^ÖˆZ؈Wé–bïšdóœfñšdì–]ç‘XæWåWáXáYàXáYâ‘Zå”]ç–^è™`éždçŸdç¡eå£fâ¥fâ¦gâ¨hà©hߪhܪeÛ¦bÕ£^Ò [Ò¡\צcÜ«hã´pâ³oÞ±mݰlÛ°kܱlܱlÛ³mÕ°iѯgάd̪bÉ©`É©`ʨaË©aЩdÓ«eØ­hÞ¯kà¯já¯jã¬iá«kÓ¢hÈ›d¼ŽZ±†S©M¤{MžxKšuI”qI‘qJnKŠmKˆkK…jL…lN†mO†oMmJ~jGkHƒlL…nN„mMƒlL‚iKhJfKdI|aFy^CwYAuW?nR:pT_L>_L>_L>_L>VC5UB4UB4VC5WD6YF8[H:\JqR>oS>pSApSAoTAoTAmRAlRAnTEnTElUElUEjSEiSEhUGhUGgTFgTFfRGeQFeQFdPEcOFbNE`LE]IBZF?WC,,=++<)+;(*8()7'(6&)6%+3(3*3(3 &3 &3 $3 "3 "&&''(())((!)"*#+$,'-',&+&)'*'*))))+*+*2"-2"-4#-5$.8$/9%0:&/:&/=&.?&,>$->$-=#,<"+;!,;!,;!.;!.<"/<"/$>$>$>$@ %@ %C &C &D!'E"(G")G#'H!&I"%I"%J#&J#&K$'K$'K$'M&)M&)N'*N'*O(+O(+P),P),Q)*R**R**S++T,,U--V.,W/-W/-X1,Y2-[4-\5.^70_81`92c81f;2i>5kA5mC5rG6yL7Q7ƒU4]8™d: h9ªn:´v=¸w=²t9«o9£k8˜f3b0Œd3‰e5†d6„c6‡d<ˆe=ˆe;ˆe;‡f;…h<„i<„i<†f=†f=†f=‡g>‡g>‡g>…h>…h>‡j@‡lA‰nCŠrF‹sG‹sG‹sG‹sG‹tKŒuLvMŽwNyP’{R“|S“|S”}T•~U—€W™‚YšƒZšƒZšƒZšƒZ›\›\›\›\\\€^€^œ}^œ}^ž|`ž|`Ÿ}a¡c¤e¥‚d¢`£^¦`§~b§}d§}e§}g¤~g ~ež~eežc¢€e¦ƒg¬„j³„f¾‚`Æ‚_Í„aÒˆaÕŠ`ØŠ\ÚˆXÚ‡Ué”^è‘[çZåVåVæWæ‘Xæ”ZÝŽUÞVÞVà‘Xã”[æ—^éšaécçœbåŸcå eã£fà¤fÞ¤eÛ¤dÙ¤bÚ§eÜ«hÞ«iÙ¨eÓ¢_Ò¡^צcÝ®jÝ®jß°lß³láµnáµnà´mÞ²kÛ±iÕ±gÒ°fѯeЮdήcήcÏ­eÏ­cÑ«dÒªbÖ¬dÜ­gà¯là­kߨgØ¥fÊ›c¿”_´‰VªM¥{I¢yKwJšuI”qIpIŽnH‰mHˆkI‡mL‰oNŠrP…nLƒoJ„pM…qN†oM…nL„mMƒlL€gI€gIfI€eH~cH}bG}_E|^Dy^Cx]By[AxZ@y[A{]C~^E_F‚`G†dK‹iPmT‘mUlTiQŠgQ‡kU„jSgP|bKw^HsZDoUDlUChQAgP@cM@aK>`J?aK@`LAaMB]J<]J<\I;\I;\I;\I;[H:[H:VC5VC5WD6XE7YF8[H:\I;\J<`PC_QDaTDcVFfVGfVGhUFhUFhSBhSBlRClRCnSBoTCpUDpUBmP>lP;iL:hK9iL:kP=nSBqVEmSDmSDmSDkTDkTFkTFjTFjTFiVHhUGgTFfSEdPEcODaMBaMBaMDbNEcOHbNG`LE]IBYD?WB=V>+-<)+8()6&'4$'3"(3"*3",4#+4#)4#)4$'5%&5%&&&''(())((!)"*#+$,'-',&+'*'*(+))**+*+*1!,2"-3",4#-7#.8$/9%.;&-<%->%+>$-=#,=#,=#,=#.<"-;!.;!.;!.;!.; /; /$>$>$>$@ %@ %B%C &D!'D!'F!(F"&H!&H!$I"%I"%J#&J#&K$'K$'M&)M&)M&)N'*N'*O(+O(+P)*Q)*Q))R**S++T,,U-+V.,V/*W0+X1,Y2+Z3,\5.^70_81_90b:0g<3j?6lB6mC5pG5wM7}Q8‚S5Ž\9˜c;Ÿf9©m;³v?·y@³u<¬p<¡l:˜f5Žb1‰c4†d6…d7ƒb5†c9‡d<‡d:‡f;‡h<…i:…j;…j;…h<‡g>ˆh?ˆh?ˆh?‡j@‡j@†k@‡lA‰nC‰qEŠrFŒtHŒtHŒtHŒtH‹tJŒuLvMxOyP’{R“|S”}T•~U–V˜X™‚Y›„[›„[šƒZšƒZœ‚]œ‚]œ‚]œ‚]ž‚]ž‚]ž_ž_ž`ž`Ÿ}aŸ}aŸ}a ~b£€d¤c¢`£€`¤b¦~d§}e¦~e¦}g¤~g¡fŸ€džc¡c¤c«„g±…h¸…fʈeч`Ô‰aØ‹aÜŽ`á_ã^å\ê“]é“Zç‘XæWåVæWæ‘Xå“YÞTÝ‘UÞ’Vâ“Xå–[æš`écéždåbåŸcã¡eã£fá¥gݦfܦfÙ¦eÚ©gÛ¬hݬiØ©eÓ¢_Ñ¢^Ö§cÛ¬hÜ­iÞ¯kÞ²kà´máµnß³lÞ²kÛ±iزiÕ³iÔ²hÓ±gÒ°fѱdÒ±dѰcÔ®cÔ¬dÖ¬dجeÜ«hÚ§eסaÑaÀ“Z¶W¬ƒO¥}I¢zGžxGœxH˜vH—vK”tKrJŒnH‰mHˆnI‰oL‰qM…oJ„pK…qN…qN‡pN†oM…nN„mMhJhJfI€eHdI}bG~`F}_E{`E{`E{]C{]C{]C|^D_F€`GƒaH†dKŠhOŽlS’nV’nVlTŽlSŒnV‡mV‚hQ|bKw\GqXBnUAlRAfO=eN>bK=_I<^H;^H=\H=]I>[H:[H:[H:\I;\I;\I;\I;\I;ZG9ZG9[H:[H:]J<^K=_L>_M?_OB_QDaTDbUEeUFfVGgTEgTEhSBhSBkQBlRCnSBnSBoTCoTCmP>lP;jM;iL:hM:kP=nSBoUDlRCjSCjSCjSCjSEjSEiSEiSEiVHiVHhUGfSEdPEcODbNCaMBaMDaMDaMF`LE^JC\HAYD?XC>X@>W?=R=:P;8L76I43F21E10A//@..?,.=*,8()6&'5%(4#)4#+4#-4#+4#)4#)4$'4$%4$%&&''(())((!)"*#+$,'-',%,%*%*&+()**+*,+0 +1!,3",6"-8".9#/:%.:%,;$,=$*=$*>%+>%+>%+>$-?%.;!,;!,;!.;!.;!.;!.;!.9!/<$29"27 05.2.2.2020//..,.+-*.*.)/(/", ,!-!- ,+*)".".!- ,+*))&&&%'&&&*))'''**('''&%%%&% # " " #%&$$$$%%%%%%%%%%%%%&&'%&&&&%! !# $"& % % %!&!&"'"'"'#(#(#(#(#(#(#("("( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ('&%$$%&'((( ) )!*!*!*#+%+%+&,',(,),),+.+,-,-*.*.*.*-(+*+*.+.+/*/*1+1+3*3*3(3(4(4(4&4&5&5&5&5&5&5&5&5&5&5&5&5&5&5&5&7$; %;!$= $= $= $= $>$>$?$@ %@ %@ %C &C &D!'D!%E!%E!#F"$F"$G#%G#%H$&H$&J&(K')K')L(*L(*M)+M)+O()Q)*Q))R*(S+)T,*U-+V.,V/*W0+W0)X1*Z3,\6-]7.^8/_90d<2g?5iA5kC7kD5pG5vL6|P7R4‹[7–b:œf8¦l<³v@·xB³v?ªp>¡k<˜f5Žb1‰c4†d6„c6‚c5„c8…d9†e:‡f;‡h:‡k;‡m<‡l=‡j>Šk?ˆk?‰l@‰l@ŠmAŠmA‰nA‰nA‰qCŠrDŒtFŒvGŒvGŒvGŒuIŒuKvMŽwNyP‘zQ“|S”}T•~U•~U—€W˜XšƒZ›„[œ…\›„[›„[Ÿ†^Ÿ†^Ÿ†^Ÿ†^¡…`¡…`¡…`¡…`¡ƒa ‚`¡€a `Ÿ~_ `¢c¢c¡€a¢c£~c£~d¥}d¥|f¥|f£}f¢€e¢€e¡c¤c©‚c±†f·‰hÁ‰h×’kÝfßeâ‘dæ”dì–eï—eó™dì“[ì“Yê‘WéVæWæWæ‘Zä’XÞ’TÞ”Uà–Wä˜Zç›]éaëŸcë¡däž`å¡bã£eã¦gâ¨ià©iÞ¨hÜ©hÛ«iÚ­jܬjÖ©fÒ¢`Ï¢_Ó¦bØ«gÙ­fÛ¯hݱjß³là´kß³jݱhÛ±gÚ´kÙµkÙµiÖµhÖµhÕ´eÕ´eÔ³dײdÕ®cÕ«cÕ©bÖ¥bÓ _Íš[Ç•X´ŠP¬…L¦H {F {FŸ{GŸ{IœzJ|O™zN“vLrJ‹oGŠnG‰oJˆpJ†pI„qI…qL†rMˆrMˆrM‡pN†oM‚iJhI‚gIfHdGdG€bF€bFcG€bFaEaE`D€aEƒaFƒaF„bG†dI‹gMkQ“nT•pV–qW•sZ‘sY‹oW…iQ|bIu[DpU@lS=jQ=hN=dM=bK;_H:\F8[E8[E8[E8YF8ZG9ZG9[H:\I;]J<]J<^K=]J<^K=_L>`M?aN@bOAbOAaOA^NA^PC_RBaTDdTEeUFfSDfSDgRAhSBkQBkQBmRAmRAnSBnSBlQ>kP=iN;hM:iN=kP?lRCnTElRCjSCjSEiSEiSFiSFiSFiSFjWIiVHhUGfSEeQFcODbNCaMBaMD`LC^JC\HAZF?YE>YD?YD?ZB@YA?T?+-:*+8()6&)5$*3$+3#-3$+3$)3$)3$'3%%3%%&&''(())((!)"*#+$,'-',%,&+&+&+)** +,+,+0 +1!,4 +5!,7!-8".9$-;$,<#)<#)=$*>%+?&,?&,@&/@&/>$/>$/>$1=#0=#0=#0<"/$>$?$?$?$?$B%B%B%B#D $D "E!#E!#F"$F"$G#%G#%J&(J&(J&(K')L(*L(*L(*M))P((P((Q)'R*(S+)T,*U.)V/*V/(W0)X1*Y2+[5,]7.^8/^8/e=3g?5jB6jC4kD5mG4sJ4xN5~Q4‰X7“_8™c7¤j<°t@µxA²u?©o?Ÿk;•e5Œb2‡c3„d5„c6b4ƒb7„c8…d9†g9ˆi:‡m<†o=‡p>‰m>ŒmAŠmA‹nBŒoCpDrErEŠrD‹sEuGŽvHŽxIŽxIwHvJvLŽwNxO‘zQ’{R”}T•~U–V–V˜X™‚Y›„[œ…\†]œ…\œ…\¡ˆ`¡ˆ`¡ˆ`¡ˆ`£‡b£‡b£‡b£‡b¤†d£…c£‚c¡€a ` `¡~b¡~b¡d¡d¢~d£}f¥|f¥|f£}f£}f¥g¤e¤c¨`¯„b¹ˆgÂkÌjß”læ•hé—hì˜iðšió›iöœgøfî“Zí’Yì‘Xê‘Wç‘Xç‘XåYã‘Wà•Tá˜Tä›Wèž]ì¡`ì¢cí£dë¤fæ bä£cå¥gä¨iäªká«kÞ«jݬjܬlÚ­lÙ¬kÕ¨eѤaУ`Ó¦bÖ©eجeÚ®gݱjß³jà´kß³jÞ²iݱhÛ³kÚ´iÛµjÚ¶hÚ¶h×¶eÖµdصdÖ²dÔ¯aѪ_ѦaÑ¡_Μ]Ç•VÁ‘S¯‡L©…K¥G¤I¦ƒK¦…O¥„O£ƒP¢ƒTŸ€R˜{O“vJrG‹pEˆoF‡pG†pI„qI†rM‡sN‰sN‰sNˆqO‡pNƒjKƒjK‚gIfH€eH€eHƒeIƒeI…gK…gK„fJƒeIƒdHƒdH„bG„bG„bG†dIŠfLŽjP“nT—rX™tZ™u[“u[rW†kP}aIu[BpV?mSeN_L>^K=_L>`M?aN@bOAbOAbOAaOA^NA]OB_RB`SCdTEdTEeRCeRChSBhSBkQBkQBlQ@mRAmRAmRAlQ>kP=jO#(?$)?$)@%,A&-B'0B'0B'0B'0A%1@$0@$2?#1>"0="18 0614/3.1-1-1/1/-.,-*.(,(,(,'-&-#-"0#1$2#1"0-,,,,,+++(%%%%''''*))'''**'&&%% $ $ $'% # ! ! #%' "##$%&&'%%%%%%%%$%%%$%%%"##$ %$#" % % %!&!&"'"'"'"'"'"'"'"'"'"'!'"( ( ( ( ( ( ( ( ( ( ( ( ( ( ( (('&%%&'(((( ) )!*!*"*%+&+&*'+'+(,)*)*-,-*.*.*.(.(.(-(-*+*.).)/*/*1 *1 *3*3(3(3(4&4&4&4&5&5&5&5&5&5&5&5&5&5&5&5&5&5&5&5$; %;!$;!$;!$= $= $= $= $>$>$?$?$>#>#@#@!C#C!D "D "E!#E!#F"$F"$I%'J&(J&(J&(K')L(*L(*L((O''P(&Q)'R*(S,'T-(U.)U.)V/(V/(W1(Y3*[5,\6-]7,^8-c=2e?4hB5hC3jC4lF3rI5wM4}P3†X6^6•`4Ÿg8¬p>²u?°r?¦n=i:“c5‹a1‡c3…e6…d7ƒd8ƒd8„e9†e8‡h:‰j;ˆn=‡p<ˆq?‹o@‹o@ŒpAqBŽsDtEuFuFuEŽvFyHzIzIzIŽzHxIŽwMxOyP’{R“|S•~U–V—€W—€W™‚Y›„[œ…\†]ž‡^†]†]£Ša£Ša£Šb£Šb¥‰b¥‰b¥‰d¥‰d¦ˆf¥‡e¥„c£‚a¡€a `¡~`¢c¡f¡f¢~f£}h¥|h¥|h£}f£}f§‚h¦d¨b­‚`´†dÀŒgË‘lדnã”iê–gñ›jöžlú lùži÷œe÷šañ”[î”Xî“Zì“Yé“Zç‘XåYâVâ—TâœVç¡[ë¥`ð§cñ§fð¦eì§fè¤cæ§dæ©hå¬iä­lã®là­kÝ­kÚ­lجk׫jÓ§fÐ¥aÐ¥aÓ¨cÕªeجeÚ®gݱhß³jáµlà´iá³hÞ²gݱhݳiݶkݸjݸhÛ¸fÚ·eÙ¶dÖ³bÓ®`Ï©^Í¥_Í¢^Ê\Ç—YÀ’V³O®ŒO­‹N®‹Q±ŽV±Z°Y®Y§‰U¤†Tœ€P•yJtGŒqDŠoDˆoF…oF„qI…rJ‡tL‰sN‰sN‰sNˆrM…mK„lJƒhJ‚gIfH‚gI…gK†hLŠkOŠkO‰jNˆiM†gK…fJ…cH…cH†bH‡cI‹fLjP“nT–qW˜sY˜tZ‘rVoS…jM~cHx]BrX?oU>nS>nU?nUAlRAhQ?fO?cL`M?`M?]J<^K=`M?aN@bOAaN@`M?^L>^NA]OB_RB`SCdTEdTEeRCeRCiTCiTClRClRCmRAmRAmRAmRAlQ@lQ@kP?jO>iO@iO@jPAhQAgPBgPBfPCfPCdQCdQCdPEdPEhUGhUGgTFeRDcODbNCaMB`LA^JA[G>XD=UA:T@9UA:XC>YD?ZB@YA?U@=R=:N98K65H43F21E33E33C02A.0=-.;+,9),8'-5&-5%/4%,3$)3$)2#&1##1##&&''(())((!)"*#+$,'-%,%-& ,& ,'!-* ++!,, ,-,2"-3!-6"-7#.:"/;#0<%/?%.?$+@%*@%*@%*@%,A&-A&/A&/A&/A&/@$0?#/>"0=!/=!/; /6.4/3.1,0,0,1/1/,-+,)-'+'+'+&,%.#/!/"0"0!/ .-,+++****(&$$%'(((*))'''**&&&% $ $ $ #&% # " " #%&$$$$%%%%%%%%%%%%$$ $%#$$% !##%!& %"! % % %!&!&"'"'"'"'"'"'"'"'"'"'!'"( ( ( ( ( ( ( ( ( ( ( ( ( ( ( (('&%%&'(((( ) )!*!*"*%+&+&*'+'+(,)*)*-*-*.*.*.(.(.(.(-*+*.).)/*/*1 *1 *3(3(3(3(4&4&4&4&5&5&5&5&5&5&5&5&5&5&5&5&5&5&5&5$:!%;!$;!$;!$= $= $= $= $>$=#>#>#="=">!>B"B C!C!D "D "E!#E!#I%'I%'I%'J&(J&(K')K')L((O''O'%P(&Q)'R+&S,'T-(T-(U.'V/(W1(X2)Z4+\6-]7,]7,`:/c=2e?2fA1hA2kE2qH4wM5|P3„V5ŒZ5‘\2ša4¨l:­o<«m:¢j;šf7a3Š_2‡b5†f7…f:…f:…f:…f:‡f9ˆi;‡k;‡m:†o;‡p<Šp?ŒpAqBŽrCtEuF’wH’wHxH‘yI‘{J’|K’|K‘{J{IzKxNyP‘zQ“|S”}T–V—€W˜X˜XšƒZœ…\†]ž‡^Ÿˆ_ž‡^ž‡^£Ša£Ša£Šb£Šb¥‰b¥‰b¥‰d¥‰d§‰g¦ˆf¥„c£‚a¢b¢b£€b¢€d¡h¡j£€l¤€j§~j§~j¥h¥€f©„iªƒf«‚b°„aºˆcÆŽiÕ•qà˜pç–ið˜höžlü¢ný¢múŸh÷šaó–]ñ”Yñ”Yï”[í”Zì“[ç‘XäXàSãšUåŸWë¥]ñ«eõ¬gó­hñ«fî©fì©eê«hé¬kè¯lå®má®lß®kÝ­kÙ¬k׫lÕ©hÒ¦eÑ¥dÒ§cÕªe׬gجeÚ®gÞ²iáµlâ¶kâ¶kãµjâ´iÞ²ià´ká·káºkâ¼kà»jݺhܹgصdÔ±`Ñ«`ͧ`̤_ËŸ^Ç™]–Yº”V¶”Uµ“V·•X¸˜]¸˜_µ–]²“\ªŒV¦ˆTž‚P—{KvErC‹pAˆpDƒmD‚oG„qI†sK‰sN‰sN‰sNˆrM†nL…mK„iK‚gI‚gI„iKˆjN‰kOnRŒmQŒmQ‹lP‰jN†gK†dI„bG†bH‡cIŒgMjP‘lR’mS“nT’nTŠkOˆjNƒhK€eH|aFx]BtZArXAqYAqXBqXDpVElUCiRBgP@dO>^H:]J<]J<^K=_L>`M?`M?aN@\I;^K=`M?aN@bOA`M?^K=\J<^NA^PC_RBaTDdTEeUFfSDfSDkVEkVEnTEmSDnSBnSBmRAmRAlQ@lQ@lQ@kP?jPAiO@gP@gP@fOAfOAeOBeOBcPBcPBcODcODgTFfSEeRDcPBbNC`LA_K@^J?[G>YE7T@9VAX@>W?=S>;P;8N98K65H43G32G55F44D13B/1>./<,-;+.:)/6'.5%/4%,4%*2#(2#&1##0""&&''(())((!)"*#+$,'-%,& .$!,& ,'!-* ++!,, ,. -3#.5#/8$/9%0<$1=%2@&1@&/B'.A&+A&+A&+A&-@%,@%,@%,>#,="+< ,;+:*9)8*6*5-3.2-1,/-0.0.1/+,*+(,'+&*&*%-%.!--+****+)))****(%#$%'())*))'''**&%%% $ $ # # $ $ $ $ $ $ $ $%%%%$$$$%%%%%%%% # $ $%#$$$#$"#$$## % % %!&!&"'"'"'!&!&!&!&!&!&!& &"( ( ( ( ( ( ( ( ( ( ( ( ( ( ( (''&%%&''''' ( (!)!)")%+&+&*'+(+),)*)*-*-*.*.*.(.(0(.(-(+(.).)/)/)1 *1 *3(3(3 &3 &4&4&4$4$5&5&5&5&5&5&5&5&5&5&5&5&5&5&5&5$:!%:!$;!$;!$;!$;!$= $= $=#=#=#<"<!<!; =A!AB B C!C!D "D "H$&I%'I%'J&(J&(K')K')K''O''O'%P(&Q)'R+&S,'T-&T-&U.'U.'V0'X2)Z4)[5*\6+]7,\6)_9,b`M?`M?`M?aN@aN@aN@aN@^K=`M?bOAdQCcPBaN@_L>\J<_OB_QDaTDbUEeUFfVGgTEgTEnYHmXGpVGoUFoTCoTCnSBnSBlQ@lQ@kQ@kQ@jPAiO@fOAfOAeOAeOAeOBeOBcODcODcODcODeRDdQCcPBaN@`LA^J?]I>\H=WC:VB9T@9R>7R>7S?8T?:U@;T<:T<:P;8O:7M87L76I54I54H66G55F35D13?/0=-.<,/;*06'.4'03&-2&*0$(/#%."".""&%''(())((!)"*#+$,%-%,& ,& *'!+( ++!*, *-!+.!+5$.8$/9%0;&/=%2@&1A'2B'0E'/F'/E&.D%-B$.B$.A#-?$-:*:*8+6)5(2'1'0&3.1-0,/+/---..//+,)+')$($*$*%+$-)(($ %$'&(')')(*(##$%'())()(&&&((%$$# # " " " "# #$$# # "'$&#$ ! # %#%#%#%% # # $ $##$$&%! !# $"& $ $ %!%!&"&"'"&!&!%!&!%!&!%!&!%"( '"( '"( '"( '"( '"( '"( '"( '!( '&%%& '!( ' ' '!(!(")")")%*&*&*'+(+)*)*)(-*-*.*.(.(.(0(.(-(-(.).(0)0)1 *1 (3(3 &3 &3 &4&4$4$4$5$5$5$5$5$5$5$5$5$5$5$5$5$5$5$5$:!%;!$;!$;!$= $= $= $= $=#=#<"<"<!; ::@!@@!A A B !B !D "H$&H$&I%'I%'J&(J&(K')K''M'&N(%P((P*'R*(R-'S,'S.(T-(T/'V/(W2)Y3*Z5,\6-\8,Y5)\8*`<.c>.d?-iC0qH4vL4{O4ƒT6ˆW6‹W0’\0e4¢i4Ÿh2›e6“c3^0ˆ_1ˆd4ˆh9‰j<‰j<ˆi;ˆi;ˆi;‰j;‡k;†l9„m9…n:Šp?Œp@qAsCuF’wH‘yI’zJ”|L”|L”~M•N“M’~L‘}K{L‘zP‘zP’{R”}T–V—€W˜X™‚YšƒZ›„[†]Ÿˆ_ ‰` ‰` ˆbŸˆ_£Šb£Ša£Ša£Ša¥‰b¥‰b¥‰d¥‰d¦ˆd¥‡c¦…d¤ƒb¤ƒd¤ƒd¥„e¥ƒg¢ƒn¢ƒo£ƒn¦n§l©€l©€j©h­ƒj®‚e°‚a¶„aÉcÑ’ißšpëžrö£qù¢lü¢mý¢kþ¡hûžeùš`÷™\ó•Xò•Zð—[í—\ê–Zä”Yà‘XÛ‘TâŸYå¥]ì¬dõ²k÷´mö³lò¯hí­eï°iî²lë²ké³mä²má°kÝ®hÚ­iÕ©hѨhÑ¥fÑ¥dÓ§fÖ«gØ­hÙ¯gÚ®gܰgß³jã·lç¹nç¹læ¸kæ¸kèºmê¼nîÀrîÄrîÅsëÅréÃpæÂnäÀlߺiسeÒ¬aϧaË£^Ç›ZÀ™X¼›X¹šY¸™Y¹šZ¹™\¶–[±‘X«ŒU«ŒV¦ˆT ‚P—{K’vFrC‹pA‰qEjA‚lE„nI†pKˆpL‰qM‰qMˆpL‰oN‡mL‡jL…hJ…hJˆkMŒmPŽoRpSpQŽoRnQŒjNˆfJ…cG‚`D…bFˆeI‹hLŽkOjOŒgL‡bG„aE{\?{`BdF‚gJ‚gJeJ|bGz`GqW@qYArYCq[DpZEnXClUCiTAbO@bO@bO@bO@aN?aN?aN?aN?`M>aN?dQBfSDeRCcPA`M>]L<`PA_RBaTCcVEfVFfVFgVFhUDmZIoZIoXHnWGoUDnTCnTCnTCkQ@lS?jSAiR@hQ?gP@fO?dO>dN@dN@dN@dNAbOAbOAbNCbOAdQCcPBdNA`M?_K@]I>\H=[G7R>7S?8S>9T?:P;8P;8O:9N98M87L76J65I54I77H66F35D13B/1>./>+-<,/7(/4'.5&-2&*2#&/#%0""-!!&%'(()))))!*!*"-#.#.$,%&& $("&,#(/$*0#*2#*3"*7#,9$-;$.>$-@&1B'0C(1F&1L&3N%3K%2J$1H$2D"0B"1@!08*6)4*2)1+.*.*.,,*,,---.,-+,*+'*'*%)$(#'"'%$$""$"$"$"&$&$&$&$&&&%%$$#%&$"""$%######## ! ! ! ! ! ! ! ! ! #"$! "#    "#&&&&$$$$$$"##$##!%!#!%!#!%!#!%!#!%!#!%!#!%!#!%!#!% #"&!$#'"%$(#&#'"%#'"%#'"%#'"%#&"%!$ # #!$"%#&#&#&#&#&#&#&#&#&(+(+)+)+)+)+*+*)-*-(.).(0)0)1 *1 *1 *1 *1 *1 *3*3(3(3(5!*5"(5"(5"&5"&5"&5"&6"$5"5"5"5"5"5"5"5"4!5"5"6 #7!$8"%8"%;"&7 :!:!;"=#>$>$? %;!;!;!;!;!;!;!;!=#=!?$@ #A!$B"%C#&E"&G%&G%&H&%H&%J&&J&&J&&K(&K''L)'N'(M*(Q+*P-)R,)Q.*V0-T1+W2,V4+Y4,X6-[6.Y7-Z8,[:+\;,`<,e@.iC0oF4rG4zM6}O5‚S5‰Y5’_4™e3j1Ÿn4’c/d3e5Žf5g6i9‹i9‹i;Œl=Œl=‹l=‹l=‰m=ˆn=ˆn=ˆn=Žr@sAtB‘uC’xG“yH’{I’{I•}M•}M”~M”~M’}N’}N’}N’}N“|P”}Q–U˜W™‚X™‚X™‚Y˜X†]†]…_ž†`ž†`Ÿ‡aŸ‡c ˆb¢‰a¥‰b¦Šc§‹d¨Œg©h«i«i¬Žl«k©‹i§‰g¦‡h¦‡h§ˆi¦‰k †o¢Šr¦Šr¨ˆo§ƒi§f§f©f¨|a­€c¶…eÀŠfËf×”iãœnî¢pù§oü¦kþ¥kþ¤hþ¡düŸbû_ù›]øœ]õ^òž^í^æš\Þ—YÙ“WÓ‘TÏ–SÖŸ\ãªeë°jí²lî²jî²iï³jì²hë³iè²jç²lã²má²lݲmݲnجkÔ¨gѤcÒ¥dתiÛ®kݰlݱjÛ¯hß³jä¸måºlä¹kâ·hã¸iå¸gðÃnðÂlðÂlòÅpõÈsóÉsðÆpíÃoæ½kà·gزa×°aÛ±eÙ¯eЩ^È£\¿¡[¿¤_¿¤a¼ž^µ•X¯T­ŒV®X¤‚R¡Qœ{N™zN•xN‘tLŠnF…iB†lIƒkGƒiH…kJ‰oNŒrQŽqQpP‹lMŠkLŠkL‰jK‹jKŒkLŒkLlMnOnMŽmNlMŠiJ‡fG„cD‚aB„bF†dH‰gL‹iN‹gMˆdJ…aG_D{]Ay`B{`C{aF|bG|dJ}eK~fLv^Fs]Er\Eo[CnZBlX@kVAhVBeS?dSAdSAdSAdSAdSAdSAdSAfUCfUCfUCfUCfUCfUCfUCfUCdUBeXEh[Hj]Jl]JiZGdUBbQ=hWCiWCjXDmXEmXElWDkTBjSAjU@iU=hS>fQ]G<\F;WC:UA8Q>7Q>7R?8R?8P=7M:6O;:N:9M9:K78I56G34F23E12B./C/0D01D01C/0@..>*+<)+<,/:+0:)/7(+7'*4%(4$'2#&&$&''((())!*!*"+#,%/%,)'+ $,!%/#'1"'2!'4!'3 &9"*9"*="+?$-C%/F(2I)4K*5N%5N#4M"3K"2G 2D0@/=.7*3)2+.*.,,+*+*+*++,,-,-*-),'*&*%)%)#(!& %$#$""""""""$$$$$$$$&&%%$$$#%$"! !""!!!!!!!!           !""!  !   !&&&&$$$$$$"##$##!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#"$"$#%#%$&$&#%#%#%#%#%#%#%#%$&#%"$"$"$"$#%$&$&$&$&$&$&$&$&$&(+(+)+)+)+)+*)*),'-(-'.(/(0)0)0)3*3*3*3*3(3(3(3(5"(5"(5"&5"&5"&5"&5"$6"$5!5!5!5!5!5!5!5!6 "6 "6 "6 "7!#7!#7!#9 #;"<"<"<"=#=#=#=#;!;!;!;!;!;!;!;!<#<#>$? %@"$A#%C#&C#&F$%F$%G%$G%$I%%I%%J'%J'%K''L((L((M))O,*P-+P-+Q.*S0,S0,T1+U2,V3-W4.X6-X6,X8-Y9*[:+]<)d?-gB/nE3pG3xK8yL5P4ƒU3Œ[0’c/˜g-™k0d/e3Žf3g6g6Žh7i9‹i9k;Œl=‹l=Œm>Šn?‹o@Šo@‹q@sAu@‘uC’vD’xE“yF’{I“|J•}M•}M”~M”~M“~O“~O’}N’}N“|P•~R–S˜U™‚XšƒY™‚Y™‚Y†]†]ž†`ž†`Ÿ‡cŸ‡cŸ‡c ˆb¥‰d¦Šc¦Šc§‹d©hªŽi«i¬Žj­m¬ŽlªŒj¨Šh§ˆi§ˆi§ˆi¦‰k¢ˆm£‹q©‹oªˆl¨ƒf©€b¬€e¯‚e®c´ƒe¾‡hÆŒgÐgÚ–gçžkð£kö¦kú¦hû¥hü¤eü¢dü aúž]ù\øž_÷Ÿ_ò¡`î ^æŸ]ß›ZØ—WÑ•VÍ—WÑ ]Ü©gå°jé³mì´jî´kï·líµjêµiè´kå³jã²mÞ²kܱmÚ²mÚ­lתiÓ¦eÔ§dØ«hܯkÞ²kÞ²kݱhà´iä¹kåºlä¹jã¸iåºkç½iòÆmòÅjóÅmõÉp÷ËtöÊsòÅpìÂlæ¼jà·eÛ²bÛ²bܳdرbѪ]ȤX¾¡[»£]¼¡^¹\¶–Y±‘V°W¯‹Y¨„T£T|Q™yP—wQrL‰mH„gE‚hGgFƒfH…hH‰lN‹nN‹lO‰jK‰gKˆgHˆfJˆgHŠgK‹hJŒiMjLŒkL‰kI‹jK‡hI‡fG‚cD_C~_BƒaE‚cF†dI…fJ‡eJƒdHƒaF`Dz_Dz`Ez`E{aF{cI|dJ|dJ}eKt^Fs]Eq]Ep\DnZBlX@iWAiWAeT@eT@eT@eT@eT@eT@eT@eT@fUAfUAfUAfUAfUAfUAfUAeVAeVAeYCh\Fj^Hk\GhYDcT?`QbO@cPAcPAcPAeMAeMAeMAdL@aK@_I>]G<\F;WC:T@7Q>7P=6R?8R?8N=6K95N:9M9:L89J67H45F23E12D01A-.B./C/0C/0C/0A-.?+,=++>+-;+.:*-9),7'*6&)4$'4$'&%&''(((' (")#*$+%,(.(+0!(2"%3#&4$'6#'7"'7 &6%>#*>#*A"*B#+F%.I(1O+5R,9M$4M"3K 3H1C.>,;+9*5*2*1*-),*+*)*()*++-)-*.)-(,%*$)$)"("(!'&%$#########&&&&&&&&&%%%$###%$"!!!!"!!!!!!!!          !"##"! !  !''''%%%%$$"##$##!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#"$"$#%#%$&$&#%#%#%#%#%#%#%#%%'$&#%"$"$#%$&%'%'%'%'%'%'%'%'%')+)+)+)+))))*)*),','-&.'.'/(/&0'4 +5+5+5+5 )5 )5 '5 '6!(6!(6!&6!&6"$6"$6"$6"$5!5!5!5!5!5!5!5!7!#7!#7!#7!#6 "6 "6 "8"<#=#=#=#<"<"<"<"<"<"<"<"<"<"<"<"<#<#>$? %@"$A#%C#&C#&E#$E#$F$#F$#H$$H$$I&$I&$K''L((L)'M*(O,*P-+P-)Q.*Q.*R/)S0*T1+U3*V4+W5,W5+W7,W7(Y8)\;(b=+fA.lC1nE1vI6wJ3{L0Q/ˆW,^*’d)”g,e0f2g3g4Ži5Ži5i7Œk8Œk8Œl;Œn`QdS?gUAhVBiWCiWCkVCjU@hV@hV>gU=eS;cQ;bP:aO;`N:aO;aO;aN=bO>bO@cPAcPAcPAeMAeMAeMAdL@aK@_I>]G<\F;VB9S?6O<5O<5Q>7P=6M<5J84K76K78I56H45F23E12D01C/0?+,@,-A-.B./B./B./A-.@..?,.=-.<,-:*+8()7'(6&'5%&'''&&''( (!(")&+',*,+-,+6"+8#(:%*<%+?&,?&,@%,A#+E&.E$-F",F",I#.L&1Q)4S*8L#3K"2H1B->*:(7(4'3)1)/(,(+)*)'('**,+-)-)-(,&*$)"'!'!' &%%$$#########&&&&&&&&%%%$$##"$##"!!!!!!!!!!!!          !"##"! !      !''''%%%#$$"##$##!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#"$"$#%#%$&$&$&$&$&$&$&$&$&$&%'$&#%"$"$#%$&%'%'%'%'%'%'%'%'%')+)+)+)+))))*)*',','-&.'.'/(/&1&5+5+5+5+5 )5 )5 '5 '6!(6!&6!&6!&6"$6"$6"$6"$5!5!5!5!5!5!5!5!9#%8"$8"$7!#6 "5!5!6 >!%>$>$=#<";!;!: <"<"<"<"<"<"<"<"<#<#>$? %@"$A#%C#&C#$D"#E#$E#"E#"G##G##H%#H%#K''L((L)'M*(O,*P-+P-)Q.*P-'Q.(Q.(R/)T2)U3*U3*V4*U5*V6)X7([:)`=*e@-iC0mD2tI6wJ3yL/~P.…V*Œ])‘c(”h+‘f/g1h4h4‘i5j6k7k7l9m:o;q?tB’vD“yH“yF“xC”yD”yD•zE•{H•{H–|I–|I•~L•~L”~M•N•N•N•€Q•€Q–S—€T™‚V›„Xœ…[œ…[œ…[œ…[ž‡^ž‡^ž†`Ÿ‡aŸ‡a ˆb ˆd¡‰c¥‹f§‹d¨Œe©fªŽi«j­k®l¯‘m­k¬ŽlªŒj«Šiª‰h«Ši«Ši°m±k´Œi¶Šeºˆc½‡aÀˆcÉdÇ‹gÍjÔ“kÚ•kà–eçšdðždõ£gï eð¡fó£hõ£gù£fû£dû£cû¤aþ§dü§dù¨fö©eð§cé¤aä¡]ÜŸ\Ò[Ò¡^Ù§bß­fæ±kì¶nðºpò½qî¹mì¸mé·nåµkà´mݳkÙ±kذkÞ²qݰoܯlÛ®kܯkÞ±mß³là´kâ¶kã·lä¹kä¹jä¹jç¼míÃqòÈtõÌrõÌp÷ÎtùÒwûÒzöÎvîÆoæÁiß¹fݹeÜ·fÞ¹hÞ¹iصdѬ^ȧZ¾¢Y·ŸY¶›X¶™W¶—W´”Y°U«‡SªˆX¦„W TšzS”vPqLƒiF~dC{`C{`E|aF€eJ„fL„fLaG{]CxX?xX?yW>zX?}[B€^E„`H†dKcGdGcG~cF~`Fz_Dy[Av[@z\Bw\Ay[Av[@y[Cy^C}_G|aF|bG|bG|bG|bGzbHzbHxcHxcHu_Gs_Fr^Fq]Em[CkYAjXBjXBhWChWChWChWChWChWChWChWChWChWChWChWChWChWChWCgXChYDg[Ei]Gi]GiZEfWBcT?`QfT@hVBjXDjXDlWDlWBiW?hV>gU=fTbO@cPAcPAeOAeMAeMAeMAdL@aK@_I>]G<\F;UA8R>5O<5O<5P=6P=6L;4J84I54I56H45G34E12D01C/0C/0>*+>*+@,-A-.B./C/0D01C11A.0>./=-.<,-:*+8()7'(7'()))(()'(!)#*&))++--,/!.2 ,:#+?$+A&-E'/G)1I*2J)2J)2M)3M'2M%0L$/L".M#/O#0O%3K"2G 2C.>*9(7'5&3&2(0(/*+)+))('*'*(,(,(,(,&+$)"' %%%$$$###$$$$$$$$&&&&&&&&%$$##"""####"!! !!!!!!!!!!!!!!!! !"#$$#"! !!!!!! ((&&&&$$$""#"# # #!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!!!!""""####$$$$$$$$$$$$$$$$$$$$&&%%$$####$$%%&&&&&&&&&&&&&&&&&&)+)+))))*)*),',',',&.'.'1&1&2'2'6!*6!*6!*6!*6!*6!*6!(6!(6!&6!&6!&6"$6"$6"$6"$6"$5!5!5!5!5!5!5!5!9#%8"$8"$7!#6 "5!5!6 >!#> "> "=!< ;;:=!=!=!=!=!=!=!=!<#<#> "?!#@"$A#%C#$C#$D"#E#"E#"E#"G$"G$"H%#H%#K(&L)'L)'M*(O,(P-)P-)Q.*P-'P-'Q/&R0'S1(T2)U3)U3)U5*S6(W7(Z9(_<)d?-iC0mD2uJ7wJ3zM0~P.†W+Œ^*”f+–j-“i/“j2“j4“l5“l5’m8‘n8‘n8n9p:r<’t@“xC•zE—{I˜}H˜zF˜zD–{D—|E—|G—|G—~H—~H”}I•~J•~L–M–€N–€N—P—P˜‚S™ƒT›…V‡Xž‡[ž‡[ž‡]†\ž‡]Ÿˆ^Ÿˆ_ ‰` ˆb¡‰c¡‰c¡‰c¥‹f¥‹f¨Œg©hªŽi«j­k®l°l¯Žk®j¬‹h­‹h­‹h®Œi°Œj¸l»j½eÁeÇeËdÍŽeÎeÔiÙ”kߘlã™jçšfìšbó`õ¡cêždêŸfî¢hó¤i÷¦gû§gü§fý¨gÿªgþ«gý­hú­iõªfî¨cé¤_ã¤_Ö¡]Õ¤aÚ¨cß­fç²lí¹pð¼qò¾sîºoëºnè¸nå·láµnݳkÚ²lÙ±kß´pß´pß´pÞ³oݲmݲmÞ´lßµká·kâ¸lãºkãºjãºjè¿mïÆtôÌwöÏt÷ÐsøÑvøÓxùÑyòÍtêÅmâ¾fܸdÛ¸dܹgݺhܹhÖµdÑ­_Ȩ[¿£ZºŸX·šV¶™W¶—W³“X¯ŒTª†RªˆX¦„WŸ~U™yR“uO‹oJ‚hE{bCy_Dy_F{_G}aIcK~bJ{]EwYAqQ:pP9oO8pP9uRqW>sWAu[By]Gz`G|bG{cG{cG{cGzbHzbHxcHxcHt`Gt`Gs_Go]Em[ClZBkYCjXBiYBiYBiYBiYBiYBiYBiYBiYBiYBiYBiYBiYBiYBiYBiYBhYBiZCh\Di]Ei]Ej[DgXAeV?cT=cShV@jXBkYClZDnYDmXCkW?kW?jV>hTdN@eOAeOAeOAeMAeMAeMAdL@aK@_I>]G<\F;UA8R>5O<5O<5P=6P=6L;4J84I54I54H43G32F21E10E10D0/?+*?+*@,+A-,C/.D0/F21F44B/1@01?/0=-.;+,:*+9)*8()-,,++**($+'**,-,/!.3#.5#/8$/?$-C%-F'/H)1J)2K*3M)3M)3N(3P(3P&2O%1N"/M!.L -J .G!0D0@,:(7'5&3&2&1)/(.*+)*))('*'*(,(,(,'+$)"' %$########$$$$$$$$&&&&&&&&$$$#"""!"####" !!!!!!!!!!!!!!!!!"#$$#"! !""""! &&&&&$$""""""# # #!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!#!!!!""""####$$$$%%%%%%%%%%%%%%%%&&%%$$####$$%%&&&&&&&&&&&&&&&&&&)+)+))))*)*',','-'.(/(/&2'3(3(3(6!*6!*6!*6!*6!*6!(6!(6!&6!&6!&6"$6"$6"$6"$6"$6"$5!5!5!5!5!5!5!5!7!#7!#7!#7!#6 "6 "6 "8"<!=!=!=!< < < < =!=!=!=!=!=!=!=!<#<!> "?!#@"$A##C#$C$"E#"E#"F$#F$"H%#H%#I&$I&$K(&L)'L)'M*(O,(P-)P-)Q.(P-'P-'Q/&R0'S1(T2)U3)T4)U5*T6+W7*Y9*^=,c@-hC1kE2tK9uK5yK1}Q.„W-Ž`,–h-šn1–l2•m2–n3–m5—n6–o6•p9”q9”q9“r<“t=•x@—yC—|E™~GšHš|Fš|F˜}F˜}F˜}F˜}H˜}H˜I–|I•~J•~J–M–€N—O˜‚P˜‚Q™ƒRš„Uœ†WžˆYŸˆ\Ÿˆ\Ÿˆ^Ÿˆ^Ÿˆ^Ÿˆ^Ÿˆ_ ‰`¡‰c¡‰c¡‰c¢Šd¤Še¥‹f§‹f¨ŒgªŽi«j¬Žj­k®j®j­Œi®Œg¯j°Ži²Žlµj¾’k‘hÆ‘gÍ’fÕ•iØ•hÙ’f×dÝ”ià—jå›lé›jëšcî™`òš[òž`çœcæŸgë£iò¦l÷©kü«lÿ«kÿ­kÿ¬iÿ­iþ¯jü¯iø®gñ«eí©bæ§`Û¦bÙ¨cܪeâ°iè¶oí»rï½tï¾rë¹pêºpç¹nã·nà¶lÞ´lÛ³mÚ²làµqá¶râ·sàµpݲmܲjݳiÞ´jßµiá¸iâ¹iãºjä»iéÀnðÇuôÎyöÑvöÒtõÐuõÒvôÏvîËqæÂjÞ¼cÚ·cظcÙ¹fÙ¹fØ·fÓ´bÏ®_ʪ]À¤Z¾¡[»žX¸›W¶—W±‘V®‹Sª†R¨†V£‚U|S–xRtOˆnKgEzaCx^Ev[Fw[Fx\Gy]Hx\GvWCrS?kJ7jI6iH5iH5mJ7rOmU=nT=nV>qW@s[Cw]Fx`FzbHzbFzbFzbF{cIydIydIxdIuaHt`Gq_Gp^Fn\DlZBkYCkYCk[Dk[Dk[Dk[Dk[Dk[Dk[Dk[DjZCjZCjZCjZCjZCjZCjZCiZCj[Dh\Di]Ej^Fk\Ej[DiZChYBhXAiYBlZDm[En\Fn\Fp[FoZElX@kW?jV>iU=gR=eP;dOdN@eOAeOAeOAeMAeMAeMAdL@aK@_I>]G<\F;VB9S?6O<5O<5Q>7P=6M<5J92J65J65J65I54H43H43G32G32B.-B.-B.-B.-D0/F21G32H64D22A12@01?/0=-.;+,:*+:*+0...,++ )&-),-.1!.4".7&0:&1=&0B'0E&.G&/G&/G&/F%.G#-F",J$/K%0O'2O'2O%1M#/J ,G,E 1?/;+7(5&3&3)2*1+0+/-,,+,*+(+'*'+(.&-%,$+!(&$$$$$$$%%%%%%%%%%$$$$$$$$$###""!!""#$#" !!!!!!!!"""""""""#$$$$#" !"##"! '''%%%%#"!!"" ! ! !"#"#"#"#"#"#"#"#"#"#"#"#"#"#"#"#"!"!#"#"$#$#%$%$&%&%&%&%&%&%&%&%&&&&%%$$$$%%&&&&''''''''''''''''*)*)*)*),',',',&0)0)2'3(3(4!'5 '6!(8!+8!+8!)8!)8!)8!)8!)8!'7 &7!$7!$7!$7!#7!#7!#7!#5!5!5!5!5!5!5!5!6 "6 "6 "6 "7!#7!#7!#9 #; < < < =!=!=!=!> "> "> "> "> "> "> "> "<!<!> "?!!@""A##C#$C$"F$#F$"G%#G%#I&$I&"J'#J'#K(&L)'L)%M*&O,(P-)P-'Q.(Q.(Q/&R0'S1(T2(U3)V4*U5*V5,T6+X8+Z:+^=,dA.hC1lF3pG5rH2vH.zN+‚U+‹`-–i0›o2™o3™o3™o3™q6šr7™r7—s9—t:—t:–v=–w>—z@™|D›~FœG€HœGœGœGœG›~F™~G™~G˜G–}G–}G•~H—€L˜M™‚NšƒOšƒQš„Sœ†UžˆYŸ‰Z Š[¡‹\ ‰] ‰]Ÿˆ^ ‰_ ‰_ ‰_¡Ša¡Ša¢‹b¢‹b£‰d¤Še¤Še¥‹f©hªŽi«g¬Žh¬Œf­‹f­‹f¯Œf±i³j¸’nº“lÓkÈ“iÏ”jטlàœmâœkà–eÝ“bà–gæšiékêiëšbì˜\î™Yì›\ãbâŸhé¤kð¨n÷«oý¯oÿ°oÿ±oÿ®jÿ¯hÿ±iü²iù±gó­eï«bèªaߪdÜ«fÞ­hä´lë»sî¾vî¾vì¼ré¹qè¹qç¸pã·ná·mà¶lݵmÜ´nÞ¶qà¸sâºtß·qÛ³mÙ±iÙ²gÛ´iÛ´gݶgàºiâ¼kä¾kèÂoîÈsóÎvøÓxõÒtòÏsðÏrïÌréÇmâÀgÚ»a×·b×¹c׸eÖ·dÔµcϳ`ί_Ê­_Ã¥\¤\Á£]¼Z·•V±R­ŠR«‡S¥ƒS R›zQ“uOŽrM‡mJ~fDxaBtYDrWDoTAoTAqTBpSAmP>jM;gH6eF4dC2cB1eD3jI8qM=rQ@pUBmWBpWCnXCoVBkU>kR>hR;jQ;hR;kRpX@q[Cu]Ew_Ex`FyaEwbExcFydIzeJzeJzfKuaHsbHr`Hp^Fm]Dl\Ck[DjZCl\El\El\El\El\El\El\El\Ek[Dk[Dk[Dk[Dk[Dk[Dk[Dj[Dj[Dh\Dj^Fk_Gm^Gm^Gm^Gl]Fm]Fn^Gp^Hq_Iq_Ip^Hr]Hq\GmW@mW@lV?jT=hR=gQeN@fOAfOAfOAeMAeMAeMAdL@aK@_I>]G<\F;WC:T@7Q>7P=6R?8R?8N=6K:3L87L87L87K76K76K76J65J65E10E10D0/D0/E10G32I54I75E33C33A11@00>..=--<,,;++01///.,!**/+-0 -4".8$0:&1=(1?(2C(1E'/F'/D%-B#+@!)>&=%E!+G#-L&1N(3N(3M%0I!,E,A!0=.9*4'3&2&2*3,1,0,--,-+,+,(+(,'-&-&-%,#*'%####$$$$$%%%%%%%%$$$$$$$$$##""!!!!"$$$" !!!!!!!!"""""""""#$%%$#" !#$$#! ''%%%%##!!!" ! ! !"#"#"#"#"#"#"#"#"#"#"#"#"#"#"#"#"!"!#"#"$#$#%$%$&%&%&%&%&%&%&%&%''&&%%$$$$%%&&''''''''''''''''''*)*)*)*',',',&,&1 *1 (3(4 )4!'5"(6!(7")8!+8!+8!)8!)8!)8!'8!'8!'7!$7!$7!$7!#7!#7!#7!#7!#5!5!5!5!5!5!5!5!4 5!5!6 "7!#8"$8"$;"%9;;< =!> "> "?!#> "> "> "> "> "> "> "> "<!<!> ?!!@""A##C$"C$"G%#G%#H&$H&$J'#J'#J'#K($K(&L)%L)%M*&O,(P-'P-'Q/&Q/&R0'R0'S1'T2(U3)V4*V6+T6,U7,X8-Z:+_>/cB1iD2lE4mD2oD1rF-xK*€S*Š_,–i0›o2šq3›r2›r4œs5›s5œt6›u7™u7™w:™w:™y<™{=›}A›~B€D€D€F€F€FœGœGœG™F™~G—|E–}G—~H—€J˜K™‚NšƒO›„P›…Sœ†UžˆY Š[¡‹\¡‹\¡Š^¡Š^Ÿˆ^ ‰_ ‰_¡Š`¡Ša¢‹b¢‹b¢‹b¢ˆc£‰d¤Še¥‹f¨Œg©h«g­g¬Še¬Šd®‹e±‹f´Ži·‘j»“o¾”lÅ”kË•iÔ—kÜœnæ oèŸlå™gà”bä˜gç›iêžlëžhê›bè˜[ë—Yèš\âdß¡hç¤mî©nø®qü±pÿ³qÿ´oþ¯jÿ±iÿ²jü²iø³hó¯dï­cè¬cá¬fÞ­há±iç·oí½uî¿wì½uç»rå¹på¹pä¸oâ¸ná·má·mÞ¶nÞ¶nÞ¶pá¹sâºtà¸pÛ³kرfرfÚ³fÙ²cܶeàºiâ¼iä¾kèÂmîÈsóÎv÷ÔxóÒsðÏríÌoëÉoäÅjÞ¿eغ`Ö¸bÖ¸bÖ·dÒ¶bϳ`ͱ^̯_Ë®`æZŧ^Ħ^¾ Z·•U¯P¬‰Q¬ˆT£Qž}P˜xO’tNpN…mK}fFw_CqVCnSBjO>iN=kN>kN>iLgQeN@fOAfOAfOAeMAeMAeMAdL@aK@_I>]G<\F;WC:UA8Q>7Q>7R?8R?8O>7L;4N;7N:9M98M98M98M98L87L87H43G32E10E10E10G32I54J86F44C33B22@00?//=--<,,;++441//.!.$-*/."06&3;)5?+7?)5>'1<%/=#,(;(:*7*4)1'0&.&/)/*-+++++*+)+'+'+'+!(!* )(&%$#&&&&&&&&%%%%%%%%%%$$##""###""!!                 !!    !!##"""!!!  "#$##"%%%%#### ! !!"$#$#$!# #"#"#"#"#"#"#"#"#"#"#"$#$#%$%$&%&#&!&!&!&!&!&!&!(#(#(#(#(#(#(#&#$"$"$"$"$"$"$"$"#!#!#!$"$"%#%#&$*',','-(-(.(/(0)5!*5!*6!*6!(6!(6!(6!&6!&9"*;!*;!*: ):!'9 &9 &9 $9 $9 $9 #9 #9 #9!!9!!9!!5!5!5!5!5!5!5!5!6 "6 "6 "6 "6 "6 "6 "8"<!==========> > ?!!?!!?!!=! =! ?!!?!!@" @" B#!B#!F$"F$"G&!H'"J'#K($L)#L)#N+'M*&M*&L)#M*$N+%P-'Q/&R0'S1'S1'T2(T2(U3'U3'T4)T6,S7+U7,X8)[:+^=,d?/f?.h?-mB/uI0{N-‚U,Š^-”i2›r4q2žr1žu3 w5 y8 y8Ÿy:œy9œz:{;œ}=œ~>Až€Bž‚Cž‚C¢„H£…I¤†J¤…L£†L¢…K ƒIƒJ›HšI›‚J„Lž…MŸ†Pž‡QŸˆTŸ‰W ŠY¡‹Z¡‹Z¡‹\ Š[Ÿ‰ZžˆYŸˆ\Ÿˆ\Ÿˆ^Ÿˆ^Ÿˆ^Ÿˆ^Ÿˆ_Ÿˆ_ ˆb ˆd£‰d¤Še¨Œg©h¬Žh®Žh¬Šd­Šd°Še²Œe¶h»”kÁ—qĘqÈ—nКnÛžqá¡qè¢oçžkå™gâ–bæšhä›hä›hãšeä™`ä˜\ä–Xá—XÚ™_ÜŸfæ¥mìªnó¬n÷­lü±nÿ´nÿ´nÿ´lÿµlýµk÷³hñ¯cë«aäª`Þ¬cß°häµméºrê»sç»rä¸qá·oݳkݳkÞ´j߸mã¼qå¾sä½rá¹qß·qá¹sá¹sÞ¶nذhÔ­bÓ¬aÓ¬_ܵfÞ¸gá»já»hâ¼iå¿jëÅpïÊqðÍqïÎoíÌoèÉläÅjàÁfܽcÙ»a×¹cÒ·`β^˯[É­ZÈ®ZÉ®]̯a̯cË«bÆ¥^¡\¿œ\¹•W²V«‡S¦„V¡€UšzS’vO‹qN‚jHxaAp[>hO;fL=cI:cI:eI;fJmSDiTCfQ@cN=aL;`K8`K8aL7bM8cN9dP8gS;jV=nZAq]Ds_Dr]Bs^At_Bu`CuaFuaFt`Eq`Dq`Fp_En^Em]Dl\Cj\BiZCiZCl\Ck[BjZAiY@jZAl\Cn^Eo_Fp`Go_Fm]Dl\Cl\Cl\Cl\Cl^Dk]Cj^Dl`FnbHqcIqcIqcIqcIscJscJtbJsaIsaIr`Ht`Hs_Gq[DpZCnXAkU>hR=fP;dM;cL:dM;eNbK=fNBeMAeMAdL@bLAaK@aK@`J?^JA]I@ZG@XE>VC7S@ > ?!!?!!?!!=! =! ?!!?!@" @" B#!B# F$"F% G&!H'"J'#K("L)#L)#N+'M*&M*$L)#M*$N+%P.%Q/&R0&S1'S1'S1'T2&T2&U3'T4'T6,S7,U7,V9+Z:+^=,b>.e@0f?.lC/rH0zO/U.Š^-“h1šq3Ÿs2 u0¢w2¢z5£{6¢{6¢{8 {7 }9 <¡€= >¡‚A¡„B¢…C¡…D£…G£…I¤†J¥‡K¥‡K£†L¢…K¡„JƒJƒJž„Kž…M ‡O¡ˆP ŠQ ‰SŸ‰W ŠY¡‹Z¡‹Z¡‹\ Š[žˆY‡XŸˆ\Ÿˆ\Ÿˆ^Ÿˆ^Ÿˆ^Ÿˆ^Ÿˆ_Ÿˆ_ ˆb ˆd£‰d¤Še¨Œg©h®Žh¯g®‹e±‹d²ŒeµŽeºh¾”jÁ—oŘoɘoÑ›oÜŸrã£sê¤që¢mêžjç›gåœgäiäiâfãœdâœ`â›[á›]ÚœaÞ¡hå§lí«oò¬nö¯mû²nÿ´pÿ·pÿ·nÿ¸nû·lö´hï±fê¬aã«`Þ¬cß°häµmæºqè¼sæ¼rã¹qà¸pݵmÛµlܶmáºoå¾sçÀuæ¿tä½rã»sä¼vã»sß·oÚ³h×°e×°cرbÞ¸gß¹hàºgß¹dß¹dâ¼gèÃkìÉoìËnìËlêËnèÉlåÆkáÂgÛ½cÙ»aÖ¸bÒ·`β^Ê®ZÇ­YÇ­YÈ­\Ê­]Ë«^É©^Å¥\â]À[º–X²Vª†R¤‚TŸ~S™yR‘uPŠpOjJwbCq\AjQ=fL=bH9aG8cG9dH:bF8aE7]@2`C5fF9fF9eE8fF9iG;iL>jPChRDhRDhSBgRAeP?dOo[Bp\Ar]@s^Au`CubDvbGuaFsbFraEraGqaGp`Go_Fm_El^Dk\Ek\El\Ck[BjZAjZAjZAl\Cm]Do_Fp`Go_Fn^El\Cl\Cl\Cm]Dl^Dl^Dk_EmaGocIrdJrdJrdJrdJueLueLucKtbJsaIr`Ht`Hs_GpZCoYBmW@kU>hR=fP;dM;cL:cL:dM;fO?fO?fOAeN@dM?cL>eMAeMAdL@dL@cMBbLAbLAbLA_KB^JA[HAYF?WD=TA:RA:Q@9TA=TA=TA=S@ > ?!?!?!=!=!?!?!@" @#B# B# F$"F% G&!H' J'!K("L)#L*!N+%M*$M*$L)#M+"N,#P.%Q/&R0&R0&R0$S1%T2&T2&T3$T4'S7,R7,S7+U8*Z:+]<-b>0e@0f?.lC/rH0yN.€T-ˆ^.“h3šq3¢w3£y1¥{3¥}7¦~8¥8¥~9¤9¤‚;£‚=¤ƒ>£…?¤…B¤‡C¥ˆD¥ˆD¥†F¦†I§‡J§‰K§‰K¦ˆL¤‡K£†J£†L¡‡L¢ˆM£‰P£ŠQ¤‹R¤‹R£T ‹V ŠX¡‹Y¡‹Y¡‹ZŸ‰XžˆY‡XžˆYžˆYž‡[ž‡[ž‡]ž‡]ž‡]ž‡^ ˆb ˆd£‰f¤Šg¨Œg©h®Žh¯g¯Œf²Œe¶f»‘g½“iÀ•j—mÖlɘmЛoÛ¡qä¥rí§sï¦oï¤mí¢kæhåžhâŸjâŸhá fã¡eã¢bã£cÜ dá¥iç©lí­oò®mõ°mü³oÿ¶qÿºrÿºrÿ»rû¹oô¶kì²hç­cà«_Ý­aß±fáµjå¹pæ¼rã»sàºsÞ¹rÜ·pÛ·mܸná»pæÀuèÃuçÂtåÀrçÁxæÀwä¾uàºqÛµjÙ³hÚµgݸhà»jà»jà¼hß»eÞºdà¼dåÁiéÆlèÇjéÈiêÉlêÉlæÇlâÃhݾdÙ»aÕ·aÓµ_ͱ]Ê®ZÇ«XÇ«XÆ«ZÈ«[ǧZÇ¥[Å£[Ä¢[Äž]½—Y²ŽTª†R¡Qœ}Q”vPsNˆpN‚kKydEs_DjT?eN>aG8^D5_E6`F7aE7`D6^A3bE7fI;hK=jJ=jJ=jJ=iL>gM@gPBiRDkTFlUEkTDjSAiS>gQr_As`BubDvcEwcHtcGtcGsbFscIrbHrbIpbHn`Fm_Ek_Gl]Fk[Bk[AjZ@jZ@k[Al\Bm]Cn^Dp`Fo_En^Dm]Cl\Bl\Bm]Cm_Dn`EmbFodHqfJtfKtfKtfKseJxhNwgMwfLveKudJsbHt`Gt`Gq[DqXBpWAmT>jQ=hO;fL;eK:dJ9eK:fL=gM>hNAgM@fL?fL?cK?cK?dL@dL@cMBdNCdNCdNC`LC_KB\IBZG@XE>VC > ?!?!?!=!=!?!?!@#@#B# B#F% F% G&H' J'!K("L*!L*!N+%M*$M*$L)#M+"N,#P.%Q/%Q/%R0&R0$S1%S1%T2&T3$S3&R6+Q6-S7,T8,W:,\<-`?0c?1d?/iC0qG/wN0U-ˆ^.“h3™p2¦{6¨|3©5«7¬‚:ª‚:©ƒ:©ƒ<§‚;¥ƒ;¥„=¦…>¥‡?¦ˆ@¦‰C¦‰C§ˆG¨‰I©‰LªŠMªŒN©‹M¨ŠN§ŠN§ŠP§ŠP¥‹P¦ŒQ¦T¦T§ŽU§ŽV¢‹W¢ŒZ¢ŒZ¢ŒZ¡‹Z ŠYžˆY‡XžˆYžˆYž‡[ž‡[ž‡]ž‡]ž‡]ž‡^ ˆb ˆd£‰f¤Šg¨ŒgªŒf®Žh¯g°eµŽe»‘g¿”iÁ–k•k•kÔhÉ–kΚkÙŸoã¤oí¨qð¨nò§nñ¦mçžgå gã iá£jâ¤iä¦iå¨iæ©já¥gä¨jê­nï¯oñ°lö±lûµoÿ·rÿ¼tÿ½tÿ½sù»rò¸né³iâ®cݬ`Þ®bß±dáµjã¹mã»sá»rߺsܺrضnضnÙ·mß»oäÀtèÃuçÂråÀrèÂwçÁxå¿vàºoÛµjÚµgÜ·gà»kâ½läÀlæÂlæÂlã¿gâ¾fäÀhæÃiçÄhçÆgéÈkêÉlèÆlãÄiÞ¿eܽcÖ¶aÓµ_б^˯[ȬYÇ«XÆ©YÆ©YŤWŤWÅ£YÅ£\ÅŸ^¾˜Z²ŽT©†P ~Pš{O“uOŒrOˆpN€kLzgIuaHmVDgP@bH9]C4]C4_E6`D6`D6aD6dG9hK=lOAoOBnNAmM@jM?eK>dL@fOAiRDkTDlUCmWBmW@lV?mW?oYAp[@q\?r]>r]@q\?taCubDvcExeGveIveIudHteHrbHrbHpbHoaGn`Fm_Ej^Fj^Dk[Bk[Ak[Al\Bl\Bm]Cn^Dn^DqaGp`Fn^Dm]Cm]Cm]Cn^Dm_DoaFncGpeIrgKugLugLugLtfKyiOyiOyhNwfLveKtcIuaHv`HsZDrYCpWAnU?kR>hO;fL;eK:dJ9eK:eKbJ>cK?cK?cMBdNCeODeOD`LC_KB]JC[HAZG@XE>VE>UD=UBWD>WD>XE?WD>UB > ?!?!?!=!=!?"?"@#@#B#B#F% F%G&H' J(K) L*!L*!N+%M*$M+"L*!M+"N,#P.$Q/%Q/%Q/#Q/#R0$R1"S2#S2#S3&Q4,Q6-R6+S7+W:,[;._>/c?1d?/iC0qG/vM/~T,†^-‘h2™p2©7¬€5­6®„8¯…;®‡<¬†;¬†=§ƒ9¥ƒ9¥…<¦†=¥‡>¦ˆ?§‰A§‰A©ŠGª‹J«ŒL­ŽN®O¬ŽN¬ŽP«OªQªQ©R©R©TªUªU©W¥ŽX¤Z¤Ž\¤Ž\£[¡‹YŸ‰XžˆWžˆYžˆYžˆYžˆYž‡[ž‡[ž‡[ž‡]Ÿ‰dŸˆf¢Šf¤Šg¨ŒgªŒf®Žh¯g³h·g¼’hÀ•j•kÄ•iÔhÓeÇ”e͘fØœhá£jë¦kï¨jò¨kò¨ké¡fç¢gä£iâ¤gâ¦hå©jç¬jé®lå©jè­kí°oð±nò±m÷²mü¶pÿºrÿ½tÿ¾tý½u÷»rï¹oæ´k߯eÛ­bݯbß±dà´iâ¸làºqß»qÝ»sÛºsÕ´mÕµlÖ¶kÜ»nã¿sæÂtæÁqä¿oæÂvæÂxã¿sÞºnÚ¶jÙµgܹhà½lãÀnèÅqìÊsíËtêÈoçÅläÂhåÂhçÄhèÅgêÇkëÈléÆlåÃiâÀgÞ¿eظcÖ¶aÔ´aϰ]Ì­[Ê«YɪZÈ©YÆ¥VȤXȤZÈ£\Å \¾˜Y²ŽTª‡Q ~Pš{O’tN‹qN‡pPlM{hJwcJnWEiRBaJ:]F6_E6`F7aG8`F7dH:fJdJ=eK>gM>kQ@oVBrYCsZDu]Ew_Ex`DybCybBxaBu`AvcEwdFveGwfHxgKxgKvgJufIqaGoaFoaGn`Fk_Ei]Ci]Eh\Bl\Cm]Cm]Cn^Do_Eo_Eo_Eo_EqaGp`Fo_En^Dm]Cm]Cn^Dn`EpbGodHqfJrgKugLvhMugLugLyiOyiOyhNxgMveKudJwcJwaIu\FuZEsXCpU@nS@kP=iN=hMfJ>gK?fL?aI=aI=bJ>bJ>bLAcMBcMBdNC`LC_KB]JC\IBZG@YF?WF?VE>UBXE?XE?XE?ZGAYF@WD>TA;Q>8O<6L93J92H62E61D50D50C4/C4/C4/C4/"*")"*#+&,(.+ 1,!2,0*.(+%(%&$%%'%&#%"#!# !"!# #"&"%"'#'$)%)&+&*'()()((''&&%$%#$%)%)$*"(!'%$%''''''''(((((((&%########""!!    ! !!                               !"""#$%&&%$ % % $ $ $ $!"!""# %!%!%#"!&$&$&$&$&$&$&$&$&$&$&$'%(&(&(&)%'!' ' ' ' ' ' ' ' ' ' ' ' ' ' & %!$!$!$!$!$!$!$!%"%"%"&#'$'$'$)%.(/(/(0)2'3(3 &3 &8#*8#*9"(9"(9#&9#&;"&;"& > ?!?!?!=!=!?"?"@#@#B#B#F%F%G&H' J(K) L*!L*!N+%M*$M+"L*!M+"N,#P.$Q/%P."Q/#Q/#Q/#R1"S2#S2#R2%Q4,P5,R5-S7+V8-Y<.^=.b>0c>.hB/oF0vM/~T,†^-‘h2˜o/¬‚8®ƒ5°…7²†;²ˆ<°‰<°‰>®ˆ=¨„8¦„:§…;§‡<¦ˆ?§‰@¨ŠA¨ŠB«ŒI¬L®O¯P°‘Q°‘Q¯‘S¯‘S­T­T«‘T«‘T«‘V«‘V«‘Vª‘X¨‘[§’]§‘_¦^¥]£[ ŠYŸ‰X Š[ Š[ Š[ Š[ ‰] ‰] ‰] ‰_Ÿ‰dŸˆf¢Šf£‹g¨ŒgªŒf®Žh°e·‘j¹’g¼’h¿’h“g“eÓeÅ’cÈ”dÏ—dØœfâ¡gë¥iò¨iô©hô©hì¥gé¥få¥gã¦gã§hå¬iè¯lê±lê¯mí°mñ²oó²nõ²lø´mü¸oÿ¼sþ¼rü¼rù½tô¼rí¹påµmݱhÙ­dݯbݲcß³hÞ·jß¹pÝ»qÜ»tÙ»sÓµmÓµl×·nÛ»nâÁtçÄsèÃsæÁqåÁuæÂxäÀtà¼pܸjÛ·iݺià½kæÃoëÈtðÎwñÏvîÌsêÈoçÅkçÄhìÇlìÈjìÇlêÇkéÆlçÄjåÁiãÁhݺfÚºe×·dÔ´aѰ_Í®\ˬ\˪[̨ZʦXÉ¥YÈ£\Å \¾˜Y³U«ˆR£Sœ}Q”vPŒrO‡pPnPziMwfLnYFjSCdM=aJ:cI:eKiN=hMXE?YF@YF@[HBZGAXE?UB8O<6M<5J84G83F72E61D50D50E61E61$)$'$)%*(,*.- 1.!2- 2+0)-'+$("&!'!%%)$&"&!#$"%#")"'#*$)$,%+&.(-(+'(%&$%#&"%"%"%&*&*$*#)!'%&%&&&&&'''(((((((&$""""""""""!!    !                                   !"#"#$&&&%%!&!&!%!%"%"%"#"## $!%!%!$##"&$&$&$&$&$&$&$&$&$'%'%'%(&(&)')%' ''''''''''''''&%$$$$$$$% &!&!&!'"'"(#)#-'.'.%/&1&2'3%3%6!&6!&7 &7 &9 $9 $9 $9 $!>!?"?"?"=!=!?"?"@#@#B#B#F%F%G&H' J(K) L*!L*!N,#M+"M+"L*!M+!N,"P.$Q/%P."P."Q0!Q0!R1"R1"R1 R2%P5,N6,P5,R6*V8-X;-^=.b>0c>.hB/oF0uL.}S+…],g1˜o/­ƒ9¯„5±†7³ˆ:³Š;±Š;±Š=¯Š<«‡9©ˆ;ª‰<ªŠ=©Œ@ªA«ŽB¬ŽE®J¯M¯O±’Q²“S³”T²”T±“S®’S®’S®‘U®‘U¬’U¬’U«‘Vª‘X«”^ª•`ª•`©”_§‘_¥]¢Œ[¡‹Z¡‹Z¡‹Z¡‹\¡‹\¡Š^¡Š^¡Š^¡Š`Ÿ‰dŸˆf¢Šf£‹g¨ŒgªŒf®Žh°eº”mº“h»‘g½f¿dÁ‘cÄ‘dÅ“b̘fÒ›cÛžeå£fî§gô©fø«gù¬hð¦eë¦eç¦fã¦eã¨fä«fç®iê±jí²nð´nó´oô´mö³mùµný¹pÿ½tü¹rù»rö¼sñ»qê¸oäµmܲjÙ¯eÛ°bܱbÞ²gݶiÞ¸oܺpÛºsÚ¼tÖ¸pÕ¹oغqß¿ræÅxëÈwìÇwêÅuæÂtèÄxèÄxåÁuá½oß»mà½lâ¿méÆrìÉuîÌuíËrëÉpèÆlèÆlëÈlñÌqïËmíÈmêÅjéÄkçÄjæÂjåÃjà½iß¼hݺhظeÕ´cѰ_Ï®_ͬ]Ñ®]Ϫ\̦[É£\ÄŸ[¾˜Y´V­ŠT¦„VŸ€T•yRŒtRˆqR‚oQ{jNxfNnYDjUBgP>fO=gP>hQ?hN=gMhMYF?YF?YF?WD=VC7O>7M;7I:5G83F72E61F72G83H94")")$)%*(,+/. /0"11 201./+,')"&#"%+#)$( $%###$($(%)%)%*',(-)-)*'($%"#!$!$"%#&'+%*%+") '%&% % %&&&'''(((((((&$"""""""""!!    !  "  !                             !"#"#%&&&&#!%!%"#"#"#"#"#"!# $!%!%!$#! &"&"&$&"&$&"&$&"&$'#'%($(&)%)')%' ''''''''''''''&%!$!$!$!$!$!$!$!%"&#&#'$'$(%(%)%,&-&-$.%0%1&2$3%6!(6!&7 &7 &9 $9 $9 $9 $;"(;"(!> ?"?!?">!>!?"?"@#@#B#B$F%F%G&H' I(J) L*!L*!N,#M+"M+"L*!M+!N,"P.$Q/%P.$P."P."Q/#Q/#R0$R1"R2%P4)O4+Q5*R6*U8*X;+]=._>-b>.fA.mG0tM.{T-…\.g3˜o1®‚7°†2²ˆ4³‰7´Š8´‹;±Š;°‹;®Š<¬‹<¬Œ?«ŽB¬C­F®G¯‘I­I®L°‘N±”P³”S³–T³•U²–U¯“T­”T¯’V¬’U¬’U«“U«‘Vª‘X¬—b¬–d«•cª”b¨’`¦_£\¢Œ[¢Œ[¢Œ[¢Œ]¢Œ]£‹_£‹_£‹_£Ša ‰` ˆb£Šb¦Šc©‹e¬Œe¯Že°c¼•l½“i¼‘f¼c¾bÂbÃcÆ’bÓšcÙaá¡cê¦eðªe÷¬hø®gù¯hï©cì§bç¦då¦câ§cåªfè­iê¯ið´nó´mõ¶oõµmö³løµnüºpþ¾t÷¹põ¹pôºqðºpê¸oã´lݱhÚ®eÛ¯dܰeݳgݶkÞ¸oܺpÛ»rÚ¼sÙ»rÙ»rݽrâÂuëÇyðË{ïÊzîÉyèÄvêÆzëÇ{éÅwæÂtãÀoãÀnäÁmëÈtëÉrëÉpèÆmæÄkæÄkéÇníËqóÐrðÍoíÊléÆhçÄhæÃgæÄjçÅlãÁjâÀià½iݺf×·dÓ³`Я^Э\Ö¯`Õ¬]Ц\Ê¢ZÅž[¿—Y¶T®‹U¨†V U–zSuQˆqQ‚oO|kOxgMnZBlVAiS>iS>mT@mT@kR>iPoTAtWEwZHwZHuZIpTFnTEnRDlRAlRAlS?mT@nU?oW?rZ@v^ByaE{dE{dEybBvbAyfHxgIyhJ{jL{jN{jNyjMyjMyjMwiNvhMugLtfKseJrdJrdIqbErcFteHvgJvgJvgJteHsdGsdGrcFpaDo`Cn_Bo`Co`CoaDn`CmbDodFqfHtfItfItfItfIrcFrcFsdGteHveKwfLxgMzfM{bL{`Ky^Iv[FtYDqVAoTAnS@mR?kP=gL;dH:bF8aE9aE9aG:bG<`HXE>XE>R?8R?8S@9TA:VCYF?XE>XE>WD=UB;TA:S@9R?8Q>8N<8K<7I:5G83F72G83H94I:5# 1# 1&/( /- 10"15#18#25,5,3-0*+)&%!$" $#"   ! !$#&%(')&*'*')&,+,+)*'(&'$%"&"&%*#)#* (&$#$((((((((''''(((&$"""""""""""""""   # ! # !$"              !!"$%% %!"! # $!$!%"%"% ########&!&!&#&!&#&!&#&!&#&!&#&!&#&!&#&!(!(!(!(!(!(!(!(!(!' &%%&' '!&#%"# # # %"'$(%(%(%(%(%(%(%(%(%+%-&-&.'.%/&1&1$4&4&5$6%6%7 &7!$8!'6'6'8'6%8'6%8%6 #3254 8"7"!:!$;##;!"=! = "=! = "=! = "=! >!#>"!>!#=! = "< <!< ?!!> > =<;;:========= > > ?!?!@"@"A#F(F(F(F(F(F(H'H'I'J(J(K) K) L*!L*!L*!M+"M+!N,"O-#P.$Q/%R0&R0&P/&Q0'P3%R5%S6$U9$X9%Z9&dC0hE1lF/qJ-wO,W/Œa4•k/¨}.´ˆ/ºŽ5´‹3±‡1´Œ7¶=µ?¯Œ;®>­@¬C­F­‘H­‘H®’I±”N±”N±”N±–O²•Q²—R²—T±˜U¯–T®–V¯•X­•W­•Yª”X¬”Xª”[¨’`¦’`¥‘_£]¤Ž]¤Ž_¥`¥`¤Œ^¤Œ^¤Œ^¤Œ^¥Š]¥Š]¥Š]¥Š]ªaªa­Žb­Žb®b°Ža²a³`ºd¾‘gÄ•iÇ–kÈ•jÊ•k͘nÒšiÜœ_ã \ê¥`ð¬eõ¯gø²jø³h÷³jò®eíªcç§`æ§béªgé¬ké¬kéªgë«dð°hö¶nù¹oø¸nõ·lóµlñµlî´jð¶lòºoñ¼pí¼pè¸lã³gß±fݱhݳkݳkذhÕ¯fÕ±gÙ·mܼqܼoÞ¾qãÂuéÅwíÈzðÉzðÉzðÉzìÇyéÅyåÁsâ¿nà½ká¾jâÀiäÂiîÌsìÊqéÇnæÄkæÄkéÇpìÊsîÌsïÑqñÕròÖsîÒoéËkåÇgãÄgäÅháÂgàÁgá¿hß½fܹeصaÔ±]Ô®[Þ°bÝ­aÙ©_Ñ¢ZÈ›X½”T¶ŽQ¯ŠS¢ƒMž‚R˜€T’|SŠvQƒqM~nM|kMwbGv^FrZBnV>mSlVAnXCjV>jV>iW?jX@m\Bo^DraGtcGraEsbDudFwfHxgIyhJyhJziKxgIwhKwhKvgJvgJvgJvgJufIwhIuhHuhHtgGsfFreEreEreEqdDqdDqdDqdDqdDqdDqdDqdDk^>m`@qdDuhHvhKvhKtfIseHugLugLtfKtfKtdKtdKscJtbJ|fO}dN{cKx`Ht\DqYAoW?mU=mU=lT]F>\H?]F>ZF=XD;WCXC>YD?YD?XC>XC>WB=U@;S>9R=8Q<7O<6O=9L=8J;6I:5G83E61C4/C4/ !3"!1$ 1( /- 12"/7"19#0: -7,6,2*.('$$# !!! ! !!"# $!'#)%+%+%+%+%,++*()'(&'%&#'"&$*#)"* (&%##((((((((''(((((&$"""""""!!!!!!!!########                     !!"$%% %! ##$$% % % ########&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!(!(!(!(!(!(!(!(!(!' &%%&' (!'"%$$##"$#%$'&('('('('('('('('*%,%-&-&-&.%.%1&1&3%3%4#5$5$6%6 #7 &6'6)6'6'6'6'6%6%4!4!5"5"5!5!6 "8 =! > > > > > > > ?!!?!!?!!> > ===> > > =<;;;========> > ?!?!@"@"@"A#F(F(F(F(F(F(F(F(I'J(J(J(K) K) L*!L*!L*!M+"N,#O-$P.%Q/&R0'R0'Q/&R0&R2%T5#S6$U9$X9$Y:%bB-fC-kG/qJ-wN.‚X2b7–l2¯‚1º0¿”8»4µŒ2µ5¶Ž7²Ž:°;­Ž<®ŽA­D¬F­‘H­’K­’K°”K°”K¯•K°–L°•N±–O¯–S°—T¯˜U¯˜U®–X®–X«•Y«•Yª”X©”[¨’`¦‘b¥a£Ž_¤Ž_¤Ž_¥`¥`¤Œ^¤Œ^¦‹^¦‹^¥Š]¥Š]¦‰]¦Š[«Œ]¬^­^¯_°Ž`²Ž^´Ž_¶_¼cÁ’dÆ–hÉ–iÊ•iÌ–jјm×›iâž_ç¡[í§aó­eö²iø´iø´i÷µió±eð®dêªbêªcí¬hî¯lî®ní¬jî®fô´jù¹oû½rù»põºnó¹oó¹oï·lïºnñ¼pñ½qí¼oé¸kä³f߯cÛ¯hÙ±kÙ±iÖ°gÓ¯eÒ°f×¶iÛºmÞ½pà¿påÁséÅwíÈxðÉzòÉzðÉzíÈzéÅwæÃrâ¿má¾já¿hâÀgãÁhîÌrìÊpéÇnçÅlçÅnéÇpìÉuìÍsîÒqîÕpïÖqíÔoéÍjåÉfäÈgäÈgãÄiâÃhâÀgß½dÝ»dÚ¸aÙµ_Û³^ß°`à¬`Ûª^Ô¤\ÌY–U¹‘S³U¨‰R£‡Uœ„V•€UŒyQ…sM~nJ|lJ{cGy_FtZAqW>oUhS>jU@lWBnYDhV@hV@hXAiYBk[Dn^Go`IqcIraEsbDtcEudFwfHxgIxgIyhJxgIxgIxgIxgIxgIwfHwfHwfHxiJviIuhHtgGsfFreEqdDpcCqdDqdDqdDqdDqdDqdDqdDqdDnaApcCsfFviIwiLvhKtfIseHugLtfKtfLseKseKrdJrcLscL{eN|cMzaKw_Gu]CrZ@pX>oW=pX>nV>jQ;fM9bH7^D5[A4Z?4[>6[>8[>8\?9[@9\A:\A:]B;\C<]D=\E=\E=\E=[DXC>YD?YD?YD?XC>WB=VA9Q<7P;6O<6O=9L=8K<7I:5G83F72D50D50 !3"!1$ 1( /- 12"/7"19#0;!.9!.8 .3+0*)&&%"#   !#"#$%%"&#)%*&+%+%+%+%+*+*()'(&'%&#'#'$*#)"*!)'&%$********(((((((&$"""""""!!!!!!!!######## ! ! ! ! ! ! !                 !!"$%%!%! ##$$% % % ########&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!(!(!(!(!(!(!(!(!(!' &%%&' (!'"&!&!&!&!'")$*%)$)$)$)$)$)$)$)$,%,%,%-&0%0%0#1$1#2$3"3"4!5"7"7$6'6'6'6'6%6%6%6%6 #6 #6 "5!5!4 46=! > > > > > > > ?!!?!!?!!> > ===> > ==<<;;========> ?!?!?!@"A#A#A#F(F(F(F(F(F(F(F(I'I'I'J(K) K) K) L*!L*!L*!M+"N,#O-$P.%Q/&R0'Q/&R0&R2%T5#S6$U9$X9$Y:%`@+eB,jF.qJ-xO/ƒY3Žc8—m3³†3¿“4Åš<Á–:º‘7¸8¶Ž7°Œ8²=¯>¯B®‘E­‘G®’H­“I­“I®’I¯“J®”J®”J¯”M°•N®•R®•R°™V¯˜U¯—Y¯—Y¬–Z¬–Z«•Yª•\¨’`¦’`¦_¤Ž]¤Ž]¤Ž]¦Ž^¦Ž^¥Š[¥Š[¥Š[¥Š[§‹\§‹\§‹\§‹\«Œ]«Œ]­^¯_²Ž^µ`·Ž`¹_¿bÄ”dÊ–gÍ—iÏ—hÑ™jÖœnÜžkè¢fî¥aðªeõ¯iù³kú¶kû·lû¸jö´fô²fò°dð°fò²jó³ló²nò²kó³kø¸ný½sý¿tü¾s÷¼põ»qõ»qòºoñ¼pó¾rò¾rí¼pè·kã³gÞ°eÚ°hذjذjÕ¯hÓ¯eÒ°fÖ´jظkÞ¾qàÀsäÃtéÅwíÈzîÉ{ðÉzñÊ{îÉ{êÆxçÄsäÁoâ¿kâÀiâÀgãÁhíËqìÊpêÈnèÆmèÆoêÈqìÊsëÌrîÒqíÔoîÕqìÓoëÏlçËhæÊiæÊiæÇläÅjãÁhà¾eÞ¼cÞ¼cß»eã»fâ³cã¯cݬ`Ö¨]΢[ÄœW½—V¶”W®X¨XŸ‡W—‚UŽ{Q‡uM€qJmI}fG{aFw]BtZ?sY>tZ?w]By_Dz`Ex^Cw]Bx^C{aF|bG{aFx`FsZDpZCmW@lV?kW?lX@o[Cp\DiW?iW?hX?iY@jZAm]Dn`FoaFraEraCsbDtcEudFveGwfHwfHxgIxgIxgIxgIxgIyhJyhJyhJzkLyjKwhIvgHteFrcDpaBpaBrcDrcDrcDrcDrcDrcDrcDrcDsdEteFwhIxiJxiLwhKufIteHueKueKueLtdKtdKscJscLsaKzaM{`Ky^Ix^Gv\CtZAsY@rX?sYBrXAnS>jOXC>YD?YD?ZE@WB=WB=U@;T?:R=8Q<7P;6N;5O=9L=8K<7J;6H94G83E61E61 !3"!1$ 1( /- 12"/7"19#0=#0;#0:"05!-2,+(('$%!!  !#"##$&#'$*&+',&,&+%+%*)*)()'(&'%&$($(%*$*#+"*('&&)+++++++**)))((&""""""""        "$$## " " " ! ! ! ! ! ! !                 !!"$%%!%! ##$$% % % $$$$$$$$&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!(!(!(!(!(!(!(!(!(!' &%%&' (!&!&!&!&!'"(#(#)$)$)$)$)$)$)$)$)$+$,%,%-&/$0%0#0#0"0 2!2!3 3 6!6!5&5&5&5&5$5$5$5"5"5"5!5!5!5!5 7=! > > > > > > > ?!!?!!?!!> > =======<<<<> > > > > > > > ?!?!?!@"@"A#A#B$E'E'E'E'E'E'E'E'H&I'I'J(J(K) K) K) L*!L*!M+"N,#O-$P.%Q/&Q/&Q/&R0&R2%T5#S6$U9$X9$Y:%^>)c@*jF.rK.yP0„Z4d9—m3³†3Á•6Éž@Æ›?¿–<¼”<¹‘:²Ž8´‘=±’@±’B°“E¯”G¯“I®”I®”J­‘H­‘H­“I­“I®“L®“N­”Q­”Q°™V°˜X¯—Y¯—Y¬–Z¬–Z«•Y«•\§‘_¥‘_¥^¤Ž]£\£\¥]¦Ž^¥Š[¥Š[¥Š[¥Š[§‹\§‹\§‹\©Š\ª‹\¬Œ]®Œ^²Ž^µ`¹‘`»‘a¿‘`ÓcÉ•e͘fÒ˜hÕ™gØœjÞ oå¤ní§kó©hô®iø²lûµmý¸mýºlýºlú·iù·iø¶hø¶hö·j÷¸k÷·mö¶lö¶lù»pý¿tüÁuù¾rõ¼oôºpô¼qó¾rò¾ró¿sð¿rí¼pç·kã³gß±fܲjÙ±kزkÖ±jÖ²hÕ³i×·lظmß¿ráÁtäÃtæÅvëÆxíÈzðÉzïÊzíÈzëÇyèÅtæÃqäÁmãÁjäÂiäÂhíËqìÊpìÊpëÉoëÉpìÊsìÊsëÌríÑpëÒmìÓoìÓoìÐmêÎkéÍlèËméÊmæÇläÂià¾eß½dá¿fåÁkêÂmç¸fæµfá²dÚ¬_Ñ¥\ÇŸY¿šV¹—X¯W¨Vž‡U–R|Q‰xM‚sJ€nJhI~dIz`Ew]Bw]By_D|bG~dI~dI|bGy_Dz`E|bG~dI}cH{cGv^Fs]Fq[DpZCo[Cp\Dr^Fs_GlZBlZBjZAjZAk[Bm]Dm_EoaFraEraCraCraCraCtcEudFveGxgIyhJyhJyhJziKziKziKziK|mN{lMyjKwhIteFrcDpaBo`ArcDrcDrcDrcDrcDrcDrcDrcDwhIxiJyjKyjKxiLwhKufIteHueKtdJtdKtdKscJrbIrbKsaKx_Kx]Jy]Hw\Gw[Eu[BuYAtZAuYCsYBqTBlQ>iL>cG9_A6\@5X;3X;5Y<6Y<6Y>7Y>7X?8X?8X?8XA9YB:YB:VB9UA8T@7S?6VAXC>YD?YD?YD?VA9Q<7P;6O:5M:4N<8L=8K<7J;6H94G83F72F72 !3"!1$ 1( /- 12"/7"19#0>$1<$1;#16".3-,))(%& %$"!!" ! !(%)&,(-)-'-',&+%)()()()(&'&'&)%)%*%*#+#+"*!)((!+!+!+!+!+!+!+!+))(('&&%""""""""!!!!!!!!##" ! !                     !!"$%%!%! ##$$% % % $$$$$$$$&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!(!(!(!(!(!(!(!(!(!' &%%&' (!% &!&!'"(#(#(#(#(#(#(#(#(#(#(#(#+$+"-".#.#/$0"1#1 1 1 245 5 5 5&5&5$5$5$5$5"5"2334 6! 7"!7"!:""=! > > > > > > > ?!!?!!?!!> > ===<<<<====> > > > > > > > ?!@"@"A#A#B$B$B$E'E'E'E'E'E'E'E'H&H&H&I'I'J(J(K) K) K) L*!M+"N,#O-$P.%P.%Q/&R0&R2%T5#S6$U9$X9$Y:%]=(c@*jF.sL/zQ1„Z4d9–l2¯‚1¾‘4Çœ@Çœ@Á˜>¿—?½•>µ‘;·”@´•C´•E±”F°•F°•H¯•H¯•J­‘H­‘H¬‘J­’K­’M®“N¬“P¬“P¯˜U¯—W¯—Y®–X¬–Z«•Y«•[«•\¦^¥^¤Œ\£‹[¢ŠZ£‹[¥Š[¦‹\¥‰Z¥‰Z¥‰Z¦Š[©Š\ª‹]ª‹]ª‹]¬Œ]®Œ^²Ž^µ`º’a½“a”cÄ”cÈ”bΖcÒ™d×™fÚ›fàŸiç¤oî©pô­o÷­lú±mü³ný·oþ¹nÿºmÿ¼mü¹jýºkü»kü»kü»kûºjú»lú»l÷¹lú¼oý¿tú¿s÷¼póºmò¸nòºoô¾tó¿tó¿tï¾rìºqç·mã³iÞ²iß´oÜ´oÛµnÚµnÛ¶oÚ¸pÚºoÚºoàÀsáÁtãÂuäÃvéÄvëÆxîÇzîÉ{ìÇyêÆxéÆuçÄræÃoæÄmæÄkæÄjíËqîÍpïÍsïÍsïÍtïÍtîÌuëÌrêÎmèÏkéÐlêÑmíÑpìÐoëÎpéÌnëÌoèÉlåÃiá¿eà¾eãÁhèÄlëÆnë¾iê¼gæ·eܱbÓ©]È¢Y¿V¸™X­Q¤ŠQšƒO“M}O‹zN„uJ‚pJjJfH|cEzaC{bD}dFhJƒjL‚iK~eG{bD{bD}dFfH~eG|dHyaIv`Hv`Hu_Gt`GuaHuaHvbIq`Fp_En^Dm]Cn^Do_EoaFpbGsbFraCq`Bq`Bq`BraCtcEudFyhJyhJziKziK{jL|kM|kM|kM}nO|mN{lMxiJvgHteFrcDqbCteFteFteFteFteFteFteFteFyjKyjKyjKyjKxiLwhKufIteHtdJtdJtdKscJrbIrbIrbKt_Jv[HwZHxYEvZEwXCuYCvX@tX@vWBsWAsTBnQ?lL?dG9bB7]?5X;3W<5W<5X=6X=6Y>7W>7W>7V?7W@8W@8VB9UA8T@7R>5Q=4U@;VAXC>XC>U@;T?:S>9R=8P;6O:5M83L93M;7M;7L:6K95J84I73I73H62 !3"!1$ 1( /- 12"/7"19#0?%2<$1;#17#/3-,))(%&!& %#"!" !*'+(-).*.(-',&+%)()()()(('&'&)&)'+%*%,#+#+"*"* *",",",",",",",", * *)('&&%""""""""""""""""$#""                       !!"$%%!%! ##$$% % % % % % % % % % % &!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!(!(!(!(!(!(!(!(!(!' &%%&' (!$% '"(#(#(#(#'"(#(#(#(#(#(#(#("*!+"-"-".#/"0"0 1 1 1245 5 6!4#4%4#4#4#4#4!4!1234 6! 7"!8#";#!=! > > > > > > > ?!!?!!?!!> > ===;;<<==> > ?!!?!!?!!?!!?!!?!!?!!?!@"@"@"A#B$B$B$C%D&D&D&D&D&D&D&D&G%H&H&H&I'J(J(J(J(K) L*!M+"N,#O-$P.%P.%Q/&R0&R2%T5#S6$U9$X9$Y:%]=(dA+kG/tM0zQ1„Z4b7”j0«~-¹Œ/Ø<Ä™=¿–<¿—?¾–?·“=¹–B¶—D¶—E³–F²—H±–G°–I°–I­‘H­‘H¬‘J­’K­’M®“N¬“P­”R®–V®–V®–X­•Wª”Xª”Xª”Z©“Z¤[£‹[¢ŠZ¡‰Y ˆX¢‡X£ˆY¤‰Z¤ˆY¤ˆY¥‰Z¨‰[©Š\ª‹]«Œ^¬Œ]®Œ^±]µ`¹‘`¾”bÄ–dÇ—fË—eÍ•bÓ—aךdÜ›càfç¢iï©nô®rú°qû±pü³oþµpþ¹nÿºmÿ»mÿ½lü¹hþ»jÿ¾lÿ¾lþ½kü»iû¼lû¼lú¼oú¿qüÁuúÁtö½pòºmñ¹nð»oñ½rï¾rï¾rì¼rêºpæ¸mã´lß³já¶qݶqܶoÜ·pܺrܼsܼqÚºoàÀuàÀsáÀsâÁtæÂtéÄvìÅxìÇyéÅwèÅtèÅsèÅqèÆoéÇnéÇméÈkïÎqðÏròÐvóÑwóÑxòÐwðÎwíÎtçËjåÌhåÌhèÏkìÐoíÑpëÎpéÌnëÌoèÉlåÃiâÀfá¿fãÁhçÃkëÆmëÂjë¿hæ¹dÞ´bÔ­^Ë¥Z X»œY®P¤ŠO™ƒJ’~I‘|MŽ|NˆwK„rJjH€gI~eG|cE}dFhJ„kM‡nP„kM€gI|cE{bD}dFfHfH}fG|dJzeJycKydIxdKxdIyeLyeJveKudHscIrcFqaGrcFqcHrdGudFtcEraCp_Ap_AraCtcEudFyhJyhJziK{jL|kM}lN~mO~mO~oP~oP|mNzkLxiJvgHufGteFvgHvgHvgHvgHvgHvgHvgHvgHyjKyjKyjKxiJwhKvgJufIufItdJscIscJrbIrbIqaHqaJt_JtYFwXFvWEvWCuVBtU@sT?sU=qR=qR>qR@oO@kK>fF;bA8]?7X;5W<5W<5X=6X=6W>7W>7W@8V?7W@8UA8UA8UA8T@7R>5Q=6T?:T?:T?:U@;U@;VA9R=8Q<7O:5N94L72K82L95K95J84J84I73H62H62H62 !3"!1$ 1( /- 12"/7"19#0>$1<$1;#16".3-,))(%& %$"""#!""#+(,).*/+/).(,&,&)')')'(')()()*'*'+&+%,%,%,#+#+#+%.%.%.%.%.%.%.%."+"+!* )(&%%""""""""$$$$$$$$$$#"     ! ! ! ! ! ! ! !                     !!"$% %!%! ##$$% % % % % % % % % % % &!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!(!(!(!(!(!(!(!(!(!' &%%&' (!%&(!)"*#)"(!(!(!(!(!(!(!(!(!(!,!,!- - /!/!0!1 1 245 67 7 6!4#4#4#4#4!4!4!4!3345 5 6! 7"9!=! > > > > > > > ?!?!?!> > ===;;;<=> > > ?!?!?!?!?!?!?!?"@"A#A#A#B$B$C%C%D&D&D&D&D&D&D&D&G%G%H&H&I'I'I'J(J(J(K) L*!M+"N,#O-$P.%Q/&R0&R2%T5#S6$U9$X9$Y:%_?*eB,lH0uN1{R2ƒY3Œa6’h.©{-·Š/À”;À”;»’:»“;»“<¶’<»˜D¸™F·˜F´˜E³˜G²—F°—G°–I­‘H®‘K­’M®“N®“P¯”Q­”R­”R­•U¬”V¬”X¬”X©“Y¨’X¨’Y¨‘[¢‹W£‰X¢ˆW †U †U¡…U¢†V¢†V¥†W¦‡X§ˆY©‰ZªŠ[«‹\¬Œ]®Œ^³`¶_¹b½“cÄ–eȘgΛfÒ›eЗ`Õ˜_ÛšbáœaåŸdë£hõ«nû±rý³rý´oý´oþ¶nþ¹lÿºlÿ¼kÿ½jû¹eþ¼hÿ¿kÿ¿kþ½kü»iú»kû¾mýÂtýÄuþÅvüÃtø¿rô¼oñ¼pñ½qï»pí»rì¼réºrç¸pã·náµnßµmÞ¶pÛ´oÚ³nÛ¶pܺrܼsÛ»rÖ¹mÝÀtÝÀtÞ¾qà¿rã¿såÁuéÄvëÆxæÃrçÄsèÅséÆrêÈqëÉpìÊpìËnðÏròÑrõÔw÷Öy÷Õ{õÓyòÐwîÏtåÈjâÈgâÈgåËjìÏqíÐrìÏqéÌnêËnçÈkåÄgâÁdá¿eâÀfåÂhçÂiè¿gæ½eã¹cÞ¶aÖ°_Ϊ\Ç¥[Á£]´˜W¨Rœ†L•‚J”€N~NŠyK†sIjH€gH~eF}dEfG‚iJ‡nOŠqR…lMhI|cD{bC|cD~eFfG}fG~fJ|gJ|gL}hK|hM{hJ{gL{hJ|kOziKxiLvgHufIufGugJuhHwfHueDrbAp`?p`?rbAtdCvfEyiHzjI{kJ|lK}mL~nMoN€pO€oQnP~mO}lN|kM{jLziKyhJziKziKziKziKziKziKziKziKyhJyhJxgIwfHwfJwfJwfJwfJtcItcItbJsaIsaIr`Hr`Js^IsXGvWEuVDtUArS?qR=pQjJ=fF;a@7\>6X;5X<8V=8W>9W>9X?:X?:W@:V?9UA:VB;VB;TA:S@9Q>7P=6R=8R=8R=8S>9S>9T?:T?:T?:S>9S>9R=8P;6N94M83L72J71J73I73H62H62H62G51G51G51 !3"!1$ 1( /- 12"/7"19#0>$1;#0:"06".3-,)('$%""!!#!%$%%&,)-*/+/+/).(-',&)')')')')()()*)*'+'+&-%,%,%,$,$,%.%.%.%.%.%.%.%.#,"+!* )(&%%""""""""%%%%%%%%%$#"     ! ! ! ! ! ! ! !                     !!"$% %"%# ##$$% % % % % % % % % % % &!&!&!&!&!&!&!&!&!&!&!&!&!&!&!&!(!(!(!(!(!(!(!(!(!' &%%&' (!%&(!*#*#*#(!' (!(!(!(!(!(!(!(,!,!,- . /01 225 57 7 8!8!6!4#4#4!4!4!4!4 6 "6! 5 5 5 5 46=!> > > > > > > ?!?!?!> > ===:;;<=> > ?!?!?!?!?!?!?!?!?"@"A#A#B$B$C%C%C%D&D&D&D&D&D&D&D&G%G%G%H&H&I'I'J(J(J(K) L*!M+"N,#O-$O-$Q/&R0&R2%T5#S6$U9$X9$Y:%_?*fC-mI1uN1{R2ƒY3‹`5‘g-©{-¶ˆ0¾’9½‘:¸7¸9¹‘<³;¼™G¸™F¸™Gµ™F³˜G²—F±˜H°–I®’I®‘K®“N®“N¯”Q¯”Q®•S®•U¬”V«“U«“W«“W¨’X¨’X§‘X§Z£‰V¢ˆW †U „TŸƒS „T „T£„U¥†W¦†W§‡X©‰ZªŠ[­‹]®Œ^°Œ\µŒ^¸Ž^¼aÁ“bÆ–eÍ™gÓœfÕœeÔ—`×™^Ý›_âœ`éŸbï¥fø¬nþ³rþµpþ¶nþ¶lü·jý¸jÿ»jÿ¼iÿ¾jú¸dý¼hÿÀlÿÀnþ½mùºjú»lú½mÿÅwÿÈyÿÈyþÇwùÁtô¿qò¾rñÀtìºqêºpéºræºså¹rã·pá´pàµpܵpسmײl×µnÚ¹rÙ»r×¹pÔ¶mÝ¿vÜ¿sݽrݽpà¿räÀtèÂwéÄväÁpåÂpçÄpêÈqìÊqíËqîÍpîÍpñÐqôÓt÷ÖyùØ{ù×}÷Õ{ôÒyïÐuãÆhàÆeàÆgäÊkëÎpíÐrìÏqéÌnéÊmçÈkåÄgâÁdáÀcáÀcãÀfåÀeã¼aâ»`à¸`Ûµ`Ö²^Ñ®]ʪ_ƨ`ºŸ\­•W ŠP—„L–‚O‘MŠzI†sHkF€hF~eF~fDfGƒkIˆoP‹sQ†mNiG|cDzb@|cD~fD~eF}fFhI}hI~iJ~iJ}jJ}jJ|iI|iIoN~nM{lKyjIxiHwhGwjHwjHxhGvfEscBqa@p`?rbAueDvfEyiHzjI{kJ|lK}mLoN€pO€pO€oQ€oQnP~mO~mO}lN|kM|kM{jL{jL{jL{jL{jL{jL{jL{jLxgIxgIwfHveGveIwfJwfJxgKtcItcIsaIsaIr`Hr`Hq_It^IsXGuUFtTErSAqR>oPiI>eD;a@9\=8Y<8X<8W>9W>9X?:W@:XA;XA;UA:UA:VB;UB;UB;S@9R?8Q>7Q<7Q<7Q<7R=8R=8S>9S>9S>9S>9R=8Q<7P;6N94L72K61K61H51G51G51G51G51F40F40F40 2#"2&"3( /)-,)4.9#0>$1;#09!/4 ,0*)&%$!"$#  ! $%&()'$(%+',(-',&,&+%,(-),*,*,*,**+)*'+'+'-'-&-&-&-&-$+$+$+$+$+$+$+$+#*#*")")!(!( ' '!)!) ('&%$$$$$$$$$$""##"   ""!!                            !!""#"""!!!#$% % % % $$###$$% % &!&!'"'"&!&!&!'"'"(#(#(#(!(!(!(!(!(!(!(!' ' ' ' ' ' ' ' ********,!,!,!,!,!,!,!,!+,-. 01 1 233455687 7"5"4!4!3 3224 445 5 6!6!9!:;<<= = >!>!>!>!= = <<;;= = = = = = = = = = = = = = = = B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$E#E#F$F$G%G%H&H&K) K) J(K) L*!N,#O-$Q/&R0'S1'T4'V7%W:(Y=(]>)^?*^>)c@*jF.tM0|S3„Z4‰^3Œa*¡s&¶ˆ2ºŽ7¶‰4¶Œ6µ8µ8º–B¸•C¶—E·˜H¶™IµšK´™J±˜H°–I®‘K®‘M­’M­’M­’O®“P¬“Q¬“S«“U¬”V­•Y­”[«•\©“Z¦W¥ŽXž„QŸƒQOŸO ‚P¢„R¤†T¦†U¥…T§…U¨†V©‡WªˆX®ŠZ¯‹[°Š[µ‰ZºŒ[¿_Æ”c̘fÑœhÖhÙžfÛdá fè¤gì¦hñ§hõªiü®nþ³oÿ¸nÿºmÿºlÿ¼mÿ¼kÿ¾jÿ¾jþ½iÿ¾jÿÂmÿÄqÿÂrý¾où»nøºoö»oúÁrúÃqûÄtùÄtøÃuõÂsò¾rï¾rë»qê»séºtå¹râµqàµpß´pÞ¶qÛ´oÛ¶rÜ·sÛ¹rÚ¹rغrغr×»qÝÁwÝÂuÝÀtß¿tá¿uâÁtæÂvçÃuèÅtèÅséÆrêÈqìÊqîÌrñÐsòÑtø×xùØyùØyùØ{öÔzòÐvîÌréÊoãÆjßÅfßÅháÇhèËmëÎpéÌnçÊlêËnèÉlêÉlìËnîÍpíÌméÆjåÂdåÁcâ½bÞ¹`ܸ`Û¸dØ·fÓ³fͱh¼¡^°˜X¢ŒR™†N•L}K‡wF‚oD„nGƒkGiGgCiG…mIŠrPŽvRŠrPˆpL…mK‚jFiGiEƒkIƒlJ†oM„pO„pOƒoN‚oN€mLlK~kJ€pNƒsQ„vS‚tQ}oLzlIylIzmJ{kIyiGvfDtdBtdBvfDyiG{kI|lJ|lJ}mK~nLoM€pNqO‚rQ„qS„qSƒpR‚oQ‚oQnP€mO€mO‚oQ‚oQƒpRƒpRnP€mO~kM}jL{hJzgIyfHxeGvbGuaFt`Et`EuaHuaHvbJvbJuaIs_Gr]Hq[FtYHtWGrUEpSAnR=kO:iM8hL7kN:W>:W>:W>:W?;X@YD?WB=XC>XE?XE?VC=SB;P?8O<6Q<7R=8T?:U@;U@;T?:R=8Q<7P;6O:5M83L72K61L72L72M83J73K84K84K84J73H51F3/E2. 2#"2&"3( /*..+6!0:$1=#0:"/7-1)-''$%$"# %#! ! $%&'('$(%+',(-',&,&+%,(-).*-+-+,*++)*)+'+'-'-'-&-&-&-&-&-&-&-&-&-&-&-#*#*#*")")!(!(!("*"*!) ('&%$$$$$$$$$""##"!  """!!                            !!""#"""!!!#$% % % % $$###$$% % &!&!'"'"&!&!&!'"'"(#(#(#(!(!(!(!(!(!(!(!' ' ' ' ' ' ' ' ********,!,!,!,!,!,!,!,!,,-.01 22335566877!5"4!4!3322445 5 6!6!6!9!:<<= = >!>!>!>!>!= = <<;;= = = = = = = = = = = = = = = = B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$E#E#F$F$G%G%H&H&K) K) J(K) L*!N,#O-$Q/&R0'S1'T4'V7%W:(Y=(]>)^?*_?*dA+jF.sL/{R2ƒY3ˆ]2Œa*Ÿp(´…3¹Œ9´‡4´Š8³Š8³Š:·’Aµ’A´•Eµ–F´—I´™J³˜I°—G°–K«ŽH«ŽJ«K¬‘L¬‘N­‘P¬“S¬“S«“U¬”X¬“Z¬“Z©“Z§‘X¤ŽU¥ŒVOŸOŸOŸO¡ƒQ¥…T¨ˆW©‰X§…U§…U©‡W¬ˆX®ŠZ°Œ\±]µ\ºŒ[¿\Ä`È”b͘dÒ›e×›eÙœeßžfä¢fé¥hí¦hð¦gò§fö«jù®jù´gú·hü¹hþ½kÿ¾jÿ¿kÿ¿ký¿jû½hü¿lþÁpü¿oøºoó·nò¶mó·nøÁqøÄqúÅuúÇvùÆwõÄuòÁuî¾téºræºsä¸qá¶qàµqݵpݵpܵrÙ´pÚµqÙ¶rØ·rÙ¸q×¹qÖºqÖºqÜÀvÛ¿uÜ¿sÜ¿sà¾tâÀvåÁuæÂtèÅtèÅsèÅqêÈqìÊqïÍsòÑtôÓtûÚ{ûÚ{úÙzø×xõÔwñÏuîÌrêËpæÉmáÇjßÅhàÆiæÉméÌnéÌnèËmìÍpëÌoîÍpïÎoðÏpîÍnéÆhäÁcãÀbá¾`Þ»aÝ»bÛ»fعgÒµgβi¾£`²šZ¥UˆQ˜„O’€N‹yI…sE…oH„lHiE€hD‚jF†nJ‹sOŽvR‰qMˆpL‡oK†nJ…mI…mI†nJ†pK‡qL…qL…qN…qLƒqM‚pJoKoI‚rN„uN…wRƒuNqL|nGznH{oIzjFyiGvfDtdBtdBvfDyiGzjH~nL~nL~nLoMoM€pN€pN€pNƒpPƒpRƒpRƒpR‚oQ‚oQ‚oQ‚oQƒpRƒpR„qSƒpR‚oQ€mOlN}jL{hJzgIyfHwdFuaFs_Dr^Cq]Br^Er^Es_Gt`Hs_Gr^Fq\Gq[FsWIrVHrUEoTCmP>jO:iM8gL7kNfJ>eG=bF;aC;_B:X@YD?XC>WD>WD>VC=TC!>!?">!>!= = <<;;= = = = = = = = = = = = = = = = B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$E#E#F$F$G%G%H&H&K) K) J(K) L*!N,#O-$Q/&R0'S1'T4'V7%W:(Y=(]>)^?*_?*dA+iE-rK.zQ1‚X2ˆ]2‹`+œm'±‚4¶ˆ:±ƒ5±†8¯†7¯†7²?²Ž@°C±‘D±”H±–I±–I¯•H¯•K©ŒH©ŒJ©ŽK«M¬O­‘P¬“S­“V¬”X¬”X«’Yª‘Y¦Y¤W¡ŠT¢‰SMŸN €O¢‚Q¤„S©‡W«‰Y­‹[ª†V«‡W¬ˆX°Š[²Œ]µ`¶aº`Á^Å^È“aÍ•dÑ—eÕ™eךdØ™cá hä¢fé¥hë¥gë¤fî¤eð¦góªfó¯dõ´dú¹gý¿lÿÁnÿÂoþÁnýÀmù¼iø¾lø½mô»lð¶lî´kï´nð¸n÷Àp÷ÃpûÆvýÊyüÉz÷ÆwòÂvîÀuç¸pã·pá´pÞ³oÜ´oÛ´qÛ´qÛ´sÙ³rÙ³r×´pÖµp×¶qÕ·qÕ¹pÕ¹pÚ¾tÙ½sÚ¼sÚ¼sß½sà¾täÀvæÂvçÄsèÅséÆrëÉrîÌsòÐvõÔw÷ÖwÿÞýÜ{úÙzöÕvòÑtðÏrîÌrëÌqêÌräÉnàÅjßÅhãÆjæÉmèËmèËmîÏrïÐsòÑrôÓtóÒsðÏnêÈgåÃbãÀbà¿`ß½cݾdݽhÚ»iÓ¶jͳi½¤a³›[¦VŸŠS›‡T•ƒQ}M‰vK…oF…mGƒkE‚jD„lF‡oIŒtNwQ‰qK‰qK‹sMŒtNŒtNŒtN‹sMŠtMŠtMˆuM‡sN‡tL…sM…sK…sM„rJ…vO‡xO‡yR…xN‚tMrH}qI}qIzjFyiEwgCueAueAwgCyiEzjFqMqMqM€pL€pLoKoKoM‚oOƒpRƒpRƒpRƒpR„qS„qS„qS„qS„qS…rT„qSƒpR‚oQ€mO~kMzgIyfHxeGubDs_Dp\Ao[@nZ?mY@nZAp\Dq]Eq]Eq]Ep[FpZEqWHpVGpUDmSBkP=iPXC@XEAWD@UB>SA=R@8R=8S>9T?:T?:S>9R=8R=8P;6O:5M83L72K61L72L72M83K63K63K63K63J52H30F1.E0-1! 0%!2*"1/"34$1:%4<&39,4)/%)!& # $##$!& %###!%$%%&'$(%+',(-',&,&+%.)/*/+0,0,/+,,+++,*,*.*.(.(.(.(.*.*.*.*.*.*.*.*.'+'+&*&*%)%)%)$(%,#+#+!) (''&%%%%%%%%!"#$#"! !!!                        !!""#"""!!!#$% % % % $$###$$% % &!&!'"'"&!&!&!'"'"(#(#(#(!(!(!(!(!(!(!(!' ' ' ' ' ' ' ' ********,!,!,!,!,!,!,!--./0125 5557889987!5"4 4 33225 5 5 6!6!7"7":#; = = = >!?"?"?">!>!= = <<;;= = = = = = = = >!>!>!>!>!>!>!>!B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$E#E#F$F$G%G%H&H&K) K) J(K) L*!N,#O-$Q/&R0'S1'T4'V7%W:(Y=(]>)^?*`@+dA+iE-qJ-yP0W1‡\1‹`+™i'®~4³…:¯6¯ƒ:¬‚8«7®ˆ=®Š@«‹@­B¬C­‘G®’H­“H­“I¨‹G©ŒJªL«M­‘P¯“T®”W¯•X«“Wª‘X©X§ŽV£ŒV ‰Sž‡QŸ†PŸO¡P¢‚Q¤„S§…UªˆX¬ŠZ­‹[«‡W¬ˆX¯‰Z²Œ]µ`¸’c¼“e¿“dÇ‘bË‘_ΔdЖdÔ˜dÖ™cטbטbßžfâ fç¢gç£fç¡eè¢dë¤fí¨eð°fó¶fø»jþÁpÿÃrþÄrüÂpùÁn÷¿l÷¾mö½nñ¹líµjê´jì¶nï¹oô¿o÷ÄqüÉxýÍ{ýÌ}øÉ{òÄwíÁvâ¶mÞ³nÛ°lدmÙ²oÚ³rÛ´sÙ³rزqÖ³qÕ²nÔ³nÓµoÓ¶pÔ¸oÕ¹pؼs×»qغqÙ»rܼqà¾täÀvåÁuèÅtèÅqêÈqìÊqðÎtôÓv÷ÖwùØwÿá€ÿÞ}ùØyôÓtðÏrîÍpíËqìÍríÏuçÌqâÇlÞÃhàÃgãÆjçÊnéÌníÎqïÑqôÓtöÕvöÕtòÑpíËjéÇfâÁbÞ¿bݾcܾdÝ¿iؼiÒ·j̱j»¢_¯š[¥Už‰R›‡T—‚S}OŠwL‡pG†nH…mG„lF†nH‰qKuOwQŠrLŒtNwQ’zT“{U“{U‘ySyRwP‹xPŠwO‰vNˆvNˆvN‰wOŠxP‰zQŠ{R‰|Rˆ{Q†yO„wMuK€tJ|mF{kGyiExhDxhDyiE{kG|lH„tPƒsOƒsO‚rN€pLoK~nJ~nL‚oO‚oQ‚oQƒpR„qS…rT…rT†sU…rT…rT…rT…rT„qS‚oQ€mOlNzgIyfHwdFtaCq]BnZ?lX=kWlX@nZBo[Co[CnYDoXFmVFlUEmSDiR@jP?fP;gN:dN9hO;eNR@
    UrDYvH[xJ]zL^{M\yKQn@G_;6B4+4/"(&gdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSicSjcSjcSjbUlbVlbVmcWmdUmdUmdUleUmfVngWogZnh\oh^mjekormtzƒŠ¥®³ÃÌÑÕßáæîñôüþôýú÷ýùùþ÷úÿôüÿòüÿñüÿîýþðûøïþúñÿùïÿúíÿùéÿòßïàËÝηÁ²›¢—|ubb_NXZL]cWmwn|†}¥­¢»Áµ××Ïëæâúîîÿôôÿõ÷þôõý÷÷úù÷úü÷ûÿùúýôô÷î÷ùîÿüïÿòáÿòàúɸ¼qUG«UH·UJ±E;ÀJ@ÆG@ÉF>ÊE>ÊC=ÉB<ÇB;ÈA;ÏF>ÍG>ÇG>¼C;­>5Ÿ:2•;3‘>6Š=5„>4‚>5=4<3~<0€<1€<1~:/~:/~:1}90|90{8/{8/{8/z:1z:1x92w81v70u6/u6/q6.m80k90j8/j8/i9/i9/i9/h8.g7-f7-g7-f7-f7-f7-f7-f7-f5.j81m;4k:3j92j:0m>4oC8l@5oD;d<2c=2zVJ†dZyWMbLA>:13814927<54:0/5+25,9<336+25*24)03(13(25*46+47,.6),7)/7*-8*/7*/7*/7*/7*19,08+08-/7,/7,/7,08-08+7?09B14)//%%heVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVjdVjdVjdXldYlcZmeZmeXmfVg`NjeRnkXol]he\feasqr‚†‰Ž’• ª²µÂÇÊ×Üßéíîõöøøúùüþýþþüÿÿúýþöúýòùüñúýòûþóùúòúúòùùíüúëþüçù÷ÞéåÊÕÔ¶º¹›˜˜|qtY_dMbkXr}l„‚‘›´¹²ÊÌÇâãÞðïë÷óòû÷öýùøüø÷ÿþüþþüþþüýÿúþÿúþÿúþÿúþÿúûýøÿýøÿûöÿåßצŸ£`X›D=²KBÁOEÃG=ÆC9ÉD;ÍH?ÎI@ËH@ÊG=ÆG8ÃH8¾I8µG8¦E5šB4B5‹C5…C5C6A4?3€>2€<1;1;191~:1|91{80z7/z7/w7.v6-w7.w7.w8/w8/v7.u6-q5+n3+l7/i81i81h70h70g6/g6/g6/f5.g6/i70i81h70g6/e4-e3,h3-j5/m80k90j:0i;.i=0kA3gB2jI:dH:v_O~k\ŠxjŒoRJ=79.4:04:039/39/39/28.28.17-17-36-06,25,/5+14+/5+/4-.5-/4-.5-/4-/4-/4-/4-05./4-/4-.3,.3,/4-/4-/6.1;23=26@58B79D67B45@03>-4?.DQ=WeN[kQPbHEX<@T8BW6Ic>Ke>Kf=Kf=JeOj?UpGYtK\vO]wP]wRWqNHb?;O6%0*&+.$),heVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVjcYkdZlc\md[meZmfVidQjhSmjWjk[gg_lll~„“š§®´·ÁÃÐÕØáæéñòôúûýÿþÿÿþÿþýûÿþúÿÿúþÿùûüôøûòöüò÷ýó÷úñøúïøúí÷úéùûåòõÚßâÃÌЯ´¸—‘–vkqUYaI_kUtoŒ˜Š§œ¿Á¼ÓÓÑççåóóñ÷÷õûûùüüúûûùþþüþþüþþüþþüþþüþþüþþüûÿþñÿÿíûü÷ùøÿø÷ÿéæï¾¹Ä€w¤PF°NAºL?ÁK?ÄJ=ÂD8¼=4¾?6ÄF:ÄF7ÃJ7¿L:´I7¦F6™C2D6ŠG7‚D7C8~B7|@5~>4<3€<1€<3}:2}:2z:1z:1y90x8/v7.v7.u6-v7.t8.t8.t8.r6,o5*m4+l7/i81j81h70i70h70g6/g6/e3,e3,g5.h6/j81j81j81k92k60l71k90k;1k;/j>1j@0iD2gH6kP=gRAufSueŒ…s†ƒrKL<69.39/39/39/28.28.28.17-17-17-17-06,06,/5+/5+/5+/4./4./4./4./4./4./4./4.05//4..3-.3-.3-.3-/4./6/.80/:21=34@66B66B66B45B16C1CP>P]IR`IIW@AO6BP7EU:Jb@Jd?Ke@Ke>Ic6I5&1-',0%*.heVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVjcYkdZlc\md[meZmfVmhUkiTmjWjk[kkcwww‘’—§¬²¾ÅËÑÛÝëðóöûþýþÿþÿÿÿþÿÿýþþýûÿþúÿÿúýþøúûóõøïñ÷ëñ÷ëô÷ìõùëöøêõøåõ÷áîîÔÛÛ¿ÉÊ«°±’“–yuy`kpZt{iˆŸ§œ®µ­ÍÏÊÞÞÜïïíøøöûûùþþüþþüýýûþþüþþüþþüþþüþþüþþüþþüýÿþõúýûÿÿþþþÿøöÿúôÿõëøÌÁדK<¤QA¨K:§@1·G;ÏYMÎTI½?3ÄD7ÆH:ÃK=¹I;ªB7?3•A7F;†B9B9~B8{A6z@5z>4z>4z>4x<4x<4w;3w;3u:2t91t91t91r90r90r90r90o9/n8.l6,k5+l7/j81l71j81k60i70i70h6/g5.g5.f5.g6/h70i81k:3k:3l;4j;3i:0h<1k?2jC4iD2fE2fI7lVAjYGujV†m‘Ž{€mEF658-28.28.28.17-17-17-06,17-17-17-06,06,/5+/5+/5+/4./4./4./4./4./4./4./4./4./4..3--2,-2,.3-/4..5.+5-+6.-9//;12>24@46B47D38E3?L:ER>CQ:;I28F->L3DT9J_@Jb@LdBKc?Ia=G`9F_8G`9RkDXpL]uS^vVZqTPgK=T8.A.&1-',0%*.heVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVjcYkdZlc\md[meZmfVniVljUlkWlm]pqi€‚ž¡¦¹¾ÄÃÊÐÚäæôùüúÿÿûüþûüþýûüûúøÿþüÿÿûÿþùûüôõöîîñæéïãçíßíñâðôåñôãñôßòñÜêêÐØØ¼ÇÇ«²±•¡¡‰‘“}“€œž‘ª­¢¶»´ÀÅ¿ÜÜÚééçööôûûùýýûÿÿýÿÿýýýûþþüþþüþþüþþüþþüþþüþþüþþþûûýÿþÿÿþÿõðíöíæÿùðÿúìÿîÞè¿­·n”O?£P@¹YK¸N@´D8¾E:ÁA6ÆF;ÅI?¼G=­@9¡<4˜>6•B<‹@;…B<€A:|A;y@9w@9u@8v?8v=4v=4v=4u<3s=3r<2r<2q;1o;0o;0o;0n:/k9.j8-j8-i7.m82n72m61l71l71k60i70i70l:3j92h70f7/f7/f7/h91f:1j?6f>4e=1f>2hC3iE5fG3cG2cJ6hV@i\IskV…‚oŽzpq_9=,47,28.17-17-17-06,06,06,17-17-17-06,06,/5+/5+/5+.3-.3-.3-.3-.3-.3-.3-.3-.3-.3--2,-2,-2,-2,.3--4-*4,)4,*6,+7-.:.1=14@25A36C2:G5N4DX;‰?<‚A=|A=wB6s>6r=5r=5r=5p>5o=4n>4m=3l<2k;1j;1i:0i:0j:0n72p62p62m61m61l71i70i70l;4k:3h91e90e90e90e:1d<2fB6cA5cC4dD5dG5dI6bI3_I2^L6eV?jbMrmW„ƒo„‡r[`L3:(28,28.17-17-17-06,06,06,17-17-17-06,06,/5+/5+/5+.3-.3-.3-.3-.3-.3-.3-.3--2,-2,,1+,1+,1+,1+-2,,3,,6.+5-*4+*4++5,.8-0;-2=/2=-5@/6A05A-1=)1=)5A-8F/=O5@T8FY=H\@J]?I^=K^>K`?TgG[pQcvZauZYkSJ]G6G4&4%$-*$),"'*heVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVjcYkdZlc\md[meZlfVjgTkjUlnYorasvm…„Ÿ¤¨¸¿ÇÕÞãìöøûÿÿûÿÿúûÿýþÿÿþÿýüúÿÿûÿÿúüüôóõêëíâãçÙÝãÕÜãÑäéÓçìÕéíÖêìÔëëÓèæÏßÚÄÓθÓÎºÌÆ¶ËøÐÉÁ×ÒÎàÛØêæåðïíóòðùù÷ýýûýýûýýûÿÿýþþüüüúþþüþþüþþüþþüþþüþþüþþüÿýüÿüýÿö÷ýùøþÿýùÿýöÿúíÿóðþïëòâÿÿíÿìÙ̦“£jW¡ZFªWE­L;¶F:¼F<½F>¹F?²B>©=:¡;9™;9•=<Ž>=…?=}@;xA5o?5o?5o@6n?5m>4k<2h<1h<1h<1l<2o83q62p62p62m61l71j81i81h70g80e90e:1d<2e?4f@5dB6^B4aG8cL:dM;cM8`K6]K3]M4]Q9bX?mhRss[€ƒnv{eFO:4=*39-28.28.28.17-17-17-06,17-17-17-06,06,/5+/5+/5+-2,-2,-2,-2,-2,-2,-2,-2,-2,,1++0*+0*+0*+0*,1+,3,.5.,6.*4+*4+*4++5,-7,.9+-8*0;+4?/5@/4?.3?+3>-3@,7F/9K3@O8BT:GW³L=³K>³K@±I@¬E>¢?:š;7–=9>:ˆ?9@:zA:uC:qE:qE5j>5n=6o83r73p62p62n72l71j81i81d8/d90c;1d>3d@4cA5cA5_C5ZE4_NnlUtv^|kcmU2>(6B.3;.39/39/39/28.28.28.17-17-17-17-06,06,/5+/5+/5+-2,-2,-2,-2,-2,-2,-2,-2,,1+,1++0**/)*/)+0*,1++2+-4-+5-*4,*4,+5,+5,,6+-7,,6+/:,2=/6A17B27B15@04?.2?-4C.:G3=L5AO8DT:JX?L\BTbI\kTcqZ^mXUbPDRA2>0#/%&/,&,,$**heVheVheVheVheVheVheVheVheVheVheVheVheVheVheVheVjdVjdVjcYkdZlc\md[lfZlfVolYmlWjlWgkZflbr{xŽ˜š¨±¸ÉÒ×âëð÷üÿöûþùúþþÿÿÿþÿùøôÿÿúýýõøøîðòåéëÝåéØãêØåíÖæìÒéíÒêíÒèèÎèæÏèãÏáÚÈØÐÃØÎÄÝÒÌêßÛøíëÿôöÿõùÿõûÿùüþüýÿÿýÿÿýþþüþþüÿÿýÿÿýýýûþþüþþüþþüþþüþþüþþüþþüÿþúÿù÷ÿù÷ûúø÷ûúõÿþóÿÿðÿÿíýúðüøûÿúÿýñÿòâÿïÛÿáËØ®–ªr[¤YD©T@¨Q>©RA­QB©M@¡D<—=5•>7?6‰>8ƒ@7}A7wC6tD8sE8q?8q?8s>8q?8q?8q?8q?8p?8sB;qB:o@8m>6l=5j>5m>6o>7o83q73o83m82m82i81h91f:1f;2d>3d@4bB5`C5]A3\@2WB1TG4[S>f^Gi^HbX?ZS9ZS7\W:ZV;XW;kmUsw^u}fUaI&28D03;.4:04:039/39/39/28.28.17-17-17-06,06,/5+/5+/5+-2,-2,-2,-2,-2,-2,-2,-2,,1++0*+0**/)*/)+0*+0*,1++2+)3+*4,+5-+5,,6--7.-7,,6+.8-2<16A39D69D47B46A10;+2?-5B09F28u@:u@:t?9q?8sA:q@9q@9q@9p?8n?7o>7o>7k92m82l:3l;4l;4h<3g<3c=2c?3^>1dG9cG9T=-N9(M8'@1WQ;PN7KI0OK2]Y>ieJeaDVU7XX<]`CosZz€fdlU=I1-9#2>*4-1=)2>*9E/BN8IU?O[GVbN]hWYdTLWI8u>9u@:t?9o=6p>7sA:q?8p?8p?8n?7o>7m>6n=6m>6k<4l=5m>6k?6j?6gA6eA5bB5dG9[A2^G7^I8N=+F7$G8%>6!LL4GK2DG,DD*MM1\[?baC`aBYY=dgJsw^sy_X`I:D,/;%7C/6>16<26<26<25;15;15;15;15;15;15;14:04:039/39/39/27127127116016016005/05/.3-.3--2,-2,,1+,1++0*+0**1**1*)0))0))0)*1*+2*,3+.5--4,.5-07/4;39A6?F>BJ?;F8:E57B14?.3?+6B.F2v?*u>*vB-yF3xG6q?4n<3q<4tB9sA8o?5qA7xH>n>4m>4m>4k?4l=3j>3l=3j>3g?5gA6gA6gC7eC7cC6`C5^D5bK;UB1ZI7`S@RG3C;&E=(FA+AE,BH.AE*<@%?B%NN2_`AijKaaEnqTvzagmSJO94<%4=(=F38>28>48>48>47=37=37=36<28>48>47=37=37=36<26<26<25:449349349338238238227105/05//4..3--2,,1++0*+0*).().().().().(*/)+0*,1+160/4.,1+,1+/4.6;4=BK:4.8/.5..5.-4-gdUgdUheVheVheVheVifWifWifWifWifWifWifWifWifWifWkeWkeWlcZmd[md]mf\mg[jiWkmXimVjoYjs`hthm|wˆ˜˜¦³¹¿ÊÐÓÜãëðööûÿüýÿýÿþÿÿýÿþùþþöýýñúûí÷úçô÷âîóÜåíÕâèÎÛàÀ×Ú»ÖÖ¼Ù×ÂÝ×ÇÞ×ÍåÛÙìàà÷ëïúïõÿôúÿøýÿùüÿúúÿúúÿüûÿþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüýÿü÷ÿý÷ÿýúþýýýýÿûýÿøþÿöýÿôúÿøûÿ÷úÿøøÿüùÿÿøÿÿøúÿôúüîÿÿíÿøäýîÛÿïÛÿïÙîÒ¼°yvR2f>2f>2e?2b@4bB5`C5_C5_C5[D4ZE4WD3XI6OB/\T?oiSc^HMK4IG0IK3>D*?H-@F*48>47=37=37=39?58>48>48>48>48>48>48>47<67<67<66;56;56;55:45:438238216005//4.-2,,1+,1++0*+0**/)*/)+0*,1+-2,-2,05/.3-+0*+0*-2.2718=9;B:@K=@M;@M;=J68E13@,1?(0>'4.:0-7//6/.5.gdUgdUgdUheVheVifWifWifWifWifWifWifWifWifWifWifWkeWldWlcZmd[md]mf\mg[jiWkmXinWiqZgs_drejyt…••£²·½ÈÎÒÛâêïõôùýûüÿýÿþÿÿýÿÿúÿÿøÿÿóþÿñûþë÷úåðõÞæîÖâèÌÙÜ¿ÕÕ¹ÒйÔѾÚÔÈàÙÑêàßôéíýòøÿöûÿúÿÿüÿÿýþþýûþýùþýùþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüýÿþúÿÿúÿÿüÿÿÿÿÿÿýþÿûûÿùúÿùøÿøöÿù÷ÿú÷ÿþùÿÿûÿÿûýÿúüýøôñêÿûóÿýôÿûñÿøëÿôäöãÒäϼз£·œ‡’vavWChI5hI5mL9pOA.:>-;>39?59?58>48>47=37=37=38>48>48>48>48>48>48>48>49>89>89>88=78=78=77<67<66;55:449338227105//4./4.-2.-2.,1-+0,+0,,1--2.-2.,1-,1-,1-,1-.210513764;4;G9=L9@O<@O:8F71?2-9--7..5--4,fcTfcTgdUheVheVifWjgXjgXifWifWifWifWifWifWifWifWldWldWlcZmd[md]mf\mg[jiWkmXinWiqZgs_bpcgxr‚””£²·ÀËÑÔÝäëðöõúþûüÿýÿþÿÿýÿÿúÿÿøÿÿôÿÿóÿÿïúýèò÷àçðÕâèÌ×Ú½ÑѵÍË´Î˺ÖÏÅÞ×Ñìâã÷îóÿõýÿùÿÿüÿÿþÿÿþüýþùýþøýÿùþÿúþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþüþþþýþÿþÿÿþÿÿþÿÿþÿýþÿúýþøýýõûûñüüôþýøÿþúÿÿýþþþþüÿþüÿûöüÿúþþøúùôñýöðÿþôÿþñÿþíÿøæüïÜòãÐâѽͻ§³¡›†sŒucz]K}^LtUCaD2W:(Y<*[>,X=*`E2`E2`E2_F2`G3`G3`G3]H3\K7\M:\M:YL9XM9UM8RL6QL6NL5QQ9ikS|€gmqXSY?FL2>G,48>48>48>47=37=38>48>48>48>49?59?5:?9:?9:?9:?99>89>89>88=78=78=77<66;55:4493382382/40.3/-2.,1-+0,+0,+0,+0,+0,,1--10.21/32/32/32-4-3?17F3=L7@O:?N7M:MJ9BC3=@5;A7;A7;A7:@6:@6:@69?58>48>48>49?59?5:@6:@6:@6;@:;@:;@::?9:?99>89>89>8:?9:?99>89>88=78=77<67<6495273162/40-2.,1-+/.+/.,0/,0/-10.21.23.23-12+1-+9*/@-6H2;M7=O7A6>A6>A6=@7=@79?59?59?5:@6:@6:B7:B7:B7;@9;@9;@::?8:?99>79>89>7;@:;@9;@:;@9:?9:?8:?9:?98?87=94;4382160/4..3/.3/.21.21,2.,2.+2++2*,4))6%$6)=!2F+8L1;O6;M5;M5;M58J29K3;M5H&DK*FM+DN)MX0KW/FQ)CM(OV4^cC`cDZZ>YY?[YB_ZD_ZF_XE\UBXQ>UN;KF3GD1DA0A?0@>1>>2??5?A6E=8B:7A97A87?45=03;.28.160.40/51-7/-9-.;)0@&6G'7M';V+;X,ZUA[VB\UB\TAZR=YQ6:@6:@69A67B47B46C26C2:B79A69A68@58@59A69A6:B7:B7:B7:B7:B7;C874>63=40>-3C)9M*BY/Ga1Op;Ln;Li=Fa>BY?[S>\T?YS=VP:QL9MH5GD5DB5CA5?A6=>6:@6:@69A67B47B46C26C2:B7:B79A69A69A69A6:B7:B7:B7:B7:B7:B7;C8F;C<>E>9C;6@74B19I/BV3Pg=XrB^J[}JWtHMhECZ@9O:6G54E28K5/9./6.,3+YgMZhN\hP^jRblTdnVhmYinZklZklZmj[liZnhZnhZog\oi[mgYkhYkg[kg\jf]jf[hfZfgWfgUafP_hUdq`p}tŽ—¦­«¹ÂÇÑÚÙâçíôúõýÿøþüõüõóöíîòäêëÝäåÓÝÚÉÔѾÐ˸ÊŲüª½´£Ä¸¨Æ¸«Ë¿³ÕÈÀàÕÓêàáôéïøñøüôÿý÷ÿþûÿþýÿýüÿûüþüþýýÿþþþþþþþþþþþþþþþþþþþÿþüÿþüÿþüÿþüÿýúÿüùÿüùÿüùÿû÷ÿü÷ÿýüýüúûûûüüüþþþÿÿÿþþþýýýþýûÿÿûÿýúúóíêáÚãÙÐïâÙûòëÿüýþþÿýÿþþÿýüÿûûÿúûÿþúþÿüÿÿüÿÿÿþÿþþüÿýôÿþìÿüæÿýäüúãÿþéäßɉ…lPJ0RM0TM0TM0TN.UO/UP2UP2TP3SO2PO3ON2QM2ON2OM4LO4LN6JP6JO8GO7JS8GP3FO2HR0LS2NU3U[7[cZT>XR6:@6:@69A67B47B46C26C2;C8:B79A69A69A69A6:B7;C8;C8:B7:B7;C8;C8=E:>F;=G<=G?>H=>I9@H9?G8?E9?D==D=9C;6@74B19I/DX5Ri?[uEYzEWyFTqEIdA>U;3I40A/.?,6H2@R8K^BReGSgKOcGAX>6I31;007/-4,YgMZhN\hP^jRblTdnVinZjo[mn\lm[nk\mj[nhZnhZph]oi[mgYkhYjfZjf[ie\ieZhfZfgWghVafP^gTdq`p}t}Œ‘ §¡¯¸ÂÌÕÖßäêñ÷óûýõûùòùòïòééíßãäÖÚÛÉÓпÌɶÉıþ«¾·¥»²¡Ê¾®ÑöÚÎÂåØÐîãáøîïÿõûÿùÿüôÿý÷ÿýúÿýüÿüûÿûüþüþýþÿÿþþþþþþþþþþþþþþþþþþÿþüÿþüÿþüÿþüÿüùÿüùÿüùÿûøÿû÷ÿü÷ÿüûüûùûûûüüüþþþÿÿÿþþþýýýþýûþýùÿüùþ÷ñõìåïåÜ÷êáþõîÿüýþþÿýÿþþÿýüÿûûÿúûÿþúþÿûÿÿûÿÿþýÿþþüÿþõÿþìÿüæÿüãþüåÿÿëåàÊŠ†mQK1TO2VO2WP3TN.UO/VQ3VQ3UQ4SO2ON2NM1QM2ON2OM4LO4LN6JP6JO8IQ9LU:IR5JS6NX6QX7RY7[a=ckDŽb’¢s¡®ƒ©”žyŠ‘osxZZ_APP8NN6NI5LG3NG4QJ7VN9XP;XR6:@6:@69A67B47B46C26C2;C8;C8:B79A69A6:B7;C8;C8;C8;C8;C8;C8F;=G<;E=:F<F7=E6>D8=B;:A:7A95?64B19I/BV3Ne;Uo?St?Qs@Ol@E`=9P6.D/,=+,=*1C-:98876677766554/.//002235435I[l|†˜›”Œƒ}ufTMLMOQMN[q…‡Š†xfZVZZ[.//0344466668888776666778888888855544433666666643334455555678899>?@BEEFFGGHIIJLJKNU^is~†Œ”£¬³¸ÁÒÚÞâçìó÷úùõîåÚ͵°°°¯®®¬©¦£ œ˜–”‘‘‘’‘”’•–œ¦²¼Áº¬—|bLA@>=<:98866635221--//0011565546:DTcq{‚‰‹ƒ}xo`QLLLPQLGM^juxzwk`WT]]]--./013433444466443333445555555533222111444444444444455555667899<=?@BCCCDDFGHIJIJMRYbju}‚‹“𣬲»ÌÔØÝâéðôùøôíáÓŹ²®®®­¬¬ª¨¤ žš—•“‘ŽŽŽŽŽŽŽ‘”—¨¶¿Åľ·¦tZE<@@?>=<9864423110-,--//013554247=NYensy€ƒzuk_TOLNNMJGGKM]`b`ZWUX^``,,../03322333355332112333333333322221110333333334444444445567888;<=>@AAACCEFGHJHJINV\dnv{‚Œ”œ£ª´ÄÌÑÖÞäìñ÷ôðéÜ;±®«ªªª©©¨¥¢ ›—•“‘ŽŽŽŽ‹‹‹ŒŽ”— ¬¹Âź±£oSA9@A?><9874432200.--..001123342148GOX`emy‚€|wnd[RLOLIHHE@;BDJJIKOV^``++,-//0011112222221111221111111122211100333333334443333344567788:;<=????BBEEGHJHHGKQX_fnv|…Œ“›¢¬»ÂÉÐÙâêðòñìäÖÆµªª©©¨¨¨§¥£ žš–“‘ŒŒŒ‹‹‹ŠŠ‰Š‹‹Œ’˜¡®¼ÂÄÀ¹²¥sWC<>@>=:98644311...----..0001220/24?DKTZduƒ‰…~tmcVLKIGEFD?;:>DGGJNU^aa++,,./00111122222110011200000000222110002222222233333333445667889:;<>>>>BBEEGIJIFFJOT\bjqw}…Œ•›¤²ºÁÊÔÞçîíëçßÑ¿¯¤¦¦¥¥¥¤¤¤¢Ÿœ˜•‘ŒŒ‹‹ŠŠˆˆˆˆ‡ˆ‹‘–¢­ºÁÁ»¹²¥‘u[GC;97644321/...----..00/02210038;CKS^t‡Œ„zriWIEGDCC@@>GKQUSRTY^aa,,,,--..//1000/////////0///////////0011211111111012333333333456789:;=>>>??BCDFGFGHJPTX^bmt|ƒ“˜ž§­µ¾ÊÔÞåèêæÚÈ·ª¢¢¡¢¢¡¡¢ œš˜•“ŽŒ‹‹Š‰‰‰ˆ‡‰††‡ˆˆ‰‹‘—£±º»»¸´¯£‘~jVILJB<976343110/,,----////001111144;ACJ]y‹“”ƒtj_ZLHA>?ALUbnvrlg_W[`c,,,,--../.00////....///////////////0001111111111001233222222345689:;=>>=??ABCEGHHHLOQVZ_hpw‰–›¢§¬´¾ÉÔÛßàÞÔIJ¥žŸžŸžžžžžš™–”ŒŒ‹Š‰‰‰‡‡…†……ƒ„†‡ˆ“—£¯¸¸·³±ªŸmZNLKE@=841220//.../-//////0011111259>@@ACDEFHIJLNQT^eox‚Š”™››Ÿ¥®¸¿ÇËÊöªž™™™˜——™™—•”“ŽŠŠ‰ˆˆ‡‡„„ƒ€€€ƒƒ‡ˆ”–ž§®®­ª§¡š†zmbSQKE@;510/..../0/////./.0/0////27639Hb{‹Œƒ…’“Œ‡‚}ˆ”˜”‹…kXSYZ++++--..--.--,,,,,,++***,,,,,,,,,,,,,+++,--..////00000/.////01349:;<==<<==??@ABCDCDEGHKNX_ir}†Œ————œ£«³º½¾¹°¦›———–•”•––•“’Ž‹‰‰ˆ‡†††ƒƒ‚€€€€‚ƒ‡ˆ‘’𣍍©¦¢›•Œ†~tj\VNE?<7600.///1211111/1/202000028516G`zˆ†‡› ˜š›˜‘‰‰’•ˆ„{gTQUV,,,,..//../...-----,+***++++++++,,+++***,,,-..////00//.-00/01234::;<=<<;=<>>?@A?@@@ABCFHQXalu€†‹“•““•𠥬°´±ª¡š–•”““““””“’Љ‡‡††…ƒƒ€€‚…ˆŠŽ—Ÿ§§©¤œ–ˆƒ~ypd]RJB>:9321//012111110001111///28535E\u†Ž‘‹—¢©¥¦§¤—‹ˆŽ„€wdQMQR,,,,....//////../..-,++*+++++++++++***))++,-..///////.-,00001244:;;<=<<;<<>=>>?>=;;<=>@CGOYdnx…‘“—™ ¦ªª¥Ÿ—•’’‘‘‘’’‘‘ŽŠˆ†„……ƒ‚‚~~€€€„…ˆŒŒŽ˜¡¨©©¤™’‰‚€~xjdZQIC><6430112422222000110000016544AWq‚‹• ¤©¨§¡“…‚‡ˆŒ‹{q_MIJL.,...../000000/12110/,++++++++++++-*,))(*+,,-.//--//.-,,12223456;;<<=<;;<<===>?=>=<99:;?CJT^hov{‡‹‹ŒŽ’•˜œ¢¡ž™–””“ŽŽŒŒŽŽ‹Šˆ‡„„‚€~~|||€€‚……ˆ‹ŒŽ“˜ž“‰}ztgb\UNG@=8853223420022222331100014444?Tm‰ˆŠ‘›ŸŸž˜Œ‚…Œ„‰‰~vlZJFFF/./000123446543455432100..--,+*).././...//-.--..--.//02224568::;==>>>=<;=<<;=>>@BB<9546;@GOV[afmy†‹““’““”•”’‘‘——’Œˆ„‚‚ˆˆŠ‰ˆ‡„ƒ{~vpvvv}}ƒˆ‹Š‡…‡•“ŽŠ†‡ˆ‹Š‹Š„|rnha[YZVOIB@:53331/---/13344320////10//000112344776555776632000//--+))./////..//..........//135578:;<=>>>>>=<<=<;;==>@DFC@=<;>AFKPV\agpx€ˆ‘““‹‹ŒŽ‘••‹†ƒ…†‡ˆ…„‚wwpmrrqu„ŠŒŠ‡…ˆ•‘Šƒ€ƒ†‹ˆumd^YYZXRMEA;5321.100013444320/-,,220-8So€‡††ˆ†„Š“™–“Œ†‚‚ƒƒ‚xqhYMF@;1111224455888776887643211/0/-,++/1////..00///000//000/12679:<=>???@@?>===<;;;;922333455679::999:998544433110.--020000//110011111111123399;<>@@ABABAA@>>==<;;<=?BFMTXWQKD><@HT`eiku}…‰Šˆ‰††……†‡‰‰‰ˆˆ‡ˆˆ‰ŠŠˆ…‚}zxzxxuv{{€„‡‰ˆŠŠŒ“”‰„ƒƒ‡ˆ‹‹ˆrlhfgd`\QLB92.,-58874320,+*(''%(.10.8Piv{y|}yz‚€}}}~~}|}zuneWNE?94445557788;<<<<<<<;;876656632101244422223333223333335566;<=?ABECDDEDCB@@>>====>>BFNUZYSLD<98556677889:=>>>>>??>=;:998898745466664444444533444455889:=>@ACDGHFFFFECBA@@?>>?@@ADKQVURKD?=?CISX]dlv}‚ƒ‚~}}}€ƒ†…ƒƒ„„ˆˆ‰Š‡†ƒ€~|y~…Š ¦Š|‚€{z|}‚‰†wu‚–Ÿ¦§–’‹†‚ƒ†ˆ†ƒ~zvmh`WPHB@=<852/,++,-/34663???@@BBA@==<<<<<<;99889888866665566775589:<=@@ACDGHIIJJJIFDBAA@@??@@A@ACFHJJHEEEFIILRZdnzƒ‰‹‹‹‡‚‚ˆŠ…„„††…„ƒ€~€‡ ËØ«Šˆurqrv|„€qtŠœ­ºÂÿ·­£š‘‹‰ŒŽ‹‡„€zwpkg^XPHCA@;842..036:>AECFLV[`gijlgflonnrsoorwyxususnibTMHE?778889::;>=>>>>=<:;::99999766666777569;>><<;:8877999:<=ABCDFJKLNNNNLKIHEEBA@???@@?>>AABCDDFEEEDDEEEEEDCCDCBBBBAA@@><;;9877999:<>ABCEIJLLNNNNMJIHEECB@@@@AACIKVjt{…ƒ„„˜¡¢“”šŸ œœŸ£›™ ¤§®¶µ°§›“Ž…yr|‡……•µÓÛÝǾг„‚ye`kuw–¹ÒàçîùÿÿÿóìêæàÞÝÛØÖÕÐÎÌÉÌËËÊÊÉÇÅñ£™„kHTMHJKKOU[cginzztrppquwwwsxzy~ƒ…ƒzrmh`TNRVV8889;@BCEFIKMMNMPMLKIHEDCCAA?@@DSRiŽ­ÁËÄš–•›«¾ËÄ£ ¥¥£¤§«¡˜¥¬²¸§±¹¾º­–‚{vz…œº×èáÎÍ»ÆÆ”Œ}jhu€‚±àïîïøÿÿþÿõðïíéìïñïïíìêéèäåääéîòôüíáÒËǦr]XWQB:?LVaehq~wxurrvyzz€„Š’—˜–‘‡zpg^TPRXY7789;=@ABBDDDDEEGGGFFFHHLKJIHGFEDDEEDEEE@?=<;:::99;;?@CDFFJKMMMMOOLKJGEDDDB@@ABFQX‡½ØäâÉ”˜­ÄÔ˱§©¬¯°³´²©£¤©«®­¶º»º¾Åľ™‹‡ÃÛàÚÝÌÑÆÅȧwx~‚…‘¬Õêöòòùýùóýøôöøùÿÿÿüüù÷øöõ÷õôõ÷üÿÿÿýúïäâÕ´|hXPG?;AQ_go|ˆ‡}z||zz}ƒˆ•œ£¦¬±°«¡”ƒsh]SPPVW6678:@@CDEEGGGGHIIIKLLKLKLKJIGGFFEEDCAA@@=<;;;;;ACDFHHGHIIJJMMMLMMNMNMJJIHGFDDCCA@??<<<<<<@ADEHKMNPPOOOOMLIFECBAA??@@No¥¾º¼Á¿·§¢›–˜ž¤¢ž ¢¥­·¸²±­¨¦¯¼ÃÄÁËÕÝèõýüéãÜÙÜßåä×ÔÏÎÄ»ÇÒ¦‹¤ËàèéöîáÕÊÈÓåðõûÿþùùú÷ööùûþÿÿÿÿÿÿûù÷ôûõùüúÿÿòðåÓ¯„hisyŒ£­²¶²ª°¶½ÀÃÉÕÝâçéæåäàÙʺ¢ˆte\[\\^55555689<=@BDFGHHHHJJKKNMMMMMMNNMMKJHGEDCCAA@?<<>><=>ACDHILMNPOOLLKLJIFCA>=?>?@BDGJLOOLFEHJKMKHC77>>:Ce½·¦¤§¤£¨¢¥©«¬¬®ª¤¡¢¦ª¬¬¬©«­³½ÄÀ¸ÇËÏÕÛáçíðòòïêãÝÚÛÔÏΞÂÏÈÏáîðíóøëáÖÉ»³±´ÊÔÞâëøþùýúýÿýúþÿÿÿùõôøýÿÿÿùïåå÷ÿÿðõèÆÂŒ‘«½ÔÞÝÜÞâçëñôõõóôøøøõòíèåÖÍ»£‹yrp{wv01356788:;=?ACDEHHHJKLMNKKKPWYVROMHFGHFBDA??@@=;===<=>=>BDGJMOPLA?EHJJFCA<=EJPd…°« ¡£žž£¡§®³¶·¸µª¥¤¥¨«««®«±¿ÆÁ¼ÀËÏÐÑÔØàçîôôñêá×ÕÞÙÕÔÌÁÄÏÑÚéóôðõøåÚÒÅ·®ª«¶ÆÔÜãïúþø÷úÿýùüÿÿÿüùùüþÿÿÿôòóö÷÷úøîÜ˶s–´Îåïëéìíöûÿÿÿÿþüýüûù÷óðîæÜʳžŽ‰ˆŽ‰†/0124577::<>@BCDIIJLMNNOKNT_imlk`YOHHGE@C?<<=>>=89;<=>?@EGILOPPL<:>ABC??@?AFHKMOOPLB?@AA@><=FPXk‡¡®§¥¥ª¨ ¡¤¥«³¹½ÁÅĽ¶²®¯°²³¶¹ÄËȾÀÍÖØÚÛÞáæìóôôïäÛÒÐ×ÚÚÜÖÐÍÒÄÅÊØâåÞÖÓÎǾµ°¯±¬½ÑÙÝåóýððöþþüúüÿÿÿÿÿÿÿÿÿÿÿüöüüóïìÎÜûÓhq¦Ò÷ÿÿÿÿùúüÿÿÿÿþÿÿÿÿÿÿþþýöìÚɺ³±°·¯©11001245789;=?ADILNPRRSQOVfw†Ž‡{pi_UNKE?;9988678;>?BCGJKLMMLLMLIC?<879@HZw•§©ªª«¬©¥¦«§­µ¼ÁÅÊÊžº··¸ºº»ÇÍÅÁÆËÏÛßáâãçìðõöòìâÙÐÏÖÙØØ×ÔÖØÖÍÉËÖÙÒÅÅÂÀº·´¶¹µ¿ÉÒÛãíöìíòûÿýúûûûÿÿÿÿÿÿÿÿÿûõýþóçàâÿÿïŒl¦ÎóÿÿÿÿûüýÿÿÿÿÿÿÿÿÿÿÿÿÿÿýóäÖÍÉÊÊɾ¶64311234678:<>@BJMORTTSRQZlŒ–™š™”Œ†xnf]VMD>;;75468CAKf€ŠŒ’¤©«¬­¯°±±¶½ÃÈÌÒÔÏÍËËÌÍÌËÓÕÒÌÎØÚ×äéìîðòôö÷ôðéâÙÒÏÔÕÓÑÒÓÒÐãèçÚÌÄ¿¹¹¹¹¹¸ºÀÃÉÆÉÑÕÖØßæèíõüûûûö÷ùýÿÿÿÿöòôúÿÿ÷ìöïãïÚßÞÒ¿ÇæÿÿÿÿþûùøúúùúüÿÿÿÿÿþüùðéäâæëññìÜÐ@=:75556779;=?@BJMRVWXWTS^p‚‘œ£§ª¦¡ Ÿ™•’‰yj`XRONKF@??@ACCBB?><;AGPY_ccef_j‚’Ž–§®®¯°´²°µ¼ÂÈÍÑÕØÒÐÐÑÔÔÓÓÞÕÑÖÞÞÚÜçëïñô÷÷÷÷ôîéáÚÔÏÎÏÎÏÐÒÑÎËãóëÕ嵸¸¹¹º½ÀÄÊÊÎÕÓÎÍÖãæèòøù÷úôõøûÿÿÿÿïïùýùòõýûÿëóîöíß¾¼Øùÿÿþÿüûøùùúüýýÿÿÿÿû÷óëèäèðùÿþôãÖBA@><:876678;>AEIMRUWXZ[TXg|—ž¥ª«¬¬ªª¨©Ÿ™th]XXYVMC??B>@B?<:>AFUelwƒ„€‰¤¢š—ž§¬®±³´¶¹º¾ÄËÑÖÚÚ×ØÙØØØÚÝæàÚãþÿÿçåíñôôõøø÷óíãÚÔÔÓÌÊÍÏÒÒÒÑÚÏÜôåËÅ··¶¹º½¿ÄÆÇÌÙßÔÃÀÏÞâæïñïíñùø÷÷üÿÿýõïóûÿÿþüÿ÷ýüêëû鯭Ëèùÿþüö÷÷öøýýûÿÿÿýÿÿöçäßáñüýÿÿùçÚCBA?=;:97778:=@DHLQTVWYZUWeyŠ”›£«¬®¯°¯¯¯©¢˜Œ€uic``]VMFBA:999:<>@EILORUWWXX^p€Œ•¨©­°±²´´¯«¥Ÿ—Œ‚}upf_YQGA=HT`n€–ª½ÉËÉÆÇÆÄÅØßÐú¯­­®³¶¼ÃÈÓ×ÚÜÞÞÝÛÓÒÓØáãáÜÜÐÍÙâÜÐËéóýüôñõûñëäÞÚ×ÖÓÓÒÖØÚÛÜÜÒæåÎßóßÕÈÄÃÃÂÂÁ¾ÂÂÈÏÎÆ¿ÁÎÑÕÛÝÙÚÜëóüÿúõõýÿÿÿÿúüÿÿÿúôìàÔȱh‚¬Îåïÿûùøõøÿÿþûúùýÿÿý÷ëßÞíþÿÿÿ÷êäNMLJHFDC?>===>@?CEKNQRVVZV[l~В𦩭¯°°°¯«¨¤ š“Іƒ{md_YRNW_m˜¬¼ÊÖßÞ×ÐËÆÂÓáä×Í˶·¸º½ÃÊÐÕÙÚÛÙÙÙÚ×Ô×ÚÝßÞÝÜÖÙ×ÏÍÒÕÔØæøýùõö÷÷íâÚ××ÙÙãäââàßÜÚÑïøÓÑæÜæÏÊÆÅÄÄÃÀ¾¾ÃÇǾ¼ÉÊÎÕ×ÕÓ×éðüÿüòóüÿÿþôóúýùýõïìÝÀ¨œYn–¾ßîþþüùöùÿÿþýúúþÿÿÿÿòåáðÿÿÿÿöíèQPOMKIGGBA@???A@BEKMPRUUYUZi|‰“𦩬­®®­­©§¤¢Ÿš•’’‰|somijy‚Ž£»ÍÖÚàäàÙÒÌÇÆãåàÓÎÎȾÃÃÅÉÎÑ×ÚÖÕÖÕÖØÛÚÛÝàßÝÜÜÛÒÝÚÍÆÎÒÍÌÔâóÿÿþóêáØÔ×ÞäéïðîèãÜ×ÑÍçÿÛÈ×ÓêÙÒËÆÆÆÃÁ»»¾À¿½¼»ÃÄÈÐÓÐÒÕéîûÿÿõõþÿÿõîñ÷ðãóõññîΩ—uRa„±ÝïýþüúøüÿÿÿÿøúÿÿÿÿÿúîêõÿÿÿÿùòîSRQOMKJIEDBA@AA@ACIMORUUWRXj}‰’˜¤¦««¬­¬¬¨¦¤£¡ ›™’‹†ƒ„ƒˆš©»ÏàèèäÞØÒÊ¿ÃâßÙØÚØÒÈÀ¾¿ÀÂÃÆÆÎÐÑÔÖÙÝÜÞÛÜÛÛÚØ×ÕÓÐÏÒÑÊÀÈÊÕçúÿÿ÷êáÙ×ÜãéðöøôíäÞÕÏÉÑúäÈÐËääÜÑÉÆÅ¿º¼½¼ºº½¾¼¼ÀÈÌÊÌÐèìøÿÿ÷÷ýùôéãêòêÞöÿ÷îùïÄ£jIXu¥Üòùÿÿüùüÿÿÿþ÷÷ýÿÿÿÿÿöòûÿþþÿýøöVTSPOLLJHFEBBACACDJMOQTUUQWj~Œ“™Ÿ¤¦©©©©©¥££¢¤¥¥£˜–””•˜ž¨¤²ÁÎÚäëëçߨÑÇ¿½ÁáÝÝæìæÛÏÍÈÉÇÆÃÂÂÆËÎÓØÙÛÛäÞÚÚßßÛÕØÎÊÐÎÇÊÔÈÎ×ÞæîöûÿúòìêçåæôøôïèàÙÓÆÀôëÏÔËßêàÓÉÆÆÃ¾¾ÁÀ»·¸½¾µ³¸ÁÅÅÈËåæñþþóðöøñåßéù÷ïýÿõßöÿÓ¤`ERkœÜôöÿÿýûüÿÿþúòòùýúþÿÿüøþÿýýÿÿüûXWWUTRRPMKKHHGHFGGJNRUUVXUZk{‰‘˜¦§¥¤¢£¤¤¡¡¡¤§¬®«¡œ•˜¦´´³ºÍÛãäãßßâÝÛÈÊÊºÛæéëèæáÛÔÏÈÊÑÍ¿¸½¿ÃÈËÑÔÛàçàÛÞæçá×ÑÎËÉÉËÎÏÊÏÑÒÒÕ×ÜàæëëéçèíööïìêãÙÐÃÄçéËßÅÚáÜÔÌÈÆÇÈž¼»ºº·´µ¹»»¾ÀÄïõêôûìôÿÿûêâåíóõÿÿññÖø½…aJMs¥ÍíÿÿÿüûýþÿûïåçðøüýÿÿÿÿÿþüüûýÿÿYXXVUTSRNMLKJJJIGHLORSVTXUYk{†–¡£¡¡  ¢¡  ž¡¤¦¦££  ¥±¼½¿ÌÜæéæáÛÚàÚÚËÌÊÁåæèêçâÛÕÏÔÆÅÌÌÁ¸·¹¿ÆËÑØáäåâááäâÝÕÓÍÉÈÌÎÏÐÕÖÓÏÉÇËÏØÞãææææèìíìèàÛÕÒÕ»ÖÐÙëÚØçâÜÔÍÉÈÇÈÄ¿½½º¹¶²´·¸º½ÁÅëòçðõèñþÿÿòääïýÿýÿëí×ò²v^NSu©Ööÿÿÿýûúûúöíããëôùüÿÿÿÿþùøúúùûþ\[[YXWVVSRQOOOOMJJMPSVVTWVZky…‹’™›››ž   ›œœœ›™ž¨²¿ÆÅÂÑÚßáááßßà×ÕÏÊÃÄéàäèãÜÖÑÌÕľÅÍÆ»·º¿ÇÏ×ÞæéÙÚÝßßÞÜÙÆÀ»º¿¿¿ÁãåÞÕÌÈÈÌÒÕ×ÙÛÜÛÜÛßàÜÕÐÐÑÔÂçÒÚÞèðíçãÝÖÏÊÅÄÀ¼¹¹·µ²°±´µ·¹¾ÃÜêäðöçìõäððëëòþÿýüçèÙíªlYOWw­áÿÿÿÿüúûûùôéÞÜáéïõüýÿÿùñïó÷ûüÿ\\[ZYYXXUTSRRRRPLKORTWWWVU\jy‚Š”••–˜˜››œ˜–•““’‘ˆ”¨¸ÇÏÒÐÙÚÚÜÞáååãÖÑÑÆºÅêÝãæãÛÓÐÎÏ»ÀÇĽ¸½ÂËÒÙàèëÙÚÞàááÜÙÊÇÃÀÀÃÆÐìíäÙÏÇÈÉÏÐÏÑÔÖÔÑÓÓÓÐÍÊÌÌÌÏôàÒÒæûÿÿÿöçÕǽÄÀ»¸·µ²°¯­°°±¶¼ÀËßâôøæäèÚêïìðùÿÿþøååÚæ¨jUS\y°çÿÿÿüûúùöòêÛÐÍÑÙßéòôùûôêçëðûûþ\\[[ZYYYWVUUTUUSOOQSUXYXUU\hu|…ŒŽŽ’“”“•’މ…~€‘ªÁÖáåæâÜØØÜãìíæ×Ðп³ÈàÜáãáÚÔÑÏÇÀ½½¿¿½½ÂÇÏÕÛàçëçæåèéçÞÖÍÍÉÅÂÄÎÞëíäØÌÆÄÅËËÌÎÔÔÓÐÐÊÅÄÆÇÇÇÍÍØáÔäàß×ÖÞåêêèäËľ¸·´°®¬¬¬¬­±·ºÆÞâðôååèûþñåêüÿÿþõèäÝâ¬s]^h³èÿÿþûù÷ôíãÚÉ¿»ÀÈÏÙãëó÷òêçéîñðò[[[ZZYYYXXWVVWWXQQSUXXYXWUYenu~ƒ…„‡‰‹Œ‹ƒ~xrloƒ”¯ËãïóôëáÙ×Þåððä×Ìκ°ÉÕØÚÛÚØÔÍËÀÁÀ¾¼»½ÀÄÊÒ×Üáäèêêêðö÷ðæÛØ×ÒÑÓÜëíîæÜÑÊÈÉÆÉÎÓÚÝÝØÓÉÂÀÃÆÅÅÌÍÍæÛïãÚÕÒÕÖÒÌÆÀÎÆ¼µ±¯«ª««¬¬«­²µÉààêîæðöÿÿñçðÿÿÿýôíåÞÜ´…qoy¶ßùüÿúôîæÜÐŲ¬¬²¹¾ÉÒàèðñìéèêèæå[[[[ZZZZYYXXXYYYSTUXYZZYYUX_djsyzz‚…‡ˆˆˆƒ}ysnio„—³ÒìöûüðçÞÛàçðïÝÔÈÉ´±ÎÉÎÐÏÐÓÏÈþÿ½¾¿ÁÄËÓÙÝáäêëñøýÿÿÿýúöóóö÷üþöôíãÙÐÎÎËÑÙßâäåßÙÏÉÄÂÂÆÈÉÓáëÞàëèØÕ××ÕÒÍÉÖÌ¿´°¬«©¬­®­««­±ÀÚÞèðêõýñøõíøÿÿÿüòñçÞÙ½˜{‚‘¬Ëàéìã×ÍÄ»´¬œ˜œ£ª¯¸ÂÎØäëìéåâßÚÕ[ZZZZZYYZYYXXYZZVVXYZZZZ[WW\^bjqttx}„…‡‚}zzxt|…˜²ÓíöüýôëäáãæíêÖÑÅò³ÑÃÉÇÅÈÍÌüÀÄÃÁÂÃÂÃÄÊÔÙÝáåêõþÿÿÿÿÿþþöò÷ÿÿüôöóíæÚÔÑÐÔÝæëëèèâß×ÓËÄÂÈÏÎÔæßàÒìåÕÒÒÏÎÊÈÅãØÊ¾·µµµ¯±±±¯­­®±ÐÜìôîõøÿÿúëñÿÿÿúóõèÜ×Ĥ†~¡´ÈÕÊ¿°¦š–‘ŒŠ˜ž¢ª³¾ÉØãèæßÚÓÎÈZZZZZZZZXXXYYZZZZZZ[]^\\YWWXZ]``gjprx‰Š‰ŒŠ‡‹‘‹‰¡³ÊÜçóþöñìééééâÏž·°²ÀÒÇÔÍÌÖǵ»ºÁÃÂÀÂÅÇËÐÖØÚàìõö÷øùúüüüû÷øÿÿÿÿÿþîåãÝÓÑÚâèîòòïîåÜÑÒì»ÄßÈÍÞèâØÚâåßÕÏËÌÍËÅìàȹº¸±´°°®¯°²´³°ºÖìñöûõÿýòôýÿÿÿÿñõïÙоž†}~‡”ž œ’Š€zy|ƒ„†Œ“•˜¢§¯½ÎÜàÚÓËÀ¸ZZZZZZZZXXXYYZZZZZ\]]^\\][[YZ\_^aeknu‡‹‘š¥žšœ¦¯ÀÐÚçóõõôñìçáØÇ½¶±«®½ÐÚÜÔÐÕÍ»²½ÂÄÄÄÆÇÊÏÏÔÚãêïðççëðöúþÿûøúÿÿÿÿüôõôäÚÛÝÚñô÷ööøùôÛÚ×ääÎÑÁÔáèàØÙÝÝÔÏÉÇÈÊÊÆíáɺÂÿ¿¾½»¸µ´°´»ÓèïöþùÿýôõþÿÿÿÿòöòÝз•uxŠ‹…plhgkqy|„…‹Ž’”—››¡¬¼ÍÕÔÎź±\\\\\\\\ZZZ[[\\\\\]]]^^\_]\[Z[]\]beiq}„‰˜›œ ±½·±µº¶½ÈÒÛäñ÷ù÷ïå×ÍÀ¸±­©­»ÏÙ×ÙÚÜÝε¾ÁÄÆÉÈÉÌÏÏÓßîôñéàÝâæêîïòòïð÷ýüûøôñòïîîéåðóööõõóíÜâÚßÿåÑÎÙßàÛÕÖÖÒÈÃÂÄÅÆÆÅëáÉ¿ËÑÎÒØ×ÔÏÉü¶¹¼Ïãíøÿýÿüõöþÿÿÿÿòõòà˧‚nhmt{}xq`_aenu}€„‡‹ŽŒ’”“•š¨¸ÄÈÆ·©Ÿ[[[[[[[[ZZZ[[\\\]]]^^^^^^^][\[\[^bdgoz„ˆ›¦¯¸ÈÓÌÆØÙÑËÉÌÓÞîõûùðâÑÅ¿¶¯«ª®¼ÎÕÕàåáèß¿Á¾ÀÄÉÊËÎÍÒÙåñõðäÞÝàäçéììèæêðõöúûýäåÿÿÿòôèíñôñêáרÚÔåÿõÝåÛÚÕÒÑÐÍÆ¾¹»¿À¿ÀÅåÜÊÇ×ÞÚßçéæáÙÐÈÁ»»Ëàìúÿÿüúõ÷ÿÿÿþúðñðáÃ’o_\dltvromlou{„‡†ˆ‹ŒŠŠ‹‘šª»ÅƱ¡—[[[[[[[[ZZZ[[\\\]^^^^_^^^^^\^]^^bccelxƒ”¬ÂÎÚßÚØìòéÛÍÊÒÛêòøöíÞÍÀ½µ®«ª®»ÌáâîëÞãæÕÈÀ¼ÁÈÉËÐÎ×àéííëåßßåëñôöôëèëðòõüÿõåîÿÿÿõ÷îííéãÛÎÇËÇÐòöòÛâÜÔÎÍÏÏʹ³µ¸¹¶¼ÆÛÙÎÐáçãçëîëçáØÐȾºÈÜëûÿÿ÷øõøþÿÿÿ÷ñðî㼃b\[fntxywyxz|„…†‰‹ŠŠˆ‡‰‹Œ—ª¿Ëϼ¨œZZZZZZZZZZZ[[\\]^^^_^_^^]]^__`abeeabht{}®ËÚãèæäòüôãÑËÑÙæëïïçÚɾº±©¨ª°¼ÊèéëåÚÞîôÚɾÂÇÈËÒÑÚæéêèêëñó÷úûýú÷ôñòóòôþÿæøÿÿüúôéóêÝÒʽ¼ÄÀÙúÝáÏÏàÔÊÊÎÍËÄ´­¯³±¯ºÊÖØÔ×çìèíòôòïèâÚÒºÅ×çúÿÿøùö÷üýÿÿõôòïå¶y^`anv{~‚€}|}€‚ƒ…‰‹‰ˆ……‡‰‹‡Œ™¯ÆÕÙ¬›ZZZZZZZZZZZ[[\\]^`^_^_^^^_`aaaadhgcbjv|€­ÍÞíööôøÿûëÛÖÕ×àãæäßÔǽ¸¯¨©­´ÁÏßåãâàÛæüòÙÆÆÈÉÍÕÕÞæèéèîõÿÿÿÿÿÿúôöóòòðóþÿðÿÿ÷ìïêÙëÝɺ±«¥¨¸¼ÝáÍÍÁÉäÕÉÈÉÈÈı¦¨¬«¬¼ÓÖÝÛÜéìëôýÿúôíæßØÉ½ÀÏá÷ÿÿüüø÷ùùüüîòðìá®p\_fu„†ˆ‰ˆ„}ƒ†ˆŠˆ†‚‚ƒ…‡†Œ›°ÇÖ×¼¥“[Z[Z[Z[Z[Z[[\\]]^^^^^^^\`aabbaabkjedkx}‘«ÆÙîüýù÷ÿûîåáÝ×ÞßáÞÚÐżµ¬©­´»ÊØÙáÞâæÓÏëÿëÑÊËÉÍÔÚßåçêíôüüÿÿÿÿÿûöíìíîíïýÿÿþ÷òòðãÒÚÍ»¯¨¢›ª²Ò»Ä¾½ÎåÕÈÄÅÄÆÃ±§¨­¬¯ÂÛÙáÞÞêíïüþýùóíæßÖÑ¿¼ÈÙóÿÿýÿüýüùùùêðìä×¢fXZbt€‡ˆŠ‹Œ†~|}ƒƒ…„‚€€„‰ˆŒ™¬½É˶ŸŒ]\]\]\]\^]^]^]^]]]^\\[]^`_`bcdddkhefnx‰¥¾ÐáðùÿôíçéëçäåâàÝÙÔÌŧ¯­¬¿ÌÌÐÚÜÞÞÞÝ×ÓÙðòÙÇÍÔÒÓðáïôïÿðúÿÿùýÿþðîøéëðãÿåÿÿÿûöìÞÐÌŸ§œš §®Â¿½ÄÅÔÛÚÑÈÄÇËż³­«³ÃÒØäßÚÝçòùý÷ööóòíæÝÕ¾À¹ÖéÿûÿÿÿýüþúóòëíàØ\S\gw}€ƒ‚€~}|}~ƒ‡‹‹Ž™§¯²£|]]]]]]]]^^^^^^^^\^_^[[\^_]]_`bceigegny€‡ž£«¹ÓêôôõîéîóòîêäàÜ×ÒËĺ«ª©²ÁÅÇÔÒÖרÙÛÛÚÝæëáÐÇÊÓÝõäñöñÿíó÷ûýüøö÷ïíêýØîúÕÿÿÿý÷çÚÒÁ¼¬š“’“ž°ÑÎÃÆÑëØÖÐÇÆÊÐÎÇÂÂÃÉÑØÞäÞÚÝçòûûôóôóóîçß׿¾·Óéÿùýÿÿÿÿÿüöóìì߀XR[esxw{}}|||{{{}~|}}}|}‚…‡ˆˆ‹ŒvcS]]]]]]]]]]]]]]]]^_a`]\[[[[\\_cfggghls|‚Š˜ ª¹ÏäîòøòêíóõòîäàÛÕÏÉÁ¸®ª«¸ÇÀ»ÊÍÐÕØÙÙÜàÝÛâéÞÈÈÙâõçòøõÿôðëìùõïìõêõçáêÿíÿÿòïñëÞÖÖ½µ­¨¢›©Ç¼È×ôÐÒÐËÌÔÚÛÛØÝãäàãëàÝÙÝçðõøôôôóóîçߨÀºµÐíÿûýÿÿýþÿüúôîêߥuXU_frutx{{yyyxyy|zz{{{{{}‡Š‹‰†‚yoQ@2^^^^^^^^^^^^^^^^^`a`]ZYXX[_beilkllory…ŒŽŸ­³½ÌÞñþýôòòòðïåáÛÕÎÆ¿¸­­±¼ÌǺºÈÍÓÙÛÙÜààÛàìãÒÑàÞðéïõøÿÿýòâíêðèëñÑåÜçïÿñÙÛááÞÜÚÔÉþÁÎ×ÒIJ¶ÏÙãïêñÉÎÒÐÓÙàâéçìòïèìöÞÛÚÞåìòôôööõõðéàÙ·³Ëïÿþÿÿüúúüûúòïå׈k\[cjstuwyzwvwvxx{zzzzzzz|~†‹ŒŠ†€tiPC8^^^^^^^^^^^^^^^^]_`_\ZXXY`gnsssqoprvz„Š“ ž ¬¼ÒðýþûùôíêèãÝ×ÐÇÀ¹­´¯°ÈÕÉ»¾ÁÌÖÛÚÜâàâäåâÞÞâÛêìîïöÿÿÿÿáãà÷èÜÚêÛØÿàÊÊÁÕàÚÙßÜÍÌÍÓÝëõôêÄÆåøÿÿå×ÉÑ×ÖÕÕØÜîñðòïëóþßÜÚÜãêïòôö÷öõðêâÙÆ´²Ãïÿÿÿÿùöõ÷ùùóíÛÁrb`cfktuvxyxuuuvwx{zz{||yy{}€…‡‡…ƒ{rd[Q________________^_`^[YZZ_hrz{{zvqrtwz~„‹–™›¢ª«Ÿ™ºÒáéïñìåëçâÚÓËü³º«£¾ÙÙ˸¸ÀÎÙÚÞäßäãÝÞãäßÞéðïìòÿÿÿÿâãÕôâ×ÙËÊ÷ÜÕѺÄÛåÛ×ÜÙÌÐâôú÷öøøÖÕêêçãÏÎÙàäßÙ××ÜõûøõõøÿÿàÞÜÝáçíðô÷ùøöñëâÙɳ±ºìÿÿÿÿöóóôùùóëÍ fY_cfktwx{zvsrstvw{zyz|{xxz{~ƒ…‡‰‰„|uog________^^^^^^^_aaa^[[\_ks}‚}{xssx{~„”š «¼ÉÅªš›­µÂÖèîìëéåàÙÒʽ¾¯§»ÑÖÕúºÇÖÙßçâãâÞàåäÞåèððïñòôöüéöØëÝæØÌÏâÒйÕÙâèæßÛàäîúÿÿøõööôèèØÏÔÓáãéêáÙØÛãóÿÿúüÿÿûãßÝÝâæíñô÷ùøöñëãØÍµ±²éÿÿÿýóñôõûüõè¼}^Q[]ejrvy{xsppqqtuyxxyzyxxy{‚„†‡†€xple________^^^^^^^_cca]Z\_atyƒ~yywwx}‚…— ¬¶¾ÈÐÖÑЯ®¤¨Âàïñéêæâß×ÏÉÁÁ¹¸ÁÇÇÑÓ¼ÅÒ×ßçæáàãçæâßéåððñòèâç÷öÿåëàþÿÜÿÿêÓÆ×ñëíöðæñÿÿÿþõ÷ýýöñãâÕÒÙÒØßãâÙÓÖÜèêüþ÷ùÿýìâàÞßáèïôö÷ùøøòëã×Ѷ²°èÿÿÿüñòõöýýòá®bYJUXciqvz|xrnnnortwwwxywvvwyz~~{ri_\V\^``___ab_]]acb`da]^[Zesyz~€}xrltv€‹–¤²¼ËÓÙÛÜÝÙÙѸ¡ËؽØ÷éåáãâÛØÖËÀÇ»¿Æ¹ÎÑÌÅÄÍØáãßßàäàÝßåäêìîîëèâ׿õí××ùÿÿÿÿÿÿõòüÿÿùøóëêîüÿÿþûþÿûíßÖÖ×רÛáÜÙÖ×ÛàæðóóöõòëãÞÞßàäéïõ÷øúùùóìåàÌ¿¯¸ÒÿþÿÿöïñùýõòщPEDMZ[cqxxtrqlmnortuuttvwvvut{{zumbXS??>[^```_`ab`_`bcb`f_\^admvw{}xqklnu|‰˜¨¸ÉÓÛâçæäâÛÔÔ½ªÇʶÓöìçâäéåàÛÖÉʹ¸½¶ÈÝÔÆ½ÄÔÜÛâåäàÜÛßãìííëçãáÝÖØäóúüþÿðëîüÿÿôòìïñôîäãêûýÿÿÿÿüòåÞÛÞßÜÚÛàÛØ×ÛßåçéêëîîìåßÜÝßâåêòõ÷÷úù÷óìåßÔ¶·Øÿûþþ÷ôööúñã·wL>=GPX`nuvtqpkklmprsstuuutrqpnlhbXNF@@@@Y[^^^^_`a`_`aa`^b\[ckqvyyyxne`jr}‡—©»ËÜåéíðíçâ×˹ªœ«¨ž»Þ÷îãâêëçàßÔÔ··®¶ÛßÙÊÅÑÙÙÞéìàÕÕÚÞæèçæãâáàÆÊÜðú÷óñçèíûÿÿòáèòúûôìóÿõô÷üÿÿöèÞÞãéëæáÝÝÙ××ÜáçéããåçèæáÛÚÛÞâçëó÷õõø÷÷òîçÝÜÇ»µäÿøüûøûúóïéÒ›kO>;FHQYgrtqmkiiikmnpquutrpmkjea[ULEA>CDEWZ\^]^_a```aa`_\ZZbjqvxzwsmb]alx‰•¤¶ÇÕáçëîîéãÚ˼¦–››œµÐûóèååêêèßÛÞÓú°§¿ÛêÛÉÌÔ×ÙñþíÙÖÛÞßááÞÜÚÙ×ÂÄÎÙßàäêñö÷øÿÿñÛéðñðëëùÿíèêòÿÿôãáäêòôïæàÝÚÙÙÜãèéâàãæçåàÚÚÛÞâçëòöôô÷ööòîçÜàɾ¶îÿøýúûÿüïèàÇeZHALFLSblpnkighhjkmoptsqojged`]WRMLNOMNOUW[\]]_a_`aa`__^V_ntxxxysj`[_jv€“ž­»ËÔÝáåæäàÚξ®›Œ“©¼æíððîíëéãàäÞÌÆÄ¯®ÇÜÖÌÎÐÑÖõÿúãÜßãâãâÝÔÍÆÂÅÀÁË×ÛÛÚáìòòùÿñÞéííïò÷ÿÿåÞßêùýôéèëïòóðéâßÜÛÜßäèéæäæèèæáÜÛÜßáåéñôóñôôôòîçÞàÊÀÀ÷ÿùøöüÿÿò䨫wdaTKPGGLZfmmlhfggijlnotsnjfca_ZXSPORWZUUURUXZ[\^``aaa``ba^jy}zxvsjc[]hvˆ™£¯»ÆÏÔ×ÙÙ×ÒÌÅ´£||x‚À×íùýúóííêáàÑÓݸ½ÂÈÏ×ÖÑÐêúòßÙÛàæççâÚÑÊݸÈÓÒËÌÏÓãíðôöèÚåìóýÿÿÿÿâÝÝçõùøôíïðíëêçáãàßÞáäèèèçèëëéâÞÛÜÝßãçïòñðóóóñìçàÙÌÁÑÿý÷íñúÿÿøãÈ‹j]]XQOIDGS^gjjggffgikmmqojgc`_^\[WVUY]^ZXXNQUWXZ\^abba_afhnu|{wvpja^_ep}‰™¡ª´ºÀÃÇÆÅÁ¼»µ¦–‹uwsz‰…–›·ÖíüÿþùüõæçØÛêÅĽ¾ÇÑÔÔ×ÒØÝÜÖÕØÞåæåâÛÕÑÌ®¼ÍÑÆ»ÀÊ×âìðïìßÔÑÚãíõ÷ôïäáæð÷ùþýïððìèçæàäàààãæêìììíîîëäÞÞÝÝßáæíñðîñòóñìçâÒÒÆçÿùñãïýÿÿýÛ±j^XUYULI@AKXbfhfecceghiknlhda_____]]]`cc\ZZJMQTWY\^dedb_aglwyxtrtlbZ_fmv—› ©®±²´¶µ³®«ª¤™ˆ~fldl|{“Œ¢»Ôîÿÿÿþ÷éîÝÞ꺾¾ÇÑËÁÊÛÞÓÌÍÔ×ÝáääÞ×ÏÊÅÂÔȽ¾ÃÄÂÂÜÝáåèåÜÔËÔÚàäèéçîíôýÿýÿÿøùùðëéèâãààáäçëîìëìííêãÛÞÝÝÞàãéìîîððòïëçäÍ×ÊùÿöíäóÿÿÿõÉ”SXTOYSEG=@IS_egecabcefhilkfca```^^_`adff]\]DFJPRW]_`a`_bgoswz|ypg`\`foy„–œ ¡£¤¦¥¥¤¥£¢¢Ÿ™Žƒqhcfls€–©µÀØëöÿùÿíßÙïÌÅÄÃÀÃÆÊÐÕÒÖ×ÓÍÍØâàáÞ×ÏÉÆÄÂÆËÍÌÅ»¶ÇÐÙàãáØÐÍÕÜãèíðôûúûýÿÿÿÿÿÿÿþôíéèÝÝÞàãæéëëìëéçâÝÛÜÛÜÞßâãæìíðññíèäÞÔÓ×ÿÿøñ÷ìùÿõæ²aGAKROB;CC=8:<>>Xs€whaa``achjklnkhghhfdedcdffebceh25;AGKRVXYY^ciorrj`WTW\alr{‚ˆŠŒŽŽŽŽ‰€~ykc`bm€¡ÁÑÙääàäìíþÿÿõÉÄ¿¿¾ÁÅÈÎØÔÎÎÑÑËÇÒÓÒÒÑÍÈÄÄÄÆÆÇÈÉËÓÓÐËËÏÏÎÎÙâëò÷ùüù÷÷øûýÿÿÿýúù÷òéáÜÜÞàåçéëîîîêæáÜ×ØØØÙÚÜÝÝÛÜÝÜÜÚ×ÖÕÎçÿþóóÿûüðäÄNH628>A?AETp—ƒj_]_abfklmmolihiihgfddeghfdgil-38P^yª¨Žoa^`cejopoooligiiihfedeghgeiil+.48>BHKNNOW_fggb[QNR[eluzƒ††ˆ‰‡††………‡‡ŒŒ‹„{|~md\Ycv’·ÑÛççäçìæ÷óþæÄ¾ÂÁÁÃÄÈËÏÖØÔÎÇÄÆÊÏÖÙÖÎÈÊËÉÈÉÉÊÈÈÇÊÏÒÓÖÕÎÉÒÜçðöúýýù÷÷ö÷÷úúüøõðíçàÚÜÝßâåçêìòòðíæßÚÖÕÔÔÔÕÕ×ÔÐÎÏÏÎÎÎÐÐèÿþÿöÿöÿêݹkGG;8:953BfŸ©µ¯’ve``cgmrrqpolhfhiiigfefhiifjkn(+/37<@CIHKR[ab`_ZTT\gpv{~ƒ„„ƒ…†ƒ‚ƒ‚ƒ…ˆˆ‹‹‹‰wu}yke][dtŒ°ÊÖâæçíõí÷ÞåÒÃÇÅÄÅÈÊÍÐÔÓÔÒÍÇÂÀÃÈÕáÞÓÊÉÍÈÈÈÈÊÊËËÍÒרÚÛ×ÒÜåîõùùúøòïííïïòñôôòìåáßÝÜÝßãæéêìôôñîæàÚÔÓÑÐÐÐÐÑÐËÈÈÇÈÈËÎÕúÿÿýþÿúôæÀ‡TCD>B@:69P}Ÿ°¯°¦’{g_^ciossqonkgeghiifddeghifjlo&(-137:AHOSXZ\^dku‡‹Œ‰…€€€‚…†‡‰‹ŒŽŠ‰†‚{tldcbefilnqy‚•­ÇÝóþðãÙÕÙÜÛÖÓÑÑÔ×ÜßÝÎÉÈÆÄÁ¿¾ÄËäÜÈÌÈÂÊËÊÊËÌÎÏÓÖÙ×ÕØÞçøñíïðîëëäÜØßîøøóéçåâáàááàâåçéìíîóòîêäÜÓËÆÃÂÀÀÁÁÁ½Á»³¹ÀÉ×ÿÿýöòòðઃ_H;;IUQTWdwŒšŸ˜ššrYT\_bimlkiigeccgihgiiiggflmpor--,,/1349<@EKQUV\^fpz…ŽŠ‡€†ˆŠŒŒŒŒ‹‰†€{unic]]agmprrz{‰¤ÇàõüâÞÝÞááÝÚÔÓÓÕØÝàÝËÄÂÁÂÂÁÀÃÜÚÕÎÄľÆÇÇÉÊËÌÍÕÕÖ×ÚßåéðíëìîíëêÝáìøýúïåâàààáâääáäæèëëëìïîìçâÙÏÇ¿½»»»»»¸½³±¶´ÂëÿþóíîìãÊ‚fUG;8ANHSg’•”•’œš€\HN[_chljhgfddcehkkjiiihghlossu200012349;?DIMRSX\dnz„Œ‘”“މ‚€„†‰‹‰‡……€yrmkic\Zagosuwv{‹«ÍâíïÛÜáããáàÛÖÓÑÔØÜàÚȽ¼½¿ÂÃÄÆéÓÌѾÀÀÀÄÅÇÈËÌÍÒÔÕÛãéììèìïîêæäâóüÿÿóäßÝßÞÞßáâåæåæèéëëëìîîêåßÖÌžº¶µµ´³³³·­­³«ÁüýùîèåÜαw\OJF@==AQnŠ•‘¡lKALW_dikigdebcdgjlmnjjjhgimpwvv76655566;=@DIMQRVYaku€ˆŒ•”‹„„‡‰Š†€zrmjijfa_dintz}ˆ¶ÍØßâÝßâãáßÝÜÓÐÏÑÔÙÝØÄ¹µ·½ÂÇÇÐõÖÉϸ·¼¿ÃÆÈÊÌÏÑÐÒÖÞåêèæéïðêääèíÿÿñÝÑÑÜçààààâãååæçêëëëèêîîêäßÖËúµ³¯¯¬¬¬ª¬¦§ª«Ëÿóñëâ×Dz™gSPNIB?AM^x‹‘—’uR?BOVbeijiebcbfgikmnojkjiijnrxvv?====;;;?@CFKNQRYZ_gq{ƒ‡Šƒ~zy{|€ƒƒ|zvrmjkllkgfgjnv|ƒ–©¹ÅÌÕÝááââàÞÜÚÑÍÌÎÑÕÙÓÁ´°²»ÄÉËÙøãÎ̸¬µ¼¿ÀÃÅÉÎÑÙÛÞåêêçãèëìèìøÿÿùâÊÀÉÖßàâáâáãäåæééêëëêèéïìèãÝÓÉÀ¶²®ª©¨¥¥¥   ¢µÛùííçØÆ±œˆTMSM?9ANlw„‰”˜ƒnQ<9AOWcejkieaccijlllmnmmmlkmrs|{zDDDCCCBBDEGJORTU\\\air{†ˆˆ„ytoprvwwtsrmljkmooonmklou}‰¡§®ºÅÌÔÜàááààÝØÔÏÊÉÊÍÒÕÏ¿±¬®ºÄÊÎØðñÙ̾¦³¾ÁÁÂÅÉÏÔáãäçééèççææéôÿÿøÌÁ½ÃÕÞßÙââââäåçéêëëëëèèéëéæàÛÑÆ¾³®ª¦¤££ ¡–œššÃííëèÜʶ¡ŽNKPLEGWi‚ƒ}ƒŽ‰|XG96:=JWehllicaaflmnlkkmpqppoqtw~{yIJIIIIHHIJLNRTXY][\^dnx}ƒ…ƒ}uokijmmmlkjghhknqqppopsw~‰“¢¦«ºÈÓÙÝßßßßßÝØÑÏÌÊËÎÑÓξ¯¨¬¶ÁÉÌÌàøàÐÊ«¸ÊÌÊËÍÒÜáââãââãååäàÝáêêÓ¸¸¾ÉÐÖÙáçâââäåçéêêêëëéèççéæâÞÖ̹®ª¦¢ žŸ›˜Œ™˜—ÍöÞåÙÈ·§›€TCBHXn„”‡†|nu‚u[;45=<9CUgilmjfbchlonlijjsssrrswzwutRRRRRRRRUVWXY[\\baabekquz||umec`__^^abegikkmmjjrqu‹œ¢ª¤¥¦°ÂÒÝÞßÞÞÞÞÛØ×ÕÔÒÒÒÒÔͽ¶®©«·ÀÃÈÎÔÛÝÔÂ·ÝØÔÓ×ÛÝßßæêêåàÞÜÜÑÇ¿¹º¿ÃÃÇÐÙàåéìæåååååååàáäåæçççëæßÜÖÍÁ·©£ ›™–—‘‹‡‘¼äåͽµª¢›–•ŠX=8V›¡œ’~h\YTH?:@<:<:AR]gpoljiglmolmkmmqqrrtvyz{oeWWWWWWWWXYY[\]^_dcccfjnprtvvsmgb^ZYWXX\^ccfgijkjfow™¨¯´­ª«±¾ÌØÜÝÜÜÜÛÚÙ××ÕÕÕÔÔÔξ¶®¦§²¹¾ÆÇËÒÜáßÝÛÖÑÐÓ×ÙÚæêìêæâáÛÍ»´²µº¿ÆÍÕÜâæëïéççææååãâããäääååäãßÙÐÄ·¬¥ œ—–’“Œ€€‰¿×Ñ·¬¤˜——˜Œ`S^z™¥™ˆjaTJF?95:A=:=:@R^gqpnkkhmnmmkklmpppsuxxxndZ]]]]]]]][\]^_`aaeeddefhhijkkifb_ZWURQSWX^^acgikieq{ˆ¢¯±¶¶·¶¸½ÅÌÓÙÛÛÛÚÙÙ××ÕÕÔÔÔÒÍÀ¶­££ª³¹ÄÄÅÈÐØÜáØ×ÒÓØÞãèìíêçæãàÙÁ¸³¯¯²¶»ÈÍÕÙßåêîêééççæååãääããâáÞÝÜÚÓȹ­¥¡™”“Šzyˆ ¹À¸«¢œ™———˜‹sz“¤«ž|[?AA?:6659@=9=9@Q`isrpmmkpqonlllnpppuxyuq_VOaaaaaaaa_``abcddeffggfffhhhhgedc]ZVRPPTUWY[]adffgowŠ©¶´·ÁÃÃÁ½½ÁÊÕÙÚÙÚØØÕÕÔÔÔÔÔÒÍÁ¶¬¢¢¬µ¼¿ÃÅËÎÎÓÜßÚÚÞâèëëëèåäàÙ̹±¯®®°³µÃÊÒÙßãêìíëëêêèçæâáßàÞÜÛÙÖÕÒÊ»¯¤žœ˜”’Œ‡€v™ª¬©¦˜””••—‰™­¦sN/-3:=;::<9?<9<9?Pajtsroompspommnpqrty{wmeZRMccccccccccddeffffghiiihgjiihhhhhd`[VPNNNPRTVX[]_cip†¬½¿ÅÍÒÑË»¸¾Ðר×ÙÖÖÔÔÔÔÒÒÒÒÍÁ¶«¡š›£¯³ºÂÇËÎÐØèêäâßßááéèçæâÚοµ®®­­­­¯¸ÁÍ×ÝáçëíîîíêèçäáßßÜÛÙ×ÔÏËŹ­£žš–“‘Љˆƒƒu{“¤¡ž¡˜’”—˜€]D2$-059<=::9>;8;8>Pbkutsqqorrrpmmpstvx{zqdY\UQeeeeeeeeefffgghhghijjjjjjihhhhijfb^XSMKIKLLNPQST\_d|¡µÁÓÖÜÛÒȽ²·ÌÔÕÕÖÕÕÔÔÒÒÒÒÒÒÍÁµ«¢™•›§²¹¿ÃÅËÒßéíêèåäáàßàâàÙϵ±¬¬«ª©©«¯·ÅÎÖÞãèìïïîëéçäâàÞÚÙÕÑÍû³ª¡›˜•‘Šˆ†„ƒ}t~—£œ•˜•ŽŒŽ“™‘~yrU;/00346<@?<78>:7:7=Obkuutqrprsrpnpsvy{zxqg]X_WRggggggggggghhhhijjjjiiiiihhhhhhhfeb\WPLIIGGGHIHJRY\i•®ÑÙßßÙÏ÷´ÉÓÔÓÕÓÓÓÒÑÑÑÑÑÑÍÁµ¬£˜•¡­¶¿ÀÂÇÐÞèîìéåàÜÙÌÏÓÏǽ´«ª§§¦¥¦¦©ª±¼ÃËÓÜäéììëéèåâàÝÚÕÏÊÇ¿±©¢œ˜”‘‹‰‡ƒ‚€}xx…˜”•“’•˜ŽkVJ=624568=CEC@;7=:7:6=Nakuutrrpqrqporuy~zqf_]^aYRhhhhhhhhghhhhhiimljihgghiiiihhhhgfeb\UPMEDDDBBBCJTUYes’À×ÞßÜÕ̽¸ËÏÐÒÒÒÒÒÑÑÑÑÑÑÑÍÁ¶­§™“Ÿ£°ÀÆÌÐÙãìîéâÖÊÀ»·»¾»³©¤ ¡Ÿ ¡¡££¤©­²¸¿ÉÔàåèèçåäáÞÜØÒÊ¢™•“‘‹…ˆ…ƒ€~|{{y€Œ–’‹™‘’”––—–ŒaE68><3-17BGHB?;7=96:67244HZWMDA=:>;:;4;Pclusrprqpqrrsv{‚xj`^afhd[Tiiiiiiiiiiiiiiiijjjjjjjjjjjjjjjjhhggd^UOIEB@?>>=BA@HMR|¹ÉÝêæââÛÑÍÎÏÏÏÎÍÍÎÐÐÐÐÐÐÍÉż®Ÿ––›¨´ÃÑÞæéêàÛо¯«¥ŸŸœ—•‹‡ˆŽ’‘””–™Ÿ¡¤¨­²¸½ÊÐÓÕ×ÖÔÑÊù°©¤Ÿ™’ŒŠˆ†„ƒ~|{yxwuw€˜‘Œ’“˜˜—œ”ŽŠ]X_ZI64=>:BIET„µ³ÖïìæëèÛËÉÉÉËÊÈÈÊËËËËÌÌ˾¶­¡ž §¼ÇÖáçéåߨÑñ¦¡œ˜•’Š…‚~„ˆ‰‰‹‹Ž–˜›ž¢§ª¯¹¾ÁÄÅÅÃÁ¶²ª£ž›˜”ˆ‡„‚€€}zzwvutvˆ”–Žˆ‘’’™™šš“~€lL6=Lee]PE?=:8;89=6?=;7:79=7<:8:68>7;L_itttrspnmpw|zriZ\aegghfcYRiiiiiiiikkkkkkkkllllllllllllllllonkllkgd^YSMKGE@=BQb©²›¯¸ÐòþóíòãÚÔÐÑÔÖÖÙÚÜÝÞÞààâáÜÙÖרÛàäæèçäßÛÝͼ¯¥™’Œ‰ˆ†„€€€ƒƒ…„……‘”—šžŸ™–“Ї„‚‚~{{{zxxwsporv‹‰„‚…‹’—“™—•{f`E>?J_keXM@67==:78:68>79I[erssrspmosxzsi`Y^egfeghaXQiiiiiiiikkkkkkkkllllllllllllllllomklmlifb^XROJIA;4356:<>>Q^kppqssx|xk`]]\`acedb`^]RIiiijjkkkjjjjjjjjkkkkkkkklllllllnqommqolhfp{~zpeTFCMSU]lnu~‡’›¥«¹·µºÆÎÒÏÐÑÓÕ×ÛÞÞÞÞÞÝßÞßßÞÞÝÜÝÝÝÜÖÎ󢔈ƒ‚~ƒ†‡ˆ‡„„„‚‚€€~~~~~~}}}}|{{{{{zyxxxxttssrqoojomklim}‡‡‹Ž‘’”‘Œ‡~toolfQKEDEGGE?<97:<;96566:<==MZflnqutzwnc\\\Z_abdca_][PFiiijjkkkjjjjjjjjkkkkkkkklllllllnromkklljjxˆ‘•’‰}`ODFHFLVPRVY\aemˆ­µ¼ÄÐØÔÕÖØÙÛÛÝÞÝÝÝÝÝÝÜÛÚÙÙÚÚÛÙÖÓɺ§˜Œ…ƒ~ƒ„‡ˆ„„„ƒ‚‚~~~~~~}|}{{{{x{yyyxxxvsssrqoomjolhkhl|ŠŒ‘Œ‰…yidd\NEA=:999877666:;<;:888:<@CG@Sh£ÀÌÊÓÖØÚÛÛÜÜÝÝÛÛÚÚÚÙÙ×ÖÔÓÒÓÔÔÕÐÆ¶¥–Œ†‚€ƒ„…‚‚‚‚~~~~~}}}}zzyyxvvtwuustsrrqqponmljhlifhei{Ž’‘‡|sk`VPJ@43200259::531334489;;CO]ipwywqfZX\]]^`````_^]UJAhhhiijjjiiiiiiiikkkkkkkklllllllljjkkuˆŸ°ÃÓâççãÞÙθ—y_K@;>==;;:9:?EQc‰±ÇÊÍÑÕØÛÝàßÞÝÝÜÜÛÛÙÚØÕÔÓÒÓÔÙÙÑȼ¬™Œ‰ƒ€ƒƒ„‚‚‚~}~~}}}}}}zyxxwtsrtsrqrpppoonnmlkigkhehbfz’‘Žˆxrk^RKC920110//0249;=<;631.01279::?K[hqwwsg^UW[[[]____^^]]UJ@hhhiijjjiiiiiiiikkkkkkkkllllllllpnlt‡¡¼ÎÏàòúû÷ñðèÝÁ¢}^KCAA@BABCA;BGLf‘µÇÀÇÎÓØÞáâÝÛÛÜÜÛÛÛÜÙ×ÔÔÓÒÕÝÛÒÊ¿°œ‹Š…‚€ƒ„‚‚‚~}}~~}}}}}{ywxutsrqrqpnpmoooonmljihfkhcebexŽ’ŽŠƒzqhZI?>90/6455420016:=><721,.0168:::54344676431/..26::841*,-.47::6DWhswrk[XTTWZ[Z^bb^\_`^SF=iiiiiiiiiiiiiiiikkkllmmmmmmmmmmlgo†¤ÁÖê÷÷øüþÿÿÿÿÿûí×À¤‚gLGEGHILKBGQ`|¦ÏèÿêɼÇÕÛØÕÒ×ÛÚÔÖÝÙÙÚÚÙÖÔÔÜÛÓË¿± ’Œ‡ƒ€~}|||||||z{{zwuusrnommlllljllknonligecd_^b^`p‡‡~rdQ>:6534457777541//.1489844...-24897DWhtwpgYWTTVYYY[__\[^^^RF;iiiiiiiiiiiiiiiikkkllmmmmmmmmnnley—²ÍäôúûüýþÿÿÿÿþúïáÒ¼ ‡`QDDJLKIDTk‚ÀÛêøÿÿê¾±ÆÛØÏÊÌÒÖØÙÖØÙÙÙÖÕÕÙÙÒËÀ²¡“މƒ~€€~}}|{{}}{{{{zxtqronllkljjjjijjnmmmmifcda]_c\_s}~p^O?42012445777655200.026788943/,/1566DYkwwl_WWTTVXYYZ]_]]_^ZNA6iiiiiiiiiiiiiiiijkkllmmmmmmnnnnmjƒ£¹ÐåóõûûüüýþÿÿøôîæÝζ¡€fMFHKHDPj‹¤·Ëßê÷ÿÿÿõãȰÂÈÇÃÇÓÕÏÒÔÕØÖÖÕÕÖÕÒÌÀ²¢•މƒ~€€~}}|{{~~|{{{zxroomlkjhiiihhhhhmljijjfaea]abYayviWI@:80/34556676643311./0257;<972-./244E]r{wfUSTSSTUVVW[]\^_\WI=1gggggggggggggggijkkllmmmmmmnnoonq‡¤·ÍãòôøúûýüúùööóðîéÞʶ}YGFFCAb…ªÀËÕæñùúûÿÿÿ鶤²ÀÇžÁÊËÎÑÒÓÓÓÓÓÒÐɽ¯ •މƒ~~~~}|{{{|||{zyywnmllkhhhihhgggghkhfgihebcb_]]Vb{taNA=;993356675464333211../036:<=:500/112Gbw|q\JOQQQQQSSW[]]__ZRA6+gggggggggggggggijkkllmmmmmnnoppnlz“«ÄÜíôõöúûûøõñôôôóòéØÅ±eMGFGJzžÃ×ÞæóüóþÿÿÿÿÿÿÔµ¢²¾¶¶ÇÇÊÍÐÐÐÐÐÒÒΟªž•މƒ~~~~}|{{{|{{zyxwunlljiihgggffffffhhggghgfae^\`aiuXE<9;8536576655321211111.../0367<:8542100HeutfRBKNPPNNOQVZ]^__VN;0&gggggggggggggggijkkllmmmmmnnopqohm…£¿Óåðòõøúüúøöö÷úüý÷çÕÀžuZPS[c’°Òæòùÿÿÿÿù÷ûÿÿÿÿê·¨®·¹¿ÃÆÊËÍÌËÌÑÐ̳¦œ•Œ‡…~~~~}|{{{{{yxwvvsnjjjjhhhgfffdddfghiihijlgkbaoxtnC548841255544443/.0...00100/01349:;::62/2IcmfWI?HLNNLLMOUY[]^\QG6+"gggggggggggggggijjjllmmmmlmnonomkmƒ¥ÃÕæôô÷ùúüüüýûþÿÿÿÿïÝÁ¢|bX]m|¥»×ëúÿÿþýúúûúô÷ÿÿÿú¼«·±ÀÆÉÊÊÉÇÈÏÍǼ­Ÿ•‘Š„‚~€€~~~}|{{{zzxwvuuqmkjjiiihgfgffffffjmkjjmolodcz†yb>3474/2932201244.,/-////100///0079<=;82-2Jch]OFAHKNNKJLNTWZ[]ZNC2)hhhhhhhhhhhhhhhhjjjllmmmgjnohfs‰•ªÂ×éõøüþÿýúùúûùúùüþùéÕº˜q_br„‘´Êâð÷ûýüÿþþýþþþþûÿÿÿ×£›²ÁÃÆÉÍÎËÊÆÃ¾µ¦š‹…€€~|{zzwvwwwwvuqnliihhgggfgiihgeehjmkjiikgjdv~ŠŒR7443332211302/1//././///0//..///136897534DW[PE@BIKKKJJLOUY\]]WH;%&$hhhhhhhhhhhhhhhhhhjklmmmijmjgl~§·Ðáñúÿÿþÿÿþûøö÷÷øø÷ùòßÌ´‘kY_tŒ¿Óçó÷ûüûþþþþþþþûñí÷ÿÿïĤ°ºÁļ¾ÄÄÿ´¦™Š‚~|~€€}}zzyxvvuvtttromlijhihggeeghjjjkklkkkjjigkguŒ†K6333222111100///////////0/....//./1466656CPRIABEJJKKIHIJSX\][TC6&'%hhhhhhhhhhhhhhhhhhjklmmmmkmjkw‘§¾ÑëöýþÿÿþÿÿýúõññôõöõõîÛɰ“uktˆŸ®ÍÞïøûþþýþþþþþþþýõûþÿÿÿø×“¤¨§·ÏÎ½ÄÆÃ¹ª•†~{zzzzxxwwutttrrrronlkljljkiihggfghikkljihkjifflju†‘€E5222111011100/////////////.--./.++-/24678?EC;8>DJJLKIGFGRX]^ZP=.&'%hhhhhhhhhhhhhhhhhhjklmmmnlllp€ž¹ÃÚôúûûýûÿÿÿûõîéçíðññòêØÇ²¡‘œª¶ÀÜéöûýÿÿýþþþþþþþþûÿÿõöÿÿÿè·”£¹¸´¾ÁÆÅ¼­¡˜•‹…€|ywuvvvvusrrqooonkjjimnmllkiiljhfffhfjfefhifcchis…p94211100011100///..........----.-*)*+.1456:<8228>DEKJKGHFSX`^ZL9)&%#hhhhhhhhhhhhhhhhhhjklmmmlknot…¤¿Íåûûúüÿýÿÿþ÷ïçàÞçêíìîèÚÌ·±¶ÁÉÒÙèòúüýÿÿüþþþþþþþÿÿÿúøüþþýÿõÄ—¥´º½Äü°¦˜‰‚|wsrsqssrrrponmlkjiijnppmmliilkheeeedfccdddb_^ejr„„[32211100011100///........--,,,,-,,+**+.0225651158=@FHJIKKT[caYJ6&$$"hhhhhhhhhhhhhhhhhhjklmmljklosŸ¸ÕìûûúýÿýÿÿüóëãÝÜäçéêëèßÓÓÌËÐ×àêðóùýýýÿþüþþþþþþþÿÿÿýþùöíðëÿÿÌ£¡ª­¶¼½¹²©¡™•Ž…}xspppqqqqpooonmkhhhloqppmljihgeedefd^acdc`]]]bms€vF43222111011100///---------,++++,,.,***+-.-045433379@BGHMMU\d`XG4$$$"hhhhhhhhhhhhhhhhjjjklmllllkkly•®Ñéûøøþÿùÿþùñéãßàäçèçèçà×ÚÙÞæîóúÿúþÿýýÿÿüþþþþþþþÿÿÿÿüõêêòõïÿÿò«ª¯³³³±¬¢š–ˆzuqqpqqqqqppqpnlijjnorppnljiddcddcc_Z_ghc^[\]]nt|c263333222111100///--------,,+**+,+-+**++,-,/26775424:=ADJLT\c^UD2#&&$hhhhhhhhhhhhhhhhjjjklmllomjgfrލÉâ÷öùþÿùÿýøðéåãåæéêèèèáØØÝêøÿÿÿÿþÿÿþþÿÿýþþþþþþþÿÿÿû÷õóðíðûÿÿÿÿت¤©¨©­©¡—•‰ƒ}wtsqqsqqqqpsqomljmooqommihffddb`]\WT[fibZZ\ZXksuU&83443332211100///--------,++**++,+)*++,--,.2699760259<@FJR[a\QB/"*(&hhhhhhhhiiiiiiiikkklmnmmqkkkjp‡Ÿ»ÐêöüþÿþÿþúöôðêçðíëìèáÝÞàçñùýÿÿÿÿþþþþþþþþþþþþþþþÿÿÿþüúùùþþþÿÿÿÿÿ¶¢“›¥ š›Ž‡€ytssrrtsuutqsqqqpnookmlllhgcc^dcTNM@WPKO]ieVX]ozd=-245444333333211101100////,,,,,,++.--,--..+-059=??753129BIOV]YLLGDDM\b`YdssX:/7666655555554433322211100..--,,++**)))*+,.-.049?B;:7436<@LSYWL=1+,+*hhhhhhhhiiiiiiiikklmmnmkmijkiqŠ¥¿Ôí÷üýÿþÿýú÷ôïçåâÞÝÞÞÝàäíòùþÿÿÿÿÿþþþþþþþþþþþþþþýööúýÿÿÿÿÿÿÿÿÿÿúúþÿÿߨ„ƒ‘”‹vuvyxqnqtsoqxnmmkljljggggec`^bUZ`RCEFABA<84235DKQQH<2...-gghhhhiiiiiiiiiikklmmmmjkijjhmˆ¦¿Óëöüýÿÿþýú÷ôîåâÛ×ÖÙÝÞåì÷úÿÿÿÿÿÿÿþþþþþþþþþþþþþþý÷÷úýÿÿÿÿÿÿÿÿÿÿúúÿÿýÿÿî°vuuw{}xkb{sqsogdgiiigfffebb`__[ZWXO\ocMII>?@<:;99887778888888899988877654320//--,++,--,,,,.034;=@@<7426:@B?81--.-ffghhijjiiiiiiiilllmmmmjkiigbg‚£ÀÔëõûýÿÿÿÿÿÿúòçâ×ÑÍÎÖÞì÷ÿÿÿÿÿýýýþþþþþþþþþþþþþþþþýþþþþþýýûüþÿÿþþþûÿþùýÿÿÿÿüòâͳ›Œz}taWY[X```_```]\\\YXURQNQi|mSF><<71-,.-ffghhijjiiiiiiiilllmmmmjjhhfch…¥ÇÚðøüýÿÿÿÿÿüøïâÝÕÎÉÊÐÚéöÿÿÿÿþüûüýþþþþþþþþþþþþþþþþÿþýú÷öõóõúýÿÿÿÿüþÿÿÿüøõÿÿÿÿÿÿûøùÿã¥teb\^\\]]^^\YWWVUSPNMP`fUEA>>==999:::::;;;::999;;;;::::87431/....,,++,)$)28;;;;89;<<71../.\]_`beghfhhhjkklkjmlmjhffgfbcr–¹Ñàð÷÷úüüøúùóïìàÖØË¼¼ÃÍÛéúýþÿþüûüþþþþþþÿÿÿÿÿÿÿÿÿÿÿÿýýþþûùýûýÿÿÿÿÿÿÿþþþûûúüüÿÿÿÿÿÿûÿé‘VXUSWWUUTTTSQRPPMKHGJFA=>DFDMKFCO^`ZY[___\XUKGDA@>??<::99777:998899:::9:;<=>87775321./--.067;;<;;<==:?DDC@7.-,)YZ\]abggggiiklmmljklkjhehggfjyœºÐàðöùùûùùøöîëæÝÒËÁ¸»ÂÍÛäûýþÿþüüüþþþþþþÿÿÿÿÿÿÿÿÿÿÿÿýýÿÿþýÿÿÿþõîôúÿþýþüûûúüüÿþÿÿÿÿøþåSTRQUUTTSSQQQOPNMJHEGEA?BFJJKKRY]WSSUVZ[\\ZYRPKHCAB?=::97766:998899:::::;<=<=<<<<:98743039BGOLLFB<;:=DJLKH<3++(YZ\^acghiikklmnnlkkkkjhehedgo¶ÌÝïöùøøõôñìâÞØÐÇÀ¼»ÂÌ×ãêûýþþýüüýþþþþþþÿÿÿÿÿÿÿÿÿÿÿþüýþÿþýÿÿÿùèßêöÿþýþüûûúüüÿþÿÿÿÿùþäŠPRRRTUTUTSQPQOPMMJIFHECBFIOQPUgwpXLNPQTUWX[\YVQMGDC?=::97766::9999::::::;<><@?@@A??>>9649BPX^[WMC964==<>>@???=9649DR[YWTI>30.6@KRSOA610-YZ\^bdijmlnmnnpomkjjiihfga^dp}‘¡ÂÖêóõòïéãÚÓÌÉþ»ÊÑÚåîøÿÿüýýýüûüþþþþþþþÿÿÿÿÿÿÿÿÿÿÿüûüþÿþýþþÿþõï÷þÿþýþüûûúûûþþÿÿÿÿþÿåŠQTVWTUVVUSONQOOLLJJILIJNQR[c’¡”ŠsZPNNLNQVXXVSPLIGC=::97766;;:99:;;;;;;<=>=;:<<>=>=:7549BNUSQOE9.,,1@ABCCDDCBCCDE??@BEHGFGGEGGGHEFCDECB>=;::??>>=<?@?>=?BDDD?AFHHA835553100022211001/0////..,+*)(.6:BIMOWdot{†ˆyaKDJGHQd}‘ž©¨ ’|gWNRQQ//000122333333331100001100000000..---,,,-------.+--./011334456779;=?@ABBCCAAABCD>?ACDEECCAABDEFCEBCDDB@?;::@?????@@@AA@A@A>?>>>=<===>?@@>>>ADCDACFIG@946654211122211001/0////..-,*))-48>EJNTalr{€…„u[HCFGHNYo‡™ž ‘k[SSRQ../000112222222210////0100000000.---,,,,-------.-./00112333456678:<>?@@@@@???@ABAABCCCBA<:;=@DFDC@BBDCA?;:;=@A@@=@@???>@?@@AA?@@>>>>====>><<==??A?>>ACDCDFIJG@:577644322222121110100///./.,**-259?EIO[fmw}‚~mVEAAFHHK[t‰ŒŠzi[SUTS-..//00011111111//....//00000000---,,,++......./000112222234556679:<==>>=><==>@ADEDDDBA?999<@EHFDABDCB@?;:;>AB@@=@@@>???@?@@@@@?>>>===<<==<<<>>?A?>@BCCBFJLKF@:789775433222221122211000010/,+,027;AEHR_isy}wfRE@@EFCBL^ny}€zobYTWVV---./0/0//////////....//00000000..---,,,////////11111222223345665689:;;;:::;<=>@GHGFEDB>;::=BFJIGDDEBA=<::>>?>?????>>>?>>>=======<>>?BA@@ACBACHLJE>95987654432333222222221100211.,+./59=@BKZgpx{sdTGBABAABFKPcfif`[XXYWW,,--.///.......-..-,,-..........----,,,+........111111111223455545677999999:;<>AGHGFEC@><;;=@FJJHEFEC@>:;:<@CC@>?@???>>?>??>?>>?>>>>===<=<<<<=>?BA@BCCBAAINNG?;69776443433433223333322111220.-..448BCB@GMQQQQUWYYX++,-..//---------,++++,,++++++++,,,+++**-------.1110000011234455345666678889;<>@EFEDCB?==:9;=BFFFFFEDC@>:;>=>=????>?>>>>===<<<=;<<>=?CBABCCCCFQXXRIC?9776543333433333333333220121/../0038BBA?BHMQQRVXZYX++,,,.//--------,++**++,********,,,++***,,,,,,,,/000000011233455234555558888:=>?CCBAA@><<988:=BBFEFGGFCB;;>BDD@>AA@@@??>>@??>?>>>>>==<<==<<<<>>?DCBCCDDEP[ef_UMI987644333443433333333322/0220///,,07ACDEQW^`_^^_[ZZ---.----..-,,,+++++++++,+++++++++++,,--.--------,-./////////012402344555455679:<969889;=?>AACEGGEC@BDEDBABA@?>==>?<=<>===><<=<<<:;=<<=>@AAEDEIGDEMZfqsrj^QLF>85433344421112222111122111110+/34;Om…–•‰znb[IB>>BIU`q}†yuk_ZZ]------,-.-,,++++****+++++++++++++++,,,----------,,-.//....../01201244554444568:;>>=>=;9777799<<=@ABDEFEDDEFGFCBBCB@???>>=>===>>=<=<<<;;<<===>@ABGEGJIGLTdq~|sfXNIC=:841333210001211111122111110+-25?Vrˆ“—–‹ytn_ZUW^gv‚ˆ’•ކ€teXX[-----.-----,+***+***))))++++++++**+++,,,,,,----.,,-....-----./01012334444444679:;;<=;:7666579;<>>>?<=<=>=<=<<<;;<:;<<<>?ACDJHHKKLS`sŒŽ‰€qcRNID@;611100/////0//////0000000/++/6E^z”—•މ‰‹Œˆƒ~}~‚Ž™¡¨¥–{hVWY........--,,*****))))(((*************++++,,,,---+,----,,,,,,-./0123433343323467899:;:98576689:<>????ABDEGHJIFBA@AA?>>>=><======<;;;;;;;;;<<>@CDELHGJLQ]j€š›•‹{mZUOID=7310/---./........///////-,*-6Jf€“–•™¤¨¨¤ ž™˜œ£°±­£›’|fVUV////....---,,+++***))(((*************)))*++,,---+,,,,,+*++++,-/00234332222112356689:99857677:<>>@???@CCEEGHGDA?@@@?>=<==<;<<<<<<;::::::::<=?BDFHKHGLPXfvŒ™¤£‘‚ue_ULF@:810-,++-.-----.-.././///-,)+6Lhƒ’—š™–›ª¹À·¶··±««±³´­¢›’zbTTU0000////...---,,+++*)((())))))))**)))(((***+,,--++,,++*),,+,-./01134322121001244579:987555689<>=?>??BBCDBDEEB?>>??==<<<<;<<;;<;;::9::999<@ABA@>@BB@>=???>=;;<<;;;;;::;99:99988<=@BEIKMIHJS]h{Žœ§¬ª¡™‹xrh]TLD?740+(()+)))))***++,,,,,+))-6Hc€’œ ¢¡¨¸ÈÐÓÒÑ˽¯¬°®±«Ÿ”ˆs]OML/0//000/000///.-.--,+*))))))))))))(((''&()*++-..,,++*)((----./013344321111///0123679::86212369<;==?@@@?=<>BCB?>>>======><<<;:;;;:;:;;:::>>@CFJMOIIP\hu‡™¢ª¬©¢›ˆ~ypg]RIA850+(()*)**)))))**++,,,+)*-6F`|™ž¡¡§¶ÄËÉÇÆÁ·­®µ«®©œƒnZLJH00011121233211//00/.,-,,,,--,+))))()))**++,--.//--,-./..-,-./112445554322110/001/1368762-)').5;;:;=????@?>=<;:;9@<8>>;?;?DHLMONLTcq}Š—Ÿ¦§¨¨¥¡›—Ž…ztneXK?90+'''&))('&&&&''(()***)+-/?\z‹œ¡¦¨ª´¿Á¾º³®«ªª¨¦ž”‰|kZRIA0111221233443200//...-,,,---,**()((())**++--////......-.-..//023555554332100//01//234320,*)*-39=AAA@?=:;9<>@AAA?;;<=>@?@@>=<;;:<9=;9??9:=@DHJMOMJTfw‡“Ÿ¦§¨§§¥ œ™“‹‚{woaVIA80*)((('''&&'''(()**++-.,-:Xx‹–™ž£¤¥­¶¹¶³®«¨¨¨¦¤’ˆ{jZMD>222233334455542100/./.,---.--,*)('))))**,,.../////../.--.001134566776544210000111/.,+***,.--.024:;;=<<::<=>?AABC?=>>>>==;<::;<==><;@BBCBAA@@??><;:8899;<=>@78<;>A@BDGIIKNPQZer}ˆ“œ¥§¨¨£ž˜–”’ŽŒ‹†}vg]PD:4/*%##$%'),*++,,,-,*+++8Uq„Œ–œŸž ¥§¥££¥¥¥¤¡Ÿ™‡|k[G=755566666778999774433321112210/.-,+++,,,,////11222222111145467889::;:985533222233420,('(,257631//:;<=<<;:;>ABCC@@BC@><;98678:<=>>908?55BCEGIJJLOU^fmryƒšŸ£§¨¦¢œ—ŽŒ‹‹ˆƒ~qhZK@6/*'%&&'(+,++++**))#*06CZp}ˆŠ˜›™šŸ¢ Ÿ £¥¥£žœ–ކ{k\E:46677887789:;;;997765654444543310----.../000122333344454567789::;<<<<;976554334556521.-/158997622235678767:<>?@?AAAA?<:98789;<=><53MYA9FKGJLMMPU\ipruu|‡‘“™ ¥¥¡œ–ŒŽŽŠ†}thZM@6/+****,----,+)('((3>GRbqy‚„‰‘••—šŸœ›ž¢¤¢Ÿš™”…|l\D93788899899:;<<<;;::98887777776533///000111122334444456989789::<=====<<:87877667786788988988989996//369;;=A@=<:<=@?@>><;:;:;<==<;91=l[DLNIMPQSUZdqxvsmkot€‰”œŸŸš—Ž’““’‰‚wk]OC:210//////.,*(&$&5CQYbmw{‚‚†Ž””–š›™œ ¢ž›——’‹„{m]I<688999:99:;<===<<;;;::99899998753001111121133344445589:;;8:9;<=>>>>==<;989987789989;<<<<;6666789656;@DHJLQLD;779<<=<;;;<=>>>=;963)?}–hHKHLQSVVZ_fqvsk_TQRoy…Ž“”‘މ‰ŒŽ‰…ynaRD;410//../0/.,)(')BQ^elu{~„„‡•–™›™–™Ÿš–””Š„|m]OC<:::::;<<<<==>???@@@??>>=;;;;:;::8887677777655544666778:;:<<>?@@@@@?><;;;989888995D@:@60<4640/6==DNPVYOA;>98537>?==>>?@??A@@@??>>>>>=<<;:999988997766654466677::<;;=>@@@@@@?=<;;;:99999:::8/.7:;EDHIHJOPODBBC>77=C?@EGFHNKG@87=>=+(9KLO@A`Y@Ta[\hlfccfaXC.'(*05?LRTUZbeilptvx|yvqkea_aTLHDF710168:>EOZafr‚‰†‰‰‹Ž’”””’–—–˜›™’‰„ymaSPO999:<=>???@@@@??AAA@@@@?A@?>=<<;::::;;;<887655446657799;;<=??@A@??>=<;;:::::;<<;E33ALV]`BIMORUPLAB@?;78=E>7:>ACC09DKMKA786103?@AAAAAA@@BBBAABAACBA@>=<;::;;;<<<9887655566778:;<<=>?@@@@?>>=<:;:;;;<<=><8+;UUVVK4:>BFJC?BFB@?>BDGB<;<:639987=JTX?4-6HPB4;/98F]XWWdpofcmuUF><@C=7B<7642383568:=?@CC@?ACGJQTWUVcfY1018>@DFJT`k|Ž‘‹ŠŒ’—£©®±´¹·µ« ‘„|tldXWX7789;=>?AAAAABAACCBCDDCCCBA@==<;;;;;;;;;9998766577788;;<=>?@@A???==<;;::<<;<=??=64M^NA7'28:=AE??=;9:;=GE@98CMSDMTUK@53493;9A[UNbj`ZdpmF<;>DIJILD:7414:9:;;===<<;;;:::99876677789;<=?>?@AA???=<;;;99;<;<>??;9GZXD94,28::=@;87:97:BEE>?<66>DG:AFD?;409IUP?2071=.847hlWZVQ[jgSE><>BHPWOD;62/279::;=?CD<>?@@>=@ACCCDEDDFFFFEDCCBA@AAA@?=<<<:::988778888:;<=??@A@@@?===<;:89:;:;=>@:2KT?101229===?;768648@C@BA<8:CDA@@7,$',1,057542347377?aeVLVdcRBE?>@??EMJ?86526;::888;=?@@ACDCCCIDHMMXa^kqo]C6AUe}–£®¶¶¯·½ÁÃÂÆÎ×ÚÝÝÚØ×ÔÏź§’‚xsojih66666778;<=?ACDEEEEFFGGHGGEDDDCCCDBA>==;::::97777789::<=@?@AA@@?>>=;98788:;==>?9=]Z8/2/3:CGFBB=:9;:7=648G?:997:?CA?;::;<@???@A@BDOVLBVif^`hppf\Y~˜°»ÂÇÇÃÊÊÊÎÕÛàãåèèäáàÝØÊ¿«–†{urrpn12357888:;=?ACEEHHHHJKLKJFDFIID?EC@ACB=9<:978774:999::;;8647:>8;B@8;BjK76768=9<@A=967678<@BBA>=<=CF>299997642./1257:;:34886BSNS\]P>8?@C@><:;;LKF>;EDDD@<=BFA;:=DIKNNQROOZg]EV^[u\r§ÃÕÜÛÜÛØØÙÜãçìïóóðìçâÝÜÐɺ¥ƒ}{„€}./2456779:=?ACDEHHHHJKMMJIJPUXTOID?=>?=;:977888644579:<=??@@@@??@@<96434<;=?:6AJP;26:79>;AB@?:;:<=ELNG???@CCDFB>>BFC?@BFJKHGJR]`XOFDDI\jGy”°Ñâçèæâãáãæìò÷úùùöôîêçåÝÖÆ²¡“”Œ./0134669:<>@BCDFGHIJLLLIKR^hmkhYQG@>=<:::7789:93469:;<<>??@????;=<:75427981+.:E:219<78<;=AA><:<<<99<>>LG629668::8630..12687859>=69A<>EKJC?CCDB=:8:;8DNI@>BHA@CGE@?ADCCFIKLJBDHN[bWEMV@Gyy@{Œ±Øêðõóìééêíòöûþýüù÷ôòïïçßϽ®¥££«¥¡../0124589;=?ABCEFHJKMLLJP]lz‚‚€uk_SLE@?=>=::999884,)07=67:??98;:<>@>==>?=989::9;;BE>129546776310./02465204<=9=D56;DMKC=@A><:89;4?HHB@FN??BHHB@AACFIMOLH?JOIMWWOKN>bœ9Kw£ÒçòûúñíííðòöúûüûùøõôóòëãÕÆ¹´´¶¿·±00//0134789;=?AAEFHJKMLKJTdx†“‹ƒwmd[PJGB=75655789;<<=?>:889;<<9317>=8;<@A@<;>8:<=<;<=?>:778887AC813754346551////024541/269:?EF@<@KNE;=<<;9:BIJFCC@BEJNOLHDNPHJVWQGHX“²›H/j•Æáðûýööõõöøúüüûúø÷õôóóñéÜÑÊÉÊÍÐÈÀ53200123678:<>@@DEHKKMLKLWi~™žž˜‘Š…~vkeZTKA<:765567:<>@?@ABABA?=:766789<408BG?4;>??89:99::<>;9889867C@0,7<2322332/-/.014565733358:;::::>AA<?BCGJKLKJJWl‚• ¦©¥ ›˜•‘‰ƒyqcVNGCB?=:99;=@@ABCCCCA;=@DGHHGH=:FPJ?8>>>?@@?<8899889;::889:76<>924;<311121/-,-/13567798644787NXZQGD@><<<:9;>AD@@FIHGIFBDLQOLKDDFINOOPUTTY]\SJYWO^NVVYc€©Ðéñöüüýüûúùùøúúûú÷òíêáÝÙÙßçíñóçÛ=:7422234468:<=>BCFJKLKIJXm„—¤­°±¬§¤£¡›–’ˆyi]UPMJGB=::<>@BCDDDEBCHQ[acb_XJHSXLA?B@A@AA=77888678;77789986A838==952000/-,,-/245778787679744Nd`OA;9>><;99<>DAEKLGEHICEMSROOHGGINQRTTZ``VNQZ]fPXSZOS\r˜ÆâëòÿÿÿÿÿýüûùøøùùõïèåÝÚÙÞèóúþúíà>=<:8643223469<>@CFIJKLNIRd~’ ª°³²´²±¯¬«¡šreZRQQOH?:;?>BEDBCFKUeqruwo_[XWWNA:;<=?@@?=;6667789889:9668:C=7@[l]?322/*((+-021014:;<<<:987@8GcXB@4:<<<::<>>CPXO??HHGJPRNKLROKJMQRRXYY\][XVeY_^IITXfg޵Ñêîøúÿÿÿþÿü÷úú÷óôóèÙÖÑÖçô÷ûÿþðã?>=;9765333458;=?BEHIJKMJQb{¦®´µ¶··¶´²ª£˜Šqe^WVTPICAA<<>BCBA@B@816I[@6+)-/,(04663226:;<:975495=PTLB1;=<;98::>BOWRDCHLJMSTPNOVUSRRSSSLT\`[URTWT]]RW]V`\©Çàéøúÿÿÿþÿýøúù÷ôõôéÜ×ÑÕåõùüÿýñãAA?=;987443458:<>BDFGGIJKP^uŠ™¤«³µ·¹º»¹¹²¬£—€um`]ZWRKD@5EWcsz{vpcTGLI=6:==<;:;<<<<68<:7439AEB=<4472,6GK@4-,,,**/2541137:::;:884<:<;:6555579;>@DFEEGIMNZp†–¡©°±³··¹¸¸±­§ž–‹ymg`ZXQG>58=@CO]glnoiaXI;3AE<8@A;655578;<@@@?=964.-.3:<855,)7B?4.FIH<-#'/-/2310/079:<>?@@6LJ5GZIA<;::::99<>FOPHCCHFJPRMKKX[aaXOMNLOSRTZcifbbegjjh^F]‡«ÇÚó÷ýÿÿþÿûøúúøúûúóìàÕÔæ÷þþþùïçHGFDB@=<8766679:>ACEDEFHMMWk‚“Ÿ¦®¯°³³´³³®«§¢œ•Œ…ukea[QHFCBEMU[ZTSTPJC9/9DH?>GI?>=<>?BDEEB>;653314798765/57219>;7Wa;;PFP<:89:<;;:FEIPRNKLZ^fh]PMOSRQR\giee^^jskeneGV{ŸÁÖîõüÿÿýÿûøþýûýÿýúöéÝÙéúÿþþøðéKJIGEC@@;:9888:;?BEFEEFHLKSi“ž¤¬¬­°±±°°¬ª¨¦£ž™”’Š€xupg__WPOSTPHAAEEEA;6JIB89AD?EEFEFGGG>;8434468<=<9557.;=1-7=:98:=@<3,,+*+/489777776555PmH4C>VA>86:<>=9=;:9:9;@CEGGFFHKHRg“ž¢§§©¬­®®®¬ª¨§¨§¤¢žš“ˆymcXQMIA>>AEJKGDAVH<68;98:<;:874243333568==;876433346=>92:415<=73---/49;9200112131=jT9@:RJC:68;<=;?@?;;;<>>DLPNLNaahohZU[[_bk}…v\ekbj¡”ŒiQUgŒ¾ÕãòùýýýýûøÿýýÿÿýûÿúðìöüüýÿþùöONKJGFDD@@<;9::<@DFGGFHHIGQh‚”¢  £¦©«¬¬«ª§§©ª¨§¡¡ŸŸ›–„f]RJB><=@CFJJGC@SD9>D@85CDCA>96223455444B<6699518119847C786535:?LHB><72,+),/14570.d]@D;MRH;689;:<@A<89GKIIJa^dnk]X^adhnƒnpxaXˆ´­™hQTaˆÀ×àñøýüýýüùÿþüÿÿüûÿÿöòùýûüÿÿüûOPNNKKIHCCA@>?>@CEGIJJJKNLTh~™Ÿ¢¡ ¡£§ª­ª©¨©ªªªª¨¦ Ÿ¤ ‡iNFA==>@@==F;DE1JKC>;<=;@A<9A;B@3OC?;888:;E=FVBBURKC=998;;:<>?@>:;=>??BCimbkobksonka\cnwuyYcc¨¢†r_ZsÄáõøøùûþÿþÿÿÿûþÿÿÿÿýýû÷ôóõ÷ùüýPOOMLKJJGFECCCCCCFGIKKKKMMWi{‰‘–˜—˜œŸ£§©ª¨¥¢ žš™š˜“Œƒs[FDA?>>>>><8?AC<9WB>;9669;H;5AKH=86776579=2354469>3345772,@>=<977773/.../.,055349>A1S;ACJTUSOJC<86777:<>==:;<==?CE\galpafjP^jhcfouroQZaž˜zmd`w¥Ñîøûüýÿÿÿÿÿÿüö÷ûûüÿúúøòêèìòøüþPPONMMLLIHGFFFFFEGIKLLLKLMVhy…”””•˜›ž¡£¥¢Ÿ›™—“ƒ‚|sfXH>DDEDB@>>?:?EA6>ZA@=:899898:89;>0133468;6:;;::;8C@@=99:;<711131/257757;>;<^F3.@Wurj^PA5.888;<==<;<<<;>BFM`apt`]]FXikhmqsogJR]”‘tjhg|ªÜõùùüþÿÿÿüû÷ñêëíïó÷öööíãÞâéôöùPPOONMMMKJIIHIIIGIILMMLLKKUet~‡‘’”•—˜š›”‹‡‚}snf\NA;;CGIIGB>=B>@I>2CUDA?>?@DF=859==;<:;;;88898412341/0696339>8775457:=8458:98>;879<<:>:>C/:255;CKQSTU??<=>??><<<=<=ADLbcnr``_imndbmuvk_GKZ‰Žyruwˆ²âúýüÿÿÿÿûñíèãÝÞàâæëïòòëáÛÝâççéOOONNMMMLLKJJKKLIIKLMMLMKLS^jt}†Š‹Ž”ˆ{tnhibXOA85:BHLMIE?>CCAI;4ILB?;<@EGG888998:;;=<;86652.+/3642.352..5:0033579<866:>AAAGA;9<=<8:70C2?/*15898521EA=:99::;=><<<>ASgcjncjnnrpfgtungZHHW€’ˆ†‰Š—·ÞôúÿÿÿÿùïãÞÕÓÑÒÕÖÚßæêíêãÝÚÜÛÙØNNNNMMMMLLKKKLLMIJLLNMMNMLOW_foy€‚ƒ…†ˆ‰‰ˆƒ|vpke_^UNJ@64:@FJKHD??AFAH:7OB=615>EFD9:::89::9::97533**-.123577988755*-1468;=58;=>=>AJGA<998929@D0.46379:;;:;LF@96678;=>=<<<=KdckoirueotooxtebTHDQv•™–—•²ÌàìôñëäÝÔËÇÁÂÃÉËËÎÓÙÞãåâÛÔÑÍËÆNMMMMMLLMLLKKLMLJJLNMMMMOMMRX]fqwz}€ƒ„„}ytomie_OHEGB:6:>BEFEC?@@GAG9:U>8/*/:CC>;;<:;<;8578753323684-((+-)&),* "(,0135669=>:759HKE=636846C82 8614456657YRH@;;<<9;==;99:>>ACDBC?@?><7:<;99:::962./7=961+(&&&&!"')!%""+-*,266661.,/9:9S"+F..<535;;8bZC6:83602246:<=:C\psxyqzwuvtrkd^JEFFg›œ™”—Ÿ¦¨¨££Ÿšš ¤¬±·¼¾½½½¼½ÃÍÔÓÈÀ¹±¨MMMMMMMMKKKLLMMMLMLMNOOOPONNPSUX]dilqz€€€}tlosgV=76=A?@A=;<>BBBB<=<;::AJGA65@C958;==;;:99622588921/-,-..*%$'%-2)'-/*:742/0282;8EE/2"5?E=326::9559<<9cX@49:6954456566;BYlqx|uzwwvuoha]KDFIfŠ’“’Ž•˜•”‡‰‰•›ž«±·º»»¼»µ³·¾ÇÈüµ¬£LLLLLLLLJJJKKLLLLLKMNOOORQPNOPQRTY_clw~}„€vosuhQ=66=DEB?=::=@BAB;99989?FD97;COH39:;==<:972/4=?946620.-,,,(')%%/459:5-2/.-../40=6;mC//:@A<75566668;<<;`T<0;>;==<=<;966;@Tgoz{zyzyunc\YIAFLaz€‚…ƒ…ˆˆ„‚z…•œ £«°´¸¸¹ºº±¬ª®µº¹·« –KKKKKKKKJJJKKLLLKKLMMOOOQQOONNOOPTY^hu|{„…€zxtcMHCCFIHEA@<<>ABA@?<9:98>D<3;ADSU:977;==984229>>5/6742..,,*'(*'"%8(,M]N<:)*-020+(072CsV>G=<:87643568;<9:=?@?<:99=Ncn|„}vwzzvmb[TG=DO[hmsyz}ƒ‡Ž•¤¨ªª¬°³¶··¸¸´«¥¥¬´¸¸«ž’KKKKKKKKJJJKKLLLLKKMMNOOONNONOPONPTYerwv}†‰‚wlYEFIMLGEECB??ADDB?A=::98;?F=BA;JXK@838<:78038;:60,02123355.-/1.*,4:3>\hUC@3336984/2.7Y\XAHB<76897589:=;67=NE51>@852258::9:68I_n}…~tvz{tlaZQH>ESV[bpvy~…ˆŒ•š §ª««©¬®²´µ¶¸¸·­¤¥®ºÁƺªœJJJJJJJJJJJKKLLLKKKLMNOONNOOOPQPLMOU`otqvƒŒƒteQ?7@IGABCCC@@BDDB?@;8998:;I?=72AZhPA56997806;;4/--4432110112551.1>3N_\TOD8A:2/28;::2JkLP;;L@77<<:;;:<>93:DGC72;:22,,.37:<>64BXj|†uw{zri^YOK@FUST`s|†ˆ‹—œŸ¤¨©ª©©ª­¯²²´¶¸µ­¦©µÄÎÒ²¡KKKKKKKKKKKLLMMLKJKLMNOOOPOPPPPNKKNTapvsu€†qeR>/7A@?BCAA@?ACB@>>97:<<=?=90/49MlhQ<::76847961/1120-+&# '+/1,*3BC_gUJJA1@7-(.8?@?:Y]GD6;UF98:99=?<;=73=LGE937501,+.148;>93;Nayˆƒyz|zoeZVKJ@ETMM^r~ˆŽ’—ž¤¦§¨¨©©¨§©¬®¯±µ·³­¨­¹ÇÏÒÀ®œJKJKJKJKJKJLKMLLKKKMMOOOQRRQQPOLMLOWeu|xz„~umZF4:@?AEB>@BA>=?;80=6/.4;?=98V;?42CWH96655:<:7941?RIH;241-2,+++-148=27I\w‰†~}}wk`WSDG;AQIF]m}Œ–˜› ¥¬«ª§¥¥¥¥¤¦ª¬­¯³¶¶°­°¼ÆËÍ¿«˜KKKKKKKKLLLLLLLLJKLLLNPSSRPQRQNLKKO[k{…‰„ˆˆ‚yrjaMA=BEA=>;;:;<;:96A<6AF=787568<:6;SZE8>B:2G/67-B(&))"'',!&,!V+\^YTOG>6=@>615:;87E;365DLKD:4545<9/(-9CHPE700211/0000259=2>=_s„‡„xh_\VMH<>B^?C[t†–œ¡¦¨§¦¥¥¤£££¥¦«¬­®±³µ´±®´½ÂÁ¯˜‡KKKKKKKKLLLLLLLKKLMNNNQRSQOONPOMLNS_o~ˆ‹–Œxy|ui^QGJLG@<9:9<=<:;88;:I076.?%$%)+*((+$%%;2?#haZVNA;=7BG=/'&'-:TH54=WGGA93677=95248?EJA600200010/0149=3<=^v…†€sd\YTLD=BJS=C\v‡•œ¡¥¦¥¥¤£¡¡¡¢£¦©ª«­¯±°²¯««¬ª¢…o_LLLLLLLLLLLLLLLLKNPPPOORQQOOPQTTTV\ivƒŠŽ’‹ƒ}€ƒ~sfUIHIGA=778H0561B.)#$1-'&1(7*(2Q;Y^UNLE:7>5>A<71+&$/E:,3A^?CA=9=@@@=>A>:?IB<521310000/0149>48;[z“‡|qdZUOIA?GT@8F_w‡“˜šž££¢¢¡ Ÿ   ¢¤§¨©©«®²µ²¬¦ž“†cOAMMMMMMMMMMMMMMMMLNPQPNOPOQUXXY\^`ckt~‡‡‹Šy{‚tdXOID?<679<@@@?9>=FRH5198;=;66852=NK:8B6>/024JF>3$/,2*/92+8DWK<@B>9879889@MUMB79KMQYRY5>B@?BC@?89?:5>M963343200/0//048?659V|“‡€yncXPHC=BMZ29Me{‰’•˜¡¢  ŸžŸŸŸ ¢£§§¨¨«­²´³­¦Ž€bRGMMMMMMMMMMMMMMMMKMPPONOQPW`fhggglpv|‚‡‹ŒŽ„ulnuvsmh_SG<7569<@AA@7@:;R\M;979>=64637=EFBA>070-,3LWZO.0,E6,,=12b=)-&;A7397/4;GS`ie^@E^hojK=4>DC><:45-,.,,9J333354420//./037?828N|’‡~ulaUJ@;:DPW.>Tj|‰’–™ž¡ ŸŸžžŸŸ¡¢¥¦§§¨ª¬¬¯®ª¥ •ŠwkaNNNNNNNNNNNNNNNNLNNONOSTZbmuuqpptw|€ƒ†Š‹…ƒ„~kRNRXXTK?489:=@A?>9A5.IgdU<63:;63617;9>FB9043-)/BR]\99+J8/3'%W=96(=B5,10)4Lbid``bLN\VMH43AKOJ@:6.2-*')0>J133544430/.-./27=;17Cyˆ{qh`SE:7:HPJ4BWj|ˆ‘•™ž ž›œ›œžŸ¡¡¤§¦¦§©ªª­¬©§¥”‰€xPPPPPPPPOOOOOOONPPOOORVZgoz~|wuvy}„†ŠŽ““–œ§­¦ˆgFAABHNJ?=;;<@?><:?41IcheO>4795260477>C>43/3.-06@MYFQ3F8A5,.F77#;9<>7.*2=M_mja[Z\dZW@143CJRSJ?983.00*.;CA144543440/.-./27:>17;sЇtha\RD78=NQ9GWWN@=<===;98<:=OX]ecL:894264258.@_nkd^_c_Z]PJ7/509DJI@6476'02+0>?4356433440/.-./279?066p‡†nc^ZQC9;CTR0DES]s‹’˜œ™———˜™››žž¡££¢¢£¥¤¦¦¡œ—Œ‚uqkLNPPOOOQROMMQSRQSPPQQSaqx|€zsow|ƒ—¤°¹ÅÌÏÏÏÑ˨€]ztHQcK?9;:76;85BUahgdda^SF841/39DB?<9896744465313575322210/./037?86/;X˜{mf]QHD=;OT=,:FM^ixˆ’–•–˜•–—˜™›œœ› ¡¢¢¡ ¥£ž—‹~rjUUTKNPPPOPQRPOPRSRPVQOTZ`kwy}|upoqw~‰˜§¶ÅÎÖÛÞÝÛØÑǼ›|Š}V`rZK?>?;66=8?6>KH]o`H5065059=<8545752002458>JW^\]aOJN\heYO5-,/(")9Q\defe\RE<665326>>;:889:977776323676211210/./037<=817Zsg^WPGA=BQL<29AGScrƒ“““”’”•–—™šš›ŸŸžžœ˜”Œui]WWWWLNQQQQRSTSRSTTSPUQQYdmu{{~|signu}…”§¹É×àäçèåáÛÏÄ®š‚‚nQ]mu`JBA>96=;A77>=Fji[B24625AG=212041./27=B-4DV^ZSQEFM[kmWS?AGQZXG657;@@=978988779::;:::853678620/0221000368F93,fygdVLH@7?RYCCOFCGDUctƒ‹Ž‘“”––—››™—“އyqifefghiHJNOPPRTRSTTSRRQMXfptwz{yrgcgr|„•Ÿ®½ÉÓÚßàâÞ×ÐÆ¶§™„{urmo‰tfXOEA:;BE<=B10IXN=8634Uk]D;;842100//0943:CEB@EPVV]eW?;53229HV536AJH;159<<;:77;;:98767:;::;96378973101332010367C711jqg_RD?;:G[VEJYOIIEP\l|…ŠŒŽ‘’“••–™˜•’ŒŠˆ|tnklnqopoEHKMNOQSSTTTSSUVVeuyyyywrjcep~‡¦³¿ÇÎÓÕÖÕÐÉú¨›‰ytkkna`sz€~sdUID>69=?BC@72L_WD:87999:9988(3@ID;7:9IVY]_S?@?@FLQTU3..7<:4049842244<=<;87448989975378:72001443111369<70@nkcTJ>77@O\GFLVQJGDJUcs‡ŠŒŒŽ’”””•”‘ŽŒ‰ˆ†‚~xroprurssBEIKLNPRUVVUSUZ]gpxyxwuohfgmx…—¡¨²º¿ÁÃÅÂÀº³°¨™‹„onefm^cZgu|}xj\SH=D;G\;<76>DBAA8>CB=877:9:;>AEG-;JL=009ALVZ\YL>459?BD@>301761-12970,033===<:9665556652179:7411145421136;4:2UpcZKH:16CMP5GKNQJ@DFO[jxˆ‹Š‹Ž‘‘’’‹Šˆ‡‡…‚~ywwxztuuCFHKKMOQWXXVUW^cruvsrupgaels|‡“œ¡§®³´³³³°¬¦¡Ÿ™Œ~xacXZcVbMUaly|paTGOBGW,14>E>27EE935;=<=;954584bp[PFH=27GJB+HKHPJ@FCJUdr}„ˆˆ‰ŠŽŠˆ‡‡†}|{{|~xyzBDFGHIMOQRSVYbjoqtywpga_bhpz‚‹’™ž ¢££¢ Ÿžœš™–Žƒ|og_ZYVUVRYX[kzƒ‹uu_PEZ7267779;mbUKO:9?@PI$+8DLICDIHKS]kv~ƒ†ˆ‰‹‘‘ŽŒ‹Š‰…ƒƒ~~}{‚?ACEEGKMOQSV[clopppmfa^\djr{‚‰Ž“•—˜™—––•–”““‘Šyme^[ZVTTT[XXfrx~ˆ‡ugUZ2/77788;;=99::9988;98899:968=@A?<94>HOQNC77874/+)(+*)&#!$)-27<9:;;:975345676559999988653455677=45Tf[ILE@8>NL8)36;@B@DIDPbovz~‚ƒ†‰ŒŽ‘‘‹Š‰…ƒƒ€~€„‡9>6/:878::97568:=@AB:@EFHG@766740-+*''%#!#*279;9:;;9875345666548998877654566778=28l]Q>K;B8AW@".456;>=@EFa~Œ‡}€ƒ…‰ŒŽ‘“‘Œ‹‹ˆ†„ƒ€‚‚€†Š58<>@BEJLMQW^gnomg^WUX_cns|ƒ†ˆˆŠŽŒŒ‹‰ˆ†………†ˆˆƒyp`ZY\^[VRT[YXclpy}zƒ†k<8;:;:::98:658>>8/65469<=;::99:;<=DEA=C7<=<;:875@@=98;:5/022/-+,-.////-.((+068859:;:986444577665899998788:;==>==7<]`PA==J\…£¾¾¥‹„ˆ“”•““”’ŽŒŒŒ‹Š…„ƒ„…†……Ž‘”1479:=ADHGJS^egfaYQOS^iow|…‡‡‡ˆ‡†„‚€€€………†…€vjWQU^da]WNUTR\bhqyq|sx\;5;==<;;9757:::8:==@A>848<::;;:9556;>??>7,+-0310000110/-,*..0367659:::986455677666788988799<=?@@?<7HgNH8B197SW2)7237;:8Dcƒ®ÁÎÇ®”†‚…ˆ–˜—•””‘‹‹Œ‹‹†…„…ˆ‰‡†“–014568=>EEHP[bb`^XTT]isx‚„†…„„…†…ƒ€€€…„ƒ„‚|qfVQW_ed`[R[YU[]bmzrxY[D5::<==;:86038;;;;<;CKH=45;999988776?@@>;:U^G>:85:GP@2593358;74BONB77>;:876688;;967<<788:94/,,/13455352586447<899:8764557898778:9;:::;9:=>??=8<]QH8?.>=]L-8B74029DVt¾ËÉú¬™‡|‡Ž•˜—”’“‹‰‰‹‹‹ˆ‡‡ˆŠ‹‹Š“—š0/-.038:=@ELRX\^XY]enx…ŒŒŠ‡‚€€‚ƒ…ƒ„ƒƒ„„€€€}xoe]\\\^_``^OT\`YQS\hYD77:=;9:9:8855/38>@@=990WK/=<8;:9876547;><78>CB9242--275679:77;<:88777999:99987689;;97899:::;<9=:49D@1_WK=328E[G43?B6+.18Jn›ºÆË¾¶² „v{€‡”•”’‘ŽŠ††‰‹Šˆ‹Œ‹‹Š‹“›ž0/../3686699988887645059=A@<98BHMRUWY]dnxƒ‹ŽŒ‰„|}†ˆŠ‹Šˆ„‚€|vpjd^]bb_\Z[\\`WRUXVPO><87667778886535369?@<647+<]ˆ«¼ÂÀ´¸´šubhx}ƒŒ’’’‰‡†ˆ‹ŽŽ’”™¡££44112346;>AFJOQSVZalw‚‰‘‹…||~ƒ…ˆŠˆ…}{vnfa]Z[ab_\YYZ[VQQX[TG?2556556878896636687:>?;84U<8B5==889:97636324:>?=4565237>IQQUFFBCC=622Fk“¬´¸º»¸§‚_Wcr{ƒŠ‘‘‘އ†‡Š‘’‘‘’’‘“—œ¦¦¦88666678>@CGKNPRUX_is}†Š’‘‡}||~…†„€zwsne_[ZYZ`a_\[ZZZTQQVSH:41355335989::8757;:68;=;79\=5A3:?::::;:873117<>;77;<615BMxq`J827@9977677767788877777:==;;8:;<<<;;;=8980@iNHEIPUVZKJDCC@BGUg™¤©²¹·§†cPSal{‚Š’‘އ†ŠŒŽ’“‘’“““–šž§§§=>===<==BDGJLOQRWZ^eny€…ŒŒŠ…ywvwz}~}ytrkf_[ZZZ[^_^]]\\Y^UMI@8225654246;9;;;:979>;559<;7?[I:@63<97777777<:9<>=849<:8>PbphT=14;=;;:98775666788776888;>><<8:;;<;::<9;96>TfLJLNSW\aGJF>36MfŠ”›š›£­°•}`JFP_jz‚‹‘’‘Žˆ‰‘’”•––—™Ÿ¢­¬«ABBCCCBCFHJMNQRSZ\]ahqz~‚ƒ„{sommoqssokia_\Z[[\\\]^__`]Y_OB;723576434579:==><;9;@<538<:59NTBB?1<<97679;;DA?>=;88897;J\dc=848AE=4;;99887767688776768;>><<8;;;;::9>7=92Pk]PKJMT]ejKH?75Go’²³¥’–—ŒfTEBDJXh|‚‹“‘‘‹Œ‘Ž‘—™™š›£¦¯®¬CDEEGGFGHJLNPQRTYZY[aksx{}|wnigfghiigb`]\Z[]^^]]]]]]][WTE97866664447766:<<=;;:A>;;=99989:9:88889877668:==<;9;;;;;::?5=8/\zXYQMMWahnTH9;Pt¢Á¼¸ž‚~‡}bD<=DECPe{ƒ‹‘“’Ž’“Ž’›žž¢¦«§¥¤KKJJJJJKNOPQRTUU[ZYY]afjnpsspjb]`_]ZZYZZ[[\\\\]^beZOW\Z[NF<88841677777678899998;;>9129<955:CKH=2PJFEIHD=78::979=EA9204;?:=@@><9:8889999945678999;99=ABA?:<=<::88ACCNdsƒ“’’“‘““’“–˜œžŸ¡£§ªª¨›‘NNNNNNNNOPPRSTUV[ZYY[_bdegiif`[X[ZVTTTVWZZ[\]^__ag[SVXRRIC=98743688878777777888:<>912:><:44;EOQOFA<;>>:588888:>B@=9447<@@@A?:8786678899:9::;;;99:;>:23:>>?824<963369<@785447;=DCB?:8676667799::;;<;:989<@B?:77;<<;:979669FSWPIMSY^aa_er¦¹À³oRSPLC<98;A?978988877888889;?>9338=@?:757:<:72248<>=84126877365668::ABB@<:88677889:;9::;::99<@CA;667;;;;:879=55EPMLQPUZ^aaag…©½¸¡†`A>BFFA===9@><@BLbw†“—–˜———˜˜—––™›žŸ£¨¬§’„{vZZZZZZZZZZ[[\]]]^_`aa`_^```__``a^ZUPMKKKMOQSWZ\\`]U[idOC=:988:647=B;;:98:<;:533554365489830599:::87:;?@><:976678::<:;<==>=>@BB=757:;<;:9878@43GQNNWUXZ\]`ah‰¥©ŽkS@2:;=???;:9?=;?AKbx‡”˜—š™™ššš™—˜›ž ¢§©¨Ÿ’†…|x\\\\\\\\\]]]^^___`abbbaaaa````ab_]XRMJHHJKMOQTVUXUPWhfXSA<98:>B@;78999988999999;?=<965;AB@;724;=6479;;;:579==:309==>=<:868;>=<;;8778:;<=>?AAAA@B?@=8558<<<<:9766:39OYROVY[Z[\_`gxƒ|`E;;<=<@Jax‡”™˜ššššœ›™™›ž¡¥§¨¦Ÿ”Š‚†~y^^^^^^^^^^^____`abbb``aaa````aaa_^[WRMIHHHJKLMONPQNRYWT[KA97;>@<:78:9:::9::::::;===<849ACA=6/06:56;@BB@?27:><855<>>?>=;:78898:=?:99:;;=>BCCBA?=><:8678::=<<:976635BUWPPZYZ\\[\[bb`SG?=>?=?BFGD>98><:>?J`w‡”™˜›šš›œ›š¡¥«©¥œ‘‰‡ˆˆ€y________^_____``dca`_^^`aaaa``a`a_^[WRMLFGHHIKKJJPOLKEJ[SF;7;=<7:89;;;;;:::::::;;:<>937?9;><87?@@@>=;:7659?C<;;<<=>@DDCA?;897856:<:8=<<<:86618GSPLR_WY[]]\Y^XM@AGE=78>EJIC>:8>;9>?I`w†”˜˜›ššœœœ››ž£§­«£•‡ƒˆŠz```````````````_```````aaaabbbbb__^_]XPLIHEDEGGEJKDJQFKkhVGA@=;;356778;=<<<<;;;<27;:7579A;646?@AB@;:7668:<==?AAB@@HEA;53129;9::;;<98999863-AOMLQUR\\UTZXWgTQKKH@=?89==>;;9::::::::;?BB=611256;AEIJKBEB;9=?=?>>==>@?=<<>???>@=:87898<<<@>Hbzˆ”˜–šš› Ÿž ¤§ª¦šŒ†‰‹‰€y```````````````__^^__```````````a`aa_\VRKIFEEFDCE>GK?@\tWdeTFGB97:::98668777788835630/13ACGLLJFDBC?;?AAA;:87667:;<;;:;;<;;;98764;FNJHOSROTSV]Y[l}‰‹xXDJZqoeUIC@<9<:>>>???>?BDFFIMPSPMIGCAAEC>;=BFIEEBB@@@?;9:;;<;;:9778:;;:89:::987766789<<<;9:9:;:;;98675DHKHIOTTQTQS\_h~”’‚hRO`rtiXLEBA=8;9>Z`?4@YjeRIMIF@>@DGGJJJJKKKKSTSRSSUULIECBCEFID=<>BDGDBA?>>>>;:::=<<;98889:::;99:988888889::;::98878989:85579HIIIKRWXQURV`bgzriYRZiv|i[LDDCA=9;8;B@H^u…“˜˜››œž¡¨ª¨“ƒ„ˆŒŽŽŠ†{t````````bbbbbbbabbbbbccdddccbbbbcbbccb`]WSMJHEBAGFB=EYO.<>TpvdX]UPGCDGGGHJHJJKKKHGHGHHGFBABBCBAAIB;=?@AC@@><<;;<<=<=====<<;99876989:;=<>99::;;;::9765556689845:;:;8;B@F[q‘——››œœ ¤¨¨ “ІŒŽŒŒ„zs````````bbbbbbbbbbbccdddddddccbbcabcdc`_[WQLIGCCFE@FPH94CAKbqmaYQLDBDEB@CCCDCDEDAADGIJIGAABBA@===?<;:9889:<======<<=<:986699999;<=9::;;<;;88654445268635:@PNNQVXUROTT\f[KKNZgryzl]VH@BFD=:;<8DDDEEECD?@BEGFB>B@>=>@CEA84:>=CB<<==9IgxlYOBBDFHJKKEEFHFDCFDEEDCB?=BCCDDFFECB@????BB>979=>>??=;9889;<<<;:::::::::::9988777888989888887866551643648ISSRRPQQRTT[c_UV_~xojgbYRD>:;>B@>89::=?BE_r†‘•šž§§˜Š††„†ˆŠŒŠ‡„‚vm```aabbbaaaaaaaabbbbbbbbcccccccbbabcfgedchigc^ULJ>?PXNEDWTQPNMLLUI>=CFB>DDFEEB@?CCCEEFFFECBA@@@BDC>:9:<<:989;<;;;:::9999::::999999999::99999888766661743637HRSQPQPQSOS[eikqxtnfa_\VPF@;:=@>=:;;<B@87=79;@IPX[^THCDGD@ABDFFEDDDDDEEFEEDDDCBBBCEEB>:89;@@>=:98:;;;;::::99::::::99999888;;:;::::887765551642637GPPPQRSUVW[^birwwe_YUVVTRID>;<>=;<=<<<>@CWi|ˆ‘™ŸŸ¡”‰‚‚‚€…‡ˆŠ‰‡…ƒ}qg```aabbbaaaaaaaabbbbbbbbcccccccbda__acefft„Œ‚zcTGEC=97645BOOIGEB@ABCEEEEEDDEEEEEFEFEEEEFACEB>9;=;::;:;:::999::::::::9:999887::9::99:766543341742426DNNQTUWY[Y\ZUX^YKHEBADILNKHEA?><:<<;;;<>@Pav…’££Ÿ‘ƒ}~€ƒ„……„ƒ‚|pfaaabbcccbbbbbbbbbbbbbbbbccccccccadfcdm£±ÁÆÄÀ¹²œ‚cQIEDFEECBBCEE48=DOWQCGFFFFFDDEDEEDDDEEFEEDEFE?@CCA===>?>=<;:;::::9:98::::::::::99877889998988665434342632415BMMPTVXY\\[WSSQI@<;99;>BEHHGFC@><:9999;>@L^s„“Ÿ£¡˜‰}{€€ƒƒƒƒƒ‚€yneaaabbcccbbbbbbbbbbbbbbbbcccccccb`adgp…ž°ÂÒáæãÞÖ쥇mYLEDJHFC>;87<;57G\`WQONMJHEDDDDCCBCCDDDEDEFE@@BCC@;9=>>=<;;<:::99989::::::::::99887889888777665543231741404AMMPUXYZ\^WPNJB:8776558:86678;64567:HG>@@ABB@@@CA@AB@:8=>>>=<=<:99888889999::::=<;:98776778787726984223072-0/2>OPQRY_YNEEC@<;::886656669=CGIGC?422359Rl‚”ž›”~yuux{|{ƒƒ}€~qdXccccccccccccccccbbbccddddddddddddn…¤ÃÚîûûüýþÿþüúðëßÍ»£ƒjQJCB>:9<8>EPhŒ²ÅÕ±ƒcWSJCGFIKF>=C??@@AA@?A@@BCA;8=>>>=<<<:99898889999:;;;<<::9867788888886789742314/.2.0>JRXXVRJ?AA@><<;:977766679:J_v’²ÎÜäðà§eCHVXOFEFFDC=>??A@A@@@BEDB<9<=>>=<==99:99888::;;;;;<;;998867888889889888874121-04-0DPVYTJC<6;;<=<<;:998777789;?CEGGF>:42037:>Qm„—œ“‡xurrtvwwx{}{{}|weWLcccccccccccccccccbbccddddddeeeegk‡§¾Õíûýÿÿÿþþýþÿýý÷òéÚÁ«‡mQHJID@F`š¯ÆÚæîùöײdDSURHHMJ?>>?@@@AA>@CEEA=;<=>>=<==99:99888;;<;;;;<9999876677788888;757884152.23*2N\WNC<:;<8:;<=;99988989999:=?BEHIC?830148=<<===<==:::99888<<<;;::;78776666788888889645774123011*6UYN?769;<9;;<<:8799899:9999:;>CEGEB;62135:Su›•‚ponnnnnpptxzz||wlRC8dddddddddddddddccbbccdddddeefgggn‚šµÎæ÷þþÿÿÿþúöôýýüùöì×İŽgPKMOR{›¾ÏÔÜë÷ðûÿûóíâÒdKUXG?JCCBBBBBAACDDA=;<;<===<==:::99888<;;::989777877677777777776556765262045=SG>558:769;:9987689899999999:;>ABDC?;64347Tx’‰whkkmmkklnswz{||sfI;/dddddddddddddddccbbccdddddeefghhitŒ¬ÈÞðüüþÿÿÿýù÷ö÷÷öõìØÆ±“nWQVbmš³Ïßäëñøýûø÷ùüýùà¨oWURMJGEEDDCBACEEC=;;<<=<=<<==:::99888;;:987777888888877778887678878;=8<65CLIM9659;7458876666779899988988789;:;>=>>=<<<<:::99888::987666898899987777777758;:9:>C@D<=VdWL:89<:55<654335676778777798877788?BEDA<64;Vr|vmfadhkkhgikqtwxzvj[>/%eeeeeeeeeeeeeeeeddddceef`ekleeq‚޲ÇÜíöúþþÿþýüýþúúùúü÷åÔ¹˜tdk}›¹Ìãïó÷ùøþþþÿÿÿÿÿýýûå¦`DKOGCDHIHGGHIGEBBCCCA?><;;9:9877767788765378877666567876433589:;=ABIH_kxJ9::99988776655454545444454433446;=@BDB@>?QekbXTWceffeegjptvwwqbO0+)eeeeeeeeeeeeeeeeeecdcdefdhjkgl“®ÁÕæòûþþýþÿÿüûüýúúúúûõâи–qak˜§ÁÓçó÷ûüûþþþþþþþÿÿûùøé¾€PNLKJD=?FFJLIFCDGDCB@><<<::::9877678886547887776633568889679;;>@DHPRfu…ƒL999988877776655544444444543333468:=@BBBBCP]`WOPUbdeeccdenrvwtm\I1,*eeeeeeeeeeeeeeeeeecdcdefhijkkw’¬ÅÛðûþÿþýýþÿþûø÷÷÷ùøø÷îÛʱ–yp{§µÏÞïøûþþýþþþþþþþÿúÿþøúõÌKQK@GYT?DHKIB?AFBBBA@>>><<;;:9999999986578786776555678::;;:@BDELRQIFLT_bdca`_`kpuvqgTA1,*eeeeeeeeeeeeeeeeeecdcdefijkmq‚¡¾ÊäùÿüüûúþÿþüöñïíñôôôñêØÇ±¡““ž­»ÅÜéöûýÿÿýþþþþþþþþûþþðíùúî¿OPYNDEAFIG@<>B@BAA@@@?===<=<<;;;;:988787677677:977779:?>=>CEGGJV\k‚Žq=787776667776655533333333332222344467:=@ACGIE?@FNX]`b`_^^ipuuncM:/*(eeeeeeeeeeeeeeeeeecdcdefgimpu‡§ÄÔïÿÿûýýüÿÿýøðêæåëïððîèØÊ½µ®´¾ÈÓÙèòúüýÿÿüþþþþþþþþû÷ö÷ÿÿÿüþÜ›bKLPJADGE?:;?>?AABBCB?>>===>=>=<;;:::76666777;:9999:?@ABDD?????>??@?><<<<<86666788789:@FKOTW[]`eotrgXB2-)'eeeeeeeeeeeeeeeeddcdcdffikmnr·ÚòÿýùÿþøÿýùóëçæèéíìéèåÛÐÓÑÔÝäéñùùþÿýýÿÿüþþþþþþþýúûþÿÿûÿÿÿõúúÌwQ]PLKKIE?;=>?@ACEE????????BA?==>>=8766778889;>@AACENVWSOORVYlvm>B;99988877776655522222222110//012454455676:=ABB@??CGLOTX\bkqmbR>//,*eeeeeeeeeeeeeeeeddcdcdfflllkl{˜±ÒëüûúÿþøÿýøòëéêíìííèæãÚÐÎÒßíôõõùüÿÿþþÿÿýþþþþþþþþùùúûÿÿÿýüÿýòïá®rYTQRQMD=>?>@ACDE??>?????BB@>=>>>8788889:;>@BCA@BGS^^XSSWVWmw}a2D;::999887776655522222222100//0012345567768@@??A@@@??>>98:;;<<=?>GG=981QNIKYeaUX`s€lI9><;:::99999987776665544441111110054434455247=AEGJB@>=>ENU[bhdWF930/.eeeeeeeeffffffffeededeghnlnrt|”®ÇÛðüþÿþýÿþûù÷õòíïëçæáÙÔÔØÞæîóöùûþþþþþþþþþþþþþþþÿÿÿÿþüúúøüúøùüüøñê²u\\\WSFDDDCBA?@>>@?=>A????>>=><=>??AABGAGI=786LKGDM[aaYgwy`D;C><<<;;;;;;;::9997776665533221100110001235457;AFJFEB??BHLX_dbVG;5310eeeeeeeeffffffffeecddeghlmotu}˜²ÊÝòüýÿþýÿýûú÷ôïëçáÝÞÛ×ÕÙáæíóöøùüþþþþþþþþþþþþþþþÿÿÿþýúøöôù÷÷úÿÿýøðö뿃ZS]]RF?>BFG?<>>?=>=>?AACCCCDKBISG;=AEHE@BN`jaqzmO<=F>>>>===<>>===<<<:999888755432100...../0164114;BHKKIEA?ACQX^^TH>8554ddeeeeffffffffffeecddfgimmost|˜³ÊÜðûýÿÿþþýûú÷óíèàÚÖ×××Ûàëïôøùúúüþþþþþþþþþþþþþþþÿÿÿþýûøöôø÷øüÿÿÿüÿøîïïÒRLKJNPK@7MDBDC;8=????>>>?@BCCCDEDIBTi^KGKDHFBAIYemxv_C;@C???>>===?>>>>>>><<<;;;::8865421100//0122530027=BKMMJE@?>IOUVPG>:765dddeefffffffffffedcddfgimnqsry•²ÈÛïùüÿÿÿÿÿÿþúõîèÜÕÐÑÔÙàéòöúüýýýýþþþþþþþþþþþþþþþÿÿÿÿÿýûùùøùúþÿÿÿýñûýûøôãÏ·œvWIILOGBBEIJKKABBBBBCCFGGGGHGGHHd~rXLMEFHGFGNUwznUBAA>>??>>===>>>>>>>>>>>===<<;:987544221001221111257;GLOOKFCAEIOPMF?9754ccdeefggffffffffddcddfgimnqspx”²ËÝðúüÿÿÿÿÿÿÿý÷ðèÚÑËËÏ×âîõùüþþþþÿÿþþþþþþþþþþþþþþþþÿÿÿÿÿþýûüýþÿþüüöúøôöþþþøïãÑ»¡†u]^UD:<>=EEEFGGGHKMMLMMLLLQk€qYLGFFHJJGIMxsdRIJE=????>>>>==>>>>??????>>>===<;:9884321000001123334?FLONKHGDGKMJE?9654ccdeefggffffffffddcddfgilmrsqy—·ÒãõýýÿÿþÿÿÿÿûôëãÕÌÄÄÉÒàíöùüþþþÿÿÿþþþþþþþþþþþþþþþûüýÿÿÿÿÿþÿÿÿýûùøñõúýüûøõÿÿÿÿüöïëäæÊ^OLHJJJKKLLMNOOPONNNOTfo^OKFIILNMIPXmf\VTQJC@AAA@@@?>>>??@@@@@@??>>>??>>==<<976421//001222119@HMONLLGILMKG@;754ddefffggfffffffeeededfgikmrtq{›»ØèùÿÿÿÿþúûûúöîãÛÑǾ¾ÃÎÝêöùýþýþÿÿÿþþþþþþþþþþþþþþýúûüþÿÿÿÿþÿÿÿüù÷öø÷ùüüýÿÿúúùøöøúýñûÜŽPBHHMMNNOOPQOOOONNMMNR\YIFLJNOQSNMZje^YZ[UNIBBBAAA@@???@@BBB@@@??>>>@@@@?????=;86433222222466=FLOMMMJKMNNHB<865fgghjjjkggeedeefegghffddgloop‚¨ÇÛé÷üýÿÿþùûøðìéÞÑп³²¸ÃÒßóøûþþþýþþþþþþþþþÿÿÿþýüüüþýýýÿÿÿþÿüüÿþù÷úûüýÿÿÿÿþÿÿÿþþþþþõüá‰ONLJNNNNOONOMNNPOOMLPOJFHKMNXWQMVccZYYZZXUQNFDA?>>?A?@@AABBBBA@@?A@BAB@BBDDEBAA?=;864579;@GMVXVTRONOLQVWWTJ?730ghhiklllhhffefegfgghgfffilpsw‰«ÈÚé÷þÿÿþýúùóëæáÖÉ¿³¬®·ÃÐÝó÷ûþýýþþþþþþþþþþÿÿýýýüüýþþýýÿÿþýÿÿü÷ìäçñüþÿÿÿÿÿþÿÿþþýþýþöüà‰MOKJOOOOOOPPMNNQOPMMPNJIIMPRVX]de^XVUVUVUTRQLJFC@?@A>@@ABBCCBAA@@AABBBBBCDEFGHFGDB?=>>=>CMYapniaYRLKOV]__\SF52/ghhjkmlmjjhhfgfhfhgggfffijmt|¬ÄÖæöþÿÿûùõòéßÙÓɾ´®¯µÁÍØãó÷ûýüýþÿþþþþþþþþÿþýýüüüýþýüýþÿþýÿÿýòßÕÝíüþÿÿÿÿÿþÿÿþþýþýþ÷ü߆JMKKNOOPPOPOMNNPOPNNQNLLMPUY[bt‚x_QQPQOPPQSTSPLHDBAA>@@ABBCCBBAAAABBBBBBCDFFJKJKIGECEC@BIVgr}thZOGENW`efbXK963ghhjlnmnlljihhgighggfffggfhq}¦¹ÑâôýþüöòëåÚÑËż´¸¸¿ÈÕàéñô÷ûýüüþÿþþþþþþþþþþýüüüûüýüûüþÿþýýÿýóáÙâòüþÿÿÿÿÿþÿÿþþýþüýúþß…JMMMNOPPPOONMNMONPOOSPORSU[cr€”œu_WONKJKNQSTROKGECC>@@ABBCCCBAAAABCCBBCCEFGGHHIHGEDDC@BIXiuzyqdUIA?HR^egcXI;74ghhjlnnonmkjhhhighffeefghfgq} ¯ÌßñûûùòíäÛÐÉľ·²¾ÃÎØãîõùô÷úüûüþÿþþþþþþþþþþüüüûûüüûûüþÿþýýýü÷ìåêõüþÿÿÿÿÿþÿÿýþþþüüüÿà†KOOPNOQQQONMMNMONPOQURSXXYakŽ¢®©ž‘x_PNIGGJNPRPNKIGEE>@@ABBCCCCBAABCCCCCCDEFGEFFGFEDBAA?BIVeotsl`PD==CN\cfbVG52/--./..////------/..--../--------+++**)))))))))))$%%&'()),,-../0.002445665532334512456897:9:;>?@@LLKIIDBAA@??@><7/..-----,,-,*)*,-//.,+++++***+,/65213344028;92*&244210--///.-,,,---------,+*+19<6/.---,--,+-+*)*,-/..,++++****+,/55313445268;:3*)354321..///.-,,,----------+*+07:=AILVj}Ž¢®¹»©uie___ftˆ•—”ƒoYLJZaa,,-.--......,,,,..----./........,+++****+++++++*''())**+,,,-.//...0245331111/01211223220-+.26:=>EFGFFEDD@?@@@=;5.--,--,,--,+,**+-...++++,,++,,+.653245558;==;4,,476410/////.-,,,--------/.-++/4679@DM`vˆž­¹·¤‰vkecc^\eyˆ†ˆ…|lXML[``+,,-,-------++++--,,,,--........+++***)),,,,,,,,+))**+++++,-../---.022111/.//.00244321/-)'*-38<>CCCCDCCA@?@@@=93-,,,,,,+-,+*+*)*,..-++**++**+,--65246877:4.-56742100///.-,,-........00/-,-12137;DUl‚˜«µµ¢‹yphgf^VZfqxwvoaTLLY]^--+,-.,-,,++++)),,++++,,--------++***))),,,,,,,,,,,,,-----../01/-,.//00....-./01655531/,))*,28=?BCBBBA@>?<>>>:50-,,,----.-,+,+**,.---,,,,,,,,-..44137987;?C@;2-+3553210////..---........000.,,/...13;Ke€—ª·´¦”ƒwmhe`YXWUcba\TMMPVXZ,,++,-,,++****(*++*))*++++++++++****)))(++++++++,,,,,,,,,--./00.,+,-..../--./.016656320-+)*,15:=@AA@A>?<<;===82,,,++-,,,-,,,+*)*+---,,,+,+++-,/.42259::;9@GE=4/-354310/////..---/////////00/-,.,-)+06Fd…Ÿ²¼»¯¡~rhc`^XOFJJJIFEIOSSU++,-,,--****))))*,++++,,++++++++,,,+++**-------+,,,+++++,,-.//0.+,-./--,../-/023645422.,,*)*.278<>>>@?@>::<<;6/)---,..--..--,**)+--,..----,,/.0/2116:<==AJRQI>763210/./.../..---////////./0/-,-,+))-4Fj«¾Çƽ¯š‚qgc_]WNHEGHIHGKMONO++,,-,--****)))*,++**++,********,,,++***,,,,,,,,,+++++++,,-../00,+,-...,/.//11234454220-.*)(,/45:;>?@AA@;;;;:4-(--,..--/...-+*)+---,.----...//112146;>>ALT\]TIA?2210.-..../..---////////-.00.--,,)*06Hn”¶ÆÏÌÆ¶Ÿ„nda^YVPKRUWXUTSSLJJ///---++,,*)))((*******+***********++,,-,,,,,,,,)*+,,,,,,,,,-.//-,-./....,-./0124565310+.-+,/010348:=>?@?AA>81.,.-,.--./,,--,+**++-,,,--///03254549>@>AGR_fhd^SFB=5/,+,+..---,++........////////032/6OyŸ»ÏÙÓÆ·§”td]XUV\bnx|uoh_PFDG////---+,+))(((())))***************+++,,,,,,,,,,+)*+,,++++++,-./.././00-...-.0235566420/0.--.1113358:<==@@A>82--.-.---..,,-,++*,++,,,+--//11267697<@BAFN\foomeZMA=741.,)--,+,+++........///////14733:T|ž¹ÊÔϸ­ž€qjjhmv‡‰yqeTC>C/////---+++*(''')+++****,,,,,,,,++,,,------....,++,----,,,,,-./.../01///0...01345676652.0.,//001343368::@@B?:3../..---/0--..-,++**,+----002348:9=;>DFGMVgqz{wobUD@;84.+&))****----------.......29943>Y|š±¿Çû¶²«š‡‚~~…”˜”Šƒ{iT>:>000000..++**''')+****)))+++++++++++++,,,,----...*+,,,,++++++,-.//011111////-.0123456643020//0/114421257:>@A>:50.---,,,..,,.-,+-,))++,,-,/1157:<<@<>CILV^oy‚ƒ€xj]JF@:60,()()()),-,,,,,,,,-------1:811?Xz“£°¶²¯²¶³«£ž˜‰‹š›—„|iO;89222200..--+**)))+++**)))+++++++++++++***+,,--...*+++++*)****+,./101221000.../0/034566440200/112265533568;=>=850/--.-,,//.-/.-,,,+***++,.01469=@?A=?ELQ]hw€‡‡ƒ}qeRLC:62/-)(('(*,-,,,,,,,,-------1:5+,8Qp‡– ¥£¢©±³¨§¨¥œ’”–•…xdI989333311//..,+++**,,,+*)))********++***)))+++,--..**++**)(++*+,-./2212210/0/--./..1234444/1//-./015554444458:;7410.+,,++..--.-,,++**))+*--1368CJRZer}ƒŠˆ„~uj\SJ@:521,*)')*+,++++++++,,,,,,,.71(&1GdyŠ”š˜—ž¥­­°±¬Ÿ‘ŽŠ‚{r]E65533331111////,,++.--,+**)***********)))((**+,--..*****)('++++,-//23342110///.--./00345320.+++,-..4533212014796522--,+**--..--.-,,)))(**,,1479>AFFA@FOXbny†‹ˆ„€wna[QIC;64/,+'))*,********+++++++-2-%!&;Wm}†ŒŠ‰Ž”«®­¥—‡„†…ˆ†{tkWB3001111////...--+,,-,,+,+********,*,*,))((')*+),+,,****)('',***+,-.112210////..,-..-.11221/+,)*+-./2322311//2677421/.-,,,./../.--,,++**+*,.256:=BEGCDJT`iu€…‰‹‡„yob]UOHA83..,)))*+,*,*,,,,-------//+%!%8Qgtz~z{‚ˆ™š•Š€‚‰…‚xofS?2/0+++,,,--.///.,,,--,+,,++--//.-.+/-/---++***)+)**---.,-++*)*+*,*+--000/.-.-/..//.))*--..-)''&(,000/1330/-/.1220.,02100/..1010/.--+3.)---2/49?ABCEIPYajq|‚‡‰ŠŒˆ‚{ui_XUSNE=63.*)++*-*,)+,--..001110-+(#*@Xgusvwvu{†Šƒ}|{~}~|umcUF=3.*+++,,,-..//.-,,,,,,+*++-.0/1/.-////--++**))**)*.0..,,*+*()()*)*,,...-...-..../.*)++-,--+)(')-1//-024321./.011/122200//.1/0..,,,,1-+..*,15:=@ACEHR]fpw†ˆŠ‰ƒ}vi`ZXXSJC;73-+*+*+,,,,-00001113311-)%,B]iolnpppw€‡„{xwy||{uneWH;3-,,,,--..//000/.---,+,+,,..10/././/----++++**)**+-///-,**+*+*+*+,--../.--.-..../.+++-/./.,*(()*-,,-046544222323552/1./,.,.,-*,)++11//11.-58=?AACFHQ\ent{ƒ‡‰ŒŒ‰ƒ}xmea``]VPE?92,))((****+./..0001102.'"*A[ikjjnnmqx|zxvvuwyy}ytmcUF:2,--...///01122100/..--,..000210/.0....,,*,,+++++,/10..++*,,+,+--.//0/10..../../0....0/./..+))()*)//368976889977751/..-,++***))((*1..1-/327:=?@BDHJQ[bgmv|ƒ‡‰Š‡‚~yoigege_[PJ?6/*(%&((((+,-+---///-++'",AYchhilmkmrtqppsvxxxzwqjbRG90*///000112234443311000/..011210/.0....,,,.,,,,,-.00000..-./--.///11210/////..0011112432110-+*))))137::;;:7889::97210/..--+++++***-'/4+*67:<>?BDGJNQY]biu|~‚…†„€}wpllkmlgdXRH=4,&$'''&&()*(***,,,*$'**5FW^ebeikhiknlmnsuwwuwtoh_PE7/)0011222234566655443232111343212/0.0....,---.--../120100/0/./001233332010110/12332256655220-+)())+,047776546598983110/..-,,,,,,,,*,EQ80;=:<>?BEJLORX]biszz|‚~yvpoppppmkb\SG>3*''('('''(((*****($,48@KVZ]\]bedefmjinrvvvtvrkf^OE6/)122233344567777777654433344432300.0....-----..//001234430/001011444331/.10211223456766640/-+,*+*&'-389:;>:633477532210//.../////+8fyTDJQVW[WW\aabfkjintxwvsvrlc[MC;3-22333444567888888887655455555310..../...--...///01234453////01225544320/2232234423576654.,++*+)'*,39@DGFJD;0--145765543333333331&;z’c@@:<=>>@ELPQU\^_\[\ux|~€}xvrtuuussrnjaWNB5/--,*(&''))+++++'476;DEJKB506885248614200231,IaDUvOBHLG74683--0500366:EMLD;8:830;A8+.DWNM=?\Q5DI@?IOJKNX[ZNEDHINNRZ^]]bilnqrtww}{yusolln_UQKI9-*+/126859AEO]b^__``dddfirxx}„‡…ƒzohd[MECDE3334679:::;;;;;;;;;:::87:9856331111144440010//..///.//00101120105432321011002334<.3GW`fb>?ABJRSK4001.++/6+$'-/2:2BLRRL>1/,*-7GW[I391K]?JLCEOQJNYbZQIJNMHOKJLMKLPX[]acehkkjjimpsv…|tllr]2',45-)1936?DTeidiedcehijv~…Š–™™’†ymbYMGCFI223468:;<<<<<<<<<<<;;999<98753210012235510210////-.,..0/0.0/00/024323110221134531&?`efcO0/03=GH@753333465/)(((&(7=>CLMJB>7..+449PC9IPFFTdhKDCDHKLMSMIHGFLRVXXZ]_beiklmooqophmphkrscD$"3=7-3CVgy‹Œƒ€ˆˆ‚‚Ž™§®¶¹½Áþ±¢ŒveYOJBCG00123578::;<==>>===><<:;:88543211100112100112100..,--//000/000//23210/0/001123644E_bQF;+'%! &.21,--,18;:20,')0;=-6?BA>705BLG9027(/"1,/\\CC?=LabTKF@>>BMWRMGFFDGNSTVW\aekehjlnnliradnnmon‚jL8-+2:AUn‚‘ŸŸ˜›¤¬¨££°¼ÀÅÌÍÎÑÏÊÀ¯˜~k[RNGHH00001345789;<>??=>>>==<<:99763332210101111212211/---.//0010000-/110/0.////001241/KVD63/)!#! #%%)-,,1:<674/+08=7--+&%+14*+,,,,-+%&&,.7UqSB:I[_TIMD?<87ALNKHHHEGMPRRUX]agjlpsttsomaejktzt~~waA/7J\v¡«¶¹³½ÅÊÊÊÍÖÛØÛÝÜßàÞØËº£‡qbWSPOO11101123678:<<=>>><=;;;:;;:;;=?=7532212213243431///01223532100-/13231102////0/0,7[Y6*+%#&*,'&&##*00.4<;50/.09A<,$(.,*++'*+,,*)(%*0)-56`YBAZbRFJD=<94,.4HEDHIGINUVTTUZ^chknopqspjmsh`s…‚wx{}xgXQw’­ºÃÌÏÏØØÚßäéëëææèæèéçâÑ©xh_ZYXV/0115444565799;;@><;87889:;CMPOE>44598405534554254657789:7640-+,2434579::0-1+#$.\A,)+'&+$&*))&%%')*.2421,,,/481&+*+--./-,-,,*))(& ''(5ICKWZRC?GFDA93//0@CC?AGIGQQRUVUZdkjggmsyzyutqjjw‡€ivxm}\m„œ»ÐÚàçëíîñòóôôóðïîíëèãáÔʸ ‰xoksmk/00232324557798;>><966588=ER`jj`K?:89:8586445552//2469:9:9640-+,.25677779611*%.:B-#&'$%*%(+-,*())*)+.1/.,(+691+)+,.-/./--+++)('$'#%**&/BFJJLPTSSXahiijpvz{xsotz{vpkkhfotHs‰¥ÈÜæíòóùúýýþýþûöôóñïíìêàØÅ®šŒ…ƒ†€~,-.//0214246689:=;;87779:BSfx…Šƒi\RKGEA<;7432310-.02345344300/-,'*/03421452,',9C0$ ')$"&&)-/.--/..+++--,-(.=:*&.,+,././,-++)'&"!$#'/.),758AIJCACA?=4.**+)8EE@AIPGIOTUUX_fikpw{|zttqt|€vcmw\^„{;p¦Ðäïùýûÿÿÿÿÿÿÿüúø÷õõóóòêáι¨ž™—ž–”,,-,-./001355789<;99888;>Lbz’¡¨¦—Š{mdZPHF?730/./013211/-/.//0/0/*,.02354451++6AA.((-,&#&&),//01232.*+,,*,-493'(/+*--.,,*,+)(&$ $./.2:-05@II?8984/+*+-&3@C@DLUEEMUWWX^cfmry|{yqzzpnuujfgUq¤3@m›Êâñþÿþÿÿÿÿýþûúù÷÷ööõ÷öïäÒÁ´¬©ª´¬¦,,++,,.//0133578::::9::=DUq¨¹ÃÆÀ¶©š~naXMB82/,,1311/+*),+,/02434532244531./8DG<0+./-)'*$'+.-.0363/,,++++58.&)-++)-,,+**,*)'#!")-06=>759DG>110/,*+-0-2:?BHOVECLUYXY]_dlsz|yvr|zoltsi_]hž¸›E*bŽÀÜïýÿýÿÿÿÿÿþûù÷÷÷ö÷ö÷÷óêÚÍÿÀÂÈ¿·1..++,-../022464888;:;ACFHKLKGBA40;F@5-/,*+,--*')*,-.154311220/551(*23**'*)))(()))('%! %%%%(+./GPSI>97/*&('(*04;7:CHGJKHDISZ]]`^afluxxwwuvx{wk_jf]kY```d|¦Ïçð÷ýÿÿÿýüù÷õö÷úù÷òðíäÝÕÒÕÛáåìã×630-+++,--/11343778:;61//037=@DHR\cjnmhaWE?IL<1.0/--./+&(++--/142222443/:/*/551,)'()))(())))'&$#"%$&)++*+G\YF72-)'&%&*/299?HIDEGIDHSZ\^a^`dirxyztw~}qgimlt^fah^^]o–Ãáéòýÿÿÿýüù÷öôõøøõïëåÝÙÓÕÝåìòöìß5431/-+*))*+03667789:;AHM`§ÊãöÿÿÿÿüùóìèÚÒÁ±¡’‡~zvn_M@:845:=>BHTj~‰ˆ‹‹~je[WQD3((**,.--,,'(*--/1345631133<607RcT6))*)&%&(+,+'#"$(&()*,+,-81A^Q<;*&$&&(+024;JRJ::DGEKTWVX\ffeflsvvwvuxxsnjugmlXXeege‹²Ïçî÷ùýþüüüøôööôñôóèÙÕÎÐÞççèóøïâ63420.-,***+/255667889>EN_¤ÉâõþÿÿÿÿÿüøõëãØÉ»® ˜ŽˆtbTIC:=A?@ERcƒ–›š–ˆukbXG9/))%%&('(((%(-235559779==<;:97/(+>O6,##)-+(./1.)&%&''((*))(/-6JQH?((&''((,/48FPI=;CHFLRWVVZfhikmqtulsy{uniefbhh^ci^_W}¥ÅÞéõ÷ýþüüüûõõõóñôôéÛÔËÌÛåçèïöîá65420.-,++*+/2445786670+)')))*,--.*.1587341.-3;?<54,+-' *:>6-)*,,,)+..+(''()()**+,+457NWE/,(*))(*,36AKG>:>DCIPTSSWdhprnllpjt{yqkkmhhmkgnm_WFf”¶Ñßô÷ýÿüüþý÷ôòòòôôìâ×ËÉØäèçìòëá9864310/-,,,/1356775458>KWq–ºÔéõùùýÿÿÿÿÿüøòêâ×ÍŶªž„ucQDBCEJUdx™˜ƒxgUHPO<12,$"$$&(+-/676653.,('(-441--",60%77/.*)(,4895431-*(&(EcA2CBV<4.+-//.+-022..-69?GLILNcgtzujiosqnnxsbmmo}Š|hjX:Gg’¿ØëõûÿþÿÿÿýûôöúúøöõèÛÕÝååâçêçå=<=;978743323467;;972015?F^‚§ÄÚçöúüþÿþûûöôñðîíèæâÛÒÊ·¨šˆzi_YRIA><=<<521I?735640....+*'&**()*,./321/-,*)&%%&)*$&%'1<@=71.-.3:==631/*(%$$1_L5?=SH=3..00/*-.-*(+,028BHFILefr{xkjrrsqt€ˆydt|uw•ŸŠ|U><:878543122369::72025=E]€¨ÅØçò÷úýÿþýûõòîëíîíîæãÝÕ˾¯ rcXNHC>:7774/,-E<7=C@9398852,)'((*,...,71,,--)%( !('"%0&*,./39>KFB==:611/..+*)(!YS:C;MQE6/./-+,-.)%&).)+1:@ABE_`jwuiemttpr‹„sy†qf‘´¢‡P9?U¿Ùãôûÿÿÿÿÿýùðñô÷ñòôóèâåçâàéñðï@@?><;:;76532224:9865449DMbƒ§Ã×çöùüüÿÿÿüõñìíïóöööîÞÓ˼›x]TMIGEEDA=B4;<)EIEB??>;9;7;A>0),+,-**+/.5+$&+-&!""%')&))*(&')).2322453/,-.,(%"HN3I1HPJ@60,++*(&())+,,0133457ai_jqdmyzxoijnoo{…lwp¯šuQ:8Zˆ°ÓðõùûýÿÿÿþóèéíõôòðñîêæãááåñúúA@@>=<;:654322248986547:EMcƒ¦ÀÓáìñôùýÿÿûôíèèêíîíóëÜͽ¦‚bMFCACCDFC?D;?=1PFDB?;987?54>A5,+*+--./342-)&''"$"%&+,,*.-+)&"!"$&+,-/23.-..*'''.51>P?AVRH>5.+(*(')+-/.,0010135\d[flalx~|rf`fpxw~dpn©“kO;;\¸ÜñøùúûýþÿúòèåêðññðïíéåàÝßäïöùBAA?>=<<987555579;97657:CNb¡¹ËÖÞãéîô÷øôïèãààáãâÝÖ̽©‘oQLDA?ACDFC=A@?86WCB?<8666A1+5>:/))),.0159*****)*,!!"))(%;83.)$"#%$&'*-//)+-,&%&*/ E0;?IUTQMC;2+&&%&'*-,,,/./.047Q]Ygm`gq^kqmgiqwuu]hm¡Š`H=A]’Âæñ÷øøûýýûöíâÝàåçêìéêæàØÕÙßïôùBBA@??>>;:98888:;<;9768;BK`~›²ÂÎÒÖÛãèìíëèßÚÕÕÖÖÒ½¶¯¢xaKJCAACEFFF>@D<1:YBC@=9788;.(/76/())./0178+*,,-../()+,.065@<71*%&%('%%(,,**,+)'%(*(,PCIHHG0.,--./0...,,.36AX]lrcegvzvhfq{|sjW]hƒ]IIPf–Ìéííðòóñêà×Ƚº¼ÀÄÌÓØÞßÙÒÍÏÖÞàâAAA@@???>>=<<==>>>>;979;?GWnƒ–¥±´¹ÁÈÏÔÕÓÓÊÀ¸²­«œŒ{xqfWNHEBBBEGIJHC>D4,@FA=;;=?<:*(*('&((),..../02/027751*/2214=D62/,)'(($$(,255681(&)**&+)'>>>====<<;;;<=<:::@BEGIJDD=B/,F<84018;95((*'%&'&&),++++-+-347788;<>ADFHE522/-*+,&*/24456<71,)'*)'/8>/.66-.01100/?:1*)(**-/0/++.0AZ^isnzpyysv}onb[Ya{‰zkfhuŽ­ÄÑÜ×ÏÇ¿¶®¤•”šž¢¨±»ÄÎÕÖÒÍÊÉÆÁ>=====<<=<<;;<=?>>><<::=CHOXbirŽ›§³ÁÉÇÀ¼²¨§«£„R<@CC>>E<:=@CHIH>963/08D16..;3',%')(%&'('(($"%.531.+)(((*).7>;616+*--'(/24652/,,211K#>&(7@7**174.)&*.0.XO:,/-'*%&&%'*.10;Wpv|ƒ|„€{z||xsn\\[Vk€zmfcjwƒ„|vqorvuwy„†‡Œ“š§¹ÇÊļ·®¨========;;;<<===?===;<<>@CFJQX^ftƒ‘¬¼ÄÄÁº«¢¤¨ž}E..5;::==<>AEFFC741/,+5A@=3198+#'(**(((((&%%*.01'&&'(*,/-+.7;730/8;0+/1->=:64357-52??+.1:@8-,01.*'(+02/YN8+10,/+**))(()09Tjt|„€„€}}}{vqn]\\Yhwob\]ckppm]]\^_eiktv|}‚†‰†‹—¨·¿¼ºµ¬£<<<<<<<<:::;;<<<====;<<>?BEEB?40+*(*3<>647=E<#(')+,+)))##*361+'&%%%&()-+/6:7337:@@BC>7<;973112,949jA-,7<;6.-+*'%').111YM3(363687621.*)/6Mer~ˆƒƒ|uom^Z\ZaeZQORX]^\XMPUY`gjmrtxyyz~€†’¢®²´­¥›;;;;;;;;:::;;<<<==<=;<<<@@BCEFIO_m{‰œ­·³º´ª¡ŸœŒlRB?=<;;>?ABEJYdq}‘¢¨¤§«©ž”‰w_TNNH><>>BCGJIF?97/+*)*.6A;BA6BL>2(#(-*)+%)/450+'+,00568:56=CFGNRM?KivdSRDA><93*$*(2TZV?F@70--+'##$(-,).5GA0-9:1101232/..*+BYl€‰ƒ|~|upe]VZ]RB65-(()*-3E?>8/:P[C3%'+++,&-440,+-8;=<==<>ABKNNOX_H[lkc_XJQG:2--+*/(BcGK99J<0-/+)(&%)-)'/;A=2.76.--,/11112)):Rh}‰„}€€ysoc`X[_N:8EISY]`gllmoponllqqrroprtvtw„™¯¾ÌÊÀ¯8888888888899:::<<<=;<<<:;;>>>>37Q@1-,(()'&&*((4FA@6031+-/-///112.(2H^zЇ‚„‚|uol`aWY]G16DN[chjnsttrpnmllnnoolknrttw…š¯½Ìɽ«8888888888899:::<<<==<<<>=???>;?KT\k”œ—”•…zo[LENQLJIF@DCCAA=841+(,.17=45.06')GjP700*+00232126<5888754529BGJM\hsjb]]YL;F;.('(&%'+J281/@SA1*(%$((&%*&%5JAB6.1/+2/.-+**,,1(.BXw‹Š……†‚zrli\^UVZC-5?J\glnrvzwrmiggikmmlhijosrx„˜©µÂÄ·¤777777778888888:<=><<=?AB?@ABBABLP[l†œª­¦¦Ÿ€sf`WOJLOKEFB?=:960,&0,(5=5251.-**'%0LO9*.3-*B/;>8M3222'*//&)7.7@9pBlic\WM@4771&!#')-/?7144CHE;0)()*/,#$/;?F=0*,134111..--/0%13Yq†Œ‡{tsnecY[Yi;-6BM]cgjnonmlihfeflmlkgfgimrv|‰™¤®­ž777777778888888:;>?>==?BCABBDFHINTatަ·»Ç¶ Ž…}odcZRSVPJE?<:874/,+-(,64170-*(&&%'.;D@@?>?CEGGIMOTVX`p†¡¹ÉÎÒIJŸ“Šzmi\QORQKE=:97740--+,6?2)2/.,,(&&*-.9C:%#25D2;?=P;0&'3/'%2)900<]Ief\TRI;49,251-)# *C:,5B]:;93/48;<;;?>:=D94,+-1222210.---2%+0Tw’Љ‰xrokf_\bgH3299999999999999998:<>?>CEHOTY_cfhlt†›µÈÖÜÔЧ‚|{tg\TPMGB;877641.*-0:G?.)1101-'&+-+4B=,*6-:05:>VOE8&1,2*.961?LbUCDFA=987312:HSN@25ILRZQV169759<;@==C?8=J30+,.0112210.---3'(.Oy’‹‰‡~vojfb\^dh508CKPY\^befdaa```acfgfb`]]_gntsuqidTK@;;;;;;;;;;;;;;;9559;>@FKQ\hsy{}Š™¬ÁÐÜáàÖ¾Ÿ‚sokmli`WMB=;887750/)301HQC00-/31*'*,0599322&2/02;T^_S13-E6,-?46hB14*=E:7=;03;FSclka>@[gpjK;07<;5411;76843IMS\__ccb``___`abded`^Z\^agmpsrnjd^T<<<<<<<<<<<<<<<:448:>EMTapŒ‘““”•ª·ÄÏØÚÚÉ´¢‘{]@BIRURMC:<;98860/,6+$?\ZI2))00,)-*12/053+'-1.-5GWba<<,K9/5()YA=:#+>E9275.7NenlilkLJZTMF2/A<62;DSessjghfdVT=043@EKLA73137>=7:EHB/--,-,/02210.---/0%,5qŠ„|tpja]^_f[601@EMR[^ada]YWXX\]_`_^^\YWVX_dhloqmjhe`========<<<<<<<:99<@GRamŠ˜¨°°¯°µ¾ÃÄÄÁ¿¾¼»´¯©¦¢–ˆTG50?QVOC?=;:5100535EMOXU>-.1-,00-.374-%+%--25/4F]\uJMC`s@€pT?2>K>?FB8Jgwrngkone]IG404.5?DA8//16/<=6:EA4..-,*,/11210.---.2%,1oˆŽ€xqoja_`bgW'3/@@???AB?==ACB>?>@IPZp‰š¥±¹º·´¶ÆÊÊÆÃ¾»´µ°¬¥£¡œ˜ˆgFge?NcLA9:95161.;3?KAVTI9/-///-,040)(,$&)-00149N]S=<`„€qkmka\`ZKBA>9>H_irpmnogS@511.14=:740136<;;<;93/,..++,,02321/...5,,&7Wšƒ€|rheed`ld? &.5CEMZb`\YYSRSTXZ][XWXWWUTS[]^[UMC>./.;>@@@?@AB@?@BCB@GFGSaoƒ–¢®¸¹µ´¶¾ÎÓÑÎÇÁº±¬§§¤¤£žšš€dwmJ[p[L@>@;64838.3@;M`Q:)&--)1573.)**.+++,,.27@L[bdeiWRVdok_T:5695-6CZdlmnmhZE74350/297431256;::9951,,-,,+,,02321/...32.*4[“}zvoifbcchV8##(/8AJX_]XVTOPQRVX[YXWWWTQRQPNLF?6/+---<>AAAABCDCBCDDCCMMRbt„•¤¬¶»µ°¯¸ÄÕÙÙØÑÊÁ¸­©§¦§¥ škp`GUiu_LDD@:6:6:0,3/8\[M6(+-,2>C6)''%*))),/49(3CXba[[PQWets]B54<>94EWSW_fkiYI7158;510320013689978840+--,,)),02321/...090..bˆwxsmlf]_fgJ4,'(/0?;5221001367797864.+,-,,))+/2321/.../<1.,j€tyqkjcY^heB7;1-3-6>LUXRPKIJKMPTWVXUSPMJHGDA=8667888:8:>?@@BDBCDDCBBIRh{‰—¡«´·³­«°»ÆÎßàääáÙÑÊ¿¼¶µ¯£—Œ€yqkiei„~rdYNE@77=?335#";K@/***2UhX>320-,+)'$$#,')5AGGHP[aahm_D<788=CS_?;;DOMA31589973021002345888975/,-.-*)))-2321/.../:0-3pzttmfdc^dm[>=F;46.38FNSRMJHHILOSVUVURLKHFFB?;8:=@C?=?58;=>?ACCDDDCCEPc|š¡©°´³°«®¹ÇÑÑÜÝâäãàÛÖÑÌÆÀ¾¸¨™†tqeeg[[mu{ypcTG?:6;1:J2),./151-/M]S?4103221/,+)"2>@:;@CS_bfhYC>;CJTY]^:53:A?822562000.44323333888975/,-,+*(((,2321/...131-Cuuqifa^bdiiF:74..2>HMOKGFGHJNRUUUQNKHEFGEDA?@BGGB@@259;<>@BEFFECEJYwŽ™ ¦­¯¯¬®°¶ÀÍØÖÒÒÙÞßàßÝÙÔÌÄÁºª™‹qoeejY_T`nvwsfWNB6=4=R00+(.33136>C@71//33335586%8=5+0>JUaedaR@//9@HJIF;66<9424054.*,.,54435555777864.+.-+*&&(,2321/...3+50Xxni`fb]bheY/7:;>800,.6@GJIFDBEHLORSRPNJHFHHHHGFHKONB@@369<=??AFGHFIMUf‰šžŸ¤­¯©©¯¸¿ÈÓÝÞÓÑØÝßßßÞÙÕËÄÁ¹ª–„gfZX_P]FMXcrzwj\OBI=@O"''.6-"'7?7.0554442.+)+,->2)-2543NQUY]XO@++/24686>;?B>539379/+.1/44446666655451-(,++(&$&*022//,,.4&95gyic]he]ah]F#8:6?9-1'(1:EIJHCBCEHMPQPMJIGFHIGFGIKMNNC?B68;>>>>?>?BGR_n~“ ¨©¦£¢¤­µÀÌÖßçèßÚÛÜÜÛØÕÒÏÉÆÁ¸«›|l`ZUPNOIPPSdr|†qs]LAT1**('&(+.1.240('/500.+)*,/.4:<;4,&7BLSVRI:*(,./236>?????<<78;9656:4345553456443/,),*(&&%%&-/0.,+*,0.5@uqjciZ^gckW# '4<91//&%.8DKNJFB@BFJPQLHGHJIHGJIGGJHGC<=B46>=;?B.17:;<=<<=6+%&,/359<;==;:776757;<><;4545553267551/,())'%%$$%')*((()+2*6plh[l\dZbqR)*+'&)*()&4Td`SLGC?@@EJMNMHHGKKLJKJFGHGFBDEH*-47:;<<<=DObr€Œ•”‹Ž˜¢­»ÃÎÕÙÛÜÙÔÑÑÒÓÒÑÎÊÄ¿»´©š‰p`YTQIFELY[\gklsvs~{a2)('&%&')*.*')..(!))()++*)-/0/1133<;934781').1567:9;;<<:::667;>?;84545553477652/,**((&&$$$%('((()+1.Jwh^_f[acle=!.'',.+$$$0Mr|mWJEC@ACJLOONIIHLLNMLJGHHIGDHIL'+169:===>DQeuŠˆ†šª´ÁÉÐÖÙØÙÖÑÎÑÒÒÓÓÏÍÇÀ¹¯¢’hZTROHDBDRWYdjlqnhv{~`2(('''''()/.,++*)(++,+**,-002/0,-*754.012,%)0589;>>@?<<9752219:;9756667677776:::740-****((&(&""$%(*-16[oa_`fb_c`H34=761+".PqŠŽ’}eQE@@DJPSUSNJGEJKNNKIIHJIHELNQ!%+.1456=fgd[g\h[oU-3?:961)&*?aŒ‹‹„zeP@?>CJORTRNIFDIKNNKJGFHGGDLOR!"&(-13458@KYes}‚‹–£¶ÈØâîðìäÜÖÓÎÆÅÉÎÐÓÒÏż¯ zgXQMLKIHGF;AOYXT[`eP<0/1/+(&())*,,%),//-*')"J?#1/(+)('&&&&).20,-4;889987=<:75455789:;<<<;:::950,+)+))(*)#'#%36,egb\XYcioQ3,6<813.&(=_w‚Œ‚€~nRB?>ADILNONIDBBIKLJMNKHEEIJQRS"#'(,01247=GTaku‰”¤ºÎßéïðëâØÒÏÌÇÇÉÌÏÎÌȼ±¡“‚p`SOKKKIHGEGCFLPSX_SE90/0,(&&())*,,')+-/-*().E<(-,&,+**)))(*,,)'(.5G>9:=;78765588789:;<<;:98885/+*****)+)$)%'/2=gd[W[`deL>2/02:=./5E[p}}€ƒx^E=B@@CHKLMMGCBDJLNMOMKGFEILQRS"#&)-//-017ALWaitŒ ·ÎßêïíçßÓËÈÃÄÄÆÇÉÅ¿·¯¡‘rcXQLKJJIHGEI?=DOSTS<741/.+(&$&')*,,(()+--+('=:5/(+&)))*))('-,**+/38=978<<@C;AKUUL>42222568878:;<<<;877774/,+++++)+)&*$$+'0Ti`UV]fda9620,)+/#,B_t{z{x……mK58B?@DGIJLKDCDFKNONOOMJHHKMVWX&&)+-..+--39DNW]do~”¬ÃÖãêëâÙÌÿ½½¾ÁÁ½·®¦pcZSNKJJJKJIFA;=FPPIA//10.+))$$&')*,-)'&(+-+)'I1,4%++('()))('*)),379:59;;:9=@VbjdQ<3/1112567889;<<<<<:87774/,**))+)*(',&'-"4gd\UX_d_ZA9210*#*Hfttsx…Š}[:07?@@CFHGHJBBEHMOQRPNLJGGKOXZZ(*,.00/+--.4>FNRS]l›²ÇÓáâÜÓĺµ³µ¶·µ°¦›’‡|l_XSOLLLLKLKKGA=AFH@83-//.,)(($$&')*,-+)%'+..,0T5+5$(+)*+,----*)+17:745>=;;9:::72/***)*())(*'*-)Cr^[Y[^]WU?941-'##.==:<9:::72/)))(('&()()**8Xp\]\[ZVRR795+%6T\edfkt|m\C0,1;=DBDFFFFGCFKMOOQRQOPLJJNQ^]\0369;;630--29?EDCDOax¦µ¿ÃÁº®¡—”šžš–ŽƒxnaYSPOPNNNNNOOONMSE82-(),0/-,*(%%""$')*,--(!!(./-3IM95.(,+*)+.13=<;;;:85554:J[c_92.1=@;2534444779:;<>==::999961.))('(''&+%+)'Kmf^\WSSRQU87/$#=VoqhYYcd_C8-*,07>FCEFGFGGFINOONOQTSSPNNRU`_]369:;;953224;>DA>>HTh~“ §«­¦…‚…††€xne^TPMLMOONOONONNLLHHFGGGGGGJMPPMKJLTUSQORUZ[[Z;;=====;<=>?@DEEHHLR[it{„ˆ‹‰„{rjieb^YUROOKKIGHFHOTJBJPLL=4,(-01-/....+))))))+++,+-( !*/.+-08>9,#F@<;?@>:47::7437>9/(&)/3037:;99::::9775501569::;>;9:=;61)+*(&%&&0-#&JooZNOMOORTS/)PoyxsaLCBB90,210302>BHKKGIKJPSSPMJJILMNPRUY^e\R????????@AACDEFGJIMOU]dhlprrmg_YVROKIHHGKIIHGFGIMTMFMOJE90,),020....--,++++++++,..( )..-*)0:BCC?;5478637898779:74,'&)-14678776::<:9755523568899;;==;62-+*+)(&%%')*5PeaMLMPQSSVQ/*3On|pbHB;7751-/442303>EHMLHHLKQTSQLHHHJJLQTXX^YSIEEEEEEEECDEFGHIGJHJLQUY[]^__\YSQMKHCBCCBGEFFHHJLMUPNUQE@71/++,//.--.-,,++++++++,0.( &,.0+(*09?D63027<<<<:7689::-+'%%(+.568744599997755334668998:<>=91+(,++)(&%&#%,=OTOFHLPSWWVPFVn€‡{[<$+/20.0/.3413/3=GJONJJNNTUSPKIHILLNSX[WXJE>IIIIIIIIGHHIJKLJHGILOPRSWWWUTQPNMJFB@>@?AACDGJLMQUOQ\XD:860-)*./-,---,,++++++++,1.' ").-+**+./254248<8658751('&&&()*147855678886644422478879:<=;2+'(*))(&$#%*#':HGGLJLORVVWT_xŽˆtY8%.33245-2312/2:::<>@@CFHKQQJRc`MC=940+)+++)*++**)))))))),10(" &-*,,-.004<<988885<9::<61(((((((&&+/378867666443332257:<;=<<:5-((*))*(&%$%-"%:IFGNLLNNRUWWfzjH4&&*.34430-1201.170.+*(*()****)))))))),1/)$"*./,*(+08:<=>>>=<8:>>>6/'+***)('%%)0357877555444457:;>?=?:83-('(*()(&'%$%)!*ANGEJNMMMQTWWX^ZB,%*.2126960++11/0-0;ILQQNNSRQPOKJLORXZ]]WOEBMGBOOOOOOOOOOOPPPPOPOOOOONNNKKIIGGGLKID?:86669:;ACECA?26<;91.)-++,+(''%'+.049;7554444479<;=<;93/+('))()*)'(&%$#%2EKCDLMNQQTUVUE=4,*,3668;=<6/**01/0,0:HLQQNOSPONMLKNTX`a]ULGEIOIBPPPPPPPPOPPPPPQQUTRQPOMMNLLLIIGIKLKHD?<:44779:::>DA<:5>SOE:53/)")'(*****))))))),0.,+#'#)01./5=BDEC?70.,1662.,+-+,--+***(()+09>755454559:;9:653-('')*)&*+*)'%&&#*8CB=ESLNRTVVTQ;(&242.16=90+,.--++*,+,+,+,.5:7/##(/8?DFHAD>3/010120//..,**+,++,,.-,,+-0/225799986430/.,,.,,+***,*)))(''$'7C?>DIGJOOPXROT59BB6)*4GQTF7*#"(0112+.<98666655-13%'C`JZbSHHD6+*,*,))'+)+)+*,.-/-(" $27?FGFB@AA:1/14334200/..*+)*++**.-+*+-./.0033434,,-++,.//,-,+++,+*,*)()&10(#$'./13,/<:876534-30%9ON5L_^UOHA1-++-/0044445557;>>=<>@DHGGEB?==B?70.03643310..-,,+,,-+++))*,//0/./..,+*)()*+-/0.-,****+,,,**())8=?:<865311/1+-LS4+9UgeUNPA<646:=>AABBCCDERTROLLLNHFB@@@BDF@722134333010//....----**+*+-.//--,,+**))()*,---,+*)+++,--+*)++;<=;?FMOMQPQYW[dQ@0(0?NVE:.),--,+--04-.8FJPPNOTQMLPYa`XQAEIMMKJLPIBQQQQQQQQSSSSSSSUYYYVVRRQQQRTVXXXURQRRQPMGC?;963/.---:RJ+9;Rnvh^_QF@:=>A?CBDCFDGGHIHGDDBBABABB@>?G?6330032111011111311/1//--,,*+)..-/../.)(*+,+,+,+)())))*,,*))-0@<<=CHMNIORU\PFG-)(2EQK@7-&*140-,--04-,5BFNOMOTQLOU\`[QHBGMMJGGLNHAQQQQQQQQSSSSSSSSXVVRROOMMMOQRTVVUSSTUTQOKGA<963.+*+9LH<9E@I`ppe\ND?;?>>9?=@?A@CCDDFHHIIHCDEEA>::F<324101/0101344334331300..-,)**..-....-))**+*+**,*)((**),-+)*/3B?=@FIJIINOVZJ7109CJOL>/-$!*5963..-15-*2=BKMMOURPQWZYRJEHIKKJHFIMG@QQQQQQQQSSSSSSSSVTTRQOOMMOOQRTTTTSSSUTRPMIC>851.*(,GXA3NE>BB>7==@ABCEFCDEEGFC?DCA>>?@CB80463/2/001334522220000,-..--,,//.,***(**+--,,+,-,**)),(+-+)*06GB@DIJGGNNKMSD2,9ITQE=84&)587520.15-)1;CMNNQSRUX[ZUNHDNKHIJKEEMG@QQQRRSSSRRRRRRRRSSSSQQQQRRRRTTTTPQWWVTSTSQMC=82),$3WmeWOEEGHKKMMEEDEB=<<89>==??:300232232333120..-/...----////000....,,,,--,,,..--,+*+',)(+)-=HJGHHJKLMKNQH:7;YQHC@;51&##'0563--.//.,(;FRUQSSUZeeYKGHGIKMNMKHGLD;QQQRRSSSRRRRRRRRSSSSSSSSTTTTTTTTSRUVZZXVWYYTOH=40%)=GB=?VTQOMMJJTG>:@A;499=>BDEEFDDECDDDA@?>===??<600/0023433110.-,,-,,,----////00000000000///..//.-,,++&,)(+(,>ILJJLMNOGHKPPLQTMG?:::74-)')/2200010/.,*9DRRSRSV^eaTIFFEIJLNMKIILB9QQQRRSSSRRRRRRRRSSSSSSSSTTTTTTTTTPPRY\YVW`ijibVJ<.(./(*3015:BJPRYNE?BC@:;<>@CFFFDDDDEECCBB?>===>@?<51-,-21211110.,,,,,..--//////00000///1100////..--,+**&+)'*'+=IIJLMNPPOPONQUYUB:6369880-**.0/.2220/0-)5@MNQRUW``WLEEECHJKMLJHHJB8QQQRRSSSRRRRRRRRSSSSSSSSTTTTTTTTWTRSWZ[]]ix~rgN>210,,4+**)+/11BJOKDBCF>?>@CDDDDDDDDDBCBA>><<=>81,+-010/1//.-,,+,,----//////000////.1000////---,+**)&+(&)&*ILQTWZa[NECEECHIJKJIGJJ@7QQQRRSSSRRRRRRRRSSSSSSSSTTTTTTTTX\[YX]hpw†”œœ™‘‡kS?75225<950,+*(*8HKGIIEBBABAAAADFFFDDDCBA>====>:;=93-./0/.-/--.--,,,+--////111111100//.11000////..-,+++(-*(*'+;GHJLOPRQMOJBDHA3/.++.379652//.,,45540/-)1:GKRVY[`WICDGGFIJKKJIHIIB8QQQRRSSSRRRRRRRRSSSSSSSSTTTTTTTTUZ\Z\g|Œ ®¼Á¾º±¨rT?8312332348:9(/6AO[VIJFFDBB?ADFFFCCCCAA@=<<==89:970/.//.----.,,,,++-,////11111100/...///...--..-,++**(,)')&*9GHJLONOQNLFBB?6,+*((*-1475422/-,35521.-*/7DMSYYYYOCAEFFGIIIIIHGJI@9QQQRRSSSRRRRRRRRSSSSSSSSTTTTTTTVVXZ^j€š®ÀÐßäàÚÓȲ—z]I:1/675453303214H_dZSOKJGDABDFFEEDBBC@??<<==:::::4/+/.-,,,,-,,,+--..//1111111100/.--..---,,,--,,+*))',)&)%)8GHJLNOONNGA=:1+)+-,+)++-457751,-022120.)+5CLV[YVPI@BFFFHJJJJIIHJI@7QQQRRSSSRRRRRRRRSSSSSSSSTTTTTTTV^_ajœºÏÏàòùöðé߯µbG7224577976571+6Rim\WSNKHDCFFFEEDBBCB?>><<==9:;:6-&/.-,,,*-,,,+-,..//111111110/..-,--,,,+++--,+**))',)&(%(8GIJMOOMLD:462+*20120.,-,359973,-.0101/.+*4AMV\XUIC>BFDDGJJIIIHHLIA7SSSSSSSSSSSSSSSSSSSTTUUUUUUUUUUWZ]nŽ­ÅÛïöùþÿýúôìÔǵŸ‡iF-/01530299:75Fj’©ˆpZQOLIHGKF>@JI@@@@>><;9>99985.*0/.-,+*,+--,.---0000111154321/..--------+/21-**+(.)#&%(6JKJJMQI>5520/00033410/.++-2664..+..-/./+&1CR]_WRDD@@CFGFJNNJHKLMKB7SSSSSSSSSSSSSSSSSSSTTUUUUUUUUUUY]jƒ¢ÂÛïüþÿÿþýúùóàÔŲ„cK3/./23597?EPg‹®¿Ï¨{]USMEFEHKF??E??@@>=<9<;9:;61-0/.-,+,,+--,.---0000122243210.----------.011/,**(*%$($&5ELROKD:/1000111345521/.,+.045421/.-+++-,(3EU`bYPDC@@BEEEGKKHGJJMJB7SSSSSSSSSSSSSSSSSSSTTUUUUUUUUVVZ_x˜·ÒìüÿÿÿÿþüûúôçÝÑÄ´ŸƒlE7,.478:9K_v¯ÈÓÙåÖŸaDKYULBBEFDD?@??@?=::::<<72.00/.-,----/..-//11222244210/.-,,--------10000.+()'#&*#&>?>???==9:=?>95210/./,----/..-//223222440//.-,++,,,,,,,,2/-.//+'+($() (EVRG:3.-.)*./210043321/..+,,.146884.'%$&''8PdniXEA@??@ABBCGIHJKHID<0SSSSSSSSSSSSSSSSSSSTTUUUUUUVVWW]o¬ÂØïþÿÿÿüúõñíêèäáÙÒÅ­™bB57998XzŸµÁÍÝéïéâãêÛ¢c@DNRI=;@=>?@???=;<@@>95312101./////.0///3332433300//.---........2/-.00-*++(((!-LRH8.,-.1-./00/-.021///.,++,-.25785/(%$%$%;WkrgQ=>>>>>>@@DHJJLLGE?9.SSSSSSSSSSSSSSSSSSSTTUUUUUVVWXX]m… ·ÐèùÿýüúùóíèãêèåßÛ͹¥’rO;:=BGs”¸ÌÓÛéôëôöñêåÚÇQ:FJ<7D>??@>>>=\ml_K9<;==;;<>CGJKLLCB83*SSSSSSSSSSSSSSSSSSSTTUUUUUVVWXY^kz”±Íâòüûù÷öòìççêëèæâÖïš}[FCKZd¨ÆÙãëôùûøóííðñêËYDEFAA??@@>=<DHJLMK@;4/&SSSSSSSSSSSSSSSSSSUVVWUUUUVWZ\^erz³Ñáñþúù÷ôòñîðïñïíéßË·›bNLWn}¢µÏâîô÷õ÷÷÷ùôîîïáà¸qGHJ;@@>>=<;;>>>;523654543011//100///11210//.00/////.--------.14320485;22JZMA11250+,3+*)((*+,))******,+-,,,-+01443.'$*B[aXKA:;>==<:>?GKOPRN?6*.,VVVVVVVVVVVVVVVVVVYZ\[ZVQSW[_l„š´ÃØéôýÿÿûúúùôòòóñïíéåÚï—vUIUoŠœ¼Ñåñõùúùüüüüüüüþÿüø÷æ¹wFA??=846:77:762677875431322110/..-....,*+/11000//,,./11120101/1026=ASesr<.///...----,,+++......../.----./023666411>II@67:@?@><:;5-0.VVVVVVVVVVVVVVVVVVYZ\[ZVUTW[cw—²ËÝóþÿÿÿþûúúøóïëëìëêåáÔ¿«’y`Ziœ­ÊÜíöùüüûüüüüüüüþýÿþöôëÁ:2-39@@B?=989DLSVTK8.-0.VVVVVVVVVVVVVVVVVVYZ\[ZVVUW]i¦ÄÐæüÿþþüøüûùôîæãßâåãßÜм«•‰}€‘¢´¿ÚçôùûýýûüüüüüüüþýÿÿíæðìÞ­n?@K@8:6;?=946<;<:;998844433221000/.--.22111000320///11641235326@IVoz_,,.---,,,---,,+++----------,,,,--,,,-.1232571+)/4<=A@?;::ENVXSI4(,.,VVVVVVVVVVVVVVVVVVYZ\[ZVTTY`m†¬ÊÚñÿÿýÿþúýûøðèßÚÕÚÛÛÙÖп±§ §µÃÎ׿ðøúûýýúüüüüüüüüþúõóøøôêìȉP;<@<7;?=;78;;<==<;;;66655554432110002221110043100012654556326?MWorL(,.---,,,---,,+++--------,,++++,,.-++,--/-/0-))-/58=@?=>?GQZZSG4%*,*VVVVVVVVVVVVVVVVVVYZ\[ZVTUYam„¨ÇãøÿÿÿÿÿúûúôêâÙÕÑÓÕÖÔÓÏĸº¶¸ÁÎØåíð÷ûûûýüúüüüüüüüüý÷øýýúóïâíÙ“WFE;:<>?>:99<==;<;;;8666655565421112322211110001245648:;86349?R[ne:*-...---,---,,+++,,,,,,,,,+****+,..+++,,+*+//.+-,/38:=>@@>:79:9::::<88888888:975455633222111/01345554U^kU(..///...----,,+++,,,,,,,,++*))*++--,,,,+,+,/1210.-.358:?BITZXPA0%,,*VVVVVVVVVVVVVVVVVVYZ\[ZVYWWZbxš¸×ðÿþþÿÿôúõîåÝØØÖÒÒÒÎÏÏÈÃÄÌÛëöùûüýýýüüýýûüüüüüüüú÷÷øúþÿÿúøúñâÛË–[D@>AB@<57687768888888888;:86556733322111234553214>GH?97:;;U^fI0.00///..---,,+++,,,,,,,,+**))**+++,-,-.,+-136441+-0257=?ITZWM@/#,,,VVVVVVVVWWWWWWWWWWZ[]\[W[WY`gv“°ÉÞóþÿÿÿùúöðëèãߨÚÔÑÒÑÉÈÊÍØãíóúÿÿþüüüüüüüüüüüüüüúúûýÿÿÿÿÿÿûóîéâÙÏiK:@GA:=223/.-145788::98:9998777223443323199-(';702>JD7?851.+.26DKTRK<2,,-,VVVVVVVVWWWWWWWWWWZ[]\[WXVYaiy™¸Ðâöÿÿþüø÷óíéäÞØÑÉÂÁÆÈËÏ×áêñ÷úûüüüüüüüüüüüüüüüüüüúúýýþÿÿþÿü÷õöòìãÖÛЦiB2**-364349857>4444333356677655;17@3&(+,.*%%2AKETaS9%(3244433324433322243332221//.-,+**((((()*+0.++.4<@=:73-+*,=DMMH<4/..-UUVVVVWWWWWWWWWWWWZ[]\[WXVY`hw˜¹ÐãöÿÿþýùöñíçâÜÕÎÀ»¼ÂÇÍÙàïõúýüúúûüüüüüüüüüüüüüüüüýýýýýþýúûúøùøøôîíäÛÛÙ¼y<6559;6-&@:8:80-133332222455554436/?SH403*-*&#,:FQ\^F.%+1355443335444444466655544220/.,++**))*+,,/-**.19:=;;61,('5;CEB;40//.UUUVVWWWWWWWWWWWWWZ[]\[WXWZ_et•·ÎâõýÿþýúøóñëåÞÖÌ¿¹¹¾ÈÑßíøûÿÿþûùùüüüüüüüüüüüüüüüþÿÿÿÿþûúøö÷÷ùûûúøêóôñëäÒ¼£‡aC559<73259:;;111111136666654332MfZ@43*+++(*/6[^V=.,.-35544333444444448887776654321/....-,,-..----116499<:6/,*.472-.-,TTUVVWXXWWWWWWWWWWZ[]\[WXWZ_cr”·ÑäöþÿþýúøôóïèàÕ̽µ´ºÅÑãóýÿÿÿüùøùúüüüüüüüüüüüüüüþÿÿÿÿýúøõñôøúýþÿÿüþúñðôñíæÜн§scKLC2(*,*222233337::9986659SgX?2,+++.,**.\WM;663-455544443344445599998887776543220/.-,,,,,-01222-137:7410-06:962---,TTUVVWXXWWWWWWWWWWZ[]\[WWVZ_ds—»ØêûÿÿþýùõòðìæÝÐǹ³°´¿Ïãòþÿÿÿüù÷øúüüüüüüüüüüüüüüþÿÿÿþúøóðîòöúþÿÿÿÿÿÿÿÿùðéñïííêåßÚÑдxG850222334468:::98767;LTC40+../2/,1:RKF@A>935777666544455666:::99888998877665320.-..//01332-*-277422/16:973..-,RRSTVWXXWWWWWWWWWWY[]\[WVWZ`guÂÞïÿÿÿþúöîíéåá×Êø±¬±¼Ìàòþÿÿÿûùùúüüüüüüüüüüüüüüüþÿÿÿýû÷ôñðòöúûüÿÿÿÿÿÿÿüûúðîìêççêêÛäÅw7)//334455687998765458A<,(.*./220.;NIECFGB;8455666775556677799:89787:9:9989989420.//11..+*)%!+165552356850--.-NOPQUVWXUUVVVWYXWX[]^[XUUVZ]g¬ÐäðýÿûûøóëëæÝÙÖɽ½¯¤©´Ä×çûÿÿÿÿýúûþþþþþþüüýýûúúùùùÿþýýÿýüøúö÷úøôóùÿÿÿÿÿüüýÿÿýùòíêèßæÊr53/-111122442556766564-'&*+)0/)(4CD>?BDFEB>;3100125666664444768576879787:9<=:9840..001/-)&''+,1489;967<;<;4,,+(MNPQSTXXVVWWWXZYXX[]^[ZVWV]bnˆ²ÑãîýÿýùõïìçâØÓÎĸ¯¦ ¦µÄÖäþÿÿÿÿÿýýþþþþþþüüýýúúúùøøýüýýÿÿþýýûùñåÛÞêýÿþýûúþÿÿÿÿüôìçåßçÊp32.-//1122442256766551-'(+,++*3<@<:9=>ABBA=<643012466666442276655667777789:;?>;75336764-)*/1;;=>?=:89>?=:9555566666442277666677777789;;BA?;:89<>;71/3=BJJHE@:528=DGJF>5..+MNPRTVYZZZ[ZZZ\[YY[\][ZWUPU`tŽ­ÂÚçúÿüõíäÝÓɾ¸²ª£¨«³ÀÓáïøÿÿÿÿÿþýþþþþþþþüüüüúùùù÷÷üúûüþÿþýûûúíÚÐÙëýÿþýûúþÿÿÿÿüôìæäãéÉl0000./223232224466878320237><<88878666644228766667887788:;=9989==;71/5?EEFEA;4/,28BGKG>30/,MNPRTVZ[\[\[ZZ][YYZ[\ZZWVPT`tŒ§¸Õä÷ýùòéßÖÉ¿¶±«¥¡®¶ÂÐáïûÿÿÿÿÿÿþýÿþþþþþþüüüüùùùø÷÷ûùûüþÿþýûùùñåÜáîýÿþýûúþÿÿÿÿüõìæãåëÊm1223./33422122446689:56677=DbsƒyoZA8653479;<:;8::9:666644228876678888889:;<=<;7768;:961/3;??@@=6/+*-4@EJF<1**' testèfdsafdsafdsafdsafdsafdsafdsafdsafdsafdsaaaaaaaaaaaaaaaaaaaaaaaaaaaafdasewqrqqqqqqqqqqfdasfwqetqwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwfdsafdsafdsafdsafdwqrewqf `a_name c_name ?@4 4ÿb_name   nested_name a_name c_name ?@4 4ÿÀ&xCharacterShortInteger Float  String  Integer Array* Float Array(*P   8 HDF4_REF_NUM. HIMAGE_VERSION! ?€ @IMAGE_SUBCLASSIMAGE_INDEXED @IMAGE_COLORMODELRGB H IMAGE_MINMAXRANGEÿ 0PALETTEX× H IMAGE_MINMAXRANGEÿ @IMAGE_SUBCLASSIMAGE_TRUECOLOR @INTERLACE_MODEINTERLACE_PIXEL H PAL_VERSION! ?€ 8PAL_COLORMODELRGB @ PAL_TYPE DIRECTINDEX H PAL_MINMAXNUMERICÿ H 9àƒ5 MPW?»£ X@¼¤  YA½¥! ZB¾¦" aIÅ­) bJÆ®* cKǯ+ dLȰ, kSÏ·3 lTи4 mUѹ5 nVÒº6 u]ÙÁ=% v^ÚÂ>& w_ÛÃ?' x`ÜÄ@( gãËG/ €häÌH0 iåÍI1 ‚jæÎJ2  @IMAGE_SUBCLASSIMAGE_TRUECOLOR(   #? A:\Mp1D String2D float array2D int array3D int arrayArrayOfStructuresVdata with mixed types4D int82D 8x92D int8x9¨SNOD@ˆ€ 1P˜h€Á  !"#$%&')*+,-./013456789:;=>?@ABCDEGHIJKLMNOQRSTUVWXYhttp://www.hdfgroup.org/http://www.hdfgroup.org/HDF5/http://www.hdfgroup.org/products/hdf4/http://www.hdfgroup.org/hdf-java-html/index.htmlhttp://www.hdfgroup.org/products/http://www.hdfgroup.org/hdf-java-html/hdfview/index.htmlThe HDFView is a Java-based tool for browsing and editing HDF4 aSet the bounds of library versionsUse H5Ocopy() for copying datasets or groups (important for largview a file hierarchy in a tree structure http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/index.hHDFView allows users to browse through any HDF4 and HDF5 fileSet link creation orderShow and modify dangling linkscreate new file, add or delete groups and datasets http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug01intHDFView allows a user to descend through the hierarchy and navigtest stringtest stringtest stringhttp://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug01intThe content of a data object is loaded only when the object is stest stringtest stringtest stringhttp://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug02staHDFView editing features allow a user to create, delete, and modtest stringtest stringtest stringhttp://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug03objThe HDFView graphical user interface (GUI) is simple and easy-totest stringtest stringtest stringhttp://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug04treHDFView was implemented by using the JavaTM 2 Platform, which istest stringtest stringtest stringhttp://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug05sprThe GUI components have the same look-and-feel for all machinestest stringtest stringtest stringhttp://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug06imaHDFView uses conventional folders and icons to display groups antest stringtest stringtest stringhdf-java-2.11.0/samples/tst0001.fits0000644002344600011330000012430010705744572015232 0ustar byrnhdfSIMPLE = T / Standard FITS file BITPIX = 8 / No. of bits per pixel NAXIS = 2 / No. of axes in matrix NAXIS1 = 123 / No. of pixels in X NAXIS2 = 321 / No. of pixels in Y EXTEND = T / There may be FITS extensions BLOCKED = T / The file may be blocked CDELT1 = -2.3 / Coordinate increment CRVAL1 = -73.3 / Coordinate of reference pixel CRPIX1 = 12.0 / Reference pixel in X CTYPE1 = 'PIXEL ' / Coordinate type of X axis CDELT2 = 7.1 / Coordinate increment CRVAL2 = 300.1 / Coordinate of reference pixel CRPIX2 = -11.0 / Reference pixel in Y CTYPE2 = 'PIXEL ' / Coordinate type of Y axis OBJECT = 'Ramp 8-bit' / Name of image ORIGIN = 'ESO ' / File was prepared at ESO-Garching DATE = '19/08/92' / Creation data of this file COMMENT This test file was created by P.Grosbol, ESO (pgrosbol@eso.org) COMMENT Simple 8-bit ramp pattern for testing of FITS readers END   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  !"#$%&'()*+,-./0123456789:;hdf-java-2.11.0/samples/data40x10.txt0000644002344600011330000000235107567007533015401 0ustar byrnhdf0 1 0 25 25 0 50 40 -31 -51 1 10 -19 34 4 2 49 44 -35 -56 2 15 -7 37 19 3 48 37 -24 -51 3 17 1 38 4 5 44 34 -30 -56 4 19 9 39 12 6 41 41 -26 -51 5 20 12 39 13 8 35 46 -24 -53 6 21 15 40 36 9 31 45 -31 -55 7 22 17 40 5 11 23 44 -34 -51 8 23 19 40 35 13 13 42 -30 -52 9 23 19 40 1 14 8 36 -28 -55 10 24 20 41 15 16 -1 44 -24 -59 11 24 20 41 29 17 -6 46 -34 -50 12 25 20 41 28 19 -16 36 -33 -53 13 25 20 41 28 20 -21 36 -35 -58 14 25 20 41 11 22 -29 41 -30 -56 15 26 19 41 11 24 -37 35 -27 -55 16 26 19 41 13 25 -40 41 -27 -51 17 26 19 41 14 27 -45 34 -32 -56 18 26 19 41 30 28 -47 34 -35 -59 19 27 18 42 11 30 -49 40 -32 -55 20 27 18 42 20 31 -50 37 -30 -58 21 27 18 42 1 30 -49 34 -31 -50 22 28 15 42 1 28 -47 33 -29 -53 23 28 15 42 36 27 -45 39 -24 -57 24 28 15 42 9 25 -40 35 -30 -57 25 28 15 42 39 24 -37 37 -28 -52 26 29 13 42 9 22 -29 37 -30 -58 27 29 13 42 17 20 -21 46 -23 -58 28 30 9 42 18 19 -16 35 -29 -51 29 30 9 42 34 17 -6 41 -29 -56 30 31 6 43 12 16 -1 44 -32 -54 31 31 6 43 28 14 8 44 -25 -60 32 32 2 43 1 13 13 37 -32 -54 33 33 -2 43 35 11 23 41 -32 -56 34 34 -6 44 12 9 31 43 -33 -60 35 35 -10 44 24 8 35 42 -36 -53 36 37 -16 44 3 6 41 42 -30 -55 37 39 -19 45 17 5 44 38 -36 -53 38 43 -17 46 32 3 48 39 -32 -54 39 49 3 47 21 2 49 41 -36 -51 hdf-java-2.11.0/samples/Roy.nc0000644002344600011330000000766410705744572014340 0ustar byrnhdfCDF0 lonlatref_time sourceCOADS CMR5 DATASET DATA_TYPE MONTHLY MEANS COORD_SYSTEM GEOGRAPHICALCOMMENTQmonth since 1980-1-1 00:00:00, Latitudes: 32.0, 36.0 Longitudes: -140.0,-136.0Platform_Types All Platforms lon  long_name longitudeFORTRAN_formatf6.1units degrees_eastälat  long_namelatitudeFORTRAN_formatf6.1units degrees_northìref_time  long_namereference timeFORTRAN_formati10unitsmonthsôSST  long_nameMean Sea Surface Temperature _FillValueÆ?öunits degrees CtrimmingALL instrumentunknown bucket implied bucket øSST_obs  long_name1Number of Observations of Sea Surface Temperature _FillValueÆ?öunits number_of_obstrimmingALL instrumentunknown bucket implied bucket SST_var  long_name0Variance of Sea Surface Temperature Observations _FillValueÆ?öunitsvariancetrimmingALL instrumentunknown bucket implied bucket à à BBA„•sA† xADDAu*BB$B@BlB£æBh5xBâ—æCFø?€A¡ÌAÛ$A‰çGAŽS3AÈAÈAèBA×ê²B#7BQ•BQwý@AwSˆApâ[A…òßAˆ(BBBB8B¢´C%éýB‰éjBT‡‚@@Az¾,Az¦ÄAˆHIA‰äÔB(B BBDBºJ¡Bô—BŠ C¢A@€A}Y™A†|ŠAŠ»AŒ’HBBAøB(B—Ó CK´CSBìÏÅ@ A5åA‘|A“¥äAffA˜A AÈB0AŠˆåAeÙBË4 B£ž¼@ÀA•„ A–[ŸAŸwwAœØ~A˜A˜AB B‚úBTÿvAìQíB›Ö}@àAœó3A™çŸAŸPuA¢rÏA€A¨A`BApµÅB(w@ܵWBÊÌ/AA ²`A¢'bA«34A£NÆAøAÐBBPB(8+Bv(Bÿ(úB—áAA¥¸A ÌÌA¦ðÇA£¤B AðBB<Bt¼BÁÌÍBˆC˜¢A A•§÷A—E~AŸ°ßA³¿BdB`B0B<CgäBµœrBµ qC>éŽA0A‘©üA“PuA™¬ÎA–ºnAÈAàBBB¹(#Cþ†BƒÚ·C8Ë[A@AŠ66A†S2A“šA“dBBAÀBBšö]CKw”B«ÅÁBÆÆ¼APAsh¡Aw+A€QíAŽÔA¸AÈAÈBCØšBÖ–C°¸WCßA`Atd7Ax ¡AƒÕ€AƒxB<BLBTBlC êBñR¸Bù§ŸBëbkApA{¤úAt""AóƒA€µLBAÀB$BtCbé…BC—åCD½²C$A€A‚ézA‡ˆA•bûAëNAÈAˆAðB<By«“Aö^BoQC+³AˆAž¤uA—m·AdÂA£ícBA¨AøBB…kfB—I&CÒž¡B¨"lAA èA„ A ÌÌAœ2A¸A˜A˜BBÜVÑBýeOB× CÁC{A˜A¤P#AŸsA¦ÌÍA¦Ž A¸B A AøBLaCƇAm…#Bµ7€A A´ZA­¶ÛA³‘A¨^†AÈA¨AÀAÐB% ÞA–ÄB)[ºCÛlA¨A©JRA¨¢¥Aª»%A«ñAøBAèBBKOCE`.B¹žæBÎÑ‹A°Aš€A˜PõA¡k‡A¢'¶B B,B BDCUŸ·BŒ>ÌBäðŒCiA¸A‡m¶A‰ÈÜA’5äA–=qB BBB Bž2B„æCYBB«›ªAÀAu°\A\ÂAŠRçA‹… AAA¨AÈC®³ÄD.]A´lBÿùAÈAsÂAtNÆAA‰½8A APAˆA¸B4æîADšdB Ž*B@“AÐA}×ðAvffA~A+A…ÌÍA¸AÐA°BB¶$ñBfõÀC€ŒCλAØAmå AffgA€(öA{Z6A˜A¸ApA¨Aó‡CB±=oB(“BEE¹AàA|ÁA½AŒ5æAƒDDBB$A˜AÀC„ºBäl£BÕ'WBK¬bAèAŒÛlA“ ÷A•>“AäpBŒA0AAÐC îA¸ÅZAóà1BÉ}M>}M>}M>}M>}Mffffff>O>O>O>O>O"A"A"A"A"A"A"A((((((((((((((qjq,.-            !      *&&!  3#"   -) -'%(#  !3)         ($*" ('!&*'#$#"&    -(* !$)        ! !$")*  #'*,(&# % # "2% 0+,0)#$! !!# #'      , &*)(!- *,#$24/$ $  1.,/#2;;+24I(1%*;A:<848141'2.  "(  #%&&( !     ( $  #"  21+*!$   "#<0#! *3IEB6D?N8-6CIKJL>??A-66=1% ¹  %$5#*+'&'$!"1/!    ")     %'$ )+& "#   : 8=+>3A.,3254?D94L;>J.LG;0:8/3E14+,1    &#0(A,%-0!/*$$.""     &&1-#$+'"$,   '% -$+    ,(:" .5A6","6+*)7!6 ,6987"9.   <  ! 0,++#( &4." )*:?+);4@A&)081BB2&/-3$,6:A[UVUCXTDL+OUAF>HCJG1N$#R](G.$&6'%*364=:-(,&7.%&3.>/''0;!$!!)%') >+*!%" 9+170#53')-  -1(%!$ ##>FE?8<*$&-*&G7>0.<=?**% =+!"-;,>@9A?E,.1-,*,+-'B97  !%03+5<%+('*' $ F/#G<:@B?5-0$4&(&$"'C>B=:;;3=4,&)    (9 6'B-K8J;G6)B*@6/GBR\X]OaWXVYX[\^^D??A@NCJll9BDG$L4  /6M/N1+IBH@GFD @5;5&-3/1'-90()) %''&$)+.$#1 ,60$.414-$4+(ID=B9?&9.;209*&=5& 0''')&%*12""  "/?%0'))"0,3'46?='03HL-,&%=7,(7,- ! /561&)=57D@3<25*E/!,*80+10(&:=8) ($+),$*"##28/+"  ,=538013/>D5/0%A().;12+   -?8A92.81B Z:K9dx|ˆ_ok^V]QdWT`NŽƒT>ƒ|{EFBC?GDE@?85-1CRKS]R +"9(((/HB296DH=:(>=A1;>5!* +'+FNR+H#!,5-/')% $/<7,-"(,BJNX+r€†WbŒ}{fcbwdUXT]_~D?8]KICJEGGBE?:7475O`MY1bim^iMZT[\7+27B*D3-\AB0@<;6DC072"0!M.1;,2:!6=30$+)"& "%41&+.,DFI8)#"93UJXCGQG=hbl>ge]YYMPLMTNF7>-*$(+/J4.!J .(($  ;<:+2/1=9.BBL?>GNR7akXexb‰ƒY~Wd^__cs[]]UEZ?LHIGCEEGA@B<@:95RQMGBcb]ds_]^c`^[]*/#-JIG-@*L/?@;E:(-"8!0,+%7,. /@#*S8&HAVRUQ`yR{|g‹‹•]Žœ€x€oY^d[VƒGMKGANQ;JEC:>;95:<684)INKffkorjqbmh^ao_ke1S#)4H>:3]GAI5$87:9IHF;H?5%2/!(' .(A1+336I+1,"&19A0 %404-28)afcigje`\XUo;d~mj[WjYeK=.64HILA??6/$QEN.&;*.'-15%))AH ./@8AG<4P43EMGRM@Fuyˆ”’…‡^_lš‹cfghQ{PXkhMF@?NKD>:D603648..+EN?VG:D8ENM>JM7WOI24?LSTHAML.M-*.1'3*%1-7.8701/+()=5)!)6;870_oH{rld_KUJM:Sh5cRY^|fdYF-@H@CIED#568VE=-?V82:-*4(3955& ' 0<"95,!=)>2FUN[Ta_\~Š–’ƒ~‚yf…’…e^Œmso{zojzlq[]eJTONEA>:9904956/QB%lylsvwokjnidechcegg%W 3a1EBOG?FHJBJZHbII5C;1-8<3/B;;M8%.+91%,471)A0% =DPEIN631=9BN,JZo_l„Œ{~yuXc|£~yxw}}v‚jlBY\NRPNHB=97:0.441,JMZxt2nlueqhpkvfmctj_2-VC8'9(75 f+kt{2vxWjzs`di[…LjdUUSHI:9IS17/;B?;;2-62*6GECH6;2E@F9(/5 '741<$H: $R:YVQPWRM8RWQfSnt›”…‰umrrpxrw}y}f‡rroidSkZULSULMFN?:7<24D=48XT6svqnklnqgf_tcealcc]h4T,T'NH-HK@PWWkLZNGMK@A;UWTl5EGXTEMGDCXAUR[`F;4NF/:6FA4'21:,B>G941_ca1.I19$9[^^[M::< 4Jo&zpr[`u5fkhf‡KOiZdH011H)7PLLUDBVb%5#* #:815,415M9L[I_P;FcS`Qa„—™–Š€jlnwi„­~Ž‹«®‚v€wfŠiN}daŸY^SJIKF?>?>3:5AD95VmGx/mghjspox`:`h_odfZhZ+N84WNeKNUTNSOD>QHSWOXT<‡\dIG\VZTQ_ZUPN0RM>>8?1.8.>1+.FM,D0(0QRnlGL2A$HHJ;[fgg^U]RK(,r†ƒ†~_zWgsufUVxZ]P:Bt9WOˆkG:7-Y5M5963 "eZaKgDsG=]P/='F/  ==8G< ,!(82 [P+RV*ujiZFfn¿†~}TŒ{seˆ‡–¯‹l¦š}‘j‘hŽb•§¥¦`XSRRIC?HA<:<5H;8G8:$ghf\^aeaddfa_]YVXV0YB'SKSSOP APNMIZ(A7:?TKDtB|‚V[^3FMBddWRNOUNP538278Oi2fL;S0'F7t>zVJFJH74HNNQgVGL^c]?'.kt$„T:&_tr„pqcr£½¡„}†“ˆ‡¬Ó†“wС§£}r_^²¨Ÿ¦¥§œ_]XVKrHD?KF@>?26<6%J?hca`aZ_lbbd`bX3MS`MIBAGBQMGy?tU[€AObc€tugLBOP_TKXFQMH4I2??D7W3pnga`U7/7gD„ƒ__ŒwŒp‡TSX[^XSKDEBJei]T?7v„RQ;“‡yaHpgKC„@3›|ŽSNB5ApX.LIa,WmUBI ^TRLUYSSNPG>/34HKHQG80$+ 'V]`RUQJFMTirze‚ƒœ–‚ˆ™¨´À¨tZ{³»`†–—dn£f˜ kœ†^ZUULFMLGRSA<=?4>*$Q=?hf_jhe\P'P@N)e/IMNYISKLBJg@^]\Y[b[\ZZqwwxDjPG@E^`ZFIJV?NIAFX,_SmrpumEpgTs8…q†{™Œ‰€ˆtofg†t|v˜e76QJeZR6M0:PXm˜–ŠocnWQXGd‚gOeYImolaafl}[G84:j€B\]NL>h[^€[HX@=, <:WNHKLC6;UYsugK6FGkS+uš“Fƒn²¦”†Ž™y¡¸N‡”…‹{d¤{V[nT£™f’„xrnOIKLNRVPDAE979-%O? /5cjK$!/,J4.*35@N>^NZNR_QPMNLBBNX(e\igtsUl}Bjf{Gl_bRjeFFMQb^_DUx€~wvotSLn…Šs‘««¦¥•‡‹e }Œ~jztsmnMVi^VOFMJRU{hYwusG$`.4Gxqi†™–—v‡MWƒYZ<9Mwm@.U‹ˆ|bUfacmje?0$64DYLKJSpibb`KDL?XeXXœ›¡œÆx©uu€®¾«]¸wn|f«¡r[e¥’—•˜~|ctoSXVmTTICBB;65/G+=7Z1598$76!B )%JG?62XPMZW^]Xk^UPMQAPB;DS```by~‹u‡P,>>@gjn]glcjqINl—c~†‹Œ†tvƒy‡Urxx™‹›¸¦¤™£«…Šƒo„a|ry1V`B_S]TOZb[f†]3s€{„›QYf`Ap[Z¡^zB8!=XcOQdT%&:"MW]\A9!Efuƒž‹o³ËÇèÜ‹•‘§¸Œ§•¥–¥Î‘qc\o‹‡–œ‘–ttpoffahlRMUWPPKWeP@@"IMJBHUEA66A>69†>/mc\_VaWSSFŒmA2>^A6>"t€ˆŠ‡œ©°†sx‹‡uv}\‰‡oap}}‹z¨…¬¯ƒ³µ¡˜››‰¯Á±£x…aÍ¡–•”•¥–š™ ¥¤œœn¯¬€”³…a}Ž}y­ºybYqj]¨‰rx{˜FGOŒ€• ¥°®¬¬¢œ•žxXTeWz?M:OQf]i=WU>D7P8I=S*DOV†N¢|Fk^NY>NC4SIa€“jѶ¼À¿Ôå®t±¾Ú¾ŽÁÑÉÐÉ‘ƒ€§’”¨†Œ„‚xvsq‹ˆX‡M‘sniv[G`A=Pv>eNdefbR‡€w}NWb‚—’¡’y•² m·°˜ˆ©‰¨‰•É׸’„\YUt)\RlbqvÉÎÎÒ±ÉÏ™¦ÅÚßÝÒäÒÏÄïVvZ:ª^¢\\t8hSPŠ¡VÈ£¹Úµ³çÅáœÙãÒͨ·§²µÀ¸¶«–Š—“‡wip\‚Éu¼¿±¸´}~xyR–]NColY€KE;1Pc¤k¹›³Å¼ÆÛÁ¥ÌÊØ6²´½ ÈÕ|wm“Œ•””ªšˆ‰†vs|††~Wf‹ˆ‚v„seVV_TIOZI•€{̼š†Šu~„K _S†hßÓ°ºŠÀ»¶¯•§i|t³²©±Œ³P‘?4vnVÌÒ×y¨æéÞÙ¿àÏ ®»Ùz”boˆ­ºÎË”¸É–¡–Œ‡‡Š~ƒwz~ƒ„§™™–ž‹xwiinmi~}„r•ų˜œ‰´ ¯®Ûž–¨±«Ÿ¯´»¶œ©Ñ¼Ó˜¶²ÖéÁ©±àÀ™ƒ¤™À«ˆ¤'®Í±´Íë²ÁȧÜïçã§«Þõªîšmjkƒ~pxf±‚ça’¾¦´Æ°·ZÍ©4mA|Š5£”®i®Ò£†iœX.\N^›ØÝÕÍÍIJº´«œ\t­»§²­¦…Œ“RG/jeqÃÇÕ´–—ÁìçÛóɨ¯ÕÚÕÓ¡†Š`«_§´²­¨¾˜‘‡‚{‘Ž|ƒ…}ƒƒ‹ˆ~‡‡€nefmbk„~z€…“³¾•œÂ¼˜`žÉ¼¹ž­§½Ì­ÄÍğϽžçêÛøñÙ×⻺‘®»º´§e†µÃ©ž§ƒ¬²Ê«ßêÛáÚáþ¸¹¯Ó¡omb€P3xƒ›­“±§³¬½½Œ+uL?8¢^/‘‘‘¶©£x±qkƒklIUUy±©Ê¦¥›¤ž—¢ªs’¡Œ§¦©µ©•OOŠFŠ|w`XÉê½É|þþú§ùÅê€Ã³¯Æâ¶©v©Š°º‚¬¼€³Š‹ˆŒyx~…‘—”›{ˆ€qvzkzmh}€€€~·¦¬¢¨’­Á·«é㯤±¨­¹¢°À¹ÕÏþËèûÖñþþèôŸªÂ²ª³¦rqƒyfrÉ×ÈÅÂŽÐøþìèÝÚÚÙÉÌÞôÀ”¾²©AH*Snj¸“ygHz•}0R>*Z…w£\ÉÓª`U~Z˜t•˜—o­›¬§ˆ ›Ž¦Žm´‰¢¢•ª«¸Ã­PƒO\bTrg¾½Û¾vÝâÛìþ³ãœáѳªÀÔ®b…žÁ¸°¨´²‰‡ƒƒˆŠŠ{wz‚Œœ’„yŒ}r`„†^k…ƒ††~x|Š‘ÆÓ¾¶À'«¿·ÏÇ‹Ýç߯ÝâìëåæáóõöáìýÍϾز¿Î²ªih~×ÖÉããêѸ۸èëÎáÓîÁßÝÅÁ†s|´pK”AfV\5X_LJ†Šk–vl\K@'7#E–JŸ»g:—¨±‰Pª»¤†V­€Š‡¤z²”ž´©¥©®´»¬igZnTIUk‡åÕ³žþéØ¿å²ÒÑ»úì’œÃ²ÍÆ¦¬Áùİ·³…‡Œˆ†”v†“Œ‹‡„~t†ˆmP]h|†~‚ŠŠ}‡¹¨‘ÎǾÀ´Á· ›ÉŽ·±íëá¡£ÉþúþðÌëìéûþúþÉÏÒ×Õáïâä®ÛÚì;ÐÙÊL¶¨¹÷âëשµ ¤’‡«·a™kze‘ÊÇLSgOMJ‰Œ™‹€j†‹‚`D„} ! Kk†jR}x“hh^a¤Ÿ•‚¬¯{‚m¦³w¯n¬ˆ ¯·°«¨]\gWi`njqQqkl¦ÉéáïþݶÞÌ©Ðɨ¼×¾¼˜äŒ§ÍѶ±¯¢¬­¬‡‹‰„€ƒŠ——›‰‹Š~€†r‰y`jˆ†ˆƒ†ŠŒ…°ÚÀÊ« „̸µ½Æ´¥É®ÉÀÊÁëïÜÐÒúãÝ÷þÌþþþþþîþâÑÃÏÛÁ³þþïöþþðÚŒììÝÖºÄùÐáô£¡¢§»Ä„¨§?ŒpVkg"Nf’g]Ž@‚k„`Ž£d•gw(K3M7fN‰eEcpmbhX•¡›e’œ}¥¶Àa’¸£º¢±¸ª²§–opsQQsy_fDqmsµš¹¯ðþþ´¡wiœ±½»™Û¨ºÍÊî“°³°£‚†¨‰€ƒŒŠ™¥ŽŒ‡v‡ŠŒƒ“˜‡‡‘Œ‰†²ÝìÕ¬¸ÀÇȽËÓØßœ™·ÙõñòÑßöðûþþûþþþøþæ¶ÜÞßÔÞÅÉøþþþüùíüÂмñøúÈ߫޺½©¹¸Ã¢×¿Öþº©§u§ˆ³=VvWC`|wž|e\†~‘›^_BB8Rl%bknNZTX_e G~uµ¶x›¢¼»º™¬¹Ê¢ž­œ“’]Ezƒ†ˆvjÇÇ~èþþ¿ôÜ™¦{ƒž…À®³ž¶»¸±¥¬È·Ä«¨¤‹–›’‘—Ž™šŽ‚‘‡‡‰‘’™‘›Œ‹‡°‰ ¯£yr¿½·³ÀÉ¼Îæ’Q÷þýáþþÄÉ«Ëñþùþ÷øþþý þÆþØÕøÈÏ½ÜæÚìÍþèáúþØúÖܽþÃÓÕïžÀÂÇÌ»·Õ®‘˜þþÄ¡o“}´…¸z«3‘…z"qŠ—‰3†^7&\;T-X=XmH .uhUim+B\RSH>WDabU@F G9 rt[wksœºÇÂʽ¿¸¬³ ‘˜›”{UxadBm¸¹¡þ,÷ݺÐp¢¬¸¨Õ݃нӿÎÅÉȰ¹–›¤¡Œ‹››—«‰–†Šˆ“„›‹“ŠÉðìêß‹^~©ÃÕ×ÚÖ×âÐÙÝïÜþþþþøêüåýôîæ÷ÎмÉÖáöûþþúùøõùú÷æâüþþþþþÀ¬·ÝÅþþõÊþþþþôí­ÍþþõþâÛÔÅÞÏÚäÓfÊþæÝÛñ¶p–~¨€¢†qg ‰Š‡qžOS&.ZBG5?]_4UTkr`F ?+„BakkfŸ³¿À º‹´¢²¥¢©¥ ˜{d¶öîþþôÕÍŸ¬“ŸÂÓÔÑÉËÝÓÈÁ¿½®¨«›˜’™”•œŠ‹Œ‚ˆˆŽ¡ œ¦ŸŒ×èìÎwŒŒÃäÓÍÅåêêÐ×ÛçùþþþþüüéãàöëáÁõëÞ×ñØæÞ»Âìêþþþöþþ÷ûþüû¼ôòþþþÏþîçÇÊþþåÛþðþþþþÍæðÞÝàþþÝßîéáëìþõþøèÒÀ¹³°­_FÉb„ek•`k@m•duÐR~¢†F;8XgrKB€4gjN.X Fg‹›€½¹®¢µ¦£Ÿ¬«š’”“g`³¦ÂÖÍÀ¬ªÁÃØØ²ÖÞÕìËñ­¸´²­¿ª”’Ž¥ˆ‹Ž‹‡Ž– ¦–Ÿ‘›•°¥®§ž-µÌäáäìèâæëÓçéìÚëõùþþõþþûîëÐëõþþåÐìèÜÇàá¥×Ä»ÐÒ®äþíþþþùûþþûôúþþïÌÁþþþÄÓ©Ýòþ¯Ùùãóþþþ÷ýð•þüþþë×÷Úäôæ¡þÖAÞԾľ̫sWœµyz`j…ls\S‹p|@XE86HK8jƒ’YGoYIiHLR(9JGPu›±r¥¡¯ž—™„‰Œ‘UqÀÊ¥Ù›§‘ ±‰“Ò¹ÏÏ Öܱ°­»¶¶³¡‘ˆž–—Œ‰‘‰Ž”‹”“šš£™¡œÔ‹ŒÃ³ÈïþôÚöñîêìéïõêøþþþþþþþþþðëÜïñüþþëúþþ¾ªåÝòÕäØÍÈÄÄᬧ¥³ÍÛãÜâöþþýþþýþþþþûø÷þþ½öþåþ˾¼åýþö°ñÝþþkþíþâþðùþóþþÇ·øþæãêâÔÆÏÓ¶±š¡^P‚Ž…fsvqI_baoNTBFi-|[—qdU1H_l@o^F HrWŽ©«¥ˆ¨¤ˆ£œ’—Š~‹Ûî ÒÆÈ­Õ\¯ª¿¦×ÚÓ¡¹Ã¹³²´¬µ“ª˜–’“‘Ž‹’˜–›’›¤—›’Я–“ÓÆèèíôûÝ÷üñÝðÚþþõúûþþþþþþúþþþõîïúùýþóçѳÏÞÝàÐËäéíÌÖÈëßÔÕʵÙÐÍáïÔþþþþþýüüü÷ýþûþþþþþþþþþþÞÆÊæùþÐþ©þþþíôþáòøþïþþîuÃëþãÝÞÇÁÅÇÉ·Ã÷ž”‡{€6w™8j~nr^}RTpQ?BN2_URGTb2[2faV!an}0£§™ˆ¤”  †‚Œ”ÌØÓ̹µ¶{‰Œ·®¬áؽÒÃ˸©§µµ¬¨¨­”•‹Œ‰K›ˆ¡‹«£¸ÜõþþþñøûþùþþïöÌúþ¹ûþþþþþþéüûöþüòíøâþöþóëÔÏàâÑÖÝרæåæàðé×ÕÏÓÌãÐÓåØñþùþûþðþþüóþþþþþþþþþþþâðó°þàëõùõþþþüþþôþþþâäþûüúÒÙÆÄÕëÒßÃÉÁ®¢––…4z@x–œqkd‹’NSU`;QOCGd0"^_q!HAlTpfbidrQ¦ ‘™˜‹”‹ˆ–”‚ŠŠ€…ÀwÓÖÔÉ•¬ ›s¡Æ¶±«|›¿·³·ºÈ­³¬Ÿ‡ª˜ª¨Àþþòþþó÷þþþþþþþþþëþþþþþùþþÜþþüûþþþô÷ñþþþþÝÔâààáÝÚæåèƒâéæèÛÖк×ݱÍÌÚ÷þþûþþþþþþþþþþþþþþþþþþÐøíìÑþåðÍþþþþÆöüôëþþþÚ­þþþééÄÈöàþþþÝçÙ¨¸º¤˜„~s`T‘|‹†dˆ¯ZoVt^v(X71Z_Pgss0¢‡’—Ž„’ˆq…„‰ŒàÅʶ²•š{‰“‰¡¦©¸™›³»Â½ÇØ»½ª‡›†œލ¥¥þ÷ñòôûûþþþþþôþþòþñðüîüþúþ÷þþþþþþþþþïþþýþþñßÜÔæôãÛèççêâÞÙÓÒââ¹ÞÙÖËÛÕüþþþþþþþþþþþþþþþþþþòþþëþþÞíÜÓ¥ñþî·þþþþþôþÓÆþþþþÍÍþþþþþõ÷íåÑÇÎî —‰‰C0Ju„t–¦…[ƒx~cC5<2 1+;U.idSpz“m‘teb‹Vhƒ‹s‚}‚Ïã»ÈÀœ ƒs¤wž´Áºt®¼Ç×й¸˜€«Ž·ŒðëþùáòíööþþþþþìþþþòþþèëþèÝþñþþþþþþþþýíôþèþþæíÏïãü÷íÍëÚìêáÐÒÖðÕß¼ÑáçÍíÖþ÷þþþþþþþþïþþþþþþþþþþþþþþþþíïõöþ›é¨þþðþþþþþÉßïùÉÞÑúþþðþþþþþâë×ζØÀ𡤙ˆ‚š@-&z[m*M~6`…W5/DXKs¥’| ck}~}{ax‡‚‚éÔ±ãȪ›–˜™˜¡­Í|{¤ĽÎ¹›“–z®–tñåôðßðíîþþýþþþþþûþòðîòçþàûþþþþþþþþþþþþþþòþþçáÓÕçûéçú÷ÙåàãÚÜ×Ö×Éçßþôþþþþþþúþþþþþþþþþôþùþþ´áñþïæûÔþþþþþþòòüþþþðáæçÇÏçþþþþþþþùòüøùÁÑÆÄÆÅ—’…w€—E[ >{3:y2Xcuˆ‡Ž-5W3#ZZV84hWU:T\iƒ-KBvzZ~yq{zÂØ±Ä«®¢`£f‘²ž¼°‹º¶­–ɪ bbÊæâÊþþþôþþþþûþþûþøþöòïóþíþþ÷þþþþþþþþþþþþþþùüþþþúßààÝÐÛò÷ýáÝáÜâáߨÐÎÀäùïÒþùþþóûþþþþþþþþûþþú÷þþ´ýòþþþäþ«þþóôïþþþãÜþþÖþþþþþýþþþþüøÞÕáàÏɽ±–Œ‹‚ˆ¤¢hŽeŽ~i8'€{SoDxoBOCVmuiQ#dZ2:W .R~M‰?c\ywv‚~Á¸Á —{JƒŠ“®¶¡r›¦¶Ì™‹ƒ‹—Ô½pnúõæüþþþþþþþþþþþüøþþþþþþþ×þõÚÓëþþþþþþÙþþþòòóþÞâáË×ìéààîâÞà×ÞÑÜÐÇËÍÄþþü÷þþþþþþþþþþþþþþþþþüþþþìíþþþþþþþþþþþþûþáÜþþþþþÜðúûþåµÁ»ÄÃÀµ½¶´¬ zŸ†¢€Š—–sš’Œu‰~q’|„bX?wu|?q4 7ˆ€Gx€}]g€vʹ¦Šwr¦x©ºr­ž‘¤¤ ŸŠžŽÏ®âåöýþëþþßþþþþþþþþüþþþþþþþïùôþöÛàûñþþõþþþöôïôôþôàÞáàääìèþúíåÔçë÷çÈÛÞÑäËýþà«þþþþþþþþþþþþþýþþþþþþþþêûþþûþþþþþþüþþØþþÈÔþþþþ÷ýøöòìèØÅÉÑÄ·¬¤²²´¯”¨¤œ¨”›‹‹†…~}p–brX‰chhhc‡}cqWf&TNHJjZaRaoqomzy}©º§œŒkcL¢¯Œ«œV±s“Ÿ©Ÿ±×ï°åôÞäæþþþþþþþþþþþþýþþþþûøõóúÕæÝîþþýúøóûùøñóöóíÛâäïññöøóìàçÑÑÚäìõåÔ×ÝþþôþþþþþþþþþþþþþþþþþþþþþþçòþêþþÎÀñþþþðòðë×ת¼ÓÌÀÃÄþë·³¨¯°¬¤ª£|iŸš”Š„†skƒ—uxV|~ˆzR(/^T.0rt}=ev \fp?]5r‡Ž£Å›€iR_zŸ–†¤r˜Œ–œ¥[«ßåíäòêäþþþþþþþþõïïúþþþþþþþáÞûë÷þþæâþïïîøõñõåìøêçÚääàÝàíïðôéáÜÔÝåÞçèÍÔþþþþÞþÏæþþþþþþþüþþþþþþþþþþþüþþÅÕÖ´ÐûþðÞìÇÙÊÑÝÐËͺº«©°¿º¨¨§¥³ °¦ªSjr œh™•œ•Š…„kRX_n~Y\HLu{w‡€uqE{%q?0g‚‹f…ΠÁŠ0d8b‚¨¦€q¨‹Ž áóÛ Ñéï¦õèþþþþþþþþþïíþþþþþþþþþÕˬêîþüîùúîåèóðùùðëðéîòäåßÛÞðäñûæ×åÜÝÞàãçèáþþþþþÈþþþþþþþþþ÷ïõþþþþþþþþþþçüüþþþþþ왪þûþëãÙÖÖÝ־˴À´»©¦±¯³­«©¥£±´©¨ nž¥›‘ˆž™€yNqb=srioBdTYQ4ljBXF>ltVToFb&Cc~ƒgÇ’T'dƒ®§¸z¡’·‰y›Ûâ’ïÞãèìõþþþþþþþþþôéüþþþþþþþûæ­ÏäøòïþñþÞìäëîôþìííñùþêúïàâáììïæðçåÜíÞÝõåæøþþþþþþþþþþþûþþûþþüþþþþþþþþþþþþþþþþÜþæ±ôïãþþåÅßÉιվ¾¿·³¯±¨²¨¡‰§£¥¬•›®¦£R¤—’„‚Ž‚eBe…j‡rE|yJj(isfU`flmAh~'€G]uƒJ‡GYbc)yÊvĉ£—€“¡¨¯Ÿ«ÕÐØçðíôûõþþõèþüþþþö÷þþþþþþþþøôÆÚôöóþþäèäèãî÷þøìì÷þþþáùìñìôîÞíóèêêöêêêîêþþöþþþþíþöþþþþþþþþþþþþþþþþþþþþþþþþþþþþÁÕÓåáþÛÔÓÂÁµ·°¬¿¸ª°¡µ¤¸ ¡£§¢¬² ¨¢¢šŒB”†yŒoujzpG]…hVr …ka8vZ{`li>b#FgEKbtˆE“’swµ ¤v‚—–“©®š­¢éì¬Îååäèïýþþôþþþþþþûþþþþþþþþþþù÷íûþöåîæïîéæñûþüõçþùþþþöúêðæóííéöðéëæèæïéëìþþþþþþþþþüþóþþþþþþþþþþþþþþþþþþþþþþþþþþþþü½ÖèæþþØß¸×εº··¶Á¹œ–§ª¤š­²¦¶³®¡œ‡––’ŠzŒ†›„ktcxCgW5jxwˆ}g$mdVipIZH]3=sŽd“l‘´“‚”ކ¢–¨œ§¶pÊâÙÇÄÕÕæèìëûûþúþþþþþþþþþþþþþþþþýÈõîþýúéèëøùõõïùþþúþøþþþìøçëðøùùþôþéãåíéäâÔÙñóýþþþܾþ×öþøþþþþüþþþþþþþþþþþþþþþþþþþþþþþúÞÑïüüÊÞ¼¤Ñ¼ÉͤÀ˲ª¬œ¬¥¨²Ž ;»Žª¤£‡…~ˆž{Žgsy_kur†n‡Œ{dzdzthJx‡b€¢y‰ƒdš¢xx{~”tƒ™‰—Ž™¤Ÿœ·ÒÝÓçáùéêéþõýøþþþþþóùüþþþþþþþþóïúþþ÷þþþêóüüþôþêþþþþÝíøÞêúçòìöíðèþþííêãáàäãþþþüþþþþþþíæûþþþþþþþþþþþþþþþþþþþþþþþþþþóð¿Ä¹Ý·ÇÐÔ¿³ÐÖÇÐѲ¦¢«ž°°”ž®ƒ‹}C´²i‚epxqW*xt€{‰ƒ‹{j{½>{~€x€Œ …ªe„‘sŒ‹Œ›™„ƒàØãÙÖãëéëïöùþþþþþþþöþþþþþþü±ÄòÛõñþöýþçðñüûþòòûþþþþûúþßõçâñíðî÷úöíåæààÙßèìñõþþþþþþþþþñäæþþþþþþþþþþþþþþþþþþþþþþþþþþþÍמÕÀȼÓß»ú¶¹˜˜¢”¦b›¥¡¬tˆnž±¥yswp]al:lt2`d{y?€,rmp‚ixf•r#PHœ•„šŒ‰¢.œ¡i×ËÔ×Ýáæþ÷øûý÷þþþþþþðîû>þþúÍíñûñìýþþþýâõôùþþþöþþþþþþþþØóéëíøïöþþñóñçÞãëãèæþùþþþþþüþþí[êøîþþþþþþþþþþþþþþþþþþþþþþþïš±¿å³Ç×Ù¥±Å°™‹›–œoq§šš4‡Š{†jŽgyg{wx€yw€[l^]RkC{‚s†arlAfTtp#‡˜–˜‘°™Ž›‚Ÿs›¦ÄÊÑÝäåþñûüøþþþþþü÷ýììðãþþ¸§ìï÷üëë÷àþþíúøþþþþþþþýöþþþþþõòïðîòþþþ÷ôõñâêëïæðþþþþþþþþþþþ¡éÞéøþþþþþþþþþþþþþþþþþþþþþþþþ¢¾ºÞßÝ¿³ƒ¥ ™„{lj†mŠuyŠc“Švjh]ovqxdl2aŠ\’‘t]‹‡‹Šu[{oYt}¢––˜˜”–u“œ–˽Î×ßþçðóõ÷ùõû÷èñþýúwÝÆþ龺âÙ׿ÔêþàÐþôõöýþþþþþþöøþþú÷ùõóø÷þþþüøõïõøêäëéî÷þþþþþþþüþþúþÆøèþ÷ýþþþþþþþþþþþþþþþþúþî“ÅËϪ¥šgd„¤JŠˆ„•”¦\ˆ‹ˆhsqbfvt`u9&Š€„ly‡ƒ“‹ht‘Q‚‡—ˆ¦ §”£–af‹³—y“’“› °l™ ²ÈìçßíñøîåáêðøþþþâíÞÝþõòãánàéîˆøþüïþÆýüþþþþþþþþýùñòñõèþþþþþöïññõíâåéåðþþþþþþþþþþþþð™ÚÜçûþóþþþþþþþþþþþþþþþþýxf¬¨–”¢’ˆ™F€Ž`tŒv\‡y‹ip}g‹mw…zƒu#oœ‚y`gŽ…pghŒ‚‡|œŒ ­¥œ«#DšŠªÇèãõèééèæîóõòæòêööãÆ´ÅÊåñõðùþüôþþúóðùïùýþþþþþþþþýöõøøïóøøúúðõù÷öüëëéçæþýþþþþþþþþþþðþ÷ÄÒåþþþþþþþþþþþþþþþþþþ…­¶—y\{™†˜ˆ˜|s`ƒ“rgu‚qkh}O…†~f–n“c|i‚^Sds[ƒh‡›£¢¨ŒÒŽ~‘§ÞçåôíþüýüþþøæÛéøñóéõ¯Îâèßéú÷þâþþðþùúõéõìõúþþþþþ÷÷ùþþþüþõþþ÷þñöø÷úöþçìëÞíþ¸ûþþþþþþþþþí÷ªßÙäþôþþþþþþþþþùöþüì¸ã“°7oަµl‰Ÿ‹ŒŠyŠ}m’qYˆ…pyW u”|@SŒy˜ŒwgyQƒŽ˜—‘‰‡¢Œ®Ÿfáòëúöþ÷öþþþüðåëÞðé?äÙ­½ÜªïÔþì¶öèÈþëóíãòöüþþþþýþþøþûýïþþþþþþþûõþïòäàêìñìòúþþþþþþþøþþþÉðÄòÕûþþþþþþþþþþþ㊑­yœ’qª¤•‹ˆ‘yv‘•s‡wwx3uZ‚r€Ž<m5dˆk™Ÿ¡•’‚…ˆ¨“ Ý®ÂâëèàþþûöþùðõöÜâáÙÇ÷ÔÎÊÕäñ´ðæ²æî³ãïëìùúúþþöùûïñíøú÷þ÷þþþþþúõùðãèïâæññòþþþþòþþþþþþþþ¾ð½ääþõþþþþþþþþïðºajmz‘‰Œ§Œ µ­’ŠŠŽ…€–”€€rqfnz{7‘n|o+Œœˆž´p|‘—†s#J…€—©·×ÑåÊÂÂ…þöøåðà¶Ù¢åßË®âÜÞÇÏãæÄÒéæÏÐíÚôã÷öôéþþþ÷øðþþþþþþþþþý÷þùóðûÛÕèÌåôõôþþþø·þþþþþóþþæÃûÀóäãýþþðüþûâæèàRx›”e©Œ—¡¤Jfn†‚g‡{~o‡v “„uo®w‡ƒca}‰†…–Œ‡‹‡“lwyz‘…”””¥¨¶ãâÇ«ìºÚ¿½¤ÓϹÆÓ¯’º íÙÔØÝæèÅÒÉòçàÛîþþþþþþþþþþùðûþþþþþûîññòöíöþòèàùûüþþþþþúþþþþþýÊëåÐÅþðÉßâååõþÞóâÝÑ‹[xsv¥Žœuµp{~Ž‘ƒ…dw—2€1¡2@“ˆƒ…S¡Œ‰{ž”‡‰\x‡Œ‹{}y‡Œœ²Ÿ¦ m¼Óî©§¬ÌÈÆÂ¸ÄÃÆåÙÙÙ«Ñ¸ÖÆ¯¯ÎÉÌÌÙæþþþþþþþþþþþþþþþþþ÷ÍØåî¾õëøüþóñóþûôêþùþôÒûûûúå˸ʺ»þþËäÚêÍÞÚã„X‚y\‚ˆŽ¤„€‡‘LJSˆ‰ˆ^‚‰…ŠŽo:“žš‡›Žˆr‹‡„‡o]Œ¬™²¯¿½Ï©¡¿Ë–ª­´¶³ÉÁ»l®­¥µ¬®“­¹ÁµìÜþþþþþþþþþþþÜþò½ûßëãþéôðþþþêìøþþøòõþþ­çýñßÕä¾£°²ÊÄþS{¨ÊʳÂàÖw{›ž¤Y€~ƒ”€Šakƒ‚‹„˜Ÿ”Ž™’€€¦žƒq_—†hW€wk~~Œ‘ޝŸ¥±ª‘•œ’®™Á¢ ›´Áˆ¹—¨ª¯¥¤¢¨«·²åëþþýþüþþþþþŽþõ­ÌìöîÆ×ÖÊ«ÕþúüîùþþúñôçØÌµÇëÚÕÄš§•®Þ´ùúÁЈ@Vj€¥¢«“ay‡†j‚iˆ‹‰”‘”ŒštŒŠ˜•sd”œ»}†ˆo‚„h…ˆˆ‡Š§¥€€®“‰Ž«‰¬“¬­–—¡Ÿ…‡–}™«¤¤ž ³ÛÜêèÈÎþþþþîþþþþûëïæñ«¹µÌÅÕµèõ÷øøþþäÚÖʦ®ÔÔÙÐ˱¢ª¢‘Ö﵉þþþ þâųT:pp “¨‡u|j[|…v„’‚zމ¢ˆˆŒ…™°›•Œ{½«…Š…ŒŠd|ˆ†‹‚•“›Ÿž¤xˆ†£ŽŽŠ™‡‡‘ބЧ©s“›ª²•»ÁÓÌäÐøà¸õçäâîžÚÙÑ©·Ô¾±ËÍÆáùÕØÖóð³¢³™Tº¢ÁÁº™¢§—šÄä†þþ6þäËðŸcK9$&„h ‰RhCNy•‚ƒ‡‰‚‹ˆ‹‘‘Š…¦µœ›lsp‹…‰|wŽ“’Œœˆ†Ÿ›š–£œŠˆ‰ˆz¤›Ž}•ž°²¶º¿‰‡¿¨Ì²»Æ¤Ï´½©¸›­®’¹£¤¿pÓç¹ÍÍÒ°° ˆ“𧝷­uƒ—¼ÃÅžÑþúàÒáÕKŒ’~­ysjp‹‘>…nŠŠ>{y ŒfU A v™—‘“y‡‹‡fyŠ‘‡Œ˜‹š›{—€“ƒ™–…–†…ƒ„zŠ¢†s™ž™•Ÿ¤“‘®­ž¹ ¿žž¤¤¨«² ††“£¡’w»ÈЫ ¯¡¬­”«‰«¦žœ š™Œˆpµ£™›þþþþþâ£˽ÙõÚÉ©\˜wó†o}cƒ“h}‰F•yŒ‰Ž‘u|.–{ŒAhE‰¶dˆv}‹`„€d~}‰…t‹†‰ˆŠ•„•|Œˆ~“’’†yxfœˆ“™•–y —§ •‘“†£º°·ª©££ ž—}š†„‹kq£Ÿ²¨­‰ƒšžœ« ™Š®‹ƒ¨«Í¼Õ¶þþ÷ÞèÚÍÜþñÝäèÑÍèã%epX™†T”l„x•q k¬~“|Œ…_J~ŽŒ’‘‘ŒŒ…|g<€€w~x†w‡†‰ˆŒ“‘ˆ”’…ˆ‹’”™~”•x—e“ˆ•”‘ˆe‘§…š—“—›¡¥‰ ‡ƒ˜ˆŽ™•“€•j™£«¼¨«©©i’“’)yˆ“‘˜v‹š“…ýþþÛ»«Þ×ÇÍé×ÐÓâÚÖâ£t‚x†«€1ŠmzŽ|}_^„Ž‘Œ”suŽt:2A”‘’„šš‹‹;>Šdxz†z€Z2gq†ŠŠ‰…ƒ‘„†U‹ƒ…’‰†ƒ——™–™“‘ކ–hŠgo•š—‘’‹¦™—“‹…–„ŠŒ•}‰s~•œ¢¡¢£©²Œ”‘|KzBR„ƒ‡Œ‰²ð®¢›«¬­èÙàèºóéÛÞ×Ë©ags–‹*‰|m‰‡ŠyƒmˆI‹„tn€SPŒŒ’“Šš›šŒ…,Xt~j‚Om†~~w…u‚‰‰‚€„oˆ†‰„‰€Ž}’’—‘‰”•tl–|Ž“‘„‘˜›‹“‘ŽŠƒŒs‰Š‰b™œž”z›“‹‘—¨ ~‡{|y¤†±Æ›¬§É©ÔÀê·´ÁÃÝÑÔâÈMiŽ—Ž‘„v‹‹”x„?|‚‰q’zU3c„€€zŒ U•ž¤|}x‡7]r€xr~€†k†p’‰U„i„}€‡~‘}‹„’Ž“xuŽˆt€’kЇ‚}1xxŠŒ‘‘x‘„ˆŒ›Š›o†’†š›©m¦‰[hyk¬†¯q|­·°¼ÔÁͯùۤçãßà§Zu–lu¬;6Š-Š;}_er|AQ<[Žˆ‚•ˆŽnu‡§‡—z‰„ 1}‡€ƒ†„‡‰‰y†~ˆŠ‰ˆz{t†x‹Šˆ…ˆ‚‹uo‡Š‹l_h|vj~“€‚‰†‘ƒ”Š€“ŽŒŒ•—“—ˆ›•x†°“‘‘uplnq›}oŸ’˜·àÍÔÀ¶¶¼êîíçáÌN™x‹tJjxp-LE|a‚Uq‚‘ŒŒš~:}pt„ˆ‰”ƒzm‚e€…x„‰€€‚ƒ€ˆ†Šˆ‚‰Š‡|„{gHz{pu‹jˆƒ‡suvnqC rzˆ„x‰mqpƒ}‹‡~‹€ŠŠ„€‘‘šš²” Zz›‹[VašÑÅÃàå½ÈÕÞÔ¨áæã³?~to{ƒ}‰n™ˆŽXuQX/}8]H“bމ‹‹v~‰zd{ƒsƒxn8h‡–c|~†bˆ‚}~}‡vˆƒjŠn!}xyy‹xe*}uzwpVˆˆxz€~……ˆ‡‡…‡‰‹ˆ–“}‰‹‰‹’“’–ª¥¶†gsRn‡¬™×µÊÈÛÔÚÚÙàÎÓ¿Îhv‡Œ~9lfcŽ[w_Erxcl%-[]y‹‘–’›p"w…ib„chId†p‡–‰q‰–££¦©šwwAqz~o„ve†t…tyduƒd^|^yuVnx|zvƒzpp€{€‡Šlƒ„‰‰‰’—”‰z‚ƒ•ŠŒŒœ”»É°«ˆ–4L On†”°µÙÀÈ¿¾ÊèÖßÎÇÞÆ¸n}Hy}„6€‡€MiVF0XtKšmo\€Œ{„}y€;}y‰‰˜—štªž¡¦¨šeprvƒ…‡tiU_€x||…~vˆp‹xhŠŽ{b…‚}†‹‡‹”„‰qˆ‚ƒŠŒ“¡•¦Â³È°Ú–±‡…Š»À³ãÑãÓÊ»ÁÍÜÊÓÀ~cmtŠŽtƒq]:neZ˜LUzn|aš‰“3c}&}zQ…r…ƒœŠŽ–™¥Ÿ¢¡¦¤œ“‘T~.†y|s„†|y{‹sn’’…‰„}ƒ…}Šw}G‹‰€˜œu¦¯þ¸ÖÉ”¨À•´ÍàÈÓÄœ·ÐÏÈš¶†‹P‡Œz‡‚v&n…~x‚|}¨ƒƒ‰Žl…j–‡_Blzg…‚ –¥™ŽŸŸ–Ÿ¡¦¡’’w{u~y~txƒxtƒu~‰‚pyŠ}z“{}€|‹xƒŽ„u‚ˆˆ+}¯ëþþÇ忪¨¶³¸ÌÞÊÒ¼³ÐÀÀ²§ofˆˆ†Ji‰wD„v†‰“‹l#´Zsn€vƒŠ‹†Œ‰~P|z‚m™¥‘„–šŒ££¡ž•’™ugy|xvo†…|ƒt†}fb~r~i~oo}…u„z4‘zŸ£òÙËѾµ¿»É¶Ïȹ³º¢©­Å®»}bm‚3ƒ€%UsxzŒ‡Xah3’I…yHy}…„Š|Žpˆ’yhrxx„¢¤£ˆŒ•–ŸŽ‡œ¤ƒ‘ž’šg^asi{zZVr}†…ˆv{}xŠ€‚ƒ€ƒ‘1ƒ‚}~ƒ„nvrŽ„‰ƒŠà×þþû›ðÁØíÑÄרµ¯¹£¶Ž³†Juˆkia‚„h9v}M„y‡0zZŠ)‹oŽiwla2uŽŒ…|kuM5no„X‡’P‹‘Ž˜‹—˜žƒ…ޔЖœfink{t}x|^J†‰qr`‹qp_|‚ŠŽyw‚/‚k|˜‚¤«¦ÑÚÜÒ÷ØìÜëÙ××¶˜x­±«@_‰…oz{€0‡‡†ˆ`xV‚fm}Œ{iiqHC Jxn"L‰Ž‰ˆ}…g{‚%‰Š}€ƒŒ˜œ£’Š‚Œ‹•±‡(tmo|xhvwonbƒzr]ƒw`‹t2jfƒ‘’„‡ƒ‚€‘‡|}–¯ÄÏäÑâõèÞïÐÛÙ€©ž¦‘e‘‡Š}‚…„y0ƒ‚z€‰z„rZ#ˆyƒ`WD|‰†l`Q‚~†…wzZsŒnŽŠZ†xƒ|‰|’~^}€Š‘•’˜“‰’ŒŸ¢›šprwn…`fMrwˆ‹‡VowBorvvobLkwŽdƒx€wa€µˆ:wļãîîêääâÙÐ¥——™•“„|ˆB Mƒ)A9…*‹‘•™•Іo„‘š~„ƒ‹Spnu„†ˆ‡uvˆ†‰+s…†‘‰pp†NjŠŒ—’™”’’“ˆ–“¾Uhzwryƒ~tn~ƒ~Haxto}prmˆ”‘“€JSUGziVžuÙܺëâÚ×ØÏ©šr…UyZ…}kŒe~c…|~Ž•Žœ™u€zfŠ€ž€PuwŠ~l9lŠ~ˆˆqu‰ˆo†”‡k•€‘{k‹FˆŽ‘Ž–“¢œž  ˜®ž˜’ŠVVyw{yrhy‚PetvotwƒPyue2wwqm†„—ŽˆŽ†‡šožQ§žVÐç¸ÓÈÆ´¡¤e†vct‰}Yp|ˆ‹„‘”•_|†g€zt‚n{ކ‡x}ylŠ‚††‡D‚ŒŒŠ’“””‚d•uŒ‚‚ddˆ‚‡’œ«¢ž‘š­§ —’ ¢x”xHD`bw|rS|‡PdmqW…ySr‚‰‹Z‚“x{H„{…—x'Y¤Ö¹ÅÙÁ¿½³£zv|_[‹…H yЉP–)‰”…‡Œ‰sJm3Z‘~JŒiazq†€~„„{ŒŒ‰ˆŽˆ’•”|Ž|ˆ…ff›ž¢˜™³¦©¢¢•£šŒ’…‰‹@T[(Bwvœ|aVqt~}0z{{hxЉa~ŠF.~CA~‰§‘¦}hÀÅ€Ô¹ÏÎʬ–£Zlyct‡ƒ‡‹‹‰ƒi‘p–¬€…{{„l€‘qP‡Š„|ƒƒ†‚…{ˆ…‡ˆ”…ˆ˜ŽY‘•z€1C[‡‹‹—§Ÿ°¤ x¢§Ÿžž”‘—Œ‘Œl@c:QkS€™hLe{{‡~t~~€z‘…u~pw‹je\Gl{™¬™.„ö´«Ú×ÛË ™$ƒ‹ŒyЇ‹’ŒŠˆŽpŽŒ‚€–ŠJ{„“|…l€O>tƒmk}‘~†Œt€‡‰†‡€†zŒˆsx‡‡’m“yslm‹f‚€jšš•˜•œžž˜Œ–„ž›‘Ž‘—“t—8+V^bOq…nyt~pxz|qy…~‰|‡{rjc|´Dj‰˜©¦®ŸÀʶ½Û¼×âºhc‚‰ˆ‰“U‚\…Ž„•—peuƒŽ‰†p„‰'aTvšŽmfy„‚Šb}‡‚D{xŒ‡Ž‰ŒŠ‘–“{˜m“|ŒŠ‰‘“œš„‘‘‘ª›’–›”—˜›«{ˆ€˜¢¤£„:R"ju—–”z‚zv‚vqw<Œ…‘‡‚vCKŒ‡”šŠiv}jˆŒudŽ…¦˜…˜‡v¦±¯½¯ÉÏĽӹ¸¨«šJ¦’‡Z¤Œ¦ƒƒD†ymuZ~w‚Žbx±‹ªŽ.‹u“y|{…z…‹x_y^^’Š“‘˜Š”›•›…q‚ƒˆyh†‰Ž’ˆŽ‘𖛣¢§Ÿ®ªžÂ ™»‘¢‚°©¾ÇÓèÐÆ¼¨_@¦˜”«xyaWjƒ…‘˜]8t—”в›¥­ÎÆÙ¸¼×çÝÍ»„¨®¯’®yy‰…††~L~nf{V²$zm={—{lJ‚n’‘‘}wy‰gu{tTx{{‰…Ž•~šˆuއx|q*’‘š™™“—z¡¡š««º£’¦€‡½Ê‡¹¬¿¸ÛàåÚü¦“¦’€„’€4€–“Œ“‰P‚µ‚h{€Ÿ›¥ÂËÌÛÞÈÛâÕã¾ Óµ«^•¦°Ï»ŽƒŠ‹ƒw…ˆ„v~’c}•bqo”Zu‹{‡w{Œƒ€ƒ|{‚MqhTŽ}ˆ…ŒŽŽŒŠ…‡xz‰‘“‹‡g‹{‡Š ˜Žƒ¤¤·©º{ÔÅÃÐͲə¼ºçÌ•¬¢}‡ ‘‡‰“ˆu{…‘‘§MŽvaŽ˜m­•¬½ÑÒ×ÉâïöÚë³ÏȬ§_—ªvª©”»Õ¸½§×²‡’Œ|—‘ˆq__Ixyf|q«¸ozx‡•ƒ|e„…†‰‹ˆ{skyYn“’•’‹…“’ŠŽ‘’ŽŒ}UtZ_d˜•«§¨»³ºÅ¸¿ÏàËÇұ°ºÍÎÉÀžž•˜ˆq‘µª{b‚ŽœŸŠj~E ž¥{“q™|œ´°Ê³Ýôß±³º·Õ¯§¾­Ñú¬{†‹…™–›•˜Š‡vlWzh‚V‰´xOL–4{˜“‘‚o†}y„~C~‚‘re_˜—‡‰•“o…X|~’”ŽjŒ”8U‚™¡º­©¬²Ì«´ÅÑäÓµ¡™žºÌÉÁ‰¨‘Љˆ‹›­~†‡Z}ˆ’’˜ˆ‘ $^dFt’Ÿ«Ù¬µÂáöà|¨ÄÈɯž¼±Ÿ—¢Çƒ|‚„—’ŒŸ†‡—~¦‘~’Œ“lmŠXJ Œ31k‡x“ƒŠ{ŠŒƒ„„„„Œš—š”‚Ž‰—w”…†ƒƒ’œ“‘„’‰'{}k”‹š¯¿Â¾¾ÌÅ¿¬ãÊÖØÒØÓ²ÄÊ’•¨ˆ±ˆŠ¦œ¢Žx£žeˆŠ©‡ƒy¦±²Á®ËÀöÄÆÓº¥µ°×ýҹ˜†”`Š–”’ŠƒR‰ƒ.³y‡‰r{~Ž~ƒ‚ƒ‚p„‚˜œš–žœ›œ”ƒˆšˆŠ…““…s˜š[Z€x…qJm¸ÛÒÆÅ¹¿ÍÓÖÑÍÔïÑÌÂϹœŽ—f˜£œ„–¥–§‘ ˜’‹|®”µÌ´«¬×µ·¶Ä㡞š»½ÐÅàÆ©¡K¶»À¬_™j­‹/†–yˆu{d–’€vЇ’ƒž|Ÿq¡œ“££Ÿˆœˆ››•Œ›“c”*9‹?ddŽ’·ÒɶÐÏÌäÈ«¿´ Ù®¦§œ›’”¤¶ ny©—§œŠ‰~D©Ö›·ª¸½¿¾Ê×ÃÆÕ´¯µÅȹ廩§À©­•‰Wg¸¯ea‘sk••’s†Š’Œƒƒ„x¥£§™°¦š¥§’‡‘™Ž›š–2D!ah#‡žfª³¸¸ÁÕµ¾ÑݧÑy»®›—–šŽ”’–°«£”𣧔¨ŠŽ•e³ÃηÐÔËÃÃÉÂ˲›±»ÃÎËÆ¶§£ ~…‚žŸkLRŽ‹‘˜‘ˆ“ƒ‹ˆˆ†‡ §­§šš§{°¤¥›¢¢Ÿ—•››ŽJiZrrm“Ÿ›®†¥“¦²Ò²ÎÙâÜ˨ÈÇŸ–›x©¤–†®Ž£–’œ‹¬¥Ÿ–•‚’…¤·µÁÈÑÃÅÊÉ¿¹ØÙ¾†ŸÃÐÂÝÚЯ«¥£*{D†„•Œ•‡ˆŠˆˆŒŒ¥©¨¨²¨«»¨¬¥­®ª¦¢¢¥ƒ‘–v¤•¢ ©¦a5¤ÏÈ’¢³¤¥»ÔÉ–’¿¾±¹´Á˳››ªžƒyŒ¤zˆ…š¢Ü¿Ã̪§Ç´³Ø´}¨ÚáàÛäⱨ¬‰›ÇÆÁЇ·ÐŠw•x|t‡ŠŽƒ‰›’š–¸°}¦°³¯š­|«ƒ¶­®¦‰?”–ˆ ™š¤¤˜‰ž{•Ÿ¨„ƒ‹­¸›R’¬ ž‡„s¶»ÆÕØÕ³µš•° ¤p‡}¢Ì²ÇÀÄÊË“‹ÃªîñÝ«»´±¿ÃáÉÍ··\j ÅÌÊâÍ·© ¥¾‰¨¤ᄼkj™jz‚‡ŒŽŽŒ”±²´“¦•»¯»±‹¬·¶ª™² ™ ™’ Ž™²Ê‘ œ¡ž¨†›lŒ¦žo¡«xƒ‹­ÎÇËÑÄÔ­¿¹­¤½Ê§¨£¡›Ê ½¤²»¹Ž½áÍðôÜÁÓ£®¿³ÞÊ’©»œ“ ¸êåîÍϺ­Æ¬© ¨—'<Ú•ŒšvcÌX1st‡™ŽŠ—¼¶·u©«­²¼®·¡‡¼¥¦¿¥ ’¡¥šg¿³º²©–‰‚$‹”mQoŠ“ux~¼ÀØÚÖÃÅÃÈ·¶´ÅÃÓÈçð•ºɴ±·ÉÉȼÉÏÐêæÖåà¡¿²¼¹ÕÎÁФ!¦ª4äæöîÒÐÎͺ®»­¡€¯¯¤©‹Ì“z™Euw„‡Š¯¯¨›’ “©²°¹°{½¢³º¢ŸŸŠ²ª°»¦¶®•šq`ŒP[”Ÿ†wŠz‡±Òì¸éÐÛÂͽÇп½ÌþâãªÊÎÔ“ÔÉÁÜÝÏôïèÐÂÕÛö¹¾¾·Ûäη¼Œs€Ž­´²ñÔìãèÚÚÖδ²¯¥¾©¹Ô»‹”µ°šŸ¹©Vwp‡¦•Ÿ¦ž›Ÿ¬ª°³°»ÈÇ®¼¾¸Á¸Âª®·«•¬´®º¤­]‡T]™uRPÌì±äþÝÛìÝÆÛÝËÏÔÌþþøàØÉÏéÍÏêãÒàçæçËÛÈÓ¨äÊÛÏÞκ•ijŸ‡ŒͽÆÍÜèâèìñåñãÓÍÏ´®§¡Žþʬ¡”—¬¦£J…o’‘ž›­Ž£¢±Àš³ª·À¡¯§´¯¹¶§¼­®º¹¶®®†b ˆUŽo„fQÁÌíóÜì÷ùÜÝêçõáÓâðèççÙÒñÞêî×äÌÁ×äßÚÜáéÏ®ÎÄÖͼº²š¬¿®¢x}´ÝíÝÕÇÊÌàëéÜÝâöæÐÏ®ÚÙŹ½”7Xö´ªÄ²©°€‚ol½“•—™Ÿ¹¦¾¥ÈÍÆÕ¯¤·µÔº¾Á´ÀĶ”£µ¨j–™’’F]!¼ÕþöêòðþôîäèÞßÝâ·ñ÷ÌÛéèóôï¶³ÝÕèïÂáÍÇåÝëËÅÐÆÖÎÈδÚ³°­~ƒÛäëòôíÕéäññÚèðàæûò÷»Í´ØÉÔÇÀi‘ì㻞Á‚^K{rq—–Œœ §°ÊȵÄÅÎÑÈ·±ËËÄ¿¥Áµ©¦Á¼¸§±’œN2k0¸ÐÑþþúùùûêñôåâèíè¦íøçâðõþþçÏ÷ÐÙçéöëÞåÍäÃó§ÊÚÐÖÑ«¾ÅÄÇïp†»®þæòñéâÒõõéèþåè»ÒöïèÆÇÈâßгª¶w=ˆ‰ÊÒk¢…±cqls£®” ©¦¬·½Â¹Í´º°»Î¿ÂÔÉÁ®Ç±·¶¼º³®–ˆ~cEb,iµéþçþùýþíþãõ÷ëäëåýþûúðòýøâÖòôßÇÙÁÖêÜåÑÕ¯âÜÛ×¼¹„ÂÎÆÖȪ—yäÀþ÷öïøãÙþöëçþóÛêæáØîóÄÒº·ÓëæãÝÀ¸¹‰ÚĶ¡Â¨»›Â§e•¤£®¬¯Â®¶»­¬¸»·ÆÀºÈÀ¼»Î®¶¯´´•§£d¡‚+Wb¥òñþþüþþóëñäþêòíõüýâñôóþê××üûúÑÒ³×ÃåèÚæ¦ÛξžµÔ¼Òͺ˜’ÌñôþþùüñèëñöáîûÞéâöíôêîâ¿ÁæÝÛØéããÕßË…€R‡¹¬œ¿˜·¢Á¾Á·v«©³§¼ÂΔ¶³¶¼ÂÇ¿·Î¸½ÈÉÓÛд³¶´Œ¯²“RVY—ÃâîøþûÚöõôðôèêÂòÙôòýþóñþøöú÷çäÓÃÎÊ´ÚÓ²Ç×¥€Ò·®¥r‰ÛþþøþæþðòõòóìëëùêòþËþñüîÎÝÒÚïÞáäæÙÙèäljˆºu€À±•©©§§Àö竱Àª¸µµ¶À²«©¸Å½µÉȸ±ºµ¹ºÌ¨·°›y¼°¢£u ’N~‚²Ñ×õüììþñæäçëüÚñ¥ØãíéõìþàèâèßÞÖÆÌűÛà°®´ ÐŲ–’z€²ûþüøþøùþõåîüêëìÛùòòðüü÷úîåäëòìéîâóØÏ×ä—„à·ƒ±›Š¢Î´—£ÆÂ·±³´³¶À¨Àº»¿»´Î¾¾½Ã¾¿¯²›§®Œ¤Š;ƒŒ˜ŽÀþûèûàýñìàæÔçáóß ¾ëÕôñëäíìãà×ÍÑä°ÄÄßš½àÕ¦š}sŒáùûûúþöþú÷ùúüôñóñûõûýþþþþæðáááíêèãæÊÂËÊÑœšÛ죑¡n¯¯“„°¶¾ºº¹¸·¶—À¨Ä»À¸Ã¿Ã­ÊÁ¿¿Å¼ŸV®¡ž’y‹™—«“†Ëä×ÝêÖèÊæëÛÓãÒôäÆêðæáëîéÞßߨÊÄÃ䕿´–Ÿ½Û¿žh€0Ü÷ýþþýûþúþö÷üýøþñþ÷ñùþòþüóùêôðÛîíôñïîýÆâÖ™£ØþaŸ4¨ž·®uг°¾¿»¶¶²»š¬ªÃ³Ä­²Ä··²¹Ä»Åµ§°›œ¨–˜kge›àÒÏÜÞÊïÞ×ÛÏÕ×çÙðØîßÛéõ¹âåæéβɯ¾ØÊ˜¯ÎÓ³›€‘nªéäë÷úþþù÷ýþþôôýøöþûþ÷úíõýóþüúìóóÛÛàéíûþîÛÎÕ®ÌÛÆª€‹é¯’««¢¬­‹«±Ù»µ¹¶´²“±®·¼µ²Á»·´«­´¸»Ê°ª­–‘‡}‹—½ÖÎòÍèÝÜÜÒÞÏÓëÄÊ˲ê¼àÁßÞÔÕâºÜÕÝÈÇÔ“¸ÞÍât}wÚæèðÚíîñúøþþûûüúþþøõööü÷þþöþööïñþõõðòãáæôþþ÷÷ÞäÄÍÉÌЙXj¸Ÿ‘­—–ÎÁ™«µÝºØ´³±±¦¢Ÿ°®­¨¤µ³­µ¯ª»¼´©£–‡‰—‘³­ÂÓâàÚÎØÉÙÆÉ¿¹µ½ÇÄÞöÔÏÔÎäÞéãÓÑÅǾ²ÆÊδ½€‰ òâëæñâÛäïþõùþõøþ÷ôýþþþþþüûïùóóôðíóêëóñîáßþûôþìöáÕÖ¾À¹€ …rèÍ{ej¦}œ©‚ÑÖÜÔÖ³®ª®¬¢›¯Å± ¤«¯«¥¨§£¬¨Œjx‡†‹o®ÔÕÕÁ½áÅÁ¼¹ÇÇ­¸»»¹èµ¸ìðïËÀÊÀØÎܺ¿±´ÕÜżĈŒ¢žæÛÏóßíÝéåéìòøþýþöòøùûýþþþöúòåóëãìñìëøöæèéåæÜæíîÜëÛÔ´åÙ¾ŠKmÁÓ°ss–™“w”ÓØÓÖ´¼Í±¢›”®“¨¡›p ª¦› ”vz ‡Žp†‚Y86ªØÁÜ߸ÒÊÊ´ÀÁÀ®­¹¸³°Þ²ããß¼º®²ÎÕ«§¥²Çܽ²±ˆŽ¦ÓÕãÎ󾯾þþåêçîòðþþþóóñþßþþýôøíãõðìÞóñíïîçåÙõÚèáãêÛÙÊÇ·Ãæ”°ŠvÊàÑΔ_˜¢Ér«Ö×Ò¼ÏÍ«¨¢›’Ž‘žœ™–v qqxo”wŠ‚¿Øã­çËÀ¾©Ë°®¼³²¤±©Ä»ä³ÊÔØ´«ººÉÀ³¶±Óᵦ“ÔÁÉÕßÎÖÂáñéâÛëìþýþôüõñõþþþú÷øïïãØêóððñïïäææçäéÜÚÛÝÛºÉÃËØÇ¦´ÐÇÞ˜x™}³¶µÑ®­©°¢¬¢œŽ¨œ˜Ž¡ˆit|o]_(´îηÚÁõ­Ÿ¨­¢±£¤¥¬³À¯Á±Ÿ”§·µ·¯¬²­ÅãØÅ ‡½«µÂÑÔÝÙØÄÚãÏãÌÝÕÝçåþñûòþóñüîçÕàÕòâþùöïíââÖåäèäÝìßÝÛµÃÌȰ¾²•“Úô´Ÿew[«‘¢¥£Í°Ç¬’»¤¡˜‘›”« £'{lxM=ZŒóÍþ߽°ª£—¤”ž¡¤Òª­©š¤Â‹ª©¨«¤«•Óçå±®ÅÇ¿½ÏÓÑÒßÏÏÒÓÎÎÑßáîòù÷õõûð÷åÓÏØÙçäéôñ÷óñæééíàëàáÜÞÔ»¨¯²º²Áž……zÌ«FŒtU«´«ªÈÍв–£•©• ‹‹¡š…bei,ÎҲ½¶¶®Ä›”••”—ȿŮœš­Ÿ˜¥‡¥¥ª¢µ§Ú̆Æ¿¾»±ÁÀÜ»ÊÏ××ÎÓÓÒÕÔþÙûæÒåîæÎìÞ×òîòø÷ãôõÜ×èçéÛëâÜÁãÑɰ xž¢ËŸ•›wš¾’M4Vj±›¾¬ËÎÌ®®™™˜–œŸ”¤•›š™†~u€S¸»±ªÃ¯È­£´‹‚˜“˜‘w¢©¥”‰€mŸœ¤¡à°À²¿²ÏÂÙÆÂÏÒÛÍÑÒÒâÞìÛùøîãâàãàïØå÷õëïõúöïáãÞÐãÎÔÑßÓ­³±®½¡Ÿ¼›ŸãgH—ƒy€xÊÐѰ¨£šŽ“®’šŒˆ—‘”vrre¿Æ‰¥µª¢Ã¡Ÿœž›Ÿœ˜šŒ€‹umw|–˜¦±Á¾¸¶¡ÇÅÈÆ¹¹ÇÃÒÊÅÕÎÉÑþøþþðâèèêßÜäÞéóññó÷ôêíàߨåæÖÎÀÈÆ±®¾Ø¯œ©¡†¡ÄQvl[ts­ÏϪ¨¢–“‹‹Š•†Œ•‹’w`clLš¨}ž¥·²—  ½œ–—‘ƒ„~owqqk`Ž‘–œº°´·´·¼°º§ÂÈÉÌÅÆÂÁøñþþþñïîÞçà÷âÑÞõÕêäø¾ìéÛçÖÜÔÛÑÐÇÈ´ÒÕ®’«Ž‹·¹n9°Ì£²¹½°«£µ›•£‘‚‡“••‚ƒvepˆ¬•–˜œš²ŸœŒ‘šš€mmieV|}’—†·Ò©©¬»®©²½½¶Å¶»¾ïÁù÷îþðãÞêêßÚÑÞÖÕðãëõæéðàåÞåÍߨÞÑÂÄÁÓ¹À·´Œ–³»“Fà’Š¨¬´¯¨¦¢™’™šƒ…‚•‡¡œ™“}wOYe“y¨†Ÿ¡›’†œ‚qqšA^mPYVw{z—ª¼¡š¥žµ«žÀ³¬µ»¹¸éêêºííóéõôÒ×ééÓÕÓÒËÝçêèÉäà¾áÞÕãÛ×Ü×ÃÅ®¿´¥Ÿ™¯€záÛ¾Ž¶·¶ƒ¢«¥”Š{n„}’›‡•{zqYn‹zœ˜šœŽ¥™hogwuldeSoƒ|‹ d””¢ ¢ ª·³¹³«¤¥±û·¸ëçíðäïÖíéðùÞÕÙËËäáÜÁëêßîØÝÙáÚÞÙÕ񮀱¡ …xhЛDœ³¥È“—Ȱª¦ž’Žƒ„†œŒ‡c,{rsm‘®‘‹›·­‚\——€_lKh$‚„u—„µ³”’£›­³«·ž¥±­íîñò»ôðÙÙãÑöíäâÌÌ͹Þåòß´îîååÛÛÓÔÚÚÙÑÐÔ΋“q“”¶k‘ªi¹³¢¯˜‰™–•}ƒ}‚‘i„oˆ‡pcm•†y‚¸¯¤°©“—[hQbV0rpŒ¢X›”›œ ¢¦£® ·ùÀíîïûÙÓØÛÐÞáßÞÅÉÏ·éÖéäçÞßÛÞáÝÜÜÚÑÓ»ºº¡n[ƒ‚‹"pЈ½½¢©|‰‰˜~‹ˆ……uxgwkpmZR–|rV—Uƒ­­§KŒpjnBGauƒ‰¡¨´³}—¤£¡·“§®µ»µãÚ÷åߨÃåÞäÛÕÔÎÎßÅêÄìàîêèÛêáÖ³ÙÕÍÆ´¨”tiw‰Œ…Å·‡¥“yŸn”—‹x†ˆ†x{…‚wqj_m…‰}|• j¤™{{q(<]_z‚=x–¢¯¥‹€­¬›§ª·èæÞÛÎÐÊãҿξÏÎÝßÖÐÕèÓáèñÑôåáèç×ÅÏÌij©¢–†ƒ¾f—¥„¯¡©•už‘ˆ„“†u‚ƒ~…sooZaqŽti­¨‘•‡‘;dGfSmyubu‰…¢£|‡w©žŸ‘ ÞÐÈÀÑÏÎÝÔääËµÆØÛÌʬËìêåÉŰÚÞÏÑÍʬ®˜ª£kwƒœYSf‡·´«±˜ƒ—‰ˆ’†‡„‚€{„xwtqetj‰xˆRmd…‹6CV]{g{]cYomJVM¢gvƒ³àÌÒε¬ÇÃÓÅÁÅÀØ£ÛËäÎÃÌèáÓßÅȺº¦Ÿp‘x‡fKz‚®¥‚š¢ª“™Œ‚y|stxsmnj€Y]p(•‰\™`%Tp`|U;uq|ŽJŽV›k}wt•ϸÂÓÄ£ÓÈçèÞÏÞã×Êκ­¬›Œ¢¤ …ƒ’i¬¾¤‘ª¡™‘–’Žoz~yhwypcrh{Rt‘¢[ŽaiNeOEORQR}ˆ†^“kȹȼ{¦Ë¹èÐçÕÅËÑű±‘†šªneRŒ³°¡ªsŸˆ†‰•…qtutlk}pY]pr‰–‹‰6WuXlSroI9usL„VPstyµ„«£Ÿz·ÖĹÛÓÓǸ¸Â»¦š‚|€¢pcX…¨¶œ¤V‹…ŠŠŽŒ{frpizf]PfZhnpqp{‚~¥¥‚ŽÒ ´ÉÒ•À ¤¨žœ‡y•ŽŽ`i”²£®§|szƒ€…‚{kn]Zg_pwFer¢¦­ÉÈÓ ¯¨¡³Á¨œ‰†ƒ‰’hmRa—¦ªªŒ~w~rzodbf`~o·¿Ë¿˜¸»­””lˆŠQj„Œ`~…œ”•c\:wqqrmfaebsŸ·Â»³¯—Ÿ‘yyœSk^|“›y‹|ŽJcsnkklmiQX†‰~µ¯Œ Š€yo„“Ov\_~‹–¡v‹HQn|ibvkh^T}€‹•ˆ’ffS\”‰CVQX_9˜ž—¥”qzhom|piprdW~zs|x‹qw‘›„”KQZGL[—™œ’‘}kuzsjeaxyiމ‡‰œ~Š„KO]TRUX @x‘“•‘‰]€olY_nc‰†KLOH\N<'_m~…‡‡Š}V†rtBA4cCFX_|†ŠmŠyMUeM-2np{‡‹D{IigpX[7#CFzv;]zK_[^W^9*`GNjH#j@H\jgC.JL,?.B:ESG:4+%2"5F//FE;TNW!%2=7"NJJPc $ 46M8K6FAHH<+-Q#NOH/95gDX9JGM>8759;O2MMLL2,@SLZY"1KJ`[g7[2VVCLH9,KF /&>?=9%78DMB- $$-%B,?-'  ²´îÚîU‹  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~€€€‚‚‚ƒƒƒ„„„………†††‡‡‡ˆˆˆ‰‰‰ŠŠŠ‹‹‹ŒŒŒŽŽŽ‘‘‘’’’“““”””•••–––———˜˜˜™™™ššš›››œœœžžžŸŸŸ   ¡¡¡¢¢¢£££¤¤¤¥¥¥¦¦¦§§§¨¨¨©©©ªªª«««¬¬¬­­­®®®¯¯¯°°°±±±²²²³³³´´´µµµ¶¶¶···¸¸¸¹¹¹ººº»»»¼¼¼½½½¾¾¾¿¿¿ÀÀÀÁÁÁÂÂÂÃÃÃÄÄÄÅÅÅÆÆÆÇÇÇÈÈÈÉÉÉÊÊÊËËËÌÌÌÍÍÍÎÎÎÏÏÏÐÐÐÑÑÑÒÒÒÓÓÓÔÔÔÕÕÕÖÖÖ×××ØØØÙÙÙÚÚÚÛÛÛÜÜÜÝÝÝÞÞÞßßßàààáááâââãããäääåååæææçççèèèéééêêêëëëìììíííîîîïïïðððñññòòòóóóôôôõõõööö÷÷÷øøøùùùúúúûûûüüüýýýÿ×ÿ×,.-PAL_BROWSE_SEP_21-30_1987.HDFdata_set=AVHRR Pathfinder data_product=Land 10-Day Browse granule_size=0.350 geog_flag=g day_night_flag=D granule_version=1 THIS IS A DISPLAY PRODUCT ONLY! NOT FOR RESEARCH PURPOSES This is a browse product for a Pathfinder AVHRR Land 10-day composite data set. These data are subsampled every 8th pixel of every 8th line from the original 8km data set. The data are flagged as follows: ocean-1, interrupted-2, missing data-3. This image contains the Normalized Difference Vegetation Index (NDVI) with higher values indicating increased vegetation. It also contains a thermal channel in which 16 bit data has been rescaled to 8 bit data and in which temperatures equal to or below 273K and equal to or above 315K are flagged (as 4 and 254 respectively). Browse data are meant to aid in selection of full resolution data products. THIS IS A DISPLAY PRODUCT ONLY! NOT FOR RESEARCH PURPOSES Pathfinder AVHRR Land products are produced by the AVHRR Pathfinder Processing Team at Goddard Space Flight Center. To request PAL data sets contact the Goddard DAAC User Support Office: DAAC USO NASA/GSFC Code 902.2 301-286-3209 301-286-1775 (fax) daacuso@eosdata.gsfc.nasa.gov begin_date=19870921002125 end_date=19871001224757 satellite=NOAA-9 old_producer_granule_id=PATHFINDER_AVHRR_LAND_SEP_21-30_1987.HDF producer_granule_id=PAL_BROWSE_SEP_21-30_1987.HDF Di8UIi>ž{2GROUP = BROWSE_HEADER DATA_CENTER_ID = "GSFC DAAC" DATASET_ID = "AVHRR PATHFINDER LAND 10-DAY MOSAICS" IMAGE_ID = "158492" GROUP = LEGEND UNITS = "NDVI" COLORBAR = (4,255) DISCRETE = ( 4 , "< -.05", 121 , "-.05 to 0", 128 , "0 to .055", 135 , ".056 to .111", 142 , ".112 to .183", 151 , ".184 to .255", 160 , ".256 to .319", 168 , ".32 to .399", 178 , ".4 to .487", 189 , ".488 to .655", 210 , ".656 to 1", 1 , "ocean", 2 , "interrupted area", 3 , "missing data" ) END_GROUP = LEGEND GROUP = GRANULE GRANULE_ID = "987" START_DATE = 1987-09-21T00:21:25Z STOP_DATE = 1987-10-01T22:47:57Z BROWSE_TYPE = "FTP_Only" SENSOR_NAME = "AVHRR" SOURCE_NAME = "NOAA-9" CAMPAIGN = "AVHRR" DAY_NIGHT = "D" PROCESSING_LEVEL = "3" PARAMETER = ("CLOUDS","REFLECTIVITY","RADIANCE","VEGETATION") COMMENT = "QC_COMMENT=Bad scan lines appear in northern Canada, southern South America, east Africa, northwestern Australia, western Russia, two in China and one in Mongolia. Missing scans in southwest Canada and eastern South America appear|PROJECTION=INTERRUPTED_GOODE_HOMOLOSINE|NORTH_LATITUDE=90|SOUTH_LATITUDE=-90|EAST_LONGITUDE=180|WEST_LONGITUDE=-180|PARAMETER=NDVI" GLOBAL_GRANULE = "Y" GROUP = RANGE_LOC NORTH_LATITUDE = 90 SOUTH_LATITUDE = -90 EAST_LONGITUDE = 180 WEST_LONGITUDE = -180 END_GROUP = RANGE_LOC END_GROUP = GRANULE END_GROUP = BROWSE_HEADER END 2GROUP = BROWSE_HEADER DATA_CENTER_ID = "GSFC DAAC" DATASET_ID = "AVHRR PATHFINDER LAND 10-DAY MOSAICS" IMAGE_ID = "158492" GROUP = LEGEND UNITS = "degrees K" COLORBAR = (5,254) DISCRETE = ( 5,"273 deg K to 315 deg K", 1,"ocean", 2,"interrupted area", 3,"missing data", 4,"temp < 273 deg K", 255,"temp > 315 deg K" ) END_GROUP = LEGEND GROUP = GRANULE GRANULE_ID = "987" START_DATE = 1987-09-21T00:21:25Z STOP_DATE = 1987-10-01T22:47:57Z BROWSE_TYPE = "FTP_Only" SENSOR_NAME = "AVHRR" SOURCE_NAME = "NOAA-9" CAMPAIGN = "AVHRR" DAY_NIGHT = "D" PROCESSING_LEVEL = "3" PARAMETER = ("CLOUDS","REFLECTIVITY","RADIANCE","VEGETATION") COMMENT = "QC_COMMENT=Bad scan lines appear in northern Canada, southern South America, east Africa, northwestern Australia, western Russia, two in China and one in Mongolia. Missing scans in southwest Canada and eastern South America appear|PROJECTION=INTERRUPTED_GOODE_HOMOLOSINE|NORTH_LATITUDE=90|SOUTH_LATITUDE=-90|EAST_LONGITUDE=180|WEST_LONGITUDE=-180|PARAMETER=CH4" GLOBAL_GRANULE = "Y" GROUP = RANGE_LOC NORTH_LATITUDE = 90 SOUTH_LATITUDE = -90 EAST_LONGITUDE = 180 WEST_LONGITUDE = -180 END_GROUP = RANGE_LOC END_GROUP = GRANULE END_GROUP = BROWSE_HEADER END ­DßÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿRIG0.0RIG0.0hdf-java-2.11.0/samples/apollo17_earth.jpg0000644002344600011330000022531107567007533016560 0ustar byrnhdfÿØÿàJFIFÿàJFXXÿØÿþ AppleMark ÿÛ„         ÿÄ¢  }!1AQa"q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúw!1AQaq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÀPP!ÿÚ ?üµw†Î;Ôlå‰'­MŠ“;ÿ…Ÿþ"üb½K_è3Mr’^H¬F}ØIŠ N5õ‚ÿ`¿ h¿ñýåγtFÒ±g 7_˜ wÛîaÒ¶N†›«‰–ÝÿÀ:5kÏÙÒZ÷èíCà·Áï_CgyàmÚÞV ‹“~7c…i¥–öÀëÖµføð[[Óæó¾X¸ä¤ÖLm[ÝÂ?Þ)Ï1¡©ÇÙËgÖþ}WÞu,²r‹\Ït<ÏűW€uó:øÅWÚMìHd6ºŒM$ `y£îŽ@Écɯ_™¯W‚I[[î¡âø’æöÖ²i“Æ’¾éá|·ƒ´ðpê¸9Æ+£mWľÒ›Eѵqo¦CÎòÝÚ<Å6ãw!‡@á†~QÆy>„(ÇIPšr]“³¿Ï¿_‘Ç:¿Y¬êŨï¿oó<–jþ •.µíjkØQH‰äÙ–Ç«´v÷š»¡[·‹uTð}ìâêÊÿ0ÆnâÊœò¡—'ƒÀý+ï)Ò§J³QJ1Z/Ïï>V¤å9óÉݽÏøÝðKPøW­Î#ÛOi6²òM»á$Œ•=‰úÄùxÆ9¾OGØUq_ Õz3X»êuÿ ¼ ÿêžÔ›AÐ"±K†;k‹Ihš`êdàn' ÀÉ$œW—xƒDÖ<¯^A£jwO ÚG óýŒù…¢ù<ÇXÝcwdÁU‚¥±¸åƒŒ}³œºkóZ—¦’êbé´(ôÛcYñ í¥„;Müz9¸YcÛº6,¼º°m¥¸'ªç¸Ð¾x3]ð>¥âŸ øÞâMOAºGp#1Ip¤)Ö¥·Ã°î!•›?6{5¯.—üÏ>Q²9O[ë>-ŽçOñ…¤WSHâ½t>cíe@ŽÇrqžÇnyæ¾.ñFqá}vïE¹å­¤!_}*߈ÅqfÔ£ìéÎ-?T:O{ŸL~ɾ’ÓŠƜ—ºŽ¯tm´ûgˆÉæG 6ÑÔg$‚cÈWu¬Ã®Ûø±­//ä2\ì“Re˜/“²¹'“°ä©p0q^–œiá¡Õ_ïw!ͺ’=Ã?¾"ø‡Y¾ðV¿n—r-³ÍÕý¢-;ÅÌ>c•Ì@#ÂŒdœdäu MCÅú–Ÿà«ýWη•¥Uˆ¥V”3ùc‚Ñ6vªz6ŒŒiNÑg}-cÍcOÅW:ÇÃøeÔjáÆ;áçÖkѲ ¯#ÙþÜc|3ðÅ–¤éÒéî„`¡v™å“nõù”4ƒáb:^‘ã™tíy.í¼ £xGDÓ´¸ iï.ž|é TƇ%¤Ã0¶ÞpÝ}i§ T¬ß/*Û«Ðæ†²“ófOƒ<âlnjG%ä6… ˆª¯ÈÊ»p Ý— ºI&º#› O“uù"!§/V3â?Á-7À¿·ñ¾›0b4¹ß Ü3ƒ¤îÆqšõ_…~#ðçŽm`_x¢Óí–æ4‚xmÍ´ò8ÈùD¡V\g¹cÁÚ|æiGë´ã;Y¦z˜,CÃÝ®¨³âßÙ;ân£­É­xrÖÆñuCy Ê@Tå¦2vÎFÓËg W†ü@ýŸ~!ü=-ÿ MŒVæty`'Y@®r¹9$ ç x®¬xR§g=YªÓ¹çö:ÝÈh ‡ – ªä°Áç+žØ«¥Å¤›ItŽáv7 MDäóŽ==3ÄšM÷ƒþ#xœê%tÿ6öâH¢kõš d*­,P*á>û8ÎF5çГöOn_ÉØ½ª´eø¿áV¥âïÉ}à[ûdé¤,¡·kIbS÷­Ÿ C°É ‘¹BÁð{À6þ0”iÚž…-µ­¼$OªÜŹQ‰+“ŸºÌàü¥@yjU—³:¢ÒlúÇàoߊ_WPÓ<_ã;Ÿ Àbm.?3ΗoVË0ñ–ä ŽK>6|aЯžØ’å´S¯ XrÒ&CÄ*á@Éûµ©¤üIøÁ«øNñ}͵äÚn“c7´Qºm!ðªB± Ç £“^:q¨®É›Or·ÅŽ7š»Ý]¹ŽÛG¶¶"tP ?ÊxÁ'€¯…øÇñ]­“–?_ÈVXœ\#J†Ïwú#jtœu–ç Û‰ùOÖ›Žy5æ£SÿÙÿþ AppleMark ÿÛ„   % #!,!#'(***.1-)1%)*(  (((((((((((((((((((((((((((((((((((((((((((((((((((ÿÄ¢  }!1AQa"q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúw!1AQaq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÀ"ÿÚ ?ùØžüéKߓڢ è:й÷¥cAìr8¤P0i¹ t¥çž¡ì fxæ•Æì`ÓCs“LRcçààQä%Èè8æ‘רôÍ4`œç=è'ñÏëH.&úÒ`àöþ´™ÀÆOÖ†8óÖ˜„;pP9ÏÐTB;Ò9âÏs…úÓHÁ8JR äƒÀõ¦ŽH!0ÆœzŒ~„|Þ¦œNà£×°¡€Ž˜Ï4Ò1O#éÒš~cšÄíJsÏ”ì9î)ƒ9 B±äÒRã8“¥0xÒŽ¦œÀ¾ãµ"ç9Î=éõÆ:Ž´£®A¤ Ó'5=½¤÷Mˆaw8è£4Y”W)œãµ3ü⺋_xŠñC.žQOyWùšèôàS=ä6ý8Û¼þ#5¤iT}æ]Ï7nÂóÇzUCÓ ã¥zü_4ødhÔæ¸ÛÕV-Ÿ®MiÅðã–iºâ'úI3sùúV‹ 6.tu ޼äS/…“è5ïðŽx*Ü ¶Ädä´ŸÔÓ£³ðÔJ$‹D¶Èäߟ^½*ã„}XEØðU‚B2Q€N(0É–Ìg?îžµô[)[} ÙÈùé×µY6í i4•‡ÞݯôÍ_ÕY_x½§‘óªÇ"7(Ã×"”rWÐma¦ÊÌ¢À¤ ààgòÏ…ü> .(œžFßð €0F:æ…PFI9ö¯x‡þ¼$ÅaÏu‘×ôÍeÞü2ððlžÝ+–‘©ú¬º4Ñ8T•穨Êâ½Jãá3A ©ÀäЃ õç4ù»`ñŠzôJ†Ê÷¢úŒ‹2:äRÚy#ð§0¾nF)Gî~´î!6…íœô`sòŸzV8ëøHØ+‘ùb€ÒŠS÷yúÒc§5@(äãPAÁ ŸZí?‘¤ /R1Šv~^9 (‘BŽ:T±ˆr:u4)9üixÏN”Ö®F=¨v°'iRbOï pQ(Ú¾ƒò¢âŒóŸ­útëK·¦:¿ëK–¦ôÏ¿áŠS’@‘‰<~<ÔˆiÇiÁðFzSyÇÒ”` 7°‡‘žä÷¥|Q’xçíKÔrM ¶i˃×ò¦ž1È¥ Ç-Œó@ ÆH¿âÛ@QŒ÷¡Võô4Œ¼äs@ œtî(\‚ 8ïŠ]¸\÷ _½ßšQ•ç‚)¿ARœf†HÜÓÍ!‘NêiW `ãÊ€íŠ y$ûñKÏQùbœˆò>ÕVbx´µ Ÿ›Øö¦‚{ýk®Ñ¼ªjª’ÜcèÒ¡Îpz×k¥x+@Óy¶}Be2>åU=AÀ?çÓ <çÒȉN(ò«-"÷T‘RÚÝœ‘Øú¸®ÓLøUtè&Õ/b¶ŒÿÎz{}k»{ÅŽCP¡è0O­ÀA3(hó„b7+7@ïҺㆧï37ROdTÒ~h±Æ¯x½pFÓø]5¶›¦é2Km*9W%àˆ.;uëRiw¿Ù0o¾–gÞr±y{sØQVÛÄ­4¦Þ8ÈÉt–êUR£¦Jý{f¦öÙh½ÅX®o"]–¬ 7Ó·_Ë5ZK=[½¹Ž\€ƒùó\äž.ÕRpcÕ¥eŽ]Êv¨óÿdúÔ7>/Õod.ó:³Iˆ•úTã;tHÒ¸Ií.|«ÍJ\¡ùбÁ8ÅT˜é€RI!ã$ddÜO«_1_)ØÓ˧T©áíEyìp2Tàÿ’i¾T½éX¤ŸD:T2:¤F#Œçš½ka#ÄAm«RÁe%”`Õxä"“øæ˜—W ìd»!Iû¥@ Ûë\UkßH3¦.äÂÚêØþêâd9qñS„Æ$žWÆ%óþ~µ.sóÁ5l¤aÙFï¯5Ë,LÕÊSÜ;Ÿ-•(ÛÀÃwïþzUËIôùqó]3ck¼ä0úõïH`Š|!²6‚1TŸKeIpËÈúÖÐÄ'»±Œ¨5Ðì#Ò-$‡ýÀSÈ’"2*î™n$¸YLcïI…!¾ r+”x¯íämû£ï!éøWI§ësGb’É}Ôc;¡|õsïÍn§+]3ÓHt;w ð^Hcë‚ØÇ¥WšÓr ö*8À%³ô"¬G¬´²3· 7""Ûvã  ßŠiš‘MФÜlŽAúäUF»û@騤¶wÄÒd>§=;`ÖMþ‹cu¹ot»W'%œD}r9®¶"Þ>m\ô|ƒRC$ ßg™L2ªóæ n÷Íií®G-µ<–ûáö—p]­¤žØ“€»QíÓ5Íj>Õ,òÐlºN¿ºÈoËïÒiñE—¬ŠFC!äþ=+>çOY“x‡h^¼zö¤áJ[«3>l–ÞH\¬ÈÊÝÕ»TD Œ>•ô öÜf+›e¸FþáÞ¸ÝSáÕÃ1±‘¬Øgä`]søœŠÆXgö]ÊR]O/dþè4*ü½²}ëcUðÖ©¤–ó­ÝÓ¯šªJãê+>QžžµÌÔ££(rûž~”›w»j\î$rïHA'±Îj21@‰\ zÓA'¦iw}áÜ 8(zRãŠr ÑšvîÁëÔSrTàò¯¬rAqÚ囯oÊ©L|Ã<ŸzäõDZ¡·Ï8¤`¾zsT×8‰¤¢‚1ß4ÀrpNqбÇn*%É#ڞͻ=;T°$$Γ à~åvPÁXÃÔSGŠ‘‰Ïi¹ÈÆ8ö§màãŒ÷¨ÈÀàŽý©¡ëKŠAÓÖ–¤c@ÎdŠñÚ”›¨R3g#ƒZ-J[ £¡ëŸCN*¥'n¼ÕsAÆ:œÓFs¹ö4¹ô¤'­!0TÈ#½pqJ02TçÒƒÀÁ9¤!§*0@¤’ÏÞ(¦ÃǦ) sÁȤ“ÀüsÓR÷úÐF89õ¥ À8?…“Î;T±”sQáNpÖ¤@Bãé=F·°GOÒ–0îÁT“Ž:×Cáïê a E‚Û©šP@oeã“^›¡øgJÐBý’Õî.@ɘòOÓ°ë]¢ç«Ñ)¥§S…ð÷ýCVešô5« îà³Øã^ƒaáÍHhí4Ë4–åÜ/›p¡Ÿ'¦8ëZÑÙßÌdžI>R|Íúv®‹Ið§Ù·ÝÞ•’lФ‘þ§¥tÇØÓÛVg.w¾‡?%¬‘3µÔ€ÇÄ„¶FðzcüŠ£åíáh-BÆK ì£úÿ“^q¡X_L..íÅĈœ€£èëÍ>qfÐý• Œ@ÃhAgÐóÍ)b’ZŠ4îô9!¤iº|Eu²K–*Â%×=€íùûVã(ÖfH±˜Ò<ü‘ƒÝTt>þ” [;fkCåÈP|£¨ÜÕTšI– Œw5ÃWå³:éáû”®tñzþl¾b°i.IÃÓð¨—Ãö/9–hV+·2HÍüêÄ÷xvEs€zã"¬Æ<äÈÝ~Sœ~UÊëÔ¶ìêT ºŸM²ì€Ÿ¹þt°Ú ÿWi œìŒgéZbÍ#`ÓHà”,OÓ·†Ô`öAäà‚Ç·óô¤ª;jÁÅ=‘œÖ1,;SsÜ6sÆ?.+2þâúÒ2 •@¼|öÈïÍmÝ]LèìÒ*FG#5…,0JâbÆQÈ=ô­!Q7vˆt䑘·Œ®FÛ.Ì ä©?Nµ,1Kæ .q±ÎÆ>n•Ÿ©[ý…kXYŽÖÚ¥›=zžÕ™m«[ÅG,RJ¬rÀ¶0GL×c£®h#RQvlíòÂÝ6‡ ê3Ïaê;Sy®4dpã’=9¬Ô-§„¼12àaÞ þ|Õí>ý§ˆ²Æv E+ŸÿVk’TcÍÕY=DI²ÊT®ASM2ʇN;“Æ>´!1ãJõ4Hò$¸çžâ°qìn¤Þä‹:qæð¤àç‘HºpuŲÆÍ*ÑÈ¡‘‡®;|xÈl)äóÖ¦Š-— €>s† Ó½«8l)R„È.­í'TŽ­÷AÀ ë‚:ÿ1XÒ^µ¬»užî¹Ë}8úøWE=¼nÿ½1¾ä>‡Ú«I¢×ëqÚÇn c<ásÎ8=«®aSIœ²¥(k¬3»«5•Þ3ƒ½ {CWmõ‹Äš(o…¬Çîù² 8ÿ?•3RÓì/¡•ÞçÈòçóÓ;—~JÿAÑì´ë+5þïb,F}0OO®.×¾D”šøM5¼ò.Œ¶Ó,¶202EæÑÿ)÷Î1Z—-D— û¢l2àà°>ßJóµÔ£B`Ë'B@Æjhïâ•·¤å[Pý¿*épŸCuîz wZuÌk(*‘çÇôçÚ¡¸Òa•_åoñ'?Jåtí;íÄŒùêG2 ÈÜŽÕÖéZÙ†6Ó¤¤/ïB|ÌaíÞ¥¾]˜¹Qƒw¢…ˆ4da²Að®'YðFzXÅ‘!ïÓ¨Åz¬±C¨X¿;÷Ü„’"#Ðúý=«½óbsç±I[o'·#ò­¡5=$„ÕÕ|7}¤HÆH·CªêA±™HéÎ:ñ^âf†D9O'†ñÇ5Ëkž ‚ñLÖ[R ÊgöÈíQ<5µ€Ô8$.8Ö€>Lõ8«·ÚeÞœû'—ѱÁªŠr:ô®&šÑ”0tÆNqAÜxïÐóÅ?n[w¥FsëJàFw OJURNsœ{Óœ@sK¸dŽA¢â"Æ[Ê”’F8ëÒžFÐ:ŸaB¼ÆÀŒ)àö=éOÊqǨëOÜ:ô¤~F3Ï\QpÉíRë­D®A$óš—éIŒHä`úRcŠñÉü騤Wsô¦‘ò…ȧ1*8ÀÒX€E0>œQH }(Ü=ÿ*@4)ƒƒ‘M,Bâ¤#Óñ¨ˆÚÝ8ªZ*üæ)¸÷œãåíÚ•y=¨Zcÿ¯MÆO\ç¦iã•'·Jh$6)ŒB=qÖ†äž)ø F"šI#¦>¼RLCxÆ1ôæœp p 7†“È¥#Ž™Ï§j`(N¡Z™‚¯¾iü? F#=Ï€ p2H¥€ÆçB€T Žk{ÃÞ¾ñ ÀHEžy¾ÙÇ^*”[vH6Õ˜öV3ßÜ%½´M,²ª‹Üž•éÞøv¶ ^4žuéh@eN¼±è}p+§ðï†-ô[f¶ÓÑ÷úÉåÌ9Æ@ÀàWG¬vÀnÄŒz‘[· ZËWØj2žÚ"µ–žëäÛ "p¡}08ǵkÛªoX­`?ăÛüþUZY„hKÊT—<ý}jÔFà"”ù]áÍrÔ¯*S¦TV‡SdÖ:2æêek²9ùNGbôâ™s®ÂÁZ$óEm~#ëXhhبmÁ°Îà Ó×üô«–b,º¼˜VÆáÐqïßð¬}³øbS¡ŠZ±&»¼¸Bc8yvŸ»@;U‹«fŽÚ?2Sç(å'¦×ô¨¦Ô­ìÔ´oõcôà çÌÂþᙘvn¿OSP磳*4îÓµ_´Â\¦íÌ>ßZfå¸B!l/v5X…ˆí†=‘/-ØŸÊ›-ÒÄB°!r2£±úv⹎Õ} þËm dÈIbxUçÞ”M#Ý·”½6ÆÈ÷õÿõUmÆO˜.G@Wñ¦®",Nâ¯Ö¥ÔvÐ¥O¹u$î@©ãŸóùU9³ÍÐ(ïNW-T$þôª³ÈP¯Ë‚¼Œã4£+½GÉm…’ÒY•žGe9\ñøÕfW žPQ·ŒzÕ†½,¡¶çÇ5ž óËŽOe>Õ¬dÈ”tÔ¢ðÉWÜÈÑ»1ç'Ž0}¹ÕÌê6^sÂ-Hi$fRÆp2 ü3]LѤŠc´òBã©Ûýš ñϧ}¦ßxvÅp@`#Ÿâ#ñ®êœ1ÉV•ÕŽ{O–MµÌ¶ââÞBa'x°Á8ëŸþ½kÙê–Îf‚ÎT 8?»•J·çþGâ-0\ØÅªY–Öè!–Ø ù$dç=×2{þ˜7Z}δ«E(lÑ”Œþ½G¡¯BP§]su8ÔåIØéôíѸ’{‡Ä„…V%‡õ¹a¶æâ(„¥„‡¡³é\þ™«GxǨOîξ¸{ÓùVœR6›«[¼ÍæÆ9›núÕçÔƒŒ½ãªMhuiJ’:`U¥\ vÅSr|ß+€ÊF0kzòêßR·K‹Y¡b&)d T{Ž¿¯jŒêc%{Tœ‘%€÷ÿ>•Ï$®Tfìbòqœ;g$}iíRw§<š·wumxŸèóCð Aú߈¬çBã9Ž=êe™´dš+N1"ˆØåºƒÇ4ãn]|·ÉÁÆXsOû;g̲sÎ}êÌ3ƃ 9cŸóÅTtšhÏ—Iî(€ÙÜñ«>„5]¸ÑlÚÝ¥‚ÞÎÒæ¸ <Ÿ—¨dÆ#9ëÎ*¶¥®X “7'ïG¸o>Øõí\f­ªµìÎ#’Vµf@ÓŒzXuROMÁYEž•ã "ÍK}œ[<Œ ‘Û@`tí¯J­â/C4K¢ÞKnʧ~ÍÈ$‚éœ{×­È,3Ûô*$§¢íÿxp+ÐTbÙÈÙÓhÞ#[U‘nØ…#äTÎ3êqNºÔ"½È%|’?:çP²ÏLÿ*|— ²ÄƒnÞ„uªt•ô'ÔÞÙ ;rê{UvV„þíÎ:àôíPÛjˆÊT ¼½ji§Œ±1ƒ´ô A5’sƒ³4ÒKBµÝ­úm¸7åü+‡Ö¼sgºkE2ÂrqÆ@Æxõ®åö²‚s»qKÌËÚYHÆßÌð}:©STMÚ€gqþ•¤êÆŸ»O~åB›–²+Ïuµ]aýÊsºBsù I-‹Âí8 ϧÓó¡`vV’åA\áZ™a•å ÇdJ8ŒqǸ®)Í%¡ÙÜ­ý—û£Í;ÉuUyÿëTßÙInñù;°„¶1ü½zš¿ •CÁëÖ†Fo•OÍßãÛŠäVô¹Ñ$2Ç0}š%òÆî}Ï­BKæEQÙ xÂqÖ®›ehË.Ü‘É#ùSs‚AÛÆìuÿ9ÿ=²æ} Iu0gµ¼b¨àˆØd¾îE>Ú `b]x.O¬b. œqÎÎ;Õ{†Ø~P µS“µ˜àµÐ©ss"©ýàNxÂŽS!·ŽYPÄäŒõ9æŸ#'ÊÓbFÔ~bÁ·qÎHïd㡺’5„©i  ãôþ¼UQ†,HÈ'q?犣5×›¸›>¹ö¨b—ËBÍ$„ž€qéô¨PcÑó`b@êW“YWM½ÙËdáF;T2ê¿$ÁÎEç†@ÇåUdô«P`šòã,ÇŸo¥T’þ@A 3ߊKÆYbtó’ ëÛ†n”†$ÓãÛÖšFE(Æ1@ ¥üi(æ‰×4Îç×®iêsÍ5ƒgéÓH`¸äS@9È'뎴¿3s·ó¥À9Ó½=€Oº{b“>€xÉQŒdÓ2sŒ Õ ~F2p)1»œP¾¸üj8<jVà†ãŽ{tö§ã w¤ÏÝøÁƒS”j:„%­SýTdñ# Ê´„åd&ÔUÙkÁ^[˜âÕ5Um¤î·¶Áðz· éõ¯TX>Π•0)$ ¿@8ÿ>ÔûH’Ù^I?×`R¼{tü8â î” »s¼œãéùÖµ*Fœyaÿ:tÜß3-A”ƒ?}½GO aæ6Nyäßñ©žoy'8$õKülNGn£üô¯:MÞìî‚Ðxp>èÿŸóøU+»Žpã†ç¥YrÒ+" g€Æ9¨cÓø ;;CXÛ¹µÇé†ã¹×ËêŠW÷Íi!LÞ¹çBK„·R±ü§æ©Í}*@Æ5Þè>TÎ7~&²p”ž…]$jÍ:336vãô¨~ÓTaB¢¹tמp~Фɻ…Pp¾{ÔWšÞÍÉä.âyéÿ׫T$·´‹Z$·ÊN=[5B[¸ãRÊÁF:3\¼šÌ…9m¬: RkÉ’NñZ,>¡íR7æÔË¿8ÇÎyªß™¾Hÿ‹©<ñïY-99Á=ñÏZëi·CŒõ­U+ê›ÊbS’Àöh{¬9ãhê+!uà' ÿϵF÷;çŸRE/eÜ~Õ-¿T%s¸ôÎìU)oضpAéU“$Ç_Æ®i:{êú½œi¹enJöÉ'éÒµ$µ2•i>£ÁÛŽ23P=Ã4˜a:âºÏø*ïCšií-d–ÉJ¯™ÍŒ®rqÎ:óÛò®YÕÂy†&(N7ãå Œã=3úVŠ+fcÏͪ)·ÞltïŽ*{AÐdŒôÉe9 g°ïV,­ ì« PÍ.öØYà÷Éé€kN×E¸³y‚GçìPv? ÇwFÏŸJ|¶Z‡1^ÙÖK‰3·Q”1Źˆdôc·¯~+jÎ -£±F/ûÉa´ŸÄžµUÞKYâµ™‚ü‰‘ä³¹‘ϵ%¦µê¾>ÔÉò‰%Sƒ÷AÇ_SžœW>콑¸l­Äç™Wp ¤ò¤úT•å”ÖÑi·ê%H˜ùmŒŸQèsÒ¢šãP¸r­)Àoºù ½=}ë3Pß+‰. h˜7ÊÊx'ѽxÇåMÝkqÅ'ºyá"I’æÎsgëx·3?|îfã·Õ^Ò^rspUTá ½Øœ õ4í’¤@Ȭ22¥y5Z=M¢—ä HnsÐÖnµw¥ÍÕ¼|=¤Æ­¶Üï3obxöÎ)Ðhú|$‘DˆGBy#ÜdûTðjÎÊKQŽ›‚¦£¾ÔRÊ»e)´¨Ã©íúÿgÍZNͲùiEh‘ƒ¯ºhO2–;T22zùô5ˆ-ÉaœÞÔù.§¹žK¹ˆi²Ç ú~Ub‡“b, rGW¿J.4Ò{ž4Ú”ÛC œÍe±ÐÿOj…¡™\ÜZËpÍË%³`ÆÙùN§o¡ª8îCÝ?Þ$Iþµ¢l–EºRw@éõ©åŠC·Û^øŽ7 ôÍ]šòÀLvyÅ”…¶ìÏ£9\ã#ëÍQ»¸žêe†æQŒü­ÉT_aØ{ KW°lÄÇKº?f2ó‚ ûËýÜûÔ׆aþÒŠh£O0+Ù3Ñ-óy`q“Ødzàc Øæu©_ºHéyþT<Òj3%Ž4ÞG(¡@íC†·A} 34oåPà·9÷ÿ?γ¦UFÌ:ã½,û­&x„œ)Ç"‘3:„:ò3üU¼_R¬ÛÊ>cƒ‘[K Þ7láˆn3ò+•@R§žþ¹­UÂŽ~S*òÜðiTIØ#¡ØYx~Â÷÷‘NÉ•xÈÏõ¬ûÍî‚•óþ»§^ u±·u’TŒ;îp3ïØ~9§ÏqwdË"Æ‚ ùÞy§×ë\|í2ìrW}Ų^2¾¸Ψ]ÚC} Ž`¤0ÇJí§ši î+"È „ÛÏáÇùÅsš™ÚUš0€ä æº)ÍOBZhòÝoC}.l¨- t8éÓƒùÖNzåœwÐ4RGÞ q^}«i’i·,¤~쟔×"‡³|ËcH»”ãëÚZ^+ äŒš( ôŧj\Òdvä{P8ÈëÞœN# Œg£!G$ãÞ˜ GQšC¸RHȧc‚i½=óLäõÍ'~{õ§×üŠò§­X çNôIÇ4ý ‚>ôªœtæ›z oîz6ä g9äšÓµ|=¡K¯j nƒlióÌà}ÄÏ'õ¥ÉÙÓSWÀžmvì\\D^Î6ÁRH2ë‚9ö¯r³±[Ä€*Ž|¼•}Æ?Ï¥Oé0é¶±A f8Ѫ‘ÊœœƒÔŸÇó­¿%æÎü1ü:·«5Er/˜©ÁÔ|Ì«“Lä»6ÑÔ³gÜöúþTùBGˆ×N<ã¥M4©Â± z…#ñúô¬é' –ÉÇŽ½ëΓ”õg|m‡ïTœ’ùsUžâI ù@SÁÿ?犨eÛ§œw¨å¿Xçvvô9¥Ë} ½‹6×d’ïÎ:M>}CwÊ„ã‚ú’qž¤r6óПʩÜj¤)½ 'ŸÿWÿZ¯Ù=ˆçêjÜ_ªóçÔƒÇçU%ÖSi$·LßzÈ{—”’䜞rMV–G µOËÔ×5¢¦…Ï¡vyX¾c!FwuÎ}O¿ZÎy3Ïa×¥2GbØ G~¼â”#J~T=û㪉›ÍØ#¹a×ÖšYCž1ÔÔ’áC!ê;Òž,e˜6ÈÆTe†î•|·DÜ„H§wCQ«¨ätÏ8ïNx%~a´ã?†)ÑÂΡ“×SC@˜Šûrp¸<`ŽƒÞ•œ;’¥±é×üâ¥oå“´äg‚9ªàºž„c#úÓqÐé$,îO~µ¯á}rõn'·iT‡æ9àÏò¬C–9ã·^ô«œ”ç?çùŠ9DõG}¢ø¯R½yôÖ´ô¹ãa-»LÙù±¹ƒžI9ž´G@“3Ü Y7˜²,lxèNÜdc=ÿ™ªWªAù0韕ÇCÚ…-BÄŸñð»×OçBFn á0@Á8æŸlð•qÉͪ­“ßºŠ«’uú=ü¯s ºP/íä“`9Á_©óïí]ŧ“sæ@Cv0ÁÍy扮¬2À.-b¹»<Àm½ã·¯µz>œ°2Fжðãpsœÿú낪i–¶2õ=HáÄm8sÛÜt®>Y|½ö·HZ&$‘ýÂqÈôïÇN½:פÜÄóž2¯’¤ƒ‘Šàu‹xáÈB‡(Ì;ÉÏ|QJZtswP›ipÉ;_Ôúë;QÓÓP·ÚêyëÓò­i¡h¢ ‡tmÛv:z~_Ê«DÊ ^•”£mÌ–Œòû»9,gh¤ÎsׯÎì{~uÞxƒIPïP»€ùHõ®T13+äpkÆ­IÓ•º'ur=Ǧ:Rö·Ò…•ê{ÒñXŒhiOö¤'f€ëHÞ€g=h9¸®ÊQöpç{½Œ¤ù¥Êºa•L+!gääsÓóøÕ9õ ¥ãÀ 2Ùþ‡åY·ìçbÔ(àûœ÷¬ë«µŒfE>~`ØÍ`è¹;³©MEYk¨n"LSÀÁç[P¿Pm` ¯Ý’}y¬WÔ +†Ï¯LzZ­%Ó>7¹í‘³·`£$ŠÛ´ÐÔÛ³Éóc;»Ò«^̶12Ù dòp:ägñ楤ƤÌi3`~÷;€ì}ÿ•@X°Æ9Q“þ¥c£ßë2YDfuË…QŸR~•ÒKà8¬!K™uHf‹z­Ãª¨¡Ï<ñÐu©n(w±Íi:Tz”ŒL¤6qXÁ=9õ>Þ3Òµ%ð}ÜDhÜr_l¶Ý:“íé]$–úbD‚ÉÖO‘³vU‡;#¾~÷^*Ôä]>)ÈÄ’«n+÷Ÿœg‘Æ­%v'.Ç:šDË›#|·y0}+BÉ @(ypp6ƒïè*±Y Ë4ŽìÌJDŠüÈçð&“P+g}Μ©=zôéÞ­\M–uÔµ—ìÐE!óÍ#ãÓ…öêNGaI¤èö——¥#I$Ž5gl€CŽ?ZÈKØ.çO1ÙBÇæÉúWC§ÝY@.$góåáP@äžüç4ZÊÂcΞÚ$DkÀU ÓŽAH3ž‘Žà£{c¤,*ʤNÙ-Ÿ•I玃‘׸¥}jÆK„Žåä‰-rì3÷>¸:;rù–TUYßvxíî?4»Šö9ëË£›j¸]à î…høn;^âÖá§V-nåAxRGS‚?Z.lQ¡*ì…$Ø× n îØéÖº <«ZZÇšV¹_´=Äå#rÅv˜cF ŒòÞëÅLÚKR–º[ØÃ©éÿiŒË.¡o#væ0ä’ÀÉìrkFÓÄ7Þm¼šJ--à+%Êŵòpì™ãn*K2ú(nìÄ–é“p!›Êœ·˜BœðyÏâ+.îûÃö¶à5Ýמ™–1wq3ËþË2¡ Aç!»u9ç .gdRØÖ{ ÷18¼´%á)ƒe;gמ2*†¡šJ.-Ö ¾i#˜üèAyDpw`nÈíïÅKÄšxÓA¥%Ý«bÖîA[uQ¿Î u`HÀ<~h½Ô.üA¦YIo¥™.Ž^K‘€$¸«šG†¤Ö$êÚeІ És9Yzm\a†xëŸjÉI.¥ˆ•?»@I€ÀÇ'Ÿ§Nÿ^*k{‹Èñqd2ë)‘‚9ëƒÞ¥ßdÊK©wPðÅöŸ Ž]¬qŸ“'8Î=ûzÔ‹)"(!»žµú•ÕÌ›®.&ã€\áxÐtíLi„™%N}IªWê'bð–5Ê@a‚6Ÿj’è[ËÏoçT.ØÇ—Éàz÷¬ÆH¾­Ôœõ© ™ãoç b±þÚ{‚´„“!Ç@8Á­X®.õò¯7]IÈ’7.sÐÜ qK¦é1kÎa¸F½D2-»)_0wù¾è?\z×cá¯Úëšc^DJ]Dë°0*TPz瞥DçüÁw²;i˜7'Ó<ž7 #MÝ«£ñ/ƒ%‚I. `A— Сxç8Ƨֹ?"HÇÊp§8äsëZFJKBYd·”W̨ë{G×§²tÄÊ8 p}럷¹PfÇv­Æl‰cÝÌ’‚H žp¾Ãü)J*Z0Z£§ë"þ%-, <}‹ð~¼õ¬,ѳ‘ÕÖ~ ‹Žy\ýqú|cé‘ݵ¼—<$G–I ‹sEÏ;ò}ºŽ8Ål\&“lŽóÜ"\ 7Âw äž ×*,‹Ý7Mkw5¼êó¯ÝaŽßçùTi Ê<}õÏ\úóõÎ=óK«ÎÓÞó–UxÃ)+´©Áã‘ù}j(f1¯—m<ž¿çÚ»£ª¹™ZX¾S •8þ•Äø‡MýçŸç¯~¿­w³²K!9ÚÝ `áoëYWö]ûÁÝŒp8Ï^7ÜÖšàqÒŒdÚ®jVfÒá””ôÍSâ¼¶¬ìPŠ¡G´´”ƒa Àç×¥-!ËhÖ–J¡ ¾ñ™:çq‚zqž•wÁQ‹‹Û™Œ*‘ÆŸqO==ÀÁ¬ÚkR–Å« :ëI²x×äŠYnQó7léíVu{ûxí[Ÿ!°@ˆä-ÎæúƒîkbúïN²ƒÌž9%“nè­Æ@ns¸öÆGOÒ¸ËÜ›´JªcÁ\%€ÈôÎëR®õæ¤WöÑÎþl¬IPp –ÏoJ箦žöd_1>FN3“Ð ¡{«I4­4jC0Ï–Ê ;‹Ìñ]…4¸ï¬¯u ‹¼šÍA‚6}‘´‡;W=2N<? zÖÔϿѵË*]n­^ÒÅÄR"34žip˜P7 óZk©xjÏR²»Ò§¿7°agûI²f@@ OEÉg‘]z_$ÑÚøsÄfct<ׂÐ1Ld²ÆYGm¹'ŒãÞ¶õ/ý—P…c|:‚¸$®zdã7ÖílKocâðÕûé3j’G$IT+!Ée`¤g±³ƒØÈidŒðノSþ5ô…¥ÄR·0B$ŒÛS8<ÜôϽx§‹´  VÔ­¥G3Ëö‹xÆ mHåNsùt«„¯¸s]œ¨s½Y²pr9éZI«»ÛiIR ¹'Óž•–qž;qžµ¯¤Áek2Ük63ÏhÊBEžS3àÀõ#òý1Z=®3¸ð^³¦ÚhÚ±ûMýæÀ`²t¦ÑýâIÏÐc¥vᨠžÞÏÃ7g«Ge5Ê—¸I!vk5L†‘X ¹Û‚ g8èkÑtx§½Òdšææ;µ›f¹…v€w`tËÀÉã'&¸ïw NéÜ󟈳Áa– aV˜¹`Œòàr­Æx'>•Ã[!Ö$M°±·K©—dg2vŒ’I8Éäž¹¯IÕ¼/tyn¯ ±êÐ3I(EÊL£8æî1ÎsžÕƒ7†¼2šH¼.."µ '’7*^L¨ £6;6þõ]ÔV›”Èà—×3D´–áŸÌ–I-Vâ5Ab¨ž¹ÉÏpx¨íâ½Öíu+[ë-:ÒÎtÞ–ŽR TîËÀ; 7ù4[ÞhHðÃæØÇ}lö×3nyŠ«“P€øz õ·áèQ´óiks%ªÝ¢DDj“\cÉ,UTuïÁ#¯‹4ZÌѽ£Io ¸¸1b|Ìtwìy®Çθ¸Ñ[£NÚ\l† ¼Ò¤Œ»Jó¹ ÅŽ1¶Ÿr-µx ŸQó´D· °™.H„ïù†ûÀa½3OÒÓ[yä»Òayõ8Á\Í÷¿{ôw^JŒvÈýå¢í¿õý~Çü&ð¥¾ÛÄÔ.®™L‘fCê2O¨=NkÉïd“Qºk«¸áI¤Çî­ÆØãŠ àõû×Qiðó[Öb¹¼1…¼:Œ‘»8?;d°8Ý0¼ûuªž+ð¦·á»˜íü϶Z´M*Oå¢ÀÁ;@Ê÷çS׃]‡ôá¯ÙßX_µ¤ïsh— ±ã™À1¢??&we0NH<æ²n.`³‚žÖÖf‰IKˆÆ×pGË’'7#ž+¤ðüÞ×4Ú}¦žá‚³nyðê¡@C’~elóÈ¡»+Ìëþ ½ðä+-ÙYÁÎd·bÈ0@ä1Ë`g­W‹MÓ/-ƒ¬·ÎBž^â[8`ëÔ½gRÑŸP¸c©AhådûW+Æ9õÁÎFJò?²ÞÛê†[ÔŒ#±·¸v 2@lõ¦;ÕÆm­IÜÞðÆ—¡ÞX_[µÍÍ®£s€yÛÉù 2„ñœçÔz vz4òGpí³IKhÚ[|©û¸è1É#֡ѯ.HÚÞÉ£“xTŽ2Á 06çŽ}=xÆ+Óµ›”Ó´(áÚ–×ÅlË»# [@ÏlŸÇ5r_1õ8McÃ:¤÷²ZÁ§¼ÖÖªŽ>Í^ rrN}þ´û_†š¥ýºÍmi*<Žp’¡P #“Û=3ZðYê,–ÁM›ijRÉþŠQHW„¿÷X ÆÞøìk |4ö×O‘´ŸÊ2@±JªvÊçÓŒw¡¾e¨nw:ͽ®«Å‹mGtʹÊþ;‡CǸÝCá·Úaó,Õ#&vHp»±ü8¿žk¨ÐšæK+h5ÞjF‹/9w±{8¶„"î ˜†ä ˆÉÃfO‘àWZUÝÛY]YÊ— Ø ÑŸŸÜCÔV}Ý»Z]2²´e[k£àŠôCU·Ôîîtï¢Er…¾Çp¡„‰=H0ã¿^k˜×´ëh˾ë‰\¢s4¡Œ¼}åäå@Ú:çŒã­u«¾£å3¬¯¤µ%m§–u!•_‡ðGFêx5U¥y$ÞÙlŽYù#Ú®G Þ-º\Á‰à|ít Œg<ðG½Cýà†uo—¢ñs[&ºbõÞ¡p4ÓmŒÁ& ±\²yõáYQJù#¹éÏÿZ´¾Æó£m -ÉÎÅù±ØVl‘4\©ã·Í¶Âf„ŠÂ<²ç°ýn}OãíPá[Œ†´Å—rîÂóÈb½1ÓëO #àó‘ÓùQ8Ýž§5â 7tlȃžœtâ¸ÆR„‚0Aæ½Jê!< ­ß¥pÍ‘‚bÛv†9¯2¬z£}Ñ™E¥W0€ŸZ)¯1KÓ½1 GF) j¶ìýiÔ‹œr0M Sœu¥1 S€Éãðƒîð8 qßšF§Ià} uÍvœ£@ “c®àtõÀ¯VÔ®w¾Ð ©´û‰8,[ñÍ{8j|שÉUóKB §–qœoëøTHs‚Kd môçüþT¤©ùˆêx>ßçúU» :ëW•#¶ˆ¬= 7Ý÷É=ùÏZÒm!¤TZiDHFIûňÇSþ{WMii=†œn"hÉgØ ûÇÔj‚ò+C%¤mö‰Ü*³îåGËßúVåÌ—q‰nº¡Ú¸þèùêk®oCDìh´‚ìÍæKåÛ@3#ªçvGOÓ­V²¶FS2=ÄWÌåm¶¶ÄHû³žO 1è{šðZMzâÍò—{0ä/^OZ»6‹-¹a+¹ µªÆC‘œcŽyÁíKm.¾ætø·¶¼ùä”?Ä@ê3ùTKE/ ãç¸=OåÇã]V‘¦Ï“}s{§-¿Úã,.f” T\mTÎFÚãê]àH-µ/Û5ܱ«@ Š'ÇïÏAÜŽ¿†{V\Ú6SF“EæEslßiš50»}ÈÔýç?N¾Ü×W¥jpø^Òt˜…K•D‚P%ðwŸ Êàœw¯L»ÑìnšIg·YãòÛ9—Ò¼ö/ éÃÅW%´ë§· ·“Êo'…Á‰çzóšÊM=Á;™zÝäö6R ˜QüáåÅ7 *‚ Onãó5È´Ú†©jÇhí;³pc$±c“óc’1ø ïüí+Ärê–òÀe’ÍÙ"Ì!dcœê?hÝøjâmÂæ–+hCmŒ³C¹†U@åËtç¦hM[A§g©Ê[jzM¶–ñ}‹ÌÔK ŒÃåuÜsžpk°ð&®ºe¤öé4÷«w,OöYPBÌG^~P}8CÁÍrÚüÖBÖÖ,¢ùK$‘´X’7É,ybe20uãš|·±6;ý*óMÑ"·³ŠYnµ+¼7—1Tnû¼ävõ5ÃxÏÃúðµ´Õõb³Í10”…‹˜@‚±=OÞäqǽj WOÔ­m&¼Œ\½ªa¬š!:‘Œ« 7=0qšÜÖüUa¬xy.ÌV­é=”·b ‘·;sœ˜þ.µ1v 3ÇJ[¡ouÃ&ùn6¶àô­‹«YîVԋĈi•@ü¾•%ö¡0m2Òâ[{KŸC#nPªr©Ïaí]O†£myµ,ÛÚÝÛ[½²Â¸ŒKŸ›ÎÏFbp6cœg•ÓkÑé}ÜMk 1Çã .\ýÒxx·jÈOÚ®¦—è±Ù2¿*OSŽ˜§§òöe5©És7Â>µÕ¤šïRg[h*Æ£ýs1éôçê+SÄÑh×M A!»ƒon6Æ€çž?‹§æ*MoÅ6º5´Úv’²EpŸ"Jv²ÅÏ998Èü>!mÛa¹i<ÀªX0êݳž‡ι”e7ylk{ÞK$ªÁÈ&Ww÷籨 $rÁÜŠs€{ã½zŽJäE2ÝHäsþ~žõU¦gvá[±üúV͈ܺŽÎ¨šé&ŽaæH§j¤ƒ%°î0O^çÑh¾9·Ðbu–ßûJîI7´ò\ d|Ç’7üÍqÑ­ÝÅ®W-k'ÑUsòþR\‰#Â…;AÁí×ôÿÁÓL¾k£SQÖu^î[¹ç•™ðF!PG@=¾µÖü0†Ù5v¸»Š?´ª……Ÿ;`wN­Øg“\„-ÈËUSÉoZ¹§kÒhsù–S0yFe;GQœc9é“ùÖr»d3߯&[kY¥l€ˆX3ŒJåô³.» ½³Ë-„¤Ì&D\ädûÿ/μù|su}ÿ!i"»·Œ™Vù‰‚‡åŸá=qRhšž¡­Øj–Ïóÿh4fy";0®@ÀàsÛëš^çUáÿ ®'–R§wÊí†.Fz{wþ´¼I¤xŸVžÝæÞj¥Å!GÚ̧’N[…Žù®“Ã×¶¶‹§¬†ÜÚFªÑOÃ"ª^H¬j—þ¸¸ÓÚðÁq"»Io pv`‘ƒÜ*Mj ´îyä¾¼ÕîZÔeÕ8„‹qpÿ8]Üù{Üé‚8ê=«^÷Kðå…ôVÛ¯nÀHÐ4$p<°»Pm9ÁÝ럠ݽÕôý'Ï¿šiHÇ n9|ã 'úu5Â_ÞÞi‘j6ºæŸ|·hçE ’vÇÐ/=½ºTêÑjí…͵ܶ"íû;ýEcò¤µ™Ø¼m»Xoº0»‰ç¨ fº ÇÂÞŽ÷R–òéÆÍy,!ãÏò¦zçò®FñmÂ^›Ké~ÑÎöXüжâCópHmî9Á4y¶Z¿•£qeg¾Õþkns¿“Iž´½åñl[G¡øzÛ@eMRÕme{¡ˆäª¤–PFGÀéLñ?‡¼3ªD°Þ²Ù´A¤Å¸TsÛ'Ž}³Þ¹kÛí>ÑìlôyÚþÊ5Ý/6"S€[Œ•%·g$†UÀÁªÞ(ñ<º…­¢Ko?Ø–ÙØ°Çï•Þzté×Ò’”¶drktiiZF‘eo`1ƒŽÕ]lSÖ¬¡­x¿LºÓF¥¦k þ”X-¬–f|aQƒ}Õl£‘Œq\Ž“c¬^M%åœ7vQÇ>ïôX#P gÁÆ1žH>¿¬¤×fÝî#»· ™ÚÒÕ`óHbXò‡úgÞºÆñeÖ™›¢è6±K¬K¹¥W$(\ÿê@õ¥¶¿×ùÖVEßi0Á|——÷&{"a¹yO)P˹¾ñS¼—àõ§hZ´ê:]—ölu”‚c{ @È„†èÙeQÜÖ—Iñ¡­^ϱ70A#KÞAçDÞ1¸e†w{Wj—°kÆ(¢ž-IÚ .á´‘žã¿¥;+’ÛKSšÑ,´­ZMOm•¡Xõ Ùº‚€ÂqLîùx$•É9v WNÒì5ˆit”y~×(∸€¤‚GIÍcë×0ÆŸ¦éïsFŽeeó2rÝOsžqŒƒžzÕí3ÄÙá$†âÅmž%m/.LO`ïfb¹$˜Æ=élõ YÄjåõÔSÁsmp]âÔ'O:[˜_…W2ÀÛ³s·¾NyiošXü¥UŽ.Eäcs0ÇýöF}1œàcÕ5»[ îÚÎÖÂ+ÝxþØ–¦fÚn²I•d…*{qžqÞ¸«È¤Öæ[™$‰nÓ 'Ÿòùüu8g€1Ç÷Ïtø¬gº1¬.–ÎþÒì’6î; ‘ƒÁÁô8ô­ìT³Ñ`ñ4 üjà\YË ,$6ìcå$ ëÏJÎk+½:gáh¦'æ@U{wê=þµ<Y___K~`Ù9‰å_$‰B»BðN{g¯^·.èQg³iÿ|s Âö+TQ!xZ4^Ûy@{V-楡øç_ŽÐkÐIb¶ÿ$q»Å7ž ÆÌ6çh ÿ«‰Ð/4m'ÃúˆÔe{«Û±GÅtUVÃds׻޿-ßÚu{KÉ„¶‰spê«=¢ˆnc‰g¨\Œgu`àï $‘ Zn­ày"ñ¥¥¬ÓÆÍ¦ºYÌÉ6ÖË›Ž{¢»¿øÓGÔ®‰Å›ÉçY²\ÊÇs(nê cð¯?ñ>¥.$Ðl.ã%³i;‘À9Èvùç¦qÚ¹ØnV(‘D LŽ[s÷çÖ´önJìNÝONñG‰oô=bå§Ñô»è&EHf˜nb„dŒçŒnöyO«<@…·‚Ö¶‚Ù¶^„䜷©ïø ¡%ÜÓ¯ïXõέV GNÇjÑSJ×û"H¼³$êqÈP‡æfõúu§ÅtÑ,§æ!Ô¦Nõ }:Š %Üû†T}ÞøÅ@å[ç=ûVœ‰êÙ­,ÞSy^Xaòüùþö{~•jì8Žæ­Z½·ÍçDTneÉ€äý>´‚?>2¶ÐÈÛrØLž#òþ•]l"·+€ÊxëžÕnȤ$Hß09 íŸni–ö· ¶8Î çÿÕÍñqŸcùþUê>ñ¾¡£ÛË}.ëØ¥òßn·g†Ç¹8àñÅeQ4-Î~ïO·°ÿ‰z,-g4¿ë'¼C¾ôç·| åïí%cqS”‡¤/Ó¹Æ}óšëõ¼Ôâõd7«ocò‘ŒŒž™ëÀôü(ÖE/]#•v‚P3? è?üªéÈmC$SéDd 0v89Ü?Ûÿ¯UŠ:•f :pA§K`¶ÒIöy ĤøÁúCR¸IÙ¤,FO·×¥tÝ#;\½ylb€¾Kl“ž‡¨þ}k:UÀ~½jü2Dm e <œP8ÇãÇʩ̬GC‘Ôtæ’ÕXg'¯Ù–F8Ë'§ÿbS›¹&ßs¯*¬ïI$õöëÍ<¸EpÒ*¦6‹ÝñŽã?Ö‘5,¸žr2 ¿ÅÛ“øš¥{r³\+)'¹#¯^Ô5дC!'xŒ²€I9'Ç¿çT²ñœšÜ‹JÔo¬ä¸µ²’X\€’ÀnqÇâ*-A}À†ê9ä’%‘ÂÿË69ùHN½èR[ ¯ey ~êd2©åWûÌÇëT®Ô¨g,ØÉ¯ëøT6²¬WQ¹Ë l•5ÕÞäÆPŒó‚NH+YŒÒÒm'Õ-$Ä„-¾[žFy4ëO\Ý_ÁfÁâûKä|™;Bî'øü³Ï¥Xð¼ÂÔ"¾eÂ!ù‰Œ~#õ­÷Öoeº{››‡‚{xØ8ym†ÁØ£ýå³ÔÕ„¯{!§Ôá¯Q–%Ø#U;6 ’3МsøÖ¾â¶Ñ­·EhŽ@Ãî8ÝèOµNþÖæÛ÷o¨ùÀȶçYæØ¢(¹ÎN1ò­.T÷)³~û]ÝZG,o–ì;ÉfÃmSÜñí÷±[:­äÚ\w_j‘´ ‡?­s¢–¢¤{­ÍÝÄ>[O3˪«±áŽ6¨8Š·¥ù˜YÂÊ7Í${ö¯] ãÓ°õªzv—{©éï%½¾ab'gTä=€È9ÿØÖc¼²ŽÜ>¤×:ˆŒo’ñаÈ䣰úU_¢±@—­¨Åm¾x}ľ_” bWë‚:˜5Ytbɳ.-.nSÍU‰rÄ’œ¶“’{\í"k¡s{tŒ¯*Ì&F!ŽpGËߨíÚµ¼K¦É6Ícj®ílþrHUåŽ{T]=‡±:x~çQ¾A6¡’³ˆÖ;™™Š9~ >0NìI隵㛇¾¶þƵ™g³ÒR1rê›<˃Æýp3ÉÇcV|Ei%®™¦Þ½Ù³”ÛI´o‹™¤*Çœ’ÇJ·°QṞ?¶%½‚2[À7\M(E !\ä¨TcŸU@¨çvM‡[˜÷öQêvF‡e0sl.™ ò„@A¥€Ïs’½Tñ—ˆá6ëa¦¤‚ÎÛ‰cXìîù½•º3t!qŒ€ÙȽNDµÐ4û™à„;Æ…Ò%ù‰=°çòÍy;™â5„j6v±Ëzdyóå2ƒæ.#¯ÞÈôÇ^(ÒÉeÖÆ$MΕ¥E¬D#‘ØÃme&(Fã.3Øäm qÅtZ4ðiW‘êFÐÀ.“ä“a˜íÆ~êóžœõ랬=~Ò køìu ï´e—.ÏòÁÏqƒŽ½tþò>Ò.¡E†6÷aÈUo(y<ã'û¼ž(NËQ½®jø‹[±·²áŽ%7$HÄG¸lèÇrÄqëÇJɳmrÒêg·Ya±2âÙØ–/¹¾ã(Ë`vî(ô¬ïÆ“]Øêä]Aoo"‡%v´Xo¾qŒž¾žõ¤úæƒa"C¤Z]ÜiÒF¡®C¾á<±Ü_9<D®Ò±)Yõëö›X+>!UWtÝ¿¿#¦3×Ú±ìÓOž}Öiy<Ò-îHùvÎ9ê\d mÞ¨·’ÞoŒ “j4I’¨:yÁõæ’îCue$)Í4`‘|íÉvÑìSÑjô‹›=vÛN46ÒͺF6‰Ëœ)ëÆ‡¦+Œ×áþÎ)¦[ í ¦ZÕÙîá±æ‡Lõ Öwˆ|Qw'„t»{m¨i—‹ *ŒÈŒáó“ò¸œñÅQoÛëúDë 5r["èêXŒ…'œ g¿áVœš"Ú˜÷:‘g§ÝÜ™heÅå'!³Ó?\g¥dKªËm“7Äå3d7¯µ[Õ/#½²i$³Xo-."`RLuϸÇoST´m*öïPHôÕó."eŸd‡0Û²OeÊõÇLÖ÷ÓPD–œa‘Òo1gŒ5›ü¥Ì§9jÌ0Q ƒ¸Ñ¹ÁÊôÁô÷úW¨ø¶È_Zÿkjèëect±ÊÖ„,‚#µXå²$+Œd½yÞ³V—³Aer—6Ë3y7*r’¯#p>½A÷9ólc%vT™ÁÚ:lԆݳDÅgåqóc¶J}ÌPÆ‘“vFO==¿ ŽÌ“2ÆÀw~x5¯™$Šrwjý倆áÎ^Ü><Ý„3×i犣̽¿¥Z¸¸óR$K"a‰PxÎ)uȉ ;1Ü8ˆôÔ7çM±’àLγ4l£;ý>´“L׳™ŽÅfÀÚƒc¯ù÷§ÃwöYÆAÇBÃùþ´íÔ€˜&¶Žæ …½üg `O/#,Æ2:ãÔÕK¨a·[EPòÜ|èÊ`ç &¸=+ §>g˜ uÏ*ôz‘Á•ù)³p¡ÏáùTØ.',Ó–’22AÕ@ãÿ*±c$P\ÃåÈZ$‘|Õ$âEêÀôÈ8éUDŒY‹ aÐzâ¯Á£-Í´w6_h stÒµ`†P9Æ3œ÷¦üØ =…‡›q4·B·åb‰wÉ3Æ{â³¥kyÛeµ¹‰T I¸·<qú~µ©y-ÝÕœOr­wŒÈ~›N:c#žµŸK\9PÛ²3ü9þ´ +µ´±!Œ@ëÏ##޽«°ðÍŠÝÜn-äÅj¾i”¶åÏ8ã×ç·>µÍGp"´Q àœ. V'­lé:³iðËc3¢,ŒD ‚pqÄsëJwkÌ:ϱǩo’9ÄrÄã1ö`:äc?Ö¢Ôt€¨eµUó&!CmLOåÅb‹à÷@îù€å‰œtéÜ+tx’%‹ÍHO—¹A†¨bjz-µå´Odª²Æ²Fè©Ã“Ç>„~|×,Ri—ÛfÊ“ÊÀàõéþÆ»½–òyÀ-‡+Ï=sùTÚþý£k(]Âà)#ïÎ+HÔqvdœo£¤ûŽÜyg› œŠućE ă«§éYÂWÛärŒH,9ôÅiG1žÎ$ã6ß/O^ç×þUÑÊÒ¸®fÜEµ%€$eGjâµÛb¬q޾ÿçŠï.YU¤å—åÍsü£,9ç‘\؄ڹ­=š8Ö$â—®3øÓÝpJžÆ“¯>áa¼öãð£æõ•8ÒPXóŸjù²IÄtüéëè?ý~õ¯BÏQøg¥Ò®¯›‰'sñü æ•zN4ÅŽãhÈ Dì¿sÕ‡n2?J£àíYxNÆbÌkòãf‰<~Üïy½›çUbàâãòýzvõ©ÇÜQ8¤ýæË7Ú»ÿgI ”K¸ïóvüÄ’:ÿ?ÄVì0>(¡”Ir¬Zd ÷G<“ßœtõ©à¹ñIæ*´2Ž1ʺ=zvéVì|!¨jw k4ÄŽ@ó2ÿgœþ•_ FSØYÙ:[\Þ <ñºi"BL8Ág'§áÞ¯E¤Ø\Cnše½ÅÄ"}÷“…cvƒ€1ÎsšØoG3…ŸS•ä?+˜Ô`6pðÕÿ išƒi×Þ V‹3Ã,¿7›!*7$c¡àžœÕÎç¥îY“7Ä >]/M°ÌkËyÌ„õûÍ´®{äÎy®âéåùÞbò6c’N­zŠ4Ï økA{ P$Õ' ,Ò*É*Ã98ÂŒ>õÀCmh!¹¸½¸• ކ=Û¤ëÎx øç‘ø”ùV£Ü¦²@ae’Ø´‡îÈ‚?ôÙÖx±F€ËØô<ö÷«ú^Ÿ6£+5´2L!ÃÈ‘¦X®„w>•¯{¤Jú„6šƒÜÞ\àÇ-(QJ2ˆéƒÇ\Õ¹$ô§…Rc}"FáÇ\×ñ&¬±O4.ëò¹W@£ïŸ¼+~æÕ4mÞâÒÚ8Ä ’Ñ€Û“íùšó¸­.õ›ø­Ã$‘¶rN2zœ~y¬Ó»lºÔ%¹pÒ« *©=»ž)gºÊT3Œwç‘]ør,WÎÕg’(åÅ«åÚàžå0ôæ¹MHŧݱx0¨6*;Î3ËSžÝ(ROa”e»‘„‘•MÊ0½³ïß ¤Q·œZs±Feˆ„Èwí'·~jäÑͫڥøH"…%6Љ‘‚ 9'¯g^rMKýˆ.5[mÊey%<ª RØÜqÆvéR哹ÝÅkwq¢ØÝA w÷íj·¯)ÆW•ÎfÝüܤ¯®xê2{ñT¼K®ê>ðí’ÜÛÁm{|dÌVŸ»Š5žK9Ã’yï^}ÝËßc:×Ã÷«oªYéqêfF“|L’ypFÃ!²¬Fæ#Ó ŒãŒ ]BúæíáÔ6Éqt ÍÁ^qÔ1[°kº…÷€$6Wwmqk7—$ò\Ÿ;jà†\0Bóî9®cO[™/í/.¥eX—#œœîõçüi§dÙi=™±a-ç‡g¸³¶¶‡xÞ\Uó~VÝß=ùÅV¾±Ôf•$eb°8ˆ›f ådò ŒŽIÏ“Ítž&“JM&q:]:“@J«Àá†zóÆzÊÐumzÝ£»,·0ü­‡ˆ23ÁÉ?áSu{†¶ µ+‹û=+Mº‘$6"FóYƒ-È= aHc'5ÖøNŠ=J RíÍÌiXd œüƒxfç§Í\äZ[4Ry olªoÆÌ1ÆïN8®ÓOÑõKt]:æÒ;i!- ¸ β•´´~tzÙ&£«\\ùI¦é¢òÌS³É唌ŽXž‡ìzÕ]Rê-DŽ=*G‚òiT‰•—qŽ<žœzVåÕ²ØX\Ëck»hÕX¤`y„tÏLõ=zf¹0\\x‰ì&Œ:[ªÉ5ÄÒïub3²#ŒùÂzs»ñNé븕š9Yt+ß ù#ó<ì²ÄòùqÊíÛæç9b1Ów§º]:ÃWÔ¬o´ûÝ h0T··ãx¼¼4–ÈÀù¶žxï[ÂO¶ÞIa™Ø-ÐmX[Ø03Û¥I¨ZXÄúuÙ··ŒÈ¾IP¬zUXôéÏ'‚ÅzÏ­^°Ó¯ü#v"†8î~ÑÀoM8%ÔãÎ3Ž™®+K¼šÎèÅ+J"gÙ,Aöîê=Ç~õêÚ=„ ¥Èð ×Í,L¯)y"ìHf$Ö¹œï¡r)_VÔ,ô_ ͦ<_i.›bû^XÜml¾àñ?y•ÍÕ†$§Ç’ncåÉ{?1B¶ÌrÈfÚl{žÏÆëw,VöWÒ#<$›CygÜ@;Ïn1Óþ^wäšâ ÕL‘ŒO kzQºd\~µ¡Þh—÷V3²È°m>r±Õ‡s×8?ˆ5B{K‹U•ãYPú£ «~ ×xö®§àÿjpªN‰æG1•™Ë8ªgœã Ž¿Ä®GR’V—2—€–aö`§j Ý'ŒSžž•ª“‘:à··Kt¹•Ä£z…[ woàgá3éó/9«Ú½¶Ÿ$bÚ?1n`Ü<á’ªpUéž?žzÕ ¯Ì#VI«ÆÃ9œr;AÈÅ]Žî{‹+Ï.šP‘+3q“N@þÔ‘T¯°;n7í6qXJéi¸™Ê£+8/€Iœõ¬¤Ë?l÷͉N@Ú@䎔‘JH“×= qM °q·rž¹Î1R¤hÑ9i@—p˜##$žqÇ~p‘A g¡õ>õ/É䲯¿3 ¿˜2 ûµlBÁ0·W†HÎNAô«V÷wVfÚú71²HJpddQ؃Áª{Ø0rŽ2 \ƒìiñ9û;»)dB1Ï NHþ´4¬5/šÚckuÅq4öûîš8|¡ Iˆ(6Ò~øžxÀ¬éoå–Ö;VÙäBI|µÜ¹ä废Ç=ª´G,Fâ¸ÎÞ½k¤¸Ðícð½¶²¢b²ÌÐ$‘ãu!˜ò€Á“ê\Š‹(î;¶4éShö–[ØL‘¹'€É$n¯â{Hb³L†°ÊswT+Ávç 7dqÀ¬Ëc®&še‚ãÊÓáù‰-ƒ'7UÉ;qœwÅC¬ÞÃqefIfHÕ|ø£ÀôQôÅG¼äX¡öÆYA U”céÚ·lnæµÔ4ɼÈ%ŒÛ´›Dê=ó‘ŸOʱ¡™Ä!ŠÇ!‘q¹ÆJý=*â6#†dP| QzäôïüªæµØÛxrdûqJ¢yu‰‡¯ú×Ix6'uë\oƒVK‰Ãå Ž«óä×_|IÊd¨9ÁÈük’z0<ÛÄR麥Á;¶Í:*‚pÞŸýzÊɵJ©-Ͻwú½„W—‹eåC?ž;ñ®KUY̱C#$‘®Ã¼p~£ük¦Gd£/%ð‚qÉ¥eê°„är8çëZŽÁpPcw8@ôª×è à29Ï¿J*ë©îyÕìe%8ÀÉìzT«GXˆÇ;`pOLb³ëÍ‘£Z‰F(Å© jxõ¥¡ØKW³´A“,pãYÙ`x^k´øSiö¿Ù1+¶ÝYØ•é„l}y"·Š»E=ìÚì£Lµ¶Óà|yP¬|€ øã­rè’݆ò+1Úsódtü±ùÖö»½žGŒn!¶¯8ùþ‚¨Ø [us%Ê¢ŽH¸æ½˜´¢pœæâˆT±_oóÓÿ­^§ëwñéW7WÖëkej™I‹‰¸ÏËŸÀg¹$z×+§iZv¥$÷×^a²‚rÌ!R7ò0 v##ÓëU|câVÕgþÍ´ŦZ°ò’4رÔbN1ǤM{F•/¡rOˆ“QdEéÑ–ýÆù›óî9ëYÚŽõ+«’öN,a\2Dª¬ASœ–#¯ÿ[Šæm­®n&[X”3¹ÝZK«‰>XئI*{ätôæ­øcÄ:Mž*h“Ì-–ï,¨\³¸^9ÏëS;l=ΓÆZÅò¤VP:[»B˜1rwf01×Íxä×>|»åMÝrκOø§írÜK§µÅ¹»_,–`H‹¡\õïÿ×®rh£I–í4… ¥¸÷éDcʬ$mhfÎÚ)®µ?8Ûyf%‰27ƒÁÈäàÖÏ‚dmGÄ2=…°·ÿFpÁìt#Žp:wæ°uøµ4³mRÖ+xÖ%·„c8x±ÉbG<ñÏ9­­£´Ð®M“Iku$ë“Guó¢¯?6ÜmëŽü篤5êmMs;~›­g'Øìu©$…Þ5D?gfl±rw` ò0:ö­ŠMc{á÷¶‚¬ö²£cc¶AÚ„6烒;t¯/ÒµYíu[‹¡+™&¢i Ì2þÊ:çéV'Õ®¥bf…]°CHùi$$ ±äàJäJÆÜŽ÷ìTÓu÷.#•0ÛϬ¤Ž¾¼äuÀ«wW°^ÞCu*%g–,ðA‚j„ÒÍpCLåÛ©fŸÏ­kÙY\:[ͤEÙ*;¸'ÜJ[=˱{]A²f¶I×Fã ®sóÅs÷6²Û•‘c0£0aóWÇ9Søô®›Ä‰5Õ¹iÙ<õAŸ,q'NJͱœÏ¤®Š-î“™ãs& ä`®8ïüÍ'ªÔQò"Ón–iTO4‰"†2ÀöÉÈ=çžqÛ‘è¾ š;´vŽp—Û|“'%:®Zãô¿ý¢×ûVH§U7yq!ƒØ1ƒùã¥néöVðÏ ±3¬ ¥·àn,GlŽ:æ¥ìL•Îîyì5¸otØnÑ¥ÛåÌbpæ-Àã#ùf­C§Gokon’kp1+¨Ë`“€O=zå4›Ëm?O–8ìá²»'÷Ž>g“9$ç©=kBkϳê(·³£˜öºÈß!“¸ƒ‚Ä5¢’zõ0q{wS¢K·ÌH™”âCŽ?óÒ¸_]E#Çm<—1B¥®#N’{±çsþEX×u«J9^)ÛÎ †TfR§ÓÒ¸½WQ¹ŸLk(Dq;vØK7Êr¬ùÆ àŽ§Þ¥¾g¡¤ ֬ɒo6ÚI¢)\ˆý:vÿ=(°ÜH»‚ÈfÿX„‚3ógó?…a3‡•V2vާ$næµ/5$·µX­#hÝÔaÃ.1ÜVÑ‹l©;"kÛ¯±<–ÖwTl¼Àcæþêú{ÖVÝà1FM‡s«1ËÐÓ#y'šäª±`½y=é²ÌÌ 9ËðsþxÿëWLb‘‹d7L&•‰è? K+pµi¯#ò¦Ikµ<ÖVÚÇå ñ[£6W•Þb3ü#âk¿Šú+‹{Ycf $jŒêÀlm Ó‘ù^|Ç€:cÔÖ¾Ÿ}p–~Av1™Ef$'®ßLðN:‘\µÖ—6¦;WšÝØù˜Ü““¼’ß\Õ Ëxº…¸µ¸’2$*¹QÉýxÏóY7y9u$qZ¾" ‰ïf‹Ì†÷O”Ã>~;z×$R‘Ñ'ÊŽ»Zñ)âÉ![ánm‘c)n’‡R2’y^{Œò;WªÇÜ×WhÒ¹”™=X–ç¿#Ð÷ô4—ÒÍ4“6ÈÙ'“ׯRjÅšI2Êð€Í YK n¡ëÉõëЂ²¹ÆÎãÁúÄz ÅÆ‡pÒKes,RG†Â¯;{çåéǵÔêþ°× ³¹ŠBmŒi—)ÞÜ’ ÏÝäóõÅy”׿aÔÝâØcÿ–2Ë.„c±ä`ñÈüê}3ÆZ¶‰å´3E:¢¶Õ˜¾É ãçU 6?ž3Pâþ(ƒW'ñN šÒq$Gä ƒvÎ,Ùï× öï\¡!·±\¶2qßšÓÖõVÕof¸·gŽ7cBÎ0˜_˜ÀõéÏãYÐÇ**§gß¼¶¤´B³…ÚǃÛÞ¤Xbò‰ga þ3ŸÆ¶týê=R +ÈdA…–Co"4‘FŒ`žG\uÀ¦ø£NµÑõ56-}euxå¹*e'%X°cæ>ô)t ¾TPÇÞ+œ`WàeùÛÀõªêìÎ#8ãŽOõ¥Ý·‚rèkO2I:®ÐHBrqëRD#mØeEÆB°ã=¿z‚E1²mmÊÃvzÚœ’®cvMß+(b3õ”X «›;§[\ lП•áŽbK`œv9힇4[ë—ÚD++‚ÐI%pT1çÝn:ÿõªœ"Hô’òÜ I‰1ǘ@Ï?îÒ© ƒŸÀš…ï±Wìk_‹Ë&™dŠõƒÏ¹ì‚ëíYsm”æ$eãsœR@¨d=³I±Ô–ªŽrx«QKbnɬçdo(ç ÓëZp%£Ãíá²^ÜñYÐA–‰w¸Š1Ÿ^jÌSMßàŽ¡M vÏZð­¬K§G. 9à àŒíô§Ü13)9ˆú~uá-qD9dÂ<?zÓºÕm%vä³á‰ãiÿ8üë†IójQ, [Bòœ'ô®]ŠC,×¾YUÝ‘òðsŠégäNeóm‰åIüÇëš©qaý¤a•š8öå }áÔg5p÷]Ær † †Bó’9?äÓ.(A$ÿ{г} E,®°„‹Ì(éUå“c¨éÍu4œnBm;‡ˆ ÚÛùðo¥s§Þºín/25$”ÇPÎk’<W•QZGC×Qõ¤Àô¥Í’Hà_zô/…KäÞjW…Iò£D\uË?¥y×=3Óšôï†À¦‘¨?¥•6žsòä’+³ÕB¨íu×—­+s&yÎßC“óþne(ï´€ynôÿ?ãSÎCœË–V|‘ǯçßJÍ«¾ZM«Ü·'^ÒŠ9±=ü‰g„#1.D„í,NK{õ«–Z:M0‰í$ëë©0ÄŒ1ʨœã…ï•HK«•>òôç5ÚY(1kÙçy›ÑJ—`Þ‡Ÿ×W5OuY#?Lxrí¯ç[–²˜†… vnò>è uç5éÑÆ[¦#M ¼ÿ nãÿ×^O¨Ãô1I¤]Iz5¸F‰/ƒüYÇONzW¦ˆ‡öL«ó”ì³mÆN=HöÉé\•uÔ¡ñi¶º’ÃpóyW±n&KS·%'ÿ¯Û5ËÝ麶‡ªÍq§IkpûšEµˆ•“iR¿$œÝúv5¥¨Þ]G«ÿbÚ\H’ji椤l6b0¼ð2û±žù8æ-üim£ÉrºÅ¬×žã —hTÈÑã>XaŒ Œðzç<æ¢7·èRE]CAñ Ø‹û‹Í:5¸|ïÞWmPN1ž óVôÏéþ¶´Òîm/­o£hãºU‰ FX`œsÆ9üƧã·YI§Ûé¶Ö¶$*ÆCnsÕõÎ9ÍssÎÓÈÓJòI+d»»f>æ·P”•¤7c_Ä:¾£«^È÷ÓÆÅ1ØdÝ ‘‘ޤõÏÓñ£ÄkÁÒ 8 `òóª#s+('zÒ” ðXãŒr9­"’V°ÏØ#Ö—Íùp»F;ñ¦ É'éSEk¾ÖK†,YTã®8>üŒRnÀ½C¬G~1Ÿÿ]oøz–ËRѸŒ©Ï<“šçâ²¹ºÞc‰¤òúó–ü»Š¿c<ö™¡fÛÃ.îOp?½À®jñs…©K–W5­tk‹µžxÁhíÔ»:ƒÀëÉÆ?É­­6;I#Øñ’DzO=¹Ï5›xŸd@åü›…Y#äF@l£¡ô5 wú· ž7Aö"¼©]îzJ×E«ûHí®<¤@d‘²‘‚IÜzŽÿJ×¶m¶¡®!3@FÜ!ùýk+NÖÕî$–Þ;’êBJê ˆçÁÏ c·z²ú‘kT¶-»Y˜&¦RQ^aJoÈÜŠX.|·r»PUÝ–#éÞ±õ5îÕ­'xÝ¥IBóäs‘éUÑ,LŒTÉr#•À&ÛkG¸òS‘Ü{Tª×¨r—Õõ-*ešIVö+BJÍz¿ÞõàuzÖ¤Z¸ûŠÊÓ÷r–F\íR3´õïßµ.™̱ؗ‘æØe$#òO^½G`xæ Õu;°Œé´( å¨Ã¶zàtcÝqÚ­K­Ìo¥Œ[+Ѩj†]Ѥ‘C*î%Êã·'½?Tñì+å–yõ³*¨ëÓóÍR¶Ö Òw‘É4Ãýg!çî¯AŒŽ•›&£ ƒç[‹§ÉÃHÝ9ô=jïr¹-¹ê×(ÌÆq»;r·åUΧ •¥;Œ¬,£zzwéQ\ìrYB©ÇݪˆA“ÉëÆqùÕ«-„ü zŒåYž1µ¶ •#wøÖ••œv°5åÒ;ÄQñóž{}?Zϸ{¨nͽámØÊ¦íÀ20:µ¼Ì¥ª#ÆGÌ[ð ­]14ÐKàò÷ª=rAÏ¥d}À7rGL~”ðFãò ìÔå±½¬E§ÚOn¶–¬ˆ±#³³æ9Ç'þ½sú•òÝO” åºr?*–õåû2o™›"‚sYdànzõ«Š²ÔCÒ?=ö€9MiÁ$JÙàí Ë‚B³zdsÇJЀdP£Ó¾k&tÐ]DºDtßü]NoxˆÇ§hvñŒË< ¿'‘‘–8úŠç%“b|Ä žxëøUj[›»ÕŽi­¼*6»Àò¬è«±ÕfJª±T,¹=(t1ó¸w¤rBO¶)ÑJ€é¹só rz)ÙZ|F¾[t†ñ"¸ò#+nóBà¹q×­e<šv»,E®’ÆiIüÔÄ}‚ÈéÉÁœäóXN¨Ü«†ê3QàŒƒRâ–À™¯«h7þÔ^Òy"{¨Iæ[¹dèA =Åjx§û.k-ûHRI¡a~ÂRÌò€½W8R lž3»§JçÒárüÐÃ9úÓ¤c$€*ªn¥>[ÛP½‰tËág} Å™Z)X˜ãåpÀ‚}¸­=~DÖï<Ñg³T™|ÉØ?É ƒŒõ'8éÆsX²Æ…>BÙÎÖúSüéU"#“!_v;síÚŸ-ÝÐ'bª„É]­žù)C|¹9È«“ɾÎBB}ª!œ½6çäýá»9=@üã·ž³ž"Ý#0*ÿÝ8ÅR¿Q2#4MÖ_œ‘†'€=)ШT$ðTõ‘ïŠU´ó-ăÁ;u¤Ê0@g©íUaïà’Ö8VWŽO=<ÐѶì©àg߃šJUŠå÷ŽLSÞ lâ‘@Ú¥†äŽÿŽ~¹¦F±²à¹úÒIØ Hå´X<¬ÒÌvƒ·å?wŸSRµ÷•¥ý…™dO3hPK¸àõè>žÕÊUŸ'Œc ãéH›Šœð9¤¢;›=½¦ Ïm4+™NəʄaÐ1þMfKmök‡‹xÜŽQ™r’8=ÅG’À¸xPŸ™<{ñ[zšˆ­>ÎP³Û«¹Ú#ûÇÔãñ§ªb!°¹6¯ûÍÆ2FåèG¸³t©4o{~pažµÍDËží»ŒŸçZö:¨Ó~çÍŠHÊIãú> —Ðw šá<àáÊ Æå'¯ù÷«0êÒ@Åã`b`P©QÀÇÏ¥f")Œî;ÉÎ<|Ò¬PS×íO‘ufh ×É4^d]<Üâ qýìURؘrØê@œûÕ+twQVÝ‚F;ÞßÖµ¼çK*¤K‰C*|§†ýzíéc°ŠXÔg™èn¿­^k´L"3®ðÜÈ6Ä­† ØóŸÿUbN©Ic÷ºŒ{_þ½_Z†òt›ØÒÞÝ®¯<<€~ŸO©®yųDK§Ä$š+cÃ%˜sæÇŒ+H²ÈÝ”¨`1×v+Òôûöy.$¾‰ì„>k3> ·ñOýk„Áq®ÛB“€—ˆ¼#HËã¡,@ç¿¥j[^ͨé_Ø+l–7WåbÀ ȰÈÄ1;}Fîù?qÍj_C UפÔ5kÈõYXI Óqr-÷{±#Ÿ¯z´a¿ŒD“0”9—hàu¬yšÜ9­2ɼ7eÔ‰DÊnÉf€8ÁÏN³lôã5±gjŒ¯Ëßçµwš·„×YÀŠáíä\|©ÂŸO¥eI¥ÜézUœq˜ïº9,0yÎF8î+w™˜zºò³’¹va,K"m ë’I>äæ¡ÊÊ$ å[pÛê*þ¡GrCÈçžÿZ¤‹$nCã9ôéùWÕI+è_ÜŽÂRß1$“ÜwàPî¢UòׯséÏΫÇÔ ’Ù=±V™*1ëëþÍ\z3Iל“ÔήÿjµÜn,Üg·ò¬ç£q×¶=jÄæÛc‚C¶#×Þ´NæRŠZ²¥ë4®ÌØÛÀ_Ƴ¥Ã8]ËÂýìæ¬\L …ÝÏ ’)–ÖOw»c.Wœ€©®ˆÅØæ›MèRš8Ñðä°ÏP2*Ä1‰ ^R_9ÚìÏJXle½3,+½-âiçp@ÙŸ™°O8ÏÝ'°¢=E­”ÅnËòä r?3ëÖ·ŠÐŽM{½vëR·6®±FŒØÝ·‘øæ±fÿkÌ&GQ™ÏNõ5¼~|D¡·n=Æ:Q$Q®Yzžžõ¼i·©”¤‘ üÒ œ{zŸóšŠWÝ?«asǾ* Y”sœ­v#˜ªÀIÉÇAÖ£uÇïŒÔíŽéχëPsŒd{»ˆj|ޤôÎO«B@XuùAïYÄg°ëÏ5"JÑ6>]£ ÿ=+š­>u¡µ9òîZ"9dÍ/”ªÃ.%GÓ½Aypf¸šMåÔ· z8þ¨žg#€R3QÉ E*|º°©>m‡n!zþtÐ3Ð{ÕËh¬šTYîš>yshÀïœÃÛóך»yg¤¬o4:ƒ«·1À-ŸHÈËs“ŽÏ8­¹‘•ŒxÛn 9àS™Õ¹'šÑÔ<=¨i-ê¤e.Ÿ¾FÜ£¸ ‘U¢´i¤Ħbs(noÊ­;­ ±M‘N*h¦hÛ~s*ÕÞƒ©Øîótûœâe ÷Èõ¬ò PTä„w¢özÒúÞñ–ÃPB¶¬þj:a^6OU#‚=íMÕ4¹¬âK«ä’AýâvÇNqŽÕ®Ê@|cœÖ¥ŒðϺ+Ë‚‘º½”¶ÜtàP•µ"Î…eezo¾Ó$¨Ñä‡`¸Æ~u…"¼æ·ítÈ5 &›q·QŒ´iÏ‘æ(<È’;—ëŒâ³KC(@„¤ŒžÕI§qâŒ÷&—±o½ž§Ò¬=°hP¢–f8éP0hNæÈÈàU'Ü ›k'ŸÃs±‹&9DÉ!“ï E^rFâOLYF@ЈÀ»‘ü«FÒÚK¸‚4ꑤ%áfaö2£œŒŽþÞüæy$e¸Æ:TG¨Ù4aá8õx ýt“È[Jªÿ³×ñ¨&¸y›,0qƒÇ¥ eç=ªÒê"Ì¿i;ªº‚IfÀaíïZÚœmm!f‰#B¿ {óßùÖ,K,…bÉ ¨^I¦»Ë+v.@ç&Ÿ-Þâ-Á›€’3(,N8P?—JcÊXpNäö4ߵȈ1• ÃsÔ›XNÆçéNÝÀ’‚æocëZ/(¢P»Ia·œuŽêQ¹Îã=+I&–fHó¼0Ú¹ôÿ=©µa}¦14me0 ÝäóøUÛ‰ ¤dòŠ¥N=ñýk.x ”þCó"òA?Ö®E"ìåB£ã'ïÎqÿêÅCH¤ÌMLd®ìô®P]—.:ó^…¨®øþnõÂêé¶ç>½³^~!hmQE)ö¤çÖ¸ŠýkÚ¼7‹àý6pøP­‘Ó?9¯CÅ{¯†¿€l—€Fëÿ] z7ï™V^á¼?k›Ê$!9ϧÿZšt÷IÎÄrN§5ò,¶ÐsÎ=j ÝZYÐ sÃzJõZlåEMBE‘ÀIÇ‚sT»##À6쓃“ïíO“vá°Ôóš…RÈ'€ç#ëÅUŠF»%ÅÝÜ£N’#tEåÛ©SÓ,{$ãéìu<â ]"ðI=ËÎÌ]ÞYS…D÷?™®r)®,ÚÚî9ŒR£±‡:þ9"ª½¾ÂòêrsŸÃüóXJÑš¦t>/I¯5x5%T_Â&1óŒãœ75„ÚÈêéo{lòù€ UÐôÎåaÇáÏl`šÌ[äI ¹Û„/Ö,°cŽÜã¯øš§âEÊ2¶Cá#½G+qåc=ƒPñ|Z Z«µC$Â6ÑÝÏ9푟ZÆñ,¯m£:k†¹t]³(),!¶Ô qÉõ®o¯dRw¾'cD€û½9tôª»Z$-œŒgïa=Ǣؽs®ê÷S,“j7>bà« ˆ?^1Ч=äò6ùç’à¾w4ŽIÏãøÔ¼·¡;W$‚1õªÌ 8Ïçë[r¥°ÝN·ÖgK%•"•ÉÚ$`»½‡½z ì?Øu¬0Ü,JP¢>’F2:Ÿñü+ÇÏ ü¸üjÔ÷vð‹xäÛ<&8ŒâÛÜjDZxsÅz$eíšÝlÐYœã,d‘Ðvúã$šÙ¹ñ^Ž«”¼‰•O¹²9?…x}¦½i°C"ýžgó^&@Wv1¸z*¤×’ÎXÈß+uŸZÅÒnîå%ž«yñ#JyÞ%ÌQíÂËoV?íוs·>#Ÿ\Õ’{‹³*BÄ4J *£`|£'žsßôâ@fÿhóƒÉ§î1ªñžXpj'I4Ѥ+MÝÜÖÒÅ·“ŽøÏNý+¿ð¼öz¢º€¢v'a<Œâ^;ƒÆ+Êå²hôãUs’u·iQÊIåäH3ÕHc¸?…[…áDz¶@þ÷éW¯4§gÙP칈Ÿ´«1¹á×wNzÈfeS%¾ñâ Ýß5Í$âtÂQšÐuä)~l"V‹;K²ð¦~™­ï é ­Û#À–í²P&[˜ƒdmù€üÆ+=_É´¸²ûZ/;ðÔäuì}=@ÅAº–êúzHm i¨x›'*zåsÏ#­oOkœÕïnSzãᬂwAlá ·oõNH÷8%“9ÏqøT:ßÃ`$ŸK¾xÃHC$¤´q¡í¸ €zƒÛ¥mi·ZmÕƒÉ'Ûa¡Šych\™:ü§!‡¯§•‘ªEâ}®e¼Š8DIwâFPÒ Ó€™úWLe¦ÇR½®yø»›CkëkŒGæFcƒ¸ê1é×üŠ©©Ø‹MJöÑ 0µÄÍÛÊœ1t, ñÁ¥¿óRöbY_,I‘ “Ô}j´’ïn†´[Û¡mÚÌË@ùð«·(' Чu9Î;œîZ¸Š^"©ß|½=«¾ ÝG$÷Ãxä`b©Ê õVå¹<ŸÓ5Ð5“êdr¤âI„¥ XÉrÞÏЯÿ¯®$Ê«®õ=½¿È«Œ®KV)‡ FI鑚‹+ŸéаDnı)ø’MBÊ‹ôÈëZ[BHK^1“ïRÚÂn%¡r{ôžIp6ãÞ¤[aþ¯,³w/÷½…ÔÜÃåJñû¬TœcuÂ6;Òîl“´qŠ#,2¥FÓ¸ ì)Í+¾ÝÌ[hIãü)’G³×®y¤_OëE»4Ï#ùaÝ›(,NÑíéMI&‚A$NÑÈUÕˆ#ñàè2 ž}*A2*ìtzƒÓì…rHµ}V-‹¥x«Ê ¶¯98Ç'“ë[xžÖîÔXë:=œñtk›X„7;¿½¸pNq‘ŒsÖ²ƒZÉÖO-Á?8$î=1íUž"‡æúsK‘65®­t UΙ¨Ý")Uß"ù¼Ž[äà€p8÷ö¬Ù­ZRMÊèùÃ/¨ªæ6î:Ô›dŒ#ñ·qöÈÆGëF©ræƒ7Ùµ{"Ȳ+J£¤7¡ÏÈ÷¥×¬_MÕ.l:ý±¸÷?J~y¦ZêqM©ÄÞNà|Äc˜ÎrãÐW±x«Â¶ÚÝ—ÛžÅRhÀy¡<;g€r= ‡%XGŠË Õˆ‹y+½TenªÃ ÕkydQ7ÜîG\{V–©i&Ÿ4J¬nWy'*r‡Ð碴õ M5bQ¤Æb‡„ˆa°Üî玜c ñެ-E¼‹=Õ£Ý[󈄂Œ~ècŽuÇzm®]ˆe±+mݶãm#+ÌÁn:†§_ƪJ7 §–§$íÏ?Ê»°‡û2Û{(®m®$6íºE%>ê8pÎ;ñÈéXÓ[-¼qÜIÍÉ™â`¨r~é$6Ò|ûu¨SêÇc ŒàsŒ|¸8zŒñè+vÍgÓ例ФÜvKiy*ëœm9)>¼Wn¢ÓçÔ].ôwÐÐD[Èów¨!r98#8Ç~HQΓŽWü:fŒdÕÒê^‚Ð+Á¨Ú^E&|··˜7=pFsXóisC˜UðA(yÏNhm=P—™H€3‘ÓÞœ®‚ʬ9È=*Ë¡Dòå?)ç$rùþuUÂòå‡óùÔ½FYG³Eb†`XprZ2¬aÊné!<ÿúê˜SÆŸn¢ž† ÐgœšÍ¢“=#¯¤&g·¾k)$“¤²ªD®T}ÐyžÏ^9®µ®ç°ŽäÝF'™¸Ãa‡\1ê=+Æ•Ñb–tPz¡<©^ÕÓøW][gk ‹…[&$ª$'1ÈÎO9í\©4ùѼ%uÊÎÂKç»’+ëvX¡‰Cî Œ™àò@>ÇÖ›§ijúhŒyvÓ£â&pÌý@|AϦN;óTSSÐ!vŒÛKn8Ùã–ûÀàœBú­Å«˜Ã3Û“Æñ™BÃùç¥yîí‰542Þ”õ‹®qùÖ¥¶tß=Ä–AFHr$Ü{cqúýj …·Œ™Nz‘´Ã&’iŽÖ+7òíéNRsœp=M[±·²»”ÇwtlT#?›åw Û·#ôÎj´c ˜W?ßÃëTš½„Ö—‘¤*J¢m@£hÇãõ÷©í¯Ì$oEž<’ÐË’­Æ3ìpx#‘Š«·-ƒš“aÆ>÷SÒ›ÒLJͅ_ËRÃí$ñø“Üâ½Á¿Ä+i¥j)#˸GÁ²2OÊ­“9Åpv¡w¥Nnl¦0NP¡!CSÔrà~U-ÅšËh—–ñ†0ÛŒ$zž§=sõ“Õ˜÷=PЮ5=^[Ënñ^+BÅØ4i0c¹ˆQÓnÉ9>•ÎkZJÆò\ZÛ:ƊͲå@8§OЊËðæ´t‹ågY$¶c‡IÇÌsÒ½mo´¿Øj)åÅ5õ¨hã’@K½x#yuãéSÍÊìÅ©ãÖ:‰°˜]C˜g\©ß ‚yèFk«š{ûí-„,ZÕC‘±´Nàrrs×¨Æ `kz=þ˜ Ï§½¬2|Á]rAÿ{¿ÿZ«è:›é÷2É$eOFÓk['ª ’AlûäBƒ pAãÒ³§‡É£qó+Øö<Šê­l-§»IãW‘$ožÎ#RRjYÛ¥×Ú- ò–V;vò0;ûU)kbYÍûÔV/ÓµZÓ¡C;™ÙdïÈëíPG‰Š‚½i«4Ð)»(pAýà}kG¨Z•ÚÉ«¼°$q„pT*àÎ=ëS\¾ÓµŠKO GÉÚ1ßÖ¹y`Ûœ•#ñ¤EëÁìJ|«GqÀÊ·0Ë» G_¬yJó8ΔƒÒ¨€U€õô­{i¡´ŠcušòGû°N#®i°,j·0Ý\…Sj yŠ9j¨ `¡ÌœsúSbF,8Æïóõ§°1.Ü}yâ–‹A"½Î:qŒþUÃë9ûAôÇá]½Ë’˜=ùÿëW ¬0k‚+ÏÄìo ŒýÃ#4n_îþ´Ú8®Ç££'ð¯Mølæ]*îÜ.|¹AÎqŒƒùטBr1÷±^‹ð²åRmJèÉ vÆrZêÃ;UFu5ƒ:}J"äà‘"Èyôÿ&²ØE° ýìôõ®–xÇÚU€/Ï>ì=©ÑØ¢]]Dm[̹@öÏÑCr1Óž+ÛsI‰œ1_¹ÌhžÊN??ΜUL1̸WŽ8ÿ·µÝ‹ ²>Îëþ­NæVùNê0[õ­sáç_ ý¦Ï̾†§’æId Œ|° ÔóÍt:\¢ÿG60ÜÇËÌd‘#¢nû‰ø÷Çç­Y¦œ°Ít…ÌÛ‚ ÀÏ'§ëYi©O–²>K8ÚxåÏCš%¬tZåï#·µÒ¥»Qi äOáÕ[¨## }; écðž£`~싘–@R4ˆ¯šÌãûØÓžkŠ}XݼQ¸ :·É* €O¨ÿõ× hZ–‡ªÍJÂÛYD/ òÑØ(Ü@o<ðV¹çxŒÎ]âæ6‚ûD{kË‹ ÒNÎ&<•ùצrr9ü¯x‹á…ŸÙ®ï-õ[éB(h`‘¼Ý¿ÞÇLcC]ËÝÅksj g;Rãv›²žzà~•y¥*RES*a‰ÙÎõ¬9õ ³çkOqsµ”±=Ü‘—0˹ ?x1{ôÎzñVotÝcN+§Îf‚iFÑÌÉå79áÏÊ:úŽq^Õ"èÖñ*‹[ˆYÈiÀ ÐÓŸòk7S·Ñ x¬!‹ìóHQZ"ñ°ÏB ã±úuªö—Фü&ºÑ/bí{,jÌÕÞ>0esÁ'œ{óŸ Ç(€ÆäàŽ €:sПñúW­ê–ÞXÞÚç×÷?ea–Óãfíþ˜qþÙôO &™ý¡.•}n"18e’2ØÆSßÄz}»µÍÚŽÏ<*f+ÁÏŽAÎ0QÅrúsx‡Âér–¶ÓjvÛÃDKn' ‘Éç¹æ¶|=â{y’Hîl§ÓnfŸFÁ‘ž­ß¨<ÆiÅ(½LåÌÖ ü¿ìé—ÎÒ!|Ûüù0άå,K’sŽÖ° ž ‹Pâ(,¶ä«2JœtÝžäg¯A’8ï-¤€È]$BŒèØ8<Ò¸›ß‡ð$É,q ˜ÌF7EP¬ç?ë7„Ž£«q¶Û¤žç$T72\ ›‹K›{€™fY?¼iÉÉäãÍeËm"Ü"Þ»B$äÍ 'pêHÆsúõ¯I›áu­¶ “[ÜÌd~îX„Š8Ï,!x#¡<Šçõÿ øƒÃð‰‰‹RÓ⑼¯)|ÓÿmY~QÐpOá]I{¨¹µ3î|0-tXn¥ß¦oÞ>àè¾1ßþ•OG¼ÓL¾ÓuC)ŠGF‰ãêðAb?º[$GÐUfö&Ó"›Mg·¶—÷sÁ¸ãxþ.§±¬Ý$ÙÜO “•Š!YS,ã,ÛXƒŸ¼plã°«M´+7P ’São“pçãùúUuRTã$gžzú î?°ç“E™ôÛ,sÊ#ÞÛˆ`íׯŠŸYð1Ñ£ŸP¸*,¶ïtù¿v¸þ/¡ôÍkΈÐâµg‚[˜Úܰ_%7+Ûy⨅‘ù ß^µ±ªi÷(/‡·*$E;TãpRqبÛFÔ£·eû1Èó°|³ÿéê> ÓR@Ñ”êÊv´/@*kX$ŸsG•Ô|ªFs“éÞµgðÔ×pÃ>”ì<Iyøˆ$Wßõ¬ÛK‹›Ÿ²Áþ¸¡A9Ϧ=ió&‚Ö-^Øê¶Zz\L¯-·$¶' ÆrOòÅeI4ŽášgvÆ73Ç¥k]è÷BC{e|¬‡o˜Ð°Œ{äàý+!ÕWnÖ-•Éã§4 ª„$JnÇ¥Ïò¥ÎcÒ˜…e{óÍ8m-‚ )ðr’$ÙÎ?vê:zša‘Þí@2ƒƒøúÓºˆ|€Ä•qŽrOµ;‡k¤hÉÀÚ¸-õ¦þò)RqÁ¦ïw’Ì[žŸ­Ô- ¯‘€Ì€ƒÆAÎHìi l q×üþ5b¸¶ZàŸŽ„Žsø '²¹‚/2{ic‰‰ ì„.G\Áê?:wî+PË©–Y-ä6!ýßá¨ïÔÔ @î Ç9©íæ‡I#óÆ:à©õ˜ï´ÙZ¯­ãÌN©¼¡A8Ç^ƒ¯N=j-#WºÑo༜“†œRAyw`d{ Ÿ&fVŒ•·/sè?*»y§AsßÙù~TÛŠÛ‡Ý,88ăøyärr9¤û0=bÎëOñÕ¤2\Æ^Y"˜†A8üyˆ4Çе››% Ž%OCÇùëQXjš†…,sYLa‘pm¡¹Æ9ëÛ"½ZæM'â.ïlu£fòälŸs-¥Ìe%‰Š•#ˆöªÅ±u |زKqäDN¶˜6<íã¯gó§Zz©1ÆÆ XÒâŽkèÖgU;˜“[-®K,j°ÛFGÙ% Û† †û£9àgž•A)ù—p¹«úè‹ûFao xùqƒ×“ŒU6V?wª£°n,¦µhÒá ätÇ<Ñ)w@ÅØùyO8?çš.®žóPÜM¸–]ÏŽ1€3ùV¶ª° RTÆÉWpUõÿ&†ía­¥m¬„d1Èî*ËGº!ž œSdŽžyçð«0¼x`AÝOõ¬Û)#ôìˆýz\>¦Û®žy®ßVùKŒn5Â^°yÜæ¼üKÑÅhWâŒSEÆP¶[åãšìþÊWÄ!ÿ-¡q÷¸àgúWœï[~¾6ÕÉb¾ÓÏb1ZÁòÍ?2mx´{ž›mæ\±@ÔܹÇ_óšvµpöËeq¶8å4oqÓ¡íÁûнbºÔqå‡óž¥qÈÏò5…âH-¡™¤‚ïYHr ëÛÐb½mær­ë N¬ˆ¿ÙÑÜCa¼ÙH’r3×=sùÖ¥…¬ib–ð1xÛ?9\<õ®{Tñ4§K´{uHeH—{4d¤¯·œ`ôÇ8ÿ étˆìuyF¿lÎ|øÍ¸ 6•ç+é•ëÞ±Ò)#œâ³mBåG–‚$Ê™ÎCp:HØ®6äM%Ä÷!§™·zœlzžõèšî–5»¯!c’5±…äR§L‘ÇqÏô®nîÑ­t ¡*FŠ#[˜•ºÃ ×ùzÕÂHg}|Ò¤1·Í,E‡šNsÎGåPyrMyˆX÷y~alóŒð¢š]'v’AœûòO°«š|±Ï$Q*Kq°çÉ~›@çjÝè†O6³¥¥¯“g¥k”eÚÈ ¹#õùVsÏ?š$7+3ç‚yôŠÔ·Ó¬µYeƒæK•ö~çþ™#K 䞢–_ ÜÜê7hå.à‰ÙM7î˜ôî2k¨²¾{`ï‚æXK| ›xû¸#ÕãøkW$wµ)<$4–í2û­åõÁ9ë[Â^,rÏkx«%«¨b§©Ç§ùŒ©«^"hõÝcHÓuÝ9"šÔIVA$+DßÞüæ³µ-"–Þåî;[T#r!óU²>`ÃñÏTŠD×ì|ý RE#æ1I Ý®@Ϩ¬«[ÄÖVÿfalŒA++7¡'ß=?ËWÔIµk+Û™áÖ/&b¬¡Ã:•R7(ÈÀÀ<ÿJ¥mâûÑjðê,Ñ0 ..”É»ñ˜þ5ïˆgÔôÉ ôJî×^X·C‡?"‘&3Ðî#ð‘­Ãw¢ÈmV92«&棂3ÇÓ8Ϸ粂{î;²}Ok·ŠõVm¤_•¢ˆD„’NN{÷çµsw« Œ#f3·ã¯ù÷§É2Üþ÷¤»pÜ‘ŸÃüiŸjÜ\ ŠO3š´¬2Þ§äqœgãq(l)Â÷íŠ|)w ´±E(W]ŒÛ3‘Ÿ_í$6æâUGdLœw ÔžJNÝJé %ÃX_ñï^¡áoŠqØ}‹Zó؆Ýç¾d]¾üÛ¦ q¶~K˃ëúL1¿kûÎ9 £¯>¸àç=©ÚŸ†¿²íÔki÷3} ·*/ð€HäðsÓÜóÎ1“ßR¼™ìö>5ðýÌöÚ•²¡8Y4j9ÀÉ`óÀÎ3Ú²|Aá­7Å¥®T¼·‘“º¬;ü¬N ò9ã6Îú]ÜWV÷ ’®T˜ˆèA¯ ëšè!×^$’;–k02ðÌ›^<ñœ¡ö€œ`qQ(Ê; E^èî´#TðÝÚMQ®¡q%µÔ­ç€yük¼±ÔÖícBÇå“kgkc8é^||[áÿXyæY\"“³ý×äcw~Ý«£Ò“Lk(Ä:‚Ü(ˆožYÌ pXОãŠÏbZos®2dò¨$³G,:\2õR=ÅAÆ,/˜»ÏQWE`=GJ´îfaCá 2 Ql¶VïbYL#’O_çРǟán‘,²4rIoDHÀÌnƒëõë]ÇùÅ'=‰ªM¡Ý˜0ørÞÛN±³yI6èªÒÚd`»I>™<â­jš8Ô´×°Yä·2`£ûÊãòÇâkPúIϰ¤/3•Õ¼ gªi¶ö’Ë1’Ò%Š|Â: e‡F«ÚV…o¦X}˜Ç ±(]¥a2¹ÁÇùæ¶É'·¸Í2S¸m<óÒ€»<çÆ~ ³³žk ¢Æ)"ÁXí×O“ê2=Íqºéh"Xµ¥µ¼¦Ÿ 0$bIQÐ{uï]lj¼.µªGs…„–”!Øã {W+wð¾þ 8î FÉÁ»æÇb8üÇ^}j¢•·4M¼[âû}b#‰’HÕ€L§–²Ü–ÁãÐŽõÆE¢^Üjؤ`Ï >`fžÅt«ˆ¾Uį d¬6ÒeŠœÌØz}j¢Ù%èQ’Ã,²7ÚÜ$‘Øòv÷zu÷â´»¢–0î;k¯ƒ´`…9ùTv÷P¬ë%Ì"TE;w/p)÷­_ÃqéV ,—ˆ×ðÑ);vñŒ9ê+ž6à‚9ÇlVßa#WTŸM½¿–ãN²–Ú vâ2Ãlg8¶i¯o´‚3óGÈÂIÔ‚Ê>r1Æ8×'Чî!H$žÊy5hZÄæ¾UiÁïÆ>½é=:Í•¶±Í¬pÛǵŒ%¾Ð„`9¶{t«0¾“|ºÚHR‘Œš|Ñ[±Q†$ Q‚\}<Ó{È-ÖÕ-ZgXÑšRˆŒÇŽHNyúšèn<5‡“$ÓÆ’²Æ²Á ‡¶7 ޤg¨j³Ôv0`¿Ÿ2¨^ñR~dœÅýÜuàsÀãš4è^Ü­…Š1–|Å<9ä­Çn¦´5Xô›§¶–[G¸TæÜR6‚¸;˜0ÃÇ­S’çMAm9K+« “óÁ@yÁÎM[q¶ÄêYÖ®V»²¾Ðl­/Öà°kr Ú  ÇÞ¹™¢¤ !PËʦJäV¾L‘n˜N^hnYTp‡é]_à ñg®˜ÞB†T;ƒÏ"¸¹#*ß^¤Ÿju•Ì–W1]@Û&…Ã!<àƒqD•ÐHø© …x5;Xsà ‡R u8õ9=+Í‚’êƒï•Ç“““Ô׈w‘ºVBQÅŒÿœ×0\E`j¸GV^6œƒUñ“šqÓ®jHx:â=SÃÐy‡"[`=öXúþž$ù”å‘0Ø99¿çµgü$ÕÚC[»|ðHSõR×5è3ZÚ –žT$2—nOò¯V´ŽY+6ŽCÃ’yºEü2Ý(’B« :o1úpÏÓé]'æ’&þΑ‚Ä74)€1“’§¿$ç=²k.ÏJKoÃ%§ÈZG-ÆCqŽÇÐèšc[I ë¡G‘ëȸ'òëŠ*I4üÀŸÄÒ]×z{,r¢ãi@Ûò}z{~>ÕÏxÖ5µ¶K5´;-ôñæ•9ØU:`oO|v²ÜBL×¥Ià°ÈëßÖ¹âËÃ×R„Yé–"\œŒç§ÓœsYÁê‘G“ù %½º4ácŒçÙ¸ö–­½:îÚÞÞh´ÄD—”ší³¹Óø›iéÛZÅŽdŽÆå]çÚ00Þ½GáøÕý:ÚÇK{kV9]ÙEÒF¥NèÏÝ =ðÚº&ÙHv™ac24¯7î£äÆ22qÓp=k­´Ðí¯`ŠèÅ>š±Û5¿ÚD~zO9€wyçqÛ'H¼Ò/¡·ûLгIr«oakòÙòÄgv[a+µ¹ž¼ŒwWó%í¬r\ ØG)ÀàŸ‘w`p9û¢¹§;1´ìrâ^ëİÜ]J«®¤ owná[íVçùOÂ<¤Žù#¹cA¹Ñ5IcPëåÈB3®;{W©jZõýµµºÅ½¹¸X–4,ˆü…doÈŒT’iz¬ï¦k¥ Æ3öËX9¹;œüÙ‘ÁÏjc+o°õ8½áÕ-ÍœF×Í>_™GV,Ê>df/Ì +œ09ãTÔïÒy¬uUŽþÏ"HÕÔ‡F@ÏN}@ê3XÚ÷β1}¢9a“l«~RHǧR*¤7M”rýºMRûQÝî&ÍݱUÂr RÁ޽€=hÕ>e­ö+In\ai5Œì6¬arHÚ¬HöïÉëT|O"]ên`dµÂ¨_*1ŒãÓ'œ_Ƨմt][ËK¶EO,Im)ÅÇ’ç*\€ÂMèqØ ô9æuè®f@²G¢æ9vÖÇÍÏqš¨´ÝЭ¡#Z®âÜp}¿:…ØZÏò qÿêªâáÀá·4Ù)Û¹ëšÑ»è$º—S˜¶Z\&OÈA+ùU‹Dµhö½ÁdcÈòÆÇò¬Ûr™†Onq]®‘¾Ýgk¶Ç¦}+;”V{Kx±ä3¡SÃòCgÛ·z‡È¸A†C aœžíÞ¶³ˆÃ‘#‘œŒœà“ŽÝÅ^k>Á$s DeU2õ<ý9úÖ.$8ßcÕÈùÃÆ1“Ïb çœÎ±´ßCul³Éˆƒ¶tïZ²¼±D¯Âvëšw3³+Ç{zgÚÖãh3ïséôÍi Ãç#½cC4S\4‹&X ®«ÆÓžµ± ,€öæ¦/ 1äu ý)…ãÓ'×Ú¤¦°Áç'+A¤ &1ž„çQÇÔQ#9Áãßš²A‘ÈÀÀ´×Ú ± 0êßó F&¿áÅÖ-ö£‹iÓ%$ ½T’3•ÈÝ\#x*énæŸPó¤[RLr[‘‰F2ʶsíý;êêöí­ìÐɼh€‚22{qŽ9¬ÍCÅðZé·[©7± Fb8'8¡_¡jçžk±jw¶ƒTžÜG¦«˜¾Fý0G^£Çò¬<+©Ý[}¶8ÔBd*ȪOéšØ¾¿ÕµôƒLA³3~êßr¦IÎH=[¯5•2I¥]yEæ™ãs”•þLŽ3øÖêöز„òÛ²î]ŽyþœJ¶ÑYÚ:[õyÝAHÕ7Œ9Étà‘Ž¹úä;ì—ˆÛæÌ€•q'޼ŸnÃ9¬4 ÏÉùyäPÆtRj){}öµQ–O•@ }”TžsÞJX»·ÌBïnƒ=9è*¥¦4 B¤’y ra/ˆ´ïrr¸Çc]v¡i²¤š•òNA1<„%¸U`A'{Ϩ䖂µŽnåI†8ö Œ¾ìdÍÈõç§J¦-m¥Ugr¾a?uw*ãxºH Þ»‰¬ì/´»éôóo5Êó>P[ #oLrAõÏNj®± ]9Ó±Œw­ë»e'~óo žÿt@5<ý‡¡›¥^‹[Ä]BídÓæKˆãÚŸÂXmùG~ƒê%Õô ­ oà½-=¬ûMµã|¹¸ää Ù ’xÛíšÝ½ð½æ‰œ†Ê+ƒr \4‰½­Ü(ia© ûN8'Ž+{ÅQ®½¤*Esm>Žö=޼슙àÇúõ=1ÍG6·qãÛ½´Ï ÊùR€ R9ðíÏQÅ2&p2>8Èàõ«š¼¯ Ó\E?—P;¬¬ÌÌ óü8àzŽÕU˜M™ ‡ AéÏþ¿jéWi6'¦Æ‚ZE‚‚HÎNÂ9ÇCïÍdÙ›€ èz⺠-%Ó®®”Ëý£i0•c •’2UH®àI'Ûñ¬ËÔ‹íŽñ²…c½è3Í5+±4vß uÙ,µ7Òœn‚á $¾á_lwçžØ÷§xëà º”÷ˆ¥ae2»ÎXuvà~uÍéwcÃÚ­ócc®ˆäín}@ôë^Ë©Xũٲ8V 23šÆü²¹,ñ-JX—N²H­ö4¨ZGÎw`àÃü+2!ó•1o8#Ç5µâKe·ÕomQ|¸ •B®Ðä àvçŠÈ›å¡ãžÄW5¬|*×tY¢¸ðõä×*„„x¥òeˆgGãµG_u•Ì™OKÕQKÅ»·1¬Ëm«D±fi _”Îà‡Bp@ÏQ\߈¼1>s?‘æÝiè±ÉÚÄB:8ùI=ÏQÅnë‘Ç ª\=¿Ù5˜î1u­¿Î 2íÁù£/œ†'5Ðí\évöVÞ,YJÔ•–é¦Ux-¶äÆÑlΜ7Ýã“äzmÛúþ¶ùÓÕHPä çÞ‚Æ@9‚´5­v³®Kr(tË!å»´»#9ãj¹a{œúõiï4¸ ¦Œ‘ÎÊÄ}¦XІç?(-“õ>½8ãµ]nkÛËir^ÆWg·‡i"$ªÀñ¦}­må„®ém²EèÇÔ~TœnîÆt÷^×µk«‘w%¥›ì•®&sʽ”(áöœ ÙÏS¸Õ¨4Ùâ´š!¦Îí…¶YZuXdüë#zƒ€v㓞4,tõÕÓLŠ d|Ñ8Ý3b7neä)Ü£¶\WKý‰gæÖ]6Öî îŒ\Ƭ°‘€)ãžX‘ÎI¬›²Ð\×vg ª?K+e§ÞO|ɲ=:Ý„Û÷]ÆN Á vã€k'KÑdÅõÄvòO–Øäô*yã½z<>Ôeò£·–ÏBóö·Ó"Ï0å”`õüë•ñ•žáâСk«¢Ë¼É!y ',XŽïÓ©éU5¸]=Çß´2N¶Vïç‚AŽ.s¸€\“T"•¡c÷­çˆ}ìcæÈ þ_^Óbµ¾3js›¿*9@óíÁ'vÒ@ ŒœöüEe‹k«¤’é#2„æGÝ ÏSïÏÖª÷+cÖ<0‘¬vÚs!x5H$‘]£†à€ Æ9ÜŽþ€u­¸&»ðöŸ5µ†‘t‘Ç X’dçqF ’sßôª>ð½ÈÖô¹ÖK‰´$ÓÒî%¸‘.fÜä8õ¯D¸°Žâhçfmðç`9æ°IËVg)$ìUÓ#Kûh.žÝài" cuÚW#¡¨ŠB Þ•ÆË‚ '¾yÿ8§£–#Û§z´¬dHM0ž :8#8\rsÒš\©çAþõPØç9ƒY÷wˆ—,£Œöÿ=j=ZæhâcUüÌýG5É\ë~\¥o-À8U‘úµô©¹I\Âñ.·¨IwäXDdœï$þ_ç_JÒõ8¿Ò¯Äìbdd"Ï|dý*̾%ŠÖqÇ– !\3»ßŠæµ/DѲÃq#ʇwBwŸB~Ÿ…km,Z¹««G{§ß‰`µeû:¾ÛÍ»B猌u8$wëí\müw“»o4û·`Ç ã©Î?ÎhÔüS©jÒ.现¦Ø7(`q×$úf¨E¨ÞÆÃmÄÅ@û¢C޽¹ªìU+] ÿP·™ngŽÂÊ‹s‘¼ŽÀNõÔéÿ ËG¾¿ˆ œDÛ€Ï@\àf¹Ežór¤Ó4̇(ËgÛ5½¡xªþÒùZᣚÔ#Da³¤eAÛ€9È pCëM§öDö CEÈÚMČ֒ܤòJªzªõÇ~0?Þ¯x_S† ¶±¾ˆÙLÊ.S)hʺ±D#¦½ÎOçV|T—s_iÂå•,äˆ/ÕÇ”sËw=î{€=ªxôy¯oînfµg·…´r± @sÐôúqÓŒÛ[;«2 íŸM¸g`¬¯ Äg£“ÈÌÍÁGÜsµ‰ÇËŠ‹D°5¿SæÏ å–Î\ùÊ †IåA$ðAÈZ±®\iúu…´B9ï<ô† ê|²À4e¤%¸ÀÜç+ÅE¦hþ rúŽ©}4Q¸É+0 §aÐZQÛplßñ7.ltÈ»¡¸yA*Œ•î#¯ø…õ\‰¢V‡5©YÙ¤«PÜ[Fwùhè¸PI !æP ^§Ò¨Ê¶þB’O5X‰Iaµ†r¤2§¨ïœ¥jCš„ò[UX÷:Ä‹…zü£Ðz Žm;6I9EA#²°>b˜ÏxÈÎ}Ek¬mÝšß Ú)µ™ì%¥ÔÜgÇÛô¬Kèæ-pÒGå2»68Gà—jÛð%¼)|úÃýš+5'y ùPþyô¨u…í«ˆYPÈX¬ƒî†œÇ4Ö’d™–QI%¤ˆw‡vbÃ.IÈöÿ÷ ,?Øa @l}Þ•äkÝ麬p€·Ê#'*~žÜšõ¸ÜCQ),ø ÀžÕ5ij€ø—n òOd7BÁOÍ€1íë\Åõ¼~u¬ð¸ < #v]øÁ\‚•wþ2¾†PæE°mÇV9¹ìÁ®#ÄC‘GmŸ³˜VH³éÏ#Òµ¤ôBèaOµ_*0oJœÛÉo@íd)þΧ¹‚&±ŽXÈ«²ÈçA™ª±‰eŒìñGü%¸Ô‰" `œçÚ´|ÓÂàqŒm5BÔfRЏyÏ©ÇøÕ‚ÅåfÈ#$„O;±¹îÏžµy1UÎãÁíZײ“Æxîqýk›ÕgòŽœ+ž«å‹5‚»G9{&ùÜú’Z®Héç$Iî)œb¼Í[Ô ÁïI»ëùp¾hÀõ?•êGÛÜÒqÖ”¦=)6’O­m ÉüÜ {§Âýi.¼/%¾æû]¢2+tÛOù«ÂrKc?\Waðû]:F«ögsäßmðx8õ­(»M_©3W‰é+)·»‚{x¤mI$i+ËŽG×ük¯ðLjêKPóE“r:ã}ûãqRÙË Økipñ¸8'߯Lbo¬ÜGtDöÑ™Cy…Fsþ¼ãŒ×§ZŸ2Ðæ‹=¿©çÐãµyÿÅ (䱂Dˆù¡ð\ó~¿Ò» îK›š@CÔ‚x,à‘Øôªþ#Ò×T°’÷™HSŒàãç^t,®YãW:o‘¦A<€îB€8É<±>ƒõª6%æ«,ÂŽbC,×V(ó‚qŒ“èR:×¢\h·xsìròîÊ«ýìŠäüI;It/ [J’£’öHÃÇÎpå»ô<ŠÀñV¤aÖÄʺ€·ùe™”)fÉùsÈP3Ør+*\ˆ×JµK6ž-³È²•Á ëŒm8Îzþu ZeÄ¢9äIÛlr°&D,óÓœúŸÊ²QåÔ«jT‚y­cýØ‰Ë «1Ë®Þ98kSñÆa0Y‚K#å-Ï¥s&Ô?µ™¯,õà„'1£0qÛ×Þ’¼™J6Üî-µe»ýÞw4Ë» ¤¨Èè[¸­CF×.õ8I·’(ž`‹¼õ8ó¬Äsè±½…ª½ôþC¶J½F2GqôÀ®ŠÛâe½ó…—F7+·*[²ñϯ'Óðª³K•nÄÚÖ™áí6›¹ì„°@qs<²‡–Èç1^mwáû¶h’ÜÚÇíÆ 2I±û¬>sÎ9æ½zßPŠ[Ifû+ɶn2£h$úwã^{ñX­µØ,õ ncŠF;4¬ñÛÆI_–1œã¸äô§=‚;ØäfÑnm零¹„™á8hmÔÈä`’Ê£®KœT $03­½Ã€K"¸ÃÆxìrNF{b¯yÐZ]Êö’! &Å"Î#L«8 7)Ïbz‚P ‰Ð,Q Ñ’ŒìÜNâ9 ¨8ÁGJ¾WÔ¿AþmÜÒÉ,ÌâCå…Ô8Ç…jXj[À¦ígm5f‚åfLnBfÀýÑŸZª+Œ!‡7¬ÁÔeÈùwœö`g96š]²žÞfÝ;‚Ç<3ƒíô¬ nÙ/f’öÌ$—ÊG=ž3žø9ÿõW[ªi/5ü^J‚1†EãË8kBÚôiÒ>Øæ}Èxàãúâ½2Ei.Y"y¡\¬©žÀuÌõë×¥Sž œr\²±Ûø[RkË+e*ȱBå¨#¢žäcŸJéÆ2>o¡õ®áñ¥ìb¾m¬Ž€…Ãm'×¹úWi¹UpOBGÛðÿõ×Ei4Z2|M2Ûé¯#0mƒ>br?Ïç^+«\\ê·jâ6bª"‰1– óþì^"ˆÜD¥—÷]HVÀè8®*ËÈ·Ôn®„ÈâÃ!( ‘Ï>Ÿ­iIò«”»´ïÛéwöí42Ë;ÆÒBó#*,‹È!G'^=Aâ¢ò"I& ÌSò9!X±8QÔ)Ï I<Žs^”ní¦ò<Èž ʰOÌ3ÔdqÛ±®:ö8¬µIŠ®òd(ÍžFIú;ô¨RæwcMÚÆ‰Bɾ1J eÖ>°<{Î?(Å@Öö7Ò°€1&ÐùŽ_i.ï’Ô ã‘‘Á­ÄSð°§’¼äŒwã$úã¦?]ôÉSìò^ ‡ Ã.Çó\à(gnxÆÇp=Í.T·í(^ÂþÙHƒ€ÖL6„ÈgbH‹©'¯¸ÅajS/ ZÞ91n.ß·åß½pé‘Òº»¹­¯ ÿBÊèZ…‚ÌD N¡÷lã(>rpp;¹Á¬i¬Vйß°L>Õ5Ä{Ö.GÌ£=FõÝY' ÖåKž {ÝGOo´l‚X6Lp nü¤dwãsßÁž2ŽÔÛÚ^Ý$s•òÓ‘ /Ï!ºŽ:y®$ÝKk-Ì6s#{œ©1(ü2x'g¶:b²g*ç8TžW.’ *Tç<ŸLt§ÊØ=w>‘¹¶†ê&m«"ºm#<Åq¾FÑõÍNÖf fÙ´–ËäGo”ÈV¯5·Ö4 ˇ¸„å=2v‚A×Ú£×àû¯e~ŽV)¯29ÿ?Ö—C-Ž'âv–¦ê B/(nS \õ “œ~5ÎiZ{jöv[í$š;iv\,+‡òw~nç“§ã^âë[;»'y£b¦Qò~RsžžÕ羞=UºžWÚÆÉãM¤gye+üµNðÓ âkøÛUїšu†"¬QF6Dy‰ÀÆîàûú×[iuy<Š9 &%( AÊûW%…Ṃ-nշùF&9ç?CϽvféc¾¶6[^ÚíC2>R3¿?€÷¬gmúÒ4øôÑ{qí»»a,‘ˆ·ã¨í‘ŒûÕJãJÔ¬hXcuyDÌUCöUyçA"Oçl¹˜à“N…[Tµš.d·’C¼®¸Uºö¬ÓÔ-Ôâü$-í¼Gª¾Žísk"çN–Nx˜oU,ã§o|פXKu%ŠM$>DÒ(ia`Wk rzsõÅV´ÑôÝ9-’ÞÊ8–ÞRBÅB9n=Ï­i  C6ñ•;X`œzýjž®ìNWØ‚ Uüÿ³Io"ew$Pó÷sž¿àjÄש îbFQÏçøš¡tÑ?%‡8aÁü«/Vѯ5Ha’Òéa”Êì c#œ`ôüéE»ØZ‡Wµùn‹ñÁɨ'Õvï"-ätÁäŠæî|tÈ©åÌ£ï˜Éúf³ŸHÖ-c‚ÚmUâβ\ÛB¸à¡ y\rQÇZnýÆ”Kú¿Ž-´y½³—s ¨\g?‰Ï\üGÓõ‹y-ÖõøgU.sÛï3øT·ÞŻķ÷_khˆ{‡Ap$RÄœ#”óØñU´ë=*Þò¯­×PŠ3ì3ŧ‰“¬Õp¯¿ÔsšvV-(˜:†>‹_}‚tó“yk¦ $kŒœ¢ýÒ0zó€xª¶^(ŸMw±Lîžk4îÆ6ž‡ê ix®ÙSýÍí¬mq÷†õçŽ$ÜO8ÁE©89#«A¡ÛéòY^™E“¬ˆÉw ,#ŸÝ³#.6†#Ó×8ªÕîVèÓ“ÄÚŽ«Kuekc#Åû™§SÒ&ìnBG*7s€GZÊ[‹k[MB[…îQ¼¨n­#c 9lòCør1ß­jM¢ëZ«É-Í÷ž“<‚êx%"wìáˆj sšçuxlôÒ¶wçpY@NãºôhK°]DÞ,¿:d–sµ½Œ¢Þ6‚ñ\ùWC9Fp¼ã. ÎGZå&Ô¾ß{#C%ÄÒ›_³‡'{LáËd p@ê>”¶–jG­­GfŠìPdò‡VÈ( q’:}3cÄt67¶¶ºGÙf‰²â7.'RT$’A'#ÐpRH5L˾³’)]fiᯜrw‘×à¶*»RÄò¼±^\åÄ¡<與-‚qÙƒÔJ‰£+ç›ÉcJê™mİ9ü9ã¯5bÆé"º‚5»)¦ ¿|XnXÊž$  0ÛØòvœš»¥ajI5­£j2F’J»)$E6íØÊŽs^? ÇÖ¬tÝfÚí-š+tÓÿ³§¶V f ¶Y@ä¤|Çž•NÞÖÒäÉ®yÿl‚Å^f²“z˜œ°d`ÙÜpÁ·.­{©ÜËs(yî$ù¤’(ö䪜è?3R½á»Å׈­~Á§ÛéZwÙ¿³›m¸¸N '; g«ž1𯵖áEü–ÐÛÜÅ9Žâ`1Àæ_”¡G,1“‘ô5&weo¦Ü¦«bû® cÓþòÿwpL`ãÎ8Å7VÕ~צÛÀ‘Á D­"KoFÜì Lÿ·NKK X×ðõÜqÜX`,8•ä$à¶T óÔqÇó¯RÐî"6«ÈÁŒÈ=ó\/‡ôYSUKײñ=ºº@ò¹#!ÎOËÇük¡67¶¬ñ®Ýãv>Õ3z³ª!†-Ä}{úûÕoµ[¬EèR ôΪÛß<á‘×?_­qskKªêŸÙÐÞFÃvU#=xÝøR%+ŒšÝ«ŒC"È{ÙZ§sâ;+GŽ˜JÒ¸AµÜÇ·Zó^òûÃÚı.LA?v¬w õÇÿ«ªxrëpÈò)ˆÎ”¨$sœõä“ÇøÕòu)Dõn-ÖgºØ­,¬Ñí$áÝÝïYšç†mu Úþ31™æYwŠ@ÊŒuâ·,æŽxÕëzwõ©˜Ù£CÆ8Ïz”õ¹¶Ç9¥i±[ÜFöÑ‚!´`qß8üúÖúü ¨Ê†íZ.¨¨Q·§‚ ¹DxÙGM¹¶}¨½Ø\É' H=ˆª7ÖÂ`²†ÜG|Ž‚¨êÐ[OµÑˆ ƒìOJeÕˆ³¸|ykß¿5¢l,`êÚ{KliF 2qÇøô®o\³ÚËr£)´+ûã>Õ×¼Ë,ysœwìZÆ¿·Ž‚5(É‚r0ïúWDef?§¿ÎåxdñøUk’¿6Y·Ì0¹\ôÈæ³og9##sйIn4Œ=^ãj0[Þ¹âyúÕÍBc,¸É zÕ!ǯ*¤¹¥sW¦€T´`Ò”RúÔPx£4›€î(ܾ£ó ÛøÑœ.9Ç^iÝ) g=úÕ'Üw7§¯­&ìg×±ëAuçÒ“N*¬2ŵËÛÊ“FÌ®‡!ÁÁ½÷Âúäw¶Vú¦r%e@¹±ÿ=kçÅÀõÎ0k³ø}âìÝOû>á¿Ñ.ÆÌ€®HÁ­èÍF\¯fgR<Êë¡ï¾µƒO3}˜— *±!HÎG·Q[W·¨fS‚ì•ñ\Ž—röÒ„ÉRr®¹$7¥m\»JQ¡¸XQF]Ï·l~UµH{Ú˜'¡ Ò£Ù?™eßóþç)Ód†ú ʤ˜dœmäú:ô¸1°'$¯<}êæõå¹YNãç°ì+8;3Dké¶òfÙµÊ'ŸHfQ‘ÿÖ®+â”vZÔwIY®¢V(qµs‘… àuîMw‹#ÜÄnvqÍp_î$„œù1"ÈŽTà·9Á¥NüÃFo‡¶K4—ÊÊ3¿jäâöúWE’h^}ÜpAk™ÈPÄã–œ·“’+—ðšì»´˜`"Ü!ä'¯ÐWªEa Þu¼ÁåY°Y+“œö>´ê;2¯cÍRùX¤H,®%B¤Íö7Uyc¸ðqÇÈ9íF[›»!0ãDvŽ7@e*ü>âÌ8z3Z~#ðÜöRÐËq ¶ï,F3På±ÎxìkÄC=ÁŽáR&dRg0ìr:ŒxÇ~p“[•¾¥:K8O›teYÀÜŠ£%Ç@G|zLk»i®×˲"Qº†Ð¤rÛ8Æ3žzžÕ±.›mq4Ör¦(åYRcþï¿<†Üzã ëÛJÛCµÑî£é–C Qo9Æ{ŒŸQžØéNRJà?‡SËk=ìbW{v%£R§*¹ùrzgéߥwW°Åw¨,£ øÉÇ?çÒ«iöE,@Bâ`$•Âõ$e_#*ò=ÇZÇ©›w0ï, DÐÊLc$ä‘ï^TÚrÃâdµ»ic‡ûê:Œ~_lW³Ý²¤,΀¹8ï^{jòxƒQ}>î=¶J¾dl:+ä~¼ž?N•Qv‹ì8½NÆßdÚZéÐ(B)Æ~\qõàV-•Ø´Š}>æ2óÙ" ãïDqƒŸ_ð­amå[ù0aR5 ¾_ãu¿Ïß»Ü1O!ö©c'$œvÍdµv)êÅï/£`×cLŽ"xwÍto$ZdKw¹òè–.F:í®nÏZ†)n-%1ÛËҀɒýI§·çYVþ3“U×F“,Ëmh ÚÛ¶—`zr_J¦‡fu–>%¤×klÇd-´LªJŽù›×éÍk[›‰Ô #çucórFj5xV5ÚP`št‘õéP&dø¿T¹¶³ƒì0DÓIr±ƒ(!@Á'§°ã>´ýX»½µY´ñùnQ÷c<®N}*ë}E¦-ùEeq”Ür;cü*å–Õ%u ó¹w “ùð)Û@ÒÖ5/üQi§Ïmo:]´×;Œb(O8êO ˜¨-u›IÊ“<;òË3×<ŸLW=©;_RÌ—[HŽUùLg *GqŸÂ‹pÖ×-öç’T$m‘÷Heêzžœž¼õùn;$tVSØÞJðéwO²³G*¨Á9÷äƲoõø ¼m:8'ŽBÃî U='=?ŸóƾŸ6´ë¦éÓOr™Q#¾Ô{sßðÏ5ÓÚÇ<ð}¢I~Ép>ôN€¶O@{ŸÎ¬é77·/zcÓçUBpø|ƒ¥}ÏLLÖ)² ¼6º³™íå;#p —$ìÉfÎÀ@Ü0æ½ ÚYR?ß)g Uyoqø×3©&~n¥šÆ[y0Øw*~`0¬FyƒŒ€h[è ½˜ËËXdØ$Jn'ˆ3ydÄ›°rAÁÚ¼{žG\æ¨ÛèWyࡲ†@¢“)#;IÆ'€;TZî¿w¬\Ë ÄÙ[ç>hFmø' ê ǰ=ê…­Þ°†¤•]ãPUHÛièxÎ1Ž}zÙE´#RûFÒonVÈi³Z<;“ÏxcD˜Žràã ÿ yÇœê·5õÂÏÙæ•šÇ1ì;”²€vœ`ŒdœçíORx.¢º[h¬$_ž4RT¶ã“œò¹ÉàÕšÚÃKµ¹—Q½Ð[$΋´ ¼gž8'¨ÈëD—•ÊE*U¶:Ó¼6²N:8ór°vÓ¹=Èõ4Ù5¬¾L±©UŠå [¨W`pIPÇuÍ:æî=gT›Q‰ãÓ‹°ug| Ú€TsÇ}qWlõ_±¤¦-ÝææÙ^ Õ ’Ù)íž úæ•öc¡5ľñLHÅ Ú±Üç­#å€è:séXö7’XšÞæhgF*­ã ŒŸ^ nèºd7—‘O¯“gx$µdüÃnŽ6±V'ƒž‡€FzUGðÊÿneIu²0ò¾XË*…Vl‘ž3Æz·ziÝ´N…K^yáX7n\Ž0¨Ü”Ç©ÇRO­hiªÓøvöÒx¡ƒìÓ"ƒ*#Üàº#•Bâñž3…ÙŒž¿Ê³ ù˜yŠÁ‡ð€5—®_¬q,j‘óÜO¥JŽ¢±GPf%®$•™‹`òO×éX·Á˜ûG ³×°ö©f»·"W-½Øã ?‡ùüë&QæòÀüÅn£w©W²4ôËýÃÉ™÷Ì;{sÏ¥O¨Hj<¼ýÑ·$žâ±íÀQ•É'åü*õ˨ˆ€OÊàÕ5g -Œ«¹8D@à’k›¿¹(ŒÄäõúóZ—÷-“ŒŸÈâ¹=FäÌøÏþuËR¥‘¢V)3$ž¦šihÈ o—$i \ƒÍIŠLS¸¬ £>œRm§ó4îhçÖ•ÇaÍ ¥¢ ?*úæ…ã©ü©HÈ”›G\Õ§pÀÉñ?öÞ˜<Íßi´ ³6s¼c½{s]Í´­©YϸÀÚr:úšùÏÃúÔÚ§ ä|…$:g†‚+Û­gI¢z|¢Dxsz€}Íz§íagº9gY]lv)q%”_;Uäõã\–«5ôWíp²G’ȧ±íþz×ÄâÍ£Fö_›žrŒ²Kwp±í),À¨ädãô¤¡ÊÝÆ™ß@ÑÛéöûC:‘ËH5ÏüA…gÐüð1,L‡= R@#õÍjxFò+ý–Üë#¬Ÿ>OSŽ;qV/ìì'^ž3ÐV1\²× ÛÔñÝ7Q{y#ÉòX‚9ë^ÇáÝb+û8dWýê*ù€×ô¯#Õ´Ãcâ6±B‘«H¨!¨8äŸNk¬Ò¥¹ðì­ Âùd$Ïðò}„ö5­X¦´+sе ¼BÌÆHʑۿc8®ÄCÃ6¡%¬‚"Q-%XÖ%Ú^œÆ:|¹ãŠïtF+ÄSAÎÌçjx‘Ýc`ìr{ZæN½´<£YK­3ìEäHÕe œºñÃÄt?¥i[êmôÝ^H$šÙÝ£*#/8ÿk¦ìô8ÇJÛÖ|?Ù¸hc]‰lŸ¼2@=É<ÿõ«ŠÒ5Agw6—©Æék1ÜÖêŠr1ž@ÁëVýårÑëúf£ÔT€1À«s:ã‚ÊŒŽ¢¼îGû7Z†Þ9„vB¦ÇŒ»×{cñ¯C·% L‘ÁÁ¬Ó± [TAx¨–Œœ¸Ûƒ»œÿŸë^{ ™å"fŒ«y±€qÏ¿§=«Ñ§Ehö´›Cw#ùW#$ñ[êRÇ4,]pOÎj–Ì"=õÙá±2K˺ 3Ôã8«¶r-6ºn˜ ©è xª ¹·µšÂQ¾8g½-÷qŒŸÆ®YZµ¡ÑCÉ0ãå=ÿ?ñ¨jÈ´`x»Â¯­D%´Œ¥Ì'÷oWéÔW›jZ.¥ktˆíq or‡ ýìý{ý+ٵ멮l+Ukw•Y@7yG·óõ®Mñ\šÝ_²’éò·,ÛpŸtdcæœÿi¦ÃMØÍðÏŽ¯à¸µÓ®e·‘ÄBGÉtÜp9' ÍzD²\&.¨ÎÈ¿ðž³åOå­¥ºŸ™—Žã¡ãÞ¶–{[‹mìÂedžfÒÝl Ü·m,³D7¶IÏaÍSÖ÷Eö{kkQsyrHâ5Æ g=G8ëŠê±iö²nMµ‚Žàã==*+]ÓQšÞúw–k¿‘ŠžNNù©Ø<ËVZ=ËÆË¨¬W ÌJº(!;d-Îb¶–Ú9 ¤ˆQšFÚGÓqZºå¶™i,ä´¥P&3–=Nõ5ËC«C©^F²y¤h¤Ú±rØ “×#j­IWe ®4=vŠcæÏayˆÝŽÞ8ð9<×5¨xòþäÈ4»h--ÈÏ!šbyË㯸â·<}ai©´rAlÑ=¨TyXárHúŒÿ:ã´ýûZàYÈX»vª’C6‚ƒñ“Ô` Öª)ṳ̂ô54]RóP’IînµÉ.Ú&ŠÞ[ LQw+Œ’6“Ç_©Áë/ôëDŸØ×B8Ð r‡Ž\òœ“Óž9¹;gRѵQa¼’Éf‰eW(¤QÔ0v°ë“‚rOm_þ«5½¤ÚËß*9g†]±ÄI É׌òz`p3š„šzìípv»‘áó#€Á;y.¨™ .rã Ã/SŸZк·oÌ5+Ù­¤”F°¦òX,‡œêzg“žµ5³XhÂÞMcTƒÌDY— )™äT 2~ñÆ@£åôÎy=J;ÍbæëS·Yî.oܬŒ#Û‚¸À äÀêNkE+èE®Êï%Ö§v//¦¶³ŽöFÛ%Äk…Þ9ÎÈî}9§é–>£hu;íX›M$Ë ÆÁŠNêÓÉÃy%Êvç‚A–’ûÁÐi‘ºjZÍšP%H $Äãrã#:óßÒµ¬á»ñMí¼Úµ°†ÚÆE·´ÒÖ+åxÿ0!qÆ[9ÆpGU$ÞÛ•Ì ÞYá“X»ŠK2ÖRðYO±¡˜dî8U8 ž=kbãû2þÖas¼HGÙÅ”[–Øa±8vsž0G^õÜßèÖzŒKöëxç(ª£ŠHÎ=ð?*å5+ *ÃXE{›{8!¶Ûº0R¬œŸ˜íãšDß™šžÔí4¨¬Ú9­LvÈÌæ—Xãïp9;šÉñ/‰mµ}9­ì#‚ Ò‡›s0<¶ä g=}«ŠÒ,a½˜†–T ë¼*®€’@Ür8úsíÅu6DÖív÷¨³å˜Bð° @ÂÇœ¸#9;±ŽG"©+;ƒHƳÑîõEáY-Õæ)kqq&ÈT³ »\ŽrGM§éT®âP×Q†µžHФ îó¼¤c>øÍz'ŠuÓ|9ö$ŠIîBÉb5hðw9À FpkÏ"·r±þíâµtÈ™íQØŒýï¯éUäe»Y­â´KÁp¦f¸2ÜÌ‹µTçóòžxÁj kè‘›}¸Ž6·¡•ó‘žç<óÛŠšþÖ [†t¸³¼…ÛzÇ€ Œ`•¸éŸçYË2-ÁhØÚ’ÙPvÎØ«Œn ع{e«Yy±ÊËæ]FôsüÂ9ë“Y¿j>C±G±Êœ²‚ÉŒð§°'¯Ð~(ì<ÂC‚s×Öˆ y€ù \ã f´I$EÛ"B äŽøâµ´ø!¼ŒÛ]Îbç÷¹ùPœñì ÇùÍVò…y˜¤å?7¶kyìôëà"²Ûo³ûìpý° êh{•$7ž¸·‘€U 2´M˃Üèá–ÖèG±?Ú`O1î¼±åÌ d ÝIäô"³£¶ŠÅÒ%Ild}Çes˜7Ó·Nj¤‹&žŽ—{ç† Lƒ´>IÚG¾ –µ‡Lð•I^Öä͹£“'å#¢óÆ9ëX™šI~Ý(a‘c y,q»ñ§‹ôŠ(n-mÎÇUß©B8>Ýøÿ"³ïa…„²Aº ‡œ`dúÕF6ey¥\HѨ]ç8ô篷zj¼‘ƒ“ê)œíÎ3ëïS$ Œ¶Hî«H›’[/îÑŽGÌyÿ=ê;ë’«‚ÄÇ$Ñ0‡°qXZ­àÜÀ°®j’6Š35KŠÜä“Ç5€Ä±É©n&3HNx¨3šóäîËlQE%'µI7 Z1Çši ~4îE&iqF(¢Räc¥î@£½b7×Ú™Éà}©Íž;@R>çÖ­h€¶ E8j8èzRqÇÍôª 8ÍwüNtû¯ì»©?qrØ?Âç~uÁçœiù#zƒž(„Ü%t&”•™ô¶^Læöù Ï=ÿJ¡«Kq‚å…™69‘Ðõÿ8àëtÒîäÅÄ|DXy8úŒWzð.¯jmÎ<øñ2 Àê=¿¯Jõ£54¤rÙÅÙœŽâ+­üÍ<™J‰ã |à¹õäþ|פYë¶wÐKÉã"T#ã5å7ö3ØNÑN§p=yÁâµô/GooöÅl9!íôôãðþSVšk™ÎïR²ÒµË*òÙ]Ž@‘ ?ʨi~åžÞöâåÆvÃ;ÌYä\tlä`}ç¥cOŸ³ê:Dé5ÄyIQa"çùô+GOñEÔl—1ˆÀ”Mv¾ñB]Ä#wÙ:ŒH‡<{ƒÐ×–Zê go.ÆΞT˜ûÄuÈúÿZ}¦§-ª¬i"”n|²ËdÙǿ‡£GžßwpöàJ[tgädf«Ä¶„¾r0“óvúà4ïÝZjVÚdÒæ cùp­Ç§¦·.G$"âäý£nF9ãÿ­YÚÄrØÙñŒ“ Š[T¸ˆƒÉþð®~á®´²eÊrÅ\³þXéÒµìõ˜m¥KYnú©sü§ØžÇž†¶‹ExªÀ¤Û{ä*yº0Õ ~3„ “IåE/•Xÿ/çLÖl´ß@’‰åEÀy2 )èsø×_{¦[ÈŠéh „‚Ê£ž:VudžÃÎ$»¶Ì¨ÉwçÛëZ)%ªÈi𯻠c±õ(wˆÐù§&yž‡°$vô»ÍÔ©nm~Í•2y\|£ñÆsZöšb\¢´1¤vǶÞ–‰­9 ŒTùYŽ ö¨v•Ì”·Žêà‰@L«næëQÞ5Äw‚ DD`¤¶ÿ«€öÏJÕRÛSb°*§¶3\·ˆõÖ·Ôb…ŽËp¬ò„]į¯ÐQWbÜÄ×oõ°[%ÅÓ)-&Có…ê§aÏLV‡¬Zw²¾¾–YZS# X$|½¨'ŸOJ¹s©^^¥Äºv¬e‰tv°ýü÷Jãž{ûþnðþŸ{-êjWºw‘drJ8Œ wäýîõ­•‹Ùq¨ê×7×1Á#Y,å¯ÞV`zã=p:õ5©áí#VÓôs©iÂÝ/.˃5“$C!r¹áˆƒž+­W²xâ…&Hcn#ˆ¼zcôÅ\¹°YQ£D7"zÇÖ¥É5k ìÅÓü<~oµ bŸäÉfQ™o Á‚G&ùæ^¹Ý“··^k¾´‹NÐ,šÞÚ1obîIv ÌO$œO¥Zž_²“!~[,Ò¹#w=…qzÿˆ‚jË Ž×~X·@c-΂ozX®äjj~1Ó-ßËŒ;΋Â+´ŸsÓ'ð¨­DÔ¤ eÓÝFÍ#N»äVà÷;útõÌO¡_Þ[\^K÷–¯Ü\3ÛÐgüŠØ²Ñu‹+(ÚÞI ¸š 0c‹Úxá‰ÿ ·´OPÑ"»iÖº·Sêvºzü›¬á³byˆ ÜÊ>ç,9òj•·‹ï/. €Åg´$†‚6 Û¸ž8ëV¢Òµh¥I!˜]¨!È%w6 8$ŽüsY:eΡ~âqçå€Á$à‘Á#¾8ªQóÑ/‰nµ+Ù-Eý´Q$.¬oƒ $r³¸Ç«yÄqE7Ùs¨pørÒâ5<íù¹'Ô稜«xëA,0¬LLKn“ žNzž¿§á•¨Léö©Úá|Õ®3êùâª*ÀßCö–GxB¬C,k€>™ëøT¶šD÷+ŽÞGWþ>›k¦ŽÆXœÅåâS’¸\‘Û¡­­7K•`m²ÎÜ Ïl ½·k¡‡eà˂ˈ-ЯÞ2âMÝøç»gáÝ:ÍBO fa‚axíËò­åÒ l5ËÀsóã󚯧bÓù6vsK\"~è‘Ç O8>•“É3®›P‘Ù˜÷mmöùaôÆ;ã’è¾´´q h!˜4Š™UØ@b¹Ü¼“œc¹ë]&¡$·1˜ˆù$ðywÍs¦ ‹yf9ãQá¶ð_Ôç¶08Åk@¥,2.ñè°m¥¸Çðî犅§‘ÝÝö¶õÇËÛÛùUöbÄ, Èë¹›xÆ*£HàY&šVÀU#8ú}kUØEDK…Ž*äñ¶R(ñ»hÒ…ÛØ€Æ~¿2IÄH\ç ¹<úÕ6­pH£2Ƭ«ÐŒgšáõ;£,¬g“ZÚÖ¤9U$ž™Ås,wžõåÖÝ‘ºÑ =~´´ ŒqEsˆÍ(¤¦ñÇ'Šw4ÜçPzdçñ¥\`b˜‡qGŸ­4OZ\ûRÍÈ Qøþ”‡ž”¸n ô挀ý* 9#$Ò½· wéÛÖ¸íGA¾±¾ÙØ)ÁeüxéÒ¬øOÅ+«ÃæÚ•Žå×[9ìWÚ»{Mio”Å"„lcó/áéïÞ½/i¢qÕöksˆHcº³·¸Ó/[”š>Yg¨< ô8~¢³ãÖ¦‚aì[Þ#´±Àe#ƒž9>µé~TfXÄæ5u;‘ˆÎ=*[B²Ö|±xŠÒ*á%Œí8÷õúV\Ë©Iœ†Ÿâ4´Ôct–yUFd“•8ÈÏLäÛ½z`û.¿¥Fw,‘L”‘’;÷¯>Ôþ´+,Ö—[¶Ḏ¶K;€'§ãW|­?Ø…™·|[æ2Žÿë®z‰|Q4Ý xn<9­ý™¢3ZÝU€žh9ÈÏ|qïŸjÕ“É—mý˜ŽK9­Õ»(>[Ž9§9>ÕÐ]éÖzݘI†nQ—ªžÇëXè÷R3‡VŸn7‘òËÁ0ü{b¢÷ ÷8éOÜ—±ÂÐG9 Ae|ž™þöéïPèÚαbÅ4[FÎ Èzí'ê:ŸZî4kû”@Û,U ºÏAÔ)üGßëQá-–¡=Æ‹,ö—2Œ½¡`aéÀÆ3njչ½ºhr:·Û8™Õ¦¶E&B$`d{‚yÆsÔq]SkWºeÕªk:Iq!%Ê:º¹'·}5½&Œ59Ÿíi$ $J«4«¨'®GQèO5´tÛ[‹7±,±° †Î­fììýÎRçZÒ.&K8•V]ÇtRÄWêF+jÓÃËk º±¸k>Í}É|Ðð9¦éÞmm$ïdÙ\\aÊÊ8tëš¿sej‹…}¹àDÝ*ÒÁu} (Û “³Ì霎¿×µ$ÁäR †r9¸ü*¤V»/”uò{ÔÒM²y³N‘ 8,Ç~$ÔêM‘bÞ! * à0äƒÖ¤ óîÇ À¨•ÁI<ÅÎIãI4±Â[nüþDõ3uto²É"òGEÎ9¯7ñ‡õ‹›¯7Êg ¤) íôÎkÔà1»œ¦[9ojô›Ûw6æ…]€ ãZ·ö4ÁÁ,~î["§Ž'BønhnîàÙ§éjÖé$¶Ë&:ä|‡­i˜d@êÃ8ÏAVTèÜòq×?ZC(2*nË©äH–ÊEybÃ’piŸjP6LžÙúUãó)€#­C$Ìÿ2¸]¾¿¨¡LXGg–PB ¯^*¨ÔáYKT¤K¹”Œ*Œ}ìã.©lÑÄOŸ&'ß§ŒŠ–³-ÔÒ,£o%“'ç,>h$Y.õÉËHªT çøTc§ÔÕ›ÎÿI¹±±š9ß”’`ØçŒ®Güj®’²`R¹ñƒüj7G’ÞÎ'H ·Ù)ûß1uÏóÔõãÛŠqŒovʺ¶ˆå4ß_A[y>tx%ØÈr;ð{wõ¯CÓà‡\Ñ"hÊÁ!EdyÈ8œà“Û>õÍÁá{(5šI­#žÅ„³*Éò&yPÛ»wíøÖö™rúK6KQûÆiU­`urz6ãÁãéÍ\’[ »™pøy 7›Íºc„m»R ?º3×¾}ªž—¤jAîškñe~Ìë‚$'9=r1ýx÷ëuë³m¦Íqï‚:sÒ¢¶ÔPÙÛ%tRPŒÔó0»([é.…]ägç»s»õü*Ù%Hò×j᧼ϴ¤a?ð“Þ©MrÖQÅüÆl©Ùòûàñš7ö“"¿Úݦ‰Á''€3é“M¶Œ@²È¢%l`ãÐÃùT¢ùî 2È~l`òOåYs ÈÁ¥š"1´ãdg#·sV—p&Ó\]°9’4$Æ ãc‚+Eå €Ñã åO?cD¨‘î” Ç ×Û<2¸îåã×?;\ã€ÈA<ôÿ?­T•#’2¬¨ç§·áO¸Ù6X,0äôÁþµEÁ1¬BeyàÿŸJ͹¸À*§=rÄŸåþzÖ‘c!»òÁÆ òy<ŽÇô®gZÕ>‡!{ÐÕ_T£ÜޤžµÄ]Ý5Ì…º/jå¯VÊÈÖ1êGq;\H]ZˆÑIšà)°4œã­.sF($@À޹¤Ü¤ã½-çùÓ8ïLV}ÏJqÇáÅ84 ’9¥ÿ=i¹ý)ÏJCØí g¦ŒôëF1LAÛ¦iߦi{…4mǽi­†çùC××Ú”œä`v 7§ãL “I‚9ÔßÖ—€3ÉúÒŸð¡@<÷¤7_Ò³ qîiôíB}.î;›i Iþ_Jöx‚ÛÇ4#Ôâ\<]7qÔ~µâ¼çòúÕ« BçL¹ŽêÒV†T9Ò´¥UÁù QRGÑÑE¨[,¦é£žFîö¥°ŒA!/" 1Ò¸? øÊÛ_O+‹{ð™–2?w'8ãžxǽtɨ¨¸Ì2øÚû¿‹?™®·ï.e±Ïk; rÎV;†#8^ôÍÍ,.õ6áò†G þ¼vÿëÕu0Ü9S‚ëÈ'úÕËd¸<·qÐô}+9- FÄ6é ùOÈNvÔ²@“[æ\ò{‚=*&ݘœ&9Àâ¬@NYrsÛwëX[Q™×~Šá™²q&>u8aއ¯Zu®HY$2+u_¡ï[ ‡î޼ž{SU[çÜQwa‹‡hóz:ÓÑ¡#ä#žzõ§­Æ'ó5´Üðõ+³¾ÜýÁ÷¶ž´ß°Â ´nTѹü©†)D[UË‘×wZŽG”ŒWñÒ¤dòN"Páú 85pò€…£ç ÐÿUhÍh·…óÎ2IÁ¦[ÚÀ®C–•€êç¥-JDŸn‘Øù†¾ê¢xïÍ]XP#t®ÝØõ5báü¸²¿" '¦?Îk6òrñÏR1R=ÍíeR²ÈÝO 8ÇùÅZŽ<+3O¡ªp^†&3…\õ#&¯+&Þ3¶©"Æ—*àÈOÊ”J®2o5ÁhÉ9ÜéU!”«°“jœå ž@÷¦4¤ÜÅ•eÁF9¦Fc €@nûÎ ¨¡_:Mñ9}êGBƒShåÅÀDmÅ ”Äÿ´Wl€{æ½Ö[ §hlúγ`ÕíõK¶¶´q,±ÍµxÇ×í[é Q¨HãTUà(\QZÚÛX§•mk ºg…†0£ôSL4*fÌí¸È±àô9÷«ÙÃ,2@êòR¬ ‘‘õÐÕžx9>ô€ÿw¦}(² „AcP*¨ê1ŒSJFß:Èãn‚‡ ƒ’{c‚Ƹ’AêHo½=„bëW·RYGfùm!ûAŠ˜ì0rsŠçn¢Õ4帖ýc–Êf»Š˜äŒ€ןjîHfÃ0uÉ¡þµOQ±·Ôíæ´½…å¶•vÊ»ˆÞ0rÞÝG_­Z°^Ǥ¦‡­Íim§^oƒO´ýž F÷ÏÊÇ#€<{ý3±{!MJÚ=ΪŠ_§§ø{U!ý™áє¶ñäJ´ÎÐ98<q‚xã©éÖúõõ¼sÜ<Ë$K»ïyˆzã9ã¯={úÓ)÷.ߘ5&û (ò¤™xý3»ù~µrÏAŽÞE”32láRÁ£íe’o¾¸Ý:ª‰$䄾ÞÕ¤ì ™P@:Qv´fSèpî?¼g%ƒ|ÌH·zŠ÷MûN<Ì€¼)'ù~B´Ú(™”–=pÝEVçäÆãÒ„ÃSŸ¥BÓ ƒìzнT“ßœqL §ƒò‘»øHèzâ¢ä–ÜF3ÐøR6Aç>Û»ÓL¡QHÈûÞôÀVH–GT$«2‚GN?OåH]z§KÎæ 3Ž€ŒuëOP&’m¼v]¦Ï>óPI.÷ãšPùÜŽœ`U$³4Œ «P63·îš|²9ƒÔÔ â-ž ç=êÐŒ=oRÓôÀ‘Î]¦o™aŒO¹=†x®DÞjRH#wbKó…õ®Æí­âââ$Þœ X ÀuÇ?çó¬á=³«Él0ò|Å€Æâ;àÖñK¨_±Cû2‰Z]Í&ܾ\ðØôÿ=*-²ËÐôýji§`ãÔp:ö¬ë‹‘µÃºíÇ#¨éý>µ¢CBÏ*l ¾C cúW=«kQÚÆÁxô<û «¬ø‰ ßO–ÕÇOs-Ë—‘‰'Þ¹«WQ÷bkõd×Ú„·¯—?/aTðTuç=©Åy×oV[r)GZ>´f€ÐiI¤Çã@€QEq@}})¼’éN'Û­"à bœzSùGlš'õ¤Á#/éMª¥s“šZÍ€ äç¸éF:Rçx¤îO­ƒøQ׃L Cã±4ñ@î;œð=¸¦œã¯Z `Š3ïÍ.)I#¨¤¤ŒôÈíHbt&–“<Òži€P?•…'zC׎3íH1‘Gn”Ÿ‘úÐÚÙÖž¯^è·k9Šsó!èk-HÛ½.G8ãÚ‹´îƒsÚ¼5ãËar¹‚ëJ¹qã§>¦­ëP-Âî‰NÜòT’sÆ=Î+ÃÙ2’î§šêt/^iÃɼîÆY¾aøœæ»)b5÷ŒåO±èz&°Úqû,ÎL,F×=ò~î=«­µ¾#Í…Ô®pYëÖ¸kMGM×£2Úºyƒ–ygšžÛ}•Ê3Zó‡?ÀãÐúuëךêqSWF-üwgͰ ¿ ’Èýë%2&÷UÆ8=IZ·o7—Fp2kžPì+šD’ØÇ^¸<#iÈÏ^*ýïÃ¥Kê[æ²q*ä÷pù¨J8èj¤síýÜê¡Ðü¤ð1V¼Ï—sïY÷0îV\’Û· õ%¨Šì¯¾)þi^þ•cx"‰VyK1<þU¤zPû‹&@0éA~3Œç$ûsU÷àß^Ô¾`ÇÿZ’)bW’A‡óŠO0±=O×ùT|`€}ýèÝ€L¢€'£=‡´žpàþUX±vÇ^ôŽüsþ4 ŸÍç ñïQ³ç=OÖ¢.{L2å±Óè°w޹ÇqÏJC Úp?­UïúS¼Õää ,ÅÏ9éL£¹ö¨Úe©çô¨„¬yQÏp*¬"Ðp[¦HîE,§#¥V7E ;óÞ£3îã§9çœS°ypx8Ö 2g ô© ¦SóxÍWšHÔìÈþ!V‰Ä‡ÌãÜúQ=ÄP¨DR[»{Uc?ÈB1?T’VUè_˜óÅRÀµ-ÖÕ;Ž[ VMÝöãò°$‚zôôÿ?áU.o—kL‡',N;gü+.[ ¤'ø‰ãÿ®?>‚µŒ¿=ÜX$‘ÐëYW±+0Ü2Asï{ŸÎª\Þí`¹ÇQÐq\¦­âxm™‘3$ƒ8ÁÿëV²j òcQìmßjé žlç¯ó5Æk#’éš8„黎žÕ‘y¨O{!’Y°Ïªžœ×LC–‘ØÙ$‡,I'&›M§lS²z×(ïp4f‘‡Í ëŠqØ>Ø¢g<ôþT`ã­) ~4„àSG¦ÑÞŽ‡%±NÀ/^3K¸c¯J=©˜Îpsž¸í@ âzò:ÐCéÓp03zR›‡\SbGNô´…ê}© »šî @Æ(À¨èGçFåõž”ykéK@g½.(éFàH¤0 )E!â€hÆH£¡¥=8â€=è9Ͻñš(*ÂmÁ$wëFGJQÓ®hÀí@­Ø3Fi¿tçùÐ<Ó°\}c4“Š’ƒ¿­(4”´ P}zQž1I’)(X.ÞA$LU‡B5×é>>–±_Ä3÷Ôsø‚Î+‹¢®%x±4žçµèž'¶™Wì—K$m÷¡có/°æºèõhÕe}ŽÜ~óŽOõ¯šá¹–²8<0<×OaãíB‰zÔiÓ'iˆ®¸×Œ¾5cMô=ñ'• p‡ž{Tåš2(sܾտ:OÄ; K†„—&qùâºë}i£,Š} kʤ¯Lšks … “QÍÝor} e5ûIËG¹p8Í=nPç+€œÔû7¸\½“*2¹‘Áîjô2•W#`áyíõ¬4gÝ×hã‚wV¢½(lŸ¨ÅD¢4l­Â‘€sž¦”Ižã¥e+€ÙVǦîjhç œô}jy@¾²útïA—89ïšÎûgvãúRáæª8½ hù£϶{Ðd#ƒÇçT>ݵ‰ ùøž¼ïÖŽP.oîÓu ¾áÈõëTì'õ¦„v# Ôg“BˆZåqÇáQyø<68ª›Ë}ÑŸNiÙ ¶}ª¹P– |¤ {ôâžñÁÆQ–ê8Î2xÅC&¢Êä‚2 Rƒb¹zFIÝÓ©¨~Ò±’{œƒY²j H!ð6ôp*“ßàŒ¼ò8â´Œ®lµúƒŒ“Û®*¤—ûùr3Ï¥d=à#ž˜ÏçéP˨ª 0ä½Íh©Ø5fã_°‡ /|œñùÖMæ¡û¶@ê¿ÍÏÐV5þ¿¶é–4ïós\•ÿŒà]ßgÝ3r2x½¿Î*_-?‰š$u·Zš°,À*ÀöíŸóÚ¹ÝGÅ–¶¨P8•ó¨^k޾םo‹“bªµ›œœæ°ž*ÚA£ÜÕÔüCu¨’ ÆÝ\äÖVyÅ4“ž¸õ¥Æq\r““»(=AãÒ—QEHÄÇLc˜ÉÏn†Á£€ÐTŸÂ”š^DNÑ·¹ô4ÈÏ'Ž)ÄŒçH9;³è*„0p9úSÆG  6y Û4§ò(bHÉé“éA@xæ—8 ’i Lm'ŸÄÐ þ!{Š'!©)éëÍ0…lþ´˜È?7ìƒü¨ÇéH†#ƒŽ= Çù" hÀþçò§ 9>” Ù³NaòúûPP‡ÿ®×>ÕoN?*qcÆÓJÁpïÅ/JJ;RàhbE7>” dzó@î&NzÒæõ¥úPAÆ})Î9¤ÉÁõ£$ ª° m?Ó2;~”ìñÇJ–†˜½ Üãñfî?°æšsHã¦)7CÍÇR ÒŠ3N¸áÖŽüPFiqÅ! ÏÊ?•hX뚎žÑîäAÝwÎ¥ž‚šml3¶±ø™¨ÃòÝCÉŽJ‚þµÓY|GÒ®HY„1Æ8óæ¼ŒñŒŒQÓÿ­[¬EEæC§ÐúÃX‚íwÛ\FÞêÝGùÍ][Ö@'o¨ï_9¤­Ê1Sê+NÓÄú½˜U†ú@«À ­l±1Lýf{êÞ`|ÖÀ= ÔŸmm™çg#­x¥·Ä=VQäs–Pè+N‰ì1çiàãºËéV«Q}Iör=WûA ÂM¹Ï*Ý[>1$¡טÅñ.ÑÏï –ÕÂÏãí0p%w#¶?­fMñÏ“jïõp?¥T–ò$ßCÑ^õ?y°{÷÷Æj´·ÈÞ8‘Åy´¿'qµ,}dÏô¬Ë¯jÓçl‚ OðI×£µ¥.§¨¶¨’!=÷céYמ ´µ%¤˜!û¸¯*¹Õ¯¯ïîÿOåU ÜšÉâÒøbR§ÝýÏÄ h[ý'‘†pHÂÿ:çï¼e¨Ý’d ÿtÖ¹âÓš_é\ò¯R]KQH–k©ç%¥™ä'ûÌMCéAëHzŽ3Xn6¾qŠ8aíLÚ«Ôç½8u=¾”Ä/ñc©hëÖŠC(¥‡4a½G}i0A<õéNïÓñ£¥‰Ø_cM$î~”‡$ôǽ;í qŠ ÒnsëGZn2ƒ¾9⃻9ϵ8zc”j.´÷>Ôœ`Æ”qÛŠIÎ{0O\u¤\`{zÓ#æ4˜zñ@ Å!àNô€qM;±‚søQ`¼äà­-1³Ç'§joÍêÿ•;0ëE­‡Ð\dõè3H@ëNOû¿ãHÝGÐJ}l>¢ŠM þ4½è¤U†tãŠTù¿Âbƒœg¸Í$„…ãÖ…þ¥$¿wñ£© ç öæãëLOõO»ùÿ*:€ÔrÇ·JD<1ö¤‹ï~'Ýo¥1PYIÉ=©À1“M‹îþ4úLb“Š:R7OÄRž•#¸éGr(ê)?ˆý)‰€c¼Šw§ÿX~•% ŠJ_J@€ñHFWƒŒÒšAÐ})†8æšÄ·oâŸÚ£¾?Þÿ >d"¤¨âû¿>†LüœÅ&áéü¿Â‘¾ñúÒUØGÿÙ hdf-java-2.11.0/samples/misr_am1_metadata.hdf0000644002344600011330000001503310710451743017254 0ustar byrnhdfÊ\e&«>¶ªô ­ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿNCSA HDF Version 4.1 Release 5, November 5, 2001File Name : C:\WINNT\Profiles\xcao\Desktop\misr_am1_GP_GMP_P106_Metadata.hdf Data Object : Vdata table: PerBlockMetadataCommon Source File : //eirene/scr/EOS-SAMPLER-2/data/misr/MISR_AM1_GP_GMP_P106.subset Created on : Wed Apr 10 09:34:02 CDT 2002 Created from: Java HDF Viewer A``ñÀA!µ4A`¥±ÀA1rš A`¥±ÀA!µ4A`êqÀA1rš A`êqÀA!µ4Aa/1ÀA1rš Aa/1ÀA!µ4AasñÀA1rš AasñÀA!µ4Aa¸±ÀA1ršAa¸±ÀA">´AaýqÀA1·ZAaýqÀA">´AbB1ÀA1·ZAbB1ÀA">´Ab†ñÀA1·ZAb†ñÀA">´Ab˱ÀA1·ZAb˱ÀA">´AcqÀA1·ZAcqÀA">´AcU1ÀA1·ZAcU1ÀA">´Ac™ñÀA1·ZAc™ñÀA">´AcÞ±ÀA1·ZAcÞ±ÀA">´Ad#qÀA1·ZAd#qÀA">´Adh1ÀA1·ZAdh1ÀA">´Ad¬ñÀA1·ZAd¬ñÀA">´Adñ±ÀA1·ZAdñ±ÀA">´Ae6qÀA1·ZAe6qÀA">´Ae{1ÀA1·ZAe{1ÀA!µ4Ae¿ñÀA1ršAe¿ñÀA!µ4Af±ÀA1ršAf±ÀA!µ4AfIqÀA1ršAfIqÀA!µ4AfŽ1ÀA1rš AfŽ1ÀA!+´AfÒñÀA1-Ú!AfÒñÀA!+´Ag±ÀA1-Ú"Ag±ÀA!+´Ag\qÀA1-Ú#Ag\qÀA ¢4Ag¡1ÀA0é$Ag¡1ÀA ¢4AgåñÀA0é%AgåñÀA ¢4Ah*±ÀA0é&Ah*±ÀA ´AhoqÀA0¤Z'AhoqÀA ´Ah´1ÀA0¤Z(Ah´1ÀAhAhøñÀA0_š)AhøñÀAhAi=±ÀA0_š*Ai=±ÀA hAi‚qÀA0Ú+Ai‚qÀA hAiÇ1ÀA0Ú,AiÇ1ÀAøhAj ñÀA/¬4-Aj ñÀAåhAjP±ÀA/"´.AjP±ÀAåhAj•qÀA/"´/Aj•qÀAÒhAjÚ1ÀA.™40AjÚ1ÀAÒhAkñÀA.™41AkñÀA¿hAkc±ÀA.´2Akc±ÀA¬hAk¨qÀA-†43Ak¨qÀA¬hAkí1ÀA-†44Akí1ÀA™hAl1ñÀA,ü´5Al1ñÀA†hAlv±ÀA,s46Alv±ÀAshAl»qÀA+é´7Al»qÀAshAm1ÀA+é´8Am1ÀA`hAmDñÀA+`49AmDñÀAMhAm‰±ÀA*Ö´:Am‰±ÀA:hAmÎqÀA*M4;AmÎqÀA'hAn1ÀA)ô<An1ÀA'hAnWñÀA)ô=AnWñÀAhAnœ±ÀA):4>Anœ±ÀAÐAnáqÀA(°´?AnáqÀA ÜÐAo&1ÀA('4@Ao&1ÀA ¶ÐAojñÀA'´AAojñÀAÐAo¯±ÀA'4BAo¯±ÀAjÐAoôqÀA&Š´CAoôqÀADÐAp˜àA&4DAp˜àAÐAp>øàA%w´EAp>øà@ýñ ApaXàA$î4FApaXà@ù¥ Apƒ¸àA$d´GApƒ¸à@õY Ap¦àA#Û4HAp¦à@ñ  ApÈxàA#Q´IApÈxà@éƒ@ApêØàA"È4JApêØà@àë@Aq 8àA">´KAq 8à@Ц€Aq/˜àA!µ4LAq/˜àÀ0AqQøàA!+´MAqQøàÀѹ€AqtXàA ¢4NAqtXàÀátÀAq–¸àA ´OAq–¸àÀê ÀAq¹àAhPAq¹àÀñR`AqÛxàA hQAqÛxàÀõž`AqýØàAøhRAqýØàÀùê`Ar 8àAåhSAr 8àÀþ6`ArB˜àAÒhTArB˜àÁA0ArdøàA¿hUArdøàÁg0Ar‡XàA¬hVAr‡XàÁ³0Ar©¸àA†hWAr©¸àÁ Ù0ArÌàAshXArÌàÁ ÿ0ArîxàA`hYArîxàÁ%0AsØàAMhZAsØàÁ%˜As38àA:h[As38àÁ8˜AsU˜àA'h\AsU˜àÁK˜AswøàAh]AswøàÁ^˜AsšXàAÐ^AsšXàÁq˜As¼¸àA ÜÐ_As¼¸àÁ„˜AsßàA ¶Ð`AsßàÁ—˜AtxàAÐaAtxàÁ½˜At#ØàADÐbAt#ØàÁИAtF8àAÐcAtF8àÁã˜Ath˜à@ýñ dAth˜àÁö˜AtŠøà@ù¥ eAtŠøàÁ ˜At­Xà@õY fAt­XàÁ˜Atϸà@ñ  gAtϸàÁ/˜Atòà@éƒ@hAtòàÁ !LAuxà@àë@iAuxàÁ ªÌAu6Øà@Ц€jAu6ØàÁ!4LAuY8àÀ0kAuY8àÁ!½ÌAu{˜àÀѹ€lAu{˜àÁ"GLAuøàÀátÀmAuøàÁ"ÐÌAuÀXàÀê ÀnAuÀXàÁ#ZLAuâ¸àÀñR`oAuâ¸àÁ#ãÌAvàÀõž`pAvàÁ$mLAv'xàÀùê`qAv'xàÁ$öÌAvIØàÀþ6`rAvIØàÁ%€LAvl8àÁA0sAvl8àÁ& ÌAvŽ˜àÁg0tAvŽ˜àÁ&“LAv°øàÁ0uAv°øàÁ'ÌAvÓXàÁ³0vAvÓXàÁ'¦LAvõ¸àÁ Ù0wAvõ¸àÁ(/ÌAwàÁ ÿ0xAwàÁ(¹LAw:xàÁ%0yAw:xàÁ(¹LAw\ØàÁ%0zAw\ØàÁ)BÌAw8àÁ%˜{Aw8àÁ)ÌLAw¡˜àÁ8˜|Aw¡˜àÁ*UÌAwÃøàÁK˜}AwÃøàÁ*ßLAwæXàÁ^˜~AwæXàÁ+hÌAx¸àÁq˜Ax¸àÁ+hÌAx+àÁq˜€Ax+àÁ+òLAxMxàÁ„˜AxMxàÁ,{ÌAxoØàÁ—˜‚AxoØàÁ-LAx’8àÁª˜ƒAx’8àÁ-LAx´˜àÁª˜„Ax´˜àÁ-ŽÌAxÖøàÁ½˜…AxÖøàÁ.LAxùXàÁИ†AxùXàÁ.LAy¸àÁИ‡Ay¸àÁ.¡ÌAy>àÁ㘈Ay>àÁ.¡ÌAy`xàÁ㘉Ay`xàÁ/+LAy‚ØàÁö˜ŠAy‚ØàÁ/´ÌAy¥8àÁ ˜‹Ay¥8àÁ/´ÌAyǘàÁ ˜ŒAyǘàÁ0&AyéøàÁ˜AyéøàÁ0&Az XàÁ˜ŽAz XàÁ0cæAz.¸àÁ/˜Az.¸àÁ0cæAzQàÁ/˜AzQàÁ0cæAzsxàÁ/˜‘AzsxàÁ0¨¦Az•ØàÁ !L’Az•ØàÁ0¨¦Az¸8àÁ !L“Az¸8àÁ0ífAzÚ˜àÁ ªÌ”AzÚ˜àÁ0ífAzüøàÁ ªÌ•AzüøàÁ0ífA{XàÁ ªÌ–A{XàÁ12&A{A¸àÁ!4L—A{A¸àÁ12&A{dàÁ!4L˜A{dàÁ12&A{†xàÁ!4L™A{†xàÁ12&A{¨ØàÁ!4L™& % Block_number Ocean_flagBlock_coor_ulc_som_meter.xBlock_coor_ulc_som_meter.yBlock_coor_lrc_som_meter.xBlock_coor_lrc_som_meter.y Data_flag#Vdata table: PerBlockMetadataCommonRIG0.0RIG0.0hdf-java-2.11.0/samples/hdf5_test.h5.ddl0000644002344600011330007603660412370507740016135 0ustar byrnhdfHDF5 "hdf5_test.h5" { GROUP "/" { ATTRIBUTE "test" { DATATYPE H5T_STRING { STRSIZE 20; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "this is a test \000" } } DATASET "Notes" { DATATYPE H5T_STRING { STRSIZE 64; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 10, 5 ) / ( 10, 5 ) } DATA { (0,0): "http://www.hdfgroup.org/", "http://www.hdfgroup.org/HDF5/", (0,2): "http://www.hdfgroup.org/products/hdf4/", (0,3): "http://www.hdfgroup.org/hdf-java-html/index.html", (0,4): "http://www.hdfgroup.org/products/", (1,0): "http://www.hdfgroup.org/hdf-java-html/hdfview/index.html", (1,1): "The HDFView is a Java-based tool for browsing and editing HDF4 a", (1,2): "Set the bounds of library versions", (1,3): "Use H5Ocopy() for copying datasets or groups (important for larg", (1,4): "view a file hierarchy in a tree structure ", (2,0): "http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/index.h", (2,1): "HDFView allows users to browse through any HDF4 and HDF5 file", (2,2): "Set link creation order", "Show and modify dangling links", (2,4): "create new file, add or delete groups and datasets ", (3,0): "http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug01int", (3,1): "HDFView allows a user to descend through the hierarchy and navig", (3,2): "test string", "test string", "test string", (4,0): "http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug01int", (4,1): "The content of a data object is loaded only when the object is s", (4,2): "test string", "test string", "test string", (5,0): "http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug02sta", (5,1): "HDFView editing features allow a user to create, delete, and mod", (5,2): "test string", "test string", "test string", (6,0): "http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug03obj", (6,1): "The HDFView graphical user interface (GUI) is simple and easy-to", (6,2): "test string", "test string", "test string", (7,0): "http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug04tre", (7,1): "HDFView was implemented by using the JavaTM 2 Platform, which is", (7,2): "test string", "test string", "test string", (8,0): "http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug05spr", (8,1): "The GUI components have the same look-and-feel for all machines", (8,2): "test string", "test string", "test string", (9,0): "http://www.hdfgroup.org/hdf-java-html/hdfview/UsersGuide/ug06ima", (9,1): "HDFView uses conventional folders and icons to display groups an", (9,2): "test string", "test string", "test string" } } GROUP "arrays" { DATASET "1D String" { DATATYPE H5T_STRING { STRSIZE 400; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "jfdjsakfldsaj; fjdklsajfdkl;as fjdksaljfdkl;as fjdsklajfdkls;a jfdklsa;jfdlsa fdsajfdlk;sa \000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" } } DATASET "2D float array" { DATATYPE H5T_IEEE_F32LE DATASPACE SIMPLE { ( 100, 50 ) / ( 100, 50 ) } DATA { (0,0): 0.000123457, 0.0012345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (0,14): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (0,34): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, (1,0): 0, 0.9, 1.7, 2.6, 3.5, 4.4, 5.2, 6.1, 7, 7.8, 8.7, 9.6, 10.5, (1,13): 11.3, 12.2, 13.1, 13.9, 14.8, 15.6, 16.5, 17.4, 18.2, 19.1, (1,23): 19.9, 20.8, 21.6, 22.5, 23.3, 24.2, 25, 25.9, 26.7, 27.6, (1,33): 28.4, 29.2, 30.1, 30.9, 31.7, 32.6, 33.4, 34.2, 35, 35.8, (1,43): 36.7, 37.5, 38.3, 39.1, 39.9, 40.7, 41.5, (2,0): 0, 1.7, 3.5, 5.2, 7, 8.7, 10.5, 12.2, 13.9, 15.6, 17.4, 19.1, (2,12): 20.8, 22.5, 24.2, 25.9, 27.6, 29.2, 30.9, 32.6, 34.2, 35.8, (2,22): 37.5, 39.1, 40.7, 42.3, 43.8, 45.4, 46.9, 48.5, 50, 51.5, (2,32): 53, 54.5, 55.9, 57.4, 58.8, 60.2, 61.6, 62.9, 64.3, 65.6, (2,42): 66.9, 68.2, 69.5, 70.7, 71.9, 73.1, 74.3, 75.5, (3,0): 0.17, 2.6, 3.5, 7.8, 10.5, 13.1, 15.6, 18.2, 20.8, 23.3, (3,10): 25.9, 28.4, 30.9, 33.4, 35.8, 38.3, 40.7, 43.1, 45.4, 47.7, (3,20): 50, 52.2, 54.5, 56.6, 58.8, 60.9, 62.9, 64.9, 66.9, 68.8, (3,30): 70.7, 72.5, 74.3, 76, 77.7, 79.3, 80.9, 82.4, 83.9, 85.3, (3,40): 86.6, 87.9, 89.1, 90.3, 91.4, 92.4, 93.4, 94.3, 95.1, 95.9, (4,0): 0.35, 5.2, 7, 10.5, 13.9, 17.4, 20.8, 24.2, 27.6, 30.9, 34.2, (4,11): 37.5, 40.7, 43.8, 46.9, 50, 53, 55.9, 58.8, 61.6, 64.3, (4,21): 66.9, 69.5, 71.9, 74.3, 76.6, 78.8, 80.9, 82.9, 84.8, 86.6, (4,31): 88.3, 89.9, 91.4, 92.7, 94, 95.1, 96.1, 97, 97.8, 98.5, 99, (4,42): 99.5, 99.8, 99.9, 100, 99.9, 99.8, 99.5, 99, (5,0): 0.52, 7.8, 10.5, 13.1, 17.4, 21.6, 25.9, 30.1, 34.2, 38.3, (5,10): 42.3, 46.2, 50, 53.7, 57.4, 60.9, 64.3, 67.6, 70.7, 73.7, (5,20): 76.6, 79.3, 81.9, 84.3, 86.6, 88.7, 90.6, 92.4, 94, 95.4, (5,30): 96.6, 97.6, 98.5, 99.1, 99.6, 99.9, 100, 99.9, 99.6, 99.1, (5,40): 98.5, 97.6, 96.6, 95.4, 94, 92.4, 90.6, 88.7, 86.6, 84.3, (6,0): 0.7, 10.5, 13.9, 15.6, 20.8, 25.9, 30.9, 35.8, 40.7, 45.4, (6,10): 50, 54.5, 58.8, 62.9, 66.9, 70.7, 74.3, 77.7, 80.9, 83.9, (6,20): 86.6, 89.1, 91.4, 93.4, 95.1, 96.6, 97.8, 98.8, 99.5, 99.9, (6,30): 100, 99.9, 99.5, 98.8, 97.8, 96.6, 95.1, 93.4, 91.4, 89.1, (6,40): 86.6, 83.9, 80.9, 77.7, 74.3, 70.7, 66.9, 62.9, 58.8, 54.5, (7,0): 0.87, 13.1, 17.4, 18.2, 24.2, 30.1, 35.8, 41.5, 46.9, 52.2, (7,10): 57.4, 62.3, 66.9, 71.3, 75.5, 79.3, 82.9, 86.2, 89.1, 91.7, (7,20): 94, 95.9, 97.4, 98.6, 99.5, 99.9, 100, 99.7, 99, 98, 96.6, (7,31): 94.8, 92.7, 90.3, 87.5, 84.3, 80.9, 77.2, 73.1, 68.8, 64.3, (7,41): 59.5, 54.5, 49.2, 43.8, 38.3, 32.6, 26.7, 20.8, 14.8, (8,0): 1.05, 15.6, 20.8, 20.8, 27.6, 34.2, 40.7, 46.9, 53, 58.8, (8,10): 64.3, 69.5, 74.3, 78.8, 82.9, 86.6, 89.9, 92.7, 95.1, 97, (8,20): 98.5, 99.5, 99.9, 99.9, 99.5, 98.5, 97, 95.1, 92.7, 89.9, (8,30): 86.6, 82.9, 78.8, 74.3, 69.5, 64.3, 58.8, 53, 46.9, 40.7, (8,40): 34.2, 27.6, 20.8, 13.9, 7, 0, -7, -13.9, -20.8, -27.6, (9,0): 1.22, 18.2, 24.2, 23.3, 30.9, 38.3, 45.4, 52.2, 58.8, 64.9, (9,10): 70.7, 76, 80.9, 85.3, 89.1, 92.4, 95.1, 97.2, 98.8, 99.7, (9,20): 100, 99.7, 98.8, 97.2, 95.1, 92.4, 89.1, 85.3, 80.9, 76, (9,30): 70.7, 64.9, 58.8, 52.2, 45.4, 38.3, 30.9, 23.3, 15.6, 7.8, (9,40): 0, -7.8, -15.6, -23.3, -30.9, -38.3, -45.4, -52.2, -58.8, (9,49): -64.9, (10,0): 1.39, 20.8, 27.6, 25.9, 34.2, 42.3, 50, 57.4, 64.3, 70.7, (10,10): 76.6, 81.9, 86.6, 90.6, 94, 96.6, 98.5, 99.6, 100, 99.6, (10,20): 98.5, 96.6, 94, 90.6, 86.6, 81.9, 76.6, 70.7, 64.3, 57.4, (10,30): 50, 42.3, 34.2, 25.9, 17.4, 8.7, 0, -8.7, -17.4, -25.9, (10,40): -34.2, -42.3, -50, -57.4, -64.3, -70.7, -76.6, -81.9, (10,48): -86.6, -90.6, (11,0): 1.56, 23.3, 30.9, 28.4, 37.5, 46.2, 54.5, 62.3, 69.5, 76, (11,10): 81.9, 87, 91.4, 94.8, 97.4, 99.1, 99.9, 99.8, 98.8, 96.8, (11,20): 94, 90.3, 85.7, 80.4, 74.3, 67.6, 60.2, 52.2, 43.8, 35, (11,30): 25.9, 16.5, 7, -2.6, -12.2, -21.6, -30.9, -39.9, -48.5, (11,39): -56.6, -64.3, -71.3, -77.7, -83.4, -88.3, -92.4, -95.6, (11,47): -98, -99.5, -100, (12,0): 1.74, 25.9, 34.2, 30.9, 40.7, 50, 58.8, 66.9, 74.3, 80.9, (12,10): 86.6, 91.4, 95.1, 97.8, 99.5, 100, 99.5, 97.8, 95.1, 91.4, (12,20): 86.6, 80.9, 74.3, 66.9, 58.8, 50, 40.7, 30.9, 20.8, 10.5, (12,30): 0, -10.5, -20.8, -30.9, -40.7, -50, -58.8, -66.9, -74.3, (12,39): -80.9, -86.6, -91.4, -95.1, -97.8, -99.5, -100, -99.5, (12,47): -97.8, -95.1, -91.4, (13,0): 1.91, 28.4, 37.5, 33.4, 43.8, 53.7, 62.9, 71.3, 78.8, 85.3, (13,10): 90.6, 94.8, 97.8, 99.5, 100, 99.1, 97, 93.7, 89.1, 83.4, (13,20): 76.6, 68.8, 60.2, 50.8, 40.7, 30.1, 19.1, 7.8, -3.5, -14.8, (13,30): -25.9, -36.7, -46.9, -56.6, -65.6, -73.7, -80.9, -87, (13,38): -92.1, -95.9, -98.5, -99.8, -99.9, -98.6, -96.1, -92.4, (13,46): -87.5, -81.4, -74.3, -66.3, (14,0): 2.08, 30.9, 40.7, 35.8, 46.9, 57.4, 66.9, 75.5, 82.9, 89.1, (14,10): 94, 97.4, 99.5, 100, 99, 96.6, 92.7, 87.5, 80.9, 73.1, (14,20): 64.3, 54.5, 43.8, 32.6, 20.8, 8.7, -3.5, -15.6, -27.6, (14,29): -39.1, -50, -60.2, -69.5, -77.7, -84.8, -90.6, -95.1, (14,37): -98.2, -99.8, -99.9, -98.5, -95.6, -91.4, -85.7, -78.8, (14,45): -70.7, -61.6, -51.5, -40.7, -29.2, (15,0): 2.25, 33.4, 43.8, 38.3, 50, 60.9, 70.7, 79.3, 86.6, 92.4, (15,10): 96.6, 99.1, 100, 99.1, 96.6, 92.4, 86.6, 79.3, 70.7, 60.9, (15,20): 50, 38.3, 25.9, 13.1, 0, -13.1, -25.9, -38.3, -50, -60.9, (15,30): -70.7, -79.3, -86.6, -92.4, -96.6, -99.1, -100, -99.1, (15,38): -96.6, -92.4, -86.6, -79.3, -70.7, -60.9, -50, -38.3, (15,46): -25.9, -13.1, 0, 13.1, (16,0): 2.42, 35.8, 46.9, 40.7, 53, 64.3, 74.3, 82.9, 89.9, 95.1, (16,10): 98.5, 99.9, 99.5, 97, 92.7, 86.6, 78.8, 69.5, 58.8, 46.9, (16,20): 34.2, 20.8, 7, -7, -20.8, -34.2, -46.9, -58.8, -69.5, (16,29): -78.8, -86.6, -92.7, -97, -99.5, -99.9, -98.5, -95.1, (16,37): -89.9, -82.9, -74.3, -64.3, -53, -40.7, -27.6, -13.9, 0, (16,46): 13.9, 27.6, 40.7, 53, (17,0): 2.59, 38.3, 50, 43.1, 55.9, 67.6, 77.7, 86.2, 92.7, 97.2, (17,10): 99.6, 99.8, 97.8, 93.7, 87.5, 79.3, 69.5, 58.1, 45.4, 31.7, (17,20): 17.4, 2.6, -12.2, -26.7, -40.7, -53.7, -65.6, -76, -84.8, (17,29): -91.7, -96.6, -99.4, -99.9, -98.3, -94.6, -88.7, -80.9, (17,37): -71.3, -60.2, -47.7, -34.2, -19.9, -5.2, 9.6, 24.2, 38.3, (17,46): 51.5, 63.6, 74.3, 83.4, (18,0): 2.76, 40.7, 53, 45.4, 58.8, 70.7, 80.9, 89.1, 95.1, 98.8, (18,10): 100, 98.8, 95.1, 89.1, 80.9, 70.7, 58.8, 45.4, 30.9, 15.6, (18,20): 0, -15.6, -30.9, -45.4, -58.8, -70.7, -80.9, -89.1, -95.1, (18,29): -98.8, -100, -98.8, -95.1, -89.1, -80.9, -70.7, -58.8, (18,37): -45.4, -30.9, -15.6, 0, 15.6, 30.9, 45.4, 58.8, 70.7, 80.9, (18,47): 89.1, 95.1, 98.8, (19,0): 0, 16.5, 32.6, 47.7, 61.6, 73.7, 83.9, 91.7, 97, 99.7, 99.6, (19,11): 96.8, 91.4, 83.4, 73.1, 60.9, 46.9, 31.7, 15.6, -0.9, (19,20): -17.4, -33.4, -48.5, -62.3, -74.3, -84.3, -92.1, -97.2, (19,28): -99.8, -99.5, -96.6, -91, -82.9, -72.5, -60.2, -46.2, (19,36): -30.9, -14.8, 1.7, 18.2, 34.2, 49.2, 62.9, 74.9, 84.8, (19,45): 92.4, 97.4, 99.8, 99.5, 96.4, (20,0): 0, 17.4, 34.2, 50, 64.3, 76.6, 86.6, 94, 98.5, 100, 98.5, (20,11): 94, 86.6, 76.6, 64.3, 50, 34.2, 17.4, 0, -17.4, -34.2, -50, (20,22): -64.3, -76.6, -86.6, -94, -98.5, -100, -98.5, -94, -86.6, (20,31): -76.6, -64.3, -50, -34.2, -17.4, 0, 17.4, 34.2, 50, 64.3, (20,41): 76.6, 86.6, 94, 98.5, 100, 98.5, 94, 86.6, 76.6, (21,0): 0, 18.2, 35.8, 52.2, 66.9, 79.3, 89.1, 95.9, 99.5, 99.7, (21,10): 96.6, 90.3, 80.9, 68.8, 54.5, 38.3, 20.8, 2.6, -15.6, (21,19): -33.4, -50, -64.9, -77.7, -87.9, -95.1, -99.1, -99.9, (21,27): -97.2, -91.4, -82.4, -70.7, -56.6, -40.7, -23.3, -5.2, (21,35): 13.1, 30.9, 47.7, 62.9, 76, 86.6, 94.3, 98.8, 100, 97.8, (21,45): 92.4, 83.9, 72.5, 58.8, 43.1, (22,0): 0, 19.1, 37.5, 54.5, 69.5, 81.9, 91.4, 97.4, 99.9, 98.8, 94, (22,11): 85.7, 74.3, 60.2, 43.8, 25.9, 7, -12.2, -30.9, -48.5, (22,20): -64.3, -77.7, -88.3, -95.6, -99.5, -99.6, -96.1, -89.1, (22,28): -78.8, -65.6, -50, -32.6, -13.9, 5.2, 24.2, 42.3, 58.8, (22,37): 73.1, 84.8, 93.4, 98.5, 100, 97.8, 92.1, 82.9, 70.7, 55.9, (22,47): 39.1, 20.8, 1.7, (23,0): 0, 19.9, 39.1, 56.6, 71.9, 84.3, 93.4, 98.6, 99.9, 97.2, (23,10): 90.6, 80.4, 66.9, 50.8, 32.6, 13.1, -7, -26.7, -45.4, (23,19): -62.3, -76.6, -87.9, -95.6, -99.5, -99.5, -95.4, -87.5, (23,27): -76, -61.6, -44.6, -25.9, -6.1, 13.9, 33.4, 51.5, 67.6, (23,36): 80.9, 91, 97.4, 100, 98.5, 93, 83.9, 71.3, 55.9, 38.3, (23,46): 19.1, -0.9, -20.8, -39.9, (24,0): 0, 20.8, 40.7, 58.8, 74.3, 86.6, 95.1, 99.5, 99.5, 95.1, (24,10): 86.6, 74.3, 58.8, 40.7, 20.8, 0, -20.8, -40.7, -58.8, (24,19): -74.3, -86.6, -95.1, -99.5, -99.5, -95.1, -86.6, -74.3, (24,27): -58.8, -40.7, -20.8, 0, 20.8, 40.7, 58.8, 74.3, 86.6, 95.1, (24,37): 99.5, 99.5, 95.1, 86.6, 74.3, 58.8, 40.7, 20.8, 0, -20.8, (24,47): -40.7, -58.8, -74.3, (25,0): 0, 21.6, 42.3, 60.9, 76.6, 88.7, 96.6, 99.9, 98.5, 92.4, (25,10): 81.9, 67.6, 50, 30.1, 8.7, -13.1, -34.2, -53.7, -70.7, (25,19): -84.3, -94, -99.1, -99.6, -95.4, -86.6, -73.7, -57.4, (25,27): -38.3, -17.4, 4.4, 25.9, 46.2, 64.3, 79.3, 90.6, 97.6, 100, (25,37): 97.6, 90.6, 79.3, 64.3, 46.2, 25.9, 4.4, -17.4, -38.3, (25,46): -57.4, -73.7, -86.6, -95.4, (26,0): 0, 22.5, 43.8, 62.9, 78.8, 90.6, 97.8, 100, 97, 89.1, 76.6, (26,11): 60.2, 40.7, 19.1, -3.5, -25.9, -46.9, -65.6, -80.9, -92.1, (26,20): -98.5, -99.9, -96.1, -87.5, -74.3, -57.4, -37.5, -15.6, 7, (26,29): 29.2, 50, 68.2, 82.9, 93.4, 99, 99.6, 95.1, 85.7, 71.9, (26,39): 54.5, 34.2, 12.2, -10.5, -32.6, -53, -70.7, -84.8, -94.6, (26,48): -99.5, -99.3, (27,0): 0, 23.3, 45.4, 64.9, 80.9, 92.4, 98.8, 99.7, 95.1, 85.3, (27,10): 70.7, 52.2, 30.9, 7.8, -15.6, -38.3, -58.8, -76, -89.1, (27,19): -97.2, -100, -97.2, -89.1, -76, -58.8, -38.3, -15.6, 7.8, (27,28): 30.9, 52.2, 70.7, 85.3, 95.1, 99.7, 98.8, 92.4, 80.9, 64.9, (27,38): 45.4, 23.3, 0, -23.3, -45.4, -64.9, -80.9, -92.4, -98.8, (27,47): -99.7, -95.1, -85.3, (28,0): 0, 24.2, 46.9, 66.9, 82.9, 94, 99.5, 99, 92.7, 80.9, 64.3, (28,11): 43.8, 20.8, -3.5, -27.6, -50, -69.5, -84.8, -95.1, -99.8, (28,20): -98.5, -91.4, -78.8, -61.6, -40.7, -17.4, 7, 30.9, 53, (28,29): 71.9, 86.6, 96.1, 99.9, 97.8, 89.9, 76.6, 58.8, 37.5, 13.9, (28,39): -10.5, -34.2, -55.9, -74.3, -88.3, -97, -100, -97, -88.3, (28,48): -74.3, -55.9, (29,0): 0, 25, 48.5, 68.8, 84.8, 95.4, 99.9, 98, 89.9, 76, 57.4, 35, (29,12): 10.5, -14.8, -39.1, -60.9, -78.8, -91.7, -98.8, -99.5, -94, (29,21): -82.4, -65.6, -44.6, -20.8, 4.4, 29.2, 52.2, 71.9, 87, (29,30): 96.6, 100, 97, 87.9, 73.1, 53.7, 30.9, 6.1, -19.1, -43.1, (29,40): -64.3, -81.4, -93.4, -99.4, -99, -92.4, -79.9, -62.3, (29,48): -40.7, -16.5, (30,0): 0, 25.9, 50, 70.7, 86.6, 96.6, 100, 96.6, 86.6, 70.7, 50, (30,11): 25.9, 0, -25.9, -50, -70.7, -86.6, -96.6, -100, -96.6, (30,20): -86.6, -70.7, -50, -25.9, 0, 25.9, 50, 70.7, 86.6, 96.6, (30,30): 100, 96.6, 86.6, 70.7, 50, 25.9, 0, -25.9, -50, -70.7, (30,40): -86.6, -96.6, -100, -96.6, -86.6, -70.7, -50, -25.9, 0, (30,49): 25.9, (31,0): 0, 26.7, 51.5, 72.5, 88.3, 97.6, 99.9, 94.8, 82.9, 64.9, (31,10): 42.3, 16.5, -10.5, -36.7, -60.2, -79.3, -92.7, -99.4, (31,18): -98.8, -91, -76.6, -56.6, -32.6, -6.1, 20.8, 46.2, 68.2, (31,27): 85.3, 96.1, 100, 96.6, 86.2, 69.5, 47.7, 22.5, -4.4, -30.9, (31,37): -55.2, -75.5, -90.3, -98.5, -99.5, -93.4, -80.4, -61.6, (31,45): -38.3, -12.2, 14.8, 40.7, 63.6, (32,0): 0, 27.6, 53, 74.3, 89.9, 98.5, 99.5, 92.7, 78.8, 58.8, 34.2, (32,11): 7, -20.8, -46.9, -69.5, -86.6, -97, -99.9, -95.1, -82.9, (32,20): -64.3, -40.7, -13.9, 13.9, 40.7, 64.3, 82.9, 95.1, 99.9, (32,29): 97, 86.6, 69.5, 46.9, 20.8, -7, -34.2, -58.8, -78.8, -92.7, (32,39): -99.5, -98.5, -89.9, -74.3, -53, -27.6, 0, 27.6, 53, 74.3, (32,49): 89.9, (33,0): 0, 28.4, 54.5, 76, 91.4, 99.1, 98.8, 90.3, 74.3, 52.2, 25.9, (33,11): -2.6, -30.9, -56.6, -77.7, -92.4, -99.5, -98.3, -89.1, (33,19): -72.5, -50, -23.3, 5.2, 33.4, 58.8, 79.3, 93.4, 99.7, 97.8, (33,29): 87.9, 70.7, 47.7, 20.8, -7.8, -35.8, -60.9, -80.9, -94.3, (33,38): -99.9, -97.2, -86.6, -68.8, -45.4, -18.2, 10.5, 38.3, 62.9, (33,47): 82.4, 95.1, 100, (34,0): 0, 29.2, 55.9, 77.7, 92.7, 99.6, 97.8, 87.5, 69.5, 45.4, (34,10): 17.4, -12.2, -40.7, -65.6, -84.8, -96.6, -99.9, -94.6, (34,18): -80.9, -60.2, -34.2, -5.2, 24.2, 51.5, 74.3, 90.6, 99, (34,27): 98.8, 89.9, 73.1, 50, 22.5, -7, -35.8, -61.6, -81.9, -95.1, (34,37): -100, -96.1, -83.9, -64.3, -39.1, -10.5, 19.1, 46.9, 70.7, (34,46): 88.3, 98.2, 99.5, 92.1, (35,0): 0, 30.1, 57.4, 79.3, 94, 99.9, 96.6, 84.3, 64.3, 38.3, 8.7, (35,11): -21.6, -50, -73.7, -90.6, -99.1, -98.5, -88.7, -70.7, (35,19): -46.2, -17.4, 13.1, 42.3, 67.6, 86.6, 97.6, 99.6, 92.4, (35,28): 76.6, 53.7, 25.9, -4.4, -34.2, -60.9, -81.9, -95.4, -100, (35,37): -95.4, -81.9, -60.9, -34.2, -4.4, 25.9, 53.7, 76.6, 92.4, (35,46): 99.6, 97.6, 86.6, 67.6, (36,0): 0, 30.9, 58.8, 80.9, 95.1, 100, 95.1, 80.9, 58.8, 30.9, 0, (36,11): -30.9, -58.8, -80.9, -95.1, -100, -95.1, -80.9, -58.8, (36,19): -30.9, 0, 30.9, 58.8, 80.9, 95.1, 100, 95.1, 80.9, 58.8, (36,29): 30.9, 0, -30.9, -58.8, -80.9, -95.1, -100, -95.1, -80.9, (36,38): -58.8, -30.9, 0, 30.9, 58.8, 80.9, 95.1, 100, 95.1, 80.9, (36,48): 58.8, 30.9, (37,0): 0, 31.7, 60.2, 82.4, 96.1, 99.9, 93.4, 77.2, 53, 23.3, -8.7, (37,11): -39.9, -66.9, -87, -98.2, -99.1, -89.9, -71.3, -45.4, (37,19): -14.8, 17.4, 47.7, 73.1, 91, 99.5, 97.6, 85.7, 64.9, 37.5, (37,29): 6.1, -25.9, -55.2, -78.8, -94.3, -100, -95.4, -80.9, -58.1, (37,38): -29.2, 2.6, 34.2, 62.3, 83.9, 96.8, 99.8, 92.4, 75.5, 50.8, (37,48): 20.8, -11.3, (38,0): 0, 32.6, 61.6, 83.9, 97, 99.6, 91.4, 73.1, 46.9, 15.6, (38,10): -17.4, -48.5, -74.3, -92.1, -99.8, -96.6, -82.9, -60.2, (38,18): -30.9, 1.7, 34.2, 62.9, 84.8, 97.4, 99.5, 90.6, 71.9, 45.4, (38,28): 13.9, -19.1, -50, -75.5, -92.7, -99.9, -96.1, -81.9, -58.8, (38,37): -29.2, 3.5, 35.8, 64.3, 85.7, 97.8, 99.3, 89.9, 70.7, 43.8, (38,47): 12.2, -20.8, -51.5, (39,0): 0, 33.4, 62.9, 85.3, 97.8, 99.1, 89.1, 68.8, 40.7, 7.8, (39,10): -25.9, -56.6, -80.9, -95.9, -99.9, -92.4, -74.3, -47.7, (39,18): -15.6, 18.2, 50, 76, 93.4, 100, 95.1, 79.3, 54.5, 23.3, (39,28): -10.5, -43.1, -70.7, -90.3, -99.5, -97.2, -83.9, -60.9, (39,36): -30.9, 2.6, 35.8, 64.9, 86.6, 98.3, 98.8, 87.9, 66.9, 38.3, (39,46): 5.2, -28.4, -58.8, -82.4, (40,0): 0, 34.2, 64.3, 86.6, 98.5, 98.5, 86.6, 64.3, 34.2, 0, -34.2, (40,11): -64.3, -86.6, -98.5, -98.5, -86.6, -64.3, -34.2, 0, 34.2, (40,20): 64.3, 86.6, 98.5, 98.5, 86.6, 64.3, 34.2, 0, -34.2, -64.3, (40,30): -86.6, -98.5, -98.5, -86.6, -64.3, -34.2, 0, 34.2, 64.3, (40,39): 86.6, 98.5, 98.5, 86.6, 64.3, 34.2, 0, -34.2, -64.3, -86.6, (40,49): -98.5, (41,0): 0, 35, 65.6, 87.9, 99, 97.6, 83.9, 59.5, 27.6, -7.8, -42.3, (41,11): -71.3, -91.4, -99.8, -95.6, -79.3, -53, -19.9, 15.6, 49.2, (41,20): 76.6, 94.3, 100, 93, 74.3, 46.2, 12.2, -23.3, -55.9, -81.4, (41,30): -96.6, -99.5, -89.9, -68.8, -39.1, -4.4, 30.9, 62.3, 85.7, (41,39): 98.3, 98.5, 86.2, 62.9, 31.7, -3.5, -38.3, -68.2, -89.5, (41,48): -99.5, -96.8, (42,0): 0, 35.8, 66.9, 89.1, 99.5, 96.6, 80.9, 54.5, 20.8, -15.6, (42,10): -50, -77.7, -95.1, -99.9, -91.4, -70.7, -40.7, -5.2, 30.9, (42,19): 62.9, 86.6, 98.8, 97.8, 83.9, 58.8, 25.9, -10.5, -45.4, (42,28): -74.3, -93.4, -100, -93.4, -74.3, -45.4, -10.5, 25.9, 58.8, (42,37): 83.9, 97.8, 98.8, 86.6, 62.9, 30.9, -5.2, -40.7, -70.7, (42,46): -91.4, -99.9, -95.1, -77.7, (43,0): 0, 36.7, 68.2, 90.3, 99.8, 95.4, 77.7, 49.2, 13.9, -23.3, (43,10): -57.4, -83.4, -97.8, -98.6, -85.7, -60.9, -27.6, 9.6, 45.4, (43,19): 74.9, 94, 100, 92.1, 71.3, 40.7, 4.4, -32.6, -64.9, -88.3, (43,29): -99.4, -96.6, -80.4, -53, -18.2, 19.1, 53.7, 80.9, 96.8, (43,38): 99.3, 87.9, 64.3, 31.7, -5.2, -41.5, -71.9, -92.4, -100, (43,47): -93.7, -74.3, -44.6, (44,0): 0, 37.5, 69.5, 91.4, 99.9, 94, 74.3, 43.8, 7, -30.9, -64.3, (44,11): -88.3, -99.5, -96.1, -78.8, -50, -13.9, 24.2, 58.8, 84.8, (44,20): 98.5, 97.8, 82.9, 55.9, 20.8, -17.4, -53, -80.9, -97, -99, (44,30): -86.6, -61.6, -27.6, 10.5, 46.9, 76.6, 95.1, 99.8, 89.9, (44,39): 66.9, 34.2, -3.5, -40.7, -71.9, -92.7, -100, -92.7, -71.9, (44,48): -40.7, -3.5, (45,0): 0, 38.3, 70.7, 92.4, 100, 92.4, 70.7, 38.3, 0, -38.3, -70.7, (45,11): -92.4, -100, -92.4, -70.7, -38.3, 0, 38.3, 70.7, 92.4, 100, (45,21): 92.4, 70.7, 38.3, 0, -38.3, -70.7, -92.4, -100, -92.4, (45,30): -70.7, -38.3, 0, 38.3, 70.7, 92.4, 100, 92.4, 70.7, 38.3, (45,40): 0, -38.3, -70.7, -92.4, -100, -92.4, -70.7, -38.3, 0, 38.3, (46,0): 0, 39.1, 71.9, 93.4, 99.9, 90.6, 66.9, 32.6, -7, -45.4, (46,10): -76.6, -95.6, -99.5, -87.5, -61.6, -25.9, 13.9, 51.5, 80.9, (46,19): 97.4, 98.5, 83.9, 55.9, 19.1, -20.8, -57.4, -84.8, -98.8, (46,28): -97, -79.9, -50, -12.2, 27.6, 62.9, 88.3, 99.6, 95.1, 75.5, (46,38): 43.8, 5.2, -34.2, -68.2, -91.4, -100, -92.7, -70.7, -37.5, (46,47): 1.7, 40.7, 73.1, (47,0): 0, 39.9, 73.1, 94.3, 99.8, 88.7, 62.9, 26.7, -13.9, -52.2, (47,10): -81.9, -98, -97.8, -81.4, -51.5, -13.1, 27.6, 63.6, 89.1, (47,19): 99.8, 94, 72.5, 39.1, -0.9, -40.7, -73.7, -94.6, -99.7, (47,28): -88.3, -62.3, -25.9, 14.8, 53, 82.4, 98.2, 97.6, 80.9, (47,37): 50.8, 12.2, -28.4, -64.3, -89.5, -99.9, -93.7, -71.9, (47,45): -38.3, 1.7, 41.5, 74.3, 94.8, (48,0): 0, 40.7, 74.3, 95.1, 99.5, 86.6, 58.8, 20.8, -20.8, -58.8, (48,10): -86.6, -99.5, -95.1, -74.3, -40.7, 0, 40.7, 74.3, 95.1, (48,19): 99.5, 86.6, 58.8, 20.8, -20.8, -58.8, -86.6, -99.5, -95.1, (48,28): -74.3, -40.7, 0, 40.7, 74.3, 95.1, 99.5, 86.6, 58.8, 20.8, (48,38): -20.8, -58.8, -86.6, -99.5, -95.1, -74.3, -40.7, 0, 40.7, (48,47): 74.3, 95.1, 99.5, (49,0): 0, 41.5, 75.5, 95.9, 99, 84.3, 54.5, 14.8, -27.6, -64.9, (49,10): -90.6, -100, -91.4, -66.3, -29.2, 13.1, 53, 83.4, 98.8, (49,19): 96.4, 76.6, 43.1, 1.7, -39.9, -74.3, -95.4, -99.3, -85.3, (49,28): -55.9, -16.5, 25.9, 63.6, 89.9, 100, 92.1, 67.6, 30.9, (49,37): -11.3, -51.5, -82.4, -98.5, -96.8, -77.7, -44.6, -3.5, (49,45): 38.3, 73.1, 94.8, 99.5, 86.2, (50,0): 0, 42.3, 76.6, 96.6, 98.5, 81.9, 50, 8.7, -34.2, -70.7, -94, (50,11): -99.6, -86.6, -57.4, -17.4, 25.9, 64.3, 90.6, 100, 90.6, (50,20): 64.3, 25.9, -17.4, -57.4, -86.6, -99.6, -94, -70.7, -34.2, (50,29): 8.7, 50, 81.9, 98.5, 96.6, 76.6, 42.3, 0, -42.3, -76.6, (50,39): -96.6, -98.5, -81.9, -50, -8.7, 34.2, 70.7, 94, 99.6, 86.6, (50,49): 57.4, (51,0): 0, 43.1, 77.7, 97.2, 97.8, 79.3, 45.4, 2.6, -40.7, -76, (51,10): -96.6, -98.3, -80.9, -47.7, -5.2, 38.3, 74.3, 95.9, 98.8, (51,19): 82.4, 50, 7.8, -35.8, -72.5, -95.1, -99.1, -83.9, -52.2, (51,28): -10.5, 33.4, 70.7, 94.3, 99.5, 85.3, 54.5, 13.1, -30.9, (51,37): -68.8, -93.4, -99.7, -86.6, -56.6, -15.6, 28.4, 66.9, 92.4, (51,46): 99.9, 87.9, 58.8, 18.2, (52,0): 0, 43.8, 78.8, 97.8, 97, 76.6, 40.7, -3.5, -46.9, -80.9, (52,10): -98.5, -96.1, -74.3, -37.5, 7, 50, 82.9, 99, 95.1, 71.9, (52,20): 34.2, -10.5, -53, -84.8, -99.5, -94, -69.5, -30.9, 13.9, (52,29): 55.9, 86.6, 99.8, 92.7, 66.9, 27.6, -17.4, -58.8, -88.3, (52,38): -99.9, -91.4, -64.3, -24.2, 20.8, 61.6, 89.9, 100, 89.9, (52,47): 61.6, 20.8, -24.2, (53,0): 0, 44.6, 79.9, 98.3, 96.1, 73.7, 35.8, -9.6, -53, -85.3, (53,10): -99.6, -93, -66.9, -26.7, 19.1, 60.9, 89.9, 100, 89.1, (53,19): 59.5, 17.4, -28.4, -68.2, -93.7, -99.5, -84.3, -51.5, -7.8, (53,28): 37.5, 74.9, 96.6, 98, 78.8, 43.1, -1.7, -46.2, -80.9, (53,37): -98.6, -95.6, -72.5, -34.2, 11.3, 54.5, 86.2, 99.8, 92.4, (53,46): 65.6, 25, -20.8, -62.3, (54,0): 0, 45.4, 80.9, 98.8, 95.1, 70.7, 30.9, -15.6, -58.8, -89.1, (54,10): -100, -89.1, -58.8, -15.6, 30.9, 70.7, 95.1, 98.8, 80.9, (54,19): 45.4, 0, -45.4, -80.9, -98.8, -95.1, -70.7, -30.9, 15.6, (54,28): 58.8, 89.1, 100, 89.1, 58.8, 15.6, -30.9, -70.7, -95.1, (54,37): -98.8, -80.9, -45.4, 0, 45.4, 80.9, 98.8, 95.1, 70.7, 30.9, (54,47): -15.6, -58.8, -89.1, (55,0): 0, 46.2, 81.9, 99.1, 94, 67.6, 25.9, -21.6, -64.3, -92.4, (55,10): -99.6, -84.3, -50, -4.4, 42.3, 79.3, 98.5, 95.4, 70.7, (55,19): 30.1, -17.4, -60.9, -90.6, -99.9, -86.6, -53.7, -8.7, 38.3, (55,28): 76.6, 97.6, 96.6, 73.7, 34.2, -13.1, -57.4, -88.7, -100, (55,37): -88.7, -57.4, -13.1, 34.2, 73.7, 96.6, 97.6, 76.6, 38.3, (55,46): -8.7, -53.7, -86.6, -99.9, (56,0): 0, 46.9, 82.9, 99.5, 92.7, 64.3, 20.8, -27.6, -69.5, -95.1, (56,10): -98.5, -78.8, -40.7, 7, 53, 86.6, 99.9, 89.9, 58.8, 13.9, (56,20): -34.2, -74.3, -97, -97, -74.3, -34.2, 13.9, 58.8, 89.9, (56,29): 99.9, 86.6, 53, 7, -40.7, -78.8, -98.5, -95.1, -69.5, (56,38): -27.6, 20.8, 64.3, 92.7, 99.5, 82.9, 46.9, 0, -46.9, -82.9, (56,48): -99.5, -92.7, (57,0): 0, 47.7, 83.9, 99.7, 91.4, 60.9, 15.6, -33.4, -74.3, -97.2, (57,10): -96.6, -72.5, -30.9, 18.2, 62.9, 92.4, 99.5, 82.4, 45.4, (57,19): -2.6, -50, -85.3, -99.9, -90.3, -58.8, -13.1, 35.8, 76, (57,28): 97.8, 95.9, 70.7, 28.4, -20.8, -64.9, -93.4, -99.1, -80.9, (57,37): -43.1, 5.2, 52.2, 86.6, 100, 89.1, 56.6, 10.5, -38.3, (57,46): -77.7, -98.3, -95.1, -68.8, (58,0): 0, 48.5, 84.8, 99.9, 89.9, 57.4, 10.5, -39.1, -78.8, -98.8, (58,10): -94, -65.6, -20.8, 29.2, 71.9, 96.6, 97, 73.1, 30.9, -19.1, (58,20): -64.3, -93.4, -99, -79.9, -40.7, 8.7, 55.9, 89.1, 99.9, (58,29): 85.7, 50, 1.7, -46.9, -83.9, -99.8, -90.6, -58.8, -12.2, (58,38): 37.5, 77.7, 98.5, 94.6, 66.9, 22.5, -27.6, -70.7, -96.1, (58,47): -97.4, -74.3, -32.6, (59,0): 0, 49.2, 85.7, 100, 88.3, 53.7, 5.2, -44.6, -82.9, -99.7, (59,10): -90.6, -58.1, -10.5, 39.9, 79.9, 99.1, 92.7, 62.3, 15.6, (59,19): -35, -76.6, -98.3, -94.6, -66.3, -20.8, 30.1, 73.1, 97.2, (59,28): 96.1, 70.1, 25.9, -25, -69.5, -95.9, -97.4, -73.7, -30.9, (59,37): 19.9, 65.6, 94.3, 98.5, 77.2, 35.8, -14.8, -61.6, -92.4, (59,46): -99.3, -80.4, -40.7, 9.6, (60,0): 0, 50, 86.6, 100, 86.6, 50, 0, -50, -86.6, -100, -86.6, -50, (60,12): 0, 50, 86.6, 100, 86.6, 50, 0, -50, -86.6, -100, -86.6, (60,23): -50, 0, 50, 86.6, 100, 86.6, 50, 0, -50, -86.6, -100, (60,34): -86.6, -50, 0, 50, 86.6, 100, 86.6, 50, 0, -50, -86.6, (60,45): -100, -86.6, -50, 0, 50, (61,0): 0, 50.8, 87.5, 100, 84.8, 46.2, -5.2, -55.2, -89.9, -99.7, (61,10): -81.9, -41.5, 10.5, 59.5, 92.1, 99.1, 78.8, 36.7, -15.6, (61,19): -63.6, -94, -98.3, -75.5, -31.7, 20.8, 67.6, 95.6, 97.2, (61,28): 71.9, 26.7, -25.9, -71.3, -97, -95.9, -68.2, -21.6, 30.9, (61,37): 74.9, 98.2, 94.3, 64.3, 16.5, -35.8, -78.3, -99, -92.4, (61,46): -60.2, -11.3, 40.7, 81.4, (62,0): 0, 51.5, 88.3, 99.9, 82.9, 42.3, -10.5, -60.2, -92.7, -98.8, (62,10): -76.6, -32.6, 20.8, 68.2, 96.1, 96.6, 69.5, 22.5, -30.9, (62,19): -75.5, -98.5, -93.4, -61.6, -12.2, 40.7, 81.9, 99.8, 89.1, (62,28): 53, 1.7, -50, -87.5, -99.9, -83.9, -43.8, 8.7, 58.8, 92.1, (62,38): 99, 77.7, 34.2, -19.1, -66.9, -95.6, -97, -70.7, -24.2, (62,47): 29.2, 74.3, 98.2, (63,0): 0, 52.2, 89.1, 99.7, 80.9, 38.3, -15.6, -64.9, -95.1, -97.2, (63,10): -70.7, -23.3, 30.9, 76, 98.8, 92.4, 58.8, 7.8, -45.4, (63,19): -85.3, -100, -85.3, -45.4, 7.8, 58.8, 92.4, 98.8, 76, 30.9, (63,29): -23.3, -70.7, -97.2, -95.1, -64.9, -15.6, 38.3, 80.9, 99.7, (63,38): 89.1, 52.2, 0, -52.2, -89.1, -99.7, -80.9, -38.3, 15.6, (63,47): 64.9, 95.1, 97.2, (64,0): 0, 53, 89.9, 99.5, 78.8, 34.2, -20.8, -69.5, -97, -95.1, (64,10): -64.3, -13.9, 40.7, 82.9, 99.9, 86.6, 46.9, -7, -58.8, (64,19): -92.7, -98.5, -74.3, -27.6, 27.6, 74.3, 98.5, 92.7, 58.8, (64,28): 7, -46.9, -86.6, -99.9, -82.9, -40.7, 13.9, 64.3, 95.1, 97, (64,38): 69.5, 20.8, -34.2, -78.8, -99.5, -89.9, -53, 0, 53, 89.9, (64,48): 99.5, 78.8, (65,0): 0, 53.7, 90.6, 99.1, 76.6, 30.1, -25.9, -73.7, -98.5, -92.4, (65,10): -57.4, -4.4, 50, 88.7, 99.6, 79.3, 34.2, -21.6, -70.7, (65,19): -97.6, -94, -60.9, -8.7, 46.2, 86.6, 99.9, 81.9, 38.3, (65,28): -17.4, -67.6, -96.6, -95.4, -64.3, -13.1, 42.3, 84.3, 100, (65,37): 84.3, 42.3, -13.1, -64.3, -95.4, -96.6, -67.6, -17.4, 38.3, (65,46): 81.9, 99.9, 86.6, 46.2, (66,0): 0, 54.5, 91.4, 98.8, 74.3, 25.9, -30.9, -77.7, -99.5, -89.1, (66,10): -50, 5.2, 58.8, 93.4, 97.8, 70.7, 20.8, -35.8, -80.9, (66,19): -99.9, -86.6, -45.4, 10.5, 62.9, 95.1, 96.6, 66.9, 15.6, (66,28): -40.7, -83.9, -100, -83.9, -40.7, 15.6, 66.9, 96.6, 95.1, (66,37): 62.9, 10.5, -45.4, -86.6, -99.9, -80.9, -35.8, 20.8, 70.7, (66,46): 97.8, 93.4, 58.8, 5.2, (67,0): 0, 55.2, 92.1, 98.3, 71.9, 21.6, -35.8, -81.4, -99.9, -85.3, (67,10): -42.3, 14.8, 66.9, 96.8, 94.6, 60.9, 7, -49.2, -89.1, (67,19): -99.4, -76.6, -28.4, 29.2, 77.2, 99.5, 88.7, 48.5, -7.8, (67,28): -61.6, -94.8, -96.6, -66.3, -13.9, 43.1, 85.7, 99.9, 80.9, (67,37): 35, -22.5, -72.5, -98.5, -91.7, -54.5, 0.9, 55.9, 92.4, (67,46): 98.2, 71.3, 20.8, -36.7, (68,0): 0, 55.9, 92.7, 97.8, 69.5, 17.4, -40.7, -84.8, -99.9, -80.9, (68,10): -34.2, 24.2, 74.3, 99, 89.9, 50, -7, -61.6, -95.1, -96.1, (68,20): -64.3, -10.5, 46.9, 88.3, 99.5, 76.6, 27.6, -30.9, -78.8, (68,29): -99.8, -86.6, -43.8, 13.9, 66.9, 97, 94, 58.8, 3.5, -53, (68,39): -91.4, -98.5, -71.9, -20.8, 37.5, 82.9, 100, 82.9, 37.5, (68,48): -20.8, -71.9, (69,0): 0, 56.6, 93.4, 97.2, 66.9, 13.1, -45.4, -87.9, -99.5, -76, (69,10): -25.9, 33.4, 80.9, 100, 83.9, 38.3, -20.8, -72.5, -98.8, (69,19): -90.3, -50, 7.8, 62.9, 95.9, 95.1, 60.9, 5.2, -52.2, -91.4, (69,29): -98.3, -70.7, -18.2, 40.7, 85.3, 99.9, 79.3, 30.9, -28.4, (69,38): -77.7, -99.7, -86.6, -43.1, 15.6, 68.8, 97.8, 92.4, 54.5, (69,47): -2.6, -58.8, -94.3, (70,0): 0, 57.4, 94, 96.6, 64.3, 8.7, -50, -90.6, -98.5, -70.7, (70,10): -17.4, 42.3, 86.6, 99.6, 76.6, 25.9, -34.2, -81.9, -100, (70,19): -81.9, -34.2, 25.9, 76.6, 99.6, 86.6, 42.3, -17.4, -70.7, (70,28): -98.5, -90.6, -50, 8.7, 64.3, 96.6, 94, 57.4, 0, -57.4, (70,38): -94, -96.6, -64.3, -8.7, 50, 90.6, 98.5, 70.7, 17.4, -42.3, (70,48): -86.6, -99.6, (71,0): 0, 58.1, 94.6, 95.9, 61.6, 4.4, -54.5, -93, -97, -64.9, (71,10): -8.7, 50.8, 91.4, 98, 68.2, 13.1, -46.9, -89.5, -98.8, (71,19): -71.3, -17.4, 43.1, 87.5, 99.4, 74.3, 21.6, -39.1, -85.3, (71,28): -99.8, -77.2, -25.9, 35, 82.9, 100, 79.9, 30.1, -30.9, (71,37): -80.4, -100, -82.4, -34.2, 26.7, 77.7, 99.8, 84.8, 38.3, (71,46): -22.5, -74.9, -99.5, -87, (72,0): 0, 58.8, 95.1, 95.1, 58.8, 0, -58.8, -95.1, -95.1, -58.8, 0, (72,11): 58.8, 95.1, 95.1, 58.8, 0, -58.8, -95.1, -95.1, -58.8, 0, (72,21): 58.8, 95.1, 95.1, 58.8, 0, -58.8, -95.1, -95.1, -58.8, 0, (72,31): 58.8, 95.1, 95.1, 58.8, 0, -58.8, -95.1, -95.1, -58.8, 0, (72,41): 58.8, 95.1, 95.1, 58.8, 0, -58.8, -95.1, -95.1, -58.8, (73,0): 0, 59.5, 95.6, 94.3, 55.9, -4.4, -62.9, -96.8, -92.7, -52.2, (73,10): 8.7, 66.3, 97.8, 91, 48.5, -13.1, -69.5, -98.6, -89.1, (73,19): -44.6, 17.4, 72.5, 99.3, 87, 40.7, -21.6, -75.5, -99.7, (73,28): -84.8, -36.7, 25.9, 78.3, 99.9, 82.4, 32.6, -30.1, -80.9, (73,37): -100, -79.9, -28.4, 34.2, 83.4, 99.9, 77.2, 24.2, -38.3, (73,46): -85.7, -99.5, -74.3, -19.9, (74,0): 0, 60.2, 96.1, 93.4, 53, -8.7, -66.9, -98.2, -89.9, -45.4, (74,10): 17.4, 73.1, 99.5, 85.7, 37.5, -25.9, -78.8, -100, -80.9, (74,19): -29.2, 34.2, 83.9, 99.8, 75.5, 20.8, -42.3, -88.3, -98.8, (74,28): -69.5, -12.2, 50, 92.1, 97, 62.9, 3.5, -57.4, -95.1, -94.6, (74,38): -55.9, 5.2, 64.3, 97.4, 91.4, 48.5, -13.9, -70.7, -99, (74,47): -87.5, -40.7, 22.5, (75,0): 0, 60.9, 96.6, 92.4, 50, -13.1, -70.7, -99.1, -86.6, -38.3, (75,10): 25.9, 79.3, 100, 79.3, 25.9, -38.3, -86.6, -99.1, -70.7, (75,19): -13.1, 50, 92.4, 96.6, 60.9, 0, -60.9, -96.6, -92.4, -50, (75,29): 13.1, 70.7, 99.1, 86.6, 38.3, -25.9, -79.3, -100, -79.3, (75,38): -25.9, 38.3, 86.6, 99.1, 70.7, 13.1, -50, -92.4, -96.6, (75,47): -60.9, 0, 60.9, (76,0): 0, 61.6, 97, 91.4, 46.9, -17.4, -74.3, -99.8, -82.9, -30.9, (76,10): 34.2, 84.8, 99.5, 71.9, 13.9, -50, -92.7, -96.1, -58.8, (76,19): 3.5, 64.3, 97.8, 89.9, 43.8, -20.8, -76.6, -99.9, -80.9, (76,28): -27.6, 37.5, 86.6, 99, 69.5, 10.5, -53, -94, -95.1, -55.9, (76,38): 7, 66.9, 98.5, 88.3, 40.7, -24.2, -78.8, -100, -78.8, (76,47): -24.2, 40.7, 88.3, (77,0): 0, 62.3, 97.4, 90.3, 43.8, -21.6, -77.7, -100, -78.8, -23.3, (77,10): 42.3, 89.5, 97.8, 63.6, 1.7, -60.9, -97, -91, -45.4, 19.9, (77,20): 76.6, 100, 79.9, 25, -40.7, -88.7, -98.2, -64.9, -3.5, (77,29): 59.5, 96.6, 91.7, 46.9, -18.2, -75.5, -99.9, -80.9, -26.7, (77,38): 39.1, 87.9, 98.5, 66.3, 5.2, -58.1, -96.1, -92.4, -48.5, (77,47): 16.5, 74.3, 99.8, (78,0): 0, 62.9, 97.8, 89.1, 40.7, -25.9, -80.9, -99.9, -74.3, (78,9): -15.6, 50, 93.4, 95.1, 54.5, -10.5, -70.7, -99.5, -83.9, (78,18): -30.9, 35.8, 86.6, 98.8, 66.9, 5.2, -58.8, -96.6, -91.4, (78,27): -45.4, 20.8, 77.7, 100, 77.7, 20.8, -45.4, -91.4, -96.6, (78,36): -58.8, 5.2, 66.9, 98.8, 86.6, 35.8, -30.9, -83.9, -99.5, (78,45): -70.7, -10.5, 54.5, 95.1, 93.4, (79,0): 0, 63.6, 98.2, 87.9, 37.5, -30.1, -83.9, -99.4, -69.5, -7.8, (79,10): 57.4, 96.4, 91.4, 44.6, -22.5, -79.3, -99.9, -74.9, -15.6, (79,19): 50.8, 94, 94.3, 51.5, -14.8, -74.3, -99.9, -79.9, -23.3, (79,28): 43.8, 91, 96.6, 58.1, -7, -68.8, -99.3, -84.3, -30.9, 36.7, (79,38): 87.5, 98.3, 64.3, 0.9, -62.9, -98, -88.3, -38.3, 29.2, (79,47): 83.4, 99.5, 70.1, (80,0): 0, 64.3, 98.5, 86.6, 34.2, -34.2, -86.6, -98.5, -64.3, 0, (80,10): 64.3, 98.5, 86.6, 34.2, -34.2, -86.6, -98.5, -64.3, 0, (80,19): 64.3, 98.5, 86.6, 34.2, -34.2, -86.6, -98.5, -64.3, 0, (80,28): 64.3, 98.5, 86.6, 34.2, -34.2, -86.6, -98.5, -64.3, 0, (80,37): 64.3, 98.5, 86.6, 34.2, -34.2, -86.6, -98.5, -64.3, 0, (80,46): 64.3, 98.5, 86.6, 34.2, (81,0): 0, 64.9, 98.8, 85.3, 30.9, -38.3, -89.1, -97.2, -58.8, 7.8, (81,10): 70.7, 99.7, 80.9, 23.3, -45.4, -92.4, -95.1, -52.2, 15.6, (81,19): 76, 100, 76, 15.6, -52.2, -95.1, -92.4, -45.4, 23.3, 80.9, (81,29): 99.7, 70.7, 7.8, -58.8, -97.2, -89.1, -38.3, 30.9, 85.3, (81,38): 98.8, 64.9, 0, -64.9, -98.8, -85.3, -30.9, 38.3, 89.1, (81,47): 97.2, 58.8, -7.8, (82,0): 0, 65.6, 99, 83.9, 27.6, -42.3, -91.4, -95.6, -53, 15.6, (82,10): 76.6, 100, 74.3, 12.2, -55.9, -96.6, -89.9, -39.1, 30.9, (82,19): 85.7, 98.5, 62.9, -3.5, -68.2, -99.5, -81.9, -24.2, 45.4, (82,28): 92.7, 94.6, 50, -19.1, -78.8, -99.9, -71.9, -8.7, 58.8, (82,37): 97.4, 88.3, 35.8, -34.2, -87.5, -97.8, -60.2, 7, 70.7, (82,46): 99.8, 79.9, 20.8, -48.5, (83,0): 0, 66.3, 99.3, 82.4, 24.2, -46.2, -93.4, -93.7, -46.9, 23.3, (83,10): 81.9, 99.4, 66.9, 0.9, -65.6, -99.1, -82.9, -25, 45.4, 93, (83,20): 94, 47.7, -22.5, -81.4, -99.5, -67.6, -1.7, 64.9, 99, 83.4, (83,30): 25.9, -44.6, -92.7, -94.3, -48.5, 21.6, 80.9, 99.5, 68.2, (83,39): 2.6, -64.3, -98.9, -83.9, -26.7, 43.8, 92.4, 94.6, 49.2, (83,48): -20.8, -80.4, (84,0): 0, 66.9, 99.5, 80.9, 20.8, -50, -95.1, -91.4, -40.7, 30.9, (84,10): 86.6, 97.8, 58.8, -10.5, -74.3, -100, -74.3, -10.5, 58.8, (84,19): 97.8, 86.6, 30.9, -40.7, -91.4, -95.1, -50, 20.8, 80.9, (84,28): 99.5, 66.9, 0, -66.9, -99.5, -80.9, -20.8, 50, 95.1, 91.4, (84,38): 40.7, -30.9, -86.6, -97.8, -58.8, 10.5, 74.3, 100, 74.3, (84,47): 10.5, -58.8, -97.8, (85,0): 0, 67.6, 99.6, 79.3, 17.4, -53.7, -96.6, -88.7, -34.2, 38.3, (85,10): 90.6, 95.4, 50, -21.6, -81.9, -99.1, -64.3, 4.4, 70.7, (85,19): 99.9, 76.6, 13.1, -57.4, -97.6, -86.6, -30.1, 42.3, 92.4, (85,28): 94, 46.2, -25.9, -84.3, -98.5, -60.9, 8.7, 73.7, 100, 73.7, (85,38): 8.7, -60.9, -98.5, -84.3, -25.9, 46.2, 94, 92.4, 42.3, (85,47): -30.1, -86.6, -97.6, (86,0): 0, 68.2, 99.8, 77.7, 13.9, -57.4, -97.8, -85.7, -27.6, 45.4, (86,10): 94, 92.1, 40.7, -32.6, -88.3, -96.6, -53, 19.1, 80.9, 99.3, (86,20): 64.3, -5.2, -71.9, -100, -74.3, -8.7, 61.6, 98.8, 82.9, (86,29): 22.5, -50, -95.6, -89.9, -35.8, 37.5, 90.6, 95.1, 48.5, (86,38): -24.2, -83.9, -98.5, -60.2, 10.5, 75.5, 99.9, 70.7, 3.5, (86,47): -65.6, -99.5, -79.9, (87,0): 0, 68.8, 99.9, 76, 10.5, -60.9, -98.8, -82.4, -20.8, 52.2, (87,10): 96.6, 87.9, 30.9, -43.1, -93.4, -92.4, -40.7, 33.4, 89.1, (87,19): 95.9, 50, -23.3, -83.9, -98.3, -58.8, 13.1, 77.7, 99.7, (87,28): 66.9, -2.6, -70.7, -100, -74.3, -7.8, 62.9, 99.1, 80.9, (87,37): 18.2, -54.5, -97.2, -86.6, -28.4, 45.4, 94.3, 91.4, 38.3, (87,46): -35.8, -90.3, -95.1, -47.7, (88,0): 0, 69.5, 99.9, 74.3, 7, -64.3, -99.5, -78.8, -13.9, 58.8, (88,10): 98.5, 82.9, 20.8, -53, -97, -86.6, -27.6, 46.9, 95.1, 89.9, (88,20): 34.2, -40.7, -92.7, -92.7, -40.7, 34.2, 89.9, 95.1, 46.9, (88,29): -27.6, -86.6, -97, -53, 20.8, 82.9, 98.5, 58.8, -13.9, (88,38): -78.8, -99.5, -64.3, 7, 74.3, 99.9, 69.5, 0, -69.5, -99.9, (88,48): -74.3, -7, (89,0): 0, 70.1, 100, 72.5, 3.5, -67.6, -99.9, -74.9, -7, 64.9, (89,10): 99.6, 77.2, 10.5, -62.3, -99.3, -79.3, -13.9, 59.5, 98.8, (89,19): 81.4, 17.4, -56.6, -98.2, -83.4, -20.8, 53.7, 97.4, 85.3, (89,28): 24.2, -50.8, -96.6, -87, -27.6, 47.7, 95.6, 88.7, 30.9, (89,37): -44.6, -94.6, -90.3, -34.2, 41.5, 93.4, 91.7, 37.5, -38.3, (89,46): -92.1, -93, -40.7, 35, (90,0): 0, 70.7, 100, 70.7, 0, -70.7, -100, -70.7, 0, 70.7, 100, (90,11): 70.7, 0, -70.7, -100, -70.7, 0, 70.7, 100, 70.7, 0, -70.7, (90,22): -100, -70.7, 0, 70.7, 100, 70.7, 0, -70.7, -100, -70.7, 0, (90,33): 70.7, 100, 70.7, 0, -70.7, -100, -70.7, 0, 70.7, 100, 70.7, (90,44): 0, -70.7, -100, -70.7, 0, 70.7, (91,0): 0, 71.3, 100, 68.8, -3.5, -73.7, -99.9, -66.3, 7, 76, 99.6, (91,11): 63.6, -10.5, -78.3, -99.3, -60.9, 13.9, 80.4, 98.8, 58.1, (91,20): -17.4, -82.4, -98.2, -55.2, 20.8, 84.3, 97.4, 52.2, -24.2, (91,29): -86.2, -96.6, -49.2, 27.6, 87.9, 95.6, 46.2, -30.9, -89.5, (91,38): -94.6, -43.1, 34.2, 91, 93.4, 39.9, -37.5, -92.4, -92.1, (91,47): -36.7, 40.7, 93.7, (92,0): 0, 71.9, 99.9, 66.9, -7, -76.6, -99.5, -61.6, 13.9, 80.9, (92,10): 98.5, 55.9, -20.8, -84.8, -97, -50, 27.6, 88.3, 95.1, 43.8, (92,20): -34.2, -91.4, -92.7, -37.5, 40.7, 94, 89.9, 30.9, -46.9, (92,29): -96.1, -86.6, -24.2, 53, 97.8, 82.9, 17.4, -58.8, -99, (92,38): -78.8, -10.5, 64.3, 99.8, 74.3, 3.5, -69.5, -100, -69.5, (92,47): 3.5, 74.3, 99.8, (93,0): 0, 72.5, 99.9, 64.9, -10.5, -79.3, -98.8, -56.6, 20.8, 85.3, (93,10): 96.6, 47.7, -30.9, -90.3, -93.4, -38.3, 40.7, 94.3, 89.1, (93,19): 28.4, -50, -97.2, -83.9, -18.2, 58.8, 99.1, 77.7, 7.8, (93,28): -66.9, -100, -70.7, 2.6, 74.3, 99.7, 62.9, -13.1, -80.9, (93,37): -98.3, -54.5, 23.3, 86.6, 95.9, 45.4, -33.4, -91.4, -92.4, (93,46): -35.8, 43.1, 95.1, 87.9, (94,0): 0, 73.1, 99.8, 62.9, -13.9, -81.9, -97.8, -51.5, 27.6, 89.1, (94,10): 94, 39.1, -40.7, -94.6, -88.3, -25.9, 53, 98.2, 80.9, 12.2, (94,20): -64.3, -99.9, -71.9, 1.7, 74.3, 99.6, 61.6, -15.6, -82.9, (94,29): -97.4, -50, 29.2, 89.9, 93.4, 37.5, -42.3, -95.1, -87.5, (94,38): -24.2, 54.5, 98.5, 79.9, 10.5, -65.6, -99.9, -70.7, 3.5, (94,47): 75.5, 99.5, 60.2, (95,0): 0, 73.7, 99.6, 60.9, -17.4, -84.3, -96.6, -46.2, 34.2, 92.4, (95,10): 90.6, 30.1, -50, -97.6, -81.9, -13.1, 64.3, 99.9, 70.7, (95,19): -4.4, -76.6, -99.1, -57.4, 21.6, 86.6, 95.4, 42.3, -38.3, (95,28): -94, -88.7, -25.9, 53.7, 98.5, 79.3, 8.7, -67.6, -100, (95,37): -67.6, 8.7, 79.3, 98.5, 53.7, -25.9, -88.7, -94, -38.3, (95,46): 42.3, 95.4, 86.6, 21.6, (96,0): 0, 74.3, 99.5, 58.8, -20.8, -86.6, -95.1, -40.7, 40.7, 95.1, (96,10): 86.6, 20.8, -58.8, -99.5, -74.3, 0, 74.3, 99.5, 58.8, (96,19): -20.8, -86.6, -95.1, -40.7, 40.7, 95.1, 86.6, 20.8, -58.8, (96,28): -99.5, -74.3, 0, 74.3, 99.5, 58.8, -20.8, -86.6, -95.1, (96,37): -40.7, 40.7, 95.1, 86.6, 20.8, -58.8, -99.5, -74.3, 0, (96,46): 74.3, 99.5, 58.8, -20.8, (97,0): 0, 74.9, 99.3, 56.6, -24.2, -88.7, -93.4, -35, 46.9, 97.2, (97,10): 81.9, 11.3, -66.9, -100, -65.6, 13.1, 82.9, 96.8, 45.4, (97,19): -36.7, -94, -87.9, -22.5, 58.1, 99.5, 73.7, -1.7, -76, -99, (97,29): -55.2, 25.9, 89.5, 92.7, 33.4, -48.5, -97.6, -80.9, -9.6, (97,38): 68.2, 100, 64.3, -14.8, -83.9, -96.4, -43.8, 38.3, 94.6, (97,47): 87, 20.8, -59.5, (98,0): 0, 75.5, 99, 54.5, -27.6, -90.6, -91.4, -29.2, 53, 98.8, (98,10): 76.6, 1.7, -74.3, -99.3, -55.9, 25.9, 89.9, 92.1, 30.9, (98,19): -51.5, -98.5, -77.7, -3.5, 73.1, 99.5, 57.4, -24.2, -89.1, (98,28): -92.7, -32.6, 50, 98.2, 78.8, 5.2, -71.9, -99.6, -58.8, (98,37): 22.5, 88.3, 93.4, 34.2, -48.5, -97.8, -79.9, -7, 70.7, (98,46): 99.8, 60.2, -20.8, -87.5, (99,0): 0, 76, 98.8, 52.2, -30.9, -92.4, -89.1, -23.3, 58.8, 99.7, (99,10): 70.7, -7.8, -80.9, -97.2, -45.4, 38.3, 95.1, 85.3, 15.6, (99,19): -64.9, -100, -64.9, 15.6, 85.3, 95.1, 38.3, -45.4, -97.2, (99,28): -80.9, -7.8, 70.7, 99.7, 58.8, -23.3, -89.1, -92.4, -30.9, (99,37): 52.2, 98.8, 76, 0, -76, -98.8, -52.2, 30.9, 92.4, 89.1, (99,47): 23.3, -58.8, -99.7 } ATTRIBUTE "test" { DATATYPE H5T_STRING { STRSIZE 10; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "test \000" } } } DATASET "2D int array" { DATATYPE H5T_STD_I32LE DATASPACE SIMPLE { ( 100, 50 ) / ( 100, 50 ) } DATA { (0,0): 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, (0,10): 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, (0,20): 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, (0,30): 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, (0,40): 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, (1,0): 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, (1,10): 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, (1,20): 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, (1,30): 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, (1,40): 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, (2,0): 1200, 1207, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209, (2,10): 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, (2,20): 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, (2,30): 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, (2,40): 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, (3,0): 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, (3,10): 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, (3,20): 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, (3,30): 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338, 1339, (3,40): 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, (4,0): 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, (4,10): 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, (4,20): 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, (4,30): 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, (4,40): 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, (5,0): 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509, (5,10): 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519, (5,20): 1520, 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, (5,30): 1530, 1531, 1532, 1533, 1534, 1535, 1536, 1537, 1538, 1539, (5,40): 1540, 1541, 1542, 1543, 1544, 1545, 1546, 1547, 1548, 1549, (6,0): 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, (6,10): 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, (6,20): 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629, (6,30): 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639, (6,40): 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648, 1649, (7,0): 1700, 1701, 1702, 1703, 1704, 1705, 1706, 1707, 1708, 1709, (7,10): 1710, 1711, 1712, 1713, 1714, 1715, 1716, 1717, 1718, 1719, (7,20): 1720, 1721, 1722, 1723, 1724, 1725, 1726, 1727, 1728, 1729, (7,30): 1730, 1731, 1732, 1733, 1734, 1735, 1736, 1737, 1738, 1739, (7,40): 1740, 1741, 1742, 1743, 1744, 1745, 1746, 1747, 1748, 1749, (8,0): 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, (8,10): 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1819, (8,20): 1820, 1821, 1822, 1823, 1824, 1825, 1826, 1827, 1828, 1829, (8,30): 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1837, 1838, 1839, (8,40): 1840, 1841, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, (9,0): 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, (9,10): 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, (9,20): 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, (9,30): 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, (9,40): 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, (10,0): 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, (10,10): 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, (10,20): 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, (10,30): 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, (10,40): 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2047, 2048, 2049, (11,0): 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, (11,10): 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, (11,20): 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, (11,30): 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, (11,40): 2140, 2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, (12,0): 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, (12,10): 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218, 2219, (12,20): 2220, 2221, 2222, 2223, 2224, 2225, 2226, 2227, 2228, 2229, (12,30): 2230, 2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238, 2239, (12,40): 2240, 2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, (13,0): 2300, 2301, 2302, 2303, 2304, 2305, 2306, 2307, 2308, 2309, (13,10): 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317, 2318, 2319, (13,20): 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, (13,30): 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, (13,40): 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349, (14,0): 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, (14,10): 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, (14,20): 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, (14,30): 2430, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, (14,40): 2440, 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, (15,0): 2500, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, (15,10): 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, (15,20): 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, (15,30): 2530, 2531, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, (15,40): 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, (16,0): 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, (16,10): 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, (16,20): 2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, (16,30): 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 2638, 2639, (16,40): 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649, (17,0): 2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, (17,10): 2710, 2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, (17,20): 2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, 2728, 2729, (17,30): 2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739, (17,40): 2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, (18,0): 2800, 2801, 2802, 2803, 2804, 2805, 2806, 2807, 2808, 2809, (18,10): 2810, 2811, 2812, 2813, 2814, 2815, 2816, 2817, 2818, 2819, (18,20): 2820, 2821, 2822, 2823, 2824, 2825, 2826, 2827, 2828, 2829, (18,30): 2830, 2831, 2832, 2833, 2834, 2835, 2836, 2837, 2838, 2839, (18,40): 2840, 2841, 2842, 2843, 2844, 2845, 2846, 2847, 2848, 2849, (19,0): 2900, 2901, 2902, 2903, 2904, 2905, 2906, 2907, 2908, 2909, (19,10): 2910, 2911, 2912, 2913, 2914, 2915, 2916, 2917, 2918, 2919, (19,20): 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, 2928, 2929, (19,30): 2930, 2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938, 2939, (19,40): 2940, 2941, 2942, 2943, 2944, 2945, 2946, 2947, 2948, 2949, (20,0): 3000, 3001, 3002, 3003, 3004, 3005, 3006, 3007, 3008, 3009, (20,10): 3010, 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019, (20,20): 3020, 3021, 3022, 3023, 3024, 3025, 3026, 3027, 3028, 3029, (20,30): 3030, 3031, 3032, 3033, 3034, 3035, 3036, 3037, 3038, 3039, (20,40): 3040, 3041, 3042, 3043, 3044, 3045, 3046, 3047, 3048, 3049, (21,0): 3100, 3101, 3102, 3103, 3104, 3105, 3106, 3107, 3108, 3109, (21,10): 3110, 3111, 3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119, (21,20): 3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128, 3129, (21,30): 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3139, (21,40): 3140, 3141, 3142, 3143, 3144, 3145, 3146, 3147, 3148, 3149, (22,0): 3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208, 3209, (22,10): 3210, 3211, 3212, 3213, 3214, 3215, 3216, 3217, 3218, 3219, (22,20): 3220, 3221, 3222, 3223, 3224, 3225, 3226, 3227, 3228, 3229, (22,30): 3230, 3231, 3232, 3233, 3234, 3235, 3236, 3237, 3238, 3239, (22,40): 3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248, 3249, (23,0): 3300, 3301, 3302, 3303, 3304, 3305, 3306, 3307, 3308, 3309, (23,10): 3310, 3311, 3312, 3313, 3314, 3315, 3316, 3317, 3318, 3319, (23,20): 3320, 3321, 3322, 3323, 3324, 3325, 3326, 3327, 3328, 3329, (23,30): 3330, 3331, 3332, 3333, 3334, 3335, 3336, 3337, 3338, 3339, (23,40): 3340, 3341, 3342, 3343, 3344, 3345, 3346, 3347, 3348, 3349, (24,0): 3400, 3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409, (24,10): 3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417, 3418, 3419, (24,20): 3420, 3421, 3422, 3423, 3424, 3425, 3426, 3427, 3428, 3429, (24,30): 3430, 3431, 3432, 3433, 3434, 3435, 3436, 3437, 3438, 3439, (24,40): 3440, 3441, 3442, 3443, 3444, 3445, 3446, 3447, 3448, 3449, (25,0): 3500, 3501, 3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509, (25,10): 3510, 3511, 3512, 3513, 3514, 3515, 3516, 3517, 3518, 3519, (25,20): 3520, 3521, 3522, 3523, 3524, 3525, 3526, 3527, 3528, 3529, (25,30): 3530, 3531, 3532, 3533, 3534, 3535, 3536, 3537, 3538, 3539, (25,40): 3540, 3541, 3542, 3543, 3544, 3545, 3546, 3547, 3548, 3549, (26,0): 3600, 3601, 3602, 3603, 3604, 3605, 3606, 3607, 3608, 3609, (26,10): 3610, 3611, 3612, 3613, 3614, 3615, 3616, 3617, 3618, 3619, (26,20): 3620, 3621, 3622, 3623, 3624, 3625, 3626, 3627, 3628, 3629, (26,30): 3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637, 3638, 3639, (26,40): 3640, 3641, 3642, 3643, 3644, 3645, 3646, 3647, 3648, 3649, (27,0): 3700, 3701, 3702, 3703, 3704, 3705, 3706, 3707, 3708, 3709, (27,10): 3710, 3711, 3712, 3713, 3714, 3715, 3716, 3717, 3718, 3719, (27,20): 3720, 3721, 3722, 3723, 3724, 3725, 3726, 3727, 3728, 3729, (27,30): 3730, 3731, 3732, 3733, 3734, 3735, 3736, 3737, 3738, 3739, (27,40): 3740, 3741, 3742, 3743, 3744, 3745, 3746, 3747, 3748, 3749, (28,0): 3800, 3801, 3802, 3803, 3804, 3805, 3806, 3807, 3808, 3809, (28,10): 3810, 3811, 3812, 3813, 3814, 3815, 3816, 3817, 3818, 3819, (28,20): 3820, 3821, 3822, 3823, 3824, 3825, 3826, 3827, 3828, 3829, (28,30): 3830, 3831, 3832, 3833, 3834, 3835, 3836, 3837, 3838, 3839, (28,40): 3840, 3841, 3842, 3843, 3844, 3845, 3846, 3847, 3848, 3849, (29,0): 3900, 3901, 3902, 3903, 3904, 3905, 3906, 3907, 3908, 3909, (29,10): 3910, 3911, 3912, 3913, 3914, 3915, 3916, 3917, 3918, 3919, (29,20): 3920, 3921, 3922, 3923, 3924, 3925, 3926, 3927, 3928, 3929, (29,30): 3930, 3931, 3932, 3933, 3934, 3935, 3936, 3937, 3938, 3939, (29,40): 3940, 3941, 3942, 3943, 3944, 3945, 3946, 3947, 3948, 3949, (30,0): 4000, 4001, 4002, 4003, 4004, 4005, 4006, 4007, 4008, 4009, (30,10): 4010, 4011, 4012, 4013, 4014, 4015, 4016, 4017, 4018, 4019, (30,20): 4020, 4021, 4022, 4023, 4024, 4025, 4026, 4027, 4028, 4029, (30,30): 4030, 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, 4039, (30,40): 4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, 4048, 4049, (31,0): 4100, 4101, 4102, 4103, 4104, 4105, 4106, 4107, 4108, 4109, (31,10): 4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118, 4119, (31,20): 4120, 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, (31,30): 4130, 4131, 4132, 4133, 4134, 4135, 4136, 4137, 4138, 4139, (31,40): 4140, 4141, 4142, 4143, 4144, 4145, 4146, 4147, 4148, 4149, (32,0): 4200, 4201, 4202, 4203, 4204, 4205, 4206, 4207, 4208, 4209, (32,10): 4210, 4211, 4212, 4213, 4214, 4215, 4216, 4217, 4218, 4219, (32,20): 4220, 4221, 4222, 4223, 4224, 4225, 4226, 4227, 4228, 4229, (32,30): 4230, 4231, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, (32,40): 4240, 4241, 4242, 4243, 4244, 4245, 4246, 4247, 4248, 4249, (33,0): 4300, 4301, 4302, 4303, 4304, 4305, 4306, 4307, 4308, 4309, (33,10): 4310, 4311, 4312, 4313, 4314, 4315, 4316, 4317, 4318, 4319, (33,20): 4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327, 4328, 4329, (33,30): 4330, 4331, 4332, 4333, 4334, 4335, 4336, 4337, 4338, 4339, (33,40): 4340, 4341, 4342, 4343, 4344, 4345, 4346, 4347, 4348, 4349, (34,0): 4400, 4401, 4402, 4403, 4404, 4405, 4406, 4407, 4408, 4409, (34,10): 4410, 4411, 4412, 4413, 4414, 4415, 4416, 4417, 4418, 4419, (34,20): 4420, 4421, 4422, 4423, 4424, 4425, 4426, 4427, 4428, 4429, (34,30): 4430, 4431, 4432, 4433, 4434, 4435, 4436, 4437, 4438, 4439, (34,40): 4440, 4441, 4442, 4443, 4444, 4445, 4446, 4447, 4448, 4449, (35,0): 4500, 4501, 4502, 4503, 4504, 4505, 4506, 4507, 4508, 4509, (35,10): 4510, 4511, 4512, 4513, 4514, 4515, 4516, 4517, 4518, 4519, (35,20): 4520, 4521, 4522, 4523, 4524, 4525, 4526, 4527, 4528, 4529, (35,30): 4530, 4531, 4532, 4533, 4534, 4535, 4536, 4537, 4538, 4539, (35,40): 4540, 4541, 4542, 4543, 4544, 4545, 4546, 4547, 4548, 4549, (36,0): 4600, 4601, 4602, 4603, 4604, 4605, 4606, 4607, 4608, 4609, (36,10): 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4617, 4618, 4619, (36,20): 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, (36,30): 4630, 4631, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, (36,40): 4640, 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, (37,0): 4700, 4701, 4702, 4703, 4704, 4705, 4706, 4707, 4708, 4709, (37,10): 4710, 4711, 4712, 4713, 4714, 4715, 4716, 4717, 4718, 4719, (37,20): 4720, 4721, 4722, 4723, 4724, 4725, 4726, 4727, 4728, 4729, (37,30): 4730, 4731, 4732, 4733, 4734, 4735, 4736, 4737, 4738, 4739, (37,40): 4740, 4741, 4742, 4743, 4744, 4745, 4746, 4747, 4748, 4749, (38,0): 4800, 4801, 4802, 4803, 4804, 4805, 4806, 4807, 4808, 4809, (38,10): 4810, 4811, 4812, 4813, 4814, 4815, 4816, 4817, 4818, 4819, (38,20): 4820, 4821, 4822, 4823, 4824, 4825, 4826, 4827, 4828, 4829, (38,30): 4830, 4831, 4832, 4833, 4834, 4835, 4836, 4837, 4838, 4839, (38,40): 4840, 4841, 4842, 4843, 4844, 4845, 4846, 4847, 4848, 4849, (39,0): 4900, 4901, 4902, 4903, 4904, 4905, 4906, 4907, 4908, 4909, (39,10): 4910, 4911, 4912, 4913, 4914, 4915, 4916, 4917, 4918, 4919, (39,20): 4920, 4921, 4922, 4923, 4924, 4925, 4926, 4927, 4928, 4929, (39,30): 4930, 4931, 4932, 4933, 4934, 4935, 4936, 4937, 4938, 4939, (39,40): 4940, 4941, 4942, 4943, 4944, 4945, 4946, 4947, 4948, 4949, (40,0): 5000, 5001, 5002, 5003, 5004, 5005, 5006, 5007, 5008, 5009, (40,10): 5010, 5011, 5012, 5013, 5014, 5015, 5016, 5017, 5018, 5019, (40,20): 5020, 5021, 5022, 5023, 5024, 5025, 5026, 5027, 5028, 5029, (40,30): 5030, 5031, 5032, 5033, 5034, 5035, 5036, 5037, 5038, 5039, (40,40): 5040, 5041, 5042, 5043, 5044, 5045, 5046, 5047, 5048, 5049, (41,0): 5100, 5101, 5102, 5103, 5104, 5105, 5106, 5107, 5108, 5109, (41,10): 5110, 5111, 5112, 5113, 5114, 5115, 5116, 5117, 5118, 5119, (41,20): 5120, 5121, 5122, 5123, 5124, 5125, 5126, 5127, 5128, 5129, (41,30): 5130, 5131, 5132, 5133, 5134, 5135, 5136, 5137, 5138, 5139, (41,40): 5140, 5141, 5142, 5143, 5144, 5145, 5146, 5147, 5148, 5149, (42,0): 5200, 5201, 5202, 5203, 5204, 5205, 5206, 5207, 5208, 5209, (42,10): 5210, 5211, 5212, 5213, 5214, 5215, 5216, 5217, 5218, 5219, (42,20): 5220, 5221, 5222, 5223, 5224, 5225, 5226, 5227, 5228, 5229, (42,30): 5230, 5231, 5232, 5233, 5234, 5235, 5236, 5237, 5238, 5239, (42,40): 5240, 5241, 5242, 5243, 5244, 5245, 5246, 5247, 5248, 5249, (43,0): 5300, 5301, 5302, 5303, 5304, 5305, 5306, 5307, 5308, 5309, (43,10): 5310, 5311, 5312, 5313, 5314, 5315, 5316, 5317, 5318, 5319, (43,20): 5320, 5321, 5322, 5323, 5324, 5325, 5326, 5327, 5328, 5329, (43,30): 5330, 5331, 5332, 5333, 5334, 5335, 5336, 5337, 5338, 5339, (43,40): 5340, 5341, 5342, 5343, 5344, 5345, 5346, 5347, 5348, 5349, (44,0): 5400, 5401, 5402, 5403, 5404, 5405, 5406, 5407, 5408, 5409, (44,10): 5410, 5411, 5412, 5413, 5414, 5415, 5416, 5417, 5418, 5419, (44,20): 5420, 5421, 5422, 5423, 5424, 5425, 5426, 5427, 5428, 5429, (44,30): 5430, 5431, 5432, 5433, 5434, 5435, 5436, 5437, 5438, 5439, (44,40): 5440, 5441, 5442, 5443, 5444, 5445, 5446, 5447, 5448, 5449, (45,0): 5500, 5501, 5502, 5503, 5504, 5505, 5506, 5507, 5508, 5509, (45,10): 5510, 5511, 5512, 5513, 5514, 5515, 5516, 5517, 5518, 5519, (45,20): 5520, 5521, 5522, 5523, 5524, 5525, 5526, 5527, 5528, 5529, (45,30): 5530, 5531, 5532, 5533, 5534, 5535, 5536, 5537, 5538, 5539, (45,40): 5540, 5541, 5542, 5543, 5544, 5545, 5546, 5547, 5548, 5549, (46,0): 5600, 5601, 5602, 5603, 5604, 5605, 5606, 5607, 5608, 5609, (46,10): 5610, 5611, 5612, 5613, 5614, 5615, 5616, 5617, 5618, 5619, (46,20): 5620, 5621, 5622, 5623, 5624, 5625, 5626, 5627, 5628, 5629, (46,30): 5630, 5631, 5632, 5633, 5634, 5635, 5636, 5637, 5638, 5639, (46,40): 5640, 5641, 5642, 5643, 5644, 5645, 5646, 5647, 5648, 5649, (47,0): 5700, 5701, 5702, 5703, 5704, 5705, 5706, 5707, 5708, 5709, (47,10): 5710, 5711, 5712, 5713, 5714, 5715, 5716, 5717, 5718, 5719, (47,20): 5720, 5721, 5722, 5723, 5724, 5725, 5726, 5727, 5728, 5729, (47,30): 5730, 5731, 5732, 5733, 5734, 5735, 5736, 5737, 5738, 5739, (47,40): 5740, 5741, 5742, 5743, 5744, 5745, 5746, 5747, 5748, 5749, (48,0): 5800, 5801, 5802, 5803, 5804, 5805, 5806, 5807, 5808, 5809, (48,10): 5810, 5811, 5812, 5813, 5814, 5815, 5816, 5817, 5818, 5819, (48,20): 5820, 5821, 5822, 5823, 5824, 5825, 5826, 5827, 5828, 5829, (48,30): 5830, 5831, 5832, 5833, 5834, 5835, 5836, 5837, 5838, 5839, (48,40): 5840, 5841, 5842, 5843, 5844, 5845, 5846, 5847, 5848, 5849, (49,0): 5900, 5901, 5902, 5903, 5904, 5905, 5906, 5907, 5908, 5909, (49,10): 5910, 5911, 5912, 5913, 5914, 5915, 5916, 5917, 5918, 5919, (49,20): 5920, 5921, 5922, 5923, 5924, 5925, 5926, 5927, 5928, 5929, (49,30): 5930, 5931, 5932, 5933, 5934, 5935, 5936, 5937, 5938, 5939, (49,40): 5940, 5941, 5942, 5943, 5944, 5945, 5946, 5947, 5948, 5949, (50,0): 6000, 6001, 6002, 6003, 6004, 6005, 6006, 6007, 6008, 6009, (50,10): 6010, 6011, 6012, 6013, 6014, 6015, 6016, 6017, 6018, 6019, (50,20): 6020, 6021, 6022, 6023, 6024, 6025, 6026, 6027, 6028, 6029, (50,30): 6030, 6031, 6032, 6033, 6034, 6035, 6036, 6037, 6038, 6039, (50,40): 6040, 6041, 6042, 6043, 6044, 6045, 6046, 6047, 6048, 6049, (51,0): 6100, 6101, 6102, 6103, 6104, 6105, 6106, 6107, 6108, 6109, (51,10): 6110, 6111, 6112, 6113, 6114, 6115, 6116, 6117, 6118, 6119, (51,20): 6120, 6121, 6122, 6123, 6124, 6125, 6126, 6127, 6128, 6129, (51,30): 6130, 6131, 6132, 6133, 6134, 6135, 6136, 6137, 6138, 6139, (51,40): 6140, 6141, 6142, 6143, 6144, 6145, 6146, 6147, 6148, 6149, (52,0): 6200, 6201, 6202, 6203, 6204, 6205, 6206, 6207, 6208, 6209, (52,10): 6210, 6211, 6212, 6213, 6214, 6215, 6216, 6217, 6218, 6219, (52,20): 6220, 6221, 6222, 6223, 6224, 6225, 6226, 6227, 6228, 6229, (52,30): 6230, 6231, 6232, 6233, 6234, 6235, 6236, 6237, 6238, 6239, (52,40): 6240, 6241, 6242, 6243, 6244, 6245, 6246, 6247, 6248, 6249, (53,0): 6300, 6301, 6302, 6303, 6304, 6305, 6306, 6307, 6308, 6309, (53,10): 6310, 6311, 6312, 6313, 6314, 6315, 6316, 6317, 6318, 6319, (53,20): 6320, 6321, 6322, 6323, 6324, 6325, 6326, 6327, 6328, 6329, (53,30): 6330, 6331, 6332, 6333, 6334, 6335, 6336, 6337, 6338, 6339, (53,40): 6340, 6341, 6342, 6343, 6344, 6345, 6346, 6347, 6348, 6349, (54,0): 6400, 6401, 6402, 6403, 6404, 6405, 6406, 6407, 6408, 6409, (54,10): 6410, 6411, 6412, 6413, 6414, 6415, 6416, 6417, 6418, 6419, (54,20): 6420, 6421, 6422, 6423, 6424, 6425, 6426, 6427, 6428, 6429, (54,30): 6430, 6431, 6432, 6433, 6434, 6435, 6436, 6437, 6438, 6439, (54,40): 6440, 6441, 6442, 6443, 6444, 6445, 6446, 6447, 6448, 6449, (55,0): 6500, 6501, 6502, 6503, 6504, 6505, 6506, 6507, 6508, 6509, (55,10): 6510, 6511, 6512, 6513, 6514, 6515, 6516, 6517, 6518, 6519, (55,20): 6520, 6521, 6522, 6523, 6524, 6525, 6526, 6527, 6528, 6529, (55,30): 6530, 6531, 6532, 6533, 6534, 6535, 6536, 6537, 6538, 6539, (55,40): 6540, 6541, 6542, 6543, 6544, 6545, 6546, 6547, 6548, 6549, (56,0): 6600, 6601, 6602, 6603, 6604, 6605, 6606, 6607, 6608, 6609, (56,10): 6610, 6611, 6612, 6613, 6614, 6615, 6616, 6617, 6618, 6619, (56,20): 6620, 6621, 6622, 6623, 6624, 6625, 6626, 6627, 6628, 6629, (56,30): 6630, 6631, 6632, 6633, 6634, 6635, 6636, 6637, 6638, 6639, (56,40): 6640, 6641, 6642, 6643, 6644, 6645, 6646, 6647, 6648, 6649, (57,0): 6700, 6701, 6702, 6703, 6704, 6705, 6706, 6707, 6708, 6709, (57,10): 6710, 6711, 6712, 6713, 6714, 6715, 6716, 6717, 6718, 6719, (57,20): 6720, 6721, 6722, 6723, 6724, 6725, 6726, 6727, 6728, 6729, (57,30): 6730, 6731, 6732, 6733, 6734, 6735, 6736, 6737, 6738, 6739, (57,40): 6740, 6741, 6742, 6743, 6744, 6745, 6746, 6747, 6748, 6749, (58,0): 6800, 6801, 6802, 6803, 6804, 6805, 6806, 6807, 6808, 6809, (58,10): 6810, 6811, 6812, 6813, 6814, 6815, 6816, 6817, 6818, 6819, (58,20): 6820, 6821, 6822, 6823, 6824, 6825, 6826, 6827, 6828, 6829, (58,30): 6830, 6831, 6832, 6833, 6834, 6835, 6836, 6837, 6838, 6839, (58,40): 6840, 6841, 6842, 6843, 6844, 6845, 6846, 6847, 6848, 6849, (59,0): 6900, 6901, 6902, 6903, 6904, 6905, 6906, 6907, 6908, 6909, (59,10): 6910, 6911, 6912, 6913, 6914, 6915, 6916, 6917, 6918, 6919, (59,20): 6920, 6921, 6922, 6923, 6924, 6925, 6926, 6927, 6928, 6929, (59,30): 6930, 6931, 6932, 6933, 6934, 6935, 6936, 6937, 6938, 6939, (59,40): 6940, 6941, 6942, 6943, 6944, 6945, 6946, 6947, 6948, 6949, (60,0): 7000, 7001, 7002, 7003, 7004, 7005, 7006, 7007, 7008, 7009, (60,10): 7010, 7011, 7012, 7013, 7014, 7015, 7016, 7017, 7018, 7019, (60,20): 7020, 7021, 7022, 7023, 7024, 7025, 7026, 7027, 7028, 7029, (60,30): 7030, 7031, 7032, 7033, 7034, 7035, 7036, 7037, 7038, 7039, (60,40): 7040, 7041, 7042, 7043, 7044, 7045, 7046, 7047, 7048, 7049, (61,0): 7100, 7101, 7102, 7103, 7104, 7105, 7106, 7107, 7108, 7109, (61,10): 7110, 7111, 7112, 7113, 7114, 7115, 7116, 7117, 7118, 7119, (61,20): 7120, 7121, 7122, 7123, 7124, 7125, 7126, 7127, 7128, 7129, (61,30): 7130, 7131, 7132, 7133, 7134, 7135, 7136, 7137, 7138, 7139, (61,40): 7140, 7141, 7142, 7143, 7144, 7145, 7146, 7147, 7148, 7149, (62,0): 7200, 7201, 7202, 7203, 7204, 7205, 7206, 7207, 7208, 7209, (62,10): 7210, 7211, 7212, 7213, 7214, 7215, 7216, 7217, 7218, 7219, (62,20): 7220, 7221, 7222, 7223, 7224, 7225, 7226, 7227, 7228, 7229, (62,30): 7230, 7231, 7232, 7233, 7234, 7235, 7236, 7237, 7238, 7239, (62,40): 7240, 7241, 7242, 7243, 7244, 7245, 7246, 7247, 7248, 7249, (63,0): 7300, 7301, 7302, 7303, 7304, 7305, 7306, 7307, 7308, 7309, (63,10): 7310, 7311, 7312, 7313, 7314, 7315, 7316, 7317, 7318, 7319, (63,20): 7320, 7321, 7322, 7323, 7324, 7325, 7326, 7327, 7328, 7329, (63,30): 7330, 7331, 7332, 7333, 7334, 7335, 7336, 7337, 7338, 7339, (63,40): 7340, 7341, 7342, 7343, 7344, 7345, 7346, 7347, 7348, 7349, (64,0): 7400, 7401, 7402, 7403, 7404, 7405, 7406, 7407, 7408, 7409, (64,10): 7410, 7411, 7412, 7413, 7414, 7415, 7416, 7417, 7418, 7419, (64,20): 7420, 7421, 7422, 7423, 7424, 7425, 7426, 7427, 7428, 7429, (64,30): 7430, 7431, 7432, 7433, 7434, 7435, 7436, 7437, 7438, 7439, (64,40): 7440, 7441, 7442, 7443, 7444, 7445, 7446, 7447, 7448, 7449, (65,0): 7500, 7501, 7502, 7503, 7504, 7505, 7506, 7507, 7508, 7509, (65,10): 7510, 7511, 7512, 7513, 7514, 7515, 7516, 7517, 7518, 7519, (65,20): 7520, 7521, 7522, 7523, 7524, 7525, 7526, 7527, 7528, 7529, (65,30): 7530, 7531, 7532, 7533, 7534, 7535, 7536, 7537, 7538, 7539, (65,40): 7540, 7541, 7542, 7543, 7544, 7545, 7546, 7547, 7548, 7549, (66,0): 7600, 7601, 7602, 7603, 7604, 7605, 7606, 7607, 7608, 7609, (66,10): 7610, 7611, 7612, 7613, 7614, 7615, 7616, 7617, 7618, 7619, (66,20): 7620, 7621, 7622, 7623, 7624, 7625, 7626, 7627, 7628, 7629, (66,30): 7630, 7631, 7632, 7633, 7634, 7635, 7636, 7637, 7638, 7639, (66,40): 7640, 7641, 7642, 7643, 7644, 7645, 7646, 7647, 7648, 7649, (67,0): 7700, 7701, 7702, 7703, 7704, 7705, 7706, 7707, 7708, 7709, (67,10): 7710, 7711, 7712, 7713, 7714, 7715, 7716, 7717, 7718, 7719, (67,20): 7720, 7721, 7722, 7723, 7724, 7725, 7726, 7727, 7728, 7729, (67,30): 7730, 7731, 7732, 7733, 7734, 7735, 7736, 7737, 7738, 7739, (67,40): 7740, 7741, 7742, 7743, 7744, 7745, 7746, 7747, 7748, 7749, (68,0): 7800, 7801, 7802, 7803, 7804, 7805, 7806, 7807, 7808, 7809, (68,10): 7810, 7811, 7812, 7813, 7814, 7815, 7816, 7817, 7818, 7819, (68,20): 7820, 7821, 7822, 7823, 7824, 7825, 7826, 7827, 7828, 7829, (68,30): 7830, 7831, 7832, 7833, 7834, 7835, 7836, 7837, 7838, 7839, (68,40): 7840, 7841, 7842, 7843, 7844, 7845, 7846, 7847, 7848, 7849, (69,0): 7900, 7901, 7902, 7903, 7904, 7905, 7906, 7907, 7908, 7909, (69,10): 7910, 7911, 7912, 7913, 7914, 7915, 7916, 7917, 7918, 7919, (69,20): 7920, 7921, 7922, 7923, 7924, 7925, 7926, 7927, 7928, 7929, (69,30): 7930, 7931, 7932, 7933, 7934, 7935, 7936, 7937, 7938, 7939, (69,40): 7940, 7941, 7942, 7943, 7944, 7945, 7946, 7947, 7948, 7949, (70,0): 8000, 8001, 8002, 8003, 8004, 8005, 8006, 8007, 8008, 8009, (70,10): 8010, 8011, 8012, 8013, 8014, 8015, 8016, 8017, 8018, 8019, (70,20): 8020, 8021, 8022, 8023, 8024, 8025, 8026, 8027, 8028, 8029, (70,30): 8030, 8031, 8032, 8033, 8034, 8035, 8036, 8037, 8038, 8039, (70,40): 8040, 8041, 8042, 8043, 8044, 8045, 8046, 8047, 8048, 8049, (71,0): 8100, 8101, 8102, 8103, 8104, 8105, 8106, 8107, 8108, 8109, (71,10): 8110, 8111, 8112, 8113, 8114, 8115, 8116, 8117, 8118, 8119, (71,20): 8120, 8121, 8122, 8123, 8124, 8125, 8126, 8127, 8128, 8129, (71,30): 8130, 8131, 8132, 8133, 8134, 8135, 8136, 8137, 8138, 8139, (71,40): 8140, 8141, 8142, 8143, 8144, 8145, 8146, 8147, 8148, 8149, (72,0): 8200, 8201, 8202, 8203, 8204, 8205, 8206, 8207, 8208, 8209, (72,10): 8210, 8211, 8212, 8213, 8214, 8215, 8216, 8217, 8218, 8219, (72,20): 8220, 8221, 8222, 8223, 8224, 8225, 8226, 8227, 8228, 8229, (72,30): 8230, 8231, 8232, 8233, 8234, 8235, 8236, 8237, 8238, 8239, (72,40): 8240, 8241, 8242, 8243, 8244, 8245, 8246, 8247, 8248, 8249, (73,0): 8300, 8301, 8302, 8303, 8304, 8305, 8306, 8307, 8308, 8309, (73,10): 8310, 8311, 8312, 8313, 8314, 8315, 8316, 8317, 8318, 8319, (73,20): 8320, 8321, 8322, 8323, 8324, 8325, 8326, 8327, 8328, 8329, (73,30): 8330, 8331, 8332, 8333, 8334, 8335, 8336, 8337, 8338, 8339, (73,40): 8340, 8341, 8342, 8343, 8344, 8345, 8346, 8347, 8348, 8349, (74,0): 8400, 8401, 8402, 8403, 8404, 8405, 8406, 8407, 8408, 8409, (74,10): 8410, 8411, 8412, 8413, 8414, 8415, 8416, 8417, 8418, 8419, (74,20): 8420, 8421, 8422, 8423, 8424, 8425, 8426, 8427, 8428, 8429, (74,30): 8430, 8431, 8432, 8433, 8434, 8435, 8436, 8437, 8438, 8439, (74,40): 8440, 8441, 8442, 8443, 8444, 8445, 8446, 8447, 8448, 8449, (75,0): 8500, 8501, 8502, 8503, 8504, 8505, 8506, 8507, 8508, 8509, (75,10): 8510, 8511, 8512, 8513, 8514, 8515, 8516, 8517, 8518, 8519, (75,20): 8520, 8521, 8522, 8523, 8524, 8525, 8526, 8527, 8528, 8529, (75,30): 8530, 8531, 8532, 8533, 8534, 8535, 8536, 8537, 8538, 8539, (75,40): 8540, 8541, 8542, 8543, 8544, 8545, 8546, 8547, 8548, 8549, (76,0): 8600, 8601, 8602, 8603, 8604, 8605, 8606, 8607, 8608, 8609, (76,10): 8610, 8611, 8612, 8613, 8614, 8615, 8616, 8617, 8618, 8619, (76,20): 8620, 8621, 8622, 8623, 8624, 8625, 8626, 8627, 8628, 8629, (76,30): 8630, 8631, 8632, 8633, 8634, 8635, 8636, 8637, 8638, 8639, (76,40): 8640, 8641, 8642, 8643, 8644, 8645, 8646, 8647, 8648, 8649, (77,0): 8700, 8701, 8702, 8703, 8704, 8705, 8706, 8707, 8708, 8709, (77,10): 8710, 8711, 8712, 8713, 8714, 8715, 8716, 8717, 8718, 8719, (77,20): 8720, 8721, 8722, 8723, 8724, 8725, 8726, 8727, 8728, 8729, (77,30): 8730, 8731, 8732, 8733, 8734, 8735, 8736, 8737, 8738, 8739, (77,40): 8740, 8741, 8742, 8743, 8744, 8745, 8746, 8747, 8748, 8749, (78,0): 8800, 8801, 8802, 8803, 8804, 8805, 8806, 8807, 8808, 8809, (78,10): 8810, 8811, 8812, 8813, 8814, 8815, 8816, 8817, 8818, 8819, (78,20): 8820, 8821, 8822, 8823, 8824, 8825, 8826, 8827, 8828, 8829, (78,30): 8830, 8831, 8832, 8833, 8834, 8835, 8836, 8837, 8838, 8839, (78,40): 8840, 8841, 8842, 8843, 8844, 8845, 8846, 8847, 8848, 8849, (79,0): 8900, 8901, 8902, 8903, 8904, 8905, 8906, 8907, 8908, 8909, (79,10): 8910, 8911, 8912, 8913, 8914, 8915, 8916, 8917, 8918, 8919, (79,20): 8920, 8921, 8922, 8923, 8924, 8925, 8926, 8927, 8928, 8929, (79,30): 8930, 8931, 8932, 8933, 8934, 8935, 8936, 8937, 8938, 8939, (79,40): 8940, 8941, 8942, 8943, 8944, 8945, 8946, 8947, 8948, 8949, (80,0): 9000, 9001, 9002, 9003, 9004, 9005, 9006, 9007, 9008, 9009, (80,10): 9010, 9011, 9012, 9013, 9014, 9015, 9016, 9017, 9018, 9019, (80,20): 9020, 9021, 9022, 9023, 9024, 9025, 9026, 9027, 9028, 9029, (80,30): 9030, 9031, 9032, 9033, 9034, 9035, 9036, 9037, 9038, 9039, (80,40): 9040, 9041, 9042, 9043, 9044, 9045, 9046, 9047, 9048, 9049, (81,0): 9100, 9101, 9102, 9103, 9104, 9105, 9106, 9107, 9108, 9109, (81,10): 9110, 9111, 9112, 9113, 9114, 9115, 9116, 9117, 9118, 9119, (81,20): 9120, 9121, 9122, 9123, 9124, 9125, 9126, 9127, 9128, 9129, (81,30): 9130, 9131, 9132, 9133, 9134, 9135, 9136, 9137, 9138, 9139, (81,40): 9140, 9141, 9142, 9143, 9144, 9145, 9146, 9147, 9148, 9149, (82,0): 9200, 9201, 9202, 9203, 9204, 9205, 9206, 9207, 9208, 9209, (82,10): 9210, 9211, 9212, 9213, 9214, 9215, 9216, 9217, 9218, 9219, (82,20): 9220, 9221, 9222, 9223, 9224, 9225, 9226, 9227, 9228, 9229, (82,30): 9230, 9231, 9232, 9233, 9234, 9235, 9236, 9237, 9238, 9239, (82,40): 9240, 9241, 9242, 9243, 9244, 9245, 9246, 9247, 9248, 9249, (83,0): 9300, 9301, 9302, 9303, 9304, 9305, 9306, 9307, 9308, 9309, (83,10): 9310, 9311, 9312, 9313, 9314, 9315, 9316, 9317, 9318, 9319, (83,20): 9320, 9321, 9322, 9323, 9324, 9325, 9326, 9327, 9328, 9329, (83,30): 9330, 9331, 9332, 9333, 9334, 9335, 9336, 9337, 9338, 9339, (83,40): 9340, 9341, 9342, 9343, 9344, 9345, 9346, 9347, 9348, 9349, (84,0): 9400, 9401, 9402, 9403, 9404, 9405, 9406, 9407, 9408, 9409, (84,10): 9410, 9411, 9412, 9413, 9414, 9415, 9416, 9417, 9418, 9419, (84,20): 9420, 9421, 9422, 9423, 9424, 9425, 9426, 9427, 9428, 9429, (84,30): 9430, 9431, 9432, 9433, 9434, 9435, 9436, 9437, 9438, 9439, (84,40): 9440, 9441, 9442, 9443, 9444, 9445, 9446, 9447, 9448, 9449, (85,0): 9500, 9501, 9502, 9503, 9504, 9505, 9506, 9507, 9508, 9509, (85,10): 9510, 9511, 9512, 9513, 9514, 9515, 9516, 9517, 9518, 9519, (85,20): 9520, 9521, 9522, 9523, 9524, 9525, 9526, 9527, 9528, 9529, (85,30): 9530, 9531, 9532, 9533, 9534, 9535, 9536, 9537, 9538, 9539, (85,40): 9540, 9541, 9542, 9543, 9544, 9545, 9546, 9547, 9548, 9549, (86,0): 9600, 9601, 9602, 9603, 9604, 9605, 9606, 9607, 9608, 9609, (86,10): 9610, 9611, 9612, 9613, 9614, 9615, 9616, 9617, 9618, 9619, (86,20): 9620, 9621, 9622, 9623, 9624, 9625, 9626, 9627, 9628, 9629, (86,30): 9630, 9631, 9632, 9633, 9634, 9635, 9636, 9637, 9638, 9639, (86,40): 9640, 9641, 9642, 9643, 9644, 9645, 9646, 9647, 9648, 9649, (87,0): 9700, 9701, 9702, 9703, 9704, 9705, 9706, 9707, 9708, 9709, (87,10): 9710, 9711, 9712, 9713, 9714, 9715, 9716, 9717, 9718, 9719, (87,20): 9720, 9721, 9722, 9723, 9724, 9725, 9726, 9727, 9728, 9729, (87,30): 9730, 9731, 9732, 9733, 9734, 9735, 9736, 9737, 9738, 9739, (87,40): 9740, 9741, 9742, 9743, 9744, 9745, 9746, 9747, 9748, 9749, (88,0): 9800, 9801, 9802, 9803, 9804, 9805, 9806, 9807, 9808, 9809, (88,10): 9810, 9811, 9812, 9813, 9814, 9815, 9816, 9817, 9818, 9819, (88,20): 9820, 9821, 9822, 9823, 9824, 9825, 9826, 9827, 9828, 9829, (88,30): 9830, 9831, 9832, 9833, 9834, 9835, 9836, 9837, 9838, 9839, (88,40): 9840, 9841, 9842, 9843, 9844, 9845, 9846, 9847, 9848, 9849, (89,0): 9900, 9901, 9902, 9903, 9904, 9905, 9906, 9907, 9908, 9909, (89,10): 9910, 9911, 9912, 9913, 9914, 9915, 9916, 9917, 9918, 9919, (89,20): 9920, 9921, 9922, 9923, 9924, 9925, 9926, 9927, 9928, 9929, (89,30): 9930, 9931, 9932, 9933, 9934, 9935, 9936, 9937, 9938, 9939, (89,40): 9940, 9941, 9942, 9943, 9944, 9945, 9946, 9947, 9948, 9949, (90,0): 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007, (90,8): 10008, 10009, 10010, 10011, 10012, 10013, 10014, 10015, (90,16): 10016, 10017, 10018, 10019, 10020, 10021, 10022, 10023, (90,24): 10024, 10025, 10026, 10027, 10028, 10029, 10030, 10031, (90,32): 10032, 10033, 10034, 10035, 10036, 10037, 10038, 10039, (90,40): 10040, 10041, 10042, 10043, 10044, 10045, 10046, 10047, (90,48): 10048, 10049, (91,0): 10100, 10101, 10102, 10103, 10104, 10105, 10106, 10107, (91,8): 10108, 10109, 10110, 10111, 10112, 10113, 10114, 10115, (91,16): 10116, 10117, 10118, 10119, 10120, 10121, 10122, 10123, (91,24): 10124, 10125, 10126, 10127, 10128, 10129, 10130, 10131, (91,32): 10132, 10133, 10134, 10135, 10136, 10137, 10138, 10139, (91,40): 10140, 10141, 10142, 10143, 10144, 10145, 10146, 10147, (91,48): 10148, 10149, (92,0): 10200, 10201, 10202, 10203, 10204, 10205, 10206, 10207, (92,8): 10208, 10209, 10210, 10211, 10212, 10213, 10214, 10215, (92,16): 10216, 10217, 10218, 10219, 10220, 10221, 10222, 10223, (92,24): 10224, 10225, 10226, 10227, 10228, 10229, 10230, 10231, (92,32): 10232, 10233, 10234, 10235, 10236, 10237, 10238, 10239, (92,40): 10240, 10241, 10242, 10243, 10244, 10245, 10246, 10247, (92,48): 10248, 10249, (93,0): 10300, 10301, 10302, 10303, 10304, 10305, 10306, 10307, (93,8): 10308, 10309, 10310, 10311, 10312, 10313, 10314, 10315, (93,16): 10316, 10317, 10318, 10319, 10320, 10321, 10322, 10323, (93,24): 10324, 10325, 10326, 10327, 10328, 10329, 10330, 10331, (93,32): 10332, 10333, 10334, 10335, 10336, 10337, 10338, 10339, (93,40): 10340, 10341, 10342, 10343, 10344, 10345, 10346, 10347, (93,48): 10348, 10349, (94,0): 10400, 10401, 10402, 10403, 10404, 10405, 10406, 10407, (94,8): 10408, 10409, 10410, 10411, 10412, 10413, 10414, 10415, (94,16): 10416, 10417, 10418, 10419, 10420, 10421, 10422, 10423, (94,24): 10424, 10425, 10426, 10427, 10428, 10429, 10430, 10431, (94,32): 10432, 10433, 10434, 10435, 10436, 10437, 10438, 10439, (94,40): 10440, 10441, 10442, 10443, 10444, 10445, 10446, 10447, (94,48): 10448, 10449, (95,0): 10500, 10501, 10502, 10503, 10504, 10505, 10506, 10507, (95,8): 10508, 10509, 10510, 10511, 10512, 10513, 10514, 10515, (95,16): 10516, 10517, 10518, 10519, 10520, 10521, 10522, 10523, (95,24): 10524, 10525, 10526, 10527, 10528, 10529, 10530, 10531, (95,32): 10532, 10533, 10534, 10535, 10536, 10537, 10538, 10539, (95,40): 10540, 10541, 10542, 10543, 10544, 10545, 10546, 10547, (95,48): 10548, 10549, (96,0): 10600, 10601, 10602, 10603, 10604, 10605, 10606, 10607, (96,8): 10608, 10609, 10610, 10611, 10612, 10613, 10614, 10615, (96,16): 10616, 10617, 10618, 10619, 10620, 10621, 10622, 10623, (96,24): 10624, 10625, 10626, 10627, 10628, 10629, 10630, 10631, (96,32): 10632, 10633, 10634, 10635, 10636, 10637, 10638, 10639, (96,40): 10640, 10641, 10642, 10643, 10644, 10645, 10646, 10647, (96,48): 10648, 10649, (97,0): 10700, 10701, 10702, 10703, 10704, 10705, 10706, 10707, (97,8): 10708, 10709, 10710, 10711, 10712, 10713, 10714, 10715, (97,16): 10716, 10717, 10718, 10719, 10720, 10721, 10722, 10723, (97,24): 10724, 10725, 10726, 10727, 10728, 10729, 10730, 10731, (97,32): 10732, 10733, 10734, 10735, 10736, 10737, 10738, 10739, (97,40): 10740, 10741, 10742, 10743, 10744, 10745, 10746, 10747, (97,48): 10748, 10749, (98,0): 10800, 10801, 10802, 10803, 10804, 10805, 10806, 10807, (98,8): 10808, 10809, 10810, 10811, 10812, 10813, 10814, 10815, (98,16): 10816, 10817, 10818, 10819, 10820, 10821, 10822, 10823, (98,24): 10824, 10825, 10826, 10827, 10828, 10829, 10830, 10831, (98,32): 10832, 10833, 10834, 10835, 10836, 10837, 10838, 10839, (98,40): 10840, 10841, 10842, 10843, 10844, 10845, 10846, 10847, (98,48): 10848, 10849, (99,0): 10900, 10901, 10902, 10903, 10904, 10905, 10906, 10907, (99,8): 10908, 10909, 10910, 10911, 10912, 10913, 10914, 10915, (99,16): 10916, 10917, 10918, 10919, 10920, 10921, 10922, 10923, (99,24): 10924, 10925, 10926, 10927, 10928, 10929, 10930, 10931, (99,32): 10932, 10933, 10934, 10935, 10936, 10937, 10938, 10939, (99,40): 10940, 10941, 10942, 10943, 10944, 10945, 10946, 10947, (99,48): 10948, 10949 } } DATASET "2D int8x9" { DATATYPE H5T_STD_I32LE DATASPACE SIMPLE { ( 8, 9 ) / ( 8, 9 ) } DATA { (0,0): 11, 12, 13, 14, 15, 16, 17, 18, 19, (1,0): 21, 22, 23, 24, 25, 26, 27, 28, 29, (2,0): 31, 32, 33, 34, 35, 36, 37, 38, 39, (3,0): 41, 42, 43, 44, 45, 46, 47, 48, 49, (4,0): 51, 52, 53, 54, 55, 56, 57, 58, 59, (5,0): 61, 62, 63, 64, 65, 66, 67, 68, 69, (6,0): 71, 72, 73, 74, 75, 76, 77, 78, 79, (7,0): 81, 82, 83, 84, 85, 86, 87, 88, 89 } } DATASET "3D int array" { DATATYPE H5T_STD_I32LE DATASPACE SIMPLE { ( 100, 50, 10 ) / ( 100, 50, 10 ) } DATA { (0,0,0): 174, 27, 0, 0, 48, 125, 125, 102, 71, 100009, (0,1,0): 171, 27, 0, 0, 48, 125, 125, 194, 79, 100109, (0,2,0): 172, 27, 0, 0, 49, 125, 125, 102, 55, 100209, (0,3,0): 171, 27, 0, 0, 50, 128, 128, 76, 35, 100309, (0,4,0): 170, 29, 0, 0, 53, 131, 131, 120, 119, 100409, (0,5,0): 169, 30, 0, 0, 53, 134, 134, 71, 185, 100509, (0,6,0): 168, 30, 0, 0, 54, 133, 133, 6, 33, 100609, (0,7,0): 169, 30, 0, 0, 54, 131, 131, 236, 156, 100709, (0,8,0): 170, 31, 0, 0, 56, 131, 131, 113, 156, 100809, (0,9,0): 169, 31, 0, 0, 56, 132, 132, 71, 49, 100909, (0,10,0): 167, 32, 0, 0, 58, 132, 132, 243, 33, 101009, (0,11,0): 167, 32, 0, 0, 58, 136, 136, 125, 181, 101109, (0,12,0): 167, 32, 0, 0, 58, 136, 136, 113, 50, 101209, (0,13,0): 167, 33, 0, 0, 58, 137, 137, 120, 46, 101309, (0,14,0): 167, 33, 0, 0, 58, 138, 138, 55, 46, 101409, (0,15,0): 168, 33, 0, 0, 58, 135, 135, 55, 186, 101509, (0,16,0): 168, 34, 0, 0, 58, 134, 134, 55, 221, 101609, (0,17,0): 169, 34, 0, 0, 57, 131, 131, 119, 79, 101709, (0,18,0): 171, 35, 0, 0, 57, 128, 128, 55, 100, 101809, (0,19,0): 171, 37, 0, 0, 56, 126, 126, 55, 183, 101909, (0,20,0): 169, 40, 0, 0, 56, 124, 124, 120, 14, 102009, (0,21,0): 169, 41, 0, 0, 57, 121, 121, 6, 33, 102109, (0,22,0): 171, 42, 0, 0, 57, 126, 126, 154, 234, 102209, (0,23,0): 174, 43, 0, 0, 58, 133, 133, 106, 195, 102309, (0,24,0): 175, 44, 0, 0, 56, 138, 138, 148, 195, 102409, (0,25,0): 175, 45, 0, 0, 56, 160, 160, 197, 18, 102509, (0,26,0): 175, 46, 0, 0, 56, 166, 166, 69, 234, 102609, (0,27,0): 175, 46, 0, 0, 56, 138, 138, 212, 18, 102709, (0,28,0): 175, 48, 0, 0, 56, 124, 124, 151, 234, 102809, (0,29,0): 174, 48, 0, 0, 56, 130, 130, 158, 66, 102909, (0,30,0): 173, 48, 0, 0, 56, 128, 128, 85, 195, 103009, (0,31,0): 174, 48, 0, 0, 56, 123, 123, 98, 195, 103109, (0,32,0): 174, 48, 0, 0, 54, 122, 122, 39, 63, 103209, (0,33,0): 174, 48, 0, 0, 54, 124, 124, 158, 175, 103309, (0,34,0): 175, 48, 0, 0, 54, 125, 125, 115, 121, 103409, (0,35,0): 175, 48, 0, 0, 53, 127, 127, 98, 64, 103509, (0,36,0): 176, 50, 0, 0, 53, 130, 130, 39, 180, 103609, (0,37,0): 175, 50, 0, 0, 52, 137, 137, 68, 156, 103709, (0,38,0): 175, 50, 0, 0, 52, 134, 134, 65, 66, 103809, (0,39,0): 174, 51, 0, 0, 52, 119, 119, 191, 72, 103909, (0,40,0): 171, 51, 0, 0, 52, 117, 117, 54, 108, 104009, (0,41,0): 170, 52, 0, 0, 52, 130, 130, 13, 14, 104109, (0,42,0): 170, 52, 0, 0, 52, 141, 141, 212, 220, 104209, (0,43,0): 171, 53, 0, 0, 52, 150, 150, 52, 220, 104309, (0,44,0): 173, 51, 0, 0, 52, 159, 159, 144, 104, 104409, (0,45,0): 174, 50, 0, 0, 52, 166, 166, 52, 104, 104509, (0,46,0): 175, 50, 0, 0, 52, 167, 167, 168, 64, 104609, (0,47,0): 175, 49, 0, 0, 50, 157, 157, 168, 99, 104709, (0,48,0): 174, 49, 0, 0, 47, 150, 150, 168, 64, 104809, (0,49,0): 174, 48, 0, 0, 47, 146, 146, 61, 104, 104909, (1,0,0): 172, 26, 0, 0, 48, 135, 135, 113, 219, 110009, (1,1,0): 170, 26, 0, 0, 48, 130, 130, 103, 55, 110109, (1,2,0): 170, 26, 0, 0, 49, 127, 127, 113, 55, 110209, (1,3,0): 169, 26, 0, 0, 49, 127, 127, 120, 35, 110309, (1,4,0): 168, 29, 0, 0, 52, 130, 130, 120, 35, 110409, (1,5,0): 168, 29, 0, 0, 53, 136, 136, 145, 79, 110509, (1,6,0): 169, 29, 0, 0, 54, 138, 138, 120, 185, 110609, (1,7,0): 170, 30, 0, 0, 54, 133, 133, 120, 185, 110709, (1,8,0): 169, 31, 0, 0, 56, 132, 132, 185, 14, 110809, (1,9,0): 168, 31, 0, 0, 56, 132, 132, 71, 108, 110909, (1,10,0): 167, 31, 0, 0, 58, 134, 134, 120, 220, 111009, (1,11,0): 167, 32, 0, 0, 58, 134, 134, 120, 181, 111109, (1,12,0): 167, 32, 0, 0, 58, 133, 133, 120, 108, 111209, (1,13,0): 167, 32, 0, 0, 58, 132, 132, 55, 46, 111309, (1,14,0): 168, 32, 0, 0, 58, 131, 131, 55, 186, 111409, (1,15,0): 169, 33, 0, 0, 58, 128, 128, 55, 156, 111509, (1,16,0): 170, 34, 0, 0, 57, 127, 127, 55, 14, 111609, (1,17,0): 172, 34, 0, 0, 57, 126, 126, 55, 221, 111709, (1,18,0): 173, 34, 0, 0, 56, 127, 127, 55, 221, 111809, (1,19,0): 170, 37, 0, 0, 56, 127, 127, 55, 63, 111909, (1,20,0): 168, 40, 0, 0, 56, 128, 128, 120, 14, 112009, (1,21,0): 168, 41, 0, 0, 56, 129, 129, 6, 33, 112109, (1,22,0): 170, 42, 0, 0, 57, 135, 135, 6, 195, 112209, (1,23,0): 174, 43, 0, 0, 57, 144, 144, 213, 18, 112309, (1,24,0): 175, 44, 0, 0, 56, 160, 160, 23, 116, 112409, (1,25,0): 175, 45, 0, 0, 56, 203, 203, 69, 79, 112509, (1,26,0): 176, 46, 0, 0, 56, 216, 216, 56, 72, 112609, (1,27,0): 175, 46, 0, 0, 56, 171, 171, 115, 33, 112709, (1,28,0): 174, 45, 0, 0, 56, 138, 138, 244, 72, 112809, (1,29,0): 173, 45, 0, 0, 56, 136, 136, 217, 72, 112909, (1,30,0): 173, 45, 0, 0, 56, 127, 127, 217, 18, 113009, (1,31,0): 173, 45, 0, 0, 56, 117, 117, 68, 195, 113109, (1,32,0): 175, 45, 0, 0, 54, 114, 114, 218, 100, 113209, (1,33,0): 175, 45, 0, 0, 54, 113, 113, 39, 104, 113309, (1,34,0): 175, 45, 0, 0, 53, 114, 114, 98, 123, 113409, (1,35,0): 175, 45, 0, 0, 53, 118, 118, 247, 123, 113509, (1,36,0): 176, 49, 0, 0, 53, 124, 124, 73, 27, 113609, (1,37,0): 176, 50, 0, 0, 52, 132, 132, 68, 180, 113709, (1,38,0): 175, 50, 0, 0, 52, 128, 128, 255, 220, 113809, (1,39,0): 173, 51, 0, 0, 52, 113, 113, 197, 66, 113909, (1,40,0): 172, 51, 0, 0, 53, 116, 116, 191, 63, 114009, (1,41,0): 172, 52, 0, 0, 53, 138, 138, 13, 108, 114109, (1,42,0): 172, 52, 0, 0, 53, 156, 156, 150, 63, 114209, (1,43,0): 172, 52, 0, 0, 53, 173, 173, 212, 63, 114309, (1,44,0): 173, 51, 0, 0, 53, 186, 186, 52, 2, 114409, (1,45,0): 175, 51, 0, 0, 53, 194, 194, 52, 187, 114509, (1,46,0): 175, 51, 0, 0, 53, 195, 195, 52, 64, 114609, (1,47,0): 175, 50, 0, 0, 51, 191, 191, 52, 70, 114709, (1,48,0): 174, 50, 0, 0, 48, 183, 183, 168, 123, 114809, (1,49,0): 174, 49, 0, 0, 48, 173, 173, 208, 27, 114909, (2,0,0): 169, 26, 0, 0, 47, 153, 153, 55, 38, 120009, (2,1,0): 168, 26, 0, 0, 47, 142, 142, 145, 18, 120109, (2,2,0): 168, 26, 0, 0, 48, 133, 133, 145, 33, 120209, (2,3,0): 169, 26, 0, 0, 49, 132, 132, 55, 117, 120309, (2,4,0): 168, 28, 0, 0, 52, 133, 133, 201, 119, 120409, (2,5,0): 169, 29, 0, 0, 52, 140, 140, 55, 79, 120509, (2,6,0): 170, 29, 0, 0, 53, 143, 143, 120, 185, 120609, (2,7,0): 170, 30, 0, 0, 53, 139, 139, 120, 186, 120709, (2,8,0): 170, 30, 0, 0, 55, 138, 138, 120, 220, 120809, (2,9,0): 169, 31, 0, 0, 55, 137, 137, 120, 63, 120909, (2,10,0): 168, 31, 0, 0, 55, 136, 136, 55, 183, 121009, (2,11,0): 168, 31, 0, 0, 55, 136, 136, 120, 27, 121109, (2,12,0): 168, 31, 0, 0, 57, 132, 132, 120, 183, 121209, (2,13,0): 169, 32, 0, 0, 57, 128, 128, 120, 50, 121309, (2,14,0): 170, 32, 0, 0, 57, 125, 125, 55, 183, 121409, (2,15,0): 172, 33, 0, 0, 57, 122, 122, 120, 156, 121509, (2,16,0): 173, 33, 0, 0, 57, 122, 122, 55, 146, 121609, (2,17,0): 172, 34, 0, 0, 56, 122, 122, 145, 79, 121709, (2,18,0): 170, 34, 0, 0, 55, 125, 125, 119, 186, 121809, (2,19,0): 169, 36, 0, 0, 55, 129, 129, 55, 14, 121909, (2,20,0): 169, 39, 0, 0, 55, 134, 134, 145, 2, 122009, (2,21,0): 170, 40, 0, 0, 55, 139, 139, 71, 63, 122109, (2,22,0): 172, 41, 0, 0, 56, 146, 146, 6, 204, 122209, (2,23,0): 175, 42, 0, 0, 57, 150, 150, 154, 195, 122309, (2,24,0): 175, 43, 0, 0, 56, 176, 176, 148, 79, 122409, (2,25,0): 175, 44, 0, 0, 56, 234, 234, 69, 33, 122509, (2,26,0): 175, 45, 0, 0, 56, 252, 252, 56, 128, 122609, (2,27,0): 174, 46, 0, 0, 56, 195, 195, 197, 128, 122709, (2,28,0): 173, 43, 0, 0, 56, 149, 149, 191, 33, 122809, (2,29,0): 173, 43, 0, 0, 56, 137, 137, 158, 116, 122909, (2,30,0): 172, 43, 0, 0, 56, 120, 120, 68, 221, 123009, (2,31,0): 173, 43, 0, 0, 56, 112, 112, 164, 72, 123109, (2,32,0): 175, 43, 0, 0, 54, 106, 106, 39, 14, 123209, (2,33,0): 175, 43, 0, 0, 53, 104, 104, 218, 108, 123309, (2,34,0): 176, 43, 0, 0, 53, 106, 106, 68, 100, 123409, (2,35,0): 176, 43, 0, 0, 53, 111, 111, 47, 108, 123509, (2,36,0): 176, 49, 0, 0, 52, 118, 118, 106, 180, 123609, (2,37,0): 175, 49, 0, 0, 52, 128, 128, 39, 108, 123709, (2,38,0): 173, 49, 0, 0, 52, 130, 130, 112, 72, 123809, (2,39,0): 172, 50, 0, 0, 52, 124, 124, 43, 195, 123909, (2,40,0): 171, 51, 0, 0, 53, 134, 134, 13, 14, 124009, (2,41,0): 171, 51, 0, 0, 53, 160, 160, 197, 100, 124109, (2,42,0): 170, 51, 0, 0, 53, 183, 183, 150, 100, 124209, (2,43,0): 170, 52, 0, 0, 53, 203, 203, 212, 108, 124309, (2,44,0): 172, 51, 0, 0, 53, 214, 214, 150, 180, 124409, (2,45,0): 174, 51, 0, 0, 53, 218, 218, 52, 2, 124509, (2,46,0): 175, 51, 0, 0, 53, 218, 218, 52, 104, 124609, (2,47,0): 175, 50, 0, 0, 51, 230, 230, 52, 187, 124709, (2,48,0): 175, 50, 0, 0, 50, 219, 219, 168, 252, 124809, (2,49,0): 175, 49, 0, 0, 49, 207, 207, 227, 252, 124909, (3,0,0): 168, 25, 0, 0, 46, 164, 164, 201, 241, 130009, (3,1,0): 169, 25, 0, 0, 47, 168, 168, 201, 38, 130109, (3,2,0): 170, 25, 0, 0, 47, 171, 171, 201, 185, 130209, (3,3,0): 169, 25, 0, 0, 48, 165, 165, 201, 139, 130309, (3,4,0): 168, 28, 0, 0, 51, 153, 153, 145, 33, 130409, (3,5,0): 169, 28, 0, 0, 52, 151, 151, 55, 18, 130509, (3,6,0): 169, 28, 0, 0, 52, 156, 156, 145, 79, 130609, (3,7,0): 170, 29, 0, 0, 52, 148, 148, 120, 66, 130709, (3,8,0): 170, 29, 0, 0, 54, 146, 146, 120, 49, 130809, (3,9,0): 170, 30, 0, 0, 54, 143, 143, 120, 49, 130909, (3,10,0): 170, 30, 0, 0, 54, 137, 137, 145, 181, 131009, (3,11,0): 170, 31, 0, 0, 54, 136, 136, 55, 91, 131109, (3,12,0): 170, 31, 0, 0, 56, 135, 135, 55, 223, 131209, (3,13,0): 171, 31, 0, 0, 56, 127, 127, 120, 183, 131309, (3,14,0): 173, 31, 0, 0, 56, 117, 117, 55, 36, 131409, (3,15,0): 174, 32, 0, 0, 56, 117, 117, 145, 64, 131509, (3,16,0): 174, 32, 0, 0, 55, 115, 115, 55, 63, 131609, (3,17,0): 171, 33, 0, 0, 55, 116, 116, 201, 49, 131709, (3,18,0): 169, 33, 0, 0, 54, 121, 121, 55, 14, 131809, (3,19,0): 169, 36, 0, 0, 54, 133, 133, 145, 180, 131909, (3,20,0): 169, 38, 0, 0, 54, 142, 142, 119, 2, 132009, (3,21,0): 173, 40, 0, 0, 54, 149, 149, 6, 24, 132109, (3,22,0): 175, 41, 0, 0, 55, 155, 155, 41, 187, 132209, (3,23,0): 175, 42, 0, 0, 55, 198, 198, 228, 100, 132309, (3,24,0): 174, 43, 0, 0, 56, 229, 229, 149, 18, 132409, (3,25,0): 175, 44, 0, 0, 56, 194, 194, 158, 33, 132509, (3,26,0): 175, 45, 0, 0, 56, 202, 202, 165, 232, 132609, (3,27,0): 174, 45, 0, 0, 56, 224, 224, 191, 33, 132709, (3,28,0): 174, 43, 0, 0, 56, 171, 171, 85, 116, 132809, (3,29,0): 172, 43, 0, 0, 56, 134, 134, 56, 195, 132909, (3,30,0): 173, 43, 0, 0, 56, 132, 132, 39, 186, 133009, (3,31,0): 175, 43, 0, 0, 56, 109, 109, 200, 128, 133109, (3,32,0): 175, 43, 0, 0, 53, 105, 105, 164, 116, 133209, (3,33,0): 176, 43, 0, 0, 53, 105, 105, 106, 195, 133309, (3,34,0): 176, 43, 0, 0, 53, 107, 107, 159, 156, 133409, (3,35,0): 176, 43, 0, 0, 52, 107, 107, 112, 220, 133509, (3,36,0): 175, 48, 0, 0, 52, 111, 111, 101, 63, 133609, (3,37,0): 173, 49, 0, 0, 52, 125, 125, 10, 14, 133709, (3,38,0): 172, 49, 0, 0, 51, 141, 141, 112, 14, 133809, (3,39,0): 171, 49, 0, 0, 51, 145, 145, 109, 195, 133909, (3,40,0): 171, 50, 0, 0, 54, 177, 177, 191, 63, 134009, (3,41,0): 170, 51, 0, 0, 54, 208, 208, 158, 91, 134109, (3,42,0): 167, 51, 0, 0, 54, 218, 218, 126, 253, 134209, (3,43,0): 166, 51, 0, 0, 54, 222, 222, 13, 187, 134309, (3,44,0): 169, 51, 0, 0, 54, 229, 229, 144, 104, 134409, (3,45,0): 173, 51, 0, 0, 54, 241, 241, 239, 175, 134509, (3,46,0): 175, 50, 0, 0, 54, 243, 243, 52, 175, 134609, (3,47,0): 175, 50, 0, 0, 52, 243, 243, 52, 2, 134709, (3,48,0): 175, 49, 0, 0, 51, 233, 233, 168, 252, 134809, (3,49,0): 175, 49, 0, 0, 51, 227, 227, 150, 93, 134909, (4,0,0): 169, 25, 0, 0, 45, 155, 155, 199, 38, 140009, (4,1,0): 171, 25, 0, 0, 45, 153, 153, 117, 204, 140109, (4,2,0): 171, 25, 0, 0, 46, 160, 160, 201, 79, 140209, (4,3,0): 169, 25, 0, 0, 47, 164, 164, 201, 232, 140309, (4,4,0): 168, 27, 0, 0, 48, 167, 167, 55, 55, 140409, (4,5,0): 168, 28, 0, 0, 49, 174, 174, 145, 79, 140509, (4,6,0): 168, 28, 0, 0, 51, 182, 182, 55, 33, 140609, (4,7,0): 168, 28, 0, 0, 52, 181, 181, 145, 79, 140709, (4,8,0): 169, 29, 0, 0, 51, 176, 176, 120, 66, 140809, (4,9,0): 172, 30, 0, 0, 51, 167, 167, 120, 66, 140909, (4,10,0): 172, 30, 0, 0, 52, 155, 155, 145, 49, 141009, (4,11,0): 171, 30, 0, 0, 52, 147, 147, 120, 156, 141109, (4,12,0): 172, 30, 0, 0, 52, 142, 142, 145, 183, 141209, (4,13,0): 173, 31, 0, 0, 52, 133, 133, 145, 105, 141309, (4,14,0): 174, 31, 0, 0, 54, 121, 121, 55, 105, 141409, (4,15,0): 174, 31, 0, 0, 54, 114, 114, 145, 121, 141509, (4,16,0): 174, 32, 0, 0, 52, 124, 124, 55, 223, 141609, (4,17,0): 172, 33, 0, 0, 52, 135, 135, 55, 108, 141709, (4,18,0): 172, 33, 0, 0, 51, 133, 133, 145, 79, 141809, (4,19,0): 172, 35, 0, 0, 51, 133, 133, 145, 234, 141909, (4,20,0): 173, 38, 0, 0, 51, 149, 149, 145, 14, 142009, (4,21,0): 174, 39, 0, 0, 51, 181, 181, 243, 66, 142109, (4,22,0): 175, 40, 0, 0, 52, 211, 211, 20, 2, 142209, (4,23,0): 175, 41, 0, 0, 52, 219, 219, 228, 14, 142309, (4,24,0): 174, 42, 0, 0, 53, 221, 221, 250, 18, 142409, (4,25,0): 175, 43, 0, 0, 53, 199, 199, 101, 79, 142509, (4,26,0): 174, 44, 0, 0, 53, 190, 190, 218, 128, 142609, (4,27,0): 174, 44, 0, 0, 53, 208, 208, 218, 116, 142709, (4,28,0): 174, 44, 0, 0, 53, 179, 179, 68, 72, 142809, (4,29,0): 174, 44, 0, 0, 53, 132, 132, 85, 220, 142909, (4,30,0): 175, 44, 0, 0, 53, 130, 130, 166, 49, 143009, (4,31,0): 176, 44, 0, 0, 53, 121, 121, 106, 72, 143109, (4,32,0): 176, 44, 0, 0, 51, 101, 101, 200, 128, 143209, (4,33,0): 176, 44, 0, 0, 51, 96, 96, 73, 33, 143309, (4,34,0): 176, 44, 0, 0, 50, 107, 107, 77, 66, 143409, (4,35,0): 174, 44, 0, 0, 50, 117, 117, 148, 220, 143509, (4,36,0): 172, 48, 0, 0, 50, 119, 119, 10, 66, 143609, (4,37,0): 172, 48, 0, 0, 49, 127, 127, 112, 66, 143709, (4,38,0): 174, 48, 0, 0, 49, 150, 150, 82, 108, 143809, (4,39,0): 175, 49, 0, 0, 49, 185, 185, 158, 49, 143909, (4,40,0): 176, 49, 0, 0, 52, 210, 210, 191, 14, 144009, (4,41,0): 174, 50, 0, 0, 52, 224, 224, 217, 180, 144109, (4,42,0): 170, 50, 0, 0, 52, 231, 231, 255, 63, 144209, (4,43,0): 168, 51, 0, 0, 52, 238, 238, 191, 187, 144309, (4,44,0): 170, 50, 0, 0, 52, 249, 249, 114, 27, 144409, (4,45,0): 172, 49, 0, 0, 52, 255, 255, 126, 123, 144509, (4,46,0): 173, 49, 0, 0, 52, 255, 255, 144, 104, 144609, (4,47,0): 174, 49, 0, 0, 52, 255, 255, 143, 187, 144709, (4,48,0): 175, 48, 0, 0, 52, 243, 243, 255, 104, 144809, (4,49,0): 175, 47, 0, 0, 52, 236, 236, 227, 93, 144909, (5,0,0): 170, 24, 0, 0, 44, 161, 161, 119, 66, 150009, (5,1,0): 170, 24, 0, 0, 44, 152, 152, 201, 125, 150109, (5,2,0): 169, 24, 0, 0, 46, 157, 157, 201, 204, 150209, (5,3,0): 168, 24, 0, 0, 46, 165, 165, 201, 79, 150309, (5,4,0): 168, 27, 0, 0, 47, 172, 172, 55, 232, 150409, (5,5,0): 168, 27, 0, 0, 48, 178, 178, 201, 232, 150509, (5,6,0): 168, 28, 0, 0, 51, 184, 184, 55, 35, 150609, (5,7,0): 169, 28, 0, 0, 51, 167, 167, 145, 33, 150709, (5,8,0): 170, 29, 0, 0, 50, 177, 177, 120, 49, 150809, (5,9,0): 172, 29, 0, 0, 50, 185, 185, 71, 63, 150909, (5,10,0): 173, 29, 0, 0, 51, 190, 190, 71, 14, 151009, (5,11,0): 172, 30, 0, 0, 51, 186, 186, 71, 156, 151109, (5,12,0): 173, 30, 0, 0, 51, 173, 173, 120, 63, 151209, (5,13,0): 173, 30, 0, 0, 51, 150, 150, 120, 50, 151309, (5,14,0): 174, 31, 0, 0, 53, 130, 130, 145, 14, 151409, (5,15,0): 174, 31, 0, 0, 53, 123, 123, 145, 3, 151509, (5,16,0): 173, 32, 0, 0, 51, 118, 118, 145, 2, 151609, (5,17,0): 174, 32, 0, 0, 51, 122, 122, 201, 108, 151709, (5,18,0): 175, 32, 0, 0, 50, 133, 133, 120, 186, 151809, (5,19,0): 175, 35, 0, 0, 49, 156, 156, 120, 66, 151909, (5,20,0): 175, 38, 0, 0, 49, 186, 186, 71, 234, 152009, (5,21,0): 175, 39, 0, 0, 50, 215, 215, 76, 204, 152109, (5,22,0): 175, 40, 0, 0, 51, 232, 232, 92, 195, 152209, (5,23,0): 175, 41, 0, 0, 51, 225, 225, 107, 66, 152309, (5,24,0): 175, 42, 0, 0, 51, 206, 206, 173, 79, 152409, (5,25,0): 174, 43, 0, 0, 51, 205, 205, 213, 18, 152509, (5,26,0): 174, 44, 0, 0, 51, 187, 187, 118, 33, 152609, (5,27,0): 174, 44, 0, 0, 51, 198, 198, 118, 116, 152709, (5,28,0): 174, 45, 0, 0, 51, 198, 198, 118, 186, 152809, (5,29,0): 175, 45, 0, 0, 51, 148, 148, 118, 234, 152909, (5,30,0): 176, 45, 0, 0, 51, 140, 140, 73, 49, 153009, (5,31,0): 176, 45, 0, 0, 51, 125, 125, 218, 63, 153109, (5,32,0): 176, 45, 0, 0, 50, 106, 106, 159, 72, 153209, (5,33,0): 176, 45, 0, 0, 50, 104, 104, 217, 128, 153309, (5,34,0): 175, 45, 0, 0, 50, 117, 117, 217, 79, 153409, (5,35,0): 173, 45, 0, 0, 50, 128, 128, 206, 195, 153509, (5,36,0): 172, 47, 0, 0, 49, 130, 130, 158, 195, 153609, (5,37,0): 174, 48, 0, 0, 49, 143, 143, 68, 195, 153709, (5,38,0): 176, 48, 0, 0, 49, 177, 177, 82, 66, 153809, (5,39,0): 176, 49, 0, 0, 48, 224, 224, 158, 180, 153909, (5,40,0): 175, 49, 0, 0, 51, 239, 239, 109, 156, 154009, (5,41,0): 175, 50, 0, 0, 51, 238, 238, 109, 108, 154109, (5,42,0): 172, 50, 0, 0, 51, 239, 239, 244, 63, 154209, (5,43,0): 169, 50, 0, 0, 51, 248, 248, 69, 27, 154309, (5,44,0): 169, 48, 0, 0, 51, 255, 255, 114, 123, 154409, (5,45,0): 170, 48, 0, 0, 51, 255, 255, 167, 121, 154509, (5,46,0): 170, 48, 0, 0, 51, 254, 254, 143, 175, 154609, (5,47,0): 172, 47, 0, 0, 51, 255, 255, 114, 8, 154709, (5,48,0): 174, 47, 0, 0, 52, 245, 245, 169, 226, 154809, (5,49,0): 173, 46, 0, 0, 52, 240, 240, 114, 226, 154909, (6,0,0): 170, 24, 0, 0, 43, 169, 169, 201, 28, 160009, (6,1,0): 169, 22, 0, 0, 43, 163, 163, 117, 38, 160109, (6,2,0): 168, 24, 0, 0, 44, 164, 164, 201, 194, 160209, (6,3,0): 168, 24, 0, 0, 45, 169, 169, 201, 241, 160309, (6,4,0): 168, 26, 0, 0, 47, 171, 171, 201, 33, 160409, (6,5,0): 169, 26, 0, 0, 47, 174, 174, 120, 35, 160509, (6,6,0): 170, 27, 0, 0, 48, 173, 173, 201, 33, 160609, (6,7,0): 171, 27, 0, 0, 48, 182, 182, 120, 33, 160709, (6,8,0): 171, 28, 0, 0, 49, 186, 186, 120, 232, 160809, (6,9,0): 173, 28, 0, 0, 49, 187, 187, 55, 79, 160909, (6,10,0): 174, 29, 0, 0, 49, 186, 186, 113, 186, 161009, (6,11,0): 174, 29, 0, 0, 49, 190, 190, 103, 234, 161109, (6,12,0): 173, 30, 0, 0, 50, 197, 197, 145, 63, 161209, (6,13,0): 174, 29, 0, 0, 50, 196, 196, 71, 220, 161309, (6,14,0): 175, 30, 0, 0, 50, 190, 190, 145, 156, 161409, (6,15,0): 173, 30, 0, 0, 50, 153, 153, 55, 195, 161509, (6,16,0): 172, 31, 0, 0, 50, 139, 139, 120, 186, 161609, (6,17,0): 173, 31, 0, 0, 50, 135, 135, 120, 220, 161709, (6,18,0): 174, 32, 0, 0, 49, 157, 157, 145, 63, 161809, (6,19,0): 175, 33, 0, 0, 49, 195, 195, 113, 79, 161909, (6,20,0): 176, 37, 0, 0, 49, 219, 219, 102, 79, 162009, (6,21,0): 176, 38, 0, 0, 49, 224, 224, 103, 234, 162109, (6,22,0): 176, 39, 0, 0, 50, 218, 218, 76, 204, 162209, (6,23,0): 176, 40, 0, 0, 50, 221, 221, 213, 204, 162309, (6,24,0): 175, 41, 0, 0, 49, 204, 204, 213, 79, 162409, (6,25,0): 174, 42, 0, 0, 49, 209, 209, 254, 72, 162509, (6,26,0): 174, 43, 0, 0, 49, 198, 198, 102, 79, 162609, (6,27,0): 174, 44, 0, 0, 49, 197, 197, 250, 18, 162709, (6,28,0): 174, 47, 0, 0, 49, 200, 200, 254, 33, 162809, (6,29,0): 174, 47, 0, 0, 49, 167, 167, 7, 195, 162909, (6,30,0): 176, 47, 0, 0, 49, 144, 144, 118, 72, 163009, (6,31,0): 176, 47, 0, 0, 49, 119, 119, 163, 14, 163109, (6,32,0): 176, 47, 0, 0, 50, 120, 120, 94, 66, 163209, (6,33,0): 176, 47, 0, 0, 50, 126, 126, 162, 186, 163309, (6,34,0): 176, 47, 0, 0, 50, 130, 130, 122, 18, 163409, (6,35,0): 175, 47, 0, 0, 49, 133, 133, 189, 253, 163509, (6,36,0): 175, 47, 0, 0, 49, 145, 145, 197, 121, 163609, (6,37,0): 176, 47, 0, 0, 49, 172, 172, 29, 121, 163709, (6,38,0): 176, 48, 0, 0, 48, 213, 213, 158, 183, 163809, (6,39,0): 175, 48, 0, 0, 48, 234, 234, 197, 220, 163909, (6,40,0): 175, 49, 0, 0, 51, 246, 246, 158, 72, 164009, (6,41,0): 175, 49, 0, 0, 51, 242, 242, 109, 100, 164109, (6,42,0): 173, 50, 0, 0, 51, 242, 242, 109, 63, 164209, (6,43,0): 170, 50, 0, 0, 51, 249, 249, 109, 2, 164309, (6,44,0): 169, 47, 0, 0, 51, 253, 253, 13, 2, 164409, (6,45,0): 169, 47, 0, 0, 51, 249, 249, 126, 123, 164509, (6,46,0): 170, 47, 0, 0, 51, 243, 243, 114, 242, 164609, (6,47,0): 171, 46, 0, 0, 51, 253, 253, 167, 37, 164709, (6,48,0): 172, 46, 0, 0, 52, 248, 248, 114, 89, 164809, (6,49,0): 173, 45, 0, 0, 52, 244, 244, 255, 214, 164909, (7,0,0): 169, 22, 0, 0, 43, 170, 170, 117, 237, 170009, (7,1,0): 168, 21, 0, 0, 43, 168, 168, 201, 58, 170109, (7,2,0): 168, 22, 0, 0, 44, 166, 166, 201, 70, 170209, (7,3,0): 168, 22, 0, 0, 44, 170, 170, 119, 246, 170309, (7,4,0): 169, 23, 0, 0, 46, 176, 176, 119, 71, 170409, (7,5,0): 170, 23, 0, 0, 47, 183, 183, 119, 79, 170509, (7,6,0): 172, 26, 0, 0, 48, 187, 187, 201, 232, 170609, (7,7,0): 173, 25, 0, 0, 48, 200, 200, 119, 232, 170709, (7,8,0): 174, 28, 0, 0, 49, 204, 204, 55, 49, 170809, (7,9,0): 175, 26, 0, 0, 49, 206, 206, 120, 79, 170909, (7,10,0): 176, 29, 0, 0, 49, 205, 205, 102, 116, 171009, (7,11,0): 176, 27, 0, 0, 49, 211, 211, 60, 72, 171109, (7,12,0): 174, 30, 0, 0, 50, 220, 220, 107, 33, 171209, (7,13,0): 175, 28, 0, 0, 50, 223, 223, 103, 195, 171309, (7,14,0): 174, 30, 0, 0, 50, 218, 218, 120, 14, 171409, (7,15,0): 174, 28, 0, 0, 50, 193, 193, 145, 72, 171509, (7,16,0): 174, 30, 0, 0, 50, 195, 195, 6, 79, 171609, (7,17,0): 173, 28, 0, 0, 49, 203, 203, 120, 156, 171709, (7,18,0): 174, 30, 0, 0, 49, 209, 209, 71, 63, 171809, (7,19,0): 176, 30, 0, 0, 48, 215, 215, 251, 156, 171909, (7,20,0): 177, 35, 0, 0, 48, 218, 218, 153, 18, 172009, (7,21,0): 177, 37, 0, 0, 49, 223, 223, 101, 79, 172109, (7,22,0): 177, 37, 0, 0, 49, 224, 224, 213, 128, 172209, (7,23,0): 176, 37, 0, 0, 50, 217, 217, 113, 128, 172309, (7,24,0): 175, 38, 0, 0, 48, 215, 215, 173, 66, 172409, (7,25,0): 175, 38, 0, 0, 48, 205, 205, 113, 2, 172509, (7,26,0): 173, 39, 0, 0, 48, 206, 206, 254, 104, 172609, (7,27,0): 172, 39, 0, 0, 48, 190, 190, 101, 63, 172709, (7,28,0): 173, 46, 0, 0, 48, 178, 178, 101, 18, 172809, (7,29,0): 174, 45, 0, 0, 48, 181, 181, 163, 79, 172909, (7,30,0): 175, 46, 0, 0, 48, 150, 150, 7, 33, 173009, (7,31,0): 175, 46, 0, 0, 48, 123, 123, 94, 79, 173109, (7,32,0): 176, 47, 0, 0, 50, 130, 130, 165, 79, 173209, (7,33,0): 176, 48, 0, 0, 50, 136, 136, 198, 79, 173309, (7,34,0): 176, 51, 0, 0, 50, 133, 133, 165, 72, 173409, (7,35,0): 176, 51, 0, 0, 49, 147, 147, 188, 180, 173509, (7,36,0): 176, 47, 0, 0, 49, 176, 176, 159, 183, 173609, (7,37,0): 176, 47, 0, 0, 48, 206, 206, 165, 252, 173709, (7,38,0): 176, 47, 0, 0, 48, 232, 232, 162, 180, 173809, (7,39,0): 176, 47, 0, 0, 48, 231, 231, 158, 156, 173909, (7,40,0): 176, 47, 0, 0, 50, 237, 237, 112, 63, 174009, (7,41,0): 175, 47, 0, 0, 50, 230, 230, 112, 187, 174109, (7,42,0): 175, 47, 0, 0, 50, 227, 227, 167, 104, 174209, (7,43,0): 173, 47, 0, 0, 50, 227, 227, 109, 51, 174309, (7,44,0): 171, 48, 0, 0, 50, 227, 227, 126, 51, 174409, (7,45,0): 170, 48, 0, 0, 50, 228, 228, 13, 93, 174509, (7,46,0): 170, 48, 0, 0, 50, 229, 229, 150, 70, 174609, (7,47,0): 171, 47, 0, 0, 50, 240, 240, 227, 53, 174709, (7,48,0): 173, 47, 0, 0, 51, 239, 239, 126, 178, 174809, (7,49,0): 175, 46, 0, 0, 51, 239, 239, 109, 89, 174909, (8,0,0): 169, 22, 0, 0, 44, 173, 173, 201, 237, 180009, (8,1,0): 168, 22, 0, 0, 44, 167, 167, 35, 60, 180109, (8,2,0): 168, 22, 0, 0, 44, 164, 164, 201, 58, 180209, (8,3,0): 168, 22, 0, 0, 44, 170, 170, 119, 25, 180309, (8,4,0): 170, 23, 0, 0, 45, 182, 182, 119, 24, 180409, (8,5,0): 173, 24, 0, 0, 45, 195, 195, 55, 38, 180509, (8,6,0): 175, 24, 0, 0, 46, 202, 202, 117, 33, 180609, (8,7,0): 176, 25, 0, 0, 46, 188, 188, 201, 79, 180709, (8,8,0): 175, 26, 0, 0, 47, 203, 203, 120, 33, 180809, (8,9,0): 176, 26, 0, 0, 47, 221, 221, 103, 128, 180909, (8,10,0): 177, 27, 0, 0, 49, 232, 232, 60, 128, 181009, (8,11,0): 177, 27, 0, 0, 48, 239, 239, 196, 79, 181109, (8,12,0): 176, 28, 0, 0, 48, 239, 239, 153, 72, 181209, (8,13,0): 175, 28, 0, 0, 48, 231, 231, 250, 33, 181309, (8,14,0): 173, 28, 0, 0, 47, 218, 218, 76, 33, 181409, (8,15,0): 174, 28, 0, 0, 47, 216, 216, 120, 186, 181509, (8,16,0): 175, 28, 0, 0, 47, 222, 222, 71, 33, 181609, (8,17,0): 175, 28, 0, 0, 47, 229, 229, 76, 72, 181709, (8,18,0): 176, 28, 0, 0, 47, 224, 224, 250, 66, 181809, (8,19,0): 177, 30, 0, 0, 47, 216, 216, 58, 72, 181909, (8,20,0): 177, 34, 0, 0, 47, 214, 214, 75, 72, 182009, (8,21,0): 177, 34, 0, 0, 47, 224, 224, 196, 72, 182109, (8,22,0): 176, 34, 0, 0, 47, 231, 231, 76, 221, 182209, (8,23,0): 176, 35, 0, 0, 48, 216, 216, 6, 33, 182309, (8,24,0): 176, 38, 0, 0, 47, 221, 221, 107, 234, 182409, (8,25,0): 174, 39, 0, 0, 47, 202, 202, 254, 252, 182509, (8,26,0): 171, 39, 0, 0, 47, 205, 205, 76, 27, 182609, (8,27,0): 171, 39, 0, 0, 47, 189, 189, 251, 180, 182709, (8,28,0): 173, 46, 0, 0, 47, 174, 174, 102, 204, 182809, (8,29,0): 175, 46, 0, 0, 47, 200, 200, 159, 33, 182909, (8,30,0): 175, 47, 0, 0, 47, 184, 184, 163, 185, 183009, (8,31,0): 176, 47, 0, 0, 47, 142, 142, 142, 79, 183109, (8,32,0): 176, 48, 0, 0, 47, 135, 135, 159, 79, 183209, (8,33,0): 176, 49, 0, 0, 47, 132, 132, 60, 18, 183309, (8,34,0): 176, 51, 0, 0, 47, 139, 139, 163, 79, 183409, (8,35,0): 176, 52, 0, 0, 48, 170, 170, 196, 186, 183509, (8,36,0): 176, 47, 0, 0, 48, 209, 209, 163, 49, 183609, (8,37,0): 176, 47, 0, 0, 49, 226, 226, 127, 220, 183709, (8,38,0): 176, 47, 0, 0, 49, 229, 229, 68, 220, 183809, (8,39,0): 176, 47, 0, 0, 50, 240, 240, 112, 104, 183909, (8,40,0): 175, 47, 0, 0, 49, 239, 239, 159, 104, 184009, (8,41,0): 174, 47, 0, 0, 49, 226, 226, 68, 27, 184109, (8,42,0): 175, 47, 0, 0, 49, 216, 216, 167, 242, 184209, (8,43,0): 173, 47, 0, 0, 49, 209, 209, 98, 242, 184309, (8,44,0): 171, 47, 0, 0, 49, 209, 209, 255, 242, 184409, (8,45,0): 170, 47, 0, 0, 49, 219, 219, 255, 246, 184509, (8,46,0): 172, 47, 0, 0, 49, 233, 233, 13, 15, 184609, (8,47,0): 173, 46, 0, 0, 49, 235, 235, 150, 25, 184709, (8,48,0): 174, 46, 0, 0, 48, 238, 238, 13, 95, 184809, (8,49,0): 175, 45, 0, 0, 49, 239, 239, 65, 214, 184909, (9,0,0): 170, 24, 0, 0, 44, 173, 173, 139, 237, 190009, (9,1,0): 168, 24, 0, 0, 44, 168, 168, 35, 20, 190109, (9,2,0): 169, 24, 0, 0, 44, 166, 166, 201, 233, 190209, (9,3,0): 171, 24, 0, 0, 44, 175, 175, 119, 84, 190309, (9,4,0): 174, 25, 0, 0, 45, 188, 188, 55, 192, 190409, (9,5,0): 176, 27, 0, 0, 45, 195, 195, 201, 241, 190509, (9,6,0): 177, 27, 0, 0, 46, 196, 196, 119, 232, 190609, (9,7,0): 176, 27, 0, 0, 46, 193, 193, 55, 79, 190709, (9,8,0): 177, 28, 0, 0, 47, 203, 203, 120, 35, 190809, (9,9,0): 177, 28, 0, 0, 46, 213, 213, 103, 18, 190909, (9,10,0): 177, 29, 0, 0, 48, 221, 221, 194, 33, 191009, (9,11,0): 177, 29, 0, 0, 48, 232, 232, 163, 33, 191109, (9,12,0): 176, 30, 0, 0, 47, 245, 245, 194, 72, 191209, (9,13,0): 173, 30, 0, 0, 47, 253, 253, 60, 128, 191309, (9,14,0): 173, 30, 0, 0, 47, 252, 252, 103, 35, 191409, (9,15,0): 176, 30, 0, 0, 47, 233, 233, 6, 79, 191509, (9,16,0): 176, 30, 0, 0, 46, 227, 227, 113, 79, 191609, (9,17,0): 177, 30, 0, 0, 46, 220, 220, 103, 18, 191709, (9,18,0): 177, 30, 0, 0, 46, 217, 217, 194, 72, 191809, (9,19,0): 177, 30, 0, 0, 46, 220, 220, 192, 72, 191909, (9,20,0): 177, 32, 0, 0, 47, 223, 223, 59, 195, 192009, (9,21,0): 176, 32, 0, 0, 47, 229, 229, 196, 49, 192109, (9,22,0): 176, 33, 0, 0, 47, 228, 228, 102, 72, 192209, (9,23,0): 176, 35, 0, 0, 47, 215, 215, 76, 72, 192309, (9,24,0): 175, 38, 0, 0, 47, 212, 212, 254, 49, 192409, (9,25,0): 174, 40, 0, 0, 47, 207, 207, 102, 63, 192509, (9,26,0): 172, 41, 0, 0, 47, 206, 206, 102, 93, 192609, (9,27,0): 172, 41, 0, 0, 47, 196, 196, 101, 104, 192709, (9,28,0): 174, 46, 0, 0, 47, 187, 187, 102, 234, 192809, (9,29,0): 175, 47, 0, 0, 47, 199, 199, 250, 55, 192909, (9,30,0): 176, 48, 0, 0, 47, 210, 210, 163, 232, 193009, (9,31,0): 176, 49, 0, 0, 47, 166, 166, 163, 245, 193109, (9,32,0): 176, 49, 0, 0, 47, 143, 143, 163, 35, 193209, (9,33,0): 176, 50, 0, 0, 47, 139, 139, 250, 221, 193309, (9,34,0): 176, 52, 0, 0, 47, 164, 164, 163, 18, 193409, (9,35,0): 176, 52, 0, 0, 48, 203, 203, 196, 116, 193509, (9,36,0): 176, 47, 0, 0, 48, 224, 224, 163, 195, 193609, (9,37,0): 176, 47, 0, 0, 48, 232, 232, 218, 14, 193709, (9,38,0): 176, 47, 0, 0, 49, 233, 233, 159, 181, 193809, (9,39,0): 175, 47, 0, 0, 49, 246, 246, 112, 100, 193909, (9,40,0): 175, 47, 0, 0, 49, 238, 238, 159, 100, 194009, (9,41,0): 174, 47, 0, 0, 49, 225, 225, 164, 180, 194109, (9,42,0): 172, 47, 0, 0, 49, 213, 213, 98, 27, 194209, (9,43,0): 171, 47, 0, 0, 49, 202, 202, 112, 249, 194309, (9,44,0): 171, 46, 0, 0, 49, 200, 200, 67, 178, 194409, (9,45,0): 172, 46, 0, 0, 49, 211, 211, 112, 95, 194509, (9,46,0): 173, 46, 0, 0, 49, 229, 229, 167, 226, 194609, (9,47,0): 175, 45, 0, 0, 49, 240, 240, 255, 249, 194709, (9,48,0): 175, 45, 0, 0, 48, 245, 245, 69, 89, 194809, (9,49,0): 175, 44, 0, 0, 48, 251, 251, 244, 214, 194909, (10,0,0): 171, 25, 0, 0, 44, 168, 168, 117, 58, 200009, (10,1,0): 171, 25, 0, 0, 44, 169, 169, 201, 20, 200109, (10,2,0): 172, 25, 0, 0, 44, 172, 172, 201, 204, 200209, (10,3,0): 174, 25, 0, 0, 44, 187, 187, 119, 231, 200309, (10,4,0): 176, 28, 0, 0, 44, 198, 198, 55, 231, 200409, (10,5,0): 176, 28, 0, 0, 44, 197, 197, 201, 241, 200509, (10,6,0): 176, 28, 0, 0, 45, 188, 188, 55, 33, 200609, (10,7,0): 177, 28, 0, 0, 45, 188, 188, 120, 35, 200709, (10,8,0): 177, 28, 0, 0, 46, 201, 201, 120, 35, 200809, (10,9,0): 176, 28, 0, 0, 46, 218, 218, 71, 195, 200909, (10,10,0): 176, 29, 0, 0, 46, 227, 227, 113, 72, 201009, (10,11,0): 174, 29, 0, 0, 45, 238, 238, 219, 33, 201109, (10,12,0): 173, 30, 0, 0, 47, 246, 246, 76, 204, 201209, (10,13,0): 173, 30, 0, 0, 46, 249, 249, 251, 79, 201309, (10,14,0): 176, 30, 0, 0, 46, 247, 247, 76, 128, 201409, (10,15,0): 177, 30, 0, 0, 46, 246, 246, 113, 221, 201509, (10,16,0): 177, 30, 0, 0, 44, 241, 241, 107, 18, 201609, (10,17,0): 177, 30, 0, 0, 44, 236, 236, 113, 49, 201709, (10,18,0): 176, 30, 0, 0, 44, 232, 232, 113, 66, 201809, (10,19,0): 176, 30, 0, 0, 44, 227, 227, 102, 195, 201909, (10,20,0): 176, 31, 0, 0, 43, 226, 226, 142, 156, 202009, (10,21,0): 176, 31, 0, 0, 43, 225, 225, 196, 49, 202109, (10,22,0): 175, 33, 0, 0, 43, 222, 222, 250, 186, 202209, (10,23,0): 175, 35, 0, 0, 43, 222, 222, 76, 49, 202309, (10,24,0): 175, 38, 0, 0, 45, 207, 207, 76, 18, 202409, (10,25,0): 175, 40, 0, 0, 45, 219, 219, 102, 234, 202509, (10,26,0): 175, 42, 0, 0, 45, 205, 205, 159, 2, 202609, (10,27,0): 175, 42, 0, 0, 45, 199, 199, 94, 187, 202709, (10,28,0): 175, 47, 0, 0, 45, 194, 194, 94, 100, 202809, (10,29,0): 175, 47, 0, 0, 45, 179, 179, 163, 18, 202909, (10,30,0): 176, 49, 0, 0, 45, 209, 209, 163, 33, 203009, (10,31,0): 176, 50, 0, 0, 45, 191, 191, 163, 66, 203109, (10,32,0): 176, 51, 0, 0, 44, 165, 165, 163, 204, 203209, (10,33,0): 175, 51, 0, 0, 44, 170, 170, 196, 195, 203309, (10,34,0): 175, 53, 0, 0, 45, 205, 205, 196, 14, 203409, (10,35,0): 176, 52, 0, 0, 45, 232, 232, 196, 100, 203509, (10,36,0): 176, 47, 0, 0, 45, 231, 231, 196, 156, 203609, (10,37,0): 176, 47, 0, 0, 46, 235, 235, 127, 14, 203709, (10,38,0): 176, 47, 0, 0, 46, 246, 246, 98, 63, 203809, (10,39,0): 176, 47, 0, 0, 46, 237, 237, 158, 181, 203909, (10,40,0): 175, 47, 0, 0, 46, 227, 227, 112, 2, 204009, (10,41,0): 174, 47, 0, 0, 46, 215, 215, 68, 252, 204109, (10,42,0): 171, 47, 0, 0, 46, 207, 207, 112, 8, 204209, (10,43,0): 170, 47, 0, 0, 47, 195, 195, 68, 178, 204309, (10,44,0): 171, 46, 0, 0, 47, 185, 185, 166, 214, 204409, (10,45,0): 174, 45, 0, 0, 47, 187, 187, 67, 214, 204509, (10,46,0): 175, 45, 0, 0, 47, 199, 199, 68, 178, 204609, (10,47,0): 176, 44, 0, 0, 47, 229, 229, 167, 89, 204709, (10,48,0): 176, 44, 0, 0, 48, 234, 234, 85, 214, 204809, (10,49,0): 175, 43, 0, 0, 48, 242, 242, 69, 214, 204909, (11,0,0): 173, 26, 0, 0, 45, 171, 171, 35, 228, 210009, (11,1,0): 173, 26, 0, 0, 45, 173, 173, 201, 20, 210109, (11,2,0): 174, 26, 0, 0, 45, 179, 179, 119, 20, 210209, (11,3,0): 176, 26, 0, 0, 45, 189, 189, 119, 219, 210309, (11,4,0): 176, 29, 0, 0, 45, 196, 196, 201, 38, 210409, (11,5,0): 176, 29, 0, 0, 45, 192, 192, 119, 241, 210509, (11,6,0): 177, 29, 0, 0, 46, 184, 184, 113, 236, 210609, (11,7,0): 177, 29, 0, 0, 46, 199, 199, 125, 79, 210709, (11,8,0): 177, 29, 0, 0, 46, 203, 203, 113, 33, 210809, (11,9,0): 175, 29, 0, 0, 46, 207, 207, 219, 232, 210909, (11,10,0): 173, 28, 0, 0, 45, 213, 213, 113, 79, 211009, (11,11,0): 173, 28, 0, 0, 45, 219, 219, 113, 33, 211109, (11,12,0): 174, 30, 0, 0, 46, 225, 225, 76, 116, 211209, (11,13,0): 177, 30, 0, 0, 46, 231, 231, 113, 66, 211309, (11,14,0): 178, 30, 0, 0, 46, 237, 237, 113, 232, 211409, (11,15,0): 178, 30, 0, 0, 46, 240, 240, 103, 33, 211509, (11,16,0): 178, 30, 0, 0, 44, 242, 242, 102, 72, 211609, (11,17,0): 177, 30, 0, 0, 43, 242, 242, 251, 195, 211709, (11,18,0): 177, 30, 0, 0, 43, 239, 239, 71, 195, 211809, (11,19,0): 176, 30, 0, 0, 43, 234, 234, 71, 49, 211909, (11,20,0): 175, 31, 0, 0, 43, 227, 227, 76, 156, 212009, (11,21,0): 176, 31, 0, 0, 42, 221, 221, 102, 195, 212109, (11,22,0): 175, 33, 0, 0, 42, 218, 218, 251, 186, 212209, (11,23,0): 175, 35, 0, 0, 42, 219, 219, 76, 116, 212309, (11,24,0): 175, 38, 0, 0, 44, 212, 212, 76, 116, 212409, (11,25,0): 175, 40, 0, 0, 44, 207, 207, 254, 195, 212509, (11,26,0): 175, 42, 0, 0, 44, 206, 206, 153, 63, 212609, (11,27,0): 176, 42, 0, 0, 44, 197, 197, 110, 28, 212709, (11,28,0): 176, 46, 0, 0, 44, 190, 190, 110, 14, 212809, (11,29,0): 176, 47, 0, 0, 44, 194, 194, 142, 14, 212909, (11,30,0): 176, 50, 0, 0, 44, 207, 207, 196, 24, 213009, (11,31,0): 176, 51, 0, 0, 44, 200, 200, 159, 24, 213109, (11,32,0): 176, 52, 0, 0, 44, 207, 207, 110, 108, 213209, (11,33,0): 176, 51, 0, 0, 44, 225, 225, 188, 100, 213309, (11,34,0): 176, 52, 0, 0, 44, 238, 238, 188, 180, 213409, (11,35,0): 176, 51, 0, 0, 44, 240, 240, 127, 180, 213509, (11,36,0): 176, 47, 0, 0, 44, 237, 237, 110, 100, 213609, (11,37,0): 176, 47, 0, 0, 45, 243, 243, 247, 220, 213709, (11,38,0): 176, 47, 0, 0, 45, 248, 248, 162, 108, 213809, (11,39,0): 175, 47, 0, 0, 45, 235, 235, 165, 104, 213909, (11,40,0): 172, 47, 0, 0, 45, 225, 225, 94, 175, 214009, (11,41,0): 170, 47, 0, 0, 46, 214, 214, 68, 99, 214109, (11,42,0): 169, 47, 0, 0, 46, 201, 201, 112, 178, 214209, (11,43,0): 170, 47, 0, 0, 46, 187, 187, 68, 214, 214309, (11,44,0): 173, 46, 0, 0, 46, 179, 179, 164, 214, 214409, (11,45,0): 176, 45, 0, 0, 47, 177, 177, 68, 214, 214509, (11,46,0): 176, 45, 0, 0, 47, 180, 180, 112, 214, 214609, (11,47,0): 176, 44, 0, 0, 47, 202, 202, 68, 178, 214709, (11,48,0): 176, 44, 0, 0, 47, 212, 212, 167, 214, 214809, (11,49,0): 174, 43, 0, 0, 48, 222, 222, 158, 214, 214909, (12,0,0): 173, 25, 0, 0, 43, 171, 171, 201, 233, 220009, (12,1,0): 173, 25, 0, 0, 43, 177, 177, 119, 38, 220109, (12,2,0): 175, 25, 0, 0, 43, 191, 191, 201, 62, 220209, (12,3,0): 176, 26, 0, 0, 43, 198, 198, 55, 71, 220309, (12,4,0): 177, 30, 0, 0, 45, 193, 193, 55, 71, 220409, (12,5,0): 177, 30, 0, 0, 45, 188, 188, 120, 204, 220509, (12,6,0): 178, 30, 0, 0, 46, 192, 192, 219, 79, 220609, (12,7,0): 178, 30, 0, 0, 46, 203, 203, 103, 79, 220709, (12,8,0): 178, 29, 0, 0, 45, 207, 207, 103, 66, 220809, (12,9,0): 176, 29, 0, 0, 45, 208, 208, 194, 79, 220909, (12,10,0): 175, 28, 0, 0, 46, 209, 209, 101, 66, 221009, (12,11,0): 176, 28, 0, 0, 45, 212, 212, 194, 18, 221109, (12,12,0): 178, 30, 0, 0, 45, 216, 216, 196, 79, 221209, (12,13,0): 179, 30, 0, 0, 44, 224, 224, 250, 241, 221309, (12,14,0): 178, 30, 0, 0, 44, 231, 231, 251, 72, 221409, (12,15,0): 178, 30, 0, 0, 44, 238, 238, 254, 33, 221509, (12,16,0): 178, 30, 0, 0, 44, 244, 244, 62, 186, 221609, (12,17,0): 178, 30, 0, 0, 44, 244, 244, 102, 79, 221709, (12,18,0): 177, 30, 0, 0, 44, 241, 241, 76, 33, 221809, (12,19,0): 176, 30, 0, 0, 43, 234, 234, 113, 186, 221909, (12,20,0): 176, 32, 0, 0, 43, 225, 225, 219, 72, 222009, (12,21,0): 176, 32, 0, 0, 42, 215, 215, 145, 72, 222109, (12,22,0): 175, 33, 0, 0, 42, 213, 213, 120, 195, 222209, (12,23,0): 175, 35, 0, 0, 42, 222, 222, 107, 72, 222309, (12,24,0): 175, 38, 0, 0, 44, 217, 217, 103, 116, 222409, (12,25,0): 176, 40, 0, 0, 44, 213, 213, 251, 186, 222509, (12,26,0): 177, 41, 0, 0, 44, 212, 212, 102, 66, 222609, (12,27,0): 177, 41, 0, 0, 44, 204, 204, 163, 100, 222709, (12,28,0): 177, 44, 0, 0, 44, 193, 193, 163, 180, 222809, (12,29,0): 176, 46, 0, 0, 44, 196, 196, 159, 187, 222909, (12,30,0): 176, 49, 0, 0, 44, 207, 207, 196, 93, 223009, (12,31,0): 176, 51, 0, 0, 44, 209, 209, 142, 180, 223109, (12,32,0): 176, 52, 0, 0, 44, 218, 218, 198, 63, 223209, (12,33,0): 176, 51, 0, 0, 44, 233, 233, 189, 28, 223309, (12,34,0): 176, 51, 0, 0, 44, 243, 243, 165, 63, 223409, (12,35,0): 176, 50, 0, 0, 44, 244, 244, 110, 108, 223509, (12,36,0): 176, 47, 0, 0, 44, 240, 240, 94, 14, 223609, (12,37,0): 176, 47, 0, 0, 43, 245, 245, 94, 63, 223709, (12,38,0): 175, 47, 0, 0, 43, 248, 248, 98, 51, 223809, (12,39,0): 171, 47, 0, 0, 43, 229, 229, 122, 2, 223909, (12,40,0): 169, 47, 0, 0, 44, 218, 218, 98, 175, 224009, (12,41,0): 169, 47, 0, 0, 45, 210, 210, 127, 216, 224109, (12,42,0): 170, 47, 0, 0, 45, 197, 197, 112, 214, 224209, (12,43,0): 173, 47, 0, 0, 46, 183, 183, 68, 214, 224309, (12,44,0): 175, 46, 0, 0, 46, 174, 174, 112, 214, 224409, (12,45,0): 175, 46, 0, 0, 47, 170, 170, 164, 214, 224509, (12,46,0): 175, 46, 0, 0, 47, 171, 171, 68, 214, 224609, (12,47,0): 176, 45, 0, 0, 47, 182, 182, 68, 248, 224709, (12,48,0): 176, 45, 0, 0, 47, 198, 198, 159, 89, 224809, (12,49,0): 174, 44, 0, 0, 48, 212, 212, 112, 89, 224909, (13,0,0): 174, 25, 0, 0, 44, 176, 176, 119, 228, 230009, (13,1,0): 175, 25, 0, 0, 44, 185, 185, 119, 76, 230109, (13,2,0): 176, 25, 0, 0, 44, 203, 203, 55, 194, 230209, (13,3,0): 177, 26, 0, 0, 44, 203, 203, 55, 233, 230309, (13,4,0): 177, 32, 0, 0, 46, 188, 188, 55, 204, 230409, (13,5,0): 177, 32, 0, 0, 46, 186, 186, 120, 18, 230509, (13,6,0): 177, 32, 0, 0, 47, 201, 201, 103, 71, 230609, (13,7,0): 177, 31, 0, 0, 47, 208, 208, 76, 18, 230709, (13,8,0): 177, 30, 0, 0, 46, 212, 212, 251, 14, 230809, (13,9,0): 178, 30, 0, 0, 46, 212, 212, 74, 24, 230909, (13,10,0): 179, 29, 0, 0, 47, 214, 214, 142, 104, 231009, (13,11,0): 179, 29, 0, 0, 46, 216, 216, 196, 24, 231109, (13,12,0): 180, 31, 0, 0, 46, 220, 220, 188, 241, 231209, (13,13,0): 179, 31, 0, 0, 46, 227, 227, 58, 66, 231309, (13,14,0): 178, 31, 0, 0, 45, 232, 232, 250, 100, 231409, (13,15,0): 178, 31, 0, 0, 45, 240, 240, 103, 79, 231509, (13,16,0): 178, 31, 0, 0, 45, 244, 244, 76, 79, 231609, (13,17,0): 178, 31, 0, 0, 45, 244, 244, 113, 128, 231709, (13,18,0): 177, 31, 0, 0, 45, 240, 240, 71, 128, 231809, (13,19,0): 177, 31, 0, 0, 44, 231, 231, 120, 186, 231909, (13,20,0): 177, 34, 0, 0, 43, 221, 221, 120, 116, 232009, (13,21,0): 176, 34, 0, 0, 42, 212, 212, 113, 186, 232109, (13,22,0): 175, 34, 0, 0, 42, 210, 210, 145, 156, 232209, (13,23,0): 175, 35, 0, 0, 42, 221, 221, 113, 220, 232309, (13,24,0): 175, 38, 0, 0, 43, 220, 220, 251, 195, 232409, (13,25,0): 176, 39, 0, 0, 43, 218, 218, 254, 33, 232509, (13,26,0): 177, 39, 0, 0, 43, 218, 218, 251, 18, 232609, (13,27,0): 177, 39, 0, 0, 43, 211, 211, 74, 220, 232709, (13,28,0): 177, 43, 0, 0, 43, 200, 200, 94, 187, 232809, (13,29,0): 176, 45, 0, 0, 43, 197, 197, 142, 51, 232909, (13,30,0): 176, 48, 0, 0, 43, 203, 203, 101, 187, 233009, (13,31,0): 176, 51, 0, 0, 43, 201, 201, 102, 51, 233109, (13,32,0): 176, 51, 0, 0, 44, 205, 205, 163, 207, 233209, (13,33,0): 176, 50, 0, 0, 44, 217, 217, 247, 187, 233309, (13,34,0): 176, 50, 0, 0, 43, 229, 229, 142, 180, 233409, (13,35,0): 176, 48, 0, 0, 43, 234, 234, 163, 14, 233509, (13,36,0): 176, 47, 0, 0, 43, 233, 233, 94, 241, 233609, (13,37,0): 176, 47, 0, 0, 42, 236, 236, 94, 14, 233709, (13,38,0): 174, 47, 0, 0, 42, 235, 235, 162, 2, 233809, (13,39,0): 170, 47, 0, 0, 42, 222, 222, 29, 51, 233909, (13,40,0): 168, 47, 0, 0, 44, 213, 213, 197, 70, 234009, (13,41,0): 171, 47, 0, 0, 44, 205, 205, 98, 99, 234109, (13,42,0): 174, 47, 0, 0, 44, 194, 194, 247, 178, 234209, (13,43,0): 175, 47, 0, 0, 45, 182, 182, 127, 178, 234309, (13,44,0): 175, 47, 0, 0, 46, 174, 174, 112, 89, 234409, (13,45,0): 175, 47, 0, 0, 46, 171, 171, 112, 89, 234509, (13,46,0): 175, 47, 0, 0, 47, 172, 172, 112, 214, 234609, (13,47,0): 175, 46, 0, 0, 47, 172, 172, 68, 214, 234709, (13,48,0): 175, 46, 0, 0, 47, 192, 192, 68, 214, 234809, (13,49,0): 173, 45, 0, 0, 47, 212, 212, 127, 248, 234909, (14,0,0): 176, 24, 0, 0, 44, 185, 185, 55, 237, 240009, (14,1,0): 177, 24, 0, 0, 44, 196, 196, 201, 194, 240109, (14,2,0): 176, 24, 0, 0, 44, 203, 203, 119, 7, 240209, (14,3,0): 176, 25, 0, 0, 44, 200, 200, 120, 28, 240309, (14,4,0): 176, 32, 0, 0, 46, 190, 190, 145, 233, 240409, (14,5,0): 177, 33, 0, 0, 46, 192, 192, 120, 236, 240509, (14,6,0): 177, 32, 0, 0, 46, 205, 205, 113, 66, 240609, (14,7,0): 177, 31, 0, 0, 46, 214, 214, 251, 204, 240709, (14,8,0): 178, 30, 0, 0, 47, 216, 216, 102, 14, 240809, (14,9,0): 178, 30, 0, 0, 47, 218, 218, 103, 93, 240909, (14,10,0): 179, 29, 0, 0, 47, 219, 219, 102, 242, 241009, (14,11,0): 179, 29, 0, 0, 47, 222, 222, 163, 99, 241109, (14,12,0): 179, 31, 0, 0, 47, 225, 225, 110, 27, 241209, (14,13,0): 179, 31, 0, 0, 47, 230, 230, 47, 204, 241309, (14,14,0): 178, 31, 0, 0, 46, 236, 236, 84, 241, 241409, (14,15,0): 178, 31, 0, 0, 46, 243, 243, 196, 79, 241509, (14,16,0): 177, 31, 0, 0, 47, 244, 244, 113, 186, 241609, (14,17,0): 177, 31, 0, 0, 46, 244, 244, 201, 79, 241709, (14,18,0): 177, 31, 0, 0, 46, 239, 239, 219, 221, 241809, (14,19,0): 177, 31, 0, 0, 45, 228, 228, 251, 72, 241909, (14,20,0): 177, 35, 0, 0, 44, 219, 219, 113, 185, 242009, (14,21,0): 177, 35, 0, 0, 43, 210, 210, 113, 221, 242109, (14,22,0): 176, 35, 0, 0, 43, 208, 208, 71, 156, 242209, (14,23,0): 175, 35, 0, 0, 42, 215, 215, 113, 50, 242309, (14,24,0): 176, 38, 0, 0, 43, 218, 218, 103, 14, 242409, (14,25,0): 177, 38, 0, 0, 43, 218, 218, 103, 195, 242509, (14,26,0): 177, 38, 0, 0, 43, 220, 220, 251, 18, 242609, (14,27,0): 177, 38, 0, 0, 43, 214, 214, 102, 66, 242709, (14,28,0): 177, 41, 0, 0, 43, 208, 208, 194, 28, 242809, (14,29,0): 176, 44, 0, 0, 43, 205, 205, 163, 180, 242909, (14,30,0): 176, 48, 0, 0, 43, 210, 210, 102, 231, 243009, (14,31,0): 176, 50, 0, 0, 43, 196, 196, 102, 51, 243109, (14,32,0): 176, 51, 0, 0, 43, 197, 197, 163, 51, 243209, (14,33,0): 177, 49, 0, 0, 43, 202, 202, 196, 187, 243309, (14,34,0): 177, 49, 0, 0, 43, 216, 216, 163, 207, 243409, (14,35,0): 176, 47, 0, 0, 42, 226, 226, 196, 153, 243509, (14,36,0): 176, 47, 0, 0, 42, 229, 229, 196, 180, 243609, (14,37,0): 176, 47, 0, 0, 42, 222, 222, 94, 28, 243709, (14,38,0): 175, 47, 0, 0, 41, 214, 214, 122, 231, 243809, (14,39,0): 171, 47, 0, 0, 41, 211, 211, 189, 28, 243909, (14,40,0): 170, 47, 0, 0, 43, 206, 206, 29, 63, 244009, (14,41,0): 173, 47, 0, 0, 43, 199, 199, 122, 24, 244109, (14,42,0): 175, 47, 0, 0, 44, 190, 190, 109, 93, 244209, (14,43,0): 175, 47, 0, 0, 45, 181, 181, 112, 226, 244309, (14,44,0): 175, 48, 0, 0, 46, 176, 176, 127, 37, 244409, (14,45,0): 175, 48, 0, 0, 46, 175, 175, 247, 214, 244509, (14,46,0): 175, 48, 0, 0, 47, 177, 177, 127, 214, 244609, (14,47,0): 174, 47, 0, 0, 47, 172, 172, 200, 214, 244709, (14,48,0): 174, 47, 0, 0, 47, 189, 189, 159, 214, 244809, (14,49,0): 173, 46, 0, 0, 47, 209, 209, 247, 89, 244909, (15,0,0): 178, 25, 0, 0, 46, 199, 199, 55, 20, 250009, (15,1,0): 177, 26, 0, 0, 44, 205, 205, 119, 229, 250109, (15,2,0): 177, 28, 0, 0, 46, 197, 197, 55, 229, 250209, (15,3,0): 176, 29, 0, 0, 46, 193, 193, 120, 15, 250309, (15,4,0): 176, 35, 0, 0, 46, 198, 198, 145, 233, 250409, (15,5,0): 176, 37, 0, 0, 46, 203, 203, 219, 62, 250509, (15,6,0): 177, 37, 0, 0, 46, 207, 207, 251, 71, 250609, (15,7,0): 177, 36, 0, 0, 47, 219, 219, 103, 185, 250709, (15,8,0): 178, 36, 0, 0, 48, 223, 223, 76, 241, 250809, (15,9,0): 178, 36, 0, 0, 48, 225, 225, 113, 180, 250909, (15,10,0): 178, 36, 0, 0, 48, 226, 226, 76, 70, 251009, (15,11,0): 178, 35, 0, 0, 48, 227, 227, 31, 178, 251109, (15,12,0): 178, 31, 0, 0, 48, 231, 231, 196, 214, 251209, (15,13,0): 178, 32, 0, 0, 48, 236, 236, 74, 252, 251309, (15,14,0): 178, 32, 0, 0, 47, 240, 240, 163, 232, 251409, (15,15,0): 178, 33, 0, 0, 49, 245, 245, 60, 185, 251509, (15,16,0): 177, 34, 0, 0, 50, 246, 246, 251, 79, 251609, (15,17,0): 177, 34, 0, 0, 49, 242, 242, 113, 232, 251709, (15,18,0): 177, 35, 0, 0, 49, 236, 236, 145, 128, 251809, (15,19,0): 177, 35, 0, 0, 48, 226, 226, 71, 33, 251909, (15,20,0): 177, 33, 0, 0, 47, 217, 217, 103, 221, 252009, (15,21,0): 177, 34, 0, 0, 44, 208, 208, 120, 186, 252109, (15,22,0): 176, 34, 0, 0, 43, 207, 207, 71, 186, 252209, (15,23,0): 177, 34, 0, 0, 43, 214, 214, 113, 156, 252309, (15,24,0): 177, 36, 0, 0, 43, 217, 217, 103, 195, 252409, (15,25,0): 177, 37, 0, 0, 43, 216, 216, 251, 18, 252509, (15,26,0): 177, 37, 0, 0, 43, 216, 216, 103, 195, 252609, (15,27,0): 177, 37, 0, 0, 43, 215, 215, 251, 100, 252709, (15,28,0): 177, 43, 0, 0, 43, 212, 212, 102, 28, 252809, (15,29,0): 177, 44, 0, 0, 43, 214, 214, 102, 28, 252909, (15,30,0): 177, 46, 0, 0, 43, 216, 216, 102, 14, 253009, (15,31,0): 177, 47, 0, 0, 43, 214, 214, 194, 24, 253109, (15,32,0): 176, 48, 0, 0, 43, 205, 205, 163, 24, 253209, (15,33,0): 177, 49, 0, 0, 43, 201, 201, 194, 207, 253309, (15,34,0): 176, 51, 0, 0, 45, 203, 203, 163, 192, 253409, (15,35,0): 176, 52, 0, 0, 42, 214, 214, 196, 252, 253509, (15,36,0): 176, 49, 0, 0, 44, 217, 217, 162, 24, 253609, (15,37,0): 175, 49, 0, 0, 41, 210, 210, 198, 28, 253709, (15,38,0): 174, 49, 0, 0, 41, 197, 197, 122, 100, 253809, (15,39,0): 173, 49, 0, 0, 40, 197, 197, 189, 100, 253909, (15,40,0): 174, 49, 0, 0, 42, 194, 194, 56, 60, 254009, (15,41,0): 176, 49, 0, 0, 43, 192, 192, 56, 24, 254109, (15,42,0): 176, 49, 0, 0, 44, 186, 186, 122, 187, 254209, (15,43,0): 176, 49, 0, 0, 44, 183, 183, 165, 192, 254309, (15,44,0): 175, 47, 0, 0, 45, 180, 180, 109, 175, 254409, (15,45,0): 175, 47, 0, 0, 46, 182, 182, 98, 226, 254509, (15,46,0): 174, 46, 0, 0, 47, 185, 185, 112, 37, 254609, (15,47,0): 173, 46, 0, 0, 47, 181, 181, 164, 214, 254709, (15,48,0): 172, 45, 0, 0, 45, 191, 191, 159, 214, 254809, (15,49,0): 172, 45, 0, 0, 45, 201, 201, 162, 214, 254909, (16,0,0): 178, 25, 0, 0, 47, 209, 209, 120, 60, 260009, (16,1,0): 178, 27, 0, 0, 46, 208, 208, 120, 23, 260109, (16,2,0): 177, 28, 0, 0, 47, 195, 195, 145, 84, 260209, (16,3,0): 176, 29, 0, 0, 48, 195, 195, 145, 207, 260309, (16,4,0): 176, 35, 0, 0, 48, 208, 208, 120, 62, 260409, (16,5,0): 176, 37, 0, 0, 48, 214, 214, 113, 219, 260509, (16,6,0): 176, 37, 0, 0, 49, 211, 211, 113, 204, 260609, (16,7,0): 177, 37, 0, 0, 50, 224, 224, 113, 204, 260709, (16,8,0): 177, 37, 0, 0, 51, 228, 228, 76, 38, 260809, (16,9,0): 178, 36, 0, 0, 52, 231, 231, 76, 14, 260909, (16,10,0): 178, 36, 0, 0, 52, 232, 232, 60, 84, 261009, (16,11,0): 178, 36, 0, 0, 54, 234, 234, 188, 178, 261109, (16,12,0): 178, 33, 0, 0, 53, 237, 237, 59, 178, 261209, (16,13,0): 178, 33, 0, 0, 52, 240, 240, 189, 207, 261309, (16,14,0): 178, 34, 0, 0, 51, 243, 243, 23, 55, 261409, (16,15,0): 178, 34, 0, 0, 52, 246, 246, 113, 232, 261509, (16,16,0): 177, 34, 0, 0, 53, 245, 245, 145, 232, 261609, (16,17,0): 177, 34, 0, 0, 53, 241, 241, 71, 33, 261709, (16,18,0): 177, 35, 0, 0, 52, 236, 236, 113, 119, 261809, (16,19,0): 177, 35, 0, 0, 51, 225, 225, 185, 128, 261909, (16,20,0): 177, 33, 0, 0, 50, 218, 218, 145, 79, 262009, (16,21,0): 176, 33, 0, 0, 49, 209, 209, 125, 79, 262109, (16,22,0): 176, 34, 0, 0, 48, 208, 208, 71, 185, 262209, (16,23,0): 177, 34, 0, 0, 48, 216, 216, 113, 241, 262309, (16,24,0): 177, 37, 0, 0, 46, 217, 217, 125, 66, 262409, (16,25,0): 177, 38, 0, 0, 46, 214, 214, 76, 66, 262509, (16,26,0): 177, 38, 0, 0, 45, 213, 213, 103, 14, 262609, (16,27,0): 177, 39, 0, 0, 45, 213, 213, 102, 28, 262709, (16,28,0): 177, 44, 0, 0, 44, 212, 212, 194, 180, 262809, (16,29,0): 177, 44, 0, 0, 43, 212, 212, 194, 231, 262909, (16,30,0): 177, 46, 0, 0, 42, 214, 214, 194, 24, 263009, (16,31,0): 176, 47, 0, 0, 41, 236, 236, 101, 207, 263109, (16,32,0): 175, 48, 0, 0, 46, 225, 225, 194, 58, 263209, (16,33,0): 174, 49, 0, 0, 46, 211, 211, 163, 192, 263309, (16,34,0): 173, 52, 0, 0, 47, 204, 204, 196, 93, 263409, (16,35,0): 174, 52, 0, 0, 46, 202, 202, 94, 15, 263509, (16,36,0): 175, 49, 0, 0, 47, 204, 204, 198, 142, 263609, (16,37,0): 174, 49, 0, 0, 46, 200, 200, 165, 74, 263709, (16,38,0): 173, 49, 0, 0, 46, 192, 192, 122, 153, 263809, (16,39,0): 174, 49, 0, 0, 46, 188, 188, 29, 142, 263909, (16,40,0): 176, 49, 0, 0, 47, 188, 188, 189, 58, 264009, (16,41,0): 176, 49, 0, 0, 47, 188, 188, 151, 192, 264109, (16,42,0): 176, 49, 0, 0, 45, 185, 185, 56, 192, 264209, (16,43,0): 176, 49, 0, 0, 46, 183, 183, 197, 246, 264309, (16,44,0): 176, 47, 0, 0, 45, 184, 184, 158, 25, 264409, (16,45,0): 175, 47, 0, 0, 45, 188, 188, 165, 249, 264509, (16,46,0): 174, 46, 0, 0, 46, 191, 191, 109, 89, 264609, (16,47,0): 172, 46, 0, 0, 46, 193, 193, 127, 214, 264709, (16,48,0): 171, 45, 0, 0, 45, 193, 193, 166, 214, 264809, (16,49,0): 170, 45, 0, 0, 45, 197, 197, 127, 214, 264909, (17,0,0): 178, 26, 0, 0, 47, 213, 213, 243, 84, 270009, (17,1,0): 178, 27, 0, 0, 48, 210, 210, 71, 237, 270109, (17,2,0): 177, 28, 0, 0, 48, 204, 204, 236, 84, 270209, (17,3,0): 177, 30, 0, 0, 48, 206, 206, 71, 74, 270309, (17,4,0): 176, 35, 0, 0, 49, 216, 216, 76, 62, 270409, (17,5,0): 176, 37, 0, 0, 49, 218, 218, 254, 71, 270509, (17,6,0): 176, 37, 0, 0, 50, 215, 215, 251, 38, 270609, (17,7,0): 176, 37, 0, 0, 51, 228, 228, 251, 125, 270709, (17,8,0): 177, 37, 0, 0, 52, 233, 233, 76, 185, 270809, (17,9,0): 177, 38, 0, 0, 52, 236, 236, 102, 204, 270909, (17,10,0): 177, 38, 0, 0, 55, 238, 238, 60, 231, 271009, (17,11,0): 178, 38, 0, 0, 55, 240, 240, 94, 242, 271109, (17,12,0): 177, 36, 0, 0, 54, 242, 242, 75, 25, 271209, (17,13,0): 178, 36, 0, 0, 53, 244, 244, 59, 24, 271309, (17,14,0): 178, 36, 0, 0, 53, 246, 246, 165, 55, 271409, (17,15,0): 177, 35, 0, 0, 53, 247, 247, 110, 33, 271509, (17,16,0): 177, 35, 0, 0, 55, 244, 244, 251, 55, 271609, (17,17,0): 177, 35, 0, 0, 55, 240, 240, 120, 33, 271709, (17,18,0): 176, 34, 0, 0, 54, 233, 233, 103, 119, 271809, (17,19,0): 176, 34, 0, 0, 54, 226, 226, 103, 119, 271909, (17,20,0): 175, 32, 0, 0, 51, 217, 217, 120, 33, 272009, (17,21,0): 175, 32, 0, 0, 50, 210, 210, 219, 33, 272109, (17,22,0): 176, 33, 0, 0, 48, 207, 207, 71, 186, 272209, (17,23,0): 176, 35, 0, 0, 48, 212, 212, 55, 156, 272309, (17,24,0): 177, 38, 0, 0, 48, 213, 213, 120, 100, 272409, (17,25,0): 177, 39, 0, 0, 47, 211, 211, 120, 180, 272509, (17,26,0): 177, 40, 0, 0, 47, 209, 209, 103, 24, 272609, (17,27,0): 176, 41, 0, 0, 45, 210, 210, 194, 24, 272709, (17,28,0): 176, 44, 0, 0, 45, 211, 211, 196, 24, 272809, (17,29,0): 176, 44, 0, 0, 43, 210, 210, 142, 207, 272909, (17,30,0): 175, 46, 0, 0, 41, 208, 208, 196, 192, 273009, (17,31,0): 175, 47, 0, 0, 41, 227, 227, 196, 15, 273109, (17,32,0): 174, 48, 0, 0, 46, 232, 232, 194, 246, 273209, (17,33,0): 171, 49, 0, 0, 47, 231, 231, 102, 84, 273309, (17,34,0): 170, 52, 0, 0, 47, 218, 218, 196, 198, 273409, (17,35,0): 172, 52, 0, 0, 47, 204, 204, 198, 84, 273509, (17,36,0): 175, 49, 0, 0, 47, 196, 196, 165, 237, 273609, (17,37,0): 176, 49, 0, 0, 47, 191, 191, 152, 58, 273709, (17,38,0): 176, 49, 0, 0, 46, 185, 185, 122, 58, 273809, (17,39,0): 176, 49, 0, 0, 46, 185, 185, 122, 246, 273909, (17,40,0): 177, 49, 0, 0, 47, 185, 185, 189, 188, 274009, (17,41,0): 177, 49, 0, 0, 47, 185, 185, 151, 246, 274109, (17,42,0): 176, 49, 0, 0, 46, 185, 185, 115, 188, 274209, (17,43,0): 176, 49, 0, 0, 46, 184, 184, 165, 70, 274309, (17,44,0): 176, 47, 0, 0, 46, 186, 186, 158, 229, 274409, (17,45,0): 175, 47, 0, 0, 46, 192, 192, 158, 95, 274509, (17,46,0): 174, 46, 0, 0, 46, 195, 195, 109, 89, 274609, (17,47,0): 171, 46, 0, 0, 46, 201, 201, 112, 214, 274709, (17,48,0): 170, 45, 0, 0, 46, 198, 198, 68, 214, 274809, (17,49,0): 168, 45, 0, 0, 46, 201, 201, 164, 214, 274909, (18,0,0): 178, 26, 0, 0, 49, 213, 213, 251, 189, 280009, (18,1,0): 178, 28, 0, 0, 49, 209, 209, 76, 45, 280109, (18,2,0): 177, 29, 0, 0, 49, 214, 214, 6, 15, 280209, (18,3,0): 177, 30, 0, 0, 49, 222, 222, 243, 74, 280309, (18,4,0): 177, 35, 0, 0, 50, 222, 222, 20, 194, 280409, (18,5,0): 176, 38, 0, 0, 50, 218, 218, 20, 204, 280509, (18,6,0): 176, 38, 0, 0, 52, 220, 220, 228, 233, 280609, (18,7,0): 176, 38, 0, 0, 52, 231, 231, 251, 219, 280709, (18,8,0): 176, 39, 0, 0, 53, 235, 235, 107, 233, 280809, (18,9,0): 177, 39, 0, 0, 53, 239, 239, 243, 38, 280909, (18,10,0): 177, 39, 0, 0, 56, 241, 241, 107, 38, 281009, (18,11,0): 178, 39, 0, 0, 56, 244, 244, 228, 207, 281109, (18,12,0): 177, 39, 0, 0, 56, 247, 247, 60, 229, 281209, (18,13,0): 177, 38, 0, 0, 55, 247, 247, 247, 84, 281309, (18,14,0): 177, 38, 0, 0, 55, 247, 247, 152, 100, 281409, (18,15,0): 177, 37, 0, 0, 54, 247, 247, 75, 62, 281509, (18,16,0): 177, 36, 0, 0, 56, 244, 244, 60, 241, 281609, (18,17,0): 177, 36, 0, 0, 56, 238, 238, 113, 219, 281709, (18,18,0): 176, 35, 0, 0, 55, 233, 233, 102, 125, 281809, (18,19,0): 175, 35, 0, 0, 54, 225, 225, 251, 33, 281909, (18,20,0): 175, 32, 0, 0, 52, 218, 218, 113, 79, 282009, (18,21,0): 175, 32, 0, 0, 51, 212, 212, 103, 219, 282109, (18,22,0): 176, 34, 0, 0, 50, 207, 207, 185, 241, 282209, (18,23,0): 176, 35, 0, 0, 49, 206, 206, 55, 153, 282309, (18,24,0): 177, 39, 0, 0, 49, 207, 207, 119, 51, 282409, (18,25,0): 177, 41, 0, 0, 47, 206, 206, 55, 93, 282509, (18,26,0): 176, 43, 0, 0, 48, 207, 207, 113, 246, 282609, (18,27,0): 174, 43, 0, 0, 47, 208, 208, 62, 192, 282709, (18,28,0): 174, 44, 0, 0, 45, 210, 210, 163, 58, 282809, (18,29,0): 175, 45, 0, 0, 44, 209, 209, 142, 15, 282909, (18,30,0): 175, 47, 0, 0, 43, 206, 206, 188, 246, 283009, (18,31,0): 176, 48, 0, 0, 43, 203, 203, 188, 198, 283109, (18,32,0): 176, 49, 0, 0, 47, 227, 227, 196, 25, 283209, (18,33,0): 174, 50, 0, 0, 49, 243, 243, 250, 229, 283309, (18,34,0): 173, 53, 0, 0, 47, 235, 235, 163, 59, 283409, (18,35,0): 174, 53, 0, 0, 47, 213, 213, 188, 229, 283509, (18,36,0): 176, 50, 0, 0, 47, 196, 196, 189, 198, 283609, (18,37,0): 177, 50, 0, 0, 47, 186, 186, 152, 45, 283709, (18,38,0): 177, 50, 0, 0, 46, 181, 181, 193, 15, 283809, (18,39,0): 177, 50, 0, 0, 46, 184, 184, 193, 198, 283909, (18,40,0): 177, 50, 0, 0, 48, 184, 184, 189, 198, 284009, (18,41,0): 177, 50, 0, 0, 48, 185, 185, 56, 75, 284109, (18,42,0): 177, 50, 0, 0, 47, 185, 185, 122, 25, 284209, (18,43,0): 176, 50, 0, 0, 47, 186, 186, 191, 152, 284309, (18,44,0): 176, 47, 0, 0, 47, 189, 189, 122, 53, 284409, (18,45,0): 175, 47, 0, 0, 48, 192, 192, 67, 95, 284509, (18,46,0): 173, 46, 0, 0, 48, 196, 196, 68, 89, 284609, (18,47,0): 171, 46, 0, 0, 48, 202, 202, 112, 214, 284709, (18,48,0): 169, 45, 0, 0, 47, 202, 202, 112, 214, 284809, (18,49,0): 167, 45, 0, 0, 47, 206, 206, 67, 214, 284909, (19,0,0): 178, 27, 0, 0, 50, 224, 224, 233, 248, 290009, (19,1,0): 178, 28, 0, 0, 50, 218, 218, 233, 75, 290109, (19,2,0): 177, 29, 0, 0, 51, 227, 227, 76, 194, 290209, (19,3,0): 177, 31, 0, 0, 51, 254, 254, 41, 20, 290309, (19,4,0): 177, 38, 0, 0, 51, 255, 255, 213, 38, 290409, (19,5,0): 176, 39, 0, 0, 52, 255, 255, 92, 38, 290509, (19,6,0): 176, 40, 0, 0, 53, 231, 231, 102, 38, 290609, (19,7,0): 175, 40, 0, 0, 53, 229, 229, 20, 38, 290709, (19,8,0): 176, 41, 0, 0, 54, 237, 237, 213, 62, 290809, (19,9,0): 177, 42, 0, 0, 55, 241, 241, 173, 66, 290909, (19,10,0): 177, 42, 0, 0, 57, 244, 244, 6, 71, 291009, (19,11,0): 177, 42, 0, 0, 58, 244, 244, 76, 100, 291109, (19,12,0): 177, 41, 0, 0, 58, 245, 245, 20, 84, 291209, (19,13,0): 177, 41, 0, 0, 57, 248, 248, 149, 25, 291309, (19,14,0): 177, 40, 0, 0, 57, 248, 248, 196, 192, 291409, (19,15,0): 177, 40, 0, 0, 57, 247, 247, 74, 207, 291509, (19,16,0): 177, 39, 0, 0, 58, 243, 243, 194, 231, 291609, (19,17,0): 176, 38, 0, 0, 57, 237, 237, 194, 28, 291709, (19,18,0): 175, 38, 0, 0, 57, 227, 227, 194, 62, 291809, (19,19,0): 175, 36, 0, 0, 56, 218, 218, 194, 241, 291909, (19,20,0): 176, 33, 0, 0, 53, 212, 212, 251, 103, 292009, (19,21,0): 176, 33, 0, 0, 52, 212, 212, 125, 14, 292109, (19,22,0): 176, 35, 0, 0, 52, 211, 211, 185, 63, 292209, (19,23,0): 177, 37, 0, 0, 52, 204, 204, 120, 142, 292309, (19,24,0): 177, 41, 0, 0, 51, 202, 202, 120, 252, 292409, (19,25,0): 177, 42, 0, 0, 51, 205, 205, 185, 70, 292509, (19,26,0): 175, 44, 0, 0, 49, 207, 207, 71, 157, 292609, (19,27,0): 174, 44, 0, 0, 49, 210, 210, 103, 84, 292709, (19,28,0): 174, 45, 0, 0, 48, 210, 210, 194, 84, 292809, (19,29,0): 175, 45, 0, 0, 46, 210, 210, 153, 70, 292909, (19,30,0): 176, 47, 0, 0, 45, 209, 209, 188, 75, 293009, (19,31,0): 177, 48, 0, 0, 45, 218, 218, 198, 59, 293109, (19,32,0): 177, 49, 0, 0, 48, 207, 207, 152, 238, 293209, (19,33,0): 176, 50, 0, 0, 50, 220, 220, 188, 238, 293309, (19,34,0): 175, 53, 0, 0, 48, 244, 244, 188, 16, 293409, (19,35,0): 175, 54, 0, 0, 48, 229, 229, 162, 29, 293509, (19,36,0): 177, 50, 0, 0, 48, 203, 203, 152, 29, 293609, (19,37,0): 177, 50, 0, 0, 48, 197, 197, 157, 59, 293709, (19,38,0): 177, 50, 0, 0, 47, 183, 183, 122, 4, 293809, (19,39,0): 177, 50, 0, 0, 47, 183, 183, 122, 75, 293909, (19,40,0): 177, 50, 0, 0, 49, 182, 182, 16, 238, 294009, (19,41,0): 177, 50, 0, 0, 49, 185, 185, 29, 189, 294109, (19,42,0): 177, 50, 0, 0, 48, 186, 186, 165, 248, 294209, (19,43,0): 176, 50, 0, 0, 48, 189, 189, 158, 189, 294309, (19,44,0): 176, 47, 0, 0, 49, 191, 191, 197, 95, 294409, (19,45,0): 175, 47, 0, 0, 49, 196, 196, 109, 248, 294509, (19,46,0): 175, 46, 0, 0, 49, 198, 198, 112, 214, 294609, (19,47,0): 172, 46, 0, 0, 49, 199, 199, 166, 214, 294709, (19,48,0): 168, 45, 0, 0, 49, 204, 204, 164, 214, 294809, (19,49,0): 167, 45, 0, 0, 49, 217, 217, 67, 214, 294909, (20,0,0): 178, 27, 0, 0, 52, 230, 230, 233, 151, 300009, (20,1,0): 177, 29, 0, 0, 52, 228, 228, 31, 29, 300109, (20,2,0): 177, 30, 0, 0, 52, 220, 220, 60, 28, 300209, (20,3,0): 177, 31, 0, 0, 53, 213, 213, 209, 233, 300309, (20,4,0): 176, 38, 0, 0, 53, 216, 216, 228, 71, 300409, (20,5,0): 176, 39, 0, 0, 53, 235, 235, 7, 233, 300509, (20,6,0): 176, 40, 0, 0, 55, 255, 255, 196, 219, 300609, (20,7,0): 176, 41, 0, 0, 55, 241, 241, 74, 219, 300709, (20,8,0): 176, 42, 0, 0, 56, 238, 238, 250, 204, 300809, (20,9,0): 176, 43, 0, 0, 56, 234, 234, 243, 204, 300909, (20,10,0): 176, 44, 0, 0, 59, 238, 238, 6, 38, 301009, (20,11,0): 176, 44, 0, 0, 60, 248, 248, 173, 194, 301109, (20,12,0): 177, 42, 0, 0, 60, 255, 255, 213, 207, 301209, (20,13,0): 177, 42, 0, 0, 60, 254, 254, 113, 192, 301309, (20,14,0): 177, 41, 0, 0, 60, 246, 246, 213, 237, 301409, (20,15,0): 177, 41, 0, 0, 60, 250, 250, 163, 142, 301509, (20,16,0): 176, 41, 0, 0, 60, 245, 245, 110, 24, 301609, (20,17,0): 174, 40, 0, 0, 60, 239, 239, 110, 24, 301709, (20,18,0): 175, 40, 0, 0, 59, 231, 231, 153, 24, 301809, (20,19,0): 176, 39, 0, 0, 59, 222, 222, 153, 153, 301909, (20,20,0): 176, 37, 0, 0, 56, 214, 214, 153, 100, 302009, (20,21,0): 175, 36, 0, 0, 55, 212, 212, 125, 100, 302109, (20,22,0): 176, 37, 0, 0, 54, 207, 207, 71, 153, 302209, (20,23,0): 177, 38, 0, 0, 54, 203, 203, 185, 187, 302309, (20,24,0): 177, 41, 0, 0, 53, 200, 200, 71, 192, 302409, (20,25,0): 177, 43, 0, 0, 54, 202, 202, 71, 84, 302509, (20,26,0): 175, 44, 0, 0, 54, 205, 205, 125, 25, 302609, (20,27,0): 175, 44, 0, 0, 51, 207, 207, 103, 229, 302709, (20,28,0): 176, 46, 0, 0, 50, 208, 208, 194, 229, 302809, (20,29,0): 177, 46, 0, 0, 49, 209, 209, 163, 59, 302909, (20,30,0): 177, 48, 0, 0, 48, 208, 208, 153, 238, 303009, (20,31,0): 177, 49, 0, 0, 49, 211, 211, 94, 248, 303109, (20,32,0): 176, 50, 0, 0, 50, 207, 207, 152, 189, 303209, (20,33,0): 176, 51, 0, 0, 52, 212, 212, 122, 189, 303309, (20,34,0): 176, 54, 0, 0, 52, 229, 229, 152, 189, 303409, (20,35,0): 176, 54, 0, 0, 52, 229, 229, 162, 151, 303509, (20,36,0): 177, 51, 0, 0, 50, 219, 219, 188, 151, 303609, (20,37,0): 177, 51, 0, 0, 50, 205, 205, 198, 115, 303709, (20,38,0): 177, 51, 0, 0, 50, 183, 183, 157, 238, 303809, (20,39,0): 177, 51, 0, 0, 50, 188, 188, 152, 75, 303909, (20,40,0): 177, 51, 0, 0, 51, 187, 187, 122, 29, 304009, (20,41,0): 177, 51, 0, 0, 51, 189, 189, 122, 151, 304109, (20,42,0): 177, 51, 0, 0, 51, 190, 190, 75, 151, 304209, (20,43,0): 176, 51, 0, 0, 51, 190, 190, 247, 214, 304309, (20,44,0): 175, 47, 0, 0, 50, 192, 192, 98, 151, 304409, (20,45,0): 175, 47, 0, 0, 50, 194, 194, 197, 214, 304509, (20,46,0): 173, 46, 0, 0, 51, 196, 196, 191, 214, 304609, (20,47,0): 171, 46, 0, 0, 51, 200, 200, 67, 214, 304709, (20,48,0): 167, 45, 0, 0, 51, 203, 203, 200, 214, 304809, (20,49,0): 167, 45, 0, 0, 51, 213, 213, 190, 214, 304909, (21,0,0): 178, 28, 0, 0, 53, 219, 219, 228, 189, 310009, (21,1,0): 177, 29, 0, 0, 53, 216, 216, 149, 248, 310109, (21,2,0): 177, 30, 0, 0, 54, 219, 219, 206, 198, 310209, (21,3,0): 177, 32, 0, 0, 54, 212, 212, 148, 60, 310309, (21,4,0): 177, 38, 0, 0, 55, 204, 204, 7, 233, 310409, (21,5,0): 176, 40, 0, 0, 55, 214, 214, 7, 62, 310509, (21,6,0): 176, 41, 0, 0, 56, 233, 233, 74, 71, 310609, (21,7,0): 176, 42, 0, 0, 56, 245, 245, 7, 38, 310709, (21,8,0): 176, 43, 0, 0, 57, 242, 242, 250, 243, 310809, (21,9,0): 175, 44, 0, 0, 58, 239, 239, 173, 219, 310909, (21,10,0): 175, 45, 0, 0, 61, 240, 240, 173, 62, 311009, (21,11,0): 176, 46, 0, 0, 62, 246, 246, 251, 231, 311109, (21,12,0): 177, 41, 0, 0, 62, 250, 250, 31, 231, 311209, (21,13,0): 176, 41, 0, 0, 62, 252, 252, 59, 58, 311309, (21,14,0): 175, 42, 0, 0, 62, 248, 248, 110, 237, 311409, (21,15,0): 175, 42, 0, 0, 62, 240, 240, 194, 24, 311509, (21,16,0): 175, 42, 0, 0, 63, 236, 236, 60, 60, 311609, (21,17,0): 174, 42, 0, 0, 63, 232, 232, 142, 231, 311709, (21,18,0): 175, 43, 0, 0, 62, 227, 227, 142, 207, 311809, (21,19,0): 175, 42, 0, 0, 61, 220, 220, 194, 142, 311909, (21,20,0): 176, 39, 0, 0, 59, 216, 216, 103, 153, 312009, (21,21,0): 176, 38, 0, 0, 58, 213, 213, 219, 60, 312109, (21,22,0): 177, 38, 0, 0, 57, 209, 209, 185, 24, 312209, (21,23,0): 177, 39, 0, 0, 57, 205, 205, 120, 58, 312309, (21,24,0): 176, 42, 0, 0, 56, 203, 203, 125, 93, 312409, (21,25,0): 176, 42, 0, 0, 56, 205, 205, 125, 157, 312509, (21,26,0): 177, 43, 0, 0, 57, 208, 208, 251, 229, 312609, (21,27,0): 177, 43, 0, 0, 56, 210, 210, 194, 53, 312709, (21,28,0): 177, 46, 0, 0, 55, 211, 211, 196, 193, 312809, (21,29,0): 178, 46, 0, 0, 52, 212, 212, 153, 95, 312909, (21,30,0): 178, 48, 0, 0, 53, 212, 212, 194, 248, 313009, (21,31,0): 177, 49, 0, 0, 52, 209, 209, 163, 56, 313109, (21,32,0): 177, 50, 0, 0, 54, 214, 214, 110, 151, 313209, (21,33,0): 176, 51, 0, 0, 54, 213, 213, 94, 56, 313309, (21,34,0): 177, 54, 0, 0, 54, 213, 213, 188, 56, 313409, (21,35,0): 177, 54, 0, 0, 54, 229, 229, 247, 151, 313509, (21,36,0): 177, 51, 0, 0, 52, 237, 237, 198, 56, 313609, (21,37,0): 177, 51, 0, 0, 52, 217, 217, 152, 56, 313709, (21,38,0): 177, 51, 0, 0, 52, 194, 194, 165, 238, 313809, (21,39,0): 177, 51, 0, 0, 52, 192, 192, 198, 83, 313909, (21,40,0): 177, 51, 0, 0, 52, 191, 191, 152, 238, 314009, (21,41,0): 177, 51, 0, 0, 52, 192, 192, 29, 29, 314109, (21,42,0): 177, 51, 0, 0, 52, 191, 191, 162, 189, 314209, (21,43,0): 176, 51, 0, 0, 53, 193, 193, 68, 151, 314309, (21,44,0): 176, 47, 0, 0, 51, 192, 192, 159, 214, 314409, (21,45,0): 174, 47, 0, 0, 51, 192, 192, 167, 214, 314509, (21,46,0): 170, 46, 0, 0, 52, 192, 192, 13, 214, 314609, (21,47,0): 168, 46, 0, 0, 52, 198, 198, 98, 214, 314709, (21,48,0): 168, 45, 0, 0, 52, 199, 199, 190, 214, 314809, (21,49,0): 168, 45, 0, 0, 52, 207, 207, 166, 214, 314909, (22,0,0): 178, 28, 0, 0, 54, 208, 208, 149, 75, 320009, (22,1,0): 177, 29, 0, 0, 55, 205, 205, 47, 29, 320109, (22,2,0): 177, 30, 0, 0, 55, 217, 217, 83, 189, 320209, (22,3,0): 177, 32, 0, 0, 55, 226, 226, 54, 196, 320309, (22,4,0): 176, 38, 0, 0, 56, 220, 220, 148, 153, 320409, (22,5,0): 176, 40, 0, 0, 56, 208, 208, 7, 62, 320509, (22,6,0): 176, 41, 0, 0, 57, 203, 203, 7, 71, 320609, (22,7,0): 176, 42, 0, 0, 58, 233, 233, 7, 71, 320709, (22,8,0): 176, 43, 0, 0, 58, 243, 243, 7, 185, 320809, (22,9,0): 176, 45, 0, 0, 59, 253, 253, 20, 243, 320909, (22,10,0): 176, 46, 0, 0, 62, 252, 252, 173, 243, 321009, (22,11,0): 176, 46, 0, 0, 63, 244, 244, 76, 20, 321109, (22,12,0): 176, 41, 0, 0, 63, 241, 241, 250, 231, 321209, (22,13,0): 175, 41, 0, 0, 63, 245, 245, 188, 24, 321309, (22,14,0): 176, 42, 0, 0, 64, 251, 251, 94, 207, 321409, (22,15,0): 176, 42, 0, 0, 64, 241, 241, 153, 74, 321509, (22,16,0): 176, 43, 0, 0, 66, 235, 235, 102, 231, 321609, (22,17,0): 175, 44, 0, 0, 66, 228, 228, 163, 153, 321709, (22,18,0): 175, 44, 0, 0, 65, 222, 222, 142, 207, 321809, (22,19,0): 177, 45, 0, 0, 64, 218, 218, 62, 58, 321909, (22,20,0): 177, 41, 0, 0, 61, 215, 215, 185, 207, 322009, (22,21,0): 177, 41, 0, 0, 61, 214, 214, 185, 142, 322109, (22,22,0): 177, 41, 0, 0, 60, 211, 211, 55, 192, 322209, (22,23,0): 176, 42, 0, 0, 60, 211, 211, 185, 15, 322309, (22,24,0): 174, 42, 0, 0, 60, 210, 210, 125, 84, 322409, (22,25,0): 175, 42, 0, 0, 60, 214, 214, 113, 229, 322509, (22,26,0): 175, 43, 0, 0, 60, 216, 216, 219, 193, 322609, (22,27,0): 175, 44, 0, 0, 60, 218, 218, 251, 193, 322709, (22,28,0): 177, 46, 0, 0, 59, 219, 219, 194, 16, 322809, (22,29,0): 177, 47, 0, 0, 57, 220, 220, 163, 151, 322909, (22,30,0): 177, 48, 0, 0, 57, 220, 220, 163, 151, 323009, (22,31,0): 178, 49, 0, 0, 56, 210, 210, 163, 151, 323109, (22,32,0): 177, 50, 0, 0, 56, 230, 230, 196, 151, 323209, (22,33,0): 177, 51, 0, 0, 57, 229, 229, 110, 151, 323309, (22,34,0): 178, 54, 0, 0, 56, 206, 206, 94, 151, 323409, (22,35,0): 177, 55, 0, 0, 56, 223, 223, 98, 56, 323509, (22,36,0): 177, 51, 0, 0, 56, 243, 243, 162, 56, 323609, (22,37,0): 177, 51, 0, 0, 56, 223, 223, 165, 212, 323709, (22,38,0): 177, 51, 0, 0, 54, 213, 213, 165, 115, 323809, (22,39,0): 177, 51, 0, 0, 54, 200, 200, 247, 83, 323909, (22,40,0): 177, 51, 0, 0, 54, 196, 196, 188, 4, 324009, (22,41,0): 177, 51, 0, 0, 54, 195, 195, 158, 83, 324109, (22,42,0): 177, 51, 0, 0, 53, 195, 195, 165, 238, 324209, (22,43,0): 177, 51, 0, 0, 53, 194, 194, 158, 115, 324309, (22,44,0): 176, 47, 0, 0, 54, 194, 194, 68, 151, 324409, (22,45,0): 173, 47, 0, 0, 54, 193, 193, 127, 151, 324509, (22,46,0): 169, 46, 0, 0, 55, 190, 190, 112, 214, 324609, (22,47,0): 169, 46, 0, 0, 55, 194, 194, 67, 214, 324709, (22,48,0): 169, 45, 0, 0, 53, 194, 194, 77, 214, 324809, (22,49,0): 169, 45, 0, 0, 53, 200, 200, 164, 89, 324909, (23,0,0): 178, 30, 0, 0, 55, 217, 217, 83, 229, 330009, (23,1,0): 177, 33, 0, 0, 55, 215, 215, 238, 238, 330109, (23,2,0): 177, 35, 0, 0, 56, 207, 207, 69, 16, 330209, (23,3,0): 177, 39, 0, 0, 56, 205, 205, 83, 229, 330309, (23,4,0): 177, 40, 0, 0, 56, 210, 210, 47, 237, 330409, (23,5,0): 176, 42, 0, 0, 57, 213, 213, 39, 60, 330509, (23,6,0): 176, 44, 0, 0, 58, 212, 212, 149, 243, 330609, (23,7,0): 176, 45, 0, 0, 58, 216, 216, 7, 243, 330709, (23,8,0): 176, 45, 0, 0, 59, 230, 230, 7, 236, 330809, (23,9,0): 176, 44, 0, 0, 60, 248, 248, 250, 236, 330909, (23,10,0): 176, 42, 0, 0, 63, 253, 253, 173, 38, 331009, (23,11,0): 176, 41, 0, 0, 64, 249, 249, 113, 204, 331109, (23,12,0): 176, 43, 0, 0, 64, 245, 245, 251, 233, 331209, (23,13,0): 176, 43, 0, 0, 64, 246, 246, 250, 74, 331309, (23,14,0): 176, 43, 0, 0, 65, 247, 247, 153, 100, 331409, (23,15,0): 176, 43, 0, 0, 65, 247, 247, 60, 231, 331509, (23,16,0): 176, 43, 0, 0, 67, 237, 237, 241, 231, 331609, (23,17,0): 176, 43, 0, 0, 67, 226, 226, 194, 196, 331709, (23,18,0): 176, 43, 0, 0, 67, 218, 218, 194, 237, 331809, (23,19,0): 177, 43, 0, 0, 66, 215, 215, 194, 237, 331909, (23,20,0): 177, 45, 0, 0, 63, 215, 215, 251, 237, 332009, (23,21,0): 177, 45, 0, 0, 62, 217, 217, 33, 237, 332109, (23,22,0): 176, 45, 0, 0, 62, 217, 217, 185, 45, 332209, (23,23,0): 175, 45, 0, 0, 61, 227, 227, 55, 15, 332309, (23,24,0): 173, 45, 0, 0, 62, 228, 228, 55, 45, 332409, (23,25,0): 175, 45, 0, 0, 62, 226, 226, 120, 25, 332509, (23,26,0): 176, 46, 0, 0, 62, 226, 226, 219, 238, 332609, (23,27,0): 176, 46, 0, 0, 62, 224, 224, 251, 95, 332709, (23,28,0): 177, 47, 0, 0, 61, 223, 223, 102, 151, 332809, (23,29,0): 177, 47, 0, 0, 60, 220, 220, 250, 89, 332909, (23,30,0): 177, 48, 0, 0, 58, 218, 218, 101, 214, 333009, (23,31,0): 178, 48, 0, 0, 59, 209, 209, 196, 214, 333109, (23,32,0): 178, 49, 0, 0, 58, 239, 239, 127, 151, 333209, (23,33,0): 178, 49, 0, 0, 58, 248, 248, 127, 151, 333309, (23,34,0): 178, 50, 0, 0, 57, 211, 211, 196, 56, 333409, (23,35,0): 178, 50, 0, 0, 57, 209, 209, 94, 212, 333509, (23,36,0): 177, 51, 0, 0, 57, 230, 230, 98, 56, 333609, (23,37,0): 177, 51, 0, 0, 57, 220, 220, 165, 212, 333709, (23,38,0): 177, 51, 0, 0, 57, 230, 230, 165, 69, 333809, (23,39,0): 177, 51, 0, 0, 55, 207, 207, 162, 244, 333909, (23,40,0): 177, 51, 0, 0, 54, 202, 202, 158, 43, 334009, (23,41,0): 177, 51, 0, 0, 54, 198, 198, 162, 54, 334109, (23,42,0): 177, 51, 0, 0, 54, 197, 197, 158, 4, 334209, (23,43,0): 177, 51, 0, 0, 54, 196, 196, 158, 43, 334309, (23,44,0): 175, 49, 0, 0, 54, 196, 196, 98, 83, 334409, (23,45,0): 170, 48, 0, 0, 55, 195, 195, 158, 238, 334509, (23,46,0): 169, 46, 0, 0, 55, 192, 192, 98, 189, 334609, (23,47,0): 171, 44, 0, 0, 55, 190, 190, 98, 214, 334709, (23,48,0): 169, 42, 0, 0, 53, 190, 190, 112, 214, 334809, (23,49,0): 168, 42, 0, 0, 54, 195, 195, 67, 151, 334909, (24,0,0): 178, 30, 0, 0, 57, 221, 221, 122, 45, 340009, (24,1,0): 178, 33, 0, 0, 57, 218, 218, 197, 15, 340109, (24,2,0): 177, 34, 0, 0, 57, 205, 205, 69, 152, 340209, (24,3,0): 177, 38, 0, 0, 57, 198, 198, 13, 238, 340309, (24,4,0): 176, 41, 0, 0, 57, 206, 206, 47, 25, 340409, (24,5,0): 176, 43, 0, 0, 58, 210, 210, 148, 237, 340509, (24,6,0): 176, 44, 0, 0, 61, 205, 205, 149, 228, 340609, (24,7,0): 175, 45, 0, 0, 61, 204, 204, 7, 55, 340709, (24,8,0): 175, 45, 0, 0, 61, 212, 212, 7, 71, 340809, (24,9,0): 176, 44, 0, 0, 61, 226, 226, 31, 71, 340909, (24,10,0): 176, 43, 0, 0, 64, 243, 243, 213, 38, 341009, (24,11,0): 176, 42, 0, 0, 64, 255, 255, 243, 38, 341109, (24,12,0): 176, 43, 0, 0, 65, 255, 255, 113, 62, 341209, (24,13,0): 176, 43, 0, 0, 66, 254, 254, 196, 207, 341309, (24,14,0): 176, 43, 0, 0, 68, 243, 243, 188, 194, 341409, (24,15,0): 176, 43, 0, 0, 68, 234, 234, 110, 231, 341509, (24,16,0): 176, 43, 0, 0, 69, 225, 225, 153, 74, 341609, (24,17,0): 176, 43, 0, 0, 69, 216, 216, 194, 58, 341709, (24,18,0): 176, 43, 0, 0, 69, 212, 212, 103, 15, 341809, (24,19,0): 177, 43, 0, 0, 68, 215, 215, 125, 15, 341909, (24,20,0): 176, 46, 0, 0, 68, 222, 222, 185, 188, 342009, (24,21,0): 176, 46, 0, 0, 67, 228, 228, 125, 45, 342109, (24,22,0): 175, 46, 0, 0, 69, 233, 233, 125, 198, 342209, (24,23,0): 174, 46, 0, 0, 68, 239, 239, 125, 75, 342309, (24,24,0): 174, 46, 0, 0, 66, 240, 240, 79, 75, 342409, (24,25,0): 176, 46, 0, 0, 66, 238, 238, 185, 238, 342509, (24,26,0): 176, 46, 0, 0, 66, 232, 232, 103, 16, 342609, (24,27,0): 175, 46, 0, 0, 66, 227, 227, 102, 248, 342709, (24,28,0): 176, 47, 0, 0, 66, 220, 220, 103, 214, 342809, (24,29,0): 177, 47, 0, 0, 66, 215, 215, 102, 214, 342909, (24,30,0): 178, 48, 0, 0, 65, 209, 209, 163, 214, 343009, (24,31,0): 178, 48, 0, 0, 65, 205, 205, 127, 151, 343109, (24,32,0): 178, 49, 0, 0, 65, 231, 231, 98, 56, 343209, (24,33,0): 178, 49, 0, 0, 65, 255, 255, 94, 56, 343309, (24,34,0): 178, 50, 0, 0, 65, 219, 219, 159, 56, 343409, (24,35,0): 178, 50, 0, 0, 64, 200, 200, 163, 212, 343509, (24,36,0): 178, 51, 0, 0, 64, 215, 215, 127, 212, 343609, (24,37,0): 177, 51, 0, 0, 62, 211, 211, 110, 150, 343709, (24,38,0): 177, 51, 0, 0, 62, 234, 234, 162, 150, 343809, (24,39,0): 177, 51, 0, 0, 62, 217, 217, 162, 227, 343909, (24,40,0): 177, 51, 0, 0, 60, 210, 210, 158, 235, 344009, (24,41,0): 177, 51, 0, 0, 60, 203, 203, 165, 82, 344109, (24,42,0): 176, 51, 0, 0, 59, 198, 198, 158, 82, 344209, (24,43,0): 175, 51, 0, 0, 58, 198, 198, 162, 211, 344309, (24,44,0): 173, 49, 0, 0, 56, 198, 198, 68, 47, 344409, (24,45,0): 169, 48, 0, 0, 56, 195, 195, 247, 4, 344509, (24,46,0): 169, 46, 0, 0, 55, 193, 193, 255, 83, 344609, (24,47,0): 171, 44, 0, 0, 55, 187, 187, 191, 56, 344709, (24,48,0): 170, 42, 0, 0, 57, 187, 187, 98, 151, 344809, (24,49,0): 168, 42, 0, 0, 57, 190, 190, 68, 151, 344909, (25,0,0): 177, 32, 0, 0, 57, 211, 211, 83, 20, 350009, (25,1,0): 177, 34, 0, 0, 57, 208, 208, 4, 103, 350109, (25,2,0): 177, 35, 0, 0, 57, 207, 207, 43, 231, 350209, (25,3,0): 176, 37, 0, 0, 57, 210, 210, 43, 23, 350309, (25,4,0): 176, 42, 0, 0, 58, 209, 209, 47, 23, 350409, (25,5,0): 174, 43, 0, 0, 59, 202, 202, 148, 231, 350509, (25,6,0): 174, 44, 0, 0, 62, 192, 192, 196, 243, 350609, (25,7,0): 175, 45, 0, 0, 63, 200, 200, 7, 243, 350709, (25,8,0): 175, 45, 0, 0, 62, 202, 202, 163, 71, 350809, (25,9,0): 175, 44, 0, 0, 62, 213, 213, 31, 236, 350909, (25,10,0): 176, 43, 0, 0, 65, 231, 231, 20, 243, 351009, (25,11,0): 176, 43, 0, 0, 65, 250, 250, 113, 219, 351109, (25,12,0): 175, 44, 0, 0, 66, 255, 255, 76, 233, 351209, (25,13,0): 174, 44, 0, 0, 67, 255, 255, 74, 231, 351309, (25,14,0): 174, 44, 0, 0, 68, 247, 247, 58, 194, 351409, (25,15,0): 174, 44, 0, 0, 68, 234, 234, 142, 231, 351509, (25,16,0): 174, 44, 0, 0, 70, 225, 225, 163, 24, 351609, (25,17,0): 175, 44, 0, 0, 69, 217, 217, 153, 142, 351709, (25,18,0): 176, 44, 0, 0, 69, 215, 215, 28, 15, 351809, (25,19,0): 176, 44, 0, 0, 69, 220, 220, 103, 45, 351909, (25,20,0): 176, 46, 0, 0, 68, 227, 227, 125, 198, 352009, (25,21,0): 175, 46, 0, 0, 68, 233, 233, 219, 229, 352109, (25,22,0): 174, 46, 0, 0, 69, 240, 240, 219, 59, 352209, (25,23,0): 173, 46, 0, 0, 69, 246, 246, 125, 59, 352309, (25,24,0): 175, 46, 0, 0, 69, 248, 248, 125, 238, 352409, (25,25,0): 176, 46, 0, 0, 69, 244, 244, 103, 95, 352509, (25,26,0): 176, 46, 0, 0, 69, 237, 237, 103, 151, 352609, (25,27,0): 176, 46, 0, 0, 68, 228, 228, 102, 214, 352709, (25,28,0): 177, 47, 0, 0, 67, 222, 222, 103, 214, 352809, (25,29,0): 177, 47, 0, 0, 67, 213, 213, 163, 214, 352909, (25,30,0): 178, 48, 0, 0, 68, 207, 207, 163, 214, 353009, (25,31,0): 178, 48, 0, 0, 67, 201, 201, 196, 56, 353109, (25,32,0): 178, 49, 0, 0, 66, 209, 209, 188, 56, 353209, (25,33,0): 178, 49, 0, 0, 66, 250, 250, 162, 212, 353309, (25,34,0): 178, 50, 0, 0, 66, 228, 228, 94, 212, 353409, (25,35,0): 178, 50, 0, 0, 66, 200, 200, 196, 150, 353509, (25,36,0): 178, 51, 0, 0, 65, 208, 208, 163, 150, 353609, (25,37,0): 177, 51, 0, 0, 65, 203, 203, 159, 244, 353709, (25,38,0): 177, 51, 0, 0, 64, 228, 228, 127, 227, 353809, (25,39,0): 178, 51, 0, 0, 64, 228, 228, 127, 227, 353909, (25,40,0): 177, 51, 0, 0, 62, 220, 220, 98, 235, 354009, (25,41,0): 177, 51, 0, 0, 60, 209, 209, 165, 40, 354109, (25,42,0): 176, 51, 0, 0, 59, 201, 201, 158, 148, 354209, (25,43,0): 176, 51, 0, 0, 59, 198, 198, 162, 39, 354309, (25,44,0): 172, 49, 0, 0, 57, 197, 197, 68, 149, 354409, (25,45,0): 168, 47, 0, 0, 56, 194, 194, 164, 206, 354509, (25,46,0): 167, 46, 0, 0, 55, 191, 191, 109, 45, 354609, (25,47,0): 170, 44, 0, 0, 55, 186, 186, 115, 238, 354709, (25,48,0): 169, 43, 0, 0, 57, 188, 188, 255, 248, 354809, (25,49,0): 166, 43, 0, 0, 57, 189, 189, 112, 214, 354909, (26,0,0): 177, 33, 0, 0, 56, 206, 206, 162, 236, 360009, (26,1,0): 177, 34, 0, 0, 56, 202, 202, 211, 243, 360109, (26,2,0): 177, 35, 0, 0, 56, 208, 208, 23, 20, 360209, (26,3,0): 177, 36, 0, 0, 57, 206, 206, 10, 28, 360309, (26,4,0): 175, 43, 0, 0, 59, 199, 199, 39, 194, 360409, (26,5,0): 174, 44, 0, 0, 60, 202, 202, 149, 20, 360509, (26,6,0): 175, 44, 0, 0, 63, 212, 212, 74, 243, 360609, (26,7,0): 175, 45, 0, 0, 64, 200, 200, 7, 233, 360709, (26,8,0): 175, 45, 0, 0, 64, 206, 206, 60, 243, 360809, (26,9,0): 175, 44, 0, 0, 64, 215, 215, 228, 38, 360909, (26,10,0): 176, 44, 0, 0, 67, 222, 222, 251, 74, 361009, (26,11,0): 175, 44, 0, 0, 67, 230, 230, 113, 231, 361109, (26,12,0): 173, 44, 0, 0, 67, 238, 238, 113, 228, 361209, (26,13,0): 171, 44, 0, 0, 67, 246, 246, 71, 194, 361309, (26,14,0): 171, 44, 0, 0, 68, 251, 251, 103, 231, 361409, (26,15,0): 170, 44, 0, 0, 68, 255, 255, 103, 153, 361509, (26,16,0): 171, 44, 0, 0, 70, 250, 250, 103, 231, 361609, (26,17,0): 173, 44, 0, 0, 70, 242, 242, 194, 207, 361709, (26,18,0): 175, 44, 0, 0, 70, 236, 236, 194, 15, 361809, (26,19,0): 177, 44, 0, 0, 69, 234, 234, 241, 84, 361909, (26,20,0): 175, 47, 0, 0, 69, 231, 231, 219, 229, 362009, (26,21,0): 172, 47, 0, 0, 69, 229, 229, 185, 59, 362109, (26,22,0): 171, 47, 0, 0, 71, 230, 230, 79, 59, 362209, (26,23,0): 171, 47, 0, 0, 70, 244, 244, 120, 193, 362309, (26,24,0): 172, 47, 0, 0, 74, 248, 248, 38, 16, 362409, (26,25,0): 175, 47, 0, 0, 73, 244, 244, 62, 151, 362509, (26,26,0): 177, 47, 0, 0, 72, 239, 239, 251, 151, 362609, (26,27,0): 177, 47, 0, 0, 71, 232, 232, 251, 214, 362709, (26,28,0): 177, 47, 0, 0, 70, 224, 224, 102, 214, 362809, (26,29,0): 177, 47, 0, 0, 69, 217, 217, 163, 214, 362909, (26,30,0): 178, 48, 0, 0, 70, 211, 211, 163, 151, 363009, (26,31,0): 178, 48, 0, 0, 69, 198, 198, 196, 56, 363109, (26,32,0): 178, 49, 0, 0, 68, 192, 192, 198, 212, 363209, (26,33,0): 178, 49, 0, 0, 68, 244, 244, 165, 150, 363309, (26,34,0): 178, 50, 0, 0, 68, 235, 235, 198, 227, 363409, (26,35,0): 178, 50, 0, 0, 68, 207, 207, 94, 227, 363509, (26,36,0): 178, 50, 0, 0, 68, 212, 212, 110, 144, 363609, (26,37,0): 177, 50, 0, 0, 68, 203, 203, 196, 240, 363709, (26,38,0): 177, 50, 0, 0, 68, 223, 223, 159, 144, 363809, (26,39,0): 178, 50, 0, 0, 67, 234, 234, 101, 240, 363909, (26,40,0): 177, 50, 0, 0, 63, 224, 224, 163, 235, 364009, (26,41,0): 175, 50, 0, 0, 63, 211, 211, 112, 10, 364109, (26,42,0): 174, 50, 0, 0, 60, 201, 201, 98, 39, 364209, (26,43,0): 173, 50, 0, 0, 59, 198, 198, 158, 7, 364309, (26,44,0): 169, 48, 0, 0, 58, 198, 198, 158, 7, 364409, (26,45,0): 166, 47, 0, 0, 58, 195, 195, 68, 149, 364509, (26,46,0): 165, 46, 0, 0, 57, 190, 190, 112, 237, 364609, (26,47,0): 167, 44, 0, 0, 57, 190, 190, 217, 75, 364709, (26,48,0): 166, 44, 0, 0, 57, 193, 193, 115, 29, 364809, (26,49,0): 166, 44, 0, 0, 57, 192, 192, 150, 56, 364909, (27,0,0): 176, 34, 0, 0, 55, 206, 206, 211, 55, 370009, (27,1,0): 175, 35, 0, 0, 55, 203, 203, 47, 219, 370109, (27,2,0): 176, 35, 0, 0, 56, 201, 201, 39, 62, 370209, (27,3,0): 176, 36, 0, 0, 57, 201, 201, 77, 194, 370309, (27,4,0): 176, 44, 0, 0, 59, 203, 203, 7, 233, 370409, (27,5,0): 176, 45, 0, 0, 61, 206, 206, 7, 241, 370509, (27,6,0): 174, 45, 0, 0, 64, 207, 207, 7, 233, 370609, (27,7,0): 173, 44, 0, 0, 65, 202, 202, 74, 62, 370709, (27,8,0): 174, 44, 0, 0, 66, 207, 207, 60, 237, 370809, (27,9,0): 176, 45, 0, 0, 66, 209, 209, 228, 84, 370909, (27,10,0): 176, 45, 0, 0, 68, 210, 210, 213, 189, 371009, (27,11,0): 175, 45, 0, 0, 68, 210, 210, 113, 248, 371109, (27,12,0): 173, 45, 0, 0, 68, 213, 213, 71, 84, 371209, (27,13,0): 171, 45, 0, 0, 68, 215, 215, 120, 237, 371309, (27,14,0): 169, 45, 0, 0, 69, 220, 220, 103, 74, 371409, (27,15,0): 169, 45, 0, 0, 69, 224, 224, 38, 28, 371509, (27,16,0): 171, 45, 0, 0, 71, 230, 230, 103, 153, 371609, (27,17,0): 174, 45, 0, 0, 71, 235, 235, 219, 51, 371709, (27,18,0): 176, 45, 0, 0, 71, 235, 235, 185, 246, 371809, (27,19,0): 176, 45, 0, 0, 70, 233, 233, 55, 157, 371909, (27,20,0): 172, 47, 0, 0, 70, 231, 231, 55, 59, 372009, (27,21,0): 171, 47, 0, 0, 70, 232, 232, 55, 59, 372109, (27,22,0): 170, 47, 0, 0, 72, 237, 237, 35, 59, 372209, (27,23,0): 170, 47, 0, 0, 72, 246, 246, 119, 248, 372309, (27,24,0): 172, 47, 0, 0, 76, 246, 246, 241, 151, 372409, (27,25,0): 174, 47, 0, 0, 75, 239, 239, 194, 151, 372509, (27,26,0): 176, 47, 0, 0, 74, 236, 236, 62, 214, 372609, (27,27,0): 177, 47, 0, 0, 73, 234, 234, 194, 214, 372709, (27,28,0): 177, 47, 0, 0, 72, 227, 227, 153, 214, 372809, (27,29,0): 178, 47, 0, 0, 71, 217, 217, 194, 214, 372909, (27,30,0): 177, 48, 0, 0, 70, 208, 208, 196, 151, 373009, (27,31,0): 178, 48, 0, 0, 69, 195, 195, 188, 212, 373109, (27,32,0): 178, 49, 0, 0, 68, 196, 196, 198, 52, 373209, (27,33,0): 178, 49, 0, 0, 68, 231, 231, 198, 227, 373309, (27,34,0): 178, 50, 0, 0, 69, 233, 233, 188, 240, 373409, (27,35,0): 178, 50, 0, 0, 69, 203, 203, 188, 240, 373509, (27,36,0): 176, 50, 0, 0, 68, 223, 223, 142, 30, 373609, (27,37,0): 177, 50, 0, 0, 69, 197, 197, 159, 30, 373709, (27,38,0): 177, 50, 0, 0, 69, 218, 218, 159, 30, 373809, (27,39,0): 177, 50, 0, 0, 69, 225, 225, 101, 65, 373909, (27,40,0): 174, 50, 0, 0, 64, 220, 220, 218, 26, 374009, (27,41,0): 169, 50, 0, 0, 63, 212, 212, 218, 10, 374109, (27,42,0): 171, 50, 0, 0, 61, 204, 204, 159, 39, 374209, (27,43,0): 169, 50, 0, 0, 60, 200, 200, 98, 159, 374309, (27,44,0): 164, 48, 0, 0, 59, 198, 198, 109, 7, 374409, (27,45,0): 163, 47, 0, 0, 58, 199, 199, 247, 74, 374509, (27,46,0): 162, 46, 0, 0, 58, 200, 200, 68, 142, 374609, (27,47,0): 163, 45, 0, 0, 58, 197, 197, 164, 23, 374709, (27,48,0): 164, 44, 0, 0, 57, 194, 194, 109, 75, 374809, (27,49,0): 167, 45, 0, 0, 57, 190, 190, 85, 115, 374909, (28,0,0): 175, 35, 0, 0, 54, 205, 205, 47, 140, 380009, (28,1,0): 175, 36, 0, 0, 54, 201, 201, 47, 55, 380109, (28,2,0): 176, 36, 0, 0, 55, 200, 200, 148, 38, 380209, (28,3,0): 176, 38, 0, 0, 56, 204, 204, 148, 241, 380309, (28,4,0): 176, 45, 0, 0, 58, 206, 206, 127, 62, 380409, (28,5,0): 176, 46, 0, 0, 60, 207, 207, 7, 20, 380509, (28,6,0): 173, 45, 0, 0, 63, 208, 208, 74, 38, 380609, (28,7,0): 173, 44, 0, 0, 64, 213, 213, 60, 58, 380709, (28,8,0): 175, 44, 0, 0, 66, 214, 214, 60, 248, 380809, (28,9,0): 176, 45, 0, 0, 66, 211, 211, 194, 214, 380909, (28,10,0): 176, 46, 0, 0, 68, 207, 207, 233, 214, 381009, (28,11,0): 176, 46, 0, 0, 68, 201, 201, 219, 214, 381109, (28,12,0): 176, 45, 0, 0, 68, 199, 199, 113, 189, 381209, (28,13,0): 174, 45, 0, 0, 69, 203, 203, 71, 75, 381309, (28,14,0): 173, 45, 0, 0, 70, 207, 207, 103, 196, 381409, (28,15,0): 172, 45, 0, 0, 70, 216, 216, 241, 231, 381509, (28,16,0): 173, 45, 0, 0, 70, 222, 222, 125, 24, 381609, (28,17,0): 175, 45, 0, 0, 70, 227, 227, 125, 192, 381709, (28,18,0): 175, 45, 0, 0, 71, 230, 230, 120, 246, 381809, (28,19,0): 173, 45, 0, 0, 72, 230, 230, 119, 242, 381909, (28,20,0): 171, 48, 0, 0, 72, 230, 230, 55, 53, 382009, (28,21,0): 170, 48, 0, 0, 72, 230, 230, 119, 249, 382109, (28,22,0): 169, 48, 0, 0, 74, 232, 232, 35, 193, 382209, (28,23,0): 170, 48, 0, 0, 74, 236, 236, 55, 151, 382309, (28,24,0): 173, 48, 0, 0, 76, 237, 237, 38, 151, 382409, (28,25,0): 176, 48, 0, 0, 75, 236, 236, 241, 214, 382509, (28,26,0): 176, 48, 0, 0, 75, 232, 232, 102, 214, 382609, (28,27,0): 176, 48, 0, 0, 74, 224, 224, 194, 214, 382709, (28,28,0): 177, 47, 0, 0, 74, 219, 219, 196, 214, 382809, (28,29,0): 177, 47, 0, 0, 73, 213, 213, 142, 151, 382909, (28,30,0): 177, 48, 0, 0, 72, 210, 210, 188, 151, 383009, (28,31,0): 178, 48, 0, 0, 71, 213, 213, 198, 212, 383109, (28,32,0): 178, 49, 0, 0, 69, 187, 187, 198, 52, 383209, (28,33,0): 178, 49, 0, 0, 69, 214, 214, 198, 240, 383309, (28,34,0): 178, 50, 0, 0, 69, 208, 208, 152, 208, 383409, (28,35,0): 177, 50, 0, 0, 69, 217, 217, 188, 230, 383509, (28,36,0): 176, 49, 0, 0, 69, 235, 235, 163, 131, 383609, (28,37,0): 176, 49, 0, 0, 69, 218, 218, 163, 170, 383709, (28,38,0): 176, 49, 0, 0, 68, 216, 216, 163, 26, 383809, (28,39,0): 173, 49, 0, 0, 68, 231, 231, 218, 170, 383909, (28,40,0): 168, 49, 0, 0, 64, 226, 226, 159, 67, 384009, (28,41,0): 166, 49, 0, 0, 64, 220, 220, 163, 10, 384109, (28,42,0): 170, 49, 0, 0, 64, 212, 212, 218, 164, 384209, (28,43,0): 166, 49, 0, 0, 63, 205, 205, 127, 73, 384309, (28,44,0): 161, 48, 0, 0, 60, 201, 201, 127, 163, 384409, (28,45,0): 162, 47, 0, 0, 59, 200, 200, 247, 7, 384509, (28,46,0): 161, 46, 0, 0, 59, 199, 199, 109, 196, 384609, (28,47,0): 162, 45, 0, 0, 58, 200, 200, 68, 149, 384709, (28,48,0): 164, 45, 0, 0, 59, 196, 196, 200, 47, 384809, (28,49,0): 167, 46, 0, 0, 59, 191, 191, 112, 29, 384909, (29,0,0): 177, 37, 0, 0, 53, 192, 192, 7, 232, 390009, (29,1,0): 177, 38, 0, 0, 53, 187, 187, 73, 232, 390109, (29,2,0): 177, 39, 0, 0, 54, 186, 186, 39, 243, 390209, (29,3,0): 177, 40, 0, 0, 55, 191, 191, 39, 66, 390309, (29,4,0): 177, 46, 0, 0, 56, 191, 191, 73, 62, 390409, (29,5,0): 176, 46, 0, 0, 58, 191, 191, 60, 62, 390509, (29,6,0): 176, 45, 0, 0, 61, 193, 193, 60, 241, 390609, (29,7,0): 176, 44, 0, 0, 62, 227, 227, 194, 237, 390709, (29,8,0): 176, 44, 0, 0, 64, 229, 229, 60, 59, 390809, (29,9,0): 176, 45, 0, 0, 64, 222, 222, 194, 53, 390909, (29,10,0): 177, 46, 0, 0, 67, 213, 213, 20, 238, 391009, (29,11,0): 176, 47, 0, 0, 68, 204, 204, 251, 189, 391109, (29,12,0): 176, 46, 0, 0, 69, 200, 200, 71, 238, 391209, (29,13,0): 176, 46, 0, 0, 69, 200, 200, 125, 45, 391309, (29,14,0): 176, 46, 0, 0, 71, 204, 204, 103, 237, 391409, (29,15,0): 175, 46, 0, 0, 71, 210, 210, 125, 24, 391509, (29,16,0): 175, 46, 0, 0, 71, 213, 213, 71, 51, 391609, (29,17,0): 175, 46, 0, 0, 71, 215, 215, 185, 192, 391709, (29,18,0): 173, 46, 0, 0, 72, 217, 217, 55, 246, 391809, (29,19,0): 172, 46, 0, 0, 73, 219, 219, 139, 242, 391909, (29,20,0): 170, 48, 0, 0, 73, 220, 220, 35, 59, 392009, (29,21,0): 169, 48, 0, 0, 73, 219, 219, 117, 248, 392109, (29,22,0): 169, 48, 0, 0, 75, 220, 220, 119, 89, 392209, (29,23,0): 170, 48, 0, 0, 76, 219, 219, 33, 214, 392309, (29,24,0): 173, 48, 0, 0, 76, 223, 223, 120, 214, 392409, (29,25,0): 176, 48, 0, 0, 75, 224, 224, 125, 151, 392509, (29,26,0): 177, 48, 0, 0, 76, 220, 220, 219, 214, 392609, (29,27,0): 177, 48, 0, 0, 75, 213, 213, 102, 151, 392709, (29,28,0): 177, 47, 0, 0, 76, 208, 208, 194, 214, 392809, (29,29,0): 177, 47, 0, 0, 75, 208, 208, 188, 151, 392909, (29,30,0): 177, 48, 0, 0, 74, 209, 209, 188, 151, 393009, (29,31,0): 177, 48, 0, 0, 73, 212, 212, 198, 212, 393109, (29,32,0): 178, 49, 0, 0, 71, 194, 194, 198, 144, 393209, (29,33,0): 178, 49, 0, 0, 71, 231, 231, 193, 240, 393309, (29,34,0): 178, 50, 0, 0, 70, 210, 210, 248, 30, 393409, (29,35,0): 177, 50, 0, 0, 70, 218, 218, 152, 230, 393509, (29,36,0): 176, 49, 0, 0, 69, 222, 222, 142, 132, 393609, (29,37,0): 176, 49, 0, 0, 69, 232, 232, 101, 205, 393709, (29,38,0): 172, 49, 0, 0, 68, 240, 240, 101, 132, 393809, (29,39,0): 168, 49, 0, 0, 67, 237, 237, 254, 21, 393909, (29,40,0): 166, 49, 0, 0, 65, 231, 231, 101, 96, 394009, (29,41,0): 167, 49, 0, 0, 65, 227, 227, 159, 42, 394109, (29,42,0): 169, 49, 0, 0, 64, 221, 221, 127, 164, 394209, (29,43,0): 163, 49, 0, 0, 64, 214, 214, 98, 73, 394309, (29,44,0): 160, 48, 0, 0, 61, 207, 207, 217, 7, 394409, (29,45,0): 162, 47, 0, 0, 60, 202, 202, 158, 196, 394509, (29,46,0): 163, 46, 0, 0, 59, 197, 197, 191, 127, 394609, (29,47,0): 163, 45, 0, 0, 59, 196, 196, 247, 127, 394709, (29,48,0): 166, 45, 0, 0, 59, 192, 192, 77, 211, 394809, (29,49,0): 168, 46, 0, 0, 59, 188, 188, 67, 85, 394909, (30,0,0): 178, 38, 0, 0, 53, 199, 199, 127, 185, 400009, (30,1,0): 178, 39, 0, 0, 53, 195, 195, 39, 119, 400109, (30,2,0): 177, 40, 0, 0, 53, 192, 192, 73, 79, 400209, (30,3,0): 176, 43, 0, 0, 53, 192, 192, 209, 185, 400309, (30,4,0): 176, 48, 0, 0, 54, 195, 195, 228, 204, 400409, (30,5,0): 177, 47, 0, 0, 56, 198, 198, 20, 66, 400509, (30,6,0): 176, 45, 0, 0, 58, 208, 208, 20, 233, 400609, (30,7,0): 175, 44, 0, 0, 59, 236, 236, 62, 62, 400709, (30,8,0): 176, 44, 0, 0, 61, 237, 237, 62, 231, 400809, (30,9,0): 177, 45, 0, 0, 62, 228, 228, 62, 60, 400909, (30,10,0): 177, 47, 0, 0, 65, 217, 217, 20, 84, 401009, (30,11,0): 177, 48, 0, 0, 67, 207, 207, 125, 238, 401109, (30,12,0): 177, 46, 0, 0, 68, 199, 199, 55, 45, 401209, (30,13,0): 176, 46, 0, 0, 70, 200, 200, 71, 237, 401309, (30,14,0): 175, 46, 0, 0, 72, 201, 201, 219, 206, 401409, (30,15,0): 175, 46, 0, 0, 72, 207, 207, 125, 142, 401509, (30,16,0): 174, 46, 0, 0, 71, 208, 208, 125, 51, 401609, (30,17,0): 172, 46, 0, 0, 72, 207, 207, 120, 192, 401709, (30,18,0): 170, 46, 0, 0, 73, 209, 209, 33, 93, 401809, (30,19,0): 170, 46, 0, 0, 73, 212, 212, 201, 246, 401909, (30,20,0): 170, 48, 0, 0, 74, 214, 214, 117, 53, 402009, (30,21,0): 169, 48, 0, 0, 74, 212, 212, 139, 89, 402109, (30,22,0): 170, 48, 0, 0, 77, 209, 209, 55, 214, 402209, (30,23,0): 171, 48, 0, 0, 77, 211, 211, 236, 214, 402309, (30,24,0): 173, 48, 0, 0, 77, 211, 211, 79, 214, 402409, (30,25,0): 176, 48, 0, 0, 76, 211, 211, 71, 151, 402509, (30,26,0): 178, 48, 0, 0, 77, 208, 208, 103, 214, 402609, (30,27,0): 177, 48, 0, 0, 77, 205, 205, 194, 151, 402709, (30,28,0): 177, 47, 0, 0, 78, 202, 202, 153, 151, 402809, (30,29,0): 177, 47, 0, 0, 77, 204, 204, 110, 151, 402909, (30,30,0): 177, 48, 0, 0, 78, 204, 204, 157, 151, 403009, (30,31,0): 177, 48, 0, 0, 77, 204, 204, 193, 69, 403109, (30,32,0): 177, 49, 0, 0, 74, 207, 207, 248, 227, 403209, (30,33,0): 177, 49, 0, 0, 74, 244, 244, 193, 126, 403309, (30,34,0): 177, 50, 0, 0, 73, 224, 224, 152, 65, 403409, (30,35,0): 177, 50, 0, 0, 72, 210, 210, 110, 230, 403509, (30,36,0): 176, 49, 0, 0, 71, 210, 210, 153, 132, 403609, (30,37,0): 174, 49, 0, 0, 70, 230, 230, 163, 161, 403709, (30,38,0): 168, 49, 0, 0, 68, 251, 251, 101, 21, 403809, (30,39,0): 166, 49, 0, 0, 68, 255, 255, 102, 21, 403909, (30,40,0): 165, 49, 0, 0, 67, 255, 255, 164, 161, 404009, (30,41,0): 166, 49, 0, 0, 67, 255, 255, 159, 42, 404109, (30,42,0): 166, 49, 0, 0, 65, 246, 246, 159, 32, 404209, (30,43,0): 161, 49, 0, 0, 64, 231, 231, 159, 190, 404309, (30,44,0): 160, 47, 0, 0, 63, 213, 213, 68, 164, 404409, (30,45,0): 162, 47, 0, 0, 63, 199, 199, 68, 127, 404509, (30,46,0): 164, 46, 0, 0, 60, 189, 189, 217, 112, 404609, (30,47,0): 165, 45, 0, 0, 60, 196, 196, 158, 68, 404709, (30,48,0): 167, 46, 0, 0, 60, 192, 192, 112, 98, 404809, (30,49,0): 168, 47, 0, 0, 60, 187, 187, 166, 191, 404909, (31,0,0): 178, 40, 0, 0, 53, 205, 205, 211, 241, 410009, (31,1,0): 177, 41, 0, 0, 53, 201, 201, 127, 79, 410109, (31,2,0): 176, 41, 0, 0, 53, 197, 197, 7, 140, 410209, (31,3,0): 175, 42, 0, 0, 53, 194, 194, 209, 119, 410309, (31,4,0): 176, 43, 0, 0, 53, 196, 196, 228, 185, 410409, (31,5,0): 176, 43, 0, 0, 54, 206, 206, 20, 119, 410509, (31,6,0): 176, 44, 0, 0, 56, 222, 222, 233, 241, 410609, (31,7,0): 176, 44, 0, 0, 57, 235, 235, 38, 219, 410709, (31,8,0): 177, 45, 0, 0, 60, 237, 237, 103, 103, 410809, (31,9,0): 177, 45, 0, 0, 61, 228, 228, 38, 20, 410909, (31,10,0): 177, 46, 0, 0, 64, 216, 216, 204, 74, 411009, (31,11,0): 177, 46, 0, 0, 66, 204, 204, 71, 206, 411109, (31,12,0): 177, 45, 0, 0, 68, 198, 198, 185, 47, 411209, (31,13,0): 176, 45, 0, 0, 70, 196, 196, 119, 23, 411309, (31,14,0): 175, 45, 0, 0, 71, 197, 197, 119, 206, 411409, (31,15,0): 173, 45, 0, 0, 72, 203, 203, 119, 15, 411509, (31,16,0): 171, 45, 0, 0, 72, 203, 203, 119, 51, 411609, (31,17,0): 169, 45, 0, 0, 72, 204, 204, 119, 15, 411709, (31,18,0): 169, 45, 0, 0, 72, 206, 206, 35, 157, 411809, (31,19,0): 171, 45, 0, 0, 74, 212, 212, 35, 53, 411909, (31,20,0): 172, 47, 0, 0, 74, 212, 212, 117, 95, 412009, (31,21,0): 173, 47, 0, 0, 75, 211, 211, 35, 248, 412109, (31,22,0): 174, 47, 0, 0, 75, 208, 208, 35, 214, 412209, (31,23,0): 175, 47, 0, 0, 78, 208, 208, 55, 214, 412309, (31,24,0): 176, 47, 0, 0, 77, 202, 202, 55, 214, 412409, (31,25,0): 177, 47, 0, 0, 77, 197, 197, 125, 151, 412509, (31,26,0): 178, 47, 0, 0, 77, 196, 196, 251, 214, 412609, (31,27,0): 178, 47, 0, 0, 77, 198, 198, 153, 151, 412709, (31,28,0): 177, 45, 0, 0, 77, 199, 199, 142, 151, 412809, (31,29,0): 177, 45, 0, 0, 77, 199, 199, 188, 151, 412909, (31,30,0): 177, 46, 0, 0, 78, 199, 199, 198, 151, 413009, (31,31,0): 176, 47, 0, 0, 78, 205, 205, 122, 56, 413109, (31,32,0): 177, 48, 0, 0, 77, 205, 205, 152, 69, 413209, (31,33,0): 176, 48, 0, 0, 77, 216, 216, 152, 69, 413309, (31,34,0): 176, 49, 0, 0, 75, 225, 225, 188, 150, 413409, (31,35,0): 176, 49, 0, 0, 74, 212, 212, 142, 191, 413509, (31,36,0): 176, 49, 0, 0, 72, 228, 228, 163, 26, 413609, (31,37,0): 171, 49, 0, 0, 71, 224, 224, 101, 169, 413709, (31,38,0): 166, 49, 0, 0, 69, 223, 223, 101, 161, 413809, (31,39,0): 165, 49, 0, 0, 68, 215, 215, 118, 161, 413909, (31,40,0): 163, 49, 0, 0, 67, 214, 214, 92, 42, 414009, (31,41,0): 164, 49, 0, 0, 67, 222, 222, 218, 42, 414109, (31,42,0): 163, 49, 0, 0, 65, 229, 229, 247, 42, 414209, (31,43,0): 160, 49, 0, 0, 65, 234, 234, 98, 190, 414309, (31,44,0): 161, 51, 0, 0, 64, 234, 234, 112, 166, 414409, (31,45,0): 163, 50, 0, 0, 63, 232, 232, 127, 10, 414509, (31,46,0): 165, 50, 0, 0, 60, 228, 228, 68, 112, 414609, (31,47,0): 165, 49, 0, 0, 60, 203, 203, 67, 211, 414709, (31,48,0): 166, 48, 0, 0, 62, 196, 196, 67, 65, 414809, (31,49,0): 168, 47, 0, 0, 62, 190, 190, 112, 191, 414909, (32,0,0): 177, 40, 0, 0, 50, 216, 216, 4, 241, 420009, (32,1,0): 177, 41, 0, 0, 51, 215, 215, 206, 62, 420109, (32,2,0): 177, 41, 0, 0, 52, 210, 210, 149, 79, 420209, (32,3,0): 177, 42, 0, 0, 54, 209, 209, 163, 204, 420309, (32,4,0): 177, 43, 0, 0, 56, 211, 211, 60, 232, 420409, (32,5,0): 177, 43, 0, 0, 57, 220, 220, 62, 119, 420509, (32,6,0): 177, 44, 0, 0, 57, 235, 235, 233, 38, 420609, (32,7,0): 177, 44, 0, 0, 57, 237, 237, 219, 236, 420709, (32,8,0): 177, 45, 0, 0, 59, 238, 238, 204, 243, 420809, (32,9,0): 177, 45, 0, 0, 60, 230, 230, 125, 219, 420909, (32,10,0): 177, 46, 0, 0, 61, 220, 220, 236, 31, 421009, (32,11,0): 177, 46, 0, 0, 63, 209, 209, 79, 237, 421109, (32,12,0): 177, 45, 0, 0, 65, 202, 202, 236, 47, 421209, (32,13,0): 176, 45, 0, 0, 67, 200, 200, 119, 206, 421309, (32,14,0): 174, 45, 0, 0, 69, 201, 201, 139, 206, 421409, (32,15,0): 170, 45, 0, 0, 69, 198, 198, 119, 58, 421509, (32,16,0): 170, 45, 0, 0, 72, 201, 201, 35, 192, 421609, (32,17,0): 170, 45, 0, 0, 72, 206, 206, 35, 157, 421709, (32,18,0): 172, 45, 0, 0, 72, 211, 211, 117, 16, 421809, (32,19,0): 174, 45, 0, 0, 74, 218, 218, 140, 89, 421909, (32,20,0): 176, 47, 0, 0, 75, 221, 221, 117, 214, 422009, (32,21,0): 177, 47, 0, 0, 76, 221, 221, 117, 214, 422109, (32,22,0): 177, 47, 0, 0, 77, 216, 216, 139, 214, 422209, (32,23,0): 177, 47, 0, 0, 78, 211, 211, 232, 214, 422309, (32,24,0): 177, 47, 0, 0, 77, 201, 201, 55, 214, 422409, (32,25,0): 177, 47, 0, 0, 74, 194, 194, 219, 214, 422509, (32,26,0): 177, 47, 0, 0, 71, 192, 192, 194, 151, 422609, (32,27,0): 178, 47, 0, 0, 74, 195, 195, 196, 89, 422709, (32,28,0): 178, 45, 0, 0, 78, 198, 198, 110, 151, 422809, (32,29,0): 176, 46, 0, 0, 78, 197, 197, 188, 214, 422909, (32,30,0): 173, 46, 0, 0, 71, 197, 197, 198, 151, 423009, (32,31,0): 172, 47, 0, 0, 68, 204, 204, 165, 56, 423109, (32,32,0): 174, 48, 0, 0, 78, 205, 205, 152, 56, 423209, (32,33,0): 176, 48, 0, 0, 76, 205, 205, 165, 69, 423309, (32,34,0): 175, 49, 0, 0, 74, 230, 230, 198, 69, 423409, (32,35,0): 176, 49, 0, 0, 75, 219, 219, 188, 244, 423509, (32,36,0): 174, 49, 0, 0, 77, 239, 239, 196, 65, 423609, (32,37,0): 167, 49, 0, 0, 76, 227, 227, 142, 40, 423709, (32,38,0): 163, 49, 0, 0, 70, 218, 218, 247, 132, 423809, (32,39,0): 163, 49, 0, 0, 66, 213, 213, 98, 40, 423909, (32,40,0): 163, 49, 0, 0, 69, 210, 210, 127, 132, 424009, (32,41,0): 164, 49, 0, 0, 67, 213, 213, 159, 96, 424109, (32,42,0): 161, 49, 0, 0, 64, 214, 214, 159, 42, 424209, (32,43,0): 159, 49, 0, 0, 63, 210, 210, 127, 77, 424309, (32,44,0): 162, 50, 0, 0, 64, 204, 204, 112, 166, 424409, (32,45,0): 166, 50, 0, 0, 63, 198, 198, 112, 82, 424509, (32,46,0): 166, 50, 0, 0, 60, 192, 192, 127, 217, 424609, (32,47,0): 164, 49, 0, 0, 60, 206, 206, 127, 255, 424709, (32,48,0): 167, 48, 0, 0, 67, 198, 198, 112, 13, 424809, (32,49,0): 168, 47, 0, 0, 66, 188, 188, 112, 150, 424909, (33,0,0): 174, 40, 0, 0, 48, 246, 246, 45, 70, 430009, (33,1,0): 176, 41, 0, 0, 49, 243, 243, 206, 8, 430109, (33,2,0): 177, 41, 0, 0, 51, 243, 243, 149, 51, 430209, (33,3,0): 177, 42, 0, 0, 53, 246, 246, 196, 27, 430309, (33,4,0): 177, 43, 0, 0, 54, 247, 247, 7, 241, 430409, (33,5,0): 177, 43, 0, 0, 55, 252, 252, 194, 79, 430509, (33,6,0): 177, 44, 0, 0, 56, 254, 254, 66, 232, 430609, (33,7,0): 177, 44, 0, 0, 56, 246, 246, 38, 79, 430709, (33,8,0): 177, 45, 0, 0, 58, 244, 244, 233, 219, 430809, (33,9,0): 177, 45, 0, 0, 59, 237, 237, 219, 76, 430909, (33,10,0): 177, 46, 0, 0, 61, 227, 227, 33, 60, 431009, (33,11,0): 176, 46, 0, 0, 63, 217, 217, 201, 206, 431109, (33,12,0): 175, 45, 0, 0, 65, 208, 208, 79, 238, 431209, (33,13,0): 174, 45, 0, 0, 67, 206, 206, 119, 238, 431309, (33,14,0): 173, 45, 0, 0, 68, 206, 206, 232, 83, 431409, (33,15,0): 171, 45, 0, 0, 69, 203, 203, 117, 75, 431509, (33,16,0): 172, 45, 0, 0, 72, 209, 209, 117, 59, 431609, (33,17,0): 173, 45, 0, 0, 72, 217, 217, 117, 189, 431709, (33,18,0): 175, 45, 0, 0, 72, 223, 223, 117, 214, 431809, (33,19,0): 177, 45, 0, 0, 74, 226, 226, 140, 214, 431909, (33,20,0): 178, 48, 0, 0, 75, 228, 228, 245, 214, 432009, (33,21,0): 178, 48, 0, 0, 76, 229, 229, 232, 214, 432109, (33,22,0): 177, 48, 0, 0, 77, 223, 223, 139, 214, 432209, (33,23,0): 177, 48, 0, 0, 78, 217, 217, 232, 214, 432309, (33,24,0): 177, 48, 0, 0, 75, 207, 207, 55, 214, 432409, (33,25,0): 177, 48, 0, 0, 75, 201, 201, 38, 151, 432509, (33,26,0): 177, 48, 0, 0, 75, 196, 196, 194, 214, 432609, (33,27,0): 177, 48, 0, 0, 80, 194, 194, 196, 151, 432709, (33,28,0): 177, 47, 0, 0, 87, 194, 194, 110, 214, 432809, (33,29,0): 174, 47, 0, 0, 89, 198, 198, 142, 151, 432909, (33,30,0): 172, 47, 0, 0, 86, 200, 200, 110, 214, 433009, (33,31,0): 174, 47, 0, 0, 82, 201, 201, 188, 151, 433109, (33,32,0): 176, 48, 0, 0, 79, 211, 211, 198, 248, 433209, (33,33,0): 177, 48, 0, 0, 77, 225, 225, 198, 151, 433309, (33,34,0): 177, 49, 0, 0, 72, 235, 235, 188, 56, 433409, (33,35,0): 175, 49, 0, 0, 70, 222, 222, 110, 115, 433509, (33,36,0): 169, 49, 0, 0, 71, 224, 224, 196, 197, 433609, (33,37,0): 161, 49, 0, 0, 72, 235, 235, 159, 235, 433709, (33,38,0): 161, 49, 0, 0, 70, 232, 232, 127, 26, 433809, (33,39,0): 161, 49, 0, 0, 66, 216, 216, 162, 235, 433909, (33,40,0): 161, 49, 0, 0, 68, 213, 213, 158, 30, 434009, (33,41,0): 163, 49, 0, 0, 65, 215, 215, 94, 230, 434109, (33,42,0): 159, 49, 0, 0, 63, 215, 215, 164, 26, 434209, (33,43,0): 158, 49, 0, 0, 63, 213, 213, 164, 54, 434309, (33,44,0): 164, 50, 0, 0, 64, 210, 210, 127, 54, 434409, (33,45,0): 168, 50, 0, 0, 64, 205, 205, 112, 65, 434509, (33,46,0): 167, 49, 0, 0, 61, 201, 201, 68, 43, 434609, (33,47,0): 164, 49, 0, 0, 59, 214, 214, 67, 191, 434709, (33,48,0): 167, 48, 0, 0, 61, 204, 204, 112, 69, 434809, (33,49,0): 169, 48, 0, 0, 61, 191, 191, 167, 212, 434909, (34,0,0): 172, 40, 0, 0, 47, 246, 246, 47, 70, 440009, (34,1,0): 175, 41, 0, 0, 48, 242, 242, 188, 70, 440109, (34,2,0): 177, 41, 0, 0, 49, 247, 247, 110, 252, 440209, (34,3,0): 177, 42, 0, 0, 50, 255, 255, 74, 175, 440309, (34,4,0): 176, 43, 0, 0, 52, 255, 255, 194, 63, 440409, (34,5,0): 177, 43, 0, 0, 53, 252, 252, 62, 125, 440509, (34,6,0): 176, 44, 0, 0, 55, 244, 244, 66, 33, 440609, (34,7,0): 175, 44, 0, 0, 55, 246, 246, 204, 120, 440709, (34,8,0): 174, 45, 0, 0, 58, 243, 243, 66, 38, 440809, (34,9,0): 175, 45, 0, 0, 58, 237, 237, 125, 233, 440909, (34,10,0): 177, 46, 0, 0, 60, 230, 230, 55, 231, 441009, (34,11,0): 177, 46, 0, 0, 62, 218, 218, 232, 75, 441109, (34,12,0): 177, 46, 0, 0, 64, 212, 212, 79, 56, 441209, (34,13,0): 176, 46, 0, 0, 66, 209, 209, 232, 56, 441309, (34,14,0): 175, 46, 0, 0, 67, 208, 208, 117, 151, 441409, (34,15,0): 174, 46, 0, 0, 68, 212, 212, 140, 151, 441509, (34,16,0): 175, 46, 0, 0, 73, 221, 221, 117, 151, 441609, (34,17,0): 176, 46, 0, 0, 73, 230, 230, 117, 151, 441709, (34,18,0): 177, 46, 0, 0, 74, 235, 235, 140, 189, 441809, (34,19,0): 178, 46, 0, 0, 76, 235, 235, 117, 189, 441909, (34,20,0): 178, 48, 0, 0, 77, 232, 232, 35, 151, 442009, (34,21,0): 178, 48, 0, 0, 78, 232, 232, 245, 214, 442109, (34,22,0): 177, 48, 0, 0, 78, 226, 226, 117, 151, 442209, (34,23,0): 177, 48, 0, 0, 79, 223, 223, 232, 214, 442309, (34,24,0): 177, 48, 0, 0, 75, 215, 215, 185, 151, 442409, (34,25,0): 177, 48, 0, 0, 78, 211, 211, 233, 214, 442509, (34,26,0): 177, 48, 0, 0, 84, 203, 203, 28, 214, 442609, (34,27,0): 176, 48, 0, 0, 95, 196, 196, 196, 151, 442709, (34,28,0): 174, 48, 0, 0, 105, 194, 194, 142, 214, 442809, (34,29,0): 173, 48, 0, 0, 109, 200, 200, 110, 151, 442909, (34,30,0): 173, 48, 0, 0, 108, 207, 207, 94, 214, 443009, (34,31,0): 175, 48, 0, 0, 107, 206, 206, 188, 214, 443109, (34,32,0): 176, 48, 0, 0, 96, 212, 212, 98, 214, 443209, (34,33,0): 178, 48, 0, 0, 89, 230, 230, 110, 151, 443309, (34,34,0): 176, 49, 0, 0, 79, 223, 223, 196, 151, 443409, (34,35,0): 172, 49, 0, 0, 72, 224, 224, 159, 56, 443509, (34,36,0): 164, 49, 0, 0, 72, 210, 210, 196, 29, 443609, (34,37,0): 156, 49, 0, 0, 71, 236, 236, 163, 13, 443709, (34,38,0): 158, 49, 0, 0, 69, 229, 229, 250, 65, 443809, (34,39,0): 158, 49, 0, 0, 64, 213, 213, 101, 65, 443909, (34,40,0): 160, 49, 0, 0, 67, 210, 210, 127, 13, 444009, (34,41,0): 160, 49, 0, 0, 63, 210, 210, 94, 244, 444109, (34,42,0): 157, 49, 0, 0, 60, 207, 207, 127, 150, 444209, (34,43,0): 158, 49, 0, 0, 60, 206, 206, 218, 69, 444309, (34,44,0): 164, 49, 0, 0, 61, 202, 202, 164, 150, 444409, (34,45,0): 168, 49, 0, 0, 62, 200, 200, 68, 69, 444509, (34,46,0): 165, 49, 0, 0, 62, 197, 197, 68, 69, 444609, (34,47,0): 162, 49, 0, 0, 61, 227, 227, 164, 197, 444709, (34,48,0): 167, 48, 0, 0, 56, 216, 216, 68, 69, 444809, (34,49,0): 170, 48, 0, 0, 57, 202, 202, 109, 212, 444909, (35,0,0): 174, 41, 0, 0, 47, 247, 247, 110, 207, 450009, (35,1,0): 176, 42, 0, 0, 47, 248, 248, 110, 28, 450109, (35,2,0): 177, 42, 0, 0, 48, 255, 255, 58, 24, 450209, (35,3,0): 177, 43, 0, 0, 49, 255, 255, 153, 241, 450309, (35,4,0): 177, 43, 0, 0, 50, 255, 255, 62, 204, 450409, (35,5,0): 177, 43, 0, 0, 51, 255, 255, 66, 185, 450509, (35,6,0): 176, 44, 0, 0, 53, 255, 255, 18, 204, 450609, (35,7,0): 174, 44, 0, 0, 54, 254, 254, 185, 185, 450709, (35,8,0): 174, 45, 0, 0, 56, 238, 238, 33, 241, 450809, (35,9,0): 175, 45, 0, 0, 57, 229, 229, 79, 194, 450909, (35,10,0): 177, 46, 0, 0, 59, 227, 227, 232, 196, 451009, (35,11,0): 177, 46, 0, 0, 61, 221, 221, 33, 75, 451109, (35,12,0): 177, 46, 0, 0, 63, 211, 211, 18, 151, 451209, (35,13,0): 176, 46, 0, 0, 65, 209, 209, 185, 151, 451309, (35,14,0): 177, 46, 0, 0, 66, 218, 218, 119, 56, 451409, (35,15,0): 177, 46, 0, 0, 67, 226, 226, 117, 151, 451509, (35,16,0): 177, 46, 0, 0, 72, 232, 232, 117, 151, 451609, (35,17,0): 177, 46, 0, 0, 74, 238, 238, 35, 56, 451709, (35,18,0): 177, 46, 0, 0, 75, 242, 242, 117, 29, 451809, (35,19,0): 178, 46, 0, 0, 77, 242, 242, 245, 189, 451909, (35,20,0): 178, 49, 0, 0, 80, 239, 239, 117, 214, 452009, (35,21,0): 178, 49, 0, 0, 79, 238, 238, 88, 214, 452109, (35,22,0): 178, 49, 0, 0, 81, 229, 229, 140, 214, 452209, (35,23,0): 178, 49, 0, 0, 79, 220, 220, 35, 214, 452309, (35,24,0): 177, 49, 0, 0, 76, 209, 209, 185, 214, 452409, (35,25,0): 177, 49, 0, 0, 81, 210, 210, 251, 151, 452509, (35,26,0): 176, 49, 0, 0, 94, 236, 236, 153, 214, 452609, (35,27,0): 175, 49, 0, 0, 109, 187, 187, 142, 151, 452709, (35,28,0): 172, 49, 0, 0, 122, 196, 196, 110, 214, 452809, (35,29,0): 172, 49, 0, 0, 129, 223, 223, 188, 214, 452909, (35,30,0): 173, 49, 0, 0, 128, 200, 200, 98, 214, 453009, (35,31,0): 175, 49, 0, 0, 128, 205, 205, 188, 214, 453109, (35,32,0): 175, 49, 0, 0, 123, 222, 222, 94, 151, 453209, (35,33,0): 175, 49, 0, 0, 114, 232, 232, 196, 214, 453309, (35,34,0): 174, 48, 0, 0, 101, 226, 226, 159, 151, 453409, (35,35,0): 169, 48, 0, 0, 89, 216, 216, 196, 56, 453509, (35,36,0): 157, 49, 0, 0, 84, 218, 218, 127, 69, 453609, (35,37,0): 153, 49, 0, 0, 77, 226, 226, 127, 29, 453709, (35,38,0): 156, 49, 0, 0, 71, 229, 229, 196, 85, 453809, (35,39,0): 157, 49, 0, 0, 66, 223, 223, 159, 85, 453909, (35,40,0): 158, 49, 0, 0, 68, 213, 213, 218, 244, 454009, (35,41,0): 158, 49, 0, 0, 64, 207, 207, 159, 212, 454109, (35,42,0): 157, 49, 0, 0, 60, 203, 203, 68, 56, 454209, (35,43,0): 158, 49, 0, 0, 59, 204, 204, 159, 56, 454309, (35,44,0): 164, 48, 0, 0, 59, 205, 205, 218, 151, 454409, (35,45,0): 167, 48, 0, 0, 60, 203, 203, 68, 151, 454509, (35,46,0): 163, 48, 0, 0, 61, 197, 197, 112, 151, 454609, (35,47,0): 162, 48, 0, 0, 59, 236, 236, 112, 115, 454709, (35,48,0): 167, 49, 0, 0, 58, 224, 224, 67, 189, 454809, (35,49,0): 170, 49, 0, 0, 57, 200, 200, 112, 56, 454909, (36,0,0): 176, 41, 0, 0, 49, 248, 248, 7, 51, 460009, (36,1,0): 177, 42, 0, 0, 49, 250, 250, 196, 14, 460109, (36,2,0): 177, 42, 0, 0, 48, 255, 255, 196, 63, 460209, (36,3,0): 178, 43, 0, 0, 48, 255, 255, 163, 18, 460309, (36,4,0): 177, 43, 0, 0, 49, 255, 255, 62, 66, 460409, (36,5,0): 176, 43, 0, 0, 50, 255, 255, 125, 185, 460509, (36,6,0): 175, 44, 0, 0, 52, 252, 252, 185, 66, 460609, (36,7,0): 175, 44, 0, 0, 53, 244, 244, 119, 38, 460709, (36,8,0): 176, 45, 0, 0, 55, 245, 245, 35, 100, 460809, (36,9,0): 176, 45, 0, 0, 56, 244, 244, 232, 24, 460909, (36,10,0): 175, 46, 0, 0, 57, 228, 228, 33, 237, 461009, (36,11,0): 174, 46, 0, 0, 59, 218, 218, 185, 59, 461109, (36,12,0): 175, 47, 0, 0, 61, 219, 219, 79, 56, 461209, (36,13,0): 177, 47, 0, 0, 63, 221, 221, 18, 189, 461309, (36,14,0): 177, 47, 0, 0, 65, 218, 218, 33, 69, 461409, (36,15,0): 177, 47, 0, 0, 68, 241, 241, 232, 56, 461509, (36,16,0): 177, 47, 0, 0, 73, 244, 244, 232, 56, 461609, (36,17,0): 178, 47, 0, 0, 76, 247, 247, 35, 151, 461709, (36,18,0): 177, 47, 0, 0, 78, 246, 246, 88, 151, 461809, (36,19,0): 177, 47, 0, 0, 80, 246, 246, 140, 151, 461909, (36,20,0): 178, 49, 0, 0, 82, 248, 248, 88, 214, 462009, (36,21,0): 178, 49, 0, 0, 82, 249, 249, 140, 214, 462109, (36,22,0): 178, 49, 0, 0, 83, 244, 244, 245, 151, 462209, (36,23,0): 178, 49, 0, 0, 81, 219, 219, 35, 214, 462309, (36,24,0): 178, 49, 0, 0, 79, 218, 218, 120, 151, 462409, (36,25,0): 177, 49, 0, 0, 86, 215, 215, 241, 214, 462509, (36,26,0): 176, 49, 0, 0, 102, 228, 228, 163, 214, 462609, (36,27,0): 174, 49, 0, 0, 119, 228, 228, 110, 214, 462709, (36,28,0): 173, 50, 0, 0, 134, 206, 206, 188, 214, 462809, (36,29,0): 174, 50, 0, 0, 141, 209, 209, 162, 214, 462909, (36,30,0): 176, 50, 0, 0, 143, 193, 193, 94, 151, 463009, (36,31,0): 176, 50, 0, 0, 143, 212, 212, 247, 214, 463109, (36,32,0): 176, 49, 0, 0, 142, 225, 225, 94, 214, 463209, (36,33,0): 177, 49, 0, 0, 135, 232, 232, 127, 151, 463309, (36,34,0): 174, 48, 0, 0, 123, 224, 224, 218, 151, 463409, (36,35,0): 163, 48, 0, 0, 112, 216, 216, 159, 151, 463509, (36,36,0): 154, 49, 0, 0, 105, 217, 217, 127, 56, 463609, (36,37,0): 155, 49, 0, 0, 95, 221, 221, 159, 69, 463709, (36,38,0): 159, 49, 0, 0, 85, 221, 221, 127, 115, 463809, (36,39,0): 160, 49, 0, 0, 78, 212, 212, 127, 69, 463909, (36,40,0): 157, 49, 0, 0, 75, 207, 207, 196, 69, 464009, (36,41,0): 158, 49, 0, 0, 69, 201, 201, 159, 56, 464109, (36,42,0): 158, 49, 0, 0, 63, 199, 199, 159, 56, 464209, (36,43,0): 158, 49, 0, 0, 59, 200, 200, 112, 151, 464309, (36,44,0): 164, 47, 0, 0, 57, 202, 202, 98, 151, 464409, (36,45,0): 166, 47, 0, 0, 57, 202, 202, 127, 151, 464509, (36,46,0): 162, 48, 0, 0, 56, 198, 198, 98, 214, 464609, (36,47,0): 163, 48, 0, 0, 56, 237, 237, 109, 214, 464709, (36,48,0): 169, 49, 0, 0, 54, 225, 225, 98, 214, 464809, (36,49,0): 171, 49, 0, 0, 55, 201, 201, 68, 151, 464909, (37,0,0): 177, 41, 0, 0, 54, 239, 239, 196, 51, 470009, (37,1,0): 178, 42, 0, 0, 52, 240, 240, 74, 62, 470109, (37,2,0): 178, 42, 0, 0, 51, 247, 247, 153, 28, 470209, (37,3,0): 178, 43, 0, 0, 49, 253, 253, 194, 241, 470309, (37,4,0): 175, 43, 0, 0, 49, 252, 252, 241, 14, 470409, (37,5,0): 173, 43, 0, 0, 50, 251, 251, 55, 66, 470509, (37,6,0): 175, 44, 0, 0, 51, 248, 248, 33, 195, 470609, (37,7,0): 177, 44, 0, 0, 52, 244, 244, 33, 66, 470709, (37,8,0): 176, 45, 0, 0, 54, 241, 241, 232, 194, 470809, (37,9,0): 173, 45, 0, 0, 55, 242, 242, 232, 142, 470909, (37,10,0): 171, 46, 0, 0, 56, 239, 239, 79, 188, 471009, (37,11,0): 172, 46, 0, 0, 58, 238, 238, 55, 59, 471109, (37,12,0): 174, 47, 0, 0, 60, 238, 238, 35, 122, 471209, (37,13,0): 176, 47, 0, 0, 62, 233, 233, 79, 165, 471309, (37,14,0): 177, 47, 0, 0, 64, 229, 229, 117, 4, 471409, (37,15,0): 176, 47, 0, 0, 66, 240, 240, 88, 115, 471509, (37,16,0): 177, 47, 0, 0, 74, 243, 243, 117, 69, 471609, (37,17,0): 176, 47, 0, 0, 77, 246, 246, 35, 56, 471709, (37,18,0): 175, 47, 0, 0, 79, 246, 246, 88, 56, 471809, (37,19,0): 176, 47, 0, 0, 82, 245, 245, 140, 151, 471909, (37,20,0): 176, 50, 0, 0, 84, 245, 245, 117, 56, 472009, (37,21,0): 176, 50, 0, 0, 84, 243, 243, 35, 189, 472109, (37,22,0): 177, 50, 0, 0, 83, 237, 237, 35, 151, 472209, (37,23,0): 177, 50, 0, 0, 82, 220, 220, 119, 214, 472309, (37,24,0): 177, 50, 0, 0, 81, 226, 226, 55, 151, 472409, (37,25,0): 177, 50, 0, 0, 90, 218, 218, 103, 89, 472509, (37,26,0): 175, 50, 0, 0, 108, 223, 223, 153, 151, 472609, (37,27,0): 172, 50, 0, 0, 127, 255, 255, 192, 151, 472709, (37,28,0): 172, 52, 0, 0, 140, 229, 229, 198, 151, 472809, (37,29,0): 175, 51, 0, 0, 150, 209, 209, 152, 151, 472909, (37,30,0): 177, 51, 0, 0, 153, 206, 206, 165, 214, 473009, (37,31,0): 177, 50, 0, 0, 154, 217, 217, 165, 151, 473109, (37,32,0): 178, 49, 0, 0, 153, 223, 223, 165, 56, 473209, (37,33,0): 177, 49, 0, 0, 148, 224, 224, 98, 151, 473309, (37,34,0): 167, 48, 0, 0, 140, 219, 219, 127, 151, 473409, (37,35,0): 156, 48, 0, 0, 134, 213, 213, 159, 151, 473509, (37,36,0): 155, 49, 0, 0, 129, 214, 214, 218, 56, 473609, (37,37,0): 161, 49, 0, 0, 120, 214, 214, 127, 56, 473709, (37,38,0): 164, 49, 0, 0, 110, 210, 210, 159, 212, 473809, (37,39,0): 163, 49, 0, 0, 102, 200, 200, 159, 56, 473909, (37,40,0): 159, 49, 0, 0, 93, 195, 195, 112, 56, 474009, (37,41,0): 157, 49, 0, 0, 86, 194, 194, 127, 151, 474109, (37,42,0): 158, 49, 0, 0, 77, 196, 196, 218, 151, 474209, (37,43,0): 158, 49, 0, 0, 68, 197, 197, 101, 151, 474309, (37,44,0): 163, 47, 0, 0, 62, 198, 198, 68, 214, 474409, (37,45,0): 165, 47, 0, 0, 59, 198, 198, 127, 214, 474509, (37,46,0): 164, 47, 0, 0, 59, 197, 197, 164, 214, 474609, (37,47,0): 165, 48, 0, 0, 55, 235, 235, 164, 214, 474709, (37,48,0): 170, 49, 0, 0, 53, 225, 225, 112, 214, 474809, (37,49,0): 172, 50, 0, 0, 52, 201, 201, 167, 214, 474909, (38,0,0): 178, 41, 0, 0, 60, 230, 230, 60, 252, 480009, (38,1,0): 178, 41, 0, 0, 59, 234, 234, 60, 187, 480109, (38,2,0): 178, 42, 0, 0, 56, 240, 240, 28, 180, 480209, (38,3,0): 178, 43, 0, 0, 53, 245, 245, 62, 14, 480309, (38,4,0): 175, 43, 0, 0, 52, 246, 246, 241, 185, 480409, (38,5,0): 173, 43, 0, 0, 52, 250, 250, 79, 72, 480509, (38,6,0): 172, 44, 0, 0, 53, 251, 251, 185, 125, 480609, (38,7,0): 176, 44, 0, 0, 54, 253, 253, 33, 55, 480709, (38,8,0): 175, 45, 0, 0, 55, 228, 228, 232, 38, 480809, (38,9,0): 171, 45, 0, 0, 56, 229, 229, 35, 153, 480909, (38,10,0): 171, 46, 0, 0, 57, 255, 255, 232, 15, 481009, (38,11,0): 172, 46, 0, 0, 59, 255, 255, 33, 198, 481109, (38,12,0): 172, 47, 0, 0, 61, 255, 255, 79, 45, 481209, (38,13,0): 173, 47, 0, 0, 63, 242, 242, 79, 23, 481309, (38,14,0): 177, 47, 0, 0, 65, 244, 244, 232, 148, 481409, (38,15,0): 178, 47, 0, 0, 67, 232, 232, 35, 4, 481509, (38,16,0): 177, 47, 0, 0, 74, 237, 237, 117, 4, 481609, (38,17,0): 177, 47, 0, 0, 77, 241, 241, 140, 85, 481709, (38,18,0): 176, 47, 0, 0, 80, 244, 244, 140, 83, 481809, (38,19,0): 177, 47, 0, 0, 83, 241, 241, 88, 83, 481909, (38,20,0): 175, 50, 0, 0, 87, 234, 234, 140, 75, 482009, (38,21,0): 175, 50, 0, 0, 85, 225, 225, 117, 29, 482109, (38,22,0): 176, 50, 0, 0, 85, 215, 215, 35, 151, 482209, (38,23,0): 176, 50, 0, 0, 83, 216, 216, 35, 248, 482309, (38,24,0): 176, 50, 0, 0, 83, 218, 218, 33, 151, 482409, (38,25,0): 177, 50, 0, 0, 93, 212, 212, 66, 189, 482509, (38,26,0): 174, 50, 0, 0, 110, 229, 229, 24, 151, 482609, (38,27,0): 171, 50, 0, 0, 130, 255, 255, 246, 248, 482709, (38,28,0): 171, 52, 0, 0, 145, 245, 245, 157, 56, 482809, (38,29,0): 174, 52, 0, 0, 154, 221, 221, 193, 151, 482909, (38,30,0): 177, 51, 0, 0, 159, 229, 229, 248, 56, 483009, (38,31,0): 178, 50, 0, 0, 162, 219, 219, 122, 56, 483109, (38,32,0): 177, 49, 0, 0, 161, 218, 218, 122, 56, 483209, (38,33,0): 169, 49, 0, 0, 158, 213, 213, 162, 56, 483309, (38,34,0): 158, 48, 0, 0, 153, 210, 210, 162, 56, 483409, (38,35,0): 158, 48, 0, 0, 149, 209, 209, 68, 151, 483509, (38,36,0): 166, 49, 0, 0, 148, 208, 208, 127, 151, 483609, (38,37,0): 170, 49, 0, 0, 144, 205, 205, 247, 56, 483709, (38,38,0): 168, 51, 0, 0, 137, 198, 198, 112, 56, 483809, (38,39,0): 165, 49, 0, 0, 130, 190, 190, 127, 56, 483909, (38,40,0): 161, 51, 0, 0, 122, 185, 185, 127, 56, 484009, (38,41,0): 158, 49, 0, 0, 114, 187, 187, 159, 214, 484109, (38,42,0): 158, 51, 0, 0, 102, 191, 191, 68, 214, 484209, (38,43,0): 161, 49, 0, 0, 88, 192, 192, 127, 214, 484309, (38,44,0): 163, 48, 0, 0, 80, 191, 191, 247, 214, 484409, (38,45,0): 164, 47, 0, 0, 73, 192, 192, 112, 89, 484509, (38,46,0): 163, 49, 0, 0, 70, 197, 197, 68, 89, 484609, (38,47,0): 168, 48, 0, 0, 67, 229, 229, 164, 89, 484709, (38,48,0): 171, 51, 0, 0, 63, 220, 220, 200, 214, 484809, (38,49,0): 172, 50, 0, 0, 61, 202, 202, 159, 214, 484909, (39,0,0): 178, 41, 0, 0, 64, 232, 232, 153, 100, 490009, (39,1,0): 178, 39, 0, 0, 61, 235, 235, 60, 28, 490109, (39,2,0): 178, 42, 0, 0, 58, 240, 240, 60, 14, 490209, (39,3,0): 177, 42, 0, 0, 55, 242, 242, 194, 195, 490309, (39,4,0): 177, 43, 0, 0, 53, 245, 245, 28, 66, 490409, (39,5,0): 174, 44, 0, 0, 53, 252, 252, 185, 241, 490509, (39,6,0): 174, 44, 0, 0, 53, 255, 255, 33, 156, 490609, (39,7,0): 175, 44, 0, 0, 54, 245, 245, 232, 219, 490709, (39,8,0): 172, 44, 0, 0, 55, 229, 229, 245, 194, 490809, (39,9,0): 170, 44, 0, 0, 55, 238, 238, 117, 28, 490909, (39,10,0): 170, 44, 0, 0, 57, 255, 255, 232, 153, 491009, (39,11,0): 172, 44, 0, 0, 59, 255, 255, 232, 7, 491109, (39,12,0): 170, 47, 0, 0, 61, 255, 255, 35, 7, 491209, (39,13,0): 172, 47, 0, 0, 63, 245, 245, 35, 196, 491309, (39,14,0): 177, 48, 0, 0, 64, 247, 247, 139, 149, 491409, (39,15,0): 178, 48, 0, 0, 66, 238, 238, 245, 211, 491509, (39,16,0): 178, 49, 0, 0, 74, 237, 237, 140, 82, 491609, (39,17,0): 178, 49, 0, 0, 77, 237, 237, 140, 82, 491709, (39,18,0): 178, 50, 0, 0, 82, 233, 233, 140, 148, 491809, (39,19,0): 177, 50, 0, 0, 86, 227, 227, 245, 47, 491909, (39,20,0): 176, 49, 0, 0, 87, 219, 219, 139, 211, 492009, (39,21,0): 175, 49, 0, 0, 88, 206, 206, 35, 59, 492109, (39,22,0): 174, 49, 0, 0, 87, 199, 199, 35, 115, 492209, (39,23,0): 174, 49, 0, 0, 84, 203, 203, 119, 29, 492309, (39,24,0): 175, 49, 0, 0, 83, 199, 199, 55, 69, 492409, (39,25,0): 174, 49, 0, 0, 94, 208, 208, 241, 56, 492509, (39,26,0): 172, 49, 0, 0, 112, 242, 242, 192, 69, 492609, (39,27,0): 172, 49, 0, 0, 130, 246, 246, 157, 115, 492709, (39,28,0): 174, 50, 0, 0, 145, 242, 242, 193, 69, 492809, (39,29,0): 176, 50, 0, 0, 156, 219, 219, 248, 69, 492909, (39,30,0): 178, 50, 0, 0, 163, 226, 226, 248, 69, 493009, (39,31,0): 178, 50, 0, 0, 167, 220, 220, 122, 69, 493109, (39,32,0): 171, 50, 0, 0, 170, 212, 212, 165, 115, 493209, (39,33,0): 158, 50, 0, 0, 166, 206, 206, 197, 115, 493309, (39,34,0): 159, 50, 0, 0, 161, 205, 205, 158, 212, 493409, (39,35,0): 169, 50, 0, 0, 160, 207, 207, 191, 212, 493509, (39,36,0): 176, 51, 0, 0, 159, 207, 207, 85, 56, 493609, (39,37,0): 176, 51, 0, 0, 157, 202, 202, 98, 56, 493709, (39,38,0): 171, 52, 0, 0, 153, 194, 194, 127, 56, 493809, (39,39,0): 166, 51, 0, 0, 149, 185, 185, 159, 151, 493909, (39,40,0): 163, 52, 0, 0, 146, 179, 179, 159, 151, 494009, (39,41,0): 159, 51, 0, 0, 137, 181, 181, 159, 151, 494109, (39,42,0): 160, 52, 0, 0, 121, 184, 184, 159, 214, 494209, (39,43,0): 163, 51, 0, 0, 106, 185, 185, 164, 214, 494309, (39,44,0): 163, 52, 0, 0, 96, 182, 182, 101, 214, 494409, (39,45,0): 164, 50, 0, 0, 88, 188, 188, 94, 89, 494509, (39,46,0): 164, 50, 0, 0, 82, 198, 198, 127, 214, 494609, (39,47,0): 170, 49, 0, 0, 79, 219, 219, 159, 178, 494709, (39,48,0): 172, 51, 0, 0, 78, 217, 217, 164, 214, 494809, (39,49,0): 173, 51, 0, 0, 75, 206, 206, 218, 214, 494909, (40,0,0): 178, 39, 0, 0, 66, 241, 241, 196, 66, 500009, (40,1,0): 178, 40, 0, 0, 65, 242, 242, 194, 14, 500109, (40,2,0): 177, 40, 0, 0, 64, 243, 243, 62, 234, 500209, (40,3,0): 176, 42, 0, 0, 62, 242, 242, 194, 66, 500309, (40,4,0): 176, 43, 0, 0, 60, 244, 244, 28, 241, 500409, (40,5,0): 177, 44, 0, 0, 58, 254, 254, 66, 156, 500509, (40,6,0): 177, 44, 0, 0, 56, 255, 255, 18, 62, 500609, (40,7,0): 174, 44, 0, 0, 55, 230, 230, 33, 100, 500709, (40,8,0): 171, 44, 0, 0, 54, 248, 248, 117, 194, 500809, (40,9,0): 170, 44, 0, 0, 54, 255, 255, 232, 153, 500909, (40,10,0): 171, 44, 0, 0, 55, 255, 255, 33, 163, 501009, (40,11,0): 173, 44, 0, 0, 56, 252, 252, 232, 153, 501109, (40,12,0): 173, 47, 0, 0, 59, 250, 250, 245, 60, 501209, (40,13,0): 175, 48, 0, 0, 62, 244, 244, 140, 7, 501309, (40,14,0): 177, 48, 0, 0, 65, 233, 233, 245, 149, 501409, (40,15,0): 178, 49, 0, 0, 69, 243, 243, 140, 82, 501509, (40,16,0): 178, 49, 0, 0, 73, 234, 234, 140, 148, 501609, (40,17,0): 178, 50, 0, 0, 77, 221, 221, 88, 148, 501709, (40,18,0): 178, 50, 0, 0, 82, 210, 210, 140, 39, 501809, (40,19,0): 178, 50, 0, 0, 85, 202, 202, 245, 149, 501909, (40,20,0): 177, 49, 0, 0, 87, 194, 194, 139, 148, 502009, (40,21,0): 176, 49, 0, 0, 88, 189, 189, 35, 217, 502109, (40,22,0): 175, 49, 0, 0, 90, 188, 188, 139, 4, 502209, (40,23,0): 176, 49, 0, 0, 91, 196, 196, 119, 43, 502309, (40,24,0): 177, 49, 0, 0, 84, 192, 192, 185, 165, 502409, (40,25,0): 175, 49, 0, 0, 88, 217, 217, 100, 43, 502509, (40,26,0): 173, 49, 0, 0, 103, 250, 250, 246, 158, 502609, (40,27,0): 175, 49, 0, 0, 124, 221, 221, 249, 43, 502709, (40,28,0): 176, 50, 0, 0, 141, 225, 225, 178, 65, 502809, (40,29,0): 177, 50, 0, 0, 151, 207, 207, 248, 191, 502909, (40,30,0): 179, 50, 0, 0, 158, 207, 207, 189, 65, 503009, (40,31,0): 177, 50, 0, 0, 165, 224, 224, 189, 13, 503109, (40,32,0): 166, 50, 0, 0, 170, 212, 212, 165, 244, 503209, (40,33,0): 158, 50, 0, 0, 171, 202, 202, 115, 150, 503309, (40,34,0): 165, 50, 0, 0, 172, 202, 202, 247, 212, 503409, (40,35,0): 172, 50, 0, 0, 172, 206, 206, 82, 212, 503509, (40,36,0): 175, 52, 0, 0, 170, 205, 205, 98, 56, 503609, (40,37,0): 175, 52, 0, 0, 170, 203, 203, 67, 212, 503709, (40,38,0): 172, 52, 0, 0, 168, 196, 196, 112, 212, 503809, (40,39,0): 167, 52, 0, 0, 169, 180, 180, 127, 56, 503909, (40,40,0): 163, 52, 0, 0, 159, 173, 173, 68, 151, 504009, (40,41,0): 159, 52, 0, 0, 153, 175, 175, 68, 151, 504109, (40,42,0): 159, 52, 0, 0, 141, 179, 179, 163, 214, 504209, (40,43,0): 163, 52, 0, 0, 129, 177, 177, 159, 214, 504309, (40,44,0): 162, 52, 0, 0, 116, 175, 175, 127, 214, 504409, (40,45,0): 163, 51, 0, 0, 104, 186, 186, 164, 89, 504509, (40,46,0): 164, 50, 0, 0, 93, 202, 202, 159, 214, 504609, (40,47,0): 170, 50, 0, 0, 88, 214, 214, 159, 89, 504709, (40,48,0): 173, 51, 0, 0, 88, 216, 216, 164, 214, 504809, (40,49,0): 173, 52, 0, 0, 89, 212, 212, 164, 214, 504909, (41,0,0): 177, 39, 0, 0, 67, 243, 243, 7, 195, 510009, (41,1,0): 178, 40, 0, 0, 66, 242, 242, 62, 66, 510109, (41,2,0): 177, 40, 0, 0, 65, 242, 242, 233, 195, 510209, (41,3,0): 178, 43, 0, 0, 63, 240, 240, 233, 66, 510309, (41,4,0): 178, 44, 0, 0, 61, 243, 243, 241, 66, 510409, (41,5,0): 178, 45, 0, 0, 59, 254, 254, 14, 14, 510509, (41,6,0): 177, 45, 0, 0, 58, 255, 255, 66, 241, 510609, (41,7,0): 175, 45, 0, 0, 57, 240, 240, 79, 28, 510709, (41,8,0): 175, 45, 0, 0, 55, 255, 255, 232, 194, 510809, (41,9,0): 173, 45, 0, 0, 55, 255, 255, 33, 100, 510909, (41,10,0): 174, 45, 0, 0, 55, 247, 247, 33, 194, 511009, (41,11,0): 176, 45, 0, 0, 56, 236, 236, 35, 250, 511109, (41,12,0): 177, 48, 0, 0, 58, 239, 239, 140, 60, 511209, (41,13,0): 178, 48, 0, 0, 61, 234, 234, 245, 60, 511309, (41,14,0): 178, 48, 0, 0, 64, 217, 217, 140, 7, 511409, (41,15,0): 178, 49, 0, 0, 68, 235, 235, 245, 39, 511509, (41,16,0): 178, 49, 0, 0, 72, 221, 221, 88, 39, 511609, (41,17,0): 178, 50, 0, 0, 76, 201, 201, 140, 77, 511709, (41,18,0): 178, 50, 0, 0, 81, 186, 186, 140, 73, 511809, (41,19,0): 178, 51, 0, 0, 84, 177, 177, 140, 73, 511909, (41,20,0): 178, 49, 0, 0, 86, 171, 171, 140, 159, 512009, (41,21,0): 177, 49, 0, 0, 87, 165, 165, 35, 149, 512109, (41,22,0): 178, 49, 0, 0, 89, 168, 168, 35, 127, 512209, (41,23,0): 178, 49, 0, 0, 90, 184, 184, 33, 148, 512309, (41,24,0): 177, 49, 0, 0, 85, 188, 188, 219, 148, 512409, (41,25,0): 176, 49, 0, 0, 87, 221, 221, 28, 148, 512509, (41,26,0): 177, 49, 0, 0, 101, 225, 225, 93, 10, 512609, (41,27,0): 177, 49, 0, 0, 121, 205, 205, 193, 148, 512709, (41,28,0): 177, 50, 0, 0, 138, 205, 205, 248, 82, 512809, (41,29,0): 177, 50, 0, 0, 148, 193, 193, 214, 82, 512909, (41,30,0): 179, 50, 0, 0, 155, 201, 201, 151, 82, 513009, (41,31,0): 175, 50, 0, 0, 163, 228, 228, 214, 54, 513109, (41,32,0): 164, 50, 0, 0, 171, 213, 213, 56, 255, 513209, (41,33,0): 163, 50, 0, 0, 172, 201, 201, 115, 13, 513309, (41,34,0): 171, 50, 0, 0, 174, 200, 200, 112, 212, 513409, (41,35,0): 174, 50, 0, 0, 175, 201, 201, 68, 212, 513509, (41,36,0): 175, 52, 0, 0, 176, 200, 200, 67, 212, 513609, (41,37,0): 173, 52, 0, 0, 175, 200, 200, 101, 212, 513709, (41,38,0): 170, 52, 0, 0, 175, 196, 196, 164, 69, 513809, (41,39,0): 168, 52, 0, 0, 175, 177, 177, 247, 69, 513909, (41,40,0): 163, 52, 0, 0, 169, 166, 166, 158, 56, 514009, (41,41,0): 156, 52, 0, 0, 162, 168, 168, 98, 151, 514109, (41,42,0): 159, 52, 0, 0, 152, 172, 172, 68, 151, 514209, (41,43,0): 163, 52, 0, 0, 140, 171, 171, 159, 214, 514309, (41,44,0): 164, 52, 0, 0, 128, 172, 172, 159, 214, 514409, (41,45,0): 162, 52, 0, 0, 117, 188, 188, 127, 214, 514509, (41,46,0): 165, 51, 0, 0, 105, 211, 211, 127, 214, 514609, (41,47,0): 173, 51, 0, 0, 99, 214, 214, 127, 214, 514709, (41,48,0): 174, 51, 0, 0, 96, 221, 221, 164, 214, 514809, (41,49,0): 173, 52, 0, 0, 96, 219, 219, 164, 151, 514909, (42,0,0): 177, 40, 0, 0, 69, 236, 236, 20, 241, 520009, (42,1,0): 176, 41, 0, 0, 69, 237, 237, 233, 66, 520109, (42,2,0): 176, 41, 0, 0, 67, 238, 238, 38, 204, 520209, (42,3,0): 177, 43, 0, 0, 65, 237, 237, 38, 66, 520309, (42,4,0): 178, 44, 0, 0, 63, 239, 239, 66, 156, 520409, (42,5,0): 178, 45, 0, 0, 61, 253, 253, 241, 241, 520509, (42,6,0): 177, 45, 0, 0, 60, 255, 255, 195, 241, 520609, (42,7,0): 177, 45, 0, 0, 59, 255, 255, 79, 100, 520709, (42,8,0): 177, 45, 0, 0, 56, 254, 254, 232, 194, 520809, (42,9,0): 176, 45, 0, 0, 56, 247, 247, 117, 62, 520909, (42,10,0): 177, 45, 0, 0, 55, 242, 242, 35, 20, 521009, (42,11,0): 178, 45, 0, 0, 56, 242, 242, 117, 102, 521109, (42,12,0): 178, 48, 0, 0, 58, 240, 240, 88, 228, 521209, (42,13,0): 178, 49, 0, 0, 61, 227, 227, 245, 31, 521309, (42,14,0): 178, 49, 0, 0, 63, 210, 210, 245, 31, 521409, (42,15,0): 178, 49, 0, 0, 67, 218, 218, 245, 73, 521509, (42,16,0): 178, 50, 0, 0, 71, 205, 205, 140, 218, 521609, (42,17,0): 178, 51, 0, 0, 74, 187, 187, 245, 209, 521709, (42,18,0): 178, 51, 0, 0, 78, 175, 175, 245, 209, 521809, (42,19,0): 178, 51, 0, 0, 82, 168, 168, 140, 101, 521909, (42,20,0): 178, 50, 0, 0, 84, 162, 162, 88, 31, 522009, (42,21,0): 177, 50, 0, 0, 87, 155, 155, 140, 101, 522109, (42,22,0): 178, 50, 0, 0, 89, 157, 157, 35, 218, 522209, (42,23,0): 178, 50, 0, 0, 89, 170, 170, 55, 218, 522309, (42,24,0): 178, 50, 0, 0, 87, 178, 178, 219, 218, 522409, (42,25,0): 178, 50, 0, 0, 88, 210, 210, 180, 73, 522509, (42,26,0): 178, 50, 0, 0, 98, 187, 187, 188, 218, 522609, (42,27,0): 178, 50, 0, 0, 115, 196, 196, 157, 73, 522709, (42,28,0): 178, 50, 0, 0, 133, 190, 190, 193, 39, 522809, (42,29,0): 178, 50, 0, 0, 144, 189, 189, 248, 10, 522909, (42,30,0): 178, 50, 0, 0, 152, 206, 206, 151, 68, 523009, (42,31,0): 169, 50, 0, 0, 160, 229, 229, 151, 96, 523109, (42,32,0): 163, 50, 0, 0, 170, 213, 213, 56, 167, 523209, (42,33,0): 171, 50, 0, 0, 173, 200, 200, 197, 65, 523309, (42,34,0): 173, 50, 0, 0, 175, 196, 196, 158, 191, 523409, (42,35,0): 173, 50, 0, 0, 177, 197, 197, 247, 227, 523509, (42,36,0): 176, 53, 0, 0, 179, 196, 196, 158, 150, 523609, (42,37,0): 174, 53, 0, 0, 180, 198, 198, 109, 244, 523709, (42,38,0): 170, 53, 0, 0, 181, 195, 195, 98, 13, 523809, (42,39,0): 169, 53, 0, 0, 181, 177, 177, 68, 115, 523909, (42,40,0): 161, 53, 0, 0, 175, 167, 167, 112, 212, 524009, (42,41,0): 154, 53, 0, 0, 172, 168, 168, 98, 56, 524109, (42,42,0): 158, 53, 0, 0, 163, 173, 173, 247, 69, 524209, (42,43,0): 162, 53, 0, 0, 153, 172, 172, 127, 151, 524309, (42,44,0): 163, 53, 0, 0, 142, 175, 175, 164, 151, 524409, (42,45,0): 162, 52, 0, 0, 131, 194, 194, 127, 151, 524509, (42,46,0): 169, 51, 0, 0, 120, 219, 219, 68, 214, 524609, (42,47,0): 174, 51, 0, 0, 115, 217, 217, 159, 151, 524709, (42,48,0): 172, 52, 0, 0, 107, 225, 225, 164, 56, 524809, (42,49,0): 172, 53, 0, 0, 105, 222, 222, 164, 212, 524909, (43,0,0): 178, 43, 0, 0, 73, 248, 248, 233, 180, 530009, (43,1,0): 177, 43, 0, 0, 72, 233, 233, 219, 241, 530109, (43,2,0): 177, 41, 0, 0, 70, 235, 235, 204, 66, 530209, (43,3,0): 177, 44, 0, 0, 68, 240, 240, 125, 241, 530309, (43,4,0): 177, 45, 0, 0, 66, 227, 227, 18, 100, 530409, (43,5,0): 178, 46, 0, 0, 64, 255, 255, 18, 14, 530509, (43,6,0): 177, 46, 0, 0, 63, 229, 229, 185, 14, 530609, (43,7,0): 177, 46, 0, 0, 62, 255, 255, 33, 194, 530709, (43,8,0): 177, 46, 0, 0, 58, 255, 255, 35, 194, 530809, (43,9,0): 177, 46, 0, 0, 57, 255, 255, 117, 241, 530909, (43,10,0): 178, 46, 0, 0, 57, 251, 251, 117, 251, 531009, (43,11,0): 178, 46, 0, 0, 57, 246, 246, 232, 102, 531109, (43,12,0): 178, 49, 0, 0, 58, 236, 236, 35, 20, 531209, (43,13,0): 178, 49, 0, 0, 60, 222, 222, 117, 20, 531309, (43,14,0): 178, 49, 0, 0, 62, 208, 208, 140, 20, 531409, (43,15,0): 178, 50, 0, 0, 64, 204, 204, 117, 92, 531509, (43,16,0): 178, 51, 0, 0, 69, 197, 197, 117, 92, 531609, (43,17,0): 178, 51, 0, 0, 73, 184, 184, 117, 92, 531709, (43,18,0): 178, 51, 0, 0, 76, 167, 167, 245, 213, 531809, (43,19,0): 177, 52, 0, 0, 79, 156, 156, 117, 92, 531909, (43,20,0): 177, 50, 0, 0, 82, 154, 154, 35, 213, 532009, (43,21,0): 178, 50, 0, 0, 85, 157, 157, 139, 92, 532109, (43,22,0): 177, 50, 0, 0, 87, 160, 160, 119, 254, 532209, (43,23,0): 178, 50, 0, 0, 87, 167, 167, 33, 250, 532309, (43,24,0): 178, 50, 0, 0, 88, 174, 174, 241, 101, 532409, (43,25,0): 178, 50, 0, 0, 88, 194, 194, 153, 218, 532509, (43,26,0): 178, 50, 0, 0, 94, 191, 191, 192, 31, 532609, (43,27,0): 178, 50, 0, 0, 112, 189, 189, 157, 209, 532709, (43,28,0): 178, 50, 0, 0, 128, 196, 196, 152, 209, 532809, (43,29,0): 179, 50, 0, 0, 140, 197, 197, 152, 73, 532909, (43,30,0): 175, 50, 0, 0, 149, 212, 212, 189, 77, 533009, (43,31,0): 164, 50, 0, 0, 157, 219, 219, 56, 10, 533109, (43,32,0): 166, 50, 0, 0, 168, 218, 218, 56, 10, 533209, (43,33,0): 174, 50, 0, 0, 169, 209, 209, 197, 40, 533309, (43,34,0): 172, 50, 0, 0, 173, 200, 200, 158, 26, 533409, (43,35,0): 172, 50, 0, 0, 176, 196, 196, 82, 255, 533509, (43,36,0): 175, 53, 0, 0, 177, 199, 199, 109, 65, 533609, (43,37,0): 172, 53, 0, 0, 178, 203, 203, 244, 240, 533709, (43,38,0): 168, 53, 0, 0, 180, 197, 197, 109, 255, 533809, (43,39,0): 166, 53, 0, 0, 180, 188, 188, 127, 235, 533909, (43,40,0): 159, 53, 0, 0, 175, 179, 179, 159, 85, 534009, (43,41,0): 155, 53, 0, 0, 171, 173, 173, 68, 244, 534109, (43,42,0): 158, 53, 0, 0, 165, 171, 171, 127, 115, 534209, (43,43,0): 161, 53, 0, 0, 159, 179, 179, 127, 69, 534309, (43,44,0): 163, 53, 0, 0, 151, 195, 195, 112, 189, 534409, (43,45,0): 168, 53, 0, 0, 140, 210, 210, 159, 29, 534509, (43,46,0): 174, 52, 0, 0, 130, 216, 216, 164, 69, 534609, (43,47,0): 174, 52, 0, 0, 125, 228, 228, 218, 212, 534709, (43,48,0): 173, 52, 0, 0, 117, 223, 223, 164, 212, 534809, (43,49,0): 173, 54, 0, 0, 112, 218, 218, 68, 52, 534909, (44,0,0): 178, 43, 0, 0, 78, 237, 237, 250, 51, 540009, (44,1,0): 178, 44, 0, 0, 77, 234, 234, 20, 14, 540109, (44,2,0): 177, 42, 0, 0, 76, 253, 253, 233, 241, 540209, (44,3,0): 177, 44, 0, 0, 74, 216, 216, 204, 100, 540309, (44,4,0): 177, 45, 0, 0, 72, 238, 238, 18, 28, 540409, (44,5,0): 177, 46, 0, 0, 70, 250, 250, 185, 153, 540509, (44,6,0): 178, 46, 0, 0, 68, 213, 213, 116, 28, 540609, (44,7,0): 178, 46, 0, 0, 67, 255, 255, 33, 194, 540709, (44,8,0): 177, 46, 0, 0, 63, 255, 255, 35, 100, 540809, (44,9,0): 178, 46, 0, 0, 62, 255, 255, 11, 62, 540909, (44,10,0): 178, 46, 0, 0, 61, 253, 253, 232, 20, 541009, (44,11,0): 178, 46, 0, 0, 61, 247, 247, 33, 251, 541109, (44,12,0): 178, 49, 0, 0, 61, 231, 231, 232, 251, 541209, (44,13,0): 178, 50, 0, 0, 62, 218, 218, 245, 213, 541309, (44,14,0): 178, 50, 0, 0, 64, 210, 210, 117, 76, 541409, (44,15,0): 178, 51, 0, 0, 63, 193, 193, 117, 76, 541509, (44,16,0): 177, 51, 0, 0, 67, 194, 194, 245, 41, 541609, (44,17,0): 177, 52, 0, 0, 69, 188, 188, 139, 107, 541709, (44,18,0): 177, 52, 0, 0, 75, 172, 172, 35, 76, 541809, (44,19,0): 177, 52, 0, 0, 78, 154, 154, 232, 213, 541909, (44,20,0): 176, 51, 0, 0, 81, 147, 147, 35, 254, 542009, (44,21,0): 177, 51, 0, 0, 82, 146, 146, 232, 213, 542109, (44,22,0): 178, 51, 0, 0, 86, 147, 147, 232, 76, 542209, (44,23,0): 178, 51, 0, 0, 86, 158, 158, 185, 250, 542309, (44,24,0): 178, 51, 0, 0, 90, 176, 176, 241, 209, 542409, (44,25,0): 178, 51, 0, 0, 86, 209, 209, 153, 163, 542509, (44,26,0): 177, 51, 0, 0, 91, 206, 206, 192, 31, 542609, (44,27,0): 178, 51, 0, 0, 108, 195, 195, 198, 118, 542709, (44,28,0): 178, 50, 0, 0, 126, 198, 198, 59, 106, 542809, (44,29,0): 179, 50, 0, 0, 138, 209, 209, 122, 209, 542909, (44,30,0): 172, 50, 0, 0, 146, 235, 235, 151, 32, 543009, (44,31,0): 163, 50, 0, 0, 154, 216, 216, 56, 73, 543109, (44,32,0): 169, 50, 0, 0, 166, 214, 214, 56, 96, 543209, (44,33,0): 172, 50, 0, 0, 169, 208, 208, 115, 39, 543309, (44,34,0): 173, 50, 0, 0, 173, 199, 199, 85, 96, 543409, (44,35,0): 175, 50, 0, 0, 175, 198, 198, 98, 10, 543509, (44,36,0): 175, 54, 0, 0, 176, 202, 202, 148, 82, 543609, (44,37,0): 170, 54, 0, 0, 176, 208, 208, 164, 82, 543709, (44,38,0): 164, 54, 0, 0, 176, 206, 206, 68, 10, 543809, (44,39,0): 163, 54, 0, 0, 175, 199, 199, 112, 10, 543909, (44,40,0): 157, 54, 0, 0, 171, 194, 194, 112, 217, 544009, (44,41,0): 157, 54, 0, 0, 168, 194, 194, 127, 158, 544109, (44,42,0): 160, 54, 0, 0, 164, 195, 195, 164, 197, 544209, (44,43,0): 162, 54, 0, 0, 160, 201, 201, 164, 85, 544309, (44,44,0): 168, 54, 0, 0, 154, 209, 209, 218, 197, 544409, (44,45,0): 171, 53, 0, 0, 147, 216, 216, 127, 109, 544509, (44,46,0): 172, 52, 0, 0, 138, 222, 222, 68, 158, 544609, (44,47,0): 170, 52, 0, 0, 134, 228, 228, 68, 240, 544709, (44,48,0): 169, 53, 0, 0, 131, 222, 222, 68, 240, 544809, (44,49,0): 171, 54, 0, 0, 123, 218, 218, 68, 208, 544909, (45,0,0): 177, 43, 0, 0, 81, 245, 245, 207, 252, 550009, (45,1,0): 177, 44, 0, 0, 80, 231, 231, 24, 28, 550109, (45,2,0): 177, 44, 0, 0, 79, 225, 225, 28, 14, 550209, (45,3,0): 178, 45, 0, 0, 77, 234, 234, 14, 28, 550309, (45,4,0): 178, 46, 0, 0, 75, 255, 255, 241, 180, 550409, (45,5,0): 178, 47, 0, 0, 73, 237, 237, 185, 180, 550509, (45,6,0): 178, 47, 0, 0, 71, 255, 255, 79, 28, 550609, (45,7,0): 178, 47, 0, 0, 71, 255, 255, 128, 14, 550709, (45,8,0): 178, 47, 0, 0, 66, 242, 242, 117, 62, 550809, (45,9,0): 178, 47, 0, 0, 65, 239, 239, 11, 102, 550909, (45,10,0): 178, 47, 0, 0, 64, 241, 241, 35, 38, 551009, (45,11,0): 178, 47, 0, 0, 63, 235, 235, 35, 103, 551109, (45,12,0): 178, 50, 0, 0, 63, 222, 222, 117, 243, 551209, (45,13,0): 178, 50, 0, 0, 63, 214, 214, 35, 76, 551309, (45,14,0): 178, 50, 0, 0, 65, 214, 214, 139, 76, 551409, (45,15,0): 178, 51, 0, 0, 64, 194, 194, 117, 76, 551509, (45,16,0): 178, 51, 0, 0, 66, 194, 194, 117, 243, 551609, (45,17,0): 177, 52, 0, 0, 69, 189, 189, 245, 173, 551709, (45,18,0): 176, 52, 0, 0, 75, 181, 181, 245, 76, 551809, (45,19,0): 174, 53, 0, 0, 77, 173, 173, 35, 76, 551909, (45,20,0): 174, 51, 0, 0, 80, 168, 168, 139, 251, 552009, (45,21,0): 176, 51, 0, 0, 82, 162, 162, 79, 213, 552109, (45,22,0): 177, 51, 0, 0, 85, 157, 157, 55, 213, 552209, (45,23,0): 177, 51, 0, 0, 85, 155, 155, 185, 251, 552309, (45,24,0): 177, 51, 0, 0, 89, 169, 169, 62, 250, 552409, (45,25,0): 176, 51, 0, 0, 85, 199, 199, 142, 250, 552509, (45,26,0): 176, 51, 0, 0, 90, 194, 194, 188, 92, 552609, (45,27,0): 178, 51, 0, 0, 105, 188, 188, 25, 20, 552709, (45,28,0): 178, 50, 0, 0, 124, 200, 200, 193, 92, 552809, (45,29,0): 178, 50, 0, 0, 137, 215, 215, 122, 20, 552909, (45,30,0): 169, 50, 0, 0, 147, 244, 244, 29, 215, 553009, (45,31,0): 167, 50, 0, 0, 154, 208, 208, 29, 106, 553109, (45,32,0): 171, 50, 0, 0, 166, 210, 210, 162, 209, 553209, (45,33,0): 171, 50, 0, 0, 169, 208, 208, 85, 32, 553309, (45,34,0): 176, 50, 0, 0, 172, 203, 203, 197, 73, 553409, (45,35,0): 177, 50, 0, 0, 173, 204, 204, 43, 77, 553509, (45,36,0): 174, 54, 0, 0, 174, 212, 212, 112, 112, 553609, (45,37,0): 168, 54, 0, 0, 174, 218, 218, 109, 10, 553709, (45,38,0): 164, 54, 0, 0, 173, 219, 219, 112, 32, 553809, (45,39,0): 162, 54, 0, 0, 173, 219, 219, 68, 190, 553909, (45,40,0): 158, 54, 0, 0, 169, 216, 216, 68, 68, 554009, (45,41,0): 160, 54, 0, 0, 167, 221, 221, 68, 10, 554109, (45,42,0): 162, 54, 0, 0, 164, 227, 227, 127, 82, 554209, (45,43,0): 165, 54, 0, 0, 162, 228, 228, 127, 217, 554309, (45,44,0): 170, 54, 0, 0, 159, 224, 224, 68, 82, 554409, (45,45,0): 169, 54, 0, 0, 154, 227, 227, 159, 127, 554509, (45,46,0): 167, 53, 0, 0, 149, 235, 235, 159, 10, 554609, (45,47,0): 165, 53, 0, 0, 146, 224, 224, 112, 67, 554709, (45,48,0): 165, 53, 0, 0, 146, 221, 221, 112, 170, 554809, (45,49,0): 168, 54, 0, 0, 137, 217, 217, 167, 132, 554909, (46,0,0): 176, 45, 0, 0, 83, 209, 209, 142, 15, 560009, (46,1,0): 177, 44, 0, 0, 82, 229, 229, 100, 28, 560109, (46,2,0): 178, 45, 0, 0, 81, 220, 220, 100, 100, 560209, (46,3,0): 178, 46, 0, 0, 79, 231, 231, 66, 24, 560309, (46,4,0): 178, 47, 0, 0, 77, 239, 239, 185, 142, 560409, (46,5,0): 178, 47, 0, 0, 75, 255, 255, 116, 153, 560509, (46,6,0): 178, 47, 0, 0, 74, 241, 241, 33, 194, 560609, (46,7,0): 178, 47, 0, 0, 73, 217, 217, 33, 241, 560709, (46,8,0): 178, 47, 0, 0, 69, 219, 219, 33, 38, 560809, (46,9,0): 178, 47, 0, 0, 68, 225, 225, 128, 103, 560909, (46,10,0): 178, 47, 0, 0, 66, 225, 225, 232, 219, 561009, (46,11,0): 178, 47, 0, 0, 65, 222, 222, 128, 243, 561109, (46,12,0): 178, 50, 0, 0, 64, 220, 220, 35, 243, 561209, (46,13,0): 178, 50, 0, 0, 65, 218, 218, 128, 243, 561309, (46,14,0): 178, 51, 0, 0, 65, 212, 212, 35, 76, 561409, (46,15,0): 178, 51, 0, 0, 64, 201, 201, 245, 113, 561509, (46,16,0): 178, 52, 0, 0, 65, 195, 195, 139, 6, 561609, (46,17,0): 177, 52, 0, 0, 67, 190, 190, 35, 71, 561709, (46,18,0): 175, 53, 0, 0, 73, 193, 193, 35, 113, 561809, (46,19,0): 174, 53, 0, 0, 77, 206, 206, 35, 76, 561909, (46,20,0): 175, 51, 0, 0, 79, 215, 215, 232, 76, 562009, (46,21,0): 177, 51, 0, 0, 82, 210, 210, 185, 76, 562109, (46,22,0): 178, 51, 0, 0, 85, 196, 196, 219, 76, 562209, (46,23,0): 177, 51, 0, 0, 85, 178, 178, 241, 76, 562309, (46,24,0): 176, 51, 0, 0, 87, 182, 182, 194, 76, 562409, (46,25,0): 176, 51, 0, 0, 82, 207, 207, 142, 213, 562509, (46,26,0): 177, 51, 0, 0, 88, 217, 217, 246, 107, 562609, (46,27,0): 178, 51, 0, 0, 106, 227, 227, 152, 213, 562709, (46,28,0): 178, 50, 0, 0, 125, 239, 239, 152, 20, 562809, (46,29,0): 176, 50, 0, 0, 137, 234, 234, 165, 92, 562909, (46,30,0): 171, 50, 0, 0, 146, 241, 241, 59, 213, 563009, (46,31,0): 171, 50, 0, 0, 152, 201, 201, 122, 92, 563109, (46,32,0): 173, 50, 0, 0, 164, 206, 206, 85, 106, 563209, (46,33,0): 175, 50, 0, 0, 166, 210, 210, 158, 209, 563309, (46,34,0): 177, 50, 0, 0, 171, 208, 208, 217, 77, 563409, (46,35,0): 176, 50, 0, 0, 171, 211, 211, 98, 148, 563509, (46,36,0): 172, 54, 0, 0, 172, 217, 217, 109, 211, 563609, (46,37,0): 168, 54, 0, 0, 173, 224, 224, 127, 10, 563709, (46,38,0): 165, 54, 0, 0, 172, 226, 226, 112, 73, 563809, (46,39,0): 164, 54, 0, 0, 172, 233, 233, 127, 73, 563909, (46,40,0): 161, 54, 0, 0, 168, 231, 231, 164, 164, 564009, (46,41,0): 162, 54, 0, 0, 166, 236, 236, 159, 218, 564109, (46,42,0): 165, 54, 0, 0, 164, 242, 242, 164, 32, 564209, (46,43,0): 168, 54, 0, 0, 163, 239, 239, 163, 164, 564309, (46,44,0): 168, 54, 0, 0, 161, 232, 232, 159, 77, 564409, (46,45,0): 167, 54, 0, 0, 160, 236, 236, 164, 164, 564509, (46,46,0): 164, 53, 0, 0, 157, 246, 246, 159, 166, 564609, (46,47,0): 162, 53, 0, 0, 155, 222, 222, 164, 161, 564709, (46,48,0): 164, 53, 0, 0, 153, 219, 219, 159, 130, 564809, (46,49,0): 167, 55, 0, 0, 146, 218, 218, 164, 130, 564909, (47,0,0): 177, 38, 0, 0, 86, 234, 234, 28, 25, 570009, (47,1,0): 178, 41, 0, 0, 84, 219, 219, 62, 207, 570109, (47,2,0): 178, 45, 0, 0, 83, 216, 216, 66, 74, 570209, (47,3,0): 178, 47, 0, 0, 80, 255, 255, 204, 28, 570309, (47,4,0): 178, 47, 0, 0, 79, 224, 224, 18, 100, 570409, (47,5,0): 178, 47, 0, 0, 76, 202, 202, 185, 14, 570509, (47,6,0): 178, 47, 0, 0, 76, 202, 202, 221, 241, 570609, (47,7,0): 178, 47, 0, 0, 74, 193, 193, 33, 38, 570709, (47,8,0): 178, 47, 0, 0, 72, 213, 213, 79, 219, 570809, (47,9,0): 178, 47, 0, 0, 70, 224, 224, 33, 219, 570909, (47,10,0): 178, 47, 0, 0, 69, 218, 218, 128, 71, 571009, (47,11,0): 178, 47, 0, 0, 66, 217, 217, 35, 71, 571109, (47,12,0): 178, 50, 0, 0, 66, 223, 223, 11, 71, 571209, (47,13,0): 178, 50, 0, 0, 65, 220, 220, 35, 71, 571309, (47,14,0): 177, 51, 0, 0, 67, 205, 205, 245, 71, 571409, (47,15,0): 177, 51, 0, 0, 65, 204, 204, 35, 71, 571509, (47,16,0): 178, 52, 0, 0, 67, 205, 205, 245, 113, 571609, (47,17,0): 178, 52, 0, 0, 68, 211, 211, 35, 71, 571709, (47,18,0): 177, 52, 0, 0, 74, 221, 221, 245, 113, 571809, (47,19,0): 177, 53, 0, 0, 77, 235, 235, 117, 113, 571909, (47,20,0): 177, 50, 0, 0, 79, 245, 245, 232, 113, 572009, (47,21,0): 178, 50, 0, 0, 81, 244, 244, 185, 113, 572109, (47,22,0): 177, 50, 0, 0, 84, 234, 234, 185, 113, 572209, (47,23,0): 175, 50, 0, 0, 85, 196, 196, 66, 113, 572309, (47,24,0): 175, 50, 0, 0, 85, 198, 198, 153, 113, 572409, (47,25,0): 176, 50, 0, 0, 81, 229, 229, 192, 113, 572509, (47,26,0): 177, 50, 0, 0, 87, 248, 248, 110, 243, 572609, (47,27,0): 178, 50, 0, 0, 106, 255, 255, 188, 76, 572709, (47,28,0): 178, 50, 0, 0, 126, 255, 255, 122, 173, 572809, (47,29,0): 175, 50, 0, 0, 140, 229, 229, 29, 76, 572909, (47,30,0): 171, 50, 0, 0, 147, 215, 215, 98, 243, 573009, (47,31,0): 173, 50, 0, 0, 153, 201, 201, 94, 6, 573109, (47,32,0): 176, 50, 0, 0, 159, 209, 209, 158, 228, 573209, (47,33,0): 177, 50, 0, 0, 164, 215, 215, 191, 148, 573309, (47,34,0): 175, 50, 0, 0, 166, 214, 214, 98, 45, 573409, (47,35,0): 174, 50, 0, 0, 169, 213, 213, 68, 4, 573509, (47,36,0): 171, 55, 0, 0, 169, 213, 213, 112, 206, 573609, (47,37,0): 167, 55, 0, 0, 169, 216, 216, 112, 149, 573709, (47,38,0): 166, 55, 0, 0, 169, 220, 220, 67, 218, 573809, (47,39,0): 165, 55, 0, 0, 169, 238, 238, 164, 106, 573909, (47,40,0): 162, 55, 0, 0, 165, 241, 241, 68, 106, 574009, (47,41,0): 163, 55, 0, 0, 163, 240, 240, 159, 118, 574109, (47,42,0): 167, 55, 0, 0, 163, 242, 242, 200, 118, 574209, (47,43,0): 168, 55, 0, 0, 162, 239, 239, 200, 200, 574309, (47,44,0): 166, 55, 0, 0, 164, 235, 235, 159, 218, 574409, (47,45,0): 165, 55, 0, 0, 165, 243, 243, 164, 200, 574509, (47,46,0): 163, 55, 0, 0, 165, 254, 254, 164, 77, 574609, (47,47,0): 163, 55, 0, 0, 163, 223, 223, 164, 161, 574709, (47,48,0): 165, 55, 0, 0, 152, 220, 220, 164, 136, 574809, (47,49,0): 168, 55, 0, 0, 150, 218, 218, 190, 130, 574909, (48,0,0): 178, 39, 0, 0, 88, 203, 203, 60, 229, 580009, (48,1,0): 178, 40, 0, 0, 87, 202, 202, 14, 25, 580109, (48,2,0): 178, 43, 0, 0, 87, 247, 247, 38, 192, 580209, (48,3,0): 178, 46, 0, 0, 85, 220, 220, 72, 62, 580309, (48,4,0): 178, 46, 0, 0, 84, 213, 213, 72, 251, 580409, (48,5,0): 178, 46, 0, 0, 82, 209, 209, 79, 62, 580509, (48,6,0): 179, 46, 0, 0, 82, 186, 186, 221, 38, 580609, (48,7,0): 179, 46, 0, 0, 80, 196, 196, 79, 103, 580709, (48,8,0): 178, 46, 0, 0, 77, 219, 219, 221, 219, 580809, (48,9,0): 178, 46, 0, 0, 75, 229, 229, 79, 219, 580909, (48,10,0): 178, 46, 0, 0, 75, 219, 219, 79, 71, 581009, (48,11,0): 178, 46, 0, 0, 72, 215, 215, 33, 71, 581109, (48,12,0): 178, 49, 0, 0, 72, 220, 220, 232, 120, 581209, (48,13,0): 177, 49, 0, 0, 71, 217, 217, 35, 236, 581309, (48,14,0): 177, 50, 0, 0, 72, 204, 204, 128, 120, 581409, (48,15,0): 177, 50, 0, 0, 70, 208, 208, 35, 120, 581509, (48,16,0): 178, 51, 0, 0, 71, 226, 226, 232, 6, 581609, (48,17,0): 178, 51, 0, 0, 71, 244, 244, 35, 120, 581709, (48,18,0): 178, 52, 0, 0, 74, 250, 250, 245, 6, 581809, (48,19,0): 177, 52, 0, 0, 78, 247, 247, 35, 120, 581909, (48,20,0): 178, 50, 0, 0, 82, 246, 246, 232, 120, 582009, (48,21,0): 178, 50, 0, 0, 85, 248, 248, 66, 6, 582109, (48,22,0): 177, 50, 0, 0, 85, 248, 248, 219, 71, 582209, (48,23,0): 176, 50, 0, 0, 86, 214, 214, 62, 6, 582309, (48,24,0): 177, 50, 0, 0, 88, 213, 213, 51, 6, 582409, (48,25,0): 177, 50, 0, 0, 85, 234, 234, 192, 173, 582509, (48,26,0): 177, 50, 0, 0, 90, 234, 234, 110, 6, 582609, (48,27,0): 177, 50, 0, 0, 107, 231, 231, 188, 113, 582709, (48,28,0): 177, 52, 0, 0, 123, 227, 227, 122, 113, 582809, (48,29,0): 173, 52, 0, 0, 137, 207, 207, 29, 113, 582909, (48,30,0): 169, 52, 0, 0, 145, 206, 206, 29, 113, 583009, (48,31,0): 174, 52, 0, 0, 152, 217, 217, 191, 213, 583109, (48,32,0): 177, 52, 0, 0, 166, 224, 224, 247, 60, 583209, (48,33,0): 175, 52, 0, 0, 167, 228, 228, 68, 196, 583309, (48,34,0): 173, 52, 0, 0, 165, 223, 223, 68, 196, 583409, (48,35,0): 172, 52, 0, 0, 164, 217, 217, 67, 196, 583509, (48,36,0): 170, 55, 0, 0, 162, 215, 215, 68, 149, 583609, (48,37,0): 167, 55, 0, 0, 163, 215, 215, 217, 163, 583709, (48,38,0): 167, 55, 0, 0, 164, 220, 220, 167, 92, 583809, (48,39,0): 166, 55, 0, 0, 164, 245, 245, 127, 92, 583909, (48,40,0): 163, 55, 0, 0, 161, 251, 251, 68, 254, 584009, (48,41,0): 164, 55, 0, 0, 161, 248, 248, 112, 154, 584109, (48,42,0): 168, 55, 0, 0, 161, 245, 245, 68, 154, 584209, (48,43,0): 168, 55, 0, 0, 164, 245, 245, 218, 118, 584309, (48,44,0): 165, 54, 0, 0, 167, 248, 248, 159, 118, 584409, (48,45,0): 163, 54, 0, 0, 172, 255, 255, 164, 155, 584509, (48,46,0): 164, 54, 0, 0, 174, 255, 255, 164, 32, 584609, (48,47,0): 165, 54, 0, 0, 171, 224, 224, 164, 190, 584709, (48,48,0): 169, 54, 0, 0, 161, 222, 222, 200, 130, 584809, (48,49,0): 170, 54, 0, 0, 156, 220, 220, 118, 132, 584909, (49,0,0): 177, 40, 0, 0, 89, 204, 204, 100, 25, 590009, (49,1,0): 178, 41, 0, 0, 88, 207, 207, 241, 59, 590109, (49,2,0): 178, 43, 0, 0, 88, 226, 226, 66, 51, 590209, (49,3,0): 178, 45, 0, 0, 86, 210, 210, 18, 219, 590309, (49,4,0): 178, 46, 0, 0, 85, 208, 208, 72, 219, 590409, (49,5,0): 178, 46, 0, 0, 84, 185, 185, 195, 38, 590509, (49,6,0): 179, 46, 0, 0, 83, 213, 213, 195, 219, 590609, (49,7,0): 179, 46, 0, 0, 82, 217, 217, 186, 38, 590709, (49,8,0): 178, 46, 0, 0, 78, 226, 226, 33, 219, 590809, (49,9,0): 178, 46, 0, 0, 77, 232, 232, 79, 243, 590909, (49,10,0): 178, 46, 0, 0, 76, 230, 230, 221, 71, 591009, (49,11,0): 178, 46, 0, 0, 75, 223, 223, 79, 236, 591109, (49,12,0): 178, 48, 0, 0, 74, 219, 219, 221, 236, 591209, (49,13,0): 177, 48, 0, 0, 74, 224, 224, 128, 145, 591309, (49,14,0): 177, 49, 0, 0, 74, 228, 228, 232, 145, 591409, (49,15,0): 178, 49, 0, 0, 73, 238, 238, 33, 120, 591509, (49,16,0): 177, 50, 0, 0, 71, 250, 250, 33, 120, 591609, (49,17,0): 178, 50, 0, 0, 72, 255, 255, 33, 120, 591709, (49,18,0): 178, 51, 0, 0, 76, 255, 255, 232, 120, 591809, (49,19,0): 177, 51, 0, 0, 79, 248, 248, 79, 120, 591909, (49,20,0): 178, 51, 0, 0, 82, 245, 245, 18, 6, 592009, (49,21,0): 178, 51, 0, 0, 83, 246, 246, 28, 120, 592109, (49,22,0): 177, 51, 0, 0, 86, 246, 246, 24, 6, 592209, (49,23,0): 177, 51, 0, 0, 84, 244, 244, 51, 6, 592309, (49,24,0): 177, 51, 0, 0, 88, 232, 232, 192, 120, 592409, (49,25,0): 178, 51, 0, 0, 85, 232, 232, 188, 71, 592509, (49,26,0): 178, 51, 0, 0, 89, 216, 216, 84, 6, 592609, (49,27,0): 177, 51, 0, 0, 107, 207, 207, 75, 6, 592709, (49,28,0): 175, 54, 0, 0, 123, 212, 212, 165, 120, 592809, (49,29,0): 168, 54, 0, 0, 134, 211, 211, 165, 120, 592909, (49,30,0): 167, 54, 0, 0, 141, 225, 225, 115, 145, 593009, (49,31,0): 174, 54, 0, 0, 150, 227, 227, 115, 251, 593109, (49,32,0): 176, 54, 0, 0, 161, 233, 233, 217, 60, 593209, (49,33,0): 173, 54, 0, 0, 163, 234, 234, 39, 60, 593309, (49,34,0): 170, 54, 0, 0, 161, 225, 225, 164, 251, 593409, (49,35,0): 171, 54, 0, 0, 161, 217, 217, 68, 251, 593509, (49,36,0): 170, 55, 0, 0, 160, 216, 216, 67, 250, 593609, (49,37,0): 167, 55, 0, 0, 160, 219, 219, 112, 60, 593709, (49,38,0): 167, 55, 0, 0, 162, 227, 227, 109, 251, 593809, (49,39,0): 168, 55, 0, 0, 161, 243, 243, 217, 254, 593909, (49,40,0): 165, 55, 0, 0, 160, 255, 255, 68, 102, 594009, (49,41,0): 164, 55, 0, 0, 160, 255, 255, 68, 92, 594109, (49,42,0): 166, 55, 0, 0, 158, 250, 250, 94, 118, 594209, (49,43,0): 167, 55, 0, 0, 161, 252, 252, 68, 218, 594309, (49,44,0): 164, 54, 0, 0, 164, 255, 255, 218, 32, 594409, (49,45,0): 163, 54, 0, 0, 166, 255, 255, 164, 218, 594509, (49,46,0): 166, 54, 0, 0, 166, 251, 251, 218, 190, 594609, (49,47,0): 168, 54, 0, 0, 163, 227, 227, 200, 190, 594709, (49,48,0): 172, 54, 0, 0, 163, 223, 223, 118, 67, 594809, (49,49,0): 173, 54, 0, 0, 160, 221, 221, 200, 255, 594909, (50,0,0): 177, 42, 0, 0, 92, 220, 220, 71, 58, 600009, (50,1,0): 178, 42, 0, 0, 91, 255, 255, 18, 237, 600109, (50,2,0): 178, 43, 0, 0, 91, 255, 255, 195, 28, 600209, (50,3,0): 178, 44, 0, 0, 89, 234, 234, 195, 71, 600309, (50,4,0): 178, 45, 0, 0, 88, 211, 211, 18, 219, 600409, (50,5,0): 178, 45, 0, 0, 87, 198, 198, 49, 233, 600509, (50,6,0): 178, 45, 0, 0, 86, 215, 215, 66, 125, 600609, (50,7,0): 179, 45, 0, 0, 86, 241, 241, 195, 38, 600709, (50,8,0): 179, 45, 0, 0, 83, 235, 235, 186, 219, 600809, (50,9,0): 179, 45, 0, 0, 82, 237, 237, 185, 219, 600909, (50,10,0): 178, 45, 0, 0, 81, 246, 246, 79, 125, 601009, (50,11,0): 178, 45, 0, 0, 79, 240, 240, 33, 236, 601109, (50,12,0): 177, 47, 0, 0, 79, 230, 230, 128, 236, 601209, (50,13,0): 177, 48, 0, 0, 79, 241, 241, 232, 236, 601309, (50,14,0): 178, 48, 0, 0, 79, 255, 255, 128, 236, 601409, (50,15,0): 178, 48, 0, 0, 77, 255, 255, 33, 120, 601509, (50,16,0): 177, 49, 0, 0, 74, 255, 255, 79, 71, 601609, (50,17,0): 177, 49, 0, 0, 74, 254, 254, 18, 120, 601709, (50,18,0): 178, 50, 0, 0, 77, 245, 245, 18, 120, 601809, (50,19,0): 178, 50, 0, 0, 80, 247, 247, 195, 71, 601909, (50,20,0): 178, 51, 0, 0, 83, 253, 253, 66, 120, 602009, (50,21,0): 177, 51, 0, 0, 86, 253, 253, 241, 6, 602109, (50,22,0): 177, 51, 0, 0, 86, 246, 246, 100, 120, 602209, (50,23,0): 177, 51, 0, 0, 84, 241, 241, 142, 6, 602309, (50,24,0): 177, 51, 0, 0, 87, 227, 227, 51, 6, 602409, (50,25,0): 178, 51, 0, 0, 86, 226, 226, 110, 6, 602509, (50,26,0): 178, 51, 0, 0, 90, 213, 213, 110, 6, 602609, (50,27,0): 178, 51, 0, 0, 107, 210, 210, 94, 120, 602709, (50,28,0): 175, 54, 0, 0, 121, 217, 217, 206, 6, 602809, (50,29,0): 167, 54, 0, 0, 133, 210, 210, 158, 120, 602909, (50,30,0): 166, 54, 0, 0, 139, 216, 216, 148, 6, 603009, (50,31,0): 172, 54, 0, 0, 146, 223, 223, 247, 113, 603109, (50,32,0): 174, 54, 0, 0, 153, 227, 227, 191, 103, 603209, (50,33,0): 171, 54, 0, 0, 155, 226, 226, 158, 251, 603309, (50,34,0): 169, 54, 0, 0, 155, 217, 217, 68, 113, 603409, (50,35,0): 169, 54, 0, 0, 155, 211, 211, 164, 103, 603509, (50,36,0): 168, 56, 0, 0, 157, 214, 214, 68, 102, 603609, (50,37,0): 166, 56, 0, 0, 158, 220, 220, 164, 163, 603709, (50,38,0): 168, 56, 0, 0, 160, 232, 232, 112, 196, 603809, (50,39,0): 169, 56, 0, 0, 160, 234, 234, 112, 94, 603909, (50,40,0): 166, 56, 0, 0, 160, 252, 252, 164, 127, 604009, (50,41,0): 163, 56, 0, 0, 157, 254, 254, 164, 218, 604109, (50,42,0): 164, 56, 0, 0, 155, 247, 247, 68, 118, 604209, (50,43,0): 166, 56, 0, 0, 156, 249, 249, 164, 101, 604309, (50,44,0): 164, 54, 0, 0, 156, 255, 255, 200, 39, 604409, (50,45,0): 165, 54, 0, 0, 157, 253, 253, 159, 112, 604509, (50,46,0): 168, 54, 0, 0, 156, 236, 236, 200, 13, 604609, (50,47,0): 171, 54, 0, 0, 155, 226, 226, 118, 167, 604709, (50,48,0): 174, 54, 0, 0, 153, 224, 224, 118, 65, 604809, (50,49,0): 174, 54, 0, 0, 158, 222, 222, 200, 244, 604909, (51,0,0): 178, 45, 0, 0, 92, 255, 255, 185, 233, 610009, (51,1,0): 178, 45, 0, 0, 92, 255, 255, 79, 194, 610109, (51,2,0): 178, 45, 0, 0, 91, 255, 255, 204, 228, 610209, (51,3,0): 178, 46, 0, 0, 90, 255, 255, 18, 219, 610309, (51,4,0): 178, 46, 0, 0, 89, 245, 245, 186, 219, 610409, (51,5,0): 178, 46, 0, 0, 89, 242, 242, 221, 38, 610509, (51,6,0): 178, 46, 0, 0, 88, 252, 252, 72, 71, 610609, (51,7,0): 178, 46, 0, 0, 88, 255, 255, 195, 219, 610709, (51,8,0): 179, 46, 0, 0, 85, 255, 255, 195, 71, 610809, (51,9,0): 179, 46, 0, 0, 84, 249, 249, 195, 71, 610909, (51,10,0): 178, 46, 0, 0, 83, 248, 248, 195, 236, 611009, (51,11,0): 178, 46, 0, 0, 82, 243, 243, 185, 236, 611109, (51,12,0): 177, 47, 0, 0, 82, 235, 235, 128, 236, 611209, (51,13,0): 177, 48, 0, 0, 82, 234, 234, 128, 236, 611309, (51,14,0): 178, 48, 0, 0, 82, 238, 238, 35, 55, 611409, (51,15,0): 178, 48, 0, 0, 80, 252, 252, 33, 71, 611509, (51,16,0): 177, 49, 0, 0, 76, 255, 255, 79, 120, 611609, (51,17,0): 178, 49, 0, 0, 75, 255, 255, 18, 71, 611709, (51,18,0): 178, 50, 0, 0, 79, 254, 254, 18, 120, 611809, (51,19,0): 178, 50, 0, 0, 82, 251, 251, 66, 113, 611909, (51,20,0): 178, 52, 0, 0, 84, 254, 254, 241, 6, 612009, (51,21,0): 177, 52, 0, 0, 87, 255, 255, 100, 113, 612109, (51,22,0): 177, 52, 0, 0, 87, 251, 251, 194, 6, 612209, (51,23,0): 177, 52, 0, 0, 87, 237, 237, 187, 120, 612309, (51,24,0): 177, 52, 0, 0, 86, 223, 223, 152, 145, 612409, (51,25,0): 178, 52, 0, 0, 85, 214, 214, 152, 120, 612509, (51,26,0): 178, 52, 0, 0, 92, 214, 214, 188, 6, 612609, (51,27,0): 177, 52, 0, 0, 106, 215, 215, 94, 120, 612709, (51,28,0): 174, 52, 0, 0, 121, 215, 215, 75, 6, 612809, (51,29,0): 170, 52, 0, 0, 130, 216, 216, 4, 120, 612909, (51,30,0): 171, 52, 0, 0, 138, 219, 219, 127, 120, 613009, (51,31,0): 175, 52, 0, 0, 143, 225, 225, 164, 120, 613109, (51,32,0): 174, 52, 0, 0, 148, 220, 220, 112, 145, 613209, (51,33,0): 171, 52, 0, 0, 149, 217, 217, 109, 113, 613309, (51,34,0): 168, 52, 0, 0, 149, 214, 214, 112, 76, 613409, (51,35,0): 166, 52, 0, 0, 150, 215, 215, 159, 76, 613509, (51,36,0): 167, 56, 0, 0, 152, 219, 219, 77, 102, 613609, (51,37,0): 169, 56, 0, 0, 152, 224, 224, 164, 142, 613709, (51,38,0): 169, 56, 0, 0, 155, 230, 230, 77, 162, 613809, (51,39,0): 169, 56, 0, 0, 155, 240, 240, 164, 162, 613909, (51,40,0): 165, 56, 0, 0, 156, 243, 243, 68, 198, 614009, (51,41,0): 162, 56, 0, 0, 152, 243, 243, 68, 98, 614109, (51,42,0): 163, 56, 0, 0, 150, 246, 246, 164, 247, 614209, (51,43,0): 164, 56, 0, 0, 149, 245, 245, 200, 82, 614309, (51,44,0): 165, 55, 0, 0, 147, 242, 242, 164, 82, 614409, (51,45,0): 167, 55, 0, 0, 147, 235, 235, 218, 255, 614509, (51,46,0): 169, 55, 0, 0, 146, 227, 227, 200, 69, 614609, (51,47,0): 172, 55, 0, 0, 145, 222, 222, 118, 227, 614709, (51,48,0): 173, 55, 0, 0, 136, 222, 222, 200, 69, 614809, (51,49,0): 174, 55, 0, 0, 148, 223, 223, 200, 69, 614909, (52,0,0): 178, 49, 0, 0, 92, 235, 235, 38, 243, 620009, (52,1,0): 178, 48, 0, 0, 92, 238, 238, 195, 20, 620109, (52,2,0): 178, 49, 0, 0, 91, 252, 252, 18, 60, 620209, (52,3,0): 178, 49, 0, 0, 91, 255, 255, 116, 233, 620309, (52,4,0): 178, 47, 0, 0, 90, 255, 255, 221, 243, 620409, (52,5,0): 178, 47, 0, 0, 89, 244, 244, 35, 219, 620509, (52,6,0): 178, 47, 0, 0, 89, 242, 242, 221, 38, 620609, (52,7,0): 179, 47, 0, 0, 89, 236, 236, 186, 71, 620709, (52,8,0): 179, 47, 0, 0, 87, 239, 239, 186, 125, 620809, (52,9,0): 179, 47, 0, 0, 86, 241, 241, 186, 236, 620909, (52,10,0): 178, 47, 0, 0, 85, 244, 244, 49, 185, 621009, (52,11,0): 178, 47, 0, 0, 85, 238, 238, 195, 236, 621109, (52,12,0): 178, 48, 0, 0, 84, 228, 228, 221, 55, 621209, (52,13,0): 177, 48, 0, 0, 85, 227, 227, 33, 145, 621309, (52,14,0): 178, 49, 0, 0, 85, 234, 234, 128, 55, 621409, (52,15,0): 178, 49, 0, 0, 83, 251, 251, 33, 55, 621509, (52,16,0): 178, 50, 0, 0, 79, 253, 253, 79, 120, 621609, (52,17,0): 178, 50, 0, 0, 79, 255, 255, 18, 120, 621709, (52,18,0): 178, 51, 0, 0, 81, 255, 255, 195, 120, 621809, (52,19,0): 178, 51, 0, 0, 83, 255, 255, 125, 6, 621909, (52,20,0): 178, 52, 0, 0, 85, 255, 255, 195, 71, 622009, (52,21,0): 177, 52, 0, 0, 88, 252, 252, 195, 6, 622109, (52,22,0): 177, 52, 0, 0, 89, 242, 242, 185, 71, 622209, (52,23,0): 177, 52, 0, 0, 88, 229, 229, 241, 145, 622309, (52,24,0): 177, 52, 0, 0, 85, 222, 222, 58, 6, 622409, (52,25,0): 178, 52, 0, 0, 85, 219, 219, 15, 145, 622509, (52,26,0): 178, 52, 0, 0, 92, 222, 222, 74, 236, 622609, (52,27,0): 174, 52, 0, 0, 104, 223, 223, 7, 120, 622709, (52,28,0): 170, 52, 0, 0, 117, 220, 220, 94, 145, 622809, (52,29,0): 172, 52, 0, 0, 124, 218, 218, 54, 236, 622909, (52,30,0): 175, 52, 0, 0, 133, 219, 219, 217, 145, 623009, (52,31,0): 176, 52, 0, 0, 140, 224, 224, 148, 71, 623109, (52,32,0): 174, 52, 0, 0, 141, 219, 219, 68, 145, 623209, (52,33,0): 171, 52, 0, 0, 142, 216, 216, 77, 120, 623309, (52,34,0): 169, 52, 0, 0, 142, 215, 215, 67, 113, 623409, (52,35,0): 166, 52, 0, 0, 144, 219, 219, 68, 113, 623509, (52,36,0): 167, 57, 0, 0, 146, 223, 223, 68, 76, 623609, (52,37,0): 168, 57, 0, 0, 147, 229, 229, 77, 196, 623709, (52,38,0): 168, 57, 0, 0, 148, 231, 231, 164, 75, 623809, (52,39,0): 168, 57, 0, 0, 147, 233, 233, 218, 75, 623909, (52,40,0): 165, 57, 0, 0, 149, 234, 234, 164, 122, 624009, (52,41,0): 161, 57, 0, 0, 146, 235, 235, 68, 115, 624109, (52,42,0): 160, 57, 0, 0, 142, 238, 238, 164, 69, 624209, (52,43,0): 163, 57, 0, 0, 137, 238, 238, 101, 115, 624309, (52,44,0): 167, 57, 0, 0, 133, 236, 236, 164, 13, 624409, (52,45,0): 170, 57, 0, 0, 129, 229, 229, 118, 13, 624509, (52,46,0): 171, 57, 0, 0, 126, 223, 223, 101, 150, 624609, (52,47,0): 173, 57, 0, 0, 129, 220, 220, 200, 150, 624709, (52,48,0): 174, 57, 0, 0, 128, 221, 221, 200, 150, 624809, (52,49,0): 174, 57, 0, 0, 145, 223, 223, 190, 150, 624909, (53,0,0): 178, 54, 0, 0, 91, 232, 232, 14, 145, 630009, (53,1,0): 179, 54, 0, 0, 91, 237, 237, 156, 233, 630109, (53,2,0): 178, 52, 0, 0, 91, 251, 251, 79, 20, 630209, (53,3,0): 178, 53, 0, 0, 90, 255, 255, 33, 38, 630309, (53,4,0): 178, 49, 0, 0, 90, 255, 255, 221, 71, 630409, (53,5,0): 178, 49, 0, 0, 89, 242, 242, 221, 219, 630509, (53,6,0): 178, 49, 0, 0, 89, 225, 225, 186, 204, 630609, (53,7,0): 178, 49, 0, 0, 89, 232, 232, 221, 204, 630709, (53,8,0): 179, 49, 0, 0, 88, 242, 242, 33, 71, 630809, (53,9,0): 179, 49, 0, 0, 88, 250, 250, 221, 185, 630909, (53,10,0): 179, 49, 0, 0, 87, 251, 251, 186, 236, 631009, (53,11,0): 178, 49, 0, 0, 86, 244, 244, 186, 236, 631109, (53,12,0): 177, 49, 0, 0, 86, 236, 236, 79, 55, 631209, (53,13,0): 177, 49, 0, 0, 87, 243, 243, 79, 55, 631309, (53,14,0): 178, 50, 0, 0, 87, 255, 255, 33, 55, 631409, (53,15,0): 177, 50, 0, 0, 88, 245, 245, 128, 120, 631509, (53,16,0): 176, 51, 0, 0, 81, 244, 244, 79, 55, 631609, (53,17,0): 177, 51, 0, 0, 81, 247, 247, 18, 120, 631709, (53,18,0): 178, 52, 0, 0, 83, 252, 252, 195, 120, 631809, (53,19,0): 178, 52, 0, 0, 85, 255, 255, 18, 120, 631909, (53,20,0): 178, 53, 0, 0, 88, 255, 255, 125, 71, 632009, (53,21,0): 178, 53, 0, 0, 88, 246, 246, 241, 6, 632109, (53,22,0): 178, 53, 0, 0, 89, 232, 232, 103, 113, 632209, (53,23,0): 177, 53, 0, 0, 88, 222, 222, 241, 173, 632309, (53,24,0): 177, 53, 0, 0, 87, 222, 222, 194, 6, 632409, (53,25,0): 178, 53, 0, 0, 85, 227, 227, 163, 71, 632509, (53,26,0): 177, 53, 0, 0, 89, 233, 233, 196, 6, 632609, (53,27,0): 172, 53, 0, 0, 101, 235, 235, 196, 6, 632709, (53,28,0): 169, 54, 0, 0, 110, 230, 230, 23, 236, 632809, (53,29,0): 172, 54, 0, 0, 117, 225, 225, 98, 145, 632909, (53,30,0): 174, 54, 0, 0, 126, 221, 221, 148, 145, 633009, (53,31,0): 174, 54, 0, 0, 131, 221, 221, 68, 113, 633109, (53,32,0): 174, 54, 0, 0, 133, 217, 217, 112, 145, 633209, (53,33,0): 173, 54, 0, 0, 132, 215, 215, 247, 145, 633309, (53,34,0): 170, 54, 0, 0, 135, 215, 215, 68, 6, 633409, (53,35,0): 167, 54, 0, 0, 137, 220, 220, 68, 71, 633509, (53,36,0): 168, 57, 0, 0, 139, 225, 225, 164, 113, 633609, (53,37,0): 169, 57, 0, 0, 140, 231, 231, 218, 102, 633709, (53,38,0): 168, 57, 0, 0, 141, 233, 233, 200, 196, 633809, (53,39,0): 167, 57, 0, 0, 141, 227, 227, 106, 83, 633909, (53,40,0): 164, 57, 0, 0, 144, 227, 227, 155, 83, 634009, (53,41,0): 160, 57, 0, 0, 139, 229, 229, 218, 4, 634109, (53,42,0): 161, 57, 0, 0, 131, 231, 231, 190, 54, 634209, (53,43,0): 167, 57, 0, 0, 126, 232, 232, 118, 65, 634309, (53,44,0): 170, 59, 0, 0, 120, 230, 230, 118, 43, 634409, (53,45,0): 171, 59, 0, 0, 114, 225, 225, 118, 227, 634509, (53,46,0): 171, 59, 0, 0, 108, 219, 219, 200, 212, 634609, (53,47,0): 172, 59, 0, 0, 111, 218, 218, 190, 150, 634709, (53,48,0): 173, 59, 0, 0, 131, 219, 219, 164, 150, 634809, (53,49,0): 173, 59, 0, 0, 148, 222, 222, 190, 150, 634909, (54,0,0): 179, 58, 0, 0, 91, 246, 246, 185, 236, 640009, (54,1,0): 179, 58, 0, 0, 91, 247, 247, 185, 236, 640109, (54,2,0): 178, 57, 0, 0, 91, 248, 248, 221, 71, 640209, (54,3,0): 178, 57, 0, 0, 91, 255, 255, 46, 71, 640309, (54,4,0): 178, 50, 0, 0, 90, 255, 255, 186, 243, 640409, (54,5,0): 178, 50, 0, 0, 90, 241, 241, 66, 219, 640509, (54,6,0): 178, 50, 0, 0, 90, 219, 219, 195, 71, 640609, (54,7,0): 178, 50, 0, 0, 90, 233, 233, 72, 38, 640709, (54,8,0): 179, 50, 0, 0, 89, 240, 240, 195, 38, 640809, (54,9,0): 179, 50, 0, 0, 89, 241, 241, 156, 219, 640909, (54,10,0): 179, 50, 0, 0, 88, 240, 240, 3, 71, 641009, (54,11,0): 179, 50, 0, 0, 88, 235, 235, 46, 236, 641109, (54,12,0): 178, 50, 0, 0, 88, 235, 235, 116, 236, 641209, (54,13,0): 178, 50, 0, 0, 89, 249, 249, 3, 236, 641309, (54,14,0): 178, 51, 0, 0, 89, 255, 255, 116, 55, 641409, (54,15,0): 176, 51, 0, 0, 89, 237, 237, 116, 55, 641509, (54,16,0): 176, 52, 0, 0, 83, 232, 232, 195, 120, 641609, (54,17,0): 178, 52, 0, 0, 84, 234, 234, 195, 120, 641709, (54,18,0): 178, 52, 0, 0, 85, 242, 242, 18, 120, 641809, (54,19,0): 178, 53, 0, 0, 88, 255, 255, 195, 6, 641909, (54,20,0): 179, 53, 0, 0, 89, 255, 255, 241, 113, 642009, (54,21,0): 178, 53, 0, 0, 90, 244, 244, 103, 173, 642109, (54,22,0): 178, 55, 0, 0, 90, 227, 227, 62, 243, 642209, (54,23,0): 178, 53, 0, 0, 89, 225, 225, 102, 41, 642309, (54,24,0): 177, 55, 0, 0, 89, 228, 228, 102, 76, 642409, (54,25,0): 178, 53, 0, 0, 85, 234, 234, 194, 41, 642509, (54,26,0): 176, 55, 0, 0, 88, 242, 242, 163, 113, 642609, (54,27,0): 172, 53, 0, 0, 95, 244, 244, 127, 71, 642709, (54,28,0): 171, 58, 0, 0, 100, 239, 239, 98, 120, 642809, (54,29,0): 172, 56, 0, 0, 106, 230, 230, 162, 120, 642909, (54,30,0): 172, 58, 0, 0, 115, 224, 224, 217, 120, 643009, (54,31,0): 174, 56, 0, 0, 121, 221, 221, 98, 145, 643109, (54,32,0): 174, 58, 0, 0, 122, 218, 218, 112, 145, 643209, (54,33,0): 173, 56, 0, 0, 122, 217, 217, 77, 145, 643309, (54,34,0): 170, 58, 0, 0, 127, 217, 217, 164, 6, 643409, (54,35,0): 168, 58, 0, 0, 130, 220, 220, 218, 120, 643509, (54,36,0): 169, 57, 0, 0, 133, 227, 227, 200, 6, 643609, (54,37,0): 169, 57, 0, 0, 135, 232, 232, 101, 6, 643709, (54,38,0): 168, 57, 0, 0, 136, 233, 233, 118, 243, 643809, (54,39,0): 166, 57, 0, 0, 136, 226, 226, 254, 218, 643909, (54,40,0): 162, 57, 0, 0, 136, 224, 224, 118, 159, 644009, (54,41,0): 159, 57, 0, 0, 131, 227, 227, 101, 149, 644109, (54,42,0): 163, 57, 0, 0, 125, 230, 230, 118, 82, 644209, (54,43,0): 169, 57, 0, 0, 121, 231, 231, 118, 235, 644309, (54,44,0): 171, 60, 0, 0, 115, 229, 229, 9, 235, 644409, (54,45,0): 170, 60, 0, 0, 110, 224, 224, 174, 82, 644509, (54,46,0): 169, 60, 0, 0, 105, 218, 218, 200, 230, 644609, (54,47,0): 171, 60, 0, 0, 111, 218, 218, 164, 52, 644709, (54,48,0): 173, 60, 0, 0, 132, 219, 219, 202, 52, 644809, (54,49,0): 173, 60, 0, 0, 151, 222, 222, 190, 150, 644909, (55,0,0): 179, 62, 0, 0, 91, 236, 236, 221, 145, 650009, (55,1,0): 178, 61, 0, 0, 90, 242, 242, 33, 236, 650109, (55,2,0): 178, 60, 0, 0, 90, 242, 242, 128, 71, 650209, (55,3,0): 178, 57, 0, 0, 90, 249, 249, 128, 236, 650309, (55,4,0): 178, 57, 0, 0, 90, 255, 255, 221, 71, 650409, (55,5,0): 178, 55, 0, 0, 90, 241, 241, 195, 204, 650509, (55,6,0): 179, 54, 0, 0, 89, 222, 222, 146, 219, 650609, (55,7,0): 179, 54, 0, 0, 89, 233, 233, 156, 233, 650709, (55,8,0): 179, 53, 0, 0, 90, 237, 237, 108, 241, 650809, (55,9,0): 179, 52, 0, 0, 89, 237, 237, 105, 38, 650909, (55,10,0): 179, 51, 0, 0, 89, 239, 239, 105, 204, 651009, (55,11,0): 179, 51, 0, 0, 88, 242, 242, 78, 71, 651109, (55,12,0): 179, 53, 0, 0, 88, 247, 247, 78, 71, 651209, (55,13,0): 178, 54, 0, 0, 89, 255, 255, 80, 236, 651309, (55,14,0): 178, 54, 0, 0, 90, 255, 255, 80, 145, 651409, (55,15,0): 178, 54, 0, 0, 90, 229, 229, 49, 236, 651509, (55,16,0): 178, 55, 0, 0, 86, 222, 222, 49, 120, 651609, (55,17,0): 178, 56, 0, 0, 86, 223, 223, 195, 120, 651709, (55,18,0): 179, 56, 0, 0, 88, 234, 234, 185, 243, 651809, (55,19,0): 179, 56, 0, 0, 89, 249, 249, 185, 173, 651909, (55,20,0): 179, 57, 0, 0, 90, 253, 253, 219, 173, 652009, (55,21,0): 179, 57, 0, 0, 90, 244, 244, 157, 173, 652109, (55,22,0): 179, 59, 0, 0, 90, 233, 233, 152, 41, 652209, (55,23,0): 178, 58, 0, 0, 90, 232, 232, 192, 213, 652309, (55,24,0): 178, 60, 0, 0, 91, 235, 235, 194, 173, 652409, (55,25,0): 176, 59, 0, 0, 87, 239, 239, 250, 173, 652509, (55,26,0): 171, 61, 0, 0, 87, 242, 242, 94, 173, 652609, (55,27,0): 169, 60, 0, 0, 92, 243, 243, 162, 6, 652709, (55,28,0): 173, 61, 0, 0, 94, 240, 240, 197, 71, 652809, (55,29,0): 174, 59, 0, 0, 98, 233, 233, 165, 113, 652909, (55,30,0): 174, 60, 0, 0, 106, 226, 226, 109, 120, 653009, (55,31,0): 175, 58, 0, 0, 113, 223, 223, 112, 120, 653109, (55,32,0): 173, 59, 0, 0, 116, 220, 220, 164, 120, 653209, (55,33,0): 172, 57, 0, 0, 116, 219, 219, 164, 120, 653309, (55,34,0): 170, 58, 0, 0, 120, 220, 220, 200, 120, 653409, (55,35,0): 168, 58, 0, 0, 125, 223, 223, 118, 55, 653509, (55,36,0): 168, 56, 0, 0, 129, 228, 228, 9, 145, 653609, (55,37,0): 169, 59, 0, 0, 132, 232, 232, 9, 120, 653709, (55,38,0): 167, 61, 0, 0, 133, 233, 233, 254, 113, 653809, (55,39,0): 164, 62, 0, 0, 135, 230, 230, 254, 113, 653909, (55,40,0): 161, 62, 0, 0, 130, 228, 228, 118, 92, 654009, (55,41,0): 160, 61, 0, 0, 127, 230, 230, 118, 92, 654109, (55,42,0): 166, 59, 0, 0, 125, 232, 232, 9, 215, 654209, (55,43,0): 171, 58, 0, 0, 122, 232, 232, 9, 209, 654309, (55,44,0): 171, 61, 0, 0, 122, 230, 230, 9, 77, 654409, (55,45,0): 169, 61, 0, 0, 120, 225, 225, 200, 40, 654509, (55,46,0): 170, 61, 0, 0, 116, 220, 220, 202, 235, 654609, (55,47,0): 172, 61, 0, 0, 124, 219, 219, 166, 244, 654709, (55,48,0): 173, 61, 0, 0, 133, 220, 220, 166, 212, 654809, (55,49,0): 173, 61, 0, 0, 152, 223, 223, 161, 212, 654909, (56,0,0): 179, 64, 0, 0, 90, 227, 227, 128, 125, 660009, (56,1,0): 178, 63, 0, 0, 90, 237, 237, 128, 243, 660109, (56,2,0): 178, 61, 0, 0, 90, 240, 240, 117, 185, 660209, (56,3,0): 178, 59, 0, 0, 90, 244, 244, 128, 71, 660309, (56,4,0): 178, 57, 0, 0, 90, 246, 246, 128, 125, 660409, (56,5,0): 179, 55, 0, 0, 90, 232, 232, 221, 38, 660509, (56,6,0): 179, 55, 0, 0, 90, 218, 218, 186, 241, 660609, (56,7,0): 179, 54, 0, 0, 90, 229, 229, 186, 62, 660709, (56,8,0): 44, 53, 3, 2, 88, 236, 236, 146, 241, 660809, (56,9,0): 44, 53, 3, 2, 88, 243, 243, 50, 233, 660909, (56,10,0): 179, 52, 0, 0, 88, 253, 253, 138, 243, 661009, (56,11,0): 179, 52, 0, 0, 89, 255, 255, 80, 204, 661109, (56,12,0): 178, 54, 0, 0, 89, 255, 255, 146, 76, 661209, (56,13,0): 179, 54, 0, 0, 90, 255, 255, 72, 219, 661309, (56,14,0): 178, 54, 0, 0, 90, 255, 255, 3, 243, 661409, (56,15,0): 178, 55, 0, 0, 90, 226, 226, 49, 243, 661509, (56,16,0): 178, 55, 0, 0, 90, 221, 221, 220, 219, 661609, (56,17,0): 179, 56, 0, 0, 90, 221, 221, 234, 76, 661709, (56,18,0): 179, 56, 0, 0, 90, 231, 231, 195, 20, 661809, (56,19,0): 46, 57, 3, 2, 91, 245, 245, 14, 213, 661909, (56,20,0): 46, 59, 3, 2, 93, 249, 249, 153, 213, 662009, (56,21,0): 46, 59, 3, 2, 94, 248, 248, 241, 41, 662109, (56,22,0): 178, 59, 0, 0, 92, 244, 244, 196, 154, 662209, (56,23,0): 179, 60, 0, 0, 92, 237, 237, 153, 92, 662309, (56,24,0): 177, 60, 0, 0, 89, 239, 239, 101, 213, 662409, (56,25,0): 173, 61, 0, 0, 87, 240, 240, 196, 41, 662509, (56,26,0): 167, 61, 0, 0, 87, 237, 237, 94, 107, 662609, (56,27,0): 165, 61, 0, 0, 88, 235, 235, 98, 6, 662709, (56,28,0): 171, 61, 0, 0, 90, 234, 234, 98, 120, 662809, (56,29,0): 175, 61, 0, 0, 93, 231, 231, 197, 6, 662909, (56,30,0): 176, 60, 0, 0, 96, 225, 225, 217, 120, 663009, (56,31,0): 174, 60, 0, 0, 96, 227, 227, 68, 120, 663109, (56,32,0): 173, 59, 0, 0, 103, 224, 224, 164, 120, 663209, (56,33,0): 173, 59, 0, 0, 106, 223, 223, 164, 55, 663309, (56,34,0): 171, 58, 0, 0, 112, 222, 222, 200, 120, 663409, (56,35,0): 168, 58, 0, 0, 114, 225, 225, 9, 120, 663509, (56,36,0): 169, 59, 0, 0, 120, 228, 228, 107, 55, 663609, (56,37,0): 168, 60, 0, 0, 129, 232, 232, 154, 55, 663709, (56,38,0): 166, 61, 0, 0, 137, 232, 232, 107, 6, 663809, (56,39,0): 164, 61, 0, 0, 138, 232, 232, 9, 71, 663909, (56,40,0): 162, 61, 0, 0, 137, 231, 231, 118, 71, 664009, (56,41,0): 162, 61, 0, 0, 140, 232, 232, 9, 41, 664109, (56,42,0): 167, 60, 0, 0, 138, 235, 235, 154, 213, 664209, (56,43,0): 172, 59, 0, 0, 135, 235, 235, 9, 215, 664309, (56,44,0): 172, 62, 0, 0, 139, 233, 233, 118, 209, 664409, (56,45,0): 172, 62, 0, 0, 145, 226, 226, 190, 77, 664509, (56,46,0): 173, 62, 0, 0, 139, 222, 222, 166, 10, 664609, (56,47,0): 174, 62, 0, 0, 137, 219, 219, 166, 82, 664709, (56,48,0): 174, 62, 0, 0, 143, 220, 220, 169, 235, 664809, (56,49,0): 173, 62, 0, 0, 161, 221, 221, 169, 65, 664909, (57,0,0): 178, 66, 0, 0, 90, 226, 226, 128, 103, 670009, (57,1,0): 178, 65, 0, 0, 90, 236, 236, 128, 103, 670109, (57,2,0): 178, 63, 0, 0, 90, 240, 240, 11, 38, 670209, (57,3,0): 178, 61, 0, 0, 90, 239, 239, 11, 219, 670309, (57,4,0): 179, 58, 0, 0, 90, 236, 236, 128, 38, 670409, (57,5,0): 179, 55, 0, 0, 90, 223, 223, 221, 62, 670509, (57,6,0): 179, 55, 0, 0, 90, 212, 212, 72, 194, 670609, (57,7,0): 179, 55, 0, 0, 90, 209, 209, 46, 62, 670709, (57,8,0): 179, 54, 0, 0, 88, 218, 218, 46, 194, 670809, (57,9,0): 179, 54, 0, 0, 88, 227, 227, 186, 62, 670909, (57,10,0): 179, 53, 0, 0, 88, 237, 237, 3, 62, 671009, (57,11,0): 179, 53, 0, 0, 89, 245, 245, 46, 20, 671109, (57,12,0): 179, 55, 0, 0, 89, 247, 247, 111, 233, 671209, (57,13,0): 179, 55, 0, 0, 90, 244, 244, 46, 233, 671309, (57,14,0): 178, 55, 0, 0, 90, 239, 239, 46, 103, 671409, (57,15,0): 178, 56, 0, 0, 90, 228, 228, 3, 233, 671509, (57,16,0): 178, 56, 0, 0, 90, 225, 225, 195, 62, 671609, (57,17,0): 179, 57, 0, 0, 90, 230, 230, 156, 194, 671709, (57,18,0): 179, 57, 0, 0, 92, 240, 240, 14, 60, 671809, (57,19,0): 179, 57, 0, 0, 93, 247, 247, 28, 194, 671909, (57,20,0): 46, 60, 3, 2, 93, 249, 249, 187, 228, 672009, (57,21,0): 178, 60, 0, 0, 94, 254, 254, 194, 228, 672109, (57,22,0): 178, 60, 0, 0, 92, 253, 253, 194, 209, 672209, (57,23,0): 178, 61, 0, 0, 92, 239, 239, 102, 215, 672309, (57,24,0): 177, 61, 0, 0, 93, 240, 240, 102, 213, 672409, (57,25,0): 173, 62, 0, 0, 91, 240, 240, 60, 215, 672509, (57,26,0): 168, 62, 0, 0, 91, 236, 236, 101, 92, 672609, (57,27,0): 165, 63, 0, 0, 89, 232, 232, 159, 41, 672709, (57,28,0): 170, 62, 0, 0, 90, 231, 231, 112, 41, 672809, (57,29,0): 175, 62, 0, 0, 92, 230, 230, 98, 107, 672909, (57,30,0): 176, 61, 0, 0, 95, 224, 224, 98, 113, 673009, (57,31,0): 175, 61, 0, 0, 94, 228, 228, 68, 173, 673109, (57,32,0): 174, 60, 0, 0, 97, 224, 224, 164, 6, 673209, (57,33,0): 173, 60, 0, 0, 101, 224, 224, 164, 120, 673309, (57,34,0): 171, 59, 0, 0, 107, 224, 224, 218, 120, 673409, (57,35,0): 169, 59, 0, 0, 110, 227, 227, 200, 120, 673509, (57,36,0): 169, 62, 0, 0, 117, 230, 230, 9, 145, 673609, (57,37,0): 167, 62, 0, 0, 127, 234, 234, 254, 145, 673709, (57,38,0): 165, 62, 0, 0, 135, 236, 236, 9, 120, 673809, (57,39,0): 166, 61, 0, 0, 139, 236, 236, 254, 201, 673909, (57,40,0): 164, 61, 0, 0, 143, 236, 236, 9, 145, 674009, (57,41,0): 165, 62, 0, 0, 145, 237, 237, 9, 6, 674109, (57,42,0): 169, 62, 0, 0, 143, 238, 238, 9, 6, 674209, (57,43,0): 172, 63, 0, 0, 143, 238, 238, 155, 41, 674309, (57,44,0): 173, 63, 0, 0, 154, 235, 235, 190, 92, 674409, (57,45,0): 173, 63, 0, 0, 165, 228, 228, 166, 209, 674509, (57,46,0): 173, 63, 0, 0, 158, 222, 222, 166, 209, 674609, (57,47,0): 173, 63, 0, 0, 154, 222, 222, 169, 106, 674709, (57,48,0): 173, 63, 0, 0, 156, 221, 221, 21, 77, 674809, (57,49,0): 172, 63, 0, 0, 166, 221, 221, 169, 39, 674909, (58,0,0): 178, 70, 0, 0, 92, 221, 221, 128, 233, 680009, (58,1,0): 178, 66, 0, 0, 92, 225, 225, 128, 38, 680109, (58,2,0): 178, 67, 0, 0, 92, 229, 229, 33, 38, 680209, (58,3,0): 178, 63, 0, 0, 92, 232, 232, 128, 103, 680309, (58,4,0): 179, 59, 0, 0, 92, 229, 229, 33, 38, 680409, (58,5,0): 179, 56, 0, 0, 92, 220, 220, 46, 194, 680509, (58,6,0): 179, 56, 0, 0, 92, 212, 212, 195, 153, 680609, (58,7,0): 179, 56, 0, 0, 92, 203, 203, 3, 153, 680709, (58,8,0): 179, 55, 0, 0, 90, 212, 212, 116, 24, 680809, (58,9,0): 179, 55, 0, 0, 90, 218, 218, 3, 153, 680909, (58,10,0): 179, 55, 0, 0, 90, 224, 224, 80, 100, 681009, (58,11,0): 179, 55, 0, 0, 91, 228, 228, 182, 60, 681109, (58,12,0): 179, 56, 0, 0, 91, 232, 232, 50, 153, 681209, (58,13,0): 179, 56, 0, 0, 92, 233, 233, 182, 74, 681309, (58,14,0): 179, 56, 0, 0, 92, 231, 231, 49, 74, 681409, (58,15,0): 179, 57, 0, 0, 92, 238, 238, 3, 142, 681509, (58,16,0): 179, 57, 0, 0, 92, 237, 237, 72, 24, 681609, (58,17,0): 179, 58, 0, 0, 92, 244, 244, 195, 207, 681709, (58,18,0): 179, 58, 0, 0, 93, 253, 253, 18, 237, 681809, (58,19,0): 179, 60, 0, 0, 93, 255, 255, 66, 237, 681909, (58,20,0): 179, 61, 0, 0, 93, 253, 253, 241, 237, 682009, (58,21,0): 178, 62, 0, 0, 94, 255, 255, 103, 23, 682109, (58,22,0): 178, 62, 0, 0, 94, 255, 255, 107, 206, 682209, (58,23,0): 178, 62, 0, 0, 92, 248, 248, 113, 149, 682309, (58,24,0): 177, 63, 0, 0, 95, 249, 249, 251, 39, 682409, (58,25,0): 174, 63, 0, 0, 93, 249, 249, 101, 39, 682509, (58,26,0): 171, 64, 0, 0, 92, 240, 240, 196, 7, 682609, (58,27,0): 170, 64, 0, 0, 91, 235, 235, 94, 106, 682709, (58,28,0): 172, 63, 0, 0, 90, 233, 233, 158, 250, 682809, (58,29,0): 175, 63, 0, 0, 91, 232, 232, 68, 106, 682909, (58,30,0): 176, 62, 0, 0, 93, 226, 226, 68, 9, 683009, (58,31,0): 175, 62, 0, 0, 92, 227, 227, 68, 254, 683109, (58,32,0): 174, 61, 0, 0, 93, 224, 224, 67, 173, 683209, (58,33,0): 173, 61, 0, 0, 98, 224, 224, 166, 173, 683309, (58,34,0): 171, 60, 0, 0, 101, 225, 225, 164, 173, 683409, (58,35,0): 168, 62, 0, 0, 105, 228, 228, 200, 6, 683509, (58,36,0): 167, 65, 0, 0, 113, 231, 231, 200, 145, 683609, (58,37,0): 166, 64, 0, 0, 125, 235, 235, 155, 120, 683709, (58,38,0): 168, 62, 0, 0, 132, 238, 238, 118, 120, 683809, (58,39,0): 169, 61, 0, 0, 137, 236, 236, 9, 145, 683909, (58,40,0): 168, 61, 0, 0, 152, 235, 235, 118, 145, 684009, (58,41,0): 169, 62, 0, 0, 155, 236, 236, 200, 145, 684109, (58,42,0): 172, 64, 0, 0, 156, 237, 237, 200, 120, 684209, (58,43,0): 173, 65, 0, 0, 160, 237, 237, 190, 76, 684309, (58,44,0): 173, 64, 0, 0, 177, 234, 234, 166, 92, 684409, (58,45,0): 173, 64, 0, 0, 189, 227, 227, 166, 20, 684509, (58,46,0): 172, 64, 0, 0, 183, 219, 219, 169, 31, 684609, (58,47,0): 172, 64, 0, 0, 177, 222, 222, 166, 213, 684709, (58,48,0): 171, 64, 0, 0, 181, 221, 221, 169, 215, 684809, (58,49,0): 170, 64, 0, 0, 186, 221, 221, 169, 209, 684909, (59,0,0): 178, 72, 0, 0, 91, 208, 208, 33, 103, 690009, (59,1,0): 178, 70, 0, 0, 91, 217, 217, 221, 103, 690109, (59,2,0): 178, 70, 0, 0, 91, 224, 224, 186, 38, 690209, (59,3,0): 178, 66, 0, 0, 91, 227, 227, 72, 38, 690309, (59,4,0): 179, 59, 0, 0, 91, 225, 225, 186, 233, 690409, (59,5,0): 179, 58, 0, 0, 91, 216, 216, 186, 14, 690509, (59,6,0): 179, 58, 0, 0, 91, 208, 208, 146, 153, 690609, (59,7,0): 179, 58, 0, 0, 91, 205, 205, 146, 93, 690709, (59,8,0): 179, 59, 0, 0, 90, 213, 213, 3, 15, 690809, (59,9,0): 178, 59, 0, 0, 90, 220, 220, 146, 58, 690909, (59,10,0): 179, 59, 0, 0, 90, 227, 227, 182, 74, 691009, (59,11,0): 179, 59, 0, 0, 91, 232, 232, 222, 142, 691109, (59,12,0): 179, 59, 0, 0, 91, 237, 237, 181, 188, 691209, (59,13,0): 179, 59, 0, 0, 92, 240, 240, 124, 229, 691309, (59,14,0): 179, 59, 0, 0, 92, 244, 244, 50, 16, 691409, (59,15,0): 179, 60, 0, 0, 92, 251, 251, 49, 152, 691509, (59,16,0): 46, 60, 3, 2, 93, 250, 250, 195, 229, 691609, (59,17,0): 179, 61, 0, 0, 93, 251, 251, 195, 229, 691709, (59,18,0): 179, 61, 0, 0, 93, 253, 253, 186, 59, 691809, (59,19,0): 179, 61, 0, 0, 94, 255, 255, 185, 59, 691909, (59,20,0): 179, 63, 0, 0, 94, 255, 255, 125, 59, 692009, (59,21,0): 178, 65, 0, 0, 94, 255, 255, 103, 238, 692109, (59,22,0): 178, 66, 0, 0, 94, 255, 255, 194, 16, 692209, (59,23,0): 178, 66, 0, 0, 94, 255, 255, 163, 29, 692309, (59,24,0): 178, 67, 0, 0, 94, 255, 255, 101, 238, 692409, (59,25,0): 175, 67, 0, 0, 94, 255, 255, 159, 83, 692509, (59,26,0): 172, 67, 0, 0, 93, 254, 254, 127, 4, 692609, (59,27,0): 173, 68, 0, 0, 91, 244, 244, 164, 148, 692709, (59,28,0): 175, 66, 0, 0, 92, 237, 237, 164, 77, 692809, (59,29,0): 176, 66, 0, 0, 91, 233, 233, 68, 32, 692909, (59,30,0): 175, 65, 0, 0, 92, 232, 232, 67, 215, 693009, (59,31,0): 173, 65, 0, 0, 91, 221, 221, 67, 215, 693109, (59,32,0): 173, 64, 0, 0, 94, 221, 221, 112, 154, 693209, (59,33,0): 172, 64, 0, 0, 98, 222, 222, 67, 41, 693309, (59,34,0): 171, 63, 0, 0, 100, 224, 224, 166, 41, 693409, (59,35,0): 168, 63, 0, 0, 103, 227, 227, 164, 173, 693509, (59,36,0): 166, 66, 0, 0, 111, 230, 230, 190, 6, 693609, (59,37,0): 168, 65, 0, 0, 122, 233, 233, 200, 145, 693709, (59,38,0): 171, 63, 0, 0, 132, 235, 235, 155, 6, 693809, (59,39,0): 172, 62, 0, 0, 136, 235, 235, 200, 145, 693909, (59,40,0): 172, 62, 0, 0, 155, 236, 236, 190, 55, 694009, (59,41,0): 172, 63, 0, 0, 166, 235, 235, 166, 120, 694109, (59,42,0): 173, 65, 0, 0, 175, 233, 233, 166, 71, 694209, (59,43,0): 173, 66, 0, 0, 184, 231, 231, 166, 103, 694309, (59,44,0): 173, 66, 0, 0, 200, 226, 226, 96, 233, 694409, (59,45,0): 172, 66, 0, 0, 211, 221, 221, 96, 251, 694509, (59,46,0): 171, 66, 0, 0, 204, 219, 219, 169, 251, 694609, (59,47,0): 170, 66, 0, 0, 198, 220, 220, 169, 76, 694709, (59,48,0): 169, 66, 0, 0, 216, 219, 219, 21, 92, 694809, (59,49,0): 168, 66, 0, 0, 217, 220, 220, 21, 213, 694909, (60,0,0): 178, 74, 0, 0, 91, 199, 199, 33, 76, 700009, (60,1,0): 178, 73, 0, 0, 91, 209, 209, 186, 219, 700109, (60,2,0): 178, 71, 0, 0, 91, 216, 216, 195, 38, 700209, (60,3,0): 178, 69, 0, 0, 91, 218, 218, 195, 103, 700309, (60,4,0): 179, 61, 0, 0, 91, 215, 215, 195, 219, 700409, (60,5,0): 179, 59, 0, 0, 91, 204, 204, 146, 241, 700509, (60,6,0): 179, 59, 0, 0, 91, 195, 195, 156, 194, 700609, (60,7,0): 179, 59, 0, 0, 91, 202, 202, 49, 192, 700709, (60,8,0): 178, 60, 0, 0, 90, 211, 211, 80, 246, 700809, (60,9,0): 178, 60, 0, 0, 90, 221, 221, 182, 198, 700909, (60,10,0): 179, 61, 0, 0, 90, 229, 229, 182, 157, 701009, (60,11,0): 179, 61, 0, 0, 91, 237, 237, 182, 152, 701109, (60,12,0): 179, 60, 0, 0, 91, 244, 244, 78, 189, 701209, (60,13,0): 179, 60, 0, 0, 92, 249, 249, 222, 151, 701309, (60,14,0): 179, 60, 0, 0, 92, 253, 253, 80, 214, 701409, (60,15,0): 179, 61, 0, 0, 92, 255, 255, 49, 214, 701509, (60,16,0): 46, 61, 3, 2, 93, 255, 255, 156, 151, 701609, (60,17,0): 179, 62, 0, 0, 94, 255, 255, 156, 151, 701709, (60,18,0): 179, 62, 0, 0, 94, 255, 255, 219, 89, 701809, (60,19,0): 179, 63, 0, 0, 94, 255, 255, 125, 151, 701909, (60,20,0): 179, 66, 0, 0, 94, 255, 255, 66, 248, 702009, (60,21,0): 179, 67, 0, 0, 95, 255, 255, 113, 151, 702109, (60,22,0): 178, 67, 0, 0, 94, 255, 255, 102, 214, 702209, (60,23,0): 178, 68, 0, 0, 94, 255, 255, 250, 214, 702309, (60,24,0): 177, 68, 0, 0, 94, 255, 255, 250, 151, 702409, (60,25,0): 174, 69, 0, 0, 94, 255, 255, 196, 56, 702509, (60,26,0): 173, 69, 0, 0, 94, 255, 255, 247, 115, 702609, (60,27,0): 175, 69, 0, 0, 92, 247, 247, 217, 43, 702709, (60,28,0): 176, 67, 0, 0, 94, 241, 241, 158, 235, 702809, (60,29,0): 176, 67, 0, 0, 93, 234, 234, 82, 82, 702909, (60,30,0): 175, 66, 0, 0, 94, 230, 230, 82, 77, 703009, (60,31,0): 173, 66, 0, 0, 94, 220, 220, 112, 48, 703109, (60,32,0): 172, 65, 0, 0, 98, 220, 220, 40, 174, 703209, (60,33,0): 173, 65, 0, 0, 99, 222, 222, 112, 154, 703309, (60,34,0): 173, 64, 0, 0, 99, 224, 224, 67, 41, 703409, (60,35,0): 169, 64, 0, 0, 101, 227, 227, 166, 41, 703509, (60,36,0): 167, 66, 0, 0, 108, 230, 230, 166, 173, 703609, (60,37,0): 170, 65, 0, 0, 120, 233, 233, 190, 6, 703709, (60,38,0): 171, 65, 0, 0, 127, 235, 235, 190, 145, 703809, (60,39,0): 172, 64, 0, 0, 131, 235, 235, 190, 120, 703909, (60,40,0): 172, 64, 0, 0, 148, 236, 236, 166, 120, 704009, (60,41,0): 173, 65, 0, 0, 172, 235, 235, 169, 120, 704109, (60,42,0): 173, 65, 0, 0, 194, 232, 232, 96, 71, 704209, (60,43,0): 173, 66, 0, 0, 206, 228, 228, 96, 125, 704309, (60,44,0): 172, 67, 0, 0, 218, 223, 223, 21, 103, 704409, (60,45,0): 172, 67, 0, 0, 223, 220, 220, 21, 103, 704509, (60,46,0): 171, 67, 0, 0, 218, 217, 217, 169, 103, 704609, (60,47,0): 169, 67, 0, 0, 216, 219, 219, 169, 113, 704709, (60,48,0): 167, 67, 0, 0, 236, 219, 219, 205, 113, 704809, (60,49,0): 166, 67, 0, 0, 242, 220, 220, 21, 6, 704909, (61,0,0): 178, 77, 0, 0, 90, 202, 202, 33, 38, 710009, (61,1,0): 178, 76, 0, 0, 90, 207, 207, 33, 38, 710109, (61,2,0): 178, 72, 0, 0, 90, 208, 208, 186, 103, 710209, (61,3,0): 178, 70, 0, 0, 90, 210, 210, 72, 219, 710309, (61,4,0): 179, 62, 0, 0, 90, 209, 209, 186, 71, 710409, (61,5,0): 179, 60, 0, 0, 90, 202, 202, 46, 103, 710509, (61,6,0): 179, 60, 0, 0, 90, 197, 197, 46, 100, 710609, (61,7,0): 179, 61, 0, 0, 90, 204, 204, 186, 24, 710709, (61,8,0): 178, 62, 0, 0, 90, 214, 214, 146, 15, 710809, (61,9,0): 178, 62, 0, 0, 90, 223, 223, 50, 152, 710909, (61,10,0): 179, 63, 0, 0, 90, 231, 231, 182, 248, 711009, (61,11,0): 179, 63, 0, 0, 91, 241, 241, 182, 151, 711109, (61,12,0): 179, 61, 0, 0, 91, 246, 246, 222, 214, 711209, (61,13,0): 179, 62, 0, 0, 92, 251, 251, 80, 214, 711309, (61,14,0): 179, 62, 0, 0, 92, 255, 255, 49, 151, 711409, (61,15,0): 179, 63, 0, 0, 93, 252, 252, 156, 151, 711509, (61,16,0): 179, 63, 0, 0, 94, 252, 252, 156, 214, 711609, (61,17,0): 179, 64, 0, 0, 94, 251, 251, 156, 151, 711709, (61,18,0): 179, 64, 0, 0, 94, 249, 249, 125, 151, 711809, (61,19,0): 179, 64, 0, 0, 95, 251, 251, 125, 214, 711909, (61,20,0): 179, 68, 0, 0, 94, 250, 250, 219, 151, 712009, (61,21,0): 178, 68, 0, 0, 95, 252, 252, 102, 151, 712109, (61,22,0): 177, 68, 0, 0, 94, 254, 254, 102, 151, 712209, (61,23,0): 177, 69, 0, 0, 94, 255, 255, 102, 151, 712309, (61,24,0): 177, 69, 0, 0, 93, 255, 255, 163, 151, 712409, (61,25,0): 175, 70, 0, 0, 93, 254, 254, 127, 151, 712509, (61,26,0): 174, 70, 0, 0, 94, 253, 253, 112, 56, 712609, (61,27,0): 174, 70, 0, 0, 95, 247, 247, 112, 69, 712709, (61,28,0): 175, 68, 0, 0, 95, 242, 242, 191, 69, 712809, (61,29,0): 174, 68, 0, 0, 96, 236, 236, 109, 13, 712909, (61,30,0): 173, 67, 0, 0, 97, 229, 229, 167, 82, 713009, (61,31,0): 173, 67, 0, 0, 98, 220, 220, 67, 32, 713109, (61,32,0): 173, 66, 0, 0, 101, 220, 220, 96, 106, 713209, (61,33,0): 174, 66, 0, 0, 101, 222, 222, 67, 48, 713309, (61,34,0): 175, 65, 0, 0, 97, 224, 224, 40, 9, 713409, (61,35,0): 172, 65, 0, 0, 98, 229, 229, 166, 254, 713509, (61,36,0): 168, 65, 0, 0, 104, 231, 231, 166, 41, 713609, (61,37,0): 169, 66, 0, 0, 116, 233, 233, 42, 6, 713709, (61,38,0): 170, 67, 0, 0, 123, 235, 235, 161, 6, 713809, (61,39,0): 171, 68, 0, 0, 125, 237, 237, 161, 6, 713909, (61,40,0): 172, 68, 0, 0, 143, 238, 238, 166, 120, 714009, (61,41,0): 173, 67, 0, 0, 174, 237, 237, 169, 6, 714109, (61,42,0): 173, 66, 0, 0, 203, 234, 234, 166, 120, 714209, (61,43,0): 173, 66, 0, 0, 218, 229, 229, 96, 71, 714309, (61,44,0): 173, 68, 0, 0, 227, 225, 225, 169, 71, 714409, (61,45,0): 172, 68, 0, 0, 232, 220, 220, 161, 71, 714509, (61,46,0): 170, 68, 0, 0, 230, 216, 216, 21, 71, 714609, (61,47,0): 168, 68, 0, 0, 228, 218, 218, 205, 120, 714709, (61,48,0): 166, 68, 0, 0, 242, 217, 217, 21, 120, 714809, (61,49,0): 166, 68, 0, 0, 252, 218, 218, 21, 120, 714909, (62,0,0): 178, 78, 0, 0, 90, 211, 211, 221, 20, 720009, (62,1,0): 178, 76, 0, 0, 90, 208, 208, 79, 103, 720109, (62,2,0): 178, 73, 0, 0, 90, 203, 203, 79, 219, 720209, (62,3,0): 179, 71, 0, 0, 90, 203, 203, 221, 243, 720309, (62,4,0): 179, 62, 0, 0, 90, 207, 207, 79, 185, 720409, (62,5,0): 179, 60, 0, 0, 90, 207, 207, 128, 103, 720509, (62,6,0): 179, 61, 0, 0, 90, 206, 206, 224, 194, 720609, (62,7,0): 179, 61, 0, 0, 90, 206, 206, 111, 24, 720709, (62,8,0): 178, 62, 0, 0, 90, 217, 217, 111, 15, 720809, (62,9,0): 178, 63, 0, 0, 90, 226, 226, 3, 152, 720909, (62,10,0): 179, 64, 0, 0, 90, 235, 235, 133, 193, 721009, (62,11,0): 179, 64, 0, 0, 91, 242, 242, 182, 248, 721109, (62,12,0): 179, 62, 0, 0, 91, 247, 247, 80, 151, 721209, (62,13,0): 179, 62, 0, 0, 92, 249, 249, 146, 151, 721309, (62,14,0): 179, 62, 0, 0, 92, 252, 252, 146, 151, 721409, (62,15,0): 179, 63, 0, 0, 93, 249, 249, 146, 56, 721509, (62,16,0): 179, 64, 0, 0, 94, 247, 247, 66, 56, 721609, (62,17,0): 179, 64, 0, 0, 96, 247, 247, 66, 151, 721709, (62,18,0): 179, 64, 0, 0, 94, 248, 248, 125, 151, 721809, (62,19,0): 178, 65, 0, 0, 95, 251, 251, 125, 151, 721909, (62,20,0): 178, 68, 0, 0, 94, 253, 253, 125, 151, 722009, (62,21,0): 178, 68, 0, 0, 95, 255, 255, 102, 248, 722109, (62,22,0): 176, 69, 0, 0, 94, 255, 255, 102, 214, 722209, (62,23,0): 175, 69, 0, 0, 94, 255, 255, 101, 151, 722309, (62,24,0): 175, 70, 0, 0, 94, 253, 253, 164, 214, 722409, (62,25,0): 175, 70, 0, 0, 95, 250, 250, 127, 151, 722509, (62,26,0): 174, 71, 0, 0, 96, 249, 249, 98, 151, 722609, (62,27,0): 173, 71, 0, 0, 97, 247, 247, 98, 56, 722709, (62,28,0): 173, 68, 0, 0, 97, 242, 242, 167, 56, 722809, (62,29,0): 172, 68, 0, 0, 97, 233, 233, 167, 244, 722909, (62,30,0): 172, 68, 0, 0, 97, 225, 225, 67, 54, 723009, (62,31,0): 174, 67, 0, 0, 100, 220, 220, 166, 39, 723109, (62,32,0): 174, 67, 0, 0, 104, 220, 220, 166, 73, 723209, (62,33,0): 174, 66, 0, 0, 103, 222, 222, 42, 215, 723309, (62,34,0): 174, 66, 0, 0, 99, 224, 224, 42, 215, 723409, (62,35,0): 171, 66, 0, 0, 98, 229, 229, 166, 215, 723509, (62,36,0): 168, 65, 0, 0, 106, 231, 231, 166, 254, 723609, (62,37,0): 169, 66, 0, 0, 118, 233, 233, 166, 41, 723709, (62,38,0): 171, 68, 0, 0, 124, 235, 235, 96, 113, 723809, (62,39,0): 172, 69, 0, 0, 128, 238, 238, 96, 6, 723909, (62,40,0): 173, 69, 0, 0, 143, 238, 238, 169, 6, 724009, (62,41,0): 174, 68, 0, 0, 173, 238, 238, 169, 120, 724109, (62,42,0): 174, 66, 0, 0, 205, 234, 234, 169, 120, 724209, (62,43,0): 173, 65, 0, 0, 222, 230, 230, 132, 145, 724309, (62,44,0): 173, 69, 0, 0, 237, 225, 225, 169, 55, 724409, (62,45,0): 172, 69, 0, 0, 246, 220, 220, 21, 120, 724509, (62,46,0): 170, 69, 0, 0, 246, 215, 215, 205, 120, 724609, (62,47,0): 168, 69, 0, 0, 244, 216, 216, 169, 120, 724709, (62,48,0): 167, 69, 0, 0, 248, 216, 216, 205, 120, 724809, (62,49,0): 167, 69, 0, 0, 255, 216, 216, 205, 145, 724909, (63,0,0): 178, 75, 0, 0, 91, 208, 208, 79, 231, 730009, (63,1,0): 178, 74, 0, 0, 90, 205, 205, 221, 62, 730109, (63,2,0): 179, 73, 0, 0, 91, 201, 201, 79, 20, 730209, (63,3,0): 179, 72, 0, 0, 90, 203, 203, 116, 219, 730309, (63,4,0): 179, 71, 0, 0, 91, 206, 206, 186, 71, 730409, (63,5,0): 179, 69, 0, 0, 90, 205, 205, 221, 219, 730509, (63,6,0): 179, 69, 0, 0, 91, 204, 204, 46, 62, 730609, (63,7,0): 178, 68, 0, 0, 90, 208, 208, 46, 110, 730709, (63,8,0): 178, 68, 0, 0, 91, 217, 217, 46, 192, 730809, (63,9,0): 179, 67, 0, 0, 90, 228, 228, 116, 58, 730909, (63,10,0): 179, 67, 0, 0, 91, 236, 236, 146, 110, 731009, (63,11,0): 179, 67, 0, 0, 91, 244, 244, 49, 206, 731109, (63,12,0): 179, 65, 0, 0, 92, 249, 249, 80, 75, 731209, (63,13,0): 179, 65, 0, 0, 92, 251, 251, 186, 189, 731309, (63,14,0): 179, 65, 0, 0, 93, 252, 252, 186, 151, 731409, (63,15,0): 179, 65, 0, 0, 93, 252, 252, 186, 212, 731509, (63,16,0): 179, 65, 0, 0, 94, 251, 251, 186, 212, 731609, (63,17,0): 179, 65, 0, 0, 94, 252, 252, 125, 212, 731709, (63,18,0): 178, 65, 0, 0, 94, 252, 252, 185, 212, 731809, (63,19,0): 178, 65, 0, 0, 94, 254, 254, 125, 212, 731909, (63,20,0): 178, 67, 0, 0, 94, 255, 255, 103, 56, 732009, (63,21,0): 178, 68, 0, 0, 94, 255, 255, 102, 151, 732109, (63,22,0): 176, 69, 0, 0, 94, 255, 255, 118, 151, 732209, (63,23,0): 174, 69, 0, 0, 92, 255, 255, 92, 151, 732309, (63,24,0): 174, 70, 0, 0, 96, 251, 251, 101, 214, 732409, (63,25,0): 174, 70, 0, 0, 97, 247, 247, 164, 151, 732509, (63,26,0): 173, 71, 0, 0, 97, 245, 245, 10, 151, 732609, (63,27,0): 172, 71, 0, 0, 98, 241, 241, 112, 151, 732709, (63,28,0): 171, 73, 0, 0, 98, 237, 237, 82, 56, 732809, (63,29,0): 171, 72, 0, 0, 97, 228, 228, 167, 115, 732909, (63,30,0): 173, 72, 0, 0, 97, 221, 221, 96, 4, 733009, (63,31,0): 174, 71, 0, 0, 98, 220, 220, 190, 47, 733109, (63,32,0): 174, 71, 0, 0, 107, 220, 220, 136, 23, 733209, (63,33,0): 174, 70, 0, 0, 106, 222, 222, 200, 149, 733309, (63,34,0): 174, 70, 0, 0, 101, 226, 226, 136, 39, 733409, (63,35,0): 171, 70, 0, 0, 100, 229, 229, 190, 149, 733509, (63,36,0): 168, 71, 0, 0, 107, 231, 231, 96, 149, 733609, (63,37,0): 170, 72, 0, 0, 120, 234, 234, 205, 163, 733709, (63,38,0): 172, 72, 0, 0, 125, 236, 236, 96, 41, 733809, (63,39,0): 173, 71, 0, 0, 127, 241, 241, 205, 6, 733909, (63,40,0): 174, 71, 0, 0, 145, 241, 241, 96, 107, 734009, (63,41,0): 174, 70, 0, 0, 171, 239, 239, 205, 71, 734109, (63,42,0): 172, 70, 0, 0, 198, 237, 237, 169, 145, 734209, (63,43,0): 171, 70, 0, 0, 217, 230, 230, 169, 113, 734309, (63,44,0): 170, 71, 0, 0, 238, 225, 225, 169, 113, 734409, (63,45,0): 169, 71, 0, 0, 252, 218, 218, 21, 145, 734509, (63,46,0): 168, 71, 0, 0, 253, 215, 215, 205, 120, 734609, (63,47,0): 167, 71, 0, 0, 249, 216, 216, 21, 120, 734709, (63,48,0): 166, 71, 0, 0, 247, 214, 214, 205, 119, 734809, (63,49,0): 167, 71, 0, 0, 255, 214, 214, 21, 55, 734909, (64,0,0): 178, 75, 0, 0, 93, 207, 207, 79, 58, 740009, (64,1,0): 178, 74, 0, 0, 92, 210, 210, 79, 28, 740109, (64,2,0): 179, 74, 0, 0, 93, 211, 211, 116, 62, 740209, (64,3,0): 179, 70, 0, 0, 92, 214, 214, 186, 233, 740309, (64,4,0): 179, 71, 0, 0, 93, 213, 213, 18, 219, 740409, (64,5,0): 179, 69, 0, 0, 92, 206, 206, 186, 241, 740509, (64,6,0): 179, 68, 0, 0, 93, 201, 201, 186, 24, 740609, (64,7,0): 178, 68, 0, 0, 92, 210, 210, 116, 58, 740709, (64,8,0): 178, 67, 0, 0, 94, 220, 220, 116, 15, 740809, (64,9,0): 178, 67, 0, 0, 93, 231, 231, 3, 58, 740909, (64,10,0): 179, 67, 0, 0, 94, 240, 240, 146, 58, 741009, (64,11,0): 179, 66, 0, 0, 93, 246, 246, 80, 237, 741109, (64,12,0): 179, 66, 0, 0, 94, 250, 250, 49, 45, 741209, (64,13,0): 179, 66, 0, 0, 93, 253, 253, 3, 29, 741309, (64,14,0): 179, 66, 0, 0, 94, 253, 253, 195, 69, 741409, (64,15,0): 179, 66, 0, 0, 93, 249, 249, 72, 150, 741509, (64,16,0): 179, 66, 0, 0, 93, 247, 247, 125, 227, 741609, (64,17,0): 179, 66, 0, 0, 93, 247, 247, 125, 227, 741709, (64,18,0): 178, 66, 0, 0, 94, 246, 246, 185, 13, 741809, (64,19,0): 178, 68, 0, 0, 92, 247, 247, 103, 29, 741909, (64,20,0): 178, 68, 0, 0, 92, 247, 247, 102, 115, 742009, (64,21,0): 177, 69, 0, 0, 91, 250, 250, 250, 56, 742109, (64,22,0): 175, 69, 0, 0, 93, 250, 250, 102, 214, 742209, (64,23,0): 173, 70, 0, 0, 94, 252, 252, 118, 151, 742309, (64,24,0): 172, 70, 0, 0, 96, 248, 248, 101, 214, 742409, (64,25,0): 173, 71, 0, 0, 95, 245, 245, 68, 151, 742509, (64,26,0): 173, 71, 0, 0, 96, 240, 240, 67, 214, 742609, (64,27,0): 172, 71, 0, 0, 98, 237, 237, 112, 151, 742709, (64,28,0): 171, 73, 0, 0, 99, 231, 231, 67, 56, 742809, (64,29,0): 172, 72, 0, 0, 100, 224, 224, 167, 151, 742909, (64,30,0): 174, 72, 0, 0, 100, 218, 218, 96, 115, 743009, (64,31,0): 175, 72, 0, 0, 100, 220, 220, 130, 29, 743109, (64,32,0): 174, 71, 0, 0, 107, 221, 221, 136, 189, 743209, (64,33,0): 174, 71, 0, 0, 104, 223, 223, 136, 151, 743309, (64,34,0): 173, 70, 0, 0, 101, 226, 226, 136, 189, 743409, (64,35,0): 172, 71, 0, 0, 102, 229, 229, 21, 29, 743509, (64,36,0): 172, 73, 0, 0, 110, 231, 231, 169, 238, 743609, (64,37,0): 171, 73, 0, 0, 120, 234, 234, 169, 94, 743709, (64,38,0): 171, 72, 0, 0, 129, 236, 236, 169, 218, 743809, (64,39,0): 173, 72, 0, 0, 137, 242, 242, 205, 107, 743909, (64,40,0): 173, 71, 0, 0, 143, 242, 242, 96, 107, 744009, (64,41,0): 171, 71, 0, 0, 165, 240, 240, 205, 6, 744109, (64,42,0): 168, 70, 0, 0, 190, 237, 237, 21, 6, 744209, (64,43,0): 168, 70, 0, 0, 208, 230, 230, 21, 173, 744309, (64,44,0): 168, 71, 0, 0, 225, 223, 223, 21, 113, 744409, (64,45,0): 168, 71, 0, 0, 240, 218, 218, 169, 173, 744509, (64,46,0): 169, 71, 0, 0, 249, 214, 214, 205, 113, 744609, (64,47,0): 168, 71, 0, 0, 255, 213, 213, 205, 120, 744709, (64,48,0): 167, 71, 0, 0, 244, 212, 212, 21, 120, 744809, (64,49,0): 166, 71, 0, 0, 237, 212, 212, 21, 55, 744909, (65,0,0): 178, 77, 0, 0, 93, 210, 210, 221, 142, 750009, (65,1,0): 179, 75, 0, 0, 93, 215, 215, 33, 60, 750109, (65,2,0): 179, 74, 0, 0, 93, 216, 216, 79, 100, 750209, (65,3,0): 179, 71, 0, 0, 93, 218, 218, 186, 241, 750309, (65,4,0): 179, 71, 0, 0, 93, 219, 219, 186, 251, 750409, (65,5,0): 178, 71, 0, 0, 93, 215, 215, 116, 194, 750509, (65,6,0): 178, 70, 0, 0, 93, 210, 210, 116, 24, 750609, (65,7,0): 178, 70, 0, 0, 93, 220, 220, 116, 142, 750709, (65,8,0): 179, 69, 0, 0, 94, 229, 229, 116, 110, 750809, (65,9,0): 179, 69, 0, 0, 94, 238, 238, 3, 74, 750909, (65,10,0): 179, 68, 0, 0, 94, 245, 245, 146, 74, 751009, (65,11,0): 179, 68, 0, 0, 94, 249, 249, 49, 74, 751109, (65,12,0): 179, 68, 0, 0, 94, 249, 249, 49, 237, 751209, (65,13,0): 179, 68, 0, 0, 94, 250, 250, 156, 4, 751309, (65,14,0): 179, 68, 0, 0, 94, 248, 248, 49, 75, 751409, (65,15,0): 179, 68, 0, 0, 94, 242, 242, 66, 235, 751509, (65,16,0): 179, 68, 0, 0, 92, 239, 239, 195, 235, 751609, (65,17,0): 179, 68, 0, 0, 94, 237, 237, 125, 26, 751709, (65,18,0): 178, 68, 0, 0, 95, 237, 237, 71, 54, 751809, (65,19,0): 178, 68, 0, 0, 94, 239, 239, 103, 235, 751909, (65,20,0): 178, 69, 0, 0, 91, 239, 239, 194, 43, 752009, (65,21,0): 177, 70, 0, 0, 91, 242, 242, 101, 115, 752109, (65,22,0): 177, 70, 0, 0, 92, 241, 241, 101, 151, 752209, (65,23,0): 175, 71, 0, 0, 94, 244, 244, 218, 151, 752309, (65,24,0): 174, 71, 0, 0, 95, 244, 244, 68, 214, 752409, (65,25,0): 174, 72, 0, 0, 93, 242, 242, 112, 151, 752509, (65,26,0): 173, 72, 0, 0, 93, 236, 236, 98, 151, 752609, (65,27,0): 172, 73, 0, 0, 95, 229, 229, 167, 214, 752709, (65,28,0): 172, 74, 0, 0, 96, 225, 225, 67, 151, 752809, (65,29,0): 174, 74, 0, 0, 98, 223, 223, 161, 151, 752909, (65,30,0): 175, 74, 0, 0, 99, 221, 221, 161, 214, 753009, (65,31,0): 175, 73, 0, 0, 101, 220, 220, 190, 151, 753109, (65,32,0): 175, 72, 0, 0, 105, 221, 221, 202, 214, 753209, (65,33,0): 175, 72, 0, 0, 103, 223, 223, 161, 151, 753309, (65,34,0): 174, 72, 0, 0, 101, 227, 227, 169, 151, 753409, (65,35,0): 173, 71, 0, 0, 103, 230, 230, 169, 56, 753509, (65,36,0): 171, 74, 0, 0, 110, 233, 233, 132, 122, 753609, (65,37,0): 169, 74, 0, 0, 121, 234, 234, 169, 165, 753709, (65,38,0): 170, 73, 0, 0, 128, 236, 236, 205, 45, 753809, (65,39,0): 172, 73, 0, 0, 135, 244, 244, 21, 228, 753909, (65,40,0): 173, 72, 0, 0, 158, 244, 244, 205, 92, 754009, (65,41,0): 170, 72, 0, 0, 163, 241, 241, 21, 9, 754109, (65,42,0): 168, 71, 0, 0, 171, 238, 238, 21, 107, 754209, (65,43,0): 169, 71, 0, 0, 185, 230, 230, 205, 6, 754309, (65,44,0): 170, 71, 0, 0, 211, 224, 224, 21, 6, 754409, (65,45,0): 172, 71, 0, 0, 234, 218, 218, 132, 173, 754509, (65,46,0): 172, 71, 0, 0, 244, 212, 212, 169, 173, 754609, (65,47,0): 171, 71, 0, 0, 244, 211, 211, 21, 120, 754709, (65,48,0): 168, 71, 0, 0, 245, 209, 209, 21, 120, 754809, (65,49,0): 167, 71, 0, 0, 238, 208, 208, 205, 145, 754909, (66,0,0): 179, 77, 0, 0, 93, 213, 213, 33, 60, 760009, (66,1,0): 179, 74, 0, 0, 93, 213, 213, 33, 100, 760109, (66,2,0): 178, 73, 0, 0, 93, 210, 210, 33, 60, 760209, (66,3,0): 179, 72, 0, 0, 93, 213, 213, 33, 194, 760309, (66,4,0): 179, 72, 0, 0, 93, 218, 218, 79, 241, 760409, (66,5,0): 178, 71, 0, 0, 93, 221, 221, 221, 251, 760509, (66,6,0): 179, 70, 0, 0, 93, 220, 220, 221, 194, 760609, (66,7,0): 179, 70, 0, 0, 93, 232, 232, 46, 74, 760709, (66,8,0): 179, 69, 0, 0, 93, 241, 241, 186, 24, 760809, (66,9,0): 179, 69, 0, 0, 93, 247, 247, 72, 60, 760909, (66,10,0): 179, 68, 0, 0, 93, 251, 251, 146, 60, 761009, (66,11,0): 179, 68, 0, 0, 93, 250, 250, 72, 31, 761109, (66,12,0): 179, 69, 0, 0, 93, 245, 245, 146, 209, 761209, (66,13,0): 179, 69, 0, 0, 93, 242, 242, 195, 237, 761309, (66,14,0): 180, 69, 0, 0, 93, 239, 239, 195, 148, 761409, (66,15,0): 179, 69, 0, 0, 93, 237, 237, 66, 10, 761509, (66,16,0): 179, 69, 0, 0, 94, 234, 234, 219, 96, 761609, (66,17,0): 179, 69, 0, 0, 95, 234, 234, 125, 10, 761709, (66,18,0): 178, 69, 0, 0, 97, 235, 235, 185, 10, 761809, (66,19,0): 178, 70, 0, 0, 96, 237, 237, 219, 148, 761909, (66,20,0): 177, 70, 0, 0, 93, 241, 241, 102, 47, 762009, (66,21,0): 177, 71, 0, 0, 92, 244, 244, 101, 197, 762109, (66,22,0): 177, 71, 0, 0, 91, 243, 243, 218, 189, 762209, (66,23,0): 176, 71, 0, 0, 91, 239, 239, 68, 69, 762309, (66,24,0): 176, 72, 0, 0, 91, 238, 238, 112, 56, 762409, (66,25,0): 176, 73, 0, 0, 91, 236, 236, 217, 56, 762509, (66,26,0): 174, 73, 0, 0, 92, 233, 233, 167, 151, 762609, (66,27,0): 173, 73, 0, 0, 92, 226, 226, 167, 151, 762709, (66,28,0): 173, 75, 0, 0, 95, 222, 222, 67, 151, 762809, (66,29,0): 173, 74, 0, 0, 99, 223, 223, 161, 214, 762909, (66,30,0): 174, 74, 0, 0, 102, 225, 225, 166, 151, 763009, (66,31,0): 175, 73, 0, 0, 103, 221, 221, 21, 214, 763109, (66,32,0): 175, 73, 0, 0, 103, 222, 222, 169, 151, 763209, (66,33,0): 175, 72, 0, 0, 103, 225, 225, 169, 214, 763309, (66,34,0): 174, 72, 0, 0, 104, 227, 227, 132, 189, 763409, (66,35,0): 172, 72, 0, 0, 108, 230, 230, 132, 189, 763509, (66,36,0): 171, 75, 0, 0, 115, 233, 233, 169, 189, 763609, (66,37,0): 169, 75, 0, 0, 124, 234, 234, 21, 56, 763709, (66,38,0): 170, 74, 0, 0, 130, 236, 236, 21, 56, 763809, (66,39,0): 173, 74, 0, 0, 138, 244, 244, 205, 39, 763909, (66,40,0): 173, 73, 0, 0, 152, 244, 244, 21, 215, 764009, (66,41,0): 173, 73, 0, 0, 160, 241, 241, 205, 92, 764109, (66,42,0): 172, 72, 0, 0, 170, 236, 236, 205, 154, 764209, (66,43,0): 172, 72, 0, 0, 185, 230, 230, 21, 6, 764309, (66,44,0): 172, 71, 0, 0, 207, 223, 223, 205, 6, 764409, (66,45,0): 172, 71, 0, 0, 228, 216, 216, 205, 173, 764509, (66,46,0): 172, 71, 0, 0, 238, 211, 211, 21, 6, 764609, (66,47,0): 171, 71, 0, 0, 242, 208, 208, 169, 120, 764709, (66,48,0): 170, 71, 0, 0, 248, 205, 205, 169, 201, 764809, (66,49,0): 169, 71, 0, 0, 242, 205, 205, 169, 145, 764909, (67,0,0): 179, 77, 0, 0, 94, 215, 215, 33, 100, 770009, (67,1,0): 179, 75, 0, 0, 94, 220, 220, 128, 194, 770109, (67,2,0): 178, 74, 0, 0, 94, 220, 220, 33, 28, 770209, (67,3,0): 179, 74, 0, 0, 94, 217, 217, 79, 194, 770309, (67,4,0): 179, 73, 0, 0, 94, 218, 218, 221, 241, 770409, (67,5,0): 179, 73, 0, 0, 94, 226, 226, 79, 103, 770509, (67,6,0): 179, 73, 0, 0, 94, 236, 236, 221, 233, 770609, (67,7,0): 179, 72, 0, 0, 94, 245, 245, 79, 62, 770709, (67,8,0): 179, 71, 0, 0, 94, 242, 242, 116, 60, 770809, (67,9,0): 179, 71, 0, 0, 94, 240, 240, 116, 20, 770909, (67,10,0): 179, 71, 0, 0, 94, 246, 246, 116, 20, 771009, (67,11,0): 179, 70, 0, 0, 94, 246, 246, 46, 228, 771109, (67,12,0): 179, 72, 0, 0, 94, 241, 241, 116, 228, 771209, (67,13,0): 179, 72, 0, 0, 94, 237, 237, 18, 39, 771309, (67,14,0): 46, 72, 3, 2, 94, 237, 237, 186, 39, 771409, (67,15,0): 46, 72, 3, 2, 94, 236, 236, 125, 7, 771509, (67,16,0): 179, 72, 0, 0, 94, 230, 230, 125, 73, 771609, (67,17,0): 179, 72, 0, 0, 96, 228, 228, 219, 73, 771709, (67,18,0): 179, 72, 0, 0, 97, 229, 229, 113, 73, 771809, (67,19,0): 178, 72, 0, 0, 96, 235, 235, 102, 73, 771909, (67,20,0): 178, 71, 0, 0, 93, 240, 240, 194, 77, 772009, (67,21,0): 178, 71, 0, 0, 90, 241, 241, 159, 148, 772109, (67,22,0): 177, 71, 0, 0, 89, 239, 239, 68, 54, 772209, (67,23,0): 176, 72, 0, 0, 88, 242, 242, 159, 83, 772309, (67,24,0): 177, 73, 0, 0, 88, 238, 238, 112, 69, 772409, (67,25,0): 177, 73, 0, 0, 91, 234, 234, 112, 115, 772509, (67,26,0): 176, 73, 0, 0, 95, 230, 230, 167, 56, 772609, (67,27,0): 174, 74, 0, 0, 98, 225, 225, 40, 56, 772709, (67,28,0): 173, 75, 0, 0, 101, 223, 223, 40, 56, 772809, (67,29,0): 174, 75, 0, 0, 105, 220, 220, 26, 151, 772909, (67,30,0): 174, 75, 0, 0, 108, 220, 220, 160, 56, 773009, (67,31,0): 174, 74, 0, 0, 107, 222, 222, 160, 151, 773109, (67,32,0): 175, 74, 0, 0, 108, 225, 225, 132, 151, 773209, (67,33,0): 175, 73, 0, 0, 108, 227, 227, 132, 151, 773309, (67,34,0): 174, 73, 0, 0, 111, 230, 230, 160, 151, 773409, (67,35,0): 173, 72, 0, 0, 114, 233, 233, 169, 151, 773509, (67,36,0): 172, 76, 0, 0, 121, 236, 236, 169, 56, 773609, (67,37,0): 171, 77, 0, 0, 127, 237, 237, 21, 56, 773709, (67,38,0): 171, 76, 0, 0, 133, 239, 239, 205, 151, 773809, (67,39,0): 171, 76, 0, 0, 140, 244, 244, 205, 165, 773909, (67,40,0): 172, 75, 0, 0, 142, 243, 243, 205, 7, 774009, (67,41,0): 173, 75, 0, 0, 159, 240, 240, 169, 41, 774109, (67,42,0): 174, 74, 0, 0, 173, 237, 237, 205, 173, 774209, (67,43,0): 173, 74, 0, 0, 179, 231, 231, 169, 6, 774309, (67,44,0): 172, 72, 0, 0, 189, 224, 224, 169, 154, 774409, (67,45,0): 171, 72, 0, 0, 204, 215, 215, 21, 76, 774509, (67,46,0): 171, 72, 0, 0, 222, 207, 207, 169, 145, 774609, (67,47,0): 172, 72, 0, 0, 241, 202, 202, 205, 113, 774709, (67,48,0): 173, 72, 0, 0, 254, 200, 200, 169, 6, 774809, (67,49,0): 174, 72, 0, 0, 253, 199, 199, 21, 120, 774909, (68,0,0): 179, 77, 0, 0, 94, 214, 214, 79, 194, 780009, (68,1,0): 179, 75, 0, 0, 94, 217, 217, 116, 251, 780109, (68,2,0): 179, 74, 0, 0, 94, 215, 215, 72, 241, 780209, (68,3,0): 179, 74, 0, 0, 94, 213, 213, 18, 103, 780309, (68,4,0): 179, 75, 0, 0, 94, 216, 216, 18, 219, 780409, (68,5,0): 179, 75, 0, 0, 94, 222, 222, 18, 219, 780509, (68,6,0): 179, 74, 0, 0, 94, 231, 231, 79, 103, 780609, (68,7,0): 46, 74, 3, 2, 94, 248, 248, 33, 103, 780709, (68,8,0): 46, 73, 3, 2, 94, 241, 241, 221, 20, 780809, (68,9,0): 180, 73, 0, 0, 94, 237, 237, 46, 233, 780909, (68,10,0): 179, 72, 0, 0, 94, 239, 239, 221, 20, 781009, (68,11,0): 179, 72, 0, 0, 94, 240, 240, 221, 92, 781109, (68,12,0): 179, 73, 0, 0, 94, 238, 238, 221, 20, 781209, (68,13,0): 179, 73, 0, 0, 94, 235, 235, 186, 7, 781309, (68,14,0): 180, 73, 0, 0, 94, 235, 235, 185, 60, 781409, (68,15,0): 180, 73, 0, 0, 94, 228, 228, 125, 7, 781509, (68,16,0): 46, 73, 3, 2, 93, 220, 220, 219, 209, 781609, (68,17,0): 46, 73, 3, 2, 95, 216, 216, 103, 101, 781709, (68,18,0): 179, 73, 0, 0, 96, 223, 223, 251, 250, 781809, (68,19,0): 179, 73, 0, 0, 95, 238, 238, 194, 215, 781909, (68,20,0): 179, 71, 0, 0, 92, 248, 248, 159, 215, 782009, (68,21,0): 178, 72, 0, 0, 90, 248, 248, 149, 209, 782109, (68,22,0): 177, 72, 0, 0, 88, 243, 243, 127, 159, 782209, (68,23,0): 176, 73, 0, 0, 88, 233, 233, 68, 235, 782309, (68,24,0): 176, 73, 0, 0, 89, 231, 231, 68, 197, 782409, (68,25,0): 175, 74, 0, 0, 96, 229, 229, 10, 158, 782509, (68,26,0): 174, 74, 0, 0, 103, 226, 226, 67, 43, 782609, (68,27,0): 174, 74, 0, 0, 110, 225, 225, 67, 197, 782709, (68,28,0): 174, 76, 0, 0, 115, 224, 224, 40, 69, 782809, (68,29,0): 174, 75, 0, 0, 115, 225, 225, 26, 151, 782909, (68,30,0): 173, 75, 0, 0, 115, 225, 225, 114, 151, 783009, (68,31,0): 173, 75, 0, 0, 113, 224, 224, 114, 151, 783109, (68,32,0): 174, 74, 0, 0, 111, 226, 226, 160, 56, 783209, (68,33,0): 174, 73, 0, 0, 112, 229, 229, 160, 151, 783309, (68,34,0): 173, 73, 0, 0, 114, 231, 231, 160, 56, 783409, (68,35,0): 172, 75, 0, 0, 118, 233, 233, 160, 151, 783509, (68,36,0): 172, 78, 0, 0, 122, 236, 236, 132, 56, 783609, (68,37,0): 171, 78, 0, 0, 127, 237, 237, 205, 212, 783709, (68,38,0): 169, 77, 0, 0, 132, 238, 238, 169, 56, 783809, (68,39,0): 168, 77, 0, 0, 138, 243, 243, 169, 69, 783909, (68,40,0): 169, 76, 0, 0, 147, 242, 242, 205, 4, 784009, (68,41,0): 172, 76, 0, 0, 157, 238, 238, 169, 110, 784109, (68,42,0): 173, 75, 0, 0, 160, 234, 234, 205, 218, 784209, (68,43,0): 173, 75, 0, 0, 158, 228, 228, 169, 113, 784309, (68,44,0): 173, 72, 0, 0, 160, 220, 220, 205, 145, 784409, (68,45,0): 172, 72, 0, 0, 172, 211, 211, 169, 6, 784509, (68,46,0): 172, 72, 0, 0, 188, 203, 203, 169, 120, 784609, (68,47,0): 174, 72, 0, 0, 210, 198, 198, 169, 6, 784709, (68,48,0): 176, 72, 0, 0, 240, 195, 195, 21, 113, 784809, (68,49,0): 177, 72, 0, 0, 253, 194, 194, 202, 113, 784909, (69,0,0): 178, 77, 0, 0, 95, 213, 213, 72, 100, 790009, (69,1,0): 179, 74, 0, 0, 95, 214, 214, 66, 251, 790109, (69,2,0): 179, 74, 0, 0, 95, 215, 215, 66, 219, 790209, (69,3,0): 179, 73, 0, 0, 95, 218, 218, 234, 71, 790309, (69,4,0): 179, 76, 0, 0, 95, 223, 223, 49, 71, 790409, (69,5,0): 179, 77, 0, 0, 95, 229, 229, 204, 71, 790509, (69,6,0): 46, 76, 3, 2, 95, 233, 233, 221, 219, 790609, (69,7,0): 179, 76, 0, 0, 95, 240, 240, 33, 71, 790709, (69,8,0): 179, 75, 0, 0, 95, 237, 237, 33, 233, 790809, (69,9,0): 179, 75, 0, 0, 95, 235, 235, 33, 76, 790909, (69,10,0): 179, 74, 0, 0, 95, 236, 236, 128, 213, 791009, (69,11,0): 180, 74, 0, 0, 95, 238, 238, 33, 233, 791109, (69,12,0): 180, 73, 0, 0, 95, 237, 237, 79, 213, 791209, (69,13,0): 180, 73, 0, 0, 95, 235, 235, 18, 209, 791309, (69,14,0): 179, 73, 0, 0, 95, 234, 234, 185, 228, 791409, (69,15,0): 179, 73, 0, 0, 95, 221, 221, 185, 60, 791509, (69,16,0): 180, 73, 0, 0, 94, 225, 225, 71, 62, 791609, (69,17,0): 180, 73, 0, 0, 95, 236, 236, 103, 103, 791709, (69,18,0): 180, 73, 0, 0, 96, 248, 248, 102, 107, 791809, (69,19,0): 179, 73, 0, 0, 94, 253, 253, 163, 107, 791909, (69,20,0): 179, 72, 0, 0, 91, 250, 250, 196, 154, 792009, (69,21,0): 178, 74, 0, 0, 89, 239, 239, 159, 48, 792109, (69,22,0): 177, 74, 0, 0, 90, 229, 229, 68, 106, 792209, (69,23,0): 176, 75, 0, 0, 90, 226, 226, 68, 67, 792309, (69,24,0): 175, 75, 0, 0, 95, 224, 224, 68, 82, 792409, (69,25,0): 174, 76, 0, 0, 104, 224, 224, 166, 10, 792509, (69,26,0): 173, 76, 0, 0, 114, 224, 224, 77, 39, 792609, (69,27,0): 172, 77, 0, 0, 122, 225, 225, 166, 148, 792709, (69,28,0): 172, 78, 0, 0, 123, 226, 226, 161, 235, 792809, (69,29,0): 172, 78, 0, 0, 123, 228, 228, 132, 85, 792909, (69,30,0): 173, 77, 0, 0, 122, 228, 228, 170, 197, 793009, (69,31,0): 173, 77, 0, 0, 118, 225, 225, 26, 69, 793109, (69,32,0): 174, 76, 0, 0, 113, 228, 228, 131, 29, 793209, (69,33,0): 173, 76, 0, 0, 114, 230, 230, 131, 85, 793309, (69,34,0): 172, 76, 0, 0, 116, 232, 232, 114, 69, 793409, (69,35,0): 171, 75, 0, 0, 119, 235, 235, 131, 69, 793509, (69,36,0): 170, 79, 0, 0, 122, 235, 235, 132, 115, 793609, (69,37,0): 167, 79, 0, 0, 126, 235, 235, 132, 69, 793709, (69,38,0): 166, 78, 0, 0, 132, 236, 236, 170, 151, 793809, (69,39,0): 166, 78, 0, 0, 139, 239, 239, 57, 151, 793909, (69,40,0): 168, 77, 0, 0, 150, 238, 238, 132, 151, 794009, (69,41,0): 172, 77, 0, 0, 153, 236, 236, 169, 56, 794109, (69,42,0): 173, 76, 0, 0, 155, 231, 231, 205, 152, 794209, (69,43,0): 173, 76, 0, 0, 162, 226, 226, 21, 110, 794309, (69,44,0): 173, 72, 0, 0, 170, 217, 217, 169, 251, 794409, (69,45,0): 174, 72, 0, 0, 171, 207, 207, 205, 71, 794509, (69,46,0): 175, 72, 0, 0, 159, 199, 199, 169, 103, 794609, (69,47,0): 177, 72, 0, 0, 153, 194, 194, 169, 107, 794709, (69,48,0): 178, 72, 0, 0, 186, 191, 191, 161, 107, 794809, (69,49,0): 179, 72, 0, 0, 210, 189, 189, 136, 173, 794909, (70,0,0): 179, 79, 0, 0, 95, 212, 212, 72, 28, 800009, (70,1,0): 179, 77, 0, 0, 95, 213, 213, 66, 251, 800109, (70,2,0): 179, 76, 0, 0, 95, 219, 219, 195, 219, 800209, (70,3,0): 179, 76, 0, 0, 95, 227, 227, 204, 71, 800309, (70,4,0): 179, 78, 0, 0, 95, 233, 233, 79, 125, 800409, (70,5,0): 179, 78, 0, 0, 95, 236, 236, 79, 71, 800509, (70,6,0): 179, 77, 0, 0, 95, 236, 236, 79, 71, 800609, (70,7,0): 179, 77, 0, 0, 95, 232, 232, 79, 145, 800709, (70,8,0): 179, 76, 0, 0, 94, 236, 236, 33, 243, 800809, (70,9,0): 178, 76, 0, 0, 94, 239, 239, 79, 243, 800909, (70,10,0): 179, 75, 0, 0, 94, 238, 238, 79, 76, 801009, (70,11,0): 179, 75, 0, 0, 94, 234, 234, 221, 213, 801109, (70,12,0): 179, 74, 0, 0, 94, 230, 230, 79, 76, 801209, (70,13,0): 180, 74, 0, 0, 94, 228, 228, 33, 215, 801309, (70,14,0): 179, 74, 0, 0, 94, 226, 226, 119, 251, 801409, (70,15,0): 179, 74, 0, 0, 95, 243, 243, 120, 102, 801509, (70,16,0): 179, 74, 0, 0, 97, 252, 252, 125, 103, 801609, (70,17,0): 178, 74, 0, 0, 97, 255, 255, 251, 113, 801709, (70,18,0): 177, 74, 0, 0, 97, 255, 255, 194, 71, 801809, (70,19,0): 178, 74, 0, 0, 94, 243, 243, 159, 173, 801909, (70,20,0): 178, 72, 0, 0, 91, 228, 228, 159, 107, 802009, (70,21,0): 178, 72, 0, 0, 91, 223, 223, 127, 215, 802109, (70,22,0): 177, 73, 0, 0, 92, 221, 221, 159, 106, 802209, (70,23,0): 174, 73, 0, 0, 95, 223, 223, 77, 39, 802309, (70,24,0): 172, 74, 0, 0, 107, 222, 222, 190, 77, 802409, (70,25,0): 172, 76, 0, 0, 115, 222, 222, 190, 48, 802509, (70,26,0): 169, 77, 0, 0, 125, 223, 223, 190, 215, 802609, (70,27,0): 169, 77, 0, 0, 130, 225, 225, 21, 48, 802709, (70,28,0): 170, 78, 0, 0, 129, 226, 226, 169, 209, 802809, (70,29,0): 171, 78, 0, 0, 125, 229, 229, 132, 39, 802909, (70,30,0): 172, 78, 0, 0, 123, 230, 230, 170, 209, 803009, (70,31,0): 172, 77, 0, 0, 120, 229, 229, 170, 39, 803109, (70,32,0): 172, 77, 0, 0, 115, 230, 230, 114, 39, 803209, (70,33,0): 171, 76, 0, 0, 115, 232, 232, 131, 82, 803309, (70,34,0): 171, 76, 0, 0, 120, 233, 233, 131, 4, 803409, (70,35,0): 171, 75, 0, 0, 123, 235, 235, 170, 197, 803509, (70,36,0): 169, 78, 0, 0, 126, 235, 235, 170, 43, 803609, (70,37,0): 166, 78, 0, 0, 132, 235, 235, 21, 197, 803709, (70,38,0): 165, 79, 0, 0, 141, 236, 236, 169, 212, 803809, (70,39,0): 166, 77, 0, 0, 148, 238, 238, 169, 56, 803909, (70,40,0): 170, 78, 0, 0, 154, 238, 238, 169, 151, 804009, (70,41,0): 173, 76, 0, 0, 160, 234, 234, 132, 151, 804109, (70,42,0): 174, 77, 0, 0, 171, 229, 229, 169, 151, 804209, (70,43,0): 175, 75, 0, 0, 188, 223, 223, 169, 214, 804309, (70,44,0): 175, 72, 0, 0, 201, 214, 214, 169, 75, 804409, (70,45,0): 176, 71, 0, 0, 197, 204, 204, 169, 194, 804509, (70,46,0): 177, 72, 0, 0, 170, 197, 197, 21, 76, 804609, (70,47,0): 178, 71, 0, 0, 154, 190, 190, 21, 102, 804709, (70,48,0): 179, 72, 0, 0, 155, 186, 186, 161, 254, 804809, (70,49,0): 180, 71, 0, 0, 173, 182, 182, 205, 107, 804909, (71,0,0): 179, 82, 0, 0, 95, 210, 210, 79, 194, 810009, (71,1,0): 179, 81, 0, 0, 95, 214, 214, 18, 251, 810109, (71,2,0): 179, 80, 0, 0, 95, 222, 222, 72, 219, 810209, (71,3,0): 179, 77, 0, 0, 95, 229, 229, 18, 113, 810309, (71,4,0): 179, 78, 0, 0, 95, 234, 234, 79, 219, 810409, (71,5,0): 179, 78, 0, 0, 95, 232, 232, 79, 113, 810509, (71,6,0): 179, 78, 0, 0, 95, 230, 230, 33, 55, 810609, (71,7,0): 179, 78, 0, 0, 95, 233, 233, 232, 236, 810709, (71,8,0): 177, 78, 0, 0, 94, 239, 239, 33, 120, 810809, (71,9,0): 177, 78, 0, 0, 94, 240, 240, 232, 71, 810909, (71,10,0): 178, 78, 0, 0, 94, 234, 234, 33, 71, 811009, (71,11,0): 178, 78, 0, 0, 94, 228, 228, 33, 243, 811109, (71,12,0): 179, 75, 0, 0, 94, 228, 228, 33, 243, 811209, (71,13,0): 180, 75, 0, 0, 94, 232, 232, 119, 76, 811309, (71,14,0): 180, 75, 0, 0, 94, 237, 237, 33, 76, 811409, (71,15,0): 178, 74, 0, 0, 95, 255, 255, 120, 71, 811509, (71,16,0): 175, 74, 0, 0, 99, 255, 255, 219, 113, 811609, (71,17,0): 172, 73, 0, 0, 99, 241, 241, 102, 120, 811709, (71,18,0): 173, 73, 0, 0, 97, 221, 221, 163, 113, 811809, (71,19,0): 176, 71, 0, 0, 93, 209, 209, 163, 6, 811909, (71,20,0): 176, 74, 0, 0, 90, 209, 209, 159, 113, 812009, (71,21,0): 176, 74, 0, 0, 92, 220, 220, 159, 173, 812109, (71,22,0): 174, 74, 0, 0, 95, 231, 231, 68, 213, 812209, (71,23,0): 170, 74, 0, 0, 97, 224, 224, 77, 92, 812309, (71,24,0): 169, 74, 0, 0, 116, 224, 224, 190, 213, 812409, (71,25,0): 170, 75, 0, 0, 121, 224, 224, 190, 213, 812509, (71,26,0): 168, 75, 0, 0, 129, 224, 224, 130, 41, 812609, (71,27,0): 169, 75, 0, 0, 131, 226, 226, 42, 213, 812709, (71,28,0): 170, 74, 0, 0, 126, 227, 227, 21, 213, 812809, (71,29,0): 171, 75, 0, 0, 121, 229, 229, 131, 213, 812909, (71,30,0): 171, 78, 0, 0, 121, 229, 229, 114, 41, 813009, (71,31,0): 171, 80, 0, 0, 119, 230, 230, 184, 92, 813109, (71,32,0): 171, 81, 0, 0, 119, 231, 231, 114, 106, 813209, (71,33,0): 171, 81, 0, 0, 120, 234, 234, 131, 73, 813309, (71,34,0): 171, 80, 0, 0, 125, 235, 235, 131, 39, 813409, (71,35,0): 171, 79, 0, 0, 130, 235, 235, 170, 68, 813509, (71,36,0): 171, 77, 0, 0, 133, 235, 235, 131, 10, 813609, (71,37,0): 169, 75, 0, 0, 141, 232, 232, 169, 217, 813709, (71,38,0): 168, 77, 0, 0, 151, 234, 234, 169, 212, 813809, (71,39,0): 168, 75, 0, 0, 160, 238, 238, 169, 56, 813909, (71,40,0): 171, 77, 0, 0, 172, 238, 238, 132, 69, 814009, (71,41,0): 174, 75, 0, 0, 182, 234, 234, 132, 212, 814109, (71,42,0): 176, 77, 0, 0, 190, 228, 228, 170, 212, 814209, (71,43,0): 177, 75, 0, 0, 200, 223, 223, 132, 158, 814309, (71,44,0): 177, 73, 0, 0, 208, 214, 214, 169, 211, 814409, (71,45,0): 177, 71, 0, 0, 214, 203, 203, 169, 197, 814509, (71,46,0): 178, 74, 0, 0, 209, 195, 195, 169, 158, 814609, (71,47,0): 178, 72, 0, 0, 208, 186, 186, 21, 47, 814709, (71,48,0): 179, 74, 0, 0, 175, 181, 181, 21, 4, 814809, (71,49,0): 179, 70, 0, 0, 174, 179, 179, 21, 148, 814909, (72,0,0): 180, 86, 0, 0, 92, 219, 219, 33, 60, 820009, (72,1,0): 179, 85, 0, 0, 94, 222, 222, 79, 62, 820109, (72,2,0): 179, 84, 0, 0, 96, 229, 229, 186, 103, 820209, (72,3,0): 179, 82, 0, 0, 96, 234, 234, 186, 219, 820309, (72,4,0): 179, 81, 0, 0, 95, 234, 234, 18, 219, 820409, (72,5,0): 179, 79, 0, 0, 95, 231, 231, 232, 71, 820509, (72,6,0): 179, 79, 0, 0, 95, 227, 227, 232, 145, 820609, (72,7,0): 178, 79, 0, 0, 97, 232, 232, 232, 71, 820709, (72,8,0): 177, 79, 0, 0, 98, 235, 235, 35, 71, 820809, (72,9,0): 176, 79, 0, 0, 95, 236, 236, 35, 71, 820909, (72,10,0): 175, 79, 0, 0, 93, 232, 232, 35, 71, 821009, (72,11,0): 175, 79, 0, 0, 93, 236, 236, 128, 243, 821109, (72,12,0): 178, 76, 0, 0, 97, 248, 248, 232, 71, 821209, (72,13,0): 180, 76, 0, 0, 99, 255, 255, 119, 71, 821309, (72,14,0): 179, 75, 0, 0, 98, 255, 255, 55, 113, 821409, (72,15,0): 176, 75, 0, 0, 96, 249, 249, 125, 120, 821509, (72,16,0): 173, 74, 0, 0, 100, 226, 226, 103, 120, 821609, (72,17,0): 173, 74, 0, 0, 97, 202, 202, 250, 6, 821709, (72,18,0): 175, 73, 0, 0, 93, 192, 192, 163, 120, 821809, (72,19,0): 177, 72, 0, 0, 94, 201, 201, 196, 6, 821909, (72,20,0): 177, 74, 0, 0, 91, 214, 214, 159, 113, 822009, (72,21,0): 176, 73, 0, 0, 90, 223, 223, 68, 71, 822109, (72,22,0): 173, 73, 0, 0, 101, 224, 224, 68, 243, 822209, (72,23,0): 171, 73, 0, 0, 115, 226, 226, 166, 76, 822309, (72,24,0): 171, 74, 0, 0, 121, 225, 225, 77, 76, 822409, (72,25,0): 171, 74, 0, 0, 122, 226, 226, 42, 243, 822509, (72,26,0): 171, 75, 0, 0, 126, 225, 225, 42, 173, 822609, (72,27,0): 170, 75, 0, 0, 128, 227, 227, 161, 243, 822709, (72,28,0): 169, 74, 0, 0, 125, 228, 228, 21, 76, 822809, (72,29,0): 170, 75, 0, 0, 120, 229, 229, 170, 41, 822909, (72,30,0): 170, 79, 0, 0, 114, 230, 230, 230, 213, 823009, (72,31,0): 170, 80, 0, 0, 108, 233, 233, 143, 254, 823109, (72,32,0): 170, 81, 0, 0, 116, 233, 233, 184, 106, 823209, (72,33,0): 170, 81, 0, 0, 118, 234, 234, 131, 73, 823309, (72,34,0): 171, 80, 0, 0, 128, 235, 235, 170, 77, 823409, (72,35,0): 172, 79, 0, 0, 139, 235, 235, 170, 148, 823509, (72,36,0): 173, 77, 0, 0, 150, 234, 234, 160, 148, 823609, (72,37,0): 173, 75, 0, 0, 164, 232, 232, 132, 158, 823709, (72,38,0): 171, 75, 0, 0, 178, 233, 233, 132, 212, 823809, (72,39,0): 171, 75, 0, 0, 188, 239, 239, 170, 212, 823909, (72,40,0): 174, 75, 0, 0, 203, 236, 236, 132, 212, 824009, (72,41,0): 176, 75, 0, 0, 211, 232, 232, 132, 212, 824109, (72,42,0): 177, 75, 0, 0, 217, 227, 227, 169, 85, 824209, (72,43,0): 177, 75, 0, 0, 219, 221, 221, 132, 68, 824309, (72,44,0): 177, 71, 0, 0, 220, 211, 211, 169, 10, 824409, (72,45,0): 176, 72, 0, 0, 221, 201, 201, 169, 212, 824509, (72,46,0): 176, 72, 0, 0, 217, 192, 192, 205, 56, 824609, (72,47,0): 178, 73, 0, 0, 217, 182, 182, 96, 212, 824709, (72,48,0): 179, 72, 0, 0, 209, 178, 178, 21, 56, 824809, (72,49,0): 179, 71, 0, 0, 184, 174, 174, 169, 83, 824909, (73,0,0): 179, 88, 0, 0, 91, 227, 227, 79, 60, 830009, (73,1,0): 179, 88, 0, 0, 94, 228, 228, 116, 241, 830109, (73,2,0): 179, 87, 0, 0, 96, 231, 231, 185, 103, 830209, (73,3,0): 179, 85, 0, 0, 96, 233, 233, 18, 113, 830309, (73,4,0): 179, 81, 0, 0, 96, 233, 233, 18, 76, 830409, (73,5,0): 179, 79, 0, 0, 95, 232, 232, 232, 71, 830509, (73,6,0): 179, 79, 0, 0, 96, 231, 231, 232, 236, 830609, (73,7,0): 179, 79, 0, 0, 97, 231, 231, 35, 71, 830709, (73,8,0): 178, 79, 0, 0, 98, 230, 230, 245, 71, 830809, (73,9,0): 176, 79, 0, 0, 96, 230, 230, 245, 71, 830909, (73,10,0): 173, 79, 0, 0, 95, 233, 233, 35, 71, 831009, (73,11,0): 174, 79, 0, 0, 96, 244, 244, 232, 71, 831109, (73,12,0): 178, 77, 0, 0, 98, 255, 255, 119, 71, 831209, (73,13,0): 178, 77, 0, 0, 99, 255, 255, 33, 6, 831309, (73,14,0): 176, 76, 0, 0, 98, 248, 248, 33, 236, 831409, (73,15,0): 172, 76, 0, 0, 96, 204, 204, 113, 120, 831509, (73,16,0): 172, 75, 0, 0, 102, 193, 193, 103, 6, 831609, (73,17,0): 176, 75, 0, 0, 95, 189, 189, 194, 120, 831709, (73,18,0): 178, 74, 0, 0, 92, 195, 195, 163, 120, 831809, (73,19,0): 178, 73, 0, 0, 94, 213, 213, 163, 120, 831909, (73,20,0): 178, 75, 0, 0, 97, 222, 222, 159, 6, 832009, (73,21,0): 177, 74, 0, 0, 100, 223, 223, 127, 120, 832109, (73,22,0): 176, 75, 0, 0, 109, 217, 217, 68, 6, 832209, (73,23,0): 175, 75, 0, 0, 118, 226, 226, 68, 71, 832309, (73,24,0): 175, 75, 0, 0, 119, 226, 226, 166, 113, 832409, (73,25,0): 175, 75, 0, 0, 123, 226, 226, 166, 6, 832509, (73,26,0): 173, 76, 0, 0, 125, 226, 226, 166, 6, 832609, (73,27,0): 171, 76, 0, 0, 120, 228, 228, 169, 6, 832709, (73,28,0): 170, 77, 0, 0, 113, 229, 229, 169, 71, 832809, (73,29,0): 169, 78, 0, 0, 107, 231, 231, 170, 76, 832909, (73,30,0): 170, 79, 0, 0, 108, 233, 233, 160, 213, 833009, (73,31,0): 170, 80, 0, 0, 110, 234, 234, 184, 213, 833109, (73,32,0): 170, 82, 0, 0, 117, 235, 235, 114, 215, 833209, (73,33,0): 170, 82, 0, 0, 124, 235, 235, 114, 209, 833309, (73,34,0): 172, 81, 0, 0, 137, 235, 235, 170, 73, 833409, (73,35,0): 172, 79, 0, 0, 152, 235, 235, 170, 68, 833509, (73,36,0): 172, 78, 0, 0, 168, 232, 232, 132, 148, 833609, (73,37,0): 170, 76, 0, 0, 184, 232, 232, 169, 47, 833709, (73,38,0): 169, 76, 0, 0, 201, 233, 233, 132, 85, 833809, (73,39,0): 173, 76, 0, 0, 211, 235, 235, 169, 212, 833909, (73,40,0): 176, 76, 0, 0, 219, 233, 233, 169, 56, 834009, (73,41,0): 176, 76, 0, 0, 226, 230, 230, 169, 212, 834109, (73,42,0): 175, 76, 0, 0, 231, 224, 224, 169, 13, 834209, (73,43,0): 175, 76, 0, 0, 230, 219, 219, 169, 82, 834309, (73,44,0): 174, 72, 0, 0, 228, 209, 209, 169, 235, 834409, (73,45,0): 174, 73, 0, 0, 226, 198, 198, 169, 212, 834509, (73,46,0): 176, 73, 0, 0, 219, 190, 190, 169, 13, 834609, (73,47,0): 179, 74, 0, 0, 212, 179, 179, 21, 29, 834709, (73,48,0): 179, 73, 0, 0, 212, 174, 174, 169, 244, 834809, (73,49,0): 179, 72, 0, 0, 189, 170, 170, 205, 4, 834909, (74,0,0): 179, 89, 0, 0, 89, 226, 226, 79, 194, 840009, (74,1,0): 179, 88, 0, 0, 91, 227, 227, 185, 251, 840109, (74,2,0): 179, 88, 0, 0, 94, 226, 226, 79, 219, 840209, (74,3,0): 179, 86, 0, 0, 94, 226, 226, 79, 243, 840309, (74,4,0): 179, 80, 0, 0, 94, 227, 227, 79, 185, 840409, (74,5,0): 179, 80, 0, 0, 94, 229, 229, 232, 113, 840509, (74,6,0): 179, 80, 0, 0, 95, 229, 229, 35, 71, 840609, (74,7,0): 179, 80, 0, 0, 96, 228, 228, 245, 120, 840709, (74,8,0): 177, 80, 0, 0, 97, 224, 224, 35, 71, 840809, (74,9,0): 175, 80, 0, 0, 96, 221, 221, 245, 71, 840909, (74,10,0): 174, 80, 0, 0, 95, 225, 225, 35, 71, 841009, (74,11,0): 172, 80, 0, 0, 96, 234, 234, 128, 6, 841109, (74,12,0): 173, 79, 0, 0, 97, 234, 234, 33, 71, 841209, (74,13,0): 174, 78, 0, 0, 97, 211, 211, 79, 71, 841309, (74,14,0): 175, 78, 0, 0, 96, 184, 184, 71, 113, 841409, (74,15,0): 177, 77, 0, 0, 94, 184, 184, 125, 71, 841509, (74,16,0): 177, 77, 0, 0, 98, 190, 190, 103, 71, 841609, (74,17,0): 177, 76, 0, 0, 92, 201, 201, 102, 6, 841709, (74,18,0): 177, 76, 0, 0, 91, 208, 208, 101, 120, 841809, (74,19,0): 178, 76, 0, 0, 99, 214, 214, 163, 6, 841909, (74,20,0): 178, 75, 0, 0, 107, 217, 217, 159, 6, 842009, (74,21,0): 177, 74, 0, 0, 113, 225, 225, 68, 120, 842109, (74,22,0): 177, 75, 0, 0, 118, 231, 231, 164, 6, 842209, (74,23,0): 177, 75, 0, 0, 121, 226, 226, 164, 6, 842309, (74,24,0): 176, 75, 0, 0, 121, 226, 226, 190, 6, 842409, (74,25,0): 174, 75, 0, 0, 121, 226, 226, 42, 71, 842509, (74,26,0): 171, 76, 0, 0, 120, 228, 228, 96, 6, 842609, (74,27,0): 169, 76, 0, 0, 110, 229, 229, 160, 6, 842709, (74,28,0): 169, 77, 0, 0, 101, 231, 231, 26, 6, 842809, (74,29,0): 170, 78, 0, 0, 96, 233, 233, 114, 76, 842909, (74,30,0): 170, 79, 0, 0, 106, 234, 234, 114, 213, 843009, (74,31,0): 170, 81, 0, 0, 114, 234, 234, 184, 92, 843109, (74,32,0): 171, 82, 0, 0, 125, 234, 234, 131, 215, 843209, (74,33,0): 171, 82, 0, 0, 135, 235, 235, 131, 106, 843309, (74,34,0): 172, 81, 0, 0, 151, 235, 235, 131, 209, 843409, (74,35,0): 171, 81, 0, 0, 169, 233, 233, 170, 218, 843509, (74,36,0): 170, 78, 0, 0, 187, 232, 232, 169, 209, 843609, (74,37,0): 169, 76, 0, 0, 203, 231, 231, 169, 32, 843709, (74,38,0): 170, 76, 0, 0, 220, 231, 231, 169, 39, 843809, (74,39,0): 172, 76, 0, 0, 229, 233, 233, 169, 77, 843909, (74,40,0): 172, 76, 0, 0, 233, 230, 230, 169, 43, 844009, (74,41,0): 174, 76, 0, 0, 237, 226, 226, 169, 244, 844109, (74,42,0): 175, 76, 0, 0, 240, 222, 222, 169, 244, 844209, (74,43,0): 174, 76, 0, 0, 237, 214, 214, 169, 10, 844309, (74,44,0): 174, 73, 0, 0, 231, 204, 204, 205, 32, 844409, (74,45,0): 176, 74, 0, 0, 226, 194, 194, 169, 10, 844509, (74,46,0): 178, 74, 0, 0, 215, 185, 185, 169, 10, 844609, (74,47,0): 179, 75, 0, 0, 203, 174, 174, 169, 211, 844709, (74,48,0): 179, 74, 0, 0, 185, 170, 170, 205, 211, 844809, (74,49,0): 179, 73, 0, 0, 170, 166, 166, 169, 206, 844909, (75,0,0): 178, 87, 0, 0, 87, 230, 230, 33, 24, 850009, (75,1,0): 178, 86, 0, 0, 90, 234, 234, 33, 194, 850109, (75,2,0): 179, 86, 0, 0, 92, 234, 234, 33, 251, 850209, (75,3,0): 179, 86, 0, 0, 94, 229, 229, 128, 219, 850309, (75,4,0): 179, 82, 0, 0, 93, 224, 224, 33, 71, 850409, (75,5,0): 179, 82, 0, 0, 94, 222, 222, 232, 71, 850509, (75,6,0): 178, 82, 0, 0, 95, 220, 220, 232, 113, 850609, (75,7,0): 175, 82, 0, 0, 97, 220, 220, 35, 219, 850709, (75,8,0): 174, 82, 0, 0, 96, 209, 209, 245, 113, 850809, (75,9,0): 177, 82, 0, 0, 96, 199, 199, 35, 71, 850909, (75,10,0): 175, 82, 0, 0, 96, 191, 191, 232, 71, 851009, (75,11,0): 170, 82, 0, 0, 97, 185, 185, 232, 71, 851109, (75,12,0): 171, 80, 0, 0, 97, 186, 186, 119, 236, 851209, (75,13,0): 174, 80, 0, 0, 96, 191, 191, 185, 6, 851309, (75,14,0): 177, 80, 0, 0, 95, 195, 195, 71, 71, 851409, (75,15,0): 179, 79, 0, 0, 92, 195, 195, 125, 6, 851509, (75,16,0): 178, 79, 0, 0, 90, 199, 199, 107, 120, 851609, (75,17,0): 177, 78, 0, 0, 90, 208, 208, 102, 71, 851709, (75,18,0): 177, 78, 0, 0, 98, 217, 217, 250, 113, 851809, (75,19,0): 177, 77, 0, 0, 106, 224, 224, 163, 6, 851909, (75,20,0): 177, 76, 0, 0, 113, 229, 229, 218, 120, 852009, (75,21,0): 177, 76, 0, 0, 118, 233, 233, 164, 6, 852109, (75,22,0): 177, 76, 0, 0, 120, 236, 236, 190, 6, 852209, (75,23,0): 177, 76, 0, 0, 122, 230, 230, 200, 145, 852309, (75,24,0): 176, 77, 0, 0, 119, 229, 229, 200, 6, 852409, (75,25,0): 174, 77, 0, 0, 115, 229, 229, 166, 6, 852509, (75,26,0): 170, 77, 0, 0, 109, 229, 229, 169, 6, 852609, (75,27,0): 169, 77, 0, 0, 98, 229, 229, 167, 6, 852709, (75,28,0): 169, 78, 0, 0, 93, 229, 229, 114, 71, 852809, (75,29,0): 170, 79, 0, 0, 97, 229, 229, 61, 41, 852909, (75,30,0): 171, 81, 0, 0, 108, 229, 229, 114, 213, 853009, (75,31,0): 171, 82, 0, 0, 120, 224, 224, 160, 20, 853109, (75,32,0): 172, 83, 0, 0, 137, 225, 225, 169, 250, 853209, (75,33,0): 172, 83, 0, 0, 149, 228, 228, 169, 92, 853309, (75,34,0): 172, 84, 0, 0, 164, 229, 229, 170, 92, 853409, (75,35,0): 171, 81, 0, 0, 182, 230, 230, 169, 215, 853509, (75,36,0): 170, 79, 0, 0, 199, 231, 231, 57, 254, 853609, (75,37,0): 170, 79, 0, 0, 213, 231, 231, 132, 154, 853709, (75,38,0): 171, 79, 0, 0, 225, 231, 231, 132, 215, 853809, (75,39,0): 172, 79, 0, 0, 231, 235, 235, 169, 77, 853909, (75,40,0): 171, 79, 0, 0, 235, 230, 230, 169, 54, 854009, (75,41,0): 172, 79, 0, 0, 238, 223, 223, 169, 69, 854109, (75,42,0): 174, 79, 0, 0, 238, 220, 220, 169, 212, 854209, (75,43,0): 174, 79, 0, 0, 233, 214, 214, 169, 235, 854309, (75,44,0): 175, 76, 0, 0, 227, 205, 205, 169, 32, 854409, (75,45,0): 177, 77, 0, 0, 218, 193, 193, 169, 10, 854509, (75,46,0): 178, 77, 0, 0, 203, 183, 183, 169, 82, 854609, (75,47,0): 179, 78, 0, 0, 188, 169, 169, 205, 43, 854709, (75,48,0): 179, 77, 0, 0, 166, 163, 163, 169, 85, 854809, (75,49,0): 179, 76, 0, 0, 157, 160, 160, 169, 85, 854909, (76,0,0): 179, 87, 0, 0, 85, 234, 234, 128, 153, 860009, (76,1,0): 179, 87, 0, 0, 87, 236, 236, 232, 194, 860109, (76,2,0): 179, 87, 0, 0, 91, 234, 234, 117, 251, 860209, (76,3,0): 179, 87, 0, 0, 92, 230, 230, 232, 103, 860309, (76,4,0): 177, 83, 0, 0, 93, 226, 226, 33, 219, 860409, (76,5,0): 176, 83, 0, 0, 93, 225, 225, 232, 38, 860509, (76,6,0): 175, 83, 0, 0, 95, 219, 219, 232, 251, 860609, (76,7,0): 174, 83, 0, 0, 97, 205, 205, 35, 194, 860709, (76,8,0): 176, 83, 0, 0, 95, 194, 194, 35, 20, 860809, (76,9,0): 178, 83, 0, 0, 96, 187, 187, 35, 103, 860909, (76,10,0): 177, 83, 0, 0, 97, 180, 180, 232, 71, 861009, (76,11,0): 175, 83, 0, 0, 97, 178, 178, 33, 71, 861109, (76,12,0): 174, 82, 0, 0, 96, 181, 181, 33, 120, 861209, (76,13,0): 175, 82, 0, 0, 95, 186, 186, 120, 55, 861309, (76,14,0): 175, 81, 0, 0, 95, 191, 191, 71, 6, 861409, (76,15,0): 177, 81, 0, 0, 94, 198, 198, 219, 120, 861509, (76,16,0): 177, 80, 0, 0, 86, 205, 205, 103, 6, 861609, (76,17,0): 176, 80, 0, 0, 95, 213, 213, 102, 6, 861709, (76,18,0): 176, 79, 0, 0, 110, 220, 220, 118, 6, 861809, (76,19,0): 176, 79, 0, 0, 116, 226, 226, 250, 71, 861909, (76,20,0): 177, 76, 0, 0, 120, 230, 230, 200, 6, 862009, (76,21,0): 177, 76, 0, 0, 120, 235, 235, 200, 71, 862109, (76,22,0): 177, 76, 0, 0, 120, 239, 239, 200, 71, 862209, (76,23,0): 176, 76, 0, 0, 121, 233, 233, 200, 6, 862309, (76,24,0): 175, 77, 0, 0, 115, 231, 231, 200, 71, 862409, (76,25,0): 173, 77, 0, 0, 106, 231, 231, 42, 173, 862509, (76,26,0): 170, 77, 0, 0, 96, 230, 230, 67, 236, 862609, (76,27,0): 169, 77, 0, 0, 91, 230, 230, 114, 6, 862709, (76,28,0): 170, 78, 0, 0, 95, 229, 229, 255, 173, 862809, (76,29,0): 171, 79, 0, 0, 106, 229, 229, 114, 243, 862909, (76,30,0): 172, 82, 0, 0, 118, 227, 227, 114, 76, 863009, (76,31,0): 173, 83, 0, 0, 128, 226, 226, 132, 213, 863109, (76,32,0): 172, 83, 0, 0, 147, 227, 227, 205, 92, 863209, (76,33,0): 172, 83, 0, 0, 158, 227, 227, 205, 92, 863309, (76,34,0): 171, 84, 0, 0, 173, 228, 228, 169, 213, 863409, (76,35,0): 171, 84, 0, 0, 187, 228, 228, 205, 92, 863509, (76,36,0): 171, 80, 0, 0, 203, 228, 228, 169, 213, 863609, (76,37,0): 172, 79, 0, 0, 212, 229, 229, 169, 154, 863709, (76,38,0): 171, 79, 0, 0, 221, 229, 229, 205, 215, 863809, (76,39,0): 172, 79, 0, 0, 225, 228, 228, 169, 73, 863909, (76,40,0): 174, 79, 0, 0, 229, 227, 227, 205, 148, 864009, (76,41,0): 174, 79, 0, 0, 230, 223, 223, 205, 235, 864109, (76,42,0): 175, 79, 0, 0, 228, 217, 217, 169, 244, 864209, (76,43,0): 175, 79, 0, 0, 224, 208, 208, 169, 240, 864309, (76,44,0): 175, 77, 0, 0, 218, 196, 196, 132, 10, 864409, (76,45,0): 176, 78, 0, 0, 206, 183, 183, 169, 96, 864509, (76,46,0): 178, 78, 0, 0, 190, 172, 172, 205, 10, 864609, (76,47,0): 178, 79, 0, 0, 174, 165, 165, 169, 212, 864709, (76,48,0): 179, 78, 0, 0, 155, 160, 160, 21, 56, 864809, (76,49,0): 178, 77, 0, 0, 143, 156, 156, 169, 151, 864909, (77,0,0): 180, 90, 0, 0, 82, 237, 237, 232, 194, 870009, (77,1,0): 179, 90, 0, 0, 85, 234, 234, 117, 194, 870109, (77,2,0): 180, 88, 0, 0, 88, 231, 231, 35, 194, 870209, (77,3,0): 179, 88, 0, 0, 90, 230, 230, 33, 194, 870309, (77,4,0): 175, 83, 0, 0, 91, 227, 227, 79, 62, 870409, (77,5,0): 174, 83, 0, 0, 92, 224, 224, 232, 194, 870509, (77,6,0): 176, 83, 0, 0, 94, 217, 217, 232, 60, 870609, (77,7,0): 177, 83, 0, 0, 96, 193, 193, 35, 142, 870709, (77,8,0): 178, 83, 0, 0, 96, 184, 184, 245, 153, 870809, (77,9,0): 179, 83, 0, 0, 97, 179, 179, 35, 194, 870909, (77,10,0): 179, 83, 0, 0, 97, 175, 175, 35, 233, 871009, (77,11,0): 178, 83, 0, 0, 97, 175, 175, 33, 113, 871109, (77,12,0): 178, 83, 0, 0, 96, 178, 178, 55, 71, 871209, (77,13,0): 177, 83, 0, 0, 96, 182, 182, 33, 6, 871309, (77,14,0): 177, 82, 0, 0, 98, 187, 187, 120, 71, 871409, (77,15,0): 177, 82, 0, 0, 97, 200, 200, 103, 71, 871509, (77,16,0): 176, 81, 0, 0, 94, 205, 205, 254, 71, 871609, (77,17,0): 176, 81, 0, 0, 106, 213, 213, 251, 6, 871709, (77,18,0): 174, 80, 0, 0, 121, 217, 217, 118, 71, 871809, (77,19,0): 175, 80, 0, 0, 125, 223, 223, 250, 113, 871909, (77,20,0): 177, 78, 0, 0, 122, 229, 229, 118, 113, 872009, (77,21,0): 177, 78, 0, 0, 120, 234, 234, 101, 76, 872109, (77,22,0): 176, 78, 0, 0, 118, 238, 238, 155, 107, 872209, (77,23,0): 176, 78, 0, 0, 115, 234, 234, 155, 76, 872309, (77,24,0): 174, 78, 0, 0, 106, 233, 233, 190, 173, 872409, (77,25,0): 171, 78, 0, 0, 99, 233, 233, 166, 243, 872509, (77,26,0): 169, 80, 0, 0, 91, 231, 231, 40, 173, 872609, (77,27,0): 170, 80, 0, 0, 93, 231, 231, 114, 41, 872709, (77,28,0): 171, 79, 0, 0, 104, 230, 230, 255, 243, 872809, (77,29,0): 172, 80, 0, 0, 118, 229, 229, 132, 76, 872909, (77,30,0): 173, 84, 0, 0, 129, 229, 229, 160, 173, 873009, (77,31,0): 173, 85, 0, 0, 136, 227, 227, 132, 76, 873109, (77,32,0): 173, 86, 0, 0, 153, 228, 228, 160, 254, 873209, (77,33,0): 173, 86, 0, 0, 163, 228, 228, 170, 251, 873309, (77,34,0): 173, 85, 0, 0, 175, 227, 227, 132, 107, 873409, (77,35,0): 174, 84, 0, 0, 187, 227, 227, 170, 213, 873509, (77,36,0): 174, 81, 0, 0, 198, 226, 226, 169, 213, 873609, (77,37,0): 171, 81, 0, 0, 207, 225, 225, 205, 154, 873709, (77,38,0): 168, 81, 0, 0, 212, 222, 222, 21, 215, 873809, (77,39,0): 170, 81, 0, 0, 215, 221, 221, 21, 215, 873909, (77,40,0): 174, 81, 0, 0, 217, 220, 220, 21, 82, 874009, (77,41,0): 175, 81, 0, 0, 217, 218, 218, 21, 85, 874109, (77,42,0): 176, 81, 0, 0, 215, 211, 211, 21, 150, 874209, (77,43,0): 176, 81, 0, 0, 210, 200, 200, 169, 65, 874309, (77,44,0): 176, 79, 0, 0, 204, 185, 185, 205, 77, 874409, (77,45,0): 177, 79, 0, 0, 197, 173, 173, 169, 40, 874509, (77,46,0): 178, 80, 0, 0, 180, 165, 165, 205, 235, 874609, (77,47,0): 179, 80, 0, 0, 163, 161, 161, 96, 115, 874709, (77,48,0): 178, 80, 0, 0, 141, 157, 157, 205, 56, 874809, (77,49,0): 176, 79, 0, 0, 124, 153, 153, 169, 56, 874909, (78,0,0): 179, 92, 0, 0, 78, 235, 235, 35, 194, 880009, (78,1,0): 178, 92, 0, 0, 81, 232, 232, 128, 28, 880109, (78,2,0): 179, 91, 0, 0, 85, 229, 229, 232, 153, 880209, (78,3,0): 179, 91, 0, 0, 87, 228, 228, 33, 153, 880309, (78,4,0): 178, 84, 0, 0, 88, 224, 224, 33, 153, 880409, (78,5,0): 178, 84, 0, 0, 90, 217, 217, 185, 153, 880509, (78,6,0): 179, 84, 0, 0, 92, 204, 204, 55, 74, 880609, (78,7,0): 179, 84, 0, 0, 94, 185, 185, 232, 15, 880709, (78,8,0): 179, 84, 0, 0, 97, 177, 177, 232, 110, 880809, (78,9,0): 180, 84, 0, 0, 98, 175, 175, 232, 153, 880909, (78,10,0): 179, 84, 0, 0, 98, 174, 174, 232, 228, 881009, (78,11,0): 179, 84, 0, 0, 97, 174, 174, 232, 76, 881109, (78,12,0): 179, 84, 0, 0, 95, 176, 176, 55, 243, 881209, (78,13,0): 178, 83, 0, 0, 97, 179, 179, 185, 76, 881309, (78,14,0): 178, 83, 0, 0, 102, 181, 181, 71, 243, 881409, (78,15,0): 178, 82, 0, 0, 104, 195, 195, 103, 113, 881509, (78,16,0): 178, 82, 0, 0, 110, 202, 202, 107, 113, 881609, (78,17,0): 178, 81, 0, 0, 117, 210, 210, 254, 113, 881709, (78,18,0): 176, 81, 0, 0, 124, 217, 217, 254, 113, 881809, (78,19,0): 177, 81, 0, 0, 123, 223, 223, 118, 173, 881909, (78,20,0): 178, 78, 0, 0, 119, 227, 227, 118, 107, 882009, (78,21,0): 178, 78, 0, 0, 118, 234, 234, 155, 213, 882109, (78,22,0): 177, 78, 0, 0, 112, 236, 236, 155, 233, 882209, (78,23,0): 176, 78, 0, 0, 106, 237, 237, 200, 213, 882309, (78,24,0): 173, 78, 0, 0, 97, 235, 235, 190, 213, 882409, (78,25,0): 170, 78, 0, 0, 94, 235, 235, 166, 76, 882509, (78,26,0): 170, 80, 0, 0, 95, 234, 234, 167, 76, 882609, (78,27,0): 170, 80, 0, 0, 101, 234, 234, 167, 213, 882709, (78,28,0): 171, 80, 0, 0, 112, 232, 232, 169, 213, 882809, (78,29,0): 173, 81, 0, 0, 125, 231, 231, 190, 107, 882909, (78,30,0): 173, 84, 0, 0, 137, 230, 230, 202, 243, 883009, (78,31,0): 173, 85, 0, 0, 143, 226, 226, 96, 173, 883109, (78,32,0): 174, 86, 0, 0, 153, 225, 225, 169, 251, 883209, (78,33,0): 174, 86, 0, 0, 161, 223, 223, 169, 213, 883309, (78,34,0): 174, 85, 0, 0, 170, 224, 224, 169, 76, 883409, (78,35,0): 174, 84, 0, 0, 180, 222, 222, 169, 41, 883509, (78,36,0): 173, 81, 0, 0, 186, 220, 220, 132, 41, 883609, (78,37,0): 171, 81, 0, 0, 192, 219, 219, 169, 41, 883709, (78,38,0): 171, 81, 0, 0, 195, 217, 217, 169, 213, 883809, (78,39,0): 173, 81, 0, 0, 199, 214, 214, 169, 154, 883909, (78,40,0): 175, 81, 0, 0, 198, 213, 213, 169, 77, 884009, (78,41,0): 176, 81, 0, 0, 197, 210, 210, 21, 77, 884109, (78,42,0): 176, 81, 0, 0, 193, 202, 202, 169, 10, 884209, (78,43,0): 177, 81, 0, 0, 188, 187, 187, 205, 10, 884309, (78,44,0): 177, 79, 0, 0, 187, 175, 175, 169, 96, 884409, (78,45,0): 178, 80, 0, 0, 181, 164, 164, 169, 82, 884509, (78,46,0): 178, 81, 0, 0, 166, 158, 158, 205, 235, 884609, (78,47,0): 179, 81, 0, 0, 150, 156, 156, 161, 212, 884709, (78,48,0): 177, 80, 0, 0, 139, 152, 152, 21, 56, 884809, (78,49,0): 176, 79, 0, 0, 117, 148, 148, 161, 212, 884909, (79,0,0): 179, 88, 0, 0, 74, 232, 232, 35, 153, 890009, (79,1,0): 177, 88, 0, 0, 77, 231, 231, 232, 74, 890109, (79,2,0): 177, 88, 0, 0, 81, 230, 230, 33, 142, 890209, (79,3,0): 180, 87, 0, 0, 84, 226, 226, 33, 110, 890309, (79,4,0): 180, 86, 0, 0, 87, 218, 218, 55, 58, 890409, (79,5,0): 180, 86, 0, 0, 89, 206, 206, 79, 196, 890509, (79,6,0): 180, 86, 0, 0, 92, 191, 191, 33, 58, 890609, (79,7,0): 179, 86, 0, 0, 94, 181, 181, 232, 198, 890709, (79,8,0): 180, 86, 0, 0, 100, 174, 174, 35, 152, 890809, (79,9,0): 179, 86, 0, 0, 101, 174, 174, 232, 206, 890909, (79,10,0): 179, 86, 0, 0, 100, 173, 173, 55, 60, 891009, (79,11,0): 179, 86, 0, 0, 98, 173, 173, 33, 20, 891109, (79,12,0): 179, 86, 0, 0, 95, 173, 173, 33, 20, 891209, (79,13,0): 179, 86, 0, 0, 97, 173, 173, 120, 251, 891309, (79,14,0): 178, 85, 0, 0, 103, 175, 175, 71, 243, 891409, (79,15,0): 178, 83, 0, 0, 108, 184, 184, 107, 173, 891509, (79,16,0): 179, 82, 0, 0, 119, 193, 193, 251, 254, 891609, (79,17,0): 179, 81, 0, 0, 121, 205, 205, 254, 113, 891709, (79,18,0): 179, 80, 0, 0, 120, 215, 215, 254, 113, 891809, (79,19,0): 179, 79, 0, 0, 116, 221, 221, 9, 20, 891909, (79,20,0): 178, 81, 0, 0, 114, 225, 225, 118, 250, 892009, (79,21,0): 178, 81, 0, 0, 116, 231, 231, 155, 20, 892109, (79,22,0): 176, 83, 0, 0, 108, 235, 235, 190, 218, 892209, (79,23,0): 175, 83, 0, 0, 98, 237, 237, 68, 228, 892309, (79,24,0): 172, 83, 0, 0, 90, 238, 238, 67, 20, 892409, (79,25,0): 171, 83, 0, 0, 95, 238, 238, 167, 31, 892509, (79,26,0): 170, 84, 0, 0, 102, 237, 237, 167, 60, 892609, (79,27,0): 170, 84, 0, 0, 109, 234, 234, 166, 228, 892709, (79,28,0): 172, 91, 0, 0, 118, 232, 232, 190, 76, 892809, (79,29,0): 172, 91, 0, 0, 129, 231, 231, 190, 213, 892909, (79,30,0): 172, 90, 0, 0, 143, 228, 228, 42, 31, 893009, (79,31,0): 173, 88, 0, 0, 151, 225, 225, 21, 213, 893109, (79,32,0): 174, 88, 0, 0, 155, 223, 223, 96, 76, 893209, (79,33,0): 174, 87, 0, 0, 160, 223, 223, 21, 76, 893309, (79,34,0): 171, 86, 0, 0, 169, 220, 220, 21, 243, 893409, (79,35,0): 169, 84, 0, 0, 174, 219, 219, 21, 173, 893509, (79,36,0): 169, 83, 0, 0, 177, 217, 217, 21, 113, 893609, (79,37,0): 170, 83, 0, 0, 178, 215, 215, 169, 41, 893709, (79,38,0): 174, 82, 0, 0, 180, 212, 212, 205, 92, 893809, (79,39,0): 176, 82, 0, 0, 182, 207, 207, 169, 41, 893909, (79,40,0): 174, 81, 0, 0, 181, 203, 203, 21, 215, 894009, (79,41,0): 174, 81, 0, 0, 179, 197, 197, 169, 215, 894109, (79,42,0): 175, 80, 0, 0, 174, 185, 185, 21, 73, 894209, (79,43,0): 176, 80, 0, 0, 171, 173, 173, 21, 82, 894309, (79,44,0): 177, 86, 0, 0, 170, 163, 163, 21, 244, 894409, (79,45,0): 178, 85, 0, 0, 164, 158, 158, 169, 212, 894509, (79,46,0): 179, 84, 0, 0, 153, 154, 154, 169, 56, 894609, (79,47,0): 178, 82, 0, 0, 136, 150, 150, 169, 56, 894709, (79,48,0): 178, 80, 0, 0, 126, 147, 147, 21, 56, 894809, (79,49,0): 177, 78, 0, 0, 102, 145, 145, 169, 212, 894909, (80,0,0): 179, 89, 0, 0, 68, 224, 224, 33, 58, 900009, (80,1,0): 178, 88, 0, 0, 70, 226, 226, 232, 58, 900109, (80,2,0): 179, 88, 0, 0, 74, 224, 224, 232, 23, 900209, (80,3,0): 180, 88, 0, 0, 80, 217, 217, 33, 198, 900309, (80,4,0): 46, 86, 3, 2, 82, 207, 207, 232, 45, 900409, (80,5,0): 180, 86, 0, 0, 87, 194, 194, 55, 188, 900509, (80,6,0): 180, 86, 0, 0, 93, 181, 181, 232, 84, 900609, (80,7,0): 179, 86, 0, 0, 95, 177, 177, 35, 75, 900709, (80,8,0): 180, 86, 0, 0, 96, 172, 172, 35, 152, 900809, (80,9,0): 179, 86, 0, 0, 97, 172, 172, 232, 188, 900909, (80,10,0): 179, 86, 0, 0, 96, 171, 171, 232, 153, 901009, (80,11,0): 179, 86, 0, 0, 95, 170, 170, 55, 60, 901109, (80,12,0): 179, 86, 0, 0, 98, 169, 169, 55, 31, 901209, (80,13,0): 179, 85, 0, 0, 103, 169, 169, 185, 20, 901309, (80,14,0): 179, 84, 0, 0, 111, 171, 171, 71, 213, 901409, (80,15,0): 179, 83, 0, 0, 115, 175, 175, 103, 228, 901509, (80,16,0): 179, 82, 0, 0, 119, 183, 183, 107, 163, 901609, (80,17,0): 179, 81, 0, 0, 122, 197, 197, 254, 60, 901709, (80,18,0): 178, 80, 0, 0, 124, 206, 206, 92, 163, 901809, (80,19,0): 178, 79, 0, 0, 121, 214, 214, 118, 149, 901909, (80,20,0): 177, 82, 0, 0, 112, 222, 222, 118, 149, 902009, (80,21,0): 176, 82, 0, 0, 103, 227, 227, 190, 60, 902109, (80,22,0): 175, 84, 0, 0, 96, 232, 232, 166, 163, 902209, (80,23,0): 174, 84, 0, 0, 92, 236, 236, 40, 60, 902309, (80,24,0): 173, 84, 0, 0, 96, 239, 239, 167, 149, 902409, (80,25,0): 171, 84, 0, 0, 102, 239, 239, 67, 206, 902509, (80,26,0): 170, 85, 0, 0, 111, 238, 238, 42, 23, 902609, (80,27,0): 170, 85, 0, 0, 121, 235, 235, 190, 149, 902709, (80,28,0): 171, 91, 0, 0, 132, 233, 233, 136, 39, 902809, (80,29,0): 171, 90, 0, 0, 141, 231, 231, 136, 60, 902909, (80,30,0): 171, 89, 0, 0, 150, 228, 228, 136, 92, 903009, (80,31,0): 172, 88, 0, 0, 156, 226, 226, 161, 20, 903109, (80,32,0): 173, 88, 0, 0, 160, 224, 224, 166, 251, 903209, (80,33,0): 172, 87, 0, 0, 161, 222, 222, 169, 76, 903309, (80,34,0): 170, 86, 0, 0, 163, 218, 218, 205, 92, 903409, (80,35,0): 168, 85, 0, 0, 164, 217, 217, 21, 60, 903509, (80,36,0): 168, 86, 0, 0, 166, 213, 213, 205, 7, 903609, (80,37,0): 171, 83, 0, 0, 165, 209, 209, 169, 215, 903709, (80,38,0): 175, 83, 0, 0, 165, 205, 205, 169, 81, 903809, (80,39,0): 175, 83, 0, 0, 164, 195, 195, 205, 173, 903909, (80,40,0): 172, 82, 0, 0, 165, 187, 187, 169, 41, 904009, (80,41,0): 171, 81, 0, 0, 163, 179, 179, 21, 48, 904109, (80,42,0): 172, 81, 0, 0, 162, 170, 170, 21, 39, 904209, (80,43,0): 174, 81, 0, 0, 162, 161, 161, 21, 13, 904309, (80,44,0): 174, 86, 0, 0, 159, 155, 155, 21, 56, 904409, (80,45,0): 175, 85, 0, 0, 153, 152, 152, 169, 212, 904509, (80,46,0): 176, 84, 0, 0, 142, 149, 149, 205, 212, 904609, (80,47,0): 177, 82, 0, 0, 131, 145, 145, 169, 212, 904709, (80,48,0): 178, 80, 0, 0, 113, 141, 141, 169, 212, 904809, (80,49,0): 177, 79, 0, 0, 104, 138, 138, 205, 56, 904909, (81,0,0): 180, 89, 0, 0, 61, 207, 207, 232, 23, 910009, (81,1,0): 180, 88, 0, 0, 63, 211, 211, 33, 23, 910109, (81,2,0): 180, 88, 0, 0, 70, 207, 207, 232, 84, 910209, (81,3,0): 46, 88, 3, 2, 74, 199, 199, 33, 122, 910309, (81,4,0): 180, 87, 0, 0, 80, 189, 189, 232, 122, 910409, (81,5,0): 180, 87, 0, 0, 84, 180, 180, 232, 152, 910509, (81,6,0): 180, 87, 0, 0, 91, 171, 171, 35, 59, 910609, (81,7,0): 179, 87, 0, 0, 93, 170, 170, 139, 75, 910709, (81,8,0): 180, 87, 0, 0, 96, 167, 167, 117, 75, 910809, (81,9,0): 180, 87, 0, 0, 96, 167, 167, 117, 23, 910909, (81,10,0): 179, 87, 0, 0, 94, 166, 166, 232, 149, 911009, (81,11,0): 179, 87, 0, 0, 94, 165, 165, 119, 196, 911109, (81,12,0): 179, 85, 0, 0, 99, 166, 166, 119, 74, 911209, (81,13,0): 179, 85, 0, 0, 104, 166, 166, 71, 209, 911309, (81,14,0): 179, 84, 0, 0, 110, 169, 169, 113, 228, 911409, (81,15,0): 179, 83, 0, 0, 115, 170, 170, 76, 20, 911509, (81,16,0): 178, 82, 0, 0, 116, 177, 177, 107, 74, 911609, (81,17,0): 178, 81, 0, 0, 118, 188, 188, 254, 149, 911709, (81,18,0): 177, 80, 0, 0, 116, 195, 195, 9, 23, 911809, (81,19,0): 177, 80, 0, 0, 112, 203, 203, 118, 75, 911909, (81,20,0): 176, 85, 0, 0, 103, 211, 211, 155, 59, 912009, (81,21,0): 175, 85, 0, 0, 97, 220, 220, 190, 165, 912109, (81,22,0): 174, 85, 0, 0, 93, 228, 228, 166, 4, 912209, (81,23,0): 174, 85, 0, 0, 92, 233, 233, 40, 110, 912309, (81,24,0): 173, 86, 0, 0, 101, 236, 236, 96, 4, 912409, (81,25,0): 171, 86, 0, 0, 107, 236, 236, 190, 238, 912509, (81,26,0): 170, 88, 0, 0, 116, 235, 235, 200, 29, 912609, (81,27,0): 171, 88, 0, 0, 125, 233, 233, 155, 29, 912709, (81,28,0): 171, 90, 0, 0, 134, 232, 232, 200, 29, 912809, (81,29,0): 170, 90, 0, 0, 141, 229, 229, 155, 75, 912909, (81,30,0): 170, 90, 0, 0, 148, 226, 226, 190, 23, 913009, (81,31,0): 171, 89, 0, 0, 152, 224, 224, 161, 196, 913109, (81,32,0): 171, 89, 0, 0, 155, 221, 221, 166, 60, 913209, (81,33,0): 171, 88, 0, 0, 156, 218, 218, 169, 213, 913309, (81,34,0): 173, 87, 0, 0, 157, 213, 213, 169, 243, 913409, (81,35,0): 173, 86, 0, 0, 158, 207, 207, 169, 7, 913509, (81,36,0): 172, 87, 0, 0, 158, 202, 202, 169, 45, 913609, (81,37,0): 174, 87, 0, 0, 157, 199, 199, 169, 206, 913709, (81,38,0): 176, 87, 0, 0, 156, 191, 191, 21, 209, 913809, (81,39,0): 177, 86, 0, 0, 155, 177, 177, 169, 41, 913909, (81,40,0): 176, 86, 0, 0, 158, 169, 169, 21, 41, 914009, (81,41,0): 175, 85, 0, 0, 156, 162, 162, 21, 154, 914109, (81,42,0): 176, 85, 0, 0, 156, 156, 156, 21, 200, 914209, (81,43,0): 177, 84, 0, 0, 155, 152, 152, 21, 211, 914309, (81,44,0): 174, 88, 0, 0, 154, 148, 148, 161, 85, 914409, (81,45,0): 171, 87, 0, 0, 147, 145, 145, 21, 150, 914509, (81,46,0): 171, 86, 0, 0, 136, 141, 141, 169, 85, 914609, (81,47,0): 173, 85, 0, 0, 128, 139, 139, 205, 69, 914709, (81,48,0): 177, 83, 0, 0, 115, 137, 137, 169, 212, 914809, (81,49,0): 178, 81, 0, 0, 107, 135, 135, 169, 56, 914909, (82,0,0): 46, 90, 0, 2, 54, 187, 187, 232, 45, 920009, (82,1,0): 180, 89, 0, 0, 58, 190, 190, 232, 45, 920109, (82,2,0): 180, 89, 0, 0, 63, 187, 187, 232, 152, 920209, (82,3,0): 180, 89, 0, 0, 68, 179, 179, 35, 189, 920309, (82,4,0): 180, 88, 0, 0, 75, 169, 169, 35, 189, 920409, (82,5,0): 180, 88, 0, 0, 79, 164, 164, 117, 59, 920509, (82,6,0): 180, 88, 0, 0, 86, 160, 160, 139, 59, 920609, (82,7,0): 180, 88, 0, 0, 89, 161, 161, 245, 47, 920709, (82,8,0): 179, 88, 0, 0, 94, 159, 159, 117, 45, 920809, (82,9,0): 180, 88, 0, 0, 92, 160, 160, 140, 206, 920909, (82,10,0): 180, 88, 0, 0, 92, 161, 161, 117, 45, 921009, (82,11,0): 179, 88, 0, 0, 94, 161, 161, 117, 4, 921109, (82,12,0): 179, 85, 0, 0, 99, 163, 163, 201, 45, 921209, (82,13,0): 179, 85, 0, 0, 104, 163, 163, 185, 23, 921309, (82,14,0): 179, 84, 0, 0, 111, 164, 164, 113, 110, 921409, (82,15,0): 178, 84, 0, 0, 115, 169, 169, 76, 31, 921509, (82,16,0): 178, 83, 0, 0, 115, 173, 173, 107, 196, 921609, (82,17,0): 177, 82, 0, 0, 113, 178, 178, 254, 149, 921709, (82,18,0): 177, 82, 0, 0, 106, 184, 184, 254, 58, 921809, (82,19,0): 176, 82, 0, 0, 99, 191, 191, 200, 198, 921909, (82,20,0): 175, 87, 0, 0, 92, 201, 201, 200, 56, 922009, (82,21,0): 175, 87, 0, 0, 90, 212, 212, 190, 214, 922109, (82,22,0): 175, 87, 0, 0, 92, 224, 224, 67, 151, 922209, (82,23,0): 174, 87, 0, 0, 92, 229, 229, 67, 83, 922309, (82,24,0): 172, 88, 0, 0, 104, 232, 232, 67, 75, 922409, (82,25,0): 171, 88, 0, 0, 110, 232, 232, 190, 122, 922509, (82,26,0): 171, 90, 0, 0, 119, 231, 231, 155, 151, 922609, (82,27,0): 171, 90, 0, 0, 127, 229, 229, 155, 151, 922709, (82,28,0): 171, 90, 0, 0, 134, 228, 228, 155, 151, 922809, (82,29,0): 171, 90, 0, 0, 138, 225, 225, 166, 56, 922909, (82,30,0): 170, 90, 0, 0, 143, 222, 222, 166, 56, 923009, (82,31,0): 170, 90, 0, 0, 145, 220, 220, 169, 189, 923109, (82,32,0): 171, 90, 0, 0, 147, 216, 216, 169, 59, 923209, (82,33,0): 173, 89, 0, 0, 147, 210, 210, 169, 110, 923309, (82,34,0): 175, 89, 0, 0, 147, 202, 202, 166, 250, 923409, (82,35,0): 176, 89, 0, 0, 147, 196, 196, 21, 250, 923509, (82,36,0): 176, 90, 0, 0, 148, 188, 188, 161, 149, 923609, (82,37,0): 177, 89, 0, 0, 147, 184, 184, 205, 149, 923709, (82,38,0): 177, 89, 0, 0, 147, 176, 176, 169, 7, 923809, (82,39,0): 178, 88, 0, 0, 146, 162, 162, 21, 9, 923909, (82,40,0): 178, 88, 0, 0, 149, 153, 153, 169, 92, 924009, (82,41,0): 179, 87, 0, 0, 147, 149, 149, 21, 92, 924109, (82,42,0): 179, 87, 0, 0, 148, 147, 147, 21, 9, 924209, (82,43,0): 180, 87, 0, 0, 148, 145, 145, 161, 118, 924309, (82,44,0): 177, 87, 0, 0, 147, 143, 143, 21, 73, 924409, (82,45,0): 171, 87, 0, 0, 140, 139, 139, 169, 112, 924509, (82,46,0): 169, 86, 0, 0, 131, 133, 133, 21, 54, 924609, (82,47,0): 170, 85, 0, 0, 126, 136, 136, 169, 43, 924709, (82,48,0): 175, 84, 0, 0, 121, 133, 133, 169, 244, 924809, (82,49,0): 175, 82, 0, 0, 115, 131, 131, 169, 56, 924909, (83,0,0): 46, 91, 0, 2, 50, 169, 169, 117, 229, 930009, (83,1,0): 46, 90, 0, 2, 53, 164, 164, 35, 238, 930109, (83,2,0): 180, 89, 0, 0, 59, 160, 160, 117, 29, 930209, (83,3,0): 179, 90, 0, 0, 65, 155, 155, 35, 56, 930309, (83,4,0): 179, 89, 0, 0, 71, 150, 150, 117, 29, 930409, (83,5,0): 179, 89, 0, 0, 75, 147, 147, 245, 75, 930509, (83,6,0): 180, 89, 0, 0, 82, 146, 146, 117, 75, 930609, (83,7,0): 180, 89, 0, 0, 86, 150, 150, 117, 75, 930709, (83,8,0): 180, 89, 0, 0, 88, 152, 152, 245, 165, 930809, (83,9,0): 180, 89, 0, 0, 89, 153, 153, 140, 83, 930909, (83,10,0): 180, 89, 0, 0, 89, 154, 154, 140, 29, 931009, (83,11,0): 179, 89, 0, 0, 94, 155, 155, 140, 56, 931109, (83,12,0): 179, 86, 0, 0, 99, 156, 156, 35, 189, 931209, (83,13,0): 179, 86, 0, 0, 105, 158, 158, 120, 43, 931309, (83,14,0): 179, 86, 0, 0, 111, 161, 161, 113, 45, 931409, (83,15,0): 178, 85, 0, 0, 114, 162, 162, 113, 47, 931509, (83,16,0): 178, 85, 0, 0, 114, 165, 165, 107, 188, 931609, (83,17,0): 177, 84, 0, 0, 106, 171, 171, 254, 110, 931709, (83,18,0): 176, 84, 0, 0, 96, 176, 176, 9, 159, 931809, (83,19,0): 176, 84, 0, 0, 87, 182, 182, 200, 23, 931909, (83,20,0): 175, 88, 0, 0, 84, 190, 190, 218, 122, 932009, (83,21,0): 174, 89, 0, 0, 87, 197, 197, 166, 151, 932109, (83,22,0): 174, 89, 0, 0, 92, 204, 204, 161, 151, 932209, (83,23,0): 173, 89, 0, 0, 97, 218, 218, 42, 151, 932309, (83,24,0): 171, 89, 0, 0, 108, 224, 224, 190, 29, 932409, (83,25,0): 170, 89, 0, 0, 114, 226, 226, 155, 29, 932509, (83,26,0): 171, 91, 0, 0, 123, 226, 226, 118, 56, 932609, (83,27,0): 171, 91, 0, 0, 130, 226, 226, 155, 151, 932709, (83,28,0): 171, 92, 0, 0, 136, 222, 222, 190, 151, 932809, (83,29,0): 171, 92, 0, 0, 138, 218, 218, 166, 151, 932909, (83,30,0): 170, 93, 0, 0, 140, 215, 215, 67, 151, 933009, (83,31,0): 170, 92, 0, 0, 141, 216, 216, 67, 151, 933109, (83,32,0): 172, 92, 0, 0, 143, 210, 210, 67, 151, 933209, (83,33,0): 174, 91, 0, 0, 143, 199, 199, 169, 115, 933309, (83,34,0): 175, 91, 0, 0, 143, 187, 187, 169, 75, 933409, (83,35,0): 176, 91, 0, 0, 142, 178, 178, 21, 206, 933509, (83,36,0): 177, 92, 0, 0, 143, 170, 170, 21, 149, 933609, (83,37,0): 177, 92, 0, 0, 142, 166, 166, 205, 159, 933709, (83,38,0): 177, 92, 0, 0, 142, 159, 159, 21, 7, 933809, (83,39,0): 178, 91, 0, 0, 141, 153, 153, 169, 215, 933909, (83,40,0): 178, 91, 0, 0, 143, 146, 146, 21, 101, 934009, (83,41,0): 179, 90, 0, 0, 142, 145, 145, 169, 106, 934109, (83,42,0): 180, 90, 0, 0, 143, 141, 141, 21, 106, 934209, (83,43,0): 180, 90, 0, 0, 144, 139, 139, 169, 9, 934309, (83,44,0): 179, 88, 0, 0, 143, 136, 136, 21, 254, 934409, (83,45,0): 176, 88, 0, 0, 137, 135, 135, 169, 118, 934509, (83,46,0): 173, 87, 0, 0, 128, 133, 133, 169, 32, 934609, (83,47,0): 171, 86, 0, 0, 126, 128, 128, 132, 54, 934709, (83,48,0): 172, 85, 0, 0, 127, 125, 125, 132, 43, 934809, (83,49,0): 172, 84, 0, 0, 121, 124, 124, 132, 43, 934909, (84,0,0): 46, 92, 0, 2, 45, 156, 156, 117, 115, 940009, (84,1,0): 180, 91, 0, 0, 51, 151, 151, 245, 56, 940109, (84,2,0): 180, 90, 0, 0, 56, 149, 149, 245, 189, 940209, (84,3,0): 179, 90, 0, 0, 60, 143, 143, 245, 189, 940309, (84,4,0): 179, 90, 0, 0, 66, 139, 139, 140, 83, 940409, (84,5,0): 179, 90, 0, 0, 71, 135, 135, 140, 45, 940509, (84,6,0): 179, 90, 0, 0, 77, 136, 136, 140, 4, 940609, (84,7,0): 179, 90, 0, 0, 81, 142, 142, 140, 29, 940709, (84,8,0): 179, 90, 0, 0, 83, 143, 143, 139, 115, 940809, (84,9,0): 180, 90, 0, 0, 83, 146, 146, 88, 189, 940909, (84,10,0): 180, 90, 0, 0, 85, 145, 145, 140, 69, 941009, (84,11,0): 179, 90, 0, 0, 90, 148, 148, 35, 151, 941109, (84,12,0): 179, 87, 0, 0, 97, 148, 148, 201, 56, 941209, (84,13,0): 178, 87, 0, 0, 105, 150, 150, 71, 83, 941309, (84,14,0): 178, 87, 0, 0, 109, 153, 153, 71, 75, 941409, (84,15,0): 177, 87, 0, 0, 108, 159, 159, 113, 45, 941509, (84,16,0): 176, 87, 0, 0, 106, 161, 161, 173, 23, 941609, (84,17,0): 175, 87, 0, 0, 98, 164, 164, 254, 149, 941709, (84,18,0): 175, 87, 0, 0, 88, 168, 168, 118, 74, 941809, (84,19,0): 175, 87, 0, 0, 80, 173, 173, 200, 149, 941909, (84,20,0): 175, 91, 0, 0, 81, 178, 178, 190, 165, 942009, (84,21,0): 174, 91, 0, 0, 88, 184, 184, 161, 189, 942109, (84,22,0): 173, 91, 0, 0, 96, 189, 189, 136, 29, 942209, (84,23,0): 172, 91, 0, 0, 102, 202, 202, 174, 56, 942309, (84,24,0): 171, 91, 0, 0, 111, 208, 208, 174, 56, 942409, (84,25,0): 169, 91, 0, 0, 117, 211, 211, 155, 151, 942509, (84,26,0): 170, 93, 0, 0, 124, 213, 213, 200, 56, 942609, (84,27,0): 170, 93, 0, 0, 130, 215, 215, 190, 56, 942709, (84,28,0): 170, 93, 0, 0, 134, 214, 214, 166, 151, 942809, (84,29,0): 170, 93, 0, 0, 135, 212, 212, 166, 151, 942909, (84,30,0): 170, 94, 0, 0, 138, 209, 209, 166, 56, 943009, (84,31,0): 171, 94, 0, 0, 139, 202, 202, 166, 151, 943109, (84,32,0): 172, 94, 0, 0, 139, 195, 195, 169, 56, 943209, (84,33,0): 174, 94, 0, 0, 139, 185, 185, 169, 151, 943309, (84,34,0): 175, 94, 0, 0, 138, 176, 176, 169, 56, 943409, (84,35,0): 176, 94, 0, 0, 137, 169, 169, 169, 189, 943509, (84,36,0): 176, 95, 0, 0, 137, 164, 164, 169, 83, 943609, (84,37,0): 177, 94, 0, 0, 136, 159, 159, 96, 206, 943709, (84,38,0): 177, 94, 0, 0, 138, 153, 153, 205, 149, 943809, (84,39,0): 178, 93, 0, 0, 137, 146, 146, 96, 7, 943909, (84,40,0): 179, 93, 0, 0, 140, 140, 140, 205, 218, 944009, (84,41,0): 179, 92, 0, 0, 139, 138, 138, 96, 215, 944109, (84,42,0): 180, 92, 0, 0, 141, 136, 136, 169, 250, 944209, (84,43,0): 180, 92, 0, 0, 141, 134, 134, 21, 92, 944309, (84,44,0): 181, 88, 0, 0, 141, 132, 132, 169, 9, 944409, (84,45,0): 180, 88, 0, 0, 135, 131, 131, 169, 154, 944509, (84,46,0): 176, 87, 0, 0, 126, 129, 129, 132, 92, 944609, (84,47,0): 172, 87, 0, 0, 127, 126, 126, 169, 73, 944709, (84,48,0): 171, 86, 0, 0, 131, 124, 124, 132, 10, 944809, (84,49,0): 171, 85, 0, 0, 125, 123, 123, 132, 112, 944909, (85,0,0): 46, 92, 0, 2, 43, 146, 146, 245, 56, 950009, (85,1,0): 47, 91, 0, 2, 46, 143, 143, 140, 115, 950109, (85,2,0): 180, 91, 0, 0, 52, 138, 138, 88, 29, 950209, (85,3,0): 180, 90, 0, 0, 56, 133, 133, 140, 238, 950309, (85,4,0): 179, 91, 0, 0, 62, 130, 130, 245, 4, 950409, (85,5,0): 179, 91, 0, 0, 66, 126, 126, 140, 4, 950509, (85,6,0): 179, 91, 0, 0, 72, 129, 129, 140, 83, 950609, (85,7,0): 179, 91, 0, 0, 75, 132, 132, 117, 238, 950709, (85,8,0): 179, 91, 0, 0, 78, 136, 136, 117, 69, 950809, (85,9,0): 180, 91, 0, 0, 78, 137, 137, 140, 29, 950909, (85,10,0): 180, 91, 0, 0, 79, 137, 137, 117, 83, 951009, (85,11,0): 179, 91, 0, 0, 87, 139, 139, 201, 115, 951109, (85,12,0): 178, 89, 0, 0, 95, 139, 139, 201, 115, 951209, (85,13,0): 177, 89, 0, 0, 102, 142, 142, 71, 83, 951309, (85,14,0): 175, 89, 0, 0, 103, 143, 143, 120, 4, 951409, (85,15,0): 173, 89, 0, 0, 103, 150, 150, 107, 206, 951509, (85,16,0): 172, 90, 0, 0, 98, 152, 152, 173, 196, 951609, (85,17,0): 172, 90, 0, 0, 91, 155, 155, 154, 60, 951709, (85,18,0): 174, 90, 0, 0, 81, 158, 158, 118, 60, 951809, (85,19,0): 174, 90, 0, 0, 78, 162, 162, 200, 7, 951909, (85,20,0): 174, 92, 0, 0, 82, 167, 167, 190, 188, 952009, (85,21,0): 174, 92, 0, 0, 91, 170, 170, 200, 238, 952109, (85,22,0): 173, 92, 0, 0, 101, 175, 175, 174, 83, 952209, (85,23,0): 172, 92, 0, 0, 108, 185, 185, 174, 75, 952309, (85,24,0): 169, 94, 0, 0, 117, 190, 190, 136, 29, 952409, (85,25,0): 168, 94, 0, 0, 122, 193, 193, 166, 56, 952509, (85,26,0): 170, 94, 0, 0, 127, 196, 196, 96, 29, 952609, (85,27,0): 169, 94, 0, 0, 131, 197, 197, 166, 189, 952709, (85,28,0): 169, 95, 0, 0, 134, 197, 197, 67, 56, 952809, (85,29,0): 169, 95, 0, 0, 134, 195, 195, 166, 151, 952909, (85,30,0): 170, 96, 0, 0, 136, 193, 193, 67, 56, 953009, (85,31,0): 172, 96, 0, 0, 137, 182, 182, 67, 151, 953109, (85,32,0): 173, 97, 0, 0, 135, 178, 178, 169, 151, 953209, (85,33,0): 174, 97, 0, 0, 134, 170, 170, 166, 151, 953309, (85,34,0): 175, 99, 0, 0, 134, 163, 163, 161, 151, 953409, (85,35,0): 176, 97, 0, 0, 133, 158, 158, 21, 56, 953509, (85,36,0): 176, 96, 0, 0, 133, 155, 155, 21, 115, 953609, (85,37,0): 177, 96, 0, 0, 133, 152, 152, 205, 75, 953709, (85,38,0): 178, 96, 0, 0, 135, 148, 148, 21, 247, 953809, (85,39,0): 178, 95, 0, 0, 135, 141, 141, 21, 247, 953909, (85,40,0): 179, 94, 0, 0, 141, 136, 136, 169, 7, 954009, (85,41,0): 179, 94, 0, 0, 140, 135, 135, 205, 250, 954109, (85,42,0): 179, 94, 0, 0, 141, 132, 132, 169, 9, 954209, (85,43,0): 180, 93, 0, 0, 140, 130, 130, 169, 254, 954309, (85,44,0): 179, 88, 0, 0, 139, 128, 128, 169, 154, 954409, (85,45,0): 176, 87, 0, 0, 132, 128, 128, 169, 92, 954509, (85,46,0): 172, 87, 0, 0, 123, 127, 127, 169, 118, 954609, (85,47,0): 171, 87, 0, 0, 124, 125, 125, 169, 43, 954709, (85,48,0): 171, 86, 0, 0, 129, 122, 122, 169, 235, 954809, (85,49,0): 171, 86, 0, 0, 126, 122, 122, 169, 43, 954909, (86,0,0): 46, 93, 0, 2, 40, 140, 140, 140, 189, 960009, (86,1,0): 46, 91, 0, 2, 43, 138, 138, 88, 83, 960109, (86,2,0): 46, 92, 3, 2, 47, 133, 133, 140, 4, 960209, (86,3,0): 180, 92, 0, 0, 51, 130, 130, 88, 4, 960309, (86,4,0): 180, 91, 0, 0, 55, 125, 125, 140, 4, 960409, (86,5,0): 179, 91, 0, 0, 60, 123, 123, 140, 4, 960509, (86,6,0): 179, 93, 0, 0, 64, 124, 124, 140, 85, 960609, (86,7,0): 179, 91, 0, 0, 67, 128, 128, 140, 83, 960709, (86,8,0): 179, 93, 0, 0, 73, 131, 131, 140, 115, 960809, (86,9,0): 179, 91, 0, 0, 72, 131, 131, 140, 43, 960909, (86,10,0): 179, 93, 0, 0, 75, 132, 132, 140, 47, 961009, (86,11,0): 178, 91, 0, 0, 82, 132, 132, 119, 4, 961109, (86,12,0): 176, 92, 0, 0, 91, 133, 133, 55, 85, 961209, (86,13,0): 173, 90, 0, 0, 97, 135, 135, 120, 83, 961309, (86,14,0): 170, 93, 0, 0, 98, 136, 136, 120, 83, 961409, (86,15,0): 169, 91, 0, 0, 96, 137, 137, 173, 45, 961509, (86,16,0): 168, 93, 0, 0, 95, 140, 140, 107, 149, 961609, (86,17,0): 171, 91, 0, 0, 90, 143, 143, 118, 163, 961709, (86,18,0): 173, 94, 0, 0, 84, 147, 147, 200, 31, 961809, (86,19,0): 174, 94, 0, 0, 84, 150, 150, 190, 250, 961909, (86,20,0): 174, 93, 0, 0, 92, 156, 156, 190, 149, 962009, (86,21,0): 173, 93, 0, 0, 103, 160, 160, 155, 206, 962109, (86,22,0): 173, 95, 0, 0, 112, 163, 163, 155, 94, 962209, (86,23,0): 171, 95, 0, 0, 118, 170, 170, 136, 110, 962309, (86,24,0): 168, 95, 0, 0, 123, 173, 173, 136, 23, 962409, (86,25,0): 168, 95, 0, 0, 126, 175, 175, 161, 162, 962509, (86,26,0): 170, 95, 0, 0, 131, 176, 176, 166, 83, 962609, (86,27,0): 169, 95, 0, 0, 132, 176, 176, 67, 83, 962709, (86,28,0): 168, 96, 0, 0, 132, 176, 176, 169, 158, 962809, (86,29,0): 166, 96, 0, 0, 131, 175, 175, 67, 83, 962909, (86,30,0): 168, 98, 0, 0, 133, 174, 174, 169, 115, 963009, (86,31,0): 169, 98, 0, 0, 134, 168, 168, 169, 29, 963109, (86,32,0): 170, 98, 0, 0, 131, 165, 165, 96, 56, 963209, (86,33,0): 172, 98, 0, 0, 130, 158, 158, 205, 151, 963309, (86,34,0): 174, 99, 0, 0, 131, 155, 155, 21, 56, 963409, (86,35,0): 175, 99, 0, 0, 130, 149, 149, 169, 56, 963509, (86,36,0): 177, 98, 0, 0, 131, 146, 146, 21, 151, 963609, (86,37,0): 178, 97, 0, 0, 133, 145, 145, 161, 69, 963709, (86,38,0): 178, 96, 0, 0, 136, 142, 142, 161, 165, 963809, (86,39,0): 179, 96, 0, 0, 136, 136, 136, 21, 206, 963909, (86,40,0): 179, 95, 0, 0, 141, 133, 133, 21, 127, 964009, (86,41,0): 179, 95, 0, 0, 139, 131, 131, 21, 7, 964109, (86,42,0): 179, 94, 0, 0, 139, 129, 129, 169, 101, 964209, (86,43,0): 179, 94, 0, 0, 139, 127, 127, 132, 92, 964309, (86,44,0): 176, 87, 0, 0, 137, 126, 126, 132, 107, 964409, (86,45,0): 173, 87, 0, 0, 129, 125, 125, 205, 107, 964509, (86,46,0): 170, 87, 0, 0, 119, 125, 125, 132, 215, 964609, (86,47,0): 170, 87, 0, 0, 117, 124, 124, 205, 39, 964709, (86,48,0): 170, 87, 0, 0, 125, 122, 122, 169, 48, 964809, (86,49,0): 170, 86, 0, 0, 121, 121, 121, 205, 148, 964909, (87,0,0): 180, 96, 0, 0, 38, 138, 138, 140, 75, 970009, (87,1,0): 46, 93, 0, 2, 40, 137, 137, 88, 47, 970109, (87,2,0): 180, 92, 0, 0, 45, 132, 132, 140, 47, 970209, (87,3,0): 180, 91, 0, 0, 49, 130, 130, 88, 4, 970309, (87,4,0): 180, 95, 0, 0, 51, 128, 128, 140, 4, 970409, (87,5,0): 180, 95, 0, 0, 55, 125, 125, 245, 43, 970509, (87,6,0): 180, 96, 0, 0, 58, 125, 125, 140, 85, 970609, (87,7,0): 179, 95, 0, 0, 60, 127, 127, 140, 85, 970709, (87,8,0): 179, 96, 0, 0, 71, 128, 128, 117, 4, 970809, (87,9,0): 179, 95, 0, 0, 68, 128, 128, 140, 211, 970909, (87,10,0): 179, 96, 0, 0, 71, 128, 128, 117, 39, 971009, (87,11,0): 177, 95, 0, 0, 79, 128, 128, 201, 39, 971109, (87,12,0): 175, 93, 0, 0, 90, 129, 129, 120, 47, 971209, (87,13,0): 171, 92, 0, 0, 95, 129, 129, 120, 4, 971309, (87,14,0): 169, 94, 0, 0, 94, 131, 131, 120, 197, 971409, (87,15,0): 168, 93, 0, 0, 92, 130, 130, 154, 4, 971509, (87,16,0): 169, 95, 0, 0, 96, 132, 132, 107, 148, 971609, (87,17,0): 171, 94, 0, 0, 92, 134, 134, 118, 209, 971709, (87,18,0): 173, 96, 0, 0, 89, 138, 138, 200, 215, 971809, (87,19,0): 174, 96, 0, 0, 92, 140, 140, 190, 20, 971909, (87,20,0): 174, 92, 0, 0, 103, 144, 144, 190, 163, 972009, (87,21,0): 172, 93, 0, 0, 113, 146, 146, 136, 127, 972109, (87,22,0): 171, 95, 0, 0, 122, 148, 148, 136, 58, 972209, (87,23,0): 170, 96, 0, 0, 127, 155, 155, 190, 159, 972309, (87,24,0): 168, 96, 0, 0, 129, 158, 158, 161, 7, 972409, (87,25,0): 168, 95, 0, 0, 130, 159, 159, 96, 159, 972509, (87,26,0): 169, 94, 0, 0, 133, 160, 160, 169, 149, 972609, (87,27,0): 170, 93, 0, 0, 132, 161, 161, 169, 127, 972709, (87,28,0): 169, 98, 0, 0, 131, 162, 162, 132, 68, 972809, (87,29,0): 171, 99, 0, 0, 129, 162, 162, 132, 10, 972909, (87,30,0): 172, 100, 0, 0, 131, 162, 162, 169, 112, 973009, (87,31,0): 171, 100, 0, 0, 131, 159, 159, 169, 235, 973109, (87,32,0): 172, 100, 0, 0, 132, 156, 156, 205, 115, 973209, (87,33,0): 175, 100, 0, 0, 131, 152, 152, 169, 212, 973309, (87,34,0): 176, 99, 0, 0, 132, 148, 148, 21, 69, 973409, (87,35,0): 177, 99, 0, 0, 131, 143, 143, 205, 212, 973509, (87,36,0): 178, 99, 0, 0, 133, 140, 140, 169, 151, 973609, (87,37,0): 178, 100, 0, 0, 135, 137, 137, 21, 56, 973709, (87,38,0): 179, 100, 0, 0, 138, 135, 135, 21, 56, 973809, (87,39,0): 179, 100, 0, 0, 140, 132, 132, 205, 197, 973909, (87,40,0): 179, 98, 0, 0, 141, 130, 130, 169, 98, 974009, (87,41,0): 180, 95, 0, 0, 140, 129, 129, 169, 159, 974109, (87,42,0): 180, 93, 0, 0, 139, 128, 128, 132, 31, 974209, (87,43,0): 178, 91, 0, 0, 138, 125, 125, 169, 102, 974309, (87,44,0): 175, 91, 0, 0, 133, 125, 125, 132, 173, 974409, (87,45,0): 171, 90, 0, 0, 127, 124, 124, 169, 107, 974509, (87,46,0): 170, 89, 0, 0, 115, 123, 123, 205, 76, 974609, (87,47,0): 170, 88, 0, 0, 111, 122, 122, 169, 41, 974709, (87,48,0): 170, 88, 0, 0, 117, 121, 121, 205, 106, 974809, (87,49,0): 170, 87, 0, 0, 114, 120, 120, 169, 209, 974909, (88,0,0): 180, 96, 0, 0, 40, 137, 137, 140, 211, 980009, (88,1,0): 180, 94, 0, 0, 39, 136, 136, 88, 148, 980109, (88,2,0): 179, 92, 0, 0, 40, 134, 134, 140, 47, 980209, (88,3,0): 179, 91, 0, 0, 41, 132, 132, 88, 211, 980309, (88,4,0): 180, 95, 0, 0, 46, 129, 129, 140, 235, 980409, (88,5,0): 180, 95, 0, 0, 51, 129, 129, 88, 43, 980509, (88,6,0): 180, 95, 0, 0, 55, 128, 128, 140, 85, 980609, (88,7,0): 180, 95, 0, 0, 57, 128, 128, 245, 235, 980709, (88,8,0): 179, 95, 0, 0, 61, 127, 127, 140, 82, 980809, (88,9,0): 179, 95, 0, 0, 63, 127, 127, 140, 112, 980909, (88,10,0): 178, 95, 0, 0, 68, 127, 127, 140, 77, 981009, (88,11,0): 177, 95, 0, 0, 74, 127, 127, 201, 39, 981109, (88,12,0): 174, 92, 0, 0, 79, 127, 127, 120, 247, 981209, (88,13,0): 170, 93, 0, 0, 86, 127, 127, 120, 98, 981309, (88,14,0): 170, 93, 0, 0, 90, 127, 127, 113, 158, 981409, (88,15,0): 172, 94, 0, 0, 93, 128, 128, 107, 43, 981509, (88,16,0): 171, 94, 0, 0, 89, 129, 129, 254, 148, 981609, (88,17,0): 172, 95, 0, 0, 91, 131, 131, 118, 73, 981709, (88,18,0): 172, 95, 0, 0, 94, 131, 131, 190, 31, 981809, (88,19,0): 173, 95, 0, 0, 101, 133, 133, 190, 215, 981909, (88,20,0): 173, 96, 0, 0, 110, 132, 132, 190, 250, 982009, (88,21,0): 172, 97, 0, 0, 119, 133, 133, 161, 60, 982109, (88,22,0): 171, 98, 0, 0, 127, 133, 133, 161, 60, 982209, (88,23,0): 169, 98, 0, 0, 132, 141, 141, 96, 163, 982309, (88,24,0): 167, 98, 0, 0, 140, 143, 143, 96, 31, 982409, (88,25,0): 168, 98, 0, 0, 140, 145, 145, 169, 101, 982509, (88,26,0): 170, 97, 0, 0, 138, 148, 148, 67, 218, 982609, (88,27,0): 170, 96, 0, 0, 134, 151, 151, 169, 218, 982709, (88,28,0): 173, 99, 0, 0, 130, 154, 154, 169, 73, 982809, (88,29,0): 175, 99, 0, 0, 128, 158, 158, 169, 68, 982909, (88,30,0): 176, 101, 0, 0, 130, 159, 159, 169, 10, 983009, (88,31,0): 175, 101, 0, 0, 131, 153, 153, 169, 67, 983109, (88,32,0): 176, 101, 0, 0, 128, 150, 150, 169, 54, 983209, (88,33,0): 177, 101, 0, 0, 129, 147, 147, 21, 191, 983309, (88,34,0): 178, 99, 0, 0, 131, 144, 144, 169, 150, 983409, (88,35,0): 178, 99, 0, 0, 132, 138, 138, 169, 56, 983509, (88,36,0): 179, 100, 0, 0, 134, 135, 135, 57, 56, 983609, (88,37,0): 179, 101, 0, 0, 136, 132, 132, 169, 56, 983709, (88,38,0): 179, 101, 0, 0, 139, 130, 130, 169, 151, 983809, (88,39,0): 180, 101, 0, 0, 140, 130, 130, 169, 115, 983909, (88,40,0): 180, 99, 0, 0, 138, 129, 129, 169, 4, 984009, (88,41,0): 180, 97, 0, 0, 138, 127, 127, 169, 196, 984109, (88,42,0): 179, 94, 0, 0, 137, 126, 126, 205, 101, 984209, (88,43,0): 175, 93, 0, 0, 135, 123, 123, 169, 92, 984309, (88,44,0): 172, 94, 0, 0, 128, 123, 123, 169, 102, 984409, (88,45,0): 170, 93, 0, 0, 119, 123, 123, 169, 76, 984509, (88,46,0): 170, 91, 0, 0, 107, 122, 122, 169, 41, 984609, (88,47,0): 170, 89, 0, 0, 102, 120, 120, 169, 101, 984709, (88,48,0): 170, 87, 0, 0, 106, 120, 120, 169, 106, 984809, (88,49,0): 170, 87, 0, 0, 108, 119, 119, 169, 164, 984909, (89,0,0): 180, 95, 0, 0, 42, 139, 139, 88, 206, 990009, (89,1,0): 180, 93, 0, 0, 41, 138, 138, 140, 148, 990109, (89,2,0): 179, 91, 0, 0, 41, 137, 137, 88, 206, 990209, (89,3,0): 179, 90, 0, 0, 41, 136, 136, 140, 211, 990309, (89,4,0): 180, 95, 0, 0, 45, 135, 135, 140, 235, 990409, (89,5,0): 180, 95, 0, 0, 49, 136, 136, 88, 83, 990509, (89,6,0): 180, 95, 0, 0, 53, 133, 133, 140, 244, 990609, (89,7,0): 179, 95, 0, 0, 55, 128, 128, 140, 54, 990709, (89,8,0): 177, 95, 0, 0, 59, 125, 125, 117, 10, 990809, (89,9,0): 178, 95, 0, 0, 62, 125, 125, 117, 127, 990909, (89,10,0): 178, 95, 0, 0, 65, 125, 125, 88, 73, 991009, (89,11,0): 176, 95, 0, 0, 72, 125, 125, 201, 218, 991109, (89,12,0): 172, 92, 0, 0, 79, 125, 125, 55, 39, 991209, (89,13,0): 170, 92, 0, 0, 83, 125, 125, 120, 247, 991309, (89,14,0): 172, 92, 0, 0, 88, 124, 124, 113, 83, 991409, (89,15,0): 172, 93, 0, 0, 90, 124, 124, 107, 158, 991509, (89,16,0): 170, 93, 0, 0, 92, 124, 124, 9, 127, 991609, (89,17,0): 171, 94, 0, 0, 94, 126, 126, 155, 73, 991709, (89,18,0): 171, 94, 0, 0, 100, 126, 126, 190, 209, 991809, (89,19,0): 170, 95, 0, 0, 107, 125, 125, 190, 250, 991909, (89,20,0): 171, 98, 0, 0, 117, 125, 125, 42, 92, 992009, (89,21,0): 172, 99, 0, 0, 127, 126, 126, 96, 250, 992109, (89,22,0): 171, 100, 0, 0, 135, 126, 126, 96, 31, 992209, (89,23,0): 168, 101, 0, 0, 139, 131, 131, 169, 250, 992309, (89,24,0): 166, 101, 0, 0, 141, 131, 131, 169, 251, 992409, (89,25,0): 169, 100, 0, 0, 140, 135, 135, 169, 254, 992509, (89,26,0): 172, 99, 0, 0, 137, 137, 137, 169, 254, 992609, (89,27,0): 173, 98, 0, 0, 133, 141, 141, 169, 215, 992709, (89,28,0): 175, 100, 0, 0, 128, 145, 145, 169, 106, 992809, (89,29,0): 176, 100, 0, 0, 128, 149, 149, 169, 73, 992909, (89,30,0): 176, 102, 0, 0, 128, 150, 150, 132, 68, 993009, (89,31,0): 177, 102, 0, 0, 130, 146, 146, 169, 77, 993109, (89,32,0): 177, 102, 0, 0, 133, 145, 145, 205, 10, 993209, (89,33,0): 177, 102, 0, 0, 134, 141, 141, 132, 167, 993309, (89,34,0): 178, 100, 0, 0, 135, 138, 138, 169, 85, 993409, (89,35,0): 178, 100, 0, 0, 137, 135, 135, 132, 212, 993509, (89,36,0): 178, 102, 0, 0, 139, 131, 131, 169, 212, 993609, (89,37,0): 178, 102, 0, 0, 140, 128, 128, 169, 212, 993709, (89,38,0): 178, 102, 0, 0, 141, 126, 126, 205, 212, 993809, (89,39,0): 178, 102, 0, 0, 142, 128, 128, 169, 69, 993909, (89,40,0): 178, 101, 0, 0, 138, 128, 128, 205, 158, 994009, (89,41,0): 176, 99, 0, 0, 137, 126, 126, 21, 149, 994109, (89,42,0): 173, 97, 0, 0, 134, 125, 125, 205, 101, 994209, (89,43,0): 171, 96, 0, 0, 130, 124, 124, 21, 101, 994309, (89,44,0): 170, 97, 0, 0, 123, 122, 122, 205, 250, 994409, (89,45,0): 170, 96, 0, 0, 116, 122, 122, 169, 118, 994509, (89,46,0): 170, 94, 0, 0, 108, 121, 121, 169, 173, 994609, (89,47,0): 170, 91, 0, 0, 100, 117, 117, 169, 154, 994709, (89,48,0): 170, 90, 0, 0, 99, 118, 118, 205, 106, 994809, (89,49,0): 170, 89, 0, 0, 98, 118, 118, 169, 47, 994909, (90,0,0): 180, 94, 0, 0, 45, 136, 136, 88, 148, 1000009, (90,1,0): 180, 93, 0, 0, 45, 136, 136, 88, 148, 1000109, (90,2,0): 180, 91, 0, 0, 44, 136, 136, 140, 82, 1000209, (90,3,0): 180, 92, 0, 0, 44, 136, 136, 88, 211, 1000309, (90,4,0): 180, 94, 0, 0, 47, 138, 138, 140, 54, 1000409, (90,5,0): 180, 94, 0, 0, 49, 137, 137, 88, 43, 1000509, (90,6,0): 180, 94, 0, 0, 51, 136, 136, 140, 212, 1000609, (90,7,0): 179, 94, 0, 0, 52, 128, 128, 245, 43, 1000709, (90,8,0): 178, 94, 0, 0, 57, 126, 126, 245, 148, 1000809, (90,9,0): 179, 94, 0, 0, 60, 126, 126, 140, 77, 1000909, (90,10,0): 178, 94, 0, 0, 64, 124, 124, 140, 209, 1001009, (90,11,0): 175, 94, 0, 0, 69, 124, 124, 201, 106, 1001109, (90,12,0): 173, 92, 0, 0, 75, 124, 124, 55, 218, 1001209, (90,13,0): 171, 92, 0, 0, 81, 124, 124, 120, 94, 1001309, (90,14,0): 170, 92, 0, 0, 85, 124, 124, 107, 69, 1001409, (90,15,0): 168, 93, 0, 0, 86, 120, 120, 92, 83, 1001509, (90,16,0): 168, 93, 0, 0, 92, 121, 121, 118, 39, 1001609, (90,17,0): 168, 94, 0, 0, 94, 124, 124, 200, 31, 1001709, (90,18,0): 168, 94, 0, 0, 102, 124, 124, 190, 218, 1001809, (90,19,0): 167, 94, 0, 0, 112, 125, 125, 42, 250, 1001909, (90,20,0): 169, 98, 0, 0, 122, 125, 125, 161, 102, 1002009, (90,21,0): 171, 99, 0, 0, 133, 125, 125, 96, 250, 1002109, (90,22,0): 169, 100, 0, 0, 141, 125, 125, 169, 250, 1002209, (90,23,0): 166, 101, 0, 0, 144, 126, 126, 67, 102, 1002309, (90,24,0): 165, 101, 0, 0, 144, 127, 127, 169, 254, 1002409, (90,25,0): 168, 100, 0, 0, 142, 128, 128, 67, 107, 1002509, (90,26,0): 172, 99, 0, 0, 138, 129, 129, 132, 154, 1002609, (90,27,0): 175, 98, 0, 0, 135, 132, 132, 169, 254, 1002709, (90,28,0): 176, 101, 0, 0, 129, 133, 133, 169, 215, 1002809, (90,29,0): 176, 101, 0, 0, 127, 134, 134, 169, 106, 1002909, (90,30,0): 176, 102, 0, 0, 127, 134, 134, 169, 32, 1003009, (90,31,0): 177, 103, 0, 0, 128, 138, 138, 169, 32, 1003109, (90,32,0): 177, 103, 0, 0, 134, 136, 136, 169, 77, 1003209, (90,33,0): 177, 102, 0, 0, 136, 136, 136, 169, 96, 1003309, (90,34,0): 177, 101, 0, 0, 138, 133, 133, 132, 54, 1003409, (90,35,0): 178, 101, 0, 0, 140, 132, 132, 205, 244, 1003509, (90,36,0): 177, 103, 0, 0, 140, 128, 128, 169, 212, 1003609, (90,37,0): 176, 103, 0, 0, 140, 126, 126, 205, 69, 1003709, (90,38,0): 174, 103, 0, 0, 140, 125, 125, 96, 212, 1003809, (90,39,0): 174, 102, 0, 0, 139, 125, 125, 21, 197, 1003909, (90,40,0): 173, 102, 0, 0, 137, 125, 125, 21, 217, 1004009, (90,41,0): 171, 101, 0, 0, 134, 124, 124, 96, 127, 1004109, (90,42,0): 170, 100, 0, 0, 128, 121, 121, 21, 218, 1004209, (90,43,0): 170, 99, 0, 0, 123, 122, 122, 21, 218, 1004309, (90,44,0): 170, 100, 0, 0, 117, 120, 120, 161, 7, 1004409, (90,45,0): 170, 99, 0, 0, 110, 120, 120, 21, 218, 1004509, (90,46,0): 170, 96, 0, 0, 105, 120, 120, 205, 250, 1004609, (90,47,0): 171, 94, 0, 0, 99, 114, 114, 21, 68, 1004709, (90,48,0): 171, 92, 0, 0, 93, 117, 117, 169, 211, 1004809, (90,49,0): 171, 91, 0, 0, 93, 118, 118, 169, 43, 1004909, (91,0,0): 46, 96, 0, 2, 50, 129, 129, 140, 47, 1010009, (91,1,0): 180, 95, 0, 0, 48, 129, 129, 88, 211, 1010109, (91,2,0): 179, 94, 0, 0, 48, 129, 129, 140, 47, 1010209, (91,3,0): 179, 93, 0, 0, 48, 132, 132, 88, 10, 1010309, (91,4,0): 180, 95, 0, 0, 49, 135, 135, 140, 148, 1010409, (91,5,0): 46, 95, 3, 2, 50, 136, 136, 88, 54, 1010509, (91,6,0): 181, 95, 0, 0, 51, 136, 136, 140, 69, 1010609, (91,7,0): 180, 95, 0, 0, 52, 133, 133, 88, 85, 1010709, (91,8,0): 180, 95, 0, 0, 57, 132, 132, 139, 10, 1010809, (91,9,0): 179, 95, 0, 0, 59, 132, 132, 117, 218, 1010909, (91,10,0): 177, 95, 0, 0, 63, 129, 129, 88, 215, 1011009, (91,11,0): 176, 95, 0, 0, 68, 129, 129, 139, 92, 1011109, (91,12,0): 174, 92, 0, 0, 73, 128, 128, 55, 101, 1011209, (91,13,0): 170, 92, 0, 0, 77, 128, 128, 113, 148, 1011309, (91,14,0): 168, 93, 0, 0, 82, 128, 128, 107, 69, 1011409, (91,15,0): 167, 93, 0, 0, 83, 126, 126, 101, 29, 1011509, (91,16,0): 167, 94, 0, 0, 88, 126, 126, 200, 127, 1011609, (91,17,0): 167, 94, 0, 0, 92, 126, 126, 200, 31, 1011709, (91,18,0): 166, 95, 0, 0, 100, 126, 126, 42, 228, 1011809, (91,19,0): 166, 95, 0, 0, 110, 126, 126, 161, 215, 1011909, (91,20,0): 168, 97, 0, 0, 122, 126, 126, 161, 251, 1012009, (91,21,0): 169, 98, 0, 0, 132, 126, 126, 169, 254, 1012109, (91,22,0): 168, 99, 0, 0, 140, 126, 126, 169, 251, 1012209, (91,23,0): 165, 100, 0, 0, 145, 125, 125, 67, 251, 1012309, (91,24,0): 165, 100, 0, 0, 148, 125, 125, 132, 107, 1012409, (91,25,0): 167, 99, 0, 0, 147, 126, 126, 40, 213, 1012509, (91,26,0): 172, 98, 0, 0, 142, 126, 126, 169, 92, 1012609, (91,27,0): 175, 97, 0, 0, 137, 128, 128, 40, 215, 1012709, (91,28,0): 175, 101, 0, 0, 130, 128, 128, 169, 92, 1012809, (91,29,0): 176, 101, 0, 0, 127, 128, 128, 169, 9, 1012909, (91,30,0): 177, 102, 0, 0, 127, 126, 126, 169, 215, 1013009, (91,31,0): 177, 103, 0, 0, 128, 128, 128, 169, 48, 1013109, (91,32,0): 177, 103, 0, 0, 132, 126, 126, 169, 32, 1013209, (91,33,0): 177, 102, 0, 0, 134, 125, 125, 169, 42, 1013309, (91,34,0): 177, 101, 0, 0, 137, 124, 124, 205, 77, 1013409, (91,35,0): 177, 101, 0, 0, 141, 123, 123, 169, 235, 1013509, (91,36,0): 175, 103, 0, 0, 139, 122, 122, 169, 150, 1013609, (91,37,0): 173, 103, 0, 0, 137, 120, 120, 205, 69, 1013709, (91,38,0): 171, 102, 0, 0, 135, 120, 120, 169, 115, 1013809, (91,39,0): 171, 101, 0, 0, 133, 120, 120, 21, 235, 1013909, (91,40,0): 171, 101, 0, 0, 133, 120, 120, 169, 47, 1014009, (91,41,0): 171, 101, 0, 0, 128, 119, 119, 21, 39, 1014109, (91,42,0): 171, 101, 0, 0, 121, 118, 118, 21, 106, 1014209, (91,43,0): 170, 101, 0, 0, 114, 118, 118, 21, 250, 1014309, (91,44,0): 170, 102, 0, 0, 109, 116, 116, 21, 218, 1014409, (91,45,0): 171, 100, 0, 0, 107, 115, 115, 161, 149, 1014509, (91,46,0): 171, 98, 0, 0, 105, 113, 113, 161, 127, 1014609, (91,47,0): 171, 96, 0, 0, 99, 109, 109, 21, 43, 1014709, (91,48,0): 171, 95, 0, 0, 92, 114, 114, 205, 69, 1014809, (91,49,0): 171, 95, 0, 0, 90, 110, 110, 169, 212, 1014909, (92,0,0): 180, 97, 0, 0, 55, 126, 126, 88, 211, 1020009, (92,1,0): 180, 96, 0, 0, 54, 126, 126, 140, 211, 1020109, (92,2,0): 179, 95, 0, 0, 54, 127, 127, 88, 211, 1020209, (92,3,0): 179, 94, 0, 0, 53, 131, 131, 140, 39, 1020309, (92,4,0): 180, 96, 0, 0, 53, 134, 134, 88, 32, 1020409, (92,5,0): 180, 96, 0, 0, 53, 136, 136, 140, 39, 1020509, (92,6,0): 46, 96, 3, 2, 54, 137, 137, 245, 211, 1020609, (92,7,0): 181, 96, 0, 0, 54, 135, 135, 245, 54, 1020709, (92,8,0): 180, 96, 0, 0, 59, 133, 133, 245, 73, 1020809, (92,9,0): 177, 96, 0, 0, 61, 132, 132, 117, 209, 1020909, (92,10,0): 174, 96, 0, 0, 64, 132, 132, 140, 215, 1021009, (92,11,0): 173, 96, 0, 0, 68, 131, 131, 139, 92, 1021109, (92,12,0): 170, 93, 0, 0, 73, 130, 130, 201, 118, 1021209, (92,13,0): 168, 94, 0, 0, 77, 130, 130, 76, 7, 1021309, (92,14,0): 167, 94, 0, 0, 81, 130, 130, 102, 75, 1021409, (92,15,0): 167, 94, 0, 0, 82, 127, 127, 106, 165, 1021509, (92,16,0): 167, 95, 0, 0, 86, 127, 127, 218, 39, 1021609, (92,17,0): 167, 96, 0, 0, 89, 127, 127, 190, 92, 1021709, (92,18,0): 166, 96, 0, 0, 97, 127, 127, 42, 254, 1021809, (92,19,0): 166, 98, 0, 0, 107, 126, 126, 21, 76, 1021909, (92,20,0): 167, 97, 0, 0, 117, 126, 126, 205, 76, 1022009, (92,21,0): 168, 98, 0, 0, 128, 126, 126, 169, 103, 1022109, (92,22,0): 166, 99, 0, 0, 136, 126, 126, 169, 107, 1022209, (92,23,0): 165, 100, 0, 0, 140, 125, 125, 132, 76, 1022309, (92,24,0): 166, 100, 0, 0, 149, 125, 125, 67, 76, 1022409, (92,25,0): 168, 99, 0, 0, 148, 125, 125, 132, 76, 1022509, (92,26,0): 172, 98, 0, 0, 144, 125, 125, 132, 102, 1022609, (92,27,0): 175, 97, 0, 0, 139, 125, 125, 169, 250, 1022709, (92,28,0): 176, 100, 0, 0, 132, 125, 125, 169, 215, 1022809, (92,29,0): 176, 100, 0, 0, 129, 124, 124, 169, 154, 1022909, (92,30,0): 177, 102, 0, 0, 127, 124, 124, 169, 41, 1023009, (92,31,0): 177, 102, 0, 0, 127, 124, 124, 132, 9, 1023109, (92,32,0): 178, 102, 0, 0, 129, 122, 122, 169, 32, 1023209, (92,33,0): 178, 102, 0, 0, 132, 122, 122, 169, 32, 1023309, (92,34,0): 178, 100, 0, 0, 135, 121, 121, 169, 32, 1023409, (92,35,0): 177, 100, 0, 0, 137, 121, 121, 96, 10, 1023509, (92,36,0): 175, 101, 0, 0, 138, 121, 121, 21, 43, 1023609, (92,37,0): 172, 100, 0, 0, 134, 119, 119, 96, 191, 1023709, (92,38,0): 172, 100, 0, 0, 129, 119, 119, 21, 43, 1023809, (92,39,0): 172, 99, 0, 0, 128, 119, 119, 169, 211, 1023909, (92,40,0): 171, 99, 0, 0, 127, 119, 119, 21, 10, 1024009, (92,41,0): 171, 100, 0, 0, 122, 116, 116, 169, 101, 1024109, (92,42,0): 171, 100, 0, 0, 114, 115, 115, 169, 92, 1024209, (92,43,0): 171, 101, 0, 0, 109, 114, 114, 96, 154, 1024309, (92,44,0): 171, 100, 0, 0, 106, 114, 114, 169, 101, 1024409, (92,45,0): 171, 99, 0, 0, 105, 112, 112, 21, 127, 1024509, (92,46,0): 171, 98, 0, 0, 106, 112, 112, 21, 4, 1024609, (92,47,0): 171, 98, 0, 0, 102, 107, 107, 96, 148, 1024709, (92,48,0): 171, 98, 0, 0, 97, 113, 113, 169, 54, 1024809, (92,49,0): 171, 99, 0, 0, 95, 109, 109, 169, 191, 1024909, (93,0,0): 180, 99, 0, 0, 63, 127, 127, 117, 65, 1030009, (93,1,0): 180, 99, 0, 0, 61, 126, 126, 140, 235, 1030109, (93,2,0): 179, 98, 0, 0, 61, 127, 127, 88, 54, 1030209, (93,3,0): 179, 97, 0, 0, 61, 131, 131, 140, 10, 1030309, (93,4,0): 180, 100, 0, 0, 61, 134, 134, 88, 73, 1030409, (93,5,0): 180, 100, 0, 0, 59, 135, 135, 140, 209, 1030509, (93,6,0): 181, 100, 0, 0, 59, 136, 136, 88, 77, 1030609, (93,7,0): 180, 100, 0, 0, 59, 135, 135, 140, 39, 1030709, (93,8,0): 179, 100, 0, 0, 63, 132, 132, 117, 92, 1030809, (93,9,0): 176, 100, 0, 0, 64, 132, 132, 117, 92, 1030909, (93,10,0): 172, 100, 0, 0, 67, 132, 132, 140, 254, 1031009, (93,11,0): 170, 100, 0, 0, 70, 130, 130, 117, 154, 1031109, (93,12,0): 168, 97, 0, 0, 75, 130, 130, 55, 213, 1031209, (93,13,0): 167, 97, 0, 0, 78, 128, 128, 113, 92, 1031309, (93,14,0): 167, 97, 0, 0, 81, 128, 128, 102, 149, 1031409, (93,15,0): 167, 98, 0, 0, 82, 127, 127, 101, 159, 1031509, (93,16,0): 167, 98, 0, 0, 89, 127, 127, 32, 228, 1031609, (93,17,0): 167, 99, 0, 0, 90, 126, 126, 136, 76, 1031709, (93,18,0): 166, 99, 0, 0, 95, 126, 126, 161, 76, 1031809, (93,19,0): 167, 100, 0, 0, 103, 126, 126, 21, 243, 1031909, (93,20,0): 167, 100, 0, 0, 113, 126, 126, 169, 113, 1032009, (93,21,0): 166, 100, 0, 0, 123, 126, 126, 169, 76, 1032109, (93,22,0): 165, 101, 0, 0, 131, 126, 126, 169, 113, 1032209, (93,23,0): 167, 102, 0, 0, 135, 125, 125, 169, 113, 1032309, (93,24,0): 169, 102, 0, 0, 143, 125, 125, 132, 113, 1032409, (93,25,0): 171, 101, 0, 0, 143, 125, 125, 169, 76, 1032509, (93,26,0): 174, 100, 0, 0, 141, 125, 125, 169, 254, 1032609, (93,27,0): 176, 100, 0, 0, 138, 124, 124, 169, 250, 1032709, (93,28,0): 176, 99, 0, 0, 131, 123, 123, 96, 215, 1032809, (93,29,0): 177, 99, 0, 0, 126, 123, 123, 169, 213, 1032909, (93,30,0): 177, 101, 0, 0, 122, 123, 123, 169, 92, 1033009, (93,31,0): 178, 101, 0, 0, 121, 123, 123, 169, 154, 1033109, (93,32,0): 178, 101, 0, 0, 123, 123, 123, 169, 48, 1033209, (93,33,0): 178, 101, 0, 0, 124, 122, 122, 169, 215, 1033309, (93,34,0): 178, 99, 0, 0, 128, 121, 121, 169, 106, 1033409, (93,35,0): 178, 99, 0, 0, 131, 120, 120, 21, 39, 1033509, (93,36,0): 176, 98, 0, 0, 131, 120, 120, 21, 148, 1033609, (93,37,0): 175, 95, 0, 0, 127, 120, 120, 21, 112, 1033709, (93,38,0): 175, 96, 0, 0, 124, 120, 120, 21, 206, 1033809, (93,39,0): 175, 95, 0, 0, 122, 116, 116, 21, 127, 1033909, (93,40,0): 174, 95, 0, 0, 118, 116, 116, 96, 209, 1034009, (93,41,0): 172, 96, 0, 0, 114, 115, 115, 21, 213, 1034109, (93,42,0): 172, 98, 0, 0, 109, 115, 115, 96, 41, 1034209, (93,43,0): 172, 99, 0, 0, 106, 114, 114, 205, 173, 1034309, (93,44,0): 171, 97, 0, 0, 107, 113, 113, 169, 41, 1034409, (93,45,0): 171, 97, 0, 0, 108, 111, 111, 169, 218, 1034509, (93,46,0): 171, 97, 0, 0, 108, 111, 111, 169, 47, 1034609, (93,47,0): 172, 98, 0, 0, 107, 106, 106, 132, 115, 1034709, (93,48,0): 171, 101, 0, 0, 103, 111, 111, 169, 212, 1034809, (93,49,0): 171, 104, 0, 0, 102, 109, 109, 169, 212, 1034909, (94,0,0): 46, 100, 0, 2, 68, 127, 127, 88, 43, 1040009, (94,1,0): 180, 100, 0, 0, 68, 126, 126, 140, 43, 1040109, (94,2,0): 179, 99, 0, 0, 68, 127, 127, 88, 4, 1040209, (94,3,0): 180, 98, 0, 0, 67, 131, 131, 140, 211, 1040309, (94,4,0): 180, 101, 0, 0, 67, 132, 132, 88, 77, 1040409, (94,5,0): 180, 101, 0, 0, 67, 135, 135, 140, 209, 1040509, (94,6,0): 46, 101, 3, 2, 66, 136, 136, 245, 209, 1040609, (94,7,0): 180, 101, 0, 0, 66, 132, 132, 140, 31, 1040709, (94,8,0): 179, 101, 0, 0, 68, 132, 132, 245, 41, 1040809, (94,9,0): 176, 101, 0, 0, 69, 132, 132, 140, 41, 1040909, (94,10,0): 172, 101, 0, 0, 71, 131, 131, 117, 173, 1041009, (94,11,0): 170, 101, 0, 0, 74, 130, 130, 140, 41, 1041109, (94,12,0): 169, 98, 0, 0, 79, 130, 130, 139, 76, 1041209, (94,13,0): 169, 98, 0, 0, 82, 127, 127, 55, 76, 1041309, (94,14,0): 170, 98, 0, 0, 84, 127, 127, 213, 101, 1041409, (94,15,0): 170, 99, 0, 0, 85, 127, 127, 218, 20, 1041509, (94,16,0): 169, 99, 0, 0, 92, 127, 127, 32, 243, 1041609, (94,17,0): 167, 100, 0, 0, 92, 126, 126, 190, 41, 1041709, (94,18,0): 167, 100, 0, 0, 92, 126, 126, 96, 243, 1041809, (94,19,0): 168, 101, 0, 0, 97, 126, 126, 57, 6, 1041909, (94,20,0): 168, 102, 0, 0, 105, 126, 126, 21, 71, 1042009, (94,21,0): 166, 103, 0, 0, 114, 126, 126, 169, 71, 1042109, (94,22,0): 167, 104, 0, 0, 123, 126, 126, 132, 145, 1042209, (94,23,0): 169, 105, 0, 0, 129, 125, 125, 160, 71, 1042309, (94,24,0): 171, 105, 0, 0, 134, 124, 124, 169, 6, 1042409, (94,25,0): 172, 104, 0, 0, 136, 125, 125, 169, 71, 1042509, (94,26,0): 175, 103, 0, 0, 136, 123, 123, 96, 254, 1042609, (94,27,0): 176, 102, 0, 0, 132, 123, 123, 169, 102, 1042709, (94,28,0): 177, 98, 0, 0, 127, 123, 123, 132, 250, 1042809, (94,29,0): 177, 99, 0, 0, 121, 123, 123, 169, 92, 1042909, (94,30,0): 177, 100, 0, 0, 116, 120, 120, 169, 215, 1043009, (94,31,0): 178, 100, 0, 0, 111, 123, 123, 96, 6, 1043109, (94,32,0): 178, 100, 0, 0, 112, 121, 121, 161, 41, 1043209, (94,33,0): 178, 100, 0, 0, 114, 121, 121, 161, 213, 1043309, (94,34,0): 178, 99, 0, 0, 118, 121, 121, 161, 209, 1043409, (94,35,0): 178, 97, 0, 0, 119, 120, 120, 21, 149, 1043509, (94,36,0): 178, 95, 0, 0, 119, 120, 120, 96, 127, 1043609, (94,37,0): 178, 94, 0, 0, 116, 120, 120, 132, 149, 1043709, (94,38,0): 177, 92, 0, 0, 115, 118, 118, 169, 127, 1043809, (94,39,0): 178, 91, 0, 0, 114, 115, 115, 169, 73, 1043909, (94,40,0): 178, 93, 0, 0, 109, 115, 115, 96, 213, 1044009, (94,41,0): 174, 95, 0, 0, 108, 115, 115, 169, 173, 1044109, (94,42,0): 172, 97, 0, 0, 106, 114, 114, 169, 173, 1044209, (94,43,0): 172, 98, 0, 0, 107, 113, 113, 169, 71, 1044309, (94,44,0): 172, 94, 0, 0, 109, 111, 111, 169, 145, 1044409, (94,45,0): 173, 95, 0, 0, 111, 111, 111, 169, 251, 1044509, (94,46,0): 172, 96, 0, 0, 111, 109, 109, 169, 7, 1044609, (94,47,0): 172, 99, 0, 0, 111, 106, 106, 132, 54, 1044709, (94,48,0): 172, 103, 0, 0, 110, 111, 111, 132, 244, 1044809, (94,49,0): 172, 107, 0, 0, 109, 108, 108, 132, 69, 1044909, (95,0,0): 46, 100, 0, 2, 73, 129, 129, 140, 43, 1050009, (95,1,0): 180, 100, 0, 0, 74, 128, 128, 88, 115, 1050109, (95,2,0): 179, 101, 0, 0, 73, 128, 128, 88, 13, 1050209, (95,3,0): 179, 101, 0, 0, 73, 129, 129, 140, 47, 1050309, (95,4,0): 180, 103, 0, 0, 73, 132, 132, 88, 39, 1050409, (95,5,0): 180, 104, 0, 0, 73, 134, 134, 140, 73, 1050509, (95,6,0): 46, 103, 3, 2, 72, 135, 135, 245, 215, 1050609, (95,7,0): 180, 103, 0, 0, 72, 132, 132, 140, 41, 1050709, (95,8,0): 180, 102, 0, 0, 73, 131, 131, 88, 173, 1050809, (95,9,0): 178, 102, 0, 0, 74, 130, 130, 245, 145, 1050909, (95,10,0): 174, 101, 0, 0, 76, 130, 130, 140, 6, 1051009, (95,11,0): 172, 101, 0, 0, 78, 130, 130, 117, 6, 1051109, (95,12,0): 172, 101, 0, 0, 82, 129, 129, 140, 6, 1051209, (95,13,0): 171, 103, 0, 0, 84, 127, 127, 201, 6, 1051309, (95,14,0): 171, 105, 0, 0, 88, 127, 127, 243, 243, 1051409, (95,15,0): 171, 107, 0, 0, 89, 126, 126, 31, 76, 1051509, (95,16,0): 169, 107, 0, 0, 93, 126, 126, 209, 113, 1051609, (95,17,0): 168, 106, 0, 0, 91, 126, 126, 42, 71, 1051709, (95,18,0): 168, 105, 0, 0, 92, 126, 126, 96, 145, 1051809, (95,19,0): 169, 104, 0, 0, 94, 125, 125, 132, 145, 1051909, (95,20,0): 167, 103, 0, 0, 100, 125, 125, 205, 145, 1052009, (95,21,0): 167, 105, 0, 0, 110, 125, 125, 169, 145, 1052109, (95,22,0): 169, 108, 0, 0, 120, 125, 125, 169, 120, 1052209, (95,23,0): 170, 111, 0, 0, 125, 124, 124, 132, 120, 1052309, (95,24,0): 171, 111, 0, 0, 129, 122, 122, 169, 120, 1052409, (95,25,0): 173, 110, 0, 0, 131, 124, 124, 169, 113, 1052509, (95,26,0): 175, 108, 0, 0, 133, 121, 121, 169, 254, 1052609, (95,27,0): 176, 106, 0, 0, 131, 121, 121, 169, 250, 1052709, (95,28,0): 177, 104, 0, 0, 125, 120, 120, 132, 31, 1052809, (95,29,0): 177, 103, 0, 0, 117, 120, 120, 160, 163, 1052909, (95,30,0): 178, 101, 0, 0, 111, 118, 118, 40, 7, 1053009, (95,31,0): 178, 99, 0, 0, 107, 121, 121, 132, 41, 1053109, (95,32,0): 178, 98, 0, 0, 105, 121, 121, 132, 173, 1053209, (95,33,0): 179, 98, 0, 0, 106, 120, 120, 169, 41, 1053309, (95,34,0): 179, 98, 0, 0, 109, 118, 118, 169, 92, 1053409, (95,35,0): 179, 98, 0, 0, 109, 118, 118, 132, 7, 1053509, (95,36,0): 179, 94, 0, 0, 109, 117, 117, 40, 196, 1053609, (95,37,0): 178, 91, 0, 0, 108, 117, 117, 169, 196, 1053709, (95,38,0): 176, 89, 0, 0, 107, 116, 116, 169, 74, 1053809, (95,39,0): 177, 87, 0, 0, 106, 114, 114, 96, 213, 1053909, (95,40,0): 179, 87, 0, 0, 103, 113, 113, 205, 243, 1054009, (95,41,0): 176, 89, 0, 0, 104, 113, 113, 96, 113, 1054109, (95,42,0): 173, 93, 0, 0, 104, 112, 112, 169, 120, 1054209, (95,43,0): 173, 94, 0, 0, 107, 111, 111, 169, 6, 1054309, (95,44,0): 175, 98, 0, 0, 110, 110, 110, 96, 120, 1054409, (95,45,0): 177, 99, 0, 0, 113, 110, 110, 169, 113, 1054509, (95,46,0): 174, 101, 0, 0, 113, 109, 109, 132, 113, 1054609, (95,47,0): 172, 105, 0, 0, 112, 106, 106, 132, 92, 1054709, (95,48,0): 173, 112, 0, 0, 112, 109, 109, 67, 73, 1054809, (95,49,0): 173, 118, 0, 0, 111, 106, 106, 169, 68, 1054909, (96,0,0): 180, 101, 0, 0, 82, 130, 130, 88, 244, 1060009, (96,1,0): 180, 102, 0, 0, 82, 129, 129, 140, 69, 1060109, (96,2,0): 179, 102, 0, 0, 82, 128, 128, 117, 85, 1060209, (96,3,0): 179, 104, 0, 0, 82, 129, 129, 140, 211, 1060309, (96,4,0): 180, 105, 0, 0, 82, 131, 131, 88, 149, 1060409, (96,5,0): 180, 104, 0, 0, 82, 132, 132, 140, 7, 1060509, (96,6,0): 180, 104, 0, 0, 82, 133, 133, 140, 92, 1060609, (96,7,0): 180, 104, 0, 0, 82, 130, 130, 245, 76, 1060709, (96,8,0): 180, 103, 0, 0, 85, 130, 130, 245, 173, 1060809, (96,9,0): 178, 102, 0, 0, 86, 130, 130, 245, 145, 1060909, (96,10,0): 175, 102, 0, 0, 87, 130, 130, 88, 145, 1061009, (96,11,0): 171, 102, 0, 0, 88, 129, 129, 117, 145, 1061109, (96,12,0): 169, 102, 0, 0, 89, 127, 127, 140, 145, 1061209, (96,13,0): 168, 104, 0, 0, 91, 127, 127, 199, 120, 1061309, (96,14,0): 168, 106, 0, 0, 92, 126, 126, 120, 71, 1061409, (96,15,0): 167, 108, 0, 0, 92, 126, 126, 213, 120, 1061509, (96,16,0): 169, 109, 0, 0, 98, 126, 126, 218, 6, 1061609, (96,17,0): 171, 109, 0, 0, 97, 126, 126, 166, 120, 1061709, (96,18,0): 170, 108, 0, 0, 97, 126, 126, 96, 145, 1061809, (96,19,0): 168, 107, 0, 0, 98, 125, 125, 132, 55, 1061909, (96,20,0): 166, 108, 0, 0, 101, 125, 125, 132, 145, 1062009, (96,21,0): 168, 109, 0, 0, 107, 125, 125, 205, 55, 1062109, (96,22,0): 169, 112, 0, 0, 113, 125, 125, 96, 145, 1062209, (96,23,0): 170, 114, 0, 0, 117, 122, 122, 169, 120, 1062309, (96,24,0): 172, 114, 0, 0, 122, 122, 122, 169, 120, 1062409, (96,25,0): 174, 112, 0, 0, 124, 121, 121, 169, 76, 1062509, (96,26,0): 176, 109, 0, 0, 127, 121, 121, 169, 194, 1062609, (96,27,0): 177, 107, 0, 0, 127, 120, 120, 132, 163, 1062709, (96,28,0): 177, 103, 0, 0, 124, 118, 118, 67, 31, 1062809, (96,29,0): 177, 101, 0, 0, 117, 118, 118, 169, 250, 1062909, (96,30,0): 178, 100, 0, 0, 109, 116, 116, 169, 20, 1063009, (96,31,0): 178, 98, 0, 0, 101, 119, 119, 96, 113, 1063109, (96,32,0): 179, 97, 0, 0, 99, 117, 117, 96, 71, 1063209, (96,33,0): 179, 96, 0, 0, 96, 117, 117, 96, 71, 1063309, (96,34,0): 180, 97, 0, 0, 95, 115, 115, 96, 76, 1063409, (96,35,0): 180, 96, 0, 0, 95, 116, 116, 96, 20, 1063509, (96,36,0): 179, 91, 0, 0, 94, 115, 115, 96, 194, 1063609, (96,37,0): 177, 89, 0, 0, 94, 114, 114, 96, 228, 1063709, (96,38,0): 174, 87, 0, 0, 97, 114, 114, 169, 20, 1063809, (96,39,0): 174, 86, 0, 0, 98, 113, 113, 96, 113, 1063909, (96,40,0): 176, 87, 0, 0, 101, 113, 113, 96, 71, 1064009, (96,41,0): 177, 89, 0, 0, 103, 112, 112, 169, 120, 1064109, (96,42,0): 176, 94, 0, 0, 105, 111, 111, 96, 145, 1064209, (96,43,0): 174, 95, 0, 0, 107, 110, 110, 169, 55, 1064309, (96,44,0): 176, 100, 0, 0, 107, 109, 109, 169, 145, 1064409, (96,45,0): 179, 101, 0, 0, 109, 108, 108, 40, 120, 1064509, (96,46,0): 179, 105, 0, 0, 109, 106, 106, 169, 71, 1064609, (96,47,0): 177, 109, 0, 0, 106, 104, 104, 67, 154, 1064709, (96,48,0): 175, 116, 0, 0, 106, 108, 108, 169, 209, 1064809, (96,49,0): 174, 123, 0, 0, 114, 105, 105, 96, 39, 1064909, (97,0,0): 180, 105, 0, 0, 87, 131, 131, 140, 235, 1070009, (97,1,0): 180, 106, 0, 0, 87, 129, 129, 117, 43, 1070109, (97,2,0): 179, 106, 0, 0, 87, 128, 128, 88, 85, 1070209, (97,3,0): 179, 107, 0, 0, 87, 129, 129, 117, 4, 1070309, (97,4,0): 179, 106, 0, 0, 87, 131, 131, 140, 211, 1070409, (97,5,0): 179, 107, 0, 0, 87, 131, 131, 117, 149, 1070509, (97,6,0): 180, 107, 0, 0, 87, 132, 132, 140, 20, 1070609, (97,7,0): 180, 106, 0, 0, 87, 130, 130, 245, 243, 1070709, (97,8,0): 180, 106, 0, 0, 88, 130, 130, 140, 236, 1070809, (97,9,0): 179, 105, 0, 0, 89, 130, 130, 245, 145, 1070909, (97,10,0): 173, 105, 0, 0, 89, 129, 129, 245, 236, 1071009, (97,11,0): 168, 104, 0, 0, 91, 127, 127, 245, 145, 1071109, (97,12,0): 168, 104, 0, 0, 92, 127, 127, 117, 55, 1071209, (97,13,0): 167, 106, 0, 0, 93, 126, 126, 139, 145, 1071309, (97,14,0): 166, 107, 0, 0, 94, 125, 125, 201, 145, 1071409, (97,15,0): 167, 109, 0, 0, 95, 126, 126, 173, 55, 1071509, (97,16,0): 171, 111, 0, 0, 100, 126, 126, 218, 145, 1071609, (97,17,0): 172, 111, 0, 0, 99, 125, 125, 10, 55, 1071709, (97,18,0): 170, 111, 0, 0, 99, 125, 125, 10, 55, 1071809, (97,19,0): 167, 111, 0, 0, 99, 125, 125, 96, 145, 1071909, (97,20,0): 166, 113, 0, 0, 102, 125, 125, 169, 55, 1072009, (97,21,0): 168, 114, 0, 0, 106, 125, 125, 169, 55, 1072109, (97,22,0): 169, 115, 0, 0, 110, 125, 125, 169, 201, 1072209, (97,23,0): 170, 116, 0, 0, 112, 122, 122, 21, 145, 1072309, (97,24,0): 174, 115, 0, 0, 114, 121, 121, 169, 120, 1072409, (97,25,0): 176, 113, 0, 0, 116, 120, 120, 132, 113, 1072509, (97,26,0): 177, 110, 0, 0, 118, 120, 120, 169, 102, 1072609, (97,27,0): 178, 108, 0, 0, 118, 119, 119, 132, 194, 1072709, (97,28,0): 178, 100, 0, 0, 115, 116, 116, 169, 102, 1072809, (97,29,0): 178, 99, 0, 0, 109, 115, 115, 169, 76, 1072909, (97,30,0): 178, 97, 0, 0, 103, 114, 114, 169, 120, 1073009, (97,31,0): 177, 96, 0, 0, 98, 116, 116, 169, 71, 1073109, (97,32,0): 177, 95, 0, 0, 94, 115, 115, 169, 6, 1073209, (97,33,0): 178, 94, 0, 0, 90, 114, 114, 132, 236, 1073309, (97,34,0): 179, 95, 0, 0, 89, 113, 113, 67, 113, 1073409, (97,35,0): 180, 94, 0, 0, 87, 114, 114, 169, 71, 1073509, (97,36,0): 178, 87, 0, 0, 88, 112, 112, 169, 243, 1073609, (97,37,0): 175, 84, 0, 0, 88, 112, 112, 96, 125, 1073709, (97,38,0): 172, 83, 0, 0, 92, 112, 112, 169, 113, 1073809, (97,39,0): 172, 83, 0, 0, 94, 111, 111, 96, 120, 1073909, (97,40,0): 174, 87, 0, 0, 99, 111, 111, 169, 55, 1074009, (97,41,0): 176, 91, 0, 0, 99, 110, 110, 96, 55, 1074109, (97,42,0): 176, 96, 0, 0, 102, 110, 110, 169, 55, 1074209, (97,43,0): 177, 98, 0, 0, 103, 109, 109, 169, 119, 1074309, (97,44,0): 180, 104, 0, 0, 105, 108, 108, 96, 55, 1074409, (97,45,0): 181, 106, 0, 0, 106, 107, 107, 132, 55, 1074509, (97,46,0): 180, 111, 0, 0, 107, 105, 105, 96, 120, 1074609, (97,47,0): 178, 118, 0, 0, 106, 103, 103, 169, 6, 1074709, (97,48,0): 178, 125, 0, 0, 102, 107, 107, 96, 154, 1074809, (97,49,0): 178, 132, 0, 0, 111, 104, 104, 169, 106, 1074909, (98,0,0): 180, 108, 0, 0, 93, 133, 133, 88, 211, 1080009, (98,1,0): 179, 108, 0, 0, 93, 130, 130, 117, 83, 1080109, (98,2,0): 179, 109, 0, 0, 93, 128, 128, 140, 56, 1080209, (98,3,0): 179, 110, 0, 0, 93, 129, 129, 88, 56, 1080309, (98,4,0): 179, 109, 0, 0, 93, 129, 129, 140, 29, 1080409, (98,5,0): 179, 109, 0, 0, 93, 131, 131, 117, 198, 1080509, (98,6,0): 179, 109, 0, 0, 93, 132, 132, 140, 7, 1080609, (98,7,0): 179, 108, 0, 0, 93, 130, 130, 140, 113, 1080709, (98,8,0): 179, 108, 0, 0, 91, 130, 130, 245, 120, 1080809, (98,9,0): 177, 107, 0, 0, 92, 130, 130, 245, 145, 1080909, (98,10,0): 172, 107, 0, 0, 93, 127, 127, 245, 119, 1081009, (98,11,0): 169, 107, 0, 0, 94, 127, 127, 245, 145, 1081109, (98,12,0): 169, 104, 0, 0, 95, 126, 126, 245, 119, 1081209, (98,13,0): 168, 105, 0, 0, 96, 125, 125, 139, 201, 1081309, (98,14,0): 169, 106, 0, 0, 97, 125, 125, 139, 55, 1081409, (98,15,0): 170, 108, 0, 0, 97, 126, 126, 6, 201, 1081509, (98,16,0): 172, 109, 0, 0, 101, 126, 126, 31, 119, 1081609, (98,17,0): 171, 111, 0, 0, 101, 125, 125, 68, 201, 1081709, (98,18,0): 168, 111, 0, 0, 100, 125, 125, 67, 55, 1081809, (98,19,0): 167, 112, 0, 0, 100, 125, 125, 96, 55, 1081909, (98,20,0): 168, 115, 0, 0, 101, 125, 125, 21, 55, 1082009, (98,21,0): 168, 115, 0, 0, 102, 125, 125, 132, 145, 1082109, (98,22,0): 168, 115, 0, 0, 104, 123, 123, 132, 120, 1082209, (98,23,0): 170, 115, 0, 0, 104, 121, 121, 169, 251, 1082309, (98,24,0): 174, 113, 0, 0, 105, 119, 119, 169, 113, 1082409, (98,25,0): 176, 110, 0, 0, 106, 120, 120, 169, 113, 1082509, (98,26,0): 177, 108, 0, 0, 107, 117, 117, 169, 113, 1082609, (98,27,0): 177, 106, 0, 0, 107, 116, 116, 169, 103, 1082709, (98,28,0): 177, 99, 0, 0, 105, 115, 115, 169, 113, 1082809, (98,29,0): 178, 98, 0, 0, 102, 114, 114, 169, 120, 1082909, (98,30,0): 176, 96, 0, 0, 98, 113, 113, 169, 120, 1083009, (98,31,0): 173, 94, 0, 0, 95, 114, 114, 169, 145, 1083109, (98,32,0): 172, 93, 0, 0, 90, 113, 113, 67, 120, 1083209, (98,33,0): 174, 93, 0, 0, 87, 112, 112, 169, 120, 1083309, (98,34,0): 177, 93, 0, 0, 85, 110, 110, 40, 185, 1083409, (98,35,0): 179, 92, 0, 0, 82, 112, 112, 169, 71, 1083509, (98,36,0): 176, 85, 0, 0, 81, 109, 109, 67, 120, 1083609, (98,37,0): 172, 83, 0, 0, 83, 111, 111, 169, 120, 1083709, (98,38,0): 171, 83, 0, 0, 87, 111, 111, 96, 120, 1083809, (98,39,0): 172, 84, 0, 0, 88, 111, 111, 169, 55, 1083909, (98,40,0): 173, 88, 0, 0, 94, 111, 111, 96, 55, 1084009, (98,41,0): 173, 92, 0, 0, 94, 110, 110, 169, 55, 1084109, (98,42,0): 174, 99, 0, 0, 97, 109, 109, 96, 55, 1084209, (98,43,0): 178, 102, 0, 0, 99, 108, 108, 96, 55, 1084309, (98,44,0): 181, 110, 0, 0, 103, 106, 106, 96, 55, 1084409, (98,45,0): 182, 112, 0, 0, 105, 105, 105, 96, 55, 1084509, (98,46,0): 181, 120, 0, 0, 107, 104, 104, 161, 120, 1084609, (98,47,0): 177, 127, 0, 0, 105, 102, 102, 161, 6, 1084709, (98,48,0): 178, 135, 0, 0, 101, 107, 107, 169, 6, 1084809, (98,49,0): 181, 142, 0, 0, 113, 104, 104, 96, 213, 1084909, (99,0,0): 180, 110, 0, 0, 97, 135, 135, 140, 148, 1090009, (99,1,0): 180, 111, 0, 0, 97, 131, 131, 117, 54, 1090109, (99,2,0): 179, 111, 0, 0, 97, 129, 129, 140, 83, 1090209, (99,3,0): 179, 112, 0, 0, 97, 128, 128, 117, 238, 1090309, (99,4,0): 179, 111, 0, 0, 97, 127, 127, 117, 165, 1090409, (99,5,0): 179, 111, 0, 0, 97, 129, 129, 140, 23, 1090509, (99,6,0): 176, 111, 0, 0, 97, 129, 129, 139, 60, 1090609, (99,7,0): 174, 110, 0, 0, 97, 127, 127, 117, 71, 1090709, (99,8,0): 175, 110, 0, 0, 95, 127, 127, 245, 120, 1090809, (99,9,0): 174, 109, 0, 0, 96, 127, 127, 245, 119, 1090909, (99,10,0): 172, 109, 0, 0, 96, 126, 126, 245, 55, 1091009, (99,11,0): 171, 109, 0, 0, 97, 126, 126, 117, 201, 1091109, (99,12,0): 170, 104, 0, 0, 98, 124, 124, 245, 201, 1091209, (99,13,0): 170, 105, 0, 0, 99, 124, 124, 35, 201, 1091309, (99,14,0): 173, 105, 0, 0, 100, 124, 124, 139, 119, 1091409, (99,15,0): 173, 106, 0, 0, 100, 124, 124, 119, 119, 1091509, (99,16,0): 172, 107, 0, 0, 101, 124, 124, 254, 55, 1091609, (99,17,0): 170, 109, 0, 0, 102, 124, 124, 159, 55, 1091709, (99,18,0): 167, 110, 0, 0, 102, 124, 124, 166, 201, 1091809, (99,19,0): 168, 110, 0, 0, 103, 122, 122, 67, 201, 1091909, (99,20,0): 169, 114, 0, 0, 103, 122, 122, 132, 145, 1092009, (99,21,0): 169, 113, 0, 0, 102, 122, 122, 169, 120, 1092109, (99,22,0): 169, 113, 0, 0, 102, 122, 122, 132, 71, 1092209, (99,23,0): 170, 111, 0, 0, 102, 121, 121, 205, 153, 1092309, (99,24,0): 173, 109, 0, 0, 104, 119, 119, 132, 102, 1092409, (99,25,0): 175, 107, 0, 0, 104, 119, 119, 169, 120, 1092509, (99,26,0): 176, 105, 0, 0, 104, 117, 117, 205, 55, 1092609, (99,27,0): 176, 103, 0, 0, 104, 116, 116, 169, 145, 1092709, (99,28,0): 175, 99, 0, 0, 103, 113, 113, 169, 145, 1092809, (99,29,0): 174, 98, 0, 0, 101, 112, 112, 96, 55, 1092909, (99,30,0): 171, 96, 0, 0, 100, 112, 112, 96, 201, 1093009, (99,31,0): 169, 94, 0, 0, 99, 111, 111, 96, 55, 1093109, (99,32,0): 169, 93, 0, 0, 93, 109, 109, 169, 120, 1093209, (99,33,0): 171, 93, 0, 0, 90, 109, 109, 96, 120, 1093309, (99,34,0): 175, 93, 0, 0, 86, 108, 108, 96, 120, 1093409, (99,35,0): 177, 92, 0, 0, 82, 109, 109, 166, 120, 1093509, (99,36,0): 176, 84, 0, 0, 80, 108, 108, 96, 55, 1093609, (99,37,0): 172, 83, 0, 0, 80, 109, 109, 96, 120, 1093709, (99,38,0): 171, 83, 0, 0, 84, 109, 109, 169, 120, 1093809, (99,39,0): 171, 86, 0, 0, 85, 105, 105, 169, 120, 1093909, (99,40,0): 171, 91, 0, 0, 87, 109, 109, 169, 55, 1094009, (99,41,0): 171, 96, 0, 0, 89, 112, 112, 96, 120, 1094109, (99,42,0): 172, 104, 0, 0, 91, 111, 111, 169, 55, 1094209, (99,43,0): 175, 106, 0, 0, 93, 107, 107, 96, 145, 1094309, (99,44,0): 179, 116, 0, 0, 97, 103, 103, 169, 119, 1094409, (99,45,0): 180, 120, 0, 0, 100, 103, 103, 166, 55, 1094509, (99,46,0): 180, 128, 0, 0, 102, 104, 104, 42, 145, 1094609, (99,47,0): 178, 136, 0, 0, 102, 101, 101, 161, 71, 1094709, (99,48,0): 180, 144, 0, 0, 103, 105, 105, 96, 6, 1094809, (99,49,0): 182, 153, 0, 0, 111, 100, 100, 169, 154, 1094909 } } DATASET "4D int" { DATATYPE H5T_STD_I32LE DATASPACE SIMPLE { ( 5, 4, 3, 2 ) / ( 5, 4, 3, 2 ) } DATA { (0,0,0,0): 1111, 2111, (0,0,1,0): 1211, 2211, (0,0,2,0): 1311, 2311, (0,1,0,0): 1112, 2112, (0,1,1,0): 1212, 2212, (0,1,2,0): 1312, 2312, (0,2,0,0): 1113, 2113, (0,2,1,0): 1213, 2213, (0,2,2,0): 1313, 2313, (0,3,0,0): 1114, 2114, (0,3,1,0): 1214, 2214, (0,3,2,0): 1314, 2314, (1,0,0,0): 1121, 2121, (1,0,1,0): 1221, 2221, (1,0,2,0): 1321, 2321, (1,1,0,0): 1122, 2122, (1,1,1,0): 1222, 2222, (1,1,2,0): 1322, 2322, (1,2,0,0): 1123, 2123, (1,2,1,0): 1223, 2223, (1,2,2,0): 1323, 2323, (1,3,0,0): 1124, 2124, (1,3,1,0): 1224, 2224, (1,3,2,0): 1324, 2324, (2,0,0,0): 1131, 2131, (2,0,1,0): 1231, 2231, (2,0,2,0): 1331, 2331, (2,1,0,0): 1132, 2132, (2,1,1,0): 1232, 2232, (2,1,2,0): 1332, 2332, (2,2,0,0): 1133, 2133, (2,2,1,0): 1233, 2233, (2,2,2,0): 1333, 2333, (2,3,0,0): 1134, 2134, (2,3,1,0): 1234, 2234, (2,3,2,0): 1334, 2334, (3,0,0,0): 1141, 2141, (3,0,1,0): 1241, 2241, (3,0,2,0): 1341, 2341, (3,1,0,0): 1142, 2142, (3,1,1,0): 1242, 2242, (3,1,2,0): 1342, 2342, (3,2,0,0): 1143, 2143, (3,2,1,0): 1243, 2243, (3,2,2,0): 1343, 2343, (3,3,0,0): 1144, 2144, (3,3,1,0): 1244, 2244, (3,3,2,0): 1344, 2344, (4,0,0,0): 1151, 2151, (4,0,1,0): 1251, 2251, (4,0,2,0): 1351, 2351, (4,1,0,0): 1152, 2152, (4,1,1,0): 1252, 2252, (4,1,2,0): 1352, 2352, (4,2,0,0): 1153, 2153, (4,2,1,0): 1253, 2253, (4,2,2,0): 1353, 2353, (4,3,0,0): 1154, 2154, (4,3,1,0): 1254, 2254, (4,3,2,0): 1354, 2354 } } DATASET "ArrayOfStructures" { DATATYPE H5T_COMPOUND { H5T_STD_I32LE "a_name"; H5T_IEEE_F64LE "c_name"; H5T_IEEE_F32LE "b_name"; H5T_COMPOUND { H5T_STD_I32LE "a_name"; H5T_IEEE_F64LE "c_name"; } "nested_name"; } DATASPACE SIMPLE { ( 3, 10 ) / ( 3, 10 ) } DATA { (0,0): { 0, 1, 0, { 5, 6 } }, (0,1): { 1, 0.5, 1, { 6, 5.5 } }, (0,2): { 2, 0.333333, 4, { 7, 5.33333 } }, (0,3): { 3, 0.25, 9, { 8, 5.25 } }, (0,4): { 4, 0.2, 16, { 9, 5.2 } }, (0,5): { 5, 0.166667, 25, { 10, 5.16667 } }, (0,6): { 6, 0.142857, 36, { 11, 5.14286 } }, (0,7): { 7, 0.125, 49, { 12, 5.125 } }, (0,8): { 8, 0.111111, 64, { 13, 5.11111 } }, (0,9): { 9, 0.1, 81, { 14, 5.1 } }, (1,0): { 1001, 101, 100, { 100, 101 } }, (1,1): { 101, 100.5, 101, { 101, 100.5 } }, (1,2): { 102, 100.333, 104, { 102, 100.333 } }, (1,3): { 103, 100.25, 109, { 103, 100.25 } }, (1,4): { 104, 100.2, 116, { 104, 100.2 } }, (1,5): { 105, 100.167, 125, { 105, 100.167 } }, (1,6): { 106, 100.143, 136, { 106, 100.143 } }, (1,7): { 1077, 100.125, 149, { 107, 100.125 } }, (1,8): { 108, 100.111, 164, { 108, 100.111 } }, (1,9): { 109, 100.1, 181, { 109, 100.1 } }, (2,0): { 200, 201, 200, { 200, 201 } }, (2,1): { 201, 200.5, 201, { 201, 200.5 } }, (2,2): { 202, 200.333, 204, { 202, 200.333 } }, (2,3): { 203, 200.25, 209, { 203, 200.25 } }, (2,4): { 204, 200.2, 216, { 204, 200.2 } }, (2,5): { 205, 200.167, 225, { 205, 200.167 } }, (2,6): { 206, 200.143, 236, { 206, 200.143 } }, (2,7): { 207, 200.125, 249, { 207, 200.125 } }, (2,8): { 208, 200.111, 264, { 208, 200.111 } }, (2,9): { 209, 200.1, 281, { 209, 200.1 } } } } DATASET "Vdata with mixed types" { DATATYPE H5T_COMPOUND { H5T_STRING { STRSIZE 1; STRPAD H5T_STR_SPACEPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } "Character"; H5T_STD_I16LE "Short"; H5T_STD_I32LE "Integer"; H5T_IEEE_F32LE "Float"; H5T_STRING { STRSIZE 10; STRPAD H5T_STR_SPACEPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } "String"; H5T_ARRAY { [4] H5T_STD_I32LE } "Integer Array"; H5T_ARRAY { [20] H5T_IEEE_F32LE } "Float Array"; } DATASPACE SIMPLE { ( 20 ) / ( 20 ) } DATA { (0): { "R", 1000, 2, 0.374556, "VMWDAINBXQ", [ 0, 10, 20, 30 ], [ 30.0837, 10.404, 66.3738, 26.4793, 77.4232, 96.519, 84.8051, 80.3778, 56.8477, 40.5213, 77.508, 57.9908, 9.62127, 94.099, 38.0286, 12.9208, 93.9288, 98.7271, 9.92144, 51.7688 ] }, (1): { "J", 1, 1, 0.316108, "YFOAIISPPS", [ 0, 10, 20, 30 ], [ 73.8913, 9.29874, 6.09433, 33.9746, 37.7019, 4.23074, 91.1563, 81.1611, 58.2019, 25.6221, 39.5449, 8.69502, 93.9765, 78.1241, 70.6537, 21.3385, 98.5424, 4.37773, 66.1916, 23.991 ] }, (2): { "R", 1000, 2, 0.374556, "VMWDAINBXQ", [ 0, 10, 20, 30 ], [ 80.0461, 71.0885, 18.7268, 99.135, 96.4083, 93.1787, 35.2093, 87.1636, 43.7302, 7.1328, 0.111539, 91.2331, 82.4, 15.1011, 47.1637, 90.3444, 67.092, 87.1714, 33.5032, 23.8669 ] }, (3): { "P", 3, 3, 0.663311, "UUFCPHJPIU", [ 0, 10, 20, 30 ], [ 88.8437, 43.3734, 92.9549, 73.4016, 28.0961, 8.36364, 78.548, 28.4777, 94.1694, 8.52332, 41.0323, 76.4964, 84.9579, 91.2114, 75.2157, 35.2317, 39.9027, 72.4795, 60.753, 70.2112 ] }, (4): { "J", 1, 1, 0.316108, "YFOAIISPPS", [ 0, 10, 20, 30 ], [ 56.2879, 34.9845, 97.6781, 83.4171, 20.1093, 80.9319, 60.2496, 55.8201, 53.6452, 83.4642, 28.6685, 26.8137, 91.7189, 98.5329, 76.3128, 71.4341, 32.431, 11.406, 74.7583, 41.0738 ] }, (5): { "R", 1000, 2, 0.374556, "VMWDAINBXQ", [ 0, 10, 20, 30 ], [ 29.1874, 51.2373, 33.6721, 5.34248, 25.8049, 66.5539, 76.6706, 67.9729, 61.019, 57.3305, 21.8287, 76.517, 82.2265, 79.6684, 21.8397, 48.2176, 22.8627, 28.5417, 44.4178, 60.5559 ] }, (6): { "H", 6, 6, 0.909974, "HFFPQKLLBN", [ 0, 10, 20, 30 ], [ 45.2545, 54.1864, 10.2484, 64.1733, 42.7754, 8.80352, 86.231, 64.2252, 6.23606, 93.7056, 4.67892, 37.5084, 59.9714, 97.3752, 94.0975, 7.37182, 64.7106, 94.7182, 69.8714, 10.6265 ] }, (7): { "V", 7, 7, 0.594355, "BYAKSOSDJR", [ 0, 10, 20, 30 ], [ 58.202, 47.8787, 46.915, 58.0562, 16.0717, 27.5365, 39.2003, 21.8146, 11.6732, 85.8851, 44.6529, 29.8265, 11.865, 29.1935, 72.3389, 66.9012, 24.412, 24.7613, 96.6601, 67.9389 ] }, (8): { "G", 8, 8, 2.85295, "EDXVUWHYMJ", [ 0, 10, 20, 30 ], [ 87.841, 88.6076, 0.0364856, 7.60511, 66.4255, 32.2699, 32.4822, 98.3684, 38.486, 73.3811, 75.362, 37.2124, 92.7111, 87.0757, 43.8035, 29.7166, 43.9264, 0.245378, 54.8867, 65.647 ] }, (9): { "X", 9, 9, 3.49708, "YHXRDCHXXW", [ 0, 10, 20, 30 ], [ 95.1789, 20.1668, 14.4938, 30.218, 43.4722, 60.5604, 89.3996, 59.3451, 17.9572, 83.4255, 4.5055, 87.6766, 34.6792, 62.015, 39.7529, 17.3269, 28.3333, 17.2473, 23.3757, 80.2217 ] }, (10): { "O", 10, 10, 6.68558, "VHBKFUCHYA", [ 0, 10, 20, 30 ], [ 82.5166, 34.1046, 0.344755, 39.3928, 3.97333, 41.3837, 64.4805, 30.4757, 7.84354, 97.4744, 46.7808, 59.0651, 81.777, 93.6743, 96.5058, 28.5298, 58.4297, 59.0998, 18.8333, 43.2673 ] }, (11): { "K", 11, 11, 5.60173, "HYIVATPBSR", [ 0, 10, 20, 30 ], [ 18.5465, 54.9772, 34.4842, 69.0444, 15.0394, 83.5133, 73.2421, 75.2055, 73.7239, 42.7117, 81.7934, 9.62597, 49.3228, 65.0155, 41.4733, 23.104, 28.3277, 94.1462, 10.0078, 78.3381 ] }, (12): { "W", 12, 12, 0.682834, "NBPNVGDKXW", [ 0, 10, 20, 30 ], [ 88.4501, 50.603, 87.3039, 22.8204, 82.3524, 88.8991, 46.977, 97.1349, 95.347, 8.55315, 36.9674, 33.5756, 8.41847, 21.9279, 4.19385, 30.4999, 8.05241, 98.4936, 56.8496, 62.7544 ] }, (13): { "N", 13, 13, 7.15262, "XESPFUJSIB", [ 0, 10, 20, 30 ], [ 68.9955, 67.3164, 74.353, 48.4182, 3.38854, 91.0469, 12.5375, 67.4612, 97.9788, 88.1503, 95.4551, 41.6651, 95.4221, 17.8573, 52.3686, 83.5315, 31.1393, 3.76701, 74.6716, 14.4194 ] }, (14): { "G", 14, 14, 11.6063, "DNYQCELJWH", [ 0, 10, 20, 30 ], [ 28.635, 90.2218, 32.9979, 36.9007, 45.6409, 18.3966, 97.1215, 77.42, 8.75012, 44.8943, 29.0478, 66.747, 46.4205, 83.4352, 52.8963, 77.0676, 7.23224, 69.8635, 23.309, 3.63526 ] }, (15): { "K", 15, 15, 1.3986, "EFUJJIOIXJ", [ 0, 10, 20, 30 ], [ 52.6031, 28.4471, 24.0828, 47.0134, 49.8422, 82.7018, 58.0569, 15.7265, 38.0047, 3.91992, 56.0855, 94.3413, 56.7017, 21.1071, 57.9089, 51.7231, 59.6806, 82.7058, 21.2796, 89.9196 ] }, (16): { "C", 16, 16, 14.5839, "TISOMDQKSK", [ 0, 10, 20, 30 ], [ 93.0138, 25.3984, 58.5893, 54.5003, 58.187, 92.4082, 37.5874, 71.0168, 85.6464, 68.6092, 24.3672, 18.2021, 65.2282, 24.7622, 15.8062, 2.55066, 88.1376, 76.9964, 84.9441, 83.8219 ] }, (17): { "G", 17, 17, 8.16012, "FEOQLUHOBF", [ 0, 10, 20, 30 ], [ 43.9587, 94.013, 49.2971, 26.4204, 67.5551, 91.0327, 42.6573, 59.2898, 72.4873, 62.0957, 19.0611, 20.8838, 64.1089, 24.3613, 7.29136, 12.732, 56.1572, 83.9713, 92.6662, 33.7401 ] }, (18): { "M", 18, 18, 2.36419, "ELUVBBDLKU", [ 0, 10, 20, 30 ], [ 41.6039, 77.0141, 87.4438, 20.4644, 7.73342, 20.5423, 49.6968, 76.3478, 96.5948, 93.7681, 95.6147, 79.3079, 33.0723, 55.5668, 6.40584, 12.2693, 3.79256, 4.15392, 73.9725, 37.7365 ] }, (19): { "A", 19, 19, 1.77123, "UYJHGABBAY", [ 0, 10, 20, 30 ], [ 89.2886, 32.164, 44.3853, 9.27068, 44.6393, 9.73293, 34.4071, 75.2387, 14.6397, 50.7744, 37.6648, 95.3288, 98.9388, 54.3708, 66.5647, 61.6765, 85.193, 5.10925, 23.713, 80.3547 ] } } ATTRIBUTE "HDF4_OBJECT_NAME" { DATATYPE H5T_STRING { STRSIZE 22; STRPAD H5T_STR_SPACEPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SCALAR DATA { (0): "Vdata with mixed types" } } ATTRIBUTE "HDF4_OBJECT_TYPE" { DATATYPE H5T_STRING { STRSIZE 5; STRPAD H5T_STR_SPACEPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SCALAR DATA { (0): "Vdata" } } ATTRIBUTE "HDF4_REF_NUM" { DATATYPE H5T_STD_U16BE DATASPACE SCALAR DATA { (0): 46 } } } } GROUP "datatypes" { DATATYPE "H5T_NATIVE_INT" H5T_STD_I32LE; } GROUP "images" { DATASET "3D THG" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 8, 72, 144 ) / ( 8, 72, 144 ) } DATA { (0,0,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,0,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,1,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,2,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,3,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,4,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,5,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,6,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,7,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,8,0): 253, 248, 248, 254, 253, 253, 255, 248, 254, 253, 253, 252, (0,8,12): 252, 250, 251, 251, 251, 254, 253, 252, 251, 248, 254, (0,8,23): 252, 252, 252, 249, 253, 254, 252, 254, 251, 252, 253, (0,8,34): 252, 249, 250, 249, 249, 247, 252, 254, 245, 255, 245, (0,8,45): 253, 245, 252, 255, 255, 255, 245, 255, 255, 246, 252, (0,8,56): 252, 253, 254, 255, 254, 250, 253, 248, 252, 252, 252, (0,8,67): 252, 252, 252, 252, 252, 250, 254, 249, 249, 253, 251, (0,8,78): 246, 252, 255, 254, 251, 250, 253, 251, 251, 255, 247, (0,8,89): 254, 255, 251, 249, 248, 253, 252, 252, 252, 252, 252, (0,8,100): 252, 252, 252, 252, 255, 253, 255, 255, 255, 255, 250, (0,8,111): 252, 253, 255, 250, 253, 249, 252, 253, 255, 252, 251, (0,8,122): 254, 252, 255, 255, 255, 255, 255, 255, 255, 255, 255, (0,8,133): 255, 254, 247, 250, 255, 255, 252, 249, 247, 255, 255, (0,9,0): 255, 249, 254, 255, 251, 250, 255, 252, 251, 252, 249, 254, (0,9,12): 252, 255, 252, 252, 253, 252, 253, 253, 255, 253, 254, (0,9,23): 252, 253, 252, 251, 255, 253, 249, 251, 254, 255, 255, (0,9,34): 253, 255, 254, 255, 254, 255, 255, 251, 252, 255, 251, (0,9,45): 251, 248, 255, 247, 249, 253, 248, 249, 251, 249, 247, (0,9,56): 254, 248, 249, 255, 250, 255, 251, 254, 252, 252, 252, (0,9,67): 252, 252, 252, 252, 252, 255, 248, 251, 255, 253, 253, (0,9,78): 254, 255, 250, 249, 250, 251, 251, 253, 255, 251, 250, (0,9,89): 255, 255, 249, 248, 253, 251, 250, 252, 252, 252, 252, (0,9,100): 252, 252, 252, 252, 250, 248, 243, 246, 246, 254, 253, (0,9,111): 249, 246, 252, 252, 252, 254, 248, 254, 248, 252, 249, (0,9,122): 251, 249, 251, 248, 248, 244, 242, 247, 248, 246, 252, (0,9,133): 245, 248, 250, 254, 255, 250, 249, 247, 255, 255, 248, (0,10,0): 254, 244, 250, 253, 248, 243, 250, 251, 251, 250, 253, (0,10,11): 249, 255, 251, 253, 251, 255, 252, 253, 251, 254, 255, (0,10,22): 255, 255, 249, 253, 255, 250, 251, 255, 255, 252, 247, (0,10,33): 245, 251, 247, 252, 248, 251, 250, 245, 253, 246, 255, (0,10,44): 250, 250, 250, 255, 253, 248, 253, 248, 252, 255, 255, (0,10,55): 255, 250, 248, 250, 249, 242, 252, 251, 247, 252, 252, (0,10,66): 252, 252, 252, 252, 252, 252, 255, 247, 249, 255, 249, (0,10,77): 251, 253, 243, 255, 253, 255, 255, 254, 250, 251, 250, (0,10,88): 255, 247, 252, 254, 253, 253, 249, 255, 252, 252, 252, (0,10,99): 252, 252, 252, 252, 252, 250, 250, 250, 255, 250, 251, (0,10,110): 246, 255, 250, 255, 251, 254, 240, 244, 220, 208, 219, (0,10,121): 209, 201, 198, 200, 206, 226, 228, 229, 231, 255, 254, (0,10,132): 251, 255, 254, 251, 252, 245, 248, 253, 255, 245, 245, (0,10,143): 255, (0,11,0): 249, 252, 255, 255, 255, 253, 251, 249, 250, 254, 252, (0,11,11): 255, 253, 255, 255, 255, 244, 245, 251, 247, 251, 251, (0,11,22): 250, 252, 252, 249, 251, 252, 253, 251, 249, 254, 246, (0,11,33): 252, 251, 252, 247, 255, 253, 254, 253, 254, 244, 252, (0,11,44): 255, 251, 247, 255, 255, 253, 255, 255, 253, 245, 250, (0,11,55): 249, 248, 255, 255, 249, 255, 252, 254, 254, 252, 252, (0,11,66): 252, 252, 252, 252, 252, 252, 251, 254, 239, 255, 255, (0,11,77): 248, 254, 255, 225, 219, 215, 217, 214, 215, 230, 255, (0,11,88): 255, 249, 246, 254, 254, 255, 249, 252, 252, 252, 252, (0,11,99): 252, 252, 252, 252, 252, 253, 255, 255, 252, 251, 253, (0,11,110): 250, 247, 248, 242, 217, 193, 189, 182, 194, 184, 185, (0,11,121): 183, 184, 188, 182, 177, 188, 183, 173, 187, 188, 199, (0,11,132): 196, 239, 255, 248, 249, 249, 255, 252, 254, 254, 249, (0,11,143): 251, (0,12,0): 248, 252, 253, 243, 247, 255, 254, 248, 255, 251, 252, (0,12,11): 240, 244, 239, 243, 243, 251, 250, 246, 231, 229, 230, (0,12,22): 232, 234, 233, 236, 230, 216, 210, 214, 215, 218, 232, (0,12,33): 228, 226, 209, 211, 208, 213, 209, 208, 223, 255, 249, (0,12,44): 253, 251, 250, 253, 241, 241, 214, 200, 195, 179, 181, (0,12,55): 190, 187, 200, 205, 255, 241, 248, 252, 255, 252, 252, (0,12,66): 252, 252, 252, 252, 252, 252, 255, 250, 246, 255, 253, (0,12,77): 247, 215, 173, 177, 183, 187, 188, 183, 178, 174, 186, (0,12,88): 214, 248, 250, 253, 254, 255, 252, 252, 252, 252, 252, (0,12,99): 252, 252, 252, 252, 252, 254, 253, 253, 251, 248, 247, (0,12,110): 252, 213, 175, 190, 194, 201, 198, 221, 224, 240, 248, (0,12,121): 250, 255, 255, 251, 243, 249, 243, 242, 220, 201, 194, (0,12,132): 173, 178, 177, 224, 233, 255, 249, 254, 247, 250, 253, (0,12,143): 252, (0,13,0): 238, 255, 252, 255, 210, 165, 188, 184, 180, 185, 182, (0,13,11): 189, 187, 191, 181, 181, 180, 183, 183, 179, 185, 187, (0,13,22): 186, 184, 185, 186, 186, 193, 197, 191, 186, 185, 176, (0,13,33): 178, 179, 190, 186, 187, 181, 183, 178, 171, 199, 243, (0,13,44): 255, 250, 250, 251, 239, 167, 167, 189, 196, 198, 207, (0,13,55): 202, 196, 194, 169, 191, 249, 255, 254, 253, 252, 252, (0,13,66): 252, 252, 252, 252, 252, 252, 255, 254, 247, 250, 249, (0,13,77): 219, 169, 190, 218, 228, 238, 240, 232, 237, 219, 203, (0,13,88): 174, 246, 251, 254, 254, 254, 246, 254, 252, 252, 252, (0,13,99): 252, 252, 252, 252, 252, 248, 246, 248, 251, 251, 212, (0,13,110): 187, 187, 186, 215, 238, 252, 255, 249, 253, 246, 250, (0,13,121): 250, 251, 252, 249, 246, 252, 245, 250, 252, 251, 254, (0,13,132): 249, 221, 190, 172, 163, 212, 255, 250, 254, 253, 252, (0,13,143): 255, (0,14,0): 255, 255, 255, 218, 169, 200, 207, 205, 203, 203, 203, (0,14,11): 201, 211, 211, 213, 213, 211, 214, 212, 213, 221, 220, (0,14,22): 221, 220, 219, 224, 218, 223, 232, 233, 237, 231, 236, (0,14,33): 232, 236, 239, 245, 241, 244, 246, 240, 239, 189, 255, (0,14,44): 253, 250, 255, 253, 212, 188, 249, 248, 248, 255, 255, (0,14,55): 249, 255, 255, 236, 197, 253, 255, 251, 245, 252, 252, (0,14,66): 252, 252, 252, 252, 252, 252, 251, 255, 247, 247, 250, (0,14,77): 229, 202, 255, 251, 249, 252, 255, 251, 255, 248, 239, (0,14,88): 198, 248, 245, 252, 255, 255, 245, 255, 252, 252, 252, (0,14,99): 252, 252, 252, 252, 252, 255, 252, 236, 211, 178, 186, (0,14,110): 217, 250, 246, 250, 249, 251, 242, 251, 246, 248, 254, (0,14,121): 254, 255, 253, 253, 252, 255, 253, 255, 244, 251, 248, (0,14,132): 255, 255, 253, 235, 218, 177, 164, 255, 249, 250, 255, (0,14,143): 251, (0,15,0): 255, 251, 251, 210, 186, 253, 252, 250, 250, 254, 251, (0,15,11): 252, 255, 254, 249, 251, 253, 255, 250, 252, 255, 249, (0,15,22): 251, 252, 247, 254, 247, 253, 254, 248, 255, 255, 253, (0,15,33): 253, 250, 253, 253, 252, 250, 250, 248, 255, 186, 249, (0,15,44): 254, 253, 255, 253, 205, 216, 255, 247, 255, 246, 250, (0,15,55): 254, 248, 245, 254, 192, 243, 255, 255, 249, 252, 252, (0,15,66): 252, 252, 252, 252, 252, 252, 243, 255, 252, 255, 253, (0,15,77): 216, 199, 252, 255, 248, 243, 252, 253, 252, 245, 255, (0,15,88): 219, 246, 249, 255, 247, 252, 246, 255, 252, 252, 252, (0,15,99): 252, 252, 252, 252, 252, 246, 251, 170, 185, 215, 245, (0,15,110): 255, 242, 249, 251, 253, 255, 250, 255, 255, 252, 246, (0,15,121): 251, 255, 252, 251, 251, 255, 254, 254, 255, 249, 250, (0,15,132): 247, 251, 254, 249, 247, 239, 200, 179, 255, 244, 247, (0,15,143): 252, (0,16,0): 255, 244, 255, 206, 215, 240, 250, 255, 252, 249, 250, (0,16,11): 248, 251, 249, 252, 250, 249, 252, 250, 249, 251, 251, (0,16,22): 252, 249, 253, 250, 255, 250, 252, 255, 245, 255, 255, (0,16,33): 251, 253, 254, 248, 255, 252, 247, 255, 254, 210, 229, (0,16,44): 255, 255, 255, 254, 193, 215, 230, 255, 254, 253, 251, (0,16,55): 249, 255, 251, 253, 194, 250, 254, 253, 250, 252, 252, (0,16,66): 252, 252, 252, 252, 252, 252, 250, 255, 251, 251, 245, (0,16,77): 212, 204, 246, 247, 255, 251, 255, 254, 249, 251, 247, (0,16,88): 214, 241, 249, 251, 255, 247, 252, 252, 254, 247, 253, (0,16,99): 255, 243, 254, 249, 252, 218, 173, 197, 235, 248, 249, (0,16,110): 249, 252, 252, 253, 255, 253, 254, 249, 252, 255, 255, (0,16,121): 255, 251, 254, 255, 254, 251, 251, 248, 253, 247, 243, (0,16,132): 251, 252, 239, 241, 245, 241, 244, 195, 251, 255, 251, (0,16,143): 245, (0,17,0): 249, 252, 245, 197, 214, 242, 246, 255, 255, 254, 255, (0,17,11): 255, 255, 255, 255, 255, 248, 254, 254, 255, 253, 250, (0,17,22): 252, 254, 254, 249, 251, 251, 246, 255, 245, 255, 247, (0,17,33): 247, 247, 248, 245, 248, 248, 253, 252, 247, 227, 222, (0,17,44): 246, 239, 250, 245, 200, 230, 239, 249, 236, 247, 255, (0,17,55): 250, 253, 252, 251, 193, 243, 253, 252, 248, 252, 252, (0,17,66): 252, 252, 252, 252, 252, 252, 252, 255, 251, 251, 242, (0,17,77): 212, 201, 245, 241, 245, 237, 244, 245, 251, 255, 254, (0,17,88): 212, 234, 250, 251, 255, 249, 252, 252, 252, 245, 255, (0,17,99): 245, 255, 250, 255, 213, 173, 182, 239, 255, 255, 255, (0,17,110): 253, 255, 253, 253, 252, 249, 251, 250, 248, 247, 245, (0,17,121): 250, 253, 254, 250, 246, 249, 255, 255, 253, 255, 245, (0,17,132): 237, 248, 251, 255, 240, 253, 255, 190, 247, 255, 249, (0,17,143): 252, (0,18,0): 253, 251, 255, 191, 214, 248, 239, 238, 242, 243, 243, (0,18,11): 243, 241, 244, 243, 241, 245, 252, 250, 246, 246, 245, (0,18,22): 246, 245, 242, 237, 239, 244, 234, 247, 236, 238, 240, (0,18,33): 243, 242, 243, 242, 243, 240, 251, 254, 254, 218, 216, (0,18,44): 241, 248, 255, 233, 199, 226, 243, 251, 242, 241, 246, (0,18,55): 246, 250, 253, 252, 193, 236, 251, 254, 248, 252, 252, (0,18,66): 252, 252, 252, 252, 252, 252, 251, 254, 250, 250, 237, (0,18,77): 211, 197, 244, 242, 241, 239, 237, 243, 251, 255, 251, (0,18,88): 209, 227, 250, 251, 254, 251, 251, 252, 254, 249, 253, (0,18,99): 246, 254, 255, 198, 184, 221, 248, 255, 254, 245, 241, (0,18,110): 255, 248, 255, 246, 243, 242, 241, 242, 248, 248, 252, (0,18,121): 250, 243, 248, 249, 252, 249, 251, 255, 255, 248, 251, (0,18,132): 251, 246, 246, 238, 247, 255, 254, 198, 237, 255, 253, (0,18,143): 251, (0,19,0): 255, 252, 236, 195, 226, 248, 238, 251, 246, 247, 245, (0,19,11): 247, 245, 249, 246, 248, 250, 250, 243, 241, 245, 244, (0,19,22): 242, 238, 248, 254, 255, 255, 247, 254, 250, 246, 251, (0,19,33): 253, 251, 253, 253, 251, 244, 252, 248, 255, 204, 228, (0,19,44): 241, 255, 249, 237, 183, 213, 237, 239, 237, 240, 242, (0,19,55): 242, 250, 253, 252, 195, 234, 250, 255, 250, 252, 252, (0,19,66): 252, 252, 252, 252, 252, 252, 251, 255, 252, 252, 235, (0,19,77): 209, 196, 245, 240, 242, 246, 239, 250, 253, 255, 246, (0,19,88): 205, 226, 247, 250, 254, 250, 252, 252, 245, 255, 254, (0,19,99): 250, 243, 200, 167, 214, 243, 255, 255, 245, 245, 248, (0,19,110): 254, 248, 243, 238, 245, 250, 251, 252, 255, 249, 251, (0,19,121): 251, 240, 237, 227, 236, 242, 255, 247, 248, 252, 253, (0,19,132): 252, 252, 252, 255, 253, 251, 250, 214, 221, 251, 254, (0,19,143): 254, (0,20,0): 255, 245, 225, 214, 211, 251, 240, 246, 245, 246, 250, (0,20,11): 254, 255, 252, 250, 252, 255, 248, 245, 252, 253, 249, (0,20,22): 249, 251, 242, 246, 255, 253, 252, 253, 255, 253, 255, (0,20,33): 253, 253, 255, 251, 247, 240, 242, 253, 255, 180, 236, (0,20,44): 252, 246, 253, 237, 192, 220, 243, 242, 240, 239, 241, (0,20,55): 246, 250, 251, 253, 200, 236, 247, 255, 252, 252, 252, (0,20,66): 252, 252, 252, 252, 252, 252, 251, 255, 251, 250, 234, (0,20,77): 207, 194, 241, 241, 238, 245, 237, 247, 250, 254, 248, (0,20,88): 201, 229, 244, 249, 255, 248, 252, 252, 251, 252, 251, (0,20,99): 251, 240, 180, 210, 254, 250, 249, 252, 248, 253, 253, (0,20,110): 250, 243, 238, 240, 237, 241, 253, 237, 209, 199, 168, (0,20,121): 169, 164, 168, 170, 174, 167, 166, 184, 190, 225, 253, (0,20,132): 253, 253, 255, 248, 255, 255, 247, 208, 222, 250, 243, (0,20,143): 255, (0,21,0): 250, 238, 237, 213, 181, 239, 255, 249, 255, 252, 251, (0,21,11): 250, 252, 248, 252, 255, 255, 255, 255, 254, 243, 236, (0,21,22): 241, 241, 246, 244, 255, 255, 251, 242, 253, 251, 254, (0,21,33): 250, 251, 255, 249, 247, 245, 247, 242, 219, 202, 229, (0,21,44): 241, 255, 234, 229, 188, 217, 242, 246, 241, 237, 238, (0,21,55): 246, 253, 248, 253, 200, 240, 245, 255, 251, 252, 252, (0,21,66): 252, 252, 252, 252, 252, 252, 251, 253, 249, 248, 237, (0,21,77): 206, 199, 242, 241, 236, 240, 235, 246, 248, 253, 247, (0,21,88): 200, 231, 243, 249, 255, 247, 252, 252, 250, 255, 247, (0,21,99): 255, 201, 183, 246, 248, 255, 255, 251, 254, 253, 243, (0,21,110): 244, 230, 246, 251, 248, 212, 173, 160, 168, 163, 175, (0,21,121): 176, 175, 171, 171, 174, 177, 182, 170, 176, 177, 182, (0,21,132): 195, 224, 255, 253, 250, 248, 255, 209, 219, 240, 252, (0,21,143): 249, (0,22,0): 255, 255, 239, 216, 193, 186, 200, 201, 201, 197, 203, (0,22,11): 199, 204, 193, 194, 191, 174, 192, 223, 247, 246, 238, (0,22,22): 239, 234, 246, 247, 254, 254, 198, 166, 168, 170, 166, (0,22,33): 162, 165, 170, 167, 169, 169, 174, 180, 190, 224, 234, (0,22,44): 237, 253, 238, 234, 183, 223, 243, 241, 234, 239, 241, (0,22,55): 239, 254, 246, 253, 198, 240, 242, 255, 250, 252, 252, (0,22,66): 252, 252, 252, 252, 252, 252, 250, 255, 251, 248, 239, (0,22,77): 203, 203, 243, 241, 238, 238, 236, 245, 251, 255, 249, (0,22,88): 201, 228, 245, 250, 255, 248, 252, 252, 251, 249, 255, (0,22,99): 213, 182, 218, 252, 255, 255, 249, 254, 244, 238, 237, (0,22,110): 236, 240, 254, 219, 179, 166, 180, 173, 173, 190, 182, (0,22,121): 190, 199, 195, 199, 191, 188, 185, 185, 176, 179, 173, (0,22,132): 169, 169, 177, 213, 255, 255, 250, 184, 228, 250, 253, (0,22,143): 255, (0,23,0): 247, 245, 229, 218, 212, 189, 169, 173, 174, 171, 172, (0,23,11): 162, 172, 162, 167, 167, 168, 170, 200, 241, 244, 230, (0,23,22): 237, 246, 248, 249, 251, 255, 195, 172, 170, 167, 176, (0,23,33): 174, 172, 173, 172, 173, 170, 174, 184, 196, 219, 236, (0,23,44): 249, 247, 243, 229, 187, 218, 235, 247, 241, 241, 242, (0,23,55): 244, 255, 246, 255, 195, 240, 242, 255, 250, 252, 252, (0,23,66): 252, 252, 252, 252, 252, 252, 248, 255, 253, 245, 235, (0,23,77): 191, 198, 238, 244, 243, 239, 236, 241, 250, 255, 250, (0,23,88): 203, 224, 248, 251, 254, 251, 252, 252, 253, 251, 255, (0,23,99): 161, 200, 236, 245, 255, 245, 248, 239, 240, 238, 233, (0,23,110): 246, 245, 192, 181, 180, 179, 183, 195, 209, 208, 214, (0,23,121): 215, 221, 211, 218, 211, 214, 211, 205, 203, 202, 186, (0,23,132): 173, 176, 175, 169, 180, 204, 243, 203, 222, 243, 252, (0,23,143): 255, (0,24,0): 251, 251, 247, 227, 211, 199, 186, 188, 181, 188, 190, (0,24,11): 188, 189, 186, 182, 181, 180, 166, 208, 238, 237, 242, (0,24,22): 232, 238, 238, 251, 245, 255, 201, 181, 186, 191, 187, (0,24,33): 196, 196, 190, 193, 197, 196, 195, 205, 217, 228, 245, (0,24,44): 250, 252, 244, 235, 188, 215, 236, 237, 238, 234, 239, (0,24,55): 241, 252, 249, 255, 194, 236, 254, 255, 255, 255, 255, (0,24,66): 254, 255, 254, 252, 255, 250, 255, 255, 248, 249, 240, (0,24,77): 193, 204, 244, 233, 236, 240, 232, 234, 253, 253, 253, (0,24,88): 203, 230, 243, 252, 255, 249, 251, 253, 247, 242, 222, (0,24,99): 178, 221, 247, 249, 243, 255, 221, 234, 244, 243, 242, (0,24,110): 233, 207, 151, 186, 191, 200, 202, 217, 221, 231, 231, (0,24,121): 234, 237, 235, 237, 236, 230, 234, 227, 219, 221, 211, (0,24,132): 204, 195, 192, 178, 183, 181, 169, 217, 239, 240, 253, (0,24,143): 251, (0,25,0): 253, 254, 251, 236, 226, 218, 206, 206, 202, 204, 203, (0,25,11): 202, 204, 205, 205, 204, 195, 182, 214, 238, 236, 240, (0,25,22): 232, 237, 238, 253, 249, 253, 202, 197, 206, 209, 215, (0,25,33): 213, 212, 215, 217, 212, 212, 220, 227, 235, 240, 251, (0,25,44): 252, 253, 245, 234, 188, 215, 236, 236, 238, 234, 240, (0,25,55): 240, 252, 251, 254, 198, 235, 251, 248, 251, 251, 251, (0,25,66): 250, 249, 248, 248, 251, 250, 245, 251, 248, 249, 234, (0,25,77): 197, 212, 236, 233, 234, 240, 234, 236, 254, 255, 255, (0,25,88): 201, 229, 243, 251, 255, 249, 252, 253, 252, 255, 159, (0,25,99): 209, 233, 245, 240, 239, 230, 239, 241, 243, 235, 247, (0,25,110): 215, 181, 185, 205, 206, 220, 222, 236, 242, 249, 248, (0,25,121): 245, 251, 251, 247, 249, 248, 247, 244, 237, 237, 227, (0,25,132): 222, 212, 210, 197, 199, 201, 206, 227, 237, 248, 251, (0,25,143): 255, (0,26,0): 252, 252, 252, 244, 240, 237, 228, 228, 228, 227, 228, (0,26,11): 228, 229, 230, 226, 220, 212, 184, 203, 235, 239, 239, (0,26,22): 232, 239, 238, 253, 250, 253, 205, 216, 227, 231, 233, (0,26,33): 235, 234, 234, 235, 234, 234, 237, 244, 247, 248, 252, (0,26,44): 251, 251, 245, 234, 187, 213, 237, 236, 235, 234, 241, (0,26,55): 240, 255, 249, 249, 194, 230, 249, 247, 248, 253, 252, (0,26,66): 253, 253, 252, 252, 252, 251, 251, 254, 249, 255, 245, (0,26,77): 198, 205, 240, 239, 237, 242, 233, 235, 250, 251, 252, (0,26,88): 201, 228, 245, 251, 255, 249, 252, 253, 247, 211, 178, (0,26,99): 230, 238, 243, 236, 231, 229, 244, 238, 238, 247, 231, (0,26,110): 190, 188, 209, 215, 222, 239, 242, 247, 252, 253, 253, (0,26,121): 250, 254, 254, 251, 253, 253, 252, 253, 250, 251, 244, (0,26,132): 242, 233, 229, 219, 217, 215, 223, 230, 238, 254, 248, (0,26,143): 251, (0,27,0): 251, 252, 253, 250, 251, 251, 245, 245, 246, 243, 244, (0,27,11): 245, 244, 246, 244, 237, 227, 191, 200, 236, 240, 238, (0,27,22): 233, 239, 239, 249, 250, 255, 206, 226, 239, 246, 245, (0,27,33): 254, 254, 249, 250, 255, 254, 250, 251, 252, 251, 252, (0,27,44): 252, 252, 248, 235, 189, 211, 235, 235, 235, 231, 239, (0,27,55): 239, 250, 246, 254, 201, 240, 255, 255, 254, 252, 249, (0,27,66): 252, 252, 253, 255, 252, 252, 246, 255, 248, 241, 234, (0,27,77): 193, 198, 229, 237, 233, 240, 231, 234, 247, 252, 254, (0,27,88): 203, 230, 248, 252, 255, 248, 251, 252, 255, 187, 208, (0,27,99): 236, 237, 235, 246, 229, 236, 243, 243, 235, 243, 185, (0,27,110): 168, 209, 215, 225, 239, 251, 254, 250, 253, 250, 251, (0,27,121): 253, 251, 250, 253, 253, 250, 253, 251, 252, 254, 251, (0,27,132): 252, 247, 243, 237, 230, 233, 235, 246, 250, 254, 253, (0,27,143): 255, (0,28,0): 251, 252, 253, 252, 253, 253, 251, 252, 252, 250, 252, (0,28,11): 253, 250, 252, 251, 243, 229, 197, 206, 236, 231, 236, (0,28,22): 235, 234, 238, 250, 251, 253, 203, 231, 242, 251, 250, (0,28,33): 251, 252, 253, 254, 253, 252, 253, 252, 253, 252, 252, (0,28,44): 251, 252, 247, 231, 192, 212, 235, 237, 235, 228, 235, (0,28,55): 236, 252, 251, 253, 188, 235, 246, 253, 254, 253, 252, (0,28,66): 253, 252, 252, 253, 254, 255, 255, 253, 250, 250, 233, (0,28,77): 194, 205, 233, 235, 231, 239, 229, 233, 245, 251, 252, (0,28,88): 200, 225, 247, 251, 255, 250, 254, 254, 244, 171, 224, (0,28,99): 231, 236, 236, 233, 235, 234, 240, 244, 244, 229, 197, (0,28,110): 202, 226, 227, 239, 251, 253, 255, 251, 254, 252, 252, (0,28,121): 254, 251, 250, 254, 253, 251, 253, 252, 252, 252, 250, (0,28,132): 253, 252, 251, 251, 241, 242, 240, 251, 253, 251, 252, (0,28,143): 251, (0,29,0): 251, 251, 252, 251, 251, 251, 251, 252, 252, 252, 255, (0,29,11): 255, 252, 253, 251, 244, 230, 195, 203, 236, 231, 236, (0,29,22): 235, 234, 234, 253, 251, 251, 197, 233, 246, 254, 253, (0,29,33): 251, 251, 252, 252, 250, 250, 253, 251, 251, 252, 251, (0,29,44): 252, 251, 246, 228, 191, 210, 235, 235, 236, 228, 234, (0,29,55): 236, 253, 255, 253, 188, 240, 248, 244, 243, 246, 250, (0,29,66): 249, 252, 252, 250, 251, 251, 253, 253, 248, 242, 231, (0,29,77): 199, 213, 244, 235, 231, 240, 231, 234, 245, 250, 250, (0,29,88): 203, 226, 249, 250, 255, 248, 250, 248, 210, 166, 230, (0,29,99): 236, 229, 229, 241, 230, 225, 243, 255, 255, 186, 194, (0,29,110): 215, 223, 240, 250, 254, 249, 252, 251, 251, 251, 253, (0,29,121): 250, 251, 253, 251, 251, 254, 250, 253, 253, 252, 251, (0,29,132): 252, 252, 252, 253, 252, 250, 248, 250, 254, 255, 254, (0,29,143): 250, (0,30,0): 253, 253, 253, 253, 252, 252, 253, 253, 253, 251, 251, (0,30,11): 250, 249, 252, 254, 250, 236, 196, 201, 237, 237, 236, (0,30,22): 228, 237, 231, 254, 250, 252, 197, 232, 244, 255, 252, (0,30,33): 254, 253, 250, 250, 252, 253, 251, 252, 252, 254, 252, (0,30,44): 254, 254, 249, 229, 187, 211, 233, 233, 236, 232, 236, (0,30,55): 235, 250, 252, 248, 196, 232, 252, 255, 255, 251, 254, (0,30,66): 248, 252, 254, 252, 255, 255, 252, 255, 254, 252, 242, (0,30,77): 198, 198, 229, 232, 228, 239, 228, 233, 248, 255, 253, (0,30,88): 200, 223, 248, 250, 255, 250, 254, 251, 202, 201, 233, (0,30,99): 232, 223, 234, 237, 232, 236, 244, 255, 244, 184, 212, (0,30,110): 230, 235, 251, 254, 253, 252, 252, 253, 251, 252, 253, (0,30,121): 251, 251, 254, 251, 251, 255, 251, 252, 252, 252, 253, (0,30,132): 252, 252, 251, 251, 253, 252, 252, 251, 251, 254, 252, (0,30,143): 252, (0,31,0): 253, 252, 250, 252, 252, 252, 252, 251, 252, 252, 253, (0,31,11): 252, 252, 252, 250, 244, 228, 198, 203, 232, 233, 237, (0,31,22): 225, 237, 233, 252, 250, 255, 200, 229, 240, 255, 251, (0,31,33): 252, 252, 252, 252, 253, 253, 251, 252, 251, 253, 250, (0,31,44): 251, 251, 247, 226, 188, 214, 235, 231, 235, 232, 234, (0,31,55): 231, 250, 249, 252, 204, 196, 213, 221, 221, 227, 226, (0,31,66): 208, 208, 212, 210, 215, 210, 209, 216, 211, 191, 184, (0,31,77): 181, 209, 232, 233, 229, 236, 225, 230, 247, 255, 252, (0,31,88): 206, 227, 252, 251, 255, 249, 251, 247, 185, 204, 239, (0,31,99): 235, 226, 228, 232, 226, 244, 245, 255, 207, 199, 222, (0,31,110): 235, 245, 255, 253, 250, 254, 250, 253, 251, 255, 250, (0,31,121): 254, 250, 250, 253, 250, 251, 252, 253, 252, 252, 253, (0,31,132): 251, 252, 253, 253, 255, 252, 247, 252, 255, 255, 253, (0,31,143): 248, (0,32,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, (0,32,11): 252, 251, 253, 253, 250, 234, 188, 201, 234, 232, 234, (0,32,22): 237, 233, 236, 243, 253, 251, 198, 238, 241, 253, 252, (0,32,33): 252, 252, 252, 252, 252, 252, 252, 251, 253, 251, 252, (0,32,44): 255, 251, 244, 236, 194, 213, 225, 238, 226, 230, 234, (0,32,55): 236, 254, 255, 245, 185, 185, 190, 174, 176, 179, 180, (0,32,66): 180, 184, 187, 183, 179, 183, 174, 184, 187, 191, 184, (0,32,77): 179, 200, 229, 226, 241, 233, 235, 237, 243, 253, 253, (0,32,88): 205, 216, 249, 250, 251, 255, 251, 242, 176, 232, 225, (0,32,99): 237, 225, 236, 232, 230, 239, 254, 253, 205, 187, 230, (0,32,110): 245, 255, 252, 255, 249, 255, 251, 243, 255, 217, 210, (0,32,121): 215, 213, 212, 217, 198, 202, 201, 204, 204, 206, 211, (0,32,132): 209, 196, 201, 196, 196, 206, 245, 251, 248, 252, 247, (0,32,143): 254, (0,33,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 251, 253, (0,33,11): 253, 252, 252, 250, 246, 228, 190, 208, 237, 228, 227, (0,33,22): 231, 232, 238, 246, 252, 255, 199, 236, 240, 254, 252, (0,33,33): 252, 252, 252, 252, 252, 252, 252, 251, 253, 251, 252, (0,33,44): 254, 252, 245, 234, 178, 207, 225, 232, 231, 228, 234, (0,33,55): 234, 255, 252, 249, 222, 230, 232, 232, 237, 235, 235, (0,33,66): 238, 242, 244, 245, 246, 245, 245, 246, 255, 250, 252, (0,33,77): 251, 255, 240, 225, 228, 239, 229, 232, 241, 253, 253, (0,33,88): 210, 224, 251, 252, 252, 255, 250, 235, 168, 225, 229, (0,33,99): 229, 231, 231, 234, 232, 244, 255, 255, 184, 225, 237, (0,33,110): 248, 255, 252, 255, 248, 254, 254, 255, 173, 156, 180, (0,33,121): 178, 182, 180, 188, 188, 191, 183, 172, 173, 176, 182, (0,33,132): 186, 181, 183, 180, 181, 177, 184, 243, 251, 248, 253, (0,33,143): 253, (0,34,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, (0,34,11): 252, 252, 253, 254, 251, 233, 186, 202, 231, 230, 233, (0,34,22): 230, 224, 235, 247, 250, 253, 196, 232, 240, 251, 252, (0,34,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, (0,34,44): 252, 252, 246, 231, 182, 216, 236, 227, 238, 225, 233, (0,34,55): 234, 253, 253, 255, 255, 255, 249, 253, 252, 247, 247, (0,34,66): 250, 250, 247, 252, 254, 249, 248, 251, 255, 255, 244, (0,34,77): 254, 255, 248, 226, 227, 227, 237, 229, 244, 255, 254, (0,34,88): 197, 223, 247, 251, 252, 253, 254, 238, 172, 236, 227, (0,34,99): 231, 220, 232, 228, 237, 247, 255, 250, 184, 229, 237, (0,34,110): 252, 253, 246, 255, 255, 255, 254, 223, 167, 232, 243, (0,34,121): 245, 247, 248, 252, 251, 246, 255, 248, 249, 251, 250, (0,34,132): 255, 253, 254, 252, 247, 233, 199, 181, 250, 249, 255, (0,34,143): 255, (0,35,0): 252, 252, 252, 252, 252, 252, 252, 252, 250, 251, 253, (0,35,11): 254, 253, 251, 248, 243, 228, 187, 212, 233, 226, 226, (0,35,22): 230, 235, 229, 249, 250, 251, 194, 238, 248, 255, 252, (0,35,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,35,44): 251, 252, 247, 228, 182, 221, 232, 225, 234, 225, 230, (0,35,55): 233, 246, 250, 255, 255, 255, 248, 254, 253, 251, 252, (0,35,66): 255, 253, 250, 252, 253, 250, 255, 252, 253, 249, 250, (0,35,77): 245, 252, 254, 255, 230, 230, 227, 229, 242, 252, 255, (0,35,88): 203, 236, 252, 253, 253, 249, 247, 223, 173, 234, 232, (0,35,99): 223, 227, 224, 229, 237, 252, 250, 253, 194, 228, 233, (0,35,110): 255, 253, 247, 255, 254, 249, 255, 206, 193, 244, 255, (0,35,121): 250, 249, 255, 247, 252, 251, 248, 255, 255, 255, 253, (0,35,132): 255, 254, 252, 255, 255, 247, 240, 181, 255, 252, 249, (0,35,143): 252, (0,36,0): 252, 252, 252, 252, 252, 252, 252, 252, 254, 252, 251, (0,36,11): 251, 251, 253, 255, 253, 236, 191, 211, 230, 227, 229, (0,36,22): 228, 227, 229, 251, 252, 250, 190, 234, 242, 247, 252, (0,36,33): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 253, (0,36,44): 251, 253, 247, 227, 186, 222, 228, 231, 229, 227, 227, (0,36,55): 231, 248, 252, 254, 252, 251, 251, 255, 255, 254, 255, (0,36,66): 255, 253, 254, 252, 250, 251, 250, 254, 253, 248, 255, (0,36,77): 249, 251, 253, 255, 243, 225, 228, 232, 234, 255, 250, (0,36,88): 202, 236, 243, 250, 254, 249, 244, 209, 178, 237, 234, (0,36,99): 219, 228, 224, 230, 237, 251, 248, 245, 198, 232, 238, (0,36,110): 255, 247, 246, 255, 255, 250, 246, 206, 205, 229, 231, (0,36,121): 253, 255, 255, 253, 255, 253, 255, 248, 246, 251, 247, (0,36,132): 251, 249, 247, 254, 240, 247, 255, 201, 249, 246, 247, (0,36,143): 252, (0,37,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 251, 253, (0,37,11): 253, 252, 251, 249, 245, 230, 188, 211, 229, 227, 227, (0,37,22): 232, 228, 232, 248, 250, 254, 194, 237, 243, 253, 252, (0,37,33): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 252, (0,37,44): 251, 252, 247, 228, 185, 219, 222, 235, 229, 231, 232, (0,37,55): 234, 250, 248, 247, 247, 247, 243, 238, 246, 244, 246, (0,37,66): 244, 246, 248, 245, 243, 246, 241, 245, 242, 244, 237, (0,37,77): 238, 239, 240, 231, 235, 230, 231, 228, 246, 252, 252, (0,37,88): 201, 237, 242, 254, 255, 250, 245, 209, 185, 240, 230, (0,37,99): 225, 225, 226, 229, 239, 254, 251, 242, 200, 233, 249, (0,37,110): 255, 249, 249, 254, 251, 252, 240, 205, 203, 223, 222, (0,37,121): 226, 223, 227, 224, 232, 235, 225, 235, 232, 236, 234, (0,37,132): 236, 232, 229, 232, 235, 254, 255, 186, 243, 240, 249, (0,37,143): 251, (0,38,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, (0,38,11): 252, 251, 253, 253, 250, 234, 192, 211, 231, 227, 224, (0,38,22): 229, 220, 231, 245, 248, 253, 193, 238, 240, 252, 252, (0,38,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, (0,38,44): 252, 252, 246, 229, 183, 214, 221, 225, 225, 222, 229, (0,38,55): 227, 232, 230, 226, 232, 231, 229, 225, 230, 227, 227, (0,38,66): 228, 229, 231, 231, 232, 233, 235, 227, 232, 231, 239, (0,38,77): 229, 235, 229, 230, 232, 231, 225, 229, 236, 255, 251, (0,38,88): 197, 234, 244, 255, 252, 244, 243, 212, 177, 226, 234, (0,38,99): 219, 236, 220, 234, 234, 254, 247, 245, 188, 233, 246, (0,38,110): 255, 246, 251, 255, 253, 248, 237, 209, 202, 221, 225, (0,38,121): 228, 228, 229, 232, 229, 225, 235, 223, 222, 227, 226, (0,38,132): 226, 223, 224, 223, 245, 250, 254, 198, 241, 251, 249, (0,38,143): 255, (0,39,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (0,39,11): 253, 252, 252, 250, 246, 231, 191, 207, 228, 228, 225, (0,39,22): 233, 224, 229, 245, 250, 251, 192, 243, 243, 252, 252, (0,39,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, (0,39,44): 252, 252, 246, 231, 182, 214, 226, 223, 232, 221, 234, (0,39,55): 228, 242, 244, 245, 255, 249, 246, 245, 243, 248, 245, (0,39,66): 246, 246, 244, 245, 247, 244, 243, 248, 246, 246, 248, (0,39,77): 251, 250, 247, 240, 231, 231, 229, 225, 242, 250, 252, (0,39,88): 199, 233, 244, 255, 253, 246, 245, 216, 180, 228, 230, (0,39,99): 225, 229, 221, 230, 234, 250, 255, 242, 193, 233, 255, (0,39,110): 255, 247, 254, 250, 254, 253, 238, 222, 192, 221, 229, (0,39,121): 228, 234, 231, 236, 240, 236, 241, 242, 244, 247, 239, (0,39,132): 231, 225, 230, 227, 238, 243, 248, 199, 241, 252, 253, (0,39,143): 255, (0,40,0): 252, 252, 252, 252, 252, 252, 252, 252, 250, 252, 251, (0,40,11): 252, 251, 252, 253, 249, 234, 192, 208, 232, 225, 224, (0,40,22): 223, 231, 226, 239, 255, 255, 186, 233, 246, 249, 252, (0,40,33): 252, 252, 252, 252, 252, 252, 252, 251, 251, 252, 252, (0,40,44): 253, 252, 242, 230, 182, 218, 224, 224, 230, 222, 226, (0,40,55): 233, 255, 253, 251, 255, 244, 255, 252, 253, 254, 255, (0,40,66): 253, 248, 250, 252, 251, 250, 253, 241, 252, 255, 241, (0,40,77): 245, 255, 246, 231, 227, 223, 225, 230, 235, 250, 252, (0,40,88): 196, 235, 248, 254, 250, 252, 239, 206, 187, 227, 222, (0,40,99): 223, 229, 226, 227, 237, 255, 252, 247, 186, 236, 245, (0,40,110): 252, 254, 246, 255, 255, 249, 233, 233, 172, 231, 240, (0,40,121): 242, 250, 248, 247, 243, 247, 245, 250, 255, 241, 228, (0,40,132): 229, 224, 230, 220, 238, 253, 250, 202, 229, 247, 251, (0,40,143): 252, (0,41,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, (0,41,11): 252, 251, 251, 252, 247, 230, 191, 207, 227, 220, 225, (0,41,22): 226, 224, 226, 238, 254, 255, 189, 236, 249, 253, 252, (0,41,33): 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, 251, (0,41,44): 252, 253, 246, 235, 181, 212, 229, 228, 221, 222, 230, (0,41,55): 233, 242, 247, 250, 213, 185, 195, 194, 203, 184, 191, (0,41,66): 186, 192, 185, 191, 183, 185, 185, 184, 183, 179, 173, (0,41,77): 183, 205, 223, 228, 224, 223, 225, 227, 232, 251, 253, (0,41,88): 202, 237, 243, 250, 253, 255, 244, 219, 183, 222, 223, (0,41,99): 223, 227, 224, 224, 236, 252, 255, 248, 187, 235, 247, (0,41,110): 252, 254, 252, 253, 255, 251, 221, 223, 204, 173, 185, (0,41,121): 184, 186, 184, 185, 185, 187, 185, 181, 205, 213, 220, (0,41,132): 231, 220, 224, 223, 235, 251, 253, 204, 232, 250, 253, (0,41,143): 253, (0,42,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 252, (0,42,11): 252, 252, 252, 252, 247, 229, 189, 207, 225, 222, 228, (0,42,22): 229, 222, 227, 238, 251, 254, 187, 233, 245, 251, 252, (0,42,33): 252, 252, 252, 252, 252, 252, 252, 250, 251, 253, 253, (0,42,44): 252, 251, 242, 230, 179, 224, 221, 220, 230, 221, 224, (0,42,55): 226, 252, 250, 249, 181, 167, 176, 166, 164, 172, 176, (0,42,66): 175, 173, 170, 171, 169, 170, 175, 174, 171, 173, 177, (0,42,77): 172, 187, 220, 224, 223, 224, 225, 223, 231, 252, 254, (0,42,88): 195, 238, 247, 252, 253, 249, 242, 232, 174, 225, 223, (0,42,99): 223, 228, 219, 227, 235, 249, 255, 249, 199, 226, 254, (0,42,110): 249, 252, 251, 251, 252, 250, 233, 222, 210, 191, 182, (0,42,121): 176, 175, 172, 175, 172, 174, 171, 172, 193, 222, 231, (0,42,132): 224, 216, 228, 222, 236, 252, 251, 200, 229, 245, 249, (0,42,143): 250, (0,43,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 251, (0,43,11): 252, 252, 252, 252, 247, 234, 188, 206, 228, 223, 225, (0,43,22): 227, 224, 226, 236, 249, 254, 190, 235, 247, 254, 252, (0,43,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (0,43,44): 252, 252, 246, 236, 179, 210, 228, 226, 221, 221, 223, (0,43,55): 227, 245, 250, 255, 183, 179, 179, 182, 187, 188, 188, (0,43,66): 189, 182, 184, 181, 187, 187, 193, 183, 180, 183, 186, (0,43,77): 182, 199, 233, 224, 222, 225, 226, 224, 233, 254, 253, (0,43,88): 197, 240, 247, 252, 254, 246, 236, 224, 175, 229, 222, (0,43,99): 222, 227, 211, 226, 225, 242, 255, 255, 223, 213, 245, (0,43,110): 255, 249, 250, 253, 252, 254, 246, 240, 211, 204, 194, (0,43,121): 189, 187, 186, 189, 184, 183, 178, 170, 192, 227, 227, (0,43,132): 217, 215, 229, 217, 238, 252, 251, 200, 232, 248, 253, (0,43,143): 255, (0,44,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 254, 252, (0,44,11): 253, 252, 251, 251, 245, 237, 188, 206, 226, 221, 218, (0,44,22): 223, 222, 225, 236, 248, 251, 188, 233, 244, 251, 252, (0,44,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (0,44,44): 252, 252, 246, 236, 180, 214, 221, 227, 223, 213, 227, (0,44,55): 226, 246, 245, 250, 182, 198, 199, 207, 205, 203, 206, (0,44,66): 203, 208, 205, 212, 211, 213, 206, 202, 206, 203, 198, (0,44,77): 183, 191, 219, 225, 220, 222, 224, 224, 235, 255, 251, (0,44,88): 193, 236, 246, 252, 253, 249, 242, 228, 189, 211, 221, (0,44,99): 226, 225, 214, 228, 223, 240, 241, 255, 242, 185, 255, (0,44,110): 250, 248, 248, 253, 251, 255, 254, 249, 235, 220, 216, (0,44,121): 211, 211, 211, 215, 211, 208, 203, 178, 204, 227, 216, (0,44,132): 219, 218, 223, 218, 235, 250, 251, 201, 235, 247, 250, (0,44,143): 252, (0,45,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, (0,45,11): 253, 252, 252, 251, 245, 234, 189, 206, 222, 218, 218, (0,45,22): 223, 221, 228, 239, 250, 253, 190, 235, 245, 252, 252, (0,45,33): 252, 252, 252, 252, 252, 252, 252, 250, 251, 253, 253, (0,45,44): 252, 251, 242, 230, 187, 214, 220, 218, 224, 220, 217, (0,45,55): 230, 247, 253, 251, 188, 215, 222, 230, 224, 228, 226, (0,45,66): 227, 227, 227, 227, 227, 225, 229, 225, 228, 227, 224, (0,45,77): 193, 192, 232, 222, 220, 220, 221, 224, 235, 255, 251, (0,45,88): 190, 236, 251, 255, 250, 246, 242, 228, 210, 186, 218, (0,45,99): 227, 219, 219, 222, 218, 238, 236, 253, 250, 180, 246, (0,45,110): 249, 251, 252, 252, 253, 251, 251, 235, 241, 242, 237, (0,45,121): 234, 234, 231, 235, 232, 227, 223, 193, 204, 223, 213, (0,45,132): 221, 217, 221, 224, 238, 251, 251, 201, 236, 246, 248, (0,45,143): 252, (0,46,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 251, (0,46,11): 252, 253, 253, 253, 246, 233, 189, 206, 219, 219, 219, (0,46,22): 224, 222, 222, 236, 248, 250, 189, 236, 246, 252, 252, (0,46,33): 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, 251, (0,46,44): 252, 253, 246, 235, 183, 209, 220, 226, 217, 212, 229, (0,46,55): 226, 237, 250, 246, 187, 227, 244, 247, 244, 247, 242, (0,46,66): 249, 242, 249, 243, 251, 249, 255, 245, 244, 242, 235, (0,46,77): 191, 185, 224, 221, 219, 219, 220, 224, 234, 253, 252, (0,46,88): 189, 233, 245, 253, 254, 251, 243, 226, 205, 172, 213, (0,46,99): 221, 218, 223, 222, 220, 224, 248, 255, 254, 214, 193, (0,46,110): 253, 255, 255, 250, 255, 252, 248, 250, 252, 248, 247, (0,46,121): 245, 243, 240, 244, 240, 236, 227, 195, 197, 224, 219, (0,46,132): 223, 218, 221, 221, 235, 249, 246, 196, 234, 244, 248, (0,46,143): 254, (0,47,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, (0,47,11): 253, 252, 252, 251, 245, 235, 190, 205, 221, 220, 216, (0,47,22): 220, 219, 222, 237, 249, 250, 188, 236, 245, 250, 252, (0,47,33): 252, 252, 252, 252, 252, 252, 252, 251, 251, 252, 252, (0,47,44): 253, 252, 242, 230, 183, 213, 220, 217, 221, 216, 218, (0,47,55): 220, 244, 255, 252, 191, 230, 247, 245, 255, 251, 250, (0,47,66): 251, 252, 250, 250, 252, 251, 251, 248, 251, 238, 227, (0,47,77): 195, 194, 224, 220, 221, 221, 221, 224, 232, 251, 254, (0,47,88): 188, 235, 249, 254, 252, 247, 243, 232, 206, 190, 219, (0,47,99): 220, 223, 222, 222, 219, 218, 242, 244, 255, 228, 177, (0,47,110): 221, 252, 252, 255, 248, 253, 249, 255, 252, 255, 254, (0,47,121): 254, 252, 249, 255, 252, 245, 235, 187, 197, 222, 213, (0,47,132): 226, 216, 215, 223, 239, 251, 251, 200, 239, 247, 248, (0,47,143): 252, (0,48,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (0,48,11): 252, 252, 252, 252, 245, 234, 188, 206, 221, 220, 221, (0,48,22): 220, 219, 223, 233, 254, 255, 184, 226, 249, 253, 252, (0,48,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (0,48,44): 252, 252, 246, 235, 177, 216, 223, 220, 222, 222, 222, (0,48,55): 220, 240, 255, 252, 192, 234, 245, 252, 252, 252, 252, (0,48,66): 252, 252, 252, 252, 252, 252, 251, 251, 251, 248, 234, (0,48,77): 201, 198, 218, 213, 218, 218, 217, 220, 227, 254, 254, (0,48,88): 189, 238, 246, 250, 252, 253, 252, 233, 220, 194, 197, (0,48,99): 226, 212, 224, 225, 222, 222, 227, 233, 242, 245, 211, (0,48,110): 175, 247, 252, 247, 247, 251, 254, 255, 255, 253, 247, (0,48,121): 254, 252, 249, 251, 255, 255, 223, 198, 178, 229, 221, (0,48,132): 217, 222, 225, 218, 230, 249, 254, 191, 234, 244, 255, (0,48,143): 253, (0,49,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 251, (0,49,11): 252, 251, 251, 251, 244, 233, 189, 205, 221, 218, 218, (0,49,22): 219, 216, 223, 231, 252, 252, 184, 234, 253, 248, 252, (0,49,33): 252, 252, 252, 252, 252, 252, 252, 253, 253, 253, 252, (0,49,44): 252, 251, 244, 232, 178, 213, 217, 215, 220, 219, 220, (0,49,55): 222, 238, 253, 250, 192, 235, 248, 254, 254, 252, 252, (0,49,66): 252, 252, 252, 252, 252, 252, 252, 250, 250, 248, 231, (0,49,77): 195, 201, 223, 221, 217, 215, 219, 224, 228, 252, 255, (0,49,88): 183, 235, 248, 253, 253, 252, 253, 239, 225, 197, 180, (0,49,99): 222, 213, 221, 231, 212, 211, 222, 228, 233, 245, 244, (0,49,110): 193, 173, 245, 255, 252, 249, 254, 251, 252, 250, 255, (0,49,121): 251, 252, 252, 251, 248, 235, 239, 198, 196, 220, 220, (0,49,132): 210, 236, 212, 216, 231, 250, 253, 189, 232, 242, 255, (0,49,143): 254, (0,50,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 253, 252, (0,50,11): 253, 253, 253, 254, 249, 228, 190, 203, 221, 218, 218, (0,50,22): 222, 219, 224, 228, 250, 253, 187, 231, 250, 253, 252, (0,50,33): 252, 252, 252, 252, 252, 252, 252, 251, 251, 252, 252, (0,50,44): 252, 252, 244, 233, 174, 212, 219, 214, 219, 218, 215, (0,50,55): 218, 238, 254, 250, 193, 234, 248, 252, 252, 252, 252, (0,50,66): 252, 252, 252, 252, 252, 252, 252, 251, 254, 252, 234, (0,50,77): 187, 201, 217, 216, 215, 217, 213, 219, 230, 250, 251, (0,50,88): 190, 237, 245, 249, 251, 252, 254, 242, 232, 208, 178, (0,50,99): 212, 217, 219, 220, 219, 214, 217, 220, 223, 227, 246, (0,50,110): 229, 197, 179, 224, 249, 245, 250, 255, 252, 242, 252, (0,50,121): 255, 251, 255, 254, 253, 251, 242, 197, 195, 226, 205, (0,50,132): 220, 203, 217, 222, 234, 252, 253, 188, 232, 241, 254, (0,50,143): 252, (0,51,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, (0,51,11): 251, 250, 250, 251, 246, 228, 193, 204, 220, 216, 215, (0,51,22): 220, 216, 218, 230, 255, 250, 186, 232, 251, 250, 252, (0,51,33): 252, 252, 252, 252, 252, 252, 252, 254, 253, 253, 252, (0,51,44): 252, 251, 242, 230, 177, 219, 223, 212, 218, 219, 218, (0,51,55): 222, 237, 252, 248, 193, 235, 250, 253, 253, 252, 252, (0,51,66): 252, 252, 252, 252, 252, 252, 254, 250, 250, 247, 231, (0,51,77): 181, 204, 220, 213, 216, 221, 213, 219, 233, 253, 251, (0,51,88): 190, 237, 247, 253, 255, 254, 251, 240, 234, 214, 200, (0,51,99): 178, 228, 223, 215, 220, 219, 219, 217, 219, 217, 225, (0,51,110): 223, 215, 189, 175, 181, 241, 255, 251, 253, 254, 249, (0,51,121): 252, 255, 254, 248, 253, 253, 230, 198, 196, 224, 212, (0,51,132): 212, 212, 222, 218, 230, 248, 251, 191, 234, 244, 255, (0,51,143): 255, (0,52,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 253, 252, (0,52,11): 253, 253, 254, 255, 251, 225, 191, 201, 217, 215, 215, (0,52,22): 222, 217, 226, 225, 251, 254, 198, 230, 247, 252, 252, (0,52,33): 252, 252, 252, 252, 252, 252, 252, 251, 251, 251, 251, (0,52,44): 252, 253, 245, 234, 174, 212, 218, 208, 215, 216, 214, (0,52,55): 220, 239, 254, 249, 194, 236, 249, 250, 250, 252, 252, (0,52,66): 252, 252, 252, 252, 252, 252, 251, 248, 253, 253, 238, (0,52,77): 182, 206, 216, 216, 211, 217, 215, 221, 229, 248, 252, (0,52,88): 190, 237, 248, 250, 249, 250, 254, 251, 237, 225, 205, (0,52,99): 178, 217, 231, 230, 225, 216, 219, 219, 212, 214, 222, (0,52,110): 218, 213, 231, 201, 182, 167, 174, 205, 230, 253, 232, (0,52,121): 249, 246, 245, 229, 216, 216, 177, 174, 193, 211, 225, (0,52,132): 214, 214, 216, 222, 232, 251, 253, 190, 234, 242, 254, (0,52,143): 251, (0,53,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 251, (0,53,11): 251, 250, 250, 251, 245, 229, 193, 203, 216, 214, 214, (0,53,22): 217, 213, 221, 228, 252, 251, 199, 233, 250, 248, 252, (0,53,33): 252, 252, 252, 252, 252, 252, 252, 254, 253, 252, 252, (0,53,44): 252, 252, 243, 231, 181, 208, 216, 213, 221, 217, 211, (0,53,55): 220, 235, 252, 245, 195, 236, 252, 254, 253, 252, 252, (0,53,66): 252, 252, 252, 252, 252, 252, 254, 250, 249, 248, 234, (0,53,77): 181, 204, 216, 219, 215, 216, 214, 220, 229, 250, 251, (0,53,88): 185, 235, 249, 253, 254, 254, 253, 248, 236, 225, 226, (0,53,99): 188, 163, 224, 231, 226, 218, 218, 223, 220, 220, 223, (0,53,110): 218, 216, 217, 226, 220, 203, 181, 166, 170, 182, 186, (0,53,121): 177, 180, 178, 174, 177, 184, 209, 216, 252, 217, 227, (0,53,132): 220, 207, 219, 216, 233, 248, 249, 187, 233, 243, 253, (0,53,143): 253, (0,54,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 251, (0,54,11): 252, 252, 253, 253, 247, 229, 191, 203, 216, 216, 218, (0,54,22): 216, 214, 223, 228, 250, 253, 202, 227, 250, 253, 252, (0,54,33): 252, 252, 252, 252, 252, 252, 252, 252, 251, 251, 251, (0,54,44): 253, 253, 244, 232, 183, 211, 216, 209, 215, 214, 212, (0,54,55): 219, 236, 253, 246, 195, 235, 251, 252, 251, 252, 252, (0,54,66): 252, 252, 252, 252, 252, 252, 252, 252, 253, 255, 239, (0,54,77): 188, 206, 219, 214, 216, 214, 210, 216, 228, 252, 247, (0,54,88): 189, 237, 248, 249, 252, 255, 254, 249, 248, 234, 221, (0,54,99): 214, 179, 171, 222, 234, 234, 220, 216, 218, 219, 214, (0,54,110): 213, 220, 207, 215, 220, 218, 224, 225, 212, 201, 185, (0,54,121): 196, 203, 205, 213, 224, 237, 250, 249, 247, 255, 207, (0,54,132): 208, 206, 205, 226, 235, 252, 250, 187, 236, 243, 251, (0,54,143): 251, (0,55,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 251, (0,55,11): 252, 252, 251, 251, 244, 231, 190, 204, 217, 215, 217, (0,55,22): 212, 211, 222, 232, 250, 249, 200, 228, 253, 250, 252, (0,55,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,55,44): 252, 251, 242, 229, 175, 211, 222, 212, 212, 215, 215, (0,55,55): 217, 235, 253, 245, 195, 235, 252, 253, 252, 252, 252, (0,55,66): 252, 252, 252, 252, 252, 252, 251, 252, 250, 249, 231, (0,55,77): 184, 201, 216, 214, 215, 213, 217, 221, 224, 251, 253, (0,55,88): 184, 236, 251, 251, 252, 253, 253, 250, 248, 250, 223, (0,55,99): 217, 193, 183, 198, 224, 236, 236, 225, 217, 217, 211, (0,55,110): 213, 215, 211, 218, 216, 220, 219, 227, 242, 236, 241, (0,55,121): 248, 252, 250, 249, 254, 255, 248, 249, 250, 255, 255, (0,55,132): 235, 222, 222, 211, 234, 250, 250, 189, 239, 247, 254, (0,55,143): 253, (0,56,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 251, (0,56,11): 252, 252, 252, 253, 247, 242, 185, 196, 216, 210, 223, (0,56,22): 216, 219, 220, 219, 251, 254, 194, 234, 241, 253, 252, (0,56,33): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 252, (0,56,44): 252, 253, 244, 229, 182, 210, 213, 204, 214, 211, 212, (0,56,55): 223, 220, 244, 250, 190, 228, 242, 255, 254, 252, 252, (0,56,66): 252, 252, 252, 252, 252, 252, 244, 253, 255, 247, 234, (0,56,77): 183, 199, 207, 205, 214, 209, 210, 224, 230, 254, 250, (0,56,88): 184, 240, 251, 247, 253, 255, 247, 252, 255, 252, 230, (0,56,99): 230, 203, 185, 186, 181, 235, 250, 236, 228, 223, 218, (0,56,110): 216, 208, 212, 212, 210, 218, 219, 221, 227, 235, 242, (0,56,121): 249, 254, 247, 250, 254, 255, 253, 246, 253, 255, 255, (0,56,132): 244, 226, 213, 219, 239, 248, 252, 185, 231, 237, 255, (0,56,143): 255, (0,57,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 252, (0,57,11): 252, 252, 251, 251, 245, 225, 191, 201, 208, 213, 203, (0,57,22): 212, 203, 204, 223, 247, 248, 181, 241, 237, 252, 252, (0,57,33): 252, 252, 252, 252, 252, 252, 252, 253, 252, 253, 252, (0,57,44): 252, 252, 244, 229, 191, 186, 208, 217, 210, 210, 212, (0,57,55): 213, 242, 255, 249, 185, 242, 249, 253, 251, 252, 252, (0,57,66): 252, 252, 252, 252, 252, 252, 250, 251, 253, 244, 229, (0,57,77): 186, 212, 211, 219, 215, 212, 212, 216, 226, 253, 251, (0,57,88): 178, 235, 252, 249, 252, 255, 249, 250, 255, 248, 239, (0,57,99): 246, 220, 197, 190, 189, 181, 222, 255, 248, 229, 224, (0,57,110): 222, 212, 212, 209, 212, 220, 215, 221, 234, 234, 242, (0,57,121): 248, 255, 254, 254, 250, 252, 249, 255, 247, 236, 224, (0,57,132): 214, 207, 210, 216, 218, 254, 235, 199, 234, 241, 254, (0,57,143): 253, (0,58,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, (0,58,11): 253, 252, 251, 251, 244, 228, 184, 203, 209, 210, 214, (0,58,22): 210, 216, 212, 227, 250, 255, 180, 249, 250, 252, 252, (0,58,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, (0,58,44): 251, 252, 244, 230, 184, 201, 219, 221, 214, 207, 215, (0,58,55): 219, 223, 252, 245, 186, 237, 248, 255, 251, 252, 252, (0,58,66): 252, 252, 252, 252, 252, 252, 255, 254, 245, 237, 236, (0,58,77): 192, 206, 214, 213, 210, 210, 204, 208, 219, 247, 252, (0,58,88): 193, 233, 243, 245, 246, 255, 250, 254, 252, 247, 248, (0,58,99): 248, 231, 218, 194, 181, 176, 170, 224, 255, 254, 239, (0,58,110): 234, 227, 225, 222, 211, 208, 204, 210, 218, 224, 224, (0,58,121): 229, 240, 246, 250, 244, 240, 239, 220, 207, 213, 213, (0,58,132): 213, 213, 215, 210, 215, 236, 201, 196, 231, 249, 252, (0,58,143): 249, (0,59,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 251, (0,59,11): 252, 252, 252, 252, 246, 244, 180, 196, 211, 207, 219, (0,59,22): 217, 209, 211, 232, 251, 255, 192, 240, 244, 255, 252, (0,59,33): 252, 252, 252, 252, 252, 252, 252, 251, 251, 252, 252, (0,59,44): 251, 252, 245, 231, 186, 203, 214, 207, 205, 210, 216, (0,59,55): 212, 233, 255, 245, 186, 244, 247, 255, 253, 252, 252, (0,59,66): 252, 252, 252, 252, 252, 252, 252, 255, 247, 245, 234, (0,59,77): 186, 198, 208, 214, 213, 214, 214, 218, 229, 253, 247, (0,59,88): 191, 236, 244, 252, 254, 255, 251, 254, 254, 250, 250, (0,59,99): 248, 242, 240, 216, 194, 187, 182, 173, 169, 226, 255, (0,59,110): 255, 250, 237, 236, 225, 218, 217, 213, 210, 211, 209, (0,59,121): 211, 215, 218, 216, 212, 212, 217, 220, 209, 218, 217, (0,59,132): 219, 219, 225, 221, 207, 186, 193, 219, 240, 249, 255, (0,59,143): 255, (0,60,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 251, (0,60,11): 252, 252, 253, 253, 247, 229, 176, 204, 213, 210, 207, (0,60,22): 216, 210, 220, 224, 247, 249, 184, 236, 238, 254, 252, (0,60,33): 252, 252, 252, 252, 252, 252, 252, 251, 251, 252, 252, (0,60,44): 251, 252, 245, 231, 183, 198, 202, 214, 221, 214, 223, (0,60,55): 208, 215, 255, 249, 174, 240, 241, 255, 253, 252, 252, (0,60,66): 252, 252, 252, 252, 252, 252, 251, 254, 252, 241, 226, (0,60,77): 188, 191, 219, 207, 208, 212, 221, 216, 224, 254, 251, (0,60,88): 182, 243, 255, 252, 250, 253, 254, 251, 253, 252, 251, (0,60,99): 251, 247, 245, 236, 223, 211, 184, 179, 170, 170, 176, (0,60,110): 215, 242, 254, 251, 249, 250, 242, 236, 236, 228, 223, (0,60,121): 221, 220, 219, 218, 219, 216, 217, 229, 225, 235, 231, (0,60,132): 221, 206, 196, 185, 169, 186, 207, 217, 249, 254, 243, (0,60,143): 243, (0,61,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 252, (0,61,11): 252, 252, 252, 252, 246, 222, 188, 201, 224, 224, 211, (0,61,22): 216, 228, 220, 220, 255, 252, 180, 242, 242, 251, 252, (0,61,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, (0,61,44): 251, 252, 244, 230, 184, 196, 207, 224, 231, 220, 224, (0,61,55): 231, 217, 252, 239, 193, 233, 254, 251, 243, 252, 252, (0,61,66): 252, 252, 252, 252, 252, 252, 252, 255, 250, 244, 239, (0,61,77): 207, 195, 220, 239, 241, 228, 233, 237, 220, 220, 223, (0,61,88): 187, 238, 255, 253, 255, 252, 252, 248, 248, 254, 254, (0,61,99): 253, 247, 244, 240, 227, 226, 202, 188, 185, 182, 169, (0,61,110): 174, 171, 193, 207, 226, 243, 248, 244, 244, 240, 240, (0,61,121): 240, 239, 241, 238, 236, 230, 225, 224, 210, 198, 183, (0,61,132): 172, 170, 170, 174, 180, 190, 201, 221, 236, 249, 251, (0,61,143): 255, (0,62,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 252, (0,62,11): 252, 252, 252, 251, 245, 235, 214, 179, 222, 236, 226, (0,62,22): 229, 234, 224, 222, 212, 209, 197, 247, 247, 254, 252, (0,62,33): 252, 252, 252, 252, 252, 252, 252, 253, 252, 253, 252, (0,62,44): 252, 252, 244, 229, 211, 193, 228, 230, 227, 234, 219, (0,62,55): 222, 215, 200, 191, 209, 236, 255, 251, 247, 252, 252, (0,62,66): 252, 252, 252, 252, 252, 252, 252, 253, 253, 252, 236, (0,62,77): 209, 186, 175, 189, 207, 208, 205, 204, 180, 167, 189, (0,62,88): 225, 238, 255, 247, 255, 250, 248, 252, 249, 254, 253, (0,62,99): 251, 251, 251, 249, 237, 232, 227, 214, 205, 199, 187, (0,62,110): 178, 170, 171, 178, 173, 167, 179, 183, 193, 204, 200, (0,62,121): 205, 203, 198, 186, 184, 182, 184, 175, 169, 168, 175, (0,62,132): 171, 180, 181, 186, 197, 221, 224, 242, 249, 255, 253, (0,62,143): 255, (0,63,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, (0,63,11): 252, 252, 252, 251, 245, 228, 209, 177, 180, 197, 203, (0,63,22): 201, 198, 193, 205, 183, 194, 213, 224, 248, 255, 252, (0,63,33): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 252, (0,63,44): 252, 253, 244, 229, 202, 191, 173, 169, 170, 169, 180, (0,63,55): 169, 175, 176, 204, 216, 238, 248, 250, 255, 252, 252, (0,63,66): 252, 252, 252, 252, 252, 252, 244, 255, 250, 247, 233, (0,63,77): 213, 200, 186, 173, 164, 166, 162, 167, 182, 186, 198, (0,63,88): 221, 223, 254, 243, 254, 255, 249, 251, 255, 250, 250, (0,63,99): 253, 254, 251, 255, 255, 255, 230, 220, 229, 217, 203, (0,63,110): 193, 191, 181, 182, 179, 172, 170, 168, 170, 164, 174, (0,63,121): 170, 163, 166, 169, 173, 170, 166, 173, 172, 178, 193, (0,63,132): 191, 204, 204, 208, 216, 232, 235, 247, 255, 254, 247, (0,63,143): 253, (0,64,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (0,64,11): 252, 253, 252, 249, 247, 234, 221, 195, 180, 173, 163, (0,64,22): 165, 166, 172, 172, 188, 202, 222, 236, 251, 252, 252, (0,64,33): 252, 252, 252, 252, 252, 252, 252, 252, 253, 251, 250, (0,64,44): 252, 253, 247, 238, 220, 202, 188, 172, 179, 170, 176, (0,64,55): 179, 179, 195, 212, 225, 239, 250, 253, 251, 252, 252, (0,64,66): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 243, (0,64,77): 228, 210, 197, 188, 180, 182, 179, 180, 187, 196, 213, (0,64,88): 229, 245, 252, 250, 252, 254, 252, 252, 252, 252, 252, (0,64,99): 252, 252, 252, 252, 252, 254, 251, 245, 237, 235, 220, (0,64,110): 221, 211, 204, 196, 196, 190, 187, 188, 179, 180, 179, (0,64,121): 178, 182, 184, 184, 186, 189, 188, 195, 197, 202, 206, (0,64,132): 214, 219, 220, 228, 238, 243, 249, 253, 253, 251, 251, (0,64,143): 252, (0,65,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,65,11): 252, 253, 252, 251, 249, 236, 227, 205, 195, 189, 182, (0,65,22): 185, 184, 180, 188, 204, 214, 228, 243, 254, 251, 252, (0,65,33): 252, 252, 252, 252, 252, 252, 252, 251, 253, 252, 251, (0,65,44): 252, 253, 249, 243, 229, 214, 205, 196, 196, 190, 194, (0,65,55): 195, 198, 206, 220, 237, 250, 252, 251, 251, 252, 252, (0,65,66): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 246, (0,65,77): 235, 221, 211, 206, 200, 203, 203, 205, 210, 215, 227, (0,65,88): 236, 248, 253, 251, 252, 253, 252, 252, 252, 252, 252, (0,65,99): 252, 252, 252, 252, 252, 251, 252, 252, 249, 250, 237, (0,65,110): 237, 228, 228, 219, 220, 216, 210, 210, 205, 203, 199, (0,65,121): 202, 206, 206, 203, 203, 207, 210, 214, 217, 222, 225, (0,65,132): 233, 237, 236, 243, 249, 251, 253, 253, 253, 252, 252, (0,65,143): 252, (0,66,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, (0,66,11): 252, 252, 253, 252, 252, 244, 236, 221, 214, 207, 203, (0,66,22): 206, 204, 204, 209, 216, 227, 236, 251, 254, 250, 252, (0,66,33): 252, 252, 252, 252, 252, 252, 252, 251, 252, 253, 252, (0,66,44): 252, 252, 251, 250, 236, 226, 221, 219, 213, 211, 213, (0,66,55): 213, 221, 225, 234, 246, 254, 253, 251, 253, 252, 252, (0,66,66): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 250, (0,66,77): 244, 236, 230, 227, 221, 222, 223, 225, 229, 231, 239, (0,66,88): 244, 252, 253, 251, 252, 252, 251, 252, 252, 252, 252, (0,66,99): 252, 252, 252, 252, 252, 251, 252, 253, 253, 255, 249, (0,66,110): 251, 245, 244, 236, 236, 235, 228, 226, 227, 222, 225, (0,66,121): 225, 223, 224, 227, 228, 227, 227, 233, 238, 242, 244, (0,66,132): 248, 251, 249, 253, 254, 253, 252, 251, 252, 252, 252, (0,66,143): 252, (0,67,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,67,11): 252, 252, 253, 253, 253, 251, 245, 237, 234, 227, 222, (0,67,22): 225, 222, 230, 229, 229, 242, 245, 253, 252, 252, 252, (0,67,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,67,44): 252, 251, 252, 253, 245, 241, 237, 239, 232, 233, 233, (0,67,55): 236, 236, 243, 248, 249, 251, 252, 252, 252, 252, 252, (0,67,66): 252, 252, 252, 252, 252, 252, 252, 251, 251, 252, 252, (0,67,77): 251, 248, 245, 247, 243, 243, 243, 244, 246, 246, 251, (0,67,88): 251, 253, 253, 251, 252, 252, 251, 252, 252, 252, 252, (0,67,99): 252, 252, 252, 252, 252, 253, 252, 251, 250, 253, 250, (0,67,110): 254, 251, 252, 250, 248, 250, 245, 242, 246, 242, 237, (0,67,121): 241, 242, 242, 244, 245, 246, 251, 245, 249, 251, 251, (0,67,132): 252, 253, 252, 253, 251, 251, 251, 251, 252, 252, 252, (0,67,143): 251, (0,68,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,68,11): 252, 252, 252, 252, 252, 255, 251, 248, 248, 243, 241, (0,68,22): 243, 239, 243, 245, 248, 255, 251, 253, 251, 254, 252, (0,68,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, (0,68,44): 252, 252, 252, 253, 252, 254, 249, 252, 247, 249, 247, (0,68,55): 253, 243, 251, 254, 251, 251, 253, 252, 250, 252, 252, (0,68,66): 252, 252, 252, 252, 252, 252, 252, 251, 251, 252, 253, (0,68,77): 253, 252, 251, 250, 250, 252, 252, 251, 251, 249, 252, (0,68,88): 252, 253, 252, 251, 253, 252, 251, 252, 252, 252, 252, (0,68,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 251, (0,68,110): 252, 251, 251, 254, 250, 252, 252, 249, 252, 251, 251, (0,68,121): 254, 254, 252, 252, 250, 250, 253, 251, 254, 253, 252, (0,68,132): 252, 252, 252, 252, 252, 252, 253, 253, 253, 252, 251, (0,68,143): 251, (0,69,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,69,11): 252, 252, 252, 252, 251, 253, 252, 252, 253, 252, 250, (0,69,22): 252, 251, 250, 254, 254, 253, 250, 253, 253, 252, 252, (0,69,33): 252, 252, 252, 252, 252, 252, 252, 253, 252, 251, 252, (0,69,44): 253, 252, 252, 251, 250, 255, 251, 253, 251, 253, 249, (0,69,55): 254, 251, 253, 252, 251, 253, 253, 252, 252, 252, 252, (0,69,66): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 252, (0,69,77): 253, 253, 253, 251, 252, 253, 253, 252, 252, 252, 253, (0,69,88): 252, 252, 251, 252, 252, 252, 252, 252, 252, 252, 252, (0,69,99): 252, 252, 252, 252, 252, 251, 252, 252, 252, 253, 252, (0,69,110): 252, 251, 251, 255, 251, 252, 255, 251, 252, 254, 252, (0,69,121): 252, 250, 251, 254, 254, 252, 251, 252, 254, 252, 251, (0,69,132): 251, 251, 253, 252, 252, 252, 253, 253, 251, 251, 251, (0,69,143): 252, (0,70,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,70,11): 252, 252, 252, 252, 252, 251, 252, 253, 252, 252, 252, (0,70,22): 253, 254, 254, 253, 252, 248, 251, 252, 253, 250, 252, (0,70,33): 252, 252, 252, 252, 252, 252, 252, 253, 253, 252, 252, (0,70,44): 252, 252, 252, 251, 251, 252, 251, 252, 252, 253, 252, (0,70,55): 252, 255, 253, 250, 250, 252, 252, 252, 254, 252, 252, (0,70,66): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (0,70,77): 252, 252, 253, 252, 252, 251, 250, 250, 251, 252, 253, (0,70,88): 252, 251, 251, 252, 252, 252, 252, 252, 252, 252, 252, (0,70,99): 252, 252, 252, 252, 252, 252, 252, 251, 251, 251, 252, (0,70,110): 252, 253, 251, 251, 251, 251, 252, 251, 251, 252, 251, (0,70,121): 253, 255, 254, 251, 250, 252, 253, 252, 252, 250, 252, (0,70,132): 252, 251, 253, 252, 251, 251, 251, 251, 251, 251, 252, (0,70,143): 253, (0,71,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, (0,71,11): 252, 252, 253, 252, 252, 251, 253, 252, 251, 253, 253, (0,71,22): 252, 255, 252, 250, 253, 251, 255, 249, 252, 253, 252, (0,71,33): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 252, (0,71,44): 251, 252, 252, 252, 254, 251, 252, 251, 251, 252, 254, (0,71,55): 251, 250, 253, 254, 252, 252, 252, 252, 252, 252, 252, (0,71,66): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (0,71,77): 251, 252, 253, 252, 253, 252, 252, 253, 253, 252, 250, (0,71,88): 252, 252, 252, 252, 251, 252, 252, 251, 252, 252, 252, (0,71,99): 252, 252, 252, 252, 252, 252, 253, 253, 253, 252, 253, (0,71,110): 251, 252, 253, 250, 252, 253, 251, 252, 253, 252, 253, (0,71,121): 250, 251, 252, 251, 252, 254, 252, 253, 252, 250, 253, (0,71,132): 254, 251, 253, 251, 252, 252, 252, 252, 253, 253, 252, (0,71,143): 251, (1,0,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,0,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,1,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,2,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,3,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,4,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,5,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,6,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,7,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,8,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,8,12): 252, 252, 252, 252, 253, 251, 255, 255, 255, 255, 248, (1,8,23): 246, 248, 249, 250, 251, 250, 253, 252, 254, 249, 251, (1,8,34): 251, 252, 253, 252, 252, 253, 253, 255, 255, 250, 254, (1,8,45): 253, 254, 248, 245, 253, 255, 244, 255, 255, 254, 251, (1,8,56): 254, 244, 250, 250, 255, 247, 253, 244, 252, 255, 246, (1,8,67): 251, 244, 251, 251, 255, 253, 251, 254, 253, 252, 248, (1,8,78): 251, 255, 254, 255, 249, 252, 251, 252, 253, 249, 253, (1,8,89): 254, 255, 255, 255, 250, 250, 251, 252, 255, 253, 255, (1,8,100): 254, 251, 252, 252, 250, 251, 246, 252, 253, 255, 253, (1,8,111): 247, 245, 255, 255, 250, 250, 249, 240, 255, 252, 252, (1,8,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,8,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,9,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,9,12): 252, 252, 252, 252, 250, 251, 252, 255, 253, 248, 254, (1,9,23): 255, 252, 252, 251, 252, 251, 253, 250, 249, 255, 255, (1,9,34): 254, 251, 252, 253, 253, 251, 252, 251, 253, 249, 250, (1,9,45): 254, 250, 248, 255, 249, 253, 250, 247, 248, 251, 250, (1,9,56): 255, 254, 255, 254, 254, 250, 255, 253, 252, 255, 246, (1,9,67): 255, 255, 255, 255, 250, 252, 255, 251, 253, 255, 244, (1,9,78): 251, 251, 251, 249, 254, 255, 248, 255, 250, 251, 255, (1,9,89): 253, 245, 244, 254, 255, 255, 248, 251, 241, 249, 251, (1,9,100): 254, 253, 249, 245, 254, 255, 255, 255, 255, 251, 247, (1,9,111): 255, 255, 239, 250, 255, 255, 255, 250, 252, 252, 252, (1,9,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,9,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,10,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,10,11): 252, 252, 252, 252, 252, 252, 251, 254, 245, 244, 254, (1,10,22): 255, 255, 255, 255, 253, 254, 252, 253, 251, 252, 252, (1,10,33): 253, 252, 252, 251, 250, 250, 250, 245, 251, 255, 255, (1,10,44): 253, 247, 253, 254, 252, 254, 250, 254, 255, 252, 250, (1,10,55): 255, 255, 245, 241, 242, 255, 255, 255, 251, 245, 254, (1,10,66): 250, 248, 255, 255, 247, 247, 253, 237, 247, 253, 252, (1,10,77): 255, 247, 253, 251, 248, 254, 251, 247, 254, 251, 253, (1,10,88): 254, 243, 251, 253, 251, 250, 255, 248, 248, 253, 255, (1,10,99): 244, 208, 208, 185, 182, 193, 191, 192, 191, 187, 201, (1,10,110): 239, 249, 255, 246, 252, 242, 249, 253, 253, 255, 252, (1,10,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,10,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,10,143): 252, (1,11,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,11,11): 252, 252, 252, 252, 252, 255, 254, 254, 255, 255, 250, (1,11,22): 250, 250, 251, 253, 253, 255, 252, 253, 252, 255, 253, (1,11,33): 253, 254, 253, 252, 249, 250, 253, 255, 248, 247, 255, (1,11,44): 251, 251, 255, 255, 255, 255, 240, 244, 255, 255, 253, (1,11,55): 255, 253, 252, 255, 253, 245, 249, 245, 249, 252, 253, (1,11,66): 254, 249, 255, 250, 239, 253, 245, 245, 225, 212, 222, (1,11,77): 214, 209, 252, 255, 245, 254, 252, 252, 250, 252, 255, (1,11,88): 245, 254, 255, 252, 255, 254, 250, 246, 248, 207, 199, (1,11,99): 187, 199, 210, 207, 203, 210, 200, 194, 179, 206, 215, (1,11,110): 207, 214, 180, 213, 245, 248, 255, 241, 248, 254, 252, (1,11,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,11,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,11,143): 252, (1,12,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,12,11): 252, 252, 252, 252, 252, 255, 249, 244, 246, 252, 253, (1,12,22): 249, 245, 243, 245, 243, 250, 249, 252, 251, 253, 254, (1,12,33): 251, 254, 255, 253, 247, 244, 244, 255, 226, 232, 233, (1,12,44): 233, 207, 255, 244, 249, 247, 250, 250, 215, 200, 200, (1,12,55): 205, 201, 189, 220, 255, 249, 245, 255, 255, 254, 253, (1,12,66): 247, 253, 252, 247, 255, 227, 221, 174, 170, 177, 190, (1,12,77): 193, 187, 183, 244, 247, 253, 253, 246, 255, 252, 255, (1,12,88): 252, 255, 250, 254, 253, 249, 255, 217, 206, 212, 246, (1,12,99): 248, 255, 244, 253, 255, 240, 238, 251, 247, 246, 213, (1,12,110): 200, 208, 231, 216, 183, 221, 255, 237, 255, 253, 252, (1,12,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,12,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,12,143): 252, (1,13,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,13,11): 252, 252, 252, 252, 252, 247, 255, 255, 236, 214, 211, (1,13,22): 203, 204, 215, 209, 201, 199, 196, 193, 188, 186, 194, (1,13,33): 185, 178, 179, 180, 182, 185, 189, 169, 164, 185, 176, (1,13,44): 165, 173, 177, 231, 251, 250, 213, 181, 195, 207, 191, (1,13,55): 187, 181, 173, 162, 184, 254, 249, 251, 255, 248, 254, (1,13,66): 253, 255, 255, 250, 243, 199, 245, 247, 255, 241, 254, (1,13,77): 191, 168, 172, 169, 255, 251, 254, 248, 255, 250, 251, (1,13,88): 249, 251, 252, 253, 244, 249, 199, 235, 250, 255, 255, (1,13,99): 242, 243, 243, 252, 253, 250, 255, 255, 249, 249, 250, (1,13,110): 255, 243, 195, 214, 227, 205, 168, 255, 247, 250, 252, (1,13,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,13,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,13,143): 252, (1,14,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,14,11): 252, 252, 252, 252, 252, 255, 217, 177, 176, 191, 195, (1,14,22): 196, 190, 195, 192, 189, 195, 199, 203, 203, 206, 210, (1,14,33): 210, 213, 216, 219, 222, 222, 220, 239, 223, 240, 228, (1,14,44): 187, 178, 187, 192, 250, 250, 255, 249, 254, 255, 246, (1,14,55): 242, 232, 171, 183, 176, 255, 251, 255, 251, 250, 254, (1,14,66): 252, 254, 254, 252, 252, 255, 253, 251, 255, 255, 243, (1,14,77): 238, 170, 207, 176, 255, 255, 250, 248, 255, 253, 250, (1,14,88): 255, 251, 243, 253, 223, 202, 255, 255, 253, 249, 255, (1,14,99): 252, 255, 252, 255, 255, 248, 253, 255, 254, 250, 248, (1,14,110): 251, 248, 253, 216, 195, 183, 172, 182, 255, 253, 252, (1,14,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,14,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,14,143): 252, (1,15,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,15,11): 252, 252, 252, 252, 252, 255, 246, 248, 255, 255, 246, (1,15,22): 244, 255, 248, 250, 251, 255, 253, 252, 250, 253, 248, (1,15,33): 252, 255, 253, 251, 250, 251, 250, 253, 255, 251, 251, (1,15,44): 233, 192, 226, 183, 255, 247, 255, 251, 255, 253, 249, (1,15,55): 255, 247, 171, 232, 185, 255, 243, 254, 249, 245, 255, (1,15,66): 251, 250, 247, 253, 252, 243, 249, 238, 255, 245, 250, (1,15,77): 250, 185, 233, 205, 210, 249, 249, 250, 255, 252, 244, (1,15,88): 254, 246, 247, 248, 216, 255, 252, 253, 250, 252, 255, (1,15,99): 255, 245, 251, 242, 250, 255, 248, 254, 249, 250, 255, (1,15,110): 250, 249, 254, 248, 228, 169, 210, 177, 248, 252, 252, (1,15,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,15,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,15,143): 252, (1,16,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,16,11): 252, 252, 252, 252, 252, 252, 253, 252, 255, 251, 249, (1,16,22): 248, 251, 254, 244, 255, 254, 253, 255, 255, 247, 250, (1,16,33): 250, 248, 251, 255, 250, 253, 250, 251, 253, 244, 255, (1,16,44): 239, 179, 245, 196, 235, 241, 248, 255, 247, 255, 255, (1,16,55): 248, 246, 193, 232, 200, 211, 250, 251, 253, 253, 251, (1,16,66): 255, 245, 253, 254, 244, 253, 255, 255, 243, 244, 254, (1,16,77): 255, 206, 209, 219, 222, 246, 249, 250, 252, 247, 255, (1,16,88): 245, 252, 253, 232, 254, 254, 255, 247, 250, 255, 240, (1,16,99): 252, 236, 255, 254, 246, 248, 249, 249, 250, 255, 255, (1,16,110): 255, 245, 246, 255, 248, 187, 237, 218, 218, 251, 254, (1,16,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,16,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,16,143): 252, (1,17,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,17,11): 252, 252, 252, 252, 252, 252, 247, 253, 252, 254, 254, (1,17,22): 248, 243, 255, 248, 251, 250, 247, 249, 251, 244, 251, (1,17,33): 255, 255, 255, 252, 254, 253, 249, 253, 242, 250, 255, (1,17,44): 250, 197, 234, 215, 213, 251, 242, 255, 248, 235, 250, (1,17,55): 253, 248, 207, 209, 223, 204, 246, 249, 255, 252, 252, (1,17,66): 255, 246, 252, 254, 246, 250, 242, 242, 231, 241, 253, (1,17,77): 255, 221, 203, 226, 180, 239, 248, 255, 248, 250, 255, (1,17,88): 252, 254, 237, 237, 241, 246, 254, 245, 254, 242, 249, (1,17,99): 255, 255, 254, 255, 251, 254, 255, 255, 249, 245, 248, (1,17,110): 248, 244, 246, 250, 255, 220, 207, 232, 195, 243, 251, (1,17,121): 250, 251, 251, 251, 252, 252, 252, 252, 252, 252, 252, (1,17,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,17,143): 252, (1,18,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,18,11): 252, 252, 252, 252, 252, 253, 245, 255, 244, 250, 255, (1,18,22): 255, 255, 253, 253, 252, 255, 250, 254, 251, 254, 249, (1,18,33): 253, 253, 253, 241, 252, 251, 254, 255, 247, 251, 249, (1,18,44): 250, 216, 221, 227, 187, 246, 242, 249, 247, 248, 247, (1,18,55): 252, 251, 231, 198, 231, 184, 233, 251, 252, 254, 254, (1,18,66): 255, 250, 250, 254, 248, 244, 241, 243, 246, 248, 248, (1,18,77): 254, 229, 191, 231, 169, 234, 252, 254, 248, 255, 250, (1,18,88): 248, 253, 247, 251, 246, 237, 246, 244, 254, 241, 255, (1,18,99): 250, 249, 249, 244, 255, 252, 250, 248, 245, 244, 252, (1,18,110): 253, 243, 250, 243, 249, 239, 188, 247, 184, 243, 253, (1,18,121): 253, 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,18,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,18,143): 252, (1,19,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,19,11): 252, 252, 252, 252, 252, 251, 245, 248, 235, 239, 244, (1,19,22): 243, 246, 247, 252, 245, 252, 236, 241, 238, 250, 247, (1,19,33): 252, 250, 250, 244, 249, 249, 253, 239, 249, 242, 253, (1,19,44): 252, 226, 201, 227, 187, 232, 242, 239, 241, 250, 232, (1,19,55): 248, 251, 247, 183, 241, 172, 244, 248, 246, 250, 251, (1,19,66): 251, 252, 250, 255, 254, 245, 245, 248, 241, 248, 248, (1,19,77): 248, 248, 177, 242, 179, 239, 238, 255, 249, 255, 249, (1,19,88): 252, 239, 245, 243, 244, 239, 234, 240, 238, 255, 248, (1,19,99): 255, 239, 251, 227, 214, 214, 218, 237, 255, 252, 243, (1,19,110): 250, 255, 245, 251, 255, 255, 187, 240, 193, 230, 251, (1,19,121): 255, 254, 252, 252, 251, 252, 252, 252, 252, 252, 252, (1,19,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,19,143): 252, (1,20,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,20,11): 252, 252, 252, 252, 252, 253, 255, 250, 251, 250, 255, (1,20,22): 251, 255, 251, 255, 252, 255, 239, 242, 238, 250, 249, (1,20,33): 251, 247, 247, 249, 247, 246, 250, 241, 255, 244, 250, (1,20,44): 252, 231, 177, 180, 183, 227, 245, 239, 235, 242, 242, (1,20,55): 255, 249, 249, 175, 242, 180, 228, 241, 250, 253, 254, (1,20,66): 251, 253, 250, 253, 252, 244, 242, 234, 241, 240, 242, (1,20,77): 255, 254, 186, 230, 201, 197, 244, 255, 248, 255, 250, (1,20,88): 255, 232, 239, 239, 236, 246, 235, 242, 237, 253, 250, (1,20,99): 251, 217, 168, 162, 165, 153, 166, 170, 171, 190, 225, (1,20,110): 247, 237, 242, 247, 255, 249, 192, 222, 200, 207, 244, (1,20,121): 251, 251, 251, 251, 251, 253, 252, 252, 252, 252, 252, (1,20,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,20,143): 252, (1,21,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,21,11): 252, 252, 252, 252, 252, 251, 254, 244, 253, 255, 255, (1,21,22): 248, 253, 252, 255, 250, 253, 244, 246, 241, 250, 247, (1,21,33): 252, 253, 255, 251, 255, 249, 247, 244, 252, 254, 247, (1,21,44): 253, 226, 173, 163, 186, 226, 246, 240, 234, 241, 248, (1,21,55): 243, 252, 252, 186, 226, 200, 203, 244, 251, 252, 252, (1,21,66): 251, 252, 254, 253, 255, 247, 238, 235, 238, 244, 241, (1,21,77): 249, 255, 205, 222, 214, 194, 245, 255, 248, 255, 251, (1,21,88): 254, 227, 246, 240, 234, 236, 243, 248, 251, 246, 248, (1,21,99): 200, 178, 168, 161, 179, 174, 178, 177, 177, 176, 182, (1,21,110): 199, 205, 237, 236, 248, 255, 205, 203, 192, 199, 238, (1,21,121): 250, 252, 252, 252, 250, 253, 252, 252, 252, 252, 252, (1,21,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,21,143): 252, (1,22,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,22,11): 252, 252, 252, 252, 252, 250, 249, 247, 248, 254, 253, (1,22,22): 237, 235, 249, 244, 235, 232, 243, 244, 241, 244, 242, (1,22,33): 251, 255, 251, 219, 237, 208, 196, 198, 185, 191, 190, (1,22,44): 192, 173, 166, 181, 194, 216, 233, 242, 240, 240, 238, (1,22,55): 238, 250, 255, 205, 214, 219, 201, 244, 249, 255, 252, (1,22,66): 251, 249, 255, 249, 254, 248, 245, 229, 238, 239, 238, (1,22,77): 253, 255, 225, 192, 227, 177, 244, 247, 249, 252, 252, (1,22,88): 254, 230, 245, 239, 240, 238, 247, 252, 253, 237, 188, (1,22,99): 182, 162, 159, 172, 191, 189, 199, 200, 205, 208, 206, (1,22,110): 205, 199, 211, 223, 244, 255, 198, 172, 177, 192, 234, (1,22,121): 250, 252, 253, 253, 250, 253, 252, 252, 252, 252, 252, (1,22,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,22,143): 252, (1,23,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,23,11): 252, 252, 252, 252, 252, 249, 249, 254, 222, 203, 188, (1,23,22): 178, 185, 159, 161, 165, 179, 226, 237, 239, 240, 241, (1,23,33): 247, 252, 236, 182, 221, 185, 171, 181, 173, 162, 164, (1,23,44): 166, 174, 179, 166, 194, 227, 234, 245, 239, 238, 244, (1,23,55): 243, 247, 252, 235, 196, 221, 175, 233, 255, 255, 249, (1,23,66): 251, 248, 255, 249, 255, 252, 244, 234, 244, 243, 237, (1,23,77): 247, 254, 245, 193, 231, 176, 234, 248, 251, 244, 255, (1,23,88): 239, 231, 229, 242, 234, 242, 231, 246, 251, 195, 227, (1,23,99): 165, 168, 174, 181, 200, 199, 213, 218, 224, 225, 217, (1,23,110): 218, 219, 211, 209, 197, 213, 185, 161, 183, 203, 228, (1,23,121): 246, 250, 252, 252, 250, 253, 252, 252, 252, 252, 252, (1,23,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,23,143): 252, (1,24,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,24,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 244, 221, (1,24,22): 194, 180, 184, 168, 179, 170, 214, 235, 240, 242, 236, (1,24,33): 243, 255, 253, 200, 205, 225, 174, 174, 183, 191, 188, (1,24,44): 191, 189, 188, 195, 208, 223, 231, 246, 238, 236, 238, (1,24,55): 242, 255, 255, 239, 186, 235, 177, 237, 240, 254, 250, (1,24,66): 253, 250, 253, 253, 254, 246, 242, 235, 237, 237, 234, (1,24,77): 248, 255, 241, 175, 232, 173, 218, 245, 247, 248, 250, (1,24,88): 238, 242, 236, 235, 238, 243, 244, 249, 212, 212, 211, (1,24,99): 163, 173, 187, 208, 218, 227, 235, 239, 242, 239, 241, (1,24,110): 237, 236, 237, 223, 218, 204, 196, 190, 190, 203, 230, (1,24,121): 249, 252, 252, 252, 250, 253, 250, 252, 252, 252, 252, (1,24,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,24,143): 252, (1,25,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,25,11): 252, 252, 252, 252, 252, 252, 252, 252, 253, 250, 235, (1,25,22): 215, 201, 198, 192, 200, 192, 224, 233, 238, 239, 233, (1,25,33): 240, 255, 255, 217, 204, 225, 171, 196, 202, 210, 208, (1,25,44): 210, 211, 212, 212, 218, 239, 249, 243, 235, 238, 234, (1,25,55): 237, 245, 252, 245, 179, 235, 182, 221, 244, 251, 252, (1,25,66): 253, 250, 252, 252, 254, 253, 245, 234, 234, 238, 236, (1,25,77): 246, 249, 251, 190, 225, 186, 197, 245, 252, 246, 249, (1,25,88): 241, 238, 236, 234, 238, 240, 240, 254, 193, 235, 175, (1,25,99): 183, 188, 202, 219, 237, 238, 245, 248, 252, 250, 254, (1,25,110): 252, 252, 244, 241, 240, 228, 218, 205, 202, 213, 233, (1,25,121): 249, 252, 252, 252, 250, 253, 251, 252, 252, 252, 252, (1,25,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,25,143): 252, (1,26,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,26,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 247, (1,26,22): 235, 222, 218, 217, 216, 217, 236, 235, 239, 234, 239, (1,26,33): 241, 252, 255, 236, 198, 235, 183, 210, 220, 228, 228, (1,26,44): 227, 234, 234, 229, 234, 248, 253, 236, 229, 242, 233, (1,26,55): 239, 238, 248, 253, 183, 231, 197, 208, 237, 255, 255, (1,26,66): 255, 252, 255, 255, 255, 255, 239, 241, 237, 240, 232, (1,26,77): 241, 245, 255, 211, 207, 221, 192, 241, 255, 254, 253, (1,26,88): 241, 235, 236, 232, 235, 239, 238, 251, 199, 227, 161, (1,26,99): 189, 197, 211, 236, 247, 249, 252, 253, 254, 251, 253, (1,26,110): 252, 252, 252, 252, 250, 242, 239, 227, 223, 227, 239, (1,26,121): 250, 251, 252, 253, 250, 253, 253, 252, 252, 252, 252, (1,26,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,26,143): 252, (1,27,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,27,11): 252, 252, 252, 252, 252, 253, 251, 252, 252, 251, 252, (1,27,22): 247, 237, 238, 238, 228, 238, 246, 234, 239, 234, 241, (1,27,33): 243, 247, 252, 248, 193, 229, 189, 212, 232, 244, 243, (1,27,44): 239, 250, 249, 244, 249, 251, 253, 245, 228, 241, 234, (1,27,55): 240, 237, 251, 250, 201, 214, 220, 200, 234, 251, 248, (1,27,66): 248, 246, 248, 247, 249, 248, 248, 241, 233, 240, 233, (1,27,77): 232, 246, 255, 234, 184, 240, 180, 234, 255, 250, 237, (1,27,88): 233, 234, 235, 232, 236, 238, 231, 220, 212, 216, 176, (1,27,99): 183, 212, 222, 241, 255, 252, 253, 252, 252, 251, 252, (1,27,110): 252, 251, 251, 252, 251, 250, 252, 244, 241, 237, 245, (1,27,121): 251, 251, 252, 253, 250, 252, 253, 252, 252, 252, 252, (1,27,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,27,143): 252, (1,28,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,28,11): 252, 252, 252, 252, 252, 252, 251, 252, 253, 252, 253, (1,28,22): 253, 250, 252, 255, 248, 255, 254, 236, 240, 239, 235, (1,28,33): 237, 239, 246, 251, 200, 225, 205, 201, 237, 251, 251, (1,28,44): 245, 255, 252, 252, 248, 250, 255, 255, 230, 236, 234, (1,28,55): 236, 237, 253, 253, 229, 193, 235, 183, 229, 253, 252, (1,28,66): 254, 253, 250, 252, 253, 252, 250, 232, 237, 239, 231, (1,28,77): 228, 247, 251, 251, 183, 241, 170, 225, 252, 247, 243, (1,28,88): 230, 237, 235, 230, 236, 239, 237, 211, 216, 210, 187, (1,28,99): 194, 221, 231, 250, 255, 252, 252, 252, 251, 253, 253, (1,28,110): 254, 253, 252, 251, 254, 253, 252, 249, 253, 249, 250, (1,28,121): 252, 252, 252, 252, 251, 252, 253, 252, 252, 252, 252, (1,28,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,28,143): 252, (1,29,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,29,11): 252, 252, 252, 252, 252, 252, 251, 252, 253, 252, 251, (1,29,22): 252, 254, 253, 255, 251, 255, 253, 241, 237, 232, 237, (1,29,33): 237, 239, 246, 250, 213, 206, 215, 186, 236, 251, 252, (1,29,44): 246, 255, 249, 254, 247, 248, 251, 255, 229, 234, 240, (1,29,55): 235, 238, 248, 255, 249, 185, 237, 171, 232, 245, 249, (1,29,66): 252, 253, 250, 253, 255, 255, 255, 227, 235, 238, 232, (1,29,77): 233, 242, 255, 243, 175, 231, 188, 216, 245, 250, 237, (1,29,88): 234, 236, 233, 232, 236, 238, 244, 213, 218, 199, 185, (1,29,99): 200, 226, 240, 255, 251, 253, 252, 252, 251, 253, 251, (1,29,110): 252, 251, 253, 249, 253, 251, 252, 252, 255, 253, 252, (1,29,121): 253, 252, 252, 252, 251, 252, 252, 252, 252, 252, 252, (1,29,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,29,143): 252, (1,30,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,30,11): 252, 252, 252, 252, 252, 252, 252, 252, 251, 251, 250, (1,30,22): 250, 252, 253, 253, 254, 252, 252, 253, 241, 228, 232, (1,30,33): 232, 237, 251, 252, 233, 189, 223, 180, 235, 249, 253, (1,30,44): 247, 255, 248, 254, 255, 253, 248, 244, 232, 233, 237, (1,30,55): 233, 239, 238, 251, 250, 184, 228, 188, 224, 241, 251, (1,30,66): 248, 247, 251, 255, 252, 255, 255, 237, 227, 242, 233, (1,30,77): 231, 230, 253, 255, 186, 213, 199, 200, 240, 255, 233, (1,30,88): 231, 230, 233, 237, 236, 239, 240, 199, 220, 202, 182, (1,30,99): 203, 238, 250, 255, 251, 252, 251, 253, 251, 254, 252, (1,30,110): 253, 252, 252, 251, 255, 251, 255, 253, 250, 251, 252, (1,30,121): 252, 252, 251, 251, 252, 252, 252, 252, 252, 252, 252, (1,30,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,30,143): 252, (1,31,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,31,11): 252, 252, 252, 252, 252, 251, 253, 252, 251, 253, 253, (1,31,22): 251, 253, 247, 250, 255, 246, 247, 252, 239, 227, 239, (1,31,33): 235, 235, 252, 249, 248, 183, 237, 178, 232, 248, 252, (1,31,44): 245, 255, 248, 252, 252, 255, 252, 243, 245, 234, 233, (1,31,55): 237, 237, 231, 249, 254, 191, 216, 203, 191, 225, 234, (1,31,66): 221, 215, 222, 221, 208, 207, 201, 239, 229, 243, 224, (1,31,77): 233, 240, 246, 253, 201, 208, 211, 199, 236, 255, 236, (1,31,88): 232, 226, 233, 232, 235, 248, 246, 200, 213, 202, 177, (1,31,99): 227, 233, 248, 255, 247, 253, 251, 253, 250, 253, 250, (1,31,110): 252, 250, 255, 255, 254, 240, 241, 240, 240, 255, 252, (1,31,121): 251, 252, 251, 251, 253, 253, 252, 252, 252, 252, 252, (1,31,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,31,143): 252, (1,32,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,32,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,32,22): 252, 252, 247, 255, 245, 255, 247, 251, 241, 229, 235, (1,32,33): 231, 243, 244, 254, 255, 182, 227, 185, 226, 246, 255, (1,32,44): 246, 249, 254, 247, 248, 254, 255, 255, 238, 243, 232, (1,32,55): 223, 242, 234, 248, 254, 205, 179, 175, 182, 179, 179, (1,32,66): 182, 178, 180, 177, 180, 179, 188, 202, 233, 240, 223, (1,32,77): 241, 227, 246, 245, 242, 196, 221, 193, 239, 245, 235, (1,32,88): 234, 226, 234, 225, 234, 239, 252, 201, 227, 191, 184, (1,32,99): 216, 249, 249, 253, 248, 255, 218, 209, 190, 180, 187, (1,32,110): 195, 177, 184, 176, 176, 186, 182, 180, 172, 171, 191, (1,32,121): 255, 246, 252, 252, 249, 254, 250, 252, 252, 252, 252, (1,32,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,32,143): 252, (1,33,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,33,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,33,22): 252, 252, 248, 255, 249, 255, 249, 255, 242, 231, 227, (1,33,33): 233, 236, 239, 247, 255, 199, 219, 200, 201, 248, 255, (1,33,44): 249, 252, 252, 253, 250, 251, 251, 255, 255, 238, 223, (1,33,55): 234, 240, 236, 232, 255, 243, 229, 236, 230, 238, 240, (1,33,66): 244, 244, 249, 247, 249, 250, 244, 251, 231, 228, 233, (1,33,77): 224, 245, 250, 251, 248, 193, 220, 180, 230, 251, 241, (1,33,88): 229, 232, 235, 230, 238, 241, 255, 199, 213, 208, 187, (1,33,99): 225, 247, 252, 252, 255, 202, 196, 206, 207, 215, 216, (1,33,110): 217, 213, 213, 213, 234, 213, 214, 219, 172, 168, 176, (1,33,121): 175, 249, 255, 249, 247, 255, 250, 252, 252, 252, 252, (1,33,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,33,143): 252, (1,34,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,34,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,34,22): 252, 252, 249, 252, 253, 253, 248, 252, 244, 231, 231, (1,34,33): 223, 239, 238, 252, 253, 208, 207, 218, 176, 244, 252, (1,34,44): 254, 255, 252, 255, 252, 251, 252, 246, 255, 231, 222, (1,34,55): 236, 238, 225, 237, 255, 255, 255, 251, 255, 250, 250, (1,34,66): 250, 250, 251, 251, 255, 254, 252, 255, 227, 226, 232, (1,34,77): 226, 229, 233, 253, 252, 183, 221, 183, 221, 242, 233, (1,34,88): 230, 225, 238, 226, 234, 247, 255, 218, 203, 208, 165, (1,34,99): 214, 238, 254, 254, 240, 251, 254, 255, 251, 255, 247, (1,34,110): 249, 254, 255, 248, 253, 254, 255, 243, 221, 179, 191, (1,34,121): 180, 255, 255, 255, 243, 254, 254, 252, 252, 252, 252, (1,34,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,34,143): 252, (1,35,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,35,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,35,22): 252, 252, 248, 251, 255, 254, 251, 251, 255, 235, 228, (1,35,33): 234, 226, 237, 241, 252, 232, 197, 229, 167, 236, 246, (1,35,44): 255, 253, 255, 254, 255, 252, 250, 245, 244, 231, 225, (1,35,55): 232, 237, 231, 255, 255, 246, 251, 240, 250, 254, 254, (1,35,66): 254, 253, 253, 250, 247, 245, 249, 255, 247, 224, 227, (1,35,77): 226, 222, 235, 247, 254, 187, 215, 193, 199, 234, 248, (1,35,88): 230, 227, 233, 230, 236, 240, 255, 228, 179, 226, 176, (1,35,99): 223, 251, 252, 255, 252, 247, 249, 252, 252, 254, 250, (1,35,110): 253, 252, 248, 255, 254, 255, 239, 245, 245, 185, 213, (1,35,121): 192, 219, 255, 254, 242, 253, 255, 252, 252, 252, 252, (1,35,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,35,143): 252, (1,36,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,36,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,36,22): 252, 252, 250, 252, 255, 253, 248, 246, 255, 224, 232, (1,36,33): 224, 235, 227, 242, 251, 244, 194, 229, 174, 235, 241, (1,36,44): 252, 251, 253, 251, 255, 248, 248, 255, 251, 241, 223, (1,36,55): 228, 221, 244, 255, 252, 242, 251, 255, 255, 252, 252, (1,36,66): 251, 251, 251, 252, 253, 252, 255, 255, 255, 237, 233, (1,36,77): 231, 227, 231, 255, 255, 200, 202, 212, 198, 239, 253, (1,36,88): 226, 225, 229, 230, 234, 238, 255, 243, 184, 224, 169, (1,36,99): 224, 241, 251, 255, 239, 251, 250, 250, 249, 247, 250, (1,36,110): 255, 255, 241, 255, 247, 237, 228, 255, 246, 190, 210, (1,36,121): 206, 188, 255, 248, 249, 255, 255, 252, 252, 252, 252, (1,36,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,36,143): 252, (1,37,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,37,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,37,22): 252, 252, 252, 252, 251, 253, 253, 250, 255, 225, 228, (1,37,33): 227, 224, 241, 240, 245, 247, 196, 220, 185, 229, 237, (1,37,44): 249, 254, 248, 249, 255, 249, 246, 255, 255, 253, 224, (1,37,55): 226, 235, 255, 254, 248, 249, 244, 252, 254, 250, 250, (1,37,66): 246, 247, 246, 248, 248, 249, 231, 239, 245, 242, 224, (1,37,77): 223, 223, 236, 245, 250, 227, 192, 215, 186, 235, 248, (1,37,88): 230, 225, 233, 224, 227, 242, 253, 253, 177, 225, 184, (1,37,99): 225, 244, 255, 251, 250, 234, 238, 243, 239, 236, 233, (1,37,110): 231, 232, 231, 229, 234, 221, 235, 236, 255, 238, 184, (1,37,121): 226, 182, 248, 250, 248, 255, 253, 252, 252, 252, 252, (1,37,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,37,143): 252, (1,38,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,38,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,38,22): 252, 252, 254, 252, 250, 248, 255, 250, 248, 233, 227, (1,38,33): 224, 232, 228, 233, 247, 255, 206, 215, 200, 210, 237, (1,38,44): 250, 255, 251, 249, 250, 249, 251, 252, 253, 252, 227, (1,38,55): 227, 231, 237, 237, 234, 233, 224, 222, 228, 224, 226, (1,38,66): 227, 232, 231, 233, 229, 228, 238, 234, 231, 217, 223, (1,38,77): 226, 223, 227, 247, 249, 244, 180, 224, 194, 229, 247, (1,38,88): 226, 228, 227, 230, 232, 237, 254, 252, 201, 213, 200, (1,38,99): 206, 232, 250, 255, 252, 230, 230, 235, 235, 233, 231, (1,38,110): 227, 231, 234, 228, 230, 231, 233, 241, 250, 235, 185, (1,38,121): 224, 172, 242, 251, 250, 255, 248, 252, 252, 252, 252, (1,38,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,38,143): 252, (1,39,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,39,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,39,22): 252, 252, 255, 251, 249, 246, 255, 254, 249, 253, 230, (1,39,33): 226, 228, 235, 234, 244, 252, 211, 213, 211, 187, 237, (1,39,44): 254, 253, 255, 250, 250, 245, 255, 251, 249, 244, 231, (1,39,55): 231, 224, 225, 237, 239, 239, 246, 247, 240, 245, 246, (1,39,66): 242, 245, 241, 242, 239, 240, 231, 255, 237, 237, 230, (1,39,77): 235, 225, 224, 241, 249, 253, 177, 228, 189, 211, 242, (1,39,88): 241, 229, 228, 227, 226, 232, 240, 251, 219, 203, 214, (1,39,99): 178, 232, 244, 254, 249, 235, 221, 228, 236, 240, 246, (1,39,110): 245, 250, 225, 233, 224, 219, 232, 232, 248, 255, 182, (1,39,121): 222, 179, 227, 239, 255, 249, 246, 252, 252, 252, 252, (1,39,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,39,143): 252, (1,40,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,40,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,40,22): 252, 252, 251, 253, 251, 249, 248, 254, 255, 242, 234, (1,40,33): 219, 229, 231, 222, 247, 251, 233, 180, 220, 191, 218, (1,40,44): 239, 253, 252, 254, 255, 246, 250, 251, 255, 250, 229, (1,40,55): 223, 230, 225, 235, 248, 242, 249, 242, 245, 245, 255, (1,40,66): 254, 252, 251, 251, 244, 247, 255, 251, 252, 231, 234, (1,40,77): 217, 218, 231, 222, 255, 249, 194, 210, 199, 200, 244, (1,40,88): 236, 225, 220, 222, 222, 229, 235, 250, 243, 185, 231, (1,40,99): 173, 225, 251, 239, 255, 252, 235, 255, 249, 244, 255, (1,40,110): 255, 247, 239, 221, 232, 227, 221, 233, 255, 247, 200, (1,40,121): 218, 201, 210, 240, 252, 255, 252, 252, 252, 252, 252, (1,40,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,40,143): 252, (1,41,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,41,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,41,22): 252, 252, 251, 253, 252, 252, 248, 252, 255, 253, 232, (1,41,33): 226, 227, 230, 222, 243, 255, 242, 177, 220, 187, 222, (1,41,44): 238, 252, 250, 255, 255, 252, 250, 248, 254, 251, 236, (1,41,55): 222, 228, 228, 229, 233, 250, 255, 235, 235, 218, 214, (1,41,66): 207, 214, 218, 219, 206, 200, 200, 202, 191, 215, 228, (1,41,77): 220, 227, 230, 229, 250, 249, 202, 205, 207, 178, 247, (1,41,88): 252, 231, 236, 223, 225, 227, 237, 254, 249, 190, 218, (1,41,99): 181, 218, 242, 255, 244, 255, 255, 212, 183, 178, 178, (1,41,110): 174, 171, 205, 226, 222, 225, 223, 227, 248, 251, 205, (1,41,121): 203, 204, 193, 229, 250, 255, 252, 252, 252, 252, 252, (1,41,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,41,143): 252, (1,42,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,42,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,42,22): 252, 252, 249, 253, 251, 253, 251, 251, 255, 255, 225, (1,42,33): 228, 225, 231, 225, 238, 255, 245, 188, 222, 186, 223, (1,42,44): 242, 255, 251, 255, 251, 251, 252, 254, 254, 248, 241, (1,42,55): 227, 221, 228, 228, 228, 253, 254, 212, 189, 197, 177, (1,42,66): 168, 171, 165, 171, 171, 176, 166, 170, 159, 193, 222, (1,42,77): 219, 229, 235, 225, 234, 255, 224, 191, 221, 173, 232, (1,42,88): 244, 216, 232, 216, 227, 226, 229, 241, 246, 197, 200, (1,42,99): 221, 183, 240, 255, 245, 233, 254, 255, 237, 213, 189, (1,42,110): 183, 169, 187, 230, 220, 222, 225, 235, 235, 249, 224, (1,42,121): 185, 216, 182, 224, 249, 254, 252, 252, 252, 252, 252, (1,42,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,42,143): 252, (1,43,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,43,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,43,22): 252, 252, 249, 252, 250, 253, 253, 252, 253, 252, 235, (1,43,33): 229, 224, 227, 221, 233, 255, 252, 204, 217, 192, 211, (1,43,44): 242, 255, 250, 255, 251, 252, 252, 255, 251, 250, 254, (1,43,55): 235, 221, 226, 226, 224, 243, 251, 229, 188, 223, 177, (1,43,66): 172, 176, 169, 177, 181, 187, 195, 190, 193, 196, 233, (1,43,77): 222, 213, 222, 228, 234, 255, 245, 182, 228, 184, 227, (1,43,88): 249, 224, 226, 221, 226, 219, 220, 225, 242, 231, 171, (1,43,99): 225, 181, 225, 253, 251, 254, 249, 249, 245, 219, 213, (1,43,110): 188, 191, 192, 231, 212, 221, 222, 230, 240, 243, 246, (1,43,121): 173, 224, 184, 225, 247, 249, 254, 252, 252, 252, 252, (1,43,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,43,143): 252, (1,44,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,44,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,44,22): 252, 252, 251, 252, 251, 252, 254, 253, 249, 247, 235, (1,44,33): 217, 217, 226, 219, 229, 244, 247, 214, 200, 203, 193, (1,44,44): 235, 249, 248, 254, 250, 255, 254, 253, 248, 255, 255, (1,44,55): 217, 218, 224, 223, 229, 236, 249, 240, 183, 219, 171, (1,44,66): 187, 203, 207, 211, 207, 204, 203, 193, 203, 196, 227, (1,44,77): 224, 215, 215, 223, 233, 246, 252, 186, 221, 184, 220, (1,44,88): 253, 244, 221, 229, 225, 217, 218, 223, 233, 240, 190, (1,44,99): 201, 206, 180, 242, 252, 255, 254, 248, 254, 240, 232, (1,44,110): 211, 223, 222, 220, 220, 222, 219, 222, 230, 252, 253, (1,44,121): 170, 221, 188, 221, 245, 247, 255, 252, 252, 252, 252, (1,44,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,44,143): 252, (1,45,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,45,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,45,22): 252, 252, 252, 254, 252, 251, 252, 253, 252, 249, 255, (1,45,33): 224, 223, 221, 216, 223, 236, 250, 226, 187, 214, 183, (1,45,44): 236, 248, 250, 250, 250, 254, 254, 253, 247, 255, 250, (1,45,55): 215, 223, 223, 221, 229, 235, 253, 245, 187, 222, 191, (1,45,66): 198, 218, 220, 222, 222, 221, 233, 229, 225, 228, 225, (1,45,77): 224, 232, 223, 221, 227, 251, 254, 192, 216, 194, 204, (1,45,88): 247, 251, 216, 224, 224, 223, 223, 225, 214, 245, 209, (1,45,99): 177, 216, 183, 235, 244, 255, 245, 248, 252, 250, 243, (1,45,110): 239, 235, 236, 239, 227, 214, 217, 220, 236, 245, 254, (1,45,121): 189, 210, 193, 208, 243, 249, 253, 252, 252, 252, 252, (1,45,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,45,143): 252, (1,46,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,46,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,46,22): 252, 252, 255, 252, 250, 251, 252, 255, 254, 252, 247, (1,46,33): 222, 222, 223, 222, 224, 233, 253, 241, 182, 221, 181, (1,46,44): 233, 244, 250, 249, 253, 254, 251, 250, 248, 254, 252, (1,46,55): 244, 223, 219, 217, 225, 229, 254, 246, 199, 204, 205, (1,46,66): 196, 229, 245, 252, 249, 243, 246, 252, 244, 251, 230, (1,46,77): 219, 228, 220, 221, 222, 246, 245, 196, 206, 208, 187, (1,46,88): 247, 254, 230, 219, 223, 226, 221, 221, 220, 215, 232, (1,46,99): 188, 198, 215, 183, 255, 250, 254, 254, 255, 248, 255, (1,46,110): 248, 253, 250, 233, 220, 218, 225, 219, 219, 246, 254, (1,46,121): 213, 196, 202, 194, 237, 250, 252, 252, 252, 252, 252, (1,46,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,46,143): 252, (1,47,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,47,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,47,22): 252, 252, 255, 250, 248, 250, 253, 255, 255, 252, 245, (1,47,33): 227, 223, 222, 224, 220, 229, 253, 249, 179, 220, 177, (1,47,44): 221, 234, 252, 255, 251, 255, 252, 246, 249, 255, 247, (1,47,55): 242, 228, 217, 218, 220, 217, 252, 248, 213, 194, 217, (1,47,66): 184, 222, 244, 255, 255, 249, 246, 250, 249, 252, 241, (1,47,77): 221, 219, 217, 217, 225, 238, 247, 220, 198, 210, 185, (1,47,88): 228, 244, 249, 219, 225, 222, 215, 215, 221, 212, 232, (1,47,99): 211, 173, 215, 196, 193, 250, 251, 255, 250, 249, 246, (1,47,110): 254, 252, 246, 247, 225, 221, 223, 224, 222, 232, 253, (1,47,121): 227, 182, 207, 187, 232, 249, 252, 252, 252, 252, 252, (1,47,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,47,143): 252, (1,48,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,48,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,48,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 247, (1,48,33): 243, 216, 214, 225, 220, 224, 255, 253, 195, 208, 208, (1,48,44): 194, 245, 255, 249, 251, 254, 253, 255, 248, 253, 255, (1,48,55): 233, 225, 225, 218, 228, 215, 239, 252, 232, 171, 219, (1,48,66): 179, 222, 252, 249, 251, 252, 250, 250, 249, 255, 247, (1,48,77): 226, 212, 222, 216, 221, 228, 255, 245, 167, 215, 182, (1,48,88): 234, 239, 255, 229, 218, 217, 215, 228, 227, 221, 218, (1,48,99): 221, 202, 186, 201, 193, 227, 249, 245, 251, 254, 250, (1,48,110): 255, 255, 241, 252, 222, 220, 221, 220, 221, 228, 252, (1,48,121): 247, 172, 225, 170, 228, 248, 247, 252, 252, 252, 252, (1,48,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,48,143): 252, (1,49,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,49,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,49,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 245, (1,49,33): 238, 221, 209, 225, 227, 221, 237, 252, 211, 200, 207, (1,49,44): 184, 237, 254, 250, 248, 254, 253, 252, 246, 251, 255, (1,49,55): 253, 214, 228, 220, 224, 215, 234, 254, 239, 175, 220, (1,49,66): 178, 230, 244, 255, 250, 255, 250, 246, 254, 255, 255, (1,49,77): 210, 218, 214, 213, 222, 220, 255, 251, 179, 215, 182, (1,49,88): 215, 246, 251, 243, 220, 226, 209, 223, 214, 217, 217, (1,49,99): 229, 216, 181, 191, 205, 179, 233, 255, 251, 247, 247, (1,49,110): 245, 250, 255, 255, 225, 218, 222, 221, 219, 227, 252, (1,49,121): 251, 176, 218, 170, 222, 248, 250, 252, 252, 252, 252, (1,49,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,49,143): 252, (1,50,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,50,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,50,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 249, (1,50,33): 251, 225, 222, 216, 220, 217, 233, 255, 227, 182, 212, (1,50,44): 182, 226, 245, 253, 247, 254, 255, 253, 251, 248, 255, (1,50,55): 255, 207, 219, 217, 223, 219, 221, 246, 251, 182, 217, (1,50,66): 186, 223, 244, 253, 252, 255, 255, 250, 249, 252, 255, (1,50,77): 245, 220, 219, 220, 217, 219, 244, 251, 205, 210, 200, (1,50,88): 192, 242, 249, 255, 219, 227, 221, 204, 216, 218, 227, (1,50,99): 223, 221, 211, 198, 191, 215, 195, 208, 248, 250, 253, (1,50,110): 252, 255, 246, 255, 235, 213, 213, 216, 216, 226, 244, (1,50,121): 253, 202, 211, 193, 202, 243, 255, 252, 252, 252, 252, (1,50,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,50,143): 252, (1,51,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,51,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,51,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 254, (1,51,33): 254, 228, 214, 217, 210, 224, 229, 255, 239, 170, 218, (1,51,44): 187, 223, 245, 253, 249, 253, 255, 255, 253, 249, 249, (1,51,55): 254, 240, 228, 217, 219, 224, 223, 239, 253, 195, 212, (1,51,66): 199, 209, 242, 250, 254, 255, 251, 253, 245, 254, 252, (1,51,77): 225, 218, 219, 217, 211, 217, 236, 251, 221, 194, 208, (1,51,88): 192, 234, 251, 244, 255, 219, 213, 205, 221, 227, 222, (1,51,99): 223, 246, 255, 235, 192, 178, 208, 200, 169, 229, 247, (1,51,110): 243, 248, 247, 255, 234, 211, 212, 221, 220, 222, 235, (1,51,121): 251, 213, 193, 207, 180, 228, 255, 252, 252, 252, 252, (1,51,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,51,143): 252, (1,52,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,52,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,52,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (1,52,33): 251, 211, 217, 217, 216, 225, 222, 255, 251, 178, 214, (1,52,44): 190, 218, 248, 246, 251, 250, 252, 252, 252, 250, 248, (1,52,55): 249, 222, 213, 221, 215, 216, 219, 233, 255, 204, 201, (1,52,66): 200, 192, 231, 246, 249, 253, 255, 254, 245, 255, 248, (1,52,77): 248, 221, 210, 221, 218, 213, 233, 251, 225, 186, 208, (1,52,88): 179, 245, 254, 254, 245, 246, 222, 229, 211, 219, 230, (1,52,99): 223, 245, 255, 244, 255, 239, 169, 197, 207, 203, 194, (1,52,110): 210, 214, 237, 229, 221, 215, 213, 215, 214, 221, 232, (1,52,121): 249, 221, 188, 210, 185, 224, 255, 252, 252, 252, 252, (1,52,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,52,143): 252, (1,53,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,53,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,53,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, (1,53,33): 247, 242, 217, 222, 205, 215, 226, 244, 251, 192, 205, (1,53,44): 195, 202, 245, 249, 251, 250, 252, 252, 251, 252, 252, (1,53,55): 249, 250, 218, 218, 212, 217, 223, 228, 255, 220, 188, (1,53,66): 211, 185, 236, 248, 250, 252, 249, 255, 249, 249, 255, (1,53,77): 251, 216, 209, 223, 216, 209, 222, 246, 233, 177, 210, (1,53,88): 170, 232, 238, 255, 250, 250, 231, 222, 210, 212, 217, (1,53,99): 232, 252, 249, 248, 255, 253, 248, 224, 188, 172, 197, (1,53,110): 187, 178, 177, 184, 207, 219, 215, 213, 215, 223, 226, (1,53,121): 243, 236, 185, 208, 187, 223, 246, 252, 252, 252, 252, (1,53,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,53,143): 252, (1,54,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,54,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,54,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 249, (1,54,33): 252, 220, 206, 225, 211, 226, 211, 239, 254, 213, 195, (1,54,44): 204, 182, 230, 249, 252, 253, 251, 252, 253, 252, 252, (1,54,55): 251, 249, 215, 211, 212, 218, 220, 220, 253, 242, 175, (1,54,66): 218, 182, 233, 245, 250, 251, 255, 251, 248, 249, 255, (1,54,77): 253, 201, 214, 216, 212, 216, 222, 251, 249, 182, 215, (1,54,88): 192, 208, 238, 255, 255, 248, 245, 221, 216, 207, 218, (1,54,99): 223, 240, 255, 255, 255, 252, 255, 254, 253, 255, 246, (1,54,110): 243, 241, 237, 234, 237, 227, 215, 214, 217, 219, 226, (1,54,121): 243, 248, 184, 205, 186, 216, 247, 252, 252, 252, 252, (1,54,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,54,143): 252, (1,55,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,55,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,55,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, (1,55,33): 251, 255, 209, 221, 213, 211, 225, 222, 250, 225, 182, (1,55,44): 211, 179, 230, 252, 254, 254, 247, 247, 252, 252, 253, (1,55,55): 255, 255, 227, 213, 211, 217, 221, 217, 243, 255, 175, (1,55,66): 211, 184, 218, 248, 248, 255, 246, 255, 254, 245, 255, (1,55,77): 247, 255, 212, 208, 216, 212, 220, 249, 248, 189, 217, (1,55,88): 193, 207, 247, 252, 253, 251, 247, 255, 229, 224, 216, (1,55,99): 217, 234, 243, 250, 252, 249, 250, 254, 251, 248, 250, (1,55,110): 251, 251, 252, 239, 233, 223, 216, 212, 213, 217, 223, (1,55,121): 248, 247, 194, 209, 194, 199, 245, 252, 252, 252, 252, (1,55,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,55,143): 252, (1,56,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,56,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,56,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 243, (1,56,33): 255, 245, 225, 211, 203, 216, 206, 233, 246, 238, 179, (1,56,44): 209, 182, 223, 244, 252, 252, 252, 253, 252, 252, 252, (1,56,55): 252, 251, 234, 208, 217, 212, 215, 218, 238, 254, 194, (1,56,66): 212, 194, 202, 236, 255, 253, 253, 245, 251, 255, 253, (1,56,77): 248, 227, 209, 205, 219, 204, 215, 229, 255, 197, 183, (1,56,88): 208, 178, 235, 249, 255, 255, 252, 252, 252, 216, 220, (1,56,99): 214, 213, 222, 233, 253, 242, 255, 251, 255, 240, 252, (1,56,110): 255, 251, 243, 226, 218, 220, 218, 215, 215, 214, 229, (1,56,121): 236, 254, 197, 188, 190, 196, 237, 252, 253, 252, 251, (1,56,132): 252, 251, 251, 253, 252, 252, 252, 252, 252, 252, 252, (1,56,143): 252, (1,57,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,57,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,57,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (1,57,33): 252, 250, 221, 216, 205, 211, 217, 220, 242, 251, 174, (1,57,44): 212, 183, 222, 242, 252, 252, 252, 252, 252, 252, 252, (1,57,55): 252, 249, 247, 214, 210, 214, 214, 230, 242, 252, 193, (1,57,66): 198, 199, 183, 234, 255, 254, 253, 249, 255, 251, 253, (1,57,77): 255, 253, 219, 206, 212, 225, 208, 227, 254, 222, 187, (1,57,88): 218, 183, 223, 247, 255, 253, 255, 250, 251, 236, 221, (1,57,99): 222, 223, 219, 212, 238, 255, 253, 250, 255, 255, 251, (1,57,110): 238, 227, 230, 221, 210, 207, 211, 211, 208, 204, 208, (1,57,121): 210, 242, 200, 177, 170, 209, 229, 251, 253, 253, 252, (1,57,132): 252, 251, 250, 251, 252, 252, 252, 252, 252, 252, 252, (1,57,143): 252, (1,58,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,58,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,58,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, (1,58,33): 244, 248, 229, 212, 214, 215, 210, 212, 239, 255, 189, (1,58,44): 206, 192, 198, 235, 252, 252, 252, 252, 252, 252, 252, (1,58,55): 252, 252, 243, 203, 220, 209, 206, 206, 232, 251, 218, (1,58,66): 185, 204, 185, 231, 248, 248, 252, 253, 255, 243, 253, (1,58,77): 255, 253, 209, 212, 214, 213, 212, 223, 255, 232, 176, (1,58,88): 206, 182, 234, 254, 246, 254, 254, 255, 245, 255, 242, (1,58,99): 235, 216, 213, 229, 212, 221, 224, 230, 234, 244, 245, (1,58,110): 228, 220, 221, 210, 209, 212, 213, 220, 229, 224, 220, (1,58,121): 226, 239, 194, 166, 162, 202, 233, 246, 250, 252, 252, (1,58,132): 253, 254, 253, 253, 252, 252, 252, 252, 252, 252, 252, (1,58,143): 252, (1,59,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,59,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,59,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (1,59,33): 243, 252, 243, 209, 208, 217, 212, 215, 227, 249, 219, (1,59,44): 202, 206, 179, 243, 251, 252, 252, 251, 252, 252, 251, (1,59,55): 252, 255, 250, 211, 219, 214, 206, 210, 216, 247, 235, (1,59,66): 174, 205, 186, 226, 245, 246, 248, 255, 255, 246, 255, (1,59,77): 254, 252, 221, 219, 211, 215, 212, 210, 251, 251, 190, (1,59,88): 214, 192, 216, 244, 242, 250, 254, 248, 252, 252, 249, (1,59,99): 241, 224, 217, 220, 226, 214, 219, 213, 221, 212, 212, (1,59,110): 201, 208, 219, 221, 219, 222, 228, 223, 220, 228, 252, (1,59,121): 242, 216, 177, 167, 182, 184, 233, 246, 251, 253, 252, (1,59,132): 252, 253, 252, 251, 252, 252, 252, 252, 252, 252, 252, (1,59,143): 252, (1,60,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,60,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,60,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 248, (1,60,33): 245, 255, 250, 222, 207, 214, 215, 215, 223, 255, 226, (1,60,44): 179, 204, 169, 227, 249, 252, 252, 251, 252, 252, 251, (1,60,55): 252, 255, 255, 214, 201, 213, 206, 220, 208, 246, 248, (1,60,66): 181, 203, 185, 221, 255, 249, 253, 255, 250, 251, 252, (1,60,77): 247, 246, 235, 214, 214, 209, 216, 215, 229, 242, 192, (1,60,88): 177, 169, 197, 239, 246, 254, 255, 253, 255, 253, 255, (1,60,99): 239, 242, 218, 219, 227, 231, 234, 220, 223, 225, 233, (1,60,110): 229, 220, 223, 221, 223, 223, 223, 239, 255, 255, 216, (1,60,121): 169, 164, 167, 154, 180, 189, 224, 247, 252, 253, 252, (1,60,132): 252, 252, 252, 251, 252, 252, 252, 252, 252, 252, 252, (1,60,143): 252, (1,61,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,61,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,61,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (1,61,33): 250, 255, 248, 210, 218, 213, 209, 212, 219, 254, 237, (1,61,44): 166, 197, 170, 226, 247, 252, 252, 251, 252, 252, 251, (1,61,55): 252, 250, 245, 229, 208, 228, 225, 214, 217, 236, 255, (1,61,66): 192, 180, 168, 198, 241, 255, 254, 253, 251, 254, 249, (1,61,77): 249, 253, 247, 221, 226, 228, 224, 223, 243, 244, 191, (1,61,88): 162, 172, 208, 239, 243, 255, 249, 251, 251, 255, 249, (1,61,99): 255, 241, 241, 222, 209, 195, 207, 224, 239, 238, 217, (1,61,110): 228, 232, 236, 238, 244, 255, 249, 210, 178, 171, 168, (1,61,121): 166, 170, 165, 169, 193, 214, 228, 248, 251, 252, 251, (1,61,132): 252, 253, 253, 253, 252, 252, 252, 252, 252, 252, 252, (1,61,143): 252, (1,62,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,62,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,62,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,62,33): 254, 251, 245, 206, 219, 223, 222, 225, 216, 244, 237, (1,62,44): 170, 174, 170, 225, 245, 251, 253, 251, 252, 252, 251, (1,62,55): 252, 255, 252, 255, 222, 239, 229, 229, 238, 251, 240, (1,62,66): 180, 164, 176, 216, 231, 246, 252, 251, 254, 250, 253, (1,62,77): 251, 253, 251, 248, 201, 225, 220, 224, 229, 209, 169, (1,62,88): 165, 186, 210, 242, 249, 254, 255, 249, 243, 249, 246, (1,62,99): 255, 254, 242, 234, 219, 213, 198, 185, 181, 194, 199, (1,62,110): 210, 208, 191, 187, 179, 165, 161, 164, 163, 156, 164, (1,62,121): 170, 167, 179, 197, 198, 214, 235, 252, 253, 253, 252, (1,62,132): 252, 251, 250, 252, 252, 252, 252, 252, 252, 252, 252, (1,62,143): 252, (1,63,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,63,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,63,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (1,63,33): 255, 247, 254, 255, 231, 238, 237, 237, 233, 255, 207, (1,63,44): 168, 162, 191, 208, 243, 251, 253, 251, 253, 252, 251, (1,63,55): 253, 244, 249, 251, 255, 236, 204, 203, 202, 182, 175, (1,63,66): 169, 175, 179, 214, 223, 255, 252, 251, 253, 242, 255, (1,63,77): 252, 250, 255, 247, 255, 228, 211, 178, 157, 155, 169, (1,63,88): 175, 173, 197, 234, 247, 253, 253, 253, 255, 248, 255, (1,63,99): 255, 254, 252, 253, 248, 228, 221, 205, 196, 187, 184, (1,63,110): 171, 167, 178, 176, 171, 171, 174, 174, 175, 180, 176, (1,63,121): 189, 188, 205, 206, 220, 232, 241, 251, 252, 252, 252, (1,63,132): 253, 252, 252, 253, 252, 252, 252, 252, 252, 252, 252, (1,63,143): 252, (1,64,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,64,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,64,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, (1,64,33): 253, 249, 247, 252, 249, 225, 199, 185, 175, 163, 167, (1,64,44): 173, 176, 191, 211, 236, 251, 252, 252, 253, 251, 253, (1,64,55): 251, 252, 253, 252, 251, 249, 238, 212, 187, 174, 171, (1,64,66): 173, 174, 188, 202, 236, 254, 252, 252, 252, 252, 252, (1,64,77): 252, 252, 252, 251, 253, 245, 218, 198, 188, 178, 181, (1,64,88): 180, 190, 209, 232, 248, 253, 252, 251, 252, 252, 252, (1,64,99): 252, 252, 252, 252, 252, 243, 238, 228, 218, 212, 204, (1,64,110): 197, 195, 189, 186, 188, 188, 188, 188, 189, 196, 203, (1,64,121): 206, 212, 219, 227, 237, 245, 251, 252, 252, 252, 252, (1,64,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,64,143): 252, (1,65,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,65,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,65,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, (1,65,33): 253, 248, 247, 251, 255, 252, 241, 220, 193, 179, 178, (1,65,44): 171, 178, 197, 213, 236, 250, 252, 253, 253, 251, 253, (1,65,55): 251, 250, 251, 251, 252, 252, 245, 225, 206, 193, 188, (1,65,66): 187, 183, 198, 210, 234, 252, 252, 252, 252, 252, 252, (1,65,77): 252, 252, 252, 253, 254, 252, 234, 219, 209, 198, 202, (1,65,88): 204, 210, 224, 241, 252, 254, 252, 251, 252, 252, 252, (1,65,99): 252, 252, 252, 252, 252, 252, 250, 244, 239, 235, 228, (1,65,110): 221, 218, 211, 211, 208, 211, 211, 209, 214, 218, 220, (1,65,121): 225, 233, 240, 245, 249, 252, 253, 252, 252, 252, 252, (1,65,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,65,143): 252, (1,66,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,66,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,66,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 250, (1,66,33): 252, 253, 251, 249, 247, 242, 235, 221, 202, 190, 185, (1,66,44): 188, 192, 203, 222, 238, 251, 252, 253, 253, 250, 253, (1,66,55): 252, 251, 252, 252, 252, 254, 251, 239, 226, 215, 210, (1,66,66): 209, 204, 219, 228, 238, 251, 252, 252, 252, 252, 252, (1,66,77): 252, 252, 252, 251, 251, 252, 245, 238, 229, 221, 226, (1,66,88): 222, 226, 234, 245, 252, 253, 252, 253, 252, 252, 252, (1,66,99): 252, 252, 252, 252, 252, 251, 251, 250, 248, 247, 243, (1,66,110): 238, 237, 231, 232, 226, 231, 232, 228, 236, 236, 239, (1,66,121): 242, 247, 250, 252, 252, 252, 252, 252, 252, 252, 252, (1,66,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,66,143): 252, (1,67,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,67,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,67,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 248, (1,67,33): 252, 255, 255, 255, 254, 252, 248, 245, 233, 223, 212, (1,67,44): 216, 220, 221, 239, 244, 252, 252, 252, 252, 251, 253, (1,67,55): 252, 253, 253, 252, 251, 253, 253, 247, 240, 235, 229, (1,67,66): 232, 228, 238, 244, 245, 252, 252, 252, 252, 252, 252, (1,67,77): 252, 252, 252, 253, 251, 253, 251, 249, 246, 241, 246, (1,67,88): 242, 243, 246, 250, 252, 252, 251, 252, 252, 252, 252, (1,67,99): 252, 252, 252, 252, 252, 253, 253, 253, 253, 252, 252, (1,67,110): 251, 251, 248, 249, 244, 248, 249, 246, 251, 251, 251, (1,67,121): 251, 252, 252, 252, 251, 252, 252, 252, 252, 252, 252, (1,67,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,67,143): 252, (1,68,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,68,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,68,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (1,68,33): 252, 251, 252, 254, 255, 255, 255, 253, 240, 240, 232, (1,68,44): 227, 236, 239, 243, 250, 253, 251, 251, 252, 252, 253, (1,68,55): 251, 252, 252, 251, 251, 252, 253, 252, 250, 252, 243, (1,68,66): 248, 244, 246, 251, 251, 253, 252, 252, 252, 252, 252, (1,68,77): 252, 252, 252, 254, 253, 253, 252, 253, 253, 251, 254, (1,68,88): 253, 253, 253, 253, 252, 251, 251, 252, 252, 252, 252, (1,68,99): 252, 252, 252, 252, 252, 252, 251, 251, 251, 251, 252, (1,68,110): 253, 254, 253, 250, 251, 251, 252, 252, 251, 253, 252, (1,68,121): 253, 253, 253, 252, 252, 251, 251, 252, 252, 252, 252, (1,68,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,68,143): 252, (1,69,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,69,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,69,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (1,69,33): 252, 251, 250, 249, 249, 251, 252, 248, 247, 250, 248, (1,69,44): 249, 255, 255, 255, 253, 253, 251, 251, 252, 253, 252, (1,69,55): 251, 252, 252, 252, 252, 252, 253, 253, 253, 255, 249, (1,69,66): 254, 253, 249, 253, 253, 251, 252, 252, 252, 252, 252, (1,69,77): 252, 252, 252, 251, 251, 251, 250, 251, 252, 252, 251, (1,69,88): 252, 251, 251, 252, 252, 252, 252, 253, 252, 252, 252, (1,69,99): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, (1,69,110): 253, 253, 253, 251, 253, 252, 253, 253, 250, 253, 251, (1,69,121): 251, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,69,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,69,143): 252, (1,70,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,70,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,70,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,70,33): 252, 252, 251, 250, 248, 248, 248, 255, 255, 255, 251, (1,70,44): 255, 254, 249, 253, 253, 252, 252, 252, 252, 252, 252, (1,70,55): 252, 253, 253, 253, 252, 252, 252, 252, 252, 251, 250, (1,70,66): 253, 254, 252, 253, 253, 251, 252, 252, 252, 252, 252, (1,70,77): 252, 252, 252, 252, 252, 252, 253, 253, 252, 252, 251, (1,70,88): 253, 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,70,99): 252, 252, 252, 252, 252, 252, 250, 251, 252, 251, 251, (1,70,110): 252, 250, 252, 252, 251, 252, 252, 251, 251, 251, 253, (1,70,121): 253, 252, 252, 252, 253, 253, 254, 252, 252, 252, 252, (1,70,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,70,143): 252, (1,71,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,71,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,71,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 248, (1,71,33): 251, 253, 255, 255, 255, 255, 252, 251, 249, 250, 253, (1,71,44): 250, 248, 250, 247, 251, 250, 252, 252, 251, 251, 251, (1,71,55): 252, 252, 251, 252, 252, 252, 252, 252, 253, 252, 254, (1,71,66): 250, 251, 251, 251, 252, 252, 252, 252, 252, 252, 252, (1,71,77): 252, 252, 252, 253, 252, 252, 253, 252, 251, 252, 252, (1,71,88): 252, 252, 252, 251, 251, 252, 252, 251, 252, 252, 252, (1,71,99): 252, 252, 252, 252, 252, 253, 251, 252, 252, 251, 252, (1,71,110): 253, 251, 251, 255, 250, 254, 253, 249, 254, 252, 251, (1,71,121): 251, 251, 252, 252, 252, 251, 250, 252, 252, 252, 252, (1,71,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (1,71,143): 252, (2,0,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,0,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,1,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,2,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,3,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,4,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,5,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,6,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,7,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,56): 252, 252, 252, 252, 252, 252, 252, 252, 255, 253, 252, (2,8,67): 254, 245, 247, 255, 248, 252, 251, 252, 253, 251, 251, (2,8,78): 252, 251, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,8,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,56): 252, 252, 252, 252, 252, 252, 252, 252, 245, 251, 251, (2,9,67): 253, 255, 255, 253, 252, 253, 251, 252, 252, 252, 254, (2,9,78): 255, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,9,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 253, (2,10,66): 237, 213, 202, 168, 222, 252, 252, 252, 253, 252, 252, (2,10,77): 254, 254, 251, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,10,143): 252, (2,11,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, (2,11,66): 227, 190, 255, 253, 178, 255, 251, 252, 253, 253, 252, (2,11,77): 252, 252, 251, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,11,143): 252, (2,12,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 244, 255, (2,12,66): 254, 179, 255, 244, 184, 245, 252, 251, 251, 253, 253, (2,12,77): 252, 252, 253, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,12,143): 252, (2,13,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 254, 254, (2,13,66): 255, 212, 220, 255, 220, 213, 255, 253, 250, 251, 253, (2,13,77): 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,13,143): 252, (2,14,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 244, 255, (2,14,66): 255, 234, 177, 184, 176, 175, 248, 253, 253, 251, 252, (2,14,77): 252, 251, 251, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,14,143): 252, (2,15,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 242, 255, (2,15,66): 249, 235, 173, 178, 210, 180, 235, 248, 255, 252, 251, (2,15,77): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,15,143): 252, (2,16,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,55): 252, 251, 254, 253, 255, 251, 255, 250, 252, 234, 253, (2,16,66): 255, 250, 180, 249, 245, 207, 223, 252, 250, 244, 255, (2,16,77): 253, 246, 250, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,16,143): 252, (2,17,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,55): 252, 251, 254, 252, 254, 250, 252, 251, 248, 246, 243, (2,17,66): 243, 250, 221, 215, 255, 237, 179, 246, 252, 252, 253, (2,17,77): 250, 253, 251, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,17,143): 252, (2,18,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,55): 252, 250, 251, 251, 253, 251, 249, 252, 243, 255, 232, (2,18,66): 250, 242, 249, 190, 252, 246, 175, 254, 254, 255, 248, (2,18,77): 251, 255, 246, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,18,143): 252, (2,19,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,55): 252, 253, 254, 250, 253, 254, 247, 250, 242, 246, 238, (2,19,66): 244, 237, 250, 183, 249, 248, 185, 240, 252, 255, 248, (2,19,77): 247, 255, 253, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,19,143): 252, (2,20,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,55): 252, 249, 255, 248, 252, 255, 248, 252, 255, 239, 242, (2,20,66): 242, 245, 249, 205, 220, 250, 206, 214, 252, 252, 250, (2,20,77): 248, 253, 255, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,20,143): 252, (2,21,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,55): 252, 249, 255, 248, 254, 254, 248, 254, 255, 237, 243, (2,21,66): 242, 250, 249, 237, 192, 239, 204, 187, 250, 248, 252, (2,21,77): 255, 252, 249, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,21,143): 252, (2,22,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,55): 252, 252, 255, 250, 255, 251, 250, 248, 255, 229, 239, (2,22,66): 236, 248, 246, 237, 173, 181, 177, 162, 244, 246, 251, (2,22,77): 255, 255, 248, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,22,143): 252, (2,23,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,55): 252, 251, 252, 246, 255, 250, 255, 245, 247, 255, 235, (2,23,66): 237, 231, 232, 239, 183, 176, 202, 178, 245, 248, 250, (2,23,77): 255, 255, 245, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,23,143): 252, (2,24,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 233, (2,24,66): 243, 237, 230, 246, 178, 255, 248, 166, 229, 254, 255, (2,24,77): 255, 252, 249, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,24,143): 252, (2,25,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 232, (2,25,66): 235, 239, 231, 238, 176, 244, 246, 172, 221, 255, 255, (2,25,77): 254, 253, 248, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,25,143): 252, (2,26,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, 241, (2,26,66): 232, 243, 237, 240, 193, 217, 243, 195, 203, 247, 253, (2,26,77): 253, 254, 250, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,26,143): 252, (2,27,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 250, 242, (2,27,66): 233, 239, 233, 239, 215, 191, 242, 225, 182, 236, 251, (2,27,77): 254, 254, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,27,143): 252, (2,28,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 254, 250, (2,28,66): 240, 239, 231, 235, 233, 175, 240, 245, 176, 235, 251, (2,28,77): 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,28,143): 252, (2,29,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, 246, (2,29,66): 233, 232, 231, 236, 241, 181, 232, 252, 193, 232, 254, (2,29,77): 251, 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,29,143): 252, (2,30,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, 249, (2,30,66): 234, 230, 232, 233, 237, 201, 213, 253, 218, 208, 251, (2,30,77): 255, 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,30,143): 252, (2,31,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 255, (2,31,66): 248, 234, 228, 228, 235, 224, 192, 252, 232, 176, 246, (2,31,77): 255, 249, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,31,143): 252, (2,32,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, 255, (2,32,66): 239, 245, 233, 230, 236, 242, 169, 216, 189, 168, 189, (2,32,77): 254, 254, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,32,143): 252, (2,33,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (2,33,66): 250, 228, 229, 230, 231, 240, 224, 173, 171, 173, 183, (2,33,77): 246, 253, 251, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,33,143): 252, (2,34,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 250, 249, (2,34,66): 255, 240, 234, 227, 224, 255, 255, 178, 187, 184, 183, (2,34,77): 237, 255, 253, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,34,143): 252, (2,35,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 249, 252, (2,35,66): 251, 245, 230, 230, 222, 242, 230, 194, 203, 239, 229, (2,35,77): 219, 255, 255, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,35,143): 252, (2,36,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 254, 248, (2,36,66): 255, 245, 229, 229, 227, 227, 235, 225, 194, 255, 238, (2,36,77): 184, 255, 251, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,36,143): 252, (2,37,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, 247, (2,37,66): 255, 253, 224, 233, 226, 230, 228, 241, 177, 255, 233, (2,37,77): 180, 255, 249, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,37,143): 252, (2,38,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 254, 251, (2,38,66): 249, 248, 230, 239, 226, 216, 227, 242, 184, 243, 245, (2,38,77): 205, 214, 247, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,38,143): 252, (2,39,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, 248, (2,39,66): 245, 255, 255, 231, 230, 224, 225, 233, 196, 226, 250, (2,39,77): 238, 193, 255, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,39,143): 252, (2,40,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, (2,40,66): 255, 243, 251, 224, 220, 226, 221, 229, 230, 185, 255, (2,40,77): 244, 182, 251, 255, 255, 249, 251, 251, 255, 251, 246, (2,40,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,40,143): 252, (2,41,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 255, (2,41,66): 253, 247, 255, 222, 222, 226, 219, 229, 227, 183, 254, (2,41,77): 250, 175, 244, 253, 255, 250, 251, 252, 253, 253, 248, (2,41,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,41,143): 252, (2,42,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 250, 252, (2,42,66): 255, 251, 252, 231, 230, 223, 224, 229, 233, 196, 228, (2,42,77): 255, 199, 214, 247, 252, 252, 252, 254, 251, 255, 253, (2,42,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,42,143): 252, (2,43,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 245, (2,43,66): 255, 254, 246, 250, 230, 224, 219, 224, 233, 222, 204, (2,43,77): 255, 229, 178, 250, 249, 255, 255, 254, 247, 250, 255, (2,43,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,43,143): 252, (2,44,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 249, (2,44,66): 253, 255, 249, 254, 210, 221, 224, 223, 221, 229, 189, (2,44,77): 255, 245, 181, 253, 250, 254, 255, 255, 248, 248, 255, (2,44,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,44,143): 252, (2,45,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 254, (2,45,66): 249, 255, 246, 254, 222, 216, 223, 219, 224, 235, 196, (2,45,77): 253, 248, 188, 243, 254, 250, 253, 255, 252, 250, 255, (2,45,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,45,143): 252, (2,46,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, (2,46,66): 252, 251, 248, 255, 252, 218, 223, 215, 223, 229, 204, (2,46,77): 226, 246, 210, 213, 255, 246, 251, 255, 251, 247, 250, (2,46,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,46,143): 252, (2,47,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 254, 251, (2,47,66): 254, 247, 255, 253, 251, 216, 220, 215, 218, 230, 224, (2,47,77): 198, 242, 236, 178, 255, 244, 252, 255, 250, 251, 252, (2,47,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,47,143): 252, (2,48,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, 251, (2,48,66): 255, 244, 255, 251, 255, 216, 212, 228, 216, 219, 226, (2,48,77): 177, 255, 246, 183, 243, 253, 245, 250, 255, 248, 253, (2,48,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,48,143): 252, (2,49,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 250, (2,49,66): 255, 250, 255, 249, 253, 235, 221, 227, 211, 219, 224, (2,49,77): 181, 242, 253, 199, 224, 253, 254, 254, 254, 252, 248, (2,49,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,49,143): 252, (2,50,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 247, (2,50,66): 255, 253, 253, 251, 249, 250, 224, 221, 211, 217, 226, (2,50,77): 195, 217, 254, 225, 193, 249, 251, 252, 251, 255, 249, (2,50,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,50,143): 252, (2,51,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 247, (2,51,66): 254, 252, 250, 255, 245, 251, 221, 217, 219, 219, 231, (2,51,77): 214, 194, 252, 250, 177, 254, 251, 249, 253, 251, 252, (2,51,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,51,143): 252, (2,52,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, 250, (2,52,66): 254, 249, 246, 255, 250, 249, 225, 213, 219, 212, 225, (2,52,77): 222, 183, 252, 252, 181, 247, 253, 248, 251, 249, 255, (2,52,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,52,143): 252, (2,53,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 255, 253, (2,53,66): 253, 246, 246, 255, 255, 252, 230, 211, 219, 218, 227, (2,53,77): 224, 186, 237, 249, 202, 215, 250, 249, 247, 255, 254, (2,53,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,53,143): 252, (2,54,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 255, (2,54,66): 253, 247, 251, 255, 254, 252, 250, 219, 211, 213, 217, (2,54,77): 220, 209, 225, 255, 230, 190, 251, 253, 251, 255, 250, (2,54,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,54,143): 252, (2,55,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 247, 255, (2,55,66): 250, 248, 255, 254, 248, 246, 248, 219, 207, 216, 214, (2,55,77): 215, 221, 198, 250, 240, 181, 255, 255, 252, 250, 253, (2,55,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,55,143): 252, (2,56,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,66): 252, 252, 252, 252, 252, 252, 255, 219, 214, 218, 217, (2,56,77): 209, 230, 173, 240, 249, 167, 237, 254, 245, 252, 254, (2,56,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,56,143): 252, (2,57,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,66): 252, 252, 252, 252, 252, 252, 253, 225, 201, 213, 206, (2,57,77): 213, 215, 193, 183, 174, 175, 218, 252, 247, 255, 241, (2,57,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,57,143): 252, (2,58,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,66): 252, 252, 252, 252, 252, 252, 247, 249, 212, 211, 198, (2,58,77): 218, 206, 219, 170, 181, 201, 184, 254, 255, 255, 251, (2,58,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,58,143): 252, (2,59,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,66): 252, 252, 252, 252, 252, 252, 255, 240, 209, 213, 206, (2,59,77): 211, 204, 212, 180, 220, 205, 174, 254, 242, 251, 255, (2,59,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,59,143): 252, (2,60,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,66): 252, 252, 252, 252, 252, 252, 255, 254, 227, 226, 208, (2,60,77): 212, 200, 214, 176, 214, 214, 173, 255, 237, 247, 253, (2,60,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,60,143): 252, (2,61,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,66): 252, 252, 252, 252, 252, 252, 250, 250, 250, 211, 213, (2,61,77): 209, 217, 209, 178, 202, 201, 174, 211, 255, 255, 255, (2,61,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,61,143): 252, (2,62,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,66): 252, 252, 252, 252, 252, 252, 254, 245, 255, 243, 205, (2,62,77): 197, 209, 192, 174, 169, 168, 228, 206, 251, 254, 252, (2,62,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,62,143): 252, (2,63,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,66): 252, 252, 252, 252, 252, 252, 250, 255, 250, 248, 236, (2,63,77): 215, 204, 171, 167, 175, 215, 216, 219, 248, 255, 247, (2,63,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,63,143): 252, (2,64,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,66): 252, 252, 252, 252, 252, 252, 255, 253, 250, 254, 251, (2,64,77): 250, 250, 201, 224, 253, 249, 227, 232, 235, 252, 250, (2,64,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,64,143): 252, (2,65,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,66): 252, 252, 252, 252, 252, 252, 254, 253, 250, 247, 251, (2,65,77): 254, 255, 255, 250, 255, 251, 230, 233, 235, 253, 250, (2,65,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,65,143): 252, (2,66,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,66): 252, 252, 252, 252, 252, 252, 253, 253, 254, 249, 250, (2,66,77): 249, 246, 254, 255, 255, 253, 245, 245, 245, 254, 250, (2,66,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,66,143): 252, (2,67,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,66): 252, 252, 252, 252, 252, 252, 253, 249, 253, 252, 253, (2,67,77): 254, 250, 247, 254, 251, 255, 253, 252, 249, 252, 252, (2,67,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,67,143): 252, (2,68,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,66): 252, 252, 252, 252, 252, 252, 251, 250, 252, 255, 251, (2,68,77): 254, 255, 251, 253, 252, 254, 252, 253, 251, 250, 253, (2,68,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,68,143): 252, (2,69,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,66): 252, 252, 252, 252, 252, 252, 249, 255, 252, 255, 255, (2,69,77): 254, 255, 255, 249, 251, 252, 251, 255, 254, 251, 252, (2,69,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,69,143): 252, (2,70,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,66): 252, 252, 252, 252, 252, 252, 253, 255, 248, 252, 253, (2,70,77): 253, 250, 255, 253, 254, 251, 250, 251, 252, 252, 252, (2,70,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,70,143): 252, (2,71,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,55): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,66): 252, 252, 252, 252, 252, 252, 255, 254, 253, 250, 247, (2,71,77): 251, 248, 250, 249, 251, 251, 254, 252, 251, 253, 251, (2,71,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,71,143): 252, (3,0,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,0,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,1,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,2,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,3,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,4,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,5,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,6,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,7,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,8,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,8,12): 252, 252, 252, 252, 248, 253, 255, 252, 250, 251, 251, (3,8,23): 254, 252, 255, 254, 249, 251, 251, 252, 250, 255, 255, (3,8,34): 254, 255, 252, 254, 252, 252, 254, 247, 249, 255, 254, (3,8,45): 255, 254, 248, 252, 252, 252, 252, 252, 252, 252, 252, (3,8,56): 255, 254, 241, 247, 253, 254, 254, 255, 250, 247, 255, (3,8,67): 253, 252, 244, 245, 254, 253, 253, 254, 247, 247, 245, (3,8,78): 248, 250, 252, 248, 249, 248, 250, 248, 248, 255, 253, (3,8,89): 247, 253, 252, 255, 255, 253, 248, 255, 255, 255, 253, (3,8,100): 253, 250, 250, 253, 253, 253, 255, 255, 255, 254, 254, (3,8,111): 254, 251, 251, 247, 247, 252, 255, 249, 254, 252, 252, (3,8,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,8,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,9,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,9,12): 252, 252, 252, 252, 251, 253, 254, 251, 249, 251, 254, (3,9,23): 255, 248, 251, 255, 255, 250, 243, 247, 254, 252, 254, (3,9,34): 251, 249, 243, 247, 250, 252, 255, 255, 255, 246, 250, (3,9,45): 253, 250, 255, 252, 252, 252, 252, 252, 252, 252, 252, (3,9,56): 248, 253, 255, 253, 255, 255, 254, 250, 255, 255, 251, (3,9,67): 255, 248, 252, 253, 251, 255, 251, 248, 248, 255, 255, (3,9,78): 255, 249, 253, 252, 253, 255, 252, 254, 247, 246, 254, (3,9,89): 255, 255, 252, 250, 255, 253, 255, 247, 249, 250, 249, (3,9,100): 252, 252, 251, 249, 249, 248, 249, 248, 248, 248, 249, (3,9,111): 250, 255, 255, 255, 255, 255, 249, 251, 246, 252, 252, (3,9,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,9,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,10,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,10,11): 252, 252, 252, 252, 252, 255, 251, 251, 249, 251, 254, (3,10,22): 255, 255, 255, 251, 248, 249, 249, 255, 253, 255, 251, (3,10,33): 249, 252, 255, 255, 255, 255, 254, 247, 251, 248, 255, (3,10,44): 255, 247, 253, 245, 252, 252, 252, 252, 252, 252, 252, (3,10,55): 252, 249, 255, 250, 244, 251, 254, 246, 251, 249, 253, (3,10,66): 253, 248, 250, 255, 255, 251, 248, 249, 253, 255, 255, (3,10,77): 254, 255, 254, 255, 254, 255, 247, 254, 247, 255, 255, (3,10,88): 255, 249, 252, 255, 251, 245, 246, 252, 251, 252, 252, (3,10,99): 251, 252, 255, 255, 255, 253, 254, 254, 254, 254, 254, (3,10,110): 253, 253, 245, 246, 255, 250, 255, 254, 255, 252, 252, (3,10,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,10,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,10,143): 252, (3,11,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,11,11): 252, 252, 252, 252, 252, 255, 249, 248, 252, 255, 252, (3,11,22): 246, 247, 243, 254, 255, 253, 247, 255, 217, 185, 181, (3,11,33): 162, 171, 171, 186, 171, 203, 230, 254, 250, 255, 255, (3,11,44): 249, 255, 250, 251, 252, 252, 252, 252, 252, 252, 252, (3,11,55): 252, 245, 247, 249, 247, 255, 250, 250, 252, 250, 244, (3,11,66): 249, 246, 255, 252, 252, 250, 243, 255, 255, 255, 249, (3,11,77): 246, 250, 252, 245, 245, 247, 246, 253, 253, 250, 242, (3,11,88): 255, 254, 247, 246, 254, 255, 255, 255, 251, 251, 249, (3,11,99): 251, 251, 252, 252, 255, 255, 255, 254, 252, 251, 253, (3,11,110): 253, 253, 255, 250, 248, 249, 255, 249, 254, 249, 252, (3,11,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,11,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,11,143): 252, (3,12,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,12,11): 252, 252, 252, 252, 252, 253, 247, 248, 255, 255, 247, (3,12,22): 243, 248, 252, 252, 248, 212, 161, 174, 200, 228, 217, (3,12,33): 235, 238, 254, 237, 236, 205, 192, 176, 175, 237, 249, (3,12,44): 250, 250, 252, 253, 252, 252, 252, 252, 252, 252, 252, (3,12,55): 252, 255, 251, 255, 255, 217, 214, 214, 214, 223, 255, (3,12,66): 255, 255, 248, 252, 254, 250, 253, 248, 249, 252, 250, (3,12,77): 247, 248, 247, 255, 255, 255, 252, 255, 255, 253, 244, (3,12,88): 248, 251, 249, 245, 251, 255, 251, 241, 254, 255, 255, (3,12,99): 255, 250, 252, 248, 248, 252, 254, 251, 253, 251, 254, (3,12,110): 251, 248, 252, 255, 253, 250, 245, 252, 250, 255, 252, (3,12,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,12,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,12,143): 252, (3,13,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,13,11): 252, 252, 252, 252, 252, 252, 250, 249, 255, 255, 249, (3,13,22): 252, 255, 251, 183, 169, 201, 220, 245, 242, 234, 234, (3,13,33): 240, 240, 241, 236, 237, 233, 234, 225, 228, 194, 181, (3,13,44): 200, 253, 252, 249, 252, 252, 252, 252, 252, 252, 252, (3,13,55): 252, 252, 244, 209, 164, 186, 203, 197, 207, 194, 180, (3,13,66): 168, 255, 244, 248, 255, 250, 255, 251, 254, 250, 245, (3,13,77): 255, 255, 255, 210, 180, 175, 178, 191, 208, 243, 248, (3,13,88): 252, 253, 255, 255, 222, 237, 236, 220, 235, 245, 247, (3,13,99): 248, 245, 255, 255, 255, 251, 253, 251, 252, 250, 254, (3,13,110): 251, 251, 253, 254, 255, 255, 252, 248, 253, 251, 252, (3,13,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,13,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,13,143): 252, (3,14,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,14,11): 252, 252, 252, 252, 252, 255, 251, 248, 255, 252, 251, (3,14,22): 253, 222, 209, 179, 196, 237, 242, 232, 225, 231, 216, (3,14,33): 213, 211, 208, 216, 225, 229, 228, 230, 235, 237, 236, (3,14,44): 192, 181, 255, 247, 252, 252, 252, 252, 252, 252, 252, (3,14,55): 252, 250, 189, 173, 160, 218, 252, 241, 242, 239, 245, (3,14,66): 191, 225, 249, 255, 252, 250, 245, 253, 255, 249, 255, (3,14,77): 255, 197, 154, 185, 227, 225, 230, 225, 210, 183, 198, (3,14,88): 255, 255, 217, 166, 184, 183, 189, 199, 181, 185, 178, (3,14,99): 174, 165, 169, 165, 162, 179, 180, 175, 177, 177, 189, (3,14,110): 192, 196, 201, 203, 199, 197, 204, 219, 255, 246, 252, (3,14,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,14,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,14,143): 252, (3,15,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,15,11): 252, 252, 252, 252, 252, 255, 252, 246, 255, 249, 248, (3,15,22): 229, 160, 164, 207, 238, 228, 225, 222, 211, 201, 205, (3,15,33): 202, 202, 198, 199, 196, 202, 206, 216, 212, 212, 225, (3,15,44): 239, 213, 176, 221, 252, 252, 252, 252, 252, 252, 252, (3,15,55): 252, 252, 182, 215, 185, 217, 218, 220, 228, 225, 238, (3,15,66): 209, 194, 255, 251, 247, 250, 252, 252, 249, 254, 255, (3,15,77): 217, 162, 185, 191, 235, 239, 231, 236, 248, 221, 183, (3,15,88): 248, 210, 166, 185, 202, 236, 240, 243, 243, 241, 238, (3,15,99): 246, 242, 244, 239, 243, 234, 236, 230, 230, 224, 229, (3,15,110): 223, 222, 223, 210, 204, 221, 220, 195, 162, 255, 252, (3,15,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,15,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,15,143): 252, (3,16,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,16,11): 252, 252, 252, 252, 252, 253, 244, 252, 254, 250, 253, (3,16,22): 192, 190, 174, 214, 230, 228, 202, 200, 194, 180, 177, (3,16,33): 178, 172, 180, 174, 176, 175, 178, 188, 193, 200, 209, (3,16,44): 224, 232, 221, 191, 226, 250, 246, 255, 252, 251, 255, (3,16,55): 253, 240, 202, 245, 228, 171, 225, 201, 207, 204, 208, (3,16,66): 211, 183, 244, 255, 251, 248, 252, 255, 249, 255, 252, (3,16,77): 225, 209, 249, 167, 232, 221, 223, 224, 222, 224, 179, (3,16,88): 249, 188, 235, 197, 186, 240, 230, 221, 223, 230, 232, (3,16,99): 229, 231, 231, 234, 228, 237, 230, 234, 230, 233, 234, (3,16,110): 235, 237, 236, 239, 234, 244, 242, 237, 189, 235, 251, (3,16,121): 252, 252, 252, 251, 252, 255, 250, 252, 252, 252, 252, (3,16,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,16,143): 252, (3,17,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,17,11): 252, 252, 252, 252, 252, 255, 248, 254, 247, 255, 251, (3,17,22): 164, 238, 193, 197, 217, 202, 182, 175, 180, 171, 165, (3,17,33): 167, 164, 163, 156, 174, 166, 162, 175, 169, 176, 192, (3,17,44): 206, 211, 212, 222, 187, 216, 254, 255, 252, 247, 255, (3,17,55): 253, 253, 205, 227, 221, 171, 202, 191, 192, 187, 189, (3,17,66): 200, 159, 250, 252, 250, 251, 255, 250, 253, 254, 255, (3,17,77): 243, 187, 249, 159, 211, 211, 203, 205, 199, 212, 181, (3,17,88): 208, 208, 225, 223, 188, 220, 219, 215, 214, 215, 214, (3,17,99): 217, 210, 218, 213, 216, 223, 213, 219, 216, 215, 217, (3,17,110): 220, 219, 224, 223, 224, 224, 225, 235, 214, 200, 251, (3,17,121): 253, 252, 252, 251, 250, 253, 253, 252, 252, 252, 252, (3,17,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,17,143): 252, (3,18,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,18,11): 252, 252, 252, 252, 252, 251, 255, 255, 250, 248, 248, (3,18,22): 180, 238, 194, 198, 208, 180, 164, 165, 164, 158, 159, (3,18,33): 158, 148, 149, 158, 140, 156, 159, 156, 158, 160, 175, (3,18,44): 174, 187, 208, 217, 217, 186, 217, 255, 251, 248, 251, (3,18,55): 254, 255, 224, 193, 240, 157, 196, 173, 177, 171, 171, (3,18,66): 182, 144, 225, 254, 255, 251, 251, 254, 251, 252, 248, (3,18,77): 248, 181, 251, 163, 190, 183, 183, 172, 181, 187, 176, (3,18,88): 196, 220, 211, 229, 159, 200, 194, 187, 188, 184, 198, (3,18,99): 189, 191, 191, 191, 193, 201, 193, 199, 197, 195, 200, (3,18,110): 205, 204, 204, 208, 198, 203, 207, 207, 211, 188, 246, (3,18,121): 252, 251, 251, 253, 251, 251, 253, 252, 252, 252, 252, (3,18,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,18,143): 252, (3,19,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,19,11): 252, 252, 252, 252, 252, 251, 253, 253, 255, 250, 255, (3,19,22): 196, 239, 209, 181, 185, 179, 160, 155, 155, 149, 127, (3,19,33): 124, 124, 111, 118, 121, 118, 137, 139, 151, 151, 158, (3,19,44): 159, 177, 185, 190, 213, 220, 182, 235, 249, 251, 247, (3,19,55): 255, 255, 241, 182, 247, 162, 182, 166, 159, 155, 153, (3,19,66): 168, 145, 199, 246, 252, 251, 254, 250, 253, 252, 250, (3,19,77): 255, 183, 242, 188, 175, 180, 160, 165, 162, 176, 168, (3,19,88): 179, 215, 190, 237, 153, 190, 184, 168, 168, 166, 170, (3,19,99): 172, 169, 177, 173, 170, 172, 170, 179, 177, 176, 179, (3,19,110): 175, 176, 175, 185, 178, 189, 181, 185, 192, 153, 241, (3,19,121): 253, 252, 250, 255, 253, 251, 252, 252, 252, 252, 252, (3,19,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,19,143): 252, (3,20,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,20,11): 252, 252, 252, 252, 252, 252, 254, 249, 255, 252, 247, (3,20,22): 203, 223, 218, 156, 174, 165, 162, 152, 140, 103, 107, (3,20,33): 104, 120, 106, 122, 126, 138, 120, 117, 134, 144, 147, (3,20,44): 154, 163, 157, 172, 193, 210, 221, 166, 255, 252, 252, (3,20,55): 252, 251, 247, 177, 239, 174, 167, 167, 152, 147, 147, (3,20,66): 164, 155, 193, 239, 247, 255, 251, 255, 248, 253, 255, (3,20,77): 255, 192, 231, 203, 169, 169, 163, 147, 157, 158, 169, (3,20,88): 151, 229, 174, 238, 168, 163, 178, 166, 157, 160, 160, (3,20,99): 163, 159, 161, 166, 168, 156, 158, 160, 158, 162, 165, (3,20,110): 159, 165, 161, 161, 157, 165, 159, 165, 177, 140, 232, (3,20,121): 252, 255, 250, 253, 253, 252, 253, 252, 252, 252, 252, (3,20,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,20,143): 252, (3,21,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,21,11): 252, 252, 252, 252, 252, 253, 251, 254, 255, 248, 250, (3,21,22): 226, 196, 235, 162, 170, 162, 143, 113, 105, 139, 164, (3,21,33): 165, 166, 162, 161, 143, 116, 133, 150, 126, 118, 138, (3,21,44): 143, 144, 157, 158, 166, 186, 209, 207, 172, 254, 253, (3,21,55): 255, 253, 254, 179, 237, 188, 162, 163, 148, 144, 144, (3,21,66): 154, 157, 160, 235, 248, 253, 246, 255, 242, 251, 255, (3,21,77): 244, 205, 218, 221, 158, 175, 156, 154, 149, 156, 167, (3,21,88): 141, 231, 177, 200, 164, 145, 156, 146, 154, 143, 142, (3,21,99): 144, 156, 147, 151, 150, 155, 158, 153, 150, 155, 154, (3,21,110): 143, 152, 156, 147, 146, 147, 155, 154, 169, 146, 211, (3,21,121): 242, 254, 251, 252, 252, 252, 253, 252, 252, 252, 252, (3,21,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,21,143): 252, (3,22,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,22,11): 252, 252, 252, 252, 252, 255, 244, 255, 249, 252, 254, (3,22,22): 229, 180, 237, 167, 160, 135, 97, 136, 170, 163, 171, (3,22,33): 177, 180, 179, 184, 195, 174, 123, 124, 146, 135, 118, (3,22,44): 138, 140, 146, 154, 152, 180, 185, 208, 174, 242, 244, (3,22,55): 255, 251, 252, 193, 226, 212, 157, 169, 148, 151, 148, (3,22,66): 148, 160, 135, 229, 251, 252, 253, 255, 249, 248, 255, (3,22,77): 252, 224, 200, 228, 155, 166, 159, 146, 151, 147, 160, (3,22,88): 142, 205, 206, 176, 153, 144, 130, 108, 103, 110, 111, (3,22,99): 117, 110, 112, 114, 132, 143, 147, 147, 148, 149, 143, (3,22,110): 124, 129, 130, 121, 126, 132, 138, 136, 145, 124, 201, (3,22,121): 235, 252, 252, 253, 252, 251, 252, 252, 252, 252, 252, (3,22,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,22,143): 252, (3,23,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,23,11): 252, 252, 252, 252, 252, 251, 251, 255, 246, 252, 253, (3,23,22): 255, 182, 167, 146, 124, 123, 155, 162, 175, 181, 186, (3,23,33): 202, 191, 200, 196, 205, 207, 204, 184, 126, 157, 146, (3,23,44): 123, 136, 147, 147, 155, 158, 171, 198, 208, 162, 255, (3,23,55): 245, 251, 253, 208, 217, 221, 153, 171, 151, 155, 146, (3,23,66): 146, 160, 146, 215, 240, 255, 253, 252, 252, 247, 251, (3,23,77): 249, 251, 189, 237, 153, 173, 158, 148, 145, 143, 154, (3,23,88): 148, 186, 245, 206, 181, 166, 152, 126, 127, 123, 122, (3,23,99): 109, 118, 124, 121, 124, 148, 147, 146, 148, 144, 137, (3,23,110): 118, 119, 118, 115, 100, 119, 121, 106, 118, 160, 210, (3,23,121): 239, 252, 251, 252, 252, 252, 252, 252, 252, 252, 252, (3,23,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,23,143): 252, (3,24,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,24,11): 252, 252, 252, 252, 252, 247, 252, 249, 250, 247, 255, (3,24,22): 255, 232, 157, 194, 173, 187, 171, 175, 183, 201, 204, (3,24,33): 213, 221, 223, 223, 223, 221, 219, 203, 198, 134, 166, (3,24,44): 155, 112, 145, 144, 150, 143, 159, 170, 191, 184, 242, (3,24,55): 250, 255, 248, 235, 192, 222, 154, 172, 161, 150, 145, (3,24,66): 146, 150, 135, 217, 252, 246, 252, 253, 252, 248, 251, (3,24,77): 255, 235, 180, 242, 184, 160, 161, 156, 145, 148, 153, (3,24,88): 146, 181, 234, 243, 250, 230, 203, 176, 167, 179, 169, (3,24,99): 167, 130, 152, 146, 113, 151, 149, 141, 153, 147, 149, (3,24,110): 116, 130, 147, 142, 142, 135, 133, 134, 174, 189, 205, (3,24,121): 234, 253, 254, 252, 253, 253, 253, 252, 252, 252, 252, (3,24,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,24,143): 252, (3,25,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,25,11): 252, 252, 252, 252, 252, 253, 255, 252, 252, 247, 249, (3,25,22): 255, 255, 255, 251, 214, 192, 179, 183, 204, 221, 219, (3,25,33): 227, 236, 240, 241, 242, 241, 239, 242, 230, 197, 140, (3,25,44): 161, 155, 113, 145, 145, 141, 153, 164, 183, 189, 163, (3,25,55): 255, 254, 253, 237, 185, 243, 157, 164, 156, 150, 142, (3,25,66): 146, 155, 143, 177, 245, 255, 251, 253, 252, 249, 253, (3,25,77): 255, 251, 191, 227, 191, 156, 162, 152, 147, 145, 148, (3,25,88): 150, 155, 234, 251, 250, 232, 217, 200, 187, 187, 193, (3,25,99): 189, 153, 146, 172, 116, 150, 155, 142, 141, 148, 150, (3,25,110): 123, 167, 176, 179, 181, 178, 177, 168, 179, 183, 211, (3,25,121): 236, 253, 253, 251, 252, 251, 251, 252, 252, 252, 252, (3,25,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,25,143): 252, (3,26,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,26,11): 252, 252, 252, 252, 252, 252, 255, 254, 254, 252, 246, (3,26,22): 249, 255, 242, 236, 220, 212, 202, 214, 219, 226, 238, (3,26,33): 244, 250, 252, 253, 254, 253, 251, 241, 237, 230, 195, (3,26,44): 148, 174, 127, 122, 152, 137, 146, 150, 160, 184, 161, (3,26,55): 227, 248, 253, 250, 194, 240, 176, 157, 169, 149, 151, (3,26,66): 150, 152, 160, 169, 248, 250, 252, 254, 254, 250, 251, (3,26,77): 252, 255, 197, 218, 211, 152, 171, 151, 151, 144, 147, (3,26,88): 155, 134, 233, 243, 250, 245, 236, 219, 213, 208, 218, (3,26,99): 213, 190, 145, 203, 129, 160, 149, 145, 147, 151, 152, (3,26,110): 128, 161, 184, 195, 195, 196, 200, 195, 189, 194, 218, (3,26,121): 238, 251, 251, 251, 253, 252, 252, 252, 252, 252, 252, (3,26,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,26,143): 252, (3,27,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,27,11): 252, 252, 252, 252, 252, 251, 253, 254, 251, 253, 250, (3,27,22): 247, 247, 255, 253, 242, 233, 220, 229, 235, 244, 250, (3,27,33): 252, 253, 253, 252, 253, 252, 252, 251, 252, 253, 236, (3,27,44): 169, 174, 168, 122, 141, 142, 151, 152, 148, 172, 190, (3,27,55): 162, 247, 248, 252, 199, 221, 201, 150, 163, 146, 150, (3,27,66): 141, 148, 158, 150, 234, 253, 252, 253, 255, 249, 253, (3,27,77): 250, 255, 209, 209, 228, 143, 178, 153, 150, 146, 149, (3,27,88): 157, 142, 241, 240, 249, 249, 248, 241, 230, 232, 230, (3,27,99): 231, 226, 155, 220, 157, 160, 153, 148, 144, 145, 149, (3,27,110): 140, 164, 212, 223, 224, 222, 226, 226, 220, 227, 230, (3,27,121): 243, 251, 251, 251, 253, 253, 252, 252, 252, 252, 252, (3,27,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,27,143): 252, (3,28,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,28,11): 252, 252, 252, 252, 252, 248, 250, 253, 252, 251, 254, (3,28,22): 252, 250, 255, 252, 252, 237, 240, 234, 252, 255, 253, (3,28,33): 253, 252, 251, 251, 252, 252, 252, 242, 255, 255, 249, (3,28,44): 218, 165, 194, 144, 117, 151, 144, 144, 140, 162, 190, (3,28,55): 173, 225, 250, 247, 197, 206, 215, 155, 164, 138, 153, (3,28,66): 145, 153, 155, 139, 233, 242, 252, 251, 255, 249, 255, (3,28,77): 248, 253, 220, 191, 234, 141, 173, 154, 148, 146, 146, (3,28,88): 151, 140, 220, 240, 253, 246, 252, 255, 244, 254, 240, (3,28,99): 248, 249, 170, 217, 178, 149, 154, 151, 150, 148, 150, (3,28,110): 150, 144, 217, 233, 235, 237, 234, 239, 232, 235, 245, (3,28,121): 251, 253, 251, 251, 252, 251, 251, 252, 252, 252, 252, (3,28,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,28,143): 252, (3,29,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,29,11): 252, 252, 252, 252, 252, 252, 247, 250, 253, 252, 254, (3,29,22): 252, 249, 250, 254, 251, 250, 254, 248, 255, 252, 252, (3,29,33): 252, 252, 253, 253, 253, 253, 253, 255, 255, 246, 250, (3,29,44): 254, 190, 199, 187, 126, 149, 151, 151, 140, 149, 168, (3,29,55): 183, 170, 249, 249, 220, 202, 229, 150, 171, 148, 146, (3,29,66): 135, 149, 151, 128, 234, 242, 252, 251, 255, 250, 255, (3,29,77): 247, 247, 232, 182, 237, 157, 168, 155, 151, 147, 143, (3,29,88): 152, 147, 193, 243, 255, 247, 255, 255, 249, 255, 244, (3,29,99): 255, 253, 191, 217, 204, 151, 163, 148, 148, 139, 147, (3,29,110): 158, 133, 222, 242, 248, 249, 250, 254, 251, 251, 252, (3,29,121): 253, 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,29,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,29,143): 252, (3,30,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,30,11): 252, 252, 252, 252, 252, 255, 252, 247, 250, 253, 255, (3,30,22): 255, 252, 255, 255, 251, 255, 253, 253, 252, 249, 252, (3,30,33): 252, 253, 253, 253, 252, 252, 252, 246, 252, 255, 250, (3,30,44): 251, 219, 161, 215, 154, 128, 146, 151, 137, 148, 162, (3,30,55): 177, 170, 254, 255, 234, 184, 241, 146, 171, 146, 149, (3,30,66): 144, 148, 146, 138, 218, 241, 251, 251, 252, 252, 255, (3,30,77): 250, 253, 250, 186, 236, 183, 162, 158, 153, 144, 145, (3,30,88): 140, 153, 166, 240, 251, 247, 253, 254, 254, 255, 249, (3,30,99): 254, 254, 209, 210, 214, 143, 173, 152, 146, 141, 148, (3,30,110): 161, 143, 223, 249, 255, 251, 252, 252, 254, 254, 253, (3,30,121): 252, 251, 252, 252, 252, 252, 253, 252, 252, 252, 252, (3,30,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,30,143): 252, (3,31,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,31,11): 252, 252, 252, 252, 252, 255, 255, 252, 248, 251, 252, (3,31,22): 253, 247, 249, 246, 250, 249, 250, 248, 255, 252, 252, (3,31,33): 252, 252, 251, 251, 251, 252, 252, 248, 249, 251, 253, (3,31,44): 255, 255, 190, 198, 188, 124, 140, 152, 138, 154, 144, (3,31,55): 166, 150, 212, 249, 231, 173, 245, 156, 169, 160, 148, (3,31,66): 140, 152, 148, 147, 184, 250, 251, 253, 250, 252, 255, (3,31,77): 247, 253, 253, 189, 229, 195, 156, 157, 150, 137, 149, (3,31,88): 145, 158, 142, 233, 255, 252, 247, 252, 255, 252, 252, (3,31,99): 248, 255, 223, 204, 215, 151, 167, 149, 151, 135, 150, (3,31,110): 162, 133, 210, 244, 253, 252, 254, 250, 253, 252, 254, (3,31,121): 251, 251, 252, 252, 251, 251, 251, 252, 252, 252, 252, (3,31,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,31,143): 252, (3,32,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,32,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,32,22): 252, 252, 252, 241, 252, 255, 255, 232, 245, 252, 244, (3,32,33): 255, 255, 253, 251, 248, 249, 248, 255, 253, 240, 251, (3,32,44): 251, 253, 214, 186, 221, 142, 148, 144, 142, 143, 147, (3,32,55): 155, 167, 170, 254, 245, 186, 234, 174, 168, 153, 144, (3,32,66): 149, 148, 156, 153, 156, 176, 200, 207, 212, 209, 225, (3,32,77): 223, 226, 212, 191, 193, 179, 163, 157, 148, 145, 138, (3,32,88): 143, 157, 143, 224, 253, 252, 252, 252, 248, 254, 254, (3,32,99): 252, 255, 227, 182, 243, 160, 168, 159, 142, 140, 148, (3,32,110): 147, 149, 184, 254, 248, 248, 253, 253, 253, 251, 252, (3,32,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,32,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,32,143): 252, (3,33,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,33,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,33,22): 252, 252, 255, 255, 246, 210, 170, 177, 166, 176, 172, (3,33,33): 167, 163, 162, 171, 179, 181, 180, 166, 185, 255, 249, (3,33,44): 255, 248, 250, 185, 223, 164, 139, 145, 146, 145, 144, (3,33,55): 149, 163, 159, 239, 253, 192, 224, 194, 155, 167, 145, (3,33,66): 137, 136, 149, 155, 159, 175, 205, 196, 197, 190, 189, (3,33,77): 187, 192, 190, 186, 193, 183, 170, 162, 150, 147, 142, (3,33,88): 150, 153, 131, 217, 247, 253, 249, 255, 250, 252, 252, (3,33,99): 250, 254, 251, 191, 237, 181, 157, 161, 144, 141, 149, (3,33,110): 144, 153, 162, 237, 250, 253, 252, 254, 251, 253, 252, (3,33,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,33,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,33,143): 252, (3,34,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,34,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,34,22): 252, 252, 252, 227, 170, 184, 185, 224, 234, 222, 226, (3,34,33): 223, 228, 228, 222, 221, 218, 221, 219, 208, 179, 253, (3,34,44): 253, 253, 243, 191, 209, 194, 135, 148, 147, 141, 141, (3,34,55): 149, 167, 150, 213, 249, 195, 208, 211, 147, 171, 152, (3,34,66): 143, 134, 139, 151, 175, 202, 217, 219, 228, 224, 222, (3,34,77): 225, 222, 224, 222, 217, 211, 194, 168, 152, 154, 140, (3,34,88): 145, 152, 134, 212, 247, 255, 245, 252, 255, 254, 249, (3,34,99): 250, 255, 244, 202, 218, 189, 148, 157, 148, 145, 140, (3,34,110): 149, 148, 151, 228, 252, 255, 250, 254, 247, 255, 252, (3,34,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,34,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,34,143): 252, (3,35,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,35,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,35,22): 252, 252, 245, 211, 176, 165, 197, 215, 213, 215, 218, (3,35,33): 210, 215, 213, 210, 214, 213, 219, 222, 226, 181, 247, (3,35,44): 250, 255, 247, 220, 187, 219, 137, 155, 151, 139, 139, (3,35,55): 147, 155, 145, 202, 249, 208, 191, 217, 155, 161, 150, (3,35,66): 150, 145, 144, 151, 169, 190, 202, 213, 210, 210, 213, (3,35,77): 216, 209, 216, 213, 219, 209, 192, 178, 154, 143, 141, (3,35,88): 144, 155, 141, 189, 239, 255, 248, 254, 255, 255, 248, (3,35,99): 248, 255, 251, 196, 210, 211, 146, 167, 146, 137, 140, (3,35,110): 150, 151, 147, 225, 254, 255, 247, 254, 246, 255, 252, (3,35,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,35,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,35,143): 252, (3,36,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,36,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,36,22): 252, 252, 252, 210, 203, 226, 168, 200, 214, 198, 208, (3,36,33): 201, 207, 207, 209, 213, 209, 209, 200, 206, 186, 224, (3,36,44): 248, 254, 255, 229, 178, 232, 146, 155, 155, 142, 141, (3,36,55): 143, 154, 149, 173, 244, 230, 191, 231, 159, 162, 153, (3,36,66): 144, 137, 135, 143, 157, 171, 183, 190, 187, 200, 202, (3,36,77): 198, 189, 198, 195, 200, 194, 182, 173, 153, 142, 140, (3,36,88): 141, 151, 144, 163, 238, 255, 249, 250, 255, 251, 250, (3,36,99): 249, 250, 255, 216, 192, 219, 148, 171, 151, 143, 142, (3,36,110): 146, 145, 138, 217, 251, 255, 249, 254, 250, 254, 252, (3,36,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,36,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,36,143): 252, (3,37,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,37,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,37,22): 252, 252, 255, 202, 215, 223, 159, 196, 193, 186, 178, (3,37,33): 176, 181, 179, 178, 182, 181, 182, 186, 181, 184, 175, (3,37,44): 241, 248, 255, 248, 182, 231, 167, 153, 155, 141, 141, (3,37,55): 138, 143, 160, 160, 244, 237, 172, 235, 175, 155, 154, (3,37,66): 147, 142, 136, 137, 147, 159, 167, 169, 167, 178, 175, (3,37,77): 174, 178, 178, 181, 174, 178, 172, 156, 147, 146, 131, (3,37,88): 141, 146, 150, 147, 232, 249, 250, 255, 255, 247, 254, (3,37,99): 251, 255, 250, 238, 184, 228, 157, 156, 151, 144, 137, (3,37,110): 145, 146, 138, 205, 248, 253, 250, 254, 250, 253, 252, (3,37,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,37,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,37,143): 252, (3,38,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,38,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,38,22): 252, 252, 253, 213, 200, 215, 153, 189, 173, 148, 165, (3,38,33): 163, 162, 162, 164, 164, 163, 162, 161, 178, 171, 168, (3,38,44): 248, 245, 253, 247, 189, 220, 186, 152, 155, 139, 142, (3,38,55): 139, 137, 160, 147, 236, 243, 176, 225, 185, 154, 154, (3,38,66): 144, 142, 141, 141, 142, 144, 154, 155, 157, 157, 156, (3,38,77): 160, 163, 159, 153, 155, 160, 156, 155, 149, 143, 137, (3,38,88): 135, 141, 158, 149, 225, 247, 248, 253, 255, 251, 255, (3,38,99): 246, 251, 251, 222, 177, 235, 165, 159, 156, 149, 143, (3,38,110): 132, 147, 144, 186, 243, 250, 250, 254, 249, 253, 252, (3,38,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,38,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,38,143): 252, (3,39,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,39,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,39,22): 252, 252, 245, 230, 199, 231, 165, 168, 163, 152, 150, (3,39,33): 152, 150, 151, 152, 149, 151, 154, 154, 160, 163, 145, (3,39,44): 237, 255, 252, 249, 194, 207, 194, 148, 158, 138, 143, (3,39,55): 136, 136, 156, 144, 220, 241, 187, 214, 207, 152, 153, (3,39,66): 142, 142, 140, 142, 142, 146, 148, 143, 145, 143, 148, (3,39,77): 145, 141, 147, 149, 150, 154, 150, 148, 146, 143, 136, (3,39,88): 143, 142, 154, 137, 207, 245, 252, 253, 255, 242, 255, (3,39,99): 248, 255, 255, 255, 173, 230, 176, 152, 153, 146, 139, (3,39,110): 134, 151, 144, 167, 236, 247, 250, 255, 251, 253, 252, (3,39,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,39,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,39,143): 252, (3,40,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,40,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,40,22): 252, 252, 255, 238, 183, 225, 184, 158, 152, 144, 144, (3,40,33): 133, 143, 142, 128, 131, 145, 128, 138, 143, 143, 132, (3,40,44): 236, 240, 246, 255, 205, 201, 217, 150, 158, 147, 138, (3,40,55): 141, 148, 136, 146, 188, 240, 201, 207, 214, 146, 164, (3,40,66): 147, 139, 145, 141, 137, 129, 140, 145, 148, 143, 136, (3,40,77): 141, 134, 137, 133, 140, 135, 135, 145, 132, 146, 142, (3,40,88): 134, 136, 145, 145, 190, 241, 255, 252, 247, 255, 255, (3,40,99): 245, 252, 246, 255, 191, 229, 201, 159, 151, 140, 145, (3,40,110): 136, 149, 146, 166, 224, 252, 253, 249, 255, 251, 252, (3,40,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,40,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,40,143): 252, (3,41,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,41,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,41,22): 252, 252, 255, 244, 185, 216, 188, 154, 153, 143, 143, (3,41,33): 129, 145, 136, 107, 114, 105, 107, 111, 107, 119, 164, (3,41,44): 225, 236, 252, 253, 222, 193, 210, 147, 167, 148, 135, (3,41,55): 149, 141, 140, 143, 191, 241, 208, 196, 212, 152, 161, (3,41,66): 148, 139, 138, 138, 143, 113, 101, 99, 106, 109, 103, (3,41,77): 110, 106, 113, 126, 117, 132, 116, 114, 129, 139, 139, (3,41,88): 133, 144, 142, 142, 176, 240, 252, 254, 248, 254, 252, (3,41,99): 247, 255, 250, 255, 194, 208, 207, 154, 156, 143, 141, (3,41,110): 137, 145, 143, 142, 231, 241, 253, 250, 253, 251, 252, (3,41,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,41,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,41,143): 252, (3,42,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,42,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,42,22): 252, 252, 255, 248, 204, 204, 206, 144, 158, 144, 142, (3,42,33): 136, 141, 132, 105, 137, 126, 127, 126, 128, 180, 191, (3,42,44): 215, 237, 247, 250, 233, 185, 215, 153, 173, 148, 137, (3,42,55): 143, 137, 143, 146, 168, 236, 229, 183, 228, 164, 158, (3,42,66): 148, 143, 142, 137, 148, 118, 116, 121, 124, 120, 108, (3,42,77): 121, 118, 117, 107, 103, 110, 113, 108, 115, 137, 136, (3,42,88): 135, 140, 138, 149, 145, 230, 250, 254, 252, 255, 255, (3,42,99): 248, 255, 250, 255, 212, 192, 220, 145, 158, 149, 141, (3,42,110): 138, 138, 145, 133, 214, 245, 254, 252, 253, 253, 252, (3,42,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,42,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,42,143): 252, (3,43,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,43,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,43,22): 252, 252, 253, 251, 216, 201, 214, 145, 158, 145, 138, (3,43,33): 141, 128, 139, 121, 173, 183, 179, 187, 182, 175, 188, (3,43,44): 216, 243, 255, 250, 226, 192, 211, 153, 178, 143, 148, (3,43,55): 140, 133, 136, 153, 154, 238, 246, 182, 232, 178, 158, (3,43,66): 152, 140, 142, 131, 140, 127, 130, 166, 171, 172, 165, (3,43,77): 172, 167, 159, 172, 165, 124, 135, 140, 113, 147, 133, (3,43,88): 142, 138, 137, 156, 135, 229, 246, 253, 250, 253, 254, (3,43,99): 247, 255, 252, 252, 233, 175, 229, 151, 161, 151, 140, (3,43,110): 140, 143, 139, 131, 188, 244, 249, 252, 255, 254, 252, (3,43,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,43,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,43,143): 252, (3,44,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,44,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,44,22): 252, 252, 251, 245, 228, 187, 224, 144, 161, 143, 142, (3,44,33): 137, 127, 146, 123, 169, 194, 195, 199, 194, 204, 201, (3,44,44): 219, 249, 253, 254, 221, 195, 207, 154, 184, 149, 142, (3,44,55): 142, 138, 136, 148, 154, 229, 237, 189, 223, 185, 153, (3,44,66): 158, 134, 142, 135, 143, 138, 130, 190, 190, 192, 190, (3,44,77): 186, 187, 189, 176, 182, 146, 148, 166, 120, 148, 136, (3,44,88): 141, 141, 134, 151, 144, 237, 241, 251, 254, 252, 254, (3,44,99): 246, 255, 253, 242, 238, 177, 233, 165, 158, 149, 139, (3,44,110): 136, 139, 142, 143, 180, 240, 250, 250, 255, 250, 252, (3,44,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,44,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,44,143): 252, (3,45,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,45,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,45,22): 252, 252, 250, 246, 229, 184, 219, 165, 158, 146, 143, (3,45,33): 131, 135, 147, 129, 172, 208, 218, 220, 212, 226, 222, (3,45,44): 241, 240, 251, 255, 225, 191, 201, 172, 184, 154, 142, (3,45,55): 137, 137, 136, 140, 159, 227, 235, 181, 208, 206, 147, (3,45,66): 163, 140, 141, 132, 142, 138, 119, 201, 205, 210, 209, (3,45,77): 207, 205, 206, 201, 201, 176, 157, 175, 115, 144, 140, (3,45,88): 138, 142, 136, 145, 140, 221, 247, 250, 250, 250, 255, (3,45,99): 247, 254, 254, 244, 252, 177, 218, 177, 152, 152, 146, (3,45,110): 141, 136, 137, 142, 148, 238, 253, 249, 252, 250, 252, (3,45,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,45,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,45,143): 252, (3,46,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,46,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,46,22): 252, 252, 251, 251, 243, 179, 225, 180, 157, 148, 140, (3,46,33): 132, 137, 142, 136, 165, 222, 235, 232, 243, 236, 237, (3,46,44): 243, 254, 252, 252, 230, 201, 203, 181, 171, 153, 136, (3,46,55): 129, 141, 137, 133, 149, 223, 239, 199, 202, 213, 141, (3,46,66): 159, 144, 143, 126, 144, 140, 123, 208, 221, 225, 222, (3,46,77): 229, 233, 229, 231, 224, 200, 163, 196, 141, 155, 145, (3,46,88): 136, 141, 140, 145, 133, 188, 250, 251, 249, 254, 255, (3,46,99): 251, 247, 250, 252, 255, 186, 211, 200, 152, 149, 139, (3,46,110): 141, 136, 143, 148, 132, 238, 254, 249, 252, 251, 252, (3,46,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,46,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,46,143): 252, (3,47,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,47,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,47,22): 252, 252, 248, 255, 251, 182, 220, 193, 150, 149, 144, (3,47,33): 138, 133, 147, 147, 146, 228, 246, 250, 247, 250, 254, (3,47,44): 251, 251, 251, 249, 193, 211, 195, 177, 172, 156, 140, (3,47,55): 132, 144, 133, 130, 156, 227, 241, 234, 183, 216, 150, (3,47,66): 165, 142, 142, 127, 148, 139, 137, 209, 235, 250, 242, (3,47,77): 248, 246, 244, 237, 244, 235, 168, 207, 168, 158, 150, (3,47,88): 130, 140, 135, 141, 137, 160, 240, 248, 247, 255, 255, (3,47,99): 253, 245, 249, 255, 253, 202, 210, 210, 149, 150, 140, (3,47,110): 143, 132, 141, 143, 150, 221, 246, 248, 252, 252, 252, (3,47,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,47,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,47,143): 252, (3,48,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,48,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,48,22): 252, 252, 245, 255, 246, 190, 200, 202, 148, 152, 141, (3,48,33): 125, 147, 134, 143, 137, 226, 240, 249, 253, 255, 255, (3,48,44): 253, 251, 251, 252, 206, 220, 182, 187, 175, 159, 136, (3,48,55): 132, 144, 130, 131, 168, 214, 241, 215, 183, 218, 162, (3,48,66): 159, 144, 143, 129, 139, 137, 135, 190, 235, 253, 254, (3,48,77): 252, 255, 247, 252, 254, 238, 191, 218, 183, 151, 153, (3,48,88): 141, 136, 139, 139, 145, 161, 221, 253, 252, 252, 253, (3,48,99): 252, 252, 252, 252, 253, 205, 191, 221, 144, 159, 136, (3,48,110): 141, 139, 132, 137, 142, 215, 248, 245, 252, 248, 252, (3,48,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,48,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,48,143): 252, (3,49,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,49,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,49,22): 252, 252, 250, 253, 252, 212, 188, 217, 150, 158, 142, (3,49,33): 133, 134, 137, 141, 132, 243, 248, 250, 251, 250, 252, (3,49,44): 253, 251, 255, 251, 196, 241, 176, 179, 177, 148, 147, (3,49,55): 127, 134, 133, 133, 149, 217, 246, 245, 185, 223, 178, (3,49,66): 156, 147, 140, 132, 142, 142, 132, 167, 241, 247, 255, (3,49,77): 251, 255, 250, 255, 254, 249, 192, 206, 194, 153, 159, (3,49,88): 140, 131, 144, 139, 144, 146, 221, 246, 252, 252, 252, (3,49,99): 252, 252, 252, 252, 252, 232, 182, 219, 154, 159, 141, (3,49,110): 130, 138, 142, 138, 139, 183, 247, 246, 253, 252, 252, (3,49,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,49,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,49,143): 252, (3,50,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,50,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,50,22): 252, 252, 250, 255, 251, 234, 181, 221, 157, 154, 141, (3,50,33): 142, 130, 132, 140, 126, 215, 247, 255, 247, 243, 242, (3,50,44): 244, 248, 255, 208, 213, 191, 184, 198, 163, 145, 152, (3,50,55): 133, 136, 128, 125, 174, 226, 245, 239, 186, 211, 183, (3,50,66): 151, 149, 137, 139, 129, 136, 139, 157, 227, 247, 253, (3,50,77): 245, 255, 254, 247, 253, 255, 209, 194, 210, 146, 152, (3,50,88): 137, 138, 137, 130, 145, 127, 224, 247, 251, 252, 252, (3,50,99): 252, 252, 252, 252, 252, 253, 188, 225, 176, 156, 148, (3,50,110): 139, 138, 134, 144, 148, 162, 236, 252, 255, 252, 252, (3,50,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,50,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,50,143): 252, (3,51,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,51,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,51,22): 252, 252, 255, 251, 249, 231, 171, 223, 158, 158, 138, (3,51,33): 131, 143, 130, 137, 149, 187, 230, 247, 254, 252, 255, (3,51,44): 249, 252, 255, 208, 199, 173, 200, 185, 151, 140, 123, (3,51,55): 128, 128, 139, 123, 176, 216, 234, 244, 183, 203, 205, (3,51,66): 146, 155, 138, 139, 134, 137, 140, 143, 239, 239, 252, (3,51,77): 249, 255, 252, 253, 252, 251, 230, 182, 228, 142, 158, (3,51,88): 146, 132, 144, 136, 145, 135, 216, 244, 252, 252, 252, (3,51,99): 252, 252, 252, 252, 252, 248, 184, 220, 190, 143, 149, (3,51,110): 141, 130, 141, 139, 136, 155, 233, 253, 252, 254, 252, (3,51,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,51,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,51,143): 252, (3,52,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,52,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,52,22): 252, 252, 255, 249, 251, 243, 177, 224, 172, 156, 148, (3,52,33): 130, 142, 130, 141, 143, 143, 214, 255, 249, 252, 251, (3,52,44): 254, 248, 195, 175, 178, 191, 202, 181, 155, 139, 139, (3,52,55): 131, 134, 139, 101, 194, 224, 247, 254, 210, 189, 207, (3,52,66): 152, 155, 134, 144, 127, 143, 143, 132, 219, 237, 254, (3,52,77): 248, 254, 255, 249, 250, 255, 219, 173, 218, 163, 150, (3,52,88): 147, 146, 132, 129, 145, 134, 191, 243, 253, 253, 253, (3,52,99): 252, 252, 252, 252, 252, 254, 181, 209, 201, 144, 158, (3,52,110): 134, 133, 136, 137, 130, 145, 231, 249, 249, 251, 252, (3,52,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,52,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,52,143): 252, (3,53,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,53,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,53,22): 252, 252, 254, 252, 250, 255, 185, 212, 188, 148, 156, (3,53,33): 133, 133, 133, 137, 155, 154, 160, 168, 203, 230, 226, (3,53,44): 217, 181, 168, 202, 195, 203, 193, 164, 158, 145, 134, (3,53,55): 141, 141, 132, 144, 190, 220, 242, 254, 231, 183, 224, (3,53,66): 158, 157, 141, 135, 127, 134, 146, 141, 189, 242, 252, (3,53,77): 248, 252, 254, 254, 253, 250, 249, 186, 218, 171, 151, (3,53,88): 146, 132, 135, 134, 140, 142, 160, 231, 252, 252, 253, (3,53,99): 252, 252, 252, 252, 253, 255, 199, 193, 209, 149, 157, (3,53,110): 133, 136, 125, 141, 139, 134, 224, 242, 252, 246, 252, (3,53,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,53,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,53,143): 252, (3,54,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,54,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,54,22): 252, 252, 255, 246, 252, 249, 194, 203, 195, 146, 152, (3,54,33): 140, 130, 134, 131, 146, 169, 186, 196, 190, 199, 181, (3,54,44): 204, 195, 207, 215, 210, 191, 184, 147, 142, 150, 126, (3,54,55): 137, 131, 112, 161, 193, 224, 254, 248, 228, 178, 221, (3,54,66): 166, 149, 140, 138, 129, 140, 138, 146, 189, 238, 253, (3,54,77): 254, 252, 251, 250, 252, 250, 253, 192, 209, 189, 155, (3,54,88): 150, 141, 129, 131, 145, 145, 147, 233, 249, 251, 252, (3,54,99): 253, 252, 252, 252, 252, 251, 225, 182, 216, 154, 155, (3,54,110): 139, 138, 137, 135, 134, 131, 209, 234, 255, 252, 252, (3,54,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,54,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,54,143): 252, (3,55,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,55,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,55,22): 252, 252, 254, 250, 252, 246, 221, 198, 213, 145, 158, (3,55,33): 135, 131, 136, 127, 134, 155, 178, 194, 201, 204, 210, (3,55,44): 197, 201, 195, 193, 197, 176, 163, 151, 137, 127, 122, (3,55,55): 130, 126, 123, 181, 206, 231, 242, 254, 250, 175, 225, (3,55,66): 172, 152, 148, 136, 128, 133, 138, 139, 142, 235, 255, (3,55,77): 254, 248, 251, 254, 252, 252, 249, 195, 203, 200, 151, (3,55,88): 159, 136, 129, 131, 143, 145, 139, 225, 247, 249, 252, (3,55,99): 253, 252, 251, 252, 252, 252, 230, 173, 217, 160, 159, (3,55,110): 132, 141, 132, 130, 141, 141, 184, 229, 255, 252, 252, (3,55,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,55,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,55,143): 252, (3,56,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,56,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,56,22): 252, 252, 255, 245, 255, 254, 223, 182, 206, 154, 152, (3,56,33): 139, 139, 133, 124, 141, 148, 161, 182, 185, 196, 201, (3,56,44): 202, 199, 196, 185, 185, 165, 149, 144, 139, 130, 128, (3,56,55): 133, 108, 151, 180, 215, 239, 251, 251, 246, 189, 206, (3,56,66): 196, 146, 143, 129, 131, 137, 129, 146, 136, 228, 242, (3,56,77): 255, 255, 250, 250, 251, 252, 255, 198, 198, 214, 147, (3,56,88): 162, 144, 129, 134, 131, 138, 138, 212, 244, 253, 250, (3,56,99): 253, 252, 252, 252, 252, 246, 251, 174, 219, 176, 153, (3,56,110): 145, 139, 130, 133, 138, 145, 171, 237, 255, 254, 252, (3,56,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,56,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,56,143): 252, (3,57,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,57,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,57,22): 252, 252, 246, 252, 248, 245, 246, 188, 215, 174, 136, (3,57,33): 134, 138, 137, 132, 131, 129, 143, 160, 164, 171, 172, (3,57,44): 178, 175, 172, 168, 166, 154, 139, 131, 138, 135, 130, (3,57,55): 116, 128, 176, 197, 218, 239, 247, 251, 255, 210, 204, (3,57,66): 194, 152, 150, 142, 127, 128, 132, 142, 150, 232, 242, (3,57,77): 248, 252, 252, 255, 244, 255, 252, 227, 176, 225, 158, (3,57,88): 150, 134, 118, 133, 127, 145, 137, 184, 244, 254, 251, (3,57,99): 253, 252, 251, 251, 251, 251, 249, 179, 215, 191, 148, (3,57,110): 142, 139, 129, 130, 134, 141, 152, 238, 248, 249, 252, (3,57,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,57,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,57,143): 252, (3,58,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,58,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,58,22): 252, 252, 253, 255, 251, 248, 255, 171, 183, 168, 153, (3,58,33): 140, 131, 128, 124, 131, 137, 145, 144, 154, 156, 157, (3,58,44): 166, 163, 158, 159, 141, 138, 135, 134, 135, 135, 118, (3,58,55): 114, 159, 182, 195, 224, 249, 249, 245, 253, 191, 193, (3,58,66): 199, 151, 151, 136, 142, 136, 133, 147, 135, 219, 242, (3,58,77): 253, 253, 241, 248, 255, 248, 247, 237, 168, 217, 177, (3,58,88): 156, 139, 135, 134, 133, 130, 140, 173, 238, 252, 250, (3,58,99): 253, 252, 252, 253, 253, 254, 252, 188, 193, 200, 147, (3,58,110): 146, 132, 132, 130, 132, 138, 131, 232, 245, 248, 252, (3,58,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,58,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,58,143): 252, (3,59,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,59,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,59,22): 252, 252, 244, 254, 247, 248, 254, 223, 166, 160, 144, (3,59,33): 128, 121, 132, 132, 116, 121, 142, 134, 140, 138, 137, (3,59,44): 144, 142, 140, 142, 135, 135, 135, 131, 135, 114, 108, (3,59,55): 149, 181, 188, 203, 233, 249, 249, 250, 255, 221, 173, (3,59,66): 213, 155, 163, 137, 131, 121, 129, 133, 134, 189, 248, (3,59,77): 250, 248, 255, 251, 245, 253, 255, 247, 185, 208, 170, (3,59,88): 142, 150, 137, 138, 124, 135, 134, 153, 235, 252, 252, (3,59,99): 253, 252, 252, 252, 252, 253, 255, 209, 183, 210, 149, (3,59,110): 152, 135, 136, 131, 134, 139, 124, 218, 244, 249, 252, (3,59,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,59,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,59,143): 252, (3,60,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,60,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,60,22): 252, 252, 250, 255, 251, 249, 254, 255, 243, 164, 169, (3,60,33): 150, 133, 117, 106, 124, 145, 133, 128, 132, 133, 134, (3,60,44): 137, 137, 135, 137, 134, 128, 133, 123, 118, 116, 160, (3,60,55): 172, 180, 198, 223, 244, 255, 254, 254, 253, 255, 172, (3,60,66): 215, 171, 151, 131, 143, 127, 122, 144, 126, 184, 238, (3,60,77): 247, 253, 255, 247, 255, 255, 250, 241, 193, 197, 202, (3,60,88): 144, 141, 140, 128, 130, 126, 142, 147, 229, 250, 252, (3,60,99): 253, 252, 252, 252, 252, 250, 252, 223, 184, 216, 153, (3,60,110): 154, 142, 136, 128, 134, 139, 125, 195, 242, 251, 252, (3,60,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,60,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,60,143): 252, (3,61,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,61,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,61,22): 252, 252, 255, 255, 255, 255, 245, 252, 251, 255, 217, (3,61,33): 152, 120, 129, 126, 110, 107, 103, 131, 131, 128, 129, (3,61,44): 126, 128, 129, 127, 127, 120, 115, 114, 128, 167, 169, (3,61,55): 183, 196, 213, 232, 241, 255, 255, 252, 255, 244, 194, (3,61,66): 171, 158, 149, 132, 146, 145, 142, 132, 126, 167, 238, (3,61,77): 255, 255, 245, 254, 251, 244, 255, 246, 194, 201, 184, (3,61,88): 151, 147, 134, 140, 123, 137, 141, 142, 221, 246, 251, (3,61,99): 252, 252, 253, 253, 253, 249, 250, 229, 177, 205, 166, (3,61,110): 155, 140, 136, 127, 135, 137, 132, 175, 240, 255, 252, (3,61,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,61,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,61,143): 252, (3,62,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,62,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,62,22): 252, 252, 246, 250, 252, 251, 251, 251, 255, 255, 236, (3,62,33): 221, 183, 141, 134, 124, 117, 124, 103, 104, 106, 111, (3,62,44): 110, 110, 105, 103, 100, 126, 127, 176, 163, 169, 178, (3,62,55): 193, 212, 227, 246, 251, 255, 251, 250, 255, 255, 192, (3,62,66): 167, 161, 139, 127, 112, 104, 118, 114, 112, 177, 228, (3,62,77): 247, 255, 252, 255, 251, 240, 255, 255, 187, 166, 165, (3,62,88): 143, 146, 135, 125, 124, 134, 134, 125, 218, 246, 252, (3,62,99): 253, 252, 252, 251, 251, 250, 255, 242, 176, 181, 173, (3,62,110): 152, 137, 132, 124, 132, 131, 133, 165, 234, 254, 252, (3,62,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,62,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,62,143): 252, (3,63,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,63,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,63,22): 252, 252, 247, 255, 254, 251, 241, 255, 254, 252, 248, (3,63,33): 229, 222, 205, 188, 171, 155, 138, 131, 127, 116, 115, (3,63,44): 117, 126, 130, 138, 165, 171, 166, 169, 169, 190, 200, (3,63,55): 200, 227, 235, 254, 250, 246, 253, 254, 246, 255, 228, (3,63,66): 216, 171, 150, 139, 119, 116, 108, 144, 171, 199, 221, (3,63,77): 238, 255, 250, 255, 253, 249, 255, 245, 249, 169, 172, (3,63,88): 153, 150, 117, 114, 107, 106, 115, 161, 213, 243, 251, (3,63,99): 252, 252, 253, 253, 252, 248, 255, 253, 186, 164, 159, (3,63,110): 134, 135, 128, 120, 128, 123, 129, 159, 226, 251, 252, (3,63,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,63,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,63,143): 252, (3,64,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,64,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,64,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (3,64,33): 244, 236, 218, 214, 201, 195, 184, 181, 179, 174, 171, (3,64,44): 172, 170, 169, 173, 171, 174, 176, 182, 195, 203, 211, (3,64,55): 228, 237, 249, 254, 252, 252, 252, 251, 253, 251, 253, (3,64,66): 252, 252, 217, 184, 158, 160, 170, 165, 178, 196, 220, (3,64,77): 244, 255, 252, 253, 252, 252, 250, 252, 255, 241, 208, (3,64,88): 172, 153, 133, 111, 134, 135, 176, 187, 212, 236, 252, (3,64,99): 252, 251, 252, 252, 252, 253, 252, 255, 236, 160, 154, (3,64,110): 151, 139, 122, 110, 103, 111, 134, 201, 230, 238, 252, (3,64,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,64,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,64,143): 252, (3,65,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,65,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,65,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (3,65,33): 251, 251, 238, 234, 222, 218, 210, 201, 197, 192, 190, (3,65,44): 190, 188, 187, 187, 190, 195, 200, 204, 214, 221, 229, (3,65,55): 244, 244, 252, 253, 251, 253, 252, 251, 252, 251, 252, (3,65,66): 252, 255, 236, 216, 194, 190, 183, 181, 190, 203, 227, (3,65,77): 245, 252, 251, 254, 251, 252, 251, 250, 254, 255, 255, (3,65,88): 233, 222, 188, 182, 171, 169, 173, 180, 213, 236, 252, (3,65,99): 252, 251, 252, 251, 252, 251, 244, 247, 255, 248, 246, (3,65,110): 201, 153, 141, 140, 153, 175, 181, 204, 217, 245, 252, (3,65,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,65,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,65,143): 252, (3,66,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,66,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,66,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,66,33): 251, 254, 249, 251, 243, 239, 230, 229, 221, 214, 211, (3,66,44): 210, 211, 211, 210, 209, 213, 219, 224, 230, 237, 243, (3,66,55): 252, 250, 253, 252, 251, 253, 253, 251, 252, 253, 252, (3,66,66): 252, 251, 245, 231, 215, 203, 199, 200, 206, 213, 236, (3,66,77): 247, 249, 253, 254, 252, 252, 254, 251, 250, 253, 255, (3,66,88): 236, 224, 202, 197, 190, 189, 190, 199, 219, 238, 251, (3,66,99): 252, 252, 252, 251, 252, 252, 253, 250, 250, 251, 252, (3,66,110): 235, 211, 184, 178, 172, 173, 179, 205, 220, 246, 252, (3,66,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,66,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,66,143): 252, (3,67,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,67,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,67,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (3,67,33): 251, 253, 251, 255, 253, 250, 244, 244, 237, 232, 229, (3,67,44): 227, 229, 231, 229, 232, 232, 237, 239, 244, 250, 251, (3,67,55): 253, 253, 253, 251, 251, 254, 253, 252, 253, 251, 251, (3,67,66): 253, 250, 253, 245, 238, 228, 220, 221, 225, 228, 245, (3,67,77): 251, 251, 254, 252, 252, 250, 249, 250, 253, 252, 251, (3,67,88): 255, 242, 231, 212, 211, 206, 214, 222, 229, 243, 252, (3,67,99): 252, 252, 252, 252, 252, 255, 253, 251, 252, 253, 252, (3,67,110): 247, 224, 204, 197, 191, 194, 197, 212, 219, 242, 252, (3,67,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,67,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,67,143): 252, (3,68,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,68,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,68,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,68,33): 253, 254, 252, 252, 251, 253, 252, 253, 251, 251, 251, (3,68,44): 248, 248, 249, 246, 250, 248, 250, 250, 251, 254, 253, (3,68,55): 251, 252, 252, 252, 252, 253, 252, 252, 254, 251, 250, (3,68,66): 254, 249, 254, 249, 249, 244, 243, 240, 244, 244, 251, (3,68,77): 253, 252, 252, 255, 255, 253, 249, 250, 251, 252, 252, (3,68,88): 255, 251, 241, 236, 226, 232, 229, 239, 241, 249, 253, (3,68,99): 252, 251, 252, 252, 253, 249, 248, 249, 249, 250, 247, (3,68,110): 252, 239, 230, 224, 218, 213, 209, 225, 235, 250, 252, (3,68,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,68,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,68,143): 252, (3,69,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,69,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,69,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (3,69,33): 251, 252, 251, 251, 251, 252, 252, 251, 252, 254, 253, (3,69,44): 252, 252, 252, 251, 252, 251, 254, 252, 250, 252, 251, (3,69,55): 251, 252, 253, 253, 253, 252, 251, 251, 252, 254, 251, (3,69,66): 253, 251, 255, 252, 254, 253, 254, 249, 253, 252, 253, (3,69,77): 252, 253, 251, 249, 251, 252, 254, 253, 250, 250, 252, (3,69,88): 253, 255, 252, 255, 243, 249, 244, 247, 249, 252, 253, (3,69,99): 252, 251, 252, 253, 252, 252, 255, 254, 251, 253, 250, (3,69,110): 254, 252, 246, 234, 233, 240, 236, 238, 241, 250, 252, (3,69,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,69,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,69,143): 252, (3,70,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,70,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,70,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (3,70,33): 252, 251, 252, 254, 255, 253, 252, 251, 253, 252, 251, (3,70,44): 251, 252, 253, 254, 251, 251, 253, 252, 252, 252, 251, (3,70,55): 254, 252, 253, 253, 252, 251, 251, 252, 252, 255, 253, (3,70,66): 252, 251, 252, 251, 251, 251, 254, 250, 254, 252, 253, (3,70,77): 251, 252, 251, 254, 252, 252, 254, 254, 253, 252, 251, (3,70,88): 250, 251, 252, 251, 249, 247, 247, 245, 253, 252, 252, (3,70,99): 252, 252, 253, 252, 252, 254, 255, 255, 255, 254, 252, (3,70,110): 250, 253, 248, 253, 254, 248, 241, 251, 254, 253, 252, (3,70,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,70,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,70,143): 252, (3,71,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,71,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,71,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 250, (3,71,33): 252, 252, 253, 251, 251, 251, 253, 251, 254, 252, 251, (3,71,44): 253, 253, 251, 252, 254, 252, 251, 251, 254, 254, 250, (3,71,55): 252, 252, 252, 252, 251, 251, 253, 253, 252, 252, 253, (3,71,66): 253, 253, 252, 252, 252, 252, 253, 250, 253, 251, 253, (3,71,77): 251, 251, 253, 251, 252, 253, 252, 251, 254, 255, 251, (3,71,88): 249, 250, 250, 255, 255, 251, 255, 251, 253, 251, 251, (3,71,99): 252, 253, 253, 252, 251, 246, 248, 252, 255, 245, 249, (3,71,110): 251, 253, 254, 254, 255, 254, 252, 254, 252, 250, 252, (3,71,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,71,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (3,71,143): 252, (4,0,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,0,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,1,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,2,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,3,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,4,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,5,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,6,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,7,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,8,0): 254, 249, 249, 250, 252, 250, 250, 253, 249, 254, 254, 255, (4,8,12): 252, 252, 251, 255, 251, 254, 251, 255, 253, 255, 253, (4,8,23): 253, 255, 249, 251, 247, 253, 251, 255, 253, 255, 254, (4,8,34): 254, 255, 253, 253, 251, 252, 255, 255, 249, 252, 255, (4,8,45): 253, 251, 250, 252, 252, 252, 252, 252, 252, 252, 252, (4,8,56): 255, 245, 254, 255, 251, 247, 252, 252, 255, 251, 248, (4,8,67): 251, 253, 251, 251, 255, 252, 252, 252, 252, 252, 252, (4,8,78): 252, 252, 246, 255, 251, 250, 253, 247, 255, 252, 254, (4,8,89): 250, 252, 250, 250, 255, 254, 255, 255, 246, 245, 255, (4,8,100): 249, 243, 250, 255, 250, 250, 255, 255, 253, 251, 247, (4,8,111): 249, 250, 254, 249, 253, 249, 251, 252, 253, 250, 252, (4,8,122): 253, 251, 254, 253, 252, 253, 251, 254, 254, 251, 250, (4,8,133): 252, 254, 253, 249, 254, 252, 254, 255, 250, 253, 255, (4,9,0): 252, 249, 246, 254, 255, 255, 252, 255, 247, 247, 252, 247, (4,9,12): 248, 251, 251, 249, 252, 255, 252, 250, 255, 249, 249, (4,9,23): 249, 253, 254, 247, 254, 251, 254, 241, 244, 242, 251, (4,9,34): 249, 253, 252, 250, 250, 251, 243, 245, 249, 251, 251, (4,9,45): 255, 255, 248, 252, 252, 252, 252, 252, 252, 252, 252, (4,9,56): 255, 255, 246, 255, 251, 253, 252, 255, 248, 253, 254, (4,9,67): 250, 251, 250, 252, 239, 252, 252, 252, 252, 252, 252, (4,9,78): 252, 252, 248, 251, 249, 254, 253, 247, 254, 250, 250, (4,9,89): 249, 250, 250, 248, 248, 247, 249, 255, 246, 255, 255, (4,9,100): 252, 251, 254, 246, 253, 249, 249, 250, 250, 251, 255, (4,9,111): 254, 255, 254, 252, 254, 253, 255, 252, 252, 250, 249, (4,9,122): 248, 252, 254, 251, 249, 250, 252, 252, 253, 254, 255, (4,9,133): 255, 253, 250, 255, 249, 254, 252, 250, 251, 249, 249, (4,10,0): 250, 255, 250, 252, 253, 255, 255, 253, 255, 255, 254, (4,10,11): 251, 249, 250, 254, 238, 212, 212, 178, 186, 169, 184, (4,10,22): 160, 166, 169, 186, 185, 178, 205, 196, 227, 255, 255, (4,10,33): 252, 255, 253, 246, 249, 245, 255, 251, 251, 253, 251, (4,10,44): 246, 250, 254, 255, 252, 252, 252, 252, 252, 252, 252, (4,10,55): 252, 251, 250, 243, 245, 255, 255, 250, 255, 253, 253, (4,10,66): 253, 248, 248, 253, 255, 255, 252, 252, 252, 252, 252, (4,10,77): 252, 252, 252, 255, 255, 249, 251, 252, 253, 252, 250, (4,10,88): 253, 255, 255, 255, 255, 253, 253, 252, 249, 248, 249, (4,10,99): 255, 255, 249, 247, 251, 255, 251, 246, 246, 251, 255, (4,10,110): 253, 253, 255, 253, 255, 253, 254, 254, 252, 251, 255, (4,10,121): 255, 254, 255, 254, 255, 255, 255, 252, 252, 252, 252, (4,10,132): 250, 249, 251, 255, 252, 250, 253, 251, 251, 252, 250, (4,10,143): 255, (4,11,0): 250, 255, 248, 246, 255, 255, 250, 247, 245, 251, 255, (4,11,11): 246, 210, 193, 157, 183, 198, 207, 215, 224, 240, 242, (4,11,22): 247, 251, 242, 236, 236, 240, 220, 213, 189, 183, 181, (4,11,33): 216, 236, 250, 250, 254, 255, 249, 255, 255, 255, 251, (4,11,44): 251, 251, 250, 255, 252, 252, 252, 252, 252, 252, 252, (4,11,55): 252, 250, 244, 255, 255, 225, 211, 197, 212, 205, 221, (4,11,66): 234, 254, 248, 253, 248, 255, 252, 252, 252, 252, 252, (4,11,77): 252, 252, 252, 251, 255, 250, 251, 255, 254, 246, 254, (4,11,88): 245, 251, 248, 253, 255, 254, 254, 248, 253, 245, 251, (4,11,99): 249, 253, 254, 252, 251, 251, 255, 254, 255, 252, 254, (4,11,110): 248, 255, 251, 252, 253, 247, 248, 242, 248, 247, 246, (4,11,121): 249, 250, 250, 246, 249, 251, 247, 255, 253, 252, 252, (4,11,132): 254, 254, 252, 250, 244, 251, 246, 247, 250, 254, 255, (4,11,143): 251, (4,12,0): 255, 255, 248, 248, 253, 250, 244, 255, 255, 197, 185, (4,12,11): 181, 206, 222, 240, 240, 235, 237, 238, 237, 230, 230, (4,12,22): 230, 231, 231, 236, 229, 235, 245, 236, 237, 229, 226, (4,12,33): 205, 174, 176, 224, 255, 249, 246, 252, 255, 255, 251, (4,12,44): 249, 251, 252, 254, 252, 252, 252, 252, 252, 252, 252, (4,12,55): 252, 255, 251, 217, 176, 186, 208, 204, 194, 217, 193, (4,12,66): 188, 176, 174, 255, 254, 255, 252, 252, 252, 252, 252, (4,12,77): 252, 252, 252, 254, 252, 249, 251, 255, 252, 251, 255, (4,12,88): 218, 216, 191, 174, 173, 175, 187, 187, 211, 237, 255, (4,12,99): 246, 244, 249, 252, 255, 239, 250, 219, 226, 237, 225, (4,12,110): 233, 223, 233, 241, 241, 243, 248, 242, 255, 255, 253, (4,12,121): 254, 250, 255, 249, 251, 252, 250, 247, 250, 250, 248, (4,12,132): 247, 247, 248, 247, 255, 255, 255, 255, 254, 255, 255, (4,12,143): 241, (4,13,0): 252, 255, 251, 249, 251, 246, 251, 250, 209, 169, 205, (4,13,11): 243, 239, 247, 228, 223, 228, 221, 225, 221, 223, 219, (4,13,22): 221, 216, 228, 219, 220, 219, 221, 232, 234, 232, 231, (4,13,33): 233, 239, 238, 198, 181, 217, 252, 247, 245, 247, 254, (4,13,44): 254, 252, 252, 245, 252, 252, 252, 252, 252, 252, 252, (4,13,55): 252, 251, 255, 156, 247, 237, 245, 247, 236, 237, 238, (4,13,66): 240, 240, 176, 225, 246, 244, 252, 252, 252, 252, 252, (4,13,77): 252, 252, 252, 252, 252, 255, 254, 255, 250, 246, 205, (4,13,88): 178, 203, 214, 225, 234, 232, 228, 221, 194, 179, 247, (4,13,99): 251, 252, 249, 255, 254, 238, 161, 194, 192, 190, 190, (4,13,110): 185, 193, 180, 185, 179, 180, 177, 167, 174, 169, 164, (4,13,121): 165, 164, 183, 185, 182, 181, 182, 175, 185, 192, 190, (4,13,132): 186, 192, 203, 210, 206, 207, 204, 200, 209, 220, 219, (4,13,143): 255, (4,14,0): 249, 255, 250, 250, 255, 249, 248, 186, 204, 231, 239, (4,14,11): 231, 221, 221, 217, 215, 207, 203, 207, 198, 196, 192, (4,14,22): 190, 190, 200, 208, 196, 201, 204, 210, 213, 217, 221, (4,14,33): 224, 224, 230, 240, 225, 188, 179, 252, 255, 249, 247, (4,14,44): 255, 255, 254, 246, 252, 252, 252, 252, 252, 252, 252, (4,14,55): 252, 249, 255, 160, 230, 220, 239, 219, 230, 227, 224, (4,14,66): 229, 240, 176, 218, 255, 255, 252, 252, 252, 252, 252, (4,14,77): 252, 252, 252, 249, 252, 255, 249, 251, 251, 255, 185, (4,14,88): 208, 231, 236, 236, 241, 239, 236, 235, 241, 209, 177, (4,14,99): 255, 250, 253, 255, 250, 181, 199, 244, 232, 239, 240, (4,14,110): 232, 247, 237, 239, 238, 241, 240, 240, 239, 238, 247, (4,14,121): 245, 233, 240, 235, 232, 233, 237, 224, 226, 228, 225, (4,14,132): 223, 221, 220, 219, 207, 217, 215, 202, 205, 198, 172, (4,14,143): 212, (4,15,0): 246, 253, 249, 255, 255, 245, 251, 162, 229, 230, 217, (4,15,11): 209, 207, 192, 192, 190, 182, 184, 178, 181, 179, 183, (4,15,22): 172, 176, 179, 174, 174, 182, 184, 192, 195, 191, 211, (4,15,33): 209, 209, 223, 229, 237, 226, 207, 170, 244, 255, 243, (4,15,44): 250, 255, 255, 251, 252, 252, 252, 252, 252, 252, 252, (4,15,55): 252, 250, 231, 166, 220, 216, 205, 201, 216, 205, 208, (4,15,66): 224, 217, 167, 217, 255, 251, 252, 252, 252, 252, 252, (4,15,77): 252, 252, 252, 245, 252, 255, 251, 255, 242, 255, 195, (4,15,88): 211, 227, 228, 223, 225, 224, 222, 224, 233, 202, 193, (4,15,99): 253, 251, 254, 250, 252, 170, 227, 234, 225, 225, 235, (4,15,110): 224, 230, 230, 229, 231, 233, 229, 235, 228, 233, 227, (4,15,121): 238, 232, 234, 229, 229, 229, 230, 238, 237, 236, 237, (4,15,132): 235, 234, 233, 233, 226, 240, 243, 236, 239, 247, 211, (4,15,143): 194, (4,16,0): 249, 253, 252, 252, 249, 254, 216, 182, 216, 207, 198, (4,16,11): 192, 186, 187, 173, 162, 161, 163, 162, 167, 157, 166, (4,16,22): 161, 168, 156, 155, 166, 163, 171, 171, 175, 169, 177, (4,16,33): 193, 195, 203, 205, 216, 223, 226, 229, 185, 215, 255, (4,16,44): 249, 249, 253, 255, 252, 252, 252, 252, 252, 252, 252, (4,16,55): 252, 251, 234, 153, 201, 196, 185, 184, 186, 186, 194, (4,16,66): 192, 204, 171, 215, 251, 252, 252, 252, 252, 252, 252, (4,16,77): 252, 252, 252, 251, 255, 250, 254, 252, 249, 241, 180, (4,16,88): 200, 204, 205, 200, 198, 199, 202, 204, 209, 193, 195, (4,16,99): 253, 248, 248, 254, 243, 178, 215, 220, 202, 209, 215, (4,16,110): 210, 213, 216, 209, 211, 216, 212, 213, 216, 209, 219, (4,16,121): 211, 222, 219, 221, 218, 220, 221, 215, 214, 221, 224, (4,16,132): 227, 223, 223, 222, 226, 223, 228, 229, 224, 230, 221, (4,16,143): 176, (4,17,0): 252, 252, 251, 254, 253, 251, 201, 180, 205, 190, 179, (4,17,11): 175, 167, 165, 159, 159, 160, 158, 158, 152, 152, 154, (4,17,22): 148, 153, 154, 154, 156, 152, 156, 151, 157, 160, 163, (4,17,33): 162, 171, 190, 197, 204, 215, 223, 229, 212, 166, 199, (4,17,44): 254, 249, 255, 249, 252, 252, 252, 252, 252, 252, 252, (4,17,55): 252, 239, 227, 152, 187, 179, 174, 172, 168, 173, 178, (4,17,66): 182, 189, 158, 210, 246, 252, 252, 252, 252, 252, 252, (4,17,77): 252, 252, 252, 250, 255, 251, 252, 251, 250, 239, 169, (4,17,88): 192, 193, 188, 181, 180, 182, 186, 190, 195, 184, 180, (4,17,99): 248, 241, 255, 246, 242, 150, 199, 204, 193, 191, 190, (4,17,110): 187, 198, 185, 188, 188, 187, 197, 197, 195, 200, 196, (4,17,121): 193, 198, 195, 198, 194, 200, 194, 196, 199, 193, 191, (4,17,132): 194, 194, 196, 200, 201, 193, 207, 208, 209, 210, 206, (4,17,143): 156, (4,18,0): 250, 255, 254, 250, 250, 250, 193, 185, 195, 179, 164, (4,18,11): 159, 154, 152, 150, 151, 147, 148, 129, 133, 120, 117, (4,18,22): 120, 111, 115, 122, 124, 136, 150, 151, 154, 158, 154, (4,18,33): 157, 163, 164, 172, 182, 193, 200, 208, 225, 225, 170, (4,18,44): 207, 255, 248, 250, 252, 252, 252, 252, 252, 252, 252, (4,18,55): 252, 242, 221, 149, 180, 166, 159, 158, 159, 158, 158, (4,18,66): 167, 176, 149, 206, 241, 253, 252, 252, 252, 252, 252, (4,18,77): 252, 252, 252, 254, 255, 251, 255, 251, 243, 233, 168, (4,18,88): 177, 177, 170, 161, 160, 162, 166, 170, 183, 174, 178, (4,18,99): 239, 243, 255, 243, 237, 143, 184, 178, 170, 171, 171, (4,18,110): 165, 168, 181, 176, 174, 170, 171, 175, 179, 178, 174, (4,18,121): 174, 179, 174, 175, 174, 179, 172, 187, 187, 181, 185, (4,18,132): 176, 183, 188, 186, 186, 174, 187, 179, 186, 199, 198, (4,18,143): 148, (4,19,0): 252, 252, 251, 247, 254, 248, 177, 171, 177, 166, 153, (4,19,11): 151, 149, 147, 132, 117, 109, 108, 112, 103, 114, 107, (4,19,22): 110, 106, 120, 120, 105, 104, 105, 111, 131, 145, 158, (4,19,33): 150, 161, 158, 159, 158, 170, 178, 191, 226, 231, 220, (4,19,44): 162, 233, 247, 253, 252, 252, 252, 252, 252, 252, 252, (4,19,55): 252, 240, 210, 147, 178, 163, 151, 147, 147, 148, 149, (4,19,66): 159, 171, 148, 204, 240, 252, 252, 252, 252, 252, 252, (4,19,77): 252, 252, 252, 250, 251, 250, 255, 252, 243, 236, 169, (4,19,88): 168, 168, 160, 156, 152, 153, 155, 158, 173, 165, 172, (4,19,99): 237, 244, 252, 247, 237, 143, 177, 182, 163, 161, 155, (4,19,110): 158, 160, 161, 159, 164, 163, 154, 151, 160, 155, 156, (4,19,121): 159, 164, 158, 158, 158, 162, 159, 163, 166, 154, 159, (4,19,132): 161, 165, 157, 157, 165, 156, 168, 167, 169, 182, 183, (4,19,143): 165, (4,20,0): 254, 251, 248, 250, 255, 241, 170, 160, 158, 155, 152, (4,20,11): 146, 126, 112, 107, 111, 103, 135, 132, 156, 174, 169, (4,20,22): 169, 170, 165, 162, 149, 143, 120, 105, 114, 123, 133, (4,20,33): 140, 151, 149, 158, 156, 159, 173, 181, 190, 206, 218, (4,20,44): 224, 174, 255, 253, 252, 252, 252, 252, 252, 252, 252, (4,20,55): 252, 236, 206, 145, 170, 158, 151, 149, 143, 146, 150, (4,20,66): 154, 171, 148, 201, 240, 255, 252, 252, 252, 252, 252, (4,20,77): 252, 252, 252, 252, 255, 253, 253, 252, 247, 235, 148, (4,20,88): 165, 165, 156, 152, 149, 152, 152, 156, 171, 162, 164, (4,20,99): 240, 236, 251, 243, 231, 144, 145, 157, 141, 152, 148, (4,20,110): 148, 148, 148, 156, 151, 154, 153, 149, 152, 156, 149, (4,20,121): 157, 149, 155, 155, 147, 159, 150, 153, 149, 150, 164, (4,20,132): 155, 160, 159, 154, 157, 153, 152, 153, 150, 167, 158, (4,20,143): 164, (4,21,0): 251, 254, 252, 250, 253, 238, 179, 141, 166, 134, 107, (4,21,11): 109, 109, 114, 136, 162, 178, 179, 187, 179, 181, 180, (4,21,22): 181, 184, 176, 177, 173, 168, 169, 172, 149, 98, 105, (4,21,33): 122, 141, 145, 150, 149, 150, 153, 165, 176, 191, 200, (4,21,44): 220, 197, 188, 252, 252, 252, 252, 252, 252, 252, 252, (4,21,55): 252, 246, 207, 143, 168, 157, 147, 150, 150, 146, 152, (4,21,66): 154, 170, 146, 200, 240, 255, 252, 252, 252, 252, 252, (4,21,77): 252, 252, 252, 250, 253, 251, 253, 252, 247, 236, 149, (4,21,88): 167, 164, 153, 151, 145, 150, 151, 156, 164, 153, 167, (4,21,99): 236, 242, 252, 247, 227, 161, 125, 123, 104, 114, 109, (4,21,110): 111, 114, 101, 110, 112, 118, 107, 111, 113, 132, 153, (4,21,121): 145, 152, 147, 148, 154, 145, 149, 141, 132, 123, 126, (4,21,132): 128, 133, 124, 130, 137, 138, 136, 144, 137, 151, 135, (4,21,143): 169, (4,22,0): 251, 253, 249, 250, 254, 240, 194, 125, 125, 108, 107, (4,22,11): 141, 165, 174, 177, 180, 189, 189, 197, 206, 192, 204, (4,22,22): 206, 203, 205, 194, 194, 189, 187, 180, 178, 162, 121, (4,22,33): 101, 115, 147, 146, 144, 151, 147, 154, 165, 179, 184, (4,22,44): 197, 227, 164, 235, 252, 252, 252, 252, 252, 252, 252, (4,22,55): 252, 245, 205, 144, 169, 161, 143, 147, 148, 146, 152, (4,22,66): 157, 167, 145, 205, 242, 254, 252, 252, 252, 252, 252, (4,22,77): 252, 252, 252, 253, 251, 251, 255, 253, 240, 234, 152, (4,22,88): 164, 164, 153, 149, 142, 147, 148, 154, 161, 152, 184, (4,22,99): 232, 248, 250, 245, 226, 212, 165, 141, 121, 125, 127, (4,22,110): 119, 115, 114, 119, 121, 121, 100, 116, 110, 148, 147, (4,22,121): 151, 143, 149, 149, 145, 150, 145, 143, 115, 110, 106, (4,22,132): 107, 117, 111, 106, 115, 106, 107, 117, 110, 116, 124, (4,22,143): 202, (4,23,0): 254, 251, 251, 255, 253, 230, 218, 161, 124, 144, 163, (4,23,11): 181, 182, 186, 196, 202, 205, 212, 220, 218, 219, 231, (4,23,22): 215, 228, 228, 220, 225, 209, 204, 196, 194, 182, 174, (4,23,33): 140, 99, 113, 143, 150, 144, 153, 144, 157, 167, 179, (4,23,44): 193, 213, 198, 180, 252, 252, 252, 252, 252, 252, 252, (4,23,55): 252, 239, 208, 145, 164, 157, 145, 152, 149, 148, 150, (4,23,66): 159, 163, 148, 213, 241, 249, 252, 252, 252, 252, 252, (4,23,77): 252, 252, 252, 251, 252, 252, 255, 255, 245, 237, 149, (4,23,88): 161, 162, 154, 152, 143, 146, 145, 150, 160, 156, 190, (4,23,99): 231, 240, 254, 241, 234, 206, 198, 189, 180, 166, 172, (4,23,110): 170, 172, 173, 173, 166, 168, 169, 176, 112, 137, 146, (4,23,121): 145, 152, 147, 145, 150, 145, 151, 120, 125, 150, 148, (4,23,132): 145, 145, 141, 149, 141, 142, 147, 138, 138, 157, 164, (4,23,143): 223, (4,24,0): 251, 253, 250, 253, 251, 240, 224, 206, 186, 187, 180, (4,24,11): 192, 200, 210, 219, 219, 229, 231, 238, 239, 242, 239, (4,24,22): 240, 238, 243, 239, 236, 228, 228, 219, 210, 198, 181, (4,24,33): 183, 142, 106, 128, 139, 141, 152, 144, 149, 156, 166, (4,24,44): 182, 195, 196, 173, 237, 249, 254, 250, 255, 246, 251, (4,24,55): 255, 242, 211, 146, 170, 156, 149, 142, 148, 147, 147, (4,24,66): 156, 166, 140, 214, 251, 255, 252, 254, 252, 254, 253, (4,24,77): 251, 255, 255, 246, 250, 252, 251, 246, 249, 224, 152, (4,24,88): 164, 163, 148, 149, 144, 149, 149, 152, 166, 152, 175, (4,24,99): 239, 244, 248, 251, 236, 227, 212, 196, 188, 186, 187, (4,24,110): 188, 189, 189, 178, 187, 195, 180, 178, 127, 142, 155, (4,24,121): 148, 147, 148, 148, 148, 147, 149, 138, 129, 172, 178, (4,24,132): 182, 180, 171, 173, 171, 171, 174, 178, 181, 188, 204, (4,24,143): 219, (4,25,0): 251, 252, 251, 253, 252, 243, 230, 215, 203, 206, 203, (4,25,11): 216, 223, 230, 238, 241, 244, 245, 250, 250, 253, 250, (4,25,22): 251, 250, 253, 251, 250, 245, 245, 238, 229, 218, 201, (4,25,33): 198, 186, 123, 108, 135, 141, 153, 145, 142, 149, 158, (4,25,44): 170, 187, 199, 186, 174, 253, 252, 250, 255, 245, 250, (4,25,55): 255, 241, 203, 147, 171, 150, 148, 146, 147, 150, 148, (4,25,66): 158, 173, 142, 215, 239, 254, 249, 251, 249, 249, 249, (4,25,77): 248, 250, 248, 255, 254, 255, 255, 253, 251, 230, 155, (4,25,88): 166, 162, 148, 148, 146, 147, 150, 154, 168, 153, 176, (4,25,99): 241, 250, 252, 255, 242, 238, 229, 218, 213, 211, 210, (4,25,110): 209, 211, 208, 208, 202, 205, 202, 191, 129, 146, 150, (4,25,121): 148, 149, 149, 148, 148, 150, 156, 136, 145, 187, 190, (4,25,132): 200, 198, 190, 198, 196, 195, 195, 196, 197, 203, 217, (4,25,143): 230, (4,26,0): 252, 251, 253, 252, 252, 249, 238, 230, 224, 225, 223, (4,26,11): 233, 239, 244, 251, 255, 250, 251, 253, 252, 254, 252, (4,26,22): 253, 253, 251, 252, 253, 251, 253, 249, 244, 238, 228, (4,26,33): 208, 203, 181, 107, 117, 151, 142, 144, 149, 146, 147, (4,26,44): 166, 177, 189, 197, 163, 255, 255, 250, 255, 251, 247, (4,26,55): 255, 238, 201, 145, 166, 155, 150, 139, 151, 144, 145, (4,26,66): 152, 166, 141, 215, 239, 248, 252, 254, 252, 252, 253, (4,26,77): 255, 255, 253, 255, 251, 254, 252, 252, 247, 228, 137, (4,26,88): 165, 156, 149, 147, 150, 145, 148, 151, 166, 152, 177, (4,26,99): 237, 244, 245, 253, 252, 244, 242, 237, 233, 232, 229, (4,26,110): 228, 232, 229, 237, 223, 225, 225, 209, 137, 155, 154, (4,26,121): 149, 148, 148, 148, 149, 150, 155, 143, 165, 210, 215, (4,26,132): 221, 220, 216, 221, 221, 221, 220, 219, 219, 225, 235, (4,26,143): 245, (4,27,0): 252, 251, 254, 252, 252, 253, 245, 243, 241, 241, 241, (4,27,11): 247, 251, 253, 253, 252, 252, 252, 252, 251, 251, 251, (4,27,22): 252, 252, 250, 251, 252, 251, 253, 253, 252, 250, 235, (4,27,33): 231, 204, 200, 172, 110, 139, 145, 145, 138, 143, 148, (4,27,44): 152, 165, 187, 192, 176, 214, 250, 248, 255, 255, 244, (4,27,55): 255, 242, 185, 141, 169, 146, 149, 145, 142, 141, 149, (4,27,66): 156, 168, 142, 209, 242, 243, 252, 252, 251, 250, 251, (4,27,77): 251, 251, 250, 253, 250, 254, 251, 253, 247, 229, 130, (4,27,88): 166, 157, 152, 147, 152, 146, 150, 150, 164, 147, 175, (4,27,99): 237, 254, 252, 254, 251, 252, 254, 250, 248, 249, 246, (4,27,110): 245, 251, 243, 248, 242, 244, 236, 218, 143, 161, 154, (4,27,121): 148, 146, 144, 148, 149, 151, 156, 146, 170, 221, 232, (4,27,132): 236, 238, 241, 237, 234, 236, 237, 236, 237, 240, 245, (4,27,143): 249, (4,28,0): 253, 251, 254, 251, 251, 254, 250, 251, 251, 249, 250, (4,28,11): 249, 251, 252, 251, 249, 252, 253, 252, 252, 251, 252, (4,28,22): 252, 252, 253, 254, 253, 252, 251, 253, 253, 253, 250, (4,28,33): 239, 224, 208, 198, 134, 123, 144, 145, 148, 143, 140, (4,28,44): 155, 159, 171, 193, 188, 171, 249, 250, 255, 251, 247, (4,28,55): 255, 245, 196, 147, 167, 156, 152, 137, 147, 148, 150, (4,28,66): 159, 173, 137, 218, 248, 255, 253, 252, 253, 254, 252, (4,28,77): 251, 251, 253, 252, 248, 255, 255, 255, 249, 238, 145, (4,28,88): 166, 155, 150, 142, 145, 143, 149, 149, 167, 149, 179, (4,28,99): 233, 250, 248, 252, 253, 252, 254, 251, 250, 252, 251, (4,28,110): 250, 254, 252, 251, 250, 252, 241, 223, 138, 162, 151, (4,28,121): 149, 148, 144, 144, 146, 152, 162, 147, 175, 229, 244, (4,28,132): 249, 250, 252, 249, 250, 252, 253, 252, 252, 252, 253, (4,28,143): 254, (4,29,0): 252, 252, 253, 252, 252, 253, 252, 253, 253, 250, 254, (4,29,11): 249, 250, 251, 251, 253, 251, 252, 251, 252, 250, 252, (4,29,22): 251, 252, 251, 252, 251, 253, 250, 252, 251, 251, 249, (4,29,33): 244, 247, 213, 213, 171, 116, 151, 148, 138, 144, 144, (4,29,44): 143, 151, 169, 178, 199, 163, 251, 251, 255, 250, 253, (4,29,55): 252, 241, 183, 146, 171, 148, 149, 147, 146, 143, 142, (4,29,66): 152, 164, 129, 234, 241, 250, 253, 252, 252, 252, 249, (4,29,77): 249, 248, 250, 248, 248, 250, 247, 248, 247, 227, 134, (4,29,88): 167, 159, 153, 144, 144, 146, 148, 149, 161, 152, 194, (4,29,99): 243, 253, 246, 251, 252, 251, 253, 252, 251, 254, 253, (4,29,110): 251, 253, 254, 251, 250, 252, 245, 228, 134, 164, 155, (4,29,121): 151, 147, 143, 144, 147, 152, 162, 149, 184, 236, 248, (4,29,132): 255, 251, 249, 254, 252, 252, 253, 252, 252, 252, 252, (4,29,143): 251, (4,30,0): 252, 253, 251, 252, 252, 252, 253, 252, 253, 248, 254, (4,30,11): 252, 255, 252, 251, 255, 252, 253, 251, 253, 251, 254, (4,30,22): 252, 253, 250, 252, 251, 254, 251, 253, 251, 252, 248, (4,30,33): 252, 243, 239, 207, 200, 107, 139, 143, 144, 146, 143, (4,30,44): 147, 149, 158, 174, 185, 156, 234, 252, 253, 255, 253, (4,30,55): 244, 245, 195, 150, 166, 151, 148, 139, 145, 154, 150, (4,30,66): 155, 161, 138, 229, 242, 252, 254, 253, 253, 249, 250, (4,30,77): 253, 251, 250, 255, 254, 253, 253, 252, 250, 222, 138, (4,30,88): 167, 156, 150, 146, 142, 145, 144, 147, 161, 148, 190, (4,30,99): 235, 250, 249, 255, 252, 251, 251, 251, 252, 252, 252, (4,30,110): 252, 251, 252, 252, 248, 252, 246, 230, 136, 164, 154, (4,30,121): 148, 143, 140, 145, 149, 152, 161, 145, 180, 238, 247, (4,30,132): 254, 250, 246, 253, 252, 251, 251, 251, 251, 251, 252, (4,30,143): 252, (4,31,0): 251, 253, 250, 253, 253, 251, 253, 251, 255, 242, 241, (4,31,11): 238, 243, 243, 246, 255, 252, 253, 250, 253, 251, 254, (4,31,22): 252, 253, 252, 253, 251, 253, 250, 252, 250, 252, 252, (4,31,33): 249, 255, 247, 229, 219, 135, 134, 149, 144, 151, 145, (4,31,44): 141, 142, 153, 164, 182, 154, 220, 255, 245, 255, 247, (4,31,55): 246, 248, 192, 147, 166, 148, 147, 144, 142, 140, 138, (4,31,66): 155, 168, 147, 172, 189, 198, 211, 213, 212, 209, 214, (4,31,77): 225, 223, 220, 224, 212, 218, 236, 234, 223, 201, 147, (4,31,88): 170, 158, 148, 147, 140, 145, 143, 150, 162, 152, 197, (4,31,99): 239, 251, 249, 254, 250, 253, 252, 253, 252, 251, 252, (4,31,110): 253, 253, 252, 253, 249, 255, 244, 228, 142, 163, 155, (4,31,121): 150, 145, 141, 142, 145, 149, 159, 150, 178, 241, 251, (4,31,132): 253, 253, 250, 251, 253, 252, 251, 252, 252, 252, 251, (4,31,143): 252, (4,32,0): 245, 252, 255, 254, 255, 239, 255, 218, 171, 172, 178, (4,32,11): 173, 173, 171, 171, 169, 171, 170, 168, 164, 183, 178, (4,32,22): 177, 175, 183, 175, 188, 221, 251, 240, 245, 255, 253, (4,32,33): 250, 254, 240, 236, 210, 141, 134, 154, 145, 144, 139, (4,32,44): 143, 149, 149, 163, 179, 152, 216, 249, 248, 251, 250, (4,32,55): 251, 235, 204, 150, 163, 151, 146, 142, 148, 141, 146, (4,32,66): 150, 167, 175, 184, 198, 204, 196, 196, 199, 193, 196, (4,32,77): 190, 192, 190, 190, 190, 192, 187, 180, 175, 165, 153, (4,32,88): 165, 156, 149, 144, 140, 146, 145, 146, 162, 146, 185, (4,32,99): 237, 253, 248, 253, 255, 252, 252, 252, 252, 252, 252, (4,32,110): 252, 252, 255, 250, 251, 252, 243, 230, 129, 172, 152, (4,32,121): 148, 144, 142, 142, 145, 152, 157, 145, 177, 235, 251, (4,32,132): 251, 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,32,143): 252, (4,33,0): 250, 249, 255, 250, 255, 248, 228, 164, 224, 223, 229, (4,33,11): 226, 227, 226, 228, 227, 230, 230, 225, 226, 223, 223, (4,33,22): 217, 219, 216, 224, 215, 184, 239, 253, 252, 255, 252, (4,33,33): 250, 255, 251, 242, 233, 190, 132, 152, 143, 142, 140, (4,33,44): 143, 146, 149, 160, 179, 159, 210, 244, 248, 251, 251, (4,33,55): 255, 237, 193, 148, 163, 149, 146, 139, 142, 141, 147, (4,33,66): 153, 168, 178, 191, 206, 213, 223, 224, 224, 222, 223, (4,33,77): 223, 223, 222, 221, 224, 225, 224, 219, 211, 199, 185, (4,33,88): 167, 158, 151, 147, 142, 146, 145, 148, 162, 143, 191, (4,33,99): 241, 252, 247, 254, 252, 252, 252, 252, 252, 252, 252, (4,33,110): 252, 252, 255, 249, 254, 254, 243, 232, 138, 163, 156, (4,33,121): 149, 142, 143, 144, 144, 150, 158, 151, 192, 241, 255, (4,33,132): 254, 251, 252, 251, 252, 252, 252, 252, 252, 252, 252, (4,33,143): 252, (4,34,0): 255, 255, 253, 242, 252, 253, 206, 190, 221, 216, 219, (4,34,11): 217, 218, 218, 216, 216, 211, 210, 214, 213, 213, 213, (4,34,22): 218, 218, 217, 222, 212, 187, 190, 255, 248, 252, 250, (4,34,33): 251, 255, 253, 246, 225, 192, 128, 155, 146, 143, 142, (4,34,44): 141, 142, 146, 154, 167, 155, 194, 243, 249, 252, 251, (4,34,55): 255, 243, 185, 146, 162, 148, 146, 140, 141, 141, 147, (4,34,66): 153, 164, 174, 189, 202, 207, 214, 216, 215, 215, 213, (4,34,77): 215, 215, 215, 215, 217, 217, 218, 214, 206, 196, 182, (4,34,88): 162, 152, 145, 145, 141, 144, 143, 147, 163, 145, 189, (4,34,99): 235, 254, 251, 251, 254, 252, 252, 252, 252, 252, 252, (4,34,110): 252, 252, 253, 254, 252, 247, 247, 227, 136, 164, 157, (4,34,121): 148, 141, 142, 143, 143, 149, 158, 141, 192, 235, 250, (4,34,132): 252, 249, 254, 252, 252, 252, 252, 252, 252, 252, 252, (4,34,143): 252, (4,35,0): 255, 253, 247, 247, 255, 253, 184, 198, 209, 202, 201, (4,35,11): 201, 200, 201, 200, 203, 206, 203, 209, 205, 209, 205, (4,35,22): 210, 209, 207, 202, 206, 198, 189, 255, 247, 249, 250, (4,35,33): 246, 255, 252, 244, 235, 209, 123, 155, 148, 144, 143, (4,35,44): 140, 140, 146, 149, 171, 157, 187, 250, 251, 251, 251, (4,35,55): 246, 244, 183, 146, 160, 148, 145, 143, 141, 141, 144, (4,35,66): 149, 159, 166, 181, 188, 191, 192, 195, 192, 195, 190, (4,35,77): 195, 193, 194, 193, 197, 194, 194, 193, 186, 181, 171, (4,35,88): 159, 150, 146, 143, 139, 141, 140, 145, 166, 137, 194, (4,35,99): 236, 248, 251, 255, 251, 252, 252, 252, 252, 252, 252, (4,35,110): 252, 252, 254, 247, 251, 251, 244, 214, 137, 166, 152, (4,35,121): 147, 142, 142, 141, 142, 149, 160, 146, 196, 238, 253, (4,35,132): 253, 250, 253, 252, 252, 252, 252, 252, 252, 252, 252, (4,35,143): 252, (4,36,0): 254, 251, 247, 252, 248, 251, 181, 188, 191, 180, 178, (4,36,11): 178, 176, 179, 178, 180, 180, 182, 178, 184, 181, 185, (4,36,22): 181, 184, 193, 194, 205, 190, 195, 255, 252, 251, 250, (4,36,33): 246, 255, 252, 245, 237, 215, 123, 154, 151, 146, 142, (4,36,44): 139, 141, 149, 149, 165, 152, 175, 245, 252, 254, 254, (4,36,55): 252, 236, 184, 145, 159, 150, 142, 144, 138, 142, 140, (4,36,66): 142, 149, 153, 163, 167, 172, 175, 178, 176, 179, 175, (4,36,77): 180, 178, 180, 177, 182, 180, 182, 179, 174, 171, 165, (4,36,88): 150, 147, 142, 141, 139, 143, 144, 147, 157, 143, 204, (4,36,99): 236, 254, 249, 250, 255, 252, 252, 252, 252, 252, 252, (4,36,110): 252, 252, 253, 247, 253, 255, 245, 211, 136, 168, 148, (4,36,121): 146, 142, 141, 141, 145, 152, 159, 145, 190, 235, 252, (4,36,132): 252, 252, 253, 252, 252, 252, 252, 252, 252, 252, 252, (4,36,143): 252, (4,37,0): 248, 252, 252, 255, 248, 238, 162, 166, 182, 173, 167, (4,37,11): 167, 164, 168, 165, 167, 164, 166, 164, 167, 165, 165, (4,37,22): 163, 167, 162, 168, 179, 174, 174, 243, 252, 247, 250, (4,37,33): 251, 255, 255, 252, 236, 216, 135, 156, 152, 146, 140, (4,37,44): 138, 141, 147, 146, 161, 155, 173, 238, 252, 253, 250, (4,37,55): 254, 234, 186, 146, 156, 150, 141, 143, 138, 140, 139, (4,37,66): 139, 144, 145, 148, 152, 154, 155, 157, 157, 158, 156, (4,37,77): 158, 158, 158, 157, 160, 160, 160, 159, 156, 152, 151, (4,37,88): 147, 147, 143, 140, 138, 143, 142, 146, 160, 140, 209, (4,37,99): 240, 251, 247, 254, 251, 252, 252, 252, 252, 252, 252, (4,37,110): 252, 252, 251, 252, 251, 249, 245, 214, 133, 167, 148, (4,37,121): 146, 142, 140, 141, 146, 152, 156, 145, 190, 235, 252, (4,37,132): 250, 254, 254, 252, 252, 252, 252, 252, 252, 252, 252, (4,37,143): 252, (4,38,0): 253, 252, 248, 252, 254, 234, 156, 163, 160, 153, 145, (4,38,11): 146, 142, 147, 146, 148, 149, 145, 149, 148, 148, 144, (4,38,22): 148, 147, 158, 159, 170, 156, 186, 240, 249, 246, 254, (4,38,33): 251, 255, 251, 246, 241, 213, 130, 158, 153, 145, 139, (4,38,44): 138, 139, 142, 146, 158, 155, 182, 239, 250, 254, 247, (4,38,55): 251, 238, 187, 150, 154, 149, 142, 140, 140, 138, 140, (4,38,66): 139, 144, 142, 144, 148, 145, 144, 144, 146, 145, 146, (4,38,77): 145, 147, 146, 147, 144, 146, 143, 144, 145, 141, 145, (4,38,88): 142, 141, 140, 140, 140, 144, 144, 150, 159, 146, 206, (4,38,99): 232, 254, 249, 252, 253, 252, 252, 252, 252, 252, 252, (4,38,110): 252, 252, 254, 247, 251, 251, 237, 215, 139, 163, 149, (4,38,121): 145, 141, 140, 141, 145, 150, 156, 142, 197, 233, 251, (4,38,132): 250, 252, 255, 252, 252, 252, 252, 252, 252, 252, 252, (4,38,143): 252, (4,39,0): 253, 246, 251, 253, 248, 231, 162, 163, 156, 151, 142, (4,39,11): 140, 137, 140, 138, 140, 132, 127, 127, 137, 128, 134, (4,39,22): 134, 132, 130, 132, 158, 138, 181, 234, 255, 255, 252, (4,39,33): 250, 255, 249, 252, 235, 186, 151, 158, 150, 142, 138, (4,39,44): 138, 138, 139, 149, 156, 150, 187, 239, 243, 252, 250, (4,39,55): 247, 238, 182, 153, 155, 150, 143, 136, 136, 141, 145, (4,39,66): 139, 140, 134, 136, 141, 136, 139, 139, 143, 139, 145, (4,39,77): 142, 145, 143, 141, 137, 140, 140, 143, 145, 137, 142, (4,39,88): 139, 137, 136, 138, 138, 139, 139, 148, 153, 142, 207, (4,39,99): 235, 253, 246, 253, 251, 252, 252, 252, 252, 252, 252, (4,39,110): 252, 252, 252, 251, 252, 254, 243, 219, 134, 166, 148, (4,39,121): 144, 141, 140, 140, 142, 152, 159, 141, 207, 235, 252, (4,39,132): 252, 249, 255, 252, 252, 252, 252, 252, 252, 252, 252, (4,39,143): 252, (4,40,0): 253, 254, 250, 255, 241, 226, 154, 155, 150, 144, 145, (4,40,11): 138, 136, 139, 139, 144, 133, 99, 104, 107, 109, 107, (4,40,22): 107, 110, 121, 126, 121, 114, 206, 237, 251, 251, 250, (4,40,33): 255, 253, 250, 244, 240, 187, 156, 159, 145, 145, 137, (4,40,44): 134, 142, 139, 146, 158, 140, 191, 234, 253, 254, 255, (4,40,55): 248, 235, 171, 147, 156, 141, 140, 142, 138, 136, 143, (4,40,66): 138, 132, 113, 105, 108, 108, 105, 109, 106, 109, 107, (4,40,77): 116, 110, 111, 107, 116, 117, 113, 116, 117, 112, 122, (4,40,88): 140, 138, 140, 140, 141, 144, 138, 146, 161, 143, 196, (4,40,99): 245, 251, 253, 253, 251, 252, 252, 252, 252, 252, 252, (4,40,110): 252, 252, 252, 252, 251, 254, 236, 219, 142, 160, 147, (4,40,121): 143, 137, 141, 137, 142, 146, 154, 142, 204, 245, 250, (4,40,132): 248, 253, 251, 252, 252, 252, 252, 252, 252, 252, 252, (4,40,143): 252, (4,41,0): 252, 254, 250, 254, 241, 227, 152, 153, 150, 141, 138, (4,41,11): 140, 138, 137, 134, 140, 124, 133, 142, 138, 141, 135, (4,41,22): 139, 136, 128, 129, 151, 174, 226, 241, 252, 255, 254, (4,41,33): 250, 255, 251, 249, 239, 159, 166, 158, 147, 142, 138, (4,41,44): 136, 138, 139, 144, 157, 139, 209, 239, 247, 250, 252, (4,41,55): 254, 234, 172, 150, 159, 143, 139, 139, 134, 134, 148, (4,41,66): 144, 130, 107, 121, 128, 121, 115, 113, 117, 115, 117, (4,41,77): 107, 106, 108, 96, 112, 112, 105, 111, 112, 112, 119, (4,41,88): 138, 139, 140, 141, 141, 144, 140, 147, 162, 141, 197, (4,41,99): 241, 250, 254, 253, 250, 252, 252, 252, 252, 252, 252, (4,41,110): 252, 252, 251, 253, 248, 255, 236, 211, 140, 156, 143, (4,41,121): 141, 138, 140, 140, 143, 147, 151, 143, 208, 241, 250, (4,41,132): 249, 252, 251, 253, 252, 252, 252, 252, 252, 252, 252, (4,41,143): 252, (4,42,0): 250, 253, 252, 254, 245, 232, 152, 158, 145, 144, 138, (4,42,11): 139, 135, 140, 138, 138, 118, 140, 181, 187, 182, 178, (4,42,22): 179, 177, 177, 176, 195, 215, 225, 238, 252, 255, 250, (4,42,33): 250, 255, 255, 255, 243, 137, 169, 157, 148, 140, 140, (4,42,44): 137, 136, 139, 144, 154, 132, 206, 235, 250, 249, 254, (4,42,55): 247, 237, 173, 153, 156, 142, 140, 139, 137, 126, 137, (4,42,66): 134, 127, 116, 168, 180, 171, 174, 173, 166, 175, 168, (4,42,77): 173, 168, 175, 179, 173, 170, 165, 163, 157, 145, 107, (4,42,88): 136, 137, 140, 140, 136, 138, 137, 146, 160, 140, 205, (4,42,99): 239, 251, 254, 253, 251, 252, 252, 252, 252, 252, 252, (4,42,110): 252, 252, 254, 255, 245, 253, 234, 205, 143, 162, 149, (4,42,121): 142, 139, 134, 138, 139, 149, 156, 143, 209, 238, 249, (4,42,132): 250, 252, 249, 252, 252, 252, 252, 252, 252, 252, 252, (4,42,143): 252, (4,43,0): 251, 252, 252, 252, 244, 228, 142, 153, 143, 147, 138, (4,43,11): 137, 132, 141, 144, 143, 127, 146, 194, 199, 192, 187, (4,43,22): 191, 197, 191, 198, 213, 223, 231, 246, 253, 254, 253, (4,43,33): 252, 249, 255, 234, 212, 150, 176, 155, 147, 140, 140, (4,43,44): 139, 138, 141, 144, 149, 129, 226, 238, 250, 254, 249, (4,43,55): 252, 235, 172, 153, 152, 138, 139, 138, 136, 138, 144, (4,43,66): 141, 138, 130, 189, 186, 176, 185, 186, 185, 182, 187, (4,43,77): 189, 188, 182, 184, 178, 179, 182, 189, 175, 157, 108, (4,43,88): 145, 139, 137, 138, 138, 141, 138, 142, 158, 139, 215, (4,43,99): 241, 252, 254, 252, 252, 252, 252, 252, 252, 252, 252, (4,43,110): 252, 252, 250, 253, 248, 255, 241, 206, 143, 159, 145, (4,43,121): 140, 140, 137, 143, 143, 152, 156, 140, 206, 238, 251, (4,43,132): 250, 255, 248, 251, 252, 252, 252, 252, 252, 252, 252, (4,43,143): 252, (4,44,0): 252, 252, 251, 252, 243, 225, 137, 155, 146, 143, 134, (4,44,11): 138, 134, 136, 141, 150, 139, 180, 209, 211, 217, 212, (4,44,22): 221, 225, 224, 225, 230, 233, 244, 247, 250, 252, 254, (4,44,33): 253, 254, 245, 244, 167, 172, 172, 151, 143, 142, 137, (4,44,44): 138, 141, 140, 145, 140, 152, 231, 246, 251, 246, 251, (4,44,55): 251, 237, 170, 156, 153, 139, 140, 136, 133, 138, 147, (4,44,66): 146, 145, 139, 202, 201, 208, 211, 210, 207, 197, 203, (4,44,77): 208, 210, 203, 209, 199, 200, 204, 205, 188, 174, 127, (4,44,88): 147, 143, 139, 139, 136, 138, 138, 143, 158, 141, 218, (4,44,99): 240, 252, 254, 252, 252, 252, 252, 252, 252, 252, 252, (4,44,110): 252, 252, 250, 251, 250, 253, 241, 208, 141, 157, 148, (4,44,121): 142, 140, 136, 140, 140, 151, 155, 136, 201, 241, 253, (4,44,132): 249, 255, 247, 252, 252, 252, 252, 252, 252, 252, 252, (4,44,143): 252, (4,45,0): 251, 251, 251, 255, 246, 226, 142, 160, 148, 142, 137, (4,45,11): 135, 136, 139, 143, 147, 139, 186, 226, 231, 237, 236, (4,45,22): 240, 240, 235, 234, 245, 244, 253, 251, 252, 251, 254, (4,45,33): 253, 251, 247, 230, 148, 176, 168, 145, 140, 141, 135, (4,45,44): 136, 140, 139, 144, 133, 166, 230, 241, 249, 255, 248, (4,45,55): 251, 238, 166, 157, 153, 140, 141, 138, 134, 127, 141, (4,45,66): 146, 149, 149, 213, 216, 229, 226, 229, 229, 232, 226, (4,45,77): 230, 225, 223, 233, 217, 223, 231, 224, 210, 193, 141, (4,45,88): 148, 143, 140, 138, 134, 135, 138, 144, 159, 140, 215, (4,45,99): 239, 248, 255, 251, 252, 252, 252, 252, 252, 252, 252, (4,45,110): 252, 252, 254, 252, 250, 249, 239, 206, 145, 160, 145, (4,45,121): 141, 140, 138, 141, 140, 146, 149, 135, 204, 242, 252, (4,45,132): 247, 255, 247, 252, 252, 252, 252, 252, 252, 252, 252, (4,45,143): 252, (4,46,0): 251, 253, 250, 255, 244, 226, 141, 153, 148, 143, 141, (4,46,11): 131, 136, 142, 146, 147, 145, 183, 237, 244, 248, 251, (4,46,22): 252, 254, 247, 247, 252, 248, 251, 252, 253, 251, 253, (4,46,33): 253, 255, 255, 185, 173, 174, 161, 142, 138, 136, 135, (4,46,44): 135, 136, 137, 142, 121, 194, 227, 247, 251, 252, 254, (4,46,55): 255, 239, 158, 152, 149, 135, 139, 136, 132, 144, 150, (4,46,66): 150, 152, 156, 229, 240, 251, 247, 243, 251, 243, 247, (4,46,77): 239, 246, 244, 240, 246, 245, 247, 240, 219, 186, 141, (4,46,88): 156, 146, 135, 136, 137, 142, 143, 141, 155, 139, 212, (4,46,99): 240, 248, 255, 251, 252, 252, 252, 252, 252, 252, 252, (4,46,110): 252, 252, 251, 252, 250, 254, 244, 202, 145, 160, 143, (4,46,121): 140, 135, 135, 135, 142, 147, 155, 136, 215, 241, 252, (4,46,132): 249, 255, 248, 252, 252, 252, 252, 252, 252, 252, 252, (4,46,143): 252, (4,47,0): 250, 253, 250, 255, 247, 229, 144, 151, 149, 137, 139, (4,47,11): 130, 137, 135, 142, 152, 145, 200, 238, 244, 254, 251, (4,47,22): 253, 249, 255, 253, 250, 253, 254, 255, 250, 254, 255, (4,47,33): 248, 248, 187, 168, 186, 167, 153, 139, 139, 132, 136, (4,47,44): 137, 131, 138, 143, 124, 213, 231, 250, 252, 253, 250, (4,47,55): 250, 241, 157, 155, 154, 139, 141, 136, 129, 139, 139, (4,47,66): 142, 149, 152, 223, 239, 252, 252, 252, 254, 253, 252, (4,47,77): 252, 253, 251, 248, 253, 255, 255, 243, 232, 194, 139, (4,47,88): 151, 147, 140, 138, 132, 133, 140, 145, 150, 137, 212, (4,47,99): 245, 248, 255, 251, 253, 252, 252, 252, 252, 252, 252, (4,47,110): 252, 252, 252, 255, 247, 253, 241, 193, 143, 157, 142, (4,47,121): 140, 136, 141, 137, 143, 142, 148, 134, 223, 239, 252, (4,47,132): 254, 254, 248, 250, 252, 252, 252, 252, 252, 252, 252, (4,47,143): 252, (4,48,0): 253, 253, 252, 253, 243, 234, 138, 156, 148, 140, 133, (4,48,11): 131, 138, 135, 147, 154, 143, 187, 235, 255, 255, 251, (4,48,22): 249, 255, 254, 253, 255, 243, 250, 252, 254, 250, 240, (4,48,33): 255, 218, 175, 185, 184, 157, 149, 140, 140, 134, 127, (4,48,44): 133, 140, 138, 125, 153, 226, 235, 239, 251, 255, 253, (4,48,55): 252, 236, 158, 149, 149, 142, 132, 137, 137, 134, 140, (4,48,66): 150, 151, 157, 225, 246, 254, 252, 252, 252, 252, 252, (4,48,77): 252, 252, 252, 253, 253, 251, 251, 252, 237, 196, 142, (4,48,88): 158, 147, 137, 135, 137, 133, 143, 146, 157, 134, 216, (4,48,99): 240, 251, 254, 248, 253, 252, 252, 252, 252, 252, 252, (4,48,110): 252, 252, 250, 252, 252, 252, 230, 202, 138, 154, 142, (4,48,121): 139, 131, 136, 133, 141, 146, 159, 137, 212, 245, 252, (4,48,132): 253, 248, 253, 253, 252, 252, 252, 252, 252, 252, 252, (4,48,143): 252, (4,49,0): 252, 252, 253, 252, 242, 226, 136, 157, 145, 142, 136, (4,49,11): 131, 134, 137, 146, 150, 132, 201, 227, 253, 252, 245, (4,49,22): 241, 245, 252, 247, 248, 251, 255, 255, 253, 251, 255, (4,49,33): 195, 169, 180, 179, 178, 157, 140, 142, 137, 140, 127, (4,49,44): 137, 144, 132, 122, 192, 229, 237, 248, 251, 255, 251, (4,49,55): 246, 238, 158, 146, 146, 137, 139, 129, 133, 137, 138, (4,49,66): 147, 155, 167, 230, 247, 255, 252, 252, 252, 252, 252, (4,49,77): 252, 252, 252, 252, 252, 252, 252, 252, 240, 196, 141, (4,49,88): 153, 144, 137, 134, 135, 133, 142, 146, 157, 136, 224, (4,49,99): 241, 252, 254, 249, 253, 252, 252, 252, 252, 252, 252, (4,49,110): 252, 252, 253, 250, 255, 249, 236, 197, 139, 153, 143, (4,49,121): 139, 137, 134, 139, 138, 147, 154, 136, 213, 248, 253, (4,49,132): 253, 249, 253, 251, 252, 252, 252, 252, 252, 252, 252, (4,49,143): 252, (4,50,0): 251, 252, 253, 251, 242, 217, 136, 158, 140, 139, 133, (4,50,11): 132, 131, 138, 144, 150, 135, 218, 240, 248, 248, 247, (4,50,22): 250, 255, 249, 255, 255, 255, 248, 252, 254, 242, 197, (4,50,33): 174, 194, 189, 168, 156, 151, 137, 129, 135, 132, 137, (4,50,44): 136, 140, 120, 154, 217, 229, 237, 252, 254, 255, 255, (4,50,55): 247, 235, 161, 150, 143, 144, 130, 139, 131, 139, 139, (4,50,66): 146, 154, 169, 232, 244, 250, 252, 252, 252, 252, 252, (4,50,77): 252, 252, 252, 252, 252, 252, 252, 252, 242, 198, 141, (4,50,88): 147, 140, 138, 132, 133, 134, 141, 146, 156, 138, 231, (4,50,99): 241, 252, 254, 249, 252, 252, 252, 252, 252, 252, 252, (4,50,110): 252, 252, 251, 247, 255, 249, 235, 199, 139, 153, 137, (4,50,121): 136, 133, 132, 136, 139, 145, 153, 137, 210, 243, 253, (4,50,132): 253, 250, 252, 251, 252, 252, 252, 252, 252, 252, 252, (4,50,143): 252, (4,51,0): 252, 249, 253, 251, 243, 211, 136, 157, 140, 138, 130, (4,51,11): 134, 131, 136, 140, 152, 138, 149, 224, 255, 254, 255, (4,51,22): 255, 251, 246, 252, 246, 251, 246, 248, 215, 162, 191, (4,51,33): 193, 189, 181, 163, 162, 142, 138, 136, 130, 133, 135, (4,51,44): 141, 127, 112, 186, 220, 235, 241, 249, 253, 255, 247, (4,51,55): 242, 240, 157, 157, 145, 137, 140, 128, 137, 131, 139, (4,51,66): 145, 149, 166, 233, 245, 253, 252, 252, 252, 252, 252, (4,51,77): 252, 252, 252, 254, 253, 252, 250, 251, 242, 196, 144, (4,51,88): 153, 143, 143, 135, 133, 135, 139, 143, 156, 136, 235, (4,51,99): 240, 253, 254, 249, 252, 252, 252, 252, 252, 252, 252, (4,51,110): 252, 252, 251, 252, 252, 254, 229, 205, 137, 152, 142, (4,51,121): 137, 140, 127, 139, 136, 148, 154, 139, 210, 239, 252, (4,51,132): 253, 249, 251, 253, 252, 252, 252, 252, 252, 252, 252, (4,51,143): 252, (4,52,0): 252, 248, 253, 252, 245, 210, 139, 157, 142, 139, 131, (4,52,11): 134, 130, 135, 138, 149, 166, 171, 162, 177, 207, 199, (4,52,22): 213, 233, 219, 229, 218, 201, 162, 168, 193, 204, 210, (4,52,33): 193, 177, 166, 163, 141, 138, 138, 136, 132, 133, 132, (4,52,44): 131, 113, 152, 205, 220, 240, 251, 252, 254, 255, 251, (4,52,55): 248, 243, 161, 145, 146, 141, 132, 133, 130, 134, 144, (4,52,66): 149, 150, 166, 231, 243, 252, 252, 252, 252, 252, 252, (4,52,77): 252, 252, 252, 253, 252, 252, 251, 253, 247, 197, 148, (4,52,88): 151, 140, 139, 132, 133, 136, 140, 143, 156, 135, 233, (4,52,99): 238, 254, 253, 250, 252, 252, 252, 252, 252, 252, 252, (4,52,110): 252, 252, 252, 254, 252, 254, 232, 205, 143, 152, 141, (4,52,121): 142, 131, 135, 128, 145, 141, 155, 138, 216, 241, 252, (4,52,132): 252, 249, 252, 253, 252, 252, 252, 252, 252, 252, 252, (4,52,143): 252, (4,53,0): 253, 248, 253, 252, 244, 215, 139, 158, 140, 139, 134, (4,53,11): 130, 131, 137, 140, 146, 171, 183, 194, 200, 193, 199, (4,53,22): 198, 187, 187, 193, 195, 210, 203, 206, 207, 201, 187, (4,53,33): 179, 165, 167, 149, 136, 130, 127, 133, 140, 130, 129, (4,53,44): 105, 131, 192, 218, 233, 244, 252, 253, 249, 251, 249, (4,53,55): 244, 245, 144, 154, 138, 142, 135, 129, 134, 135, 139, (4,53,66): 144, 151, 169, 233, 244, 254, 252, 252, 252, 252, 252, (4,53,77): 252, 252, 252, 251, 253, 251, 249, 250, 240, 182, 139, (4,53,88): 147, 138, 134, 131, 132, 134, 139, 142, 154, 134, 227, (4,53,99): 239, 253, 253, 249, 253, 252, 252, 252, 252, 252, 252, (4,53,110): 252, 252, 250, 248, 254, 247, 240, 193, 148, 151, 137, (4,53,121): 135, 133, 129, 133, 140, 142, 153, 132, 227, 246, 253, (4,53,132): 251, 249, 255, 250, 252, 252, 252, 252, 252, 252, 252, (4,53,143): 252, (4,54,0): 253, 249, 253, 252, 241, 217, 139, 156, 138, 136, 134, (4,54,11): 128, 133, 138, 140, 146, 163, 177, 185, 193, 199, 201, (4,54,22): 201, 206, 203, 207, 204, 198, 186, 189, 189, 192, 163, (4,54,33): 162, 160, 150, 140, 128, 132, 135, 139, 125, 129, 114, (4,54,44): 124, 181, 205, 231, 240, 249, 253, 253, 251, 251, 254, (4,54,55): 248, 241, 150, 146, 148, 137, 134, 133, 135, 136, 138, (4,54,66): 143, 151, 168, 231, 242, 251, 252, 252, 252, 252, 252, (4,54,77): 252, 252, 252, 249, 253, 252, 253, 255, 244, 185, 146, (4,54,88): 152, 143, 139, 135, 133, 131, 138, 141, 152, 137, 225, (4,54,99): 242, 251, 253, 250, 253, 252, 252, 252, 252, 252, 252, (4,54,110): 252, 252, 251, 249, 255, 247, 240, 181, 144, 148, 140, (4,54,121): 138, 133, 131, 132, 141, 140, 156, 131, 230, 244, 252, (4,54,132): 253, 248, 255, 250, 252, 252, 252, 252, 252, 252, 252, (4,54,143): 252, (4,55,0): 252, 249, 254, 251, 238, 218, 138, 155, 141, 133, 134, (4,55,11): 128, 136, 134, 136, 145, 151, 156, 180, 186, 196, 192, (4,55,22): 198, 199, 193, 193, 193, 194, 196, 192, 176, 170, 151, (4,55,33): 151, 151, 137, 126, 133, 133, 128, 131, 127, 123, 114, (4,55,44): 177, 193, 210, 243, 245, 255, 254, 250, 250, 248, 251, (4,55,55): 246, 246, 144, 151, 143, 141, 136, 132, 128, 134, 139, (4,55,66): 144, 148, 165, 233, 247, 253, 252, 252, 252, 252, 252, (4,55,77): 252, 252, 252, 250, 254, 251, 251, 255, 242, 180, 147, (4,55,88): 146, 139, 135, 134, 134, 128, 138, 142, 150, 139, 225, (4,55,99): 244, 250, 254, 251, 253, 252, 252, 252, 252, 252, 252, (4,55,110): 252, 252, 252, 252, 252, 255, 237, 179, 142, 154, 141, (4,55,121): 135, 135, 124, 136, 136, 143, 158, 133, 229, 236, 250, (4,55,132): 255, 246, 255, 252, 252, 252, 252, 252, 252, 252, 252, (4,55,143): 252, (4,56,0): 249, 251, 252, 252, 245, 216, 121, 151, 144, 135, 131, (4,56,11): 135, 130, 132, 140, 139, 144, 150, 159, 166, 174, 175, (4,56,22): 175, 182, 169, 175, 168, 169, 167, 163, 154, 149, 143, (4,56,33): 142, 129, 135, 130, 125, 130, 133, 121, 112, 95, 167, (4,56,44): 195, 207, 230, 243, 252, 253, 252, 253, 252, 252, 251, (4,56,55): 244, 234, 146, 146, 148, 139, 125, 139, 133, 134, 136, (4,56,66): 143, 143, 178, 246, 248, 255, 252, 252, 252, 252, 252, (4,56,77): 252, 252, 252, 255, 253, 247, 253, 248, 239, 190, 145, (4,56,88): 146, 145, 135, 133, 130, 137, 141, 144, 146, 146, 232, (4,56,99): 245, 250, 255, 253, 246, 252, 252, 252, 252, 252, 252, (4,56,110): 252, 252, 251, 252, 252, 253, 240, 189, 149, 147, 137, (4,56,121): 130, 134, 129, 131, 137, 142, 152, 138, 228, 239, 250, (4,56,132): 253, 255, 255, 248, 252, 252, 252, 252, 252, 252, 252, (4,56,143): 252, (4,57,0): 254, 249, 255, 251, 238, 237, 135, 131, 138, 133, 123, (4,57,11): 129, 135, 125, 120, 129, 143, 138, 150, 157, 152, 160, (4,57,22): 166, 162, 168, 168, 158, 156, 153, 149, 144, 139, 133, (4,57,33): 134, 135, 128, 132, 129, 136, 122, 103, 111, 176, 202, (4,57,44): 203, 227, 232, 255, 252, 252, 251, 252, 252, 252, 251, (4,57,55): 245, 229, 145, 157, 138, 132, 135, 127, 130, 138, 136, (4,57,66): 151, 141, 181, 234, 242, 252, 252, 252, 252, 252, 252, (4,57,77): 252, 252, 252, 252, 250, 255, 250, 248, 239, 180, 140, (4,57,88): 144, 132, 135, 126, 123, 132, 123, 141, 150, 146, 228, (4,57,99): 241, 249, 254, 255, 249, 252, 252, 252, 252, 252, 252, (4,57,110): 252, 252, 255, 248, 255, 252, 238, 179, 137, 145, 140, (4,57,121): 134, 136, 131, 134, 138, 144, 154, 134, 230, 240, 252, (4,57,132): 255, 251, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,57,143): 252, (4,58,0): 249, 252, 250, 252, 248, 227, 177, 120, 114, 119, 123, (4,58,11): 130, 135, 131, 130, 132, 136, 137, 140, 140, 143, 144, (4,58,22): 141, 140, 154, 149, 140, 143, 144, 142, 134, 125, 129, (4,58,33): 132, 136, 140, 129, 112, 104, 107, 139, 177, 203, 206, (4,58,44): 228, 233, 247, 255, 252, 252, 251, 252, 252, 252, 252, (4,58,55): 246, 246, 148, 158, 140, 135, 139, 127, 123, 134, 137, (4,58,66): 155, 139, 177, 233, 243, 244, 252, 252, 252, 252, 252, (4,58,77): 252, 252, 252, 251, 247, 255, 255, 250, 231, 185, 144, (4,58,88): 147, 137, 132, 129, 132, 139, 135, 141, 147, 143, 228, (4,58,99): 242, 249, 250, 252, 251, 252, 252, 252, 252, 252, 252, (4,58,110): 252, 252, 254, 255, 252, 248, 237, 180, 143, 144, 140, (4,58,121): 133, 132, 129, 133, 138, 143, 151, 138, 233, 242, 250, (4,58,132): 255, 254, 255, 247, 252, 252, 252, 252, 252, 252, 252, (4,58,143): 252, (4,59,0): 253, 254, 249, 255, 238, 227, 203, 160, 118, 107, 101, (4,59,11): 109, 116, 113, 126, 137, 135, 128, 133, 134, 130, 134, (4,59,22): 136, 133, 135, 133, 132, 137, 136, 136, 136, 135, 127, (4,59,33): 128, 114, 110, 106, 109, 117, 155, 182, 188, 216, 218, (4,59,44): 231, 246, 255, 251, 252, 252, 251, 252, 252, 252, 252, (4,59,55): 245, 230, 143, 151, 136, 131, 141, 134, 137, 128, 124, (4,59,66): 142, 148, 180, 234, 248, 255, 252, 252, 252, 252, 252, (4,59,77): 252, 252, 252, 252, 255, 255, 253, 245, 235, 186, 145, (4,59,88): 141, 141, 136, 137, 133, 131, 133, 141, 151, 146, 234, (4,59,99): 245, 247, 251, 253, 254, 252, 252, 252, 252, 252, 252, (4,59,110): 252, 252, 254, 252, 250, 251, 237, 182, 142, 152, 136, (4,59,121): 130, 132, 128, 132, 136, 140, 146, 136, 230, 244, 254, (4,59,132): 254, 251, 255, 250, 252, 252, 252, 252, 252, 252, 252, (4,59,143): 252, (4,60,0): 253, 246, 254, 254, 242, 230, 215, 202, 177, 168, 133, (4,60,11): 109, 117, 112, 105, 103, 106, 115, 113, 114, 126, 125, (4,60,22): 118, 131, 125, 119, 119, 120, 120, 118, 115, 114, 112, (4,60,33): 110, 105, 101, 141, 168, 185, 198, 194, 210, 221, 233, (4,60,44): 249, 250, 250, 252, 252, 253, 252, 253, 252, 252, 251, (4,60,55): 244, 240, 138, 145, 141, 125, 130, 127, 135, 133, 146, (4,60,66): 154, 142, 184, 243, 253, 249, 252, 252, 252, 252, 252, (4,60,77): 252, 252, 252, 252, 251, 255, 252, 245, 239, 173, 157, (4,60,88): 146, 133, 127, 128, 131, 135, 131, 142, 143, 150, 236, (4,60,99): 251, 251, 255, 252, 250, 252, 252, 252, 252, 252, 252, (4,60,110): 252, 252, 255, 248, 254, 248, 243, 187, 143, 151, 136, (4,60,121): 132, 135, 131, 135, 135, 142, 148, 149, 230, 243, 254, (4,60,132): 255, 249, 253, 252, 252, 252, 252, 252, 252, 252, 252, (4,60,143): 252, (4,61,0): 255, 252, 253, 252, 255, 229, 223, 206, 188, 177, 167, (4,61,11): 164, 166, 140, 117, 103, 110, 99, 108, 114, 104, 106, (4,61,22): 113, 107, 111, 107, 109, 109, 113, 110, 107, 108, 121, (4,61,33): 120, 139, 161, 178, 181, 185, 197, 221, 229, 237, 245, (4,61,44): 251, 254, 250, 253, 252, 253, 252, 253, 252, 252, 251, (4,61,55): 244, 225, 143, 122, 118, 110, 109, 111, 116, 117, 108, (4,61,66): 112, 127, 202, 232, 243, 255, 252, 252, 252, 252, 252, (4,61,77): 252, 252, 252, 255, 249, 248, 252, 239, 234, 176, 137, (4,61,88): 131, 133, 133, 130, 126, 129, 130, 136, 133, 162, 233, (4,61,99): 251, 249, 253, 251, 253, 252, 252, 252, 252, 252, 252, (4,61,110): 252, 252, 253, 248, 255, 247, 241, 164, 140, 143, 135, (4,61,121): 133, 134, 130, 132, 133, 142, 148, 143, 228, 244, 250, (4,61,132): 255, 250, 250, 252, 252, 252, 252, 252, 252, 252, 252, (4,61,143): 252, (4,62,0): 255, 251, 246, 253, 254, 251, 235, 228, 213, 199, 195, (4,62,11): 189, 184, 173, 173, 162, 165, 156, 145, 133, 124, 119, (4,62,22): 115, 115, 116, 119, 126, 127, 131, 131, 142, 156, 171, (4,62,33): 178, 184, 194, 187, 201, 210, 222, 229, 239, 249, 255, (4,62,44): 252, 252, 254, 250, 252, 252, 251, 252, 252, 252, 251, (4,62,55): 245, 237, 212, 152, 111, 113, 111, 112, 120, 111, 109, (4,62,66): 131, 164, 232, 241, 249, 244, 252, 252, 252, 252, 252, (4,62,77): 252, 252, 252, 253, 250, 251, 255, 254, 237, 195, 115, (4,62,88): 112, 111, 108, 109, 109, 113, 109, 112, 114, 175, 222, (4,62,99): 247, 254, 253, 251, 250, 252, 252, 252, 252, 252, 252, (4,62,110): 252, 252, 251, 250, 252, 252, 234, 158, 129, 135, 125, (4,62,121): 123, 122, 121, 123, 123, 130, 137, 142, 217, 245, 254, (4,62,132): 252, 248, 253, 255, 252, 252, 252, 252, 252, 252, 252, (4,62,143): 252, (4,63,0): 255, 247, 249, 252, 255, 251, 244, 235, 234, 219, 209, (4,63,11): 205, 204, 185, 186, 187, 177, 174, 173, 169, 172, 174, (4,63,22): 171, 171, 172, 169, 170, 169, 176, 172, 171, 178, 184, (4,63,33): 186, 194, 201, 215, 219, 229, 233, 245, 250, 253, 250, (4,63,44): 253, 249, 253, 251, 252, 252, 251, 252, 252, 252, 252, (4,63,55): 246, 235, 212, 191, 178, 171, 162, 150, 148, 174, 169, (4,63,66): 185, 207, 227, 233, 254, 251, 252, 252, 252, 252, 252, (4,63,77): 252, 252, 252, 251, 248, 252, 255, 255, 229, 224, 204, (4,63,88): 166, 131, 128, 118, 112, 119, 116, 156, 164, 225, 225, (4,63,99): 240, 251, 251, 255, 252, 252, 252, 252, 252, 252, 252, (4,63,110): 252, 252, 253, 251, 254, 243, 233, 224, 142, 116, 113, (4,63,121): 111, 110, 110, 114, 113, 119, 124, 203, 226, 238, 255, (4,63,132): 251, 247, 254, 253, 252, 252, 252, 252, 252, 252, 252, (4,63,143): 252, (4,64,0): 252, 252, 252, 252, 252, 252, 252, 252, 243, 236, 228, (4,64,11): 224, 222, 219, 211, 204, 203, 196, 197, 187, 188, 187, (4,64,22): 187, 190, 190, 186, 189, 189, 187, 196, 196, 203, 206, (4,64,33): 210, 216, 222, 228, 236, 245, 252, 252, 252, 252, 252, (4,64,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,64,55): 252, 238, 225, 206, 195, 187, 179, 180, 180, 181, 190, (4,64,66): 201, 213, 228, 243, 251, 252, 252, 252, 252, 252, 252, (4,64,77): 252, 252, 252, 251, 252, 253, 251, 248, 237, 220, 205, (4,64,88): 188, 182, 172, 170, 173, 172, 175, 185, 196, 218, 236, (4,64,99): 244, 251, 252, 250, 252, 252, 252, 252, 252, 252, 252, (4,64,110): 252, 252, 251, 254, 251, 252, 236, 218, 187, 170, 150, (4,64,121): 138, 131, 129, 142, 140, 144, 195, 213, 227, 243, 254, (4,64,132): 253, 249, 252, 253, 252, 252, 252, 252, 252, 252, 252, (4,64,143): 252, (4,65,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (4,65,11): 246, 239, 232, 229, 227, 224, 218, 219, 211, 212, 212, (4,65,22): 211, 214, 211, 207, 211, 214, 212, 219, 218, 221, 226, (4,65,33): 231, 238, 243, 246, 249, 252, 254, 252, 252, 252, 252, (4,65,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,65,55): 252, 245, 236, 220, 211, 208, 205, 203, 197, 202, 206, (4,65,66): 214, 226, 238, 247, 252, 253, 252, 252, 252, 252, 252, (4,65,77): 252, 252, 252, 251, 252, 252, 253, 253, 247, 232, 219, (4,65,88): 204, 195, 189, 188, 186, 187, 194, 199, 212, 229, 243, (4,65,99): 250, 253, 253, 252, 253, 252, 252, 252, 252, 252, 252, (4,65,110): 252, 252, 251, 253, 251, 254, 243, 231, 207, 194, 178, (4,65,121): 177, 173, 175, 183, 179, 178, 198, 219, 234, 246, 253, (4,65,132): 252, 251, 253, 252, 252, 252, 252, 252, 252, 252, 252, (4,65,143): 252, (4,66,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 253, (4,66,11): 253, 251, 248, 246, 246, 241, 237, 238, 232, 232, 232, (4,66,22): 230, 231, 231, 226, 230, 234, 233, 239, 236, 236, 243, (4,66,33): 246, 249, 252, 252, 251, 251, 252, 252, 252, 252, 252, (4,66,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,66,55): 252, 250, 246, 235, 228, 228, 228, 225, 216, 229, 228, (4,66,66): 232, 241, 249, 251, 252, 253, 252, 252, 252, 252, 252, (4,66,77): 252, 252, 252, 253, 252, 251, 251, 252, 248, 238, 228, (4,66,88): 220, 220, 210, 205, 211, 210, 210, 220, 227, 236, 246, (4,66,99): 251, 251, 251, 251, 251, 252, 252, 252, 252, 252, 252, (4,66,110): 252, 252, 253, 253, 250, 252, 242, 234, 216, 206, 203, (4,66,121): 202, 195, 195, 195, 197, 208, 211, 227, 244, 251, 251, (4,66,132): 252, 252, 253, 251, 252, 252, 252, 252, 252, 252, 252, (4,66,143): 252, (4,67,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 251, 250, (4,67,11): 251, 253, 254, 252, 250, 254, 251, 252, 249, 248, 248, (4,67,22): 245, 246, 250, 244, 246, 250, 247, 253, 252, 251, 252, (4,67,33): 252, 252, 252, 251, 251, 251, 252, 252, 252, 252, 252, (4,67,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,67,55): 252, 252, 253, 249, 244, 243, 244, 242, 237, 246, 243, (4,67,66): 245, 250, 253, 252, 251, 252, 252, 252, 252, 252, 252, (4,67,77): 252, 252, 252, 253, 252, 251, 251, 253, 252, 248, 243, (4,67,88): 235, 239, 230, 225, 232, 231, 229, 237, 243, 244, 250, (4,67,99): 253, 252, 252, 253, 252, 252, 252, 252, 252, 252, 252, (4,67,110): 252, 252, 251, 252, 251, 255, 250, 247, 236, 230, 223, (4,67,121): 220, 211, 213, 210, 212, 227, 229, 237, 251, 253, 251, (4,67,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,67,143): 252, (4,68,0): 252, 252, 252, 252, 252, 252, 252, 252, 254, 254, 253, (4,68,11): 252, 251, 251, 252, 252, 251, 251, 252, 252, 251, 252, (4,68,22): 250, 251, 254, 250, 250, 253, 248, 253, 253, 253, 252, (4,68,33): 253, 253, 253, 253, 252, 252, 252, 252, 252, 252, 252, (4,68,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,68,55): 252, 251, 253, 254, 252, 251, 252, 252, 252, 251, 251, (4,68,66): 251, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,68,77): 252, 252, 252, 252, 252, 252, 252, 253, 254, 254, 253, (4,68,88): 251, 245, 247, 247, 242, 246, 250, 245, 253, 251, 253, (4,68,99): 255, 252, 252, 253, 252, 252, 252, 252, 252, 252, 252, (4,68,110): 252, 252, 252, 252, 252, 253, 252, 250, 245, 242, 238, (4,68,121): 237, 234, 233, 231, 230, 237, 242, 245, 253, 253, 251, (4,68,132): 253, 251, 251, 253, 252, 252, 252, 252, 252, 252, 252, (4,68,143): 252, (4,69,0): 252, 252, 252, 252, 252, 252, 252, 252, 250, 251, 252, (4,69,11): 252, 251, 251, 252, 252, 251, 252, 252, 253, 252, 254, (4,69,22): 252, 252, 253, 252, 252, 254, 250, 252, 251, 253, 251, (4,69,33): 251, 251, 251, 251, 251, 251, 251, 252, 252, 252, 252, (4,69,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,69,55): 252, 251, 250, 252, 251, 252, 253, 251, 253, 251, 253, (4,69,66): 253, 251, 251, 252, 253, 252, 252, 252, 252, 252, 252, (4,69,77): 252, 252, 252, 252, 253, 252, 251, 250, 250, 251, 252, (4,69,88): 254, 251, 253, 253, 250, 252, 255, 250, 253, 251, 251, (4,69,99): 252, 250, 251, 252, 251, 252, 252, 252, 252, 252, 252, (4,69,110): 252, 252, 253, 252, 252, 252, 252, 253, 253, 253, 255, (4,69,121): 255, 255, 249, 249, 254, 254, 255, 249, 253, 251, 252, (4,69,132): 253, 251, 251, 253, 252, 252, 252, 252, 252, 252, 252, (4,69,143): 252, (4,70,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, (4,70,11): 252, 253, 253, 252, 251, 252, 253, 251, 254, 251, 253, (4,70,22): 251, 251, 251, 253, 250, 253, 252, 252, 250, 252, 253, (4,70,33): 252, 252, 251, 251, 251, 252, 253, 252, 252, 252, 252, (4,70,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,70,55): 252, 254, 251, 253, 252, 252, 254, 251, 252, 252, 253, (4,70,66): 252, 251, 251, 252, 253, 252, 252, 252, 252, 252, 252, (4,70,77): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, (4,70,88): 251, 255, 252, 250, 254, 253, 250, 253, 251, 251, 252, (4,70,99): 251, 251, 252, 254, 253, 252, 252, 252, 252, 252, 252, (4,70,110): 252, 252, 253, 252, 252, 251, 251, 251, 253, 253, 250, (4,70,121): 251, 251, 251, 252, 253, 251, 250, 251, 252, 251, 252, (4,70,132): 252, 251, 253, 252, 252, 252, 252, 252, 252, 252, 252, (4,70,143): 252, (4,71,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, 253, (4,71,11): 252, 251, 251, 252, 254, 251, 253, 250, 254, 251, 253, (4,71,22): 252, 253, 252, 254, 250, 252, 254, 254, 251, 254, 252, (4,71,33): 252, 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,71,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,71,55): 252, 251, 251, 253, 251, 251, 254, 252, 252, 254, 252, (4,71,66): 251, 252, 253, 253, 252, 251, 252, 252, 252, 252, 252, (4,71,77): 252, 252, 252, 253, 252, 251, 252, 252, 252, 252, 252, (4,71,88): 252, 251, 252, 252, 252, 252, 252, 251, 252, 253, 253, (4,71,99): 251, 251, 252, 252, 252, 252, 252, 252, 252, 252, 252, (4,71,110): 252, 252, 251, 252, 253, 252, 253, 251, 252, 251, 250, (4,71,121): 251, 250, 255, 255, 250, 253, 252, 252, 252, 251, 252, (4,71,132): 252, 252, 254, 251, 252, 252, 252, 252, 252, 252, 252, (4,71,143): 252, (5,0,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,0,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,1,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,2,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,3,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,4,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,5,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,6,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,7,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,8,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,8,12): 252, 252, 252, 252, 249, 255, 249, 249, 250, 255, 247, (5,8,23): 250, 248, 252, 250, 253, 249, 255, 253, 255, 248, 247, (5,8,34): 251, 252, 254, 251, 251, 249, 249, 255, 253, 252, 250, (5,8,45): 244, 248, 254, 255, 255, 255, 249, 250, 255, 255, 244, (5,8,56): 254, 251, 251, 251, 255, 255, 255, 252, 246, 255, 253, (5,8,67): 253, 255, 254, 255, 250, 247, 248, 255, 253, 249, 254, (5,8,78): 248, 255, 250, 251, 246, 255, 250, 249, 252, 255, 252, (5,8,89): 253, 254, 251, 252, 255, 250, 255, 254, 252, 255, 253, (5,8,100): 254, 249, 252, 255, 255, 255, 252, 254, 251, 252, 251, (5,8,111): 251, 255, 254, 254, 251, 252, 251, 252, 249, 254, 251, (5,8,122): 254, 251, 250, 247, 250, 247, 251, 247, 255, 252, 250, (5,8,133): 254, 245, 249, 252, 252, 252, 252, 252, 252, 252, 252, (5,9,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,9,12): 252, 252, 252, 252, 255, 247, 252, 255, 255, 247, 255, (5,9,23): 255, 253, 255, 249, 255, 255, 255, 246, 241, 255, 255, (5,9,34): 255, 254, 255, 252, 252, 248, 245, 246, 251, 246, 248, (5,9,45): 251, 255, 255, 245, 252, 248, 244, 248, 255, 255, 250, (5,9,56): 253, 251, 253, 251, 248, 255, 253, 246, 245, 255, 243, (5,9,67): 248, 247, 240, 254, 249, 253, 251, 255, 250, 253, 255, (5,9,78): 252, 252, 252, 251, 255, 249, 253, 250, 249, 254, 242, (5,9,89): 251, 248, 254, 255, 248, 250, 242, 254, 248, 248, 255, (5,9,100): 255, 250, 255, 253, 253, 254, 252, 253, 255, 253, 254, (5,9,111): 252, 250, 250, 252, 252, 253, 252, 252, 251, 254, 252, (5,9,122): 252, 250, 255, 255, 254, 252, 255, 252, 252, 247, 255, (5,9,133): 255, 254, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,10,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,10,11): 252, 252, 252, 252, 252, 255, 249, 251, 254, 255, 250, (5,10,22): 252, 250, 249, 249, 255, 242, 217, 209, 188, 196, 182, (5,10,33): 166, 159, 165, 172, 175, 193, 212, 242, 255, 249, 253, (5,10,44): 255, 255, 248, 252, 249, 245, 250, 249, 244, 250, 254, (5,10,55): 255, 253, 255, 251, 252, 251, 249, 243, 252, 252, 255, (5,10,66): 254, 255, 252, 255, 255, 245, 251, 252, 249, 252, 254, (5,10,77): 252, 250, 254, 251, 250, 254, 247, 255, 255, 249, 244, (5,10,88): 255, 255, 253, 253, 254, 253, 254, 255, 248, 249, 253, (5,10,99): 255, 248, 240, 249, 255, 250, 253, 253, 251, 255, 250, (5,10,110): 254, 253, 251, 249, 248, 251, 251, 253, 255, 255, 246, (5,10,121): 251, 252, 250, 255, 253, 255, 255, 255, 247, 252, 248, (5,10,132): 248, 254, 248, 255, 252, 252, 252, 252, 252, 252, 252, (5,10,143): 252, (5,11,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,11,11): 252, 252, 252, 252, 252, 254, 249, 247, 250, 255, 253, (5,11,22): 244, 251, 238, 204, 176, 180, 191, 204, 216, 233, 233, (5,11,33): 233, 238, 238, 236, 225, 217, 214, 180, 184, 203, 229, (5,11,44): 251, 247, 254, 251, 250, 255, 255, 254, 252, 250, 253, (5,11,55): 251, 249, 255, 251, 253, 252, 243, 252, 255, 252, 205, (5,11,66): 205, 208, 199, 226, 235, 255, 255, 249, 241, 246, 244, (5,11,77): 255, 250, 255, 252, 254, 254, 250, 255, 255, 242, 252, (5,11,88): 253, 252, 254, 249, 251, 253, 252, 245, 253, 255, 240, (5,11,99): 255, 255, 255, 234, 252, 253, 251, 253, 244, 252, 247, (5,11,110): 249, 248, 252, 251, 252, 255, 253, 254, 254, 254, 254, (5,11,121): 253, 252, 251, 255, 255, 254, 254, 255, 252, 250, 252, (5,11,132): 248, 249, 251, 255, 252, 252, 252, 252, 252, 252, 252, (5,11,143): 252, (5,12,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,12,11): 252, 252, 252, 252, 252, 246, 250, 251, 253, 255, 252, (5,12,22): 253, 211, 170, 206, 232, 244, 237, 234, 240, 236, 238, (5,12,33): 238, 240, 236, 238, 238, 240, 237, 228, 232, 209, 176, (5,12,44): 177, 242, 252, 245, 253, 248, 254, 255, 255, 252, 249, (5,12,55): 249, 249, 253, 252, 253, 253, 252, 255, 199, 175, 209, (5,12,66): 204, 209, 207, 196, 188, 173, 210, 255, 244, 248, 255, (5,12,77): 250, 251, 253, 252, 251, 255, 244, 252, 255, 249, 255, (5,12,88): 212, 186, 188, 181, 184, 192, 204, 231, 252, 253, 249, (5,12,99): 255, 247, 255, 245, 215, 236, 226, 232, 228, 243, 245, (5,12,110): 243, 242, 252, 252, 252, 250, 244, 248, 246, 244, 254, (5,12,121): 250, 254, 253, 251, 247, 250, 249, 251, 255, 255, 252, (5,12,132): 248, 251, 245, 247, 252, 252, 252, 252, 252, 252, 252, (5,12,143): 252, (5,13,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,13,11): 252, 252, 252, 252, 252, 254, 248, 249, 252, 255, 213, (5,13,22): 174, 202, 237, 236, 236, 235, 224, 220, 222, 224, 220, (5,13,33): 217, 219, 217, 221, 221, 227, 231, 232, 229, 240, 222, (5,13,44): 212, 178, 167, 251, 253, 251, 245, 252, 255, 249, 248, (5,13,55): 253, 247, 255, 253, 251, 255, 255, 242, 167, 239, 248, (5,13,66): 236, 238, 239, 243, 240, 188, 171, 183, 255, 255, 255, (5,13,77): 252, 251, 249, 251, 249, 255, 248, 252, 255, 252, 182, (5,13,88): 208, 218, 220, 233, 243, 228, 211, 164, 182, 246, 252, (5,13,99): 254, 252, 208, 182, 186, 199, 190, 193, 183, 184, 182, (5,13,110): 175, 175, 170, 170, 171, 170, 168, 182, 184, 185, 174, (5,13,121): 176, 189, 193, 190, 191, 205, 209, 195, 201, 200, 216, (5,13,132): 224, 252, 255, 251, 252, 252, 252, 252, 252, 252, 252, (5,13,143): 252, (5,14,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,14,11): 252, 252, 252, 252, 252, 255, 249, 251, 254, 196, 196, (5,14,22): 240, 227, 226, 221, 205, 208, 206, 201, 203, 188, 194, (5,14,33): 199, 203, 200, 204, 210, 217, 215, 215, 217, 222, 239, (5,14,44): 246, 225, 171, 182, 212, 255, 249, 243, 255, 249, 254, (5,14,55): 251, 244, 255, 254, 250, 255, 251, 218, 204, 232, 234, (5,14,66): 223, 230, 230, 229, 241, 185, 210, 171, 255, 255, 255, (5,14,77): 251, 253, 247, 255, 249, 254, 245, 251, 255, 255, 163, (5,14,88): 236, 238, 235, 231, 236, 237, 237, 207, 174, 167, 242, (5,14,99): 245, 247, 173, 232, 248, 238, 238, 241, 242, 236, 236, (5,14,110): 241, 241, 242, 241, 241, 241, 231, 238, 233, 231, 236, (5,14,121): 229, 231, 228, 223, 218, 218, 215, 218, 227, 200, 209, (5,14,132): 188, 176, 213, 255, 252, 252, 252, 252, 252, 252, 252, (5,14,143): 252, (5,15,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,15,11): 252, 252, 252, 252, 252, 250, 255, 253, 255, 188, 217, (5,15,22): 225, 218, 203, 197, 200, 192, 183, 181, 177, 175, 181, (5,15,33): 173, 173, 176, 179, 176, 184, 193, 203, 211, 208, 221, (5,15,44): 224, 233, 223, 186, 166, 193, 255, 254, 245, 254, 249, (5,15,55): 255, 252, 255, 251, 249, 252, 253, 191, 204, 209, 209, (5,15,66): 202, 204, 213, 218, 223, 158, 239, 188, 249, 250, 253, (5,15,77): 245, 255, 253, 254, 248, 255, 244, 254, 250, 223, 194, (5,15,88): 236, 225, 220, 221, 233, 230, 223, 191, 212, 178, 251, (5,15,99): 255, 223, 196, 231, 229, 224, 226, 223, 233, 229, 228, (5,15,110): 237, 229, 234, 231, 233, 236, 228, 237, 231, 233, 236, (5,15,121): 231, 232, 233, 238, 236, 236, 235, 237, 231, 227, 238, (5,15,132): 231, 185, 151, 255, 252, 252, 252, 252, 252, 252, 252, (5,15,143): 252, (5,16,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,16,11): 252, 252, 252, 252, 252, 242, 255, 249, 233, 174, 216, (5,16,22): 214, 194, 195, 179, 175, 171, 176, 165, 166, 161, 163, (5,16,33): 166, 170, 169, 162, 169, 162, 172, 176, 182, 193, 203, (5,16,44): 213, 227, 224, 224, 189, 170, 212, 253, 246, 255, 251, (5,16,55): 251, 251, 255, 252, 251, 252, 240, 181, 182, 189, 184, (5,16,66): 186, 190, 195, 201, 208, 179, 220, 205, 250, 251, 251, (5,16,77): 248, 255, 248, 255, 247, 254, 250, 250, 249, 219, 174, (5,16,88): 206, 208, 198, 203, 201, 207, 224, 175, 223, 186, 251, (5,16,99): 248, 206, 198, 201, 213, 211, 211, 210, 214, 208, 214, (5,16,110): 218, 221, 213, 217, 214, 219, 216, 221, 221, 220, 224, (5,16,121): 220, 224, 224, 225, 224, 220, 219, 220, 229, 236, 232, (5,16,132): 210, 188, 222, 236, 252, 252, 252, 252, 252, 252, 252, (5,16,143): 252, (5,17,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,17,11): 252, 252, 252, 252, 252, 247, 255, 255, 196, 185, 196, (5,17,22): 180, 159, 159, 159, 154, 155, 145, 161, 160, 154, 144, (5,17,33): 154, 152, 150, 147, 151, 161, 167, 171, 169, 170, 193, (5,17,44): 195, 210, 221, 227, 227, 165, 194, 232, 255, 249, 254, (5,17,55): 249, 247, 255, 254, 255, 251, 238, 152, 185, 172, 171, (5,17,66): 166, 172, 179, 189, 183, 180, 210, 215, 248, 250, 250, (5,17,77): 253, 255, 250, 255, 250, 251, 252, 252, 242, 193, 171, (5,17,88): 188, 183, 175, 183, 182, 192, 210, 163, 236, 193, 250, (5,17,99): 253, 188, 185, 183, 198, 188, 190, 190, 193, 188, 194, (5,17,110): 187, 200, 193, 195, 197, 196, 202, 196, 198, 193, 190, (5,17,121): 187, 191, 200, 195, 202, 197, 197, 204, 200, 210, 212, (5,17,132): 189, 203, 207, 238, 252, 252, 252, 252, 252, 252, 252, (5,17,143): 252, (5,18,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,18,11): 252, 252, 252, 252, 252, 255, 252, 251, 173, 178, 179, (5,18,22): 170, 157, 157, 149, 149, 144, 154, 116, 120, 116, 117, (5,18,33): 107, 112, 120, 134, 142, 147, 152, 151, 160, 159, 168, (5,18,44): 179, 188, 204, 217, 229, 218, 171, 197, 255, 255, 238, (5,18,55): 255, 252, 255, 253, 250, 239, 234, 143, 169, 161, 156, (5,18,66): 154, 152, 168, 173, 168, 187, 204, 240, 255, 253, 248, (5,18,77): 253, 255, 254, 254, 253, 248, 252, 249, 232, 162, 172, (5,18,88): 171, 162, 158, 166, 167, 180, 193, 162, 217, 202, 255, (5,18,99): 233, 158, 181, 184, 173, 172, 174, 169, 176, 173, 181, (5,18,110): 168, 173, 171, 173, 175, 173, 178, 172, 177, 177, 174, (5,18,121): 186, 181, 180, 182, 191, 182, 184, 184, 189, 186, 208, (5,18,132): 172, 208, 208, 235, 252, 252, 252, 252, 252, 252, 252, (5,18,143): 252, (5,19,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,19,11): 252, 252, 252, 252, 252, 251, 251, 240, 159, 174, 169, (5,19,22): 166, 146, 149, 149, 119, 113, 111, 136, 127, 111, 122, (5,19,33): 112, 122, 106, 102, 104, 123, 142, 152, 147, 154, 157, (5,19,44): 165, 179, 188, 204, 225, 226, 196, 200, 185, 253, 246, (5,19,55): 254, 254, 254, 250, 252, 238, 203, 142, 164, 157, 153, (5,19,66): 146, 154, 154, 173, 159, 197, 186, 247, 255, 255, 246, (5,19,77): 253, 250, 253, 251, 255, 248, 251, 247, 230, 148, 168, (5,19,88): 161, 159, 154, 154, 161, 168, 172, 172, 199, 211, 243, (5,19,99): 235, 145, 177, 160, 156, 153, 160, 153, 164, 152, 160, (5,19,110): 158, 154, 162, 165, 157, 160, 157, 159, 159, 164, 171, (5,19,121): 162, 166, 165, 161, 155, 163, 167, 166, 169, 174, 194, (5,19,132): 160, 221, 183, 255, 252, 252, 252, 252, 252, 252, 252, (5,19,143): 252, (5,20,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,20,11): 252, 252, 252, 252, 252, 248, 237, 227, 140, 173, 145, (5,20,22): 142, 122, 118, 105, 130, 135, 130, 121, 136, 161, 172, (5,20,33): 168, 165, 157, 163, 150, 135, 97, 127, 150, 148, 158, (5,20,44): 154, 159, 177, 181, 201, 224, 223, 176, 205, 245, 252, (5,20,55): 250, 249, 255, 249, 252, 241, 187, 146, 159, 153, 151, (5,20,66): 151, 144, 157, 167, 159, 205, 180, 247, 250, 255, 245, (5,20,77): 252, 249, 255, 254, 253, 247, 254, 251, 226, 146, 163, (5,20,88): 156, 154, 152, 152, 158, 166, 163, 185, 193, 233, 243, (5,20,99): 213, 136, 149, 138, 160, 145, 150, 148, 158, 150, 159, (5,20,110): 152, 154, 150, 152, 145, 151, 153, 156, 153, 154, 148, (5,20,121): 158, 159, 149, 159, 156, 155, 154, 150, 151, 171, 184, (5,20,132): 150, 223, 199, 244, 252, 252, 252, 252, 252, 252, 252, (5,20,143): 252, (5,21,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,21,11): 252, 252, 252, 252, 252, 255, 241, 219, 136, 171, 127, (5,21,22): 114, 134, 141, 134, 118, 141, 169, 182, 179, 176, 182, (5,21,33): 184, 183, 167, 169, 170, 171, 160, 111, 116, 145, 149, (5,21,44): 156, 151, 166, 169, 193, 194, 221, 173, 214, 188, 250, (5,21,55): 255, 251, 255, 251, 252, 233, 180, 157, 154, 144, 158, (5,21,66): 147, 147, 159, 175, 157, 212, 198, 252, 249, 255, 246, (5,21,77): 254, 250, 253, 255, 247, 250, 255, 245, 203, 145, 161, (5,21,88): 156, 146, 152, 153, 158, 169, 160, 199, 184, 250, 233, (5,21,99): 214, 174, 108, 115, 113, 106, 106, 105, 106, 106, 115, (5,21,110): 107, 116, 146, 148, 151, 148, 151, 146, 150, 146, 120, (5,21,121): 116, 121, 132, 130, 134, 135, 127, 136, 143, 149, 162, (5,21,132): 167, 164, 226, 245, 252, 252, 252, 252, 252, 252, 252, (5,21,143): 252, (5,22,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,22,11): 252, 252, 252, 252, 252, 255, 247, 225, 144, 111, 123, (5,22,22): 147, 132, 115, 172, 181, 189, 202, 205, 207, 199, 199, (5,22,33): 196, 203, 186, 181, 177, 168, 170, 166, 101, 133, 147, (5,22,44): 153, 153, 147, 160, 179, 193, 220, 190, 195, 212, 255, (5,22,55): 250, 254, 251, 253, 255, 227, 151, 162, 161, 141, 157, (5,22,66): 150, 144, 168, 171, 162, 211, 207, 251, 249, 252, 250, (5,22,77): 255, 250, 249, 255, 245, 255, 251, 236, 179, 150, 164, (5,22,88): 155, 144, 151, 150, 156, 168, 152, 206, 180, 241, 234, (5,22,99): 218, 198, 169, 131, 124, 125, 126, 122, 116, 109, 119, (5,22,110): 125, 112, 142, 145, 151, 147, 146, 143, 151, 146, 112, (5,22,121): 113, 110, 111, 108, 111, 111, 109, 107, 107, 131, 123, (5,22,132): 146, 154, 249, 255, 252, 252, 252, 252, 252, 252, 252, (5,22,143): 252, (5,23,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,23,11): 252, 252, 252, 252, 252, 246, 234, 214, 197, 150, 118, (5,23,22): 136, 148, 197, 196, 209, 216, 214, 220, 219, 232, 220, (5,23,33): 228, 224, 213, 205, 195, 189, 179, 173, 156, 106, 149, (5,23,44): 147, 149, 148, 154, 171, 196, 202, 207, 183, 211, 251, (5,23,55): 247, 250, 255, 252, 239, 233, 137, 165, 157, 137, 151, (5,23,66): 146, 147, 163, 166, 161, 203, 216, 253, 251, 246, 251, (5,23,77): 255, 250, 251, 254, 245, 255, 249, 238, 175, 160, 163, (5,23,88): 147, 143, 150, 147, 161, 170, 148, 217, 194, 246, 237, (5,23,99): 220, 197, 187, 170, 174, 174, 174, 161, 168, 165, 173, (5,23,110): 176, 105, 143, 145, 143, 148, 142, 148, 145, 136, 132, (5,23,121): 122, 138, 151, 155, 139, 151, 151, 149, 155, 158, 165, (5,23,132): 197, 240, 255, 240, 252, 252, 252, 252, 252, 252, 252, (5,23,143): 252, (5,24,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,24,11): 252, 252, 252, 252, 252, 254, 236, 213, 197, 181, 190, (5,24,22): 196, 204, 211, 222, 227, 231, 234, 238, 242, 238, 243, (5,24,33): 235, 239, 234, 223, 218, 205, 190, 176, 168, 129, 130, (5,24,44): 154, 143, 141, 156, 163, 163, 207, 206, 165, 226, 236, (5,24,55): 251, 253, 254, 248, 239, 237, 143, 164, 147, 152, 144, (5,24,66): 147, 148, 166, 159, 188, 191, 230, 255, 253, 252, 254, (5,24,77): 252, 252, 255, 251, 255, 255, 240, 221, 163, 147, 152, (5,24,88): 148, 142, 145, 155, 167, 166, 163, 201, 201, 255, 240, (5,24,99): 231, 205, 191, 193, 189, 192, 184, 188, 191, 188, 173, (5,24,110): 179, 116, 150, 153, 151, 146, 150, 149, 149, 135, 133, (5,24,121): 149, 155, 189, 172, 171, 162, 174, 179, 182, 193, 213, (5,24,132): 235, 250, 253, 251, 252, 252, 252, 252, 252, 252, 252, (5,24,143): 252, (5,25,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,25,11): 252, 252, 252, 252, 252, 253, 238, 219, 210, 197, 207, (5,25,22): 216, 227, 236, 243, 246, 248, 250, 251, 254, 251, 255, (5,25,33): 253, 251, 246, 242, 235, 219, 207, 191, 180, 172, 110, (5,25,44): 148, 142, 146, 153, 155, 168, 187, 209, 184, 209, 190, (5,25,55): 248, 251, 255, 249, 232, 202, 147, 159, 147, 146, 144, (5,25,66): 143, 150, 170, 154, 198, 187, 242, 255, 251, 251, 247, (5,25,77): 247, 250, 249, 251, 251, 253, 246, 226, 149, 164, 155, (5,25,88): 148, 140, 144, 150, 166, 153, 171, 199, 212, 253, 242, (5,25,99): 240, 219, 212, 212, 214, 209, 212, 209, 204, 203, 194, (5,25,110): 169, 131, 148, 150, 150, 149, 149, 148, 151, 138, 157, (5,25,121): 147, 176, 201, 196, 198, 192, 198, 189, 200, 217, 234, (5,25,132): 247, 252, 252, 251, 252, 252, 252, 252, 252, 252, 252, (5,25,143): 252, (5,26,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,26,11): 252, 252, 252, 252, 252, 251, 243, 235, 230, 221, 230, (5,26,22): 235, 243, 249, 252, 252, 253, 253, 253, 254, 252, 251, (5,26,33): 253, 251, 250, 252, 248, 237, 224, 206, 184, 181, 112, (5,26,44): 147, 139, 143, 146, 149, 165, 183, 197, 190, 202, 198, (5,26,55): 255, 250, 254, 252, 239, 184, 153, 151, 148, 150, 147, (5,26,66): 146, 147, 171, 150, 201, 175, 255, 255, 251, 254, 250, (5,26,77): 253, 255, 255, 249, 253, 255, 239, 236, 133, 163, 151, (5,26,88): 149, 143, 147, 147, 172, 149, 192, 193, 237, 251, 249, (5,26,99): 252, 236, 235, 230, 233, 230, 221, 228, 233, 216, 225, (5,26,110): 167, 141, 152, 150, 147, 149, 149, 149, 159, 147, 185, (5,26,121): 153, 219, 226, 222, 221, 217, 217, 222, 225, 231, 240, (5,26,132): 249, 254, 254, 252, 252, 252, 252, 252, 252, 252, 252, (5,26,143): 252, (5,27,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,27,11): 252, 252, 252, 252, 252, 252, 249, 243, 236, 232, 244, (5,27,22): 250, 253, 251, 251, 251, 252, 251, 250, 251, 251, 252, (5,27,33): 251, 251, 254, 251, 251, 249, 233, 225, 202, 175, 130, (5,27,44): 127, 150, 144, 148, 140, 162, 169, 200, 193, 195, 189, (5,27,55): 246, 252, 253, 253, 239, 175, 157, 147, 150, 141, 149, (5,27,66): 148, 151, 175, 151, 218, 198, 254, 252, 250, 250, 252, (5,27,77): 253, 251, 253, 255, 252, 255, 241, 204, 138, 156, 148, (5,27,88): 151, 145, 149, 143, 173, 146, 204, 176, 253, 249, 248, (5,27,99): 255, 248, 249, 244, 242, 255, 245, 243, 244, 241, 216, (5,27,110): 172, 149, 152, 148, 142, 147, 147, 149, 159, 144, 206, (5,27,121): 164, 236, 235, 238, 240, 237, 232, 234, 241, 249, 254, (5,27,132): 254, 252, 250, 249, 252, 252, 252, 252, 252, 252, 252, (5,27,143): 252, (5,28,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,28,11): 252, 252, 252, 252, 252, 251, 251, 253, 252, 250, 255, (5,28,22): 252, 251, 253, 252, 252, 253, 253, 253, 252, 253, 253, (5,28,33): 253, 253, 254, 251, 252, 254, 242, 238, 211, 186, 164, (5,28,44): 121, 155, 132, 147, 146, 158, 162, 195, 189, 190, 199, (5,28,55): 242, 253, 253, 249, 229, 152, 157, 149, 147, 147, 148, (5,28,66): 142, 159, 180, 145, 204, 209, 252, 253, 254, 252, 254, (5,28,77): 254, 252, 255, 252, 247, 249, 238, 186, 145, 152, 147, (5,28,88): 147, 142, 147, 144, 173, 147, 209, 176, 255, 248, 247, (5,28,99): 255, 251, 253, 254, 249, 252, 248, 253, 255, 241, 230, (5,28,110): 150, 152, 150, 148, 144, 149, 150, 155, 163, 153, 218, (5,28,121): 196, 250, 254, 254, 255, 253, 250, 251, 252, 252, 251, (5,28,132): 250, 250, 252, 254, 252, 252, 252, 252, 252, 252, 252, (5,28,143): 252, (5,29,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,29,11): 252, 252, 252, 252, 252, 253, 248, 250, 252, 254, 253, (5,29,22): 252, 255, 252, 251, 252, 252, 252, 253, 251, 252, 249, (5,29,33): 254, 251, 249, 253, 253, 252, 252, 247, 218, 194, 174, (5,29,44): 122, 143, 139, 149, 141, 151, 168, 181, 188, 188, 209, (5,29,55): 222, 252, 249, 246, 232, 140, 158, 147, 142, 142, 147, (5,29,66): 156, 151, 162, 169, 197, 222, 252, 249, 253, 251, 250, (5,29,77): 248, 250, 248, 250, 247, 248, 232, 188, 151, 159, 155, (5,29,88): 149, 139, 147, 156, 172, 152, 211, 198, 254, 251, 251, (5,29,99): 254, 249, 250, 255, 250, 252, 251, 252, 254, 243, 233, (5,29,110): 153, 162, 147, 146, 144, 145, 146, 155, 163, 167, 197, (5,29,121): 215, 249, 255, 249, 252, 253, 253, 254, 252, 250, 251, (5,29,132): 253, 254, 252, 250, 252, 252, 252, 252, 252, 252, 252, (5,29,143): 252, (5,30,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,30,11): 252, 252, 252, 252, 252, 251, 250, 253, 253, 254, 255, (5,30,22): 253, 255, 252, 251, 254, 252, 252, 253, 251, 252, 252, (5,30,33): 254, 253, 250, 253, 253, 250, 254, 243, 234, 208, 179, (5,30,44): 127, 147, 150, 140, 139, 152, 158, 173, 191, 188, 200, (5,30,55): 227, 251, 246, 247, 218, 140, 162, 145, 143, 147, 137, (5,30,66): 157, 163, 157, 178, 184, 247, 253, 252, 251, 250, 255, (5,30,77): 250, 250, 249, 255, 254, 244, 232, 160, 156, 153, 145, (5,30,88): 152, 142, 148, 163, 164, 157, 200, 212, 251, 251, 253, (5,30,99): 250, 248, 251, 254, 255, 250, 255, 251, 254, 241, 229, (5,30,110): 127, 159, 151, 149, 146, 145, 147, 155, 160, 178, 195, (5,30,121): 239, 249, 255, 248, 251, 255, 251, 250, 252, 253, 253, (5,30,132): 251, 250, 251, 252, 252, 252, 252, 252, 252, 252, 252, (5,30,143): 252, (5,31,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,31,11): 252, 252, 252, 252, 252, 252, 254, 252, 238, 236, 241, (5,31,22): 241, 240, 252, 251, 254, 251, 251, 254, 252, 253, 255, (5,31,33): 249, 253, 253, 251, 253, 252, 252, 249, 238, 218, 187, (5,31,44): 120, 148, 139, 145, 148, 143, 159, 167, 189, 179, 205, (5,31,55): 228, 252, 250, 245, 183, 132, 162, 149, 148, 140, 147, (5,31,66): 148, 164, 153, 178, 166, 192, 210, 216, 210, 212, 231, (5,31,77): 224, 222, 227, 221, 228, 227, 207, 144, 158, 143, 139, (5,31,88): 149, 141, 147, 166, 159, 166, 199, 222, 253, 253, 255, (5,31,99): 246, 249, 253, 250, 253, 254, 252, 251, 255, 237, 198, (5,31,110): 138, 162, 143, 141, 141, 145, 152, 159, 157, 183, 174, (5,31,121): 241, 249, 255, 247, 245, 255, 253, 253, 252, 252, 252, (5,31,132): 252, 253, 253, 252, 252, 252, 252, 252, 252, 252, 252, (5,31,143): 252, (5,32,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,32,11): 251, 252, 253, 252, 252, 247, 252, 186, 180, 183, 182, (5,32,22): 186, 164, 165, 170, 169, 167, 164, 183, 179, 180, 181, (5,32,33): 184, 195, 243, 255, 247, 251, 253, 252, 232, 225, 196, (5,32,44): 127, 151, 143, 145, 139, 150, 147, 176, 172, 183, 203, (5,32,55): 222, 250, 254, 231, 189, 151, 150, 141, 148, 138, 144, (5,32,66): 152, 164, 185, 190, 201, 204, 195, 196, 195, 193, 188, (5,32,77): 194, 187, 191, 180, 181, 174, 163, 158, 155, 143, 150, (5,32,88): 142, 142, 150, 157, 154, 184, 189, 233, 252, 252, 252, (5,32,99): 252, 252, 252, 252, 252, 249, 255, 247, 252, 238, 195, (5,32,110): 145, 147, 151, 139, 150, 147, 144, 179, 144, 203, 175, (5,32,121): 255, 252, 252, 249, 255, 246, 252, 252, 252, 252, 252, (5,32,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,32,143): 252, (5,33,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,33,11): 252, 252, 252, 252, 252, 254, 192, 199, 218, 229, 215, (5,33,22): 224, 225, 227, 217, 224, 223, 227, 217, 213, 218, 221, (5,33,33): 221, 175, 162, 182, 255, 255, 255, 254, 241, 223, 187, (5,33,44): 127, 152, 144, 143, 143, 152, 148, 172, 173, 184, 201, (5,33,55): 239, 251, 254, 236, 179, 155, 149, 142, 144, 140, 144, (5,33,66): 153, 167, 187, 200, 213, 219, 222, 226, 223, 225, 223, (5,33,77): 224, 222, 222, 226, 218, 209, 195, 171, 162, 150, 145, (5,33,88): 144, 145, 147, 164, 150, 196, 182, 248, 252, 252, 252, (5,33,99): 252, 252, 252, 252, 252, 252, 255, 244, 255, 225, 180, (5,33,110): 149, 150, 143, 139, 146, 146, 148, 176, 150, 213, 181, (5,33,121): 254, 254, 254, 250, 254, 248, 254, 252, 252, 252, 252, (5,33,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,33,143): 252, (5,34,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,34,11): 252, 252, 252, 252, 252, 250, 179, 219, 217, 221, 212, (5,34,22): 218, 227, 214, 220, 221, 220, 216, 222, 218, 215, 216, (5,34,33): 221, 189, 204, 181, 247, 246, 247, 252, 245, 228, 185, (5,34,44): 132, 151, 144, 145, 135, 151, 150, 168, 170, 194, 190, (5,34,55): 236, 254, 248, 227, 149, 154, 148, 143, 137, 143, 147, (5,34,66): 154, 169, 184, 198, 208, 211, 209, 214, 211, 216, 216, (5,34,77): 213, 215, 215, 218, 218, 204, 188, 170, 155, 142, 138, (5,34,88): 142, 146, 149, 166, 141, 206, 183, 255, 252, 252, 252, (5,34,99): 252, 252, 252, 252, 252, 253, 251, 246, 248, 228, 152, (5,34,110): 155, 147, 143, 143, 144, 147, 155, 168, 151, 204, 206, (5,34,121): 255, 250, 251, 251, 255, 251, 255, 252, 252, 252, 252, (5,34,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,34,143): 252, (5,35,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 251, (5,35,11): 253, 252, 252, 253, 251, 196, 177, 208, 198, 196, 201, (5,35,22): 201, 194, 202, 201, 205, 199, 206, 200, 208, 206, 212, (5,35,33): 206, 168, 228, 194, 247, 250, 249, 252, 244, 230, 181, (5,35,44): 138, 149, 141, 142, 135, 148, 154, 167, 160, 205, 185, (5,35,55): 247, 252, 246, 231, 137, 157, 148, 145, 137, 143, 146, (5,35,66): 151, 167, 175, 188, 192, 195, 192, 193, 190, 195, 196, (5,35,77): 194, 196, 198, 187, 191, 179, 168, 159, 144, 137, 138, (5,35,88): 143, 148, 159, 168, 141, 212, 199, 255, 252, 252, 252, (5,35,99): 252, 252, 252, 252, 252, 254, 255, 245, 246, 236, 141, (5,35,110): 153, 147, 142, 144, 142, 148, 157, 159, 164, 197, 212, (5,35,121): 251, 253, 255, 251, 252, 251, 255, 252, 252, 252, 252, (5,35,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,35,143): 252, (5,36,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 251, (5,36,11): 253, 252, 252, 253, 248, 190, 187, 187, 183, 182, 185, (5,36,22): 188, 182, 184, 178, 182, 185, 190, 179, 187, 191, 196, (5,36,33): 208, 169, 223, 198, 251, 255, 255, 251, 240, 228, 166, (5,36,44): 138, 150, 140, 139, 140, 141, 152, 174, 151, 207, 178, (5,36,55): 255, 254, 246, 225, 131, 156, 150, 144, 135, 140, 141, (5,36,66): 144, 156, 159, 171, 172, 175, 177, 175, 176, 176, 178, (5,36,77): 180, 178, 182, 177, 172, 170, 166, 153, 145, 149, 143, (5,36,88): 140, 149, 159, 164, 148, 210, 211, 251, 252, 252, 252, (5,36,99): 252, 252, 252, 252, 252, 253, 250, 250, 239, 236, 130, (5,36,110): 153, 144, 141, 139, 141, 152, 156, 154, 181, 192, 239, (5,36,121): 254, 246, 251, 252, 255, 253, 254, 252, 252, 252, 252, (5,36,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,36,143): 252, (5,37,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 250, (5,37,11): 253, 252, 252, 252, 241, 168, 179, 167, 156, 165, 158, (5,37,22): 157, 157, 157, 161, 160, 162, 160, 169, 169, 171, 173, (5,37,33): 181, 163, 204, 202, 247, 250, 249, 248, 244, 227, 156, (5,37,44): 139, 149, 139, 137, 141, 142, 151, 175, 152, 212, 180, (5,37,55): 249, 255, 241, 197, 129, 154, 148, 145, 133, 137, 139, (5,37,66): 140, 146, 149, 154, 152, 156, 158, 156, 160, 157, 161, (5,37,77): 161, 157, 160, 164, 161, 158, 154, 148, 142, 144, 142, (5,37,88): 136, 150, 152, 157, 162, 200, 216, 250, 252, 252, 252, (5,37,99): 252, 252, 252, 252, 252, 254, 253, 243, 247, 206, 141, (5,37,110): 148, 146, 144, 138, 139, 154, 159, 150, 190, 178, 237, (5,37,121): 248, 251, 255, 253, 250, 249, 254, 252, 252, 252, 252, (5,37,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,37,143): 252, (5,38,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 250, (5,38,11): 252, 252, 252, 249, 232, 144, 164, 158, 139, 147, 147, (5,38,22): 146, 148, 154, 148, 151, 145, 150, 149, 152, 156, 164, (5,38,33): 165, 172, 192, 218, 249, 250, 253, 252, 249, 218, 147, (5,38,44): 147, 146, 137, 137, 140, 148, 149, 166, 158, 214, 198, (5,38,55): 249, 245, 242, 179, 148, 155, 139, 146, 138, 138, 139, (5,38,66): 141, 140, 147, 147, 143, 147, 145, 145, 147, 144, 146, (5,38,77): 145, 144, 143, 149, 148, 147, 139, 143, 138, 134, 138, (5,38,88): 140, 149, 159, 152, 181, 193, 232, 254, 252, 252, 252, (5,38,99): 252, 252, 252, 252, 252, 255, 253, 249, 242, 187, 147, (5,38,110): 150, 146, 142, 137, 138, 153, 166, 148, 197, 181, 255, (5,38,121): 253, 249, 252, 254, 253, 248, 253, 252, 252, 252, 252, (5,38,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,38,143): 252, (5,39,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 253, 250, (5,39,11): 252, 252, 252, 246, 226, 147, 151, 151, 148, 136, 142, (5,39,22): 145, 141, 131, 131, 131, 131, 126, 138, 133, 141, 144, (5,39,33): 147, 154, 178, 248, 255, 246, 255, 255, 243, 194, 134, (5,39,44): 157, 150, 144, 145, 135, 149, 147, 163, 165, 199, 202, (5,39,55): 250, 248, 246, 159, 154, 153, 131, 148, 141, 140, 139, (5,39,66): 140, 132, 141, 138, 136, 141, 140, 143, 140, 138, 142, (5,39,77): 137, 142, 138, 142, 134, 143, 141, 141, 142, 143, 140, (5,39,88): 143, 139, 169, 142, 190, 184, 249, 253, 252, 252, 252, (5,39,99): 252, 252, 252, 252, 252, 255, 252, 247, 232, 173, 151, (5,39,110): 144, 141, 140, 142, 143, 153, 167, 144, 204, 199, 254, (5,39,121): 252, 252, 253, 254, 249, 247, 253, 252, 252, 252, 252, (5,39,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,39,143): 252, (5,40,0): 252, 252, 252, 252, 252, 252, 252, 252, 254, 244, 251, (5,40,11): 255, 252, 243, 238, 189, 141, 152, 148, 137, 136, 139, (5,40,22): 141, 142, 111, 117, 118, 106, 110, 109, 112, 121, 125, (5,40,33): 134, 162, 188, 254, 252, 253, 249, 249, 234, 184, 155, (5,40,44): 144, 135, 141, 141, 140, 143, 148, 145, 185, 183, 248, (5,40,55): 249, 236, 229, 160, 154, 137, 145, 138, 136, 143, 138, (5,40,66): 141, 103, 118, 110, 99, 106, 107, 105, 108, 110, 107, (5,40,77): 110, 115, 113, 116, 120, 121, 128, 137, 136, 140, 136, (5,40,88): 142, 145, 160, 151, 206, 170, 250, 255, 252, 252, 252, (5,40,99): 252, 252, 252, 252, 252, 251, 255, 239, 229, 154, 156, (5,40,110): 137, 146, 137, 145, 141, 146, 165, 147, 213, 196, 252, (5,40,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,40,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,40,143): 252, (5,41,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 248, 255, (5,41,11): 248, 251, 254, 234, 178, 142, 148, 145, 136, 135, 138, (5,41,22): 140, 142, 106, 136, 110, 154, 139, 132, 140, 138, 148, (5,41,33): 172, 197, 234, 251, 255, 251, 253, 248, 242, 166, 150, (5,41,44): 153, 134, 136, 141, 144, 147, 152, 142, 190, 179, 244, (5,41,55): 247, 238, 234, 144, 152, 137, 140, 137, 135, 129, 135, (5,41,66): 127, 116, 115, 116, 125, 123, 118, 117, 121, 117, 109, (5,41,77): 105, 107, 107, 104, 96, 115, 135, 135, 146, 140, 144, (5,41,88): 140, 150, 165, 141, 215, 200, 251, 255, 252, 252, 252, (5,41,99): 252, 252, 252, 252, 252, 250, 251, 246, 225, 139, 158, (5,41,110): 143, 137, 143, 138, 153, 149, 157, 161, 198, 213, 252, (5,41,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,41,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,41,143): 252, (5,42,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 250, 251, (5,42,11): 254, 254, 248, 239, 164, 146, 147, 143, 137, 135, 138, (5,42,22): 142, 144, 110, 148, 145, 167, 182, 184, 177, 184, 207, (5,42,33): 223, 247, 242, 251, 251, 255, 244, 243, 218, 157, 157, (5,42,44): 138, 143, 137, 139, 142, 138, 163, 150, 191, 178, 254, (5,42,55): 255, 245, 228, 138, 153, 138, 141, 138, 134, 144, 145, (5,42,66): 128, 139, 117, 164, 173, 179, 170, 167, 169, 170, 173, (5,42,77): 177, 173, 173, 176, 155, 129, 130, 127, 137, 125, 142, (5,42,88): 146, 157, 156, 154, 195, 220, 249, 255, 252, 252, 252, (5,42,99): 252, 252, 252, 252, 252, 252, 251, 244, 234, 127, 154, (5,42,110): 136, 146, 126, 148, 142, 151, 161, 169, 194, 240, 252, (5,42,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,42,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,42,143): 252, (5,43,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 254, 252, (5,43,11): 244, 255, 242, 228, 161, 147, 146, 142, 136, 135, 141, (5,43,22): 147, 143, 138, 153, 158, 191, 195, 200, 191, 208, 210, (5,43,33): 225, 244, 250, 253, 252, 250, 253, 237, 182, 165, 154, (5,43,44): 135, 145, 134, 145, 137, 157, 143, 171, 192, 211, 245, (5,43,55): 255, 242, 194, 139, 151, 136, 144, 139, 138, 140, 146, (5,43,66): 133, 150, 127, 176, 191, 180, 184, 184, 189, 181, 178, (5,43,77): 179, 177, 184, 182, 165, 122, 138, 133, 144, 139, 140, (5,43,88): 143, 154, 163, 168, 190, 211, 252, 252, 252, 252, 252, (5,43,99): 252, 252, 252, 252, 252, 253, 250, 242, 203, 134, 151, (5,43,110): 141, 136, 128, 146, 147, 154, 150, 186, 181, 226, 252, (5,43,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,43,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,43,143): 252, (5,44,0): 252, 252, 252, 252, 252, 252, 252, 252, 249, 253, 255, (5,44,11): 242, 255, 243, 225, 128, 142, 143, 139, 132, 133, 142, (5,44,22): 146, 140, 162, 163, 199, 216, 223, 229, 216, 225, 240, (5,44,33): 245, 249, 253, 254, 252, 243, 255, 233, 153, 170, 150, (5,44,44): 139, 139, 142, 131, 145, 158, 137, 180, 185, 233, 245, (5,44,55): 255, 237, 169, 145, 146, 137, 140, 137, 139, 135, 143, (5,44,66): 137, 167, 140, 213, 207, 216, 208, 201, 201, 197, 203, (5,44,77): 209, 202, 202, 192, 181, 126, 141, 141, 142, 133, 141, (5,44,88): 132, 151, 158, 180, 194, 234, 255, 248, 252, 252, 252, (5,44,99): 252, 252, 252, 252, 252, 253, 252, 236, 187, 142, 149, (5,44,110): 143, 134, 136, 137, 147, 162, 154, 193, 173, 254, 252, (5,44,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,44,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,44,143): 252, (5,45,0): 252, 252, 252, 252, 252, 252, 252, 252, 255, 249, 254, (5,45,11): 249, 251, 243, 237, 131, 145, 145, 141, 135, 136, 148, (5,45,22): 151, 145, 182, 182, 215, 231, 234, 237, 235, 242, 253, (5,45,33): 248, 255, 245, 255, 248, 255, 242, 165, 166, 166, 144, (5,45,44): 137, 132, 143, 143, 144, 149, 134, 195, 174, 245, 252, (5,45,55): 255, 240, 163, 153, 146, 140, 138, 136, 140, 141, 156, (5,45,66): 143, 184, 187, 225, 232, 224, 228, 229, 232, 227, 223, (5,45,77): 224, 222, 223, 215, 167, 131, 145, 130, 135, 136, 135, (5,45,88): 130, 154, 149, 189, 175, 255, 255, 247, 252, 252, 252, (5,45,99): 252, 252, 252, 252, 252, 253, 251, 228, 185, 144, 148, (5,45,110): 141, 138, 135, 136, 148, 167, 141, 193, 205, 251, 252, (5,45,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,45,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,45,143): 252, (5,46,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 245, 255, (5,46,11): 250, 247, 240, 190, 137, 142, 142, 135, 132, 136, 147, (5,46,22): 151, 148, 189, 174, 254, 242, 245, 255, 251, 242, 249, (5,46,33): 249, 255, 255, 255, 252, 255, 226, 159, 170, 151, 137, (5,46,44): 129, 138, 140, 131, 146, 137, 162, 182, 218, 255, 249, (5,46,55): 243, 232, 148, 149, 145, 136, 138, 135, 140, 147, 157, (5,46,66): 154, 188, 205, 251, 242, 245, 246, 243, 243, 242, 243, (5,46,77): 245, 241, 234, 233, 175, 144, 145, 139, 142, 141, 143, (5,46,88): 138, 158, 155, 192, 179, 240, 255, 252, 252, 252, 252, (5,46,99): 252, 252, 252, 252, 252, 252, 245, 230, 149, 149, 149, (5,46,110): 147, 126, 140, 142, 140, 159, 161, 203, 207, 248, 252, (5,46,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,46,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,46,143): 252, (5,47,0): 252, 252, 252, 252, 252, 252, 252, 252, 255, 249, 250, (5,47,11): 255, 246, 239, 171, 140, 143, 141, 134, 131, 138, 147, (5,47,22): 152, 150, 199, 183, 244, 255, 252, 255, 243, 255, 245, (5,47,33): 255, 248, 255, 244, 249, 233, 158, 182, 161, 152, 127, (5,47,44): 135, 132, 133, 139, 150, 130, 186, 177, 245, 255, 254, (5,47,55): 242, 229, 134, 148, 145, 127, 143, 134, 137, 149, 157, (5,47,66): 170, 178, 210, 249, 250, 255, 253, 253, 254, 255, 252, (5,47,77): 251, 252, 245, 225, 170, 147, 140, 133, 134, 139, 138, (5,47,88): 148, 172, 136, 202, 204, 251, 251, 252, 252, 252, 252, (5,47,99): 252, 252, 252, 252, 252, 254, 243, 228, 134, 153, 144, (5,47,110): 141, 129, 141, 148, 139, 151, 164, 199, 210, 255, 252, (5,47,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,47,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,47,143): 252, (5,48,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 254, 251, (5,48,11): 255, 245, 227, 170, 149, 139, 132, 134, 135, 146, 148, (5,48,22): 153, 153, 201, 203, 255, 252, 251, 255, 255, 251, 247, (5,48,33): 255, 255, 253, 244, 255, 177, 185, 182, 156, 139, 136, (5,48,44): 135, 133, 138, 141, 134, 147, 180, 210, 255, 253, 253, (5,48,55): 242, 230, 135, 147, 136, 137, 130, 141, 136, 150, 154, (5,48,66): 176, 192, 229, 254, 251, 248, 252, 251, 251, 252, 251, (5,48,77): 253, 253, 246, 229, 155, 150, 139, 140, 139, 133, 146, (5,48,88): 142, 149, 173, 185, 215, 255, 238, 255, 252, 252, 252, (5,48,99): 252, 252, 252, 252, 252, 255, 238, 232, 139, 148, 142, (5,48,110): 141, 133, 137, 144, 142, 152, 177, 180, 245, 251, 252, (5,48,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,48,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,48,143): 252, (5,49,0): 252, 252, 252, 252, 252, 252, 252, 252, 248, 255, 252, (5,49,11): 252, 246, 223, 156, 147, 141, 136, 136, 134, 143, 145, (5,49,22): 154, 154, 182, 219, 255, 247, 249, 250, 252, 250, 255, (5,49,33): 253, 249, 248, 250, 176, 178, 186, 162, 149, 133, 137, (5,49,44): 126, 140, 140, 144, 125, 180, 168, 228, 244, 249, 255, (5,49,55): 231, 192, 138, 147, 131, 132, 131, 140, 139, 156, 149, (5,49,66): 188, 175, 251, 248, 255, 248, 253, 253, 252, 252, 251, (5,49,77): 251, 251, 242, 232, 137, 147, 135, 137, 134, 137, 139, (5,49,88): 145, 149, 170, 183, 216, 251, 246, 254, 252, 252, 252, (5,49,99): 252, 252, 252, 252, 252, 254, 235, 194, 136, 147, 134, (5,49,110): 140, 131, 142, 136, 156, 148, 184, 169, 240, 250, 252, (5,49,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,49,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,49,143): 252, (5,50,0): 252, 252, 252, 252, 252, 252, 252, 252, 249, 254, 253, (5,50,11): 255, 237, 235, 128, 149, 140, 133, 135, 134, 141, 145, (5,50,22): 157, 160, 189, 242, 249, 246, 255, 253, 251, 253, 248, (5,50,33): 249, 255, 221, 173, 192, 184, 172, 142, 136, 147, 133, (5,50,44): 132, 131, 144, 131, 160, 168, 198, 251, 252, 250, 251, (5,50,55): 236, 174, 141, 145, 137, 138, 134, 138, 140, 155, 148, (5,50,66): 185, 183, 251, 252, 253, 252, 251, 251, 251, 252, 251, (5,50,77): 253, 252, 242, 230, 130, 144, 144, 141, 132, 137, 145, (5,50,88): 148, 153, 176, 184, 239, 252, 254, 249, 252, 252, 252, (5,50,99): 252, 252, 252, 252, 252, 253, 243, 183, 141, 142, 146, (5,50,110): 128, 140, 136, 140, 152, 145, 188, 173, 255, 255, 252, (5,50,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,50,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,50,143): 252, (5,51,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 254, 250, (5,51,11): 254, 245, 218, 130, 144, 135, 132, 135, 135, 140, 148, (5,51,22): 162, 168, 172, 234, 247, 246, 252, 252, 253, 248, 255, (5,51,33): 250, 186, 172, 197, 187, 176, 149, 140, 144, 135, 130, (5,51,44): 136, 132, 126, 129, 179, 155, 231, 246, 251, 255, 250, (5,51,55): 242, 167, 151, 141, 133, 127, 133, 143, 139, 163, 149, (5,51,66): 196, 201, 255, 251, 255, 251, 253, 253, 251, 252, 251, (5,51,77): 252, 250, 239, 194, 133, 142, 139, 128, 134, 134, 139, (5,51,88): 157, 152, 186, 168, 255, 248, 255, 249, 252, 252, 252, (5,51,99): 252, 252, 252, 252, 252, 251, 231, 178, 144, 143, 132, (5,51,110): 139, 130, 138, 143, 161, 152, 195, 191, 255, 252, 252, (5,51,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,51,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,51,143): 252, (5,52,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 250, (5,52,11): 255, 244, 191, 140, 141, 133, 131, 134, 135, 139, 150, (5,52,22): 168, 179, 167, 181, 201, 236, 241, 223, 216, 216, 155, (5,52,33): 179, 173, 203, 192, 169, 148, 140, 136, 147, 127, 126, (5,52,44): 140, 129, 126, 155, 172, 213, 255, 255, 252, 253, 246, (5,52,55): 231, 156, 150, 139, 142, 134, 128, 139, 149, 160, 155, (5,52,66): 193, 219, 248, 251, 255, 252, 253, 253, 251, 252, 252, (5,52,77): 253, 249, 237, 180, 139, 140, 145, 138, 133, 135, 147, (5,52,88): 160, 150, 189, 171, 255, 250, 253, 251, 252, 252, 252, (5,52,99): 252, 252, 252, 252, 252, 243, 235, 152, 146, 146, 136, (5,52,110): 131, 137, 137, 140, 154, 158, 197, 197, 248, 254, 252, (5,52,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,52,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,52,143): 252, (5,53,0): 252, 252, 252, 252, 252, 252, 252, 252, 254, 251, 252, (5,53,11): 255, 234, 170, 142, 141, 130, 132, 132, 134, 139, 152, (5,53,22): 174, 191, 201, 203, 199, 186, 171, 185, 200, 184, 207, (5,53,33): 204, 204, 188, 169, 159, 149, 141, 126, 130, 140, 129, (5,53,44): 128, 127, 144, 153, 195, 246, 244, 254, 253, 253, 240, (5,53,55): 225, 130, 152, 140, 133, 132, 131, 139, 145, 151, 165, (5,53,66): 177, 230, 244, 253, 254, 253, 252, 252, 251, 252, 252, (5,53,77): 253, 249, 235, 171, 145, 144, 129, 130, 130, 141, 140, (5,53,88): 158, 149, 194, 200, 254, 254, 252, 251, 252, 252, 252, (5,53,99): 252, 252, 252, 252, 252, 245, 227, 145, 143, 140, 132, (5,53,110): 134, 133, 135, 148, 149, 161, 187, 201, 249, 253, 252, (5,53,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,53,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,53,143): 252, (5,54,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 250, (5,54,11): 248, 239, 145, 153, 139, 129, 133, 133, 132, 139, 152, (5,54,22): 172, 193, 208, 192, 195, 208, 205, 201, 206, 196, 204, (5,54,33): 199, 187, 172, 155, 151, 144, 129, 128, 127, 133, 135, (5,54,44): 113, 147, 146, 167, 240, 255, 254, 252, 246, 243, 243, (5,54,55): 238, 134, 148, 133, 130, 133, 129, 141, 155, 151, 176, (5,54,66): 181, 236, 255, 248, 255, 250, 253, 253, 252, 252, 252, (5,54,77): 251, 245, 229, 164, 147, 147, 132, 132, 132, 137, 148, (5,54,88): 152, 159, 185, 222, 246, 252, 253, 252, 252, 252, 252, (5,54,99): 252, 252, 252, 252, 252, 241, 227, 139, 149, 141, 133, (5,54,110): 135, 139, 137, 148, 157, 171, 183, 231, 254, 255, 252, (5,54,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,54,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,54,143): 252, (5,55,0): 252, 252, 252, 252, 252, 252, 252, 252, 255, 250, 248, (5,55,11): 246, 232, 150, 145, 143, 130, 136, 135, 134, 138, 148, (5,55,22): 165, 184, 188, 190, 197, 201, 199, 197, 203, 188, 180, (5,55,33): 166, 157, 147, 152, 141, 132, 127, 134, 137, 133, 117, (5,55,44): 133, 152, 154, 242, 247, 253, 249, 253, 255, 248, 236, (5,55,55): 192, 130, 141, 134, 134, 129, 125, 145, 154, 144, 185, (5,55,66): 173, 255, 248, 254, 254, 249, 251, 252, 252, 252, 252, (5,55,77): 252, 244, 227, 129, 142, 148, 129, 127, 140, 128, 146, (5,55,88): 149, 167, 182, 228, 251, 247, 255, 253, 252, 252, 252, (5,55,99): 252, 252, 252, 252, 252, 242, 179, 140, 145, 141, 132, (5,55,110): 131, 138, 141, 151, 135, 184, 173, 246, 254, 251, 252, (5,55,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,55,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,55,143): 252, (5,56,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 251, 254, (5,56,11): 244, 225, 145, 126, 148, 124, 124, 125, 136, 144, 147, (5,56,22): 158, 166, 165, 172, 178, 178, 180, 176, 170, 170, 164, (5,56,33): 156, 146, 134, 131, 135, 131, 139, 122, 118, 120, 133, (5,56,44): 138, 153, 236, 240, 255, 244, 253, 255, 250, 249, 243, (5,56,55): 179, 148, 145, 128, 131, 134, 136, 141, 153, 143, 190, (5,56,66): 175, 255, 251, 255, 243, 251, 252, 251, 255, 251, 251, (5,56,77): 255, 246, 229, 146, 139, 139, 133, 138, 131, 143, 147, (5,56,88): 149, 180, 185, 241, 249, 255, 250, 253, 251, 254, 251, (5,56,99): 251, 251, 250, 252, 252, 243, 182, 139, 137, 131, 136, (5,56,110): 128, 136, 141, 156, 147, 186, 175, 255, 255, 249, 252, (5,56,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,56,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,56,143): 252, (5,57,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 250, (5,57,11): 243, 232, 148, 116, 129, 136, 137, 132, 127, 127, 131, (5,57,22): 140, 137, 158, 162, 165, 163, 164, 161, 157, 159, 154, (5,57,33): 138, 132, 138, 133, 133, 132, 125, 115, 128, 139, 136, (5,57,44): 156, 227, 243, 252, 255, 247, 251, 255, 255, 247, 230, (5,57,55): 165, 146, 133, 131, 125, 136, 138, 144, 152, 142, 196, (5,57,66): 198, 244, 255, 253, 249, 255, 253, 246, 253, 251, 253, (5,57,77): 255, 231, 184, 142, 137, 131, 129, 121, 138, 141, 152, (5,57,88): 138, 180, 168, 250, 249, 253, 248, 252, 251, 253, 251, (5,57,99): 252, 253, 253, 254, 251, 224, 174, 139, 131, 133, 133, (5,57,110): 121, 134, 138, 156, 147, 198, 195, 252, 254, 251, 252, (5,57,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,57,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,57,143): 252, (5,58,0): 252, 252, 252, 252, 252, 252, 252, 252, 254, 254, 251, (5,58,11): 243, 216, 183, 113, 110, 126, 125, 123, 129, 129, 129, (5,58,22): 135, 140, 138, 141, 143, 142, 143, 142, 137, 138, 136, (5,58,33): 140, 130, 131, 133, 131, 121, 106, 129, 133, 132, 177, (5,58,44): 224, 237, 245, 250, 253, 250, 253, 251, 251, 238, 233, (5,58,55): 165, 143, 131, 141, 133, 122, 132, 137, 157, 164, 180, (5,58,66): 215, 250, 250, 249, 254, 254, 252, 253, 255, 249, 251, (5,58,77): 252, 236, 184, 135, 133, 130, 132, 129, 131, 139, 148, (5,58,88): 151, 208, 171, 255, 254, 253, 248, 255, 252, 253, 250, (5,58,99): 251, 252, 252, 251, 246, 225, 157, 144, 139, 134, 136, (5,58,110): 134, 135, 138, 154, 150, 194, 202, 252, 250, 250, 252, (5,58,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,58,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,58,143): 252, (5,59,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, (5,59,11): 236, 217, 204, 170, 147, 109, 110, 114, 122, 129, 136, (5,59,22): 133, 126, 130, 133, 136, 136, 137, 137, 132, 131, 129, (5,59,33): 132, 125, 127, 120, 111, 117, 138, 128, 126, 192, 219, (5,59,44): 243, 246, 248, 252, 254, 249, 253, 250, 253, 240, 227, (5,59,55): 135, 143, 135, 126, 138, 129, 137, 148, 146, 163, 181, (5,59,66): 232, 254, 245, 252, 252, 244, 250, 255, 250, 246, 255, (5,59,77): 250, 235, 173, 145, 148, 137, 130, 136, 128, 146, 155, (5,59,88): 138, 186, 205, 248, 247, 251, 249, 255, 252, 252, 250, (5,59,99): 251, 252, 251, 250, 243, 219, 150, 149, 133, 135, 136, (5,59,110): 130, 141, 152, 147, 164, 193, 201, 247, 255, 249, 252, (5,59,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,59,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,59,143): 252, (5,60,0): 252, 252, 252, 252, 252, 252, 252, 252, 254, 251, 253, (5,60,11): 237, 215, 194, 183, 171, 160, 142, 119, 110, 108, 119, (5,60,22): 122, 125, 126, 125, 128, 128, 129, 128, 125, 126, 120, (5,60,33): 116, 113, 113, 115, 131, 129, 122, 182, 215, 217, 233, (5,60,44): 254, 251, 255, 251, 254, 250, 253, 250, 255, 240, 213, (5,60,55): 126, 144, 131, 136, 135, 135, 134, 146, 141, 151, 182, (5,60,66): 230, 255, 255, 251, 254, 250, 250, 255, 252, 248, 252, (5,60,77): 240, 229, 158, 142, 143, 137, 130, 131, 133, 146, 153, (5,60,88): 149, 183, 222, 246, 250, 251, 247, 255, 252, 252, 252, (5,60,99): 253, 252, 253, 252, 245, 221, 130, 142, 134, 136, 132, (5,60,110): 123, 129, 142, 151, 177, 176, 242, 242, 255, 253, 252, (5,60,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,60,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,60,143): 252, (5,61,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 253, (5,61,11): 243, 226, 203, 179, 178, 167, 163, 162, 162, 139, 120, (5,61,22): 106, 108, 105, 105, 107, 109, 109, 110, 107, 107, 122, (5,61,33): 113, 115, 119, 123, 141, 164, 197, 210, 230, 248, 244, (5,61,44): 240, 254, 254, 255, 250, 253, 254, 248, 252, 237, 214, (5,61,55): 170, 116, 111, 115, 118, 117, 118, 128, 139, 154, 150, (5,61,66): 255, 251, 252, 250, 255, 250, 254, 253, 252, 251, 252, (5,61,77): 246, 223, 141, 134, 115, 132, 132, 131, 129, 133, 143, (5,61,88): 148, 162, 225, 252, 255, 252, 246, 252, 252, 252, 252, (5,61,99): 253, 252, 252, 251, 242, 197, 123, 142, 128, 129, 130, (5,61,110): 130, 130, 135, 150, 163, 163, 241, 255, 254, 254, 252, (5,61,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,61,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,61,143): 252, (5,62,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 255, 250, (5,62,11): 240, 242, 216, 208, 194, 188, 181, 174, 170, 161, 167, (5,62,22): 157, 151, 147, 137, 127, 118, 113, 117, 123, 129, 124, (5,62,33): 145, 159, 173, 193, 205, 206, 220, 230, 237, 249, 251, (5,62,44): 251, 241, 247, 255, 252, 252, 255, 249, 254, 244, 213, (5,62,55): 191, 165, 151, 102, 109, 111, 111, 133, 146, 162, 225, (5,62,66): 254, 251, 248, 252, 248, 251, 250, 248, 255, 252, 248, (5,62,77): 249, 231, 187, 130, 103, 104, 110, 114, 114, 123, 143, (5,62,88): 156, 151, 255, 255, 255, 253, 252, 250, 252, 252, 251, (5,62,99): 252, 251, 251, 248, 237, 211, 120, 119, 124, 130, 123, (5,62,110): 132, 125, 140, 144, 160, 159, 246, 252, 253, 255, 252, (5,62,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,62,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,62,143): 252, (5,63,0): 252, 252, 252, 252, 252, 252, 252, 252, 254, 251, 254, (5,63,11): 253, 243, 240, 219, 213, 204, 193, 186, 187, 178, 181, (5,63,22): 173, 170, 166, 167, 170, 173, 172, 172, 169, 169, 179, (5,63,33): 177, 176, 194, 206, 215, 227, 233, 241, 252, 254, 250, (5,63,44): 254, 252, 254, 244, 253, 250, 255, 252, 249, 244, 204, (5,63,55): 182, 178, 163, 158, 154, 169, 170, 183, 222, 249, 255, (5,63,66): 251, 245, 255, 246, 255, 255, 253, 248, 255, 250, 253, (5,63,77): 249, 215, 200, 174, 170, 125, 130, 118, 130, 131, 144, (5,63,88): 196, 233, 247, 254, 245, 254, 251, 254, 253, 251, 250, (5,63,99): 253, 253, 253, 249, 236, 210, 182, 144, 103, 112, 108, (5,63,110): 116, 114, 135, 140, 155, 232, 253, 250, 251, 250, 252, (5,63,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,63,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,63,143): 252, (5,64,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, (5,64,11): 251, 250, 245, 239, 234, 222, 220, 211, 204, 203, 196, (5,64,22): 189, 188, 186, 189, 187, 182, 185, 188, 186, 189, 203, (5,64,33): 206, 212, 219, 227, 237, 245, 251, 252, 252, 252, 252, (5,64,44): 252, 252, 252, 252, 252, 251, 252, 254, 250, 237, 219, (5,64,55): 206, 185, 183, 180, 182, 186, 196, 214, 226, 247, 249, (5,64,66): 252, 253, 252, 251, 252, 252, 252, 252, 252, 252, 249, (5,64,77): 238, 219, 203, 186, 175, 171, 173, 171, 180, 197, 219, (5,64,88): 244, 251, 253, 252, 252, 252, 252, 252, 252, 253, 250, (5,64,99): 252, 252, 250, 246, 228, 208, 183, 174, 163, 136, 137, (5,64,110): 131, 154, 157, 172, 225, 255, 249, 250, 255, 254, 252, (5,64,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,64,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,64,143): 252, (5,65,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, 252, (5,65,11): 253, 253, 251, 249, 246, 241, 238, 230, 226, 225, 218, (5,65,22): 211, 212, 211, 214, 213, 209, 212, 216, 215, 218, 220, (5,65,33): 225, 233, 240, 245, 249, 252, 253, 252, 252, 252, 252, (5,65,44): 252, 252, 252, 252, 252, 252, 252, 252, 251, 244, 229, (5,65,55): 216, 207, 204, 199, 201, 205, 213, 227, 236, 249, 251, (5,65,66): 252, 253, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,65,77): 244, 227, 212, 197, 188, 187, 191, 189, 197, 211, 228, (5,65,88): 246, 252, 253, 251, 252, 252, 252, 252, 252, 253, 250, (5,65,99): 253, 253, 252, 250, 234, 217, 193, 178, 180, 177, 183, (5,65,110): 182, 195, 217, 237, 254, 251, 253, 252, 248, 255, 252, (5,65,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,65,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,65,143): 252, (5,66,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,66,11): 252, 253, 253, 253, 252, 252, 249, 245, 244, 243, 236, (5,66,22): 232, 235, 228, 230, 230, 227, 230, 234, 233, 237, 239, (5,66,33): 242, 247, 250, 252, 252, 252, 252, 252, 252, 252, 252, (5,66,44): 252, 252, 252, 252, 252, 253, 252, 250, 252, 252, 242, (5,66,55): 231, 227, 224, 219, 223, 228, 235, 245, 251, 252, 252, (5,66,66): 253, 252, 252, 252, 252, 253, 253, 252, 251, 252, 252, (5,66,77): 247, 234, 222, 215, 207, 208, 213, 211, 220, 229, 239, (5,66,88): 250, 253, 253, 251, 251, 252, 252, 252, 252, 253, 250, (5,66,99): 252, 252, 252, 250, 238, 222, 211, 197, 194, 188, 183, (5,66,110): 191, 200, 224, 239, 251, 247, 250, 255, 251, 252, 252, (5,66,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,66,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,66,143): 252, (5,67,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 252, (5,67,11): 252, 251, 251, 251, 251, 254, 253, 251, 252, 252, 249, (5,67,22): 246, 249, 245, 247, 248, 245, 246, 249, 248, 251, 251, (5,67,33): 251, 252, 252, 252, 251, 252, 252, 252, 252, 252, 252, (5,67,44): 252, 252, 252, 252, 251, 253, 252, 250, 252, 255, 251, (5,67,55): 243, 245, 243, 239, 241, 244, 246, 252, 253, 253, 253, (5,67,66): 253, 252, 252, 252, 252, 252, 252, 252, 251, 251, 252, (5,67,77): 250, 242, 235, 235, 228, 228, 232, 230, 238, 244, 248, (5,67,88): 252, 253, 253, 251, 251, 252, 252, 252, 252, 253, 251, (5,67,99): 251, 251, 251, 251, 244, 234, 228, 220, 216, 219, 213, (5,67,110): 222, 228, 237, 237, 251, 254, 250, 254, 254, 250, 252, (5,67,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,67,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,67,143): 252, (5,68,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, (5,68,11): 253, 252, 252, 252, 252, 251, 253, 253, 252, 253, 253, (5,68,22): 252, 253, 250, 251, 253, 251, 251, 252, 250, 252, 252, (5,68,33): 253, 253, 253, 252, 252, 251, 251, 252, 252, 252, 252, (5,68,44): 252, 252, 252, 252, 251, 252, 252, 252, 252, 253, 252, (5,68,55): 251, 254, 253, 251, 252, 252, 250, 252, 252, 252, 252, (5,68,66): 252, 252, 252, 252, 252, 252, 251, 251, 252, 252, 253, (5,68,77): 253, 252, 250, 250, 245, 244, 246, 244, 251, 252, 253, (5,68,88): 252, 252, 252, 252, 252, 253, 253, 252, 252, 252, 251, (5,68,99): 252, 252, 254, 255, 251, 244, 239, 236, 231, 241, 239, (5,68,110): 242, 247, 250, 250, 252, 254, 255, 253, 250, 251, 252, (5,68,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,68,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,68,143): 252, (5,69,0): 252, 252, 252, 252, 252, 252, 252, 252, 251, 251, 252, (5,69,11): 252, 253, 252, 252, 252, 249, 252, 252, 251, 251, 252, (5,69,22): 252, 251, 251, 251, 253, 252, 252, 253, 251, 252, 251, (5,69,33): 251, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,69,44): 252, 252, 252, 252, 252, 252, 252, 253, 252, 250, 251, (5,69,55): 253, 250, 252, 252, 253, 253, 251, 253, 253, 251, 252, (5,69,66): 252, 252, 252, 252, 252, 252, 251, 252, 252, 252, 252, (5,69,77): 252, 253, 254, 254, 251, 251, 252, 250, 254, 252, 252, (5,69,88): 252, 251, 252, 252, 252, 253, 253, 251, 252, 252, 252, (5,69,99): 252, 252, 253, 253, 253, 251, 249, 254, 246, 249, 246, (5,69,110): 245, 251, 254, 255, 255, 255, 254, 253, 250, 251, 252, (5,69,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,69,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,69,143): 252, (5,70,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (5,70,11): 251, 251, 251, 251, 251, 252, 253, 253, 253, 252, 252, (5,70,22): 253, 252, 252, 251, 253, 252, 252, 253, 252, 253, 253, (5,70,33): 253, 252, 252, 252, 253, 253, 254, 252, 252, 252, 252, (5,70,44): 252, 252, 252, 252, 253, 252, 252, 252, 252, 251, 251, (5,70,55): 253, 250, 252, 251, 252, 252, 250, 252, 251, 252, 252, (5,70,66): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 251, (5,70,77): 251, 251, 252, 252, 252, 251, 252, 252, 254, 249, 252, (5,70,88): 253, 251, 252, 252, 251, 252, 253, 251, 252, 252, 252, (5,70,99): 251, 251, 251, 250, 251, 253, 251, 252, 250, 250, 250, (5,70,110): 247, 249, 253, 252, 252, 252, 249, 252, 255, 252, 252, (5,70,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,70,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,70,143): 252, (5,71,0): 252, 252, 252, 252, 252, 252, 252, 252, 253, 252, 252, (5,71,11): 251, 252, 252, 252, 252, 252, 251, 251, 253, 252, 251, (5,71,22): 251, 252, 253, 251, 252, 251, 251, 252, 251, 253, 251, (5,71,33): 251, 251, 252, 252, 252, 251, 250, 252, 252, 252, 252, (5,71,44): 252, 252, 252, 252, 253, 252, 252, 252, 252, 252, 252, (5,71,55): 252, 252, 253, 252, 252, 252, 252, 253, 252, 252, 252, (5,71,66): 253, 252, 252, 252, 252, 253, 252, 252, 252, 253, 253, (5,71,77): 253, 252, 252, 252, 253, 251, 252, 252, 254, 250, 255, (5,71,88): 254, 251, 252, 252, 251, 251, 252, 251, 252, 252, 252, (5,71,99): 252, 252, 252, 252, 254, 250, 251, 251, 255, 253, 254, (5,71,110): 254, 255, 252, 249, 246, 248, 250, 249, 251, 255, 252, (5,71,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,71,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (5,71,143): 252, (6,0,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,0,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,1,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,2,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,3,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,4,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,5,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,6,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,7,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,8,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,8,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,8,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,8,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,8,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,8,56): 255, 248, 255, 255, 250, 243, 252, 254, 255, 247, 251, (6,8,67): 253, 255, 253, 250, 252, 255, 248, 255, 255, 247, 251, (6,8,78): 255, 255, 255, 251, 250, 251, 252, 252, 252, 251, 253, (6,8,89): 251, 246, 251, 252, 254, 255, 252, 252, 252, 252, 252, (6,8,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,8,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,8,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,8,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,9,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,9,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,9,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,9,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,9,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,9,56): 254, 249, 252, 254, 248, 249, 255, 251, 246, 251, 248, (6,9,67): 255, 254, 250, 252, 252, 244, 255, 252, 244, 255, 253, (6,9,78): 247, 249, 255, 253, 250, 252, 254, 252, 254, 245, 243, (6,9,89): 251, 249, 255, 253, 255, 249, 251, 252, 252, 252, 252, (6,9,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,9,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,9,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,9,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,55): 252, 250, 249, 250, 254, 252, 255, 255, 248, 254, 255, (6,10,66): 212, 171, 188, 194, 214, 227, 255, 248, 252, 255, 250, (6,10,77): 254, 252, 246, 253, 251, 254, 248, 250, 255, 254, 255, (6,10,88): 254, 255, 255, 254, 255, 251, 255, 250, 252, 252, 252, (6,10,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,10,143): 252, (6,11,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,11,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,11,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,11,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,11,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,11,55): 252, 251, 251, 248, 251, 251, 254, 249, 244, 252, 177, (6,11,66): 211, 255, 237, 177, 232, 212, 227, 253, 249, 207, 230, (6,11,77): 255, 255, 249, 252, 246, 245, 248, 254, 248, 248, 248, (6,11,88): 255, 250, 247, 249, 250, 249, 251, 253, 252, 252, 252, (6,11,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,11,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,11,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,11,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,11,143): 252, (6,12,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,12,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,12,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,12,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,12,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,12,55): 252, 255, 252, 251, 251, 251, 253, 249, 252, 204, 215, (6,12,66): 247, 251, 236, 180, 231, 240, 189, 255, 178, 198, 156, (6,12,77): 186, 184, 225, 189, 174, 215, 221, 240, 245, 254, 248, (6,12,88): 251, 255, 253, 251, 249, 249, 247, 248, 252, 252, 252, (6,12,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,12,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,12,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,12,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,12,143): 252, (6,13,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,13,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,13,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,13,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,13,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,13,55): 252, 255, 254, 252, 253, 255, 252, 254, 247, 186, 228, (6,13,66): 242, 240, 248, 209, 221, 252, 177, 183, 232, 212, 165, (6,13,77): 177, 165, 156, 236, 179, 168, 191, 173, 170, 185, 176, (6,13,88): 188, 202, 226, 240, 255, 253, 255, 255, 252, 252, 252, (6,13,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,13,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,13,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,13,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,13,143): 252, (6,14,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,14,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,14,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,14,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,14,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,14,55): 252, 253, 251, 249, 255, 255, 244, 253, 214, 200, 207, (6,14,66): 201, 219, 240, 212, 214, 249, 210, 169, 235, 186, 201, (6,14,77): 206, 169, 214, 241, 172, 174, 251, 252, 255, 245, 249, (6,14,88): 220, 197, 168, 164, 175, 246, 255, 242, 252, 252, 252, (6,14,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,14,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,14,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,14,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,14,143): 252, (6,15,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,15,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,15,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,15,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,15,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,15,55): 252, 250, 250, 246, 255, 255, 246, 255, 197, 209, 191, (6,15,66): 190, 200, 229, 214, 215, 246, 200, 184, 230, 170, 244, (6,15,77): 248, 171, 217, 215, 192, 199, 231, 241, 244, 248, 237, (6,15,88): 255, 206, 192, 189, 164, 213, 252, 244, 252, 252, 252, (6,15,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,15,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,15,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,15,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,15,143): 252, (6,16,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,16,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,16,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,16,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,16,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,16,55): 252, 255, 253, 247, 254, 255, 255, 219, 185, 186, 173, (6,16,66): 172, 188, 231, 200, 217, 254, 188, 183, 198, 198, 249, (6,16,77): 241, 158, 215, 200, 178, 205, 225, 225, 234, 228, 239, (6,16,88): 231, 189, 243, 255, 184, 231, 250, 247, 252, 252, 252, (6,16,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,16,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,16,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,16,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,16,143): 252, (6,17,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,17,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,17,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,17,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,17,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,17,55): 252, 247, 252, 252, 252, 247, 252, 190, 153, 156, 167, (6,17,66): 163, 181, 225, 200, 208, 251, 178, 182, 184, 205, 240, (6,17,77): 209, 150, 213, 173, 162, 203, 197, 198, 204, 211, 213, (6,17,88): 222, 172, 242, 255, 181, 255, 246, 253, 252, 252, 252, (6,17,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,17,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,17,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,17,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,17,143): 252, (6,18,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,18,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,18,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,18,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,18,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,18,55): 252, 253, 255, 247, 251, 251, 249, 155, 159, 128, 124, (6,18,66): 135, 171, 225, 200, 228, 252, 157, 176, 171, 224, 240, (6,18,77): 175, 146, 197, 158, 158, 181, 180, 193, 184, 194, 190, (6,18,88): 200, 193, 237, 215, 194, 247, 255, 251, 252, 252, 252, (6,18,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,18,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,18,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,18,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,18,143): 252, (6,19,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,19,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,19,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,19,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,19,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,19,55): 252, 252, 255, 250, 252, 247, 255, 142, 148, 119, 137, (6,19,66): 110, 167, 209, 196, 224, 232, 141, 167, 168, 238, 234, (6,19,77): 144, 151, 178, 155, 147, 171, 170, 176, 171, 166, 184, (6,19,88): 193, 203, 240, 199, 210, 224, 250, 249, 252, 252, 252, (6,19,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,19,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,19,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,19,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,19,143): 252, (6,20,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,20,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,20,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,20,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,20,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,20,55): 252, 245, 254, 252, 255, 249, 191, 137, 108, 149, 156, (6,20,66): 126, 165, 202, 172, 240, 202, 154, 172, 186, 243, 214, (6,20,77): 126, 164, 169, 146, 138, 150, 163, 166, 154, 159, 171, (6,20,88): 194, 228, 233, 186, 244, 241, 255, 255, 252, 252, 252, (6,20,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,20,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,20,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,20,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,20,143): 252, (6,21,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,21,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,21,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,21,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,21,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,21,55): 252, 245, 255, 246, 251, 255, 175, 126, 145, 183, 146, (6,21,66): 114, 163, 221, 173, 255, 197, 165, 166, 205, 242, 195, (6,21,77): 136, 180, 171, 149, 117, 116, 125, 153, 135, 130, 164, (6,21,88): 159, 176, 197, 166, 222, 246, 251, 250, 252, 252, 252, (6,21,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,21,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,21,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,21,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,21,143): 252, (6,22,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,22,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,22,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,22,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,22,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,22,55): 252, 250, 255, 246, 246, 255, 142, 125, 182, 179, 117, (6,22,66): 108, 155, 213, 175, 253, 158, 176, 165, 223, 238, 167, (6,22,77): 141, 171, 166, 162, 134, 110, 135, 152, 109, 114, 152, (6,22,88): 166, 184, 162, 211, 255, 255, 255, 250, 252, 252, 252, (6,22,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,22,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,22,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,22,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,22,143): 252, (6,23,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,23,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,23,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,23,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,23,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,23,55): 252, 251, 252, 252, 245, 254, 181, 187, 169, 138, 155, (6,23,66): 133, 172, 194, 214, 229, 137, 177, 162, 234, 235, 140, (6,23,77): 140, 166, 178, 178, 141, 113, 148, 136, 122, 152, 181, (6,23,88): 185, 207, 219, 239, 255, 247, 255, 249, 252, 252, 252, (6,23,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,23,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,23,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,23,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,23,143): 252, (6,24,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,24,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,24,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,24,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,24,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,24,55): 252, 252, 250, 252, 254, 214, 194, 228, 236, 244, 195, (6,24,66): 128, 174, 191, 213, 178, 157, 162, 193, 233, 204, 129, (6,24,77): 172, 166, 191, 181, 141, 111, 156, 128, 162, 167, 196, (6,24,88): 210, 237, 249, 248, 254, 250, 244, 255, 252, 252, 252, (6,24,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,24,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,24,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,24,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,24,143): 252, (6,25,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,25,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,25,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,25,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,25,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,25,55): 252, 253, 252, 250, 250, 217, 220, 243, 250, 248, 184, (6,25,66): 128, 169, 185, 209, 156, 164, 160, 218, 240, 187, 145, (6,25,77): 179, 159, 201, 198, 128, 130, 180, 131, 174, 203, 185, (6,25,88): 221, 239, 255, 250, 255, 251, 248, 255, 252, 252, 252, (6,25,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,25,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,25,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,25,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,25,143): 252, (6,26,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,26,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,26,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,26,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,26,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,26,55): 252, 252, 252, 253, 252, 229, 248, 252, 253, 237, 197, (6,26,66): 118, 195, 191, 237, 142, 171, 161, 234, 234, 162, 150, (6,26,77): 171, 181, 219, 204, 142, 140, 160, 157, 205, 210, 179, (6,26,88): 231, 241, 255, 251, 255, 253, 251, 250, 252, 252, 252, (6,26,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,26,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,26,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,26,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,26,143): 252, (6,27,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,27,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,27,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,27,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,27,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,27,55): 252, 251, 251, 254, 253, 243, 255, 252, 250, 238, 187, (6,27,66): 135, 209, 160, 201, 138, 156, 181, 234, 234, 139, 150, (6,27,77): 170, 197, 233, 199, 125, 153, 163, 183, 219, 208, 200, (6,27,88): 236, 247, 255, 250, 254, 255, 249, 252, 252, 252, 252, (6,27,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,27,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,27,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,27,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,27,143): 252, (6,28,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,28,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,28,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,28,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,28,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,28,55): 252, 253, 249, 252, 250, 250, 251, 252, 252, 237, 148, (6,28,66): 149, 200, 182, 178, 149, 167, 201, 239, 207, 118, 162, (6,28,77): 167, 215, 242, 175, 126, 172, 164, 215, 230, 183, 219, (6,28,88): 235, 253, 253, 253, 249, 255, 246, 255, 252, 252, 252, (6,28,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,28,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,28,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,28,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,28,143): 252, (6,29,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,29,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,29,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,29,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,29,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,29,55): 252, 253, 250, 254, 252, 255, 249, 253, 253, 228, 150, (6,29,66): 176, 166, 204, 150, 158, 165, 210, 235, 170, 134, 185, (6,29,77): 174, 233, 225, 153, 149, 178, 156, 237, 237, 176, 232, (6,29,88): 229, 252, 251, 255, 248, 252, 245, 255, 252, 252, 252, (6,29,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,29,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,29,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,29,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,29,143): 252, (6,30,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,30,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,30,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,30,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,30,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,30,55): 252, 252, 252, 255, 251, 252, 253, 252, 251, 237, 131, (6,30,66): 184, 175, 221, 137, 172, 162, 232, 216, 146, 150, 179, (6,30,77): 191, 232, 214, 152, 149, 181, 188, 230, 212, 198, 232, (6,30,88): 234, 249, 252, 252, 252, 251, 248, 255, 252, 252, 252, (6,30,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,30,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,30,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,30,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,30,143): 252, (6,31,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,31,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,31,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,31,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,31,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,31,55): 252, 253, 253, 250, 240, 237, 255, 252, 253, 205, 129, (6,31,66): 180, 172, 171, 147, 167, 180, 207, 189, 121, 161, 181, (6,31,77): 204, 225, 202, 118, 160, 174, 191, 238, 202, 203, 229, (6,31,88): 248, 251, 253, 248, 255, 250, 252, 254, 252, 252, 252, (6,31,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,31,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,31,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,31,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,31,143): 252, (6,32,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,32,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,32,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,32,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,32,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,32,55): 252, 250, 249, 236, 181, 174, 180, 186, 212, 169, 134, (6,32,66): 186, 163, 168, 163, 203, 223, 198, 199, 147, 187, 166, (6,32,77): 223, 242, 169, 140, 178, 170, 218, 227, 193, 217, 238, (6,32,88): 247, 255, 245, 255, 255, 251, 255, 251, 252, 252, 252, (6,32,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,32,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,32,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,32,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,32,143): 252, (6,33,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,33,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,33,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,33,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,33,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,33,55): 252, 249, 255, 191, 245, 243, 227, 191, 159, 117, 147, (6,33,66): 169, 183, 151, 168, 212, 247, 237, 225, 161, 183, 171, (6,33,77): 219, 232, 152, 139, 186, 168, 237, 220, 168, 241, 225, (6,33,88): 251, 255, 246, 255, 252, 251, 255, 251, 252, 252, 252, (6,33,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,33,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,33,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,33,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,33,143): 252, (6,34,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,34,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,34,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,34,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,34,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,34,55): 252, 247, 255, 196, 246, 236, 242, 170, 231, 124, 164, (6,34,66): 167, 192, 138, 163, 225, 241, 229, 200, 164, 173, 189, (6,34,77): 232, 208, 135, 147, 175, 190, 226, 217, 193, 227, 241, (6,34,88): 255, 253, 250, 255, 249, 249, 255, 251, 252, 252, 252, (6,34,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,34,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,34,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,34,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,34,143): 252, (6,35,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,35,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,35,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,35,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,35,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,35,55): 252, 252, 212, 215, 220, 232, 236, 175, 219, 139, 165, (6,35,66): 169, 162, 152, 173, 203, 222, 215, 183, 163, 173, 209, (6,35,77): 228, 191, 130, 162, 176, 197, 230, 200, 195, 225, 231, (6,35,88): 254, 250, 252, 255, 245, 249, 255, 252, 252, 252, 252, (6,35,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,35,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,35,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,35,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,35,143): 252, (6,36,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,36,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,36,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,36,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,36,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,36,55): 252, 244, 195, 198, 183, 196, 190, 190, 181, 136, 168, (6,36,66): 170, 163, 163, 172, 197, 196, 193, 157, 172, 168, 216, (6,36,77): 233, 172, 144, 175, 174, 214, 234, 182, 210, 240, 255, (6,36,88): 248, 249, 255, 255, 244, 250, 255, 252, 252, 252, 252, (6,36,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,36,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,36,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,36,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,36,143): 252, (6,37,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,37,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,37,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,37,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,37,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,37,55): 252, 255, 180, 177, 179, 192, 179, 215, 167, 144, 163, (6,37,66): 189, 154, 157, 171, 166, 174, 170, 150, 166, 177, 225, (6,37,77): 217, 158, 139, 185, 161, 236, 229, 161, 227, 233, 255, (6,37,88): 246, 248, 255, 254, 247, 249, 254, 253, 252, 252, 252, (6,37,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,37,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,37,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,37,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,37,143): 252, (6,38,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,38,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,38,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,38,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,38,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,38,55): 252, 253, 146, 159, 170, 182, 166, 218, 140, 159, 157, (6,38,66): 181, 150, 150, 160, 171, 162, 165, 151, 171, 194, 230, (6,38,77): 201, 139, 144, 170, 200, 226, 213, 195, 225, 226, 250, (6,38,88): 251, 251, 253, 254, 252, 250, 252, 253, 252, 252, 252, (6,38,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,38,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,38,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,38,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,38,143): 252, (6,39,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,39,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,39,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,39,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,39,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,39,55): 252, 185, 148, 141, 145, 170, 173, 160, 133, 154, 167, (6,39,66): 154, 141, 157, 154, 158, 161, 155, 155, 173, 213, 232, (6,39,77): 173, 129, 152, 168, 215, 220, 191, 210, 236, 236, 255, (6,39,88): 255, 253, 251, 254, 255, 249, 251, 255, 252, 252, 252, (6,39,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,39,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,39,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,39,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,39,143): 252, (6,40,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,40,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,40,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,40,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,40,44): 252, 252, 252, 252, 248, 252, 255, 252, 252, 253, 253, (6,40,55): 245, 156, 143, 114, 119, 144, 167, 136, 155, 173, 187, (6,40,66): 149, 152, 112, 111, 107, 117, 140, 178, 156, 216, 239, (6,40,77): 168, 136, 174, 162, 223, 219, 185, 218, 227, 251, 254, (6,40,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,40,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,40,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,40,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,40,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,40,143): 252, (6,41,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,41,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,41,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,41,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,41,44): 252, 252, 252, 252, 251, 251, 254, 249, 254, 253, 241, (6,41,55): 254, 140, 145, 121, 149, 190, 168, 129, 150, 177, 191, (6,41,66): 145, 145, 113, 131, 119, 111, 152, 167, 170, 224, 223, (6,41,77): 160, 145, 163, 179, 221, 231, 167, 219, 235, 251, 255, (6,41,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,41,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,41,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,41,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,41,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,41,143): 252, (6,42,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,42,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,42,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,42,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,42,44): 252, 252, 252, 252, 249, 255, 254, 255, 248, 249, 255, (6,42,55): 223, 126, 145, 133, 169, 209, 152, 133, 154, 170, 163, (6,42,66): 145, 139, 125, 142, 143, 109, 146, 168, 197, 225, 200, (6,42,77): 137, 143, 168, 197, 220, 195, 198, 226, 226, 252, 248, (6,42,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,42,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,42,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,42,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,42,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,42,143): 252, (6,43,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,43,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,43,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,43,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,43,44): 252, 252, 252, 252, 252, 254, 251, 252, 252, 247, 251, (6,43,55): 177, 145, 146, 156, 192, 202, 139, 154, 166, 175, 155, (6,43,66): 144, 142, 142, 159, 140, 121, 160, 164, 213, 230, 174, (6,43,77): 125, 158, 161, 214, 227, 178, 220, 224, 246, 245, 251, (6,43,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,43,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,43,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,43,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,43,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,43,143): 252, (6,44,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,44,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,44,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,44,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,44,44): 252, 252, 252, 252, 253, 255, 251, 248, 254, 248, 255, (6,44,55): 142, 166, 143, 178, 212, 187, 130, 154, 158, 186, 137, (6,44,66): 148, 154, 164, 177, 145, 127, 171, 173, 219, 219, 160, (6,44,77): 132, 175, 169, 223, 208, 186, 226, 218, 255, 251, 251, (6,44,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,44,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,44,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,44,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,44,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,44,143): 252, (6,45,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,45,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,45,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,45,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,45,44): 252, 252, 252, 252, 249, 255, 253, 251, 252, 249, 255, (6,45,55): 126, 158, 150, 203, 217, 173, 142, 155, 160, 175, 134, (6,45,66): 157, 158, 197, 187, 137, 143, 169, 192, 222, 199, 152, (6,45,77): 141, 173, 189, 219, 209, 188, 221, 233, 248, 254, 255, (6,45,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,45,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,45,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,45,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,45,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,45,143): 252, (6,46,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,46,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,46,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,46,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,46,44): 252, 252, 252, 252, 249, 254, 253, 247, 255, 248, 199, (6,46,55): 138, 157, 177, 221, 204, 150, 152, 155, 170, 175, 146, (6,46,66): 167, 180, 202, 187, 130, 156, 177, 198, 221, 184, 138, (6,46,77): 155, 173, 194, 217, 197, 193, 215, 226, 248, 255, 255, (6,46,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,46,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,46,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,46,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,46,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,46,143): 252, (6,47,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,47,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,47,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,47,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,47,44): 252, 252, 252, 252, 248, 255, 252, 249, 255, 250, 179, (6,47,55): 150, 171, 194, 219, 189, 137, 161, 159, 191, 166, 146, (6,47,66): 172, 186, 223, 183, 126, 167, 171, 208, 217, 167, 142, (6,47,77): 171, 166, 214, 219, 186, 203, 223, 245, 252, 252, 251, (6,47,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,47,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,47,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,47,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,47,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,47,143): 252, (6,48,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,48,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,48,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,48,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,48,44): 252, 252, 252, 252, 255, 253, 254, 250, 255, 253, 152, (6,48,55): 159, 167, 195, 222, 174, 153, 147, 162, 204, 146, 151, (6,48,66): 159, 210, 224, 154, 146, 174, 168, 216, 218, 156, 128, (6,48,77): 182, 172, 217, 222, 169, 215, 225, 253, 251, 252, 253, (6,48,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,48,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,48,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,48,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,48,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,48,143): 252, (6,49,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,49,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,49,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,49,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,49,44): 252, 252, 252, 252, 251, 251, 251, 254, 253, 255, 125, (6,49,55): 162, 153, 223, 212, 161, 160, 149, 149, 192, 133, 154, (6,49,66): 179, 221, 215, 140, 137, 162, 181, 218, 206, 140, 139, (6,49,77): 170, 182, 214, 207, 180, 219, 227, 255, 250, 251, 252, (6,49,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,49,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,49,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,49,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,49,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,49,143): 252, (6,50,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,50,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,50,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,50,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,50,44): 252, 252, 252, 252, 255, 251, 252, 246, 249, 195, 142, (6,50,55): 161, 181, 214, 190, 157, 146, 145, 189, 177, 144, 159, (6,50,66): 186, 216, 195, 134, 146, 170, 196, 225, 183, 136, 152, (6,50,77): 167, 196, 219, 197, 189, 219, 227, 255, 249, 255, 251, (6,50,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,50,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,50,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,50,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,50,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,50,143): 252, (6,51,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,51,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,51,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,51,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,51,44): 252, 252, 252, 252, 255, 246, 255, 250, 244, 156, 154, (6,51,55): 169, 175, 184, 171, 180, 149, 156, 213, 155, 159, 153, (6,51,66): 187, 217, 180, 136, 157, 165, 211, 225, 172, 133, 171, (6,51,77): 160, 210, 215, 180, 207, 219, 255, 244, 251, 253, 254, (6,51,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,51,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,51,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,51,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,51,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,51,143): 252, (6,52,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,52,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,52,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,52,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,52,44): 252, 252, 252, 252, 253, 248, 250, 248, 251, 148, 168, (6,52,55): 201, 193, 182, 164, 158, 142, 170, 229, 149, 163, 156, (6,52,66): 204, 223, 163, 136, 160, 163, 215, 211, 151, 135, 175, (6,52,77): 164, 219, 210, 175, 210, 220, 255, 250, 245, 253, 255, (6,52,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,52,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,52,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,52,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,52,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,52,143): 252, (6,53,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,53,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,53,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,53,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,53,44): 252, 252, 252, 252, 252, 252, 253, 255, 251, 133, 181, (6,53,55): 205, 202, 189, 171, 156, 148, 206, 214, 124, 160, 174, (6,53,66): 219, 211, 135, 133, 164, 189, 222, 196, 134, 144, 164, (6,53,77): 178, 218, 198, 186, 214, 217, 252, 250, 251, 248, 255, (6,53,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,53,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,53,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,53,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,53,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,53,143): 252, (6,54,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,54,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,54,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,54,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,54,44): 252, 252, 252, 252, 253, 248, 253, 255, 187, 139, 188, (6,54,55): 221, 221, 205, 161, 141, 139, 218, 160, 136, 158, 189, (6,54,66): 216, 190, 127, 144, 163, 212, 219, 172, 131, 151, 163, (6,54,77): 194, 222, 187, 203, 216, 250, 251, 255, 252, 247, 253, (6,54,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,54,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,54,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,54,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,54,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,54,143): 252, (6,55,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,55,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,55,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,55,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,55,44): 252, 252, 252, 252, 254, 250, 254, 253, 139, 151, 184, (6,55,55): 220, 205, 166, 147, 127, 183, 227, 140, 155, 167, 198, (6,55,66): 207, 180, 140, 165, 160, 219, 214, 162, 128, 168, 156, (6,55,77): 209, 216, 179, 213, 210, 255, 250, 248, 255, 249, 251, (6,55,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,55,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,55,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,55,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,55,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,55,143): 252, (6,56,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,56,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,56,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,56,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,56,44): 252, 252, 252, 252, 251, 253, 245, 254, 147, 147, 176, (6,56,55): 195, 175, 156, 128, 141, 214, 217, 136, 157, 154, 208, (6,56,66): 216, 167, 140, 166, 174, 210, 212, 148, 141, 156, 184, (6,56,77): 219, 212, 173, 209, 217, 252, 255, 243, 254, 254, 248, (6,56,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,56,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,56,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,56,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,56,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,56,143): 252, (6,57,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,57,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,57,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,57,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,57,44): 252, 252, 252, 252, 252, 254, 248, 226, 121, 148, 169, (6,57,55): 182, 167, 137, 128, 190, 201, 164, 135, 153, 181, 219, (6,57,66): 214, 130, 131, 166, 197, 214, 192, 141, 151, 150, 189, (6,57,77): 214, 186, 188, 207, 235, 254, 252, 251, 248, 253, 252, (6,57,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,57,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,57,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,57,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,57,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,57,143): 252, (6,58,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,58,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,58,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,58,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,58,44): 252, 252, 252, 252, 253, 252, 249, 197, 123, 152, 154, (6,58,55): 156, 150, 142, 141, 218, 213, 144, 140, 164, 192, 207, (6,58,66): 191, 139, 155, 164, 209, 218, 169, 130, 146, 161, 218, (6,58,77): 214, 174, 197, 215, 244, 250, 245, 254, 249, 253, 254, (6,58,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,58,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,58,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,58,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,58,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,58,143): 252, (6,59,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,59,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,59,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,59,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,59,44): 252, 252, 252, 252, 249, 255, 255, 183, 117, 138, 150, (6,59,55): 148, 125, 118, 190, 209, 181, 117, 158, 168, 194, 205, (6,59,66): 161, 131, 166, 156, 208, 207, 154, 131, 174, 168, 207, (6,59,77): 206, 173, 217, 214, 252, 239, 247, 255, 252, 250, 255, (6,59,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,59,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,59,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,59,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,59,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,59,143): 252, (6,60,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,60,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,60,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,60,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,60,44): 252, 252, 252, 252, 245, 253, 255, 165, 158, 115, 135, (6,60,55): 137, 110, 174, 222, 213, 158, 125, 160, 161, 183, 200, (6,60,66): 137, 134, 168, 179, 205, 195, 134, 145, 167, 181, 215, (6,60,77): 191, 187, 217, 211, 253, 247, 255, 252, 254, 247, 253, (6,60,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,60,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,60,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,60,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,60,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,60,143): 252, (6,61,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,61,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,61,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,61,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,61,44): 252, 252, 252, 252, 248, 255, 228, 169, 168, 127, 109, (6,61,55): 108, 161, 221, 213, 178, 180, 121, 154, 160, 164, 163, (6,61,66): 132, 136, 160, 178, 185, 166, 133, 146, 162, 168, 205, (6,61,77): 192, 187, 215, 225, 255, 255, 255, 243, 255, 249, 251, (6,61,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,61,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,61,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,61,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,61,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,61,143): 252, (6,62,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,62,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,62,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,62,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,62,44): 252, 252, 252, 252, 253, 253, 237, 183, 165, 170, 170, (6,62,55): 155, 168, 181, 215, 241, 208, 165, 176, 184, 174, 158, (6,62,66): 145, 117, 161, 163, 171, 161, 120, 150, 160, 164, 170, (6,62,77): 163, 194, 209, 242, 255, 251, 255, 248, 248, 252, 253, (6,62,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,62,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,62,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,62,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,62,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,62,143): 252, (6,63,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,63,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,63,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,63,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,63,44): 252, 252, 252, 252, 255, 252, 243, 190, 179, 171, 167, (6,63,55): 185, 229, 255, 253, 248, 179, 182, 233, 255, 236, 234, (6,63,66): 181, 169, 219, 206, 172, 208, 156, 136, 156, 181, 173, (6,63,77): 176, 225, 255, 253, 247, 247, 255, 252, 242, 250, 255, (6,63,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,63,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,63,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,63,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,63,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,63,143): 252, (6,64,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,44): 252, 252, 252, 252, 253, 251, 237, 212, 194, 186, 195, (6,64,55): 220, 252, 252, 252, 237, 185, 199, 248, 253, 252, 213, (6,64,66): 168, 217, 249, 252, 253, 212, 163, 217, 251, 222, 204, (6,64,77): 240, 255, 247, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,64,143): 252, (6,65,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,44): 252, 252, 252, 252, 253, 253, 245, 226, 213, 212, 225, (6,65,55): 249, 253, 252, 251, 236, 206, 229, 255, 252, 247, 215, (6,65,66): 192, 236, 255, 252, 246, 201, 181, 233, 255, 255, 255, (6,65,77): 255, 253, 251, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,65,143): 252, (6,66,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,44): 252, 252, 252, 252, 250, 252, 250, 239, 231, 232, 241, (6,66,55): 254, 252, 252, 255, 241, 228, 249, 253, 251, 254, 224, (6,66,66): 219, 245, 252, 251, 251, 214, 207, 245, 244, 244, 248, (6,66,77): 247, 251, 254, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,66,143): 252, (6,67,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,44): 252, 252, 252, 252, 252, 253, 254, 251, 249, 250, 252, (6,67,55): 253, 252, 250, 255, 251, 243, 252, 249, 253, 251, 231, (6,67,66): 243, 255, 254, 250, 247, 218, 226, 252, 253, 253, 251, (6,67,77): 252, 255, 249, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,67,143): 252, (6,68,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,44): 252, 252, 252, 252, 252, 252, 251, 251, 250, 253, 254, (6,68,55): 250, 255, 250, 250, 255, 252, 253, 252, 253, 254, 242, (6,68,66): 252, 251, 250, 251, 251, 237, 245, 252, 255, 255, 255, (6,68,77): 255, 254, 251, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,68,143): 252, (6,69,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,44): 252, 252, 252, 252, 253, 254, 253, 252, 251, 252, 254, (6,69,55): 251, 253, 252, 251, 254, 252, 251, 255, 251, 252, 249, (6,69,66): 255, 253, 254, 255, 255, 251, 250, 252, 250, 251, 252, (6,69,77): 253, 248, 251, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,69,143): 252, (6,70,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,44): 252, 252, 252, 252, 249, 253, 251, 253, 253, 252, 253, (6,70,55): 252, 251, 253, 253, 253, 250, 249, 253, 251, 253, 253, (6,70,66): 251, 252, 250, 252, 251, 253, 252, 254, 249, 246, 247, (6,70,77): 252, 250, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,70,143): 252, (6,71,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,44): 252, 252, 252, 252, 253, 254, 250, 251, 253, 251, 252, (6,71,55): 251, 254, 251, 251, 252, 255, 253, 252, 253, 250, 254, (6,71,66): 249, 255, 251, 253, 251, 253, 253, 253, 251, 255, 252, (6,71,77): 251, 253, 254, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (6,71,143): 252, (7,0,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,0,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,1,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,2,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,3,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,4,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,5,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,6,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,56): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,67): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,78): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,89): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,7,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,8,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,8,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,8,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,8,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,8,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,8,56): 255, 248, 255, 255, 250, 243, 252, 254, 255, 247, 251, (7,8,67): 253, 255, 253, 250, 252, 255, 248, 255, 255, 247, 251, (7,8,78): 255, 255, 255, 251, 250, 251, 252, 252, 252, 251, 253, (7,8,89): 251, 246, 251, 252, 254, 255, 252, 252, 252, 252, 252, (7,8,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,8,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,8,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,8,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,9,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,9,12): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,9,23): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,9,34): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,9,45): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,9,56): 254, 249, 252, 254, 248, 249, 255, 251, 246, 251, 248, (7,9,67): 255, 254, 250, 252, 252, 244, 255, 252, 244, 255, 253, (7,9,78): 247, 249, 255, 253, 250, 252, 254, 252, 254, 245, 243, (7,9,89): 251, 249, 255, 253, 255, 249, 251, 252, 252, 252, 252, (7,9,100): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,9,111): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,9,122): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,9,133): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,55): 252, 250, 249, 250, 254, 252, 255, 255, 248, 254, 255, (7,10,66): 212, 171, 188, 194, 214, 227, 255, 248, 252, 255, 250, (7,10,77): 254, 252, 246, 253, 251, 254, 248, 250, 255, 254, 255, (7,10,88): 254, 255, 255, 254, 255, 251, 255, 250, 252, 252, 252, (7,10,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,10,143): 252, (7,11,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,11,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,11,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,11,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,11,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,11,55): 252, 251, 251, 248, 251, 251, 254, 249, 244, 252, 177, (7,11,66): 211, 255, 237, 177, 232, 212, 227, 253, 249, 207, 230, (7,11,77): 255, 255, 249, 252, 246, 245, 248, 254, 248, 248, 248, (7,11,88): 255, 250, 247, 249, 250, 249, 251, 253, 252, 252, 252, (7,11,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,11,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,11,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,11,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,11,143): 252, (7,12,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,12,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,12,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,12,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,12,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,12,55): 252, 255, 252, 251, 251, 251, 253, 249, 252, 204, 215, (7,12,66): 247, 251, 236, 180, 231, 240, 189, 255, 178, 198, 156, (7,12,77): 186, 184, 225, 189, 174, 215, 221, 240, 245, 254, 248, (7,12,88): 251, 255, 253, 251, 249, 249, 247, 248, 252, 252, 252, (7,12,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,12,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,12,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,12,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,12,143): 252, (7,13,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,13,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,13,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,13,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,13,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,13,55): 252, 255, 254, 252, 253, 255, 252, 254, 247, 186, 228, (7,13,66): 242, 240, 248, 209, 221, 252, 177, 183, 232, 212, 165, (7,13,77): 177, 165, 156, 236, 179, 168, 191, 173, 170, 185, 176, (7,13,88): 188, 202, 226, 240, 255, 253, 255, 255, 252, 252, 252, (7,13,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,13,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,13,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,13,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,13,143): 252, (7,14,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,14,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,14,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,14,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,14,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,14,55): 252, 253, 251, 249, 255, 255, 244, 253, 214, 200, 207, (7,14,66): 201, 219, 240, 212, 214, 249, 210, 169, 235, 186, 201, (7,14,77): 206, 169, 214, 241, 172, 174, 251, 252, 255, 245, 249, (7,14,88): 220, 197, 168, 164, 175, 246, 255, 242, 252, 252, 252, (7,14,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,14,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,14,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,14,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,14,143): 252, (7,15,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,15,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,15,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,15,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,15,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,15,55): 252, 250, 250, 246, 255, 255, 246, 255, 197, 209, 191, (7,15,66): 190, 200, 229, 214, 215, 246, 200, 184, 230, 170, 244, (7,15,77): 248, 171, 217, 215, 192, 199, 231, 241, 244, 248, 237, (7,15,88): 255, 206, 192, 189, 164, 213, 252, 244, 252, 252, 252, (7,15,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,15,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,15,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,15,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,15,143): 252, (7,16,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,16,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,16,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,16,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,16,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,16,55): 252, 255, 253, 247, 254, 255, 255, 219, 185, 186, 173, (7,16,66): 172, 188, 231, 200, 217, 254, 188, 183, 198, 198, 249, (7,16,77): 241, 158, 215, 200, 178, 205, 225, 225, 234, 228, 239, (7,16,88): 231, 189, 243, 255, 184, 231, 250, 247, 252, 252, 252, (7,16,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,16,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,16,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,16,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,16,143): 252, (7,17,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,17,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,17,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,17,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,17,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,17,55): 252, 247, 252, 252, 252, 247, 252, 190, 153, 156, 167, (7,17,66): 163, 181, 225, 200, 208, 251, 178, 182, 184, 205, 240, (7,17,77): 209, 150, 213, 173, 162, 203, 197, 198, 204, 211, 213, (7,17,88): 222, 172, 242, 255, 181, 255, 246, 253, 252, 252, 252, (7,17,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,17,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,17,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,17,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,17,143): 252, (7,18,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,18,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,18,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,18,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,18,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,18,55): 252, 253, 255, 247, 251, 251, 249, 155, 159, 128, 124, (7,18,66): 135, 171, 225, 200, 228, 252, 157, 176, 171, 224, 240, (7,18,77): 175, 146, 197, 158, 158, 181, 180, 193, 184, 194, 190, (7,18,88): 200, 193, 237, 215, 194, 247, 255, 251, 252, 252, 252, (7,18,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,18,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,18,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,18,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,18,143): 252, (7,19,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,19,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,19,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,19,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,19,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,19,55): 252, 252, 255, 250, 252, 247, 255, 142, 148, 119, 137, (7,19,66): 110, 167, 209, 196, 224, 232, 141, 167, 168, 238, 234, (7,19,77): 144, 151, 178, 155, 147, 171, 170, 176, 171, 166, 184, (7,19,88): 193, 203, 240, 199, 210, 224, 250, 249, 252, 252, 252, (7,19,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,19,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,19,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,19,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,19,143): 252, (7,20,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,20,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,20,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,20,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,20,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,20,55): 252, 245, 254, 252, 255, 249, 191, 137, 108, 149, 156, (7,20,66): 126, 165, 202, 172, 240, 202, 154, 172, 186, 243, 214, (7,20,77): 126, 164, 169, 146, 138, 150, 163, 166, 154, 159, 171, (7,20,88): 194, 228, 233, 186, 244, 241, 255, 255, 252, 252, 252, (7,20,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,20,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,20,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,20,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,20,143): 252, (7,21,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,21,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,21,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,21,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,21,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,21,55): 252, 245, 255, 246, 251, 255, 175, 126, 145, 183, 146, (7,21,66): 114, 163, 221, 173, 255, 197, 165, 166, 205, 242, 195, (7,21,77): 136, 180, 171, 149, 117, 116, 125, 153, 135, 130, 164, (7,21,88): 159, 176, 197, 166, 222, 246, 251, 250, 252, 252, 252, (7,21,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,21,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,21,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,21,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,21,143): 252, (7,22,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,22,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,22,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,22,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,22,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,22,55): 252, 250, 255, 246, 246, 255, 142, 125, 182, 179, 117, (7,22,66): 108, 155, 213, 175, 253, 158, 176, 165, 223, 238, 167, (7,22,77): 141, 171, 166, 162, 134, 110, 135, 152, 109, 114, 152, (7,22,88): 166, 184, 162, 211, 255, 255, 255, 250, 252, 252, 252, (7,22,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,22,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,22,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,22,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,22,143): 252, (7,23,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,23,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,23,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,23,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,23,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,23,55): 252, 251, 252, 252, 245, 254, 181, 187, 169, 138, 155, (7,23,66): 133, 172, 194, 214, 229, 137, 177, 162, 234, 235, 140, (7,23,77): 140, 166, 178, 178, 141, 113, 148, 136, 122, 152, 181, (7,23,88): 185, 207, 219, 239, 255, 247, 255, 249, 252, 252, 252, (7,23,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,23,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,23,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,23,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,23,143): 252, (7,24,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,24,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,24,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,24,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,24,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,24,55): 252, 252, 250, 252, 254, 214, 194, 228, 236, 244, 195, (7,24,66): 128, 174, 191, 213, 178, 157, 162, 193, 233, 204, 129, (7,24,77): 172, 166, 191, 181, 141, 111, 156, 128, 162, 167, 196, (7,24,88): 210, 237, 249, 248, 254, 250, 244, 255, 252, 252, 252, (7,24,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,24,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,24,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,24,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,24,143): 252, (7,25,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,25,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,25,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,25,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,25,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,25,55): 252, 253, 252, 250, 250, 217, 220, 243, 250, 248, 184, (7,25,66): 128, 169, 185, 209, 156, 164, 160, 218, 240, 187, 145, (7,25,77): 179, 159, 201, 198, 128, 130, 180, 131, 174, 203, 185, (7,25,88): 221, 239, 255, 250, 255, 251, 248, 255, 252, 252, 252, (7,25,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,25,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,25,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,25,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,25,143): 252, (7,26,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,26,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,26,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,26,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,26,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,26,55): 252, 252, 252, 253, 252, 229, 248, 252, 253, 237, 197, (7,26,66): 118, 195, 191, 237, 142, 171, 161, 234, 234, 162, 150, (7,26,77): 171, 181, 219, 204, 142, 140, 160, 157, 205, 210, 179, (7,26,88): 231, 241, 255, 251, 255, 253, 251, 250, 252, 252, 252, (7,26,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,26,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,26,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,26,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,26,143): 252, (7,27,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,27,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,27,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,27,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,27,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,27,55): 252, 251, 251, 254, 253, 243, 255, 252, 250, 238, 187, (7,27,66): 135, 209, 160, 201, 138, 156, 181, 234, 234, 139, 150, (7,27,77): 170, 197, 233, 199, 125, 153, 163, 183, 219, 208, 200, (7,27,88): 236, 247, 255, 250, 254, 255, 249, 252, 252, 252, 252, (7,27,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,27,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,27,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,27,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,27,143): 252, (7,28,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,28,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,28,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,28,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,28,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,28,55): 252, 253, 249, 252, 250, 250, 251, 252, 252, 237, 148, (7,28,66): 149, 200, 182, 178, 149, 167, 201, 239, 207, 118, 162, (7,28,77): 167, 215, 242, 175, 126, 172, 164, 215, 230, 183, 219, (7,28,88): 235, 253, 253, 253, 249, 255, 246, 255, 252, 252, 252, (7,28,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,28,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,28,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,28,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,28,143): 252, (7,29,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,29,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,29,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,29,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,29,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,29,55): 252, 253, 250, 254, 252, 255, 249, 253, 253, 228, 150, (7,29,66): 176, 166, 204, 150, 158, 165, 210, 235, 170, 134, 185, (7,29,77): 174, 233, 225, 153, 149, 178, 156, 237, 237, 176, 232, (7,29,88): 229, 252, 251, 255, 248, 252, 245, 255, 252, 252, 252, (7,29,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,29,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,29,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,29,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,29,143): 252, (7,30,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,30,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,30,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,30,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,30,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,30,55): 252, 252, 252, 255, 251, 252, 253, 252, 251, 237, 131, (7,30,66): 184, 175, 221, 137, 172, 162, 232, 216, 146, 150, 179, (7,30,77): 191, 232, 214, 152, 149, 181, 188, 230, 212, 198, 232, (7,30,88): 234, 249, 252, 252, 252, 251, 248, 255, 252, 252, 252, (7,30,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,30,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,30,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,30,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,30,143): 252, (7,31,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,31,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,31,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,31,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,31,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,31,55): 252, 253, 253, 250, 240, 237, 255, 252, 253, 205, 129, (7,31,66): 180, 172, 171, 147, 167, 180, 207, 189, 121, 161, 181, (7,31,77): 204, 225, 202, 118, 160, 174, 191, 238, 202, 203, 229, (7,31,88): 248, 251, 253, 248, 255, 250, 252, 254, 252, 252, 252, (7,31,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,31,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,31,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,31,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,31,143): 252, (7,32,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,32,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,32,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,32,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,32,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,32,55): 252, 250, 249, 236, 181, 174, 180, 186, 212, 169, 134, (7,32,66): 186, 163, 168, 163, 203, 223, 198, 199, 147, 187, 166, (7,32,77): 223, 242, 169, 140, 178, 170, 218, 227, 193, 217, 238, (7,32,88): 247, 255, 245, 255, 255, 251, 255, 251, 252, 252, 252, (7,32,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,32,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,32,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,32,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,32,143): 252, (7,33,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,33,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,33,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,33,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,33,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,33,55): 252, 249, 255, 191, 245, 243, 227, 191, 159, 117, 147, (7,33,66): 169, 183, 151, 168, 212, 247, 237, 225, 161, 183, 171, (7,33,77): 219, 232, 152, 139, 186, 168, 237, 220, 168, 241, 225, (7,33,88): 251, 255, 246, 255, 252, 251, 255, 251, 252, 252, 252, (7,33,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,33,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,33,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,33,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,33,143): 252, (7,34,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,34,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,34,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,34,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,34,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,34,55): 252, 247, 255, 196, 246, 236, 242, 170, 231, 124, 164, (7,34,66): 167, 192, 138, 163, 225, 241, 229, 200, 164, 173, 189, (7,34,77): 232, 208, 135, 147, 175, 190, 226, 217, 193, 227, 241, (7,34,88): 255, 253, 250, 255, 249, 249, 255, 251, 252, 252, 252, (7,34,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,34,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,34,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,34,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,34,143): 252, (7,35,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,35,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,35,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,35,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,35,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,35,55): 252, 252, 212, 215, 220, 232, 236, 175, 219, 139, 165, (7,35,66): 169, 162, 152, 173, 203, 222, 215, 183, 163, 173, 209, (7,35,77): 228, 191, 130, 162, 176, 197, 230, 200, 195, 225, 231, (7,35,88): 254, 250, 252, 255, 245, 249, 255, 252, 252, 252, 252, (7,35,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,35,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,35,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,35,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,35,143): 252, (7,36,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,36,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,36,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,36,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,36,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,36,55): 252, 244, 195, 198, 183, 196, 190, 190, 181, 136, 168, (7,36,66): 170, 163, 163, 172, 197, 196, 193, 157, 172, 168, 216, (7,36,77): 233, 172, 144, 175, 174, 214, 234, 182, 210, 240, 255, (7,36,88): 248, 249, 255, 255, 244, 250, 255, 252, 252, 252, 252, (7,36,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,36,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,36,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,36,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,36,143): 252, (7,37,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,37,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,37,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,37,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,37,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,37,55): 252, 255, 180, 177, 179, 192, 179, 215, 167, 144, 163, (7,37,66): 189, 154, 157, 171, 166, 174, 170, 150, 166, 177, 225, (7,37,77): 217, 158, 139, 185, 161, 236, 229, 161, 227, 233, 255, (7,37,88): 246, 248, 255, 254, 247, 249, 254, 253, 252, 252, 252, (7,37,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,37,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,37,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,37,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,37,143): 252, (7,38,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,38,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,38,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,38,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,38,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,38,55): 252, 253, 146, 159, 170, 182, 166, 218, 140, 159, 157, (7,38,66): 181, 150, 150, 160, 171, 162, 165, 151, 171, 194, 230, (7,38,77): 201, 139, 144, 170, 200, 226, 213, 195, 225, 226, 250, (7,38,88): 251, 251, 253, 254, 252, 250, 252, 253, 252, 252, 252, (7,38,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,38,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,38,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,38,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,38,143): 252, (7,39,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,39,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,39,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,39,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,39,44): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,39,55): 252, 185, 148, 141, 145, 170, 173, 160, 133, 154, 167, (7,39,66): 154, 141, 157, 154, 158, 161, 155, 155, 173, 213, 232, (7,39,77): 173, 129, 152, 168, 215, 220, 191, 210, 236, 236, 255, (7,39,88): 255, 253, 251, 254, 255, 249, 251, 255, 252, 252, 252, (7,39,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,39,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,39,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,39,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,39,143): 252, (7,40,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,40,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,40,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,40,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,40,44): 252, 252, 252, 252, 248, 252, 255, 252, 252, 253, 253, (7,40,55): 245, 156, 143, 114, 119, 144, 167, 136, 155, 173, 187, (7,40,66): 149, 152, 112, 111, 107, 117, 140, 178, 156, 216, 239, (7,40,77): 168, 136, 174, 162, 223, 219, 185, 218, 227, 251, 254, (7,40,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,40,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,40,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,40,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,40,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,40,143): 252, (7,41,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,41,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,41,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,41,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,41,44): 252, 252, 252, 252, 251, 251, 254, 249, 254, 253, 241, (7,41,55): 254, 140, 145, 121, 149, 190, 168, 129, 150, 177, 191, (7,41,66): 145, 145, 113, 131, 119, 111, 152, 167, 170, 224, 223, (7,41,77): 160, 145, 163, 179, 221, 231, 167, 219, 235, 251, 255, (7,41,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,41,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,41,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,41,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,41,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,41,143): 252, (7,42,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,42,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,42,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,42,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,42,44): 252, 252, 252, 252, 249, 255, 254, 255, 248, 249, 255, (7,42,55): 223, 126, 145, 133, 169, 209, 152, 133, 154, 170, 163, (7,42,66): 145, 139, 125, 142, 143, 109, 146, 168, 197, 225, 200, (7,42,77): 137, 143, 168, 197, 220, 195, 198, 226, 226, 252, 248, (7,42,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,42,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,42,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,42,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,42,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,42,143): 252, (7,43,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,43,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,43,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,43,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,43,44): 252, 252, 252, 252, 252, 254, 251, 252, 252, 247, 251, (7,43,55): 177, 145, 146, 156, 192, 202, 139, 154, 166, 175, 155, (7,43,66): 144, 142, 142, 159, 140, 121, 160, 164, 213, 230, 174, (7,43,77): 125, 158, 161, 214, 227, 178, 220, 224, 246, 245, 251, (7,43,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,43,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,43,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,43,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,43,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,43,143): 252, (7,44,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,44,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,44,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,44,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,44,44): 252, 252, 252, 252, 253, 255, 251, 248, 254, 248, 255, (7,44,55): 142, 166, 143, 178, 212, 187, 130, 154, 158, 186, 137, (7,44,66): 148, 154, 164, 177, 145, 127, 171, 173, 219, 219, 160, (7,44,77): 132, 175, 169, 223, 208, 186, 226, 218, 255, 251, 251, (7,44,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,44,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,44,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,44,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,44,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,44,143): 252, (7,45,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,45,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,45,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,45,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,45,44): 252, 252, 252, 252, 249, 255, 253, 251, 252, 249, 255, (7,45,55): 126, 158, 150, 203, 217, 173, 142, 155, 160, 175, 134, (7,45,66): 157, 158, 197, 187, 137, 143, 169, 192, 222, 199, 152, (7,45,77): 141, 173, 189, 219, 209, 188, 221, 233, 248, 254, 255, (7,45,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,45,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,45,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,45,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,45,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,45,143): 252, (7,46,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,46,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,46,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,46,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,46,44): 252, 252, 252, 252, 249, 254, 253, 247, 255, 248, 199, (7,46,55): 138, 157, 177, 221, 204, 150, 152, 155, 170, 175, 146, (7,46,66): 167, 180, 202, 187, 130, 156, 177, 198, 221, 184, 138, (7,46,77): 155, 173, 194, 217, 197, 193, 215, 226, 248, 255, 255, (7,46,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,46,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,46,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,46,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,46,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,46,143): 252, (7,47,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,47,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,47,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,47,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,47,44): 252, 252, 252, 252, 248, 255, 252, 249, 255, 250, 179, (7,47,55): 150, 171, 194, 219, 189, 137, 161, 159, 191, 166, 146, (7,47,66): 172, 186, 223, 183, 126, 167, 171, 208, 217, 167, 142, (7,47,77): 171, 166, 214, 219, 186, 203, 223, 245, 252, 252, 251, (7,47,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,47,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,47,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,47,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,47,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,47,143): 252, (7,48,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,48,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,48,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,48,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,48,44): 252, 252, 252, 252, 255, 253, 254, 250, 255, 253, 152, (7,48,55): 159, 167, 195, 222, 174, 153, 147, 162, 204, 146, 151, (7,48,66): 159, 210, 224, 154, 146, 174, 168, 216, 218, 156, 128, (7,48,77): 182, 172, 217, 222, 169, 215, 225, 253, 251, 252, 253, (7,48,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,48,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,48,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,48,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,48,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,48,143): 252, (7,49,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,49,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,49,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,49,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,49,44): 252, 252, 252, 252, 251, 251, 251, 254, 253, 255, 125, (7,49,55): 162, 153, 223, 212, 161, 160, 149, 149, 192, 133, 154, (7,49,66): 179, 221, 215, 140, 137, 162, 181, 218, 206, 140, 139, (7,49,77): 170, 182, 214, 207, 180, 219, 227, 255, 250, 251, 252, (7,49,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,49,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,49,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,49,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,49,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,49,143): 252, (7,50,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,50,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,50,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,50,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,50,44): 252, 252, 252, 252, 255, 251, 252, 246, 249, 195, 142, (7,50,55): 161, 181, 214, 190, 157, 146, 145, 189, 177, 144, 159, (7,50,66): 186, 216, 195, 134, 146, 170, 196, 225, 183, 136, 152, (7,50,77): 167, 196, 219, 197, 189, 219, 227, 255, 249, 255, 251, (7,50,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,50,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,50,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,50,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,50,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,50,143): 252, (7,51,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,51,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,51,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,51,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,51,44): 252, 252, 252, 252, 255, 246, 255, 250, 244, 156, 154, (7,51,55): 169, 175, 184, 171, 180, 149, 156, 213, 155, 159, 153, (7,51,66): 187, 217, 180, 136, 157, 165, 211, 225, 172, 133, 171, (7,51,77): 160, 210, 215, 180, 207, 219, 255, 244, 251, 253, 254, (7,51,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,51,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,51,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,51,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,51,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,51,143): 252, (7,52,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,52,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,52,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,52,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,52,44): 252, 252, 252, 252, 253, 248, 250, 248, 251, 148, 168, (7,52,55): 201, 193, 182, 164, 158, 142, 170, 229, 149, 163, 156, (7,52,66): 204, 223, 163, 136, 160, 163, 215, 211, 151, 135, 175, (7,52,77): 164, 219, 210, 175, 210, 220, 255, 250, 245, 253, 255, (7,52,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,52,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,52,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,52,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,52,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,52,143): 252, (7,53,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,53,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,53,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,53,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,53,44): 252, 252, 252, 252, 252, 252, 253, 255, 251, 133, 181, (7,53,55): 205, 202, 189, 171, 156, 148, 206, 214, 124, 160, 174, (7,53,66): 219, 211, 135, 133, 164, 189, 222, 196, 134, 144, 164, (7,53,77): 178, 218, 198, 186, 214, 217, 252, 250, 251, 248, 255, (7,53,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,53,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,53,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,53,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,53,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,53,143): 252, (7,54,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,54,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,54,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,54,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,54,44): 252, 252, 252, 252, 253, 248, 253, 255, 187, 139, 188, (7,54,55): 221, 221, 205, 161, 141, 139, 218, 160, 136, 158, 189, (7,54,66): 216, 190, 127, 144, 163, 212, 219, 172, 131, 151, 163, (7,54,77): 194, 222, 187, 203, 216, 250, 251, 255, 252, 247, 253, (7,54,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,54,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,54,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,54,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,54,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,54,143): 252, (7,55,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,55,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,55,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,55,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,55,44): 252, 252, 252, 252, 254, 250, 254, 253, 139, 151, 184, (7,55,55): 220, 205, 166, 147, 127, 183, 227, 140, 155, 167, 198, (7,55,66): 207, 180, 140, 165, 160, 219, 214, 162, 128, 168, 156, (7,55,77): 209, 216, 179, 213, 210, 255, 250, 248, 255, 249, 251, (7,55,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,55,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,55,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,55,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,55,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,55,143): 252, (7,56,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,56,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,56,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,56,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,56,44): 252, 252, 252, 252, 251, 253, 245, 254, 147, 147, 176, (7,56,55): 195, 175, 156, 128, 141, 214, 217, 136, 157, 154, 208, (7,56,66): 216, 167, 140, 166, 174, 210, 212, 148, 141, 156, 184, (7,56,77): 219, 212, 173, 209, 217, 252, 255, 243, 254, 254, 248, (7,56,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,56,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,56,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,56,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,56,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,56,143): 252, (7,57,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,57,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,57,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,57,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,57,44): 252, 252, 252, 252, 252, 254, 248, 226, 121, 148, 169, (7,57,55): 182, 167, 137, 128, 190, 201, 164, 135, 153, 181, 219, (7,57,66): 214, 130, 131, 166, 197, 214, 192, 141, 151, 150, 189, (7,57,77): 214, 186, 188, 207, 235, 254, 252, 251, 248, 253, 252, (7,57,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,57,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,57,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,57,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,57,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,57,143): 252, (7,58,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,58,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,58,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,58,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,58,44): 252, 252, 252, 252, 253, 252, 249, 197, 123, 152, 154, (7,58,55): 156, 150, 142, 141, 218, 213, 144, 140, 164, 192, 207, (7,58,66): 191, 139, 155, 164, 209, 218, 169, 130, 146, 161, 218, (7,58,77): 214, 174, 197, 215, 244, 250, 245, 254, 249, 253, 254, (7,58,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,58,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,58,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,58,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,58,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,58,143): 252, (7,59,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,59,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,59,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,59,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,59,44): 252, 252, 252, 252, 249, 255, 255, 183, 117, 138, 150, (7,59,55): 148, 125, 118, 190, 209, 181, 117, 158, 168, 194, 205, (7,59,66): 161, 131, 166, 156, 208, 207, 154, 131, 174, 168, 207, (7,59,77): 206, 173, 217, 214, 252, 239, 247, 255, 252, 250, 255, (7,59,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,59,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,59,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,59,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,59,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,59,143): 252, (7,60,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,60,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,60,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,60,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,60,44): 252, 252, 252, 252, 245, 253, 255, 165, 158, 115, 135, (7,60,55): 137, 110, 174, 222, 213, 158, 125, 160, 161, 183, 200, (7,60,66): 137, 134, 168, 179, 205, 195, 134, 145, 167, 181, 215, (7,60,77): 191, 187, 217, 211, 253, 247, 255, 252, 254, 247, 253, (7,60,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,60,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,60,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,60,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,60,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,60,143): 252, (7,61,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,61,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,61,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,61,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,61,44): 252, 252, 252, 252, 248, 255, 228, 169, 168, 127, 109, (7,61,55): 108, 161, 221, 213, 178, 180, 121, 154, 160, 164, 163, (7,61,66): 132, 136, 160, 178, 185, 166, 133, 146, 162, 168, 205, (7,61,77): 192, 187, 215, 225, 255, 255, 255, 243, 255, 249, 251, (7,61,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,61,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,61,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,61,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,61,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,61,143): 252, (7,62,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,62,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,62,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,62,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,62,44): 252, 252, 252, 252, 253, 253, 237, 183, 165, 170, 170, (7,62,55): 155, 168, 181, 215, 241, 208, 165, 176, 184, 174, 158, (7,62,66): 145, 117, 161, 163, 171, 161, 120, 150, 160, 164, 170, (7,62,77): 163, 194, 209, 242, 255, 251, 255, 248, 248, 252, 253, (7,62,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,62,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,62,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,62,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,62,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,62,143): 252, (7,63,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,63,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,63,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,63,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,63,44): 252, 252, 252, 252, 255, 252, 243, 190, 179, 171, 167, (7,63,55): 185, 229, 255, 253, 248, 179, 182, 233, 255, 236, 234, (7,63,66): 181, 169, 219, 206, 172, 208, 156, 136, 156, 181, 173, (7,63,77): 176, 225, 255, 253, 247, 247, 255, 252, 242, 250, 255, (7,63,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,63,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,63,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,63,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,63,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,63,143): 252, (7,64,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,44): 252, 252, 252, 252, 253, 251, 237, 212, 194, 186, 195, (7,64,55): 220, 252, 252, 252, 237, 185, 199, 248, 253, 252, 213, (7,64,66): 168, 217, 249, 252, 253, 212, 163, 217, 251, 222, 204, (7,64,77): 240, 255, 247, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,64,143): 252, (7,65,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,44): 252, 252, 252, 252, 253, 253, 245, 226, 213, 212, 225, (7,65,55): 249, 253, 252, 251, 236, 206, 229, 255, 252, 247, 215, (7,65,66): 192, 236, 255, 252, 246, 201, 181, 233, 255, 255, 255, (7,65,77): 255, 253, 251, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,65,143): 252, (7,66,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,44): 252, 252, 252, 252, 250, 252, 250, 239, 231, 232, 241, (7,66,55): 254, 252, 252, 255, 241, 228, 249, 253, 251, 254, 224, (7,66,66): 219, 245, 252, 251, 251, 214, 207, 245, 244, 244, 248, (7,66,77): 247, 251, 254, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,66,143): 252, (7,67,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,44): 252, 252, 252, 252, 252, 253, 254, 251, 249, 250, 252, (7,67,55): 253, 252, 250, 255, 251, 243, 252, 249, 253, 251, 231, (7,67,66): 243, 255, 254, 250, 247, 218, 226, 252, 253, 253, 251, (7,67,77): 252, 255, 249, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,67,143): 252, (7,68,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,44): 252, 252, 252, 252, 252, 252, 251, 251, 250, 253, 254, (7,68,55): 250, 255, 250, 250, 255, 252, 253, 252, 253, 254, 242, (7,68,66): 252, 251, 250, 251, 251, 237, 245, 252, 255, 255, 255, (7,68,77): 255, 254, 251, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,68,143): 252, (7,69,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,44): 252, 252, 252, 252, 253, 254, 253, 252, 251, 252, 254, (7,69,55): 251, 253, 252, 251, 254, 252, 251, 255, 251, 252, 249, (7,69,66): 255, 253, 254, 255, 255, 251, 250, 252, 250, 251, 252, (7,69,77): 253, 248, 251, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,69,143): 252, (7,70,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,44): 252, 252, 252, 252, 249, 253, 251, 253, 253, 252, 253, (7,70,55): 252, 251, 253, 253, 253, 250, 249, 253, 251, 253, 253, (7,70,66): 251, 252, 250, 252, 251, 253, 252, 254, 249, 246, 247, (7,70,77): 252, 250, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,70,143): 252, (7,71,0): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,11): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,22): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,33): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,44): 252, 252, 252, 252, 253, 254, 250, 251, 253, 251, 252, (7,71,55): 251, 254, 251, 251, 252, 255, 253, 252, 253, 250, 254, (7,71,66): 249, 255, 251, 253, 251, 253, 253, 253, 251, 255, 252, (7,71,77): 251, 253, 254, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,88): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,99): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,110): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,121): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,132): 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (7,71,143): 252 } ATTRIBUTE "CLASS" { DATATYPE H5T_STRING { STRSIZE 7; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "IMAGE" } } } DATASET "Iceberg" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 375, 375 ) / ( 375, 375 ) } DATA { (0,0): 2, 100, 104, 18, 195, 72, 33, 63, 156, 49, 14, 46, 49, 49, (0,14): 72, 186, 33, 185, 33, 79, 14, 180, 180, 187, 241, 66, 125, (0,27): 33, 185, 185, 204, 38, 66, 204, 204, 204, 66, 204, 185, 33, (0,40): 33, 79, 79, 18, 186, 79, 116, 186, 72, 80, 221, 253, 63, (0,53): 183, 195, 49, 70, 14, 204, 33, 55, 18, 236, 66, 220, 180, (0,66): 78, 220, 49, 234, 50, 2, 105, 104, 27, 105, 156, 50, 2, 104, (0,80): 100, 187, 51, 241, 252, 28, 185, 241, 185, 219, 38, 241, 62, (0,93): 251, 38, 125, 38, 66, 66, 219, 18, 185, 33, 33, 185, 185, (0,106): 33, 33, 33, 33, 128, 55, 119, 55, 71, 71, 71, 185, 71, 219, (0,120): 120, 20, 233, 251, 153, 194, 38, 60, 28, 251, 219, 113, (0,132): 219, 241, 251, 66, 219, 185, 33, 185, 185, 66, 35, 66, 66, (0,145): 241, 119, 35, 232, 185, 140, 185, 79, 38, 195, 79, 119, 18, (0,158): 125, 185, 33, 232, 128, 117, 245, 35, 140, 140, 117, 140, (0,170): 117, 117, 117, 35, 117, 117, 140, 55, 185, 55, 79, 185, (0,182): 125, 18, 195, 66, 14, 220, 220, 156, 195, 195, 186, 14, 14, (0,195): 79, 128, 33, 33, 33, 156, 63, 156, 24, 104, 63, 66, 183, (0,208): 104, 176, 91, 50, 186, 90, 91, 111, 146, 3, 186, 186, 186, (0,221): 72, 195, 66, 49, 33, 49, 105, 176, 90, 36, 12, 124, 124, (0,234): 182, 80, 138, 182, 3, 234, 176, 186, 11, 116, 3, 46, 221, (0,247): 221, 128, 33, 79, 18, 72, 79, 79, 33, 18, 186, 18, 18, 116, (0,261): 33, 79, 186, 185, 33, 79, 185, 79, 232, 35, 33, 79, 116, (0,274): 186, 186, 195, 146, 156, 156, 156, 146, 146, 220, 182, 146, (0,286): 46, 128, 46, 186, 195, 72, 18, 79, 33, 236, 35, 139, 35, (0,299): 139, 117, 35, 35, 35, 128, 232, 128, 33, 33, 33, 35, 117, (0,312): 79, 79, 79, 33, 232, 35, 35, 128, 35, 35, 35, 35, 33, 33, (0,326): 79, 79, 35, 232, 35, 117, 117, 35, 35, 117, 117, 35, 117, (0,339): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (0,352): 117, 117, 35, 117, 35, 117, 35, 35, 140, 33, 119, 185, 100, (0,365): 119, 119, 117, 35, 35, 35, 35, 35, 35, 117, (1,0): 14, 195, 156, 195, 221, 79, 88, 72, 195, 186, 156, 79, 72, (1,13): 72, 195, 195, 33, 18, 79, 33, 125, 66, 14, 28, 66, 66, 38, (1,27): 18, 185, 185, 204, 204, 204, 204, 204, 204, 18, 185, 33, 33, (1,40): 35, 33, 18, 195, 72, 79, 33, 46, 72, 156, 50, 146, 146, 49, (1,54): 49, 14, 175, 187, 18, 55, 204, 33, 232, 79, 72, 108, 63, (1,67): 108, 50, 220, 220, 138, 63, 105, 137, 27, 91, 104, 64, 223, (1,80): 121, 99, 99, 8, 99, 24, 119, 38, 125, 71, 185, 71, 113, 219, (1,94): 219, 219, 66, 66, 219, 195, 185, 185, 33, 119, 79, 79, 221, (1,107): 55, 33, 33, 33, 33, 119, 55, 120, 185, 120, 120, 71, 219, (1,120): 251, 28, 194, 62, 24, 74, 194, 74, 62, 103, 71, 71, 219, (1,133): 219, 38, 219, 38, 66, 195, 125, 241, 108, 66, 195, 24, 125, (1,146): 79, 241, 139, 185, 219, 245, 185, 185, 119, 35, 232, 18, (1,158): 204, 195, 18, 33, 79, 35, 245, 35, 140, 35, 140, 139, 117, (1,171): 117, 88, 117, 117, 117, 245, 232, 55, 79, 232, 79, 185, (1,183): 185, 195, 66, 220, 14, 156, 195, 186, 116, 18, 195, 116, (1,195): 79, 33, 35, 128, 185, 33, 66, 66, 2, 27, 51, 156, 108, 105, (1,209): 183, 183, 176, 133, 146, 186, 224, 3, 72, 3, 116, 79, 116, (1,222): 18, 72, 72, 46, 146, 108, 108, 78, 124, 182, 203, 34, 34, (1,235): 91, 12, 105, 50, 222, 222, 3, 46, 116, 116, 116, 221, 11, (1,248): 221, 116, 72, 18, 79, 18, 18, 79, 186, 18, 186, 18, 186, (1,261): 33, 33, 79, 33, 128, 232, 33, 33, 232, 128, 33, 116, 116, (1,274): 116, 116, 46, 116, 186, 72, 156, 49, 3, 116, 46, 3, 3, 116, (1,288): 221, 116, 116, 79, 33, 232, 232, 232, 232, 232, 35, 35, (1,300): 117, 35, 35, 128, 117, 128, 33, 79, 221, 117, 117, 11, 35, (1,313): 128, 128, 35, 88, 88, 210, 88, 35, 35, 128, 35, 35, 119, (1,326): 33, 33, 35, 128, 35, 117, 117, 128, 35, 117, 117, 35, 117, (1,339): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (1,352): 117, 35, 117, 117, 35, 117, 35, 117, 117, 119, 140, 140, (1,364): 125, 140, 201, 35, 35, 35, 35, 35, 117, 35, 35, (2,0): 220, 14, 66, 63, 219, 72, 128, 79, 221, 35, 156, 156, 156, (2,13): 156, 195, 116, 33, 195, 125, 79, 79, 79, 18, 66, 66, 66, (2,26): 241, 66, 204, 204, 204, 204, 241, 241, 241, 66, 204, 204, (2,38): 18, 79, 33, 79, 116, 186, 79, 224, 116, 72, 128, 50, 156, (2,51): 63, 50, 104, 14, 72, 234, 121, 187, 79, 33, 236, 66, 18, 79, (2,65): 220, 63, 63, 63, 50, 220, 220, 108, 63, 91, 27, 183, 91, 27, (2,79): 183, 226, 8, 99, 89, 216, 51, 185, 219, 125, 71, 55, 119, (2,92): 55, 185, 113, 103, 219, 125, 195, 125, 185, 79, 119, 119, (2,104): 33, 119, 79, 79, 79, 55, 33, 55, 33, 120, 55, 55, 55, 55, (2,118): 125, 219, 71, 62, 251, 251, 153, 153, 241, 251, 219, 113, (2,130): 71, 55, 120, 71, 185, 125, 33, 185, 219, 66, 14, 63, 100, (2,143): 79, 66, 14, 219, 241, 33, 245, 79, 185, 14, 219, 18, 79, (2,156): 185, 18, 241, 100, 204, 38, 241, 125, 55, 119, 140, 139, (2,168): 245, 245, 117, 35, 35, 35, 117, 117, 35, 35, 33, 33, 79, (2,181): 55, 185, 195, 195, 156, 14, 220, 156, 195, 186, 186, 66, (2,193): 195, 79, 33, 79, 128, 35, 116, 220, 14, 156, 156, 2, 187, (2,206): 2, 180, 183, 222, 11, 50, 78, 186, 111, 133, 49, 49, 146, (2,219): 146, 72, 186, 72, 195, 18, 72, 49, 234, 182, 182, 146, 3, (2,232): 133, 138, 34, 12, 12, 181, 182, 50, 182, 3, 116, 111, 111, (2,245): 116, 195, 72, 195, 234, 66, 116, 33, 79, 18, 79, 79, 116, (2,258): 79, 18, 79, 33, 221, 79, 18, 33, 128, 33, 33, 232, 128, 33, (2,272): 72, 116, 116, 221, 221, 221, 46, 116, 46, 49, 156, 146, 72, (2,285): 49, 3, 224, 116, 116, 221, 33, 33, 232, 232, 55, 35, 232, (2,298): 55, 79, 33, 119, 128, 119, 33, 33, 221, 186, 185, 116, 33, (2,311): 33, 33, 79, 18, 186, 185, 33, 33, 119, 35, 117, 117, 117, (2,324): 128, 35, 35, 128, 119, 128, 128, 117, 117, 35, 35, 35, 35, (2,337): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (2,350): 35, 117, 117, 117, 35, 117, 35, 117, 35, 201, 117, 119, (2,362): 117, 140, 201, 140, 119, 35, 117, 117, 117, 117, 35, 117, (2,374): 117, (3,0): 156, 100, 156, 180, 195, 186, 195, 185, 156, 128, 156, 220, (3,12): 63, 220, 156, 224, 185, 66, 156, 195, 185, 79, 33, 185, 204, (3,25): 66, 241, 66, 204, 38, 241, 241, 204, 66, 204, 204, 18, 18, (3,38): 204, 195, 33, 33, 221, 33, 221, 128, 33, 46, 146, 108, 46, (3,51): 156, 220, 123, 105, 180, 14, 2, 66, 18, 195, 79, 79, 116, (3,64): 72, 234, 108, 108, 108, 50, 14, 108, 50, 63, 2, 181, 63, (3,77): 105, 2, 220, 63, 180, 27, 99, 8, 157, 100, 219, 125, 185, (3,90): 185, 55, 120, 120, 71, 185, 125, 125, 185, 185, 185, 33, 33, (3,103): 119, 33, 33, 33, 33, 33, 33, 33, 79, 120, 33, 55, 119, 55, (3,117): 55, 71, 219, 125, 103, 66, 103, 28, 153, 241, 71, 71, 71, (3,130): 185, 71, 55, 55, 79, 120, 119, 185, 66, 14, 2, 28, 253, (3,143): 185, 180, 252, 185, 66, 100, 66, 185, 219, 156, 156, 100, (3,155): 241, 156, 241, 63, 187, 14, 24, 192, 28, 38, 62, 62, 62, (3,168): 55, 140, 140, 119, 79, 33, 11, 128, 221, 35, 35, 33, 18, (3,181): 72, 66, 66, 156, 14, 63, 100, 156, 186, 79, 221, 79, 66, (3,194): 186, 232, 128, 33, 33, 35, 185, 79, 125, 66, 180, 2, 27, (3,207): 27, 64, 36, 108, 80, 80, 3, 46, 3, 3, 186, 3, 186, 116, (3,221): 116, 79, 18, 221, 72, 72, 146, 220, 133, 116, 3, 111, 146, (3,234): 182, 50, 222, 234, 146, 3, 72, 46, 80, 63, 50, 186, 72, 49, (3,248): 234, 220, 14, 79, 232, 79, 79, 33, 33, 33, 79, 79, 221, 33, (3,262): 33, 79, 79, 128, 35, 35, 35, 35, 35, 128, 33, 221, 221, (3,275): 128, 128, 128, 221, 46, 146, 78, 91, 183, 91, 105, 50, 186, (3,288): 72, 46, 79, 221, 79, 79, 33, 33, 117, 232, 18, 18, 125, 79, (3,302): 33, 33, 221, 117, 210, 245, 33, 33, 128, 35, 33, 33, 79, (3,315): 185, 79, 33, 119, 128, 128, 128, 35, 117, 11, 117, 35, 35, (3,328): 128, 119, 33, 35, 117, 128, 35, 117, 117, 117, 35, 117, 35, (3,341): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, (3,354): 35, 117, 35, 117, 35, 117, 117, 117, 119, 33, 201, 117, (3,366): 119, 140, 201, 117, 117, 117, 117, 117, 35, (4,0): 185, 14, 14, 156, 125, 33, 108, 66, 104, 195, 220, 49, 49, (4,13): 66, 156, 195, 195, 195, 66, 204, 18, 186, 185, 33, 125, 204, (4,26): 195, 204, 66, 241, 241, 14, 241, 66, 204, 204, 195, 241, (4,38): 234, 14, 79, 116, 195, 14, 50, 156, 72, 186, 156, 156, 156, (4,51): 46, 49, 156, 181, 253, 220, 104, 177, 180, 221, 14, 180, 63, (4,64): 72, 49, 234, 156, 50, 220, 234, 108, 220, 63, 78, 14, 156, (4,77): 253, 183, 63, 63, 28, 51, 8, 70, 8, 24, 241, 125, 71, 55, (4,91): 33, 120, 185, 55, 120, 33, 33, 55, 33, 79, 33, 55, 79, 33, (4,105): 55, 33, 119, 119, 35, 33, 33, 119, 55, 55, 33, 55, 33, 71, (4,119): 185, 219, 241, 38, 66, 100, 28, 241, 125, 71, 71, 71, 185, (4,132): 120, 55, 120, 33, 55, 33, 125, 241, 100, 195, 63, 125, 195, (4,145): 51, 220, 156, 185, 119, 33, 156, 125, 241, 63, 156, 2, 2, (4,158): 252, 192, 142, 25, 193, 15, 58, 25, 193, 249, 24, 185, 117, (4,171): 232, 185, 128, 128, 221, 72, 33, 117, 221, 72, 66, 49, 156, (4,184): 220, 108, 63, 100, 195, 33, 128, 128, 88, 79, 79, 128, 33, (4,197): 79, 128, 35, 156, 195, 14, 49, 14, 185, 195, 14, 146, 156, (4,210): 224, 11, 3, 138, 46, 80, 3, 3, 186, 186, 116, 46, 221, 33, (4,224): 128, 79, 33, 128, 72, 116, 224, 46, 46, 116, 3, 3, 146, (4,237): 234, 234, 72, 49, 3, 220, 78, 156, 116, 221, 72, 18, 234, (4,250): 234, 79, 128, 33, 79, 35, 128, 128, 33, 33, 128, 35, 128, (4,263): 79, 79, 33, 33, 33, 221, 79, 18, 72, 195, 72, 116, 116, 46, (4,277): 116, 186, 146, 50, 180, 105, 181, 138, 156, 3, 116, 186, (4,289): 116, 46, 18, 79, 33, 232, 232, 35, 232, 33, 18, 18, 185, (4,302): 186, 186, 186, 33, 128, 128, 33, 128, 35, 128, 35, 35, 128, (4,315): 35, 35, 117, 117, 117, 119, 35, 128, 117, 117, 117, 117, (4,327): 35, 35, 33, 33, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, (4,341): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (4,354): 117, 35, 117, 35, 117, 35, 201, 88, 201, 119, 35, 119, 117, (4,367): 140, 117, 117, 117, 117, 117, 117, 35, (5,0): 18, 14, 100, 219, 72, 35, 14, 195, 2, 156, 63, 49, 195, 186, (5,14): 195, 146, 66, 125, 186, 18, 185, 18, 38, 33, 79, 185, 18, (5,27): 185, 18, 204, 241, 241, 28, 100, 241, 234, 14, 100, 28, 180, (5,40): 72, 18, 72, 156, 63, 63, 108, 50, 221, 195, 146, 156, 49, (5,53): 186, 195, 108, 253, 116, 63, 253, 234, 220, 50, 105, 195, (5,65): 49, 49, 156, 50, 50, 50, 63, 50, 63, 108, 146, 49, 105, 183, (5,79): 2, 104, 63, 187, 70, 70, 175, 100, 66, 125, 185, 55, 119, (5,92): 119, 201, 119, 55, 35, 119, 119, 33, 33, 55, 79, 221, 120, (5,105): 79, 33, 35, 117, 35, 119, 33, 119, 119, 33, 55, 55, 185, (5,118): 33, 79, 125, 204, 241, 28, 153, 100, 66, 71, 185, 71, 120, (5,131): 120, 119, 119, 119, 119, 33, 35, 117, 128, 128, 117, 186, (5,143): 186, 108, 70, 180, 156, 187, 183, 156, 187, 108, 220, 180, (5,155): 220, 93, 27, 70, 187, 192, 122, 214, 95, 59, 214, 214, 214, (5,168): 248, 58, 185, 33, 116, 186, 186, 195, 146, 116, 46, 116, (5,180): 195, 146, 49, 195, 14, 220, 108, 156, 195, 185, 33, 79, 33, (5,193): 33, 221, 125, 195, 128, 117, 33, 220, 100, 180, 2, 180, 66, (5,206): 156, 2, 253, 105, 63, 80, 186, 156, 224, 80, 182, 80, 80, (5,219): 146, 146, 72, 116, 116, 33, 221, 245, 88, 224, 128, 11, (5,231): 128, 111, 224, 111, 116, 72, 108, 50, 146, 156, 156, 146, (5,243): 116, 11, 33, 72, 195, 221, 18, 18, 79, 232, 79, 79, 232, (5,256): 33, 33, 33, 128, 128, 35, 128, 33, 72, 195, 195, 195, 195, (5,269): 195, 66, 234, 156, 156, 49, 195, 72, 146, 156, 14, 91, 176, (5,282): 253, 181, 50, 80, 146, 146, 146, 72, 72, 195, 72, 33, 35, (5,295): 128, 33, 35, 117, 128, 33, 221, 18, 49, 18, 234, 220, 14, (5,308): 186, 11, 35, 33, 33, 33, 33, 128, 128, 119, 128, 119, 128, (5,321): 128, 35, 35, 117, 35, 117, 128, 35, 33, 33, 128, 128, 117, (5,334): 128, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (5,347): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (5,360): 119, 117, 117, 119, 117, 201, 35, 125, 119, 35, 201, 117, (5,372): 117, 117, 117, (6,0): 185, 195, 195, 195, 18, 35, 128, 128, 156, 66, 108, 195, 156, (6,13): 66, 195, 186, 195, 185, 185, 195, 195, 14, 156, 79, 232, (6,25): 185, 204, 204, 185, 185, 204, 241, 100, 100, 14, 241, 241, (6,37): 66, 234, 66, 66, 18, 33, 221, 116, 72, 49, 156, 156, 220, (6,50): 221, 49, 79, 156, 72, 108, 50, 50, 176, 105, 49, 50, 176, (6,63): 183, 50, 220, 49, 49, 220, 220, 108, 2, 108, 63, 108, 195, (6,76): 186, 156, 108, 49, 187, 63, 104, 104, 27, 51, 14, 219, 125, (6,89): 185, 119, 35, 139, 35, 119, 119, 117, 35, 35, 35, 33, 33, (6,102): 55, 79, 33, 55, 79, 119, 35, 35, 119, 33, 55, 232, 119, (6,115): 232, 33, 33, 55, 79, 185, 125, 100, 187, 187, 100, 66, 125, (6,128): 185, 71, 185, 55, 119, 201, 119, 35, 120, 33, 119, 117, 33, (6,141): 66, 66, 108, 156, 121, 64, 63, 253, 70, 156, 175, 104, 180, (6,154): 2, 220, 252, 105, 27, 51, 58, 198, 151, 151, 16, 122, 53, (6,167): 248, 214, 226, 100, 33, 79, 156, 220, 72, 3, 3, 146, 146, (6,180): 146, 146, 195, 3, 49, 156, 156, 66, 195, 72, 18, 72, 195, (6,193): 185, 221, 18, 195, 33, 117, 221, 156, 104, 252, 27, 175, 2, (6,206): 195, 14, 195, 80, 72, 186, 133, 177, 177, 34, 182, 49, 3, (6,219): 3, 195, 146, 116, 221, 79, 18, 221, 128, 128, 128, 11, 128, (6,232): 128, 11, 128, 224, 72, 108, 108, 116, 221, 46, 185, 221, (6,244): 128, 221, 79, 128, 33, 79, 33, 33, 79, 79, 79, 33, 33, 33, (6,258): 232, 33, 232, 35, 79, 18, 18, 195, 66, 72, 18, 221, 221, (6,271): 79, 195, 72, 116, 46, 221, 116, 72, 146, 108, 181, 181, (6,283): 108, 182, 220, 49, 186, 146, 146, 49, 234, 49, 46, 221, 79, (6,296): 72, 128, 11, 245, 128, 128, 221, 72, 128, 79, 49, 195, 79, (6,309): 88, 88, 128, 33, 119, 35, 35, 117, 117, 35, 117, 35, 35, (6,322): 35, 117, 117, 117, 128, 35, 128, 33, 79, 119, 35, 35, 35, (6,335): 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (6,348): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 201, 117, 119, (6,361): 119, 117, 201, 117, 119, 201, 180, 119, 35, 35, 117, 117, (6,373): 117, 117, (7,0): 79, 79, 119, 14, 14, 195, 88, 33, 156, 186, 195, 33, 14, 108, (7,14): 146, 79, 72, 185, 195, 14, 14, 28, 14, 79, 232, 204, 241, (7,27): 204, 79, 55, 18, 66, 28, 231, 180, 28, 234, 195, 204, 195, (7,40): 104, 63, 156, 72, 221, 128, 33, 221, 2, 108, 220, 79, 49, 3, (7,54): 156, 50, 63, 63, 156, 138, 138, 49, 78, 105, 181, 100, 72, (7,67): 186, 195, 49, 156, 63, 180, 108, 108, 156, 72, 116, 186, (7,79): 186, 220, 24, 27, 63, 104, 252, 28, 185, 185, 33, 119, 119, (7,92): 35, 201, 117, 201, 117, 117, 35, 35, 119, 119, 33, 33, 33, (7,105): 55, 33, 55, 119, 119, 119, 185, 119, 232, 232, 232, 119, (7,117): 55, 79, 79, 185, 33, 185, 66, 219, 185, 185, 204, 233, 103, (7,130): 125, 71, 185, 120, 79, 119, 117, 33, 33, 33, 195, 104, 63, (7,143): 253, 123, 64, 37, 175, 180, 223, 105, 14, 105, 14, 63, 195, (7,156): 108, 195, 2, 252, 15, 206, 75, 238, 198, 15, 45, 248, 214, (7,169): 53, 24, 33, 33, 220, 220, 224, 111, 146, 182, 234, 49, 146, (7,182): 146, 72, 234, 49, 66, 195, 18, 79, 79, 79, 185, 186, 128, (7,195): 35, 33, 185, 33, 33, 33, 14, 186, 195, 100, 2, 220, 253, (7,208): 27, 138, 181, 37, 12, 182, 124, 12, 50, 133, 3, 72, 80, (7,221): 234, 234, 195, 116, 72, 72, 116, 221, 221, 79, 72, 33, 11, (7,234): 117, 33, 116, 100, 108, 79, 156, 221, 117, 33, 11, 117, 33, (7,247): 79, 79, 33, 33, 33, 79, 79, 79, 55, 33, 232, 33, 33, 33, (7,261): 33, 18, 66, 116, 66, 14, 234, 72, 18, 18, 72, 195, 72, 116, (7,275): 116, 116, 186, 49, 156, 156, 181, 2, 138, 108, 105, 78, 49, (7,288): 146, 72, 49, 234, 49, 72, 116, 195, 234, 46, 128, 33, 224, (7,301): 128, 11, 128, 11, 11, 128, 79, 116, 33, 128, 33, 128, 128, (7,314): 35, 35, 35, 35, 117, 117, 35, 117, 117, 117, 117, 117, 35, (7,327): 35, 35, 33, 79, 33, 128, 117, 128, 35, 35, 117, 35, 117, (7,340): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (7,353): 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, 119, 117, (7,365): 119, 201, 252, 119, 33, 35, 117, 117, 117, 117, (8,0): 185, 18, 195, 125, 186, 185, 33, 117, 241, 14, 186, 156, 72, (8,13): 66, 156, 100, 156, 66, 33, 66, 63, 187, 66, 119, 33, 241, (8,26): 100, 241, 185, 79, 71, 18, 100, 28, 28, 14, 241, 204, 185, (8,39): 79, 195, 195, 195, 72, 195, 195, 186, 221, 186, 185, 186, (8,51): 72, 195, 186, 195, 183, 105, 222, 146, 63, 176, 50, 3, 156, (8,64): 156, 156, 195, 66, 49, 185, 116, 50, 63, 50, 14, 49, 185, (8,77): 72, 66, 72, 72, 253, 180, 2, 180, 66, 156, 33, 125, 125, 79, (8,91): 119, 35, 140, 117, 117, 117, 35, 35, 35, 35, 128, 55, 119, (8,104): 119, 119, 119, 33, 201, 119, 125, 201, 185, 232, 139, 33, (8,116): 119, 185, 140, 125, 185, 232, 33, 185, 33, 128, 33, 18, 14, (8,129): 28, 38, 62, 15, 175, 28, 79, 201, 185, 35, 79, 125, 27, (8,142): 252, 220, 220, 181, 64, 64, 105, 66, 180, 146, 180, 104, (8,154): 27, 156, 100, 63, 63, 153, 142, 163, 196, 196, 7, 60, 74, (8,167): 15, 214, 89, 93, 207, 175, 37, 37, 105, 3, 80, 182, 133, (8,180): 49, 50, 50, 146, 49, 72, 72, 18, 72, 72, 33, 245, 79, 33, (8,194): 35, 117, 221, 33, 33, 79, 185, 33, 66, 185, 195, 14, 2, (8,207): 156, 183, 50, 49, 78, 3, 3, 181, 183, 137, 91, 138, 156, (8,220): 80, 234, 3, 116, 221, 18, 195, 195, 79, 33, 79, 72, 156, (8,233): 66, 186, 79, 116, 186, 18, 186, 33, 117, 11, 117, 128, 33, (8,246): 79, 79, 33, 79, 33, 232, 232, 33, 55, 35, 232, 79, 185, 18, (8,260): 79, 79, 79, 72, 18, 18, 116, 79, 79, 33, 221, 221, 128, (8,273): 195, 116, 72, 186, 46, 156, 186, 146, 50, 50, 220, 156, 80, (8,286): 182, 146, 186, 182, 220, 234, 72, 72, 50, 49, 146, 116, (8,298): 146, 3, 49, 221, 46, 221, 88, 11, 33, 128, 128, 128, 128, (8,311): 35, 128, 35, 117, 117, 119, 35, 117, 35, 35, 117, 11, 35, (8,324): 11, 35, 117, 35, 128, 33, 33, 35, 117, 117, 117, 35, 117, (8,337): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (8,350): 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 119, 119, 140, (8,363): 140, 119, 139, 33, 24, 119, 35, 35, 117, 117, 201, 117, (9,0): 185, 18, 18, 185, 185, 33, 128, 35, 128, 125, 79, 195, 33, (9,13): 185, 49, 220, 125, 195, 33, 125, 100, 93, 100, 185, 232, (9,25): 195, 100, 66, 236, 236, 33, 79, 241, 14, 62, 66, 204, 18, (9,38): 185, 185, 185, 185, 79, 33, 79, 186, 186, 79, 33, 70, 221, (9,51): 18, 156, 108, 108, 195, 50, 105, 27, 222, 78, 50, 182, 220, (9,64): 146, 49, 195, 186, 186, 186, 186, 49, 195, 66, 49, 186, 221, (9,77): 195, 220, 156, 14, 183, 252, 175, 27, 14, 14, 125, 33, 55, (9,90): 185, 55, 119, 119, 119, 55, 117, 117, 117, 117, 35, 119, 35, (9,103): 119, 35, 119, 201, 185, 185, 120, 241, 241, 55, 79, 55, 55, (9,116): 232, 38, 119, 79, 55, 232, 79, 185, 185, 185, 185, 232, 71, (9,129): 251, 62, 207, 226, 53, 207, 219, 33, 117, 117, 195, 220, (9,141): 180, 63, 156, 156, 46, 11, 108, 64, 183, 27, 91, 63, 108, (9,154): 156, 125, 156, 180, 100, 63, 251, 20, 153, 228, 20, 194, (9,166): 60, 51, 151, 89, 8, 99, 89, 89, 97, 2, 50, 182, 182, 222, (9,180): 78, 138, 50, 234, 234, 234, 234, 234, 234, 66, 79, 33, 35, (9,193): 128, 117, 210, 117, 35, 128, 221, 35, 186, 156, 14, 72, (9,205): 195, 100, 63, 195, 46, 46, 146, 182, 176, 138, 12, 177, (9,217): 141, 176, 80, 116, 49, 3, 128, 221, 116, 195, 195, 195, (9,229): 195, 195, 66, 100, 156, 72, 33, 128, 33, 221, 79, 33, 128, (9,242): 117, 117, 35, 33, 79, 79, 33, 33, 232, 245, 232, 33, 79, (9,255): 33, 79, 18, 204, 18, 33, 79, 79, 18, 66, 49, 66, 195, 116, (9,269): 116, 79, 116, 33, 72, 186, 46, 221, 221, 3, 186, 50, 181, (9,282): 181, 105, 181, 50, 50, 146, 49, 182, 116, 116, 49, 222, 78, (9,295): 80, 46, 46, 46, 72, 3, 3, 46, 116, 186, 116, 46, 128, 11, (9,309): 117, 88, 117, 33, 117, 117, 117, 35, 117, 117, 35, 117, 35, (9,322): 35, 117, 35, 117, 117, 35, 35, 119, 33, 128, 35, 117, 117, (9,335): 35, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (9,348): 35, 117, 35, 117, 35, 117, 117, 35, 117, 35, 117, 117, 139, (9,361): 117, 117, 119, 35, 140, 119, 219, 35, 35, 35, 117, 117, (9,373): 117, 35, (10,0): 18, 185, 79, 232, 232, 119, 33, 119, 33, 195, 195, 14, 195, (10,13): 195, 14, 187, 72, 195, 35, 35, 18, 63, 204, 88, 245, 185, (10,26): 241, 66, 79, 33, 236, 55, 204, 204, 204, 18, 185, 185, 18, (10,39): 185, 33, 79, 119, 35, 128, 33, 186, 185, 221, 63, 33, 156, (10,52): 121, 79, 195, 181, 63, 156, 181, 195, 50, 80, 50, 222, 156, (10,65): 195, 72, 221, 33, 186, 195, 185, 116, 195, 156, 66, 186, (10,77): 156, 108, 14, 108, 183, 175, 37, 97, 2, 14, 186, 185, 79, (10,90): 219, 185, 33, 55, 147, 117, 117, 117, 117, 35, 117, 35, (10,102): 117, 117, 185, 125, 125, 241, 153, 100, 194, 62, 71, 219, (10,114): 233, 100, 20, 62, 55, 232, 55, 185, 18, 219, 195, 100, 14, (10,127): 125, 185, 38, 66, 28, 93, 246, 28, 185, 185, 66, 195, 35, (10,140): 221, 63, 181, 72, 156, 63, 186, 46, 220, 50, 220, 108, (10,152): 100, 156, 156, 108, 156, 180, 66, 241, 62, 194, 60, 233, (10,164): 71, 233, 20, 231, 53, 214, 249, 249, 89, 89, 178, 177, (10,176): 183, 124, 78, 91, 91, 63, 50, 50, 50, 100, 108, 100, 14, (10,189): 204, 33, 128, 33, 186, 79, 117, 88, 210, 88, 117, 128, (10,201): 185, 79, 156, 125, 72, 185, 156, 97, 123, 72, 176, 223, (10,213): 181, 138, 90, 90, 176, 138, 222, 182, 116, 111, 46, 128, (10,225): 128, 221, 116, 18, 72, 18, 116, 66, 18, 79, 232, 35, 128, (10,238): 33, 79, 128, 35, 35, 35, 128, 33, 33, 79, 33, 232, 35, (10,251): 232, 33, 55, 79, 18, 18, 185, 79, 79, 232, 232, 33, 33, (10,264): 66, 195, 195, 72, 116, 116, 116, 186, 116, 72, 49, 195, (10,276): 49, 108, 2, 176, 181, 105, 105, 176, 253, 78, 105, 181, (10,288): 63, 105, 49, 146, 124, 183, 137, 34, 50, 222, 133, 138, (10,300): 50, 182, 46, 46, 224, 11, 128, 128, 128, 33, 128, 33, 35, (10,313): 35, 117, 117, 117, 140, 117, 119, 117, 35, 117, 117, 128, (10,325): 117, 128, 117, 117, 128, 33, 33, 128, 35, 117, 35, 117, (10,337): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (10,350): 117, 35, 117, 35, 117, 117, 35, 117, 35, 35, 117, 201, (10,362): 185, 185, 201, 117, 139, 117, 119, 35, 35, 117, 117, 117, (10,374): 35, (11,0): 18, 185, 79, 232, 35, 232, 128, 119, 128, 72, 125, 156, 195, (11,13): 185, 66, 108, 28, 63, 185, 33, 79, 241, 33, 88, 139, 79, (11,26): 66, 204, 71, 33, 79, 236, 204, 204, 71, 71, 185, 71, 185, (11,39): 185, 119, 33, 33, 33, 33, 33, 33, 33, 79, 195, 2, 14, 121, (11,53): 63, 49, 175, 105, 195, 63, 80, 105, 50, 49, 156, 156, 186, (11,66): 72, 185, 128, 79, 195, 186, 33, 156, 180, 63, 100, 63, 2, (11,79): 220, 63, 183, 27, 121, 97, 27, 187, 100, 186, 119, 195, (11,91): 185, 125, 66, 35, 117, 35, 117, 35, 35, 117, 117, 117, 140, (11,104): 119, 120, 119, 251, 157, 53, 53, 84, 192, 237, 45, 229, (11,116): 237, 24, 38, 233, 236, 185, 71, 125, 219, 62, 100, 241, (11,128): 219, 219, 71, 125, 62, 28, 241, 33, 241, 33, 33, 35, 195, (11,141): 108, 123, 121, 156, 91, 138, 195, 128, 195, 156, 63, 195, (11,153): 66, 2, 192, 14, 100, 14, 14, 153, 194, 62, 71, 71, 243, (11,166): 219, 20, 207, 248, 214, 37, 214, 214, 89, 216, 64, 176, (11,178): 176, 183, 183, 138, 234, 220, 220, 220, 108, 220, 66, 116, (11,190): 33, 232, 33, 66, 195, 128, 35, 88, 88, 210, 35, 186, 33, (11,203): 79, 185, 221, 35, 79, 186, 50, 222, 156, 12, 216, 138, (11,215): 105, 12, 34, 124, 105, 124, 182, 146, 80, 116, 186, 46, (11,227): 116, 186, 72, 18, 185, 79, 33, 33, 33, 33, 33, 33, 128, (11,240): 35, 35, 35, 232, 232, 232, 232, 232, 232, 35, 33, 79, 18, (11,253): 79, 55, 79, 79, 55, 232, 232, 232, 33, 33, 33, 116, 79, (11,266): 116, 79, 221, 79, 186, 72, 108, 156, 50, 195, 49, 180, (11,278): 181, 253, 123, 27, 105, 91, 176, 63, 78, 63, 108, 176, (11,290): 138, 234, 181, 12, 12, 137, 22, 138, 124, 137, 91, 34, (11,302): 182, 80, 80, 72, 116, 46, 128, 11, 11, 88, 35, 117, 117, (11,315): 35, 35, 140, 35, 55, 117, 11, 117, 35, 117, 117, 117, 35, (11,328): 35, 128, 33, 119, 128, 117, 117, 35, 117, 117, 35, 117, (11,340): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (11,353): 117, 117, 35, 35, 117, 35, 117, 35, 119, 125, 125, 119, (11,365): 201, 119, 140, 35, 35, 117, 35, 117, 117, 35, (12,0): 185, 185, 79, 232, 35, 35, 232, 117, 35, 33, 119, 186, 125, (12,13): 221, 195, 156, 180, 100, 185, 186, 185, 195, 79, 79, 117, (12,25): 33, 185, 79, 79, 55, 33, 236, 18, 243, 18, 71, 236, 204, (12,38): 204, 71, 33, 55, 33, 55, 119, 119, 33, 79, 33, 33, 14, 49, (12,52): 125, 27, 33, 220, 27, 181, 63, 195, 195, 156, 186, 156, (12,64): 156, 185, 186, 195, 128, 117, 221, 185, 186, 156, 180, 253, (12,76): 180, 187, 187, 63, 187, 91, 187, 105, 27, 123, 70, 183, 28, (12,89): 195, 195, 219, 14, 100, 185, 117, 117, 117, 117, 117, 117, (12,101): 117, 117, 201, 117, 55, 140, 35, 142, 193, 214, 89, 248, (12,113): 16, 248, 53, 237, 15, 237, 246, 233, 233, 62, 100, 241, (12,125): 62, 241, 251, 185, 236, 125, 38, 100, 231, 100, 66, 63, (12,137): 18, 79, 128, 66, 100, 223, 37, 37, 177, 27, 176, 186, 116, (12,150): 33, 221, 79, 195, 187, 28, 156, 62, 180, 24, 28, 204, 185, (12,163): 55, 185, 233, 38, 194, 246, 214, 95, 84, 226, 214, 178, (12,175): 37, 183, 253, 91, 183, 253, 108, 234, 220, 195, 234, 234, (12,187): 66, 18, 79, 33, 79, 88, 33, 79, 35, 128, 128, 117, 210, (12,200): 88, 185, 195, 33, 186, 221, 185, 195, 72, 105, 72, 234, (12,212): 182, 105, 176, 138, 12, 141, 90, 138, 50, 124, 181, 80, (12,224): 146, 3, 186, 116, 33, 79, 116, 18, 79, 33, 232, 33, 79, (12,237): 221, 128, 245, 117, 35, 232, 33, 33, 232, 232, 35, 35, 35, (12,250): 232, 204, 18, 79, 232, 232, 232, 232, 35, 139, 232, 33, (12,262): 79, 79, 79, 79, 79, 116, 116, 72, 146, 49, 100, 156, 220, (12,275): 186, 146, 180, 63, 105, 183, 253, 78, 91, 183, 138, 50, (12,287): 146, 156, 105, 78, 182, 78, 124, 105, 137, 22, 22, 34, 91, (12,300): 12, 138, 50, 182, 2, 50, 116, 224, 128, 128, 117, 35, 117, (12,313): 35, 35, 35, 35, 139, 119, 79, 117, 35, 35, 117, 128, 117, (12,326): 117, 11, 33, 33, 55, 33, 35, 117, 117, 35, 117, 35, 117, (12,339): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (12,352): 117, 35, 117, 117, 35, 117, 35, 201, 117, 117, 55, 33, (12,364): 140, 117, 119, 140, 35, 35, 35, 117, 117, 117, 117, (13,0): 33, 185, 33, 33, 232, 232, 35, 117, 232, 117, 128, 185, 156, (13,13): 195, 220, 28, 156, 195, 232, 33, 79, 18, 232, 185, 117, (13,25): 232, 79, 33, 55, 232, 232, 55, 236, 71, 71, 71, 243, 38, (13,38): 38, 204, 71, 55, 119, 35, 35, 119, 33, 185, 100, 33, 156, (13,51): 104, 14, 220, 195, 180, 123, 252, 156, 156, 220, 66, 186, (13,63): 14, 156, 195, 195, 66, 186, 117, 33, 186, 66, 156, 63, 63, (13,76): 220, 220, 63, 108, 181, 104, 105, 63, 253, 27, 183, 253, (13,88): 104, 108, 125, 195, 14, 100, 66, 55, 88, 88, 88, 117, 117, (13,101): 35, 35, 119, 35, 125, 201, 139, 113, 24, 157, 25, 45, 75, (13,114): 16, 59, 74, 84, 59, 53, 74, 24, 192, 188, 142, 28, 241, (13,127): 125, 71, 185, 219, 251, 14, 24, 187, 24, 100, 100, 14, (13,139): 221, 128, 146, 63, 50, 91, 253, 64, 91, 116, 221, 79, 72, (13,152): 185, 18, 180, 14, 28, 28, 28, 14, 180, 125, 79, 18, 241, (13,165): 62, 62, 231, 58, 93, 229, 229, 89, 178, 15, 180, 180, 105, (13,178): 104, 176, 253, 181, 78, 180, 220, 14, 66, 72, 116, 33, 33, (13,191): 128, 147, 11, 35, 88, 128, 119, 88, 88, 88, 33, 186, 128, (13,204): 66, 66, 220, 195, 49, 245, 80, 105, 78, 78, 133, 124, 34, (13,217): 137, 137, 124, 203, 91, 176, 222, 50, 80, 72, 46, 117, 11, (13,230): 245, 35, 35, 35, 117, 128, 33, 33, 128, 35, 245, 35, 33, (13,243): 55, 232, 232, 117, 245, 35, 35, 232, 33, 33, 35, 232, 232, (13,256): 232, 139, 245, 245, 245, 232, 33, 33, 33, 33, 116, 186, (13,268): 186, 72, 49, 49, 195, 49, 156, 156, 220, 181, 181, 181, (13,280): 50, 49, 186, 108, 105, 138, 50, 146, 80, 220, 182, 182, (13,292): 138, 78, 22, 124, 124, 203, 124, 22, 222, 3, 133, 234, 80, (13,305): 116, 224, 221, 186, 79, 221, 33, 11, 117, 35, 35, 201, (13,317): 119, 119, 55, 35, 117, 35, 117, 117, 117, 35, 35, 33, 185, (13,330): 33, 128, 117, 117, 11, 35, 35, 117, 35, 117, 35, 117, 35, (13,343): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 117, 35, (13,356): 117, 35, 117, 117, 35, 117, 119, 201, 117, 201, 119, 35, (13,368): 117, 35, 117, 35, 117, 35, 117, (14,0): 119, 232, 55, 232, 232, 128, 232, 232, 88, 117, 35, 33, 195, (14,13): 33, 14, 63, 156, 241, 128, 33, 185, 195, 79, 33, 139, 35, (14,26): 232, 55, 33, 232, 232, 55, 55, 236, 243, 204, 233, 233, (14,38): 233, 38, 125, 55, 35, 201, 232, 35, 119, 119, 33, 33, 14, (14,51): 156, 66, 33, 108, 66, 2, 253, 100, 104, 99, 108, 185, 195, (14,64): 66, 66, 156, 66, 49, 186, 185, 195, 14, 195, 156, 14, 66, (14,77): 125, 195, 66, 50, 181, 253, 253, 183, 183, 253, 104, 104, (14,89): 24, 185, 185, 66, 241, 187, 63, 119, 35, 35, 117, 117, 35, (14,102): 119, 119, 0, 201, 232, 185, 120, 38, 237, 84, 60, 7, 45, (14,115): 75, 149, 15, 198, 229, 142, 23, 25, 53, 157, 15, 28, 71, (14,128): 219, 71, 185, 204, 185, 233, 180, 28, 100, 33, 128, 66, (14,140): 186, 33, 186, 108, 186, 108, 64, 2, 195, 186, 79, 72, 66, (14,153): 18, 241, 241, 180, 231, 18, 33, 100, 156, 241, 241, 241, (14,165): 14, 194, 24, 24, 58, 246, 15, 15, 84, 207, 28, 100, 108, (14,178): 63, 253, 104, 253, 253, 104, 180, 108, 234, 66, 18, 116, (14,190): 33, 35, 128, 33, 35, 11, 35, 117, 210, 88, 117, 88, 35, (14,203): 33, 66, 220, 14, 18, 220, 78, 234, 50, 80, 222, 34, 124, (14,216): 176, 12, 12, 137, 90, 137, 91, 176, 181, 138, 156, 186, (14,228): 224, 117, 35, 128, 210, 245, 33, 79, 79, 46, 79, 33, 232, (14,241): 232, 55, 232, 35, 117, 117, 117, 245, 35, 35, 245, 140, (14,253): 35, 35, 35, 245, 139, 245, 140, 245, 245, 245, 35, 128, (14,265): 33, 79, 116, 116, 186, 72, 195, 186, 50, 63, 63, 50, 49, (14,278): 49, 186, 50, 156, 3, 50, 138, 108, 50, 146, 49, 224, 72, (14,291): 234, 138, 22, 80, 22, 124, 22, 182, 133, 133, 133, 50, (14,303): 124, 182, 186, 221, 46, 46, 221, 88, 210, 35, 117, 117, (14,315): 119, 232, 119, 139, 119, 117, 35, 117, 128, 117, 35, 117, (14,327): 35, 33, 33, 79, 33, 35, 117, 117, 117, 117, 35, 117, 35, (14,340): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (14,353): 35, 117, 35, 35, 117, 35, 35, 35, 119, 117, 117, 201, 117, (14,366): 117, 119, 35, 117, 35, 117, 117, 117, 117, (15,0): 35, 232, 232, 35, 35, 232, 33, 33, 117, 35, 79, 79, 185, 88, (15,14): 66, 63, 66, 66, 119, 35, 33, 66, 55, 245, 35, 35, 33, 236, (15,28): 79, 236, 232, 232, 236, 71, 204, 233, 62, 62, 62, 38, 204, (15,41): 185, 55, 33, 55, 119, 140, 245, 128, 35, 33, 18, 186, 195, (15,54): 195, 33, 185, 27, 2, 49, 104, 33, 72, 79, 221, 66, 195, (15,67): 125, 156, 156, 195, 66, 195, 185, 186, 156, 195, 186, 186, (15,79): 49, 14, 63, 187, 104, 27, 175, 123, 37, 97, 121, 14, 195, (15,92): 185, 128, 63, 100, 125, 186, 33, 128, 35, 117, 117, 35, (15,104): 119, 245, 139, 125, 71, 219, 192, 198, 237, 31, 237, 238, (15,116): 196, 60, 7, 75, 188, 152, 151, 214, 151, 89, 152, 153, (15,128): 204, 236, 18, 71, 119, 185, 66, 66, 14, 49, 185, 195, 128, (15,141): 186, 66, 220, 253, 108, 2, 105, 177, 104, 72, 186, 14, (15,153): 195, 33, 18, 241, 14, 139, 185, 79, 195, 14, 66, 18, 233, (15,166): 241, 231, 20, 15, 53, 237, 62, 207, 231, 62, 234, 146, (15,178): 234, 63, 253, 180, 2, 176, 63, 100, 234, 49, 66, 66, 116, (15,191): 79, 128, 33, 35, 11, 117, 88, 147, 128, 117, 88, 33, 156, (15,204): 221, 72, 72, 186, 221, 18, 221, 72, 234, 181, 50, 176, (15,216): 137, 90, 137, 176, 34, 91, 34, 222, 50, 49, 72, 46, 33, (15,229): 128, 128, 232, 35, 79, 66, 234, 66, 72, 79, 33, 33, 33, (15,242): 232, 35, 245, 140, 245, 139, 140, 232, 232, 245, 245, 117, (15,254): 232, 35, 245, 35, 139, 245, 139, 245, 245, 232, 245, 128, (15,266): 33, 221, 116, 116, 3, 72, 128, 63, 105, 183, 180, 49, 220, (15,279): 195, 3, 156, 50, 176, 27, 176, 253, 108, 50, 46, 234, 138, (15,292): 124, 124, 22, 34, 12, 34, 80, 222, 133, 182, 182, 78, 91, (15,305): 156, 224, 117, 11, 35, 128, 33, 35, 35, 117, 232, 232, (15,317): 119, 35, 117, 35, 35, 117, 117, 117, 128, 117, 35, 35, 33, (15,330): 33, 33, 128, 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, (15,343): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 117, (15,355): 117, 35, 117, 35, 117, 35, 119, 140, 88, 55, 117, 140, (15,367): 119, 201, 117, 117, 35, 201, 117, 117, (16,0): 232, 245, 245, 232, 128, 55, 33, 232, 232, 185, 79, 35, 128, (16,13): 185, 125, 100, 241, 79, 35, 185, 232, 125, 33, 140, 35, (16,25): 232, 33, 33, 55, 232, 232, 232, 35, 185, 38, 66, 38, 66, (16,38): 38, 38, 38, 71, 185, 55, 232, 232, 117, 117, 119, 33, 33, (16,51): 185, 79, 185, 186, 72, 66, 186, 63, 14, 220, 72, 105, 49, (16,64): 108, 156, 14, 63, 63, 14, 66, 186, 125, 66, 14, 14, 185, (16,77): 33, 125, 125, 100, 14, 187, 187, 104, 27, 187, 70, 252, (16,89): 175, 63, 156, 187, 195, 156, 220, 8, 252, 121, 70, 100, (16,101): 147, 88, 79, 117, 35, 35, 139, 79, 62, 142, 237, 233, 60, (16,114): 60, 60, 60, 194, 250, 163, 149, 23, 59, 151, 214, 214, 89, (16,127): 248, 24, 195, 79, 204, 79, 185, 195, 14, 14, 63, 49, 128, (16,140): 186, 3, 116, 49, 66, 18, 14, 187, 64, 105, 72, 181, 181, (16,153): 181, 72, 66, 14, 100, 35, 232, 204, 38, 79, 71, 28, 153, (16,166): 153, 15, 75, 62, 231, 194, 62, 28, 38, 241, 241, 66, 66, (16,179): 49, 220, 156, 105, 223, 104, 181, 234, 72, 72, 116, 33, (16,191): 128, 221, 33, 128, 11, 88, 11, 88, 11, 88, 11, 33, 195, (16,204): 186, 195, 220, 100, 72, 79, 33, 79, 195, 234, 241, 49, (16,216): 181, 253, 63, 220, 181, 63, 234, 50, 220, 195, 79, 186, (16,228): 72, 221, 33, 221, 195, 220, 234, 79, 72, 79, 128, 79, 33, (16,241): 232, 232, 232, 117, 117, 245, 245, 35, 117, 245, 117, 117, (16,253): 35, 245, 245, 245, 245, 245, 245, 35, 232, 33, 232, 128, (16,265): 128, 33, 116, 72, 195, 186, 49, 46, 49, 63, 78, 49, 50, (16,278): 46, 186, 146, 63, 220, 146, 63, 105, 183, 50, 182, 146, (16,290): 234, 105, 50, 105, 12, 12, 36, 12, 124, 222, 34, 78, 80, (16,303): 146, 72, 79, 128, 128, 128, 35, 11, 88, 35, 35, 117, 35, (16,316): 35, 35, 139, 35, 117, 117, 117, 117, 117, 117, 117, 117, (16,328): 35, 33, 119, 119, 35, 117, 35, 35, 117, 35, 117, 35, 117, (16,341): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, (16,354): 128, 35, 117, 35, 119, 185, 119, 35, 117, 35, 119, 33, (16,366): 119, 117, 117, 117, 117, 117, 35, 117, 117, (17,0): 79, 35, 35, 33, 232, 232, 128, 232, 35, 79, 33, 33, 119, 79, (17,14): 185, 14, 187, 241, 18, 204, 232, 185, 33, 35, 35, 232, 232, (17,27): 55, 128, 232, 35, 232, 35, 33, 18, 241, 38, 125, 204, 38, (17,40): 38, 219, 18, 71, 33, 33, 128, 35, 35, 35, 119, 33, 79, 186, (17,54): 18, 195, 33, 49, 33, 221, 181, 37, 175, 186, 99, 183, 63, (17,67): 252, 108, 180, 100, 63, 14, 220, 100, 100, 66, 66, 125, (17,79): 119, 195, 125, 14, 156, 100, 28, 156, 63, 252, 253, 253, (17,91): 63, 63, 253, 180, 195, 121, 249, 121, 70, 2, 156, 79, 117, (17,104): 33, 119, 117, 140, 119, 219, 62, 62, 251, 20, 251, 251, (17,116): 102, 251, 250, 110, 206, 23, 211, 238, 16, 189, 95, 249, (17,128): 100, 66, 100, 252, 104, 100, 156, 14, 253, 253, 14, 46, (17,140): 195, 49, 156, 180, 18, 24, 234, 116, 234, 220, 80, 46, 72, (17,153): 64, 253, 72, 79, 100, 38, 185, 38, 28, 194, 28, 58, 142, (17,166): 60, 60, 28, 74, 142, 20, 194, 142, 219, 125, 66, 66, 72, (17,179): 195, 156, 63, 183, 97, 223, 176, 50, 72, 72, 116, 128, 33, (17,192): 72, 116, 221, 33, 221, 33, 11, 88, 117, 11, 128, 186, 185, (17,205): 186, 195, 72, 18, 185, 79, 79, 185, 18, 18, 18, 187, 104, (17,218): 108, 156, 220, 220, 156, 63, 241, 195, 18, 18, 195, 72, (17,230): 116, 33, 72, 234, 72, 221, 79, 79, 128, 79, 35, 232, 35, (17,243): 35, 35, 139, 117, 245, 232, 117, 245, 140, 117, 245, 245, (17,255): 245, 139, 245, 245, 245, 232, 232, 33, 128, 35, 33, 221, (17,267): 195, 108, 50, 156, 49, 195, 72, 146, 156, 195, 50, 195, (17,279): 156, 105, 220, 181, 176, 216, 220, 91, 175, 105, 3, 46, (17,291): 46, 46, 234, 183, 137, 141, 97, 89, 90, 12, 105, 22, 50, (17,304): 116, 33, 117, 35, 35, 35, 35, 232, 232, 117, 139, 117, 35, (17,317): 35, 35, 117, 88, 117, 117, 117, 35, 117, 117, 117, 35, (17,329): 119, 128, 119, 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, (17,342): 117, 35, 117, 35, 117, 201, 117, 35, 117, 35, 117, 35, 35, (17,355): 35, 117, 117, 119, 33, 119, 117, 117, 117, 119, 33, 119, (17,367): 117, 117, 117, 35, 35, 117, 35, 117, (18,0): 195, 79, 79, 33, 245, 245, 128, 232, 245, 232, 33, 33, 185, (18,13): 33, 185, 14, 14, 241, 18, 66, 33, 79, 232, 245, 245, 35, (18,26): 232, 232, 232, 35, 35, 35, 232, 35, 79, 66, 241, 185, 71, (18,39): 38, 204, 71, 185, 79, 55, 119, 35, 117, 117, 117, 35, 35, (18,52): 33, 185, 195, 195, 156, 195, 181, 220, 223, 50, 146, 104, (18,64): 183, 252, 180, 99, 220, 63, 14, 27, 180, 180, 104, 187, (18,76): 241, 185, 66, 14, 66, 66, 14, 241, 14, 100, 156, 100, 187, (18,89): 2, 216, 37, 27, 223, 187, 33, 2, 37, 123, 70, 180, 156, 79, (18,103): 35, 35, 35, 117, 55, 219, 28, 24, 142, 20, 251, 251, 194, (18,116): 194, 251, 194, 206, 122, 211, 23, 23, 206, 188, 93, 51, (18,128): 18, 33, 66, 180, 180, 220, 14, 63, 8, 121, 104, 14, 49, (18,141): 156, 108, 27, 8, 121, 24, 123, 64, 234, 63, 105, 91, 105, (18,154): 220, 2, 252, 2, 38, 241, 14, 153, 142, 153, 60, 153, 153, (18,167): 60, 60, 196, 207, 28, 157, 152, 14, 219, 66, 66, 125, 195, (18,180): 156, 108, 183, 121, 223, 176, 91, 253, 105, 63, 46, 128, (18,192): 195, 186, 221, 185, 186, 195, 221, 128, 117, 117, 11, 128, (18,204): 221, 221, 35, 128, 33, 232, 232, 232, 79, 79, 18, 195, (18,216): 100, 220, 100, 220, 220, 156, 156, 156, 156, 241, 66, 195, (18,228): 234, 14, 49, 116, 72, 49, 18, 221, 116, 79, 33, 79, 35, (18,241): 35, 35, 245, 35, 245, 35, 117, 117, 140, 245, 140, 117, (18,253): 139, 35, 35, 232, 35, 139, 35, 232, 232, 128, 33, 33, 79, (18,266): 72, 234, 100, 220, 195, 49, 72, 186, 186, 49, 116, 72, (18,278): 186, 108, 105, 253, 27, 253, 37, 105, 183, 183, 105, 49, (18,290): 234, 234, 222, 50, 12, 176, 141, 90, 36, 105, 34, 78, 50, (18,303): 3, 72, 79, 128, 128, 35, 128, 232, 128, 232, 35, 117, 117, (18,316): 35, 35, 117, 117, 117, 117, 117, 35, 117, 35, 35, 35, 117, (18,329): 35, 119, 35, 35, 35, 35, 35, 117, 35, 117, 35, 117, 35, (18,342): 117, 201, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, (18,355): 35, 117, 117, 35, 119, 35, 117, 117, 35, 35, 35, 35, 35, (18,368): 117, 117, 35, 117, 35, 35, 117, (19,0): 220, 195, 116, 221, 128, 35, 33, 128, 117, 35, 119, 79, 185, (19,13): 119, 79, 62, 18, 219, 79, 38, 33, 232, 139, 35, 139, 35, (19,26): 232, 232, 232, 35, 35, 35, 35, 117, 119, 18, 241, 233, 66, (19,39): 233, 241, 38, 219, 125, 185, 185, 33, 35, 117, 35, 35, 33, (19,52): 33, 185, 186, 72, 100, 156, 66, 195, 183, 121, 146, 220, (19,64): 156, 49, 195, 123, 108, 63, 49, 104, 121, 63, 195, 241, 49, (19,77): 185, 79, 195, 66, 66, 66, 66, 63, 104, 104, 252, 99, 27, (19,90): 175, 27, 156, 51, 63, 221, 66, 157, 2, 187, 180, 125, 221, (19,103): 195, 128, 119, 35, 55, 185, 233, 194, 60, 251, 20, 102, (19,115): 194, 194, 251, 250, 149, 47, 149, 39, 23, 206, 246, 15, (19,127): 24, 28, 234, 14, 108, 100, 63, 104, 27, 99, 216, 121, 2, (19,140): 66, 186, 14, 183, 242, 89, 97, 214, 89, 97, 37, 177, 180, (19,153): 91, 64, 121, 8, 252, 231, 207, 24, 142, 187, 153, 20, 62, (19,166): 60, 153, 153, 153, 153, 142, 193, 95, 142, 100, 62, 241, (19,178): 66, 156, 100, 108, 180, 27, 91, 181, 64, 36, 177, 64, 49, (19,191): 128, 195, 185, 33, 79, 195, 195, 125, 186, 128, 33, 117, (19,203): 128, 125, 79, 35, 33, 245, 35, 232, 232, 232, 79, 18, 66, (19,216): 195, 186, 66, 108, 63, 63, 108, 49, 66, 195, 116, 221, (19,228): 221, 116, 186, 116, 116, 116, 46, 33, 33, 79, 128, 35, 35, (19,241): 245, 245, 245, 245, 117, 245, 35, 140, 117, 245, 35, 232, (19,253): 232, 33, 232, 35, 35, 35, 245, 245, 232, 232, 232, 128, (19,265): 116, 72, 195, 146, 72, 116, 146, 49, 156, 220, 108, 49, (19,277): 220, 146, 50, 187, 181, 108, 105, 97, 27, 138, 180, 50, (19,289): 50, 137, 36, 37, 141, 64, 91, 222, 234, 181, 78, 63, 133, (19,302): 3, 72, 49, 72, 33, 33, 128, 232, 33, 79, 128, 232, 35, 35, (19,316): 35, 35, 35, 35, 35, 117, 201, 117, 35, 35, 35, 35, 119, (19,329): 119, 119, 128, 119, 35, 35, 35, 117, 35, 117, 35, 117, 35, (19,342): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, (19,355): 35, 117, 117, 117, 35, 117, 35, 35, 35, 117, 35, 117, 35, (19,368): 117, 117, 35, 35, 35, 117, 35, (20,0): 63, 220, 195, 72, 128, 128, 33, 33, 245, 128, 232, 33, 33, (20,13): 119, 79, 241, 14, 100, 79, 185, 119, 35, 33, 79, 55, 128, (20,26): 232, 35, 35, 245, 35, 245, 117, 117, 35, 55, 241, 28, 100, (20,39): 233, 62, 241, 38, 219, 18, 185, 119, 119, 35, 128, 79, 33, (20,52): 33, 33, 79, 185, 128, 220, 108, 221, 186, 223, 105, 220, (20,64): 181, 79, 11, 180, 187, 187, 108, 180, 99, 104, 14, 49, 125, (20,77): 195, 66, 66, 156, 66, 125, 156, 93, 226, 99, 99, 89, 216, (20,90): 153, 195, 185, 28, 63, 55, 186, 180, 125, 79, 156, 128, 33, (20,103): 35, 128, 119, 35, 117, 119, 55, 125, 38, 219, 251, 251, (20,115): 251, 251, 103, 103, 31, 7, 7, 47, 83, 238, 238, 84, 207, (20,128): 104, 183, 175, 183, 187, 104, 183, 187, 104, 27, 175, 2, (20,140): 195, 33, 72, 100, 252, 178, 214, 178, 178, 37, 64, 50, (20,152): 108, 123, 89, 89, 99, 242, 51, 207, 192, 187, 188, 246, (20,164): 24, 62, 20, 194, 62, 20, 153, 153, 142, 192, 24, 194, 100, (20,177): 66, 241, 28, 180, 108, 180, 137, 183, 63, 176, 183, 137, (20,189): 64, 50, 46, 72, 185, 221, 33, 79, 186, 195, 66, 185, 186, (20,202): 79, 79, 72, 186, 79, 125, 232, 33, 33, 128, 232, 35, 33, (20,215): 186, 66, 186, 186, 14, 180, 187, 180, 14, 156, 195, 186, (20,227): 116, 33, 224, 146, 108, 49, 195, 116, 79, 79, 33, 232, 35, (20,240): 232, 35, 139, 245, 117, 245, 139, 35, 35, 232, 33, 232, (20,252): 33, 33, 55, 232, 35, 35, 245, 35, 35, 35, 128, 33, 33, 79, (20,266): 79, 72, 195, 195, 72, 49, 195, 156, 146, 220, 108, 105, (20,278): 14, 221, 220, 108, 108, 63, 177, 64, 63, 50, 220, 180, (20,290): 137, 178, 178, 178, 37, 216, 108, 116, 80, 72, 3, 46, 146, (20,303): 49, 49, 18, 79, 33, 33, 33, 33, 185, 33, 33, 232, 35, 35, (20,317): 119, 35, 35, 117, 35, 117, 117, 35, 117, 35, 35, 33, 33, (20,330): 119, 33, 55, 128, 35, 117, 35, 117, 35, 117, 35, 117, 35, (20,343): 117, 35, 117, 35, 117, 35, 117, 35, 117, 117, 35, 35, 35, (20,356): 35, 117, 117, 117, 117, 35, 35, 35, 117, 117, 117, 35, (20,368): 117, 35, 35, 35, 35, 35, 35, (21,0): 253, 222, 234, 146, 116, 221, 221, 128, 11, 232, 35, 119, (21,12): 232, 35, 33, 241, 28, 24, 33, 185, 232, 245, 55, 79, 185, (21,25): 33, 232, 139, 245, 35, 139, 35, 140, 35, 139, 232, 204, (21,37): 231, 231, 62, 204, 38, 204, 125, 219, 204, 219, 195, 185, (21,49): 185, 185, 185, 128, 119, 128, 33, 49, 221, 220, 128, 3, (21,61): 220, 50, 195, 91, 195, 186, 50, 91, 105, 187, 181, 253, 64, (21,74): 175, 180, 66, 50, 104, 252, 63, 108, 66, 28, 27, 70, 8, 8, (21,88): 104, 178, 70, 142, 63, 142, 187, 185, 18, 100, 156, 33, 33, (21,101): 147, 33, 44, 88, 117, 117, 35, 119, 55, 219, 62, 243, 251, (21,114): 103, 219, 103, 103, 102, 250, 7, 23, 83, 151, 151, 248, (21,126): 229, 51, 180, 104, 27, 91, 180, 63, 220, 18, 49, 156, 14, (21,139): 220, 241, 195, 79, 18, 100, 100, 123, 216, 89, 89, 64, 64, (21,152): 121, 253, 175, 89, 214, 242, 207, 100, 153, 28, 24, 51, (21,164): 142, 251, 38, 194, 241, 20, 62, 103, 219, 28, 180, 125, (21,176): 194, 241, 219, 14, 28, 108, 253, 121, 121, 91, 181, 181, (21,188): 105, 91, 105, 195, 72, 125, 185, 79, 119, 33, 185, 66, (21,200): 185, 125, 185, 185, 185, 185, 79, 72, 232, 232, 33, 33, (21,212): 35, 117, 128, 79, 66, 125, 186, 220, 2, 180, 220, 156, 49, (21,225): 195, 146, 146, 3, 72, 138, 64, 181, 156, 72, 116, 33, 33, (21,238): 79, 33, 232, 35, 35, 117, 245, 245, 35, 35, 232, 185, 18, (21,251): 33, 232, 33, 232, 245, 35, 35, 35, 35, 232, 232, 79, 79, (21,264): 72, 18, 116, 195, 108, 220, 72, 186, 116, 49, 116, 49, (21,276): 156, 105, 108, 186, 186, 156, 91, 220, 177, 175, 104, 63, (21,288): 63, 2, 2, 64, 183, 223, 36, 178, 105, 49, 234, 46, 46, 72, (21,302): 49, 46, 49, 18, 116, 79, 33, 33, 33, 33, 185, 33, 33, 35, (21,316): 232, 35, 119, 119, 35, 35, 117, 117, 117, 35, 35, 35, 119, (21,329): 33, 55, 33, 33, 33, 119, 35, 117, 35, 117, 35, 117, 35, (21,342): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 117, 35, (21,355): 35, 35, 35, 117, 117, 117, 35, 35, 35, 117, 117, 117, 117, (21,368): 35, 201, 35, 35, 35, 35, 35, (22,0): 183, 181, 50, 182, 3, 116, 116, 128, 245, 33, 33, 232, 232, (22,13): 232, 185, 38, 180, 24, 55, 185, 33, 139, 232, 232, 204, (22,25): 204, 232, 35, 245, 245, 35, 35, 245, 139, 35, 232, 18, 62, (22,38): 28, 28, 62, 241, 38, 38, 241, 100, 28, 231, 66, 125, 33, (22,51): 119, 128, 128, 128, 35, 128, 195, 221, 195, 210, 49, 186, (22,63): 49, 50, 49, 50, 108, 63, 108, 253, 104, 63, 180, 63, 50, (22,76): 220, 104, 104, 108, 180, 180, 156, 63, 2, 100, 100, 28, 14, (22,89): 175, 8, 93, 192, 51, 93, 252, 28, 63, 252, 253, 186, 128, (22,102): 186, 33, 35, 117, 117, 88, 140, 139, 35, 120, 71, 38, 103, (22,115): 20, 153, 153, 74, 127, 23, 211, 115, 151, 151, 214, 151, (22,127): 53, 220, 220, 220, 220, 72, 72, 18, 221, 185, 186, 66, 14, (22,140): 234, 18, 18, 79, 66, 14, 252, 252, 223, 214, 121, 175, (22,152): 104, 2, 175, 216, 89, 93, 100, 219, 219, 38, 219, 241, (22,164): 194, 219, 219, 194, 62, 194, 66, 38, 100, 196, 24, 241, (22,176): 24, 24, 194, 241, 14, 100, 187, 64, 37, 141, 2, 124, 105, (22,189): 183, 90, 195, 72, 204, 18, 79, 119, 232, 33, 33, 185, 33, (22,202): 33, 185, 119, 232, 33, 79, 117, 232, 33, 33, 232, 128, 33, (22,215): 185, 221, 18, 195, 14, 187, 63, 156, 220, 50, 108, 138, (22,227): 108, 49, 146, 50, 253, 108, 186, 221, 79, 128, 33, 236, (22,239): 33, 35, 35, 245, 245, 117, 139, 232, 232, 79, 18, 185, 55, (22,252): 35, 232, 35, 245, 117, 35, 35, 35, 232, 128, 185, 18, 14, (22,265): 234, 195, 195, 220, 234, 146, 72, 195, 108, 156, 63, 50, (22,277): 180, 105, 63, 156, 221, 50, 156, 123, 63, 78, 253, 180, (22,289): 63, 220, 220, 108, 63, 253, 64, 50, 50, 64, 253, 234, 116, (22,302): 3, 128, 195, 18, 18, 186, 79, 33, 128, 33, 79, 33, 33, 35, (22,316): 35, 35, 35, 35, 117, 117, 117, 140, 117, 117, 35, 35, 119, (22,329): 119, 128, 55, 33, 55, 119, 35, 117, 35, 117, 35, 117, 35, (22,342): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 117, 35, (22,355): 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 117, (22,368): 117, 35, 35, 35, 35, 35, 35, (23,0): 137, 34, 222, 50, 49, 72, 46, 35, 11, 79, 79, 33, 55, 79, (23,14): 125, 66, 70, 175, 79, 55, 232, 245, 33, 79, 241, 204, 33, (23,27): 35, 139, 245, 245, 35, 139, 245, 35, 55, 236, 204, 241, 28, (23,40): 100, 62, 204, 18, 18, 18, 38, 66, 14, 125, 33, 117, 35, (23,53): 119, 128, 35, 221, 79, 11, 186, 3, 128, 128, 195, 156, 156, (23,66): 220, 49, 72, 49, 181, 253, 180, 50, 220, 63, 108, 50, 100, (23,79): 156, 187, 187, 100, 187, 187, 66, 156, 14, 51, 66, 93, 157, (23,92): 249, 8, 25, 226, 51, 195, 2, 123, 66, 186, 33, 128, 128, (23,105): 117, 117, 119, 119, 119, 119, 79, 71, 236, 103, 24, 246, (23,117): 15, 110, 45, 69, 56, 56, 56, 56, 151, 151, 37, 14, 3, 116, (23,131): 186, 221, 128, 33, 116, 18, 72, 14, 100, 18, 232, 33, 55, (23,144): 79, 33, 241, 234, 24, 121, 27, 180, 220, 66, 27, 249, 37, (23,157): 180, 38, 120, 185, 241, 219, 125, 62, 241, 125, 241, 185, (23,169): 62, 38, 194, 192, 180, 28, 192, 198, 226, 246, 100, 66, (23,181): 100, 180, 253, 37, 177, 138, 63, 78, 91, 36, 234, 18, 18, (23,194): 125, 185, 33, 119, 35, 201, 33, 117, 55, 185, 33, 55, 185, (23,207): 119, 232, 33, 33, 33, 33, 33, 79, 186, 33, 66, 195, 66, (23,220): 63, 100, 63, 175, 64, 121, 36, 183, 138, 80, 146, 3, 50, (23,233): 186, 186, 66, 195, 66, 66, 18, 35, 139, 245, 117, 245, (23,245): 232, 232, 128, 55, 79, 79, 35, 245, 35, 232, 35, 140, 245, (23,258): 245, 245, 35, 33, 79, 18, 66, 234, 195, 72, 72, 72, 195, (23,271): 108, 220, 108, 195, 108, 108, 63, 63, 50, 49, 186, 186, (23,283): 11, 195, 105, 63, 156, 63, 234, 49, 18, 50, 14, 181, 183, (23,296): 175, 49, 50, 156, 146, 46, 116, 46, 33, 33, 79, 186, 72, (23,309): 72, 18, 195, 185, 33, 128, 35, 128, 35, 35, 35, 35, 117, (23,322): 117, 140, 117, 117, 117, 35, 35, 117, 35, 119, 33, 33, 33, (23,335): 119, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (23,348): 35, 117, 35, 117, 35, 35, 117, 117, 35, 35, 35, 35, 119, (23,361): 35, 35, 117, 35, 35, 35, 117, 35, 117, 35, 35, 35, 35, 35, (24,0): 137, 50, 176, 176, 50, 50, 116, 224, 79, 117, 33, 18, 232, (24,13): 139, 33, 236, 66, 18, 33, 232, 232, 55, 33, 232, 18, 204, (24,26): 185, 232, 140, 245, 140, 140, 35, 139, 232, 232, 33, 18, (24,38): 233, 14, 231, 180, 28, 38, 185, 185, 79, 185, 79, 185, 185, (24,51): 119, 117, 35, 128, 33, 128, 117, 33, 195, 186, 195, 46, 49, (24,64): 3, 156, 78, 49, 116, 116, 128, 49, 105, 63, 180, 105, 63, (24,77): 156, 156, 156, 195, 187, 195, 156, 100, 66, 66, 185, 100, (24,89): 14, 219, 14, 192, 95, 175, 187, 66, 27, 104, 123, 2, 156, (24,102): 66, 128, 128, 128, 35, 119, 232, 139, 119, 236, 38, 219, (24,114): 219, 153, 192, 196, 196, 94, 59, 83, 4, 4, 83, 189, 214, (24,127): 214, 175, 221, 11, 186, 146, 72, 128, 186, 72, 18, 72, 18, (24,140): 79, 79, 33, 33, 33, 236, 18, 66, 100, 2, 104, 252, 100, (24,153): 125, 185, 66, 219, 125, 185, 55, 185, 125, 194, 28, 62, (24,165): 219, 71, 100, 24, 24, 153, 252, 192, 241, 192, 28, 194, (24,177): 192, 246, 153, 14, 14, 63, 253, 123, 137, 105, 49, 138, (24,189): 105, 37, 181, 185, 79, 79, 236, 33, 55, 232, 35, 232, 119, (24,202): 232, 35, 119, 232, 55, 33, 33, 33, 185, 72, 79, 33, 185, (24,215): 156, 156, 186, 125, 72, 100, 104, 252, 183, 137, 64, 64, (24,227): 141, 27, 50, 108, 253, 176, 181, 100, 195, 204, 66, 241, (24,239): 79, 33, 33, 232, 245, 117, 232, 79, 55, 33, 232, 55, 232, (24,252): 35, 35, 232, 33, 55, 35, 245, 35, 232, 35, 33, 79, 116, (24,265): 66, 234, 156, 14, 108, 108, 50, 49, 156, 220, 108, 187, (24,277): 50, 253, 104, 49, 14, 72, 66, 156, 253, 180, 49, 187, 2, (24,290): 185, 195, 100, 195, 175, 63, 181, 186, 186, 186, 146, 33, (24,302): 186, 3, 195, 221, 128, 33, 186, 18, 195, 195, 195, 185, (24,314): 33, 119, 128, 33, 35, 88, 35, 117, 117, 117, 117, 117, 35, (24,327): 117, 117, 119, 119, 33, 55, 119, 35, 117, 117, 35, 117, (24,339): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (24,352): 117, 35, 35, 35, 117, 35, 117, 117, 117, 117, 35, 35, 35, (24,365): 35, 35, 35, 117, 35, 35, 35, 35, 117, 117, (25,0): 105, 34, 137, 97, 37, 253, 224, 33, 33, 11, 35, 232, 35, 33, (25,14): 185, 119, 185, 79, 185, 232, 232, 79, 79, 139, 18, 204, 18, (25,27): 232, 35, 35, 139, 245, 245, 35, 232, 55, 79, 185, 66, 14, (25,40): 100, 28, 28, 241, 18, 55, 55, 119, 119, 119, 33, 117, 11, (25,53): 117, 35, 128, 185, 128, 11, 33, 224, 156, 3, 156, 49, 195, (25,66): 146, 46, 186, 156, 186, 146, 156, 220, 220, 66, 49, 220, (25,78): 187, 187, 108, 63, 195, 125, 156, 49, 241, 156, 125, 66, (25,90): 66, 241, 28, 175, 207, 204, 66, 27, 123, 216, 64, 180, 181, (25,103): 156, 33, 35, 88, 117, 232, 232, 55, 55, 125, 219, 219, 62, (25,116): 24, 24, 153, 149, 149, 211, 4, 4, 75, 56, 214, 214, 99, (25,129): 63, 50, 108, 100, 234, 79, 234, 72, 18, 79, 33, 79, 232, (25,142): 33, 232, 18, 18, 79, 18, 49, 100, 187, 104, 156, 33, 119, (25,155): 79, 119, 119, 119, 119, 219, 71, 185, 125, 14, 28, 14, (25,167): 180, 103, 14, 14, 100, 142, 153, 70, 28, 62, 194, 153, 24, (25,180): 28, 18, 79, 108, 108, 220, 108, 50, 181, 182, 91, 116, 66, (25,193): 38, 125, 79, 55, 232, 232, 232, 232, 232, 35, 35, 139, 35, (25,206): 232, 33, 33, 221, 195, 49, 66, 18, 186, 66, 66, 79, 185, (25,219): 185, 156, 2, 2, 2, 91, 27, 183, 64, 183, 138, 50, 181, 63, (25,233): 220, 66, 72, 18, 195, 204, 55, 55, 232, 35, 245, 35, 232, (25,246): 232, 33, 232, 232, 128, 232, 35, 232, 232, 55, 147, 245, (25,258): 55, 33, 232, 232, 79, 66, 195, 49, 100, 181, 180, 108, (25,270): 108, 2, 108, 14, 195, 108, 187, 63, 63, 187, 195, 63, 64, (25,283): 8, 146, 79, 186, 186, 156, 63, 220, 63, 181, 156, 175, 2, (25,296): 195, 116, 186, 221, 195, 146, 156, 128, 79, 116, 72, 72, (25,308): 185, 221, 185, 195, 186, 33, 128, 35, 128, 35, 35, 117, (25,320): 117, 201, 117, 35, 117, 117, 117, 35, 117, 35, 35, 119, (25,332): 128, 119, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (25,345): 117, 35, 117, 35, 117, 35, 117, 117, 117, 35, 117, 35, 35, (25,358): 117, 117, 35, 35, 35, 117, 35, 35, 35, 35, 35, 35, 117, (25,371): 35, 35, 35, 119, (26,0): 105, 64, 64, 141, 64, 50, 72, 66, 195, 33, 35, 232, 232, (26,13): 232, 232, 140, 55, 232, 55, 33, 245, 79, 18, 35, 79, 185, (26,26): 18, 79, 232, 35, 35, 35, 140, 35, 33, 79, 185, 18, 204, 66, (26,40): 14, 108, 180, 100, 66, 18, 33, 35, 232, 128, 119, 35, 35, (26,53): 33, 128, 128, 128, 117, 128, 224, 221, 49, 186, 3, 195, 72, (26,66): 186, 116, 156, 108, 220, 100, 91, 253, 49, 128, 195, 63, (26,78): 100, 195, 63, 195, 66, 116, 79, 195, 185, 186, 33, 66, 100, (26,91): 195, 204, 100, 63, 79, 66, 104, 123, 178, 37, 183, 253, 14, (26,104): 186, 33, 117, 117, 232, 119, 119, 139, 119, 219, 125, 125, (26,116): 251, 28, 163, 163, 92, 127, 43, 115, 115, 151, 151, 214, (26,128): 89, 64, 183, 253, 63, 49, 186, 14, 195, 195, 18, 18, 79, (26,141): 18, 18, 18, 72, 195, 66, 66, 195, 195, 66, 66, 125, 33, (26,154): 35, 33, 119, 232, 79, 185, 185, 55, 55, 185, 100, 24, 14, (26,167): 14, 185, 185, 185, 125, 66, 219, 28, 93, 58, 24, 153, 51, (26,180): 24, 195, 204, 180, 108, 220, 108, 78, 105, 49, 181, 195, (26,192): 234, 241, 66, 204, 18, 33, 55, 232, 35, 117, 245, 245, 35, (26,205): 35, 232, 232, 33, 79, 72, 66, 156, 79, 221, 79, 185, 33, (26,218): 186, 185, 241, 100, 100, 63, 253, 183, 181, 180, 138, 156, (26,230): 63, 181, 156, 186, 116, 18, 79, 185, 185, 232, 33, 232, (26,242): 232, 232, 232, 232, 33, 79, 232, 33, 232, 232, 232, 128, (26,254): 232, 33, 232, 35, 232, 33, 185, 79, 18, 18, 33, 195, 108, (26,267): 2, 180, 50, 14, 220, 156, 180, 108, 252, 180, 156, 156, (26,279): 183, 27, 195, 66, 2, 220, 180, 180, 195, 195, 63, 100, (26,291): 180, 180, 156, 253, 50, 220, 146, 146, 221, 46, 186, 3, (26,303): 128, 3, 72, 195, 72, 221, 128, 33, 72, 185, 33, 117, 117, (26,316): 35, 128, 35, 35, 117, 35, 117, 117, 139, 117, 201, 117, (26,328): 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, 117, 35, (26,341): 117, 35, 117, 35, 117, 35, 117, 117, 35, 117, 35, 117, 35, (26,354): 117, 35, 35, 117, 35, 35, 35, 35, 35, 35, 35, 117, 35, (26,367): 117, 117, 35, 117, 35, 35, 119, 232, (27,0): 108, 63, 253, 181, 116, 72, 187, 195, 33, 147, 210, 35, 35, (27,13): 245, 139, 79, 79, 232, 55, 33, 35, 236, 204, 33, 55, 79, (27,26): 18, 236, 33, 232, 232, 232, 245, 232, 79, 18, 204, 195, 72, (27,39): 72, 72, 14, 63, 108, 14, 204, 33, 232, 232, 119, 35, 117, (27,52): 33, 221, 79, 128, 35, 46, 195, 195, 46, 156, 116, 116, 128, (27,65): 221, 116, 221, 195, 49, 195, 156, 187, 70, 27, 14, 125, 66, (27,78): 49, 156, 195, 33, 221, 33, 33, 66, 156, 79, 35, 79, 14, (27,91): 195, 79, 185, 14, 33, 186, 63, 8, 37, 97, 108, 220, 49, (27,104): 186, 221, 117, 117, 232, 35, 139, 117, 140, 236, 185, 55, (27,116): 125, 102, 62, 102, 213, 39, 54, 69, 56, 151, 214, 214, 89, (27,129): 123, 187, 63, 220, 66, 18, 234, 66, 195, 66, 195, 195, (27,141): 195, 195, 66, 66, 234, 14, 14, 195, 79, 128, 35, 35, 88, (27,154): 117, 33, 117, 117, 119, 232, 55, 185, 204, 219, 241, 100, (27,166): 125, 125, 66, 55, 185, 55, 185, 35, 185, 246, 142, 142, (27,178): 28, 14, 241, 66, 234, 63, 108, 146, 234, 50, 63, 146, 63, (27,191): 220, 66, 241, 14, 14, 62, 66, 185, 232, 35, 245, 139, 245, (27,204): 35, 232, 55, 79, 186, 33, 186, 125, 156, 186, 186, 79, (27,216): 185, 221, 125, 125, 195, 156, 14, 180, 104, 175, 253, 63, (27,228): 100, 156, 108, 63, 14, 116, 79, 204, 185, 79, 33, 55, 33, (27,241): 232, 232, 33, 33, 232, 33, 185, 33, 33, 232, 232, 33, 79, (27,254): 33, 232, 185, 232, 35, 35, 33, 79, 128, 232, 33, 100, 253, (27,267): 181, 180, 181, 50, 72, 156, 100, 195, 108, 2, 220, 125, (27,279): 195, 104, 186, 221, 220, 63, 253, 104, 108, 195, 186, 221, (27,291): 221, 195, 146, 180, 49, 186, 128, 186, 156, 49, 186, 156, (27,303): 63, 220, 195, 221, 33, 128, 33, 221, 33, 221, 128, 117, (27,315): 11, 117, 35, 128, 35, 117, 117, 117, 117, 117, 117, 117, (27,327): 35, 35, 117, 35, 117, 117, 117, 117, 35, 35, 117, 35, 117, (27,340): 201, 117, 35, 117, 35, 117, 201, 117, 35, 117, 35, 117, (27,352): 35, 35, 117, 117, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, (27,366): 35, 117, 35, 35, 117, 35, 117, 232, 33, (28,0): 63, 156, 186, 18, 33, 2, 121, 100, 33, 195, 66, 33, 232, 35, (28,14): 33, 185, 66, 232, 232, 185, 79, 79, 204, 204, 18, 185, 18, (28,27): 18, 18, 236, 79, 232, 35, 35, 232, 79, 195, 234, 195, 72, (28,40): 116, 72, 66, 14, 14, 72, 185, 33, 33, 232, 117, 117, 35, (28,53): 185, 186, 33, 33, 221, 221, 221, 221, 156, 46, 128, 128, (28,65): 72, 72, 72, 66, 72, 186, 79, 14, 187, 253, 100, 186, 33, (28,78): 185, 125, 108, 220, 72, 186, 33, 146, 187, 186, 221, 186, (28,90): 63, 63, 50, 195, 2, 156, 33, 14, 64, 175, 253, 33, 72, 156, (28,104): 79, 128, 88, 117, 117, 245, 117, 139, 245, 232, 119, 33, (28,116): 185, 125, 113, 107, 228, 106, 127, 43, 56, 56, 151, 214, (28,128): 178, 175, 49, 79, 66, 49, 195, 195, 72, 72, 72, 72, 72, (28,141): 18, 116, 116, 195, 234, 66, 72, 116, 79, 79, 186, 128, 35, (28,154): 33, 33, 117, 117, 33, 232, 204, 38, 241, 219, 66, 66, 185, (28,167): 125, 186, 33, 79, 88, 55, 219, 201, 66, 62, 100, 241, 125, (28,180): 125, 18, 66, 14, 72, 221, 72, 49, 63, 220, 180, 220, 14, (28,193): 14, 100, 100, 63, 100, 66, 79, 35, 35, 245, 245, 117, 232, (28,206): 33, 33, 195, 221, 195, 195, 63, 14, 14, 156, 18, 186, 66, (28,219): 195, 125, 38, 241, 180, 93, 121, 8, 175, 253, 108, 100, (28,231): 156, 220, 186, 79, 18, 79, 139, 232, 33, 33, 33, 79, 185, (28,244): 79, 55, 232, 33, 55, 33, 232, 33, 79, 33, 55, 33, 35, 232, (28,258): 232, 35, 245, 232, 79, 79, 33, 195, 156, 195, 195, 234, (28,270): 234, 116, 79, 186, 128, 128, 156, 125, 46, 210, 185, 195, (28,282): 156, 241, 108, 180, 252, 8, 27, 63, 72, 128, 46, 186, 156, (28,295): 186, 49, 46, 49, 253, 138, 46, 224, 186, 156, 72, 33, 128, (28,308): 221, 116, 33, 128, 185, 33, 128, 117, 117, 11, 117, 117, (28,320): 117, 117, 117, 117, 117, 35, 35, 35, 117, 35, 117, 117, (28,332): 117, 35, 117, 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, (28,345): 117, 35, 117, 35, 35, 117, 35, 35, 35, 35, 35, 117, 35, (28,358): 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, 35, 117, 35, (28,372): 35, 119, 33, (29,0): 180, 234, 128, 35, 79, 14, 28, 156, 14, 175, 93, 204, 35, (29,13): 79, 185, 232, 241, 185, 232, 33, 204, 18, 204, 241, 66, (29,25): 204, 18, 204, 204, 18, 79, 79, 232, 35, 128, 79, 72, 234, (29,38): 49, 49, 195, 195, 49, 234, 14, 66, 204, 79, 185, 33, 119, (29,51): 35, 128, 185, 186, 186, 221, 128, 128, 186, 49, 181, 3, (29,63): 128, 221, 18, 116, 66, 50, 100, 156, 186, 156, 186, 185, (29,75): 186, 185, 219, 195, 185, 195, 156, 33, 128, 88, 195, 123, (29,87): 253, 186, 195, 195, 50, 156, 49, 183, 27, 195, 195, 156, (29,99): 156, 195, 128, 79, 49, 195, 18, 33, 33, 33, 232, 139, 232, (29,112): 35, 232, 119, 119, 71, 120, 55, 173, 213, 92, 39, 85, 56, (29,125): 151, 56, 214, 214, 8, 66, 33, 195, 195, 18, 79, 79, 79, (29,138): 79, 116, 79, 221, 33, 128, 186, 72, 72, 195, 72, 185, 186, (29,151): 186, 195, 186, 186, 185, 128, 35, 33, 33, 185, 185, 204, (29,163): 125, 241, 14, 186, 185, 186, 79, 219, 66, 241, 241, 119, (29,175): 125, 100, 194, 100, 28, 220, 204, 221, 66, 72, 116, 79, (29,187): 72, 108, 2, 253, 180, 24, 24, 180, 63, 28, 180, 100, 66, (29,200): 33, 232, 35, 245, 232, 232, 33, 33, 186, 33, 49, 156, 105, (29,213): 14, 220, 66, 125, 186, 66, 66, 18, 195, 66, 24, 175, 95, (29,226): 37, 8, 93, 63, 220, 66, 14, 186, 33, 79, 35, 245, 232, 55, (29,240): 204, 204, 204, 185, 79, 185, 79, 33, 232, 33, 55, 33, 55, (29,253): 33, 232, 35, 35, 35, 35, 232, 18, 241, 100, 63, 220, 234, (29,266): 195, 49, 49, 49, 156, 63, 186, 195, 66, 33, 125, 221, 14, (29,279): 185, 33, 195, 186, 221, 180, 252, 64, 97, 37, 91, 180, (29,291): 195, 72, 46, 116, 46, 195, 46, 186, 138, 63, 63, 182, 49, (29,304): 46, 116, 186, 46, 116, 186, 186, 33, 221, 128, 35, 11, 35, (29,317): 117, 35, 117, 117, 117, 117, 117, 117, 117, 35, 35, 35, (29,329): 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, 117, (29,341): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 119, 35, (29,354): 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, (29,368): 35, 35, 35, 35, 35, 119, 119, (30,0): 14, 195, 66, 66, 195, 234, 185, 245, 18, 24, 180, 33, 35, (30,13): 204, 195, 204, 2, 24, 18, 232, 38, 14, 241, 14, 28, 241, (30,26): 204, 241, 14, 241, 204, 185, 79, 79, 221, 79, 72, 49, 156, (30,39): 50, 138, 50, 220, 108, 180, 63, 156, 66, 185, 185, 79, 33, (30,52): 185, 186, 186, 185, 72, 186, 72, 108, 2, 175, 220, 186, 88, (30,65): 221, 117, 79, 156, 66, 66, 185, 232, 117, 185, 66, 33, 241, (30,78): 104, 104, 226, 99, 70, 253, 195, 186, 104, 91, 181, 91, 50, (30,91): 181, 50, 78, 36, 37, 138, 195, 128, 33, 221, 186, 46, 221, (30,104): 108, 156, 195, 66, 38, 204, 204, 185, 55, 79, 232, 119, (30,116): 79, 55, 145, 120, 81, 92, 77, 54, 238, 69, 56, 248, 214, (30,129): 178, 180, 204, 234, 66, 18, 221, 79, 79, 116, 116, 116, (30,141): 116, 46, 46, 116, 116, 195, 146, 195, 72, 79, 33, 185, 79, (30,154): 79, 33, 88, 117, 128, 117, 117, 139, 79, 66, 100, 14, 79, (30,167): 195, 187, 63, 180, 104, 14, 241, 219, 153, 153, 14, 66, (30,179): 100, 28, 186, 33, 72, 220, 195, 79, 116, 241, 108, 28, 2, (30,192): 253, 104, 51, 24, 2, 24, 63, 100, 204, 185, 33, 232, 33, (30,205): 33, 33, 33, 185, 221, 156, 156, 187, 156, 156, 79, 72, (30,217): 185, 66, 66, 66, 66, 241, 180, 70, 95, 99, 157, 252, 28, (30,230): 14, 66, 72, 33, 33, 33, 35, 35, 33, 33, 66, 241, 204, 185, (30,244): 18, 38, 18, 55, 232, 33, 33, 33, 33, 232, 232, 35, 55, 35, (30,258): 35, 33, 14, 51, 104, 187, 14, 204, 116, 72, 18, 221, 72, (30,271): 108, 63, 14, 156, 156, 220, 63, 104, 156, 156, 14, 100, (30,283): 66, 63, 108, 187, 253, 253, 195, 156, 146, 195, 186, 46, (30,295): 72, 63, 182, 195, 49, 186, 50, 80, 72, 221, 116, 72, 72, (30,308): 186, 186, 221, 33, 128, 128, 35, 117, 11, 35, 117, 11, (30,320): 117, 117, 139, 117, 117, 201, 35, 35, 117, 117, 201, 117, (30,332): 117, 35, 117, 117, 201, 35, 117, 35, 35, 35, 117, 35, 117, (30,345): 35, 117, 35, 117, 35, 117, 35, 119, 119, 35, 35, 117, 117, (30,358): 35, 35, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 119, (30,372): 35, 232, 35, (31,0): 99, 24, 252, 187, 28, 226, 249, 180, 66, 100, 66, 79, 18, (31,13): 38, 241, 231, 53, 226, 28, 55, 241, 207, 24, 51, 192, 231, (31,26): 14, 100, 28, 28, 14, 241, 156, 234, 49, 72, 186, 146, 156, (31,39): 108, 253, 181, 63, 181, 253, 181, 100, 14, 116, 185, 185, (31,51): 33, 33, 185, 79, 221, 79, 185, 186, 156, 156, 181, 156, (31,63): 156, 128, 72, 33, 79, 72, 79, 72, 79, 186, 117, 33, 185, (31,76): 88, 219, 180, 14, 100, 63, 27, 2, 221, 128, 186, 187, 14, (31,89): 183, 50, 108, 195, 146, 180, 181, 63, 100, 66, 72, 128, (31,101): 116, 128, 186, 50, 66, 195, 49, 100, 63, 14, 241, 185, 18, (31,114): 119, 117, 119, 120, 55, 145, 6, 213, 215, 213, 215, 206, (31,126): 189, 151, 37, 214, 252, 14, 100, 66, 234, 195, 221, 221, (31,138): 221, 116, 186, 72, 66, 49, 72, 186, 116, 46, 79, 116, 186, (31,151): 186, 33, 33, 185, 186, 221, 33, 33, 35, 35, 35, 18, 219, (31,164): 66, 66, 125, 63, 8, 175, 63, 241, 117, 219, 241, 66, 28, (31,177): 219, 79, 185, 66, 204, 72, 14, 2, 14, 72, 66, 14, 14, 66, (31,191): 100, 2, 252, 27, 104, 105, 187, 2, 63, 14, 49, 18, 221, (31,204): 33, 33, 33, 33, 221, 128, 156, 156, 91, 100, 108, 156, (31,216): 186, 33, 185, 66, 14, 28, 100, 24, 246, 53, 53, 53, 70, (31,229): 180, 14, 72, 33, 33, 33, 33, 33, 232, 18, 18, 79, 204, 79, (31,243): 55, 79, 241, 195, 33, 232, 33, 79, 185, 33, 128, 35, 35, (31,256): 35, 232, 33, 18, 241, 63, 2, 187, 234, 234, 14, 234, 72, (31,269): 116, 72, 156, 49, 156, 63, 27, 195, 14, 253, 187, 175, (31,281): 180, 220, 221, 128, 185, 180, 104, 253, 46, 156, 156, 108, (31,293): 156, 46, 186, 195, 3, 186, 49, 111, 186, 3, 146, 146, 195, (31,306): 72, 186, 72, 195, 186, 128, 117, 117, 117, 11, 35, 117, (31,318): 117, 117, 140, 117, 117, 117, 117, 35, 117, 119, 117, 117, (31,330): 117, 35, 117, 201, 117, 117, 117, 117, 35, 117, 35, 117, (31,342): 35, 117, 35, 117, 35, 117, 35, 117, 117, 35, 33, 128, 119, (31,355): 117, 117, 117, 35, 117, 117, 117, 35, 117, 35, 35, 35, 35, (31,368): 35, 119, 35, 119, 35, 35, 35, (32,0): 38, 226, 8, 95, 231, 8, 93, 100, 116, 66, 18, 33, 204, 38, (32,14): 20, 53, 89, 214, 15, 194, 74, 237, 188, 15, 238, 207, 207, (32,27): 58, 187, 180, 195, 108, 50, 22, 222, 182, 80, 49, 182, 50, (32,40): 108, 220, 108, 63, 50, 253, 108, 181, 156, 18, 221, 33, (32,52): 128, 185, 72, 79, 221, 33, 33, 185, 186, 253, 187, 123, (32,64): 187, 245, 116, 183, 187, 14, 195, 128, 221, 128, 186, 186, (32,76): 117, 79, 66, 33, 252, 8, 93, 63, 125, 79, 156, 186, 186, (32,89): 187, 123, 253, 108, 156, 33, 72, 51, 123, 253, 195, 185, (32,101): 116, 116, 221, 186, 50, 156, 108, 105, 91, 64, 27, 28, 14, (32,114): 125, 55, 35, 201, 71, 201, 145, 71, 41, 76, 213, 218, 196, (32,127): 58, 207, 121, 104, 14, 72, 234, 72, 156, 116, 116, 33, (32,139): 128, 195, 234, 18, 18, 116, 116, 116, 186, 116, 79, 79, (32,151): 79, 49, 116, 186, 72, 185, 156, 49, 35, 35, 232, 33, 66, (32,164): 100, 241, 195, 66, 185, 125, 33, 55, 125, 185, 232, 185, (32,176): 219, 66, 195, 185, 66, 220, 220, 66, 66, 116, 79, 116, (32,188): 195, 66, 234, 108, 63, 181, 253, 105, 2, 183, 183, 187, (32,200): 63, 156, 234, 128, 195, 186, 221, 33, 33, 185, 18, 195, (32,212): 156, 50, 222, 182, 72, 116, 116, 66, 28, 153, 28, 74, 110, (32,225): 238, 89, 59, 93, 207, 28, 66, 18, 128, 232, 79, 79, 33, (32,238): 71, 204, 241, 185, 232, 232, 33, 79, 33, 35, 33, 116, 195, (32,251): 195, 72, 79, 11, 11, 33, 232, 232, 33, 79, 72, 241, 100, (32,264): 108, 108, 50, 220, 108, 156, 220, 63, 108, 195, 185, 108, (32,276): 221, 195, 221, 63, 108, 253, 63, 186, 128, 11, 221, 79, (32,288): 72, 14, 63, 116, 221, 221, 195, 221, 116, 108, 91, 78, (32,300): 156, 220, 195, 186, 146, 220, 220, 195, 186, 186, 33, 117, (32,312): 11, 117, 117, 117, 35, 35, 35, 117, 117, 117, 35, 117, (32,324): 140, 117, 117, 117, 117, 117, 35, 35, 117, 117, 117, 117, (32,336): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (32,349): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 117, 35, 35, (32,362): 35, 35, 35, 117, 35, 35, 35, 117, 35, 79, 33, 33, 117, (33,0): 139, 100, 93, 89, 15, 66, 204, 66, 33, 128, 33, 35, 125, (33,13): 231, 188, 151, 151, 214, 75, 58, 23, 45, 83, 229, 151, 75, (33,26): 51, 84, 27, 63, 14, 50, 124, 34, 176, 124, 138, 50, 182, (33,39): 156, 156, 220, 50, 108, 220, 181, 50, 181, 50, 195, 116, (33,51): 33, 128, 221, 186, 33, 156, 125, 116, 185, 33, 62, 156, 14, (33,64): 252, 72, 18, 183, 123, 78, 116, 128, 49, 33, 88, 35, 156, (33,77): 8, 226, 14, 241, 192, 187, 51, 66, 219, 14, 28, 18, 14, (33,90): 187, 28, 14, 100, 66, 14, 180, 121, 66, 63, 49, 128, 186, (33,103): 186, 46, 49, 3, 156, 91, 36, 37, 64, 51, 100, 79, 185, 79, (33,117): 140, 139, 201, 145, 236, 71, 6, 71, 76, 20, 76, 100, 175, (33,130): 51, 49, 79, 72, 186, 49, 63, 116, 146, 14, 33, 33, 195, (33,143): 79, 79, 116, 18, 72, 79, 116, 79, 116, 195, 33, 128, 186, (33,156): 116, 195, 14, 220, 128, 232, 185, 219, 156, 79, 125, 100, (33,168): 241, 14, 14, 66, 125, 33, 185, 219, 220, 66, 185, 128, (33,180): 221, 125, 18, 79, 234, 18, 79, 79, 18, 195, 100, 180, 63, (33,193): 181, 104, 253, 253, 183, 91, 63, 156, 108, 104, 156, 156, (33,205): 186, 221, 185, 186, 125, 72, 195, 234, 50, 182, 49, 80, (33,217): 234, 234, 241, 153, 58, 142, 110, 206, 59, 151, 248, 25, (33,229): 51, 100, 66, 79, 128, 245, 232, 33, 33, 33, 236, 18, 236, (33,242): 55, 232, 139, 232, 79, 79, 79, 72, 234, 234, 72, 3, 116, (33,255): 46, 33, 128, 33, 14, 2, 2, 108, 220, 234, 14, 49, 49, 49, (33,269): 146, 108, 91, 187, 108, 220, 220, 128, 221, 117, 46, 79, (33,281): 220, 108, 220, 186, 128, 221, 117, 66, 63, 123, 99, 27, (33,293): 186, 128, 33, 186, 220, 253, 63, 63, 105, 108, 220, 116, (33,305): 195, 195, 186, 221, 221, 33, 128, 35, 117, 117, 117, 117, (33,317): 35, 117, 117, 117, 35, 117, 117, 88, 117, 35, 117, 117, (33,329): 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, (33,341): 35, 117, 35, 117, 35, 117, 35, 117, 201, 117, 117, 35, (33,353): 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, (33,367): 35, 35, 35, 117, 128, 119, 128, 232, (34,0): 18, 125, 233, 100, 62, 236, 204, 79, 33, 35, 186, 125, 233, (34,13): 58, 45, 59, 189, 214, 229, 23, 45, 84, 238, 59, 189, 229, (34,26): 237, 229, 242, 28, 180, 63, 34, 12, 12, 34, 78, 108, 156, (34,39): 49, 156, 156, 116, 50, 50, 181, 63, 50, 63, 49, 116, 221, (34,52): 33, 221, 186, 79, 33, 186, 195, 234, 33, 18, 14, 234, 14, (34,65): 220, 234, 108, 27, 27, 108, 195, 50, 146, 49, 66, 195, 100, (34,78): 180, 14, 100, 180, 241, 93, 93, 70, 28, 14, 51, 175, 8, 51, (34,92): 66, 125, 195, 66, 63, 178, 105, 220, 186, 11, 46, 221, 156, (34,105): 50, 220, 50, 180, 123, 37, 175, 93, 24, 125, 71, 219, 201, (34,118): 35, 120, 119, 71, 71, 236, 145, 120, 6, 119, 185, 100, 63, (34,131): 79, 33, 11, 33, 3, 221, 49, 116, 117, 195, 195, 232, 79, (34,144): 128, 79, 79, 186, 186, 186, 18, 72, 66, 79, 79, 195, 195, (34,157): 156, 187, 183, 79, 88, 147, 185, 156, 185, 33, 66, 156, (34,169): 125, 219, 66, 185, 232, 185, 66, 28, 156, 125, 79, 33, (34,181): 125, 195, 66, 195, 79, 232, 33, 116, 72, 14, 63, 253, 105, (34,194): 105, 181, 2, 64, 97, 177, 105, 27, 223, 180, 156, 195, (34,206): 186, 72, 66, 66, 195, 195, 182, 50, 50, 3, 50, 63, 63, (34,219): 100, 58, 84, 247, 110, 206, 59, 248, 214, 189, 84, 100, (34,231): 204, 232, 33, 18, 79, 33, 55, 79, 18, 55, 33, 232, 232, (34,244): 245, 35, 33, 79, 72, 234, 234, 195, 72, 72, 3, 116, 195, (34,257): 33, 33, 234, 180, 100, 234, 195, 108, 108, 220, 156, 49, (34,269): 146, 156, 105, 50, 220, 108, 156, 186, 49, 221, 117, 11, (34,281): 33, 195, 156, 33, 88, 33, 11, 14, 108, 27, 178, 121, 63, (34,294): 116, 195, 108, 63, 253, 108, 50, 63, 49, 186, 186, 3, 195, (34,307): 116, 79, 186, 186, 79, 128, 35, 35, 117, 35, 35, 35, 117, (34,320): 117, 117, 117, 140, 117, 35, 119, 35, 35, 117, 117, 117, (34,332): 117, 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, 35, (34,344): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 201, 35, 117, (34,357): 35, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 128, 35, (34,371): 35, 35, 35, 128, (35,0): 241, 185, 233, 204, 24, 100, 14, 140, 128, 35, 18, 62, 207, (35,13): 188, 47, 75, 16, 56, 75, 237, 47, 45, 75, 4, 29, 229, 246, (35,27): 229, 70, 108, 63, 105, 12, 12, 183, 34, 63, 108, 108, 50, (35,40): 49, 50, 116, 63, 181, 181, 124, 108, 108, 49, 186, 79, 221, (35,53): 186, 18, 116, 33, 72, 66, 108, 66, 72, 100, 18, 72, 63, (35,66): 100, 116, 49, 2, 105, 63, 156, 72, 66, 156, 186, 119, 79, (35,79): 185, 185, 14, 100, 70, 95, 214, 95, 53, 95, 248, 214, 99, (35,92): 187, 28, 63, 108, 182, 141, 36, 46, 3, 221, 116, 72, 72, (35,105): 156, 187, 187, 63, 175, 89, 37, 192, 175, 62, 119, 119, (35,117): 119, 119, 139, 119, 55, 55, 120, 120, 71, 120, 145, 117, (35,129): 18, 66, 117, 128, 88, 128, 128, 146, 221, 33, 79, 33, 33, (35,142): 18, 79, 128, 33, 221, 79, 185, 72, 18, 116, 33, 116, 79, (35,155): 128, 117, 79, 66, 156, 156, 18, 221, 14, 187, 180, 14, 14, (35,168): 100, 185, 33, 221, 232, 117, 35, 88, 186, 125, 186, 185, (35,180): 35, 117, 185, 156, 33, 117, 128, 33, 79, 204, 234, 14, (35,192): 108, 105, 123, 177, 177, 223, 64, 187, 183, 27, 183, 156, (35,204): 49, 14, 72, 186, 66, 156, 234, 49, 50, 78, 138, 50, 108, (35,217): 187, 24, 207, 246, 152, 45, 110, 206, 75, 56, 151, 89, 53, (35,230): 207, 66, 33, 79, 18, 79, 79, 79, 18, 18, 232, 232, 245, (35,243): 232, 33, 33, 33, 79, 234, 108, 108, 146, 116, 49, 50, 50, (35,256): 234, 79, 128, 79, 79, 33, 186, 234, 2, 253, 2, 181, 156, (35,269): 195, 116, 156, 186, 116, 14, 156, 180, 187, 50, 33, 33, (35,281): 128, 186, 220, 186, 221, 156, 195, 185, 116, 66, 70, 121, (35,293): 8, 220, 221, 128, 221, 186, 221, 33, 3, 46, 46, 195, 49, (35,306): 195, 72, 186, 186, 186, 221, 33, 128, 35, 35, 35, 35, 117, (35,319): 117, 35, 117, 140, 117, 117, 35, 117, 117, 35, 35, 140, (35,331): 117, 117, 201, 117, 117, 35, 117, 35, 117, 35, 117, 35, (35,343): 117, 117, 35, 117, 35, 117, 35, 117, 117, 35, 117, 35, (35,355): 117, 35, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 88, (35,369): 232, 128, 128, 117, 35, 117, (36,0): 14, 18, 28, 93, 246, 194, 204, 236, 79, 18, 18, 241, 188, (36,13): 198, 206, 115, 56, 151, 45, 148, 206, 206, 211, 15, 238, (36,25): 84, 229, 242, 51, 28, 14, 253, 183, 137, 183, 181, 50, 156, (36,38): 156, 146, 79, 146, 46, 50, 156, 80, 156, 80, 63, 156, 3, (36,51): 72, 195, 146, 49, 195, 72, 72, 79, 234, 14, 234, 63, 116, (36,64): 195, 66, 108, 180, 156, 195, 234, 49, 195, 49, 156, 195, (36,76): 185, 18, 125, 232, 180, 252, 53, 53, 89, 214, 214, 151, (36,88): 214, 214, 214, 214, 95, 226, 157, 2, 182, 12, 177, 138, 78, (36,101): 46, 186, 108, 66, 66, 187, 93, 231, 207, 226, 89, 25, 89, (36,114): 252, 185, 119, 55, 119, 140, 201, 119, 201, 119, 119, 55, (36,126): 55, 232, 35, 232, 79, 245, 116, 11, 33, 11, 220, 116, 50, (36,139): 27, 253, 195, 33, 79, 79, 79, 221, 33, 116, 186, 79, 33, (36,152): 128, 116, 79, 11, 88, 11, 128, 232, 35, 79, 79, 186, 72, (36,165): 125, 116, 186, 14, 33, 35, 128, 35, 11, 33, 35, 128, 185, (36,178): 195, 195, 221, 117, 128, 185, 35, 128, 128, 79, 116, 195, (36,190): 241, 220, 108, 63, 253, 253, 253, 64, 216, 37, 176, 91, (36,202): 181, 156, 50, 105, 220, 195, 195, 156, 14, 220, 63, 253, (36,214): 91, 253, 104, 104, 207, 58, 198, 75, 47, 23, 247, 238, 56, (36,227): 151, 151, 248, 246, 241, 79, 33, 35, 128, 18, 66, 79, 35, (36,240): 232, 232, 232, 232, 79, 204, 66, 234, 14, 108, 14, 72, 3, (36,253): 182, 181, 253, 14, 18, 33, 33, 128, 128, 72, 63, 2, 105, (36,266): 63, 181, 50, 156, 116, 146, 195, 186, 108, 49, 108, 108, (36,278): 108, 66, 46, 33, 195, 180, 50, 156, 108, 49, 66, 116, 35, (36,291): 156, 108, 104, 220, 186, 88, 11, 221, 11, 11, 221, 186, (36,303): 49, 186, 186, 195, 186, 116, 79, 33, 33, 33, 33, 35, 35, (36,316): 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, 140, 88, (36,328): 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, 35, (36,340): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (36,353): 35, 117, 35, 117, 35, 35, 117, 35, 35, 35, 35, 35, 35, 35, (36,367): 35, 117, 35, 232, 35, 117, 128, 35, (37,0): 28, 125, 100, 51, 207, 241, 236, 241, 18, 62, 38, 20, 84, (37,13): 45, 149, 197, 56, 151, 211, 149, 237, 148, 23, 237, 4, 23, (37,26): 157, 15, 24, 142, 63, 27, 183, 137, 183, 181, 220, 49, 186, (37,39): 221, 108, 156, 186, 222, 63, 181, 50, 80, 181, 156, 146, (37,51): 182, 156, 220, 156, 49, 221, 72, 195, 79, 72, 79, 156, 14, (37,64): 180, 14, 234, 72, 33, 72, 138, 63, 195, 49, 241, 195, 33, (37,77): 88, 232, 125, 28, 187, 37, 25, 193, 29, 214, 151, 189, 151, (37,90): 214, 214, 89, 226, 175, 63, 156, 36, 177, 177, 64, 105, (37,102): 104, 252, 123, 180, 231, 28, 38, 233, 207, 242, 226, 95, (37,114): 93, 62, 185, 55, 185, 119, 119, 119, 119, 117, 201, 35, (37,126): 119, 232, 128, 245, 128, 33, 79, 33, 128, 117, 128, 220, (37,138): 180, 27, 214, 216, 63, 18, 79, 221, 33, 33, 79, 72, 72, (37,151): 79, 128, 128, 117, 128, 79, 128, 35, 221, 116, 195, 186, (37,163): 128, 128, 185, 221, 33, 186, 128, 128, 128, 11, 117, 33, (37,175): 221, 79, 186, 156, 14, 156, 195, 79, 33, 128, 128, 232, (37,187): 128, 79, 18, 234, 220, 2, 253, 27, 27, 183, 27, 223, 223, (37,200): 104, 253, 220, 72, 72, 108, 156, 49, 49, 220, 108, 63, (37,212): 105, 27, 64, 70, 8, 175, 207, 207, 188, 45, 47, 47, 54, (37,225): 115, 151, 115, 248, 214, 229, 231, 79, 33, 33, 33, 33, 33, (37,238): 33, 33, 232, 79, 236, 33, 232, 18, 63, 27, 104, 104, 253, (37,251): 181, 78, 253, 183, 64, 180, 234, 35, 11, 245, 79, 195, (37,263): 108, 156, 220, 195, 108, 50, 63, 156, 180, 220, 66, 108, (37,275): 79, 33, 128, 195, 156, 116, 116, 72, 108, 14, 156, 50, 66, (37,288): 156, 18, 128, 35, 88, 128, 72, 63, 156, 156, 50, 195, 33, (37,301): 221, 128, 3, 46, 186, 186, 186, 186, 185, 221, 79, 33, 33, (37,314): 128, 117, 35, 117, 117, 139, 117, 117, 117, 35, 117, 140, (37,326): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (37,337): 201, 117, 35, 117, 35, 117, 201, 117, 35, 117, 35, 117, (37,349): 35, 117, 35, 117, 35, 35, 35, 35, 35, 117, 35, 35, 35, 35, (37,363): 35, 35, 35, 35, 35, 35, 117, 11, 35, 35, 117, 33, (38,0): 66, 79, 241, 62, 231, 74, 62, 38, 66, 231, 231, 28, 237, 4, (38,14): 148, 211, 115, 69, 206, 209, 39, 7, 7, 7, 149, 58, 58, 24, (38,28): 231, 187, 51, 27, 93, 123, 175, 187, 50, 14, 156, 186, 156, (38,41): 46, 11, 186, 3, 222, 3, 49, 108, 146, 146, 50, 108, 108, (38,54): 50, 49, 186, 220, 108, 116, 72, 221, 221, 234, 18, 63, 63, (38,67): 241, 220, 108, 156, 79, 49, 35, 44, 33, 185, 117, 117, 66, (38,80): 100, 63, 95, 157, 60, 251, 110, 4, 39, 75, 59, 189, 248, (38,93): 226, 226, 175, 138, 177, 97, 89, 177, 214, 214, 178, 37, (38,105): 15, 231, 66, 233, 62, 62, 58, 24, 24, 62, 185, 55, 139, (38,118): 232, 35, 33, 33, 33, 33, 35, 128, 128, 79, 128, 33, 79, (38,131): 195, 116, 33, 33, 46, 72, 195, 108, 63, 253, 216, 99, 234, (38,144): 79, 116, 18, 221, 79, 195, 66, 195, 33, 221, 33, 195, 108, (38,157): 66, 128, 33, 49, 66, 186, 33, 186, 195, 46, 79, 72, 195, (38,170): 186, 33, 33, 128, 11, 88, 128, 195, 156, 156, 66, 195, 79, (38,183): 33, 221, 79, 33, 33, 79, 116, 66, 241, 234, 108, 91, 64, (38,196): 123, 123, 121, 64, 37, 121, 253, 108, 220, 253, 108, 181, (38,208): 63, 63, 63, 63, 253, 64, 8, 8, 99, 53, 84, 149, 149, 47, (38,222): 4, 4, 43, 69, 56, 56, 56, 214, 16, 93, 38, 204, 204, 204, (38,236): 79, 33, 79, 204, 232, 79, 79, 79, 35, 79, 100, 104, 63, (38,249): 108, 108, 108, 108, 50, 50, 50, 2, 220, 79, 128, 128, 221, (38,262): 116, 79, 116, 195, 221, 14, 195, 108, 156, 181, 108, 156, (38,274): 14, 221, 117, 33, 195, 49, 195, 49, 195, 156, 66, 72, 14, (38,287): 220, 33, 33, 186, 186, 33, 210, 128, 72, 72, 186, 49, 186, (38,300): 46, 221, 11, 33, 116, 116, 186, 186, 116, 116, 185, 186, (38,312): 33, 33, 35, 117, 117, 117, 201, 117, 117, 117, 117, 201, (38,324): 117, 88, 117, 55, 35, 55, 79, 55, 119, 117, 117, 35, 117, (38,337): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (38,350): 117, 35, 117, 35, 117, 35, 117, 35, 35, 117, 35, 35, 35, (38,363): 35, 35, 35, 35, 35, 35, 117, 35, 33, 33, 35, 35, (39,0): 66, 33, 38, 204, 194, 207, 15, 246, 229, 229, 25, 60, 228, (39,13): 149, 149, 73, 83, 238, 149, 209, 209, 228, 209, 60, 7, 58, (39,26): 194, 194, 194, 63, 192, 187, 187, 104, 187, 14, 66, 49, 66, (39,39): 195, 195, 72, 156, 80, 186, 156, 182, 183, 80, 186, 3, 50, (39,52): 108, 138, 108, 156, 3, 72, 49, 33, 181, 180, 18, 49, 104, (39,65): 175, 108, 79, 72, 33, 35, 49, 186, 221, 35, 117, 33, 55, (39,78): 33, 125, 156, 119, 28, 153, 71, 243, 92, 213, 31, 206, 23, (39,91): 238, 214, 214, 89, 37, 37, 123, 89, 214, 178, 214, 178, (39,103): 214, 178, 242, 175, 58, 187, 207, 66, 38, 204, 66, 71, (39,115): 185, 119, 232, 79, 117, 35, 35, 33, 33, 128, 33, 33, 186, (39,128): 33, 72, 66, 63, 186, 221, 116, 66, 195, 220, 180, 187, 2, (39,141): 14, 79, 195, 195, 156, 234, 72, 221, 116, 72, 72, 27, 223, (39,154): 8, 121, 37, 121, 63, 195, 186, 156, 156, 156, 195, 221, (39,166): 221, 156, 221, 72, 46, 46, 182, 108, 49, 186, 128, 156, (39,178): 181, 100, 186, 221, 221, 116, 79, 18, 72, 72, 72, 204, (39,190): 195, 66, 220, 220, 2, 252, 183, 27, 175, 176, 223, 27, 63, (39,203): 50, 50, 105, 49, 146, 104, 105, 63, 63, 253, 123, 8, 25, (39,216): 53, 151, 238, 237, 149, 211, 4, 4, 13, 69, 212, 56, 151, (39,229): 151, 248, 229, 207, 66, 33, 18, 241, 241, 18, 33, 79, 79, (39,242): 79, 232, 128, 33, 72, 234, 220, 234, 108, 2, 105, 138, (39,254): 234, 49, 49, 156, 220, 234, 195, 116, 128, 88, 221, 195, (39,266): 221, 156, 221, 72, 33, 49, 108, 220, 50, 195, 49, 63, 220, (39,279): 72, 128, 66, 186, 186, 116, 128, 116, 186, 79, 221, 195, (39,291): 33, 18, 128, 221, 117, 33, 128, 46, 186, 195, 195, 221, (39,303): 221, 224, 221, 128, 128, 128, 128, 128, 33, 33, 119, 35, (39,315): 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, 88, 119, (39,327): 125, 79, 185, 125, 125, 33, 35, 35, 35, 35, 117, 35, 117, (39,340): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (39,353): 35, 117, 35, 117, 201, 117, 35, 35, 35, 35, 35, 35, 35, (39,366): 35, 35, 35, 117, 33, 66, 72, 117, 88, (40,0): 14, 185, 219, 38, 74, 238, 151, 214, 214, 214, 15, 74, 31, (40,13): 31, 77, 73, 115, 47, 77, 31, 92, 213, 31, 31, 7, 74, 194, (40,27): 219, 28, 194, 24, 24, 28, 28, 100, 66, 125, 185, 116, 221, (40,40): 2, 186, 3, 186, 80, 224, 3, 80, 146, 108, 182, 63, 34, 105, (40,54): 181, 108, 181, 186, 221, 221, 146, 108, 234, 186, 66, 241, (40,66): 18, 128, 128, 33, 128, 128, 11, 128, 185, 221, 185, 125, (40,78): 125, 33, 125, 128, 201, 55, 120, 145, 213, 7, 209, 7, 149, (40,91): 59, 214, 89, 214, 214, 214, 37, 89, 214, 89, 214, 214, 214, (40,104): 214, 214, 214, 37, 95, 242, 100, 28, 79, 236, 18, 55, 140, (40,117): 35, 33, 35, 125, 116, 195, 186, 105, 186, 11, 195, 49, 33, (40,130): 72, 234, 185, 72, 66, 79, 66, 195, 72, 14, 18, 234, 195, (40,143): 72, 195, 180, 183, 104, 100, 195, 195, 156, 180, 253, 14, (40,155): 220, 104, 37, 121, 123, 180, 66, 195, 100, 253, 108, 128, (40,167): 221, 72, 221, 146, 63, 137, 121, 78, 186, 49, 108, 183, (40,179): 27, 221, 186, 35, 195, 156, 66, 195, 18, 18, 18, 72, 195, (40,192): 14, 63, 180, 253, 183, 183, 253, 27, 64, 97, 64, 63, 63, (40,205): 63, 49, 195, 78, 104, 104, 64, 70, 252, 8, 229, 53, 214, (40,218): 56, 149, 148, 47, 82, 43, 43, 227, 212, 56, 56, 151, 16, (40,231): 53, 93, 28, 79, 33, 79, 33, 232, 232, 33, 79, 79, 128, 79, (40,245): 33, 128, 245, 221, 234, 116, 234, 63, 105, 176, 63, 49, (40,257): 234, 72, 221, 72, 108, 14, 46, 72, 195, 156, 14, 195, 116, (40,270): 116, 18, 72, 221, 185, 50, 220, 50, 66, 72, 33, 221, 156, (40,283): 156, 156, 100, 195, 49, 33, 117, 195, 234, 33, 72, 66, 11, (40,296): 128, 128, 221, 221, 128, 46, 46, 128, 128, 128, 221, 128, (40,308): 128, 128, 128, 33, 221, 128, 117, 117, 119, 119, 119, 117, (40,320): 35, 117, 117, 35, 117, 117, 33, 66, 66, 79, 117, 117, 35, (40,333): 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (40,346): 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, (40,360): 35, 35, 35, 35, 35, 35, 35, 117, 35, 128, 232, 35, 35, 33, (40,374): 232, (41,0): 241, 219, 194, 233, 60, 229, 16, 151, 151, 214, 84, 31, 213, (41,13): 41, 77, 148, 197, 47, 7, 215, 41, 41, 209, 60, 7, 228, 102, (41,27): 219, 194, 62, 14, 100, 219, 66, 38, 18, 18, 195, 66, 66, (41,40): 72, 186, 195, 220, 156, 195, 186, 3, 49, 63, 182, 108, 253, (41,53): 253, 105, 50, 187, 176, 63, 195, 72, 186, 175, 2, 18, 72, (41,66): 221, 232, 128, 221, 128, 33, 33, 33, 33, 33, 33, 195, 241, (41,79): 125, 125, 33, 119, 119, 145, 201, 6, 213, 6, 213, 20, 188, (41,92): 193, 89, 89, 249, 214, 189, 189, 151, 151, 214, 214, 214, (41,104): 214, 214, 214, 89, 214, 37, 27, 252, 204, 71, 79, 55, 35, (41,117): 119, 185, 33, 156, 156, 49, 33, 181, 50, 46, 46, 186, 221, (41,130): 79, 100, 183, 14, 33, 234, 195, 195, 18, 234, 18, 234, 66, (41,143): 195, 195, 63, 175, 121, 64, 180, 156, 66, 72, 108, 14, (41,155): 220, 220, 104, 104, 64, 99, 64, 104, 187, 183, 104, 49, (41,167): 156, 220, 156, 108, 63, 91, 64, 105, 50, 50, 2, 253, 183, (41,180): 186, 186, 195, 49, 156, 234, 66, 66, 234, 14, 14, 14, 108, (41,193): 63, 180, 187, 91, 252, 91, 27, 183, 223, 97, 223, 105, (41,205): 138, 182, 49, 156, 63, 187, 8, 99, 242, 226, 16, 238, 151, (41,218): 189, 148, 39, 10, 39, 82, 26, 144, 150, 56, 56, 151, 29, (41,231): 25, 15, 207, 14, 204, 33, 33, 33, 79, 232, 18, 234, 241, (41,244): 72, 128, 128, 116, 46, 128, 146, 234, 105, 72, 234, 46, (41,256): 221, 18, 195, 72, 49, 14, 234, 116, 79, 72, 49, 49, 195, (41,269): 156, 14, 72, 195, 79, 128, 72, 128, 186, 186, 186, 11, 33, (41,282): 156, 49, 49, 156, 195, 156, 104, 253, 252, 2, 186, 79, (41,294): 220, 156, 156, 221, 221, 186, 46, 33, 221, 3, 128, 221, (41,306): 221, 128, 128, 33, 79, 33, 33, 119, 117, 117, 117, 35, 35, (41,319): 117, 35, 117, 117, 117, 117, 140, 117, 79, 185, 117, 140, (41,331): 117, 35, 117, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, (41,344): 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, (41,357): 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 117, 35, 33, 33, (41,371): 35, 245, 117, 232, (42,0): 185, 241, 24, 60, 20, 237, 45, 15, 229, 59, 149, 233, 6, 41, (42,14): 209, 10, 83, 148, 7, 92, 6, 41, 60, 74, 60, 228, 194, 20, (42,28): 62, 219, 251, 103, 185, 185, 185, 33, 185, 18, 195, 66, (42,40): 186, 195, 50, 224, 108, 46, 156, 220, 156, 222, 156, 156, (42,52): 63, 78, 63, 156, 50, 187, 63, 195, 63, 253, 97, 18, 18, 18, (42,66): 33, 128, 33, 33, 128, 33, 128, 117, 35, 117, 35, 185, 66, (42,79): 125, 33, 119, 119, 119, 201, 139, 201, 145, 236, 236, 6, (42,91): 233, 58, 59, 214, 198, 189, 29, 56, 151, 115, 56, 56, 151, (42,104): 151, 16, 89, 214, 89, 178, 27, 63, 14, 219, 55, 55, 35, (42,117): 35, 79, 185, 185, 14, 108, 220, 181, 108, 46, 186, 156, (42,129): 14, 221, 221, 63, 14, 33, 195, 18, 116, 79, 72, 33, 72, (42,142): 72, 18, 195, 100, 104, 123, 123, 27, 180, 220, 66, 63, (42,154): 108, 63, 63, 2, 187, 64, 70, 123, 27, 187, 27, 123, 104, (42,167): 253, 156, 156, 50, 49, 156, 138, 156, 49, 146, 78, 63, 64, (42,180): 156, 195, 49, 185, 156, 66, 234, 14, 100, 100, 100, 14, (42,192): 14, 63, 63, 2, 187, 253, 187, 183, 253, 253, 64, 64, 222, (42,205): 220, 78, 63, 156, 156, 63, 226, 89, 193, 16, 16, 189, 56, (42,218): 69, 4, 148, 148, 10, 82, 26, 144, 150, 212, 56, 151, 29, (42,231): 15, 74, 231, 28, 14, 204, 79, 33, 35, 128, 245, 11, 18, (42,244): 220, 66, 33, 128, 221, 128, 220, 72, 108, 50, 220, 11, (42,256): 116, 72, 72, 72, 186, 195, 14, 50, 186, 116, 66, 220, 63, (42,269): 27, 104, 156, 195, 220, 195, 79, 11, 66, 14, 156, 186, 79, (42,282): 72, 66, 220, 63, 156, 18, 63, 156, 195, 195, 72, 72, 72, (42,295): 186, 156, 116, 221, 195, 186, 46, 46, 186, 128, 128, 128, (42,307): 128, 33, 221, 221, 33, 33, 119, 35, 117, 117, 35, 117, (42,319): 117, 35, 117, 117, 201, 117, 140, 140, 117, 117, 140, 147, (42,331): 117, 35, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (42,344): 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, (42,357): 35, 35, 35, 35, 117, 35, 35, 35, 35, 35, 35, 35, 33, 79, (42,371): 128, 117, 245, 35, (43,0): 103, 38, 233, 76, 243, 41, 228, 60, 7, 149, 60, 213, 173, (43,13): 213, 209, 39, 75, 23, 209, 213, 173, 20, 60, 74, 60, 60, (43,26): 142, 102, 103, 219, 194, 243, 185, 71, 236, 119, 232, 119, (43,38): 79, 221, 195, 220, 72, 186, 195, 49, 195, 180, 108, 50, (43,50): 186, 186, 146, 156, 50, 50, 180, 50, 104, 234, 195, 63, (43,62): 104, 14, 72, 79, 232, 232, 221, 35, 128, 186, 117, 11, 35, (43,75): 35, 88, 55, 185, 185, 119, 119, 201, 35, 139, 55, 55, 55, (43,88): 243, 236, 55, 243, 251, 15, 59, 237, 58, 211, 238, 69, 238, (43,101): 238, 115, 151, 151, 59, 59, 229, 53, 216, 246, 241, 100, (43,113): 38, 18, 33, 117, 119, 79, 185, 186, 220, 63, 183, 27, 183, (43,126): 50, 183, 156, 146, 79, 186, 14, 2, 63, 204, 195, 79, 33, (43,139): 128, 128, 33, 116, 221, 72, 14, 108, 100, 108, 180, 108, (43,151): 72, 195, 14, 100, 100, 108, 180, 2, 104, 187, 252, 252, (43,163): 187, 183, 175, 180, 63, 195, 3, 156, 49, 49, 49, 46, 46, (43,176): 116, 156, 138, 91, 156, 49, 146, 221, 18, 72, 204, 195, (43,188): 66, 234, 66, 195, 241, 220, 100, 63, 253, 187, 105, 91, (43,200): 27, 105, 253, 91, 181, 138, 105, 137, 180, 14, 14, 252, (43,212): 53, 16, 16, 189, 29, 83, 212, 85, 148, 10, 77, 77, 30, 52, (43,226): 150, 150, 212, 56, 29, 237, 231, 14, 204, 232, 35, 79, 33, (43,239): 35, 116, 195, 49, 195, 234, 116, 221, 128, 108, 49, 63, (43,251): 108, 46, 220, 49, 146, 234, 234, 220, 50, 156, 234, 220, (43,263): 63, 195, 14, 183, 123, 253, 2, 104, 104, 14, 156, 49, 156, (43,276): 186, 156, 108, 180, 63, 220, 195, 195, 220, 108, 195, 11, (43,288): 66, 14, 108, 28, 108, 66, 72, 220, 116, 186, 49, 195, 3, (43,301): 195, 186, 221, 224, 128, 224, 128, 128, 221, 33, 128, 33, (43,313): 128, 35, 35, 117, 117, 201, 35, 117, 117, 117, 35, 35, (43,325): 117, 117, 117, 117, 117, 117, 35, 35, 140, 117, 35, 35, (43,337): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (43,350): 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, (43,364): 117, 35, 35, 35, 117, 33, 185, 33, 33, 35, 117, (44,0): 233, 71, 20, 15, 23, 31, 215, 228, 209, 231, 60, 92, 213, (44,13): 31, 77, 211, 4, 149, 228, 76, 213, 60, 74, 31, 153, 74, (44,26): 237, 62, 113, 103, 28, 103, 236, 185, 79, 55, 33, 79, 33, (44,39): 33, 221, 221, 156, 33, 187, 185, 186, 156, 100, 80, 33, 46, (44,52): 72, 186, 220, 104, 63, 49, 187, 8, 180, 14, 195, 2, 79, (44,65): 232, 88, 245, 33, 35, 128, 195, 117, 128, 185, 185, 35, (44,77): 119, 55, 119, 201, 119, 119, 117, 119, 33, 125, 71, 185, (44,89): 55, 71, 20, 38, 194, 237, 60, 92, 7, 206, 4, 43, 83, 115, (44,103): 212, 151, 4, 45, 188, 152, 248, 53, 246, 62, 241, 38, 185, (44,116): 139, 33, 18, 79, 66, 49, 49, 181, 91, 223, 183, 36, 64, (44,129): 63, 49, 14, 180, 2, 24, 187, 100, 18, 33, 232, 33, 116, (44,142): 195, 186, 128, 116, 195, 156, 220, 63, 14, 14, 195, 63, (44,154): 91, 253, 187, 104, 175, 175, 2, 252, 93, 104, 27, 104, (44,166): 156, 156, 66, 33, 3, 220, 138, 156, 186, 80, 49, 49, 138, (44,179): 108, 116, 49, 72, 72, 128, 33, 116, 79, 79, 79, 185, 204, (44,192): 234, 100, 63, 63, 187, 252, 183, 175, 27, 27, 183, 64, 64, (44,205): 176, 181, 137, 175, 104, 24, 28, 142, 188, 59, 29, 69, 83, (44,218): 56, 212, 211, 77, 73, 77, 30, 144, 52, 227, 212, 56, 238, (44,231): 149, 60, 62, 62, 66, 195, 195, 79, 128, 33, 195, 195, 116, (44,244): 72, 156, 234, 49, 234, 116, 181, 223, 234, 116, 46, 253, (44,256): 183, 181, 50, 156, 49, 49, 108, 2, 183, 50, 2, 242, 27, (44,269): 63, 28, 253, 180, 186, 33, 108, 66, 221, 221, 50, 108, (44,281): 220, 156, 195, 186, 33, 33, 35, 11, 185, 186, 195, 14, 72, (44,294): 79, 49, 128, 186, 156, 220, 49, 49, 156, 186, 46, 186, (44,306): 116, 221, 221, 79, 221, 33, 128, 119, 128, 117, 35, 35, (44,318): 117, 35, 119, 117, 117, 117, 35, 117, 117, 35, 35, 117, (44,330): 35, 35, 117, 117, 117, 35, 35, 117, 35, 117, 35, 117, 35, (44,343): 117, 35, 117, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, (44,356): 35, 35, 35, 35, 35, 117, 35, 117, 35, 119, 119, 128, 232, (44,369): 35, 33, 33, 33, 232, 117, (45,0): 62, 243, 60, 238, 115, 149, 39, 149, 45, 149, 31, 228, 74, (45,13): 47, 23, 47, 206, 7, 20, 76, 228, 58, 23, 60, 153, 58, 15, (45,27): 233, 76, 233, 60, 233, 38, 38, 204, 185, 185, 33, 79, 128, (45,40): 35, 128, 35, 66, 156, 66, 35, 185, 195, 186, 128, 33, 116, (45,53): 33, 100, 183, 178, 216, 14, 2, 79, 245, 33, 128, 33, 232, (45,66): 147, 88, 117, 11, 128, 186, 185, 221, 125, 186, 55, 35, (45,78): 119, 117, 35, 35, 201, 117, 117, 119, 79, 185, 185, 185, (45,90): 204, 62, 103, 243, 194, 228, 7, 74, 73, 149, 83, 69, 115, (45,103): 85, 115, 211, 211, 162, 59, 189, 16, 193, 241, 38, 204, (45,115): 79, 232, 55, 79, 33, 79, 66, 66, 49, 156, 183, 105, 105, (45,128): 121, 223, 108, 79, 234, 14, 66, 2, 14, 18, 79, 128, 116, (45,141): 72, 220, 49, 72, 128, 33, 66, 220, 66, 66, 108, 49, 14, (45,154): 180, 63, 187, 27, 123, 104, 187, 104, 93, 252, 175, 51, (45,166): 234, 14, 180, 195, 156, 105, 183, 183, 181, 183, 156, 146, (45,178): 63, 220, 46, 49, 116, 46, 128, 33, 186, 79, 33, 33, 79, (45,191): 72, 14, 100, 14, 14, 180, 253, 27, 123, 91, 141, 141, 36, (45,204): 97, 90, 183, 177, 37, 249, 25, 153, 38, 228, 149, 83, 83, (45,217): 54, 69, 244, 148, 77, 77, 40, 40, 208, 168, 52, 212, 56, (45,230): 83, 149, 62, 231, 180, 28, 241, 195, 18, 221, 117, 221, (45,242): 11, 88, 49, 91, 91, 63, 253, 72, 49, 234, 72, 116, 2, 36, (45,256): 183, 181, 156, 146, 186, 116, 195, 108, 104, 186, 117, (45,267): 100, 104, 63, 108, 104, 2, 108, 195, 49, 33, 116, 221, 33, (45,280): 79, 186, 33, 79, 186, 72, 49, 72, 33, 79, 33, 195, 2, 63, (45,294): 186, 33, 116, 33, 3, 220, 156, 186, 146, 220, 186, 195, (45,306): 195, 186, 79, 221, 33, 33, 128, 35, 35, 117, 35, 35, 35, (45,319): 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (45,331): 117, 117, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, 35, (45,344): 117, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, (45,357): 35, 35, 35, 35, 35, 35, 35, 35, 119, 119, 33, 33, 35, 117, (45,371): 35, 33, 33, 128, (46,0): 142, 228, 243, 209, 209, 228, 47, 4, 115, 45, 237, 237, 4, (46,13): 83, 148, 7, 74, 60, 228, 20, 231, 45, 157, 188, 237, 15, (46,26): 58, 20, 60, 20, 194, 228, 194, 62, 38, 18, 79, 185, 33, (46,39): 119, 221, 35, 186, 35, 241, 33, 185, 33, 79, 72, 33, 221, (46,52): 185, 221, 195, 14, 72, 104, 18, 18, 128, 33, 79, 232, 232, (46,65): 232, 88, 117, 33, 33, 33, 195, 156, 125, 33, 79, 35, 119, (46,78): 119, 139, 139, 119, 119, 33, 35, 117, 128, 221, 195, 66, (46,90): 66, 233, 38, 243, 228, 228, 196, 142, 7, 149, 197, 56, 244, (46,103): 43, 43, 4, 43, 43, 4, 162, 98, 16, 142, 66, 125, 204, 79, (46,117): 232, 232, 35, 33, 49, 63, 14, 156, 63, 50, 14, 3, 2, 108, (46,131): 186, 66, 234, 204, 195, 66, 79, 18, 33, 116, 186, 234, 49, (46,144): 63, 72, 128, 79, 195, 195, 195, 66, 180, 156, 108, 63, 27, (46,157): 123, 121, 175, 8, 226, 226, 70, 175, 51, 195, 195, 234, (46,169): 116, 186, 156, 50, 108, 182, 108, 182, 49, 222, 50, 146, (46,181): 49, 72, 245, 116, 72, 195, 204, 79, 33, 79, 18, 204, 234, (46,194): 234, 66, 220, 2, 105, 91, 183, 64, 64, 36, 177, 97, 177, (46,207): 97, 97, 226, 226, 24, 243, 41, 20, 148, 148, 10, 211, 211, (46,220): 77, 209, 106, 77, 131, 208, 144, 227, 150, 212, 83, 58, (46,232): 74, 194, 204, 79, 35, 35, 79, 72, 116, 220, 220, 186, 72, (46,245): 220, 63, 105, 50, 108, 180, 105, 105, 108, 108, 72, 234, (46,257): 182, 180, 181, 220, 116, 33, 221, 195, 72, 33, 116, 195, (46,269): 33, 204, 175, 180, 253, 63, 72, 128, 156, 156, 128, 128, (46,281): 221, 11, 186, 156, 108, 63, 156, 66, 108, 108, 100, 108, (46,293): 156, 186, 33, 116, 117, 224, 195, 195, 116, 195, 146, 195, (46,305): 49, 156, 195, 116, 221, 33, 33, 33, 119, 35, 35, 33, 119, (46,318): 119, 35, 117, 35, 35, 117, 117, 117, 117, 117, 117, 117, (46,330): 117, 117, 117, 117, 35, 35, 35, 117, 35, 117, 35, 117, 35, (46,343): 117, 35, 201, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, (46,356): 35, 35, 35, 35, 35, 35, 35, 35, 119, 128, 33, 33, 33, 35, (46,370): 35, 33, 185, 185, 33, (47,0): 58, 58, 228, 213, 41, 92, 211, 4, 29, 29, 151, 56, 69, 75, (47,14): 209, 209, 60, 60, 153, 60, 74, 198, 16, 238, 198, 206, 58, (47,27): 60, 207, 60, 228, 231, 62, 241, 38, 236, 79, 185, 79, 221, (47,40): 185, 221, 195, 186, 185, 185, 125, 117, 221, 156, 49, 195, (47,52): 186, 116, 79, 128, 128, 33, 33, 245, 33, 232, 147, 33, 210, (47,65): 245, 117, 128, 186, 66, 156, 100, 63, 195, 128, 35, 35, 79, (47,78): 185, 35, 119, 55, 125, 219, 185, 128, 128, 33, 195, 100, (47,90): 14, 100, 231, 62, 20, 103, 20, 163, 142, 206, 56, 151, 212, (47,103): 212, 244, 115, 85, 217, 148, 7, 127, 151, 152, 28, 38, (47,115): 194, 241, 33, 35, 33, 33, 232, 79, 186, 234, 63, 220, 156, (47,128): 195, 186, 220, 63, 79, 79, 234, 204, 204, 79, 72, 79, 18, (47,141): 33, 195, 72, 14, 66, 186, 18, 253, 121, 121, 183, 220, 72, (47,154): 100, 63, 2, 2, 123, 242, 37, 89, 214, 99, 99, 175, 100, (47,167): 14, 100, 14, 108, 220, 50, 108, 156, 234, 78, 222, 80, (47,179): 182, 80, 234, 63, 46, 234, 234, 234, 195, 18, 79, 232, 33, (47,192): 79, 66, 66, 234, 100, 108, 63, 63, 63, 100, 181, 91, 27, (47,205): 141, 223, 181, 51, 28, 24, 60, 233, 219, 41, 7, 211, 47, (47,218): 54, 47, 77, 32, 215, 42, 230, 208, 144, 144, 212, 212, 83, (47,231): 23, 74, 62, 233, 241, 14, 66, 18, 116, 195, 49, 46, 128, (47,244): 221, 186, 116, 79, 156, 176, 108, 27, 50, 234, 234, 181, (47,256): 50, 180, 105, 108, 72, 224, 72, 50, 180, 180, 116, 245, (47,268): 79, 33, 88, 79, 220, 220, 66, 156, 186, 156, 49, 66, 221, (47,281): 66, 72, 14, 14, 156, 100, 234, 180, 14, 18, 79, 156, 63, (47,294): 220, 195, 221, 128, 221, 46, 116, 3, 195, 224, 49, 220, (47,306): 50, 156, 186, 186, 185, 186, 79, 33, 128, 119, 33, 185, (47,318): 79, 119, 88, 35, 35, 35, 117, 117, 117, 117, 117, 117, (47,330): 117, 117, 35, 119, 117, 140, 117, 117, 35, 117, 117, 117, (47,342): 35, 117, 117, 35, 117, 117, 35, 117, 35, 117, 35, 35, 35, (47,355): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 55, 33, 185, 35, (47,369): 35, 33, 66, 156, 195, 79, (48,0): 45, 149, 228, 39, 31, 73, 82, 83, 115, 115, 69, 4, 47, 45, (48,14): 7, 213, 243, 62, 142, 23, 60, 45, 69, 56, 4, 149, 23, 23, (48,28): 231, 231, 24, 62, 228, 233, 204, 18, 185, 79, 186, 186, 46, (48,41): 128, 221, 195, 195, 185, 185, 204, 220, 180, 63, 80, 195, (48,53): 156, 146, 128, 128, 128, 128, 210, 221, 72, 72, 128, 128, (48,65): 11, 11, 117, 221, 121, 63, 195, 156, 33, 195, 186, 35, 195, (48,78): 128, 66, 51, 185, 119, 14, 14, 119, 35, 185, 63, 28, 62, (48,91): 125, 103, 62, 62, 233, 219, 60, 194, 74, 29, 151, 56, 56, (48,104): 56, 69, 69, 4, 206, 159, 7, 75, 16, 237, 58, 70, 246, 71, (48,118): 79, 232, 232, 49, 79, 116, 72, 33, 195, 14, 72, 79, 156, (48,131): 63, 156, 18, 79, 128, 128, 66, 2, 104, 63, 18, 79, 33, 79, (48,145): 79, 79, 72, 180, 183, 252, 180, 156, 63, 187, 104, 51, 51, (48,158): 93, 70, 53, 178, 89, 178, 95, 242, 252, 187, 2, 63, 108, (48,171): 63, 181, 176, 176, 222, 176, 90, 124, 222, 111, 3, 46, (48,183): 111, 116, 46, 49, 49, 14, 186, 185, 186, 18, 195, 66, 66, (48,196): 195, 66, 100, 180, 49, 156, 100, 63, 28, 63, 28, 28, 100, (48,209): 156, 38, 38, 243, 236, 243, 228, 45, 29, 56, 244, 148, 73, (48,222): 106, 48, 96, 240, 150, 212, 212, 56, 4, 149, 192, 229, (48,234): 252, 14, 66, 221, 11, 221, 49, 221, 116, 186, 116, 186, (48,246): 50, 105, 27, 104, 180, 128, 116, 187, 97, 175, 108, 63, (48,258): 63, 156, 50, 128, 72, 121, 216, 220, 195, 14, 108, 234, (48,270): 35, 221, 128, 116, 156, 72, 156, 185, 156, 180, 220, 186, (48,282): 27, 14, 180, 185, 49, 79, 128, 18, 245, 128, 185, 14, 195, (48,295): 220, 253, 78, 195, 46, 146, 156, 156, 181, 146, 186, 50, (48,307): 116, 186, 221, 116, 156, 186, 185, 128, 119, 33, 55, 33, (48,319): 55, 117, 35, 35, 117, 201, 117, 35, 117, 201, 117, 35, 35, (48,332): 117, 117, 35, 35, 117, 35, 117, 35, 201, 117, 117, 35, 35, (48,345): 117, 35, 35, 117, 201, 117, 117, 117, 117, 117, 117, 117, (48,357): 117, 117, 117, 119, 35, 128, 33, 35, 33, 125, 185, 33, (48,369): 232, 117, 232, 232, 33, 232, (49,0): 238, 110, 92, 228, 215, 106, 47, 43, 82, 82, 211, 39, 7, 39, (49,14): 209, 213, 28, 153, 74, 58, 31, 47, 197, 69, 29, 211, 206, (49,27): 237, 60, 231, 231, 241, 233, 233, 204, 185, 79, 185, 72, (49,39): 146, 186, 46, 116, 186, 186, 119, 79, 195, 3, 156, 49, 3, (49,52): 186, 3, 186, 33, 11, 128, 221, 221, 72, 50, 104, 27, 181, (49,65): 33, 46, 156, 33, 146, 221, 186, 195, 185, 156, 180, 108, (49,77): 63, 221, 117, 220, 185, 128, 185, 125, 66, 125, 35, 103, (49,89): 241, 66, 219, 125, 38, 219, 71, 219, 62, 103, 233, 45, 29, (49,102): 56, 151, 212, 115, 69, 115, 189, 122, 23, 237, 59, 237, (49,114): 60, 58, 25, 24, 38, 33, 79, 33, 128, 128, 79, 72, 33, 33, (49,128): 186, 33, 72, 66, 72, 72, 72, 221, 33, 234, 252, 27, 180, (49,141): 204, 33, 185, 79, 79, 18, 79, 186, 49, 220, 220, 104, 104, (49,154): 27, 242, 242, 242, 246, 15, 25, 95, 214, 214, 89, 53, 27, (49,167): 104, 70, 253, 2, 63, 50, 50, 180, 203, 12, 12, 203, 22, 3, (49,181): 3, 133, 3, 50, 156, 156, 100, 156, 66, 195, 100, 156, 66, (49,194): 66, 156, 108, 108, 156, 195, 49, 66, 195, 66, 241, 14, (49,206): 194, 100, 14, 241, 62, 100, 241, 243, 120, 243, 76, 7, 83, (49,219): 56, 115, 82, 77, 42, 136, 255, 52, 212, 56, 56, 4, 149, (49,232): 194, 24, 62, 79, 79, 221, 117, 46, 33, 108, 138, 221, 116, (49,245): 183, 121, 253, 108, 220, 234, 72, 234, 180, 104, 2, 253, (49,257): 108, 27, 63, 253, 2, 117, 108, 27, 27, 108, 116, 33, 186, (49,270): 116, 11, 79, 50, 220, 50, 221, 195, 195, 2, 104, 14, 185, (49,283): 108, 33, 195, 245, 66, 234, 195, 186, 234, 79, 72, 156, (49,295): 181, 177, 175, 220, 186, 195, 3, 46, 33, 80, 195, 108, (49,307): 146, 195, 186, 186, 66, 195, 185, 33, 35, 232, 119, 119, (49,319): 35, 35, 117, 35, 117, 35, 117, 35, 117, 117, 117, 35, 117, (49,332): 35, 35, 117, 117, 35, 117, 35, 117, 117, 35, 35, 35, 35, (49,345): 35, 35, 117, 35, 117, 117, 35, 117, 117, 35, 35, 117, 35, (49,358): 117, 117, 35, 117, 35, 33, 117, 128, 79, 79, 117, 117, (49,370): 245, 117, 232, 33, 232, (50,0): 189, 206, 7, 7, 206, 39, 211, 47, 215, 106, 209, 92, 213, (50,13): 92, 76, 233, 74, 51, 207, 58, 149, 45, 83, 69, 115, 211, (50,26): 23, 149, 74, 58, 207, 100, 62, 233, 204, 71, 33, 33, 186, (50,39): 195, 146, 186, 46, 125, 186, 33, 119, 125, 128, 46, 221, (50,51): 221, 221, 186, 46, 46, 221, 224, 221, 72, 234, 108, 27, 36, (50,64): 121, 49, 46, 72, 11, 195, 180, 108, 220, 146, 33, 33, 33, (50,77): 63, 220, 186, 125, 66, 66, 33, 119, 125, 195, 119, 79, 125, (50,90): 66, 103, 219, 219, 125, 185, 71, 38, 236, 145, 76, 31, 149, (50,103): 54, 56, 56, 56, 56, 151, 151, 23, 20, 237, 237, 20, 233, (50,116): 84, 192, 241, 232, 79, 35, 18, 33, 33, 72, 128, 35, 79, (50,129): 79, 18, 72, 72, 195, 49, 72, 72, 49, 63, 93, 104, 234, 55, (50,143): 232, 245, 35, 221, 18, 116, 195, 14, 181, 100, 100, 180, (50,155): 27, 249, 178, 95, 226, 249, 89, 214, 214, 214, 37, 226, (50,167): 226, 8, 123, 121, 216, 123, 183, 91, 183, 90, 90, 124, 12, (50,180): 124, 124, 181, 181, 138, 183, 253, 63, 195, 180, 100, 66, (50,192): 100, 14, 100, 180, 187, 187, 108, 156, 66, 125, 221, 55, (50,204): 125, 66, 14, 62, 14, 14, 100, 153, 28, 103, 243, 71, 250, (50,217): 7, 54, 69, 244, 148, 48, 215, 32, 230, 227, 212, 56, 212, (50,230): 4, 74, 60, 24, 28, 14, 100, 49, 128, 11, 49, 186, 72, 156, (50,244): 50, 156, 50, 63, 14, 63, 234, 195, 187, 216, 121, 253, (50,256): 175, 183, 108, 220, 108, 108, 195, 14, 220, 63, 195, 220, (50,268): 14, 11, 35, 186, 33, 50, 156, 108, 79, 72, 128, 195, 220, (50,281): 49, 33, 33, 33, 66, 33, 79, 232, 33, 79, 186, 35, 220, (50,294): 108, 125, 108, 105, 105, 220, 49, 146, 49, 50, 156, 146, (50,306): 50, 72, 195, 221, 128, 128, 125, 79, 119, 35, 35, 117, 35, (50,319): 117, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 117, 35, (50,332): 117, 35, 117, 35, 117, 35, 35, 35, 35, 117, 35, 117, 35, (50,345): 35, 35, 35, 117, 35, 117, 117, 117, 35, 117, 117, 117, (50,357): 117, 117, 117, 128, 88, 35, 35, 117, 35, 33, 128, 35, 35, (50,370): 35, 128, 33, 33, 33, (51,0): 56, 165, 45, 211, 45, 39, 127, 209, 107, 6, 41, 6, 6, 6, 71, (51,15): 213, 28, 192, 74, 74, 196, 206, 148, 43, 115, 4, 206, 237, (51,28): 74, 58, 51, 74, 100, 62, 233, 185, 79, 185, 186, 195, 195, (51,41): 186, 186, 195, 125, 33, 232, 33, 128, 35, 128, 221, 46, (51,53): 185, 186, 195, 72, 116, 116, 72, 234, 108, 181, 104, 36, (51,65): 105, 195, 221, 46, 156, 175, 63, 72, 63, 156, 224, 88, 156, (51,78): 63, 221, 185, 195, 241, 125, 119, 35, 185, 33, 119, 125, (51,90): 219, 219, 195, 219, 125, 79, 201, 55, 55, 145, 71, 243, (51,102): 213, 7, 23, 4, 69, 56, 151, 151, 75, 31, 228, 58, 20, 204, (51,116): 231, 231, 241, 33, 35, 35, 195, 72, 33, 204, 79, 128, 221, (51,129): 18, 49, 66, 195, 156, 49, 186, 49, 18, 234, 2, 187, 100, (51,142): 18, 33, 66, 204, 195, 14, 100, 156, 14, 63, 181, 2, 252, (51,155): 8, 178, 214, 214, 178, 89, 214, 214, 214, 214, 178, 249, (51,167): 178, 214, 89, 214, 214, 37, 99, 177, 97, 36, 36, 64, 141, (51,180): 141, 223, 223, 183, 180, 108, 63, 27, 187, 14, 195, 14, (51,192): 241, 14, 14, 220, 14, 14, 220, 14, 156, 195, 221, 33, 33, (51,205): 125, 219, 66, 14, 14, 62, 14, 62, 251, 251, 76, 113, 41, (51,218): 250, 148, 47, 148, 73, 136, 190, 26, 227, 150, 56, 56, 45, (51,231): 207, 60, 194, 66, 18, 66, 49, 220, 181, 183, 50, 116, 116, (51,244): 221, 128, 116, 2, 156, 108, 156, 180, 108, 63, 104, 89, (51,256): 27, 8, 108, 187, 156, 33, 221, 128, 27, 123, 220, 221, 14, (51,269): 108, 14, 221, 221, 49, 156, 195, 186, 186, 33, 117, 35, (51,281): 185, 195, 245, 66, 18, 18, 128, 79, 72, 79, 79, 11, 156, (51,294): 49, 117, 195, 156, 50, 156, 50, 63, 156, 3, 156, 195, 220, (51,307): 186, 195, 221, 185, 128, 33, 128, 35, 117, 117, 35, 117, (51,319): 201, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (51,332): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, (51,345): 35, 117, 35, 35, 117, 35, 117, 35, 117, 117, 117, 35, 117, (51,358): 128, 35, 117, 117, 35, 119, 11, 35, 119, 117, 128, 35, (51,370): 232, 33, 79, 79, 185, (52,0): 151, 189, 4, 45, 101, 213, 213, 173, 173, 145, 145, 145, (52,12): 236, 236, 236, 243, 246, 53, 15, 58, 149, 23, 149, 83, 56, (52,25): 29, 4, 237, 74, 24, 24, 100, 62, 233, 233, 18, 185, 18, (52,38): 156, 50, 156, 146, 186, 195, 186, 33, 35, 117, 35, 117, (52,50): 128, 185, 72, 186, 195, 14, 156, 156, 156, 49, 220, 108, (52,62): 63, 108, 253, 180, 49, 234, 108, 221, 156, 63, 195, 252, (52,74): 183, 2, 186, 66, 156, 185, 185, 35, 33, 185, 79, 33, 55, (52,87): 33, 55, 33, 185, 185, 185, 185, 185, 55, 201, 119, 55, 236, (52,100): 6, 243, 213, 215, 73, 4, 56, 151, 151, 151, 122, 60, 20, (52,113): 228, 20, 20, 219, 38, 241, 236, 79, 33, 232, 79, 33, 116, (52,126): 66, 232, 33, 72, 195, 195, 49, 156, 195, 186, 116, 116, (52,138): 195, 63, 28, 14, 14, 24, 24, 108, 100, 180, 180, 100, 220, (52,151): 108, 104, 175, 99, 178, 214, 214, 214, 214, 178, 214, 214, (52,163): 214, 214, 214, 193, 95, 89, 178, 214, 214, 89, 37, 216, (52,175): 123, 177, 216, 223, 64, 8, 121, 97, 175, 108, 187, 252, (52,187): 180, 180, 63, 28, 66, 14, 14, 14, 241, 125, 195, 156, 100, (52,200): 156, 66, 125, 185, 33, 79, 185, 125, 66, 103, 195, 125, (52,212): 219, 103, 103, 76, 213, 228, 218, 7, 112, 211, 77, 48, 42, (52,225): 26, 13, 150, 56, 69, 47, 74, 231, 231, 207, 180, 100, 72, (52,238): 79, 72, 156, 220, 186, 128, 128, 128, 33, 49, 72, 63, 63, (52,251): 2, 100, 234, 195, 180, 64, 175, 253, 156, 221, 108, 14, (52,263): 49, 2, 121, 216, 183, 108, 116, 210, 186, 49, 156, 195, (52,275): 221, 186, 186, 72, 195, 72, 195, 33, 195, 79, 33, 245, 79, (52,288): 245, 128, 245, 79, 33, 79, 195, 27, 116, 186, 72, 186, (52,300): 146, 49, 186, 210, 221, 46, 186, 128, 116, 128, 185, 128, (52,312): 35, 117, 117, 117, 117, 35, 119, 35, 117, 117, 35, 117, (52,324): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (52,337): 117, 35, 201, 117, 35, 117, 35, 35, 35, 35, 35, 117, 201, (52,350): 117, 117, 35, 117, 11, 35, 11, 35, 117, 35, 128, 117, 35, (52,363): 128, 117, 117, 128, 117, 117, 245, 245, 35, 232, 79, 79, (53,0): 56, 56, 162, 206, 213, 113, 6, 71, 145, 199, 145, 139, 236, (53,13): 71, 236, 185, 251, 24, 194, 228, 31, 7, 73, 45, 212, 56, (53,26): 59, 149, 194, 28, 28, 100, 62, 62, 241, 204, 18, 18, 156, (53,39): 220, 180, 156, 195, 79, 33, 33, 128, 119, 33, 35, 33, 185, (53,52): 185, 185, 195, 14, 50, 63, 180, 220, 234, 220, 50, 108, 63, (53,65): 181, 234, 49, 63, 128, 221, 146, 220, 220, 63, 100, 33, (53,77): 186, 220, 252, 195, 185, 185, 185, 33, 33, 79, 55, 33, 55, (53,90): 35, 119, 55, 55, 185, 55, 185, 55, 201, 201, 236, 213, 31, (53,103): 7, 29, 151, 151, 56, 29, 56, 238, 92, 20, 233, 38, 62, 71, (53,117): 71, 204, 79, 79, 66, 79, 66, 18, 79, 241, 72, 33, 186, 79, (53,131): 33, 186, 72, 72, 195, 72, 116, 186, 66, 100, 180, 187, 93, (53,144): 180, 63, 28, 63, 108, 14, 63, 51, 2, 175, 216, 214, 214, (53,157): 214, 214, 214, 248, 89, 89, 214, 214, 248, 16, 151, 152, (53,169): 53, 95, 89, 214, 214, 37, 242, 249, 37, 99, 242, 121, 37, (53,182): 214, 216, 214, 70, 93, 27, 93, 66, 66, 63, 153, 194, 241, (53,195): 66, 66, 156, 14, 63, 156, 156, 49, 195, 185, 79, 33, 33, (53,208): 125, 195, 219, 125, 185, 113, 113, 71, 145, 213, 92, 215, (53,220): 73, 82, 82, 106, 42, 26, 240, 244, 212, 29, 206, 60, 60, (53,233): 100, 100, 108, 220, 49, 220, 181, 195, 220, 63, 253, 104, (53,245): 49, 221, 66, 123, 121, 104, 66, 108, 8, 27, 234, 220, 183, (53,258): 180, 108, 108, 123, 177, 195, 108, 183, 64, 156, 195, 180, (53,270): 156, 220, 116, 195, 186, 186, 128, 116, 79, 49, 18, 234, (53,282): 245, 116, 35, 33, 245, 128, 18, 14, 186, 18, 221, 33, 117, (53,295): 220, 128, 33, 221, 221, 128, 128, 116, 221, 33, 221, 221, (53,307): 117, 128, 88, 33, 117, 35, 117, 117, 117, 117, 117, 117, (53,319): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (53,332): 117, 35, 117, 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, (53,345): 35, 35, 35, 117, 35, 35, 117, 117, 117, 117, 35, 35, 35, (53,358): 128, 35, 128, 117, 35, 35, 117, 35, 128, 35, 245, 245, 35, (53,371): 35, 35, 232, 79, (54,0): 115, 29, 75, 206, 31, 76, 76, 6, 119, 139, 201, 139, 119, (54,13): 125, 79, 71, 55, 233, 243, 20, 228, 196, 39, 45, 115, 189, (54,26): 4, 231, 20, 194, 100, 194, 100, 194, 62, 204, 18, 79, 125, (54,39): 49, 181, 220, 186, 221, 33, 128, 33, 33, 119, 119, 119, 33, (54,52): 79, 79, 18, 156, 14, 220, 50, 220, 234, 146, 49, 234, 2, (54,65): 91, 180, 195, 49, 116, 186, 33, 221, 117, 221, 186, 33, 14, (54,78): 28, 175, 180, 14, 156, 66, 33, 119, 33, 33, 33, 55, 33, (54,91): 119, 119, 119, 55, 55, 55, 119, 55, 236, 243, 74, 45, 45, (54,104): 56, 151, 56, 69, 122, 56, 189, 7, 233, 228, 76, 194, 233, (54,117): 204, 18, 71, 18, 14, 24, 104, 24, 241, 66, 100, 79, 79, (54,130): 128, 128, 186, 116, 186, 156, 220, 195, 33, 18, 220, 187, (54,142): 51, 187, 51, 207, 187, 180, 14, 241, 14, 2, 51, 70, 99, (54,155): 178, 178, 89, 89, 214, 214, 214, 248, 248, 214, 189, 16, (54,167): 151, 16, 59, 229, 53, 193, 178, 214, 214, 178, 214, 178, (54,179): 53, 37, 249, 214, 216, 178, 99, 70, 180, 28, 63, 100, 241, (54,192): 28, 14, 38, 219, 66, 241, 108, 63, 14, 156, 156, 156, 66, (54,205): 195, 185, 79, 125, 66, 241, 219, 71, 125, 113, 120, 196, (54,217): 211, 162, 39, 39, 82, 148, 200, 136, 40, 65, 244, 56, 29, (54,230): 237, 60, 62, 233, 14, 180, 100, 49, 186, 116, 186, 50, (54,242): 220, 156, 50, 156, 195, 156, 49, 241, 108, 63, 180, 220, (54,254): 66, 117, 63, 121, 108, 100, 49, 14, 37, 195, 79, 33, 156, (54,267): 183, 183, 2, 2, 121, 195, 72, 72, 195, 156, 186, 33, 79, (54,280): 128, 79, 18, 128, 79, 33, 100, 234, 18, 180, 63, 100, 195, (54,293): 14, 72, 116, 220, 79, 128, 128, 221, 72, 186, 11, 186, 66, (54,306): 72, 33, 221, 117, 79, 88, 35, 35, 117, 35, 117, 117, 117, (54,319): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (54,332): 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 201, 35, (54,345): 117, 35, 117, 35, 117, 117, 117, 35, 117, 117, 35, 117, (54,357): 128, 35, 35, 33, 117, 117, 128, 117, 35, 33, 35, 35, 128, (54,370): 33, 128, 128, 232, 128, (55,0): 56, 29, 4, 7, 250, 6, 219, 201, 145, 201, 79, 139, 119, 125, (55,14): 185, 125, 62, 194, 113, 243, 213, 60, 7, 206, 69, 189, 45, (55,27): 228, 38, 241, 62, 62, 62, 62, 241, 204, 185, 185, 195, 66, (55,40): 63, 156, 186, 79, 221, 79, 185, 79, 33, 232, 33, 119, 119, (55,53): 33, 79, 66, 49, 79, 79, 49, 220, 49, 116, 72, 46, 100, 104, (55,67): 180, 72, 195, 108, 108, 186, 128, 185, 33, 33, 253, 28, 63, (55,80): 123, 100, 185, 66, 219, 33, 117, 119, 119, 128, 55, 33, (55,92): 119, 117, 119, 33, 201, 119, 236, 55, 71, 60, 149, 58, 45, (55,105): 29, 56, 151, 29, 56, 189, 31, 76, 237, 194, 7, 28, 233, (55,118): 236, 66, 204, 14, 93, 242, 99, 27, 204, 241, 79, 186, 79, (55,131): 221, 72, 185, 221, 156, 50, 14, 195, 18, 66, 28, 180, 231, (55,144): 51, 51, 187, 207, 153, 180, 28, 231, 28, 63, 24, 93, 226, (55,157): 37, 214, 214, 214, 214, 89, 151, 214, 29, 152, 238, 29, (55,169): 75, 75, 238, 59, 238, 248, 214, 214, 214, 214, 95, 249, (55,181): 15, 246, 207, 28, 100, 38, 14, 241, 180, 194, 14, 187, (55,193): 142, 28, 241, 66, 156, 100, 2, 220, 14, 156, 14, 156, 156, (55,206): 195, 185, 185, 66, 66, 125, 185, 113, 71, 71, 173, 7, 47, (55,219): 127, 77, 39, 77, 32, 136, 40, 240, 212, 56, 115, 237, 194, (55,232): 231, 18, 79, 234, 220, 220, 156, 156, 33, 46, 221, 195, (55,244): 63, 50, 14, 104, 252, 63, 180, 66, 14, 100, 187, 108, 18, (55,257): 63, 175, 253, 186, 88, 181, 49, 11, 221, 33, 156, 220, 63, (55,270): 27, 105, 27, 156, 50, 72, 27, 156, 14, 186, 79, 128, 116, (55,283): 66, 18, 35, 93, 216, 156, 63, 104, 104, 79, 224, 185, 186, (55,296): 49, 79, 72, 195, 79, 79, 72, 79, 128, 79, 221, 35, 119, (55,309): 210, 33, 210, 117, 117, 117, 35, 35, 117, 201, 119, 117, (55,321): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (55,334): 117, 35, 117, 35, 35, 117, 35, 117, 117, 35, 35, 35, 35, (55,347): 35, 35, 117, 35, 117, 117, 117, 35, 11, 35, 35, 128, 35, (55,360): 128, 117, 117, 117, 11, 119, 33, 128, 245, 232, 33, 33, (55,372): 232, 117, 117, (56,0): 69, 4, 206, 149, 31, 71, 145, 55, 35, 55, 119, 185, 232, 18, (56,14): 185, 38, 153, 20, 243, 243, 228, 7, 7, 7, 75, 45, 60, 233, (56,28): 219, 71, 18, 18, 204, 38, 204, 79, 55, 79, 186, 185, 186, (56,41): 125, 186, 186, 185, 72, 125, 186, 55, 55, 232, 79, 185, 18, (56,54): 125, 72, 195, 195, 195, 195, 146, 72, 116, 128, 33, 72, 33, (56,67): 72, 220, 221, 63, 63, 80, 186, 156, 156, 185, 185, 219, 79, (56,80): 28, 37, 123, 35, 33, 33, 55, 128, 119, 35, 119, 33, 119, (56,93): 119, 119, 33, 117, 119, 55, 55, 55, 71, 20, 60, 149, 196, (56,106): 45, 75, 4, 189, 189, 127, 243, 20, 229, 229, 15, 233, 62, (56,119): 71, 185, 241, 180, 70, 178, 214, 252, 232, 185, 79, 232, (56,131): 128, 33, 221, 186, 186, 156, 195, 18, 195, 100, 28, 28, (56,143): 14, 24, 24, 207, 192, 252, 24, 28, 100, 100, 60, 24, 187, (56,156): 192, 175, 226, 37, 214, 214, 214, 151, 189, 29, 75, 4, 45, (56,169): 83, 238, 59, 229, 238, 248, 16, 95, 16, 248, 16, 15, 51, (56,182): 207, 62, 194, 66, 24, 192, 175, 24, 24, 28, 157, 214, 180, (56,195): 14, 219, 14, 66, 2, 253, 14, 156, 63, 108, 253, 66, 195, (56,208): 185, 125, 219, 219, 71, 120, 120, 71, 20, 31, 209, 73, (56,220): 209, 10, 77, 32, 32, 96, 82, 227, 69, 238, 115, 248, 15, (56,233): 28, 204, 14, 72, 72, 195, 2, 50, 220, 33, 33, 186, 180, (56,246): 108, 220, 70, 97, 216, 123, 180, 187, 14, 220, 79, 195, (56,258): 49, 14, 186, 72, 108, 186, 185, 33, 11, 128, 14, 195, 221, (56,271): 253, 183, 253, 195, 49, 123, 97, 175, 14, 234, 33, 66, (56,283): 195, 14, 35, 35, 180, 234, 79, 79, 220, 72, 72, 79, 33, (56,296): 79, 14, 180, 63, 156, 66, 49, 66, 35, 128, 35, 117, 117, (56,309): 117, 35, 35, 117, 35, 35, 117, 117, 35, 35, 117, 117, 35, (56,322): 117, 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, 117, (56,334): 117, 117, 117, 201, 117, 117, 35, 35, 35, 35, 117, 119, (56,346): 119, 35, 117, 119, 117, 117, 35, 117, 117, 35, 117, 117, (56,358): 117, 117, 35, 117, 88, 117, 117, 35, 35, 117, 35, 35, 33, (56,371): 33, 33, 232, 117, (57,0): 54, 47, 39, 73, 20, 243, 120, 120, 125, 119, 117, 117, 185, (57,13): 125, 66, 38, 62, 103, 113, 243, 228, 149, 196, 7, 149, 149, (57,26): 20, 71, 236, 55, 18, 236, 204, 18, 71, 232, 232, 33, 33, (57,39): 33, 79, 186, 186, 185, 186, 195, 195, 125, 18, 185, 33, (57,51): 232, 232, 79, 79, 185, 79, 156, 108, 108, 14, 146, 116, (57,63): 116, 128, 210, 221, 35, 186, 49, 146, 195, 195, 186, 175, (57,75): 156, 66, 100, 226, 125, 221, 28, 253, 185, 33, 88, 33, 33, (57,88): 79, 119, 117, 119, 33, 33, 117, 140, 117, 201, 119, 55, 55, (57,101): 55, 243, 233, 76, 228, 196, 23, 206, 115, 151, 29, 31, 60, (57,114): 23, 84, 207, 62, 219, 204, 204, 38, 14, 84, 178, 178, 207, (57,127): 55, 232, 232, 33, 119, 128, 79, 79, 185, 241, 66, 66, 14, (57,140): 28, 180, 231, 24, 207, 58, 192, 93, 15, 142, 74, 153, 142, (57,153): 58, 192, 192, 246, 25, 249, 89, 214, 214, 214, 214, 151, (57,165): 29, 75, 4, 4, 4, 4, 83, 115, 56, 189, 16, 238, 229, 16, (57,179): 53, 23, 51, 237, 62, 62, 153, 70, 95, 178, 25, 27, 192, (57,192): 63, 142, 24, 142, 14, 14, 187, 108, 2, 50, 100, 220, 195, (57,205): 63, 156, 220, 185, 125, 66, 241, 219, 71, 71, 113, 173, (57,217): 127, 4, 4, 148, 82, 39, 42, 42, 130, 96, 85, 212, 83, 75, (57,231): 246, 53, 27, 63, 187, 220, 33, 35, 186, 195, 100, 156, (57,243): 156, 221, 116, 79, 195, 72, 51, 27, 63, 104, 8, 2, 79, (57,256): 128, 186, 195, 50, 253, 121, 89, 123, 49, 195, 116, 33, (57,268): 49, 49, 33, 195, 252, 253, 66, 49, 195, 49, 195, 79, 195, (57,281): 72, 66, 210, 35, 128, 128, 33, 33, 88, 210, 116, 33, 66, (57,294): 156, 14, 33, 186, 66, 195, 186, 79, 79, 33, 128, 35, 117, (57,307): 117, 117, 117, 117, 35, 35, 117, 35, 117, 35, 117, 35, 35, (57,320): 117, 35, 117, 35, 117, 35, 117, 35, 117, 201, 117, 117, (57,332): 201, 117, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 117, (57,345): 119, 119, 35, 117, 119, 119, 35, 117, 128, 35, 128, 128, (57,357): 128, 33, 33, 128, 117, 117, 117, 117, 35, 35, 35, 117, 88, (57,370): 117, 232, 128, 35, 117, (58,0): 54, 211, 39, 209, 213, 76, 71, 185, 139, 119, 241, 100, 142, (58,13): 241, 241, 38, 251, 76, 243, 76, 60, 196, 7, 31, 60, 231, (58,26): 243, 55, 55, 35, 55, 33, 79, 236, 33, 55, 232, 79, 185, (58,39): 185, 33, 79, 186, 186, 186, 195, 72, 72, 185, 79, 232, 232, (58,52): 232, 33, 79, 116, 14, 220, 108, 220, 49, 72, 221, 245, 35, (58,65): 140, 14, 49, 156, 63, 186, 11, 220, 27, 186, 14, 119, 33, (58,78): 27, 192, 79, 0, 221, 185, 66, 117, 125, 140, 185, 33, 33, (58,91): 185, 33, 55, 117, 117, 140, 117, 201, 201, 201, 119, 145, (58,103): 145, 236, 6, 92, 60, 206, 29, 151, 151, 75, 84, 237, 84, (58,116): 74, 62, 71, 38, 125, 185, 204, 231, 242, 25, 24, 55, 33, (58,129): 55, 33, 119, 119, 33, 33, 186, 156, 100, 180, 24, 24, 24, (58,142): 207, 192, 15, 246, 84, 198, 84, 237, 58, 58, 246, 188, (58,154): 246, 188, 70, 229, 95, 89, 214, 214, 214, 214, 189, 115, (58,166): 83, 4, 211, 47, 211, 83, 238, 115, 189, 115, 214, 151, (58,178): 214, 151, 53, 53, 53, 246, 192, 51, 93, 226, 226, 157, 93, (58,191): 252, 153, 100, 14, 125, 187, 14, 180, 14, 220, 156, 66, (58,203): 156, 125, 180, 100, 100, 66, 195, 103, 66, 125, 71, 113, (58,215): 103, 163, 238, 56, 158, 47, 77, 73, 32, 32, 136, 42, 85, (58,228): 56, 75, 15, 58, 187, 180, 28, 2, 2, 116, 221, 128, 128, (58,241): 221, 33, 195, 79, 33, 35, 221, 14, 183, 175, 242, 2, 8, (58,254): 180, 100, 221, 186, 128, 221, 156, 253, 27, 2, 2, 63, 220, (58,267): 186, 195, 220, 195, 221, 221, 186, 128, 221, 128, 49, 180, (58,279): 180, 121, 187, 187, 100, 234, 33, 232, 128, 79, 33, 128, (58,291): 79, 128, 195, 66, 234, 79, 33, 33, 33, 185, 33, 35, 117, (58,304): 35, 35, 35, 117, 11, 117, 117, 35, 117, 117, 117, 35, 117, (58,317): 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, 117, 117, (58,330): 117, 117, 117, 117, 35, 117, 35, 35, 35, 35, 35, 35, 119, (58,343): 119, 35, 128, 119, 35, 35, 33, 33, 119, 117, 117, 117, 35, (58,356): 35, 119, 128, 119, 35, 35, 128, 35, 128, 117, 117, 128, (58,368): 119, 35, 117, 33, 33, 33, 232, (59,0): 43, 43, 211, 7, 60, 60, 233, 236, 119, 55, 14, 187, 51, 62, (59,14): 241, 194, 28, 228, 233, 233, 31, 7, 60, 228, 7, 196, 233, (59,27): 236, 236, 232, 232, 232, 232, 55, 232, 33, 55, 79, 185, (59,39): 185, 33, 33, 33, 33, 79, 186, 185, 186, 66, 195, 185, 128, (59,52): 35, 117, 128, 35, 72, 49, 195, 49, 72, 116, 224, 128, 128, (59,65): 33, 66, 100, 156, 49, 50, 46, 128, 46, 63, 252, 70, 66, (59,78): 219, 93, 156, 33, 14, 195, 66, 33, 49, 79, 79, 185, 125, (59,91): 125, 185, 119, 117, 119, 140, 117, 117, 35, 119, 201, 119, (59,103): 201, 236, 243, 243, 7, 83, 56, 56, 151, 151, 189, 45, 15, (59,116): 74, 194, 204, 233, 219, 233, 38, 38, 207, 229, 84, 100, (59,128): 62, 241, 219, 125, 33, 79, 219, 241, 153, 51, 93, 246, (59,140): 192, 58, 15, 246, 198, 25, 229, 59, 229, 198, 45, 15, 198, (59,153): 198, 75, 25, 152, 53, 95, 89, 214, 214, 214, 151, 151, 29, (59,166): 83, 4, 211, 211, 211, 4, 54, 45, 83, 151, 151, 151, 214, (59,179): 214, 214, 214, 214, 95, 95, 242, 231, 192, 93, 70, 187, (59,191): 192, 187, 100, 219, 128, 28, 156, 14, 156, 195, 49, 241, (59,203): 156, 195, 100, 241, 125, 66, 219, 195, 38, 103, 219, 243, (59,215): 76, 23, 115, 151, 54, 54, 39, 32, 32, 136, 42, 96, 244, (59,228): 69, 4, 237, 231, 204, 100, 108, 63, 180, 72, 49, 88, 116, (59,241): 195, 63, 104, 49, 35, 11, 18, 79, 117, 180, 2, 252, 226, (59,254): 99, 180, 180, 63, 195, 185, 186, 66, 108, 105, 253, 50, (59,266): 66, 128, 128, 195, 186, 11, 88, 221, 116, 221, 156, 64, (59,278): 178, 175, 27, 252, 91, 100, 18, 72, 18, 88, 72, 234, 72, (59,291): 72, 33, 79, 33, 128, 79, 33, 232, 33, 18, 33, 33, 33, 35, (59,305): 35, 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, 117, (59,317): 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 117, (59,330): 35, 35, 35, 117, 35, 117, 35, 119, 35, 35, 35, 119, 119, (59,343): 128, 35, 35, 35, 35, 119, 33, 119, 33, 117, 35, 117, 117, (59,356): 117, 117, 117, 117, 117, 128, 35, 128, 35, 117, 117, 35, (59,368): 79, 33, 128, 232, 232, 33, 128, (60,0): 227, 244, 43, 235, 45, 84, 207, 204, 204, 18, 241, 188, 246, (60,13): 192, 194, 194, 74, 60, 251, 213, 20, 31, 228, 20, 60, 74, (60,26): 233, 243, 185, 139, 33, 232, 55, 232, 232, 35, 35, 35, 35, (60,39): 232, 35, 117, 35, 35, 128, 221, 186, 186, 156, 195, 186, (60,51): 128, 128, 128, 116, 195, 186, 50, 253, 180, 49, 116, 221, (60,63): 79, 18, 204, 195, 14, 128, 33, 181, 105, 221, 128, 33, 2, (60,76): 93, 51, 178, 178, 70, 104, 63, 33, 100, 108, 28, 125, 33, (60,89): 33, 185, 185, 33, 117, 117, 117, 117, 117, 140, 35, 201, (60,101): 119, 119, 145, 145, 6, 243, 7, 238, 56, 56, 151, 151, 248, (60,114): 75, 194, 20, 38, 38, 38, 38, 62, 66, 71, 100, 84, 25, 192, (60,128): 207, 231, 28, 62, 241, 103, 14, 63, 142, 252, 70, 157, 84, (60,141): 84, 70, 75, 59, 238, 238, 16, 29, 29, 59, 4, 75, 238, 189, (60,155): 248, 189, 95, 248, 214, 214, 214, 214, 214, 151, 189, 85, (60,167): 43, 43, 235, 54, 235, 211, 47, 4, 189, 151, 95, 151, 89, (60,180): 214, 214, 214, 89, 249, 242, 153, 51, 252, 93, 63, 180, (60,192): 24, 66, 180, 28, 125, 186, 63, 14, 220, 252, 27, 252, 66, (60,205): 219, 66, 125, 66, 125, 219, 62, 241, 103, 71, 120, 7, 162, (60,218): 69, 115, 56, 211, 77, 42, 136, 96, 82, 244, 69, 229, 237, (60,231): 62, 195, 14, 100, 50, 108, 195, 14, 49, 14, 156, 63, 8, (60,244): 104, 108, 79, 33, 195, 104, 93, 70, 2, 178, 104, 66, 108, (60,257): 180, 181, 195, 128, 33, 49, 253, 27, 108, 14, 186, 33, (60,269): 156, 49, 79, 186, 49, 108, 156, 187, 175, 214, 223, 14, (60,281): 195, 33, 128, 245, 33, 18, 35, 245, 116, 79, 79, 33, 116, (60,294): 128, 232, 128, 117, 35, 33, 79, 232, 35, 35, 117, 117, (60,306): 117, 117, 117, 117, 117, 117, 35, 117, 117, 35, 117, 35, (60,318): 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (60,331): 117, 35, 117, 35, 117, 119, 35, 119, 35, 119, 35, 128, (60,343): 119, 119, 35, 35, 119, 128, 119, 119, 35, 33, 128, 33, (60,355): 128, 35, 117, 117, 11, 117, 117, 128, 35, 117, 117, 117, (60,367): 128, 33, 35, 35, 117, 35, 232, 117, (61,0): 227, 212, 212, 56, 56, 151, 45, 62, 38, 233, 100, 157, 157, (61,13): 246, 60, 60, 163, 31, 233, 76, 76, 20, 20, 251, 20, 31, (61,26): 219, 71, 185, 232, 55, 232, 232, 35, 35, 35, 139, 117, 245, (61,39): 35, 128, 35, 117, 128, 33, 46, 195, 156, 156, 156, 195, (61,51): 186, 46, 195, 156, 138, 195, 220, 63, 50, 195, 46, 46, 79, (61,64): 79, 204, 63, 187, 72, 186, 195, 108, 156, 128, 117, 186, (61,76): 66, 249, 93, 95, 214, 178, 253, 18, 64, 214, 216, 187, 186, (61,89): 119, 88, 35, 33, 185, 119, 117, 119, 35, 201, 117, 117, (61,101): 139, 139, 201, 140, 145, 243, 250, 23, 4, 29, 151, 214, (61,113): 151, 29, 28, 233, 71, 233, 219, 219, 204, 204, 38, 194, (61,125): 207, 192, 237, 142, 24, 24, 24, 153, 100, 100, 153, 187, (61,137): 192, 84, 25, 229, 229, 59, 238, 248, 189, 189, 189, 151, (61,149): 151, 115, 238, 75, 29, 151, 151, 214, 151, 214, 214, 214, (61,161): 214, 214, 214, 151, 56, 69, 115, 244, 43, 54, 4, 43, 4, 4, (61,175): 83, 214, 214, 89, 214, 214, 214, 214, 214, 53, 226, 252, (61,187): 252, 51, 180, 241, 180, 93, 252, 104, 187, 156, 220, 66, (61,199): 108, 180, 252, 253, 51, 66, 219, 66, 125, 62, 195, 185, (61,211): 125, 125, 71, 113, 20, 60, 47, 115, 56, 56, 82, 73, 32, (61,224): 130, 132, 26, 69, 56, 189, 84, 62, 62, 72, 195, 156, 156, (61,237): 195, 156, 2, 183, 195, 33, 180, 252, 123, 63, 33, 147, 63, (61,250): 187, 195, 180, 180, 241, 2, 14, 183, 223, 180, 221, 116, (61,262): 156, 63, 63, 116, 221, 128, 128, 72, 195, 221, 221, 72, (61,274): 63, 63, 253, 156, 183, 175, 8, 220, 147, 128, 232, 245, (61,286): 33, 116, 88, 128, 11, 245, 245, 33, 245, 128, 35, 245, (61,298): 232, 232, 232, 245, 245, 245, 139, 117, 117, 117, 117, (61,309): 117, 117, 35, 117, 35, 35, 117, 117, 35, 117, 35, 117, 35, (61,322): 117, 35, 117, 117, 35, 117, 35, 35, 35, 35, 35, 35, 117, (61,335): 35, 119, 35, 35, 35, 35, 119, 119, 119, 33, 119, 35, 119, (61,348): 33, 119, 35, 35, 119, 128, 35, 128, 35, 128, 35, 117, 117, (61,361): 117, 117, 128, 35, 128, 35, 117, 117, 35, 88, 88, 117, (61,373): 128, 35, (62,0): 65, 227, 212, 56, 151, 214, 238, 192, 62, 62, 28, 58, 110, (62,13): 196, 153, 196, 20, 20, 233, 213, 213, 20, 20, 92, 76, 62, (62,26): 243, 71, 185, 232, 33, 232, 232, 245, 139, 33, 232, 232, (62,38): 232, 232, 79, 232, 128, 33, 221, 186, 195, 156, 50, 138, (62,50): 63, 50, 156, 146, 146, 49, 128, 46, 186, 49, 220, 220, 72, (62,63): 33, 232, 66, 241, 2, 220, 49, 72, 3, 108, 105, 221, 117, (62,76): 14, 241, 142, 51, 183, 97, 175, 180, 252, 37, 37, 99, 104, (62,89): 63, 66, 125, 185, 185, 33, 55, 119, 35, 35, 117, 201, 117, (62,102): 139, 201, 139, 120, 113, 41, 228, 7, 47, 29, 189, 189, (62,114): 248, 198, 60, 233, 62, 71, 38, 243, 219, 62, 231, 231, 58, (62,127): 237, 24, 60, 231, 207, 142, 153, 60, 24, 58, 93, 157, 229, (62,140): 53, 193, 95, 248, 56, 151, 56, 56, 151, 56, 56, 238, 83, (62,153): 238, 29, 189, 151, 214, 214, 214, 214, 214, 214, 214, 214, (62,165): 151, 56, 212, 212, 85, 65, 43, 83, 197, 83, 238, 151, 214, (62,178): 89, 178, 89, 89, 89, 214, 89, 178, 226, 93, 27, 28, 28, (62,191): 252, 123, 97, 252, 220, 180, 181, 79, 220, 156, 66, 33, (62,203): 66, 55, 125, 219, 185, 14, 219, 185, 185, 201, 55, 103, (62,215): 74, 110, 206, 162, 4, 82, 39, 32, 42, 96, 230, 240, 69, (62,228): 212, 59, 188, 100, 100, 49, 220, 156, 195, 14, 79, 156, (62,240): 93, 108, 66, 108, 100, 252, 253, 14, 79, 18, 245, 79, 204, (62,253): 28, 18, 187, 234, 220, 27, 253, 72, 116, 186, 156, 180, (62,265): 195, 79, 128, 116, 220, 156, 195, 33, 195, 156, 183, 253, (62,277): 195, 116, 156, 27, 27, 18, 35, 88, 33, 33, 147, 116, 195, (62,290): 128, 35, 11, 35, 210, 35, 245, 35, 33, 35, 35, 245, 139, (62,303): 245, 245, 117, 139, 117, 35, 117, 117, 117, 35, 117, 117, (62,315): 35, 117, 117, 117, 35, 117, 35, 117, 117, 35, 117, 117, (62,327): 35, 35, 117, 35, 117, 35, 35, 35, 117, 35, 35, 35, 35, 35, (62,341): 128, 119, 128, 125, 79, 35, 35, 119, 117, 35, 35, 117, (62,353): 117, 117, 117, 35, 117, 35, 117, 117, 117, 35, 35, 128, (62,365): 35, 128, 35, 117, 117, 35, 117, 117, 119, 128, (63,0): 10, 26, 240, 244, 212, 214, 151, 53, 231, 62, 142, 246, 16, (63,13): 198, 237, 228, 243, 213, 20, 20, 20, 228, 250, 20, 233, 60, (63,26): 38, 219, 185, 55, 55, 232, 33, 232, 232, 232, 232, 35, 35, (63,39): 35, 33, 35, 128, 128, 33, 128, 221, 186, 46, 146, 78, 176, (63,52): 105, 138, 156, 146, 156, 180, 64, 121, 141, 252, 234, 128, (63,64): 14, 252, 245, 66, 156, 14, 121, 91, 108, 123, 252, 104, (63,76): 185, 187, 25, 252, 246, 37, 37, 99, 123, 214, 89, 89, 214, (63,89): 37, 157, 180, 125, 35, 119, 221, 35, 119, 119, 119, 35, (63,101): 201, 35, 119, 145, 236, 236, 71, 41, 31, 110, 4, 45, 75, (63,114): 29, 189, 196, 153, 62, 71, 71, 185, 243, 243, 20, 231, 24, (63,127): 207, 74, 231, 153, 207, 58, 207, 142, 192, 15, 84, 229, (63,139): 193, 193, 16, 151, 151, 151, 151, 151, 151, 56, 56, 212, (63,151): 115, 83, 4, 83, 238, 115, 151, 151, 214, 214, 214, 89, (63,163): 214, 151, 151, 56, 56, 212, 69, 244, 85, 13, 115, 212, (63,175): 151, 151, 214, 214, 151, 214, 89, 89, 214, 89, 37, 226, (63,187): 104, 70, 24, 187, 175, 187, 104, 252, 100, 220, 180, 156, (63,199): 14, 195, 156, 55, 156, 185, 125, 241, 66, 185, 125, 125, (63,211): 103, 185, 119, 76, 74, 110, 149, 31, 73, 106, 148, 10, 39, (63,224): 26, 227, 244, 69, 162, 60, 60, 100, 66, 14, 253, 50, 220, (63,237): 175, 49, 185, 49, 185, 116, 14, 14, 27, 252, 14, 79, 245, (63,250): 241, 66, 88, 66, 2, 28, 175, 14, 104, 175, 63, 79, 35, (63,263): 195, 175, 63, 195, 11, 79, 108, 49, 221, 128, 195, 79, (63,275): 123, 123, 183, 33, 232, 128, 72, 245, 79, 128, 245, 245, (63,287): 33, 14, 220, 79, 221, 33, 33, 88, 128, 245, 128, 35, 35, (63,300): 245, 232, 232, 117, 245, 140, 88, 139, 117, 117, 201, 117, (63,312): 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 201, (63,325): 117, 35, 117, 35, 35, 35, 35, 35, 117, 35, 35, 35, 35, 35, (63,339): 35, 35, 119, 35, 119, 66, 79, 119, 35, 35, 117, 35, 128, (63,352): 117, 117, 117, 117, 117, 117, 11, 117, 117, 117, 117, 35, (63,364): 33, 33, 128, 35, 88, 35, 128, 117, 117, 35, 117, (64,0): 57, 130, 42, 54, 69, 56, 56, 151, 24, 60, 58, 58, 45, 59, (64,14): 74, 228, 194, 60, 60, 209, 228, 228, 31, 60, 153, 194, 62, (64,27): 204, 185, 232, 232, 79, 55, 232, 232, 232, 232, 232, 232, (64,39): 33, 33, 88, 33, 186, 221, 46, 11, 3, 186, 80, 108, 78, 182, (64,53): 253, 253, 223, 97, 64, 183, 183, 252, 108, 72, 33, 79, 232, (64,66): 185, 234, 66, 180, 104, 89, 253, 70, 104, 180, 180, 185, (64,78): 14, 28, 24, 53, 157, 53, 100, 84, 214, 249, 214, 37, 214, (64,91): 8, 175, 33, 33, 128, 185, 117, 117, 201, 117, 201, 55, 201, (64,104): 55, 201, 145, 243, 6, 228, 31, 237, 238, 229, 238, 16, (64,116): 229, 237, 60, 243, 243, 236, 236, 38, 204, 233, 74, 100, (64,128): 231, 231, 196, 237, 237, 237, 237, 45, 15, 45, 25, 238, (64,140): 95, 151, 89, 214, 214, 151, 151, 56, 212, 56, 212, 69, (64,152): 244, 43, 54, 4, 43, 83, 238, 189, 214, 214, 151, 56, 56, (64,165): 56, 56, 56, 56, 212, 69, 244, 115, 244, 69, 212, 56, 151, (64,178): 151, 151, 214, 214, 193, 99, 178, 53, 99, 226, 175, 93, (64,190): 27, 187, 187, 51, 2, 180, 66, 100, 100, 28, 156, 125, 185, (64,203): 195, 100, 14, 66, 55, 221, 185, 195, 66, 185, 120, 125, (64,215): 120, 102, 254, 102, 250, 218, 39, 127, 82, 43, 43, 191, (64,227): 47, 228, 20, 187, 70, 253, 108, 63, 108, 63, 156, 14, 14, (64,240): 2, 187, 156, 18, 63, 100, 79, 79, 234, 252, 66, 66, 100, (64,253): 66, 66, 108, 187, 63, 104, 100, 14, 33, 128, 49, 123, 105, (64,266): 2, 108, 221, 195, 104, 175, 14, 195, 33, 187, 63, 100, 79, (64,279): 49, 156, 117, 33, 72, 116, 210, 128, 245, 72, 66, 66, 79, (64,292): 33, 221, 33, 33, 33, 232, 128, 232, 128, 35, 245, 117, (64,304): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, (64,316): 117, 35, 117, 35, 117, 117, 35, 117, 35, 117, 117, 35, (64,328): 117, 117, 35, 117, 35, 35, 117, 35, 119, 128, 119, 35, 35, (64,341): 35, 35, 35, 117, 35, 35, 35, 119, 33, 119, 119, 117, 35, (64,354): 35, 117, 117, 117, 117, 119, 33, 33, 35, 35, 35, 35, 35, (64,367): 35, 35, 35, 117, 35, 35, 128, 35, (65,0): 1, 130, 42, 10, 235, 115, 151, 151, 58, 236, 71, 38, 231, (65,13): 237, 149, 45, 231, 74, 74, 74, 149, 148, 23, 23, 15, 153, (65,26): 66, 125, 204, 185, 185, 236, 33, 232, 232, 232, 35, 117, (65,38): 35, 33, 33, 18, 116, 186, 128, 221, 33, 221, 182, 78, 91, (65,51): 183, 91, 137, 176, 105, 253, 108, 195, 116, 18, 72, 72, (65,63): 204, 33, 79, 18, 180, 234, 185, 66, 27, 178, 187, 156, 66, (65,76): 99, 66, 125, 66, 38, 192, 103, 38, 233, 194, 142, 192, 157, (65,89): 193, 99, 175, 14, 183, 183, 66, 35, 55, 71, 119, 117, 55, (65,102): 55, 140, 243, 55, 236, 145, 236, 233, 20, 196, 59, 45, 15, (65,115): 152, 238, 25, 237, 228, 55, 71, 71, 38, 38, 62, 207, 194, (65,128): 231, 74, 58, 15, 15, 188, 45, 198, 75, 75, 238, 16, 248, (65,141): 214, 214, 214, 151, 56, 56, 56, 212, 212, 150, 150, 227, (65,153): 235, 82, 82, 211, 47, 4, 83, 56, 151, 151, 214, 56, 56, (65,166): 212, 212, 56, 56, 212, 212, 150, 69, 244, 115, 115, 56, (65,178): 56, 56, 151, 214, 248, 89, 214, 178, 178, 37, 8, 70, 252, (65,191): 28, 51, 187, 100, 28, 66, 100, 14, 156, 66, 125, 156, 2, (65,204): 2, 66, 185, 186, 33, 33, 185, 125, 55, 119, 120, 71, 76, (65,217): 251, 250, 250, 101, 159, 39, 159, 166, 209, 209, 60, 74, (65,229): 58, 187, 180, 183, 63, 63, 63, 105, 220, 63, 181, 99, 178, (65,242): 8, 100, 79, 79, 18, 147, 18, 51, 180, 66, 14, 14, 234, (65,255): 100, 70, 241, 66, 18, 220, 79, 88, 33, 63, 8, 216, 108, (65,268): 128, 11, 220, 63, 186, 119, 210, 219, 33, 66, 100, 123, 8, (65,281): 2, 220, 72, 221, 245, 221, 116, 245, 35, 128, 128, 35, 35, (65,294): 128, 33, 33, 33, 232, 128, 232, 11, 117, 117, 245, 139, (65,306): 117, 117, 117, 117, 35, 117, 35, 35, 117, 35, 35, 117, (65,318): 117, 35, 117, 35, 35, 35, 117, 35, 35, 35, 117, 35, 35, (65,331): 119, 35, 35, 35, 35, 119, 35, 35, 35, 35, 35, 35, 35, 117, (65,345): 119, 33, 119, 117, 35, 35, 35, 117, 35, 35, 35, 117, 117, (65,358): 117, 35, 33, 119, 35, 35, 117, 119, 35, 117, 35, 117, 117, (65,371): 35, 119, 119, 232, (66,0): 174, 48, 48, 48, 148, 29, 151, 189, 75, 228, 20, 20, 60, (66,13): 231, 231, 75, 194, 74, 237, 45, 83, 16, 59, 45, 192, 28, (66,26): 219, 185, 185, 18, 185, 79, 55, 232, 232, 232, 35, 245, (66,38): 128, 33, 128, 195, 221, 195, 221, 116, 49, 195, 63, 105, (66,50): 27, 181, 105, 253, 50, 186, 195, 195, 186, 72, 49, 234, (66,62): 234, 66, 108, 51, 66, 66, 33, 232, 195, 18, 100, 63, 241, (66,75): 66, 2, 187, 51, 178, 70, 248, 28, 119, 55, 219, 62, 153, (66,88): 241, 66, 180, 70, 185, 252, 70, 180, 79, 117, 119, 185, (66,100): 201, 35, 185, 233, 140, 140, 236, 232, 145, 236, 20, 58, (66,112): 58, 20, 103, 231, 23, 23, 231, 243, 243, 71, 236, 243, (66,124): 219, 233, 231, 194, 231, 24, 142, 15, 45, 198, 229, 59, (66,136): 59, 238, 95, 151, 214, 214, 214, 214, 56, 56, 212, 212, (66,148): 150, 150, 244, 227, 227, 235, 40, 148, 39, 149, 206, 45, (66,160): 238, 248, 214, 151, 56, 29, 29, 212, 56, 212, 56, 56, 212, (66,173): 69, 244, 85, 43, 69, 69, 189, 151, 214, 214, 214, 214, 89, (66,186): 89, 89, 216, 8, 27, 180, 187, 180, 14, 100, 66, 66, 219, (66,199): 185, 186, 185, 195, 241, 156, 125, 221, 185, 185, 33, 125, (66,211): 125, 55, 119, 120, 113, 71, 254, 250, 118, 250, 218, 218, (66,223): 118, 106, 154, 92, 31, 60, 28, 28, 241, 2, 91, 27, 181, (66,236): 180, 253, 187, 66, 18, 108, 2, 63, 33, 241, 91, 204, 245, (66,249): 72, 234, 79, 33, 79, 79, 14, 242, 100, 72, 79, 195, 33, (66,262): 245, 33, 220, 64, 175, 220, 186, 128, 11, 186, 185, 79, (66,274): 117, 125, 117, 185, 66, 104, 214, 97, 187, 195, 88, 72, (66,286): 253, 123, 234, 33, 245, 128, 35, 221, 18, 79, 79, 33, 128, (66,299): 35, 128, 117, 88, 88, 117, 117, 117, 117, 35, 117, 201, (66,311): 117, 35, 117, 35, 117, 35, 35, 35, 117, 35, 35, 117, 35, (66,324): 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 117, 35, 35, (66,338): 119, 35, 35, 35, 35, 35, 117, 119, 33, 119, 117, 117, 117, (66,351): 35, 117, 35, 35, 35, 117, 117, 35, 35, 119, 35, 35, 117, (66,364): 35, 35, 35, 35, 117, 117, 117, 35, 35, 119, 35, (67,0): 9, 174, 9, 213, 73, 4, 115, 238, 238, 229, 53, 25, 84, 75, (67,14): 237, 15, 58, 15, 84, 83, 189, 151, 16, 45, 231, 100, 38, (67,27): 18, 185, 33, 55, 33, 55, 128, 232, 232, 128, 232, 128, 33, (67,40): 185, 195, 221, 156, 186, 33, 46, 186, 156, 49, 108, 186, (67,52): 195, 195, 186, 221, 116, 116, 116, 128, 33, 18, 49, 195, (67,64): 14, 252, 187, 100, 18, 33, 186, 119, 33, 195, 125, 219, 14, (67,77): 99, 252, 192, 14, 231, 233, 236, 55, 71, 66, 55, 219, 119, (67,90): 24, 8, 104, 105, 216, 178, 99, 180, 125, 185, 185, 55, 185, (67,103): 185, 204, 55, 71, 55, 219, 71, 71, 236, 233, 236, 243, 20, (67,116): 28, 194, 20, 243, 233, 243, 38, 74, 231, 228, 194, 231, (67,128): 153, 231, 207, 15, 84, 229, 59, 59, 193, 16, 151, 151, (67,140): 214, 214, 214, 151, 56, 212, 150, 227, 227, 144, 240, 144, (67,152): 240, 235, 10, 39, 7, 7, 149, 237, 75, 29, 56, 151, 115, (67,165): 238, 85, 85, 212, 56, 212, 56, 212, 212, 244, 197, 43, 29, (67,178): 85, 122, 56, 151, 151, 214, 89, 178, 178, 37, 121, 123, (67,190): 175, 27, 180, 28, 180, 24, 66, 79, 79, 185, 66, 66, 125, (67,203): 33, 195, 100, 14, 185, 185, 33, 185, 219, 185, 55, 71, (67,215): 219, 76, 102, 102, 254, 154, 92, 118, 215, 215, 209, 7, (67,227): 31, 251, 38, 14, 100, 195, 2, 64, 104, 183, 70, 175, 195, (67,240): 79, 33, 79, 234, 33, 18, 183, 2, 79, 88, 79, 18, 33, 35, (67,254): 88, 116, 33, 18, 195, 18, 100, 108, 66, 186, 66, 63, 186, (67,267): 195, 116, 195, 210, 210, 33, 55, 147, 119, 88, 185, 66, (67,279): 63, 37, 214, 97, 187, 232, 116, 14, 2, 242, 234, 128, 33, (67,292): 33, 72, 195, 128, 33, 128, 117, 11, 117, 88, 88, 88, 117, (67,305): 117, 139, 35, 117, 117, 117, 35, 117, 35, 35, 35, 35, 117, (67,318): 35, 35, 117, 35, 35, 117, 35, 117, 201, 35, 117, 35, 35, (67,331): 35, 35, 35, 35, 35, 128, 35, 35, 35, 35, 35, 35, 117, 117, (67,345): 35, 119, 35, 117, 35, 35, 119, 117, 117, 35, 119, 35, 35, (67,358): 117, 117, 35, 35, 117, 117, 117, 117, 35, 35, 117, 35, (67,370): 117, 35, 119, 35, 35, (68,0): 41, 213, 215, 215, 209, 39, 45, 29, 83, 151, 151, 214, 151, (68,13): 214, 248, 229, 16, 189, 238, 83, 238, 56, 29, 84, 15, 231, (68,26): 241, 195, 18, 185, 185, 185, 33, 55, 232, 232, 79, 185, (68,38): 185, 33, 221, 33, 79, 49, 72, 195, 128, 72, 221, 11, 72, (68,51): 33, 186, 33, 186, 49, 66, 49, 195, 116, 221, 72, 49, 234, (68,64): 234, 108, 123, 175, 100, 33, 66, 70, 187, 185, 195, 33, (68,76): 125, 14, 14, 185, 185, 79, 139, 33, 185, 119, 55, 119, 125, (68,89): 185, 28, 100, 2, 63, 97, 89, 178, 27, 195, 79, 180, 99, (68,102): 123, 66, 24, 28, 28, 55, 232, 139, 185, 233, 236, 55, 219, (68,115): 62, 194, 233, 241, 233, 62, 237, 84, 189, 248, 84, 237, (68,127): 74, 28, 153, 51, 246, 157, 59, 59, 59, 248, 151, 151, 214, (68,140): 214, 214, 214, 151, 212, 52, 227, 240, 240, 30, 30, 30, (68,152): 65, 26, 10, 39, 159, 7, 74, 142, 23, 75, 115, 56, 115, 83, (68,166): 43, 4, 85, 244, 212, 212, 212, 212, 115, 85, 43, 197, 43, (68,179): 83, 115, 248, 248, 248, 89, 178, 97, 99, 121, 27, 104, 91, (68,192): 180, 63, 180, 180, 156, 185, 185, 185, 18, 195, 185, 185, (68,204): 66, 63, 156, 33, 33, 119, 185, 219, 125, 120, 113, 113, (68,216): 250, 251, 107, 173, 173, 173, 118, 73, 218, 31, 218, 60, (68,228): 251, 62, 28, 2, 108, 14, 27, 99, 97, 175, 51, 66, 195, 79, (68,242): 221, 14, 195, 128, 234, 100, 220, 33, 234, 108, 108, 220, (68,254): 33, 221, 100, 63, 66, 79, 116, 195, 79, 35, 195, 2, 253, (68,267): 220, 195, 220, 49, 128, 88, 35, 119, 185, 33, 185, 79, (68,279): 125, 252, 99, 70, 63, 245, 35, 11, 35, 183, 204, 35, 128, (68,292): 35, 79, 79, 88, 232, 117, 88, 117, 117, 88, 117, 117, 117, (68,305): 117, 117, 117, 117, 35, 35, 35, 35, 117, 35, 117, 35, 117, (68,318): 35, 117, 35, 201, 117, 35, 35, 117, 35, 117, 35, 35, 35, (68,331): 35, 35, 35, 35, 117, 119, 35, 35, 35, 35, 117, 35, 35, (68,344): 117, 35, 117, 117, 119, 119, 119, 117, 117, 35, 117, 35, (68,356): 35, 35, 201, 117, 117, 35, 117, 35, 35, 35, 35, 35, 35, (68,369): 119, 35, 35, 35, 35, 117, (69,0): 76, 41, 76, 215, 31, 209, 148, 4, 29, 69, 151, 151, 151, (69,13): 214, 214, 214, 214, 214, 151, 16, 69, 151, 56, 238, 248, (69,25): 70, 100, 66, 241, 14, 204, 79, 55, 128, 232, 232, 79, 18, (69,38): 79, 79, 33, 79, 234, 195, 72, 63, 186, 116, 35, 117, 125, (69,51): 195, 72, 185, 221, 66, 79, 186, 221, 33, 128, 33, 79, 186, (69,64): 14, 14, 27, 2, 234, 116, 14, 99, 178, 28, 66, 55, 35, 185, (69,78): 241, 185, 24, 178, 242, 219, 201, 35, 140, 125, 55, 33, (69,90): 128, 232, 186, 18, 156, 181, 123, 104, 14, 100, 175, 89, (69,102): 37, 93, 241, 180, 246, 24, 66, 55, 139, 232, 55, 140, 55, (69,115): 38, 241, 62, 20, 38, 58, 248, 214, 214, 214, 189, 75, 196, (69,128): 231, 24, 192, 246, 242, 53, 249, 193, 151, 151, 214, 214, (69,140): 214, 214, 151, 151, 212, 52, 240, 208, 230, 131, 170, 26, (69,152): 170, 67, 10, 164, 73, 163, 7, 196, 149, 47, 29, 212, 69, (69,165): 43, 54, 211, 235, 244, 244, 212, 212, 212, 244, 85, 235, (69,177): 43, 43, 4, 29, 189, 189, 248, 89, 37, 226, 121, 97, 223, (69,190): 91, 253, 104, 28, 14, 195, 195, 79, 125, 186, 33, 119, 33, (69,203): 221, 185, 185, 79, 55, 185, 119, 185, 219, 71, 219, 251, (69,215): 219, 60, 254, 6, 173, 173, 173, 118, 149, 7, 163, 153, 60, (69,228): 103, 38, 14, 14, 187, 220, 104, 123, 226, 27, 252, 14, 66, (69,241): 234, 108, 180, 63, 72, 11, 33, 72, 11, 35, 128, 72, 108, (69,254): 220, 66, 104, 104, 66, 195, 128, 35, 186, 220, 220, 2, 97, (69,267): 175, 27, 49, 14, 186, 117, 185, 241, 14, 125, 119, 117, (69,279): 117, 18, 156, 79, 88, 147, 33, 33, 33, 79, 245, 35, 35, (69,292): 245, 35, 128, 117, 35, 88, 88, 88, 117, 117, 117, 117, (69,304): 117, 117, 117, 117, 201, 117, 35, 35, 117, 35, 35, 35, (69,316): 117, 35, 35, 35, 35, 117, 35, 117, 35, 35, 117, 35, 35, (69,329): 35, 117, 119, 35, 35, 35, 117, 35, 35, 35, 35, 35, 35, (69,342): 117, 117, 119, 119, 117, 117, 35, 33, 119, 88, 35, 117, (69,354): 35, 117, 35, 35, 35, 117, 117, 35, 35, 35, 117, 117, 117, (69,367): 35, 35, 119, 128, 119, 35, 117, 117, (70,0): 194, 251, 213, 228, 209, 73, 148, 211, 212, 212, 115, 29, (70,12): 29, 248, 214, 214, 151, 151, 151, 56, 56, 151, 151, 151, (70,24): 214, 229, 180, 234, 156, 234, 204, 79, 35, 55, 33, 232, (70,36): 232, 79, 79, 79, 66, 220, 156, 156, 195, 50, 116, 11, 33, (70,49): 33, 125, 125, 33, 185, 88, 119, 50, 66, 79, 128, 11, 33, (70,62): 156, 63, 221, 116, 108, 66, 49, 33, 79, 79, 63, 8, 99, 175, (70,76): 219, 35, 55, 125, 125, 216, 37, 187, 35, 33, 140, 119, 219, (70,89): 125, 119, 186, 125, 186, 33, 186, 125, 221, 219, 63, 93, (70,101): 99, 214, 214, 214, 53, 51, 241, 71, 66, 185, 185, 204, (70,113): 232, 232, 243, 66, 62, 62, 241, 237, 59, 53, 238, 189, (70,125): 238, 45, 237, 24, 51, 192, 246, 242, 59, 248, 89, 214, (70,137): 214, 151, 214, 151, 214, 151, 151, 212, 144, 240, 30, 230, (70,149): 132, 205, 132, 21, 96, 42, 164, 73, 7, 196, 127, 127, 211, (70,162): 85, 115, 244, 43, 54, 82, 235, 240, 150, 150, 212, 212, (70,174): 244, 43, 235, 65, 235, 211, 4, 83, 238, 95, 248, 249, 121, (70,187): 99, 97, 223, 91, 27, 104, 63, 14, 18, 79, 33, 18, 33, 185, (70,201): 33, 33, 33, 33, 33, 79, 195, 125, 185, 236, 71, 219, 194, (70,214): 194, 251, 102, 76, 113, 173, 173, 254, 218, 196, 159, 196, (70,226): 58, 153, 125, 185, 125, 66, 220, 116, 14, 180, 252, 242, (70,238): 99, 51, 50, 72, 220, 108, 104, 175, 253, 27, 181, 63, 72, (70,251): 116, 195, 63, 183, 183, 108, 252, 2, 104, 234, 35, 88, 33, (70,264): 14, 156, 104, 123, 97, 156, 35, 33, 185, 185, 185, 185, (70,276): 33, 232, 33, 18, 88, 232, 35, 88, 33, 33, 35, 245, 147, (70,289): 210, 35, 35, 245, 245, 232, 33, 117, 88, 88, 117, 117, (70,301): 117, 117, 117, 117, 35, 117, 35, 117, 35, 35, 35, 35, 117, (70,314): 201, 117, 35, 117, 201, 117, 117, 35, 35, 35, 117, 35, 35, (70,327): 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, (70,341): 117, 35, 117, 35, 35, 35, 35, 119, 33, 119, 117, 119, 117, (70,354): 117, 117, 35, 35, 117, 35, 117, 35, 119, 35, 35, 117, 35, (70,367): 35, 117, 119, 119, 35, 35, 117, 117, (71,0): 163, 74, 149, 159, 209, 73, 10, 240, 244, 212, 244, 29, 69, (71,13): 151, 214, 151, 214, 151, 151, 56, 115, 69, 56, 214, 89, (71,25): 242, 24, 14, 241, 18, 79, 232, 245, 232, 33, 128, 35, 232, (71,38): 33, 33, 79, 72, 117, 234, 156, 234, 195, 79, 185, 79, 35, (71,51): 117, 147, 185, 88, 88, 195, 186, 33, 33, 128, 128, 46, 49, (71,64): 49, 195, 72, 156, 66, 147, 33, 79, 219, 104, 8, 93, 53, (71,77): 125, 185, 35, 185, 33, 14, 93, 33, 185, 33, 125, 33, 185, (71,90): 185, 35, 117, 33, 186, 185, 156, 219, 125, 125, 194, 70, (71,102): 95, 178, 89, 214, 89, 25, 28, 231, 62, 24, 62, 185, 119, (71,115): 79, 185, 204, 66, 233, 62, 231, 60, 84, 238, 45, 237, 206, (71,128): 142, 51, 192, 93, 246, 53, 89, 214, 214, 214, 151, 214, (71,140): 151, 151, 151, 151, 69, 227, 126, 65, 230, 132, 161, 21, (71,152): 21, 161, 42, 32, 190, 164, 127, 112, 68, 98, 191, 43, 235, (71,165): 82, 40, 26, 230, 144, 150, 150, 150, 150, 227, 65, 26, 43, (71,178): 235, 47, 247, 45, 75, 193, 53, 95, 97, 121, 123, 176, 105, (71,191): 90, 253, 2, 105, 66, 79, 117, 221, 35, 128, 128, 119, 117, (71,204): 128, 185, 125, 185, 219, 71, 185, 79, 71, 60, 153, 20, 76, (71,217): 76, 113, 113, 254, 250, 7, 159, 74, 153, 60, 194, 219, (71,229): 204, 241, 156, 252, 79, 72, 180, 187, 51, 242, 93, 121, (71,241): 49, 108, 181, 183, 64, 50, 220, 183, 91, 220, 195, 46, 88, (71,254): 46, 195, 18, 220, 79, 234, 66, 234, 18, 33, 33, 108, 156, (71,267): 64, 99, 27, 11, 79, 33, 88, 117, 232, 79, 119, 88, 0, 35, (71,281): 33, 232, 147, 55, 147, 140, 232, 245, 232, 245, 210, 245, (71,293): 232, 117, 88, 117, 88, 88, 117, 128, 117, 117, 117, 117, (71,305): 35, 117, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, 117, (71,318): 35, 35, 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, 35, (71,331): 35, 35, 35, 35, 117, 35, 35, 35, 35, 35, 117, 35, 117, (71,344): 117, 117, 35, 35, 119, 119, 33, 33, 35, 201, 117, 117, 35, (71,357): 35, 35, 35, 117, 35, 119, 119, 35, 117, 35, 35, 117, 35, (71,370): 119, 35, 35, 35, 35, (72,0): 58, 75, 189, 56, 83, 240, 85, 150, 52, 150, 244, 244, 244, (72,13): 56, 151, 151, 151, 151, 151, 56, 56, 115, 29, 151, 214, 93, (72,26): 204, 18, 116, 33, 79, 232, 232, 117, 185, 245, 33, 232, 33, (72,39): 195, 33, 66, 49, 186, 79, 116, 116, 33, 232, 119, 139, 35, (72,52): 119, 117, 117, 117, 35, 128, 88, 128, 195, 35, 117, 220, (72,64): 104, 180, 186, 18, 128, 33, 117, 195, 79, 35, 125, 66, 187, (72,77): 24, 232, 185, 79, 33, 186, 66, 125, 33, 185, 241, 185, 119, (72,90): 185, 33, 33, 219, 125, 79, 219, 28, 153, 38, 219, 251, 74, (72,103): 189, 193, 59, 189, 214, 214, 189, 25, 207, 246, 241, 79, (72,115): 140, 119, 185, 119, 241, 219, 103, 20, 74, 206, 47, 23, (72,127): 206, 15, 51, 15, 157, 53, 95, 248, 214, 214, 214, 151, (72,139): 214, 151, 151, 151, 151, 56, 69, 69, 150, 191, 26, 169, (72,151): 161, 161, 42, 42, 42, 190, 166, 10, 112, 211, 65, 191, (72,163): 240, 230, 26, 40, 40, 26, 240, 52, 52, 150, 150, 52, 240, (72,176): 82, 82, 211, 82, 211, 4, 238, 214, 16, 37, 8, 37, 141, 64, (72,190): 91, 176, 180, 104, 64, 63, 116, 33, 195, 33, 128, 33, 35, (72,203): 88, 33, 125, 185, 185, 79, 120, 236, 236, 55, 185, 71, (72,215): 243, 243, 113, 6, 213, 31, 7, 7, 163, 153, 163, 194, 38, (72,228): 185, 14, 28, 18, 14, 2, 66, 241, 28, 207, 180, 25, 37, (72,241): 180, 223, 108, 63, 183, 64, 63, 183, 2, 183, 253, 72, 11, (72,254): 11, 72, 116, 108, 180, 72, 245, 195, 33, 221, 79, 195, 14, (72,267): 180, 123, 175, 100, 117, 232, 35, 66, 33, 119, 18, 245, (72,279): 35, 241, 24, 24, 18, 88, 35, 232, 245, 35, 245, 245, 245, (72,292): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (72,303): 117, 35, 35, 35, 35, 117, 35, 35, 35, 35, 117, 35, 35, (72,316): 117, 35, 117, 117, 35, 35, 35, 35, 35, 35, 35, 35, 119, (72,329): 35, 35, 35, 119, 119, 35, 35, 35, 35, 117, 35, 117, 35, (72,342): 117, 117, 119, 35, 35, 117, 117, 35, 35, 35, 119, 35, 117, (72,355): 117, 35, 35, 35, 117, 35, 35, 35, 35, 35, 119, 119, 119, (72,368): 117, 117, 35, 35, 119, 117, 35, (73,0): 101, 188, 56, 56, 212, 212, 150, 227, 230, 240, 13, 227, (73,12): 244, 69, 69, 115, 56, 56, 56, 56, 56, 56, 69, 56, 151, 246, (73,26): 204, 18, 18, 79, 33, 245, 33, 232, 204, 232, 35, 35, 245, (73,39): 79, 18, 234, 195, 79, 116, 221, 128, 11, 232, 119, 35, 35, (73,52): 117, 35, 117, 117, 35, 35, 128, 210, 88, 128, 186, 221, (73,64): 108, 104, 99, 63, 100, 128, 125, 195, 125, 79, 204, 18, 14, (73,77): 100, 79, 241, 186, 186, 185, 195, 125, 66, 24, 70, 93, 100, (73,90): 241, 185, 33, 241, 2, 70, 219, 231, 84, 188, 153, 113, 102, (73,103): 193, 75, 45, 152, 189, 214, 151, 95, 229, 180, 241, 62, (73,115): 79, 204, 232, 119, 38, 236, 243, 219, 31, 237, 47, 206, (73,127): 206, 58, 192, 157, 16, 89, 214, 214, 214, 214, 214, 214, (73,139): 151, 89, 151, 214, 151, 56, 56, 69, 69, 244, 65, 40, 132, (73,152): 40, 132, 96, 42, 77, 166, 82, 217, 255, 13, 150, 244, 13, (73,165): 230, 26, 132, 131, 240, 239, 52, 150, 52, 168, 240, 26, (73,177): 82, 82, 211, 47, 4, 29, 151, 248, 95, 8, 216, 97, 64, 12, (73,191): 176, 176, 180, 253, 2, 2, 2, 104, 63, 66, 185, 186, 125, (73,204): 219, 125, 195, 219, 219, 125, 185, 236, 55, 55, 145, 55, (73,216): 145, 71, 243, 251, 60, 60, 163, 60, 142, 194, 100, 100, (73,228): 103, 66, 14, 66, 66, 232, 234, 242, 249, 242, 93, 2, 187, (73,241): 91, 186, 186, 108, 253, 64, 2, 50, 156, 116, 108, 116, 33, (73,254): 72, 128, 187, 123, 104, 66, 128, 79, 116, 33, 195, 241, (73,266): 72, 18, 63, 183, 14, 11, 33, 88, 33, 33, 33, 33, 88, 35, (73,280): 33, 79, 33, 245, 147, 147, 117, 245, 245, 88, 88, 245, (73,292): 117, 117, 117, 88, 117, 117, 117, 117, 117, 117, 117, 117, (73,304): 35, 35, 35, 117, 35, 35, 35, 35, 117, 35, 35, 117, 35, 35, (73,318): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 117, 117, (73,331): 117, 35, 35, 117, 117, 35, 35, 35, 35, 35, 117, 201, 117, (73,344): 35, 35, 35, 119, 119, 35, 35, 117, 119, 35, 35, 201, 35, (73,357): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (73,371): 35, 35, 35, 35, (74,0): 251, 110, 29, 56, 56, 212, 150, 235, 26, 230, 240, 13, 85, (74,13): 69, 69, 115, 69, 56, 212, 212, 212, 212, 56, 56, 214, 229, (74,26): 241, 79, 195, 18, 33, 35, 232, 232, 66, 204, 35, 232, 128, (74,39): 33, 18, 18, 221, 33, 116, 116, 33, 128, 232, 35, 117, 35, (74,52): 117, 35, 35, 232, 128, 147, 195, 185, 128, 156, 104, 156, (74,64): 63, 93, 89, 99, 8, 66, 253, 175, 14, 79, 185, 33, 204, 14, (74,78): 204, 63, 18, 221, 33, 156, 187, 70, 226, 89, 37, 246, 142, (74,91): 241, 125, 66, 187, 37, 237, 233, 62, 58, 196, 228, 31, 75, (74,104): 214, 45, 31, 74, 45, 95, 214, 214, 37, 70, 8, 51, 27, 241, (74,118): 79, 232, 79, 219, 76, 60, 206, 238, 238, 83, 75, 59, 189, (74,131): 214, 214, 214, 214, 214, 214, 214, 151, 214, 151, 214, (74,142): 151, 214, 151, 248, 151, 56, 115, 197, 235, 26, 235, 30, (74,154): 230, 26, 54, 54, 65, 43, 191, 69, 212, 212, 150, 227, 230, (74,167): 40, 132, 230, 240, 239, 52, 52, 144, 26, 40, 82, 211, 211, (74,180): 211, 45, 238, 56, 248, 95, 226, 97, 216, 90, 137, 176, (74,192): 104, 108, 181, 91, 223, 123, 27, 63, 108, 66, 63, 27, 104, (74,205): 100, 66, 66, 125, 185, 55, 201, 119, 119, 201, 55, 201, (74,217): 120, 113, 251, 20, 250, 60, 60, 153, 194, 28, 153, 14, (74,229): 219, 195, 195, 204, 14, 51, 252, 175, 66, 62, 70, 121, (74,241): 121, 63, 72, 66, 104, 64, 70, 63, 183, 72, 220, 49, 220, (74,254): 123, 195, 221, 128, 33, 91, 121, 14, 79, 11, 79, 116, 33, (74,267): 18, 123, 214, 123, 18, 33, 232, 35, 128, 232, 35, 88, 88, (74,280): 245, 88, 88, 245, 35, 33, 79, 79, 117, 245, 140, 245, 117, (74,293): 117, 117, 117, 88, 117, 117, 117, 117, 117, 117, 117, 117, (74,305): 35, 117, 35, 35, 117, 35, 117, 35, 35, 117, 35, 35, 117, (74,318): 35, 117, 119, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, (74,331): 119, 35, 119, 119, 35, 35, 117, 35, 117, 35, 117, 117, (74,343): 117, 117, 35, 119, 128, 119, 119, 35, 117, 35, 35, 117, (74,355): 117, 35, 35, 119, 35, 35, 119, 35, 35, 35, 35, 35, 35, (74,368): 117, 117, 117, 117, 35, 117, 117, (75,0): 254, 7, 47, 54, 4, 43, 26, 77, 96, 10, 10, 82, 54, 43, 244, (75,15): 69, 212, 56, 212, 244, 212, 56, 56, 56, 214, 248, 231, 55, (75,28): 18, 79, 79, 232, 35, 79, 62, 63, 232, 79, 18, 18, 128, 79, (75,42): 146, 63, 104, 63, 116, 128, 33, 79, 33, 33, 33, 35, 232, (75,55): 33, 195, 117, 241, 108, 14, 125, 108, 125, 241, 180, 123, (75,67): 37, 8, 104, 252, 157, 27, 28, 156, 195, 66, 14, 33, 33, (75,80): 186, 221, 79, 14, 27, 8, 226, 178, 157, 51, 24, 38, 185, (75,93): 66, 153, 25, 95, 62, 243, 60, 58, 7, 60, 23, 75, 110, 60, (75,107): 60, 20, 62, 237, 242, 8, 70, 70, 252, 175, 63, 125, 33, (75,120): 120, 38, 233, 231, 75, 56, 56, 151, 151, 151, 151, 189, (75,132): 189, 151, 214, 151, 214, 151, 214, 214, 151, 214, 151, (75,143): 214, 214, 214, 151, 151, 56, 29, 13, 65, 65, 13, 244, 150, (75,156): 69, 150, 69, 69, 197, 69, 212, 56, 212, 150, 240, 26, 26, (75,169): 230, 208, 240, 144, 144, 208, 40, 40, 148, 112, 82, 211, (75,181): 4, 83, 189, 16, 53, 8, 123, 97, 137, 141, 183, 138, 91, (75,194): 177, 121, 183, 108, 187, 104, 180, 125, 219, 180, 100, 14, (75,206): 63, 100, 204, 71, 232, 119, 119, 55, 55, 201, 55, 55, 120, (75,219): 71, 113, 251, 194, 194, 194, 163, 24, 153, 100, 14, 241, (75,231): 204, 79, 14, 66, 195, 51, 14, 14, 93, 253, 156, 123, 220, (75,244): 72, 108, 253, 180, 108, 123, 2, 108, 104, 2, 216, 123, 50, (75,257): 72, 128, 116, 2, 108, 220, 186, 232, 72, 79, 33, 14, 123, (75,270): 99, 123, 117, 221, 128, 11, 117, 11, 33, 210, 33, 33, 33, (75,283): 33, 33, 79, 33, 33, 140, 245, 245, 88, 117, 117, 117, 117, (75,296): 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, 35, 117, (75,308): 35, 117, 201, 117, 35, 117, 201, 35, 117, 35, 35, 117, 35, (75,321): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 119, 33, 128, (75,335): 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, 35, 119, (75,348): 128, 35, 35, 35, 35, 35, 117, 117, 35, 119, 35, 35, 119, (75,361): 35, 35, 35, 35, 35, 35, 35, 117, 117, 35, 117, 35, 117, (75,374): 35, (76,0): 113, 20, 163, 209, 209, 209, 73, 32, 32, 48, 48, 215, 48, (76,13): 77, 148, 206, 43, 244, 244, 13, 150, 212, 56, 151, 151, (76,25): 214, 51, 18, 33, 55, 232, 232, 33, 204, 63, 51, 185, 79, (76,38): 79, 33, 14, 234, 79, 46, 49, 49, 234, 220, 195, 195, 66, (76,51): 18, 33, 128, 128, 35, 14, 72, 63, 27, 175, 100, 14, 66, (76,64): 128, 241, 180, 157, 104, 157, 2, 14, 175, 24, 220, 66, 195, (76,77): 195, 33, 117, 221, 195, 195, 185, 241, 14, 187, 193, 53, (76,89): 25, 51, 38, 71, 125, 103, 180, 25, 237, 246, 229, 84, 60, (76,102): 213, 250, 31, 60, 196, 207, 62, 233, 28, 51, 62, 207, 28, (76,115): 24, 241, 204, 185, 204, 185, 241, 194, 196, 75, 151, 151, (76,127): 56, 151, 151, 56, 29, 189, 214, 214, 214, 214, 214, 151, (76,139): 214, 151, 214, 214, 214, 214, 151, 214, 151, 56, 69, 29, (76,151): 85, 85, 244, 212, 56, 56, 151, 151, 151, 115, 189, 56, 56, (76,164): 56, 212, 85, 235, 240, 13, 240, 144, 144, 227, 30, 40, (76,176): 148, 10, 148, 47, 47, 217, 83, 238, 25, 198, 70, 252, 175, (76,189): 104, 90, 183, 50, 91, 223, 253, 220, 186, 156, 63, 156, (76,201): 33, 186, 14, 14, 24, 51, 153, 241, 38, 185, 55, 55, 119, (76,214): 119, 139, 55, 201, 201, 55, 71, 103, 251, 62, 62, 153, (76,226): 142, 24, 24, 28, 14, 66, 63, 18, 232, 66, 63, 252, 24, 14, (76,240): 156, 66, 104, 63, 33, 33, 14, 72, 63, 27, 27, 100, 123, (76,253): 33, 66, 104, 180, 63, 180, 46, 195, 72, 79, 117, 11, 79, (76,266): 18, 33, 33, 33, 185, 195, 210, 128, 128, 128, 128, 33, 33, (76,279): 11, 18, 66, 66, 186, 119, 119, 35, 88, 117, 245, 117, 117, (76,292): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, (76,304): 117, 35, 35, 35, 35, 35, 117, 117, 35, 117, 35, 117, 35, (76,317): 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 117, (76,331): 35, 35, 119, 35, 117, 35, 35, 35, 117, 201, 117, 117, 117, (76,344): 35, 117, 117, 35, 35, 35, 35, 35, 35, 35, 117, 35, 35, 35, (76,358): 119, 35, 35, 35, 119, 35, 35, 117, 117, 35, 119, 119, 119, (76,371): 119, 119, 119, 33, (77,0): 6, 173, 213, 251, 213, 92, 209, 7, 106, 213, 41, 173, 41, (77,13): 41, 41, 92, 32, 10, 40, 235, 227, 150, 212, 212, 151, 214, (77,26): 84, 194, 204, 33, 33, 232, 55, 241, 187, 70, 28, 33, 33, (77,39): 128, 79, 79, 221, 79, 195, 49, 72, 72, 195, 49, 195, 116, (77,52): 33, 117, 11, 232, 210, 128, 18, 28, 180, 14, 33, 79, 119, (77,65): 55, 219, 180, 100, 180, 28, 219, 156, 195, 195, 18, 221, (77,77): 79, 72, 72, 186, 156, 195, 221, 204, 241, 24, 53, 214, 214, (77,90): 95, 15, 142, 180, 103, 251, 187, 231, 15, 229, 53, 188, (77,102): 251, 120, 196, 60, 231, 60, 233, 38, 62, 14, 231, 51, 14, (77,115): 63, 18, 66, 185, 66, 38, 100, 24, 237, 59, 56, 189, 69, (77,128): 56, 56, 151, 151, 151, 214, 214, 151, 214, 151, 214, 214, (77,140): 214, 214, 214, 151, 214, 214, 151, 151, 151, 56, 69, 115, (77,152): 69, 69, 56, 56, 151, 151, 151, 214, 214, 214, 151, 151, (77,164): 56, 56, 115, 43, 115, 150, 244, 13, 13, 144, 235, 82, 148, (77,177): 10, 10, 148, 206, 211, 75, 59, 75, 25, 93, 2, 2, 108, 34, (77,191): 181, 108, 91, 27, 63, 50, 186, 186, 221, 186, 72, 100, (77,203): 187, 104, 252, 2, 219, 66, 125, 55, 119, 119, 139, 139, (77,215): 139, 201, 119, 201, 55, 125, 219, 219, 125, 153, 153, 180, (77,227): 142, 58, 100, 125, 204, 51, 63, 79, 14, 100, 63, 156, 180, (77,240): 187, 2, 14, 195, 117, 195, 33, 100, 2, 226, 97, 185, 104, (77,253): 18, 117, 49, 108, 146, 234, 128, 221, 116, 33, 195, 66, (77,265): 116, 117, 88, 232, 245, 88, 35, 221, 46, 46, 116, 116, (77,277): 116, 128, 128, 46, 195, 195, 221, 35, 11, 35, 117, 117, (77,289): 140, 117, 140, 117, 140, 117, 117, 117, 117, 117, 117, (77,300): 117, 117, 35, 35, 117, 35, 35, 35, 119, 35, 35, 117, 35, (77,313): 35, 117, 35, 35, 117, 201, 117, 35, 35, 35, 35, 35, 35, (77,326): 35, 35, 35, 119, 35, 119, 35, 119, 35, 35, 35, 35, 35, (77,339): 117, 35, 117, 35, 117, 35, 35, 35, 117, 117, 35, 119, 128, (77,352): 119, 35, 117, 117, 35, 35, 35, 35, 35, 35, 117, 35, 117, (77,365): 35, 35, 35, 117, 35, 35, 35, 35, 35, 232, (78,0): 71, 113, 76, 213, 76, 76, 31, 110, 228, 213, 173, 173, 173, (78,13): 6, 6, 173, 41, 174, 136, 77, 230, 65, 43, 69, 151, 151, (78,26): 242, 24, 204, 79, 236, 232, 33, 14, 93, 99, 70, 204, 79, (78,39): 79, 116, 18, 46, 221, 66, 220, 50, 220, 46, 116, 46, 128, (78,52): 11, 128, 33, 72, 79, 195, 18, 220, 66, 234, 33, 55, 185, 0, (78,66): 201, 241, 185, 55, 125, 195, 125, 18, 195, 72, 33, 224, (78,78): 146, 72, 195, 220, 195, 125, 180, 187, 192, 53, 178, 214, (78,90): 214, 178, 89, 152, 153, 142, 28, 204, 18, 241, 188, 188, (78,102): 251, 113, 198, 16, 214, 248, 187, 66, 66, 241, 231, 51, (78,114): 62, 28, 241, 14, 66, 195, 66, 194, 142, 188, 59, 122, 165, (78,127): 4, 115, 69, 56, 56, 151, 56, 189, 151, 214, 151, 89, 151, (78,140): 151, 151, 151, 214, 151, 56, 151, 151, 151, 56, 56, 212, (78,152): 56, 56, 151, 151, 151, 214, 214, 214, 214, 214, 214, 214, (78,164): 151, 151, 56, 69, 212, 212, 212, 244, 43, 43, 255, 82, 10, (78,177): 68, 39, 148, 112, 47, 45, 75, 152, 59, 93, 24, 100, 108, (78,190): 63, 222, 138, 27, 36, 91, 108, 128, 221, 195, 66, 66, 156, (78,203): 66, 241, 156, 241, 125, 119, 232, 119, 117, 139, 35, 232, (78,215): 232, 232, 119, 55, 79, 120, 71, 125, 113, 24, 24, 163, 63, (78,228): 51, 28, 204, 185, 14, 28, 195, 14, 8, 157, 180, 104, 241, (78,241): 195, 33, 66, 185, 14, 33, 66, 156, 70, 70, 232, 220, 187, (78,254): 180, 180, 220, 181, 220, 186, 186, 108, 195, 33, 210, 33, (78,266): 66, 220, 14, 116, 232, 79, 49, 156, 138, 3, 72, 78, 146, (78,279): 33, 46, 128, 88, 210, 88, 210, 88, 88, 88, 117, 117, 117, (78,292): 117, 140, 117, 117, 117, 117, 117, 35, 117, 35, 117, 35, (78,304): 117, 35, 119, 119, 119, 35, 35, 35, 35, 117, 35, 35, 117, (78,317): 35, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 55, 128, 119, (78,331): 128, 33, 119, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, (78,344): 201, 35, 35, 119, 119, 119, 119, 119, 119, 35, 117, 35, (78,356): 35, 35, 35, 35, 35, 117, 35, 35, 35, 35, 117, 35, 117, (78,369): 117, 117, 117, 117, 117, 35, (79,0): 113, 6, 120, 113, 71, 120, 20, 58, 213, 173, 6, 6, 173, 6, (79,14): 6, 173, 154, 9, 48, 42, 10, 40, 65, 69, 56, 189, 84, 28, (79,28): 71, 232, 18, 139, 125, 231, 242, 214, 37, 241, 18, 185, 33, (79,41): 79, 79, 33, 66, 108, 234, 72, 128, 224, 46, 128, 128, 46, (79,54): 220, 180, 234, 18, 128, 100, 79, 241, 204, 14, 185, 185, (79,66): 219, 100, 185, 66, 195, 232, 195, 72, 195, 156, 49, 50, 63, (79,79): 220, 195, 63, 241, 204, 231, 207, 15, 248, 214, 214, 214, (79,91): 151, 214, 25, 60, 24, 14, 62, 219, 185, 38, 219, 71, 153, (79,104): 194, 246, 95, 53, 187, 62, 14, 66, 100, 252, 187, 180, 14, (79,117): 185, 72, 125, 55, 38, 153, 15, 198, 45, 23, 148, 4, 4, 85, (79,131): 83, 83, 75, 29, 151, 248, 151, 189, 151, 248, 56, 151, 56, (79,144): 56, 56, 56, 56, 151, 151, 56, 56, 56, 56, 214, 214, 214, (79,157): 214, 89, 89, 89, 214, 214, 214, 214, 214, 214, 151, 151, (79,169): 151, 151, 69, 244, 13, 65, 167, 148, 68, 39, 149, 148, 47, (79,182): 45, 75, 75, 229, 207, 2, 108, 105, 105, 63, 183, 181, 156, (79,195): 186, 156, 224, 128, 46, 33, 221, 185, 79, 125, 185, 185, (79,207): 185, 35, 232, 201, 35, 35, 119, 119, 79, 55, 185, 79, 119, (79,220): 119, 119, 125, 38, 62, 24, 153, 14, 58, 27, 24, 66, 234, (79,233): 28, 187, 24, 123, 249, 37, 226, 253, 24, 33, 187, 234, 88, (79,246): 187, 79, 18, 100, 100, 195, 234, 28, 108, 63, 27, 27, 156, (79,259): 63, 195, 11, 128, 116, 72, 79, 128, 33, 18, 79, 33, 221, (79,272): 49, 105, 183, 46, 49, 177, 91, 186, 180, 125, 11, 117, (79,284): 128, 88, 88, 117, 88, 139, 117, 35, 140, 88, 117, 117, (79,296): 117, 117, 35, 117, 117, 35, 117, 35, 35, 35, 119, 128, 33, (79,309): 128, 119, 117, 35, 117, 35, 117, 35, 35, 117, 35, 35, 35, (79,322): 35, 35, 35, 35, 35, 35, 119, 119, 119, 35, 119, 35, 117, (79,335): 117, 35, 35, 35, 117, 35, 35, 117, 117, 35, 35, 119, 119, (79,348): 33, 33, 33, 128, 35, 119, 35, 117, 35, 35, 35, 117, 117, (79,361): 117, 35, 117, 117, 35, 35, 35, 119, 35, 35, 117, 232, 119, (79,374): 232, (80,0): 71, 120, 145, 236, 201, 145, 38, 74, 194, 243, 145, 145, 6, (80,13): 6, 6, 81, 41, 209, 77, 48, 42, 235, 244, 244, 115, 238, 23, (80,27): 62, 33, 55, 55, 185, 243, 207, 246, 53, 229, 100, 201, 185, (80,40): 232, 232, 232, 245, 33, 79, 186, 221, 210, 111, 128, 210, (80,52): 46, 72, 220, 181, 108, 72, 79, 234, 79, 66, 66, 180, 104, (80,65): 66, 128, 79, 125, 185, 18, 14, 108, 253, 180, 105, 222, (80,77): 176, 137, 176, 2, 142, 51, 142, 58, 75, 83, 4, 83, 69, 115, (80,91): 56, 151, 151, 163, 74, 153, 243, 236, 236, 236, 243, 120, (80,103): 120, 103, 28, 246, 53, 175, 100, 38, 100, 14, 100, 28, 14, (80,116): 195, 66, 241, 156, 219, 194, 28, 153, 7, 7, 196, 149, 211, (80,129): 82, 82, 148, 47, 211, 59, 115, 29, 69, 56, 69, 115, 69, (80,142): 69, 69, 69, 115, 115, 212, 212, 56, 56, 56, 151, 151, 151, (80,155): 214, 214, 214, 89, 214, 178, 214, 214, 214, 214, 214, 214, (80,167): 214, 214, 214, 151, 151, 69, 244, 240, 40, 77, 39, 77, 39, (80,180): 148, 206, 75, 229, 229, 175, 207, 63, 2, 49, 222, 138, (80,192): 220, 63, 146, 195, 46, 72, 128, 186, 117, 128, 35, 117, (80,204): 119, 185, 185, 119, 119, 35, 117, 119, 232, 119, 119, 119, (80,216): 35, 119, 119, 119, 79, 125, 204, 195, 100, 180, 156, 185, (80,228): 49, 24, 187, 18, 125, 204, 66, 38, 241, 142, 175, 95, 8, (80,241): 97, 18, 234, 8, 128, 14, 116, 195, 27, 2, 195, 33, 79, 79, (80,255): 234, 253, 253, 64, 91, 183, 63, 33, 220, 195, 116, 128, (80,267): 128, 116, 234, 66, 46, 2, 146, 105, 105, 91, 187, 104, (80,279): 128, 117, 11, 88, 117, 88, 88, 117, 117, 88, 139, 245, (80,291): 139, 117, 35, 35, 117, 117, 117, 35, 35, 35, 35, 35, 11, (80,304): 117, 224, 46, 33, 128, 35, 128, 117, 35, 117, 35, 35, 117, (80,317): 35, 35, 117, 117, 117, 117, 117, 117, 35, 35, 35, 35, 35, (80,330): 35, 119, 35, 35, 35, 35, 35, 117, 35, 117, 201, 117, 35, (80,343): 35, 119, 128, 119, 119, 35, 35, 35, 35, 35, 35, 35, 35, (80,356): 35, 35, 35, 35, 35, 35, 117, 35, 35, 35, 117, 35, 117, 35, (80,370): 232, 119, 33, 33, 33, (81,0): 236, 145, 236, 145, 55, 55, 103, 28, 233, 243, 55, 145, 236, (81,13): 236, 6, 6, 76, 73, 39, 73, 32, 40, 227, 212, 83, 45, 74, (81,27): 38, 55, 55, 33, 55, 55, 76, 62, 198, 53, 28, 139, 140, 119, (81,41): 232, 232, 33, 33, 33, 35, 11, 11, 224, 11, 11, 3, 50, 50, (81,55): 234, 156, 116, 79, 245, 104, 14, 195, 63, 253, 220, 18, 49, (81,68): 63, 180, 108, 14, 72, 2, 63, 181, 105, 124, 176, 223, 123, (81,81): 246, 84, 25, 75, 83, 45, 77, 206, 43, 115, 122, 56, 59, (81,94): 163, 74, 60, 18, 71, 243, 38, 241, 38, 103, 185, 219, 153, (81,107): 192, 51, 62, 204, 204, 195, 66, 14, 234, 66, 241, 156, 62, (81,120): 100, 194, 153, 163, 153, 60, 7, 149, 82, 148, 148, 39, (81,132): 149, 148, 217, 4, 43, 165, 43, 158, 43, 65, 191, 65, 13, (81,145): 244, 150, 212, 212, 56, 212, 212, 56, 151, 151, 214, 214, (81,157): 214, 89, 214, 89, 214, 214, 214, 214, 151, 214, 214, 214, (81,169): 214, 214, 214, 56, 212, 240, 40, 77, 73, 77, 148, 23, 23, (81,182): 206, 198, 53, 242, 104, 100, 156, 146, 50, 50, 186, 195, (81,194): 186, 66, 186, 186, 221, 156, 195, 156, 156, 66, 186, 71, (81,206): 79, 119, 119, 119, 119, 35, 35, 232, 232, 119, 79, 33, (81,218): 232, 232, 185, 195, 14, 241, 156, 50, 49, 252, 183, 14, (81,230): 100, 185, 241, 79, 55, 185, 241, 58, 246, 226, 27, 14, (81,242): 183, 195, 180, 2, 116, 35, 210, 49, 66, 33, 195, 234, 14, (81,255): 14, 181, 104, 183, 49, 63, 27, 180, 253, 49, 49, 221, 11, (81,268): 128, 72, 156, 156, 116, 117, 49, 195, 220, 156, 63, 128, (81,280): 117, 117, 117, 117, 88, 117, 88, 117, 140, 117, 117, 117, (81,292): 139, 139, 117, 139, 245, 35, 35, 35, 117, 11, 33, 79, 46, (81,305): 186, 186, 116, 128, 128, 11, 117, 117, 35, 117, 117, 201, (81,317): 35, 117, 201, 35, 117, 201, 117, 35, 119, 35, 119, 119, (81,329): 128, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, (81,342): 117, 35, 119, 119, 128, 35, 35, 35, 35, 117, 35, 35, 35, (81,355): 35, 35, 35, 35, 35, 35, 117, 35, 35, 117, 35, 35, 117, 35, (81,369): 35, 35, 232, 35, 119, 232, (82,0): 145, 119, 201, 55, 139, 201, 55, 103, 71, 236, 119, 145, (82,12): 139, 81, 145, 236, 6, 107, 215, 215, 48, 77, 211, 43, 83, (82,25): 45, 207, 233, 79, 33, 33, 35, 18, 243, 38, 84, 95, 207, 55, (82,39): 139, 35, 117, 35, 33, 232, 245, 11, 232, 11, 46, 3, 3, 146, (82,53): 108, 181, 63, 195, 66, 180, 245, 220, 241, 234, 140, 33, (82,65): 195, 63, 252, 175, 70, 123, 242, 252, 64, 183, 91, 175, 50, (82,78): 222, 64, 37, 84, 157, 16, 75, 110, 39, 106, 209, 68, 47, (82,91): 211, 189, 115, 188, 84, 74, 71, 236, 185, 243, 38, 71, 18, (82,104): 71, 125, 100, 192, 157, 246, 24, 66, 18, 195, 66, 195, 66, (82,117): 66, 14, 241, 28, 194, 100, 194, 250, 60, 60, 7, 39, 39, (82,130): 77, 73, 73, 159, 149, 127, 148, 148, 148, 10, 148, 82, 82, (82,143): 82, 54, 255, 13, 212, 212, 212, 212, 69, 69, 56, 151, 151, (82,156): 214, 214, 214, 214, 214, 214, 151, 56, 151, 56, 56, 151, (82,168): 214, 214, 214, 214, 56, 212, 43, 10, 32, 32, 39, 211, 4, (82,181): 4, 75, 59, 53, 246, 187, 63, 50, 183, 183, 105, 253, 63, (82,194): 50, 63, 195, 128, 128, 72, 108, 180, 180, 14, 219, 185, (82,206): 79, 201, 119, 33, 119, 119, 35, 119, 119, 79, 35, 55, 185, (82,219): 125, 18, 204, 241, 100, 27, 175, 8, 27, 252, 183, 180, 28, (82,232): 28, 185, 38, 241, 100, 231, 62, 185, 28, 27, 252, 253, 2, (82,245): 18, 104, 156, 232, 245, 79, 220, 104, 18, 128, 49, 104, (82,257): 175, 253, 128, 11, 49, 186, 72, 105, 2, 234, 117, 210, (82,269): 221, 116, 33, 11, 210, 79, 35, 221, 128, 18, 35, 11, 117, (82,282): 117, 88, 117, 88, 117, 117, 35, 139, 117, 35, 35, 245, 35, (82,295): 117, 35, 35, 35, 11, 88, 35, 116, 49, 49, 49, 146, 116, (82,308): 128, 128, 35, 11, 35, 35, 35, 35, 35, 117, 35, 35, 35, 35, (82,322): 35, 35, 35, 119, 119, 128, 35, 119, 35, 35, 35, 35, 35, (82,335): 35, 35, 35, 117, 117, 117, 35, 35, 35, 35, 35, 119, 35, (82,348): 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, (82,361): 35, 201, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, (82,374): 117, (83,0): 55, 145, 139, 201, 139, 139, 139, 55, 119, 119, 201, 139, (83,12): 145, 139, 145, 145, 145, 107, 250, 209, 32, 32, 77, 148, (83,24): 39, 231, 233, 185, 79, 221, 33, 232, 55, 71, 71, 231, 58, (83,37): 38, 55, 55, 232, 245, 88, 245, 117, 128, 185, 220, 253, 63, (83,50): 78, 63, 195, 72, 220, 63, 104, 220, 63, 104, 187, 187, 100, (83,63): 66, 156, 79, 33, 66, 104, 99, 89, 214, 216, 8, 252, 2, 183, (83,77): 72, 49, 50, 157, 192, 152, 151, 98, 101, 101, 209, 39, 211, (83,90): 39, 47, 206, 75, 74, 45, 15, 66, 71, 71, 125, 219, 71, 125, (83,104): 71, 125, 194, 70, 214, 214, 226, 207, 14, 241, 66, 204, (83,116): 66, 156, 241, 241, 100, 194, 62, 20, 102, 228, 31, 31, 73, (83,129): 218, 209, 209, 101, 31, 101, 218, 218, 218, 73, 218, 73, (83,141): 39, 10, 68, 96, 167, 65, 191, 227, 150, 244, 13, 115, 212, (83,154): 56, 69, 151, 151, 151, 214, 151, 56, 212, 212, 212, 244, (83,166): 244, 56, 151, 151, 151, 151, 151, 56, 43, 10, 77, 73, 39, (83,179): 4, 83, 229, 59, 248, 214, 249, 99, 123, 2, 137, 91, 63, (83,192): 253, 14, 156, 50, 186, 186, 186, 195, 220, 100, 14, 66, (83,204): 185, 185, 120, 79, 119, 55, 185, 185, 185, 185, 125, 38, (83,216): 185, 185, 195, 14, 100, 241, 14, 100, 187, 8, 2, 195, 125, (83,229): 14, 252, 195, 66, 204, 180, 28, 79, 38, 51, 99, 37, 37, (83,242): 27, 66, 180, 156, 195, 234, 79, 72, 195, 116, 195, 72, (83,254): 117, 11, 33, 66, 156, 11, 88, 79, 72, 63, 175, 121, 70, (83,267): 220, 128, 128, 232, 11, 33, 33, 116, 88, 232, 210, 128, (83,279): 88, 117, 117, 117, 117, 117, 117, 117, 117, 117, 245, 35, (83,291): 245, 35, 232, 232, 128, 33, 33, 33, 35, 33, 221, 66, 220, (83,304): 156, 156, 195, 116, 128, 128, 128, 35, 11, 35, 35, 35, 35, (83,317): 35, 35, 117, 119, 35, 35, 35, 35, 35, 119, 119, 119, 35, (83,330): 35, 35, 35, 35, 35, 117, 35, 35, 117, 35, 35, 117, 35, 35, (83,344): 35, 35, 35, 117, 35, 35, 117, 117, 35, 117, 35, 35, 35, (83,357): 35, 35, 35, 35, 117, 35, 35, 117, 201, 117, 35, 117, 117, (83,370): 35, 35, 35, 35, 35, (84,0): 55, 139, 119, 145, 119, 119, 201, 119, 145, 139, 145, 55, (84,12): 55, 145, 145, 236, 6, 92, 7, 112, 148, 73, 209, 209, 60, (84,25): 60, 241, 18, 33, 128, 11, 117, 140, 55, 55, 185, 125, 232, (84,38): 232, 232, 79, 35, 88, 117, 11, 33, 49, 181, 27, 108, 49, (84,51): 50, 195, 195, 63, 183, 178, 99, 2, 27, 226, 178, 28, 2, 66, (84,65): 185, 79, 79, 185, 195, 51, 121, 51, 66, 195, 204, 72, 33, (84,78): 156, 18, 93, 24, 198, 214, 75, 31, 106, 39, 39, 4, 39, 23, (84,92): 209, 7, 31, 58, 207, 219, 185, 185, 71, 38, 125, 219, 185, (84,105): 236, 38, 142, 95, 214, 214, 8, 192, 180, 241, 66, 241, (84,117): 100, 14, 14, 194, 194, 241, 251, 102, 20, 20, 20, 92, 92, (84,130): 92, 213, 92, 213, 92, 254, 250, 101, 218, 31, 209, 209, (84,142): 73, 77, 10, 10, 40, 26, 255, 65, 240, 255, 235, 85, 244, (84,155): 115, 69, 189, 29, 69, 212, 212, 52, 227, 168, 240, 240, (84,167): 150, 212, 56, 56, 151, 151, 56, 115, 211, 39, 73, 73, 47, (84,180): 4, 75, 59, 89, 89, 95, 37, 97, 14, 3, 146, 182, 108, 185, (84,194): 116, 195, 195, 156, 108, 156, 49, 195, 185, 185, 219, 66, (84,206): 185, 55, 185, 185, 71, 219, 241, 241, 14, 14, 38, 185, (84,218): 185, 204, 100, 100, 66, 18, 14, 186, 156, 33, 185, 100, (84,230): 204, 66, 204, 140, 33, 204, 18, 241, 14, 66, 175, 183, 70, (84,243): 210, 33, 180, 128, 195, 72, 35, 33, 2, 253, 180, 11, 33, (84,256): 128, 116, 66, 79, 88, 88, 88, 18, 220, 27, 64, 63, 33, (84,269): 210, 117, 128, 117, 128, 33, 88, 35, 88, 117, 117, 117, (84,281): 117, 117, 117, 117, 139, 117, 117, 117, 245, 245, 232, 35, (84,293): 128, 33, 79, 79, 116, 221, 116, 72, 156, 50, 63, 49, 49, (84,306): 186, 33, 128, 117, 35, 11, 35, 35, 35, 35, 35, 35, 35, 35, (84,320): 35, 35, 35, 35, 35, 35, 35, 128, 35, 35, 35, 35, 35, 117, (84,334): 35, 35, 35, 35, 117, 201, 117, 117, 35, 35, 35, 117, 35, (84,347): 35, 117, 117, 201, 117, 35, 35, 117, 35, 117, 35, 117, 35, (84,360): 117, 35, 117, 117, 35, 35, 117, 35, 117, 35, 35, 35, 35, (84,373): 232, 35, (85,0): 201, 201, 139, 201, 119, 145, 119, 55, 119, 119, 139, 201, (85,12): 145, 145, 145, 6, 250, 250, 73, 211, 85, 240, 148, 7, 23, (85,25): 58, 100, 125, 128, 128, 35, 11, 139, 33, 55, 236, 185, 18, (85,38): 125, 33, 33, 232, 117, 11, 117, 128, 79, 156, 146, 11, 117, (85,51): 72, 195, 49, 187, 216, 8, 121, 252, 62, 63, 242, 28, 185, (85,64): 156, 119, 88, 232, 185, 185, 33, 236, 79, 140, 35, 79, 88, (85,77): 232, 63, 66, 192, 60, 74, 45, 23, 209, 31, 148, 127, 39, (85,90): 73, 209, 206, 237, 206, 142, 28, 125, 71, 185, 18, 38, 125, (85,103): 185, 38, 71, 185, 38, 58, 226, 178, 214, 242, 51, 14, 241, (85,116): 100, 28, 153, 28, 194, 100, 62, 20, 251, 251, 213, 76, 76, (85,129): 41, 107, 76, 213, 254, 213, 76, 250, 209, 163, 31, 118, (85,141): 106, 209, 32, 73, 96, 39, 96, 10, 82, 82, 10, 10, 217, (85,154): 158, 197, 85, 197, 109, 158, 240, 240, 208, 208, 239, 208, (85,166): 171, 52, 227, 244, 69, 212, 56, 56, 69, 4, 148, 73, 209, (85,179): 148, 45, 75, 16, 214, 214, 89, 178, 178, 91, 156, 63, 105, (85,192): 220, 195, 72, 186, 156, 195, 156, 195, 186, 72, 125, 156, (85,204): 100, 100, 38, 185, 125, 125, 219, 66, 241, 241, 241, 66, (85,216): 185, 18, 18, 33, 33, 185, 195, 66, 66, 241, 241, 180, 24, (85,229): 14, 14, 241, 2, 100, 24, 231, 18, 33, 232, 79, 88, 72, (85,242): 108, 14, 33, 72, 2, 63, 33, 116, 116, 180, 2, 178, 49, 0, (85,256): 88, 232, 33, 117, 88, 117, 35, 88, 117, 185, 204, 79, 35, (85,269): 245, 117, 245, 245, 35, 88, 88, 232, 117, 245, 117, 117, (85,281): 117, 117, 117, 117, 117, 117, 139, 245, 245, 35, 35, 128, (85,293): 33, 221, 221, 79, 221, 33, 116, 195, 156, 220, 14, 186, (85,305): 186, 221, 35, 11, 117, 128, 35, 35, 128, 35, 35, 35, 35, (85,318): 119, 35, 35, 35, 35, 117, 117, 35, 35, 35, 35, 35, 35, 35, (85,332): 35, 35, 117, 117, 35, 35, 117, 117, 35, 117, 35, 35, 117, (85,345): 35, 35, 117, 35, 35, 117, 35, 117, 35, 117, 117, 201, 117, (85,358): 35, 117, 35, 117, 35, 35, 35, 117, 35, 35, 35, 117, 35, (85,371): 35, 232, 35, 232, (86,0): 201, 201, 139, 201, 139, 119, 119, 201, 139, 139, 119, 145, (86,12): 139, 55, 243, 228, 162, 47, 211, 85, 56, 56, 212, 85, 206, (86,25): 58, 241, 79, 35, 128, 221, 79, 35, 119, 117, 55, 33, 185, (86,38): 18, 35, 35, 128, 35, 11, 88, 11, 117, 128, 128, 33, 79, 49, (86,52): 241, 18, 14, 27, 100, 33, 18, 204, 79, 204, 241, 241, 18, (86,65): 79, 119, 35, 245, 140, 55, 18, 33, 55, 33, 38, 33, 232, (86,78): 241, 241, 153, 241, 113, 102, 74, 250, 228, 39, 148, 209, (86,90): 228, 213, 47, 196, 45, 231, 231, 62, 14, 125, 219, 100, (86,102): 194, 38, 100, 251, 219, 71, 219, 74, 25, 89, 53, 252, 28, (86,115): 14, 28, 180, 180, 28, 14, 62, 102, 38, 103, 243, 76, 76, (86,128): 76, 243, 173, 76, 76, 251, 213, 213, 251, 250, 250, 92, (86,140): 20, 92, 20, 215, 106, 209, 32, 73, 77, 112, 10, 32, 190, (86,153): 68, 10, 82, 217, 82, 127, 10, 67, 170, 132, 131, 208, 134, (86,166): 208, 208, 230, 30, 13, 244, 212, 56, 69, 43, 148, 39, 7, (86,179): 127, 47, 75, 16, 214, 214, 178, 175, 121, 64, 146, 80, (86,191): 186, 116, 79, 195, 156, 108, 186, 46, 125, 186, 156, 14, (86,203): 180, 153, 100, 241, 219, 194, 100, 194, 62, 38, 125, 71, (86,215): 185, 185, 241, 241, 79, 119, 18, 100, 180, 241, 66, 24, (86,227): 14, 66, 14, 185, 14, 79, 33, 14, 2, 187, 100, 79, 33, 18, (86,241): 35, 234, 63, 234, 14, 180, 2, 180, 33, 44, 128, 72, 27, (86,254): 18, 33, 33, 79, 33, 232, 117, 35, 128, 147, 35, 35, 128, (86,267): 33, 79, 185, 128, 140, 245, 245, 245, 245, 245, 117, 117, (86,279): 140, 245, 139, 117, 201, 35, 35, 35, 117, 35, 128, 245, (86,291): 128, 128, 33, 221, 79, 221, 33, 221, 221, 116, 116, 186, (86,303): 186, 33, 33, 128, 35, 117, 128, 35, 117, 35, 35, 35, 35, (86,316): 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, 117, 35, 35, 35, (86,330): 35, 117, 35, 117, 35, 117, 35, 35, 35, 117, 35, 117, 35, (86,343): 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 201, 117, 35, (86,356): 117, 117, 35, 117, 35, 35, 117, 35, 117, 35, 35, 117, 35, (86,369): 35, 35, 232, 35, 35, 35, (87,0): 236, 236, 55, 55, 119, 201, 119, 55, 139, 119, 145, 55, 55, (87,13): 71, 60, 23, 29, 69, 56, 212, 150, 212, 56, 151, 151, 59, (87,26): 24, 185, 35, 119, 128, 35, 232, 139, 245, 232, 119, 35, 33, (87,39): 33, 35, 128, 128, 35, 11, 128, 128, 128, 79, 186, 125, 156, (87,52): 63, 100, 204, 66, 195, 38, 232, 79, 66, 231, 204, 180, 185, (87,65): 185, 33, 119, 232, 185, 33, 140, 55, 185, 232, 233, 204, (87,77): 79, 232, 125, 219, 113, 219, 250, 58, 31, 76, 31, 213, 20, (87,90): 213, 41, 20, 76, 237, 237, 28, 14, 241, 79, 185, 100, 231, (87,103): 28, 62, 14, 62, 38, 55, 113, 24, 229, 249, 15, 28, 100, (87,116): 24, 142, 153, 194, 241, 38, 103, 219, 243, 243, 243, 76, (87,128): 113, 6, 71, 113, 76, 76, 76, 76, 76, 76, 213, 107, 213, (87,141): 20, 92, 213, 92, 106, 209, 77, 148, 211, 10, 73, 73, 164, (87,154): 218, 32, 164, 77, 164, 166, 161, 130, 130, 205, 208, 239, (87,166): 135, 179, 179, 131, 240, 227, 212, 212, 212, 83, 47, 148, (87,178): 7, 39, 110, 206, 198, 152, 95, 178, 70, 99, 97, 156, 108, (87,191): 46, 186, 49, 2, 91, 175, 195, 186, 108, 195, 14, 180, 24, (87,204): 63, 241, 241, 62, 58, 51, 142, 28, 38, 185, 55, 185, 204, (87,217): 185, 119, 245, 232, 14, 100, 241, 14, 100, 187, 153, 241, (87,229): 125, 195, 24, 108, 241, 156, 156, 14, 49, 186, 156, 116, (87,241): 14, 156, 72, 18, 156, 63, 175, 220, 33, 33, 128, 186, 104, (87,254): 49, 33, 245, 117, 35, 33, 245, 147, 35, 245, 147, 35, 185, (87,267): 204, 79, 232, 245, 232, 35, 140, 88, 139, 140, 245, 139, (87,279): 140, 245, 117, 117, 139, 35, 35, 139, 117, 128, 128, 128, (87,291): 128, 128, 128, 221, 221, 116, 116, 186, 221, 221, 128, (87,302): 128, 128, 128, 128, 128, 35, 11, 35, 128, 35, 128, 35, (87,314): 128, 35, 35, 35, 35, 35, 119, 35, 35, 35, 35, 35, 35, 35, (87,328): 117, 35, 35, 117, 35, 117, 201, 117, 35, 117, 201, 117, (87,340): 35, 117, 35, 35, 35, 117, 35, 35, 35, 35, 117, 119, 117, (87,353): 117, 117, 117, 117, 117, 117, 201, 117, 35, 35, 117, 35, (87,365): 35, 117, 35, 35, 232, 35, 35, 35, 35, 117, (88,0): 236, 55, 55, 55, 201, 139, 119, 236, 236, 119, 139, 201, 71, (88,13): 213, 58, 189, 69, 212, 212, 212, 227, 227, 150, 212, 56, (88,25): 151, 74, 219, 119, 232, 119, 35, 245, 117, 232, 119, 232, (88,37): 35, 232, 128, 79, 35, 128, 33, 117, 210, 11, 128, 33, 18, (88,50): 156, 100, 156, 125, 185, 185, 18, 33, 241, 246, 99, 93, 28, (88,63): 66, 28, 100, 66, 185, 119, 35, 55, 185, 204, 232, 232, 204, (88,76): 38, 236, 119, 236, 71, 71, 71, 243, 76, 76, 107, 92, 213, (88,89): 76, 213, 243, 243, 243, 233, 194, 62, 241, 125, 185, 185, (88,101): 219, 14, 28, 194, 103, 185, 125, 71, 55, 233, 15, 214, 25, (88,114): 207, 74, 28, 100, 14, 241, 38, 219, 219, 71, 71, 71, 71, (88,127): 71, 71, 113, 71, 113, 113, 113, 113, 113, 113, 113, 113, (88,139): 243, 76, 173, 76, 243, 6, 228, 148, 45, 4, 206, 149, 218, (88,152): 106, 106, 118, 118, 200, 218, 200, 77, 161, 136, 130, 30, (88,164): 168, 239, 230, 135, 208, 208, 239, 52, 150, 212, 212, 244, (88,176): 82, 127, 39, 73, 7, 149, 237, 15, 25, 157, 27, 27, 187, (88,189): 180, 253, 63, 79, 66, 49, 156, 220, 220, 195, 195, 156, (88,201): 156, 63, 187, 51, 24, 100, 14, 192, 84, 157, 142, 38, 125, (88,214): 62, 62, 241, 219, 185, 232, 185, 24, 187, 241, 252, 142, (88,226): 157, 37, 28, 204, 232, 185, 66, 63, 180, 175, 108, 14, (88,238): 180, 180, 180, 49, 186, 33, 11, 128, 63, 175, 63, 72, 210, (88,251): 33, 79, 216, 27, 117, 33, 35, 245, 117, 117, 140, 88, 35, (88,264): 245, 245, 35, 35, 232, 35, 35, 35, 35, 245, 117, 245, 140, (88,277): 245, 35, 35, 245, 117, 232, 232, 232, 245, 117, 35, 11, (88,289): 221, 11, 72, 128, 234, 186, 234, 234, 186, 195, 146, 221, (88,301): 88, 88, 128, 35, 117, 128, 117, 35, 35, 35, 11, 117, 35, (88,314): 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, 35, (88,328): 117, 117, 35, 119, 35, 35, 117, 117, 117, 117, 117, 117, (88,340): 117, 35, 117, 117, 35, 35, 117, 35, 117, 35, 35, 117, 35, (88,353): 35, 35, 35, 35, 35, 117, 35, 117, 35, 35, 119, 35, 35, 35, (88,367): 35, 35, 35, 117, 232, 232, 232, 117, (89,0): 71, 219, 243, 236, 79, 71, 236, 119, 232, 71, 236, 139, 71, (89,13): 20, 153, 237, 115, 85, 235, 40, 40, 54, 150, 151, 151, 214, (89,26): 188, 28, 55, 232, 201, 140, 35, 117, 35, 232, 232, 33, 33, (89,39): 33, 186, 128, 128, 79, 221, 128, 35, 88, 33, 79, 185, 125, (89,52): 18, 185, 185, 18, 241, 241, 241, 100, 104, 8, 70, 51, 63, (89,65): 14, 66, 79, 232, 232, 232, 232, 18, 232, 139, 232, 55, 55, (89,78): 119, 55, 55, 55, 236, 71, 113, 71, 113, 76, 71, 173, 71, 6, (89,92): 236, 71, 76, 38, 241, 66, 219, 185, 185, 125, 219, 103, 14, (89,105): 62, 62, 231, 153, 38, 219, 28, 53, 229, 25, 192, 62, 251, (89,118): 62, 38, 103, 219, 219, 71, 71, 120, 236, 120, 120, 6, 120, (89,131): 6, 120, 120, 6, 71, 6, 6, 173, 6, 113, 113, 113, 113, 213, (89,145): 60, 196, 196, 196, 149, 163, 92, 92, 254, 154, 154, 118, (89,157): 118, 155, 32, 190, 130, 132, 144, 150, 150, 168, 52, 168, (89,169): 168, 52, 52, 212, 212, 150, 69, 211, 148, 39, 149, 149, (89,181): 196, 196, 110, 198, 246, 192, 252, 104, 220, 195, 156, 66, (89,193): 220, 156, 221, 33, 3, 156, 220, 63, 108, 100, 180, 187, (89,205): 24, 153, 24, 153, 142, 25, 25, 192, 28, 194, 241, 28, 242, (89,218): 226, 70, 214, 104, 100, 104, 51, 100, 93, 178, 70, 180, (89,230): 18, 66, 186, 185, 128, 49, 180, 183, 91, 50, 49, 100, 104, (89,243): 104, 14, 79, 128, 128, 11, 79, 79, 234, 79, 105, 99, 63, (89,256): 18, 232, 140, 35, 232, 35, 147, 140, 245, 245, 35, 35, (89,268): 232, 35, 35, 35, 35, 139, 117, 140, 245, 140, 245, 35, (89,280): 119, 35, 140, 245, 245, 245, 117, 232, 221, 128, 128, 72, (89,292): 234, 50, 50, 63, 138, 156, 49, 49, 116, 128, 11, 11, 117, (89,305): 128, 35, 35, 128, 35, 117, 117, 35, 35, 35, 35, 35, 35, (89,318): 35, 35, 35, 119, 35, 35, 35, 35, 117, 35, 117, 35, 35, (89,331): 119, 35, 119, 35, 117, 35, 117, 35, 117, 35, 117, 117, (89,343): 117, 35, 117, 201, 35, 35, 117, 35, 35, 117, 35, 117, 35, (89,356): 117, 35, 35, 117, 35, 35, 35, 35, 35, 35, 117, 35, 35, 35, (89,370): 245, 35, 35, 232, 232, (90,0): 119, 243, 243, 55, 125, 62, 62, 185, 199, 185, 38, 38, 236, (90,13): 55, 60, 165, 151, 69, 211, 32, 48, 42, 54, 115, 56, 214, (90,26): 16, 84, 38, 55, 119, 139, 35, 35, 35, 117, 117, 117, 232, (90,39): 33, 232, 79, 66, 195, 128, 88, 11, 35, 117, 35, 33, 18, (90,52): 125, 195, 66, 14, 66, 14, 18, 232, 204, 51, 252, 180, 14, (90,65): 14, 195, 185, 221, 33, 128, 33, 232, 33, 35, 140, 140, 139, (90,78): 232, 139, 139, 139, 55, 236, 120, 236, 145, 6, 6, 120, 145, (90,91): 236, 236, 236, 71, 204, 219, 219, 195, 185, 185, 185, 185, (90,103): 219, 14, 194, 241, 28, 100, 219, 113, 62, 58, 25, 59, 51, (90,116): 219, 219, 38, 219, 38, 219, 243, 71, 236, 236, 145, 145, (90,128): 120, 120, 120, 120, 120, 6, 120, 6, 6, 120, 71, 6, 6, 120, (90,142): 120, 145, 251, 60, 60, 251, 251, 250, 60, 251, 254, 102, (90,154): 92, 118, 218, 32, 218, 190, 190, 67, 255, 69, 212, 212, (90,166): 212, 212, 150, 150, 150, 150, 212, 212, 212, 115, 235, 68, (90,178): 39, 148, 206, 7, 74, 110, 15, 246, 51, 70, 8, 100, 221, (90,191): 72, 195, 180, 63, 195, 186, 49, 156, 220, 220, 156, 156, (90,203): 100, 28, 100, 28, 24, 153, 153, 15, 152, 229, 93, 231, 62, (90,216): 53, 178, 89, 93, 2, 70, 70, 186, 241, 35, 204, 104, 51, (90,229): 24, 195, 33, 156, 14, 14, 2, 2, 186, 66, 220, 63, 108, (90,242): 108, 220, 156, 195, 79, 35, 128, 63, 128, 33, 66, 72, 183, (90,255): 220, 27, 14, 232, 88, 245, 35, 245, 245, 140, 117, 117, (90,267): 35, 35, 35, 117, 35, 245, 117, 117, 139, 245, 117, 117, (90,279): 245, 232, 35, 88, 245, 35, 232, 33, 79, 72, 128, 116, 146, (90,292): 63, 146, 49, 195, 72, 33, 221, 33, 128, 128, 128, 245, 35, (90,305): 35, 232, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (90,319): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 119, 119, 128, (90,332): 119, 119, 35, 35, 117, 117, 117, 117, 117, 35, 117, 201, (90,344): 117, 35, 35, 117, 35, 35, 117, 35, 35, 35, 35, 35, 35, (90,357): 117, 35, 35, 117, 35, 35, 35, 119, 35, 35, 35, 35, 117, (90,370): 35, 232, 232, 128, 35, (91,0): 139, 55, 185, 119, 71, 241, 62, 204, 125, 120, 55, 71, 243, (91,13): 236, 243, 58, 47, 148, 73, 215, 48, 32, 82, 83, 29, 189, (91,26): 214, 214, 231, 139, 139, 55, 55, 33, 33, 232, 117, 232, 33, (91,39): 79, 33, 72, 14, 234, 128, 35, 128, 33, 35, 232, 79, 125, (91,52): 66, 66, 204, 195, 185, 185, 33, 33, 33, 18, 195, 195, 221, (91,65): 33, 11, 11, 128, 128, 128, 128, 33, 232, 35, 245, 245, 139, (91,78): 139, 139, 139, 119, 55, 55, 145, 55, 145, 55, 201, 55, 201, (91,91): 55, 55, 236, 185, 71, 185, 185, 185, 185, 71, 125, 125, (91,103): 219, 38, 241, 24, 93, 246, 231, 219, 219, 194, 58, 237, (91,115): 28, 71, 219, 233, 125, 38, 219, 219, 125, 236, 236, 236, (91,127): 236, 120, 71, 120, 120, 71, 120, 6, 120, 6, 6, 6, 6, 120, (91,141): 6, 120, 6, 113, 103, 251, 113, 103, 102, 163, 196, 94, (91,153): 127, 218, 118, 101, 39, 112, 13, 167, 65, 244, 212, 69, (91,165): 212, 212, 212, 212, 150, 150, 150, 150, 69, 212, 69, 4, (91,177): 148, 77, 127, 127, 7, 196, 110, 237, 188, 246, 95, 89, 27, (91,190): 100, 125, 186, 63, 180, 156, 72, 186, 186, 33, 186, 186, (91,202): 125, 66, 241, 241, 241, 241, 24, 60, 74, 51, 58, 24, 231, (91,215): 28, 66, 51, 24, 63, 195, 220, 18, 66, 18, 79, 204, 66, 66, (91,229): 63, 156, 186, 100, 100, 2, 27, 121, 63, 108, 253, 63, 14, (91,242): 186, 79, 185, 116, 33, 128, 234, 234, 245, 33, 195, 180, (91,254): 216, 180, 70, 63, 33, 147, 147, 140, 117, 35, 245, 245, (91,266): 117, 117, 117, 117, 117, 245, 117, 140, 245, 245, 139, (91,277): 117, 117, 117, 117, 245, 35, 79, 18, 72, 18, 18, 50, 146, (91,290): 50, 220, 105, 72, 116, 128, 128, 88, 11, 128, 33, 18, 195, (91,303): 128, 128, 35, 35, 128, 35, 35, 35, 117, 35, 35, 35, 35, (91,316): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, 35, 35, (91,330): 119, 119, 128, 35, 119, 35, 35, 117, 201, 117, 35, 117, (91,342): 117, 117, 35, 117, 35, 117, 117, 201, 35, 117, 35, 117, (91,354): 117, 201, 117, 35, 35, 117, 35, 35, 35, 35, 35, 35, 35, (91,367): 245, 35, 35, 35, 35, 35, 35, 35, (92,0): 119, 145, 120, 120, 33, 120, 55, 185, 139, 232, 119, 201, (92,12): 236, 71, 55, 19, 6, 173, 41, 41, 41, 215, 7, 149, 4, 16, (92,26): 214, 214, 14, 119, 139, 236, 33, 185, 204, 33, 232, 232, (92,38): 33, 185, 241, 204, 18, 18, 79, 18, 79, 232, 33, 33, 79, (92,51): 186, 185, 79, 128, 33, 33, 79, 185, 195, 186, 185, 79, 18, (92,64): 186, 116, 116, 116, 72, 49, 234, 156, 195, 79, 232, 245, (92,76): 139, 245, 139, 245, 55, 55, 55, 119, 139, 201, 201, 201, (92,88): 201, 201, 139, 201, 119, 55, 55, 33, 55, 185, 120, 185, (92,100): 185, 185, 219, 66, 66, 66, 219, 241, 14, 66, 125, 38, 38, (92,113): 233, 194, 228, 219, 219, 38, 71, 219, 71, 71, 236, 236, (92,125): 236, 236, 55, 71, 120, 71, 120, 113, 6, 113, 6, 120, 145, (92,138): 120, 6, 120, 6, 120, 120, 120, 145, 113, 76, 76, 102, 142, (92,151): 162, 162, 198, 98, 247, 82, 82, 255, 69, 227, 69, 69, 115, (92,164): 29, 29, 115, 115, 69, 212, 69, 212, 212, 56, 56, 189, 85, (92,177): 54, 39, 73, 39, 39, 149, 110, 15, 110, 25, 214, 214, 37, (92,190): 157, 66, 195, 220, 220, 49, 186, 128, 128, 128, 33, 33, (92,202): 186, 195, 66, 219, 125, 219, 251, 194, 153, 194, 236, 71, (92,214): 233, 62, 79, 38, 185, 232, 117, 204, 18, 79, 232, 18, 63, (92,227): 66, 33, 79, 185, 125, 195, 108, 187, 63, 175, 123, 123, (92,239): 123, 108, 156, 33, 33, 186, 116, 33, 186, 100, 123, 14, (92,251): 88, 117, 128, 245, 117, 18, 79, 119, 117, 117, 88, 88, (92,263): 147, 88, 88, 245, 245, 245, 245, 245, 117, 245, 117, 117, (92,275): 117, 117, 35, 117, 35, 88, 35, 33, 72, 195, 72, 72, 195, (92,288): 49, 156, 50, 156, 156, 72, 33, 11, 11, 117, 128, 33, 33, (92,301): 195, 18, 232, 35, 232, 35, 232, 232, 35, 35, 35, 35, 35, (92,314): 117, 35, 35, 35, 35, 35, 35, 119, 35, 35, 35, 35, 117, 35, (92,328): 35, 35, 35, 35, 35, 35, 35, 35, 117, 117, 117, 117, 117, (92,341): 35, 117, 117, 35, 35, 117, 35, 35, 35, 117, 35, 35, 35, (92,354): 117, 35, 117, 35, 117, 35, 201, 35, 35, 35, 35, 35, 35, (92,367): 35, 35, 35, 35, 35, 245, 35, 35, (93,0): 236, 119, 55, 185, 71, 119, 119, 185, 119, 55, 201, 139, 55, (93,13): 145, 201, 120, 145, 145, 6, 6, 173, 6, 41, 76, 194, 246, (93,26): 226, 192, 232, 55, 55, 38, 207, 252, 252, 24, 100, 14, 14, (93,39): 241, 14, 18, 33, 232, 232, 33, 33, 35, 33, 33, 33, 33, 33, (93,53): 128, 33, 185, 185, 195, 66, 186, 185, 186, 195, 195, 46, (93,65): 46, 224, 111, 46, 116, 3, 146, 50, 49, 79, 232, 35, 140, (93,78): 139, 55, 232, 55, 119, 139, 139, 35, 35, 201, 35, 139, 35, (93,91): 119, 119, 232, 79, 185, 55, 55, 55, 55, 55, 120, 185, 125, (93,104): 125, 103, 14, 28, 24, 14, 185, 185, 71, 243, 20, 60, 233, (93,117): 243, 219, 38, 71, 125, 236, 185, 236, 55, 145, 55, 55, (93,129): 120, 120, 120, 6, 71, 6, 71, 145, 6, 145, 236, 120, 145, (93,142): 236, 145, 71, 145, 120, 113, 113, 76, 196, 75, 75, 122, (93,154): 115, 69, 115, 13, 13, 150, 150, 150, 150, 115, 29, 248, (93,166): 248, 248, 151, 56, 151, 56, 151, 151, 214, 151, 212, 43, (93,178): 148, 73, 73, 39, 127, 110, 45, 15, 25, 214, 178, 214, 89, (93,191): 100, 79, 195, 195, 72, 72, 221, 221, 186, 221, 186, 185, (93,203): 125, 185, 125, 219, 219, 71, 233, 62, 20, 243, 38, 204, (93,215): 55, 71, 185, 18, 204, 8, 63, 33, 33, 14, 14, 187, 180, (93,228): 180, 156, 18, 195, 195, 100, 187, 66, 186, 186, 63, 175, (93,240): 37, 70, 234, 79, 14, 49, 245, 147, 49, 180, 27, 234, 147, (93,253): 128, 11, 88, 147, 88, 35, 33, 128, 117, 88, 117, 117, 88, (93,266): 88, 88, 88, 88, 88, 88, 140, 245, 140, 117, 35, 35, 232, (93,279): 128, 35, 128, 79, 116, 79, 79, 186, 72, 116, 49, 195, 116, (93,292): 11, 33, 11, 117, 88, 245, 117, 117, 35, 33, 128, 147, 35, (93,305): 232, 232, 232, 232, 35, 35, 35, 35, 35, 35, 128, 35, 35, (93,318): 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, 117, 35, (93,332): 117, 35, 117, 35, 117, 117, 35, 117, 117, 139, 35, 117, (93,344): 35, 117, 35, 35, 117, 117, 35, 117, 35, 117, 35, 35, 117, (93,357): 35, 35, 117, 35, 35, 117, 119, 35, 35, 35, 35, 35, 35, 35, (93,371): 35, 35, 245, 35, (94,0): 28, 38, 71, 125, 71, 33, 125, 62, 157, 62, 117, 139, 236, (94,13): 201, 87, 145, 201, 55, 145, 6, 145, 173, 243, 76, 185, 38, (94,26): 14, 18, 245, 55, 79, 231, 178, 214, 214, 178, 216, 53, 8, (94,39): 70, 234, 185, 55, 232, 245, 140, 35, 128, 35, 117, 117, 35, (94,52): 119, 33, 195, 156, 195, 195, 186, 33, 128, 185, 195, 195, (94,64): 146, 49, 80, 49, 80, 146, 146, 146, 50, 63, 50, 72, 232, (94,77): 232, 232, 232, 139, 232, 55, 35, 35, 201, 119, 117, 201, (94,89): 119, 119, 119, 119, 119, 185, 185, 55, 185, 55, 55, 119, (94,101): 55, 55, 55, 185, 125, 125, 125, 195, 125, 33, 120, 236, (94,113): 145, 233, 20, 38, 71, 219, 204, 204, 71, 185, 236, 236, (94,125): 55, 55, 55, 120, 55, 120, 120, 120, 71, 6, 113, 173, 6, (94,138): 71, 6, 6, 236, 145, 145, 113, 145, 145, 6, 71, 113, 102, (94,151): 196, 83, 83, 4, 54, 65, 43, 227, 212, 150, 150, 150, 115, (94,164): 151, 89, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, (94,176): 151, 43, 10, 77, 7, 39, 149, 149, 188, 188, 75, 95, 178, (94,189): 214, 214, 104, 35, 195, 49, 186, 221, 221, 33, 221, 186, (94,201): 186, 125, 185, 185, 185, 185, 219, 76, 243, 233, 194, 62, (94,213): 28, 194, 38, 18, 219, 246, 195, 231, 252, 214, 104, 220, (94,225): 66, 108, 100, 253, 100, 72, 79, 100, 186, 195, 49, 119, (94,237): 35, 128, 100, 253, 253, 156, 72, 2, 183, 14, 128, 210, (94,249): 234, 187, 72, 33, 117, 147, 11, 117, 35, 128, 128, 35, 35, (94,262): 128, 128, 117, 117, 117, 117, 88, 117, 117, 88, 117, 117, (94,274): 117, 117, 117, 128, 33, 33, 79, 33, 33, 79, 116, 79, 116, (94,287): 72, 195, 49, 72, 186, 117, 128, 128, 33, 128, 117, 128, (94,299): 33, 35, 35, 33, 232, 232, 232, 232, 232, 35, 232, 35, 35, (94,312): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, (94,326): 35, 35, 117, 35, 117, 117, 35, 117, 35, 35, 117, 35, 117, (94,339): 117, 117, 117, 117, 117, 201, 117, 35, 117, 35, 35, 35, (94,351): 201, 117, 35, 117, 35, 35, 117, 35, 117, 117, 35, 35, 35, (94,364): 35, 35, 35, 35, 35, 35, 232, 35, 35, 35, 232, (95,0): 226, 192, 241, 185, 55, 55, 71, 241, 187, 153, 219, 201, (95,12): 139, 139, 201, 55, 201, 201, 55, 145, 145, 55, 145, 55, (95,24): 125, 35, 245, 185, 33, 236, 55, 192, 16, 214, 214, 214, (95,36): 214, 214, 89, 249, 207, 204, 35, 232, 33, 232, 33, 232, (95,48): 117, 117, 35, 128, 35, 128, 185, 66, 195, 33, 128, 128, (95,60): 221, 186, 3, 49, 50, 222, 63, 222, 50, 182, 80, 80, 50, (95,73): 176, 104, 100, 185, 79, 236, 139, 117, 232, 55, 119, 119, (95,85): 119, 55, 201, 117, 117, 119, 35, 35, 232, 55, 125, 79, 120, (95,98): 185, 185, 33, 119, 119, 119, 119, 125, 195, 62, 14, 66, 79, (95,111): 119, 236, 236, 236, 71, 71, 243, 219, 71, 38, 38, 219, 71, (95,124): 236, 236, 236, 55, 55, 120, 120, 120, 6, 113, 173, 243, (95,136): 41, 76, 41, 113, 71, 120, 120, 120, 145, 145, 145, 6, 120, (95,149): 6, 6, 243, 218, 159, 149, 82, 235, 235, 82, 230, 52, 52, (95,162): 150, 56, 151, 214, 151, 214, 214, 151, 151, 151, 151, 214, (95,174): 214, 214, 56, 235, 77, 77, 68, 73, 7, 23, 74, 23, 84, 53, (95,188): 214, 214, 248, 93, 28, 93, 187, 241, 185, 185, 185, 79, (95,200): 186, 125, 66, 204, 204, 125, 125, 71, 236, 243, 20, 60, (95,212): 233, 233, 231, 246, 207, 93, 51, 14, 226, 226, 216, 37, (95,224): 100, 63, 253, 14, 180, 63, 63, 108, 156, 195, 100, 63, 79, (95,237): 195, 128, 79, 50, 175, 253, 186, 186, 66, 186, 128, 186, (95,249): 195, 27, 220, 49, 88, 128, 88, 128, 117, 11, 117, 117, (95,261): 128, 128, 117, 117, 11, 117, 117, 117, 117, 117, 117, 117, (95,273): 88, 88, 117, 117, 33, 33, 79, 79, 221, 221, 186, 72, 72, (95,286): 186, 72, 116, 116, 79, 79, 128, 210, 88, 35, 128, 245, (95,298): 232, 35, 88, 88, 35, 232, 35, 232, 232, 232, 232, 35, 35, (95,311): 35, 35, 35, 35, 35, 35, 35, 128, 35, 35, 35, 35, 35, 35, (95,325): 35, 35, 117, 35, 35, 35, 35, 117, 35, 117, 201, 117, 117, (95,338): 117, 117, 117, 201, 117, 117, 117, 35, 117, 35, 35, 117, (95,350): 117, 35, 35, 117, 35, 35, 117, 201, 35, 35, 35, 35, 35, (95,363): 35, 35, 35, 35, 35, 245, 35, 232, 232, 232, 232, 33, (96,0): 153, 153, 14, 28, 185, 185, 241, 194, 175, 153, 185, 119, (96,12): 119, 139, 140, 139, 145, 120, 199, 139, 119, 139, 35, 33, (96,24): 119, 139, 140, 139, 120, 228, 237, 4, 56, 212, 56, 56, 151, (96,37): 151, 214, 214, 99, 241, 35, 79, 33, 245, 245, 35, 128, 128, (96,50): 128, 117, 128, 33, 186, 195, 117, 128, 128, 221, 221, 186, (96,62): 195, 146, 50, 156, 49, 220, 49, 156, 49, 195, 108, 195, 50, (96,75): 66, 66, 185, 119, 79, 140, 33, 139, 33, 185, 119, 119, 125, (96,88): 241, 119, 120, 125, 119, 35, 33, 201, 35, 35, 35, 119, 119, (96,101): 33, 55, 119, 119, 125, 219, 66, 241, 14, 241, 185, 201, (96,113): 145, 236, 71, 236, 71, 204, 219, 233, 241, 38, 204, 71, (96,125): 71, 236, 145, 236, 120, 120, 243, 173, 173, 173, 41, 213, (96,137): 173, 173, 173, 6, 71, 113, 120, 120, 120, 120, 120, 55, (96,149): 145, 120, 113, 113, 92, 92, 215, 209, 77, 40, 235, 244, (96,161): 212, 212, 212, 56, 56, 56, 56, 56, 56, 56, 56, 56, 69, (96,174): 115, 56, 150, 240, 77, 77, 77, 32, 39, 149, 58, 237, 93, (96,187): 25, 95, 214, 248, 189, 110, 94, 110, 102, 113, 219, 219, (96,199): 55, 125, 219, 219, 241, 100, 62, 241, 38, 236, 71, 204, (96,211): 71, 236, 204, 74, 15, 24, 231, 51, 38, 185, 100, 233, 28, (96,224): 99, 27, 14, 66, 156, 18, 79, 66, 253, 180, 72, 195, 66, (96,237): 220, 33, 156, 63, 123, 97, 185, 88, 221, 128, 33, 79, 72, (96,250): 220, 156, 156, 11, 11, 128, 221, 33, 128, 128, 128, 79, (96,262): 185, 186, 33, 35, 117, 88, 88, 210, 88, 117, 117, 33, 35, (96,275): 88, 117, 79, 186, 221, 221, 11, 33, 128, 224, 224, 72, 50, (96,288): 156, 18, 221, 33, 33, 232, 35, 33, 128, 79, 33, 35, 245, (96,301): 232, 33, 35, 245, 33, 79, 33, 35, 245, 35, 35, 232, 35, (96,314): 117, 117, 11, 117, 35, 35, 35, 119, 35, 35, 35, 117, 35, (96,327): 201, 117, 35, 117, 201, 117, 35, 117, 35, 117, 201, 117, (96,339): 35, 117, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, 117, (96,352): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (96,366): 35, 35, 35, 35, 35, 35, 128, 79, 18, (97,0): 185, 156, 219, 125, 55, 153, 187, 180, 142, 62, 185, 201, (97,12): 35, 139, 119, 139, 139, 145, 55, 55, 232, 140, 245, 232, (97,24): 35, 35, 232, 243, 233, 60, 206, 69, 244, 52, 150, 212, 212, (97,37): 151, 151, 214, 226, 241, 35, 33, 33, 11, 232, 128, 128, 35, (97,50): 128, 117, 117, 35, 128, 221, 88, 11, 128, 195, 182, 50, 80, (97,63): 195, 14, 185, 79, 186, 195, 156, 50, 220, 156, 156, 63, (97,75): 187, 252, 38, 219, 55, 219, 185, 232, 139, 201, 125, 24, (97,87): 157, 249, 38, 35, 38, 125, 0, 147, 35, 117, 35, 119, 33, (97,100): 55, 119, 119, 119, 119, 125, 219, 66, 194, 153, 153, 241, (97,112): 71, 125, 243, 185, 71, 125, 38, 241, 62, 241, 233, 243, (97,124): 204, 76, 219, 243, 243, 219, 76, 20, 213, 213, 41, 154, (97,136): 92, 213, 41, 107, 6, 120, 6, 120, 120, 120, 55, 120, 120, (97,149): 55, 55, 6, 71, 71, 41, 213, 215, 209, 77, 10, 82, 235, 65, (97,163): 191, 150, 244, 244, 150, 244, 227, 244, 244, 65, 26, 126, (97,175): 150, 240, 54, 77, 77, 77, 164, 149, 159, 74, 188, 84, 75, (97,188): 16, 151, 29, 158, 83, 122, 158, 127, 7, 163, 194, 103, (97,200): 113, 71, 219, 38, 62, 231, 28, 28, 241, 204, 236, 71, 204, (97,213): 233, 241, 38, 38, 62, 15, 38, 55, 119, 185, 241, 187, 121, (97,226): 8, 2, 156, 72, 185, 156, 63, 187, 187, 63, 14, 220, 35, (97,239): 88, 180, 252, 91, 116, 128, 88, 11, 116, 117, 128, 72, (97,251): 186, 156, 35, 88, 117, 11, 117, 11, 117, 128, 33, 128, 33, (97,264): 128, 35, 117, 117, 117, 117, 117, 35, 117, 128, 33, 33, (97,276): 33, 221, 33, 79, 18, 221, 221, 79, 72, 108, 195, 186, 18, (97,289): 33, 35, 35, 35, 232, 128, 33, 33, 232, 35, 232, 128, 232, (97,302): 35, 245, 79, 18, 18, 33, 232, 35, 35, 35, 128, 35, 128, (97,315): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, (97,329): 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, 35, (97,342): 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, (97,355): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (97,369): 35, 128, 35, 35, 232, 33, (98,0): 185, 185, 125, 14, 241, 125, 185, 62, 125, 125, 71, 232, (98,12): 119, 139, 139, 140, 119, 139, 87, 140, 55, 232, 88, 140, (98,24): 245, 140, 232, 233, 74, 45, 83, 29, 150, 150, 227, 65, 4, (98,37): 29, 248, 214, 70, 38, 117, 128, 35, 35, 128, 35, 117, 117, (98,50): 117, 117, 88, 88, 88, 88, 117, 147, 210, 116, 220, 220, 3, (98,63): 46, 241, 79, 79, 185, 125, 195, 195, 125, 180, 51, 153, (98,75): 192, 246, 251, 243, 119, 119, 139, 119, 55, 35, 119, 71, (98,87): 62, 24, 185, 140, 33, 66, 125, 33, 33, 117, 35, 128, 33, (98,100): 119, 33, 55, 55, 55, 219, 38, 241, 14, 153, 28, 241, 103, (98,113): 103, 103, 38, 219, 38, 62, 194, 62, 194, 62, 62, 20, 233, (98,126): 233, 103, 233, 62, 194, 60, 194, 228, 228, 209, 215, 213, (98,138): 215, 92, 41, 41, 107, 113, 173, 6, 120, 120, 120, 145, (98,150): 145, 120, 201, 145, 6, 6, 41, 92, 209, 209, 106, 77, 39, (98,163): 10, 211, 167, 82, 82, 68, 10, 67, 10, 77, 166, 82, 85, (98,176): 211, 82, 73, 73, 68, 148, 47, 127, 59, 189, 151, 16, 56, (98,189): 151, 69, 197, 85, 191, 217, 23, 159, 31, 251, 76, 113, (98,201): 185, 55, 185, 38, 62, 62, 100, 71, 71, 71, 71, 236, 204, (98,214): 233, 100, 62, 28, 25, 100, 38, 201, 55, 185, 14, 100, 14, (98,227): 108, 187, 100, 185, 33, 125, 187, 175, 104, 2, 175, 108, (98,239): 128, 66, 50, 195, 128, 33, 210, 88, 128, 210, 210, 128, (98,251): 33, 72, 128, 11, 117, 128, 128, 221, 221, 221, 33, 128, (98,263): 35, 35, 117, 88, 35, 119, 35, 117, 35, 35, 117, 128, 221, (98,276): 33, 128, 33, 116, 224, 221, 128, 224, 116, 105, 234, 79, (98,288): 79, 128, 245, 245, 128, 232, 128, 33, 79, 35, 210, 35, (98,300): 128, 35, 33, 79, 18, 18, 79, 79, 232, 128, 128, 232, 245, (98,313): 35, 117, 35, 128, 35, 35, 128, 35, 35, 35, 35, 35, 35, (98,326): 117, 35, 35, 35, 117, 35, 35, 117, 35, 35, 117, 35, 117, (98,339): 35, 117, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, 35, (98,352): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (98,366): 35, 35, 245, 35, 35, 232, 35, 245, 35, (99,0): 28, 24, 28, 66, 14, 100, 125, 185, 125, 185, 79, 139, 140, (99,13): 35, 35, 139, 201, 201, 55, 139, 245, 35, 232, 66, 180, 51, (99,26): 51, 15, 229, 115, 238, 211, 13, 65, 112, 39, 247, 59, 189, (99,39): 248, 153, 185, 245, 245, 88, 35, 232, 245, 88, 139, 117, (99,51): 117, 117, 140, 88, 117, 186, 128, 88, 33, 3, 195, 186, 186, (99,64): 232, 119, 185, 66, 66, 219, 125, 185, 66, 194, 241, 251, (99,76): 58, 62, 76, 113, 251, 219, 236, 219, 55, 139, 38, 185, 140, (99,89): 55, 55, 117, 33, 125, 185, 88, 117, 35, 119, 119, 33, 55, (99,102): 33, 185, 185, 219, 241, 241, 62, 194, 194, 233, 251, 233, (99,114): 38, 38, 103, 38, 194, 153, 153, 24, 153, 100, 60, 153, 74, (99,127): 74, 142, 24, 207, 237, 237, 237, 23, 206, 149, 39, 39, 7, (99,140): 106, 250, 106, 9, 254, 173, 173, 173, 6, 145, 120, 120, (99,152): 145, 145, 145, 120, 76, 92, 20, 31, 213, 215, 209, 32, 73, (99,165): 73, 209, 32, 48, 106, 32, 32, 32, 77, 82, 191, 83, 4, 148, (99,179): 39, 68, 112, 217, 247, 29, 151, 151, 56, 151, 212, 13, (99,191): 109, 191, 217, 112, 159, 73, 250, 76, 113, 113, 120, 119, (99,203): 201, 55, 18, 38, 233, 207, 207, 231, 28, 231, 28, 28, 100, (99,216): 38, 79, 62, 55, 139, 232, 185, 55, 195, 156, 108, 252, 70, (99,229): 253, 14, 108, 104, 27, 27, 63, 14, 8, 123, 63, 156, 51, (99,242): 195, 88, 88, 88, 33, 210, 88, 88, 210, 88, 33, 35, 35, (99,255): 128, 186, 186, 221, 221, 33, 128, 117, 11, 33, 117, 117, (99,267): 117, 35, 232, 35, 232, 128, 128, 128, 128, 128, 221, 72, (99,279): 234, 221, 195, 108, 234, 108, 104, 108, 146, 221, 33, 245, (99,291): 35, 128, 128, 79, 221, 33, 128, 33, 33, 79, 221, 18, 195, (99,304): 79, 33, 33, 33, 33, 33, 33, 128, 117, 35, 35, 128, 35, (99,317): 128, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, (99,331): 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (99,344): 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, (99,357): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 245, 35, 35, (99,371): 35, 232, 232, 128, (100,0): 252, 180, 66, 117, 103, 180, 100, 194, 157, 93, 100, 120, (100,12): 119, 119, 119, 139, 55, 139, 139, 87, 35, 33, 33, 66, 242, (100,25): 53, 95, 248, 16, 59, 75, 83, 235, 148, 73, 73, 149, 23, (100,38): 192, 142, 38, 119, 245, 139, 210, 35, 33, 232, 117, 35, (100,50): 139, 117, 35, 35, 232, 232, 125, 79, 221, 221, 186, 221, (100,62): 33, 33, 33, 55, 204, 38, 185, 185, 204, 103, 219, 100, (100,74): 110, 62, 23, 188, 228, 20, 31, 153, 113, 60, 194, 233, (100,86): 246, 24, 236, 33, 35, 117, 119, 117, 117, 33, 128, 128, (100,98): 35, 35, 35, 33, 55, 185, 185, 103, 62, 194, 28, 153, 153, (100,111): 100, 103, 103, 103, 38, 38, 233, 14, 153, 93, 15, 58, 74, (100,124): 142, 188, 229, 16, 152, 229, 229, 59, 59, 59, 238, 16, (100,136): 29, 238, 83, 4, 148, 77, 32, 215, 215, 154, 41, 41, 173, (100,149): 6, 145, 6, 145, 55, 120, 71, 103, 233, 251, 251, 76, 92, (100,162): 213, 213, 92, 92, 154, 92, 9, 209, 32, 32, 32, 190, 10, (100,175): 112, 122, 122, 98, 94, 112, 112, 247, 127, 158, 29, 69, (100,187): 151, 56, 150, 167, 40, 65, 167, 68, 164, 73, 250, 254, (100,199): 76, 103, 71, 145, 119, 119, 71, 204, 241, 14, 84, 249, (100,211): 226, 93, 28, 194, 207, 70, 192, 187, 231, 35, 232, 55, (100,223): 33, 232, 66, 14, 14, 63, 220, 66, 156, 66, 156, 104, 180, (100,236): 14, 187, 180, 33, 187, 99, 14, 88, 147, 147, 185, 147, (100,248): 117, 117, 140, 88, 117, 117, 117, 33, 128, 128, 128, 117, (100,260): 11, 117, 88, 117, 33, 128, 117, 35, 35, 117, 232, 35, 79, (100,273): 116, 116, 33, 46, 49, 220, 234, 49, 234, 183, 63, 176, (100,285): 108, 80, 221, 11, 245, 11, 128, 33, 72, 72, 195, 33, 72, (100,298): 49, 66, 72, 116, 79, 33, 232, 35, 232, 33, 33, 55, 128, (100,311): 232, 35, 128, 35, 128, 232, 35, 35, 35, 35, 35, 35, 35, (100,324): 35, 117, 35, 35, 117, 35, 35, 117, 35, 35, 117, 35, 117, (100,337): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (100,350): 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (100,364): 35, 35, 35, 35, 117, 139, 35, 232, 232, 128, 33, (101,0): 100, 125, 219, 33, 125, 125, 241, 252, 66, 71, 35, 140, (101,12): 117, 236, 185, 55, 55, 55, 204, 204, 14, 100, 79, 66, 70, (101,25): 93, 246, 229, 75, 23, 47, 197, 4, 39, 228, 92, 102, 60, (101,38): 153, 153, 125, 117, 117, 232, 140, 245, 33, 139, 245, 139, (101,50): 117, 140, 245, 117, 35, 33, 221, 186, 195, 220, 14, 146, (101,62): 46, 128, 18, 71, 125, 204, 185, 38, 153, 15, 24, 142, 59, (101,75): 60, 237, 4, 7, 196, 7, 110, 31, 58, 207, 233, 237, 194, (101,88): 185, 140, 140, 35, 33, 128, 221, 186, 79, 185, 33, 128, (101,100): 128, 119, 33, 33, 219, 241, 100, 153, 153, 153, 74, 153, (101,112): 233, 76, 219, 38, 103, 219, 241, 194, 192, 246, 198, 157, (101,124): 152, 189, 151, 214, 214, 151, 151, 89, 151, 248, 151, (101,135): 214, 214, 151, 56, 115, 43, 235, 82, 77, 48, 174, 154, (101,147): 41, 41, 173, 6, 145, 120, 120, 120, 71, 125, 103, 103, (101,159): 103, 113, 113, 6, 6, 173, 173, 173, 107, 92, 200, 73, (101,171): 218, 32, 32, 190, 73, 98, 75, 247, 98, 112, 112, 112, 68, (101,184): 29, 197, 85, 212, 212, 65, 40, 167, 114, 67, 77, 200, (101,196): 106, 254, 107, 107, 107, 219, 71, 120, 119, 236, 219, (101,207): 241, 207, 192, 93, 84, 249, 25, 207, 28, 241, 180, 246, (101,219): 8, 204, 66, 62, 63, 14, 116, 117, 72, 187, 2, 14, 14, (101,232): 156, 18, 28, 156, 33, 221, 185, 33, 156, 104, 125, 117, (101,244): 140, 147, 119, 88, 147, 35, 88, 117, 88, 117, 210, 117, (101,256): 117, 117, 117, 88, 88, 35, 128, 79, 33, 33, 128, 35, 128, (101,269): 117, 35, 128, 33, 116, 72, 79, 72, 156, 156, 49, 49, 116, (101,282): 50, 33, 80, 128, 224, 210, 117, 128, 33, 33, 221, 116, (101,294): 195, 195, 195, 14, 234, 116, 33, 128, 128, 11, 128, 35, (101,306): 33, 33, 79, 128, 232, 245, 128, 35, 232, 232, 35, 128, (101,318): 35, 35, 128, 119, 35, 35, 35, 35, 35, 117, 35, 35, 117, (101,331): 35, 35, 117, 35, 35, 35, 117, 35, 117, 35, 117, 35, 117, (101,344): 35, 117, 35, 117, 35, 117, 35, 117, 117, 35, 35, 35, 35, (101,357): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 232, 35, (101,371): 232, 35, 119, 33, (102,0): 33, 66, 104, 125, 33, 66, 14, 28, 28, 66, 185, 71, 185, (102,13): 185, 139, 35, 55, 66, 70, 175, 93, 104, 100, 104, 175, (102,25): 207, 231, 207, 207, 7, 60, 149, 7, 92, 145, 145, 71, 251, (102,38): 192, 193, 241, 35, 117, 35, 245, 139, 232, 232, 140, 245, (102,50): 245, 245, 35, 35, 128, 33, 116, 234, 63, 105, 183, 104, (102,62): 108, 116, 232, 232, 204, 100, 207, 15, 25, 226, 60, 20, (102,74): 237, 233, 31, 237, 149, 4, 75, 115, 152, 247, 60, 243, 38, (102,87): 62, 71, 232, 33, 33, 119, 79, 125, 33, 195, 195, 66, 125, (102,100): 185, 119, 33, 185, 38, 62, 194, 28, 194, 153, 153, 74, (102,112): 62, 38, 38, 103, 219, 71, 103, 100, 24, 15, 152, 248, (102,124): 151, 214, 214, 151, 151, 214, 151, 151, 214, 151, 151, (102,135): 151, 151, 151, 151, 56, 69, 69, 13, 82, 32, 106, 48, 9, (102,148): 254, 41, 6, 6, 6, 120, 6, 120, 71, 71, 71, 71, 120, 120, (102,162): 120, 145, 120, 113, 173, 41, 41, 101, 73, 32, 200, 32, (102,174): 73, 77, 39, 94, 127, 98, 167, 68, 67, 67, 191, 158, 54, (102,187): 235, 191, 26, 96, 132, 40, 67, 166, 190, 200, 118, 254, (102,199): 107, 76, 107, 125, 120, 55, 71, 241, 28, 251, 28, 62, (102,211): 100, 51, 24, 66, 219, 219, 62, 104, 8, 28, 63, 252, 27, (102,224): 100, 33, 128, 100, 104, 66, 116, 2, 63, 66, 2, 2, 14, 79, (102,238): 35, 88, 140, 125, 88, 117, 88, 88, 140, 88, 147, 35, 140, (102,251): 35, 117, 35, 147, 117, 88, 11, 128, 128, 33, 128, 33, 79, (102,264): 35, 128, 33, 33, 33, 117, 117, 128, 128, 221, 46, 116, (102,276): 116, 49, 49, 146, 49, 46, 146, 44, 224, 88, 46, 116, 111, (102,289): 116, 116, 46, 33, 46, 116, 72, 50, 234, 186, 128, 11, (102,301): 245, 128, 35, 128, 33, 33, 33, 33, 232, 117, 35, 128, (102,313): 128, 232, 128, 35, 117, 117, 35, 35, 35, 35, 35, 35, 35, (102,326): 117, 35, 201, 117, 35, 117, 35, 201, 117, 117, 35, 117, (102,338): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (102,351): 117, 119, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (102,365): 35, 35, 35, 35, 232, 232, 35, 232, 35, 232, (103,0): 219, 140, 14, 185, 125, 219, 195, 62, 14, 185, 119, 35, 55, (103,13): 55, 185, 204, 204, 232, 241, 2, 99, 37, 100, 18, 204, 14, (103,26): 62, 38, 243, 233, 228, 92, 228, 243, 145, 6, 55, 71, 142, (103,39): 178, 100, 232, 140, 35, 140, 245, 139, 140, 35, 35, 33, (103,51): 33, 33, 221, 116, 72, 186, 49, 182, 63, 91, 27, 78, 18, (103,64): 18, 204, 231, 242, 249, 53, 246, 74, 207, 60, 74, 209, (103,76): 228, 31, 237, 75, 83, 56, 151, 75, 60, 20, 236, 24, 204, (103,89): 232, 185, 204, 232, 33, 195, 66, 241, 28, 180, 14, 125, (103,101): 33, 55, 185, 219, 241, 62, 62, 194, 60, 74, 58, 60, 20, (103,114): 103, 219, 243, 185, 103, 194, 24, 15, 152, 193, 248, 151, (103,126): 151, 151, 56, 56, 151, 151, 151, 151, 248, 214, 151, 214, (103,138): 151, 151, 56, 56, 244, 54, 39, 73, 215, 215, 215, 254, (103,150): 41, 113, 6, 6, 120, 120, 145, 55, 120, 120, 120, 120, (103,162): 145, 145, 120, 6, 6, 76, 92, 39, 68, 39, 32, 73, 166, 68, (103,176): 127, 94, 112, 98, 67, 190, 166, 67, 67, 112, 167, 43, (103,188): 244, 191, 82, 96, 21, 21, 42, 200, 174, 118, 254, 107, (103,200): 120, 113, 113, 71, 71, 103, 153, 15, 62, 100, 241, 24, (103,212): 53, 99, 192, 207, 156, 232, 55, 14, 14, 183, 214, 89, (103,224): 104, 28, 156, 63, 253, 195, 232, 18, 18, 210, 33, 186, (103,236): 14, 186, 33, 245, 18, 100, 55, 245, 0, 35, 88, 140, 140, (103,249): 119, 147, 245, 147, 232, 140, 35, 35, 35, 33, 79, 128, (103,261): 35, 117, 11, 117, 119, 33, 185, 33, 35, 11, 232, 128, (103,273): 128, 33, 116, 186, 186, 49, 50, 221, 116, 50, 46, 224, (103,285): 111, 46, 146, 128, 116, 72, 116, 221, 116, 72, 72, 195, (103,297): 46, 33, 221, 116, 128, 11, 11, 33, 232, 232, 33, 33, 35, (103,310): 35, 33, 33, 232, 128, 35, 35, 117, 128, 35, 35, 35, 35, (103,323): 35, 35, 35, 35, 117, 35, 117, 35, 35, 117, 117, 35, 35, (103,336): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (103,348): 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, (103,361): 35, 35, 35, 35, 35, 35, 35, 117, 35, 232, 33, 232, 35, (103,374): 35, (104,0): 232, 185, 66, 241, 125, 195, 241, 14, 24, 125, 79, 185, (104,12): 232, 35, 185, 18, 14, 51, 216, 249, 89, 89, 180, 234, 14, (104,25): 38, 204, 71, 236, 6, 243, 243, 233, 71, 201, 119, 145, (104,37): 236, 38, 194, 125, 232, 35, 117, 139, 245, 245, 35, 35, (104,49): 11, 128, 116, 220, 80, 146, 182, 50, 80, 234, 78, 105, 50, (104,62): 50, 187, 51, 51, 226, 178, 89, 89, 53, 15, 23, 237, 237, (104,75): 23, 237, 7, 149, 206, 75, 115, 151, 115, 188, 60, 38, 243, (104,88): 71, 185, 185, 79, 185, 117, 204, 66, 125, 14, 28, 241, 63, (104,101): 125, 186, 125, 219, 219, 241, 194, 62, 20, 142, 75, 51, (104,113): 231, 62, 20, 219, 71, 219, 62, 110, 192, 58, 110, 206, (104,125): 75, 189, 151, 212, 212, 212, 212, 212, 56, 151, 151, 151, (104,137): 214, 151, 151, 151, 56, 115, 4, 47, 23, 149, 39, 149, (104,149): 149, 163, 41, 6, 107, 71, 145, 113, 113, 145, 120, 120, (104,161): 119, 55, 120, 120, 6, 120, 173, 102, 68, 127, 77, 148, (104,173): 82, 112, 82, 148, 112, 191, 191, 67, 190, 160, 166, 166, (104,185): 67, 68, 109, 56, 212, 167, 96, 67, 161, 136, 200, 174, 9, (104,198): 41, 173, 173, 113, 103, 113, 125, 103, 153, 157, 192, 15, (104,210): 194, 38, 62, 153, 187, 187, 24, 119, 128, 241, 187, 100, (104,222): 100, 181, 63, 70, 49, 241, 63, 79, 210, 234, 187, 35, 79, (104,235): 14, 186, 33, 128, 33, 24, 28, 18, 117, 140, 140, 140, (104,247): 117, 140, 140, 140, 140, 139, 117, 117, 117, 33, 35, 35, (104,259): 128, 185, 221, 128, 117, 221, 128, 35, 35, 128, 33, 33, (104,271): 79, 221, 221, 186, 49, 156, 195, 72, 195, 146, 186, 46, (104,283): 186, 3, 186, 116, 46, 186, 116, 116, 46, 72, 195, 72, (104,295): 186, 72, 116, 224, 33, 224, 33, 11, 245, 33, 33, 33, 232, (104,308): 232, 35, 232, 232, 35, 33, 33, 33, 35, 35, 117, 117, 128, (104,321): 119, 35, 117, 117, 117, 117, 117, 117, 35, 117, 117, 35, (104,333): 117, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (104,345): 117, 35, 117, 35, 117, 35, 117, 119, 35, 35, 35, 35, 117, (104,358): 35, 117, 117, 117, 35, 117, 35, 35, 35, 35, 35, 232, 128, (104,371): 232, 35, 35, 33, (105,0): 35, 35, 33, 185, 66, 241, 241, 241, 24, 38, 119, 55, 232, (105,13): 232, 125, 233, 100, 27, 214, 216, 123, 183, 241, 14, 241, (105,25): 79, 55, 55, 55, 236, 236, 145, 71, 201, 139, 139, 35, 35, (105,38): 185, 204, 185, 119, 245, 245, 245, 245, 139, 128, 245, 11, (105,50): 221, 146, 50, 80, 46, 3, 116, 111, 46, 146, 108, 63, 253, (105,63): 121, 89, 95, 89, 214, 89, 214, 214, 151, 248, 238, 75, 84, (105,76): 45, 23, 45, 75, 23, 127, 47, 83, 229, 7, 38, 71, 233, 204, (105,90): 204, 38, 100, 38, 24, 93, 51, 142, 28, 125, 28, 100, 66, (105,103): 185, 125, 66, 103, 62, 233, 233, 231, 237, 84, 58, 28, (105,115): 62, 233, 219, 241, 24, 58, 15, 58, 58, 237, 45, 29, 69, (105,128): 150, 227, 227, 13, 29, 115, 56, 214, 151, 214, 151, 214, (105,140): 151, 56, 151, 115, 29, 189, 151, 189, 29, 238, 94, 218, (105,152): 107, 107, 6, 6, 173, 113, 173, 113, 120, 120, 55, 120, (105,164): 71, 113, 107, 254, 163, 148, 68, 159, 67, 211, 54, 235, (105,176): 43, 211, 67, 167, 169, 169, 114, 161, 166, 68, 68, 217, (105,188): 212, 56, 85, 191, 160, 169, 42, 136, 155, 9, 154, 107, (105,200): 254, 107, 113, 113, 194, 194, 194, 142, 188, 192, 14, (105,211): 103, 14, 241, 62, 62, 219, 147, 66, 241, 104, 252, 97, (105,223): 187, 123, 121, 14, 245, 147, 88, 79, 14, 104, 33, 245, (105,235): 79, 33, 79, 117, 88, 33, 33, 140, 140, 117, 117, 140, (105,247): 117, 140, 245, 140, 245, 117, 245, 139, 117, 117, 128, (105,258): 35, 119, 128, 33, 119, 35, 35, 128, 33, 33, 11, 35, 221, (105,271): 18, 49, 186, 79, 116, 186, 186, 146, 220, 116, 46, 128, (105,283): 46, 186, 186, 46, 46, 46, 79, 46, 79, 186, 72, 186, 221, (105,296): 46, 33, 221, 221, 221, 128, 128, 35, 128, 35, 232, 35, (105,308): 35, 128, 117, 117, 117, 117, 35, 35, 128, 35, 232, 33, (105,320): 35, 35, 35, 35, 117, 117, 117, 35, 117, 117, 35, 117, (105,332): 117, 117, 201, 117, 35, 117, 35, 117, 201, 117, 35, 117, (105,344): 35, 117, 201, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, (105,357): 35, 117, 35, 35, 117, 35, 117, 35, 35, 35, 35, 35, 33, (105,370): 79, 79, 79, 33, 33, (106,0): 156, 125, 185, 195, 100, 180, 28, 156, 175, 51, 28, 28, (106,12): 100, 38, 55, 232, 66, 38, 187, 28, 14, 100, 195, 66, 66, (106,25): 55, 35, 139, 139, 201, 119, 199, 55, 139, 140, 35, 139, (106,37): 139, 117, 33, 119, 35, 117, 140, 245, 245, 232, 79, 72, (106,49): 116, 46, 116, 146, 3, 3, 146, 80, 72, 46, 72, 100, 180, (106,62): 93, 249, 214, 89, 214, 151, 248, 151, 214, 151, 214, 214, (106,74): 151, 214, 151, 189, 238, 59, 94, 218, 163, 31, 74, 76, 62, (106,87): 231, 62, 233, 100, 58, 84, 192, 53, 89, 193, 193, 70, 194, (106,100): 63, 62, 66, 55, 125, 125, 38, 219, 38, 233, 228, 153, 15, (106,113): 142, 60, 100, 241, 251, 194, 24, 142, 110, 74, 74, 74, (106,125): 237, 4, 75, 235, 235, 26, 54, 235, 43, 115, 151, 151, (106,137): 214, 151, 151, 214, 151, 151, 214, 151, 214, 151, 151, (106,148): 56, 122, 165, 45, 228, 92, 9, 107, 6, 6, 173, 173, 120, (106,161): 120, 145, 120, 120, 6, 113, 254, 101, 39, 127, 73, 164, (106,173): 10, 65, 212, 151, 13, 167, 114, 114, 114, 126, 169, 67, (106,185): 166, 68, 112, 217, 197, 191, 167, 160, 169, 42, 200, 155, (106,197): 118, 9, 107, 254, 103, 102, 102, 163, 153, 194, 196, 192, (106,209): 153, 103, 103, 241, 185, 185, 219, 156, 219, 66, 79, 195, (106,221): 117, 100, 123, 8, 175, 108, 79, 33, 195, 108, 33, 183, (106,233): 14, 79, 117, 33, 79, 245, 210, 140, 245, 140, 140, 117, (106,245): 139, 245, 140, 245, 140, 245, 140, 117, 117, 117, 117, (106,256): 139, 117, 128, 35, 35, 35, 35, 128, 88, 33, 33, 128, 128, (106,269): 79, 186, 72, 186, 79, 33, 221, 79, 33, 116, 186, 33, 11, (106,282): 128, 221, 46, 46, 46, 221, 33, 46, 221, 221, 116, 116, (106,294): 33, 128, 11, 128, 224, 33, 221, 33, 128, 11, 35, 117, 35, (106,307): 128, 35, 117, 117, 117, 35, 35, 35, 117, 35, 128, 33, 33, (106,320): 119, 35, 35, 117, 35, 117, 35, 117, 117, 35, 117, 117, (106,332): 35, 117, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, (106,344): 35, 117, 35, 117, 35, 117, 35, 117, 119, 35, 35, 35, 35, (106,357): 35, 35, 117, 35, 35, 117, 35, 35, 35, 35, 35, 117, 35, (106,370): 128, 33, 33, 33, 128, (107,0): 180, 156, 33, 185, 66, 14, 156, 66, 204, 252, 8, 242, 207, (107,13): 204, 185, 100, 125, 125, 180, 180, 66, 79, 232, 232, 18, (107,25): 35, 35, 139, 117, 139, 201, 199, 35, 117, 139, 35, 35, (107,37): 117, 35, 55, 232, 119, 117, 245, 245, 232, 79, 72, 50, (107,49): 234, 72, 46, 3, 146, 146, 222, 50, 49, 18, 14, 187, 70, (107,62): 53, 214, 248, 151, 214, 214, 151, 56, 189, 69, 189, 56, (107,74): 56, 151, 151, 29, 75, 45, 148, 110, 23, 20, 20, 243, 233, (107,87): 38, 241, 194, 15, 229, 214, 189, 151, 214, 214, 214, 95, (107,99): 142, 241, 219, 125, 33, 79, 18, 219, 125, 103, 233, 60, (107,111): 194, 24, 60, 100, 60, 194, 241, 251, 194, 74, 24, 60, 60, (107,124): 31, 209, 237, 148, 10, 96, 10, 10, 148, 47, 197, 189, 69, (107,137): 56, 56, 151, 151, 151, 214, 151, 214, 151, 214, 189, 189, (107,149): 189, 56, 56, 39, 215, 92, 154, 6, 6, 173, 6, 120, 201, (107,162): 145, 120, 145, 120, 107, 107, 118, 73, 39, 164, 73, 10, (107,174): 13, 56, 56, 115, 65, 191, 114, 160, 131, 169, 169, 166, (107,186): 82, 109, 109, 85, 115, 217, 67, 169, 190, 155, 200, 200, (107,198): 118, 254, 173, 113, 102, 196, 188, 188, 188, 157, 192, (107,209): 142, 103, 103, 194, 194, 28, 153, 24, 157, 100, 219, 66, (107,221): 100, 33, 156, 66, 14, 104, 100, 79, 88, 79, 35, 14, 63, (107,234): 220, 232, 11, 221, 232, 79, 232, 232, 245, 140, 35, 245, (107,246): 140, 245, 245, 140, 245, 117, 245, 139, 117, 117, 35, 35, (107,258): 35, 35, 128, 35, 128, 35, 33, 128, 128, 35, 79, 156, 195, (107,271): 33, 35, 128, 33, 79, 79, 128, 117, 117, 128, 35, 11, 221, (107,284): 186, 186, 221, 221, 221, 221, 33, 33, 33, 33, 128, 117, (107,296): 117, 33, 33, 221, 33, 128, 128, 128, 117, 35, 117, 35, (107,308): 35, 35, 128, 35, 128, 128, 232, 128, 35, 117, 232, 232, (107,320): 35, 35, 35, 201, 117, 117, 117, 201, 117, 139, 35, 117, (107,332): 117, 35, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, (107,344): 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, (107,357): 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 232, 33, 33, (107,370): 128, 128, 221, 116, 116, (108,0): 66, 125, 33, 128, 33, 125, 125, 185, 119, 100, 24, 24, 100, (108,13): 204, 18, 62, 25, 241, 232, 117, 117, 18, 204, 79, 232, 88, (108,26): 140, 245, 140, 140, 117, 117, 139, 140, 140, 117, 139, (108,37): 117, 119, 119, 128, 232, 232, 117, 117, 33, 186, 66, 49, (108,49): 234, 72, 3, 49, 49, 49, 220, 156, 66, 66, 24, 25, 16, 189, (108,63): 151, 214, 151, 151, 56, 56, 115, 69, 56, 56, 56, 56, 56, (108,76): 69, 189, 56, 56, 151, 29, 45, 20, 219, 71, 233, 233, 60, (108,89): 51, 229, 16, 214, 151, 151, 189, 189, 214, 59, 58, 103, (108,101): 66, 66, 185, 33, 125, 66, 219, 38, 194, 28, 228, 153, (108,113): 100, 194, 28, 194, 241, 103, 233, 62, 60, 20, 20, 228, (108,125): 228, 39, 39, 7, 73, 73, 73, 73, 77, 148, 54, 83, 69, 115, (108,139): 56, 56, 56, 151, 56, 151, 151, 151, 151, 151, 56, 56, (108,151): 151, 165, 7, 41, 173, 6, 154, 76, 145, 113, 6, 120, 113, (108,164): 6, 6, 173, 107, 218, 218, 39, 82, 82, 54, 13, 212, 56, (108,177): 56, 115, 69, 255, 169, 169, 21, 169, 166, 109, 126, 158, (108,189): 244, 244, 40, 166, 166, 190, 200, 200, 200, 101, 254, (108,200): 101, 107, 102, 163, 198, 75, 188, 162, 58, 142, 103, 219, (108,212): 194, 153, 58, 142, 187, 51, 28, 241, 117, 185, 186, 185, (108,224): 187, 2, 63, 72, 234, 66, 186, 88, 245, 14, 100, 11, 147, (108,237): 35, 11, 79, 35, 232, 245, 147, 245, 245, 140, 35, 245, (108,249): 245, 117, 140, 117, 245, 245, 117, 33, 232, 117, 117, (108,260): 128, 33, 128, 35, 33, 128, 88, 11, 79, 156, 186, 117, (108,272): 221, 33, 128, 33, 128, 35, 128, 128, 128, 117, 128, 33, (108,284): 221, 221, 33, 33, 221, 79, 33, 128, 117, 128, 33, 128, (108,296): 128, 33, 33, 33, 35, 11, 245, 35, 128, 35, 128, 245, 35, (108,309): 128, 232, 128, 232, 128, 232, 128, 33, 232, 35, 35, 35, (108,321): 35, 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, 35, (108,333): 139, 117, 117, 201, 117, 117, 35, 117, 35, 117, 35, 117, (108,345): 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, (108,358): 35, 35, 35, 35, 35, 119, 35, 119, 119, 35, 221, 128, 128, (108,371): 128, 79, 186, 186, (109,0): 18, 186, 185, 33, 33, 232, 33, 79, 204, 66, 195, 204, 195, (109,13): 185, 232, 117, 79, 185, 185, 236, 245, 245, 33, 79, 35, (109,25): 147, 245, 117, 88, 140, 35, 35, 88, 88, 140, 117, 117, 35, (109,38): 119, 33, 119, 33, 128, 35, 128, 221, 116, 18, 79, 116, 79, (109,51): 79, 195, 195, 195, 156, 100, 28, 231, 237, 238, 115, 238, (109,63): 4, 212, 56, 56, 56, 212, 115, 43, 13, 43, 4, 54, 217, 4, (109,77): 165, 56, 151, 151, 151, 16, 75, 74, 38, 38, 231, 229, 248, (109,90): 151, 16, 56, 238, 85, 23, 4, 189, 214, 53, 153, 62, 241, (109,103): 125, 125, 125, 241, 66, 62, 194, 28, 194, 153, 194, 251, (109,115): 241, 103, 219, 219, 103, 103, 20, 233, 20, 92, 20, 7, 60, (109,128): 7, 209, 101, 250, 215, 215, 209, 159, 235, 197, 158, 43, (109,140): 197, 69, 151, 151, 151, 56, 151, 56, 151, 56, 212, 56, (109,152): 69, 4, 110, 218, 113, 145, 6, 120, 6, 113, 113, 173, 173, (109,165): 6, 41, 254, 154, 106, 47, 13, 255, 217, 13, 56, 151, 214, (109,178): 56, 212, 85, 160, 160, 169, 40, 169, 255, 126, 167, 167, (109,190): 167, 42, 190, 42, 190, 155, 118, 118, 118, 254, 107, 107, (109,202): 251, 102, 250, 194, 102, 153, 110, 110, 102, 103, 163, (109,213): 142, 192, 24, 142, 192, 178, 37, 157, 33, 119, 79, 18, (109,225): 180, 2, 79, 186, 66, 79, 245, 128, 234, 100, 33, 245, 35, (109,238): 88, 35, 88, 245, 245, 245, 35, 117, 88, 245, 245, 117, (109,250): 117, 245, 117, 117, 117, 245, 33, 35, 245, 35, 119, 33, (109,262): 33, 35, 117, 128, 35, 117, 128, 221, 221, 117, 33, 119, (109,274): 119, 35, 35, 117, 35, 35, 128, 117, 128, 33, 33, 33, 128, (109,287): 128, 79, 33, 33, 117, 35, 128, 33, 33, 33, 33, 33, 128, (109,300): 245, 35, 245, 35, 232, 128, 35, 232, 128, 232, 33, 33, (109,312): 33, 232, 33, 33, 33, 33, 128, 35, 35, 35, 117, 117, 117, (109,325): 35, 117, 119, 117, 117, 201, 117, 117, 117, 117, 117, 35, (109,337): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (109,349): 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 119, 35, (109,362): 119, 35, 119, 35, 232, 128, 33, 224, 33, 116, 72, 146, (109,374): 72, (110,0): 79, 79, 33, 33, 117, 35, 33, 185, 35, 204, 28, 241, 35, (110,13): 140, 232, 185, 71, 18, 55, 139, 35, 245, 139, 245, 35, 88, (110,26): 245, 117, 88, 88, 35, 35, 88, 117, 117, 117, 117, 119, 33, (110,39): 33, 119, 128, 33, 35, 128, 221, 221, 33, 128, 232, 35, 88, (110,52): 128, 79, 125, 14, 38, 194, 231, 206, 238, 29, 235, 211, (110,64): 211, 43, 227, 212, 212, 244, 26, 82, 10, 10, 10, 10, 112, (110,77): 255, 197, 29, 151, 214, 151, 16, 194, 62, 74, 16, 214, (110,89): 214, 151, 238, 83, 206, 206, 209, 7, 75, 151, 151, 142, (110,101): 14, 66, 195, 125, 66, 241, 14, 14, 28, 28, 60, 153, 100, (110,114): 251, 219, 71, 71, 71, 219, 71, 233, 76, 213, 233, 213, (110,126): 209, 228, 60, 62, 103, 107, 107, 154, 48, 106, 67, 82, (110,138): 10, 39, 148, 235, 85, 197, 69, 29, 85, 69, 69, 115, 69, (110,151): 151, 151, 151, 56, 152, 110, 251, 71, 103, 107, 107, 173, (110,163): 173, 6, 173, 254, 118, 73, 73, 217, 191, 211, 67, 191, (110,175): 56, 214, 214, 16, 69, 115, 167, 160, 160, 169, 160, 144, (110,187): 227, 114, 26, 114, 160, 42, 166, 166, 200, 118, 118, 9, (110,199): 113, 107, 101, 127, 110, 196, 196, 247, 248, 16, 152, (110,210): 142, 196, 188, 246, 157, 198, 157, 249, 178, 246, 121, (110,221): 241, 79, 147, 33, 156, 100, 66, 234, 187, 195, 35, 33, (110,233): 66, 156, 33, 11, 35, 210, 245, 88, 35, 117, 245, 35, 245, (110,246): 140, 245, 117, 117, 35, 245, 117, 245, 117, 245, 232, 35, (110,258): 117, 35, 33, 232, 232, 35, 11, 117, 128, 128, 128, 128, (110,270): 128, 128, 88, 117, 35, 35, 35, 117, 88, 210, 119, 35, (110,282): 117, 128, 33, 128, 128, 33, 119, 33, 35, 117, 245, 128, (110,294): 33, 33, 33, 33, 35, 35, 128, 128, 128, 128, 33, 33, 33, (110,307): 79, 79, 79, 79, 79, 185, 79, 33, 33, 232, 33, 117, 117, (110,320): 35, 117, 35, 35, 117, 35, 35, 35, 117, 117, 117, 117, 35, (110,333): 117, 201, 117, 117, 117, 35, 117, 35, 117, 35, 117, 35, (110,345): 117, 35, 117, 35, 117, 35, 117, 35, 35, 117, 35, 35, 35, (110,358): 35, 119, 35, 35, 119, 35, 128, 119, 128, 232, 116, 116, (110,370): 72, 146, 220, 50, 50, (111,0): 18, 185, 33, 232, 232, 18, 14, 63, 241, 195, 204, 79, 245, (111,13): 35, 79, 139, 147, 71, 55, 35, 55, 245, 245, 35, 139, 147, (111,26): 147, 88, 140, 140, 88, 140, 140, 140, 117, 117, 117, 35, (111,38): 35, 35, 35, 119, 35, 11, 128, 221, 221, 117, 88, 35, 245, (111,51): 88, 232, 185, 18, 241, 38, 62, 7, 58, 211, 211, 10, 73, (111,64): 106, 39, 10, 211, 244, 235, 77, 32, 10, 32, 106, 92, 215, (111,77): 73, 159, 159, 45, 151, 214, 214, 15, 84, 246, 8, 248, 16, (111,90): 229, 45, 4, 39, 39, 209, 31, 74, 237, 246, 194, 62, 241, (111,103): 125, 125, 125, 156, 194, 194, 28, 231, 153, 74, 28, 251, (111,115): 219, 71, 125, 71, 71, 145, 243, 243, 76, 213, 76, 215, (111,127): 251, 102, 103, 113, 71, 173, 107, 215, 106, 39, 77, 48, (111,139): 215, 48, 209, 39, 209, 39, 39, 82, 4, 197, 43, 197, 212, (111,152): 56, 151, 151, 151, 214, 75, 194, 76, 102, 254, 107, 107, (111,164): 173, 107, 106, 164, 56, 167, 68, 82, 82, 167, 255, 255, (111,176): 151, 214, 151, 151, 212, 255, 114, 126, 30, 126, 212, (111,187): 212, 255, 96, 205, 169, 96, 40, 67, 166, 200, 118, 92, (111,199): 154, 173, 102, 163, 60, 101, 60, 196, 165, 214, 122, 142, (111,211): 142, 188, 198, 152, 53, 157, 194, 252, 157, 187, 33, 33, (111,223): 35, 147, 35, 66, 66, 147, 79, 33, 66, 210, 128, 18, 245, (111,236): 147, 245, 245, 232, 88, 117, 88, 147, 245, 245, 88, 232, (111,248): 117, 35, 245, 117, 117, 117, 117, 117, 117, 117, 35, 35, (111,260): 35, 35, 117, 35, 117, 88, 11, 35, 128, 35, 128, 128, 35, (111,273): 117, 117, 140, 88, 88, 117, 117, 35, 128, 35, 128, 33, (111,285): 33, 119, 33, 11, 35, 232, 128, 35, 232, 33, 33, 128, 35, (111,298): 35, 35, 33, 33, 33, 232, 33, 79, 18, 195, 195, 18, 18, (111,311): 185, 195, 18, 79, 33, 33, 35, 117, 88, 117, 35, 117, 117, (111,324): 201, 117, 35, 35, 117, 35, 117, 35, 117, 117, 117, 117, (111,336): 117, 35, 117, 35, 117, 35, 117, 35, 117, 117, 117, 117, (111,348): 117, 35, 117, 35, 117, 117, 35, 35, 35, 119, 35, 35, 119, (111,361): 35, 128, 232, 119, 33, 232, 128, 128, 128, 224, 116, 3, (111,373): 220, 138, (112,0): 185, 79, 117, 88, 33, 241, 14, 204, 14, 18, 232, 33, 232, (112,13): 35, 245, 33, 232, 232, 232, 245, 140, 139, 33, 185, 245, (112,25): 140, 140, 199, 140, 140, 140, 140, 147, 88, 88, 117, 117, (112,37): 117, 128, 33, 128, 128, 128, 128, 221, 195, 186, 11, 35, (112,49): 35, 245, 245, 33, 18, 204, 241, 28, 231, 60, 74, 237, 237, (112,62): 7, 20, 20, 233, 41, 31, 31, 209, 215, 213, 213, 20, 213, (112,75): 113, 6, 113, 213, 228, 148, 115, 214, 248, 229, 70, 242, (112,87): 53, 214, 151, 16, 75, 188, 23, 237, 149, 60, 233, 233, (112,99): 153, 219, 120, 55, 66, 125, 66, 219, 100, 100, 153, 28, (112,111): 153, 194, 194, 251, 219, 113, 219, 113, 55, 236, 120, 71, (112,123): 71, 243, 243, 76, 76, 71, 113, 120, 113, 6, 113, 173, (112,135): 213, 92, 213, 213, 41, 213, 213, 213, 41, 92, 106, 73, (112,147): 39, 68, 10, 217, 212, 56, 69, 212, 212, 158, 211, 197, (112,159): 158, 47, 4, 148, 92, 41, 154, 215, 73, 211, 109, 255, (112,171): 191, 150, 160, 160, 235, 197, 115, 56, 56, 212, 227, 143, (112,183): 143, 126, 197, 69, 29, 85, 126, 205, 179, 202, 170, 160, (112,195): 96, 166, 190, 118, 92, 254, 107, 107, 107, 107, 107, 250, (112,207): 110, 193, 189, 188, 163, 192, 188, 198, 51, 153, 219, (112,218): 185, 252, 100, 147, 195, 221, 117, 35, 245, 88, 117, 117, (112,230): 245, 232, 140, 88, 88, 245, 140, 88, 245, 245, 245, 245, (112,242): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 245, (112,253): 245, 245, 245, 117, 117, 117, 245, 117, 117, 117, 117, (112,264): 35, 35, 117, 128, 79, 33, 33, 119, 117, 117, 140, 88, 88, (112,277): 117, 201, 35, 35, 35, 35, 33, 33, 33, 119, 119, 117, 88, (112,290): 245, 245, 128, 232, 35, 245, 35, 245, 11, 128, 33, 232, (112,302): 128, 33, 221, 79, 195, 79, 79, 195, 18, 18, 49, 204, 185, (112,315): 232, 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, 35, (112,328): 35, 117, 201, 117, 35, 35, 35, 35, 35, 117, 35, 117, 117, (112,341): 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 140, (112,354): 117, 117, 117, 88, 35, 35, 35, 221, 88, 33, 117, 33, 33, (112,367): 11, 128, 111, 116, 3, 116, 80, 46, (113,0): 33, 232, 117, 88, 35, 79, 232, 88, 185, 33, 35, 232, 232, (113,13): 35, 245, 117, 245, 117, 117, 245, 245, 245, 139, 232, 139, (113,25): 140, 139, 140, 140, 117, 199, 117, 117, 117, 117, 117, (113,36): 117, 119, 33, 79, 33, 221, 33, 33, 186, 146, 146, 186, 88, (113,49): 33, 18, 18, 185, 185, 233, 231, 231, 60, 228, 28, 196, 74, (113,62): 194, 251, 243, 243, 71, 243, 6, 41, 6, 71, 71, 71, 71, 71, (113,76): 71, 145, 6, 41, 7, 83, 151, 214, 95, 229, 157, 229, 248, (113,89): 214, 151, 56, 151, 189, 238, 84, 74, 241, 113, 194, 125, (113,101): 125, 125, 241, 241, 62, 241, 153, 100, 231, 60, 24, 153, (113,113): 60, 62, 103, 219, 219, 71, 145, 71, 71, 71, 71, 243, 71, (113,126): 71, 113, 120, 120, 6, 120, 6, 113, 71, 243, 76, 76, 243, (113,139): 173, 243, 76, 41, 213, 254, 106, 73, 77, 148, 148, 158, (113,151): 212, 212, 212, 212, 85, 68, 10, 212, 56, 212, 56, 83, (113,163): 127, 101, 9, 92, 106, 68, 109, 255, 26, 65, 96, 160, 30, (113,176): 13, 13, 212, 212, 212, 168, 61, 30, 126, 244, 151, 189, (113,188): 29, 191, 179, 172, 205, 131, 160, 169, 166, 190, 118, (113,199): 118, 173, 107, 254, 102, 102, 254, 254, 250, 110, 189, (113,210): 157, 192, 142, 152, 246, 62, 251, 241, 55, 119, 44, 221, (113,222): 105, 195, 79, 185, 232, 117, 35, 88, 140, 245, 88, 140, (113,234): 245, 140, 245, 245, 140, 117, 140, 117, 117, 117, 117, (113,245): 117, 35, 117, 35, 245, 35, 117, 139, 117, 117, 117, 117, (113,257): 117, 139, 117, 117, 117, 117, 117, 35, 117, 117, 35, 119, (113,269): 33, 119, 117, 117, 117, 88, 117, 140, 88, 35, 35, 117, (113,281): 117, 35, 119, 55, 33, 33, 232, 117, 245, 245, 245, 35, (113,293): 35, 128, 245, 35, 11, 245, 128, 33, 33, 33, 221, 195, 49, (113,306): 156, 72, 116, 72, 221, 33, 186, 79, 128, 117, 117, 117, (113,318): 88, 117, 117, 35, 117, 35, 35, 35, 117, 201, 117, 35, (113,330): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 117, (113,342): 117, 35, 35, 35, 35, 35, 128, 117, 35, 117, 35, 119, 35, (113,355): 201, 35, 35, 35, 117, 35, 33, 33, 186, 186, 128, 221, (113,367): 116, 116, 111, 49, 3, 234, 181, 91, (114,0): 232, 232, 33, 33, 185, 33, 35, 140, 88, 35, 33, 33, 79, 33, (114,14): 35, 117, 245, 117, 139, 35, 245, 140, 245, 140, 245, 140, (114,26): 140, 139, 140, 140, 139, 117, 117, 117, 35, 128, 128, 33, (114,38): 33, 33, 185, 185, 186, 221, 185, 125, 146, 66, 195, 195, (114,50): 18, 18, 185, 185, 204, 100, 28, 62, 62, 60, 74, 60, 251, (114,63): 76, 113, 219, 236, 243, 145, 243, 145, 243, 145, 201, 55, (114,75): 120, 120, 55, 145, 145, 76, 237, 238, 214, 214, 248, 229, (114,87): 198, 59, 189, 151, 151, 214, 214, 214, 151, 229, 15, 153, (114,99): 153, 241, 62, 241, 103, 66, 62, 62, 28, 194, 231, 100, (114,111): 231, 28, 60, 241, 103, 113, 76, 71, 236, 71, 71, 71, 71, (114,124): 71, 71, 6, 236, 120, 6, 120, 120, 120, 6, 120, 6, 71, (114,137): 113, 6, 6, 6, 71, 76, 213, 213, 215, 209, 73, 68, 148, (114,150): 47, 85, 212, 56, 212, 13, 82, 235, 212, 13, 29, 244, 4, (114,163): 148, 209, 215, 215, 164, 54, 85, 191, 67, 169, 161, 114, (114,175): 255, 230, 240, 13, 150, 150, 168, 171, 30, 52, 212, 151, (114,187): 56, 115, 144, 5, 179, 57, 170, 132, 161, 164, 200, 9, (114,199): 254, 173, 6, 145, 173, 113, 107, 107, 250, 163, 246, 188, (114,211): 198, 58, 198, 152, 157, 60, 219, 125, 33, 117, 221, 186, (114,223): 44, 185, 18, 33, 35, 35, 140, 147, 140, 88, 140, 245, 88, (114,236): 140, 245, 245, 245, 117, 117, 117, 139, 117, 139, 117, (114,247): 35, 117, 117, 139, 117, 117, 117, 140, 117, 117, 117, (114,258): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 119, (114,269): 35, 117, 117, 117, 140, 117, 140, 117, 117, 117, 117, (114,280): 117, 117, 35, 35, 33, 119, 119, 117, 117, 117, 117, 35, (114,292): 35, 245, 245, 245, 128, 245, 128, 33, 221, 116, 79, 116, (114,304): 220, 234, 220, 72, 79, 186, 33, 33, 79, 33, 119, 35, 35, (114,317): 117, 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, (114,330): 35, 117, 35, 201, 35, 117, 35, 117, 35, 117, 117, 35, 35, (114,343): 117, 35, 128, 117, 117, 117, 11, 35, 117, 35, 117, 117, (114,355): 35, 35, 119, 117, 88, 116, 79, 33, 221, 49, 33, 50, 2, (114,368): 108, 146, 138, 234, 222, 105, 137, (115,0): 35, 88, 117, 79, 33, 35, 117, 88, 88, 232, 79, 18, 185, (115,13): 185, 33, 128, 232, 232, 128, 232, 35, 35, 140, 245, 140, (115,25): 245, 140, 245, 139, 140, 117, 140, 88, 88, 35, 33, 185, (115,37): 185, 185, 33, 79, 185, 185, 33, 128, 221, 185, 72, 100, (115,49): 204, 79, 79, 79, 18, 204, 38, 241, 233, 194, 24, 153, 102, (115,62): 113, 113, 71, 243, 145, 173, 6, 213, 6, 236, 120, 120, 55, (115,75): 55, 120, 71, 236, 145, 6, 233, 74, 188, 16, 95, 198, 58, (115,88): 23, 238, 151, 151, 56, 56, 214, 214, 193, 246, 142, 60, (115,100): 241, 62, 62, 219, 125, 62, 100, 24, 28, 24, 74, 142, 153, (115,113): 194, 251, 219, 243, 185, 113, 71, 120, 71, 71, 71, 6, 71, (115,126): 71, 113, 71, 71, 6, 120, 6, 6, 120, 6, 6, 6, 71, 6, 6, 6, (115,142): 76, 213, 92, 215, 106, 209, 218, 209, 32, 39, 77, 43, (115,154): 244, 244, 10, 32, 10, 10, 211, 211, 206, 39, 218, 215, (115,166): 218, 148, 85, 150, 255, 166, 42, 96, 26, 131, 26, 30, (115,178): 144, 168, 52, 86, 171, 135, 143, 150, 69, 29, 212, 150, (115,190): 171, 172, 57, 132, 202, 136, 190, 200, 9, 154, 254, 173, (115,202): 113, 107, 254, 102, 196, 188, 153, 163, 142, 142, 142, (115,213): 153, 16, 214, 249, 194, 185, 79, 117, 88, 147, 210, 128, (115,225): 119, 35, 245, 117, 245, 140, 117, 140, 245, 245, 140, (115,236): 245, 117, 117, 139, 117, 117, 117, 117, 117, 117, 35, (115,247): 117, 139, 117, 117, 117, 117, 117, 35, 140, 117, 35, 117, (115,259): 117, 117, 35, 117, 117, 117, 140, 140, 117, 117, 117, (115,270): 117, 140, 117, 117, 117, 117, 88, 140, 117, 117, 35, 35, (115,282): 35, 35, 35, 117, 117, 117, 117, 35, 245, 35, 11, 35, 11, (115,295): 117, 128, 128, 128, 79, 79, 186, 186, 72, 195, 195, 49, (115,307): 79, 221, 185, 128, 33, 79, 33, 33, 33, 128, 119, 119, 35, (115,320): 117, 35, 35, 117, 35, 117, 35, 35, 35, 117, 35, 35, 117, (115,333): 35, 117, 35, 117, 35, 117, 35, 117, 35, 35, 117, 35, 117, (115,346): 128, 117, 128, 117, 117, 117, 117, 117, 117, 117, 128, (115,357): 119, 128, 128, 33, 221, 33, 128, 72, 128, 156, 181, 182, (115,369): 116, 234, 49, 3, 146, 49, (116,0): 33, 117, 117, 35, 35, 88, 117, 232, 35, 33, 185, 79, 79, (116,13): 79, 79, 33, 79, 33, 128, 128, 232, 35, 245, 245, 245, 140, (116,26): 245, 140, 88, 140, 245, 117, 117, 117, 128, 221, 18, 72, (116,38): 72, 18, 33, 33, 128, 232, 35, 232, 33, 185, 72, 185, 195, (116,51): 241, 204, 62, 100, 233, 204, 233, 100, 60, 62, 71, 120, (116,63): 120, 113, 76, 76, 31, 31, 7, 92, 243, 71, 125, 71, 119, (116,76): 120, 251, 20, 243, 236, 71, 71, 62, 142, 110, 24, 163, 7, (116,89): 54, 69, 151, 151, 151, 214, 214, 248, 25, 192, 194, 241, (116,101): 219, 241, 66, 219, 28, 24, 192, 142, 15, 15, 15, 237, 24, (116,114): 194, 251, 219, 71, 71, 113, 219, 113, 71, 71, 71, 236, 6, (116,127): 71, 6, 120, 71, 113, 6, 120, 6, 6, 145, 6, 6, 6, 6, 71, (116,142): 41, 213, 20, 250, 92, 92, 215, 254, 154, 215, 77, 54, 69, (116,155): 212, 235, 32, 10, 82, 43, 85, 85, 4, 47, 73, 32, 39, 217, (116,169): 217, 10, 166, 42, 161, 40, 132, 184, 208, 239, 168, 168, (116,181): 86, 134, 134, 131, 144, 85, 191, 244, 52, 171, 172, 179, (116,193): 170, 202, 136, 190, 164, 92, 173, 113, 173, 113, 102, (116,204): 250, 163, 110, 162, 192, 142, 196, 102, 102, 102, 246, (116,215): 15, 152, 62, 125, 88, 140, 221, 128, 128, 88, 117, 140, (116,227): 147, 117, 117, 140, 117, 117, 140, 117, 117, 140, 117, (116,238): 140, 117, 117, 117, 35, 117, 35, 35, 117, 35, 117, 117, (116,250): 35, 117, 117, 117, 140, 117, 35, 140, 35, 117, 139, 117, (116,262): 117, 117, 140, 117, 88, 140, 117, 140, 88, 140, 117, 201, (116,274): 117, 117, 140, 117, 140, 117, 117, 117, 35, 35, 117, 117, (116,286): 117, 140, 117, 35, 117, 35, 245, 117, 117, 35, 128, 33, (116,298): 33, 79, 72, 72, 195, 72, 72, 79, 72, 33, 128, 79, 128, (116,311): 33, 33, 33, 35, 35, 35, 35, 117, 117, 35, 117, 201, 117, (116,324): 35, 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, 35, 117, (116,337): 35, 117, 35, 117, 35, 117, 11, 35, 35, 35, 117, 117, 11, (116,350): 35, 11, 117, 119, 232, 35, 35, 128, 33, 79, 128, 156, (116,362): 186, 146, 49, 72, 46, 3, 49, 116, 146, 108, 146, 234, (116,374): 116, (117,0): 79, 128, 35, 232, 33, 33, 79, 195, 33, 79, 79, 79, 33, 33, (117,14): 79, 79, 33, 33, 128, 232, 128, 128, 35, 88, 88, 88, 88, (117,27): 88, 245, 245, 117, 245, 128, 128, 35, 128, 33, 116, 18, (117,39): 195, 33, 128, 35, 33, 33, 33, 79, 18, 185, 18, 14, 180, (117,52): 51, 175, 51, 204, 204, 38, 38, 219, 71, 55, 55, 120, 19, (117,65): 236, 243, 31, 7, 149, 31, 103, 76, 219, 185, 55, 185, 62, (117,78): 100, 233, 71, 204, 125, 125, 103, 194, 60, 39, 127, 47, 4, (117,91): 83, 29, 56, 151, 214, 214, 53, 157, 142, 180, 153, 51, 51, (117,104): 28, 187, 142, 192, 24, 15, 15, 93, 142, 153, 194, 251, (117,116): 103, 219, 38, 251, 194, 20, 103, 71, 71, 120, 55, 6, 120, (117,129): 6, 6, 6, 71, 6, 71, 71, 6, 71, 173, 236, 6, 173, 243, 76, (117,144): 213, 92, 92, 213, 92, 213, 154, 215, 73, 148, 235, 244, (117,156): 240, 10, 96, 10, 212, 56, 151, 212, 197, 47, 73, 32, 218, (117,169): 166, 68, 26, 166, 136, 96, 132, 184, 17, 134, 86, 86, 86, (117,182): 134, 134, 184, 52, 212, 69, 227, 30, 225, 5, 170, 132, (117,194): 161, 136, 166, 218, 9, 173, 6, 6, 113, 107, 251, 194, (117,206): 196, 188, 193, 188, 251, 102, 71, 219, 76, 219, 241, 185, (117,218): 55, 119, 35, 125, 117, 88, 140, 35, 88, 140, 117, 140, (117,230): 147, 117, 117, 88, 117, 140, 117, 117, 117, 117, 117, (117,241): 117, 117, 35, 117, 35, 35, 35, 117, 35, 117, 117, 140, (117,253): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (117,264): 117, 140, 117, 117, 140, 117, 117, 117, 117, 117, 117, (117,275): 117, 117, 117, 117, 140, 88, 140, 117, 117, 117, 117, (117,286): 117, 117, 117, 245, 35, 245, 245, 117, 245, 35, 35, 128, (117,298): 33, 79, 186, 66, 195, 18, 195, 79, 79, 232, 128, 33, 35, (117,311): 35, 33, 33, 128, 35, 35, 117, 117, 117, 117, 35, 117, 35, (117,324): 117, 35, 35, 117, 35, 35, 117, 35, 35, 35, 35, 117, 35, (117,337): 117, 35, 117, 35, 35, 117, 35, 35, 128, 117, 128, 35, (117,349): 128, 117, 35, 117, 117, 35, 128, 35, 128, 33, 221, 221, (117,361): 108, 49, 156, 220, 50, 46, 116, 49, 146, 146, 234, 116, (117,373): 49, 33, (118,0): 33, 232, 128, 232, 33, 33, 185, 18, 33, 33, 33, 185, 79, (118,13): 79, 79, 18, 116, 33, 128, 33, 221, 33, 33, 11, 245, 245, (118,26): 245, 245, 245, 117, 35, 35, 221, 221, 224, 128, 128, 221, (118,38): 46, 186, 116, 33, 128, 33, 33, 128, 79, 66, 14, 66, 241, (118,51): 28, 51, 226, 242, 204, 236, 71, 71, 55, 55, 71, 71, 120, (118,64): 243, 163, 149, 211, 206, 4, 206, 237, 62, 103, 185, 185, (118,76): 125, 103, 251, 251, 185, 204, 125, 219, 103, 251, 60, 159, (118,88): 148, 82, 54, 4, 83, 16, 151, 89, 152, 246, 157, 246, 152, (118,101): 157, 37, 249, 246, 157, 246, 192, 231, 58, 24, 207, 60, (118,113): 194, 194, 194, 194, 62, 194, 60, 142, 153, 194, 233, 113, (118,125): 71, 6, 71, 71, 71, 6, 71, 113, 113, 76, 107, 76, 173, (118,138): 243, 173, 41, 243, 76, 173, 76, 254, 251, 107, 213, 213, (118,150): 154, 215, 215, 82, 85, 150, 65, 77, 40, 235, 115, 56, 56, (118,163): 69, 85, 54, 127, 164, 200, 164, 166, 109, 42, 190, 96, (118,175): 205, 5, 135, 171, 239, 86, 86, 134, 17, 172, 168, 227, (118,187): 212, 150, 61, 171, 129, 170, 160, 169, 166, 190, 200, (118,198): 254, 173, 254, 107, 103, 251, 102, 194, 196, 110, 152, (118,209): 84, 251, 102, 113, 120, 55, 113, 219, 201, 117, 140, 117, (118,221): 117, 147, 88, 117, 35, 117, 140, 117, 117, 140, 88, 140, (118,233): 117, 140, 117, 117, 117, 140, 117, 35, 35, 139, 117, 35, (118,245): 35, 35, 35, 117, 117, 35, 117, 117, 117, 140, 117, 117, (118,257): 35, 139, 117, 117, 139, 117, 117, 140, 117, 88, 140, 117, (118,269): 140, 88, 140, 117, 117, 117, 140, 117, 140, 117, 117, (118,280): 140, 117, 117, 139, 88, 140, 117, 35, 117, 35, 117, 35, (118,292): 245, 117, 35, 128, 35, 33, 33, 33, 185, 186, 18, 116, (118,304): 185, 33, 33, 11, 117, 128, 117, 128, 33, 119, 35, 35, 35, (118,317): 35, 117, 117, 35, 35, 35, 117, 35, 35, 117, 35, 201, 117, (118,330): 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, (118,343): 117, 35, 35, 35, 128, 35, 128, 128, 128, 35, 11, 128, (118,355): 128, 221, 221, 221, 128, 221, 156, 186, 146, 50, 146, (118,366): 116, 80, 116, 50, 220, 224, 46, 195, 11, (119,0): 185, 18, 18, 185, 186, 185, 79, 33, 33, 117, 232, 79, 18, (119,13): 33, 79, 18, 186, 116, 221, 79, 72, 186, 221, 232, 11, 245, (119,26): 11, 117, 11, 245, 128, 128, 116, 116, 72, 3, 116, 46, 221, (119,39): 111, 116, 111, 128, 221, 128, 35, 79, 234, 100, 241, 241, (119,51): 204, 241, 175, 25, 231, 232, 55, 232, 55, 125, 62, 241, (119,63): 71, 233, 237, 206, 4, 7, 149, 60, 7, 28, 38, 185, 241, 38, (119,77): 185, 185, 38, 185, 18, 185, 125, 241, 251, 76, 92, 73, 54, (119,90): 212, 56, 189, 56, 248, 248, 178, 229, 95, 89, 214, 178, (119,102): 178, 249, 178, 89, 226, 246, 24, 58, 74, 142, 194, 194, (119,114): 28, 153, 153, 153, 153, 74, 15, 110, 153, 228, 76, 243, (119,126): 76, 243, 113, 113, 113, 113, 173, 107, 213, 233, 213, (119,137): 213, 76, 76, 213, 213, 107, 243, 173, 251, 213, 76, 41, (119,149): 41, 41, 213, 154, 77, 77, 10, 10, 96, 82, 235, 212, 56, (119,162): 212, 43, 4, 211, 127, 77, 106, 32, 106, 96, 155, 42, 132, (119,175): 21, 5, 135, 143, 86, 52, 168, 86, 135, 208, 144, 255, (119,187): 227, 212, 144, 17, 5, 170, 143, 114, 67, 166, 200, 254, (119,199): 107, 113, 120, 107, 194, 153, 163, 194, 194, 102, 246, (119,210): 188, 113, 219, 120, 103, 119, 119, 55, 119, 35, 117, 232, (119,222): 119, 88, 140, 117, 140, 140, 117, 117, 140, 35, 117, 117, (119,234): 117, 88, 139, 117, 35, 117, 117, 117, 117, 35, 35, 117, (119,246): 35, 35, 117, 35, 117, 117, 117, 117, 117, 117, 139, 117, (119,258): 117, 117, 117, 117, 117, 117, 88, 140, 117, 140, 88, 140, (119,270): 117, 117, 117, 140, 117, 117, 117, 117, 117, 117, 140, (119,281): 117, 117, 117, 117, 117, 140, 117, 245, 245, 35, 245, (119,292): 245, 245, 35, 232, 128, 33, 221, 33, 221, 79, 33, 128, (119,304): 35, 88, 88, 140, 245, 33, 35, 33, 128, 35, 11, 117, 117, (119,317): 11, 35, 117, 117, 117, 35, 35, 117, 35, 35, 117, 117, 35, (119,330): 117, 35, 35, 117, 201, 117, 35, 117, 35, 117, 117, 35, (119,342): 117, 35, 11, 117, 35, 35, 128, 35, 33, 128, 33, 232, 128, (119,355): 79, 195, 156, 195, 116, 46, 182, 182, 182, 183, 80, 3, (119,367): 182, 181, 36, 177, 63, 27, 8, 27, (120,0): 66, 72, 186, 186, 185, 116, 79, 33, 35, 33, 128, 35, 79, (120,13): 33, 117, 79, 72, 195, 49, 156, 72, 195, 33, 116, 88, 128, (120,26): 35, 128, 128, 128, 33, 116, 46, 146, 72, 46, 3, 46, 46, (120,39): 80, 3, 49, 146, 116, 72, 146, 234, 14, 252, 231, 51, 100, (120,52): 62, 62, 100, 233, 139, 232, 55, 243, 62, 153, 28, 102, 58, (120,65): 148, 4, 45, 39, 7, 7, 194, 60, 14, 185, 119, 125, 100, (120,78): 142, 100, 195, 28, 88, 219, 125, 103, 76, 20, 73, 47, 244, (120,91): 115, 151, 189, 193, 248, 89, 25, 157, 95, 214, 178, 193, (120,103): 95, 95, 248, 53, 84, 192, 15, 237, 58, 194, 153, 74, 142, (120,116): 110, 58, 196, 58, 198, 152, 206, 60, 20, 20, 251, 243, (120,128): 173, 254, 113, 113, 20, 250, 20, 218, 228, 20, 31, 60, (120,140): 228, 76, 213, 31, 213, 76, 76, 243, 173, 113, 41, 92, 41, (120,153): 215, 215, 73, 82, 244, 212, 56, 56, 56, 212, 212, 217, (120,165): 54, 68, 209, 68, 32, 200, 32, 190, 166, 42, 169, 131, (120,177): 172, 143, 52, 52, 52, 52, 52, 168, 144, 191, 13, 227, (120,189): 239, 171, 17, 184, 114, 131, 67, 166, 164, 101, 118, 113, (120,201): 107, 251, 153, 196, 163, 62, 103, 194, 163, 246, 246, (120,212): 194, 120, 119, 71, 119, 139, 35, 35, 35, 35, 245, 117, (120,224): 140, 88, 140, 117, 117, 35, 117, 140, 117, 117, 117, 117, (120,236): 117, 117, 35, 35, 117, 35, 117, 117, 117, 35, 117, 117, (120,248): 35, 139, 117, 35, 139, 117, 117, 117, 117, 117, 35, 117, (120,260): 117, 117, 117, 35, 140, 117, 117, 117, 117, 117, 117, (120,271): 117, 117, 117, 117, 140, 117, 140, 117, 117, 140, 117, (120,282): 140, 117, 117, 117, 35, 35, 140, 117, 117, 117, 117, 117, (120,294): 117, 35, 35, 119, 35, 35, 128, 35, 128, 35, 35, 117, 117, (120,307): 117, 117, 117, 35, 35, 35, 35, 117, 117, 117, 117, 117, (120,319): 117, 35, 117, 117, 117, 201, 117, 35, 119, 117, 35, 35, (120,331): 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 128, 117, (120,344): 35, 128, 117, 11, 117, 128, 33, 128, 245, 72, 117, 128, (120,356): 116, 49, 63, 221, 221, 234, 49, 49, 34, 137, 137, 178, (120,368): 64, 183, 175, 91, 180, 121, 2, (121,0): 195, 72, 185, 116, 18, 79, 33, 33, 11, 128, 245, 11, 79, (121,13): 221, 33, 72, 195, 72, 18, 116, 128, 186, 128, 116, 33, (121,25): 221, 11, 128, 186, 49, 72, 72, 49, 63, 181, 146, 46, 46, (121,38): 186, 133, 116, 3, 146, 80, 50, 105, 175, 121, 25, 93, 15, (121,51): 207, 51, 192, 62, 71, 55, 232, 139, 55, 38, 28, 24, 142, (121,64): 250, 20, 209, 149, 149, 237, 149, 231, 251, 219, 33, 125, (121,76): 66, 241, 153, 100, 28, 156, 241, 117, 241, 201, 251, 31, (121,88): 209, 39, 43, 69, 151, 165, 45, 157, 214, 95, 226, 249, (121,100): 178, 178, 249, 99, 70, 226, 226, 242, 188, 15, 15, 15, (121,112): 196, 58, 58, 23, 198, 45, 188, 84, 75, 152, 188, 153, 60, (121,125): 31, 20, 213, 228, 163, 60, 163, 149, 149, 60, 163, 60, (121,137): 149, 206, 23, 149, 39, 60, 92, 20, 251, 76, 92, 60, 7, (121,150): 215, 81, 173, 41, 48, 39, 13, 56, 212, 212, 212, 212, 56, (121,163): 56, 85, 4, 112, 73, 158, 67, 77, 32, 190, 96, 166, 21, (121,176): 184, 184, 126, 126, 13, 52, 52, 150, 52, 52, 227, 85, 13, (121,189): 61, 171, 171, 184, 170, 160, 160, 40, 67, 247, 98, 102, (121,201): 103, 103, 103, 241, 103, 102, 241, 196, 58, 198, 246, 28, (121,213): 55, 139, 147, 139, 245, 147, 147, 140, 147, 140, 117, (121,224): 117, 117, 88, 117, 117, 117, 117, 117, 117, 139, 117, (121,235): 117, 35, 35, 117, 35, 117, 117, 139, 35, 117, 117, 35, (121,247): 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 35, 117, (121,259): 35, 117, 117, 139, 117, 117, 140, 117, 140, 117, 140, (121,270): 117, 117, 139, 117, 140, 117, 117, 117, 117, 140, 117, (121,281): 117, 117, 117, 35, 117, 35, 35, 117, 140, 117, 140, 117, (121,293): 117, 35, 117, 35, 117, 128, 117, 117, 117, 11, 117, 35, (121,305): 117, 117, 117, 117, 117, 35, 35, 117, 35, 117, 35, 117, (121,317): 35, 35, 35, 117, 117, 35, 117, 117, 35, 35, 35, 35, 35, (121,330): 117, 35, 35, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, (121,343): 117, 35, 35, 35, 117, 35, 33, 33, 33, 35, 186, 128, 221, (121,356): 221, 128, 49, 72, 116, 3, 46, 11, 72, 234, 234, 176, 108, (121,369): 33, 220, 220, 70, 27, 195, (122,0): 72, 18, 18, 116, 79, 79, 33, 33, 35, 128, 35, 35, 221, 33, (122,14): 79, 72, 66, 156, 156, 100, 156, 108, 195, 234, 146, 14, (122,26): 234, 146, 146, 49, 156, 63, 27, 99, 216, 183, 50, 138, (122,38): 222, 3, 46, 46, 3, 50, 181, 104, 64, 121, 53, 53, 188, 58, (122,52): 242, 229, 62, 236, 71, 236, 236, 71, 38, 153, 192, 188, (122,64): 153, 31, 237, 83, 29, 83, 45, 74, 194, 38, 219, 100, 14, (122,77): 241, 24, 24, 100, 66, 195, 119, 125, 219, 103, 60, 218, (122,89): 73, 206, 83, 151, 152, 25, 193, 89, 89, 53, 242, 242, 25, (122,102): 242, 93, 51, 246, 25, 84, 93, 188, 84, 45, 15, 23, 23, (122,115): 84, 122, 122, 152, 59, 75, 75, 23, 149, 196, 74, 209, (122,127): 228, 20, 74, 149, 23, 75, 59, 165, 4, 110, 4, 238, 29, (122,140): 29, 29, 75, 23, 196, 60, 213, 243, 7, 45, 206, 209, 41, (122,153): 41, 154, 200, 211, 85, 150, 85, 69, 212, 56, 212, 212, (122,165): 211, 10, 164, 39, 68, 10, 190, 32, 190, 166, 160, 184, (122,177): 143, 13, 212, 69, 69, 227, 52, 150, 150, 212, 150, 227, (122,189): 61, 143, 17, 143, 131, 170, 160, 67, 68, 217, 29, 163, (122,201): 102, 107, 120, 113, 113, 125, 103, 251, 241, 103, 219, (122,212): 55, 55, 79, 119, 232, 117, 245, 117, 35, 245, 35, 35, (122,224): 117, 117, 117, 140, 117, 140, 140, 117, 117, 117, 117, (122,235): 35, 117, 117, 201, 117, 35, 117, 117, 117, 117, 139, 117, (122,247): 117, 35, 117, 35, 117, 35, 117, 117, 35, 117, 35, 117, (122,259): 35, 139, 117, 117, 117, 117, 117, 117, 117, 117, 117, (122,270): 117, 117, 117, 117, 117, 140, 117, 140, 88, 140, 117, (122,281): 117, 201, 117, 117, 35, 117, 35, 117, 35, 139, 117, 117, (122,293): 35, 117, 117, 117, 117, 117, 117, 11, 117, 117, 117, 117, (122,305): 117, 117, 117, 117, 117, 117, 35, 35, 117, 117, 11, 35, (122,317): 117, 117, 35, 117, 117, 201, 35, 117, 35, 117, 35, 117, (122,329): 35, 35, 117, 35, 117, 35, 35, 117, 35, 35, 35, 35, 35, (122,342): 117, 11, 35, 128, 35, 35, 128, 33, 185, 116, 128, 79, (122,354): 128, 79, 33, 88, 116, 72, 49, 72, 146, 3, 80, 80, 224, (122,367): 224, 128, 195, 2, 8, 175, 51, 79, (123,0): 185, 116, 79, 79, 33, 116, 79, 116, 221, 221, 33, 33, 79, (123,13): 128, 128, 33, 88, 245, 33, 195, 195, 14, 221, 33, 156, (123,25): 181, 176, 180, 49, 116, 220, 64, 89, 214, 214, 37, 8, 99, (123,38): 123, 182, 108, 49, 220, 253, 27, 27, 252, 93, 188, 25, 15, (123,51): 58, 58, 84, 231, 60, 38, 204, 204, 38, 241, 153, 142, 58, (123,64): 76, 20, 110, 238, 56, 238, 45, 23, 28, 219, 204, 14, 66, (123,77): 38, 24, 24, 25, 104, 125, 219, 33, 241, 125, 103, 31, 20, (123,90): 7, 47, 56, 189, 151, 214, 214, 214, 95, 242, 252, 51, 24, (123,103): 14, 207, 192, 93, 15, 15, 188, 84, 198, 188, 45, 45, 152, (123,116): 189, 189, 59, 59, 47, 45, 206, 45, 4, 45, 23, 110, 31, (123,129): 196, 149, 58, 198, 56, 214, 151, 83, 75, 122, 151, 151, (123,141): 151, 56, 56, 189, 59, 110, 250, 250, 149, 149, 7, 9, 92, (123,154): 92, 9, 118, 73, 112, 54, 43, 244, 56, 212, 56, 85, 4, 43, (123,168): 200, 164, 112, 67, 166, 67, 67, 114, 144, 52, 212, 56, (123,180): 56, 115, 227, 144, 168, 52, 212, 212, 150, 61, 17, 17, (123,192): 143, 184, 170, 96, 202, 164, 68, 162, 218, 102, 113, 113, (123,204): 120, 120, 71, 113, 120, 185, 219, 219, 125, 125, 79, 147, (123,216): 35, 245, 245, 35, 35, 245, 140, 147, 117, 35, 119, 35, (123,228): 117, 88, 117, 117, 117, 117, 139, 117, 117, 35, 117, 35, (123,240): 117, 117, 117, 35, 117, 117, 117, 117, 139, 117, 117, (123,251): 117, 117, 117, 117, 139, 35, 35, 35, 117, 117, 117, 117, (123,263): 117, 140, 117, 140, 117, 117, 117, 201, 117, 117, 117, (123,274): 117, 117, 117, 140, 117, 117, 35, 35, 35, 35, 201, 117, (123,286): 35, 117, 117, 140, 117, 117, 117, 117, 117, 117, 117, (123,297): 117, 88, 88, 88, 117, 88, 117, 117, 140, 117, 140, 117, (123,309): 117, 117, 117, 117, 117, 35, 117, 35, 117, 128, 35, 35, (123,321): 35, 35, 35, 35, 119, 35, 35, 35, 117, 35, 117, 201, 35, (123,334): 117, 35, 117, 35, 35, 35, 128, 35, 35, 35, 35, 119, 33, (123,347): 128, 128, 221, 79, 79, 33, 79, 117, 11, 33, 221, 186, 11, (123,360): 186, 111, 116, 234, 181, 91, 63, 138, 180, 97, 178, 100, (123,372): 104, 175, 37, (124,0): 116, 18, 116, 33, 33, 79, 195, 66, 18, 79, 116, 116, 79, (124,13): 128, 232, 128, 33, 35, 11, 33, 116, 100, 72, 195, 195, (124,25): 100, 2, 91, 105, 220, 181, 216, 214, 248, 214, 214, 214, (124,37): 214, 216, 252, 104, 220, 195, 63, 252, 252, 142, 24, 142, (124,49): 74, 196, 60, 20, 15, 75, 25, 74, 60, 233, 243, 103, 241, (124,62): 194, 194, 194, 251, 20, 149, 45, 45, 45, 246, 74, 28, 100, (124,75): 24, 63, 231, 93, 192, 95, 70, 204, 79, 119, 35, 38, 219, (124,88): 103, 76, 60, 110, 189, 214, 214, 248, 214, 214, 89, 249, (124,100): 25, 93, 187, 24, 51, 51, 15, 246, 84, 25, 229, 229, 4, (124,113): 229, 238, 29, 56, 29, 75, 75, 75, 165, 83, 29, 56, 189, (124,126): 43, 45, 47, 188, 110, 159, 23, 122, 151, 151, 151, 29, (124,138): 29, 56, 151, 151, 151, 151, 151, 151, 115, 75, 206, 149, (124,150): 159, 7, 215, 101, 106, 106, 9, 254, 118, 32, 54, 43, 43, (124,163): 212, 56, 115, 82, 54, 112, 68, 67, 68, 67, 255, 160, 40, (124,176): 150, 212, 56, 56, 56, 115, 244, 227, 144, 52, 150, 150, (124,188): 52, 171, 17, 17, 172, 131, 170, 202, 190, 190, 68, 68, (124,200): 101, 102, 113, 113, 113, 120, 120, 120, 120, 185, 219, (124,211): 125, 125, 195, 125, 11, 35, 117, 128, 128, 33, 35, 245, (124,223): 35, 245, 35, 119, 119, 119, 117, 201, 117, 117, 117, 117, (124,235): 117, 201, 117, 35, 35, 117, 35, 139, 117, 117, 35, 117, (124,247): 117, 117, 117, 35, 139, 117, 35, 117, 117, 117, 35, 139, (124,259): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (124,270): 117, 117, 117, 139, 117, 117, 140, 117, 117, 140, 35, 35, (124,282): 35, 35, 117, 117, 35, 139, 117, 117, 139, 117, 139, 117, (124,294): 117, 117, 117, 117, 117, 117, 88, 117, 117, 117, 117, (124,305): 140, 117, 140, 117, 140, 117, 117, 117, 35, 117, 117, 11, (124,317): 35, 35, 117, 35, 35, 128, 119, 119, 35, 35, 119, 117, 35, (124,330): 35, 117, 35, 117, 35, 35, 117, 35, 35, 35, 35, 35, 117, (124,343): 117, 128, 33, 33, 119, 128, 33, 221, 79, 33, 33, 11, 35, (124,356): 79, 116, 221, 11, 72, 221, 46, 46, 146, 138, 176, 123, (124,368): 121, 70, 27, 104, 178, 242, 175, (125,0): 234, 234, 66, 79, 128, 221, 79, 116, 18, 221, 116, 204, (125,12): 221, 79, 221, 33, 79, 35, 147, 245, 35, 195, 79, 116, 195, (125,25): 72, 156, 183, 177, 121, 121, 178, 214, 151, 151, 214, 214, (125,37): 214, 178, 249, 175, 14, 119, 185, 102, 100, 194, 194, 74, (125,49): 250, 163, 60, 60, 75, 151, 214, 238, 84, 74, 38, 219, 251, (125,62): 194, 153, 142, 60, 213, 228, 23, 188, 206, 188, 15, 70, (125,74): 175, 8, 226, 229, 95, 95, 229, 53, 100, 2, 117, 11, 185, (125,87): 185, 219, 113, 250, 74, 75, 248, 214, 89, 214, 214, 214, (125,99): 214, 89, 249, 8, 25, 242, 25, 229, 53, 53, 238, 59, 75, (125,112): 238, 115, 56, 189, 189, 83, 45, 4, 29, 115, 189, 69, 151, (125,125): 56, 83, 75, 45, 23, 149, 74, 149, 165, 189, 29, 56, 56, (125,138): 151, 56, 56, 151, 151, 56, 151, 56, 151, 56, 189, 83, (125,150): 206, 149, 7, 218, 215, 250, 92, 9, 154, 92, 73, 10, 112, (125,163): 69, 69, 244, 217, 4, 212, 191, 255, 167, 109, 13, 191, (125,175): 150, 52, 212, 56, 56, 151, 56, 212, 150, 227, 168, 52, (125,187): 168, 61, 135, 129, 129, 5, 131, 170, 161, 161, 96, 68, (125,199): 218, 102, 107, 6, 120, 120, 120, 120, 120, 185, 55, 201, (125,211): 117, 117, 195, 156, 66, 46, 221, 128, 33, 79, 33, 79, 79, (125,224): 117, 35, 35, 232, 119, 35, 117, 35, 117, 117, 117, 117, (125,236): 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, 35, 117, (125,248): 35, 117, 117, 117, 117, 139, 35, 117, 117, 201, 117, 117, (125,260): 35, 117, 139, 117, 117, 117, 139, 35, 117, 35, 117, 201, (125,272): 117, 117, 117, 117, 35, 117, 117, 117, 35, 35, 35, 117, (125,284): 35, 117, 117, 117, 139, 117, 117, 117, 117, 117, 117, (125,295): 140, 117, 117, 117, 88, 117, 88, 117, 117, 117, 140, 117, (125,307): 140, 140, 117, 117, 117, 117, 117, 117, 35, 35, 117, 128, (125,319): 35, 128, 119, 119, 119, 128, 119, 35, 35, 35, 117, 35, (125,331): 35, 117, 35, 35, 117, 35, 117, 35, 35, 35, 35, 11, 35, (125,344): 35, 33, 33, 33, 128, 33, 33, 79, 33, 35, 117, 221, 185, (125,357): 128, 128, 33, 221, 116, 49, 72, 186, 116, 72, 181, 2, 37, (125,370): 226, 14, 33, 2, 14, (126,0): 234, 14, 234, 72, 33, 79, 18, 116, 195, 79, 116, 72, 79, (126,13): 79, 116, 79, 79, 33, 232, 79, 35, 72, 128, 79, 18, 116, (126,26): 72, 180, 123, 121, 223, 226, 69, 56, 56, 56, 151, 214, (126,38): 151, 214, 95, 84, 153, 62, 103, 103, 251, 20, 163, 102, 7, (126,51): 74, 58, 45, 238, 151, 214, 248, 84, 74, 62, 194, 194, 163, (126,64): 103, 103, 76, 228, 23, 45, 237, 15, 231, 15, 51, 70, 226, (126,77): 175, 25, 151, 249, 214, 242, 249, 33, 79, 88, 33, 219, (126,89): 185, 62, 153, 188, 59, 214, 214, 214, 89, 214, 214, 214, (126,101): 89, 89, 89, 178, 89, 89, 214, 151, 16, 53, 238, 56, 56, (126,114): 115, 29, 238, 4, 4, 83, 238, 69, 29, 83, 115, 115, 83, 4, (126,128): 206, 196, 60, 60, 7, 188, 238, 83, 75, 29, 56, 29, 189, (126,141): 56, 151, 56, 151, 151, 151, 151, 56, 115, 75, 247, 247, (126,153): 7, 250, 9, 254, 154, 92, 118, 43, 235, 43, 212, 85, 217, (126,166): 10, 68, 98, 112, 217, 112, 96, 166, 40, 13, 144, 227, (126,178): 115, 56, 151, 151, 56, 212, 52, 168, 239, 61, 143, 129, (126,190): 129, 129, 172, 184, 131, 57, 96, 67, 164, 218, 92, 107, (126,202): 6, 120, 145, 120, 145, 120, 55, 119, 79, 185, 125, 195, (126,214): 195, 33, 221, 128, 11, 117, 128, 35, 128, 232, 232, 35, (126,226): 35, 117, 117, 35, 35, 117, 117, 117, 117, 35, 117, 35, (126,238): 35, 35, 139, 117, 117, 35, 139, 117, 117, 117, 35, 139, (126,250): 117, 117, 117, 117, 117, 117, 35, 117, 35, 35, 117, 117, (126,262): 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, 117, 117, (126,274): 201, 117, 35, 35, 119, 35, 117, 117, 117, 117, 117, 117, (126,286): 117, 117, 117, 117, 139, 117, 140, 117, 140, 117, 117, (126,297): 140, 117, 88, 117, 88, 117, 117, 140, 201, 140, 117, 201, (126,309): 117, 117, 117, 117, 117, 117, 117, 128, 35, 128, 35, 35, (126,321): 35, 35, 128, 119, 35, 35, 117, 117, 35, 35, 117, 35, 35, (126,334): 117, 35, 117, 35, 35, 35, 35, 35, 35, 117, 35, 128, 33, (126,347): 33, 119, 33, 79, 221, 79, 35, 128, 33, 33, 128, 35, 221, (126,360): 147, 128, 49, 50, 181, 108, 186, 50, 33, 51, 214, 180, (126,372): 18, 18, 185, (127,0): 33, 72, 66, 72, 18, 49, 14, 220, 234, 72, 204, 72, 33, 33, (127,14): 79, 79, 79, 33, 33, 33, 245, 33, 35, 116, 35, 79, 72, 72, (127,28): 49, 220, 108, 207, 23, 235, 43, 83, 212, 151, 151, 151, (127,40): 214, 248, 152, 188, 24, 20, 76, 103, 251, 250, 196, 60, (127,52): 23, 149, 196, 45, 189, 16, 152, 192, 60, 62, 38, 219, 113, (127,65): 20, 194, 60, 196, 58, 7, 24, 38, 100, 62, 231, 51, 62, (127,78): 231, 53, 25, 246, 70, 187, 186, 128, 221, 185, 125, 55, (127,90): 60, 110, 84, 45, 248, 248, 89, 214, 214, 214, 89, 214, (127,102): 214, 214, 89, 214, 214, 214, 214, 151, 151, 214, 56, 189, (127,114): 83, 4, 4, 4, 4, 85, 83, 115, 43, 47, 4, 85, 83, 83, 45, (127,129): 149, 163, 31, 250, 149, 206, 94, 110, 23, 162, 83, 83, (127,141): 158, 83, 115, 29, 56, 151, 56, 56, 151, 69, 165, 206, (127,153): 127, 7, 101, 92, 107, 107, 215, 39, 48, 148, 54, 43, 211, (127,166): 85, 69, 112, 68, 109, 126, 109, 167, 169, 255, 30, 30, (127,178): 109, 162, 83, 56, 212, 212, 52, 86, 61, 239, 171, 17, (127,190): 129, 129, 5, 170, 57, 132, 96, 166, 77, 159, 107, 113, (127,202): 120, 6, 113, 120, 145, 120, 201, 140, 88, 35, 221, 186, (127,214): 186, 111, 186, 46, 221, 46, 33, 128, 35, 35, 33, 232, (127,226): 117, 140, 88, 117, 117, 117, 139, 35, 117, 117, 117, 117, (127,238): 201, 117, 117, 35, 117, 117, 117, 117, 35, 117, 117, 117, (127,250): 117, 117, 35, 117, 117, 117, 35, 35, 117, 201, 117, 117, (127,262): 117, 117, 139, 117, 117, 117, 35, 117, 35, 35, 117, 117, (127,274): 117, 35, 35, 35, 119, 119, 35, 117, 117, 35, 117, 117, (127,286): 117, 117, 201, 117, 117, 139, 117, 117, 117, 140, 117, (127,297): 117, 88, 88, 140, 117, 88, 117, 117, 117, 117, 140, 117, (127,309): 117, 117, 201, 117, 117, 117, 117, 35, 117, 35, 35, 117, (127,321): 35, 35, 119, 35, 117, 117, 117, 35, 201, 117, 35, 117, (127,333): 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 117, 35, 119, (127,346): 79, 33, 33, 79, 186, 185, 33, 79, 33, 210, 35, 186, 46, (127,359): 117, 46, 186, 224, 186, 253, 176, 50, 180, 18, 204, 180, (127,371): 180, 28, 249, 180, (128,0): 66, 18, 18, 79, 116, 79, 72, 72, 18, 221, 221, 79, 33, 33, (128,14): 33, 245, 35, 33, 79, 33, 210, 245, 128, 33, 33, 35, 33, (128,27): 204, 125, 18, 66, 62, 209, 4, 209, 82, 4, 212, 244, 56, (128,40): 56, 69, 56, 122, 196, 103, 243, 71, 120, 194, 58, 60, 60, (128,53): 60, 31, 60, 163, 110, 162, 142, 153, 28, 103, 66, 103, 62, (128,66): 233, 142, 231, 60, 241, 233, 204, 241, 38, 14, 237, 231, (128,78): 194, 84, 51, 93, 187, 93, 33, 185, 79, 66, 219, 185, 62, (128,91): 24, 75, 152, 193, 151, 214, 214, 214, 214, 214, 214, 214, (128,103): 214, 89, 214, 214, 214, 214, 214, 214, 151, 29, 75, 47, (128,115): 47, 4, 4, 43, 85, 85, 4, 211, 39, 39, 47, 4, 197, 4, 148, (128,130): 209, 215, 20, 163, 127, 58, 159, 7, 159, 149, 127, 68, (128,142): 10, 112, 235, 115, 212, 69, 212, 151, 56, 56, 197, 98, (128,154): 159, 31, 102, 173, 107, 76, 41, 106, 209, 148, 247, 4, (128,166): 56, 151, 85, 39, 43, 85, 67, 67, 109, 160, 114, 160, 126, (128,179): 126, 85, 255, 244, 150, 52, 52, 168, 61, 131, 170, 57, (128,191): 131, 57, 202, 21, 167, 67, 164, 159, 159, 102, 251, 6, (128,203): 113, 113, 145, 71, 120, 201, 232, 33, 185, 195, 49, 116, (128,215): 11, 46, 224, 221, 14, 128, 245, 245, 55, 35, 117, 117, (128,227): 117, 35, 117, 117, 117, 117, 117, 139, 117, 201, 35, 35, (128,239): 117, 117, 117, 35, 117, 201, 117, 117, 35, 139, 117, 117, (128,251): 201, 117, 117, 35, 117, 117, 117, 117, 117, 117, 35, 117, (128,263): 117, 117, 117, 201, 117, 117, 117, 117, 117, 35, 35, 35, (128,275): 119, 119, 33, 119, 128, 117, 35, 117, 117, 35, 139, 117, (128,287): 117, 117, 117, 117, 117, 117, 140, 117, 117, 140, 88, (128,298): 140, 117, 117, 117, 117, 140, 117, 140, 117, 140, 117, (128,309): 117, 117, 117, 117, 35, 35, 128, 35, 35, 35, 117, 117, (128,321): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, (128,332): 117, 35, 35, 35, 117, 35, 117, 35, 35, 11, 35, 117, 117, (128,345): 33, 33, 33, 185, 79, 33, 185, 128, 88, 79, 195, 128, 11, (128,358): 49, 137, 183, 64, 64, 91, 175, 37, 221, 66, 28, 2, 207, (128,371): 231, 79, 252, 231, (129,0): 66, 18, 33, 79, 18, 18, 33, 128, 33, 33, 116, 33, 210, 210, (129,14): 33, 221, 128, 35, 35, 128, 245, 35, 232, 245, 245, 147, (129,26): 35, 185, 79, 185, 71, 125, 92, 39, 106, 218, 77, 43, 67, (129,39): 211, 43, 4, 4, 238, 206, 60, 219, 236, 185, 219, 62, 251, (129,52): 20, 250, 228, 7, 39, 45, 59, 23, 153, 194, 125, 241, 38, (129,65): 233, 103, 231, 84, 8, 51, 241, 241, 100, 62, 100, 231, 60, (129,78): 231, 15, 28, 241, 180, 187, 14, 219, 185, 125, 55, 55, 28, (129,91): 142, 188, 84, 229, 189, 214, 214, 214, 214, 214, 214, 214, (129,103): 248, 248, 248, 248, 151, 151, 214, 151, 56, 238, 211, (129,114): 148, 47, 211, 235, 43, 85, 235, 82, 112, 77, 39, 247, 98, (129,127): 158, 43, 148, 73, 31, 215, 250, 60, 60, 163, 31, 101, (129,139): 218, 218, 73, 68, 10, 67, 54, 191, 150, 56, 56, 56, 151, (129,152): 115, 4, 196, 101, 92, 102, 76, 41, 101, 106, 164, 4, 4, (129,165): 148, 4, 56, 56, 148, 43, 244, 67, 40, 167, 114, 114, 114, (129,178): 114, 109, 114, 255, 13, 150, 150, 52, 168, 61, 114, 169, (129,190): 21, 21, 161, 136, 161, 67, 68, 159, 159, 101, 107, 103, (129,202): 113, 103, 103, 120, 113, 120, 236, 55, 232, 35, 79, 72, (129,214): 116, 128, 128, 3, 195, 234, 128, 232, 140, 140, 117, 117, (129,226): 35, 117, 117, 117, 201, 117, 117, 117, 117, 117, 35, 117, (129,238): 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, (129,250): 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, 117, 139, (129,262): 35, 117, 35, 117, 117, 117, 117, 35, 117, 35, 117, 117, (129,274): 35, 35, 35, 119, 119, 119, 117, 139, 35, 117, 117, 117, (129,286): 117, 117, 117, 201, 117, 117, 117, 117, 117, 117, 117, (129,297): 117, 117, 117, 140, 117, 117, 117, 140, 117, 117, 117, (129,308): 117, 117, 117, 117, 117, 35, 35, 35, 35, 35, 35, 35, 117, (129,321): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (129,332): 35, 117, 35, 35, 35, 117, 35, 117, 35, 35, 35, 35, 117, (129,345): 117, 117, 117, 33, 79, 185, 66, 232, 33, 35, 11, 117, 46, (129,358): 186, 46, 222, 91, 34, 63, 186, 116, 121, 35, 123, 252, (129,370): 180, 128, 204, 195, 33, (130,0): 33, 236, 18, 18, 116, 33, 221, 116, 128, 224, 33, 33, 33, (130,13): 128, 232, 232, 128, 35, 33, 33, 128, 79, 33, 245, 232, 35, (130,26): 232, 79, 55, 71, 125, 71, 76, 107, 92, 92, 215, 4, 39, 10, (130,40): 148, 39, 149, 4, 59, 237, 20, 219, 71, 185, 125, 113, 251, (130,53): 20, 213, 163, 7, 163, 7, 20, 62, 194, 241, 14, 74, 58, (130,66): 142, 51, 95, 95, 70, 93, 153, 153, 100, 20, 100, 207, 84, (130,79): 53, 95, 28, 180, 100, 51, 100, 125, 33, 219, 125, 194, 60, (130,92): 188, 25, 59, 238, 248, 214, 214, 151, 89, 214, 214, 248, (130,104): 248, 189, 248, 151, 151, 151, 189, 29, 45, 206, 148, 206, (130,116): 211, 235, 83, 244, 54, 10, 127, 73, 218, 39, 247, 83, (130,128): 158, 127, 73, 209, 250, 92, 250, 31, 250, 251, 254, 254, (130,140): 215, 106, 73, 68, 77, 10, 167, 85, 212, 212, 212, 212, (130,152): 69, 158, 149, 101, 101, 250, 118, 173, 154, 106, 47, 69, (130,164): 56, 54, 247, 212, 69, 148, 235, 69, 191, 167, 67, 167, (130,176): 114, 143, 114, 126, 109, 13, 227, 150, 52, 52, 86, 61, (130,188): 114, 57, 202, 136, 202, 136, 130, 68, 67, 112, 127, 163, (130,200): 163, 194, 107, 103, 113, 120, 113, 113, 38, 38, 236, 33, (130,212): 18, 195, 72, 111, 72, 108, 220, 221, 245, 33, 119, 245, (130,224): 35, 117, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, (130,236): 117, 35, 35, 35, 117, 117, 35, 117, 35, 117, 35, 117, (130,248): 201, 117, 117, 35, 117, 35, 139, 117, 117, 117, 117, 35, (130,260): 117, 117, 117, 117, 117, 35, 117, 35, 139, 117, 117, 117, (130,272): 35, 117, 35, 35, 35, 35, 35, 35, 117, 117, 117, 117, 201, (130,285): 117, 117, 35, 117, 117, 117, 117, 139, 117, 140, 117, (130,296): 140, 117, 140, 117, 117, 117, 117, 117, 35, 117, 117, (130,307): 117, 117, 201, 117, 117, 35, 117, 35, 35, 35, 35, 35, (130,319): 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, 35, 117, (130,331): 35, 117, 35, 35, 35, 117, 117, 35, 117, 35, 117, 117, (130,343): 117, 221, 185, 119, 88, 35, 35, 128, 33, 88, 195, 117, (130,355): 195, 177, 253, 128, 222, 64, 27, 27, 36, 63, 50, 64, 220, (130,368): 18, 27, 180, 79, 79, 108, 195, (131,0): 245, 128, 18, 195, 66, 72, 49, 234, 116, 79, 221, 33, 33, (131,13): 33, 245, 35, 79, 79, 18, 79, 245, 245, 33, 232, 128, 35, (131,26): 232, 119, 117, 119, 33, 55, 6, 113, 41, 92, 92, 211, 47, (131,39): 39, 149, 39, 73, 58, 165, 198, 153, 38, 71, 125, 233, 251, (131,52): 20, 20, 173, 228, 31, 228, 76, 113, 62, 14, 103, 241, 241, (131,65): 20, 100, 60, 226, 84, 70, 89, 51, 28, 28, 28, 60, 142, (131,78): 229, 16, 95, 62, 241, 185, 180, 14, 195, 219, 125, 125, (131,90): 153, 153, 84, 25, 198, 84, 53, 189, 248, 214, 151, 151, (131,102): 214, 151, 151, 151, 56, 151, 151, 56, 29, 83, 47, 148, (131,114): 148, 82, 211, 54, 43, 212, 43, 148, 77, 209, 106, 218, (131,126): 94, 69, 83, 39, 31, 218, 250, 102, 250, 250, 102, 254, (131,138): 107, 154, 254, 215, 106, 32, 32, 77, 96, 54, 244, 212, (131,150): 69, 212, 197, 217, 127, 218, 218, 7, 218, 250, 68, 211, (131,162): 43, 217, 4, 211, 47, 56, 56, 112, 39, 217, 43, 167, 167, (131,175): 144, 160, 255, 126, 150, 227, 212, 52, 150, 52, 168, 168, (131,187): 239, 143, 170, 202, 136, 136, 136, 190, 166, 112, 162, (131,198): 162, 94, 163, 194, 103, 113, 107, 113, 107, 113, 71, 243, (131,210): 204, 236, 79, 79, 128, 11, 234, 253, 108, 35, 245, 33, (131,222): 33, 139, 117, 139, 35, 117, 117, 35, 117, 35, 117, 35, (131,234): 117, 117, 35, 117, 117, 117, 35, 117, 117, 139, 117, 117, (131,246): 117, 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, (131,257): 201, 117, 117, 35, 117, 117, 117, 139, 117, 117, 117, (131,268): 117, 117, 139, 35, 117, 35, 117, 35, 35, 117, 117, 117, (131,280): 35, 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, (131,292): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 201, (131,303): 117, 35, 35, 35, 201, 35, 117, 117, 117, 35, 35, 35, 35, (131,316): 35, 35, 117, 35, 117, 117, 35, 117, 117, 117, 117, 201, (131,328): 117, 117, 117, 35, 117, 35, 35, 35, 117, 35, 117, 117, (131,340): 35, 35, 117, 117, 117, 33, 128, 117, 33, 128, 35, 128, (131,352): 33, 88, 88, 128, 46, 186, 186, 116, 46, 146, 91, 121, 50, (131,365): 99, 104, 195, 79, 220, 224, 221, 234, 121, 223, (132,0): 232, 245, 35, 72, 14, 108, 14, 234, 72, 49, 116, 128, 35, (132,13): 35, 18, 63, 51, 207, 180, 241, 79, 33, 18, 18, 232, 35, (132,26): 33, 33, 245, 117, 119, 201, 71, 113, 145, 76, 173, 7, 149, (132,39): 215, 39, 149, 60, 31, 23, 198, 74, 38, 71, 38, 100, 251, (132,52): 251, 20, 76, 102, 41, 250, 153, 74, 153, 103, 125, 125, (132,64): 219, 71, 125, 219, 157, 246, 192, 226, 58, 194, 153, 142, (132,76): 228, 20, 74, 58, 70, 14, 38, 33, 219, 38, 125, 100, 66, (132,89): 24, 249, 95, 95, 59, 25, 25, 75, 16, 214, 214, 151, 151, (132,102): 151, 151, 214, 151, 151, 56, 56, 69, 238, 4, 206, 47, (132,114): 211, 47, 10, 148, 54, 69, 85, 10, 218, 215, 92, 101, 148, (132,127): 69, 29, 127, 31, 228, 215, 251, 254, 251, 251, 107, 213, (132,139): 92, 215, 92, 9, 215, 48, 32, 42, 77, 235, 150, 69, 115, (132,152): 235, 47, 39, 106, 250, 218, 149, 127, 43, 69, 212, 217, (132,164): 4, 197, 54, 69, 217, 39, 77, 85, 56, 13, 217, 167, 114, (132,177): 114, 13, 126, 150, 150, 150, 52, 168, 168, 168, 168, 61, (132,189): 131, 205, 21, 136, 190, 200, 164, 112, 158, 165, 122, (132,200): 163, 250, 102, 102, 102, 250, 107, 113, 6, 243, 233, 38, (132,212): 185, 33, 33, 33, 146, 108, 220, 33, 33, 232, 139, 117, (132,224): 117, 117, 117, 35, 139, 117, 117, 117, 201, 117, 35, 117, (132,236): 117, 35, 117, 35, 139, 117, 117, 117, 117, 201, 117, 117, (132,248): 35, 117, 117, 35, 117, 117, 117, 201, 117, 117, 117, 35, (132,260): 139, 117, 201, 117, 117, 117, 201, 117, 117, 117, 117, (132,271): 117, 117, 117, 201, 35, 117, 117, 117, 117, 117, 35, 117, (132,283): 35, 117, 35, 117, 201, 117, 117, 117, 117, 117, 140, 117, (132,295): 140, 117, 117, 140, 117, 117, 117, 117, 117, 119, 35, 35, (132,307): 117, 117, 35, 35, 117, 201, 35, 117, 117, 117, 117, 35, (132,319): 117, 117, 117, 117, 117, 201, 117, 117, 117, 117, 35, (132,330): 117, 201, 117, 35, 117, 35, 117, 35, 35, 35, 35, 117, 35, (132,343): 35, 117, 33, 119, 128, 79, 79, 33, 33, 221, 33, 72, 50, (132,356): 156, 116, 111, 46, 80, 121, 50, 220, 108, 50, 108, 63, (132,368): 224, 210, 138, 183, 64, 50, 63, (133,0): 128, 35, 245, 79, 72, 49, 195, 72, 116, 66, 72, 195, 108, (133,13): 180, 252, 37, 226, 70, 51, 231, 66, 66, 204, 79, 72, 79, (133,26): 33, 185, 33, 119, 119, 55, 55, 71, 201, 243, 71, 20, 7, (133,39): 243, 7, 237, 7, 228, 207, 45, 58, 219, 71, 241, 194, 103, (133,52): 76, 20, 250, 7, 206, 59, 83, 152, 188, 74, 100, 251, 38, (133,65): 241, 28, 194, 70, 226, 187, 142, 24, 241, 20, 153, 233, (133,77): 236, 20, 231, 16, 246, 38, 185, 18, 241, 66, 241, 14, 28, (133,90): 175, 93, 93, 51, 58, 58, 93, 59, 248, 151, 214, 151, 214, (133,103): 151, 56, 56, 56, 69, 69, 29, 85, 43, 211, 211, 211, 211, (133,116): 39, 32, 39, 211, 54, 73, 209, 215, 92, 118, 7, 75, 165, (133,129): 39, 92, 254, 76, 76, 103, 107, 76, 76, 76, 102, 250, 215, (133,142): 154, 41, 9, 32, 32, 32, 10, 43, 191, 43, 211, 10, 101, (133,155): 92, 154, 101, 127, 4, 148, 54, 191, 43, 43, 211, 39, 148, (133,168): 148, 39, 73, 191, 56, 69, 69, 85, 244, 126, 109, 82, 13, (133,181): 144, 150, 52, 52, 168, 52, 168, 86, 143, 131, 114, 166, (133,193): 166, 77, 164, 112, 162, 122, 189, 152, 162, 94, 163, 101, (133,205): 101, 254, 107, 213, 20, 194, 20, 38, 38, 195, 49, 186, (133,217): 195, 72, 128, 33, 88, 35, 35, 117, 35, 117, 117, 117, (133,229): 117, 35, 117, 117, 117, 35, 117, 35, 117, 117, 117, 117, (133,241): 117, 117, 35, 117, 117, 117, 35, 117, 117, 117, 117, 139, (133,253): 35, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, (133,265): 117, 117, 117, 117, 201, 117, 35, 117, 117, 117, 117, (133,276): 117, 117, 117, 139, 117, 117, 117, 139, 35, 117, 117, (133,287): 117, 117, 35, 117, 139, 117, 117, 117, 117, 117, 117, 35, (133,299): 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, 117, 117, (133,312): 35, 117, 117, 117, 35, 117, 35, 35, 35, 117, 117, 117, (133,324): 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 35, 35, (133,336): 35, 117, 35, 35, 35, 128, 117, 35, 33, 186, 33, 128, 33, (133,349): 186, 79, 221, 195, 50, 35, 46, 104, 3, 11, 27, 91, 181, (133,362): 128, 137, 180, 105, 99, 223, 253, 111, 78, 63, 80, 46, 3, (134,0): 245, 245, 128, 33, 128, 35, 224, 72, 116, 146, 66, 108, (134,12): 242, 8, 99, 214, 214, 214, 248, 249, 226, 226, 8, 27, 24, (134,25): 72, 35, 128, 119, 117, 35, 35, 55, 119, 55, 71, 113, 233, (134,38): 228, 20, 60, 7, 7, 228, 7, 15, 237, 103, 125, 219, 251, (134,51): 103, 103, 228, 31, 94, 152, 56, 75, 15, 196, 103, 219, 55, (134,64): 55, 241, 153, 100, 153, 246, 153, 153, 153, 62, 194, 60, (134,76): 233, 233, 31, 207, 229, 226, 233, 71, 204, 28, 24, 14, 24, (134,89): 241, 100, 241, 142, 187, 15, 70, 84, 229, 248, 151, 151, (134,101): 151, 151, 151, 56, 212, 212, 69, 244, 85, 85, 85, 235, (134,113): 65, 235, 54, 10, 73, 209, 77, 39, 92, 92, 254, 154, 213, (134,126): 92, 149, 159, 228, 76, 76, 243, 113, 76, 113, 113, 113, (134,138): 76, 254, 250, 215, 213, 92, 154, 48, 215, 106, 39, 148, (134,150): 112, 206, 127, 209, 213, 41, 173, 41, 218, 47, 115, 212, (134,162): 212, 212, 197, 47, 112, 148, 39, 148, 217, 56, 56, 56, (134,174): 56, 191, 150, 126, 40, 167, 13, 244, 150, 52, 168, 168, (134,186): 168, 86, 168, 239, 143, 126, 40, 98, 112, 127, 112, 127, (134,198): 94, 122, 56, 122, 122, 94, 163, 101, 92, 250, 154, 254, (134,210): 102, 251, 103, 219, 66, 66, 49, 116, 186, 128, 35, 147, (134,222): 232, 232, 35, 117, 35, 117, 35, 117, 117, 35, 35, 35, 35, (134,235): 117, 139, 117, 117, 139, 117, 117, 201, 117, 117, 35, (134,246): 117, 117, 35, 139, 117, 117, 117, 117, 117, 35, 117, 35, (134,258): 117, 35, 117, 117, 117, 35, 117, 117, 35, 117, 117, 117, (134,270): 117, 117, 117, 117, 35, 117, 35, 117, 117, 117, 117, 201, (134,282): 117, 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, (134,293): 117, 139, 117, 117, 139, 117, 117, 201, 117, 35, 35, 117, (134,305): 117, 201, 117, 117, 35, 35, 117, 35, 117, 35, 117, 117, (134,317): 117, 35, 117, 117, 117, 201, 117, 117, 117, 117, 117, (134,328): 117, 35, 117, 117, 35, 35, 117, 35, 35, 35, 35, 35, 35, (134,341): 35, 35, 128, 117, 128, 35, 11, 79, 195, 49, 66, 195, 156, (134,354): 156, 49, 156, 108, 49, 128, 186, 156, 186, 180, 63, 27, (134,366): 195, 46, 63, 78, 177, 105, 224, 220, 186, (135,0): 232, 245, 210, 245, 128, 128, 33, 221, 79, 156, 14, 28, (135,12): 253, 51, 93, 89, 178, 214, 214, 214, 89, 89, 89, 89, 97, (135,25): 63, 33, 35, 232, 35, 119, 185, 33, 140, 185, 119, 71, 243, (135,38): 243, 233, 60, 228, 194, 20, 228, 58, 110, 233, 219, 236, (135,50): 38, 233, 20, 250, 31, 45, 7, 59, 122, 75, 58, 153, 58, 58, (135,64): 14, 103, 100, 251, 125, 153, 125, 62, 194, 24, 58, 237, (135,76): 74, 31, 233, 20, 237, 89, 242, 187, 24, 14, 187, 100, 241, (135,89): 185, 14, 194, 187, 15, 157, 248, 16, 178, 151, 214, 151, (135,101): 151, 56, 69, 56, 56, 212, 115, 85, 13, 85, 244, 83, 43, (135,114): 43, 4, 211, 77, 209, 209, 31, 41, 41, 173, 41, 76, 76, (135,127): 101, 20, 243, 41, 243, 6, 71, 71, 145, 71, 6, 71, 254, (135,140): 102, 250, 92, 215, 6, 41, 213, 209, 149, 127, 149, 127, (135,152): 73, 213, 173, 173, 71, 145, 251, 7, 54, 244, 69, 56, 13, (135,165): 47, 54, 68, 197, 115, 29, 69, 85, 197, 212, 191, 13, 167, (135,178): 67, 191, 150, 212, 52, 52, 168, 86, 134, 86, 86, 239, (135,190): 239, 126, 167, 158, 162, 112, 127, 101, 101, 94, 94, 162, (135,202): 189, 162, 94, 127, 218, 159, 92, 118, 250, 250, 194, 241, (135,214): 125, 125, 66, 186, 14, 72, 79, 245, 33, 140, 117, 35, (135,226): 117, 117, 117, 139, 117, 117, 35, 117, 201, 117, 117, (135,237): 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, 35, 117, (135,249): 117, 117, 117, 201, 117, 35, 117, 117, 117, 35, 117, 117, (135,261): 117, 35, 117, 117, 35, 117, 117, 35, 117, 35, 117, 139, (135,273): 117, 117, 35, 35, 117, 201, 117, 117, 117, 117, 117, 117, (135,285): 117, 35, 117, 35, 117, 35, 117, 117, 117, 117, 140, 117, (135,297): 117, 117, 117, 117, 35, 117, 35, 117, 117, 117, 117, 117, (135,309): 35, 117, 35, 35, 201, 117, 117, 117, 117, 201, 35, 117, (135,321): 117, 117, 117, 117, 117, 117, 201, 117, 117, 117, 117, (135,332): 35, 117, 35, 35, 35, 35, 128, 119, 128, 35, 128, 35, 35, (135,345): 221, 128, 117, 33, 186, 46, 221, 156, 49, 146, 156, 146, (135,357): 156, 80, 195, 253, 146, 156, 46, 63, 221, 195, 105, 97, (135,369): 253, 177, 156, 253, 27, 156, (136,0): 117, 245, 245, 79, 210, 88, 128, 186, 66, 14, 180, 14, 28, (136,13): 175, 8, 84, 229, 16, 248, 214, 89, 214, 178, 177, 37, 121, (136,26): 195, 186, 180, 180, 14, 33, 119, 33, 55, 185, 55, 55, 219, (136,39): 228, 38, 38, 243, 233, 20, 60, 20, 38, 243, 219, 103, 103, (136,52): 194, 250, 251, 74, 218, 94, 214, 151, 189, 84, 58, 193, (136,64): 62, 93, 142, 153, 194, 15, 58, 20, 15, 251, 74, 24, 58, (136,77): 60, 233, 62, 231, 53, 214, 214, 178, 51, 18, 204, 66, 100, (136,90): 28, 24, 93, 249, 214, 214, 214, 214, 248, 248, 151, 151, (136,102): 56, 115, 85, 69, 244, 13, 235, 235, 13, 244, 43, 43, 115, (136,115): 13, 47, 39, 73, 215, 41, 173, 145, 6, 6, 6, 6, 243, 76, (136,129): 113, 71, 145, 145, 145, 145, 120, 120, 120, 113, 254, (136,140): 250, 31, 163, 7, 41, 173, 41, 92, 7, 196, 196, 74, 213, (136,153): 243, 113, 120, 6, 120, 113, 113, 92, 73, 68, 82, 4, 235, (136,166): 47, 112, 212, 56, 69, 69, 69, 197, 247, 247, 67, 167, (136,178): 112, 167, 150, 212, 52, 150, 52, 86, 86, 168, 168, 86, (136,190): 143, 160, 68, 112, 112, 98, 163, 101, 254, 101, 101, 127, (136,202): 162, 94, 159, 159, 218, 159, 218, 218, 163, 159, 60, 103, (136,214): 125, 125, 221, 63, 195, 88, 79, 232, 140, 232, 117, 117, (136,226): 139, 117, 117, 117, 117, 35, 117, 35, 117, 35, 35, 201, (136,238): 117, 117, 35, 35, 35, 117, 35, 35, 201, 117, 117, 201, (136,250): 117, 117, 117, 117, 117, 35, 139, 117, 117, 35, 139, 117, (136,262): 117, 35, 201, 117, 35, 117, 117, 117, 117, 117, 117, 117, (136,274): 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 201, 117, (136,286): 117, 117, 139, 117, 117, 117, 139, 117, 117, 117, 117, (136,297): 117, 117, 35, 117, 117, 117, 117, 201, 117, 35, 117, 35, (136,309): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (136,320): 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, 35, 35, 117, (136,333): 35, 117, 35, 117, 119, 55, 128, 119, 33, 35, 117, 128, (136,345): 185, 221, 128, 44, 186, 116, 128, 224, 224, 146, 63, 181, (136,357): 181, 2, 63, 186, 181, 180, 64, 121, 220, 195, 220, 183, (136,369): 108, 156, 27, 220, 27, 99, (137,0): 232, 128, 232, 33, 33, 116, 79, 185, 234, 156, 28, 180, (137,12): 252, 226, 53, 226, 75, 189, 214, 214, 89, 214, 216, 175, (137,24): 187, 104, 253, 180, 2, 27, 252, 156, 156, 125, 79, 55, 33, (137,37): 55, 125, 233, 62, 228, 20, 71, 236, 243, 20, 60, 38, 38, (137,50): 243, 236, 103, 213, 251, 149, 196, 110, 56, 189, 214, 110, (137,62): 149, 24, 103, 153, 100, 58, 51, 25, 95, 249, 16, 15, 20, (137,75): 62, 228, 219, 71, 243, 204, 51, 252, 51, 63, 51, 180, 28, (137,88): 28, 180, 180, 207, 246, 53, 89, 178, 53, 53, 59, 16, 189, (137,101): 189, 115, 29, 85, 85, 43, 235, 211, 211, 235, 235, 85, (137,113): 244, 69, 85, 211, 149, 7, 92, 76, 173, 145, 145, 145, (137,125): 145, 120, 71, 120, 6, 120, 145, 55, 145, 55, 145, 120, (137,137): 120, 76, 194, 163, 31, 250, 20, 113, 71, 71, 76, 20, 194, (137,150): 228, 20, 113, 71, 120, 145, 55, 145, 120, 71, 154, 209, (137,162): 39, 148, 211, 217, 217, 158, 197, 212, 197, 158, 56, 56, (137,174): 162, 148, 10, 54, 26, 217, 13, 212, 150, 168, 52, 86, (137,186): 168, 168, 239, 144, 61, 167, 164, 68, 127, 94, 159, 101, (137,198): 254, 254, 254, 102, 196, 127, 247, 162, 7, 254, 218, 101, (137,210): 163, 196, 153, 194, 125, 185, 128, 66, 79, 88, 232, 35, (137,222): 140, 35, 117, 117, 117, 35, 117, 35, 117, 117, 201, 117, (137,234): 35, 35, 117, 35, 117, 35, 117, 201, 117, 35, 35, 117, (137,246): 117, 35, 117, 117, 117, 35, 117, 35, 117, 117, 117, 35, (137,258): 117, 117, 117, 35, 117, 117, 117, 35, 117, 35, 35, 117, (137,270): 139, 117, 117, 117, 117, 117, 201, 117, 35, 35, 117, 35, (137,282): 117, 117, 117, 117, 35, 117, 117, 117, 201, 117, 117, (137,293): 117, 117, 117, 201, 117, 35, 117, 117, 117, 35, 117, 35, (137,305): 117, 35, 201, 117, 117, 117, 117, 117, 117, 117, 117, (137,316): 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, (137,328): 35, 117, 35, 117, 35, 117, 35, 117, 35, 119, 33, 119, (137,340): 119, 33, 128, 128, 33, 186, 88, 146, 195, 46, 116, 11, (137,352): 46, 80, 253, 181, 187, 181, 63, 221, 108, 27, 187, 183, (137,364): 8, 105, 104, 79, 195, 66, 93, 70, 241, 175, 99, (138,0): 232, 18, 18, 232, 204, 195, 185, 33, 14, 14, 28, 28, 207, (138,13): 237, 231, 237, 189, 206, 60, 149, 242, 8, 8, 123, 178, 64, (138,26): 104, 220, 49, 187, 51, 66, 14, 195, 128, 35, 33, 125, 219, (138,39): 38, 62, 62, 20, 243, 236, 236, 20, 28, 58, 153, 28, 251, (138,52): 251, 60, 60, 45, 149, 149, 45, 151, 151, 238, 15, 228, (138,64): 233, 142, 60, 246, 15, 58, 188, 110, 59, 229, 62, 153, (138,76): 194, 243, 71, 236, 236, 66, 71, 66, 79, 100, 100, 187, (138,88): 187, 24, 28, 180, 207, 252, 15, 93, 192, 93, 246, 198, 59, (138,101): 238, 29, 85, 85, 43, 43, 211, 82, 211, 211, 211, 211, (138,113): 235, 43, 85, 4, 211, 149, 20, 243, 236, 145, 236, 145, (138,125): 55, 145, 145, 55, 145, 55, 55, 145, 55, 55, 201, 145, (138,137): 120, 113, 102, 194, 102, 76, 120, 71, 6, 236, 113, 71, (138,149): 243, 125, 113, 120, 55, 55, 55, 119, 55, 55, 120, 6, 154, (138,162): 106, 148, 197, 69, 212, 151, 158, 85, 98, 39, 158, 115, (138,174): 98, 39, 68, 65, 191, 54, 13, 212, 52, 144, 52, 168, 168, (138,187): 168, 61, 114, 26, 67, 164, 159, 68, 127, 247, 68, 101, (138,199): 118, 107, 107, 101, 218, 127, 247, 159, 218, 118, 118, (138,210): 250, 159, 153, 62, 185, 119, 88, 33, 128, 88, 35, 88, (138,222): 140, 139, 117, 35, 117, 117, 117, 117, 35, 117, 117, 117, (138,234): 35, 35, 35, 35, 117, 35, 117, 35, 117, 201, 117, 35, 35, (138,247): 117, 35, 117, 35, 117, 117, 35, 139, 117, 117, 117, 139, (138,259): 117, 117, 117, 35, 117, 35, 117, 201, 117, 117, 117, 117, (138,271): 117, 117, 139, 117, 117, 117, 117, 35, 117, 117, 117, 35, (138,283): 117, 35, 117, 117, 35, 117, 117, 117, 117, 35, 117, 201, (138,295): 117, 117, 117, 117, 35, 139, 117, 117, 117, 35, 117, 117, (138,307): 117, 117, 117, 117, 117, 117, 117, 117, 139, 117, 117, (138,318): 117, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (138,330): 117, 35, 117, 35, 117, 117, 35, 119, 119, 232, 128, 33, (138,342): 33, 33, 88, 46, 128, 195, 186, 221, 72, 108, 80, 116, 80, (138,355): 80, 195, 210, 46, 156, 123, 253, 27, 63, 33, 186, 66, (138,367): 180, 100, 241, 89, 89, 175, 25, 14, (139,0): 33, 28, 231, 33, 14, 14, 66, 204, 204, 204, 241, 233, 28, (139,13): 62, 62, 84, 211, 149, 7, 149, 58, 231, 2, 70, 27, 63, 2, (139,27): 50, 195, 241, 195, 156, 14, 125, 119, 119, 185, 204, 66, (139,39): 38, 38, 38, 38, 71, 71, 103, 20, 194, 237, 142, 24, 194, (139,52): 20, 102, 250, 127, 74, 163, 60, 189, 151, 214, 59, 60, (139,64): 153, 246, 74, 142, 153, 60, 15, 74, 188, 193, 84, 75, 15, (139,77): 62, 55, 55, 204, 33, 35, 204, 18, 14, 180, 187, 175, 187, (139,90): 63, 231, 24, 153, 28, 153, 28, 153, 142, 237, 188, 75, 83, (139,103): 83, 75, 43, 54, 211, 211, 211, 47, 47, 10, 211, 83, 56, (139,116): 56, 29, 198, 7, 113, 120, 145, 119, 145, 119, 201, 55, (139,128): 201, 119, 201, 55, 55, 55, 145, 120, 251, 113, 113, 113, (139,140): 103, 113, 120, 120, 145, 120, 120, 185, 71, 120, 120, (139,151): 120, 55, 55, 55, 55, 55, 55, 55, 120, 6, 6, 213, 23, 69, (139,165): 56, 115, 244, 217, 217, 68, 218, 39, 98, 247, 73, 68, (139,177): 255, 197, 191, 13, 150, 212, 52, 52, 52, 52, 168, 208, (139,189): 160, 96, 190, 164, 218, 127, 127, 158, 94, 94, 159, 101, (139,201): 101, 118, 92, 250, 159, 196, 127, 107, 107, 254, 102, (139,212): 102, 125, 119, 88, 117, 88, 117, 128, 117, 245, 117, 35, (139,224): 117, 117, 117, 35, 117, 139, 117, 35, 117, 35, 35, 35, (139,236): 35, 35, 35, 117, 35, 117, 35, 35, 117, 35, 117, 201, 117, (139,249): 117, 117, 35, 117, 117, 117, 117, 201, 117, 117, 117, (139,260): 201, 117, 139, 117, 35, 35, 117, 117, 35, 117, 117, 117, (139,272): 117, 117, 117, 117, 35, 35, 117, 201, 117, 35, 117, 117, (139,284): 117, 117, 139, 117, 117, 35, 117, 35, 117, 117, 117, 117, (139,296): 117, 35, 117, 117, 117, 117, 35, 117, 35, 35, 35, 35, (139,308): 117, 35, 117, 117, 139, 35, 117, 117, 117, 117, 117, 201, (139,320): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (139,332): 117, 35, 117, 35, 117, 232, 232, 35, 119, 119, 79, 33, (139,344): 35, 210, 221, 224, 156, 64, 182, 138, 186, 80, 156, 220, (139,356): 80, 181, 253, 187, 8, 100, 156, 2, 187, 37, 64, 89, 175, (139,369): 219, 180, 192, 153, 70, 100, (140,0): 100, 246, 175, 28, 93, 242, 242, 70, 207, 231, 241, 38, 62, (140,13): 60, 74, 16, 238, 85, 75, 206, 246, 246, 207, 72, 234, 46, (140,26): 221, 221, 156, 108, 33, 33, 125, 186, 33, 33, 79, 185, (140,38): 125, 185, 204, 219, 219, 71, 71, 219, 60, 207, 15, 142, (140,50): 58, 60, 219, 113, 76, 250, 194, 213, 254, 149, 189, 115, (140,62): 56, 58, 20, 74, 194, 60, 74, 228, 142, 228, 194, 58, 45, (140,75): 51, 246, 28, 232, 232, 232, 79, 204, 33, 66, 187, 70, 252, (140,88): 51, 28, 62, 100, 153, 28, 60, 28, 62, 194, 100, 153, 58, (140,101): 23, 45, 43, 47, 211, 211, 211, 206, 148, 206, 39, 148, (140,113): 148, 54, 83, 238, 165, 23, 60, 71, 120, 119, 55, 201, (140,125): 201, 201, 119, 119, 55, 55, 201, 201, 145, 120, 71, 153, (140,137): 102, 120, 55, 145, 145, 55, 201, 55, 120, 120, 120, 120, (140,149): 55, 120, 120, 120, 55, 120, 55, 145, 119, 55, 145, 71, 6, (140,162): 154, 148, 69, 56, 197, 191, 158, 68, 164, 39, 218, 68, (140,174): 47, 106, 39, 112, 43, 13, 197, 150, 212, 150, 52, 52, 52, (140,187): 168, 227, 30, 67, 218, 118, 101, 127, 127, 247, 112, 247, (140,199): 94, 159, 164, 250, 118, 250, 101, 101, 102, 118, 254, (140,210): 107, 103, 120, 119, 117, 88, 117, 210, 117, 128, 117, (140,221): 117, 201, 35, 117, 35, 139, 117, 117, 117, 117, 117, 201, (140,233): 117, 35, 117, 35, 35, 117, 35, 35, 35, 117, 35, 35, 117, (140,246): 35, 35, 117, 35, 117, 139, 117, 117, 117, 117, 117, 117, (140,258): 35, 117, 117, 117, 117, 117, 201, 117, 117, 35, 117, 139, (140,270): 117, 117, 35, 117, 117, 35, 117, 117, 35, 35, 117, 117, (140,282): 139, 117, 35, 117, 117, 117, 35, 117, 35, 117, 117, 35, (140,294): 117, 35, 117, 117, 35, 117, 201, 117, 117, 117, 201, 117, (140,306): 117, 117, 35, 139, 117, 117, 117, 117, 201, 117, 35, 201, (140,318): 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (140,330): 35, 117, 35, 117, 35, 201, 117, 119, 117, 117, 35, 33, (140,342): 33, 33, 128, 128, 49, 221, 224, 105, 63, 64, 3, 80, 186, (140,355): 222, 108, 177, 121, 183, 195, 183, 180, 252, 104, 156, (140,366): 63, 187, 242, 24, 28, 70, 28, 187, 125, (141,0): 62, 24, 231, 100, 246, 99, 95, 226, 178, 70, 60, 71, 243, (141,13): 233, 60, 211, 29, 56, 56, 238, 15, 24, 180, 63, 234, 253, (141,26): 63, 11, 117, 33, 128, 185, 35, 35, 232, 232, 232, 55, 185, (141,39): 33, 55, 233, 194, 233, 204, 243, 194, 142, 188, 237, 246, (141,51): 196, 251, 103, 113, 251, 213, 76, 173, 60, 47, 189, 189, (141,63): 45, 74, 74, 23, 75, 193, 206, 237, 74, 74, 20, 231, 103, (141,76): 24, 100, 55, 185, 33, 18, 63, 14, 253, 180, 104, 63, 14, (141,89): 66, 219, 219, 102, 241, 62, 194, 14, 241, 241, 62, 60, (141,101): 196, 110, 206, 149, 206, 47, 206, 23, 127, 149, 7, 209, (141,113): 73, 73, 39, 7, 163, 102, 71, 71, 55, 201, 201, 119, 35, (141,126): 35, 201, 119, 119, 201, 55, 119, 119, 120, 125, 103, 113, (141,138): 201, 201, 201, 201, 201, 145, 55, 145, 120, 120, 120, (141,149): 145, 55, 55, 120, 55, 145, 55, 201, 55, 145, 119, 6, 41, (141,162): 228, 149, 158, 165, 191, 85, 56, 39, 200, 164, 106, 159, (141,174): 112, 101, 10, 112, 109, 191, 158, 126, 13, 144, 239, 52, (141,186): 52, 168, 150, 244, 217, 68, 118, 106, 163, 164, 127, 127, (141,198): 127, 127, 127, 127, 159, 218, 102, 254, 254, 254, 102, (141,209): 254, 113, 120, 201, 199, 117, 117, 117, 210, 11, 119, (141,220): 117, 117, 117, 139, 117, 117, 117, 117, 35, 117, 35, 117, (141,232): 117, 117, 35, 35, 117, 35, 201, 117, 35, 117, 35, 117, (141,244): 35, 35, 117, 35, 117, 117, 117, 117, 35, 117, 35, 117, (141,256): 35, 117, 117, 35, 117, 117, 117, 117, 35, 35, 117, 201, (141,268): 117, 117, 117, 117, 139, 117, 139, 117, 35, 35, 117, 35, (141,280): 117, 35, 117, 117, 117, 117, 201, 117, 139, 117, 117, (141,291): 139, 117, 117, 35, 117, 117, 35, 117, 117, 117, 117, 35, (141,303): 117, 117, 35, 35, 117, 117, 117, 117, 117, 35, 117, 117, (141,315): 35, 117, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, (141,327): 35, 117, 35, 117, 35, 117, 35, 117, 117, 35, 35, 35, 117, (141,340): 35, 35, 33, 128, 14, 186, 210, 46, 221, 80, 222, 182, (141,352): 182, 80, 80, 34, 78, 175, 27, 8, 104, 51, 156, 185, 27, (141,365): 220, 253, 183, 93, 252, 219, 14, 185, 24, 51, (142,0): 246, 25, 242, 242, 25, 95, 178, 214, 53, 246, 207, 243, (142,12): 236, 41, 233, 209, 211, 148, 23, 29, 248, 84, 180, 180, 2, (142,25): 183, 222, 116, 3, 14, 156, 117, 35, 128, 232, 232, 33, 79, (142,38): 18, 71, 204, 100, 24, 231, 233, 38, 20, 60, 51, 192, 25, (142,51): 188, 60, 20, 76, 113, 113, 250, 113, 7, 60, 115, 45, 75, (142,64): 74, 20, 60, 74, 45, 15, 23, 23, 59, 237, 194, 233, 100, (142,77): 38, 185, 79, 185, 49, 2, 2, 252, 156, 125, 195, 14, 241, (142,90): 66, 103, 241, 194, 102, 194, 62, 66, 219, 103, 251, 60, (142,102): 209, 60, 7, 7, 39, 149, 149, 149, 74, 101, 209, 215, 31, (142,115): 215, 20, 251, 233, 120, 55, 119, 119, 35, 35, 35, 140, (142,127): 139, 201, 119, 55, 201, 201, 201, 55, 120, 55, 201, 140, (142,139): 199, 117, 201, 201, 55, 145, 55, 145, 120, 120, 145, 120, (142,151): 145, 145, 55, 145, 55, 55, 145, 145, 145, 243, 20, 228, (142,163): 250, 101, 218, 218, 68, 85, 166, 106, 200, 73, 77, 148, (142,175): 10, 112, 82, 158, 191, 217, 255, 191, 114, 126, 144, 143, (142,187): 255, 227, 13, 109, 247, 101, 101, 101, 164, 159, 127, (142,198): 127, 159, 159, 94, 196, 159, 101, 107, 102, 250, 254, (142,209): 107, 6, 201, 140, 117, 140, 88, 88, 11, 88, 117, 117, (142,221): 117, 139, 117, 117, 117, 35, 117, 117, 35, 117, 35, 117, (142,233): 35, 35, 35, 35, 117, 117, 117, 35, 35, 35, 117, 35, 117, (142,246): 35, 35, 117, 35, 117, 35, 117, 117, 35, 117, 117, 35, (142,258): 117, 117, 35, 117, 35, 117, 117, 35, 117, 117, 117, 117, (142,270): 117, 117, 117, 117, 117, 117, 117, 201, 117, 35, 117, (142,281): 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, (142,293): 35, 139, 117, 117, 139, 117, 117, 35, 117, 117, 117, 35, (142,305): 35, 117, 201, 117, 117, 117, 117, 201, 117, 35, 35, 35, (142,317): 35, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (142,330): 35, 117, 35, 117, 35, 35, 201, 232, 232, 35, 35, 232, (142,342): 128, 35, 11, 72, 49, 105, 186, 46, 182, 46, 111, 133, 78, (142,355): 138, 220, 182, 108, 66, 108, 18, 27, 27, 89, 121, 156, (142,367): 66, 2, 153, 18, 119, 185, 100, 157, (143,0): 95, 214, 214, 214, 84, 242, 59, 248, 25, 229, 59, 237, 76, (143,13): 243, 243, 41, 209, 209, 39, 59, 151, 16, 242, 175, 183, 2, (143,26): 49, 72, 195, 220, 253, 186, 66, 241, 66, 18, 18, 204, 66, (143,39): 66, 207, 207, 180, 20, 38, 38, 233, 194, 192, 188, 248, (143,51): 248, 188, 142, 194, 76, 213, 20, 31, 243, 31, 23, 7, 7, (143,64): 31, 38, 60, 243, 149, 45, 237, 60, 24, 60, 236, 62, 204, (143,77): 185, 125, 79, 35, 63, 180, 156, 14, 156, 186, 219, 66, (143,89): 195, 219, 219, 103, 241, 194, 194, 66, 103, 185, 71, 103, (143,101): 20, 20, 92, 31, 31, 250, 31, 7, 196, 163, 102, 41, 213, (143,114): 215, 92, 76, 113, 71, 55, 55, 35, 139, 35, 35, 140, 117, (143,127): 117, 139, 35, 201, 119, 119, 201, 201, 55, 55, 201, 201, (143,139): 119, 201, 201, 201, 55, 201, 55, 145, 120, 71, 71, 71, (143,151): 120, 120, 145, 145, 145, 201, 120, 120, 71, 76, 92, 107, (143,163): 173, 213, 118, 118, 118, 118, 73, 218, 159, 217, 217, (143,174): 206, 158, 68, 82, 158, 109, 109, 244, 69, 114, 167, 143, (143,186): 114, 169, 114, 255, 112, 112, 190, 218, 118, 218, 159, (143,197): 98, 68, 164, 159, 68, 164, 127, 94, 159, 163, 107, 107, (143,209): 113, 55, 201, 201, 35, 35, 88, 88, 35, 117, 210, 117, (143,221): 201, 35, 117, 139, 117, 117, 139, 117, 117, 139, 117, (143,232): 117, 35, 117, 35, 117, 119, 117, 35, 117, 35, 117, 35, (143,244): 35, 35, 117, 201, 117, 139, 117, 117, 117, 139, 117, 117, (143,256): 117, 139, 35, 117, 117, 35, 117, 117, 35, 35, 35, 117, (143,268): 35, 117, 117, 117, 117, 117, 117, 35, 117, 117, 35, 35, (143,280): 117, 117, 139, 35, 117, 117, 35, 117, 117, 35, 117, 201, (143,292): 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, 35, 117, (143,304): 35, 117, 35, 117, 117, 117, 117, 117, 117, 35, 117, 35, (143,316): 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 117, (143,328): 117, 117, 117, 117, 117, 35, 117, 117, 232, 232, 232, (143,339): 232, 232, 128, 128, 117, 146, 220, 105, 222, 224, 108, (143,350): 12, 222, 137, 156, 50, 108, 91, 49, 100, 63, 195, 2, 252, (143,363): 253, 79, 2, 156, 156, 100, 100, 51, 100, 187, 180, 97, (144,0): 75, 16, 151, 16, 238, 16, 189, 151, 151, 56, 151, 75, 92, (144,13): 7, 228, 6, 215, 215, 7, 237, 45, 89, 214, 93, 252, 187, (144,26): 180, 66, 66, 27, 37, 99, 108, 63, 63, 108, 220, 2, 27, (144,39): 104, 37, 226, 93, 231, 20, 103, 76, 243, 251, 58, 84, 142, (144,52): 84, 188, 58, 76, 103, 31, 76, 20, 228, 209, 45, 23, 38, (144,65): 233, 20, 60, 194, 74, 228, 20, 237, 231, 38, 185, 18, 186, (144,78): 116, 3, 156, 14, 100, 156, 125, 66, 219, 125, 125, 125, (144,90): 103, 241, 62, 102, 62, 251, 113, 125, 71, 113, 113, 113, (144,102): 103, 251, 76, 213, 213, 251, 102, 250, 250, 60, 213, 213, (144,114): 213, 103, 113, 113, 120, 120, 201, 119, 201, 117, 201, (144,125): 117, 201, 117, 35, 35, 119, 201, 119, 119, 119, 145, 201, (144,137): 201, 201, 201, 117, 201, 201, 201, 120, 201, 120, 120, (144,148): 55, 113, 103, 145, 71, 145, 55, 120, 120, 145, 113, 102, (144,160): 103, 76, 213, 213, 254, 102, 250, 254, 7, 118, 163, 94, (144,172): 162, 122, 189, 197, 29, 158, 197, 158, 109, 109, 109, 13, (144,184): 126, 114, 167, 114, 255, 160, 112, 255, 112, 68, 218, (144,195): 200, 164, 127, 247, 112, 68, 166, 127, 68, 159, 127, 196, (144,207): 251, 201, 119, 201, 88, 140, 88, 140, 117, 117, 88, 140, (144,219): 117, 117, 35, 35, 201, 117, 119, 119, 117, 139, 119, 119, (144,231): 117, 201, 117, 117, 117, 117, 35, 119, 119, 117, 117, (144,242): 201, 117, 117, 117, 117, 117, 117, 117, 117, 201, 117, (144,253): 117, 117, 201, 117, 117, 117, 201, 117, 201, 117, 35, 35, (144,265): 35, 35, 35, 117, 201, 117, 35, 117, 117, 117, 117, 35, (144,277): 117, 117, 117, 35, 117, 117, 117, 117, 35, 117, 117, 201, (144,289): 117, 117, 117, 117, 35, 117, 35, 117, 117, 117, 139, 117, (144,301): 201, 117, 35, 117, 35, 117, 117, 35, 117, 35, 117, 35, (144,313): 35, 35, 117, 35, 35, 35, 35, 117, 201, 117, 35, 201, 117, (144,326): 35, 35, 119, 119, 119, 117, 117, 35, 119, 232, 11, 245, (144,338): 210, 128, 221, 128, 46, 128, 116, 116, 111, 116, 111, 46, (144,350): 133, 46, 146, 137, 176, 2, 141, 27, 49, 116, 63, 104, (144,362): 253, 49, 108, 156, 64, 180, 185, 142, 93, 25, 95, 28, 60, (145,0): 60, 149, 45, 59, 75, 4, 238, 16, 56, 238, 238, 29, 23, 23, (145,14): 39, 74, 211, 215, 209, 75, 189, 59, 84, 192, 187, 66, 185, (145,27): 66, 185, 219, 180, 175, 104, 137, 121, 123, 183, 70, 121, (145,39): 8, 252, 25, 95, 25, 58, 20, 233, 76, 102, 153, 192, 196, (145,52): 198, 198, 58, 233, 236, 243, 243, 243, 31, 23, 29, 248, (145,64): 149, 194, 20, 58, 196, 231, 228, 24, 60, 28, 66, 79, 33, (145,77): 33, 221, 186, 125, 156, 14, 66, 195, 66, 195, 125, 125, (145,89): 219, 219, 103, 241, 251, 38, 103, 113, 71, 71, 71, 71, 71, (145,102): 113, 76, 113, 113, 76, 76, 76, 251, 102, 102, 250, 60, (145,114): 250, 20, 76, 71, 120, 145, 119, 201, 119, 117, 201, 35, (145,126): 117, 35, 35, 201, 35, 35, 119, 201, 119, 119, 201, 35, (145,138): 201, 117, 201, 201, 119, 119, 119, 201, 119, 55, 120, (145,149): 102, 60, 107, 103, 120, 145, 6, 120, 71, 251, 153, 101, (145,161): 213, 113, 173, 113, 254, 101, 101, 163, 7, 94, 165, 198, (145,173): 165, 188, 159, 165, 162, 158, 112, 112, 167, 109, 126, (145,184): 13, 150, 227, 126, 109, 167, 160, 167, 191, 109, 98, 112, (145,196): 159, 164, 112, 158, 191, 40, 109, 109, 159, 127, 196, (145,207): 113, 117, 117, 117, 140, 117, 117, 35, 35, 117, 117, 117, (145,219): 117, 117, 117, 117, 117, 117, 119, 55, 117, 117, 119, (145,230): 119, 117, 35, 117, 35, 117, 35, 117, 128, 119, 117, 117, (145,242): 117, 117, 117, 35, 117, 35, 117, 35, 117, 117, 117, 35, (145,254): 117, 117, 35, 35, 117, 35, 35, 117, 35, 117, 35, 35, 35, (145,267): 117, 35, 117, 117, 139, 35, 117, 139, 35, 117, 117, 35, (145,279): 117, 117, 35, 117, 117, 117, 139, 35, 117, 117, 117, 117, (145,291): 117, 35, 117, 117, 117, 139, 117, 117, 117, 35, 117, 117, (145,303): 201, 117, 117, 35, 117, 117, 139, 117, 117, 35, 35, 117, (145,315): 35, 35, 117, 201, 117, 35, 117, 35, 117, 117, 35, 35, (145,327): 117, 117, 117, 35, 35, 35, 35, 35, 245, 35, 224, 128, (145,339): 221, 224, 11, 72, 133, 182, 111, 12, 182, 12, 137, 22, (145,351): 182, 105, 253, 175, 105, 180, 50, 104, 253, 183, 2, 63, (145,363): 2, 181, 63, 253, 175, 100, 55, 194, 192, 178, 207, 185, (146,0): 20, 20, 60, 74, 7, 60, 74, 45, 238, 206, 75, 238, 237, 149, (146,14): 60, 149, 115, 75, 149, 39, 74, 207, 207, 192, 62, 66, 185, (146,27): 195, 79, 14, 187, 242, 104, 187, 2, 2, 187, 183, 187, 241, (146,40): 62, 24, 188, 45, 23, 74, 31, 213, 113, 251, 102, 219, 153, (146,53): 153, 102, 71, 236, 243, 233, 76, 20, 58, 45, 238, 237, (146,65): 142, 20, 194, 233, 60, 28, 207, 62, 24, 231, 219, 128, 33, (146,78): 186, 186, 221, 195, 66, 66, 125, 219, 125, 185, 125, 125, (146,90): 125, 219, 219, 38, 219, 219, 113, 71, 71, 120, 120, 71, (146,102): 71, 71, 71, 113, 71, 113, 219, 76, 76, 251, 60, 60, 163, (146,115): 228, 219, 6, 119, 55, 201, 119, 201, 35, 35, 117, 201, (146,127): 117, 35, 35, 35, 201, 117, 201, 119, 201, 119, 35, 139, (146,139): 201, 35, 201, 119, 119, 55, 117, 201, 120, 103, 60, 196, (146,151): 153, 250, 76, 120, 71, 76, 250, 58, 75, 196, 76, 6, 107, (146,164): 254, 76, 251, 102, 159, 163, 142, 159, 60, 163, 196, 163, (146,176): 127, 68, 112, 159, 68, 167, 98, 255, 255, 13, 150, 13, (146,188): 65, 40, 68, 67, 112, 68, 127, 127, 159, 200, 164, 112, (146,200): 109, 164, 67, 217, 159, 250, 102, 55, 140, 117, 140, 117, (146,212): 117, 117, 117, 119, 35, 117, 140, 117, 201, 117, 35, 117, (146,224): 201, 119, 119, 201, 117, 119, 119, 117, 35, 35, 117, 117, (146,236): 35, 35, 35, 35, 117, 117, 35, 117, 35, 117, 117, 117, (146,248): 117, 117, 35, 117, 117, 117, 35, 117, 35, 117, 35, 35, (146,260): 117, 35, 35, 35, 35, 117, 201, 117, 35, 117, 117, 117, (146,272): 117, 117, 117, 117, 117, 35, 139, 117, 117, 117, 35, 117, (146,284): 117, 117, 117, 117, 35, 117, 35, 117, 117, 35, 117, 117, (146,296): 117, 117, 117, 117, 35, 117, 35, 117, 117, 35, 117, 117, (146,308): 35, 117, 117, 35, 117, 201, 117, 35, 117, 35, 117, 35, (146,320): 35, 35, 35, 35, 35, 35, 35, 35, 245, 117, 35, 232, 33, (146,333): 232, 33, 128, 128, 128, 224, 49, 182, 49, 182, 50, 78, (146,345): 124, 34, 12, 12, 90, 12, 181, 49, 91, 123, 156, 105, 183, (146,358): 121, 253, 180, 253, 50, 64, 183, 66, 63, 252, 178, 99, (146,370): 70, 180, 233, 99, 231, (147,0): 20, 233, 213, 233, 243, 71, 213, 228, 31, 74, 45, 23, 60, (147,13): 149, 23, 4, 4, 83, 149, 228, 45, 189, 84, 28, 185, 204, (147,26): 232, 79, 128, 14, 180, 2, 104, 187, 187, 108, 66, 241, (147,38): 241, 204, 233, 20, 231, 237, 83, 83, 43, 206, 101, 101, (147,50): 250, 113, 76, 173, 71, 236, 76, 76, 194, 76, 236, 20, 20, (147,63): 74, 237, 15, 24, 74, 233, 194, 74, 237, 24, 58, 187, 14, (147,76): 186, 79, 3, 186, 185, 125, 195, 125, 186, 125, 185, 55, (147,88): 185, 71, 55, 71, 71, 219, 219, 243, 125, 71, 71, 120, 120, (147,101): 120, 120, 120, 120, 71, 71, 71, 113, 113, 219, 113, 102, (147,113): 102, 102, 251, 113, 120, 145, 55, 55, 201, 35, 201, 201, (147,125): 117, 35, 35, 201, 117, 117, 117, 201, 117, 35, 117, 139, (147,137): 201, 117, 139, 35, 201, 119, 55, 201, 119, 55, 120, 103, (147,149): 194, 163, 194, 60, 103, 6, 113, 103, 194, 192, 59, 196, (147,161): 102, 76, 254, 102, 102, 101, 102, 250, 163, 163, 163, (147,172): 250, 163, 196, 163, 218, 159, 112, 159, 164, 98, 112, 67, (147,184): 112, 167, 255, 69, 244, 67, 200, 164, 190, 200, 218, 159, (147,196): 112, 127, 164, 218, 112, 166, 68, 148, 159, 102, 113, (147,207): 201, 201, 117, 117, 140, 117, 140, 117, 117, 117, 140, (147,218): 117, 117, 117, 119, 119, 119, 117, 119, 35, 201, 117, (147,229): 119, 119, 117, 35, 35, 35, 35, 35, 117, 117, 117, 117, (147,241): 201, 117, 117, 117, 117, 35, 117, 201, 117, 117, 35, 117, (147,253): 35, 117, 117, 117, 35, 35, 117, 35, 35, 35, 117, 35, 117, (147,266): 35, 117, 117, 35, 117, 117, 201, 117, 117, 201, 117, 117, (147,278): 117, 117, 35, 117, 117, 201, 117, 35, 117, 35, 117, 117, (147,290): 117, 35, 117, 117, 201, 117, 117, 139, 35, 117, 35, 117, (147,302): 35, 35, 117, 117, 139, 35, 117, 117, 35, 117, 117, 35, (147,314): 117, 35, 35, 35, 35, 117, 35, 35, 35, 35, 117, 35, 117, (147,327): 35, 117, 117, 35, 33, 33, 221, 79, 46, 72, 72, 116, 138, (147,340): 253, 78, 78, 138, 105, 137, 181, 91, 146, 50, 105, 176, (147,352): 50, 187, 121, 99, 178, 121, 121, 178, 104, 108, 253, 14, (147,364): 63, 50, 63, 121, 8, 104, 70, 33, 186, 28, 104, (148,0): 243, 38, 243, 243, 243, 233, 243, 71, 236, 233, 196, 60, (148,12): 31, 196, 237, 110, 209, 237, 7, 7, 238, 248, 237, 38, 24, (148,25): 241, 232, 100, 108, 18, 79, 66, 14, 14, 241, 204, 55, 79, (148,38): 219, 243, 71, 60, 23, 83, 115, 212, 212, 212, 4, 4, 196, (148,51): 118, 76, 76, 243, 71, 243, 243, 194, 38, 236, 243, 76, (148,63): 153, 58, 237, 142, 198, 24, 243, 233, 207, 58, 180, 28, (148,75): 14, 125, 186, 186, 221, 79, 186, 125, 185, 185, 55, 79, (148,87): 119, 33, 55, 33, 55, 71, 71, 71, 125, 120, 55, 120, 55, (148,100): 120, 55, 120, 120, 120, 120, 120, 120, 113, 71, 113, 113, (148,112): 76, 113, 76, 113, 243, 71, 120, 120, 201, 119, 201, 35, (148,124): 117, 201, 117, 35, 117, 117, 140, 117, 140, 140, 139, (148,135): 140, 117, 139, 139, 117, 201, 201, 119, 55, 201, 55, 120, (148,147): 120, 71, 113, 219, 76, 251, 76, 113, 107, 113, 113, 102, (148,159): 142, 196, 250, 76, 76, 102, 159, 94, 94, 163, 163, 163, (148,171): 163, 196, 196, 196, 196, 127, 98, 158, 112, 68, 112, 68, (148,183): 166, 67, 68, 167, 85, 69, 217, 190, 218, 68, 164, 200, (148,195): 159, 127, 162, 112, 164, 68, 217, 112, 159, 196, 102, (148,206): 201, 140, 35, 35, 35, 117, 117, 140, 117, 140, 117, 117, (148,218): 140, 117, 35, 119, 119, 119, 117, 139, 35, 117, 139, 117, (148,230): 201, 117, 35, 201, 117, 117, 117, 117, 117, 117, 117, (148,241): 117, 117, 35, 117, 35, 117, 117, 117, 117, 35, 117, 117, (148,253): 117, 35, 117, 201, 35, 117, 35, 35, 117, 35, 201, 117, (148,265): 35, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, 117, (148,277): 117, 117, 201, 117, 117, 117, 117, 117, 117, 117, 139, (148,288): 117, 35, 139, 117, 117, 117, 117, 117, 117, 117, 117, (148,299): 117, 201, 117, 35, 117, 35, 117, 117, 117, 117, 117, 139, (148,311): 117, 35, 35, 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, (148,324): 35, 35, 35, 128, 128, 128, 128, 46, 116, 46, 186, 146, (148,336): 182, 182, 182, 50, 182, 72, 146, 234, 146, 3, 223, 176, (148,348): 91, 137, 137, 177, 253, 79, 220, 183, 2, 175, 175, 253, (148,360): 27, 70, 252, 175, 99, 70, 178, 37, 253, 108, 180, 195, (148,372): 100, 108, 183, (149,0): 236, 236, 236, 55, 236, 243, 103, 71, 243, 113, 20, 20, 60, (149,13): 60, 20, 233, 39, 83, 59, 75, 16, 248, 59, 226, 192, 63, (149,26): 66, 252, 70, 49, 18, 66, 234, 204, 18, 204, 38, 28, 231, (149,39): 233, 20, 149, 45, 4, 4, 43, 69, 56, 56, 115, 47, 149, 74, (149,53): 149, 20, 243, 243, 38, 62, 243, 120, 243, 62, 142, 24, (149,65): 237, 231, 15, 194, 55, 125, 241, 142, 241, 241, 14, 66, (149,77): 195, 49, 186, 221, 120, 33, 33, 33, 33, 55, 33, 185, 120, (149,90): 55, 55, 33, 55, 55, 55, 119, 119, 201, 119, 201, 119, 201, (149,103): 55, 55, 119, 120, 55, 120, 120, 120, 71, 113, 103, 113, (149,115): 113, 113, 71, 120, 201, 55, 201, 119, 201, 117, 201, 117, (149,127): 201, 117, 140, 117, 139, 140, 117, 117, 117, 201, 117, (149,138): 139, 35, 201, 119, 119, 201, 119, 113, 125, 113, 219, (149,149): 113, 113, 76, 113, 113, 103, 102, 251, 71, 71, 76, 102, (149,161): 251, 76, 76, 254, 153, 110, 110, 142, 196, 159, 110, 188, (149,173): 188, 127, 110, 247, 162, 165, 94, 68, 112, 68, 164, 68, (149,185): 112, 68, 167, 158, 197, 98, 68, 112, 112, 159, 101, 159, (149,197): 162, 158, 158, 164, 217, 148, 218, 163, 107, 140, 199, (149,208): 117, 117, 139, 117, 117, 117, 117, 117, 35, 201, 117, (149,219): 117, 35, 117, 117, 117, 139, 117, 139, 117, 139, 117, (149,230): 117, 117, 117, 35, 35, 35, 117, 117, 117, 117, 117, 35, (149,242): 117, 117, 117, 139, 117, 117, 35, 117, 117, 117, 139, 35, (149,254): 117, 117, 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, (149,266): 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, 35, (149,278): 117, 117, 117, 35, 117, 35, 117, 35, 117, 117, 117, 117, (149,290): 117, 117, 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, (149,302): 35, 201, 117, 117, 117, 117, 201, 117, 117, 117, 35, 117, (149,314): 201, 35, 117, 35, 35, 117, 119, 35, 35, 35, 35, 35, 128, (149,327): 35, 128, 11, 221, 3, 195, 80, 50, 181, 105, 124, 50, 138, (149,340): 138, 234, 80, 72, 137, 108, 78, 72, 156, 156, 91, 121, (149,352): 70, 253, 28, 156, 185, 8, 27, 180, 63, 185, 108, 70, 27, (149,365): 121, 220, 100, 253, 121, 63, 177, 253, 175, 2, (150,0): 125, 185, 55, 139, 201, 55, 71, 71, 71, 201, 103, 103, 74, (150,13): 194, 102, 163, 251, 149, 39, 74, 229, 151, 248, 25, 28, (150,25): 24, 28, 108, 252, 234, 63, 66, 18, 18, 204, 204, 18, 38, (150,38): 100, 74, 207, 237, 23, 148, 39, 47, 13, 212, 212, 56, 85, (150,51): 83, 83, 238, 74, 243, 233, 233, 38, 204, 71, 185, 194, 24, (150,64): 142, 192, 194, 231, 20, 38, 38, 185, 100, 125, 66, 14, (150,76): 156, 100, 63, 195, 185, 221, 55, 33, 55, 33, 119, 55, 55, (150,89): 119, 55, 119, 55, 119, 119, 119, 201, 119, 119, 35, 201, (150,101): 119, 201, 201, 119, 201, 119, 201, 120, 55, 185, 120, (150,112): 103, 103, 103, 76, 113, 120, 120, 119, 119, 201, 119, (150,123): 201, 35, 117, 201, 117, 117, 201, 117, 117, 117, 117, (150,134): 201, 35, 119, 119, 35, 201, 119, 201, 55, 55, 120, 219, (150,146): 103, 103, 194, 101, 194, 196, 250, 251, 254, 62, 102, 76, (150,158): 113, 219, 145, 120, 107, 103, 251, 102, 163, 163, 159, (150,169): 196, 142, 198, 189, 165, 110, 94, 94, 98, 122, 98, 127, (150,181): 112, 68, 112, 164, 68, 68, 159, 112, 158, 98, 127, 127, (150,193): 112, 127, 159, 159, 247, 165, 197, 159, 67, 127, 127, (150,204): 250, 113, 119, 119, 140, 117, 117, 117, 139, 35, 201, (150,215): 117, 119, 35, 117, 117, 117, 117, 117, 140, 117, 139, (150,226): 140, 117, 117, 139, 117, 139, 117, 117, 117, 35, 35, 117, (150,238): 117, 117, 117, 117, 35, 117, 117, 117, 117, 35, 117, 117, (150,250): 201, 117, 117, 117, 117, 35, 117, 35, 117, 35, 35, 117, (150,262): 35, 117, 117, 117, 35, 117, 35, 139, 117, 140, 35, 117, (150,274): 117, 117, 35, 139, 117, 117, 117, 117, 139, 117, 117, 35, (150,286): 139, 117, 201, 117, 117, 201, 117, 117, 117, 117, 139, (150,297): 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 117, 117, (150,309): 117, 35, 117, 35, 117, 35, 117, 35, 201, 117, 35, 35, 35, (150,322): 35, 35, 128, 11, 35, 11, 11, 221, 186, 80, 80, 182, 138, (150,335): 91, 176, 176, 222, 105, 137, 137, 91, 50, 105, 108, 108, (150,347): 64, 223, 252, 123, 70, 64, 175, 104, 63, 241, 100, 66, 8, (150,360): 104, 14, 195, 51, 66, 14, 14, 14, 180, 108, 195, 27, 123, (150,373): 49, 186, (151,0): 71, 236, 71, 219, 185, 55, 55, 71, 55, 55, 103, 120, 113, (151,13): 120, 113, 194, 254, 20, 76, 243, 20, 74, 207, 15, 93, 226, (151,26): 175, 231, 27, 63, 175, 104, 2, 234, 18, 79, 204, 14, 194, (151,39): 241, 228, 7, 74, 209, 215, 32, 211, 85, 191, 212, 212, (151,51): 212, 115, 29, 74, 243, 204, 233, 236, 219, 38, 219, 153, (151,63): 28, 74, 194, 55, 58, 142, 66, 236, 245, 71, 33, 195, 66, (151,76): 195, 108, 63, 195, 125, 185, 185, 33, 33, 119, 35, 35, (151,88): 119, 119, 119, 119, 55, 55, 55, 119, 119, 119, 201, 119, (151,100): 35, 35, 35, 201, 119, 119, 119, 55, 119, 120, 120, 71, (151,112): 103, 251, 251, 103, 71, 145, 119, 145, 55, 201, 35, 201, (151,124): 35, 201, 117, 201, 201, 117, 201, 117, 201, 35, 119, 119, (151,136): 119, 55, 119, 119, 119, 55, 55, 55, 120, 103, 76, 251, (151,148): 74, 142, 196, 188, 58, 250, 103, 76, 113, 71, 120, 120, (151,160): 113, 145, 113, 251, 254, 251, 74, 94, 142, 101, 102, 163, (151,172): 247, 142, 163, 94, 94, 162, 29, 197, 98, 247, 127, 112, (151,184): 112, 112, 68, 68, 127, 68, 159, 159, 200, 218, 159, 68, (151,196): 127, 159, 159, 112, 127, 101, 127, 127, 103, 139, 201, (151,207): 140, 117, 117, 140, 117, 117, 117, 117, 35, 117, 117, (151,218): 117, 117, 139, 117, 117, 117, 139, 35, 117, 201, 117, (151,229): 139, 117, 117, 117, 117, 117, 35, 35, 117, 117, 88, 201, (151,241): 117, 117, 117, 201, 117, 117, 139, 35, 117, 117, 117, (151,252): 117, 117, 35, 117, 35, 117, 35, 201, 117, 35, 35, 35, (151,264): 117, 35, 117, 117, 140, 117, 117, 117, 117, 117, 35, 117, (151,276): 117, 117, 117, 117, 35, 117, 117, 35, 117, 117, 117, 117, (151,288): 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, (151,299): 117, 35, 117, 35, 35, 117, 117, 117, 35, 117, 35, 117, (151,311): 117, 117, 35, 117, 35, 117, 35, 35, 117, 35, 35, 128, 35, (151,324): 35, 128, 11, 128, 46, 46, 80, 182, 80, 3, 80, 203, 222, (151,337): 22, 49, 80, 222, 105, 176, 63, 64, 49, 123, 2, 8, 220, (151,350): 108, 63, 99, 100, 14, 219, 66, 2, 100, 100, 226, 187, (151,362): 157, 187, 185, 14, 192, 123, 121, 123, 186, 35, 195, 108, (151,374): 63, (152,0): 178, 214, 249, 58, 251, 219, 71, 201, 55, 201, 119, 201, (152,12): 219, 120, 120, 120, 113, 120, 76, 120, 243, 71, 231, 58, (152,24): 89, 51, 252, 100, 180, 231, 14, 187, 253, 51, 108, 79, 79, (152,37): 18, 18, 204, 241, 233, 20, 228, 213, 213, 73, 235, 211, (152,49): 43, 43, 29, 115, 151, 237, 55, 236, 231, 252, 24, 241, (152,61): 241, 194, 153, 14, 24, 28, 153, 28, 38, 185, 119, 79, 185, (152,74): 125, 186, 195, 14, 156, 185, 125, 185, 119, 35, 119, 35, (152,86): 119, 117, 201, 35, 119, 201, 232, 119, 119, 119, 119, 119, (152,98): 232, 119, 119, 119, 119, 35, 201, 35, 201, 55, 33, 120, (152,110): 185, 120, 113, 60, 194, 103, 71, 71, 145, 201, 119, 201, (152,122): 119, 201, 119, 119, 119, 119, 140, 139, 201, 117, 117, (152,133): 117, 35, 119, 35, 185, 120, 55, 201, 119, 120, 145, 120, (152,145): 113, 251, 102, 103, 102, 163, 110, 47, 84, 196, 113, 201, (152,157): 219, 251, 113, 113, 71, 113, 103, 103, 251, 102, 194, (152,168): 163, 102, 102, 163, 196, 163, 196, 196, 94, 122, 189, 29, (152,180): 122, 109, 112, 127, 247, 127, 200, 159, 247, 127, 101, (152,191): 68, 200, 200, 101, 101, 118, 118, 101, 68, 159, 73, 68, (152,203): 196, 113, 140, 117, 117, 117, 117, 117, 117, 117, 117, (152,214): 117, 117, 117, 117, 139, 117, 117, 117, 139, 117, 117, (152,225): 139, 139, 117, 117, 117, 139, 117, 35, 117, 35, 117, 117, (152,237): 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, 117, (152,248): 117, 117, 35, 117, 35, 117, 139, 117, 117, 35, 117, 117, (152,260): 117, 117, 117, 35, 117, 117, 35, 117, 201, 117, 117, 117, (152,272): 35, 139, 117, 117, 201, 117, 117, 35, 139, 117, 117, 117, (152,284): 35, 117, 117, 35, 117, 35, 117, 35, 117, 35, 139, 117, (152,296): 117, 35, 117, 117, 117, 117, 117, 117, 201, 35, 35, 35, (152,308): 35, 117, 201, 35, 117, 117, 117, 117, 117, 117, 117, 117, (152,320): 210, 117, 35, 11, 11, 128, 46, 46, 224, 80, 34, 137, 124, (152,333): 138, 22, 80, 80, 222, 181, 138, 128, 80, 220, 186, 156, (152,345): 97, 2, 27, 70, 234, 14, 66, 100, 8, 180, 14, 180, 180, (152,358): 70, 28, 214, 2, 63, 8, 24, 187, 99, 178, 180, 180, 195, (152,371): 104, 14, 241, 8, (153,0): 214, 53, 95, 95, 95, 62, 241, 219, 125, 120, 185, 201, 125, (153,13): 119, 185, 119, 55, 201, 236, 55, 71, 219, 207, 242, 229, (153,25): 242, 99, 51, 2, 51, 180, 66, 108, 253, 104, 63, 66, 79, (153,38): 185, 204, 125, 243, 38, 76, 6, 6, 92, 73, 39, 82, 10, 47, (153,52): 75, 29, 58, 236, 55, 241, 231, 28, 62, 62, 100, 153, 24, (153,65): 153, 219, 66, 28, 100, 100, 66, 125, 195, 195, 18, 195, (153,77): 66, 195, 186, 185, 79, 119, 35, 35, 119, 201, 119, 117, (153,89): 139, 35, 35, 35, 139, 119, 139, 119, 119, 119, 119, 119, (153,101): 119, 119, 119, 119, 119, 119, 55, 55, 185, 185, 71, 103, (153,113): 153, 60, 103, 71, 120, 119, 201, 55, 119, 201, 119, 201, (153,125): 119, 201, 119, 201, 119, 119, 201, 201, 119, 201, 117, (153,136): 55, 33, 120, 55, 119, 55, 120, 145, 219, 251, 103, 76, (153,148): 113, 76, 31, 196, 74, 163, 60, 251, 113, 145, 71, 103, (153,160): 120, 71, 113, 103, 251, 103, 251, 102, 102, 102, 194, (153,171): 163, 194, 163, 196, 162, 198, 122, 189, 56, 56, 122, 165, (153,183): 109, 98, 112, 164, 159, 162, 247, 159, 218, 159, 164, (153,194): 164, 164, 163, 118, 101, 159, 68, 218, 7, 163, 120, 139, (153,206): 140, 117, 117, 140, 117, 117, 139, 117, 117, 139, 117, (153,217): 117, 117, 117, 117, 117, 117, 139, 117, 139, 117, 139, (153,228): 117, 139, 117, 117, 139, 35, 117, 117, 117, 117, 35, 117, (153,240): 35, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (153,252): 117, 117, 117, 117, 35, 117, 117, 117, 117, 201, 117, (153,263): 117, 139, 35, 117, 117, 117, 117, 35, 117, 117, 117, 117, (153,275): 117, 117, 117, 117, 117, 117, 117, 117, 117, 139, 117, (153,286): 35, 117, 117, 117, 117, 35, 117, 117, 117, 117, 117, 139, (153,298): 35, 117, 201, 117, 35, 117, 35, 117, 117, 201, 117, 35, (153,310): 117, 35, 140, 117, 117, 117, 35, 35, 35, 35, 33, 33, 221, (153,323): 79, 221, 116, 186, 3, 182, 49, 80, 80, 80, 222, 22, 182, (153,336): 138, 146, 80, 111, 46, 146, 105, 181, 104, 104, 180, 195, (153,348): 187, 18, 180, 66, 8, 100, 53, 37, 70, 246, 241, 63, 187, (153,361): 14, 104, 157, 8, 66, 66, 187, 51, 51, 153, 226, 226, 175, (153,374): 37, (154,0): 15, 152, 214, 25, 95, 178, 193, 28, 125, 201, 55, 119, 185, (154,13): 119, 185, 201, 55, 201, 120, 236, 71, 236, 233, 28, 237, (154,25): 70, 214, 95, 51, 204, 195, 66, 66, 2, 176, 63, 156, 18, (154,38): 185, 66, 185, 219, 233, 103, 71, 6, 243, 213, 106, 73, (154,50): 209, 209, 237, 75, 207, 71, 33, 18, 241, 100, 100, 62, (154,62): 194, 28, 142, 153, 219, 219, 241, 241, 66, 185, 195, 66, (154,74): 66, 195, 195, 66, 195, 185, 185, 119, 35, 201, 35, 119, (154,86): 35, 35, 201, 117, 35, 35, 35, 201, 35, 35, 119, 35, 35, (154,99): 119, 119, 119, 119, 119, 119, 119, 119, 55, 120, 120, 185, (154,111): 71, 103, 60, 194, 219, 71, 120, 145, 119, 201, 55, 55, (154,123): 201, 55, 55, 55, 55, 55, 120, 55, 201, 119, 119, 119, (154,135): 117, 119, 55, 55, 120, 120, 145, 145, 120, 113, 113, 113, (154,147): 76, 76, 60, 188, 59, 189, 23, 113, 145, 71, 113, 185, (154,159): 145, 125, 71, 113, 125, 76, 103, 102, 194, 194, 194, 101, (154,171): 194, 163, 196, 94, 198, 165, 122, 29, 189, 151, 56, 197, (154,183): 158, 165, 109, 127, 166, 127, 98, 112, 164, 164, 166, 68, (154,195): 68, 159, 101, 101, 164, 127, 218, 101, 107, 201, 140, (154,206): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (154,217): 139, 117, 117, 140, 117, 117, 117, 117, 139, 117, 139, (154,228): 117, 139, 117, 139, 117, 117, 35, 117, 35, 117, 117, 117, (154,240): 35, 117, 35, 117, 117, 117, 117, 117, 139, 117, 117, 139, (154,252): 117, 201, 117, 117, 117, 35, 117, 35, 117, 117, 117, 117, (154,264): 117, 117, 117, 35, 117, 117, 117, 35, 117, 201, 117, 117, (154,276): 35, 117, 35, 117, 201, 117, 35, 117, 117, 117, 117, 35, (154,288): 117, 201, 117, 117, 35, 117, 201, 117, 117, 117, 117, (154,299): 117, 117, 117, 117, 117, 35, 35, 117, 117, 35, 35, 117, (154,311): 35, 35, 35, 201, 35, 35, 35, 35, 35, 128, 117, 128, 221, (154,324): 46, 186, 3, 49, 50, 80, 156, 222, 182, 133, 80, 182, 182, (154,337): 146, 182, 49, 182, 46, 49, 50, 181, 2, 104, 63, 14, 14, (154,350): 24, 104, 175, 70, 28, 99, 175, 241, 252, 195, 142, 63, (154,362): 192, 99, 253, 14, 35, 180, 70, 157, 187, 93, 8, 157, 95, (155,0): 24, 110, 246, 84, 198, 214, 214, 226, 194, 185, 55, 185, (155,12): 185, 55, 185, 185, 119, 245, 35, 79, 204, 125, 71, 38, (155,24): 207, 28, 15, 249, 242, 14, 66, 33, 49, 100, 63, 63, 2, 63, (155,38): 49, 125, 125, 241, 62, 233, 76, 243, 173, 41, 92, 106, (155,50): 213, 213, 60, 15, 207, 204, 18, 204, 241, 100, 100, 194, (155,62): 100, 194, 62, 153, 241, 241, 66, 33, 128, 88, 221, 18, 49, (155,75): 66, 195, 195, 72, 79, 55, 119, 35, 117, 35, 35, 119, 119, (155,88): 117, 117, 117, 140, 139, 117, 117, 117, 117, 117, 117, (155,99): 117, 35, 35, 201, 119, 201, 55, 119, 119, 55, 120, 185, (155,111): 71, 125, 102, 251, 113, 71, 71, 120, 120, 55, 145, 55, (155,123): 55, 55, 55, 119, 120, 201, 145, 120, 55, 119, 119, 119, (155,135): 201, 55, 55, 71, 243, 71, 236, 71, 76, 254, 251, 251, 76, (155,148): 102, 60, 94, 75, 59, 165, 110, 251, 120, 103, 103, 120, (155,160): 219, 71, 55, 120, 120, 103, 194, 196, 142, 196, 196, 194, (155,172): 102, 196, 198, 165, 152, 122, 122, 189, 151, 115, 165, (155,183): 158, 158, 109, 112, 68, 164, 112, 217, 167, 68, 166, 159, (155,195): 67, 127, 68, 164, 159, 68, 73, 92, 145, 139, 139, 201, (155,207): 88, 117, 139, 117, 117, 139, 117, 117, 139, 117, 117, (155,218): 117, 117, 117, 117, 117, 117, 139, 117, 139, 117, 139, (155,229): 117, 117, 139, 117, 139, 117, 117, 117, 35, 117, 35, 117, (155,241): 117, 117, 139, 35, 117, 201, 117, 117, 117, 117, 117, (155,252): 117, 117, 117, 35, 117, 117, 35, 117, 117, 35, 117, 117, (155,264): 201, 117, 35, 117, 117, 35, 117, 117, 117, 117, 117, 35, (155,276): 117, 117, 117, 117, 117, 117, 117, 117, 201, 117, 35, (155,287): 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, (155,299): 117, 35, 117, 35, 117, 35, 117, 35, 35, 35, 117, 35, 35, (155,312): 35, 117, 35, 35, 35, 35, 35, 35, 221, 128, 221, 49, 220, (155,325): 50, 50, 78, 50, 50, 138, 124, 34, 138, 182, 22, 138, 222, (155,338): 49, 253, 64, 223, 183, 27, 187, 2, 187, 27, 252, 252, (155,350): 252, 157, 2, 99, 14, 180, 175, 175, 99, 175, 33, 100, 33, (155,363): 14, 180, 226, 66, 8, 38, 180, 153, 252, 25, 62, 241, (156,0): 188, 74, 142, 188, 58, 193, 193, 193, 93, 241, 119, 33, 79, (156,13): 119, 33, 185, 156, 219, 125, 219, 185, 55, 71, 233, 233, (156,25): 38, 100, 242, 229, 246, 24, 38, 66, 156, 100, 187, 175, (156,37): 93, 100, 125, 125, 103, 241, 103, 113, 71, 233, 251, 213, (156,49): 213, 41, 243, 233, 231, 28, 66, 18, 241, 14, 241, 241, (156,61): 194, 100, 194, 38, 28, 62, 241, 66, 33, 33, 128, 35, 116, (156,74): 66, 156, 66, 195, 79, 33, 119, 119, 201, 35, 201, 35, 119, (156,87): 35, 140, 140, 139, 88, 140, 117, 199, 117, 139, 117, 139, (156,99): 201, 117, 201, 35, 119, 119, 119, 201, 119, 119, 55, 120, (156,111): 120, 71, 103, 125, 120, 120, 120, 55, 120, 55, 120, 55, (156,123): 55, 55, 55, 120, 236, 120, 76, 103, 71, 119, 145, 33, 55, (156,136): 185, 185, 103, 251, 76, 6, 243, 20, 20, 228, 251, 107, (156,148): 243, 107, 228, 60, 247, 152, 75, 60, 113, 102, 251, 113, (156,160): 103, 185, 55, 119, 55, 113, 62, 163, 142, 188, 188, 196, (156,172): 250, 163, 188, 189, 152, 193, 193, 189, 56, 122, 191, (156,183): 122, 67, 68, 112, 112, 67, 112, 98, 167, 167, 67, 68, 67, (156,196): 127, 68, 159, 164, 73, 73, 254, 145, 199, 35, 117, 88, (156,208): 117, 117, 117, 117, 117, 117, 117, 117, 117, 140, 117, (156,219): 139, 117, 139, 117, 139, 117, 139, 35, 117, 139, 35, 139, (156,231): 35, 117, 35, 245, 139, 117, 117, 117, 117, 35, 117, 117, (156,243): 117, 117, 117, 117, 117, 35, 117, 201, 117, 117, 35, 117, (156,255): 117, 35, 139, 117, 117, 35, 117, 117, 117, 117, 117, 117, (156,267): 139, 117, 117, 139, 117, 35, 117, 117, 117, 35, 117, 201, (156,279): 117, 117, 35, 117, 117, 117, 117, 117, 35, 117, 35, 117, (156,291): 35, 139, 117, 117, 35, 117, 117, 117, 117, 117, 35, 139, (156,303): 117, 35, 35, 117, 35, 117, 35, 35, 117, 35, 35, 117, 117, (156,316): 35, 35, 35, 35, 128, 11, 224, 146, 156, 49, 80, 182, 108, (156,329): 133, 46, 146, 138, 138, 80, 156, 182, 181, 181, 183, 91, (156,341): 91, 187, 253, 183, 220, 18, 72, 99, 252, 253, 24, 186, (156,353): 241, 195, 125, 156, 100, 35, 14, 66, 33, 125, 66, 156, (156,365): 24, 14, 185, 35, 140, 140, 241, 192, 245, 140, (157,0): 74, 7, 198, 149, 58, 189, 89, 246, 25, 51, 18, 55, 79, 18, (157,14): 195, 63, 104, 183, 252, 252, 241, 232, 139, 204, 236, 71, (157,26): 60, 229, 226, 15, 28, 24, 219, 241, 14, 28, 187, 24, 156, (157,39): 219, 71, 125, 219, 71, 145, 71, 20, 7, 228, 213, 71, 145, (157,52): 219, 204, 241, 204, 79, 195, 241, 66, 241, 194, 60, 20, (157,64): 62, 100, 125, 185, 195, 219, 195, 186, 46, 195, 220, 108, (157,76): 100, 66, 185, 33, 55, 119, 119, 35, 119, 201, 35, 119, 35, (157,89): 119, 35, 35, 201, 35, 117, 117, 117, 35, 117, 201, 35, (157,101): 119, 119, 201, 35, 201, 201, 119, 201, 55, 55, 185, 120, (157,113): 219, 113, 120, 71, 120, 55, 55, 55, 55, 55, 55, 201, 55, (157,126): 71, 243, 20, 60, 60, 233, 120, 55, 120, 120, 185, 113, (157,138): 38, 233, 233, 76, 41, 213, 92, 102, 20, 213, 173, 6, 76, (157,151): 20, 149, 196, 74, 194, 194, 194, 194, 251, 125, 185, 120, (157,163): 120, 185, 71, 103, 194, 153, 188, 198, 152, 188, 188, (157,174): 162, 152, 157, 122, 122, 16, 29, 165, 158, 197, 109, 112, (157,186): 166, 164, 67, 67, 67, 166, 40, 96, 166, 164, 68, 68, 159, (157,199): 164, 218, 159, 215, 19, 139, 201, 117, 117, 117, 117, (157,210): 117, 140, 117, 139, 117, 139, 117, 117, 117, 117, 117, (157,221): 117, 117, 117, 139, 35, 139, 35, 139, 245, 35, 35, 117, (157,233): 245, 35, 117, 117, 117, 139, 117, 139, 35, 117, 35, 117, (157,245): 35, 117, 35, 117, 117, 117, 35, 117, 117, 35, 117, 117, (157,257): 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, 117, 201, (157,269): 117, 117, 117, 117, 35, 117, 35, 117, 117, 117, 35, 117, (157,281): 117, 35, 117, 35, 117, 139, 117, 117, 139, 117, 117, 117, (157,293): 117, 35, 117, 117, 117, 139, 35, 117, 117, 117, 117, 201, (157,305): 117, 35, 35, 117, 201, 117, 35, 35, 35, 35, 35, 117, 35, (157,318): 119, 128, 128, 11, 46, 186, 3, 186, 46, 116, 181, 63, (157,330): 146, 3, 50, 50, 80, 108, 138, 104, 141, 183, 2, 66, 220, (157,343): 156, 63, 180, 14, 234, 70, 180, 14, 2, 14, 180, 186, 180, (157,356): 185, 128, 125, 195, 185, 156, 195, 195, 185, 128, 35, (157,367): 108, 232, 18, 55, 18, 28, 33, 140, (158,0): 31, 213, 188, 45, 45, 248, 53, 84, 70, 229, 180, 204, 195, (158,13): 180, 108, 252, 63, 2, 104, 70, 24, 66, 236, 204, 194, 243, (158,26): 204, 237, 53, 25, 251, 28, 103, 38, 219, 125, 241, 241, (158,38): 103, 62, 185, 71, 120, 120, 145, 120, 101, 206, 23, 31, (158,50): 243, 236, 219, 33, 18, 186, 79, 18, 66, 241, 62, 62, 233, (158,63): 38, 62, 241, 55, 232, 125, 66, 49, 185, 49, 156, 50, 63, (158,76): 108, 14, 195, 125, 79, 55, 55, 55, 119, 119, 119, 201, 55, (158,89): 119, 119, 119, 33, 119, 119, 119, 201, 201, 119, 35, 201, (158,101): 119, 35, 201, 119, 201, 117, 201, 119, 201, 55, 120, 71, (158,113): 219, 113, 71, 125, 71, 201, 55, 201, 55, 55, 201, 145, (158,125): 185, 219, 20, 74, 237, 149, 228, 71, 71, 71, 185, 71, (158,137): 113, 103, 233, 31, 60, 209, 228, 7, 196, 74, 250, 243, 6, (158,150): 173, 213, 113, 213, 163, 110, 110, 153, 153, 153, 125, (158,161): 71, 185, 71, 71, 125, 103, 194, 163, 153, 94, 152, 122, (158,173): 152, 162, 188, 198, 157, 152, 122, 122, 75, 247, 98, 197, (158,185): 191, 67, 200, 190, 68, 166, 190, 166, 166, 166, 164, 190, (158,197): 164, 164, 68, 218, 148, 209, 145, 199, 119, 117, 117, (158,208): 117, 117, 117, 201, 117, 117, 117, 117, 117, 117, 139, (158,219): 117, 117, 117, 117, 117, 35, 139, 35, 139, 35, 232, 245, (158,231): 139, 35, 245, 117, 245, 35, 117, 117, 117, 117, 117, 117, (158,243): 117, 117, 117, 117, 117, 35, 117, 117, 117, 35, 117, 117, (158,255): 139, 117, 117, 201, 117, 117, 117, 35, 117, 117, 117, (158,266): 117, 117, 117, 117, 35, 117, 117, 139, 117, 117, 35, 117, (158,278): 117, 117, 35, 117, 117, 117, 117, 117, 117, 35, 117, 117, (158,290): 117, 201, 117, 117, 117, 35, 117, 201, 117, 117, 117, 35, (158,302): 117, 117, 117, 35, 117, 35, 35, 117, 35, 117, 35, 35, (158,314): 117, 35, 35, 119, 33, 33, 195, 80, 156, 182, 220, 80, 49, (158,327): 80, 186, 80, 3, 46, 3, 46, 111, 49, 63, 195, 156, 146, (158,340): 108, 108, 253, 108, 100, 183, 8, 104, 63, 2, 156, 252, (158,352): 183, 187, 14, 63, 14, 175, 252, 64, 187, 252, 66, 187, (158,364): 128, 35, 186, 241, 104, 123, 63, 117, 88, 18, 18, (159,0): 60, 213, 149, 75, 58, 151, 84, 58, 100, 226, 207, 18, 116, (159,13): 100, 66, 220, 63, 220, 234, 104, 2, 28, 18, 71, 233, 62, (159,26): 62, 194, 188, 249, 194, 153, 233, 66, 219, 103, 100, 194, (159,38): 241, 241, 71, 120, 55, 145, 55, 113, 153, 198, 95, 58, 62, (159,51): 71, 241, 79, 79, 79, 66, 195, 195, 194, 100, 38, 71, 236, (159,64): 185, 38, 79, 221, 66, 146, 66, 46, 156, 156, 156, 14, 14, (159,77): 66, 66, 204, 55, 185, 33, 119, 119, 35, 119, 119, 119, (159,89): 119, 119, 119, 35, 35, 119, 35, 35, 35, 139, 35, 35, 35, (159,102): 139, 117, 119, 35, 201, 201, 201, 55, 55, 55, 71, 219, (159,114): 113, 125, 113, 125, 145, 55, 55, 55, 55, 55, 120, 243, (159,126): 62, 60, 237, 47, 23, 60, 243, 219, 71, 120, 219, 103, (159,138): 103, 228, 149, 206, 148, 7, 7, 74, 7, 250, 173, 173, 251, (159,151): 31, 59, 110, 194, 60, 142, 142, 194, 103, 219, 185, 120, (159,163): 125, 125, 251, 194, 196, 153, 194, 163, 110, 94, 188, (159,174): 247, 198, 152, 165, 198, 152, 29, 162, 68, 159, 167, 13, (159,186): 98, 190, 166, 67, 166, 166, 68, 40, 112, 68, 190, 218, (159,198): 164, 77, 73, 112, 73, 145, 199, 139, 117, 117, 117, 139, (159,210): 117, 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, (159,221): 117, 139, 117, 35, 139, 35, 35, 139, 35, 139, 35, 245, (159,233): 35, 139, 245, 35, 245, 35, 117, 35, 117, 35, 117, 139, (159,245): 35, 117, 139, 117, 117, 35, 117, 139, 35, 117, 117, 35, (159,257): 117, 117, 117, 139, 35, 117, 117, 201, 117, 35, 117, 35, (159,269): 117, 117, 201, 117, 117, 117, 117, 117, 139, 35, 117, (159,280): 117, 139, 35, 117, 201, 117, 35, 117, 117, 35, 117, 117, (159,292): 117, 117, 35, 117, 117, 117, 117, 117, 35, 117, 117, 117, (159,304): 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, 117, 35, 35, (159,317): 119, 33, 33, 128, 116, 3, 186, 116, 3, 146, 146, 3, 156, (159,330): 3, 186, 108, 78, 108, 78, 63, 105, 175, 97, 180, 108, (159,342): 108, 63, 180, 156, 27, 128, 18, 180, 66, 72, 70, 187, (159,354): 195, 108, 123, 37, 156, 104, 183, 175, 156, 180, 214, 97, (159,366): 123, 156, 18, 63, 14, 14, 195, 180, 187, (160,0): 113, 213, 20, 60, 188, 188, 74, 231, 237, 241, 100, 231, (160,12): 204, 185, 14, 66, 14, 195, 195, 66, 180, 192, 231, 194, (160,24): 100, 228, 38, 60, 246, 25, 246, 100, 219, 14, 219, 125, (160,36): 241, 153, 93, 58, 142, 219, 120, 201, 120, 219, 113, 28, (160,48): 246, 252, 241, 18, 66, 79, 185, 28, 18, 66, 62, 14, 100, (160,61): 28, 233, 185, 241, 72, 66, 63, 2, 63, 2, 91, 156, 50, 63, (160,75): 100, 220, 14, 234, 66, 185, 125, 125, 125, 55, 119, 117, (160,87): 35, 35, 35, 201, 35, 201, 119, 201, 119, 201, 35, 201, (160,99): 201, 201, 201, 201, 201, 139, 201, 35, 35, 55, 120, 55, (160,111): 125, 71, 125, 120, 185, 103, 219, 119, 120, 55, 201, 201, (160,123): 201, 120, 103, 74, 45, 75, 47, 7, 228, 213, 243, 71, 113, (160,136): 71, 103, 31, 149, 47, 83, 54, 148, 7, 7, 7, 7, 20, 173, (160,150): 76, 250, 188, 94, 153, 102, 163, 142, 62, 185, 185, 55, (160,162): 185, 125, 113, 219, 251, 194, 163, 163, 163, 196, 110, (160,173): 94, 98, 162, 165, 165, 247, 188, 158, 165, 158, 68, 127, (160,185): 112, 67, 77, 164, 40, 109, 112, 112, 112, 112, 166, 164, (160,197): 190, 190, 200, 200, 77, 39, 81, 139, 35, 128, 11, 117, (160,209): 117, 117, 117, 117, 117, 117, 117, 88, 117, 140, 117, (160,220): 117, 117, 117, 117, 117, 35, 35, 245, 35, 35, 35, 245, (160,232): 117, 117, 35, 35, 245, 35, 245, 139, 117, 117, 117, 117, (160,244): 117, 117, 117, 117, 201, 117, 35, 117, 117, 35, 117, 201, (160,256): 117, 117, 117, 117, 117, 117, 201, 117, 117, 117, 117, (160,267): 117, 117, 35, 117, 117, 117, 35, 117, 201, 117, 117, 117, (160,279): 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, 35, (160,291): 117, 35, 117, 139, 117, 35, 117, 35, 117, 139, 117, 201, (160,303): 117, 35, 35, 35, 35, 117, 35, 35, 119, 35, 35, 117, 35, (160,316): 33, 186, 204, 195, 221, 11, 33, 72, 3, 195, 49, 46, 186, (160,329): 49, 146, 116, 34, 105, 105, 183, 63, 181, 14, 63, 220, (160,341): 220, 195, 186, 108, 195, 49, 156, 2, 49, 18, 221, 33, (160,353): 156, 33, 195, 185, 253, 180, 185, 104, 123, 186, 33, 156, (160,365): 195, 63, 79, 117, 35, 116, 88, 186, 14, 253, (161,0): 20, 228, 20, 236, 236, 233, 233, 28, 62, 233, 241, 38, 79, (161,13): 232, 236, 66, 72, 66, 66, 79, 204, 62, 241, 28, 194, 233, (161,26): 38, 194, 153, 153, 241, 113, 180, 204, 14, 125, 28, 25, (161,38): 198, 193, 70, 110, 24, 219, 201, 201, 119, 219, 219, 100, (161,50): 18, 185, 204, 125, 241, 2, 28, 100, 100, 100, 28, 100, (161,62): 241, 79, 18, 187, 175, 104, 108, 50, 156, 49, 156, 220, (161,74): 100, 108, 100, 100, 241, 66, 185, 185, 125, 185, 55, 119, (161,86): 119, 119, 140, 117, 201, 117, 119, 201, 119, 119, 35, 201, (161,98): 119, 119, 119, 119, 119, 119, 35, 119, 139, 139, 55, 33, (161,110): 120, 125, 125, 71, 185, 55, 185, 120, 119, 185, 120, 55, (161,122): 55, 120, 71, 20, 196, 45, 211, 211, 39, 228, 113, 6, 120, (161,135): 113, 251, 58, 198, 83, 238, 69, 83, 47, 39, 149, 7, 7, (161,148): 250, 173, 113, 251, 250, 153, 60, 241, 194, 194, 194, (161,159): 251, 33, 185, 55, 55, 120, 219, 251, 102, 250, 101, 196, (161,171): 127, 127, 196, 94, 98, 165, 165, 162, 158, 162, 158, 158, (161,183): 98, 158, 98, 98, 112, 67, 112, 167, 109, 109, 94, 112, (161,195): 94, 68, 200, 190, 166, 42, 67, 68, 145, 199, 140, 11, 11, (161,208): 117, 35, 117, 201, 117, 117, 117, 117, 139, 117, 117, (161,219): 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, 245, (161,230): 245, 35, 139, 117, 245, 117, 117, 139, 117, 117, 117, (161,241): 117, 35, 117, 35, 117, 35, 117, 35, 35, 201, 35, 35, 35, (161,254): 117, 35, 117, 117, 35, 117, 117, 117, 117, 35, 35, 117, (161,266): 35, 117, 35, 117, 117, 117, 35, 117, 117, 117, 117, 117, (161,278): 117, 117, 201, 117, 35, 117, 35, 117, 35, 117, 117, 139, (161,290): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (161,301): 117, 117, 117, 35, 117, 117, 35, 117, 35, 35, 128, 35, (161,313): 35, 35, 128, 33, 18, 195, 72, 79, 72, 49, 146, 221, 221, (161,326): 195, 220, 181, 50, 78, 36, 156, 181, 138, 3, 72, 66, 50, (161,339): 128, 156, 63, 183, 63, 27, 50, 33, 185, 183, 108, 116, (161,351): 72, 185, 186, 66, 35, 210, 104, 108, 14, 195, 187, 117, (161,363): 221, 35, 66, 63, 63, 128, 221, 187, 50, 27, 2, 221, (162,0): 60, 250, 153, 250, 228, 60, 38, 243, 233, 100, 241, 204, (162,12): 38, 18, 79, 18, 79, 195, 241, 33, 55, 79, 236, 243, 79, (162,25): 236, 233, 204, 219, 251, 113, 66, 185, 62, 125, 231, 187, (162,37): 24, 70, 58, 15, 153, 194, 103, 185, 55, 140, 201, 117, 66, (162,50): 18, 186, 66, 204, 14, 100, 180, 100, 100, 28, 231, 100, (162,62): 204, 79, 35, 234, 108, 234, 234, 108, 108, 49, 156, 220, (162,74): 108, 100, 100, 220, 241, 204, 185, 185, 55, 33, 35, 117, (162,86): 117, 119, 139, 117, 117, 201, 119, 35, 201, 201, 117, 201, (162,98): 201, 119, 201, 119, 119, 201, 139, 201, 119, 55, 103, 62, (162,110): 251, 241, 71, 185, 71, 125, 185, 120, 185, 119, 55, 119, (162,122): 201, 55, 120, 76, 194, 7, 237, 211, 23, 31, 6, 236, 113, (162,135): 113, 76, 110, 238, 122, 197, 69, 13, 47, 148, 149, 7, 7, (162,148): 31, 213, 243, 113, 196, 188, 110, 153, 194, 103, 125, (162,159): 185, 125, 125, 125, 79, 185, 103, 102, 103, 102, 163, (162,170): 127, 98, 94, 159, 163, 127, 110, 162, 162, 158, 165, 158, (162,182): 162, 68, 247, 255, 191, 98, 68, 68, 67, 67, 98, 112, 112, (162,195): 112, 67, 190, 190, 166, 166, 67, 10, 81, 199, 117, 11, (162,207): 11, 117, 117, 35, 117, 117, 117, 117, 117, 117, 117, 140, (162,219): 117, 35, 117, 35, 117, 117, 35, 117, 117, 139, 35, 117, (162,231): 35, 117, 35, 117, 139, 117, 117, 117, 35, 117, 35, 139, (162,243): 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 35, (162,255): 117, 35, 117, 117, 117, 35, 35, 35, 35, 117, 117, 35, (162,267): 139, 117, 117, 35, 117, 117, 35, 117, 35, 117, 35, 117, (162,279): 35, 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, (162,290): 117, 201, 117, 35, 117, 201, 117, 35, 117, 201, 117, 117, (162,302): 117, 117, 35, 117, 117, 117, 117, 117, 35, 35, 117, 117, (162,314): 128, 33, 79, 18, 79, 18, 221, 46, 221, 128, 221, 221, (162,326): 116, 3, 116, 234, 116, 3, 49, 146, 116, 181, 181, 2, 2, (162,339): 186, 27, 104, 108, 2, 97, 220, 221, 49, 253, 180, 180, (162,351): 253, 186, 2, 100, 180, 49, 125, 156, 88, 33, 220, 79, 66, (162,364): 221, 195, 66, 180, 27, 108, 63, 128, 49, 63, 128, (163,0): 188, 251, 120, 55, 55, 38, 219, 71, 241, 241, 204, 185, 66, (163,13): 66, 18, 232, 66, 195, 204, 33, 185, 204, 71, 38, 233, 55, (163,26): 71, 55, 194, 84, 14, 120, 66, 66, 28, 100, 241, 60, 24, (163,39): 157, 249, 192, 251, 219, 71, 119, 140, 119, 232, 195, 204, (163,51): 195, 195, 18, 18, 66, 241, 38, 241, 180, 187, 28, 204, (163,63): 232, 66, 79, 128, 33, 195, 234, 156, 49, 220, 100, 108, (163,75): 108, 100, 14, 66, 18, 185, 120, 79, 119, 201, 117, 201, (163,87): 117, 35, 201, 119, 119, 119, 35, 201, 117, 35, 201, 119, (163,99): 119, 119, 201, 55, 119, 55, 33, 201, 79, 103, 241, 66, (163,111): 103, 125, 185, 185, 103, 185, 79, 125, 119, 185, 55, 120, (163,123): 120, 71, 219, 233, 31, 149, 23, 149, 31, 243, 243, 213, (163,135): 251, 102, 23, 83, 83, 4, 43, 43, 47, 148, 196, 7, 163, (163,148): 31, 20, 113, 76, 74, 58, 142, 163, 153, 28, 103, 125, (163,160): 219, 219, 125, 125, 103, 103, 102, 103, 163, 163, 196, (163,171): 188, 162, 94, 196, 163, 159, 127, 127, 98, 165, 158, 162, (163,183): 68, 164, 109, 115, 255, 112, 166, 164, 164, 190, 68, 112, (163,195): 67, 68, 67, 161, 190, 21, 96, 68, 145, 201, 201, 11, 88, (163,208): 35, 35, 117, 35, 117, 35, 117, 117, 140, 117, 117, 117, (163,220): 139, 35, 117, 35, 117, 139, 117, 35, 117, 35, 117, 117, (163,232): 139, 245, 35, 117, 117, 35, 117, 35, 117, 117, 117, 117, (163,244): 35, 117, 35, 117, 35, 117, 117, 35, 117, 35, 117, 201, (163,256): 117, 117, 117, 139, 117, 117, 117, 35, 35, 117, 117, 117, (163,268): 117, 117, 139, 35, 117, 139, 117, 117, 117, 139, 35, 117, (163,280): 117, 117, 117, 201, 117, 117, 117, 201, 117, 35, 117, (163,291): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, (163,302): 117, 117, 35, 117, 117, 117, 117, 35, 35, 128, 117, 35, (163,314): 232, 33, 79, 79, 116, 79, 195, 146, 221, 116, 220, 138, (163,326): 234, 234, 80, 234, 182, 49, 49, 80, 63, 105, 91, 186, (163,338): 195, 156, 221, 63, 72, 221, 66, 63, 156, 220, 123, 181, (163,350): 220, 123, 187, 72, 186, 186, 72, 195, 66, 108, 2, 2, 50, (163,363): 49, 156, 14, 105, 121, 121, 123, 183, 108, 33, 63, 116, (164,0): 198, 38, 120, 71, 236, 71, 185, 204, 241, 55, 232, 79, 79, (164,13): 66, 100, 72, 66, 79, 79, 79, 38, 233, 66, 231, 24, 219, (164,26): 38, 55, 219, 24, 103, 125, 14, 14, 180, 28, 14, 100, 24, (164,39): 25, 153, 62, 125, 120, 201, 117, 185, 185, 185, 185, 33, (164,51): 18, 204, 33, 79, 185, 18, 185, 195, 28, 207, 28, 66, 79, (164,64): 234, 18, 79, 49, 234, 186, 186, 156, 220, 50, 100, 220, (164,76): 220, 14, 66, 125, 186, 125, 185, 185, 79, 33, 119, 35, (164,88): 201, 35, 35, 201, 119, 201, 35, 201, 119, 35, 119, 201, (164,100): 55, 119, 119, 119, 120, 55, 119, 55, 62, 24, 142, 192, (164,112): 207, 14, 125, 38, 125, 185, 241, 185, 55, 55, 185, 55, (164,124): 71, 113, 233, 20, 74, 73, 31, 20, 41, 76, 233, 20, 196, (164,137): 188, 4, 162, 211, 23, 10, 39, 149, 74, 7, 60, 228, 251, (164,150): 113, 113, 71, 103, 103, 103, 194, 194, 241, 219, 185, 79, (164,162): 120, 38, 62, 251, 251, 102, 163, 163, 196, 198, 165, 198, (164,174): 94, 110, 196, 159, 101, 163, 112, 98, 158, 158, 68, 112, (164,186): 217, 115, 150, 112, 200, 67, 200, 77, 67, 166, 166, 40, (164,198): 40, 21, 169, 166, 164, 81, 201, 35, 11, 88, 117, 35, 117, (164,211): 35, 117, 139, 117, 117, 117, 117, 140, 117, 117, 117, (164,222): 117, 117, 117, 117, 35, 245, 139, 117, 117, 35, 117, 117, (164,234): 35, 117, 35, 117, 117, 117, 35, 117, 35, 117, 139, 117, (164,246): 117, 35, 117, 117, 35, 117, 117, 117, 117, 117, 117, 35, (164,258): 117, 117, 117, 201, 117, 35, 117, 117, 201, 117, 117, (164,269): 117, 117, 117, 117, 117, 117, 201, 117, 117, 117, 117, (164,280): 35, 117, 35, 117, 117, 117, 117, 117, 117, 117, 35, 117, (164,292): 35, 117, 35, 117, 35, 117, 35, 117, 117, 117, 117, 117, (164,304): 117, 117, 117, 35, 117, 117, 35, 35, 128, 232, 128, 232, (164,316): 128, 33, 79, 79, 128, 72, 72, 116, 195, 195, 72, 234, 63, (164,329): 137, 183, 123, 222, 181, 116, 46, 14, 108, 50, 220, 221, (164,341): 183, 185, 221, 195, 49, 66, 195, 128, 117, 128, 221, 72, (164,353): 116, 63, 105, 49, 128, 11, 195, 195, 186, 49, 14, 105, (164,365): 105, 2, 64, 220, 253, 97, 178, 50, 186, 195, (165,0): 192, 120, 140, 55, 204, 219, 185, 204, 204, 232, 79, 204, (165,12): 35, 18, 2, 180, 14, 100, 187, 51, 51, 207, 231, 93, 84, (165,25): 74, 62, 236, 201, 219, 194, 70, 207, 104, 28, 187, 24, 38, (165,38): 153, 62, 246, 152, 192, 241, 185, 219, 219, 119, 156, 186, (165,50): 232, 186, 185, 35, 33, 33, 18, 79, 185, 66, 100, 14, 38, (165,63): 185, 79, 79, 18, 72, 72, 195, 156, 50, 156, 14, 156, 156, (165,76): 14, 14, 66, 125, 125, 185, 185, 185, 125, 185, 33, 119, (165,88): 117, 117, 201, 35, 35, 119, 119, 119, 201, 119, 119, 55, (165,100): 55, 55, 55, 55, 35, 55, 71, 100, 192, 157, 70, 157, 25, (165,113): 70, 153, 187, 24, 14, 28, 219, 195, 103, 219, 125, 120, (165,125): 71, 219, 213, 60, 228, 213, 76, 76, 76, 251, 31, 149, 23, (165,138): 188, 211, 47, 39, 77, 7, 7, 7, 74, 60, 228, 213, 113, 71, (165,152): 120, 103, 38, 103, 219, 185, 55, 55, 55, 35, 119, 241, (165,164): 194, 62, 194, 153, 194, 196, 188, 198, 198, 188, 188, (165,175): 142, 159, 159, 101, 218, 218, 159, 98, 109, 247, 68, 164, (165,187): 109, 85, 109, 68, 67, 166, 190, 190, 166, 169, 169, 160, (165,199): 114, 26, 132, 190, 19, 199, 117, 117, 11, 11, 117, 201, (165,211): 117, 117, 117, 117, 35, 140, 117, 117, 117, 117, 117, (165,222): 117, 35, 117, 139, 117, 117, 117, 35, 117, 117, 117, 139, (165,234): 117, 117, 117, 117, 35, 117, 139, 117, 117, 117, 117, (165,245): 117, 117, 139, 117, 117, 117, 117, 117, 35, 117, 117, 35, (165,257): 117, 117, 117, 117, 117, 35, 201, 35, 117, 117, 117, 201, (165,269): 117, 117, 201, 117, 35, 117, 117, 117, 117, 117, 139, 35, (165,281): 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 117, 139, (165,293): 35, 117, 117, 139, 35, 117, 117, 35, 117, 201, 117, 35, (165,305): 35, 35, 35, 117, 35, 128, 35, 232, 128, 35, 232, 128, 33, (165,318): 79, 116, 14, 63, 63, 234, 116, 116, 116, 49, 49, 72, 50, (165,331): 78, 234, 105, 64, 91, 50, 186, 187, 180, 11, 195, 220, (165,343): 221, 181, 183, 156, 33, 186, 156, 221, 221, 186, 50, 195, (165,355): 108, 49, 195, 105, 105, 156, 63, 187, 216, 177, 121, 14, (165,367): 108, 186, 117, 63, 64, 2, 128, 181, (166,0): 241, 185, 38, 24, 70, 252, 38, 185, 79, 79, 156, 100, 72, (166,13): 116, 234, 100, 221, 241, 187, 24, 180, 28, 38, 62, 95, (166,25): 242, 231, 38, 62, 192, 242, 25, 8, 187, 51, 241, 241, 100, (166,38): 219, 62, 70, 157, 24, 219, 185, 219, 180, 241, 63, 156, (166,50): 185, 79, 33, 232, 79, 232, 79, 33, 185, 18, 66, 241, 204, (166,63): 33, 66, 18, 79, 33, 116, 195, 156, 49, 66, 146, 195, 195, (166,76): 219, 66, 219, 186, 79, 33, 79, 185, 125, 185, 185, 119, (166,88): 119, 33, 119, 119, 119, 119, 119, 55, 119, 55, 55, 55, (166,100): 185, 185, 185, 185, 55, 219, 241, 28, 192, 192, 24, 153, (166,112): 242, 99, 70, 226, 99, 252, 51, 14, 153, 24, 28, 251, 125, (166,125): 113, 103, 20, 60, 60, 60, 20, 213, 233, 209, 196, 23, (166,137): 206, 47, 47, 47, 148, 148, 127, 7, 74, 60, 60, 194, 233, (166,150): 219, 113, 71, 103, 241, 125, 125, 120, 119, 55, 119, 35, (166,162): 55, 38, 241, 102, 194, 196, 142, 188, 198, 198, 198, 152, (166,174): 188, 163, 163, 163, 218, 159, 163, 218, 127, 127, 247, (166,185): 109, 68, 200, 112, 109, 166, 164, 96, 42, 190, 161, 67, (166,197): 160, 114, 114, 131, 160, 166, 81, 19, 199, 117, 11, 35, (166,209): 117, 35, 117, 117, 117, 117, 117, 117, 139, 117, 117, (166,220): 139, 117, 35, 117, 117, 117, 35, 117, 117, 117, 139, 117, (166,232): 117, 117, 117, 35, 117, 35, 117, 117, 117, 117, 35, 117, (166,244): 35, 117, 201, 117, 117, 117, 139, 117, 117, 117, 117, (166,255): 117, 117, 35, 139, 117, 117, 117, 117, 35, 117, 117, 117, (166,267): 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, 117, (166,279): 117, 117, 117, 35, 139, 117, 117, 117, 117, 117, 117, 35, (166,291): 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, (166,302): 117, 117, 119, 117, 35, 35, 35, 35, 119, 128, 232, 128, (166,314): 128, 33, 232, 33, 79, 79, 72, 72, 234, 108, 253, 121, (166,326): 178, 178, 27, 27, 91, 221, 91, 146, 138, 123, 50, 50, (166,338): 156, 221, 195, 116, 156, 253, 221, 116, 195, 50, 49, 91, (166,350): 181, 128, 223, 63, 49, 195, 156, 123, 108, 156, 183, 64, (166,362): 105, 137, 187, 108, 46, 220, 66, 128, 185, 180, 91, 2, (166,374): 183, (167,0): 219, 241, 241, 219, 14, 62, 195, 100, 14, 2, 104, 27, 183, (167,13): 220, 72, 234, 18, 100, 180, 241, 62, 24, 28, 28, 194, 53, (167,26): 193, 58, 62, 207, 192, 100, 14, 100, 241, 156, 241, 38, (167,38): 241, 103, 28, 93, 246, 157, 180, 185, 125, 66, 28, 100, (167,50): 186, 33, 128, 35, 18, 33, 232, 79, 204, 204, 66, 241, 204, (167,63): 232, 66, 72, 72, 195, 195, 195, 195, 156, 195, 195, 125, (167,75): 186, 125, 125, 125, 33, 55, 33, 33, 185, 125, 125, 125, (167,87): 185, 125, 185, 185, 55, 119, 119, 119, 119, 119, 119, 55, (167,99): 79, 71, 185, 71, 219, 185, 219, 219, 62, 24, 51, 51, 15, (167,112): 175, 53, 70, 53, 37, 175, 246, 51, 241, 100, 62, 125, 55, (167,125): 71, 103, 20, 74, 23, 23, 60, 20, 31, 58, 206, 110, 47, (167,138): 206, 7, 73, 39, 39, 73, 60, 60, 194, 60, 194, 20, 251, (167,151): 71, 125, 103, 125, 71, 185, 55, 139, 35, 117, 119, 33, (167,163): 120, 125, 219, 102, 194, 188, 188, 198, 198, 193, 248, (167,174): 152, 142, 101, 101, 254, 101, 159, 127, 98, 217, 158, (167,185): 191, 247, 77, 67, 164, 190, 166, 42, 166, 96, 166, 160, (167,197): 144, 61, 114, 132, 160, 67, 154, 145, 201, 88, 128, 117, (167,209): 35, 117, 117, 35, 117, 117, 139, 117, 88, 117, 117, 117, (167,221): 117, 117, 117, 35, 117, 117, 35, 117, 35, 117, 117, 35, (167,233): 117, 35, 117, 117, 139, 117, 35, 117, 117, 139, 35, 117, (167,245): 117, 117, 117, 117, 117, 117, 117, 139, 117, 117, 139, (167,256): 117, 117, 117, 117, 117, 35, 35, 35, 117, 35, 117, 35, (167,268): 117, 35, 117, 35, 117, 35, 117, 117, 117, 35, 117, 117, (167,280): 201, 117, 117, 117, 117, 35, 117, 201, 117, 139, 117, (167,291): 117, 117, 201, 117, 117, 201, 117, 117, 139, 117, 35, (167,302): 117, 117, 119, 35, 35, 119, 35, 35, 232, 128, 232, 232, (167,314): 33, 33, 33, 33, 79, 116, 128, 35, 33, 33, 33, 146, 108, (167,327): 49, 50, 116, 105, 137, 253, 72, 49, 146, 195, 2, 138, (167,339): 195, 105, 50, 195, 11, 108, 63, 63, 108, 186, 180, 180, (167,351): 156, 116, 108, 138, 175, 80, 220, 50, 105, 253, 183, 108, (167,363): 220, 146, 128, 3, 63, 108, 187, 220, 253, 50, 123, 50, (168,0): 14, 219, 185, 232, 66, 66, 128, 195, 156, 186, 18, 195, 49, (168,13): 66, 116, 72, 66, 79, 204, 100, 62, 24, 237, 231, 58, 51, (168,26): 242, 231, 187, 51, 51, 187, 153, 14, 66, 125, 14, 241, (168,38): 125, 100, 119, 207, 28, 187, 8, 14, 147, 195, 156, 195, (168,50): 195, 79, 35, 128, 125, 14, 18, 204, 195, 66, 241, 66, 195, (168,63): 18, 66, 18, 186, 195, 156, 14, 146, 186, 186, 195, 156, (168,75): 66, 195, 125, 33, 119, 33, 33, 185, 125, 195, 125, 185, (168,87): 125, 66, 185, 241, 185, 55, 219, 185, 55, 55, 219, 185, (168,99): 185, 185, 185, 194, 125, 219, 241, 219, 185, 153, 192, 28, (168,111): 51, 246, 178, 249, 242, 53, 192, 252, 142, 14, 194, 241, (168,123): 125, 120, 71, 102, 60, 15, 75, 237, 74, 23, 45, 206, 75, (168,136): 127, 23, 148, 127, 39, 73, 209, 228, 20, 20, 62, 62, 62, (168,149): 20, 125, 55, 71, 219, 125, 125, 120, 33, 201, 117, 139, (168,161): 55, 236, 79, 71, 103, 194, 153, 110, 157, 193, 248, 193, (168,173): 152, 110, 153, 163, 101, 102, 164, 159, 159, 159, 68, 68, (168,185): 217, 158, 112, 166, 164, 166, 166, 190, 132, 160, 114, (168,196): 30, 61, 61, 168, 239, 30, 255, 77, 145, 201, 117, 117, (168,208): 35, 117, 117, 201, 117, 117, 117, 117, 117, 117, 117, (168,219): 117, 35, 117, 35, 139, 117, 117, 35, 117, 117, 117, 35, (168,231): 117, 35, 117, 117, 35, 117, 117, 117, 117, 117, 117, 117, (168,243): 117, 139, 117, 117, 117, 201, 117, 117, 117, 117, 117, (168,254): 201, 35, 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, (168,266): 35, 117, 35, 117, 117, 117, 117, 139, 117, 117, 117, 117, (168,278): 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 35, 117, (168,290): 35, 201, 117, 35, 117, 35, 117, 35, 35, 117, 35, 117, (168,302): 201, 35, 117, 117, 35, 117, 35, 128, 35, 232, 128, 79, (168,314): 79, 79, 79, 116, 18, 18, 72, 33, 88, 221, 221, 128, 221, (168,327): 128, 128, 46, 50, 72, 116, 88, 138, 220, 183, 220, 2, (168,339): 253, 183, 156, 46, 156, 181, 49, 186, 108, 49, 3, 181, (168,351): 105, 108, 128, 108, 146, 221, 63, 64, 64, 123, 183, 181, (168,363): 64, 91, 128, 105, 175, 177, 99, 37, 187, 116, 175, 64, (169,0): 232, 33, 195, 66, 220, 14, 35, 232, 186, 18, 108, 156, 195, (169,13): 49, 108, 183, 14, 232, 185, 207, 93, 246, 246, 93, 62, 20, (169,26): 24, 100, 153, 24, 51, 70, 100, 100, 14, 219, 14, 180, 28, (169,39): 24, 51, 24, 14, 66, 192, 104, 185, 186, 117, 66, 66, 128, (169,52): 117, 195, 108, 63, 185, 72, 204, 204, 195, 38, 18, 79, 33, (169,65): 185, 186, 66, 156, 49, 195, 79, 195, 195, 195, 195, 125, (169,77): 185, 125, 185, 119, 33, 185, 185, 125, 186, 125, 185, 125, (169,89): 185, 241, 14, 219, 66, 219, 241, 66, 103, 185, 103, 103, (169,101): 241, 62, 119, 38, 142, 142, 38, 38, 28, 100, 207, 207, (169,113): 246, 51, 242, 249, 157, 93, 180, 28, 28, 241, 103, 71, (169,125): 71, 103, 251, 142, 84, 23, 23, 75, 75, 47, 23, 211, 4, (169,138): 75, 211, 127, 7, 209, 228, 20, 233, 38, 103, 38, 204, 71, (169,151): 185, 119, 119, 119, 119, 119, 35, 35, 117, 35, 35, 55, (169,163): 55, 125, 251, 153, 142, 188, 198, 122, 152, 152, 188, (169,174): 142, 163, 101, 101, 118, 92, 218, 247, 98, 112, 127, 68, (169,186): 67, 67, 112, 67, 112, 167, 166, 96, 96, 40, 126, 144, (169,198): 143, 143, 61, 30, 30, 112, 101, 71, 35, 117, 117, 117, (169,210): 117, 117, 117, 117, 117, 201, 117, 117, 201, 117, 139, (169,221): 117, 117, 117, 117, 35, 117, 117, 35, 117, 117, 35, 117, (169,233): 117, 35, 117, 117, 117, 35, 117, 139, 117, 117, 117, 117, (169,245): 117, 117, 117, 35, 117, 35, 117, 117, 117, 117, 117, 35, (169,257): 117, 35, 117, 117, 35, 117, 35, 117, 35, 117, 117, 139, (169,269): 35, 117, 35, 117, 117, 117, 117, 117, 139, 117, 117, 117, (169,281): 35, 117, 35, 117, 117, 35, 117, 117, 35, 117, 35, 35, (169,293): 117, 35, 117, 35, 35, 117, 35, 35, 117, 35, 117, 117, 35, (169,306): 117, 35, 35, 35, 35, 35, 33, 33, 79, 33, 33, 33, 128, 35, (169,320): 245, 128, 221, 18, 221, 245, 116, 72, 33, 49, 72, 195, (169,332): 146, 108, 181, 195, 186, 146, 253, 253, 108, 72, 116, (169,343): 156, 210, 108, 105, 27, 253, 33, 33, 156, 183, 63, 105, (169,355): 108, 216, 27, 156, 221, 223, 78, 63, 186, 97, 78, 195, (169,367): 183, 156, 175, 104, 116, 186, 46, 108, (170,0): 100, 66, 66, 195, 66, 100, 108, 2, 156, 195, 14, 156, 49, (170,13): 72, 116, 66, 18, 24, 51, 231, 231, 51, 58, 100, 15, 207, (170,26): 207, 142, 28, 28, 194, 187, 187, 252, 187, 241, 219, 241, (170,38): 219, 66, 66, 33, 66, 79, 18, 63, 79, 210, 117, 128, 221, (170,51): 186, 195, 156, 66, 204, 66, 66, 66, 195, 204, 195, 18, 33, (170,64): 33, 185, 125, 195, 66, 195, 186, 186, 186, 195, 125, 195, (170,76): 125, 185, 185, 79, 185, 185, 186, 79, 185, 125, 185, 185, (170,88): 125, 125, 38, 28, 241, 125, 241, 66, 185, 125, 185, 219, (170,100): 219, 241, 100, 219, 185, 100, 24, 241, 100, 246, 207, 14, (170,112): 231, 231, 100, 229, 8, 8, 142, 241, 194, 241, 219, 113, (170,124): 71, 103, 103, 251, 60, 237, 23, 45, 115, 29, 206, 149, (170,136): 148, 4, 83, 4, 206, 149, 163, 60, 62, 233, 219, 204, 125, (170,149): 236, 79, 236, 119, 139, 119, 35, 35, 117, 140, 117, 117, (170,161): 139, 232, 55, 219, 194, 196, 110, 188, 198, 165, 152, (170,172): 165, 198, 188, 196, 142, 247, 98, 127, 159, 159, 127, (170,183): 112, 112, 127, 127, 112, 112, 68, 67, 167, 255, 255, 114, (170,195): 114, 13, 52, 144, 143, 114, 143, 255, 167, 127, 102, 119, (170,207): 88, 117, 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, (170,219): 117, 117, 117, 35, 117, 117, 117, 139, 117, 117, 35, 117, (170,231): 117, 35, 139, 117, 117, 35, 117, 117, 117, 117, 117, 117, (170,243): 117, 117, 117, 117, 117, 35, 117, 35, 117, 117, 35, 117, (170,255): 35, 117, 117, 139, 117, 35, 139, 117, 117, 35, 139, 117, (170,267): 117, 117, 117, 117, 139, 117, 117, 117, 139, 117, 117, (170,278): 117, 117, 35, 139, 117, 117, 139, 117, 117, 35, 201, 35, (170,290): 117, 35, 117, 35, 35, 35, 117, 35, 35, 117, 35, 35, 117, (170,303): 35, 35, 117, 35, 117, 35, 35, 35, 35, 117, 35, 35, 232, (170,316): 128, 33, 128, 245, 245, 128, 79, 234, 72, 33, 46, 128, (170,328): 116, 234, 221, 128, 224, 186, 186, 46, 146, 221, 128, 46, (170,340): 186, 195, 221, 221, 108, 50, 195, 156, 49, 3, 63, 63, 3, (170,353): 220, 183, 183, 64, 176, 91, 220, 105, 195, 78, 183, 220, (170,365): 156, 223, 214, 183, 2, 253, 33, 128, 195, 108, (171,0): 180, 156, 156, 66, 14, 63, 104, 183, 187, 49, 195, 14, 63, (171,13): 63, 195, 66, 66, 207, 51, 231, 241, 241, 207, 246, 25, 15, (171,26): 28, 153, 62, 28, 14, 180, 14, 100, 63, 125, 185, 66, 125, (171,39): 125, 38, 185, 62, 33, 88, 186, 116, 195, 221, 221, 156, (171,51): 187, 104, 180, 49, 18, 220, 108, 14, 14, 66, 204, 185, 79, (171,64): 185, 186, 18, 125, 186, 195, 66, 156, 66, 49, 66, 66, 125, (171,77): 185, 79, 55, 219, 156, 241, 186, 79, 185, 185, 119, 79, (171,89): 185, 185, 66, 219, 33, 219, 185, 55, 120, 125, 219, 185, (171,101): 241, 24, 51, 219, 24, 25, 51, 28, 51, 51, 100, 192, 237, (171,114): 246, 178, 193, 249, 84, 100, 103, 125, 71, 113, 113, 251, (171,126): 250, 60, 58, 23, 23, 45, 238, 83, 47, 39, 7, 148, 211, (171,139): 45, 206, 149, 196, 7, 194, 66, 38, 233, 219, 33, 201, 79, (171,152): 119, 232, 117, 117, 117, 117, 140, 245, 232, 139, 232, (171,163): 55, 38, 194, 196, 110, 142, 110, 188, 198, 198, 188, 110, (171,175): 196, 159, 127, 162, 158, 94, 164, 164, 127, 112, 68, 67, (171,187): 112, 167, 112, 68, 67, 82, 114, 109, 167, 114, 114, 114, (171,199): 143, 143, 143, 114, 54, 94, 103, 201, 117, 117, 117, 117, (171,211): 117, 117, 117, 35, 117, 35, 117, 35, 117, 117, 35, 117, (171,223): 117, 35, 117, 117, 35, 117, 117, 139, 117, 117, 117, 117, (171,235): 35, 117, 117, 139, 35, 117, 117, 139, 117, 117, 139, 35, (171,247): 117, 117, 201, 117, 117, 139, 35, 117, 35, 35, 117, 117, (171,259): 117, 117, 117, 117, 117, 117, 117, 117, 201, 117, 117, (171,270): 117, 117, 117, 35, 117, 117, 117, 117, 35, 117, 117, 117, (171,282): 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, 35, 35, (171,294): 35, 117, 35, 35, 117, 201, 35, 117, 35, 35, 117, 35, 35, (171,307): 117, 35, 117, 117, 117, 245, 117, 35, 33, 33, 79, 33, (171,319): 128, 128, 245, 44, 232, 128, 128, 195, 195, 156, 49, 72, (171,331): 128, 186, 210, 221, 156, 3, 116, 186, 156, 186, 186, 46, (171,343): 156, 50, 49, 186, 156, 156, 50, 27, 63, 121, 183, 49, 91, (171,356): 180, 195, 156, 180, 183, 50, 195, 253, 195, 156, 108, (171,367): 108, 220, 245, 195, 195, 128, 253, 63, (172,0): 14, 66, 66, 63, 187, 253, 104, 180, 104, 195, 186, 72, 49, (172,13): 66, 195, 63, 37, 25, 180, 233, 100, 207, 60, 38, 231, 28, (172,26): 125, 219, 185, 219, 241, 180, 185, 125, 66, 125, 185, 125, (172,38): 18, 66, 63, 180, 66, 185, 185, 221, 186, 220, 33, 108, (172,50): 104, 2, 63, 63, 14, 66, 14, 100, 100, 14, 66, 195, 18, 79, (172,64): 33, 185, 33, 185, 195, 156, 63, 2, 100, 220, 14, 14, 66, (172,77): 125, 185, 125, 156, 28, 180, 14, 195, 125, 185, 33, 33, (172,89): 125, 33, 185, 125, 219, 100, 185, 66, 185, 33, 125, 38, (172,101): 28, 187, 192, 28, 24, 175, 207, 62, 231, 207, 231, 242, (172,113): 15, 229, 53, 53, 95, 53, 28, 103, 219, 103, 103, 251, (172,125): 228, 74, 110, 4, 75, 75, 45, 45, 211, 148, 10, 39, 148, (172,138): 47, 47, 188, 110, 74, 194, 62, 66, 204, 66, 125, 55, 232, (172,151): 79, 232, 117, 140, 117, 117, 140, 117, 35, 245, 117, 232, (172,163): 185, 233, 28, 196, 142, 110, 94, 188, 98, 110, 196, 159, (172,175): 196, 163, 250, 101, 127, 94, 127, 218, 164, 68, 68, 164, (172,187): 68, 109, 13, 191, 109, 167, 158, 126, 114, 167, 160, 114, (172,199): 171, 170, 143, 160, 167, 148, 113, 199, 117, 201, 117, (172,210): 35, 117, 201, 117, 117, 117, 117, 117, 117, 35, 117, 139, (172,222): 117, 35, 139, 117, 117, 117, 117, 35, 117, 117, 117, 117, (172,234): 35, 139, 117, 117, 117, 117, 117, 117, 117, 117, 117, (172,245): 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, 201, (172,256): 117, 117, 35, 117, 201, 117, 117, 201, 117, 117, 117, (172,267): 117, 117, 35, 117, 201, 117, 117, 201, 117, 35, 117, 201, (172,279): 117, 117, 201, 117, 35, 117, 201, 117, 117, 35, 117, 35, (172,291): 35, 117, 35, 117, 35, 201, 35, 117, 35, 117, 35, 117, 35, (172,304): 35, 35, 35, 35, 117, 35, 117, 35, 35, 128, 33, 33, 33, (172,317): 35, 35, 128, 147, 245, 195, 63, 14, 116, 79, 33, 33, 11, (172,330): 128, 128, 72, 128, 224, 146, 221, 156, 78, 64, 105, 138, (172,342): 50, 105, 175, 137, 46, 3, 223, 36, 27, 78, 220, 49, 35, (172,355): 156, 195, 183, 177, 186, 123, 186, 63, 220, 123, 121, 49, (172,367): 35, 44, 195, 116, 108, 108, 234, 116, (173,0): 14, 156, 195, 100, 187, 187, 187, 63, 175, 2, 63, 108, 220, (173,13): 14, 49, 63, 204, 93, 242, 231, 204, 62, 28, 38, 236, 38, (173,26): 38, 62, 219, 125, 66, 241, 63, 66, 14, 14, 125, 79, 232, (173,39): 55, 185, 66, 33, 79, 195, 128, 72, 181, 220, 220, 14, 195, (173,52): 79, 185, 186, 72, 195, 49, 66, 195, 18, 18, 185, 79, 55, (173,65): 33, 79, 18, 156, 100, 63, 180, 63, 220, 241, 156, 219, (173,77): 125, 125, 38, 195, 14, 180, 63, 14, 66, 195, 185, 66, 14, (173,90): 14, 66, 241, 28, 187, 194, 14, 71, 125, 125, 185, 219, (173,102): 241, 62, 100, 241, 180, 231, 28, 104, 51, 231, 15, 24, (173,114): 246, 142, 246, 157, 246, 125, 103, 113, 103, 20, 194, 74, (173,126): 23, 75, 59, 75, 75, 45, 211, 148, 206, 148, 39, 39, 149, (173,139): 110, 110, 58, 153, 62, 66, 18, 185, 33, 79, 232, 33, 18, (173,152): 185, 119, 117, 117, 35, 117, 245, 117, 88, 140, 35, 185, (173,164): 251, 153, 142, 110, 188, 98, 188, 94, 196, 159, 196, 127, (173,176): 127, 196, 159, 218, 159, 68, 159, 218, 68, 112, 112, 67, (173,188): 112, 109, 191, 13, 109, 109, 112, 68, 169, 169, 21, 205, (173,200): 202, 170, 169, 114, 127, 145, 201, 117, 117, 117, 117, (173,211): 117, 117, 117, 35, 117, 201, 117, 35, 117, 117, 117, 117, (173,223): 117, 117, 117, 35, 117, 117, 139, 35, 117, 35, 117, 117, (173,235): 117, 117, 117, 35, 117, 117, 139, 117, 117, 117, 117, (173,246): 117, 117, 35, 35, 117, 117, 117, 117, 35, 117, 117, 35, (173,258): 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, (173,270): 117, 117, 35, 117, 117, 35, 201, 117, 117, 35, 117, 117, (173,282): 117, 117, 117, 117, 117, 35, 117, 35, 35, 117, 35, 35, (173,294): 35, 117, 35, 117, 117, 35, 117, 35, 35, 117, 35, 35, 35, (173,307): 35, 35, 35, 232, 11, 35, 35, 128, 33, 117, 245, 11, 128, (173,320): 33, 128, 88, 33, 128, 245, 33, 11, 11, 186, 46, 116, 210, (173,333): 186, 128, 72, 49, 156, 128, 224, 195, 63, 63, 72, 91, 64, (173,346): 220, 146, 156, 156, 105, 183, 175, 183, 33, 79, 27, 186, (173,358): 18, 63, 123, 187, 187, 156, 156, 49, 186, 79, 72, 116, (173,370): 63, 63, 183, 104, 175, (174,0): 185, 234, 79, 156, 2, 100, 220, 14, 108, 100, 180, 100, (174,12): 108, 180, 156, 204, 28, 241, 100, 207, 207, 24, 62, 236, (174,24): 204, 71, 18, 100, 28, 219, 14, 241, 28, 125, 195, 66, 185, (174,37): 33, 232, 33, 232, 232, 33, 35, 128, 33, 49, 64, 27, 14, (174,50): 33, 221, 186, 185, 33, 185, 186, 125, 186, 79, 33, 33, 79, (174,63): 33, 79, 185, 18, 195, 156, 100, 100, 108, 100, 14, 156, (174,75): 241, 66, 185, 185, 125, 185, 66, 14, 63, 28, 100, 241, (174,87): 195, 14, 24, 93, 104, 142, 104, 93, 252, 24, 125, 219, 55, (174,100): 119, 55, 119, 125, 66, 28, 246, 51, 231, 180, 207, 51, (174,112): 58, 153, 58, 24, 142, 188, 196, 219, 103, 219, 251, 60, (174,124): 110, 206, 152, 115, 238, 75, 45, 47, 148, 47, 82, 148, (174,136): 39, 39, 39, 7, 196, 196, 163, 62, 125, 185, 119, 35, 232, (174,149): 33, 185, 79, 18, 33, 232, 232, 35, 88, 140, 88, 140, 245, (174,162): 35, 120, 241, 163, 110, 188, 162, 94, 247, 94, 127, 218, (174,174): 159, 127, 159, 127, 127, 196, 159, 159, 112, 98, 127, 98, (174,186): 109, 98, 68, 166, 167, 109, 158, 255, 67, 166, 67, 67, (174,198): 205, 21, 21, 57, 21, 54, 159, 81, 55, 199, 117, 201, 117, (174,211): 35, 117, 35, 117, 117, 117, 117, 117, 35, 117, 201, 117, (174,223): 117, 117, 35, 139, 117, 117, 117, 117, 117, 139, 117, (174,234): 117, 35, 117, 35, 139, 117, 117, 117, 117, 139, 117, 117, (174,246): 139, 117, 117, 117, 35, 117, 117, 35, 117, 201, 117, 117, (174,258): 35, 117, 35, 117, 35, 117, 35, 117, 117, 117, 117, 35, (174,270): 117, 117, 35, 35, 117, 117, 35, 117, 35, 117, 35, 117, (174,282): 35, 117, 35, 117, 117, 117, 201, 117, 35, 35, 117, 201, (174,294): 117, 35, 117, 35, 35, 35, 35, 117, 35, 35, 139, 35, 35, (174,307): 35, 35, 232, 128, 232, 33, 232, 117, 35, 128, 117, 35, (174,319): 128, 33, 245, 11, 195, 220, 220, 108, 195, 100, 63, 108, (174,331): 63, 46, 78, 156, 50, 181, 253, 182, 221, 72, 222, 27, (174,343): 105, 176, 27, 91, 64, 223, 183, 176, 49, 186, 241, 50, (174,355): 63, 178, 70, 175, 220, 27, 216, 66, 79, 66, 66, 104, 123, (174,368): 216, 108, 123, 104, 2, 183, 104, (175,0): 108, 24, 195, 204, 63, 14, 180, 51, 63, 252, 70, 63, 14, 2, (175,14): 100, 204, 204, 38, 60, 100, 194, 84, 248, 226, 246, 241, (175,26): 140, 119, 241, 119, 185, 55, 156, 128, 33, 33, 117, 79, (175,38): 232, 232, 79, 245, 195, 116, 221, 195, 46, 100, 63, 156, (175,50): 186, 33, 186, 156, 195, 221, 125, 195, 185, 33, 117, 232, (175,62): 33, 33, 185, 79, 18, 38, 156, 14, 108, 180, 108, 100, 28, (175,75): 63, 100, 125, 55, 33, 185, 186, 66, 100, 180, 28, 156, 66, (175,88): 241, 28, 8, 8, 246, 175, 157, 249, 157, 66, 79, 232, 185, (175,101): 241, 18, 125, 71, 38, 100, 66, 204, 28, 28, 24, 194, 194, (175,114): 142, 110, 28, 192, 194, 28, 194, 102, 250, 58, 75, 59, (175,126): 115, 151, 151, 83, 206, 148, 148, 148, 148, 39, 148, 127, (175,138): 149, 196, 74, 153, 194, 241, 55, 33, 33, 232, 232, 79, (175,150): 55, 35, 79, 117, 88, 117, 35, 88, 140, 117, 35, 35, 119, (175,163): 55, 103, 153, 192, 198, 152, 165, 165, 165, 98, 127, 159, (175,175): 218, 127, 159, 159, 112, 127, 218, 101, 68, 127, 164, (175,186): 164, 112, 167, 112, 166, 166, 164, 164, 190, 200, 190, (175,197): 21, 21, 170, 170, 169, 42, 167, 73, 19, 145, 139, 35, (175,209): 117, 117, 117, 117, 117, 117, 117, 35, 117, 139, 117, (175,220): 117, 117, 117, 35, 117, 117, 117, 117, 35, 117, 35, 117, (175,232): 117, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, (175,243): 117, 117, 117, 117, 117, 117, 201, 117, 117, 139, 117, (175,254): 117, 35, 117, 35, 117, 117, 117, 117, 117, 35, 117, 35, (175,266): 117, 35, 117, 139, 35, 117, 35, 117, 35, 35, 35, 117, 35, (175,279): 201, 117, 117, 117, 35, 117, 117, 35, 117, 35, 35, 117, (175,291): 35, 117, 35, 35, 117, 35, 35, 117, 35, 117, 35, 35, 117, (175,304): 35, 35, 35, 232, 128, 232, 232, 128, 66, 79, 33, 35, 128, (175,317): 117, 11, 117, 35, 232, 33, 66, 195, 185, 195, 195, 156, (175,329): 117, 221, 49, 108, 253, 220, 186, 128, 49, 50, 220, 108, (175,341): 49, 181, 220, 105, 223, 180, 253, 223, 187, 156, 72, 79, (175,353): 2, 253, 185, 49, 187, 175, 14, 249, 156, 104, 156, 185, (175,365): 195, 8, 195, 183, 121, 121, 97, 104, 220, 33, (176,0): 51, 2, 79, 18, 241, 125, 100, 187, 142, 180, 28, 241, 251, (176,13): 14, 241, 241, 243, 236, 194, 207, 207, 24, 229, 70, 249, (176,25): 51, 241, 33, 219, 108, 100, 14, 125, 79, 125, 195, 185, (176,37): 35, 232, 35, 33, 66, 14, 100, 186, 66, 49, 195, 185, 79, (176,50): 185, 18, 185, 18, 18, 185, 195, 185, 232, 88, 245, 232, (176,62): 33, 55, 33, 185, 204, 18, 204, 241, 100, 2, 187, 63, 100, (176,75): 100, 156, 66, 195, 204, 66, 117, 220, 156, 49, 156, 14, (176,87): 156, 241, 180, 180, 99, 70, 246, 142, 157, 51, 125, 185, (176,99): 55, 35, 219, 100, 236, 18, 24, 243, 18, 62, 38, 100, 100, (176,112): 14, 153, 100, 194, 121, 193, 226, 25, 142, 153, 58, 149, (176,124): 47, 189, 69, 151, 115, 75, 149, 7, 39, 148, 148, 206, 39, (176,137): 7, 7, 60, 60, 28, 62, 241, 79, 185, 33, 232, 35, 232, 33, (176,151): 79, 79, 232, 35, 117, 140, 140, 88, 140, 117, 35, 35, 33, (176,164): 66, 24, 246, 157, 193, 248, 122, 122, 162, 162, 68, 127, (176,176): 247, 112, 127, 127, 159, 68, 127, 247, 112, 68, 164, 200, (176,188): 159, 67, 68, 68, 164, 190, 190, 164, 169, 160, 160, 160, (176,200): 21, 169, 166, 112, 127, 107, 199, 201, 35, 35, 35, 119, (176,212): 35, 88, 117, 35, 117, 117, 35, 139, 117, 117, 117, 117, (176,224): 117, 117, 117, 35, 139, 117, 117, 35, 117, 139, 117, 139, (176,236): 117, 117, 117, 35, 139, 117, 117, 117, 117, 117, 117, (176,247): 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, (176,258): 139, 117, 35, 117, 35, 139, 117, 117, 139, 117, 117, 117, (176,270): 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, 35, 35, (176,282): 35, 117, 201, 117, 35, 117, 35, 117, 35, 117, 35, 117, (176,294): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, 35, 128, (176,308): 33, 33, 33, 33, 33, 33, 33, 128, 35, 11, 245, 128, 88, (176,321): 11, 117, 245, 128, 11, 128, 79, 221, 181, 72, 63, 3, 128, (176,334): 108, 186, 49, 156, 50, 220, 63, 175, 50, 183, 123, 37, (176,346): 37, 37, 27, 2, 156, 100, 37, 175, 89, 37, 220, 186, 104, (176,359): 253, 14, 14, 156, 70, 27, 108, 72, 33, 66, 195, 63, 180, (176,372): 128, 72, 72, (177,0): 241, 100, 241, 125, 62, 28, 241, 241, 231, 219, 194, 15, (177,12): 51, 251, 71, 153, 233, 20, 74, 15, 15, 62, 28, 100, 66, (177,25): 18, 195, 18, 195, 100, 14, 108, 14, 72, 79, 33, 88, 88, (177,38): 33, 33, 79, 66, 234, 234, 128, 72, 185, 79, 195, 125, 195, (177,51): 195, 18, 18, 18, 79, 35, 33, 33, 232, 35, 232, 232, 33, (177,64): 79, 204, 195, 66, 241, 66, 156, 100, 24, 63, 63, 180, 28, (177,77): 100, 234, 204, 72, 79, 72, 35, 128, 66, 180, 128, 125, (177,89): 156, 14, 103, 51, 192, 192, 153, 180, 79, 55, 79, 139, (177,101): 204, 62, 204, 55, 62, 241, 233, 18, 119, 38, 125, 207, (177,113): 192, 104, 24, 226, 95, 178, 89, 152, 110, 196, 7, 188, (177,125): 115, 69, 115, 165, 211, 7, 209, 7, 39, 39, 148, 127, 149, (177,138): 196, 153, 60, 60, 194, 28, 185, 33, 232, 245, 117, 232, (177,150): 232, 35, 35, 139, 245, 140, 140, 140, 245, 139, 35, 35, (177,162): 119, 55, 241, 192, 157, 193, 248, 248, 122, 165, 197, (177,173): 158, 191, 85, 98, 127, 159, 159, 159, 159, 164, 101, 94, (177,185): 127, 159, 164, 218, 164, 190, 118, 190, 190, 164, 166, (177,196): 67, 40, 40, 132, 169, 67, 96, 112, 247, 102, 201, 201, (177,208): 201, 140, 88, 11, 117, 11, 11, 35, 117, 139, 117, 139, (177,220): 35, 35, 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, (177,232): 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, 117, (177,243): 139, 117, 117, 139, 35, 117, 35, 117, 201, 117, 35, 117, (177,255): 117, 35, 117, 117, 117, 139, 117, 117, 117, 117, 117, (177,266): 117, 117, 117, 117, 117, 201, 117, 117, 35, 117, 35, 117, (177,278): 35, 117, 117, 201, 117, 35, 117, 35, 35, 35, 35, 117, 35, (177,291): 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, (177,304): 35, 117, 232, 33, 232, 33, 33, 33, 232, 128, 117, 33, 33, (177,317): 33, 79, 18, 180, 234, 33, 221, 72, 79, 221, 72, 111, 186, (177,330): 46, 128, 46, 186, 44, 78, 49, 180, 253, 97, 181, 123, (177,342): 187, 104, 27, 97, 121, 104, 63, 14, 104, 89, 121, 253, (177,354): 156, 72, 2, 220, 14, 2, 220, 104, 195, 72, 2, 234, 245, (177,367): 195, 63, 72, 180, 223, 116, 195, 49, (178,0): 14, 241, 14, 219, 241, 14, 103, 142, 28, 153, 142, 241, (178,12): 103, 28, 62, 38, 145, 233, 233, 20, 24, 233, 14, 28, 219, (178,25): 18, 219, 79, 33, 185, 125, 66, 28, 156, 18, 33, 245, 128, (178,38): 33, 128, 18, 234, 100, 28, 79, 33, 79, 18, 66, 195, 38, (178,51): 18, 33, 232, 232, 245, 147, 35, 232, 128, 232, 33, 79, 33, (178,64): 79, 125, 18, 125, 241, 125, 185, 241, 100, 100, 24, 187, (178,76): 175, 175, 51, 180, 63, 14, 66, 18, 33, 116, 252, 180, 186, (178,89): 241, 14, 252, 93, 246, 24, 153, 14, 119, 33, 185, 232, (178,101): 185, 241, 241, 38, 100, 231, 231, 233, 185, 28, 233, 62, (178,113): 192, 157, 70, 193, 226, 157, 198, 248, 152, 196, 196, 94, (178,125): 158, 83, 98, 206, 127, 218, 31, 218, 73, 7, 23, 148, 23, (178,138): 149, 196, 194, 62, 194, 28, 66, 18, 33, 117, 232, 33, (178,150): 232, 245, 140, 245, 140, 140, 88, 140, 245, 139, 35, 139, (178,162): 119, 185, 100, 246, 249, 178, 248, 189, 189, 165, 115, (178,173): 247, 82, 98, 67, 112, 127, 68, 68, 163, 159, 127, 164, (178,185): 159, 159, 164, 164, 164, 164, 164, 164, 164, 67, 67, 160, (178,197): 169, 169, 169, 132, 169, 67, 82, 217, 159, 173, 19, 201, (178,209): 139, 88, 88, 117, 11, 11, 117, 117, 117, 35, 139, 117, (178,221): 117, 117, 117, 117, 117, 35, 117, 35, 117, 139, 117, 117, (178,233): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (178,244): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, (178,255): 117, 117, 35, 117, 117, 117, 117, 201, 117, 117, 201, (178,266): 117, 35, 117, 201, 117, 117, 117, 35, 117, 117, 35, 117, (178,278): 117, 35, 35, 117, 35, 35, 117, 35, 117, 201, 117, 117, (178,290): 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (178,304): 35, 128, 128, 119, 33, 33, 33, 33, 35, 35, 117, 11, 117, (178,317): 117, 128, 33, 195, 116, 18, 180, 27, 181, 66, 195, 220, (178,329): 156, 78, 27, 105, 90, 64, 183, 216, 105, 63, 105, 156, (178,341): 156, 187, 186, 70, 66, 79, 128, 14, 187, 70, 253, 66, (178,353): 195, 18, 195, 63, 195, 79, 195, 128, 128, 72, 33, 128, (178,365): 79, 195, 195, 245, 116, 2, 108, 180, 183, 121, (179,0): 66, 55, 185, 241, 93, 157, 51, 70, 70, 100, 125, 119, 185, (179,13): 103, 38, 28, 233, 60, 231, 38, 233, 185, 241, 241, 220, (179,25): 185, 35, 88, 35, 18, 125, 66, 195, 186, 221, 33, 33, 18, (179,38): 234, 66, 234, 195, 220, 187, 63, 195, 116, 195, 195, 79, (179,50): 79, 79, 128, 245, 35, 147, 128, 35, 245, 35, 33, 18, 185, (179,63): 79, 185, 125, 33, 79, 195, 185, 33, 66, 241, 14, 14, 180, (179,76): 70, 226, 8, 242, 51, 63, 63, 180, 72, 33, 180, 104, 100, (179,89): 14, 119, 66, 241, 51, 153, 192, 63, 79, 33, 18, 55, 79, (179,102): 241, 14, 100, 231, 62, 14, 62, 100, 142, 231, 100, 192, (179,114): 246, 58, 192, 51, 142, 142, 198, 198, 58, 149, 127, 39, (179,126): 47, 149, 149, 149, 209, 215, 209, 209, 159, 148, 149, (179,137): 149, 58, 7, 62, 233, 233, 241, 14, 66, 79, 232, 33, 33, (179,150): 35, 140, 245, 140, 245, 88, 140, 140, 140, 140, 35, 35, (179,162): 33, 219, 28, 93, 193, 248, 214, 151, 214, 56, 115, 112, (179,174): 68, 67, 101, 164, 247, 158, 98, 68, 159, 159, 127, 127, (179,186): 127, 164, 164, 164, 164, 164, 166, 112, 67, 40, 67, 67, (179,198): 205, 161, 21, 169, 67, 160, 109, 68, 9, 19, 139, 201, 35, (179,211): 117, 117, 128, 11, 117, 117, 117, 139, 117, 139, 117, (179,222): 117, 117, 35, 117, 117, 139, 117, 117, 117, 117, 117, (179,233): 117, 139, 117, 117, 117, 117, 117, 117, 139, 117, 117, (179,244): 117, 117, 117, 139, 35, 117, 35, 117, 35, 117, 139, 35, (179,256): 117, 117, 201, 117, 35, 117, 117, 117, 117, 117, 117, (179,267): 117, 117, 117, 117, 117, 117, 117, 139, 35, 117, 117, 35, (179,279): 117, 117, 35, 35, 117, 35, 35, 117, 35, 35, 117, 35, 117, (179,292): 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (179,306): 128, 35, 33, 128, 119, 33, 128, 11, 35, 128, 117, 11, (179,318): 245, 128, 46, 232, 210, 11, 79, 186, 220, 183, 156, 64, (179,330): 176, 253, 78, 108, 50, 50, 146, 3, 187, 72, 186, 220, 8, (179,343): 49, 33, 195, 186, 232, 195, 66, 2, 99, 18, 186, 156, 195, (179,356): 156, 72, 195, 186, 180, 100, 2, 63, 8, 97, 27, 252, 234, (179,369): 116, 51, 216, 79, 18, 66, (180,0): 100, 93, 100, 219, 14, 153, 142, 24, 152, 93, 153, 120, (180,12): 119, 219, 71, 236, 60, 194, 237, 51, 231, 38, 24, 100, 14, (180,25): 33, 210, 147, 33, 18, 79, 79, 14, 18, 33, 117, 117, 186, (180,38): 14, 14, 14, 195, 66, 14, 63, 100, 66, 128, 185, 128, 35, (180,51): 128, 33, 79, 116, 128, 79, 221, 79, 33, 33, 221, 79, 33, (180,64): 116, 185, 33, 185, 195, 125, 185, 66, 14, 28, 28, 28, 51, (180,77): 175, 25, 249, 242, 51, 27, 51, 234, 14, 14, 156, 2, 27, (180,90): 157, 125, 219, 62, 226, 214, 93, 66, 33, 125, 79, 79, 38, (180,103): 241, 66, 14, 18, 185, 100, 62, 66, 62, 100, 58, 58, 24, (180,116): 153, 74, 142, 142, 163, 110, 7, 196, 159, 73, 127, 39, (180,128): 196, 159, 60, 31, 218, 218, 73, 148, 196, 7, 60, 20, 233, (180,141): 38, 38, 66, 241, 195, 79, 232, 117, 35, 117, 88, 245, (180,153): 245, 245, 140, 245, 245, 140, 88, 140, 35, 55, 219, 180, (180,165): 188, 157, 193, 248, 151, 151, 56, 197, 158, 247, 158, (180,176): 109, 98, 68, 112, 98, 247, 127, 164, 127, 68, 159, 164, (180,188): 164, 68, 67, 68, 112, 112, 112, 67, 21, 169, 21, 161, (180,200): 202, 169, 160, 114, 167, 40, 190, 173, 19, 201, 119, 117, (180,212): 117, 11, 117, 117, 117, 117, 35, 117, 139, 117, 117, 117, (180,224): 117, 117, 35, 117, 117, 35, 117, 35, 139, 117, 117, 117, (180,236): 117, 139, 117, 117, 117, 117, 117, 117, 139, 117, 117, (180,247): 117, 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, (180,258): 117, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, (180,270): 117, 35, 117, 117, 117, 117, 117, 139, 117, 117, 35, 35, (180,282): 117, 35, 201, 35, 117, 117, 117, 35, 117, 35, 117, 35, (180,294): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (180,308): 35, 128, 128, 128, 117, 35, 33, 79, 186, 116, 18, 195, (180,320): 79, 49, 66, 72, 186, 116, 72, 50, 195, 116, 117, 11, 11, (180,333): 224, 210, 50, 156, 186, 63, 220, 221, 156, 186, 185, 128, (180,345): 128, 195, 100, 33, 185, 195, 186, 18, 104, 37, 121, 252, (180,357): 79, 79, 108, 183, 2, 99, 223, 70, 183, 252, 104, 104, 33, (180,370): 33, 35, 187, 14, 79, (181,0): 219, 180, 125, 201, 119, 185, 142, 93, 93, 142, 51, 142, (181,12): 194, 38, 241, 207, 188, 28, 237, 84, 24, 55, 66, 185, 100, (181,25): 185, 232, 117, 35, 128, 88, 35, 14, 72, 18, 186, 79, 79, (181,38): 195, 195, 18, 14, 63, 18, 116, 66, 234, 35, 79, 245, 11, (181,51): 35, 128, 33, 221, 232, 33, 195, 234, 234, 79, 128, 33, 33, (181,64): 33, 79, 186, 195, 195, 66, 195, 125, 204, 100, 28, 62, 28, (181,77): 231, 51, 249, 178, 93, 175, 252, 66, 220, 100, 104, 14, (181,89): 70, 37, 93, 28, 219, 192, 37, 226, 63, 185, 185, 185, 79, (181,102): 18, 204, 204, 24, 28, 28, 187, 100, 219, 194, 251, 228, (181,114): 194, 60, 60, 74, 7, 142, 7, 196, 7, 7, 7, 73, 7, 73, 7, (181,129): 196, 218, 31, 218, 31, 7, 149, 94, 149, 31, 233, 219, (181,141): 204, 125, 18, 18, 185, 33, 35, 117, 117, 232, 35, 117, (181,153): 140, 117, 117, 117, 245, 117, 35, 139, 119, 33, 241, 153, (181,165): 192, 157, 152, 152, 189, 56, 56, 197, 158, 82, 109, 244, (181,177): 109, 127, 159, 68, 127, 127, 112, 159, 164, 218, 164, 68, (181,189): 67, 112, 67, 112, 67, 68, 166, 190, 161, 21, 202, 202, (181,201): 170, 114, 143, 114, 167, 169, 190, 145, 201, 117, 35, (181,212): 117, 117, 117, 128, 117, 117, 139, 117, 35, 117, 117, (181,223): 117, 117, 35, 117, 117, 117, 35, 117, 117, 117, 117, 117, (181,235): 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, 117, (181,246): 117, 117, 117, 139, 35, 117, 117, 117, 35, 117, 35, 117, (181,258): 35, 117, 35, 117, 117, 117, 35, 117, 35, 117, 35, 117, (181,270): 117, 117, 35, 117, 117, 201, 117, 117, 117, 35, 117, 35, (181,282): 35, 117, 35, 117, 35, 35, 35, 117, 35, 117, 35, 117, 35, (181,295): 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 117, 117, 35, (181,308): 35, 119, 128, 232, 128, 33, 221, 186, 18, 79, 116, 116, (181,320): 116, 195, 72, 128, 128, 35, 11, 11, 128, 186, 50, 2, 46, (181,333): 186, 181, 253, 27, 156, 108, 66, 108, 108, 18, 156, 2, (181,345): 226, 183, 252, 104, 180, 18, 2, 253, 72, 156, 180, 181, (181,357): 63, 27, 123, 89, 220, 104, 37, 121, 216, 121, 72, 18, (181,369): 147, 232, 100, 14, 99, 89, (182,0): 153, 194, 185, 185, 241, 241, 185, 185, 192, 99, 178, 24, (182,12): 185, 219, 71, 119, 20, 236, 18, 62, 62, 185, 66, 66, 195, (182,25): 128, 35, 88, 88, 232, 232, 18, 33, 117, 116, 156, 156, 66, (182,38): 234, 241, 116, 100, 104, 195, 33, 79, 66, 116, 79, 35, (182,50): 128, 128, 35, 128, 33, 128, 128, 72, 14, 234, 195, 116, (182,62): 79, 116, 221, 185, 66, 14, 241, 100, 180, 14, 219, 241, (182,74): 38, 241, 24, 231, 74, 242, 89, 27, 51, 187, 18, 66, 180, (182,87): 175, 157, 27, 180, 192, 252, 192, 192, 25, 37, 104, 195, (182,99): 186, 195, 204, 72, 18, 234, 63, 187, 51, 51, 187, 24, 192, (182,112): 153, 228, 233, 31, 251, 60, 74, 110, 149, 110, 206, 110, (182,124): 7, 7, 209, 250, 209, 60, 228, 250, 250, 101, 31, 159, (182,136): 206, 110, 153, 250, 20, 233, 204, 18, 185, 116, 33, 35, (182,148): 11, 232, 33, 232, 245, 117, 117, 245, 139, 35, 232, 35, (182,160): 232, 232, 185, 241, 153, 192, 198, 59, 122, 151, 56, 56, (182,172): 115, 85, 98, 148, 164, 68, 112, 112, 127, 164, 164, 218, (182,184): 127, 68, 68, 68, 68, 68, 164, 200, 159, 166, 164, 200, (182,196): 190, 161, 161, 202, 169, 170, 143, 144, 143, 114, 143, (182,207): 40, 254, 145, 140, 139, 35, 11, 88, 35, 117, 117, 139, (182,219): 35, 117, 35, 117, 117, 117, 117, 35, 117, 139, 117, 117, (182,231): 201, 117, 117, 117, 139, 117, 117, 117, 117, 117, 117, (182,242): 117, 139, 117, 117, 117, 117, 117, 117, 117, 117, 201, (182,253): 117, 117, 117, 139, 117, 117, 117, 117, 35, 139, 117, (182,264): 117, 117, 139, 117, 117, 35, 117, 35, 139, 117, 117, 117, (182,276): 117, 35, 117, 117, 201, 117, 35, 117, 35, 117, 35, 117, (182,288): 35, 117, 35, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, (182,301): 35, 35, 35, 35, 128, 35, 128, 117, 128, 35, 128, 33, 33, (182,314): 224, 33, 128, 128, 245, 128, 116, 72, 116, 72, 49, 49, (182,326): 116, 221, 63, 223, 63, 181, 64, 175, 220, 46, 146, 100, (182,338): 27, 116, 49, 14, 156, 117, 49, 100, 72, 33, 128, 79, 14, (182,351): 175, 178, 183, 123, 70, 187, 63, 175, 108, 72, 72, 35, (182,363): 146, 2, 63, 234, 14, 14, 79, 187, 8, 214, 121, 8, (183,0): 180, 246, 70, 103, 185, 103, 185, 38, 219, 62, 142, 153, (183,12): 38, 55, 139, 185, 140, 55, 55, 35, 241, 66, 66, 119, 79, (183,25): 88, 11, 88, 35, 35, 88, 128, 79, 128, 185, 234, 66, 79, (183,38): 79, 195, 14, 234, 108, 14, 234, 79, 195, 221, 79, 221, (183,50): 116, 18, 221, 116, 49, 234, 221, 79, 18, 195, 234, 14, (183,62): 195, 186, 195, 125, 108, 180, 14, 104, 157, 187, 51, 207, (183,74): 100, 51, 53, 229, 15, 246, 178, 99, 51, 51, 14, 253, 252, (183,87): 66, 187, 24, 93, 28, 246, 192, 226, 95, 89, 175, 14, 195, (183,100): 66, 49, 204, 186, 18, 79, 66, 14, 14, 24, 192, 93, 58, (183,113): 196, 149, 75, 23, 149, 31, 7, 196, 148, 59, 211, 127, 39, (183,126): 101, 7, 250, 250, 92, 213, 215, 250, 250, 7, 149, 196, (183,138): 196, 207, 24, 28, 14, 241, 185, 79, 128, 117, 11, 35, 35, (183,151): 117, 35, 139, 117, 117, 245, 245, 35, 139, 79, 55, 185, (183,163): 62, 142, 188, 25, 193, 122, 29, 29, 162, 85, 197, 43, (183,175): 112, 109, 112, 68, 68, 68, 127, 127, 68, 159, 159, 112, (183,187): 112, 167, 112, 166, 190, 190, 164, 200, 155, 155, 161, (183,198): 21, 202, 170, 170, 143, 239, 143, 143, 61, 30, 159, 113, (183,210): 199, 117, 128, 117, 88, 128, 117, 35, 117, 117, 117, 117, (183,222): 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, 117, (183,233): 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, 117, (183,244): 117, 117, 117, 117, 201, 117, 35, 117, 117, 117, 35, 117, (183,256): 117, 117, 117, 201, 117, 117, 117, 117, 35, 117, 117, (183,267): 117, 117, 139, 117, 117, 117, 117, 117, 35, 117, 117, 35, (183,279): 117, 117, 35, 117, 35, 35, 35, 117, 35, 117, 35, 117, (183,291): 117, 201, 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, (183,304): 35, 35, 35, 35, 35, 35, 128, 33, 128, 117, 128, 128, 128, (183,317): 128, 224, 116, 116, 116, 72, 50, 63, 156, 195, 49, 186, (183,329): 46, 183, 105, 156, 253, 78, 89, 64, 180, 138, 8, 64, 175, (183,342): 253, 100, 128, 187, 27, 63, 187, 66, 14, 216, 99, 216, (183,354): 123, 220, 2, 253, 180, 195, 72, 156, 128, 33, 33, 186, (183,366): 180, 70, 79, 33, 187, 242, 226, 242, 242, (184,0): 28, 93, 193, 37, 153, 125, 119, 125, 120, 35, 55, 55, 33, (184,13): 125, 119, 55, 139, 185, 71, 185, 185, 18, 79, 117, 11, (184,25): 117, 35, 245, 245, 245, 33, 33, 245, 18, 33, 88, 79, 14, (184,38): 220, 14, 100, 14, 180, 14, 14, 128, 79, 195, 116, 79, 116, (184,51): 72, 72, 18, 72, 49, 100, 116, 221, 186, 14, 50, 220, 14, (184,64): 100, 195, 195, 66, 125, 66, 28, 192, 153, 53, 100, 194, (184,76): 207, 25, 15, 246, 226, 53, 242, 175, 66, 241, 104, 18, 14, (184,89): 104, 100, 241, 192, 100, 142, 25, 89, 37, 175, 100, 195, (184,101): 195, 79, 33, 18, 79, 79, 66, 100, 62, 241, 62, 250, 149, (184,114): 110, 206, 45, 23, 7, 7, 7, 127, 206, 206, 149, 7, 209, (184,127): 209, 60, 60, 20, 213, 102, 250, 31, 196, 58, 188, 84, (184,139): 142, 100, 100, 66, 185, 116, 33, 33, 33, 128, 232, 128, (184,151): 35, 128, 35, 245, 139, 35, 35, 35, 232, 185, 219, 241, (184,163): 194, 142, 246, 152, 152, 165, 59, 122, 85, 158, 217, 98, (184,175): 109, 127, 112, 127, 164, 159, 164, 163, 159, 164, 159, (184,186): 164, 159, 164, 190, 200, 200, 118, 200, 200, 200, 190, (184,197): 166, 169, 21, 205, 170, 114, 143, 143, 143, 143, 126, (184,208): 112, 6, 199, 201, 117, 117, 128, 88, 117, 35, 117, 139, (184,220): 245, 35, 117, 117, 117, 117, 35, 35, 201, 117, 35, 117, (184,232): 117, 117, 117, 117, 117, 117, 117, 117, 117, 139, 117, (184,243): 117, 117, 139, 117, 117, 117, 117, 140, 117, 117, 140, (184,254): 35, 119, 117, 35, 117, 117, 117, 35, 117, 35, 139, 117, (184,266): 117, 201, 117, 117, 117, 201, 117, 117, 35, 117, 117, 35, (184,278): 139, 117, 35, 35, 35, 117, 35, 117, 35, 35, 117, 35, 117, (184,291): 35, 35, 117, 35, 35, 35, 117, 245, 245, 245, 35, 35, 35, (184,304): 232, 35, 35, 117, 117, 117, 128, 128, 79, 49, 234, 116, (184,316): 221, 146, 220, 49, 128, 49, 49, 221, 221, 49, 156, 46, (184,328): 221, 221, 33, 186, 128, 195, 63, 91, 104, 105, 183, 121, (184,340): 64, 220, 27, 253, 70, 123, 252, 18, 18, 100, 234, 14, 63, (184,353): 220, 18, 72, 186, 2, 2, 220, 27, 2, 14, 156, 35, 72, 63, (184,367): 104, 242, 178, 214, 104, 195, 38, 66, (185,0): 153, 100, 142, 226, 152, 142, 241, 24, 93, 219, 185, 232, (185,12): 201, 55, 185, 139, 117, 55, 185, 185, 79, 79, 33, 88, 33, (185,25): 128, 117, 88, 11, 245, 35, 79, 33, 116, 33, 33, 72, 72, (185,38): 18, 234, 234, 66, 234, 79, 72, 79, 18, 79, 72, 221, 33, (185,51): 79, 72, 195, 195, 195, 220, 220, 220, 14, 49, 66, 220, 63, (185,64): 220, 66, 241, 100, 14, 241, 241, 241, 55, 24, 38, 233, (185,76): 233, 231, 231, 15, 89, 214, 37, 242, 241, 204, 51, 241, (185,88): 187, 157, 187, 219, 153, 24, 28, 241, 99, 89, 37, 104, 66, (185,101): 33, 221, 195, 72, 66, 156, 14, 219, 185, 125, 103, 60, 7, (185,114): 149, 7, 7, 7, 39, 206, 47, 149, 7, 149, 110, 196, 60, (185,127): 250, 196, 196, 74, 31, 250, 213, 76, 20, 31, 163, 153, (185,139): 28, 62, 66, 204, 18, 185, 221, 33, 79, 33, 128, 35, 11, (185,152): 35, 245, 35, 245, 35, 245, 117, 232, 185, 185, 66, 153, (185,164): 192, 110, 188, 122, 29, 98, 94, 158, 191, 98, 68, 112, (185,176): 112, 67, 164, 68, 159, 200, 200, 159, 164, 164, 164, 164, (185,188): 190, 200, 200, 200, 174, 200, 190, 166, 166, 169, 40, (185,199): 169, 132, 114, 143, 61, 143, 184, 184, 131, 112, 107, 19, (185,211): 201, 117, 35, 117, 88, 117, 245, 35, 139, 117, 35, 117, (185,223): 117, 117, 117, 35, 117, 117, 35, 117, 117, 117, 139, 117, (185,235): 117, 139, 117, 117, 117, 117, 117, 117, 117, 117, 117, (185,246): 117, 117, 201, 117, 35, 117, 117, 117, 117, 201, 117, (185,257): 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, (185,269): 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, 35, (185,281): 117, 117, 201, 35, 35, 117, 35, 35, 117, 35, 117, 117, (185,293): 117, 35, 117, 35, 35, 117, 245, 35, 35, 35, 245, 232, (185,305): 128, 232, 128, 33, 221, 79, 33, 11, 33, 195, 181, 176, (185,317): 234, 116, 234, 221, 11, 221, 220, 156, 224, 128, 186, 11, (185,329): 186, 156, 253, 216, 176, 156, 88, 181, 123, 37, 63, 33, (185,341): 116, 100, 221, 14, 195, 234, 66, 187, 183, 14, 33, 241, (185,353): 72, 220, 66, 14, 49, 79, 116, 185, 104, 2, 66, 72, 156, (185,366): 14, 104, 178, 187, 28, 28, 252, 231, 18, (186,0): 192, 142, 51, 25, 99, 153, 38, 28, 178, 153, 62, 33, 185, (186,13): 33, 219, 18, 140, 232, 55, 232, 232, 33, 79, 128, 221, 35, (186,26): 11, 117, 35, 35, 128, 33, 245, 35, 33, 18, 66, 18, 18, (186,39): 156, 14, 14, 14, 79, 79, 72, 66, 79, 72, 79, 79, 116, 66, (186,53): 234, 156, 14, 156, 14, 195, 195, 234, 14, 14, 156, 14, 14, (186,66): 14, 241, 219, 66, 219, 125, 185, 219, 71, 233, 28, 62, 60, (186,79): 58, 99, 89, 53, 93, 241, 79, 24, 63, 241, 8, 214, 27, 28, (186,93): 241, 241, 241, 70, 249, 89, 249, 175, 180, 49, 195, 185, (186,105): 14, 63, 100, 194, 28, 28, 60, 60, 73, 7, 7, 73, 7, 149, (186,119): 149, 47, 7, 31, 7, 23, 159, 31, 250, 20, 194, 20, 251, (186,132): 102, 250, 31, 74, 163, 60, 194, 60, 14, 38, 72, 72, 79, (186,145): 221, 79, 221, 79, 79, 33, 232, 35, 128, 35, 232, 35, 245, (186,158): 35, 232, 66, 219, 62, 51, 192, 110, 188, 122, 29, 29, (186,170): 191, 247, 68, 68, 67, 68, 217, 167, 127, 68, 112, 68, (186,182): 218, 159, 164, 164, 164, 200, 118, 118, 200, 200, 200, (186,193): 136, 190, 190, 67, 160, 67, 166, 161, 170, 114, 143, 131, (186,205): 170, 170, 131, 112, 218, 145, 199, 185, 185, 35, 88, 117, (186,217): 35, 245, 139, 35, 117, 117, 117, 117, 35, 117, 35, 35, (186,229): 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, 139, (186,240): 117, 117, 117, 139, 117, 117, 117, 117, 35, 35, 117, 117, (186,252): 35, 117, 117, 117, 117, 117, 117, 117, 139, 117, 201, (186,263): 117, 117, 201, 117, 117, 35, 117, 35, 117, 35, 117, 35, (186,275): 139, 117, 117, 117, 35, 117, 35, 35, 117, 117, 35, 35, (186,287): 117, 35, 117, 35, 117, 35, 117, 35, 35, 117, 35, 35, 35, (186,300): 35, 35, 35, 35, 232, 245, 117, 35, 33, 79, 33, 33, 49, (186,313): 128, 224, 49, 50, 91, 181, 46, 234, 27, 36, 183, 27, 216, (186,326): 97, 183, 27, 186, 63, 156, 186, 35, 186, 105, 128, 221, (186,338): 105, 49, 33, 72, 195, 72, 2, 14, 220, 79, 66, 14, 241, (186,351): 221, 210, 14, 123, 72, 116, 156, 180, 123, 175, 180, 180, (186,363): 253, 253, 63, 63, 187, 252, 187, 14, 28, 89, 242, 33, (187,0): 28, 28, 62, 103, 157, 175, 62, 140, 93, 157, 214, 193, 70, (187,13): 125, 119, 204, 140, 35, 232, 232, 128, 79, 195, 156, 221, (187,25): 11, 245, 128, 33, 128, 232, 79, 35, 116, 72, 195, 195, 66, (187,38): 72, 79, 14, 108, 187, 234, 128, 232, 116, 33, 79, 195, 66, (187,51): 234, 234, 241, 63, 2, 104, 180, 108, 100, 187, 104, 63, (187,63): 66, 241, 100, 153, 14, 38, 241, 100, 219, 71, 119, 71, (187,75): 219, 233, 71, 219, 71, 62, 207, 100, 204, 33, 55, 66, 14, (187,88): 18, 14, 157, 51, 28, 241, 38, 38, 142, 70, 121, 178, 214, (187,101): 97, 180, 186, 108, 187, 187, 24, 24, 51, 153, 251, 218, (187,113): 228, 73, 39, 7, 39, 7, 250, 7, 7, 7, 110, 149, 60, 194, (187,127): 60, 74, 196, 74, 60, 60, 60, 250, 60, 74, 60, 62, 100, (187,140): 241, 66, 18, 72, 195, 195, 186, 33, 79, 221, 79, 221, (187,152): 128, 232, 33, 33, 33, 232, 79, 18, 28, 24, 51, 192, 188, (187,165): 84, 75, 165, 165, 115, 115, 217, 39, 164, 68, 67, 112, (187,177): 109, 217, 68, 68, 94, 68, 218, 164, 218, 200, 118, 200, (187,189): 155, 200, 190, 190, 190, 190, 166, 166, 67, 166, 136, (187,200): 155, 42, 132, 170, 170, 57, 170, 160, 67, 159, 113, 19, (187,212): 185, 125, 119, 33, 245, 35, 245, 35, 245, 35, 117, 117, (187,224): 117, 117, 35, 117, 201, 117, 35, 117, 139, 117, 117, 117, (187,236): 117, 139, 117, 117, 117, 117, 117, 117, 117, 117, 117, (187,247): 117, 35, 35, 117, 117, 117, 201, 117, 117, 117, 117, 201, (187,259): 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, (187,270): 117, 35, 117, 117, 117, 117, 117, 201, 117, 117, 35, 35, (187,282): 117, 35, 35, 117, 201, 35, 117, 35, 117, 35, 117, 35, (187,294): 117, 35, 117, 35, 35, 35, 35, 245, 35, 245, 35, 117, 245, (187,307): 35, 33, 33, 128, 128, 128, 116, 116, 49, 180, 80, 46, (187,319): 182, 50, 111, 116, 181, 181, 49, 49, 105, 105, 27, 156, (187,331): 221, 108, 123, 156, 117, 49, 210, 128, 221, 195, 50, 14, (187,343): 156, 14, 2, 216, 175, 183, 180, 2, 18, 79, 88, 72, 33, (187,356): 66, 156, 66, 97, 121, 72, 50, 216, 89, 70, 252, 2, 63, (187,369): 187, 99, 216, 8, 226, 70, (188,0): 24, 193, 178, 192, 152, 25, 51, 125, 219, 142, 99, 8, 178, (188,13): 153, 117, 185, 117, 232, 79, 33, 185, 195, 49, 14, 116, (188,25): 33, 35, 128, 33, 35, 128, 33, 128, 79, 18, 195, 66, 234, (188,38): 234, 204, 234, 28, 252, 187, 79, 128, 79, 18, 79, 195, (188,50): 234, 62, 66, 234, 14, 63, 252, 27, 27, 252, 104, 187, 63, (188,63): 66, 219, 194, 24, 142, 192, 246, 142, 38, 185, 219, 231, (188,75): 251, 38, 55, 219, 71, 71, 204, 55, 55, 185, 185, 204, 204, (188,88): 18, 245, 204, 204, 14, 28, 241, 219, 194, 153, 192, 123, (188,100): 99, 123, 180, 156, 79, 66, 156, 62, 180, 192, 15, 142, 7, (188,113): 209, 218, 7, 73, 73, 7, 209, 101, 159, 110, 196, 60, 194, (188,126): 60, 153, 251, 60, 60, 194, 163, 60, 250, 251, 20, 251, (188,138): 38, 71, 18, 195, 195, 18, 49, 66, 195, 186, 185, 79, 33, (188,151): 128, 232, 128, 33, 79, 18, 18, 195, 66, 241, 100, 142, (188,163): 51, 110, 110, 94, 206, 158, 148, 247, 191, 158, 68, 164, (188,175): 68, 164, 112, 112, 164, 164, 68, 164, 200, 159, 200, 118, (188,187): 118, 200, 200, 190, 190, 166, 202, 190, 136, 42, 166, (188,198): 190, 155, 155, 190, 190, 190, 202, 190, 21, 169, 166, (188,209): 127, 107, 199, 55, 55, 88, 35, 245, 35, 245, 139, 35, (188,221): 117, 117, 117, 117, 117, 35, 117, 35, 117, 117, 117, 117, (188,233): 117, 117, 117, 117, 117, 117, 117, 139, 117, 117, 117, (188,244): 117, 139, 117, 117, 117, 201, 117, 117, 117, 35, 35, 117, (188,256): 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, (188,268): 117, 35, 139, 117, 117, 201, 117, 117, 117, 117, 117, 35, (188,280): 117, 201, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (188,292): 35, 117, 201, 117, 245, 117, 35, 35, 245, 139, 35, 35, (188,304): 232, 232, 33, 33, 33, 79, 33, 79, 116, 116, 72, 116, 111, (188,317): 50, 50, 44, 46, 224, 11, 210, 88, 224, 128, 11, 79, 195, (188,330): 210, 49, 128, 116, 64, 183, 221, 49, 195, 72, 50, 8, 64, (188,343): 108, 187, 63, 2, 204, 18, 245, 72, 128, 195, 128, 220, (188,355): 27, 37, 37, 14, 104, 2, 220, 72, 72, 104, 63, 108, 187, (188,368): 27, 93, 100, 100, 125, 14, 185, (189,0): 139, 103, 251, 219, 51, 70, 153, 55, 119, 55, 117, 147, 51, (189,13): 28, 35, 232, 139, 33, 185, 18, 72, 18, 195, 195, 72, 116, (189,26): 224, 245, 245, 35, 232, 33, 33, 245, 33, 195, 66, 195, (189,38): 195, 72, 14, 49, 180, 252, 195, 79, 204, 195, 195, 66, 66, (189,51): 66, 234, 14, 241, 195, 28, 24, 187, 2, 28, 234, 204, 185, (189,64): 66, 233, 100, 207, 246, 25, 192, 71, 139, 55, 62, 185, (189,76): 120, 55, 185, 139, 204, 71, 55, 236, 204, 18, 79, 18, 117, (189,89): 35, 38, 204, 62, 231, 100, 125, 125, 241, 194, 192, 175, (189,101): 187, 156, 66, 66, 66, 241, 66, 251, 194, 60, 74, 7, 159, (189,114): 148, 206, 7, 7, 39, 39, 73, 149, 7, 31, 102, 194, 194, (189,127): 194, 194, 153, 228, 251, 251, 251, 113, 243, 103, 103, (189,138): 219, 185, 79, 204, 18, 186, 221, 72, 195, 195, 195, 195, (189,150): 185, 128, 128, 35, 33, 79, 18, 18, 66, 241, 100, 194, (189,162): 187, 152, 152, 188, 94, 75, 4, 127, 164, 112, 109, 112, (189,174): 159, 77, 164, 77, 164, 68, 68, 164, 200, 164, 218, 200, (189,186): 118, 200, 200, 164, 166, 166, 166, 202, 190, 136, 190, (189,197): 190, 32, 155, 106, 155, 155, 136, 200, 136, 202, 161, 68, (189,209): 112, 254, 19, 201, 35, 210, 245, 35, 245, 35, 245, 245, (189,221): 35, 117, 117, 117, 35, 117, 35, 117, 35, 35, 117, 117, (189,233): 117, 117, 139, 117, 117, 117, 117, 117, 117, 139, 117, (189,244): 117, 117, 117, 117, 88, 232, 119, 117, 117, 35, 35, 140, (189,256): 117, 35, 117, 35, 117, 117, 117, 117, 117, 35, 117, 35, (189,268): 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, (189,280): 117, 35, 35, 117, 35, 35, 117, 35, 35, 117, 35, 117, 35, (189,293): 117, 35, 35, 140, 117, 35, 35, 35, 35, 232, 232, 232, 55, (189,306): 79, 33, 79, 79, 79, 116, 180, 50, 49, 49, 133, 11, 46, (189,319): 64, 138, 156, 49, 50, 138, 63, 63, 180, 221, 181, 64, (189,331): 156, 220, 66, 79, 185, 72, 220, 108, 180, 63, 253, 27, 8, (189,344): 220, 18, 18, 72, 66, 33, 14, 63, 175, 27, 2, 18, 72, 253, (189,358): 221, 33, 221, 185, 18, 195, 181, 252, 183, 104, 14, 186, (189,370): 100, 2, 35, 187, 37, (190,0): 55, 38, 100, 153, 153, 153, 241, 71, 88, 55, 185, 140, 55, (190,13): 33, 147, 117, 35, 33, 33, 185, 79, 221, 221, 33, 221, 116, (190,26): 33, 128, 245, 128, 33, 232, 72, 79, 72, 234, 204, 116, 18, (190,39): 232, 116, 79, 234, 180, 33, 33, 116, 18, 66, 66, 204, 204, (190,52): 66, 241, 66, 79, 66, 66, 241, 14, 241, 66, 18, 185, 233, (190,65): 219, 38, 233, 28, 142, 231, 71, 185, 120, 38, 120, 219, (190,77): 241, 219, 120, 125, 236, 185, 204, 71, 55, 79, 38, 35, 79, (190,90): 33, 55, 100, 231, 28, 139, 204, 219, 241, 153, 252, 187, (190,102): 100, 156, 14, 156, 241, 231, 24, 24, 58, 23, 7, 23, 47, (190,115): 217, 211, 148, 159, 7, 7, 163, 250, 251, 102, 194, 60, (190,127): 194, 241, 60, 60, 251, 250, 153, 149, 192, 20, 38, 38, (190,139): 38, 195, 18, 116, 221, 35, 221, 186, 186, 186, 49, 195, (190,151): 221, 33, 128, 33, 79, 18, 195, 125, 195, 195, 185, 241, (190,163): 58, 15, 74, 7, 94, 54, 217, 148, 68, 77, 67, 68, 68, 77, (190,177): 164, 218, 164, 68, 164, 101, 164, 118, 101, 200, 200, (190,188): 190, 164, 166, 166, 21, 42, 190, 136, 32, 32, 200, 106, (190,200): 9, 106, 200, 200, 136, 136, 166, 67, 67, 68, 254, 201, (190,212): 201, 35, 88, 117, 245, 35, 245, 139, 35, 245, 117, 117, (190,224): 117, 117, 35, 35, 35, 117, 139, 117, 117, 139, 117, 117, (190,236): 117, 117, 139, 117, 117, 117, 117, 117, 117, 117, 117, (190,247): 35, 117, 33, 185, 35, 117, 117, 35, 117, 117, 117, 35, (190,259): 117, 117, 201, 117, 35, 117, 117, 35, 139, 117, 117, 201, (190,271): 117, 117, 35, 117, 35, 117, 35, 117, 117, 35, 117, 35, (190,283): 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (190,296): 35, 35, 35, 35, 245, 35, 33, 79, 232, 232, 232, 232, 232, (190,309): 33, 33, 221, 128, 210, 11, 46, 111, 46, 111, 11, 111, (190,321): 128, 224, 3, 49, 156, 50, 138, 108, 35, 180, 33, 117, 72, (190,334): 221, 108, 27, 2, 2, 105, 72, 33, 33, 64, 24, 253, 63, 14, (190,348): 234, 18, 28, 2, 2, 195, 72, 195, 220, 100, 116, 186, 104, (190,361): 72, 221, 156, 18, 14, 14, 221, 187, 156, 66, 180, 8, 214, (190,374): 99, (191,0): 201, 119, 55, 62, 241, 28, 219, 119, 55, 140, 117, 147, (191,12): 147, 185, 185, 119, 232, 35, 117, 35, 128, 35, 128, 128, (191,24): 88, 33, 116, 33, 128, 221, 221, 35, 232, 18, 100, 14, 66, (191,37): 63, 180, 66, 66, 195, 28, 187, 33, 79, 66, 66, 18, 204, (191,50): 204, 18, 79, 18, 204, 204, 204, 18, 195, 241, 204, 33, 33, (191,63): 236, 79, 243, 38, 204, 236, 125, 219, 79, 201, 55, 66, (191,75): 120, 33, 71, 119, 185, 233, 38, 28, 231, 241, 241, 28, (191,87): 246, 204, 241, 55, 232, 241, 241, 24, 38, 38, 251, 241, (191,99): 100, 180, 28, 180, 252, 27, 180, 231, 246, 25, 188, 196, (191,111): 74, 148, 247, 148, 23, 162, 206, 7, 31, 31, 20, 213, 102, (191,124): 194, 194, 194, 153, 103, 142, 192, 74, 153, 194, 62, 102, (191,136): 103, 219, 219, 14, 156, 79, 33, 221, 221, 186, 221, 33, (191,148): 221, 186, 186, 79, 79, 33, 128, 79, 18, 195, 18, 125, (191,160): 241, 103, 241, 194, 163, 196, 196, 23, 98, 148, 68, 112, (191,172): 247, 68, 68, 164, 218, 200, 106, 155, 218, 190, 118, 118, (191,184): 118, 200, 190, 164, 190, 190, 166, 96, 161, 161, 130, (191,195): 136, 136, 32, 155, 9, 174, 200, 190, 190, 200, 136, 190, (191,207): 166, 166, 190, 173, 19, 117, 201, 117, 35, 35, 245, 35, (191,219): 35, 117, 35, 117, 201, 117, 117, 117, 117, 201, 117, 117, (191,231): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (191,242): 117, 117, 117, 117, 139, 117, 35, 185, 185, 55, 140, 117, (191,254): 35, 140, 117, 117, 139, 35, 117, 117, 117, 117, 35, 117, (191,266): 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, (191,277): 139, 35, 117, 35, 35, 35, 117, 35, 35, 117, 35, 35, 117, (191,290): 201, 117, 35, 35, 117, 35, 35, 35, 232, 35, 35, 35, 79, (191,303): 185, 79, 232, 245, 245, 35, 128, 35, 11, 245, 224, 3, 63, (191,316): 176, 138, 146, 46, 111, 186, 186, 116, 46, 186, 146, 49, (191,328): 116, 176, 186, 116, 46, 156, 180, 33, 88, 146, 27, 63, (191,340): 156, 253, 79, 156, 63, 70, 180, 195, 66, 108, 252, 2, (191,352): 121, 121, 178, 27, 108, 72, 108, 187, 18, 156, 18, 2, 27, (191,365): 70, 108, 108, 104, 66, 175, 121, 99, 195, 185, (192,0): 119, 119, 119, 55, 55, 55, 79, 33, 119, 35, 117, 35, 33, (192,13): 33, 33, 35, 232, 88, 245, 140, 88, 33, 128, 33, 128, 116, (192,26): 195, 72, 128, 128, 46, 116, 33, 204, 66, 14, 241, 100, (192,38): 100, 28, 100, 104, 2, 51, 180, 18, 72, 204, 79, 79, 185, (192,51): 18, 18, 18, 18, 18, 18, 204, 195, 185, 79, 33, 79, 55, 33, (192,65): 18, 236, 33, 55, 232, 232, 185, 18, 79, 79, 219, 125, 33, (192,78): 79, 66, 63, 180, 28, 14, 66, 51, 25, 100, 28, 18, 232, (192,91): 139, 232, 204, 28, 100, 100, 28, 100, 241, 63, 252, 93, (192,103): 187, 157, 99, 157, 24, 196, 23, 58, 149, 23, 4, 211, 127, (192,116): 23, 149, 31, 20, 20, 20, 251, 103, 243, 251, 102, 102, (192,128): 62, 102, 251, 38, 251, 62, 251, 66, 219, 18, 185, 185, (192,140): 185, 221, 46, 186, 66, 195, 72, 195, 156, 3, 46, 116, 3, (192,153): 116, 116, 195, 195, 18, 195, 241, 103, 62, 102, 102, 194, (192,165): 163, 127, 98, 162, 217, 98, 112, 77, 164, 218, 200, 101, (192,177): 118, 254, 118, 101, 118, 118, 9, 174, 200, 164, 202, 190, (192,189): 136, 161, 161, 130, 161, 161, 161, 42, 161, 190, 200, (192,200): 155, 155, 136, 202, 166, 166, 21, 169, 169, 166, 118, (192,211): 145, 199, 125, 35, 139, 139, 245, 35, 245, 11, 117, 140, (192,223): 139, 117, 35, 117, 117, 117, 117, 35, 117, 139, 117, 117, (192,235): 139, 117, 117, 139, 117, 117, 139, 117, 117, 139, 117, (192,246): 117, 117, 117, 35, 35, 35, 117, 117, 117, 119, 117, 117, (192,258): 117, 117, 117, 35, 117, 117, 139, 117, 117, 201, 117, (192,269): 117, 35, 117, 117, 35, 139, 117, 117, 117, 117, 117, 201, (192,281): 117, 35, 35, 117, 35, 35, 117, 35, 35, 119, 35, 117, 117, (192,294): 35, 35, 35, 232, 128, 232, 128, 232, 232, 128, 79, 232, (192,306): 35, 232, 128, 35, 11, 245, 11, 210, 224, 46, 49, 146, (192,318): 138, 105, 181, 90, 186, 186, 80, 221, 49, 186, 108, 108, (192,330): 156, 91, 116, 186, 138, 181, 253, 183, 123, 104, 220, 72, (192,342): 108, 221, 72, 234, 180, 234, 180, 128, 100, 234, 116, (192,353): 195, 234, 79, 33, 14, 187, 253, 27, 175, 99, 8, 178, 99, (192,366): 175, 93, 187, 28, 195, 125, 252, 241, 62, (193,0): 35, 139, 117, 117, 119, 33, 33, 33, 128, 35, 35, 33, 33, (193,13): 33, 33, 33, 35, 140, 35, 117, 232, 79, 33, 33, 116, 128, (193,26): 221, 3, 72, 72, 49, 234, 18, 204, 66, 204, 66, 66, 66, 66, (193,40): 195, 100, 100, 2, 180, 66, 72, 79, 236, 236, 79, 236, 79, (193,53): 236, 185, 185, 33, 79, 79, 33, 232, 55, 33, 18, 185, 79, (193,66): 79, 18, 195, 33, 35, 79, 195, 33, 232, 72, 100, 24, 187, (193,79): 252, 104, 180, 63, 175, 180, 246, 99, 25, 246, 231, 71, (193,91): 33, 185, 79, 33, 195, 241, 63, 180, 14, 66, 100, 187, 252, (193,104): 192, 192, 58, 237, 45, 74, 228, 31, 39, 47, 47, 149, 149, (193,117): 196, 60, 20, 251, 103, 103, 243, 243, 103, 233, 103, 251, (193,129): 241, 241, 38, 38, 66, 219, 66, 204, 185, 33, 221, 33, (193,141): 128, 128, 221, 195, 146, 156, 108, 105, 105, 78, 78, 80, (193,153): 80, 49, 49, 195, 185, 185, 219, 157, 152, 192, 194, 250, (193,165): 94, 162, 197, 165, 109, 112, 164, 164, 200, 118, 9, 9, (193,177): 254, 254, 118, 118, 9, 9, 9, 200, 202, 166, 166, 161, (193,189): 161, 21, 96, 161, 96, 161, 161, 21, 169, 202, 130, 136, (193,201): 136, 202, 161, 21, 21, 161, 21, 57, 166, 154, 201, 117, (193,213): 38, 119, 140, 139, 139, 11, 117, 11, 117, 139, 139, 140, (193,225): 117, 139, 35, 117, 117, 201, 117, 117, 117, 117, 117, (193,236): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (193,247): 117, 117, 117, 119, 35, 117, 117, 35, 35, 117, 35, 117, (193,259): 35, 117, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, (193,271): 35, 117, 117, 117, 117, 201, 117, 117, 117, 117, 35, 117, (193,283): 35, 117, 201, 117, 35, 139, 35, 35, 117, 139, 245, 117, (193,295): 35, 33, 33, 33, 33, 232, 11, 35, 232, 33, 232, 35, 35, (193,308): 128, 35, 128, 33, 245, 221, 72, 11, 128, 11, 46, 111, (193,320): 253, 156, 80, 156, 186, 50, 253, 156, 3, 88, 146, 156, (193,332): 146, 33, 49, 156, 156, 156, 220, 183, 91, 63, 104, 121, (193,344): 195, 33, 181, 220, 33, 63, 147, 128, 63, 245, 195, 35, (193,356): 108, 123, 70, 8, 70, 214, 70, 180, 66, 24, 226, 51, 70, (193,369): 27, 24, 153, 70, 157, 70, (194,0): 35, 117, 140, 117, 119, 185, 185, 185, 35, 33, 116, 185, (194,12): 79, 33, 33, 33, 117, 140, 35, 128, 79, 18, 79, 186, 2, (194,25): 195, 116, 49, 49, 116, 116, 116, 79, 204, 66, 66, 204, 18, (194,38): 18, 185, 79, 204, 72, 14, 28, 66, 79, 33, 18, 18, 79, 79, (194,52): 55, 79, 79, 79, 33, 55, 33, 33, 55, 33, 33, 185, 232, 79, (194,66): 185, 204, 204, 33, 232, 18, 33, 14, 93, 8, 8, 175, 93, 51, (194,80): 8, 252, 100, 28, 187, 231, 93, 53, 214, 249, 100, 236, (194,92): 204, 18, 232, 204, 18, 66, 241, 100, 28, 100, 100, 14, (194,104): 100, 194, 153, 246, 59, 45, 74, 7, 209, 127, 110, 7, 7, (194,117): 163, 194, 20, 103, 243, 243, 71, 113, 243, 76, 243, 62, (194,129): 62, 62, 103, 219, 125, 125, 125, 195, 185, 221, 128, 128, (194,141): 117, 128, 128, 221, 186, 186, 146, 50, 138, 80, 146, 72, (194,153): 3, 49, 220, 234, 195, 14, 153, 241, 196, 153, 101, 196, (194,165): 94, 98, 98, 197, 217, 68, 164, 164, 200, 9, 107, 154, (194,177): 107, 9, 118, 9, 154, 9, 118, 190, 166, 166, 169, 169, (194,189): 169, 169, 169, 170, 169, 161, 161, 96, 169, 169, 161, (194,200): 202, 161, 202, 166, 21, 161, 161, 21, 161, 166, 200, 201, (194,212): 199, 185, 139, 55, 139, 139, 35, 11, 117, 117, 117, 139, (194,224): 117, 117, 117, 117, 117, 117, 117, 117, 117, 139, 117, (194,235): 117, 139, 117, 117, 139, 117, 117, 117, 117, 117, 117, (194,246): 139, 117, 117, 35, 35, 35, 117, 201, 117, 35, 117, 117, (194,258): 117, 139, 117, 117, 117, 35, 117, 201, 117, 117, 35, 117, (194,270): 35, 117, 117, 201, 117, 117, 117, 117, 35, 117, 35, 35, (194,282): 35, 35, 117, 35, 117, 35, 35, 35, 139, 245, 88, 245, 35, (194,295): 35, 18, 185, 221, 33, 128, 35, 128, 117, 128, 35, 232, (194,307): 232, 128, 245, 128, 128, 224, 116, 49, 49, 105, 176, 63, (194,319): 46, 88, 3, 108, 108, 156, 186, 116, 3, 88, 146, 46, 156, (194,332): 176, 97, 221, 221, 223, 14, 195, 175, 253, 252, 123, 123, (194,344): 104, 63, 49, 156, 116, 33, 63, 63, 49, 234, 180, 27, 27, (194,357): 187, 99, 37, 175, 63, 100, 204, 125, 226, 95, 214, 89, (194,369): 226, 70, 178, 95, 249, 192, (195,0): 119, 35, 35, 119, 33, 33, 185, 33, 33, 185, 66, 195, 116, (195,13): 128, 128, 128, 33, 35, 33, 33, 186, 66, 186, 18, 63, 72, (195,26): 79, 195, 195, 49, 146, 66, 79, 66, 14, 241, 204, 79, 33, (195,39): 33, 128, 79, 33, 79, 49, 195, 18, 116, 18, 204, 18, 79, (195,52): 33, 33, 33, 79, 232, 128, 79, 79, 79, 232, 33, 232, 33, (195,65): 18, 79, 79, 204, 18, 232, 35, 241, 28, 187, 100, 14, 180, (195,78): 123, 178, 8, 104, 24, 100, 192, 192, 178, 95, 178, 214, (195,90): 25, 100, 18, 18, 18, 186, 125, 33, 125, 63, 104, 187, 241, (195,103): 185, 62, 100, 153, 192, 229, 238, 206, 31, 209, 149, 39, (195,115): 60, 31, 60, 194, 20, 251, 219, 113, 55, 71, 71, 219, 71, (195,128): 38, 251, 38, 219, 185, 71, 185, 185, 185, 185, 79, 128, (195,140): 128, 11, 11, 128, 221, 72, 46, 46, 186, 3, 46, 111, 46, (195,153): 46, 3, 195, 156, 14, 28, 187, 194, 194, 102, 102, 60, (195,165): 101, 159, 112, 98, 98, 68, 164, 164, 218, 200, 9, 254, 9, (195,178): 254, 9, 9, 9, 155, 190, 166, 166, 169, 21, 169, 132, 169, (195,191): 21, 160, 169, 161, 161, 161, 169, 169, 21, 169, 21, 161, (195,203): 21, 96, 161, 161, 21, 202, 169, 159, 120, 140, 55, 232, (195,215): 236, 139, 35, 117, 88, 11, 245, 139, 139, 139, 35, 117, (195,227): 139, 35, 35, 117, 35, 117, 117, 117, 117, 117, 117, 117, (195,239): 117, 117, 117, 117, 139, 35, 117, 117, 201, 117, 35, 35, (195,251): 117, 35, 117, 35, 35, 117, 201, 117, 117, 117, 139, 35, (195,263): 117, 117, 117, 117, 35, 117, 117, 139, 35, 117, 117, 117, (195,275): 117, 35, 117, 117, 35, 117, 35, 117, 35, 35, 117, 35, 35, (195,288): 35, 139, 117, 117, 117, 35, 35, 33, 18, 79, 33, 128, 232, (195,301): 128, 11, 117, 35, 232, 128, 33, 232, 11, 245, 128, 221, (195,313): 116, 116, 221, 224, 46, 234, 138, 50, 108, 33, 146, 49, (195,325): 195, 181, 49, 63, 49, 181, 50, 221, 108, 253, 63, 220, (195,337): 253, 181, 175, 123, 64, 91, 253, 91, 123, 156, 63, 33, (195,349): 49, 63, 253, 64, 89, 50, 99, 221, 33, 14, 187, 180, 38, (195,362): 66, 70, 70, 252, 27, 51, 99, 95, 249, 249, 70, 178, 70, (196,0): 35, 232, 33, 55, 33, 119, 119, 33, 79, 195, 156, 195, 185, (196,13): 128, 232, 128, 195, 185, 72, 185, 185, 195, 79, 116, 195, (196,25): 33, 221, 221, 116, 66, 220, 234, 66, 66, 66, 204, 18, 79, (196,38): 33, 245, 35, 128, 128, 33, 72, 66, 195, 49, 18, 18, 18, (196,51): 79, 33, 35, 33, 79, 128, 79, 79, 116, 18, 18, 18, 116, 66, (196,65): 18, 185, 100, 104, 51, 14, 18, 66, 14, 241, 14, 28, 104, (196,78): 175, 175, 248, 242, 53, 53, 207, 192, 16, 51, 207, 8, 214, (196,91): 8, 204, 33, 66, 79, 195, 219, 66, 14, 153, 100, 14, 14, (196,104): 62, 28, 153, 142, 75, 151, 59, 153, 149, 196, 7, 60, 228, (196,117): 60, 60, 62, 251, 103, 125, 236, 55, 236, 71, 236, 119, (196,129): 55, 119, 119, 232, 79, 33, 119, 35, 128, 35, 128, 128, (196,141): 33, 128, 33, 46, 195, 3, 116, 3, 80, 182, 50, 182, 49, 3, (196,155): 72, 195, 18, 66, 241, 103, 107, 113, 251, 101, 196, 94, (196,167): 158, 68, 68, 68, 67, 166, 164, 200, 200, 155, 118, 9, (196,179): 118, 200, 200, 190, 166, 166, 169, 166, 169, 169, 169, (196,190): 169, 21, 205, 96, 169, 21, 21, 161, 169, 169, 169, 161, (196,202): 21, 96, 21, 161, 161, 169, 169, 96, 101, 201, 201, 185, (196,214): 119, 139, 139, 139, 117, 11, 88, 117, 139, 139, 232, 35, (196,226): 119, 117, 35, 139, 117, 140, 117, 117, 139, 117, 117, (196,237): 139, 117, 117, 117, 201, 117, 117, 117, 201, 117, 35, (196,248): 117, 35, 117, 35, 35, 35, 117, 35, 117, 117, 117, 35, (196,260): 117, 117, 117, 117, 35, 117, 35, 117, 117, 117, 117, 117, (196,272): 117, 35, 117, 117, 117, 35, 117, 117, 201, 117, 35, 117, (196,284): 35, 35, 117, 35, 117, 117, 35, 117, 35, 232, 33, 33, 79, (196,297): 33, 232, 117, 11, 232, 232, 128, 232, 128, 33, 33, 35, (196,309): 11, 35, 221, 195, 116, 224, 186, 49, 234, 3, 116, 116, (196,321): 180, 128, 221, 63, 49, 49, 63, 46, 33, 63, 99, 176, 49, (196,334): 63, 108, 180, 72, 195, 220, 252, 97, 216, 33, 195, 64, (196,346): 100, 220, 108, 104, 91, 187, 156, 72, 63, 14, 2, 195, (196,358): 100, 66, 18, 79, 14, 231, 28, 62, 51, 100, 95, 246, 51, (196,371): 192, 142, 28, 62, (197,0): 119, 33, 185, 185, 33, 128, 33, 33, 33, 18, 195, 18, 221, (197,13): 232, 128, 33, 221, 128, 33, 128, 33, 186, 221, 185, 195, (197,25): 116, 79, 33, 128, 79, 72, 18, 234, 116, 35, 128, 72, 234, (197,38): 66, 33, 221, 79, 116, 79, 72, 49, 46, 72, 221, 116, 46, (197,51): 116, 221, 116, 18, 72, 234, 156, 14, 234, 234, 180, 253, (197,63): 187, 100, 14, 28, 175, 70, 28, 79, 79, 28, 28, 100, 63, (197,76): 51, 93, 51, 28, 207, 226, 15, 226, 207, 51, 207, 229, 24, (197,89): 24, 226, 226, 14, 204, 14, 18, 66, 195, 219, 241, 156, (197,101): 241, 241, 194, 62, 251, 62, 74, 188, 53, 75, 7, 74, 209, (197,114): 60, 250, 20, 228, 194, 251, 62, 251, 219, 55, 55, 55, 55, (197,127): 55, 55, 119, 35, 139, 35, 119, 119, 117, 210, 117, 35, (197,139): 33, 221, 186, 72, 186, 186, 146, 146, 3, 146, 182, 222, (197,151): 181, 124, 50, 49, 195, 195, 186, 185, 125, 103, 194, 163, (197,163): 101, 159, 127, 164, 164, 68, 67, 67, 112, 67, 166, 164, (197,175): 190, 200, 155, 200, 190, 166, 166, 166, 96, 96, 169, 169, (197,187): 21, 21, 132, 205, 205, 161, 161, 169, 169, 169, 21, 161, (197,199): 169, 169, 21, 161, 21, 169, 161, 21, 169, 205, 166, 164, (197,211): 201, 117, 119, 232, 139, 139, 117, 117, 117, 117, 117, (197,222): 140, 139, 119, 232, 119, 35, 117, 117, 117, 117, 139, (197,233): 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, 35, 117, (197,245): 35, 117, 117, 35, 35, 117, 117, 35, 35, 35, 117, 117, 35, (197,258): 117, 117, 201, 117, 117, 139, 35, 117, 117, 117, 201, (197,269): 117, 35, 117, 35, 117, 117, 35, 117, 139, 35, 117, 35, (197,281): 117, 35, 201, 35, 117, 35, 35, 117, 35, 117, 119, 232, (197,293): 33, 79, 79, 33, 232, 11, 35, 35, 128, 128, 128, 33, 33, (197,306): 35, 117, 11, 35, 116, 195, 220, 181, 63, 156, 116, 49, (197,318): 138, 253, 63, 72, 105, 63, 88, 79, 50, 2, 105, 121, 72, (197,331): 253, 175, 63, 117, 220, 63, 253, 63, 128, 186, 195, 105, (197,343): 180, 128, 72, 49, 156, 121, 63, 181, 100, 128, 2, 187, (197,355): 175, 72, 195, 104, 99, 249, 187, 252, 185, 232, 204, 219, (197,367): 241, 28, 142, 194, 119, 119, 185, 241, (198,0): 33, 185, 185, 79, 33, 33, 185, 185, 185, 185, 79, 33, 33, (198,13): 117, 128, 35, 11, 210, 128, 128, 33, 186, 79, 116, 195, (198,25): 232, 88, 128, 33, 18, 195, 204, 18, 33, 35, 33, 195, 100, (198,38): 50, 49, 116, 116, 146, 116, 72, 49, 33, 221, 72, 116, 116, (198,51): 195, 50, 63, 180, 63, 2, 104, 2, 220, 108, 91, 123, 175, (198,64): 249, 178, 214, 214, 37, 192, 66, 204, 125, 241, 28, 24, (198,76): 187, 24, 28, 62, 24, 53, 231, 231, 74, 233, 71, 252, 207, (198,89): 241, 28, 187, 14, 100, 63, 241, 204, 125, 219, 241, 14, (198,101): 194, 241, 66, 194, 241, 251, 102, 62, 60, 74, 20, 31, 20, (198,114): 228, 31, 103, 20, 194, 251, 62, 62, 251, 219, 55, 119, (198,126): 119, 201, 232, 55, 119, 117, 140, 140, 245, 147, 117, (198,137): 117, 33, 33, 186, 195, 195, 195, 146, 156, 49, 80, 182, (198,149): 182, 182, 78, 222, 80, 49, 156, 156, 219, 125, 66, 113, (198,161): 102, 250, 250, 196, 247, 217, 158, 82, 82, 112, 40, 112, (198,173): 67, 166, 166, 190, 190, 190, 166, 169, 96, 96, 21, 21, (198,185): 169, 169, 205, 21, 205, 205, 21, 161, 21, 21, 169, 169, (198,197): 21, 161, 21, 21, 21, 21, 169, 169, 205, 21, 169, 161, 96, (198,210): 196, 201, 199, 88, 139, 139, 139, 201, 35, 128, 11, 35, (198,222): 139, 139, 139, 35, 117, 117, 117, 117, 140, 117, 117, (198,233): 117, 139, 117, 140, 117, 139, 117, 117, 35, 35, 35, 117, (198,245): 35, 117, 35, 35, 35, 117, 35, 201, 35, 35, 117, 35, 117, (198,258): 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, (198,269): 117, 117, 117, 117, 35, 139, 117, 117, 117, 117, 117, 35, (198,281): 35, 117, 35, 117, 35, 117, 35, 117, 117, 35, 232, 33, 33, (198,294): 232, 33, 232, 128, 33, 33, 128, 232, 128, 33, 33, 128, (198,306): 117, 245, 117, 128, 186, 156, 116, 72, 72, 49, 116, 72, (198,318): 128, 11, 195, 221, 220, 156, 3, 72, 35, 33, 195, 156, (198,330): 220, 186, 108, 104, 27, 63, 156, 156, 108, 220, 33, 186, (198,342): 180, 156, 253, 66, 64, 37, 97, 97, 186, 180, 220, 180, (198,354): 49, 8, 178, 99, 178, 253, 99, 99, 252, 242, 175, 100, (198,366): 100, 120, 219, 194, 55, 120, 38, 55, 28, (199,0): 79, 33, 128, 35, 33, 79, 79, 185, 186, 79, 33, 232, 11, (199,13): 245, 245, 11, 35, 11, 33, 221, 116, 195, 79, 116, 14, 128, (199,26): 210, 128, 79, 79, 79, 79, 128, 33, 116, 116, 72, 72, 195, (199,39): 195, 116, 116, 186, 221, 195, 50, 116, 3, 234, 146, 72, (199,51): 108, 91, 64, 64, 27, 2, 104, 187, 234, 234, 104, 183, 105, (199,64): 70, 249, 249, 99, 89, 214, 8, 28, 28, 28, 100, 100, 100, (199,77): 14, 100, 231, 231, 243, 20, 243, 204, 236, 231, 55, 55, (199,89): 204, 66, 204, 18, 66, 14, 156, 66, 66, 241, 241, 100, 28, (199,102): 153, 194, 241, 103, 251, 103, 243, 60, 188, 110, 233, (199,113): 251, 60, 60, 20, 20, 28, 20, 194, 194, 100, 38, 185, 55, (199,126): 119, 35, 140, 140, 35, 140, 140, 140, 117, 35, 117, 33, (199,138): 33, 33, 33, 186, 72, 186, 46, 46, 186, 146, 50, 182, 182, (199,151): 222, 80, 49, 156, 156, 156, 125, 125, 219, 102, 102, 102, (199,163): 163, 127, 112, 112, 191, 109, 167, 67, 96, 67, 40, 166, (199,175): 166, 42, 161, 161, 166, 169, 166, 96, 169, 161, 21, 205, (199,187): 21, 21, 202, 21, 21, 161, 202, 161, 21, 169, 21, 161, 21, (199,200): 169, 169, 21, 169, 169, 169, 205, 169, 160, 96, 218, 201, (199,212): 119, 232, 139, 140, 139, 119, 128, 119, 128, 232, 139, (199,223): 139, 245, 245, 117, 117, 139, 117, 117, 140, 117, 117, (199,234): 117, 117, 117, 117, 117, 117, 201, 35, 35, 117, 35, 35, (199,246): 35, 117, 119, 117, 117, 117, 35, 35, 201, 117, 117, 35, (199,258): 117, 35, 117, 35, 117, 117, 201, 117, 117, 35, 117, 35, (199,270): 117, 201, 117, 117, 117, 117, 201, 117, 117, 35, 117, 35, (199,282): 117, 35, 117, 35, 35, 117, 35, 35, 117, 232, 33, 33, 33, (199,295): 35, 33, 33, 79, 33, 128, 128, 232, 128, 128, 35, 117, 11, (199,308): 35, 128, 221, 185, 116, 33, 221, 50, 195, 116, 221, 50, (199,320): 79, 49, 33, 33, 185, 221, 220, 253, 79, 72, 72, 14, 183, (199,333): 178, 2, 46, 33, 49, 66, 156, 221, 195, 220, 156, 180, 63, (199,346): 104, 104, 63, 220, 123, 181, 2, 253, 89, 97, 123, 100, 2, (199,359): 252, 51, 70, 249, 37, 25, 157, 100, 28, 93, 95, 28, 38, (199,372): 241, 103, 93, (200,0): 185, 33, 35, 221, 100, 108, 79, 221, 185, 33, 33, 33, 117, (200,13): 88, 117, 88, 210, 128, 221, 221, 221, 186, 116, 79, 49, (200,25): 117, 35, 35, 33, 79, 128, 79, 79, 116, 116, 18, 72, 116, (200,38): 46, 33, 116, 186, 72, 49, 156, 80, 195, 186, 3, 78, 91, (200,51): 27, 64, 99, 37, 216, 8, 216, 97, 104, 156, 108, 63, 234, (200,64): 28, 24, 104, 93, 8, 178, 89, 249, 100, 207, 100, 28, 194, (200,77): 142, 14, 241, 243, 204, 233, 233, 71, 71, 71, 232, 232, (200,89): 79, 18, 18, 185, 185, 125, 18, 125, 219, 125, 28, 153, (200,101): 246, 187, 24, 194, 251, 120, 55, 20, 251, 60, 193, 31, (200,113): 20, 251, 20, 251, 103, 20, 28, 60, 28, 28, 60, 241, 185, (200,126): 119, 119, 140, 117, 140, 140, 245, 245, 117, 117, 245, (200,137): 35, 33, 221, 79, 79, 221, 79, 128, 224, 111, 111, 3, 133, (200,150): 182, 80, 146, 146, 146, 66, 66, 125, 125, 125, 102, 102, (200,162): 101, 164, 127, 98, 98, 167, 167, 67, 166, 166, 42, 42, (200,174): 166, 166, 166, 96, 96, 169, 169, 169, 132, 169, 21, 205, (200,186): 169, 205, 205, 205, 205, 205, 202, 21, 161, 21, 21, 21, (200,198): 21, 21, 21, 21, 169, 21, 169, 21, 96, 205, 132, 166, 118, (200,211): 201, 147, 119, 55, 139, 55, 71, 63, 88, 117, 147, 120, (200,223): 55, 140, 35, 117, 140, 35, 185, 185, 119, 117, 117, 117, (200,235): 117, 201, 117, 117, 117, 117, 117, 35, 35, 117, 35, 35, (200,247): 35, 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 35, (200,259): 117, 117, 35, 117, 117, 117, 117, 35, 139, 117, 117, 117, (200,271): 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 35, (200,283): 35, 35, 35, 117, 117, 117, 117, 128, 128, 128, 35, 33, (200,295): 79, 128, 79, 79, 79, 79, 128, 232, 35, 88, 128, 117, 128, (200,308): 128, 156, 156, 49, 49, 220, 156, 116, 46, 49, 220, 49, (200,320): 116, 33, 116, 186, 128, 79, 220, 63, 220, 117, 33, 195, (200,332): 186, 195, 186, 66, 49, 63, 221, 72, 100, 72, 50, 72, 33, (200,345): 156, 72, 186, 27, 89, 63, 180, 156, 183, 180, 234, 180, (200,357): 232, 72, 66, 66, 187, 53, 89, 25, 70, 53, 24, 246, 25, (200,370): 194, 89, 226, 241, 119, (201,0): 186, 221, 18, 49, 100, 108, 185, 33, 79, 128, 33, 33, 35, (201,13): 11, 35, 117, 128, 221, 186, 185, 186, 186, 79, 221, 79, (201,25): 35, 221, 79, 221, 18, 79, 79, 18, 116, 46, 79, 116, 46, (201,38): 33, 11, 116, 146, 156, 156, 108, 108, 50, 146, 80, 78, 91, (201,51): 183, 175, 97, 178, 89, 89, 214, 89, 8, 187, 2, 2, 63, 100, (201,65): 231, 24, 192, 84, 226, 249, 249, 53, 70, 142, 24, 153, (201,77): 187, 24, 38, 233, 233, 76, 204, 204, 241, 14, 233, 79, 55, (201,90): 55, 185, 185, 79, 186, 219, 33, 125, 219, 28, 180, 93, (201,102): 110, 142, 28, 20, 103, 103, 103, 103, 20, 60, 60, 60, 60, (201,115): 153, 60, 20, 20, 60, 233, 20, 194, 100, 241, 125, 55, 33, (201,128): 139, 117, 117, 245, 140, 245, 117, 117, 35, 128, 33, 79, (201,140): 221, 79, 116, 186, 221, 46, 46, 46, 116, 146, 49, 80, (201,152): 186, 186, 186, 186, 125, 185, 125, 103, 102, 118, 92, (201,163): 101, 164, 10, 112, 82, 167, 96, 190, 136, 200, 136, 190, (201,175): 96, 205, 96, 205, 96, 205, 169, 169, 169, 21, 205, 21, (201,187): 205, 21, 205, 205, 205, 21, 21, 21, 21, 21, 169, 169, (201,199): 169, 169, 21, 169, 205, 169, 169, 205, 96, 132, 166, 254, (201,211): 201, 117, 232, 139, 87, 139, 119, 125, 88, 35, 117, 236, (201,223): 236, 140, 139, 117, 88, 117, 119, 119, 117, 117, 117, (201,234): 201, 117, 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, (201,246): 35, 117, 35, 117, 35, 117, 35, 117, 117, 117, 117, 117, (201,258): 139, 35, 117, 117, 35, 117, 35, 117, 117, 117, 117, 117, (201,270): 35, 117, 35, 117, 35, 117, 35, 117, 117, 35, 117, 117, (201,282): 117, 35, 35, 35, 35, 35, 117, 11, 33, 33, 221, 33, 221, (201,295): 185, 79, 185, 221, 79, 33, 128, 35, 128, 88, 117, 11, (201,307): 128, 79, 49, 66, 195, 50, 63, 180, 220, 49, 195, 46, 88, (201,320): 108, 195, 72, 14, 220, 195, 221, 117, 116, 79, 186, 128, (201,332): 88, 195, 49, 33, 186, 100, 253, 64, 123, 104, 253, 64, (201,344): 216, 223, 104, 195, 156, 156, 234, 2, 180, 195, 18, 18, (201,356): 18, 185, 2, 241, 51, 100, 37, 95, 175, 157, 192, 24, 110, (201,369): 100, 66, 194, 70, 51, 62, (202,0): 116, 221, 156, 108, 100, 220, 186, 79, 221, 128, 33, 33, (202,12): 35, 35, 128, 35, 128, 221, 186, 185, 46, 185, 221, 79, 33, (202,25): 128, 72, 18, 18, 49, 72, 18, 46, 79, 79, 79, 116, 116, 79, (202,39): 221, 46, 49, 50, 50, 108, 105, 78, 156, 108, 181, 105, 63, (202,52): 105, 175, 99, 37, 37, 37, 214, 214, 216, 70, 27, 104, 14, (202,65): 194, 231, 187, 51, 192, 246, 226, 192, 142, 187, 246, 175, (202,77): 246, 84, 125, 236, 236, 55, 236, 204, 28, 207, 252, 51, (202,89): 14, 18, 79, 18, 33, 204, 241, 33, 125, 241, 28, 60, 142, (202,102): 142, 142, 45, 153, 102, 103, 243, 60, 24, 103, 20, 20, (202,114): 228, 60, 228, 233, 233, 20, 231, 231, 231, 153, 62, 204, (202,126): 79, 55, 117, 245, 140, 140, 88, 88, 117, 117, 33, 221, (202,138): 79, 79, 79, 116, 186, 18, 186, 186, 116, 116, 3, 146, 80, (202,151): 49, 3, 195, 72, 125, 125, 185, 103, 102, 250, 102, 118, (202,163): 101, 68, 67, 112, 67, 167, 96, 130, 136, 136, 136, 21, (202,175): 169, 169, 169, 205, 96, 205, 21, 21, 21, 169, 205, 205, (202,187): 21, 21, 205, 205, 169, 21, 21, 21, 169, 205, 169, 21, (202,199): 205, 21, 169, 205, 169, 169, 169, 205, 169, 169, 40, 101, (202,211): 55, 139, 117, 35, 236, 139, 140, 35, 88, 117, 35, 139, (202,223): 201, 140, 117, 117, 140, 117, 35, 35, 140, 35, 117, 117, (202,235): 117, 117, 35, 117, 201, 117, 35, 35, 201, 117, 35, 117, (202,247): 201, 117, 117, 117, 35, 117, 117, 35, 117, 35, 117, 117, (202,259): 117, 117, 35, 139, 117, 117, 117, 35, 117, 117, 35, 139, (202,271): 117, 117, 35, 117, 117, 117, 35, 139, 117, 117, 201, 117, (202,283): 35, 35, 35, 35, 117, 128, 33, 33, 221, 186, 79, 116, 186, (202,296): 186, 33, 33, 35, 35, 35, 128, 35, 33, 11, 128, 128, 186, (202,309): 186, 186, 128, 79, 195, 156, 156, 156, 234, 195, 72, 33, (202,321): 195, 49, 72, 72, 195, 116, 33, 181, 63, 156, 116, 128, (202,333): 11, 79, 128, 108, 220, 181, 156, 186, 156, 66, 64, 8, (202,345): 180, 181, 220, 183, 183, 37, 183, 66, 195, 66, 63, 70, (202,357): 70, 242, 8, 70, 241, 28, 192, 100, 62, 153, 185, 100, (202,369): 153, 55, 219, 175, 246, 180, (203,0): 33, 128, 14, 108, 156, 195, 186, 186, 186, 128, 33, 33, (203,12): 128, 35, 128, 35, 35, 33, 33, 33, 33, 221, 33, 33, 221, (203,25): 33, 18, 116, 72, 234, 234, 116, 33, 33, 33, 79, 186, 186, (203,38): 116, 221, 221, 195, 156, 156, 50, 78, 63, 156, 138, 78, (203,50): 108, 156, 14, 180, 51, 93, 207, 207, 70, 53, 8, 27, 187, (203,63): 24, 62, 194, 100, 153, 28, 28, 24, 142, 24, 51, 58, 142, (203,76): 192, 24, 192, 241, 139, 55, 79, 236, 204, 62, 2, 175, 187, (203,89): 220, 18, 185, 18, 18, 66, 241, 125, 66, 241, 194, 194, 28, (203,102): 153, 142, 152, 84, 237, 194, 103, 74, 188, 142, 20, 251, (203,114): 251, 20, 20, 228, 60, 58, 237, 58, 142, 24, 28, 38, 79, (203,127): 232, 245, 88, 88, 88, 88, 117, 35, 232, 186, 79, 79, 221, (203,140): 33, 79, 186, 186, 116, 116, 116, 116, 3, 146, 49, 49, (203,152): 156, 49, 66, 195, 125, 71, 103, 194, 101, 101, 218, 68, (203,164): 112, 98, 167, 67, 161, 161, 190, 202, 161, 169, 169, 132, (203,176): 169, 205, 21, 205, 21, 21, 205, 21, 132, 169, 21, 21, (203,188): 205, 169, 205, 21, 161, 21, 21, 21, 21, 21, 21, 21, 205, (203,201): 169, 169, 205, 132, 132, 169, 169, 161, 112, 101, 201, (203,212): 117, 35, 71, 231, 119, 139, 88, 117, 88, 185, 199, 199, (203,224): 140, 35, 35, 117, 140, 35, 35, 88, 139, 35, 117, 117, 35, (203,237): 117, 117, 117, 35, 35, 35, 117, 35, 117, 35, 117, 117, (203,249): 117, 35, 117, 117, 35, 117, 117, 117, 117, 117, 201, 117, (203,261): 117, 117, 117, 117, 117, 139, 35, 117, 117, 117, 117, (203,272): 117, 117, 139, 35, 117, 117, 117, 117, 117, 117, 117, 35, (203,284): 35, 35, 35, 232, 221, 128, 33, 221, 221, 79, 186, 195, (203,296): 221, 33, 128, 35, 128, 128, 33, 128, 72, 128, 185, 221, (203,308): 156, 186, 195, 186, 128, 128, 33, 186, 72, 79, 116, 79, (203,320): 128, 195, 195, 186, 186, 79, 72, 108, 221, 116, 33, 128, (203,332): 221, 128, 195, 128, 128, 79, 156, 33, 128, 220, 79, 49, (203,344): 146, 63, 27, 220, 14, 195, 223, 100, 220, 104, 2, 51, 37, (203,357): 121, 252, 89, 187, 241, 38, 192, 219, 219, 93, 153, 157, (203,369): 93, 28, 55, 14, 25, 241, (204,0): 221, 221, 156, 220, 116, 221, 79, 33, 185, 128, 33, 33, (204,12): 128, 128, 33, 35, 117, 35, 128, 35, 128, 35, 128, 33, 79, (204,25): 116, 46, 72, 49, 100, 220, 128, 33, 33, 79, 116, 18, 18, (204,38): 79, 221, 79, 46, 186, 49, 156, 156, 156, 156, 156, 156, (204,50): 220, 156, 14, 100, 62, 204, 194, 62, 28, 231, 28, 231, 63, (204,63): 100, 204, 241, 241, 251, 241, 62, 241, 241, 28, 192, 24, (204,75): 62, 142, 62, 241, 38, 139, 79, 79, 55, 79, 79, 79, 234, (204,88): 187, 252, 183, 51, 187, 180, 100, 38, 219, 219, 241, 194, (204,100): 28, 60, 60, 194, 110, 198, 152, 23, 153, 194, 24, 110, (204,112): 103, 233, 233, 20, 20, 228, 153, 149, 60, 60, 231, 74, (204,124): 207, 100, 185, 139, 117, 245, 245, 117, 117, 33, 33, 79, (204,136): 186, 79, 33, 33, 33, 33, 33, 79, 221, 221, 46, 186, 72, (204,149): 146, 72, 146, 195, 195, 66, 219, 125, 185, 219, 102, 101, (204,161): 218, 68, 112, 217, 167, 167, 67, 161, 166, 21, 169, 169, (204,173): 132, 132, 169, 21, 21, 205, 21, 205, 205, 21, 205, 205, (204,185): 21, 169, 169, 169, 21, 21, 161, 21, 21, 21, 21, 205, 21, (204,198): 21, 21, 169, 205, 169, 132, 205, 169, 132, 132, 21, 166, (204,210): 113, 87, 119, 79, 185, 233, 139, 201, 117, 117, 117, 241, (204,222): 120, 201, 139, 35, 117, 117, 117, 201, 35, 35, 117, 117, (204,234): 117, 139, 117, 139, 117, 117, 35, 35, 35, 117, 35, 117, (204,246): 117, 35, 117, 35, 139, 117, 117, 117, 35, 139, 117, 35, (204,258): 117, 117, 117, 35, 117, 201, 117, 117, 117, 117, 117, (204,269): 201, 117, 117, 201, 117, 117, 117, 117, 201, 117, 117, (204,280): 117, 35, 117, 117, 201, 35, 35, 35, 221, 221, 46, 186, (204,292): 72, 186, 186, 186, 79, 128, 128, 128, 33, 33, 33, 33, (204,304): 221, 33, 186, 3, 156, 195, 156, 100, 72, 186, 72, 49, (204,316): 156, 195, 33, 128, 186, 224, 33, 49, 181, 220, 49, 105, (204,328): 195, 186, 186, 156, 181, 116, 3, 221, 221, 186, 186, 195, (204,340): 195, 253, 105, 2, 175, 216, 97, 121, 175, 50, 175, 2, 27, (204,353): 8, 99, 89, 89, 70, 156, 100, 37, 125, 35, 219, 28, 214, (204,366): 178, 157, 51, 8, 185, 185, 14, 153, 252, (205,0): 49, 49, 63, 50, 195, 221, 128, 221, 221, 117, 117, 33, 128, (205,13): 119, 33, 128, 35, 35, 35, 35, 35, 35, 35, 128, 116, 79, (205,26): 116, 195, 220, 108, 182, 128, 33, 33, 116, 18, 195, 49, (205,38): 195, 72, 186, 221, 221, 72, 195, 186, 186, 146, 49, 146, (205,50): 186, 125, 219, 241, 38, 219, 243, 20, 28, 194, 241, 62, (205,62): 194, 66, 113, 219, 219, 219, 103, 62, 62, 103, 103, 153, (205,74): 62, 219, 142, 28, 236, 55, 79, 185, 232, 33, 14, 234, 185, (205,87): 186, 50, 187, 104, 2, 28, 100, 66, 33, 185, 185, 66, 194, (205,100): 142, 153, 153, 250, 102, 24, 110, 58, 196, 60, 194, 194, (205,112): 194, 7, 196, 74, 31, 233, 213, 243, 233, 243, 20, 24, 58, (205,125): 28, 125, 117, 245, 88, 117, 117, 232, 33, 221, 79, 79, (205,137): 79, 33, 33, 128, 33, 79, 221, 79, 221, 79, 116, 116, 116, (205,150): 46, 116, 18, 186, 125, 125, 219, 113, 102, 194, 159, 68, (205,162): 159, 112, 112, 167, 40, 40, 26, 160, 160, 132, 132, 160, (205,174): 169, 169, 21, 205, 205, 205, 169, 205, 169, 169, 21, 169, (205,186): 205, 169, 21, 161, 161, 161, 21, 205, 205, 205, 205, 169, (205,198): 205, 205, 169, 205, 169, 205, 132, 169, 205, 205, 160, (205,209): 166, 107, 199, 35, 232, 140, 139, 199, 201, 88, 117, 88, (205,221): 66, 145, 139, 140, 140, 35, 117, 117, 117, 117, 35, 117, (205,233): 201, 117, 117, 117, 117, 117, 35, 35, 35, 35, 35, 201, (205,245): 117, 35, 117, 117, 117, 117, 117, 139, 35, 117, 117, 117, (205,257): 117, 117, 35, 117, 117, 117, 117, 117, 35, 117, 35, 117, (205,269): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (205,280): 35, 117, 117, 117, 35, 35, 119, 128, 33, 221, 186, 195, (205,292): 195, 186, 221, 33, 35, 128, 119, 35, 119, 128, 119, 35, (205,304): 128, 128, 221, 186, 195, 221, 195, 156, 186, 116, 221, (205,315): 18, 195, 66, 195, 195, 46, 221, 224, 116, 50, 78, 108, (205,327): 220, 111, 186, 72, 46, 63, 108, 2, 108, 72, 195, 72, 183, (205,340): 253, 104, 27, 27, 156, 63, 108, 27, 105, 35, 50, 123, 99, (205,353): 123, 14, 66, 14, 14, 125, 28, 246, 24, 28, 252, 142, 249, (205,366): 226, 192, 187, 180, 2, 66, 252, 27, 70, (206,0): 49, 49, 108, 220, 156, 195, 128, 33, 128, 210, 117, 117, (206,12): 35, 128, 33, 35, 35, 117, 117, 35, 35, 11, 35, 221, 185, (206,25): 72, 186, 234, 220, 220, 63, 146, 116, 79, 18, 18, 66, 234, (206,38): 66, 66, 72, 18, 195, 66, 195, 195, 195, 195, 49, 195, 125, (206,51): 185, 125, 219, 251, 233, 236, 20, 207, 142, 62, 219, 219, (206,63): 125, 219, 219, 103, 233, 62, 194, 100, 28, 24, 142, 153, (206,75): 233, 24, 192, 120, 185, 18, 204, 79, 66, 253, 253, 220, (206,87): 50, 18, 49, 156, 66, 14, 100, 28, 231, 219, 185, 103, 62, (206,100): 142, 153, 153, 102, 60, 251, 194, 194, 194, 153, 51, 60, (206,112): 110, 198, 59, 59, 47, 74, 213, 243, 243, 243, 233, 20, (206,124): 100, 233, 185, 35, 117, 35, 35, 128, 33, 33, 79, 79, 116, (206,137): 79, 221, 79, 116, 72, 18, 18, 18, 79, 33, 221, 46, 221, (206,150): 221, 221, 186, 185, 125, 219, 103, 251, 194, 159, 149, (206,161): 127, 68, 68, 10, 67, 67, 40, 26, 114, 114, 160, 160, 160, (206,174): 160, 132, 205, 169, 169, 205, 169, 205, 169, 205, 169, (206,185): 169, 169, 21, 202, 202, 161, 21, 169, 205, 169, 169, 205, (206,197): 205, 169, 21, 132, 169, 132, 57, 169, 205, 205, 169, 132, (206,209): 77, 92, 55, 88, 140, 140, 140, 139, 140, 35, 88, 140, (206,221): 119, 199, 139, 139, 117, 117, 35, 140, 117, 117, 35, 117, (206,233): 117, 117, 35, 117, 201, 117, 117, 119, 35, 35, 117, 35, (206,245): 117, 117, 117, 117, 201, 117, 117, 117, 117, 117, 201, (206,256): 117, 35, 117, 117, 35, 117, 35, 117, 117, 117, 117, 117, (206,268): 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (206,280): 201, 35, 35, 35, 35, 119, 128, 33, 33, 221, 46, 186, 195, (206,293): 46, 128, 35, 11, 117, 117, 11, 117, 35, 35, 128, 128, (206,305): 224, 221, 186, 33, 221, 128, 221, 33, 128, 117, 88, 88, (206,317): 35, 33, 221, 116, 49, 146, 221, 128, 195, 49, 221, 72, (206,329): 183, 90, 221, 138, 121, 177, 63, 181, 108, 18, 253, 108, (206,341): 2, 27, 121, 27, 63, 186, 108, 187, 181, 183, 252, 187, 2, (206,354): 33, 66, 63, 187, 51, 93, 37, 226, 219, 241, 71, 28, 246, (206,367): 51, 62, 66, 156, 55, 66, 195, 142, (207,0): 128, 185, 49, 49, 220, 195, 11, 33, 128, 210, 210, 11, 117, (207,13): 117, 117, 117, 117, 140, 88, 117, 117, 117, 33, 79, 72, (207,25): 49, 116, 49, 146, 49, 105, 180, 234, 195, 72, 18, 79, 186, (207,38): 79, 79, 195, 156, 14, 49, 156, 156, 156, 195, 195, 156, (207,50): 156, 156, 241, 38, 219, 243, 60, 237, 25, 198, 153, 219, (207,62): 66, 62, 100, 38, 233, 100, 153, 28, 153, 237, 60, 153, (207,74): 157, 152, 226, 248, 100, 38, 33, 79, 232, 79, 108, 14, (207,86): 116, 72, 186, 116, 185, 186, 18, 18, 219, 66, 194, 125, (207,98): 66, 103, 24, 194, 60, 102, 153, 250, 58, 163, 185, 163, (207,110): 157, 110, 58, 45, 238, 115, 59, 206, 7, 228, 41, 243, (207,122): 236, 236, 236, 185, 55, 79, 33, 33, 116, 185, 186, 72, (207,134): 18, 72, 79, 116, 18, 72, 66, 66, 234, 49, 204, 221, 33, (207,147): 33, 33, 128, 33, 79, 18, 185, 185, 71, 103, 102, 163, (207,159): 196, 159, 68, 68, 68, 166, 77, 166, 161, 132, 170, 26, (207,171): 131, 131, 114, 131, 132, 132, 170, 57, 132, 169, 205, 21, (207,183): 169, 205, 169, 169, 161, 136, 136, 161, 169, 21, 21, 205, (207,195): 21, 205, 21, 21, 21, 132, 57, 205, 132, 205, 205, 21, 21, (207,208): 166, 254, 201, 199, 117, 33, 71, 55, 119, 199, 35, 35, (207,220): 117, 201, 140, 145, 117, 35, 35, 35, 117, 140, 117, 201, (207,232): 117, 117, 35, 117, 117, 117, 117, 117, 35, 35, 35, 35, (207,244): 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, (207,255): 117, 117, 139, 35, 117, 139, 117, 139, 117, 35, 117, 139, (207,267): 35, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (207,278): 117, 117, 35, 35, 35, 119, 128, 119, 33, 33, 185, 224, (207,290): 128, 221, 128, 128, 35, 117, 11, 117, 128, 35, 35, 128, (207,302): 185, 186, 128, 186, 221, 195, 221, 186, 221, 128, 117, (207,313): 221, 186, 116, 224, 221, 221, 46, 116, 11, 46, 182, 146, (207,325): 46, 116, 146, 46, 224, 105, 253, 37, 90, 27, 36, 100, (207,337): 108, 63, 123, 2, 181, 195, 33, 79, 50, 104, 187, 183, 97, (207,350): 216, 66, 156, 128, 185, 175, 100, 27, 89, 142, 100, 251, (207,362): 125, 219, 119, 241, 55, 38, 186, 186, 93, 14, 33, 156, (207,374): 33, (208,0): 79, 186, 66, 66, 195, 186, 221, 128, 117, 11, 35, 128, 88, (208,13): 35, 128, 117, 117, 245, 117, 35, 33, 33, 79, 79, 195, 156, (208,26): 108, 108, 50, 50, 108, 63, 234, 220, 234, 234, 146, 79, (208,38): 221, 186, 245, 18, 186, 33, 66, 66, 18, 66, 63, 28, 62, (208,51): 125, 125, 241, 62, 38, 231, 207, 246, 28, 241, 24, 24, 27, (208,64): 53, 8, 187, 142, 246, 58, 20, 194, 233, 60, 38, 153, 100, (208,77): 93, 194, 185, 33, 185, 195, 195, 79, 79, 156, 220, 72, (208,89): 186, 221, 156, 185, 18, 18, 14, 38, 153, 51, 241, 251, (208,101): 103, 241, 219, 103, 102, 24, 110, 163, 113, 251, 142, (208,112): 196, 7, 149, 206, 29, 189, 148, 7, 228, 233, 213, 204, (208,124): 243, 18, 38, 38, 66, 66, 72, 186, 185, 185, 186, 79, 185, (208,137): 116, 79, 72, 66, 195, 204, 79, 79, 79, 79, 33, 79, 79, (208,150): 221, 79, 33, 119, 120, 125, 251, 194, 159, 159, 127, 159, (208,162): 77, 190, 190, 190, 21, 169, 132, 170, 170, 114, 131, 131, (208,174): 170, 170, 21, 169, 169, 169, 132, 169, 169, 169, 169, 21, (208,186): 21, 161, 205, 96, 21, 161, 205, 205, 169, 132, 132, 169, (208,198): 169, 57, 205, 57, 179, 205, 205, 57, 169, 166, 218, 201, (208,210): 199, 119, 139, 55, 185, 139, 139, 140, 119, 140, 103, (208,221): 125, 0, 139, 117, 35, 117, 117, 139, 88, 117, 117, 117, (208,233): 201, 117, 35, 35, 35, 35, 201, 117, 35, 35, 117, 35, 201, (208,246): 117, 201, 119, 117, 117, 201, 119, 117, 117, 35, 201, 35, (208,258): 35, 139, 117, 35, 35, 35, 139, 117, 117, 117, 35, 139, (208,270): 117, 35, 117, 117, 117, 117, 117, 117, 119, 128, 185, 79, (208,282): 128, 35, 128, 33, 33, 79, 33, 33, 33, 128, 128, 35, 128, (208,295): 35, 117, 117, 117, 35, 128, 232, 128, 33, 35, 128, 33, (208,307): 128, 128, 35, 128, 35, 11, 33, 18, 128, 221, 234, 46, (208,319): 111, 72, 3, 3, 195, 49, 186, 46, 3, 156, 156, 220, 105, (208,332): 181, 63, 72, 253, 91, 2, 156, 186, 79, 104, 187, 105, 33, (208,345): 14, 2, 253, 14, 2, 8, 50, 72, 14, 221, 66, 14, 24, 104, (208,359): 157, 28, 33, 125, 55, 35, 55, 119, 241, 63, 195, 156, (208,371): 180, 33, 125, 14, (209,0): 33, 185, 195, 195, 186, 186, 3, 195, 3, 128, 210, 88, 88, (209,13): 117, 232, 117, 232, 140, 147, 88, 33, 18, 72, 18, 195, (209,25): 156, 156, 156, 156, 156, 234, 146, 50, 220, 182, 234, 234, (209,37): 195, 46, 245, 79, 79, 35, 232, 195, 204, 18, 219, 100, 14, (209,50): 156, 38, 38, 100, 231, 28, 38, 14, 51, 24, 63, 252, 252, (209,63): 104, 252, 8, 93, 28, 28, 231, 153, 237, 58, 58, 241, 194, (209,76): 103, 24, 219, 33, 125, 232, 185, 100, 108, 66, 49, 156, (209,88): 50, 125, 72, 100, 66, 100, 180, 2, 28, 153, 24, 153, 241, (209,101): 219, 113, 219, 71, 76, 62, 60, 60, 194, 163, 110, 163, (209,113): 31, 73, 31, 7, 206, 206, 59, 4, 237, 60, 233, 62, 194, (209,126): 100, 14, 14, 195, 125, 186, 79, 79, 33, 33, 33, 33, 33, (209,139): 79, 18, 72, 18, 79, 79, 33, 232, 33, 232, 33, 33, 33, (209,152): 119, 33, 120, 219, 102, 163, 163, 159, 159, 68, 77, 190, (209,164): 190, 130, 42, 21, 131, 114, 184, 114, 131, 131, 170, 131, (209,176): 169, 169, 169, 132, 132, 170, 132, 169, 169, 169, 21, 21, (209,188): 21, 21, 21, 21, 205, 205, 169, 169, 169, 169, 132, 205, (209,200): 205, 57, 205, 179, 205, 205, 21, 67, 74, 55, 117, 139, (209,212): 140, 139, 79, 139, 117, 140, 120, 117, 119, 35, 55, 55, (209,224): 117, 117, 140, 117, 117, 117, 35, 35, 117, 35, 117, 201, (209,236): 117, 35, 117, 117, 35, 117, 35, 35, 117, 35, 117, 35, (209,248): 185, 119, 117, 117, 117, 117, 117, 119, 117, 139, 139, (209,259): 35, 139, 35, 139, 35, 117, 139, 35, 35, 117, 117, 117, (209,271): 117, 117, 117, 35, 117, 35, 35, 232, 128, 33, 128, 119, (209,283): 128, 33, 33, 33, 128, 33, 33, 119, 128, 35, 35, 35, 117, (209,296): 35, 117, 35, 35, 232, 128, 119, 33, 221, 195, 72, 79, (209,308): 128, 117, 35, 35, 79, 33, 221, 128, 224, 224, 3, 34, 222, (209,321): 116, 221, 3, 146, 46, 224, 186, 49, 210, 33, 46, 88, 3, (209,334): 49, 156, 220, 100, 79, 63, 72, 33, 195, 2, 253, 220, 195, (209,347): 49, 66, 72, 156, 100, 253, 27, 104, 27, 156, 125, 66, (209,359): 100, 185, 241, 28, 219, 33, 219, 186, 117, 33, 187, 100, (209,371): 63, 27, 104, 195, (210,0): 79, 204, 156, 14, 49, 66, 156, 50, 183, 156, 46, 33, 128, (210,13): 88, 245, 88, 88, 245, 117, 35, 35, 221, 195, 14, 220, 220, (210,26): 156, 195, 195, 220, 156, 146, 49, 220, 220, 49, 72, 146, (210,38): 195, 72, 72, 33, 79, 234, 100, 18, 33, 18, 195, 38, 66, (210,51): 66, 241, 62, 14, 28, 38, 241, 187, 231, 241, 108, 180, (210,63): 108, 100, 187, 100, 219, 38, 194, 231, 58, 58, 142, 76, (210,75): 219, 185, 14, 185, 35, 125, 186, 66, 156, 28, 104, 27, (210,87): 104, 2, 156, 156, 108, 195, 100, 24, 24, 14, 194, 241, (210,99): 142, 62, 113, 119, 103, 71, 120, 113, 219, 251, 194, 163, (210,111): 74, 7, 209, 7, 228, 173, 228, 149, 45, 84, 237, 207, 207, (210,124): 58, 51, 231, 14, 18, 18, 116, 33, 79, 221, 79, 79, 33, (210,137): 33, 33, 33, 79, 186, 186, 18, 232, 232, 232, 35, 35, 35, (210,150): 128, 232, 119, 55, 125, 103, 250, 163, 196, 159, 68, 68, (210,162): 166, 77, 42, 42, 161, 21, 170, 230, 143, 184, 131, 170, (210,174): 170, 160, 132, 132, 170, 132, 132, 169, 132, 169, 169, (210,185): 205, 96, 21, 169, 169, 21, 21, 205, 205, 169, 132, 169, (210,197): 169, 169, 205, 179, 205, 205, 57, 57, 21, 96, 112, 250, (210,209): 55, 35, 201, 140, 140, 119, 140, 55, 139, 117, 0, 139, (210,221): 219, 153, 117, 119, 35, 117, 140, 117, 119, 35, 35, 35, (210,233): 117, 35, 35, 117, 35, 35, 35, 117, 35, 201, 117, 35, 117, (210,246): 35, 117, 185, 119, 35, 117, 117, 140, 35, 119, 140, 139, (210,258): 117, 139, 35, 139, 35, 139, 117, 117, 117, 117, 117, 139, (210,270): 117, 117, 117, 11, 117, 128, 128, 128, 35, 128, 119, 128, (210,282): 79, 185, 186, 185, 33, 33, 33, 119, 128, 119, 35, 35, (210,294): 117, 117, 128, 35, 128, 35, 35, 33, 33, 33, 88, 128, 185, (210,307): 221, 35, 35, 33, 186, 204, 156, 72, 221, 224, 224, 80, (210,319): 181, 183, 78, 182, 138, 63, 49, 186, 46, 128, 186, 49, (210,331): 128, 11, 33, 234, 181, 108, 104, 91, 14, 253, 253, 37, (210,343): 123, 123, 89, 99, 50, 63, 183, 252, 64, 180, 253, 252, (210,355): 64, 100, 119, 35, 232, 66, 100, 207, 93, 180, 66, 14, (210,367): 100, 220, 180, 220, 63, 63, 63, 195, (211,0): 33, 185, 195, 49, 66, 195, 195, 195, 108, 116, 117, 128, (211,12): 35, 11, 35, 232, 210, 35, 33, 128, 128, 33, 195, 156, 156, (211,25): 156, 72, 33, 46, 146, 49, 72, 234, 63, 180, 63, 108, 2, (211,38): 187, 2, 18, 79, 220, 252, 180, 18, 33, 18, 18, 18, 195, (211,51): 14, 241, 241, 233, 66, 241, 38, 180, 180, 241, 14, 180, 2, (211,64): 100, 100, 241, 66, 62, 20, 38, 20, 194, 251, 55, 185, 119, (211,77): 219, 33, 119, 33, 125, 66, 185, 72, 187, 175, 104, 108, (211,89): 156, 14, 14, 195, 66, 14, 14, 241, 219, 241, 142, 194, (211,101): 125, 55, 113, 125, 120, 55, 113, 103, 251, 194, 250, 110, (211,113): 7, 196, 209, 213, 41, 228, 228, 228, 60, 7, 207, 24, 231, (211,126): 100, 14, 186, 185, 33, 33, 33, 33, 33, 79, 33, 221, 33, (211,139): 79, 116, 185, 18, 18, 232, 232, 35, 245, 245, 35, 232, (211,151): 119, 33, 33, 113, 103, 194, 163, 163, 159, 127, 68, 68, (211,163): 166, 166, 166, 169, 169, 170, 160, 184, 114, 114, 170, (211,174): 170, 132, 169, 132, 169, 169, 169, 169, 169, 169, 169, (211,185): 169, 21, 169, 205, 169, 169, 169, 205, 205, 169, 132, 67, (211,197): 169, 169, 205, 57, 205, 205, 205, 205, 169, 96, 112, 120, (211,209): 117, 139, 35, 139, 35, 139, 139, 140, 35, 201, 119, 119, (211,221): 55, 14, 120, 33, 119, 117, 117, 117, 35, 117, 117, 117, (211,233): 35, 35, 117, 35, 117, 35, 117, 35, 35, 117, 35, 117, 35, (211,246): 35, 35, 35, 117, 35, 35, 35, 35, 245, 139, 117, 245, 117, (211,259): 35, 139, 117, 117, 117, 117, 117, 117, 139, 117, 117, (211,270): 117, 117, 35, 117, 117, 128, 119, 33, 128, 128, 33, 221, (211,282): 185, 72, 18, 186, 33, 35, 35, 128, 35, 35, 117, 11, 35, (211,295): 117, 11, 35, 117, 128, 35, 232, 119, 128, 35, 33, 186, (211,307): 33, 88, 210, 117, 232, 79, 234, 186, 72, 146, 116, 3, 46, (211,320): 234, 182, 156, 156, 156, 63, 50, 186, 3, 49, 195, 128, (211,332): 180, 183, 27, 175, 99, 183, 104, 175, 91, 99, 100, 108, (211,344): 64, 123, 175, 180, 180, 63, 181, 89, 220, 108, 66, 156, (211,356): 219, 33, 14, 175, 214, 249, 180, 66, 185, 66, 187, 14, (211,368): 104, 195, 100, 175, 14, 156, 14, (212,0): 18, 18, 72, 195, 195, 195, 186, 116, 72, 128, 128, 116, 33, (212,13): 117, 232, 33, 245, 245, 245, 128, 18, 234, 195, 186, 186, (212,25): 195, 195, 116, 116, 146, 49, 186, 116, 195, 156, 108, 51, (212,37): 27, 253, 14, 234, 195, 220, 187, 50, 18, 72, 14, 195, 195, (212,50): 66, 14, 28, 100, 100, 100, 241, 204, 14, 24, 180, 100, 14, (212,63): 14, 63, 2, 142, 24, 24, 62, 219, 243, 219, 243, 55, 120, (212,76): 119, 185, 185, 185, 128, 119, 33, 18, 186, 186, 195, 3, (212,88): 185, 108, 108, 66, 156, 66, 219, 100, 62, 241, 28, 153, (212,100): 153, 125, 113, 251, 219, 120, 120, 103, 251, 76, 102, 74, (212,112): 110, 7, 163, 7, 20, 213, 20, 213, 243, 233, 233, 62, 233, (212,125): 204, 38, 66, 204, 186, 79, 33, 128, 232, 128, 35, 33, 33, (212,138): 185, 79, 185, 79, 79, 79, 232, 35, 245, 35, 245, 35, 128, (212,151): 33, 79, 71, 125, 103, 102, 101, 163, 159, 68, 164, 164, (212,163): 190, 42, 96, 160, 26, 114, 114, 184, 131, 131, 131, 170, (212,175): 169, 169, 169, 169, 169, 169, 169, 169, 205, 169, 169, (212,186): 169, 205, 169, 169, 169, 57, 205, 205, 205, 169, 169, (212,197): 169, 169, 21, 205, 179, 57, 21, 169, 67, 68, 164, 201, (212,209): 140, 139, 119, 35, 201, 119, 119, 139, 117, 140, 125, 62, (212,221): 0, 140, 55, 33, 119, 35, 117, 35, 35, 117, 117, 35, 117, (212,234): 35, 35, 35, 201, 117, 35, 117, 35, 117, 35, 35, 117, 35, (212,247): 117, 117, 35, 35, 35, 35, 117, 117, 117, 139, 139, 35, (212,259): 139, 35, 139, 245, 117, 139, 35, 245, 35, 117, 35, 117, (212,271): 117, 35, 117, 128, 128, 33, 128, 119, 33, 185, 185, 186, (212,283): 185, 185, 33, 35, 35, 35, 35, 117, 11, 117, 117, 117, (212,295): 117, 117, 117, 117, 117, 35, 128, 35, 128, 33, 221, 79, (212,307): 128, 117, 117, 11, 117, 128, 35, 210, 49, 108, 116, 111, (212,319): 46, 146, 72, 72, 224, 128, 146, 220, 186, 46, 147, 11, (212,331): 11, 72, 63, 123, 183, 220, 147, 186, 100, 8, 216, 183, (212,343): 123, 18, 186, 108, 63, 108, 14, 195, 220, 156, 180, 241, (212,355): 156, 51, 180, 93, 89, 175, 99, 99, 8, 180, 156, 104, 64, (212,368): 27, 104, 63, 181, 100, 156, 186, (213,0): 241, 66, 18, 18, 195, 49, 146, 195, 63, 220, 50, 100, 72, (213,13): 232, 88, 88, 128, 221, 116, 18, 234, 220, 220, 49, 116, (213,25): 49, 156, 156, 156, 156, 49, 72, 195, 14, 180, 51, 27, 123, (213,38): 8, 175, 2, 180, 63, 108, 100, 156, 49, 195, 156, 195, 195, (213,51): 66, 100, 24, 187, 51, 70, 252, 28, 51, 175, 252, 187, 63, (213,64): 28, 24, 180, 100, 28, 207, 28, 236, 236, 120, 185, 55, (213,76): 119, 33, 125, 14, 33, 232, 221, 125, 156, 100, 156, 221, (213,88): 156, 187, 187, 66, 14, 125, 125, 195, 14, 62, 153, 100, (213,100): 194, 125, 62, 153, 251, 71, 120, 251, 103, 113, 219, 60, (213,112): 196, 196, 196, 149, 228, 243, 243, 243, 243, 243, 204, (213,123): 38, 241, 241, 204, 79, 18, 185, 33, 232, 232, 128, 35, (213,135): 35, 35, 33, 33, 33, 33, 33, 128, 33, 232, 232, 35, 245, (213,148): 35, 232, 232, 119, 185, 71, 125, 107, 102, 250, 163, 218, (213,160): 164, 190, 200, 200, 166, 169, 167, 114, 61, 114, 160, (213,171): 169, 169, 170, 169, 57, 132, 132, 169, 169, 169, 169, (213,182): 169, 169, 169, 169, 205, 169, 169, 169, 169, 169, 205, (213,193): 57, 169, 169, 169, 169, 169, 21, 21, 170, 132, 21, 166, (213,205): 67, 164, 107, 201, 201, 117, 139, 35, 119, 55, 79, 139, (213,217): 119, 139, 119, 62, 55, 140, 140, 119, 35, 117, 117, 35, (213,229): 119, 35, 201, 117, 35, 35, 117, 117, 35, 117, 35, 201, (213,241): 35, 117, 201, 117, 35, 35, 35, 33, 55, 119, 35, 88, 139, (213,254): 35, 35, 232, 139, 35, 35, 139, 35, 35, 139, 35, 117, 117, (213,267): 245, 35, 245, 117, 117, 128, 35, 33, 33, 119, 33, 33, 33, (213,280): 186, 185, 186, 79, 33, 35, 11, 117, 35, 117, 117, 117, (213,292): 117, 117, 117, 117, 35, 117, 117, 11, 35, 35, 128, 35, (213,304): 35, 128, 128, 35, 35, 232, 33, 33, 128, 116, 128, 116, (213,316): 146, 116, 3, 49, 63, 234, 49, 156, 46, 128, 46, 128, 11, (213,329): 33, 221, 33, 245, 210, 66, 63, 79, 104, 220, 253, 195, (213,341): 121, 180, 195, 14, 79, 2, 121, 27, 66, 221, 219, 195, (213,353): 180, 14, 2, 214, 37, 175, 187, 99, 187, 14, 2, 156, 128, (213,366): 221, 49, 180, 183, 156, 221, 195, 63, 220, (214,0): 18, 79, 33, 128, 33, 79, 186, 186, 156, 146, 66, 49, 195, (214,13): 79, 33, 245, 128, 72, 234, 49, 195, 234, 220, 108, 116, (214,25): 186, 49, 156, 156, 49, 72, 195, 18, 241, 180, 28, 14, 63, (214,38): 252, 121, 2, 175, 91, 108, 108, 181, 220, 186, 72, 195, (214,50): 125, 18, 66, 100, 24, 180, 100, 207, 241, 66, 180, 187, (214,62): 187, 180, 241, 156, 66, 125, 241, 24, 60, 55, 185, 55, 55, (214,75): 33, 55, 33, 195, 100, 185, 18, 219, 186, 66, 105, 253, (214,87): 156, 105, 180, 180, 195, 72, 66, 100, 125, 219, 66, 28, (214,99): 24, 194, 219, 251, 142, 28, 103, 113, 113, 113, 71, 71, (214,111): 76, 194, 196, 74, 142, 60, 6, 243, 76, 233, 76, 204, 233, (214,124): 62, 14, 204, 79, 33, 33, 232, 35, 35, 128, 232, 128, 117, (214,137): 35, 33, 128, 232, 117, 232, 33, 232, 232, 35, 35, 35, (214,149): 232, 33, 33, 120, 71, 219, 103, 102, 118, 250, 200, 200, (214,161): 200, 200, 200, 42, 67, 114, 255, 114, 114, 132, 205, 205, (214,173): 169, 205, 169, 169, 205, 169, 205, 205, 169, 169, 132, (214,184): 169, 205, 169, 21, 169, 132, 169, 57, 205, 205, 57, 169, (214,196): 169, 169, 166, 205, 21, 169, 169, 166, 67, 68, 118, 145, (214,208): 201, 119, 35, 140, 139, 35, 201, 119, 140, 185, 62, 119, (214,220): 119, 119, 55, 119, 117, 117, 35, 35, 35, 35, 35, 35, 117, (214,233): 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (214,246): 201, 117, 119, 33, 55, 117, 140, 117, 35, 139, 35, 35, (214,258): 139, 245, 35, 35, 232, 232, 35, 245, 139, 35, 245, 117, (214,270): 35, 245, 35, 33, 33, 33, 232, 35, 33, 185, 79, 79, 185, (214,283): 33, 35, 35, 35, 128, 117, 117, 117, 117, 117, 117, 117, (214,295): 35, 117, 35, 117, 35, 117, 35, 35, 128, 33, 33, 33, 117, (214,308): 11, 117, 11, 88, 33, 195, 49, 128, 46, 49, 3, 72, 146, (214,321): 221, 146, 108, 49, 186, 186, 46, 49, 63, 72, 195, 100, (214,333): 234, 66, 63, 72, 63, 27, 70, 121, 121, 64, 252, 105, 175, (214,346): 27, 100, 195, 220, 180, 72, 14, 156, 185, 18, 27, 157, (214,358): 93, 185, 185, 18, 220, 14, 49, 220, 220, 146, 186, 66, (214,370): 146, 100, 220, 253, 253, (215,0): 79, 79, 33, 33, 33, 221, 221, 46, 156, 186, 221, 186, 18, (215,13): 195, 18, 33, 116, 195, 195, 186, 186, 49, 156, 49, 156, (215,25): 146, 146, 156, 50, 156, 220, 63, 241, 241, 14, 241, 204, (215,37): 18, 241, 180, 220, 123, 175, 234, 50, 2, 138, 220, 116, (215,49): 66, 195, 185, 185, 66, 66, 204, 241, 8, 93, 28, 187, 187, (215,62): 2, 100, 66, 241, 241, 233, 219, 125, 204, 71, 185, 55, (215,74): 185, 33, 33, 35, 33, 125, 79, 33, 185, 66, 195, 185, 195, (215,87): 195, 105, 195, 156, 185, 185, 180, 8, 63, 185, 241, 153, (215,99): 246, 28, 125, 185, 153, 153, 62, 71, 71, 113, 103, 113, (215,111): 71, 103, 194, 243, 20, 60, 103, 60, 207, 74, 194, 233, (215,123): 204, 204, 204, 204, 18, 79, 33, 128, 117, 35, 35, 35, 35, (215,136): 117, 232, 128, 232, 117, 35, 33, 79, 232, 232, 35, 245, (215,148): 35, 35, 33, 55, 33, 120, 103, 254, 251, 118, 250, 118, (215,160): 101, 155, 155, 190, 166, 40, 114, 255, 132, 160, 132, (215,171): 160, 170, 132, 170, 169, 205, 21, 21, 21, 21, 21, 169, (215,183): 205, 169, 205, 96, 205, 169, 169, 169, 169, 205, 205, (215,194): 205, 169, 169, 169, 169, 161, 169, 161, 161, 96, 67, 159, (215,206): 107, 199, 199, 117, 139, 88, 201, 35, 140, 117, 28, 35, (215,218): 125, 55, 117, 140, 140, 119, 117, 117, 119, 119, 35, 117, (215,230): 117, 117, 117, 35, 35, 35, 117, 35, 35, 35, 117, 35, 117, (215,243): 35, 35, 35, 117, 117, 117, 35, 119, 119, 117, 35, 117, (215,255): 245, 232, 139, 245, 245, 245, 232, 55, 79, 245, 35, 245, (215,267): 245, 35, 245, 117, 117, 35, 33, 33, 33, 232, 128, 33, (215,279): 185, 35, 128, 35, 35, 117, 117, 117, 117, 117, 117, 117, (215,291): 117, 11, 35, 117, 35, 128, 35, 35, 35, 35, 35, 128, 119, (215,304): 117, 35, 128, 35, 117, 33, 33, 33, 128, 11, 186, 116, 49, (215,317): 234, 128, 111, 195, 79, 49, 220, 72, 156, 50, 72, 128, (215,329): 186, 128, 195, 79, 63, 242, 123, 70, 195, 156, 72, 220, (215,341): 27, 180, 8, 27, 27, 220, 220, 180, 63, 108, 79, 186, 185, (215,354): 204, 33, 33, 241, 2, 117, 33, 117, 66, 156, 220, 181, (215,366): 181, 27, 91, 108, 146, 108, 195, 221, 128, (216,0): 33, 204, 33, 79, 33, 128, 221, 181, 91, 49, 128, 117, 33, (216,13): 128, 245, 245, 245, 116, 72, 224, 221, 49, 156, 156, 66, (216,25): 156, 220, 50, 50, 49, 72, 14, 195, 62, 204, 38, 234, 38, (216,38): 2, 99, 123, 108, 63, 108, 72, 50, 105, 195, 195, 195, 66, (216,51): 156, 241, 18, 38, 153, 207, 100, 207, 24, 100, 142, 24, (216,63): 180, 241, 51, 66, 14, 38, 38, 241, 185, 55, 232, 185, 185, (216,76): 35, 221, 72, 33, 79, 185, 195, 156, 185, 186, 180, 63, (216,88): 121, 175, 186, 72, 195, 125, 187, 246, 14, 241, 66, 24, (216,100): 51, 103, 71, 62, 192, 192, 103, 71, 251, 71, 71, 113, (216,112): 251, 251, 251, 251, 38, 20, 62, 60, 241, 194, 28, 62, (216,124): 204, 18, 185, 18, 33, 232, 35, 35, 128, 35, 128, 33, 128, (216,137): 232, 35, 35, 128, 232, 33, 33, 185, 55, 232, 232, 232, (216,149): 232, 232, 55, 185, 71, 103, 107, 254, 254, 118, 118, 155, (216,161): 155, 200, 190, 166, 167, 167, 169, 190, 202, 96, 169, (216,172): 169, 169, 169, 132, 169, 169, 169, 169, 21, 169, 205, (216,183): 169, 169, 205, 161, 21, 161, 21, 205, 205, 205, 205, 205, (216,195): 21, 169, 21, 169, 169, 169, 169, 96, 166, 112, 159, 173, (216,207): 199, 139, 117, 140, 117, 117, 201, 35, 117, 103, 55, 117, (216,219): 119, 119, 140, 147, 201, 117, 117, 117, 117, 117, 117, (216,230): 117, 117, 117, 117, 117, 117, 201, 117, 117, 117, 117, (216,241): 185, 117, 147, 119, 117, 117, 125, 117, 117, 117, 117, (216,252): 117, 35, 117, 117, 117, 245, 35, 139, 35, 245, 35, 245, (216,264): 245, 245, 35, 117, 117, 117, 128, 35, 33, 232, 232, 35, (216,276): 128, 119, 33, 128, 117, 117, 117, 11, 117, 117, 11, 117, (216,288): 35, 35, 117, 35, 117, 117, 35, 117, 35, 117, 128, 117, (216,300): 117, 128, 33, 33, 117, 35, 117, 11, 117, 35, 128, 128, (216,312): 128, 72, 220, 156, 116, 146, 146, 11, 128, 116, 128, 221, (216,324): 128, 46, 128, 111, 11, 128, 116, 33, 116, 72, 100, 97, (216,336): 178, 253, 14, 66, 156, 252, 123, 220, 63, 156, 108, 66, (216,348): 108, 63, 220, 156, 185, 220, 11, 35, 245, 117, 33, 88, (216,360): 18, 156, 220, 63, 156, 105, 181, 50, 156, 220, 146, 63, (216,372): 63, 46, 128, (217,0): 195, 18, 49, 63, 221, 116, 49, 50, 14, 195, 221, 11, 245, (217,13): 245, 35, 33, 33, 46, 33, 128, 33, 72, 195, 116, 72, 49, (217,26): 79, 186, 66, 66, 156, 66, 204, 207, 51, 204, 204, 51, 8, (217,39): 178, 175, 63, 14, 49, 72, 195, 156, 146, 49, 66, 125, 66, (217,52): 156, 219, 204, 28, 153, 219, 100, 51, 24, 28, 93, 178, 70, (217,65): 157, 14, 24, 100, 241, 241, 204, 204, 204, 14, 100, 195, (217,77): 125, 195, 79, 156, 14, 63, 70, 14, 33, 186, 108, 50, 104, (217,90): 66, 33, 33, 66, 187, 63, 70, 100, 219, 153, 142, 241, 185, (217,103): 38, 251, 192, 194, 71, 251, 194, 194, 125, 113, 219, 219, (217,115): 219, 243, 243, 219, 38, 38, 38, 66, 241, 14, 66, 79, 128, (217,128): 35, 35, 35, 117, 11, 35, 35, 35, 33, 232, 128, 35, 232, (217,141): 33, 33, 55, 79, 33, 232, 35, 232, 55, 33, 33, 120, 71, (217,154): 107, 251, 254, 254, 9, 118, 155, 190, 68, 67, 167, 167, (217,166): 166, 190, 190, 42, 21, 96, 21, 21, 21, 21, 169, 205, 169, (217,179): 21, 169, 21, 21, 21, 169, 169, 169, 21, 169, 205, 169, (217,191): 169, 205, 21, 205, 21, 169, 21, 169, 169, 169, 21, 96, (217,203): 166, 68, 218, 145, 199, 199, 117, 119, 119, 201, 117, 88, (217,215): 139, 117, 117, 117, 140, 117, 35, 119, 119, 117, 117, (217,226): 117, 35, 117, 201, 117, 35, 35, 117, 35, 117, 117, 117, (217,238): 35, 117, 119, 125, 55, 140, 33, 201, 117, 185, 35, 117, (217,250): 35, 117, 35, 117, 117, 35, 139, 139, 245, 35, 35, 139, (217,262): 245, 117, 245, 35, 35, 35, 35, 128, 232, 33, 33, 33, 128, (217,275): 232, 33, 128, 232, 35, 117, 117, 117, 117, 117, 117, 117, (217,287): 117, 128, 117, 35, 245, 35, 245, 35, 128, 245, 35, 35, (217,299): 35, 35, 117, 232, 33, 128, 35, 35, 117, 128, 221, 128, (217,311): 128, 116, 11, 221, 146, 146, 72, 49, 156, 72, 72, 33, (217,323): 224, 186, 156, 3, 186, 224, 11, 182, 72, 123, 187, 180, (217,335): 2, 104, 253, 156, 220, 27, 195, 99, 27, 63, 195, 104, 99, (217,348): 70, 63, 180, 195, 220, 180, 33, 33, 245, 147, 33, 33, 66, (217,361): 220, 156, 220, 105, 181, 50, 50, 146, 108, 108, 63, 181, (217,373): 220, 72, (218,0): 14, 14, 234, 204, 33, 63, 63, 221, 116, 186, 116, 117, 210, (218,13): 35, 221, 79, 116, 33, 11, 128, 116, 49, 195, 116, 18, 108, (218,26): 156, 156, 100, 156, 14, 18, 24, 70, 249, 70, 51, 187, 180, (218,39): 104, 252, 180, 49, 66, 156, 195, 49, 63, 156, 66, 195, 66, (218,52): 241, 241, 66, 62, 38, 38, 233, 194, 62, 100, 93, 93, 157, (218,65): 93, 219, 100, 100, 185, 79, 79, 204, 66, 14, 14, 18, 221, (218,78): 185, 79, 125, 66, 185, 63, 79, 72, 186, 186, 195, 63, 195, (218,91): 221, 33, 33, 14, 194, 246, 246, 252, 24, 241, 241, 100, (218,103): 251, 219, 58, 153, 219, 251, 153, 74, 251, 125, 219, 103, (218,115): 38, 125, 185, 71, 204, 241, 233, 204, 79, 232, 33, 79, (218,127): 116, 232, 35, 117, 117, 117, 117, 35, 117, 232, 232, 232, (218,139): 33, 232, 232, 33, 232, 55, 232, 35, 35, 232, 232, 55, 55, (218,152): 185, 71, 103, 107, 254, 92, 118, 118, 190, 166, 40, 167, (218,164): 67, 42, 190, 136, 136, 136, 161, 166, 169, 205, 21, 205, (218,176): 169, 169, 205, 169, 21, 21, 21, 21, 169, 205, 169, 169, (218,188): 205, 169, 169, 205, 205, 205, 21, 169, 169, 21, 169, 21, (218,200): 132, 21, 169, 67, 68, 101, 201, 201, 140, 119, 185, 55, (218,212): 128, 117, 140, 117, 140, 55, 55, 35, 117, 55, 33, 140, (218,224): 35, 35, 35, 35, 35, 35, 35, 35, 117, 117, 117, 117, 35, (218,237): 117, 117, 117, 119, 185, 33, 117, 119, 117, 140, 119, (218,248): 117, 117, 139, 117, 117, 139, 117, 139, 117, 35, 35, 245, (218,260): 245, 35, 35, 245, 35, 232, 35, 128, 128, 128, 33, 33, 33, (218,273): 232, 33, 119, 33, 119, 35, 117, 117, 117, 117, 117, 117, (218,285): 117, 245, 117, 117, 117, 117, 35, 245, 128, 35, 35, 245, (218,297): 128, 117, 128, 117, 35, 35, 35, 117, 117, 35, 33, 185, (218,309): 195, 72, 46, 72, 224, 128, 186, 146, 116, 221, 234, 220, (218,321): 63, 138, 49, 50, 50, 138, 138, 156, 50, 49, 33, 156, 63, (218,334): 28, 175, 8, 183, 14, 108, 33, 72, 49, 35, 156, 128, 195, (218,347): 108, 14, 195, 187, 27, 195, 220, 128, 195, 186, 79, 66, (218,359): 100, 108, 104, 2, 156, 137, 181, 222, 137, 63, 63, 186, (218,371): 224, 46, 146, 50, (219,0): 14, 24, 63, 64, 216, 121, 63, 50, 186, 116, 128, 128, 35, (219,13): 33, 79, 33, 116, 128, 11, 33, 195, 156, 156, 195, 14, 93, (219,26): 104, 51, 63, 18, 14, 66, 241, 38, 70, 226, 70, 180, 55, (219,39): 195, 14, 66, 185, 221, 46, 186, 195, 108, 156, 100, 14, (219,51): 14, 28, 100, 38, 219, 60, 192, 142, 153, 24, 142, 58, 125, (219,64): 180, 28, 241, 24, 24, 219, 185, 79, 156, 195, 66, 66, 186, (219,77): 221, 195, 220, 104, 28, 63, 37, 175, 156, 221, 186, 156, (219,89): 220, 185, 79, 33, 117, 125, 100, 104, 226, 37, 192, 125, (219,101): 219, 62, 219, 125, 233, 219, 120, 113, 71, 219, 251, 219, (219,113): 66, 194, 241, 38, 71, 71, 18, 71, 204, 204, 204, 79, 33, (219,126): 33, 79, 128, 35, 232, 35, 117, 35, 117, 117, 35, 128, (219,138): 232, 232, 33, 232, 33, 232, 232, 35, 139, 117, 117, 232, (219,150): 119, 119, 71, 113, 76, 107, 254, 9, 118, 155, 190, 166, (219,162): 40, 96, 190, 200, 155, 200, 155, 190, 161, 166, 169, 169, (219,174): 169, 169, 169, 21, 169, 21, 21, 21, 21, 161, 21, 169, (219,186): 205, 169, 169, 21, 169, 21, 205, 205, 205, 21, 169, 169, (219,198): 169, 169, 132, 21, 160, 67, 68, 101, 19, 201, 140, 35, (219,210): 185, 55, 119, 117, 139, 117, 117, 185, 125, 119, 201, 33, (219,222): 55, 117, 35, 35, 35, 35, 117, 35, 117, 35, 117, 201, 117, (219,235): 35, 117, 117, 117, 35, 117, 128, 201, 88, 35, 117, 140, (219,247): 119, 35, 117, 117, 117, 117, 117, 117, 35, 245, 35, 245, (219,259): 139, 245, 245, 35, 35, 245, 117, 245, 35, 117, 232, 33, (219,271): 33, 33, 33, 232, 33, 232, 232, 35, 245, 117, 35, 245, 35, (219,284): 245, 35, 117, 35, 35, 245, 128, 245, 35, 35, 232, 128, (219,296): 117, 35, 35, 232, 128, 35, 117, 35, 117, 117, 117, 128, (219,308): 116, 195, 195, 186, 186, 156, 146, 116, 195, 116, 128, (219,319): 128, 221, 195, 156, 116, 186, 111, 3, 50, 3, 78, 3, 11, (219,332): 11, 79, 116, 252, 123, 242, 183, 18, 27, 104, 156, 66, 2, (219,345): 100, 156, 79, 156, 108, 181, 37, 108, 108, 186, 50, 100, (219,357): 234, 63, 183, 175, 121, 175, 253, 64, 253, 108, 91, 146, (219,369): 49, 80, 181, 105, 50, 156, (220,0): 180, 249, 216, 226, 123, 64, 220, 186, 195, 221, 11, 33, (220,12): 33, 33, 35, 33, 79, 35, 128, 79, 195, 195, 195, 66, 63, (220,25): 252, 187, 2, 100, 204, 100, 51, 66, 204, 207, 28, 180, 51, (220,38): 14, 66, 204, 221, 79, 221, 117, 221, 156, 156, 14, 180, (220,50): 153, 28, 24, 153, 194, 251, 231, 58, 58, 198, 84, 194, (220,62): 251, 71, 125, 62, 28, 24, 187, 241, 185, 79, 18, 18, 116, (220,75): 79, 221, 33, 195, 63, 195, 66, 100, 187, 121, 216, 216, (220,87): 180, 49, 156, 186, 117, 88, 35, 185, 18, 28, 28, 187, 93, (220,100): 24, 100, 100, 194, 185, 120, 120, 185, 236, 55, 55, 103, (220,112): 219, 241, 14, 62, 219, 18, 185, 71, 79, 55, 33, 18, 66, (220,125): 234, 195, 79, 33, 33, 232, 232, 35, 35, 117, 35, 35, 35, (220,138): 232, 232, 232, 232, 35, 35, 117, 139, 245, 117, 140, 117, (220,150): 117, 201, 185, 113, 76, 107, 254, 254, 200, 200, 190, 67, (220,162): 67, 67, 190, 155, 155, 155, 166, 166, 169, 169, 169, 166, (220,174): 21, 161, 205, 169, 21, 169, 21, 21, 161, 21, 169, 21, (220,186): 169, 169, 169, 169, 205, 169, 205, 169, 205, 169, 169, (220,197): 169, 205, 169, 205, 21, 169, 67, 68, 215, 19, 201, 140, (220,209): 117, 117, 35, 117, 117, 117, 140, 117, 35, 119, 35, 117, (220,221): 35, 119, 35, 35, 35, 35, 117, 117, 117, 117, 35, 117, (220,233): 117, 117, 117, 35, 117, 35, 117, 140, 35, 117, 117, 35, (220,245): 117, 117, 117, 117, 35, 117, 35, 139, 117, 117, 139, 117, (220,257): 117, 35, 245, 35, 245, 35, 245, 117, 35, 11, 128, 35, (220,269): 128, 33, 33, 79, 55, 232, 35, 35, 117, 117, 35, 117, 35, (220,282): 245, 117, 117, 117, 245, 35, 245, 35, 245, 35, 128, 35, (220,294): 128, 232, 35, 128, 232, 128, 232, 128, 35, 117, 35, 232, (220,306): 232, 35, 128, 33, 224, 224, 221, 182, 50, 146, 49, 49, (220,318): 186, 46, 33, 128, 111, 11, 3, 224, 3, 182, 3, 22, 50, (220,331): 224, 195, 128, 128, 186, 14, 50, 180, 123, 37, 183, 37, (220,343): 123, 220, 79, 186, 117, 156, 187, 100, 97, 223, 176, 72, (220,355): 49, 72, 186, 72, 63, 195, 195, 186, 156, 181, 64, 176, (220,367): 63, 138, 50, 156, 222, 108, 156, 181, (221,0): 89, 123, 175, 97, 187, 156, 72, 72, 221, 11, 128, 79, 221, (221,13): 35, 128, 18, 79, 221, 79, 18, 72, 204, 204, 204, 14, 14, (221,26): 100, 231, 24, 180, 207, 27, 246, 187, 2, 241, 38, 2, 28, (221,39): 66, 14, 195, 156, 66, 33, 66, 180, 100, 14, 100, 100, 153, (221,52): 51, 192, 58, 58, 84, 15, 237, 229, 193, 237, 194, 62, 55, (221,65): 66, 28, 14, 241, 79, 232, 117, 128, 79, 186, 186, 72, 186, (221,78): 195, 220, 93, 156, 28, 104, 121, 27, 216, 177, 2, 100, (221,90): 186, 79, 221, 35, 88, 33, 33, 185, 241, 24, 187, 142, 142, (221,103): 24, 236, 55, 185, 120, 120, 243, 71, 219, 219, 66, 14, (221,115): 241, 219, 185, 236, 33, 71, 33, 232, 33, 18, 195, 72, (221,127): 195, 33, 33, 33, 232, 35, 35, 35, 245, 117, 117, 35, 117, (221,140): 35, 117, 35, 117, 245, 117, 117, 245, 140, 140, 140, 35, (221,152): 120, 113, 113, 107, 254, 9, 200, 218, 166, 161, 42, 190, (221,164): 155, 118, 155, 190, 166, 67, 67, 67, 169, 169, 21, 21, (221,176): 205, 21, 169, 21, 169, 21, 169, 21, 169, 169, 132, 132, (221,188): 132, 132, 132, 205, 169, 57, 169, 169, 169, 169, 169, 57, (221,200): 132, 205, 132, 67, 10, 209, 145, 201, 201, 117, 117, 117, (221,212): 35, 35, 35, 201, 117, 117, 117, 35, 117, 117, 117, 119, (221,224): 35, 35, 201, 117, 117, 117, 139, 35, 117, 117, 35, 117, (221,236): 117, 139, 117, 117, 35, 117, 35, 201, 35, 117, 117, 139, (221,248): 117, 117, 139, 117, 117, 35, 117, 117, 35, 245, 35, 245, (221,260): 35, 245, 35, 245, 117, 232, 128, 128, 33, 128, 33, 33, (221,272): 33, 33, 35, 245, 117, 117, 35, 35, 117, 117, 35, 35, 139, (221,285): 245, 35, 35, 35, 35, 128, 245, 35, 35, 35, 232, 128, 35, (221,298): 35, 232, 128, 232, 232, 35, 119, 33, 119, 117, 128, 128, (221,310): 33, 224, 221, 3, 146, 195, 49, 146, 195, 156, 146, 195, (221,322): 3, 111, 3, 3, 80, 124, 12, 137, 138, 146, 116, 79, 72, (221,335): 66, 195, 104, 220, 2, 27, 183, 253, 97, 37, 220, 63, 108, (221,348): 186, 156, 33, 156, 176, 78, 116, 3, 116, 72, 116, 14, (221,360): 234, 195, 33, 221, 117, 220, 50, 195, 146, 50, 50, 50, (221,372): 146, 49, 78, (222,0): 66, 18, 18, 14, 72, 156, 72, 44, 11, 128, 33, 186, 79, 33, (222,14): 33, 18, 72, 72, 66, 195, 204, 195, 204, 195, 38, 18, 14, (222,27): 14, 207, 93, 231, 51, 51, 100, 100, 100, 66, 14, 241, 195, (222,40): 14, 241, 241, 66, 156, 220, 187, 183, 252, 142, 28, 100, (222,52): 24, 58, 142, 237, 142, 196, 74, 153, 15, 15, 251, 236, (222,64): 219, 103, 100, 219, 66, 79, 35, 128, 33, 156, 14, 156, (222,76): 108, 156, 195, 49, 79, 100, 157, 27, 28, 185, 253, 91, (222,88): 175, 63, 146, 66, 66, 33, 140, 79, 185, 241, 14, 103, 241, (222,101): 14, 62, 38, 79, 139, 55, 199, 139, 71, 55, 145, 125, 125, (222,114): 195, 125, 125, 119, 232, 55, 35, 232, 18, 204, 79, 79, (222,126): 35, 245, 33, 55, 232, 232, 35, 245, 245, 140, 245, 245, (222,138): 245, 117, 245, 245, 245, 140, 140, 140, 140, 139, 88, (222,149): 140, 35, 201, 71, 71, 113, 173, 254, 118, 200, 190, 161, (222,161): 136, 174, 174, 155, 200, 190, 166, 166, 166, 166, 169, (222,172): 169, 169, 169, 169, 96, 205, 96, 205, 96, 169, 21, 169, (222,184): 169, 132, 169, 132, 132, 169, 169, 132, 169, 205, 169, (222,195): 132, 169, 132, 132, 57, 170, 169, 132, 169, 148, 39, 6, (222,207): 201, 119, 117, 201, 117, 119, 119, 119, 35, 119, 35, 117, (222,219): 35, 119, 35, 117, 35, 119, 119, 35, 117, 117, 117, 117, (222,231): 201, 117, 117, 35, 139, 117, 117, 117, 35, 201, 117, 117, (222,243): 117, 117, 140, 117, 140, 117, 117, 117, 117, 117, 117, (222,254): 35, 117, 245, 117, 117, 245, 35, 245, 35, 245, 128, 232, (222,266): 33, 33, 33, 33, 33, 33, 232, 35, 117, 117, 245, 139, 117, (222,279): 35, 35, 245, 35, 35, 35, 35, 35, 245, 232, 117, 35, 35, (222,292): 128, 35, 128, 35, 232, 35, 117, 128, 232, 35, 128, 117, (222,304): 35, 35, 232, 232, 128, 46, 46, 221, 186, 224, 221, 116, (222,316): 46, 221, 72, 195, 116, 146, 46, 46, 111, 3, 133, 124, 12, (222,329): 141, 124, 176, 116, 49, 49, 220, 123, 180, 175, 186, 100, (222,341): 2, 104, 253, 70, 156, 14, 187, 186, 79, 128, 210, 116, 3, (222,354): 3, 146, 156, 63, 49, 234, 14, 14, 108, 234, 33, 72, 108, (222,367): 181, 50, 50, 138, 78, 182, 80, 78, (223,0): 232, 116, 35, 33, 186, 186, 210, 128, 128, 33, 221, 221, (223,12): 116, 18, 72, 79, 18, 66, 241, 195, 72, 195, 72, 18, 66, (223,25): 18, 62, 79, 66, 207, 66, 14, 100, 100, 24, 187, 100, 156, (223,38): 14, 125, 14, 108, 66, 241, 2, 24, 192, 37, 214, 226, 24, (223,51): 194, 60, 100, 20, 194, 20, 194, 74, 228, 74, 207, 76, 219, (223,64): 38, 18, 219, 185, 66, 79, 33, 33, 79, 156, 220, 156, 14, (223,77): 234, 33, 33, 185, 33, 66, 24, 146, 35, 195, 63, 104, 253, (223,90): 14, 221, 79, 66, 195, 125, 185, 125, 33, 119, 18, 120, 79, (223,103): 241, 100, 55, 55, 35, 139, 185, 55, 185, 79, 185, 185, (223,115): 185, 119, 35, 117, 245, 18, 33, 35, 232, 79, 18, 221, (223,127): 232, 33, 33, 128, 35, 35, 140, 245, 147, 140, 245, 140, (223,139): 245, 140, 88, 140, 245, 140, 140, 117, 117, 140, 117, (223,150): 201, 201, 71, 120, 107, 173, 154, 118, 200, 190, 200, (223,161): 174, 174, 136, 166, 96, 166, 67, 166, 67, 67, 169, 166, (223,173): 161, 21, 21, 205, 21, 21, 169, 205, 169, 169, 169, 169, (223,185): 169, 169, 169, 169, 169, 169, 169, 169, 132, 169, 169, (223,196): 132, 205, 132, 57, 57, 132, 169, 96, 148, 39, 6, 19, 140, (223,209): 117, 117, 117, 35, 117, 117, 117, 117, 117, 35, 117, 35, (223,221): 55, 119, 117, 119, 128, 35, 35, 117, 35, 35, 35, 117, (223,233): 117, 117, 117, 117, 35, 117, 117, 35, 117, 117, 35, 117, (223,245): 35, 119, 117, 117, 35, 117, 117, 139, 35, 117, 117, 35, (223,257): 139, 117, 117, 245, 35, 117, 117, 117, 35, 33, 33, 33, (223,269): 33, 33, 33, 35, 117, 117, 245, 35, 117, 35, 245, 117, 35, (223,282): 245, 35, 35, 245, 35, 35, 35, 232, 128, 35, 35, 35, 35, (223,295): 35, 128, 35, 245, 117, 35, 128, 35, 35, 35, 35, 117, 35, (223,308): 33, 33, 128, 11, 46, 128, 224, 221, 11, 221, 72, 116, 46, (223,321): 49, 111, 3, 80, 12, 12, 203, 12, 12, 124, 34, 156, 195, (223,334): 63, 14, 183, 187, 49, 156, 49, 33, 186, 49, 63, 105, 116, (223,347): 195, 35, 11, 116, 128, 11, 46, 46, 46, 111, 146, 128, (223,359): 128, 128, 72, 63, 63, 108, 46, 72, 72, 78, 156, 182, 253, (223,372): 50, 3, 108, (224,0): 35, 128, 79, 79, 79, 128, 128, 11, 210, 11, 72, 46, 220, (224,13): 234, 222, 108, 3, 195, 49, 66, 195, 66, 234, 100, 72, 14, (224,26): 100, 72, 33, 18, 241, 14, 100, 185, 180, 100, 99, 187, (224,38): 195, 195, 125, 241, 157, 99, 152, 192, 198, 15, 152, 25, (224,50): 110, 153, 251, 142, 153, 243, 219, 233, 28, 28, 60, 251, (224,62): 125, 55, 185, 125, 186, 33, 66, 100, 66, 33, 186, 66, 125, (224,75): 185, 18, 79, 33, 232, 55, 185, 185, 66, 241, 186, 186, 66, (224,88): 108, 108, 220, 72, 156, 108, 125, 195, 18, 79, 55, 33, (224,100): 119, 232, 185, 219, 14, 241, 219, 33, 35, 140, 119, 55, (224,112): 35, 35, 35, 35, 35, 35, 117, 140, 119, 79, 204, 186, 33, (224,125): 245, 245, 232, 128, 55, 232, 232, 117, 245, 245, 245, (224,136): 245, 140, 245, 140, 88, 140, 88, 140, 140, 140, 140, 140, (224,148): 140, 140, 119, 55, 120, 120, 173, 107, 118, 200, 190, (224,159): 190, 155, 155, 136, 136, 161, 166, 67, 169, 67, 169, 169, (224,171): 96, 205, 21, 169, 21, 161, 161, 21, 21, 21, 169, 132, (224,183): 132, 205, 132, 205, 169, 205, 169, 169, 169, 169, 67, (224,194): 169, 169, 132, 170, 57, 57, 205, 184, 169, 82, 68, 7, (224,206): 145, 139, 139, 117, 117, 35, 117, 35, 35, 119, 35, 35, (224,218): 117, 35, 117, 35, 35, 117, 185, 185, 55, 119, 35, 35, (224,230): 117, 35, 117, 201, 117, 35, 35, 201, 117, 35, 117, 117, (224,242): 117, 35, 117, 117, 117, 117, 35, 139, 117, 117, 117, 117, (224,254): 35, 117, 139, 117, 35, 117, 117, 117, 35, 117, 232, 33, (224,266): 232, 33, 119, 35, 35, 117, 117, 117, 139, 117, 117, 35, (224,278): 245, 117, 139, 35, 35, 35, 117, 35, 35, 245, 232, 245, (224,290): 35, 245, 35, 245, 245, 245, 35, 245, 35, 128, 128, 35, (224,302): 117, 117, 35, 119, 33, 33, 128, 221, 116, 186, 3, 224, (224,314): 224, 3, 3, 46, 46, 46, 111, 146, 133, 80, 22, 124, 124, (224,327): 22, 12, 203, 3, 137, 253, 108, 185, 66, 14, 156, 108, 63, (224,340): 156, 195, 146, 186, 49, 156, 33, 156, 195, 185, 63, 186, (224,352): 186, 3, 186, 46, 221, 116, 72, 116, 63, 50, 49, 116, 3, (224,365): 50, 78, 181, 27, 78, 156, 50, 50, 49, 186, (225,0): 35, 232, 232, 128, 117, 88, 11, 128, 116, 79, 80, 91, 182, (225,13): 234, 182, 181, 234, 49, 49, 72, 72, 186, 195, 49, 195, 66, (225,26): 156, 234, 18, 221, 18, 14, 28, 241, 125, 66, 187, 14, 14, (225,39): 100, 180, 100, 63, 100, 153, 231, 188, 188, 110, 163, 28, (225,51): 102, 113, 113, 102, 194, 38, 103, 74, 246, 93, 28, 219, (225,63): 219, 33, 63, 187, 187, 70, 123, 63, 35, 79, 125, 18, 33, (225,76): 232, 35, 33, 38, 185, 241, 233, 125, 219, 66, 66, 195, 14, (225,89): 220, 156, 221, 195, 156, 186, 195, 185, 33, 33, 119, 35, (225,101): 117, 119, 33, 125, 185, 125, 33, 119, 117, 117, 117, 88, (225,113): 88, 117, 35, 119, 119, 79, 33, 140, 245, 232, 232, 232, (225,125): 33, 79, 185, 232, 33, 232, 35, 117, 245, 140, 245, 140, (225,137): 245, 88, 140, 88, 140, 88, 140, 245, 140, 140, 117, 140, (225,149): 117, 201, 120, 120, 120, 154, 107, 118, 200, 190, 190, (225,160): 136, 136, 190, 161, 96, 169, 169, 132, 132, 169, 169, (225,171): 205, 169, 21, 205, 169, 21, 21, 205, 169, 169, 132, 169, (225,183): 132, 169, 205, 169, 205, 169, 169, 170, 40, 67, 67, 169, (225,195): 169, 205, 57, 57, 205, 179, 169, 40, 10, 148, 76, 201, (225,207): 201, 117, 117, 35, 117, 35, 117, 35, 35, 35, 117, 35, 35, (225,220): 119, 33, 33, 119, 79, 119, 128, 35, 117, 35, 117, 35, 35, (225,233): 35, 35, 117, 35, 117, 35, 35, 117, 35, 117, 117, 35, 117, (225,246): 35, 117, 117, 117, 117, 35, 117, 35, 117, 117, 35, 35, (225,258): 35, 35, 35, 35, 35, 35, 35, 232, 232, 119, 33, 35, 35, (225,271): 117, 35, 117, 117, 117, 117, 139, 245, 35, 35, 35, 35, (225,283): 117, 35, 117, 35, 35, 35, 35, 35, 35, 35, 35, 117, 35, (225,296): 128, 35, 128, 232, 128, 128, 117, 35, 245, 119, 79, 33, (225,308): 79, 116, 186, 46, 11, 3, 182, 234, 146, 3, 3, 116, 116, (225,321): 80, 182, 222, 124, 124, 203, 133, 3, 3, 182, 123, 183, (225,333): 187, 79, 79, 72, 157, 121, 108, 66, 181, 2, 220, 3, 117, (225,346): 46, 253, 181, 220, 216, 253, 195, 156, 156, 186, 33, 221, (225,358): 116, 3, 49, 50, 138, 50, 3, 146, 80, 50, 50, 156, 156, (225,371): 49, 146, 195, 72, (226,0): 117, 128, 116, 195, 18, 221, 79, 186, 46, 220, 49, 138, (226,12): 105, 34, 234, 222, 63, 220, 234, 195, 195, 186, 186, 195, (226,24): 100, 220, 14, 14, 66, 195, 66, 14, 70, 153, 66, 241, 252, (226,37): 216, 104, 220, 123, 63, 153, 192, 237, 60, 60, 62, 20, (226,49): 251, 110, 188, 70, 74, 194, 125, 71, 120, 38, 24, 51, 231, (226,62): 62, 100, 35, 156, 187, 27, 252, 63, 219, 186, 195, 204, (226,74): 185, 79, 33, 117, 140, 35, 204, 233, 204, 204, 241, 100, (226,86): 100, 63, 63, 108, 220, 186, 79, 185, 33, 79, 185, 119, (226,98): 119, 119, 35, 35, 117, 117, 35, 119, 33, 119, 35, 117, (226,110): 140, 88, 117, 201, 117, 117, 35, 119, 119, 33, 185, 33, (226,122): 119, 35, 117, 117, 140, 88, 35, 35, 35, 35, 117, 140, 88, (226,135): 140, 117, 140, 117, 140, 88, 140, 88, 140, 88, 140, 245, (226,147): 140, 140, 140, 201, 120, 120, 113, 107, 254, 118, 190, (226,158): 190, 190, 161, 161, 96, 96, 169, 67, 169, 169, 169, 169, (226,170): 169, 169, 21, 169, 169, 57, 169, 169, 169, 169, 169, 205, (226,182): 169, 169, 169, 169, 169, 169, 169, 132, 132, 132, 167, (226,193): 160, 160, 160, 131, 170, 5, 57, 131, 161, 40, 112, 159, (226,205): 19, 19, 201, 35, 201, 35, 35, 117, 117, 119, 119, 117, (226,217): 117, 35, 119, 33, 55, 33, 35, 35, 35, 35, 35, 117, 201, (226,230): 35, 35, 35, 35, 35, 117, 117, 117, 35, 117, 35, 139, 117, (226,243): 117, 117, 35, 139, 117, 117, 117, 201, 117, 117, 117, 35, (226,255): 117, 35, 232, 35, 35, 35, 35, 35, 232, 35, 35, 232, 35, (226,268): 35, 35, 117, 117, 117, 35, 117, 35, 117, 117, 35, 117, (226,280): 35, 117, 35, 117, 139, 35, 35, 117, 35, 35, 35, 245, 35, (226,293): 245, 35, 245, 128, 35, 35, 128, 232, 117, 117, 128, 35, (226,305): 232, 33, 79, 79, 186, 186, 116, 111, 182, 146, 46, 3, 3, (226,318): 72, 133, 116, 80, 80, 133, 133, 22, 203, 124, 12, 90, 90, (226,331): 216, 121, 214, 123, 99, 51, 104, 2, 104, 121, 64, 108, (226,343): 63, 50, 46, 156, 104, 183, 185, 187, 195, 66, 49, 195, (226,355): 116, 72, 220, 156, 72, 186, 46, 221, 46, 80, 50, 182, (226,367): 146, 80, 220, 156, 72, 186, 3, 3, (227,0): 186, 18, 204, 234, 195, 33, 128, 128, 220, 146, 78, 63, (227,12): 181, 253, 137, 50, 108, 220, 156, 49, 195, 72, 18, 72, (227,24): 180, 2, 63, 156, 66, 156, 14, 14, 219, 24, 55, 66, 63, (227,37): 252, 121, 195, 100, 14, 24, 192, 246, 58, 228, 71, 251, (227,49): 28, 15, 188, 84, 246, 58, 219, 219, 185, 185, 71, 241, 14, (227,62): 219, 33, 125, 79, 33, 241, 2, 63, 66, 125, 33, 35, 88, 35, (227,76): 33, 232, 33, 204, 62, 71, 119, 79, 204, 185, 186, 14, 63, (227,89): 108, 14, 221, 221, 185, 128, 33, 33, 35, 35, 35, 128, 119, (227,102): 35, 117, 117, 117, 117, 117, 88, 140, 117, 117, 119, 35, (227,114): 117, 117, 117, 245, 117, 117, 119, 119, 245, 245, 140, (227,125): 245, 245, 140, 117, 117, 35, 117, 140, 88, 140, 117, 117, (227,137): 88, 140, 88, 140, 88, 140, 140, 88, 140, 140, 117, 117, (227,149): 88, 201, 55, 120, 113, 107, 9, 155, 190, 190, 42, 96, 96, (227,162): 169, 169, 169, 169, 169, 169, 169, 132, 169, 205, 132, (227,173): 169, 132, 169, 169, 205, 169, 205, 21, 205, 21, 205, 169, (227,185): 169, 169, 205, 169, 169, 169, 132, 169, 132, 169, 205, (227,196): 205, 57, 205, 205, 132, 21, 10, 217, 92, 145, 199, 55, (227,208): 35, 35, 35, 117, 35, 117, 119, 128, 119, 119, 185, 33, (227,220): 33, 119, 35, 119, 35, 35, 117, 117, 117, 35, 117, 35, (227,232): 119, 119, 35, 117, 117, 117, 117, 201, 117, 117, 117, 35, (227,244): 117, 117, 117, 117, 35, 117, 117, 117, 139, 35, 117, 117, (227,256): 35, 35, 35, 35, 35, 35, 232, 35, 35, 35, 35, 35, 35, 35, (227,270): 117, 35, 117, 117, 35, 117, 117, 35, 117, 245, 35, 117, (227,282): 35, 35, 35, 35, 117, 35, 35, 245, 35, 35, 35, 35, 35, (227,295): 117, 232, 117, 117, 35, 117, 245, 11, 117, 35, 33, 33, (227,307): 33, 221, 116, 3, 146, 80, 80, 3, 222, 91, 34, 182, 182, (227,320): 124, 105, 105, 80, 3, 3, 203, 12, 12, 124, 91, 91, 183, (227,333): 216, 70, 99, 8, 183, 14, 195, 63, 253, 50, 3, 195, 49, (227,346): 186, 156, 27, 195, 156, 220, 195, 195, 49, 195, 108, 105, (227,358): 181, 49, 80, 156, 156, 50, 108, 108, 182, 156, 224, 186, (227,370): 49, 182, 108, 105, 27, (228,0): 195, 79, 33, 79, 18, 116, 186, 195, 72, 49, 234, 116, 182, (228,13): 111, 46, 108, 49, 195, 195, 195, 49, 195, 186, 72, 14, (228,25): 108, 14, 66, 195, 156, 241, 195, 241, 185, 33, 119, 100, (228,37): 121, 123, 187, 27, 249, 226, 24, 153, 15, 237, 20, 236, (228,49): 102, 28, 153, 103, 100, 194, 62, 120, 71, 185, 185, 125, (228,61): 219, 79, 140, 35, 186, 79, 128, 14, 104, 28, 33, 79, 185, (228,74): 33, 232, 232, 33, 100, 70, 25, 252, 28, 100, 100, 125, (228,86): 185, 156, 156, 195, 186, 33, 128, 186, 33, 79, 119, 35, (228,98): 117, 88, 35, 119, 35, 117, 117, 117, 117, 140, 140, 88, (228,110): 117, 117, 88, 117, 117, 117, 117, 117, 117, 117, 140, (228,121): 140, 140, 88, 117, 117, 117, 35, 140, 245, 117, 245, 140, (228,133): 88, 140, 117, 140, 117, 140, 88, 88, 140, 88, 140, 88, (228,145): 140, 245, 245, 140, 140, 201, 55, 120, 107, 92, 118, 200, (228,157): 190, 42, 161, 96, 169, 67, 169, 67, 132, 169, 169, 169, (228,169): 169, 169, 169, 169, 132, 205, 169, 205, 96, 21, 21, 96, (228,181): 21, 21, 161, 21, 205, 21, 169, 169, 205, 169, 169, 169, (228,193): 169, 21, 205, 205, 57, 205, 21, 169, 67, 112, 148, 113, (228,205): 145, 201, 35, 117, 35, 35, 35, 35, 119, 119, 33, 119, (228,217): 185, 185, 125, 33, 119, 35, 33, 35, 35, 35, 35, 117, 117, (228,230): 117, 117, 119, 35, 117, 117, 117, 117, 117, 117, 117, 35, (228,242): 117, 139, 117, 117, 117, 201, 117, 117, 117, 117, 117, (228,253): 117, 117, 35, 35, 35, 35, 35, 35, 35, 117, 35, 117, 35, (228,266): 35, 35, 117, 35, 117, 117, 35, 117, 117, 35, 117, 117, (228,278): 35, 117, 139, 35, 117, 35, 117, 35, 35, 117, 35, 35, 35, (228,291): 245, 35, 245, 35, 245, 128, 245, 35, 128, 117, 11, 117, (228,303): 128, 35, 128, 33, 128, 128, 46, 49, 182, 138, 50, 3, 182, (228,316): 90, 141, 91, 12, 105, 176, 12, 12, 124, 22, 182, 22, 138, (228,329): 3, 146, 49, 156, 104, 100, 51, 175, 249, 89, 64, 195, (228,341): 156, 108, 125, 63, 253, 186, 33, 66, 119, 119, 18, 72, (228,353): 220, 2, 63, 63, 108, 50, 14, 108, 146, 3, 220, 34, 91, (228,366): 138, 3, 146, 49, 50, 222, 220, 3, 116, (229,0): 2, 220, 14, 63, 63, 108, 100, 50, 220, 49, 49, 50, 221, (229,13): 146, 220, 182, 72, 72, 195, 156, 156, 195, 195, 195, 195, (229,25): 186, 125, 156, 14, 66, 186, 219, 140, 219, 185, 241, 241, (229,37): 33, 187, 175, 14, 2, 100, 62, 233, 207, 192, 25, 194, 194, (229,50): 28, 192, 194, 62, 204, 38, 18, 185, 185, 185, 55, 245, (229,62): 117, 33, 147, 79, 195, 33, 33, 125, 18, 79, 35, 232, 232, (229,75): 232, 33, 185, 66, 24, 93, 93, 24, 241, 241, 156, 195, 185, (229,88): 195, 185, 186, 221, 33, 185, 33, 35, 35, 117, 88, 147, (229,100): 117, 35, 117, 117, 140, 117, 117, 117, 117, 117, 140, 88, (229,112): 140, 117, 117, 201, 35, 35, 117, 245, 117, 117, 35, 117, (229,124): 140, 147, 140, 140, 140, 117, 140, 117, 140, 88, 140, 88, (229,136): 88, 140, 117, 140, 88, 140, 88, 140, 88, 140, 88, 139, (229,148): 117, 88, 139, 55, 113, 107, 101, 200, 200, 42, 161, 161, (229,160): 169, 169, 67, 132, 40, 169, 40, 169, 169, 169, 169, 169, (229,172): 169, 205, 169, 169, 205, 169, 21, 169, 21, 21, 21, 21, (229,184): 161, 161, 21, 205, 169, 132, 132, 132, 170, 170, 170, (229,195): 132, 57, 57, 205, 205, 40, 10, 82, 250, 243, 201, 119, (229,207): 140, 35, 35, 35, 119, 119, 35, 119, 119, 88, 119, 185, (229,219): 79, 119, 117, 117, 119, 35, 35, 35, 35, 35, 35, 35, 117, (229,232): 128, 35, 201, 35, 117, 117, 35, 35, 35, 117, 117, 117, (229,244): 117, 35, 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, (229,256): 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, (229,267): 117, 35, 117, 35, 117, 139, 35, 117, 139, 117, 35, 117, (229,279): 117, 35, 117, 35, 35, 35, 35, 117, 35, 245, 35, 245, 35, (229,292): 35, 35, 128, 35, 232, 128, 35, 128, 35, 117, 33, 33, 117, (229,305): 33, 128, 128, 128, 46, 80, 50, 182, 138, 3, 3, 138, 90, (229,318): 36, 177, 176, 105, 176, 90, 141, 12, 138, 80, 80, 11, (229,330): 224, 33, 116, 66, 33, 18, 185, 241, 121, 37, 100, 35, (229,342): 221, 11, 46, 33, 11, 221, 35, 185, 156, 185, 195, 49, 50, (229,355): 50, 220, 49, 195, 72, 224, 72, 156, 220, 3, 195, 50, 253, (229,368): 181, 50, 182, 253, 183, 176, 50, (230,0): 183, 187, 187, 253, 253, 220, 72, 186, 224, 234, 46, 221, (230,12): 72, 138, 49, 72, 234, 14, 220, 220, 14, 156, 66, 156, 66, (230,25): 186, 195, 100, 100, 66, 195, 156, 219, 125, 241, 14, 14, (230,37): 28, 125, 180, 14, 194, 66, 153, 100, 20, 241, 45, 70, 207, (230,50): 28, 24, 28, 14, 62, 241, 100, 241, 79, 79, 33, 245, 88, (230,63): 117, 79, 33, 88, 35, 186, 33, 33, 79, 128, 33, 18, 100, (230,76): 252, 93, 2, 231, 14, 207, 28, 233, 14, 28, 100, 14, 49, (230,89): 79, 195, 195, 79, 33, 128, 117, 117, 117, 117, 140, 88, (230,101): 117, 117, 140, 88, 117, 117, 117, 35, 117, 88, 140, 117, (230,113): 117, 117, 117, 117, 140, 140, 140, 140, 88, 117, 117, (230,124): 117, 117, 117, 35, 88, 117, 117, 140, 88, 140, 88, 140, (230,136): 117, 88, 140, 88, 140, 88, 140, 88, 140, 245, 245, 245, (230,148): 117, 140, 139, 201, 76, 102, 106, 218, 190, 42, 21, 205, (230,160): 169, 169, 132, 67, 132, 132, 169, 169, 169, 169, 132, (230,171): 169, 169, 169, 96, 21, 96, 21, 169, 21, 169, 169, 96, (230,183): 169, 21, 21, 96, 169, 169, 169, 132, 169, 57, 205, 205, (230,195): 21, 21, 21, 42, 42, 10, 10, 7, 145, 236, 139, 232, 117, (230,208): 35, 119, 119, 33, 119, 35, 232, 35, 88, 117, 35, 119, (230,220): 117, 117, 117, 35, 35, 117, 35, 35, 117, 35, 117, 35, 35, (230,233): 35, 35, 117, 35, 35, 117, 201, 117, 117, 35, 117, 201, (230,245): 117, 117, 35, 117, 35, 117, 117, 117, 139, 117, 117, 35, (230,257): 139, 117, 117, 35, 117, 117, 117, 35, 117, 35, 35, 117, (230,269): 35, 117, 35, 117, 117, 117, 117, 117, 117, 35, 117, 35, (230,281): 35, 117, 139, 117, 35, 35, 117, 117, 245, 35, 35, 245, (230,293): 35, 35, 245, 128, 35, 35, 128, 35, 117, 33, 79, 128, 128, (230,306): 128, 221, 46, 146, 146, 133, 146, 22, 203, 138, 34, 90, (230,318): 36, 141, 36, 137, 27, 141, 141, 12, 138, 138, 222, 182, (230,330): 182, 108, 63, 234, 79, 35, 33, 79, 14, 100, 186, 195, 49, (230,343): 35, 11, 210, 33, 186, 195, 156, 24, 156, 186, 33, 128, (230,355): 116, 72, 3, 186, 186, 63, 181, 105, 78, 220, 49, 50, 105, (230,368): 181, 80, 3, 50, 183, 137, 176, (231,0): 79, 128, 128, 72, 72, 221, 33, 46, 221, 33, 146, 146, 50, (231,13): 72, 234, 49, 108, 63, 63, 63, 14, 156, 66, 156, 14, 100, (231,26): 14, 156, 156, 100, 100, 14, 125, 153, 241, 241, 66, 187, (231,38): 195, 28, 125, 14, 125, 185, 119, 38, 204, 60, 100, 62, (231,50): 231, 38, 219, 204, 241, 204, 18, 79, 79, 18, 220, 24, 234, (231,63): 35, 147, 128, 35, 11, 119, 33, 185, 18, 79, 204, 14, 180, (231,76): 252, 51, 100, 204, 71, 38, 204, 18, 66, 241, 195, 66, 185, (231,89): 128, 66, 66, 33, 79, 119, 35, 140, 140, 88, 140, 117, 35, (231,102): 117, 140, 117, 140, 117, 140, 117, 117, 140, 117, 117, (231,113): 88, 140, 88, 140, 117, 117, 117, 119, 119, 35, 140, 117, (231,125): 140, 88, 140, 117, 140, 117, 117, 140, 88, 140, 117, 140, (231,137): 117, 140, 117, 140, 88, 140, 88, 140, 88, 140, 117, 117, (231,149): 140, 117, 55, 113, 102, 101, 32, 136, 161, 21, 169, 169, (231,161): 169, 169, 132, 169, 169, 169, 96, 169, 169, 169, 169, (231,172): 169, 169, 21, 21, 21, 21, 21, 96, 21, 96, 205, 169, 169, (231,185): 169, 132, 169, 169, 96, 21, 21, 205, 205, 205, 205, 205, (231,197): 169, 96, 96, 39, 39, 243, 145, 140, 55, 117, 33, 232, (231,209): 119, 33, 33, 33, 35, 117, 117, 119, 35, 35, 119, 33, 119, (231,222): 119, 117, 117, 117, 117, 117, 35, 117, 201, 117, 117, (231,233): 117, 117, 35, 201, 35, 35, 117, 117, 117, 117, 117, 117, (231,245): 117, 35, 117, 117, 117, 139, 35, 117, 117, 35, 117, 117, (231,257): 117, 117, 35, 117, 117, 35, 117, 35, 35, 35, 117, 35, (231,269): 117, 35, 119, 117, 117, 117, 35, 117, 139, 117, 117, 35, (231,281): 117, 35, 117, 35, 117, 35, 35, 139, 245, 35, 245, 35, 35, (231,294): 35, 35, 35, 117, 117, 35, 117, 11, 33, 79, 128, 128, 128, (231,307): 46, 195, 80, 133, 116, 22, 222, 138, 124, 124, 91, 137, (231,319): 90, 91, 105, 105, 34, 105, 108, 78, 12, 37, 177, 183, (231,331): 180, 63, 14, 63, 14, 18, 186, 185, 33, 117, 35, 128, 11, (231,344): 128, 128, 33, 88, 14, 66, 63, 180, 79, 11, 128, 221, 46, (231,357): 128, 186, 50, 50, 253, 223, 223, 91, 138, 108, 105, 108, (231,369): 50, 220, 80, 182, 181, 91, (232,0): 221, 195, 33, 33, 88, 186, 146, 117, 46, 72, 220, 108, 116, (232,13): 220, 50, 108, 108, 108, 100, 220, 156, 66, 156, 14, 14, 2, (232,26): 187, 100, 28, 2, 14, 55, 180, 153, 14, 28, 180, 51, 51, (232,39): 175, 241, 51, 66, 55, 62, 38, 62, 93, 242, 207, 14, 38, (232,52): 185, 119, 232, 185, 35, 35, 79, 14, 180, 183, 2, 79, 11, (232,65): 35, 128, 147, 185, 220, 79, 79, 186, 100, 24, 27, 24, 63, (232,78): 185, 33, 33, 236, 55, 185, 204, 185, 186, 66, 156, 241, (232,90): 195, 185, 125, 185, 119, 245, 88, 117, 117, 117, 117, 140, (232,102): 88, 117, 117, 140, 117, 117, 140, 117, 117, 140, 140, 88, (232,114): 140, 88, 140, 88, 117, 117, 117, 117, 117, 117, 117, 140, (232,126): 88, 140, 88, 140, 117, 140, 88, 117, 140, 88, 140, 88, (232,138): 140, 88, 140, 88, 140, 88, 140, 245, 140, 245, 140, 117, (232,150): 140, 139, 55, 213, 218, 32, 190, 96, 57, 21, 169, 132, (232,162): 160, 169, 169, 96, 169, 132, 169, 169, 96, 161, 161, 161, (232,174): 21, 96, 132, 169, 169, 96, 169, 169, 169, 169, 169, 169, (232,186): 132, 132, 132, 132, 96, 21, 205, 21, 202, 57, 96, 96, 77, (232,199): 77, 41, 173, 139, 139, 55, 139, 33, 33, 119, 33, 119, 35, (232,212): 117, 35, 35, 35, 88, 119, 119, 128, 55, 117, 117, 119, (232,224): 117, 117, 201, 117, 117, 117, 117, 117, 35, 117, 35, 117, (232,236): 117, 117, 117, 35, 117, 35, 117, 35, 117, 117, 117, 35, (232,248): 117, 117, 117, 117, 117, 35, 139, 117, 117, 117, 35, 139, (232,260): 117, 117, 139, 117, 117, 117, 117, 117, 117, 35, 117, (232,271): 117, 117, 35, 117, 117, 117, 117, 35, 117, 35, 35, 35, (232,283): 35, 35, 117, 35, 117, 245, 117, 245, 35, 245, 245, 245, (232,295): 11, 245, 117, 35, 128, 128, 117, 117, 128, 128, 128, 224, (232,307): 186, 146, 49, 146, 133, 138, 138, 91, 34, 176, 222, 34, (232,319): 183, 181, 50, 3, 234, 138, 138, 91, 177, 105, 50, 63, (232,331): 220, 195, 185, 66, 121, 187, 33, 33, 35, 11, 221, 88, 35, (232,344): 128, 128, 221, 185, 128, 140, 33, 18, 49, 49, 3, 220, 49, (232,357): 3, 50, 108, 253, 223, 64, 177, 97, 183, 91, 91, 181, 50, (232,370): 78, 156, 91, 177, 91, (233,0): 156, 186, 46, 156, 72, 221, 11, 46, 128, 146, 63, 105, 50, (233,13): 234, 220, 50, 195, 195, 195, 66, 49, 14, 156, 14, 156, (233,25): 100, 14, 66, 66, 14, 100, 14, 93, 246, 187, 185, 194, 226, (233,38): 100, 157, 63, 100, 241, 24, 192, 242, 241, 38, 24, 241, (233,50): 55, 232, 232, 245, 232, 79, 79, 33, 79, 66, 234, 14, 14, (233,63): 234, 117, 117, 128, 117, 185, 49, 185, 185, 125, 66, 156, (233,75): 28, 241, 66, 33, 232, 139, 232, 79, 140, 66, 241, 187, (233,87): 253, 100, 14, 156, 66, 66, 66, 18, 55, 35, 117, 140, 117, (233,100): 88, 140, 140, 88, 140, 88, 140, 88, 140, 88, 140, 117, (233,112): 88, 140, 88, 140, 88, 140, 117, 117, 140, 117, 117, 140, (233,124): 117, 117, 117, 117, 140, 117, 88, 140, 117, 140, 88, 117, (233,136): 88, 140, 88, 140, 88, 88, 140, 88, 140, 245, 140, 88, (233,148): 245, 140, 117, 140, 201, 243, 31, 209, 42, 96, 132, 205, (233,160): 169, 169, 132, 169, 169, 169, 169, 132, 160, 40, 132, (233,171): 132, 169, 169, 132, 40, 169, 169, 96, 205, 96, 169, 169, (233,183): 96, 169, 132, 132, 67, 169, 96, 21, 161, 21, 57, 170, 96, (233,196): 42, 10, 148, 209, 145, 145, 199, 139, 245, 147, 232, 117, (233,208): 232, 35, 35, 35, 35, 35, 35, 119, 119, 33, 119, 35, 119, (233,221): 35, 117, 35, 35, 117, 117, 117, 35, 117, 35, 117, 35, (233,233): 117, 117, 117, 117, 35, 117, 117, 35, 117, 117, 139, 35, (233,245): 117, 35, 117, 117, 201, 117, 35, 117, 117, 117, 117, 35, (233,257): 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, (233,269): 139, 35, 117, 117, 139, 35, 117, 35, 117, 139, 35, 117, (233,281): 117, 117, 117, 117, 139, 245, 117, 117, 139, 245, 35, 35, (233,293): 35, 35, 245, 35, 117, 245, 128, 35, 117, 117, 33, 116, (233,305): 221, 46, 72, 182, 138, 50, 80, 222, 78, 12, 176, 12, 78, (233,318): 78, 222, 146, 49, 146, 146, 108, 105, 183, 64, 64, 105, (233,330): 137, 175, 104, 220, 72, 51, 27, 252, 100, 156, 88, 33, (233,342): 183, 63, 46, 128, 128, 128, 128, 33, 66, 14, 156, 80, (233,354): 186, 156, 50, 220, 108, 220, 177, 91, 180, 220, 91, 121, (233,366): 253, 180, 138, 50, 50, 49, 50, 78, 50, (234,0): 253, 108, 49, 49, 46, 79, 224, 195, 49, 72, 72, 50, 104, (234,13): 181, 49, 221, 116, 18, 195, 156, 100, 100, 100, 14, 66, (234,25): 66, 156, 241, 66, 125, 156, 180, 142, 142, 157, 180, 185, (234,37): 93, 125, 142, 187, 28, 246, 123, 62, 207, 219, 62, 231, (234,49): 38, 33, 232, 232, 139, 33, 185, 241, 66, 234, 180, 2, 14, (234,62): 234, 100, 195, 33, 79, 221, 33, 79, 33, 79, 79, 185, 185, (234,75): 18, 185, 18, 55, 232, 204, 38, 231, 187, 246, 180, 100, (234,87): 63, 100, 14, 100, 28, 28, 28, 241, 18, 35, 117, 117, 117, (234,100): 117, 140, 88, 140, 117, 140, 88, 117, 140, 88, 117, 140, (234,112): 88, 117, 140, 88, 88, 117, 140, 117, 117, 117, 140, 117, (234,124): 117, 117, 117, 117, 117, 140, 117, 117, 140, 117, 117, (234,135): 140, 88, 117, 140, 88, 140, 117, 140, 88, 140, 140, 245, (234,147): 245, 245, 88, 117, 140, 199, 120, 213, 218, 166, 96, 132, (234,159): 132, 205, 96, 169, 169, 169, 169, 132, 67, 169, 169, 96, (234,171): 96, 96, 96, 96, 96, 96, 169, 96, 96, 169, 96, 169, 169, (234,184): 40, 169, 67, 169, 96, 96, 161, 161, 169, 96, 161, 77, 68, (234,197): 148, 73, 6, 139, 139, 232, 71, 232, 117, 185, 33, 35, 35, (234,210): 35, 119, 119, 33, 119, 128, 119, 33, 117, 117, 35, 35, (234,222): 117, 119, 117, 117, 35, 117, 117, 35, 117, 117, 117, 35, (234,234): 117, 35, 117, 117, 35, 139, 117, 117, 117, 117, 117, 117, (234,246): 139, 117, 117, 117, 117, 117, 35, 117, 35, 117, 139, 117, (234,258): 117, 35, 117, 35, 117, 35, 139, 117, 117, 117, 117, 117, (234,270): 117, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, 35, (234,282): 117, 35, 117, 117, 35, 35, 35, 35, 232, 35, 35, 35, 35, (234,295): 35, 245, 35, 128, 232, 117, 11, 128, 79, 72, 186, 116, (234,307): 72, 222, 105, 78, 182, 50, 138, 78, 222, 181, 105, 105, (234,319): 222, 220, 108, 49, 116, 146, 78, 91, 175, 177, 183, 175, (234,331): 27, 253, 100, 186, 14, 195, 51, 27, 108, 50, 220, 156, (234,343): 253, 186, 116, 221, 35, 117, 195, 220, 14, 146, 195, 224, (234,355): 116, 50, 80, 156, 49, 146, 181, 186, 146, 72, 195, 183, (234,367): 50, 156, 50, 50, 78, 108, 234, 50, (235,0): 186, 156, 33, 49, 72, 116, 221, 128, 72, 72, 49, 234, 181, (235,13): 195, 116, 72, 66, 66, 14, 220, 100, 108, 220, 14, 156, (235,25): 156, 14, 14, 66, 125, 241, 28, 62, 14, 27, 152, 66, 153, (235,38): 125, 62, 70, 180, 153, 24, 79, 62, 185, 38, 14, 185, 139, (235,51): 140, 139, 245, 245, 232, 33, 33, 18, 2, 8, 123, 27, 8, 2, (235,65): 195, 125, 195, 33, 88, 117, 117, 33, 33, 33, 79, 33, 33, (235,78): 232, 232, 252, 25, 93, 70, 63, 24, 66, 156, 66, 14, 100, (235,91): 63, 24, 180, 62, 125, 119, 117, 245, 140, 117, 88, 140, (235,103): 117, 88, 245, 117, 140, 245, 117, 140, 117, 140, 88, 140, (235,115): 117, 140, 140, 117, 140, 117, 117, 35, 117, 201, 117, (235,126): 117, 117, 140, 117, 88, 140, 117, 88, 140, 117, 88, 140, (235,138): 117, 140, 117, 88, 117, 140, 117, 140, 245, 140, 245, (235,149): 245, 245, 117, 139, 201, 173, 218, 10, 10, 96, 169, 169, (235,161): 169, 21, 169, 132, 169, 132, 169, 169, 169, 169, 169, (235,172): 132, 67, 169, 169, 96, 169, 96, 169, 96, 169, 169, 96, (235,184): 132, 96, 169, 96, 169, 161, 161, 166, 132, 42, 190, 10, (235,196): 127, 73, 243, 139, 201, 139, 185, 241, 79, 33, 241, 195, (235,208): 119, 119, 119, 33, 33, 33, 55, 33, 35, 55, 35, 117, 117, (235,221): 35, 117, 119, 117, 35, 117, 117, 35, 117, 117, 139, 35, (235,233): 117, 117, 117, 35, 117, 117, 117, 117, 201, 117, 117, (235,244): 201, 117, 117, 117, 35, 117, 35, 117, 117, 139, 117, 117, (235,256): 117, 117, 35, 117, 117, 139, 35, 117, 117, 117, 117, 201, (235,268): 117, 117, 139, 35, 117, 117, 117, 139, 35, 117, 35, 117, (235,280): 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 245, 35, 35, (235,294): 35, 35, 128, 232, 128, 128, 128, 232, 33, 186, 79, 79, (235,306): 221, 3, 50, 105, 105, 138, 182, 182, 182, 49, 182, 138, (235,318): 105, 181, 108, 108, 146, 221, 116, 72, 156, 63, 253, 50, (235,330): 187, 63, 108, 181, 14, 14, 108, 195, 175, 123, 183, 78, (235,342): 63, 105, 63, 50, 49, 80, 2, 123, 64, 63, 156, 80, 186, (235,355): 146, 138, 220, 156, 105, 121, 64, 175, 181, 195, 72, 49, (235,367): 72, 108, 220, 220, 105, 63, 108, 181, (236,0): 108, 105, 46, 63, 63, 3, 195, 72, 72, 195, 234, 234, 63, (236,13): 72, 72, 234, 234, 156, 14, 14, 156, 66, 241, 66, 28, 28, (236,26): 14, 219, 185, 185, 66, 14, 185, 241, 194, 24, 100, 180, (236,38): 185, 241, 62, 194, 14, 241, 219, 185, 79, 185, 236, 139, (236,50): 140, 140, 117, 117, 117, 139, 35, 232, 232, 18, 2, 252, (236,62): 27, 8, 2, 195, 185, 195, 33, 117, 35, 35, 35, 232, 33, 35, (236,76): 35, 117, 33, 79, 100, 242, 51, 28, 185, 180, 66, 38, 219, (236,89): 195, 66, 241, 100, 28, 62, 204, 55, 35, 117, 117, 245, (236,101): 140, 88, 140, 117, 140, 245, 88, 140, 245, 245, 117, 117, (236,113): 117, 117, 140, 117, 88, 117, 117, 35, 35, 35, 35, 117, (236,125): 117, 140, 117, 117, 140, 117, 117, 117, 140, 117, 117, (236,136): 140, 117, 140, 88, 117, 140, 88, 140, 117, 140, 140, 245, (236,148): 245, 245, 245, 245, 139, 139, 6, 31, 68, 67, 96, 21, 132, (236,161): 132, 169, 169, 169, 169, 169, 169, 169, 169, 169, 67, (236,172): 169, 40, 169, 67, 169, 96, 169, 96, 169, 96, 96, 96, 96, (236,185): 161, 161, 169, 96, 161, 161, 96, 166, 68, 112, 247, 250, (236,197): 145, 201, 119, 139, 117, 33, 204, 119, 119, 66, 219, 33, (236,209): 33, 33, 55, 33, 119, 33, 119, 117, 79, 33, 35, 35, 117, (236,222): 117, 119, 117, 117, 35, 139, 117, 117, 117, 117, 117, 35, (236,234): 139, 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, (236,245): 117, 35, 117, 117, 35, 139, 117, 117, 117, 117, 35, 117, (236,257): 35, 139, 117, 117, 117, 117, 117, 35, 117, 35, 117, 117, (236,269): 117, 117, 117, 117, 35, 117, 117, 117, 117, 139, 117, (236,280): 117, 139, 245, 117, 35, 35, 35, 35, 35, 35, 35, 35, 245, (236,293): 35, 35, 35, 35, 232, 128, 33, 33, 128, 33, 186, 128, 221, (236,306): 221, 116, 156, 105, 34, 105, 80, 182, 50, 78, 138, 220, (236,318): 220, 108, 108, 156, 220, 108, 220, 186, 186, 108, 187, (236,329): 108, 180, 195, 185, 63, 220, 156, 195, 2, 220, 183, 216, (236,341): 49, 50, 78, 3, 91, 177, 175, 50, 156, 63, 100, 80, 146, (236,354): 146, 50, 176, 108, 50, 27, 91, 50, 50, 108, 49, 156, 187, (236,367): 27, 27, 108, 180, 253, 104, 123, 121, (237,0): 220, 104, 224, 186, 195, 72, 50, 49, 49, 72, 72, 234, 63, (237,13): 220, 234, 234, 66, 14, 234, 66, 195, 125, 195, 66, 66, (237,25): 156, 66, 185, 79, 125, 125, 185, 185, 185, 187, 28, 185, (237,37): 28, 71, 125, 241, 14, 55, 125, 93, 51, 38, 0, 119, 117, (237,50): 245, 139, 232, 139, 35, 232, 232, 33, 128, 35, 128, 33, (237,62): 18, 49, 14, 66, 33, 79, 33, 88, 232, 88, 117, 117, 232, (237,75): 117, 119, 79, 100, 24, 18, 241, 28, 28, 180, 204, 18, 18, (237,88): 195, 125, 185, 18, 38, 241, 62, 233, 204, 33, 35, 35, 35, (237,101): 245, 88, 140, 245, 245, 140, 245, 117, 140, 245, 140, 35, (237,113): 117, 117, 117, 117, 117, 117, 117, 119, 35, 119, 35, 117, (237,125): 117, 88, 140, 117, 117, 140, 117, 140, 117, 117, 140, (237,136): 117, 88, 117, 140, 117, 140, 117, 117, 140, 139, 117, (237,147): 245, 245, 245, 117, 245, 35, 139, 119, 254, 159, 166, 67, (237,159): 132, 169, 132, 205, 132, 169, 205, 169, 169, 96, 96, 96, (237,171): 169, 96, 96, 166, 96, 96, 169, 169, 169, 96, 169, 96, (237,183): 169, 166, 42, 161, 96, 169, 161, 96, 96, 67, 112, 148, (237,195): 218, 145, 201, 201, 35, 117, 117, 117, 33, 117, 147, 185, (237,207): 119, 119, 119, 33, 119, 119, 35, 35, 117, 35, 185, 125, (237,219): 55, 35, 117, 117, 35, 117, 117, 117, 117, 117, 35, 117, (237,231): 201, 117, 117, 117, 117, 139, 35, 117, 117, 35, 117, 35, (237,243): 117, 35, 117, 117, 35, 117, 117, 117, 117, 117, 35, 117, (237,255): 35, 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, 117, (237,267): 35, 117, 117, 201, 117, 117, 139, 117, 117, 35, 117, 117, (237,279): 117, 140, 88, 117, 117, 117, 117, 117, 117, 232, 35, 35, (237,291): 245, 35, 35, 35, 128, 35, 117, 232, 33, 33, 33, 33, 79, (237,304): 79, 221, 116, 146, 156, 50, 63, 78, 138, 78, 181, 91, (237,316): 181, 108, 234, 108, 253, 63, 63, 253, 2, 66, 195, 63, 2, (237,329): 14, 2, 195, 33, 220, 66, 33, 234, 72, 108, 91, 91, 156, (237,342): 137, 181, 105, 64, 177, 123, 181, 220, 72, 128, 3, 186, (237,354): 146, 50, 105, 105, 50, 105, 220, 181, 108, 27, 181, 186, (237,366): 121, 89, 214, 121, 121, 64, 27, 175, 253, (238,0): 88, 222, 156, 80, 50, 91, 2, 63, 72, 234, 108, 108, 195, (238,13): 66, 220, 63, 14, 14, 66, 195, 204, 18, 125, 195, 119, 185, (238,26): 125, 125, 125, 125, 185, 55, 125, 55, 25, 93, 55, 219, 28, (238,39): 185, 125, 62, 66, 62, 187, 175, 241, 79, 140, 199, 140, (238,51): 140, 140, 245, 140, 245, 147, 140, 35, 35, 88, 117, 35, (238,63): 117, 186, 156, 79, 128, 119, 88, 35, 210, 117, 245, 232, (238,75): 245, 79, 219, 187, 246, 231, 204, 66, 241, 180, 55, 79, (238,87): 66, 204, 18, 185, 125, 38, 62, 62, 241, 204, 185, 55, 232, (238,100): 119, 35, 35, 119, 35, 117, 35, 139, 117, 35, 117, 35, 35, (238,113): 119, 35, 117, 201, 117, 117, 201, 35, 35, 117, 35, 117, (238,125): 117, 140, 88, 117, 140, 117, 117, 117, 117, 140, 117, (238,136): 117, 140, 117, 88, 117, 140, 117, 140, 139, 140, 245, (238,147): 139, 245, 11, 245, 245, 35, 139, 201, 145, 154, 200, 77, (238,159): 67, 205, 132, 132, 169, 205, 96, 169, 169, 170, 40, 40, (238,171): 132, 67, 132, 67, 132, 169, 96, 67, 169, 96, 96, 166, (238,183): 161, 161, 202, 42, 169, 169, 166, 21, 67, 68, 101, 107, (238,195): 145, 201, 55, 119, 88, 35, 128, 88, 35, 35, 140, 119, (238,207): 119, 119, 119, 35, 35, 35, 117, 35, 117, 35, 185, 185, (238,219): 119, 35, 35, 117, 35, 117, 35, 117, 117, 35, 117, 117, (238,231): 117, 117, 35, 117, 117, 117, 117, 117, 35, 117, 117, 117, (238,243): 117, 117, 35, 139, 117, 117, 201, 117, 117, 201, 117, (238,254): 117, 139, 117, 117, 117, 35, 139, 117, 117, 117, 139, (238,265): 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, 35, 139, (238,277): 117, 117, 35, 117, 117, 35, 117, 35, 35, 35, 35, 232, (238,289): 232, 35, 35, 35, 35, 128, 232, 128, 35, 128, 79, 79, 79, (238,302): 33, 33, 79, 116, 18, 234, 50, 50, 108, 78, 104, 176, 181, (238,315): 253, 63, 2, 63, 181, 253, 2, 63, 50, 63, 63, 14, 100, (238,328): 195, 33, 108, 63, 220, 63, 195, 221, 186, 221, 72, 11, (238,340): 146, 146, 138, 105, 3, 80, 78, 78, 49, 116, 72, 146, 108, (238,353): 222, 124, 108, 138, 176, 105, 253, 63, 195, 220, 2, 253, (238,365): 180, 50, 121, 97, 178, 216, 37, 178, 37, 178, (239,0): 80, 108, 63, 50, 220, 50, 128, 50, 105, 63, 234, 108, 195, (239,13): 63, 108, 14, 108, 14, 66, 195, 18, 186, 33, 33, 33, 33, (239,26): 33, 33, 79, 185, 125, 195, 119, 125, 241, 28, 66, 139, 28, (239,39): 125, 125, 55, 119, 219, 24, 37, 100, 119, 140, 117, 139, (239,51): 35, 139, 139, 119, 33, 55, 147, 88, 128, 232, 128, 33, 88, (239,64): 117, 156, 79, 35, 128, 117, 33, 117, 117, 88, 245, 147, (239,76): 55, 79, 28, 180, 100, 28, 38, 33, 18, 241, 195, 18, 185, (239,89): 18, 204, 241, 14, 28, 14, 204, 204, 79, 33, 232, 33, 79, (239,102): 33, 79, 232, 232, 232, 128, 232, 232, 232, 232, 119, 35, (239,114): 35, 35, 117, 117, 35, 35, 117, 117, 35, 201, 117, 117, (239,126): 117, 140, 117, 117, 117, 117, 140, 117, 117, 117, 88, (239,137): 117, 140, 117, 140, 117, 117, 117, 245, 139, 245, 245, (239,148): 245, 245, 245, 245, 245, 139, 139, 19, 19, 173, 218, 67, (239,160): 166, 169, 132, 132, 169, 21, 132, 132, 169, 96, 96, 166, (239,172): 21, 166, 166, 166, 67, 169, 169, 169, 169, 166, 21, 161, (239,184): 161, 42, 166, 169, 67, 166, 161, 68, 118, 81, 199, 201, (239,196): 201, 140, 117, 117, 35, 128, 210, 128, 33, 119, 33, 33, (239,208): 33, 128, 128, 35, 35, 35, 35, 119, 88, 33, 33, 117, 117, (239,221): 119, 35, 201, 117, 117, 117, 139, 117, 117, 117, 35, 117, (239,233): 117, 117, 201, 117, 117, 117, 139, 117, 35, 117, 201, (239,244): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (239,255): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (239,266): 35, 117, 117, 35, 117, 117, 117, 201, 117, 117, 117, 117, (239,278): 35, 117, 35, 119, 35, 119, 232, 232, 232, 232, 128, 232, (239,290): 232, 35, 35, 232, 232, 128, 128, 128, 33, 186, 72, 186, (239,302): 79, 224, 33, 128, 18, 108, 105, 105, 105, 91, 27, 27, (239,314): 181, 181, 63, 91, 63, 14, 108, 183, 187, 63, 104, 64, (239,326): 252, 220, 99, 108, 100, 156, 79, 195, 195, 156, 195, 72, (239,338): 3, 63, 181, 46, 34, 224, 80, 3, 49, 182, 186, 221, 146, (239,351): 220, 124, 183, 223, 50, 186, 181, 91, 91, 78, 220, 11, (239,363): 156, 63, 116, 18, 234, 175, 37, 27, 27, 175, 183, 216, (240,0): 176, 138, 72, 49, 181, 63, 50, 50, 108, 195, 195, 14, 63, (240,13): 100, 220, 63, 63, 100, 195, 18, 195, 185, 117, 35, 128, (240,25): 33, 119, 195, 33, 79, 195, 125, 195, 241, 241, 125, 185, (240,37): 185, 125, 185, 35, 35, 35, 33, 185, 185, 119, 88, 117, (240,49): 139, 35, 35, 117, 88, 245, 117, 117, 232, 35, 35, 245, (240,61): 245, 128, 33, 79, 72, 195, 221, 35, 117, 35, 35, 128, 35, (240,74): 33, 79, 33, 204, 14, 100, 55, 79, 18, 18, 185, 33, 185, (240,87): 185, 18, 18, 66, 14, 28, 100, 62, 241, 79, 79, 33, 232, (240,100): 33, 232, 33, 33, 35, 35, 128, 33, 33, 128, 232, 128, 232, (240,113): 35, 119, 117, 35, 117, 117, 117, 117, 117, 117, 88, 117, (240,125): 117, 140, 117, 117, 140, 117, 117, 117, 117, 140, 117, (240,136): 139, 88, 117, 117, 117, 117, 140, 117, 140, 117, 117, (240,147): 117, 117, 35, 35, 117, 35, 245, 35, 139, 139, 201, 120, (240,159): 254, 77, 96, 40, 132, 96, 161, 169, 132, 40, 169, 169, (240,171): 169, 67, 169, 67, 169, 169, 166, 166, 169, 96, 161, 161, (240,183): 169, 166, 161, 166, 96, 67, 96, 190, 106, 139, 139, 117, (240,195): 201, 139, 140, 117, 35, 117, 35, 35, 128, 128, 128, 128, (240,207): 33, 33, 33, 128, 117, 11, 117, 35, 35, 117, 185, 125, 33, (240,220): 119, 33, 185, 33, 117, 35, 35, 117, 117, 117, 35, 119, (240,232): 117, 117, 117, 117, 117, 117, 117, 117, 119, 117, 117, (240,243): 117, 35, 119, 35, 35, 35, 35, 35, 119, 35, 35, 117, 117, (240,256): 35, 35, 117, 35, 117, 117, 35, 35, 117, 117, 201, 117, (240,268): 35, 35, 35, 201, 117, 117, 35, 201, 117, 117, 35, 35, 35, (240,281): 35, 33, 33, 33, 33, 232, 128, 55, 33, 232, 232, 128, 35, (240,294): 128, 35, 88, 221, 79, 46, 72, 146, 46, 224, 46, 221, 224, (240,307): 66, 63, 253, 183, 137, 27, 105, 91, 180, 105, 64, 253, (240,319): 63, 14, 51, 14, 51, 123, 187, 8, 51, 253, 252, 63, 33, (240,332): 128, 187, 180, 105, 49, 186, 183, 156, 78, 156, 181, 80, (240,344): 180, 12, 63, 80, 181, 138, 91, 105, 176, 108, 181, 46, (240,356): 49, 50, 156, 108, 181, 183, 180, 252, 27, 186, 125, 33, (240,368): 195, 175, 216, 249, 249, 70, 241, (241,0): 116, 50, 181, 34, 105, 78, 108, 180, 108, 156, 49, 14, 100, (241,13): 14, 156, 14, 14, 100, 66, 18, 186, 128, 128, 72, 79, 70, (241,26): 49, 117, 125, 49, 33, 14, 24, 63, 93, 66, 100, 119, 66, (241,39): 185, 35, 35, 117, 117, 117, 119, 35, 35, 117, 117, 117, (241,51): 232, 232, 55, 33, 232, 232, 128, 33, 128, 245, 245, 232, (241,63): 33, 185, 195, 66, 18, 33, 33, 79, 79, 185, 232, 79, 185, (241,76): 185, 66, 180, 187, 18, 185, 185, 185, 33, 119, 232, 79, (241,88): 185, 18, 38, 241, 14, 14, 241, 195, 79, 33, 232, 128, 117, (241,101): 35, 35, 35, 11, 117, 35, 35, 35, 232, 128, 35, 119, 35, (241,114): 35, 35, 117, 117, 117, 117, 117, 117, 117, 117, 140, 117, (241,126): 117, 117, 117, 117, 117, 140, 117, 140, 117, 117, 117, (241,137): 117, 117, 140, 117, 140, 117, 117, 117, 140, 245, 139, (241,148): 117, 245, 117, 117, 139, 35, 117, 117, 88, 88, 35, 236, (241,160): 92, 106, 77, 10, 10, 96, 96, 169, 21, 96, 169, 169, 169, (241,173): 68, 169, 166, 67, 169, 169, 40, 169, 21, 166, 96, 166, (241,185): 96, 67, 67, 77, 118, 41, 145, 201, 117, 117, 35, 117, (241,197): 119, 35, 119, 119, 232, 35, 33, 221, 221, 221, 221, 224, (241,209): 128, 11, 117, 11, 117, 117, 128, 117, 33, 185, 119, 35, (241,221): 119, 55, 55, 88, 117, 35, 117, 117, 117, 117, 117, 117, (241,233): 117, 117, 117, 117, 117, 201, 117, 117, 117, 35, 35, 117, (241,245): 117, 117, 117, 35, 117, 35, 117, 35, 35, 119, 35, 117, (241,257): 35, 117, 35, 35, 35, 117, 117, 117, 117, 117, 35, 117, (241,269): 117, 117, 117, 201, 117, 117, 117, 117, 119, 35, 245, 33, (241,281): 35, 35, 33, 128, 245, 128, 79, 33, 35, 35, 35, 128, 117, (241,294): 128, 128, 128, 221, 46, 46, 146, 80, 3, 116, 128, 72, (241,306): 220, 234, 49, 50, 105, 183, 176, 63, 181, 181, 181, 91, (241,318): 253, 183, 180, 24, 195, 14, 2, 241, 51, 180, 156, 100, 8, (241,331): 216, 183, 27, 37, 37, 180, 50, 37, 176, 50, 182, 108, (241,343): 137, 12, 183, 78, 80, 183, 91, 138, 105, 46, 105, 141, (241,355): 97, 105, 108, 49, 104, 123, 8, 104, 181, 51, 195, 195, (241,367): 33, 185, 125, 180, 204, 104, 28, 63, (242,0): 89, 90, 63, 49, 234, 138, 50, 72, 220, 14, 14, 156, 156, (242,13): 66, 66, 219, 72, 156, 156, 195, 18, 232, 35, 79, 2, 252, (242,26): 14, 186, 117, 66, 156, 33, 28, 14, 252, 185, 14, 88, 185, (242,39): 140, 245, 117, 117, 140, 140, 210, 117, 119, 140, 117, (242,50): 117, 35, 33, 185, 185, 79, 232, 79, 79, 79, 232, 11, 35, (242,63): 33, 72, 18, 195, 195, 18, 33, 33, 185, 18, 33, 33, 18, 79, (242,77): 185, 66, 28, 66, 79, 35, 35, 232, 35, 35, 55, 79, 185, 18, (242,91): 204, 66, 204, 18, 18, 33, 33, 128, 35, 128, 33, 128, 33, (242,104): 245, 117, 128, 128, 128, 128, 35, 128, 35, 35, 35, 117, (242,116): 117, 35, 117, 117, 140, 117, 140, 117, 117, 117, 140, (242,127): 117, 140, 117, 117, 117, 117, 117, 117, 140, 117, 117, (242,138): 140, 117, 117, 117, 117, 140, 117, 117, 117, 117, 139, (242,149): 117, 139, 117, 117, 117, 35, 35, 117, 140, 88, 139, 19, (242,161): 81, 41, 106, 73, 10, 96, 10, 166, 161, 96, 21, 67, 169, (242,174): 67, 169, 169, 169, 132, 96, 166, 169, 169, 67, 164, 67, (242,186): 112, 127, 250, 6, 19, 19, 201, 35, 117, 117, 35, 119, 35, (242,199): 117, 35, 35, 128, 128, 79, 186, 116, 221, 128, 128, 128, (242,211): 11, 117, 11, 117, 128, 117, 119, 119, 117, 117, 119, 119, (242,223): 117, 117, 117, 117, 35, 35, 117, 117, 117, 117, 117, 117, (242,235): 117, 117, 117, 117, 117, 117, 201, 119, 35, 117, 117, (242,246): 139, 117, 201, 117, 119, 35, 35, 35, 35, 117, 35, 35, 35, (242,259): 117, 35, 117, 35, 117, 117, 35, 117, 117, 117, 117, 117, (242,271): 117, 35, 117, 88, 117, 119, 119, 232, 117, 33, 128, 79, (242,283): 195, 116, 33, 35, 33, 128, 35, 35, 128, 33, 128, 128, (242,295): 224, 186, 116, 116, 49, 50, 182, 146, 3, 146, 146, 49, (242,307): 156, 108, 108, 108, 220, 2, 108, 108, 108, 181, 2, 108, (242,319): 104, 99, 175, 180, 66, 241, 128, 79, 79, 66, 195, 49, (242,331): 180, 252, 14, 175, 121, 90, 108, 186, 108, 108, 186, 220, (242,343): 195, 50, 137, 177, 222, 222, 80, 3, 176, 63, 91, 63, 141, (242,356): 91, 253, 181, 223, 37, 37, 123, 2, 252, 253, 187, 100, (242,368): 195, 185, 204, 204, 100, 28, 241, (243,0): 183, 138, 156, 50, 108, 253, 104, 63, 220, 100, 220, 241, (243,12): 195, 66, 125, 186, 125, 18, 79, 79, 185, 72, 66, 156, 100, (243,25): 156, 66, 180, 156, 156, 66, 79, 33, 79, 125, 119, 119, 88, (243,38): 140, 147, 147, 140, 117, 117, 88, 140, 117, 117, 117, 140, (243,50): 117, 35, 119, 33, 33, 33, 35, 33, 79, 79, 128, 245, 128, (243,63): 33, 79, 33, 79, 79, 33, 117, 232, 79, 66, 33, 79, 125, (243,76): 185, 219, 207, 8, 187, 204, 35, 245, 117, 245, 245, 232, (243,88): 33, 33, 79, 79, 185, 185, 185, 33, 33, 33, 128, 33, 33, (243,101): 79, 116, 185, 33, 128, 33, 128, 33, 128, 33, 128, 35, 35, (243,114): 117, 35, 117, 35, 117, 201, 117, 117, 117, 117, 140, 117, (243,126): 117, 117, 117, 117, 117, 140, 117, 140, 117, 117, 140, (243,137): 117, 117, 117, 117, 140, 117, 117, 139, 35, 140, 117, (243,148): 117, 117, 117, 117, 35, 117, 139, 35, 35, 117, 117, 117, (243,160): 199, 199, 19, 19, 41, 218, 68, 112, 67, 67, 67, 96, 169, (243,173): 169, 169, 132, 96, 169, 96, 202, 161, 169, 67, 67, 67, (243,185): 112, 127, 101, 173, 201, 19, 201, 119, 117, 117, 117, 35, (243,197): 35, 35, 11, 128, 128, 128, 221, 186, 72, 79, 128, 128, (243,209): 128, 11, 128, 128, 11, 128, 35, 117, 35, 35, 140, 117, (243,221): 35, 201, 117, 117, 117, 117, 35, 35, 117, 35, 35, 117, (243,233): 201, 117, 117, 201, 117, 117, 117, 117, 119, 33, 33, 119, (243,245): 117, 117, 35, 119, 35, 35, 35, 117, 117, 117, 117, 35, (243,257): 117, 117, 35, 117, 35, 35, 35, 35, 117, 117, 35, 117, (243,269): 117, 117, 117, 119, 117, 117, 117, 128, 33, 128, 35, 79, (243,281): 116, 66, 234, 66, 72, 221, 128, 33, 35, 128, 33, 221, (243,293): 128, 221, 116, 186, 128, 224, 3, 146, 156, 78, 34, 108, (243,305): 195, 49, 108, 108, 195, 156, 253, 253, 181, 63, 105, 27, (243,317): 253, 220, 234, 108, 66, 204, 33, 195, 18, 195, 156, 66, (243,329): 49, 185, 72, 156, 221, 63, 121, 121, 177, 3, 186, 195, (243,341): 49, 177, 50, 105, 156, 137, 183, 108, 182, 105, 50, 34, (243,353): 183, 176, 183, 253, 220, 156, 91, 121, 177, 89, 97, 89, (243,365): 89, 121, 93, 187, 24, 14, 100, 24, 27, 187, (244,0): 234, 49, 63, 91, 187, 108, 108, 14, 156, 14, 14, 66, 125, (244,13): 125, 125, 185, 79, 33, 33, 33, 79, 79, 79, 33, 35, 128, (244,26): 125, 252, 63, 241, 195, 185, 117, 35, 147, 35, 88, 33, (244,38): 117, 117, 140, 140, 88, 140, 117, 117, 117, 35, 117, 35, (244,50): 35, 35, 117, 245, 117, 35, 88, 35, 33, 33, 232, 35, 128, (244,63): 79, 245, 11, 88, 117, 128, 35, 33, 185, 117, 33, 28, 175, (244,76): 252, 28, 63, 187, 175, 28, 185, 232, 35, 140, 140, 245, (244,88): 35, 232, 232, 232, 33, 33, 33, 79, 35, 117, 35, 128, 33, (244,101): 33, 79, 79, 79, 221, 79, 33, 33, 33, 119, 33, 117, 35, (244,114): 35, 117, 201, 117, 35, 117, 117, 117, 140, 117, 117, 117, (244,126): 140, 117, 140, 117, 140, 117, 117, 117, 117, 117, 117, (244,137): 117, 140, 117, 117, 117, 117, 140, 117, 117, 117, 117, (244,148): 117, 139, 117, 35, 117, 117, 117, 140, 117, 201, 35, 117, (244,160): 119, 117, 199, 140, 145, 113, 101, 39, 164, 68, 169, 67, (244,172): 67, 166, 96, 166, 169, 132, 169, 96, 10, 67, 67, 164, (244,184): 159, 196, 250, 125, 201, 140, 140, 35, 35, 119, 35, 35, (244,196): 117, 11, 128, 224, 116, 186, 186, 186, 195, 72, 185, 128, (244,208): 128, 128, 119, 128, 35, 128, 119, 128, 117, 35, 117, 117, (244,220): 117, 201, 35, 117, 119, 117, 117, 117, 117, 117, 117, (244,231): 119, 117, 117, 117, 117, 117, 117, 117, 117, 35, 33, 33, (244,243): 55, 119, 35, 35, 119, 35, 35, 117, 117, 117, 201, 117, (244,255): 35, 117, 35, 35, 117, 35, 117, 35, 117, 35, 117, 35, 117, (244,268): 117, 35, 117, 35, 35, 35, 128, 35, 128, 35, 128, 128, (244,280): 186, 72, 72, 79, 72, 72, 72, 221, 128, 128, 128, 221, (244,292): 221, 221, 116, 186, 50, 3, 46, 186, 111, 3, 138, 183, 27, (244,305): 63, 50, 63, 63, 50, 108, 91, 175, 91, 108, 156, 156, 220, (244,318): 156, 49, 234, 195, 234, 33, 18, 116, 33, 79, 156, 33, 49, (244,331): 63, 72, 156, 72, 128, 63, 156, 63, 78, 78, 146, 91, 91, (244,344): 182, 138, 3, 50, 177, 222, 146, 91, 138, 63, 137, 105, (244,356): 181, 108, 186, 50, 37, 99, 89, 37, 89, 214, 37, 37, 157, (244,369): 27, 252, 14, 99, 70, 175, (245,0): 183, 220, 195, 220, 63, 63, 63, 100, 195, 241, 195, 125, (245,12): 185, 125, 185, 79, 88, 117, 79, 186, 33, 185, 195, 72, 66, (245,25): 195, 33, 156, 66, 14, 195, 35, 33, 35, 117, 88, 119, 119, (245,38): 119, 117, 117, 117, 147, 88, 117, 119, 119, 119, 35, 232, (245,50): 119, 117, 88, 140, 140, 88, 88, 117, 128, 128, 128, 128, (245,62): 128, 221, 33, 245, 245, 245, 117, 117, 128, 79, 18, 185, (245,74): 14, 63, 241, 185, 125, 241, 51, 100, 18, 232, 245, 245, (245,86): 245, 245, 245, 35, 232, 232, 232, 232, 55, 55, 33, 128, (245,98): 232, 128, 33, 33, 79, 221, 79, 79, 33, 33, 33, 128, 128, (245,111): 119, 35, 35, 35, 35, 117, 117, 117, 35, 140, 117, 117, (245,123): 117, 117, 140, 117, 117, 117, 117, 117, 117, 117, 140, (245,134): 117, 140, 117, 140, 117, 117, 117, 140, 117, 117, 117, (245,145): 140, 245, 139, 117, 117, 117, 117, 35, 35, 117, 140, 88, (245,157): 117, 117, 88, 117, 117, 35, 117, 201, 201, 145, 6, 173, (245,169): 92, 218, 77, 67, 67, 67, 67, 96, 10, 96, 68, 67, 67, 218, (245,183): 92, 113, 113, 120, 201, 117, 88, 117, 35, 88, 117, 35, (245,195): 128, 11, 224, 111, 46, 72, 133, 146, 72, 116, 116, 33, (245,207): 35, 33, 33, 128, 11, 128, 117, 128, 119, 117, 35, 35, 35, (245,220): 35, 35, 119, 117, 35, 88, 140, 117, 117, 117, 117, 35, (245,232): 117, 117, 117, 117, 117, 117, 117, 117, 35, 35, 55, 128, (245,244): 119, 117, 117, 35, 117, 117, 117, 117, 117, 35, 35, 119, (245,256): 35, 117, 35, 35, 35, 117, 35, 117, 35, 35, 117, 117, 117, (245,269): 35, 35, 35, 11, 117, 128, 128, 128, 128, 128, 221, 79, (245,281): 116, 116, 46, 116, 72, 72, 221, 128, 224, 221, 33, 46, (245,293): 186, 3, 116, 49, 80, 34, 90, 34, 50, 182, 3, 64, 183, (245,306): 253, 176, 64, 123, 91, 220, 183, 91, 63, 220, 186, 116, (245,318): 156, 195, 195, 18, 66, 33, 195, 195, 18, 72, 116, 63, 97, (245,331): 121, 49, 195, 11, 195, 3, 210, 156, 64, 121, 220, 50, (245,343): 108, 223, 105, 182, 176, 177, 36, 36, 146, 63, 80, 63, (245,355): 63, 63, 64, 156, 156, 253, 156, 180, 156, 156, 100, 187, (245,367): 27, 175, 70, 70, 2, 249, 99, 175, (246,0): 183, 187, 63, 14, 14, 66, 195, 156, 125, 125, 185, 33, 33, (246,13): 33, 33, 55, 33, 88, 35, 33, 125, 2, 70, 123, 180, 8, 18, (246,27): 35, 63, 63, 119, 185, 33, 117, 35, 88, 35, 88, 35, 117, (246,40): 35, 117, 117, 117, 35, 128, 35, 35, 35, 117, 117, 117, 88, (246,53): 88, 88, 88, 245, 117, 232, 35, 128, 35, 128, 128, 33, 33, (246,66): 128, 11, 245, 33, 33, 33, 33, 35, 125, 156, 66, 185, 185, (246,79): 125, 195, 66, 18, 232, 117, 117, 117, 139, 117, 35, 35, (246,91): 232, 232, 232, 128, 33, 33, 33, 128, 33, 33, 221, 79, 33, (246,104): 33, 33, 33, 128, 119, 128, 232, 128, 35, 119, 117, 35, (246,116): 117, 117, 35, 117, 117, 117, 140, 117, 117, 117, 139, (246,127): 117, 140, 117, 140, 117, 117, 117, 117, 117, 117, 117, (246,138): 117, 140, 117, 117, 117, 140, 117, 117, 117, 117, 117, (246,149): 35, 117, 35, 140, 35, 35, 117, 140, 117, 117, 140, 210, (246,161): 88, 11, 35, 117, 88, 199, 0, 199, 81, 173, 118, 101, 73, (246,174): 68, 148, 77, 106, 92, 215, 209, 101, 107, 145, 199, 199, (246,186): 199, 117, 117, 117, 11, 128, 117, 245, 117, 128, 221, (246,197): 116, 3, 133, 80, 182, 156, 186, 128, 232, 128, 232, 33, (246,209): 128, 128, 35, 117, 117, 117, 35, 117, 35, 35, 119, 119, (246,221): 35, 117, 201, 35, 140, 88, 119, 119, 117, 117, 35, 117, (246,233): 117, 117, 117, 35, 117, 117, 117, 117, 35, 117, 35, 117, (246,245): 117, 35, 117, 119, 119, 35, 35, 35, 35, 35, 119, 35, 117, (246,258): 117, 117, 35, 35, 35, 35, 35, 117, 35, 117, 35, 35, 232, (246,271): 128, 35, 11, 128, 224, 46, 186, 186, 186, 3, 72, 195, 49, (246,284): 146, 46, 221, 221, 128, 116, 72, 111, 116, 49, 156, 3, (246,296): 46, 72, 183, 178, 216, 141, 105, 116, 182, 27, 121, 64, (246,308): 27, 175, 183, 2, 220, 63, 183, 121, 253, 156, 156, 128, (246,320): 72, 79, 79, 116, 49, 128, 33, 116, 72, 63, 253, 253, 78, (246,333): 49, 116, 222, 210, 156, 50, 156, 146, 138, 253, 3, 108, (246,345): 105, 137, 105, 138, 63, 34, 3, 181, 181, 223, 223, 27, (246,357): 175, 105, 156, 195, 33, 156, 241, 156, 66, 14, 100, 14, (246,369): 241, 66, 125, 79, 253, 246, (247,0): 100, 63, 14, 195, 14, 156, 219, 66, 125, 33, 119, 119, 119, (247,13): 119, 119, 35, 119, 88, 33, 241, 63, 104, 187, 66, 195, 28, (247,26): 63, 2, 125, 18, 185, 117, 35, 35, 35, 232, 88, 117, 11, (247,39): 35, 88, 117, 35, 232, 33, 35, 88, 210, 117, 88, 140, 140, (247,52): 245, 117, 117, 88, 232, 128, 35, 11, 35, 128, 35, 35, 11, (247,65): 35, 245, 88, 232, 79, 185, 185, 185, 33, 33, 185, 185, (247,77): 185, 79, 79, 185, 66, 241, 18, 232, 139, 117, 88, 245, 35, (247,90): 232, 232, 35, 232, 232, 33, 232, 128, 232, 33, 33, 79, (247,102): 185, 221, 33, 33, 33, 128, 119, 128, 128, 33, 128, 35, (247,114): 119, 117, 35, 117, 117, 117, 140, 117, 117, 117, 140, (247,125): 117, 88, 117, 117, 117, 117, 117, 139, 117, 140, 117, (247,136): 140, 117, 140, 117, 117, 140, 117, 117, 140, 117, 140, (247,147): 117, 139, 117, 117, 117, 140, 117, 201, 117, 117, 117, (247,158): 117, 117, 117, 11, 88, 117, 117, 117, 117, 201, 19, 139, (247,170): 201, 19, 19, 6, 254, 31, 209, 6, 199, 19, 145, 6, 201, (247,183): 19, 201, 201, 119, 35, 35, 11, 117, 11, 232, 232, 128, (247,195): 221, 3, 80, 222, 222, 182, 138, 222, 116, 11, 245, 55, (247,207): 79, 33, 128, 35, 117, 88, 117, 117, 117, 117, 35, 119, (247,219): 33, 119, 35, 201, 117, 35, 139, 117, 185, 185, 119, 117, (247,231): 201, 117, 117, 201, 117, 117, 117, 117, 117, 35, 117, (247,242): 117, 117, 117, 35, 35, 117, 185, 79, 119, 119, 35, 117, (247,254): 117, 117, 117, 35, 35, 35, 35, 117, 35, 117, 35, 35, 117, (247,267): 117, 35, 35, 33, 33, 128, 224, 128, 46, 186, 49, 49, 146, (247,280): 181, 182, 220, 50, 146, 128, 224, 49, 46, 146, 146, 116, (247,292): 116, 182, 50, 146, 105, 50, 34, 64, 90, 90, 137, 50, 146, (247,305): 63, 181, 63, 63, 104, 183, 104, 181, 156, 220, 183, 156, (247,317): 46, 156, 79, 195, 79, 116, 234, 180, 33, 116, 66, 105, (247,329): 156, 50, 104, 105, 46, 156, 72, 186, 210, 156, 156, 220, (247,341): 216, 108, 146, 78, 108, 64, 183, 176, 182, 156, 176, 253, (247,353): 181, 37, 177, 37, 27, 89, 8, 156, 186, 66, 79, 185, 185, (247,366): 28, 100, 187, 63, 99, 187, 14, 187, 214, (248,0): 185, 186, 125, 125, 79, 33, 33, 185, 79, 125, 128, 35, 140, (248,13): 35, 88, 119, 128, 119, 33, 18, 66, 219, 185, 79, 100, 63, (248,26): 14, 185, 33, 79, 79, 35, 88, 88, 117, 35, 35, 232, 35, (248,39): 210, 117, 88, 35, 33, 128, 117, 88, 117, 35, 117, 88, 210, (248,52): 147, 88, 117, 11, 210, 88, 128, 128, 33, 128, 128, 128, (248,64): 245, 245, 11, 232, 33, 18, 72, 204, 116, 18, 219, 185, (248,76): 185, 185, 33, 119, 204, 241, 66, 185, 33, 232, 232, 245, (248,88): 245, 117, 232, 33, 33, 33, 232, 232, 232, 128, 35, 128, (248,100): 128, 33, 128, 79, 33, 33, 33, 33, 33, 128, 119, 35, 119, (248,113): 35, 35, 35, 117, 117, 117, 139, 117, 117, 140, 117, 117, (248,125): 117, 117, 117, 117, 139, 117, 117, 117, 117, 117, 117, (248,136): 35, 117, 117, 117, 139, 88, 117, 140, 117, 117, 117, 117, (248,148): 117, 117, 139, 117, 117, 117, 117, 117, 35, 117, 117, (248,159): 117, 117, 117, 117, 11, 117, 117, 117, 117, 201, 117, (248,170): 201, 201, 201, 201, 201, 201, 139, 201, 139, 201, 139, (248,181): 201, 201, 201, 119, 117, 117, 117, 117, 88, 128, 117, (248,192): 128, 33, 72, 49, 156, 222, 222, 138, 182, 3, 46, 224, 33, (248,205): 33, 79, 232, 33, 117, 35, 35, 117, 88, 35, 117, 117, 88, (248,218): 35, 119, 88, 185, 66, 119, 125, 117, 139, 119, 125, 117, (248,230): 139, 88, 117, 35, 117, 117, 117, 117, 117, 35, 117, 140, (248,242): 55, 88, 35, 33, 140, 33, 33, 33, 33, 119, 35, 117, 35, (248,255): 35, 117, 201, 35, 35, 117, 119, 35, 232, 117, 35, 117, (248,267): 35, 35, 128, 232, 128, 46, 210, 46, 46, 146, 146, 182, (248,279): 156, 156, 3, 50, 50, 146, 128, 234, 50, 234, 146, 80, (248,291): 138, 116, 182, 181, 182, 12, 223, 80, 49, 27, 91, 63, (248,303): 183, 91, 187, 220, 14, 50, 220, 63, 180, 50, 63, 187, (248,315): 180, 50, 14, 220, 72, 116, 128, 33, 234, 2, 128, 128, 11, (248,328): 186, 221, 195, 3, 146, 128, 80, 180, 253, 49, 50, 253, (248,340): 181, 183, 223, 183, 183, 253, 137, 137, 64, 105, 176, (248,351): 253, 27, 253, 108, 253, 138, 253, 220, 253, 2, 175, 104, (248,363): 63, 187, 180, 100, 2, 157, 70, 63, 70, 99, 156, 180, (249,0): 33, 119, 33, 79, 33, 35, 117, 117, 35, 185, 117, 35, 88, (249,13): 33, 35, 185, 33, 33, 79, 185, 14, 108, 14, 186, 66, 66, (249,26): 125, 33, 33, 79, 33, 35, 88, 117, 128, 33, 35, 33, 33, 35, (249,40): 88, 117, 35, 33, 232, 117, 117, 232, 35, 35, 117, 117, (249,52): 117, 117, 117, 117, 33, 33, 128, 128, 128, 33, 116, 72, (249,64): 128, 35, 35, 128, 33, 79, 79, 79, 185, 18, 125, 185, 79, (249,77): 185, 185, 33, 18, 195, 66, 18, 33, 33, 232, 245, 245, 35, (249,90): 232, 232, 232, 232, 232, 117, 35, 128, 35, 128, 119, 128, (249,102): 33, 33, 33, 33, 33, 33, 128, 33, 128, 128, 119, 128, 119, (249,115): 35, 201, 35, 117, 88, 117, 117, 117, 117, 117, 117, 201, (249,127): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (249,138): 117, 117, 117, 140, 117, 117, 35, 117, 117, 139, 117, (249,149): 117, 117, 117, 35, 117, 35, 117, 117, 139, 117, 35, 117, (249,161): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, (249,172): 117, 35, 117, 35, 35, 35, 35, 35, 117, 201, 35, 35, 201, (249,185): 140, 117, 35, 35, 117, 232, 11, 245, 221, 49, 182, 50, (249,197): 182, 182, 80, 80, 3, 46, 128, 128, 128, 35, 139, 35, 35, (249,210): 33, 185, 128, 35, 35, 35, 119, 88, 35, 35, 140, 55, 185, (249,223): 117, 119, 87, 117, 201, 185, 201, 119, 185, 55, 119, 35, (249,235): 35, 35, 117, 35, 117, 117, 119, 117, 140, 117, 117, 117, (249,247): 201, 117, 117, 119, 35, 35, 35, 35, 119, 119, 119, 35, (249,259): 88, 140, 140, 88, 88, 232, 35, 232, 128, 232, 128, 33, (249,271): 128, 11, 11, 111, 186, 3, 49, 80, 50, 50, 46, 128, 11, (249,284): 224, 116, 80, 116, 111, 182, 72, 63, 3, 3, 105, 3, 128, (249,297): 80, 195, 3, 234, 49, 49, 146, 27, 27, 108, 220, 156, 72, (249,310): 49, 220, 27, 181, 63, 195, 66, 108, 123, 97, 100, 156, (249,322): 128, 79, 253, 91, 105, 72, 221, 116, 11, 195, 221, 63, (249,334): 181, 223, 123, 91, 2, 181, 63, 181, 27, 97, 27, 181, 91, (249,347): 253, 187, 80, 108, 78, 253, 105, 220, 108, 63, 121, 104, (249,359): 27, 27, 187, 187, 25, 27, 8, 157, 70, 63, 121, 89, 175, (249,372): 63, 100, 187, (250,0): 18, 33, 35, 35, 33, 119, 33, 33, 117, 119, 117, 119, 117, (250,13): 185, 185, 185, 117, 125, 195, 125, 125, 241, 14, 66, 185, (250,25): 33, 232, 119, 33, 119, 35, 117, 117, 35, 33, 33, 35, 35, (250,38): 128, 117, 117, 33, 33, 33, 35, 117, 35, 128, 128, 35, 128, (250,51): 35, 117, 117, 128, 117, 116, 33, 33, 128, 33, 46, 72, 66, (250,64): 79, 221, 33, 33, 128, 232, 232, 35, 79, 186, 18, 185, 79, (250,77): 33, 185, 119, 79, 125, 204, 18, 185, 185, 55, 232, 117, (250,89): 35, 35, 35, 35, 35, 117, 35, 117, 128, 35, 128, 35, 128, (250,102): 33, 128, 33, 33, 33, 128, 33, 119, 35, 35, 128, 119, 119, (250,115): 35, 35, 117, 117, 139, 88, 117, 139, 117, 117, 117, 117, (250,127): 117, 117, 117, 117, 139, 117, 117, 139, 117, 117, 139, (250,138): 117, 117, 117, 117, 117, 140, 117, 117, 117, 117, 117, (250,149): 139, 117, 117, 139, 117, 117, 35, 117, 117, 117, 35, 139, (250,161): 139, 139, 35, 35, 117, 35, 117, 35, 35, 117, 11, 35, 117, (250,174): 117, 117, 128, 117, 117, 117, 117, 117, 117, 35, 117, 88, (250,186): 117, 35, 117, 128, 33, 245, 72, 80, 78, 105, 181, 222, (250,198): 182, 156, 3, 46, 33, 128, 128, 232, 245, 245, 117, 117, (250,210): 185, 125, 119, 117, 35, 33, 185, 117, 35, 119, 88, 35, (250,222): 119, 140, 139, 201, 185, 201, 55, 117, 185, 125, 185, 79, (250,234): 119, 35, 35, 35, 35, 117, 35, 125, 117, 35, 119, 147, (250,246): 119, 117, 35, 119, 35, 119, 35, 117, 117, 117, 117, 117, (250,258): 117, 117, 119, 128, 33, 33, 128, 117, 210, 11, 128, 128, (250,270): 128, 11, 46, 186, 111, 3, 46, 50, 49, 3, 156, 3, 116, 72, (250,284): 111, 116, 46, 116, 133, 49, 46, 138, 3, 11, 72, 138, 180, (250,297): 108, 63, 253, 181, 91, 123, 253, 2, 2, 49, 66, 14, 195, (250,310): 195, 195, 183, 28, 156, 186, 186, 221, 195, 186, 220, 63, (250,322): 232, 117, 195, 27, 242, 183, 156, 186, 195, 63, 183, 253, (250,334): 63, 156, 63, 105, 2, 253, 27, 108, 49, 253, 177, 91, 63, (250,347): 63, 105, 253, 181, 146, 27, 176, 220, 63, 187, 253, 195, (250,359): 180, 2, 70, 252, 108, 214, 214, 178, 99, 70, 187, 2, 180, (250,372): 28, 79, 66, (251,0): 185, 33, 35, 35, 119, 33, 55, 33, 35, 35, 117, 33, 33, 185, (251,14): 185, 185, 232, 18, 195, 125, 33, 33, 185, 79, 119, 117, (251,26): 88, 35, 232, 117, 88, 245, 117, 128, 33, 79, 128, 33, 33, (251,39): 35, 33, 79, 18, 33, 117, 35, 128, 35, 35, 128, 35, 128, (251,52): 128, 35, 117, 11, 33, 128, 33, 33, 79, 116, 72, 72, 79, (251,65): 221, 79, 33, 33, 128, 128, 35, 33, 33, 185, 33, 185, 33, (251,78): 55, 33, 55, 185, 204, 204, 185, 79, 79, 232, 117, 117, (251,90): 245, 245, 117, 117, 35, 35, 128, 232, 128, 128, 128, 128, (251,102): 119, 128, 33, 128, 128, 119, 128, 128, 128, 35, 119, 35, (251,114): 35, 117, 117, 117, 117, 88, 117, 117, 117, 117, 117, 117, (251,126): 35, 117, 139, 117, 117, 117, 117, 117, 117, 117, 117, (251,137): 117, 117, 117, 117, 140, 117, 117, 117, 117, 139, 117, (251,148): 117, 117, 117, 117, 117, 117, 139, 117, 117, 139, 35, (251,159): 117, 139, 139, 139, 117, 139, 117, 117, 117, 35, 11, 11, (251,171): 117, 11, 11, 11, 11, 11, 128, 11, 11, 117, 117, 117, 117, (251,184): 35, 117, 35, 232, 245, 128, 221, 46, 72, 80, 50, 138, 50, (251,197): 156, 146, 186, 186, 221, 33, 128, 232, 128, 232, 117, (251,208): 117, 117, 33, 79, 117, 88, 119, 33, 55, 117, 35, 55, 117, (251,221): 117, 35, 117, 55, 120, 219, 119, 201, 140, 55, 55, 185, (251,233): 79, 119, 35, 35, 128, 35, 35, 119, 125, 33, 119, 119, (251,245): 117, 33, 35, 119, 128, 119, 33, 119, 35, 117, 117, 117, (251,257): 117, 117, 119, 128, 35, 88, 210, 33, 128, 221, 221, 46, (251,269): 221, 46, 46, 182, 34, 50, 80, 3, 222, 50, 72, 111, 224, (251,282): 46, 108, 72, 221, 116, 78, 111, 116, 80, 182, 34, 37, (251,294): 137, 223, 137, 108, 182, 104, 27, 27, 70, 63, 108, 100, (251,306): 66, 50, 104, 187, 108, 66, 186, 33, 11, 232, 11, 33, 156, (251,319): 2, 100, 104, 63, 2, 14, 187, 187, 27, 99, 2, 50, 156, (251,332): 105, 50, 176, 175, 63, 181, 100, 108, 105, 100, 72, 50, (251,344): 253, 27, 223, 183, 105, 183, 27, 105, 220, 64, 183, 50, (251,356): 108, 27, 220, 100, 100, 123, 226, 175, 180, 216, 37, 70, (251,368): 8, 187, 252, 195, 14, 180, 195, (252,0): 33, 33, 33, 79, 79, 33, 35, 35, 33, 128, 79, 185, 33, 79, (252,14): 72, 33, 125, 33, 232, 185, 125, 79, 35, 140, 232, 245, (252,26): 117, 35, 245, 147, 88, 232, 35, 35, 33, 79, 79, 18, 72, (252,39): 33, 33, 79, 186, 128, 117, 117, 128, 11, 117, 117, 35, (252,51): 128, 35, 11, 117, 88, 11, 35, 128, 46, 116, 186, 79, 221, (252,64): 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 119, 33, 119, 119, (252,78): 119, 33, 232, 79, 79, 185, 185, 33, 232, 35, 35, 245, 245, (252,91): 140, 35, 35, 35, 232, 33, 33, 33, 33, 33, 33, 128, 119, (252,104): 35, 128, 119, 128, 35, 35, 117, 117, 117, 117, 117, 117, (252,116): 117, 140, 140, 140, 117, 140, 117, 117, 139, 117, 117, (252,127): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (252,138): 117, 139, 117, 117, 117, 35, 35, 117, 117, 201, 117, 35, (252,150): 117, 35, 117, 117, 117, 117, 117, 117, 117, 139, 117, (252,161): 139, 35, 139, 35, 117, 117, 11, 35, 117, 128, 117, 35, (252,173): 35, 35, 35, 128, 35, 128, 117, 117, 117, 117, 117, 117, (252,185): 117, 128, 128, 210, 46, 146, 234, 133, 80, 182, 222, 138, (252,197): 50, 156, 66, 185, 185, 232, 232, 232, 128, 35, 128, 117, (252,209): 140, 119, 119, 117, 117, 119, 35, 119, 117, 119, 33, 35, (252,221): 140, 119, 185, 119, 120, 219, 119, 119, 140, 201, 35, (252,232): 185, 119, 117, 117, 35, 35, 35, 117, 117, 35, 185, 117, (252,244): 117, 33, 140, 119, 117, 117, 119, 119, 128, 55, 119, 35, (252,256): 128, 117, 35, 128, 33, 33, 221, 116, 11, 72, 234, 50, 72, (252,269): 116, 3, 50, 182, 137, 183, 181, 78, 156, 138, 50, 234, (252,281): 49, 116, 63, 182, 234, 234, 104, 181, 12, 137, 234, 224, (252,293): 80, 220, 141, 178, 64, 156, 18, 72, 220, 104, 253, 14, (252,305): 220, 66, 14, 2, 63, 14, 185, 128, 185, 72, 100, 128, 18, (252,318): 100, 175, 70, 121, 252, 175, 63, 187, 220, 253, 175, 223, (252,330): 175, 123, 63, 2, 108, 253, 64, 27, 187, 50, 14, 50, 108, (252,343): 100, 3, 63, 64, 64, 105, 105, 64, 141, 63, 187, 180, 2, (252,356): 183, 104, 220, 175, 121, 104, 70, 241, 252, 187, 246, (252,367): 125, 63, 175, 220, 100, 27, 66, 2, (253,0): 14, 195, 185, 185, 33, 79, 221, 185, 156, 125, 156, 195, (253,12): 186, 185, 66, 79, 18, 35, 35, 185, 18, 55, 117, 117, 117, (253,25): 117, 245, 117, 245, 88, 139, 33, 33, 128, 221, 79, 79, (253,37): 186, 185, 128, 35, 128, 128, 35, 245, 11, 245, 117, 117, (253,49): 117, 35, 128, 35, 128, 117, 11, 35, 11, 128, 33, 79, 186, (253,62): 116, 116, 128, 128, 33, 79, 33, 33, 33, 79, 232, 35, 232, (253,75): 119, 232, 117, 117, 232, 35, 232, 232, 232, 232, 232, 35, (253,87): 245, 245, 245, 140, 245, 245, 245, 232, 232, 33, 33, 33, (253,99): 33, 128, 35, 35, 128, 117, 117, 117, 128, 117, 117, 11, (253,111): 117, 88, 117, 117, 117, 140, 88, 88, 140, 117, 117, 117, (253,123): 117, 117, 35, 117, 35, 117, 117, 117, 139, 117, 117, 139, (253,135): 117, 139, 35, 117, 117, 117, 117, 201, 117, 117, 201, 35, (253,147): 117, 117, 117, 35, 117, 139, 35, 117, 139, 35, 117, 35, (253,159): 117, 35, 139, 245, 35, 245, 117, 117, 117, 35, 11, 117, (253,171): 117, 35, 117, 35, 117, 35, 35, 117, 117, 117, 117, 117, (253,183): 117, 210, 11, 128, 224, 11, 72, 138, 203, 80, 133, 133, (253,195): 146, 156, 195, 185, 35, 185, 185, 232, 117, 117, 88, 11, (253,207): 117, 117, 140, 35, 55, 55, 35, 201, 88, 140, 88, 117, (253,219): 119, 35, 88, 35, 185, 201, 201, 120, 119, 120, 55, 71, (253,231): 185, 119, 35, 117, 117, 117, 117, 35, 117, 117, 35, 185, (253,243): 140, 117, 33, 88, 119, 35, 35, 35, 35, 119, 35, 35, 117, (253,256): 35, 88, 117, 128, 221, 186, 156, 63, 116, 116, 72, 234, (253,268): 80, 49, 146, 80, 234, 50, 80, 138, 183, 80, 156, 49, 234, (253,281): 50, 220, 220, 50, 63, 220, 50, 91, 91, 50, 90, 64, 234, (253,294): 116, 234, 63, 121, 123, 253, 14, 195, 195, 185, 185, 156, (253,306): 186, 116, 79, 128, 33, 33, 128, 33, 117, 72, 117, 220, 2, (253,319): 70, 183, 242, 252, 27, 2, 70, 187, 27, 175, 8, 175, 2, (253,332): 108, 2, 63, 66, 187, 187, 253, 63, 66, 156, 63, 156, 195, (253,345): 156, 181, 64, 181, 108, 181, 123, 223, 37, 121, 253, 27, (253,357): 99, 175, 27, 100, 157, 175, 100, 241, 241, 66, 14, 66, (253,369): 70, 121, 100, 123, 216, 175, (254,0): 100, 66, 33, 128, 33, 185, 195, 66, 220, 66, 63, 14, 18, (254,13): 116, 234, 79, 33, 232, 33, 33, 33, 35, 117, 232, 117, 117, (254,26): 140, 117, 140, 245, 232, 33, 33, 232, 33, 33, 33, 128, 33, (254,39): 245, 245, 245, 35, 245, 128, 245, 88, 11, 117, 117, 128, (254,51): 128, 33, 128, 128, 35, 128, 128, 11, 128, 116, 186, 72, (254,63): 18, 35, 128, 33, 33, 232, 33, 33, 33, 232, 35, 35, 128, (254,76): 35, 117, 117, 232, 117, 117, 117, 35, 35, 245, 245, 140, (254,88): 117, 117, 245, 140, 245, 117, 35, 232, 35, 128, 232, 128, (254,100): 35, 128, 117, 11, 88, 117, 11, 88, 117, 11, 88, 88, 88, (254,113): 140, 140, 88, 117, 140, 117, 117, 117, 140, 117, 140, (254,124): 117, 117, 117, 35, 139, 117, 117, 117, 117, 117, 117, (254,135): 117, 117, 117, 139, 117, 35, 117, 35, 117, 35, 117, 117, (254,147): 35, 35, 201, 117, 35, 117, 117, 117, 117, 117, 139, 117, (254,159): 139, 245, 35, 245, 35, 245, 35, 11, 117, 128, 117, 35, (254,171): 35, 117, 119, 35, 201, 119, 35, 201, 35, 117, 117, 35, (254,183): 117, 117, 11, 128, 111, 111, 133, 124, 124, 34, 203, 182, (254,195): 133, 3, 185, 33, 119, 55, 55, 201, 232, 35, 117, 117, 11, (254,208): 117, 140, 201, 33, 119, 35, 35, 117, 140, 201, 117, 117, (254,220): 117, 117, 201, 33, 35, 139, 55, 201, 185, 55, 125, 125, (254,232): 201, 35, 117, 117, 117, 117, 11, 35, 128, 125, 18, 35, (254,244): 117, 55, 119, 33, 79, 33, 119, 119, 128, 35, 117, 117, (254,256): 128, 117, 11, 88, 11, 11, 221, 49, 80, 221, 224, 116, (254,268): 182, 50, 3, 116, 146, 80, 11, 186, 181, 146, 72, 46, 210, (254,281): 116, 72, 221, 234, 234, 234, 49, 3, 124, 72, 181, 138, (254,293): 146, 49, 128, 108, 175, 99, 99, 252, 14, 241, 66, 186, (254,305): 156, 18, 33, 33, 117, 33, 221, 35, 128, 186, 156, 63, (254,317): 180, 2, 108, 180, 93, 123, 226, 226, 178, 70, 175, 2, 63, (254,330): 2, 66, 187, 2, 2, 186, 156, 156, 14, 156, 195, 220, 180, (254,343): 63, 146, 50, 183, 223, 63, 156, 108, 64, 27, 91, 253, 2, (254,356): 187, 2, 108, 187, 14, 66, 175, 14, 241, 241, 27, 185, 79, (254,369): 220, 104, 104, 27, 180, 253, (255,0): 108, 66, 195, 66, 108, 63, 100, 14, 14, 72, 100, 49, 79, (255,13): 128, 195, 33, 18, 185, 232, 232, 232, 33, 35, 140, 245, (255,25): 35, 117, 245, 117, 117, 35, 35, 210, 11, 33, 79, 128, 79, (255,38): 79, 221, 33, 245, 245, 128, 232, 245, 88, 245, 117, 128, (255,50): 128, 128, 33, 33, 33, 33, 128, 128, 128, 33, 79, 72, 72, (255,63): 186, 128, 232, 33, 33, 232, 232, 232, 119, 33, 128, 35, (255,75): 119, 35, 117, 245, 119, 35, 245, 245, 245, 245, 245, 117, (255,87): 232, 117, 117, 140, 245, 245, 245, 245, 117, 117, 88, 117, (255,99): 117, 35, 117, 88, 117, 88, 88, 88, 88, 88, 88, 88, 88, (255,112): 140, 88, 88, 140, 117, 117, 117, 117, 117, 117, 117, 117, (255,124): 117, 201, 117, 117, 117, 117, 117, 117, 117, 117, 117, (255,135): 117, 117, 117, 117, 117, 117, 35, 35, 35, 35, 117, 201, (255,147): 117, 35, 117, 117, 201, 117, 117, 139, 35, 117, 117, 117, (255,159): 35, 245, 35, 35, 245, 245, 117, 117, 11, 117, 35, 35, 35, (255,172): 139, 139, 139, 139, 139, 35, 201, 117, 201, 117, 35, 117, (255,184): 128, 11, 224, 111, 46, 22, 124, 124, 124, 22, 3, 128, 11, (255,197): 11, 119, 119, 139, 139, 35, 119, 128, 128, 128, 35, 119, (255,209): 140, 117, 35, 88, 140, 35, 117, 119, 119, 117, 140, 35, (255,221): 119, 117, 117, 201, 140, 201, 140, 201, 87, 119, 120, 35, (255,233): 35, 201, 35, 117, 117, 35, 35, 79, 14, 79, 119, 35, 88, (255,246): 185, 33, 119, 33, 119, 128, 119, 33, 119, 128, 35, 11, (255,258): 128, 221, 33, 128, 186, 156, 220, 146, 146, 80, 182, 80, (255,270): 80, 182, 3, 176, 72, 3, 116, 46, 72, 3, 50, 49, 116, 128, (255,284): 195, 221, 221, 116, 220, 80, 116, 50, 50, 50, 156, 49, (255,296): 66, 186, 63, 97, 157, 100, 241, 18, 125, 66, 33, 128, 33, (255,309): 33, 33, 128, 33, 221, 14, 79, 14, 63, 121, 97, 178, 226, (255,322): 93, 252, 27, 99, 252, 175, 2, 2, 63, 104, 100, 156, 186, (255,335): 66, 195, 49, 156, 63, 91, 183, 105, 181, 156, 180, 253, (255,347): 64, 91, 175, 91, 181, 63, 2, 183, 2, 108, 108, 14, 100, (255,360): 66, 66, 28, 100, 187, 14, 100, 195, 125, 79, 175, 100, (255,372): 156, 70, 123, (256,0): 18, 14, 14, 156, 108, 185, 183, 220, 72, 14, 221, 116, 234, (256,13): 187, 220, 195, 18, 66, 147, 185, 245, 79, 88, 245, 232, (256,25): 117, 210, 88, 33, 195, 186, 128, 128, 72, 116, 116, 11, (256,37): 116, 33, 35, 128, 35, 128, 35, 35, 35, 35, 35, 33, 221, (256,50): 35, 11, 88, 221, 221, 128, 186, 79, 33, 128, 33, 221, 185, (256,63): 186, 33, 232, 232, 232, 245, 35, 117, 117, 35, 35, 35, (256,75): 117, 117, 117, 245, 245, 117, 117, 117, 139, 117, 139, (256,86): 117, 245, 140, 245, 140, 245, 140, 117, 117, 117, 88, 117, (256,98): 88, 88, 117, 88, 117, 117, 88, 117, 117, 117, 117, 140, (256,110): 117, 88, 117, 117, 140, 117, 117, 140, 117, 117, 117, (256,121): 139, 117, 117, 117, 117, 117, 139, 117, 117, 139, 117, (256,132): 35, 117, 35, 139, 88, 117, 117, 117, 35, 117, 35, 35, (256,144): 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, 117, (256,155): 117, 117, 35, 117, 117, 117, 245, 35, 245, 11, 117, 11, (256,167): 117, 88, 128, 119, 232, 35, 35, 201, 139, 139, 35, 139, (256,179): 117, 245, 117, 128, 128, 224, 224, 46, 3, 133, 182, 22, (256,191): 182, 22, 3, 111, 11, 11, 88, 245, 245, 140, 232, 55, 33, (256,204): 120, 185, 185, 33, 35, 117, 117, 117, 35, 117, 35, 35, (256,216): 117, 147, 119, 119, 147, 117, 55, 147, 119, 35, 35, 139, (256,228): 35, 35, 55, 55, 125, 71, 117, 117, 119, 35, 140, 33, 35, (256,241): 33, 117, 35, 128, 35, 79, 128, 117, 33, 33, 128, 35, 11, (256,254): 117, 221, 11, 128, 11, 146, 224, 46, 105, 49, 3, 146, (256,266): 116, 146, 146, 72, 182, 176, 234, 116, 3, 46, 224, 11, (256,278): 49, 116, 111, 116, 50, 46, 72, 72, 234, 50, 3, 46, 222, (256,291): 3, 156, 72, 3, 180, 175, 66, 195, 14, 28, 79, 125, 66, (256,304): 185, 232, 232, 232, 79, 79, 116, 116, 108, 63, 63, 104, (256,316): 221, 66, 8, 2, 63, 187, 2, 66, 195, 14, 108, 66, 63, 28, (256,330): 220, 49, 187, 49, 221, 33, 186, 186, 50, 2, 183, 175, 27, (256,343): 64, 108, 63, 63, 108, 183, 183, 63, 91, 187, 108, 180, (256,355): 108, 28, 180, 195, 241, 2, 18, 108, 2, 70, 175, 252, 104, (256,368): 14, 220, 63, 156, 79, 33, 18, (257,0): 108, 253, 105, 195, 253, 128, 79, 49, 108, 14, 186, 72, 27, (257,13): 234, 234, 121, 28, 100, 232, 35, 33, 232, 128, 232, 210, (257,25): 128, 33, 33, 33, 221, 116, 221, 128, 224, 11, 221, 35, (257,37): 116, 46, 18, 221, 33, 33, 232, 245, 35, 232, 33, 128, 221, (257,50): 116, 33, 11, 35, 128, 128, 33, 128, 128, 117, 35, 35, 33, (257,63): 128, 55, 128, 232, 35, 35, 35, 117, 35, 35, 35, 35, 35, (257,76): 117, 117, 140, 117, 245, 139, 245, 245, 245, 245, 117, (257,87): 117, 245, 140, 117, 140, 117, 117, 117, 140, 117, 88, 140, (257,99): 117, 117, 117, 117, 117, 117, 140, 117, 140, 117, 117, (257,110): 117, 140, 117, 140, 117, 117, 117, 117, 117, 117, 117, (257,121): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (257,132): 117, 139, 117, 117, 35, 117, 35, 117, 35, 35, 35, 35, (257,144): 117, 35, 117, 35, 117, 117, 35, 117, 35, 117, 35, 117, (257,156): 35, 117, 117, 139, 117, 35, 117, 117, 35, 117, 117, 117, (257,168): 128, 35, 117, 245, 140, 139, 185, 38, 139, 35, 117, 35, (257,180): 35, 128, 128, 224, 72, 3, 3, 80, 80, 133, 146, 133, 186, (257,193): 186, 128, 128, 88, 35, 117, 232, 117, 232, 33, 119, 119, (257,205): 55, 119, 35, 117, 35, 35, 117, 117, 117, 35, 35, 119, (257,217): 117, 119, 35, 140, 185, 241, 33, 35, 117, 117, 117, 119, (257,229): 55, 119, 201, 55, 28, 103, 55, 140, 33, 117, 117, 35, 35, (257,242): 128, 14, 14, 33, 232, 128, 35, 33, 33, 128, 221, 128, (257,254): 117, 128, 224, 128, 224, 50, 146, 186, 49, 11, 3, 128, 3, (257,267): 50, 72, 182, 49, 108, 176, 50, 224, 3, 146, 49, 138, 3, (257,280): 11, 224, 46, 116, 146, 50, 176, 182, 63, 80, 183, 176, (257,292): 108, 181, 195, 63, 104, 18, 33, 232, 79, 232, 204, 71, (257,304): 232, 139, 139, 232, 232, 11, 117, 221, 220, 253, 253, 49, (257,316): 178, 66, 234, 14, 18, 18, 185, 72, 18, 66, 156, 14, 14, (257,329): 156, 49, 195, 63, 72, 116, 186, 72, 116, 50, 63, 91, 64, (257,342): 183, 27, 91, 156, 63, 27, 66, 49, 14, 14, 108, 72, 108, (257,355): 14, 187, 252, 2, 24, 195, 180, 14, 8, 123, 64, 27, 183, (257,368): 220, 186, 14, 2, 187, 195, 79, (258,0): 220, 79, 63, 220, 104, 195, 195, 156, 186, 49, 70, 121, (258,12): 175, 72, 156, 187, 33, 79, 33, 33, 18, 232, 128, 88, 128, (258,25): 33, 224, 221, 186, 156, 50, 156, 116, 186, 116, 49, 146, (258,37): 186, 128, 33, 18, 79, 79, 35, 245, 245, 232, 232, 79, 79, (258,50): 46, 221, 79, 186, 186, 232, 128, 35, 117, 117, 128, 35, (258,62): 35, 35, 232, 35, 35, 35, 35, 245, 245, 245, 245, 245, 245, (258,75): 117, 245, 139, 117, 117, 140, 88, 117, 140, 117, 140, 245, (258,87): 140, 245, 140, 245, 245, 140, 117, 140, 117, 140, 117, 88, (258,99): 140, 117, 140, 117, 140, 117, 117, 117, 88, 140, 117, 140, (258,111): 117, 117, 117, 140, 117, 140, 117, 139, 117, 117, 117, (258,122): 117, 139, 117, 117, 117, 117, 117, 140, 117, 140, 245, (258,133): 245, 117, 35, 119, 35, 35, 35, 139, 35, 117, 35, 117, (258,145): 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, 139, 117, (258,157): 117, 35, 117, 117, 117, 117, 117, 11, 117, 11, 117, 128, (258,169): 35, 117, 35, 35, 139, 55, 219, 35, 35, 140, 35, 33, 221, (258,182): 221, 221, 3, 49, 80, 156, 49, 146, 186, 46, 224, 128, (258,194): 128, 128, 117, 11, 128, 33, 117, 232, 232, 119, 117, 35, (258,206): 117, 139, 117, 117, 117, 35, 117, 117, 35, 117, 128, 35, (258,218): 119, 117, 117, 219, 14, 55, 35, 117, 117, 35, 33, 55, 55, (258,231): 119, 119, 28, 55, 125, 35, 187, 185, 128, 79, 88, 79, (258,243): 187, 252, 72, 33, 72, 128, 33, 128, 128, 221, 221, 128, (258,255): 11, 128, 11, 46, 156, 186, 11, 224, 186, 146, 50, 182, (258,267): 234, 222, 64, 3, 49, 222, 181, 128, 46, 11, 128, 72, 116, (258,280): 80, 64, 91, 137, 78, 80, 105, 108, 216, 181, 108, 181, (258,292): 186, 104, 72, 186, 220, 72, 204, 195, 66, 79, 79, 232, (258,304): 35, 232, 35, 128, 128, 33, 221, 221, 49, 104, 63, 108, (258,316): 104, 63, 79, 195, 195, 66, 18, 220, 66, 220, 195, 156, (258,328): 195, 195, 156, 195, 220, 220, 108, 108, 105, 49, 220, (258,339): 116, 72, 108, 49, 108, 181, 195, 50, 177, 156, 49, 156, (258,351): 49, 156, 63, 63, 175, 187, 178, 70, 99, 99, 8, 28, 14, (258,364): 63, 14, 63, 63, 187, 104, 180, 187, 195, 14, 234, (259,0): 123, 156, 156, 49, 195, 116, 186, 116, 14, 72, 49, 63, 72, (259,13): 63, 108, 33, 234, 63, 18, 66, 221, 79, 33, 116, 220, 220, (259,26): 234, 195, 49, 49, 195, 221, 138, 156, 146, 195, 116, 33, (259,38): 128, 128, 116, 79, 79, 232, 232, 245, 35, 232, 33, 224, (259,50): 33, 11, 33, 116, 221, 35, 128, 128, 128, 128, 35, 128, (259,62): 128, 35, 245, 245, 35, 35, 35, 117, 245, 245, 117, 140, (259,74): 245, 117, 245, 117, 117, 117, 117, 117, 117, 117, 140, (259,85): 117, 117, 117, 140, 245, 117, 140, 117, 140, 117, 117, (259,96): 140, 88, 140, 117, 140, 117, 88, 117, 140, 117, 140, 117, (259,108): 117, 117, 117, 140, 117, 140, 117, 117, 117, 117, 117, (259,119): 117, 117, 139, 117, 117, 117, 139, 117, 117, 117, 117, (259,130): 117, 117, 117, 35, 232, 232, 232, 232, 232, 232, 35, 35, (259,142): 139, 117, 117, 35, 117, 117, 139, 35, 117, 35, 117, 201, (259,154): 117, 117, 117, 35, 117, 117, 35, 117, 117, 35, 117, 117, (259,166): 117, 117, 11, 117, 117, 33, 139, 140, 139, 125, 119, 139, (259,178): 117, 35, 128, 33, 46, 116, 195, 80, 156, 80, 133, 3, 46, (259,191): 46, 221, 221, 221, 128, 128, 35, 35, 35, 245, 117, 35, (259,203): 117, 139, 117, 201, 35, 35, 35, 11, 117, 117, 117, 117, (259,215): 35, 35, 117, 117, 117, 117, 55, 185, 88, 128, 128, 119, (259,227): 33, 55, 185, 119, 119, 33, 201, 185, 88, 187, 100, 100, (259,239): 195, 66, 185, 185, 187, 253, 66, 72, 241, 221, 79, 221, (259,251): 33, 221, 33, 33, 46, 128, 182, 181, 146, 111, 80, 156, (259,263): 80, 234, 182, 183, 105, 224, 49, 72, 46, 63, 141, 138, (259,275): 50, 72, 11, 46, 3, 128, 78, 46, 49, 50, 50, 181, 36, 253, (259,289): 253, 181, 105, 156, 89, 216, 156, 195, 116, 100, 104, 24, (259,301): 79, 245, 33, 245, 232, 128, 245, 79, 108, 63, 156, 156, (259,313): 108, 121, 121, 2, 2, 253, 241, 180, 252, 2, 104, 100, (259,325): 104, 14, 195, 33, 195, 14, 49, 234, 180, 104, 63, 91, 50, (259,338): 222, 116, 186, 78, 50, 104, 181, 108, 128, 63, 50, 220, (259,350): 220, 180, 63, 63, 183, 104, 175, 37, 99, 226, 51, 180, (259,362): 51, 66, 252, 187, 186, 185, 18, 220, 180, 180, 18, 14, 2, (260,0): 220, 187, 195, 220, 253, 187, 220, 63, 91, 2, 79, 128, 88, (260,13): 221, 72, 108, 18, 66, 33, 72, 72, 72, 79, 221, 79, 156, (260,26): 180, 78, 50, 50, 108, 50, 49, 49, 49, 186, 186, 116, 128, (260,39): 88, 33, 33, 79, 79, 79, 232, 232, 35, 128, 195, 49, 186, (260,52): 128, 128, 79, 116, 35, 117, 117, 128, 35, 35, 117, 117, (260,64): 245, 245, 245, 245, 245, 117, 140, 245, 140, 245, 245, (260,75): 140, 117, 245, 139, 117, 117, 140, 117, 117, 117, 117, (260,86): 140, 117, 117, 140, 88, 117, 140, 88, 140, 88, 140, 88, (260,98): 140, 88, 117, 140, 117, 140, 117, 117, 117, 140, 117, 140, (260,110): 117, 117, 117, 117, 140, 117, 140, 117, 117, 117, 140, (260,121): 117, 117, 117, 117, 117, 117, 35, 139, 245, 117, 139, 35, (260,133): 232, 33, 33, 33, 55, 33, 232, 35, 35, 117, 117, 35, 139, (260,146): 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, (260,157): 117, 35, 117, 117, 35, 117, 117, 117, 117, 117, 117, 35, (260,169): 117, 88, 35, 117, 140, 55, 241, 232, 35, 35, 245, 117, (260,181): 33, 46, 72, 234, 182, 50, 234, 49, 146, 146, 186, 146, (260,193): 186, 221, 33, 128, 33, 35, 11, 245, 245, 117, 117, 117, (260,205): 117, 35, 119, 35, 117, 117, 35, 117, 128, 117, 35, 35, (260,217): 88, 117, 117, 117, 140, 117, 117, 55, 33, 119, 119, 119, (260,229): 119, 55, 33, 55, 33, 119, 18, 156, 156, 186, 156, 14, (260,241): 220, 66, 156, 66, 186, 18, 79, 116, 72, 18, 221, 33, 221, (260,254): 116, 220, 181, 116, 234, 91, 91, 49, 46, 182, 253, 181, (260,266): 49, 49, 137, 253, 138, 63, 46, 49, 116, 234, 176, 72, (260,278): 146, 182, 116, 182, 181, 91, 182, 146, 50, 36, 97, 37, (260,290): 121, 97, 63, 63, 2, 35, 186, 185, 195, 63, 100, 79, 245, (260,303): 232, 88, 35, 35, 128, 116, 100, 63, 108, 220, 146, 2, (260,315): 175, 180, 63, 100, 180, 187, 175, 104, 27, 63, 104, 100, (260,327): 220, 18, 195, 156, 14, 49, 220, 50, 234, 78, 108, 183, (260,339): 181, 181, 91, 138, 105, 108, 105, 221, 186, 181, 156, (260,350): 186, 49, 220, 220, 18, 63, 195, 226, 180, 51, 14, 62, (260,362): 241, 185, 219, 104, 14, 70, 100, 195, 180, 104, 64, 180, (260,374): 104, (261,0): 46, 2, 108, 253, 63, 108, 195, 72, 27, 156, 195, 186, 14, (261,13): 156, 156, 79, 128, 128, 46, 186, 104, 108, 108, 186, 221, (261,25): 3, 72, 116, 221, 221, 46, 116, 146, 49, 156, 72, 49, 72, (261,38): 72, 221, 33, 33, 33, 79, 18, 18, 79, 33, 128, 72, 234, (261,51): 195, 72, 72, 195, 186, 128, 128, 117, 35, 128, 35, 117, (261,63): 245, 245, 245, 117, 117, 117, 117, 245, 245, 245, 140, (261,74): 245, 140, 245, 245, 245, 117, 117, 117, 117, 117, 117, (261,85): 117, 117, 117, 88, 140, 117, 140, 88, 140, 88, 140, 88, (261,97): 140, 88, 140, 88, 140, 117, 88, 140, 117, 140, 117, 88, (261,109): 117, 117, 140, 117, 140, 117, 117, 117, 117, 117, 117, (261,120): 117, 117, 88, 139, 117, 117, 35, 117, 117, 117, 35, 232, (261,132): 232, 232, 119, 33, 232, 232, 232, 35, 35, 35, 117, 117, (261,144): 117, 117, 117, 35, 117, 117, 35, 117, 35, 117, 117, 139, (261,156): 35, 117, 117, 139, 35, 117, 117, 117, 117, 35, 11, 117, (261,168): 117, 117, 117, 35, 35, 245, 232, 125, 35, 35, 35, 35, 11, (261,181): 128, 116, 49, 49, 234, 80, 80, 156, 182, 50, 80, 195, 72, (261,194): 33, 128, 33, 128, 232, 117, 35, 117, 117, 139, 35, 117, (261,206): 119, 128, 117, 35, 11, 117, 117, 117, 35, 117, 35, 140, (261,218): 88, 201, 117, 140, 119, 219, 119, 33, 119, 35, 117, 35, (261,230): 232, 33, 33, 185, 116, 117, 66, 221, 221, 33, 195, 14, (261,242): 195, 33, 33, 33, 221, 245, 79, 72, 116, 128, 33, 221, 72, (261,255): 50, 49, 234, 50, 138, 108, 108, 50, 72, 72, 234, 105, (261,267): 234, 49, 234, 64, 78, 146, 128, 11, 80, 183, 49, 50, 64, (261,280): 176, 221, 220, 137, 181, 63, 220, 186, 180, 63, 63, 99, (261,292): 121, 187, 8, 97, 156, 14, 186, 72, 195, 49, 33, 245, 46, (261,305): 221, 33, 221, 33, 221, 116, 49, 49, 46, 117, 156, 66, (261,317): 180, 180, 100, 187, 2, 180, 93, 180, 63, 220, 187, 108, (261,329): 49, 72, 108, 220, 49, 72, 100, 138, 105, 137, 12, 105, (261,341): 63, 49, 146, 220, 105, 253, 91, 64, 253, 108, 49, 49, (261,353): 195, 156, 79, 33, 66, 66, 28, 93, 93, 231, 28, 24, 192, (261,366): 93, 175, 99, 70, 253, 121, 27, 8, 252, (262,0): 195, 116, 14, 195, 11, 33, 116, 128, 33, 11, 156, 49, 221, (262,13): 79, 108, 72, 72, 116, 116, 128, 49, 33, 146, 116, 186, (262,25): 186, 46, 46, 72, 108, 63, 63, 78, 220, 156, 46, 186, 186, (262,38): 220, 63, 234, 72, 79, 33, 33, 79, 18, 79, 128, 128, 33, (262,51): 33, 186, 195, 186, 117, 128, 128, 35, 128, 35, 128, 117, (262,63): 117, 117, 139, 245, 140, 245, 140, 245, 140, 245, 140, (262,74): 245, 245, 140, 117, 140, 245, 117, 117, 139, 117, 117, (262,85): 139, 117, 117, 140, 117, 140, 88, 117, 140, 88, 140, 88, (262,97): 140, 88, 140, 117, 140, 88, 140, 117, 117, 117, 140, 117, (262,109): 140, 117, 88, 117, 117, 140, 117, 140, 117, 139, 117, (262,120): 140, 117, 117, 117, 117, 35, 117, 35, 35, 35, 232, 232, (262,132): 33, 232, 232, 232, 35, 35, 35, 35, 117, 117, 245, 139, (262,144): 117, 117, 117, 117, 35, 139, 117, 117, 35, 117, 117, 117, (262,156): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (262,167): 117, 88, 117, 119, 119, 35, 139, 35, 35, 35, 35, 35, 128, (262,180): 33, 116, 146, 49, 146, 49, 49, 146, 49, 108, 50, 49, 186, (262,193): 79, 33, 128, 128, 232, 35, 11, 35, 35, 35, 232, 35, 35, (262,206): 35, 119, 35, 11, 35, 117, 117, 117, 35, 117, 35, 35, 117, (262,219): 117, 35, 117, 55, 66, 33, 119, 117, 117, 117, 35, 119, (262,231): 232, 232, 195, 128, 33, 46, 49, 128, 128, 33, 186, 33, (262,243): 33, 128, 117, 33, 128, 33, 116, 33, 221, 116, 72, 49, (262,255): 234, 234, 49, 49, 63, 234, 234, 183, 176, 50, 183, 64, (262,267): 146, 50, 138, 220, 72, 63, 234, 49, 146, 234, 116, 46, (262,279): 63, 121, 78, 63, 181, 220, 186, 182, 186, 147, 66, 241, (262,291): 66, 63, 104, 180, 108, 27, 104, 156, 125, 49, 14, 116, (262,303): 46, 72, 72, 46, 221, 46, 186, 186, 79, 195, 185, 63, 2, (262,316): 27, 51, 123, 204, 28, 14, 100, 63, 156, 125, 49, 187, (262,328): 253, 63, 18, 220, 220, 49, 18, 63, 182, 105, 181, 181, (262,340): 63, 222, 63, 50, 186, 3, 156, 50, 156, 63, 220, 220, 156, (262,353): 220, 2, 63, 79, 241, 185, 28, 95, 70, 70, 51, 226, 157, (262,366): 8, 70, 63, 252, 100, 123, 14, 123, 108, (263,0): 156, 72, 253, 72, 253, 220, 11, 33, 221, 195, 185, 156, 72, (263,13): 221, 210, 33, 221, 220, 50, 220, 49, 224, 116, 195, 224, (263,25): 195, 80, 156, 49, 156, 182, 156, 186, 46, 49, 50, 63, 195, (263,38): 72, 49, 2, 14, 221, 245, 128, 33, 33, 79, 72, 195, 72, 46, (263,52): 221, 116, 79, 128, 35, 11, 117, 117, 11, 117, 117, 88, 35, (263,65): 35, 245, 245, 245, 140, 245, 245, 140, 245, 245, 140, 245, (263,77): 245, 140, 245, 140, 117, 117, 140, 88, 117, 140, 117, 117, (263,89): 140, 117, 88, 140, 140, 88, 140, 140, 88, 140, 88, 140, (263,101): 88, 140, 117, 88, 117, 140, 117, 117, 117, 117, 140, 117, (263,113): 140, 117, 117, 117, 117, 117, 117, 117, 140, 88, 139, (263,124): 117, 117, 35, 35, 35, 232, 232, 33, 232, 232, 117, 245, (263,136): 35, 117, 35, 117, 245, 35, 117, 117, 117, 117, 35, 117, (263,148): 117, 117, 117, 117, 139, 35, 117, 35, 117, 35, 117, 35, (263,160): 117, 35, 117, 117, 117, 117, 117, 117, 117, 119, 117, (263,171): 140, 117, 232, 185, 204, 35, 245, 128, 33, 116, 49, 234, (263,183): 234, 50, 222, 156, 146, 156, 220, 146, 221, 33, 33, 33, (263,195): 128, 35, 88, 245, 245, 117, 245, 117, 232, 119, 35, 35, (263,207): 33, 117, 35, 117, 35, 11, 117, 117, 35, 88, 35, 119, 117, (263,220): 201, 117, 35, 79, 55, 119, 117, 117, 35, 232, 128, 117, (263,232): 245, 79, 234, 128, 234, 210, 46, 72, 221, 79, 33, 116, (263,244): 33, 210, 128, 33, 116, 221, 221, 116, 220, 50, 234, 49, (263,256): 220, 46, 128, 50, 220, 80, 27, 253, 138, 72, 78, 63, 50, (263,269): 220, 224, 116, 224, 49, 108, 234, 49, 105, 72, 3, 49, (263,281): 187, 3, 3, 183, 49, 3, 221, 33, 185, 33, 117, 33, 66, 35, (263,295): 252, 178, 8, 220, 66, 46, 186, 221, 108, 224, 186, 116, (263,307): 11, 156, 27, 91, 195, 79, 108, 156, 121, 100, 241, 66, (263,319): 66, 185, 195, 156, 185, 128, 232, 195, 63, 104, 104, 72, (263,331): 221, 79, 49, 46, 49, 72, 50, 49, 220, 182, 49, 138, 49, (263,344): 108, 181, 63, 187, 105, 27, 220, 105, 63, 156, 2, 187, (263,356): 27, 93, 100, 62, 93, 28, 246, 51, 153, 157, 28, 252, 28, (263,369): 72, 18, 234, 66, 79, 18, (264,0): 2, 156, 185, 195, 116, 195, 35, 116, 220, 108, 195, 186, (264,12): 79, 128, 116, 11, 221, 46, 72, 50, 181, 91, 183, 137, 105, (264,25): 50, 220, 220, 186, 11, 221, 50, 156, 49, 195, 116, 46, (264,37): 128, 11, 245, 72, 195, 195, 18, 221, 79, 79, 116, 221, (264,49): 221, 221, 79, 221, 33, 128, 128, 128, 35, 11, 117, 117, (264,61): 117, 88, 88, 245, 245, 140, 245, 140, 245, 140, 140, 88, (264,73): 140, 140, 88, 140, 245, 117, 117, 245, 140, 117, 117, 117, (264,85): 140, 117, 117, 140, 117, 88, 140, 88, 88, 140, 88, 117, (264,97): 117, 117, 117, 117, 117, 117, 140, 117, 140, 117, 117, (264,108): 140, 88, 140, 117, 117, 117, 117, 140, 117, 117, 140, (264,119): 117, 117, 117, 35, 117, 119, 35, 119, 119, 35, 35, 35, (264,131): 117, 117, 117, 117, 117, 245, 245, 245, 245, 117, 117, (264,142): 117, 117, 139, 117, 35, 139, 117, 117, 201, 117, 117, (264,153): 117, 117, 117, 139, 117, 117, 117, 35, 35, 35, 117, 35, (264,165): 117, 117, 117, 117, 117, 117, 117, 88, 117, 35, 35, 35, (264,177): 128, 33, 46, 234, 108, 108, 50, 50, 108, 50, 80, 195, 72, (264,190): 186, 221, 79, 33, 35, 117, 117, 117, 117, 35, 33, 33, 33, (264,203): 232, 232, 117, 117, 117, 117, 117, 117, 117, 117, 117, (264,214): 117, 117, 35, 117, 35, 119, 35, 117, 117, 119, 35, 117, (264,226): 117, 117, 117, 35, 35, 128, 128, 128, 128, 46, 72, 146, (264,238): 72, 116, 221, 33, 33, 117, 117, 128, 221, 221, 18, 116, (264,250): 128, 72, 234, 146, 234, 221, 234, 221, 3, 128, 27, 234, (264,262): 234, 72, 49, 128, 146, 63, 88, 63, 11, 72, 116, 72, 50, (264,275): 116, 72, 50, 146, 195, 50, 146, 46, 33, 181, 63, 186, (264,287): 116, 185, 185, 185, 119, 35, 119, 185, 18, 14, 105, 66, (264,299): 186, 128, 186, 156, 186, 128, 11, 186, 221, 2, 104, 180, (264,311): 253, 63, 66, 66, 100, 241, 27, 252, 180, 187, 125, 35, (264,323): 33, 33, 117, 128, 18, 195, 100, 2, 180, 49, 2, 100, 50, (264,336): 234, 105, 116, 50, 138, 91, 183, 64, 50, 180, 105, 63, (264,348): 63, 63, 50, 156, 180, 156, 186, 66, 187, 51, 70, 100, (264,360): 142, 62, 241, 125, 125, 119, 38, 156, 187, 100, 72, 79, (264,372): 72, 18, 72, (265,0): 108, 105, 27, 195, 33, 33, 50, 183, 180, 183, 63, 195, 128, (265,13): 79, 49, 186, 116, 221, 224, 116, 186, 46, 128, 210, 195, (265,25): 221, 116, 49, 146, 46, 128, 116, 186, 186, 195, 146, 195, (265,37): 186, 221, 128, 11, 128, 72, 220, 49, 33, 128, 116, 33, (265,49): 116, 72, 195, 195, 186, 33, 128, 128, 117, 35, 117, 88, (265,61): 117, 88, 245, 140, 245, 245, 140, 245, 140, 88, 88, 140, (265,73): 140, 88, 140, 245, 245, 117, 140, 117, 117, 140, 117, 140, (265,85): 117, 117, 88, 117, 140, 117, 117, 140, 88, 140, 88, 140, (265,97): 117, 140, 117, 140, 117, 140, 117, 117, 117, 117, 140, (265,108): 117, 117, 117, 140, 117, 140, 117, 117, 117, 117, 117, (265,119): 117, 117, 201, 117, 35, 35, 35, 35, 232, 35, 35, 35, 35, (265,132): 117, 139, 245, 117, 245, 245, 117, 117, 117, 117, 117, (265,143): 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, 117, (265,154): 201, 117, 117, 117, 139, 35, 117, 35, 117, 201, 117, 117, (265,166): 117, 117, 140, 117, 117, 117, 117, 117, 117, 117, 88, (265,177): 128, 33, 116, 72, 220, 50, 50, 234, 234, 49, 186, 221, (265,189): 221, 128, 128, 232, 128, 117, 245, 117, 128, 35, 232, 79, (265,201): 33, 232, 35, 117, 117, 35, 35, 117, 117, 117, 117, 117, (265,213): 117, 117, 117, 35, 117, 117, 35, 35, 117, 140, 117, 119, (265,225): 35, 201, 117, 35, 35, 128, 128, 33, 128, 128, 46, 72, 72, (265,238): 72, 116, 33, 33, 128, 128, 128, 33, 128, 245, 72, 220, (265,250): 72, 72, 195, 234, 108, 234, 116, 116, 108, 63, 181, 105, (265,262): 63, 234, 116, 105, 49, 11, 128, 137, 146, 128, 234, 138, (265,274): 108, 108, 234, 50, 72, 72, 128, 33, 46, 128, 46, 128, 46, (265,287): 221, 185, 125, 185, 79, 185, 185, 185, 221, 33, 125, 195, (265,299): 125, 46, 117, 221, 221, 49, 186, 11, 195, 27, 216, 37, (265,311): 89, 70, 51, 2, 28, 187, 89, 226, 14, 185, 128, 33, 66, (265,324): 156, 185, 88, 88, 116, 72, 234, 146, 195, 253, 220, 221, (265,336): 186, 181, 138, 220, 50, 180, 108, 156, 104, 156, 27, 183, (265,348): 63, 104, 104, 27, 27, 63, 156, 241, 100, 66, 100, 241, (265,360): 79, 139, 185, 125, 204, 185, 125, 185, 220, 180, 2, 108, (265,372): 66, 195, 195, (266,0): 220, 63, 183, 63, 91, 183, 253, 100, 221, 11, 195, 220, 49, (266,13): 117, 11, 195, 50, 49, 156, 108, 105, 63, 108, 156, 49, (266,25): 181, 63, 186, 72, 2, 105, 156, 186, 116, 116, 46, 221, (266,37): 116, 116, 186, 33, 11, 11, 221, 116, 33, 11, 128, 128, (266,49): 221, 79, 116, 221, 33, 33, 33, 128, 128, 128, 117, 117, (266,61): 117, 88, 117, 245, 140, 245, 140, 88, 140, 245, 140, 88, (266,73): 88, 140, 245, 245, 140, 117, 117, 245, 140, 117, 117, 117, (266,85): 140, 117, 140, 117, 117, 140, 88, 117, 140, 88, 140, 117, (266,97): 117, 140, 117, 117, 140, 117, 117, 140, 117, 140, 117, (266,108): 117, 140, 117, 117, 117, 201, 117, 117, 117, 117, 117, (266,119): 117, 117, 117, 117, 35, 35, 35, 35, 35, 117, 35, 117, (266,131): 117, 117, 245, 245, 140, 139, 245, 245, 139, 245, 139, (266,142): 35, 35, 117, 117, 35, 117, 35, 117, 35, 117, 35, 117, (266,154): 117, 117, 35, 117, 117, 117, 201, 117, 117, 117, 117, 35, (266,166): 139, 117, 139, 117, 35, 35, 117, 117, 117, 11, 128, 116, (266,178): 49, 234, 234, 50, 78, 181, 138, 50, 49, 72, 116, 33, 79, (266,191): 221, 35, 35, 128, 232, 128, 33, 33, 33, 33, 232, 232, 35, (266,204): 117, 35, 35, 128, 117, 117, 117, 11, 35, 117, 117, 117, (266,216): 33, 117, 140, 117, 119, 119, 35, 117, 119, 119, 117, 35, (266,228): 35, 128, 128, 35, 224, 33, 128, 33, 221, 221, 221, 221, (266,240): 128, 11, 128, 128, 33, 116, 72, 116, 72, 234, 49, 72, 72, (266,253): 72, 108, 108, 46, 50, 72, 46, 116, 108, 50, 181, 234, (266,265): 195, 63, 253, 46, 116, 66, 221, 46, 66, 146, 2, 63, 146, (266,278): 72, 105, 49, 186, 128, 11, 186, 220, 253, 221, 219, 204, (266,290): 125, 18, 185, 18, 185, 33, 35, 11, 195, 128, 186, 128, (266,302): 128, 128, 186, 195, 35, 121, 216, 37, 157, 121, 157, 100, (266,314): 157, 187, 8, 28, 187, 185, 186, 119, 35, 33, 186, 79, 33, (266,327): 33, 128, 128, 18, 49, 79, 72, 46, 72, 11, 49, 100, 186, (266,340): 156, 91, 123, 121, 181, 252, 108, 104, 64, 253, 187, 108, (266,352): 180, 180, 14, 125, 125, 33, 219, 14, 28, 66, 241, 185, (266,364): 18, 185, 195, 185, 35, 14, 2, 63, 66, 66, 234, (267,0): 49, 66, 156, 50, 66, 220, 221, 79, 72, 195, 50, 195, 116, (267,13): 195, 33, 72, 221, 11, 210, 221, 186, 116, 221, 186, 46, (267,25): 18, 49, 156, 66, 221, 33, 185, 186, 46, 128, 128, 11, 128, (267,38): 221, 116, 234, 195, 33, 128, 46, 72, 72, 33, 116, 116, (267,50): 116, 116, 116, 46, 79, 116, 232, 128, 33, 128, 35, 11, (267,62): 117, 117, 245, 88, 140, 88, 245, 140, 88, 140, 88, 140, (267,74): 245, 245, 140, 245, 117, 140, 117, 117, 88, 117, 140, 117, (267,86): 117, 117, 88, 140, 117, 140, 117, 140, 117, 88, 140, 117, (267,98): 117, 140, 88, 117, 117, 140, 117, 88, 117, 117, 140, 117, (267,110): 117, 117, 117, 117, 35, 201, 117, 201, 117, 201, 117, (267,121): 117, 35, 117, 35, 117, 35, 35, 117, 117, 245, 245, 245, (267,133): 245, 117, 245, 245, 245, 245, 117, 245, 35, 245, 245, (267,144): 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, (267,156): 117, 35, 117, 117, 117, 117, 35, 35, 117, 139, 35, 117, (267,168): 117, 117, 117, 117, 117, 11, 117, 35, 33, 116, 49, 234, (267,180): 49, 234, 182, 108, 220, 72, 116, 221, 33, 128, 35, 33, (267,192): 128, 232, 232, 33, 33, 79, 79, 79, 232, 128, 35, 35, 117, (267,205): 117, 35, 128, 117, 117, 117, 117, 117, 117, 117, 117, 35, (267,217): 117, 117, 35, 119, 119, 119, 201, 119, 35, 35, 35, 33, (267,229): 128, 33, 33, 221, 221, 221, 128, 128, 128, 35, 128, 232, (267,241): 128, 128, 128, 79, 72, 49, 234, 146, 116, 72, 146, 72, (267,253): 224, 72, 108, 72, 221, 195, 234, 221, 220, 104, 234, 221, (267,265): 116, 72, 221, 72, 108, 183, 121, 234, 105, 180, 183, 64, (267,277): 220, 156, 220, 116, 49, 220, 146, 221, 146, 97, 104, 66, (267,289): 66, 185, 185, 79, 79, 33, 128, 33, 119, 186, 117, 33, (267,301): 156, 186, 117, 128, 117, 117, 99, 8, 246, 187, 95, 178, (267,313): 157, 24, 241, 185, 180, 14, 186, 125, 185, 79, 221, 18, (267,325): 195, 116, 33, 156, 79, 33, 116, 116, 49, 72, 33, 72, 156, (267,338): 181, 50, 14, 180, 2, 27, 175, 252, 121, 187, 175, 37, 63, (267,351): 180, 252, 123, 252, 195, 185, 185, 185, 79, 125, 185, (267,362): 125, 79, 18, 185, 195, 33, 33, 156, 63, 180, 180, 2, 2, (268,0): 210, 128, 66, 63, 14, 50, 18, 49, 33, 221, 72, 117, 128, (268,13): 195, 128, 210, 72, 221, 221, 116, 186, 46, 221, 116, 186, (268,25): 79, 186, 14, 195, 35, 117, 116, 128, 128, 221, 221, 221, (268,37): 221, 221, 221, 116, 146, 49, 186, 221, 116, 116, 46, 33, (268,49): 221, 116, 195, 234, 195, 186, 33, 33, 33, 33, 35, 117, (268,61): 117, 117, 117, 245, 140, 245, 140, 245, 245, 245, 245, (268,72): 140, 245, 245, 140, 117, 245, 117, 117, 140, 117, 140, (268,83): 117, 117, 140, 117, 140, 117, 140, 88, 117, 140, 88, 117, (268,95): 140, 117, 117, 140, 117, 117, 140, 117, 117, 140, 117, (268,106): 140, 117, 117, 117, 117, 117, 201, 117, 35, 117, 35, 117, (268,118): 117, 35, 117, 117, 117, 117, 117, 35, 117, 35, 117, 245, (268,130): 117, 140, 245, 140, 245, 245, 117, 140, 139, 117, 117, (268,141): 245, 117, 117, 139, 117, 117, 35, 139, 117, 201, 117, 35, (268,153): 117, 117, 35, 117, 117, 35, 117, 117, 35, 117, 117, 35, (268,165): 139, 117, 139, 35, 139, 117, 117, 88, 117, 128, 221, 3, (268,177): 195, 49, 49, 49, 146, 146, 49, 72, 224, 128, 33, 128, (268,189): 117, 88, 117, 117, 117, 245, 232, 232, 232, 232, 35, 35, (268,201): 35, 117, 128, 35, 117, 35, 117, 117, 11, 117, 117, 117, (268,213): 117, 117, 117, 117, 117, 35, 35, 35, 35, 117, 117, 119, (268,225): 35, 35, 232, 33, 33, 79, 116, 116, 116, 79, 33, 35, 35, (268,238): 35, 128, 128, 33, 116, 116, 116, 221, 116, 186, 72, 46, (268,250): 116, 146, 72, 221, 111, 234, 72, 220, 72, 72, 234, 49, (268,262): 50, 63, 234, 220, 27, 146, 108, 2, 50, 220, 2, 176, 108, (268,275): 221, 108, 234, 50, 33, 146, 156, 105, 104, 146, 33, 123, (268,287): 64, 125, 18, 185, 33, 119, 232, 119, 119, 35, 128, 128, (268,299): 117, 128, 63, 125, 128, 119, 147, 185, 27, 192, 142, 100, (268,311): 25, 246, 157, 51, 24, 117, 241, 79, 66, 185, 186, 186, (268,323): 125, 195, 66, 79, 35, 72, 108, 14, 128, 116, 253, 253, (268,335): 128, 18, 66, 108, 2, 14, 252, 187, 70, 123, 2, 99, 8, (268,348): 194, 175, 249, 93, 14, 187, 63, 185, 125, 241, 241, 241, (268,360): 185, 79, 195, 18, 156, 49, 50, 195, 79, 79, 195, 156, (268,372): 100, 220, 14, (269,0): 128, 11, 116, 35, 49, 63, 104, 183, 116, 117, 33, 72, 156, (269,13): 156, 116, 128, 11, 11, 128, 46, 116, 221, 33, 221, 185, (269,25): 18, 79, 88, 232, 18, 186, 35, 128, 33, 221, 79, 46, 116, (269,38): 72, 146, 186, 116, 116, 116, 221, 11, 11, 128, 128, 128, (269,50): 221, 18, 195, 195, 195, 186, 116, 33, 33, 11, 117, 117, (269,62): 117, 117, 245, 245, 245, 245, 245, 140, 245, 245, 117, (269,73): 140, 245, 117, 245, 140, 117, 140, 117, 117, 117, 140, (269,84): 117, 88, 117, 117, 140, 88, 88, 140, 117, 140, 88, 117, (269,96): 140, 117, 117, 140, 117, 117, 140, 117, 88, 117, 117, 117, (269,108): 117, 117, 201, 117, 117, 117, 117, 117, 117, 117, 117, (269,119): 117, 117, 117, 117, 139, 117, 117, 117, 139, 140, 117, (269,130): 245, 117, 139, 245, 117, 140, 245, 117, 117, 245, 245, (269,141): 117, 35, 139, 117, 117, 35, 117, 117, 117, 117, 117, 117, (269,153): 139, 35, 117, 117, 139, 117, 35, 117, 117, 117, 139, 117, (269,165): 139, 35, 35, 201, 117, 117, 117, 117, 33, 221, 3, 156, (269,177): 49, 49, 49, 80, 49, 3, 3, 116, 221, 224, 33, 33, 33, 128, (269,191): 232, 232, 232, 35, 35, 35, 232, 35, 117, 88, 11, 35, 117, (269,204): 128, 35, 11, 117, 117, 117, 117, 117, 117, 117, 117, 117, (269,216): 35, 55, 125, 55, 35, 140, 117, 35, 35, 35, 35, 128, 79, (269,229): 186, 186, 72, 72, 116, 79, 33, 35, 245, 35, 35, 232, 221, (269,242): 195, 49, 195, 221, 221, 46, 79, 46, 72, 46, 116, 146, (269,254): 116, 46, 108, 50, 72, 63, 210, 128, 234, 234, 176, 88, (269,266): 63, 234, 72, 195, 49, 220, 49, 195, 108, 50, 253, 234, (269,278): 105, 181, 27, 49, 195, 253, 105, 128, 46, 221, 33, 33, (269,290): 119, 79, 33, 35, 35, 35, 88, 117, 88, 33, 35, 185, 117, (269,303): 119, 35, 117, 194, 24, 24, 24, 219, 71, 152, 66, 55, 0, (269,316): 185, 117, 79, 125, 186, 79, 33, 35, 35, 33, 221, 33, 147, (269,329): 156, 108, 72, 195, 180, 91, 195, 220, 2, 24, 187, 66, (269,341): 253, 180, 180, 241, 180, 185, 93, 14, 35, 121, 180, 100, (269,353): 241, 125, 185, 185, 66, 66, 28, 187, 28, 180, 108, 108, (269,365): 50, 63, 50, 72, 72, 14, 28, 63, 100, 220, (270,0): 210, 210, 79, 88, 11, 11, 128, 221, 49, 14, 221, 210, 128, (270,13): 195, 49, 117, 221, 186, 186, 72, 195, 195, 195, 79, 186, (270,25): 35, 33, 66, 14, 18, 232, 128, 33, 221, 221, 221, 221, 221, (270,38): 72, 146, 220, 3, 221, 46, 186, 186, 116, 46, 72, 72, 72, (270,51): 116, 116, 72, 234, 100, 195, 116, 128, 35, 35, 128, 35, (270,63): 117, 245, 140, 117, 117, 139, 117, 35, 139, 245, 245, 117, (270,75): 140, 245, 139, 245, 117, 245, 140, 117, 117, 140, 117, (270,86): 140, 117, 140, 88, 140, 88, 117, 117, 140, 117, 117, 88, (270,98): 117, 117, 140, 117, 117, 140, 117, 140, 117, 117, 117, (270,109): 117, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, (270,120): 117, 139, 117, 117, 117, 140, 117, 117, 117, 245, 117, (270,131): 245, 245, 117, 245, 139, 117, 245, 245, 117, 117, 117, (270,142): 117, 35, 117, 35, 117, 117, 35, 117, 35, 117, 117, 117, (270,154): 117, 117, 201, 117, 117, 117, 117, 117, 117, 117, 35, 35, (270,166): 139, 35, 139, 117, 35, 117, 33, 46, 195, 49, 156, 3, 116, (270,179): 116, 72, 116, 116, 46, 224, 224, 128, 11, 35, 33, 119, (270,191): 117, 33, 232, 35, 35, 128, 232, 117, 117, 117, 117, 117, (270,203): 117, 117, 117, 117, 11, 117, 117, 117, 11, 117, 117, 117, (270,215): 117, 128, 185, 125, 221, 119, 117, 201, 35, 119, 35, 232, (270,227): 232, 79, 79, 72, 18, 79, 33, 33, 35, 35, 35, 245, 245, (270,240): 245, 128, 116, 66, 146, 72, 186, 72, 116, 221, 72, 224, (270,252): 116, 50, 72, 46, 195, 105, 195, 181, 234, 33, 245, 46, (270,264): 72, 221, 72, 210, 63, 91, 195, 128, 63, 221, 72, 14, 221, (270,277): 128, 100, 97, 97, 2, 63, 91, 175, 3, 35, 221, 119, 117, (270,290): 117, 119, 33, 35, 35, 35, 88, 35, 117, 33, 33, 128, 35, (270,303): 88, 117, 140, 55, 71, 71, 62, 103, 55, 55, 219, 71, 117, (270,316): 147, 185, 35, 128, 35, 35, 33, 128, 128, 35, 117, 210, (270,328): 128, 33, 221, 49, 180, 50, 180, 72, 234, 63, 2, 175, 28, (270,341): 100, 66, 33, 185, 185, 35, 125, 14, 125, 71, 14, 66, 33, (270,354): 125, 241, 66, 24, 187, 70, 63, 14, 2, 181, 63, 49, 80, (270,367): 72, 72, 66, 156, 234, 66, 195, 14, (271,0): 108, 221, 44, 11, 44, 117, 210, 195, 186, 221, 210, 79, (271,12): 195, 33, 18, 186, 128, 33, 128, 128, 33, 195, 195, 33, 33, (271,25): 128, 232, 33, 128, 245, 245, 117, 117, 128, 221, 116, 221, (271,37): 128, 128, 128, 128, 186, 195, 46, 116, 49, 49, 186, 221, (271,49): 116, 116, 116, 128, 128, 116, 66, 156, 18, 33, 128, 128, (271,61): 33, 128, 117, 117, 117, 139, 117, 117, 35, 35, 35, 117, (271,73): 245, 117, 245, 117, 245, 245, 117, 140, 117, 117, 140, (271,84): 117, 117, 117, 117, 140, 88, 140, 117, 140, 88, 117, 140, (271,96): 117, 140, 117, 140, 117, 117, 88, 117, 140, 117, 88, 139, (271,108): 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, 117, 140, (271,120): 117, 117, 117, 140, 117, 117, 245, 117, 245, 117, 117, (271,131): 117, 139, 245, 35, 117, 245, 245, 117, 245, 35, 139, 117, (271,143): 117, 117, 117, 139, 35, 117, 117, 117, 117, 35, 117, 35, (271,155): 117, 117, 117, 117, 117, 117, 117, 139, 35, 117, 139, 35, (271,167): 35, 117, 117, 119, 128, 185, 186, 49, 156, 156, 72, 116, (271,179): 72, 3, 3, 72, 72, 46, 79, 128, 35, 128, 221, 33, 35, 232, (271,193): 232, 35, 35, 245, 117, 245, 245, 117, 117, 117, 88, 11, (271,205): 88, 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, 140, (271,217): 119, 79, 119, 117, 117, 117, 245, 35, 35, 35, 128, 33, (271,229): 79, 79, 186, 221, 33, 128, 128, 232, 232, 119, 232, 117, (271,241): 11, 128, 116, 18, 186, 72, 195, 49, 46, 116, 116, 49, 50, (271,254): 49, 234, 72, 49, 221, 116, 220, 128, 72, 33, 72, 195, 50, (271,267): 221, 72, 63, 183, 234, 72, 79, 63, 123, 220, 253, 234, (271,279): 49, 63, 49, 186, 33, 63, 195, 11, 117, 186, 128, 88, 117, (271,292): 35, 128, 117, 117, 88, 33, 88, 147, 185, 125, 14, 117, (271,304): 119, 139, 0, 125, 232, 145, 219, 236, 119, 140, 119, 140, (271,316): 119, 147, 88, 125, 221, 79, 185, 79, 128, 35, 128, 35, (271,328): 128, 79, 234, 14, 220, 72, 63, 66, 175, 51, 187, 70, 180, (271,341): 79, 66, 185, 33, 55, 33, 117, 55, 33, 79, 241, 241, 66, (271,354): 14, 14, 125, 63, 100, 100, 99, 175, 27, 105, 138, 72, 80, (271,367): 50, 63, 2, 63, 66, 72, 234, 14, (272,0): 186, 146, 35, 128, 44, 147, 128, 88, 88, 33, 33, 11, 66, (272,13): 221, 232, 186, 186, 221, 221, 128, 35, 128, 33, 33, 79, (272,25): 185, 72, 79, 79, 186, 116, 46, 221, 33, 128, 128, 33, 221, (272,38): 128, 88, 224, 128, 128, 3, 186, 116, 186, 49, 46, 221, (272,50): 221, 79, 116, 221, 33, 128, 195, 72, 79, 33, 79, 33, 128, (272,63): 117, 117, 117, 128, 35, 35, 11, 245, 88, 88, 245, 117, (272,75): 245, 88, 88, 88, 245, 117, 140, 117, 88, 117, 140, 117, (272,87): 140, 117, 117, 117, 140, 117, 117, 140, 117, 117, 117, (272,98): 117, 88, 117, 140, 117, 117, 117, 117, 117, 88, 117, 117, (272,110): 117, 117, 140, 117, 140, 117, 117, 117, 35, 201, 35, 117, (272,122): 117, 117, 117, 140, 117, 140, 117, 140, 139, 245, 117, (272,133): 117, 35, 139, 35, 139, 35, 139, 117, 35, 35, 35, 117, (272,145): 117, 117, 117, 139, 117, 117, 117, 117, 117, 117, 35, (272,156): 117, 35, 117, 201, 117, 117, 117, 117, 117, 35, 35, 35, (272,168): 117, 35, 33, 18, 156, 220, 156, 186, 195, 116, 33, 221, (272,180): 79, 128, 33, 224, 128, 128, 221, 128, 221, 186, 221, 128, (272,192): 35, 232, 35, 35, 35, 245, 117, 117, 117, 117, 117, 35, (272,204): 201, 35, 117, 117, 128, 88, 119, 117, 185, 201, 119, 117, (272,216): 201, 117, 117, 140, 117, 117, 35, 33, 35, 232, 232, 128, (272,228): 119, 33, 221, 79, 195, 128, 232, 33, 117, 245, 232, 79, (272,240): 232, 35, 11, 18, 210, 128, 195, 72, 220, 78, 50, 116, 3, (272,253): 80, 182, 50, 234, 234, 195, 146, 128, 108, 234, 11, 128, (272,265): 116, 72, 49, 128, 88, 46, 116, 221, 195, 234, 64, 180, (272,277): 104, 116, 116, 180, 156, 156, 11, 33, 128, 11, 128, 117, (272,289): 117, 35, 128, 128, 35, 117, 88, 117, 33, 147, 117, 117, (272,301): 33, 33, 117, 117, 140, 140, 117, 119, 79, 55, 119, 119, (272,313): 139, 139, 117, 119, 140, 35, 35, 79, 119, 232, 117, 117, (272,325): 232, 117, 117, 117, 234, 187, 108, 195, 116, 220, 116, (272,336): 241, 66, 33, 185, 24, 100, 63, 219, 241, 156, 153, 195, (272,348): 100, 28, 14, 156, 14, 14, 219, 125, 186, 125, 241, 195, (272,360): 63, 220, 14, 14, 49, 49, 108, 253, 253, 63, 50, 49, 156, (272,373): 220, 220, (273,0): 11, 46, 72, 146, 128, 221, 117, 11, 33, 116, 128, 128, 185, (273,13): 33, 88, 221, 185, 221, 128, 35, 128, 35, 128, 33, 35, 33, (273,26): 128, 128, 128, 11, 128, 128, 128, 128, 128, 117, 128, 128, (273,38): 128, 33, 128, 224, 221, 128, 221, 116, 116, 46, 116, 116, (273,50): 46, 116, 116, 72, 72, 72, 116, 221, 221, 33, 221, 221, 33, (273,63): 33, 128, 128, 117, 245, 11, 245, 245, 117, 245, 117, 117, (273,75): 117, 245, 245, 88, 117, 88, 117, 140, 117, 140, 117, 117, (273,87): 88, 117, 140, 117, 117, 117, 140, 117, 117, 117, 140, 117, (273,99): 140, 117, 117, 117, 140, 117, 140, 117, 140, 117, 140, (273,110): 117, 140, 117, 117, 117, 139, 117, 117, 117, 117, 35, 35, (273,122): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (273,133): 35, 117, 117, 117, 117, 35, 117, 35, 35, 117, 139, 117, (273,145): 117, 117, 117, 117, 117, 117, 117, 201, 117, 139, 117, (273,156): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (273,167): 35, 33, 185, 72, 195, 66, 156, 66, 18, 18, 79, 33, 33, (273,180): 33, 128, 128, 35, 88, 35, 11, 128, 46, 195, 195, 221, 35, (273,193): 35, 35, 117, 245, 117, 117, 35, 117, 35, 117, 117, 35, (273,205): 117, 117, 117, 35, 140, 117, 140, 55, 140, 117, 139, 140, (273,217): 35, 55, 55, 35, 117, 117, 117, 128, 128, 119, 33, 33, 33, (273,230): 33, 79, 185, 35, 117, 128, 245, 245, 245, 35, 63, 210, (273,242): 128, 18, 183, 234, 220, 11, 46, 182, 46, 116, 12, 181, (273,254): 111, 3, 234, 105, 253, 234, 46, 46, 72, 234, 72, 64, 128, (273,267): 210, 116, 180, 49, 234, 180, 11, 18, 234, 195, 116, 128, (273,279): 156, 27, 108, 221, 156, 210, 79, 116, 117, 128, 35, 11, (273,291): 35, 117, 117, 128, 33, 88, 210, 117, 147, 88, 11, 117, (273,303): 117, 117, 88, 140, 88, 139, 117, 35, 139, 232, 140, 140, (273,315): 140, 245, 139, 117, 119, 140, 245, 35, 33, 35, 245, 117, (273,327): 128, 116, 14, 79, 104, 221, 220, 79, 33, 79, 119, 140, (273,339): 185, 51, 180, 100, 185, 24, 187, 27, 2, 104, 104, 51, (273,351): 187, 180, 180, 14, 66, 125, 186, 195, 185, 14, 156, 156, (273,363): 156, 66, 195, 220, 187, 78, 108, 50, 50, 50, 108, 108, (274,0): 116, 128, 186, 195, 46, 50, 128, 11, 33, 33, 88, 33, 88, (274,13): 33, 35, 79, 116, 33, 128, 11, 117, 35, 35, 35, 35, 128, (274,26): 35, 117, 88, 11, 11, 11, 33, 128, 35, 11, 128, 33, 72, 49, (274,40): 116, 186, 116, 224, 221, 46, 46, 128, 221, 46, 116, 116, (274,52): 72, 72, 49, 234, 66, 72, 186, 79, 116, 79, 33, 128, 128, (274,65): 232, 128, 117, 35, 117, 11, 35, 11, 117, 35, 11, 117, 88, (274,78): 117, 117, 117, 88, 117, 117, 117, 140, 117, 140, 117, 117, (274,90): 140, 117, 140, 117, 117, 140, 117, 117, 117, 117, 117, (274,101): 140, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (274,112): 88, 117, 117, 117, 117, 35, 117, 117, 117, 117, 117, 139, (274,124): 88, 117, 139, 117, 117, 245, 117, 117, 117, 117, 35, 117, (274,136): 35, 35, 117, 35, 117, 117, 35, 117, 117, 35, 139, 117, (274,148): 117, 117, 117, 117, 117, 117, 117, 117, 201, 117, 35, (274,159): 117, 117, 117, 117, 117, 117, 35, 35, 35, 116, 72, 195, (274,171): 195, 18, 116, 79, 221, 79, 33, 232, 128, 128, 245, 245, (274,183): 245, 11, 128, 221, 33, 186, 146, 186, 221, 35, 35, 35, (274,195): 139, 117, 139, 117, 117, 117, 35, 35, 35, 117, 35, 117, (274,207): 117, 119, 117, 119, 117, 119, 140, 139, 35, 139, 119, (274,218): 185, 185, 33, 117, 88, 11, 35, 119, 128, 119, 128, 35, (274,230): 128, 33, 33, 117, 117, 33, 128, 35, 128, 35, 79, 33, 66, (274,243): 128, 79, 116, 220, 63, 146, 50, 138, 49, 116, 34, 12, 46, (274,256): 11, 46, 105, 46, 123, 116, 80, 116, 11, 49, 49, 116, 224, (274,269): 44, 116, 128, 146, 72, 33, 104, 220, 234, 33, 11, 79, 72, (274,282): 33, 195, 50, 128, 221, 186, 33, 128, 33, 35, 11, 117, (274,294): 128, 185, 128, 88, 79, 88, 35, 35, 117, 128, 117, 117, (274,306): 117, 140, 88, 140, 245, 117, 35, 35, 245, 245, 140, 245, (274,318): 140, 245, 232, 35, 128, 232, 11, 210, 33, 195, 234, 49, (274,330): 79, 156, 221, 116, 46, 11, 33, 38, 185, 33, 187, 70, 226, (274,343): 180, 252, 187, 27, 153, 156, 14, 108, 66, 100, 180, 63, (274,355): 63, 100, 156, 100, 220, 66, 195, 18, 66, 156, 156, 220, (274,367): 108, 50, 50, 50, 108, 108, 138, 63, (275,0): 186, 11, 11, 46, 221, 49, 33, 128, 33, 128, 88, 128, 147, (275,13): 128, 33, 79, 221, 35, 11, 117, 117, 35, 35, 88, 35, 232, (275,26): 128, 117, 11, 128, 128, 33, 11, 35, 128, 128, 33, 79, 49, (275,39): 220, 14, 186, 221, 186, 116, 128, 128, 224, 33, 221, 116, (275,51): 116, 72, 72, 66, 234, 234, 66, 72, 72, 79, 221, 128, 232, (275,64): 11, 117, 33, 33, 33, 128, 117, 245, 117, 35, 128, 35, 117, (275,77): 117, 35, 117, 117, 117, 140, 117, 140, 117, 117, 117, 140, (275,89): 117, 117, 88, 117, 117, 88, 117, 140, 117, 117, 140, 117, (275,101): 117, 140, 117, 117, 140, 117, 140, 117, 140, 117, 140, (275,112): 117, 117, 140, 117, 117, 139, 117, 35, 117, 117, 117, (275,123): 117, 117, 117, 117, 117, 139, 117, 117, 140, 35, 117, (275,134): 117, 117, 35, 117, 35, 117, 35, 35, 117, 35, 117, 117, (275,146): 117, 117, 117, 117, 139, 117, 35, 117, 35, 117, 117, 117, (275,158): 117, 117, 117, 117, 117, 117, 232, 128, 33, 33, 185, 18, (275,170): 72, 18, 221, 128, 33, 128, 128, 232, 245, 35, 35, 245, (275,182): 245, 11, 79, 186, 116, 186, 116, 186, 116, 33, 35, 35, (275,194): 117, 117, 117, 117, 117, 117, 139, 117, 35, 35, 35, 117, (275,206): 201, 117, 35, 35, 119, 119, 119, 140, 117, 201, 119, 120, (275,218): 33, 79, 35, 35, 35, 128, 35, 35, 128, 35, 117, 35, 117, (275,231): 117, 128, 88, 128, 33, 128, 128, 33, 128, 79, 116, 221, (275,243): 128, 234, 253, 234, 116, 50, 78, 181, 138, 222, 80, 3, (275,255): 46, 3, 72, 128, 46, 234, 182, 108, 91, 50, 182, 182, 46, (275,268): 181, 116, 80, 50, 33, 221, 49, 108, 79, 121, 220, 186, (275,280): 88, 128, 221, 195, 253, 221, 117, 195, 128, 119, 128, 33, (275,292): 35, 117, 117, 119, 117, 147, 33, 147, 88, 185, 210, 140, (275,304): 88, 140, 117, 88, 140, 140, 245, 245, 88, 139, 35, 33, (275,316): 245, 35, 245, 35, 88, 11, 221, 116, 72, 49, 234, 156, 14, (275,329): 181, 183, 182, 63, 50, 123, 183, 51, 241, 185, 79, 241, (275,341): 125, 63, 157, 8, 104, 27, 100, 72, 125, 156, 185, 14, (275,353): 180, 180, 187, 2, 63, 2, 63, 14, 186, 116, 156, 180, 187, (275,366): 63, 156, 49, 220, 138, 180, 78, 180, 63, (276,0): 72, 220, 156, 63, 49, 49, 50, 50, 156, 79, 186, 33, 88, 88, (276,14): 221, 35, 128, 128, 88, 88, 35, 128, 35, 117, 117, 117, (276,26): 245, 117, 88, 117, 128, 128, 117, 128, 128, 33, 128, 79, (276,38): 72, 66, 49, 116, 33, 116, 116, 128, 128, 221, 224, 221, (276,50): 72, 72, 72, 116, 72, 72, 116, 79, 79, 33, 33, 33, 33, 33, (276,64): 117, 117, 33, 33, 33, 33, 117, 11, 35, 128, 128, 35, 11, (276,77): 35, 128, 35, 117, 117, 117, 117, 117, 117, 140, 88, 117, (276,89): 140, 117, 140, 117, 140, 117, 117, 88, 117, 140, 117, 117, (276,101): 88, 117, 117, 140, 117, 117, 117, 117, 117, 117, 117, (276,112): 117, 117, 35, 117, 117, 117, 117, 140, 117, 139, 88, 117, (276,124): 139, 117, 35, 117, 117, 117, 117, 35, 117, 140, 35, 117, (276,136): 117, 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, (276,147): 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, 35, 117, (276,159): 35, 117, 35, 35, 232, 33, 33, 79, 79, 72, 186, 79, 79, (276,172): 79, 33, 33, 33, 232, 245, 245, 245, 245, 245, 128, 79, (276,184): 116, 72, 195, 72, 79, 221, 221, 33, 35, 117, 35, 117, (276,196): 117, 117, 35, 117, 117, 35, 119, 35, 117, 117, 117, 117, (276,208): 88, 35, 119, 185, 201, 117, 140, 140, 119, 139, 117, 117, (276,220): 117, 35, 128, 35, 117, 35, 35, 117, 117, 88, 117, 117, (276,232): 128, 35, 128, 33, 88, 11, 128, 33, 221, 33, 116, 116, (276,244): 146, 72, 234, 176, 63, 234, 80, 50, 124, 181, 182, 3, 80, (276,257): 63, 176, 64, 72, 46, 11, 116, 72, 224, 46, 11, 116, 183, (276,270): 78, 221, 195, 156, 49, 72, 128, 195, 187, 116, 49, 88, (276,282): 128, 72, 185, 253, 220, 156, 119, 35, 35, 119, 128, 117, (276,294): 117, 210, 117, 88, 117, 88, 88, 180, 117, 88, 117, 117, (276,306): 140, 117, 88, 117, 88, 140, 147, 245, 128, 79, 245, 33, (276,318): 221, 72, 49, 49, 3, 3, 49, 63, 78, 50, 49, 183, 64, 183, (276,332): 138, 108, 91, 27, 27, 14, 66, 18, 204, 117, 66, 175, 37, (276,345): 175, 70, 2, 100, 63, 180, 195, 187, 252, 183, 175, 252, (276,357): 2, 2, 63, 220, 156, 49, 108, 253, 253, 63, 156, 220, 108, (276,370): 181, 105, 253, 105, 181, (277,0): 46, 195, 224, 156, 46, 116, 220, 14, 220, 146, 14, 116, (277,12): 221, 245, 33, 11, 117, 11, 88, 117, 35, 232, 35, 35, 88, (277,25): 140, 140, 117, 117, 88, 117, 128, 35, 33, 79, 79, 33, 33, (277,38): 79, 79, 116, 79, 46, 33, 221, 3, 72, 46, 79, 116, 72, 72, (277,52): 72, 116, 116, 79, 128, 33, 128, 33, 128, 128, 128, 128, (277,64): 128, 128, 128, 128, 128, 232, 128, 128, 117, 232, 128, (277,75): 128, 35, 11, 35, 35, 117, 117, 35, 117, 117, 140, 117, (277,87): 117, 140, 117, 117, 117, 117, 117, 140, 117, 140, 117, (277,98): 117, 88, 117, 117, 140, 88, 117, 88, 117, 88, 140, 117, (277,110): 140, 88, 139, 35, 117, 117, 117, 140, 117, 117, 117, 117, (277,122): 117, 117, 117, 117, 117, 35, 117, 117, 35, 117, 117, 117, (277,134): 117, 140, 117, 35, 117, 117, 139, 117, 117, 117, 117, (277,145): 117, 117, 117, 139, 117, 117, 139, 35, 117, 117, 139, 35, (277,157): 117, 117, 35, 117, 117, 35, 35, 33, 33, 79, 79, 79, 79, (277,170): 33, 33, 221, 33, 128, 128, 128, 245, 245, 11, 245, 128, (277,182): 79, 195, 195, 195, 195, 186, 33, 128, 117, 128, 117, 117, (277,194): 117, 245, 139, 245, 139, 35, 117, 119, 35, 119, 35, 117, (277,206): 117, 35, 140, 119, 232, 185, 119, 119, 140, 139, 117, (277,217): 117, 140, 117, 35, 128, 35, 117, 128, 128, 35, 128, 117, (277,229): 117, 35, 128, 117, 11, 128, 33, 128, 33, 72, 195, 224, (277,241): 116, 11, 234, 72, 146, 116, 46, 91, 146, 3, 146, 46, 34, (277,254): 90, 182, 72, 46, 222, 234, 80, 116, 78, 182, 49, 224, (277,266): 176, 181, 46, 137, 97, 146, 72, 210, 100, 27, 195, 156, (277,278): 116, 2, 221, 88, 195, 210, 210, 187, 108, 156, 35, 117, (277,290): 210, 88, 35, 117, 117, 117, 117, 119, 140, 79, 119, 104, (277,302): 125, 119, 117, 117, 88, 117, 35, 117, 117, 88, 33, 116, (277,314): 245, 221, 210, 46, 46, 49, 111, 186, 80, 108, 176, 90, (277,326): 223, 90, 111, 63, 78, 183, 108, 3, 221, 116, 18, 204, 66, (277,339): 232, 185, 204, 66, 156, 121, 175, 8, 253, 2, 2, 180, 156, (277,352): 195, 14, 14, 63, 63, 156, 14, 66, 220, 108, 2, 2, 181, (277,365): 63, 108, 108, 108, 181, 253, 91, 91, 253, 253, (278,0): 195, 46, 128, 146, 195, 156, 156, 195, 186, 72, 195, 186, (278,12): 221, 128, 221, 128, 88, 117, 117, 117, 117, 117, 117, 139, (278,24): 245, 245, 245, 117, 35, 117, 117, 128, 232, 128, 79, 79, (278,36): 221, 33, 221, 33, 221, 79, 186, 221, 116, 72, 72, 116, 72, (278,49): 116, 72, 72, 72, 116, 79, 221, 33, 33, 33, 128, 232, 35, (278,62): 35, 35, 128, 232, 35, 35, 35, 128, 35, 33, 35, 128, 232, (278,75): 35, 128, 35, 35, 128, 117, 35, 117, 117, 117, 117, 140, (278,87): 117, 117, 140, 117, 140, 117, 140, 117, 117, 117, 117, (278,98): 140, 117, 140, 117, 117, 117, 140, 117, 117, 117, 117, (278,109): 117, 117, 117, 117, 117, 117, 139, 117, 117, 117, 140, (278,120): 117, 117, 140, 117, 117, 117, 35, 117, 35, 117, 139, 117, (278,132): 117, 139, 117, 117, 117, 117, 117, 117, 117, 117, 117, (278,143): 117, 117, 139, 117, 117, 117, 117, 117, 117, 117, 117, (278,154): 117, 117, 117, 117, 139, 117, 35, 117, 35, 35, 232, 232, (278,166): 33, 33, 79, 128, 35, 128, 33, 128, 35, 35, 128, 245, 245, (278,179): 35, 128, 33, 186, 66, 195, 195, 185, 221, 128, 88, 11, (278,191): 88, 117, 117, 117, 139, 88, 117, 117, 117, 117, 119, 119, (278,203): 119, 117, 140, 117, 201, 88, 119, 119, 185, 55, 232, 117, (278,215): 35, 35, 119, 35, 119, 128, 119, 128, 117, 35, 35, 35, (278,227): 117, 11, 35, 128, 33, 128, 117, 128, 79, 116, 72, 234, (278,239): 234, 2, 91, 221, 50, 11, 3, 182, 116, 138, 78, 182, 80, (278,252): 182, 116, 111, 182, 182, 50, 46, 3, 221, 78, 234, 3, 49, (278,265): 146, 146, 116, 80, 3, 181, 234, 137, 108, 234, 37, 49, (278,277): 116, 35, 156, 116, 186, 104, 221, 128, 128, 117, 221, (278,288): 119, 117, 140, 88, 117, 117, 35, 35, 140, 117, 147, 185, (278,300): 119, 14, 119, 117, 117, 117, 117, 35, 35, 33, 221, 116, (278,312): 156, 234, 111, 116, 11, 49, 116, 3, 50, 176, 141, 37, (278,324): 141, 181, 156, 49, 195, 108, 253, 104, 121, 181, 2, 108, (278,336): 252, 14, 108, 180, 187, 156, 185, 63, 157, 123, 121, 253, (278,348): 180, 108, 108, 220, 156, 100, 220, 180, 2, 63, 2, 181, (278,360): 108, 180, 180, 63, 108, 50, 63, 78, 63, 105, 253, 91, (278,372): 183, 183, 183, (279,0): 116, 128, 49, 63, 50, 63, 46, 221, 11, 221, 221, 72, 128, (279,13): 221, 128, 128, 88, 11, 117, 117, 245, 245, 245, 245, 245, (279,25): 139, 140, 35, 35, 88, 88, 35, 88, 245, 128, 128, 79, 33, (279,38): 33, 33, 79, 33, 224, 18, 116, 33, 33, 116, 72, 116, 79, (279,51): 116, 18, 18, 116, 79, 33, 33, 33, 128, 128, 128, 117, 128, (279,64): 117, 35, 128, 128, 128, 128, 128, 117, 128, 35, 128, 128, (279,76): 117, 11, 128, 35, 35, 35, 117, 201, 140, 117, 117, 88, (279,88): 140, 117, 117, 88, 117, 117, 140, 117, 140, 117, 117, 117, (279,100): 117, 117, 140, 117, 117, 117, 140, 117, 140, 117, 140, (279,111): 117, 117, 201, 117, 117, 117, 140, 117, 117, 117, 117, (279,122): 117, 140, 117, 139, 117, 117, 35, 117, 117, 117, 117, (279,133): 117, 117, 245, 117, 139, 117, 35, 117, 117, 117, 35, 117, (279,145): 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, (279,157): 117, 117, 117, 117, 35, 117, 117, 117, 117, 117, 35, 79, (279,169): 128, 128, 128, 128, 35, 245, 11, 35, 117, 35, 128, 33, (279,181): 33, 18, 66, 185, 33, 128, 35, 119, 128, 117, 117, 117, (279,193): 139, 117, 117, 117, 117, 117, 35, 117, 232, 232, 119, (279,204): 117, 117, 117, 35, 140, 35, 140, 185, 35, 232, 140, 35, (279,216): 119, 33, 119, 117, 117, 117, 117, 35, 128, 35, 117, 88, (279,228): 117, 117, 128, 33, 116, 33, 221, 221, 116, 195, 146, 116, (279,240): 116, 72, 49, 176, 105, 116, 90, 183, 116, 222, 176, 78, (279,252): 146, 80, 50, 3, 111, 78, 138, 50, 182, 181, 182, 50, 72, (279,265): 138, 49, 141, 182, 234, 176, 50, 104, 128, 72, 187, 220, (279,277): 63, 63, 63, 2, 195, 187, 64, 221, 117, 221, 116, 35, 117, (279,290): 117, 119, 35, 117, 117, 35, 117, 232, 88, 125, 185, 33, (279,302): 117, 117, 140, 117, 35, 232, 128, 116, 66, 220, 156, 156, (279,314): 221, 49, 3, 138, 49, 146, 12, 64, 97, 216, 253, 221, 221, (279,327): 50, 253, 70, 64, 183, 99, 123, 157, 27, 175, 28, 2, 28, (279,340): 180, 156, 66, 183, 253, 27, 123, 108, 156, 195, 156, 63, (279,352): 108, 108, 156, 100, 108, 156, 108, 108, 180, 108, 50, (279,363): 182, 108, 180, 181, 105, 63, 181, 105, 104, 183, 183, 27, (280,0): 50, 49, 50, 195, 72, 116, 146, 128, 221, 63, 253, 46, 195, (280,13): 46, 11, 128, 186, 147, 35, 117, 88, 140, 232, 140, 139, (280,25): 35, 35, 139, 117, 245, 139, 35, 128, 35, 35, 35, 33, 79, (280,38): 116, 186, 33, 33, 128, 33, 46, 79, 46, 33, 221, 221, 116, (280,51): 116, 221, 221, 79, 116, 33, 33, 128, 35, 128, 232, 128, (280,63): 35, 11, 35, 128, 33, 33, 33, 35, 128, 33, 128, 33, 128, (280,76): 232, 35, 35, 117, 117, 117, 117, 117, 117, 117, 140, 117, (280,88): 117, 117, 140, 117, 140, 117, 117, 117, 117, 140, 117, (280,99): 140, 117, 117, 117, 117, 140, 117, 117, 117, 117, 35, 117, (280,111): 117, 117, 117, 117, 117, 117, 117, 117, 139, 117, 117, (280,122): 117, 117, 117, 117, 117, 117, 139, 117, 117, 117, 139, (280,133): 117, 117, 139, 117, 117, 117, 117, 117, 117, 139, 117, (280,144): 140, 117, 140, 117, 117, 201, 117, 201, 117, 35, 139, (280,155): 117, 117, 35, 117, 35, 35, 117, 117, 117, 128, 232, 33, (280,167): 128, 232, 35, 35, 245, 128, 128, 128, 128, 128, 128, 33, (280,179): 33, 33, 79, 33, 33, 33, 35, 117, 11, 88, 88, 117, 88, (280,192): 117, 117, 117, 140, 117, 117, 139, 117, 117, 185, 185, (280,203): 33, 117, 140, 35, 117, 119, 185, 140, 245, 117, 245, 119, (280,215): 245, 35, 117, 117, 117, 128, 33, 33, 35, 128, 35, 35, (280,227): 117, 88, 117, 33, 117, 186, 156, 220, 156, 128, 221, 46, (280,239): 195, 182, 50, 146, 49, 121, 105, 146, 78, 182, 146, 3, (280,251): 138, 182, 80, 80, 181, 11, 116, 46, 72, 224, 128, 49, 3, (280,264): 50, 177, 176, 50, 220, 234, 234, 91, 108, 220, 33, 116, (280,276): 108, 72, 128, 221, 108, 195, 108, 63, 116, 11, 128, 185, (280,288): 117, 88, 35, 88, 35, 147, 119, 33, 79, 245, 35, 79, 232, (280,301): 232, 33, 117, 35, 232, 117, 117, 33, 186, 108, 64, 50, (280,313): 220, 181, 183, 46, 46, 78, 181, 105, 183, 63, 156, 50, (280,325): 100, 108, 27, 187, 252, 157, 27, 70, 24, 187, 252, 28, (280,337): 49, 185, 195, 14, 14, 180, 253, 108, 104, 183, 252, 108, (280,349): 2, 64, 63, 156, 2, 253, 156, 220, 63, 91, 180, 181, 63, (280,362): 108, 108, 105, 105, 105, 183, 183, 104, 253, 183, 183, (280,373): 183, 27, (281,0): 180, 186, 116, 128, 11, 128, 66, 49, 186, 49, 49, 128, 49, (281,13): 116, 128, 146, 220, 128, 116, 128, 117, 88, 35, 140, 245, (281,25): 140, 117, 117, 245, 117, 232, 128, 35, 35, 35, 35, 128, (281,37): 33, 33, 221, 79, 224, 33, 33, 79, 116, 79, 221, 33, 79, (281,50): 221, 221, 221, 33, 33, 221, 33, 128, 128, 35, 35, 128, 35, (281,63): 35, 35, 35, 128, 232, 33, 33, 128, 128, 35, 35, 35, 35, (281,76): 35, 128, 117, 117, 117, 35, 117, 117, 117, 117, 117, 117, (281,88): 117, 140, 117, 117, 117, 117, 117, 140, 117, 117, 140, (281,99): 117, 117, 140, 117, 117, 117, 140, 117, 117, 117, 35, 117, (281,111): 35, 35, 117, 35, 117, 117, 139, 117, 117, 117, 117, 35, (281,123): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (281,134): 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, 140, (281,145): 117, 117, 117, 117, 117, 35, 35, 117, 117, 117, 117, 35, (281,157): 117, 117, 117, 117, 117, 117, 117, 117, 35, 232, 33, 128, (281,169): 35, 128, 128, 35, 35, 128, 128, 33, 33, 79, 186, 186, (281,181): 185, 221, 33, 33, 128, 35, 117, 117, 117, 117, 117, 117, (281,193): 117, 117, 35, 117, 117, 117, 117, 35, 119, 119, 117, 140, (281,205): 117, 117, 35, 185, 219, 35, 119, 117, 117, 119, 88, 35, (281,217): 128, 35, 35, 35, 33, 128, 117, 117, 117, 35, 35, 11, 35, (281,230): 128, 117, 11, 33, 3, 116, 116, 111, 116, 46, 224, 182, (281,242): 156, 116, 11, 3, 72, 46, 50, 108, 46, 80, 116, 78, 146, (281,255): 3, 63, 36, 137, 49, 37, 176, 91, 27, 50, 105, 234, 50, (281,268): 181, 137, 182, 128, 49, 195, 128, 33, 33, 11, 128, 33, (281,280): 128, 128, 79, 128, 33, 33, 147, 11, 117, 117, 79, 35, (281,292): 185, 232, 79, 33, 93, 220, 125, 185, 232, 33, 79, 232, (281,304): 88, 88, 117, 128, 221, 79, 14, 183, 253, 210, 111, 105, (281,316): 137, 182, 222, 156, 156, 79, 210, 186, 14, 195, 38, 175, (281,328): 63, 204, 79, 139, 241, 241, 66, 204, 66, 156, 66, 156, (281,340): 156, 63, 253, 27, 108, 253, 253, 253, 78, 253, 123, 91, (281,352): 63, 220, 156, 63, 180, 181, 105, 253, 105, 181, 222, 63, (281,364): 105, 105, 176, 27, 176, 253, 2, 253, 104, 104, 104, (282,0): 108, 72, 195, 220, 116, 221, 146, 50, 49, 72, 116, 224, 50, (282,13): 72, 224, 72, 50, 221, 186, 128, 117, 88, 35, 140, 140, (282,25): 245, 139, 245, 245, 245, 35, 232, 232, 128, 35, 128, 128, (282,37): 33, 128, 33, 33, 128, 128, 128, 33, 33, 128, 128, 33, 128, (282,50): 33, 33, 33, 128, 128, 33, 128, 232, 11, 117, 35, 35, 117, (282,63): 128, 11, 117, 128, 128, 128, 119, 128, 33, 117, 11, 35, (282,75): 11, 35, 128, 35, 128, 35, 119, 35, 35, 201, 117, 117, 117, (282,88): 139, 117, 117, 140, 117, 140, 117, 117, 117, 117, 117, (282,99): 140, 117, 117, 117, 35, 117, 117, 35, 35, 35, 35, 35, 117, (282,112): 117, 117, 117, 117, 117, 117, 88, 140, 117, 117, 139, (282,123): 117, 117, 139, 117, 117, 117, 117, 139, 117, 117, 117, (282,134): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (282,145): 117, 139, 117, 117, 35, 117, 35, 117, 117, 117, 35, 139, (282,157): 117, 35, 117, 35, 117, 117, 117, 117, 128, 35, 128, 128, (282,169): 128, 35, 128, 128, 128, 33, 33, 33, 79, 18, 18, 18, 116, (282,182): 33, 33, 232, 128, 35, 117, 117, 117, 117, 117, 117, 139, (282,194): 117, 139, 117, 139, 117, 117, 35, 117, 140, 117, 119, (282,205): 119, 117, 35, 119, 125, 139, 33, 140, 35, 35, 128, 128, (282,217): 33, 128, 35, 35, 35, 117, 117, 117, 117, 35, 35, 117, 35, (282,230): 33, 11, 128, 33, 195, 46, 156, 49, 50, 156, 49, 3, 221, (282,243): 146, 186, 105, 181, 146, 181, 176, 63, 220, 220, 64, 183, (282,255): 138, 186, 108, 176, 50, 50, 49, 181, 49, 50, 72, 146, 91, (282,268): 181, 181, 105, 97, 11, 11, 128, 221, 11, 88, 79, 221, (282,280): 116, 108, 128, 11, 221, 128, 221, 245, 117, 88, 245, 33, (282,292): 18, 33, 18, 18, 100, 79, 117, 33, 33, 33, 33, 35, 33, 35, (282,306): 11, 232, 128, 128, 46, 108, 121, 138, 108, 80, 253, 222, (282,318): 138, 146, 185, 204, 119, 241, 180, 180, 79, 119, 204, (282,329): 119, 204, 33, 185, 204, 71, 79, 18, 14, 220, 180, 108, (282,341): 183, 104, 104, 2, 104, 181, 50, 156, 50, 181, 108, 183, (282,353): 63, 156, 91, 91, 91, 180, 91, 105, 2, 138, 63, 105, 176, (282,366): 176, 27, 27, 91, 253, 253, 253, 253, 2, (283,0): 72, 116, 49, 2, 72, 116, 221, 72, 46, 46, 186, 224, 50, 50, (283,14): 3, 72, 146, 128, 3, 128, 117, 245, 35, 245, 245, 245, 35, (283,27): 140, 245, 140, 245, 245, 128, 35, 232, 232, 33, 232, 128, (283,39): 35, 117, 117, 11, 35, 128, 33, 128, 128, 33, 128, 33, 128, (283,52): 128, 35, 128, 35, 35, 117, 245, 117, 88, 11, 117, 117, (283,64): 117, 11, 35, 119, 128, 33, 33, 128, 232, 128, 128, 33, (283,76): 128, 33, 128, 128, 35, 119, 35, 35, 35, 117, 117, 117, 88, (283,89): 117, 117, 117, 117, 117, 117, 140, 117, 140, 245, 245, (283,100): 117, 117, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (283,113): 117, 35, 117, 117, 139, 117, 117, 117, 117, 117, 117, (283,124): 117, 117, 117, 139, 117, 117, 117, 117, 117, 117, 139, (283,135): 117, 117, 139, 117, 117, 117, 117, 139, 117, 117, 117, (283,146): 117, 117, 35, 117, 35, 35, 117, 201, 117, 117, 117, 117, (283,158): 117, 35, 117, 35, 128, 245, 35, 35, 35, 232, 232, 128, (283,170): 128, 35, 128, 33, 128, 33, 79, 116, 79, 116, 79, 33, 33, (283,183): 35, 232, 35, 35, 35, 117, 117, 117, 35, 117, 117, 117, (283,195): 117, 117, 117, 117, 117, 117, 140, 117, 185, 185, 119, (283,206): 35, 140, 35, 55, 88, 119, 147, 33, 35, 128, 128, 33, 33, (283,219): 35, 11, 117, 117, 117, 119, 35, 35, 117, 88, 128, 33, 35, (283,232): 156, 3, 186, 128, 46, 111, 186, 3, 146, 14, 138, 49, 50, (283,245): 186, 46, 221, 146, 156, 63, 46, 156, 108, 183, 63, 128, (283,257): 49, 156, 50, 128, 3, 146, 116, 72, 116, 146, 234, 46, (283,269): 186, 221, 220, 116, 79, 79, 156, 18, 11, 128, 88, 210, (283,281): 128, 14, 128, 33, 156, 88, 186, 33, 128, 35, 88, 11, 33, (283,294): 79, 79, 156, 116, 116, 66, 156, 195, 221, 128, 33, 221, (283,306): 35, 11, 33, 186, 156, 181, 253, 91, 91, 123, 176, 105, (283,318): 156, 187, 108, 14, 185, 180, 180, 28, 33, 204, 232, 33, (283,330): 207, 28, 204, 204, 204, 66, 72, 14, 220, 183, 252, 97, (283,342): 104, 180, 108, 187, 50, 195, 146, 50, 63, 63, 181, 63, (283,354): 138, 105, 181, 253, 63, 78, 105, 105, 63, 138, 253, 176, (283,366): 91, 91, 27, 183, 183, 183, 104, 2, 180, (284,0): 49, 79, 116, 220, 116, 72, 116, 186, 50, 50, 78, 220, 181, (284,13): 138, 156, 182, 46, 46, 146, 128, 128, 88, 88, 88, 140, (284,25): 117, 245, 245, 245, 245, 245, 117, 35, 35, 35, 128, 232, (284,37): 33, 232, 117, 128, 117, 35, 128, 128, 33, 221, 221, 128, (284,49): 128, 128, 128, 128, 35, 245, 245, 11, 117, 88, 117, 88, (284,61): 117, 117, 117, 117, 117, 35, 128, 33, 79, 33, 79, 33, 33, (284,74): 79, 33, 33, 33, 33, 119, 35, 35, 35, 117, 117, 117, 117, (284,87): 140, 117, 140, 117, 140, 117, 117, 117, 117, 117, 117, (284,98): 139, 245, 117, 139, 35, 139, 232, 35, 119, 35, 35, 35, 35, (284,111): 35, 139, 117, 117, 139, 88, 117, 117, 140, 201, 117, 117, (284,123): 117, 117, 117, 117, 117, 117, 117, 117, 117, 139, 117, (284,134): 117, 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, (284,145): 117, 117, 35, 117, 35, 117, 35, 117, 117, 117, 35, 117, (284,157): 35, 139, 117, 117, 245, 245, 117, 245, 245, 128, 245, (284,168): 128, 35, 128, 128, 33, 33, 33, 221, 79, 221, 33, 128, (284,180): 128, 35, 35, 117, 35, 117, 117, 117, 117, 140, 117, 139, (284,192): 117, 117, 140, 117, 117, 139, 117, 139, 117, 140, 35, (284,203): 185, 185, 119, 117, 117, 55, 79, 35, 119, 88, 33, 117, (284,215): 11, 35, 33, 33, 128, 117, 117, 117, 117, 117, 117, 35, (284,227): 35, 117, 128, 33, 11, 33, 221, 111, 46, 46, 80, 138, 183, (284,240): 46, 195, 220, 195, 181, 253, 104, 108, 186, 221, 49, 128, (284,252): 146, 221, 220, 50, 220, 116, 195, 195, 49, 195, 156, 116, (284,264): 46, 49, 116, 186, 72, 49, 128, 116, 128, 11, 210, 116, (284,276): 180, 156, 195, 50, 128, 11, 195, 186, 11, 128, 33, 46, (284,288): 195, 180, 108, 33, 128, 195, 49, 33, 186, 33, 33, 33, (284,300): 221, 128, 117, 11, 35, 46, 128, 117, 46, 156, 108, 63, (284,312): 121, 216, 121, 89, 223, 216, 183, 216, 99, 249, 8, 70, (284,324): 100, 204, 185, 100, 241, 18, 241, 241, 66, 28, 100, 14, (284,336): 156, 100, 180, 123, 64, 97, 181, 181, 50, 50, 156, 186, (284,348): 195, 50, 108, 63, 50, 63, 105, 63, 253, 183, 137, 105, (284,360): 253, 183, 91, 34, 91, 91, 176, 105, 105, 253, 104, 104, (284,372): 253, 105, 2, (285,0): 72, 116, 234, 108, 116, 116, 234, 138, 253, 108, 181, 222, (285,12): 63, 80, 146, 138, 224, 111, 49, 128, 11, 88, 88, 88, 245, (285,25): 140, 245, 245, 245, 117, 117, 232, 35, 245, 245, 35, 35, (285,37): 35, 117, 11, 88, 117, 11, 117, 35, 128, 128, 33, 128, 128, (285,50): 232, 128, 35, 128, 117, 11, 88, 117, 88, 117, 140, 117, (285,62): 117, 35, 117, 128, 33, 79, 116, 185, 79, 79, 33, 33, 33, (285,75): 33, 33, 128, 35, 128, 35, 35, 35, 35, 117, 117, 140, 117, (285,88): 117, 117, 117, 117, 140, 117, 140, 117, 140, 245, 245, (285,99): 117, 117, 117, 35, 35, 33, 232, 232, 232, 232, 35, 35, 35, (285,112): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (285,123): 117, 139, 117, 117, 117, 117, 139, 117, 117, 117, 117, (285,134): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, (285,145): 117, 139, 35, 117, 35, 117, 201, 117, 117, 35, 117, 117, (285,157): 117, 117, 117, 245, 245, 245, 35, 245, 35, 35, 35, 128, (285,169): 128, 33, 33, 33, 221, 33, 221, 79, 33, 33, 128, 35, 117, (285,182): 117, 117, 117, 117, 117, 117, 117, 117, 117, 140, 117, (285,193): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, (285,204): 117, 117, 245, 35, 201, 35, 55, 35, 119, 33, 128, 35, 11, (285,217): 128, 128, 117, 117, 117, 35, 35, 140, 88, 119, 33, 119, (285,229): 128, 33, 117, 221, 3, 186, 146, 11, 111, 111, 3, 156, (285,241): 186, 156, 63, 11, 186, 220, 156, 72, 221, 33, 186, 125, (285,253): 186, 195, 156, 72, 128, 221, 72, 116, 195, 46, 79, 221, (285,265): 66, 210, 35, 128, 33, 186, 181, 100, 156, 210, 117, 49, (285,277): 221, 88, 33, 63, 11, 180, 195, 245, 72, 44, 33, 128, 33, (285,290): 221, 72, 221, 185, 116, 49, 79, 72, 186, 221, 186, 186, (285,302): 221, 116, 88, 116, 186, 72, 108, 253, 253, 2, 2, 183, (285,314): 177, 216, 97, 223, 234, 49, 14, 51, 51, 66, 79, 66, 234, (285,327): 18, 180, 195, 128, 72, 156, 105, 2, 108, 104, 176, 27, (285,339): 123, 104, 175, 50, 180, 108, 220, 156, 146, 146, 108, (285,350): 182, 50, 78, 108, 63, 50, 183, 91, 183, 181, 91, 90, 64, (285,363): 12, 12, 183, 176, 176, 253, 253, 104, 183, 253, 2, 2, (286,0): 18, 128, 234, 108, 66, 128, 72, 234, 49, 46, 116, 46, 3, (286,13): 116, 146, 138, 3, 146, 182, 11, 11, 117, 11, 117, 88, 245, (286,26): 245, 117, 117, 117, 35, 128, 117, 117, 117, 117, 117, 35, (286,38): 245, 245, 88, 88, 88, 88, 11, 88, 117, 11, 35, 35, 245, (286,51): 11, 35, 245, 245, 88, 117, 117, 117, 117, 88, 117, 117, (286,63): 119, 128, 33, 79, 79, 185, 116, 221, 33, 33, 128, 33, 35, (286,76): 128, 35, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (286,88): 140, 117, 117, 117, 117, 117, 117, 117, 117, 140, 117, (286,99): 245, 139, 35, 232, 35, 33, 232, 33, 33, 232, 232, 35, 35, (286,112): 117, 35, 117, 117, 117, 140, 117, 117, 117, 117, 117, (286,123): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (286,134): 139, 117, 117, 139, 117, 117, 117, 117, 139, 117, 35, (286,145): 117, 35, 117, 201, 117, 117, 117, 117, 35, 117, 139, 117, (286,157): 117, 117, 35, 117, 35, 35, 128, 128, 128, 33, 128, 79, (286,169): 79, 33, 79, 221, 79, 33, 221, 33, 33, 128, 35, 117, 11, (286,182): 117, 11, 117, 88, 117, 139, 117, 139, 117, 117, 117, 139, (286,194): 117, 117, 139, 117, 117, 117, 140, 117, 117, 140, 117, (286,205): 117, 35, 35, 140, 140, 204, 35, 33, 128, 33, 224, 117, (286,217): 128, 128, 11, 117, 117, 35, 117, 117, 117, 119, 33, 33, (286,229): 185, 186, 46, 186, 195, 49, 50, 80, 49, 116, 116, 176, (286,241): 46, 117, 156, 33, 186, 33, 128, 35, 128, 88, 128, 128, (286,253): 79, 33, 79, 117, 63, 156, 125, 180, 63, 117, 63, 156, (286,265): 187, 46, 33, 35, 195, 156, 147, 195, 49, 33, 33, 186, (286,277): 221, 128, 128, 33, 79, 195, 108, 156, 116, 128, 210, 221, (286,289): 11, 128, 108, 50, 156, 156, 104, 186, 50, 156, 72, 72, (286,301): 186, 128, 128, 128, 3, 156, 105, 123, 121, 8, 123, 183, (286,313): 14, 183, 183, 175, 14, 72, 63, 187, 14, 220, 234, 14, 33, (286,326): 72, 66, 49, 14, 46, 108, 63, 108, 63, 105, 27, 27, 223, (286,339): 183, 105, 183, 50, 180, 181, 50, 181, 181, 105, 27, 12, (286,351): 253, 223, 64, 137, 137, 64, 64, 137, 183, 105, 137, 137, (286,363): 183, 12, 183, 12, 91, 64, 27, 91, 104, 104, 187, 2, (287,0): 2, 128, 116, 220, 78, 72, 116, 128, 138, 50, 50, 111, 116, (287,13): 146, 146, 3, 34, 105, 78, 224, 224, 221, 128, 11, 117, (287,25): 117, 35, 117, 117, 117, 117, 35, 232, 35, 35, 117, 35, (287,37): 117, 117, 117, 88, 88, 117, 117, 88, 117, 88, 245, 35, 11, (287,50): 245, 245, 245, 35, 11, 88, 88, 88, 117, 117, 117, 117, 35, (287,63): 128, 119, 128, 79, 116, 185, 33, 33, 128, 119, 128, 35, (287,75): 128, 35, 35, 117, 117, 117, 35, 117, 35, 117, 35, 117, (287,87): 117, 117, 139, 117, 140, 117, 139, 117, 140, 245, 245, (287,98): 245, 117, 245, 35, 35, 232, 33, 33, 55, 33, 232, 232, 35, (287,111): 35, 117, 139, 35, 117, 117, 117, 117, 140, 117, 117, 139, (287,123): 117, 117, 117, 117, 139, 117, 117, 117, 139, 117, 117, (287,134): 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, 201, (287,145): 35, 35, 35, 117, 35, 35, 35, 117, 117, 117, 117, 117, (287,157): 117, 117, 117, 232, 33, 33, 33, 33, 79, 79, 79, 79, 18, (287,170): 116, 79, 79, 33, 33, 33, 128, 128, 128, 128, 117, 117, (287,182): 88, 140, 117, 117, 117, 117, 117, 35, 117, 139, 117, 117, (287,194): 117, 117, 117, 117, 139, 117, 117, 201, 35, 117, 119, 55, (287,206): 119, 117, 55, 119, 28, 33, 125, 117, 128, 33, 128, 128, (287,218): 128, 117, 117, 128, 117, 117, 33, 35, 33, 128, 33, 186, (287,230): 156, 156, 186, 224, 3, 49, 138, 133, 46, 224, 128, 195, (287,242): 195, 128, 195, 33, 128, 33, 128, 186, 156, 128, 221, 33, (287,254): 72, 128, 33, 88, 180, 46, 180, 66, 220, 33, 33, 186, 147, (287,267): 195, 128, 33, 2, 221, 128, 195, 220, 220, 49, 49, 156, (287,279): 128, 156, 181, 186, 221, 79, 11, 116, 195, 33, 72, 221, (287,291): 116, 221, 156, 156, 49, 186, 50, 156, 221, 186, 195, 116, (287,303): 221, 220, 156, 220, 104, 123, 183, 181, 2, 175, 253, 242, (287,315): 100, 234, 28, 234, 66, 33, 234, 242, 252, 104, 66, 14, (287,327): 49, 234, 183, 108, 64, 91, 50, 253, 64, 104, 253, 64, 2, (287,340): 253, 123, 253, 181, 64, 78, 137, 27, 176, 137, 253, 78, (287,352): 181, 175, 12, 105, 156, 78, 78, 138, 222, 91, 183, 105, (287,364): 176, 183, 137, 27, 123, 27, 104, 187, 104, 104, 187, (288,0): 253, 234, 116, 221, 234, 221, 46, 221, 221, 46, 46, 116, (288,12): 222, 176, 138, 146, 50, 34, 183, 3, 11, 224, 46, 11, 128, (288,25): 11, 117, 128, 35, 117, 117, 117, 245, 245, 245, 245, 117, (288,37): 245, 245, 245, 117, 117, 117, 117, 117, 117, 117, 117, (288,48): 245, 117, 11, 245, 88, 88, 245, 245, 245, 117, 88, 88, 88, (288,61): 88, 117, 117, 119, 119, 33, 119, 33, 119, 35, 35, 117, (288,73): 117, 35, 117, 117, 117, 117, 35, 117, 117, 117, 140, 117, (288,85): 140, 117, 139, 88, 117, 117, 117, 117, 88, 117, 117, 117, (288,97): 117, 117, 35, 35, 128, 33, 33, 33, 33, 33, 232, 232, 232, (288,110): 35, 232, 117, 117, 117, 117, 139, 117, 117, 117, 117, (288,121): 117, 117, 117, 139, 117, 140, 117, 117, 140, 117, 117, (288,132): 117, 140, 117, 117, 117, 117, 117, 117, 117, 117, 117, (288,143): 117, 117, 117, 117, 117, 117, 117, 117, 117, 119, 117, (288,154): 35, 117, 35, 119, 119, 33, 33, 33, 33, 79, 185, 116, 18, (288,167): 116, 18, 79, 79, 79, 79, 33, 128, 232, 117, 117, 117, (288,179): 117, 117, 88, 88, 140, 117, 117, 117, 117, 117, 117, 117, (288,191): 117, 117, 139, 117, 117, 117, 117, 117, 117, 35, 88, 88, (288,203): 119, 147, 79, 28, 33, 79, 185, 33, 119, 125, 79, 88, 185, (288,216): 128, 35, 35, 11, 35, 128, 35, 88, 128, 117, 3, 128, 128, (288,229): 128, 46, 128, 3, 117, 46, 146, 128, 156, 146, 181, 195, (288,241): 195, 186, 195, 156, 33, 11, 117, 221, 49, 33, 221, 128, (288,253): 46, 128, 146, 156, 195, 46, 33, 195, 224, 146, 72, 195, (288,265): 46, 49, 72, 128, 11, 210, 116, 33, 186, 156, 221, 2, 49, (288,278): 33, 195, 46, 11, 181, 220, 116, 146, 11, 33, 224, 195, (288,290): 18, 116, 186, 49, 80, 186, 50, 11, 183, 78, 72, 63, 72, (288,303): 91, 99, 27, 2, 183, 187, 14, 33, 79, 104, 180, 175, 2, (288,316): 108, 63, 2, 100, 51, 241, 28, 241, 66, 66, 79, 234, 241, (288,329): 63, 100, 108, 220, 91, 91, 91, 64, 27, 64, 253, 183, 183, (288,342): 64, 176, 183, 183, 137, 183, 176, 176, 183, 91, 12, 124, (288,354): 138, 182, 182, 182, 50, 222, 108, 181, 137, 223, 64, 223, (288,366): 137, 104, 91, 252, 252, 252, 104, 187, 187, (289,0): 223, 138, 221, 11, 116, 46, 46, 146, 116, 221, 116, 116, (289,12): 46, 49, 156, 156, 181, 111, 46, 80, 78, 49, 146, 3, 224, (289,25): 128, 35, 128, 232, 117, 117, 140, 117, 245, 245, 245, 245, (289,37): 245, 245, 245, 117, 245, 117, 245, 245, 245, 88, 245, 117, (289,49): 245, 245, 88, 245, 88, 245, 245, 88, 117, 88, 117, 88, (289,61): 117, 117, 117, 232, 232, 232, 33, 232, 232, 35, 35, 117, (289,73): 35, 117, 117, 117, 35, 117, 117, 117, 140, 117, 117, 117, (289,85): 117, 117, 117, 117, 117, 140, 117, 140, 117, 140, 117, (289,96): 245, 245, 117, 117, 35, 232, 33, 232, 33, 232, 128, 232, (289,108): 128, 117, 128, 35, 117, 117, 117, 117, 117, 117, 140, (289,119): 117, 140, 117, 140, 117, 88, 117, 117, 117, 117, 117, (289,130): 117, 140, 117, 117, 117, 88, 139, 117, 117, 117, 117, (289,141): 139, 117, 117, 35, 117, 139, 35, 35, 117, 35, 117, 117, (289,153): 117, 117, 117, 117, 35, 128, 128, 33, 221, 221, 221, 79, (289,165): 79, 79, 79, 79, 79, 79, 79, 33, 128, 232, 35, 35, 117, (289,178): 117, 117, 117, 88, 117, 140, 117, 117, 117, 117, 139, (289,189): 117, 117, 139, 117, 117, 88, 139, 117, 117, 117, 117, (289,200): 201, 117, 88, 119, 117, 119, 66, 119, 232, 219, 185, 33, (289,212): 125, 185, 35, 33, 33, 128, 35, 117, 117, 117, 117, 117, (289,224): 128, 11, 128, 156, 146, 220, 91, 181, 146, 253, 186, 128, (289,236): 183, 78, 156, 46, 183, 181, 185, 221, 72, 221, 221, 221, (289,248): 128, 88, 3, 156, 46, 46, 49, 49, 186, 221, 156, 49, 220, (289,261): 50, 33, 181, 156, 156, 156, 221, 146, 79, 186, 11, 108, (289,273): 221, 49, 72, 210, 210, 3, 72, 116, 221, 46, 210, 108, (289,285): 183, 46, 116, 128, 14, 104, 183, 138, 195, 146, 80, 105, (289,297): 146, 186, 3, 46, 116, 50, 121, 178, 8, 252, 63, 14, 185, (289,310): 79, 79, 183, 79, 234, 180, 242, 226, 226, 175, 100, 185, (289,322): 204, 185, 185, 66, 18, 63, 18, 234, 195, 156, 220, 187, (289,334): 183, 27, 64, 183, 64, 253, 91, 91, 64, 183, 177, 223, (289,346): 183, 34, 253, 12, 91, 34, 91, 12, 91, 176, 105, 181, 12, (289,359): 223, 12, 27, 90, 123, 64, 64, 223, 175, 252, 252, 252, (289,371): 252, 252, 104, 51, (290,0): 49, 221, 210, 221, 146, 220, 220, 2, 234, 72, 146, 234, 72, (290,13): 116, 72, 3, 234, 46, 3, 80, 182, 3, 146, 3, 3, 221, 128, (290,27): 11, 35, 117, 117, 139, 88, 140, 245, 140, 245, 140, 245, (290,39): 140, 245, 140, 245, 140, 88, 140, 245, 140, 117, 245, 245, (290,51): 245, 88, 245, 88, 245, 117, 88, 117, 140, 117, 88, 117, (290,63): 117, 35, 35, 232, 232, 35, 35, 117, 245, 245, 245, 245, (290,75): 245, 245, 245, 245, 245, 117, 117, 117, 140, 117, 140, (290,86): 117, 140, 117, 117, 117, 117, 117, 117, 117, 117, 117, (290,97): 117, 117, 35, 128, 35, 128, 33, 232, 33, 232, 35, 35, 35, (290,110): 117, 35, 117, 35, 117, 117, 117, 117, 117, 117, 117, 117, (290,122): 117, 140, 117, 140, 117, 140, 117, 117, 117, 117, 117, (290,133): 140, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (290,144): 117, 139, 117, 117, 117, 139, 117, 117, 35, 117, 117, 35, (290,156): 11, 35, 128, 128, 33, 33, 221, 33, 221, 33, 33, 33, 33, (290,169): 33, 33, 232, 35, 35, 245, 245, 245, 117, 117, 140, 117, (290,181): 140, 117, 117, 117, 117, 139, 117, 117, 117, 117, 117, (290,192): 117, 117, 117, 117, 117, 117, 201, 117, 117, 35, 117, 35, (290,204): 117, 117, 33, 119, 35, 204, 185, 232, 185, 18, 119, 35, (290,216): 119, 35, 88, 128, 128, 128, 128, 128, 3, 195, 116, 186, (290,228): 49, 63, 128, 50, 50, 186, 64, 80, 128, 46, 46, 186, 195, (290,241): 14, 195, 18, 221, 128, 72, 156, 78, 186, 49, 146, 50, (290,253): 156, 253, 138, 181, 49, 221, 128, 146, 108, 147, 46, 221, (290,265): 128, 72, 186, 220, 11, 186, 220, 33, 128, 181, 121, 50, (290,277): 221, 49, 46, 186, 128, 46, 46, 146, 78, 50, 146, 220, 49, (290,290): 49, 234, 234, 49, 72, 146, 46, 3, 224, 186, 50, 49, 50, (290,303): 252, 223, 180, 252, 70, 70, 156, 100, 100, 180, 14, 93, (290,315): 175, 253, 195, 79, 18, 241, 55, 18, 232, 232, 33, 232, (290,327): 66, 66, 195, 156, 66, 156, 108, 91, 27, 64, 183, 183, (290,339): 105, 105, 180, 176, 105, 91, 137, 137, 137, 36, 141, 183, (290,351): 176, 12, 34, 34, 176, 91, 137, 64, 141, 64, 64, 223, 64, (290,364): 27, 27, 64, 175, 51, 51, 51, 51, 51, 51, 104, (291,0): 234, 63, 108, 108, 146, 146, 128, 128, 46, 3, 72, 49, 108, (291,13): 234, 46, 224, 11, 156, 91, 138, 146, 186, 182, 195, 146, (291,25): 46, 128, 128, 119, 117, 117, 140, 245, 140, 245, 140, 245, (291,37): 140, 245, 140, 245, 245, 140, 245, 140, 88, 140, 88, 245, (291,49): 245, 245, 88, 245, 88, 245, 245, 140, 117, 245, 88, 245, (291,61): 117, 117, 117, 35, 232, 35, 35, 232, 35, 35, 35, 140, 245, (291,74): 140, 117, 245, 140, 117, 88, 139, 117, 140, 117, 117, 117, (291,86): 117, 117, 117, 117, 140, 117, 140, 117, 140, 245, 117, (291,97): 117, 117, 35, 117, 232, 232, 232, 128, 35, 35, 128, 117, (291,109): 35, 117, 35, 117, 117, 117, 117, 117, 139, 117, 140, 117, (291,121): 140, 117, 117, 117, 117, 117, 117, 117, 117, 117, 139, (291,132): 117, 117, 117, 117, 117, 117, 117, 139, 35, 117, 117, (291,143): 117, 139, 117, 117, 117, 117, 117, 35, 117, 35, 35, 11, (291,155): 35, 35, 128, 128, 33, 33, 221, 33, 33, 221, 33, 33, 33, (291,168): 128, 128, 35, 35, 245, 245, 245, 88, 140, 117, 140, 117, (291,180): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (291,191): 117, 140, 117, 117, 117, 117, 117, 35, 117, 88, 119, 117, (291,203): 117, 119, 140, 117, 79, 35, 185, 33, 35, 33, 33, 128, 88, (291,216): 35, 11, 35, 33, 79, 128, 35, 128, 116, 156, 46, 50, 146, (291,229): 3, 80, 128, 156, 224, 128, 108, 105, 50, 116, 11, 210, (291,241): 186, 72, 72, 116, 128, 221, 221, 78, 63, 156, 156, 91, (291,253): 138, 46, 210, 186, 63, 49, 156, 49, 50, 156, 186, 156, (291,265): 128, 46, 186, 63, 156, 72, 50, 72, 33, 11, 156, 50, 186, (291,278): 49, 50, 186, 128, 46, 3, 128, 224, 49, 3, 234, 72, 72, (291,291): 72, 146, 49, 3, 72, 80, 46, 146, 49, 234, 234, 72, 14, 8, (291,305): 2, 63, 63, 175, 178, 37, 100, 195, 116, 14, 66, 79, 79, (291,318): 33, 232, 66, 185, 204, 185, 232, 232, 35, 185, 156, 66, (291,330): 14, 156, 108, 156, 63, 105, 63, 220, 50, 63, 181, 105, (291,342): 27, 137, 183, 141, 141, 27, 137, 91, 124, 91, 137, 91, (291,354): 176, 12, 137, 137, 90, 123, 64, 64, 64, 175, 104, 253, (291,366): 253, 187, 187, 253, 51, 104, 187, 187, 187, (292,0): 210, 234, 50, 49, 116, 50, 234, 234, 234, 183, 108, 108, (292,12): 223, 64, 253, 253, 72, 80, 124, 63, 222, 3, 46, 210, 49, (292,25): 186, 128, 35, 35, 117, 117, 140, 88, 245, 140, 245, 245, (292,37): 140, 245, 88, 140, 88, 140, 88, 140, 88, 140, 140, 88, (292,49): 245, 88, 117, 245, 117, 245, 88, 117, 88, 88, 117, 245, (292,61): 117, 117, 35, 232, 232, 35, 232, 35, 35, 35, 35, 245, 245, (292,74): 140, 245, 140, 245, 245, 140, 117, 117, 117, 117, 140, (292,85): 117, 140, 117, 140, 117, 117, 117, 117, 117, 117, 117, (292,96): 117, 35, 117, 245, 128, 35, 35, 128, 232, 35, 35, 117, (292,108): 117, 117, 35, 117, 117, 35, 117, 139, 117, 88, 117, 117, (292,120): 117, 117, 140, 117, 140, 117, 140, 117, 117, 139, 117, (292,131): 117, 117, 117, 139, 117, 201, 117, 117, 117, 117, 35, 35, (292,143): 117, 117, 35, 117, 35, 245, 35, 245, 117, 117, 117, 117, (292,155): 128, 35, 128, 232, 128, 128, 33, 33, 79, 221, 33, 33, 33, (292,168): 35, 35, 35, 245, 245, 245, 88, 140, 245, 117, 117, 117, (292,180): 140, 35, 117, 35, 139, 117, 117, 117, 117, 139, 117, 117, (292,192): 35, 117, 117, 201, 117, 35, 117, 35, 117, 119, 117, 117, (292,204): 119, 35, 117, 204, 232, 128, 35, 35, 232, 35, 117, 35, (292,216): 128, 35, 117, 128, 128, 35, 11, 128, 128, 146, 50, 128, (292,228): 220, 220, 11, 72, 220, 195, 3, 195, 221, 221, 195, 195, (292,240): 72, 72, 117, 33, 49, 156, 49, 79, 195, 50, 46, 46, 195, (292,253): 50, 195, 49, 63, 220, 146, 116, 186, 49, 50, 11, 108, 50, (292,266): 220, 128, 72, 91, 128, 221, 156, 186, 210, 128, 183, 49, (292,278): 186, 128, 146, 50, 224, 128, 146, 80, 156, 50, 49, 72, (292,290): 146, 116, 146, 222, 146, 116, 176, 146, 50, 2, 195, 79, (292,302): 79, 116, 180, 100, 14, 63, 180, 216, 178, 64, 18, 245, (292,314): 88, 35, 72, 63, 14, 234, 55, 232, 232, 33, 232, 33, 33, (292,327): 72, 204, 72, 14, 156, 63, 146, 220, 220, 50, 146, 49, 50, (292,340): 63, 91, 137, 64, 181, 64, 64, 91, 176, 78, 182, 181, 181, (292,353): 91, 137, 27, 176, 105, 183, 123, 64, 183, 183, 183, 253, (292,365): 253, 187, 180, 180, 24, 187, 187, 187, 24, 180, (293,0): 50, 183, 105, 220, 220, 91, 105, 50, 72, 183, 72, 128, 108, (293,13): 220, 108, 91, 182, 146, 234, 156, 63, 78, 181, 182, 195, (293,25): 46, 128, 128, 128, 117, 117, 117, 140, 245, 245, 140, 245, (293,37): 245, 140, 245, 245, 140, 245, 140, 88, 140, 88, 140, 88, (293,49): 88, 245, 245, 245, 117, 88, 117, 88, 117, 245, 88, 117, (293,61): 117, 35, 35, 35, 232, 128, 35, 35, 35, 117, 139, 245, 140, (293,74): 117, 245, 245, 117, 140, 245, 117, 117, 117, 140, 117, (293,85): 117, 117, 117, 117, 117, 140, 117, 140, 117, 140, 245, 35, (293,97): 117, 35, 117, 35, 117, 128, 35, 35, 35, 35, 128, 245, 35, (293,110): 117, 35, 35, 117, 117, 117, 117, 117, 117, 117, 140, 117, (293,122): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (293,133): 117, 117, 117, 117, 35, 117, 201, 35, 117, 117, 139, 35, (293,145): 117, 117, 245, 35, 117, 117, 117, 245, 11, 117, 11, 35, (293,157): 128, 35, 128, 33, 33, 221, 79, 221, 79, 33, 33, 35, 128, (293,170): 245, 35, 245, 245, 245, 245, 140, 117, 140, 117, 117, (293,181): 117, 139, 117, 117, 117, 139, 35, 117, 117, 117, 117, (293,192): 117, 35, 117, 117, 35, 35, 35, 35, 117, 35, 35, 117, 119, (293,205): 119, 117, 195, 33, 117, 245, 128, 232, 11, 128, 128, 128, (293,217): 128, 128, 128, 128, 221, 72, 195, 72, 49, 156, 186, 46, (293,229): 210, 49, 210, 224, 186, 91, 44, 186, 50, 186, 128, 72, (293,241): 156, 195, 49, 156, 49, 50, 63, 46, 156, 105, 253, 46, (293,253): 116, 186, 46, 46, 11, 2, 156, 221, 221, 49, 180, 210, (293,265): 221, 186, 128, 221, 104, 72, 181, 50, 116, 195, 46, 220, (293,277): 221, 156, 46, 221, 50, 182, 186, 3, 108, 12, 183, 50, (293,289): 234, 182, 3, 80, 105, 182, 146, 224, 221, 146, 108, 79, (293,301): 234, 252, 33, 33, 33, 14, 123, 2, 108, 187, 99, 100, 18, (293,314): 79, 66, 66, 66, 79, 18, 18, 33, 33, 232, 232, 33, 79, 66, (293,328): 195, 195, 108, 180, 181, 50, 156, 156, 63, 220, 156, 108, (293,340): 108, 105, 105, 180, 182, 105, 253, 176, 176, 105, 182, (293,351): 50, 182, 138, 181, 253, 105, 180, 253, 183, 175, 104, 2, (293,363): 187, 180, 2, 2, 180, 28, 63, 180, 24, 24, 180, 28, (294,0): 220, 181, 63, 116, 116, 72, 221, 44, 128, 220, 11, 210, (294,12): 128, 210, 221, 72, 64, 183, 91, 182, 50, 156, 50, 3, 46, (294,25): 221, 33, 33, 33, 119, 117, 117, 117, 140, 117, 245, 245, (294,37): 140, 117, 245, 140, 245, 88, 140, 245, 140, 88, 140, 88, (294,49): 88, 140, 117, 117, 245, 117, 140, 88, 245, 88, 117, 117, (294,61): 117, 35, 35, 128, 35, 35, 35, 117, 35, 117, 117, 245, 117, (294,74): 140, 117, 140, 117, 245, 140, 117, 140, 117, 117, 117, (294,85): 140, 117, 140, 117, 117, 117, 117, 117, 117, 117, 117, 35, (294,97): 117, 35, 245, 35, 35, 35, 35, 35, 128, 35, 117, 35, 35, (294,110): 35, 35, 117, 117, 35, 117, 140, 117, 139, 117, 117, 140, (294,122): 117, 139, 117, 140, 117, 139, 117, 117, 117, 201, 117, (294,133): 117, 35, 117, 35, 117, 35, 117, 117, 35, 35, 117, 117, (294,145): 35, 245, 117, 35, 245, 117, 117, 117, 117, 35, 35, 128, (294,157): 35, 128, 128, 33, 33, 221, 33, 79, 33, 33, 128, 232, 245, (294,170): 35, 245, 245, 245, 140, 245, 245, 117, 117, 140, 117, (294,181): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 139, (294,192): 117, 117, 201, 35, 117, 35, 35, 35, 35, 117, 119, 117, (294,204): 35, 33, 117, 185, 232, 35, 128, 128, 35, 33, 33, 128, (294,216): 117, 128, 221, 128, 46, 195, 156, 220, 49, 146, 156, 72, (294,228): 195, 186, 128, 156, 128, 11, 50, 221, 128, 116, 97, 146, (294,240): 33, 108, 187, 2, 49, 128, 186, 63, 46, 128, 116, 156, (294,252): 221, 186, 108, 181, 220, 156, 183, 183, 183, 253, 221, (294,263): 186, 181, 181, 186, 116, 72, 146, 44, 128, 35, 210, 195, (294,275): 221, 11, 128, 72, 224, 88, 224, 63, 78, 3, 156, 91, 91, (294,288): 146, 50, 137, 105, 222, 78, 182, 181, 50, 181, 180, 108, (294,300): 14, 123, 214, 121, 252, 180, 234, 234, 241, 66, 195, 66, (294,312): 2, 234, 221, 18, 195, 100, 116, 18, 220, 14, 204, 204, (294,324): 116, 79, 195, 66, 63, 180, 105, 183, 104, 253, 108, 50, (294,336): 108, 108, 50, 63, 108, 91, 253, 181, 91, 176, 181, 138, (294,348): 108, 50, 50, 182, 108, 50, 108, 2, 176, 104, 253, 2, 91, (294,361): 24, 63, 180, 100, 28, 180, 180, 63, 231, 180, 180, 180, (294,373): 180, 28, (295,0): 128, 116, 146, 245, 221, 128, 46, 221, 128, 116, 128, 49, (295,12): 146, 128, 79, 11, 46, 33, 49, 49, 156, 46, 186, 221, 221, (295,25): 224, 221, 33, 33, 119, 35, 201, 245, 117, 117, 140, 117, (295,37): 117, 245, 117, 245, 140, 245, 245, 88, 140, 88, 88, 140, (295,49): 88, 245, 117, 245, 117, 88, 245, 88, 117, 245, 245, 117, (295,61): 117, 117, 232, 35, 35, 35, 117, 245, 245, 245, 117, 245, (295,73): 117, 245, 117, 117, 140, 117, 117, 117, 117, 117, 117, (295,84): 140, 117, 117, 117, 117, 117, 140, 117, 140, 117, 140, (295,95): 245, 35, 35, 35, 245, 35, 245, 35, 245, 232, 35, 35, 35, (295,108): 35, 35, 35, 35, 117, 35, 117, 117, 117, 117, 117, 140, (295,120): 117, 117, 117, 88, 117, 117, 117, 117, 117, 35, 117, 117, (295,132): 117, 35, 117, 117, 117, 35, 35, 35, 35, 117, 35, 35, 117, (295,145): 117, 245, 35, 245, 35, 117, 117, 128, 128, 128, 128, 33, (295,157): 128, 33, 128, 33, 79, 221, 79, 33, 33, 128, 35, 35, 35, (295,170): 245, 245, 140, 245, 245, 117, 117, 140, 117, 117, 140, (295,181): 117, 117, 140, 117, 117, 117, 117, 117, 139, 117, 117, (295,192): 35, 117, 117, 35, 117, 35, 35, 35, 35, 117, 33, 117, 117, (295,205): 119, 140, 117, 117, 128, 33, 128, 35, 221, 116, 117, 210, (295,217): 224, 186, 221, 221, 3, 195, 186, 156, 116, 116, 63, 116, (295,229): 128, 221, 116, 128, 117, 220, 72, 221, 11, 128, 50, 221, (295,241): 116, 186, 50, 63, 156, 195, 49, 253, 49, 128, 33, 181, (295,253): 146, 221, 116, 195, 105, 186, 195, 63, 63, 221, 116, 128, (295,265): 63, 186, 128, 221, 210, 33, 186, 72, 33, 46, 128, 186, (295,277): 253, 63, 146, 49, 116, 49, 253, 223, 12, 156, 78, 78, 3, (295,290): 182, 3, 3, 50, 80, 176, 141, 234, 50, 234, 66, 24, 63, (295,303): 242, 121, 2, 234, 79, 72, 245, 128, 66, 234, 2, 253, 63, (295,316): 234, 63, 79, 33, 18, 18, 33, 221, 79, 79, 116, 79, 181, (295,329): 253, 253, 175, 183, 64, 105, 181, 105, 91, 105, 91, 63, (295,341): 183, 105, 63, 108, 138, 181, 181, 222, 222, 222, 50, 220, (295,353): 50, 63, 2, 105, 180, 63, 180, 2, 63, 63, 180, 100, 100, (295,366): 100, 28, 207, 187, 24, 180, 28, 100, 100, (296,0): 221, 128, 116, 128, 220, 116, 72, 116, 116, 46, 72, 220, (296,12): 220, 234, 108, 128, 128, 11, 33, 46, 146, 80, 49, 146, (296,24): 195, 186, 221, 128, 128, 33, 119, 117, 88, 140, 140, 88, (296,36): 245, 117, 117, 35, 117, 35, 117, 140, 117, 245, 140, 245, (296,48): 245, 245, 117, 245, 117, 117, 117, 117, 245, 88, 140, 117, (296,60): 117, 128, 33, 33, 35, 35, 35, 117, 117, 117, 117, 140, (296,72): 117, 140, 117, 117, 117, 117, 117, 140, 117, 140, 117, (296,83): 139, 117, 117, 140, 117, 140, 117, 117, 117, 117, 117, (296,94): 117, 117, 245, 245, 245, 245, 245, 245, 245, 245, 245, (296,105): 245, 245, 245, 245, 245, 35, 35, 245, 35, 139, 117, 117, (296,117): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (296,128): 117, 117, 35, 117, 117, 117, 35, 117, 201, 117, 117, 117, (296,140): 117, 35, 117, 117, 35, 245, 245, 245, 117, 35, 128, 128, (296,152): 33, 33, 128, 128, 128, 33, 221, 128, 221, 33, 33, 33, (296,164): 128, 232, 35, 117, 245, 245, 35, 245, 245, 245, 140, 117, (296,176): 117, 117, 117, 117, 117, 117, 117, 117, 117, 140, 117, (296,187): 140, 117, 117, 117, 117, 140, 117, 117, 117, 117, 117, (296,198): 117, 117, 119, 119, 119, 119, 33, 119, 232, 35, 128, 128, (296,210): 128, 35, 128, 117, 128, 128, 128, 117, 11, 195, 108, 186, (296,222): 11, 50, 146, 128, 128, 46, 46, 195, 146, 186, 3, 108, (296,234): 195, 49, 221, 128, 11, 186, 116, 128, 46, 221, 181, 128, (296,246): 195, 224, 123, 253, 116, 64, 49, 104, 108, 46, 146, 128, (296,258): 128, 128, 11, 220, 63, 46, 221, 210, 221, 111, 11, 2, (296,270): 186, 46, 128, 105, 195, 186, 195, 49, 186, 46, 108, 46, (296,282): 49, 183, 64, 63, 105, 49, 146, 146, 133, 72, 146, 137, (296,294): 97, 78, 46, 253, 116, 33, 66, 128, 33, 232, 14, 63, 195, (296,307): 79, 35, 49, 72, 116, 100, 108, 195, 66, 79, 195, 72, 66, (296,320): 116, 33, 33, 33, 33, 221, 234, 180, 175, 27, 183, 183, (296,332): 183, 183, 104, 181, 252, 253, 253, 64, 181, 91, 176, 105, (296,344): 105, 181, 181, 105, 105, 181, 181, 105, 63, 63, 63, 63, (296,356): 180, 2, 63, 100, 2, 24, 231, 63, 231, 63, 28, 63, 180, (296,369): 180, 180, 28, 28, 108, 28, (297,0): 11, 46, 234, 221, 108, 234, 195, 11, 234, 116, 128, 116, (297,12): 128, 221, 220, 72, 11, 128, 46, 72, 195, 195, 186, 46, (297,24): 195, 72, 186, 79, 79, 185, 33, 35, 245, 245, 117, 140, (297,36): 117, 117, 35, 139, 117, 117, 117, 117, 117, 245, 35, 35, (297,48): 117, 117, 117, 35, 35, 35, 35, 117, 117, 117, 117, 245, (297,60): 117, 117, 35, 232, 35, 232, 117, 139, 117, 117, 140, 117, (297,72): 117, 35, 140, 117, 140, 245, 139, 117, 117, 117, 117, 88, (297,84): 117, 117, 117, 117, 117, 117, 117, 140, 117, 139, 117, (297,95): 140, 245, 140, 245, 245, 140, 245, 245, 245, 245, 245, (297,106): 245, 245, 245, 35, 245, 139, 117, 117, 117, 35, 117, 35, (297,118): 117, 201, 117, 117, 139, 117, 117, 139, 117, 117, 201, (297,129): 117, 117, 35, 117, 35, 117, 117, 117, 117, 35, 117, 35, (297,141): 117, 117, 117, 117, 245, 245, 117, 117, 128, 232, 33, 33, (297,153): 33, 33, 128, 128, 33, 128, 128, 33, 128, 128, 35, 232, (297,165): 128, 35, 117, 245, 117, 245, 117, 139, 245, 139, 140, (297,176): 117, 117, 139, 35, 117, 117, 117, 117, 139, 117, 117, (297,187): 117, 117, 117, 140, 117, 117, 117, 117, 117, 117, 35, (297,198): 117, 35, 117, 35, 232, 33, 119, 119, 35, 35, 117, 35, 35, (297,211): 128, 117, 128, 33, 221, 46, 221, 33, 186, 220, 195, 128, (297,223): 186, 156, 116, 186, 156, 46, 11, 63, 97, 72, 128, 210, (297,235): 46, 146, 128, 221, 195, 116, 63, 224, 156, 221, 156, 221, (297,247): 88, 183, 137, 63, 195, 147, 146, 14, 253, 128, 186, 50, (297,259): 195, 128, 3, 49, 11, 128, 50, 253, 108, 221, 195, 11, (297,271): 116, 156, 49, 181, 116, 11, 156, 176, 195, 3, 195, 181, (297,283): 138, 108, 80, 105, 80, 222, 156, 146, 137, 137, 137, 216, (297,295): 90, 64, 121, 183, 91, 72, 232, 33, 100, 121, 121, 226, (297,307): 108, 156, 79, 234, 49, 100, 234, 18, 221, 245, 128, 128, (297,319): 128, 245, 128, 221, 116, 116, 66, 234, 182, 64, 64, 183, (297,331): 253, 2, 105, 63, 63, 78, 105, 253, 27, 253, 176, 63, 138, (297,344): 176, 253, 176, 91, 176, 34, 176, 91, 105, 253, 105, 2, (297,356): 181, 2, 187, 187, 2, 24, 180, 180, 28, 28, 28, 100, 28, (297,369): 28, 28, 100, 100, 100, 28, (298,0): 195, 234, 156, 33, 234, 234, 49, 33, 220, 49, 72, 49, 33, (298,13): 210, 46, 128, 79, 72, 195, 49, 195, 3, 221, 46, 46, 186, (298,26): 221, 185, 33, 33, 33, 119, 139, 117, 117, 139, 117, 245, (298,38): 139, 245, 245, 140, 245, 245, 139, 35, 35, 35, 232, 35, (298,50): 128, 232, 128, 232, 232, 232, 128, 232, 35, 35, 117, 35, (298,62): 128, 232, 35, 117, 35, 117, 245, 117, 245, 117, 140, 117, (298,74): 117, 117, 117, 117, 88, 117, 140, 117, 140, 117, 140, 117, (298,86): 140, 117, 140, 117, 139, 117, 117, 88, 117, 117, 117, 140, (298,98): 117, 140, 245, 245, 140, 140, 245, 140, 117, 117, 117, (298,109): 139, 35, 35, 117, 117, 117, 117, 35, 117, 117, 117, 117, (298,121): 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, 139, (298,132): 117, 117, 35, 117, 35, 117, 117, 117, 117, 35, 117, 35, (298,144): 117, 117, 117, 35, 128, 33, 128, 128, 221, 33, 128, 33, (298,156): 128, 128, 128, 128, 128, 119, 35, 35, 117, 11, 245, 245, (298,168): 245, 245, 245, 245, 245, 117, 139, 117, 117, 117, 117, (298,179): 117, 139, 117, 117, 117, 117, 117, 140, 117, 117, 140, (298,190): 117, 117, 117, 139, 117, 117, 117, 117, 201, 117, 35, 35, (298,202): 35, 35, 119, 35, 35, 35, 35, 128, 117, 117, 11, 117, 128, (298,215): 33, 33, 33, 221, 186, 156, 108, 220, 195, 180, 46, 88, (298,227): 221, 72, 117, 11, 156, 49, 195, 146, 79, 72, 128, 146, (298,239): 33, 138, 116, 186, 46, 105, 116, 50, 108, 186, 186, 186, (298,251): 46, 220, 49, 88, 49, 128, 224, 195, 108, 50, 186, 33, (298,263): 186, 128, 44, 221, 156, 72, 108, 183, 183, 108, 18, 195, (298,275): 186, 181, 72, 128, 253, 108, 220, 91, 220, 80, 186, 80, (298,287): 116, 146, 108, 50, 36, 141, 146, 138, 138, 223, 27, 183, (298,299): 123, 66, 234, 241, 93, 175, 2, 108, 108, 66, 220, 220, (298,311): 66, 72, 195, 116, 72, 221, 79, 128, 221, 224, 72, 49, (298,323): 234, 220, 63, 63, 220, 253, 253, 105, 63, 63, 78, 181, (298,335): 63, 63, 78, 50, 108, 108, 181, 63, 105, 181, 176, 183, (298,347): 137, 137, 137, 64, 64, 183, 183, 183, 104, 253, 2, 2, (298,359): 187, 2, 2, 180, 24, 63, 28, 100, 100, 100, 100, 100, 100, (298,372): 100, 100, 100, (299,0): 156, 195, 146, 195, 108, 195, 33, 11, 11, 11, 79, 49, 72, (299,13): 116, 72, 18, 195, 195, 18, 116, 116, 116, 186, 186, 128, (299,25): 33, 221, 33, 232, 33, 232, 232, 245, 117, 117, 117, 245, (299,37): 245, 88, 245, 245, 245, 140, 245, 245, 35, 35, 35, 128, (299,49): 35, 232, 232, 232, 33, 128, 33, 33, 33, 33, 33, 128, 33, (299,62): 232, 128, 35, 35, 117, 117, 117, 117, 140, 117, 117, 140, (299,74): 117, 117, 140, 117, 140, 117, 117, 117, 117, 117, 117, (299,85): 117, 117, 117, 117, 117, 88, 117, 117, 140, 117, 117, 140, (299,97): 117, 245, 245, 245, 139, 117, 245, 139, 117, 245, 139, (299,108): 245, 35, 245, 35, 35, 117, 35, 117, 139, 117, 117, 35, (299,120): 117, 117, 117, 117, 139, 117, 117, 117, 35, 117, 117, (299,131): 117, 117, 117, 139, 117, 117, 117, 35, 117, 139, 117, (299,142): 117, 117, 35, 35, 35, 33, 33, 33, 33, 128, 221, 33, 128, (299,155): 128, 221, 221, 128, 128, 35, 117, 11, 117, 117, 140, 245, (299,167): 88, 140, 117, 140, 117, 139, 117, 117, 35, 117, 117, 117, (299,179): 117, 117, 117, 117, 139, 117, 117, 117, 117, 117, 117, (299,190): 117, 117, 117, 117, 117, 35, 117, 35, 117, 117, 35, 117, (299,202): 35, 35, 35, 35, 35, 117, 128, 35, 35, 117, 88, 117, 35, (299,215): 35, 128, 128, 35, 128, 33, 186, 221, 11, 221, 79, 221, (299,227): 116, 195, 33, 11, 128, 117, 116, 195, 221, 33, 221, 49, (299,239): 128, 221, 46, 221, 11, 72, 3, 195, 221, 49, 72, 195, 79, (299,252): 49, 186, 195, 64, 8, 108, 128, 46, 195, 128, 11, 195, 11, (299,265): 116, 11, 221, 156, 221, 116, 72, 63, 108, 49, 195, 116, (299,277): 146, 128, 46, 156, 186, 181, 27, 36, 97, 64, 176, 195, (299,289): 78, 222, 253, 34, 116, 116, 46, 46, 128, 46, 49, 18, 234, (299,302): 66, 108, 220, 220, 156, 63, 221, 14, 220, 220, 33, 221, (299,314): 221, 79, 221, 116, 221, 116, 72, 195, 146, 146, 234, 50, (299,326): 220, 146, 72, 49, 234, 156, 156, 50, 108, 108, 220, 50, (299,338): 146, 186, 49, 50, 63, 176, 2, 176, 183, 183, 64, 223, (299,350): 223, 137, 27, 27, 27, 175, 183, 253, 2, 180, 63, 231, (299,362): 180, 180, 231, 63, 28, 28, 14, 100, 220, 100, 100, 100, (299,374): 63, (300,0): 72, 221, 221, 79, 156, 116, 33, 128, 18, 79, 116, 79, 128, (300,13): 11, 88, 117, 79, 128, 117, 11, 35, 128, 46, 116, 128, 128, (300,26): 33, 33, 128, 232, 232, 33, 35, 35, 35, 35, 245, 140, 140, (300,39): 88, 140, 245, 245, 140, 245, 245, 245, 117, 35, 35, 128, (300,51): 35, 128, 232, 232, 232, 33, 33, 33, 232, 33, 232, 33, 119, (300,64): 35, 117, 117, 117, 140, 117, 117, 117, 117, 117, 117, 140, (300,76): 117, 117, 117, 117, 140, 117, 140, 117, 140, 117, 140, (300,87): 117, 140, 117, 117, 140, 117, 117, 117, 139, 245, 140, (300,98): 139, 245, 140, 245, 140, 117, 140, 245, 139, 245, 117, (300,109): 139, 35, 35, 245, 35, 117, 117, 117, 117, 35, 139, 117, (300,121): 117, 117, 117, 117, 117, 139, 117, 117, 117, 35, 117, (300,132): 117, 117, 117, 117, 35, 139, 117, 117, 117, 117, 35, 117, (300,144): 232, 128, 128, 33, 33, 33, 33, 33, 128, 128, 128, 33, (300,156): 221, 128, 128, 221, 128, 117, 117, 88, 117, 117, 117, (300,167): 140, 245, 245, 117, 117, 117, 140, 139, 117, 117, 139, (300,178): 117, 117, 117, 117, 117, 117, 117, 117, 139, 117, 117, (300,189): 117, 139, 117, 117, 117, 117, 139, 117, 201, 35, 117, (300,200): 117, 35, 117, 35, 117, 35, 117, 117, 117, 88, 117, 117, (300,212): 35, 128, 33, 33, 195, 185, 221, 185, 221, 186, 125, 116, (300,224): 128, 221, 128, 35, 146, 220, 72, 116, 221, 117, 210, 186, (300,236): 128, 221, 186, 128, 88, 3, 221, 220, 3, 63, 128, 224, (300,248): 186, 195, 221, 72, 49, 156, 156, 79, 108, 50, 116, 11, (300,260): 72, 156, 72, 186, 195, 128, 210, 46, 49, 253, 64, 128, (300,272): 221, 156, 221, 49, 50, 63, 156, 3, 183, 50, 80, 156, 146, (300,285): 63, 49, 182, 64, 123, 104, 156, 50, 50, 3, 46, 111, 46, (300,298): 72, 3, 63, 72, 66, 72, 221, 221, 108, 72, 116, 116, 108, (300,311): 221, 72, 79, 221, 128, 221, 79, 72, 195, 50, 234, 49, (300,323): 234, 234, 234, 49, 234, 116, 146, 234, 234, 234, 220, (300,334): 182, 50, 156, 63, 108, 50, 105, 105, 253, 91, 105, 91, (300,346): 137, 137, 223, 36, 141, 64, 183, 104, 104, 91, 93, 104, (300,358): 2, 63, 100, 100, 108, 28, 28, 63, 28, 100, 100, 100, 100, (300,371): 100, 100, 100, 28, (301,0): 185, 186, 33, 11, 221, 195, 195, 195, 72, 221, 221, 128, (301,12): 33, 79, 116, 72, 79, 33, 128, 232, 128, 221, 35, 11, 128, (301,25): 128, 128, 128, 245, 245, 35, 232, 245, 35, 232, 35, 117, (301,37): 245, 245, 117, 245, 245, 140, 88, 140, 245, 140, 245, 117, (301,49): 117, 35, 35, 232, 128, 232, 128, 232, 232, 35, 232, 232, (301,61): 128, 35, 232, 117, 117, 117, 117, 117, 140, 117, 140, 117, (301,73): 140, 88, 117, 117, 117, 117, 140, 117, 117, 117, 117, 117, (301,85): 117, 117, 117, 117, 139, 117, 117, 117, 140, 117, 245, (301,96): 117, 245, 245, 139, 245, 139, 245, 139, 245, 139, 245, (301,107): 139, 245, 35, 35, 139, 117, 139, 35, 117, 35, 117, 117, (301,119): 117, 117, 117, 139, 117, 117, 117, 117, 117, 117, 117, (301,130): 139, 117, 35, 117, 201, 117, 117, 117, 117, 35, 117, 35, (301,142): 117, 117, 35, 232, 128, 33, 33, 33, 128, 35, 128, 35, 11, (301,155): 221, 221, 221, 128, 128, 35, 117, 117, 88, 117, 117, 117, (301,167): 117, 140, 117, 140, 117, 140, 117, 245, 139, 117, 117, (301,178): 117, 117, 117, 139, 117, 117, 117, 117, 117, 117, 35, (301,189): 117, 117, 117, 117, 117, 117, 117, 117, 35, 35, 35, 35, (301,201): 117, 35, 117, 35, 117, 117, 35, 117, 117, 117, 35, 232, (301,213): 119, 33, 119, 128, 128, 117, 117, 35, 35, 128, 116, 35, (301,225): 221, 186, 221, 11, 44, 35, 195, 195, 49, 33, 116, 88, (301,237): 128, 33, 128, 116, 128, 3, 3, 220, 46, 128, 186, 72, 220, (301,250): 49, 180, 72, 18, 14, 186, 33, 220, 108, 195, 186, 224, (301,262): 210, 88, 88, 3, 128, 33, 128, 128, 49, 63, 116, 156, 195, (301,275): 88, 221, 105, 37, 63, 64, 64, 253, 182, 46, 80, 63, 91, (301,288): 64, 123, 64, 182, 72, 146, 224, 80, 78, 146, 116, 49, 91, (301,301): 72, 46, 33, 221, 79, 72, 116, 72, 156, 220, 245, 128, (301,313): 128, 116, 72, 234, 234, 63, 108, 108, 50, 50, 78, 181, (301,325): 138, 50, 138, 234, 234, 234, 49, 49, 234, 14, 50, 156, (301,337): 63, 105, 181, 253, 253, 176, 176, 176, 91, 183, 90, 177, (301,349): 216, 37, 216, 223, 27, 105, 253, 253, 180, 63, 28, 63, (301,361): 108, 28, 63, 100, 100, 100, 100, 14, 100, 100, 100, 100, (301,373): 100, 100, (302,0): 33, 72, 195, 186, 66, 49, 186, 33, 49, 49, 14, 116, 116, (302,13): 72, 128, 128, 18, 18, 186, 185, 116, 221, 128, 128, 11, (302,25): 88, 11, 35, 128, 245, 245, 35, 245, 232, 232, 232, 117, (302,37): 140, 245, 140, 117, 140, 117, 245, 140, 245, 245, 245, (302,48): 117, 117, 117, 128, 35, 232, 35, 128, 35, 35, 128, 35, 35, (302,61): 35, 35, 35, 117, 117, 117, 140, 117, 117, 117, 117, 117, (302,73): 117, 117, 140, 117, 140, 117, 117, 117, 140, 117, 139, (302,84): 117, 140, 117, 117, 117, 88, 117, 140, 117, 117, 117, 140, (302,96): 117, 140, 139, 245, 140, 245, 140, 245, 140, 245, 245, (302,107): 245, 139, 35, 245, 35, 117, 117, 117, 117, 35, 139, 117, (302,119): 117, 117, 117, 117, 117, 117, 117, 117, 117, 35, 117, (302,130): 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, (302,141): 117, 35, 117, 232, 128, 35, 128, 128, 128, 35, 11, 33, (302,153): 11, 128, 221, 186, 128, 224, 221, 128, 35, 117, 88, 117, (302,165): 117, 117, 117, 117, 117, 139, 117, 139, 117, 139, 88, (302,176): 117, 117, 117, 139, 117, 117, 117, 117, 117, 201, 117, (302,187): 117, 117, 35, 117, 201, 117, 201, 117, 35, 35, 117, 35, (302,199): 35, 117, 35, 117, 35, 117, 35, 35, 35, 119, 35, 232, 232, (302,212): 33, 33, 119, 35, 125, 66, 185, 128, 33, 128, 88, 128, (302,224): 185, 11, 35, 221, 116, 185, 46, 221, 88, 72, 221, 11, 88, (302,237): 33, 186, 116, 138, 253, 181, 195, 224, 220, 116, 186, 72, (302,249): 221, 33, 156, 195, 195, 79, 11, 128, 46, 186, 221, 128, (302,261): 128, 186, 108, 146, 116, 186, 78, 116, 221, 186, 49, 33, (302,273): 50, 220, 50, 123, 108, 46, 50, 221, 49, 50, 156, 50, 3, (302,286): 182, 50, 195, 14, 180, 50, 195, 146, 234, 183, 141, 222, (302,298): 78, 105, 64, 253, 108, 234, 49, 2, 2, 2, 195, 220, 72, (302,311): 49, 221, 116, 234, 49, 63, 108, 180, 63, 182, 234, 234, (302,323): 50, 181, 181, 108, 50, 49, 234, 234, 49, 146, 49, 234, (302,335): 49, 146, 156, 108, 49, 156, 156, 105, 181, 91, 91, 137, (302,347): 223, 36, 177, 97, 37, 177, 64, 104, 105, 2, 63, 108, 63, (302,360): 63, 63, 28, 100, 100, 100, 14, 100, 100, 100, 100, 100, (302,372): 100, 100, 28, (303,0): 14, 49, 186, 195, 72, 33, 11, 221, 35, 221, 195, 33, 33, (303,13): 195, 33, 33, 33, 33, 221, 79, 221, 79, 186, 186, 128, 35, (303,26): 128, 33, 33, 35, 245, 35, 245, 35, 232, 35, 245, 245, 140, (303,39): 117, 245, 117, 245, 140, 245, 117, 117, 117, 117, 117, 35, (303,51): 35, 128, 232, 128, 232, 128, 232, 128, 35, 128, 117, 117, (303,63): 117, 117, 117, 117, 88, 117, 88, 140, 117, 117, 140, 117, (303,75): 117, 117, 117, 117, 117, 140, 117, 117, 88, 117, 117, 117, (303,87): 140, 88, 139, 117, 117, 117, 140, 117, 245, 139, 245, 245, (303,99): 140, 245, 139, 117, 245, 245, 139, 245, 139, 245, 245, 35, (303,111): 139, 117, 117, 35, 117, 117, 117, 117, 35, 117, 117, 117, (303,123): 117, 117, 139, 117, 117, 139, 117, 35, 117, 35, 117, 35, (303,135): 117, 117, 35, 117, 139, 35, 117, 117, 117, 35, 128, 35, (303,147): 35, 35, 117, 11, 117, 221, 128, 33, 185, 186, 221, 128, (303,159): 33, 35, 117, 117, 88, 140, 117, 117, 117, 139, 117, 117, (303,171): 117, 245, 117, 140, 117, 139, 117, 117, 117, 117, 117, (303,182): 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, (303,193): 117, 35, 117, 35, 35, 35, 35, 35, 117, 35, 117, 117, 117, (303,206): 117, 35, 245, 35, 35, 232, 79, 79, 33, 33, 33, 195, 221, (303,219): 88, 33, 33, 117, 128, 33, 128, 186, 72, 33, 46, 146, 195, (303,232): 46, 221, 11, 221, 138, 72, 146, 146, 49, 182, 220, 182, (303,244): 116, 49, 224, 156, 221, 220, 91, 195, 128, 186, 186, 156, (303,256): 128, 116, 221, 128, 221, 49, 80, 116, 195, 105, 108, 49, (303,268): 210, 50, 50, 220, 46, 186, 156, 156, 46, 63, 220, 220, (303,280): 108, 116, 116, 186, 64, 63, 177, 97, 14, 108, 195, 49, (303,292): 220, 78, 64, 121, 223, 63, 36, 223, 253, 64, 253, 180, (303,304): 72, 72, 49, 18, 156, 72, 72, 221, 64, 252, 253, 108, 63, (303,317): 100, 181, 2, 182, 234, 49, 234, 78, 253, 181, 220, 138, (303,329): 181, 105, 181, 181, 180, 138, 50, 156, 156, 2, 50, 182, (303,341): 50, 183, 176, 183, 183, 137, 137, 183, 176, 12, 90, 223, (303,353): 27, 104, 91, 104, 2, 2, 187, 63, 63, 63, 100, 108, 100, (303,366): 100, 100, 100, 100, 100, 100, 100, 100, 180, (304,0): 156, 14, 14, 156, 18, 33, 33, 33, 195, 195, 66, 72, 186, (304,13): 79, 33, 33, 128, 128, 33, 186, 195, 72, 79, 33, 35, 11, (304,26): 35, 33, 33, 232, 35, 232, 245, 140, 88, 140, 245, 140, (304,38): 245, 245, 117, 117, 245, 117, 245, 140, 139, 117, 117, (304,49): 117, 35, 35, 35, 35, 35, 35, 128, 232, 232, 128, 232, 35, (304,62): 35, 35, 88, 117, 140, 117, 140, 88, 88, 140, 117, 88, 117, (304,75): 140, 117, 140, 88, 140, 117, 139, 117, 140, 117, 139, 117, (304,87): 117, 35, 117, 117, 117, 245, 117, 117, 117, 245, 117, 117, (304,99): 139, 245, 245, 245, 139, 245, 245, 245, 117, 117, 139, 35, (304,111): 117, 117, 117, 140, 35, 117, 117, 117, 139, 117, 117, (304,122): 139, 117, 35, 117, 35, 117, 117, 117, 117, 35, 139, 117, (304,134): 117, 35, 35, 117, 35, 117, 117, 139, 117, 117, 35, 128, (304,146): 33, 33, 11, 88, 119, 33, 125, 186, 79, 128, 119, 35, 128, (304,159): 119, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (304,170): 117, 139, 117, 140, 117, 88, 117, 117, 117, 117, 117, (304,181): 139, 117, 117, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, (304,194): 35, 35, 35, 35, 35, 35, 117, 117, 117, 35, 119, 117, 88, (304,207): 117, 117, 35, 33, 185, 72, 18, 79, 128, 33, 33, 128, 33, (304,220): 221, 221, 128, 128, 116, 182, 182, 11, 146, 49, 49, 46, (304,232): 46, 111, 46, 80, 222, 138, 78, 176, 34, 105, 46, 105, (304,244): 105, 116, 182, 221, 50, 111, 128, 3, 186, 49, 116, 72, (304,256): 156, 220, 108, 195, 116, 156, 220, 186, 146, 186, 116, (304,267): 146, 105, 3, 186, 37, 64, 50, 195, 128, 128, 11, 186, (304,279): 111, 186, 146, 138, 91, 253, 64, 181, 181, 50, 105, 221, (304,291): 50, 175, 123, 183, 91, 27, 220, 49, 108, 195, 49, 253, (304,303): 108, 195, 72, 186, 221, 79, 72, 156, 100, 37, 123, 180, (304,315): 63, 2, 108, 63, 108, 108, 234, 234, 78, 183, 27, 176, 2, (304,328): 63, 181, 176, 176, 91, 176, 176, 91, 108, 50, 91, 104, (304,340): 253, 91, 253, 183, 253, 137, 64, 64, 90, 223, 137, 104, (304,352): 64, 27, 104, 2, 180, 180, 180, 180, 100, 28, 63, 28, 100, (304,365): 100, 108, 100, 100, 100, 100, 63, 28, 63, 28, (305,0): 35, 245, 245, 33, 33, 79, 186, 66, 79, 79, 221, 232, 11, (305,13): 245, 128, 33, 35, 221, 72, 72, 185, 79, 186, 72, 128, 33, (305,26): 128, 79, 33, 128, 245, 35, 245, 245, 245, 245, 140, 245, (305,38): 245, 140, 245, 139, 140, 117, 245, 117, 117, 245, 35, 117, (305,50): 128, 35, 128, 35, 128, 35, 232, 232, 128, 35, 35, 128, 35, (305,63): 35, 117, 117, 117, 140, 117, 117, 140, 88, 117, 140, 117, (305,75): 117, 117, 117, 117, 117, 117, 117, 139, 117, 139, 117, (305,86): 140, 117, 140, 117, 245, 140, 88, 140, 245, 117, 88, 139, (305,98): 245, 245, 117, 140, 117, 117, 117, 117, 139, 245, 35, 117, (305,110): 117, 35, 117, 117, 139, 117, 117, 139, 117, 117, 117, (305,121): 117, 117, 117, 35, 117, 35, 35, 117, 35, 117, 117, 117, (305,133): 117, 117, 139, 35, 117, 35, 117, 117, 35, 35, 35, 128, (305,145): 33, 128, 35, 117, 117, 128, 33, 185, 33, 128, 119, 117, (305,157): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 139, (305,168): 35, 117, 117, 117, 117, 117, 117, 139, 117, 117, 139, (305,179): 117, 117, 117, 117, 139, 35, 117, 35, 117, 139, 117, 35, (305,191): 117, 35, 35, 35, 35, 35, 117, 35, 117, 117, 117, 117, (305,203): 117, 117, 117, 117, 117, 35, 128, 117, 33, 79, 18, 186, (305,215): 18, 221, 116, 128, 11, 44, 88, 46, 49, 111, 146, 222, (305,227): 116, 3, 3, 182, 182, 133, 3, 222, 78, 34, 124, 203, 203, (305,240): 181, 49, 146, 116, 182, 72, 80, 146, 46, 234, 121, 50, (305,252): 116, 3, 116, 72, 128, 79, 195, 72, 33, 72, 234, 195, 146, (305,265): 49, 78, 50, 116, 138, 3, 3, 221, 128, 11, 156, 221, 3, (305,278): 33, 72, 49, 156, 183, 220, 108, 138, 234, 180, 234, 72, (305,290): 234, 183, 216, 223, 2, 27, 121, 63, 220, 183, 180, 195, (305,302): 108, 100, 116, 66, 72, 33, 116, 100, 63, 234, 108, 2, 63, (305,315): 63, 220, 186, 66, 108, 108, 156, 50, 27, 223, 137, 27, (305,327): 64, 78, 105, 91, 91, 105, 63, 50, 234, 108, 220, 253, (305,339): 105, 181, 91, 183, 141, 223, 177, 97, 177, 121, 121, 223, (305,351): 64, 175, 93, 104, 187, 180, 180, 180, 108, 100, 100, 100, (305,363): 108, 100, 220, 100, 100, 100, 108, 153, 180, 63, 28, 180, (306,0): 49, 195, 116, 128, 128, 128, 11, 210, 44, 88, 221, 186, (306,12): 195, 195, 116, 221, 116, 221, 221, 33, 221, 33, 128, 232, (306,24): 117, 128, 128, 33, 33, 35, 245, 35, 245, 117, 245, 245, (306,36): 245, 140, 245, 117, 245, 117, 245, 245, 140, 245, 117, (306,47): 117, 35, 117, 35, 35, 128, 35, 35, 35, 128, 35, 35, 35, (306,60): 128, 117, 35, 35, 117, 117, 117, 117, 140, 117, 117, 140, (306,72): 117, 117, 117, 140, 117, 140, 117, 140, 117, 139, 88, 117, (306,84): 117, 117, 117, 117, 140, 245, 117, 117, 245, 88, 245, 245, (306,96): 245, 117, 117, 117, 117, 117, 117, 140, 117, 117, 245, (306,107): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 245, (306,118): 139, 117, 117, 139, 117, 139, 117, 139, 35, 139, 117, (306,129): 117, 139, 117, 117, 139, 117, 117, 117, 117, 139, 117, (306,140): 35, 35, 232, 232, 33, 33, 117, 11, 117, 33, 119, 33, 35, (306,153): 232, 35, 117, 117, 117, 245, 117, 117, 117, 117, 117, (306,164): 117, 139, 117, 117, 117, 117, 35, 117, 117, 117, 117, 88, (306,176): 117, 117, 117, 117, 117, 117, 117, 245, 117, 35, 139, (306,187): 117, 35, 117, 35, 35, 117, 117, 201, 117, 117, 35, 117, (306,199): 117, 35, 117, 117, 117, 128, 117, 128, 33, 116, 33, 33, (306,211): 33, 221, 116, 186, 186, 221, 79, 3, 195, 49, 146, 186, (306,223): 46, 111, 116, 222, 182, 80, 133, 182, 222, 22, 22, 138, (306,235): 12, 90, 12, 78, 3, 12, 181, 78, 46, 156, 186, 146, 116, (306,248): 182, 182, 116, 50, 111, 46, 3, 50, 46, 245, 11, 221, 221, (306,261): 3, 234, 50, 146, 221, 108, 49, 78, 72, 11, 116, 156, 72, (306,274): 128, 88, 11, 11, 186, 108, 72, 50, 234, 108, 64, 253, 78, (306,287): 234, 183, 146, 63, 181, 64, 105, 50, 2, 123, 27, 104, (306,299): 104, 100, 66, 66, 79, 221, 116, 79, 33, 195, 63, 108, (306,311): 185, 79, 49, 66, 220, 220, 18, 72, 195, 186, 46, 195, 63, (306,324): 253, 63, 138, 105, 234, 222, 180, 138, 50, 146, 3, 72, (306,336): 72, 72, 138, 180, 108, 2, 183, 223, 177, 97, 216, 36, (306,348): 141, 141, 223, 64, 175, 175, 252, 51, 2, 28, 100, 100, (306,360): 14, 14, 14, 14, 14, 14, 100, 100, 63, 28, 63, 28, 153, (306,373): 63, 180, (307,0): 182, 63, 50, 146, 156, 105, 253, 108, 146, 116, 224, 3, (307,12): 156, 108, 50, 146, 195, 186, 221, 221, 116, 116, 224, 117, (307,24): 11, 232, 33, 33, 33, 245, 128, 35, 35, 35, 117, 139, 245, (307,37): 117, 245, 140, 117, 117, 245, 140, 245, 245, 245, 245, (307,48): 245, 35, 117, 35, 117, 35, 117, 117, 35, 35, 117, 35, 117, (307,61): 35, 35, 117, 117, 117, 117, 140, 117, 117, 140, 117, 117, (307,73): 117, 140, 117, 117, 117, 117, 117, 117, 88, 139, 117, 139, (307,85): 117, 117, 139, 88, 139, 35, 35, 117, 140, 245, 117, 117, (307,97): 140, 117, 140, 117, 140, 117, 117, 117, 140, 117, 245, (307,108): 139, 245, 35, 139, 245, 35, 139, 245, 139, 117, 117, 139, (307,120): 117, 117, 117, 117, 117, 35, 117, 117, 139, 117, 117, 35, (307,132): 117, 117, 117, 117, 245, 35, 117, 35, 35, 35, 232, 232, (307,144): 33, 128, 117, 117, 35, 232, 33, 35, 128, 35, 232, 35, 35, (307,157): 117, 117, 117, 117, 117, 139, 117, 117, 117, 117, 117, (307,168): 117, 117, 117, 139, 117, 88, 139, 117, 117, 117, 139, (307,179): 245, 117, 139, 117, 117, 35, 35, 117, 35, 35, 117, 139, (307,191): 117, 35, 117, 117, 117, 35, 117, 117, 117, 128, 117, 117, (307,203): 35, 128, 128, 128, 33, 116, 79, 46, 79, 116, 116, 79, 33, (307,216): 221, 128, 11, 128, 46, 72, 195, 146, 182, 46, 146, 222, (307,228): 182, 80, 222, 50, 80, 138, 12, 137, 12, 12, 78, 182, 224, (307,241): 146, 116, 146, 176, 182, 183, 78, 234, 46, 176, 78, 64, (307,253): 64, 108, 11, 44, 49, 63, 116, 128, 195, 234, 221, 146, (307,265): 253, 50, 50, 116, 50, 186, 186, 224, 146, 63, 50, 91, 63, (307,278): 138, 234, 182, 49, 105, 91, 138, 78, 72, 78, 50, 46, 72, (307,291): 72, 50, 180, 108, 116, 195, 63, 220, 66, 146, 195, 195, (307,303): 128, 79, 33, 33, 72, 220, 14, 195, 79, 234, 14, 72, 14, (307,316): 63, 234, 72, 79, 33, 116, 3, 72, 146, 49, 156, 156, 234, (307,329): 80, 234, 146, 72, 3, 146, 49, 234, 234, 180, 105, 78, (307,341): 253, 141, 37, 97, 216, 97, 177, 121, 121, 223, 64, 175, (307,353): 93, 104, 187, 180, 63, 100, 14, 14, 14, 234, 241, 14, 14, (307,366): 100, 100, 63, 28, 28, 28, 63, 28, 180, (308,0): 46, 116, 111, 11, 111, 80, 108, 138, 50, 49, 116, 111, 46, (308,13): 46, 111, 128, 128, 46, 116, 46, 128, 128, 128, 221, 221, (308,25): 33, 221, 79, 33, 128, 245, 128, 232, 232, 35, 117, 117, (308,37): 117, 117, 35, 117, 117, 245, 139, 245, 117, 117, 117, 117, (308,49): 245, 117, 117, 117, 117, 117, 11, 117, 117, 11, 35, 117, (308,61): 117, 117, 35, 117, 117, 117, 117, 117, 140, 117, 117, 140, (308,73): 117, 117, 117, 140, 117, 140, 117, 139, 117, 117, 117, (308,84): 117, 117, 139, 117, 117, 232, 128, 232, 245, 245, 245, (308,95): 245, 245, 117, 117, 117, 245, 117, 245, 140, 117, 117, (308,106): 117, 245, 117, 117, 117, 117, 139, 117, 245, 139, 117, (308,117): 117, 117, 117, 117, 139, 117, 139, 35, 117, 35, 35, 117, (308,129): 117, 117, 245, 117, 35, 117, 117, 35, 117, 35, 245, 245, (308,141): 35, 117, 117, 35, 35, 35, 128, 128, 128, 35, 35, 232, (308,153): 128, 232, 232, 35, 35, 35, 35, 117, 117, 117, 117, 117, (308,165): 117, 117, 139, 117, 117, 117, 117, 117, 117, 117, 117, (308,176): 117, 35, 117, 35, 35, 117, 35, 245, 35, 117, 35, 117, 35, (308,189): 35, 117, 35, 117, 117, 35, 117, 117, 117, 117, 117, 117, (308,201): 88, 11, 35, 128, 35, 128, 128, 35, 128, 33, 79, 79, 79, (308,214): 221, 224, 72, 186, 79, 221, 33, 3, 50, 105, 138, 3, 3, (308,227): 133, 3, 80, 138, 105, 176, 181, 222, 78, 90, 223, 78, 46, (308,240): 146, 220, 72, 182, 63, 234, 78, 156, 146, 116, 44, 50, (308,252): 116, 11, 128, 46, 63, 72, 116, 138, 63, 116, 224, 234, (308,264): 234, 128, 116, 50, 50, 195, 141, 138, 221, 3, 11, 186, (308,276): 80, 181, 49, 49, 72, 182, 105, 89, 183, 234, 50, 72, 234, (308,289): 220, 146, 234, 195, 108, 180, 116, 33, 116, 128, 79, 79, (308,301): 245, 11, 232, 221, 33, 79, 195, 14, 234, 72, 79, 195, (308,313): 108, 14, 63, 14, 195, 18, 195, 72, 195, 66, 72, 49, 50, (308,326): 108, 220, 138, 220, 234, 146, 49, 49, 234, 182, 78, 63, (308,338): 181, 2, 63, 253, 97, 89, 37, 216, 216, 97, 216, 97, 121, (308,351): 175, 183, 104, 2, 24, 108, 100, 100, 14, 14, 234, 241, (308,363): 241, 234, 14, 100, 28, 180, 28, 108, 100, 63, 24, 187, (309,0): 138, 80, 80, 222, 156, 46, 224, 3, 111, 186, 80, 156, 80, (309,13): 80, 80, 50, 46, 116, 186, 46, 221, 224, 128, 128, 128, (309,25): 128, 128, 224, 33, 128, 128, 33, 245, 35, 35, 35, 117, (309,37): 117, 117, 117, 117, 117, 245, 117, 245, 117, 245, 35, 117, (309,49): 245, 35, 11, 117, 117, 245, 245, 117, 117, 117, 117, 117, (309,61): 35, 117, 117, 117, 117, 117, 140, 117, 117, 117, 140, 117, (309,73): 117, 117, 140, 117, 117, 117, 117, 117, 117, 140, 117, (309,84): 117, 35, 117, 35, 232, 35, 35, 245, 35, 245, 245, 88, 245, (309,97): 117, 88, 117, 117, 140, 117, 117, 245, 117, 245, 117, 117, (309,109): 117, 117, 117, 117, 139, 117, 117, 117, 139, 117, 139, (309,120): 117, 117, 117, 117, 117, 139, 35, 139, 35, 117, 35, 139, (309,132): 117, 117, 245, 35, 35, 139, 117, 117, 117, 245, 117, 117, (309,144): 11, 35, 128, 33, 33, 119, 128, 232, 128, 232, 232, 35, (309,156): 35, 35, 35, 35, 139, 117, 117, 117, 139, 117, 117, 117, (309,168): 88, 139, 117, 140, 117, 35, 117, 117, 117, 35, 117, 35, (309,180): 245, 35, 117, 35, 35, 35, 35, 35, 35, 117, 35, 35, 117, (309,193): 35, 117, 35, 117, 35, 117, 117, 117, 117, 117, 128, 128, (309,205): 128, 35, 128, 232, 128, 128, 128, 128, 33, 128, 128, 128, (309,217): 33, 116, 186, 116, 116, 116, 116, 3, 3, 3, 182, 80, 50, (309,230): 124, 176, 91, 90, 223, 176, 50, 3, 3, 146, 234, 111, 72, (309,243): 3, 116, 234, 146, 234, 181, 108, 181, 128, 116, 182, 108, (309,255): 72, 11, 224, 11, 128, 49, 234, 46, 11, 49, 223, 223, 216, (309,268): 49, 186, 183, 27, 105, 50, 3, 80, 50, 108, 182, 50, 36, (309,281): 234, 50, 182, 146, 46, 133, 49, 91, 27, 63, 253, 72, 18, (309,294): 234, 116, 221, 18, 128, 35, 128, 88, 35, 128, 245, 221, (309,306): 18, 79, 116, 66, 18, 33, 33, 234, 156, 14, 14, 186, 195, (309,319): 195, 156, 195, 146, 156, 14, 49, 49, 49, 50, 50, 49, 49, (309,332): 146, 49, 49, 49, 234, 50, 63, 105, 63, 181, 175, 223, (309,344): 177, 121, 223, 223, 141, 223, 183, 253, 187, 207, 180, (309,355): 100, 100, 14, 234, 241, 14, 241, 66, 241, 234, 14, 100, (309,367): 100, 28, 100, 100, 100, 28, 24, 187, (310,0): 146, 186, 49, 181, 181, 80, 49, 50, 137, 64, 12, 105, 182, (310,13): 195, 146, 80, 108, 80, 195, 3, 195, 146, 186, 46, 116, (310,25): 224, 128, 33, 224, 33, 128, 33, 35, 245, 245, 35, 245, 35, (310,38): 35, 35, 35, 35, 35, 117, 117, 35, 35, 35, 245, 35, 35, 35, (310,52): 35, 245, 117, 117, 245, 245, 245, 245, 117, 117, 117, 35, (310,64): 117, 117, 117, 35, 117, 117, 140, 117, 117, 140, 117, 117, (310,76): 117, 140, 117, 140, 117, 140, 117, 35, 117, 35, 35, 35, (310,88): 128, 35, 245, 35, 128, 35, 35, 117, 245, 245, 117, 245, (310,100): 245, 117, 245, 245, 117, 245, 117, 245, 117, 117, 35, (310,111): 117, 117, 117, 117, 117, 117, 117, 117, 117, 139, 117, (310,122): 117, 35, 35, 117, 117, 35, 117, 117, 245, 35, 35, 245, (310,134): 139, 245, 35, 35, 35, 245, 117, 139, 35, 35, 232, 128, (310,146): 33, 33, 33, 33, 33, 33, 33, 33, 35, 35, 35, 245, 139, (310,159): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (310,170): 117, 117, 117, 117, 35, 35, 117, 35, 117, 35, 117, 35, (310,182): 245, 35, 245, 117, 245, 35, 245, 35, 117, 35, 35, 139, (310,194): 35, 35, 117, 35, 35, 35, 128, 128, 128, 33, 33, 128, 128, (310,207): 33, 221, 79, 79, 79, 33, 128, 128, 128, 220, 195, 116, (310,219): 116, 72, 146, 195, 3, 111, 80, 182, 138, 78, 176, 181, (310,231): 105, 91, 91, 176, 108, 116, 128, 128, 46, 72, 210, 49, (310,243): 46, 46, 234, 80, 116, 108, 234, 44, 116, 46, 116, 234, (310,255): 111, 50, 222, 146, 46, 46, 116, 138, 121, 105, 195, 221, (310,267): 108, 64, 66, 49, 105, 105, 181, 34, 156, 22, 182, 105, (310,279): 222, 182, 138, 146, 234, 105, 181, 37, 37, 108, 234, 220, (310,291): 180, 234, 128, 245, 35, 11, 79, 128, 245, 33, 195, 63, (310,303): 234, 117, 79, 221, 128, 128, 79, 79, 128, 33, 18, 79, (310,315): 195, 66, 195, 195, 195, 156, 49, 66, 156, 49, 195, 195, (310,327): 49, 195, 146, 49, 146, 72, 72, 3, 3, 49, 50, 63, 91, 253, (310,341): 181, 104, 105, 27, 183, 91, 183, 252, 253, 180, 63, 2, (310,353): 180, 180, 63, 100, 100, 14, 66, 14, 66, 66, 66, 14, 14, (310,366): 14, 100, 14, 14, 100, 100, 63, 180, 180, (311,0): 221, 46, 46, 221, 46, 195, 146, 146, 128, 46, 146, 220, 50, (311,13): 50, 156, 146, 186, 3, 3, 46, 46, 46, 72, 49, 50, 49, 116, (311,27): 116, 46, 128, 128, 11, 11, 35, 117, 245, 35, 245, 245, 35, (311,40): 35, 35, 245, 35, 245, 35, 245, 35, 128, 35, 128, 35, 128, (311,53): 35, 117, 117, 245, 88, 245, 245, 245, 11, 117, 117, 117, (311,65): 35, 117, 117, 139, 117, 117, 117, 117, 117, 117, 117, 140, (311,77): 117, 117, 117, 117, 117, 139, 35, 117, 35, 35, 35, 33, (311,89): 128, 245, 245, 128, 33, 33, 232, 245, 245, 117, 245, 117, (311,101): 245, 117, 245, 117, 245, 245, 117, 117, 117, 117, 117, (311,112): 117, 139, 117, 117, 139, 117, 139, 117, 117, 139, 117, (311,123): 139, 35, 117, 35, 35, 117, 245, 35, 245, 245, 35, 245, (311,135): 35, 245, 35, 245, 35, 35, 232, 232, 232, 33, 128, 33, (311,147): 128, 79, 79, 79, 33, 33, 33, 33, 35, 117, 117, 117, 35, (311,160): 117, 117, 35, 117, 117, 117, 139, 117, 117, 140, 117, (311,171): 117, 139, 35, 117, 117, 35, 117, 35, 35, 245, 35, 35, (311,183): 245, 35, 35, 35, 117, 35, 245, 35, 117, 35, 35, 35, 35, (311,196): 35, 35, 128, 35, 33, 128, 35, 128, 128, 35, 128, 33, 33, (311,209): 79, 18, 72, 72, 18, 186, 116, 116, 116, 116, 46, 46, 72, (311,222): 156, 108, 234, 138, 80, 182, 78, 137, 105, 181, 182, 146, (311,234): 116, 221, 46, 221, 46, 79, 3, 116, 181, 181, 253, 91, (311,246): 177, 220, 116, 3, 72, 146, 116, 11, 3, 72, 80, 182, 78, (311,259): 137, 36, 181, 116, 116, 63, 221, 46, 72, 195, 2, 180, (311,271): 108, 182, 141, 216, 90, 182, 34, 78, 3, 222, 176, 46, 46, (311,284): 124, 141, 176, 78, 91, 234, 234, 128, 221, 221, 128, 116, (311,296): 66, 79, 128, 116, 72, 18, 100, 108, 18, 33, 128, 79, 33, (311,309): 35, 128, 79, 79, 195, 79, 18, 195, 72, 66, 156, 185, 49, (311,322): 195, 221, 221, 49, 220, 49, 49, 234, 220, 49, 3, 116, 72, (311,335): 234, 50, 50, 220, 63, 63, 108, 253, 2, 104, 91, 252, 104, (311,348): 104, 2, 2, 2, 2, 24, 180, 180, 180, 100, 14, 234, 241, (311,361): 234, 66, 66, 241, 14, 14, 14, 14, 100, 100, 28, 24, 24, (311,374): 180, (312,0): 183, 253, 108, 195, 72, 49, 156, 14, 49, 33, 128, 79, 186, (312,13): 33, 33, 186, 46, 195, 156, 182, 220, 49, 156, 50, 186, (312,25): 195, 49, 49, 18, 128, 11, 35, 35, 35, 245, 117, 245, 245, (312,38): 117, 35, 35, 35, 245, 245, 117, 245, 232, 35, 128, 232, (312,50): 128, 232, 232, 35, 128, 117, 117, 117, 245, 117, 245, 245, (312,62): 245, 245, 245, 140, 117, 117, 88, 117, 140, 117, 140, 140, (312,74): 117, 140, 117, 117, 117, 201, 88, 117, 117, 35, 232, 232, (312,86): 35, 245, 245, 117, 117, 128, 35, 128, 128, 33, 33, 79, (312,98): 232, 117, 117, 88, 88, 117, 117, 117, 245, 245, 117, 35, (312,110): 232, 35, 117, 117, 117, 117, 117, 117, 117, 117, 117, (312,121): 117, 117, 117, 117, 139, 117, 117, 35, 35, 139, 35, 35, (312,133): 245, 35, 35, 35, 245, 245, 117, 117, 35, 232, 33, 33, 33, (312,146): 79, 79, 185, 33, 33, 33, 185, 33, 232, 232, 35, 35, 232, (312,159): 35, 117, 35, 139, 117, 117, 35, 117, 117, 117, 201, 117, (312,171): 117, 117, 117, 117, 35, 117, 35, 245, 245, 35, 245, 128, (312,183): 35, 245, 35, 245, 35, 245, 128, 35, 35, 128, 35, 245, (312,195): 245, 128, 33, 128, 128, 128, 128, 33, 128, 128, 128, 128, (312,207): 128, 128, 79, 33, 33, 221, 33, 79, 11, 33, 221, 116, 49, (312,220): 156, 146, 156, 138, 78, 138, 253, 105, 78, 108, 80, 50, (312,232): 220, 46, 46, 128, 116, 221, 50, 253, 33, 116, 105, 183, (312,244): 108, 116, 221, 78, 156, 180, 116, 11, 116, 72, 49, 221, (312,256): 176, 50, 50, 3, 146, 12, 234, 49, 3, 234, 72, 221, 195, (312,269): 72, 79, 49, 182, 80, 3, 22, 63, 124, 78, 156, 146, 80, (312,282): 146, 138, 105, 63, 50, 72, 221, 116, 79, 33, 128, 128, (312,294): 18, 234, 104, 2, 2, 187, 63, 18, 35, 232, 35, 35, 35, 33, (312,308): 79, 79, 79, 79, 79, 79, 18, 72, 204, 66, 241, 14, 156, (312,321): 156, 66, 186, 72, 195, 195, 186, 49, 49, 108, 63, 138, (312,333): 108, 78, 108, 220, 146, 234, 2, 105, 63, 108, 105, 2, 2, (312,346): 187, 252, 104, 2, 63, 180, 2, 2, 207, 180, 28, 220, 241, (312,359): 66, 66, 14, 100, 14, 14, 14, 100, 14, 66, 100, 63, 180, (312,372): 63, 180, 24, (313,0): 33, 35, 35, 33, 33, 232, 33, 195, 14, 125, 221, 79, 195, (313,13): 195, 66, 156, 3, 186, 46, 186, 49, 49, 3, 46, 146, 49, (313,26): 156, 234, 72, 33, 128, 221, 245, 245, 245, 245, 245, 117, (313,38): 245, 245, 245, 245, 117, 245, 117, 35, 35, 128, 232, 128, (313,50): 232, 128, 232, 128, 35, 35, 117, 35, 117, 117, 117, 117, (313,62): 245, 245, 117, 117, 117, 117, 139, 117, 117, 117, 117, (313,73): 117, 117, 117, 140, 117, 117, 117, 117, 35, 119, 55, 33, (313,85): 232, 128, 232, 128, 117, 232, 128, 128, 33, 33, 33, 18, (313,97): 185, 79, 33, 232, 35, 35, 232, 232, 35, 35, 117, 35, 117, (313,110): 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, (313,121): 117, 35, 117, 117, 117, 117, 35, 35, 35, 245, 35, 117, (313,133): 245, 35, 245, 35, 139, 117, 245, 35, 35, 232, 232, 33, (313,145): 33, 33, 35, 128, 119, 33, 33, 33, 33, 232, 35, 35, 117, (313,158): 35, 35, 117, 117, 117, 117, 117, 117, 117, 35, 117, 117, (313,170): 117, 117, 117, 35, 117, 117, 35, 117, 35, 35, 245, 35, (313,182): 35, 128, 35, 128, 35, 11, 35, 245, 35, 35, 35, 117, 232, (313,195): 33, 128, 35, 35, 35, 117, 128, 33, 221, 33, 33, 128, 33, (313,208): 11, 79, 221, 33, 33, 128, 116, 33, 195, 195, 195, 49, (313,220): 195, 186, 195, 234, 116, 46, 3, 72, 146, 234, 146, 50, (313,232): 116, 128, 221, 221, 195, 33, 195, 50, 27, 108, 108, 11, (313,244): 128, 221, 156, 253, 221, 46, 46, 116, 72, 49, 234, 181, (313,256): 46, 124, 78, 146, 234, 72, 105, 50, 234, 105, 220, 116, (313,268): 49, 72, 195, 63, 176, 138, 3, 222, 124, 105, 105, 34, 3, (313,281): 72, 46, 72, 116, 111, 46, 128, 116, 33, 33, 11, 128, 79, (313,294): 66, 14, 234, 2, 187, 100, 18, 79, 79, 128, 33, 128, 33, (313,307): 33, 79, 116, 18, 18, 79, 18, 72, 204, 18, 116, 18, 72, (313,320): 195, 195, 72, 186, 186, 72, 72, 186, 220, 63, 183, 64, (313,332): 175, 183, 253, 108, 104, 2, 50, 234, 234, 220, 2, 104, (313,344): 27, 253, 2, 2, 180, 24, 180, 180, 2, 24, 180, 63, 100, (313,357): 14, 241, 234, 66, 14, 100, 14, 14, 14, 14, 100, 63, 180, (313,370): 24, 24, 24, 24, 187, (314,0): 245, 128, 35, 210, 35, 72, 18, 33, 186, 18, 185, 79, 185, (314,13): 72, 185, 33, 221, 224, 46, 46, 224, 128, 128, 33, 72, 49, (314,26): 156, 156, 72, 33, 33, 221, 128, 128, 117, 245, 11, 117, (314,38): 117, 11, 245, 245, 245, 11, 117, 117, 35, 35, 128, 232, (314,50): 128, 232, 232, 35, 35, 128, 35, 35, 35, 35, 117, 35, 117, (314,63): 35, 140, 117, 140, 117, 88, 117, 140, 117, 117, 140, 117, (314,75): 140, 117, 117, 117, 35, 117, 35, 33, 128, 119, 35, 117, (314,87): 35, 128, 128, 35, 128, 33, 33, 221, 33, 186, 18, 185, 79, (314,100): 33, 33, 33, 185, 128, 33, 232, 128, 35, 128, 35, 117, (314,112): 117, 117, 35, 117, 117, 117, 117, 117, 117, 35, 35, 35, (314,124): 117, 117, 35, 232, 245, 245, 35, 245, 35, 139, 35, 245, (314,136): 35, 245, 35, 245, 117, 35, 232, 232, 128, 128, 119, 128, (314,148): 35, 33, 33, 33, 119, 35, 117, 117, 245, 245, 245, 139, (314,160): 117, 117, 35, 117, 35, 139, 117, 117, 117, 35, 117, 35, (314,172): 117, 117, 35, 117, 35, 117, 117, 11, 35, 117, 128, 35, (314,184): 35, 128, 35, 35, 35, 128, 35, 128, 88, 128, 33, 128, 35, (314,197): 11, 35, 221, 88, 35, 128, 33, 33, 128, 33, 128, 33, 186, (314,210): 79, 221, 221, 79, 195, 116, 234, 195, 72, 186, 46, 128, (314,222): 224, 116, 234, 72, 49, 49, 234, 234, 46, 79, 46, 210, (314,234): 128, 195, 181, 100, 195, 221, 63, 50, 116, 49, 72, 63, (314,246): 186, 46, 49, 11, 221, 186, 186, 72, 128, 146, 128, 46, (314,258): 181, 50, 3, 146, 253, 63, 89, 63, 116, 72, 116, 234, 220, (314,271): 210, 138, 222, 133, 108, 176, 80, 186, 3, 50, 50, 49, (314,283): 146, 116, 221, 72, 72, 116, 221, 33, 221, 72, 234, 14, (314,295): 220, 79, 100, 63, 72, 33, 79, 204, 79, 33, 33, 232, 33, (314,308): 33, 79, 79, 79, 79, 18, 204, 195, 195, 204, 18, 204, 195, (314,321): 195, 195, 185, 186, 18, 72, 186, 2, 63, 108, 108, 50, 63, (314,334): 105, 105, 105, 91, 2, 49, 66, 63, 253, 2, 187, 187, 187, (314,347): 187, 252, 252, 187, 231, 187, 187, 2, 28, 14, 234, 241, (314,359): 100, 66, 100, 100, 14, 234, 14, 100, 28, 187, 187, 24, (314,371): 180, 180, 187, 51, (315,0): 14, 186, 79, 241, 195, 117, 44, 35, 35, 35, 33, 33, 79, 79, (315,14): 33, 35, 11, 128, 221, 128, 11, 11, 128, 221, 116, 186, 72, (315,27): 72, 79, 221, 33, 33, 79, 33, 128, 35, 35, 232, 35, 245, (315,40): 245, 117, 117, 117, 117, 11, 88, 88, 35, 232, 35, 128, (315,52): 117, 128, 35, 117, 245, 35, 11, 117, 35, 117, 35, 117, (315,64): 117, 117, 117, 117, 139, 117, 117, 117, 140, 117, 117, (315,75): 117, 117, 35, 117, 201, 117, 117, 119, 35, 35, 117, 117, (315,87): 35, 128, 128, 35, 128, 221, 79, 221, 33, 33, 79, 79, 79, (315,100): 79, 79, 185, 186, 33, 33, 33, 33, 33, 128, 128, 33, 117, (315,113): 117, 117, 117, 35, 35, 35, 35, 88, 35, 128, 35, 35, 117, (315,126): 11, 35, 117, 245, 245, 35, 35, 35, 245, 245, 35, 245, (315,138): 117, 245, 35, 35, 35, 35, 119, 33, 33, 79, 221, 185, 33, (315,151): 232, 117, 117, 245, 245, 245, 245, 117, 117, 117, 35, (315,162): 117, 117, 117, 117, 117, 117, 35, 117, 117, 117, 117, (315,173): 139, 117, 117, 117, 128, 245, 35, 117, 128, 35, 232, 128, (315,185): 35, 128, 35, 128, 35, 35, 128, 245, 117, 232, 117, 88, (315,197): 117, 33, 186, 221, 33, 221, 128, 221, 221, 116, 186, 72, (315,209): 195, 33, 79, 72, 195, 234, 116, 72, 116, 221, 221, 221, (315,221): 221, 128, 224, 116, 116, 195, 146, 49, 49, 221, 33, 128, (315,233): 33, 79, 221, 195, 220, 253, 27, 186, 128, 156, 195, 105, (315,245): 50, 146, 88, 181, 221, 221, 195, 49, 220, 186, 11, 63, (315,257): 224, 234, 183, 116, 50, 181, 3, 49, 11, 63, 64, 234, 221, (315,270): 49, 72, 34, 105, 50, 133, 78, 3, 116, 3, 182, 50, 234, (315,283): 234, 49, 46, 72, 195, 79, 116, 195, 234, 14, 14, 234, 66, (315,296): 79, 79, 18, 18, 18, 79, 79, 18, 33, 33, 33, 33, 55, 79, (315,310): 79, 79, 79, 116, 204, 66, 195, 204, 195, 195, 66, 195, (315,322): 195, 186, 72, 195, 72, 72, 49, 72, 72, 195, 146, 234, 50, (315,335): 220, 220, 181, 180, 234, 220, 187, 104, 180, 180, 187, (315,346): 27, 70, 242, 8, 246, 2, 51, 51, 187, 180, 14, 241, 234, (315,359): 14, 66, 14, 14, 14, 14, 14, 100, 28, 187, 24, 180, 180, (315,372): 24, 187, 51, (316,0): 79, 14, 50, 116, 35, 79, 195, 195, 234, 116, 33, 128, 33, (316,13): 11, 128, 221, 221, 221, 128, 128, 33, 33, 128, 128, 33, (316,25): 128, 33, 33, 33, 33, 33, 128, 79, 33, 35, 128, 33, 128, (316,38): 128, 35, 33, 33, 128, 232, 117, 245, 88, 210, 35, 245, 35, (316,51): 117, 35, 245, 245, 245, 117, 245, 35, 245, 117, 117, 117, (316,63): 117, 117, 140, 117, 117, 88, 117, 140, 117, 140, 88, 140, (316,75): 117, 117, 201, 35, 128, 119, 35, 128, 35, 128, 128, 128, (316,87): 35, 128, 117, 128, 128, 79, 221, 79, 33, 33, 33, 221, 33, (316,100): 79, 79, 186, 18, 33, 33, 79, 79, 33, 33, 33, 33, 117, 11, (316,114): 117, 11, 128, 128, 128, 128, 35, 11, 117, 11, 11, 117, (316,126): 245, 245, 117, 117, 117, 117, 35, 245, 117, 139, 35, 245, (316,138): 139, 35, 35, 35, 35, 35, 128, 128, 33, 79, 185, 79, 33, (316,151): 33, 117, 117, 117, 245, 117, 139, 117, 35, 117, 117, 35, (316,163): 139, 117, 201, 117, 117, 117, 35, 139, 117, 117, 117, (316,174): 117, 35, 117, 117, 117, 128, 245, 128, 128, 128, 128, (316,185): 128, 232, 128, 35, 128, 128, 35, 128, 232, 11, 245, 245, (316,197): 128, 79, 18, 186, 186, 186, 186, 116, 186, 195, 49, 18, (316,209): 195, 221, 79, 33, 79, 72, 33, 116, 128, 128, 46, 186, (316,221): 186, 116, 221, 186, 221, 116, 232, 117, 33, 11, 221, 128, (316,233): 128, 128, 72, 253, 97, 121, 2, 186, 108, 156, 108, 116, (316,245): 220, 116, 128, 221, 128, 128, 46, 146, 50, 180, 3, 72, (316,257): 72, 128, 63, 72, 72, 2, 128, 128, 72, 72, 108, 91, 181, (316,270): 234, 50, 80, 124, 181, 108, 183, 138, 80, 46, 195, 49, 3, (316,283): 195, 72, 33, 221, 128, 33, 116, 241, 14, 66, 18, 116, 18, (316,296): 72, 33, 33, 18, 66, 18, 79, 18, 79, 79, 79, 33, 33, 79, (316,310): 79, 185, 18, 18, 204, 18, 18, 79, 18, 204, 234, 195, 195, (316,323): 18, 72, 18, 72, 18, 72, 116, 49, 220, 108, 63, 108, 220, (316,336): 220, 108, 108, 234, 234, 180, 253, 2, 93, 175, 70, 175, (316,348): 175, 242, 175, 252, 2, 187, 187, 180, 14, 66, 66, 66, 66, (316,361): 66, 66, 241, 14, 100, 100, 108, 180, 180, 24, 63, 24, (316,373): 187, 187, (317,0): 46, 128, 116, 63, 63, 72, 224, 116, 72, 224, 11, 224, 33, (317,13): 11, 128, 46, 195, 195, 195, 186, 46, 33, 128, 128, 35, (317,25): 128, 117, 117, 128, 33, 33, 232, 128, 232, 11, 35, 33, 33, (317,38): 33, 33, 221, 33, 33, 128, 128, 117, 245, 245, 88, 245, (317,50): 245, 245, 245, 117, 88, 245, 245, 245, 245, 245, 245, 245, (317,62): 117, 117, 117, 117, 117, 117, 140, 117, 117, 117, 117, (317,73): 117, 140, 117, 117, 35, 35, 119, 128, 117, 117, 117, 35, (317,85): 232, 35, 11, 245, 11, 232, 128, 128, 128, 128, 33, 221, (317,97): 79, 79, 116, 79, 33, 79, 79, 79, 186, 18, 186, 79, 128, (317,110): 128, 232, 11, 128, 11, 128, 128, 33, 221, 116, 116, 221, (317,122): 221, 33, 33, 221, 221, 128, 232, 35, 35, 139, 245, 245, (317,134): 35, 35, 245, 35, 245, 35, 245, 35, 117, 35, 232, 128, 35, (317,147): 35, 128, 33, 33, 232, 117, 245, 117, 139, 117, 35, 117, (317,159): 139, 35, 117, 117, 117, 117, 117, 117, 201, 117, 117, (317,170): 117, 35, 117, 35, 117, 117, 117, 35, 11, 117, 128, 35, (317,182): 232, 128, 232, 128, 128, 35, 128, 117, 35, 35, 128, 35, (317,194): 232, 128, 33, 33, 33, 33, 221, 79, 186, 186, 186, 186, (317,206): 116, 186, 245, 18, 79, 33, 245, 88, 221, 128, 33, 221, (317,218): 221, 116, 72, 146, 186, 116, 156, 66, 195, 33, 88, 11, (317,230): 88, 128, 195, 156, 79, 11, 128, 181, 27, 183, 186, 181, (317,242): 183, 3, 116, 128, 186, 44, 44, 72, 186, 116, 11, 128, (317,254): 156, 221, 221, 2, 105, 220, 181, 108, 105, 181, 78, 12, (317,266): 108, 46, 49, 50, 50, 222, 50, 181, 182, 46, 80, 234, 108, (317,279): 234, 234, 49, 186, 72, 116, 128, 33, 35, 128, 79, 66, 72, (317,292): 116, 33, 79, 18, 18, 204, 195, 204, 18, 18, 18, 79, 79, (317,305): 236, 79, 79, 79, 33, 79, 18, 79, 18, 18, 18, 18, 18, 72, (317,319): 66, 195, 72, 185, 186, 186, 186, 116, 72, 66, 72, 72, 66, (317,332): 49, 50, 63, 108, 220, 220, 14, 156, 234, 14, 108, 180, (317,344): 252, 27, 93, 15, 252, 192, 93, 192, 24, 2, 24, 63, 14, (317,357): 66, 204, 66, 66, 195, 204, 234, 100, 100, 108, 28, 180, (317,369): 24, 180, 153, 63, 24, 180, (318,0): 105, 50, 111, 210, 210, 111, 224, 128, 11, 210, 11, 224, (318,12): 46, 116, 116, 186, 116, 3, 195, 195, 221, 128, 128, 33, (318,24): 117, 117, 128, 117, 35, 128, 33, 128, 33, 33, 128, 33, 33, (318,37): 33, 221, 79, 33, 33, 128, 35, 117, 117, 11, 35, 88, 245, (318,50): 245, 245, 245, 245, 245, 245, 88, 88, 245, 245, 245, 245, (318,62): 117, 245, 245, 140, 117, 140, 117, 117, 140, 117, 140, (318,73): 117, 117, 117, 117, 117, 35, 35, 117, 117, 88, 88, 117, (318,85): 11, 117, 117, 128, 33, 33, 221, 33, 33, 128, 33, 221, 79, (318,98): 79, 79, 79, 221, 33, 221, 79, 79, 72, 18, 33, 128, 35, (318,111): 245, 11, 245, 128, 128, 221, 46, 186, 72, 156, 49, 72, (318,123): 72, 49, 49, 72, 116, 128, 232, 232, 35, 35, 245, 35, 35, (318,136): 245, 245, 117, 35, 35, 245, 35, 117, 35, 11, 117, 117, (318,148): 128, 33, 119, 35, 11, 117, 117, 117, 35, 35, 35, 117, (318,160): 117, 35, 117, 117, 35, 117, 117, 117, 117, 35, 117, 117, (318,172): 117, 35, 117, 117, 117, 117, 35, 128, 117, 128, 128, 33, (318,184): 128, 232, 232, 11, 35, 11, 35, 128, 128, 128, 128, 33, (318,196): 128, 33, 221, 33, 128, 33, 221, 221, 221, 33, 128, 128, (318,208): 11, 79, 221, 33, 128, 128, 221, 33, 46, 186, 72, 195, 72, (318,221): 72, 72, 195, 18, 185, 195, 33, 117, 33, 33, 18, 72, 50, (318,234): 49, 79, 88, 116, 116, 72, 186, 63, 49, 195, 88, 221, 186, (318,247): 186, 116, 156, 220, 195, 186, 128, 221, 221, 116, 234, (318,258): 27, 146, 66, 146, 128, 220, 108, 63, 105, 138, 49, 138, (318,270): 181, 3, 182, 78, 50, 182, 49, 80, 49, 116, 72, 72, 33, (318,283): 33, 33, 245, 128, 128, 33, 33, 116, 79, 79, 79, 79, 72, (318,296): 18, 234, 241, 72, 18, 18, 18, 79, 79, 79, 79, 236, 79, (318,309): 33, 236, 79, 79, 79, 18, 18, 79, 204, 66, 241, 72, 185, (318,322): 79, 116, 18, 185, 186, 18, 72, 72, 49, 234, 49, 66, 49, (318,335): 72, 146, 195, 49, 156, 234, 66, 66, 234, 231, 63, 24, (318,347): 104, 192, 51, 207, 24, 63, 63, 231, 100, 14, 66, 66, 66, (318,360): 66, 195, 66, 14, 100, 100, 100, 28, 24, 2, 24, 63, 28, (318,373): 63, 100, (319,0): 11, 221, 146, 182, 146, 111, 46, 156, 138, 78, 50, 186, (319,12): 224, 46, 111, 11, 46, 35, 11, 33, 18, 195, 33, 88, 88, (319,25): 128, 33, 35, 245, 245, 33, 33, 33, 79, 33, 33, 33, 33, 33, (319,39): 221, 117, 117, 245, 88, 11, 117, 35, 35, 245, 88, 117, (319,51): 245, 117, 245, 117, 245, 88, 117, 88, 245, 245, 117, 245, (319,63): 117, 117, 117, 117, 117, 117, 140, 117, 117, 119, 117, (319,74): 201, 117, 139, 35, 117, 117, 117, 117, 117, 117, 88, 88, (319,86): 35, 128, 18, 195, 66, 195, 72, 79, 116, 72, 33, 33, 79, (319,99): 116, 79, 79, 79, 33, 33, 79, 18, 79, 221, 232, 128, 128, (319,112): 245, 11, 128, 128, 221, 116, 72, 146, 108, 234, 49, 49, (319,124): 234, 220, 49, 116, 79, 128, 232, 245, 245, 245, 35, 35, (319,136): 117, 117, 245, 245, 35, 35, 245, 117, 117, 117, 35, 128, (319,148): 185, 33, 128, 117, 245, 117, 117, 35, 245, 35, 117, 139, (319,160): 117, 117, 117, 35, 117, 117, 117, 35, 117, 117, 117, 35, (319,172): 117, 117, 117, 117, 35, 11, 117, 117, 128, 232, 128, 232, (319,184): 33, 128, 35, 128, 35, 35, 35, 245, 33, 33, 128, 232, 128, (319,197): 33, 116, 18, 116, 116, 186, 185, 116, 79, 46, 116, 33, (319,209): 221, 33, 46, 72, 195, 146, 128, 72, 49, 50, 156, 3, 195, (319,222): 49, 220, 100, 49, 125, 35, 88, 185, 66, 108, 18, 27, 121, (319,235): 175, 128, 210, 221, 105, 128, 128, 88, 186, 49, 221, 108, (319,247): 105, 186, 11, 11, 116, 108, 108, 46, 49, 49, 245, 49, (319,259): 183, 146, 72, 234, 234, 116, 49, 138, 105, 91, 181, 182, (319,271): 138, 182, 108, 146, 182, 116, 72, 72, 116, 128, 33, 128, (319,283): 221, 33, 232, 33, 79, 33, 128, 33, 33, 79, 79, 18, 18, (319,296): 234, 241, 195, 204, 204, 204, 18, 33, 79, 18, 204, 18, (319,308): 18, 185, 18, 18, 79, 18, 18, 185, 79, 79, 79, 18, 18, 79, (319,322): 33, 185, 186, 186, 18, 195, 14, 234, 108, 100, 234, 195, (319,334): 49, 195, 116, 116, 72, 18, 79, 116, 204, 14, 100, 14, 14, (319,347): 24, 187, 24, 231, 100, 100, 14, 14, 234, 66, 66, 66, 195, (319,360): 66, 66, 241, 100, 14, 14, 14, 63, 180, 180, 180, 100, (319,372): 100, 100, 100, (320,0): 128, 11, 11, 128, 146, 156, 195, 224, 128, 128, 111, 195, (320,12): 49, 72, 116, 186, 128, 221, 33, 11, 88, 117, 117, 88, 117, (320,25): 245, 245, 245, 128, 79, 18, 195, 49, 66, 49, 195, 18, 33, (320,38): 117, 245, 88, 245, 117, 35, 117, 245, 245, 35, 35, 117, (320,50): 88, 210, 88, 117, 11, 88, 147, 88, 128, 88, 221, 88, 11, (320,63): 147, 88, 35, 35, 117, 140, 140, 35, 139, 140, 201, 232, (320,75): 139, 139, 139, 201, 140, 88, 11, 88, 11, 35, 11, 221, 187, (320,88): 2, 108, 156, 234, 234, 72, 79, 33, 116, 79, 185, 18, 72, (320,101): 79, 79, 79, 221, 33, 33, 221, 33, 35, 88, 128, 33, 128, (320,114): 221, 46, 72, 72, 72, 116, 116, 3, 80, 63, 34, 222, 146, (320,127): 72, 72, 33, 128, 128, 35, 245, 35, 117, 139, 245, 245, (320,139): 35, 35, 128, 33, 128, 117, 128, 33, 79, 119, 35, 117, (320,151): 117, 35, 35, 35, 245, 35, 245, 35, 245, 117, 117, 117, (320,163): 117, 117, 117, 117, 117, 117, 35, 117, 35, 35, 35, 117, (320,175): 117, 117, 128, 128, 128, 35, 128, 117, 35, 128, 33, 128, (320,187): 232, 245, 11, 245, 232, 128, 232, 128, 33, 33, 33, 128, (320,199): 33, 79, 35, 79, 195, 79, 35, 185, 117, 221, 224, 234, (320,211): 146, 116, 224, 146, 3, 3, 3, 234, 182, 253, 183, 91, 195, (320,224): 33, 35, 11, 79, 221, 221, 220, 104, 63, 66, 128, 245, (320,236): 221, 33, 88, 66, 88, 185, 128, 18, 195, 108, 79, 33, 221, (320,249): 195, 138, 221, 91, 34, 46, 63, 222, 146, 234, 220, 49, (320,261): 34, 222, 50, 3, 3, 50, 124, 181, 182, 80, 50, 234, 234, (320,274): 72, 146, 72, 146, 72, 221, 33, 221, 33, 128, 128, 33, 79, (320,287): 33, 232, 232, 232, 232, 79, 204, 66, 234, 241, 234, 241, (320,299): 195, 204, 18, 79, 18, 185, 18, 18, 18, 195, 204, 204, 18, (320,312): 79, 79, 79, 18, 18, 18, 18, 79, 79, 33, 79, 116, 204, 66, (320,326): 234, 234, 195, 66, 66, 234, 66, 195, 72, 18, 204, 18, 18, (320,339): 18, 195, 66, 66, 66, 241, 14, 14, 231, 180, 180, 100, 14, (320,352): 62, 14, 14, 62, 14, 66, 66, 204, 195, 241, 14, 100, 100, (320,365): 14, 100, 100, 28, 180, 28, 28, 100, 100, 14, (321,0): 186, 72, 186, 46, 128, 128, 224, 128, 195, 3, 33, 11, 128, (321,13): 116, 186, 116, 49, 49, 18, 79, 128, 128, 35, 88, 117, 245, (321,26): 128, 33, 79, 72, 146, 49, 14, 49, 72, 33, 117, 11, 117, (321,39): 232, 128, 35, 245, 139, 245, 140, 245, 35, 88, 35, 33, (321,51): 221, 33, 128, 117, 88, 195, 33, 221, 210, 210, 88, 221, (321,63): 128, 128, 140, 147, 147, 232, 119, 119, 117, 35, 35, 140, (321,75): 140, 139, 119, 119, 139, 128, 35, 44, 88, 221, 79, 72, (321,87): 108, 50, 66, 72, 72, 195, 72, 116, 18, 195, 185, 79, 79, (321,100): 79, 33, 128, 128, 128, 221, 33, 33, 116, 46, 33, 116, (321,112): 128, 88, 210, 128, 49, 63, 63, 108, 182, 78, 253, 80, (321,124): 111, 80, 133, 182, 72, 221, 33, 33, 245, 117, 139, 245, (321,136): 117, 245, 35, 245, 245, 245, 128, 128, 33, 33, 33, 128, (321,148): 35, 117, 117, 245, 35, 245, 35, 139, 245, 139, 117, 117, (321,160): 245, 117, 117, 117, 117, 117, 117, 117, 35, 117, 35, 117, (321,172): 117, 117, 117, 11, 117, 117, 35, 128, 128, 128, 128, 128, (321,184): 232, 33, 33, 128, 35, 35, 128, 33, 128, 11, 35, 128, 232, (321,197): 128, 186, 66, 221, 88, 88, 14, 79, 35, 33, 146, 18, 46, (321,210): 111, 72, 105, 133, 3, 182, 182, 222, 137, 105, 63, 72, (321,222): 18, 11, 117, 128, 66, 49, 156, 100, 14, 63, 14, 186, 18, (321,235): 186, 245, 33, 33, 14, 63, 79, 195, 128, 210, 128, 49, (321,247): 128, 3, 11, 186, 138, 181, 182, 3, 137, 182, 49, 138, (321,259): 146, 50, 49, 176, 105, 138, 182, 50, 138, 181, 222, 80, (321,271): 234, 234, 195, 46, 33, 33, 33, 221, 79, 11, 128, 128, (321,283): 128, 35, 128, 128, 35, 128, 33, 55, 79, 18, 195, 66, 14, (321,296): 241, 66, 66, 195, 18, 72, 18, 18, 18, 18, 18, 18, 18, 18, (321,310): 18, 79, 18, 18, 79, 18, 18, 18, 18, 18, 33, 33, 221, 18, (321,324): 195, 49, 66, 66, 66, 66, 72, 18, 72, 18, 18, 18, 79, 18, (321,338): 18, 185, 18, 204, 204, 66, 241, 241, 241, 100, 28, 28, (321,350): 100, 100, 14, 14, 241, 241, 66, 66, 204, 66, 66, 241, (321,362): 100, 100, 14, 14, 100, 100, 100, 100, 100, 100, 100, 14, (321,374): 14, (322,0): 46, 46, 116, 116, 128, 11, 128, 221, 210, 224, 49, 50, 50, (322,13): 49, 186, 46, 234, 49, 72, 116, 33, 79, 33, 35, 128, 35, (322,26): 128, 33, 221, 221, 116, 79, 221, 33, 128, 117, 117, 128, (322,38): 33, 221, 18, 33, 128, 33, 33, 33, 232, 232, 33, 116, 79, (322,51): 33, 117, 11, 128, 221, 72, 195, 183, 63, 116, 11, 11, 11, (322,64): 88, 128, 221, 79, 128, 210, 147, 88, 117, 117, 35, 117, (322,76): 117, 201, 119, 35, 88, 11, 185, 181, 121, 123, 181, 156, (322,88): 100, 156, 72, 79, 221, 33, 221, 221, 79, 33, 128, 33, 128, (322,101): 128, 232, 128, 33, 33, 33, 33, 79, 79, 33, 221, 128, 33, (322,114): 221, 116, 195, 49, 49, 49, 137, 138, 78, 50, 146, 181, (322,126): 46, 11, 46, 128, 128, 33, 35, 245, 232, 117, 139, 35, (322,138): 117, 35, 128, 128, 128, 221, 79, 79, 33, 33, 232, 128, (322,150): 119, 35, 35, 35, 35, 35, 245, 245, 139, 245, 117, 117, (322,162): 117, 117, 117, 117, 117, 117, 232, 117, 117, 117, 117, (322,173): 117, 117, 117, 128, 128, 128, 33, 33, 33, 35, 128, 117, (322,185): 128, 232, 232, 35, 35, 232, 33, 232, 128, 128, 128, 117, (322,197): 35, 221, 195, 195, 33, 79, 44, 128, 147, 18, 50, 234, 49, (322,210): 146, 224, 3, 124, 137, 176, 177, 176, 182, 72, 3, 234, (322,222): 108, 100, 180, 220, 91, 66, 66, 156, 79, 195, 33, 210, (322,234): 35, 79, 210, 33, 232, 11, 210, 79, 33, 88, 234, 116, 116, (322,247): 156, 181, 50, 138, 183, 80, 146, 186, 3, 176, 36, 253, (322,259): 12, 50, 138, 78, 176, 78, 138, 108, 138, 105, 105, 78, (322,271): 50, 49, 72, 79, 33, 128, 128, 33, 79, 245, 128, 232, 117, (322,284): 128, 35, 128, 117, 245, 245, 35, 33, 185, 204, 204, 195, (322,296): 66, 195, 204, 195, 18, 18, 72, 18, 18, 79, 79, 79, 18, (322,309): 79, 79, 33, 18, 79, 79, 18, 79, 18, 79, 79, 33, 79, 79, (322,323): 195, 66, 234, 66, 195, 72, 18, 116, 79, 79, 79, 116, 18, (322,336): 18, 18, 18, 18, 18, 18, 66, 66, 241, 14, 100, 100, 100, (322,349): 28, 63, 231, 100, 100, 14, 66, 66, 66, 241, 66, 66, 14, (322,362): 100, 100, 14, 62, 14, 14, 28, 100, 100, 14, 100, 62, 14, (323,0): 210, 11, 46, 234, 108, 234, 116, 46, 224, 224, 46, 72, 72, (323,13): 3, 146, 220, 186, 116, 221, 33, 221, 79, 33, 35, 33, 128, (323,26): 33, 128, 128, 128, 11, 245, 210, 11, 117, 245, 11, 232, (323,38): 128, 33, 128, 232, 33, 33, 33, 128, 245, 117, 11, 35, 128, (323,51): 221, 79, 49, 2, 175, 105, 50, 63, 116, 116, 49, 221, 72, (323,64): 3, 111, 111, 3, 156, 3, 221, 117, 210, 88, 35, 232, 117, (323,77): 11, 88, 35, 117, 220, 64, 8, 183, 2, 63, 2, 220, 49, 72, (323,91): 221, 128, 117, 128, 33, 128, 128, 232, 128, 33, 33, 128, (323,103): 33, 33, 79, 221, 128, 221, 221, 128, 128, 11, 33, 116, (323,115): 116, 46, 46, 72, 146, 234, 72, 50, 105, 133, 138, 3, 72, (323,128): 116, 128, 33, 33, 128, 35, 232, 117, 117, 117, 35, 128, (323,140): 79, 72, 72, 195, 79, 79, 33, 232, 33, 33, 33, 232, 35, (323,153): 117, 245, 35, 139, 245, 35, 139, 117, 35, 117, 35, 117, (323,165): 117, 117, 117, 35, 35, 117, 245, 117, 117, 35, 35, 79, (323,177): 79, 221, 33, 33, 128, 128, 232, 11, 117, 35, 245, 245, (323,189): 245, 35, 128, 35, 128, 33, 79, 33, 128, 128, 33, 128, 72, (323,202): 245, 79, 116, 220, 128, 116, 49, 182, 137, 91, 182, 146, (323,214): 181, 124, 36, 137, 176, 234, 221, 35, 79, 72, 64, 63, (323,226): 187, 128, 46, 33, 33, 33, 33, 11, 18, 186, 79, 186, 35, (323,239): 147, 128, 33, 18, 50, 18, 186, 33, 11, 146, 146, 46, 186, (323,252): 224, 156, 203, 116, 182, 78, 50, 234, 78, 182, 50, 234, (323,264): 222, 63, 138, 138, 78, 34, 181, 138, 72, 72, 18, 221, 33, (323,277): 33, 128, 33, 128, 35, 128, 35, 128, 35, 128, 35, 232, (323,289): 232, 232, 33, 18, 66, 195, 204, 204, 195, 18, 204, 72, (323,301): 204, 195, 195, 18, 18, 79, 79, 79, 79, 79, 33, 79, 79, (323,314): 79, 79, 79, 33, 33, 33, 221, 79, 79, 18, 195, 66, 195, (323,327): 72, 79, 116, 204, 72, 72, 72, 79, 79, 79, 18, 204, 204, (323,340): 204, 204, 66, 241, 66, 14, 100, 100, 100, 100, 100, 28, (323,352): 180, 28, 14, 241, 66, 204, 66, 66, 66, 241, 100, 100, 14, (323,365): 241, 241, 241, 100, 100, 100, 100, 14, 100, 14, (324,0): 49, 46, 11, 111, 116, 46, 116, 3, 186, 116, 224, 224, 111, (324,13): 116, 46, 128, 116, 116, 221, 128, 33, 221, 128, 117, 128, (324,25): 35, 128, 11, 117, 11, 88, 11, 128, 232, 11, 88, 210, 210, (324,38): 245, 128, 128, 221, 18, 195, 72, 33, 11, 35, 11, 11, 117, (324,51): 11, 117, 128, 3, 156, 64, 91, 181, 72, 50, 91, 63, 141, (324,64): 141, 34, 80, 186, 3, 46, 224, 210, 3, 224, 11, 128, 46, (324,77): 128, 128, 224, 195, 49, 14, 156, 49, 66, 146, 72, 33, 33, (324,90): 128, 128, 128, 128, 224, 221, 33, 79, 221, 33, 33, 33, (324,102): 128, 35, 128, 79, 33, 128, 79, 116, 79, 79, 195, 116, (324,114): 128, 33, 116, 195, 146, 3, 116, 182, 182, 182, 224, 146, (324,126): 124, 146, 146, 79, 79, 79, 128, 232, 117, 245, 35, 117, (324,138): 232, 79, 195, 234, 66, 66, 33, 128, 232, 232, 33, 232, (324,150): 232, 35, 35, 35, 245, 139, 35, 245, 139, 245, 35, 245, (324,162): 35, 245, 35, 117, 35, 117, 117, 117, 245, 117, 117, 35, (324,174): 128, 33, 221, 79, 128, 35, 35, 35, 35, 128, 35, 128, 128, (324,187): 128, 245, 245, 128, 128, 128, 232, 33, 186, 186, 79, 33, (324,199): 128, 186, 210, 128, 128, 105, 49, 128, 146, 46, 72, 3, (324,211): 182, 177, 36, 34, 80, 146, 63, 253, 63, 72, 72, 18, 232, (324,224): 234, 33, 79, 35, 49, 33, 195, 116, 33, 72, 63, 79, 156, (324,237): 33, 33, 221, 195, 79, 221, 66, 46, 49, 49, 195, 234, 49, (324,250): 146, 138, 34, 138, 105, 50, 146, 49, 50, 133, 91, 183, (324,262): 181, 138, 176, 253, 138, 234, 234, 138, 50, 72, 79, 79, (324,274): 79, 79, 33, 35, 35, 35, 245, 245, 88, 88, 88, 117, 35, (324,287): 128, 33, 33, 33, 33, 185, 18, 18, 18, 195, 204, 195, 204, (324,300): 195, 204, 195, 204, 79, 79, 79, 79, 79, 79, 79, 79, 33, (324,313): 79, 55, 33, 33, 232, 33, 55, 79, 33, 33, 221, 79, 116, (324,326): 79, 79, 72, 66, 234, 241, 234, 195, 18, 79, 33, 18, 204, (324,339): 66, 66, 204, 66, 66, 66, 241, 100, 100, 14, 241, 234, 62, (324,352): 28, 100, 14, 241, 66, 66, 204, 66, 241, 14, 100, 14, 241, (324,365): 66, 66, 241, 14, 14, 62, 241, 62, 14, 62, (325,0): 124, 63, 182, 3, 111, 224, 111, 116, 146, 138, 222, 116, (325,12): 224, 3, 146, 46, 116, 116, 46, 221, 221, 221, 221, 128, (325,24): 128, 117, 11, 88, 11, 210, 11, 88, 210, 245, 245, 245, 35, (325,37): 35, 128, 128, 79, 72, 234, 234, 195, 221, 128, 128, 11, (325,49): 88, 11, 128, 46, 186, 156, 63, 108, 141, 89, 216, 121, (325,61): 137, 63, 141, 36, 137, 203, 80, 182, 124, 90, 216, 90, (325,73): 138, 46, 186, 80, 80, 72, 46, 11, 128, 46, 186, 33, 221, (325,86): 221, 117, 11, 11, 128, 117, 11, 128, 128, 128, 221, 221, (325,98): 79, 221, 116, 79, 221, 128, 33, 221, 33, 128, 221, 33, (325,110): 221, 195, 195, 49, 66, 49, 49, 3, 116, 116, 234, 182, (325,122): 116, 50, 78, 138, 105, 224, 116, 128, 128, 128, 35, 117, (325,134): 35, 117, 35, 232, 128, 79, 195, 66, 72, 79, 33, 232, 33, (325,147): 232, 128, 232, 117, 245, 35, 245, 35, 35, 35, 139, 245, (325,159): 35, 245, 35, 117, 117, 35, 245, 35, 117, 117, 245, 117, (325,171): 117, 117, 35, 33, 119, 128, 35, 117, 117, 11, 117, 128, (325,183): 128, 35, 232, 128, 232, 128, 35, 128, 33, 79, 33, 33, 33, (325,196): 221, 221, 128, 128, 116, 146, 116, 116, 224, 146, 111, (325,207): 176, 116, 222, 34, 146, 182, 222, 78, 182, 116, 46, 88, (325,219): 33, 195, 253, 24, 72, 117, 210, 88, 11, 66, 33, 72, 128, (325,232): 33, 185, 195, 88, 72, 33, 128, 18, 18, 195, 221, 88, 234, (325,245): 116, 128, 46, 72, 49, 50, 181, 64, 63, 34, 181, 80, 182, (325,258): 50, 50, 234, 183, 234, 108, 64, 176, 234, 72, 49, 50, (325,270): 234, 33, 33, 79, 33, 232, 35, 245, 35, 128, 117, 245, 88, (325,283): 88, 35, 128, 33, 79, 18, 186, 18, 18, 18, 185, 79, 79, (325,296): 204, 195, 204, 195, 195, 195, 204, 18, 18, 185, 79, 79, (325,308): 79, 18, 79, 236, 79, 79, 79, 79, 33, 232, 33, 79, 221, (325,321): 221, 33, 79, 18, 79, 79, 79, 241, 234, 66, 66, 195, 18, (325,334): 79, 79, 18, 66, 241, 14, 14, 241, 66, 241, 66, 241, 100, (325,347): 14, 14, 241, 66, 66, 234, 241, 66, 66, 66, 66, 66, 66, (325,360): 14, 14, 14, 100, 234, 66, 66, 241, 100, 14, 14, 14, 14, (325,373): 14, 100, (326,0): 146, 181, 90, 97, 90, 176, 182, 116, 224, 80, 91, 137, 176, (326,13): 78, 146, 46, 111, 46, 116, 221, 116, 186, 186, 185, 128, (326,25): 117, 11, 88, 88, 11, 11, 224, 35, 128, 33, 221, 46, 221, (326,38): 79, 46, 33, 221, 116, 116, 46, 11, 11, 11, 186, 116, 46, (326,51): 116, 221, 224, 46, 146, 50, 183, 177, 37, 90, 183, 138, (326,63): 222, 34, 124, 222, 222, 124, 90, 177, 36, 36, 34, 80, 80, (326,76): 182, 49, 186, 186, 108, 33, 210, 11, 33, 116, 221, 44, 11, (326,89): 33, 224, 33, 128, 224, 128, 35, 221, 79, 46, 221, 221, (326,101): 221, 221, 33, 128, 128, 35, 33, 33, 128, 79, 234, 33, (326,113): 116, 234, 220, 234, 49, 146, 49, 46, 46, 146, 34, 90, (326,125): 138, 105, 78, 33, 245, 35, 128, 35, 245, 33, 232, 128, (326,137): 128, 33, 185, 79, 79, 33, 128, 128, 33, 33, 33, 232, 35, (326,150): 117, 35, 245, 35, 245, 139, 35, 245, 245, 245, 35, 35, (326,162): 245, 35, 245, 128, 117, 35, 245, 35, 117, 35, 35, 35, 35, (326,175): 128, 117, 117, 11, 88, 117, 117, 35, 35, 11, 35, 128, (326,187): 117, 11, 35, 128, 33, 195, 116, 33, 33, 128, 33, 46, 116, (326,200): 128, 3, 176, 146, 146, 3, 116, 22, 133, 46, 138, 105, (326,212): 182, 116, 50, 234, 3, 116, 128, 221, 245, 18, 33, 147, (326,224): 79, 128, 33, 117, 128, 33, 33, 33, 186, 221, 221, 79, (326,236): 186, 49, 116, 146, 116, 128, 234, 63, 253, 27, 121, 181, (326,248): 141, 223, 183, 78, 50, 138, 105, 222, 108, 182, 105, 234, (326,260): 138, 50, 181, 182, 63, 108, 234, 3, 49, 50, 49, 46, 79, (326,273): 232, 232, 232, 245, 35, 232, 33, 35, 35, 117, 33, 33, 79, (326,286): 185, 195, 100, 108, 63, 100, 220, 234, 66, 195, 195, 195, (326,298): 66, 66, 66, 204, 18, 116, 79, 79, 79, 185, 18, 18, 79, (326,311): 79, 33, 79, 33, 55, 33, 33, 33, 33, 79, 79, 221, 18, 72, (326,325): 72, 18, 116, 195, 195, 72, 18, 79, 18, 116, 79, 241, 241, (326,338): 100, 100, 100, 100, 100, 14, 14, 14, 100, 100, 62, 241, (326,350): 241, 241, 66, 195, 38, 195, 66, 241, 241, 14, 100, 100, (326,362): 28, 14, 241, 241, 241, 14, 100, 100, 100, 100, 100, 28, (326,374): 28, (327,0): 11, 80, 91, 141, 177, 141, 90, 176, 138, 116, 46, 108, 12, (327,13): 181, 80, 146, 224, 221, 46, 221, 221, 33, 221, 33, 11, (327,25): 117, 88, 11, 11, 116, 195, 49, 63, 100, 195, 79, 128, 35, (327,38): 128, 221, 46, 224, 224, 46, 46, 111, 46, 116, 46, 186, (327,50): 220, 63, 50, 72, 116, 116, 72, 108, 137, 97, 78, 105, 64, (327,63): 137, 46, 138, 137, 141, 36, 36, 90, 137, 203, 182, 3, 3, (327,76): 186, 224, 111, 46, 128, 210, 11, 46, 88, 11, 128, 117, 11, (327,89): 128, 33, 46, 116, 195, 49, 72, 3, 72, 116, 33, 128, 128, (327,102): 128, 88, 11, 88, 11, 33, 116, 79, 72, 2, 220, 146, 116, (327,115): 116, 146, 220, 50, 182, 3, 49, 78, 49, 63, 80, 181, 253, (327,128): 49, 79, 221, 79, 128, 232, 128, 128, 232, 33, 79, 79, (327,140): 128, 245, 35, 128, 117, 232, 128, 35, 35, 117, 35, 35, (327,152): 35, 35, 35, 35, 139, 245, 139, 245, 232, 245, 35, 128, (327,164): 35, 245, 35, 117, 128, 35, 128, 35, 128, 35, 35, 117, (327,176): 117, 117, 117, 35, 35, 117, 11, 117, 117, 117, 128, 128, (327,188): 35, 128, 33, 79, 195, 72, 79, 46, 116, 116, 49, 50, 182, (327,201): 46, 72, 133, 138, 124, 3, 182, 49, 138, 181, 182, 181, (327,213): 182, 116, 11, 128, 221, 116, 66, 128, 33, 35, 33, 232, (327,225): 128, 195, 117, 88, 49, 116, 195, 224, 33, 72, 63, 221, (327,237): 234, 195, 234, 128, 116, 128, 221, 72, 78, 108, 63, 253, (327,249): 63, 50, 181, 108, 91, 34, 234, 78, 105, 138, 78, 234, (327,261): 234, 50, 221, 224, 72, 220, 234, 49, 72, 72, 79, 35, 232, (327,274): 232, 245, 139, 245, 245, 245, 35, 245, 232, 33, 185, 185, (327,286): 195, 66, 14, 63, 180, 63, 14, 195, 18, 185, 195, 66, 241, (327,299): 66, 66, 195, 185, 79, 18, 185, 79, 18, 18, 79, 79, 79, (327,312): 55, 33, 33, 33, 232, 232, 232, 33, 35, 232, 79, 116, 204, (327,325): 72, 18, 79, 18, 18, 204, 72, 195, 195, 195, 195, 100, 14, (327,338): 14, 14, 100, 100, 100, 100, 62, 14, 14, 241, 234, 66, 66, (327,351): 66, 241, 66, 66, 66, 66, 241, 14, 100, 100, 28, 100, 100, (327,364): 241, 66, 14, 14, 100, 100, 194, 14, 100, 100, 28, (328,0): 64, 176, 80, 46, 72, 50, 91, 141, 64, 176, 182, 116, 46, (328,13): 46, 116, 116, 46, 46, 221, 221, 128, 128, 128, 117, 117, (328,25): 11, 210, 33, 156, 181, 63, 182, 108, 66, 221, 128, 128, (328,37): 128, 221, 79, 128, 128, 195, 108, 50, 156, 49, 80, 116, (328,49): 116, 146, 234, 182, 49, 72, 46, 116, 116, 182, 176, 176, (328,61): 78, 176, 36, 80, 138, 90, 141, 176, 78, 124, 63, 186, 146, (328,74): 138, 146, 116, 3, 46, 186, 3, 195, 72, 128, 128, 224, 224, (328,87): 11, 221, 128, 128, 128, 72, 220, 220, 72, 221, 221, 128, (328,99): 128, 128, 128, 221, 221, 116, 79, 195, 33, 245, 79, 79, (328,111): 72, 63, 64, 27, 78, 224, 46, 72, 72, 46, 128, 46, 116, (328,124): 116, 146, 182, 72, 72, 18, 79, 33, 79, 33, 33, 35, 33, (328,137): 33, 128, 35, 35, 35, 245, 245, 117, 117, 117, 117, 11, (328,149): 117, 35, 232, 245, 245, 245, 35, 35, 245, 139, 35, 245, (328,161): 245, 117, 245, 35, 128, 35, 35, 35, 245, 35, 128, 232, (328,173): 128, 35, 117, 117, 117, 117, 117, 117, 117, 117, 35, 128, (328,185): 117, 117, 128, 128, 33, 221, 79, 221, 79, 66, 72, 221, (328,197): 72, 220, 72, 72, 3, 3, 146, 50, 78, 203, 78, 182, 182, (328,210): 182, 182, 146, 46, 11, 128, 128, 221, 35, 33, 147, 66, (328,222): 245, 18, 79, 128, 210, 79, 72, 195, 14, 33, 116, 253, (328,234): 186, 11, 116, 221, 181, 116, 128, 128, 33, 72, 72, 72, (328,246): 72, 146, 234, 234, 78, 64, 91, 181, 105, 63, 234, 181, (328,258): 181, 253, 108, 234, 146, 116, 221, 46, 116, 116, 221, (328,269): 221, 128, 128, 245, 139, 245, 35, 245, 35, 245, 245, 245, (328,281): 232, 79, 72, 66, 66, 66, 66, 49, 108, 63, 14, 49, 66, 72, (328,295): 195, 195, 66, 234, 241, 195, 204, 18, 204, 18, 79, 232, (328,307): 79, 79, 79, 33, 232, 33, 33, 33, 33, 232, 128, 232, 232, (328,320): 33, 221, 79, 79, 79, 116, 72, 66, 72, 195, 195, 204, 18, (328,333): 18, 195, 66, 204, 66, 204, 66, 66, 66, 241, 241, 14, 62, (328,346): 241, 241, 66, 241, 66, 66, 241, 66, 204, 204, 66, 14, (328,358): 100, 24, 63, 100, 14, 100, 100, 100, 241, 241, 241, 14, (328,370): 14, 100, 14, 100, 100, (329,0): 182, 234, 234, 49, 3, 116, 116, 116, 222, 220, 3, 46, 46, (329,13): 111, 111, 111, 116, 116, 221, 128, 128, 11, 117, 117, 147, (329,25): 195, 187, 105, 220, 49, 234, 63, 33, 33, 33, 128, 33, 33, (329,38): 221, 46, 116, 195, 50, 105, 105, 50, 72, 72, 146, 72, 116, (329,51): 186, 72, 116, 46, 46, 46, 46, 116, 234, 234, 182, 181, 27, (329,64): 176, 50, 63, 183, 105, 234, 234, 234, 46, 72, 220, 49, 72, (329,77): 49, 186, 186, 116, 46, 186, 146, 195, 221, 128, 33, 11, (329,89): 116, 72, 72, 72, 72, 186, 46, 221, 46, 11, 11, 221, 146, (329,102): 116, 147, 128, 128, 33, 128, 128, 33, 79, 195, 116, 80, (329,114): 121, 220, 108, 11, 224, 11, 11, 111, 116, 111, 72, 138, (329,126): 181, 220, 116, 79, 79, 79, 221, 79, 128, 128, 128, 35, (329,138): 128, 35, 128, 35, 128, 128, 117, 117, 245, 117, 117, 35, (329,150): 245, 35, 35, 139, 245, 35, 139, 245, 35, 245, 35, 117, (329,162): 35, 245, 117, 245, 35, 245, 232, 128, 128, 33, 33, 128, (329,174): 117, 117, 117, 117, 117, 117, 117, 117, 128, 117, 128, (329,185): 35, 11, 128, 33, 33, 46, 79, 116, 221, 79, 72, 116, 116, (329,198): 72, 72, 3, 234, 50, 182, 3, 182, 124, 12, 137, 105, 49, (329,211): 46, 128, 11, 221, 72, 33, 18, 128, 116, 100, 66, 210, 63, (329,224): 33, 66, 195, 104, 232, 72, 72, 116, 220, 108, 116, 234, (329,236): 3, 210, 221, 116, 78, 2, 108, 116, 116, 234, 72, 128, (329,248): 222, 63, 234, 108, 253, 138, 234, 3, 50, 108, 182, 105, (329,260): 50, 49, 72, 46, 116, 72, 72, 79, 221, 221, 33, 35, 245, (329,273): 139, 232, 232, 232, 245, 139, 245, 232, 33, 18, 195, 195, (329,285): 66, 234, 156, 195, 100, 108, 220, 14, 234, 195, 18, 195, (329,297): 66, 66, 66, 66, 204, 72, 204, 79, 18, 18, 18, 18, 232, (329,310): 33, 18, 33, 33, 232, 35, 35, 245, 232, 33, 128, 33, 79, (329,323): 79, 79, 18, 72, 66, 241, 234, 66, 195, 72, 18, 18, 72, (329,336): 204, 204, 204, 204, 204, 204, 66, 66, 66, 241, 66, 241, (329,348): 66, 66, 66, 66, 241, 204, 195, 66, 241, 14, 100, 180, (329,360): 180, 100, 100, 100, 100, 14, 241, 156, 241, 241, 14, 62, (329,372): 100, 100, 28, (330,0): 128, 46, 72, 116, 46, 128, 11, 11, 128, 11, 128, 128, 128, (330,13): 221, 128, 221, 116, 116, 33, 128, 35, 117, 117, 117, 11, (330,25): 117, 33, 33, 221, 128, 11, 44, 88, 35, 35, 210, 245, 33, (330,38): 72, 186, 186, 3, 221, 186, 72, 224, 88, 111, 195, 116, (330,50): 224, 33, 224, 128, 224, 221, 46, 116, 116, 46, 72, 50, (330,62): 176, 183, 64, 234, 72, 50, 234, 72, 72, 72, 79, 221, 72, (330,75): 116, 186, 49, 49, 220, 156, 186, 46, 221, 224, 128, 116, (330,87): 156, 49, 50, 108, 146, 46, 46, 72, 234, 116, 72, 146, 49, (330,100): 72, 116, 72, 49, 116, 128, 116, 18, 221, 245, 234, 89, 2, (330,113): 128, 11, 44, 11, 49, 128, 46, 146, 220, 234, 146, 182, (330,125): 63, 222, 234, 33, 33, 79, 79, 79, 33, 128, 245, 245, 245, (330,138): 35, 128, 232, 128, 33, 232, 117, 117, 117, 245, 117, 245, (330,150): 35, 35, 245, 35, 35, 245, 245, 139, 35, 245, 35, 245, (330,162): 245, 117, 245, 35, 245, 128, 232, 33, 79, 33, 232, 35, (330,174): 117, 117, 117, 117, 117, 35, 35, 35, 35, 35, 11, 128, 33, (330,187): 33, 221, 46, 116, 116, 18, 79, 221, 116, 49, 72, 46, 72, (330,200): 11, 46, 3, 80, 50, 50, 182, 234, 116, 46, 224, 221, 221, (330,213): 33, 128, 128, 128, 18, 234, 35, 33, 221, 79, 195, 180, (330,225): 253, 14, 72, 2, 234, 72, 49, 33, 116, 11, 46, 128, 146, (330,238): 234, 3, 91, 50, 116, 72, 116, 116, 50, 183, 63, 91, 181, (330,251): 253, 141, 27, 50, 220, 146, 72, 221, 50, 50, 234, 72, 72, (330,264): 72, 18, 116, 79, 33, 33, 128, 232, 245, 35, 35, 139, 35, (330,277): 245, 35, 35, 33, 79, 195, 66, 234, 234, 14, 220, 220, 63, (330,290): 181, 63, 181, 180, 14, 234, 66, 66, 195, 195, 204, 195, (330,302): 204, 204, 79, 79, 79, 79, 33, 35, 232, 33, 79, 79, 232, (330,315): 33, 232, 33, 79, 79, 79, 33, 79, 116, 116, 18, 72, 195, (330,328): 195, 66, 66, 195, 195, 72, 195, 66, 18, 204, 18, 204, (330,340): 204, 195, 204, 66, 66, 66, 66, 66, 66, 241, 66, 66, 195, (330,353): 204, 204, 66, 14, 14, 100, 28, 28, 28, 100, 100, 100, 14, (330,366): 14, 241, 241, 241, 14, 14, 100, 28, 180, (331,0): 117, 11, 128, 128, 245, 11, 128, 33, 210, 210, 210, 88, 11, (331,13): 128, 33, 116, 116, 221, 221, 128, 128, 117, 117, 117, 33, (331,25): 119, 88, 88, 117, 128, 128, 128, 128, 128, 33, 128, 33, (331,37): 116, 18, 72, 66, 156, 79, 128, 116, 33, 221, 50, 79, 128, (331,50): 128, 128, 128, 128, 128, 128, 128, 116, 46, 224, 46, 234, (331,62): 78, 2, 253, 66, 33, 79, 116, 195, 66, 221, 116, 221, 79, (331,75): 79, 18, 195, 156, 50, 121, 64, 105, 195, 46, 195, 50, 138, (331,88): 181, 105, 63, 49, 221, 116, 156, 63, 91, 80, 72, 80, 49, (331,101): 116, 221, 49, 195, 116, 116, 195, 220, 204, 18, 91, 116, (331,113): 146, 3, 78, 116, 253, 224, 3, 116, 116, 116, 146, 138, (331,125): 49, 46, 116, 232, 232, 33, 33, 128, 35, 128, 245, 245, (331,137): 11, 35, 128, 33, 128, 232, 232, 245, 11, 245, 117, 245, (331,149): 35, 245, 35, 35, 245, 245, 245, 35, 139, 245, 35, 35, 35, (331,162): 117, 117, 117, 35, 128, 232, 33, 33, 33, 33, 35, 245, (331,174): 117, 117, 117, 117, 35, 35, 35, 35, 128, 35, 35, 33, 33, (331,187): 221, 79, 116, 186, 116, 116, 116, 221, 79, 49, 72, 111, (331,199): 72, 49, 3, 72, 146, 182, 138, 182, 3, 46, 221, 128, 221, (331,212): 79, 79, 79, 33, 18, 232, 79, 221, 221, 33, 221, 33, 128, (331,225): 180, 79, 33, 221, 79, 128, 104, 108, 116, 116, 234, 46, (331,237): 116, 116, 116, 108, 63, 50, 49, 146, 234, 108, 50, 105, (331,249): 183, 108, 49, 220, 49, 50, 181, 234, 146, 224, 146, 146, (331,261): 72, 46, 128, 116, 116, 221, 33, 128, 128, 232, 35, 245, (331,273): 232, 232, 232, 35, 35, 232, 33, 18, 195, 14, 14, 14, 156, (331,286): 14, 50, 49, 108, 108, 108, 63, 108, 14, 234, 234, 66, 72, (331,299): 204, 66, 204, 18, 18, 18, 79, 79, 79, 185, 79, 79, 33, (331,312): 33, 33, 33, 79, 79, 18, 79, 79, 79, 18, 116, 79, 18, 72, (331,326): 18, 18, 18, 72, 72, 66, 234, 241, 66, 66, 195, 204, 72, (331,339): 204, 204, 66, 204, 66, 204, 204, 38, 66, 66, 66, 204, 66, (331,352): 38, 66, 66, 241, 14, 100, 100, 28, 180, 100, 63, 100, 14, (331,365): 241, 241, 14, 241, 241, 14, 62, 100, 28, 180, (332,0): 245, 245, 245, 245, 128, 245, 11, 88, 245, 35, 128, 245, (332,12): 210, 245, 35, 128, 33, 33, 128, 33, 232, 35, 35, 117, 147, (332,25): 147, 117, 35, 245, 245, 128, 33, 33, 128, 18, 220, 100, (332,37): 195, 221, 128, 245, 33, 128, 88, 33, 117, 117, 66, 128, (332,49): 35, 11, 35, 128, 128, 128, 224, 224, 46, 116, 116, 221, (332,61): 221, 116, 72, 234, 79, 33, 79, 221, 66, 234, 72, 18, 72, (332,74): 72, 234, 156, 195, 72, 185, 46, 195, 72, 46, 186, 49, 108, (332,87): 50, 220, 50, 50, 49, 72, 3, 146, 156, 133, 116, 3, 128, (332,100): 111, 3, 116, 72, 128, 72, 79, 33, 234, 100, 116, 79, 128, (332,113): 80, 220, 146, 11, 46, 72, 80, 49, 133, 72, 146, 220, 116, (332,126): 11, 128, 128, 232, 232, 35, 35, 245, 11, 11, 128, 128, (332,138): 128, 33, 232, 232, 117, 245, 245, 245, 117, 117, 117, (332,149): 245, 35, 245, 245, 117, 139, 35, 139, 35, 245, 139, 245, (332,161): 245, 35, 128, 128, 128, 33, 33, 79, 33, 119, 117, 117, (332,173): 117, 117, 245, 140, 117, 117, 35, 35, 35, 35, 11, 35, (332,185): 221, 79, 116, 116, 186, 186, 116, 224, 195, 186, 221, (332,196): 116, 116, 128, 224, 3, 234, 50, 234, 146, 18, 116, 221, (332,208): 116, 221, 128, 33, 79, 72, 195, 204, 79, 66, 35, 33, 108, (332,221): 181, 72, 128, 18, 33, 33, 234, 88, 79, 221, 221, 116, (332,233): 116, 50, 3, 46, 116, 3, 111, 234, 50, 108, 222, 181, 176, (332,246): 253, 78, 116, 146, 146, 234, 72, 116, 50, 108, 146, 234, (332,258): 46, 72, 116, 146, 72, 221, 221, 33, 232, 117, 35, 117, (332,270): 117, 117, 232, 232, 232, 232, 232, 232, 33, 116, 66, 234, (332,282): 108, 108, 108, 220, 234, 234, 156, 50, 108, 50, 108, 220, (332,294): 220, 220, 14, 241, 195, 204, 18, 204, 18, 79, 18, 79, 79, (332,307): 33, 79, 79, 79, 55, 79, 33, 79, 79, 79, 79, 79, 33, 18, (332,321): 116, 79, 18, 18, 18, 72, 18, 66, 66, 234, 234, 14, 156, (332,334): 234, 66, 66, 66, 204, 204, 72, 204, 66, 66, 204, 66, 66, (332,347): 241, 241, 66, 66, 204, 66, 66, 241, 14, 14, 100, 63, 180, (332,360): 28, 100, 100, 100, 14, 241, 156, 14, 241, 14, 241, 14, (332,372): 100, 28, 180, (333,0): 88, 88, 245, 245, 117, 245, 147, 147, 88, 245, 245, 35, 35, (333,13): 245, 245, 35, 35, 232, 128, 232, 33, 35, 35, 117, 119, (333,25): 117, 245, 35, 33, 79, 33, 128, 221, 35, 128, 234, 234, (333,37): 116, 35, 232, 210, 232, 128, 232, 33, 35, 35, 195, 79, (333,49): 128, 117, 11, 117, 11, 128, 33, 33, 221, 195, 49, 72, 128, (333,62): 224, 116, 72, 33, 116, 234, 72, 72, 234, 234, 72, 195, 72, (333,75): 49, 156, 49, 49, 186, 3, 186, 146, 220, 182, 72, 46, 46, (333,88): 72, 72, 195, 146, 72, 72, 186, 3, 49, 182, 176, 222, 116, (333,101): 224, 210, 221, 221, 33, 33, 116, 14, 14, 204, 220, 186, (333,113): 146, 3, 46, 49, 49, 108, 72, 138, 2, 138, 49, 146, 49, (333,126): 72, 128, 232, 35, 245, 245, 11, 35, 128, 33, 33, 221, (333,138): 221, 33, 128, 35, 88, 140, 88, 245, 117, 245, 117, 117, (333,150): 245, 117, 245, 35, 35, 35, 245, 245, 35, 35, 35, 245, 35, (333,163): 232, 232, 33, 33, 33, 79, 232, 245, 88, 245, 117, 35, (333,175): 117, 117, 139, 117, 35, 117, 35, 35, 35, 232, 221, 186, (333,187): 79, 46, 116, 186, 116, 221, 49, 146, 46, 224, 221, 224, (333,199): 33, 44, 221, 49, 49, 46, 128, 11, 11, 210, 88, 35, 33, (333,212): 185, 18, 185, 33, 33, 14, 116, 245, 221, 63, 50, 224, 33, (333,225): 245, 14, 66, 128, 147, 128, 221, 221, 146, 108, 11, 3, (333,237): 176, 12, 49, 181, 181, 91, 64, 91, 50, 220, 78, 234, 116, (333,250): 221, 46, 128, 116, 2, 253, 234, 50, 72, 72, 221, 146, 66, (333,263): 221, 33, 35, 88, 245, 117, 117, 117, 117, 245, 35, 35, (333,275): 117, 245, 128, 79, 18, 72, 66, 156, 108, 108, 108, 108, (333,287): 222, 108, 78, 63, 108, 108, 50, 220, 180, 234, 66, 72, (333,299): 204, 72, 204, 18, 236, 33, 18, 204, 79, 33, 232, 79, 18, (333,312): 204, 18, 79, 33, 232, 79, 33, 79, 33, 79, 79, 116, 72, (333,325): 204, 72, 72, 234, 66, 234, 14, 28, 108, 100, 14, 66, 66, (333,338): 66, 204, 204, 204, 204, 66, 66, 66, 241, 234, 241, 66, (333,350): 38, 195, 204, 66, 14, 14, 62, 14, 100, 28, 63, 100, 14, (333,363): 14, 14, 241, 241, 14, 241, 241, 100, 100, 231, 180, 180, (334,0): 245, 140, 140, 140, 140, 245, 139, 35, 147, 140, 117, 35, (334,12): 35, 35, 35, 35, 35, 35, 35, 232, 35, 35, 117, 140, 117, (334,25): 140, 35, 245, 147, 147, 245, 79, 79, 128, 128, 33, 79, (334,37): 232, 128, 128, 232, 245, 117, 245, 117, 245, 232, 79, 79, (334,49): 33, 35, 35, 11, 245, 232, 221, 245, 33, 116, 72, 116, 79, (334,62): 221, 46, 79, 116, 234, 234, 195, 49, 220, 195, 72, 49, (334,74): 116, 116, 116, 186, 156, 146, 72, 46, 186, 49, 156, 146, (334,86): 72, 195, 186, 186, 116, 46, 46, 221, 116, 186, 3, 116, (334,98): 105, 183, 183, 176, 72, 234, 49, 210, 245, 195, 100, 72, (334,110): 88, 35, 224, 111, 46, 46, 46, 146, 3, 146, 116, 234, 234, (334,123): 72, 116, 234, 234, 46, 232, 117, 245, 245, 128, 33, 116, (334,135): 46, 116, 79, 221, 79, 232, 35, 245, 140, 88, 88, 245, (334,147): 117, 35, 245, 35, 245, 117, 245, 245, 139, 35, 139, 245, (334,159): 245, 35, 35, 128, 128, 33, 33, 55, 33, 35, 117, 117, 245, (334,172): 117, 117, 35, 35, 139, 117, 35, 117, 35, 35, 35, 128, (334,184): 128, 79, 186, 221, 221, 116, 186, 46, 116, 116, 195, 186, (334,196): 221, 221, 116, 116, 221, 33, 128, 11, 35, 221, 116, 18, (334,208): 79, 186, 79, 33, 35, 232, 232, 139, 195, 35, 33, 195, (334,220): 224, 88, 182, 72, 234, 66, 245, 234, 14, 27, 234, 63, 63, (334,233): 234, 116, 116, 182, 146, 116, 46, 111, 108, 183, 91, 253, (334,245): 105, 108, 195, 116, 72, 46, 234, 146, 128, 128, 46, 78, (334,257): 105, 234, 146, 221, 221, 128, 245, 33, 11, 88, 245, 117, (334,269): 245, 117, 245, 140, 35, 232, 33, 232, 33, 79, 72, 49, (334,281): 234, 234, 220, 108, 138, 63, 108, 50, 50, 50, 156, 220, (334,293): 234, 49, 14, 66, 195, 204, 18, 204, 204, 18, 18, 18, 66, (334,306): 241, 66, 18, 18, 66, 241, 66, 18, 79, 33, 236, 79, 79, (334,319): 33, 33, 79, 79, 72, 18, 72, 66, 66, 234, 66, 234, 14, 63, (334,333): 180, 63, 100, 241, 66, 66, 204, 195, 204, 66, 204, 234, (334,345): 62, 14, 14, 62, 234, 241, 66, 204, 14, 28, 100, 14, 14, (334,358): 28, 28, 63, 100, 241, 14, 241, 14, 14, 14, 241, 14, 100, (334,371): 180, 24, 24, 24, (335,0): 140, 245, 117, 88, 140, 88, 117, 55, 232, 232, 245, 245, (335,12): 140, 245, 88, 245, 245, 35, 245, 245, 245, 245, 139, 117, (335,24): 139, 140, 245, 232, 232, 35, 35, 128, 221, 221, 79, 79, (335,36): 33, 128, 33, 33, 33, 35, 35, 232, 232, 232, 33, 35, 119, (335,49): 128, 128, 128, 128, 35, 11, 33, 116, 72, 195, 72, 72, 72, (335,62): 72, 116, 128, 195, 108, 234, 116, 50, 63, 116, 72, 156, (335,74): 186, 46, 46, 46, 195, 224, 46, 116, 46, 46, 186, 146, 195, (335,87): 221, 111, 46, 186, 186, 224, 128, 224, 46, 49, 176, 178, (335,99): 141, 253, 63, 221, 128, 221, 33, 72, 232, 210, 128, 33, (335,111): 116, 72, 128, 50, 49, 50, 234, 128, 116, 72, 72, 220, 50, (335,124): 72, 3, 72, 128, 128, 117, 245, 232, 221, 18, 72, 72, 116, (335,137): 79, 221, 33, 128, 35, 245, 245, 88, 245, 245, 117, 245, (335,149): 117, 245, 245, 139, 245, 35, 245, 35, 35, 139, 35, 245, (335,161): 232, 232, 33, 232, 232, 232, 35, 88, 117, 35, 35, 35, (335,173): 117, 35, 128, 35, 35, 35, 35, 35, 35, 232, 128, 128, 116, (335,186): 186, 46, 33, 46, 116, 221, 221, 11, 33, 3, 221, 221, 186, (335,199): 195, 221, 221, 128, 232, 128, 79, 79, 79, 232, 33, 185, (335,211): 33, 33, 33, 33, 232, 232, 128, 33, 221, 105, 80, 50, 221, (335,224): 221, 88, 221, 18, 128, 221, 245, 128, 116, 105, 253, 90, (335,236): 91, 181, 222, 181, 36, 181, 116, 116, 49, 220, 146, 46, (335,248): 46, 234, 49, 108, 105, 3, 116, 63, 234, 234, 46, 72, 79, (335,261): 116, 116, 116, 33, 35, 88, 245, 35, 117, 117, 117, 35, (335,273): 33, 79, 18, 186, 72, 66, 234, 63, 108, 50, 220, 182, 220, (335,286): 182, 49, 138, 138, 182, 182, 50, 220, 49, 234, 72, 72, (335,298): 72, 72, 72, 72, 72, 72, 79, 116, 116, 33, 79, 18, 72, 18, (335,312): 79, 79, 33, 79, 79, 79, 33, 232, 79, 18, 195, 66, 66, (335,325): 195, 66, 14, 14, 14, 14, 14, 28, 108, 14, 241, 14, 14, (335,338): 66, 204, 66, 204, 66, 66, 241, 14, 62, 14, 14, 62, 14, (335,351): 241, 241, 63, 51, 187, 180, 180, 180, 24, 231, 100, 156, (335,363): 62, 14, 14, 14, 14, 14, 62, 100, 180, 187, 51, 51, (336,0): 245, 245, 117, 117, 245, 245, 245, 245, 117, 35, 35, 88, (336,12): 210, 88, 117, 35, 88, 11, 117, 35, 35, 35, 35, 117, 117, (336,25): 35, 117, 210, 11, 128, 116, 116, 128, 33, 221, 33, 33, 79, (336,38): 79, 128, 232, 128, 79, 210, 232, 245, 79, 232, 128, 33, (336,50): 79, 128, 35, 221, 186, 186, 186, 195, 195, 72, 195, 72, (336,62): 116, 79, 72, 146, 116, 72, 33, 116, 221, 72, 46, 116, 186, (336,75): 221, 116, 195, 195, 128, 3, 46, 156, 146, 186, 195, 49, (336,87): 14, 72, 108, 105, 63, 146, 105, 78, 50, 72, 220, 180, 220, (336,100): 18, 33, 33, 79, 35, 245, 33, 245, 35, 116, 72, 108, 128, (336,113): 46, 88, 116, 33, 79, 234, 204, 18, 195, 18, 18, 234, 66, (336,126): 116, 72, 245, 128, 128, 221, 72, 72, 72, 18, 79, 221, 33, (336,139): 232, 232, 232, 117, 245, 245, 245, 11, 117, 35, 245, 245, (336,151): 88, 35, 35, 245, 117, 245, 245, 35, 35, 35, 35, 232, 232, (336,164): 35, 35, 35, 245, 245, 35, 117, 245, 245, 117, 35, 35, (336,176): 245, 35, 35, 88, 117, 221, 221, 33, 116, 33, 33, 128, (336,188): 221, 46, 186, 186, 116, 186, 195, 186, 128, 11, 117, 128, (336,200): 33, 33, 35, 128, 35, 128, 33, 33, 232, 33, 245, 33, 55, (336,213): 185, 245, 35, 147, 18, 116, 117, 221, 33, 11, 128, 11, (336,225): 72, 33, 72, 46, 234, 11, 72, 128, 80, 63, 49, 72, 146, (336,238): 176, 234, 183, 177, 105, 183, 50, 116, 49, 116, 72, 49, (336,250): 49, 72, 46, 116, 80, 50, 72, 116, 116, 79, 116, 33, 232, (336,263): 245, 245, 35, 35, 245, 140, 117, 232, 117, 117, 221, 195, (336,275): 116, 33, 72, 195, 220, 49, 220, 234, 78, 108, 181, 50, (336,287): 50, 50, 138, 222, 138, 63, 50, 49, 146, 49, 72, 116, 72, (336,300): 49, 108, 78, 138, 195, 49, 49, 49, 234, 49, 146, 72, 195, (336,313): 18, 221, 79, 33, 79, 79, 33, 33, 185, 204, 66, 66, 66, (336,326): 241, 14, 234, 62, 100, 28, 63, 28, 14, 234, 62, 14, 66, (336,339): 204, 204, 66, 241, 241, 14, 241, 14, 100, 14, 241, 66, (336,351): 234, 100, 24, 187, 180, 100, 100, 28, 180, 187, 63, 100, (336,363): 14, 100, 14, 100, 28, 38, 28, 231, 153, 51, 252, 187, (337,0): 140, 117, 117, 117, 117, 245, 117, 117, 35, 128, 35, 11, (337,12): 245, 117, 245, 11, 88, 117, 117, 35, 35, 35, 35, 117, 117, (337,25): 35, 117, 11, 128, 46, 72, 3, 66, 195, 186, 79, 79, 18, (337,38): 186, 79, 33, 128, 33, 245, 128, 210, 35, 11, 33, 72, 49, (337,51): 72, 128, 117, 33, 72, 156, 234, 46, 128, 33, 116, 72, 146, (337,64): 33, 116, 146, 234, 116, 72, 49, 33, 146, 33, 116, 128, 79, (337,77): 63, 123, 156, 195, 182, 156, 186, 63, 104, 108, 187, 24, (337,89): 100, 8, 178, 253, 137, 178, 49, 232, 79, 18, 33, 35, 35, (337,102): 55, 79, 195, 79, 79, 245, 11, 221, 116, 234, 46, 186, 33, (337,115): 186, 245, 35, 232, 232, 35, 33, 33, 116, 66, 234, 195, (337,127): 146, 221, 221, 46, 116, 116, 18, 79, 46, 33, 33, 128, 35, (337,140): 128, 35, 117, 117, 117, 117, 245, 35, 117, 245, 117, 117, (337,152): 245, 245, 117, 35, 139, 117, 117, 245, 35, 139, 232, 35, (337,164): 35, 139, 117, 245, 245, 35, 35, 35, 117, 245, 117, 117, (337,176): 88, 35, 11, 88, 11, 221, 116, 128, 221, 128, 128, 128, (337,188): 33, 46, 46, 116, 186, 186, 116, 33, 128, 128, 117, 128, (337,200): 117, 245, 128, 35, 128, 232, 35, 35, 79, 18, 232, 33, 88, (337,213): 35, 88, 33, 35, 195, 195, 33, 186, 79, 221, 156, 234, (337,225): 224, 234, 46, 108, 46, 72, 105, 146, 49, 49, 72, 146, 49, (337,238): 181, 72, 72, 234, 72, 78, 108, 146, 80, 146, 46, 46, 116, (337,251): 146, 138, 138, 234, 46, 186, 186, 79, 79, 33, 33, 35, (337,263): 139, 245, 232, 35, 245, 35, 33, 33, 221, 221, 116, 72, (337,275): 195, 234, 50, 108, 220, 50, 234, 146, 234, 234, 108, 78, (337,287): 91, 138, 78, 222, 222, 138, 138, 182, 182, 49, 49, 72, (337,299): 222, 141, 137, 182, 182, 182, 138, 105, 105, 138, 50, (337,310): 234, 234, 72, 72, 79, 221, 79, 18, 79, 79, 79, 204, 66, (337,323): 241, 241, 241, 14, 14, 14, 14, 100, 28, 180, 28, 100, (337,335): 241, 14, 241, 66, 195, 204, 66, 241, 14, 14, 14, 100, (337,347): 100, 14, 14, 241, 241, 180, 253, 187, 180, 100, 220, 28, (337,359): 63, 24, 28, 100, 100, 100, 100, 100, 28, 241, 28, 180, (337,371): 24, 187, 192, 142, (338,0): 245, 245, 117, 35, 117, 117, 35, 128, 35, 128, 11, 117, 35, (338,13): 128, 11, 88, 88, 117, 117, 117, 117, 139, 117, 117, 35, (338,25): 35, 128, 128, 46, 3, 3, 3, 49, 66, 72, 72, 72, 195, 79, (338,39): 128, 72, 79, 33, 35, 117, 88, 33, 18, 186, 116, 116, 18, (338,52): 72, 186, 186, 116, 195, 195, 79, 128, 33, 116, 79, 72, (338,64): 234, 116, 181, 121, 253, 128, 72, 116, 14, 128, 128, 33, (338,76): 195, 221, 2, 234, 186, 146, 104, 175, 252, 187, 187, 70, (338,88): 178, 252, 2, 183, 183, 220, 176, 128, 245, 245, 245, 140, (338,100): 88, 35, 33, 33, 55, 117, 128, 128, 33, 18, 221, 116, 116, (338,113): 116, 195, 66, 128, 79, 35, 33, 33, 232, 232, 79, 79, 195, (338,126): 234, 146, 72, 116, 18, 116, 221, 221, 33, 128, 128, 128, (338,138): 33, 232, 117, 35, 35, 35, 128, 35, 128, 245, 128, 245, (338,150): 35, 35, 245, 35, 117, 117, 117, 35, 117, 139, 35, 35, 35, (338,163): 139, 35, 35, 245, 140, 117, 35, 35, 35, 245, 117, 117, (338,175): 11, 11, 35, 117, 11, 35, 221, 221, 33, 128, 128, 128, (338,187): 224, 46, 116, 116, 116, 186, 221, 128, 128, 128, 33, 128, (338,199): 245, 11, 245, 128, 33, 33, 33, 128, 33, 66, 14, 186, 185, (338,212): 33, 116, 79, 49, 11, 117, 88, 186, 146, 128, 186, 91, (338,224): 156, 79, 146, 220, 108, 253, 116, 72, 181, 49, 220, 105, (338,236): 105, 72, 146, 72, 46, 72, 80, 72, 72, 116, 234, 50, 80, (338,249): 182, 182, 234, 234, 234, 146, 116, 46, 79, 221, 33, 232, (338,261): 35, 35, 35, 232, 232, 35, 35, 35, 128, 79, 33, 72, 234, (338,274): 72, 14, 108, 50, 63, 234, 50, 234, 50, 50, 50, 72, 146, (338,287): 234, 222, 124, 105, 78, 138, 63, 176, 123, 176, 183, 133, (338,299): 72, 137, 137, 181, 141, 181, 176, 183, 91, 181, 156, 49, (338,311): 49, 72, 186, 79, 79, 18, 79, 18, 79, 204, 204, 234, 14, (338,324): 14, 14, 14, 14, 62, 100, 100, 63, 63, 231, 100, 14, 241, (338,337): 14, 66, 204, 66, 66, 14, 14, 28, 100, 100, 100, 14, 241, (338,350): 14, 100, 24, 2, 187, 63, 100, 100, 63, 63, 24, 28, 28, (338,363): 100, 100, 100, 28, 231, 14, 24, 24, 153, 142, 51, 24, (339,0): 245, 245, 117, 117, 117, 35, 35, 232, 11, 117, 35, 11, 128, (339,13): 128, 35, 88, 117, 117, 88, 117, 117, 245, 117, 245, 128, (339,25): 232, 11, 33, 116, 3, 146, 72, 72, 72, 186, 116, 79, 116, (339,38): 221, 33, 221, 79, 116, 221, 221, 33, 128, 11, 72, 33, 128, (339,51): 186, 49, 49, 72, 116, 128, 116, 116, 79, 116, 116, 79, (339,63): 116, 146, 108, 63, 108, 234, 195, 104, 108, 220, 234, 66, (339,75): 116, 220, 33, 35, 220, 79, 195, 156, 187, 178, 178, 157, (339,87): 226, 214, 214, 180, 185, 14, 232, 11, 128, 128, 128, 245, (339,99): 245, 35, 35, 35, 245, 232, 245, 33, 232, 33, 221, 245, 11, (339,112): 128, 11, 72, 72, 128, 18, 245, 33, 18, 128, 79, 72, 116, (339,125): 72, 49, 72, 72, 72, 116, 221, 33, 128, 128, 35, 232, 128, (339,138): 33, 33, 35, 128, 35, 128, 128, 245, 128, 245, 245, 245, (339,150): 35, 245, 35, 245, 117, 35, 245, 35, 117, 35, 139, 245, (339,162): 35, 139, 245, 245, 117, 245, 245, 35, 35, 35, 35, 35, (339,174): 117, 117, 117, 117, 11, 117, 128, 33, 221, 33, 128, 128, (339,186): 33, 221, 79, 221, 79, 221, 46, 221, 11, 117, 128, 128, (339,198): 35, 11, 232, 128, 128, 33, 33, 33, 79, 79, 33, 79, 245, (339,211): 33, 79, 195, 221, 79, 185, 108, 50, 128, 128, 186, 186, (339,223): 186, 116, 128, 108, 224, 146, 78, 63, 181, 146, 50, 108, (339,235): 72, 234, 137, 216, 91, 234, 116, 49, 3, 137, 141, 78, (339,247): 128, 50, 105, 91, 253, 182, 116, 224, 11, 33, 128, 33, (339,259): 128, 117, 245, 35, 232, 35, 35, 232, 128, 79, 18, 116, (339,271): 79, 234, 63, 234, 2, 63, 234, 63, 234, 234, 49, 220, 49, (339,284): 50, 49, 50, 222, 91, 137, 137, 105, 63, 138, 253, 64, (339,296): 104, 223, 108, 46, 78, 183, 34, 64, 176, 253, 78, 63, 50, (339,309): 14, 146, 18, 195, 72, 18, 79, 18, 18, 204, 204, 204, 241, (339,322): 100, 100, 100, 100, 62, 14, 14, 14, 100, 28, 231, 100, (339,334): 100, 14, 100, 241, 241, 66, 66, 241, 100, 100, 100, 28, (339,346): 28, 100, 14, 241, 14, 28, 180, 63, 63, 28, 100, 108, 153, (339,359): 24, 180, 180, 24, 180, 28, 28, 28, 180, 194, 24, 24, 180, (339,372): 24, 207, 207, (340,0): 245, 117, 117, 35, 117, 128, 128, 33, 117, 33, 128, 35, (340,12): 117, 11, 11, 88, 117, 117, 88, 88, 88, 117, 117, 117, 232, (340,25): 245, 128, 221, 72, 146, 49, 146, 49, 195, 72, 33, 128, 33, (340,38): 46, 195, 49, 49, 116, 33, 221, 146, 49, 195, 72, 186, 72, (340,51): 72, 18, 221, 33, 186, 33, 72, 186, 221, 79, 116, 195, 220, (340,64): 50, 2, 234, 116, 108, 108, 183, 183, 100, 104, 104, 14, (340,76): 220, 252, 72, 108, 180, 14, 180, 142, 153, 248, 214, 28, (340,88): 207, 249, 95, 187, 33, 33, 128, 11, 33, 128, 128, 128, (340,100): 245, 245, 140, 88, 33, 35, 232, 245, 128, 79, 221, 195, (340,112): 221, 128, 116, 72, 128, 72, 35, 128, 33, 35, 116, 234, (340,124): 49, 195, 49, 116, 72, 46, 33, 128, 128, 33, 128, 128, (340,136): 128, 33, 33, 33, 128, 35, 128, 232, 128, 35, 245, 11, (340,148): 245, 117, 245, 117, 117, 117, 117, 117, 35, 245, 117, 35, (340,160): 245, 139, 35, 245, 245, 245, 139, 245, 139, 35, 35, 128, (340,172): 245, 117, 117, 128, 35, 11, 35, 11, 35, 128, 128, 128, (340,184): 128, 33, 33, 33, 33, 33, 33, 128, 33, 128, 11, 11, 128, (340,197): 128, 224, 33, 221, 116, 79, 79, 46, 79, 33, 128, 35, 35, (340,210): 210, 35, 33, 186, 232, 128, 221, 35, 117, 186, 195, 221, (340,222): 221, 156, 181, 3, 234, 221, 128, 72, 221, 116, 63, 3, 72, (340,235): 72, 224, 116, 72, 46, 3, 133, 176, 234, 3, 146, 234, 78, (340,248): 116, 72, 146, 72, 72, 116, 116, 221, 128, 128, 128, 35, (340,260): 117, 128, 232, 33, 35, 232, 79, 18, 66, 234, 14, 50, 108, (340,273): 253, 50, 253, 181, 234, 138, 234, 234, 234, 138, 50, 105, (340,285): 105, 176, 181, 137, 137, 105, 78, 34, 105, 63, 63, 181, (340,297): 2, 234, 116, 220, 105, 138, 156, 63, 108, 156, 156, 156, (340,309): 156, 49, 66, 195, 204, 116, 18, 18, 204, 66, 66, 66, 14, (340,322): 14, 100, 100, 14, 14, 14, 62, 100, 100, 63, 63, 28, 100, (340,335): 100, 100, 100, 241, 241, 241, 14, 14, 28, 28, 100, 100, (340,347): 100, 100, 14, 100, 180, 63, 28, 100, 108, 28, 28, 63, 24, (340,360): 187, 187, 24, 24, 28, 28, 28, 231, 100, 153, 153, 153, (340,372): 24, 187, 142, (341,0): 245, 245, 117, 117, 245, 35, 35, 33, 33, 185, 79, 33, 128, (341,13): 117, 117, 117, 11, 88, 117, 88, 88, 117, 117, 232, 128, (341,25): 128, 221, 186, 195, 80, 156, 50, 234, 234, 220, 220, 146, (341,37): 116, 72, 49, 66, 234, 46, 221, 221, 108, 2, 2, 220, 66, (341,50): 72, 186, 116, 221, 221, 221, 33, 186, 72, 221, 79, 116, (341,62): 49, 220, 63, 63, 63, 253, 64, 220, 234, 121, 104, 105, (341,74): 242, 121, 104, 216, 180, 66, 100, 70, 226, 51, 241, 241, (341,86): 231, 233, 233, 231, 99, 95, 14, 195, 35, 88, 46, 221, 128, (341,99): 245, 88, 210, 232, 33, 33, 232, 79, 33, 33, 79, 18, 234, (341,112): 46, 128, 224, 116, 128, 72, 221, 33, 221, 128, 33, 116, (341,124): 221, 46, 116, 46, 116, 221, 221, 33, 221, 33, 221, 79, (341,136): 128, 33, 33, 33, 33, 128, 35, 33, 128, 128, 128, 35, 232, (341,149): 245, 128, 35, 35, 245, 35, 117, 117, 117, 139, 245, 35, (341,161): 245, 245, 245, 139, 117, 245, 35, 245, 35, 35, 35, 11, (341,173): 117, 35, 128, 128, 35, 11, 35, 128, 33, 128, 232, 33, 33, (341,186): 33, 33, 33, 128, 35, 35, 128, 11, 11, 128, 221, 46, 186, (341,199): 186, 49, 146, 195, 49, 195, 18, 128, 11, 33, 186, 33, 79, (341,212): 35, 79, 128, 186, 128, 128, 128, 128, 128, 128, 128, 88, (341,224): 72, 146, 128, 138, 63, 97, 50, 116, 72, 108, 183, 27, (341,236): 108, 78, 63, 222, 72, 111, 50, 222, 222, 146, 111, 72, (341,248): 64, 183, 63, 72, 33, 128, 128, 128, 128, 128, 128, 128, (341,260): 128, 33, 33, 79, 33, 79, 79, 66, 234, 220, 108, 180, 183, (341,273): 104, 108, 2, 105, 220, 50, 49, 3, 234, 78, 105, 183, 91, (341,286): 105, 108, 138, 138, 138, 181, 253, 253, 108, 14, 63, 234, (341,298): 234, 234, 72, 195, 234, 156, 156, 156, 220, 156, 195, 72, (341,310): 18, 195, 79, 79, 33, 55, 33, 18, 204, 66, 241, 62, 100, (341,323): 100, 100, 14, 62, 14, 100, 100, 231, 24, 180, 231, 63, (341,335): 100, 28, 100, 14, 234, 14, 241, 100, 28, 63, 100, 28, 63, (341,348): 28, 28, 28, 24, 180, 63, 63, 153, 108, 28, 63, 2, 24, (341,361): 207, 187, 24, 180, 180, 231, 28, 100, 28, 100, 28, 142, (341,373): 142, 51, (342,0): 117, 245, 117, 245, 117, 117, 128, 33, 79, 72, 72, 186, (342,12): 221, 33, 128, 128, 117, 117, 11, 88, 117, 35, 128, 33, 79, (342,25): 79, 116, 195, 49, 156, 156, 50, 49, 220, 108, 63, 108, (342,37): 234, 234, 234, 46, 72, 72, 50, 234, 50, 234, 108, 180, 50, (342,50): 195, 18, 186, 72, 195, 116, 35, 116, 72, 72, 49, 66, 195, (342,63): 195, 72, 234, 180, 220, 234, 220, 100, 123, 123, 187, 104, (342,75): 216, 175, 123, 104, 18, 14, 14, 24, 157, 207, 204, 233, (342,87): 241, 24, 60, 24, 242, 175, 14, 116, 116, 116, 116, 221, (342,99): 128, 11, 117, 33, 66, 204, 18, 66, 18, 79, 79, 232, 33, (342,112): 128, 224, 210, 224, 11, 11, 221, 128, 116, 46, 224, 221, (342,124): 224, 11, 11, 221, 33, 128, 33, 33, 221, 221, 79, 33, 245, (342,137): 128, 128, 128, 33, 221, 33, 33, 33, 33, 33, 33, 128, 33, (342,150): 232, 35, 245, 117, 117, 117, 35, 117, 35, 117, 139, 35, (342,162): 245, 245, 245, 245, 35, 35, 35, 245, 245, 245, 117, 128, (342,174): 128, 33, 35, 11, 35, 128, 33, 33, 33, 33, 33, 79, 79, 33, (342,188): 232, 232, 232, 128, 128, 224, 224, 46, 3, 146, 156, 156, (342,200): 220, 49, 195, 72, 49, 72, 221, 245, 128, 18, 221, 79, 11, (342,213): 35, 88, 185, 116, 117, 128, 146, 195, 186, 186, 156, 11, (342,225): 195, 49, 128, 49, 72, 182, 146, 72, 210, 116, 138, 221, (342,237): 11, 46, 183, 138, 116, 224, 3, 138, 91, 108, 80, 116, (342,249): 146, 234, 72, 128, 245, 128, 33, 116, 79, 221, 33, 79, (342,261): 79, 79, 79, 79, 18, 72, 66, 234, 220, 63, 253, 64, 253, (342,274): 63, 105, 105, 108, 108, 108, 181, 108, 182, 181, 181, (342,285): 105, 176, 137, 50, 181, 2, 63, 63, 234, 72, 66, 66, 195, (342,298): 100, 180, 234, 18, 72, 156, 156, 14, 14, 49, 125, 79, 79, (342,311): 79, 33, 33, 79, 33, 236, 18, 204, 204, 14, 100, 100, 100, (342,324): 14, 62, 100, 14, 100, 100, 180, 180, 24, 63, 231, 180, (342,336): 100, 14, 241, 62, 14, 241, 100, 63, 231, 63, 28, 180, (342,348): 180, 180, 180, 180, 231, 180, 180, 180, 28, 100, 28, 24, (342,360): 63, 24, 24, 180, 24, 24, 24, 28, 194, 28, 194, 28, 207, (342,373): 51, 142, (343,0): 245, 245, 117, 245, 245, 117, 35, 232, 186, 186, 125, 195, (343,12): 195, 195, 186, 128, 128, 35, 117, 117, 35, 128, 33, 221, (343,24): 195, 186, 72, 49, 49, 146, 146, 234, 50, 220, 220, 50, (343,36): 234, 220, 50, 181, 64, 91, 63, 105, 234, 49, 234, 91, 181, (343,49): 253, 180, 49, 221, 79, 195, 234, 116, 195, 195, 195, 14, (343,61): 220, 234, 234, 220, 221, 49, 234, 195, 108, 33, 234, 100, (343,73): 187, 72, 234, 100, 14, 187, 204, 66, 180, 66, 187, 25, 28, (343,86): 204, 231, 28, 100, 66, 100, 253, 63, 183, 146, 3, 116, 46, (343,99): 224, 128, 35, 33, 195, 185, 33, 18, 79, 79, 66, 66, 50, (343,112): 49, 234, 46, 72, 11, 224, 72, 116, 46, 186, 3, 49, 156, (343,125): 116, 11, 224, 245, 128, 33, 221, 79, 221, 128, 35, 11, (343,137): 245, 117, 128, 221, 33, 221, 33, 33, 79, 79, 79, 79, 33, (343,150): 128, 33, 35, 245, 35, 117, 117, 117, 35, 245, 35, 35, (343,162): 139, 245, 35, 139, 245, 232, 245, 128, 117, 117, 11, 117, (343,174): 128, 33, 11, 117, 35, 128, 33, 33, 79, 79, 79, 33, 55, (343,187): 232, 35, 245, 232, 128, 221, 224, 46, 186, 156, 50, 50, (343,199): 50, 50, 195, 224, 128, 33, 116, 221, 128, 33, 79, 128, (343,211): 79, 33, 79, 128, 221, 195, 220, 220, 46, 128, 3, 49, 221, (343,224): 182, 63, 72, 3, 49, 11, 72, 105, 137, 49, 116, 234, 72, (343,237): 234, 72, 222, 46, 182, 3, 72, 46, 50, 146, 128, 72, 195, (343,250): 72, 221, 35, 33, 79, 18, 72, 186, 186, 116, 18, 18, 18, (343,263): 79, 79, 79, 18, 234, 234, 108, 176, 123, 91, 105, 253, (343,275): 104, 253, 253, 253, 141, 177, 64, 253, 223, 176, 138, (343,286): 108, 183, 108, 138, 234, 49, 234, 234, 72, 66, 241, 14, (343,298): 195, 204, 66, 234, 66, 234, 14, 156, 195, 195, 66, 234, (343,310): 204, 18, 79, 236, 185, 204, 204, 204, 38, 66, 14, 14, (343,322): 100, 100, 14, 14, 14, 100, 100, 100, 180, 180, 24, 63, (343,334): 231, 180, 100, 14, 66, 14, 241, 14, 100, 180, 180, 231, (343,346): 63, 207, 187, 24, 180, 28, 63, 28, 28, 63, 28, 100, 100, (343,359): 24, 100, 28, 28, 28, 24, 207, 24, 231, 100, 100, 62, 100, (343,372): 142, 51, 142, (344,0): 35, 35, 117, 35, 117, 128, 35, 128, 66, 186, 35, 210, 88, (344,13): 128, 185, 46, 128, 35, 11, 117, 128, 46, 116, 33, 72, 195, (344,26): 195, 186, 186, 116, 186, 72, 220, 108, 108, 234, 49, 234, (344,38): 234, 66, 72, 253, 108, 72, 108, 220, 221, 72, 234, 195, (344,50): 72, 116, 72, 108, 108, 79, 63, 72, 108, 108, 195, 116, 63, (344,63): 156, 72, 180, 180, 183, 79, 180, 49, 128, 66, 2, 72, 185, (344,76): 100, 234, 18, 128, 156, 125, 79, 14, 99, 100, 233, 204, (344,88): 62, 207, 14, 79, 221, 146, 78, 72, 3, 72, 72, 221, 128, (344,101): 128, 33, 79, 125, 79, 35, 33, 195, 241, 66, 116, 46, 146, (344,114): 146, 116, 156, 50, 137, 80, 116, 3, 146, 50, 138, 49, (344,126): 116, 46, 33, 33, 79, 221, 33, 128, 128, 128, 35, 128, (344,138): 128, 79, 33, 33, 221, 18, 79, 116, 72, 72, 79, 33, 35, (344,151): 245, 35, 35, 117, 117, 117, 245, 117, 245, 35, 35, 245, (344,163): 35, 35, 245, 35, 35, 245, 128, 128, 35, 245, 245, 128, (344,175): 33, 79, 221, 221, 185, 185, 33, 128, 232, 232, 232, 35, (344,187): 232, 232, 232, 35, 232, 128, 116, 49, 80, 50, 108, 156, (344,199): 116, 186, 46, 128, 128, 128, 128, 33, 116, 11, 35, 186, (344,211): 128, 33, 128, 156, 49, 11, 128, 221, 221, 128, 11, 221, (344,223): 146, 116, 146, 116, 49, 108, 176, 108, 49, 105, 105, 72, (344,235): 80, 116, 50, 116, 116, 3, 80, 133, 3, 3, 182, 234, 72, (344,248): 72, 72, 221, 128, 33, 245, 35, 72, 195, 116, 72, 33, 128, (344,261): 128, 204, 128, 18, 33, 72, 234, 220, 78, 105, 78, 91, 64, (344,274): 2, 78, 253, 64, 183, 64, 64, 176, 182, 234, 222, 108, (344,286): 138, 183, 141, 253, 50, 234, 234, 66, 195, 204, 66, 66, (344,298): 66, 195, 66, 204, 195, 66, 66, 195, 204, 18, 18, 18, 18, (344,311): 33, 79, 79, 185, 204, 204, 66, 66, 62, 100, 100, 100, (344,323): 100, 100, 28, 28, 28, 100, 28, 63, 231, 180, 231, 63, (344,335): 231, 14, 241, 14, 241, 14, 100, 231, 180, 180, 28, 180, (344,347): 207, 51, 2, 24, 180, 180, 100, 14, 24, 104, 180, 14, 100, (344,360): 100, 100, 180, 231, 231, 187, 51, 231, 194, 194, 100, (344,371): 194, 28, 24, 207, (345,0): 117, 35, 35, 35, 33, 33, 33, 79, 128, 33, 33, 33, 33, 221, (345,14): 128, 232, 88, 128, 128, 128, 128, 221, 186, 146, 72, 72, (345,26): 72, 3, 186, 186, 186, 186, 116, 3, 72, 116, 46, 72, 72, (345,39): 116, 116, 50, 49, 221, 72, 72, 33, 116, 128, 33, 49, 108, (345,52): 180, 63, 220, 79, 49, 66, 195, 72, 195, 156, 220, 234, (345,64): 220, 220, 63, 108, 220, 14, 2, 63, 66, 66, 33, 18, 245, (345,77): 79, 35, 18, 33, 186, 79, 195, 66, 241, 204, 232, 180, 183, (345,90): 175, 176, 49, 72, 182, 182, 182, 182, 49, 116, 128, 128, (345,102): 128, 33, 117, 117, 35, 35, 35, 33, 221, 79, 195, 49, 108, (345,115): 3, 182, 3, 146, 141, 137, 3, 116, 49, 72, 146, 50, 72, (345,128): 221, 221, 79, 33, 128, 232, 128, 35, 11, 245, 128, 33, (345,140): 33, 33, 79, 186, 18, 72, 204, 18, 33, 128, 232, 232, 128, (345,153): 35, 117, 117, 139, 117, 139, 117, 35, 35, 245, 35, 245, (345,165): 35, 35, 35, 117, 35, 128, 35, 88, 117, 128, 128, 185, 79, (345,178): 79, 79, 33, 128, 35, 117, 232, 128, 245, 35, 245, 245, (345,190): 35, 128, 49, 80, 50, 50, 156, 3, 116, 46, 128, 128, 221, (345,203): 128, 11, 210, 11, 221, 79, 88, 210, 33, 33, 128, 117, 88, (345,216): 128, 128, 11, 128, 116, 195, 72, 221, 181, 108, 224, 116, (345,228): 234, 78, 234, 220, 72, 49, 116, 46, 46, 49, 50, 183, 80, (345,241): 3, 146, 182, 182, 3, 46, 72, 46, 33, 33, 221, 204, 116, (345,254): 72, 66, 108, 195, 195, 128, 33, 33, 195, 72, 72, 234, 63, (345,267): 2, 78, 78, 253, 176, 234, 181, 105, 105, 234, 138, 234, (345,279): 116, 138, 50, 234, 50, 176, 34, 176, 183, 12, 181, 182, (345,291): 234, 234, 14, 14, 66, 66, 195, 204, 204, 66, 66, 66, 66, (345,304): 204, 195, 18, 79, 185, 79, 79, 236, 18, 18, 18, 204, 66, (345,317): 241, 14, 100, 63, 28, 28, 28, 28, 100, 28, 63, 100, 28, (345,330): 231, 180, 231, 63, 100, 231, 100, 100, 100, 100, 28, 180, (345,342): 180, 24, 180, 180, 24, 187, 51, 24, 180, 180, 231, 100, (345,354): 14, 63, 51, 24, 100, 28, 28, 28, 231, 231, 180, 192, 51, (345,367): 231, 62, 28, 62, 62, 194, 231, 24, (346,0): 245, 245, 245, 117, 35, 232, 128, 33, 117, 35, 128, 11, (346,12): 117, 128, 33, 221, 128, 79, 221, 33, 224, 116, 72, 195, 3, (346,25): 186, 186, 116, 186, 116, 116, 79, 128, 221, 221, 46, 221, (346,37): 46, 116, 116, 221, 72, 116, 33, 46, 46, 46, 72, 116, 33, (346,50): 116, 195, 72, 116, 72, 116, 72, 49, 49, 195, 116, 234, (346,62): 100, 63, 49, 14, 27, 175, 183, 14, 104, 8, 253, 88, 33, (346,75): 79, 234, 180, 100, 100, 117, 33, 35, 232, 185, 79, 35, (346,87): 204, 79, 232, 79, 72, 72, 133, 182, 124, 181, 63, 182, (346,99): 195, 221, 11, 117, 117, 44, 88, 128, 33, 221, 18, 234, (346,111): 220, 49, 234, 50, 146, 253, 91, 253, 177, 89, 176, 156, (346,123): 80, 221, 116, 49, 116, 79, 79, 33, 33, 33, 128, 128, 35, (346,136): 245, 11, 128, 221, 116, 116, 186, 72, 195, 72, 79, 33, (346,148): 232, 232, 128, 128, 35, 245, 35, 117, 117, 117, 117, 35, (346,160): 245, 35, 245, 117, 35, 35, 245, 128, 117, 117, 128, 11, (346,172): 117, 117, 128, 79, 185, 33, 33, 33, 128, 117, 88, 11, (346,184): 117, 11, 35, 128, 33, 128, 79, 116, 49, 195, 146, 49, (346,196): 186, 128, 128, 116, 221, 128, 11, 117, 128, 128, 35, 128, (346,208): 18, 33, 11, 72, 11, 11, 210, 128, 128, 221, 116, 3, 50, (346,221): 105, 50, 46, 116, 146, 128, 46, 116, 72, 128, 3, 234, 27, (346,234): 137, 72, 221, 146, 50, 146, 138, 181, 108, 116, 221, 3, (346,246): 146, 221, 195, 128, 128, 33, 116, 66, 234, 14, 220, 234, (346,258): 72, 79, 72, 18, 195, 234, 18, 72, 72, 49, 50, 78, 181, (346,271): 34, 183, 253, 105, 253, 234, 108, 78, 108, 146, 49, 138, (346,283): 78, 36, 64, 137, 34, 105, 181, 108, 234, 50, 220, 14, 14, (346,296): 66, 204, 66, 66, 66, 66, 66, 204, 195, 204, 204, 204, 79, (346,309): 18, 18, 18, 66, 204, 204, 66, 241, 100, 100, 231, 28, (346,321): 100, 100, 100, 100, 100, 100, 100, 28, 63, 28, 63, 100, (346,333): 100, 28, 108, 231, 180, 180, 24, 180, 24, 24, 180, 24, (346,345): 24, 187, 104, 2, 180, 28, 28, 180, 100, 62, 28, 187, 24, (346,358): 100, 28, 28, 28, 180, 231, 24, 192, 51, 231, 100, 28, 60, (346,371): 241, 241, 231, 74, (347,0): 245, 88, 245, 88, 88, 245, 117, 88, 33, 128, 117, 147, 210, (347,13): 128, 116, 18, 195, 116, 79, 116, 49, 156, 146, 116, 3, (347,25): 186, 3, 186, 116, 79, 221, 221, 221, 128, 33, 116, 18, 72, (347,38): 72, 72, 221, 221, 79, 221, 221, 33, 72, 66, 116, 79, 116, (347,51): 221, 35, 128, 128, 117, 72, 128, 72, 2, 195, 195, 234, 63, (347,64): 63, 49, 245, 156, 180, 2, 195, 72, 2, 14, 195, 27, 100, (347,77): 70, 180, 253, 63, 210, 185, 79, 204, 14, 24, 100, 18, 232, (347,90): 49, 72, 46, 116, 3, 222, 78, 63, 156, 186, 33, 88, 88, 88, (347,104): 245, 11, 232, 128, 128, 33, 128, 221, 221, 116, 128, 116, (347,116): 3, 49, 138, 46, 91, 12, 108, 3, 156, 220, 49, 156, 116, (347,129): 33, 33, 128, 128, 232, 245, 11, 245, 128, 33, 116, 72, (347,141): 195, 195, 72, 195, 79, 128, 128, 35, 128, 232, 232, 35, (347,153): 117, 117, 117, 117, 117, 35, 245, 35, 117, 245, 35, 245, (347,165): 35, 128, 35, 128, 128, 117, 117, 128, 128, 33, 221, 33, (347,177): 33, 119, 35, 117, 245, 11, 117, 232, 245, 11, 128, 33, (347,189): 46, 72, 49, 72, 46, 128, 46, 186, 46, 224, 221, 128, 11, (347,202): 88, 11, 33, 33, 35, 11, 117, 221, 116, 79, 88, 128, 33, (347,215): 128, 128, 46, 186, 186, 146, 156, 146, 221, 72, 63, 138, (347,227): 180, 78, 108, 72, 50, 221, 146, 50, 220, 50, 72, 146, (347,239): 220, 108, 182, 234, 182, 220, 72, 221, 128, 49, 128, 128, (347,251): 116, 46, 204, 234, 234, 234, 195, 72, 195, 63, 234, 195, (347,263): 234, 63, 181, 50, 50, 105, 176, 181, 34, 105, 234, 50, (347,275): 183, 105, 78, 50, 108, 78, 138, 181, 182, 137, 137, 141, (347,287): 137, 105, 105, 181, 63, 108, 108, 220, 234, 241, 66, 66, (347,299): 66, 241, 66, 195, 18, 66, 66, 195, 66, 195, 18, 204, 204, (347,312): 66, 195, 66, 66, 100, 63, 180, 63, 28, 63, 100, 100, 14, (347,325): 100, 100, 100, 100, 28, 100, 100, 28, 100, 28, 231, 63, (347,337): 231, 180, 24, 180, 24, 180, 180, 180, 24, 51, 2, 231, (347,349): 100, 100, 28, 28, 14, 241, 14, 180, 28, 14, 28, 180, 28, (347,362): 231, 231, 231, 51, 252, 231, 60, 231, 28, 241, 20, 231, (347,374): 24, (348,0): 117, 245, 117, 245, 117, 117, 117, 117, 35, 128, 128, 33, (348,12): 221, 125, 186, 116, 18, 116, 18, 72, 220, 108, 182, 146, (348,24): 186, 146, 146, 195, 186, 221, 79, 79, 79, 224, 128, 116, (348,36): 195, 49, 195, 195, 116, 128, 46, 18, 128, 33, 116, 116, (348,48): 72, 116, 18, 224, 33, 72, 49, 186, 128, 128, 245, 14, 63, (348,61): 108, 186, 72, 220, 104, 180, 175, 156, 108, 79, 14, 108, (348,73): 100, 28, 180, 123, 70, 121, 242, 123, 70, 27, 100, 25, (348,85): 178, 53, 53, 37, 93, 180, 221, 46, 50, 3, 11, 234, 49, 72, (348,99): 221, 11, 88, 88, 88, 33, 79, 116, 72, 72, 116, 116, 46, (348,112): 156, 63, 63, 105, 195, 11, 80, 182, 128, 186, 111, 221, (348,124): 156, 195, 221, 186, 79, 119, 35, 117, 245, 117, 11, 210, (348,136): 245, 128, 79, 72, 195, 49, 72, 116, 18, 79, 245, 35, 33, (348,149): 79, 128, 245, 117, 117, 117, 117, 117, 35, 117, 35, 35, (348,161): 35, 245, 35, 245, 117, 128, 117, 11, 117, 117, 11, 128, (348,173): 33, 33, 33, 33, 119, 117, 117, 117, 117, 117, 128, 33, (348,185): 11, 11, 245, 46, 116, 3, 234, 186, 72, 186, 116, 46, 186, (348,198): 33, 88, 210, 117, 128, 128, 245, 210, 35, 116, 128, 33, (348,210): 72, 79, 72, 195, 146, 128, 46, 33, 224, 221, 116, 146, (348,222): 50, 63, 80, 63, 3, 116, 72, 234, 111, 128, 49, 234, 146, (348,235): 234, 72, 46, 221, 49, 49, 116, 186, 49, 234, 146, 46, (348,247): 221, 116, 224, 116, 195, 72, 72, 234, 195, 156, 234, 116, (348,259): 195, 108, 100, 195, 234, 18, 220, 50, 222, 78, 22, 222, (348,271): 124, 181, 181, 234, 108, 50, 50, 49, 181, 138, 63, 176, (348,283): 50, 12, 176, 137, 176, 78, 34, 91, 105, 78, 180, 108, 14, (348,296): 241, 66, 241, 241, 14, 241, 241, 66, 66, 204, 204, 66, (348,308): 66, 66, 18, 18, 204, 72, 66, 14, 108, 24, 63, 28, 180, (348,321): 63, 28, 100, 100, 100, 100, 100, 28, 100, 100, 100, 28, (348,333): 63, 63, 180, 28, 63, 231, 180, 180, 231, 63, 28, 24, 2, (348,346): 180, 231, 100, 14, 100, 63, 100, 100, 241, 62, 100, 14, (348,358): 62, 100, 28, 153, 24, 180, 231, 58, 192, 207, 28, 231, (348,370): 60, 62, 62, 231, 142, (349,0): 140, 245, 245, 245, 117, 117, 35, 128, 117, 35, 35, 128, (349,12): 221, 186, 116, 33, 79, 72, 234, 234, 234, 182, 156, 49, 3, (349,25): 146, 156, 49, 72, 186, 185, 116, 79, 79, 33, 79, 66, 234, (349,38): 66, 72, 72, 79, 18, 72, 221, 128, 33, 33, 79, 116, 116, (349,51): 128, 33, 49, 100, 195, 186, 2, 72, 116, 104, 183, 14, 253, (349,64): 180, 180, 108, 104, 27, 8, 2, 195, 28, 2, 33, 100, 51, (349,77): 249, 37, 53, 37, 229, 242, 53, 15, 178, 249, 229, 95, 37, (349,90): 249, 180, 116, 146, 49, 146, 116, 46, 128, 117, 88, 88, (349,102): 117, 35, 210, 35, 186, 195, 116, 72, 3, 49, 72, 108, 63, (349,115): 49, 146, 49, 210, 146, 78, 3, 195, 156, 49, 186, 116, 33, (349,128): 232, 128, 117, 117, 11, 245, 88, 88, 35, 33, 116, 195, (349,140): 49, 195, 72, 116, 18, 33, 128, 33, 79, 79, 33, 117, 245, (349,153): 35, 117, 117, 117, 117, 35, 35, 35, 35, 117, 35, 117, (349,165): 117, 117, 35, 35, 117, 11, 35, 128, 33, 128, 33, 33, 232, (349,178): 117, 35, 117, 245, 35, 128, 128, 221, 116, 182, 234, 133, (349,190): 116, 111, 116, 49, 156, 186, 33, 33, 33, 117, 11, 117, (349,202): 33, 33, 128, 128, 33, 18, 72, 128, 46, 221, 72, 221, 49, (349,215): 146, 91, 63, 50, 156, 156, 146, 186, 72, 221, 49, 116, (349,227): 46, 116, 63, 78, 63, 46, 63, 108, 116, 224, 49, 49, 195, (349,240): 220, 220, 72, 11, 33, 49, 156, 72, 234, 195, 72, 195, (349,252): 116, 46, 195, 234, 108, 234, 221, 116, 72, 234, 195, 234, (349,264): 49, 234, 50, 50, 78, 124, 176, 183, 138, 64, 183, 181, (349,276): 138, 108, 3, 234, 138, 181, 12, 78, 91, 138, 78, 138, 34, (349,289): 91, 12, 176, 2, 108, 100, 234, 66, 14, 241, 14, 14, 14, (349,302): 14, 14, 220, 66, 66, 234, 14, 66, 72, 204, 72, 66, 234, (349,315): 100, 180, 180, 63, 100, 24, 63, 28, 100, 100, 100, 100, (349,327): 63, 100, 63, 100, 100, 28, 180, 231, 180, 28, 63, 231, (349,339): 63, 231, 63, 28, 28, 180, 207, 180, 100, 241, 14, 100, (349,351): 180, 100, 100, 62, 14, 100, 100, 62, 28, 231, 24, 24, (349,363): 231, 28, 207, 93, 58, 28, 231, 231, 194, 194, 153, 231, (350,0): 88, 140, 88, 88, 245, 117, 117, 117, 128, 11, 88, 88, 117, (350,13): 128, 33, 33, 221, 72, 49, 146, 3, 72, 3, 3, 3, 72, 3, 195, (350,28): 146, 195, 18, 79, 116, 18, 186, 116, 18, 195, 18, 79, 195, (350,41): 72, 18, 18, 116, 79, 33, 128, 88, 11, 33, 116, 116, 72, (350,54): 186, 128, 33, 50, 195, 11, 234, 14, 234, 50, 123, 2, 66, (350,67): 234, 187, 37, 37, 183, 51, 63, 51, 195, 14, 14, 123, 246, (350,80): 178, 214, 53, 214, 89, 238, 15, 248, 242, 95, 214, 89, (350,92): 123, 2, 234, 224, 33, 128, 245, 11, 245, 35, 128, 128, (350,104): 195, 156, 220, 220, 80, 49, 49, 80, 33, 195, 33, 88, 221, (350,117): 156, 210, 111, 63, 50, 80, 186, 35, 128, 128, 35, 35, 35, (350,130): 128, 35, 117, 117, 11, 245, 221, 116, 195, 72, 72, 72, (350,142): 72, 46, 79, 79, 79, 116, 79, 79, 33, 35, 245, 117, 245, (350,155): 117, 117, 139, 35, 35, 35, 35, 35, 245, 11, 35, 11, 117, (350,168): 128, 117, 11, 33, 33, 221, 33, 128, 119, 35, 117, 35, (350,180): 232, 35, 33, 221, 116, 146, 138, 105, 105, 182, 3, 116, (350,192): 72, 195, 195, 186, 33, 128, 128, 128, 33, 35, 128, 79, (350,204): 204, 204, 72, 18, 79, 128, 35, 11, 245, 33, 146, 14, 195, (350,217): 146, 146, 146, 156, 80, 156, 80, 105, 183, 183, 105, 72, (350,229): 146, 72, 116, 49, 146, 49, 234, 234, 11, 11, 116, 63, 72, (350,242): 79, 49, 195, 221, 33, 49, 220, 220, 49, 195, 72, 116, 72, (350,255): 220, 14, 234, 72, 195, 221, 66, 72, 72, 253, 63, 108, (350,267): 222, 78, 34, 34, 124, 78, 253, 78, 50, 72, 182, 234, 50, (350,280): 176, 91, 181, 182, 222, 50, 124, 176, 91, 176, 176, 253, (350,292): 138, 234, 49, 66, 14, 14, 100, 100, 14, 100, 100, 28, 63, (350,305): 100, 234, 14, 14, 66, 66, 234, 234, 14, 100, 180, 180, (350,317): 180, 63, 63, 63, 231, 100, 100, 100, 100, 100, 28, 231, (350,329): 28, 63, 231, 63, 24, 180, 180, 28, 28, 100, 100, 100, 28, (350,342): 63, 180, 24, 180, 180, 14, 241, 14, 100, 28, 100, 100, (350,354): 14, 62, 28, 100, 100, 231, 180, 231, 180, 28, 194, 207, (350,366): 252, 58, 24, 231, 231, 231, 74, 28, 60, (351,0): 117, 117, 245, 245, 245, 245, 11, 117, 88, 117, 35, 117, (351,12): 117, 128, 33, 33, 33, 33, 79, 221, 72, 146, 146, 186, 186, (351,25): 116, 46, 186, 66, 49, 186, 33, 116, 66, 195, 116, 33, 221, (351,38): 221, 117, 79, 18, 116, 33, 79, 186, 79, 128, 221, 128, (351,50): 245, 245, 88, 128, 116, 72, 180, 195, 2, 104, 253, 105, (351,62): 252, 186, 2, 187, 252, 187, 195, 187, 99, 178, 123, 14, (351,74): 93, 180, 63, 192, 121, 246, 25, 214, 16, 53, 53, 15, 237, (351,87): 207, 237, 242, 8, 216, 187, 33, 46, 79, 128, 128, 117, 88, (351,100): 117, 128, 128, 79, 195, 186, 46, 116, 146, 49, 3, 116, (351,112): 221, 35, 44, 186, 210, 128, 176, 216, 138, 216, 175, 46, (351,124): 128, 221, 117, 128, 117, 35, 33, 33, 128, 117, 35, 128, (351,136): 33, 18, 72, 116, 221, 221, 46, 221, 221, 79, 72, 18, 79, (351,149): 128, 117, 128, 117, 117, 117, 117, 117, 117, 35, 117, (351,160): 232, 128, 35, 35, 117, 245, 117, 11, 128, 128, 128, 33, (351,172): 186, 186, 221, 33, 117, 140, 245, 35, 128, 33, 46, 186, (351,184): 50, 138, 78, 78, 50, 80, 222, 138, 108, 195, 46, 79, 46, (351,197): 128, 117, 128, 88, 128, 221, 18, 72, 72, 18, 72, 221, 33, (351,210): 128, 116, 146, 105, 63, 3, 49, 50, 156, 46, 11, 46, 3, (351,223): 49, 3, 72, 234, 78, 72, 50, 182, 3, 50, 116, 146, 116, (351,236): 78, 116, 146, 234, 195, 72, 116, 128, 128, 33, 72, 195, (351,248): 46, 72, 234, 182, 63, 234, 116, 146, 72, 234, 108, 180, (351,260): 72, 234, 234, 72, 3, 49, 181, 137, 91, 12, 137, 176, 222, (351,273): 146, 182, 137, 183, 137, 176, 78, 234, 138, 138, 78, 124, (351,285): 181, 78, 176, 176, 124, 181, 78, 108, 234, 234, 14, 100, (351,297): 28, 63, 28, 14, 241, 14, 100, 63, 14, 14, 241, 234, 18, (351,310): 72, 241, 100, 108, 180, 181, 180, 180, 180, 63, 24, 180, (351,322): 63, 100, 100, 100, 28, 180, 63, 63, 28, 63, 180, 24, 180, (351,335): 180, 28, 100, 100, 100, 100, 100, 231, 231, 63, 180, 28, (351,347): 241, 66, 241, 14, 14, 241, 100, 14, 62, 28, 100, 28, 24, (351,360): 231, 231, 28, 241, 62, 24, 192, 207, 58, 74, 24, 58, 207, (351,373): 231, 100, (352,0): 117, 245, 139, 245, 117, 245, 140, 117, 35, 35, 128, 35, (352,12): 35, 35, 128, 33, 128, 79, 79, 33, 79, 72, 195, 3, 116, (352,25): 146, 186, 49, 156, 116, 72, 3, 72, 3, 186, 49, 11, 186, (352,38): 116, 46, 128, 186, 11, 33, 11, 33, 221, 128, 232, 128, 35, (352,51): 88, 245, 35, 128, 33, 234, 49, 14, 33, 253, 187, 2, 187, (352,64): 66, 204, 51, 8, 242, 241, 28, 226, 231, 24, 51, 241, 38, (352,77): 204, 231, 62, 233, 15, 229, 15, 84, 231, 28, 207, 51, 51, (352,90): 28, 27, 104, 221, 221, 128, 35, 232, 35, 245, 245, 35, 33, (352,103): 128, 186, 221, 186, 3, 46, 111, 111, 186, 46, 128, 186, (352,115): 72, 146, 186, 186, 253, 186, 46, 186, 33, 128, 128, 221, (352,127): 186, 33, 128, 35, 35, 128, 128, 33, 116, 116, 234, 108, (352,139): 220, 66, 46, 33, 128, 116, 116, 79, 33, 128, 11, 35, 128, (352,152): 88, 117, 128, 128, 128, 232, 128, 117, 33, 232, 232, 11, (352,164): 245, 245, 128, 33, 186, 186, 49, 195, 186, 33, 33, 221, (352,176): 140, 33, 232, 210, 128, 49, 234, 234, 50, 138, 224, 146, (352,188): 224, 46, 182, 27, 80, 128, 46, 116, 224, 46, 46, 49, 234, (352,201): 181, 78, 234, 80, 234, 49, 46, 116, 46, 234, 146, 234, (352,213): 234, 78, 181, 3, 80, 80, 3, 80, 3, 80, 146, 108, 176, 49, (352,227): 116, 80, 72, 72, 72, 50, 91, 50, 49, 116, 46, 182, 116, (352,240): 116, 221, 72, 128, 221, 11, 116, 49, 63, 253, 234, 3, (352,252): 108, 80, 50, 116, 72, 49, 234, 195, 116, 72, 234, 49, (352,264): 220, 253, 137, 91, 78, 138, 138, 138, 78, 138, 91, 222, (352,276): 222, 222, 222, 78, 141, 183, 138, 50, 78, 181, 138, 138, (352,288): 181, 180, 108, 156, 156, 14, 14, 220, 220, 100, 63, 28, (352,300): 100, 220, 100, 28, 100, 100, 14, 241, 72, 66, 14, 108, (352,312): 180, 180, 180, 180, 2, 2, 180, 63, 100, 100, 28, 100, 28, (352,325): 63, 231, 63, 28, 28, 28, 180, 24, 180, 231, 63, 100, 14, (352,338): 100, 100, 100, 63, 28, 100, 63, 28, 100, 14, 66, 66, 241, (352,351): 14, 62, 14, 62, 100, 28, 24, 28, 100, 231, 100, 62, 62, (352,364): 62, 24, 51, 207, 231, 93, 15, 51, 241, 231, 231, (353,0): 245, 117, 88, 117, 140, 117, 117, 117, 117, 35, 35, 35, (353,12): 117, 117, 119, 232, 55, 79, 79, 33, 33, 72, 195, 186, 128, (353,25): 50, 156, 80, 50, 50, 182, 46, 49, 49, 72, 49, 116, 146, (353,38): 116, 116, 116, 116, 33, 116, 116, 128, 221, 128, 33, 116, (353,50): 33, 128, 128, 245, 232, 116, 33, 195, 156, 186, 49, 195, (353,62): 186, 180, 93, 66, 55, 28, 192, 231, 153, 226, 51, 100, (353,74): 187, 207, 62, 185, 66, 139, 204, 233, 233, 71, 62, 233, (353,86): 62, 24, 2, 24, 156, 180, 14, 11, 33, 128, 140, 245, 245, (353,99): 245, 35, 33, 79, 221, 195, 221, 224, 46, 11, 11, 111, 3, (353,112): 50, 49, 195, 186, 186, 128, 210, 125, 33, 128, 221, 128, (353,124): 128, 116, 88, 44, 33, 128, 128, 128, 33, 33, 221, 116, (353,136): 220, 66, 116, 33, 221, 116, 116, 116, 79, 33, 128, 11, (353,148): 88, 88, 11, 245, 11, 117, 128, 35, 128, 128, 117, 35, 35, (353,161): 35, 35, 35, 128, 128, 33, 224, 186, 186, 195, 3, 186, 33, (353,174): 11, 210, 117, 245, 128, 79, 72, 221, 3, 138, 146, 181, (353,186): 176, 37, 137, 50, 146, 253, 46, 116, 146, 50, 50, 183, (353,198): 223, 80, 222, 138, 181, 222, 234, 182, 80, 111, 234, 50, (353,210): 80, 234, 49, 72, 222, 116, 3, 49, 50, 146, 222, 50, 138, (353,223): 78, 182, 182, 72, 182, 181, 49, 80, 78, 234, 138, 49, (353,235): 182, 182, 72, 182, 146, 116, 46, 128, 245, 46, 195, 234, (353,247): 72, 221, 224, 116, 210, 146, 50, 234, 63, 234, 79, 221, (353,259): 18, 234, 2, 2, 234, 50, 50, 108, 181, 78, 50, 108, 105, (353,272): 182, 50, 34, 78, 176, 34, 34, 105, 50, 181, 176, 91, 183, (353,285): 176, 105, 105, 180, 108, 220, 220, 14, 14, 220, 220, 24, (353,297): 2, 24, 63, 100, 14, 241, 14, 14, 100, 100, 220, 14, 100, (353,310): 180, 2, 180, 180, 180, 180, 2, 180, 180, 63, 100, 28, (353,322): 100, 28, 28, 100, 28, 28, 24, 180, 180, 180, 231, 63, (353,334): 100, 100, 100, 100, 14, 100, 28, 28, 108, 100, 63, 28, (353,346): 100, 14, 66, 66, 241, 14, 14, 14, 100, 28, 231, 180, 231, (353,359): 100, 231, 28, 28, 62, 100, 24, 58, 24, 231, 252, 51, 207, (353,372): 62, 24, 24, (354,0): 117, 140, 117, 117, 117, 117, 140, 117, 117, 117, 117, 117, (354,12): 117, 117, 117, 117, 232, 33, 33, 35, 128, 18, 18, 116, (354,24): 116, 156, 220, 63, 105, 138, 156, 146, 138, 63, 182, 156, (354,36): 156, 50, 49, 49, 116, 224, 128, 33, 49, 33, 234, 234, 18, (354,49): 195, 18, 33, 128, 128, 128, 79, 195, 156, 18, 156, 18, (354,61): 156, 221, 108, 187, 153, 119, 185, 100, 192, 100, 28, 207, (354,73): 79, 62, 207, 14, 241, 24, 38, 140, 55, 55, 55, 100, 62, (354,86): 62, 100, 14, 28, 156, 100, 66, 88, 11, 88, 245, 245, 139, (354,99): 117, 33, 33, 221, 128, 117, 11, 46, 156, 182, 50, 222, (354,111): 222, 91, 105, 49, 49, 66, 33, 117, 210, 117, 63, 123, (354,123): 253, 186, 46, 3, 220, 128, 128, 128, 79, 116, 221, 79, (354,135): 79, 72, 49, 195, 72, 221, 128, 221, 116, 221, 128, 11, (354,147): 245, 117, 128, 35, 117, 128, 128, 35, 128, 35, 117, 128, (354,159): 117, 35, 117, 35, 33, 185, 186, 186, 46, 46, 46, 46, 186, (354,172): 221, 128, 117, 11, 128, 33, 221, 195, 50, 50, 49, 80, (354,184): 116, 141, 141, 137, 50, 181, 220, 46, 108, 253, 116, 146, (354,196): 50, 72, 182, 234, 141, 137, 183, 124, 50, 34, 137, 183, (354,208): 183, 50, 72, 78, 138, 146, 222, 176, 78, 138, 91, 124, (354,220): 34, 203, 182, 138, 46, 108, 182, 234, 182, 234, 234, 50, (354,232): 222, 50, 80, 181, 181, 49, 182, 49, 116, 72, 116, 72, (354,244): 116, 49, 49, 234, 116, 234, 111, 234, 91, 234, 78, 111, (354,256): 156, 14, 50, 108, 220, 108, 108, 49, 91, 2, 78, 253, 176, (354,269): 105, 181, 105, 78, 124, 34, 105, 12, 63, 138, 80, 222, (354,281): 176, 183, 91, 105, 108, 234, 108, 220, 14, 156, 14, 234, (354,293): 14, 14, 220, 180, 63, 63, 100, 100, 234, 14, 14, 100, (354,305): 220, 100, 63, 63, 24, 2, 187, 180, 180, 180, 2, 180, 180, (354,318): 63, 28, 100, 63, 28, 108, 28, 63, 28, 100, 63, 231, 180, (354,331): 231, 63, 231, 28, 100, 100, 14, 100, 100, 100, 108, 28, (354,343): 100, 28, 100, 100, 14, 66, 241, 14, 14, 100, 100, 231, (354,355): 28, 180, 24, 28, 194, 231, 28, 28, 194, 62, 231, 207, (354,367): 231, 231, 51, 207, 207, 28, 58, 58, (355,0): 117, 117, 117, 117, 140, 117, 117, 117, 117, 117, 117, 117, (355,12): 140, 117, 117, 117, 35, 33, 232, 245, 245, 79, 116, 79, (355,24): 195, 49, 49, 108, 105, 108, 80, 156, 108, 181, 50, 50, 78, (355,37): 105, 63, 181, 49, 234, 220, 138, 180, 195, 234, 18, 234, (355,49): 234, 66, 116, 116, 33, 128, 116, 180, 220, 186, 66, 66, 2, (355,62): 195, 28, 66, 51, 100, 204, 28, 187, 66, 204, 24, 185, 185, (355,75): 185, 35, 125, 28, 204, 236, 236, 71, 55, 62, 241, 28, 51, (355,88): 241, 100, 66, 66, 116, 88, 117, 147, 117, 35, 35, 35, 33, (355,101): 33, 33, 128, 224, 88, 11, 46, 46, 3, 49, 146, 220, 183, (355,114): 91, 253, 156, 117, 33, 33, 128, 79, 195, 33, 221, 186, (355,126): 128, 11, 72, 195, 49, 234, 234, 195, 195, 195, 181, 49, (355,138): 128, 11, 116, 72, 116, 33, 117, 11, 117, 128, 33, 33, (355,150): 221, 221, 128, 35, 128, 117, 11, 35, 11, 35, 35, 128, 33, (355,163): 79, 186, 186, 186, 186, 46, 46, 221, 224, 210, 210, 128, (355,175): 186, 195, 72, 116, 116, 234, 78, 176, 64, 80, 50, 49, (355,187): 105, 63, 108, 72, 72, 224, 27, 78, 50, 91, 91, 64, 105, (355,200): 181, 105, 105, 78, 182, 146, 146, 80, 50, 50, 176, 181, (355,212): 50, 90, 181, 181, 124, 22, 137, 176, 137, 137, 34, 90, (355,224): 177, 91, 138, 91, 90, 105, 50, 138, 78, 78, 50, 105, 105, (355,237): 182, 50, 234, 146, 72, 18, 50, 49, 72, 46, 50, 234, 49, (355,250): 50, 49, 80, 116, 3, 234, 79, 234, 253, 104, 63, 63, 108, (355,263): 220, 253, 91, 91, 91, 176, 91, 105, 222, 50, 138, 50, 50, (355,276): 181, 222, 105, 50, 63, 181, 138, 50, 108, 108, 234, 220, (355,288): 234, 234, 14, 14, 220, 14, 220, 100, 100, 100, 100, 100, (355,300): 100, 100, 100, 28, 231, 63, 2, 24, 24, 2, 24, 24, 180, (355,313): 24, 180, 24, 180, 24, 63, 231, 63, 28, 100, 28, 100, 100, (355,326): 28, 63, 28, 231, 63, 231, 63, 100, 28, 63, 14, 14, 14, (355,339): 100, 14, 100, 14, 14, 14, 14, 14, 14, 241, 234, 62, 14, (355,352): 100, 28, 231, 180, 231, 24, 28, 14, 231, 28, 28, 194, (355,364): 100, 153, 24, 28, 231, 207, 24, 24, 24, 51, 192, (356,0): 245, 117, 140, 117, 117, 117, 140, 117, 117, 117, 140, 117, (356,12): 117, 117, 117, 35, 117, 232, 232, 245, 128, 79, 116, 18, (356,24): 72, 220, 50, 234, 108, 180, 234, 3, 3, 234, 156, 220, 105, (356,37): 105, 63, 63, 253, 64, 27, 27, 2, 2, 187, 2, 50, 220, 146, (356,51): 72, 72, 116, 33, 33, 72, 66, 14, 72, 125, 100, 14, 63, (356,64): 100, 24, 63, 14, 192, 100, 241, 180, 180, 100, 219, 185, (356,76): 185, 125, 185, 185, 79, 55, 204, 204, 62, 66, 62, 28, 100, (356,89): 156, 79, 117, 140, 88, 117, 245, 140, 88, 117, 35, 33, 79, (356,102): 33, 128, 221, 128, 221, 146, 220, 182, 80, 186, 224, 221, (356,114): 117, 186, 66, 66, 66, 140, 88, 117, 185, 79, 117, 11, 35, (356,127): 146, 195, 234, 14, 220, 49, 72, 72, 146, 33, 116, 49, (356,139): 220, 49, 111, 117, 210, 11, 117, 232, 128, 33, 33, 33, (356,151): 33, 35, 35, 117, 117, 117, 117, 35, 128, 33, 33, 221, (356,163): 116, 46, 46, 186, 186, 186, 46, 224, 11, 11, 11, 46, 72, (356,176): 72, 195, 108, 253, 181, 146, 220, 90, 177, 108, 116, 105, (356,188): 253, 195, 11, 14, 128, 11, 224, 49, 220, 64, 177, 116, (356,200): 234, 181, 138, 220, 78, 78, 105, 141, 137, 34, 137, 137, (356,212): 222, 181, 80, 12, 181, 138, 90, 12, 90, 34, 133, 222, 50, (356,225): 137, 141, 138, 72, 80, 138, 63, 181, 181, 138, 138, 108, (356,237): 50, 108, 138, 234, 79, 11, 234, 234, 234, 116, 146, 181, (356,249): 220, 138, 63, 176, 108, 182, 72, 146, 234, 2, 105, 105, (356,261): 105, 180, 234, 49, 108, 78, 63, 108, 108, 50, 234, 3, (356,273): 234, 146, 146, 50, 234, 176, 181, 108, 108, 234, 234, 63, (356,285): 63, 234, 49, 234, 14, 108, 108, 100, 108, 100, 108, 2, (356,297): 180, 180, 63, 100, 63, 28, 63, 2, 187, 51, 187, 253, 2, (356,310): 180, 180, 180, 63, 180, 180, 180, 24, 180, 180, 28, 63, (356,322): 100, 100, 100, 100, 63, 231, 180, 180, 24, 63, 28, 100, (356,334): 100, 14, 100, 100, 100, 14, 14, 14, 62, 14, 241, 14, 62, (356,347): 14, 14, 62, 14, 100, 28, 231, 24, 24, 24, 24, 28, 62, (356,360): 231, 28, 28, 28, 194, 24, 24, 60, 28, 24, 142, 74, 24, (356,373): 142, 58, (357,0): 117, 117, 117, 117, 117, 88, 117, 117, 35, 117, 117, 117, (357,12): 35, 35, 35, 35, 232, 128, 128, 128, 33, 72, 195, 195, 49, (357,25): 220, 63, 63, 181, 181, 234, 49, 116, 146, 234, 220, 253, (357,37): 63, 220, 72, 234, 180, 220, 100, 72, 220, 108, 108, 220, (357,49): 220, 72, 116, 72, 116, 33, 128, 117, 116, 100, 18, 66, (357,61): 156, 100, 14, 180, 180, 100, 219, 187, 63, 100, 100, 241, (357,73): 241, 66, 100, 28, 66, 245, 119, 79, 119, 219, 14, 24, 100, (357,86): 241, 185, 241, 219, 119, 245, 88, 117, 35, 245, 245, 35, (357,98): 232, 35, 35, 128, 33, 128, 128, 221, 50, 91, 223, 123, 12, (357,111): 63, 11, 185, 72, 186, 117, 88, 79, 185, 119, 147, 117, (357,123): 128, 33, 221, 128, 186, 72, 146, 234, 234, 72, 46, 221, (357,135): 116, 156, 46, 88, 11, 46, 116, 224, 128, 128, 33, 185, (357,147): 79, 33, 35, 232, 128, 117, 128, 117, 117, 117, 128, 232, (357,159): 128, 33, 79, 221, 221, 33, 111, 46, 3, 3, 111, 11, 46, (357,172): 146, 156, 49, 72, 224, 46, 72, 3, 72, 3, 105, 178, 177, (357,185): 91, 49, 128, 11, 33, 11, 33, 220, 156, 63, 63, 11, 128, (357,198): 253, 183, 181, 121, 97, 36, 97, 183, 108, 181, 34, 97, (357,210): 183, 181, 133, 182, 137, 222, 78, 222, 124, 182, 203, (357,221): 138, 138, 176, 34, 50, 234, 49, 50, 78, 181, 91, 34, 253, (357,234): 181, 108, 182, 182, 108, 50, 234, 234, 72, 72, 116, 195, (357,246): 72, 72, 234, 72, 44, 46, 108, 220, 141, 176, 105, 2, 2, (357,259): 63, 63, 63, 50, 72, 146, 146, 234, 50, 234, 3, 146, 50, (357,272): 234, 50, 50, 80, 50, 49, 63, 108, 108, 108, 220, 234, 50, (357,285): 234, 72, 72, 234, 220, 100, 100, 108, 100, 100, 108, 24, (357,297): 180, 180, 180, 63, 231, 63, 24, 2, 187, 187, 51, 187, (357,309): 180, 180, 63, 231, 63, 28, 180, 180, 2, 180, 24, 63, 28, (357,322): 100, 100, 100, 28, 180, 180, 24, 63, 28, 28, 28, 28, 100, (357,335): 100, 100, 100, 100, 100, 14, 241, 234, 241, 66, 66, 241, (357,347): 14, 14, 100, 100, 100, 28, 24, 24, 24, 231, 24, 231, 100, (357,360): 231, 153, 153, 231, 153, 24, 24, 28, 194, 153, 58, 24, (357,372): 196, 153, 153, (358,0): 245, 245, 88, 117, 245, 117, 117, 88, 117, 117, 117, 117, (358,12): 35, 33, 232, 128, 117, 128, 33, 33, 79, 72, 234, 234, 108, (358,25): 234, 63, 63, 181, 63, 146, 108, 220, 195, 234, 50, 253, (358,37): 253, 105, 234, 234, 180, 2, 183, 187, 63, 14, 72, 220, (358,49): 234, 3, 116, 72, 186, 33, 33, 128, 128, 66, 18, 66, 14, (358,62): 14, 241, 241, 100, 156, 125, 156, 28, 100, 195, 104, 104, (358,74): 187, 175, 252, 187, 66, 185, 241, 185, 79, 185, 14, 241, (358,86): 14, 66, 79, 232, 232, 35, 232, 232, 245, 245, 33, 79, 33, (358,99): 33, 117, 35, 128, 128, 186, 116, 195, 156, 182, 50, 108, (358,111): 50, 104, 63, 63, 156, 128, 119, 35, 117, 35, 147, 117, (358,123): 117, 33, 72, 221, 186, 146, 49, 220, 108, 50, 234, 72, (358,135): 72, 46, 46, 186, 186, 221, 11, 117, 221, 185, 18, 185, (358,147): 79, 33, 128, 35, 35, 117, 117, 117, 128, 35, 128, 33, 33, (358,160): 116, 221, 221, 224, 46, 46, 3, 3, 46, 46, 46, 146, 50, (358,173): 50, 146, 186, 234, 63, 78, 50, 234, 49, 116, 116, 146, (358,185): 221, 128, 88, 221, 195, 33, 33, 49, 104, 50, 108, 183, (358,197): 64, 177, 183, 49, 234, 50, 50, 182, 50, 182, 49, 133, 78, (358,210): 133, 91, 176, 133, 91, 182, 124, 176, 90, 12, 90, 34, (358,222): 138, 182, 138, 50, 222, 72, 3, 105, 253, 78, 176, 105, (358,234): 181, 222, 50, 108, 182, 234, 49, 220, 108, 72, 116, 116, (358,246): 49, 49, 108, 182, 64, 181, 234, 146, 50, 105, 181, 63, (358,258): 78, 138, 220, 50, 138, 50, 138, 50, 50, 108, 182, 49, (358,270): 234, 222, 234, 49, 108, 234, 220, 50, 108, 108, 234, 14, (358,282): 66, 72, 66, 66, 234, 14, 66, 234, 220, 108, 100, 220, (358,294): 108, 28, 63, 63, 180, 231, 180, 180, 180, 180, 24, 2, 51, (358,307): 2, 24, 28, 28, 63, 28, 63, 28, 63, 24, 180, 24, 180, 100, (358,321): 100, 100, 100, 100, 28, 63, 231, 28, 100, 100, 100, 63, (358,333): 180, 231, 100, 100, 28, 100, 14, 62, 66, 38, 66, 66, 241, (358,346): 14, 14, 100, 28, 28, 28, 180, 24, 207, 24, 24, 24, 231, (358,359): 28, 231, 231, 153, 153, 153, 74, 24, 102, 62, 153, 188, (358,371): 58, 58, 60, 28, (359,0): 245, 117, 117, 88, 117, 245, 245, 117, 117, 117, 88, 117, (359,12): 232, 128, 232, 128, 245, 245, 35, 33, 18, 195, 66, 234, (359,24): 234, 156, 108, 72, 146, 108, 49, 220, 2, 146, 49, 14, 183, (359,37): 121, 37, 175, 187, 180, 63, 180, 51, 63, 187, 187, 108, (359,49): 138, 182, 234, 234, 49, 186, 186, 33, 232, 186, 185, 185, (359,61): 219, 38, 241, 33, 195, 125, 66, 79, 66, 156, 187, 28, 100, (359,74): 156, 100, 195, 2, 28, 79, 186, 117, 79, 185, 219, 79, 185, (359,87): 33, 35, 140, 245, 87, 147, 140, 140, 119, 232, 79, 79, (359,99): 128, 117, 128, 33, 221, 46, 79, 3, 3, 221, 46, 186, 46, (359,112): 186, 11, 33, 35, 117, 79, 33, 33, 117, 35, 221, 35, 35, (359,125): 79, 186, 72, 116, 116, 146, 50, 222, 234, 3, 116, 156, (359,137): 72, 116, 46, 221, 128, 224, 116, 18, 185, 33, 232, 35, (359,149): 35, 117, 88, 117, 117, 117, 128, 33, 33, 79, 33, 116, 46, (359,162): 221, 46, 186, 146, 146, 133, 46, 3, 146, 80, 3, 46, 33, (359,175): 224, 49, 138, 183, 223, 27, 80, 128, 224, 116, 221, 116, (359,187): 79, 108, 252, 14, 195, 220, 181, 195, 8, 37, 175, 216, (359,199): 253, 49, 46, 49, 50, 234, 105, 137, 63, 34, 78, 182, 80, (359,212): 124, 138, 36, 12, 34, 176, 22, 3, 182, 22, 90, 36, 223, (359,225): 138, 108, 182, 182, 222, 234, 50, 138, 50, 108, 50, 138, (359,237): 222, 234, 146, 146, 116, 49, 195, 50, 72, 234, 146, 116, (359,249): 72, 234, 138, 181, 50, 183, 63, 181, 63, 108, 50, 50, 63, (359,262): 78, 220, 50, 108, 108, 234, 220, 138, 138, 234, 108, 234, (359,274): 180, 49, 220, 14, 234, 14, 234, 14, 234, 66, 234, 66, (359,286): 195, 66, 234, 156, 100, 63, 108, 63, 63, 2, 2, 24, 24, (359,299): 180, 180, 180, 180, 231, 2, 51, 104, 187, 24, 108, 28, (359,311): 63, 28, 63, 231, 63, 180, 24, 180, 180, 100, 100, 100, (359,323): 28, 180, 63, 231, 63, 180, 28, 14, 100, 231, 180, 100, (359,335): 100, 100, 14, 100, 241, 66, 204, 204, 18, 66, 66, 241, (359,347): 100, 28, 28, 180, 28, 180, 24, 207, 207, 24, 24, 231, 28, (359,360): 231, 231, 153, 231, 28, 231, 60, 233, 102, 74, 84, 15, (359,372): 15, 60, 60, (360,0): 245, 117, 35, 117, 117, 35, 35, 117, 245, 245, 245, 117, (360,12): 117, 35, 33, 33, 35, 128, 128, 33, 116, 66, 234, 234, 66, (360,25): 156, 220, 49, 72, 234, 220, 50, 183, 180, 63, 2, 234, 66, (360,38): 180, 183, 27, 175, 249, 8, 175, 180, 175, 99, 2, 91, 253, (360,51): 234, 156, 156, 116, 156, 195, 33, 117, 119, 33, 232, 33, (360,63): 55, 186, 156, 156, 125, 221, 195, 63, 2, 156, 100, 63, (360,75): 156, 156, 104, 27, 14, 35, 117, 117, 117, 88, 88, 88, 140, (360,88): 140, 88, 245, 245, 139, 245, 245, 139, 35, 117, 117, 35, (360,100): 128, 33, 128, 33, 66, 105, 253, 50, 49, 46, 11, 224, 46, (360,113): 35, 186, 128, 221, 14, 232, 245, 79, 79, 33, 232, 221, (360,125): 49, 14, 156, 146, 49, 50, 234, 3, 46, 116, 49, 46, 128, (360,138): 128, 128, 221, 186, 186, 185, 33, 33, 35, 35, 117, 232, (360,150): 117, 245, 35, 128, 35, 128, 35, 128, 221, 72, 116, 146, (360,162): 116, 72, 182, 80, 46, 186, 133, 182, 78, 108, 3, 128, (360,174): 116, 49, 46, 49, 78, 46, 111, 224, 221, 11, 79, 245, 221, (360,187): 33, 180, 72, 195, 234, 117, 14, 253, 105, 146, 72, 156, (360,199): 105, 156, 2, 78, 123, 108, 104, 105, 3, 222, 133, 182, (360,211): 124, 105, 12, 137, 12, 90, 137, 137, 137, 141, 90, 176, (360,223): 22, 138, 108, 49, 72, 234, 105, 105, 222, 105, 105, 78, (360,235): 105, 108, 49, 222, 234, 220, 72, 72, 234, 234, 72, 116, (360,247): 72, 116, 116, 116, 49, 50, 138, 253, 12, 138, 181, 176, (360,259): 176, 253, 105, 138, 220, 234, 182, 50, 222, 182, 108, 50, (360,271): 234, 63, 50, 234, 234, 234, 234, 234, 66, 66, 66, 66, (360,283): 234, 66, 66, 66, 66, 14, 220, 108, 108, 28, 63, 180, 2, (360,296): 180, 180, 180, 180, 2, 187, 51, 104, 252, 51, 51, 180, (360,308): 231, 100, 63, 24, 100, 100, 100, 231, 180, 180, 180, 231, (360,320): 14, 100, 28, 28, 28, 231, 28, 100, 100, 100, 100, 100, (360,332): 100, 14, 100, 14, 14, 62, 241, 241, 66, 66, 38, 204, 185, (360,345): 241, 28, 100, 28, 180, 180, 28, 231, 24, 51, 187, 207, (360,357): 231, 231, 74, 231, 153, 231, 60, 194, 28, 100, 194, 194, (360,369): 142, 110, 110, 246, 153, 58, (361,0): 117, 117, 117, 245, 88, 117, 117, 88, 117, 117, 117, 117, (361,12): 117, 35, 33, 79, 221, 221, 79, 72, 234, 220, 14, 156, 156, (361,25): 234, 234, 72, 72, 234, 108, 63, 220, 104, 37, 123, 180, (361,37): 100, 195, 66, 187, 24, 63, 175, 27, 242, 175, 99, 223, 91, (361,50): 234, 3, 49, 146, 221, 186, 195, 79, 33, 33, 33, 119, 79, (361,63): 119, 79, 219, 49, 125, 186, 125, 195, 195, 104, 195, 79, (361,75): 156, 14, 195, 156, 180, 11, 117, 117, 88, 88, 88, 88, 245, (361,88): 245, 245, 140, 245, 245, 139, 245, 245, 117, 11, 35, 128, (361,100): 221, 185, 72, 72, 49, 50, 220, 49, 156, 146, 221, 224, (361,112): 117, 11, 128, 117, 33, 18, 185, 185, 18, 18, 186, 33, 33, (361,125): 72, 72, 116, 50, 50, 182, 49, 116, 33, 224, 46, 116, 46, (361,138): 221, 116, 186, 185, 221, 33, 117, 35, 35, 35, 232, 128, (361,150): 35, 245, 33, 128, 221, 79, 116, 116, 72, 49, 116, 234, (361,162): 182, 182, 50, 80, 3, 3, 3, 50, 222, 49, 224, 224, 72, (361,175): 220, 36, 223, 90, 49, 116, 128, 33, 221, 11, 245, 128, (361,187): 245, 66, 128, 35, 117, 72, 186, 128, 35, 11, 128, 221, 3, (361,200): 156, 146, 116, 50, 234, 234, 105, 78, 64, 137, 90, 141, (361,212): 90, 141, 177, 36, 176, 124, 222, 222, 34, 12, 91, 105, (361,224): 116, 3, 49, 133, 182, 78, 105, 105, 105, 181, 176, 181, (361,236): 50, 108, 138, 50, 234, 49, 195, 234, 220, 50, 220, 220, (361,248): 46, 3, 234, 138, 108, 108, 138, 181, 108, 138, 63, 78, (361,260): 78, 63, 108, 138, 182, 234, 50, 50, 220, 108, 63, 50, (361,272): 108, 50, 14, 234, 234, 66, 66, 66, 234, 66, 234, 234, (361,284): 241, 66, 234, 234, 14, 220, 28, 2, 187, 2, 24, 2, 180, (361,297): 180, 2, 187, 187, 187, 51, 51, 187, 187, 2, 24, 63, 100, (361,310): 14, 14, 100, 100, 28, 63, 231, 180, 100, 14, 100, 100, (361,322): 28, 63, 28, 63, 63, 28, 100, 100, 14, 100, 100, 14, 14, (361,335): 100, 100, 241, 241, 66, 66, 204, 204, 204, 185, 241, 100, (361,347): 28, 231, 24, 24, 28, 231, 24, 58, 207, 207, 231, 24, 24, (361,360): 231, 231, 24, 153, 231, 74, 153, 153, 74, 196, 142, 142, (361,372): 58, 153, 110, (362,0): 232, 128, 232, 117, 245, 117, 35, 245, 245, 245, 245, 245, (362,12): 117, 35, 33, 79, 72, 72, 195, 49, 156, 14, 220, 234, 49, (362,25): 234, 66, 66, 72, 66, 49, 234, 100, 104, 108, 2, 123, 97, (362,38): 216, 252, 79, 79, 18, 180, 231, 51, 180, 187, 64, 183, (362,50): 181, 220, 195, 221, 79, 79, 66, 72, 185, 79, 35, 33, 33, (362,63): 119, 128, 79, 79, 33, 33, 221, 79, 35, 100, 125, 35, 33, (362,76): 219, 221, 119, 79, 117, 117, 88, 210, 88, 88, 117, 117, (362,88): 139, 245, 245, 245, 140, 245, 139, 35, 128, 35, 128, 35, (362,100): 33, 116, 186, 186, 128, 221, 128, 128, 72, 156, 156, 146, (362,112): 11, 221, 128, 221, 33, 11, 116, 79, 33, 79, 33, 33, 221, (362,125): 186, 195, 186, 50, 234, 49, 72, 116, 111, 33, 221, 221, (362,137): 79, 18, 18, 186, 33, 128, 117, 35, 117, 88, 88, 245, 35, (362,150): 128, 33, 245, 128, 128, 33, 221, 79, 116, 72, 72, 182, (362,162): 234, 3, 3, 46, 46, 133, 50, 182, 3, 46, 63, 223, 64, 50, (362,176): 105, 49, 186, 11, 116, 186, 128, 11, 33, 72, 234, 234, 2, (362,189): 91, 64, 123, 220, 186, 221, 46, 116, 33, 46, 195, 49, 46, (362,202): 116, 146, 176, 78, 183, 34, 90, 12, 91, 12, 90, 177, 36, (362,215): 91, 12, 27, 91, 176, 12, 27, 34, 50, 182, 234, 133, 220, (362,228): 181, 176, 176, 181, 222, 183, 78, 105, 138, 182, 105, 49, (362,240): 72, 195, 72, 72, 234, 220, 234, 116, 195, 50, 78, 253, (362,252): 78, 108, 108, 63, 138, 50, 50, 222, 222, 50, 50, 63, 50, (362,265): 50, 222, 108, 50, 78, 181, 63, 108, 100, 220, 234, 66, (362,277): 66, 66, 195, 234, 14, 14, 14, 14, 234, 100, 100, 220, (362,289): 100, 63, 253, 104, 187, 2, 2, 180, 2, 187, 187, 51, 51, (362,302): 187, 187, 51, 207, 187, 24, 231, 100, 14, 62, 100, 28, (362,314): 180, 24, 2, 24, 100, 14, 100, 100, 63, 231, 63, 24, 180, (362,327): 28, 63, 100, 14, 14, 100, 14, 100, 100, 62, 14, 241, 38, (362,340): 204, 204, 18, 185, 204, 241, 28, 231, 180, 24, 24, 28, (362,352): 24, 207, 51, 51, 24, 24, 24, 207, 153, 74, 24, 142, 74, (362,365): 28, 194, 60, 153, 74, 74, 188, 58, 74, 142, (363,0): 35, 232, 128, 232, 35, 128, 35, 117, 88, 245, 245, 117, (363,12): 128, 33, 185, 72, 66, 195, 72, 195, 49, 234, 156, 234, 18, (363,25): 72, 234, 49, 72, 72, 72, 72, 100, 72, 234, 72, 63, 2, 66, (363,39): 180, 241, 79, 79, 232, 195, 79, 204, 195, 123, 123, 252, (363,51): 181, 220, 156, 63, 220, 195, 195, 195, 33, 232, 33, 185, (363,63): 128, 35, 35, 117, 88, 117, 35, 119, 35, 221, 195, 79, 210, (363,76): 128, 79, 88, 147, 117, 88, 117, 117, 117, 117, 117, 35, (363,88): 245, 245, 140, 245, 245, 35, 35, 35, 33, 33, 33, 33, 221, (363,101): 33, 33, 33, 221, 72, 195, 72, 72, 195, 186, 72, 128, 224, (363,114): 221, 116, 221, 128, 232, 33, 116, 18, 72, 72, 49, 50, 78, (363,127): 181, 234, 146, 116, 116, 116, 46, 221, 79, 33, 221, 79, (363,139): 79, 33, 232, 117, 245, 117, 117, 88, 117, 117, 232, 128, (363,151): 221, 128, 128, 224, 116, 72, 72, 49, 234, 138, 50, 80, 3, (363,164): 46, 116, 133, 50, 146, 146, 146, 72, 234, 63, 220, 116, (363,176): 210, 128, 146, 79, 11, 245, 210, 232, 128, 79, 79, 33, (363,188): 79, 195, 14, 108, 220, 111, 128, 128, 116, 224, 146, 50, (363,200): 181, 138, 181, 146, 91, 105, 141, 64, 90, 177, 37, 177, (363,212): 137, 12, 176, 105, 138, 222, 182, 49, 50, 176, 105, 138, (363,224): 138, 49, 72, 80, 63, 78, 63, 138, 105, 78, 183, 105, 78, (363,237): 181, 50, 234, 220, 234, 49, 49, 220, 108, 50, 234, 78, (363,249): 181, 253, 253, 105, 181, 181, 105, 124, 78, 78, 181, 181, (363,261): 222, 182, 222, 222, 108, 78, 181, 63, 63, 78, 108, 220, (363,273): 220, 220, 234, 49, 195, 72, 66, 66, 234, 14, 14, 14, 100, (363,286): 100, 180, 108, 63, 180, 187, 2, 2, 180, 180, 180, 2, 207, (363,299): 187, 187, 187, 187, 207, 252, 104, 24, 231, 100, 100, (363,310): 100, 28, 63, 180, 207, 51, 187, 24, 231, 100, 100, 231, (363,322): 180, 231, 180, 180, 24, 63, 231, 100, 14, 100, 100, 14, (363,334): 62, 100, 62, 241, 38, 204, 204, 18, 243, 18, 241, 100, (363,346): 231, 180, 24, 24, 231, 100, 207, 51, 207, 207, 207, 231, (363,358): 207, 207, 231, 231, 207, 142, 24, 28, 60, 231, 60, 74, (363,370): 153, 188, 142, 74, 60, (364,0): 11, 232, 128, 33, 128, 33, 35, 11, 245, 11, 35, 128, 79, (364,13): 18, 49, 156, 195, 195, 195, 49, 156, 156, 156, 66, 116, (364,25): 72, 18, 116, 79, 116, 234, 63, 128, 204, 245, 204, 195, (364,37): 245, 66, 2, 8, 51, 51, 2, 175, 207, 24, 14, 100, 105, 175, (364,51): 123, 253, 220, 14, 49, 66, 195, 195, 185, 128, 79, 186, (364,63): 33, 117, 117, 117, 210, 88, 117, 35, 35, 185, 125, 35, (364,75): 140, 117, 117, 88, 117, 88, 117, 117, 35, 128, 232, 35, (364,87): 35, 245, 245, 245, 245, 232, 33, 33, 33, 33, 33, 221, 221, (364,100): 221, 186, 221, 221, 88, 11, 128, 128, 128, 195, 108, 181, (364,112): 221, 210, 111, 128, 221, 72, 11, 33, 128, 221, 116, 116, (364,124): 116, 186, 3, 195, 3, 116, 116, 116, 221, 33, 33, 221, 79, (364,137): 79, 33, 232, 117, 245, 117, 117, 245, 88, 35, 33, 33, 11, (364,150): 245, 11, 221, 221, 116, 72, 146, 234, 50, 108, 50, 234, (364,162): 49, 146, 80, 80, 49, 3, 3, 116, 80, 108, 49, 210, 147, (364,175): 221, 224, 49, 63, 195, 11, 232, 128, 79, 33, 79, 18, 195, (364,188): 46, 128, 224, 46, 128, 11, 49, 63, 183, 108, 49, 116, (364,200): 181, 91, 223, 176, 12, 78, 183, 36, 177, 97, 36, 137, (364,212): 137, 12, 105, 182, 105, 105, 63, 108, 138, 105, 2, 108, (364,224): 138, 108, 50, 78, 105, 34, 183, 141, 176, 64, 34, 223, (364,236): 183, 182, 181, 49, 234, 49, 72, 14, 63, 253, 91, 183, 27, (364,249): 183, 176, 253, 91, 12, 91, 253, 176, 34, 34, 34, 105, (364,261): 222, 50, 50, 138, 50, 78, 181, 63, 222, 220, 146, 234, (364,273): 234, 234, 234, 66, 195, 49, 49, 66, 66, 66, 234, 100, 63, (364,286): 63, 63, 180, 2, 2, 105, 2, 180, 180, 253, 187, 187, 51, (364,299): 187, 104, 51, 104, 104, 252, 51, 24, 28, 100, 100, 100, (364,311): 100, 24, 24, 207, 24, 24, 24, 63, 231, 28, 63, 180, 63, (364,324): 231, 180, 24, 231, 63, 100, 14, 100, 100, 14, 14, 14, 62, (364,337): 241, 66, 204, 204, 204, 204, 38, 241, 100, 231, 207, 207, (364,349): 24, 24, 28, 207, 207, 207, 207, 207, 24, 74, 58, 28, 60, (364,362): 207, 237, 237, 142, 58, 188, 24, 74, 60, 15, 153, 60, (364,374): 100, (365,0): 117, 128, 79, 33, 79, 79, 33, 232, 88, 245, 35, 33, 221, (365,13): 185, 195, 66, 66, 49, 49, 156, 220, 14, 49, 195, 46, 79, (365,26): 72, 18, 116, 18, 66, 100, 175, 108, 14, 79, 33, 66, 204, (365,39): 180, 175, 242, 70, 249, 99, 249, 8, 8, 63, 234, 253, 123, (365,52): 8, 253, 18, 72, 195, 185, 186, 33, 128, 33, 185, 128, 35, (365,65): 117, 117, 117, 117, 88, 117, 11, 35, 35, 35, 117, 117, 88, (365,78): 140, 117, 88, 117, 35, 232, 33, 232, 128, 35, 35, 245, (365,90): 245, 35, 33, 79, 221, 79, 33, 33, 128, 79, 221, 33, 33, (365,103): 128, 46, 33, 116, 186, 186, 72, 195, 116, 146, 11, 3, (365,115): 128, 46, 234, 33, 72, 79, 72, 49, 49, 146, 116, 46, 46, (365,128): 224, 128, 221, 46, 79, 221, 221, 79, 18, 79, 232, 35, (365,140): 140, 245, 139, 35, 33, 35, 35, 128, 117, 88, 11, 128, (365,152): 221, 221, 46, 72, 80, 182, 182, 50, 49, 116, 116, 146, (365,164): 146, 49, 146, 46, 156, 3, 72, 195, 234, 234, 72, 33, 33, (365,177): 221, 116, 33, 33, 234, 18, 79, 79, 79, 195, 195, 3, 221, (365,190): 3, 49, 49, 146, 156, 3, 108, 182, 78, 78, 105, 138, 137, (365,203): 36, 97, 137, 91, 137, 78, 137, 137, 34, 222, 220, 138, (365,215): 105, 146, 234, 234, 138, 187, 91, 253, 2, 234, 182, 50, (365,227): 181, 253, 176, 137, 64, 64, 105, 137, 137, 176, 78, 234, (365,239): 234, 49, 18, 72, 234, 181, 253, 175, 223, 64, 27, 91, 91, (365,252): 137, 64, 183, 124, 34, 105, 124, 138, 138, 50, 182, 80, (365,264): 63, 222, 180, 124, 63, 50, 234, 72, 49, 49, 234, 66, 49, (365,277): 234, 234, 234, 156, 234, 234, 100, 180, 2, 2, 180, 104, (365,289): 253, 2, 2, 180, 2, 253, 93, 104, 104, 104, 252, 252, 27, (365,302): 93, 175, 51, 51, 51, 2, 24, 231, 231, 231, 231, 180, 24, (365,315): 63, 231, 100, 231, 63, 231, 180, 24, 231, 180, 180, 180, (365,327): 28, 28, 100, 100, 100, 100, 100, 14, 14, 241, 241, 233, (365,339): 38, 38, 204, 233, 241, 62, 100, 231, 180, 51, 187, 207, (365,351): 24, 207, 51, 58, 207, 207, 207, 207, 207, 74, 231, 142, (365,363): 15, 246, 237, 15, 84, 207, 58, 231, 15, 84, 207, 153, (366,0): 232, 33, 33, 33, 221, 79, 33, 33, 11, 35, 128, 128, 33, 79, (366,14): 116, 18, 146, 195, 146, 49, 156, 49, 72, 72, 79, 221, 18, (366,27): 49, 66, 195, 72, 195, 100, 100, 156, 66, 79, 35, 18, 18, (366,40): 14, 28, 14, 28, 66, 28, 51, 226, 178, 2, 66, 66, 27, 97, (366,54): 100, 220, 156, 79, 33, 221, 128, 128, 128, 128, 119, 35, (366,66): 35, 35, 117, 117, 140, 88, 147, 88, 119, 35, 117, 35, 117, (366,79): 147, 117, 117, 35, 35, 232, 232, 232, 35, 128, 35, 128, (366,91): 79, 79, 18, 18, 116, 186, 116, 221, 128, 128, 128, 11, 88, (366,104): 210, 117, 156, 105, 253, 63, 156, 224, 50, 80, 50, 72, (366,116): 72, 234, 146, 195, 128, 46, 72, 195, 116, 111, 111, 224, (366,128): 33, 128, 221, 79, 72, 79, 18, 18, 18, 33, 232, 245, 139, (366,141): 232, 232, 119, 18, 33, 128, 128, 128, 11, 33, 72, 72, 72, (366,154): 146, 182, 50, 50, 222, 50, 182, 3, 146, 3, 116, 3, 182, (366,167): 80, 46, 146, 72, 128, 117, 116, 79, 245, 128, 33, 186, (366,179): 185, 117, 79, 232, 79, 63, 14, 220, 116, 128, 11, 80, (366,191): 146, 138, 63, 91, 50, 34, 253, 223, 137, 183, 80, 105, (366,203): 137, 141, 12, 12, 137, 12, 183, 34, 78, 105, 78, 50, 108, (366,216): 91, 63, 220, 14, 108, 2, 253, 183, 91, 176, 91, 12, 137, (366,229): 137, 137, 183, 176, 91, 78, 176, 181, 146, 50, 3, 146, (366,241): 49, 146, 234, 108, 253, 27, 64, 27, 27, 183, 137, 123, (366,253): 223, 137, 253, 176, 91, 34, 138, 222, 222, 50, 234, 138, (366,265): 50, 50, 63, 50, 182, 50, 234, 234, 49, 49, 49, 49, 14, (366,278): 156, 100, 108, 108, 63, 180, 2, 253, 187, 2, 104, 2, 2, (366,291): 2, 2, 187, 187, 104, 187, 51, 104, 252, 252, 27, 246, 93, (366,304): 93, 252, 51, 51, 187, 187, 207, 24, 24, 24, 231, 231, 28, (366,317): 28, 180, 231, 180, 180, 180, 28, 28, 63, 231, 108, 28, (366,329): 100, 14, 28, 100, 62, 14, 62, 100, 62, 241, 66, 38, 241, (366,342): 241, 100, 194, 100, 231, 207, 51, 51, 187, 207, 207, 207, (366,354): 51, 51, 58, 207, 207, 207, 58, 207, 58, 246, 84, 237, 58, (366,367): 15, 231, 58, 74, 84, 89, 188, 207, (367,0): 245, 35, 128, 35, 35, 128, 128, 35, 33, 33, 79, 79, 79, 79, (367,14): 79, 79, 49, 195, 116, 221, 221, 185, 116, 116, 72, 116, (367,26): 221, 72, 234, 234, 220, 14, 63, 195, 66, 156, 186, 79, 79, (367,39): 185, 33, 33, 18, 79, 18, 33, 18, 79, 180, 180, 104, 33, (367,52): 66, 252, 49, 100, 220, 186, 221, 186, 221, 221, 221, 33, (367,64): 33, 35, 117, 88, 201, 117, 35, 201, 185, 140, 88, 35, 88, (367,77): 117, 55, 119, 35, 35, 117, 117, 11, 35, 128, 128, 33, 33, (367,90): 79, 79, 72, 72, 72, 79, 195, 186, 221, 128, 128, 117, 128, (367,103): 35, 116, 128, 221, 33, 128, 116, 220, 50, 146, 108, 222, (367,115): 50, 80, 49, 220, 49, 116, 72, 195, 3, 116, 116, 72, 49, (367,128): 146, 72, 116, 18, 72, 18, 79, 79, 232, 35, 245, 245, 232, (367,141): 33, 55, 232, 33, 128, 221, 195, 72, 79, 46, 72, 3, 3, (367,154): 234, 222, 138, 22, 182, 80, 49, 186, 195, 72, 224, 46, (367,166): 49, 49, 195, 46, 46, 186, 72, 79, 79, 195, 49, 79, 117, (367,179): 128, 245, 79, 11, 79, 79, 221, 220, 116, 49, 50, 90, 27, (367,192): 49, 80, 156, 111, 176, 137, 141, 138, 78, 234, 141, 183, (367,204): 176, 50, 78, 138, 234, 222, 50, 108, 181, 108, 234, 108, (367,216): 50, 234, 146, 234, 63, 253, 27, 223, 27, 64, 141, 175, (367,228): 176, 105, 176, 183, 181, 78, 138, 50, 49, 146, 80, 116, (367,240): 116, 195, 195, 18, 49, 63, 253, 105, 91, 183, 137, 64, (367,252): 90, 141, 223, 137, 137, 90, 64, 176, 124, 105, 78, 182, (367,264): 182, 146, 49, 234, 146, 49, 220, 50, 156, 49, 49, 195, (367,276): 234, 220, 108, 50, 100, 108, 63, 180, 2, 2, 2, 180, 104, (367,289): 2, 108, 180, 187, 2, 180, 63, 180, 24, 187, 252, 252, 93, (367,302): 252, 252, 246, 252, 207, 24, 207, 207, 187, 51, 2, 207, (367,314): 180, 24, 180, 24, 24, 51, 231, 180, 231, 63, 28, 63, 231, (367,327): 100, 100, 100, 100, 28, 100, 100, 62, 241, 100, 100, 14, (367,339): 241, 66, 241, 62, 100, 28, 28, 231, 24, 51, 207, 51, 207, (367,352): 207, 51, 237, 15, 192, 58, 207, 207, 58, 231, 58, 84, (367,364): 157, 15, 51, 15, 74, 207, 62, 207, 89, 84, 207, (368,0): 117, 117, 35, 245, 245, 245, 35, 128, 128, 221, 221, 116, (368,12): 49, 146, 72, 146, 195, 146, 156, 156, 156, 195, 3, 186, (368,24): 72, 72, 49, 234, 49, 234, 234, 234, 234, 195, 186, 185, (368,36): 72, 33, 88, 128, 88, 117, 88, 79, 245, 33, 33, 232, 66, (368,49): 18, 8, 253, 195, 91, 63, 72, 182, 108, 72, 88, 35, 221, (368,62): 33, 117, 128, 35, 117, 35, 117, 88, 88, 88, 88, 117, 140, (368,75): 140, 88, 117, 117, 117, 232, 35, 88, 88, 128, 128, 224, (368,87): 195, 116, 3, 49, 234, 49, 66, 116, 221, 128, 33, 33, 128, (368,100): 11, 128, 221, 186, 186, 108, 156, 35, 117, 128, 232, 72, (368,112): 195, 72, 3, 46, 220, 116, 63, 234, 3, 146, 234, 156, 146, (368,125): 46, 3, 146, 116, 116, 116, 79, 72, 66, 195, 18, 35, 35, (368,138): 245, 245, 232, 33, 221, 128, 232, 33, 33, 33, 116, 72, 3, (368,151): 111, 3, 133, 80, 222, 22, 22, 22, 133, 146, 116, 46, 116, (368,164): 195, 186, 46, 221, 128, 128, 79, 72, 49, 195, 195, 72, (368,176): 33, 128, 33, 116, 116, 128, 11, 224, 3, 182, 91, 78, 138, (368,189): 146, 80, 146, 105, 253, 50, 181, 46, 181, 182, 138, 138, (368,201): 12, 64, 176, 138, 108, 50, 234, 108, 234, 63, 108, 234, (368,213): 234, 234, 105, 108, 50, 108, 181, 183, 223, 223, 141, 36, (368,225): 90, 183, 137, 137, 137, 91, 176, 176, 50, 108, 181, 138, (368,237): 220, 234, 49, 116, 72, 72, 72, 72, 234, 63, 180, 105, 91, (368,250): 27, 223, 137, 223, 12, 137, 176, 12, 91, 91, 181, 108, (368,262): 156, 49, 234, 49, 146, 146, 49, 195, 49, 234, 156, 156, (368,274): 156, 14, 220, 220, 50, 63, 181, 2, 2, 181, 108, 108, 180, (368,287): 187, 108, 28, 63, 100, 100, 63, 24, 2, 51, 51, 104, 51, (368,300): 51, 51, 51, 51, 51, 51, 187, 51, 2, 207, 180, 24, 63, (368,313): 231, 63, 231, 63, 180, 63, 231, 108, 28, 63, 28, 28, 28, (368,326): 28, 100, 14, 62, 100, 100, 62, 14, 62, 14, 231, 28, 100, (368,339): 28, 100, 62, 14, 28, 100, 231, 24, 207, 93, 93, 207, 24, (368,352): 231, 207, 207, 242, 58, 58, 207, 149, 15, 15, 15, 25, (368,364): 248, 237, 15, 178, 207, 246, 25, 246, 214, 246, 93, (369,0): 245, 245, 35, 35, 35, 35, 245, 245, 128, 79, 46, 116, 49, (369,13): 72, 3, 3, 195, 195, 146, 195, 3, 116, 46, 79, 49, 195, 72, (369,27): 49, 220, 63, 108, 50, 104, 63, 186, 11, 128, 221, 128, 35, (369,40): 79, 33, 232, 195, 232, 128, 232, 33, 18, 79, 187, 180, (369,52): 234, 91, 63, 50, 220, 220, 156, 186, 128, 210, 88, 35, (369,64): 119, 35, 119, 35, 33, 119, 119, 119, 117, 35, 35, 35, 117, (369,77): 117, 117, 117, 245, 245, 88, 210, 33, 46, 72, 49, 146, 80, (369,90): 49, 49, 72, 72, 72, 79, 221, 221, 128, 221, 186, 186, 186, (369,103): 46, 128, 221, 128, 11, 79, 221, 33, 221, 186, 72, 195, (369,115): 224, 186, 88, 220, 182, 156, 49, 146, 3, 116, 221, 46, (369,127): 116, 128, 79, 72, 79, 33, 33, 33, 33, 35, 232, 33, 128, (369,140): 128, 128, 33, 221, 33, 79, 33, 33, 221, 46, 72, 3, 116, (369,153): 133, 80, 22, 124, 34, 124, 138, 108, 156, 49, 49, 146, (369,165): 186, 79, 116, 234, 49, 49, 234, 195, 221, 128, 128, 33, (369,177): 35, 128, 72, 156, 234, 49, 146, 138, 105, 12, 176, 176, (369,189): 50, 156, 108, 46, 80, 234, 176, 234, 124, 50, 182, 183, (369,201): 137, 91, 181, 108, 63, 63, 108, 63, 220, 63, 108, 220, (369,213): 234, 234, 108, 253, 105, 91, 141, 97, 36, 141, 223, 137, (369,225): 137, 90, 141, 137, 91, 176, 91, 105, 181, 181, 63, 50, (369,237): 156, 49, 3, 72, 72, 72, 195, 234, 108, 63, 180, 105, 91, (369,250): 183, 141, 90, 90, 91, 176, 176, 181, 108, 182, 156, 50, (369,262): 50, 63, 50, 234, 66, 234, 195, 195, 72, 66, 220, 14, 220, (369,275): 50, 50, 220, 63, 180, 2, 105, 2, 181, 180, 180, 2, 253, (369,288): 252, 252, 51, 51, 187, 2, 51, 51, 252, 51, 93, 93, 51, (369,301): 51, 51, 51, 253, 51, 51, 2, 180, 180, 231, 63, 231, 63, (369,314): 231, 63, 24, 24, 63, 100, 14, 100, 100, 100, 100, 100, (369,326): 100, 100, 62, 14, 194, 100, 14, 62, 62, 14, 28, 231, 180, (369,339): 28, 62, 62, 100, 231, 14, 231, 28, 231, 51, 207, 24, 231, (369,352): 207, 207, 58, 25, 15, 237, 23, 15, 237, 23, 15, 84, 25, (369,365): 192, 93, 214, 246, 246, 242, 246, 178, 70, 192, (370,0): 117, 117, 35, 232, 35, 11, 35, 128, 33, 46, 116, 116, 72, (370,13): 72, 186, 195, 72, 72, 72, 116, 221, 221, 79, 46, 66, 234, (370,26): 234, 234, 234, 220, 220, 234, 221, 195, 156, 156, 49, 49, (370,38): 72, 128, 128, 245, 245, 18, 128, 33, 33, 18, 33, 88, 79, (370,51): 72, 195, 234, 234, 234, 146, 72, 72, 46, 35, 128, 33, 35, (370,64): 128, 35, 33, 117, 33, 117, 128, 117, 117, 117, 117, 117, (370,76): 117, 140, 88, 140, 88, 117, 245, 245, 116, 146, 146, 234, (370,88): 50, 50, 156, 146, 46, 221, 33, 128, 221, 128, 33, 46, 195, (370,101): 195, 46, 128, 221, 33, 221, 186, 116, 33, 128, 33, 49, 3, (370,114): 72, 221, 146, 46, 50, 49, 108, 49, 186, 116, 46, 46, 46, (370,127): 116, 116, 72, 72, 116, 79, 33, 33, 232, 35, 33, 79, 79, (370,140): 128, 128, 128, 221, 79, 33, 221, 33, 128, 46, 3, 182, 80, (370,153): 182, 22, 203, 176, 12, 124, 138, 234, 49, 195, 72, 79, (370,165): 46, 116, 195, 195, 156, 180, 105, 180, 234, 221, 35, 11, (370,177): 128, 33, 46, 221, 224, 46, 146, 224, 46, 3, 105, 12, 222, (370,190): 46, 3, 3, 78, 176, 97, 90, 183, 91, 181, 141, 137, 181, (370,203): 108, 108, 63, 63, 63, 180, 100, 63, 108, 108, 100, 220, (370,215): 138, 64, 64, 64, 36, 177, 177, 36, 141, 183, 137, 137, (370,227): 137, 27, 176, 105, 176, 78, 105, 181, 50, 182, 220, 49, (370,239): 195, 146, 49, 156, 220, 180, 187, 91, 27, 253, 176, 253, (370,251): 64, 137, 90, 176, 124, 176, 181, 108, 220, 220, 50, 50, (370,263): 50, 49, 195, 72, 72, 72, 195, 49, 234, 220, 220, 220, (370,275): 108, 108, 63, 63, 181, 253, 253, 253, 187, 105, 105, 253, (370,287): 253, 104, 104, 51, 253, 51, 51, 51, 51, 51, 51, 51, 51, (370,300): 51, 51, 51, 51, 51, 2, 180, 180, 28, 100, 100, 14, 28, (370,313): 100, 100, 231, 180, 24, 100, 241, 100, 14, 14, 14, 14, (370,325): 14, 14, 14, 14, 100, 100, 62, 62, 14, 100, 100, 100, 24, (370,338): 24, 28, 241, 241, 100, 28, 231, 207, 24, 24, 207, 51, (370,350): 207, 207, 231, 58, 207, 242, 15, 237, 15, 237, 15, 237, (370,362): 229, 16, 53, 193, 242, 248, 226, 246, 226, 70, 249, 242, (370,374): 187, (371,0): 245, 35, 232, 33, 128, 35, 128, 35, 33, 186, 116, 221, 186, (371,13): 3, 116, 72, 72, 72, 185, 186, 79, 79, 79, 116, 79, 234, (371,26): 108, 66, 18, 116, 66, 234, 49, 195, 156, 49, 79, 18, 195, (371,39): 79, 128, 128, 221, 79, 35, 33, 79, 66, 33, 33, 232, 79, (371,52): 72, 72, 146, 234, 234, 50, 234, 221, 11, 79, 186, 88, 35, (371,65): 35, 185, 117, 33, 117, 33, 232, 14, 195, 79, 33, 128, 35, (371,78): 117, 35, 245, 128, 35, 11, 116, 195, 3, 3, 50, 182, 146, (371,91): 116, 128, 11, 128, 128, 128, 33, 186, 72, 186, 221, 221, (371,103): 221, 156, 186, 72, 195, 221, 33, 33, 116, 186, 116, 186, (371,115): 116, 220, 146, 49, 3, 156, 146, 186, 46, 116, 3, 72, 195, (371,128): 50, 49, 72, 72, 195, 66, 79, 35, 33, 35, 35, 33, 79, 116, (371,142): 116, 221, 116, 221, 33, 224, 46, 116, 49, 222, 203, 78, (371,154): 138, 138, 203, 203, 80, 3, 46, 46, 33, 128, 128, 128, (371,166): 116, 72, 128, 221, 221, 221, 221, 33, 128, 33, 116, 79, (371,178): 72, 72, 116, 111, 46, 46, 182, 203, 176, 36, 36, 176, 72, (371,191): 49, 116, 50, 63, 90, 223, 12, 36, 90, 141, 91, 138, 63, (371,204): 181, 63, 108, 156, 180, 220, 108, 108, 63, 105, 2, 253, (371,216): 121, 121, 36, 36, 36, 36, 141, 90, 183, 105, 138, 63, (371,228): 138, 181, 138, 50, 50, 181, 138, 156, 156, 156, 146, 156, (371,240): 186, 195, 49, 14, 63, 180, 104, 27, 253, 105, 63, 176, (371,252): 176, 90, 176, 124, 108, 50, 220, 182, 156, 49, 195, 186, (371,264): 195, 72, 186, 72, 72, 195, 49, 14, 220, 220, 108, 63, (371,276): 180, 180, 2, 253, 104, 252, 183, 183, 104, 253, 253, 252, (371,288): 2, 24, 2, 207, 180, 24, 180, 24, 180, 24, 24, 207, 207, (371,301): 187, 58, 51, 2, 207, 24, 28, 100, 14, 14, 14, 100, 100, (371,314): 100, 231, 63, 28, 14, 241, 14, 100, 14, 14, 100, 14, 100, (371,327): 100, 194, 100, 62, 100, 100, 194, 100, 194, 100, 187, (371,338): 187, 28, 14, 100, 28, 231, 231, 51, 207, 231, 231, 24, (371,350): 231, 207, 207, 51, 15, 25, 246, 237, 15, 58, 15, 15, 84, (371,363): 16, 53, 248, 25, 252, 25, 51, 95, 242, 70, 246, 187, (372,0): 117, 35, 232, 33, 232, 128, 232, 11, 33, 72, 79, 46, 116, (372,13): 116, 116, 186, 186, 186, 79, 116, 185, 116, 79, 79, 35, (372,25): 72, 100, 66, 79, 79, 234, 100, 63, 195, 72, 49, 66, 146, (372,38): 72, 232, 195, 18, 234, 79, 33, 195, 100, 180, 33, 204, 33, (372,51): 79, 195, 72, 234, 50, 50, 253, 183, 50, 33, 128, 221, 117, (372,64): 128, 33, 49, 18, 18, 33, 195, 14, 33, 117, 88, 79, 185, (372,77): 79, 128, 128, 35, 33, 128, 128, 79, 116, 46, 116, 3, 186, (372,90): 46, 46, 221, 221, 116, 116, 221, 72, 195, 195, 221, 33, (372,102): 221, 186, 66, 116, 128, 128, 116, 66, 195, 128, 186, 3, (372,114): 108, 50, 108, 49, 49, 49, 195, 72, 186, 3, 72, 146, 156, (372,127): 49, 156, 195, 186, 18, 72, 18, 79, 35, 79, 128, 35, 33, (372,140): 116, 116, 79, 46, 116, 221, 224, 116, 146, 80, 182, 138, (372,152): 91, 176, 124, 138, 222, 182, 3, 111, 116, 79, 33, 128, (372,164): 11, 128, 33, 46, 234, 66, 72, 221, 33, 221, 46, 116, 72, (372,177): 79, 221, 49, 63, 63, 80, 46, 46, 222, 181, 183, 124, 78, (372,190): 222, 91, 64, 223, 27, 90, 137, 78, 223, 137, 137, 181, (372,202): 50, 78, 2, 108, 156, 14, 108, 234, 14, 156, 63, 183, 91, (372,215): 183, 223, 216, 37, 36, 36, 36, 137, 181, 90, 176, 108, (372,227): 50, 108, 181, 63, 50, 220, 108, 14, 156, 156, 186, 221, (372,239): 156, 195, 146, 49, 14, 156, 50, 2, 183, 2, 63, 182, 78, (372,252): 105, 183, 34, 181, 182, 220, 156, 49, 146, 146, 49, 156, (372,264): 220, 49, 49, 234, 156, 234, 14, 50, 180, 180, 2, 253, (372,276): 253, 253, 253, 253, 104, 183, 175, 183, 187, 2, 2, 253, (372,288): 187, 187, 2, 24, 180, 180, 231, 100, 24, 231, 180, 207, (372,300): 187, 237, 51, 51, 207, 180, 63, 28, 100, 100, 100, 14, (372,312): 100, 28, 180, 63, 28, 100, 100, 100, 14, 14, 14, 14, 62, (372,325): 14, 100, 100, 14, 100, 62, 62, 62, 100, 28, 28, 231, 187, (372,338): 51, 180, 231, 207, 187, 24, 207, 93, 252, 24, 24, 24, (372,350): 207, 51, 58, 15, 70, 59, 229, 15, 84, 237, 84, 84, 207, (372,363): 25, 15, 229, 53, 51, 70, 207, 216, 53, 242, 226, 25, (373,0): 35, 232, 232, 33, 33, 128, 128, 128, 33, 18, 72, 33, 116, (373,13): 116, 116, 116, 79, 79, 79, 79, 18, 79, 79, 79, 232, 33, (373,26): 18, 72, 18, 204, 66, 234, 253, 49, 33, 128, 221, 18, 108, (373,39): 2, 123, 2, 104, 18, 245, 35, 232, 79, 79, 234, 72, 116, (373,52): 79, 79, 72, 49, 234, 108, 180, 181, 78, 195, 128, 46, 221, (373,65): 66, 108, 63, 156, 79, 72, 108, 121, 187, 186, 11, 117, 11, (373,78): 33, 195, 79, 72, 79, 116, 146, 195, 146, 156, 195, 186, (373,90): 46, 46, 116, 186, 72, 195, 156, 195, 186, 221, 46, 79, (373,102): 221, 221, 221, 186, 72, 195, 49, 220, 49, 3, 156, 156, (373,114): 108, 156, 50, 156, 146, 195, 46, 3, 146, 72, 195, 146, (373,126): 49, 146, 186, 116, 116, 79, 33, 35, 35, 33, 33, 33, 221, (373,139): 116, 33, 128, 221, 186, 46, 46, 116, 3, 182, 78, 138, (373,151): 222, 124, 78, 22, 50, 50, 80, 72, 46, 116, 116, 128, 128, (373,164): 33, 79, 116, 33, 221, 116, 116, 116, 116, 116, 33, 245, (373,176): 79, 128, 128, 79, 49, 50, 108, 222, 138, 78, 138, 222, (373,188): 50, 78, 78, 50, 63, 138, 234, 108, 108, 138, 137, 137, (373,200): 63, 182, 49, 50, 50, 234, 234, 14, 234, 195, 234, 66, 50, (373,213): 104, 253, 253, 176, 223, 141, 137, 183, 137, 137, 181, (373,224): 183, 91, 105, 108, 108, 63, 63, 108, 156, 156, 195, 49, (373,236): 195, 186, 186, 14, 50, 14, 156, 156, 234, 14, 108, 104, (373,248): 108, 108, 234, 63, 78, 34, 22, 182, 50, 50, 50, 156, 49, (373,261): 49, 220, 108, 156, 49, 14, 14, 108, 100, 108, 63, 181, 2, (373,274): 105, 104, 253, 181, 180, 180, 105, 104, 104, 104, 105, (373,285): 63, 63, 180, 24, 63, 28, 63, 28, 100, 100, 14, 180, 180, (373,298): 231, 24, 24, 24, 24, 24, 100, 100, 100, 14, 14, 241, 14, (373,311): 62, 14, 100, 63, 28, 14, 241, 241, 14, 14, 241, 241, 241, (373,324): 66, 241, 62, 14, 62, 241, 62, 14, 62, 100, 62, 100, 231, (373,337): 24, 24, 180, 24, 187, 207, 180, 24, 93, 15, 24, 231, 24, (373,350): 207, 207, 24, 207, 15, 242, 25, 15, 84, 237, 58, 75, 207, (373,363): 246, 58, 207, 95, 246, 246, 207, 70, 70, 70, 25, 70, (374,0): 232, 128, 33, 33, 232, 33, 128, 33, 128, 72, 186, 221, 79, (374,13): 116, 116, 116, 79, 79, 33, 79, 33, 79, 33, 232, 18, 33, (374,26): 232, 79, 204, 79, 79, 185, 234, 220, 220, 49, 72, 186, (374,38): 156, 180, 108, 33, 66, 128, 33, 79, 72, 180, 14, 14, 14, (374,51): 66, 72, 72, 116, 72, 195, 3, 46, 220, 183, 63, 116, 146, (374,64): 195, 220, 63, 27, 156, 221, 117, 49, 195, 221, 186, 156, (374,76): 14, 72, 116, 186, 195, 72, 72, 234, 14, 49, 220, 181, 50, (374,89): 146, 186, 186, 146, 146, 72, 72, 108, 146, 33, 128, 33, (374,101): 221, 221, 33, 221, 156, 108, 63, 181, 220, 195, 156, 156, (374,113): 116, 116, 46, 116, 146, 33, 224, 116, 72, 195, 146, 146, (374,125): 195, 3, 79, 46, 46, 221, 33, 128, 245, 35, 33, 232, 232, (374,138): 79, 18, 116, 128, 128, 116, 221, 46, 3, 146, 222, 124, (374,150): 138, 80, 3, 133, 3, 116, 46, 46, 128, 11, 128, 128, 33, (374,163): 128, 79, 72, 116, 79, 79, 33, 128, 245, 128, 116, 18, 72, (374,176): 79, 18, 116, 33, 128, 3, 138, 91, 181, 3, 3, 182, 176, (374,189): 223, 64, 50, 182, 234, 146, 49, 49, 50, 138, 182, 80, (374,201): 195, 3, 49, 156, 195, 49, 234, 66, 72, 66, 72, 234, 2, (374,214): 181, 63, 181, 105, 105, 78, 138, 105, 176, 176, 63, 63, (374,226): 108, 234, 195, 146, 66, 49, 195, 72, 72, 195, 186, 195, (374,238): 156, 156, 156, 146, 186, 72, 18, 72, 234, 63, 14, 220, (374,250): 234, 108, 182, 63, 182, 49, 49, 49, 49, 49, 146, 195, (374,262): 186, 116, 72, 72, 49, 220, 63, 108, 63, 63, 63, 180, 180, (374,275): 2, 180, 63, 108, 108, 180, 180, 2, 2, 180, 63, 108, 100, (374,288): 234, 241, 66, 66, 14, 14, 62, 14, 28, 100, 100, 100, 28, (374,301): 28, 100, 14, 241, 241, 241, 66, 66, 66, 38, 66, 241, 14, (374,314): 14, 14, 241, 66, 66, 66, 66, 204, 195, 204, 195, 66, 66, (374,327): 241, 241, 66, 241, 241, 62, 62, 14, 62, 100, 100, 28, (374,339): 180, 24, 180, 28, 14, 62, 180, 231, 241, 62, 100, 100, (374,351): 100, 62, 100, 207, 58, 15, 58, 246, 58, 20, 58, 207, 207, (374,364): 231, 28, 84, 51, 24, 100, 62, 231, 28, 180, 100 } ATTRIBUTE "CLASS" { DATATYPE H5T_STRING { STRSIZE 6; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "IMAGE" } } ATTRIBUTE "IMAGE_COLORMODEL" { DATATYPE H5T_STRING { STRSIZE 4; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "RGB" } } ATTRIBUTE "IMAGE_MINMAXRANGE" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 2 ) / ( 2 ) } DATA { (0): 0, 255 } } ATTRIBUTE "IMAGE_SUBCLASS" { DATATYPE H5T_STRING { STRSIZE 14; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "IMAGE_INDEXED" } } ATTRIBUTE "IMAGE_VERSION" { DATATYPE H5T_IEEE_F32BE DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): 1 } } ATTRIBUTE "PALETTE" { DATATYPE H5T_REFERENCE { H5T_STD_REF_OBJECT } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): DATASET 251736 /images/iceberg_palette } } } DATASET "hst_lagoon_detail.jpg" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 610, 600, 3 ) / ( 610, 600, 3 ) } DATA { (0,0,0): 32, 23, 40, (0,1,0): 32, 23, 40, (0,2,0): 33, 25, 40, (0,3,0): 34, 26, 41, (0,4,0): 37, 26, 42, (0,5,0): 38, 27, 43, (0,6,0): 39, 28, 42, (0,7,0): 39, 28, 42, (0,8,0): 41, 29, 41, (0,9,0): 41, 29, 41, (0,10,0): 43, 29, 42, (0,11,0): 43, 29, 42, (0,12,0): 43, 30, 40, (0,13,0): 41, 28, 38, (0,14,0): 42, 26, 37, (0,15,0): 41, 25, 36, (0,16,0): 45, 27, 43, (0,17,0): 45, 27, 43, (0,18,0): 45, 27, 43, (0,19,0): 46, 28, 44, (0,20,0): 46, 28, 44, (0,21,0): 47, 29, 45, (0,22,0): 47, 29, 45, (0,23,0): 47, 29, 45, (0,24,0): 46, 28, 44, (0,25,0): 46, 28, 44, (0,26,0): 47, 29, 45, (0,27,0): 47, 29, 45, (0,28,0): 48, 30, 46, (0,29,0): 48, 30, 46, (0,30,0): 49, 31, 47, (0,31,0): 49, 31, 45, (0,32,0): 46, 30, 43, (0,33,0): 46, 30, 41, (0,34,0): 48, 30, 42, (0,35,0): 50, 32, 44, (0,36,0): 51, 34, 44, (0,37,0): 52, 35, 45, (0,38,0): 55, 35, 46, (0,39,0): 56, 36, 47, (0,40,0): 55, 34, 43, (0,41,0): 57, 36, 45, (0,42,0): 58, 37, 44, (0,43,0): 60, 39, 46, (0,44,0): 62, 39, 47, (0,45,0): 63, 40, 48, (0,46,0): 62, 39, 45, (0,47,0): 62, 39, 45, (0,48,0): 61, 35, 46, (0,49,0): 60, 34, 45, (0,50,0): 56, 32, 45, (0,51,0): 54, 30, 43, (0,52,0): 53, 29, 42, (0,53,0): 53, 29, 42, (0,54,0): 52, 30, 43, (0,55,0): 52, 30, 43, (0,56,0): 51, 30, 45, (0,57,0): 51, 30, 45, (0,58,0): 51, 30, 45, (0,59,0): 51, 30, 45, (0,60,0): 49, 31, 47, (0,61,0): 49, 31, 47, (0,62,0): 49, 31, 47, (0,63,0): 49, 31, 47, (0,64,0): 48, 31, 47, (0,65,0): 48, 31, 47, (0,66,0): 48, 31, 47, (0,67,0): 48, 31, 47, (0,68,0): 48, 31, 47, (0,69,0): 48, 31, 47, (0,70,0): 48, 31, 47, (0,71,0): 48, 31, 47, (0,72,0): 48, 31, 47, (0,73,0): 49, 32, 48, (0,74,0): 50, 33, 49, (0,75,0): 51, 34, 50, (0,76,0): 51, 34, 50, (0,77,0): 50, 33, 49, (0,78,0): 49, 32, 48, (0,79,0): 48, 31, 47, (0,80,0): 47, 30, 49, (0,81,0): 47, 30, 49, (0,82,0): 44, 29, 48, (0,83,0): 42, 27, 46, (0,84,0): 40, 25, 44, (0,85,0): 39, 24, 43, (0,86,0): 37, 24, 42, (0,87,0): 36, 23, 41, (0,88,0): 32, 21, 38, (0,89,0): 31, 20, 37, (0,90,0): 30, 19, 36, (0,91,0): 28, 17, 34, (0,92,0): 25, 16, 33, (0,93,0): 25, 16, 33, (0,94,0): 26, 17, 34, (0,95,0): 26, 17, 34, (0,96,0): 28, 17, 33, (0,97,0): 27, 16, 32, (0,98,0): 25, 16, 33, (0,99,0): 24, 15, 32, (0,100,0): 24, 15, 32, (0,101,0): 23, 14, 31, (0,102,0): 22, 15, 33, (0,103,0): 22, 15, 33, (0,104,0): 21, 16, 36, (0,105,0): 20, 15, 35, (0,106,0): 19, 14, 34, (0,107,0): 18, 13, 33, (0,108,0): 17, 14, 35, (0,109,0): 18, 15, 36, (0,110,0): 19, 16, 37, (0,111,0): 20, 17, 38, (0,112,0): 22, 14, 37, (0,113,0): 22, 14, 37, (0,114,0): 22, 14, 37, (0,115,0): 22, 14, 37, (0,116,0): 22, 14, 37, (0,117,0): 22, 14, 37, (0,118,0): 22, 14, 37, (0,119,0): 22, 14, 37, (0,120,0): 21, 13, 36, (0,121,0): 21, 13, 36, (0,122,0): 22, 14, 37, (0,123,0): 23, 15, 38, (0,124,0): 23, 15, 38, (0,125,0): 22, 14, 37, (0,126,0): 21, 13, 36, (0,127,0): 21, 13, 34, (0,128,0): 20, 12, 33, (0,129,0): 20, 13, 31, (0,130,0): 21, 14, 32, (0,131,0): 23, 16, 34, (0,132,0): 24, 17, 35, (0,133,0): 25, 18, 36, (0,134,0): 26, 19, 37, (0,135,0): 27, 20, 38, (0,136,0): 26, 19, 37, (0,137,0): 26, 19, 37, (0,138,0): 26, 19, 37, (0,139,0): 26, 19, 37, (0,140,0): 26, 19, 37, (0,141,0): 26, 19, 37, (0,142,0): 26, 19, 37, (0,143,0): 24, 20, 37, (0,144,0): 28, 23, 45, (0,145,0): 27, 24, 45, (0,146,0): 26, 23, 44, (0,147,0): 26, 23, 44, (0,148,0): 27, 22, 44, (0,149,0): 26, 21, 43, (0,150,0): 26, 21, 43, (0,151,0): 26, 21, 43, (0,152,0): 29, 21, 44, (0,153,0): 29, 21, 44, (0,154,0): 30, 20, 44, (0,155,0): 30, 20, 44, (0,156,0): 30, 20, 44, (0,157,0): 30, 20, 44, (0,158,0): 32, 20, 44, (0,159,0): 30, 20, 44, (0,160,0): 29, 19, 43, (0,161,0): 28, 20, 43, (0,162,0): 28, 20, 43, (0,163,0): 29, 21, 44, (0,164,0): 29, 21, 44, (0,165,0): 30, 22, 45, (0,166,0): 30, 22, 45, (0,167,0): 30, 22, 45, (0,168,0): 29, 21, 44, (0,169,0): 30, 22, 45, (0,170,0): 31, 23, 46, (0,171,0): 32, 24, 47, (0,172,0): 32, 24, 47, (0,173,0): 31, 23, 46, (0,174,0): 30, 22, 45, (0,175,0): 29, 21, 44, (0,176,0): 31, 23, 46, (0,177,0): 31, 23, 46, (0,178,0): 31, 23, 46, (0,179,0): 31, 23, 46, (0,180,0): 31, 23, 46, (0,181,0): 31, 23, 46, (0,182,0): 31, 23, 46, (0,183,0): 31, 23, 46, (0,184,0): 33, 25, 48, (0,185,0): 33, 25, 48, (0,186,0): 33, 25, 48, (0,187,0): 33, 25, 48, (0,188,0): 33, 25, 48, (0,189,0): 33, 25, 48, (0,190,0): 33, 25, 48, (0,191,0): 33, 25, 46, (0,192,0): 35, 26, 47, (0,193,0): 35, 26, 45, (0,194,0): 35, 26, 45, (0,195,0): 35, 26, 45, (0,196,0): 34, 25, 44, (0,197,0): 34, 25, 44, (0,198,0): 34, 25, 44, (0,199,0): 34, 25, 44, (0,200,0): 36, 27, 46, (0,201,0): 36, 27, 46, (0,202,0): 36, 27, 46, (0,203,0): 36, 27, 46, (0,204,0): 36, 27, 46, (0,205,0): 36, 27, 46, (0,206,0): 36, 27, 46, (0,207,0): 36, 27, 46, (0,208,0): 33, 24, 43, (0,209,0): 33, 24, 43, (0,210,0): 33, 24, 43, (0,211,0): 33, 24, 43, (0,212,0): 33, 24, 43, (0,213,0): 33, 24, 43, (0,214,0): 33, 24, 43, (0,215,0): 33, 24, 43, (0,216,0): 35, 26, 45, (0,217,0): 36, 27, 46, (0,218,0): 37, 28, 47, (0,219,0): 38, 29, 48, (0,220,0): 40, 31, 50, (0,221,0): 41, 32, 51, (0,222,0): 42, 33, 52, (0,223,0): 42, 33, 50, (0,224,0): 40, 32, 47, (0,225,0): 40, 32, 45, (0,226,0): 40, 32, 45, (0,227,0): 39, 31, 44, (0,228,0): 41, 30, 44, (0,229,0): 41, 30, 44, (0,230,0): 40, 29, 43, (0,231,0): 40, 29, 43, (0,232,0): 40, 28, 42, (0,233,0): 40, 28, 42, (0,234,0): 42, 28, 43, (0,235,0): 43, 29, 44, (0,236,0): 44, 30, 45, (0,237,0): 44, 30, 45, (0,238,0): 47, 30, 46, (0,239,0): 45, 31, 46, (0,240,0): 40, 25, 44, (0,241,0): 40, 27, 45, (0,242,0): 42, 29, 47, (0,243,0): 44, 31, 49, (0,244,0): 44, 31, 49, (0,245,0): 43, 30, 48, (0,246,0): 42, 29, 47, (0,247,0): 41, 28, 46, (0,248,0): 40, 27, 45, (0,249,0): 39, 26, 44, (0,250,0): 39, 26, 44, (0,251,0): 38, 25, 43, (0,252,0): 37, 24, 42, (0,253,0): 36, 23, 41, (0,254,0): 36, 23, 41, (0,255,0): 34, 23, 40, (0,256,0): 35, 23, 45, (0,257,0): 33, 24, 45, (0,258,0): 34, 25, 44, (0,259,0): 34, 25, 44, (0,260,0): 37, 25, 45, (0,261,0): 37, 25, 45, (0,262,0): 38, 27, 44, (0,263,0): 38, 27, 44, (0,264,0): 36, 23, 40, (0,265,0): 37, 24, 41, (0,266,0): 38, 24, 41, (0,267,0): 38, 24, 41, (0,268,0): 39, 25, 40, (0,269,0): 40, 26, 41, (0,270,0): 42, 25, 41, (0,271,0): 42, 25, 41, (0,272,0): 52, 34, 48, (0,273,0): 52, 34, 48, (0,274,0): 53, 35, 49, (0,275,0): 53, 35, 49, (0,276,0): 54, 36, 48, (0,277,0): 55, 37, 49, (0,278,0): 58, 38, 49, (0,279,0): 58, 38, 49, (0,280,0): 63, 41, 53, (0,281,0): 63, 41, 53, (0,282,0): 64, 41, 51, (0,283,0): 65, 42, 52, (0,284,0): 65, 42, 50, (0,285,0): 66, 43, 51, (0,286,0): 66, 43, 51, (0,287,0): 67, 44, 52, (0,288,0): 69, 43, 54, (0,289,0): 69, 43, 54, (0,290,0): 71, 44, 53, (0,291,0): 72, 45, 54, (0,292,0): 73, 46, 55, (0,293,0): 74, 47, 56, (0,294,0): 77, 47, 55, (0,295,0): 77, 47, 55, (0,296,0): 79, 48, 54, (0,297,0): 79, 48, 54, (0,298,0): 80, 49, 55, (0,299,0): 81, 50, 56, (0,300,0): 84, 52, 57, (0,301,0): 87, 55, 60, (0,302,0): 89, 57, 62, (0,303,0): 94, 58, 60, (0,304,0): 103, 61, 62, (0,305,0): 106, 61, 58, (0,306,0): 106, 61, 58, (0,307,0): 106, 61, 58, (0,308,0): 109, 60, 56, (0,309,0): 110, 61, 57, (0,310,0): 110, 61, 56, (0,311,0): 110, 61, 56, (0,312,0): 112, 65, 59, (0,313,0): 112, 65, 59, (0,314,0): 111, 67, 58, (0,315,0): 111, 68, 59, (0,316,0): 110, 70, 58, (0,317,0): 110, 72, 59, (0,318,0): 109, 73, 59, (0,319,0): 109, 73, 59, (0,320,0): 103, 70, 55, (0,321,0): 103, 70, 55, (0,322,0): 104, 71, 56, (0,323,0): 105, 72, 57, (0,324,0): 106, 73, 58, (0,325,0): 106, 73, 58, (0,326,0): 107, 74, 59, (0,327,0): 107, 74, 59, (0,328,0): 108, 75, 60, (0,329,0): 108, 75, 60, (0,330,0): 108, 75, 60, (0,331,0): 108, 75, 60, (0,332,0): 108, 75, 60, (0,333,0): 108, 75, 60, (0,334,0): 108, 75, 60, (0,335,0): 107, 75, 60, (0,336,0): 108, 76, 61, (0,337,0): 106, 77, 61, (0,338,0): 105, 76, 60, (0,339,0): 104, 75, 59, (0,340,0): 103, 74, 60, (0,341,0): 102, 73, 59, (0,342,0): 101, 71, 60, (0,343,0): 101, 71, 60, (0,344,0): 103, 73, 62, (0,345,0): 103, 73, 62, (0,346,0): 102, 72, 62, (0,347,0): 101, 71, 61, (0,348,0): 100, 70, 62, (0,349,0): 99, 69, 61, (0,350,0): 98, 68, 60, (0,351,0): 98, 68, 60, (0,352,0): 103, 69, 60, (0,353,0): 103, 69, 60, (0,354,0): 102, 68, 59, (0,355,0): 102, 68, 59, (0,356,0): 102, 68, 59, (0,357,0): 104, 70, 61, (0,358,0): 105, 71, 62, (0,359,0): 106, 72, 63, (0,360,0): 107, 73, 64, (0,361,0): 107, 73, 64, (0,362,0): 108, 74, 65, (0,363,0): 109, 75, 66, (0,364,0): 110, 76, 67, (0,365,0): 111, 77, 68, (0,366,0): 112, 78, 69, (0,367,0): 112, 78, 68, (0,368,0): 117, 79, 70, (0,369,0): 114, 78, 66, (0,370,0): 110, 76, 66, (0,371,0): 105, 75, 64, (0,372,0): 104, 74, 63, (0,373,0): 104, 76, 64, (0,374,0): 106, 76, 66, (0,375,0): 109, 76, 67, (0,376,0): 107, 72, 66, (0,377,0): 110, 73, 67, (0,378,0): 113, 72, 68, (0,379,0): 109, 70, 65, (0,380,0): 102, 64, 61, (0,381,0): 95, 62, 57, (0,382,0): 93, 60, 55, (0,383,0): 92, 61, 56, (0,384,0): 92, 61, 59, (0,385,0): 94, 63, 61, (0,386,0): 97, 66, 64, (0,387,0): 98, 67, 65, (0,388,0): 98, 67, 65, (0,389,0): 96, 65, 63, (0,390,0): 93, 62, 60, (0,391,0): 91, 60, 58, (0,392,0): 95, 64, 62, (0,393,0): 94, 63, 61, (0,394,0): 92, 61, 59, (0,395,0): 90, 59, 57, (0,396,0): 88, 57, 55, (0,397,0): 85, 54, 52, (0,398,0): 84, 53, 51, (0,399,0): 82, 52, 52, (0,400,0): 82, 52, 54, (0,401,0): 80, 51, 55, (0,402,0): 78, 49, 53, (0,403,0): 77, 48, 52, (0,404,0): 79, 49, 51, (0,405,0): 80, 50, 52, (0,406,0): 83, 51, 54, (0,407,0): 84, 52, 55, (0,408,0): 79, 47, 48, (0,409,0): 79, 47, 48, (0,410,0): 83, 49, 48, (0,411,0): 85, 51, 50, (0,412,0): 88, 52, 52, (0,413,0): 90, 54, 54, (0,414,0): 92, 57, 55, (0,415,0): 92, 58, 56, (0,416,0): 82, 54, 53, (0,417,0): 77, 51, 50, (0,418,0): 74, 48, 47, (0,419,0): 73, 47, 46, (0,420,0): 77, 49, 46, (0,421,0): 78, 50, 47, (0,422,0): 77, 49, 46, (0,423,0): 75, 47, 44, (0,424,0): 80, 51, 47, (0,425,0): 80, 51, 47, (0,426,0): 82, 53, 49, (0,427,0): 83, 54, 50, (0,428,0): 86, 55, 50, (0,429,0): 87, 56, 51, (0,430,0): 89, 58, 53, (0,431,0): 88, 59, 55, (0,432,0): 81, 57, 53, (0,433,0): 79, 58, 55, (0,434,0): 80, 59, 56, (0,435,0): 80, 59, 56, (0,436,0): 82, 58, 56, (0,437,0): 82, 58, 56, (0,438,0): 83, 58, 54, (0,439,0): 84, 59, 55, (0,440,0): 85, 60, 55, (0,441,0): 86, 61, 56, (0,442,0): 89, 62, 55, (0,443,0): 90, 63, 56, (0,444,0): 93, 64, 58, (0,445,0): 94, 65, 59, (0,446,0): 95, 66, 60, (0,447,0): 94, 66, 62, (0,448,0): 96, 68, 67, (0,449,0): 94, 68, 69, (0,450,0): 95, 69, 70, (0,451,0): 94, 68, 69, (0,452,0): 93, 67, 68, (0,453,0): 91, 65, 66, (0,454,0): 88, 62, 63, (0,455,0): 87, 61, 62, (0,456,0): 90, 64, 65, (0,457,0): 90, 64, 65, (0,458,0): 90, 64, 65, (0,459,0): 89, 63, 64, (0,460,0): 89, 63, 64, (0,461,0): 88, 62, 63, (0,462,0): 88, 62, 63, (0,463,0): 86, 62, 62, (0,464,0): 79, 60, 56, (0,465,0): 78, 60, 56, (0,466,0): 79, 61, 57, (0,467,0): 79, 61, 57, (0,468,0): 81, 62, 58, (0,469,0): 81, 62, 58, (0,470,0): 83, 62, 57, (0,471,0): 83, 62, 57, (0,472,0): 82, 62, 55, (0,473,0): 85, 65, 58, (0,474,0): 90, 67, 59, (0,475,0): 94, 71, 63, (0,476,0): 99, 74, 67, (0,477,0): 100, 75, 68, (0,478,0): 101, 76, 69, (0,479,0): 101, 77, 67, (0,480,0): 98, 74, 64, (0,481,0): 99, 75, 63, (0,482,0): 101, 77, 65, (0,483,0): 102, 78, 66, (0,484,0): 103, 79, 67, (0,485,0): 102, 78, 66, (0,486,0): 102, 78, 66, (0,487,0): 101, 77, 65, (0,488,0): 103, 79, 67, (0,489,0): 103, 79, 67, (0,490,0): 104, 80, 68, (0,491,0): 105, 81, 69, (0,492,0): 105, 81, 69, (0,493,0): 104, 80, 68, (0,494,0): 103, 79, 67, (0,495,0): 102, 80, 66, (0,496,0): 99, 78, 59, (0,497,0): 98, 80, 58, (0,498,0): 99, 81, 61, (0,499,0): 99, 81, 61, (0,500,0): 99, 80, 65, (0,501,0): 98, 79, 64, (0,502,0): 97, 77, 66, (0,503,0): 96, 76, 65, (0,504,0): 91, 71, 64, (0,505,0): 90, 70, 63, (0,506,0): 89, 68, 65, (0,507,0): 88, 67, 64, (0,508,0): 87, 66, 65, (0,509,0): 88, 67, 66, (0,510,0): 89, 67, 69, (0,511,0): 89, 67, 69, (0,512,0): 92, 66, 69, (0,513,0): 92, 66, 69, (0,514,0): 91, 65, 68, (0,515,0): 91, 65, 68, (0,516,0): 90, 64, 67, (0,517,0): 89, 63, 66, (0,518,0): 88, 62, 65, (0,519,0): 88, 62, 65, (0,520,0): 87, 61, 64, (0,521,0): 87, 61, 64, (0,522,0): 87, 61, 64, (0,523,0): 87, 61, 64, (0,524,0): 87, 61, 64, (0,525,0): 87, 61, 64, (0,526,0): 87, 61, 64, (0,527,0): 87, 61, 64, (0,528,0): 88, 57, 62, (0,529,0): 88, 57, 62, (0,530,0): 89, 58, 63, (0,531,0): 89, 58, 63, (0,532,0): 89, 58, 63, (0,533,0): 89, 58, 63, (0,534,0): 91, 59, 64, (0,535,0): 91, 59, 64, (0,536,0): 90, 55, 61, (0,537,0): 89, 54, 60, (0,538,0): 88, 51, 58, (0,539,0): 86, 49, 56, (0,540,0): 84, 47, 54, (0,541,0): 82, 45, 52, (0,542,0): 80, 43, 50, (0,543,0): 82, 43, 48, (0,544,0): 85, 44, 48, (0,545,0): 87, 45, 47, (0,546,0): 88, 46, 48, (0,547,0): 88, 46, 48, (0,548,0): 87, 47, 48, (0,549,0): 85, 46, 47, (0,550,0): 84, 45, 48, (0,551,0): 81, 45, 47, (0,552,0): 79, 45, 46, (0,553,0): 78, 44, 45, (0,554,0): 76, 44, 47, (0,555,0): 74, 42, 45, (0,556,0): 72, 42, 44, (0,557,0): 71, 41, 43, (0,558,0): 70, 41, 45, (0,559,0): 67, 40, 45, (0,560,0): 59, 33, 44, (0,561,0): 57, 33, 46, (0,562,0): 60, 34, 47, (0,563,0): 61, 35, 48, (0,564,0): 63, 35, 47, (0,565,0): 63, 36, 45, (0,566,0): 66, 36, 46, (0,567,0): 66, 36, 44, (0,568,0): 69, 38, 44, (0,569,0): 70, 39, 45, (0,570,0): 74, 39, 45, (0,571,0): 78, 43, 49, (0,572,0): 84, 49, 53, (0,573,0): 91, 56, 60, (0,574,0): 99, 63, 65, (0,575,0): 103, 68, 66, (0,576,0): 108, 74, 64, (0,577,0): 110, 77, 62, (0,578,0): 113, 80, 65, (0,579,0): 116, 83, 68, (0,580,0): 118, 85, 70, (0,581,0): 119, 86, 71, (0,582,0): 118, 85, 70, (0,583,0): 118, 85, 70, (0,584,0): 117, 84, 69, (0,585,0): 116, 83, 68, (0,586,0): 114, 81, 66, (0,587,0): 112, 79, 64, (0,588,0): 110, 77, 62, (0,589,0): 108, 75, 60, (0,590,0): 106, 73, 58, (0,591,0): 104, 72, 59, (0,592,0): 101, 74, 67, (0,593,0): 99, 74, 69, (0,594,0): 97, 74, 68, (0,595,0): 94, 74, 67, (0,596,0): 91, 71, 64, (0,597,0): 87, 68, 61, (0,598,0): 83, 66, 58, (0,599,0): 82, 65, 57, (1,0,0): 32, 23, 40, (1,1,0): 32, 23, 40, (1,2,0): 33, 25, 40, (1,3,0): 34, 26, 41, (1,4,0): 37, 26, 42, (1,5,0): 38, 27, 43, (1,6,0): 39, 28, 42, (1,7,0): 39, 28, 42, (1,8,0): 41, 29, 41, (1,9,0): 41, 29, 41, (1,10,0): 43, 29, 42, (1,11,0): 43, 29, 42, (1,12,0): 43, 30, 40, (1,13,0): 42, 29, 39, (1,14,0): 42, 26, 37, (1,15,0): 41, 25, 36, (1,16,0): 45, 27, 43, (1,17,0): 45, 27, 43, (1,18,0): 45, 27, 43, (1,19,0): 46, 28, 44, (1,20,0): 46, 28, 44, (1,21,0): 47, 29, 45, (1,22,0): 47, 29, 45, (1,23,0): 47, 29, 45, (1,24,0): 46, 28, 44, (1,25,0): 47, 29, 45, (1,26,0): 47, 29, 45, (1,27,0): 48, 30, 46, (1,28,0): 48, 30, 46, (1,29,0): 49, 31, 47, (1,30,0): 49, 31, 47, (1,31,0): 49, 31, 47, (1,32,0): 47, 29, 43, (1,33,0): 47, 29, 41, (1,34,0): 48, 30, 42, (1,35,0): 49, 31, 43, (1,36,0): 51, 34, 44, (1,37,0): 52, 35, 45, (1,38,0): 55, 35, 46, (1,39,0): 55, 35, 46, (1,40,0): 55, 34, 43, (1,41,0): 57, 36, 45, (1,42,0): 58, 37, 44, (1,43,0): 61, 38, 46, (1,44,0): 62, 39, 47, (1,45,0): 63, 40, 48, (1,46,0): 62, 39, 45, (1,47,0): 62, 39, 47, (1,48,0): 61, 35, 46, (1,49,0): 60, 34, 45, (1,50,0): 56, 32, 45, (1,51,0): 54, 30, 43, (1,52,0): 53, 29, 42, (1,53,0): 53, 29, 42, (1,54,0): 52, 30, 43, (1,55,0): 52, 30, 43, (1,56,0): 51, 30, 45, (1,57,0): 51, 30, 45, (1,58,0): 51, 30, 45, (1,59,0): 51, 30, 45, (1,60,0): 49, 31, 47, (1,61,0): 49, 31, 47, (1,62,0): 49, 31, 47, (1,63,0): 49, 31, 47, (1,64,0): 48, 31, 47, (1,65,0): 48, 31, 47, (1,66,0): 48, 31, 47, (1,67,0): 48, 31, 47, (1,68,0): 48, 31, 47, (1,69,0): 48, 31, 47, (1,70,0): 48, 31, 47, (1,71,0): 48, 31, 47, (1,72,0): 48, 31, 47, (1,73,0): 48, 31, 47, (1,74,0): 49, 32, 48, (1,75,0): 50, 33, 49, (1,76,0): 50, 33, 49, (1,77,0): 49, 32, 48, (1,78,0): 48, 31, 47, (1,79,0): 48, 31, 47, (1,80,0): 47, 30, 49, (1,81,0): 46, 29, 48, (1,82,0): 43, 28, 47, (1,83,0): 42, 27, 46, (1,84,0): 40, 25, 44, (1,85,0): 38, 23, 42, (1,86,0): 36, 23, 41, (1,87,0): 36, 23, 41, (1,88,0): 32, 21, 38, (1,89,0): 31, 20, 37, (1,90,0): 29, 18, 35, (1,91,0): 28, 17, 34, (1,92,0): 25, 16, 33, (1,93,0): 25, 16, 33, (1,94,0): 26, 17, 34, (1,95,0): 26, 17, 34, (1,96,0): 28, 17, 33, (1,97,0): 27, 16, 32, (1,98,0): 25, 16, 33, (1,99,0): 25, 16, 33, (1,100,0): 24, 15, 32, (1,101,0): 24, 15, 32, (1,102,0): 22, 15, 33, (1,103,0): 22, 15, 33, (1,104,0): 21, 16, 36, (1,105,0): 20, 15, 35, (1,106,0): 19, 14, 34, (1,107,0): 18, 13, 33, (1,108,0): 17, 14, 35, (1,109,0): 18, 15, 36, (1,110,0): 19, 16, 37, (1,111,0): 20, 17, 38, (1,112,0): 22, 14, 37, (1,113,0): 22, 14, 37, (1,114,0): 22, 14, 37, (1,115,0): 22, 14, 37, (1,116,0): 22, 14, 37, (1,117,0): 22, 14, 37, (1,118,0): 22, 14, 37, (1,119,0): 22, 14, 37, (1,120,0): 21, 13, 36, (1,121,0): 22, 14, 37, (1,122,0): 23, 15, 38, (1,123,0): 24, 16, 39, (1,124,0): 24, 16, 39, (1,125,0): 23, 15, 38, (1,126,0): 22, 14, 37, (1,127,0): 21, 13, 34, (1,128,0): 21, 13, 34, (1,129,0): 22, 15, 33, (1,130,0): 22, 15, 33, (1,131,0): 24, 17, 35, (1,132,0): 25, 18, 36, (1,133,0): 26, 19, 37, (1,134,0): 27, 20, 38, (1,135,0): 27, 20, 38, (1,136,0): 26, 19, 37, (1,137,0): 26, 19, 37, (1,138,0): 26, 19, 37, (1,139,0): 26, 19, 37, (1,140,0): 26, 19, 37, (1,141,0): 26, 19, 37, (1,142,0): 26, 19, 37, (1,143,0): 24, 20, 37, (1,144,0): 27, 22, 44, (1,145,0): 26, 23, 44, (1,146,0): 26, 23, 44, (1,147,0): 26, 23, 44, (1,148,0): 27, 22, 44, (1,149,0): 26, 21, 43, (1,150,0): 26, 21, 43, (1,151,0): 26, 21, 43, (1,152,0): 29, 21, 44, (1,153,0): 29, 21, 44, (1,154,0): 30, 20, 44, (1,155,0): 30, 20, 44, (1,156,0): 30, 20, 44, (1,157,0): 30, 20, 44, (1,158,0): 32, 20, 44, (1,159,0): 30, 20, 44, (1,160,0): 29, 19, 43, (1,161,0): 28, 20, 43, (1,162,0): 28, 20, 43, (1,163,0): 29, 21, 44, (1,164,0): 29, 21, 44, (1,165,0): 30, 22, 45, (1,166,0): 30, 22, 45, (1,167,0): 30, 22, 45, (1,168,0): 29, 21, 44, (1,169,0): 30, 22, 45, (1,170,0): 31, 23, 46, (1,171,0): 32, 24, 47, (1,172,0): 32, 24, 47, (1,173,0): 31, 23, 46, (1,174,0): 30, 22, 45, (1,175,0): 29, 21, 44, (1,176,0): 31, 23, 46, (1,177,0): 31, 23, 46, (1,178,0): 31, 23, 46, (1,179,0): 31, 23, 46, (1,180,0): 31, 23, 46, (1,181,0): 31, 23, 46, (1,182,0): 31, 23, 46, (1,183,0): 31, 23, 46, (1,184,0): 32, 24, 47, (1,185,0): 32, 24, 47, (1,186,0): 32, 24, 47, (1,187,0): 32, 24, 47, (1,188,0): 32, 24, 47, (1,189,0): 32, 24, 47, (1,190,0): 32, 24, 47, (1,191,0): 32, 24, 45, (1,192,0): 35, 26, 47, (1,193,0): 35, 26, 45, (1,194,0): 35, 26, 45, (1,195,0): 35, 26, 45, (1,196,0): 34, 25, 44, (1,197,0): 34, 25, 44, (1,198,0): 34, 25, 44, (1,199,0): 34, 25, 44, (1,200,0): 36, 27, 46, (1,201,0): 36, 27, 46, (1,202,0): 36, 27, 46, (1,203,0): 36, 27, 46, (1,204,0): 36, 27, 46, (1,205,0): 36, 27, 46, (1,206,0): 36, 27, 46, (1,207,0): 36, 27, 46, (1,208,0): 33, 24, 43, (1,209,0): 33, 24, 43, (1,210,0): 33, 24, 43, (1,211,0): 33, 24, 43, (1,212,0): 33, 24, 43, (1,213,0): 33, 24, 43, (1,214,0): 33, 24, 43, (1,215,0): 33, 24, 43, (1,216,0): 35, 26, 45, (1,217,0): 36, 27, 46, (1,218,0): 37, 28, 47, (1,219,0): 38, 29, 48, (1,220,0): 39, 30, 49, (1,221,0): 41, 32, 51, (1,222,0): 41, 32, 51, (1,223,0): 42, 33, 50, (1,224,0): 40, 32, 47, (1,225,0): 40, 32, 45, (1,226,0): 40, 32, 45, (1,227,0): 40, 32, 45, (1,228,0): 42, 31, 45, (1,229,0): 41, 30, 44, (1,230,0): 41, 30, 44, (1,231,0): 41, 30, 44, (1,232,0): 41, 29, 43, (1,233,0): 42, 30, 44, (1,234,0): 43, 29, 44, (1,235,0): 43, 29, 44, (1,236,0): 43, 29, 44, (1,237,0): 44, 30, 45, (1,238,0): 46, 29, 45, (1,239,0): 44, 30, 45, (1,240,0): 41, 26, 45, (1,241,0): 41, 28, 46, (1,242,0): 42, 29, 47, (1,243,0): 42, 29, 47, (1,244,0): 43, 30, 48, (1,245,0): 42, 29, 47, (1,246,0): 42, 29, 47, (1,247,0): 41, 28, 46, (1,248,0): 39, 26, 44, (1,249,0): 39, 26, 44, (1,250,0): 39, 26, 44, (1,251,0): 38, 25, 43, (1,252,0): 37, 24, 42, (1,253,0): 36, 23, 41, (1,254,0): 36, 23, 41, (1,255,0): 35, 24, 41, (1,256,0): 35, 23, 43, (1,257,0): 33, 24, 45, (1,258,0): 33, 24, 43, (1,259,0): 34, 25, 44, (1,260,0): 36, 24, 44, (1,261,0): 37, 25, 45, (1,262,0): 37, 26, 43, (1,263,0): 38, 27, 44, (1,264,0): 37, 24, 41, (1,265,0): 37, 24, 41, (1,266,0): 38, 24, 41, (1,267,0): 39, 25, 42, (1,268,0): 39, 25, 40, (1,269,0): 40, 26, 41, (1,270,0): 42, 25, 41, (1,271,0): 43, 26, 42, (1,272,0): 51, 33, 47, (1,273,0): 51, 33, 47, (1,274,0): 52, 34, 48, (1,275,0): 53, 35, 49, (1,276,0): 55, 37, 49, (1,277,0): 56, 38, 50, (1,278,0): 59, 39, 50, (1,279,0): 59, 39, 50, (1,280,0): 63, 41, 53, (1,281,0): 63, 41, 53, (1,282,0): 65, 42, 52, (1,283,0): 65, 42, 52, (1,284,0): 66, 43, 51, (1,285,0): 66, 43, 51, (1,286,0): 67, 44, 52, (1,287,0): 67, 44, 52, (1,288,0): 69, 43, 54, (1,289,0): 70, 44, 55, (1,290,0): 72, 45, 54, (1,291,0): 73, 46, 55, (1,292,0): 74, 47, 56, (1,293,0): 75, 48, 57, (1,294,0): 78, 48, 56, (1,295,0): 78, 48, 56, (1,296,0): 79, 48, 54, (1,297,0): 79, 48, 54, (1,298,0): 80, 49, 55, (1,299,0): 81, 50, 56, (1,300,0): 84, 52, 57, (1,301,0): 87, 55, 60, (1,302,0): 90, 58, 63, (1,303,0): 95, 59, 61, (1,304,0): 103, 62, 60, (1,305,0): 106, 61, 58, (1,306,0): 106, 61, 58, (1,307,0): 106, 61, 58, (1,308,0): 110, 61, 57, (1,309,0): 110, 61, 57, (1,310,0): 110, 61, 56, (1,311,0): 111, 62, 57, (1,312,0): 113, 66, 60, (1,313,0): 114, 67, 61, (1,314,0): 112, 68, 59, (1,315,0): 112, 69, 60, (1,316,0): 111, 71, 59, (1,317,0): 110, 72, 59, (1,318,0): 110, 74, 60, (1,319,0): 110, 74, 60, (1,320,0): 105, 72, 57, (1,321,0): 105, 72, 57, (1,322,0): 105, 72, 57, (1,323,0): 105, 72, 57, (1,324,0): 106, 73, 58, (1,325,0): 106, 73, 58, (1,326,0): 106, 73, 58, (1,327,0): 106, 73, 58, (1,328,0): 109, 76, 61, (1,329,0): 109, 76, 61, (1,330,0): 109, 76, 61, (1,331,0): 109, 76, 61, (1,332,0): 109, 76, 61, (1,333,0): 109, 76, 61, (1,334,0): 109, 76, 61, (1,335,0): 108, 76, 61, (1,336,0): 109, 77, 62, (1,337,0): 107, 78, 62, (1,338,0): 106, 77, 61, (1,339,0): 105, 76, 60, (1,340,0): 104, 75, 61, (1,341,0): 103, 74, 60, (1,342,0): 102, 72, 61, (1,343,0): 101, 71, 60, (1,344,0): 104, 74, 63, (1,345,0): 104, 74, 63, (1,346,0): 103, 73, 63, (1,347,0): 102, 72, 62, (1,348,0): 101, 71, 63, (1,349,0): 100, 70, 62, (1,350,0): 99, 69, 61, (1,351,0): 98, 68, 60, (1,352,0): 103, 69, 60, (1,353,0): 103, 69, 60, (1,354,0): 102, 68, 59, (1,355,0): 102, 68, 59, (1,356,0): 102, 68, 59, (1,357,0): 103, 69, 60, (1,358,0): 105, 71, 62, (1,359,0): 106, 72, 63, (1,360,0): 107, 73, 64, (1,361,0): 107, 73, 64, (1,362,0): 108, 74, 65, (1,363,0): 109, 75, 66, (1,364,0): 110, 76, 67, (1,365,0): 111, 77, 68, (1,366,0): 112, 78, 69, (1,367,0): 112, 78, 68, (1,368,0): 116, 78, 69, (1,369,0): 114, 78, 66, (1,370,0): 111, 77, 67, (1,371,0): 107, 77, 66, (1,372,0): 106, 76, 65, (1,373,0): 105, 77, 65, (1,374,0): 106, 76, 66, (1,375,0): 109, 76, 67, (1,376,0): 106, 71, 65, (1,377,0): 111, 74, 68, (1,378,0): 116, 75, 71, (1,379,0): 113, 74, 69, (1,380,0): 107, 69, 66, (1,381,0): 98, 65, 60, (1,382,0): 95, 62, 57, (1,383,0): 92, 61, 56, (1,384,0): 93, 62, 60, (1,385,0): 95, 64, 62, (1,386,0): 97, 66, 64, (1,387,0): 99, 68, 66, (1,388,0): 99, 68, 66, (1,389,0): 97, 66, 64, (1,390,0): 94, 63, 61, (1,391,0): 92, 61, 59, (1,392,0): 92, 61, 59, (1,393,0): 92, 61, 59, (1,394,0): 91, 60, 58, (1,395,0): 90, 59, 57, (1,396,0): 89, 58, 56, (1,397,0): 88, 57, 55, (1,398,0): 88, 57, 55, (1,399,0): 86, 56, 56, (1,400,0): 84, 54, 56, (1,401,0): 82, 53, 57, (1,402,0): 80, 51, 55, (1,403,0): 79, 50, 54, (1,404,0): 80, 50, 52, (1,405,0): 81, 51, 53, (1,406,0): 83, 51, 54, (1,407,0): 84, 52, 55, (1,408,0): 80, 48, 49, (1,409,0): 81, 49, 50, (1,410,0): 84, 50, 49, (1,411,0): 85, 51, 50, (1,412,0): 88, 52, 52, (1,413,0): 89, 53, 53, (1,414,0): 90, 55, 53, (1,415,0): 90, 56, 54, (1,416,0): 82, 54, 51, (1,417,0): 76, 50, 49, (1,418,0): 73, 47, 46, (1,419,0): 72, 46, 45, (1,420,0): 76, 48, 45, (1,421,0): 76, 48, 45, (1,422,0): 75, 47, 44, (1,423,0): 73, 45, 42, (1,424,0): 78, 49, 45, (1,425,0): 79, 50, 46, (1,426,0): 80, 51, 47, (1,427,0): 82, 53, 49, (1,428,0): 85, 54, 49, (1,429,0): 87, 56, 51, (1,430,0): 88, 57, 52, (1,431,0): 88, 59, 55, (1,432,0): 81, 57, 53, (1,433,0): 80, 59, 56, (1,434,0): 80, 59, 56, (1,435,0): 80, 59, 56, (1,436,0): 83, 59, 57, (1,437,0): 83, 59, 57, (1,438,0): 84, 59, 55, (1,439,0): 84, 59, 55, (1,440,0): 85, 60, 55, (1,441,0): 86, 61, 56, (1,442,0): 89, 62, 55, (1,443,0): 90, 63, 56, (1,444,0): 92, 63, 57, (1,445,0): 94, 65, 59, (1,446,0): 94, 65, 59, (1,447,0): 94, 66, 62, (1,448,0): 96, 68, 67, (1,449,0): 94, 68, 67, (1,450,0): 94, 68, 69, (1,451,0): 94, 68, 67, (1,452,0): 93, 67, 68, (1,453,0): 91, 65, 64, (1,454,0): 89, 63, 64, (1,455,0): 87, 61, 60, (1,456,0): 90, 64, 65, (1,457,0): 90, 64, 63, (1,458,0): 89, 63, 64, (1,459,0): 89, 63, 62, (1,460,0): 88, 62, 63, (1,461,0): 88, 62, 61, (1,462,0): 87, 61, 62, (1,463,0): 86, 62, 60, (1,464,0): 79, 60, 56, (1,465,0): 79, 61, 57, (1,466,0): 79, 61, 57, (1,467,0): 80, 62, 58, (1,468,0): 81, 62, 58, (1,469,0): 82, 63, 59, (1,470,0): 83, 62, 57, (1,471,0): 83, 62, 57, (1,472,0): 83, 63, 56, (1,473,0): 85, 65, 58, (1,474,0): 91, 68, 60, (1,475,0): 95, 72, 64, (1,476,0): 98, 73, 66, (1,477,0): 100, 75, 68, (1,478,0): 101, 76, 69, (1,479,0): 101, 77, 67, (1,480,0): 99, 75, 65, (1,481,0): 100, 76, 64, (1,482,0): 101, 77, 65, (1,483,0): 103, 79, 67, (1,484,0): 103, 79, 67, (1,485,0): 103, 79, 67, (1,486,0): 102, 78, 66, (1,487,0): 102, 78, 66, (1,488,0): 102, 78, 66, (1,489,0): 103, 79, 67, (1,490,0): 104, 80, 68, (1,491,0): 105, 81, 69, (1,492,0): 105, 81, 69, (1,493,0): 104, 80, 68, (1,494,0): 103, 79, 67, (1,495,0): 102, 79, 65, (1,496,0): 100, 79, 60, (1,497,0): 99, 81, 59, (1,498,0): 99, 81, 61, (1,499,0): 99, 80, 63, (1,500,0): 99, 80, 65, (1,501,0): 97, 78, 63, (1,502,0): 95, 75, 64, (1,503,0): 94, 74, 63, (1,504,0): 91, 71, 64, (1,505,0): 90, 70, 63, (1,506,0): 88, 67, 64, (1,507,0): 87, 66, 63, (1,508,0): 87, 66, 65, (1,509,0): 87, 66, 65, (1,510,0): 88, 66, 68, (1,511,0): 91, 66, 69, (1,512,0): 91, 65, 68, (1,513,0): 90, 64, 67, (1,514,0): 90, 64, 67, (1,515,0): 89, 63, 66, (1,516,0): 89, 63, 66, (1,517,0): 88, 62, 65, (1,518,0): 87, 61, 64, (1,519,0): 87, 61, 64, (1,520,0): 87, 61, 64, (1,521,0): 87, 61, 64, (1,522,0): 87, 61, 64, (1,523,0): 87, 61, 64, (1,524,0): 87, 61, 64, (1,525,0): 87, 61, 64, (1,526,0): 87, 61, 64, (1,527,0): 87, 61, 64, (1,528,0): 85, 56, 60, (1,529,0): 86, 55, 60, (1,530,0): 86, 55, 60, (1,531,0): 86, 55, 60, (1,532,0): 86, 55, 60, (1,533,0): 85, 54, 59, (1,534,0): 86, 54, 59, (1,535,0): 86, 54, 59, (1,536,0): 87, 52, 58, (1,537,0): 87, 52, 58, (1,538,0): 87, 50, 57, (1,539,0): 85, 48, 55, (1,540,0): 83, 46, 53, (1,541,0): 82, 45, 52, (1,542,0): 81, 44, 51, (1,543,0): 82, 43, 48, (1,544,0): 86, 45, 49, (1,545,0): 88, 46, 48, (1,546,0): 89, 47, 49, (1,547,0): 89, 47, 49, (1,548,0): 88, 48, 49, (1,549,0): 87, 47, 48, (1,550,0): 85, 46, 49, (1,551,0): 82, 46, 48, (1,552,0): 81, 45, 47, (1,553,0): 79, 45, 46, (1,554,0): 78, 43, 47, (1,555,0): 75, 43, 46, (1,556,0): 74, 42, 45, (1,557,0): 72, 42, 44, (1,558,0): 71, 40, 45, (1,559,0): 70, 41, 46, (1,560,0): 62, 36, 47, (1,561,0): 61, 37, 50, (1,562,0): 63, 37, 50, (1,563,0): 64, 38, 49, (1,564,0): 66, 38, 50, (1,565,0): 66, 39, 48, (1,566,0): 69, 39, 47, (1,567,0): 69, 39, 47, (1,568,0): 73, 42, 48, (1,569,0): 72, 41, 47, (1,570,0): 74, 42, 47, (1,571,0): 78, 43, 49, (1,572,0): 82, 47, 51, (1,573,0): 87, 52, 56, (1,574,0): 93, 57, 59, (1,575,0): 97, 62, 60, (1,576,0): 101, 67, 58, (1,577,0): 102, 68, 56, (1,578,0): 105, 71, 59, (1,579,0): 108, 74, 62, (1,580,0): 110, 76, 64, (1,581,0): 110, 76, 64, (1,582,0): 110, 76, 64, (1,583,0): 110, 76, 64, (1,584,0): 110, 76, 64, (1,585,0): 109, 75, 63, (1,586,0): 107, 73, 61, (1,587,0): 105, 71, 59, (1,588,0): 103, 69, 57, (1,589,0): 102, 68, 56, (1,590,0): 100, 66, 54, (1,591,0): 98, 66, 55, (1,592,0): 96, 69, 62, (1,593,0): 94, 69, 64, (1,594,0): 92, 69, 63, (1,595,0): 89, 69, 62, (1,596,0): 86, 66, 59, (1,597,0): 82, 63, 56, (1,598,0): 79, 62, 54, (1,599,0): 77, 60, 52, (2,0,0): 32, 23, 40, (2,1,0): 32, 23, 40, (2,2,0): 33, 25, 40, (2,3,0): 34, 26, 41, (2,4,0): 37, 26, 42, (2,5,0): 38, 27, 43, (2,6,0): 39, 28, 42, (2,7,0): 39, 28, 42, (2,8,0): 41, 29, 41, (2,9,0): 42, 30, 42, (2,10,0): 44, 30, 43, (2,11,0): 44, 30, 43, (2,12,0): 43, 30, 40, (2,13,0): 42, 29, 39, (2,14,0): 43, 27, 38, (2,15,0): 42, 26, 37, (2,16,0): 45, 27, 43, (2,17,0): 45, 27, 43, (2,18,0): 45, 27, 43, (2,19,0): 46, 28, 44, (2,20,0): 46, 28, 44, (2,21,0): 47, 29, 45, (2,22,0): 47, 29, 45, (2,23,0): 47, 29, 45, (2,24,0): 47, 29, 45, (2,25,0): 47, 29, 45, (2,26,0): 47, 29, 45, (2,27,0): 48, 30, 46, (2,28,0): 48, 30, 46, (2,29,0): 49, 31, 47, (2,30,0): 49, 31, 47, (2,31,0): 50, 32, 48, (2,32,0): 47, 29, 43, (2,33,0): 49, 28, 43, (2,34,0): 50, 30, 42, (2,35,0): 51, 31, 43, (2,36,0): 52, 32, 44, (2,37,0): 53, 33, 45, (2,38,0): 54, 32, 44, (2,39,0): 55, 33, 45, (2,40,0): 56, 33, 43, (2,41,0): 58, 35, 45, (2,42,0): 59, 36, 46, (2,43,0): 63, 37, 48, (2,44,0): 64, 38, 47, (2,45,0): 65, 39, 48, (2,46,0): 64, 38, 47, (2,47,0): 64, 38, 47, (2,48,0): 61, 35, 46, (2,49,0): 60, 34, 45, (2,50,0): 56, 32, 45, (2,51,0): 54, 30, 43, (2,52,0): 53, 29, 42, (2,53,0): 53, 29, 42, (2,54,0): 52, 30, 43, (2,55,0): 53, 31, 44, (2,56,0): 51, 30, 45, (2,57,0): 51, 30, 45, (2,58,0): 51, 30, 45, (2,59,0): 51, 30, 45, (2,60,0): 49, 31, 47, (2,61,0): 49, 31, 47, (2,62,0): 49, 31, 47, (2,63,0): 49, 31, 47, (2,64,0): 47, 30, 46, (2,65,0): 47, 30, 46, (2,66,0): 47, 30, 46, (2,67,0): 47, 30, 46, (2,68,0): 47, 30, 46, (2,69,0): 47, 30, 46, (2,70,0): 47, 30, 46, (2,71,0): 47, 30, 46, (2,72,0): 47, 30, 46, (2,73,0): 48, 31, 47, (2,74,0): 49, 32, 48, (2,75,0): 49, 32, 48, (2,76,0): 49, 32, 48, (2,77,0): 49, 32, 48, (2,78,0): 48, 31, 47, (2,79,0): 47, 30, 46, (2,80,0): 46, 29, 48, (2,81,0): 46, 29, 48, (2,82,0): 42, 27, 46, (2,83,0): 41, 26, 45, (2,84,0): 39, 24, 43, (2,85,0): 38, 23, 42, (2,86,0): 36, 23, 41, (2,87,0): 35, 22, 40, (2,88,0): 32, 21, 38, (2,89,0): 31, 20, 37, (2,90,0): 29, 18, 35, (2,91,0): 28, 17, 34, (2,92,0): 25, 16, 33, (2,93,0): 26, 17, 34, (2,94,0): 27, 18, 35, (2,95,0): 27, 18, 35, (2,96,0): 28, 17, 33, (2,97,0): 28, 17, 33, (2,98,0): 26, 17, 34, (2,99,0): 25, 16, 33, (2,100,0): 24, 15, 32, (2,101,0): 24, 15, 32, (2,102,0): 23, 16, 34, (2,103,0): 22, 15, 33, (2,104,0): 21, 16, 36, (2,105,0): 20, 15, 35, (2,106,0): 19, 14, 34, (2,107,0): 18, 13, 33, (2,108,0): 17, 14, 35, (2,109,0): 18, 15, 36, (2,110,0): 19, 16, 37, (2,111,0): 20, 17, 38, (2,112,0): 22, 14, 37, (2,113,0): 22, 14, 37, (2,114,0): 22, 14, 37, (2,115,0): 22, 14, 37, (2,116,0): 22, 14, 37, (2,117,0): 22, 14, 37, (2,118,0): 22, 14, 37, (2,119,0): 22, 14, 37, (2,120,0): 23, 15, 38, (2,121,0): 24, 16, 39, (2,122,0): 25, 17, 40, (2,123,0): 26, 18, 41, (2,124,0): 26, 18, 41, (2,125,0): 25, 17, 40, (2,126,0): 24, 16, 39, (2,127,0): 23, 15, 36, (2,128,0): 23, 15, 36, (2,129,0): 24, 17, 35, (2,130,0): 24, 17, 35, (2,131,0): 25, 18, 36, (2,132,0): 26, 19, 37, (2,133,0): 27, 20, 38, (2,134,0): 28, 21, 39, (2,135,0): 28, 21, 39, (2,136,0): 27, 20, 38, (2,137,0): 27, 20, 38, (2,138,0): 27, 20, 38, (2,139,0): 27, 20, 38, (2,140,0): 27, 20, 38, (2,141,0): 27, 20, 38, (2,142,0): 27, 20, 38, (2,143,0): 25, 21, 38, (2,144,0): 26, 21, 43, (2,145,0): 25, 22, 43, (2,146,0): 25, 22, 43, (2,147,0): 25, 22, 43, (2,148,0): 26, 21, 43, (2,149,0): 26, 21, 43, (2,150,0): 26, 21, 43, (2,151,0): 26, 21, 43, (2,152,0): 29, 21, 44, (2,153,0): 29, 21, 44, (2,154,0): 30, 20, 44, (2,155,0): 30, 20, 44, (2,156,0): 30, 20, 44, (2,157,0): 30, 20, 44, (2,158,0): 32, 20, 44, (2,159,0): 30, 20, 44, (2,160,0): 29, 19, 43, (2,161,0): 28, 20, 43, (2,162,0): 28, 20, 43, (2,163,0): 29, 21, 44, (2,164,0): 29, 21, 44, (2,165,0): 30, 22, 45, (2,166,0): 30, 22, 45, (2,167,0): 30, 22, 45, (2,168,0): 29, 21, 44, (2,169,0): 30, 22, 45, (2,170,0): 31, 23, 46, (2,171,0): 32, 24, 47, (2,172,0): 32, 24, 47, (2,173,0): 31, 23, 46, (2,174,0): 30, 22, 45, (2,175,0): 29, 21, 44, (2,176,0): 31, 23, 46, (2,177,0): 31, 23, 46, (2,178,0): 31, 23, 46, (2,179,0): 31, 23, 46, (2,180,0): 31, 23, 46, (2,181,0): 31, 23, 46, (2,182,0): 31, 23, 46, (2,183,0): 31, 23, 46, (2,184,0): 31, 23, 46, (2,185,0): 31, 23, 46, (2,186,0): 31, 23, 46, (2,187,0): 31, 23, 46, (2,188,0): 31, 23, 46, (2,189,0): 31, 23, 46, (2,190,0): 31, 23, 46, (2,191,0): 31, 23, 44, (2,192,0): 34, 25, 46, (2,193,0): 34, 25, 44, (2,194,0): 34, 25, 44, (2,195,0): 34, 25, 44, (2,196,0): 35, 26, 45, (2,197,0): 35, 26, 45, (2,198,0): 35, 26, 45, (2,199,0): 35, 26, 45, (2,200,0): 36, 27, 46, (2,201,0): 36, 27, 46, (2,202,0): 36, 27, 46, (2,203,0): 36, 27, 46, (2,204,0): 36, 27, 46, (2,205,0): 36, 27, 46, (2,206,0): 36, 27, 46, (2,207,0): 36, 27, 46, (2,208,0): 34, 25, 44, (2,209,0): 34, 25, 44, (2,210,0): 34, 25, 44, (2,211,0): 34, 25, 44, (2,212,0): 34, 25, 44, (2,213,0): 34, 25, 44, (2,214,0): 34, 25, 44, (2,215,0): 34, 25, 44, (2,216,0): 36, 27, 46, (2,217,0): 36, 27, 46, (2,218,0): 37, 28, 47, (2,219,0): 38, 29, 48, (2,220,0): 39, 30, 49, (2,221,0): 40, 31, 50, (2,222,0): 40, 31, 50, (2,223,0): 41, 32, 49, (2,224,0): 40, 32, 47, (2,225,0): 40, 32, 45, (2,226,0): 40, 32, 45, (2,227,0): 40, 32, 45, (2,228,0): 42, 31, 45, (2,229,0): 42, 31, 45, (2,230,0): 42, 31, 45, (2,231,0): 42, 31, 45, (2,232,0): 44, 32, 46, (2,233,0): 43, 31, 45, (2,234,0): 44, 30, 45, (2,235,0): 44, 30, 45, (2,236,0): 44, 30, 45, (2,237,0): 43, 29, 44, (2,238,0): 45, 28, 44, (2,239,0): 43, 29, 44, (2,240,0): 43, 28, 47, (2,241,0): 42, 29, 47, (2,242,0): 41, 28, 46, (2,243,0): 40, 27, 45, (2,244,0): 40, 27, 45, (2,245,0): 41, 28, 46, (2,246,0): 42, 29, 47, (2,247,0): 42, 29, 47, (2,248,0): 39, 26, 44, (2,249,0): 39, 26, 44, (2,250,0): 38, 25, 43, (2,251,0): 38, 25, 43, (2,252,0): 37, 24, 42, (2,253,0): 37, 24, 42, (2,254,0): 36, 23, 41, (2,255,0): 35, 24, 41, (2,256,0): 34, 22, 42, (2,257,0): 33, 24, 43, (2,258,0): 33, 24, 43, (2,259,0): 34, 25, 44, (2,260,0): 36, 24, 44, (2,261,0): 37, 25, 45, (2,262,0): 37, 26, 43, (2,263,0): 37, 26, 43, (2,264,0): 38, 25, 42, (2,265,0): 38, 25, 42, (2,266,0): 39, 25, 40, (2,267,0): 40, 26, 41, (2,268,0): 40, 26, 41, (2,269,0): 41, 27, 42, (2,270,0): 43, 26, 42, (2,271,0): 43, 26, 42, (2,272,0): 50, 32, 46, (2,273,0): 51, 33, 47, (2,274,0): 52, 34, 46, (2,275,0): 54, 36, 48, (2,276,0): 58, 38, 50, (2,277,0): 60, 40, 52, (2,278,0): 61, 41, 52, (2,279,0): 62, 42, 53, (2,280,0): 64, 43, 52, (2,281,0): 64, 43, 52, (2,282,0): 66, 43, 53, (2,283,0): 66, 43, 53, (2,284,0): 67, 44, 52, (2,285,0): 67, 44, 52, (2,286,0): 70, 44, 53, (2,287,0): 70, 44, 53, (2,288,0): 71, 44, 53, (2,289,0): 72, 45, 54, (2,290,0): 72, 45, 54, (2,291,0): 73, 46, 55, (2,292,0): 76, 46, 54, (2,293,0): 78, 48, 56, (2,294,0): 78, 48, 56, (2,295,0): 79, 49, 57, (2,296,0): 80, 49, 55, (2,297,0): 80, 49, 55, (2,298,0): 82, 50, 55, (2,299,0): 83, 51, 56, (2,300,0): 85, 53, 58, (2,301,0): 88, 56, 61, (2,302,0): 93, 58, 62, (2,303,0): 95, 59, 61, (2,304,0): 103, 62, 60, (2,305,0): 106, 61, 58, (2,306,0): 107, 62, 57, (2,307,0): 107, 62, 57, (2,308,0): 111, 62, 58, (2,309,0): 111, 62, 58, (2,310,0): 112, 63, 58, (2,311,0): 112, 63, 58, (2,312,0): 116, 69, 61, (2,313,0): 116, 69, 61, (2,314,0): 114, 70, 61, (2,315,0): 114, 71, 62, (2,316,0): 112, 72, 60, (2,317,0): 111, 73, 60, (2,318,0): 111, 75, 61, (2,319,0): 111, 75, 61, (2,320,0): 107, 74, 59, (2,321,0): 107, 74, 59, (2,322,0): 107, 74, 59, (2,323,0): 107, 74, 59, (2,324,0): 106, 73, 58, (2,325,0): 106, 73, 58, (2,326,0): 106, 73, 58, (2,327,0): 106, 73, 58, (2,328,0): 109, 76, 61, (2,329,0): 109, 76, 61, (2,330,0): 109, 76, 61, (2,331,0): 109, 76, 61, (2,332,0): 109, 76, 61, (2,333,0): 109, 76, 61, (2,334,0): 109, 76, 61, (2,335,0): 108, 76, 61, (2,336,0): 110, 78, 63, (2,337,0): 107, 78, 62, (2,338,0): 107, 78, 62, (2,339,0): 105, 76, 60, (2,340,0): 104, 75, 61, (2,341,0): 103, 74, 60, (2,342,0): 103, 74, 60, (2,343,0): 102, 73, 59, (2,344,0): 105, 75, 64, (2,345,0): 104, 74, 63, (2,346,0): 104, 74, 64, (2,347,0): 102, 72, 62, (2,348,0): 101, 71, 61, (2,349,0): 100, 70, 60, (2,350,0): 100, 70, 62, (2,351,0): 99, 69, 61, (2,352,0): 103, 69, 60, (2,353,0): 102, 68, 59, (2,354,0): 101, 67, 58, (2,355,0): 101, 67, 58, (2,356,0): 102, 68, 59, (2,357,0): 103, 69, 60, (2,358,0): 104, 70, 61, (2,359,0): 105, 71, 62, (2,360,0): 107, 73, 64, (2,361,0): 107, 73, 64, (2,362,0): 108, 74, 65, (2,363,0): 109, 75, 66, (2,364,0): 110, 76, 67, (2,365,0): 111, 77, 68, (2,366,0): 112, 78, 69, (2,367,0): 112, 78, 68, (2,368,0): 115, 77, 68, (2,369,0): 114, 78, 66, (2,370,0): 113, 79, 69, (2,371,0): 110, 80, 69, (2,372,0): 109, 79, 68, (2,373,0): 107, 79, 67, (2,374,0): 107, 77, 67, (2,375,0): 108, 75, 66, (2,376,0): 106, 71, 65, (2,377,0): 112, 75, 69, (2,378,0): 118, 77, 73, (2,379,0): 117, 78, 73, (2,380,0): 111, 73, 70, (2,381,0): 102, 69, 64, (2,382,0): 97, 64, 59, (2,383,0): 93, 62, 57, (2,384,0): 95, 64, 62, (2,385,0): 96, 65, 63, (2,386,0): 98, 67, 65, (2,387,0): 100, 69, 67, (2,388,0): 100, 69, 67, (2,389,0): 98, 67, 65, (2,390,0): 96, 65, 63, (2,391,0): 95, 64, 62, (2,392,0): 91, 60, 58, (2,393,0): 91, 60, 58, (2,394,0): 91, 60, 58, (2,395,0): 91, 60, 58, (2,396,0): 91, 60, 58, (2,397,0): 92, 61, 59, (2,398,0): 92, 61, 59, (2,399,0): 91, 61, 61, (2,400,0): 87, 57, 59, (2,401,0): 85, 56, 60, (2,402,0): 84, 53, 58, (2,403,0): 83, 52, 57, (2,404,0): 82, 52, 54, (2,405,0): 82, 52, 54, (2,406,0): 83, 51, 54, (2,407,0): 83, 51, 54, (2,408,0): 84, 50, 51, (2,409,0): 85, 51, 52, (2,410,0): 85, 51, 50, (2,411,0): 86, 52, 51, (2,412,0): 87, 51, 51, (2,413,0): 88, 52, 52, (2,414,0): 89, 54, 52, (2,415,0): 88, 54, 52, (2,416,0): 82, 52, 50, (2,417,0): 77, 49, 46, (2,418,0): 74, 46, 43, (2,419,0): 73, 45, 42, (2,420,0): 74, 46, 43, (2,421,0): 75, 47, 44, (2,422,0): 73, 45, 42, (2,423,0): 71, 43, 40, (2,424,0): 75, 46, 42, (2,425,0): 76, 47, 43, (2,426,0): 77, 48, 44, (2,427,0): 80, 51, 47, (2,428,0): 82, 53, 49, (2,429,0): 84, 55, 51, (2,430,0): 87, 56, 53, (2,431,0): 87, 58, 54, (2,432,0): 81, 57, 53, (2,433,0): 79, 58, 55, (2,434,0): 80, 59, 56, (2,435,0): 80, 59, 56, (2,436,0): 83, 59, 57, (2,437,0): 84, 60, 58, (2,438,0): 85, 60, 56, (2,439,0): 85, 60, 56, (2,440,0): 86, 61, 56, (2,441,0): 86, 61, 56, (2,442,0): 89, 62, 55, (2,443,0): 90, 63, 56, (2,444,0): 92, 63, 57, (2,445,0): 93, 64, 58, (2,446,0): 93, 64, 58, (2,447,0): 93, 65, 61, (2,448,0): 95, 67, 64, (2,449,0): 94, 69, 65, (2,450,0): 94, 68, 67, (2,451,0): 94, 69, 65, (2,452,0): 93, 67, 66, (2,453,0): 91, 66, 62, (2,454,0): 89, 63, 62, (2,455,0): 88, 63, 59, (2,456,0): 89, 63, 62, (2,457,0): 89, 64, 60, (2,458,0): 88, 62, 61, (2,459,0): 88, 63, 59, (2,460,0): 87, 61, 60, (2,461,0): 87, 62, 58, (2,462,0): 86, 60, 59, (2,463,0): 85, 61, 59, (2,464,0): 80, 61, 57, (2,465,0): 79, 61, 57, (2,466,0): 80, 61, 57, (2,467,0): 81, 62, 58, (2,468,0): 81, 62, 58, (2,469,0): 82, 63, 59, (2,470,0): 83, 62, 57, (2,471,0): 84, 63, 58, (2,472,0): 87, 64, 58, (2,473,0): 88, 65, 59, (2,474,0): 91, 68, 60, (2,475,0): 94, 71, 63, (2,476,0): 98, 73, 66, (2,477,0): 100, 75, 68, (2,478,0): 101, 76, 69, (2,479,0): 101, 77, 67, (2,480,0): 100, 76, 66, (2,481,0): 101, 77, 65, (2,482,0): 102, 78, 66, (2,483,0): 103, 79, 67, (2,484,0): 104, 80, 68, (2,485,0): 104, 80, 68, (2,486,0): 103, 79, 67, (2,487,0): 102, 78, 66, (2,488,0): 102, 78, 66, (2,489,0): 103, 79, 67, (2,490,0): 104, 80, 68, (2,491,0): 105, 81, 69, (2,492,0): 105, 81, 69, (2,493,0): 104, 80, 68, (2,494,0): 103, 79, 67, (2,495,0): 102, 79, 65, (2,496,0): 102, 81, 64, (2,497,0): 102, 81, 62, (2,498,0): 102, 81, 64, (2,499,0): 101, 80, 63, (2,500,0): 100, 78, 64, (2,501,0): 98, 76, 62, (2,502,0): 96, 74, 63, (2,503,0): 94, 72, 61, (2,504,0): 92, 69, 63, (2,505,0): 91, 68, 62, (2,506,0): 90, 66, 64, (2,507,0): 89, 65, 63, (2,508,0): 88, 64, 64, (2,509,0): 88, 64, 64, (2,510,0): 89, 64, 67, (2,511,0): 89, 64, 67, (2,512,0): 88, 62, 65, (2,513,0): 88, 62, 65, (2,514,0): 88, 62, 65, (2,515,0): 87, 61, 64, (2,516,0): 87, 61, 64, (2,517,0): 86, 60, 63, (2,518,0): 86, 60, 63, (2,519,0): 86, 60, 63, (2,520,0): 86, 60, 63, (2,521,0): 86, 60, 63, (2,522,0): 86, 60, 63, (2,523,0): 86, 60, 63, (2,524,0): 86, 60, 63, (2,525,0): 86, 60, 63, (2,526,0): 86, 60, 63, (2,527,0): 86, 60, 63, (2,528,0): 84, 55, 59, (2,529,0): 84, 55, 59, (2,530,0): 84, 53, 58, (2,531,0): 83, 52, 57, (2,532,0): 82, 51, 56, (2,533,0): 81, 50, 55, (2,534,0): 82, 50, 55, (2,535,0): 81, 49, 54, (2,536,0): 84, 49, 55, (2,537,0): 83, 48, 54, (2,538,0): 83, 48, 54, (2,539,0): 82, 47, 53, (2,540,0): 82, 45, 52, (2,541,0): 82, 45, 52, (2,542,0): 81, 44, 51, (2,543,0): 83, 44, 49, (2,544,0): 87, 46, 50, (2,545,0): 89, 47, 49, (2,546,0): 90, 48, 50, (2,547,0): 91, 49, 51, (2,548,0): 90, 49, 53, (2,549,0): 89, 48, 52, (2,550,0): 87, 48, 51, (2,551,0): 84, 48, 50, (2,552,0): 82, 46, 48, (2,553,0): 81, 47, 48, (2,554,0): 80, 45, 49, (2,555,0): 77, 45, 48, (2,556,0): 76, 44, 47, (2,557,0): 75, 43, 46, (2,558,0): 74, 42, 45, (2,559,0): 73, 42, 47, (2,560,0): 67, 40, 49, (2,561,0): 66, 40, 51, (2,562,0): 67, 41, 52, (2,563,0): 67, 41, 52, (2,564,0): 69, 41, 53, (2,565,0): 69, 42, 51, (2,566,0): 71, 41, 49, (2,567,0): 72, 42, 50, (2,568,0): 75, 44, 50, (2,569,0): 75, 44, 50, (2,570,0): 75, 43, 48, (2,571,0): 75, 43, 48, (2,572,0): 79, 44, 48, (2,573,0): 82, 47, 51, (2,574,0): 85, 50, 54, (2,575,0): 87, 53, 52, (2,576,0): 91, 56, 52, (2,577,0): 92, 57, 51, (2,578,0): 94, 59, 53, (2,579,0): 96, 61, 55, (2,580,0): 98, 63, 57, (2,581,0): 99, 64, 58, (2,582,0): 99, 64, 58, (2,583,0): 99, 64, 58, (2,584,0): 100, 65, 59, (2,585,0): 99, 64, 58, (2,586,0): 98, 63, 57, (2,587,0): 96, 61, 55, (2,588,0): 95, 60, 54, (2,589,0): 93, 58, 52, (2,590,0): 92, 57, 51, (2,591,0): 91, 58, 51, (2,592,0): 89, 61, 57, (2,593,0): 87, 62, 58, (2,594,0): 86, 62, 58, (2,595,0): 82, 61, 56, (2,596,0): 80, 59, 54, (2,597,0): 77, 58, 52, (2,598,0): 73, 56, 49, (2,599,0): 71, 54, 47, (3,0,0): 32, 23, 40, (3,1,0): 32, 23, 40, (3,2,0): 33, 25, 40, (3,3,0): 34, 26, 41, (3,4,0): 37, 26, 42, (3,5,0): 38, 27, 43, (3,6,0): 39, 28, 42, (3,7,0): 39, 28, 42, (3,8,0): 42, 30, 42, (3,9,0): 42, 30, 42, (3,10,0): 44, 30, 43, (3,11,0): 44, 30, 43, (3,12,0): 44, 31, 41, (3,13,0): 42, 29, 39, (3,14,0): 43, 27, 38, (3,15,0): 42, 26, 37, (3,16,0): 45, 27, 43, (3,17,0): 45, 27, 43, (3,18,0): 45, 27, 43, (3,19,0): 46, 28, 44, (3,20,0): 46, 28, 44, (3,21,0): 47, 29, 45, (3,22,0): 47, 29, 45, (3,23,0): 47, 29, 45, (3,24,0): 47, 29, 45, (3,25,0): 48, 30, 46, (3,26,0): 48, 30, 46, (3,27,0): 48, 30, 46, (3,28,0): 49, 31, 47, (3,29,0): 50, 32, 48, (3,30,0): 50, 32, 48, (3,31,0): 50, 32, 48, (3,32,0): 49, 28, 43, (3,33,0): 49, 28, 43, (3,34,0): 50, 30, 42, (3,35,0): 51, 31, 43, (3,36,0): 52, 30, 43, (3,37,0): 53, 31, 44, (3,38,0): 53, 31, 43, (3,39,0): 55, 31, 44, (3,40,0): 56, 32, 45, (3,41,0): 60, 34, 45, (3,42,0): 61, 35, 46, (3,43,0): 63, 37, 48, (3,44,0): 64, 38, 47, (3,45,0): 65, 39, 48, (3,46,0): 65, 38, 47, (3,47,0): 64, 38, 47, (3,48,0): 62, 36, 47, (3,49,0): 61, 35, 46, (3,50,0): 57, 33, 46, (3,51,0): 55, 31, 44, (3,52,0): 54, 30, 43, (3,53,0): 54, 30, 43, (3,54,0): 53, 31, 44, (3,55,0): 53, 31, 44, (3,56,0): 51, 30, 45, (3,57,0): 51, 30, 45, (3,58,0): 51, 30, 45, (3,59,0): 51, 30, 45, (3,60,0): 49, 31, 47, (3,61,0): 49, 31, 47, (3,62,0): 49, 31, 47, (3,63,0): 49, 31, 47, (3,64,0): 47, 30, 46, (3,65,0): 47, 30, 46, (3,66,0): 47, 30, 46, (3,67,0): 47, 30, 46, (3,68,0): 47, 30, 46, (3,69,0): 47, 30, 46, (3,70,0): 47, 30, 46, (3,71,0): 47, 30, 46, (3,72,0): 46, 29, 45, (3,73,0): 47, 30, 46, (3,74,0): 48, 31, 47, (3,75,0): 48, 31, 47, (3,76,0): 48, 31, 47, (3,77,0): 48, 31, 47, (3,78,0): 47, 30, 46, (3,79,0): 46, 29, 45, (3,80,0): 45, 28, 47, (3,81,0): 45, 28, 47, (3,82,0): 41, 26, 45, (3,83,0): 40, 25, 44, (3,84,0): 38, 23, 42, (3,85,0): 37, 22, 41, (3,86,0): 35, 22, 40, (3,87,0): 34, 21, 39, (3,88,0): 31, 20, 37, (3,89,0): 30, 19, 36, (3,90,0): 29, 18, 35, (3,91,0): 28, 17, 34, (3,92,0): 26, 17, 34, (3,93,0): 26, 17, 34, (3,94,0): 27, 18, 35, (3,95,0): 28, 19, 36, (3,96,0): 29, 18, 34, (3,97,0): 28, 17, 33, (3,98,0): 26, 17, 34, (3,99,0): 25, 16, 33, (3,100,0): 25, 16, 33, (3,101,0): 24, 15, 32, (3,102,0): 23, 16, 34, (3,103,0): 23, 16, 34, (3,104,0): 21, 16, 36, (3,105,0): 20, 15, 35, (3,106,0): 19, 14, 34, (3,107,0): 18, 13, 33, (3,108,0): 17, 14, 35, (3,109,0): 18, 15, 36, (3,110,0): 19, 16, 37, (3,111,0): 20, 17, 38, (3,112,0): 22, 14, 37, (3,113,0): 22, 14, 37, (3,114,0): 22, 14, 37, (3,115,0): 22, 14, 37, (3,116,0): 22, 14, 37, (3,117,0): 22, 14, 37, (3,118,0): 22, 14, 37, (3,119,0): 22, 14, 37, (3,120,0): 24, 16, 39, (3,121,0): 25, 17, 40, (3,122,0): 26, 18, 41, (3,123,0): 27, 19, 42, (3,124,0): 27, 19, 42, (3,125,0): 26, 18, 41, (3,126,0): 25, 17, 40, (3,127,0): 24, 16, 39, (3,128,0): 25, 17, 38, (3,129,0): 25, 18, 36, (3,130,0): 26, 19, 37, (3,131,0): 27, 20, 38, (3,132,0): 27, 20, 38, (3,133,0): 28, 21, 39, (3,134,0): 29, 22, 40, (3,135,0): 29, 22, 40, (3,136,0): 26, 19, 37, (3,137,0): 26, 19, 37, (3,138,0): 26, 19, 37, (3,139,0): 26, 19, 37, (3,140,0): 26, 19, 37, (3,141,0): 26, 19, 37, (3,142,0): 26, 19, 37, (3,143,0): 24, 19, 39, (3,144,0): 24, 21, 42, (3,145,0): 24, 21, 42, (3,146,0): 24, 21, 42, (3,147,0): 25, 22, 43, (3,148,0): 26, 21, 43, (3,149,0): 26, 21, 43, (3,150,0): 27, 22, 44, (3,151,0): 27, 22, 44, (3,152,0): 29, 21, 44, (3,153,0): 29, 21, 44, (3,154,0): 30, 20, 44, (3,155,0): 30, 20, 44, (3,156,0): 30, 20, 44, (3,157,0): 30, 20, 44, (3,158,0): 32, 20, 44, (3,159,0): 30, 20, 44, (3,160,0): 29, 19, 43, (3,161,0): 28, 20, 43, (3,162,0): 28, 20, 43, (3,163,0): 29, 21, 44, (3,164,0): 29, 21, 44, (3,165,0): 30, 22, 45, (3,166,0): 30, 22, 45, (3,167,0): 30, 22, 45, (3,168,0): 29, 21, 44, (3,169,0): 30, 22, 45, (3,170,0): 31, 23, 46, (3,171,0): 32, 24, 47, (3,172,0): 32, 24, 47, (3,173,0): 31, 23, 46, (3,174,0): 30, 22, 45, (3,175,0): 29, 21, 44, (3,176,0): 31, 23, 46, (3,177,0): 31, 23, 46, (3,178,0): 31, 23, 46, (3,179,0): 31, 23, 46, (3,180,0): 31, 23, 46, (3,181,0): 31, 23, 46, (3,182,0): 31, 23, 46, (3,183,0): 31, 23, 46, (3,184,0): 29, 21, 44, (3,185,0): 29, 21, 44, (3,186,0): 29, 21, 44, (3,187,0): 29, 21, 44, (3,188,0): 29, 21, 44, (3,189,0): 29, 21, 44, (3,190,0): 29, 21, 44, (3,191,0): 29, 21, 42, (3,192,0): 34, 25, 46, (3,193,0): 34, 25, 44, (3,194,0): 34, 25, 44, (3,195,0): 34, 25, 44, (3,196,0): 35, 26, 45, (3,197,0): 35, 26, 45, (3,198,0): 35, 26, 45, (3,199,0): 35, 26, 45, (3,200,0): 36, 27, 46, (3,201,0): 36, 27, 46, (3,202,0): 36, 27, 46, (3,203,0): 36, 27, 46, (3,204,0): 36, 27, 46, (3,205,0): 36, 27, 46, (3,206,0): 36, 27, 46, (3,207,0): 36, 27, 46, (3,208,0): 34, 25, 44, (3,209,0): 34, 25, 44, (3,210,0): 34, 25, 44, (3,211,0): 34, 25, 44, (3,212,0): 34, 25, 44, (3,213,0): 34, 25, 44, (3,214,0): 34, 25, 44, (3,215,0): 34, 25, 44, (3,216,0): 36, 27, 46, (3,217,0): 36, 27, 46, (3,218,0): 37, 28, 47, (3,219,0): 37, 28, 47, (3,220,0): 38, 29, 48, (3,221,0): 39, 30, 49, (3,222,0): 39, 30, 49, (3,223,0): 40, 31, 48, (3,224,0): 40, 32, 47, (3,225,0): 40, 32, 45, (3,226,0): 40, 32, 45, (3,227,0): 40, 32, 45, (3,228,0): 43, 32, 46, (3,229,0): 43, 32, 46, (3,230,0): 43, 32, 46, (3,231,0): 44, 33, 47, (3,232,0): 45, 33, 47, (3,233,0): 45, 33, 47, (3,234,0): 45, 31, 46, (3,235,0): 45, 31, 46, (3,236,0): 44, 30, 45, (3,237,0): 43, 29, 44, (3,238,0): 44, 27, 43, (3,239,0): 42, 28, 43, (3,240,0): 45, 30, 49, (3,241,0): 42, 29, 47, (3,242,0): 40, 27, 45, (3,243,0): 39, 26, 44, (3,244,0): 38, 25, 43, (3,245,0): 39, 26, 44, (3,246,0): 41, 28, 46, (3,247,0): 42, 29, 47, (3,248,0): 38, 25, 43, (3,249,0): 38, 25, 43, (3,250,0): 38, 25, 43, (3,251,0): 38, 25, 43, (3,252,0): 37, 24, 42, (3,253,0): 37, 24, 42, (3,254,0): 37, 24, 42, (3,255,0): 36, 25, 42, (3,256,0): 35, 23, 43, (3,257,0): 33, 24, 43, (3,258,0): 33, 24, 43, (3,259,0): 34, 25, 44, (3,260,0): 36, 24, 44, (3,261,0): 37, 26, 43, (3,262,0): 37, 26, 43, (3,263,0): 38, 27, 44, (3,264,0): 39, 26, 43, (3,265,0): 39, 26, 43, (3,266,0): 40, 26, 41, (3,267,0): 41, 27, 42, (3,268,0): 41, 27, 42, (3,269,0): 42, 28, 43, (3,270,0): 44, 27, 43, (3,271,0): 44, 28, 41, (3,272,0): 50, 32, 46, (3,273,0): 51, 33, 47, (3,274,0): 52, 34, 46, (3,275,0): 55, 37, 49, (3,276,0): 59, 39, 51, (3,277,0): 61, 41, 52, (3,278,0): 63, 43, 54, (3,279,0): 64, 44, 55, (3,280,0): 65, 44, 53, (3,281,0): 65, 44, 53, (3,282,0): 67, 44, 54, (3,283,0): 67, 44, 52, (3,284,0): 68, 45, 53, (3,285,0): 68, 45, 53, (3,286,0): 71, 45, 54, (3,287,0): 71, 45, 54, (3,288,0): 72, 45, 54, (3,289,0): 73, 46, 55, (3,290,0): 73, 46, 55, (3,291,0): 74, 47, 56, (3,292,0): 77, 47, 55, (3,293,0): 79, 49, 57, (3,294,0): 79, 49, 57, (3,295,0): 80, 51, 56, (3,296,0): 81, 50, 56, (3,297,0): 81, 50, 56, (3,298,0): 83, 51, 56, (3,299,0): 84, 52, 57, (3,300,0): 86, 54, 59, (3,301,0): 89, 57, 62, (3,302,0): 94, 59, 63, (3,303,0): 96, 60, 62, (3,304,0): 105, 61, 60, (3,305,0): 106, 61, 58, (3,306,0): 107, 62, 57, (3,307,0): 108, 63, 58, (3,308,0): 112, 63, 59, (3,309,0): 113, 64, 59, (3,310,0): 113, 64, 59, (3,311,0): 114, 65, 60, (3,312,0): 118, 71, 63, (3,313,0): 118, 71, 63, (3,314,0): 116, 72, 63, (3,315,0): 115, 73, 61, (3,316,0): 113, 73, 61, (3,317,0): 112, 74, 61, (3,318,0): 111, 75, 61, (3,319,0): 111, 75, 61, (3,320,0): 109, 76, 61, (3,321,0): 109, 76, 61, (3,322,0): 109, 76, 61, (3,323,0): 108, 75, 60, (3,324,0): 107, 74, 59, (3,325,0): 106, 73, 58, (3,326,0): 106, 73, 58, (3,327,0): 105, 72, 57, (3,328,0): 110, 77, 62, (3,329,0): 110, 77, 62, (3,330,0): 110, 77, 62, (3,331,0): 110, 77, 62, (3,332,0): 110, 77, 62, (3,333,0): 110, 77, 62, (3,334,0): 110, 77, 62, (3,335,0): 110, 77, 62, (3,336,0): 111, 79, 64, (3,337,0): 108, 79, 63, (3,338,0): 108, 79, 63, (3,339,0): 106, 77, 61, (3,340,0): 105, 76, 62, (3,341,0): 104, 75, 61, (3,342,0): 104, 75, 61, (3,343,0): 103, 74, 60, (3,344,0): 106, 76, 65, (3,345,0): 105, 75, 64, (3,346,0): 105, 75, 65, (3,347,0): 103, 73, 63, (3,348,0): 102, 72, 62, (3,349,0): 101, 71, 61, (3,350,0): 101, 71, 63, (3,351,0): 102, 69, 62, (3,352,0): 102, 68, 59, (3,353,0): 102, 68, 59, (3,354,0): 101, 67, 58, (3,355,0): 101, 67, 58, (3,356,0): 101, 67, 58, (3,357,0): 103, 69, 60, (3,358,0): 104, 70, 61, (3,359,0): 105, 71, 62, (3,360,0): 107, 73, 64, (3,361,0): 107, 73, 64, (3,362,0): 108, 74, 65, (3,363,0): 109, 75, 66, (3,364,0): 110, 76, 67, (3,365,0): 111, 77, 68, (3,366,0): 112, 78, 69, (3,367,0): 112, 78, 68, (3,368,0): 114, 76, 67, (3,369,0): 114, 78, 66, (3,370,0): 113, 79, 69, (3,371,0): 112, 82, 71, (3,372,0): 111, 81, 70, (3,373,0): 109, 81, 69, (3,374,0): 108, 78, 68, (3,375,0): 109, 76, 67, (3,376,0): 107, 72, 66, (3,377,0): 112, 75, 69, (3,378,0): 117, 76, 72, (3,379,0): 115, 76, 71, (3,380,0): 109, 71, 68, (3,381,0): 101, 68, 63, (3,382,0): 98, 65, 60, (3,383,0): 95, 64, 59, (3,384,0): 97, 66, 63, (3,385,0): 98, 67, 65, (3,386,0): 100, 69, 67, (3,387,0): 101, 70, 68, (3,388,0): 101, 70, 68, (3,389,0): 101, 70, 68, (3,390,0): 100, 69, 67, (3,391,0): 99, 68, 66, (3,392,0): 94, 63, 61, (3,393,0): 94, 63, 61, (3,394,0): 94, 63, 61, (3,395,0): 93, 62, 60, (3,396,0): 93, 62, 60, (3,397,0): 93, 62, 60, (3,398,0): 93, 62, 60, (3,399,0): 93, 61, 62, (3,400,0): 90, 60, 62, (3,401,0): 88, 59, 63, (3,402,0): 88, 57, 62, (3,403,0): 86, 55, 60, (3,404,0): 85, 55, 57, (3,405,0): 84, 54, 56, (3,406,0): 84, 52, 55, (3,407,0): 84, 52, 53, (3,408,0): 87, 53, 54, (3,409,0): 87, 53, 54, (3,410,0): 87, 53, 52, (3,411,0): 87, 53, 52, (3,412,0): 88, 52, 52, (3,413,0): 88, 52, 52, (3,414,0): 88, 53, 51, (3,415,0): 87, 53, 51, (3,416,0): 82, 52, 50, (3,417,0): 78, 50, 47, (3,418,0): 74, 46, 43, (3,419,0): 73, 45, 42, (3,420,0): 73, 45, 42, (3,421,0): 74, 46, 43, (3,422,0): 72, 44, 41, (3,423,0): 70, 42, 39, (3,424,0): 72, 43, 39, (3,425,0): 73, 44, 40, (3,426,0): 75, 46, 42, (3,427,0): 77, 48, 44, (3,428,0): 80, 51, 47, (3,429,0): 82, 53, 49, (3,430,0): 85, 54, 51, (3,431,0): 85, 55, 53, (3,432,0): 80, 56, 54, (3,433,0): 78, 57, 54, (3,434,0): 79, 58, 55, (3,435,0): 80, 59, 56, (3,436,0): 83, 59, 57, (3,437,0): 84, 60, 58, (3,438,0): 85, 60, 56, (3,439,0): 86, 61, 57, (3,440,0): 86, 61, 56, (3,441,0): 86, 61, 56, (3,442,0): 89, 62, 55, (3,443,0): 89, 62, 55, (3,444,0): 91, 62, 56, (3,445,0): 92, 63, 57, (3,446,0): 92, 63, 57, (3,447,0): 92, 65, 58, (3,448,0): 95, 67, 63, (3,449,0): 93, 68, 64, (3,450,0): 94, 69, 65, (3,451,0): 94, 69, 65, (3,452,0): 93, 68, 64, (3,453,0): 92, 67, 63, (3,454,0): 90, 65, 61, (3,455,0): 89, 64, 60, (3,456,0): 88, 63, 59, (3,457,0): 88, 63, 59, (3,458,0): 87, 62, 58, (3,459,0): 87, 62, 58, (3,460,0): 86, 61, 57, (3,461,0): 86, 61, 57, (3,462,0): 85, 60, 56, (3,463,0): 84, 60, 56, (3,464,0): 80, 61, 57, (3,465,0): 80, 62, 58, (3,466,0): 81, 62, 58, (3,467,0): 81, 62, 58, (3,468,0): 82, 63, 59, (3,469,0): 83, 64, 60, (3,470,0): 84, 63, 58, (3,471,0): 84, 63, 58, (3,472,0): 88, 65, 59, (3,473,0): 89, 66, 60, (3,474,0): 91, 68, 60, (3,475,0): 94, 71, 63, (3,476,0): 97, 72, 65, (3,477,0): 99, 74, 67, (3,478,0): 100, 75, 68, (3,479,0): 101, 77, 67, (3,480,0): 100, 76, 64, (3,481,0): 101, 78, 64, (3,482,0): 102, 78, 66, (3,483,0): 104, 81, 67, (3,484,0): 104, 80, 68, (3,485,0): 104, 81, 67, (3,486,0): 103, 79, 67, (3,487,0): 103, 80, 66, (3,488,0): 101, 77, 65, (3,489,0): 102, 79, 65, (3,490,0): 103, 79, 67, (3,491,0): 104, 81, 67, (3,492,0): 104, 80, 68, (3,493,0): 103, 80, 66, (3,494,0): 102, 78, 66, (3,495,0): 101, 78, 64, (3,496,0): 103, 80, 64, (3,497,0): 102, 81, 64, (3,498,0): 103, 80, 64, (3,499,0): 101, 80, 63, (3,500,0): 100, 77, 63, (3,501,0): 97, 75, 62, (3,502,0): 95, 71, 61, (3,503,0): 93, 70, 62, (3,504,0): 93, 68, 63, (3,505,0): 91, 68, 62, (3,506,0): 90, 64, 63, (3,507,0): 88, 64, 62, (3,508,0): 88, 62, 63, (3,509,0): 87, 63, 63, (3,510,0): 88, 62, 65, (3,511,0): 89, 63, 66, (3,512,0): 86, 60, 63, (3,513,0): 86, 60, 63, (3,514,0): 85, 59, 62, (3,515,0): 85, 59, 62, (3,516,0): 85, 59, 62, (3,517,0): 85, 59, 62, (3,518,0): 85, 59, 62, (3,519,0): 85, 59, 62, (3,520,0): 85, 59, 62, (3,521,0): 85, 59, 62, (3,522,0): 85, 59, 62, (3,523,0): 85, 59, 62, (3,524,0): 85, 59, 62, (3,525,0): 85, 59, 62, (3,526,0): 85, 59, 62, (3,527,0): 85, 59, 62, (3,528,0): 85, 56, 60, (3,529,0): 84, 55, 59, (3,530,0): 84, 53, 58, (3,531,0): 83, 52, 57, (3,532,0): 82, 51, 56, (3,533,0): 80, 49, 54, (3,534,0): 80, 48, 53, (3,535,0): 80, 48, 53, (3,536,0): 80, 45, 51, (3,537,0): 80, 45, 51, (3,538,0): 80, 45, 51, (3,539,0): 80, 45, 51, (3,540,0): 82, 45, 52, (3,541,0): 82, 45, 52, (3,542,0): 82, 45, 52, (3,543,0): 84, 45, 50, (3,544,0): 87, 46, 50, (3,545,0): 89, 47, 49, (3,546,0): 91, 49, 51, (3,547,0): 92, 50, 52, (3,548,0): 91, 50, 54, (3,549,0): 91, 50, 54, (3,550,0): 90, 49, 53, (3,551,0): 88, 49, 52, (3,552,0): 86, 47, 50, (3,553,0): 84, 48, 50, (3,554,0): 83, 47, 51, (3,555,0): 81, 46, 50, (3,556,0): 80, 45, 49, (3,557,0): 77, 45, 48, (3,558,0): 78, 43, 47, (3,559,0): 75, 44, 49, (3,560,0): 69, 42, 51, (3,561,0): 68, 42, 53, (3,562,0): 68, 42, 53, (3,563,0): 68, 42, 51, (3,564,0): 70, 43, 52, (3,565,0): 70, 43, 50, (3,566,0): 72, 42, 50, (3,567,0): 72, 43, 48, (3,568,0): 75, 44, 50, (3,569,0): 74, 43, 49, (3,570,0): 74, 42, 47, (3,571,0): 74, 42, 47, (3,572,0): 77, 42, 46, (3,573,0): 78, 43, 47, (3,574,0): 80, 45, 49, (3,575,0): 82, 48, 49, (3,576,0): 84, 48, 48, (3,577,0): 84, 49, 47, (3,578,0): 86, 51, 49, (3,579,0): 87, 52, 50, (3,580,0): 88, 53, 51, (3,581,0): 89, 54, 52, (3,582,0): 90, 55, 53, (3,583,0): 90, 55, 53, (3,584,0): 91, 56, 54, (3,585,0): 91, 56, 54, (3,586,0): 90, 55, 53, (3,587,0): 90, 55, 53, (3,588,0): 89, 54, 52, (3,589,0): 88, 53, 51, (3,590,0): 87, 52, 50, (3,591,0): 86, 52, 50, (3,592,0): 85, 57, 54, (3,593,0): 83, 58, 54, (3,594,0): 82, 58, 54, (3,595,0): 79, 58, 53, (3,596,0): 77, 56, 51, (3,597,0): 73, 54, 48, (3,598,0): 70, 53, 46, (3,599,0): 68, 51, 44, (4,0,0): 32, 23, 40, (4,1,0): 32, 23, 40, (4,2,0): 35, 24, 40, (4,3,0): 36, 25, 41, (4,4,0): 37, 26, 42, (4,5,0): 38, 27, 43, (4,6,0): 40, 28, 42, (4,7,0): 40, 28, 42, (4,8,0): 43, 29, 42, (4,9,0): 44, 30, 43, (4,10,0): 45, 31, 44, (4,11,0): 45, 31, 44, (4,12,0): 46, 30, 41, (4,13,0): 45, 29, 40, (4,14,0): 44, 28, 39, (4,15,0): 43, 27, 38, (4,16,0): 45, 27, 43, (4,17,0): 45, 27, 43, (4,18,0): 45, 27, 43, (4,19,0): 46, 28, 44, (4,20,0): 46, 28, 44, (4,21,0): 47, 29, 45, (4,22,0): 47, 29, 45, (4,23,0): 47, 29, 45, (4,24,0): 48, 30, 46, (4,25,0): 48, 30, 46, (4,26,0): 48, 30, 46, (4,27,0): 49, 31, 47, (4,28,0): 50, 32, 48, (4,29,0): 50, 32, 48, (4,30,0): 50, 32, 48, (4,31,0): 51, 33, 49, (4,32,0): 51, 30, 45, (4,33,0): 52, 29, 45, (4,34,0): 52, 29, 45, (4,35,0): 52, 29, 45, (4,36,0): 54, 30, 44, (4,37,0): 54, 30, 44, (4,38,0): 54, 30, 44, (4,39,0): 56, 30, 43, (4,40,0): 58, 32, 45, (4,41,0): 61, 33, 47, (4,42,0): 62, 34, 46, (4,43,0): 64, 36, 48, (4,44,0): 65, 37, 49, (4,45,0): 66, 38, 50, (4,46,0): 67, 37, 47, (4,47,0): 65, 38, 47, (4,48,0): 62, 36, 47, (4,49,0): 61, 35, 46, (4,50,0): 57, 33, 46, (4,51,0): 56, 32, 45, (4,52,0): 54, 30, 43, (4,53,0): 54, 30, 43, (4,54,0): 53, 31, 44, (4,55,0): 54, 32, 45, (4,56,0): 51, 30, 45, (4,57,0): 51, 30, 45, (4,58,0): 51, 30, 45, (4,59,0): 51, 30, 45, (4,60,0): 49, 31, 47, (4,61,0): 49, 31, 47, (4,62,0): 49, 31, 47, (4,63,0): 49, 31, 47, (4,64,0): 46, 29, 45, (4,65,0): 46, 29, 45, (4,66,0): 46, 29, 45, (4,67,0): 46, 29, 45, (4,68,0): 46, 29, 45, (4,69,0): 46, 29, 45, (4,70,0): 46, 29, 45, (4,71,0): 46, 29, 45, (4,72,0): 45, 28, 44, (4,73,0): 45, 28, 44, (4,74,0): 46, 29, 45, (4,75,0): 47, 30, 46, (4,76,0): 47, 30, 46, (4,77,0): 46, 29, 45, (4,78,0): 45, 28, 44, (4,79,0): 45, 28, 44, (4,80,0): 44, 27, 46, (4,81,0): 43, 26, 45, (4,82,0): 40, 25, 44, (4,83,0): 39, 24, 43, (4,84,0): 37, 22, 41, (4,85,0): 36, 21, 40, (4,86,0): 33, 20, 38, (4,87,0): 33, 20, 38, (4,88,0): 30, 19, 36, (4,89,0): 29, 18, 35, (4,90,0): 28, 17, 34, (4,91,0): 28, 17, 34, (4,92,0): 26, 17, 34, (4,93,0): 27, 18, 35, (4,94,0): 28, 19, 36, (4,95,0): 29, 20, 37, (4,96,0): 29, 18, 34, (4,97,0): 29, 18, 34, (4,98,0): 27, 18, 35, (4,99,0): 26, 17, 34, (4,100,0): 26, 17, 34, (4,101,0): 25, 16, 33, (4,102,0): 24, 17, 35, (4,103,0): 23, 16, 34, (4,104,0): 21, 16, 36, (4,105,0): 20, 15, 35, (4,106,0): 19, 14, 34, (4,107,0): 18, 13, 33, (4,108,0): 17, 14, 35, (4,109,0): 18, 15, 36, (4,110,0): 19, 16, 37, (4,111,0): 20, 17, 38, (4,112,0): 22, 14, 37, (4,113,0): 22, 14, 37, (4,114,0): 22, 14, 37, (4,115,0): 22, 14, 37, (4,116,0): 22, 14, 37, (4,117,0): 22, 14, 37, (4,118,0): 22, 14, 37, (4,119,0): 22, 14, 37, (4,120,0): 25, 17, 40, (4,121,0): 26, 18, 41, (4,122,0): 27, 19, 42, (4,123,0): 27, 19, 42, (4,124,0): 27, 19, 42, (4,125,0): 27, 19, 42, (4,126,0): 26, 18, 41, (4,127,0): 25, 17, 40, (4,128,0): 25, 20, 40, (4,129,0): 25, 20, 40, (4,130,0): 25, 20, 40, (4,131,0): 25, 20, 40, (4,132,0): 26, 21, 41, (4,133,0): 26, 21, 41, (4,134,0): 26, 21, 41, (4,135,0): 27, 22, 42, (4,136,0): 23, 18, 38, (4,137,0): 23, 18, 38, (4,138,0): 23, 18, 38, (4,139,0): 23, 18, 38, (4,140,0): 23, 18, 38, (4,141,0): 23, 18, 38, (4,142,0): 23, 18, 38, (4,143,0): 23, 18, 38, (4,144,0): 22, 19, 40, (4,145,0): 23, 20, 41, (4,146,0): 23, 20, 41, (4,147,0): 24, 21, 42, (4,148,0): 26, 21, 43, (4,149,0): 26, 21, 43, (4,150,0): 27, 22, 44, (4,151,0): 27, 22, 44, (4,152,0): 29, 21, 44, (4,153,0): 29, 21, 44, (4,154,0): 30, 20, 44, (4,155,0): 30, 20, 44, (4,156,0): 30, 20, 44, (4,157,0): 30, 20, 44, (4,158,0): 32, 20, 44, (4,159,0): 30, 20, 44, (4,160,0): 29, 19, 43, (4,161,0): 28, 20, 43, (4,162,0): 28, 20, 43, (4,163,0): 29, 21, 44, (4,164,0): 29, 21, 44, (4,165,0): 30, 22, 45, (4,166,0): 30, 22, 45, (4,167,0): 30, 22, 45, (4,168,0): 29, 21, 44, (4,169,0): 30, 22, 45, (4,170,0): 31, 23, 46, (4,171,0): 32, 24, 47, (4,172,0): 32, 24, 47, (4,173,0): 31, 23, 46, (4,174,0): 30, 22, 45, (4,175,0): 29, 21, 44, (4,176,0): 31, 23, 46, (4,177,0): 31, 23, 46, (4,178,0): 31, 23, 46, (4,179,0): 31, 23, 46, (4,180,0): 31, 23, 46, (4,181,0): 31, 23, 46, (4,182,0): 31, 23, 46, (4,183,0): 31, 23, 46, (4,184,0): 29, 21, 44, (4,185,0): 29, 21, 44, (4,186,0): 29, 21, 44, (4,187,0): 29, 21, 44, (4,188,0): 29, 21, 44, (4,189,0): 29, 21, 44, (4,190,0): 29, 21, 44, (4,191,0): 29, 21, 42, (4,192,0): 33, 24, 45, (4,193,0): 33, 24, 43, (4,194,0): 33, 24, 43, (4,195,0): 34, 25, 44, (4,196,0): 35, 26, 45, (4,197,0): 36, 27, 46, (4,198,0): 36, 27, 46, (4,199,0): 36, 27, 46, (4,200,0): 36, 27, 46, (4,201,0): 36, 27, 46, (4,202,0): 36, 27, 46, (4,203,0): 36, 27, 46, (4,204,0): 36, 27, 46, (4,205,0): 36, 27, 46, (4,206,0): 36, 27, 46, (4,207,0): 36, 27, 46, (4,208,0): 35, 26, 45, (4,209,0): 35, 26, 45, (4,210,0): 35, 26, 45, (4,211,0): 35, 26, 45, (4,212,0): 35, 26, 45, (4,213,0): 35, 26, 45, (4,214,0): 35, 26, 45, (4,215,0): 35, 26, 45, (4,216,0): 36, 27, 46, (4,217,0): 36, 27, 46, (4,218,0): 37, 28, 47, (4,219,0): 37, 28, 47, (4,220,0): 37, 28, 47, (4,221,0): 38, 29, 48, (4,222,0): 38, 29, 48, (4,223,0): 38, 29, 46, (4,224,0): 38, 30, 45, (4,225,0): 38, 30, 43, (4,226,0): 39, 31, 44, (4,227,0): 40, 32, 45, (4,228,0): 42, 31, 45, (4,229,0): 43, 32, 46, (4,230,0): 44, 33, 47, (4,231,0): 44, 33, 47, (4,232,0): 46, 34, 48, (4,233,0): 46, 34, 48, (4,234,0): 46, 32, 47, (4,235,0): 45, 31, 46, (4,236,0): 44, 30, 45, (4,237,0): 44, 30, 45, (4,238,0): 45, 28, 44, (4,239,0): 43, 29, 44, (4,240,0): 45, 30, 49, (4,241,0): 43, 30, 48, (4,242,0): 40, 27, 45, (4,243,0): 38, 25, 43, (4,244,0): 38, 25, 43, (4,245,0): 38, 25, 43, (4,246,0): 40, 27, 45, (4,247,0): 41, 28, 46, (4,248,0): 37, 24, 42, (4,249,0): 37, 24, 42, (4,250,0): 37, 24, 42, (4,251,0): 37, 24, 42, (4,252,0): 38, 25, 43, (4,253,0): 38, 25, 43, (4,254,0): 38, 25, 43, (4,255,0): 37, 26, 43, (4,256,0): 36, 24, 44, (4,257,0): 34, 25, 44, (4,258,0): 36, 24, 44, (4,259,0): 37, 25, 45, (4,260,0): 38, 27, 44, (4,261,0): 38, 27, 44, (4,262,0): 39, 26, 44, (4,263,0): 40, 27, 44, (4,264,0): 41, 27, 44, (4,265,0): 41, 27, 44, (4,266,0): 41, 27, 42, (4,267,0): 42, 28, 43, (4,268,0): 44, 28, 41, (4,269,0): 45, 29, 42, (4,270,0): 45, 29, 42, (4,271,0): 45, 29, 42, (4,272,0): 51, 33, 47, (4,273,0): 52, 34, 46, (4,274,0): 56, 36, 48, (4,275,0): 58, 38, 50, (4,276,0): 60, 40, 51, (4,277,0): 63, 43, 54, (4,278,0): 65, 43, 55, (4,279,0): 66, 45, 54, (4,280,0): 67, 44, 54, (4,281,0): 67, 44, 54, (4,282,0): 68, 45, 53, (4,283,0): 68, 45, 53, (4,284,0): 71, 45, 54, (4,285,0): 71, 46, 52, (4,286,0): 72, 47, 53, (4,287,0): 72, 47, 53, (4,288,0): 73, 46, 55, (4,289,0): 74, 47, 56, (4,290,0): 76, 46, 54, (4,291,0): 78, 48, 56, (4,292,0): 79, 49, 57, (4,293,0): 80, 50, 58, (4,294,0): 81, 50, 56, (4,295,0): 82, 51, 57, (4,296,0): 83, 50, 57, (4,297,0): 83, 51, 56, (4,298,0): 84, 52, 57, (4,299,0): 85, 53, 58, (4,300,0): 89, 54, 58, (4,301,0): 92, 57, 61, (4,302,0): 95, 60, 64, (4,303,0): 97, 61, 63, (4,304,0): 105, 61, 60, (4,305,0): 107, 62, 57, (4,306,0): 108, 63, 58, (4,307,0): 109, 64, 59, (4,308,0): 113, 64, 59, (4,309,0): 114, 65, 60, (4,310,0): 115, 66, 61, (4,311,0): 116, 67, 60, (4,312,0): 119, 72, 64, (4,313,0): 119, 72, 64, (4,314,0): 117, 73, 62, (4,315,0): 116, 74, 62, (4,316,0): 114, 74, 62, (4,317,0): 112, 75, 59, (4,318,0): 111, 75, 59, (4,319,0): 111, 75, 59, (4,320,0): 111, 78, 61, (4,321,0): 110, 77, 60, (4,322,0): 110, 77, 60, (4,323,0): 109, 76, 59, (4,324,0): 108, 75, 58, (4,325,0): 107, 74, 57, (4,326,0): 107, 74, 57, (4,327,0): 107, 74, 57, (4,328,0): 112, 79, 62, (4,329,0): 112, 79, 62, (4,330,0): 112, 79, 62, (4,331,0): 112, 79, 62, (4,332,0): 112, 79, 62, (4,333,0): 112, 79, 62, (4,334,0): 112, 79, 62, (4,335,0): 112, 79, 62, (4,336,0): 112, 81, 63, (4,337,0): 111, 80, 62, (4,338,0): 111, 80, 62, (4,339,0): 110, 79, 61, (4,340,0): 109, 77, 62, (4,341,0): 107, 75, 60, (4,342,0): 107, 75, 62, (4,343,0): 106, 74, 61, (4,344,0): 109, 77, 64, (4,345,0): 108, 76, 63, (4,346,0): 108, 76, 65, (4,347,0): 107, 75, 64, (4,348,0): 106, 73, 64, (4,349,0): 104, 71, 62, (4,350,0): 104, 71, 62, (4,351,0): 103, 70, 61, (4,352,0): 102, 68, 59, (4,353,0): 101, 67, 58, (4,354,0): 100, 66, 57, (4,355,0): 100, 66, 57, (4,356,0): 101, 67, 58, (4,357,0): 102, 68, 59, (4,358,0): 103, 69, 60, (4,359,0): 104, 70, 61, (4,360,0): 107, 73, 64, (4,361,0): 107, 73, 64, (4,362,0): 108, 74, 65, (4,363,0): 109, 75, 66, (4,364,0): 110, 76, 67, (4,365,0): 111, 77, 68, (4,366,0): 112, 78, 69, (4,367,0): 112, 78, 68, (4,368,0): 113, 75, 66, (4,369,0): 113, 77, 65, (4,370,0): 113, 79, 69, (4,371,0): 111, 81, 70, (4,372,0): 112, 82, 71, (4,373,0): 109, 81, 69, (4,374,0): 109, 79, 69, (4,375,0): 110, 77, 68, (4,376,0): 108, 73, 67, (4,377,0): 111, 74, 68, (4,378,0): 113, 72, 68, (4,379,0): 109, 70, 65, (4,380,0): 103, 65, 62, (4,381,0): 98, 65, 60, (4,382,0): 99, 66, 61, (4,383,0): 98, 67, 62, (4,384,0): 101, 67, 65, (4,385,0): 102, 68, 66, (4,386,0): 103, 69, 67, (4,387,0): 104, 70, 68, (4,388,0): 105, 71, 69, (4,389,0): 105, 71, 69, (4,390,0): 105, 71, 69, (4,391,0): 105, 71, 69, (4,392,0): 102, 68, 66, (4,393,0): 101, 67, 65, (4,394,0): 100, 66, 64, (4,395,0): 98, 64, 62, (4,396,0): 97, 63, 61, (4,397,0): 95, 61, 59, (4,398,0): 94, 60, 58, (4,399,0): 92, 61, 59, (4,400,0): 92, 62, 64, (4,401,0): 92, 61, 66, (4,402,0): 91, 61, 63, (4,403,0): 90, 60, 62, (4,404,0): 90, 58, 61, (4,405,0): 88, 56, 59, (4,406,0): 87, 55, 56, (4,407,0): 86, 54, 55, (4,408,0): 90, 56, 57, (4,409,0): 89, 55, 54, (4,410,0): 90, 54, 54, (4,411,0): 90, 54, 54, (4,412,0): 89, 54, 52, (4,413,0): 89, 54, 52, (4,414,0): 91, 53, 52, (4,415,0): 88, 53, 51, (4,416,0): 85, 54, 52, (4,417,0): 80, 50, 48, (4,418,0): 76, 46, 44, (4,419,0): 75, 45, 43, (4,420,0): 75, 45, 43, (4,421,0): 75, 45, 43, (4,422,0): 73, 43, 41, (4,423,0): 71, 41, 39, (4,424,0): 70, 40, 38, (4,425,0): 71, 41, 39, (4,426,0): 72, 42, 40, (4,427,0): 74, 44, 42, (4,428,0): 77, 47, 45, (4,429,0): 79, 49, 47, (4,430,0): 81, 51, 49, (4,431,0): 80, 52, 49, (4,432,0): 78, 54, 52, (4,433,0): 77, 56, 53, (4,434,0): 77, 56, 53, (4,435,0): 79, 58, 55, (4,436,0): 82, 58, 56, (4,437,0): 83, 59, 57, (4,438,0): 85, 60, 56, (4,439,0): 85, 60, 56, (4,440,0): 86, 61, 56, (4,441,0): 86, 61, 56, (4,442,0): 89, 62, 55, (4,443,0): 89, 62, 55, (4,444,0): 90, 61, 55, (4,445,0): 91, 62, 56, (4,446,0): 91, 62, 56, (4,447,0): 90, 63, 56, (4,448,0): 94, 66, 62, (4,449,0): 92, 67, 62, (4,450,0): 93, 68, 63, (4,451,0): 93, 68, 63, (4,452,0): 93, 68, 63, (4,453,0): 92, 67, 62, (4,454,0): 91, 66, 61, (4,455,0): 90, 65, 60, (4,456,0): 87, 62, 57, (4,457,0): 87, 62, 57, (4,458,0): 86, 61, 56, (4,459,0): 86, 61, 56, (4,460,0): 85, 60, 55, (4,461,0): 85, 60, 55, (4,462,0): 84, 59, 54, (4,463,0): 83, 59, 55, (4,464,0): 82, 61, 58, (4,465,0): 81, 62, 58, (4,466,0): 81, 62, 58, (4,467,0): 82, 63, 59, (4,468,0): 84, 63, 60, (4,469,0): 84, 63, 60, (4,470,0): 86, 62, 58, (4,471,0): 87, 63, 59, (4,472,0): 89, 66, 60, (4,473,0): 89, 66, 60, (4,474,0): 91, 66, 59, (4,475,0): 93, 68, 61, (4,476,0): 97, 70, 63, (4,477,0): 99, 72, 65, (4,478,0): 101, 74, 67, (4,479,0): 102, 75, 66, (4,480,0): 99, 76, 62, (4,481,0): 100, 77, 61, (4,482,0): 102, 79, 65, (4,483,0): 103, 80, 64, (4,484,0): 104, 81, 67, (4,485,0): 103, 80, 64, (4,486,0): 103, 80, 66, (4,487,0): 102, 79, 63, (4,488,0): 101, 78, 64, (4,489,0): 102, 79, 63, (4,490,0): 103, 80, 66, (4,491,0): 104, 81, 65, (4,492,0): 104, 81, 67, (4,493,0): 103, 80, 64, (4,494,0): 102, 79, 65, (4,495,0): 101, 78, 62, (4,496,0): 103, 80, 66, (4,497,0): 103, 80, 66, (4,498,0): 104, 78, 65, (4,499,0): 101, 78, 64, (4,500,0): 102, 75, 64, (4,501,0): 97, 73, 61, (4,502,0): 97, 70, 61, (4,503,0): 93, 68, 61, (4,504,0): 95, 67, 63, (4,505,0): 92, 67, 62, (4,506,0): 92, 64, 63, (4,507,0): 88, 62, 61, (4,508,0): 88, 59, 61, (4,509,0): 86, 60, 61, (4,510,0): 88, 59, 61, (4,511,0): 87, 61, 62, (4,512,0): 84, 58, 61, (4,513,0): 84, 58, 61, (4,514,0): 84, 58, 61, (4,515,0): 84, 58, 61, (4,516,0): 84, 58, 61, (4,517,0): 84, 58, 61, (4,518,0): 85, 59, 62, (4,519,0): 85, 59, 62, (4,520,0): 84, 58, 61, (4,521,0): 84, 58, 61, (4,522,0): 84, 58, 61, (4,523,0): 84, 58, 61, (4,524,0): 84, 58, 61, (4,525,0): 84, 58, 61, (4,526,0): 84, 58, 61, (4,527,0): 84, 58, 61, (4,528,0): 87, 58, 62, (4,529,0): 86, 57, 61, (4,530,0): 85, 56, 60, (4,531,0): 84, 55, 59, (4,532,0): 83, 52, 57, (4,533,0): 82, 51, 56, (4,534,0): 81, 50, 55, (4,535,0): 81, 50, 55, (4,536,0): 77, 45, 50, (4,537,0): 77, 45, 50, (4,538,0): 79, 44, 50, (4,539,0): 80, 45, 51, (4,540,0): 80, 45, 51, (4,541,0): 81, 46, 52, (4,542,0): 82, 45, 52, (4,543,0): 84, 45, 50, (4,544,0): 88, 46, 50, (4,545,0): 91, 46, 51, (4,546,0): 91, 49, 53, (4,547,0): 92, 50, 54, (4,548,0): 93, 51, 55, (4,549,0): 92, 51, 55, (4,550,0): 91, 50, 54, (4,551,0): 90, 51, 54, (4,552,0): 88, 49, 52, (4,553,0): 88, 49, 52, (4,554,0): 87, 48, 51, (4,555,0): 84, 48, 50, (4,556,0): 83, 47, 49, (4,557,0): 81, 47, 48, (4,558,0): 81, 45, 47, (4,559,0): 78, 46, 49, (4,560,0): 72, 42, 50, (4,561,0): 70, 43, 52, (4,562,0): 70, 43, 52, (4,563,0): 70, 43, 50, (4,564,0): 71, 41, 49, (4,565,0): 71, 41, 49, (4,566,0): 71, 41, 49, (4,567,0): 71, 42, 47, (4,568,0): 72, 41, 47, (4,569,0): 72, 41, 46, (4,570,0): 73, 41, 46, (4,571,0): 73, 41, 46, (4,572,0): 74, 42, 45, (4,573,0): 75, 43, 46, (4,574,0): 79, 44, 48, (4,575,0): 80, 45, 49, (4,576,0): 79, 44, 48, (4,577,0): 80, 45, 49, (4,578,0): 80, 45, 49, (4,579,0): 81, 46, 50, (4,580,0): 81, 46, 50, (4,581,0): 83, 48, 52, (4,582,0): 84, 49, 53, (4,583,0): 84, 49, 53, (4,584,0): 86, 51, 55, (4,585,0): 85, 50, 54, (4,586,0): 85, 50, 54, (4,587,0): 85, 50, 54, (4,588,0): 85, 50, 54, (4,589,0): 85, 50, 54, (4,590,0): 85, 50, 54, (4,591,0): 82, 50, 51, (4,592,0): 83, 55, 52, (4,593,0): 81, 56, 52, (4,594,0): 80, 56, 52, (4,595,0): 77, 56, 51, (4,596,0): 76, 55, 50, (4,597,0): 73, 54, 48, (4,598,0): 70, 53, 46, (4,599,0): 68, 51, 44, (5,0,0): 32, 23, 40, (5,1,0): 32, 23, 40, (5,2,0): 35, 24, 40, (5,3,0): 36, 25, 41, (5,4,0): 37, 26, 42, (5,5,0): 38, 27, 43, (5,6,0): 40, 28, 42, (5,7,0): 40, 28, 42, (5,8,0): 44, 30, 43, (5,9,0): 44, 30, 43, (5,10,0): 45, 31, 44, (5,11,0): 45, 31, 44, (5,12,0): 47, 31, 42, (5,13,0): 46, 30, 41, (5,14,0): 44, 28, 39, (5,15,0): 43, 27, 38, (5,16,0): 45, 27, 43, (5,17,0): 45, 27, 43, (5,18,0): 45, 27, 43, (5,19,0): 46, 28, 44, (5,20,0): 46, 28, 44, (5,21,0): 47, 29, 45, (5,22,0): 47, 29, 45, (5,23,0): 47, 29, 45, (5,24,0): 48, 30, 46, (5,25,0): 49, 31, 47, (5,26,0): 49, 31, 47, (5,27,0): 50, 32, 48, (5,28,0): 50, 32, 48, (5,29,0): 51, 33, 49, (5,30,0): 51, 33, 49, (5,31,0): 53, 32, 49, (5,32,0): 54, 31, 47, (5,33,0): 55, 31, 47, (5,34,0): 55, 31, 47, (5,35,0): 55, 31, 47, (5,36,0): 55, 31, 45, (5,37,0): 55, 31, 45, (5,38,0): 57, 30, 45, (5,39,0): 57, 30, 45, (5,40,0): 59, 31, 45, (5,41,0): 61, 33, 47, (5,42,0): 62, 34, 46, (5,43,0): 66, 36, 48, (5,44,0): 67, 37, 49, (5,45,0): 68, 38, 50, (5,46,0): 67, 37, 47, (5,47,0): 67, 37, 47, (5,48,0): 64, 36, 48, (5,49,0): 62, 36, 47, (5,50,0): 58, 34, 47, (5,51,0): 56, 32, 45, (5,52,0): 55, 31, 44, (5,53,0): 55, 31, 44, (5,54,0): 54, 32, 45, (5,55,0): 54, 32, 45, (5,56,0): 51, 30, 45, (5,57,0): 51, 30, 45, (5,58,0): 51, 30, 45, (5,59,0): 51, 30, 45, (5,60,0): 49, 31, 47, (5,61,0): 49, 31, 47, (5,62,0): 49, 31, 47, (5,63,0): 49, 31, 47, (5,64,0): 46, 29, 45, (5,65,0): 46, 29, 45, (5,66,0): 46, 29, 45, (5,67,0): 46, 29, 45, (5,68,0): 46, 29, 45, (5,69,0): 46, 29, 45, (5,70,0): 46, 29, 45, (5,71,0): 46, 29, 45, (5,72,0): 44, 27, 43, (5,73,0): 44, 27, 43, (5,74,0): 45, 28, 44, (5,75,0): 46, 29, 45, (5,76,0): 46, 29, 45, (5,77,0): 45, 28, 44, (5,78,0): 44, 27, 43, (5,79,0): 44, 27, 43, (5,80,0): 43, 26, 45, (5,81,0): 42, 25, 44, (5,82,0): 39, 24, 43, (5,83,0): 38, 23, 42, (5,84,0): 36, 21, 40, (5,85,0): 35, 20, 39, (5,86,0): 32, 19, 37, (5,87,0): 32, 19, 37, (5,88,0): 29, 18, 35, (5,89,0): 29, 18, 35, (5,90,0): 28, 17, 34, (5,91,0): 27, 16, 33, (5,92,0): 26, 17, 34, (5,93,0): 27, 18, 35, (5,94,0): 29, 20, 37, (5,95,0): 30, 21, 38, (5,96,0): 30, 19, 35, (5,97,0): 29, 18, 34, (5,98,0): 27, 18, 35, (5,99,0): 27, 18, 35, (5,100,0): 26, 17, 34, (5,101,0): 25, 16, 33, (5,102,0): 24, 17, 35, (5,103,0): 24, 17, 35, (5,104,0): 21, 16, 36, (5,105,0): 20, 15, 35, (5,106,0): 19, 14, 34, (5,107,0): 18, 13, 33, (5,108,0): 17, 14, 35, (5,109,0): 18, 15, 36, (5,110,0): 19, 16, 37, (5,111,0): 20, 17, 38, (5,112,0): 22, 14, 37, (5,113,0): 22, 14, 37, (5,114,0): 22, 14, 37, (5,115,0): 22, 14, 37, (5,116,0): 22, 14, 37, (5,117,0): 22, 14, 37, (5,118,0): 22, 14, 37, (5,119,0): 22, 14, 37, (5,120,0): 25, 17, 40, (5,121,0): 25, 17, 40, (5,122,0): 26, 18, 41, (5,123,0): 27, 19, 42, (5,124,0): 27, 19, 42, (5,125,0): 26, 18, 41, (5,126,0): 25, 17, 40, (5,127,0): 25, 17, 40, (5,128,0): 25, 20, 40, (5,129,0): 25, 20, 40, (5,130,0): 25, 20, 40, (5,131,0): 25, 20, 40, (5,132,0): 25, 20, 40, (5,133,0): 25, 20, 40, (5,134,0): 25, 20, 40, (5,135,0): 25, 20, 40, (5,136,0): 21, 16, 36, (5,137,0): 21, 16, 36, (5,138,0): 21, 16, 36, (5,139,0): 21, 16, 36, (5,140,0): 21, 16, 36, (5,141,0): 21, 16, 36, (5,142,0): 21, 16, 36, (5,143,0): 21, 16, 36, (5,144,0): 21, 18, 39, (5,145,0): 22, 19, 40, (5,146,0): 22, 19, 40, (5,147,0): 23, 20, 41, (5,148,0): 25, 20, 42, (5,149,0): 26, 21, 43, (5,150,0): 27, 22, 44, (5,151,0): 27, 22, 44, (5,152,0): 29, 21, 44, (5,153,0): 29, 21, 44, (5,154,0): 30, 20, 44, (5,155,0): 30, 20, 44, (5,156,0): 30, 20, 44, (5,157,0): 30, 20, 44, (5,158,0): 32, 20, 44, (5,159,0): 30, 20, 44, (5,160,0): 29, 19, 43, (5,161,0): 28, 20, 43, (5,162,0): 28, 20, 43, (5,163,0): 29, 21, 44, (5,164,0): 29, 21, 44, (5,165,0): 30, 22, 45, (5,166,0): 30, 22, 45, (5,167,0): 30, 22, 45, (5,168,0): 29, 21, 44, (5,169,0): 30, 22, 45, (5,170,0): 31, 23, 46, (5,171,0): 32, 24, 47, (5,172,0): 32, 24, 47, (5,173,0): 31, 23, 46, (5,174,0): 30, 22, 45, (5,175,0): 29, 21, 44, (5,176,0): 31, 23, 46, (5,177,0): 31, 23, 46, (5,178,0): 31, 23, 46, (5,179,0): 31, 23, 46, (5,180,0): 31, 23, 46, (5,181,0): 31, 23, 46, (5,182,0): 31, 23, 46, (5,183,0): 31, 23, 46, (5,184,0): 29, 21, 44, (5,185,0): 29, 21, 44, (5,186,0): 29, 21, 44, (5,187,0): 29, 21, 44, (5,188,0): 29, 21, 44, (5,189,0): 29, 21, 44, (5,190,0): 29, 21, 44, (5,191,0): 29, 21, 42, (5,192,0): 32, 23, 44, (5,193,0): 32, 23, 42, (5,194,0): 33, 24, 43, (5,195,0): 34, 25, 44, (5,196,0): 35, 26, 45, (5,197,0): 36, 27, 46, (5,198,0): 37, 28, 47, (5,199,0): 37, 28, 47, (5,200,0): 36, 27, 46, (5,201,0): 36, 27, 46, (5,202,0): 36, 27, 46, (5,203,0): 36, 27, 46, (5,204,0): 36, 27, 46, (5,205,0): 36, 27, 46, (5,206,0): 36, 27, 46, (5,207,0): 36, 27, 46, (5,208,0): 35, 26, 45, (5,209,0): 35, 26, 45, (5,210,0): 35, 26, 45, (5,211,0): 35, 26, 45, (5,212,0): 35, 26, 45, (5,213,0): 35, 26, 45, (5,214,0): 35, 26, 45, (5,215,0): 35, 26, 45, (5,216,0): 37, 28, 47, (5,217,0): 37, 28, 47, (5,218,0): 37, 28, 47, (5,219,0): 37, 28, 47, (5,220,0): 37, 28, 47, (5,221,0): 37, 28, 47, (5,222,0): 37, 28, 47, (5,223,0): 37, 28, 45, (5,224,0): 36, 28, 43, (5,225,0): 37, 29, 42, (5,226,0): 37, 29, 42, (5,227,0): 38, 30, 43, (5,228,0): 41, 30, 44, (5,229,0): 42, 31, 45, (5,230,0): 43, 32, 46, (5,231,0): 43, 32, 46, (5,232,0): 45, 33, 47, (5,233,0): 45, 33, 47, (5,234,0): 46, 32, 47, (5,235,0): 45, 31, 46, (5,236,0): 45, 31, 46, (5,237,0): 45, 31, 46, (5,238,0): 47, 30, 46, (5,239,0): 44, 30, 47, (5,240,0): 44, 29, 48, (5,241,0): 42, 29, 47, (5,242,0): 41, 28, 46, (5,243,0): 39, 26, 44, (5,244,0): 38, 25, 43, (5,245,0): 38, 25, 43, (5,246,0): 38, 25, 43, (5,247,0): 38, 25, 43, (5,248,0): 36, 23, 41, (5,249,0): 36, 23, 41, (5,250,0): 37, 24, 42, (5,251,0): 37, 24, 42, (5,252,0): 38, 25, 43, (5,253,0): 38, 25, 43, (5,254,0): 39, 26, 44, (5,255,0): 39, 26, 44, (5,256,0): 38, 26, 46, (5,257,0): 36, 27, 46, (5,258,0): 38, 26, 46, (5,259,0): 39, 28, 45, (5,260,0): 39, 28, 45, (5,261,0): 40, 29, 46, (5,262,0): 41, 28, 45, (5,263,0): 41, 28, 45, (5,264,0): 42, 28, 45, (5,265,0): 42, 28, 43, (5,266,0): 42, 28, 43, (5,267,0): 43, 29, 44, (5,268,0): 45, 29, 42, (5,269,0): 46, 30, 43, (5,270,0): 46, 30, 43, (5,271,0): 46, 30, 41, (5,272,0): 53, 35, 47, (5,273,0): 54, 36, 48, (5,274,0): 57, 37, 49, (5,275,0): 59, 39, 50, (5,276,0): 61, 41, 52, (5,277,0): 63, 43, 54, (5,278,0): 65, 44, 53, (5,279,0): 66, 45, 54, (5,280,0): 68, 45, 55, (5,281,0): 68, 45, 53, (5,282,0): 69, 46, 54, (5,283,0): 69, 46, 54, (5,284,0): 72, 47, 53, (5,285,0): 72, 47, 53, (5,286,0): 73, 48, 54, (5,287,0): 73, 48, 54, (5,288,0): 74, 47, 56, (5,289,0): 75, 48, 57, (5,290,0): 77, 47, 55, (5,291,0): 79, 49, 57, (5,292,0): 80, 50, 58, (5,293,0): 81, 51, 59, (5,294,0): 82, 51, 57, (5,295,0): 83, 52, 58, (5,296,0): 84, 52, 57, (5,297,0): 84, 52, 57, (5,298,0): 85, 53, 58, (5,299,0): 86, 54, 59, (5,300,0): 90, 55, 59, (5,301,0): 93, 58, 62, (5,302,0): 96, 61, 65, (5,303,0): 100, 61, 62, (5,304,0): 106, 62, 59, (5,305,0): 107, 62, 57, (5,306,0): 108, 63, 58, (5,307,0): 110, 65, 59, (5,308,0): 114, 65, 60, (5,309,0): 116, 67, 62, (5,310,0): 117, 68, 61, (5,311,0): 118, 69, 62, (5,312,0): 120, 73, 65, (5,313,0): 119, 72, 62, (5,314,0): 117, 73, 62, (5,315,0): 116, 74, 62, (5,316,0): 113, 74, 59, (5,317,0): 112, 75, 59, (5,318,0): 110, 74, 58, (5,319,0): 110, 74, 58, (5,320,0): 110, 77, 60, (5,321,0): 110, 77, 60, (5,322,0): 110, 77, 60, (5,323,0): 110, 77, 60, (5,324,0): 109, 76, 59, (5,325,0): 109, 76, 59, (5,326,0): 109, 76, 59, (5,327,0): 109, 76, 59, (5,328,0): 113, 80, 63, (5,329,0): 113, 80, 63, (5,330,0): 113, 80, 63, (5,331,0): 113, 80, 63, (5,332,0): 113, 80, 63, (5,333,0): 113, 80, 63, (5,334,0): 113, 80, 63, (5,335,0): 113, 80, 63, (5,336,0): 114, 81, 64, (5,337,0): 112, 81, 63, (5,338,0): 112, 81, 63, (5,339,0): 111, 80, 62, (5,340,0): 110, 78, 63, (5,341,0): 108, 76, 61, (5,342,0): 108, 76, 63, (5,343,0): 107, 75, 62, (5,344,0): 110, 78, 65, (5,345,0): 109, 77, 64, (5,346,0): 109, 77, 66, (5,347,0): 108, 76, 65, (5,348,0): 107, 74, 65, (5,349,0): 105, 72, 63, (5,350,0): 105, 72, 63, (5,351,0): 104, 71, 62, (5,352,0): 101, 67, 58, (5,353,0): 101, 67, 58, (5,354,0): 100, 66, 57, (5,355,0): 100, 66, 57, (5,356,0): 100, 66, 57, (5,357,0): 101, 67, 58, (5,358,0): 103, 69, 60, (5,359,0): 104, 70, 61, (5,360,0): 107, 73, 64, (5,361,0): 107, 73, 64, (5,362,0): 108, 74, 65, (5,363,0): 109, 75, 66, (5,364,0): 110, 76, 67, (5,365,0): 111, 77, 68, (5,366,0): 112, 78, 69, (5,367,0): 112, 78, 68, (5,368,0): 112, 74, 65, (5,369,0): 112, 76, 64, (5,370,0): 111, 77, 67, (5,371,0): 109, 79, 68, (5,372,0): 110, 80, 69, (5,373,0): 109, 81, 69, (5,374,0): 109, 79, 69, (5,375,0): 111, 78, 69, (5,376,0): 109, 74, 68, (5,377,0): 111, 74, 68, (5,378,0): 111, 70, 66, (5,379,0): 106, 67, 62, (5,380,0): 101, 63, 60, (5,381,0): 97, 64, 59, (5,382,0): 100, 67, 62, (5,383,0): 101, 70, 65, (5,384,0): 103, 69, 67, (5,385,0): 103, 69, 67, (5,386,0): 104, 70, 68, (5,387,0): 105, 71, 69, (5,388,0): 106, 72, 70, (5,389,0): 107, 73, 71, (5,390,0): 108, 74, 72, (5,391,0): 108, 74, 72, (5,392,0): 107, 73, 71, (5,393,0): 106, 72, 70, (5,394,0): 104, 70, 68, (5,395,0): 101, 67, 65, (5,396,0): 98, 64, 62, (5,397,0): 96, 62, 60, (5,398,0): 94, 60, 58, (5,399,0): 92, 58, 57, (5,400,0): 94, 62, 65, (5,401,0): 93, 63, 65, (5,402,0): 93, 63, 65, (5,403,0): 93, 63, 65, (5,404,0): 93, 61, 64, (5,405,0): 92, 60, 61, (5,406,0): 90, 58, 59, (5,407,0): 89, 58, 56, (5,408,0): 92, 58, 57, (5,409,0): 91, 57, 56, (5,410,0): 92, 56, 56, (5,411,0): 92, 57, 55, (5,412,0): 92, 57, 55, (5,413,0): 91, 56, 54, (5,414,0): 93, 55, 54, (5,415,0): 91, 56, 54, (5,416,0): 88, 57, 54, (5,417,0): 84, 55, 51, (5,418,0): 80, 49, 47, (5,419,0): 78, 48, 46, (5,420,0): 79, 48, 46, (5,421,0): 77, 47, 45, (5,422,0): 75, 45, 43, (5,423,0): 73, 43, 41, (5,424,0): 69, 39, 37, (5,425,0): 70, 40, 38, (5,426,0): 71, 41, 39, (5,427,0): 72, 42, 40, (5,428,0): 74, 44, 42, (5,429,0): 75, 45, 43, (5,430,0): 76, 46, 44, (5,431,0): 76, 48, 45, (5,432,0): 75, 51, 49, (5,433,0): 74, 53, 50, (5,434,0): 75, 54, 51, (5,435,0): 77, 56, 53, (5,436,0): 80, 56, 54, (5,437,0): 82, 58, 56, (5,438,0): 84, 59, 55, (5,439,0): 84, 59, 55, (5,440,0): 87, 62, 57, (5,441,0): 87, 62, 57, (5,442,0): 89, 62, 55, (5,443,0): 89, 62, 55, (5,444,0): 90, 61, 55, (5,445,0): 90, 61, 55, (5,446,0): 90, 61, 55, (5,447,0): 89, 62, 55, (5,448,0): 93, 66, 59, (5,449,0): 92, 67, 60, (5,450,0): 93, 68, 63, (5,451,0): 93, 68, 61, (5,452,0): 93, 68, 63, (5,453,0): 92, 67, 60, (5,454,0): 91, 66, 61, (5,455,0): 91, 66, 59, (5,456,0): 86, 61, 56, (5,457,0): 86, 61, 54, (5,458,0): 85, 60, 55, (5,459,0): 85, 60, 53, (5,460,0): 84, 59, 54, (5,461,0): 84, 59, 52, (5,462,0): 83, 58, 53, (5,463,0): 82, 59, 53, (5,464,0): 82, 61, 56, (5,465,0): 82, 63, 59, (5,466,0): 82, 63, 59, (5,467,0): 83, 64, 60, (5,468,0): 84, 63, 60, (5,469,0): 85, 64, 61, (5,470,0): 87, 63, 59, (5,471,0): 87, 63, 59, (5,472,0): 88, 65, 59, (5,473,0): 88, 65, 59, (5,474,0): 90, 65, 58, (5,475,0): 90, 65, 58, (5,476,0): 94, 67, 60, (5,477,0): 96, 69, 62, (5,478,0): 99, 72, 65, (5,479,0): 100, 73, 64, (5,480,0): 98, 75, 61, (5,481,0): 99, 76, 60, (5,482,0): 101, 78, 62, (5,483,0): 102, 79, 63, (5,484,0): 102, 79, 63, (5,485,0): 102, 79, 63, (5,486,0): 101, 78, 62, (5,487,0): 101, 78, 62, (5,488,0): 100, 77, 61, (5,489,0): 101, 78, 62, (5,490,0): 102, 79, 63, (5,491,0): 103, 80, 64, (5,492,0): 103, 80, 64, (5,493,0): 102, 79, 63, (5,494,0): 101, 78, 62, (5,495,0): 100, 77, 61, (5,496,0): 103, 77, 64, (5,497,0): 103, 77, 64, (5,498,0): 103, 76, 65, (5,499,0): 103, 76, 65, (5,500,0): 101, 74, 63, (5,501,0): 99, 72, 63, (5,502,0): 97, 70, 63, (5,503,0): 96, 69, 62, (5,504,0): 95, 67, 63, (5,505,0): 93, 65, 62, (5,506,0): 91, 63, 62, (5,507,0): 89, 61, 60, (5,508,0): 87, 58, 60, (5,509,0): 87, 58, 60, (5,510,0): 87, 58, 60, (5,511,0): 87, 58, 60, (5,512,0): 83, 57, 60, (5,513,0): 83, 57, 60, (5,514,0): 83, 57, 60, (5,515,0): 84, 58, 61, (5,516,0): 84, 58, 61, (5,517,0): 85, 59, 62, (5,518,0): 85, 59, 62, (5,519,0): 85, 59, 62, (5,520,0): 83, 57, 60, (5,521,0): 83, 57, 60, (5,522,0): 83, 57, 60, (5,523,0): 83, 57, 60, (5,524,0): 83, 57, 60, (5,525,0): 83, 57, 60, (5,526,0): 83, 57, 60, (5,527,0): 83, 57, 60, (5,528,0): 86, 57, 61, (5,529,0): 86, 57, 61, (5,530,0): 86, 57, 61, (5,531,0): 85, 56, 60, (5,532,0): 85, 54, 59, (5,533,0): 84, 53, 58, (5,534,0): 83, 52, 57, (5,535,0): 83, 52, 57, (5,536,0): 77, 45, 50, (5,537,0): 78, 46, 51, (5,538,0): 80, 45, 51, (5,539,0): 80, 45, 51, (5,540,0): 80, 45, 51, (5,541,0): 81, 46, 52, (5,542,0): 82, 45, 52, (5,543,0): 84, 44, 52, (5,544,0): 87, 44, 51, (5,545,0): 90, 45, 50, (5,546,0): 90, 48, 52, (5,547,0): 92, 50, 54, (5,548,0): 93, 51, 55, (5,549,0): 93, 51, 55, (5,550,0): 91, 50, 54, (5,551,0): 91, 50, 54, (5,552,0): 91, 50, 54, (5,553,0): 90, 51, 54, (5,554,0): 89, 50, 53, (5,555,0): 88, 49, 52, (5,556,0): 87, 48, 51, (5,557,0): 84, 48, 50, (5,558,0): 85, 46, 49, (5,559,0): 82, 47, 51, (5,560,0): 75, 44, 50, (5,561,0): 72, 45, 52, (5,562,0): 71, 44, 51, (5,563,0): 71, 44, 51, (5,564,0): 72, 42, 50, (5,565,0): 72, 43, 48, (5,566,0): 72, 43, 48, (5,567,0): 71, 42, 47, (5,568,0): 70, 39, 44, (5,569,0): 71, 40, 45, (5,570,0): 72, 40, 45, (5,571,0): 73, 41, 46, (5,572,0): 74, 42, 45, (5,573,0): 75, 43, 46, (5,574,0): 76, 44, 47, (5,575,0): 76, 44, 47, (5,576,0): 78, 43, 49, (5,577,0): 76, 44, 49, (5,578,0): 77, 42, 48, (5,579,0): 75, 43, 48, (5,580,0): 78, 43, 49, (5,581,0): 77, 45, 50, (5,582,0): 80, 45, 51, (5,583,0): 79, 47, 52, (5,584,0): 82, 47, 53, (5,585,0): 80, 48, 53, (5,586,0): 82, 47, 53, (5,587,0): 81, 49, 54, (5,588,0): 83, 48, 54, (5,589,0): 82, 50, 55, (5,590,0): 84, 49, 55, (5,591,0): 82, 50, 53, (5,592,0): 81, 53, 52, (5,593,0): 80, 55, 51, (5,594,0): 79, 55, 51, (5,595,0): 77, 56, 51, (5,596,0): 76, 55, 50, (5,597,0): 73, 54, 48, (5,598,0): 70, 53, 46, (5,599,0): 69, 52, 45, (6,0,0): 34, 23, 40, (6,1,0): 34, 23, 40, (6,2,0): 36, 23, 40, (6,3,0): 37, 24, 41, (6,4,0): 38, 25, 42, (6,5,0): 39, 26, 43, (6,6,0): 41, 27, 42, (6,7,0): 41, 27, 42, (6,8,0): 46, 30, 43, (6,9,0): 47, 31, 44, (6,10,0): 48, 32, 45, (6,11,0): 48, 32, 45, (6,12,0): 48, 30, 42, (6,13,0): 47, 29, 41, (6,14,0): 45, 27, 39, (6,15,0): 44, 26, 38, (6,16,0): 45, 27, 43, (6,17,0): 45, 27, 43, (6,18,0): 45, 27, 43, (6,19,0): 46, 28, 44, (6,20,0): 46, 28, 44, (6,21,0): 47, 29, 45, (6,22,0): 47, 29, 45, (6,23,0): 47, 29, 45, (6,24,0): 49, 31, 47, (6,25,0): 49, 31, 47, (6,26,0): 49, 31, 47, (6,27,0): 50, 32, 48, (6,28,0): 50, 32, 48, (6,29,0): 51, 33, 49, (6,30,0): 51, 33, 49, (6,31,0): 54, 33, 50, (6,32,0): 57, 32, 51, (6,33,0): 59, 32, 51, (6,34,0): 58, 31, 48, (6,35,0): 58, 31, 48, (6,36,0): 58, 31, 48, (6,37,0): 58, 31, 48, (6,38,0): 59, 31, 46, (6,39,0): 59, 31, 46, (6,40,0): 61, 30, 45, (6,41,0): 63, 32, 47, (6,42,0): 64, 33, 48, (6,43,0): 67, 35, 50, (6,44,0): 68, 36, 49, (6,45,0): 69, 37, 50, (6,46,0): 68, 36, 49, (6,47,0): 67, 37, 49, (6,48,0): 64, 36, 48, (6,49,0): 62, 36, 47, (6,50,0): 58, 34, 47, (6,51,0): 56, 32, 45, (6,52,0): 55, 31, 44, (6,53,0): 55, 31, 44, (6,54,0): 54, 32, 45, (6,55,0): 55, 33, 46, (6,56,0): 51, 30, 45, (6,57,0): 51, 30, 45, (6,58,0): 51, 30, 45, (6,59,0): 51, 30, 45, (6,60,0): 49, 31, 47, (6,61,0): 49, 31, 47, (6,62,0): 49, 31, 47, (6,63,0): 49, 31, 47, (6,64,0): 45, 28, 44, (6,65,0): 45, 28, 44, (6,66,0): 45, 28, 44, (6,67,0): 45, 28, 44, (6,68,0): 45, 28, 44, (6,69,0): 45, 28, 44, (6,70,0): 45, 28, 44, (6,71,0): 45, 28, 44, (6,72,0): 43, 26, 42, (6,73,0): 44, 27, 43, (6,74,0): 45, 28, 44, (6,75,0): 45, 28, 44, (6,76,0): 45, 28, 44, (6,77,0): 45, 28, 44, (6,78,0): 44, 27, 43, (6,79,0): 43, 26, 42, (6,80,0): 42, 25, 44, (6,81,0): 42, 25, 44, (6,82,0): 39, 24, 43, (6,83,0): 37, 22, 41, (6,84,0): 35, 20, 39, (6,85,0): 34, 19, 38, (6,86,0): 32, 19, 37, (6,87,0): 31, 18, 36, (6,88,0): 28, 17, 34, (6,89,0): 28, 17, 34, (6,90,0): 27, 16, 33, (6,91,0): 27, 16, 33, (6,92,0): 26, 17, 34, (6,93,0): 27, 18, 35, (6,94,0): 29, 20, 37, (6,95,0): 30, 21, 38, (6,96,0): 30, 19, 35, (6,97,0): 30, 19, 35, (6,98,0): 27, 18, 35, (6,99,0): 27, 18, 35, (6,100,0): 26, 17, 34, (6,101,0): 26, 17, 34, (6,102,0): 25, 18, 36, (6,103,0): 24, 17, 35, (6,104,0): 21, 16, 36, (6,105,0): 20, 15, 35, (6,106,0): 19, 14, 34, (6,107,0): 18, 13, 33, (6,108,0): 17, 14, 35, (6,109,0): 18, 15, 36, (6,110,0): 19, 16, 37, (6,111,0): 20, 17, 38, (6,112,0): 22, 14, 37, (6,113,0): 22, 14, 37, (6,114,0): 22, 14, 37, (6,115,0): 22, 14, 37, (6,116,0): 22, 14, 37, (6,117,0): 22, 14, 37, (6,118,0): 22, 14, 37, (6,119,0): 22, 14, 37, (6,120,0): 24, 16, 39, (6,121,0): 25, 17, 40, (6,122,0): 26, 18, 41, (6,123,0): 26, 18, 41, (6,124,0): 26, 18, 41, (6,125,0): 26, 18, 41, (6,126,0): 25, 17, 40, (6,127,0): 24, 16, 39, (6,128,0): 25, 20, 40, (6,129,0): 24, 21, 40, (6,130,0): 24, 21, 40, (6,131,0): 24, 21, 40, (6,132,0): 24, 21, 40, (6,133,0): 23, 20, 39, (6,134,0): 23, 20, 39, (6,135,0): 23, 20, 39, (6,136,0): 19, 16, 35, (6,137,0): 19, 16, 35, (6,138,0): 19, 16, 35, (6,139,0): 19, 16, 35, (6,140,0): 19, 16, 35, (6,141,0): 19, 16, 35, (6,142,0): 19, 16, 35, (6,143,0): 19, 16, 35, (6,144,0): 20, 17, 38, (6,145,0): 21, 18, 39, (6,146,0): 21, 18, 39, (6,147,0): 23, 20, 41, (6,148,0): 25, 20, 42, (6,149,0): 26, 21, 43, (6,150,0): 27, 22, 44, (6,151,0): 28, 23, 45, (6,152,0): 29, 21, 44, (6,153,0): 29, 21, 44, (6,154,0): 30, 20, 44, (6,155,0): 30, 20, 44, (6,156,0): 30, 20, 44, (6,157,0): 30, 20, 44, (6,158,0): 32, 20, 44, (6,159,0): 30, 20, 44, (6,160,0): 29, 19, 43, (6,161,0): 28, 20, 43, (6,162,0): 28, 20, 43, (6,163,0): 29, 21, 44, (6,164,0): 29, 21, 44, (6,165,0): 30, 22, 45, (6,166,0): 30, 22, 45, (6,167,0): 30, 22, 45, (6,168,0): 29, 21, 44, (6,169,0): 30, 22, 45, (6,170,0): 31, 23, 46, (6,171,0): 32, 24, 47, (6,172,0): 32, 24, 47, (6,173,0): 31, 23, 46, (6,174,0): 30, 22, 45, (6,175,0): 29, 21, 44, (6,176,0): 31, 23, 46, (6,177,0): 31, 23, 46, (6,178,0): 31, 23, 46, (6,179,0): 31, 23, 46, (6,180,0): 31, 23, 46, (6,181,0): 31, 23, 46, (6,182,0): 31, 23, 46, (6,183,0): 31, 23, 46, (6,184,0): 30, 22, 45, (6,185,0): 30, 22, 45, (6,186,0): 30, 22, 45, (6,187,0): 30, 22, 45, (6,188,0): 30, 22, 45, (6,189,0): 30, 22, 45, (6,190,0): 30, 22, 45, (6,191,0): 30, 22, 43, (6,192,0): 31, 22, 43, (6,193,0): 32, 23, 42, (6,194,0): 33, 24, 43, (6,195,0): 34, 25, 44, (6,196,0): 35, 26, 45, (6,197,0): 36, 27, 46, (6,198,0): 37, 28, 47, (6,199,0): 38, 29, 48, (6,200,0): 36, 27, 46, (6,201,0): 36, 27, 46, (6,202,0): 36, 27, 46, (6,203,0): 36, 27, 46, (6,204,0): 36, 27, 46, (6,205,0): 36, 27, 46, (6,206,0): 36, 27, 46, (6,207,0): 36, 27, 46, (6,208,0): 36, 27, 46, (6,209,0): 36, 27, 46, (6,210,0): 36, 27, 46, (6,211,0): 36, 27, 46, (6,212,0): 36, 27, 46, (6,213,0): 36, 27, 46, (6,214,0): 36, 27, 46, (6,215,0): 36, 27, 46, (6,216,0): 37, 28, 47, (6,217,0): 37, 28, 47, (6,218,0): 37, 28, 47, (6,219,0): 36, 27, 46, (6,220,0): 36, 27, 46, (6,221,0): 36, 27, 46, (6,222,0): 36, 27, 46, (6,223,0): 36, 27, 44, (6,224,0): 34, 26, 41, (6,225,0): 35, 27, 42, (6,226,0): 35, 27, 42, (6,227,0): 37, 29, 44, (6,228,0): 40, 29, 45, (6,229,0): 41, 30, 46, (6,230,0): 42, 31, 47, (6,231,0): 42, 31, 47, (6,232,0): 44, 31, 48, (6,233,0): 44, 31, 48, (6,234,0): 45, 31, 48, (6,235,0): 46, 32, 49, (6,236,0): 46, 32, 49, (6,237,0): 46, 32, 49, (6,238,0): 48, 31, 49, (6,239,0): 47, 33, 50, (6,240,0): 43, 28, 47, (6,241,0): 42, 29, 47, (6,242,0): 42, 29, 47, (6,243,0): 41, 28, 46, (6,244,0): 40, 27, 45, (6,245,0): 38, 25, 43, (6,246,0): 36, 23, 41, (6,247,0): 35, 22, 40, (6,248,0): 36, 23, 41, (6,249,0): 36, 23, 41, (6,250,0): 36, 23, 41, (6,251,0): 37, 24, 42, (6,252,0): 38, 25, 43, (6,253,0): 39, 26, 44, (6,254,0): 39, 26, 44, (6,255,0): 39, 26, 44, (6,256,0): 40, 29, 46, (6,257,0): 40, 29, 46, (6,258,0): 41, 28, 46, (6,259,0): 42, 29, 47, (6,260,0): 42, 29, 47, (6,261,0): 43, 30, 47, (6,262,0): 44, 30, 47, (6,263,0): 44, 30, 47, (6,264,0): 44, 27, 43, (6,265,0): 45, 28, 44, (6,266,0): 45, 28, 44, (6,267,0): 46, 30, 43, (6,268,0): 47, 29, 43, (6,269,0): 48, 30, 44, (6,270,0): 48, 30, 42, (6,271,0): 48, 30, 42, (6,272,0): 58, 38, 50, (6,273,0): 58, 38, 49, (6,274,0): 59, 39, 50, (6,275,0): 60, 40, 51, (6,276,0): 63, 41, 53, (6,277,0): 64, 43, 52, (6,278,0): 66, 43, 53, (6,279,0): 66, 43, 53, (6,280,0): 69, 46, 54, (6,281,0): 69, 46, 54, (6,282,0): 72, 46, 55, (6,283,0): 72, 47, 53, (6,284,0): 74, 47, 54, (6,285,0): 74, 47, 54, (6,286,0): 75, 48, 53, (6,287,0): 75, 48, 53, (6,288,0): 77, 47, 55, (6,289,0): 77, 47, 55, (6,290,0): 78, 48, 56, (6,291,0): 79, 49, 57, (6,292,0): 81, 50, 56, (6,293,0): 82, 51, 57, (6,294,0): 83, 52, 58, (6,295,0): 84, 53, 59, (6,296,0): 85, 53, 58, (6,297,0): 85, 53, 58, (6,298,0): 88, 53, 57, (6,299,0): 89, 54, 58, (6,300,0): 91, 56, 60, (6,301,0): 94, 59, 63, (6,302,0): 98, 62, 64, (6,303,0): 101, 62, 63, (6,304,0): 106, 62, 59, (6,305,0): 107, 62, 56, (6,306,0): 109, 64, 58, (6,307,0): 110, 65, 59, (6,308,0): 115, 66, 61, (6,309,0): 117, 68, 61, (6,310,0): 118, 69, 62, (6,311,0): 119, 70, 63, (6,312,0): 119, 72, 62, (6,313,0): 119, 72, 62, (6,314,0): 117, 73, 62, (6,315,0): 115, 73, 59, (6,316,0): 112, 73, 58, (6,317,0): 111, 74, 58, (6,318,0): 109, 74, 55, (6,319,0): 109, 74, 55, (6,320,0): 112, 76, 60, (6,321,0): 112, 76, 60, (6,322,0): 112, 76, 60, (6,323,0): 112, 76, 60, (6,324,0): 113, 77, 61, (6,325,0): 113, 77, 61, (6,326,0): 113, 77, 61, (6,327,0): 113, 77, 61, (6,328,0): 115, 79, 63, (6,329,0): 115, 79, 63, (6,330,0): 115, 79, 63, (6,331,0): 115, 79, 63, (6,332,0): 115, 79, 63, (6,333,0): 115, 79, 63, (6,334,0): 115, 79, 63, (6,335,0): 113, 80, 63, (6,336,0): 115, 82, 63, (6,337,0): 114, 81, 62, (6,338,0): 113, 80, 63, (6,339,0): 112, 79, 62, (6,340,0): 111, 78, 61, (6,341,0): 110, 77, 60, (6,342,0): 109, 76, 61, (6,343,0): 109, 76, 61, (6,344,0): 112, 78, 66, (6,345,0): 111, 77, 65, (6,346,0): 110, 76, 64, (6,347,0): 109, 75, 63, (6,348,0): 108, 74, 64, (6,349,0): 107, 73, 63, (6,350,0): 106, 72, 62, (6,351,0): 106, 72, 62, (6,352,0): 101, 67, 58, (6,353,0): 100, 66, 57, (6,354,0): 99, 65, 56, (6,355,0): 99, 65, 56, (6,356,0): 100, 66, 57, (6,357,0): 101, 67, 58, (6,358,0): 103, 69, 60, (6,359,0): 104, 70, 61, (6,360,0): 107, 73, 64, (6,361,0): 107, 73, 64, (6,362,0): 108, 74, 65, (6,363,0): 109, 75, 66, (6,364,0): 110, 76, 67, (6,365,0): 111, 77, 68, (6,366,0): 112, 78, 69, (6,367,0): 112, 78, 68, (6,368,0): 113, 75, 66, (6,369,0): 111, 75, 63, (6,370,0): 109, 75, 65, (6,371,0): 106, 76, 65, (6,372,0): 107, 77, 66, (6,373,0): 107, 79, 67, (6,374,0): 109, 79, 69, (6,375,0): 112, 79, 70, (6,376,0): 109, 74, 68, (6,377,0): 112, 75, 69, (6,378,0): 114, 73, 69, (6,379,0): 110, 71, 66, (6,380,0): 105, 67, 64, (6,381,0): 100, 67, 62, (6,382,0): 102, 69, 64, (6,383,0): 102, 71, 66, (6,384,0): 104, 71, 66, (6,385,0): 106, 71, 67, (6,386,0): 106, 71, 67, (6,387,0): 107, 72, 68, (6,388,0): 108, 73, 69, (6,389,0): 110, 75, 71, (6,390,0): 111, 76, 72, (6,391,0): 112, 77, 73, (6,392,0): 110, 75, 71, (6,393,0): 108, 73, 69, (6,394,0): 106, 71, 67, (6,395,0): 104, 69, 65, (6,396,0): 101, 66, 62, (6,397,0): 98, 63, 59, (6,398,0): 96, 61, 57, (6,399,0): 94, 60, 58, (6,400,0): 93, 61, 62, (6,401,0): 94, 62, 65, (6,402,0): 95, 63, 66, (6,403,0): 96, 64, 65, (6,404,0): 96, 64, 65, (6,405,0): 95, 63, 64, (6,406,0): 95, 61, 62, (6,407,0): 94, 60, 59, (6,408,0): 94, 58, 58, (6,409,0): 94, 59, 57, (6,410,0): 96, 58, 57, (6,411,0): 96, 58, 57, (6,412,0): 96, 58, 57, (6,413,0): 96, 58, 55, (6,414,0): 96, 58, 55, (6,415,0): 94, 59, 55, (6,416,0): 94, 61, 56, (6,417,0): 88, 57, 52, (6,418,0): 86, 52, 50, (6,419,0): 82, 51, 48, (6,420,0): 84, 50, 48, (6,421,0): 81, 50, 47, (6,422,0): 79, 48, 45, (6,423,0): 76, 45, 42, (6,424,0): 71, 40, 38, (6,425,0): 71, 40, 38, (6,426,0): 70, 40, 38, (6,427,0): 71, 41, 39, (6,428,0): 71, 41, 41, (6,429,0): 72, 42, 42, (6,430,0): 72, 42, 42, (6,431,0): 72, 44, 43, (6,432,0): 73, 49, 47, (6,433,0): 72, 51, 48, (6,434,0): 73, 52, 49, (6,435,0): 75, 54, 51, (6,436,0): 79, 55, 53, (6,437,0): 80, 56, 54, (6,438,0): 82, 57, 53, (6,439,0): 83, 58, 54, (6,440,0): 87, 62, 57, (6,441,0): 87, 62, 57, (6,442,0): 89, 62, 55, (6,443,0): 88, 61, 54, (6,444,0): 89, 60, 54, (6,445,0): 89, 60, 54, (6,446,0): 89, 60, 54, (6,447,0): 88, 61, 54, (6,448,0): 92, 65, 58, (6,449,0): 91, 67, 57, (6,450,0): 92, 67, 60, (6,451,0): 93, 69, 59, (6,452,0): 93, 68, 61, (6,453,0): 93, 69, 59, (6,454,0): 92, 67, 60, (6,455,0): 91, 67, 57, (6,456,0): 85, 60, 53, (6,457,0): 85, 61, 51, (6,458,0): 84, 59, 52, (6,459,0): 84, 60, 50, (6,460,0): 83, 58, 51, (6,461,0): 83, 59, 49, (6,462,0): 82, 57, 50, (6,463,0): 81, 58, 50, (6,464,0): 83, 62, 57, (6,465,0): 83, 62, 59, (6,466,0): 83, 62, 59, (6,467,0): 84, 63, 60, (6,468,0): 86, 62, 60, (6,469,0): 87, 63, 61, (6,470,0): 87, 63, 59, (6,471,0): 88, 64, 60, (6,472,0): 89, 64, 59, (6,473,0): 88, 63, 58, (6,474,0): 90, 63, 56, (6,475,0): 90, 63, 56, (6,476,0): 92, 65, 58, (6,477,0): 94, 67, 60, (6,478,0): 97, 68, 62, (6,479,0): 98, 71, 62, (6,480,0): 97, 74, 60, (6,481,0): 98, 75, 59, (6,482,0): 99, 76, 60, (6,483,0): 100, 77, 61, (6,484,0): 101, 78, 62, (6,485,0): 101, 78, 62, (6,486,0): 100, 77, 61, (6,487,0): 99, 76, 60, (6,488,0): 100, 77, 61, (6,489,0): 101, 78, 62, (6,490,0): 102, 79, 63, (6,491,0): 103, 80, 64, (6,492,0): 103, 80, 64, (6,493,0): 102, 79, 63, (6,494,0): 101, 78, 62, (6,495,0): 100, 77, 63, (6,496,0): 101, 74, 63, (6,497,0): 102, 74, 63, (6,498,0): 103, 74, 66, (6,499,0): 103, 74, 66, (6,500,0): 102, 73, 65, (6,501,0): 101, 72, 66, (6,502,0): 99, 70, 64, (6,503,0): 98, 69, 65, (6,504,0): 96, 66, 64, (6,505,0): 94, 64, 62, (6,506,0): 92, 62, 62, (6,507,0): 89, 59, 59, (6,508,0): 87, 57, 57, (6,509,0): 87, 57, 57, (6,510,0): 86, 56, 58, (6,511,0): 85, 56, 58, (6,512,0): 82, 56, 59, (6,513,0): 83, 57, 60, (6,514,0): 83, 57, 60, (6,515,0): 84, 58, 61, (6,516,0): 85, 59, 62, (6,517,0): 85, 59, 62, (6,518,0): 86, 60, 63, (6,519,0): 86, 60, 63, (6,520,0): 82, 56, 59, (6,521,0): 82, 56, 59, (6,522,0): 82, 56, 59, (6,523,0): 82, 56, 59, (6,524,0): 82, 56, 59, (6,525,0): 82, 56, 59, (6,526,0): 82, 56, 59, (6,527,0): 82, 56, 59, (6,528,0): 82, 56, 59, (6,529,0): 82, 56, 59, (6,530,0): 82, 56, 59, (6,531,0): 81, 55, 58, (6,532,0): 83, 54, 58, (6,533,0): 83, 54, 58, (6,534,0): 84, 53, 58, (6,535,0): 84, 53, 58, (6,536,0): 78, 47, 52, (6,537,0): 78, 47, 52, (6,538,0): 79, 47, 52, (6,539,0): 79, 47, 52, (6,540,0): 81, 46, 52, (6,541,0): 81, 46, 52, (6,542,0): 81, 46, 52, (6,543,0): 81, 44, 51, (6,544,0): 85, 44, 50, (6,545,0): 87, 44, 51, (6,546,0): 89, 46, 53, (6,547,0): 91, 48, 55, (6,548,0): 92, 49, 56, (6,549,0): 92, 49, 56, (6,550,0): 92, 50, 54, (6,551,0): 91, 50, 54, (6,552,0): 93, 52, 56, (6,553,0): 93, 52, 56, (6,554,0): 92, 52, 53, (6,555,0): 91, 51, 52, (6,556,0): 90, 50, 51, (6,557,0): 88, 49, 50, (6,558,0): 88, 48, 49, (6,559,0): 84, 48, 50, (6,560,0): 79, 48, 53, (6,561,0): 77, 48, 53, (6,562,0): 77, 48, 53, (6,563,0): 76, 47, 52, (6,564,0): 75, 46, 51, (6,565,0): 75, 46, 50, (6,566,0): 74, 45, 49, (6,567,0): 74, 45, 49, (6,568,0): 72, 41, 46, (6,569,0): 72, 41, 46, (6,570,0): 73, 42, 47, (6,571,0): 73, 42, 47, (6,572,0): 73, 42, 47, (6,573,0): 73, 42, 47, (6,574,0): 72, 42, 44, (6,575,0): 72, 42, 44, (6,576,0): 75, 43, 48, (6,577,0): 73, 42, 48, (6,578,0): 73, 40, 47, (6,579,0): 71, 40, 46, (6,580,0): 73, 40, 47, (6,581,0): 73, 42, 48, (6,582,0): 76, 43, 50, (6,583,0): 76, 45, 51, (6,584,0): 76, 43, 50, (6,585,0): 76, 45, 51, (6,586,0): 77, 44, 51, (6,587,0): 77, 46, 52, (6,588,0): 79, 46, 53, (6,589,0): 79, 48, 54, (6,590,0): 81, 48, 55, (6,591,0): 80, 49, 54, (6,592,0): 79, 50, 52, (6,593,0): 77, 51, 50, (6,594,0): 77, 53, 51, (6,595,0): 75, 54, 51, (6,596,0): 74, 53, 50, (6,597,0): 71, 52, 48, (6,598,0): 68, 50, 46, (6,599,0): 67, 49, 45, (7,0,0): 34, 23, 40, (7,1,0): 34, 23, 40, (7,2,0): 36, 23, 40, (7,3,0): 37, 24, 41, (7,4,0): 38, 25, 42, (7,5,0): 39, 26, 43, (7,6,0): 41, 27, 42, (7,7,0): 41, 27, 42, (7,8,0): 46, 30, 43, (7,9,0): 47, 31, 44, (7,10,0): 48, 32, 45, (7,11,0): 48, 32, 45, (7,12,0): 48, 30, 42, (7,13,0): 47, 29, 41, (7,14,0): 46, 28, 40, (7,15,0): 45, 27, 39, (7,16,0): 45, 27, 43, (7,17,0): 45, 27, 43, (7,18,0): 45, 27, 43, (7,19,0): 46, 28, 44, (7,20,0): 46, 28, 44, (7,21,0): 47, 29, 45, (7,22,0): 47, 29, 45, (7,23,0): 47, 29, 45, (7,24,0): 49, 31, 47, (7,25,0): 49, 31, 47, (7,26,0): 50, 32, 48, (7,27,0): 50, 32, 48, (7,28,0): 51, 33, 49, (7,29,0): 51, 33, 49, (7,30,0): 52, 34, 50, (7,31,0): 54, 33, 50, (7,32,0): 58, 33, 52, (7,33,0): 60, 33, 52, (7,34,0): 60, 33, 52, (7,35,0): 59, 32, 49, (7,36,0): 59, 32, 49, (7,37,0): 59, 32, 49, (7,38,0): 60, 31, 49, (7,39,0): 59, 31, 46, (7,40,0): 61, 30, 46, (7,41,0): 63, 32, 47, (7,42,0): 65, 33, 48, (7,43,0): 67, 35, 50, (7,44,0): 68, 36, 51, (7,45,0): 69, 37, 50, (7,46,0): 68, 36, 49, (7,47,0): 67, 37, 49, (7,48,0): 64, 36, 48, (7,49,0): 62, 36, 47, (7,50,0): 58, 34, 47, (7,51,0): 57, 33, 46, (7,52,0): 56, 32, 45, (7,53,0): 55, 31, 44, (7,54,0): 55, 33, 46, (7,55,0): 55, 33, 46, (7,56,0): 51, 30, 45, (7,57,0): 51, 30, 45, (7,58,0): 51, 30, 45, (7,59,0): 51, 30, 45, (7,60,0): 49, 31, 47, (7,61,0): 49, 31, 47, (7,62,0): 49, 31, 47, (7,63,0): 49, 31, 47, (7,64,0): 45, 28, 44, (7,65,0): 45, 28, 44, (7,66,0): 45, 28, 44, (7,67,0): 45, 28, 44, (7,68,0): 45, 28, 44, (7,69,0): 45, 28, 44, (7,70,0): 45, 28, 44, (7,71,0): 45, 28, 44, (7,72,0): 42, 25, 41, (7,73,0): 43, 26, 42, (7,74,0): 44, 27, 43, (7,75,0): 45, 28, 44, (7,76,0): 45, 28, 44, (7,77,0): 44, 27, 43, (7,78,0): 43, 26, 42, (7,79,0): 42, 25, 41, (7,80,0): 42, 25, 44, (7,81,0): 41, 24, 43, (7,82,0): 38, 23, 42, (7,83,0): 37, 22, 41, (7,84,0): 35, 20, 39, (7,85,0): 33, 18, 37, (7,86,0): 31, 18, 36, (7,87,0): 31, 18, 36, (7,88,0): 28, 17, 34, (7,89,0): 28, 17, 34, (7,90,0): 27, 16, 33, (7,91,0): 27, 16, 33, (7,92,0): 26, 17, 34, (7,93,0): 28, 19, 36, (7,94,0): 29, 20, 37, (7,95,0): 30, 21, 38, (7,96,0): 30, 19, 35, (7,97,0): 30, 19, 35, (7,98,0): 28, 19, 36, (7,99,0): 27, 18, 35, (7,100,0): 27, 18, 35, (7,101,0): 26, 17, 34, (7,102,0): 25, 18, 36, (7,103,0): 24, 17, 35, (7,104,0): 21, 16, 36, (7,105,0): 20, 15, 35, (7,106,0): 19, 14, 34, (7,107,0): 18, 13, 33, (7,108,0): 17, 14, 35, (7,109,0): 18, 15, 36, (7,110,0): 19, 16, 37, (7,111,0): 20, 17, 38, (7,112,0): 22, 14, 37, (7,113,0): 22, 14, 37, (7,114,0): 22, 14, 37, (7,115,0): 22, 14, 37, (7,116,0): 22, 14, 37, (7,117,0): 22, 14, 37, (7,118,0): 22, 14, 37, (7,119,0): 22, 14, 37, (7,120,0): 23, 15, 38, (7,121,0): 24, 16, 39, (7,122,0): 25, 17, 40, (7,123,0): 26, 18, 41, (7,124,0): 26, 18, 41, (7,125,0): 25, 17, 40, (7,126,0): 24, 16, 39, (7,127,0): 21, 16, 38, (7,128,0): 25, 20, 40, (7,129,0): 24, 21, 40, (7,130,0): 24, 21, 40, (7,131,0): 23, 20, 39, (7,132,0): 23, 20, 39, (7,133,0): 23, 20, 39, (7,134,0): 22, 19, 38, (7,135,0): 22, 19, 38, (7,136,0): 17, 14, 33, (7,137,0): 17, 14, 33, (7,138,0): 17, 14, 33, (7,139,0): 17, 14, 33, (7,140,0): 17, 14, 33, (7,141,0): 17, 14, 33, (7,142,0): 17, 14, 33, (7,143,0): 17, 14, 33, (7,144,0): 20, 17, 38, (7,145,0): 20, 17, 38, (7,146,0): 21, 18, 39, (7,147,0): 22, 19, 40, (7,148,0): 25, 20, 42, (7,149,0): 26, 21, 43, (7,150,0): 27, 22, 44, (7,151,0): 28, 23, 45, (7,152,0): 29, 21, 44, (7,153,0): 29, 21, 44, (7,154,0): 30, 20, 44, (7,155,0): 30, 20, 44, (7,156,0): 30, 20, 44, (7,157,0): 30, 20, 44, (7,158,0): 32, 20, 44, (7,159,0): 30, 20, 44, (7,160,0): 29, 19, 43, (7,161,0): 28, 20, 43, (7,162,0): 28, 20, 43, (7,163,0): 29, 21, 44, (7,164,0): 29, 21, 44, (7,165,0): 30, 22, 45, (7,166,0): 30, 22, 45, (7,167,0): 30, 22, 45, (7,168,0): 29, 21, 44, (7,169,0): 30, 22, 45, (7,170,0): 31, 23, 46, (7,171,0): 32, 24, 47, (7,172,0): 32, 24, 47, (7,173,0): 31, 23, 46, (7,174,0): 30, 22, 45, (7,175,0): 29, 21, 44, (7,176,0): 31, 23, 46, (7,177,0): 31, 23, 46, (7,178,0): 31, 23, 46, (7,179,0): 31, 23, 46, (7,180,0): 31, 23, 46, (7,181,0): 31, 23, 46, (7,182,0): 31, 23, 46, (7,183,0): 31, 23, 46, (7,184,0): 30, 22, 45, (7,185,0): 30, 22, 45, (7,186,0): 30, 22, 45, (7,187,0): 30, 22, 45, (7,188,0): 30, 22, 45, (7,189,0): 30, 22, 45, (7,190,0): 30, 22, 45, (7,191,0): 30, 22, 43, (7,192,0): 31, 22, 43, (7,193,0): 31, 22, 41, (7,194,0): 32, 23, 42, (7,195,0): 34, 25, 44, (7,196,0): 35, 26, 45, (7,197,0): 37, 28, 47, (7,198,0): 38, 29, 48, (7,199,0): 38, 29, 48, (7,200,0): 36, 27, 46, (7,201,0): 36, 27, 46, (7,202,0): 36, 27, 46, (7,203,0): 36, 27, 46, (7,204,0): 36, 27, 46, (7,205,0): 36, 27, 46, (7,206,0): 36, 27, 46, (7,207,0): 36, 27, 46, (7,208,0): 36, 27, 46, (7,209,0): 36, 27, 46, (7,210,0): 36, 27, 46, (7,211,0): 36, 27, 46, (7,212,0): 36, 27, 46, (7,213,0): 36, 27, 46, (7,214,0): 36, 27, 46, (7,215,0): 36, 27, 46, (7,216,0): 37, 28, 47, (7,217,0): 37, 28, 47, (7,218,0): 37, 28, 47, (7,219,0): 36, 27, 46, (7,220,0): 36, 27, 46, (7,221,0): 36, 27, 46, (7,222,0): 35, 26, 45, (7,223,0): 35, 26, 45, (7,224,0): 33, 24, 41, (7,225,0): 33, 25, 40, (7,226,0): 34, 26, 41, (7,227,0): 36, 28, 43, (7,228,0): 39, 28, 44, (7,229,0): 40, 29, 45, (7,230,0): 41, 30, 46, (7,231,0): 42, 31, 47, (7,232,0): 43, 30, 47, (7,233,0): 43, 30, 47, (7,234,0): 45, 31, 48, (7,235,0): 45, 31, 48, (7,236,0): 46, 32, 49, (7,237,0): 47, 33, 50, (7,238,0): 50, 33, 51, (7,239,0): 48, 34, 51, (7,240,0): 42, 27, 46, (7,241,0): 41, 28, 46, (7,242,0): 42, 29, 47, (7,243,0): 42, 29, 47, (7,244,0): 41, 28, 46, (7,245,0): 38, 25, 43, (7,246,0): 35, 22, 40, (7,247,0): 33, 20, 38, (7,248,0): 35, 22, 40, (7,249,0): 36, 23, 41, (7,250,0): 36, 23, 41, (7,251,0): 37, 24, 42, (7,252,0): 38, 25, 43, (7,253,0): 39, 26, 44, (7,254,0): 39, 26, 44, (7,255,0): 40, 27, 45, (7,256,0): 41, 30, 47, (7,257,0): 41, 30, 47, (7,258,0): 42, 29, 47, (7,259,0): 43, 30, 48, (7,260,0): 43, 30, 47, (7,261,0): 44, 31, 48, (7,262,0): 45, 31, 48, (7,263,0): 45, 31, 46, (7,264,0): 45, 28, 44, (7,265,0): 45, 29, 42, (7,266,0): 45, 29, 42, (7,267,0): 46, 30, 43, (7,268,0): 48, 30, 44, (7,269,0): 48, 30, 44, (7,270,0): 48, 30, 42, (7,271,0): 49, 31, 43, (7,272,0): 59, 39, 50, (7,273,0): 59, 39, 50, (7,274,0): 60, 40, 51, (7,275,0): 61, 41, 52, (7,276,0): 63, 42, 51, (7,277,0): 63, 42, 51, (7,278,0): 65, 42, 52, (7,279,0): 65, 42, 50, (7,280,0): 69, 46, 54, (7,281,0): 70, 47, 55, (7,282,0): 72, 47, 53, (7,283,0): 73, 48, 54, (7,284,0): 74, 47, 54, (7,285,0): 75, 48, 55, (7,286,0): 75, 48, 53, (7,287,0): 75, 48, 53, (7,288,0): 78, 48, 56, (7,289,0): 78, 48, 56, (7,290,0): 79, 49, 57, (7,291,0): 80, 51, 56, (7,292,0): 82, 51, 57, (7,293,0): 83, 52, 58, (7,294,0): 84, 53, 59, (7,295,0): 84, 53, 58, (7,296,0): 86, 54, 59, (7,297,0): 86, 54, 57, (7,298,0): 88, 53, 57, (7,299,0): 89, 54, 58, (7,300,0): 92, 57, 61, (7,301,0): 94, 60, 61, (7,302,0): 98, 62, 64, (7,303,0): 102, 64, 63, (7,304,0): 106, 63, 57, (7,305,0): 108, 63, 57, (7,306,0): 109, 64, 58, (7,307,0): 111, 66, 60, (7,308,0): 116, 67, 60, (7,309,0): 118, 69, 62, (7,310,0): 119, 70, 63, (7,311,0): 120, 72, 62, (7,312,0): 119, 72, 62, (7,313,0): 119, 72, 62, (7,314,0): 116, 72, 59, (7,315,0): 115, 73, 59, (7,316,0): 112, 73, 58, (7,317,0): 110, 73, 57, (7,318,0): 108, 73, 54, (7,319,0): 108, 73, 54, (7,320,0): 111, 75, 59, (7,321,0): 111, 75, 59, (7,322,0): 112, 76, 60, (7,323,0): 112, 76, 60, (7,324,0): 113, 77, 61, (7,325,0): 114, 78, 62, (7,326,0): 115, 79, 63, (7,327,0): 115, 79, 63, (7,328,0): 116, 80, 64, (7,329,0): 116, 80, 64, (7,330,0): 116, 80, 64, (7,331,0): 116, 80, 64, (7,332,0): 116, 80, 64, (7,333,0): 116, 80, 64, (7,334,0): 116, 80, 64, (7,335,0): 116, 80, 64, (7,336,0): 115, 82, 63, (7,337,0): 115, 82, 63, (7,338,0): 114, 81, 64, (7,339,0): 113, 80, 63, (7,340,0): 112, 79, 62, (7,341,0): 111, 78, 61, (7,342,0): 110, 77, 62, (7,343,0): 110, 77, 62, (7,344,0): 112, 78, 66, (7,345,0): 112, 78, 66, (7,346,0): 111, 77, 65, (7,347,0): 110, 76, 64, (7,348,0): 109, 75, 65, (7,349,0): 108, 74, 64, (7,350,0): 107, 73, 63, (7,351,0): 107, 73, 63, (7,352,0): 101, 67, 58, (7,353,0): 100, 66, 57, (7,354,0): 99, 65, 56, (7,355,0): 99, 65, 56, (7,356,0): 100, 66, 57, (7,357,0): 101, 67, 58, (7,358,0): 102, 68, 59, (7,359,0): 103, 69, 60, (7,360,0): 107, 73, 64, (7,361,0): 107, 73, 64, (7,362,0): 108, 74, 65, (7,363,0): 109, 75, 66, (7,364,0): 110, 76, 67, (7,365,0): 111, 77, 68, (7,366,0): 112, 78, 69, (7,367,0): 112, 78, 68, (7,368,0): 113, 75, 66, (7,369,0): 111, 75, 63, (7,370,0): 108, 74, 64, (7,371,0): 104, 74, 63, (7,372,0): 105, 75, 64, (7,373,0): 106, 78, 66, (7,374,0): 109, 79, 69, (7,375,0): 113, 80, 71, (7,376,0): 108, 73, 67, (7,377,0): 113, 76, 70, (7,378,0): 117, 76, 72, (7,379,0): 115, 76, 71, (7,380,0): 110, 72, 69, (7,381,0): 104, 71, 66, (7,382,0): 103, 70, 65, (7,383,0): 102, 71, 66, (7,384,0): 106, 71, 67, (7,385,0): 106, 71, 67, (7,386,0): 107, 72, 68, (7,387,0): 108, 73, 69, (7,388,0): 109, 74, 70, (7,389,0): 111, 76, 72, (7,390,0): 112, 77, 73, (7,391,0): 113, 78, 74, (7,392,0): 109, 74, 70, (7,393,0): 108, 73, 69, (7,394,0): 107, 72, 68, (7,395,0): 104, 69, 65, (7,396,0): 102, 67, 63, (7,397,0): 100, 65, 61, (7,398,0): 98, 63, 59, (7,399,0): 96, 62, 60, (7,400,0): 95, 61, 62, (7,401,0): 94, 62, 65, (7,402,0): 96, 64, 65, (7,403,0): 97, 65, 66, (7,404,0): 98, 66, 67, (7,405,0): 97, 65, 66, (7,406,0): 97, 63, 62, (7,407,0): 96, 62, 61, (7,408,0): 94, 59, 57, (7,409,0): 94, 59, 57, (7,410,0): 97, 59, 58, (7,411,0): 97, 59, 58, (7,412,0): 98, 60, 57, (7,413,0): 98, 60, 57, (7,414,0): 99, 61, 58, (7,415,0): 99, 61, 58, (7,416,0): 97, 62, 58, (7,417,0): 92, 59, 54, (7,418,0): 89, 54, 50, (7,419,0): 86, 53, 48, (7,420,0): 85, 51, 49, (7,421,0): 85, 51, 49, (7,422,0): 82, 48, 46, (7,423,0): 78, 47, 44, (7,424,0): 71, 40, 38, (7,425,0): 71, 40, 38, (7,426,0): 70, 40, 38, (7,427,0): 70, 40, 38, (7,428,0): 70, 40, 40, (7,429,0): 70, 40, 40, (7,430,0): 70, 40, 40, (7,431,0): 69, 41, 40, (7,432,0): 71, 47, 45, (7,433,0): 70, 49, 46, (7,434,0): 72, 51, 48, (7,435,0): 73, 52, 49, (7,436,0): 77, 53, 51, (7,437,0): 79, 55, 53, (7,438,0): 82, 57, 53, (7,439,0): 82, 57, 53, (7,440,0): 87, 62, 57, (7,441,0): 87, 62, 57, (7,442,0): 89, 62, 55, (7,443,0): 88, 61, 54, (7,444,0): 89, 60, 54, (7,445,0): 89, 60, 54, (7,446,0): 88, 59, 53, (7,447,0): 87, 60, 53, (7,448,0): 92, 65, 56, (7,449,0): 91, 67, 57, (7,450,0): 92, 68, 58, (7,451,0): 93, 69, 59, (7,452,0): 93, 69, 59, (7,453,0): 93, 69, 59, (7,454,0): 92, 68, 58, (7,455,0): 91, 67, 57, (7,456,0): 85, 61, 51, (7,457,0): 84, 60, 50, (7,458,0): 84, 60, 50, (7,459,0): 83, 59, 49, (7,460,0): 83, 59, 49, (7,461,0): 82, 58, 48, (7,462,0): 82, 58, 48, (7,463,0): 81, 58, 50, (7,464,0): 85, 61, 57, (7,465,0): 83, 62, 59, (7,466,0): 84, 63, 60, (7,467,0): 84, 63, 60, (7,468,0): 87, 63, 61, (7,469,0): 87, 63, 61, (7,470,0): 88, 64, 60, (7,471,0): 88, 64, 60, (7,472,0): 88, 63, 58, (7,473,0): 87, 62, 57, (7,474,0): 89, 62, 55, (7,475,0): 89, 62, 55, (7,476,0): 90, 63, 56, (7,477,0): 92, 65, 58, (7,478,0): 96, 67, 61, (7,479,0): 97, 70, 61, (7,480,0): 98, 72, 59, (7,481,0): 97, 74, 58, (7,482,0): 98, 75, 59, (7,483,0): 99, 76, 60, (7,484,0): 100, 77, 61, (7,485,0): 100, 77, 61, (7,486,0): 99, 76, 60, (7,487,0): 98, 75, 59, (7,488,0): 100, 77, 61, (7,489,0): 101, 78, 62, (7,490,0): 102, 79, 63, (7,491,0): 102, 79, 63, (7,492,0): 102, 79, 63, (7,493,0): 102, 79, 63, (7,494,0): 101, 78, 62, (7,495,0): 100, 77, 63, (7,496,0): 101, 72, 64, (7,497,0): 101, 72, 64, (7,498,0): 102, 73, 67, (7,499,0): 103, 74, 68, (7,500,0): 102, 73, 67, (7,501,0): 101, 72, 66, (7,502,0): 100, 71, 67, (7,503,0): 99, 70, 66, (7,504,0): 95, 65, 63, (7,505,0): 94, 64, 62, (7,506,0): 91, 61, 61, (7,507,0): 89, 59, 59, (7,508,0): 87, 57, 57, (7,509,0): 86, 56, 56, (7,510,0): 86, 56, 58, (7,511,0): 85, 56, 58, (7,512,0): 84, 55, 59, (7,513,0): 83, 57, 60, (7,514,0): 83, 57, 60, (7,515,0): 84, 58, 61, (7,516,0): 85, 59, 62, (7,517,0): 86, 60, 63, (7,518,0): 86, 60, 63, (7,519,0): 87, 61, 64, (7,520,0): 82, 56, 59, (7,521,0): 82, 56, 59, (7,522,0): 82, 56, 59, (7,523,0): 82, 56, 59, (7,524,0): 82, 56, 59, (7,525,0): 82, 56, 59, (7,526,0): 82, 56, 59, (7,527,0): 82, 56, 59, (7,528,0): 79, 53, 56, (7,529,0): 79, 53, 56, (7,530,0): 79, 53, 56, (7,531,0): 80, 54, 57, (7,532,0): 82, 53, 57, (7,533,0): 82, 53, 57, (7,534,0): 83, 52, 57, (7,535,0): 83, 52, 57, (7,536,0): 80, 49, 54, (7,537,0): 79, 48, 53, (7,538,0): 80, 48, 53, (7,539,0): 80, 48, 53, (7,540,0): 81, 46, 52, (7,541,0): 81, 46, 52, (7,542,0): 80, 45, 51, (7,543,0): 81, 44, 51, (7,544,0): 84, 43, 51, (7,545,0): 85, 44, 50, (7,546,0): 88, 45, 52, (7,547,0): 89, 48, 54, (7,548,0): 92, 49, 56, (7,549,0): 91, 50, 56, (7,550,0): 92, 49, 56, (7,551,0): 91, 50, 54, (7,552,0): 94, 53, 57, (7,553,0): 93, 52, 56, (7,554,0): 93, 53, 54, (7,555,0): 92, 52, 53, (7,556,0): 91, 51, 52, (7,557,0): 89, 49, 50, (7,558,0): 89, 49, 50, (7,559,0): 87, 48, 51, (7,560,0): 83, 51, 56, (7,561,0): 81, 52, 56, (7,562,0): 80, 51, 56, (7,563,0): 79, 50, 54, (7,564,0): 78, 49, 53, (7,565,0): 78, 49, 53, (7,566,0): 77, 48, 52, (7,567,0): 77, 48, 52, (7,568,0): 74, 43, 48, (7,569,0): 75, 44, 49, (7,570,0): 74, 43, 48, (7,571,0): 74, 43, 48, (7,572,0): 73, 42, 47, (7,573,0): 72, 41, 46, (7,574,0): 70, 40, 42, (7,575,0): 69, 38, 43, (7,576,0): 73, 42, 47, (7,577,0): 72, 41, 46, (7,578,0): 70, 39, 45, (7,579,0): 69, 38, 43, (7,580,0): 70, 39, 45, (7,581,0): 71, 40, 45, (7,582,0): 73, 42, 48, (7,583,0): 74, 43, 48, (7,584,0): 73, 42, 48, (7,585,0): 73, 42, 47, (7,586,0): 74, 43, 49, (7,587,0): 75, 44, 49, (7,588,0): 76, 45, 51, (7,589,0): 77, 46, 51, (7,590,0): 78, 47, 53, (7,591,0): 78, 49, 53, (7,592,0): 75, 49, 50, (7,593,0): 75, 49, 48, (7,594,0): 75, 51, 49, (7,595,0): 73, 52, 49, (7,596,0): 72, 51, 48, (7,597,0): 69, 50, 46, (7,598,0): 67, 49, 45, (7,599,0): 66, 48, 44, (8,0,0): 36, 23, 41, (8,1,0): 36, 23, 41, (8,2,0): 37, 24, 41, (8,3,0): 37, 24, 41, (8,4,0): 39, 25, 42, (8,5,0): 39, 25, 42, (8,6,0): 40, 26, 41, (8,7,0): 40, 26, 41, (8,8,0): 46, 30, 43, (8,9,0): 46, 30, 43, (8,10,0): 48, 30, 44, (8,11,0): 48, 30, 44, (8,12,0): 47, 29, 41, (8,13,0): 45, 27, 39, (8,14,0): 46, 26, 38, (8,15,0): 45, 25, 37, (8,16,0): 40, 22, 38, (8,17,0): 42, 24, 40, (8,18,0): 44, 26, 42, (8,19,0): 46, 28, 44, (8,20,0): 47, 29, 45, (8,21,0): 47, 29, 45, (8,22,0): 46, 28, 44, (8,23,0): 45, 27, 43, (8,24,0): 45, 27, 43, (8,25,0): 46, 28, 44, (8,26,0): 47, 29, 45, (8,27,0): 48, 30, 46, (8,28,0): 50, 32, 48, (8,29,0): 51, 33, 49, (8,30,0): 52, 34, 50, (8,31,0): 54, 33, 50, (8,32,0): 55, 30, 51, (8,33,0): 57, 30, 49, (8,34,0): 57, 30, 49, (8,35,0): 58, 31, 50, (8,36,0): 58, 31, 50, (8,37,0): 59, 32, 49, (8,38,0): 60, 31, 49, (8,39,0): 60, 32, 47, (8,40,0): 65, 34, 50, (8,41,0): 66, 35, 51, (8,42,0): 68, 35, 52, (8,43,0): 69, 37, 52, (8,44,0): 69, 37, 52, (8,45,0): 69, 37, 52, (8,46,0): 68, 36, 51, (8,47,0): 66, 35, 50, (8,48,0): 60, 32, 44, (8,49,0): 59, 33, 44, (8,50,0): 58, 34, 47, (8,51,0): 59, 35, 48, (8,52,0): 59, 35, 48, (8,53,0): 57, 33, 46, (8,54,0): 55, 33, 46, (8,55,0): 54, 32, 45, (8,56,0): 52, 31, 46, (8,57,0): 52, 31, 46, (8,58,0): 52, 31, 46, (8,59,0): 51, 30, 45, (8,60,0): 49, 31, 47, (8,61,0): 48, 30, 46, (8,62,0): 48, 30, 46, (8,63,0): 48, 30, 46, (8,64,0): 48, 31, 47, (8,65,0): 47, 30, 46, (8,66,0): 47, 30, 46, (8,67,0): 46, 29, 45, (8,68,0): 44, 27, 43, (8,69,0): 43, 26, 42, (8,70,0): 43, 26, 42, (8,71,0): 42, 25, 41, (8,72,0): 43, 26, 42, (8,73,0): 43, 26, 42, (8,74,0): 43, 26, 42, (8,75,0): 43, 26, 42, (8,76,0): 43, 26, 42, (8,77,0): 43, 26, 42, (8,78,0): 43, 26, 42, (8,79,0): 43, 26, 42, (8,80,0): 42, 25, 44, (8,81,0): 41, 24, 43, (8,82,0): 38, 23, 42, (8,83,0): 37, 22, 41, (8,84,0): 36, 21, 40, (8,85,0): 35, 20, 39, (8,86,0): 33, 20, 38, (8,87,0): 33, 20, 38, (8,88,0): 29, 18, 35, (8,89,0): 28, 17, 34, (8,90,0): 27, 16, 33, (8,91,0): 27, 16, 33, (8,92,0): 26, 17, 34, (8,93,0): 28, 19, 36, (8,94,0): 30, 21, 38, (8,95,0): 31, 22, 39, (8,96,0): 30, 19, 35, (8,97,0): 30, 19, 35, (8,98,0): 28, 19, 36, (8,99,0): 27, 18, 35, (8,100,0): 27, 18, 35, (8,101,0): 26, 17, 34, (8,102,0): 25, 18, 36, (8,103,0): 24, 17, 35, (8,104,0): 18, 13, 33, (8,105,0): 18, 13, 33, (8,106,0): 18, 13, 33, (8,107,0): 18, 13, 33, (8,108,0): 17, 14, 35, (8,109,0): 17, 14, 35, (8,110,0): 17, 14, 35, (8,111,0): 17, 14, 35, (8,112,0): 24, 16, 39, (8,113,0): 24, 16, 39, (8,114,0): 22, 14, 37, (8,115,0): 22, 14, 37, (8,116,0): 22, 14, 37, (8,117,0): 22, 14, 37, (8,118,0): 24, 16, 39, (8,119,0): 24, 16, 39, (8,120,0): 29, 21, 44, (8,121,0): 28, 20, 43, (8,122,0): 28, 20, 43, (8,123,0): 27, 19, 42, (8,124,0): 27, 19, 42, (8,125,0): 26, 18, 41, (8,126,0): 26, 18, 41, (8,127,0): 24, 19, 41, (8,128,0): 19, 14, 36, (8,129,0): 21, 18, 39, (8,130,0): 24, 21, 42, (8,131,0): 24, 21, 42, (8,132,0): 21, 18, 39, (8,133,0): 20, 17, 38, (8,134,0): 20, 17, 38, (8,135,0): 22, 19, 40, (8,136,0): 17, 14, 35, (8,137,0): 17, 14, 35, (8,138,0): 18, 15, 36, (8,139,0): 18, 15, 36, (8,140,0): 19, 16, 37, (8,141,0): 19, 16, 37, (8,142,0): 20, 17, 38, (8,143,0): 20, 17, 38, (8,144,0): 18, 15, 36, (8,145,0): 19, 16, 37, (8,146,0): 20, 17, 38, (8,147,0): 21, 18, 39, (8,148,0): 23, 18, 40, (8,149,0): 25, 20, 42, (8,150,0): 26, 21, 43, (8,151,0): 26, 21, 43, (8,152,0): 30, 22, 45, (8,153,0): 30, 22, 45, (8,154,0): 29, 19, 43, (8,155,0): 29, 19, 43, (8,156,0): 29, 19, 43, (8,157,0): 29, 19, 43, (8,158,0): 33, 21, 45, (8,159,0): 31, 21, 45, (8,160,0): 31, 21, 45, (8,161,0): 30, 22, 45, (8,162,0): 28, 20, 43, (8,163,0): 28, 20, 43, (8,164,0): 28, 20, 43, (8,165,0): 28, 20, 43, (8,166,0): 30, 22, 45, (8,167,0): 30, 22, 45, (8,168,0): 32, 24, 47, (8,169,0): 32, 24, 47, (8,170,0): 32, 24, 47, (8,171,0): 32, 24, 47, (8,172,0): 32, 24, 47, (8,173,0): 32, 24, 47, (8,174,0): 32, 24, 47, (8,175,0): 32, 24, 47, (8,176,0): 31, 23, 46, (8,177,0): 31, 23, 46, (8,178,0): 31, 23, 46, (8,179,0): 31, 23, 46, (8,180,0): 31, 23, 46, (8,181,0): 31, 23, 46, (8,182,0): 31, 23, 46, (8,183,0): 31, 23, 46, (8,184,0): 31, 23, 46, (8,185,0): 31, 23, 46, (8,186,0): 31, 23, 46, (8,187,0): 31, 23, 46, (8,188,0): 31, 23, 46, (8,189,0): 31, 23, 46, (8,190,0): 31, 23, 46, (8,191,0): 31, 23, 44, (8,192,0): 32, 23, 44, (8,193,0): 32, 23, 42, (8,194,0): 32, 23, 42, (8,195,0): 33, 24, 43, (8,196,0): 33, 24, 43, (8,197,0): 34, 25, 44, (8,198,0): 34, 25, 44, (8,199,0): 34, 25, 44, (8,200,0): 36, 27, 46, (8,201,0): 36, 27, 46, (8,202,0): 36, 27, 46, (8,203,0): 36, 27, 46, (8,204,0): 36, 27, 46, (8,205,0): 36, 27, 46, (8,206,0): 36, 27, 46, (8,207,0): 36, 27, 46, (8,208,0): 38, 29, 48, (8,209,0): 38, 29, 48, (8,210,0): 38, 29, 48, (8,211,0): 38, 29, 48, (8,212,0): 37, 28, 47, (8,213,0): 35, 26, 45, (8,214,0): 33, 24, 43, (8,215,0): 31, 22, 41, (8,216,0): 35, 26, 45, (8,217,0): 35, 26, 45, (8,218,0): 35, 26, 45, (8,219,0): 36, 27, 46, (8,220,0): 36, 27, 46, (8,221,0): 37, 28, 47, (8,222,0): 37, 28, 47, (8,223,0): 37, 28, 47, (8,224,0): 33, 24, 41, (8,225,0): 34, 25, 42, (8,226,0): 35, 26, 43, (8,227,0): 36, 27, 44, (8,228,0): 39, 28, 45, (8,229,0): 40, 29, 46, (8,230,0): 41, 30, 47, (8,231,0): 41, 30, 47, (8,232,0): 42, 29, 47, (8,233,0): 43, 30, 48, (8,234,0): 44, 29, 48, (8,235,0): 45, 30, 49, (8,236,0): 47, 32, 51, (8,237,0): 48, 33, 52, (8,238,0): 50, 33, 52, (8,239,0): 49, 34, 53, (8,240,0): 41, 26, 45, (8,241,0): 41, 28, 46, (8,242,0): 42, 29, 47, (8,243,0): 43, 30, 48, (8,244,0): 42, 29, 47, (8,245,0): 41, 28, 46, (8,246,0): 38, 25, 43, (8,247,0): 37, 24, 42, (8,248,0): 39, 26, 44, (8,249,0): 39, 26, 44, (8,250,0): 39, 26, 44, (8,251,0): 39, 26, 44, (8,252,0): 39, 26, 44, (8,253,0): 39, 26, 44, (8,254,0): 39, 26, 44, (8,255,0): 39, 26, 44, (8,256,0): 39, 26, 43, (8,257,0): 40, 27, 44, (8,258,0): 41, 28, 45, (8,259,0): 42, 29, 46, (8,260,0): 44, 30, 47, (8,261,0): 45, 31, 48, (8,262,0): 45, 31, 46, (8,263,0): 46, 32, 47, (8,264,0): 47, 30, 46, (8,265,0): 47, 31, 44, (8,266,0): 47, 29, 43, (8,267,0): 47, 29, 41, (8,268,0): 48, 30, 42, (8,269,0): 50, 32, 44, (8,270,0): 54, 34, 46, (8,271,0): 56, 36, 48, (8,272,0): 62, 40, 52, (8,273,0): 62, 40, 52, (8,274,0): 62, 41, 50, (8,275,0): 62, 41, 50, (8,276,0): 63, 40, 50, (8,277,0): 64, 41, 51, (8,278,0): 65, 42, 50, (8,279,0): 66, 43, 51, (8,280,0): 71, 45, 54, (8,281,0): 71, 46, 52, (8,282,0): 73, 46, 53, (8,283,0): 74, 47, 54, (8,284,0): 74, 47, 52, (8,285,0): 75, 48, 53, (8,286,0): 78, 49, 54, (8,287,0): 78, 49, 54, (8,288,0): 80, 49, 55, (8,289,0): 80, 49, 55, (8,290,0): 81, 50, 56, (8,291,0): 81, 50, 56, (8,292,0): 83, 50, 57, (8,293,0): 83, 51, 56, (8,294,0): 84, 52, 57, (8,295,0): 84, 52, 57, (8,296,0): 85, 50, 56, (8,297,0): 86, 51, 55, (8,298,0): 87, 51, 55, (8,299,0): 89, 53, 55, (8,300,0): 91, 55, 57, (8,301,0): 95, 59, 61, (8,302,0): 99, 60, 63, (8,303,0): 102, 62, 62, (8,304,0): 103, 60, 54, (8,305,0): 106, 61, 55, (8,306,0): 109, 65, 56, (8,307,0): 112, 68, 59, (8,308,0): 118, 69, 62, (8,309,0): 120, 71, 64, (8,310,0): 120, 72, 62, (8,311,0): 121, 73, 63, (8,312,0): 121, 74, 64, (8,313,0): 120, 74, 61, (8,314,0): 117, 73, 60, (8,315,0): 115, 73, 59, (8,316,0): 112, 73, 56, (8,317,0): 111, 74, 56, (8,318,0): 111, 76, 57, (8,319,0): 112, 77, 58, (8,320,0): 113, 76, 58, (8,321,0): 113, 76, 58, (8,322,0): 113, 76, 58, (8,323,0): 114, 77, 59, (8,324,0): 114, 77, 59, (8,325,0): 115, 78, 60, (8,326,0): 115, 78, 60, (8,327,0): 116, 79, 61, (8,328,0): 115, 78, 60, (8,329,0): 116, 79, 61, (8,330,0): 117, 80, 62, (8,331,0): 118, 81, 63, (8,332,0): 119, 82, 64, (8,333,0): 119, 82, 64, (8,334,0): 118, 81, 63, (8,335,0): 116, 81, 62, (8,336,0): 116, 83, 64, (8,337,0): 115, 82, 63, (8,338,0): 115, 82, 63, (8,339,0): 114, 81, 62, (8,340,0): 114, 81, 64, (8,341,0): 113, 80, 63, (8,342,0): 113, 80, 63, (8,343,0): 113, 80, 63, (8,344,0): 114, 81, 66, (8,345,0): 112, 79, 64, (8,346,0): 110, 76, 64, (8,347,0): 108, 74, 62, (8,348,0): 106, 72, 60, (8,349,0): 105, 71, 59, (8,350,0): 105, 71, 61, (8,351,0): 105, 71, 61, (8,352,0): 102, 68, 59, (8,353,0): 101, 67, 58, (8,354,0): 100, 66, 57, (8,355,0): 100, 66, 57, (8,356,0): 100, 66, 57, (8,357,0): 100, 66, 57, (8,358,0): 101, 67, 58, (8,359,0): 102, 68, 59, (8,360,0): 107, 73, 64, (8,361,0): 107, 73, 64, (8,362,0): 108, 74, 65, (8,363,0): 109, 75, 66, (8,364,0): 110, 76, 67, (8,365,0): 111, 77, 68, (8,366,0): 112, 78, 69, (8,367,0): 112, 78, 68, (8,368,0): 117, 79, 70, (8,369,0): 114, 78, 66, (8,370,0): 109, 75, 65, (8,371,0): 105, 75, 64, (8,372,0): 105, 75, 64, (8,373,0): 106, 78, 66, (8,374,0): 110, 80, 70, (8,375,0): 114, 81, 72, (8,376,0): 112, 77, 71, (8,377,0): 114, 77, 71, (8,378,0): 115, 74, 70, (8,379,0): 113, 74, 69, (8,380,0): 111, 73, 70, (8,381,0): 107, 74, 69, (8,382,0): 106, 73, 68, (8,383,0): 104, 73, 68, (8,384,0): 108, 73, 69, (8,385,0): 109, 74, 70, (8,386,0): 110, 75, 71, (8,387,0): 111, 76, 72, (8,388,0): 112, 77, 73, (8,389,0): 113, 78, 74, (8,390,0): 113, 78, 74, (8,391,0): 114, 79, 75, (8,392,0): 114, 79, 75, (8,393,0): 112, 77, 73, (8,394,0): 110, 75, 71, (8,395,0): 106, 71, 67, (8,396,0): 103, 68, 64, (8,397,0): 101, 66, 62, (8,398,0): 99, 64, 60, (8,399,0): 97, 63, 61, (8,400,0): 95, 61, 60, (8,401,0): 94, 62, 63, (8,402,0): 97, 63, 64, (8,403,0): 98, 64, 65, (8,404,0): 99, 65, 64, (8,405,0): 99, 65, 64, (8,406,0): 100, 64, 64, (8,407,0): 100, 64, 64, (8,408,0): 98, 60, 59, (8,409,0): 98, 60, 59, (8,410,0): 98, 60, 57, (8,411,0): 98, 60, 57, (8,412,0): 99, 59, 57, (8,413,0): 99, 59, 57, (8,414,0): 99, 60, 55, (8,415,0): 98, 61, 55, (8,416,0): 96, 59, 53, (8,417,0): 94, 59, 53, (8,418,0): 95, 58, 52, (8,419,0): 91, 56, 50, (8,420,0): 88, 53, 49, (8,421,0): 83, 50, 45, (8,422,0): 79, 45, 43, (8,423,0): 76, 42, 40, (8,424,0): 71, 40, 38, (8,425,0): 71, 40, 38, (8,426,0): 70, 40, 40, (8,427,0): 71, 41, 41, (8,428,0): 71, 42, 44, (8,429,0): 71, 42, 44, (8,430,0): 72, 43, 45, (8,431,0): 70, 44, 45, (8,432,0): 74, 50, 48, (8,433,0): 72, 51, 48, (8,434,0): 72, 51, 48, (8,435,0): 73, 52, 49, (8,436,0): 76, 52, 50, (8,437,0): 77, 53, 51, (8,438,0): 80, 55, 51, (8,439,0): 80, 55, 51, (8,440,0): 87, 62, 57, (8,441,0): 87, 62, 57, (8,442,0): 89, 62, 55, (8,443,0): 89, 62, 55, (8,444,0): 90, 61, 55, (8,445,0): 90, 61, 55, (8,446,0): 90, 61, 55, (8,447,0): 89, 62, 55, (8,448,0): 92, 65, 56, (8,449,0): 91, 67, 57, (8,450,0): 92, 68, 58, (8,451,0): 93, 69, 59, (8,452,0): 93, 69, 59, (8,453,0): 92, 68, 58, (8,454,0): 91, 67, 57, (8,455,0): 90, 66, 56, (8,456,0): 86, 62, 52, (8,457,0): 86, 62, 52, (8,458,0): 85, 61, 51, (8,459,0): 85, 61, 51, (8,460,0): 84, 60, 50, (8,461,0): 84, 60, 50, (8,462,0): 83, 59, 49, (8,463,0): 82, 59, 51, (8,464,0): 84, 60, 56, (8,465,0): 82, 61, 58, (8,466,0): 85, 61, 59, (8,467,0): 85, 61, 59, (8,468,0): 85, 61, 59, (8,469,0): 85, 61, 59, (8,470,0): 87, 62, 58, (8,471,0): 87, 62, 58, (8,472,0): 86, 58, 54, (8,473,0): 87, 59, 55, (8,474,0): 88, 61, 54, (8,475,0): 90, 63, 56, (8,476,0): 93, 64, 58, (8,477,0): 95, 66, 60, (8,478,0): 96, 67, 61, (8,479,0): 96, 69, 60, (8,480,0): 94, 67, 56, (8,481,0): 93, 70, 56, (8,482,0): 95, 72, 58, (8,483,0): 97, 74, 60, (8,484,0): 99, 76, 62, (8,485,0): 101, 78, 64, (8,486,0): 103, 80, 66, (8,487,0): 104, 81, 67, (8,488,0): 104, 81, 67, (8,489,0): 104, 81, 67, (8,490,0): 103, 80, 66, (8,491,0): 102, 79, 65, (8,492,0): 101, 78, 64, (8,493,0): 100, 77, 63, (8,494,0): 99, 76, 62, (8,495,0): 99, 75, 63, (8,496,0): 101, 72, 66, (8,497,0): 102, 73, 67, (8,498,0): 102, 73, 69, (8,499,0): 102, 73, 69, (8,500,0): 101, 72, 68, (8,501,0): 100, 71, 67, (8,502,0): 98, 68, 66, (8,503,0): 97, 67, 65, (8,504,0): 92, 62, 60, (8,505,0): 91, 61, 59, (8,506,0): 90, 60, 60, (8,507,0): 88, 58, 58, (8,508,0): 87, 57, 57, (8,509,0): 87, 57, 57, (8,510,0): 88, 58, 58, (8,511,0): 87, 58, 60, (8,512,0): 84, 55, 59, (8,513,0): 82, 56, 59, (8,514,0): 83, 57, 60, (8,515,0): 84, 58, 61, (8,516,0): 85, 59, 62, (8,517,0): 86, 60, 63, (8,518,0): 87, 61, 64, (8,519,0): 87, 61, 64, (8,520,0): 84, 58, 61, (8,521,0): 84, 58, 61, (8,522,0): 83, 57, 60, (8,523,0): 82, 56, 59, (8,524,0): 81, 55, 58, (8,525,0): 80, 54, 57, (8,526,0): 79, 53, 56, (8,527,0): 79, 53, 56, (8,528,0): 82, 57, 60, (8,529,0): 81, 56, 59, (8,530,0): 82, 56, 59, (8,531,0): 81, 55, 58, (8,532,0): 81, 55, 58, (8,533,0): 80, 54, 57, (8,534,0): 82, 53, 57, (8,535,0): 82, 53, 57, (8,536,0): 76, 45, 50, (8,537,0): 77, 46, 51, (8,538,0): 78, 47, 52, (8,539,0): 78, 47, 52, (8,540,0): 79, 47, 52, (8,541,0): 79, 47, 52, (8,542,0): 78, 46, 51, (8,543,0): 79, 44, 50, (8,544,0): 81, 41, 49, (8,545,0): 83, 43, 51, (8,546,0): 87, 46, 54, (8,547,0): 89, 49, 57, (8,548,0): 92, 51, 59, (8,549,0): 90, 51, 56, (8,550,0): 90, 49, 55, (8,551,0): 89, 48, 54, (8,552,0): 91, 50, 54, (8,553,0): 92, 51, 55, (8,554,0): 92, 52, 53, (8,555,0): 92, 52, 53, (8,556,0): 91, 51, 51, (8,557,0): 90, 50, 50, (8,558,0): 88, 48, 48, (8,559,0): 86, 47, 48, (8,560,0): 81, 49, 52, (8,561,0): 81, 51, 53, (8,562,0): 82, 51, 56, (8,563,0): 82, 52, 54, (8,564,0): 81, 51, 53, (8,565,0): 80, 50, 52, (8,566,0): 79, 49, 51, (8,567,0): 78, 48, 50, (8,568,0): 72, 43, 47, (8,569,0): 72, 43, 47, (8,570,0): 71, 42, 46, (8,571,0): 71, 42, 46, (8,572,0): 70, 41, 45, (8,573,0): 69, 40, 44, (8,574,0): 69, 40, 44, (8,575,0): 68, 39, 43, (8,576,0): 71, 42, 46, (8,577,0): 70, 41, 43, (8,578,0): 69, 40, 44, (8,579,0): 69, 40, 42, (8,580,0): 69, 40, 44, (8,581,0): 69, 40, 42, (8,582,0): 70, 41, 45, (8,583,0): 71, 42, 44, (8,584,0): 72, 43, 47, (8,585,0): 73, 44, 46, (8,586,0): 74, 45, 49, (8,587,0): 75, 46, 48, (8,588,0): 76, 47, 51, (8,589,0): 78, 49, 51, (8,590,0): 79, 50, 54, (8,591,0): 79, 50, 52, (8,592,0): 75, 49, 50, (8,593,0): 75, 49, 50, (8,594,0): 75, 51, 51, (8,595,0): 73, 52, 51, (8,596,0): 72, 51, 50, (8,597,0): 69, 49, 48, (8,598,0): 66, 48, 46, (8,599,0): 65, 47, 45, (9,0,0): 36, 23, 41, (9,1,0): 36, 23, 41, (9,2,0): 37, 24, 41, (9,3,0): 37, 24, 41, (9,4,0): 39, 25, 42, (9,5,0): 39, 25, 42, (9,6,0): 40, 26, 41, (9,7,0): 40, 26, 41, (9,8,0): 46, 30, 43, (9,9,0): 46, 30, 43, (9,10,0): 48, 30, 44, (9,11,0): 48, 30, 44, (9,12,0): 47, 29, 41, (9,13,0): 46, 28, 40, (9,14,0): 46, 26, 38, (9,15,0): 45, 25, 37, (9,16,0): 41, 23, 39, (9,17,0): 43, 25, 41, (9,18,0): 44, 26, 42, (9,19,0): 46, 28, 44, (9,20,0): 47, 29, 45, (9,21,0): 47, 29, 45, (9,22,0): 46, 28, 44, (9,23,0): 45, 27, 43, (9,24,0): 45, 27, 43, (9,25,0): 46, 28, 44, (9,26,0): 47, 29, 45, (9,27,0): 48, 30, 46, (9,28,0): 49, 31, 47, (9,29,0): 51, 33, 49, (9,30,0): 51, 33, 49, (9,31,0): 54, 33, 50, (9,32,0): 55, 30, 51, (9,33,0): 57, 29, 51, (9,34,0): 58, 31, 50, (9,35,0): 58, 31, 50, (9,36,0): 59, 32, 51, (9,37,0): 59, 32, 51, (9,38,0): 61, 32, 50, (9,39,0): 61, 32, 50, (9,40,0): 65, 34, 52, (9,41,0): 66, 35, 51, (9,42,0): 67, 36, 52, (9,43,0): 68, 35, 52, (9,44,0): 68, 36, 51, (9,45,0): 67, 35, 50, (9,46,0): 66, 34, 49, (9,47,0): 64, 33, 48, (9,48,0): 59, 31, 43, (9,49,0): 59, 33, 44, (9,50,0): 58, 34, 47, (9,51,0): 59, 35, 48, (9,52,0): 58, 34, 47, (9,53,0): 57, 33, 46, (9,54,0): 55, 33, 46, (9,55,0): 54, 32, 45, (9,56,0): 52, 31, 46, (9,57,0): 52, 31, 46, (9,58,0): 52, 31, 46, (9,59,0): 51, 30, 45, (9,60,0): 49, 31, 47, (9,61,0): 48, 30, 46, (9,62,0): 48, 30, 46, (9,63,0): 48, 30, 46, (9,64,0): 48, 31, 47, (9,65,0): 47, 30, 46, (9,66,0): 47, 30, 46, (9,67,0): 46, 29, 45, (9,68,0): 44, 27, 43, (9,69,0): 43, 26, 42, (9,70,0): 43, 26, 42, (9,71,0): 42, 25, 41, (9,72,0): 43, 26, 42, (9,73,0): 43, 26, 42, (9,74,0): 43, 26, 42, (9,75,0): 43, 26, 42, (9,76,0): 43, 26, 42, (9,77,0): 43, 26, 42, (9,78,0): 43, 26, 42, (9,79,0): 43, 26, 42, (9,80,0): 41, 24, 43, (9,81,0): 40, 23, 42, (9,82,0): 38, 23, 42, (9,83,0): 37, 22, 41, (9,84,0): 35, 20, 39, (9,85,0): 34, 19, 38, (9,86,0): 33, 20, 38, (9,87,0): 32, 19, 37, (9,88,0): 32, 21, 38, (9,89,0): 30, 19, 36, (9,90,0): 29, 18, 35, (9,91,0): 28, 17, 34, (9,92,0): 25, 16, 33, (9,93,0): 26, 17, 34, (9,94,0): 28, 19, 36, (9,95,0): 29, 20, 37, (9,96,0): 29, 18, 34, (9,97,0): 29, 18, 34, (9,98,0): 27, 18, 35, (9,99,0): 26, 17, 34, (9,100,0): 26, 17, 34, (9,101,0): 25, 16, 33, (9,102,0): 24, 17, 35, (9,103,0): 24, 17, 35, (9,104,0): 18, 13, 33, (9,105,0): 18, 13, 33, (9,106,0): 18, 13, 33, (9,107,0): 18, 13, 33, (9,108,0): 17, 14, 35, (9,109,0): 17, 14, 35, (9,110,0): 17, 14, 35, (9,111,0): 17, 14, 35, (9,112,0): 24, 16, 39, (9,113,0): 24, 16, 39, (9,114,0): 22, 14, 37, (9,115,0): 22, 14, 37, (9,116,0): 22, 14, 37, (9,117,0): 22, 14, 37, (9,118,0): 24, 16, 39, (9,119,0): 24, 16, 39, (9,120,0): 28, 20, 43, (9,121,0): 27, 19, 42, (9,122,0): 27, 19, 42, (9,123,0): 26, 18, 41, (9,124,0): 26, 18, 41, (9,125,0): 25, 17, 40, (9,126,0): 25, 17, 40, (9,127,0): 23, 18, 40, (9,128,0): 17, 14, 35, (9,129,0): 20, 17, 38, (9,130,0): 23, 20, 41, (9,131,0): 23, 20, 41, (9,132,0): 21, 18, 39, (9,133,0): 19, 16, 37, (9,134,0): 20, 17, 38, (9,135,0): 21, 18, 39, (9,136,0): 17, 14, 35, (9,137,0): 17, 14, 35, (9,138,0): 17, 14, 35, (9,139,0): 18, 15, 36, (9,140,0): 18, 15, 36, (9,141,0): 19, 16, 37, (9,142,0): 19, 16, 37, (9,143,0): 20, 17, 38, (9,144,0): 19, 16, 37, (9,145,0): 19, 16, 37, (9,146,0): 20, 17, 38, (9,147,0): 22, 19, 40, (9,148,0): 24, 19, 41, (9,149,0): 25, 20, 42, (9,150,0): 26, 21, 43, (9,151,0): 26, 21, 43, (9,152,0): 30, 22, 45, (9,153,0): 30, 22, 45, (9,154,0): 29, 19, 43, (9,155,0): 29, 19, 43, (9,156,0): 29, 19, 43, (9,157,0): 29, 19, 43, (9,158,0): 33, 21, 45, (9,159,0): 31, 21, 45, (9,160,0): 31, 21, 45, (9,161,0): 30, 22, 45, (9,162,0): 28, 20, 43, (9,163,0): 28, 20, 43, (9,164,0): 28, 20, 43, (9,165,0): 28, 20, 43, (9,166,0): 30, 22, 45, (9,167,0): 30, 22, 45, (9,168,0): 32, 24, 47, (9,169,0): 32, 24, 47, (9,170,0): 32, 24, 47, (9,171,0): 32, 24, 47, (9,172,0): 32, 24, 47, (9,173,0): 32, 24, 47, (9,174,0): 32, 24, 47, (9,175,0): 32, 24, 47, (9,176,0): 31, 23, 46, (9,177,0): 31, 23, 46, (9,178,0): 31, 23, 46, (9,179,0): 31, 23, 46, (9,180,0): 31, 23, 46, (9,181,0): 31, 23, 46, (9,182,0): 31, 23, 46, (9,183,0): 31, 23, 46, (9,184,0): 31, 23, 46, (9,185,0): 31, 23, 46, (9,186,0): 31, 23, 46, (9,187,0): 31, 23, 46, (9,188,0): 31, 23, 46, (9,189,0): 31, 23, 46, (9,190,0): 31, 23, 46, (9,191,0): 31, 23, 44, (9,192,0): 32, 23, 44, (9,193,0): 32, 23, 42, (9,194,0): 32, 23, 42, (9,195,0): 33, 24, 43, (9,196,0): 33, 24, 43, (9,197,0): 34, 25, 44, (9,198,0): 34, 25, 44, (9,199,0): 34, 25, 44, (9,200,0): 36, 27, 46, (9,201,0): 36, 27, 46, (9,202,0): 36, 27, 46, (9,203,0): 36, 27, 46, (9,204,0): 36, 27, 46, (9,205,0): 36, 27, 46, (9,206,0): 36, 27, 46, (9,207,0): 36, 27, 46, (9,208,0): 37, 28, 47, (9,209,0): 37, 28, 47, (9,210,0): 38, 29, 48, (9,211,0): 38, 29, 48, (9,212,0): 37, 28, 47, (9,213,0): 35, 26, 45, (9,214,0): 34, 25, 44, (9,215,0): 32, 23, 42, (9,216,0): 35, 26, 45, (9,217,0): 35, 26, 45, (9,218,0): 35, 26, 45, (9,219,0): 36, 27, 46, (9,220,0): 36, 27, 46, (9,221,0): 37, 28, 47, (9,222,0): 37, 28, 47, (9,223,0): 37, 28, 47, (9,224,0): 34, 25, 42, (9,225,0): 34, 25, 42, (9,226,0): 35, 26, 43, (9,227,0): 36, 27, 44, (9,228,0): 39, 28, 45, (9,229,0): 40, 29, 46, (9,230,0): 41, 30, 47, (9,231,0): 41, 30, 47, (9,232,0): 44, 31, 49, (9,233,0): 44, 31, 49, (9,234,0): 45, 30, 49, (9,235,0): 46, 31, 50, (9,236,0): 46, 31, 50, (9,237,0): 47, 32, 51, (9,238,0): 49, 32, 51, (9,239,0): 47, 32, 51, (9,240,0): 41, 26, 45, (9,241,0): 41, 28, 46, (9,242,0): 42, 29, 47, (9,243,0): 42, 29, 47, (9,244,0): 42, 29, 47, (9,245,0): 40, 27, 45, (9,246,0): 39, 26, 44, (9,247,0): 37, 24, 42, (9,248,0): 39, 26, 44, (9,249,0): 39, 26, 44, (9,250,0): 39, 26, 44, (9,251,0): 39, 26, 44, (9,252,0): 39, 26, 44, (9,253,0): 39, 26, 44, (9,254,0): 39, 26, 44, (9,255,0): 39, 26, 44, (9,256,0): 40, 27, 44, (9,257,0): 40, 27, 44, (9,258,0): 41, 28, 45, (9,259,0): 42, 29, 46, (9,260,0): 44, 30, 47, (9,261,0): 45, 31, 46, (9,262,0): 46, 32, 47, (9,263,0): 46, 32, 45, (9,264,0): 48, 32, 45, (9,265,0): 47, 31, 44, (9,266,0): 47, 29, 41, (9,267,0): 47, 29, 41, (9,268,0): 48, 30, 42, (9,269,0): 51, 33, 45, (9,270,0): 55, 35, 47, (9,271,0): 56, 36, 47, (9,272,0): 61, 39, 51, (9,273,0): 61, 39, 51, (9,274,0): 62, 41, 50, (9,275,0): 63, 42, 51, (9,276,0): 64, 41, 51, (9,277,0): 65, 42, 50, (9,278,0): 65, 42, 50, (9,279,0): 65, 42, 50, (9,280,0): 70, 45, 51, (9,281,0): 70, 45, 51, (9,282,0): 72, 45, 52, (9,283,0): 73, 46, 51, (9,284,0): 75, 48, 53, (9,285,0): 76, 49, 54, (9,286,0): 79, 50, 55, (9,287,0): 79, 50, 55, (9,288,0): 80, 49, 55, (9,289,0): 80, 49, 55, (9,290,0): 81, 50, 56, (9,291,0): 81, 50, 56, (9,292,0): 83, 51, 56, (9,293,0): 83, 51, 56, (9,294,0): 84, 52, 57, (9,295,0): 84, 52, 55, (9,296,0): 86, 51, 55, (9,297,0): 86, 51, 55, (9,298,0): 88, 52, 54, (9,299,0): 89, 53, 55, (9,300,0): 91, 55, 57, (9,301,0): 94, 58, 60, (9,302,0): 99, 60, 61, (9,303,0): 102, 62, 62, (9,304,0): 103, 60, 54, (9,305,0): 106, 61, 55, (9,306,0): 109, 65, 56, (9,307,0): 112, 68, 59, (9,308,0): 118, 69, 62, (9,309,0): 120, 72, 62, (9,310,0): 121, 73, 63, (9,311,0): 121, 73, 63, (9,312,0): 122, 76, 63, (9,313,0): 121, 75, 62, (9,314,0): 117, 73, 60, (9,315,0): 115, 73, 57, (9,316,0): 112, 73, 56, (9,317,0): 111, 74, 56, (9,318,0): 111, 76, 57, (9,319,0): 112, 77, 58, (9,320,0): 113, 76, 58, (9,321,0): 113, 76, 58, (9,322,0): 114, 77, 59, (9,323,0): 114, 77, 59, (9,324,0): 115, 78, 60, (9,325,0): 115, 78, 60, (9,326,0): 115, 78, 60, (9,327,0): 116, 79, 61, (9,328,0): 115, 78, 60, (9,329,0): 116, 79, 61, (9,330,0): 117, 80, 62, (9,331,0): 119, 82, 64, (9,332,0): 119, 82, 64, (9,333,0): 119, 82, 64, (9,334,0): 118, 81, 63, (9,335,0): 118, 81, 63, (9,336,0): 118, 83, 64, (9,337,0): 116, 83, 64, (9,338,0): 115, 82, 63, (9,339,0): 115, 82, 63, (9,340,0): 114, 81, 64, (9,341,0): 114, 81, 64, (9,342,0): 113, 80, 63, (9,343,0): 113, 80, 63, (9,344,0): 114, 81, 66, (9,345,0): 112, 79, 64, (9,346,0): 110, 76, 64, (9,347,0): 108, 74, 62, (9,348,0): 106, 72, 60, (9,349,0): 105, 71, 59, (9,350,0): 105, 71, 61, (9,351,0): 105, 71, 61, (9,352,0): 103, 69, 60, (9,353,0): 102, 68, 59, (9,354,0): 101, 67, 58, (9,355,0): 100, 66, 57, (9,356,0): 100, 66, 57, (9,357,0): 101, 67, 58, (9,358,0): 102, 68, 59, (9,359,0): 103, 69, 60, (9,360,0): 107, 73, 64, (9,361,0): 108, 74, 65, (9,362,0): 109, 75, 66, (9,363,0): 110, 76, 67, (9,364,0): 111, 77, 68, (9,365,0): 112, 78, 69, (9,366,0): 113, 79, 70, (9,367,0): 113, 79, 69, (9,368,0): 117, 79, 70, (9,369,0): 115, 79, 67, (9,370,0): 110, 76, 66, (9,371,0): 106, 76, 65, (9,372,0): 106, 76, 65, (9,373,0): 107, 79, 67, (9,374,0): 110, 80, 70, (9,375,0): 114, 81, 72, (9,376,0): 112, 77, 71, (9,377,0): 114, 77, 71, (9,378,0): 115, 74, 70, (9,379,0): 113, 74, 69, (9,380,0): 111, 73, 70, (9,381,0): 107, 74, 69, (9,382,0): 106, 73, 68, (9,383,0): 106, 73, 68, (9,384,0): 109, 74, 70, (9,385,0): 109, 74, 70, (9,386,0): 110, 75, 71, (9,387,0): 111, 76, 72, (9,388,0): 112, 77, 73, (9,389,0): 113, 78, 74, (9,390,0): 114, 79, 75, (9,391,0): 114, 79, 75, (9,392,0): 114, 79, 75, (9,393,0): 113, 78, 74, (9,394,0): 110, 75, 71, (9,395,0): 107, 72, 68, (9,396,0): 104, 69, 65, (9,397,0): 102, 67, 63, (9,398,0): 100, 65, 61, (9,399,0): 99, 64, 60, (9,400,0): 96, 62, 61, (9,401,0): 94, 62, 63, (9,402,0): 96, 62, 63, (9,403,0): 97, 63, 62, (9,404,0): 97, 63, 62, (9,405,0): 98, 64, 63, (9,406,0): 100, 64, 64, (9,407,0): 101, 66, 64, (9,408,0): 100, 62, 61, (9,409,0): 100, 62, 59, (9,410,0): 100, 62, 59, (9,411,0): 100, 62, 59, (9,412,0): 101, 61, 59, (9,413,0): 101, 62, 57, (9,414,0): 101, 62, 57, (9,415,0): 101, 62, 57, (9,416,0): 98, 59, 54, (9,417,0): 97, 60, 54, (9,418,0): 97, 58, 53, (9,419,0): 94, 57, 51, (9,420,0): 91, 53, 50, (9,421,0): 85, 50, 46, (9,422,0): 81, 46, 44, (9,423,0): 78, 44, 42, (9,424,0): 74, 40, 39, (9,425,0): 72, 41, 39, (9,426,0): 71, 41, 41, (9,427,0): 71, 41, 41, (9,428,0): 71, 42, 44, (9,429,0): 71, 42, 44, (9,430,0): 71, 42, 44, (9,431,0): 70, 44, 45, (9,432,0): 72, 48, 46, (9,433,0): 71, 50, 47, (9,434,0): 71, 50, 47, (9,435,0): 73, 52, 49, (9,436,0): 76, 52, 50, (9,437,0): 78, 54, 52, (9,438,0): 81, 56, 52, (9,439,0): 82, 57, 53, (9,440,0): 87, 62, 57, (9,441,0): 87, 62, 57, (9,442,0): 89, 62, 55, (9,443,0): 89, 62, 55, (9,444,0): 90, 61, 55, (9,445,0): 90, 61, 55, (9,446,0): 90, 61, 55, (9,447,0): 89, 62, 55, (9,448,0): 92, 65, 58, (9,449,0): 91, 67, 57, (9,450,0): 92, 67, 60, (9,451,0): 93, 69, 59, (9,452,0): 93, 68, 61, (9,453,0): 92, 68, 58, (9,454,0): 91, 66, 59, (9,455,0): 90, 66, 56, (9,456,0): 87, 62, 55, (9,457,0): 86, 62, 52, (9,458,0): 86, 61, 54, (9,459,0): 85, 61, 51, (9,460,0): 85, 60, 53, (9,461,0): 84, 60, 50, (9,462,0): 84, 59, 52, (9,463,0): 84, 59, 52, (9,464,0): 84, 60, 56, (9,465,0): 82, 61, 58, (9,466,0): 84, 60, 58, (9,467,0): 85, 61, 59, (9,468,0): 85, 61, 59, (9,469,0): 86, 62, 60, (9,470,0): 87, 62, 58, (9,471,0): 87, 62, 58, (9,472,0): 87, 59, 55, (9,473,0): 87, 59, 55, (9,474,0): 89, 62, 55, (9,475,0): 90, 63, 56, (9,476,0): 93, 64, 58, (9,477,0): 95, 66, 60, (9,478,0): 96, 67, 61, (9,479,0): 97, 68, 60, (9,480,0): 95, 68, 57, (9,481,0): 94, 71, 57, (9,482,0): 95, 72, 58, (9,483,0): 97, 74, 60, (9,484,0): 99, 76, 62, (9,485,0): 101, 78, 64, (9,486,0): 102, 79, 65, (9,487,0): 103, 80, 66, (9,488,0): 105, 82, 68, (9,489,0): 105, 82, 68, (9,490,0): 104, 81, 67, (9,491,0): 103, 80, 66, (9,492,0): 102, 79, 65, (9,493,0): 101, 78, 64, (9,494,0): 100, 77, 63, (9,495,0): 99, 75, 63, (9,496,0): 99, 72, 65, (9,497,0): 100, 71, 67, (9,498,0): 101, 71, 69, (9,499,0): 101, 72, 68, (9,500,0): 100, 70, 68, (9,501,0): 99, 69, 67, (9,502,0): 97, 67, 65, (9,503,0): 96, 66, 64, (9,504,0): 92, 62, 60, (9,505,0): 91, 61, 59, (9,506,0): 89, 59, 59, (9,507,0): 88, 58, 58, (9,508,0): 87, 57, 57, (9,509,0): 87, 57, 57, (9,510,0): 88, 58, 58, (9,511,0): 87, 59, 58, (9,512,0): 83, 57, 60, (9,513,0): 83, 57, 60, (9,514,0): 83, 57, 60, (9,515,0): 84, 58, 61, (9,516,0): 84, 58, 61, (9,517,0): 85, 59, 62, (9,518,0): 85, 59, 62, (9,519,0): 85, 59, 62, (9,520,0): 84, 58, 61, (9,521,0): 84, 58, 61, (9,522,0): 83, 57, 60, (9,523,0): 82, 56, 59, (9,524,0): 81, 55, 58, (9,525,0): 80, 54, 57, (9,526,0): 79, 53, 56, (9,527,0): 79, 53, 56, (9,528,0): 81, 56, 59, (9,529,0): 80, 55, 58, (9,530,0): 81, 55, 58, (9,531,0): 80, 54, 57, (9,532,0): 80, 54, 57, (9,533,0): 79, 53, 56, (9,534,0): 81, 52, 56, (9,535,0): 81, 52, 56, (9,536,0): 77, 46, 51, (9,537,0): 77, 46, 51, (9,538,0): 79, 48, 53, (9,539,0): 79, 48, 53, (9,540,0): 80, 48, 53, (9,541,0): 80, 48, 53, (9,542,0): 78, 46, 51, (9,543,0): 78, 46, 51, (9,544,0): 80, 43, 51, (9,545,0): 81, 44, 52, (9,546,0): 83, 46, 54, (9,547,0): 85, 48, 55, (9,548,0): 86, 49, 56, (9,549,0): 87, 50, 57, (9,550,0): 88, 49, 54, (9,551,0): 88, 49, 54, (9,552,0): 90, 51, 54, (9,553,0): 92, 52, 53, (9,554,0): 92, 52, 53, (9,555,0): 92, 52, 52, (9,556,0): 92, 52, 52, (9,557,0): 90, 50, 50, (9,558,0): 89, 49, 49, (9,559,0): 87, 49, 48, (9,560,0): 84, 50, 51, (9,561,0): 82, 52, 52, (9,562,0): 82, 52, 54, (9,563,0): 83, 53, 55, (9,564,0): 82, 52, 54, (9,565,0): 81, 51, 53, (9,566,0): 79, 49, 51, (9,567,0): 78, 48, 50, (9,568,0): 73, 44, 48, (9,569,0): 73, 44, 48, (9,570,0): 72, 43, 47, (9,571,0): 71, 42, 46, (9,572,0): 71, 42, 46, (9,573,0): 70, 41, 45, (9,574,0): 69, 40, 44, (9,575,0): 69, 40, 44, (9,576,0): 71, 42, 44, (9,577,0): 68, 42, 43, (9,578,0): 69, 40, 42, (9,579,0): 66, 40, 41, (9,580,0): 68, 39, 41, (9,581,0): 67, 41, 42, (9,582,0): 70, 41, 43, (9,583,0): 69, 43, 44, (9,584,0): 71, 42, 44, (9,585,0): 70, 44, 45, (9,586,0): 73, 44, 46, (9,587,0): 72, 46, 47, (9,588,0): 75, 46, 48, (9,589,0): 74, 48, 49, (9,590,0): 77, 48, 50, (9,591,0): 76, 50, 51, (9,592,0): 74, 48, 49, (9,593,0): 74, 48, 49, (9,594,0): 74, 50, 50, (9,595,0): 72, 51, 50, (9,596,0): 71, 50, 49, (9,597,0): 69, 49, 48, (9,598,0): 66, 48, 46, (9,599,0): 65, 47, 45, (10,0,0): 37, 22, 41, (10,1,0): 37, 22, 41, (10,2,0): 38, 24, 41, (10,3,0): 38, 24, 41, (10,4,0): 41, 24, 42, (10,5,0): 41, 24, 42, (10,6,0): 42, 25, 41, (10,7,0): 42, 25, 41, (10,8,0): 47, 29, 43, (10,9,0): 47, 29, 43, (10,10,0): 50, 29, 44, (10,11,0): 50, 29, 44, (10,12,0): 50, 30, 42, (10,13,0): 49, 29, 41, (10,14,0): 48, 26, 39, (10,15,0): 46, 26, 38, (10,16,0): 43, 25, 41, (10,17,0): 44, 26, 42, (10,18,0): 45, 27, 43, (10,19,0): 46, 28, 44, (10,20,0): 47, 29, 45, (10,21,0): 46, 28, 44, (10,22,0): 46, 28, 44, (10,23,0): 45, 27, 43, (10,24,0): 46, 28, 44, (10,25,0): 46, 28, 44, (10,26,0): 47, 29, 45, (10,27,0): 48, 30, 46, (10,28,0): 49, 31, 47, (10,29,0): 50, 32, 48, (10,30,0): 50, 32, 48, (10,31,0): 53, 32, 49, (10,32,0): 55, 32, 52, (10,33,0): 56, 31, 52, (10,34,0): 57, 32, 53, (10,35,0): 57, 32, 53, (10,36,0): 58, 33, 52, (10,37,0): 58, 33, 52, (10,38,0): 60, 33, 52, (10,39,0): 61, 34, 51, (10,40,0): 64, 35, 53, (10,41,0): 64, 35, 53, (10,42,0): 65, 37, 52, (10,43,0): 67, 36, 52, (10,44,0): 66, 35, 51, (10,45,0): 64, 33, 49, (10,46,0): 62, 31, 46, (10,47,0): 61, 30, 45, (10,48,0): 58, 30, 42, (10,49,0): 58, 32, 43, (10,50,0): 57, 33, 46, (10,51,0): 58, 34, 47, (10,52,0): 58, 34, 47, (10,53,0): 57, 33, 46, (10,54,0): 55, 33, 46, (10,55,0): 55, 33, 46, (10,56,0): 52, 31, 46, (10,57,0): 52, 31, 46, (10,58,0): 52, 31, 46, (10,59,0): 51, 30, 45, (10,60,0): 49, 31, 47, (10,61,0): 48, 30, 46, (10,62,0): 48, 30, 46, (10,63,0): 48, 30, 46, (10,64,0): 48, 31, 47, (10,65,0): 47, 30, 46, (10,66,0): 47, 30, 46, (10,67,0): 46, 29, 45, (10,68,0): 44, 27, 43, (10,69,0): 43, 26, 42, (10,70,0): 43, 26, 42, (10,71,0): 42, 25, 41, (10,72,0): 43, 26, 42, (10,73,0): 43, 26, 42, (10,74,0): 43, 26, 42, (10,75,0): 43, 26, 42, (10,76,0): 43, 26, 42, (10,77,0): 43, 26, 42, (10,78,0): 43, 26, 42, (10,79,0): 43, 26, 42, (10,80,0): 40, 23, 42, (10,81,0): 39, 22, 41, (10,82,0): 37, 22, 41, (10,83,0): 36, 21, 40, (10,84,0): 34, 19, 38, (10,85,0): 33, 18, 37, (10,86,0): 32, 19, 37, (10,87,0): 31, 18, 36, (10,88,0): 34, 23, 40, (10,89,0): 32, 21, 38, (10,90,0): 31, 20, 37, (10,91,0): 29, 18, 35, (10,92,0): 26, 17, 34, (10,93,0): 26, 17, 34, (10,94,0): 26, 17, 34, (10,95,0): 26, 17, 34, (10,96,0): 28, 17, 33, (10,97,0): 28, 17, 33, (10,98,0): 26, 17, 34, (10,99,0): 25, 16, 33, (10,100,0): 25, 16, 33, (10,101,0): 24, 15, 32, (10,102,0): 23, 16, 34, (10,103,0): 23, 16, 34, (10,104,0): 19, 14, 34, (10,105,0): 19, 14, 34, (10,106,0): 19, 14, 34, (10,107,0): 19, 14, 34, (10,108,0): 18, 15, 36, (10,109,0): 18, 15, 36, (10,110,0): 18, 15, 36, (10,111,0): 18, 15, 36, (10,112,0): 24, 16, 39, (10,113,0): 24, 16, 39, (10,114,0): 22, 14, 37, (10,115,0): 22, 14, 37, (10,116,0): 22, 14, 37, (10,117,0): 22, 14, 37, (10,118,0): 24, 16, 39, (10,119,0): 24, 16, 39, (10,120,0): 26, 18, 41, (10,121,0): 26, 18, 41, (10,122,0): 26, 18, 41, (10,123,0): 25, 17, 40, (10,124,0): 24, 16, 39, (10,125,0): 24, 16, 39, (10,126,0): 24, 16, 39, (10,127,0): 21, 16, 38, (10,128,0): 16, 12, 35, (10,129,0): 18, 16, 38, (10,130,0): 21, 19, 41, (10,131,0): 21, 19, 41, (10,132,0): 19, 17, 39, (10,133,0): 17, 15, 37, (10,134,0): 18, 16, 38, (10,135,0): 19, 17, 39, (10,136,0): 15, 13, 35, (10,137,0): 16, 14, 36, (10,138,0): 16, 14, 36, (10,139,0): 17, 15, 37, (10,140,0): 17, 15, 37, (10,141,0): 18, 16, 38, (10,142,0): 18, 16, 38, (10,143,0): 18, 16, 38, (10,144,0): 20, 17, 38, (10,145,0): 21, 18, 39, (10,146,0): 21, 18, 39, (10,147,0): 22, 19, 40, (10,148,0): 24, 19, 41, (10,149,0): 25, 20, 42, (10,150,0): 26, 21, 43, (10,151,0): 27, 22, 44, (10,152,0): 30, 22, 45, (10,153,0): 30, 22, 45, (10,154,0): 29, 19, 43, (10,155,0): 29, 19, 43, (10,156,0): 29, 19, 43, (10,157,0): 29, 19, 43, (10,158,0): 33, 21, 45, (10,159,0): 31, 21, 45, (10,160,0): 31, 21, 45, (10,161,0): 30, 22, 45, (10,162,0): 28, 20, 43, (10,163,0): 28, 20, 43, (10,164,0): 28, 20, 43, (10,165,0): 28, 20, 43, (10,166,0): 30, 22, 45, (10,167,0): 30, 22, 45, (10,168,0): 31, 23, 46, (10,169,0): 31, 23, 46, (10,170,0): 31, 23, 46, (10,171,0): 31, 23, 46, (10,172,0): 31, 23, 46, (10,173,0): 31, 23, 46, (10,174,0): 31, 23, 46, (10,175,0): 31, 23, 46, (10,176,0): 31, 23, 46, (10,177,0): 31, 23, 46, (10,178,0): 31, 23, 46, (10,179,0): 31, 23, 46, (10,180,0): 31, 23, 46, (10,181,0): 31, 23, 46, (10,182,0): 31, 23, 46, (10,183,0): 31, 23, 46, (10,184,0): 31, 23, 46, (10,185,0): 31, 23, 46, (10,186,0): 31, 23, 46, (10,187,0): 31, 23, 46, (10,188,0): 31, 23, 46, (10,189,0): 31, 23, 46, (10,190,0): 31, 23, 46, (10,191,0): 31, 23, 44, (10,192,0): 32, 23, 44, (10,193,0): 32, 23, 42, (10,194,0): 32, 23, 42, (10,195,0): 33, 24, 43, (10,196,0): 33, 24, 43, (10,197,0): 34, 25, 44, (10,198,0): 34, 25, 44, (10,199,0): 34, 25, 44, (10,200,0): 36, 27, 46, (10,201,0): 36, 27, 46, (10,202,0): 36, 27, 46, (10,203,0): 36, 27, 46, (10,204,0): 36, 27, 46, (10,205,0): 36, 27, 46, (10,206,0): 36, 27, 46, (10,207,0): 36, 27, 46, (10,208,0): 35, 26, 45, (10,209,0): 36, 27, 46, (10,210,0): 37, 28, 47, (10,211,0): 37, 28, 47, (10,212,0): 37, 28, 47, (10,213,0): 36, 27, 46, (10,214,0): 35, 26, 45, (10,215,0): 34, 25, 44, (10,216,0): 35, 26, 45, (10,217,0): 35, 26, 45, (10,218,0): 35, 26, 45, (10,219,0): 36, 27, 46, (10,220,0): 36, 27, 46, (10,221,0): 37, 28, 47, (10,222,0): 37, 28, 47, (10,223,0): 37, 28, 47, (10,224,0): 35, 26, 45, (10,225,0): 35, 26, 45, (10,226,0): 36, 27, 46, (10,227,0): 37, 28, 47, (10,228,0): 40, 28, 48, (10,229,0): 41, 29, 49, (10,230,0): 42, 30, 50, (10,231,0): 42, 30, 50, (10,232,0): 46, 33, 53, (10,233,0): 46, 33, 53, (10,234,0): 47, 32, 53, (10,235,0): 46, 31, 52, (10,236,0): 46, 31, 52, (10,237,0): 45, 30, 51, (10,238,0): 47, 29, 51, (10,239,0): 45, 30, 51, (10,240,0): 42, 27, 46, (10,241,0): 41, 28, 46, (10,242,0): 42, 29, 47, (10,243,0): 42, 29, 47, (10,244,0): 41, 28, 46, (10,245,0): 40, 27, 45, (10,246,0): 39, 26, 44, (10,247,0): 38, 25, 43, (10,248,0): 40, 27, 45, (10,249,0): 40, 27, 45, (10,250,0): 40, 27, 45, (10,251,0): 40, 27, 45, (10,252,0): 40, 27, 45, (10,253,0): 40, 27, 45, (10,254,0): 40, 27, 45, (10,255,0): 40, 27, 45, (10,256,0): 41, 27, 44, (10,257,0): 41, 27, 44, (10,258,0): 42, 28, 43, (10,259,0): 43, 29, 44, (10,260,0): 46, 29, 45, (10,261,0): 47, 30, 46, (10,262,0): 48, 31, 47, (10,263,0): 48, 32, 45, (10,264,0): 49, 31, 45, (10,265,0): 49, 31, 43, (10,266,0): 50, 30, 42, (10,267,0): 51, 31, 43, (10,268,0): 52, 32, 43, (10,269,0): 54, 34, 45, (10,270,0): 56, 34, 46, (10,271,0): 57, 35, 47, (10,272,0): 61, 37, 50, (10,273,0): 62, 39, 49, (10,274,0): 64, 41, 51, (10,275,0): 66, 43, 53, (10,276,0): 67, 44, 52, (10,277,0): 66, 43, 51, (10,278,0): 66, 40, 49, (10,279,0): 65, 40, 46, (10,280,0): 69, 42, 49, (10,281,0): 70, 43, 50, (10,282,0): 73, 44, 49, (10,283,0): 75, 46, 51, (10,284,0): 77, 48, 53, (10,285,0): 79, 50, 54, (10,286,0): 80, 51, 55, (10,287,0): 81, 52, 56, (10,288,0): 80, 49, 55, (10,289,0): 80, 49, 55, (10,290,0): 82, 50, 55, (10,291,0): 82, 50, 55, (10,292,0): 83, 51, 56, (10,293,0): 83, 51, 56, (10,294,0): 86, 51, 55, (10,295,0): 86, 51, 55, (10,296,0): 87, 51, 55, (10,297,0): 87, 51, 53, (10,298,0): 88, 52, 54, (10,299,0): 89, 53, 55, (10,300,0): 93, 54, 55, (10,301,0): 96, 57, 58, (10,302,0): 99, 60, 61, (10,303,0): 101, 61, 61, (10,304,0): 103, 60, 54, (10,305,0): 106, 62, 53, (10,306,0): 109, 65, 56, (10,307,0): 113, 69, 60, (10,308,0): 118, 70, 60, (10,309,0): 120, 72, 62, (10,310,0): 121, 73, 63, (10,311,0): 121, 73, 61, (10,312,0): 122, 76, 63, (10,313,0): 121, 75, 62, (10,314,0): 117, 74, 58, (10,315,0): 115, 73, 57, (10,316,0): 113, 74, 57, (10,317,0): 112, 75, 56, (10,318,0): 112, 77, 57, (10,319,0): 112, 77, 57, (10,320,0): 113, 76, 57, (10,321,0): 115, 77, 58, (10,322,0): 115, 77, 58, (10,323,0): 115, 77, 58, (10,324,0): 116, 78, 59, (10,325,0): 117, 79, 60, (10,326,0): 117, 79, 60, (10,327,0): 117, 79, 60, (10,328,0): 117, 79, 60, (10,329,0): 118, 80, 61, (10,330,0): 119, 81, 62, (10,331,0): 120, 82, 63, (10,332,0): 121, 83, 64, (10,333,0): 121, 83, 64, (10,334,0): 120, 82, 63, (10,335,0): 119, 82, 63, (10,336,0): 119, 84, 64, (10,337,0): 119, 84, 64, (10,338,0): 118, 83, 63, (10,339,0): 118, 83, 63, (10,340,0): 117, 82, 63, (10,341,0): 117, 82, 63, (10,342,0): 116, 80, 64, (10,343,0): 116, 80, 64, (10,344,0): 116, 80, 64, (10,345,0): 115, 79, 63, (10,346,0): 113, 77, 63, (10,347,0): 110, 74, 60, (10,348,0): 109, 73, 61, (10,349,0): 108, 72, 60, (10,350,0): 108, 72, 60, (10,351,0): 108, 71, 62, (10,352,0): 104, 70, 61, (10,353,0): 103, 69, 60, (10,354,0): 102, 68, 59, (10,355,0): 101, 67, 58, (10,356,0): 101, 67, 58, (10,357,0): 102, 68, 59, (10,358,0): 103, 69, 60, (10,359,0): 104, 70, 61, (10,360,0): 108, 74, 65, (10,361,0): 109, 75, 66, (10,362,0): 109, 75, 66, (10,363,0): 110, 76, 67, (10,364,0): 111, 77, 68, (10,365,0): 113, 79, 70, (10,366,0): 113, 79, 70, (10,367,0): 114, 80, 70, (10,368,0): 118, 80, 71, (10,369,0): 116, 80, 68, (10,370,0): 112, 78, 68, (10,371,0): 107, 77, 66, (10,372,0): 107, 77, 66, (10,373,0): 107, 79, 67, (10,374,0): 110, 80, 70, (10,375,0): 114, 81, 72, (10,376,0): 112, 77, 71, (10,377,0): 114, 77, 71, (10,378,0): 115, 74, 70, (10,379,0): 113, 74, 69, (10,380,0): 111, 73, 70, (10,381,0): 107, 74, 69, (10,382,0): 106, 73, 68, (10,383,0): 106, 73, 68, (10,384,0): 109, 74, 68, (10,385,0): 111, 74, 68, (10,386,0): 112, 75, 69, (10,387,0): 113, 76, 70, (10,388,0): 114, 77, 71, (10,389,0): 115, 78, 72, (10,390,0): 116, 79, 73, (10,391,0): 116, 79, 73, (10,392,0): 116, 79, 73, (10,393,0): 116, 79, 73, (10,394,0): 114, 77, 71, (10,395,0): 111, 74, 68, (10,396,0): 109, 72, 66, (10,397,0): 106, 69, 63, (10,398,0): 104, 67, 61, (10,399,0): 101, 66, 62, (10,400,0): 98, 64, 63, (10,401,0): 97, 63, 62, (10,402,0): 95, 61, 60, (10,403,0): 94, 60, 59, (10,404,0): 96, 60, 60, (10,405,0): 97, 62, 60, (10,406,0): 102, 64, 63, (10,407,0): 103, 65, 64, (10,408,0): 101, 63, 62, (10,409,0): 101, 63, 60, (10,410,0): 102, 62, 60, (10,411,0): 102, 63, 58, (10,412,0): 103, 62, 58, (10,413,0): 103, 62, 58, (10,414,0): 103, 62, 58, (10,415,0): 103, 62, 56, (10,416,0): 102, 61, 55, (10,417,0): 100, 61, 54, (10,418,0): 100, 59, 53, (10,419,0): 96, 57, 50, (10,420,0): 93, 54, 49, (10,421,0): 88, 50, 47, (10,422,0): 83, 48, 46, (10,423,0): 80, 46, 44, (10,424,0): 76, 42, 41, (10,425,0): 74, 43, 41, (10,426,0): 73, 43, 43, (10,427,0): 72, 42, 44, (10,428,0): 71, 42, 46, (10,429,0): 71, 42, 46, (10,430,0): 71, 42, 46, (10,431,0): 69, 43, 44, (10,432,0): 69, 45, 43, (10,433,0): 68, 47, 44, (10,434,0): 70, 49, 46, (10,435,0): 73, 52, 49, (10,436,0): 77, 53, 51, (10,437,0): 80, 56, 54, (10,438,0): 82, 57, 53, (10,439,0): 83, 58, 54, (10,440,0): 87, 62, 57, (10,441,0): 87, 62, 57, (10,442,0): 89, 62, 55, (10,443,0): 89, 62, 55, (10,444,0): 90, 61, 55, (10,445,0): 90, 61, 55, (10,446,0): 90, 61, 55, (10,447,0): 89, 62, 55, (10,448,0): 91, 64, 57, (10,449,0): 90, 65, 58, (10,450,0): 91, 66, 61, (10,451,0): 92, 67, 60, (10,452,0): 92, 67, 62, (10,453,0): 91, 66, 59, (10,454,0): 90, 65, 60, (10,455,0): 89, 64, 57, (10,456,0): 87, 62, 57, (10,457,0): 87, 62, 55, (10,458,0): 87, 62, 57, (10,459,0): 86, 61, 54, (10,460,0): 86, 61, 56, (10,461,0): 85, 60, 53, (10,462,0): 85, 60, 55, (10,463,0): 84, 59, 54, (10,464,0): 83, 59, 55, (10,465,0): 84, 60, 58, (10,466,0): 84, 60, 58, (10,467,0): 85, 61, 59, (10,468,0): 86, 60, 59, (10,469,0): 87, 61, 60, (10,470,0): 89, 61, 58, (10,471,0): 90, 62, 59, (10,472,0): 88, 60, 56, (10,473,0): 88, 60, 56, (10,474,0): 90, 61, 55, (10,475,0): 92, 63, 57, (10,476,0): 95, 64, 59, (10,477,0): 96, 65, 60, (10,478,0): 97, 66, 61, (10,479,0): 97, 68, 60, (10,480,0): 96, 69, 58, (10,481,0): 95, 71, 59, (10,482,0): 96, 72, 60, (10,483,0): 97, 73, 61, (10,484,0): 99, 75, 63, (10,485,0): 100, 76, 64, (10,486,0): 101, 77, 65, (10,487,0): 102, 78, 66, (10,488,0): 104, 80, 68, (10,489,0): 103, 79, 67, (10,490,0): 103, 79, 67, (10,491,0): 102, 78, 66, (10,492,0): 101, 77, 65, (10,493,0): 100, 76, 64, (10,494,0): 99, 75, 63, (10,495,0): 98, 74, 64, (10,496,0): 96, 68, 64, (10,497,0): 97, 69, 66, (10,498,0): 98, 70, 69, (10,499,0): 98, 70, 67, (10,500,0): 98, 70, 69, (10,501,0): 96, 68, 67, (10,502,0): 95, 67, 66, (10,503,0): 94, 66, 65, (10,504,0): 91, 63, 62, (10,505,0): 90, 62, 61, (10,506,0): 88, 60, 59, (10,507,0): 87, 59, 58, (10,508,0): 86, 58, 57, (10,509,0): 87, 59, 58, (10,510,0): 88, 60, 59, (10,511,0): 88, 60, 59, (10,512,0): 85, 59, 62, (10,513,0): 85, 59, 62, (10,514,0): 84, 58, 61, (10,515,0): 84, 58, 61, (10,516,0): 84, 58, 61, (10,517,0): 83, 57, 60, (10,518,0): 83, 57, 60, (10,519,0): 83, 57, 60, (10,520,0): 84, 58, 61, (10,521,0): 84, 58, 61, (10,522,0): 83, 57, 60, (10,523,0): 82, 56, 59, (10,524,0): 81, 55, 58, (10,525,0): 80, 54, 57, (10,526,0): 79, 53, 56, (10,527,0): 79, 53, 56, (10,528,0): 79, 54, 57, (10,529,0): 79, 54, 57, (10,530,0): 79, 54, 57, (10,531,0): 78, 53, 56, (10,532,0): 77, 52, 55, (10,533,0): 77, 52, 55, (10,534,0): 78, 52, 55, (10,535,0): 77, 51, 54, (10,536,0): 77, 48, 52, (10,537,0): 77, 48, 52, (10,538,0): 80, 49, 54, (10,539,0): 80, 49, 54, (10,540,0): 80, 49, 54, (10,541,0): 80, 49, 54, (10,542,0): 78, 47, 52, (10,543,0): 79, 47, 52, (10,544,0): 78, 45, 52, (10,545,0): 80, 45, 52, (10,546,0): 80, 45, 52, (10,547,0): 80, 45, 52, (10,548,0): 81, 46, 52, (10,549,0): 83, 48, 54, (10,550,0): 85, 49, 53, (10,551,0): 86, 50, 54, (10,552,0): 88, 52, 54, (10,553,0): 91, 52, 53, (10,554,0): 92, 53, 54, (10,555,0): 92, 54, 53, (10,556,0): 92, 54, 53, (10,557,0): 90, 52, 49, (10,558,0): 90, 50, 48, (10,559,0): 88, 50, 47, (10,560,0): 85, 51, 50, (10,561,0): 84, 53, 51, (10,562,0): 84, 52, 53, (10,563,0): 85, 53, 54, (10,564,0): 84, 52, 53, (10,565,0): 83, 51, 52, (10,566,0): 80, 50, 50, (10,567,0): 79, 49, 49, (10,568,0): 75, 46, 48, (10,569,0): 75, 46, 48, (10,570,0): 74, 45, 49, (10,571,0): 73, 44, 48, (10,572,0): 70, 44, 47, (10,573,0): 68, 42, 45, (10,574,0): 68, 41, 46, (10,575,0): 67, 41, 44, (10,576,0): 68, 42, 43, (10,577,0): 66, 42, 40, (10,578,0): 66, 40, 39, (10,579,0): 64, 40, 38, (10,580,0): 65, 39, 38, (10,581,0): 65, 41, 39, (10,582,0): 67, 41, 40, (10,583,0): 67, 43, 41, (10,584,0): 68, 42, 41, (10,585,0): 67, 43, 41, (10,586,0): 69, 43, 42, (10,587,0): 69, 45, 43, (10,588,0): 71, 45, 44, (10,589,0): 71, 47, 45, (10,590,0): 73, 47, 46, (10,591,0): 73, 47, 46, (10,592,0): 72, 46, 47, (10,593,0): 72, 46, 47, (10,594,0): 72, 48, 48, (10,595,0): 71, 50, 49, (10,596,0): 70, 49, 48, (10,597,0): 68, 48, 47, (10,598,0): 65, 47, 45, (10,599,0): 64, 46, 44, (11,0,0): 37, 22, 41, (11,1,0): 37, 22, 41, (11,2,0): 38, 24, 41, (11,3,0): 38, 24, 41, (11,4,0): 41, 24, 42, (11,5,0): 41, 24, 42, (11,6,0): 42, 25, 41, (11,7,0): 42, 25, 41, (11,8,0): 46, 28, 42, (11,9,0): 47, 29, 43, (11,10,0): 50, 29, 44, (11,11,0): 51, 30, 45, (11,12,0): 50, 30, 42, (11,13,0): 50, 30, 42, (11,14,0): 49, 27, 40, (11,15,0): 47, 27, 39, (11,16,0): 47, 26, 43, (11,17,0): 45, 27, 43, (11,18,0): 46, 28, 44, (11,19,0): 46, 28, 44, (11,20,0): 46, 28, 44, (11,21,0): 46, 28, 44, (11,22,0): 46, 28, 44, (11,23,0): 46, 28, 44, (11,24,0): 46, 28, 44, (11,25,0): 46, 28, 44, (11,26,0): 47, 29, 45, (11,27,0): 47, 29, 45, (11,28,0): 48, 30, 46, (11,29,0): 49, 31, 47, (11,30,0): 49, 31, 47, (11,31,0): 50, 32, 48, (11,32,0): 54, 33, 52, (11,33,0): 55, 32, 52, (11,34,0): 56, 33, 53, (11,35,0): 56, 33, 53, (11,36,0): 58, 33, 52, (11,37,0): 58, 33, 52, (11,38,0): 59, 34, 53, (11,39,0): 61, 34, 53, (11,40,0): 62, 35, 52, (11,41,0): 64, 35, 53, (11,42,0): 64, 36, 51, (11,43,0): 63, 35, 50, (11,44,0): 62, 34, 49, (11,45,0): 60, 32, 47, (11,46,0): 60, 29, 44, (11,47,0): 57, 29, 43, (11,48,0): 56, 30, 41, (11,49,0): 57, 31, 42, (11,50,0): 56, 32, 45, (11,51,0): 57, 33, 46, (11,52,0): 58, 34, 47, (11,53,0): 57, 33, 46, (11,54,0): 56, 34, 47, (11,55,0): 55, 33, 46, (11,56,0): 52, 31, 46, (11,57,0): 52, 31, 46, (11,58,0): 52, 31, 46, (11,59,0): 51, 30, 45, (11,60,0): 49, 31, 47, (11,61,0): 48, 30, 46, (11,62,0): 48, 30, 46, (11,63,0): 48, 30, 46, (11,64,0): 48, 31, 47, (11,65,0): 47, 30, 46, (11,66,0): 47, 30, 46, (11,67,0): 46, 29, 45, (11,68,0): 44, 27, 43, (11,69,0): 43, 26, 42, (11,70,0): 43, 26, 42, (11,71,0): 42, 25, 41, (11,72,0): 42, 25, 41, (11,73,0): 42, 25, 41, (11,74,0): 42, 25, 41, (11,75,0): 42, 25, 41, (11,76,0): 42, 25, 41, (11,77,0): 42, 25, 41, (11,78,0): 42, 25, 41, (11,79,0): 42, 25, 41, (11,80,0): 39, 22, 41, (11,81,0): 39, 22, 41, (11,82,0): 36, 21, 40, (11,83,0): 35, 20, 39, (11,84,0): 34, 19, 38, (11,85,0): 33, 18, 37, (11,86,0): 31, 18, 36, (11,87,0): 30, 17, 35, (11,88,0): 32, 21, 38, (11,89,0): 32, 21, 38, (11,90,0): 31, 20, 37, (11,91,0): 30, 19, 36, (11,92,0): 28, 19, 36, (11,93,0): 27, 18, 35, (11,94,0): 27, 18, 35, (11,95,0): 27, 18, 35, (11,96,0): 28, 17, 33, (11,97,0): 27, 16, 32, (11,98,0): 25, 16, 33, (11,99,0): 24, 15, 32, (11,100,0): 24, 15, 32, (11,101,0): 23, 14, 31, (11,102,0): 22, 15, 33, (11,103,0): 22, 15, 33, (11,104,0): 19, 14, 34, (11,105,0): 19, 14, 34, (11,106,0): 19, 14, 34, (11,107,0): 19, 14, 34, (11,108,0): 18, 15, 36, (11,109,0): 18, 15, 36, (11,110,0): 18, 15, 36, (11,111,0): 18, 15, 36, (11,112,0): 24, 16, 39, (11,113,0): 24, 16, 39, (11,114,0): 22, 14, 37, (11,115,0): 22, 14, 37, (11,116,0): 22, 14, 37, (11,117,0): 22, 14, 37, (11,118,0): 24, 16, 39, (11,119,0): 24, 16, 39, (11,120,0): 25, 17, 40, (11,121,0): 25, 17, 40, (11,122,0): 24, 16, 39, (11,123,0): 24, 16, 39, (11,124,0): 23, 15, 38, (11,125,0): 23, 15, 38, (11,126,0): 22, 14, 37, (11,127,0): 20, 15, 37, (11,128,0): 16, 12, 35, (11,129,0): 18, 16, 38, (11,130,0): 20, 18, 40, (11,131,0): 20, 18, 40, (11,132,0): 18, 16, 38, (11,133,0): 16, 14, 36, (11,134,0): 17, 15, 37, (11,135,0): 18, 16, 38, (11,136,0): 16, 14, 36, (11,137,0): 16, 14, 36, (11,138,0): 16, 14, 36, (11,139,0): 17, 15, 37, (11,140,0): 17, 15, 37, (11,141,0): 18, 16, 38, (11,142,0): 18, 16, 38, (11,143,0): 19, 17, 39, (11,144,0): 22, 19, 40, (11,145,0): 22, 19, 40, (11,146,0): 23, 20, 41, (11,147,0): 24, 21, 42, (11,148,0): 25, 20, 42, (11,149,0): 26, 21, 43, (11,150,0): 26, 21, 43, (11,151,0): 27, 22, 44, (11,152,0): 30, 22, 45, (11,153,0): 30, 22, 45, (11,154,0): 29, 19, 43, (11,155,0): 29, 19, 43, (11,156,0): 29, 19, 43, (11,157,0): 29, 19, 43, (11,158,0): 33, 21, 45, (11,159,0): 31, 21, 45, (11,160,0): 31, 21, 45, (11,161,0): 30, 22, 45, (11,162,0): 28, 20, 43, (11,163,0): 28, 20, 43, (11,164,0): 28, 20, 43, (11,165,0): 28, 20, 43, (11,166,0): 30, 22, 45, (11,167,0): 30, 22, 45, (11,168,0): 31, 23, 46, (11,169,0): 31, 23, 46, (11,170,0): 31, 23, 46, (11,171,0): 31, 23, 46, (11,172,0): 31, 23, 46, (11,173,0): 31, 23, 46, (11,174,0): 31, 23, 46, (11,175,0): 31, 23, 46, (11,176,0): 31, 23, 46, (11,177,0): 31, 23, 46, (11,178,0): 31, 23, 46, (11,179,0): 31, 23, 46, (11,180,0): 31, 23, 46, (11,181,0): 31, 23, 46, (11,182,0): 31, 23, 46, (11,183,0): 31, 23, 46, (11,184,0): 31, 23, 46, (11,185,0): 31, 23, 46, (11,186,0): 31, 23, 46, (11,187,0): 31, 23, 46, (11,188,0): 31, 23, 46, (11,189,0): 31, 23, 46, (11,190,0): 31, 23, 46, (11,191,0): 31, 23, 44, (11,192,0): 32, 23, 44, (11,193,0): 32, 23, 42, (11,194,0): 32, 23, 42, (11,195,0): 33, 24, 43, (11,196,0): 33, 24, 43, (11,197,0): 34, 25, 44, (11,198,0): 34, 25, 44, (11,199,0): 34, 25, 44, (11,200,0): 36, 27, 46, (11,201,0): 36, 27, 46, (11,202,0): 36, 27, 46, (11,203,0): 36, 27, 46, (11,204,0): 36, 27, 46, (11,205,0): 36, 27, 46, (11,206,0): 36, 27, 46, (11,207,0): 36, 27, 46, (11,208,0): 34, 25, 44, (11,209,0): 35, 26, 45, (11,210,0): 36, 27, 46, (11,211,0): 37, 28, 47, (11,212,0): 37, 28, 47, (11,213,0): 37, 28, 47, (11,214,0): 36, 27, 46, (11,215,0): 35, 26, 45, (11,216,0): 35, 26, 45, (11,217,0): 35, 26, 45, (11,218,0): 35, 26, 45, (11,219,0): 36, 27, 46, (11,220,0): 36, 27, 46, (11,221,0): 37, 28, 47, (11,222,0): 37, 28, 47, (11,223,0): 37, 28, 47, (11,224,0): 36, 27, 46, (11,225,0): 36, 27, 46, (11,226,0): 37, 28, 47, (11,227,0): 38, 29, 48, (11,228,0): 41, 29, 49, (11,229,0): 42, 30, 50, (11,230,0): 43, 31, 51, (11,231,0): 43, 31, 51, (11,232,0): 48, 35, 55, (11,233,0): 48, 35, 55, (11,234,0): 48, 33, 54, (11,235,0): 47, 32, 53, (11,236,0): 45, 30, 51, (11,237,0): 44, 29, 50, (11,238,0): 45, 27, 49, (11,239,0): 43, 28, 49, (11,240,0): 42, 27, 46, (11,241,0): 42, 29, 47, (11,242,0): 41, 28, 46, (11,243,0): 41, 28, 46, (11,244,0): 41, 28, 46, (11,245,0): 40, 27, 45, (11,246,0): 39, 26, 44, (11,247,0): 39, 26, 44, (11,248,0): 40, 27, 45, (11,249,0): 40, 27, 45, (11,250,0): 40, 27, 45, (11,251,0): 40, 27, 45, (11,252,0): 40, 27, 45, (11,253,0): 40, 27, 45, (11,254,0): 40, 27, 45, (11,255,0): 40, 27, 45, (11,256,0): 41, 27, 44, (11,257,0): 42, 28, 45, (11,258,0): 43, 29, 44, (11,259,0): 44, 30, 45, (11,260,0): 47, 30, 46, (11,261,0): 48, 31, 47, (11,262,0): 49, 33, 46, (11,263,0): 49, 33, 46, (11,264,0): 49, 31, 43, (11,265,0): 49, 31, 43, (11,266,0): 52, 32, 44, (11,267,0): 52, 32, 44, (11,268,0): 54, 34, 45, (11,269,0): 55, 35, 46, (11,270,0): 57, 35, 47, (11,271,0): 58, 37, 46, (11,272,0): 60, 37, 47, (11,273,0): 62, 39, 49, (11,274,0): 65, 42, 52, (11,275,0): 68, 45, 53, (11,276,0): 68, 45, 53, (11,277,0): 67, 44, 52, (11,278,0): 66, 41, 47, (11,279,0): 65, 40, 46, (11,280,0): 68, 41, 48, (11,281,0): 69, 42, 47, (11,282,0): 72, 43, 48, (11,283,0): 75, 46, 51, (11,284,0): 77, 48, 52, (11,285,0): 80, 51, 55, (11,286,0): 81, 52, 56, (11,287,0): 82, 53, 57, (11,288,0): 80, 49, 55, (11,289,0): 80, 49, 55, (11,290,0): 82, 50, 55, (11,291,0): 82, 50, 55, (11,292,0): 83, 51, 56, (11,293,0): 83, 51, 56, (11,294,0): 86, 51, 55, (11,295,0): 86, 51, 55, (11,296,0): 88, 52, 54, (11,297,0): 88, 52, 54, (11,298,0): 88, 52, 54, (11,299,0): 89, 53, 55, (11,300,0): 93, 54, 55, (11,301,0): 96, 57, 58, (11,302,0): 98, 59, 60, (11,303,0): 100, 60, 58, (11,304,0): 104, 61, 54, (11,305,0): 107, 63, 54, (11,306,0): 110, 66, 57, (11,307,0): 113, 69, 58, (11,308,0): 119, 71, 61, (11,309,0): 121, 73, 63, (11,310,0): 122, 74, 62, (11,311,0): 122, 74, 62, (11,312,0): 122, 76, 63, (11,313,0): 121, 75, 60, (11,314,0): 118, 75, 59, (11,315,0): 116, 74, 58, (11,316,0): 113, 75, 56, (11,317,0): 112, 75, 56, (11,318,0): 112, 77, 57, (11,319,0): 113, 78, 58, (11,320,0): 115, 77, 58, (11,321,0): 115, 77, 58, (11,322,0): 115, 77, 58, (11,323,0): 116, 78, 59, (11,324,0): 116, 78, 59, (11,325,0): 117, 79, 60, (11,326,0): 117, 79, 60, (11,327,0): 118, 80, 61, (11,328,0): 118, 80, 61, (11,329,0): 119, 81, 62, (11,330,0): 120, 82, 63, (11,331,0): 121, 83, 64, (11,332,0): 122, 84, 65, (11,333,0): 122, 84, 65, (11,334,0): 121, 83, 64, (11,335,0): 121, 83, 64, (11,336,0): 121, 84, 65, (11,337,0): 120, 85, 65, (11,338,0): 119, 84, 64, (11,339,0): 119, 84, 64, (11,340,0): 118, 83, 64, (11,341,0): 118, 83, 64, (11,342,0): 117, 81, 65, (11,343,0): 117, 81, 65, (11,344,0): 117, 81, 65, (11,345,0): 115, 79, 63, (11,346,0): 113, 77, 63, (11,347,0): 111, 75, 61, (11,348,0): 109, 73, 61, (11,349,0): 108, 72, 60, (11,350,0): 108, 72, 60, (11,351,0): 108, 72, 60, (11,352,0): 105, 71, 61, (11,353,0): 105, 71, 62, (11,354,0): 104, 70, 61, (11,355,0): 103, 69, 60, (11,356,0): 103, 69, 60, (11,357,0): 104, 70, 61, (11,358,0): 105, 71, 62, (11,359,0): 105, 71, 62, (11,360,0): 109, 75, 66, (11,361,0): 110, 76, 67, (11,362,0): 110, 76, 67, (11,363,0): 111, 77, 68, (11,364,0): 112, 78, 69, (11,365,0): 114, 80, 71, (11,366,0): 114, 80, 71, (11,367,0): 115, 81, 71, (11,368,0): 119, 81, 72, (11,369,0): 117, 81, 69, (11,370,0): 113, 79, 69, (11,371,0): 109, 79, 68, (11,372,0): 109, 79, 68, (11,373,0): 108, 80, 68, (11,374,0): 110, 80, 70, (11,375,0): 113, 80, 71, (11,376,0): 112, 77, 71, (11,377,0): 114, 77, 71, (11,378,0): 115, 74, 70, (11,379,0): 113, 74, 69, (11,380,0): 111, 73, 70, (11,381,0): 107, 74, 69, (11,382,0): 106, 73, 68, (11,383,0): 106, 73, 68, (11,384,0): 109, 74, 68, (11,385,0): 112, 75, 69, (11,386,0): 113, 76, 70, (11,387,0): 114, 77, 71, (11,388,0): 115, 78, 72, (11,389,0): 116, 79, 73, (11,390,0): 117, 80, 74, (11,391,0): 117, 80, 74, (11,392,0): 117, 80, 74, (11,393,0): 117, 80, 74, (11,394,0): 116, 79, 73, (11,395,0): 114, 77, 71, (11,396,0): 112, 75, 69, (11,397,0): 109, 72, 66, (11,398,0): 106, 69, 63, (11,399,0): 105, 67, 64, (11,400,0): 100, 65, 63, (11,401,0): 97, 63, 62, (11,402,0): 95, 61, 60, (11,403,0): 93, 59, 58, (11,404,0): 94, 59, 57, (11,405,0): 96, 61, 59, (11,406,0): 101, 63, 62, (11,407,0): 103, 65, 62, (11,408,0): 103, 65, 62, (11,409,0): 103, 65, 62, (11,410,0): 104, 65, 60, (11,411,0): 104, 65, 60, (11,412,0): 105, 64, 60, (11,413,0): 105, 64, 60, (11,414,0): 105, 64, 58, (11,415,0): 105, 64, 58, (11,416,0): 104, 63, 57, (11,417,0): 103, 62, 56, (11,418,0): 101, 60, 54, (11,419,0): 98, 57, 51, (11,420,0): 95, 54, 50, (11,421,0): 91, 52, 47, (11,422,0): 87, 49, 48, (11,423,0): 84, 49, 47, (11,424,0): 78, 44, 43, (11,425,0): 76, 45, 43, (11,426,0): 76, 44, 47, (11,427,0): 74, 44, 46, (11,428,0): 72, 43, 47, (11,429,0): 71, 42, 46, (11,430,0): 71, 42, 46, (11,431,0): 69, 43, 46, (11,432,0): 67, 43, 43, (11,433,0): 66, 45, 42, (11,434,0): 70, 49, 46, (11,435,0): 73, 52, 49, (11,436,0): 79, 55, 53, (11,437,0): 81, 57, 55, (11,438,0): 84, 59, 55, (11,439,0): 85, 60, 56, (11,440,0): 86, 61, 56, (11,441,0): 86, 61, 56, (11,442,0): 88, 61, 54, (11,443,0): 88, 61, 54, (11,444,0): 89, 60, 54, (11,445,0): 89, 60, 54, (11,446,0): 89, 60, 54, (11,447,0): 88, 61, 54, (11,448,0): 90, 62, 58, (11,449,0): 89, 64, 59, (11,450,0): 90, 65, 60, (11,451,0): 91, 66, 61, (11,452,0): 91, 66, 61, (11,453,0): 90, 65, 60, (11,454,0): 89, 64, 59, (11,455,0): 88, 63, 58, (11,456,0): 87, 62, 57, (11,457,0): 87, 62, 57, (11,458,0): 87, 62, 57, (11,459,0): 86, 61, 56, (11,460,0): 86, 61, 56, (11,461,0): 85, 60, 55, (11,462,0): 85, 60, 55, (11,463,0): 85, 60, 56, (11,464,0): 83, 59, 57, (11,465,0): 83, 59, 57, (11,466,0): 84, 60, 58, (11,467,0): 85, 61, 59, (11,468,0): 86, 60, 59, (11,469,0): 87, 61, 60, (11,470,0): 90, 62, 59, (11,471,0): 90, 62, 59, (11,472,0): 89, 61, 57, (11,473,0): 89, 61, 57, (11,474,0): 91, 62, 56, (11,475,0): 93, 64, 58, (11,476,0): 95, 64, 59, (11,477,0): 96, 65, 60, (11,478,0): 97, 66, 61, (11,479,0): 96, 67, 61, (11,480,0): 97, 70, 61, (11,481,0): 95, 71, 61, (11,482,0): 96, 72, 62, (11,483,0): 97, 73, 63, (11,484,0): 98, 74, 64, (11,485,0): 98, 74, 64, (11,486,0): 99, 75, 65, (11,487,0): 99, 75, 65, (11,488,0): 99, 75, 65, (11,489,0): 99, 75, 65, (11,490,0): 98, 74, 64, (11,491,0): 97, 73, 63, (11,492,0): 96, 72, 62, (11,493,0): 95, 71, 61, (11,494,0): 94, 70, 60, (11,495,0): 94, 69, 62, (11,496,0): 91, 66, 62, (11,497,0): 92, 66, 65, (11,498,0): 95, 67, 66, (11,499,0): 93, 67, 66, (11,500,0): 95, 67, 66, (11,501,0): 92, 66, 65, (11,502,0): 93, 65, 64, (11,503,0): 90, 64, 63, (11,504,0): 90, 62, 61, (11,505,0): 87, 61, 60, (11,506,0): 88, 60, 59, (11,507,0): 85, 59, 58, (11,508,0): 87, 59, 58, (11,509,0): 85, 59, 58, (11,510,0): 88, 60, 59, (11,511,0): 87, 61, 60, (11,512,0): 87, 61, 62, (11,513,0): 87, 61, 64, (11,514,0): 86, 60, 63, (11,515,0): 85, 59, 62, (11,516,0): 84, 58, 61, (11,517,0): 82, 56, 59, (11,518,0): 82, 56, 59, (11,519,0): 81, 55, 58, (11,520,0): 84, 58, 61, (11,521,0): 84, 58, 61, (11,522,0): 83, 57, 60, (11,523,0): 82, 56, 59, (11,524,0): 81, 55, 58, (11,525,0): 80, 54, 57, (11,526,0): 79, 53, 56, (11,527,0): 79, 53, 56, (11,528,0): 78, 53, 56, (11,529,0): 78, 53, 56, (11,530,0): 77, 52, 55, (11,531,0): 77, 52, 55, (11,532,0): 76, 51, 54, (11,533,0): 76, 51, 54, (11,534,0): 76, 50, 53, (11,535,0): 76, 50, 53, (11,536,0): 78, 49, 53, (11,537,0): 78, 49, 53, (11,538,0): 80, 49, 54, (11,539,0): 81, 50, 55, (11,540,0): 81, 50, 55, (11,541,0): 80, 49, 54, (11,542,0): 79, 48, 53, (11,543,0): 79, 48, 54, (11,544,0): 79, 48, 56, (11,545,0): 77, 46, 54, (11,546,0): 75, 44, 52, (11,547,0): 74, 43, 49, (11,548,0): 76, 43, 50, (11,549,0): 78, 46, 51, (11,550,0): 81, 49, 52, (11,551,0): 85, 51, 52, (11,552,0): 88, 54, 55, (11,553,0): 89, 53, 53, (11,554,0): 90, 55, 53, (11,555,0): 93, 55, 52, (11,556,0): 93, 55, 52, (11,557,0): 92, 55, 49, (11,558,0): 91, 54, 48, (11,559,0): 90, 53, 47, (11,560,0): 88, 53, 51, (11,561,0): 87, 53, 52, (11,562,0): 86, 55, 53, (11,563,0): 86, 55, 53, (11,564,0): 86, 54, 55, (11,565,0): 84, 52, 53, (11,566,0): 82, 52, 52, (11,567,0): 81, 51, 51, (11,568,0): 77, 48, 50, (11,569,0): 77, 48, 50, (11,570,0): 76, 47, 51, (11,571,0): 72, 46, 49, (11,572,0): 71, 45, 48, (11,573,0): 70, 44, 47, (11,574,0): 69, 42, 47, (11,575,0): 67, 42, 45, (11,576,0): 67, 43, 43, (11,577,0): 66, 42, 40, (11,578,0): 65, 41, 41, (11,579,0): 64, 40, 38, (11,580,0): 64, 40, 40, (11,581,0): 65, 41, 39, (11,582,0): 66, 42, 42, (11,583,0): 67, 43, 41, (11,584,0): 66, 42, 42, (11,585,0): 66, 42, 40, (11,586,0): 67, 43, 43, (11,587,0): 67, 43, 41, (11,588,0): 68, 44, 44, (11,589,0): 69, 45, 43, (11,590,0): 69, 45, 45, (11,591,0): 70, 46, 46, (11,592,0): 70, 44, 45, (11,593,0): 71, 45, 46, (11,594,0): 71, 47, 47, (11,595,0): 70, 49, 48, (11,596,0): 69, 48, 47, (11,597,0): 67, 47, 46, (11,598,0): 65, 47, 45, (11,599,0): 64, 46, 44, (12,0,0): 37, 22, 41, (12,1,0): 37, 22, 41, (12,2,0): 40, 23, 41, (12,3,0): 40, 23, 41, (12,4,0): 41, 24, 42, (12,5,0): 41, 24, 42, (12,6,0): 43, 25, 41, (12,7,0): 43, 25, 41, (12,8,0): 48, 27, 42, (12,9,0): 49, 28, 43, (12,10,0): 50, 29, 44, (12,11,0): 51, 30, 45, (12,12,0): 52, 30, 43, (12,13,0): 52, 30, 43, (12,14,0): 51, 29, 42, (12,15,0): 49, 29, 41, (12,16,0): 49, 28, 45, (12,17,0): 47, 29, 45, (12,18,0): 46, 28, 44, (12,19,0): 46, 28, 44, (12,20,0): 46, 28, 44, (12,21,0): 46, 28, 44, (12,22,0): 46, 28, 44, (12,23,0): 46, 28, 44, (12,24,0): 46, 28, 44, (12,25,0): 46, 28, 44, (12,26,0): 47, 29, 45, (12,27,0): 47, 29, 45, (12,28,0): 47, 29, 45, (12,29,0): 48, 30, 46, (12,30,0): 48, 30, 46, (12,31,0): 48, 30, 46, (12,32,0): 54, 33, 52, (12,33,0): 54, 32, 53, (12,34,0): 54, 33, 52, (12,35,0): 55, 34, 53, (12,36,0): 56, 33, 53, (12,37,0): 57, 34, 54, (12,38,0): 57, 34, 52, (12,39,0): 58, 33, 52, (12,40,0): 59, 35, 51, (12,41,0): 61, 34, 51, (12,42,0): 61, 34, 51, (12,43,0): 61, 34, 51, (12,44,0): 59, 32, 47, (12,45,0): 57, 30, 45, (12,46,0): 56, 28, 43, (12,47,0): 54, 28, 41, (12,48,0): 55, 29, 40, (12,49,0): 56, 30, 41, (12,50,0): 55, 31, 44, (12,51,0): 57, 33, 46, (12,52,0): 57, 33, 46, (12,53,0): 57, 33, 46, (12,54,0): 56, 34, 47, (12,55,0): 55, 33, 46, (12,56,0): 52, 31, 46, (12,57,0): 52, 31, 46, (12,58,0): 52, 31, 46, (12,59,0): 51, 30, 45, (12,60,0): 49, 31, 47, (12,61,0): 48, 30, 46, (12,62,0): 48, 30, 46, (12,63,0): 48, 30, 46, (12,64,0): 48, 31, 47, (12,65,0): 47, 30, 46, (12,66,0): 47, 30, 46, (12,67,0): 46, 29, 45, (12,68,0): 44, 27, 43, (12,69,0): 43, 26, 42, (12,70,0): 43, 26, 42, (12,71,0): 42, 25, 41, (12,72,0): 42, 25, 41, (12,73,0): 42, 25, 41, (12,74,0): 42, 25, 41, (12,75,0): 42, 25, 41, (12,76,0): 42, 25, 41, (12,77,0): 42, 25, 41, (12,78,0): 42, 25, 41, (12,79,0): 42, 25, 41, (12,80,0): 39, 22, 41, (12,81,0): 39, 22, 41, (12,82,0): 36, 21, 40, (12,83,0): 35, 20, 39, (12,84,0): 34, 19, 38, (12,85,0): 33, 18, 37, (12,86,0): 31, 18, 36, (12,87,0): 30, 17, 35, (12,88,0): 29, 18, 35, (12,89,0): 29, 18, 35, (12,90,0): 30, 19, 36, (12,91,0): 31, 20, 37, (12,92,0): 29, 20, 37, (12,93,0): 30, 21, 38, (12,94,0): 30, 21, 38, (12,95,0): 30, 21, 38, (12,96,0): 28, 17, 33, (12,97,0): 27, 16, 32, (12,98,0): 25, 16, 33, (12,99,0): 24, 15, 32, (12,100,0): 24, 15, 32, (12,101,0): 23, 14, 31, (12,102,0): 22, 15, 33, (12,103,0): 22, 15, 33, (12,104,0): 20, 15, 35, (12,105,0): 20, 15, 35, (12,106,0): 20, 15, 35, (12,107,0): 20, 15, 35, (12,108,0): 19, 16, 37, (12,109,0): 19, 16, 37, (12,110,0): 19, 16, 37, (12,111,0): 19, 16, 37, (12,112,0): 24, 16, 39, (12,113,0): 24, 16, 39, (12,114,0): 22, 14, 37, (12,115,0): 22, 14, 37, (12,116,0): 22, 14, 37, (12,117,0): 22, 14, 37, (12,118,0): 24, 16, 39, (12,119,0): 24, 16, 39, (12,120,0): 24, 16, 39, (12,121,0): 24, 16, 39, (12,122,0): 24, 16, 39, (12,123,0): 23, 15, 38, (12,124,0): 23, 15, 38, (12,125,0): 22, 14, 37, (12,126,0): 22, 14, 37, (12,127,0): 20, 15, 37, (12,128,0): 15, 13, 35, (12,129,0): 16, 17, 38, (12,130,0): 18, 19, 40, (12,131,0): 18, 19, 40, (12,132,0): 16, 17, 38, (12,133,0): 14, 15, 36, (12,134,0): 15, 16, 37, (12,135,0): 16, 17, 38, (12,136,0): 15, 16, 37, (12,137,0): 15, 16, 37, (12,138,0): 15, 16, 37, (12,139,0): 16, 17, 38, (12,140,0): 17, 18, 39, (12,141,0): 17, 18, 39, (12,142,0): 17, 18, 39, (12,143,0): 20, 18, 40, (12,144,0): 24, 21, 42, (12,145,0): 24, 21, 42, (12,146,0): 25, 22, 43, (12,147,0): 25, 22, 43, (12,148,0): 26, 21, 43, (12,149,0): 27, 22, 44, (12,150,0): 27, 22, 44, (12,151,0): 27, 22, 44, (12,152,0): 30, 22, 45, (12,153,0): 30, 22, 45, (12,154,0): 29, 19, 43, (12,155,0): 29, 19, 43, (12,156,0): 29, 19, 43, (12,157,0): 29, 19, 43, (12,158,0): 33, 21, 45, (12,159,0): 31, 21, 45, (12,160,0): 31, 21, 45, (12,161,0): 30, 22, 45, (12,162,0): 28, 20, 43, (12,163,0): 28, 20, 43, (12,164,0): 28, 20, 43, (12,165,0): 28, 20, 43, (12,166,0): 30, 22, 45, (12,167,0): 30, 22, 45, (12,168,0): 30, 22, 45, (12,169,0): 30, 22, 45, (12,170,0): 30, 22, 45, (12,171,0): 30, 22, 45, (12,172,0): 30, 22, 45, (12,173,0): 30, 22, 45, (12,174,0): 30, 22, 45, (12,175,0): 30, 22, 45, (12,176,0): 31, 23, 46, (12,177,0): 31, 23, 46, (12,178,0): 31, 23, 46, (12,179,0): 31, 23, 46, (12,180,0): 31, 23, 46, (12,181,0): 31, 23, 46, (12,182,0): 31, 23, 46, (12,183,0): 31, 23, 46, (12,184,0): 31, 23, 46, (12,185,0): 31, 23, 46, (12,186,0): 31, 23, 46, (12,187,0): 31, 23, 46, (12,188,0): 31, 23, 46, (12,189,0): 31, 23, 46, (12,190,0): 31, 23, 46, (12,191,0): 31, 23, 44, (12,192,0): 32, 23, 44, (12,193,0): 32, 23, 42, (12,194,0): 32, 23, 42, (12,195,0): 33, 24, 43, (12,196,0): 33, 24, 43, (12,197,0): 34, 25, 44, (12,198,0): 34, 25, 44, (12,199,0): 34, 25, 44, (12,200,0): 36, 27, 46, (12,201,0): 36, 27, 46, (12,202,0): 36, 27, 46, (12,203,0): 36, 27, 46, (12,204,0): 36, 27, 46, (12,205,0): 36, 27, 46, (12,206,0): 36, 27, 46, (12,207,0): 36, 27, 46, (12,208,0): 34, 25, 44, (12,209,0): 35, 26, 45, (12,210,0): 36, 27, 46, (12,211,0): 37, 28, 47, (12,212,0): 37, 28, 47, (12,213,0): 37, 28, 47, (12,214,0): 36, 27, 46, (12,215,0): 35, 26, 45, (12,216,0): 35, 26, 45, (12,217,0): 35, 26, 45, (12,218,0): 35, 26, 45, (12,219,0): 36, 27, 46, (12,220,0): 36, 27, 46, (12,221,0): 37, 28, 47, (12,222,0): 37, 28, 47, (12,223,0): 37, 28, 47, (12,224,0): 37, 28, 47, (12,225,0): 37, 28, 47, (12,226,0): 38, 29, 48, (12,227,0): 39, 30, 49, (12,228,0): 42, 30, 50, (12,229,0): 43, 31, 51, (12,230,0): 44, 32, 52, (12,231,0): 44, 32, 52, (12,232,0): 49, 36, 56, (12,233,0): 48, 35, 55, (12,234,0): 48, 33, 54, (12,235,0): 47, 32, 53, (12,236,0): 45, 30, 51, (12,237,0): 44, 29, 50, (12,238,0): 45, 27, 49, (12,239,0): 42, 27, 48, (12,240,0): 43, 28, 47, (12,241,0): 42, 29, 47, (12,242,0): 41, 28, 46, (12,243,0): 40, 27, 45, (12,244,0): 40, 27, 45, (12,245,0): 40, 27, 45, (12,246,0): 39, 26, 44, (12,247,0): 40, 27, 45, (12,248,0): 41, 28, 46, (12,249,0): 41, 28, 46, (12,250,0): 41, 28, 46, (12,251,0): 41, 28, 46, (12,252,0): 41, 28, 46, (12,253,0): 41, 28, 46, (12,254,0): 41, 28, 46, (12,255,0): 41, 28, 46, (12,256,0): 42, 28, 45, (12,257,0): 42, 28, 43, (12,258,0): 45, 28, 44, (12,259,0): 46, 29, 45, (12,260,0): 47, 31, 44, (12,261,0): 48, 32, 45, (12,262,0): 50, 32, 46, (12,263,0): 51, 33, 47, (12,264,0): 51, 31, 43, (12,265,0): 52, 32, 44, (12,266,0): 53, 33, 44, (12,267,0): 54, 34, 45, (12,268,0): 57, 35, 47, (12,269,0): 57, 35, 47, (12,270,0): 58, 37, 46, (12,271,0): 58, 37, 46, (12,272,0): 60, 37, 47, (12,273,0): 63, 40, 48, (12,274,0): 66, 43, 51, (12,275,0): 68, 45, 53, (12,276,0): 71, 45, 54, (12,277,0): 69, 44, 50, (12,278,0): 68, 41, 48, (12,279,0): 66, 39, 46, (12,280,0): 68, 41, 46, (12,281,0): 69, 42, 47, (12,282,0): 72, 43, 48, (12,283,0): 75, 46, 50, (12,284,0): 78, 47, 52, (12,285,0): 81, 50, 55, (12,286,0): 82, 52, 54, (12,287,0): 83, 53, 55, (12,288,0): 81, 49, 54, (12,289,0): 81, 49, 54, (12,290,0): 82, 50, 55, (12,291,0): 82, 50, 55, (12,292,0): 85, 50, 54, (12,293,0): 85, 50, 54, (12,294,0): 86, 51, 55, (12,295,0): 86, 51, 55, (12,296,0): 89, 53, 55, (12,297,0): 89, 53, 55, (12,298,0): 91, 52, 53, (12,299,0): 91, 52, 53, (12,300,0): 93, 54, 55, (12,301,0): 95, 56, 57, (12,302,0): 98, 58, 58, (12,303,0): 101, 60, 58, (12,304,0): 105, 62, 55, (12,305,0): 107, 63, 52, (12,306,0): 110, 66, 55, (12,307,0): 114, 70, 59, (12,308,0): 119, 71, 61, (12,309,0): 121, 73, 61, (12,310,0): 122, 74, 62, (12,311,0): 122, 74, 62, (12,312,0): 123, 77, 62, (12,313,0): 122, 76, 61, (12,314,0): 119, 76, 60, (12,315,0): 116, 75, 57, (12,316,0): 114, 76, 57, (12,317,0): 113, 76, 57, (12,318,0): 113, 78, 56, (12,319,0): 113, 78, 56, (12,320,0): 115, 77, 58, (12,321,0): 116, 78, 59, (12,322,0): 116, 78, 59, (12,323,0): 117, 79, 60, (12,324,0): 117, 79, 60, (12,325,0): 118, 80, 61, (12,326,0): 118, 80, 61, (12,327,0): 118, 80, 61, (12,328,0): 119, 81, 62, (12,329,0): 120, 82, 63, (12,330,0): 121, 83, 64, (12,331,0): 123, 85, 66, (12,332,0): 123, 85, 66, (12,333,0): 123, 85, 66, (12,334,0): 122, 84, 65, (12,335,0): 122, 84, 65, (12,336,0): 122, 86, 64, (12,337,0): 122, 86, 64, (12,338,0): 121, 84, 65, (12,339,0): 121, 84, 65, (12,340,0): 120, 83, 64, (12,341,0): 120, 83, 64, (12,342,0): 119, 82, 64, (12,343,0): 119, 82, 64, (12,344,0): 118, 81, 65, (12,345,0): 117, 80, 64, (12,346,0): 115, 78, 62, (12,347,0): 112, 75, 59, (12,348,0): 111, 73, 60, (12,349,0): 110, 72, 59, (12,350,0): 110, 72, 59, (12,351,0): 109, 73, 61, (12,352,0): 107, 73, 63, (12,353,0): 106, 72, 63, (12,354,0): 105, 71, 62, (12,355,0): 105, 71, 62, (12,356,0): 105, 71, 62, (12,357,0): 105, 71, 62, (12,358,0): 106, 72, 63, (12,359,0): 107, 73, 64, (12,360,0): 110, 76, 67, (12,361,0): 111, 77, 68, (12,362,0): 111, 77, 68, (12,363,0): 113, 79, 70, (12,364,0): 114, 80, 71, (12,365,0): 115, 81, 72, (12,366,0): 115, 81, 72, (12,367,0): 116, 82, 72, (12,368,0): 120, 82, 73, (12,369,0): 118, 82, 70, (12,370,0): 115, 81, 71, (12,371,0): 111, 81, 70, (12,372,0): 110, 80, 69, (12,373,0): 109, 81, 69, (12,374,0): 110, 80, 70, (12,375,0): 113, 80, 71, (12,376,0): 112, 77, 71, (12,377,0): 114, 77, 71, (12,378,0): 115, 74, 70, (12,379,0): 113, 74, 69, (12,380,0): 111, 73, 70, (12,381,0): 107, 74, 69, (12,382,0): 106, 73, 68, (12,383,0): 106, 73, 68, (12,384,0): 112, 75, 69, (12,385,0): 113, 74, 67, (12,386,0): 114, 75, 68, (12,387,0): 115, 76, 69, (12,388,0): 116, 77, 70, (12,389,0): 117, 78, 71, (12,390,0): 118, 79, 72, (12,391,0): 119, 80, 73, (12,392,0): 118, 79, 72, (12,393,0): 119, 80, 73, (12,394,0): 119, 80, 73, (12,395,0): 118, 79, 72, (12,396,0): 116, 77, 70, (12,397,0): 113, 74, 67, (12,398,0): 110, 71, 64, (12,399,0): 107, 70, 64, (12,400,0): 102, 67, 65, (12,401,0): 100, 64, 64, (12,402,0): 97, 62, 60, (12,403,0): 95, 60, 58, (12,404,0): 94, 59, 57, (12,405,0): 96, 61, 59, (12,406,0): 101, 63, 60, (12,407,0): 103, 65, 62, (12,408,0): 105, 65, 63, (12,409,0): 105, 66, 61, (12,410,0): 106, 65, 61, (12,411,0): 106, 65, 61, (12,412,0): 106, 65, 59, (12,413,0): 106, 65, 59, (12,414,0): 106, 65, 59, (12,415,0): 106, 65, 59, (12,416,0): 108, 65, 58, (12,417,0): 107, 64, 57, (12,418,0): 104, 61, 54, (12,419,0): 99, 58, 52, (12,420,0): 95, 54, 50, (12,421,0): 91, 52, 47, (12,422,0): 88, 50, 49, (12,423,0): 85, 50, 48, (12,424,0): 81, 47, 46, (12,425,0): 79, 48, 46, (12,426,0): 78, 46, 49, (12,427,0): 75, 45, 47, (12,428,0): 73, 44, 48, (12,429,0): 71, 42, 47, (12,430,0): 68, 41, 46, (12,431,0): 68, 42, 45, (12,432,0): 65, 41, 41, (12,433,0): 65, 44, 41, (12,434,0): 69, 48, 45, (12,435,0): 74, 53, 50, (12,436,0): 80, 56, 54, (12,437,0): 82, 58, 56, (12,438,0): 84, 59, 55, (12,439,0): 85, 60, 56, (12,440,0): 86, 61, 56, (12,441,0): 86, 61, 56, (12,442,0): 88, 61, 54, (12,443,0): 88, 61, 54, (12,444,0): 89, 60, 54, (12,445,0): 89, 60, 54, (12,446,0): 89, 60, 54, (12,447,0): 88, 61, 54, (12,448,0): 89, 61, 57, (12,449,0): 88, 63, 59, (12,450,0): 89, 64, 60, (12,451,0): 90, 65, 61, (12,452,0): 90, 65, 61, (12,453,0): 89, 64, 60, (12,454,0): 88, 63, 59, (12,455,0): 87, 62, 58, (12,456,0): 87, 62, 58, (12,457,0): 87, 62, 58, (12,458,0): 86, 61, 57, (12,459,0): 86, 61, 57, (12,460,0): 85, 60, 56, (12,461,0): 85, 60, 56, (12,462,0): 84, 59, 55, (12,463,0): 84, 59, 55, (12,464,0): 83, 57, 56, (12,465,0): 83, 57, 56, (12,466,0): 84, 58, 57, (12,467,0): 85, 59, 58, (12,468,0): 89, 61, 60, (12,469,0): 90, 62, 61, (12,470,0): 91, 63, 60, (12,471,0): 91, 63, 60, (12,472,0): 91, 62, 58, (12,473,0): 92, 63, 59, (12,474,0): 93, 62, 57, (12,475,0): 94, 63, 58, (12,476,0): 95, 64, 59, (12,477,0): 96, 65, 60, (12,478,0): 99, 66, 61, (12,479,0): 97, 66, 61, (12,480,0): 97, 70, 63, (12,481,0): 95, 70, 63, (12,482,0): 95, 70, 63, (12,483,0): 95, 70, 63, (12,484,0): 96, 71, 64, (12,485,0): 96, 71, 64, (12,486,0): 96, 71, 64, (12,487,0): 96, 71, 64, (12,488,0): 93, 68, 61, (12,489,0): 93, 68, 61, (12,490,0): 92, 67, 60, (12,491,0): 91, 66, 59, (12,492,0): 90, 65, 58, (12,493,0): 89, 64, 57, (12,494,0): 88, 63, 56, (12,495,0): 88, 63, 58, (12,496,0): 87, 61, 60, (12,497,0): 87, 63, 63, (12,498,0): 89, 63, 64, (12,499,0): 89, 65, 65, (12,500,0): 91, 65, 66, (12,501,0): 89, 65, 65, (12,502,0): 89, 63, 62, (12,503,0): 87, 63, 61, (12,504,0): 87, 61, 60, (12,505,0): 85, 61, 59, (12,506,0): 85, 59, 58, (12,507,0): 84, 60, 58, (12,508,0): 85, 60, 56, (12,509,0): 85, 61, 57, (12,510,0): 87, 62, 58, (12,511,0): 88, 62, 61, (12,512,0): 89, 63, 64, (12,513,0): 89, 63, 66, (12,514,0): 87, 61, 64, (12,515,0): 86, 60, 63, (12,516,0): 84, 58, 61, (12,517,0): 83, 57, 60, (12,518,0): 82, 56, 59, (12,519,0): 81, 55, 58, (12,520,0): 84, 58, 61, (12,521,0): 84, 58, 61, (12,522,0): 83, 57, 60, (12,523,0): 82, 56, 59, (12,524,0): 81, 55, 58, (12,525,0): 80, 54, 57, (12,526,0): 79, 53, 56, (12,527,0): 79, 53, 56, (12,528,0): 77, 52, 55, (12,529,0): 75, 53, 55, (12,530,0): 75, 53, 55, (12,531,0): 74, 52, 54, (12,532,0): 76, 51, 54, (12,533,0): 75, 50, 53, (12,534,0): 76, 50, 53, (12,535,0): 76, 50, 53, (12,536,0): 76, 50, 53, (12,537,0): 76, 50, 53, (12,538,0): 79, 50, 54, (12,539,0): 80, 51, 55, (12,540,0): 81, 50, 55, (12,541,0): 80, 49, 54, (12,542,0): 79, 48, 53, (12,543,0): 79, 48, 54, (12,544,0): 79, 49, 57, (12,545,0): 77, 47, 55, (12,546,0): 74, 44, 52, (12,547,0): 72, 43, 48, (12,548,0): 73, 42, 48, (12,549,0): 76, 45, 50, (12,550,0): 79, 49, 51, (12,551,0): 83, 51, 52, (12,552,0): 86, 54, 55, (12,553,0): 89, 55, 54, (12,554,0): 90, 56, 54, (12,555,0): 92, 57, 53, (12,556,0): 92, 57, 53, (12,557,0): 91, 56, 50, (12,558,0): 90, 55, 49, (12,559,0): 90, 55, 49, (12,560,0): 88, 55, 50, (12,561,0): 89, 55, 53, (12,562,0): 90, 56, 54, (12,563,0): 90, 56, 54, (12,564,0): 87, 56, 54, (12,565,0): 86, 55, 53, (12,566,0): 84, 54, 54, (12,567,0): 83, 53, 53, (12,568,0): 80, 51, 53, (12,569,0): 79, 50, 52, (12,570,0): 76, 50, 53, (12,571,0): 74, 48, 51, (12,572,0): 72, 45, 50, (12,573,0): 70, 45, 49, (12,574,0): 68, 43, 47, (12,575,0): 68, 43, 47, (12,576,0): 67, 42, 45, (12,577,0): 65, 44, 43, (12,578,0): 63, 41, 43, (12,579,0): 63, 42, 41, (12,580,0): 63, 41, 43, (12,581,0): 63, 42, 41, (12,582,0): 65, 43, 45, (12,583,0): 65, 44, 43, (12,584,0): 64, 42, 44, (12,585,0): 64, 43, 42, (12,586,0): 64, 42, 44, (12,587,0): 64, 43, 42, (12,588,0): 65, 43, 45, (12,589,0): 65, 44, 43, (12,590,0): 65, 43, 45, (12,591,0): 68, 43, 46, (12,592,0): 69, 43, 46, (12,593,0): 70, 44, 47, (12,594,0): 70, 45, 48, (12,595,0): 69, 47, 49, (12,596,0): 70, 48, 50, (12,597,0): 68, 48, 49, (12,598,0): 66, 48, 48, (12,599,0): 65, 47, 47, (13,0,0): 37, 22, 41, (13,1,0): 37, 22, 41, (13,2,0): 40, 23, 41, (13,3,0): 40, 23, 41, (13,4,0): 41, 24, 42, (13,5,0): 41, 24, 42, (13,6,0): 43, 25, 41, (13,7,0): 43, 25, 41, (13,8,0): 48, 27, 42, (13,9,0): 49, 28, 43, (13,10,0): 50, 29, 44, (13,11,0): 51, 30, 45, (13,12,0): 53, 31, 44, (13,13,0): 53, 31, 44, (13,14,0): 52, 30, 43, (13,15,0): 50, 30, 42, (13,16,0): 51, 30, 47, (13,17,0): 48, 30, 46, (13,18,0): 47, 29, 45, (13,19,0): 46, 28, 44, (13,20,0): 45, 27, 43, (13,21,0): 46, 28, 44, (13,22,0): 46, 28, 44, (13,23,0): 47, 29, 45, (13,24,0): 47, 29, 45, (13,25,0): 47, 29, 45, (13,26,0): 47, 29, 45, (13,27,0): 47, 29, 45, (13,28,0): 47, 29, 45, (13,29,0): 47, 29, 45, (13,30,0): 47, 29, 45, (13,31,0): 47, 29, 45, (13,32,0): 50, 31, 51, (13,33,0): 53, 31, 52, (13,34,0): 53, 32, 51, (13,35,0): 53, 32, 51, (13,36,0): 54, 33, 52, (13,37,0): 55, 34, 53, (13,38,0): 56, 33, 51, (13,39,0): 56, 33, 51, (13,40,0): 56, 31, 50, (13,41,0): 56, 32, 48, (13,42,0): 57, 33, 49, (13,43,0): 59, 32, 49, (13,44,0): 58, 31, 46, (13,45,0): 56, 29, 44, (13,46,0): 55, 28, 43, (13,47,0): 54, 28, 41, (13,48,0): 53, 27, 40, (13,49,0): 54, 28, 39, (13,50,0): 54, 30, 43, (13,51,0): 56, 32, 45, (13,52,0): 57, 33, 46, (13,53,0): 57, 33, 46, (13,54,0): 56, 34, 47, (13,55,0): 56, 34, 47, (13,56,0): 52, 31, 46, (13,57,0): 52, 31, 46, (13,58,0): 52, 31, 46, (13,59,0): 51, 30, 45, (13,60,0): 49, 31, 47, (13,61,0): 48, 30, 46, (13,62,0): 48, 30, 46, (13,63,0): 48, 30, 46, (13,64,0): 48, 31, 47, (13,65,0): 47, 30, 46, (13,66,0): 47, 30, 46, (13,67,0): 46, 29, 45, (13,68,0): 44, 27, 43, (13,69,0): 43, 26, 42, (13,70,0): 43, 26, 42, (13,71,0): 42, 25, 41, (13,72,0): 41, 24, 40, (13,73,0): 41, 24, 40, (13,74,0): 41, 24, 40, (13,75,0): 41, 24, 40, (13,76,0): 41, 24, 40, (13,77,0): 41, 24, 40, (13,78,0): 41, 24, 40, (13,79,0): 41, 24, 40, (13,80,0): 40, 23, 42, (13,81,0): 39, 22, 41, (13,82,0): 37, 22, 41, (13,83,0): 36, 21, 40, (13,84,0): 34, 19, 38, (13,85,0): 33, 18, 37, (13,86,0): 32, 19, 37, (13,87,0): 31, 18, 36, (13,88,0): 27, 16, 33, (13,89,0): 29, 18, 35, (13,90,0): 30, 19, 36, (13,91,0): 32, 21, 38, (13,92,0): 31, 22, 39, (13,93,0): 31, 22, 39, (13,94,0): 31, 22, 39, (13,95,0): 31, 22, 39, (13,96,0): 28, 17, 33, (13,97,0): 28, 17, 33, (13,98,0): 26, 17, 34, (13,99,0): 25, 16, 33, (13,100,0): 25, 16, 33, (13,101,0): 24, 15, 32, (13,102,0): 23, 16, 34, (13,103,0): 23, 16, 34, (13,104,0): 20, 15, 35, (13,105,0): 20, 15, 35, (13,106,0): 20, 15, 35, (13,107,0): 20, 15, 35, (13,108,0): 19, 16, 37, (13,109,0): 19, 16, 37, (13,110,0): 19, 16, 37, (13,111,0): 19, 16, 37, (13,112,0): 24, 16, 39, (13,113,0): 24, 16, 39, (13,114,0): 22, 14, 37, (13,115,0): 22, 14, 37, (13,116,0): 22, 14, 37, (13,117,0): 22, 14, 37, (13,118,0): 24, 16, 39, (13,119,0): 24, 16, 39, (13,120,0): 25, 17, 40, (13,121,0): 24, 16, 39, (13,122,0): 24, 16, 39, (13,123,0): 23, 15, 38, (13,124,0): 23, 15, 38, (13,125,0): 22, 14, 37, (13,126,0): 22, 14, 37, (13,127,0): 20, 15, 37, (13,128,0): 15, 13, 35, (13,129,0): 16, 17, 38, (13,130,0): 19, 20, 41, (13,131,0): 19, 20, 41, (13,132,0): 17, 18, 39, (13,133,0): 15, 16, 37, (13,134,0): 16, 17, 38, (13,135,0): 17, 18, 39, (13,136,0): 17, 18, 39, (13,137,0): 17, 18, 39, (13,138,0): 17, 18, 39, (13,139,0): 18, 19, 40, (13,140,0): 18, 19, 40, (13,141,0): 19, 20, 41, (13,142,0): 19, 20, 41, (13,143,0): 19, 20, 41, (13,144,0): 26, 23, 44, (13,145,0): 26, 23, 44, (13,146,0): 26, 23, 44, (13,147,0): 26, 23, 44, (13,148,0): 27, 22, 44, (13,149,0): 27, 22, 44, (13,150,0): 27, 22, 44, (13,151,0): 27, 22, 44, (13,152,0): 30, 22, 45, (13,153,0): 30, 22, 45, (13,154,0): 29, 19, 43, (13,155,0): 29, 19, 43, (13,156,0): 29, 19, 43, (13,157,0): 29, 19, 43, (13,158,0): 33, 21, 45, (13,159,0): 31, 21, 45, (13,160,0): 31, 21, 45, (13,161,0): 30, 22, 45, (13,162,0): 28, 20, 43, (13,163,0): 28, 20, 43, (13,164,0): 28, 20, 43, (13,165,0): 28, 20, 43, (13,166,0): 30, 22, 45, (13,167,0): 30, 22, 45, (13,168,0): 30, 22, 45, (13,169,0): 30, 22, 45, (13,170,0): 30, 22, 45, (13,171,0): 30, 22, 45, (13,172,0): 30, 22, 45, (13,173,0): 30, 22, 45, (13,174,0): 30, 22, 45, (13,175,0): 30, 22, 45, (13,176,0): 31, 23, 46, (13,177,0): 31, 23, 46, (13,178,0): 31, 23, 46, (13,179,0): 31, 23, 46, (13,180,0): 31, 23, 46, (13,181,0): 31, 23, 46, (13,182,0): 31, 23, 46, (13,183,0): 31, 23, 46, (13,184,0): 31, 23, 46, (13,185,0): 31, 23, 46, (13,186,0): 31, 23, 46, (13,187,0): 31, 23, 46, (13,188,0): 31, 23, 46, (13,189,0): 31, 23, 46, (13,190,0): 31, 23, 46, (13,191,0): 31, 23, 44, (13,192,0): 32, 23, 44, (13,193,0): 32, 23, 42, (13,194,0): 32, 23, 42, (13,195,0): 33, 24, 43, (13,196,0): 33, 24, 43, (13,197,0): 34, 25, 44, (13,198,0): 34, 25, 44, (13,199,0): 34, 25, 44, (13,200,0): 36, 27, 46, (13,201,0): 36, 27, 46, (13,202,0): 36, 27, 46, (13,203,0): 36, 27, 46, (13,204,0): 36, 27, 46, (13,205,0): 36, 27, 46, (13,206,0): 36, 27, 46, (13,207,0): 36, 27, 46, (13,208,0): 35, 26, 45, (13,209,0): 36, 27, 46, (13,210,0): 37, 28, 47, (13,211,0): 37, 28, 47, (13,212,0): 37, 28, 47, (13,213,0): 36, 27, 46, (13,214,0): 35, 26, 45, (13,215,0): 34, 25, 44, (13,216,0): 35, 26, 45, (13,217,0): 35, 26, 45, (13,218,0): 35, 26, 45, (13,219,0): 36, 27, 46, (13,220,0): 36, 27, 46, (13,221,0): 37, 28, 47, (13,222,0): 37, 28, 47, (13,223,0): 37, 28, 47, (13,224,0): 38, 29, 48, (13,225,0): 38, 29, 48, (13,226,0): 39, 30, 49, (13,227,0): 40, 31, 50, (13,228,0): 43, 31, 51, (13,229,0): 44, 32, 52, (13,230,0): 45, 33, 53, (13,231,0): 45, 33, 53, (13,232,0): 48, 35, 55, (13,233,0): 48, 35, 55, (13,234,0): 48, 33, 54, (13,235,0): 47, 32, 53, (13,236,0): 45, 30, 51, (13,237,0): 44, 29, 50, (13,238,0): 45, 27, 49, (13,239,0): 43, 28, 49, (13,240,0): 44, 29, 48, (13,241,0): 42, 29, 47, (13,242,0): 41, 28, 46, (13,243,0): 40, 27, 45, (13,244,0): 39, 26, 44, (13,245,0): 39, 26, 44, (13,246,0): 40, 27, 45, (13,247,0): 40, 27, 45, (13,248,0): 41, 28, 46, (13,249,0): 41, 28, 46, (13,250,0): 41, 28, 46, (13,251,0): 41, 28, 46, (13,252,0): 41, 28, 46, (13,253,0): 41, 28, 46, (13,254,0): 41, 28, 46, (13,255,0): 41, 28, 45, (13,256,0): 43, 29, 46, (13,257,0): 43, 29, 44, (13,258,0): 46, 29, 45, (13,259,0): 47, 30, 46, (13,260,0): 48, 32, 45, (13,261,0): 49, 33, 46, (13,262,0): 51, 33, 47, (13,263,0): 51, 33, 47, (13,264,0): 52, 32, 44, (13,265,0): 53, 33, 45, (13,266,0): 54, 34, 45, (13,267,0): 56, 36, 47, (13,268,0): 58, 36, 48, (13,269,0): 59, 37, 49, (13,270,0): 58, 37, 46, (13,271,0): 58, 37, 46, (13,272,0): 62, 39, 47, (13,273,0): 64, 41, 49, (13,274,0): 66, 43, 51, (13,275,0): 68, 45, 53, (13,276,0): 70, 45, 51, (13,277,0): 69, 44, 50, (13,278,0): 69, 42, 49, (13,279,0): 68, 41, 48, (13,280,0): 69, 42, 47, (13,281,0): 70, 43, 48, (13,282,0): 73, 44, 48, (13,283,0): 75, 46, 50, (13,284,0): 78, 47, 52, (13,285,0): 80, 49, 54, (13,286,0): 81, 51, 53, (13,287,0): 82, 52, 54, (13,288,0): 81, 49, 54, (13,289,0): 81, 49, 54, (13,290,0): 82, 50, 55, (13,291,0): 82, 50, 55, (13,292,0): 85, 50, 54, (13,293,0): 85, 50, 54, (13,294,0): 86, 51, 55, (13,295,0): 86, 52, 53, (13,296,0): 90, 54, 56, (13,297,0): 90, 54, 56, (13,298,0): 91, 52, 53, (13,299,0): 92, 53, 54, (13,300,0): 93, 54, 55, (13,301,0): 95, 56, 57, (13,302,0): 98, 58, 58, (13,303,0): 100, 59, 55, (13,304,0): 105, 62, 55, (13,305,0): 108, 64, 53, (13,306,0): 111, 67, 56, (13,307,0): 114, 70, 59, (13,308,0): 120, 72, 60, (13,309,0): 122, 74, 62, (13,310,0): 123, 75, 63, (13,311,0): 123, 75, 63, (13,312,0): 123, 77, 62, (13,313,0): 122, 76, 61, (13,314,0): 119, 76, 59, (13,315,0): 117, 76, 58, (13,316,0): 114, 76, 57, (13,317,0): 113, 76, 57, (13,318,0): 113, 78, 56, (13,319,0): 114, 79, 57, (13,320,0): 116, 78, 59, (13,321,0): 116, 78, 59, (13,322,0): 116, 78, 59, (13,323,0): 117, 79, 60, (13,324,0): 118, 80, 61, (13,325,0): 118, 80, 61, (13,326,0): 118, 80, 61, (13,327,0): 119, 81, 62, (13,328,0): 120, 82, 63, (13,329,0): 121, 83, 64, (13,330,0): 122, 84, 65, (13,331,0): 124, 86, 67, (13,332,0): 124, 86, 67, (13,333,0): 124, 86, 67, (13,334,0): 123, 85, 66, (13,335,0): 123, 85, 66, (13,336,0): 123, 87, 65, (13,337,0): 123, 87, 65, (13,338,0): 122, 85, 66, (13,339,0): 122, 85, 66, (13,340,0): 121, 84, 65, (13,341,0): 121, 84, 65, (13,342,0): 120, 83, 65, (13,343,0): 120, 83, 65, (13,344,0): 119, 82, 66, (13,345,0): 117, 80, 64, (13,346,0): 115, 78, 62, (13,347,0): 113, 76, 60, (13,348,0): 111, 73, 60, (13,349,0): 110, 72, 59, (13,350,0): 110, 72, 59, (13,351,0): 109, 73, 61, (13,352,0): 111, 74, 65, (13,353,0): 108, 74, 65, (13,354,0): 107, 73, 64, (13,355,0): 106, 72, 63, (13,356,0): 106, 72, 63, (13,357,0): 107, 73, 64, (13,358,0): 108, 74, 65, (13,359,0): 109, 75, 66, (13,360,0): 111, 77, 68, (13,361,0): 112, 78, 69, (13,362,0): 112, 78, 69, (13,363,0): 114, 80, 71, (13,364,0): 115, 81, 72, (13,365,0): 116, 82, 73, (13,366,0): 116, 82, 73, (13,367,0): 117, 83, 73, (13,368,0): 121, 83, 74, (13,369,0): 120, 84, 72, (13,370,0): 117, 83, 73, (13,371,0): 113, 83, 72, (13,372,0): 112, 82, 71, (13,373,0): 110, 82, 70, (13,374,0): 110, 80, 70, (13,375,0): 112, 79, 70, (13,376,0): 112, 77, 71, (13,377,0): 114, 77, 71, (13,378,0): 115, 74, 70, (13,379,0): 113, 74, 69, (13,380,0): 111, 73, 70, (13,381,0): 107, 74, 69, (13,382,0): 106, 73, 68, (13,383,0): 106, 73, 66, (13,384,0): 113, 76, 70, (13,385,0): 114, 75, 68, (13,386,0): 115, 76, 69, (13,387,0): 116, 77, 70, (13,388,0): 117, 78, 71, (13,389,0): 118, 79, 72, (13,390,0): 119, 80, 73, (13,391,0): 119, 80, 73, (13,392,0): 119, 80, 73, (13,393,0): 120, 81, 74, (13,394,0): 121, 82, 75, (13,395,0): 120, 81, 74, (13,396,0): 119, 80, 73, (13,397,0): 116, 77, 70, (13,398,0): 112, 73, 66, (13,399,0): 109, 72, 66, (13,400,0): 105, 67, 66, (13,401,0): 101, 65, 65, (13,402,0): 99, 64, 62, (13,403,0): 97, 62, 60, (13,404,0): 97, 62, 60, (13,405,0): 98, 63, 61, (13,406,0): 101, 63, 60, (13,407,0): 102, 64, 61, (13,408,0): 106, 67, 62, (13,409,0): 106, 67, 62, (13,410,0): 107, 66, 62, (13,411,0): 107, 66, 62, (13,412,0): 107, 66, 60, (13,413,0): 107, 66, 60, (13,414,0): 107, 66, 60, (13,415,0): 109, 66, 60, (13,416,0): 110, 65, 59, (13,417,0): 108, 63, 57, (13,418,0): 104, 61, 54, (13,419,0): 100, 57, 50, (13,420,0): 95, 54, 50, (13,421,0): 91, 52, 47, (13,422,0): 90, 50, 48, (13,423,0): 86, 51, 49, (13,424,0): 85, 49, 49, (13,425,0): 81, 49, 50, (13,426,0): 80, 48, 51, (13,427,0): 77, 47, 49, (13,428,0): 74, 45, 50, (13,429,0): 72, 43, 48, (13,430,0): 68, 41, 46, (13,431,0): 66, 41, 44, (13,432,0): 65, 41, 41, (13,433,0): 65, 44, 41, (13,434,0): 70, 49, 46, (13,435,0): 75, 54, 51, (13,436,0): 80, 56, 54, (13,437,0): 82, 58, 56, (13,438,0): 84, 59, 55, (13,439,0): 84, 59, 55, (13,440,0): 85, 60, 55, (13,441,0): 85, 60, 55, (13,442,0): 87, 60, 53, (13,443,0): 87, 60, 53, (13,444,0): 88, 59, 53, (13,445,0): 88, 59, 53, (13,446,0): 88, 59, 53, (13,447,0): 87, 59, 55, (13,448,0): 88, 60, 57, (13,449,0): 87, 62, 58, (13,450,0): 88, 62, 61, (13,451,0): 89, 64, 60, (13,452,0): 89, 63, 62, (13,453,0): 88, 63, 59, (13,454,0): 87, 61, 60, (13,455,0): 86, 61, 57, (13,456,0): 86, 60, 59, (13,457,0): 85, 60, 56, (13,458,0): 85, 59, 58, (13,459,0): 85, 60, 56, (13,460,0): 84, 58, 57, (13,461,0): 83, 58, 54, (13,462,0): 83, 57, 56, (13,463,0): 83, 57, 56, (13,464,0): 82, 56, 55, (13,465,0): 83, 57, 56, (13,466,0): 84, 58, 57, (13,467,0): 85, 59, 58, (13,468,0): 89, 61, 60, (13,469,0): 90, 62, 61, (13,470,0): 91, 63, 60, (13,471,0): 92, 64, 61, (13,472,0): 93, 64, 60, (13,473,0): 93, 64, 60, (13,474,0): 94, 63, 58, (13,475,0): 95, 64, 59, (13,476,0): 96, 65, 60, (13,477,0): 96, 65, 60, (13,478,0): 99, 66, 61, (13,479,0): 97, 66, 61, (13,480,0): 96, 68, 64, (13,481,0): 94, 69, 64, (13,482,0): 94, 69, 64, (13,483,0): 93, 68, 63, (13,484,0): 93, 68, 63, (13,485,0): 93, 68, 63, (13,486,0): 92, 67, 62, (13,487,0): 92, 67, 62, (13,488,0): 89, 64, 59, (13,489,0): 88, 63, 58, (13,490,0): 87, 62, 57, (13,491,0): 86, 61, 56, (13,492,0): 85, 60, 55, (13,493,0): 84, 59, 54, (13,494,0): 84, 59, 54, (13,495,0): 83, 58, 54, (13,496,0): 83, 59, 59, (13,497,0): 84, 60, 60, (13,498,0): 85, 61, 61, (13,499,0): 87, 63, 63, (13,500,0): 87, 63, 63, (13,501,0): 87, 63, 63, (13,502,0): 86, 62, 60, (13,503,0): 85, 61, 59, (13,504,0): 85, 61, 59, (13,505,0): 85, 61, 59, (13,506,0): 84, 60, 58, (13,507,0): 83, 59, 57, (13,508,0): 84, 60, 56, (13,509,0): 85, 61, 57, (13,510,0): 87, 63, 59, (13,511,0): 88, 64, 62, (13,512,0): 90, 64, 65, (13,513,0): 90, 64, 67, (13,514,0): 89, 63, 66, (13,515,0): 88, 62, 65, (13,516,0): 86, 60, 63, (13,517,0): 85, 59, 62, (13,518,0): 84, 58, 61, (13,519,0): 84, 58, 61, (13,520,0): 84, 58, 61, (13,521,0): 84, 58, 61, (13,522,0): 83, 57, 60, (13,523,0): 82, 56, 59, (13,524,0): 81, 55, 58, (13,525,0): 80, 54, 57, (13,526,0): 79, 53, 56, (13,527,0): 78, 53, 56, (13,528,0): 78, 53, 56, (13,529,0): 75, 53, 55, (13,530,0): 75, 53, 55, (13,531,0): 74, 52, 54, (13,532,0): 76, 51, 54, (13,533,0): 75, 50, 53, (13,534,0): 76, 50, 53, (13,535,0): 76, 50, 53, (13,536,0): 75, 49, 52, (13,537,0): 75, 49, 52, (13,538,0): 79, 50, 54, (13,539,0): 79, 50, 54, (13,540,0): 80, 49, 54, (13,541,0): 80, 49, 54, (13,542,0): 78, 47, 52, (13,543,0): 77, 48, 53, (13,544,0): 77, 50, 57, (13,545,0): 74, 48, 57, (13,546,0): 72, 47, 53, (13,547,0): 71, 44, 51, (13,548,0): 71, 44, 49, (13,549,0): 75, 46, 50, (13,550,0): 78, 49, 53, (13,551,0): 81, 51, 51, (13,552,0): 85, 55, 55, (13,553,0): 87, 56, 53, (13,554,0): 90, 56, 54, (13,555,0): 92, 59, 54, (13,556,0): 93, 58, 52, (13,557,0): 93, 58, 52, (13,558,0): 92, 58, 49, (13,559,0): 91, 57, 48, (13,560,0): 90, 57, 50, (13,561,0): 90, 57, 52, (13,562,0): 91, 57, 55, (13,563,0): 91, 57, 55, (13,564,0): 89, 58, 56, (13,565,0): 88, 57, 55, (13,566,0): 85, 55, 55, (13,567,0): 84, 54, 54, (13,568,0): 82, 53, 55, (13,569,0): 81, 52, 54, (13,570,0): 78, 52, 55, (13,571,0): 76, 50, 53, (13,572,0): 73, 48, 52, (13,573,0): 71, 46, 50, (13,574,0): 69, 44, 48, (13,575,0): 68, 43, 47, (13,576,0): 67, 45, 48, (13,577,0): 66, 44, 46, (13,578,0): 65, 43, 46, (13,579,0): 64, 42, 44, (13,580,0): 64, 42, 45, (13,581,0): 65, 43, 45, (13,582,0): 66, 44, 47, (13,583,0): 67, 45, 47, (13,584,0): 64, 42, 45, (13,585,0): 64, 42, 44, (13,586,0): 64, 42, 45, (13,587,0): 64, 42, 44, (13,588,0): 64, 42, 45, (13,589,0): 64, 42, 44, (13,590,0): 65, 43, 46, (13,591,0): 65, 43, 45, (13,592,0): 69, 43, 46, (13,593,0): 70, 44, 47, (13,594,0): 71, 46, 49, (13,595,0): 70, 48, 50, (13,596,0): 71, 49, 51, (13,597,0): 69, 49, 50, (13,598,0): 67, 49, 49, (13,599,0): 67, 49, 49, (14,0,0): 37, 22, 41, (14,1,0): 37, 22, 41, (14,2,0): 40, 23, 41, (14,3,0): 40, 23, 41, (14,4,0): 41, 24, 42, (14,5,0): 41, 24, 42, (14,6,0): 43, 25, 41, (14,7,0): 43, 25, 41, (14,8,0): 48, 27, 42, (14,9,0): 49, 28, 43, (14,10,0): 50, 29, 44, (14,11,0): 52, 31, 46, (14,12,0): 53, 31, 44, (14,13,0): 53, 31, 44, (14,14,0): 53, 31, 44, (14,15,0): 51, 31, 43, (14,16,0): 53, 32, 49, (14,17,0): 49, 31, 47, (14,18,0): 48, 30, 46, (14,19,0): 46, 28, 44, (14,20,0): 45, 27, 43, (14,21,0): 45, 27, 43, (14,22,0): 46, 28, 44, (14,23,0): 47, 29, 45, (14,24,0): 47, 29, 45, (14,25,0): 47, 29, 45, (14,26,0): 47, 29, 45, (14,27,0): 46, 28, 44, (14,28,0): 46, 28, 44, (14,29,0): 46, 28, 44, (14,30,0): 46, 28, 44, (14,31,0): 46, 28, 44, (14,32,0): 49, 30, 50, (14,33,0): 49, 30, 50, (14,34,0): 49, 30, 50, (14,35,0): 50, 31, 51, (14,36,0): 51, 32, 51, (14,37,0): 51, 32, 51, (14,38,0): 53, 32, 51, (14,39,0): 54, 33, 50, (14,40,0): 52, 29, 47, (14,41,0): 53, 30, 48, (14,42,0): 54, 31, 47, (14,43,0): 55, 31, 47, (14,44,0): 55, 31, 47, (14,45,0): 54, 30, 46, (14,46,0): 53, 29, 43, (14,47,0): 52, 28, 41, (14,48,0): 52, 26, 39, (14,49,0): 54, 28, 39, (14,50,0): 54, 30, 43, (14,51,0): 55, 31, 44, (14,52,0): 57, 33, 46, (14,53,0): 57, 33, 46, (14,54,0): 56, 34, 47, (14,55,0): 56, 34, 47, (14,56,0): 52, 31, 46, (14,57,0): 52, 31, 46, (14,58,0): 52, 31, 46, (14,59,0): 51, 30, 45, (14,60,0): 49, 31, 47, (14,61,0): 48, 30, 46, (14,62,0): 48, 30, 46, (14,63,0): 48, 30, 46, (14,64,0): 48, 31, 47, (14,65,0): 47, 30, 46, (14,66,0): 47, 30, 46, (14,67,0): 46, 29, 45, (14,68,0): 44, 27, 43, (14,69,0): 43, 26, 42, (14,70,0): 43, 26, 42, (14,71,0): 42, 25, 41, (14,72,0): 41, 24, 40, (14,73,0): 41, 24, 40, (14,74,0): 41, 24, 40, (14,75,0): 41, 24, 40, (14,76,0): 41, 24, 40, (14,77,0): 41, 24, 40, (14,78,0): 41, 24, 40, (14,79,0): 41, 24, 40, (14,80,0): 41, 24, 43, (14,81,0): 40, 23, 42, (14,82,0): 38, 23, 42, (14,83,0): 37, 22, 41, (14,84,0): 35, 20, 39, (14,85,0): 34, 19, 38, (14,86,0): 33, 20, 38, (14,87,0): 32, 19, 37, (14,88,0): 29, 18, 35, (14,89,0): 31, 20, 37, (14,90,0): 32, 21, 38, (14,91,0): 33, 22, 39, (14,92,0): 32, 23, 40, (14,93,0): 31, 22, 39, (14,94,0): 29, 20, 37, (14,95,0): 28, 19, 36, (14,96,0): 29, 18, 34, (14,97,0): 29, 18, 34, (14,98,0): 27, 18, 35, (14,99,0): 26, 17, 34, (14,100,0): 26, 17, 34, (14,101,0): 25, 16, 33, (14,102,0): 24, 17, 35, (14,103,0): 24, 17, 35, (14,104,0): 21, 16, 36, (14,105,0): 21, 16, 36, (14,106,0): 21, 16, 36, (14,107,0): 21, 16, 36, (14,108,0): 20, 17, 38, (14,109,0): 20, 17, 38, (14,110,0): 20, 17, 38, (14,111,0): 20, 17, 38, (14,112,0): 24, 16, 39, (14,113,0): 24, 16, 39, (14,114,0): 22, 14, 37, (14,115,0): 22, 14, 37, (14,116,0): 22, 14, 37, (14,117,0): 22, 14, 37, (14,118,0): 24, 16, 39, (14,119,0): 24, 16, 39, (14,120,0): 25, 17, 40, (14,121,0): 25, 17, 40, (14,122,0): 25, 17, 40, (14,123,0): 24, 16, 39, (14,124,0): 24, 16, 39, (14,125,0): 23, 15, 38, (14,126,0): 23, 15, 38, (14,127,0): 20, 15, 37, (14,128,0): 16, 14, 36, (14,129,0): 17, 17, 41, (14,130,0): 20, 20, 44, (14,131,0): 20, 20, 44, (14,132,0): 18, 18, 42, (14,133,0): 16, 16, 40, (14,134,0): 17, 17, 41, (14,135,0): 18, 18, 42, (14,136,0): 19, 19, 43, (14,137,0): 19, 19, 43, (14,138,0): 19, 19, 43, (14,139,0): 20, 20, 44, (14,140,0): 20, 20, 44, (14,141,0): 21, 21, 45, (14,142,0): 21, 21, 45, (14,143,0): 21, 22, 43, (14,144,0): 27, 24, 45, (14,145,0): 27, 24, 45, (14,146,0): 27, 24, 45, (14,147,0): 27, 24, 45, (14,148,0): 28, 23, 45, (14,149,0): 28, 23, 45, (14,150,0): 27, 22, 44, (14,151,0): 27, 22, 44, (14,152,0): 30, 22, 45, (14,153,0): 30, 22, 45, (14,154,0): 29, 19, 43, (14,155,0): 29, 19, 43, (14,156,0): 29, 19, 43, (14,157,0): 29, 19, 43, (14,158,0): 33, 21, 45, (14,159,0): 31, 21, 45, (14,160,0): 31, 21, 45, (14,161,0): 30, 22, 45, (14,162,0): 28, 20, 43, (14,163,0): 28, 20, 43, (14,164,0): 28, 20, 43, (14,165,0): 28, 20, 43, (14,166,0): 30, 22, 45, (14,167,0): 30, 22, 45, (14,168,0): 29, 21, 44, (14,169,0): 29, 21, 44, (14,170,0): 29, 21, 44, (14,171,0): 29, 21, 44, (14,172,0): 29, 21, 44, (14,173,0): 29, 21, 44, (14,174,0): 29, 21, 44, (14,175,0): 29, 21, 44, (14,176,0): 31, 23, 46, (14,177,0): 31, 23, 46, (14,178,0): 31, 23, 46, (14,179,0): 31, 23, 46, (14,180,0): 31, 23, 46, (14,181,0): 31, 23, 46, (14,182,0): 31, 23, 46, (14,183,0): 31, 23, 46, (14,184,0): 31, 23, 46, (14,185,0): 31, 23, 46, (14,186,0): 31, 23, 46, (14,187,0): 31, 23, 46, (14,188,0): 31, 23, 46, (14,189,0): 31, 23, 46, (14,190,0): 31, 23, 46, (14,191,0): 31, 23, 44, (14,192,0): 32, 23, 44, (14,193,0): 32, 23, 42, (14,194,0): 32, 23, 42, (14,195,0): 33, 24, 43, (14,196,0): 33, 24, 43, (14,197,0): 34, 25, 44, (14,198,0): 34, 25, 44, (14,199,0): 34, 25, 44, (14,200,0): 36, 27, 46, (14,201,0): 36, 27, 46, (14,202,0): 36, 27, 46, (14,203,0): 36, 27, 46, (14,204,0): 36, 27, 46, (14,205,0): 36, 27, 46, (14,206,0): 36, 27, 46, (14,207,0): 36, 27, 46, (14,208,0): 37, 28, 47, (14,209,0): 37, 28, 47, (14,210,0): 38, 29, 48, (14,211,0): 38, 29, 48, (14,212,0): 37, 28, 47, (14,213,0): 35, 26, 45, (14,214,0): 34, 25, 44, (14,215,0): 32, 23, 42, (14,216,0): 35, 26, 45, (14,217,0): 35, 26, 45, (14,218,0): 35, 26, 45, (14,219,0): 36, 27, 46, (14,220,0): 36, 27, 46, (14,221,0): 37, 28, 47, (14,222,0): 37, 28, 47, (14,223,0): 37, 28, 47, (14,224,0): 39, 30, 49, (14,225,0): 39, 30, 49, (14,226,0): 40, 31, 50, (14,227,0): 41, 32, 51, (14,228,0): 44, 32, 52, (14,229,0): 45, 33, 53, (14,230,0): 46, 34, 54, (14,231,0): 46, 34, 54, (14,232,0): 47, 34, 54, (14,233,0): 47, 34, 54, (14,234,0): 47, 32, 53, (14,235,0): 46, 31, 52, (14,236,0): 46, 31, 52, (14,237,0): 45, 30, 51, (14,238,0): 46, 28, 50, (14,239,0): 44, 29, 50, (14,240,0): 45, 30, 49, (14,241,0): 42, 29, 47, (14,242,0): 41, 28, 46, (14,243,0): 39, 26, 44, (14,244,0): 39, 26, 44, (14,245,0): 39, 26, 44, (14,246,0): 40, 27, 45, (14,247,0): 41, 28, 46, (14,248,0): 42, 29, 47, (14,249,0): 42, 29, 47, (14,250,0): 42, 29, 47, (14,251,0): 42, 29, 47, (14,252,0): 42, 29, 47, (14,253,0): 42, 29, 47, (14,254,0): 42, 29, 47, (14,255,0): 42, 29, 46, (14,256,0): 43, 29, 46, (14,257,0): 43, 29, 44, (14,258,0): 46, 29, 45, (14,259,0): 47, 30, 46, (14,260,0): 48, 32, 45, (14,261,0): 49, 33, 46, (14,262,0): 51, 33, 45, (14,263,0): 51, 33, 45, (14,264,0): 52, 32, 44, (14,265,0): 53, 33, 45, (14,266,0): 55, 35, 46, (14,267,0): 58, 38, 49, (14,268,0): 60, 39, 48, (14,269,0): 60, 39, 48, (14,270,0): 59, 38, 47, (14,271,0): 58, 37, 46, (14,272,0): 64, 41, 49, (14,273,0): 65, 42, 50, (14,274,0): 68, 42, 51, (14,275,0): 68, 42, 51, (14,276,0): 69, 44, 50, (14,277,0): 69, 44, 50, (14,278,0): 70, 43, 48, (14,279,0): 70, 43, 48, (14,280,0): 73, 44, 49, (14,281,0): 73, 44, 49, (14,282,0): 74, 45, 49, (14,283,0): 75, 46, 50, (14,284,0): 78, 48, 50, (14,285,0): 79, 49, 51, (14,286,0): 80, 50, 52, (14,287,0): 80, 50, 52, (14,288,0): 81, 49, 54, (14,289,0): 81, 49, 54, (14,290,0): 84, 49, 53, (14,291,0): 84, 49, 53, (14,292,0): 85, 50, 54, (14,293,0): 85, 50, 54, (14,294,0): 87, 51, 53, (14,295,0): 87, 51, 53, (14,296,0): 92, 53, 56, (14,297,0): 92, 53, 54, (14,298,0): 92, 53, 54, (14,299,0): 92, 53, 54, (14,300,0): 94, 54, 54, (14,301,0): 95, 55, 55, (14,302,0): 97, 57, 57, (14,303,0): 99, 58, 54, (14,304,0): 105, 62, 55, (14,305,0): 108, 64, 53, (14,306,0): 111, 67, 56, (14,307,0): 115, 71, 60, (14,308,0): 120, 72, 60, (14,309,0): 122, 74, 62, (14,310,0): 123, 75, 61, (14,311,0): 123, 75, 61, (14,312,0): 124, 78, 63, (14,313,0): 123, 77, 62, (14,314,0): 119, 76, 59, (14,315,0): 117, 76, 58, (14,316,0): 115, 77, 56, (14,317,0): 114, 78, 56, (14,318,0): 114, 79, 57, (14,319,0): 114, 79, 57, (14,320,0): 116, 78, 57, (14,321,0): 117, 79, 58, (14,322,0): 117, 79, 58, (14,323,0): 117, 79, 58, (14,324,0): 118, 80, 59, (14,325,0): 118, 80, 59, (14,326,0): 119, 81, 60, (14,327,0): 119, 81, 60, (14,328,0): 121, 83, 62, (14,329,0): 122, 84, 63, (14,330,0): 123, 85, 64, (14,331,0): 124, 86, 65, (14,332,0): 125, 87, 66, (14,333,0): 125, 87, 66, (14,334,0): 124, 86, 65, (14,335,0): 123, 85, 64, (14,336,0): 124, 88, 66, (14,337,0): 124, 88, 66, (14,338,0): 123, 87, 65, (14,339,0): 123, 87, 65, (14,340,0): 122, 85, 66, (14,341,0): 122, 85, 66, (14,342,0): 121, 84, 66, (14,343,0): 121, 84, 66, (14,344,0): 119, 82, 64, (14,345,0): 118, 81, 63, (14,346,0): 116, 79, 63, (14,347,0): 113, 76, 60, (14,348,0): 112, 74, 61, (14,349,0): 111, 73, 60, (14,350,0): 111, 73, 60, (14,351,0): 110, 74, 62, (14,352,0): 112, 75, 66, (14,353,0): 109, 75, 66, (14,354,0): 108, 74, 65, (14,355,0): 107, 73, 64, (14,356,0): 107, 73, 64, (14,357,0): 108, 74, 65, (14,358,0): 109, 75, 66, (14,359,0): 110, 76, 67, (14,360,0): 112, 78, 69, (14,361,0): 112, 78, 69, (14,362,0): 113, 79, 70, (14,363,0): 114, 80, 71, (14,364,0): 115, 81, 72, (14,365,0): 116, 82, 73, (14,366,0): 117, 83, 74, (14,367,0): 118, 84, 74, (14,368,0): 122, 84, 75, (14,369,0): 121, 85, 73, (14,370,0): 118, 84, 74, (14,371,0): 114, 84, 73, (14,372,0): 113, 83, 72, (14,373,0): 111, 83, 71, (14,374,0): 110, 80, 70, (14,375,0): 112, 79, 70, (14,376,0): 112, 77, 71, (14,377,0): 114, 77, 71, (14,378,0): 115, 74, 70, (14,379,0): 113, 74, 69, (14,380,0): 111, 73, 70, (14,381,0): 107, 74, 69, (14,382,0): 106, 73, 68, (14,383,0): 106, 73, 66, (14,384,0): 113, 76, 70, (14,385,0): 114, 75, 68, (14,386,0): 115, 76, 69, (14,387,0): 116, 77, 70, (14,388,0): 117, 78, 71, (14,389,0): 118, 79, 72, (14,390,0): 119, 80, 73, (14,391,0): 119, 80, 73, (14,392,0): 119, 80, 73, (14,393,0): 121, 82, 75, (14,394,0): 122, 83, 76, (14,395,0): 122, 83, 76, (14,396,0): 121, 82, 75, (14,397,0): 118, 79, 72, (14,398,0): 114, 75, 68, (14,399,0): 111, 74, 68, (14,400,0): 105, 67, 66, (14,401,0): 102, 66, 66, (14,402,0): 102, 67, 65, (14,403,0): 101, 66, 64, (14,404,0): 102, 64, 63, (14,405,0): 102, 64, 63, (14,406,0): 101, 63, 60, (14,407,0): 101, 63, 60, (14,408,0): 105, 66, 61, (14,409,0): 105, 66, 61, (14,410,0): 106, 65, 61, (14,411,0): 106, 65, 61, (14,412,0): 106, 65, 59, (14,413,0): 106, 65, 59, (14,414,0): 108, 65, 59, (14,415,0): 108, 65, 59, (14,416,0): 110, 65, 59, (14,417,0): 108, 64, 55, (14,418,0): 104, 59, 53, (14,419,0): 99, 56, 49, (14,420,0): 94, 53, 49, (14,421,0): 91, 52, 47, (14,422,0): 90, 50, 48, (14,423,0): 87, 52, 50, (14,424,0): 87, 51, 51, (14,425,0): 83, 51, 52, (14,426,0): 81, 49, 52, (14,427,0): 78, 48, 50, (14,428,0): 74, 45, 50, (14,429,0): 72, 43, 48, (14,430,0): 68, 41, 48, (14,431,0): 66, 41, 45, (14,432,0): 65, 41, 41, (14,433,0): 66, 45, 42, (14,434,0): 71, 50, 47, (14,435,0): 75, 54, 51, (14,436,0): 81, 57, 55, (14,437,0): 82, 58, 56, (14,438,0): 82, 57, 53, (14,439,0): 82, 57, 53, (14,440,0): 85, 60, 55, (14,441,0): 85, 60, 55, (14,442,0): 87, 60, 53, (14,443,0): 87, 60, 53, (14,444,0): 88, 59, 53, (14,445,0): 88, 59, 53, (14,446,0): 88, 59, 53, (14,447,0): 87, 59, 55, (14,448,0): 87, 59, 58, (14,449,0): 86, 60, 59, (14,450,0): 87, 61, 62, (14,451,0): 88, 62, 61, (14,452,0): 88, 62, 63, (14,453,0): 87, 61, 60, (14,454,0): 86, 60, 61, (14,455,0): 85, 59, 58, (14,456,0): 84, 58, 59, (14,457,0): 84, 58, 57, (14,458,0): 84, 58, 59, (14,459,0): 83, 57, 56, (14,460,0): 83, 57, 58, (14,461,0): 82, 56, 55, (14,462,0): 82, 56, 57, (14,463,0): 81, 55, 54, (14,464,0): 81, 55, 54, (14,465,0): 82, 56, 55, (14,466,0): 83, 57, 56, (14,467,0): 85, 59, 58, (14,468,0): 89, 61, 60, (14,469,0): 91, 63, 62, (14,470,0): 93, 63, 61, (14,471,0): 94, 64, 62, (14,472,0): 94, 65, 61, (14,473,0): 94, 65, 61, (14,474,0): 95, 64, 59, (14,475,0): 95, 64, 59, (14,476,0): 98, 65, 60, (14,477,0): 98, 65, 60, (14,478,0): 98, 65, 60, (14,479,0): 97, 66, 61, (14,480,0): 95, 67, 63, (14,481,0): 93, 68, 64, (14,482,0): 92, 67, 63, (14,483,0): 91, 66, 62, (14,484,0): 90, 65, 61, (14,485,0): 90, 65, 61, (14,486,0): 89, 64, 60, (14,487,0): 89, 64, 60, (14,488,0): 88, 63, 59, (14,489,0): 87, 62, 58, (14,490,0): 86, 61, 57, (14,491,0): 85, 60, 56, (14,492,0): 84, 59, 55, (14,493,0): 83, 58, 54, (14,494,0): 82, 57, 53, (14,495,0): 82, 57, 53, (14,496,0): 80, 56, 56, (14,497,0): 80, 58, 60, (14,498,0): 81, 59, 61, (14,499,0): 83, 61, 63, (14,500,0): 83, 62, 61, (14,501,0): 83, 62, 61, (14,502,0): 83, 62, 61, (14,503,0): 82, 61, 60, (14,504,0): 82, 61, 58, (14,505,0): 82, 61, 58, (14,506,0): 81, 60, 57, (14,507,0): 81, 60, 57, (14,508,0): 82, 61, 56, (14,509,0): 83, 62, 57, (14,510,0): 85, 64, 59, (14,511,0): 88, 64, 62, (14,512,0): 91, 65, 66, (14,513,0): 91, 65, 68, (14,514,0): 90, 64, 67, (14,515,0): 89, 63, 66, (14,516,0): 88, 62, 65, (14,517,0): 88, 62, 65, (14,518,0): 87, 61, 64, (14,519,0): 87, 61, 64, (14,520,0): 84, 58, 61, (14,521,0): 84, 58, 61, (14,522,0): 83, 57, 60, (14,523,0): 82, 56, 59, (14,524,0): 81, 55, 58, (14,525,0): 80, 54, 57, (14,526,0): 79, 53, 56, (14,527,0): 78, 53, 56, (14,528,0): 78, 53, 56, (14,529,0): 76, 54, 56, (14,530,0): 76, 54, 56, (14,531,0): 75, 53, 55, (14,532,0): 77, 52, 55, (14,533,0): 76, 51, 54, (14,534,0): 76, 51, 54, (14,535,0): 75, 50, 53, (14,536,0): 74, 48, 51, (14,537,0): 74, 48, 51, (14,538,0): 78, 49, 53, (14,539,0): 78, 49, 53, (14,540,0): 78, 49, 53, (14,541,0): 78, 49, 53, (14,542,0): 77, 46, 51, (14,543,0): 76, 47, 52, (14,544,0): 76, 51, 57, (14,545,0): 73, 50, 58, (14,546,0): 71, 48, 56, (14,547,0): 72, 47, 53, (14,548,0): 72, 47, 51, (14,549,0): 74, 48, 51, (14,550,0): 75, 49, 52, (14,551,0): 79, 51, 50, (14,552,0): 85, 55, 55, (14,553,0): 86, 57, 53, (14,554,0): 89, 58, 55, (14,555,0): 90, 59, 54, (14,556,0): 93, 60, 53, (14,557,0): 93, 60, 53, (14,558,0): 92, 59, 50, (14,559,0): 92, 59, 50, (14,560,0): 92, 57, 51, (14,561,0): 93, 58, 52, (14,562,0): 92, 59, 54, (14,563,0): 93, 60, 55, (14,564,0): 92, 58, 56, (14,565,0): 89, 58, 55, (14,566,0): 86, 56, 54, (14,567,0): 85, 55, 55, (14,568,0): 84, 55, 57, (14,569,0): 83, 54, 56, (14,570,0): 79, 53, 56, (14,571,0): 77, 51, 54, (14,572,0): 74, 49, 53, (14,573,0): 72, 47, 51, (14,574,0): 68, 46, 49, (14,575,0): 67, 45, 48, (14,576,0): 68, 46, 49, (14,577,0): 67, 45, 48, (14,578,0): 66, 43, 49, (14,579,0): 65, 43, 46, (14,580,0): 65, 42, 48, (14,581,0): 66, 44, 47, (14,582,0): 67, 44, 50, (14,583,0): 68, 46, 49, (14,584,0): 65, 42, 48, (14,585,0): 65, 43, 46, (14,586,0): 65, 42, 48, (14,587,0): 65, 43, 46, (14,588,0): 65, 42, 48, (14,589,0): 64, 42, 45, (14,590,0): 64, 41, 47, (14,591,0): 64, 42, 45, (14,592,0): 70, 44, 47, (14,593,0): 71, 45, 48, (14,594,0): 72, 47, 50, (14,595,0): 71, 49, 51, (14,596,0): 72, 50, 52, (14,597,0): 71, 51, 52, (14,598,0): 69, 51, 51, (14,599,0): 69, 51, 51, (15,0,0): 37, 22, 41, (15,1,0): 37, 23, 40, (15,2,0): 38, 24, 41, (15,3,0): 40, 23, 41, (15,4,0): 41, 24, 42, (15,5,0): 41, 24, 40, (15,6,0): 43, 25, 41, (15,7,0): 43, 25, 39, (15,8,0): 47, 26, 41, (15,9,0): 48, 27, 42, (15,10,0): 50, 29, 44, (15,11,0): 53, 31, 44, (15,12,0): 54, 32, 45, (15,13,0): 54, 32, 45, (15,14,0): 54, 30, 44, (15,15,0): 53, 31, 44, (15,16,0): 54, 33, 48, (15,17,0): 50, 32, 46, (15,18,0): 50, 29, 46, (15,19,0): 46, 28, 42, (15,20,0): 45, 27, 43, (15,21,0): 45, 27, 41, (15,22,0): 46, 28, 44, (15,23,0): 47, 29, 43, (15,24,0): 47, 29, 45, (15,25,0): 47, 29, 43, (15,26,0): 47, 29, 45, (15,27,0): 46, 28, 42, (15,28,0): 46, 28, 44, (15,29,0): 46, 28, 42, (15,30,0): 45, 27, 43, (15,31,0): 44, 27, 43, (15,32,0): 47, 30, 48, (15,33,0): 47, 30, 48, (15,34,0): 49, 30, 50, (15,35,0): 49, 30, 49, (15,36,0): 50, 31, 50, (15,37,0): 50, 31, 50, (15,38,0): 52, 31, 50, (15,39,0): 53, 32, 51, (15,40,0): 49, 28, 45, (15,41,0): 50, 29, 46, (15,42,0): 53, 30, 46, (15,43,0): 54, 31, 47, (15,44,0): 54, 31, 47, (15,45,0): 53, 30, 46, (15,46,0): 52, 29, 45, (15,47,0): 52, 30, 43, (15,48,0): 50, 26, 39, (15,49,0): 51, 27, 40, (15,50,0): 52, 30, 43, (15,51,0): 54, 32, 45, (15,52,0): 56, 34, 47, (15,53,0): 56, 34, 47, (15,54,0): 56, 34, 47, (15,55,0): 55, 34, 49, (15,56,0): 52, 31, 46, (15,57,0): 52, 31, 46, (15,58,0): 52, 31, 46, (15,59,0): 51, 30, 45, (15,60,0): 49, 31, 47, (15,61,0): 48, 30, 46, (15,62,0): 48, 30, 46, (15,63,0): 48, 30, 46, (15,64,0): 48, 31, 47, (15,65,0): 47, 30, 46, (15,66,0): 47, 30, 46, (15,67,0): 46, 29, 45, (15,68,0): 44, 27, 43, (15,69,0): 43, 26, 42, (15,70,0): 43, 26, 42, (15,71,0): 42, 25, 41, (15,72,0): 41, 24, 40, (15,73,0): 41, 24, 40, (15,74,0): 41, 24, 40, (15,75,0): 41, 24, 40, (15,76,0): 41, 24, 40, (15,77,0): 41, 24, 40, (15,78,0): 41, 24, 40, (15,79,0): 41, 24, 40, (15,80,0): 42, 25, 44, (15,81,0): 41, 24, 43, (15,82,0): 38, 23, 42, (15,83,0): 37, 22, 41, (15,84,0): 36, 21, 40, (15,85,0): 35, 20, 39, (15,86,0): 34, 19, 38, (15,87,0): 33, 20, 38, (15,88,0): 33, 20, 38, (15,89,0): 34, 21, 39, (15,90,0): 35, 22, 40, (15,91,0): 35, 22, 40, (15,92,0): 33, 22, 39, (15,93,0): 31, 20, 37, (15,94,0): 29, 18, 35, (15,95,0): 28, 17, 34, (15,96,0): 28, 19, 36, (15,97,0): 28, 19, 36, (15,98,0): 28, 19, 36, (15,99,0): 26, 19, 35, (15,100,0): 27, 18, 35, (15,101,0): 25, 18, 34, (15,102,0): 25, 18, 36, (15,103,0): 24, 17, 35, (15,104,0): 21, 16, 36, (15,105,0): 21, 16, 36, (15,106,0): 21, 16, 36, (15,107,0): 21, 16, 36, (15,108,0): 20, 17, 36, (15,109,0): 20, 17, 36, (15,110,0): 20, 17, 38, (15,111,0): 21, 16, 38, (15,112,0): 24, 16, 39, (15,113,0): 24, 16, 39, (15,114,0): 22, 14, 37, (15,115,0): 22, 14, 37, (15,116,0): 22, 14, 37, (15,117,0): 22, 14, 37, (15,118,0): 24, 16, 39, (15,119,0): 24, 16, 39, (15,120,0): 26, 18, 41, (15,121,0): 24, 19, 41, (15,122,0): 23, 18, 40, (15,123,0): 23, 18, 40, (15,124,0): 22, 17, 39, (15,125,0): 22, 17, 39, (15,126,0): 21, 16, 38, (15,127,0): 20, 17, 38, (15,128,0): 17, 15, 37, (15,129,0): 18, 19, 40, (15,130,0): 23, 21, 45, (15,131,0): 23, 21, 43, (15,132,0): 20, 18, 42, (15,133,0): 19, 17, 39, (15,134,0): 19, 17, 41, (15,135,0): 21, 19, 41, (15,136,0): 22, 20, 44, (15,137,0): 22, 20, 42, (15,138,0): 22, 20, 44, (15,139,0): 23, 21, 43, (15,140,0): 23, 21, 45, (15,141,0): 24, 22, 44, (15,142,0): 24, 22, 46, (15,143,0): 25, 21, 44, (15,144,0): 28, 25, 46, (15,145,0): 28, 25, 46, (15,146,0): 29, 24, 46, (15,147,0): 28, 23, 45, (15,148,0): 28, 23, 45, (15,149,0): 28, 23, 45, (15,150,0): 28, 23, 45, (15,151,0): 28, 23, 45, (15,152,0): 30, 22, 45, (15,153,0): 30, 22, 45, (15,154,0): 29, 19, 43, (15,155,0): 29, 19, 43, (15,156,0): 29, 19, 43, (15,157,0): 29, 19, 43, (15,158,0): 31, 21, 45, (15,159,0): 31, 21, 45, (15,160,0): 30, 22, 45, (15,161,0): 28, 23, 45, (15,162,0): 28, 20, 43, (15,163,0): 28, 20, 43, (15,164,0): 28, 20, 43, (15,165,0): 28, 20, 43, (15,166,0): 30, 22, 45, (15,167,0): 30, 22, 45, (15,168,0): 29, 21, 44, (15,169,0): 29, 21, 44, (15,170,0): 29, 21, 44, (15,171,0): 29, 21, 44, (15,172,0): 29, 21, 44, (15,173,0): 29, 21, 44, (15,174,0): 29, 21, 44, (15,175,0): 29, 21, 44, (15,176,0): 31, 23, 46, (15,177,0): 31, 23, 46, (15,178,0): 31, 23, 46, (15,179,0): 31, 23, 46, (15,180,0): 31, 23, 46, (15,181,0): 31, 23, 46, (15,182,0): 31, 23, 46, (15,183,0): 31, 23, 46, (15,184,0): 31, 23, 46, (15,185,0): 31, 23, 46, (15,186,0): 31, 23, 46, (15,187,0): 31, 23, 46, (15,188,0): 31, 23, 46, (15,189,0): 31, 23, 46, (15,190,0): 31, 23, 46, (15,191,0): 31, 23, 44, (15,192,0): 31, 23, 44, (15,193,0): 32, 23, 42, (15,194,0): 32, 23, 42, (15,195,0): 33, 24, 43, (15,196,0): 33, 24, 43, (15,197,0): 34, 25, 44, (15,198,0): 34, 25, 44, (15,199,0): 34, 25, 44, (15,200,0): 36, 27, 46, (15,201,0): 36, 27, 46, (15,202,0): 36, 27, 46, (15,203,0): 36, 27, 46, (15,204,0): 36, 27, 46, (15,205,0): 36, 27, 46, (15,206,0): 38, 26, 46, (15,207,0): 36, 27, 46, (15,208,0): 40, 28, 48, (15,209,0): 38, 29, 48, (15,210,0): 40, 28, 48, (15,211,0): 38, 29, 48, (15,212,0): 39, 27, 47, (15,213,0): 35, 26, 45, (15,214,0): 35, 23, 43, (15,215,0): 31, 22, 41, (15,216,0): 37, 25, 45, (15,217,0): 35, 26, 45, (15,218,0): 37, 25, 45, (15,219,0): 36, 27, 46, (15,220,0): 38, 26, 46, (15,221,0): 37, 28, 47, (15,222,0): 39, 27, 47, (15,223,0): 37, 28, 47, (15,224,0): 41, 29, 49, (15,225,0): 39, 30, 49, (15,226,0): 42, 30, 50, (15,227,0): 43, 31, 51, (15,228,0): 44, 32, 52, (15,229,0): 45, 33, 53, (15,230,0): 46, 34, 54, (15,231,0): 47, 35, 55, (15,232,0): 47, 34, 54, (15,233,0): 46, 33, 53, (15,234,0): 47, 32, 53, (15,235,0): 46, 31, 52, (15,236,0): 46, 31, 52, (15,237,0): 45, 30, 51, (15,238,0): 45, 30, 51, (15,239,0): 44, 29, 48, (15,240,0): 44, 31, 49, (15,241,0): 43, 30, 47, (15,242,0): 40, 27, 45, (15,243,0): 39, 26, 43, (15,244,0): 38, 25, 43, (15,245,0): 39, 26, 43, (15,246,0): 40, 27, 45, (15,247,0): 41, 28, 45, (15,248,0): 42, 29, 47, (15,249,0): 43, 29, 46, (15,250,0): 43, 28, 47, (15,251,0): 43, 29, 46, (15,252,0): 43, 28, 47, (15,253,0): 43, 29, 46, (15,254,0): 43, 28, 47, (15,255,0): 43, 29, 46, (15,256,0): 43, 29, 44, (15,257,0): 46, 29, 45, (15,258,0): 46, 29, 45, (15,259,0): 47, 31, 44, (15,260,0): 48, 32, 45, (15,261,0): 50, 32, 44, (15,262,0): 51, 33, 45, (15,263,0): 52, 34, 46, (15,264,0): 52, 32, 44, (15,265,0): 54, 34, 45, (15,266,0): 56, 36, 47, (15,267,0): 59, 38, 47, (15,268,0): 60, 39, 48, (15,269,0): 60, 39, 48, (15,270,0): 59, 38, 47, (15,271,0): 60, 37, 47, (15,272,0): 66, 43, 51, (15,273,0): 66, 43, 51, (15,274,0): 67, 41, 50, (15,275,0): 67, 41, 50, (15,276,0): 68, 43, 49, (15,277,0): 69, 44, 50, (15,278,0): 71, 44, 49, (15,279,0): 72, 45, 50, (15,280,0): 74, 45, 50, (15,281,0): 74, 45, 50, (15,282,0): 75, 46, 50, (15,283,0): 76, 47, 51, (15,284,0): 77, 47, 49, (15,285,0): 78, 48, 50, (15,286,0): 79, 49, 51, (15,287,0): 79, 49, 51, (15,288,0): 81, 49, 54, (15,289,0): 81, 49, 54, (15,290,0): 84, 49, 55, (15,291,0): 84, 49, 55, (15,292,0): 85, 50, 56, (15,293,0): 85, 50, 54, (15,294,0): 86, 51, 55, (15,295,0): 87, 51, 53, (15,296,0): 91, 55, 57, (15,297,0): 90, 54, 56, (15,298,0): 90, 54, 56, (15,299,0): 90, 54, 54, (15,300,0): 93, 54, 55, (15,301,0): 94, 56, 55, (15,302,0): 96, 57, 58, (15,303,0): 98, 58, 56, (15,304,0): 104, 63, 57, (15,305,0): 107, 64, 55, (15,306,0): 111, 67, 58, (15,307,0): 115, 71, 60, (15,308,0): 120, 74, 61, (15,309,0): 122, 74, 60, (15,310,0): 123, 75, 61, (15,311,0): 124, 76, 62, (15,312,0): 124, 78, 63, (15,313,0): 123, 77, 62, (15,314,0): 120, 77, 61, (15,315,0): 117, 76, 58, (15,316,0): 115, 77, 58, (15,317,0): 114, 78, 56, (15,318,0): 115, 79, 57, (15,319,0): 115, 79, 57, (15,320,0): 115, 79, 57, (15,321,0): 117, 79, 58, (15,322,0): 117, 79, 58, (15,323,0): 118, 80, 59, (15,324,0): 118, 80, 59, (15,325,0): 119, 81, 60, (15,326,0): 119, 81, 60, (15,327,0): 119, 81, 60, (15,328,0): 121, 83, 62, (15,329,0): 122, 84, 63, (15,330,0): 124, 86, 65, (15,331,0): 125, 87, 66, (15,332,0): 125, 87, 66, (15,333,0): 125, 87, 66, (15,334,0): 124, 86, 65, (15,335,0): 124, 86, 65, (15,336,0): 124, 88, 66, (15,337,0): 124, 88, 66, (15,338,0): 124, 88, 66, (15,339,0): 123, 87, 65, (15,340,0): 123, 86, 67, (15,341,0): 122, 85, 66, (15,342,0): 122, 85, 67, (15,343,0): 121, 84, 66, (15,344,0): 119, 82, 64, (15,345,0): 118, 81, 63, (15,346,0): 116, 79, 63, (15,347,0): 113, 76, 60, (15,348,0): 112, 74, 61, (15,349,0): 111, 73, 60, (15,350,0): 111, 73, 60, (15,351,0): 111, 73, 62, (15,352,0): 112, 76, 64, (15,353,0): 110, 76, 66, (15,354,0): 109, 75, 65, (15,355,0): 108, 74, 64, (15,356,0): 108, 74, 64, (15,357,0): 109, 75, 66, (15,358,0): 110, 76, 67, (15,359,0): 110, 76, 67, (15,360,0): 113, 79, 70, (15,361,0): 113, 79, 70, (15,362,0): 114, 80, 71, (15,363,0): 115, 81, 71, (15,364,0): 116, 82, 72, (15,365,0): 117, 83, 73, (15,366,0): 118, 84, 74, (15,367,0): 120, 84, 72, (15,368,0): 123, 85, 74, (15,369,0): 122, 84, 71, (15,370,0): 121, 85, 73, (15,371,0): 118, 84, 72, (15,372,0): 116, 84, 71, (15,373,0): 112, 83, 69, (15,374,0): 112, 80, 69, (15,375,0): 111, 79, 68, (15,376,0): 114, 77, 69, (15,377,0): 114, 77, 69, (15,378,0): 114, 75, 68, (15,379,0): 113, 74, 67, (15,380,0): 111, 74, 68, (15,381,0): 108, 73, 67, (15,382,0): 106, 73, 66, (15,383,0): 106, 73, 66, (15,384,0): 113, 76, 68, (15,385,0): 115, 76, 69, (15,386,0): 115, 76, 69, (15,387,0): 116, 77, 70, (15,388,0): 117, 78, 71, (15,389,0): 118, 80, 71, (15,390,0): 119, 80, 73, (15,391,0): 120, 82, 73, (15,392,0): 120, 82, 73, (15,393,0): 121, 83, 74, (15,394,0): 123, 85, 76, (15,395,0): 124, 86, 77, (15,396,0): 122, 84, 75, (15,397,0): 119, 81, 72, (15,398,0): 115, 77, 68, (15,399,0): 113, 74, 67, (15,400,0): 105, 67, 64, (15,401,0): 103, 68, 66, (15,402,0): 103, 68, 64, (15,403,0): 103, 68, 64, (15,404,0): 104, 66, 63, (15,405,0): 103, 65, 62, (15,406,0): 102, 65, 59, (15,407,0): 101, 64, 58, (15,408,0): 105, 66, 59, (15,409,0): 105, 66, 59, (15,410,0): 106, 65, 59, (15,411,0): 106, 65, 59, (15,412,0): 106, 66, 58, (15,413,0): 106, 66, 58, (15,414,0): 108, 65, 58, (15,415,0): 108, 65, 58, (15,416,0): 109, 66, 57, (15,417,0): 107, 64, 55, (15,418,0): 104, 59, 53, (15,419,0): 99, 56, 49, (15,420,0): 93, 52, 46, (15,421,0): 90, 51, 46, (15,422,0): 89, 51, 48, (15,423,0): 87, 52, 50, (15,424,0): 87, 53, 52, (15,425,0): 84, 52, 53, (15,426,0): 82, 50, 51, (15,427,0): 78, 48, 50, (15,428,0): 74, 45, 49, (15,429,0): 72, 43, 48, (15,430,0): 68, 41, 46, (15,431,0): 67, 41, 44, (15,432,0): 66, 42, 42, (15,433,0): 67, 46, 43, (15,434,0): 73, 49, 47, (15,435,0): 78, 54, 52, (15,436,0): 81, 57, 55, (15,437,0): 81, 57, 55, (15,438,0): 82, 57, 53, (15,439,0): 81, 56, 52, (15,440,0): 85, 60, 56, (15,441,0): 85, 60, 55, (15,442,0): 87, 59, 55, (15,443,0): 87, 59, 55, (15,444,0): 87, 59, 55, (15,445,0): 87, 59, 55, (15,446,0): 88, 59, 55, (15,447,0): 87, 59, 55, (15,448,0): 85, 59, 58, (15,449,0): 86, 60, 59, (15,450,0): 87, 61, 62, (15,451,0): 88, 62, 61, (15,452,0): 88, 62, 63, (15,453,0): 87, 61, 60, (15,454,0): 86, 60, 61, (15,455,0): 85, 59, 58, (15,456,0): 83, 57, 58, (15,457,0): 83, 57, 56, (15,458,0): 83, 57, 58, (15,459,0): 82, 56, 55, (15,460,0): 82, 56, 57, (15,461,0): 81, 55, 54, (15,462,0): 81, 55, 56, (15,463,0): 80, 54, 53, (15,464,0): 81, 55, 54, (15,465,0): 82, 56, 55, (15,466,0): 83, 57, 56, (15,467,0): 85, 59, 58, (15,468,0): 89, 61, 60, (15,469,0): 91, 63, 62, (15,470,0): 92, 64, 61, (15,471,0): 93, 65, 62, (15,472,0): 94, 65, 61, (15,473,0): 94, 65, 61, (15,474,0): 95, 66, 60, (15,475,0): 95, 66, 60, (15,476,0): 96, 65, 60, (15,477,0): 96, 65, 60, (15,478,0): 96, 65, 60, (15,479,0): 95, 66, 60, (15,480,0): 94, 66, 62, (15,481,0): 92, 67, 62, (15,482,0): 91, 66, 62, (15,483,0): 90, 65, 61, (15,484,0): 89, 64, 60, (15,485,0): 88, 63, 59, (15,486,0): 87, 62, 58, (15,487,0): 87, 62, 58, (15,488,0): 88, 63, 59, (15,489,0): 88, 63, 59, (15,490,0): 87, 62, 58, (15,491,0): 86, 61, 57, (15,492,0): 85, 60, 56, (15,493,0): 84, 59, 55, (15,494,0): 83, 58, 54, (15,495,0): 83, 57, 56, (15,496,0): 79, 55, 55, (15,497,0): 78, 57, 56, (15,498,0): 82, 58, 58, (15,499,0): 81, 60, 59, (15,500,0): 84, 60, 60, (15,501,0): 82, 61, 58, (15,502,0): 84, 60, 60, (15,503,0): 81, 60, 57, (15,504,0): 84, 60, 58, (15,505,0): 82, 61, 58, (15,506,0): 83, 59, 57, (15,507,0): 81, 60, 57, (15,508,0): 84, 60, 56, (15,509,0): 84, 63, 58, (15,510,0): 87, 63, 59, (15,511,0): 88, 64, 60, (15,512,0): 92, 66, 67, (15,513,0): 91, 65, 66, (15,514,0): 91, 65, 66, (15,515,0): 90, 64, 65, (15,516,0): 90, 64, 65, (15,517,0): 89, 63, 64, (15,518,0): 89, 63, 64, (15,519,0): 89, 63, 66, (15,520,0): 84, 58, 61, (15,521,0): 84, 58, 61, (15,522,0): 83, 57, 60, (15,523,0): 82, 56, 59, (15,524,0): 81, 55, 58, (15,525,0): 80, 54, 57, (15,526,0): 79, 53, 56, (15,527,0): 78, 53, 56, (15,528,0): 79, 54, 57, (15,529,0): 77, 55, 57, (15,530,0): 76, 54, 56, (15,531,0): 76, 54, 56, (15,532,0): 77, 52, 55, (15,533,0): 77, 52, 55, (15,534,0): 76, 51, 54, (15,535,0): 76, 51, 54, (15,536,0): 72, 47, 50, (15,537,0): 74, 48, 51, (15,538,0): 75, 48, 53, (15,539,0): 75, 48, 53, (15,540,0): 75, 48, 53, (15,541,0): 75, 48, 53, (15,542,0): 76, 47, 52, (15,543,0): 73, 46, 51, (15,544,0): 74, 51, 57, (15,545,0): 73, 52, 59, (15,546,0): 72, 49, 57, (15,547,0): 71, 48, 56, (15,548,0): 73, 48, 54, (15,549,0): 73, 48, 52, (15,550,0): 75, 49, 52, (15,551,0): 76, 50, 51, (15,552,0): 84, 56, 55, (15,553,0): 86, 56, 56, (15,554,0): 88, 58, 56, (15,555,0): 91, 60, 57, (15,556,0): 92, 61, 58, (15,557,0): 92, 61, 56, (15,558,0): 93, 60, 55, (15,559,0): 93, 60, 53, (15,560,0): 93, 58, 54, (15,561,0): 93, 58, 54, (15,562,0): 93, 60, 55, (15,563,0): 93, 60, 55, (15,564,0): 93, 59, 57, (15,565,0): 91, 57, 55, (15,566,0): 88, 57, 55, (15,567,0): 86, 56, 54, (15,568,0): 86, 56, 56, (15,569,0): 84, 55, 57, (15,570,0): 82, 53, 57, (15,571,0): 78, 52, 55, (15,572,0): 75, 49, 52, (15,573,0): 73, 46, 51, (15,574,0): 70, 45, 49, (15,575,0): 69, 44, 48, (15,576,0): 69, 47, 50, (15,577,0): 68, 46, 49, (15,578,0): 67, 44, 50, (15,579,0): 66, 44, 47, (15,580,0): 66, 43, 49, (15,581,0): 67, 45, 48, (15,582,0): 68, 45, 51, (15,583,0): 69, 47, 50, (15,584,0): 66, 43, 49, (15,585,0): 66, 44, 47, (15,586,0): 65, 42, 48, (15,587,0): 65, 43, 46, (15,588,0): 65, 42, 48, (15,589,0): 65, 43, 46, (15,590,0): 64, 41, 47, (15,591,0): 64, 42, 45, (15,592,0): 69, 44, 47, (15,593,0): 70, 45, 48, (15,594,0): 72, 47, 50, (15,595,0): 72, 50, 52, (15,596,0): 73, 51, 53, (15,597,0): 72, 52, 53, (15,598,0): 71, 51, 52, (15,599,0): 70, 52, 52, (16,0,0): 38, 25, 42, (16,1,0): 38, 26, 40, (16,2,0): 38, 26, 40, (16,3,0): 40, 26, 41, (16,4,0): 40, 26, 41, (16,5,0): 43, 27, 40, (16,6,0): 44, 26, 40, (16,7,0): 44, 26, 40, (16,8,0): 50, 29, 44, (16,9,0): 50, 30, 42, (16,10,0): 52, 30, 43, (16,11,0): 54, 30, 43, (16,12,0): 55, 31, 44, (16,13,0): 56, 32, 45, (16,14,0): 59, 33, 46, (16,15,0): 57, 33, 46, (16,16,0): 55, 33, 46, (16,17,0): 53, 33, 45, (16,18,0): 52, 29, 45, (16,19,0): 49, 29, 41, (16,20,0): 48, 27, 42, (16,21,0): 48, 28, 40, (16,22,0): 48, 27, 42, (16,23,0): 48, 28, 40, (16,24,0): 48, 30, 44, (16,25,0): 48, 30, 42, (16,26,0): 47, 31, 44, (16,27,0): 47, 31, 42, (16,28,0): 47, 31, 44, (16,29,0): 47, 31, 42, (16,30,0): 47, 31, 44, (16,31,0): 47, 31, 44, (16,32,0): 47, 30, 46, (16,33,0): 48, 30, 46, (16,34,0): 48, 29, 48, (16,35,0): 49, 31, 47, (16,36,0): 49, 31, 47, (16,37,0): 50, 32, 48, (16,38,0): 50, 32, 48, (16,39,0): 50, 32, 48, (16,40,0): 46, 28, 44, (16,41,0): 46, 28, 44, (16,42,0): 49, 28, 45, (16,43,0): 50, 29, 46, (16,44,0): 52, 31, 48, (16,45,0): 53, 32, 49, (16,46,0): 54, 33, 50, (16,47,0): 55, 34, 49, (16,48,0): 50, 29, 44, (16,49,0): 50, 29, 44, (16,50,0): 51, 30, 45, (16,51,0): 51, 30, 45, (16,52,0): 51, 30, 45, (16,53,0): 51, 30, 45, (16,54,0): 52, 31, 46, (16,55,0): 50, 32, 48, (16,56,0): 49, 31, 47, (16,57,0): 49, 31, 47, (16,58,0): 48, 30, 46, (16,59,0): 48, 30, 46, (16,60,0): 47, 29, 45, (16,61,0): 47, 29, 45, (16,62,0): 46, 28, 44, (16,63,0): 46, 28, 44, (16,64,0): 43, 26, 42, (16,65,0): 43, 26, 42, (16,66,0): 43, 26, 42, (16,67,0): 43, 26, 42, (16,68,0): 43, 26, 42, (16,69,0): 43, 26, 42, (16,70,0): 43, 26, 42, (16,71,0): 43, 26, 42, (16,72,0): 42, 25, 41, (16,73,0): 42, 25, 41, (16,74,0): 42, 25, 41, (16,75,0): 42, 25, 41, (16,76,0): 42, 25, 41, (16,77,0): 42, 25, 41, (16,78,0): 42, 25, 41, (16,79,0): 42, 25, 41, (16,80,0): 41, 24, 43, (16,81,0): 41, 24, 43, (16,82,0): 42, 25, 44, (16,83,0): 42, 25, 44, (16,84,0): 42, 25, 44, (16,85,0): 40, 23, 42, (16,86,0): 39, 22, 41, (16,87,0): 36, 21, 40, (16,88,0): 34, 19, 38, (16,89,0): 34, 19, 38, (16,90,0): 33, 18, 37, (16,91,0): 33, 18, 37, (16,92,0): 32, 17, 36, (16,93,0): 32, 17, 36, (16,94,0): 31, 16, 35, (16,95,0): 30, 17, 35, (16,96,0): 28, 19, 36, (16,97,0): 26, 19, 37, (16,98,0): 25, 18, 36, (16,99,0): 22, 18, 35, (16,100,0): 23, 16, 34, (16,101,0): 19, 15, 32, (16,102,0): 18, 14, 31, (16,103,0): 18, 14, 31, (16,104,0): 20, 16, 33, (16,105,0): 20, 16, 33, (16,106,0): 20, 16, 33, (16,107,0): 20, 16, 33, (16,108,0): 20, 16, 33, (16,109,0): 20, 16, 33, (16,110,0): 20, 15, 35, (16,111,0): 20, 15, 35, (16,112,0): 23, 15, 38, (16,113,0): 23, 15, 38, (16,114,0): 23, 15, 38, (16,115,0): 23, 15, 38, (16,116,0): 21, 16, 38, (16,117,0): 21, 16, 38, (16,118,0): 21, 16, 38, (16,119,0): 21, 16, 38, (16,120,0): 22, 17, 39, (16,121,0): 21, 18, 39, (16,122,0): 20, 17, 38, (16,123,0): 20, 17, 38, (16,124,0): 20, 17, 38, (16,125,0): 22, 19, 40, (16,126,0): 22, 20, 41, (16,127,0): 23, 21, 42, (16,128,0): 21, 19, 40, (16,129,0): 22, 20, 41, (16,130,0): 24, 20, 43, (16,131,0): 26, 23, 44, (16,132,0): 26, 22, 45, (16,133,0): 26, 23, 44, (16,134,0): 25, 21, 44, (16,135,0): 25, 22, 43, (16,136,0): 26, 21, 44, (16,137,0): 26, 21, 43, (16,138,0): 28, 20, 44, (16,139,0): 29, 21, 44, (16,140,0): 29, 21, 45, (16,141,0): 30, 22, 45, (16,142,0): 30, 22, 46, (16,143,0): 31, 23, 46, (16,144,0): 31, 23, 46, (16,145,0): 29, 24, 46, (16,146,0): 31, 23, 46, (16,147,0): 31, 23, 46, (16,148,0): 31, 23, 46, (16,149,0): 31, 23, 46, (16,150,0): 31, 23, 46, (16,151,0): 31, 23, 46, (16,152,0): 28, 20, 43, (16,153,0): 29, 21, 44, (16,154,0): 29, 21, 44, (16,155,0): 30, 22, 45, (16,156,0): 30, 22, 45, (16,157,0): 29, 21, 44, (16,158,0): 29, 21, 44, (16,159,0): 28, 20, 43, (16,160,0): 27, 22, 44, (16,161,0): 26, 23, 44, (16,162,0): 28, 23, 45, (16,163,0): 28, 23, 45, (16,164,0): 29, 24, 46, (16,165,0): 29, 24, 46, (16,166,0): 30, 25, 47, (16,167,0): 30, 25, 47, (16,168,0): 31, 23, 46, (16,169,0): 31, 23, 46, (16,170,0): 32, 22, 46, (16,171,0): 33, 23, 47, (16,172,0): 33, 23, 47, (16,173,0): 34, 24, 48, (16,174,0): 34, 24, 48, (16,175,0): 34, 24, 48, (16,176,0): 32, 24, 47, (16,177,0): 32, 24, 47, (16,178,0): 32, 24, 47, (16,179,0): 32, 24, 47, (16,180,0): 32, 24, 47, (16,181,0): 32, 24, 47, (16,182,0): 32, 24, 47, (16,183,0): 32, 24, 47, (16,184,0): 32, 24, 47, (16,185,0): 32, 24, 47, (16,186,0): 32, 24, 47, (16,187,0): 32, 24, 47, (16,188,0): 32, 24, 47, (16,189,0): 32, 24, 47, (16,190,0): 32, 24, 47, (16,191,0): 32, 24, 45, (16,192,0): 32, 24, 45, (16,193,0): 32, 25, 43, (16,194,0): 33, 26, 44, (16,195,0): 33, 26, 44, (16,196,0): 34, 27, 45, (16,197,0): 34, 27, 45, (16,198,0): 36, 27, 46, (16,199,0): 36, 27, 46, (16,200,0): 37, 25, 45, (16,201,0): 38, 26, 46, (16,202,0): 39, 27, 47, (16,203,0): 39, 27, 47, (16,204,0): 39, 27, 47, (16,205,0): 39, 27, 47, (16,206,0): 39, 26, 46, (16,207,0): 37, 25, 45, (16,208,0): 41, 28, 46, (16,209,0): 40, 29, 46, (16,210,0): 41, 28, 46, (16,211,0): 40, 29, 46, (16,212,0): 41, 28, 46, (16,213,0): 40, 29, 46, (16,214,0): 41, 28, 46, (16,215,0): 40, 29, 46, (16,216,0): 38, 25, 43, (16,217,0): 38, 27, 44, (16,218,0): 40, 27, 45, (16,219,0): 41, 30, 47, (16,220,0): 42, 29, 47, (16,221,0): 41, 30, 47, (16,222,0): 41, 28, 46, (16,223,0): 40, 29, 46, (16,224,0): 41, 28, 46, (16,225,0): 40, 29, 46, (16,226,0): 42, 29, 47, (16,227,0): 43, 30, 48, (16,228,0): 44, 31, 49, (16,229,0): 45, 32, 50, (16,230,0): 45, 32, 50, (16,231,0): 45, 32, 50, (16,232,0): 45, 32, 50, (16,233,0): 45, 32, 50, (16,234,0): 45, 32, 50, (16,235,0): 45, 32, 50, (16,236,0): 45, 32, 50, (16,237,0): 45, 32, 50, (16,238,0): 45, 32, 50, (16,239,0): 45, 32, 50, (16,240,0): 41, 28, 45, (16,241,0): 42, 30, 44, (16,242,0): 42, 29, 46, (16,243,0): 43, 31, 45, (16,244,0): 44, 31, 48, (16,245,0): 45, 33, 47, (16,246,0): 46, 32, 49, (16,247,0): 47, 33, 48, (16,248,0): 47, 33, 50, (16,249,0): 47, 30, 46, (16,250,0): 46, 29, 47, (16,251,0): 45, 28, 44, (16,252,0): 45, 28, 46, (16,253,0): 46, 29, 45, (16,254,0): 47, 30, 48, (16,255,0): 49, 32, 48, (16,256,0): 48, 31, 47, (16,257,0): 49, 31, 45, (16,258,0): 50, 32, 46, (16,259,0): 50, 32, 44, (16,260,0): 51, 33, 45, (16,261,0): 53, 33, 45, (16,262,0): 54, 34, 46, (16,263,0): 54, 34, 45, (16,264,0): 57, 35, 47, (16,265,0): 57, 36, 45, (16,266,0): 58, 37, 46, (16,267,0): 60, 37, 47, (16,268,0): 61, 38, 48, (16,269,0): 62, 39, 47, (16,270,0): 63, 40, 48, (16,271,0): 63, 40, 48, (16,272,0): 64, 41, 49, (16,273,0): 64, 41, 49, (16,274,0): 65, 42, 50, (16,275,0): 66, 43, 51, (16,276,0): 69, 44, 50, (16,277,0): 70, 45, 51, (16,278,0): 71, 46, 52, (16,279,0): 71, 46, 52, (16,280,0): 73, 46, 51, (16,281,0): 73, 46, 51, (16,282,0): 76, 47, 51, (16,283,0): 77, 48, 52, (16,284,0): 78, 49, 53, (16,285,0): 79, 50, 54, (16,286,0): 81, 51, 53, (16,287,0): 81, 50, 55, (16,288,0): 83, 50, 57, (16,289,0): 83, 50, 57, (16,290,0): 83, 50, 57, (16,291,0): 84, 51, 58, (16,292,0): 84, 51, 58, (16,293,0): 85, 53, 58, (16,294,0): 85, 53, 58, (16,295,0): 87, 52, 56, (16,296,0): 89, 54, 58, (16,297,0): 90, 55, 59, (16,298,0): 91, 56, 60, (16,299,0): 92, 58, 59, (16,300,0): 93, 59, 60, (16,301,0): 94, 60, 59, (16,302,0): 94, 60, 61, (16,303,0): 96, 60, 60, (16,304,0): 100, 60, 60, (16,305,0): 104, 63, 59, (16,306,0): 109, 66, 59, (16,307,0): 115, 71, 60, (16,308,0): 119, 75, 62, (16,309,0): 123, 77, 61, (16,310,0): 126, 79, 63, (16,311,0): 127, 80, 64, (16,312,0): 126, 78, 64, (16,313,0): 124, 78, 63, (16,314,0): 122, 79, 63, (16,315,0): 121, 78, 62, (16,316,0): 120, 79, 61, (16,317,0): 117, 79, 58, (16,318,0): 116, 80, 58, (16,319,0): 116, 80, 56, (16,320,0): 115, 79, 57, (16,321,0): 115, 79, 57, (16,322,0): 115, 79, 57, (16,323,0): 116, 80, 58, (16,324,0): 116, 80, 58, (16,325,0): 116, 80, 58, (16,326,0): 117, 79, 58, (16,327,0): 117, 79, 58, (16,328,0): 123, 85, 64, (16,329,0): 123, 85, 64, (16,330,0): 125, 84, 64, (16,331,0): 126, 85, 65, (16,332,0): 126, 85, 65, (16,333,0): 127, 86, 66, (16,334,0): 127, 86, 66, (16,335,0): 126, 88, 67, (16,336,0): 127, 90, 71, (16,337,0): 127, 90, 71, (16,338,0): 125, 88, 69, (16,339,0): 124, 87, 68, (16,340,0): 122, 85, 67, (16,341,0): 121, 84, 66, (16,342,0): 120, 83, 65, (16,343,0): 119, 82, 64, (16,344,0): 122, 85, 69, (16,345,0): 121, 84, 68, (16,346,0): 119, 81, 68, (16,347,0): 117, 79, 66, (16,348,0): 115, 77, 64, (16,349,0): 115, 77, 64, (16,350,0): 115, 77, 66, (16,351,0): 115, 77, 64, (16,352,0): 111, 75, 61, (16,353,0): 111, 75, 59, (16,354,0): 112, 76, 62, (16,355,0): 112, 76, 62, (16,356,0): 112, 76, 64, (16,357,0): 112, 75, 66, (16,358,0): 113, 76, 67, (16,359,0): 113, 76, 67, (16,360,0): 118, 81, 72, (16,361,0): 118, 81, 72, (16,362,0): 119, 82, 73, (16,363,0): 120, 84, 72, (16,364,0): 121, 85, 71, (16,365,0): 122, 86, 72, (16,366,0): 123, 87, 71, (16,367,0): 123, 87, 71, (16,368,0): 123, 86, 70, (16,369,0): 125, 86, 71, (16,370,0): 125, 87, 74, (16,371,0): 125, 87, 74, (16,372,0): 123, 87, 73, (16,373,0): 122, 86, 72, (16,374,0): 121, 85, 73, (16,375,0): 120, 84, 72, (16,376,0): 115, 78, 69, (16,377,0): 114, 77, 68, (16,378,0): 112, 75, 66, (16,379,0): 111, 74, 65, (16,380,0): 108, 74, 65, (16,381,0): 109, 75, 66, (16,382,0): 108, 75, 66, (16,383,0): 110, 76, 67, (16,384,0): 114, 77, 68, (16,385,0): 114, 76, 67, (16,386,0): 114, 76, 67, (16,387,0): 114, 76, 67, (16,388,0): 115, 77, 68, (16,389,0): 117, 79, 68, (16,390,0): 119, 81, 72, (16,391,0): 120, 82, 71, (16,392,0): 125, 87, 76, (16,393,0): 125, 87, 76, (16,394,0): 126, 86, 74, (16,395,0): 127, 87, 75, (16,396,0): 128, 88, 76, (16,397,0): 126, 86, 74, (16,398,0): 120, 81, 66, (16,399,0): 115, 77, 64, (16,400,0): 110, 73, 64, (16,401,0): 110, 73, 65, (16,402,0): 110, 73, 65, (16,403,0): 110, 73, 65, (16,404,0): 110, 73, 65, (16,405,0): 109, 72, 64, (16,406,0): 109, 71, 62, (16,407,0): 108, 70, 61, (16,408,0): 109, 69, 59, (16,409,0): 110, 70, 60, (16,410,0): 114, 72, 60, (16,411,0): 115, 73, 61, (16,412,0): 115, 73, 61, (16,413,0): 114, 72, 60, (16,414,0): 112, 70, 58, (16,415,0): 111, 69, 57, (16,416,0): 112, 69, 60, (16,417,0): 109, 69, 61, (16,418,0): 109, 66, 59, (16,419,0): 103, 63, 55, (16,420,0): 99, 58, 52, (16,421,0): 94, 55, 50, (16,422,0): 89, 51, 48, (16,423,0): 85, 50, 46, (16,424,0): 84, 50, 48, (16,425,0): 82, 51, 49, (16,426,0): 82, 50, 51, (16,427,0): 81, 51, 53, (16,428,0): 77, 48, 50, (16,429,0): 74, 45, 49, (16,430,0): 71, 42, 46, (16,431,0): 67, 41, 42, (16,432,0): 71, 45, 44, (16,433,0): 70, 46, 44, (16,434,0): 73, 47, 46, (16,435,0): 75, 49, 48, (16,436,0): 77, 51, 50, (16,437,0): 78, 52, 51, (16,438,0): 80, 54, 53, (16,439,0): 80, 54, 53, (16,440,0): 78, 52, 51, (16,441,0): 80, 55, 51, (16,442,0): 82, 57, 53, (16,443,0): 84, 59, 55, (16,444,0): 86, 61, 57, (16,445,0): 85, 60, 56, (16,446,0): 87, 59, 56, (16,447,0): 84, 59, 55, (16,448,0): 89, 64, 60, (16,449,0): 87, 62, 58, (16,450,0): 86, 60, 59, (16,451,0): 85, 60, 56, (16,452,0): 85, 59, 58, (16,453,0): 87, 62, 58, (16,454,0): 89, 63, 62, (16,455,0): 90, 65, 61, (16,456,0): 87, 61, 60, (16,457,0): 86, 61, 57, (16,458,0): 85, 59, 58, (16,459,0): 84, 59, 55, (16,460,0): 82, 56, 55, (16,461,0): 81, 56, 52, (16,462,0): 80, 54, 53, (16,463,0): 79, 53, 52, (16,464,0): 82, 56, 55, (16,465,0): 82, 56, 55, (16,466,0): 82, 56, 55, (16,467,0): 83, 57, 56, (16,468,0): 85, 59, 58, (16,469,0): 88, 62, 61, (16,470,0): 90, 65, 61, (16,471,0): 92, 67, 63, (16,472,0): 91, 63, 59, (16,473,0): 91, 63, 59, (16,474,0): 92, 65, 58, (16,475,0): 92, 65, 58, (16,476,0): 93, 66, 59, (16,477,0): 93, 66, 59, (16,478,0): 94, 67, 60, (16,479,0): 94, 67, 60, (16,480,0): 96, 71, 64, (16,481,0): 94, 69, 62, (16,482,0): 92, 67, 62, (16,483,0): 89, 64, 59, (16,484,0): 88, 63, 58, (16,485,0): 88, 63, 58, (16,486,0): 88, 63, 58, (16,487,0): 89, 64, 59, (16,488,0): 88, 63, 59, (16,489,0): 88, 63, 59, (16,490,0): 87, 61, 60, (16,491,0): 87, 61, 60, (16,492,0): 86, 60, 59, (16,493,0): 85, 59, 58, (16,494,0): 84, 58, 57, (16,495,0): 84, 58, 57, (16,496,0): 86, 60, 59, (16,497,0): 85, 61, 59, (16,498,0): 87, 61, 60, (16,499,0): 86, 62, 60, (16,500,0): 88, 62, 61, (16,501,0): 87, 63, 59, (16,502,0): 89, 63, 62, (16,503,0): 88, 64, 60, (16,504,0): 89, 64, 60, (16,505,0): 88, 64, 60, (16,506,0): 89, 64, 60, (16,507,0): 88, 64, 60, (16,508,0): 89, 64, 60, (16,509,0): 88, 64, 60, (16,510,0): 89, 64, 60, (16,511,0): 89, 64, 60, (16,512,0): 89, 64, 60, (16,513,0): 90, 65, 61, (16,514,0): 91, 65, 64, (16,515,0): 91, 65, 64, (16,516,0): 90, 64, 63, (16,517,0): 89, 63, 62, (16,518,0): 88, 62, 61, (16,519,0): 87, 61, 62, (16,520,0): 84, 58, 59, (16,521,0): 84, 58, 59, (16,522,0): 83, 57, 58, (16,523,0): 83, 57, 58, (16,524,0): 83, 57, 60, (16,525,0): 83, 57, 60, (16,526,0): 83, 57, 60, (16,527,0): 81, 56, 59, (16,528,0): 76, 52, 52, (16,529,0): 74, 53, 52, (16,530,0): 74, 52, 54, (16,531,0): 74, 52, 54, (16,532,0): 74, 52, 54, (16,533,0): 74, 52, 54, (16,534,0): 74, 52, 55, (16,535,0): 74, 52, 55, (16,536,0): 76, 54, 57, (16,537,0): 76, 51, 55, (16,538,0): 74, 49, 55, (16,539,0): 72, 47, 53, (16,540,0): 72, 47, 53, (16,541,0): 73, 48, 54, (16,542,0): 75, 50, 56, (16,543,0): 77, 52, 58, (16,544,0): 71, 48, 56, (16,545,0): 72, 49, 57, (16,546,0): 74, 48, 57, (16,547,0): 74, 48, 57, (16,548,0): 75, 50, 56, (16,549,0): 75, 50, 56, (16,550,0): 77, 50, 55, (16,551,0): 77, 50, 55, (16,552,0): 81, 52, 56, (16,553,0): 81, 52, 56, (16,554,0): 82, 53, 55, (16,555,0): 85, 55, 57, (16,556,0): 87, 57, 59, (16,557,0): 90, 60, 60, (16,558,0): 94, 62, 63, (16,559,0): 96, 65, 63, (16,560,0): 96, 62, 60, (16,561,0): 97, 62, 60, (16,562,0): 98, 63, 61, (16,563,0): 98, 63, 61, (16,564,0): 97, 61, 61, (16,565,0): 94, 60, 59, (16,566,0): 93, 59, 58, (16,567,0): 90, 59, 57, (16,568,0): 88, 56, 57, (16,569,0): 86, 56, 56, (16,570,0): 85, 55, 57, (16,571,0): 83, 54, 56, (16,572,0): 81, 52, 54, (16,573,0): 80, 51, 55, (16,574,0): 78, 49, 53, (16,575,0): 76, 50, 53, (16,576,0): 71, 46, 49, (16,577,0): 69, 47, 49, (16,578,0): 69, 47, 50, (16,579,0): 68, 46, 48, (16,580,0): 68, 46, 49, (16,581,0): 68, 46, 48, (16,582,0): 68, 46, 49, (16,583,0): 67, 45, 47, (16,584,0): 67, 45, 48, (16,585,0): 67, 45, 47, (16,586,0): 67, 45, 48, (16,587,0): 67, 45, 47, (16,588,0): 67, 45, 48, (16,589,0): 67, 45, 47, (16,590,0): 67, 45, 48, (16,591,0): 67, 45, 47, (16,592,0): 66, 44, 46, (16,593,0): 67, 45, 47, (16,594,0): 69, 47, 49, (16,595,0): 70, 48, 50, (16,596,0): 71, 49, 51, (16,597,0): 71, 49, 51, (16,598,0): 71, 49, 51, (16,599,0): 69, 49, 50, (17,0,0): 38, 26, 40, (17,1,0): 38, 26, 40, (17,2,0): 38, 26, 40, (17,3,0): 39, 27, 41, (17,4,0): 40, 26, 39, (17,5,0): 41, 27, 40, (17,6,0): 43, 27, 40, (17,7,0): 44, 26, 40, (17,8,0): 49, 29, 41, (17,9,0): 50, 30, 42, (17,10,0): 52, 30, 42, (17,11,0): 54, 30, 43, (17,12,0): 57, 31, 44, (17,13,0): 58, 32, 45, (17,14,0): 59, 33, 44, (17,15,0): 57, 34, 44, (17,16,0): 57, 33, 47, (17,17,0): 54, 32, 45, (17,18,0): 52, 30, 43, (17,19,0): 51, 29, 42, (17,20,0): 49, 29, 41, (17,21,0): 48, 28, 40, (17,22,0): 49, 29, 41, (17,23,0): 49, 29, 41, (17,24,0): 48, 30, 42, (17,25,0): 48, 30, 42, (17,26,0): 47, 31, 42, (17,27,0): 47, 31, 42, (17,28,0): 47, 31, 42, (17,29,0): 47, 31, 42, (17,30,0): 45, 32, 42, (17,31,0): 45, 32, 42, (17,32,0): 48, 30, 46, (17,33,0): 48, 30, 46, (17,34,0): 48, 30, 46, (17,35,0): 49, 31, 47, (17,36,0): 49, 31, 47, (17,37,0): 50, 32, 48, (17,38,0): 50, 32, 48, (17,39,0): 50, 32, 48, (17,40,0): 47, 29, 45, (17,41,0): 47, 29, 45, (17,42,0): 48, 30, 46, (17,43,0): 49, 31, 47, (17,44,0): 51, 33, 49, (17,45,0): 52, 34, 50, (17,46,0): 53, 35, 51, (17,47,0): 53, 35, 51, (17,48,0): 50, 32, 48, (17,49,0): 49, 31, 47, (17,50,0): 49, 31, 47, (17,51,0): 49, 31, 47, (17,52,0): 49, 31, 47, (17,53,0): 49, 31, 47, (17,54,0): 49, 31, 47, (17,55,0): 48, 30, 46, (17,56,0): 49, 31, 47, (17,57,0): 48, 30, 46, (17,58,0): 48, 30, 46, (17,59,0): 47, 29, 45, (17,60,0): 47, 29, 45, (17,61,0): 46, 28, 44, (17,62,0): 46, 28, 44, (17,63,0): 46, 28, 44, (17,64,0): 43, 26, 42, (17,65,0): 43, 26, 42, (17,66,0): 43, 26, 42, (17,67,0): 43, 26, 42, (17,68,0): 43, 26, 42, (17,69,0): 43, 26, 42, (17,70,0): 43, 26, 42, (17,71,0): 43, 26, 42, (17,72,0): 42, 25, 41, (17,73,0): 42, 25, 41, (17,74,0): 42, 25, 41, (17,75,0): 42, 25, 41, (17,76,0): 42, 25, 41, (17,77,0): 42, 25, 41, (17,78,0): 42, 25, 41, (17,79,0): 42, 25, 41, (17,80,0): 41, 24, 43, (17,81,0): 41, 24, 43, (17,82,0): 42, 25, 44, (17,83,0): 42, 25, 44, (17,84,0): 42, 25, 44, (17,85,0): 40, 23, 42, (17,86,0): 39, 22, 41, (17,87,0): 38, 21, 40, (17,88,0): 36, 19, 38, (17,89,0): 36, 19, 38, (17,90,0): 35, 18, 37, (17,91,0): 35, 18, 37, (17,92,0): 34, 17, 36, (17,93,0): 34, 17, 36, (17,94,0): 33, 16, 35, (17,95,0): 31, 16, 35, (17,96,0): 28, 19, 38, (17,97,0): 25, 21, 38, (17,98,0): 24, 20, 37, (17,99,0): 23, 19, 36, (17,100,0): 22, 18, 35, (17,101,0): 20, 16, 33, (17,102,0): 20, 16, 33, (17,103,0): 19, 15, 32, (17,104,0): 20, 16, 33, (17,105,0): 20, 16, 33, (17,106,0): 20, 16, 33, (17,107,0): 20, 16, 33, (17,108,0): 20, 16, 33, (17,109,0): 20, 16, 33, (17,110,0): 20, 16, 33, (17,111,0): 20, 16, 33, (17,112,0): 23, 15, 38, (17,113,0): 23, 15, 38, (17,114,0): 23, 15, 38, (17,115,0): 21, 16, 38, (17,116,0): 21, 16, 38, (17,117,0): 21, 16, 38, (17,118,0): 21, 16, 38, (17,119,0): 20, 17, 38, (17,120,0): 21, 18, 39, (17,121,0): 20, 18, 39, (17,122,0): 19, 17, 38, (17,123,0): 19, 17, 38, (17,124,0): 19, 17, 38, (17,125,0): 19, 20, 40, (17,126,0): 20, 21, 41, (17,127,0): 21, 22, 42, (17,128,0): 21, 19, 40, (17,129,0): 23, 20, 41, (17,130,0): 25, 22, 43, (17,131,0): 26, 23, 44, (17,132,0): 27, 22, 44, (17,133,0): 27, 22, 44, (17,134,0): 26, 21, 43, (17,135,0): 26, 21, 43, (17,136,0): 28, 20, 43, (17,137,0): 28, 20, 43, (17,138,0): 30, 20, 44, (17,139,0): 30, 20, 44, (17,140,0): 31, 21, 45, (17,141,0): 31, 21, 45, (17,142,0): 33, 21, 45, (17,143,0): 32, 22, 46, (17,144,0): 32, 22, 46, (17,145,0): 31, 23, 46, (17,146,0): 31, 23, 46, (17,147,0): 31, 23, 46, (17,148,0): 31, 23, 46, (17,149,0): 31, 23, 46, (17,150,0): 31, 23, 46, (17,151,0): 31, 23, 46, (17,152,0): 29, 21, 44, (17,153,0): 29, 21, 44, (17,154,0): 29, 21, 44, (17,155,0): 29, 21, 44, (17,156,0): 29, 21, 44, (17,157,0): 29, 21, 44, (17,158,0): 29, 21, 44, (17,159,0): 27, 22, 44, (17,160,0): 27, 22, 44, (17,161,0): 26, 23, 44, (17,162,0): 27, 24, 45, (17,163,0): 27, 24, 45, (17,164,0): 29, 24, 46, (17,165,0): 29, 24, 46, (17,166,0): 30, 25, 47, (17,167,0): 30, 25, 47, (17,168,0): 31, 23, 46, (17,169,0): 31, 23, 46, (17,170,0): 32, 22, 46, (17,171,0): 33, 23, 47, (17,172,0): 33, 23, 47, (17,173,0): 34, 24, 48, (17,174,0): 36, 24, 48, (17,175,0): 34, 24, 48, (17,176,0): 33, 23, 47, (17,177,0): 32, 24, 47, (17,178,0): 32, 24, 47, (17,179,0): 32, 24, 47, (17,180,0): 32, 24, 47, (17,181,0): 32, 24, 47, (17,182,0): 32, 24, 47, (17,183,0): 32, 24, 47, (17,184,0): 32, 24, 47, (17,185,0): 32, 24, 47, (17,186,0): 32, 24, 47, (17,187,0): 32, 24, 47, (17,188,0): 32, 24, 47, (17,189,0): 32, 24, 47, (17,190,0): 32, 24, 47, (17,191,0): 32, 24, 45, (17,192,0): 30, 25, 45, (17,193,0): 30, 26, 43, (17,194,0): 33, 26, 44, (17,195,0): 33, 26, 44, (17,196,0): 34, 27, 45, (17,197,0): 34, 27, 45, (17,198,0): 36, 27, 46, (17,199,0): 36, 27, 46, (17,200,0): 37, 25, 45, (17,201,0): 38, 26, 46, (17,202,0): 39, 27, 47, (17,203,0): 40, 28, 48, (17,204,0): 41, 28, 48, (17,205,0): 40, 27, 47, (17,206,0): 39, 26, 46, (17,207,0): 38, 25, 45, (17,208,0): 41, 28, 46, (17,209,0): 41, 28, 46, (17,210,0): 41, 28, 46, (17,211,0): 41, 28, 46, (17,212,0): 41, 28, 46, (17,213,0): 41, 28, 46, (17,214,0): 41, 28, 46, (17,215,0): 41, 28, 46, (17,216,0): 38, 25, 43, (17,217,0): 39, 26, 44, (17,218,0): 41, 28, 46, (17,219,0): 42, 29, 47, (17,220,0): 42, 29, 47, (17,221,0): 42, 29, 47, (17,222,0): 41, 28, 46, (17,223,0): 41, 28, 46, (17,224,0): 41, 28, 46, (17,225,0): 41, 28, 46, (17,226,0): 41, 28, 46, (17,227,0): 42, 29, 47, (17,228,0): 43, 30, 48, (17,229,0): 44, 31, 49, (17,230,0): 44, 31, 49, (17,231,0): 44, 31, 49, (17,232,0): 44, 31, 49, (17,233,0): 44, 31, 49, (17,234,0): 44, 31, 49, (17,235,0): 44, 31, 49, (17,236,0): 44, 31, 49, (17,237,0): 44, 31, 49, (17,238,0): 44, 31, 49, (17,239,0): 44, 31, 48, (17,240,0): 43, 30, 47, (17,241,0): 43, 31, 45, (17,242,0): 43, 31, 45, (17,243,0): 43, 31, 45, (17,244,0): 44, 32, 46, (17,245,0): 44, 32, 46, (17,246,0): 45, 31, 46, (17,247,0): 45, 31, 46, (17,248,0): 49, 32, 48, (17,249,0): 48, 31, 47, (17,250,0): 47, 29, 45, (17,251,0): 46, 28, 44, (17,252,0): 46, 28, 44, (17,253,0): 47, 29, 45, (17,254,0): 49, 31, 47, (17,255,0): 50, 32, 48, (17,256,0): 49, 31, 45, (17,257,0): 50, 32, 46, (17,258,0): 50, 32, 44, (17,259,0): 51, 33, 45, (17,260,0): 53, 33, 45, (17,261,0): 54, 34, 46, (17,262,0): 54, 34, 45, (17,263,0): 54, 34, 45, (17,264,0): 56, 35, 44, (17,265,0): 57, 36, 45, (17,266,0): 58, 35, 45, (17,267,0): 59, 36, 46, (17,268,0): 60, 37, 45, (17,269,0): 61, 38, 46, (17,270,0): 64, 38, 47, (17,271,0): 65, 39, 48, (17,272,0): 64, 41, 49, (17,273,0): 64, 41, 49, (17,274,0): 65, 42, 50, (17,275,0): 66, 43, 51, (17,276,0): 69, 44, 50, (17,277,0): 70, 45, 51, (17,278,0): 71, 46, 52, (17,279,0): 72, 47, 53, (17,280,0): 73, 46, 51, (17,281,0): 73, 46, 51, (17,282,0): 76, 47, 51, (17,283,0): 77, 48, 52, (17,284,0): 78, 49, 53, (17,285,0): 79, 50, 54, (17,286,0): 81, 51, 53, (17,287,0): 81, 50, 55, (17,288,0): 82, 49, 56, (17,289,0): 83, 50, 59, (17,290,0): 83, 50, 59, (17,291,0): 83, 50, 59, (17,292,0): 84, 51, 58, (17,293,0): 84, 51, 58, (17,294,0): 85, 53, 58, (17,295,0): 85, 53, 58, (17,296,0): 88, 56, 61, (17,297,0): 88, 56, 61, (17,298,0): 89, 57, 60, (17,299,0): 90, 58, 61, (17,300,0): 91, 59, 60, (17,301,0): 92, 60, 61, (17,302,0): 93, 61, 62, (17,303,0): 95, 61, 62, (17,304,0): 100, 61, 62, (17,305,0): 104, 62, 63, (17,306,0): 110, 67, 61, (17,307,0): 114, 71, 62, (17,308,0): 119, 76, 60, (17,309,0): 124, 78, 62, (17,310,0): 127, 80, 62, (17,311,0): 127, 80, 62, (17,312,0): 126, 79, 63, (17,313,0): 126, 78, 64, (17,314,0): 124, 78, 65, (17,315,0): 122, 79, 63, (17,316,0): 120, 79, 61, (17,317,0): 120, 79, 59, (17,318,0): 117, 79, 56, (17,319,0): 116, 80, 56, (17,320,0): 116, 80, 58, (17,321,0): 115, 80, 58, (17,322,0): 116, 80, 58, (17,323,0): 116, 80, 58, (17,324,0): 117, 81, 59, (17,325,0): 117, 81, 59, (17,326,0): 118, 80, 59, (17,327,0): 118, 80, 59, (17,328,0): 123, 85, 64, (17,329,0): 123, 85, 64, (17,330,0): 126, 85, 65, (17,331,0): 126, 85, 65, (17,332,0): 127, 86, 66, (17,333,0): 127, 86, 66, (17,334,0): 128, 87, 67, (17,335,0): 126, 88, 67, (17,336,0): 128, 90, 71, (17,337,0): 127, 90, 71, (17,338,0): 126, 89, 70, (17,339,0): 124, 87, 68, (17,340,0): 122, 85, 67, (17,341,0): 121, 84, 66, (17,342,0): 120, 83, 65, (17,343,0): 119, 82, 64, (17,344,0): 122, 85, 69, (17,345,0): 121, 84, 68, (17,346,0): 119, 81, 68, (17,347,0): 117, 79, 66, (17,348,0): 115, 77, 64, (17,349,0): 115, 77, 64, (17,350,0): 115, 77, 66, (17,351,0): 115, 77, 64, (17,352,0): 114, 78, 62, (17,353,0): 114, 79, 60, (17,354,0): 114, 78, 62, (17,355,0): 114, 78, 62, (17,356,0): 113, 77, 65, (17,357,0): 113, 77, 65, (17,358,0): 113, 76, 67, (17,359,0): 113, 76, 67, (17,360,0): 117, 80, 71, (17,361,0): 118, 81, 72, (17,362,0): 119, 83, 71, (17,363,0): 120, 84, 70, (17,364,0): 121, 85, 71, (17,365,0): 122, 86, 70, (17,366,0): 123, 88, 69, (17,367,0): 124, 87, 69, (17,368,0): 124, 85, 68, (17,369,0): 125, 86, 69, (17,370,0): 126, 87, 72, (17,371,0): 126, 87, 72, (17,372,0): 124, 87, 71, (17,373,0): 123, 86, 70, (17,374,0): 122, 84, 71, (17,375,0): 121, 83, 70, (17,376,0): 115, 79, 67, (17,377,0): 114, 78, 66, (17,378,0): 111, 77, 65, (17,379,0): 109, 75, 63, (17,380,0): 109, 75, 65, (17,381,0): 109, 75, 65, (17,382,0): 109, 77, 66, (17,383,0): 110, 76, 66, (17,384,0): 115, 78, 69, (17,385,0): 115, 77, 68, (17,386,0): 115, 77, 68, (17,387,0): 115, 77, 68, (17,388,0): 116, 78, 67, (17,389,0): 118, 80, 69, (17,390,0): 120, 82, 71, (17,391,0): 121, 83, 72, (17,392,0): 127, 89, 76, (17,393,0): 127, 87, 75, (17,394,0): 126, 87, 72, (17,395,0): 129, 87, 73, (17,396,0): 130, 88, 74, (17,397,0): 128, 86, 72, (17,398,0): 124, 82, 66, (17,399,0): 118, 79, 64, (17,400,0): 113, 75, 64, (17,401,0): 112, 75, 66, (17,402,0): 111, 74, 65, (17,403,0): 110, 73, 64, (17,404,0): 110, 73, 64, (17,405,0): 109, 73, 61, (17,406,0): 110, 72, 61, (17,407,0): 110, 72, 61, (17,408,0): 110, 70, 58, (17,409,0): 111, 71, 59, (17,410,0): 115, 73, 59, (17,411,0): 116, 74, 60, (17,412,0): 116, 74, 60, (17,413,0): 115, 73, 59, (17,414,0): 113, 71, 57, (17,415,0): 112, 70, 56, (17,416,0): 112, 69, 60, (17,417,0): 109, 69, 61, (17,418,0): 107, 67, 59, (17,419,0): 104, 64, 56, (17,420,0): 99, 60, 53, (17,421,0): 95, 56, 49, (17,422,0): 91, 54, 48, (17,423,0): 88, 53, 49, (17,424,0): 85, 51, 49, (17,425,0): 85, 51, 49, (17,426,0): 83, 52, 50, (17,427,0): 81, 51, 51, (17,428,0): 79, 49, 51, (17,429,0): 75, 46, 48, (17,430,0): 72, 43, 45, (17,431,0): 70, 41, 43, (17,432,0): 71, 45, 44, (17,433,0): 71, 45, 44, (17,434,0): 73, 47, 46, (17,435,0): 74, 48, 47, (17,436,0): 76, 50, 49, (17,437,0): 78, 52, 51, (17,438,0): 79, 53, 52, (17,439,0): 80, 54, 53, (17,440,0): 79, 53, 52, (17,441,0): 80, 54, 53, (17,442,0): 82, 56, 55, (17,443,0): 84, 58, 57, (17,444,0): 85, 59, 58, (17,445,0): 85, 59, 58, (17,446,0): 85, 59, 58, (17,447,0): 84, 58, 57, (17,448,0): 88, 63, 59, (17,449,0): 87, 62, 58, (17,450,0): 86, 61, 57, (17,451,0): 85, 60, 56, (17,452,0): 85, 60, 56, (17,453,0): 86, 61, 57, (17,454,0): 88, 63, 59, (17,455,0): 89, 64, 60, (17,456,0): 86, 61, 57, (17,457,0): 86, 61, 57, (17,458,0): 85, 60, 56, (17,459,0): 84, 59, 55, (17,460,0): 82, 57, 53, (17,461,0): 81, 56, 52, (17,462,0): 80, 55, 51, (17,463,0): 80, 55, 51, (17,464,0): 81, 55, 54, (17,465,0): 81, 55, 54, (17,466,0): 82, 56, 55, (17,467,0): 82, 56, 55, (17,468,0): 84, 58, 57, (17,469,0): 87, 61, 60, (17,470,0): 89, 64, 60, (17,471,0): 91, 66, 62, (17,472,0): 89, 64, 59, (17,473,0): 89, 64, 59, (17,474,0): 89, 64, 57, (17,475,0): 90, 65, 58, (17,476,0): 90, 65, 58, (17,477,0): 91, 66, 59, (17,478,0): 91, 66, 59, (17,479,0): 92, 67, 60, (17,480,0): 95, 70, 63, (17,481,0): 94, 69, 62, (17,482,0): 92, 67, 60, (17,483,0): 89, 64, 57, (17,484,0): 88, 63, 58, (17,485,0): 88, 63, 58, (17,486,0): 88, 63, 58, (17,487,0): 89, 64, 59, (17,488,0): 87, 62, 58, (17,489,0): 87, 62, 58, (17,490,0): 87, 61, 60, (17,491,0): 86, 60, 59, (17,492,0): 86, 60, 59, (17,493,0): 86, 60, 59, (17,494,0): 86, 60, 61, (17,495,0): 85, 59, 58, (17,496,0): 86, 61, 57, (17,497,0): 87, 62, 58, (17,498,0): 87, 62, 58, (17,499,0): 88, 63, 59, (17,500,0): 88, 63, 59, (17,501,0): 89, 64, 60, (17,502,0): 89, 64, 60, (17,503,0): 89, 64, 60, (17,504,0): 90, 65, 61, (17,505,0): 90, 65, 61, (17,506,0): 90, 65, 61, (17,507,0): 90, 65, 61, (17,508,0): 90, 65, 61, (17,509,0): 90, 65, 61, (17,510,0): 90, 65, 61, (17,511,0): 90, 65, 61, (17,512,0): 90, 65, 60, (17,513,0): 90, 65, 60, (17,514,0): 91, 66, 62, (17,515,0): 91, 66, 62, (17,516,0): 91, 66, 62, (17,517,0): 89, 64, 60, (17,518,0): 88, 62, 61, (17,519,0): 87, 61, 60, (17,520,0): 84, 58, 59, (17,521,0): 83, 57, 58, (17,522,0): 83, 57, 58, (17,523,0): 83, 57, 58, (17,524,0): 82, 56, 59, (17,525,0): 82, 56, 59, (17,526,0): 82, 56, 59, (17,527,0): 81, 56, 59, (17,528,0): 77, 53, 53, (17,529,0): 75, 54, 53, (17,530,0): 75, 53, 55, (17,531,0): 75, 53, 55, (17,532,0): 75, 53, 55, (17,533,0): 75, 53, 55, (17,534,0): 75, 53, 56, (17,535,0): 75, 53, 56, (17,536,0): 76, 53, 59, (17,537,0): 74, 51, 57, (17,538,0): 72, 49, 55, (17,539,0): 70, 47, 53, (17,540,0): 70, 47, 55, (17,541,0): 71, 48, 56, (17,542,0): 73, 50, 58, (17,543,0): 74, 51, 59, (17,544,0): 72, 49, 57, (17,545,0): 72, 49, 57, (17,546,0): 75, 49, 58, (17,547,0): 75, 49, 58, (17,548,0): 76, 51, 57, (17,549,0): 76, 51, 57, (17,550,0): 78, 51, 58, (17,551,0): 78, 51, 58, (17,552,0): 81, 52, 57, (17,553,0): 81, 52, 57, (17,554,0): 82, 53, 57, (17,555,0): 83, 54, 58, (17,556,0): 87, 56, 61, (17,557,0): 90, 59, 64, (17,558,0): 92, 62, 64, (17,559,0): 95, 63, 64, (17,560,0): 96, 62, 61, (17,561,0): 98, 63, 61, (17,562,0): 98, 63, 61, (17,563,0): 98, 63, 61, (17,564,0): 98, 62, 62, (17,565,0): 96, 60, 60, (17,566,0): 94, 60, 59, (17,567,0): 92, 58, 57, (17,568,0): 88, 56, 57, (17,569,0): 87, 55, 56, (17,570,0): 85, 55, 57, (17,571,0): 84, 54, 56, (17,572,0): 82, 52, 54, (17,573,0): 80, 50, 52, (17,574,0): 79, 48, 53, (17,575,0): 78, 49, 53, (17,576,0): 73, 48, 51, (17,577,0): 71, 49, 51, (17,578,0): 70, 48, 50, (17,579,0): 69, 47, 49, (17,580,0): 69, 47, 49, (17,581,0): 68, 46, 48, (17,582,0): 67, 45, 47, (17,583,0): 67, 45, 47, (17,584,0): 67, 45, 47, (17,585,0): 67, 45, 47, (17,586,0): 67, 45, 47, (17,587,0): 67, 45, 47, (17,588,0): 67, 45, 47, (17,589,0): 67, 45, 47, (17,590,0): 67, 45, 47, (17,591,0): 67, 45, 47, (17,592,0): 67, 45, 47, (17,593,0): 68, 46, 48, (17,594,0): 70, 48, 50, (17,595,0): 71, 49, 51, (17,596,0): 72, 50, 52, (17,597,0): 72, 50, 52, (17,598,0): 71, 49, 51, (17,599,0): 71, 49, 51, (18,0,0): 37, 26, 40, (18,1,0): 37, 26, 40, (18,2,0): 38, 26, 40, (18,3,0): 39, 27, 41, (18,4,0): 40, 26, 39, (18,5,0): 41, 27, 40, (18,6,0): 43, 27, 40, (18,7,0): 44, 26, 40, (18,8,0): 49, 29, 41, (18,9,0): 49, 29, 41, (18,10,0): 51, 29, 41, (18,11,0): 52, 30, 42, (18,12,0): 54, 30, 43, (18,13,0): 55, 31, 44, (18,14,0): 58, 32, 43, (18,15,0): 57, 34, 44, (18,16,0): 58, 34, 48, (18,17,0): 55, 33, 46, (18,18,0): 54, 32, 45, (18,19,0): 52, 30, 43, (18,20,0): 50, 30, 42, (18,21,0): 49, 29, 41, (18,22,0): 50, 30, 42, (18,23,0): 50, 30, 42, (18,24,0): 48, 30, 42, (18,25,0): 48, 30, 42, (18,26,0): 47, 31, 42, (18,27,0): 47, 31, 42, (18,28,0): 47, 31, 42, (18,29,0): 47, 31, 42, (18,30,0): 45, 32, 42, (18,31,0): 45, 32, 42, (18,32,0): 48, 30, 46, (18,33,0): 48, 30, 46, (18,34,0): 48, 30, 46, (18,35,0): 49, 31, 47, (18,36,0): 49, 31, 47, (18,37,0): 50, 32, 48, (18,38,0): 50, 32, 48, (18,39,0): 50, 32, 48, (18,40,0): 48, 30, 46, (18,41,0): 49, 31, 47, (18,42,0): 50, 32, 48, (18,43,0): 51, 33, 49, (18,44,0): 52, 34, 50, (18,45,0): 53, 35, 51, (18,46,0): 53, 35, 51, (18,47,0): 54, 36, 52, (18,48,0): 51, 33, 49, (18,49,0): 51, 33, 49, (18,50,0): 50, 32, 48, (18,51,0): 49, 31, 47, (18,52,0): 49, 31, 47, (18,53,0): 48, 30, 46, (18,54,0): 47, 29, 45, (18,55,0): 47, 29, 45, (18,56,0): 48, 30, 46, (18,57,0): 48, 30, 46, (18,58,0): 48, 30, 46, (18,59,0): 47, 29, 45, (18,60,0): 47, 29, 45, (18,61,0): 46, 28, 44, (18,62,0): 46, 28, 44, (18,63,0): 45, 27, 43, (18,64,0): 43, 26, 42, (18,65,0): 43, 26, 42, (18,66,0): 43, 26, 42, (18,67,0): 43, 26, 42, (18,68,0): 43, 26, 42, (18,69,0): 43, 26, 42, (18,70,0): 43, 26, 42, (18,71,0): 43, 26, 42, (18,72,0): 41, 24, 40, (18,73,0): 41, 24, 40, (18,74,0): 41, 24, 40, (18,75,0): 41, 24, 40, (18,76,0): 41, 24, 40, (18,77,0): 41, 24, 40, (18,78,0): 41, 24, 40, (18,79,0): 41, 24, 40, (18,80,0): 41, 24, 43, (18,81,0): 41, 24, 43, (18,82,0): 42, 25, 44, (18,83,0): 42, 25, 44, (18,84,0): 42, 25, 44, (18,85,0): 40, 23, 42, (18,86,0): 39, 22, 41, (18,87,0): 38, 21, 40, (18,88,0): 36, 19, 38, (18,89,0): 36, 19, 38, (18,90,0): 35, 18, 37, (18,91,0): 35, 18, 37, (18,92,0): 34, 17, 36, (18,93,0): 34, 17, 36, (18,94,0): 33, 16, 35, (18,95,0): 31, 16, 35, (18,96,0): 29, 20, 39, (18,97,0): 28, 21, 39, (18,98,0): 27, 20, 38, (18,99,0): 26, 19, 37, (18,100,0): 25, 18, 36, (18,101,0): 24, 17, 35, (18,102,0): 24, 17, 35, (18,103,0): 23, 16, 34, (18,104,0): 23, 16, 34, (18,105,0): 23, 16, 34, (18,106,0): 23, 16, 34, (18,107,0): 23, 16, 34, (18,108,0): 23, 16, 34, (18,109,0): 23, 16, 34, (18,110,0): 23, 16, 34, (18,111,0): 23, 16, 34, (18,112,0): 21, 16, 38, (18,113,0): 21, 16, 38, (18,114,0): 21, 16, 38, (18,115,0): 21, 16, 38, (18,116,0): 21, 16, 38, (18,117,0): 20, 17, 38, (18,118,0): 20, 17, 38, (18,119,0): 20, 17, 38, (18,120,0): 21, 18, 39, (18,121,0): 20, 18, 39, (18,122,0): 19, 17, 38, (18,123,0): 17, 18, 38, (18,124,0): 17, 18, 38, (18,125,0): 19, 20, 40, (18,126,0): 20, 21, 41, (18,127,0): 21, 22, 42, (18,128,0): 22, 20, 41, (18,129,0): 24, 21, 42, (18,130,0): 25, 22, 43, (18,131,0): 26, 23, 44, (18,132,0): 28, 23, 45, (18,133,0): 28, 23, 45, (18,134,0): 27, 22, 44, (18,135,0): 26, 21, 43, (18,136,0): 28, 20, 43, (18,137,0): 29, 21, 44, (18,138,0): 30, 20, 44, (18,139,0): 30, 20, 44, (18,140,0): 31, 21, 45, (18,141,0): 32, 22, 46, (18,142,0): 34, 22, 46, (18,143,0): 32, 22, 46, (18,144,0): 32, 22, 46, (18,145,0): 31, 23, 46, (18,146,0): 31, 23, 46, (18,147,0): 31, 23, 46, (18,148,0): 31, 23, 46, (18,149,0): 31, 23, 46, (18,150,0): 31, 23, 46, (18,151,0): 31, 23, 46, (18,152,0): 31, 23, 46, (18,153,0): 30, 22, 45, (18,154,0): 28, 20, 43, (18,155,0): 27, 19, 42, (18,156,0): 27, 19, 42, (18,157,0): 28, 20, 43, (18,158,0): 30, 22, 45, (18,159,0): 29, 24, 46, (18,160,0): 27, 22, 44, (18,161,0): 26, 23, 44, (18,162,0): 27, 24, 45, (18,163,0): 27, 24, 45, (18,164,0): 29, 24, 46, (18,165,0): 29, 24, 46, (18,166,0): 30, 25, 47, (18,167,0): 30, 25, 47, (18,168,0): 31, 23, 46, (18,169,0): 31, 23, 46, (18,170,0): 32, 22, 46, (18,171,0): 33, 23, 47, (18,172,0): 33, 23, 47, (18,173,0): 34, 24, 48, (18,174,0): 36, 24, 48, (18,175,0): 34, 24, 48, (18,176,0): 33, 23, 47, (18,177,0): 32, 24, 47, (18,178,0): 32, 24, 47, (18,179,0): 32, 24, 47, (18,180,0): 32, 24, 47, (18,181,0): 32, 24, 47, (18,182,0): 32, 24, 47, (18,183,0): 32, 24, 47, (18,184,0): 32, 24, 47, (18,185,0): 32, 24, 47, (18,186,0): 32, 24, 47, (18,187,0): 32, 24, 47, (18,188,0): 32, 24, 47, (18,189,0): 32, 24, 47, (18,190,0): 32, 24, 47, (18,191,0): 32, 24, 45, (18,192,0): 30, 25, 45, (18,193,0): 30, 26, 43, (18,194,0): 33, 26, 44, (18,195,0): 33, 26, 44, (18,196,0): 34, 27, 45, (18,197,0): 34, 27, 45, (18,198,0): 36, 27, 46, (18,199,0): 36, 27, 46, (18,200,0): 37, 25, 45, (18,201,0): 38, 26, 46, (18,202,0): 39, 27, 47, (18,203,0): 40, 28, 48, (18,204,0): 41, 28, 48, (18,205,0): 40, 27, 47, (18,206,0): 39, 26, 46, (18,207,0): 38, 25, 45, (18,208,0): 41, 28, 46, (18,209,0): 41, 28, 46, (18,210,0): 41, 28, 46, (18,211,0): 41, 28, 46, (18,212,0): 41, 28, 46, (18,213,0): 41, 28, 46, (18,214,0): 41, 28, 46, (18,215,0): 41, 28, 46, (18,216,0): 39, 26, 44, (18,217,0): 40, 27, 45, (18,218,0): 41, 28, 46, (18,219,0): 42, 29, 47, (18,220,0): 43, 30, 48, (18,221,0): 43, 30, 48, (18,222,0): 42, 29, 47, (18,223,0): 41, 28, 46, (18,224,0): 40, 27, 45, (18,225,0): 40, 27, 45, (18,226,0): 41, 28, 46, (18,227,0): 41, 28, 46, (18,228,0): 42, 29, 47, (18,229,0): 42, 29, 47, (18,230,0): 42, 29, 47, (18,231,0): 43, 30, 48, (18,232,0): 44, 31, 49, (18,233,0): 44, 31, 49, (18,234,0): 44, 31, 49, (18,235,0): 44, 31, 49, (18,236,0): 44, 31, 49, (18,237,0): 44, 31, 49, (18,238,0): 44, 31, 49, (18,239,0): 44, 31, 48, (18,240,0): 44, 31, 48, (18,241,0): 44, 32, 46, (18,242,0): 44, 32, 46, (18,243,0): 44, 32, 46, (18,244,0): 43, 31, 45, (18,245,0): 43, 31, 45, (18,246,0): 44, 30, 45, (18,247,0): 44, 30, 45, (18,248,0): 48, 31, 47, (18,249,0): 48, 31, 47, (18,250,0): 48, 30, 46, (18,251,0): 47, 29, 45, (18,252,0): 47, 29, 45, (18,253,0): 48, 30, 46, (18,254,0): 49, 31, 47, (18,255,0): 49, 31, 47, (18,256,0): 50, 32, 46, (18,257,0): 50, 32, 46, (18,258,0): 50, 32, 44, (18,259,0): 51, 33, 45, (18,260,0): 53, 33, 45, (18,261,0): 54, 34, 46, (18,262,0): 54, 34, 45, (18,263,0): 55, 35, 46, (18,264,0): 55, 34, 43, (18,265,0): 56, 35, 44, (18,266,0): 58, 35, 45, (18,267,0): 59, 36, 46, (18,268,0): 60, 37, 45, (18,269,0): 61, 38, 46, (18,270,0): 64, 38, 47, (18,271,0): 64, 38, 47, (18,272,0): 64, 41, 49, (18,273,0): 65, 42, 50, (18,274,0): 66, 43, 51, (18,275,0): 67, 44, 52, (18,276,0): 70, 45, 51, (18,277,0): 71, 46, 52, (18,278,0): 73, 46, 53, (18,279,0): 73, 46, 53, (18,280,0): 73, 46, 51, (18,281,0): 73, 46, 51, (18,282,0): 76, 47, 51, (18,283,0): 77, 48, 52, (18,284,0): 79, 48, 53, (18,285,0): 80, 49, 54, (18,286,0): 81, 51, 53, (18,287,0): 81, 50, 55, (18,288,0): 82, 49, 56, (18,289,0): 82, 49, 58, (18,290,0): 83, 50, 57, (18,291,0): 83, 50, 57, (18,292,0): 84, 51, 58, (18,293,0): 84, 51, 58, (18,294,0): 85, 53, 58, (18,295,0): 85, 53, 58, (18,296,0): 88, 56, 59, (18,297,0): 88, 56, 59, (18,298,0): 89, 57, 60, (18,299,0): 90, 58, 61, (18,300,0): 91, 59, 60, (18,301,0): 92, 60, 61, (18,302,0): 93, 61, 62, (18,303,0): 95, 61, 62, (18,304,0): 102, 62, 63, (18,305,0): 105, 63, 64, (18,306,0): 111, 68, 62, (18,307,0): 116, 73, 64, (18,308,0): 120, 77, 61, (18,309,0): 125, 79, 63, (18,310,0): 128, 81, 63, (18,311,0): 129, 82, 64, (18,312,0): 127, 80, 64, (18,313,0): 127, 80, 64, (18,314,0): 125, 79, 64, (18,315,0): 123, 80, 64, (18,316,0): 121, 80, 62, (18,317,0): 121, 80, 60, (18,318,0): 118, 80, 57, (18,319,0): 117, 81, 55, (18,320,0): 116, 80, 56, (18,321,0): 116, 80, 56, (18,322,0): 117, 81, 57, (18,323,0): 117, 81, 57, (18,324,0): 119, 81, 58, (18,325,0): 120, 82, 59, (18,326,0): 120, 82, 59, (18,327,0): 120, 82, 59, (18,328,0): 124, 86, 63, (18,329,0): 124, 86, 63, (18,330,0): 127, 86, 64, (18,331,0): 127, 86, 64, (18,332,0): 128, 87, 65, (18,333,0): 128, 87, 65, (18,334,0): 129, 88, 66, (18,335,0): 127, 89, 66, (18,336,0): 129, 91, 70, (18,337,0): 127, 91, 69, (18,338,0): 126, 89, 70, (18,339,0): 125, 88, 69, (18,340,0): 123, 86, 67, (18,341,0): 121, 84, 65, (18,342,0): 120, 83, 65, (18,343,0): 120, 83, 65, (18,344,0): 122, 85, 69, (18,345,0): 120, 83, 67, (18,346,0): 119, 82, 66, (18,347,0): 117, 80, 64, (18,348,0): 116, 78, 65, (18,349,0): 116, 78, 65, (18,350,0): 116, 78, 65, (18,351,0): 116, 78, 65, (18,352,0): 119, 82, 66, (18,353,0): 119, 82, 64, (18,354,0): 118, 81, 65, (18,355,0): 117, 80, 64, (18,356,0): 116, 78, 67, (18,357,0): 115, 77, 66, (18,358,0): 115, 77, 68, (18,359,0): 114, 76, 67, (18,360,0): 118, 80, 71, (18,361,0): 119, 81, 72, (18,362,0): 119, 81, 70, (18,363,0): 120, 82, 69, (18,364,0): 121, 83, 70, (18,365,0): 122, 85, 69, (18,366,0): 123, 86, 68, (18,367,0): 124, 87, 69, (18,368,0): 125, 86, 69, (18,369,0): 125, 86, 69, (18,370,0): 126, 87, 70, (18,371,0): 126, 87, 70, (18,372,0): 126, 87, 72, (18,373,0): 125, 86, 71, (18,374,0): 122, 84, 71, (18,375,0): 121, 83, 70, (18,376,0): 116, 80, 66, (18,377,0): 115, 79, 65, (18,378,0): 112, 78, 66, (18,379,0): 111, 77, 65, (18,380,0): 110, 76, 66, (18,381,0): 110, 76, 66, (18,382,0): 111, 77, 67, (18,383,0): 112, 78, 68, (18,384,0): 117, 80, 71, (18,385,0): 116, 79, 70, (18,386,0): 117, 79, 70, (18,387,0): 117, 79, 70, (18,388,0): 118, 80, 69, (18,389,0): 120, 82, 71, (18,390,0): 123, 83, 71, (18,391,0): 124, 84, 72, (18,392,0): 131, 91, 79, (18,393,0): 130, 88, 76, (18,394,0): 128, 86, 72, (18,395,0): 130, 86, 73, (18,396,0): 131, 88, 72, (18,397,0): 131, 88, 72, (18,398,0): 128, 85, 69, (18,399,0): 124, 82, 68, (18,400,0): 117, 79, 68, (18,401,0): 115, 78, 69, (18,402,0): 114, 76, 67, (18,403,0): 112, 74, 65, (18,404,0): 111, 73, 62, (18,405,0): 112, 74, 63, (18,406,0): 115, 75, 65, (18,407,0): 116, 76, 64, (18,408,0): 115, 73, 61, (18,409,0): 116, 74, 62, (18,410,0): 117, 75, 61, (18,411,0): 117, 75, 61, (18,412,0): 118, 75, 59, (18,413,0): 118, 75, 59, (18,414,0): 117, 74, 58, (18,415,0): 115, 73, 59, (18,416,0): 113, 70, 61, (18,417,0): 111, 68, 59, (18,418,0): 107, 67, 59, (18,419,0): 104, 64, 56, (18,420,0): 100, 61, 54, (18,421,0): 98, 59, 52, (18,422,0): 95, 58, 52, (18,423,0): 92, 57, 53, (18,424,0): 87, 53, 51, (18,425,0): 87, 53, 51, (18,426,0): 84, 53, 51, (18,427,0): 82, 52, 50, (18,428,0): 80, 50, 50, (18,429,0): 77, 47, 47, (18,430,0): 74, 45, 47, (18,431,0): 72, 43, 45, (18,432,0): 71, 45, 44, (18,433,0): 71, 45, 44, (18,434,0): 73, 47, 46, (18,435,0): 74, 48, 47, (18,436,0): 76, 50, 49, (18,437,0): 77, 51, 50, (18,438,0): 78, 52, 51, (18,439,0): 79, 53, 52, (18,440,0): 79, 53, 52, (18,441,0): 80, 54, 53, (18,442,0): 82, 56, 55, (18,443,0): 84, 58, 57, (18,444,0): 85, 59, 58, (18,445,0): 85, 59, 58, (18,446,0): 85, 59, 58, (18,447,0): 85, 59, 58, (18,448,0): 87, 62, 58, (18,449,0): 86, 61, 57, (18,450,0): 85, 60, 56, (18,451,0): 84, 59, 55, (18,452,0): 84, 59, 55, (18,453,0): 85, 60, 56, (18,454,0): 86, 61, 57, (18,455,0): 86, 61, 57, (18,456,0): 86, 61, 57, (18,457,0): 85, 60, 56, (18,458,0): 84, 59, 55, (18,459,0): 84, 59, 55, (18,460,0): 82, 57, 53, (18,461,0): 82, 57, 53, (18,462,0): 81, 56, 52, (18,463,0): 80, 55, 51, (18,464,0): 81, 55, 54, (18,465,0): 80, 54, 53, (18,466,0): 80, 54, 53, (18,467,0): 81, 55, 54, (18,468,0): 83, 57, 56, (18,469,0): 85, 59, 58, (18,470,0): 87, 62, 58, (18,471,0): 89, 64, 60, (18,472,0): 88, 63, 58, (18,473,0): 89, 64, 59, (18,474,0): 89, 64, 57, (18,475,0): 90, 65, 58, (18,476,0): 90, 65, 58, (18,477,0): 91, 66, 59, (18,478,0): 91, 66, 59, (18,479,0): 91, 66, 59, (18,480,0): 94, 69, 62, (18,481,0): 93, 68, 61, (18,482,0): 91, 66, 59, (18,483,0): 90, 65, 58, (18,484,0): 89, 64, 57, (18,485,0): 89, 64, 57, (18,486,0): 89, 64, 59, (18,487,0): 89, 64, 59, (18,488,0): 86, 61, 57, (18,489,0): 86, 61, 57, (18,490,0): 86, 60, 59, (18,491,0): 87, 61, 60, (18,492,0): 87, 61, 60, (18,493,0): 87, 61, 60, (18,494,0): 87, 61, 60, (18,495,0): 88, 62, 61, (18,496,0): 87, 62, 58, (18,497,0): 87, 62, 58, (18,498,0): 87, 62, 58, (18,499,0): 88, 63, 59, (18,500,0): 88, 63, 59, (18,501,0): 89, 64, 60, (18,502,0): 89, 64, 60, (18,503,0): 90, 65, 61, (18,504,0): 90, 65, 61, (18,505,0): 90, 65, 61, (18,506,0): 90, 65, 61, (18,507,0): 90, 65, 61, (18,508,0): 90, 65, 61, (18,509,0): 90, 65, 61, (18,510,0): 90, 65, 61, (18,511,0): 90, 65, 61, (18,512,0): 91, 66, 61, (18,513,0): 91, 66, 61, (18,514,0): 92, 67, 63, (18,515,0): 92, 67, 63, (18,516,0): 91, 66, 62, (18,517,0): 90, 65, 61, (18,518,0): 89, 63, 62, (18,519,0): 88, 62, 61, (18,520,0): 84, 58, 59, (18,521,0): 84, 58, 59, (18,522,0): 83, 57, 58, (18,523,0): 83, 57, 58, (18,524,0): 82, 56, 59, (18,525,0): 81, 55, 58, (18,526,0): 81, 55, 58, (18,527,0): 80, 55, 58, (18,528,0): 77, 53, 53, (18,529,0): 75, 54, 53, (18,530,0): 75, 53, 55, (18,531,0): 75, 53, 55, (18,532,0): 75, 53, 55, (18,533,0): 75, 53, 55, (18,534,0): 75, 53, 56, (18,535,0): 75, 53, 56, (18,536,0): 77, 54, 60, (18,537,0): 75, 52, 58, (18,538,0): 72, 49, 55, (18,539,0): 70, 47, 53, (18,540,0): 70, 47, 55, (18,541,0): 71, 48, 56, (18,542,0): 72, 49, 57, (18,543,0): 74, 51, 59, (18,544,0): 73, 50, 58, (18,545,0): 73, 50, 58, (18,546,0): 74, 51, 59, (18,547,0): 74, 51, 59, (18,548,0): 77, 52, 58, (18,549,0): 77, 52, 58, (18,550,0): 79, 52, 59, (18,551,0): 79, 52, 59, (18,552,0): 79, 52, 57, (18,553,0): 79, 52, 57, (18,554,0): 81, 52, 56, (18,555,0): 83, 54, 58, (18,556,0): 86, 55, 60, (18,557,0): 89, 58, 63, (18,558,0): 91, 61, 63, (18,559,0): 94, 62, 63, (18,560,0): 96, 62, 61, (18,561,0): 98, 63, 61, (18,562,0): 99, 63, 63, (18,563,0): 99, 63, 63, (18,564,0): 97, 63, 62, (18,565,0): 96, 62, 61, (18,566,0): 95, 61, 62, (18,567,0): 94, 60, 61, (18,568,0): 87, 55, 58, (18,569,0): 87, 55, 58, (18,570,0): 85, 55, 57, (18,571,0): 83, 53, 55, (18,572,0): 81, 50, 55, (18,573,0): 80, 49, 54, (18,574,0): 78, 49, 53, (18,575,0): 75, 49, 52, (18,576,0): 76, 51, 54, (18,577,0): 73, 51, 53, (18,578,0): 72, 50, 52, (18,579,0): 71, 49, 51, (18,580,0): 69, 47, 49, (18,581,0): 68, 46, 48, (18,582,0): 67, 45, 47, (18,583,0): 66, 44, 46, (18,584,0): 67, 45, 47, (18,585,0): 67, 45, 47, (18,586,0): 67, 45, 47, (18,587,0): 67, 45, 47, (18,588,0): 67, 45, 47, (18,589,0): 67, 45, 47, (18,590,0): 67, 45, 47, (18,591,0): 67, 45, 47, (18,592,0): 68, 46, 48, (18,593,0): 69, 47, 49, (18,594,0): 71, 49, 51, (18,595,0): 72, 50, 52, (18,596,0): 72, 50, 52, (18,597,0): 72, 50, 52, (18,598,0): 71, 49, 51, (18,599,0): 71, 49, 51, (19,0,0): 37, 26, 40, (19,1,0): 37, 26, 40, (19,2,0): 38, 26, 40, (19,3,0): 39, 27, 41, (19,4,0): 40, 26, 39, (19,5,0): 41, 27, 40, (19,6,0): 43, 27, 40, (19,7,0): 43, 27, 40, (19,8,0): 47, 29, 41, (19,9,0): 49, 29, 41, (19,10,0): 51, 29, 41, (19,11,0): 52, 30, 42, (19,12,0): 54, 30, 43, (19,13,0): 55, 31, 44, (19,14,0): 58, 32, 43, (19,15,0): 56, 33, 43, (19,16,0): 57, 35, 48, (19,17,0): 56, 34, 47, (19,18,0): 54, 32, 45, (19,19,0): 53, 31, 44, (19,20,0): 50, 30, 42, (19,21,0): 50, 30, 42, (19,22,0): 51, 31, 43, (19,23,0): 51, 31, 43, (19,24,0): 48, 30, 42, (19,25,0): 48, 30, 42, (19,26,0): 47, 31, 42, (19,27,0): 47, 31, 42, (19,28,0): 47, 31, 42, (19,29,0): 47, 31, 42, (19,30,0): 45, 32, 42, (19,31,0): 45, 32, 42, (19,32,0): 48, 30, 46, (19,33,0): 48, 30, 46, (19,34,0): 48, 30, 46, (19,35,0): 49, 31, 47, (19,36,0): 49, 31, 47, (19,37,0): 50, 32, 48, (19,38,0): 50, 32, 48, (19,39,0): 50, 32, 48, (19,40,0): 50, 32, 48, (19,41,0): 50, 32, 48, (19,42,0): 51, 33, 49, (19,43,0): 51, 33, 49, (19,44,0): 52, 34, 50, (19,45,0): 53, 35, 51, (19,46,0): 53, 35, 51, (19,47,0): 54, 36, 52, (19,48,0): 52, 34, 50, (19,49,0): 52, 34, 50, (19,50,0): 51, 33, 49, (19,51,0): 50, 32, 48, (19,52,0): 48, 30, 46, (19,53,0): 47, 29, 45, (19,54,0): 46, 28, 44, (19,55,0): 46, 28, 44, (19,56,0): 48, 30, 46, (19,57,0): 47, 29, 45, (19,58,0): 47, 29, 45, (19,59,0): 47, 29, 45, (19,60,0): 46, 28, 44, (19,61,0): 45, 27, 43, (19,62,0): 45, 27, 43, (19,63,0): 45, 27, 43, (19,64,0): 42, 25, 41, (19,65,0): 42, 25, 41, (19,66,0): 42, 25, 41, (19,67,0): 42, 25, 41, (19,68,0): 42, 25, 41, (19,69,0): 42, 25, 41, (19,70,0): 42, 25, 41, (19,71,0): 42, 25, 41, (19,72,0): 41, 24, 40, (19,73,0): 41, 24, 40, (19,74,0): 41, 24, 40, (19,75,0): 41, 24, 40, (19,76,0): 41, 24, 40, (19,77,0): 41, 24, 40, (19,78,0): 41, 24, 40, (19,79,0): 41, 24, 40, (19,80,0): 41, 24, 43, (19,81,0): 41, 24, 43, (19,82,0): 42, 25, 44, (19,83,0): 42, 25, 44, (19,84,0): 42, 25, 44, (19,85,0): 40, 23, 42, (19,86,0): 39, 22, 41, (19,87,0): 38, 21, 40, (19,88,0): 36, 19, 38, (19,89,0): 36, 19, 38, (19,90,0): 35, 18, 37, (19,91,0): 35, 18, 37, (19,92,0): 34, 17, 36, (19,93,0): 34, 17, 36, (19,94,0): 33, 16, 35, (19,95,0): 31, 16, 35, (19,96,0): 32, 20, 40, (19,97,0): 29, 22, 40, (19,98,0): 29, 20, 39, (19,99,0): 27, 20, 38, (19,100,0): 28, 19, 38, (19,101,0): 26, 19, 37, (19,102,0): 26, 17, 36, (19,103,0): 25, 18, 36, (19,104,0): 25, 16, 35, (19,105,0): 24, 17, 35, (19,106,0): 25, 16, 35, (19,107,0): 24, 17, 35, (19,108,0): 25, 16, 35, (19,109,0): 24, 17, 35, (19,110,0): 25, 16, 35, (19,111,0): 24, 17, 35, (19,112,0): 21, 16, 38, (19,113,0): 21, 16, 38, (19,114,0): 21, 16, 38, (19,115,0): 20, 17, 38, (19,116,0): 20, 17, 38, (19,117,0): 20, 17, 38, (19,118,0): 20, 17, 38, (19,119,0): 19, 17, 38, (19,120,0): 20, 18, 39, (19,121,0): 18, 19, 39, (19,122,0): 17, 18, 38, (19,123,0): 17, 18, 38, (19,124,0): 17, 18, 38, (19,125,0): 18, 21, 40, (19,126,0): 19, 22, 41, (19,127,0): 21, 22, 42, (19,128,0): 22, 20, 41, (19,129,0): 24, 21, 42, (19,130,0): 25, 22, 43, (19,131,0): 27, 24, 45, (19,132,0): 28, 23, 45, (19,133,0): 28, 23, 45, (19,134,0): 27, 22, 44, (19,135,0): 27, 22, 44, (19,136,0): 29, 21, 44, (19,137,0): 29, 21, 44, (19,138,0): 30, 20, 44, (19,139,0): 31, 21, 45, (19,140,0): 31, 21, 45, (19,141,0): 32, 22, 46, (19,142,0): 34, 22, 46, (19,143,0): 33, 23, 47, (19,144,0): 32, 22, 46, (19,145,0): 31, 23, 46, (19,146,0): 31, 23, 46, (19,147,0): 31, 23, 46, (19,148,0): 31, 23, 46, (19,149,0): 31, 23, 46, (19,150,0): 31, 23, 46, (19,151,0): 31, 23, 46, (19,152,0): 32, 24, 47, (19,153,0): 30, 22, 45, (19,154,0): 28, 20, 43, (19,155,0): 26, 18, 41, (19,156,0): 26, 18, 41, (19,157,0): 28, 20, 43, (19,158,0): 30, 22, 45, (19,159,0): 30, 25, 47, (19,160,0): 27, 22, 44, (19,161,0): 26, 23, 44, (19,162,0): 27, 24, 45, (19,163,0): 27, 24, 45, (19,164,0): 29, 24, 46, (19,165,0): 29, 24, 46, (19,166,0): 30, 25, 47, (19,167,0): 30, 25, 47, (19,168,0): 31, 23, 46, (19,169,0): 31, 23, 46, (19,170,0): 32, 22, 46, (19,171,0): 33, 23, 47, (19,172,0): 33, 23, 47, (19,173,0): 34, 24, 48, (19,174,0): 36, 24, 48, (19,175,0): 34, 24, 48, (19,176,0): 33, 23, 47, (19,177,0): 32, 24, 47, (19,178,0): 32, 24, 47, (19,179,0): 32, 24, 47, (19,180,0): 32, 24, 47, (19,181,0): 32, 24, 47, (19,182,0): 32, 24, 47, (19,183,0): 32, 24, 47, (19,184,0): 32, 24, 47, (19,185,0): 32, 24, 47, (19,186,0): 32, 24, 47, (19,187,0): 32, 24, 47, (19,188,0): 32, 24, 47, (19,189,0): 32, 24, 47, (19,190,0): 32, 24, 47, (19,191,0): 32, 24, 45, (19,192,0): 30, 25, 45, (19,193,0): 30, 26, 43, (19,194,0): 33, 26, 44, (19,195,0): 33, 26, 44, (19,196,0): 34, 27, 45, (19,197,0): 34, 27, 45, (19,198,0): 36, 27, 46, (19,199,0): 36, 27, 46, (19,200,0): 38, 26, 46, (19,201,0): 39, 27, 47, (19,202,0): 40, 28, 48, (19,203,0): 41, 29, 49, (19,204,0): 42, 29, 49, (19,205,0): 41, 28, 48, (19,206,0): 40, 27, 47, (19,207,0): 39, 26, 46, (19,208,0): 42, 29, 47, (19,209,0): 42, 29, 47, (19,210,0): 42, 29, 47, (19,211,0): 42, 29, 47, (19,212,0): 42, 29, 47, (19,213,0): 42, 29, 47, (19,214,0): 42, 29, 47, (19,215,0): 42, 29, 47, (19,216,0): 39, 26, 44, (19,217,0): 40, 27, 45, (19,218,0): 41, 28, 46, (19,219,0): 43, 30, 48, (19,220,0): 43, 30, 48, (19,221,0): 43, 30, 48, (19,222,0): 42, 29, 47, (19,223,0): 42, 29, 47, (19,224,0): 40, 27, 45, (19,225,0): 40, 27, 45, (19,226,0): 40, 27, 45, (19,227,0): 41, 28, 46, (19,228,0): 41, 28, 46, (19,229,0): 41, 28, 46, (19,230,0): 41, 28, 46, (19,231,0): 41, 28, 46, (19,232,0): 43, 30, 48, (19,233,0): 43, 30, 48, (19,234,0): 43, 30, 48, (19,235,0): 43, 30, 48, (19,236,0): 43, 30, 48, (19,237,0): 43, 30, 48, (19,238,0): 43, 30, 48, (19,239,0): 43, 30, 47, (19,240,0): 46, 33, 50, (19,241,0): 45, 33, 47, (19,242,0): 45, 33, 47, (19,243,0): 44, 32, 46, (19,244,0): 43, 31, 45, (19,245,0): 42, 30, 44, (19,246,0): 43, 29, 44, (19,247,0): 42, 28, 43, (19,248,0): 48, 31, 47, (19,249,0): 48, 31, 47, (19,250,0): 49, 31, 47, (19,251,0): 48, 30, 46, (19,252,0): 48, 30, 46, (19,253,0): 49, 31, 47, (19,254,0): 49, 31, 47, (19,255,0): 49, 31, 47, (19,256,0): 50, 32, 46, (19,257,0): 51, 33, 47, (19,258,0): 51, 33, 45, (19,259,0): 51, 33, 45, (19,260,0): 54, 34, 46, (19,261,0): 55, 35, 47, (19,262,0): 55, 35, 46, (19,263,0): 55, 35, 46, (19,264,0): 55, 34, 43, (19,265,0): 56, 35, 44, (19,266,0): 57, 34, 44, (19,267,0): 58, 35, 45, (19,268,0): 59, 36, 44, (19,269,0): 60, 37, 45, (19,270,0): 63, 37, 46, (19,271,0): 64, 38, 47, (19,272,0): 65, 42, 50, (19,273,0): 65, 42, 50, (19,274,0): 66, 43, 51, (19,275,0): 67, 44, 52, (19,276,0): 70, 45, 51, (19,277,0): 71, 46, 52, (19,278,0): 73, 46, 53, (19,279,0): 73, 46, 53, (19,280,0): 73, 46, 51, (19,281,0): 73, 46, 51, (19,282,0): 76, 47, 51, (19,283,0): 77, 48, 52, (19,284,0): 79, 48, 53, (19,285,0): 80, 49, 54, (19,286,0): 81, 51, 53, (19,287,0): 81, 50, 55, (19,288,0): 82, 49, 56, (19,289,0): 82, 49, 58, (19,290,0): 83, 50, 57, (19,291,0): 83, 50, 57, (19,292,0): 84, 51, 58, (19,293,0): 84, 51, 58, (19,294,0): 85, 53, 58, (19,295,0): 85, 53, 58, (19,296,0): 88, 56, 59, (19,297,0): 89, 57, 60, (19,298,0): 90, 58, 61, (19,299,0): 91, 59, 62, (19,300,0): 92, 60, 61, (19,301,0): 93, 61, 62, (19,302,0): 94, 62, 63, (19,303,0): 96, 62, 61, (19,304,0): 104, 64, 65, (19,305,0): 107, 66, 64, (19,306,0): 113, 70, 64, (19,307,0): 117, 75, 63, (19,308,0): 124, 78, 63, (19,309,0): 127, 82, 63, (19,310,0): 129, 82, 62, (19,311,0): 130, 83, 63, (19,312,0): 128, 81, 63, (19,313,0): 128, 81, 65, (19,314,0): 126, 80, 65, (19,315,0): 124, 81, 64, (19,316,0): 123, 80, 63, (19,317,0): 122, 81, 61, (19,318,0): 119, 82, 56, (19,319,0): 119, 82, 56, (19,320,0): 118, 80, 57, (19,321,0): 117, 81, 57, (19,322,0): 119, 81, 58, (19,323,0): 120, 82, 59, (19,324,0): 121, 83, 60, (19,325,0): 122, 84, 61, (19,326,0): 122, 84, 61, (19,327,0): 123, 85, 62, (19,328,0): 125, 87, 64, (19,329,0): 125, 87, 64, (19,330,0): 128, 87, 65, (19,331,0): 128, 87, 65, (19,332,0): 129, 88, 66, (19,333,0): 129, 88, 66, (19,334,0): 130, 89, 67, (19,335,0): 128, 90, 67, (19,336,0): 129, 91, 70, (19,337,0): 128, 92, 70, (19,338,0): 127, 90, 71, (19,339,0): 125, 88, 69, (19,340,0): 123, 86, 67, (19,341,0): 122, 85, 66, (19,342,0): 121, 84, 66, (19,343,0): 120, 83, 65, (19,344,0): 121, 84, 68, (19,345,0): 120, 83, 67, (19,346,0): 119, 82, 66, (19,347,0): 117, 80, 64, (19,348,0): 117, 79, 66, (19,349,0): 117, 79, 66, (19,350,0): 117, 79, 66, (19,351,0): 118, 81, 65, (19,352,0): 122, 85, 67, (19,353,0): 122, 85, 67, (19,354,0): 121, 84, 68, (19,355,0): 120, 83, 67, (19,356,0): 118, 80, 67, (19,357,0): 117, 79, 68, (19,358,0): 116, 78, 69, (19,359,0): 116, 78, 69, (19,360,0): 118, 80, 71, (19,361,0): 119, 81, 72, (19,362,0): 120, 82, 71, (19,363,0): 121, 83, 70, (19,364,0): 122, 85, 69, (19,365,0): 123, 86, 70, (19,366,0): 124, 87, 69, (19,367,0): 124, 87, 69, (19,368,0): 126, 87, 70, (19,369,0): 127, 88, 71, (19,370,0): 127, 88, 71, (19,371,0): 128, 89, 72, (19,372,0): 127, 88, 73, (19,373,0): 126, 87, 72, (19,374,0): 123, 85, 72, (19,375,0): 122, 84, 71, (19,376,0): 119, 83, 69, (19,377,0): 118, 82, 68, (19,378,0): 116, 80, 68, (19,379,0): 113, 79, 67, (19,380,0): 112, 78, 68, (19,381,0): 113, 79, 69, (19,382,0): 113, 79, 69, (19,383,0): 114, 80, 70, (19,384,0): 119, 82, 73, (19,385,0): 119, 82, 73, (19,386,0): 120, 82, 73, (19,387,0): 120, 82, 73, (19,388,0): 121, 83, 72, (19,389,0): 124, 84, 74, (19,390,0): 126, 86, 74, (19,391,0): 129, 87, 75, (19,392,0): 135, 93, 81, (19,393,0): 133, 89, 76, (19,394,0): 133, 87, 74, (19,395,0): 132, 86, 73, (19,396,0): 135, 87, 73, (19,397,0): 136, 88, 74, (19,398,0): 134, 86, 72, (19,399,0): 131, 85, 72, (19,400,0): 123, 83, 73, (19,401,0): 118, 81, 72, (19,402,0): 116, 78, 69, (19,403,0): 114, 76, 65, (19,404,0): 113, 75, 64, (19,405,0): 115, 77, 64, (19,406,0): 118, 78, 66, (19,407,0): 120, 80, 68, (19,408,0): 118, 76, 64, (19,409,0): 118, 76, 62, (19,410,0): 119, 77, 63, (19,411,0): 119, 77, 61, (19,412,0): 120, 77, 61, (19,413,0): 120, 77, 61, (19,414,0): 119, 76, 60, (19,415,0): 119, 76, 60, (19,416,0): 114, 72, 60, (19,417,0): 113, 70, 61, (19,418,0): 108, 68, 60, (19,419,0): 105, 65, 57, (19,420,0): 103, 62, 56, (19,421,0): 100, 61, 54, (19,422,0): 98, 61, 55, (19,423,0): 98, 61, 55, (19,424,0): 91, 56, 52, (19,425,0): 89, 55, 53, (19,426,0): 86, 55, 53, (19,427,0): 84, 53, 51, (19,428,0): 81, 51, 51, (19,429,0): 79, 49, 49, (19,430,0): 76, 47, 49, (19,431,0): 75, 46, 48, (19,432,0): 74, 46, 45, (19,433,0): 72, 46, 45, (19,434,0): 73, 47, 46, (19,435,0): 75, 49, 48, (19,436,0): 76, 50, 49, (19,437,0): 77, 51, 50, (19,438,0): 78, 52, 51, (19,439,0): 78, 52, 51, (19,440,0): 80, 54, 53, (19,441,0): 80, 54, 53, (19,442,0): 82, 56, 55, (19,443,0): 83, 57, 56, (19,444,0): 84, 58, 57, (19,445,0): 85, 59, 58, (19,446,0): 85, 59, 58, (19,447,0): 85, 59, 58, (19,448,0): 86, 61, 57, (19,449,0): 86, 61, 57, (19,450,0): 85, 60, 56, (19,451,0): 84, 59, 55, (19,452,0): 84, 59, 55, (19,453,0): 84, 59, 55, (19,454,0): 84, 59, 55, (19,455,0): 84, 59, 55, (19,456,0): 85, 60, 56, (19,457,0): 85, 60, 56, (19,458,0): 84, 59, 55, (19,459,0): 83, 58, 54, (19,460,0): 83, 58, 54, (19,461,0): 82, 57, 53, (19,462,0): 81, 56, 52, (19,463,0): 81, 56, 52, (19,464,0): 80, 54, 53, (19,465,0): 80, 54, 53, (19,466,0): 80, 54, 53, (19,467,0): 80, 54, 53, (19,468,0): 81, 55, 54, (19,469,0): 83, 57, 56, (19,470,0): 85, 60, 56, (19,471,0): 86, 61, 57, (19,472,0): 88, 63, 58, (19,473,0): 88, 63, 58, (19,474,0): 88, 63, 56, (19,475,0): 89, 64, 57, (19,476,0): 90, 65, 58, (19,477,0): 90, 65, 58, (19,478,0): 90, 65, 58, (19,479,0): 91, 66, 59, (19,480,0): 93, 68, 61, (19,481,0): 92, 67, 60, (19,482,0): 91, 66, 59, (19,483,0): 90, 65, 58, (19,484,0): 90, 65, 58, (19,485,0): 89, 64, 57, (19,486,0): 89, 64, 59, (19,487,0): 89, 64, 59, (19,488,0): 85, 60, 56, (19,489,0): 85, 60, 56, (19,490,0): 86, 60, 59, (19,491,0): 87, 61, 60, (19,492,0): 88, 62, 61, (19,493,0): 88, 62, 61, (19,494,0): 89, 63, 62, (19,495,0): 89, 63, 62, (19,496,0): 87, 62, 58, (19,497,0): 88, 63, 59, (19,498,0): 88, 63, 59, (19,499,0): 88, 63, 59, (19,500,0): 89, 64, 60, (19,501,0): 90, 65, 61, (19,502,0): 90, 65, 61, (19,503,0): 90, 65, 61, (19,504,0): 91, 66, 62, (19,505,0): 91, 66, 62, (19,506,0): 91, 66, 62, (19,507,0): 91, 66, 62, (19,508,0): 91, 66, 62, (19,509,0): 91, 66, 62, (19,510,0): 91, 66, 62, (19,511,0): 91, 66, 62, (19,512,0): 92, 67, 62, (19,513,0): 92, 67, 62, (19,514,0): 93, 68, 64, (19,515,0): 93, 68, 64, (19,516,0): 92, 67, 63, (19,517,0): 91, 66, 62, (19,518,0): 90, 64, 63, (19,519,0): 89, 63, 62, (19,520,0): 85, 59, 60, (19,521,0): 85, 59, 60, (19,522,0): 84, 58, 59, (19,523,0): 83, 57, 58, (19,524,0): 82, 56, 59, (19,525,0): 81, 55, 58, (19,526,0): 81, 55, 58, (19,527,0): 79, 54, 57, (19,528,0): 78, 54, 54, (19,529,0): 76, 55, 54, (19,530,0): 76, 54, 56, (19,531,0): 76, 54, 56, (19,532,0): 76, 54, 56, (19,533,0): 76, 54, 56, (19,534,0): 76, 54, 57, (19,535,0): 76, 54, 57, (19,536,0): 77, 54, 60, (19,537,0): 76, 53, 59, (19,538,0): 73, 50, 56, (19,539,0): 70, 47, 53, (19,540,0): 69, 46, 54, (19,541,0): 70, 47, 55, (19,542,0): 72, 49, 57, (19,543,0): 73, 50, 58, (19,544,0): 74, 51, 59, (19,545,0): 74, 51, 59, (19,546,0): 75, 52, 60, (19,547,0): 75, 52, 60, (19,548,0): 78, 53, 59, (19,549,0): 78, 53, 59, (19,550,0): 79, 52, 59, (19,551,0): 80, 53, 60, (19,552,0): 79, 52, 57, (19,553,0): 79, 52, 57, (19,554,0): 81, 52, 56, (19,555,0): 82, 53, 57, (19,556,0): 85, 54, 59, (19,557,0): 87, 56, 61, (19,558,0): 89, 59, 61, (19,559,0): 92, 60, 61, (19,560,0): 96, 62, 61, (19,561,0): 97, 62, 60, (19,562,0): 98, 62, 62, (19,563,0): 99, 63, 63, (19,564,0): 98, 64, 63, (19,565,0): 97, 63, 62, (19,566,0): 96, 62, 63, (19,567,0): 93, 61, 62, (19,568,0): 87, 55, 58, (19,569,0): 86, 54, 57, (19,570,0): 84, 54, 56, (19,571,0): 83, 53, 55, (19,572,0): 81, 50, 55, (19,573,0): 79, 48, 53, (19,574,0): 77, 48, 52, (19,575,0): 75, 49, 52, (19,576,0): 78, 53, 56, (19,577,0): 75, 53, 55, (19,578,0): 74, 52, 54, (19,579,0): 72, 50, 52, (19,580,0): 70, 48, 50, (19,581,0): 68, 46, 48, (19,582,0): 67, 45, 47, (19,583,0): 66, 44, 46, (19,584,0): 67, 45, 47, (19,585,0): 67, 45, 47, (19,586,0): 67, 45, 47, (19,587,0): 67, 45, 47, (19,588,0): 67, 45, 47, (19,589,0): 67, 45, 47, (19,590,0): 67, 45, 47, (19,591,0): 67, 45, 47, (19,592,0): 69, 47, 49, (19,593,0): 70, 48, 50, (19,594,0): 71, 49, 51, (19,595,0): 72, 50, 52, (19,596,0): 72, 50, 52, (19,597,0): 72, 50, 52, (19,598,0): 71, 49, 51, (19,599,0): 70, 48, 50, (20,0,0): 37, 26, 40, (20,1,0): 37, 26, 40, (20,2,0): 37, 26, 40, (20,3,0): 38, 27, 41, (20,4,0): 39, 27, 39, (20,5,0): 41, 27, 40, (20,6,0): 43, 27, 40, (20,7,0): 43, 27, 40, (20,8,0): 46, 28, 40, (20,9,0): 48, 28, 40, (20,10,0): 50, 28, 40, (20,11,0): 51, 29, 41, (20,12,0): 53, 29, 42, (20,13,0): 54, 30, 43, (20,14,0): 55, 32, 42, (20,15,0): 55, 32, 42, (20,16,0): 57, 35, 48, (20,17,0): 56, 34, 47, (20,18,0): 54, 32, 45, (20,19,0): 53, 31, 44, (20,20,0): 50, 30, 42, (20,21,0): 50, 30, 42, (20,22,0): 51, 31, 43, (20,23,0): 51, 31, 43, (20,24,0): 48, 30, 42, (20,25,0): 48, 30, 42, (20,26,0): 47, 31, 42, (20,27,0): 47, 31, 42, (20,28,0): 47, 31, 42, (20,29,0): 47, 31, 42, (20,30,0): 45, 32, 42, (20,31,0): 45, 32, 42, (20,32,0): 48, 30, 46, (20,33,0): 48, 30, 46, (20,34,0): 48, 30, 46, (20,35,0): 49, 31, 47, (20,36,0): 49, 31, 47, (20,37,0): 50, 32, 48, (20,38,0): 50, 32, 48, (20,39,0): 50, 32, 48, (20,40,0): 51, 33, 49, (20,41,0): 51, 33, 49, (20,42,0): 51, 33, 49, (20,43,0): 52, 34, 50, (20,44,0): 52, 34, 50, (20,45,0): 52, 34, 50, (20,46,0): 53, 35, 51, (20,47,0): 53, 35, 51, (20,48,0): 52, 34, 50, (20,49,0): 52, 34, 50, (20,50,0): 51, 33, 49, (20,51,0): 50, 32, 48, (20,52,0): 48, 30, 46, (20,53,0): 47, 29, 45, (20,54,0): 46, 28, 44, (20,55,0): 46, 28, 44, (20,56,0): 47, 29, 45, (20,57,0): 47, 29, 45, (20,58,0): 47, 29, 45, (20,59,0): 46, 28, 44, (20,60,0): 45, 27, 43, (20,61,0): 45, 27, 43, (20,62,0): 45, 27, 43, (20,63,0): 44, 26, 42, (20,64,0): 42, 25, 41, (20,65,0): 42, 25, 41, (20,66,0): 42, 25, 41, (20,67,0): 42, 25, 41, (20,68,0): 42, 25, 41, (20,69,0): 42, 25, 41, (20,70,0): 42, 25, 41, (20,71,0): 42, 25, 41, (20,72,0): 40, 23, 39, (20,73,0): 40, 23, 39, (20,74,0): 40, 23, 39, (20,75,0): 40, 23, 39, (20,76,0): 40, 23, 39, (20,77,0): 40, 23, 39, (20,78,0): 40, 23, 39, (20,79,0): 40, 23, 39, (20,80,0): 41, 24, 43, (20,81,0): 41, 24, 43, (20,82,0): 42, 25, 44, (20,83,0): 42, 25, 44, (20,84,0): 42, 25, 44, (20,85,0): 40, 23, 42, (20,86,0): 39, 22, 41, (20,87,0): 38, 21, 40, (20,88,0): 36, 19, 38, (20,89,0): 36, 19, 38, (20,90,0): 35, 18, 37, (20,91,0): 35, 18, 37, (20,92,0): 34, 17, 36, (20,93,0): 34, 17, 36, (20,94,0): 33, 16, 35, (20,95,0): 31, 16, 35, (20,96,0): 32, 20, 40, (20,97,0): 29, 20, 39, (20,98,0): 31, 19, 39, (20,99,0): 29, 20, 39, (20,100,0): 30, 18, 38, (20,101,0): 28, 19, 38, (20,102,0): 30, 18, 38, (20,103,0): 28, 19, 38, (20,104,0): 28, 16, 36, (20,105,0): 26, 17, 36, (20,106,0): 28, 16, 36, (20,107,0): 26, 17, 36, (20,108,0): 28, 16, 36, (20,109,0): 26, 17, 36, (20,110,0): 28, 16, 36, (20,111,0): 26, 17, 36, (20,112,0): 21, 16, 38, (20,113,0): 20, 17, 38, (20,114,0): 20, 17, 38, (20,115,0): 20, 17, 38, (20,116,0): 20, 17, 38, (20,117,0): 19, 17, 38, (20,118,0): 19, 17, 38, (20,119,0): 17, 18, 38, (20,120,0): 18, 19, 39, (20,121,0): 18, 19, 39, (20,122,0): 17, 18, 38, (20,123,0): 16, 19, 38, (20,124,0): 16, 19, 38, (20,125,0): 16, 21, 40, (20,126,0): 17, 22, 41, (20,127,0): 20, 23, 42, (20,128,0): 23, 21, 42, (20,129,0): 25, 22, 43, (20,130,0): 26, 23, 44, (20,131,0): 27, 24, 45, (20,132,0): 29, 24, 46, (20,133,0): 29, 24, 46, (20,134,0): 28, 23, 45, (20,135,0): 27, 22, 44, (20,136,0): 29, 21, 44, (20,137,0): 30, 22, 45, (20,138,0): 31, 21, 45, (20,139,0): 32, 22, 46, (20,140,0): 32, 22, 46, (20,141,0): 33, 23, 47, (20,142,0): 35, 23, 47, (20,143,0): 33, 23, 47, (20,144,0): 32, 22, 46, (20,145,0): 31, 23, 46, (20,146,0): 31, 23, 46, (20,147,0): 31, 23, 46, (20,148,0): 31, 23, 46, (20,149,0): 31, 23, 46, (20,150,0): 31, 23, 46, (20,151,0): 31, 23, 46, (20,152,0): 32, 24, 47, (20,153,0): 30, 22, 45, (20,154,0): 28, 20, 43, (20,155,0): 26, 18, 41, (20,156,0): 26, 18, 41, (20,157,0): 28, 20, 43, (20,158,0): 30, 22, 45, (20,159,0): 30, 25, 47, (20,160,0): 27, 22, 44, (20,161,0): 26, 23, 44, (20,162,0): 27, 24, 45, (20,163,0): 27, 24, 45, (20,164,0): 29, 24, 46, (20,165,0): 29, 24, 46, (20,166,0): 30, 25, 47, (20,167,0): 30, 25, 47, (20,168,0): 31, 23, 46, (20,169,0): 31, 23, 46, (20,170,0): 32, 22, 46, (20,171,0): 33, 23, 47, (20,172,0): 33, 23, 47, (20,173,0): 34, 24, 48, (20,174,0): 36, 24, 48, (20,175,0): 34, 24, 48, (20,176,0): 33, 23, 47, (20,177,0): 32, 24, 47, (20,178,0): 32, 24, 47, (20,179,0): 32, 24, 47, (20,180,0): 32, 24, 47, (20,181,0): 32, 24, 47, (20,182,0): 32, 24, 47, (20,183,0): 32, 24, 47, (20,184,0): 32, 24, 47, (20,185,0): 32, 24, 47, (20,186,0): 32, 24, 47, (20,187,0): 32, 24, 47, (20,188,0): 32, 24, 47, (20,189,0): 32, 24, 47, (20,190,0): 32, 24, 47, (20,191,0): 32, 24, 45, (20,192,0): 30, 25, 45, (20,193,0): 30, 26, 43, (20,194,0): 33, 26, 44, (20,195,0): 33, 26, 44, (20,196,0): 34, 27, 45, (20,197,0): 34, 27, 45, (20,198,0): 36, 27, 46, (20,199,0): 36, 27, 46, (20,200,0): 38, 26, 46, (20,201,0): 39, 27, 47, (20,202,0): 40, 28, 48, (20,203,0): 41, 29, 49, (20,204,0): 42, 29, 49, (20,205,0): 41, 28, 48, (20,206,0): 40, 27, 47, (20,207,0): 39, 26, 46, (20,208,0): 42, 29, 47, (20,209,0): 42, 29, 47, (20,210,0): 42, 29, 47, (20,211,0): 42, 29, 47, (20,212,0): 42, 29, 47, (20,213,0): 42, 29, 47, (20,214,0): 42, 29, 47, (20,215,0): 42, 29, 47, (20,216,0): 40, 27, 45, (20,217,0): 41, 28, 46, (20,218,0): 42, 29, 47, (20,219,0): 43, 30, 48, (20,220,0): 44, 31, 49, (20,221,0): 44, 31, 49, (20,222,0): 43, 30, 48, (20,223,0): 42, 29, 47, (20,224,0): 41, 28, 46, (20,225,0): 41, 28, 46, (20,226,0): 41, 28, 46, (20,227,0): 41, 28, 46, (20,228,0): 41, 28, 46, (20,229,0): 40, 27, 45, (20,230,0): 40, 27, 45, (20,231,0): 40, 27, 45, (20,232,0): 41, 28, 46, (20,233,0): 41, 28, 46, (20,234,0): 41, 28, 46, (20,235,0): 41, 28, 46, (20,236,0): 41, 28, 46, (20,237,0): 41, 28, 46, (20,238,0): 41, 28, 46, (20,239,0): 41, 28, 45, (20,240,0): 46, 33, 50, (20,241,0): 45, 33, 47, (20,242,0): 45, 33, 47, (20,243,0): 44, 32, 46, (20,244,0): 43, 31, 45, (20,245,0): 42, 30, 44, (20,246,0): 43, 29, 44, (20,247,0): 42, 28, 43, (20,248,0): 48, 31, 47, (20,249,0): 48, 31, 47, (20,250,0): 49, 31, 47, (20,251,0): 50, 32, 48, (20,252,0): 50, 32, 48, (20,253,0): 49, 31, 47, (20,254,0): 49, 31, 47, (20,255,0): 49, 31, 47, (20,256,0): 51, 33, 47, (20,257,0): 51, 33, 47, (20,258,0): 51, 33, 45, (20,259,0): 52, 34, 46, (20,260,0): 55, 35, 47, (20,261,0): 55, 35, 47, (20,262,0): 55, 35, 46, (20,263,0): 56, 36, 47, (20,264,0): 56, 35, 44, (20,265,0): 56, 35, 44, (20,266,0): 58, 35, 45, (20,267,0): 59, 36, 46, (20,268,0): 60, 37, 45, (20,269,0): 61, 38, 46, (20,270,0): 64, 38, 47, (20,271,0): 64, 38, 47, (20,272,0): 68, 42, 51, (20,273,0): 68, 42, 51, (20,274,0): 69, 43, 52, (20,275,0): 70, 44, 53, (20,276,0): 71, 46, 52, (20,277,0): 72, 47, 53, (20,278,0): 74, 47, 54, (20,279,0): 74, 47, 54, (20,280,0): 75, 46, 51, (20,281,0): 75, 46, 51, (20,282,0): 77, 46, 51, (20,283,0): 78, 47, 52, (20,284,0): 79, 48, 53, (20,285,0): 80, 49, 54, (20,286,0): 81, 51, 53, (20,287,0): 81, 50, 55, (20,288,0): 83, 50, 57, (20,289,0): 86, 51, 58, (20,290,0): 86, 51, 58, (20,291,0): 86, 51, 58, (20,292,0): 87, 52, 58, (20,293,0): 88, 53, 59, (20,294,0): 88, 53, 59, (20,295,0): 88, 53, 59, (20,296,0): 91, 56, 60, (20,297,0): 91, 56, 60, (20,298,0): 92, 58, 59, (20,299,0): 93, 59, 60, (20,300,0): 94, 60, 61, (20,301,0): 95, 61, 62, (20,302,0): 96, 62, 61, (20,303,0): 98, 62, 62, (20,304,0): 105, 65, 66, (20,305,0): 109, 68, 66, (20,306,0): 114, 71, 65, (20,307,0): 119, 77, 65, (20,308,0): 126, 80, 65, (20,309,0): 128, 83, 64, (20,310,0): 131, 84, 64, (20,311,0): 132, 85, 65, (20,312,0): 129, 82, 64, (20,313,0): 129, 82, 64, (20,314,0): 127, 81, 65, (20,315,0): 125, 82, 65, (20,316,0): 124, 81, 62, (20,317,0): 123, 82, 60, (20,318,0): 120, 83, 57, (20,319,0): 120, 83, 56, (20,320,0): 119, 82, 56, (20,321,0): 119, 82, 56, (20,322,0): 122, 82, 57, (20,323,0): 123, 83, 58, (20,324,0): 124, 84, 59, (20,325,0): 126, 86, 61, (20,326,0): 127, 87, 62, (20,327,0): 127, 87, 62, (20,328,0): 128, 88, 63, (20,329,0): 128, 88, 63, (20,330,0): 129, 89, 64, (20,331,0): 129, 89, 64, (20,332,0): 130, 90, 65, (20,333,0): 130, 90, 65, (20,334,0): 131, 91, 66, (20,335,0): 129, 91, 68, (20,336,0): 130, 92, 71, (20,337,0): 128, 92, 70, (20,338,0): 127, 91, 69, (20,339,0): 126, 90, 68, (20,340,0): 124, 87, 68, (20,341,0): 122, 85, 66, (20,342,0): 121, 84, 65, (20,343,0): 121, 84, 65, (20,344,0): 121, 84, 66, (20,345,0): 120, 83, 65, (20,346,0): 119, 82, 66, (20,347,0): 118, 81, 65, (20,348,0): 117, 80, 64, (20,349,0): 118, 81, 65, (20,350,0): 119, 81, 68, (20,351,0): 119, 82, 66, (20,352,0): 124, 87, 69, (20,353,0): 124, 87, 69, (20,354,0): 123, 86, 70, (20,355,0): 121, 84, 68, (20,356,0): 120, 82, 69, (20,357,0): 119, 81, 70, (20,358,0): 118, 80, 71, (20,359,0): 117, 79, 70, (20,360,0): 119, 81, 72, (20,361,0): 120, 82, 73, (20,362,0): 121, 83, 72, (20,363,0): 122, 84, 71, (20,364,0): 123, 86, 70, (20,365,0): 124, 87, 71, (20,366,0): 125, 88, 70, (20,367,0): 125, 88, 69, (20,368,0): 128, 89, 72, (20,369,0): 131, 89, 73, (20,370,0): 132, 90, 74, (20,371,0): 132, 90, 74, (20,372,0): 129, 90, 73, (20,373,0): 128, 89, 72, (20,374,0): 126, 89, 73, (20,375,0): 125, 88, 72, (20,376,0): 123, 85, 72, (20,377,0): 121, 85, 71, (20,378,0): 120, 84, 72, (20,379,0): 118, 82, 70, (20,380,0): 116, 82, 70, (20,381,0): 116, 82, 70, (20,382,0): 117, 83, 71, (20,383,0): 117, 83, 71, (20,384,0): 122, 86, 74, (20,385,0): 122, 86, 74, (20,386,0): 122, 84, 73, (20,387,0): 123, 85, 74, (20,388,0): 125, 85, 75, (20,389,0): 126, 86, 76, (20,390,0): 130, 88, 76, (20,391,0): 132, 88, 77, (20,392,0): 140, 94, 81, (20,393,0): 138, 90, 78, (20,394,0): 136, 86, 75, (20,395,0): 136, 87, 73, (20,396,0): 140, 88, 75, (20,397,0): 142, 88, 76, (20,398,0): 141, 87, 75, (20,399,0): 136, 86, 75, (20,400,0): 128, 86, 74, (20,401,0): 123, 85, 74, (20,402,0): 121, 81, 71, (20,403,0): 118, 78, 68, (20,404,0): 117, 77, 67, (20,405,0): 119, 79, 67, (20,406,0): 123, 81, 69, (20,407,0): 125, 83, 69, (20,408,0): 123, 79, 66, (20,409,0): 123, 79, 66, (20,410,0): 122, 78, 65, (20,411,0): 122, 79, 63, (20,412,0): 124, 78, 63, (20,413,0): 124, 78, 62, (20,414,0): 125, 79, 63, (20,415,0): 123, 80, 64, (20,416,0): 117, 75, 63, (20,417,0): 115, 73, 61, (20,418,0): 112, 69, 60, (20,419,0): 107, 67, 57, (20,420,0): 104, 64, 56, (20,421,0): 102, 64, 55, (20,422,0): 100, 63, 55, (20,423,0): 101, 64, 58, (20,424,0): 94, 59, 55, (20,425,0): 92, 59, 54, (20,426,0): 88, 57, 54, (20,427,0): 86, 55, 52, (20,428,0): 83, 53, 51, (20,429,0): 81, 51, 49, (20,430,0): 80, 50, 50, (20,431,0): 78, 50, 49, (20,432,0): 76, 48, 47, (20,433,0): 76, 48, 47, (20,434,0): 77, 49, 48, (20,435,0): 78, 50, 49, (20,436,0): 79, 51, 50, (20,437,0): 80, 52, 51, (20,438,0): 80, 52, 51, (20,439,0): 81, 53, 52, (20,440,0): 83, 55, 54, (20,441,0): 83, 55, 54, (20,442,0): 83, 55, 54, (20,443,0): 84, 56, 55, (20,444,0): 85, 57, 56, (20,445,0): 86, 58, 57, (20,446,0): 88, 60, 59, (20,447,0): 88, 60, 59, (20,448,0): 86, 61, 57, (20,449,0): 86, 61, 57, (20,450,0): 86, 61, 57, (20,451,0): 85, 60, 56, (20,452,0): 85, 60, 56, (20,453,0): 84, 59, 55, (20,454,0): 83, 58, 54, (20,455,0): 82, 57, 53, (20,456,0): 84, 59, 55, (20,457,0): 84, 59, 55, (20,458,0): 84, 59, 55, (20,459,0): 83, 58, 54, (20,460,0): 83, 58, 54, (20,461,0): 82, 57, 53, (20,462,0): 82, 57, 53, (20,463,0): 82, 57, 53, (20,464,0): 80, 54, 53, (20,465,0): 80, 54, 53, (20,466,0): 80, 54, 53, (20,467,0): 80, 54, 53, (20,468,0): 81, 55, 54, (20,469,0): 82, 56, 55, (20,470,0): 84, 59, 55, (20,471,0): 85, 60, 56, (20,472,0): 87, 62, 57, (20,473,0): 88, 63, 58, (20,474,0): 88, 63, 56, (20,475,0): 88, 63, 56, (20,476,0): 89, 64, 57, (20,477,0): 90, 65, 58, (20,478,0): 90, 65, 58, (20,479,0): 90, 65, 58, (20,480,0): 91, 67, 57, (20,481,0): 91, 67, 57, (20,482,0): 91, 67, 57, (20,483,0): 91, 67, 57, (20,484,0): 91, 66, 59, (20,485,0): 90, 65, 58, (20,486,0): 90, 65, 60, (20,487,0): 89, 64, 59, (20,488,0): 86, 61, 56, (20,489,0): 86, 61, 56, (20,490,0): 87, 62, 58, (20,491,0): 87, 62, 58, (20,492,0): 88, 62, 61, (20,493,0): 89, 63, 62, (20,494,0): 90, 64, 63, (20,495,0): 90, 64, 63, (20,496,0): 88, 63, 59, (20,497,0): 88, 63, 59, (20,498,0): 88, 63, 59, (20,499,0): 89, 64, 60, (20,500,0): 90, 65, 61, (20,501,0): 90, 65, 61, (20,502,0): 90, 65, 61, (20,503,0): 91, 66, 62, (20,504,0): 93, 68, 64, (20,505,0): 93, 68, 64, (20,506,0): 93, 68, 64, (20,507,0): 93, 68, 64, (20,508,0): 93, 68, 64, (20,509,0): 93, 68, 64, (20,510,0): 93, 68, 64, (20,511,0): 93, 68, 64, (20,512,0): 93, 68, 63, (20,513,0): 93, 68, 63, (20,514,0): 94, 69, 65, (20,515,0): 94, 69, 65, (20,516,0): 94, 69, 65, (20,517,0): 92, 67, 63, (20,518,0): 91, 65, 64, (20,519,0): 90, 64, 63, (20,520,0): 87, 61, 62, (20,521,0): 86, 60, 61, (20,522,0): 86, 60, 61, (20,523,0): 84, 58, 59, (20,524,0): 83, 57, 60, (20,525,0): 82, 56, 59, (20,526,0): 81, 55, 58, (20,527,0): 80, 55, 58, (20,528,0): 80, 56, 56, (20,529,0): 78, 57, 56, (20,530,0): 78, 56, 58, (20,531,0): 78, 56, 58, (20,532,0): 78, 56, 58, (20,533,0): 78, 56, 58, (20,534,0): 78, 56, 59, (20,535,0): 78, 56, 59, (20,536,0): 78, 55, 61, (20,537,0): 76, 53, 59, (20,538,0): 73, 50, 56, (20,539,0): 71, 48, 54, (20,540,0): 69, 46, 54, (20,541,0): 70, 47, 55, (20,542,0): 71, 48, 56, (20,543,0): 72, 49, 57, (20,544,0): 74, 51, 59, (20,545,0): 74, 51, 59, (20,546,0): 75, 52, 60, (20,547,0): 75, 52, 60, (20,548,0): 76, 53, 59, (20,549,0): 76, 53, 59, (20,550,0): 78, 53, 59, (20,551,0): 79, 54, 60, (20,552,0): 79, 52, 57, (20,553,0): 78, 51, 56, (20,554,0): 80, 51, 55, (20,555,0): 81, 52, 56, (20,556,0): 82, 53, 57, (20,557,0): 85, 56, 60, (20,558,0): 87, 58, 60, (20,559,0): 89, 59, 59, (20,560,0): 94, 60, 59, (20,561,0): 96, 60, 60, (20,562,0): 96, 62, 61, (20,563,0): 97, 63, 62, (20,564,0): 97, 63, 64, (20,565,0): 97, 63, 64, (20,566,0): 94, 62, 63, (20,567,0): 93, 61, 62, (20,568,0): 86, 54, 57, (20,569,0): 85, 55, 57, (20,570,0): 84, 53, 58, (20,571,0): 82, 51, 56, (20,572,0): 79, 50, 54, (20,573,0): 78, 49, 53, (20,574,0): 77, 48, 53, (20,575,0): 74, 47, 52, (20,576,0): 78, 53, 56, (20,577,0): 75, 53, 55, (20,578,0): 74, 52, 54, (20,579,0): 72, 50, 52, (20,580,0): 70, 48, 50, (20,581,0): 68, 46, 48, (20,582,0): 67, 45, 47, (20,583,0): 66, 44, 46, (20,584,0): 67, 45, 47, (20,585,0): 67, 45, 47, (20,586,0): 67, 45, 47, (20,587,0): 67, 45, 47, (20,588,0): 67, 45, 47, (20,589,0): 67, 45, 47, (20,590,0): 67, 45, 47, (20,591,0): 67, 45, 47, (20,592,0): 70, 48, 50, (20,593,0): 70, 48, 50, (20,594,0): 71, 49, 51, (20,595,0): 72, 50, 52, (20,596,0): 72, 50, 52, (20,597,0): 71, 49, 51, (20,598,0): 70, 48, 50, (20,599,0): 69, 47, 49, (21,0,0): 37, 26, 40, (21,1,0): 37, 26, 40, (21,2,0): 37, 26, 40, (21,3,0): 38, 27, 41, (21,4,0): 39, 27, 39, (21,5,0): 40, 28, 40, (21,6,0): 41, 27, 40, (21,7,0): 43, 27, 40, (21,8,0): 45, 27, 39, (21,9,0): 46, 28, 40, (21,10,0): 49, 29, 40, (21,11,0): 51, 29, 41, (21,12,0): 53, 29, 42, (21,13,0): 54, 30, 43, (21,14,0): 55, 32, 42, (21,15,0): 55, 32, 42, (21,16,0): 57, 35, 48, (21,17,0): 55, 33, 46, (21,18,0): 54, 32, 45, (21,19,0): 52, 30, 43, (21,20,0): 50, 30, 42, (21,21,0): 49, 29, 41, (21,22,0): 50, 30, 42, (21,23,0): 50, 30, 42, (21,24,0): 48, 30, 42, (21,25,0): 48, 30, 42, (21,26,0): 47, 31, 42, (21,27,0): 47, 31, 42, (21,28,0): 47, 31, 42, (21,29,0): 47, 31, 42, (21,30,0): 45, 32, 42, (21,31,0): 45, 32, 42, (21,32,0): 47, 30, 46, (21,33,0): 48, 30, 46, (21,34,0): 48, 30, 46, (21,35,0): 49, 31, 47, (21,36,0): 49, 31, 47, (21,37,0): 50, 32, 48, (21,38,0): 50, 32, 48, (21,39,0): 50, 32, 48, (21,40,0): 51, 33, 49, (21,41,0): 51, 33, 49, (21,42,0): 51, 33, 49, (21,43,0): 51, 33, 49, (21,44,0): 51, 33, 49, (21,45,0): 51, 33, 49, (21,46,0): 51, 33, 49, (21,47,0): 51, 33, 49, (21,48,0): 51, 33, 49, (21,49,0): 51, 33, 49, (21,50,0): 50, 32, 48, (21,51,0): 49, 31, 47, (21,52,0): 49, 31, 47, (21,53,0): 48, 30, 46, (21,54,0): 47, 29, 45, (21,55,0): 47, 29, 45, (21,56,0): 47, 29, 45, (21,57,0): 46, 28, 44, (21,58,0): 46, 28, 44, (21,59,0): 45, 27, 43, (21,60,0): 45, 27, 43, (21,61,0): 44, 26, 42, (21,62,0): 44, 26, 42, (21,63,0): 44, 26, 42, (21,64,0): 41, 24, 40, (21,65,0): 41, 24, 40, (21,66,0): 41, 24, 40, (21,67,0): 41, 24, 40, (21,68,0): 41, 24, 40, (21,69,0): 41, 24, 40, (21,70,0): 41, 24, 40, (21,71,0): 41, 24, 40, (21,72,0): 40, 23, 39, (21,73,0): 40, 23, 39, (21,74,0): 40, 23, 39, (21,75,0): 40, 23, 39, (21,76,0): 40, 23, 39, (21,77,0): 40, 23, 39, (21,78,0): 40, 23, 39, (21,79,0): 40, 23, 39, (21,80,0): 41, 24, 43, (21,81,0): 41, 24, 43, (21,82,0): 42, 25, 44, (21,83,0): 42, 25, 44, (21,84,0): 42, 25, 44, (21,85,0): 40, 23, 42, (21,86,0): 39, 22, 41, (21,87,0): 38, 21, 40, (21,88,0): 36, 19, 38, (21,89,0): 36, 19, 38, (21,90,0): 35, 18, 37, (21,91,0): 35, 18, 37, (21,92,0): 34, 17, 36, (21,93,0): 34, 17, 36, (21,94,0): 33, 16, 35, (21,95,0): 31, 16, 35, (21,96,0): 31, 18, 38, (21,97,0): 30, 18, 38, (21,98,0): 30, 18, 38, (21,99,0): 30, 18, 38, (21,100,0): 30, 18, 38, (21,101,0): 30, 18, 38, (21,102,0): 30, 18, 38, (21,103,0): 30, 18, 38, (21,104,0): 29, 17, 37, (21,105,0): 29, 17, 37, (21,106,0): 29, 17, 37, (21,107,0): 29, 17, 37, (21,108,0): 29, 17, 37, (21,109,0): 29, 17, 37, (21,110,0): 29, 17, 37, (21,111,0): 27, 18, 37, (21,112,0): 21, 16, 38, (21,113,0): 20, 17, 38, (21,114,0): 20, 17, 38, (21,115,0): 20, 17, 38, (21,116,0): 19, 17, 38, (21,117,0): 19, 17, 38, (21,118,0): 17, 18, 38, (21,119,0): 17, 18, 38, (21,120,0): 18, 19, 39, (21,121,0): 17, 20, 39, (21,122,0): 16, 19, 38, (21,123,0): 16, 19, 38, (21,124,0): 14, 19, 38, (21,125,0): 16, 21, 40, (21,126,0): 17, 22, 41, (21,127,0): 20, 23, 42, (21,128,0): 23, 21, 42, (21,129,0): 25, 22, 43, (21,130,0): 27, 24, 45, (21,131,0): 28, 25, 46, (21,132,0): 29, 24, 46, (21,133,0): 29, 24, 46, (21,134,0): 28, 23, 45, (21,135,0): 28, 23, 45, (21,136,0): 30, 22, 45, (21,137,0): 30, 22, 45, (21,138,0): 31, 21, 45, (21,139,0): 32, 22, 46, (21,140,0): 33, 23, 47, (21,141,0): 33, 23, 47, (21,142,0): 35, 23, 47, (21,143,0): 34, 24, 48, (21,144,0): 32, 22, 46, (21,145,0): 31, 23, 46, (21,146,0): 31, 23, 46, (21,147,0): 31, 23, 46, (21,148,0): 31, 23, 46, (21,149,0): 31, 23, 46, (21,150,0): 31, 23, 46, (21,151,0): 31, 23, 46, (21,152,0): 31, 23, 46, (21,153,0): 30, 22, 45, (21,154,0): 28, 20, 43, (21,155,0): 27, 19, 42, (21,156,0): 27, 19, 42, (21,157,0): 28, 20, 43, (21,158,0): 30, 22, 45, (21,159,0): 29, 24, 46, (21,160,0): 27, 22, 44, (21,161,0): 26, 23, 44, (21,162,0): 27, 24, 45, (21,163,0): 27, 24, 45, (21,164,0): 29, 24, 46, (21,165,0): 29, 24, 46, (21,166,0): 30, 25, 47, (21,167,0): 30, 25, 47, (21,168,0): 31, 23, 46, (21,169,0): 31, 23, 46, (21,170,0): 32, 22, 46, (21,171,0): 33, 23, 47, (21,172,0): 33, 23, 47, (21,173,0): 34, 24, 48, (21,174,0): 36, 24, 48, (21,175,0): 34, 24, 48, (21,176,0): 33, 23, 47, (21,177,0): 32, 24, 47, (21,178,0): 32, 24, 47, (21,179,0): 32, 24, 47, (21,180,0): 32, 24, 47, (21,181,0): 32, 24, 47, (21,182,0): 32, 24, 47, (21,183,0): 32, 24, 47, (21,184,0): 32, 24, 47, (21,185,0): 32, 24, 47, (21,186,0): 32, 24, 47, (21,187,0): 32, 24, 47, (21,188,0): 32, 24, 47, (21,189,0): 32, 24, 47, (21,190,0): 32, 24, 47, (21,191,0): 32, 24, 45, (21,192,0): 30, 25, 45, (21,193,0): 30, 26, 43, (21,194,0): 33, 26, 44, (21,195,0): 33, 26, 44, (21,196,0): 34, 27, 45, (21,197,0): 34, 27, 45, (21,198,0): 36, 27, 46, (21,199,0): 36, 27, 46, (21,200,0): 39, 27, 47, (21,201,0): 40, 28, 48, (21,202,0): 41, 29, 49, (21,203,0): 42, 30, 50, (21,204,0): 43, 30, 50, (21,205,0): 42, 29, 49, (21,206,0): 41, 28, 48, (21,207,0): 40, 27, 47, (21,208,0): 43, 30, 48, (21,209,0): 43, 30, 48, (21,210,0): 43, 30, 48, (21,211,0): 43, 30, 48, (21,212,0): 43, 30, 48, (21,213,0): 43, 30, 48, (21,214,0): 43, 30, 48, (21,215,0): 43, 30, 48, (21,216,0): 40, 27, 45, (21,217,0): 41, 28, 46, (21,218,0): 43, 30, 48, (21,219,0): 44, 31, 49, (21,220,0): 44, 31, 49, (21,221,0): 44, 31, 49, (21,222,0): 43, 30, 48, (21,223,0): 43, 30, 48, (21,224,0): 43, 30, 48, (21,225,0): 42, 29, 47, (21,226,0): 42, 29, 47, (21,227,0): 42, 29, 47, (21,228,0): 41, 28, 46, (21,229,0): 41, 28, 46, (21,230,0): 40, 27, 45, (21,231,0): 40, 27, 45, (21,232,0): 40, 27, 45, (21,233,0): 40, 27, 45, (21,234,0): 40, 27, 45, (21,235,0): 40, 27, 45, (21,236,0): 40, 27, 45, (21,237,0): 40, 27, 45, (21,238,0): 40, 27, 45, (21,239,0): 40, 27, 44, (21,240,0): 44, 31, 48, (21,241,0): 44, 32, 46, (21,242,0): 44, 32, 46, (21,243,0): 44, 32, 46, (21,244,0): 43, 31, 45, (21,245,0): 43, 31, 45, (21,246,0): 44, 30, 45, (21,247,0): 44, 30, 45, (21,248,0): 48, 31, 47, (21,249,0): 48, 31, 47, (21,250,0): 50, 32, 48, (21,251,0): 51, 33, 49, (21,252,0): 51, 33, 49, (21,253,0): 50, 32, 48, (21,254,0): 49, 31, 47, (21,255,0): 49, 31, 47, (21,256,0): 51, 33, 47, (21,257,0): 52, 34, 48, (21,258,0): 52, 34, 46, (21,259,0): 53, 35, 47, (21,260,0): 55, 35, 47, (21,261,0): 56, 36, 48, (21,262,0): 56, 36, 47, (21,263,0): 56, 36, 47, (21,264,0): 57, 36, 45, (21,265,0): 57, 36, 45, (21,266,0): 59, 36, 46, (21,267,0): 60, 37, 47, (21,268,0): 61, 38, 46, (21,269,0): 62, 39, 47, (21,270,0): 65, 39, 48, (21,271,0): 66, 40, 49, (21,272,0): 68, 42, 51, (21,273,0): 68, 42, 51, (21,274,0): 69, 43, 52, (21,275,0): 70, 44, 53, (21,276,0): 71, 46, 52, (21,277,0): 72, 47, 53, (21,278,0): 74, 47, 54, (21,279,0): 75, 48, 55, (21,280,0): 75, 46, 51, (21,281,0): 75, 46, 51, (21,282,0): 77, 46, 51, (21,283,0): 78, 47, 52, (21,284,0): 79, 48, 53, (21,285,0): 80, 49, 54, (21,286,0): 81, 51, 53, (21,287,0): 82, 50, 53, (21,288,0): 87, 52, 58, (21,289,0): 87, 52, 59, (21,290,0): 88, 53, 60, (21,291,0): 88, 53, 60, (21,292,0): 89, 54, 60, (21,293,0): 89, 54, 60, (21,294,0): 90, 55, 61, (21,295,0): 90, 55, 59, (21,296,0): 92, 57, 61, (21,297,0): 92, 58, 59, (21,298,0): 93, 59, 60, (21,299,0): 94, 60, 61, (21,300,0): 95, 61, 62, (21,301,0): 96, 62, 63, (21,302,0): 97, 63, 62, (21,303,0): 98, 62, 62, (21,304,0): 107, 67, 67, (21,305,0): 110, 69, 65, (21,306,0): 116, 73, 66, (21,307,0): 121, 77, 64, (21,308,0): 127, 81, 65, (21,309,0): 130, 85, 64, (21,310,0): 133, 87, 64, (21,311,0): 133, 87, 64, (21,312,0): 130, 83, 63, (21,313,0): 130, 83, 65, (21,314,0): 129, 82, 66, (21,315,0): 128, 83, 64, (21,316,0): 125, 83, 61, (21,317,0): 124, 84, 59, (21,318,0): 123, 83, 57, (21,319,0): 123, 83, 57, (21,320,0): 121, 81, 56, (21,321,0): 122, 82, 57, (21,322,0): 123, 83, 58, (21,323,0): 125, 85, 60, (21,324,0): 126, 86, 61, (21,325,0): 128, 88, 63, (21,326,0): 129, 89, 64, (21,327,0): 129, 89, 64, (21,328,0): 129, 89, 64, (21,329,0): 129, 89, 64, (21,330,0): 130, 90, 65, (21,331,0): 130, 90, 65, (21,332,0): 131, 91, 66, (21,333,0): 131, 91, 66, (21,334,0): 132, 92, 67, (21,335,0): 130, 93, 67, (21,336,0): 129, 93, 69, (21,337,0): 129, 93, 71, (21,338,0): 128, 92, 70, (21,339,0): 126, 90, 68, (21,340,0): 124, 87, 68, (21,341,0): 123, 86, 67, (21,342,0): 122, 85, 66, (21,343,0): 121, 84, 65, (21,344,0): 121, 84, 66, (21,345,0): 120, 83, 65, (21,346,0): 119, 82, 66, (21,347,0): 118, 81, 65, (21,348,0): 118, 81, 65, (21,349,0): 119, 82, 66, (21,350,0): 120, 82, 69, (21,351,0): 120, 83, 67, (21,352,0): 124, 87, 69, (21,353,0): 123, 86, 67, (21,354,0): 123, 86, 68, (21,355,0): 122, 85, 69, (21,356,0): 121, 83, 70, (21,357,0): 120, 82, 69, (21,358,0): 120, 82, 71, (21,359,0): 119, 81, 72, (21,360,0): 121, 83, 74, (21,361,0): 122, 84, 73, (21,362,0): 122, 84, 71, (21,363,0): 123, 85, 72, (21,364,0): 125, 88, 72, (21,365,0): 126, 89, 71, (21,366,0): 126, 89, 70, (21,367,0): 128, 90, 71, (21,368,0): 133, 91, 75, (21,369,0): 134, 92, 76, (21,370,0): 134, 92, 76, (21,371,0): 135, 93, 77, (21,372,0): 132, 93, 76, (21,373,0): 131, 92, 75, (21,374,0): 129, 90, 75, (21,375,0): 127, 90, 74, (21,376,0): 127, 89, 76, (21,377,0): 126, 88, 75, (21,378,0): 123, 87, 75, (21,379,0): 122, 86, 74, (21,380,0): 122, 86, 74, (21,381,0): 120, 86, 74, (21,382,0): 121, 87, 75, (21,383,0): 121, 87, 75, (21,384,0): 124, 88, 76, (21,385,0): 124, 88, 76, (21,386,0): 125, 87, 76, (21,387,0): 125, 87, 76, (21,388,0): 127, 87, 77, (21,389,0): 131, 89, 77, (21,390,0): 134, 90, 79, (21,391,0): 137, 91, 78, (21,392,0): 141, 93, 81, (21,393,0): 140, 90, 79, (21,394,0): 140, 88, 75, (21,395,0): 142, 88, 76, (21,396,0): 147, 90, 79, (21,397,0): 148, 90, 79, (21,398,0): 146, 88, 77, (21,399,0): 141, 87, 75, (21,400,0): 131, 87, 76, (21,401,0): 126, 86, 74, (21,402,0): 124, 84, 74, (21,403,0): 122, 82, 70, (21,404,0): 122, 82, 70, (21,405,0): 125, 83, 69, (21,406,0): 126, 84, 70, (21,407,0): 127, 85, 71, (21,408,0): 126, 82, 69, (21,409,0): 125, 82, 66, (21,410,0): 124, 81, 65, (21,411,0): 126, 80, 64, (21,412,0): 126, 80, 64, (21,413,0): 126, 80, 64, (21,414,0): 127, 81, 65, (21,415,0): 128, 82, 66, (21,416,0): 122, 78, 65, (21,417,0): 119, 77, 65, (21,418,0): 114, 72, 60, (21,419,0): 110, 67, 58, (21,420,0): 105, 65, 55, (21,421,0): 104, 64, 56, (21,422,0): 103, 65, 56, (21,423,0): 102, 65, 57, (21,424,0): 97, 62, 56, (21,425,0): 95, 60, 56, (21,426,0): 92, 59, 54, (21,427,0): 87, 56, 53, (21,428,0): 85, 54, 52, (21,429,0): 83, 53, 51, (21,430,0): 82, 52, 50, (21,431,0): 82, 52, 52, (21,432,0): 78, 50, 49, (21,433,0): 79, 51, 50, (21,434,0): 79, 51, 50, (21,435,0): 80, 52, 51, (21,436,0): 80, 52, 51, (21,437,0): 81, 53, 52, (21,438,0): 81, 53, 52, (21,439,0): 82, 54, 53, (21,440,0): 83, 55, 54, (21,441,0): 83, 55, 54, (21,442,0): 83, 55, 54, (21,443,0): 83, 55, 54, (21,444,0): 84, 56, 55, (21,445,0): 86, 58, 57, (21,446,0): 88, 60, 59, (21,447,0): 89, 61, 60, (21,448,0): 87, 62, 58, (21,449,0): 87, 62, 58, (21,450,0): 87, 62, 58, (21,451,0): 87, 62, 58, (21,452,0): 86, 61, 57, (21,453,0): 84, 59, 55, (21,454,0): 83, 58, 54, (21,455,0): 82, 57, 53, (21,456,0): 83, 58, 54, (21,457,0): 83, 58, 54, (21,458,0): 83, 58, 54, (21,459,0): 83, 58, 54, (21,460,0): 83, 58, 54, (21,461,0): 83, 58, 54, (21,462,0): 83, 58, 54, (21,463,0): 83, 58, 54, (21,464,0): 81, 55, 54, (21,465,0): 81, 55, 54, (21,466,0): 80, 54, 53, (21,467,0): 80, 54, 53, (21,468,0): 81, 55, 54, (21,469,0): 82, 56, 55, (21,470,0): 84, 59, 55, (21,471,0): 85, 60, 56, (21,472,0): 87, 62, 57, (21,473,0): 87, 62, 57, (21,474,0): 87, 62, 55, (21,475,0): 88, 63, 56, (21,476,0): 88, 63, 56, (21,477,0): 89, 64, 57, (21,478,0): 89, 64, 57, (21,479,0): 90, 65, 58, (21,480,0): 90, 66, 56, (21,481,0): 90, 66, 56, (21,482,0): 91, 67, 57, (21,483,0): 92, 68, 58, (21,484,0): 92, 67, 60, (21,485,0): 91, 66, 59, (21,486,0): 90, 65, 60, (21,487,0): 89, 64, 59, (21,488,0): 87, 62, 57, (21,489,0): 88, 63, 58, (21,490,0): 88, 63, 59, (21,491,0): 88, 63, 59, (21,492,0): 88, 62, 61, (21,493,0): 89, 63, 62, (21,494,0): 89, 63, 62, (21,495,0): 89, 63, 62, (21,496,0): 88, 63, 59, (21,497,0): 89, 64, 60, (21,498,0): 89, 64, 60, (21,499,0): 90, 65, 61, (21,500,0): 90, 65, 61, (21,501,0): 91, 66, 62, (21,502,0): 91, 66, 62, (21,503,0): 91, 66, 62, (21,504,0): 94, 69, 65, (21,505,0): 94, 69, 65, (21,506,0): 94, 69, 65, (21,507,0): 94, 69, 65, (21,508,0): 94, 69, 65, (21,509,0): 94, 69, 65, (21,510,0): 94, 69, 65, (21,511,0): 94, 69, 65, (21,512,0): 94, 69, 64, (21,513,0): 94, 69, 64, (21,514,0): 95, 70, 66, (21,515,0): 95, 70, 66, (21,516,0): 95, 70, 66, (21,517,0): 93, 68, 64, (21,518,0): 92, 66, 65, (21,519,0): 91, 65, 64, (21,520,0): 90, 64, 65, (21,521,0): 89, 63, 64, (21,522,0): 88, 62, 63, (21,523,0): 86, 60, 61, (21,524,0): 85, 59, 62, (21,525,0): 83, 57, 60, (21,526,0): 82, 56, 59, (21,527,0): 81, 56, 59, (21,528,0): 81, 57, 57, (21,529,0): 79, 58, 57, (21,530,0): 79, 57, 59, (21,531,0): 79, 57, 59, (21,532,0): 79, 57, 59, (21,533,0): 79, 57, 59, (21,534,0): 79, 57, 60, (21,535,0): 79, 57, 60, (21,536,0): 79, 56, 62, (21,537,0): 77, 54, 60, (21,538,0): 74, 51, 57, (21,539,0): 71, 48, 54, (21,540,0): 69, 46, 54, (21,541,0): 69, 46, 54, (21,542,0): 70, 47, 55, (21,543,0): 71, 48, 56, (21,544,0): 73, 50, 58, (21,545,0): 73, 50, 58, (21,546,0): 74, 51, 59, (21,547,0): 74, 51, 59, (21,548,0): 75, 52, 58, (21,549,0): 75, 52, 58, (21,550,0): 78, 53, 59, (21,551,0): 78, 53, 59, (21,552,0): 78, 51, 56, (21,553,0): 78, 51, 56, (21,554,0): 80, 51, 55, (21,555,0): 80, 51, 55, (21,556,0): 81, 52, 56, (21,557,0): 83, 54, 58, (21,558,0): 85, 56, 58, (21,559,0): 87, 57, 57, (21,560,0): 92, 58, 59, (21,561,0): 94, 58, 58, (21,562,0): 95, 61, 60, (21,563,0): 96, 62, 61, (21,564,0): 96, 62, 63, (21,565,0): 94, 62, 63, (21,566,0): 93, 61, 62, (21,567,0): 93, 61, 62, (21,568,0): 85, 55, 57, (21,569,0): 84, 54, 56, (21,570,0): 83, 52, 57, (21,571,0): 81, 52, 56, (21,572,0): 79, 50, 54, (21,573,0): 77, 48, 52, (21,574,0): 76, 47, 52, (21,575,0): 74, 47, 52, (21,576,0): 76, 51, 54, (21,577,0): 73, 51, 53, (21,578,0): 72, 50, 52, (21,579,0): 71, 49, 51, (21,580,0): 69, 47, 49, (21,581,0): 68, 46, 48, (21,582,0): 67, 45, 47, (21,583,0): 66, 44, 46, (21,584,0): 67, 45, 47, (21,585,0): 67, 45, 47, (21,586,0): 67, 45, 47, (21,587,0): 67, 45, 47, (21,588,0): 67, 45, 47, (21,589,0): 67, 45, 47, (21,590,0): 67, 45, 47, (21,591,0): 67, 45, 47, (21,592,0): 69, 47, 49, (21,593,0): 70, 48, 50, (21,594,0): 70, 48, 50, (21,595,0): 71, 49, 51, (21,596,0): 70, 48, 50, (21,597,0): 69, 47, 49, (21,598,0): 68, 46, 48, (21,599,0): 67, 45, 47, (22,0,0): 35, 27, 40, (22,1,0): 35, 27, 40, (22,2,0): 37, 26, 40, (22,3,0): 38, 27, 41, (22,4,0): 39, 27, 39, (22,5,0): 40, 28, 40, (22,6,0): 41, 27, 40, (22,7,0): 43, 27, 40, (22,8,0): 45, 27, 39, (22,9,0): 45, 27, 39, (22,10,0): 48, 28, 39, (22,11,0): 49, 29, 40, (22,12,0): 51, 29, 41, (22,13,0): 52, 30, 42, (22,14,0): 54, 31, 41, (22,15,0): 55, 32, 42, (22,16,0): 56, 34, 47, (22,17,0): 54, 32, 45, (22,18,0): 52, 30, 43, (22,19,0): 51, 29, 42, (22,20,0): 49, 29, 41, (22,21,0): 48, 28, 40, (22,22,0): 49, 29, 41, (22,23,0): 49, 29, 41, (22,24,0): 48, 30, 42, (22,25,0): 48, 30, 42, (22,26,0): 47, 31, 42, (22,27,0): 47, 31, 42, (22,28,0): 47, 31, 42, (22,29,0): 47, 31, 42, (22,30,0): 45, 32, 42, (22,31,0): 45, 32, 42, (22,32,0): 47, 30, 46, (22,33,0): 47, 30, 46, (22,34,0): 47, 30, 46, (22,35,0): 48, 31, 47, (22,36,0): 48, 31, 47, (22,37,0): 49, 32, 48, (22,38,0): 49, 32, 48, (22,39,0): 49, 32, 48, (22,40,0): 49, 32, 48, (22,41,0): 49, 32, 48, (22,42,0): 49, 32, 48, (22,43,0): 49, 32, 48, (22,44,0): 49, 32, 48, (22,45,0): 49, 32, 48, (22,46,0): 49, 32, 48, (22,47,0): 49, 32, 48, (22,48,0): 50, 32, 48, (22,49,0): 49, 31, 47, (22,50,0): 49, 31, 47, (22,51,0): 49, 31, 47, (22,52,0): 49, 31, 47, (22,53,0): 49, 31, 47, (22,54,0): 49, 31, 47, (22,55,0): 48, 30, 46, (22,56,0): 46, 28, 44, (22,57,0): 46, 28, 44, (22,58,0): 46, 28, 44, (22,59,0): 45, 27, 43, (22,60,0): 45, 27, 43, (22,61,0): 44, 26, 42, (22,62,0): 44, 26, 42, (22,63,0): 43, 25, 41, (22,64,0): 41, 24, 40, (22,65,0): 41, 24, 40, (22,66,0): 41, 24, 40, (22,67,0): 41, 24, 40, (22,68,0): 41, 24, 40, (22,69,0): 41, 24, 40, (22,70,0): 41, 24, 40, (22,71,0): 41, 24, 40, (22,72,0): 39, 22, 38, (22,73,0): 39, 22, 38, (22,74,0): 39, 22, 38, (22,75,0): 39, 22, 38, (22,76,0): 39, 22, 38, (22,77,0): 39, 22, 38, (22,78,0): 39, 22, 38, (22,79,0): 39, 22, 38, (22,80,0): 41, 24, 43, (22,81,0): 41, 24, 43, (22,82,0): 42, 25, 44, (22,83,0): 42, 25, 44, (22,84,0): 42, 25, 44, (22,85,0): 40, 23, 42, (22,86,0): 39, 22, 41, (22,87,0): 38, 21, 40, (22,88,0): 36, 19, 38, (22,89,0): 36, 19, 38, (22,90,0): 35, 18, 37, (22,91,0): 35, 18, 37, (22,92,0): 34, 17, 36, (22,93,0): 34, 17, 36, (22,94,0): 33, 16, 35, (22,95,0): 31, 16, 35, (22,96,0): 30, 17, 37, (22,97,0): 30, 17, 37, (22,98,0): 30, 17, 37, (22,99,0): 31, 18, 38, (22,100,0): 31, 18, 38, (22,101,0): 31, 18, 38, (22,102,0): 31, 18, 38, (22,103,0): 31, 18, 38, (22,104,0): 31, 18, 38, (22,105,0): 31, 18, 38, (22,106,0): 31, 18, 38, (22,107,0): 31, 18, 38, (22,108,0): 31, 18, 38, (22,109,0): 31, 18, 38, (22,110,0): 31, 18, 38, (22,111,0): 28, 19, 38, (22,112,0): 21, 16, 38, (22,113,0): 19, 17, 38, (22,114,0): 19, 17, 38, (22,115,0): 19, 17, 38, (22,116,0): 19, 17, 38, (22,117,0): 19, 17, 38, (22,118,0): 17, 18, 38, (22,119,0): 17, 18, 38, (22,120,0): 17, 20, 39, (22,121,0): 17, 20, 39, (22,122,0): 16, 19, 38, (22,123,0): 14, 19, 38, (22,124,0): 14, 19, 38, (22,125,0): 16, 21, 40, (22,126,0): 17, 22, 41, (22,127,0): 20, 23, 42, (22,128,0): 23, 21, 42, (22,129,0): 25, 22, 43, (22,130,0): 27, 24, 45, (22,131,0): 28, 25, 46, (22,132,0): 30, 25, 47, (22,133,0): 30, 25, 47, (22,134,0): 29, 24, 46, (22,135,0): 28, 23, 45, (22,136,0): 30, 22, 45, (22,137,0): 31, 23, 46, (22,138,0): 32, 22, 46, (22,139,0): 32, 22, 46, (22,140,0): 33, 23, 47, (22,141,0): 33, 23, 47, (22,142,0): 36, 24, 48, (22,143,0): 34, 24, 48, (22,144,0): 32, 22, 46, (22,145,0): 31, 23, 46, (22,146,0): 31, 23, 46, (22,147,0): 31, 23, 46, (22,148,0): 31, 23, 46, (22,149,0): 31, 23, 46, (22,150,0): 31, 23, 46, (22,151,0): 31, 23, 46, (22,152,0): 29, 21, 44, (22,153,0): 29, 21, 44, (22,154,0): 29, 21, 44, (22,155,0): 29, 21, 44, (22,156,0): 29, 21, 44, (22,157,0): 29, 21, 44, (22,158,0): 29, 21, 44, (22,159,0): 27, 22, 44, (22,160,0): 27, 22, 44, (22,161,0): 26, 23, 44, (22,162,0): 27, 24, 45, (22,163,0): 27, 24, 45, (22,164,0): 29, 24, 46, (22,165,0): 29, 24, 46, (22,166,0): 30, 25, 47, (22,167,0): 30, 25, 47, (22,168,0): 31, 23, 46, (22,169,0): 31, 23, 46, (22,170,0): 32, 22, 46, (22,171,0): 33, 23, 47, (22,172,0): 33, 23, 47, (22,173,0): 34, 24, 48, (22,174,0): 36, 24, 48, (22,175,0): 34, 24, 48, (22,176,0): 33, 23, 47, (22,177,0): 32, 24, 47, (22,178,0): 32, 24, 47, (22,179,0): 32, 24, 47, (22,180,0): 32, 24, 47, (22,181,0): 32, 24, 47, (22,182,0): 32, 24, 47, (22,183,0): 32, 24, 47, (22,184,0): 32, 24, 47, (22,185,0): 32, 24, 47, (22,186,0): 32, 24, 47, (22,187,0): 32, 24, 47, (22,188,0): 32, 24, 47, (22,189,0): 32, 24, 47, (22,190,0): 32, 24, 47, (22,191,0): 32, 24, 45, (22,192,0): 30, 25, 45, (22,193,0): 30, 26, 43, (22,194,0): 33, 26, 44, (22,195,0): 33, 26, 44, (22,196,0): 34, 27, 45, (22,197,0): 34, 27, 45, (22,198,0): 36, 27, 46, (22,199,0): 36, 27, 46, (22,200,0): 39, 27, 47, (22,201,0): 40, 28, 48, (22,202,0): 41, 29, 49, (22,203,0): 42, 30, 50, (22,204,0): 43, 30, 50, (22,205,0): 42, 29, 49, (22,206,0): 41, 28, 48, (22,207,0): 40, 27, 47, (22,208,0): 44, 29, 48, (22,209,0): 44, 29, 48, (22,210,0): 44, 29, 48, (22,211,0): 44, 29, 48, (22,212,0): 44, 29, 48, (22,213,0): 44, 29, 48, (22,214,0): 44, 29, 48, (22,215,0): 44, 29, 48, (22,216,0): 41, 26, 45, (22,217,0): 42, 27, 46, (22,218,0): 44, 29, 48, (22,219,0): 45, 30, 49, (22,220,0): 46, 31, 50, (22,221,0): 46, 31, 50, (22,222,0): 45, 30, 49, (22,223,0): 44, 29, 48, (22,224,0): 44, 31, 49, (22,225,0): 44, 31, 49, (22,226,0): 44, 31, 49, (22,227,0): 43, 30, 48, (22,228,0): 42, 29, 47, (22,229,0): 41, 28, 46, (22,230,0): 41, 28, 46, (22,231,0): 41, 28, 46, (22,232,0): 40, 27, 45, (22,233,0): 40, 27, 45, (22,234,0): 40, 27, 45, (22,235,0): 40, 27, 45, (22,236,0): 40, 27, 45, (22,237,0): 40, 27, 45, (22,238,0): 40, 27, 45, (22,239,0): 40, 27, 44, (22,240,0): 43, 30, 47, (22,241,0): 43, 31, 45, (22,242,0): 43, 31, 45, (22,243,0): 43, 31, 45, (22,244,0): 44, 32, 46, (22,245,0): 44, 32, 46, (22,246,0): 45, 31, 46, (22,247,0): 45, 31, 46, (22,248,0): 47, 30, 46, (22,249,0): 48, 31, 47, (22,250,0): 51, 33, 49, (22,251,0): 52, 34, 50, (22,252,0): 52, 34, 50, (22,253,0): 51, 33, 49, (22,254,0): 49, 31, 47, (22,255,0): 48, 30, 46, (22,256,0): 52, 34, 48, (22,257,0): 52, 34, 48, (22,258,0): 52, 34, 46, (22,259,0): 53, 35, 47, (22,260,0): 55, 35, 47, (22,261,0): 56, 36, 48, (22,262,0): 56, 36, 47, (22,263,0): 57, 37, 48, (22,264,0): 58, 37, 46, (22,265,0): 59, 38, 47, (22,266,0): 61, 38, 48, (22,267,0): 62, 39, 49, (22,268,0): 63, 40, 48, (22,269,0): 64, 41, 49, (22,270,0): 67, 41, 50, (22,271,0): 67, 41, 50, (22,272,0): 68, 42, 51, (22,273,0): 69, 43, 52, (22,274,0): 71, 44, 53, (22,275,0): 72, 45, 54, (22,276,0): 73, 46, 53, (22,277,0): 74, 47, 54, (22,278,0): 77, 47, 55, (22,279,0): 77, 47, 55, (22,280,0): 76, 45, 51, (22,281,0): 76, 45, 51, (22,282,0): 77, 46, 51, (22,283,0): 78, 47, 52, (22,284,0): 80, 48, 53, (22,285,0): 81, 49, 54, (22,286,0): 82, 50, 53, (22,287,0): 82, 50, 53, (22,288,0): 89, 54, 60, (22,289,0): 90, 53, 60, (22,290,0): 91, 54, 61, (22,291,0): 91, 54, 61, (22,292,0): 92, 55, 62, (22,293,0): 92, 55, 62, (22,294,0): 93, 57, 61, (22,295,0): 93, 57, 61, (22,296,0): 93, 57, 61, (22,297,0): 93, 57, 59, (22,298,0): 94, 58, 60, (22,299,0): 95, 59, 59, (22,300,0): 96, 60, 60, (22,301,0): 97, 61, 61, (22,302,0): 98, 62, 62, (22,303,0): 100, 62, 61, (22,304,0): 109, 68, 66, (22,305,0): 113, 70, 64, (22,306,0): 118, 74, 65, (22,307,0): 122, 79, 63, (22,308,0): 128, 83, 64, (22,309,0): 132, 86, 63, (22,310,0): 135, 87, 65, (22,311,0): 135, 87, 65, (22,312,0): 132, 84, 64, (22,313,0): 131, 84, 64, (22,314,0): 130, 83, 65, (22,315,0): 129, 84, 65, (22,316,0): 126, 84, 62, (22,317,0): 125, 85, 60, (22,318,0): 124, 84, 58, (22,319,0): 124, 85, 56, (22,320,0): 123, 81, 56, (22,321,0): 124, 82, 57, (22,322,0): 125, 83, 58, (22,323,0): 127, 85, 60, (22,324,0): 128, 86, 61, (22,325,0): 130, 88, 63, (22,326,0): 131, 89, 64, (22,327,0): 132, 90, 65, (22,328,0): 130, 90, 64, (22,329,0): 130, 90, 64, (22,330,0): 131, 91, 65, (22,331,0): 131, 91, 65, (22,332,0): 130, 93, 66, (22,333,0): 130, 93, 66, (22,334,0): 131, 94, 67, (22,335,0): 131, 94, 68, (22,336,0): 130, 94, 70, (22,337,0): 129, 93, 69, (22,338,0): 128, 92, 70, (22,339,0): 127, 91, 69, (22,340,0): 125, 89, 67, (22,341,0): 123, 87, 65, (22,342,0): 122, 85, 66, (22,343,0): 122, 85, 66, (22,344,0): 121, 84, 66, (22,345,0): 120, 83, 65, (22,346,0): 119, 82, 64, (22,347,0): 118, 81, 63, (22,348,0): 118, 81, 65, (22,349,0): 119, 82, 66, (22,350,0): 121, 84, 68, (22,351,0): 121, 84, 68, (22,352,0): 123, 84, 67, (22,353,0): 123, 85, 66, (22,354,0): 123, 84, 67, (22,355,0): 123, 84, 69, (22,356,0): 122, 82, 70, (22,357,0): 122, 82, 70, (22,358,0): 122, 82, 72, (22,359,0): 122, 82, 72, (22,360,0): 124, 84, 74, (22,361,0): 125, 85, 75, (22,362,0): 125, 85, 73, (22,363,0): 126, 86, 74, (22,364,0): 127, 88, 73, (22,365,0): 128, 89, 72, (22,366,0): 129, 91, 72, (22,367,0): 130, 92, 73, (22,368,0): 136, 95, 77, (22,369,0): 137, 94, 77, (22,370,0): 137, 96, 78, (22,371,0): 137, 96, 78, (22,372,0): 137, 95, 79, (22,373,0): 134, 95, 78, (22,374,0): 132, 93, 76, (22,375,0): 131, 92, 75, (22,376,0): 130, 93, 77, (22,377,0): 129, 92, 76, (22,378,0): 128, 90, 77, (22,379,0): 126, 90, 76, (22,380,0): 125, 89, 75, (22,381,0): 125, 89, 75, (22,382,0): 126, 90, 78, (22,383,0): 127, 91, 79, (22,384,0): 126, 90, 78, (22,385,0): 126, 90, 78, (22,386,0): 127, 89, 76, (22,387,0): 127, 89, 76, (22,388,0): 129, 89, 77, (22,389,0): 133, 91, 79, (22,390,0): 138, 91, 81, (22,391,0): 140, 92, 80, (22,392,0): 143, 91, 80, (22,393,0): 143, 89, 77, (22,394,0): 145, 88, 77, (22,395,0): 149, 91, 80, (22,396,0): 152, 92, 81, (22,397,0): 152, 92, 81, (22,398,0): 151, 89, 78, (22,399,0): 143, 86, 75, (22,400,0): 133, 87, 74, (22,401,0): 130, 88, 74, (22,402,0): 129, 87, 75, (22,403,0): 128, 86, 72, (22,404,0): 128, 86, 72, (22,405,0): 129, 85, 72, (22,406,0): 129, 85, 72, (22,407,0): 129, 86, 70, (22,408,0): 131, 85, 70, (22,409,0): 130, 84, 68, (22,410,0): 128, 82, 66, (22,411,0): 128, 81, 63, (22,412,0): 128, 81, 63, (22,413,0): 129, 82, 64, (22,414,0): 131, 84, 66, (22,415,0): 132, 85, 69, (22,416,0): 126, 82, 69, (22,417,0): 123, 79, 66, (22,418,0): 117, 75, 61, (22,419,0): 112, 70, 58, (22,420,0): 106, 66, 54, (22,421,0): 104, 64, 54, (22,422,0): 103, 65, 56, (22,423,0): 103, 66, 58, (22,424,0): 99, 65, 56, (22,425,0): 97, 62, 56, (22,426,0): 93, 60, 55, (22,427,0): 88, 57, 52, (22,428,0): 86, 55, 52, (22,429,0): 85, 54, 51, (22,430,0): 84, 55, 51, (22,431,0): 84, 54, 52, (22,432,0): 81, 53, 50, (22,433,0): 81, 53, 50, (22,434,0): 81, 53, 50, (22,435,0): 82, 54, 51, (22,436,0): 82, 54, 51, (22,437,0): 82, 54, 51, (22,438,0): 83, 55, 52, (22,439,0): 83, 55, 52, (22,440,0): 84, 56, 53, (22,441,0): 83, 55, 52, (22,442,0): 83, 55, 52, (22,443,0): 83, 55, 52, (22,444,0): 84, 56, 53, (22,445,0): 86, 58, 55, (22,446,0): 88, 60, 57, (22,447,0): 89, 61, 58, (22,448,0): 88, 63, 59, (22,449,0): 89, 64, 60, (22,450,0): 89, 64, 60, (22,451,0): 89, 64, 60, (22,452,0): 88, 63, 59, (22,453,0): 85, 60, 56, (22,454,0): 83, 58, 54, (22,455,0): 82, 57, 53, (22,456,0): 83, 58, 54, (22,457,0): 83, 58, 54, (22,458,0): 83, 58, 54, (22,459,0): 83, 58, 54, (22,460,0): 83, 58, 54, (22,461,0): 83, 58, 54, (22,462,0): 83, 58, 54, (22,463,0): 83, 58, 54, (22,464,0): 83, 57, 56, (22,465,0): 82, 56, 55, (22,466,0): 81, 55, 54, (22,467,0): 81, 55, 54, (22,468,0): 81, 55, 54, (22,469,0): 82, 56, 55, (22,470,0): 84, 59, 55, (22,471,0): 85, 60, 56, (22,472,0): 86, 61, 56, (22,473,0): 87, 62, 57, (22,474,0): 87, 62, 55, (22,475,0): 88, 63, 56, (22,476,0): 88, 63, 56, (22,477,0): 89, 64, 57, (22,478,0): 89, 64, 57, (22,479,0): 89, 64, 57, (22,480,0): 88, 64, 54, (22,481,0): 89, 65, 53, (22,482,0): 91, 67, 57, (22,483,0): 92, 68, 58, (22,484,0): 92, 68, 58, (22,485,0): 91, 67, 57, (22,486,0): 90, 65, 58, (22,487,0): 89, 64, 57, (22,488,0): 90, 65, 60, (22,489,0): 89, 64, 59, (22,490,0): 89, 64, 59, (22,491,0): 89, 64, 59, (22,492,0): 89, 64, 60, (22,493,0): 88, 63, 59, (22,494,0): 88, 63, 59, (22,495,0): 88, 63, 59, (22,496,0): 89, 64, 60, (22,497,0): 89, 64, 60, (22,498,0): 89, 64, 60, (22,499,0): 90, 65, 61, (22,500,0): 90, 65, 61, (22,501,0): 91, 66, 62, (22,502,0): 91, 66, 62, (22,503,0): 92, 67, 63, (22,504,0): 94, 69, 65, (22,505,0): 94, 69, 65, (22,506,0): 94, 69, 65, (22,507,0): 94, 69, 65, (22,508,0): 94, 69, 65, (22,509,0): 94, 69, 65, (22,510,0): 94, 69, 65, (22,511,0): 94, 69, 65, (22,512,0): 94, 69, 64, (22,513,0): 95, 70, 65, (22,514,0): 96, 71, 67, (22,515,0): 96, 71, 67, (22,516,0): 95, 70, 66, (22,517,0): 94, 69, 65, (22,518,0): 93, 67, 66, (22,519,0): 92, 66, 65, (22,520,0): 92, 66, 67, (22,521,0): 91, 65, 66, (22,522,0): 90, 64, 65, (22,523,0): 88, 62, 63, (22,524,0): 86, 60, 63, (22,525,0): 85, 59, 62, (22,526,0): 84, 58, 61, (22,527,0): 82, 57, 60, (22,528,0): 81, 57, 57, (22,529,0): 79, 58, 57, (22,530,0): 79, 57, 59, (22,531,0): 79, 57, 59, (22,532,0): 79, 57, 59, (22,533,0): 79, 57, 59, (22,534,0): 79, 57, 60, (22,535,0): 79, 57, 60, (22,536,0): 80, 57, 63, (22,537,0): 77, 54, 60, (22,538,0): 74, 51, 57, (22,539,0): 71, 48, 54, (22,540,0): 69, 46, 54, (22,541,0): 69, 46, 54, (22,542,0): 70, 47, 55, (22,543,0): 71, 48, 56, (22,544,0): 71, 50, 57, (22,545,0): 71, 50, 57, (22,546,0): 72, 51, 58, (22,547,0): 72, 51, 58, (22,548,0): 74, 51, 57, (22,549,0): 74, 51, 57, (22,550,0): 75, 52, 58, (22,551,0): 75, 52, 58, (22,552,0): 77, 52, 56, (22,553,0): 77, 52, 56, (22,554,0): 77, 51, 54, (22,555,0): 77, 51, 54, (22,556,0): 78, 52, 55, (22,557,0): 80, 54, 57, (22,558,0): 84, 55, 57, (22,559,0): 86, 56, 56, (22,560,0): 88, 56, 57, (22,561,0): 91, 57, 56, (22,562,0): 93, 59, 60, (22,563,0): 94, 60, 61, (22,564,0): 93, 61, 62, (22,565,0): 93, 61, 62, (22,566,0): 92, 60, 63, (22,567,0): 91, 61, 63, (22,568,0): 84, 53, 58, (22,569,0): 84, 53, 58, (22,570,0): 82, 53, 57, (22,571,0): 80, 51, 55, (22,572,0): 78, 49, 54, (22,573,0): 75, 48, 53, (22,574,0): 74, 47, 52, (22,575,0): 73, 46, 51, (22,576,0): 73, 48, 51, (22,577,0): 71, 49, 51, (22,578,0): 70, 48, 50, (22,579,0): 69, 47, 49, (22,580,0): 69, 47, 49, (22,581,0): 68, 46, 48, (22,582,0): 67, 45, 47, (22,583,0): 67, 45, 47, (22,584,0): 67, 45, 47, (22,585,0): 67, 45, 47, (22,586,0): 67, 45, 47, (22,587,0): 67, 45, 47, (22,588,0): 67, 45, 47, (22,589,0): 67, 45, 47, (22,590,0): 67, 45, 47, (22,591,0): 67, 45, 47, (22,592,0): 68, 46, 48, (22,593,0): 69, 47, 49, (22,594,0): 69, 47, 49, (22,595,0): 69, 47, 49, (22,596,0): 69, 47, 49, (22,597,0): 67, 45, 47, (22,598,0): 66, 44, 46, (22,599,0): 65, 43, 45, (23,0,0): 35, 27, 40, (23,1,0): 35, 27, 40, (23,2,0): 37, 26, 40, (23,3,0): 38, 27, 41, (23,4,0): 39, 27, 39, (23,5,0): 40, 28, 40, (23,6,0): 41, 27, 40, (23,7,0): 41, 27, 40, (23,8,0): 44, 28, 39, (23,9,0): 45, 27, 39, (23,10,0): 48, 28, 39, (23,11,0): 49, 29, 40, (23,12,0): 51, 29, 41, (23,13,0): 52, 30, 42, (23,14,0): 54, 31, 41, (23,15,0): 54, 31, 41, (23,16,0): 55, 33, 46, (23,17,0): 54, 32, 45, (23,18,0): 52, 30, 43, (23,19,0): 50, 28, 41, (23,20,0): 48, 28, 40, (23,21,0): 48, 28, 40, (23,22,0): 48, 28, 40, (23,23,0): 48, 28, 40, (23,24,0): 48, 30, 42, (23,25,0): 48, 30, 42, (23,26,0): 47, 31, 42, (23,27,0): 47, 31, 42, (23,28,0): 47, 31, 42, (23,29,0): 47, 31, 42, (23,30,0): 45, 32, 42, (23,31,0): 45, 32, 42, (23,32,0): 47, 30, 46, (23,33,0): 47, 30, 46, (23,34,0): 47, 30, 46, (23,35,0): 48, 31, 47, (23,36,0): 48, 31, 47, (23,37,0): 49, 32, 48, (23,38,0): 49, 32, 48, (23,39,0): 49, 32, 48, (23,40,0): 49, 32, 48, (23,41,0): 49, 32, 48, (23,42,0): 49, 32, 48, (23,43,0): 48, 31, 47, (23,44,0): 48, 31, 47, (23,45,0): 48, 31, 47, (23,46,0): 48, 31, 47, (23,47,0): 47, 30, 46, (23,48,0): 48, 30, 46, (23,49,0): 48, 30, 46, (23,50,0): 49, 31, 47, (23,51,0): 49, 31, 47, (23,52,0): 49, 31, 47, (23,53,0): 49, 31, 47, (23,54,0): 50, 32, 48, (23,55,0): 50, 32, 48, (23,56,0): 46, 28, 44, (23,57,0): 46, 28, 44, (23,58,0): 45, 27, 43, (23,59,0): 45, 27, 43, (23,60,0): 44, 26, 42, (23,61,0): 44, 26, 42, (23,62,0): 43, 25, 41, (23,63,0): 43, 25, 41, (23,64,0): 41, 24, 40, (23,65,0): 41, 24, 40, (23,66,0): 41, 24, 40, (23,67,0): 41, 24, 40, (23,68,0): 41, 24, 40, (23,69,0): 41, 24, 40, (23,70,0): 41, 24, 40, (23,71,0): 41, 24, 40, (23,72,0): 39, 22, 38, (23,73,0): 39, 22, 38, (23,74,0): 39, 22, 38, (23,75,0): 39, 22, 38, (23,76,0): 39, 22, 38, (23,77,0): 39, 22, 38, (23,78,0): 39, 22, 38, (23,79,0): 39, 22, 38, (23,80,0): 41, 24, 43, (23,81,0): 41, 24, 43, (23,82,0): 42, 25, 44, (23,83,0): 42, 25, 44, (23,84,0): 42, 25, 44, (23,85,0): 40, 23, 42, (23,86,0): 39, 22, 41, (23,87,0): 38, 21, 40, (23,88,0): 36, 19, 38, (23,89,0): 36, 19, 38, (23,90,0): 35, 18, 37, (23,91,0): 35, 18, 37, (23,92,0): 34, 17, 36, (23,93,0): 34, 17, 36, (23,94,0): 33, 16, 35, (23,95,0): 31, 16, 35, (23,96,0): 30, 15, 36, (23,97,0): 29, 16, 36, (23,98,0): 30, 17, 37, (23,99,0): 30, 17, 37, (23,100,0): 30, 17, 37, (23,101,0): 31, 18, 38, (23,102,0): 31, 18, 38, (23,103,0): 31, 18, 38, (23,104,0): 31, 18, 38, (23,105,0): 31, 18, 38, (23,106,0): 31, 18, 38, (23,107,0): 31, 18, 38, (23,108,0): 31, 18, 38, (23,109,0): 31, 18, 38, (23,110,0): 31, 18, 38, (23,111,0): 30, 18, 38, (23,112,0): 21, 16, 38, (23,113,0): 19, 17, 38, (23,114,0): 19, 17, 38, (23,115,0): 19, 17, 38, (23,116,0): 19, 17, 38, (23,117,0): 19, 17, 38, (23,118,0): 17, 18, 38, (23,119,0): 17, 18, 38, (23,120,0): 18, 19, 39, (23,121,0): 17, 20, 39, (23,122,0): 16, 19, 38, (23,123,0): 14, 19, 38, (23,124,0): 14, 19, 38, (23,125,0): 16, 21, 40, (23,126,0): 17, 22, 41, (23,127,0): 20, 23, 42, (23,128,0): 24, 22, 43, (23,129,0): 26, 23, 44, (23,130,0): 27, 24, 45, (23,131,0): 28, 25, 46, (23,132,0): 30, 25, 47, (23,133,0): 30, 25, 47, (23,134,0): 29, 24, 46, (23,135,0): 28, 23, 45, (23,136,0): 30, 22, 45, (23,137,0): 31, 23, 46, (23,138,0): 32, 22, 46, (23,139,0): 33, 23, 47, (23,140,0): 33, 23, 47, (23,141,0): 34, 24, 48, (23,142,0): 36, 24, 48, (23,143,0): 34, 24, 48, (23,144,0): 32, 22, 46, (23,145,0): 31, 23, 46, (23,146,0): 31, 23, 46, (23,147,0): 31, 23, 46, (23,148,0): 31, 23, 46, (23,149,0): 31, 23, 46, (23,150,0): 31, 23, 46, (23,151,0): 31, 23, 46, (23,152,0): 28, 20, 43, (23,153,0): 29, 21, 44, (23,154,0): 29, 21, 44, (23,155,0): 30, 22, 45, (23,156,0): 30, 22, 45, (23,157,0): 29, 21, 44, (23,158,0): 29, 21, 44, (23,159,0): 26, 21, 43, (23,160,0): 27, 22, 44, (23,161,0): 26, 23, 44, (23,162,0): 27, 24, 45, (23,163,0): 27, 24, 45, (23,164,0): 29, 24, 46, (23,165,0): 29, 24, 46, (23,166,0): 30, 25, 47, (23,167,0): 30, 25, 47, (23,168,0): 31, 23, 46, (23,169,0): 31, 23, 46, (23,170,0): 32, 22, 46, (23,171,0): 33, 23, 47, (23,172,0): 33, 23, 47, (23,173,0): 34, 24, 48, (23,174,0): 36, 24, 48, (23,175,0): 34, 24, 48, (23,176,0): 33, 23, 47, (23,177,0): 32, 24, 47, (23,178,0): 32, 24, 47, (23,179,0): 32, 24, 47, (23,180,0): 32, 24, 47, (23,181,0): 32, 24, 47, (23,182,0): 32, 24, 47, (23,183,0): 32, 24, 47, (23,184,0): 32, 24, 47, (23,185,0): 32, 24, 47, (23,186,0): 32, 24, 47, (23,187,0): 32, 24, 47, (23,188,0): 32, 24, 47, (23,189,0): 32, 24, 47, (23,190,0): 32, 24, 47, (23,191,0): 32, 24, 45, (23,192,0): 30, 25, 45, (23,193,0): 30, 26, 43, (23,194,0): 33, 26, 44, (23,195,0): 33, 26, 44, (23,196,0): 34, 27, 45, (23,197,0): 34, 27, 45, (23,198,0): 36, 27, 46, (23,199,0): 36, 27, 46, (23,200,0): 40, 28, 48, (23,201,0): 40, 28, 48, (23,202,0): 41, 29, 49, (23,203,0): 42, 30, 50, (23,204,0): 43, 30, 50, (23,205,0): 42, 29, 49, (23,206,0): 41, 28, 48, (23,207,0): 41, 28, 48, (23,208,0): 44, 29, 48, (23,209,0): 44, 29, 48, (23,210,0): 44, 29, 48, (23,211,0): 44, 29, 48, (23,212,0): 44, 29, 48, (23,213,0): 44, 29, 48, (23,214,0): 44, 29, 48, (23,215,0): 44, 29, 48, (23,216,0): 42, 27, 46, (23,217,0): 43, 28, 47, (23,218,0): 44, 29, 48, (23,219,0): 45, 30, 49, (23,220,0): 46, 31, 50, (23,221,0): 46, 31, 50, (23,222,0): 45, 30, 49, (23,223,0): 44, 29, 48, (23,224,0): 45, 32, 50, (23,225,0): 45, 32, 50, (23,226,0): 45, 32, 50, (23,227,0): 44, 31, 49, (23,228,0): 43, 30, 48, (23,229,0): 42, 29, 47, (23,230,0): 41, 28, 46, (23,231,0): 41, 28, 46, (23,232,0): 39, 26, 44, (23,233,0): 39, 26, 44, (23,234,0): 39, 26, 44, (23,235,0): 39, 26, 44, (23,236,0): 39, 26, 44, (23,237,0): 39, 26, 44, (23,238,0): 39, 26, 44, (23,239,0): 39, 26, 43, (23,240,0): 41, 28, 45, (23,241,0): 42, 30, 44, (23,242,0): 42, 30, 44, (23,243,0): 43, 31, 45, (23,244,0): 44, 32, 46, (23,245,0): 45, 33, 47, (23,246,0): 46, 32, 47, (23,247,0): 47, 33, 48, (23,248,0): 47, 30, 46, (23,249,0): 49, 32, 48, (23,250,0): 51, 33, 49, (23,251,0): 52, 34, 50, (23,252,0): 52, 34, 50, (23,253,0): 51, 33, 49, (23,254,0): 50, 32, 48, (23,255,0): 48, 30, 46, (23,256,0): 52, 34, 48, (23,257,0): 52, 34, 48, (23,258,0): 53, 35, 47, (23,259,0): 53, 35, 47, (23,260,0): 56, 36, 48, (23,261,0): 56, 36, 48, (23,262,0): 57, 37, 48, (23,263,0): 57, 37, 48, (23,264,0): 59, 38, 47, (23,265,0): 60, 39, 48, (23,266,0): 62, 39, 49, (23,267,0): 63, 40, 50, (23,268,0): 64, 41, 49, (23,269,0): 65, 42, 50, (23,270,0): 68, 42, 51, (23,271,0): 68, 42, 51, (23,272,0): 69, 43, 52, (23,273,0): 69, 43, 52, (23,274,0): 71, 44, 53, (23,275,0): 72, 45, 54, (23,276,0): 73, 46, 53, (23,277,0): 74, 47, 54, (23,278,0): 77, 47, 55, (23,279,0): 77, 47, 55, (23,280,0): 76, 45, 51, (23,281,0): 76, 45, 51, (23,282,0): 77, 46, 51, (23,283,0): 78, 47, 52, (23,284,0): 80, 48, 53, (23,285,0): 81, 49, 54, (23,286,0): 82, 50, 53, (23,287,0): 84, 49, 53, (23,288,0): 91, 54, 61, (23,289,0): 91, 54, 61, (23,290,0): 92, 55, 62, (23,291,0): 92, 55, 62, (23,292,0): 93, 56, 63, (23,293,0): 93, 57, 61, (23,294,0): 94, 58, 62, (23,295,0): 94, 58, 60, (23,296,0): 93, 57, 59, (23,297,0): 94, 58, 60, (23,298,0): 94, 58, 58, (23,299,0): 95, 59, 59, (23,300,0): 96, 60, 60, (23,301,0): 97, 61, 61, (23,302,0): 98, 62, 62, (23,303,0): 101, 63, 62, (23,304,0): 110, 69, 67, (23,305,0): 114, 71, 64, (23,306,0): 119, 75, 64, (23,307,0): 125, 79, 63, (23,308,0): 130, 83, 63, (23,309,0): 133, 87, 63, (23,310,0): 135, 87, 64, (23,311,0): 136, 88, 65, (23,312,0): 132, 84, 62, (23,313,0): 132, 84, 64, (23,314,0): 132, 84, 64, (23,315,0): 130, 83, 63, (23,316,0): 129, 84, 61, (23,317,0): 126, 84, 59, (23,318,0): 126, 85, 57, (23,319,0): 125, 84, 56, (23,320,0): 125, 81, 54, (23,321,0): 126, 82, 55, (23,322,0): 127, 83, 58, (23,323,0): 127, 86, 58, (23,324,0): 131, 87, 62, (23,325,0): 131, 90, 62, (23,326,0): 132, 90, 65, (23,327,0): 133, 92, 64, (23,328,0): 131, 89, 64, (23,329,0): 131, 92, 63, (23,330,0): 131, 91, 65, (23,331,0): 132, 93, 64, (23,332,0): 130, 93, 66, (23,333,0): 131, 94, 65, (23,334,0): 131, 94, 67, (23,335,0): 131, 94, 67, (23,336,0): 130, 94, 68, (23,337,0): 129, 93, 69, (23,338,0): 128, 92, 70, (23,339,0): 127, 91, 69, (23,340,0): 125, 89, 67, (23,341,0): 124, 88, 66, (23,342,0): 122, 85, 66, (23,343,0): 122, 85, 66, (23,344,0): 120, 83, 65, (23,345,0): 120, 83, 65, (23,346,0): 119, 82, 64, (23,347,0): 118, 81, 63, (23,348,0): 119, 82, 66, (23,349,0): 120, 83, 67, (23,350,0): 121, 84, 68, (23,351,0): 122, 85, 67, (23,352,0): 122, 84, 65, (23,353,0): 122, 84, 65, (23,354,0): 122, 83, 66, (23,355,0): 122, 83, 66, (23,356,0): 122, 83, 68, (23,357,0): 123, 83, 71, (23,358,0): 123, 83, 73, (23,359,0): 123, 83, 73, (23,360,0): 125, 85, 75, (23,361,0): 126, 86, 74, (23,362,0): 127, 87, 75, (23,363,0): 128, 89, 74, (23,364,0): 129, 90, 73, (23,365,0): 130, 92, 73, (23,366,0): 130, 92, 73, (23,367,0): 133, 92, 74, (23,368,0): 138, 95, 78, (23,369,0): 139, 96, 79, (23,370,0): 139, 98, 80, (23,371,0): 139, 98, 80, (23,372,0): 138, 96, 80, (23,373,0): 137, 95, 79, (23,374,0): 136, 94, 78, (23,375,0): 133, 94, 77, (23,376,0): 133, 94, 79, (23,377,0): 131, 94, 78, (23,378,0): 130, 92, 79, (23,379,0): 129, 91, 78, (23,380,0): 127, 91, 77, (23,381,0): 127, 91, 77, (23,382,0): 128, 92, 80, (23,383,0): 129, 93, 81, (23,384,0): 127, 91, 79, (23,385,0): 127, 91, 79, (23,386,0): 128, 90, 77, (23,387,0): 129, 89, 77, (23,388,0): 132, 90, 78, (23,389,0): 135, 91, 78, (23,390,0): 139, 93, 80, (23,391,0): 142, 92, 81, (23,392,0): 142, 90, 77, (23,393,0): 145, 88, 77, (23,394,0): 147, 89, 78, (23,395,0): 152, 92, 81, (23,396,0): 156, 94, 83, (23,397,0): 156, 94, 83, (23,398,0): 152, 88, 78, (23,399,0): 144, 86, 74, (23,400,0): 134, 86, 72, (23,401,0): 131, 89, 75, (23,402,0): 131, 89, 75, (23,403,0): 132, 88, 75, (23,404,0): 131, 87, 74, (23,405,0): 130, 87, 71, (23,406,0): 129, 86, 70, (23,407,0): 131, 85, 69, (23,408,0): 132, 86, 70, (23,409,0): 132, 85, 67, (23,410,0): 130, 83, 65, (23,411,0): 129, 82, 64, (23,412,0): 129, 82, 64, (23,413,0): 131, 83, 63, (23,414,0): 133, 84, 67, (23,415,0): 133, 86, 68, (23,416,0): 130, 84, 69, (23,417,0): 125, 81, 68, (23,418,0): 119, 75, 62, (23,419,0): 112, 70, 56, (23,420,0): 108, 66, 54, (23,421,0): 104, 64, 52, (23,422,0): 104, 64, 54, (23,423,0): 104, 66, 57, (23,424,0): 102, 65, 56, (23,425,0): 98, 64, 55, (23,426,0): 95, 60, 54, (23,427,0): 91, 58, 53, (23,428,0): 88, 55, 50, (23,429,0): 86, 55, 52, (23,430,0): 86, 55, 52, (23,431,0): 85, 56, 52, (23,432,0): 83, 53, 51, (23,433,0): 83, 55, 52, (23,434,0): 83, 55, 52, (23,435,0): 83, 55, 52, (23,436,0): 83, 55, 52, (23,437,0): 83, 55, 52, (23,438,0): 84, 56, 53, (23,439,0): 84, 56, 53, (23,440,0): 84, 56, 53, (23,441,0): 83, 55, 52, (23,442,0): 83, 55, 52, (23,443,0): 82, 54, 51, (23,444,0): 84, 56, 53, (23,445,0): 86, 58, 55, (23,446,0): 88, 60, 57, (23,447,0): 90, 62, 59, (23,448,0): 89, 64, 60, (23,449,0): 89, 64, 60, (23,450,0): 90, 65, 61, (23,451,0): 90, 65, 61, (23,452,0): 89, 64, 60, (23,453,0): 86, 61, 57, (23,454,0): 83, 58, 54, (23,455,0): 82, 57, 53, (23,456,0): 82, 57, 53, (23,457,0): 82, 57, 53, (23,458,0): 83, 58, 54, (23,459,0): 83, 58, 54, (23,460,0): 83, 58, 54, (23,461,0): 83, 58, 54, (23,462,0): 84, 59, 55, (23,463,0): 84, 59, 55, (23,464,0): 84, 58, 57, (23,465,0): 83, 57, 56, (23,466,0): 82, 56, 55, (23,467,0): 81, 55, 54, (23,468,0): 82, 56, 55, (23,469,0): 83, 57, 56, (23,470,0): 84, 59, 55, (23,471,0): 85, 60, 56, (23,472,0): 86, 61, 56, (23,473,0): 86, 61, 56, (23,474,0): 87, 62, 55, (23,475,0): 87, 62, 55, (23,476,0): 88, 63, 56, (23,477,0): 88, 63, 56, (23,478,0): 89, 64, 57, (23,479,0): 89, 65, 55, (23,480,0): 88, 64, 54, (23,481,0): 89, 65, 53, (23,482,0): 91, 67, 57, (23,483,0): 92, 68, 58, (23,484,0): 93, 69, 59, (23,485,0): 92, 68, 58, (23,486,0): 90, 65, 58, (23,487,0): 89, 64, 57, (23,488,0): 91, 66, 61, (23,489,0): 91, 66, 61, (23,490,0): 90, 65, 60, (23,491,0): 89, 64, 59, (23,492,0): 88, 63, 59, (23,493,0): 88, 63, 59, (23,494,0): 87, 62, 58, (23,495,0): 87, 62, 58, (23,496,0): 89, 64, 60, (23,497,0): 89, 64, 60, (23,498,0): 90, 65, 61, (23,499,0): 90, 65, 61, (23,500,0): 91, 66, 62, (23,501,0): 91, 66, 62, (23,502,0): 92, 67, 63, (23,503,0): 92, 67, 63, (23,504,0): 95, 70, 66, (23,505,0): 95, 70, 66, (23,506,0): 95, 70, 66, (23,507,0): 95, 70, 66, (23,508,0): 95, 70, 66, (23,509,0): 95, 70, 66, (23,510,0): 95, 70, 66, (23,511,0): 95, 70, 66, (23,512,0): 95, 70, 65, (23,513,0): 95, 70, 65, (23,514,0): 96, 71, 67, (23,515,0): 96, 71, 67, (23,516,0): 96, 71, 67, (23,517,0): 95, 70, 66, (23,518,0): 93, 67, 66, (23,519,0): 92, 66, 65, (23,520,0): 94, 68, 69, (23,521,0): 93, 67, 68, (23,522,0): 91, 65, 66, (23,523,0): 90, 64, 65, (23,524,0): 88, 62, 65, (23,525,0): 86, 60, 63, (23,526,0): 84, 58, 61, (23,527,0): 83, 58, 61, (23,528,0): 82, 58, 58, (23,529,0): 80, 59, 58, (23,530,0): 80, 58, 60, (23,531,0): 80, 58, 60, (23,532,0): 80, 58, 60, (23,533,0): 80, 58, 60, (23,534,0): 80, 58, 61, (23,535,0): 80, 58, 61, (23,536,0): 80, 57, 63, (23,537,0): 78, 55, 61, (23,538,0): 74, 51, 57, (23,539,0): 71, 48, 54, (23,540,0): 69, 46, 54, (23,541,0): 69, 46, 54, (23,542,0): 69, 46, 54, (23,543,0): 70, 47, 55, (23,544,0): 70, 49, 56, (23,545,0): 71, 50, 57, (23,546,0): 71, 50, 57, (23,547,0): 71, 50, 57, (23,548,0): 73, 50, 56, (23,549,0): 73, 50, 56, (23,550,0): 74, 51, 57, (23,551,0): 74, 51, 57, (23,552,0): 77, 52, 56, (23,553,0): 77, 52, 56, (23,554,0): 77, 51, 54, (23,555,0): 77, 51, 54, (23,556,0): 78, 52, 55, (23,557,0): 79, 53, 56, (23,558,0): 83, 54, 56, (23,559,0): 84, 55, 57, (23,560,0): 87, 55, 56, (23,561,0): 90, 56, 55, (23,562,0): 92, 58, 59, (23,563,0): 91, 59, 60, (23,564,0): 92, 60, 61, (23,565,0): 92, 60, 61, (23,566,0): 91, 61, 63, (23,567,0): 90, 60, 62, (23,568,0): 84, 53, 58, (23,569,0): 83, 54, 58, (23,570,0): 81, 52, 56, (23,571,0): 80, 51, 55, (23,572,0): 76, 49, 54, (23,573,0): 75, 48, 53, (23,574,0): 74, 47, 52, (23,575,0): 72, 47, 51, (23,576,0): 69, 47, 49, (23,577,0): 69, 47, 49, (23,578,0): 69, 47, 49, (23,579,0): 68, 46, 48, (23,580,0): 68, 46, 48, (23,581,0): 68, 46, 48, (23,582,0): 68, 46, 48, (23,583,0): 67, 45, 47, (23,584,0): 67, 45, 47, (23,585,0): 67, 45, 47, (23,586,0): 67, 45, 47, (23,587,0): 67, 45, 47, (23,588,0): 67, 45, 47, (23,589,0): 67, 45, 47, (23,590,0): 67, 45, 47, (23,591,0): 67, 45, 47, (23,592,0): 68, 46, 48, (23,593,0): 68, 46, 48, (23,594,0): 69, 47, 49, (23,595,0): 69, 47, 49, (23,596,0): 68, 46, 48, (23,597,0): 66, 44, 46, (23,598,0): 64, 42, 44, (23,599,0): 63, 41, 43, (24,0,0): 32, 26, 38, (24,1,0): 32, 26, 38, (24,2,0): 34, 26, 39, (24,3,0): 34, 26, 39, (24,4,0): 37, 27, 38, (24,5,0): 37, 27, 38, (24,6,0): 39, 27, 39, (24,7,0): 40, 26, 39, (24,8,0): 45, 29, 40, (24,9,0): 45, 29, 40, (24,10,0): 47, 30, 40, (24,11,0): 47, 30, 40, (24,12,0): 50, 30, 41, (24,13,0): 50, 30, 41, (24,14,0): 52, 31, 40, (24,15,0): 52, 31, 40, (24,16,0): 52, 30, 43, (24,17,0): 52, 30, 43, (24,18,0): 51, 29, 42, (24,19,0): 51, 29, 42, (24,20,0): 49, 29, 41, (24,21,0): 49, 29, 41, (24,22,0): 48, 28, 40, (24,23,0): 48, 28, 40, (24,24,0): 46, 28, 40, (24,25,0): 46, 28, 40, (24,26,0): 45, 29, 40, (24,27,0): 45, 29, 40, (24,28,0): 45, 29, 40, (24,29,0): 45, 29, 40, (24,30,0): 43, 30, 40, (24,31,0): 43, 30, 40, (24,32,0): 42, 28, 43, (24,33,0): 42, 28, 43, (24,34,0): 42, 28, 43, (24,35,0): 42, 28, 43, (24,36,0): 42, 28, 43, (24,37,0): 42, 28, 43, (24,38,0): 42, 28, 43, (24,39,0): 42, 28, 43, (24,40,0): 42, 28, 43, (24,41,0): 42, 28, 43, (24,42,0): 44, 30, 45, (24,43,0): 44, 30, 45, (24,44,0): 44, 30, 45, (24,45,0): 44, 30, 45, (24,46,0): 42, 28, 43, (24,47,0): 44, 27, 43, (24,48,0): 47, 29, 45, (24,49,0): 47, 29, 45, (24,50,0): 47, 29, 45, (24,51,0): 47, 29, 45, (24,52,0): 47, 29, 45, (24,53,0): 47, 29, 45, (24,54,0): 47, 29, 45, (24,55,0): 47, 29, 45, (24,56,0): 47, 29, 45, (24,57,0): 47, 29, 45, (24,58,0): 47, 29, 45, (24,59,0): 46, 28, 44, (24,60,0): 46, 28, 44, (24,61,0): 45, 27, 43, (24,62,0): 45, 27, 43, (24,63,0): 44, 26, 42, (24,64,0): 42, 25, 41, (24,65,0): 42, 25, 41, (24,66,0): 42, 25, 41, (24,67,0): 42, 25, 41, (24,68,0): 42, 25, 41, (24,69,0): 42, 25, 41, (24,70,0): 41, 24, 40, (24,71,0): 41, 24, 40, (24,72,0): 40, 23, 39, (24,73,0): 40, 23, 39, (24,74,0): 40, 23, 39, (24,75,0): 40, 23, 39, (24,76,0): 40, 23, 39, (24,77,0): 40, 23, 39, (24,78,0): 40, 23, 39, (24,79,0): 40, 23, 39, (24,80,0): 42, 25, 44, (24,81,0): 40, 23, 42, (24,82,0): 39, 22, 41, (24,83,0): 41, 24, 43, (24,84,0): 44, 27, 46, (24,85,0): 43, 26, 45, (24,86,0): 39, 22, 41, (24,87,0): 35, 18, 37, (24,88,0): 36, 19, 38, (24,89,0): 36, 19, 38, (24,90,0): 35, 18, 37, (24,91,0): 35, 18, 37, (24,92,0): 34, 17, 36, (24,93,0): 34, 17, 36, (24,94,0): 33, 16, 35, (24,95,0): 31, 16, 35, (24,96,0): 31, 16, 37, (24,97,0): 30, 17, 37, (24,98,0): 30, 17, 37, (24,99,0): 30, 17, 37, (24,100,0): 30, 17, 37, (24,101,0): 30, 17, 37, (24,102,0): 30, 17, 37, (24,103,0): 30, 17, 37, (24,104,0): 30, 17, 37, (24,105,0): 30, 17, 37, (24,106,0): 30, 17, 37, (24,107,0): 30, 17, 37, (24,108,0): 30, 17, 37, (24,109,0): 30, 17, 37, (24,110,0): 30, 17, 37, (24,111,0): 29, 17, 37, (24,112,0): 23, 18, 40, (24,113,0): 22, 19, 40, (24,114,0): 22, 19, 40, (24,115,0): 22, 19, 40, (24,116,0): 21, 19, 40, (24,117,0): 21, 19, 40, (24,118,0): 21, 19, 40, (24,119,0): 19, 20, 40, (24,120,0): 19, 20, 40, (24,121,0): 18, 21, 40, (24,122,0): 18, 21, 40, (24,123,0): 19, 22, 41, (24,124,0): 19, 22, 41, (24,125,0): 20, 23, 42, (24,126,0): 18, 23, 42, (24,127,0): 21, 24, 43, (24,128,0): 24, 22, 43, (24,129,0): 25, 22, 43, (24,130,0): 25, 22, 43, (24,131,0): 26, 23, 44, (24,132,0): 27, 22, 44, (24,133,0): 28, 23, 45, (24,134,0): 28, 23, 45, (24,135,0): 28, 23, 45, (24,136,0): 31, 23, 46, (24,137,0): 31, 23, 46, (24,138,0): 32, 22, 46, (24,139,0): 32, 22, 46, (24,140,0): 32, 22, 46, (24,141,0): 32, 22, 46, (24,142,0): 34, 22, 46, (24,143,0): 32, 22, 46, (24,144,0): 32, 22, 46, (24,145,0): 31, 23, 46, (24,146,0): 31, 23, 46, (24,147,0): 31, 23, 46, (24,148,0): 31, 23, 46, (24,149,0): 31, 23, 46, (24,150,0): 31, 23, 46, (24,151,0): 31, 23, 46, (24,152,0): 29, 21, 44, (24,153,0): 29, 21, 44, (24,154,0): 29, 21, 44, (24,155,0): 29, 21, 44, (24,156,0): 29, 21, 44, (24,157,0): 29, 21, 44, (24,158,0): 29, 21, 44, (24,159,0): 27, 22, 44, (24,160,0): 27, 22, 44, (24,161,0): 26, 23, 44, (24,162,0): 26, 23, 44, (24,163,0): 26, 23, 44, (24,164,0): 27, 22, 44, (24,165,0): 27, 22, 44, (24,166,0): 27, 22, 44, (24,167,0): 27, 22, 44, (24,168,0): 31, 23, 46, (24,169,0): 31, 23, 46, (24,170,0): 32, 22, 46, (24,171,0): 32, 22, 46, (24,172,0): 32, 22, 46, (24,173,0): 32, 22, 46, (24,174,0): 34, 22, 46, (24,175,0): 32, 22, 46, (24,176,0): 33, 23, 47, (24,177,0): 32, 24, 47, (24,178,0): 32, 24, 47, (24,179,0): 32, 24, 47, (24,180,0): 32, 24, 47, (24,181,0): 32, 24, 47, (24,182,0): 32, 24, 47, (24,183,0): 32, 24, 47, (24,184,0): 32, 24, 47, (24,185,0): 32, 24, 47, (24,186,0): 32, 24, 47, (24,187,0): 32, 24, 47, (24,188,0): 32, 24, 47, (24,189,0): 32, 24, 47, (24,190,0): 32, 24, 47, (24,191,0): 32, 24, 45, (24,192,0): 33, 28, 48, (24,193,0): 33, 29, 46, (24,194,0): 35, 28, 46, (24,195,0): 35, 28, 46, (24,196,0): 35, 28, 46, (24,197,0): 35, 28, 46, (24,198,0): 36, 27, 46, (24,199,0): 36, 27, 46, (24,200,0): 39, 27, 47, (24,201,0): 40, 28, 48, (24,202,0): 42, 30, 50, (24,203,0): 43, 31, 51, (24,204,0): 44, 31, 51, (24,205,0): 43, 30, 50, (24,206,0): 41, 28, 48, (24,207,0): 40, 27, 47, (24,208,0): 44, 29, 48, (24,209,0): 46, 29, 48, (24,210,0): 46, 29, 48, (24,211,0): 45, 28, 47, (24,212,0): 45, 28, 47, (24,213,0): 45, 28, 47, (24,214,0): 44, 27, 46, (24,215,0): 44, 27, 46, (24,216,0): 47, 30, 49, (24,217,0): 47, 30, 49, (24,218,0): 47, 30, 49, (24,219,0): 47, 30, 49, (24,220,0): 47, 30, 49, (24,221,0): 47, 30, 49, (24,222,0): 47, 30, 49, (24,223,0): 45, 30, 49, (24,224,0): 45, 32, 50, (24,225,0): 45, 32, 50, (24,226,0): 44, 31, 49, (24,227,0): 44, 31, 49, (24,228,0): 43, 30, 48, (24,229,0): 43, 30, 48, (24,230,0): 42, 29, 47, (24,231,0): 42, 29, 47, (24,232,0): 38, 25, 43, (24,233,0): 38, 25, 43, (24,234,0): 38, 25, 43, (24,235,0): 38, 25, 43, (24,236,0): 38, 25, 43, (24,237,0): 40, 27, 45, (24,238,0): 41, 28, 46, (24,239,0): 43, 30, 47, (24,240,0): 44, 31, 48, (24,241,0): 44, 32, 46, (24,242,0): 44, 32, 46, (24,243,0): 45, 33, 47, (24,244,0): 45, 33, 47, (24,245,0): 46, 34, 48, (24,246,0): 47, 33, 48, (24,247,0): 47, 33, 48, (24,248,0): 51, 34, 50, (24,249,0): 51, 34, 50, (24,250,0): 51, 33, 49, (24,251,0): 51, 33, 49, (24,252,0): 50, 32, 48, (24,253,0): 50, 32, 48, (24,254,0): 49, 31, 47, (24,255,0): 49, 31, 47, (24,256,0): 48, 30, 44, (24,257,0): 49, 31, 45, (24,258,0): 51, 33, 45, (24,259,0): 53, 35, 47, (24,260,0): 56, 36, 48, (24,261,0): 56, 36, 48, (24,262,0): 56, 36, 47, (24,263,0): 55, 35, 46, (24,264,0): 56, 35, 44, (24,265,0): 57, 36, 45, (24,266,0): 59, 36, 46, (24,267,0): 61, 38, 48, (24,268,0): 63, 40, 48, (24,269,0): 65, 42, 50, (24,270,0): 68, 42, 51, (24,271,0): 69, 43, 52, (24,272,0): 70, 43, 52, (24,273,0): 70, 43, 52, (24,274,0): 71, 44, 53, (24,275,0): 72, 45, 54, (24,276,0): 75, 45, 53, (24,277,0): 76, 46, 54, (24,278,0): 78, 47, 55, (24,279,0): 78, 47, 55, (24,280,0): 77, 46, 52, (24,281,0): 78, 47, 53, (24,282,0): 80, 48, 53, (24,283,0): 81, 49, 54, (24,284,0): 84, 49, 55, (24,285,0): 85, 50, 56, (24,286,0): 86, 51, 55, (24,287,0): 86, 51, 55, (24,288,0): 90, 53, 60, (24,289,0): 90, 53, 60, (24,290,0): 91, 55, 59, (24,291,0): 91, 55, 59, (24,292,0): 92, 56, 60, (24,293,0): 92, 56, 60, (24,294,0): 93, 57, 61, (24,295,0): 93, 57, 59, (24,296,0): 92, 56, 58, (24,297,0): 94, 58, 58, (24,298,0): 95, 59, 59, (24,299,0): 95, 59, 59, (24,300,0): 95, 60, 58, (24,301,0): 96, 61, 59, (24,302,0): 100, 65, 63, (24,303,0): 105, 67, 64, (24,304,0): 111, 67, 64, (24,305,0): 114, 69, 63, (24,306,0): 121, 74, 64, (24,307,0): 125, 79, 63, (24,308,0): 131, 84, 64, (24,309,0): 135, 87, 64, (24,310,0): 139, 89, 64, (24,311,0): 140, 90, 65, (24,312,0): 140, 90, 67, (24,313,0): 136, 88, 66, (24,314,0): 134, 86, 64, (24,315,0): 131, 85, 62, (24,316,0): 129, 84, 61, (24,317,0): 126, 84, 59, (24,318,0): 126, 85, 55, (24,319,0): 127, 86, 56, (24,320,0): 128, 83, 54, (24,321,0): 129, 84, 55, (24,322,0): 131, 85, 59, (24,323,0): 131, 87, 58, (24,324,0): 134, 88, 62, (24,325,0): 135, 91, 62, (24,326,0): 137, 93, 66, (24,327,0): 135, 94, 64, (24,328,0): 138, 97, 69, (24,329,0): 137, 96, 66, (24,330,0): 136, 97, 68, (24,331,0): 135, 96, 65, (24,332,0): 133, 96, 67, (24,333,0): 132, 96, 64, (24,334,0): 132, 95, 66, (24,335,0): 132, 95, 66, (24,336,0): 128, 92, 66, (24,337,0): 127, 91, 65, (24,338,0): 125, 89, 65, (24,339,0): 123, 87, 63, (24,340,0): 123, 87, 63, (24,341,0): 123, 87, 63, (24,342,0): 125, 89, 67, (24,343,0): 125, 89, 67, (24,344,0): 125, 88, 69, (24,345,0): 124, 87, 68, (24,346,0): 122, 85, 66, (24,347,0): 120, 83, 64, (24,348,0): 119, 82, 64, (24,349,0): 120, 83, 65, (24,350,0): 121, 84, 66, (24,351,0): 122, 85, 67, (24,352,0): 121, 83, 64, (24,353,0): 124, 83, 63, (24,354,0): 125, 84, 66, (24,355,0): 126, 84, 68, (24,356,0): 126, 84, 70, (24,357,0): 125, 83, 69, (24,358,0): 124, 82, 70, (24,359,0): 123, 81, 69, (24,360,0): 125, 83, 71, (24,361,0): 126, 84, 72, (24,362,0): 127, 85, 73, (24,363,0): 130, 88, 74, (24,364,0): 132, 90, 74, (24,365,0): 134, 93, 75, (24,366,0): 135, 94, 76, (24,367,0): 136, 95, 75, (24,368,0): 138, 95, 76, (24,369,0): 138, 95, 76, (24,370,0): 139, 96, 77, (24,371,0): 139, 96, 77, (24,372,0): 139, 96, 79, (24,373,0): 139, 98, 80, (24,374,0): 139, 97, 81, (24,375,0): 137, 98, 81, (24,376,0): 135, 96, 79, (24,377,0): 134, 95, 78, (24,378,0): 131, 94, 78, (24,379,0): 130, 93, 77, (24,380,0): 129, 91, 78, (24,381,0): 129, 91, 78, (24,382,0): 129, 91, 78, (24,383,0): 130, 92, 79, (24,384,0): 131, 93, 80, (24,385,0): 131, 93, 80, (24,386,0): 133, 93, 81, (24,387,0): 133, 93, 81, (24,388,0): 136, 94, 80, (24,389,0): 137, 93, 80, (24,390,0): 140, 94, 81, (24,391,0): 142, 93, 79, (24,392,0): 153, 101, 88, (24,393,0): 152, 95, 84, (24,394,0): 149, 91, 79, (24,395,0): 152, 92, 81, (24,396,0): 158, 96, 85, (24,397,0): 160, 96, 84, (24,398,0): 156, 90, 78, (24,399,0): 145, 85, 74, (24,400,0): 139, 90, 76, (24,401,0): 135, 92, 76, (24,402,0): 136, 93, 77, (24,403,0): 138, 92, 77, (24,404,0): 136, 90, 75, (24,405,0): 134, 88, 72, (24,406,0): 131, 85, 69, (24,407,0): 130, 83, 65, (24,408,0): 133, 86, 68, (24,409,0): 135, 86, 69, (24,410,0): 135, 86, 69, (24,411,0): 135, 87, 67, (24,412,0): 134, 86, 66, (24,413,0): 134, 83, 62, (24,414,0): 132, 81, 62, (24,415,0): 129, 81, 61, (24,416,0): 130, 83, 67, (24,417,0): 124, 81, 65, (24,418,0): 118, 75, 59, (24,419,0): 112, 70, 54, (24,420,0): 108, 66, 52, (24,421,0): 104, 64, 52, (24,422,0): 103, 63, 51, (24,423,0): 102, 64, 53, (24,424,0): 107, 70, 61, (24,425,0): 103, 69, 60, (24,426,0): 101, 67, 58, (24,427,0): 96, 63, 56, (24,428,0): 93, 60, 53, (24,429,0): 89, 58, 53, (24,430,0): 87, 56, 51, (24,431,0): 85, 56, 50, (24,432,0): 86, 57, 53, (24,433,0): 86, 57, 53, (24,434,0): 86, 57, 53, (24,435,0): 86, 57, 53, (24,436,0): 86, 57, 53, (24,437,0): 86, 57, 53, (24,438,0): 86, 57, 53, (24,439,0): 86, 57, 53, (24,440,0): 88, 59, 55, (24,441,0): 88, 59, 55, (24,442,0): 89, 60, 56, (24,443,0): 89, 60, 56, (24,444,0): 89, 60, 56, (24,445,0): 89, 60, 56, (24,446,0): 90, 61, 57, (24,447,0): 89, 61, 57, (24,448,0): 88, 63, 59, (24,449,0): 89, 64, 60, (24,450,0): 89, 64, 60, (24,451,0): 89, 64, 60, (24,452,0): 87, 62, 58, (24,453,0): 84, 59, 55, (24,454,0): 82, 57, 53, (24,455,0): 80, 55, 51, (24,456,0): 84, 59, 55, (24,457,0): 84, 59, 55, (24,458,0): 83, 58, 54, (24,459,0): 82, 57, 53, (24,460,0): 82, 57, 53, (24,461,0): 83, 58, 54, (24,462,0): 84, 59, 55, (24,463,0): 84, 59, 55, (24,464,0): 86, 60, 59, (24,465,0): 86, 60, 59, (24,466,0): 86, 60, 59, (24,467,0): 86, 60, 59, (24,468,0): 86, 60, 59, (24,469,0): 86, 60, 59, (24,470,0): 86, 61, 57, (24,471,0): 86, 61, 57, (24,472,0): 86, 61, 56, (24,473,0): 86, 61, 56, (24,474,0): 85, 60, 53, (24,475,0): 86, 61, 54, (24,476,0): 87, 62, 55, (24,477,0): 89, 64, 57, (24,478,0): 90, 65, 58, (24,479,0): 92, 68, 58, (24,480,0): 91, 67, 57, (24,481,0): 91, 67, 55, (24,482,0): 91, 67, 55, (24,483,0): 91, 67, 55, (24,484,0): 91, 67, 55, (24,485,0): 91, 67, 55, (24,486,0): 91, 67, 57, (24,487,0): 91, 67, 57, (24,488,0): 89, 64, 57, (24,489,0): 90, 65, 58, (24,490,0): 91, 66, 61, (24,491,0): 91, 66, 61, (24,492,0): 90, 65, 60, (24,493,0): 89, 64, 59, (24,494,0): 88, 63, 58, (24,495,0): 87, 62, 57, (24,496,0): 92, 67, 63, (24,497,0): 93, 68, 64, (24,498,0): 94, 69, 65, (24,499,0): 95, 70, 66, (24,500,0): 95, 70, 66, (24,501,0): 94, 69, 65, (24,502,0): 93, 68, 64, (24,503,0): 92, 67, 63, (24,504,0): 95, 70, 66, (24,505,0): 95, 70, 66, (24,506,0): 96, 71, 67, (24,507,0): 96, 71, 67, (24,508,0): 97, 72, 68, (24,509,0): 97, 72, 68, (24,510,0): 98, 73, 69, (24,511,0): 98, 73, 69, (24,512,0): 95, 70, 65, (24,513,0): 96, 71, 66, (24,514,0): 97, 72, 68, (24,515,0): 98, 73, 69, (24,516,0): 98, 73, 69, (24,517,0): 97, 72, 68, (24,518,0): 96, 70, 69, (24,519,0): 95, 69, 68, (24,520,0): 96, 70, 71, (24,521,0): 94, 68, 69, (24,522,0): 92, 66, 67, (24,523,0): 92, 66, 67, (24,524,0): 92, 66, 69, (24,525,0): 90, 64, 67, (24,526,0): 86, 60, 63, (24,527,0): 82, 57, 60, (24,528,0): 82, 58, 58, (24,529,0): 80, 59, 58, (24,530,0): 81, 59, 61, (24,531,0): 81, 59, 61, (24,532,0): 82, 60, 62, (24,533,0): 82, 60, 62, (24,534,0): 83, 61, 64, (24,535,0): 83, 61, 64, (24,536,0): 82, 59, 65, (24,537,0): 80, 57, 63, (24,538,0): 76, 53, 59, (24,539,0): 72, 49, 55, (24,540,0): 70, 47, 55, (24,541,0): 70, 47, 55, (24,542,0): 70, 47, 55, (24,543,0): 71, 48, 56, (24,544,0): 70, 49, 56, (24,545,0): 70, 51, 57, (24,546,0): 72, 53, 59, (24,547,0): 73, 54, 60, (24,548,0): 74, 53, 58, (24,549,0): 74, 53, 58, (24,550,0): 75, 52, 58, (24,551,0): 74, 51, 57, (24,552,0): 74, 52, 55, (24,553,0): 74, 52, 55, (24,554,0): 76, 51, 54, (24,555,0): 76, 51, 54, (24,556,0): 77, 51, 54, (24,557,0): 77, 51, 54, (24,558,0): 78, 52, 53, (24,559,0): 80, 51, 53, (24,560,0): 83, 51, 52, (24,561,0): 83, 51, 52, (24,562,0): 84, 52, 55, (24,563,0): 85, 53, 56, (24,564,0): 86, 54, 57, (24,565,0): 86, 56, 58, (24,566,0): 87, 56, 61, (24,567,0): 87, 56, 61, (24,568,0): 84, 55, 60, (24,569,0): 83, 54, 59, (24,570,0): 81, 52, 57, (24,571,0): 78, 51, 56, (24,572,0): 76, 49, 56, (24,573,0): 74, 47, 54, (24,574,0): 71, 46, 52, (24,575,0): 71, 46, 50, (24,576,0): 68, 46, 48, (24,577,0): 68, 46, 48, (24,578,0): 69, 47, 49, (24,579,0): 69, 47, 49, (24,580,0): 69, 47, 49, (24,581,0): 68, 46, 48, (24,582,0): 67, 45, 47, (24,583,0): 66, 44, 46, (24,584,0): 65, 43, 45, (24,585,0): 66, 44, 46, (24,586,0): 68, 46, 48, (24,587,0): 69, 47, 49, (24,588,0): 69, 47, 49, (24,589,0): 68, 46, 48, (24,590,0): 66, 44, 46, (24,591,0): 65, 43, 45, (24,592,0): 73, 51, 53, (24,593,0): 73, 51, 53, (24,594,0): 72, 50, 52, (24,595,0): 70, 48, 50, (24,596,0): 69, 47, 49, (24,597,0): 68, 46, 48, (24,598,0): 67, 45, 47, (24,599,0): 66, 44, 46, (25,0,0): 32, 26, 38, (25,1,0): 32, 26, 38, (25,2,0): 34, 26, 39, (25,3,0): 34, 26, 39, (25,4,0): 37, 27, 38, (25,5,0): 37, 27, 38, (25,6,0): 39, 27, 39, (25,7,0): 39, 27, 39, (25,8,0): 43, 30, 40, (25,9,0): 45, 29, 40, (25,10,0): 46, 29, 39, (25,11,0): 47, 30, 40, (25,12,0): 49, 29, 40, (25,13,0): 50, 30, 41, (25,14,0): 51, 30, 39, (25,15,0): 52, 31, 40, (25,16,0): 52, 30, 43, (25,17,0): 52, 30, 43, (25,18,0): 51, 29, 42, (25,19,0): 51, 29, 42, (25,20,0): 49, 29, 41, (25,21,0): 49, 29, 41, (25,22,0): 48, 28, 40, (25,23,0): 48, 28, 40, (25,24,0): 46, 28, 40, (25,25,0): 46, 28, 40, (25,26,0): 45, 29, 40, (25,27,0): 45, 29, 40, (25,28,0): 45, 29, 40, (25,29,0): 45, 29, 40, (25,30,0): 43, 30, 40, (25,31,0): 43, 30, 40, (25,32,0): 42, 28, 43, (25,33,0): 42, 28, 43, (25,34,0): 42, 28, 43, (25,35,0): 42, 28, 43, (25,36,0): 42, 28, 43, (25,37,0): 42, 28, 43, (25,38,0): 42, 28, 43, (25,39,0): 42, 28, 43, (25,40,0): 42, 28, 43, (25,41,0): 42, 28, 43, (25,42,0): 44, 30, 45, (25,43,0): 44, 30, 45, (25,44,0): 44, 30, 45, (25,45,0): 44, 30, 45, (25,46,0): 42, 28, 43, (25,47,0): 42, 28, 43, (25,48,0): 46, 29, 45, (25,49,0): 47, 29, 45, (25,50,0): 47, 29, 45, (25,51,0): 47, 29, 45, (25,52,0): 47, 29, 45, (25,53,0): 47, 29, 45, (25,54,0): 47, 29, 45, (25,55,0): 47, 29, 45, (25,56,0): 47, 29, 45, (25,57,0): 47, 29, 45, (25,58,0): 46, 28, 44, (25,59,0): 46, 28, 44, (25,60,0): 45, 27, 43, (25,61,0): 45, 27, 43, (25,62,0): 45, 27, 43, (25,63,0): 44, 26, 42, (25,64,0): 43, 26, 42, (25,65,0): 42, 25, 41, (25,66,0): 42, 25, 41, (25,67,0): 42, 25, 41, (25,68,0): 41, 24, 40, (25,69,0): 41, 24, 40, (25,70,0): 41, 24, 40, (25,71,0): 41, 24, 40, (25,72,0): 40, 23, 39, (25,73,0): 40, 23, 39, (25,74,0): 40, 23, 39, (25,75,0): 40, 23, 39, (25,76,0): 40, 23, 39, (25,77,0): 40, 23, 39, (25,78,0): 40, 23, 39, (25,79,0): 40, 23, 39, (25,80,0): 42, 25, 44, (25,81,0): 40, 23, 42, (25,82,0): 39, 22, 41, (25,83,0): 40, 23, 42, (25,84,0): 42, 25, 44, (25,85,0): 42, 25, 44, (25,86,0): 39, 22, 41, (25,87,0): 36, 19, 38, (25,88,0): 36, 19, 38, (25,89,0): 36, 19, 38, (25,90,0): 35, 18, 37, (25,91,0): 35, 18, 37, (25,92,0): 34, 17, 36, (25,93,0): 34, 17, 36, (25,94,0): 33, 16, 35, (25,95,0): 31, 16, 35, (25,96,0): 30, 17, 37, (25,97,0): 30, 17, 37, (25,98,0): 30, 17, 37, (25,99,0): 30, 17, 37, (25,100,0): 30, 17, 37, (25,101,0): 30, 17, 37, (25,102,0): 30, 17, 37, (25,103,0): 30, 17, 37, (25,104,0): 31, 18, 38, (25,105,0): 31, 18, 38, (25,106,0): 31, 18, 38, (25,107,0): 31, 18, 38, (25,108,0): 31, 18, 38, (25,109,0): 31, 18, 38, (25,110,0): 31, 18, 38, (25,111,0): 30, 18, 38, (25,112,0): 25, 17, 40, (25,113,0): 22, 19, 40, (25,114,0): 23, 18, 40, (25,115,0): 22, 19, 40, (25,116,0): 22, 19, 40, (25,117,0): 21, 19, 40, (25,118,0): 22, 19, 40, (25,119,0): 21, 19, 40, (25,120,0): 21, 19, 40, (25,121,0): 19, 20, 40, (25,122,0): 20, 21, 41, (25,123,0): 19, 22, 41, (25,124,0): 21, 22, 42, (25,125,0): 20, 23, 42, (25,126,0): 20, 23, 42, (25,127,0): 21, 24, 43, (25,128,0): 24, 22, 43, (25,129,0): 25, 22, 43, (25,130,0): 25, 22, 43, (25,131,0): 26, 23, 44, (25,132,0): 27, 22, 44, (25,133,0): 28, 23, 45, (25,134,0): 28, 23, 45, (25,135,0): 28, 23, 45, (25,136,0): 31, 23, 46, (25,137,0): 31, 23, 46, (25,138,0): 32, 22, 46, (25,139,0): 32, 22, 46, (25,140,0): 32, 22, 46, (25,141,0): 32, 22, 46, (25,142,0): 34, 22, 46, (25,143,0): 32, 22, 46, (25,144,0): 32, 22, 46, (25,145,0): 31, 23, 46, (25,146,0): 31, 23, 46, (25,147,0): 31, 23, 46, (25,148,0): 31, 23, 46, (25,149,0): 31, 23, 46, (25,150,0): 31, 23, 46, (25,151,0): 31, 23, 46, (25,152,0): 29, 21, 44, (25,153,0): 29, 21, 44, (25,154,0): 29, 21, 44, (25,155,0): 29, 21, 44, (25,156,0): 29, 21, 44, (25,157,0): 29, 21, 44, (25,158,0): 29, 21, 44, (25,159,0): 27, 22, 44, (25,160,0): 27, 22, 44, (25,161,0): 26, 23, 44, (25,162,0): 26, 23, 44, (25,163,0): 26, 23, 44, (25,164,0): 27, 22, 44, (25,165,0): 27, 22, 44, (25,166,0): 27, 22, 44, (25,167,0): 27, 22, 44, (25,168,0): 31, 23, 46, (25,169,0): 31, 23, 46, (25,170,0): 32, 22, 46, (25,171,0): 32, 22, 46, (25,172,0): 32, 22, 46, (25,173,0): 32, 22, 46, (25,174,0): 34, 22, 46, (25,175,0): 32, 22, 46, (25,176,0): 33, 23, 47, (25,177,0): 32, 24, 47, (25,178,0): 32, 24, 47, (25,179,0): 32, 24, 47, (25,180,0): 32, 24, 47, (25,181,0): 32, 24, 47, (25,182,0): 32, 24, 47, (25,183,0): 32, 24, 47, (25,184,0): 32, 24, 47, (25,185,0): 32, 24, 47, (25,186,0): 32, 24, 47, (25,187,0): 32, 24, 47, (25,188,0): 32, 24, 47, (25,189,0): 32, 24, 47, (25,190,0): 32, 24, 47, (25,191,0): 32, 24, 45, (25,192,0): 33, 28, 48, (25,193,0): 33, 29, 46, (25,194,0): 35, 28, 46, (25,195,0): 35, 28, 46, (25,196,0): 35, 28, 46, (25,197,0): 35, 28, 46, (25,198,0): 36, 27, 46, (25,199,0): 36, 27, 46, (25,200,0): 39, 27, 47, (25,201,0): 40, 28, 48, (25,202,0): 42, 30, 50, (25,203,0): 43, 31, 51, (25,204,0): 44, 31, 51, (25,205,0): 43, 30, 50, (25,206,0): 41, 28, 48, (25,207,0): 41, 26, 47, (25,208,0): 46, 29, 48, (25,209,0): 46, 29, 48, (25,210,0): 46, 29, 48, (25,211,0): 45, 28, 47, (25,212,0): 45, 28, 47, (25,213,0): 45, 28, 47, (25,214,0): 45, 28, 47, (25,215,0): 45, 28, 47, (25,216,0): 47, 30, 49, (25,217,0): 47, 30, 49, (25,218,0): 47, 30, 49, (25,219,0): 47, 30, 49, (25,220,0): 47, 30, 49, (25,221,0): 47, 30, 49, (25,222,0): 47, 30, 49, (25,223,0): 47, 30, 49, (25,224,0): 46, 31, 50, (25,225,0): 45, 32, 50, (25,226,0): 45, 32, 50, (25,227,0): 44, 31, 49, (25,228,0): 44, 31, 49, (25,229,0): 43, 30, 48, (25,230,0): 43, 30, 48, (25,231,0): 42, 29, 47, (25,232,0): 40, 27, 45, (25,233,0): 39, 26, 44, (25,234,0): 39, 26, 44, (25,235,0): 38, 25, 43, (25,236,0): 39, 26, 44, (25,237,0): 40, 27, 45, (25,238,0): 41, 28, 46, (25,239,0): 42, 29, 46, (25,240,0): 44, 31, 48, (25,241,0): 44, 32, 46, (25,242,0): 44, 32, 46, (25,243,0): 45, 33, 47, (25,244,0): 45, 33, 47, (25,245,0): 46, 34, 48, (25,246,0): 47, 33, 48, (25,247,0): 47, 33, 48, (25,248,0): 51, 34, 50, (25,249,0): 51, 34, 50, (25,250,0): 51, 33, 49, (25,251,0): 51, 33, 49, (25,252,0): 50, 32, 48, (25,253,0): 50, 32, 48, (25,254,0): 49, 31, 47, (25,255,0): 49, 31, 47, (25,256,0): 48, 30, 44, (25,257,0): 49, 31, 45, (25,258,0): 51, 33, 45, (25,259,0): 53, 35, 47, (25,260,0): 56, 36, 48, (25,261,0): 56, 36, 48, (25,262,0): 56, 36, 47, (25,263,0): 55, 35, 46, (25,264,0): 56, 35, 44, (25,265,0): 57, 36, 45, (25,266,0): 59, 36, 46, (25,267,0): 61, 38, 48, (25,268,0): 63, 40, 48, (25,269,0): 65, 42, 50, (25,270,0): 68, 42, 51, (25,271,0): 69, 43, 52, (25,272,0): 70, 43, 52, (25,273,0): 70, 43, 52, (25,274,0): 71, 44, 53, (25,275,0): 72, 45, 54, (25,276,0): 75, 45, 53, (25,277,0): 76, 46, 54, (25,278,0): 78, 47, 55, (25,279,0): 78, 47, 55, (25,280,0): 78, 47, 53, (25,281,0): 78, 47, 53, (25,282,0): 80, 48, 53, (25,283,0): 81, 49, 54, (25,284,0): 84, 49, 55, (25,285,0): 85, 50, 56, (25,286,0): 86, 51, 55, (25,287,0): 86, 51, 55, (25,288,0): 90, 53, 60, (25,289,0): 91, 54, 61, (25,290,0): 91, 55, 59, (25,291,0): 92, 56, 60, (25,292,0): 92, 56, 60, (25,293,0): 93, 57, 59, (25,294,0): 93, 57, 59, (25,295,0): 93, 57, 59, (25,296,0): 92, 56, 56, (25,297,0): 94, 58, 58, (25,298,0): 96, 60, 60, (25,299,0): 96, 61, 59, (25,300,0): 95, 60, 58, (25,301,0): 96, 61, 59, (25,302,0): 100, 65, 63, (25,303,0): 106, 68, 65, (25,304,0): 112, 69, 63, (25,305,0): 115, 71, 62, (25,306,0): 122, 76, 63, (25,307,0): 127, 80, 62, (25,308,0): 133, 85, 63, (25,309,0): 136, 89, 63, (25,310,0): 140, 90, 63, (25,311,0): 141, 91, 64, (25,312,0): 141, 91, 66, (25,313,0): 139, 89, 66, (25,314,0): 134, 86, 64, (25,315,0): 132, 84, 61, (25,316,0): 130, 84, 60, (25,317,0): 129, 85, 58, (25,318,0): 128, 87, 55, (25,319,0): 130, 87, 55, (25,320,0): 131, 84, 56, (25,321,0): 131, 84, 56, (25,322,0): 133, 86, 58, (25,323,0): 133, 88, 59, (25,324,0): 135, 90, 61, (25,325,0): 137, 92, 63, (25,326,0): 138, 93, 64, (25,327,0): 138, 94, 65, (25,328,0): 138, 97, 67, (25,329,0): 137, 96, 66, (25,330,0): 136, 97, 66, (25,331,0): 136, 97, 66, (25,332,0): 133, 97, 65, (25,333,0): 133, 97, 65, (25,334,0): 132, 96, 64, (25,335,0): 132, 95, 66, (25,336,0): 129, 94, 66, (25,337,0): 127, 91, 65, (25,338,0): 126, 90, 66, (25,339,0): 124, 88, 64, (25,340,0): 123, 87, 63, (25,341,0): 124, 88, 64, (25,342,0): 125, 89, 67, (25,343,0): 126, 90, 68, (25,344,0): 125, 88, 69, (25,345,0): 124, 87, 68, (25,346,0): 122, 85, 66, (25,347,0): 121, 84, 65, (25,348,0): 120, 83, 65, (25,349,0): 121, 84, 66, (25,350,0): 122, 85, 67, (25,351,0): 122, 85, 66, (25,352,0): 124, 83, 63, (25,353,0): 125, 84, 64, (25,354,0): 126, 85, 67, (25,355,0): 126, 85, 67, (25,356,0): 126, 84, 68, (25,357,0): 126, 84, 70, (25,358,0): 125, 83, 71, (25,359,0): 124, 82, 70, (25,360,0): 125, 83, 71, (25,361,0): 126, 84, 70, (25,362,0): 128, 86, 72, (25,363,0): 130, 88, 72, (25,364,0): 132, 91, 73, (25,365,0): 134, 93, 73, (25,366,0): 136, 95, 75, (25,367,0): 136, 95, 75, (25,368,0): 139, 96, 77, (25,369,0): 139, 96, 77, (25,370,0): 139, 96, 77, (25,371,0): 139, 96, 77, (25,372,0): 139, 96, 79, (25,373,0): 140, 97, 80, (25,374,0): 139, 97, 81, (25,375,0): 139, 97, 81, (25,376,0): 137, 95, 79, (25,377,0): 134, 95, 78, (25,378,0): 133, 94, 79, (25,379,0): 130, 93, 77, (25,380,0): 129, 91, 78, (25,381,0): 130, 92, 79, (25,382,0): 130, 92, 79, (25,383,0): 131, 93, 80, (25,384,0): 132, 94, 81, (25,385,0): 132, 94, 81, (25,386,0): 133, 93, 81, (25,387,0): 136, 94, 80, (25,388,0): 137, 93, 80, (25,389,0): 138, 94, 81, (25,390,0): 141, 93, 79, (25,391,0): 142, 93, 79, (25,392,0): 148, 96, 83, (25,393,0): 146, 93, 79, (25,394,0): 148, 90, 78, (25,395,0): 154, 94, 83, (25,396,0): 163, 101, 88, (25,397,0): 167, 103, 91, (25,398,0): 163, 99, 87, (25,399,0): 156, 97, 83, (25,400,0): 141, 92, 77, (25,401,0): 140, 94, 79, (25,402,0): 140, 94, 79, (25,403,0): 140, 94, 78, (25,404,0): 139, 93, 77, (25,405,0): 137, 92, 73, (25,406,0): 135, 88, 70, (25,407,0): 134, 87, 69, (25,408,0): 138, 89, 72, (25,409,0): 139, 91, 71, (25,410,0): 139, 91, 71, (25,411,0): 141, 90, 69, (25,412,0): 140, 89, 68, (25,413,0): 138, 87, 66, (25,414,0): 136, 85, 64, (25,415,0): 133, 85, 63, (25,416,0): 130, 83, 65, (25,417,0): 127, 81, 65, (25,418,0): 122, 79, 62, (25,419,0): 119, 76, 60, (25,420,0): 115, 72, 56, (25,421,0): 111, 69, 55, (25,422,0): 107, 68, 53, (25,423,0): 106, 66, 54, (25,424,0): 106, 68, 57, (25,425,0): 104, 67, 58, (25,426,0): 100, 66, 56, (25,427,0): 98, 64, 55, (25,428,0): 95, 62, 55, (25,429,0): 93, 60, 53, (25,430,0): 90, 60, 52, (25,431,0): 90, 59, 54, (25,432,0): 90, 59, 54, (25,433,0): 89, 60, 56, (25,434,0): 89, 60, 56, (25,435,0): 89, 60, 56, (25,436,0): 89, 60, 56, (25,437,0): 89, 60, 56, (25,438,0): 89, 60, 56, (25,439,0): 89, 60, 56, (25,440,0): 88, 59, 55, (25,441,0): 88, 59, 55, (25,442,0): 88, 59, 55, (25,443,0): 89, 60, 56, (25,444,0): 89, 60, 56, (25,445,0): 89, 60, 56, (25,446,0): 89, 60, 56, (25,447,0): 89, 60, 56, (25,448,0): 89, 61, 58, (25,449,0): 88, 63, 59, (25,450,0): 88, 63, 59, (25,451,0): 88, 63, 59, (25,452,0): 87, 62, 58, (25,453,0): 85, 60, 56, (25,454,0): 83, 58, 54, (25,455,0): 82, 57, 53, (25,456,0): 85, 60, 56, (25,457,0): 84, 59, 55, (25,458,0): 83, 58, 54, (25,459,0): 82, 57, 53, (25,460,0): 82, 57, 53, (25,461,0): 83, 58, 54, (25,462,0): 84, 59, 55, (25,463,0): 85, 60, 56, (25,464,0): 86, 60, 59, (25,465,0): 86, 60, 59, (25,466,0): 86, 60, 59, (25,467,0): 86, 60, 59, (25,468,0): 86, 60, 59, (25,469,0): 86, 60, 59, (25,470,0): 86, 61, 57, (25,471,0): 86, 61, 57, (25,472,0): 86, 61, 56, (25,473,0): 86, 61, 56, (25,474,0): 85, 60, 53, (25,475,0): 86, 61, 54, (25,476,0): 87, 62, 55, (25,477,0): 89, 64, 57, (25,478,0): 90, 65, 58, (25,479,0): 92, 68, 58, (25,480,0): 92, 68, 56, (25,481,0): 92, 68, 56, (25,482,0): 92, 68, 56, (25,483,0): 92, 68, 56, (25,484,0): 92, 68, 56, (25,485,0): 92, 68, 56, (25,486,0): 92, 68, 58, (25,487,0): 92, 68, 58, (25,488,0): 91, 66, 59, (25,489,0): 91, 66, 59, (25,490,0): 92, 67, 62, (25,491,0): 92, 67, 62, (25,492,0): 92, 67, 62, (25,493,0): 90, 65, 60, (25,494,0): 89, 64, 59, (25,495,0): 88, 63, 58, (25,496,0): 92, 67, 63, (25,497,0): 93, 68, 64, (25,498,0): 94, 69, 65, (25,499,0): 95, 70, 66, (25,500,0): 95, 70, 66, (25,501,0): 94, 69, 65, (25,502,0): 93, 68, 64, (25,503,0): 92, 67, 63, (25,504,0): 95, 70, 66, (25,505,0): 95, 70, 66, (25,506,0): 95, 70, 66, (25,507,0): 96, 71, 67, (25,508,0): 96, 71, 67, (25,509,0): 97, 72, 68, (25,510,0): 97, 72, 68, (25,511,0): 98, 73, 69, (25,512,0): 95, 70, 65, (25,513,0): 96, 71, 66, (25,514,0): 97, 72, 68, (25,515,0): 98, 73, 69, (25,516,0): 98, 73, 69, (25,517,0): 97, 72, 68, (25,518,0): 96, 70, 69, (25,519,0): 95, 69, 68, (25,520,0): 96, 70, 71, (25,521,0): 94, 68, 69, (25,522,0): 92, 66, 67, (25,523,0): 92, 66, 67, (25,524,0): 92, 66, 69, (25,525,0): 91, 65, 68, (25,526,0): 87, 61, 64, (25,527,0): 82, 57, 60, (25,528,0): 81, 57, 57, (25,529,0): 80, 59, 58, (25,530,0): 80, 58, 60, (25,531,0): 81, 59, 61, (25,532,0): 82, 60, 62, (25,533,0): 83, 61, 63, (25,534,0): 84, 62, 65, (25,535,0): 84, 62, 65, (25,536,0): 82, 59, 65, (25,537,0): 80, 57, 63, (25,538,0): 76, 53, 59, (25,539,0): 72, 49, 55, (25,540,0): 70, 47, 55, (25,541,0): 70, 47, 55, (25,542,0): 70, 47, 55, (25,543,0): 70, 49, 56, (25,544,0): 69, 50, 56, (25,545,0): 70, 51, 57, (25,546,0): 71, 52, 58, (25,547,0): 73, 54, 60, (25,548,0): 74, 53, 58, (25,549,0): 74, 53, 58, (25,550,0): 74, 51, 57, (25,551,0): 74, 51, 57, (25,552,0): 73, 51, 54, (25,553,0): 74, 52, 55, (25,554,0): 76, 51, 54, (25,555,0): 76, 51, 54, (25,556,0): 78, 52, 55, (25,557,0): 78, 52, 55, (25,558,0): 78, 52, 53, (25,559,0): 78, 52, 53, (25,560,0): 83, 53, 53, (25,561,0): 84, 52, 53, (25,562,0): 84, 52, 55, (25,563,0): 85, 53, 56, (25,564,0): 84, 54, 56, (25,565,0): 85, 55, 57, (25,566,0): 85, 54, 59, (25,567,0): 84, 55, 59, (25,568,0): 82, 53, 58, (25,569,0): 79, 52, 57, (25,570,0): 78, 51, 56, (25,571,0): 76, 49, 54, (25,572,0): 74, 47, 54, (25,573,0): 73, 46, 53, (25,574,0): 71, 46, 52, (25,575,0): 70, 45, 51, (25,576,0): 68, 46, 49, (25,577,0): 68, 46, 48, (25,578,0): 68, 46, 48, (25,579,0): 68, 46, 48, (25,580,0): 68, 46, 48, (25,581,0): 68, 46, 48, (25,582,0): 67, 45, 47, (25,583,0): 67, 45, 47, (25,584,0): 66, 44, 46, (25,585,0): 66, 44, 46, (25,586,0): 67, 45, 47, (25,587,0): 67, 45, 47, (25,588,0): 67, 45, 47, (25,589,0): 67, 45, 47, (25,590,0): 66, 44, 46, (25,591,0): 66, 44, 46, (25,592,0): 73, 51, 53, (25,593,0): 73, 51, 53, (25,594,0): 72, 50, 52, (25,595,0): 70, 48, 50, (25,596,0): 69, 47, 49, (25,597,0): 68, 46, 48, (25,598,0): 67, 45, 47, (25,599,0): 67, 45, 47, (26,0,0): 32, 26, 38, (26,1,0): 32, 26, 38, (26,2,0): 33, 27, 39, (26,3,0): 33, 27, 39, (26,4,0): 35, 27, 38, (26,5,0): 37, 27, 38, (26,6,0): 39, 27, 39, (26,7,0): 39, 27, 39, (26,8,0): 42, 29, 39, (26,9,0): 45, 29, 40, (26,10,0): 46, 29, 39, (26,11,0): 47, 30, 40, (26,12,0): 49, 29, 40, (26,13,0): 50, 30, 41, (26,14,0): 50, 30, 39, (26,15,0): 50, 30, 39, (26,16,0): 52, 30, 43, (26,17,0): 52, 30, 43, (26,18,0): 51, 29, 42, (26,19,0): 51, 29, 42, (26,20,0): 49, 29, 41, (26,21,0): 49, 29, 41, (26,22,0): 48, 28, 40, (26,23,0): 48, 28, 40, (26,24,0): 47, 29, 41, (26,25,0): 47, 29, 41, (26,26,0): 46, 30, 41, (26,27,0): 46, 30, 41, (26,28,0): 46, 30, 41, (26,29,0): 46, 30, 41, (26,30,0): 44, 31, 41, (26,31,0): 44, 31, 41, (26,32,0): 41, 29, 43, (26,33,0): 41, 29, 43, (26,34,0): 41, 29, 43, (26,35,0): 41, 29, 43, (26,36,0): 41, 29, 43, (26,37,0): 41, 29, 43, (26,38,0): 41, 29, 43, (26,39,0): 41, 29, 43, (26,40,0): 41, 29, 43, (26,41,0): 41, 29, 43, (26,42,0): 43, 31, 45, (26,43,0): 43, 31, 45, (26,44,0): 43, 31, 45, (26,45,0): 43, 31, 45, (26,46,0): 41, 29, 43, (26,47,0): 42, 28, 43, (26,48,0): 44, 27, 43, (26,49,0): 45, 27, 43, (26,50,0): 45, 27, 43, (26,51,0): 45, 27, 43, (26,52,0): 45, 27, 43, (26,53,0): 45, 27, 43, (26,54,0): 45, 27, 43, (26,55,0): 45, 27, 43, (26,56,0): 47, 29, 45, (26,57,0): 46, 28, 44, (26,58,0): 46, 28, 44, (26,59,0): 46, 28, 44, (26,60,0): 45, 27, 43, (26,61,0): 44, 26, 42, (26,62,0): 44, 26, 42, (26,63,0): 44, 26, 42, (26,64,0): 43, 26, 42, (26,65,0): 43, 26, 42, (26,66,0): 42, 25, 41, (26,67,0): 42, 25, 41, (26,68,0): 41, 24, 40, (26,69,0): 40, 23, 39, (26,70,0): 40, 23, 39, (26,71,0): 40, 23, 39, (26,72,0): 40, 23, 39, (26,73,0): 40, 23, 39, (26,74,0): 40, 23, 39, (26,75,0): 40, 23, 39, (26,76,0): 40, 23, 39, (26,77,0): 40, 23, 39, (26,78,0): 40, 23, 39, (26,79,0): 40, 23, 39, (26,80,0): 43, 26, 45, (26,81,0): 40, 23, 42, (26,82,0): 38, 21, 40, (26,83,0): 38, 21, 40, (26,84,0): 39, 22, 41, (26,85,0): 39, 22, 41, (26,86,0): 39, 22, 41, (26,87,0): 37, 20, 39, (26,88,0): 36, 19, 38, (26,89,0): 36, 19, 38, (26,90,0): 35, 18, 37, (26,91,0): 35, 18, 37, (26,92,0): 34, 17, 36, (26,93,0): 34, 17, 36, (26,94,0): 33, 16, 35, (26,95,0): 31, 16, 35, (26,96,0): 30, 17, 37, (26,97,0): 29, 17, 37, (26,98,0): 29, 17, 37, (26,99,0): 29, 17, 37, (26,100,0): 29, 17, 37, (26,101,0): 29, 17, 37, (26,102,0): 29, 17, 37, (26,103,0): 29, 17, 37, (26,104,0): 30, 18, 38, (26,105,0): 30, 18, 38, (26,106,0): 30, 18, 38, (26,107,0): 30, 18, 38, (26,108,0): 30, 18, 38, (26,109,0): 30, 18, 38, (26,110,0): 30, 18, 38, (26,111,0): 30, 18, 38, (26,112,0): 26, 18, 41, (26,113,0): 24, 19, 41, (26,114,0): 26, 18, 41, (26,115,0): 24, 19, 41, (26,116,0): 24, 19, 41, (26,117,0): 23, 20, 41, (26,118,0): 24, 19, 41, (26,119,0): 23, 20, 41, (26,120,0): 22, 19, 40, (26,121,0): 22, 20, 41, (26,122,0): 22, 20, 41, (26,123,0): 20, 21, 41, (26,124,0): 23, 21, 42, (26,125,0): 22, 23, 43, (26,126,0): 22, 23, 43, (26,127,0): 22, 23, 43, (26,128,0): 24, 22, 43, (26,129,0): 25, 22, 43, (26,130,0): 25, 22, 43, (26,131,0): 26, 23, 44, (26,132,0): 27, 22, 44, (26,133,0): 28, 23, 45, (26,134,0): 28, 23, 45, (26,135,0): 28, 23, 45, (26,136,0): 31, 23, 46, (26,137,0): 31, 23, 46, (26,138,0): 32, 22, 46, (26,139,0): 32, 22, 46, (26,140,0): 32, 22, 46, (26,141,0): 32, 22, 46, (26,142,0): 34, 22, 46, (26,143,0): 32, 22, 46, (26,144,0): 33, 23, 47, (26,145,0): 32, 24, 47, (26,146,0): 32, 24, 47, (26,147,0): 32, 24, 47, (26,148,0): 32, 24, 47, (26,149,0): 32, 24, 47, (26,150,0): 32, 24, 47, (26,151,0): 32, 24, 47, (26,152,0): 29, 21, 44, (26,153,0): 29, 21, 44, (26,154,0): 29, 21, 44, (26,155,0): 29, 21, 44, (26,156,0): 29, 21, 44, (26,157,0): 29, 21, 44, (26,158,0): 29, 21, 44, (26,159,0): 27, 22, 44, (26,160,0): 27, 22, 44, (26,161,0): 26, 23, 44, (26,162,0): 26, 23, 44, (26,163,0): 26, 23, 44, (26,164,0): 27, 22, 44, (26,165,0): 27, 22, 44, (26,166,0): 27, 22, 44, (26,167,0): 27, 22, 44, (26,168,0): 31, 23, 46, (26,169,0): 31, 23, 46, (26,170,0): 32, 22, 46, (26,171,0): 32, 22, 46, (26,172,0): 32, 22, 46, (26,173,0): 32, 22, 46, (26,174,0): 34, 22, 46, (26,175,0): 32, 22, 46, (26,176,0): 33, 23, 47, (26,177,0): 32, 24, 47, (26,178,0): 32, 24, 47, (26,179,0): 32, 24, 47, (26,180,0): 32, 24, 47, (26,181,0): 32, 24, 47, (26,182,0): 32, 24, 47, (26,183,0): 32, 24, 47, (26,184,0): 32, 24, 47, (26,185,0): 32, 24, 47, (26,186,0): 32, 24, 47, (26,187,0): 32, 24, 47, (26,188,0): 32, 24, 47, (26,189,0): 32, 24, 47, (26,190,0): 32, 24, 47, (26,191,0): 32, 24, 45, (26,192,0): 33, 28, 48, (26,193,0): 33, 29, 46, (26,194,0): 35, 28, 46, (26,195,0): 35, 28, 46, (26,196,0): 35, 28, 46, (26,197,0): 35, 28, 46, (26,198,0): 36, 27, 46, (26,199,0): 36, 27, 46, (26,200,0): 40, 28, 48, (26,201,0): 41, 29, 49, (26,202,0): 41, 29, 49, (26,203,0): 42, 30, 50, (26,204,0): 43, 30, 50, (26,205,0): 42, 29, 49, (26,206,0): 42, 29, 49, (26,207,0): 42, 27, 48, (26,208,0): 46, 29, 48, (26,209,0): 47, 28, 48, (26,210,0): 47, 28, 48, (26,211,0): 47, 28, 48, (26,212,0): 47, 28, 48, (26,213,0): 47, 28, 48, (26,214,0): 47, 28, 48, (26,215,0): 47, 28, 48, (26,216,0): 48, 29, 49, (26,217,0): 48, 29, 49, (26,218,0): 48, 29, 49, (26,219,0): 48, 29, 49, (26,220,0): 48, 29, 49, (26,221,0): 48, 29, 49, (26,222,0): 48, 29, 49, (26,223,0): 47, 30, 49, (26,224,0): 47, 32, 51, (26,225,0): 45, 32, 50, (26,226,0): 45, 32, 50, (26,227,0): 44, 31, 49, (26,228,0): 44, 31, 49, (26,229,0): 43, 30, 48, (26,230,0): 43, 30, 48, (26,231,0): 43, 30, 48, (26,232,0): 43, 30, 48, (26,233,0): 42, 29, 47, (26,234,0): 40, 27, 45, (26,235,0): 39, 26, 44, (26,236,0): 39, 26, 44, (26,237,0): 39, 26, 44, (26,238,0): 40, 27, 45, (26,239,0): 41, 28, 45, (26,240,0): 44, 31, 48, (26,241,0): 44, 32, 46, (26,242,0): 44, 32, 46, (26,243,0): 45, 33, 47, (26,244,0): 45, 33, 47, (26,245,0): 46, 34, 48, (26,246,0): 47, 33, 48, (26,247,0): 47, 33, 48, (26,248,0): 51, 34, 50, (26,249,0): 51, 34, 50, (26,250,0): 51, 33, 49, (26,251,0): 51, 33, 49, (26,252,0): 50, 32, 48, (26,253,0): 50, 32, 48, (26,254,0): 49, 31, 47, (26,255,0): 49, 31, 47, (26,256,0): 48, 30, 44, (26,257,0): 49, 31, 45, (26,258,0): 51, 33, 45, (26,259,0): 53, 35, 47, (26,260,0): 56, 36, 48, (26,261,0): 56, 36, 48, (26,262,0): 56, 36, 47, (26,263,0): 55, 35, 46, (26,264,0): 57, 36, 45, (26,265,0): 58, 37, 46, (26,266,0): 60, 37, 47, (26,267,0): 61, 38, 48, (26,268,0): 63, 40, 48, (26,269,0): 64, 41, 49, (26,270,0): 67, 41, 50, (26,271,0): 68, 42, 51, (26,272,0): 70, 43, 52, (26,273,0): 72, 42, 52, (26,274,0): 73, 43, 53, (26,275,0): 74, 44, 54, (26,276,0): 76, 45, 53, (26,277,0): 77, 46, 54, (26,278,0): 78, 47, 55, (26,279,0): 78, 47, 55, (26,280,0): 80, 47, 54, (26,281,0): 80, 47, 54, (26,282,0): 83, 48, 54, (26,283,0): 84, 49, 55, (26,284,0): 85, 50, 56, (26,285,0): 86, 51, 57, (26,286,0): 88, 52, 56, (26,287,0): 88, 52, 56, (26,288,0): 93, 54, 59, (26,289,0): 93, 54, 59, (26,290,0): 93, 54, 59, (26,291,0): 94, 55, 60, (26,292,0): 94, 55, 58, (26,293,0): 95, 56, 59, (26,294,0): 95, 56, 59, (26,295,0): 96, 57, 58, (26,296,0): 95, 56, 57, (26,297,0): 97, 58, 59, (26,298,0): 99, 61, 60, (26,299,0): 98, 60, 59, (26,300,0): 98, 60, 59, (26,301,0): 99, 61, 58, (26,302,0): 103, 65, 62, (26,303,0): 108, 69, 64, (26,304,0): 113, 70, 63, (26,305,0): 117, 73, 62, (26,306,0): 123, 77, 62, (26,307,0): 129, 82, 64, (26,308,0): 134, 86, 63, (26,309,0): 138, 91, 63, (26,310,0): 142, 92, 65, (26,311,0): 144, 93, 66, (26,312,0): 144, 92, 68, (26,313,0): 140, 90, 65, (26,314,0): 135, 87, 64, (26,315,0): 132, 84, 61, (26,316,0): 130, 84, 58, (26,317,0): 130, 86, 57, (26,318,0): 130, 89, 57, (26,319,0): 133, 90, 56, (26,320,0): 133, 86, 56, (26,321,0): 135, 86, 56, (26,322,0): 137, 88, 58, (26,323,0): 136, 89, 59, (26,324,0): 138, 91, 61, (26,325,0): 138, 93, 62, (26,326,0): 139, 94, 63, (26,327,0): 139, 96, 64, (26,328,0): 138, 97, 65, (26,329,0): 138, 97, 65, (26,330,0): 137, 98, 65, (26,331,0): 136, 97, 64, (26,332,0): 133, 97, 63, (26,333,0): 133, 97, 63, (26,334,0): 132, 98, 63, (26,335,0): 131, 96, 64, (26,336,0): 129, 94, 66, (26,337,0): 128, 92, 66, (26,338,0): 127, 91, 65, (26,339,0): 126, 90, 64, (26,340,0): 125, 89, 65, (26,341,0): 125, 89, 65, (26,342,0): 126, 90, 66, (26,343,0): 126, 90, 66, (26,344,0): 125, 89, 67, (26,345,0): 125, 89, 67, (26,346,0): 123, 86, 67, (26,347,0): 122, 85, 66, (26,348,0): 122, 85, 66, (26,349,0): 122, 85, 66, (26,350,0): 122, 85, 67, (26,351,0): 123, 86, 67, (26,352,0): 125, 84, 64, (26,353,0): 125, 84, 62, (26,354,0): 126, 85, 65, (26,355,0): 127, 86, 68, (26,356,0): 127, 85, 69, (26,357,0): 126, 84, 68, (26,358,0): 125, 83, 69, (26,359,0): 125, 83, 69, (26,360,0): 126, 84, 70, (26,361,0): 127, 85, 71, (26,362,0): 128, 86, 72, (26,363,0): 130, 88, 72, (26,364,0): 132, 91, 73, (26,365,0): 134, 93, 73, (26,366,0): 136, 95, 75, (26,367,0): 137, 96, 74, (26,368,0): 140, 98, 76, (26,369,0): 142, 97, 76, (26,370,0): 142, 97, 78, (26,371,0): 142, 97, 78, (26,372,0): 140, 97, 78, (26,373,0): 140, 97, 78, (26,374,0): 140, 97, 80, (26,375,0): 139, 98, 80, (26,376,0): 137, 95, 79, (26,377,0): 135, 96, 79, (26,378,0): 133, 94, 77, (26,379,0): 132, 93, 76, (26,380,0): 131, 92, 77, (26,381,0): 132, 93, 78, (26,382,0): 131, 94, 78, (26,383,0): 132, 95, 79, (26,384,0): 134, 95, 80, (26,385,0): 134, 95, 80, (26,386,0): 136, 94, 80, (26,387,0): 137, 95, 81, (26,388,0): 138, 94, 81, (26,389,0): 139, 96, 80, (26,390,0): 142, 94, 80, (26,391,0): 144, 95, 81, (26,392,0): 149, 97, 83, (26,393,0): 148, 95, 81, (26,394,0): 150, 94, 81, (26,395,0): 156, 98, 84, (26,396,0): 163, 104, 90, (26,397,0): 168, 106, 93, (26,398,0): 166, 104, 89, (26,399,0): 160, 102, 88, (26,400,0): 144, 95, 80, (26,401,0): 143, 96, 80, (26,402,0): 144, 97, 81, (26,403,0): 143, 96, 78, (26,404,0): 142, 95, 77, (26,405,0): 141, 94, 76, (26,406,0): 140, 91, 74, (26,407,0): 139, 91, 71, (26,408,0): 145, 94, 75, (26,409,0): 145, 94, 73, (26,410,0): 146, 95, 74, (26,411,0): 147, 95, 74, (26,412,0): 145, 93, 72, (26,413,0): 144, 92, 70, (26,414,0): 142, 90, 68, (26,415,0): 140, 89, 68, (26,416,0): 130, 83, 65, (26,417,0): 129, 84, 65, (26,418,0): 128, 83, 64, (26,419,0): 124, 81, 64, (26,420,0): 121, 78, 61, (26,421,0): 117, 75, 59, (26,422,0): 111, 72, 57, (26,423,0): 109, 69, 57, (26,424,0): 105, 67, 54, (26,425,0): 103, 67, 55, (26,426,0): 101, 67, 57, (26,427,0): 100, 66, 56, (26,428,0): 97, 64, 55, (26,429,0): 96, 63, 54, (26,430,0): 95, 62, 53, (26,431,0): 93, 63, 55, (26,432,0): 92, 61, 56, (26,433,0): 92, 61, 56, (26,434,0): 92, 61, 56, (26,435,0): 92, 61, 56, (26,436,0): 92, 61, 56, (26,437,0): 92, 61, 56, (26,438,0): 92, 61, 56, (26,439,0): 92, 61, 56, (26,440,0): 90, 59, 54, (26,441,0): 90, 59, 54, (26,442,0): 89, 58, 53, (26,443,0): 89, 58, 53, (26,444,0): 89, 58, 53, (26,445,0): 89, 58, 53, (26,446,0): 89, 58, 53, (26,447,0): 88, 59, 55, (26,448,0): 87, 59, 56, (26,449,0): 86, 61, 57, (26,450,0): 87, 62, 58, (26,451,0): 87, 62, 58, (26,452,0): 87, 62, 58, (26,453,0): 86, 61, 57, (26,454,0): 85, 60, 56, (26,455,0): 84, 59, 55, (26,456,0): 85, 60, 56, (26,457,0): 84, 59, 55, (26,458,0): 83, 58, 54, (26,459,0): 82, 57, 53, (26,460,0): 82, 57, 53, (26,461,0): 83, 58, 54, (26,462,0): 84, 59, 55, (26,463,0): 85, 60, 56, (26,464,0): 86, 60, 59, (26,465,0): 86, 60, 59, (26,466,0): 86, 60, 59, (26,467,0): 86, 60, 59, (26,468,0): 86, 60, 59, (26,469,0): 86, 60, 59, (26,470,0): 86, 61, 57, (26,471,0): 86, 61, 57, (26,472,0): 86, 61, 56, (26,473,0): 86, 61, 56, (26,474,0): 85, 60, 53, (26,475,0): 86, 61, 54, (26,476,0): 87, 62, 55, (26,477,0): 89, 64, 57, (26,478,0): 90, 65, 58, (26,479,0): 92, 68, 58, (26,480,0): 94, 70, 58, (26,481,0): 94, 71, 57, (26,482,0): 94, 71, 57, (26,483,0): 94, 71, 57, (26,484,0): 94, 70, 58, (26,485,0): 94, 70, 58, (26,486,0): 94, 70, 58, (26,487,0): 94, 70, 58, (26,488,0): 93, 69, 59, (26,489,0): 93, 69, 59, (26,490,0): 94, 69, 62, (26,491,0): 94, 69, 62, (26,492,0): 93, 68, 61, (26,493,0): 92, 67, 60, (26,494,0): 91, 66, 61, (26,495,0): 90, 65, 60, (26,496,0): 92, 67, 63, (26,497,0): 93, 68, 64, (26,498,0): 94, 69, 65, (26,499,0): 95, 70, 66, (26,500,0): 95, 70, 66, (26,501,0): 94, 69, 65, (26,502,0): 93, 68, 64, (26,503,0): 92, 67, 63, (26,504,0): 94, 69, 65, (26,505,0): 95, 70, 66, (26,506,0): 95, 70, 66, (26,507,0): 96, 71, 67, (26,508,0): 96, 71, 67, (26,509,0): 97, 72, 68, (26,510,0): 97, 72, 68, (26,511,0): 97, 72, 68, (26,512,0): 95, 70, 65, (26,513,0): 96, 71, 66, (26,514,0): 97, 72, 68, (26,515,0): 98, 73, 69, (26,516,0): 98, 73, 69, (26,517,0): 97, 72, 68, (26,518,0): 96, 70, 69, (26,519,0): 95, 69, 68, (26,520,0): 96, 70, 71, (26,521,0): 94, 68, 69, (26,522,0): 92, 66, 67, (26,523,0): 92, 66, 67, (26,524,0): 93, 67, 70, (26,525,0): 92, 66, 69, (26,526,0): 88, 62, 65, (26,527,0): 83, 58, 61, (26,528,0): 81, 57, 57, (26,529,0): 79, 58, 57, (26,530,0): 80, 58, 60, (26,531,0): 82, 60, 62, (26,532,0): 83, 61, 63, (26,533,0): 84, 62, 64, (26,534,0): 85, 63, 66, (26,535,0): 86, 64, 67, (26,536,0): 82, 59, 65, (26,537,0): 80, 57, 63, (26,538,0): 76, 53, 59, (26,539,0): 72, 49, 55, (26,540,0): 70, 47, 55, (26,541,0): 70, 47, 55, (26,542,0): 70, 47, 55, (26,543,0): 70, 49, 56, (26,544,0): 69, 50, 56, (26,545,0): 68, 51, 57, (26,546,0): 71, 52, 58, (26,547,0): 72, 53, 59, (26,548,0): 73, 54, 58, (26,549,0): 73, 54, 58, (26,550,0): 73, 52, 57, (26,551,0): 72, 51, 56, (26,552,0): 73, 51, 54, (26,553,0): 73, 51, 54, (26,554,0): 74, 52, 54, (26,555,0): 74, 52, 54, (26,556,0): 77, 52, 55, (26,557,0): 78, 53, 56, (26,558,0): 78, 54, 54, (26,559,0): 79, 53, 54, (26,560,0): 85, 55, 57, (26,561,0): 85, 55, 57, (26,562,0): 84, 54, 56, (26,563,0): 84, 54, 56, (26,564,0): 84, 53, 58, (26,565,0): 83, 52, 57, (26,566,0): 82, 53, 57, (26,567,0): 82, 53, 57, (26,568,0): 80, 51, 56, (26,569,0): 77, 50, 55, (26,570,0): 76, 49, 56, (26,571,0): 73, 48, 54, (26,572,0): 72, 47, 53, (26,573,0): 70, 45, 51, (26,574,0): 69, 43, 52, (26,575,0): 69, 44, 50, (26,576,0): 68, 46, 49, (26,577,0): 68, 46, 48, (26,578,0): 68, 46, 48, (26,579,0): 68, 46, 48, (26,580,0): 68, 46, 48, (26,581,0): 68, 46, 48, (26,582,0): 68, 46, 48, (26,583,0): 68, 46, 48, (26,584,0): 67, 45, 47, (26,585,0): 67, 45, 47, (26,586,0): 66, 44, 46, (26,587,0): 66, 44, 46, (26,588,0): 66, 44, 46, (26,589,0): 66, 44, 46, (26,590,0): 67, 45, 47, (26,591,0): 67, 45, 47, (26,592,0): 73, 51, 53, (26,593,0): 72, 50, 52, (26,594,0): 72, 50, 52, (26,595,0): 71, 49, 51, (26,596,0): 70, 48, 50, (26,597,0): 69, 47, 49, (26,598,0): 68, 46, 48, (26,599,0): 68, 46, 48, (27,0,0): 32, 26, 38, (27,1,0): 32, 26, 38, (27,2,0): 33, 27, 39, (27,3,0): 33, 27, 39, (27,4,0): 35, 27, 38, (27,5,0): 35, 27, 38, (27,6,0): 38, 28, 39, (27,7,0): 39, 27, 39, (27,8,0): 42, 29, 39, (27,9,0): 42, 29, 39, (27,10,0): 44, 28, 38, (27,11,0): 46, 29, 39, (27,12,0): 49, 29, 40, (27,13,0): 49, 29, 40, (27,14,0): 49, 29, 38, (27,15,0): 50, 30, 39, (27,16,0): 52, 30, 43, (27,17,0): 52, 30, 43, (27,18,0): 51, 29, 42, (27,19,0): 51, 29, 42, (27,20,0): 49, 29, 41, (27,21,0): 49, 29, 41, (27,22,0): 48, 28, 40, (27,23,0): 48, 28, 40, (27,24,0): 47, 29, 41, (27,25,0): 47, 29, 41, (27,26,0): 46, 30, 41, (27,27,0): 46, 30, 41, (27,28,0): 46, 30, 41, (27,29,0): 46, 30, 41, (27,30,0): 44, 31, 41, (27,31,0): 44, 31, 41, (27,32,0): 41, 29, 43, (27,33,0): 41, 29, 43, (27,34,0): 41, 29, 43, (27,35,0): 41, 29, 43, (27,36,0): 41, 29, 43, (27,37,0): 41, 29, 43, (27,38,0): 41, 29, 43, (27,39,0): 41, 29, 43, (27,40,0): 41, 29, 43, (27,41,0): 41, 29, 43, (27,42,0): 43, 31, 45, (27,43,0): 43, 31, 45, (27,44,0): 43, 31, 45, (27,45,0): 43, 31, 45, (27,46,0): 41, 29, 43, (27,47,0): 42, 28, 43, (27,48,0): 44, 27, 43, (27,49,0): 45, 27, 43, (27,50,0): 45, 27, 43, (27,51,0): 45, 27, 43, (27,52,0): 45, 27, 43, (27,53,0): 45, 27, 43, (27,54,0): 45, 27, 43, (27,55,0): 45, 27, 43, (27,56,0): 46, 28, 44, (27,57,0): 46, 28, 44, (27,58,0): 46, 28, 44, (27,59,0): 45, 27, 43, (27,60,0): 45, 27, 43, (27,61,0): 44, 26, 42, (27,62,0): 44, 26, 42, (27,63,0): 43, 25, 41, (27,64,0): 43, 26, 42, (27,65,0): 43, 26, 42, (27,66,0): 42, 25, 41, (27,67,0): 41, 24, 40, (27,68,0): 40, 23, 39, (27,69,0): 39, 22, 38, (27,70,0): 39, 22, 38, (27,71,0): 38, 21, 37, (27,72,0): 39, 22, 38, (27,73,0): 39, 22, 38, (27,74,0): 39, 22, 38, (27,75,0): 39, 22, 38, (27,76,0): 39, 22, 38, (27,77,0): 39, 22, 38, (27,78,0): 39, 22, 38, (27,79,0): 39, 22, 38, (27,80,0): 42, 25, 44, (27,81,0): 40, 23, 42, (27,82,0): 37, 20, 39, (27,83,0): 36, 19, 38, (27,84,0): 36, 19, 38, (27,85,0): 37, 20, 39, (27,86,0): 38, 21, 40, (27,87,0): 38, 21, 40, (27,88,0): 36, 19, 38, (27,89,0): 36, 19, 38, (27,90,0): 35, 18, 37, (27,91,0): 35, 18, 37, (27,92,0): 34, 17, 36, (27,93,0): 34, 17, 36, (27,94,0): 33, 16, 35, (27,95,0): 31, 16, 35, (27,96,0): 29, 17, 37, (27,97,0): 27, 18, 37, (27,98,0): 29, 17, 37, (27,99,0): 27, 18, 37, (27,100,0): 29, 17, 37, (27,101,0): 27, 18, 37, (27,102,0): 29, 17, 37, (27,103,0): 27, 18, 37, (27,104,0): 31, 19, 39, (27,105,0): 29, 20, 39, (27,106,0): 31, 19, 39, (27,107,0): 29, 20, 39, (27,108,0): 31, 19, 39, (27,109,0): 29, 20, 39, (27,110,0): 31, 19, 39, (27,111,0): 29, 20, 39, (27,112,0): 28, 18, 42, (27,113,0): 27, 19, 42, (27,114,0): 28, 18, 42, (27,115,0): 27, 19, 42, (27,116,0): 27, 19, 42, (27,117,0): 27, 19, 42, (27,118,0): 27, 19, 42, (27,119,0): 25, 20, 42, (27,120,0): 24, 19, 41, (27,121,0): 23, 20, 41, (27,122,0): 23, 20, 41, (27,123,0): 23, 21, 42, (27,124,0): 24, 21, 42, (27,125,0): 24, 22, 43, (27,126,0): 24, 22, 43, (27,127,0): 25, 23, 44, (27,128,0): 25, 22, 43, (27,129,0): 25, 22, 43, (27,130,0): 25, 22, 43, (27,131,0): 26, 23, 44, (27,132,0): 27, 22, 44, (27,133,0): 28, 23, 45, (27,134,0): 28, 23, 45, (27,135,0): 28, 23, 45, (27,136,0): 31, 23, 46, (27,137,0): 31, 23, 46, (27,138,0): 32, 22, 46, (27,139,0): 32, 22, 46, (27,140,0): 32, 22, 46, (27,141,0): 32, 22, 46, (27,142,0): 34, 22, 46, (27,143,0): 32, 22, 46, (27,144,0): 33, 23, 47, (27,145,0): 32, 24, 47, (27,146,0): 32, 24, 47, (27,147,0): 32, 24, 47, (27,148,0): 32, 24, 47, (27,149,0): 32, 24, 47, (27,150,0): 32, 24, 47, (27,151,0): 32, 24, 47, (27,152,0): 29, 21, 44, (27,153,0): 29, 21, 44, (27,154,0): 29, 21, 44, (27,155,0): 29, 21, 44, (27,156,0): 29, 21, 44, (27,157,0): 29, 21, 44, (27,158,0): 29, 21, 44, (27,159,0): 27, 22, 44, (27,160,0): 27, 22, 44, (27,161,0): 26, 23, 44, (27,162,0): 26, 23, 44, (27,163,0): 26, 23, 44, (27,164,0): 27, 22, 44, (27,165,0): 27, 22, 44, (27,166,0): 27, 22, 44, (27,167,0): 27, 22, 44, (27,168,0): 31, 23, 46, (27,169,0): 31, 23, 46, (27,170,0): 32, 22, 46, (27,171,0): 32, 22, 46, (27,172,0): 32, 22, 46, (27,173,0): 32, 22, 46, (27,174,0): 34, 22, 46, (27,175,0): 32, 22, 46, (27,176,0): 33, 23, 47, (27,177,0): 32, 24, 47, (27,178,0): 32, 24, 47, (27,179,0): 32, 24, 47, (27,180,0): 32, 24, 47, (27,181,0): 32, 24, 47, (27,182,0): 32, 24, 47, (27,183,0): 32, 24, 47, (27,184,0): 32, 24, 47, (27,185,0): 32, 24, 47, (27,186,0): 32, 24, 47, (27,187,0): 32, 24, 47, (27,188,0): 32, 24, 47, (27,189,0): 32, 24, 47, (27,190,0): 32, 24, 47, (27,191,0): 32, 24, 45, (27,192,0): 33, 28, 48, (27,193,0): 33, 29, 46, (27,194,0): 35, 28, 46, (27,195,0): 35, 28, 46, (27,196,0): 35, 28, 46, (27,197,0): 35, 28, 46, (27,198,0): 36, 27, 46, (27,199,0): 36, 27, 46, (27,200,0): 41, 29, 49, (27,201,0): 41, 29, 49, (27,202,0): 41, 29, 49, (27,203,0): 41, 29, 49, (27,204,0): 42, 29, 49, (27,205,0): 42, 29, 49, (27,206,0): 42, 29, 49, (27,207,0): 43, 28, 49, (27,208,0): 45, 28, 47, (27,209,0): 46, 27, 47, (27,210,0): 47, 28, 48, (27,211,0): 47, 28, 48, (27,212,0): 47, 28, 48, (27,213,0): 48, 29, 49, (27,214,0): 48, 29, 49, (27,215,0): 48, 29, 49, (27,216,0): 49, 30, 50, (27,217,0): 49, 30, 50, (27,218,0): 49, 30, 50, (27,219,0): 49, 30, 50, (27,220,0): 49, 30, 50, (27,221,0): 49, 30, 50, (27,222,0): 49, 30, 50, (27,223,0): 48, 31, 50, (27,224,0): 47, 32, 51, (27,225,0): 46, 33, 51, (27,226,0): 46, 33, 51, (27,227,0): 45, 32, 50, (27,228,0): 44, 31, 49, (27,229,0): 44, 31, 49, (27,230,0): 44, 31, 49, (27,231,0): 43, 30, 48, (27,232,0): 45, 32, 50, (27,233,0): 44, 31, 49, (27,234,0): 42, 29, 47, (27,235,0): 41, 28, 46, (27,236,0): 40, 27, 45, (27,237,0): 40, 27, 45, (27,238,0): 40, 27, 45, (27,239,0): 41, 28, 45, (27,240,0): 44, 31, 48, (27,241,0): 44, 32, 46, (27,242,0): 44, 32, 46, (27,243,0): 45, 33, 47, (27,244,0): 45, 33, 47, (27,245,0): 46, 34, 48, (27,246,0): 47, 33, 48, (27,247,0): 47, 33, 48, (27,248,0): 51, 34, 50, (27,249,0): 51, 34, 50, (27,250,0): 51, 33, 49, (27,251,0): 51, 33, 49, (27,252,0): 50, 32, 48, (27,253,0): 50, 32, 48, (27,254,0): 49, 31, 47, (27,255,0): 49, 31, 47, (27,256,0): 48, 30, 44, (27,257,0): 49, 31, 45, (27,258,0): 51, 33, 45, (27,259,0): 53, 35, 47, (27,260,0): 56, 36, 48, (27,261,0): 56, 36, 48, (27,262,0): 56, 36, 47, (27,263,0): 55, 35, 46, (27,264,0): 58, 37, 46, (27,265,0): 58, 37, 46, (27,266,0): 60, 37, 47, (27,267,0): 61, 38, 48, (27,268,0): 63, 40, 48, (27,269,0): 64, 41, 49, (27,270,0): 67, 41, 50, (27,271,0): 67, 41, 50, (27,272,0): 72, 42, 52, (27,273,0): 72, 42, 52, (27,274,0): 73, 43, 53, (27,275,0): 74, 44, 54, (27,276,0): 76, 45, 53, (27,277,0): 77, 46, 54, (27,278,0): 78, 47, 55, (27,279,0): 78, 47, 55, (27,280,0): 81, 48, 55, (27,281,0): 81, 48, 55, (27,282,0): 84, 49, 55, (27,283,0): 85, 50, 56, (27,284,0): 86, 51, 57, (27,285,0): 87, 52, 58, (27,286,0): 89, 53, 57, (27,287,0): 89, 53, 57, (27,288,0): 93, 54, 59, (27,289,0): 94, 55, 60, (27,290,0): 94, 55, 60, (27,291,0): 94, 55, 60, (27,292,0): 95, 56, 59, (27,293,0): 96, 57, 60, (27,294,0): 96, 57, 58, (27,295,0): 96, 57, 58, (27,296,0): 96, 57, 58, (27,297,0): 98, 60, 59, (27,298,0): 100, 62, 61, (27,299,0): 99, 61, 60, (27,300,0): 99, 61, 58, (27,301,0): 100, 62, 59, (27,302,0): 104, 66, 63, (27,303,0): 109, 70, 65, (27,304,0): 115, 72, 65, (27,305,0): 120, 73, 63, (27,306,0): 125, 77, 63, (27,307,0): 130, 83, 63, (27,308,0): 136, 89, 63, (27,309,0): 141, 92, 62, (27,310,0): 144, 93, 64, (27,311,0): 145, 94, 65, (27,312,0): 145, 94, 67, (27,313,0): 142, 90, 66, (27,314,0): 138, 88, 65, (27,315,0): 133, 86, 60, (27,316,0): 131, 86, 57, (27,317,0): 133, 88, 57, (27,318,0): 134, 91, 57, (27,319,0): 136, 93, 59, (27,320,0): 138, 89, 59, (27,321,0): 139, 88, 59, (27,322,0): 140, 89, 60, (27,323,0): 140, 91, 61, (27,324,0): 142, 93, 63, (27,325,0): 141, 94, 64, (27,326,0): 141, 96, 65, (27,327,0): 140, 97, 65, (27,328,0): 141, 98, 66, (27,329,0): 138, 97, 65, (27,330,0): 137, 98, 65, (27,331,0): 136, 97, 64, (27,332,0): 134, 98, 64, (27,333,0): 133, 97, 63, (27,334,0): 132, 98, 63, (27,335,0): 132, 97, 65, (27,336,0): 130, 95, 67, (27,337,0): 130, 94, 68, (27,338,0): 129, 93, 67, (27,339,0): 128, 92, 66, (27,340,0): 128, 92, 68, (27,341,0): 127, 91, 67, (27,342,0): 127, 91, 67, (27,343,0): 127, 91, 67, (27,344,0): 126, 90, 68, (27,345,0): 125, 89, 67, (27,346,0): 125, 88, 69, (27,347,0): 124, 87, 68, (27,348,0): 123, 86, 67, (27,349,0): 123, 86, 67, (27,350,0): 123, 86, 68, (27,351,0): 124, 86, 67, (27,352,0): 126, 85, 65, (27,353,0): 126, 85, 63, (27,354,0): 127, 86, 66, (27,355,0): 128, 87, 67, (27,356,0): 128, 86, 70, (27,357,0): 127, 85, 69, (27,358,0): 126, 84, 70, (27,359,0): 126, 84, 70, (27,360,0): 126, 84, 70, (27,361,0): 127, 85, 71, (27,362,0): 129, 87, 71, (27,363,0): 131, 90, 72, (27,364,0): 133, 92, 74, (27,365,0): 135, 94, 74, (27,366,0): 136, 95, 73, (27,367,0): 138, 96, 74, (27,368,0): 143, 98, 77, (27,369,0): 143, 98, 77, (27,370,0): 143, 98, 79, (27,371,0): 142, 97, 78, (27,372,0): 140, 97, 78, (27,373,0): 140, 97, 78, (27,374,0): 139, 96, 79, (27,375,0): 139, 96, 79, (27,376,0): 138, 96, 80, (27,377,0): 137, 95, 79, (27,378,0): 134, 95, 78, (27,379,0): 133, 94, 77, (27,380,0): 133, 94, 79, (27,381,0): 133, 94, 79, (27,382,0): 133, 96, 80, (27,383,0): 135, 96, 81, (27,384,0): 135, 96, 81, (27,385,0): 138, 96, 82, (27,386,0): 138, 96, 82, (27,387,0): 138, 96, 82, (27,388,0): 140, 97, 81, (27,389,0): 142, 96, 81, (27,390,0): 144, 96, 82, (27,391,0): 144, 97, 81, (27,392,0): 153, 104, 89, (27,393,0): 153, 101, 87, (27,394,0): 153, 100, 84, (27,395,0): 156, 100, 85, (27,396,0): 160, 102, 88, (27,397,0): 160, 102, 88, (27,398,0): 157, 100, 83, (27,399,0): 152, 96, 79, (27,400,0): 147, 96, 79, (27,401,0): 144, 97, 79, (27,402,0): 144, 97, 79, (27,403,0): 143, 96, 78, (27,404,0): 142, 95, 77, (27,405,0): 142, 94, 74, (27,406,0): 142, 94, 74, (27,407,0): 141, 93, 71, (27,408,0): 148, 97, 76, (27,409,0): 148, 97, 76, (27,410,0): 149, 97, 76, (27,411,0): 149, 97, 75, (27,412,0): 148, 96, 74, (27,413,0): 146, 94, 72, (27,414,0): 144, 92, 70, (27,415,0): 142, 92, 69, (27,416,0): 133, 86, 66, (27,417,0): 130, 85, 66, (27,418,0): 128, 83, 64, (27,419,0): 125, 80, 61, (27,420,0): 121, 78, 61, (27,421,0): 119, 76, 59, (27,422,0): 117, 75, 59, (27,423,0): 114, 75, 60, (27,424,0): 107, 69, 56, (27,425,0): 107, 69, 56, (27,426,0): 106, 70, 58, (27,427,0): 103, 69, 59, (27,428,0): 101, 67, 58, (27,429,0): 98, 65, 56, (27,430,0): 96, 63, 54, (27,431,0): 95, 62, 53, (27,432,0): 92, 62, 54, (27,433,0): 92, 61, 56, (27,434,0): 92, 61, 56, (27,435,0): 92, 61, 56, (27,436,0): 92, 61, 56, (27,437,0): 92, 61, 56, (27,438,0): 92, 61, 56, (27,439,0): 92, 61, 56, (27,440,0): 91, 60, 55, (27,441,0): 90, 59, 54, (27,442,0): 90, 59, 54, (27,443,0): 90, 59, 54, (27,444,0): 89, 58, 53, (27,445,0): 89, 58, 53, (27,446,0): 89, 58, 53, (27,447,0): 88, 59, 53, (27,448,0): 86, 58, 55, (27,449,0): 84, 59, 55, (27,450,0): 85, 60, 56, (27,451,0): 86, 61, 57, (27,452,0): 87, 62, 58, (27,453,0): 87, 62, 58, (27,454,0): 87, 62, 58, (27,455,0): 87, 62, 58, (27,456,0): 86, 61, 57, (27,457,0): 85, 60, 56, (27,458,0): 84, 59, 55, (27,459,0): 83, 58, 54, (27,460,0): 83, 58, 54, (27,461,0): 84, 59, 55, (27,462,0): 85, 60, 56, (27,463,0): 86, 61, 57, (27,464,0): 86, 60, 59, (27,465,0): 86, 60, 59, (27,466,0): 86, 60, 59, (27,467,0): 86, 60, 59, (27,468,0): 86, 60, 59, (27,469,0): 86, 60, 59, (27,470,0): 86, 61, 57, (27,471,0): 86, 61, 57, (27,472,0): 86, 61, 56, (27,473,0): 86, 61, 56, (27,474,0): 85, 60, 53, (27,475,0): 86, 61, 54, (27,476,0): 87, 62, 55, (27,477,0): 89, 64, 57, (27,478,0): 90, 65, 58, (27,479,0): 92, 68, 58, (27,480,0): 96, 72, 60, (27,481,0): 96, 73, 59, (27,482,0): 96, 73, 59, (27,483,0): 96, 73, 59, (27,484,0): 96, 72, 60, (27,485,0): 96, 72, 60, (27,486,0): 96, 72, 60, (27,487,0): 96, 72, 60, (27,488,0): 94, 70, 60, (27,489,0): 95, 71, 61, (27,490,0): 96, 71, 64, (27,491,0): 96, 71, 64, (27,492,0): 95, 70, 63, (27,493,0): 94, 69, 62, (27,494,0): 93, 68, 63, (27,495,0): 92, 67, 62, (27,496,0): 92, 67, 63, (27,497,0): 93, 68, 64, (27,498,0): 94, 69, 65, (27,499,0): 95, 70, 66, (27,500,0): 95, 70, 66, (27,501,0): 94, 69, 65, (27,502,0): 93, 68, 64, (27,503,0): 92, 67, 63, (27,504,0): 94, 69, 65, (27,505,0): 94, 69, 65, (27,506,0): 94, 69, 65, (27,507,0): 95, 70, 66, (27,508,0): 96, 71, 67, (27,509,0): 96, 71, 67, (27,510,0): 96, 71, 67, (27,511,0): 97, 72, 68, (27,512,0): 95, 70, 65, (27,513,0): 96, 71, 66, (27,514,0): 97, 72, 68, (27,515,0): 98, 73, 69, (27,516,0): 98, 73, 69, (27,517,0): 97, 72, 68, (27,518,0): 96, 70, 69, (27,519,0): 95, 69, 68, (27,520,0): 95, 69, 70, (27,521,0): 93, 67, 68, (27,522,0): 92, 66, 67, (27,523,0): 92, 66, 67, (27,524,0): 94, 68, 71, (27,525,0): 93, 67, 70, (27,526,0): 89, 63, 66, (27,527,0): 84, 59, 62, (27,528,0): 81, 57, 57, (27,529,0): 79, 58, 57, (27,530,0): 81, 59, 61, (27,531,0): 82, 60, 62, (27,532,0): 83, 61, 63, (27,533,0): 85, 63, 65, (27,534,0): 86, 64, 67, (27,535,0): 87, 65, 68, (27,536,0): 82, 59, 65, (27,537,0): 80, 57, 63, (27,538,0): 76, 53, 59, (27,539,0): 72, 49, 55, (27,540,0): 70, 47, 55, (27,541,0): 70, 47, 55, (27,542,0): 70, 47, 55, (27,543,0): 70, 49, 56, (27,544,0): 68, 49, 55, (27,545,0): 67, 50, 56, (27,546,0): 71, 52, 58, (27,547,0): 72, 53, 59, (27,548,0): 72, 53, 57, (27,549,0): 72, 53, 57, (27,550,0): 72, 51, 56, (27,551,0): 72, 51, 56, (27,552,0): 73, 51, 54, (27,553,0): 73, 51, 54, (27,554,0): 74, 52, 54, (27,555,0): 75, 53, 55, (27,556,0): 78, 53, 56, (27,557,0): 79, 54, 57, (27,558,0): 79, 55, 55, (27,559,0): 81, 55, 56, (27,560,0): 85, 56, 58, (27,561,0): 86, 56, 58, (27,562,0): 85, 55, 57, (27,563,0): 84, 54, 56, (27,564,0): 83, 52, 57, (27,565,0): 81, 52, 56, (27,566,0): 80, 51, 55, (27,567,0): 79, 50, 54, (27,568,0): 75, 48, 53, (27,569,0): 74, 47, 52, (27,570,0): 73, 48, 54, (27,571,0): 71, 46, 52, (27,572,0): 70, 45, 51, (27,573,0): 69, 44, 50, (27,574,0): 68, 42, 51, (27,575,0): 68, 43, 49, (27,576,0): 68, 46, 49, (27,577,0): 68, 46, 48, (27,578,0): 67, 45, 47, (27,579,0): 67, 45, 47, (27,580,0): 67, 45, 47, (27,581,0): 68, 46, 48, (27,582,0): 69, 47, 49, (27,583,0): 70, 48, 50, (27,584,0): 69, 47, 49, (27,585,0): 68, 46, 48, (27,586,0): 66, 44, 46, (27,587,0): 65, 43, 45, (27,588,0): 65, 43, 45, (27,589,0): 66, 44, 46, (27,590,0): 68, 46, 48, (27,591,0): 69, 47, 49, (27,592,0): 73, 51, 53, (27,593,0): 72, 50, 52, (27,594,0): 72, 50, 52, (27,595,0): 71, 49, 51, (27,596,0): 70, 48, 50, (27,597,0): 70, 48, 50, (27,598,0): 69, 47, 49, (27,599,0): 69, 47, 49, (28,0,0): 30, 27, 38, (28,1,0): 30, 27, 38, (28,2,0): 33, 27, 39, (28,3,0): 33, 27, 39, (28,4,0): 35, 27, 38, (28,5,0): 35, 27, 38, (28,6,0): 38, 28, 39, (28,7,0): 39, 27, 39, (28,8,0): 41, 28, 38, (28,9,0): 42, 29, 39, (28,10,0): 44, 28, 38, (28,11,0): 44, 28, 38, (28,12,0): 46, 29, 39, (28,13,0): 47, 30, 40, (28,14,0): 49, 29, 38, (28,15,0): 49, 29, 38, (28,16,0): 52, 30, 43, (28,17,0): 52, 30, 43, (28,18,0): 51, 29, 42, (28,19,0): 51, 29, 42, (28,20,0): 49, 29, 41, (28,21,0): 49, 29, 41, (28,22,0): 48, 28, 40, (28,23,0): 48, 28, 40, (28,24,0): 48, 30, 42, (28,25,0): 48, 30, 42, (28,26,0): 47, 31, 42, (28,27,0): 47, 31, 42, (28,28,0): 47, 31, 42, (28,29,0): 47, 31, 42, (28,30,0): 45, 32, 42, (28,31,0): 45, 32, 42, (28,32,0): 41, 29, 43, (28,33,0): 41, 29, 43, (28,34,0): 41, 29, 43, (28,35,0): 41, 29, 43, (28,36,0): 41, 29, 43, (28,37,0): 41, 29, 43, (28,38,0): 41, 29, 43, (28,39,0): 41, 29, 43, (28,40,0): 41, 29, 43, (28,41,0): 41, 29, 43, (28,42,0): 43, 31, 45, (28,43,0): 43, 31, 45, (28,44,0): 43, 31, 45, (28,45,0): 43, 31, 45, (28,46,0): 41, 29, 43, (28,47,0): 42, 28, 43, (28,48,0): 44, 27, 43, (28,49,0): 45, 27, 43, (28,50,0): 45, 27, 43, (28,51,0): 45, 27, 43, (28,52,0): 45, 27, 43, (28,53,0): 45, 27, 43, (28,54,0): 45, 27, 43, (28,55,0): 45, 27, 43, (28,56,0): 46, 28, 44, (28,57,0): 45, 27, 43, (28,58,0): 45, 27, 43, (28,59,0): 44, 26, 42, (28,60,0): 44, 26, 42, (28,61,0): 43, 25, 41, (28,62,0): 43, 25, 41, (28,63,0): 43, 25, 41, (28,64,0): 43, 26, 42, (28,65,0): 43, 26, 42, (28,66,0): 42, 25, 41, (28,67,0): 41, 24, 40, (28,68,0): 40, 23, 39, (28,69,0): 38, 21, 37, (28,70,0): 37, 20, 36, (28,71,0): 37, 20, 36, (28,72,0): 39, 22, 38, (28,73,0): 39, 22, 38, (28,74,0): 39, 22, 38, (28,75,0): 39, 22, 38, (28,76,0): 39, 22, 38, (28,77,0): 39, 22, 38, (28,78,0): 39, 22, 38, (28,79,0): 39, 22, 38, (28,80,0): 40, 23, 42, (28,81,0): 39, 22, 41, (28,82,0): 37, 20, 39, (28,83,0): 35, 18, 37, (28,84,0): 34, 17, 36, (28,85,0): 35, 18, 37, (28,86,0): 37, 20, 39, (28,87,0): 38, 21, 40, (28,88,0): 36, 19, 38, (28,89,0): 36, 19, 38, (28,90,0): 35, 18, 37, (28,91,0): 35, 18, 37, (28,92,0): 34, 17, 36, (28,93,0): 34, 17, 36, (28,94,0): 33, 16, 35, (28,95,0): 31, 16, 35, (28,96,0): 29, 17, 37, (28,97,0): 26, 19, 37, (28,98,0): 27, 18, 37, (28,99,0): 26, 19, 37, (28,100,0): 27, 18, 37, (28,101,0): 26, 19, 37, (28,102,0): 27, 18, 37, (28,103,0): 26, 19, 37, (28,104,0): 31, 22, 41, (28,105,0): 30, 23, 41, (28,106,0): 31, 22, 41, (28,107,0): 30, 23, 41, (28,108,0): 31, 22, 41, (28,109,0): 30, 23, 41, (28,110,0): 31, 22, 41, (28,111,0): 31, 22, 41, (28,112,0): 29, 19, 43, (28,113,0): 29, 19, 43, (28,114,0): 31, 19, 43, (28,115,0): 29, 19, 43, (28,116,0): 29, 19, 43, (28,117,0): 29, 19, 43, (28,118,0): 29, 19, 43, (28,119,0): 28, 20, 43, (28,120,0): 26, 18, 41, (28,121,0): 25, 20, 42, (28,122,0): 25, 20, 42, (28,123,0): 25, 22, 43, (28,124,0): 26, 21, 43, (28,125,0): 26, 23, 44, (28,126,0): 26, 23, 44, (28,127,0): 26, 23, 44, (28,128,0): 25, 22, 43, (28,129,0): 25, 22, 43, (28,130,0): 25, 22, 43, (28,131,0): 26, 23, 44, (28,132,0): 27, 22, 44, (28,133,0): 28, 23, 45, (28,134,0): 28, 23, 45, (28,135,0): 28, 23, 45, (28,136,0): 31, 23, 46, (28,137,0): 31, 23, 46, (28,138,0): 32, 22, 46, (28,139,0): 32, 22, 46, (28,140,0): 32, 22, 46, (28,141,0): 32, 22, 46, (28,142,0): 34, 22, 46, (28,143,0): 32, 22, 46, (28,144,0): 33, 23, 47, (28,145,0): 32, 24, 47, (28,146,0): 32, 24, 47, (28,147,0): 32, 24, 47, (28,148,0): 32, 24, 47, (28,149,0): 32, 24, 47, (28,150,0): 32, 24, 47, (28,151,0): 32, 24, 47, (28,152,0): 29, 21, 44, (28,153,0): 29, 21, 44, (28,154,0): 29, 21, 44, (28,155,0): 29, 21, 44, (28,156,0): 29, 21, 44, (28,157,0): 29, 21, 44, (28,158,0): 29, 21, 44, (28,159,0): 27, 22, 44, (28,160,0): 27, 22, 44, (28,161,0): 26, 23, 44, (28,162,0): 26, 23, 44, (28,163,0): 26, 23, 44, (28,164,0): 27, 22, 44, (28,165,0): 27, 22, 44, (28,166,0): 27, 22, 44, (28,167,0): 27, 22, 44, (28,168,0): 31, 23, 46, (28,169,0): 31, 23, 46, (28,170,0): 32, 22, 46, (28,171,0): 32, 22, 46, (28,172,0): 32, 22, 46, (28,173,0): 32, 22, 46, (28,174,0): 34, 22, 46, (28,175,0): 32, 22, 46, (28,176,0): 33, 23, 47, (28,177,0): 32, 24, 47, (28,178,0): 32, 24, 47, (28,179,0): 32, 24, 47, (28,180,0): 32, 24, 47, (28,181,0): 32, 24, 47, (28,182,0): 32, 24, 47, (28,183,0): 32, 24, 47, (28,184,0): 32, 24, 47, (28,185,0): 32, 24, 47, (28,186,0): 32, 24, 47, (28,187,0): 32, 24, 47, (28,188,0): 32, 24, 47, (28,189,0): 32, 24, 47, (28,190,0): 32, 24, 47, (28,191,0): 32, 24, 45, (28,192,0): 33, 28, 48, (28,193,0): 33, 29, 46, (28,194,0): 35, 28, 46, (28,195,0): 35, 28, 46, (28,196,0): 35, 28, 46, (28,197,0): 35, 28, 46, (28,198,0): 36, 27, 46, (28,199,0): 36, 27, 46, (28,200,0): 41, 29, 49, (28,201,0): 41, 29, 49, (28,202,0): 41, 29, 49, (28,203,0): 41, 29, 49, (28,204,0): 42, 29, 49, (28,205,0): 42, 29, 49, (28,206,0): 42, 29, 49, (28,207,0): 43, 28, 49, (28,208,0): 45, 28, 47, (28,209,0): 46, 27, 47, (28,210,0): 47, 28, 48, (28,211,0): 47, 28, 48, (28,212,0): 48, 29, 49, (28,213,0): 49, 30, 50, (28,214,0): 49, 30, 50, (28,215,0): 50, 31, 51, (28,216,0): 49, 30, 50, (28,217,0): 49, 30, 50, (28,218,0): 49, 30, 50, (28,219,0): 49, 30, 50, (28,220,0): 49, 30, 50, (28,221,0): 49, 30, 50, (28,222,0): 49, 30, 50, (28,223,0): 48, 31, 50, (28,224,0): 48, 33, 52, (28,225,0): 46, 33, 51, (28,226,0): 46, 33, 51, (28,227,0): 46, 33, 51, (28,228,0): 45, 32, 50, (28,229,0): 44, 31, 49, (28,230,0): 44, 31, 49, (28,231,0): 44, 31, 49, (28,232,0): 46, 33, 51, (28,233,0): 45, 32, 50, (28,234,0): 43, 30, 48, (28,235,0): 42, 29, 47, (28,236,0): 41, 28, 46, (28,237,0): 41, 28, 46, (28,238,0): 41, 28, 46, (28,239,0): 42, 29, 46, (28,240,0): 44, 31, 48, (28,241,0): 44, 32, 46, (28,242,0): 44, 32, 46, (28,243,0): 45, 33, 47, (28,244,0): 45, 33, 47, (28,245,0): 46, 34, 48, (28,246,0): 47, 33, 48, (28,247,0): 47, 33, 48, (28,248,0): 51, 34, 50, (28,249,0): 51, 34, 50, (28,250,0): 51, 33, 49, (28,251,0): 51, 33, 49, (28,252,0): 50, 32, 48, (28,253,0): 50, 32, 48, (28,254,0): 49, 31, 47, (28,255,0): 49, 31, 47, (28,256,0): 48, 30, 44, (28,257,0): 49, 31, 45, (28,258,0): 51, 33, 45, (28,259,0): 53, 35, 47, (28,260,0): 56, 36, 48, (28,261,0): 56, 36, 48, (28,262,0): 56, 36, 47, (28,263,0): 55, 35, 46, (28,264,0): 59, 38, 47, (28,265,0): 59, 38, 47, (28,266,0): 61, 38, 48, (28,267,0): 62, 39, 49, (28,268,0): 62, 39, 47, (28,269,0): 63, 40, 48, (28,270,0): 66, 40, 49, (28,271,0): 66, 40, 49, (28,272,0): 72, 42, 52, (28,273,0): 72, 42, 52, (28,274,0): 74, 42, 53, (28,275,0): 75, 43, 54, (28,276,0): 76, 45, 53, (28,277,0): 77, 46, 54, (28,278,0): 79, 46, 55, (28,279,0): 79, 46, 55, (28,280,0): 84, 49, 56, (28,281,0): 84, 49, 56, (28,282,0): 85, 50, 56, (28,283,0): 86, 51, 57, (28,284,0): 88, 51, 58, (28,285,0): 89, 52, 59, (28,286,0): 90, 54, 58, (28,287,0): 90, 54, 58, (28,288,0): 94, 55, 58, (28,289,0): 95, 54, 58, (28,290,0): 95, 54, 58, (28,291,0): 96, 55, 59, (28,292,0): 97, 56, 60, (28,293,0): 97, 56, 60, (28,294,0): 97, 57, 58, (28,295,0): 98, 58, 59, (28,296,0): 98, 58, 58, (28,297,0): 100, 60, 60, (28,298,0): 102, 62, 62, (28,299,0): 102, 62, 60, (28,300,0): 101, 61, 59, (28,301,0): 102, 62, 60, (28,302,0): 106, 66, 64, (28,303,0): 111, 70, 66, (28,304,0): 116, 72, 63, (28,305,0): 121, 75, 62, (28,306,0): 126, 79, 63, (28,307,0): 131, 85, 62, (28,308,0): 136, 89, 63, (28,309,0): 141, 92, 62, (28,310,0): 144, 93, 64, (28,311,0): 145, 94, 65, (28,312,0): 145, 94, 67, (28,313,0): 143, 92, 65, (28,314,0): 139, 89, 64, (28,315,0): 135, 88, 62, (28,316,0): 134, 89, 60, (28,317,0): 135, 90, 59, (28,318,0): 136, 93, 59, (28,319,0): 139, 95, 60, (28,320,0): 142, 91, 60, (28,321,0): 142, 91, 60, (28,322,0): 143, 92, 61, (28,323,0): 143, 94, 62, (28,324,0): 144, 95, 63, (28,325,0): 142, 96, 63, (28,326,0): 142, 97, 64, (28,327,0): 141, 98, 64, (28,328,0): 141, 98, 64, (28,329,0): 139, 99, 64, (28,330,0): 138, 100, 64, (28,331,0): 137, 99, 63, (28,332,0): 135, 99, 63, (28,333,0): 133, 99, 62, (28,334,0): 133, 99, 62, (28,335,0): 132, 98, 63, (28,336,0): 131, 96, 66, (28,337,0): 131, 96, 68, (28,338,0): 131, 95, 69, (28,339,0): 130, 94, 68, (28,340,0): 130, 94, 68, (28,341,0): 129, 93, 67, (28,342,0): 128, 92, 68, (28,343,0): 128, 92, 68, (28,344,0): 126, 90, 68, (28,345,0): 126, 90, 68, (28,346,0): 126, 90, 68, (28,347,0): 126, 90, 68, (28,348,0): 125, 88, 69, (28,349,0): 124, 87, 68, (28,350,0): 124, 87, 68, (28,351,0): 124, 86, 67, (28,352,0): 127, 86, 66, (28,353,0): 129, 87, 65, (28,354,0): 130, 87, 68, (28,355,0): 130, 87, 68, (28,356,0): 130, 87, 71, (28,357,0): 130, 87, 71, (28,358,0): 129, 85, 72, (28,359,0): 128, 84, 71, (28,360,0): 128, 84, 71, (28,361,0): 129, 85, 72, (28,362,0): 130, 87, 71, (28,363,0): 132, 89, 72, (28,364,0): 134, 91, 74, (28,365,0): 136, 93, 74, (28,366,0): 138, 96, 74, (28,367,0): 139, 97, 75, (28,368,0): 145, 100, 79, (28,369,0): 145, 98, 78, (28,370,0): 144, 99, 78, (28,371,0): 143, 98, 77, (28,372,0): 142, 97, 78, (28,373,0): 142, 97, 78, (28,374,0): 139, 96, 77, (28,375,0): 139, 96, 77, (28,376,0): 138, 97, 79, (28,377,0): 137, 96, 78, (28,378,0): 136, 94, 78, (28,379,0): 136, 94, 78, (28,380,0): 134, 95, 78, (28,381,0): 135, 96, 79, (28,382,0): 136, 97, 82, (28,383,0): 137, 98, 83, (28,384,0): 139, 97, 83, (28,385,0): 140, 96, 83, (28,386,0): 141, 98, 82, (28,387,0): 141, 98, 82, (28,388,0): 144, 98, 83, (28,389,0): 144, 98, 83, (28,390,0): 145, 98, 82, (28,391,0): 146, 99, 83, (28,392,0): 154, 105, 90, (28,393,0): 154, 103, 86, (28,394,0): 153, 102, 85, (28,395,0): 153, 100, 84, (28,396,0): 153, 100, 82, (28,397,0): 152, 99, 81, (28,398,0): 150, 94, 77, (28,399,0): 145, 92, 74, (28,400,0): 146, 95, 76, (28,401,0): 144, 96, 76, (28,402,0): 143, 95, 75, (28,403,0): 142, 94, 74, (28,404,0): 142, 94, 74, (28,405,0): 144, 93, 74, (28,406,0): 144, 93, 74, (28,407,0): 144, 93, 72, (28,408,0): 149, 97, 76, (28,409,0): 149, 97, 75, (28,410,0): 152, 97, 76, (28,411,0): 151, 97, 73, (28,412,0): 150, 96, 72, (28,413,0): 148, 94, 70, (28,414,0): 147, 93, 69, (28,415,0): 143, 91, 69, (28,416,0): 137, 89, 69, (28,417,0): 132, 85, 65, (28,418,0): 126, 81, 60, (28,419,0): 121, 76, 55, (28,420,0): 116, 73, 54, (28,421,0): 117, 74, 57, (28,422,0): 118, 76, 60, (28,423,0): 117, 78, 61, (28,424,0): 111, 74, 58, (28,425,0): 111, 73, 60, (28,426,0): 110, 74, 62, (28,427,0): 106, 72, 60, (28,428,0): 103, 69, 59, (28,429,0): 100, 66, 56, (28,430,0): 95, 63, 52, (28,431,0): 93, 60, 51, (28,432,0): 91, 61, 53, (28,433,0): 91, 60, 55, (28,434,0): 91, 60, 55, (28,435,0): 91, 60, 55, (28,436,0): 91, 60, 55, (28,437,0): 91, 60, 55, (28,438,0): 91, 60, 55, (28,439,0): 91, 60, 55, (28,440,0): 93, 62, 57, (28,441,0): 92, 61, 56, (28,442,0): 92, 61, 56, (28,443,0): 91, 60, 55, (28,444,0): 90, 59, 54, (28,445,0): 90, 59, 54, (28,446,0): 89, 58, 53, (28,447,0): 88, 59, 53, (28,448,0): 86, 58, 55, (28,449,0): 84, 59, 55, (28,450,0): 84, 59, 55, (28,451,0): 85, 60, 56, (28,452,0): 86, 61, 57, (28,453,0): 87, 62, 58, (28,454,0): 88, 63, 59, (28,455,0): 89, 64, 60, (28,456,0): 86, 61, 57, (28,457,0): 85, 60, 56, (28,458,0): 84, 59, 55, (28,459,0): 83, 58, 54, (28,460,0): 83, 58, 54, (28,461,0): 84, 59, 55, (28,462,0): 85, 60, 56, (28,463,0): 86, 61, 57, (28,464,0): 86, 60, 59, (28,465,0): 86, 60, 59, (28,466,0): 86, 60, 59, (28,467,0): 86, 60, 59, (28,468,0): 86, 60, 59, (28,469,0): 86, 60, 59, (28,470,0): 86, 61, 57, (28,471,0): 86, 61, 57, (28,472,0): 86, 61, 56, (28,473,0): 86, 61, 56, (28,474,0): 85, 60, 53, (28,475,0): 86, 61, 54, (28,476,0): 87, 62, 55, (28,477,0): 89, 64, 57, (28,478,0): 90, 65, 58, (28,479,0): 92, 68, 58, (28,480,0): 97, 74, 60, (28,481,0): 97, 74, 58, (28,482,0): 97, 74, 60, (28,483,0): 97, 74, 60, (28,484,0): 97, 74, 60, (28,485,0): 97, 74, 60, (28,486,0): 97, 73, 61, (28,487,0): 97, 73, 61, (28,488,0): 95, 71, 61, (28,489,0): 96, 72, 62, (28,490,0): 97, 73, 63, (28,491,0): 97, 73, 63, (28,492,0): 96, 71, 64, (28,493,0): 95, 70, 63, (28,494,0): 94, 69, 62, (28,495,0): 93, 68, 63, (28,496,0): 92, 67, 63, (28,497,0): 93, 68, 64, (28,498,0): 94, 69, 65, (28,499,0): 95, 70, 66, (28,500,0): 95, 70, 66, (28,501,0): 94, 69, 65, (28,502,0): 93, 68, 64, (28,503,0): 92, 67, 63, (28,504,0): 93, 68, 64, (28,505,0): 94, 69, 65, (28,506,0): 94, 69, 65, (28,507,0): 94, 69, 65, (28,508,0): 95, 70, 66, (28,509,0): 96, 71, 67, (28,510,0): 96, 71, 67, (28,511,0): 96, 71, 67, (28,512,0): 95, 70, 65, (28,513,0): 96, 71, 66, (28,514,0): 97, 72, 68, (28,515,0): 98, 73, 69, (28,516,0): 98, 73, 69, (28,517,0): 97, 72, 68, (28,518,0): 96, 70, 69, (28,519,0): 95, 69, 68, (28,520,0): 95, 69, 70, (28,521,0): 93, 67, 68, (28,522,0): 92, 66, 67, (28,523,0): 93, 67, 68, (28,524,0): 94, 68, 71, (28,525,0): 94, 68, 71, (28,526,0): 90, 64, 67, (28,527,0): 86, 61, 64, (28,528,0): 82, 58, 58, (28,529,0): 81, 60, 59, (28,530,0): 82, 60, 62, (28,531,0): 83, 61, 63, (28,532,0): 84, 62, 64, (28,533,0): 85, 63, 65, (28,534,0): 86, 64, 67, (28,535,0): 86, 64, 67, (28,536,0): 82, 59, 65, (28,537,0): 80, 57, 63, (28,538,0): 76, 53, 59, (28,539,0): 72, 49, 55, (28,540,0): 70, 47, 55, (28,541,0): 70, 47, 55, (28,542,0): 70, 47, 55, (28,543,0): 70, 49, 56, (28,544,0): 68, 49, 55, (28,545,0): 67, 50, 56, (28,546,0): 68, 51, 57, (28,547,0): 69, 52, 58, (28,548,0): 72, 53, 57, (28,549,0): 72, 53, 57, (28,550,0): 71, 52, 56, (28,551,0): 70, 51, 55, (28,552,0): 72, 52, 54, (28,553,0): 72, 52, 54, (28,554,0): 74, 52, 54, (28,555,0): 75, 53, 55, (28,556,0): 76, 54, 56, (28,557,0): 78, 56, 58, (28,558,0): 81, 57, 57, (28,559,0): 82, 56, 57, (28,560,0): 86, 57, 59, (28,561,0): 86, 56, 58, (28,562,0): 85, 54, 59, (28,563,0): 83, 52, 57, (28,564,0): 81, 52, 56, (28,565,0): 80, 51, 55, (28,566,0): 78, 49, 54, (28,567,0): 76, 49, 54, (28,568,0): 73, 46, 53, (28,569,0): 73, 46, 53, (28,570,0): 71, 46, 52, (28,571,0): 70, 45, 51, (28,572,0): 67, 44, 52, (28,573,0): 66, 43, 51, (28,574,0): 66, 43, 51, (28,575,0): 65, 42, 48, (28,576,0): 68, 46, 49, (28,577,0): 67, 45, 47, (28,578,0): 66, 44, 46, (28,579,0): 66, 44, 46, (28,580,0): 67, 45, 47, (28,581,0): 68, 46, 48, (28,582,0): 70, 48, 50, (28,583,0): 72, 50, 52, (28,584,0): 71, 49, 51, (28,585,0): 70, 48, 50, (28,586,0): 68, 46, 48, (28,587,0): 67, 45, 47, (28,588,0): 67, 45, 47, (28,589,0): 68, 46, 48, (28,590,0): 70, 48, 50, (28,591,0): 71, 49, 51, (28,592,0): 72, 50, 52, (28,593,0): 72, 50, 52, (28,594,0): 72, 50, 52, (28,595,0): 71, 49, 51, (28,596,0): 71, 49, 51, (28,597,0): 71, 49, 51, (28,598,0): 70, 48, 50, (28,599,0): 70, 48, 50, (29,0,0): 30, 27, 38, (29,1,0): 30, 27, 38, (29,2,0): 33, 27, 39, (29,3,0): 33, 27, 39, (29,4,0): 35, 27, 38, (29,5,0): 35, 27, 38, (29,6,0): 38, 28, 39, (29,7,0): 38, 28, 39, (29,8,0): 40, 28, 38, (29,9,0): 41, 28, 38, (29,10,0): 43, 27, 37, (29,11,0): 44, 28, 38, (29,12,0): 45, 28, 38, (29,13,0): 46, 29, 39, (29,14,0): 48, 28, 37, (29,15,0): 49, 29, 38, (29,16,0): 52, 30, 43, (29,17,0): 52, 30, 43, (29,18,0): 51, 29, 42, (29,19,0): 51, 29, 42, (29,20,0): 49, 29, 41, (29,21,0): 49, 29, 41, (29,22,0): 48, 28, 40, (29,23,0): 48, 28, 40, (29,24,0): 48, 30, 42, (29,25,0): 48, 30, 42, (29,26,0): 47, 31, 42, (29,27,0): 47, 31, 42, (29,28,0): 47, 31, 42, (29,29,0): 47, 31, 42, (29,30,0): 45, 32, 42, (29,31,0): 45, 32, 42, (29,32,0): 41, 29, 43, (29,33,0): 41, 29, 43, (29,34,0): 41, 29, 43, (29,35,0): 41, 29, 43, (29,36,0): 41, 29, 43, (29,37,0): 41, 29, 43, (29,38,0): 41, 29, 43, (29,39,0): 41, 29, 43, (29,40,0): 41, 29, 43, (29,41,0): 41, 29, 43, (29,42,0): 43, 31, 45, (29,43,0): 43, 31, 45, (29,44,0): 43, 31, 45, (29,45,0): 43, 31, 45, (29,46,0): 41, 29, 43, (29,47,0): 42, 28, 43, (29,48,0): 44, 27, 43, (29,49,0): 45, 27, 43, (29,50,0): 45, 27, 43, (29,51,0): 45, 27, 43, (29,52,0): 45, 27, 43, (29,53,0): 45, 27, 43, (29,54,0): 45, 27, 43, (29,55,0): 45, 27, 43, (29,56,0): 45, 27, 43, (29,57,0): 45, 27, 43, (29,58,0): 45, 27, 43, (29,59,0): 44, 26, 42, (29,60,0): 43, 25, 41, (29,61,0): 43, 25, 41, (29,62,0): 43, 25, 41, (29,63,0): 42, 24, 40, (29,64,0): 44, 27, 43, (29,65,0): 43, 26, 42, (29,66,0): 42, 25, 41, (29,67,0): 41, 24, 40, (29,68,0): 39, 22, 38, (29,69,0): 37, 20, 36, (29,70,0): 36, 19, 35, (29,71,0): 36, 19, 35, (29,72,0): 38, 21, 37, (29,73,0): 38, 21, 37, (29,74,0): 38, 21, 37, (29,75,0): 38, 21, 37, (29,76,0): 38, 21, 37, (29,77,0): 38, 21, 37, (29,78,0): 38, 21, 37, (29,79,0): 38, 21, 37, (29,80,0): 37, 20, 39, (29,81,0): 38, 21, 40, (29,82,0): 38, 21, 40, (29,83,0): 36, 19, 38, (29,84,0): 34, 17, 36, (29,85,0): 33, 16, 35, (29,86,0): 35, 18, 37, (29,87,0): 37, 20, 39, (29,88,0): 36, 19, 38, (29,89,0): 36, 19, 38, (29,90,0): 35, 18, 37, (29,91,0): 35, 18, 37, (29,92,0): 34, 17, 36, (29,93,0): 34, 17, 36, (29,94,0): 33, 16, 35, (29,95,0): 31, 16, 35, (29,96,0): 27, 18, 37, (29,97,0): 26, 19, 37, (29,98,0): 26, 19, 37, (29,99,0): 26, 19, 37, (29,100,0): 26, 19, 37, (29,101,0): 26, 19, 37, (29,102,0): 26, 19, 37, (29,103,0): 26, 19, 37, (29,104,0): 31, 24, 42, (29,105,0): 31, 24, 42, (29,106,0): 31, 24, 42, (29,107,0): 31, 24, 42, (29,108,0): 31, 24, 42, (29,109,0): 31, 24, 42, (29,110,0): 31, 24, 42, (29,111,0): 31, 24, 42, (29,112,0): 32, 20, 44, (29,113,0): 32, 20, 44, (29,114,0): 33, 19, 44, (29,115,0): 32, 20, 44, (29,116,0): 32, 20, 44, (29,117,0): 32, 20, 44, (29,118,0): 32, 20, 44, (29,119,0): 30, 20, 44, (29,120,0): 28, 18, 42, (29,121,0): 27, 19, 42, (29,122,0): 27, 19, 42, (29,123,0): 26, 21, 43, (29,124,0): 27, 22, 44, (29,125,0): 27, 22, 44, (29,126,0): 27, 22, 44, (29,127,0): 28, 23, 45, (29,128,0): 25, 22, 43, (29,129,0): 25, 22, 43, (29,130,0): 25, 22, 43, (29,131,0): 26, 23, 44, (29,132,0): 27, 22, 44, (29,133,0): 28, 23, 45, (29,134,0): 28, 23, 45, (29,135,0): 28, 23, 45, (29,136,0): 31, 23, 46, (29,137,0): 31, 23, 46, (29,138,0): 32, 22, 46, (29,139,0): 32, 22, 46, (29,140,0): 32, 22, 46, (29,141,0): 32, 22, 46, (29,142,0): 34, 22, 46, (29,143,0): 32, 22, 46, (29,144,0): 31, 21, 45, (29,145,0): 30, 22, 45, (29,146,0): 30, 22, 45, (29,147,0): 30, 22, 45, (29,148,0): 30, 22, 45, (29,149,0): 30, 22, 45, (29,150,0): 30, 22, 45, (29,151,0): 30, 22, 45, (29,152,0): 29, 21, 44, (29,153,0): 29, 21, 44, (29,154,0): 29, 21, 44, (29,155,0): 29, 21, 44, (29,156,0): 29, 21, 44, (29,157,0): 29, 21, 44, (29,158,0): 29, 21, 44, (29,159,0): 27, 22, 44, (29,160,0): 27, 22, 44, (29,161,0): 26, 23, 44, (29,162,0): 26, 23, 44, (29,163,0): 26, 23, 44, (29,164,0): 27, 22, 44, (29,165,0): 27, 22, 44, (29,166,0): 27, 22, 44, (29,167,0): 27, 22, 44, (29,168,0): 31, 23, 46, (29,169,0): 31, 23, 46, (29,170,0): 32, 22, 46, (29,171,0): 32, 22, 46, (29,172,0): 32, 22, 46, (29,173,0): 32, 22, 46, (29,174,0): 34, 22, 46, (29,175,0): 32, 22, 46, (29,176,0): 33, 23, 47, (29,177,0): 32, 24, 47, (29,178,0): 32, 24, 47, (29,179,0): 32, 24, 47, (29,180,0): 32, 24, 47, (29,181,0): 32, 24, 47, (29,182,0): 32, 24, 47, (29,183,0): 32, 24, 47, (29,184,0): 32, 24, 47, (29,185,0): 32, 24, 47, (29,186,0): 32, 24, 47, (29,187,0): 32, 24, 47, (29,188,0): 32, 24, 47, (29,189,0): 32, 24, 47, (29,190,0): 32, 24, 47, (29,191,0): 32, 24, 45, (29,192,0): 33, 28, 48, (29,193,0): 33, 29, 46, (29,194,0): 35, 28, 46, (29,195,0): 35, 28, 46, (29,196,0): 35, 28, 46, (29,197,0): 35, 28, 46, (29,198,0): 36, 27, 46, (29,199,0): 36, 27, 46, (29,200,0): 42, 30, 50, (29,201,0): 41, 29, 49, (29,202,0): 41, 29, 49, (29,203,0): 40, 28, 48, (29,204,0): 41, 28, 48, (29,205,0): 42, 29, 49, (29,206,0): 42, 29, 49, (29,207,0): 44, 29, 50, (29,208,0): 45, 28, 47, (29,209,0): 46, 27, 47, (29,210,0): 47, 28, 48, (29,211,0): 48, 29, 49, (29,212,0): 49, 30, 50, (29,213,0): 50, 31, 51, (29,214,0): 50, 31, 51, (29,215,0): 51, 32, 52, (29,216,0): 50, 31, 51, (29,217,0): 50, 31, 51, (29,218,0): 50, 31, 51, (29,219,0): 50, 31, 51, (29,220,0): 50, 31, 51, (29,221,0): 50, 31, 51, (29,222,0): 50, 31, 51, (29,223,0): 49, 32, 51, (29,224,0): 48, 33, 52, (29,225,0): 47, 34, 52, (29,226,0): 47, 34, 52, (29,227,0): 46, 33, 51, (29,228,0): 46, 33, 51, (29,229,0): 45, 32, 50, (29,230,0): 45, 32, 50, (29,231,0): 44, 31, 49, (29,232,0): 46, 33, 51, (29,233,0): 45, 32, 50, (29,234,0): 43, 30, 48, (29,235,0): 42, 29, 47, (29,236,0): 42, 29, 47, (29,237,0): 43, 30, 48, (29,238,0): 43, 30, 48, (29,239,0): 44, 31, 48, (29,240,0): 44, 31, 48, (29,241,0): 44, 32, 46, (29,242,0): 44, 32, 46, (29,243,0): 45, 33, 47, (29,244,0): 45, 33, 47, (29,245,0): 46, 34, 48, (29,246,0): 47, 33, 48, (29,247,0): 47, 33, 48, (29,248,0): 51, 34, 50, (29,249,0): 51, 34, 50, (29,250,0): 51, 33, 49, (29,251,0): 51, 33, 49, (29,252,0): 50, 32, 48, (29,253,0): 50, 32, 48, (29,254,0): 49, 31, 47, (29,255,0): 49, 31, 47, (29,256,0): 48, 30, 44, (29,257,0): 49, 31, 45, (29,258,0): 51, 33, 45, (29,259,0): 53, 35, 47, (29,260,0): 56, 36, 48, (29,261,0): 56, 36, 48, (29,262,0): 56, 36, 47, (29,263,0): 55, 35, 46, (29,264,0): 59, 38, 47, (29,265,0): 60, 39, 48, (29,266,0): 61, 38, 48, (29,267,0): 62, 39, 49, (29,268,0): 62, 39, 47, (29,269,0): 63, 40, 48, (29,270,0): 65, 39, 48, (29,271,0): 67, 40, 49, (29,272,0): 72, 42, 52, (29,273,0): 72, 42, 52, (29,274,0): 74, 42, 53, (29,275,0): 75, 43, 54, (29,276,0): 76, 45, 53, (29,277,0): 77, 46, 54, (29,278,0): 79, 46, 55, (29,279,0): 79, 46, 55, (29,280,0): 85, 50, 57, (29,281,0): 85, 50, 57, (29,282,0): 86, 51, 57, (29,283,0): 87, 52, 58, (29,284,0): 89, 52, 59, (29,285,0): 90, 53, 60, (29,286,0): 91, 55, 59, (29,287,0): 91, 55, 59, (29,288,0): 95, 54, 58, (29,289,0): 96, 55, 59, (29,290,0): 96, 55, 59, (29,291,0): 97, 56, 60, (29,292,0): 97, 56, 60, (29,293,0): 98, 57, 61, (29,294,0): 98, 58, 59, (29,295,0): 98, 58, 59, (29,296,0): 99, 59, 59, (29,297,0): 101, 61, 61, (29,298,0): 103, 63, 61, (29,299,0): 103, 63, 61, (29,300,0): 102, 62, 60, (29,301,0): 103, 63, 61, (29,302,0): 107, 67, 65, (29,303,0): 112, 71, 67, (29,304,0): 116, 72, 63, (29,305,0): 120, 74, 61, (29,306,0): 126, 79, 61, (29,307,0): 130, 84, 61, (29,308,0): 138, 88, 61, (29,309,0): 141, 92, 62, (29,310,0): 144, 93, 62, (29,311,0): 145, 94, 63, (29,312,0): 144, 93, 64, (29,313,0): 143, 92, 65, (29,314,0): 141, 91, 66, (29,315,0): 138, 91, 63, (29,316,0): 138, 91, 61, (29,317,0): 138, 93, 60, (29,318,0): 138, 95, 60, (29,319,0): 139, 95, 60, (29,320,0): 145, 94, 63, (29,321,0): 147, 94, 63, (29,322,0): 147, 94, 63, (29,323,0): 146, 95, 64, (29,324,0): 146, 95, 64, (29,325,0): 146, 97, 65, (29,326,0): 144, 98, 65, (29,327,0): 144, 99, 66, (29,328,0): 142, 99, 65, (29,329,0): 139, 99, 64, (29,330,0): 138, 100, 64, (29,331,0): 136, 100, 64, (29,332,0): 135, 99, 63, (29,333,0): 133, 99, 62, (29,334,0): 133, 99, 62, (29,335,0): 133, 99, 64, (29,336,0): 132, 97, 67, (29,337,0): 132, 97, 69, (29,338,0): 133, 97, 71, (29,339,0): 133, 97, 71, (29,340,0): 132, 96, 70, (29,341,0): 131, 95, 69, (29,342,0): 130, 94, 70, (29,343,0): 129, 93, 69, (29,344,0): 126, 90, 68, (29,345,0): 127, 91, 69, (29,346,0): 127, 91, 69, (29,347,0): 127, 91, 69, (29,348,0): 127, 90, 71, (29,349,0): 126, 89, 70, (29,350,0): 124, 87, 68, (29,351,0): 125, 87, 66, (29,352,0): 128, 87, 65, (29,353,0): 130, 88, 66, (29,354,0): 131, 88, 69, (29,355,0): 131, 88, 69, (29,356,0): 131, 88, 71, (29,357,0): 131, 88, 72, (29,358,0): 130, 86, 73, (29,359,0): 129, 85, 72, (29,360,0): 128, 84, 71, (29,361,0): 129, 85, 72, (29,362,0): 131, 88, 72, (29,363,0): 133, 90, 73, (29,364,0): 135, 92, 73, (29,365,0): 137, 94, 75, (29,366,0): 138, 96, 74, (29,367,0): 139, 97, 75, (29,368,0): 147, 100, 80, (29,369,0): 146, 99, 79, (29,370,0): 145, 100, 79, (29,371,0): 144, 99, 78, (29,372,0): 143, 98, 79, (29,373,0): 142, 97, 78, (29,374,0): 139, 96, 77, (29,375,0): 139, 96, 77, (29,376,0): 138, 97, 79, (29,377,0): 138, 97, 79, (29,378,0): 137, 95, 79, (29,379,0): 137, 95, 79, (29,380,0): 135, 96, 79, (29,381,0): 136, 97, 80, (29,382,0): 138, 99, 84, (29,383,0): 141, 99, 85, (29,384,0): 141, 97, 84, (29,385,0): 142, 98, 85, (29,386,0): 142, 99, 83, (29,387,0): 143, 100, 84, (29,388,0): 145, 99, 84, (29,389,0): 146, 100, 85, (29,390,0): 147, 100, 84, (29,391,0): 147, 100, 84, (29,392,0): 147, 100, 82, (29,393,0): 148, 99, 82, (29,394,0): 148, 99, 82, (29,395,0): 149, 100, 83, (29,396,0): 151, 100, 81, (29,397,0): 150, 99, 80, (29,398,0): 148, 97, 78, (29,399,0): 146, 95, 76, (29,400,0): 145, 97, 77, (29,401,0): 144, 96, 76, (29,402,0): 143, 95, 75, (29,403,0): 142, 94, 74, (29,404,0): 144, 93, 74, (29,405,0): 145, 94, 73, (29,406,0): 146, 95, 74, (29,407,0): 146, 95, 74, (29,408,0): 150, 98, 76, (29,409,0): 150, 98, 76, (29,410,0): 152, 98, 74, (29,411,0): 152, 98, 74, (29,412,0): 151, 97, 73, (29,413,0): 149, 95, 71, (29,414,0): 148, 92, 69, (29,415,0): 146, 92, 68, (29,416,0): 140, 92, 70, (29,417,0): 134, 87, 67, (29,418,0): 125, 80, 59, (29,419,0): 119, 74, 53, (29,420,0): 116, 71, 52, (29,421,0): 115, 72, 53, (29,422,0): 117, 76, 58, (29,423,0): 120, 78, 62, (29,424,0): 115, 76, 61, (29,425,0): 114, 77, 61, (29,426,0): 113, 77, 63, (29,427,0): 111, 75, 63, (29,428,0): 106, 72, 62, (29,429,0): 102, 68, 58, (29,430,0): 96, 64, 53, (29,431,0): 94, 61, 52, (29,432,0): 93, 60, 53, (29,433,0): 91, 60, 55, (29,434,0): 91, 60, 55, (29,435,0): 91, 60, 55, (29,436,0): 91, 60, 55, (29,437,0): 91, 60, 55, (29,438,0): 91, 60, 55, (29,439,0): 91, 60, 55, (29,440,0): 95, 64, 59, (29,441,0): 95, 64, 59, (29,442,0): 94, 63, 58, (29,443,0): 93, 62, 57, (29,444,0): 92, 61, 56, (29,445,0): 91, 60, 55, (29,446,0): 90, 59, 54, (29,447,0): 89, 60, 54, (29,448,0): 87, 59, 56, (29,449,0): 85, 60, 56, (29,450,0): 84, 59, 55, (29,451,0): 84, 59, 55, (29,452,0): 85, 60, 56, (29,453,0): 87, 62, 58, (29,454,0): 88, 63, 59, (29,455,0): 89, 64, 60, (29,456,0): 87, 62, 58, (29,457,0): 86, 61, 57, (29,458,0): 85, 60, 56, (29,459,0): 84, 59, 55, (29,460,0): 84, 59, 55, (29,461,0): 85, 60, 56, (29,462,0): 86, 61, 57, (29,463,0): 87, 62, 58, (29,464,0): 86, 60, 59, (29,465,0): 86, 60, 59, (29,466,0): 86, 60, 59, (29,467,0): 86, 60, 59, (29,468,0): 86, 60, 59, (29,469,0): 86, 60, 59, (29,470,0): 86, 61, 57, (29,471,0): 86, 61, 57, (29,472,0): 86, 61, 56, (29,473,0): 86, 61, 56, (29,474,0): 85, 60, 53, (29,475,0): 86, 61, 54, (29,476,0): 87, 62, 55, (29,477,0): 89, 64, 57, (29,478,0): 90, 65, 58, (29,479,0): 92, 68, 58, (29,480,0): 97, 74, 60, (29,481,0): 97, 74, 58, (29,482,0): 97, 74, 60, (29,483,0): 97, 74, 60, (29,484,0): 97, 74, 60, (29,485,0): 97, 74, 60, (29,486,0): 97, 73, 61, (29,487,0): 97, 73, 61, (29,488,0): 96, 72, 62, (29,489,0): 96, 72, 62, (29,490,0): 97, 73, 63, (29,491,0): 97, 73, 63, (29,492,0): 97, 72, 65, (29,493,0): 95, 70, 63, (29,494,0): 94, 69, 62, (29,495,0): 93, 68, 61, (29,496,0): 92, 67, 63, (29,497,0): 93, 68, 64, (29,498,0): 94, 69, 65, (29,499,0): 95, 70, 66, (29,500,0): 95, 70, 66, (29,501,0): 94, 69, 65, (29,502,0): 93, 68, 64, (29,503,0): 92, 67, 63, (29,504,0): 93, 68, 64, (29,505,0): 93, 68, 64, (29,506,0): 93, 68, 64, (29,507,0): 94, 69, 65, (29,508,0): 94, 69, 65, (29,509,0): 95, 70, 66, (29,510,0): 95, 70, 66, (29,511,0): 96, 71, 67, (29,512,0): 95, 70, 65, (29,513,0): 96, 71, 66, (29,514,0): 97, 72, 68, (29,515,0): 98, 73, 69, (29,516,0): 98, 73, 69, (29,517,0): 97, 72, 68, (29,518,0): 96, 70, 69, (29,519,0): 95, 69, 68, (29,520,0): 95, 69, 70, (29,521,0): 93, 67, 68, (29,522,0): 92, 66, 67, (29,523,0): 93, 67, 68, (29,524,0): 95, 69, 72, (29,525,0): 95, 69, 72, (29,526,0): 91, 65, 68, (29,527,0): 87, 62, 65, (29,528,0): 85, 61, 61, (29,529,0): 83, 62, 61, (29,530,0): 83, 61, 63, (29,531,0): 84, 62, 64, (29,532,0): 84, 62, 64, (29,533,0): 84, 62, 64, (29,534,0): 85, 63, 66, (29,535,0): 85, 63, 66, (29,536,0): 82, 59, 65, (29,537,0): 80, 57, 63, (29,538,0): 76, 53, 59, (29,539,0): 72, 49, 55, (29,540,0): 70, 47, 55, (29,541,0): 70, 47, 55, (29,542,0): 70, 47, 55, (29,543,0): 70, 49, 56, (29,544,0): 67, 48, 54, (29,545,0): 66, 49, 55, (29,546,0): 67, 50, 56, (29,547,0): 69, 52, 58, (29,548,0): 71, 52, 56, (29,549,0): 71, 52, 56, (29,550,0): 70, 51, 55, (29,551,0): 70, 51, 55, (29,552,0): 71, 51, 53, (29,553,0): 72, 52, 54, (29,554,0): 74, 52, 54, (29,555,0): 75, 53, 55, (29,556,0): 77, 55, 57, (29,557,0): 79, 57, 59, (29,558,0): 82, 58, 58, (29,559,0): 83, 57, 58, (29,560,0): 85, 56, 58, (29,561,0): 85, 55, 57, (29,562,0): 84, 53, 58, (29,563,0): 83, 52, 57, (29,564,0): 81, 52, 56, (29,565,0): 79, 50, 54, (29,566,0): 76, 49, 54, (29,567,0): 76, 49, 54, (29,568,0): 72, 45, 52, (29,569,0): 72, 45, 52, (29,570,0): 70, 45, 51, (29,571,0): 70, 45, 51, (29,572,0): 67, 44, 52, (29,573,0): 66, 43, 51, (29,574,0): 66, 43, 51, (29,575,0): 66, 43, 49, (29,576,0): 68, 46, 49, (29,577,0): 67, 45, 47, (29,578,0): 66, 44, 46, (29,579,0): 65, 43, 45, (29,580,0): 66, 44, 46, (29,581,0): 68, 46, 48, (29,582,0): 71, 49, 51, (29,583,0): 73, 51, 53, (29,584,0): 72, 50, 52, (29,585,0): 72, 50, 52, (29,586,0): 71, 49, 51, (29,587,0): 70, 48, 50, (29,588,0): 70, 48, 50, (29,589,0): 71, 49, 51, (29,590,0): 72, 50, 52, (29,591,0): 72, 50, 52, (29,592,0): 72, 50, 52, (29,593,0): 72, 50, 52, (29,594,0): 72, 50, 52, (29,595,0): 72, 50, 52, (29,596,0): 72, 50, 52, (29,597,0): 72, 50, 52, (29,598,0): 72, 50, 52, (29,599,0): 72, 50, 52, (30,0,0): 30, 27, 38, (30,1,0): 30, 27, 38, (30,2,0): 31, 28, 39, (30,3,0): 31, 28, 39, (30,4,0): 34, 28, 38, (30,5,0): 35, 27, 38, (30,6,0): 38, 28, 39, (30,7,0): 38, 28, 39, (30,8,0): 39, 27, 37, (30,9,0): 41, 28, 38, (30,10,0): 43, 27, 37, (30,11,0): 44, 28, 38, (30,12,0): 45, 28, 38, (30,13,0): 46, 29, 39, (30,14,0): 46, 29, 37, (30,15,0): 48, 28, 37, (30,16,0): 52, 30, 43, (30,17,0): 52, 30, 43, (30,18,0): 51, 29, 42, (30,19,0): 51, 29, 42, (30,20,0): 49, 29, 41, (30,21,0): 49, 29, 41, (30,22,0): 48, 28, 40, (30,23,0): 48, 28, 40, (30,24,0): 49, 31, 43, (30,25,0): 49, 31, 43, (30,26,0): 48, 32, 43, (30,27,0): 48, 32, 43, (30,28,0): 48, 32, 43, (30,29,0): 48, 32, 43, (30,30,0): 46, 33, 43, (30,31,0): 46, 33, 43, (30,32,0): 41, 29, 43, (30,33,0): 41, 29, 43, (30,34,0): 41, 29, 43, (30,35,0): 41, 29, 43, (30,36,0): 41, 29, 43, (30,37,0): 41, 29, 43, (30,38,0): 41, 29, 43, (30,39,0): 41, 29, 43, (30,40,0): 41, 29, 43, (30,41,0): 41, 29, 43, (30,42,0): 43, 31, 45, (30,43,0): 43, 31, 45, (30,44,0): 43, 31, 45, (30,45,0): 43, 31, 45, (30,46,0): 41, 29, 43, (30,47,0): 42, 28, 43, (30,48,0): 46, 29, 45, (30,49,0): 47, 29, 45, (30,50,0): 47, 29, 45, (30,51,0): 47, 29, 45, (30,52,0): 47, 29, 45, (30,53,0): 47, 29, 45, (30,54,0): 47, 29, 45, (30,55,0): 47, 29, 45, (30,56,0): 45, 27, 43, (30,57,0): 44, 26, 42, (30,58,0): 44, 26, 42, (30,59,0): 44, 26, 42, (30,60,0): 43, 25, 41, (30,61,0): 43, 25, 41, (30,62,0): 42, 24, 40, (30,63,0): 42, 24, 40, (30,64,0): 44, 27, 43, (30,65,0): 43, 26, 42, (30,66,0): 42, 25, 41, (30,67,0): 40, 23, 39, (30,68,0): 38, 21, 37, (30,69,0): 37, 20, 36, (30,70,0): 35, 18, 34, (30,71,0): 35, 18, 34, (30,72,0): 38, 21, 37, (30,73,0): 38, 21, 37, (30,74,0): 38, 21, 37, (30,75,0): 38, 21, 37, (30,76,0): 38, 21, 37, (30,77,0): 38, 21, 37, (30,78,0): 38, 21, 37, (30,79,0): 38, 21, 37, (30,80,0): 34, 17, 36, (30,81,0): 36, 19, 38, (30,82,0): 39, 22, 41, (30,83,0): 38, 21, 40, (30,84,0): 35, 18, 37, (30,85,0): 32, 15, 34, (30,86,0): 33, 16, 35, (30,87,0): 35, 18, 37, (30,88,0): 36, 19, 38, (30,89,0): 36, 19, 38, (30,90,0): 35, 18, 37, (30,91,0): 35, 18, 37, (30,92,0): 34, 17, 36, (30,93,0): 34, 17, 36, (30,94,0): 33, 16, 35, (30,95,0): 31, 16, 35, (30,96,0): 27, 18, 37, (30,97,0): 24, 20, 37, (30,98,0): 24, 20, 37, (30,99,0): 24, 20, 37, (30,100,0): 24, 20, 37, (30,101,0): 24, 20, 37, (30,102,0): 24, 20, 37, (30,103,0): 24, 20, 37, (30,104,0): 29, 25, 42, (30,105,0): 29, 25, 42, (30,106,0): 29, 25, 42, (30,107,0): 29, 25, 42, (30,108,0): 29, 25, 42, (30,109,0): 29, 25, 42, (30,110,0): 29, 25, 42, (30,111,0): 31, 24, 42, (30,112,0): 33, 21, 45, (30,113,0): 34, 20, 45, (30,114,0): 35, 19, 45, (30,115,0): 34, 20, 45, (30,116,0): 34, 20, 45, (30,117,0): 33, 21, 45, (30,118,0): 33, 21, 45, (30,119,0): 33, 21, 45, (30,120,0): 30, 18, 42, (30,121,0): 29, 19, 43, (30,122,0): 29, 19, 43, (30,123,0): 28, 20, 43, (30,124,0): 29, 21, 44, (30,125,0): 29, 21, 44, (30,126,0): 30, 22, 45, (30,127,0): 28, 23, 45, (30,128,0): 25, 22, 43, (30,129,0): 25, 22, 43, (30,130,0): 25, 22, 43, (30,131,0): 26, 23, 44, (30,132,0): 27, 22, 44, (30,133,0): 28, 23, 45, (30,134,0): 28, 23, 45, (30,135,0): 28, 23, 45, (30,136,0): 31, 23, 46, (30,137,0): 31, 23, 46, (30,138,0): 32, 22, 46, (30,139,0): 32, 22, 46, (30,140,0): 32, 22, 46, (30,141,0): 32, 22, 46, (30,142,0): 34, 22, 46, (30,143,0): 32, 22, 46, (30,144,0): 30, 20, 44, (30,145,0): 29, 21, 44, (30,146,0): 29, 21, 44, (30,147,0): 29, 21, 44, (30,148,0): 29, 21, 44, (30,149,0): 29, 21, 44, (30,150,0): 29, 21, 44, (30,151,0): 29, 21, 44, (30,152,0): 29, 21, 44, (30,153,0): 29, 21, 44, (30,154,0): 29, 21, 44, (30,155,0): 29, 21, 44, (30,156,0): 29, 21, 44, (30,157,0): 29, 21, 44, (30,158,0): 29, 21, 44, (30,159,0): 27, 22, 44, (30,160,0): 27, 22, 44, (30,161,0): 26, 23, 44, (30,162,0): 26, 23, 44, (30,163,0): 26, 23, 44, (30,164,0): 27, 22, 44, (30,165,0): 27, 22, 44, (30,166,0): 27, 22, 44, (30,167,0): 27, 22, 44, (30,168,0): 31, 23, 46, (30,169,0): 31, 23, 46, (30,170,0): 32, 22, 46, (30,171,0): 32, 22, 46, (30,172,0): 32, 22, 46, (30,173,0): 32, 22, 46, (30,174,0): 34, 22, 46, (30,175,0): 32, 22, 46, (30,176,0): 33, 23, 47, (30,177,0): 32, 24, 47, (30,178,0): 32, 24, 47, (30,179,0): 32, 24, 47, (30,180,0): 32, 24, 47, (30,181,0): 32, 24, 47, (30,182,0): 32, 24, 47, (30,183,0): 32, 24, 47, (30,184,0): 32, 24, 47, (30,185,0): 32, 24, 47, (30,186,0): 32, 24, 47, (30,187,0): 32, 24, 47, (30,188,0): 32, 24, 47, (30,189,0): 32, 24, 47, (30,190,0): 32, 24, 47, (30,191,0): 32, 24, 45, (30,192,0): 33, 28, 48, (30,193,0): 33, 29, 46, (30,194,0): 35, 28, 46, (30,195,0): 35, 28, 46, (30,196,0): 35, 28, 46, (30,197,0): 35, 28, 46, (30,198,0): 36, 27, 46, (30,199,0): 36, 27, 46, (30,200,0): 43, 31, 51, (30,201,0): 42, 30, 50, (30,202,0): 40, 28, 48, (30,203,0): 39, 27, 47, (30,204,0): 40, 27, 47, (30,205,0): 41, 28, 48, (30,206,0): 43, 30, 50, (30,207,0): 45, 30, 51, (30,208,0): 44, 27, 46, (30,209,0): 46, 27, 47, (30,210,0): 47, 28, 48, (30,211,0): 48, 29, 49, (30,212,0): 49, 30, 50, (30,213,0): 51, 32, 52, (30,214,0): 51, 32, 52, (30,215,0): 52, 33, 53, (30,216,0): 50, 31, 51, (30,217,0): 50, 31, 51, (30,218,0): 50, 31, 51, (30,219,0): 50, 31, 51, (30,220,0): 50, 31, 51, (30,221,0): 50, 31, 51, (30,222,0): 50, 31, 51, (30,223,0): 49, 32, 51, (30,224,0): 49, 34, 53, (30,225,0): 47, 34, 52, (30,226,0): 47, 34, 52, (30,227,0): 46, 33, 51, (30,228,0): 46, 33, 51, (30,229,0): 45, 32, 50, (30,230,0): 45, 32, 50, (30,231,0): 45, 32, 50, (30,232,0): 45, 32, 50, (30,233,0): 44, 31, 49, (30,234,0): 43, 30, 48, (30,235,0): 43, 30, 48, (30,236,0): 43, 30, 48, (30,237,0): 44, 31, 49, (30,238,0): 46, 33, 51, (30,239,0): 46, 33, 50, (30,240,0): 44, 31, 48, (30,241,0): 44, 32, 46, (30,242,0): 44, 32, 46, (30,243,0): 45, 33, 47, (30,244,0): 45, 33, 47, (30,245,0): 46, 34, 48, (30,246,0): 47, 33, 48, (30,247,0): 47, 33, 48, (30,248,0): 51, 34, 50, (30,249,0): 51, 34, 50, (30,250,0): 51, 33, 49, (30,251,0): 51, 33, 49, (30,252,0): 50, 32, 48, (30,253,0): 50, 32, 48, (30,254,0): 49, 31, 47, (30,255,0): 49, 31, 47, (30,256,0): 48, 30, 44, (30,257,0): 49, 31, 45, (30,258,0): 51, 33, 45, (30,259,0): 53, 35, 47, (30,260,0): 56, 36, 48, (30,261,0): 56, 36, 48, (30,262,0): 56, 36, 47, (30,263,0): 55, 35, 46, (30,264,0): 60, 39, 48, (30,265,0): 60, 39, 48, (30,266,0): 61, 38, 48, (30,267,0): 62, 39, 49, (30,268,0): 62, 39, 47, (30,269,0): 63, 40, 48, (30,270,0): 65, 39, 48, (30,271,0): 66, 39, 48, (30,272,0): 72, 42, 52, (30,273,0): 73, 41, 52, (30,274,0): 74, 42, 53, (30,275,0): 75, 43, 54, (30,276,0): 76, 45, 53, (30,277,0): 77, 46, 54, (30,278,0): 79, 46, 55, (30,279,0): 79, 46, 55, (30,280,0): 86, 51, 58, (30,281,0): 86, 51, 58, (30,282,0): 88, 51, 58, (30,283,0): 89, 52, 59, (30,284,0): 90, 53, 60, (30,285,0): 91, 54, 61, (30,286,0): 92, 56, 60, (30,287,0): 92, 56, 60, (30,288,0): 96, 55, 59, (30,289,0): 96, 55, 59, (30,290,0): 96, 55, 59, (30,291,0): 97, 56, 60, (30,292,0): 97, 57, 58, (30,293,0): 98, 58, 59, (30,294,0): 98, 58, 59, (30,295,0): 99, 59, 60, (30,296,0): 100, 60, 60, (30,297,0): 102, 62, 62, (30,298,0): 104, 64, 62, (30,299,0): 103, 63, 61, (30,300,0): 103, 63, 61, (30,301,0): 104, 64, 62, (30,302,0): 108, 69, 64, (30,303,0): 113, 72, 66, (30,304,0): 115, 71, 62, (30,305,0): 120, 74, 61, (30,306,0): 125, 78, 60, (30,307,0): 130, 84, 61, (30,308,0): 137, 87, 60, (30,309,0): 140, 91, 61, (30,310,0): 143, 92, 61, (30,311,0): 144, 93, 62, (30,312,0): 142, 91, 62, (30,313,0): 143, 92, 63, (30,314,0): 143, 93, 66, (30,315,0): 142, 95, 67, (30,316,0): 142, 95, 65, (30,317,0): 140, 95, 62, (30,318,0): 138, 95, 60, (30,319,0): 139, 95, 58, (30,320,0): 147, 97, 64, (30,321,0): 149, 96, 64, (30,322,0): 149, 96, 64, (30,323,0): 148, 98, 65, (30,324,0): 148, 98, 65, (30,325,0): 147, 98, 65, (30,326,0): 146, 100, 66, (30,327,0): 145, 101, 66, (30,328,0): 142, 99, 64, (30,329,0): 140, 100, 64, (30,330,0): 138, 100, 63, (30,331,0): 136, 101, 63, (30,332,0): 135, 100, 62, (30,333,0): 134, 100, 62, (30,334,0): 133, 101, 62, (30,335,0): 132, 100, 62, (30,336,0): 132, 97, 67, (30,337,0): 133, 98, 70, (30,338,0): 134, 99, 71, (30,339,0): 135, 100, 72, (30,340,0): 134, 98, 72, (30,341,0): 132, 96, 70, (30,342,0): 131, 95, 69, (30,343,0): 129, 93, 67, (30,344,0): 127, 91, 67, (30,345,0): 127, 91, 67, (30,346,0): 128, 92, 70, (30,347,0): 129, 93, 71, (30,348,0): 128, 92, 70, (30,349,0): 127, 91, 69, (30,350,0): 125, 88, 69, (30,351,0): 125, 87, 66, (30,352,0): 129, 88, 66, (30,353,0): 130, 88, 66, (30,354,0): 131, 88, 69, (30,355,0): 132, 89, 70, (30,356,0): 132, 89, 72, (30,357,0): 131, 88, 72, (30,358,0): 130, 86, 73, (30,359,0): 130, 86, 73, (30,360,0): 129, 85, 72, (30,361,0): 129, 85, 72, (30,362,0): 131, 88, 72, (30,363,0): 133, 90, 73, (30,364,0): 135, 92, 73, (30,365,0): 137, 94, 75, (30,366,0): 139, 97, 75, (30,367,0): 140, 98, 74, (30,368,0): 148, 101, 81, (30,369,0): 147, 100, 80, (30,370,0): 147, 100, 80, (30,371,0): 145, 98, 78, (30,372,0): 143, 98, 77, (30,373,0): 142, 97, 76, (30,374,0): 139, 96, 77, (30,375,0): 138, 95, 76, (30,376,0): 139, 96, 79, (30,377,0): 139, 96, 79, (30,378,0): 137, 95, 79, (30,379,0): 137, 95, 79, (30,380,0): 136, 97, 80, (30,381,0): 137, 98, 81, (30,382,0): 139, 100, 83, (30,383,0): 142, 100, 84, (30,384,0): 143, 100, 84, (30,385,0): 145, 99, 84, (30,386,0): 145, 99, 84, (30,387,0): 146, 100, 85, (30,388,0): 146, 100, 85, (30,389,0): 147, 101, 86, (30,390,0): 147, 101, 85, (30,391,0): 147, 101, 85, (30,392,0): 144, 99, 80, (30,393,0): 146, 99, 81, (30,394,0): 148, 101, 81, (30,395,0): 148, 101, 81, (30,396,0): 149, 101, 81, (30,397,0): 149, 101, 81, (30,398,0): 148, 100, 80, (30,399,0): 147, 99, 79, (30,400,0): 147, 99, 79, (30,401,0): 146, 98, 78, (30,402,0): 147, 96, 77, (30,403,0): 146, 95, 76, (30,404,0): 146, 95, 74, (30,405,0): 148, 97, 76, (30,406,0): 150, 98, 77, (30,407,0): 151, 99, 77, (30,408,0): 154, 99, 78, (30,409,0): 155, 100, 79, (30,410,0): 155, 101, 77, (30,411,0): 155, 101, 77, (30,412,0): 155, 99, 74, (30,413,0): 153, 97, 72, (30,414,0): 151, 95, 70, (30,415,0): 149, 95, 71, (30,416,0): 142, 94, 72, (30,417,0): 136, 90, 67, (30,418,0): 130, 83, 63, (30,419,0): 122, 77, 56, (30,420,0): 119, 74, 55, (30,421,0): 116, 73, 54, (30,422,0): 117, 76, 58, (30,423,0): 118, 76, 60, (30,424,0): 114, 75, 60, (30,425,0): 114, 77, 61, (30,426,0): 113, 77, 63, (30,427,0): 113, 77, 63, (30,428,0): 109, 75, 63, (30,429,0): 105, 71, 59, (30,430,0): 100, 66, 56, (30,431,0): 97, 64, 55, (30,432,0): 95, 62, 55, (30,433,0): 95, 62, 57, (30,434,0): 95, 62, 57, (30,435,0): 95, 62, 57, (30,436,0): 95, 62, 57, (30,437,0): 95, 62, 57, (30,438,0): 95, 62, 57, (30,439,0): 95, 62, 57, (30,440,0): 100, 67, 62, (30,441,0): 99, 66, 61, (30,442,0): 98, 65, 60, (30,443,0): 97, 64, 59, (30,444,0): 96, 63, 58, (30,445,0): 95, 62, 57, (30,446,0): 94, 61, 56, (30,447,0): 91, 60, 55, (30,448,0): 89, 61, 58, (30,449,0): 86, 61, 57, (30,450,0): 85, 60, 56, (30,451,0): 84, 59, 55, (30,452,0): 84, 59, 55, (30,453,0): 86, 61, 57, (30,454,0): 88, 63, 59, (30,455,0): 89, 64, 60, (30,456,0): 87, 62, 58, (30,457,0): 86, 61, 57, (30,458,0): 85, 60, 56, (30,459,0): 84, 59, 55, (30,460,0): 84, 59, 55, (30,461,0): 85, 60, 56, (30,462,0): 86, 61, 57, (30,463,0): 87, 62, 58, (30,464,0): 86, 60, 59, (30,465,0): 86, 60, 59, (30,466,0): 86, 60, 59, (30,467,0): 86, 60, 59, (30,468,0): 86, 60, 59, (30,469,0): 86, 60, 59, (30,470,0): 86, 61, 57, (30,471,0): 86, 61, 57, (30,472,0): 86, 61, 56, (30,473,0): 86, 61, 56, (30,474,0): 85, 60, 53, (30,475,0): 86, 61, 54, (30,476,0): 87, 62, 55, (30,477,0): 89, 64, 57, (30,478,0): 90, 65, 58, (30,479,0): 92, 68, 58, (30,480,0): 97, 74, 60, (30,481,0): 97, 74, 58, (30,482,0): 97, 74, 58, (30,483,0): 97, 74, 58, (30,484,0): 97, 74, 60, (30,485,0): 97, 74, 60, (30,486,0): 97, 73, 61, (30,487,0): 97, 73, 61, (30,488,0): 95, 71, 59, (30,489,0): 96, 72, 60, (30,490,0): 97, 73, 63, (30,491,0): 97, 73, 63, (30,492,0): 96, 71, 64, (30,493,0): 95, 70, 63, (30,494,0): 94, 69, 62, (30,495,0): 93, 68, 61, (30,496,0): 92, 67, 63, (30,497,0): 93, 68, 64, (30,498,0): 94, 69, 65, (30,499,0): 95, 70, 66, (30,500,0): 95, 70, 66, (30,501,0): 94, 69, 65, (30,502,0): 93, 68, 64, (30,503,0): 92, 67, 63, (30,504,0): 92, 67, 63, (30,505,0): 93, 68, 64, (30,506,0): 93, 68, 64, (30,507,0): 94, 69, 65, (30,508,0): 94, 69, 65, (30,509,0): 95, 70, 66, (30,510,0): 95, 70, 66, (30,511,0): 95, 70, 66, (30,512,0): 95, 70, 65, (30,513,0): 96, 71, 66, (30,514,0): 97, 72, 68, (30,515,0): 98, 73, 69, (30,516,0): 98, 73, 69, (30,517,0): 97, 72, 68, (30,518,0): 96, 70, 69, (30,519,0): 95, 69, 68, (30,520,0): 95, 69, 70, (30,521,0): 93, 67, 68, (30,522,0): 92, 66, 67, (30,523,0): 94, 68, 69, (30,524,0): 95, 69, 72, (30,525,0): 95, 69, 72, (30,526,0): 92, 66, 69, (30,527,0): 88, 63, 66, (30,528,0): 87, 63, 63, (30,529,0): 85, 64, 63, (30,530,0): 85, 63, 65, (30,531,0): 84, 62, 64, (30,532,0): 84, 62, 64, (30,533,0): 83, 61, 63, (30,534,0): 83, 61, 64, (30,535,0): 83, 61, 64, (30,536,0): 82, 59, 65, (30,537,0): 80, 57, 63, (30,538,0): 76, 53, 59, (30,539,0): 72, 49, 55, (30,540,0): 70, 47, 55, (30,541,0): 70, 47, 55, (30,542,0): 70, 47, 55, (30,543,0): 70, 49, 56, (30,544,0): 67, 48, 54, (30,545,0): 66, 49, 55, (30,546,0): 67, 50, 56, (30,547,0): 68, 51, 57, (30,548,0): 69, 53, 56, (30,549,0): 69, 53, 56, (30,550,0): 70, 51, 55, (30,551,0): 69, 50, 54, (30,552,0): 71, 51, 53, (30,553,0): 72, 52, 54, (30,554,0): 74, 52, 54, (30,555,0): 76, 54, 56, (30,556,0): 78, 56, 58, (30,557,0): 79, 57, 59, (30,558,0): 81, 60, 59, (30,559,0): 83, 59, 59, (30,560,0): 83, 54, 58, (30,561,0): 84, 53, 58, (30,562,0): 82, 53, 57, (30,563,0): 81, 52, 56, (30,564,0): 80, 51, 56, (30,565,0): 79, 50, 55, (30,566,0): 77, 50, 55, (30,567,0): 76, 49, 54, (30,568,0): 71, 46, 52, (30,569,0): 70, 45, 51, (30,570,0): 70, 44, 53, (30,571,0): 70, 44, 53, (30,572,0): 67, 44, 52, (30,573,0): 67, 44, 52, (30,574,0): 67, 44, 54, (30,575,0): 67, 44, 52, (30,576,0): 68, 46, 49, (30,577,0): 67, 45, 47, (30,578,0): 65, 43, 45, (30,579,0): 64, 42, 44, (30,580,0): 66, 44, 46, (30,581,0): 69, 47, 49, (30,582,0): 72, 50, 52, (30,583,0): 74, 52, 54, (30,584,0): 73, 51, 53, (30,585,0): 73, 51, 53, (30,586,0): 74, 52, 54, (30,587,0): 74, 52, 54, (30,588,0): 74, 52, 54, (30,589,0): 74, 52, 54, (30,590,0): 73, 51, 53, (30,591,0): 73, 51, 53, (30,592,0): 72, 50, 52, (30,593,0): 72, 50, 52, (30,594,0): 72, 50, 52, (30,595,0): 72, 50, 52, (30,596,0): 72, 50, 52, (30,597,0): 72, 50, 52, (30,598,0): 73, 51, 53, (30,599,0): 73, 51, 53, (31,0,0): 32, 26, 40, (31,1,0): 32, 26, 38, (31,2,0): 33, 27, 39, (31,3,0): 33, 27, 39, (31,4,0): 35, 27, 40, (31,5,0): 35, 27, 38, (31,6,0): 38, 28, 39, (31,7,0): 39, 27, 39, (31,8,0): 39, 27, 39, (31,9,0): 40, 27, 37, (31,10,0): 43, 27, 38, (31,11,0): 43, 27, 37, (31,12,0): 45, 28, 38, (31,13,0): 45, 28, 38, (31,14,0): 46, 29, 39, (31,15,0): 46, 29, 39, (31,16,0): 51, 31, 43, (31,17,0): 51, 31, 43, (31,18,0): 51, 29, 42, (31,19,0): 50, 30, 42, (31,20,0): 49, 29, 41, (31,21,0): 49, 29, 41, (31,22,0): 48, 28, 40, (31,23,0): 48, 28, 40, (31,24,0): 49, 31, 43, (31,25,0): 49, 31, 43, (31,26,0): 48, 32, 43, (31,27,0): 48, 32, 43, (31,28,0): 48, 32, 43, (31,29,0): 48, 32, 43, (31,30,0): 48, 32, 43, (31,31,0): 46, 33, 43, (31,32,0): 42, 28, 43, (31,33,0): 41, 29, 43, (31,34,0): 42, 28, 43, (31,35,0): 41, 29, 43, (31,36,0): 42, 28, 43, (31,37,0): 41, 29, 43, (31,38,0): 42, 28, 43, (31,39,0): 41, 29, 43, (31,40,0): 42, 28, 43, (31,41,0): 41, 29, 43, (31,42,0): 44, 30, 45, (31,43,0): 43, 31, 45, (31,44,0): 44, 30, 45, (31,45,0): 43, 31, 45, (31,46,0): 42, 28, 43, (31,47,0): 42, 28, 43, (31,48,0): 46, 29, 45, (31,49,0): 47, 29, 45, (31,50,0): 47, 29, 45, (31,51,0): 47, 29, 45, (31,52,0): 47, 29, 45, (31,53,0): 47, 29, 45, (31,54,0): 47, 29, 45, (31,55,0): 47, 29, 45, (31,56,0): 45, 27, 43, (31,57,0): 44, 26, 42, (31,58,0): 44, 26, 42, (31,59,0): 43, 25, 41, (31,60,0): 43, 25, 41, (31,61,0): 42, 24, 40, (31,62,0): 42, 24, 40, (31,63,0): 42, 24, 40, (31,64,0): 44, 27, 43, (31,65,0): 43, 26, 42, (31,66,0): 42, 25, 41, (31,67,0): 40, 23, 39, (31,68,0): 38, 21, 37, (31,69,0): 36, 19, 35, (31,70,0): 35, 18, 34, (31,71,0): 32, 18, 33, (31,72,0): 36, 22, 37, (31,73,0): 36, 22, 39, (31,74,0): 36, 22, 39, (31,75,0): 36, 22, 39, (31,76,0): 36, 22, 39, (31,77,0): 36, 22, 39, (31,78,0): 36, 22, 39, (31,79,0): 36, 22, 39, (31,80,0): 30, 15, 34, (31,81,0): 34, 19, 38, (31,82,0): 39, 22, 41, (31,83,0): 37, 22, 41, (31,84,0): 35, 18, 37, (31,85,0): 30, 15, 34, (31,86,0): 32, 15, 34, (31,87,0): 31, 16, 35, (31,88,0): 36, 19, 38, (31,89,0): 34, 19, 38, (31,90,0): 35, 18, 37, (31,91,0): 33, 18, 37, (31,92,0): 34, 17, 36, (31,93,0): 32, 17, 36, (31,94,0): 33, 16, 35, (31,95,0): 30, 17, 35, (31,96,0): 27, 18, 37, (31,97,0): 26, 19, 37, (31,98,0): 26, 18, 39, (31,99,0): 26, 19, 37, (31,100,0): 26, 18, 39, (31,101,0): 26, 19, 37, (31,102,0): 26, 18, 39, (31,103,0): 26, 19, 37, (31,104,0): 32, 24, 45, (31,105,0): 32, 25, 43, (31,106,0): 32, 24, 45, (31,107,0): 32, 25, 43, (31,108,0): 32, 24, 45, (31,109,0): 32, 25, 43, (31,110,0): 32, 24, 45, (31,111,0): 33, 24, 45, (31,112,0): 34, 20, 45, (31,113,0): 34, 20, 45, (31,114,0): 35, 19, 45, (31,115,0): 34, 20, 45, (31,116,0): 34, 20, 45, (31,117,0): 34, 20, 45, (31,118,0): 33, 21, 45, (31,119,0): 33, 21, 45, (31,120,0): 30, 18, 42, (31,121,0): 31, 19, 43, (31,122,0): 29, 19, 43, (31,123,0): 30, 20, 44, (31,124,0): 30, 20, 44, (31,125,0): 30, 22, 45, (31,126,0): 31, 21, 45, (31,127,0): 30, 22, 45, (31,128,0): 26, 21, 43, (31,129,0): 25, 22, 43, (31,130,0): 26, 21, 43, (31,131,0): 27, 22, 44, (31,132,0): 27, 22, 44, (31,133,0): 28, 23, 45, (31,134,0): 28, 23, 45, (31,135,0): 28, 23, 45, (31,136,0): 31, 23, 46, (31,137,0): 31, 23, 46, (31,138,0): 32, 22, 46, (31,139,0): 32, 22, 46, (31,140,0): 32, 22, 46, (31,141,0): 32, 22, 46, (31,142,0): 32, 22, 46, (31,143,0): 32, 22, 46, (31,144,0): 28, 20, 43, (31,145,0): 28, 20, 43, (31,146,0): 28, 20, 43, (31,147,0): 28, 20, 43, (31,148,0): 28, 20, 43, (31,149,0): 28, 20, 43, (31,150,0): 28, 20, 43, (31,151,0): 28, 20, 43, (31,152,0): 29, 21, 44, (31,153,0): 29, 21, 44, (31,154,0): 29, 21, 44, (31,155,0): 29, 21, 44, (31,156,0): 29, 21, 44, (31,157,0): 29, 21, 44, (31,158,0): 29, 21, 44, (31,159,0): 29, 21, 44, (31,160,0): 27, 22, 44, (31,161,0): 26, 23, 44, (31,162,0): 27, 22, 44, (31,163,0): 27, 22, 44, (31,164,0): 27, 22, 44, (31,165,0): 27, 22, 44, (31,166,0): 27, 22, 44, (31,167,0): 27, 22, 44, (31,168,0): 31, 23, 46, (31,169,0): 31, 23, 46, (31,170,0): 32, 22, 46, (31,171,0): 32, 22, 46, (31,172,0): 32, 22, 46, (31,173,0): 32, 22, 46, (31,174,0): 32, 22, 46, (31,175,0): 32, 22, 46, (31,176,0): 32, 24, 47, (31,177,0): 32, 24, 47, (31,178,0): 32, 24, 47, (31,179,0): 32, 24, 47, (31,180,0): 32, 24, 47, (31,181,0): 32, 24, 47, (31,182,0): 32, 24, 47, (31,183,0): 32, 24, 47, (31,184,0): 32, 24, 47, (31,185,0): 32, 24, 47, (31,186,0): 32, 24, 47, (31,187,0): 32, 24, 47, (31,188,0): 32, 24, 47, (31,189,0): 32, 24, 47, (31,190,0): 32, 24, 47, (31,191,0): 32, 24, 45, (31,192,0): 35, 27, 48, (31,193,0): 35, 28, 46, (31,194,0): 35, 28, 46, (31,195,0): 35, 28, 46, (31,196,0): 35, 28, 46, (31,197,0): 36, 27, 46, (31,198,0): 36, 27, 46, (31,199,0): 36, 27, 46, (31,200,0): 43, 31, 51, (31,201,0): 42, 30, 50, (31,202,0): 40, 28, 48, (31,203,0): 40, 27, 47, (31,204,0): 40, 27, 47, (31,205,0): 41, 28, 48, (31,206,0): 43, 30, 50, (31,207,0): 45, 30, 51, (31,208,0): 44, 27, 46, (31,209,0): 46, 27, 47, (31,210,0): 47, 28, 48, (31,211,0): 48, 29, 49, (31,212,0): 50, 31, 51, (31,213,0): 51, 32, 52, (31,214,0): 52, 33, 53, (31,215,0): 52, 33, 53, (31,216,0): 50, 31, 51, (31,217,0): 50, 31, 51, (31,218,0): 50, 31, 51, (31,219,0): 50, 31, 51, (31,220,0): 50, 31, 51, (31,221,0): 50, 31, 51, (31,222,0): 50, 31, 51, (31,223,0): 49, 32, 51, (31,224,0): 49, 34, 53, (31,225,0): 48, 35, 53, (31,226,0): 47, 34, 52, (31,227,0): 47, 34, 52, (31,228,0): 46, 33, 51, (31,229,0): 46, 33, 51, (31,230,0): 45, 32, 50, (31,231,0): 45, 32, 50, (31,232,0): 44, 31, 49, (31,233,0): 44, 31, 49, (31,234,0): 43, 30, 48, (31,235,0): 43, 30, 48, (31,236,0): 44, 31, 49, (31,237,0): 45, 32, 50, (31,238,0): 47, 34, 52, (31,239,0): 48, 35, 52, (31,240,0): 44, 32, 46, (31,241,0): 44, 32, 44, (31,242,0): 44, 32, 46, (31,243,0): 45, 33, 45, (31,244,0): 45, 33, 47, (31,245,0): 47, 33, 46, (31,246,0): 47, 33, 48, (31,247,0): 47, 33, 46, (31,248,0): 51, 34, 50, (31,249,0): 51, 35, 48, (31,250,0): 51, 33, 49, (31,251,0): 51, 33, 47, (31,252,0): 50, 32, 48, (31,253,0): 50, 32, 46, (31,254,0): 49, 31, 47, (31,255,0): 49, 31, 45, (31,256,0): 48, 30, 44, (31,257,0): 49, 31, 45, (31,258,0): 51, 33, 47, (31,259,0): 53, 35, 47, (31,260,0): 56, 35, 50, (31,261,0): 56, 36, 48, (31,262,0): 56, 36, 48, (31,263,0): 55, 35, 46, (31,264,0): 60, 38, 50, (31,265,0): 60, 39, 48, (31,266,0): 62, 39, 49, (31,267,0): 62, 39, 49, (31,268,0): 62, 39, 49, (31,269,0): 62, 39, 47, (31,270,0): 65, 39, 50, (31,271,0): 65, 39, 48, (31,272,0): 72, 42, 52, (31,273,0): 72, 42, 52, (31,274,0): 73, 43, 53, (31,275,0): 74, 44, 52, (31,276,0): 76, 45, 53, (31,277,0): 77, 46, 54, (31,278,0): 78, 47, 55, (31,279,0): 79, 46, 53, (31,280,0): 84, 51, 58, (31,281,0): 86, 51, 57, (31,282,0): 87, 52, 58, (31,283,0): 88, 53, 59, (31,284,0): 89, 54, 60, (31,285,0): 90, 55, 59, (31,286,0): 92, 56, 60, (31,287,0): 93, 57, 59, (31,288,0): 95, 56, 59, (31,289,0): 96, 55, 59, (31,290,0): 97, 56, 60, (31,291,0): 97, 57, 58, (31,292,0): 98, 58, 59, (31,293,0): 98, 58, 59, (31,294,0): 99, 59, 60, (31,295,0): 99, 59, 59, (31,296,0): 100, 60, 60, (31,297,0): 102, 62, 60, (31,298,0): 104, 64, 62, (31,299,0): 104, 64, 62, (31,300,0): 103, 63, 61, (31,301,0): 105, 66, 61, (31,302,0): 108, 69, 64, (31,303,0): 112, 73, 66, (31,304,0): 114, 71, 64, (31,305,0): 117, 73, 62, (31,306,0): 123, 77, 61, (31,307,0): 129, 83, 60, (31,308,0): 135, 88, 62, (31,309,0): 140, 91, 61, (31,310,0): 143, 93, 60, (31,311,0): 144, 94, 61, (31,312,0): 141, 90, 59, (31,313,0): 141, 92, 60, (31,314,0): 144, 95, 65, (31,315,0): 144, 97, 67, (31,316,0): 144, 97, 67, (31,317,0): 142, 97, 64, (31,318,0): 140, 96, 59, (31,319,0): 141, 93, 57, (31,320,0): 150, 97, 63, (31,321,0): 151, 97, 63, (31,322,0): 151, 97, 63, (31,323,0): 150, 97, 63, (31,324,0): 149, 99, 66, (31,325,0): 148, 99, 66, (31,326,0): 146, 100, 66, (31,327,0): 145, 101, 66, (31,328,0): 142, 99, 64, (31,329,0): 140, 100, 64, (31,330,0): 140, 100, 64, (31,331,0): 138, 100, 63, (31,332,0): 136, 101, 63, (31,333,0): 135, 100, 62, (31,334,0): 135, 100, 62, (31,335,0): 133, 99, 62, (31,336,0): 133, 98, 66, (31,337,0): 133, 98, 68, (31,338,0): 135, 100, 70, (31,339,0): 135, 100, 72, (31,340,0): 135, 100, 72, (31,341,0): 133, 98, 70, (31,342,0): 131, 96, 68, (31,343,0): 130, 94, 68, (31,344,0): 127, 91, 65, (31,345,0): 128, 92, 68, (31,346,0): 129, 93, 69, (31,347,0): 130, 94, 70, (31,348,0): 129, 93, 69, (31,349,0): 127, 91, 69, (31,350,0): 125, 89, 67, (31,351,0): 125, 87, 66, (31,352,0): 129, 89, 64, (31,353,0): 130, 90, 65, (31,354,0): 132, 90, 68, (31,355,0): 132, 91, 69, (31,356,0): 133, 90, 71, (31,357,0): 131, 90, 70, (31,358,0): 131, 88, 71, (31,359,0): 129, 87, 71, (31,360,0): 129, 86, 70, (31,361,0): 129, 88, 70, (31,362,0): 131, 88, 71, (31,363,0): 132, 91, 71, (31,364,0): 135, 92, 73, (31,365,0): 137, 96, 74, (31,366,0): 139, 97, 75, (31,367,0): 140, 98, 74, (31,368,0): 147, 102, 79, (31,369,0): 147, 102, 81, (31,370,0): 147, 100, 80, (31,371,0): 145, 100, 79, (31,372,0): 143, 98, 77, (31,373,0): 142, 97, 76, (31,374,0): 139, 96, 77, (31,375,0): 138, 95, 76, (31,376,0): 139, 96, 79, (31,377,0): 139, 96, 79, (31,378,0): 138, 97, 79, (31,379,0): 138, 96, 80, (31,380,0): 138, 96, 80, (31,381,0): 138, 99, 82, (31,382,0): 142, 100, 84, (31,383,0): 143, 101, 85, (31,384,0): 143, 100, 84, (31,385,0): 145, 99, 84, (31,386,0): 146, 100, 85, (31,387,0): 146, 100, 85, (31,388,0): 147, 101, 86, (31,389,0): 147, 101, 86, (31,390,0): 148, 102, 86, (31,391,0): 148, 102, 86, (31,392,0): 149, 102, 84, (31,393,0): 150, 103, 85, (31,394,0): 152, 103, 86, (31,395,0): 152, 104, 84, (31,396,0): 150, 102, 82, (31,397,0): 148, 100, 80, (31,398,0): 147, 99, 79, (31,399,0): 146, 98, 78, (31,400,0): 150, 102, 82, (31,401,0): 149, 101, 81, (31,402,0): 150, 99, 80, (31,403,0): 149, 98, 79, (31,404,0): 149, 98, 79, (31,405,0): 151, 100, 79, (31,406,0): 153, 101, 79, (31,407,0): 155, 103, 81, (31,408,0): 157, 102, 81, (31,409,0): 157, 103, 79, (31,410,0): 158, 104, 80, (31,411,0): 157, 103, 77, (31,412,0): 157, 101, 76, (31,413,0): 155, 99, 72, (31,414,0): 154, 98, 73, (31,415,0): 151, 97, 71, (31,416,0): 144, 94, 69, (31,417,0): 139, 91, 68, (31,418,0): 135, 87, 64, (31,419,0): 129, 81, 59, (31,420,0): 124, 77, 57, (31,421,0): 122, 75, 57, (31,422,0): 120, 75, 56, (31,423,0): 118, 75, 58, (31,424,0): 114, 72, 56, (31,425,0): 113, 74, 59, (31,426,0): 114, 76, 63, (31,427,0): 114, 78, 64, (31,428,0): 110, 76, 64, (31,429,0): 106, 74, 61, (31,430,0): 102, 70, 59, (31,431,0): 100, 67, 58, (31,432,0): 98, 65, 58, (31,433,0): 96, 65, 60, (31,434,0): 98, 65, 60, (31,435,0): 96, 65, 60, (31,436,0): 98, 65, 60, (31,437,0): 96, 65, 60, (31,438,0): 98, 65, 60, (31,439,0): 96, 65, 60, (31,440,0): 101, 68, 63, (31,441,0): 99, 68, 63, (31,442,0): 100, 67, 62, (31,443,0): 96, 65, 60, (31,444,0): 97, 64, 59, (31,445,0): 94, 63, 58, (31,446,0): 95, 62, 57, (31,447,0): 92, 61, 56, (31,448,0): 91, 62, 58, (31,449,0): 89, 61, 57, (31,450,0): 87, 59, 56, (31,451,0): 86, 58, 55, (31,452,0): 86, 58, 55, (31,453,0): 87, 59, 56, (31,454,0): 89, 61, 58, (31,455,0): 88, 63, 59, (31,456,0): 87, 62, 58, (31,457,0): 86, 61, 57, (31,458,0): 85, 60, 56, (31,459,0): 85, 60, 56, (31,460,0): 85, 60, 56, (31,461,0): 85, 60, 56, (31,462,0): 86, 61, 57, (31,463,0): 87, 61, 60, (31,464,0): 86, 60, 59, (31,465,0): 86, 60, 59, (31,466,0): 88, 60, 59, (31,467,0): 86, 60, 59, (31,468,0): 86, 60, 59, (31,469,0): 86, 60, 59, (31,470,0): 86, 61, 57, (31,471,0): 86, 61, 57, (31,472,0): 86, 61, 56, (31,473,0): 86, 61, 56, (31,474,0): 85, 60, 55, (31,475,0): 86, 61, 54, (31,476,0): 87, 62, 57, (31,477,0): 88, 65, 57, (31,478,0): 90, 65, 60, (31,479,0): 91, 68, 60, (31,480,0): 96, 72, 60, (31,481,0): 95, 73, 59, (31,482,0): 96, 73, 59, (31,483,0): 96, 73, 59, (31,484,0): 96, 73, 59, (31,485,0): 96, 72, 60, (31,486,0): 96, 72, 60, (31,487,0): 96, 72, 60, (31,488,0): 95, 71, 59, (31,489,0): 96, 72, 60, (31,490,0): 96, 72, 62, (31,491,0): 97, 73, 63, (31,492,0): 96, 71, 64, (31,493,0): 95, 70, 63, (31,494,0): 95, 68, 61, (31,495,0): 92, 67, 62, (31,496,0): 92, 67, 63, (31,497,0): 93, 68, 64, (31,498,0): 94, 69, 65, (31,499,0): 95, 70, 66, (31,500,0): 95, 70, 66, (31,501,0): 94, 69, 65, (31,502,0): 93, 68, 64, (31,503,0): 92, 67, 63, (31,504,0): 92, 67, 63, (31,505,0): 92, 67, 63, (31,506,0): 93, 68, 64, (31,507,0): 93, 68, 64, (31,508,0): 94, 69, 65, (31,509,0): 94, 69, 65, (31,510,0): 95, 70, 66, (31,511,0): 95, 70, 66, (31,512,0): 95, 70, 65, (31,513,0): 96, 71, 66, (31,514,0): 97, 72, 68, (31,515,0): 98, 73, 69, (31,516,0): 98, 73, 69, (31,517,0): 97, 72, 68, (31,518,0): 96, 70, 69, (31,519,0): 95, 69, 68, (31,520,0): 94, 68, 67, (31,521,0): 93, 67, 66, (31,522,0): 92, 66, 67, (31,523,0): 94, 68, 69, (31,524,0): 96, 70, 71, (31,525,0): 96, 70, 71, (31,526,0): 93, 67, 68, (31,527,0): 89, 65, 65, (31,528,0): 89, 65, 65, (31,529,0): 87, 66, 65, (31,530,0): 86, 65, 64, (31,531,0): 85, 63, 65, (31,532,0): 84, 62, 64, (31,533,0): 83, 61, 63, (31,534,0): 82, 60, 62, (31,535,0): 82, 60, 63, (31,536,0): 82, 60, 63, (31,537,0): 80, 57, 63, (31,538,0): 76, 53, 59, (31,539,0): 72, 49, 55, (31,540,0): 70, 47, 53, (31,541,0): 70, 47, 55, (31,542,0): 70, 47, 55, (31,543,0): 70, 49, 56, (31,544,0): 66, 47, 53, (31,545,0): 65, 48, 54, (31,546,0): 67, 50, 56, (31,547,0): 68, 51, 57, (31,548,0): 71, 52, 58, (31,549,0): 70, 51, 55, (31,550,0): 70, 51, 55, (31,551,0): 70, 49, 54, (31,552,0): 71, 51, 53, (31,553,0): 73, 51, 53, (31,554,0): 74, 52, 54, (31,555,0): 76, 54, 56, (31,556,0): 78, 56, 58, (31,557,0): 80, 59, 58, (31,558,0): 83, 59, 59, (31,559,0): 84, 60, 60, (31,560,0): 80, 54, 57, (31,561,0): 82, 53, 57, (31,562,0): 79, 53, 56, (31,563,0): 79, 53, 56, (31,564,0): 78, 51, 56, (31,565,0): 78, 51, 56, (31,566,0): 77, 50, 55, (31,567,0): 76, 51, 55, (31,568,0): 71, 46, 52, (31,569,0): 71, 46, 52, (31,570,0): 70, 45, 51, (31,571,0): 70, 45, 51, (31,572,0): 68, 45, 53, (31,573,0): 68, 45, 53, (31,574,0): 68, 45, 53, (31,575,0): 67, 44, 52, (31,576,0): 68, 46, 49, (31,577,0): 66, 44, 47, (31,578,0): 65, 43, 46, (31,579,0): 64, 42, 45, (31,580,0): 65, 43, 46, (31,581,0): 69, 47, 49, (31,582,0): 72, 50, 53, (31,583,0): 77, 52, 55, (31,584,0): 75, 50, 53, (31,585,0): 76, 51, 54, (31,586,0): 78, 53, 56, (31,587,0): 79, 54, 57, (31,588,0): 79, 54, 57, (31,589,0): 78, 53, 56, (31,590,0): 76, 51, 54, (31,591,0): 75, 50, 53, (31,592,0): 74, 49, 52, (31,593,0): 72, 50, 52, (31,594,0): 74, 49, 52, (31,595,0): 72, 50, 52, (31,596,0): 75, 51, 51, (31,597,0): 73, 52, 51, (31,598,0): 75, 51, 51, (31,599,0): 73, 52, 51, (32,0,0): 37, 26, 43, (32,1,0): 37, 26, 42, (32,2,0): 37, 26, 42, (32,3,0): 38, 27, 43, (32,4,0): 38, 27, 43, (32,5,0): 40, 28, 42, (32,6,0): 40, 28, 42, (32,7,0): 42, 28, 41, (32,8,0): 42, 28, 41, (32,9,0): 44, 28, 41, (32,10,0): 44, 28, 41, (32,11,0): 46, 28, 40, (32,12,0): 46, 28, 40, (32,13,0): 47, 29, 41, (32,14,0): 47, 29, 41, (32,15,0): 48, 30, 42, (32,16,0): 46, 28, 40, (32,17,0): 46, 28, 40, (32,18,0): 48, 28, 40, (32,19,0): 46, 28, 40, (32,20,0): 46, 28, 40, (32,21,0): 46, 28, 40, (32,22,0): 46, 28, 40, (32,23,0): 46, 28, 40, (32,24,0): 49, 31, 43, (32,25,0): 49, 31, 43, (32,26,0): 49, 31, 43, (32,27,0): 49, 31, 43, (32,28,0): 49, 31, 43, (32,29,0): 49, 31, 43, (32,30,0): 49, 31, 43, (32,31,0): 48, 32, 43, (32,32,0): 46, 29, 45, (32,33,0): 44, 30, 45, (32,34,0): 45, 28, 44, (32,35,0): 42, 28, 43, (32,36,0): 44, 27, 43, (32,37,0): 43, 29, 44, (32,38,0): 46, 29, 45, (32,39,0): 44, 30, 45, (32,40,0): 47, 30, 46, (32,41,0): 45, 31, 46, (32,42,0): 47, 30, 46, (32,43,0): 45, 31, 46, (32,44,0): 47, 30, 46, (32,45,0): 45, 31, 46, (32,46,0): 47, 30, 46, (32,47,0): 47, 30, 46, (32,48,0): 45, 27, 43, (32,49,0): 45, 27, 43, (32,50,0): 45, 27, 43, (32,51,0): 45, 27, 43, (32,52,0): 45, 27, 43, (32,53,0): 45, 27, 43, (32,54,0): 45, 27, 43, (32,55,0): 45, 27, 43, (32,56,0): 45, 27, 43, (32,57,0): 44, 26, 42, (32,58,0): 44, 26, 42, (32,59,0): 43, 25, 41, (32,60,0): 43, 25, 41, (32,61,0): 42, 24, 40, (32,62,0): 42, 24, 40, (32,63,0): 42, 24, 40, (32,64,0): 41, 24, 40, (32,65,0): 41, 24, 40, (32,66,0): 39, 25, 40, (32,67,0): 40, 26, 41, (32,68,0): 40, 26, 41, (32,69,0): 40, 26, 41, (32,70,0): 41, 27, 44, (32,71,0): 40, 27, 44, (32,72,0): 36, 23, 40, (32,73,0): 36, 23, 41, (32,74,0): 35, 22, 40, (32,75,0): 35, 22, 40, (32,76,0): 33, 22, 39, (32,77,0): 33, 22, 39, (32,78,0): 32, 21, 38, (32,79,0): 32, 21, 38, (32,80,0): 33, 20, 38, (32,81,0): 33, 20, 37, (32,82,0): 33, 19, 36, (32,83,0): 32, 19, 36, (32,84,0): 32, 18, 35, (32,85,0): 31, 18, 35, (32,86,0): 31, 17, 34, (32,87,0): 30, 17, 34, (32,88,0): 33, 19, 36, (32,89,0): 32, 19, 36, (32,90,0): 33, 19, 36, (32,91,0): 33, 20, 37, (32,92,0): 34, 20, 37, (32,93,0): 34, 21, 38, (32,94,0): 35, 21, 38, (32,95,0): 34, 21, 39, (32,96,0): 32, 20, 42, (32,97,0): 30, 21, 42, (32,98,0): 30, 20, 44, (32,99,0): 30, 21, 42, (32,100,0): 30, 20, 44, (32,101,0): 30, 21, 42, (32,102,0): 30, 20, 44, (32,103,0): 30, 21, 42, (32,104,0): 34, 24, 48, (32,105,0): 34, 25, 46, (32,106,0): 33, 23, 47, (32,107,0): 33, 24, 45, (32,108,0): 33, 23, 47, (32,109,0): 32, 23, 44, (32,110,0): 32, 22, 46, (32,111,0): 34, 22, 46, (32,112,0): 35, 23, 47, (32,113,0): 35, 23, 47, (32,114,0): 36, 22, 47, (32,115,0): 35, 23, 47, (32,116,0): 35, 23, 47, (32,117,0): 35, 23, 47, (32,118,0): 35, 23, 47, (32,119,0): 35, 23, 47, (32,120,0): 34, 22, 46, (32,121,0): 34, 22, 46, (32,122,0): 34, 22, 46, (32,123,0): 34, 22, 46, (32,124,0): 33, 21, 45, (32,125,0): 31, 21, 45, (32,126,0): 33, 21, 45, (32,127,0): 31, 21, 45, (32,128,0): 32, 24, 47, (32,129,0): 30, 25, 47, (32,130,0): 31, 23, 46, (32,131,0): 31, 23, 46, (32,132,0): 30, 22, 45, (32,133,0): 30, 22, 45, (32,134,0): 29, 21, 44, (32,135,0): 29, 21, 44, (32,136,0): 29, 21, 44, (32,137,0): 29, 21, 44, (32,138,0): 29, 21, 44, (32,139,0): 29, 21, 44, (32,140,0): 29, 21, 44, (32,141,0): 29, 21, 44, (32,142,0): 29, 21, 44, (32,143,0): 29, 21, 44, (32,144,0): 29, 21, 44, (32,145,0): 29, 21, 44, (32,146,0): 29, 21, 44, (32,147,0): 29, 21, 44, (32,148,0): 29, 21, 44, (32,149,0): 29, 21, 44, (32,150,0): 29, 21, 44, (32,151,0): 29, 21, 44, (32,152,0): 29, 21, 44, (32,153,0): 29, 21, 44, (32,154,0): 29, 21, 44, (32,155,0): 29, 21, 44, (32,156,0): 29, 21, 44, (32,157,0): 29, 21, 44, (32,158,0): 29, 21, 44, (32,159,0): 29, 21, 44, (32,160,0): 24, 16, 39, (32,161,0): 23, 18, 40, (32,162,0): 26, 18, 41, (32,163,0): 27, 19, 42, (32,164,0): 28, 20, 43, (32,165,0): 30, 22, 45, (32,166,0): 31, 23, 46, (32,167,0): 31, 23, 46, (32,168,0): 29, 21, 44, (32,169,0): 29, 21, 44, (32,170,0): 30, 22, 45, (32,171,0): 30, 22, 45, (32,172,0): 31, 23, 46, (32,173,0): 31, 23, 46, (32,174,0): 32, 24, 47, (32,175,0): 32, 24, 47, (32,176,0): 34, 26, 49, (32,177,0): 33, 25, 48, (32,178,0): 31, 23, 46, (32,179,0): 30, 22, 45, (32,180,0): 30, 22, 45, (32,181,0): 31, 23, 46, (32,182,0): 33, 25, 48, (32,183,0): 34, 26, 49, (32,184,0): 29, 21, 44, (32,185,0): 29, 21, 44, (32,186,0): 30, 22, 45, (32,187,0): 30, 22, 45, (32,188,0): 31, 23, 46, (32,189,0): 31, 23, 46, (32,190,0): 32, 24, 47, (32,191,0): 32, 24, 45, (32,192,0): 36, 28, 49, (32,193,0): 37, 28, 47, (32,194,0): 36, 27, 46, (32,195,0): 36, 27, 46, (32,196,0): 36, 27, 46, (32,197,0): 38, 26, 46, (32,198,0): 37, 25, 45, (32,199,0): 37, 25, 45, (32,200,0): 41, 28, 48, (32,201,0): 41, 28, 48, (32,202,0): 41, 28, 48, (32,203,0): 43, 28, 49, (32,204,0): 43, 28, 49, (32,205,0): 44, 29, 50, (32,206,0): 44, 29, 50, (32,207,0): 46, 28, 50, (32,208,0): 47, 30, 49, (32,209,0): 47, 30, 49, (32,210,0): 47, 30, 49, (32,211,0): 48, 31, 50, (32,212,0): 48, 31, 50, (32,213,0): 49, 32, 51, (32,214,0): 49, 32, 51, (32,215,0): 49, 32, 51, (32,216,0): 50, 33, 52, (32,217,0): 50, 33, 52, (32,218,0): 50, 33, 52, (32,219,0): 50, 33, 52, (32,220,0): 50, 33, 52, (32,221,0): 50, 33, 52, (32,222,0): 50, 33, 52, (32,223,0): 50, 33, 52, (32,224,0): 45, 30, 49, (32,225,0): 45, 32, 50, (32,226,0): 46, 33, 51, (32,227,0): 46, 33, 51, (32,228,0): 46, 33, 51, (32,229,0): 46, 33, 51, (32,230,0): 45, 32, 50, (32,231,0): 44, 31, 49, (32,232,0): 45, 32, 50, (32,233,0): 45, 32, 50, (32,234,0): 45, 32, 50, (32,235,0): 45, 32, 50, (32,236,0): 45, 32, 50, (32,237,0): 45, 32, 50, (32,238,0): 45, 32, 50, (32,239,0): 45, 32, 49, (32,240,0): 43, 29, 42, (32,241,0): 44, 31, 41, (32,242,0): 46, 32, 45, (32,243,0): 48, 35, 45, (32,244,0): 48, 34, 47, (32,245,0): 50, 34, 45, (32,246,0): 48, 32, 45, (32,247,0): 47, 31, 42, (32,248,0): 49, 31, 45, (32,249,0): 49, 31, 43, (32,250,0): 51, 30, 45, (32,251,0): 51, 31, 43, (32,252,0): 51, 30, 45, (32,253,0): 51, 31, 43, (32,254,0): 51, 30, 45, (32,255,0): 51, 30, 45, (32,256,0): 46, 28, 42, (32,257,0): 47, 29, 45, (32,258,0): 49, 31, 47, (32,259,0): 51, 33, 47, (32,260,0): 53, 35, 51, (32,261,0): 56, 38, 52, (32,262,0): 59, 38, 53, (32,263,0): 60, 40, 52, (32,264,0): 62, 40, 53, (32,265,0): 61, 39, 51, (32,266,0): 61, 37, 50, (32,267,0): 61, 37, 50, (32,268,0): 62, 38, 51, (32,269,0): 64, 41, 51, (32,270,0): 67, 43, 56, (32,271,0): 70, 44, 55, (32,272,0): 69, 43, 52, (32,273,0): 70, 43, 50, (32,274,0): 71, 44, 51, (32,275,0): 72, 45, 50, (32,276,0): 75, 46, 51, (32,277,0): 76, 47, 52, (32,278,0): 77, 48, 53, (32,279,0): 78, 47, 52, (32,280,0): 80, 49, 54, (32,281,0): 82, 50, 53, (32,282,0): 83, 51, 54, (32,283,0): 85, 53, 56, (32,284,0): 86, 54, 57, (32,285,0): 88, 56, 57, (32,286,0): 91, 57, 58, (32,287,0): 92, 58, 59, (32,288,0): 94, 55, 58, (32,289,0): 95, 56, 57, (32,290,0): 97, 58, 59, (32,291,0): 99, 60, 61, (32,292,0): 100, 61, 62, (32,293,0): 100, 62, 61, (32,294,0): 100, 62, 61, (32,295,0): 100, 62, 61, (32,296,0): 99, 61, 60, (32,297,0): 101, 63, 60, (32,298,0): 104, 66, 63, (32,299,0): 107, 70, 64, (32,300,0): 109, 72, 66, (32,301,0): 109, 72, 66, (32,302,0): 109, 72, 66, (32,303,0): 109, 72, 64, (32,304,0): 111, 74, 68, (32,305,0): 111, 73, 64, (32,306,0): 116, 74, 60, (32,307,0): 125, 80, 61, (32,308,0): 135, 88, 62, (32,309,0): 143, 94, 64, (32,310,0): 147, 97, 64, (32,311,0): 147, 97, 62, (32,312,0): 143, 94, 61, (32,313,0): 144, 95, 62, (32,314,0): 144, 98, 65, (32,315,0): 145, 99, 65, (32,316,0): 145, 99, 65, (32,317,0): 146, 98, 62, (32,318,0): 144, 96, 60, (32,319,0): 146, 94, 57, (32,320,0): 151, 95, 60, (32,321,0): 150, 94, 59, (32,322,0): 148, 94, 58, (32,323,0): 147, 95, 58, (32,324,0): 145, 95, 60, (32,325,0): 145, 97, 61, (32,326,0): 144, 98, 62, (32,327,0): 144, 100, 63, (32,328,0): 141, 98, 63, (32,329,0): 139, 99, 63, (32,330,0): 139, 99, 63, (32,331,0): 138, 98, 62, (32,332,0): 137, 97, 62, (32,333,0): 137, 97, 62, (32,334,0): 137, 97, 62, (32,335,0): 136, 96, 61, (32,336,0): 132, 96, 62, (32,337,0): 133, 97, 65, (32,338,0): 133, 97, 65, (32,339,0): 134, 97, 68, (32,340,0): 135, 98, 69, (32,341,0): 136, 99, 70, (32,342,0): 136, 99, 70, (32,343,0): 137, 100, 73, (32,344,0): 134, 97, 70, (32,345,0): 134, 97, 71, (32,346,0): 133, 96, 70, (32,347,0): 132, 95, 69, (32,348,0): 131, 94, 68, (32,349,0): 131, 93, 70, (32,350,0): 130, 92, 69, (32,351,0): 130, 93, 67, (32,352,0): 129, 92, 65, (32,353,0): 130, 93, 66, (32,354,0): 135, 95, 69, (32,355,0): 135, 98, 71, (32,356,0): 138, 98, 72, (32,357,0): 135, 98, 72, (32,358,0): 136, 96, 71, (32,359,0): 133, 95, 72, (32,360,0): 132, 91, 69, (32,361,0): 129, 91, 68, (32,362,0): 131, 90, 68, (32,363,0): 130, 92, 69, (32,364,0): 133, 92, 70, (32,365,0): 133, 95, 72, (32,366,0): 137, 96, 74, (32,367,0): 139, 99, 74, (32,368,0): 143, 101, 77, (32,369,0): 143, 101, 77, (32,370,0): 146, 101, 78, (32,371,0): 144, 102, 78, (32,372,0): 143, 101, 77, (32,373,0): 141, 99, 75, (32,374,0): 140, 98, 76, (32,375,0): 139, 97, 75, (32,376,0): 141, 98, 79, (32,377,0): 141, 98, 79, (32,378,0): 141, 98, 79, (32,379,0): 141, 98, 81, (32,380,0): 141, 98, 81, (32,381,0): 140, 99, 81, (32,382,0): 141, 98, 81, (32,383,0): 140, 98, 82, (32,384,0): 144, 101, 85, (32,385,0): 144, 100, 87, (32,386,0): 144, 100, 87, (32,387,0): 145, 101, 88, (32,388,0): 147, 101, 86, (32,389,0): 148, 102, 87, (32,390,0): 149, 102, 86, (32,391,0): 149, 102, 86, (32,392,0): 151, 102, 87, (32,393,0): 151, 102, 85, (32,394,0): 153, 102, 85, (32,395,0): 153, 102, 85, (32,396,0): 153, 100, 82, (32,397,0): 153, 100, 82, (32,398,0): 155, 99, 82, (32,399,0): 153, 100, 82, (32,400,0): 151, 100, 83, (32,401,0): 152, 101, 84, (32,402,0): 152, 101, 84, (32,403,0): 153, 102, 83, (32,404,0): 154, 101, 83, (32,405,0): 155, 103, 82, (32,406,0): 155, 103, 81, (32,407,0): 155, 103, 81, (32,408,0): 154, 100, 76, (32,409,0): 156, 102, 78, (32,410,0): 159, 103, 78, (32,411,0): 161, 105, 78, (32,412,0): 162, 106, 79, (32,413,0): 160, 105, 75, (32,414,0): 159, 102, 75, (32,415,0): 156, 101, 71, (32,416,0): 154, 100, 72, (32,417,0): 149, 98, 69, (32,418,0): 144, 93, 66, (32,419,0): 139, 87, 63, (32,420,0): 135, 83, 61, (32,421,0): 131, 80, 59, (32,422,0): 128, 79, 62, (32,423,0): 126, 79, 63, (32,424,0): 121, 75, 60, (32,425,0): 117, 75, 61, (32,426,0): 113, 73, 61, (32,427,0): 111, 75, 63, (32,428,0): 109, 77, 66, (32,429,0): 106, 76, 65, (32,430,0): 101, 73, 62, (32,431,0): 97, 69, 58, (32,432,0): 95, 66, 58, (32,433,0): 93, 64, 56, (32,434,0): 93, 63, 55, (32,435,0): 91, 62, 54, (32,436,0): 92, 62, 54, (32,437,0): 93, 64, 56, (32,438,0): 97, 67, 59, (32,439,0): 98, 69, 61, (32,440,0): 99, 69, 61, (32,441,0): 98, 69, 61, (32,442,0): 97, 67, 59, (32,443,0): 95, 66, 58, (32,444,0): 95, 65, 57, (32,445,0): 94, 65, 57, (32,446,0): 95, 65, 57, (32,447,0): 95, 64, 59, (32,448,0): 93, 62, 57, (32,449,0): 91, 60, 55, (32,450,0): 89, 60, 56, (32,451,0): 87, 58, 54, (32,452,0): 87, 58, 54, (32,453,0): 88, 59, 55, (32,454,0): 89, 60, 56, (32,455,0): 90, 62, 58, (32,456,0): 85, 57, 54, (32,457,0): 86, 58, 55, (32,458,0): 88, 60, 59, (32,459,0): 89, 61, 60, (32,460,0): 88, 62, 61, (32,461,0): 88, 62, 61, (32,462,0): 87, 61, 60, (32,463,0): 86, 60, 59, (32,464,0): 87, 59, 58, (32,465,0): 87, 59, 56, (32,466,0): 89, 59, 57, (32,467,0): 88, 60, 57, (32,468,0): 89, 61, 58, (32,469,0): 89, 61, 58, (32,470,0): 87, 62, 58, (32,471,0): 88, 63, 59, (32,472,0): 87, 62, 58, (32,473,0): 86, 61, 57, (32,474,0): 84, 60, 56, (32,475,0): 84, 61, 55, (32,476,0): 85, 61, 57, (32,477,0): 85, 65, 58, (32,478,0): 90, 66, 62, (32,479,0): 89, 69, 62, (32,480,0): 97, 74, 68, (32,481,0): 95, 75, 66, (32,482,0): 96, 73, 65, (32,483,0): 96, 74, 63, (32,484,0): 95, 73, 62, (32,485,0): 94, 72, 59, (32,486,0): 94, 70, 58, (32,487,0): 94, 70, 58, (32,488,0): 96, 72, 60, (32,489,0): 96, 72, 60, (32,490,0): 99, 72, 63, (32,491,0): 100, 73, 64, (32,492,0): 100, 73, 66, (32,493,0): 99, 71, 67, (32,494,0): 98, 69, 65, (32,495,0): 96, 68, 65, (32,496,0): 92, 67, 63, (32,497,0): 92, 67, 63, (32,498,0): 92, 67, 63, (32,499,0): 92, 67, 63, (32,500,0): 92, 67, 63, (32,501,0): 92, 67, 63, (32,502,0): 92, 67, 63, (32,503,0): 92, 67, 63, (32,504,0): 93, 68, 64, (32,505,0): 93, 68, 64, (32,506,0): 93, 68, 64, (32,507,0): 92, 67, 63, (32,508,0): 92, 67, 63, (32,509,0): 91, 66, 62, (32,510,0): 91, 66, 62, (32,511,0): 91, 66, 62, (32,512,0): 93, 68, 64, (32,513,0): 93, 68, 64, (32,514,0): 93, 68, 64, (32,515,0): 93, 68, 64, (32,516,0): 93, 68, 64, (32,517,0): 93, 68, 64, (32,518,0): 93, 68, 64, (32,519,0): 93, 68, 64, (32,520,0): 93, 68, 64, (32,521,0): 93, 68, 64, (32,522,0): 93, 67, 66, (32,523,0): 92, 66, 65, (32,524,0): 92, 66, 65, (32,525,0): 91, 65, 64, (32,526,0): 91, 65, 64, (32,527,0): 89, 65, 63, (32,528,0): 89, 65, 63, (32,529,0): 87, 66, 63, (32,530,0): 87, 66, 63, (32,531,0): 87, 66, 65, (32,532,0): 85, 64, 63, (32,533,0): 83, 62, 61, (32,534,0): 81, 60, 59, (32,535,0): 80, 58, 60, (32,536,0): 78, 56, 58, (32,537,0): 76, 54, 57, (32,538,0): 72, 50, 53, (32,539,0): 69, 47, 50, (32,540,0): 68, 46, 49, (32,541,0): 68, 45, 51, (32,542,0): 69, 46, 52, (32,543,0): 69, 48, 55, (32,544,0): 65, 46, 52, (32,545,0): 66, 46, 55, (32,546,0): 68, 48, 57, (32,547,0): 70, 51, 57, (32,548,0): 72, 51, 58, (32,549,0): 72, 51, 58, (32,550,0): 71, 50, 55, (32,551,0): 71, 48, 54, (32,552,0): 71, 49, 52, (32,553,0): 74, 49, 52, (32,554,0): 75, 50, 53, (32,555,0): 77, 53, 53, (32,556,0): 78, 54, 54, (32,557,0): 80, 56, 54, (32,558,0): 82, 56, 55, (32,559,0): 82, 58, 58, (32,560,0): 79, 54, 57, (32,561,0): 79, 54, 58, (32,562,0): 78, 53, 57, (32,563,0): 78, 53, 57, (32,564,0): 77, 52, 56, (32,565,0): 77, 52, 56, (32,566,0): 76, 51, 55, (32,567,0): 74, 52, 55, (32,568,0): 71, 49, 52, (32,569,0): 71, 49, 52, (32,570,0): 70, 48, 51, (32,571,0): 69, 47, 50, (32,572,0): 68, 45, 51, (32,573,0): 67, 44, 50, (32,574,0): 66, 43, 49, (32,575,0): 65, 42, 48, (32,576,0): 64, 43, 48, (32,577,0): 64, 43, 48, (32,578,0): 64, 43, 48, (32,579,0): 64, 43, 48, (32,580,0): 65, 42, 48, (32,581,0): 65, 43, 46, (32,582,0): 67, 42, 48, (32,583,0): 68, 41, 46, (32,584,0): 76, 49, 54, (32,585,0): 77, 50, 55, (32,586,0): 79, 50, 54, (32,587,0): 80, 51, 55, (32,588,0): 81, 50, 55, (32,589,0): 82, 51, 56, (32,590,0): 82, 52, 54, (32,591,0): 82, 52, 54, (32,592,0): 75, 49, 52, (32,593,0): 74, 49, 52, (32,594,0): 75, 49, 50, (32,595,0): 74, 50, 50, (32,596,0): 75, 49, 48, (32,597,0): 74, 50, 48, (32,598,0): 75, 50, 46, (32,599,0): 74, 50, 46, (33,0,0): 38, 25, 43, (33,1,0): 38, 25, 43, (33,2,0): 39, 26, 43, (33,3,0): 39, 26, 43, (33,4,0): 40, 27, 44, (33,5,0): 40, 27, 44, (33,6,0): 41, 27, 42, (33,7,0): 42, 28, 43, (33,8,0): 44, 28, 41, (33,9,0): 44, 28, 41, (33,10,0): 46, 28, 42, (33,11,0): 46, 28, 42, (33,12,0): 47, 29, 41, (33,13,0): 47, 29, 41, (33,14,0): 47, 29, 41, (33,15,0): 48, 30, 42, (33,16,0): 46, 28, 40, (33,17,0): 46, 28, 40, (33,18,0): 46, 28, 40, (33,19,0): 46, 28, 40, (33,20,0): 46, 28, 40, (33,21,0): 46, 28, 40, (33,22,0): 46, 28, 40, (33,23,0): 46, 28, 40, (33,24,0): 48, 30, 42, (33,25,0): 48, 30, 42, (33,26,0): 48, 30, 42, (33,27,0): 48, 30, 42, (33,28,0): 48, 30, 42, (33,29,0): 48, 30, 42, (33,30,0): 48, 30, 42, (33,31,0): 48, 30, 42, (33,32,0): 47, 30, 46, (33,33,0): 47, 30, 46, (33,34,0): 45, 28, 44, (33,35,0): 45, 28, 44, (33,36,0): 45, 28, 44, (33,37,0): 45, 28, 44, (33,38,0): 47, 30, 46, (33,39,0): 47, 30, 46, (33,40,0): 47, 30, 46, (33,41,0): 47, 30, 46, (33,42,0): 47, 30, 46, (33,43,0): 47, 30, 46, (33,44,0): 47, 30, 46, (33,45,0): 47, 30, 46, (33,46,0): 47, 30, 46, (33,47,0): 47, 30, 46, (33,48,0): 45, 27, 43, (33,49,0): 45, 27, 43, (33,50,0): 45, 27, 43, (33,51,0): 45, 27, 43, (33,52,0): 45, 27, 43, (33,53,0): 45, 27, 43, (33,54,0): 45, 27, 43, (33,55,0): 45, 27, 43, (33,56,0): 45, 27, 43, (33,57,0): 44, 26, 42, (33,58,0): 44, 26, 42, (33,59,0): 44, 26, 42, (33,60,0): 43, 25, 41, (33,61,0): 43, 25, 41, (33,62,0): 42, 24, 40, (33,63,0): 42, 24, 40, (33,64,0): 41, 24, 40, (33,65,0): 41, 24, 40, (33,66,0): 39, 25, 40, (33,67,0): 40, 26, 41, (33,68,0): 40, 26, 41, (33,69,0): 40, 26, 41, (33,70,0): 39, 26, 43, (33,71,0): 39, 26, 43, (33,72,0): 35, 24, 41, (33,73,0): 34, 23, 40, (33,74,0): 34, 22, 42, (33,75,0): 33, 21, 41, (33,76,0): 31, 22, 41, (33,77,0): 30, 21, 40, (33,78,0): 30, 21, 40, (33,79,0): 30, 21, 40, (33,80,0): 33, 20, 38, (33,81,0): 32, 19, 36, (33,82,0): 32, 19, 36, (33,83,0): 31, 18, 35, (33,84,0): 31, 18, 35, (33,85,0): 30, 17, 34, (33,86,0): 30, 17, 34, (33,87,0): 30, 17, 34, (33,88,0): 32, 19, 36, (33,89,0): 32, 19, 36, (33,90,0): 33, 20, 37, (33,91,0): 33, 20, 37, (33,92,0): 34, 21, 38, (33,93,0): 34, 21, 38, (33,94,0): 34, 21, 38, (33,95,0): 35, 22, 40, (33,96,0): 32, 20, 42, (33,97,0): 32, 20, 44, (33,98,0): 32, 20, 44, (33,99,0): 32, 20, 44, (33,100,0): 32, 20, 44, (33,101,0): 32, 20, 44, (33,102,0): 32, 20, 44, (33,103,0): 32, 20, 44, (33,104,0): 35, 23, 47, (33,105,0): 35, 23, 47, (33,106,0): 35, 23, 47, (33,107,0): 35, 23, 47, (33,108,0): 35, 23, 47, (33,109,0): 34, 22, 46, (33,110,0): 34, 22, 46, (33,111,0): 34, 22, 46, (33,112,0): 34, 22, 46, (33,113,0): 34, 22, 46, (33,114,0): 34, 22, 46, (33,115,0): 35, 23, 47, (33,116,0): 35, 23, 47, (33,117,0): 36, 24, 48, (33,118,0): 36, 24, 48, (33,119,0): 36, 24, 48, (33,120,0): 33, 21, 45, (33,121,0): 33, 21, 45, (33,122,0): 33, 21, 45, (33,123,0): 34, 22, 46, (33,124,0): 34, 22, 46, (33,125,0): 34, 22, 46, (33,126,0): 34, 22, 46, (33,127,0): 32, 22, 46, (33,128,0): 32, 24, 47, (33,129,0): 32, 24, 47, (33,130,0): 31, 23, 46, (33,131,0): 31, 23, 46, (33,132,0): 30, 22, 45, (33,133,0): 30, 22, 45, (33,134,0): 29, 21, 44, (33,135,0): 29, 21, 44, (33,136,0): 29, 21, 44, (33,137,0): 29, 21, 44, (33,138,0): 29, 21, 44, (33,139,0): 29, 21, 44, (33,140,0): 29, 21, 44, (33,141,0): 29, 21, 44, (33,142,0): 29, 21, 44, (33,143,0): 29, 21, 44, (33,144,0): 29, 21, 44, (33,145,0): 29, 21, 44, (33,146,0): 29, 21, 44, (33,147,0): 29, 21, 44, (33,148,0): 29, 21, 44, (33,149,0): 29, 21, 44, (33,150,0): 29, 21, 44, (33,151,0): 29, 21, 44, (33,152,0): 29, 21, 44, (33,153,0): 29, 21, 44, (33,154,0): 29, 21, 44, (33,155,0): 29, 21, 44, (33,156,0): 29, 21, 44, (33,157,0): 29, 21, 44, (33,158,0): 29, 21, 44, (33,159,0): 29, 21, 44, (33,160,0): 26, 18, 41, (33,161,0): 26, 18, 41, (33,162,0): 27, 19, 42, (33,163,0): 27, 19, 42, (33,164,0): 28, 20, 43, (33,165,0): 29, 21, 44, (33,166,0): 30, 22, 45, (33,167,0): 30, 22, 45, (33,168,0): 29, 21, 44, (33,169,0): 29, 21, 44, (33,170,0): 30, 22, 45, (33,171,0): 30, 22, 45, (33,172,0): 31, 23, 46, (33,173,0): 31, 23, 46, (33,174,0): 32, 24, 47, (33,175,0): 32, 24, 47, (33,176,0): 33, 25, 48, (33,177,0): 32, 24, 47, (33,178,0): 32, 24, 47, (33,179,0): 31, 23, 46, (33,180,0): 31, 23, 46, (33,181,0): 32, 24, 47, (33,182,0): 32, 24, 47, (33,183,0): 33, 25, 48, (33,184,0): 29, 21, 44, (33,185,0): 30, 22, 45, (33,186,0): 30, 22, 45, (33,187,0): 31, 23, 46, (33,188,0): 31, 23, 46, (33,189,0): 32, 24, 47, (33,190,0): 32, 24, 47, (33,191,0): 32, 24, 45, (33,192,0): 35, 26, 47, (33,193,0): 36, 27, 46, (33,194,0): 36, 27, 46, (33,195,0): 36, 27, 46, (33,196,0): 38, 26, 46, (33,197,0): 38, 26, 46, (33,198,0): 38, 26, 46, (33,199,0): 39, 27, 47, (33,200,0): 41, 28, 48, (33,201,0): 41, 28, 48, (33,202,0): 42, 27, 48, (33,203,0): 43, 28, 49, (33,204,0): 43, 28, 49, (33,205,0): 44, 29, 50, (33,206,0): 46, 28, 50, (33,207,0): 46, 28, 50, (33,208,0): 47, 30, 49, (33,209,0): 47, 30, 49, (33,210,0): 47, 30, 49, (33,211,0): 48, 31, 50, (33,212,0): 48, 31, 50, (33,213,0): 49, 32, 51, (33,214,0): 49, 32, 51, (33,215,0): 49, 32, 51, (33,216,0): 50, 33, 52, (33,217,0): 50, 33, 52, (33,218,0): 50, 33, 52, (33,219,0): 50, 33, 52, (33,220,0): 50, 33, 52, (33,221,0): 50, 33, 52, (33,222,0): 50, 33, 52, (33,223,0): 48, 33, 52, (33,224,0): 45, 30, 49, (33,225,0): 45, 32, 50, (33,226,0): 46, 33, 51, (33,227,0): 47, 34, 52, (33,228,0): 47, 34, 52, (33,229,0): 46, 33, 51, (33,230,0): 45, 32, 50, (33,231,0): 44, 31, 49, (33,232,0): 45, 32, 50, (33,233,0): 45, 32, 50, (33,234,0): 45, 32, 50, (33,235,0): 45, 32, 50, (33,236,0): 45, 32, 50, (33,237,0): 45, 32, 50, (33,238,0): 45, 32, 50, (33,239,0): 45, 32, 49, (33,240,0): 43, 29, 42, (33,241,0): 44, 31, 41, (33,242,0): 46, 33, 43, (33,243,0): 48, 35, 45, (33,244,0): 50, 34, 45, (33,245,0): 50, 34, 45, (33,246,0): 49, 33, 44, (33,247,0): 48, 32, 43, (33,248,0): 50, 32, 44, (33,249,0): 50, 32, 44, (33,250,0): 52, 32, 44, (33,251,0): 52, 32, 44, (33,252,0): 52, 32, 44, (33,253,0): 52, 32, 44, (33,254,0): 53, 31, 44, (33,255,0): 52, 32, 44, (33,256,0): 48, 27, 44, (33,257,0): 47, 29, 45, (33,258,0): 49, 31, 47, (33,259,0): 51, 33, 49, (33,260,0): 54, 36, 52, (33,261,0): 56, 38, 54, (33,262,0): 59, 38, 53, (33,263,0): 60, 39, 54, (33,264,0): 62, 40, 53, (33,265,0): 61, 39, 52, (33,266,0): 62, 38, 51, (33,267,0): 62, 38, 51, (33,268,0): 63, 39, 52, (33,269,0): 65, 41, 54, (33,270,0): 67, 43, 56, (33,271,0): 68, 45, 55, (33,272,0): 69, 43, 52, (33,273,0): 69, 44, 50, (33,274,0): 71, 44, 49, (33,275,0): 72, 45, 50, (33,276,0): 73, 46, 51, (33,277,0): 74, 47, 52, (33,278,0): 77, 48, 52, (33,279,0): 78, 49, 53, (33,280,0): 81, 51, 53, (33,281,0): 81, 51, 53, (33,282,0): 82, 52, 54, (33,283,0): 84, 54, 56, (33,284,0): 87, 55, 56, (33,285,0): 88, 56, 57, (33,286,0): 89, 57, 58, (33,287,0): 92, 58, 59, (33,288,0): 94, 55, 56, (33,289,0): 95, 56, 57, (33,290,0): 97, 58, 59, (33,291,0): 99, 60, 61, (33,292,0): 100, 62, 61, (33,293,0): 100, 62, 61, (33,294,0): 100, 62, 61, (33,295,0): 100, 62, 59, (33,296,0): 100, 62, 59, (33,297,0): 101, 63, 60, (33,298,0): 104, 67, 61, (33,299,0): 107, 70, 64, (33,300,0): 108, 71, 65, (33,301,0): 109, 72, 66, (33,302,0): 109, 72, 64, (33,303,0): 109, 72, 64, (33,304,0): 111, 74, 68, (33,305,0): 111, 74, 66, (33,306,0): 115, 76, 61, (33,307,0): 124, 81, 62, (33,308,0): 135, 88, 62, (33,309,0): 144, 95, 65, (33,310,0): 147, 97, 64, (33,311,0): 147, 97, 62, (33,312,0): 144, 96, 60, (33,313,0): 145, 97, 61, (33,314,0): 145, 99, 65, (33,315,0): 146, 100, 66, (33,316,0): 148, 100, 64, (33,317,0): 147, 99, 63, (33,318,0): 148, 96, 59, (33,319,0): 148, 94, 58, (33,320,0): 152, 96, 59, (33,321,0): 151, 95, 58, (33,322,0): 150, 94, 59, (33,323,0): 147, 95, 58, (33,324,0): 145, 95, 58, (33,325,0): 145, 97, 59, (33,326,0): 145, 99, 63, (33,327,0): 143, 101, 63, (33,328,0): 142, 99, 64, (33,329,0): 139, 99, 63, (33,330,0): 139, 99, 63, (33,331,0): 138, 98, 62, (33,332,0): 140, 97, 63, (33,333,0): 139, 96, 62, (33,334,0): 140, 95, 62, (33,335,0): 139, 96, 62, (33,336,0): 135, 96, 63, (33,337,0): 133, 97, 63, (33,338,0): 134, 98, 66, (33,339,0): 134, 98, 66, (33,340,0): 135, 99, 67, (33,341,0): 136, 100, 68, (33,342,0): 136, 99, 70, (33,343,0): 137, 100, 71, (33,344,0): 135, 98, 71, (33,345,0): 135, 98, 71, (33,346,0): 134, 97, 70, (33,347,0): 133, 96, 69, (33,348,0): 133, 96, 70, (33,349,0): 132, 95, 69, (33,350,0): 132, 95, 69, (33,351,0): 131, 94, 67, (33,352,0): 129, 92, 65, (33,353,0): 131, 94, 65, (33,354,0): 133, 96, 67, (33,355,0): 134, 97, 68, (33,356,0): 135, 98, 69, (33,357,0): 135, 98, 69, (33,358,0): 134, 97, 70, (33,359,0): 133, 96, 69, (33,360,0): 131, 94, 68, (33,361,0): 131, 94, 68, (33,362,0): 130, 92, 69, (33,363,0): 131, 93, 70, (33,364,0): 132, 94, 71, (33,365,0): 134, 96, 73, (33,366,0): 136, 98, 75, (33,367,0): 137, 100, 74, (33,368,0): 143, 101, 77, (33,369,0): 143, 101, 76, (33,370,0): 144, 102, 78, (33,371,0): 144, 102, 78, (33,372,0): 143, 101, 77, (33,373,0): 142, 100, 76, (33,374,0): 140, 98, 76, (33,375,0): 139, 97, 75, (33,376,0): 141, 98, 79, (33,377,0): 141, 98, 79, (33,378,0): 141, 98, 79, (33,379,0): 141, 98, 79, (33,380,0): 141, 98, 81, (33,381,0): 141, 98, 81, (33,382,0): 141, 98, 81, (33,383,0): 141, 98, 81, (33,384,0): 143, 101, 87, (33,385,0): 143, 101, 87, (33,386,0): 144, 100, 87, (33,387,0): 145, 101, 88, (33,388,0): 147, 101, 86, (33,389,0): 148, 102, 87, (33,390,0): 149, 102, 86, (33,391,0): 149, 102, 86, (33,392,0): 153, 101, 87, (33,393,0): 153, 101, 87, (33,394,0): 154, 101, 85, (33,395,0): 154, 101, 85, (33,396,0): 156, 100, 83, (33,397,0): 156, 100, 83, (33,398,0): 156, 99, 82, (33,399,0): 155, 99, 82, (33,400,0): 153, 100, 84, (33,401,0): 152, 101, 84, (33,402,0): 153, 102, 85, (33,403,0): 153, 102, 83, (33,404,0): 155, 102, 84, (33,405,0): 155, 103, 82, (33,406,0): 156, 104, 82, (33,407,0): 156, 104, 82, (33,408,0): 156, 102, 78, (33,409,0): 157, 103, 77, (33,410,0): 160, 104, 77, (33,411,0): 161, 105, 78, (33,412,0): 161, 106, 76, (33,413,0): 161, 106, 76, (33,414,0): 161, 104, 75, (33,415,0): 160, 103, 73, (33,416,0): 159, 104, 73, (33,417,0): 155, 102, 70, (33,418,0): 151, 98, 67, (33,419,0): 146, 92, 64, (33,420,0): 141, 87, 63, (33,421,0): 138, 83, 62, (33,422,0): 134, 81, 63, (33,423,0): 131, 82, 65, (33,424,0): 125, 77, 63, (33,425,0): 119, 75, 62, (33,426,0): 114, 74, 62, (33,427,0): 111, 75, 63, (33,428,0): 109, 77, 64, (33,429,0): 105, 75, 64, (33,430,0): 100, 72, 60, (33,431,0): 96, 69, 58, (33,432,0): 95, 67, 56, (33,433,0): 94, 65, 57, (33,434,0): 92, 63, 55, (33,435,0): 91, 62, 54, (33,436,0): 91, 62, 54, (33,437,0): 93, 64, 56, (33,438,0): 95, 66, 58, (33,439,0): 97, 68, 60, (33,440,0): 100, 71, 63, (33,441,0): 99, 70, 62, (33,442,0): 98, 69, 61, (33,443,0): 96, 67, 59, (33,444,0): 95, 66, 58, (33,445,0): 95, 66, 58, (33,446,0): 94, 65, 57, (33,447,0): 94, 65, 57, (33,448,0): 95, 62, 57, (33,449,0): 94, 61, 56, (33,450,0): 90, 59, 54, (33,451,0): 89, 58, 53, (33,452,0): 88, 57, 54, (33,453,0): 89, 58, 55, (33,454,0): 89, 60, 56, (33,455,0): 90, 61, 57, (33,456,0): 86, 58, 55, (33,457,0): 87, 59, 56, (33,458,0): 89, 61, 60, (33,459,0): 90, 62, 61, (33,460,0): 89, 63, 62, (33,461,0): 88, 62, 61, (33,462,0): 88, 62, 63, (33,463,0): 87, 61, 60, (33,464,0): 89, 59, 57, (33,465,0): 89, 59, 57, (33,466,0): 89, 59, 57, (33,467,0): 90, 60, 58, (33,468,0): 90, 62, 59, (33,469,0): 90, 62, 59, (33,470,0): 88, 63, 59, (33,471,0): 89, 64, 60, (33,472,0): 87, 62, 58, (33,473,0): 86, 61, 57, (33,474,0): 84, 60, 56, (33,475,0): 84, 60, 56, (33,476,0): 82, 61, 56, (33,477,0): 84, 63, 58, (33,478,0): 86, 65, 60, (33,479,0): 87, 66, 61, (33,480,0): 93, 72, 67, (33,481,0): 93, 72, 67, (33,482,0): 92, 72, 65, (33,483,0): 92, 72, 63, (33,484,0): 94, 71, 63, (33,485,0): 94, 72, 61, (33,486,0): 95, 71, 59, (33,487,0): 95, 71, 59, (33,488,0): 96, 72, 60, (33,489,0): 96, 72, 60, (33,490,0): 99, 72, 63, (33,491,0): 100, 73, 64, (33,492,0): 100, 71, 67, (33,493,0): 99, 70, 66, (33,494,0): 98, 68, 66, (33,495,0): 96, 68, 65, (33,496,0): 94, 66, 63, (33,497,0): 92, 67, 63, (33,498,0): 92, 67, 63, (33,499,0): 92, 67, 63, (33,500,0): 92, 67, 63, (33,501,0): 92, 67, 63, (33,502,0): 92, 67, 63, (33,503,0): 92, 67, 63, (33,504,0): 93, 68, 64, (33,505,0): 93, 68, 64, (33,506,0): 93, 68, 64, (33,507,0): 92, 67, 63, (33,508,0): 92, 67, 63, (33,509,0): 91, 66, 62, (33,510,0): 91, 66, 62, (33,511,0): 91, 66, 62, (33,512,0): 93, 68, 64, (33,513,0): 93, 68, 64, (33,514,0): 93, 68, 64, (33,515,0): 93, 68, 64, (33,516,0): 93, 68, 64, (33,517,0): 93, 68, 64, (33,518,0): 93, 68, 64, (33,519,0): 93, 68, 64, (33,520,0): 93, 68, 64, (33,521,0): 93, 68, 64, (33,522,0): 92, 67, 63, (33,523,0): 92, 67, 63, (33,524,0): 91, 66, 62, (33,525,0): 91, 66, 62, (33,526,0): 91, 66, 62, (33,527,0): 89, 65, 61, (33,528,0): 89, 65, 63, (33,529,0): 87, 66, 63, (33,530,0): 87, 66, 63, (33,531,0): 87, 66, 63, (33,532,0): 85, 64, 63, (33,533,0): 84, 63, 62, (33,534,0): 82, 61, 60, (33,535,0): 80, 59, 58, (33,536,0): 78, 56, 58, (33,537,0): 76, 54, 56, (33,538,0): 73, 51, 54, (33,539,0): 70, 48, 51, (33,540,0): 68, 46, 49, (33,541,0): 68, 46, 49, (33,542,0): 69, 46, 52, (33,543,0): 69, 48, 53, (33,544,0): 66, 45, 54, (33,545,0): 66, 46, 55, (33,546,0): 69, 48, 57, (33,547,0): 71, 50, 59, (33,548,0): 72, 51, 58, (33,549,0): 71, 50, 57, (33,550,0): 72, 49, 55, (33,551,0): 71, 48, 54, (33,552,0): 74, 49, 53, (33,553,0): 74, 49, 52, (33,554,0): 75, 50, 53, (33,555,0): 77, 53, 53, (33,556,0): 80, 54, 55, (33,557,0): 81, 55, 54, (33,558,0): 82, 56, 55, (33,559,0): 82, 58, 58, (33,560,0): 79, 54, 57, (33,561,0): 76, 54, 57, (33,562,0): 76, 54, 57, (33,563,0): 75, 53, 56, (33,564,0): 75, 53, 56, (33,565,0): 74, 52, 55, (33,566,0): 74, 52, 55, (33,567,0): 74, 52, 55, (33,568,0): 72, 50, 53, (33,569,0): 71, 49, 52, (33,570,0): 71, 49, 52, (33,571,0): 70, 48, 51, (33,572,0): 68, 46, 49, (33,573,0): 67, 45, 48, (33,574,0): 67, 45, 48, (33,575,0): 66, 44, 47, (33,576,0): 64, 43, 50, (33,577,0): 64, 43, 50, (33,578,0): 64, 43, 50, (33,579,0): 64, 43, 50, (33,580,0): 65, 42, 48, (33,581,0): 65, 42, 48, (33,582,0): 67, 42, 48, (33,583,0): 68, 41, 48, (33,584,0): 76, 47, 52, (33,585,0): 76, 47, 52, (33,586,0): 78, 47, 52, (33,587,0): 79, 48, 53, (33,588,0): 81, 49, 54, (33,589,0): 82, 50, 55, (33,590,0): 84, 49, 53, (33,591,0): 83, 51, 54, (33,592,0): 80, 51, 55, (33,593,0): 77, 51, 54, (33,594,0): 77, 51, 52, (33,595,0): 76, 50, 49, (33,596,0): 75, 49, 48, (33,597,0): 74, 49, 45, (33,598,0): 74, 49, 44, (33,599,0): 73, 48, 43, (34,0,0): 38, 25, 43, (34,1,0): 39, 26, 44, (34,2,0): 39, 26, 43, (34,3,0): 39, 26, 43, (34,4,0): 40, 27, 44, (34,5,0): 41, 28, 45, (34,6,0): 42, 28, 43, (34,7,0): 42, 28, 43, (34,8,0): 44, 28, 41, (34,9,0): 45, 29, 42, (34,10,0): 46, 28, 42, (34,11,0): 46, 28, 42, (34,12,0): 47, 29, 41, (34,13,0): 48, 30, 42, (34,14,0): 48, 30, 42, (34,15,0): 48, 30, 42, (34,16,0): 47, 29, 41, (34,17,0): 47, 29, 41, (34,18,0): 47, 29, 41, (34,19,0): 47, 29, 41, (34,20,0): 47, 29, 41, (34,21,0): 47, 29, 41, (34,22,0): 47, 29, 41, (34,23,0): 47, 29, 41, (34,24,0): 47, 29, 41, (34,25,0): 47, 29, 41, (34,26,0): 47, 29, 41, (34,27,0): 47, 29, 41, (34,28,0): 47, 29, 41, (34,29,0): 47, 29, 41, (34,30,0): 47, 29, 41, (34,31,0): 47, 29, 41, (34,32,0): 48, 31, 47, (34,33,0): 48, 31, 47, (34,34,0): 46, 29, 45, (34,35,0): 46, 29, 45, (34,36,0): 46, 29, 45, (34,37,0): 46, 29, 45, (34,38,0): 48, 31, 47, (34,39,0): 48, 31, 47, (34,40,0): 47, 30, 46, (34,41,0): 47, 30, 46, (34,42,0): 47, 30, 46, (34,43,0): 47, 30, 46, (34,44,0): 47, 30, 46, (34,45,0): 47, 30, 46, (34,46,0): 47, 30, 46, (34,47,0): 47, 30, 46, (34,48,0): 45, 27, 43, (34,49,0): 45, 27, 43, (34,50,0): 45, 27, 43, (34,51,0): 45, 27, 43, (34,52,0): 45, 27, 43, (34,53,0): 45, 27, 43, (34,54,0): 45, 27, 43, (34,55,0): 45, 27, 43, (34,56,0): 45, 27, 43, (34,57,0): 45, 27, 43, (34,58,0): 45, 27, 43, (34,59,0): 44, 26, 42, (34,60,0): 43, 25, 41, (34,61,0): 43, 25, 41, (34,62,0): 43, 25, 41, (34,63,0): 42, 24, 40, (34,64,0): 41, 24, 40, (34,65,0): 41, 24, 40, (34,66,0): 39, 25, 40, (34,67,0): 39, 25, 40, (34,68,0): 39, 25, 40, (34,69,0): 39, 25, 40, (34,70,0): 38, 25, 42, (34,71,0): 38, 25, 42, (34,72,0): 34, 23, 40, (34,73,0): 34, 23, 40, (34,74,0): 34, 22, 42, (34,75,0): 33, 21, 41, (34,76,0): 31, 22, 41, (34,77,0): 30, 21, 40, (34,78,0): 30, 21, 40, (34,79,0): 29, 20, 39, (34,80,0): 32, 19, 37, (34,81,0): 32, 19, 37, (34,82,0): 32, 19, 37, (34,83,0): 31, 18, 36, (34,84,0): 31, 18, 36, (34,85,0): 30, 17, 35, (34,86,0): 30, 17, 35, (34,87,0): 29, 16, 34, (34,88,0): 32, 19, 37, (34,89,0): 32, 19, 37, (34,90,0): 33, 20, 38, (34,91,0): 33, 20, 38, (34,92,0): 34, 21, 39, (34,93,0): 34, 21, 39, (34,94,0): 35, 22, 40, (34,95,0): 35, 22, 42, (34,96,0): 33, 21, 43, (34,97,0): 31, 21, 45, (34,98,0): 31, 21, 45, (34,99,0): 31, 21, 45, (34,100,0): 31, 21, 45, (34,101,0): 31, 21, 45, (34,102,0): 31, 21, 45, (34,103,0): 31, 21, 45, (34,104,0): 32, 22, 46, (34,105,0): 32, 22, 46, (34,106,0): 32, 22, 46, (34,107,0): 32, 22, 46, (34,108,0): 32, 22, 46, (34,109,0): 32, 22, 46, (34,110,0): 32, 22, 46, (34,111,0): 32, 22, 46, (34,112,0): 31, 21, 45, (34,113,0): 31, 21, 45, (34,114,0): 32, 22, 46, (34,115,0): 33, 23, 47, (34,116,0): 33, 23, 47, (34,117,0): 34, 24, 48, (34,118,0): 35, 25, 49, (34,119,0): 35, 25, 49, (34,120,0): 30, 20, 44, (34,121,0): 30, 20, 44, (34,122,0): 31, 21, 45, (34,123,0): 32, 22, 46, (34,124,0): 33, 23, 47, (34,125,0): 33, 23, 47, (34,126,0): 34, 24, 48, (34,127,0): 34, 24, 48, (34,128,0): 32, 24, 47, (34,129,0): 32, 24, 47, (34,130,0): 31, 23, 46, (34,131,0): 31, 23, 46, (34,132,0): 30, 22, 45, (34,133,0): 30, 22, 45, (34,134,0): 29, 21, 44, (34,135,0): 29, 21, 44, (34,136,0): 29, 21, 44, (34,137,0): 29, 21, 44, (34,138,0): 29, 21, 44, (34,139,0): 29, 21, 44, (34,140,0): 29, 21, 44, (34,141,0): 29, 21, 44, (34,142,0): 29, 21, 44, (34,143,0): 29, 21, 44, (34,144,0): 29, 21, 44, (34,145,0): 29, 21, 44, (34,146,0): 29, 21, 44, (34,147,0): 29, 21, 44, (34,148,0): 29, 21, 44, (34,149,0): 29, 21, 44, (34,150,0): 29, 21, 44, (34,151,0): 29, 21, 44, (34,152,0): 29, 21, 44, (34,153,0): 29, 21, 44, (34,154,0): 29, 21, 44, (34,155,0): 29, 21, 44, (34,156,0): 29, 21, 44, (34,157,0): 29, 21, 44, (34,158,0): 29, 21, 44, (34,159,0): 29, 21, 44, (34,160,0): 28, 20, 43, (34,161,0): 28, 20, 43, (34,162,0): 28, 20, 43, (34,163,0): 28, 20, 43, (34,164,0): 28, 20, 43, (34,165,0): 29, 21, 44, (34,166,0): 29, 21, 44, (34,167,0): 29, 21, 44, (34,168,0): 29, 21, 44, (34,169,0): 29, 21, 44, (34,170,0): 30, 22, 45, (34,171,0): 30, 22, 45, (34,172,0): 31, 23, 46, (34,173,0): 31, 23, 46, (34,174,0): 32, 24, 47, (34,175,0): 32, 24, 47, (34,176,0): 31, 23, 46, (34,177,0): 32, 24, 47, (34,178,0): 32, 24, 47, (34,179,0): 33, 25, 48, (34,180,0): 33, 25, 48, (34,181,0): 32, 24, 47, (34,182,0): 32, 24, 47, (34,183,0): 31, 23, 46, (34,184,0): 30, 22, 45, (34,185,0): 30, 22, 45, (34,186,0): 30, 22, 45, (34,187,0): 31, 23, 46, (34,188,0): 31, 23, 46, (34,189,0): 32, 24, 47, (34,190,0): 32, 24, 47, (34,191,0): 33, 25, 46, (34,192,0): 34, 25, 46, (34,193,0): 34, 25, 44, (34,194,0): 35, 26, 45, (34,195,0): 36, 27, 46, (34,196,0): 38, 26, 46, (34,197,0): 39, 27, 47, (34,198,0): 40, 28, 48, (34,199,0): 40, 28, 48, (34,200,0): 41, 28, 48, (34,201,0): 41, 28, 48, (34,202,0): 42, 27, 48, (34,203,0): 43, 28, 49, (34,204,0): 43, 28, 49, (34,205,0): 44, 29, 50, (34,206,0): 46, 28, 50, (34,207,0): 46, 28, 50, (34,208,0): 47, 30, 49, (34,209,0): 47, 30, 49, (34,210,0): 47, 30, 49, (34,211,0): 48, 31, 50, (34,212,0): 48, 31, 50, (34,213,0): 49, 32, 51, (34,214,0): 49, 32, 51, (34,215,0): 49, 32, 51, (34,216,0): 50, 33, 52, (34,217,0): 50, 33, 52, (34,218,0): 50, 33, 52, (34,219,0): 50, 33, 52, (34,220,0): 50, 33, 52, (34,221,0): 50, 33, 52, (34,222,0): 50, 33, 52, (34,223,0): 48, 33, 52, (34,224,0): 45, 30, 49, (34,225,0): 45, 32, 50, (34,226,0): 46, 33, 51, (34,227,0): 47, 34, 52, (34,228,0): 47, 34, 52, (34,229,0): 46, 33, 51, (34,230,0): 45, 32, 50, (34,231,0): 44, 31, 49, (34,232,0): 45, 32, 50, (34,233,0): 45, 32, 50, (34,234,0): 45, 32, 50, (34,235,0): 45, 32, 50, (34,236,0): 45, 32, 50, (34,237,0): 45, 32, 50, (34,238,0): 45, 32, 50, (34,239,0): 45, 32, 49, (34,240,0): 44, 30, 43, (34,241,0): 45, 32, 42, (34,242,0): 48, 32, 43, (34,243,0): 50, 34, 45, (34,244,0): 50, 34, 45, (34,245,0): 50, 34, 45, (34,246,0): 50, 32, 44, (34,247,0): 50, 32, 44, (34,248,0): 52, 32, 44, (34,249,0): 52, 32, 44, (34,250,0): 52, 32, 44, (34,251,0): 52, 32, 44, (34,252,0): 53, 31, 44, (34,253,0): 53, 31, 44, (34,254,0): 53, 31, 44, (34,255,0): 52, 32, 44, (34,256,0): 49, 28, 45, (34,257,0): 48, 30, 46, (34,258,0): 50, 32, 48, (34,259,0): 52, 34, 50, (34,260,0): 56, 35, 50, (34,261,0): 58, 37, 52, (34,262,0): 59, 38, 53, (34,263,0): 60, 39, 54, (34,264,0): 62, 40, 53, (34,265,0): 61, 39, 52, (34,266,0): 62, 38, 51, (34,267,0): 63, 39, 52, (34,268,0): 64, 40, 53, (34,269,0): 65, 41, 54, (34,270,0): 69, 43, 54, (34,271,0): 70, 44, 55, (34,272,0): 70, 43, 52, (34,273,0): 71, 44, 51, (34,274,0): 72, 45, 50, (34,275,0): 73, 46, 51, (34,276,0): 76, 47, 52, (34,277,0): 77, 48, 53, (34,278,0): 78, 49, 53, (34,279,0): 78, 49, 53, (34,280,0): 81, 51, 53, (34,281,0): 82, 52, 54, (34,282,0): 84, 52, 55, (34,283,0): 85, 53, 56, (34,284,0): 87, 55, 56, (34,285,0): 89, 57, 58, (34,286,0): 92, 58, 59, (34,287,0): 92, 58, 59, (34,288,0): 95, 56, 57, (34,289,0): 97, 57, 58, (34,290,0): 99, 59, 59, (34,291,0): 100, 60, 60, (34,292,0): 102, 62, 62, (34,293,0): 102, 62, 62, (34,294,0): 102, 62, 60, (34,295,0): 101, 61, 59, (34,296,0): 102, 62, 60, (34,297,0): 103, 64, 59, (34,298,0): 105, 66, 61, (34,299,0): 108, 69, 64, (34,300,0): 109, 70, 63, (34,301,0): 110, 71, 64, (34,302,0): 110, 71, 64, (34,303,0): 109, 72, 64, (34,304,0): 112, 75, 67, (34,305,0): 113, 75, 66, (34,306,0): 118, 76, 62, (34,307,0): 127, 82, 61, (34,308,0): 139, 89, 62, (34,309,0): 146, 95, 64, (34,310,0): 150, 97, 63, (34,311,0): 148, 98, 61, (34,312,0): 146, 98, 60, (34,313,0): 147, 99, 61, (34,314,0): 146, 100, 64, (34,315,0): 146, 100, 64, (34,316,0): 148, 100, 64, (34,317,0): 148, 100, 64, (34,318,0): 150, 98, 61, (34,319,0): 150, 96, 58, (34,320,0): 153, 97, 60, (34,321,0): 152, 96, 59, (34,322,0): 151, 95, 58, (34,323,0): 148, 96, 57, (34,324,0): 146, 96, 59, (34,325,0): 146, 98, 60, (34,326,0): 145, 99, 63, (34,327,0): 144, 102, 64, (34,328,0): 142, 100, 62, (34,329,0): 140, 101, 62, (34,330,0): 140, 100, 64, (34,331,0): 139, 99, 63, (34,332,0): 141, 98, 64, (34,333,0): 140, 97, 63, (34,334,0): 140, 97, 63, (34,335,0): 138, 98, 63, (34,336,0): 136, 97, 64, (34,337,0): 134, 98, 64, (34,338,0): 135, 99, 65, (34,339,0): 135, 99, 65, (34,340,0): 135, 99, 67, (34,341,0): 136, 100, 68, (34,342,0): 136, 100, 68, (34,343,0): 136, 100, 68, (34,344,0): 136, 99, 70, (34,345,0): 136, 99, 70, (34,346,0): 136, 99, 72, (34,347,0): 135, 98, 71, (34,348,0): 135, 98, 71, (34,349,0): 134, 97, 70, (34,350,0): 134, 97, 71, (34,351,0): 134, 97, 70, (34,352,0): 131, 94, 67, (34,353,0): 132, 95, 66, (34,354,0): 133, 96, 67, (34,355,0): 134, 97, 68, (34,356,0): 134, 97, 68, (34,357,0): 134, 97, 68, (34,358,0): 134, 97, 70, (34,359,0): 133, 96, 69, (34,360,0): 133, 96, 70, (34,361,0): 133, 96, 70, (34,362,0): 132, 94, 71, (34,363,0): 132, 94, 71, (34,364,0): 133, 95, 72, (34,365,0): 135, 97, 74, (34,366,0): 137, 99, 76, (34,367,0): 138, 101, 75, (34,368,0): 142, 100, 76, (34,369,0): 142, 100, 75, (34,370,0): 143, 101, 77, (34,371,0): 144, 102, 78, (34,372,0): 143, 101, 77, (34,373,0): 142, 100, 76, (34,374,0): 140, 98, 76, (34,375,0): 139, 97, 75, (34,376,0): 141, 98, 79, (34,377,0): 141, 98, 79, (34,378,0): 141, 98, 79, (34,379,0): 141, 98, 79, (34,380,0): 141, 98, 81, (34,381,0): 141, 98, 81, (34,382,0): 141, 98, 81, (34,383,0): 141, 98, 81, (34,384,0): 143, 101, 87, (34,385,0): 143, 101, 87, (34,386,0): 144, 101, 85, (34,387,0): 145, 102, 86, (34,388,0): 147, 101, 86, (34,389,0): 148, 102, 87, (34,390,0): 149, 102, 86, (34,391,0): 149, 102, 86, (34,392,0): 153, 102, 85, (34,393,0): 153, 102, 85, (34,394,0): 154, 101, 85, (34,395,0): 154, 101, 85, (34,396,0): 156, 100, 83, (34,397,0): 156, 100, 83, (34,398,0): 157, 100, 83, (34,399,0): 156, 100, 83, (34,400,0): 154, 101, 85, (34,401,0): 153, 102, 85, (34,402,0): 155, 102, 84, (34,403,0): 155, 102, 84, (34,404,0): 156, 103, 85, (34,405,0): 156, 104, 83, (34,406,0): 159, 104, 83, (34,407,0): 159, 104, 83, (34,408,0): 161, 105, 82, (34,409,0): 161, 105, 80, (34,410,0): 160, 104, 77, (34,411,0): 160, 104, 77, (34,412,0): 162, 105, 76, (34,413,0): 163, 106, 77, (34,414,0): 164, 107, 77, (34,415,0): 165, 108, 78, (34,416,0): 166, 112, 78, (34,417,0): 164, 110, 76, (34,418,0): 159, 104, 73, (34,419,0): 155, 100, 70, (34,420,0): 150, 94, 67, (34,421,0): 145, 91, 65, (34,422,0): 141, 89, 67, (34,423,0): 139, 88, 67, (34,424,0): 130, 81, 64, (34,425,0): 125, 79, 63, (34,426,0): 118, 76, 62, (34,427,0): 113, 75, 62, (34,428,0): 109, 75, 63, (34,429,0): 104, 75, 61, (34,430,0): 100, 72, 58, (34,431,0): 96, 68, 56, (34,432,0): 96, 68, 57, (34,433,0): 95, 67, 56, (34,434,0): 93, 65, 54, (34,435,0): 91, 63, 52, (34,436,0): 91, 63, 52, (34,437,0): 92, 64, 53, (34,438,0): 94, 66, 55, (34,439,0): 96, 68, 57, (34,440,0): 101, 73, 62, (34,441,0): 100, 72, 61, (34,442,0): 100, 72, 61, (34,443,0): 99, 71, 60, (34,444,0): 97, 69, 58, (34,445,0): 96, 68, 57, (34,446,0): 95, 67, 56, (34,447,0): 94, 65, 57, (34,448,0): 95, 62, 57, (34,449,0): 95, 62, 57, (34,450,0): 91, 60, 55, (34,451,0): 90, 59, 54, (34,452,0): 89, 58, 53, (34,453,0): 89, 58, 53, (34,454,0): 89, 60, 56, (34,455,0): 89, 60, 56, (34,456,0): 87, 59, 56, (34,457,0): 88, 60, 57, (34,458,0): 90, 62, 61, (34,459,0): 91, 63, 62, (34,460,0): 90, 64, 63, (34,461,0): 89, 63, 62, (34,462,0): 89, 63, 62, (34,463,0): 88, 62, 61, (34,464,0): 90, 60, 58, (34,465,0): 91, 61, 59, (34,466,0): 91, 61, 59, (34,467,0): 91, 61, 59, (34,468,0): 91, 63, 60, (34,469,0): 92, 64, 61, (34,470,0): 90, 65, 61, (34,471,0): 90, 65, 61, (34,472,0): 88, 63, 59, (34,473,0): 88, 63, 59, (34,474,0): 85, 61, 57, (34,475,0): 84, 60, 56, (34,476,0): 82, 61, 56, (34,477,0): 82, 61, 56, (34,478,0): 83, 62, 57, (34,479,0): 83, 62, 57, (34,480,0): 88, 67, 62, (34,481,0): 89, 68, 63, (34,482,0): 89, 69, 62, (34,483,0): 90, 70, 61, (34,484,0): 93, 70, 62, (34,485,0): 94, 72, 61, (34,486,0): 96, 72, 60, (34,487,0): 96, 72, 60, (34,488,0): 96, 72, 60, (34,489,0): 97, 73, 61, (34,490,0): 99, 72, 63, (34,491,0): 99, 72, 63, (34,492,0): 100, 71, 67, (34,493,0): 98, 69, 65, (34,494,0): 97, 67, 65, (34,495,0): 95, 67, 64, (34,496,0): 94, 66, 63, (34,497,0): 92, 67, 63, (34,498,0): 92, 67, 63, (34,499,0): 92, 67, 63, (34,500,0): 92, 67, 63, (34,501,0): 92, 67, 63, (34,502,0): 92, 67, 63, (34,503,0): 92, 67, 63, (34,504,0): 93, 68, 64, (34,505,0): 93, 68, 64, (34,506,0): 93, 68, 64, (34,507,0): 92, 67, 63, (34,508,0): 92, 67, 63, (34,509,0): 91, 66, 62, (34,510,0): 91, 66, 62, (34,511,0): 91, 66, 62, (34,512,0): 93, 68, 64, (34,513,0): 93, 68, 64, (34,514,0): 93, 68, 64, (34,515,0): 93, 68, 64, (34,516,0): 93, 68, 64, (34,517,0): 93, 68, 64, (34,518,0): 93, 68, 64, (34,519,0): 93, 68, 64, (34,520,0): 93, 68, 64, (34,521,0): 92, 67, 63, (34,522,0): 92, 67, 63, (34,523,0): 92, 67, 63, (34,524,0): 91, 66, 62, (34,525,0): 90, 65, 61, (34,526,0): 90, 65, 61, (34,527,0): 89, 65, 61, (34,528,0): 89, 65, 63, (34,529,0): 87, 66, 63, (34,530,0): 87, 66, 63, (34,531,0): 87, 66, 63, (34,532,0): 86, 65, 64, (34,533,0): 84, 63, 62, (34,534,0): 82, 61, 60, (34,535,0): 81, 60, 59, (34,536,0): 78, 56, 58, (34,537,0): 76, 54, 56, (34,538,0): 73, 51, 54, (34,539,0): 70, 48, 51, (34,540,0): 68, 46, 49, (34,541,0): 68, 46, 49, (34,542,0): 69, 46, 52, (34,543,0): 69, 48, 53, (34,544,0): 67, 46, 55, (34,545,0): 67, 47, 56, (34,546,0): 69, 48, 57, (34,547,0): 70, 49, 58, (34,548,0): 71, 50, 57, (34,549,0): 70, 49, 56, (34,550,0): 71, 48, 54, (34,551,0): 70, 47, 53, (34,552,0): 74, 49, 53, (34,553,0): 75, 50, 53, (34,554,0): 76, 51, 54, (34,555,0): 77, 53, 53, (34,556,0): 80, 54, 55, (34,557,0): 81, 55, 56, (34,558,0): 83, 57, 58, (34,559,0): 82, 58, 58, (34,560,0): 78, 53, 56, (34,561,0): 76, 54, 57, (34,562,0): 76, 54, 57, (34,563,0): 75, 53, 56, (34,564,0): 75, 53, 56, (34,565,0): 74, 52, 55, (34,566,0): 74, 52, 55, (34,567,0): 73, 51, 54, (34,568,0): 73, 51, 54, (34,569,0): 72, 50, 53, (34,570,0): 72, 50, 53, (34,571,0): 71, 49, 52, (34,572,0): 69, 47, 50, (34,573,0): 68, 46, 49, (34,574,0): 68, 46, 49, (34,575,0): 67, 45, 48, (34,576,0): 65, 44, 51, (34,577,0): 65, 44, 51, (34,578,0): 66, 43, 51, (34,579,0): 66, 43, 51, (34,580,0): 66, 43, 49, (34,581,0): 66, 43, 49, (34,582,0): 68, 43, 49, (34,583,0): 69, 42, 49, (34,584,0): 72, 43, 48, (34,585,0): 73, 44, 49, (34,586,0): 75, 44, 49, (34,587,0): 76, 45, 50, (34,588,0): 77, 46, 51, (34,589,0): 79, 48, 53, (34,590,0): 81, 49, 52, (34,591,0): 80, 50, 52, (34,592,0): 81, 52, 56, (34,593,0): 79, 53, 56, (34,594,0): 78, 52, 53, (34,595,0): 76, 50, 49, (34,596,0): 75, 49, 48, (34,597,0): 73, 48, 44, (34,598,0): 72, 47, 42, (34,599,0): 72, 47, 42, (35,0,0): 39, 26, 44, (35,1,0): 39, 26, 44, (35,2,0): 39, 26, 43, (35,3,0): 40, 27, 44, (35,4,0): 40, 27, 44, (35,5,0): 41, 28, 45, (35,6,0): 42, 28, 43, (35,7,0): 43, 29, 44, (35,8,0): 45, 29, 42, (35,9,0): 45, 29, 42, (35,10,0): 46, 28, 42, (35,11,0): 47, 29, 43, (35,12,0): 47, 29, 41, (35,13,0): 48, 30, 42, (35,14,0): 48, 30, 42, (35,15,0): 49, 31, 43, (35,16,0): 47, 29, 41, (35,17,0): 47, 29, 41, (35,18,0): 47, 29, 41, (35,19,0): 47, 29, 41, (35,20,0): 47, 29, 41, (35,21,0): 47, 29, 41, (35,22,0): 47, 29, 41, (35,23,0): 47, 29, 41, (35,24,0): 46, 28, 40, (35,25,0): 46, 28, 40, (35,26,0): 46, 28, 40, (35,27,0): 46, 28, 40, (35,28,0): 46, 28, 40, (35,29,0): 46, 28, 40, (35,30,0): 46, 28, 40, (35,31,0): 46, 28, 40, (35,32,0): 49, 32, 48, (35,33,0): 48, 31, 47, (35,34,0): 47, 30, 46, (35,35,0): 47, 30, 46, (35,36,0): 47, 30, 46, (35,37,0): 47, 30, 46, (35,38,0): 48, 31, 47, (35,39,0): 49, 32, 48, (35,40,0): 47, 30, 46, (35,41,0): 47, 30, 46, (35,42,0): 47, 30, 46, (35,43,0): 47, 30, 46, (35,44,0): 47, 30, 46, (35,45,0): 47, 30, 46, (35,46,0): 47, 30, 46, (35,47,0): 47, 30, 46, (35,48,0): 46, 28, 44, (35,49,0): 46, 28, 44, (35,50,0): 46, 28, 44, (35,51,0): 46, 28, 44, (35,52,0): 46, 28, 44, (35,53,0): 46, 28, 44, (35,54,0): 46, 28, 44, (35,55,0): 46, 28, 44, (35,56,0): 46, 28, 44, (35,57,0): 45, 27, 43, (35,58,0): 45, 27, 43, (35,59,0): 44, 26, 42, (35,60,0): 44, 26, 42, (35,61,0): 43, 25, 41, (35,62,0): 43, 25, 41, (35,63,0): 43, 25, 41, (35,64,0): 42, 25, 41, (35,65,0): 42, 25, 41, (35,66,0): 39, 25, 40, (35,67,0): 39, 25, 40, (35,68,0): 39, 25, 40, (35,69,0): 38, 24, 39, (35,70,0): 37, 24, 41, (35,71,0): 37, 24, 41, (35,72,0): 34, 23, 40, (35,73,0): 33, 22, 39, (35,74,0): 33, 21, 41, (35,75,0): 33, 21, 41, (35,76,0): 30, 21, 40, (35,77,0): 29, 20, 39, (35,78,0): 29, 20, 39, (35,79,0): 29, 20, 39, (35,80,0): 31, 20, 37, (35,81,0): 31, 18, 36, (35,82,0): 31, 18, 36, (35,83,0): 31, 18, 36, (35,84,0): 30, 17, 35, (35,85,0): 29, 16, 34, (35,86,0): 29, 16, 34, (35,87,0): 29, 16, 34, (35,88,0): 32, 19, 37, (35,89,0): 32, 19, 37, (35,90,0): 33, 20, 38, (35,91,0): 33, 20, 38, (35,92,0): 34, 21, 39, (35,93,0): 34, 21, 39, (35,94,0): 35, 22, 40, (35,95,0): 34, 22, 42, (35,96,0): 30, 21, 42, (35,97,0): 30, 20, 44, (35,98,0): 30, 20, 44, (35,99,0): 30, 20, 44, (35,100,0): 30, 20, 44, (35,101,0): 30, 20, 44, (35,102,0): 30, 20, 44, (35,103,0): 30, 20, 44, (35,104,0): 31, 21, 45, (35,105,0): 31, 21, 45, (35,106,0): 31, 21, 45, (35,107,0): 32, 22, 46, (35,108,0): 32, 22, 46, (35,109,0): 32, 22, 46, (35,110,0): 33, 23, 47, (35,111,0): 33, 23, 47, (35,112,0): 31, 21, 45, (35,113,0): 31, 21, 45, (35,114,0): 32, 22, 46, (35,115,0): 33, 23, 47, (35,116,0): 33, 23, 47, (35,117,0): 34, 24, 48, (35,118,0): 35, 25, 49, (35,119,0): 35, 25, 49, (35,120,0): 29, 19, 43, (35,121,0): 30, 20, 44, (35,122,0): 31, 21, 45, (35,123,0): 32, 22, 46, (35,124,0): 33, 23, 47, (35,125,0): 35, 25, 49, (35,126,0): 36, 26, 50, (35,127,0): 36, 26, 50, (35,128,0): 32, 24, 47, (35,129,0): 32, 24, 47, (35,130,0): 31, 23, 46, (35,131,0): 31, 23, 46, (35,132,0): 30, 22, 45, (35,133,0): 30, 22, 45, (35,134,0): 29, 21, 44, (35,135,0): 29, 21, 44, (35,136,0): 29, 21, 44, (35,137,0): 29, 21, 44, (35,138,0): 29, 21, 44, (35,139,0): 29, 21, 44, (35,140,0): 29, 21, 44, (35,141,0): 29, 21, 44, (35,142,0): 29, 21, 44, (35,143,0): 29, 21, 44, (35,144,0): 29, 21, 44, (35,145,0): 29, 21, 44, (35,146,0): 29, 21, 44, (35,147,0): 29, 21, 44, (35,148,0): 29, 21, 44, (35,149,0): 29, 21, 44, (35,150,0): 29, 21, 44, (35,151,0): 29, 21, 44, (35,152,0): 29, 21, 44, (35,153,0): 29, 21, 44, (35,154,0): 29, 21, 44, (35,155,0): 29, 21, 44, (35,156,0): 29, 21, 44, (35,157,0): 29, 21, 44, (35,158,0): 29, 21, 44, (35,159,0): 29, 21, 44, (35,160,0): 29, 21, 44, (35,161,0): 29, 21, 44, (35,162,0): 29, 21, 44, (35,163,0): 29, 21, 44, (35,164,0): 29, 21, 44, (35,165,0): 28, 20, 43, (35,166,0): 28, 20, 43, (35,167,0): 28, 20, 43, (35,168,0): 29, 21, 44, (35,169,0): 29, 21, 44, (35,170,0): 30, 22, 45, (35,171,0): 30, 22, 45, (35,172,0): 31, 23, 46, (35,173,0): 31, 23, 46, (35,174,0): 32, 24, 47, (35,175,0): 32, 24, 47, (35,176,0): 30, 22, 45, (35,177,0): 31, 23, 46, (35,178,0): 33, 25, 48, (35,179,0): 34, 26, 49, (35,180,0): 34, 26, 49, (35,181,0): 33, 25, 48, (35,182,0): 31, 23, 46, (35,183,0): 30, 22, 45, (35,184,0): 30, 22, 45, (35,185,0): 31, 23, 46, (35,186,0): 31, 23, 46, (35,187,0): 31, 23, 46, (35,188,0): 32, 24, 47, (35,189,0): 33, 25, 48, (35,190,0): 33, 25, 48, (35,191,0): 33, 25, 46, (35,192,0): 33, 24, 45, (35,193,0): 33, 24, 43, (35,194,0): 34, 25, 44, (35,195,0): 35, 26, 45, (35,196,0): 39, 27, 47, (35,197,0): 40, 28, 48, (35,198,0): 41, 29, 49, (35,199,0): 41, 29, 49, (35,200,0): 41, 28, 48, (35,201,0): 41, 28, 48, (35,202,0): 42, 27, 48, (35,203,0): 43, 28, 49, (35,204,0): 43, 28, 49, (35,205,0): 44, 29, 50, (35,206,0): 46, 28, 50, (35,207,0): 46, 28, 50, (35,208,0): 47, 30, 49, (35,209,0): 47, 30, 49, (35,210,0): 47, 30, 49, (35,211,0): 48, 31, 50, (35,212,0): 48, 31, 50, (35,213,0): 49, 32, 51, (35,214,0): 49, 32, 51, (35,215,0): 49, 32, 51, (35,216,0): 50, 33, 52, (35,217,0): 50, 33, 52, (35,218,0): 50, 33, 52, (35,219,0): 50, 33, 52, (35,220,0): 50, 33, 52, (35,221,0): 50, 33, 52, (35,222,0): 50, 33, 52, (35,223,0): 48, 33, 52, (35,224,0): 46, 31, 50, (35,225,0): 46, 33, 51, (35,226,0): 47, 34, 52, (35,227,0): 48, 35, 53, (35,228,0): 48, 35, 53, (35,229,0): 47, 34, 52, (35,230,0): 46, 33, 51, (35,231,0): 45, 32, 50, (35,232,0): 45, 32, 50, (35,233,0): 45, 32, 50, (35,234,0): 45, 32, 50, (35,235,0): 45, 32, 50, (35,236,0): 45, 32, 50, (35,237,0): 45, 32, 50, (35,238,0): 45, 32, 50, (35,239,0): 45, 32, 49, (35,240,0): 45, 31, 44, (35,241,0): 46, 33, 43, (35,242,0): 49, 33, 44, (35,243,0): 49, 33, 44, (35,244,0): 50, 34, 45, (35,245,0): 50, 34, 45, (35,246,0): 51, 33, 45, (35,247,0): 51, 33, 45, (35,248,0): 53, 33, 45, (35,249,0): 53, 33, 45, (35,250,0): 53, 33, 45, (35,251,0): 53, 33, 45, (35,252,0): 54, 32, 45, (35,253,0): 54, 32, 45, (35,254,0): 54, 32, 45, (35,255,0): 54, 32, 45, (35,256,0): 51, 30, 47, (35,257,0): 49, 31, 47, (35,258,0): 51, 33, 49, (35,259,0): 52, 34, 50, (35,260,0): 56, 35, 50, (35,261,0): 58, 37, 52, (35,262,0): 59, 38, 53, (35,263,0): 60, 40, 52, (35,264,0): 61, 39, 52, (35,265,0): 62, 40, 53, (35,266,0): 63, 39, 52, (35,267,0): 64, 40, 53, (35,268,0): 65, 41, 54, (35,269,0): 66, 42, 55, (35,270,0): 69, 43, 54, (35,271,0): 70, 44, 53, (35,272,0): 71, 44, 53, (35,273,0): 71, 44, 51, (35,274,0): 72, 45, 50, (35,275,0): 73, 46, 51, (35,276,0): 76, 47, 52, (35,277,0): 77, 48, 53, (35,278,0): 78, 49, 53, (35,279,0): 78, 49, 53, (35,280,0): 82, 52, 54, (35,281,0): 82, 52, 54, (35,282,0): 84, 52, 55, (35,283,0): 86, 54, 57, (35,284,0): 88, 56, 57, (35,285,0): 89, 57, 58, (35,286,0): 92, 58, 59, (35,287,0): 94, 58, 60, (35,288,0): 95, 56, 57, (35,289,0): 97, 57, 58, (35,290,0): 99, 59, 59, (35,291,0): 101, 61, 61, (35,292,0): 102, 62, 62, (35,293,0): 102, 62, 62, (35,294,0): 102, 62, 60, (35,295,0): 102, 62, 60, (35,296,0): 104, 65, 60, (35,297,0): 105, 66, 61, (35,298,0): 106, 67, 62, (35,299,0): 107, 68, 63, (35,300,0): 109, 70, 63, (35,301,0): 110, 71, 64, (35,302,0): 110, 71, 64, (35,303,0): 111, 72, 65, (35,304,0): 114, 75, 68, (35,305,0): 114, 76, 65, (35,306,0): 121, 78, 62, (35,307,0): 131, 85, 62, (35,308,0): 142, 92, 65, (35,309,0): 150, 97, 65, (35,310,0): 151, 99, 62, (35,311,0): 151, 99, 62, (35,312,0): 149, 99, 62, (35,313,0): 149, 101, 63, (35,314,0): 147, 101, 65, (35,315,0): 147, 101, 65, (35,316,0): 149, 101, 65, (35,317,0): 149, 101, 63, (35,318,0): 152, 100, 61, (35,319,0): 152, 98, 60, (35,320,0): 155, 99, 62, (35,321,0): 154, 98, 61, (35,322,0): 151, 97, 59, (35,323,0): 149, 97, 58, (35,324,0): 147, 97, 60, (35,325,0): 144, 99, 60, (35,326,0): 144, 100, 63, (35,327,0): 144, 102, 64, (35,328,0): 141, 102, 63, (35,329,0): 141, 102, 63, (35,330,0): 141, 101, 65, (35,331,0): 140, 100, 64, (35,332,0): 142, 99, 65, (35,333,0): 141, 98, 64, (35,334,0): 141, 98, 64, (35,335,0): 139, 99, 64, (35,336,0): 137, 98, 65, (35,337,0): 135, 99, 65, (35,338,0): 135, 99, 65, (35,339,0): 136, 100, 66, (35,340,0): 136, 100, 68, (35,341,0): 136, 100, 68, (35,342,0): 136, 100, 68, (35,343,0): 136, 100, 68, (35,344,0): 137, 100, 71, (35,345,0): 137, 100, 71, (35,346,0): 137, 100, 73, (35,347,0): 137, 100, 73, (35,348,0): 137, 100, 73, (35,349,0): 137, 100, 73, (35,350,0): 136, 99, 73, (35,351,0): 136, 99, 72, (35,352,0): 133, 96, 67, (35,353,0): 133, 96, 67, (35,354,0): 134, 97, 68, (35,355,0): 134, 97, 68, (35,356,0): 134, 97, 68, (35,357,0): 134, 97, 68, (35,358,0): 134, 97, 70, (35,359,0): 134, 97, 70, (35,360,0): 135, 98, 72, (35,361,0): 135, 98, 72, (35,362,0): 134, 96, 73, (35,363,0): 134, 96, 73, (35,364,0): 135, 97, 74, (35,365,0): 136, 98, 75, (35,366,0): 138, 100, 77, (35,367,0): 139, 102, 76, (35,368,0): 141, 99, 75, (35,369,0): 142, 100, 75, (35,370,0): 143, 101, 77, (35,371,0): 143, 101, 77, (35,372,0): 143, 101, 77, (35,373,0): 142, 100, 76, (35,374,0): 141, 99, 77, (35,375,0): 140, 98, 76, (35,376,0): 142, 99, 80, (35,377,0): 142, 99, 80, (35,378,0): 142, 99, 80, (35,379,0): 142, 99, 80, (35,380,0): 142, 99, 82, (35,381,0): 142, 99, 82, (35,382,0): 142, 99, 82, (35,383,0): 142, 99, 82, (35,384,0): 143, 101, 85, (35,385,0): 143, 101, 87, (35,386,0): 144, 101, 85, (35,387,0): 145, 102, 86, (35,388,0): 147, 101, 86, (35,389,0): 148, 102, 87, (35,390,0): 149, 102, 86, (35,391,0): 149, 102, 86, (35,392,0): 153, 102, 85, (35,393,0): 153, 102, 85, (35,394,0): 154, 101, 85, (35,395,0): 155, 102, 86, (35,396,0): 157, 101, 84, (35,397,0): 157, 101, 84, (35,398,0): 159, 102, 85, (35,399,0): 158, 102, 85, (35,400,0): 156, 103, 87, (35,401,0): 155, 104, 85, (35,402,0): 156, 103, 85, (35,403,0): 157, 105, 84, (35,404,0): 157, 105, 84, (35,405,0): 158, 106, 84, (35,406,0): 160, 105, 84, (35,407,0): 161, 107, 83, (35,408,0): 165, 109, 84, (35,409,0): 163, 107, 80, (35,410,0): 162, 106, 79, (35,411,0): 161, 106, 76, (35,412,0): 163, 106, 77, (35,413,0): 165, 108, 78, (35,414,0): 168, 111, 81, (35,415,0): 170, 114, 81, (35,416,0): 174, 118, 83, (35,417,0): 171, 117, 81, (35,418,0): 168, 114, 80, (35,419,0): 163, 108, 77, (35,420,0): 159, 104, 74, (35,421,0): 155, 99, 72, (35,422,0): 151, 97, 71, (35,423,0): 147, 97, 74, (35,424,0): 137, 89, 67, (35,425,0): 130, 85, 66, (35,426,0): 121, 80, 62, (35,427,0): 113, 76, 60, (35,428,0): 109, 76, 61, (35,429,0): 106, 74, 59, (35,430,0): 100, 71, 55, (35,431,0): 97, 69, 55, (35,432,0): 98, 70, 58, (35,433,0): 96, 68, 57, (35,434,0): 93, 65, 54, (35,435,0): 91, 63, 52, (35,436,0): 91, 63, 52, (35,437,0): 91, 63, 52, (35,438,0): 93, 65, 54, (35,439,0): 94, 66, 55, (35,440,0): 101, 73, 62, (35,441,0): 101, 73, 62, (35,442,0): 101, 73, 62, (35,443,0): 101, 73, 62, (35,444,0): 99, 71, 60, (35,445,0): 98, 70, 59, (35,446,0): 96, 68, 57, (35,447,0): 95, 67, 56, (35,448,0): 96, 63, 56, (35,449,0): 95, 62, 57, (35,450,0): 92, 61, 56, (35,451,0): 91, 60, 55, (35,452,0): 90, 59, 54, (35,453,0): 90, 59, 54, (35,454,0): 88, 59, 55, (35,455,0): 88, 59, 55, (35,456,0): 88, 60, 57, (35,457,0): 89, 61, 58, (35,458,0): 91, 63, 62, (35,459,0): 92, 64, 63, (35,460,0): 90, 64, 63, (35,461,0): 90, 64, 63, (35,462,0): 89, 63, 62, (35,463,0): 89, 63, 62, (35,464,0): 92, 62, 60, (35,465,0): 92, 62, 60, (35,466,0): 92, 62, 60, (35,467,0): 93, 63, 61, (35,468,0): 92, 64, 61, (35,469,0): 93, 65, 62, (35,470,0): 91, 66, 62, (35,471,0): 91, 66, 62, (35,472,0): 89, 64, 60, (35,473,0): 89, 64, 60, (35,474,0): 86, 62, 58, (35,475,0): 85, 61, 57, (35,476,0): 82, 61, 56, (35,477,0): 81, 60, 55, (35,478,0): 81, 60, 55, (35,479,0): 80, 59, 54, (35,480,0): 84, 63, 58, (35,481,0): 85, 64, 59, (35,482,0): 86, 66, 59, (35,483,0): 88, 68, 59, (35,484,0): 93, 70, 62, (35,485,0): 94, 72, 61, (35,486,0): 97, 73, 61, (35,487,0): 98, 74, 62, (35,488,0): 96, 72, 60, (35,489,0): 97, 73, 61, (35,490,0): 99, 72, 63, (35,491,0): 99, 72, 63, (35,492,0): 99, 70, 66, (35,493,0): 97, 68, 64, (35,494,0): 96, 66, 64, (35,495,0): 94, 66, 63, (35,496,0): 94, 66, 63, (35,497,0): 92, 67, 63, (35,498,0): 92, 67, 63, (35,499,0): 92, 67, 63, (35,500,0): 92, 67, 63, (35,501,0): 92, 67, 63, (35,502,0): 92, 67, 63, (35,503,0): 92, 67, 63, (35,504,0): 93, 68, 64, (35,505,0): 93, 68, 64, (35,506,0): 93, 68, 64, (35,507,0): 92, 67, 63, (35,508,0): 92, 67, 63, (35,509,0): 91, 66, 62, (35,510,0): 91, 66, 62, (35,511,0): 91, 66, 62, (35,512,0): 92, 67, 63, (35,513,0): 92, 67, 63, (35,514,0): 92, 67, 63, (35,515,0): 92, 67, 63, (35,516,0): 92, 67, 63, (35,517,0): 92, 67, 63, (35,518,0): 92, 67, 63, (35,519,0): 92, 67, 63, (35,520,0): 92, 67, 63, (35,521,0): 92, 67, 63, (35,522,0): 92, 67, 63, (35,523,0): 91, 66, 62, (35,524,0): 91, 66, 62, (35,525,0): 90, 65, 61, (35,526,0): 90, 65, 61, (35,527,0): 88, 64, 60, (35,528,0): 88, 64, 62, (35,529,0): 87, 66, 63, (35,530,0): 87, 66, 63, (35,531,0): 87, 66, 63, (35,532,0): 87, 66, 65, (35,533,0): 85, 64, 63, (35,534,0): 84, 63, 62, (35,535,0): 83, 62, 61, (35,536,0): 79, 57, 59, (35,537,0): 77, 55, 57, (35,538,0): 73, 51, 54, (35,539,0): 70, 48, 51, (35,540,0): 69, 47, 50, (35,541,0): 69, 47, 50, (35,542,0): 70, 47, 53, (35,543,0): 70, 49, 54, (35,544,0): 68, 47, 56, (35,545,0): 67, 47, 56, (35,546,0): 69, 48, 57, (35,547,0): 69, 48, 57, (35,548,0): 69, 48, 55, (35,549,0): 69, 48, 55, (35,550,0): 70, 47, 53, (35,551,0): 70, 47, 53, (35,552,0): 74, 49, 53, (35,553,0): 74, 49, 53, (35,554,0): 75, 50, 54, (35,555,0): 77, 52, 55, (35,556,0): 80, 54, 57, (35,557,0): 81, 55, 56, (35,558,0): 82, 56, 57, (35,559,0): 82, 57, 60, (35,560,0): 78, 53, 57, (35,561,0): 75, 53, 56, (35,562,0): 75, 53, 56, (35,563,0): 75, 53, 56, (35,564,0): 74, 52, 55, (35,565,0): 73, 51, 54, (35,566,0): 73, 51, 54, (35,567,0): 73, 51, 54, (35,568,0): 74, 52, 55, (35,569,0): 73, 51, 54, (35,570,0): 72, 50, 53, (35,571,0): 71, 49, 52, (35,572,0): 70, 48, 51, (35,573,0): 69, 47, 50, (35,574,0): 68, 46, 49, (35,575,0): 68, 46, 49, (35,576,0): 65, 44, 51, (35,577,0): 65, 44, 51, (35,578,0): 66, 43, 51, (35,579,0): 66, 43, 51, (35,580,0): 66, 43, 49, (35,581,0): 66, 43, 49, (35,582,0): 68, 43, 49, (35,583,0): 68, 43, 49, (35,584,0): 67, 40, 45, (35,585,0): 70, 41, 46, (35,586,0): 72, 41, 46, (35,587,0): 73, 42, 47, (35,588,0): 75, 44, 49, (35,589,0): 76, 45, 50, (35,590,0): 77, 47, 49, (35,591,0): 78, 48, 50, (35,592,0): 77, 51, 54, (35,593,0): 76, 50, 53, (35,594,0): 76, 50, 53, (35,595,0): 75, 49, 50, (35,596,0): 74, 48, 47, (35,597,0): 74, 49, 45, (35,598,0): 73, 48, 44, (35,599,0): 73, 48, 43, (36,0,0): 39, 26, 44, (36,1,0): 40, 27, 45, (36,2,0): 40, 27, 44, (36,3,0): 41, 28, 45, (36,4,0): 41, 28, 45, (36,5,0): 42, 29, 46, (36,6,0): 43, 29, 44, (36,7,0): 43, 29, 44, (36,8,0): 45, 29, 42, (36,9,0): 46, 30, 43, (36,10,0): 47, 29, 43, (36,11,0): 48, 30, 44, (36,12,0): 48, 30, 42, (36,13,0): 49, 31, 43, (36,14,0): 49, 31, 43, (36,15,0): 49, 31, 43, (36,16,0): 48, 30, 42, (36,17,0): 48, 30, 42, (36,18,0): 48, 30, 42, (36,19,0): 48, 30, 42, (36,20,0): 48, 30, 42, (36,21,0): 48, 30, 42, (36,22,0): 48, 30, 42, (36,23,0): 48, 30, 42, (36,24,0): 46, 28, 40, (36,25,0): 46, 28, 40, (36,26,0): 46, 28, 40, (36,27,0): 46, 28, 40, (36,28,0): 46, 28, 40, (36,29,0): 46, 28, 40, (36,30,0): 46, 28, 40, (36,31,0): 46, 28, 40, (36,32,0): 49, 32, 48, (36,33,0): 48, 31, 47, (36,34,0): 47, 30, 46, (36,35,0): 47, 30, 46, (36,36,0): 47, 30, 46, (36,37,0): 47, 30, 46, (36,38,0): 48, 31, 47, (36,39,0): 49, 32, 48, (36,40,0): 47, 30, 46, (36,41,0): 47, 30, 46, (36,42,0): 47, 30, 46, (36,43,0): 47, 30, 46, (36,44,0): 47, 30, 46, (36,45,0): 47, 30, 46, (36,46,0): 47, 30, 46, (36,47,0): 47, 30, 46, (36,48,0): 46, 28, 44, (36,49,0): 46, 28, 44, (36,50,0): 46, 28, 44, (36,51,0): 46, 28, 44, (36,52,0): 46, 28, 44, (36,53,0): 46, 28, 44, (36,54,0): 46, 28, 44, (36,55,0): 46, 28, 44, (36,56,0): 46, 28, 44, (36,57,0): 46, 28, 44, (36,58,0): 46, 28, 44, (36,59,0): 45, 27, 43, (36,60,0): 45, 27, 43, (36,61,0): 44, 26, 42, (36,62,0): 44, 26, 42, (36,63,0): 43, 25, 41, (36,64,0): 42, 25, 41, (36,65,0): 42, 25, 41, (36,66,0): 39, 25, 40, (36,67,0): 39, 25, 40, (36,68,0): 38, 24, 39, (36,69,0): 37, 23, 38, (36,70,0): 36, 23, 40, (36,71,0): 35, 22, 39, (36,72,0): 33, 22, 39, (36,73,0): 33, 22, 39, (36,74,0): 33, 21, 41, (36,75,0): 32, 20, 40, (36,76,0): 29, 20, 39, (36,77,0): 29, 20, 39, (36,78,0): 29, 20, 39, (36,79,0): 28, 19, 38, (36,80,0): 30, 19, 36, (36,81,0): 30, 19, 36, (36,82,0): 30, 19, 36, (36,83,0): 29, 18, 35, (36,84,0): 28, 17, 34, (36,85,0): 28, 17, 34, (36,86,0): 28, 17, 34, (36,87,0): 27, 16, 33, (36,88,0): 30, 19, 36, (36,89,0): 30, 19, 36, (36,90,0): 30, 19, 36, (36,91,0): 31, 20, 37, (36,92,0): 32, 21, 38, (36,93,0): 32, 21, 38, (36,94,0): 32, 21, 38, (36,95,0): 33, 21, 41, (36,96,0): 29, 20, 41, (36,97,0): 29, 19, 43, (36,98,0): 29, 19, 43, (36,99,0): 29, 19, 43, (36,100,0): 29, 19, 43, (36,101,0): 29, 19, 43, (36,102,0): 29, 19, 43, (36,103,0): 29, 19, 43, (36,104,0): 29, 19, 43, (36,105,0): 30, 20, 44, (36,106,0): 30, 20, 44, (36,107,0): 31, 21, 45, (36,108,0): 32, 22, 46, (36,109,0): 32, 22, 46, (36,110,0): 33, 23, 47, (36,111,0): 33, 23, 47, (36,112,0): 31, 21, 45, (36,113,0): 32, 22, 46, (36,114,0): 32, 22, 46, (36,115,0): 33, 23, 47, (36,116,0): 33, 23, 47, (36,117,0): 34, 24, 48, (36,118,0): 34, 24, 48, (36,119,0): 35, 25, 49, (36,120,0): 30, 20, 44, (36,121,0): 30, 20, 44, (36,122,0): 31, 21, 45, (36,123,0): 33, 23, 47, (36,124,0): 34, 24, 48, (36,125,0): 35, 25, 49, (36,126,0): 36, 26, 50, (36,127,0): 37, 27, 51, (36,128,0): 32, 24, 47, (36,129,0): 32, 24, 47, (36,130,0): 31, 23, 46, (36,131,0): 31, 23, 46, (36,132,0): 30, 22, 45, (36,133,0): 30, 22, 45, (36,134,0): 29, 21, 44, (36,135,0): 29, 21, 44, (36,136,0): 29, 21, 44, (36,137,0): 29, 21, 44, (36,138,0): 29, 21, 44, (36,139,0): 29, 21, 44, (36,140,0): 29, 21, 44, (36,141,0): 29, 21, 44, (36,142,0): 29, 21, 44, (36,143,0): 29, 21, 44, (36,144,0): 27, 22, 44, (36,145,0): 27, 22, 44, (36,146,0): 27, 22, 44, (36,147,0): 27, 22, 44, (36,148,0): 27, 22, 44, (36,149,0): 27, 22, 44, (36,150,0): 27, 22, 44, (36,151,0): 27, 22, 44, (36,152,0): 27, 22, 44, (36,153,0): 27, 22, 44, (36,154,0): 27, 22, 44, (36,155,0): 27, 22, 44, (36,156,0): 27, 22, 44, (36,157,0): 27, 22, 44, (36,158,0): 27, 22, 44, (36,159,0): 27, 22, 44, (36,160,0): 30, 22, 45, (36,161,0): 30, 22, 45, (36,162,0): 30, 22, 45, (36,163,0): 29, 21, 44, (36,164,0): 29, 21, 44, (36,165,0): 29, 21, 44, (36,166,0): 29, 21, 44, (36,167,0): 29, 21, 44, (36,168,0): 29, 21, 44, (36,169,0): 29, 21, 44, (36,170,0): 30, 22, 45, (36,171,0): 30, 22, 45, (36,172,0): 31, 23, 46, (36,173,0): 31, 23, 46, (36,174,0): 32, 24, 47, (36,175,0): 32, 24, 47, (36,176,0): 30, 22, 45, (36,177,0): 31, 23, 46, (36,178,0): 33, 25, 48, (36,179,0): 34, 26, 49, (36,180,0): 34, 26, 49, (36,181,0): 33, 25, 48, (36,182,0): 31, 23, 46, (36,183,0): 30, 22, 45, (36,184,0): 31, 23, 46, (36,185,0): 31, 23, 46, (36,186,0): 31, 23, 46, (36,187,0): 32, 24, 47, (36,188,0): 33, 25, 48, (36,189,0): 33, 25, 48, (36,190,0): 33, 25, 48, (36,191,0): 34, 26, 47, (36,192,0): 33, 24, 45, (36,193,0): 33, 24, 43, (36,194,0): 34, 25, 44, (36,195,0): 35, 26, 45, (36,196,0): 39, 27, 47, (36,197,0): 40, 28, 48, (36,198,0): 41, 29, 49, (36,199,0): 41, 29, 49, (36,200,0): 41, 28, 48, (36,201,0): 41, 28, 48, (36,202,0): 42, 27, 48, (36,203,0): 43, 28, 49, (36,204,0): 43, 28, 49, (36,205,0): 44, 29, 50, (36,206,0): 46, 28, 50, (36,207,0): 46, 28, 50, (36,208,0): 47, 30, 49, (36,209,0): 47, 30, 49, (36,210,0): 47, 30, 49, (36,211,0): 48, 31, 50, (36,212,0): 48, 31, 50, (36,213,0): 49, 32, 51, (36,214,0): 49, 32, 51, (36,215,0): 49, 32, 51, (36,216,0): 50, 33, 52, (36,217,0): 50, 33, 52, (36,218,0): 50, 33, 52, (36,219,0): 50, 33, 52, (36,220,0): 50, 33, 52, (36,221,0): 50, 33, 52, (36,222,0): 50, 33, 52, (36,223,0): 48, 33, 52, (36,224,0): 46, 31, 50, (36,225,0): 46, 33, 51, (36,226,0): 47, 34, 52, (36,227,0): 48, 35, 53, (36,228,0): 48, 35, 53, (36,229,0): 47, 34, 52, (36,230,0): 46, 33, 51, (36,231,0): 45, 32, 50, (36,232,0): 45, 32, 50, (36,233,0): 45, 32, 50, (36,234,0): 45, 32, 50, (36,235,0): 45, 32, 50, (36,236,0): 45, 32, 50, (36,237,0): 45, 32, 50, (36,238,0): 45, 32, 50, (36,239,0): 45, 32, 49, (36,240,0): 47, 33, 46, (36,241,0): 49, 33, 44, (36,242,0): 49, 33, 44, (36,243,0): 49, 33, 44, (36,244,0): 51, 33, 45, (36,245,0): 51, 33, 45, (36,246,0): 52, 34, 46, (36,247,0): 53, 35, 47, (36,248,0): 55, 35, 47, (36,249,0): 55, 35, 47, (36,250,0): 56, 34, 47, (36,251,0): 56, 34, 47, (36,252,0): 56, 34, 47, (36,253,0): 56, 34, 47, (36,254,0): 57, 33, 47, (36,255,0): 56, 34, 47, (36,256,0): 52, 31, 48, (36,257,0): 51, 33, 49, (36,258,0): 54, 33, 48, (36,259,0): 55, 34, 49, (36,260,0): 57, 36, 51, (36,261,0): 58, 37, 52, (36,262,0): 60, 38, 51, (36,263,0): 61, 39, 52, (36,264,0): 62, 38, 52, (36,265,0): 63, 39, 52, (36,266,0): 64, 40, 53, (36,267,0): 65, 41, 54, (36,268,0): 68, 42, 53, (36,269,0): 69, 43, 54, (36,270,0): 69, 43, 54, (36,271,0): 70, 44, 53, (36,272,0): 72, 45, 54, (36,273,0): 72, 45, 52, (36,274,0): 75, 46, 51, (36,275,0): 76, 47, 52, (36,276,0): 77, 48, 53, (36,277,0): 78, 49, 54, (36,278,0): 80, 49, 54, (36,279,0): 80, 49, 54, (36,280,0): 83, 51, 54, (36,281,0): 84, 52, 55, (36,282,0): 85, 53, 56, (36,283,0): 86, 54, 57, (36,284,0): 90, 56, 57, (36,285,0): 92, 58, 59, (36,286,0): 93, 59, 60, (36,287,0): 94, 58, 60, (36,288,0): 96, 57, 58, (36,289,0): 98, 58, 58, (36,290,0): 100, 60, 60, (36,291,0): 102, 62, 62, (36,292,0): 103, 63, 61, (36,293,0): 103, 63, 61, (36,294,0): 103, 63, 61, (36,295,0): 102, 62, 60, (36,296,0): 106, 67, 62, (36,297,0): 106, 67, 62, (36,298,0): 107, 68, 61, (36,299,0): 107, 68, 61, (36,300,0): 108, 69, 62, (36,301,0): 109, 70, 63, (36,302,0): 110, 72, 63, (36,303,0): 111, 73, 64, (36,304,0): 114, 76, 67, (36,305,0): 116, 76, 64, (36,306,0): 125, 79, 63, (36,307,0): 134, 86, 63, (36,308,0): 145, 94, 65, (36,309,0): 153, 99, 65, (36,310,0): 154, 100, 62, (36,311,0): 152, 100, 61, (36,312,0): 152, 103, 63, (36,313,0): 150, 102, 62, (36,314,0): 148, 103, 64, (36,315,0): 148, 103, 64, (36,316,0): 150, 102, 64, (36,317,0): 150, 102, 64, (36,318,0): 153, 101, 62, (36,319,0): 155, 101, 63, (36,320,0): 157, 101, 64, (36,321,0): 156, 100, 63, (36,322,0): 153, 99, 61, (36,323,0): 151, 99, 60, (36,324,0): 148, 99, 59, (36,325,0): 145, 100, 59, (36,326,0): 145, 101, 62, (36,327,0): 144, 102, 62, (36,328,0): 142, 103, 64, (36,329,0): 142, 103, 64, (36,330,0): 141, 103, 66, (36,331,0): 140, 102, 65, (36,332,0): 141, 101, 65, (36,333,0): 140, 100, 64, (36,334,0): 142, 99, 64, (36,335,0): 140, 100, 64, (36,336,0): 139, 101, 65, (36,337,0): 137, 101, 65, (36,338,0): 137, 101, 67, (36,339,0): 136, 100, 66, (36,340,0): 136, 100, 66, (36,341,0): 136, 100, 66, (36,342,0): 136, 100, 68, (36,343,0): 136, 100, 68, (36,344,0): 137, 100, 71, (36,345,0): 137, 100, 71, (36,346,0): 138, 101, 72, (36,347,0): 138, 101, 72, (36,348,0): 138, 101, 74, (36,349,0): 138, 101, 74, (36,350,0): 138, 101, 74, (36,351,0): 138, 101, 74, (36,352,0): 136, 99, 70, (36,353,0): 136, 99, 70, (36,354,0): 136, 99, 70, (36,355,0): 135, 98, 69, (36,356,0): 135, 98, 69, (36,357,0): 135, 98, 69, (36,358,0): 135, 98, 71, (36,359,0): 136, 99, 72, (36,360,0): 136, 99, 73, (36,361,0): 136, 99, 73, (36,362,0): 135, 97, 74, (36,363,0): 135, 97, 74, (36,364,0): 135, 97, 74, (36,365,0): 136, 98, 75, (36,366,0): 137, 99, 76, (36,367,0): 138, 101, 75, (36,368,0): 140, 98, 74, (36,369,0): 141, 99, 74, (36,370,0): 142, 100, 76, (36,371,0): 143, 101, 77, (36,372,0): 143, 101, 77, (36,373,0): 143, 101, 77, (36,374,0): 142, 100, 78, (36,375,0): 141, 99, 77, (36,376,0): 142, 99, 80, (36,377,0): 142, 99, 80, (36,378,0): 142, 99, 80, (36,379,0): 142, 99, 80, (36,380,0): 142, 99, 82, (36,381,0): 142, 99, 82, (36,382,0): 142, 99, 82, (36,383,0): 142, 99, 82, (36,384,0): 143, 101, 85, (36,385,0): 143, 101, 85, (36,386,0): 144, 101, 85, (36,387,0): 145, 102, 86, (36,388,0): 147, 101, 85, (36,389,0): 148, 102, 86, (36,390,0): 149, 102, 86, (36,391,0): 149, 102, 86, (36,392,0): 152, 101, 84, (36,393,0): 153, 102, 85, (36,394,0): 154, 101, 83, (36,395,0): 155, 102, 84, (36,396,0): 158, 102, 85, (36,397,0): 158, 102, 85, (36,398,0): 160, 103, 84, (36,399,0): 159, 104, 84, (36,400,0): 157, 104, 86, (36,401,0): 158, 105, 87, (36,402,0): 160, 104, 87, (36,403,0): 161, 106, 86, (36,404,0): 161, 106, 86, (36,405,0): 162, 107, 86, (36,406,0): 163, 106, 86, (36,407,0): 163, 107, 84, (36,408,0): 169, 111, 87, (36,409,0): 167, 110, 83, (36,410,0): 164, 107, 80, (36,411,0): 163, 106, 77, (36,412,0): 167, 107, 79, (36,413,0): 170, 111, 81, (36,414,0): 174, 115, 85, (36,415,0): 175, 119, 86, (36,416,0): 179, 123, 86, (36,417,0): 178, 122, 85, (36,418,0): 175, 119, 82, (36,419,0): 172, 116, 81, (36,420,0): 168, 112, 79, (36,421,0): 163, 108, 77, (36,422,0): 159, 106, 75, (36,423,0): 156, 105, 78, (36,424,0): 146, 96, 71, (36,425,0): 137, 91, 68, (36,426,0): 126, 84, 62, (36,427,0): 116, 78, 59, (36,428,0): 111, 76, 57, (36,429,0): 106, 75, 57, (36,430,0): 101, 72, 54, (36,431,0): 99, 70, 54, (36,432,0): 100, 72, 60, (36,433,0): 98, 70, 59, (36,434,0): 94, 66, 55, (36,435,0): 92, 64, 53, (36,436,0): 90, 62, 51, (36,437,0): 90, 62, 51, (36,438,0): 91, 63, 52, (36,439,0): 92, 64, 53, (36,440,0): 99, 71, 60, (36,441,0): 100, 72, 61, (36,442,0): 101, 73, 62, (36,443,0): 102, 74, 63, (36,444,0): 101, 73, 62, (36,445,0): 100, 72, 61, (36,446,0): 98, 70, 59, (36,447,0): 97, 69, 58, (36,448,0): 97, 64, 57, (36,449,0): 96, 63, 56, (36,450,0): 94, 64, 56, (36,451,0): 93, 63, 55, (36,452,0): 92, 61, 56, (36,453,0): 90, 59, 54, (36,454,0): 88, 59, 55, (36,455,0): 87, 58, 54, (36,456,0): 88, 60, 56, (36,457,0): 89, 61, 57, (36,458,0): 91, 63, 60, (36,459,0): 92, 64, 61, (36,460,0): 90, 64, 63, (36,461,0): 90, 64, 63, (36,462,0): 89, 63, 62, (36,463,0): 89, 63, 62, (36,464,0): 92, 62, 60, (36,465,0): 92, 62, 60, (36,466,0): 93, 63, 61, (36,467,0): 93, 63, 61, (36,468,0): 93, 65, 62, (36,469,0): 93, 65, 62, (36,470,0): 92, 67, 63, (36,471,0): 92, 67, 63, (36,472,0): 90, 65, 61, (36,473,0): 90, 65, 61, (36,474,0): 88, 64, 60, (36,475,0): 87, 63, 59, (36,476,0): 83, 62, 57, (36,477,0): 81, 60, 55, (36,478,0): 80, 59, 54, (36,479,0): 79, 58, 53, (36,480,0): 82, 61, 56, (36,481,0): 83, 62, 57, (36,482,0): 85, 65, 58, (36,483,0): 88, 68, 59, (36,484,0): 92, 69, 61, (36,485,0): 95, 73, 62, (36,486,0): 98, 74, 62, (36,487,0): 99, 75, 63, (36,488,0): 97, 73, 61, (36,489,0): 97, 73, 61, (36,490,0): 99, 72, 63, (36,491,0): 99, 72, 63, (36,492,0): 98, 69, 65, (36,493,0): 96, 67, 63, (36,494,0): 94, 64, 62, (36,495,0): 92, 64, 61, (36,496,0): 94, 66, 63, (36,497,0): 92, 67, 63, (36,498,0): 92, 67, 63, (36,499,0): 92, 67, 63, (36,500,0): 92, 67, 63, (36,501,0): 92, 67, 63, (36,502,0): 92, 67, 63, (36,503,0): 92, 67, 63, (36,504,0): 93, 68, 64, (36,505,0): 93, 68, 64, (36,506,0): 93, 68, 64, (36,507,0): 92, 67, 63, (36,508,0): 92, 67, 63, (36,509,0): 91, 66, 62, (36,510,0): 91, 66, 62, (36,511,0): 91, 66, 62, (36,512,0): 92, 67, 63, (36,513,0): 92, 67, 63, (36,514,0): 92, 67, 63, (36,515,0): 92, 67, 63, (36,516,0): 92, 67, 63, (36,517,0): 92, 67, 63, (36,518,0): 92, 67, 63, (36,519,0): 92, 67, 63, (36,520,0): 92, 67, 63, (36,521,0): 91, 66, 62, (36,522,0): 91, 66, 62, (36,523,0): 90, 65, 61, (36,524,0): 90, 65, 61, (36,525,0): 89, 64, 60, (36,526,0): 89, 64, 60, (36,527,0): 88, 64, 60, (36,528,0): 88, 64, 62, (36,529,0): 87, 66, 63, (36,530,0): 87, 66, 63, (36,531,0): 88, 67, 64, (36,532,0): 87, 66, 65, (36,533,0): 86, 65, 64, (36,534,0): 85, 64, 63, (36,535,0): 84, 63, 62, (36,536,0): 80, 58, 60, (36,537,0): 77, 55, 57, (36,538,0): 74, 52, 55, (36,539,0): 71, 49, 52, (36,540,0): 69, 47, 50, (36,541,0): 69, 47, 50, (36,542,0): 70, 47, 53, (36,543,0): 70, 49, 54, (36,544,0): 69, 48, 57, (36,545,0): 68, 48, 57, (36,546,0): 68, 47, 56, (36,547,0): 68, 47, 56, (36,548,0): 68, 47, 54, (36,549,0): 68, 47, 54, (36,550,0): 69, 46, 52, (36,551,0): 69, 46, 52, (36,552,0): 73, 48, 54, (36,553,0): 73, 48, 52, (36,554,0): 74, 49, 53, (36,555,0): 76, 51, 54, (36,556,0): 79, 53, 56, (36,557,0): 80, 54, 57, (36,558,0): 81, 55, 58, (36,559,0): 81, 56, 59, (36,560,0): 77, 52, 56, (36,561,0): 75, 53, 56, (36,562,0): 75, 53, 56, (36,563,0): 74, 52, 55, (36,564,0): 73, 51, 54, (36,565,0): 73, 51, 54, (36,566,0): 73, 51, 54, (36,567,0): 72, 50, 53, (36,568,0): 74, 52, 55, (36,569,0): 73, 51, 54, (36,570,0): 72, 50, 53, (36,571,0): 71, 49, 52, (36,572,0): 70, 48, 51, (36,573,0): 69, 47, 50, (36,574,0): 68, 46, 49, (36,575,0): 68, 46, 49, (36,576,0): 67, 44, 52, (36,577,0): 67, 44, 52, (36,578,0): 67, 44, 52, (36,579,0): 67, 44, 52, (36,580,0): 67, 44, 50, (36,581,0): 67, 44, 50, (36,582,0): 69, 44, 50, (36,583,0): 69, 44, 50, (36,584,0): 66, 39, 44, (36,585,0): 66, 39, 44, (36,586,0): 69, 40, 44, (36,587,0): 70, 41, 45, (36,588,0): 71, 42, 46, (36,589,0): 72, 43, 47, (36,590,0): 73, 44, 46, (36,591,0): 74, 45, 47, (36,592,0): 71, 45, 48, (36,593,0): 70, 45, 48, (36,594,0): 71, 46, 49, (36,595,0): 72, 48, 48, (36,596,0): 72, 48, 46, (36,597,0): 73, 49, 45, (36,598,0): 74, 50, 46, (36,599,0): 74, 50, 46, (37,0,0): 40, 27, 45, (37,1,0): 40, 27, 45, (37,2,0): 40, 27, 44, (37,3,0): 41, 28, 45, (37,4,0): 42, 29, 46, (37,5,0): 42, 29, 46, (37,6,0): 43, 29, 44, (37,7,0): 44, 30, 45, (37,8,0): 46, 30, 43, (37,9,0): 46, 30, 43, (37,10,0): 47, 29, 43, (37,11,0): 48, 30, 44, (37,12,0): 49, 31, 43, (37,13,0): 49, 31, 43, (37,14,0): 49, 31, 43, (37,15,0): 50, 32, 44, (37,16,0): 48, 30, 42, (37,17,0): 48, 30, 42, (37,18,0): 48, 30, 42, (37,19,0): 48, 30, 42, (37,20,0): 48, 30, 42, (37,21,0): 48, 30, 42, (37,22,0): 48, 30, 42, (37,23,0): 48, 30, 42, (37,24,0): 47, 29, 41, (37,25,0): 47, 29, 41, (37,26,0): 47, 29, 41, (37,27,0): 47, 29, 41, (37,28,0): 47, 29, 41, (37,29,0): 47, 29, 41, (37,30,0): 47, 29, 41, (37,31,0): 47, 29, 41, (37,32,0): 48, 31, 47, (37,33,0): 48, 31, 47, (37,34,0): 46, 29, 45, (37,35,0): 46, 29, 45, (37,36,0): 46, 29, 45, (37,37,0): 46, 29, 45, (37,38,0): 48, 31, 47, (37,39,0): 48, 31, 47, (37,40,0): 47, 30, 46, (37,41,0): 47, 30, 46, (37,42,0): 47, 30, 46, (37,43,0): 47, 30, 46, (37,44,0): 47, 30, 46, (37,45,0): 47, 30, 46, (37,46,0): 47, 30, 46, (37,47,0): 47, 30, 46, (37,48,0): 47, 29, 45, (37,49,0): 47, 29, 45, (37,50,0): 47, 29, 45, (37,51,0): 47, 29, 45, (37,52,0): 47, 29, 45, (37,53,0): 47, 29, 45, (37,54,0): 47, 29, 45, (37,55,0): 47, 29, 45, (37,56,0): 47, 29, 45, (37,57,0): 46, 28, 44, (37,58,0): 46, 28, 44, (37,59,0): 46, 28, 44, (37,60,0): 45, 27, 43, (37,61,0): 44, 26, 42, (37,62,0): 44, 26, 42, (37,63,0): 44, 26, 42, (37,64,0): 42, 25, 41, (37,65,0): 42, 25, 41, (37,66,0): 39, 25, 40, (37,67,0): 38, 24, 39, (37,68,0): 37, 23, 38, (37,69,0): 36, 22, 37, (37,70,0): 35, 22, 39, (37,71,0): 34, 21, 38, (37,72,0): 33, 22, 39, (37,73,0): 32, 21, 38, (37,74,0): 32, 20, 40, (37,75,0): 31, 19, 39, (37,76,0): 29, 20, 39, (37,77,0): 28, 19, 38, (37,78,0): 28, 19, 38, (37,79,0): 28, 19, 38, (37,80,0): 30, 19, 36, (37,81,0): 29, 18, 35, (37,82,0): 29, 18, 35, (37,83,0): 28, 17, 34, (37,84,0): 28, 17, 34, (37,85,0): 27, 16, 33, (37,86,0): 27, 16, 33, (37,87,0): 27, 16, 33, (37,88,0): 28, 17, 34, (37,89,0): 28, 17, 34, (37,90,0): 29, 18, 35, (37,91,0): 29, 18, 35, (37,92,0): 30, 19, 36, (37,93,0): 30, 19, 36, (37,94,0): 31, 20, 37, (37,95,0): 31, 19, 39, (37,96,0): 27, 18, 39, (37,97,0): 27, 17, 41, (37,98,0): 27, 17, 41, (37,99,0): 27, 17, 41, (37,100,0): 27, 17, 41, (37,101,0): 27, 17, 41, (37,102,0): 27, 17, 41, (37,103,0): 27, 17, 41, (37,104,0): 28, 18, 42, (37,105,0): 29, 19, 43, (37,106,0): 29, 19, 43, (37,107,0): 30, 20, 44, (37,108,0): 31, 21, 45, (37,109,0): 32, 22, 46, (37,110,0): 33, 23, 47, (37,111,0): 33, 23, 47, (37,112,0): 33, 23, 47, (37,113,0): 33, 23, 47, (37,114,0): 33, 23, 47, (37,115,0): 33, 23, 47, (37,116,0): 33, 23, 47, (37,117,0): 33, 23, 47, (37,118,0): 33, 23, 47, (37,119,0): 33, 23, 47, (37,120,0): 32, 22, 46, (37,121,0): 32, 22, 46, (37,122,0): 33, 23, 47, (37,123,0): 33, 23, 47, (37,124,0): 34, 24, 48, (37,125,0): 35, 25, 49, (37,126,0): 36, 26, 50, (37,127,0): 36, 26, 50, (37,128,0): 32, 24, 47, (37,129,0): 32, 24, 47, (37,130,0): 31, 23, 46, (37,131,0): 31, 23, 46, (37,132,0): 30, 22, 45, (37,133,0): 30, 22, 45, (37,134,0): 29, 21, 44, (37,135,0): 29, 21, 44, (37,136,0): 29, 21, 44, (37,137,0): 29, 21, 44, (37,138,0): 29, 21, 44, (37,139,0): 29, 21, 44, (37,140,0): 29, 21, 44, (37,141,0): 29, 21, 44, (37,142,0): 29, 21, 44, (37,143,0): 29, 21, 44, (37,144,0): 27, 22, 44, (37,145,0): 27, 22, 44, (37,146,0): 27, 22, 44, (37,147,0): 27, 22, 44, (37,148,0): 27, 22, 44, (37,149,0): 27, 22, 44, (37,150,0): 27, 22, 44, (37,151,0): 27, 22, 44, (37,152,0): 27, 22, 44, (37,153,0): 27, 22, 44, (37,154,0): 27, 22, 44, (37,155,0): 27, 22, 44, (37,156,0): 27, 22, 44, (37,157,0): 27, 22, 44, (37,158,0): 27, 22, 44, (37,159,0): 27, 22, 44, (37,160,0): 29, 21, 44, (37,161,0): 29, 21, 44, (37,162,0): 29, 21, 44, (37,163,0): 30, 22, 45, (37,164,0): 30, 22, 45, (37,165,0): 30, 22, 45, (37,166,0): 30, 22, 45, (37,167,0): 30, 22, 45, (37,168,0): 29, 21, 44, (37,169,0): 29, 21, 44, (37,170,0): 30, 22, 45, (37,171,0): 30, 22, 45, (37,172,0): 31, 23, 46, (37,173,0): 31, 23, 46, (37,174,0): 32, 24, 47, (37,175,0): 32, 24, 47, (37,176,0): 31, 23, 46, (37,177,0): 32, 24, 47, (37,178,0): 32, 24, 47, (37,179,0): 33, 25, 48, (37,180,0): 33, 25, 48, (37,181,0): 32, 24, 47, (37,182,0): 32, 24, 47, (37,183,0): 31, 23, 46, (37,184,0): 31, 23, 46, (37,185,0): 32, 24, 47, (37,186,0): 32, 24, 47, (37,187,0): 33, 25, 48, (37,188,0): 33, 25, 48, (37,189,0): 34, 26, 49, (37,190,0): 34, 26, 49, (37,191,0): 34, 26, 47, (37,192,0): 34, 25, 46, (37,193,0): 34, 25, 44, (37,194,0): 35, 26, 45, (37,195,0): 36, 27, 46, (37,196,0): 38, 26, 46, (37,197,0): 39, 27, 47, (37,198,0): 40, 28, 48, (37,199,0): 40, 28, 48, (37,200,0): 41, 28, 48, (37,201,0): 41, 28, 48, (37,202,0): 42, 27, 48, (37,203,0): 43, 28, 49, (37,204,0): 43, 28, 49, (37,205,0): 44, 29, 50, (37,206,0): 46, 28, 50, (37,207,0): 46, 28, 50, (37,208,0): 47, 30, 49, (37,209,0): 47, 30, 49, (37,210,0): 47, 30, 49, (37,211,0): 48, 31, 50, (37,212,0): 48, 31, 50, (37,213,0): 49, 32, 51, (37,214,0): 49, 32, 51, (37,215,0): 49, 32, 51, (37,216,0): 50, 33, 52, (37,217,0): 50, 33, 52, (37,218,0): 50, 33, 52, (37,219,0): 50, 33, 52, (37,220,0): 50, 33, 52, (37,221,0): 50, 33, 52, (37,222,0): 50, 33, 52, (37,223,0): 50, 33, 52, (37,224,0): 47, 32, 51, (37,225,0): 47, 34, 52, (37,226,0): 48, 35, 53, (37,227,0): 49, 36, 54, (37,228,0): 49, 36, 54, (37,229,0): 48, 35, 53, (37,230,0): 47, 34, 52, (37,231,0): 46, 33, 51, (37,232,0): 45, 32, 50, (37,233,0): 45, 32, 50, (37,234,0): 45, 32, 50, (37,235,0): 45, 32, 50, (37,236,0): 45, 32, 50, (37,237,0): 45, 32, 50, (37,238,0): 45, 32, 50, (37,239,0): 46, 32, 49, (37,240,0): 50, 34, 47, (37,241,0): 50, 34, 45, (37,242,0): 49, 33, 44, (37,243,0): 49, 33, 44, (37,244,0): 50, 32, 44, (37,245,0): 52, 34, 46, (37,246,0): 53, 35, 47, (37,247,0): 54, 36, 48, (37,248,0): 56, 36, 48, (37,249,0): 56, 36, 48, (37,250,0): 57, 35, 48, (37,251,0): 57, 35, 48, (37,252,0): 57, 35, 48, (37,253,0): 57, 35, 48, (37,254,0): 58, 34, 48, (37,255,0): 57, 35, 48, (37,256,0): 53, 32, 47, (37,257,0): 52, 34, 50, (37,258,0): 55, 34, 49, (37,259,0): 56, 35, 50, (37,260,0): 57, 36, 51, (37,261,0): 58, 38, 50, (37,262,0): 60, 38, 51, (37,263,0): 60, 38, 51, (37,264,0): 62, 38, 51, (37,265,0): 63, 39, 52, (37,266,0): 65, 41, 54, (37,267,0): 66, 43, 53, (37,268,0): 69, 43, 54, (37,269,0): 70, 44, 55, (37,270,0): 70, 44, 55, (37,271,0): 69, 43, 52, (37,272,0): 72, 45, 52, (37,273,0): 72, 45, 52, (37,274,0): 75, 46, 51, (37,275,0): 76, 47, 52, (37,276,0): 77, 48, 53, (37,277,0): 78, 49, 54, (37,278,0): 80, 49, 54, (37,279,0): 81, 50, 55, (37,280,0): 84, 52, 55, (37,281,0): 84, 52, 55, (37,282,0): 85, 53, 56, (37,283,0): 87, 55, 58, (37,284,0): 91, 57, 58, (37,285,0): 92, 58, 59, (37,286,0): 93, 59, 60, (37,287,0): 95, 59, 59, (37,288,0): 97, 57, 58, (37,289,0): 98, 58, 58, (37,290,0): 100, 60, 60, (37,291,0): 102, 62, 62, (37,292,0): 103, 63, 61, (37,293,0): 103, 63, 61, (37,294,0): 103, 63, 61, (37,295,0): 103, 64, 59, (37,296,0): 108, 69, 64, (37,297,0): 108, 69, 64, (37,298,0): 107, 68, 61, (37,299,0): 107, 68, 61, (37,300,0): 108, 69, 62, (37,301,0): 109, 70, 63, (37,302,0): 111, 73, 64, (37,303,0): 112, 72, 64, (37,304,0): 116, 76, 66, (37,305,0): 121, 77, 64, (37,306,0): 128, 81, 63, (37,307,0): 138, 88, 63, (37,308,0): 149, 96, 64, (37,309,0): 155, 101, 65, (37,310,0): 156, 101, 62, (37,311,0): 154, 101, 61, (37,312,0): 156, 104, 64, (37,313,0): 153, 104, 64, (37,314,0): 151, 103, 63, (37,315,0): 149, 104, 65, (37,316,0): 151, 103, 65, (37,317,0): 152, 103, 63, (37,318,0): 155, 103, 64, (37,319,0): 156, 104, 65, (37,320,0): 158, 102, 65, (37,321,0): 157, 101, 64, (37,322,0): 154, 100, 62, (37,323,0): 152, 100, 61, (37,324,0): 149, 100, 60, (37,325,0): 146, 101, 60, (37,326,0): 145, 101, 62, (37,327,0): 142, 103, 62, (37,328,0): 143, 104, 65, (37,329,0): 143, 104, 65, (37,330,0): 142, 104, 67, (37,331,0): 141, 103, 66, (37,332,0): 142, 102, 66, (37,333,0): 141, 101, 65, (37,334,0): 143, 100, 65, (37,335,0): 141, 101, 65, (37,336,0): 140, 102, 66, (37,337,0): 138, 102, 66, (37,338,0): 137, 101, 67, (37,339,0): 137, 101, 67, (37,340,0): 137, 101, 67, (37,341,0): 136, 100, 66, (37,342,0): 136, 100, 68, (37,343,0): 136, 100, 68, (37,344,0): 137, 100, 71, (37,345,0): 137, 100, 71, (37,346,0): 137, 100, 71, (37,347,0): 138, 101, 72, (37,348,0): 138, 101, 74, (37,349,0): 139, 102, 75, (37,350,0): 139, 102, 75, (37,351,0): 139, 102, 75, (37,352,0): 140, 103, 74, (37,353,0): 139, 102, 73, (37,354,0): 138, 101, 72, (37,355,0): 137, 100, 71, (37,356,0): 136, 99, 70, (37,357,0): 137, 100, 71, (37,358,0): 137, 100, 73, (37,359,0): 138, 101, 74, (37,360,0): 137, 100, 74, (37,361,0): 136, 99, 73, (37,362,0): 135, 97, 74, (37,363,0): 134, 96, 73, (37,364,0): 135, 97, 74, (37,365,0): 135, 97, 74, (37,366,0): 137, 99, 76, (37,367,0): 137, 100, 74, (37,368,0): 139, 97, 73, (37,369,0): 140, 98, 73, (37,370,0): 142, 100, 76, (37,371,0): 143, 101, 77, (37,372,0): 144, 102, 78, (37,373,0): 143, 101, 77, (37,374,0): 142, 100, 78, (37,375,0): 142, 100, 78, (37,376,0): 143, 100, 81, (37,377,0): 143, 100, 81, (37,378,0): 143, 100, 81, (37,379,0): 143, 100, 81, (37,380,0): 143, 100, 83, (37,381,0): 143, 100, 83, (37,382,0): 143, 100, 83, (37,383,0): 143, 100, 83, (37,384,0): 143, 101, 85, (37,385,0): 143, 101, 85, (37,386,0): 144, 101, 85, (37,387,0): 145, 102, 86, (37,388,0): 147, 101, 85, (37,389,0): 148, 102, 86, (37,390,0): 149, 102, 86, (37,391,0): 149, 102, 84, (37,392,0): 152, 101, 84, (37,393,0): 153, 102, 83, (37,394,0): 154, 101, 83, (37,395,0): 155, 102, 84, (37,396,0): 158, 102, 85, (37,397,0): 159, 103, 86, (37,398,0): 161, 104, 85, (37,399,0): 161, 104, 85, (37,400,0): 161, 106, 86, (37,401,0): 161, 106, 86, (37,402,0): 162, 107, 87, (37,403,0): 162, 107, 86, (37,404,0): 163, 108, 87, (37,405,0): 164, 108, 85, (37,406,0): 165, 109, 86, (37,407,0): 165, 109, 84, (37,408,0): 170, 113, 86, (37,409,0): 168, 111, 82, (37,410,0): 167, 110, 81, (37,411,0): 168, 109, 79, (37,412,0): 170, 111, 81, (37,413,0): 173, 114, 82, (37,414,0): 177, 118, 86, (37,415,0): 180, 121, 87, (37,416,0): 182, 124, 86, (37,417,0): 180, 125, 86, (37,418,0): 179, 124, 85, (37,419,0): 177, 121, 84, (37,420,0): 175, 119, 84, (37,421,0): 171, 115, 80, (37,422,0): 168, 113, 82, (37,423,0): 165, 112, 81, (37,424,0): 154, 105, 75, (37,425,0): 144, 98, 72, (37,426,0): 130, 88, 63, (37,427,0): 119, 81, 58, (37,428,0): 112, 77, 55, (37,429,0): 108, 75, 56, (37,430,0): 104, 73, 53, (37,431,0): 100, 71, 55, (37,432,0): 101, 73, 61, (37,433,0): 99, 71, 60, (37,434,0): 95, 67, 56, (37,435,0): 92, 64, 53, (37,436,0): 90, 62, 51, (37,437,0): 89, 61, 50, (37,438,0): 90, 62, 51, (37,439,0): 91, 63, 52, (37,440,0): 95, 67, 56, (37,441,0): 97, 69, 58, (37,442,0): 99, 71, 60, (37,443,0): 101, 73, 62, (37,444,0): 102, 74, 63, (37,445,0): 101, 73, 62, (37,446,0): 100, 72, 61, (37,447,0): 98, 70, 59, (37,448,0): 97, 64, 57, (37,449,0): 97, 64, 57, (37,450,0): 95, 65, 57, (37,451,0): 94, 64, 56, (37,452,0): 93, 62, 57, (37,453,0): 90, 59, 54, (37,454,0): 87, 58, 54, (37,455,0): 86, 57, 53, (37,456,0): 87, 59, 55, (37,457,0): 88, 60, 56, (37,458,0): 90, 62, 59, (37,459,0): 91, 63, 60, (37,460,0): 90, 64, 63, (37,461,0): 89, 63, 62, (37,462,0): 89, 63, 62, (37,463,0): 88, 62, 61, (37,464,0): 92, 62, 60, (37,465,0): 92, 62, 60, (37,466,0): 93, 63, 61, (37,467,0): 93, 63, 61, (37,468,0): 93, 65, 62, (37,469,0): 93, 65, 62, (37,470,0): 91, 66, 62, (37,471,0): 92, 67, 63, (37,472,0): 90, 65, 61, (37,473,0): 90, 65, 61, (37,474,0): 89, 65, 61, (37,475,0): 89, 65, 61, (37,476,0): 85, 64, 59, (37,477,0): 83, 62, 57, (37,478,0): 81, 60, 55, (37,479,0): 80, 59, 54, (37,480,0): 82, 61, 56, (37,481,0): 83, 62, 57, (37,482,0): 85, 65, 58, (37,483,0): 88, 68, 59, (37,484,0): 93, 70, 62, (37,485,0): 95, 73, 62, (37,486,0): 99, 75, 63, (37,487,0): 100, 76, 64, (37,488,0): 97, 73, 61, (37,489,0): 97, 73, 61, (37,490,0): 99, 72, 63, (37,491,0): 98, 71, 62, (37,492,0): 98, 69, 65, (37,493,0): 96, 67, 63, (37,494,0): 93, 63, 61, (37,495,0): 91, 63, 60, (37,496,0): 94, 66, 63, (37,497,0): 92, 67, 63, (37,498,0): 92, 67, 63, (37,499,0): 92, 67, 63, (37,500,0): 92, 67, 63, (37,501,0): 92, 67, 63, (37,502,0): 92, 67, 63, (37,503,0): 92, 67, 63, (37,504,0): 93, 68, 64, (37,505,0): 93, 68, 64, (37,506,0): 93, 68, 64, (37,507,0): 92, 67, 63, (37,508,0): 92, 67, 63, (37,509,0): 91, 66, 62, (37,510,0): 91, 66, 62, (37,511,0): 91, 66, 62, (37,512,0): 91, 66, 62, (37,513,0): 91, 66, 62, (37,514,0): 91, 66, 62, (37,515,0): 91, 66, 62, (37,516,0): 91, 66, 62, (37,517,0): 91, 66, 62, (37,518,0): 91, 66, 62, (37,519,0): 91, 66, 62, (37,520,0): 91, 66, 62, (37,521,0): 91, 66, 62, (37,522,0): 91, 66, 62, (37,523,0): 90, 65, 61, (37,524,0): 89, 64, 60, (37,525,0): 89, 64, 60, (37,526,0): 89, 64, 60, (37,527,0): 87, 63, 59, (37,528,0): 88, 64, 62, (37,529,0): 86, 65, 62, (37,530,0): 87, 66, 63, (37,531,0): 88, 67, 64, (37,532,0): 88, 67, 66, (37,533,0): 87, 66, 65, (37,534,0): 86, 65, 64, (37,535,0): 85, 64, 63, (37,536,0): 80, 58, 60, (37,537,0): 78, 56, 58, (37,538,0): 75, 53, 56, (37,539,0): 71, 49, 52, (37,540,0): 70, 48, 51, (37,541,0): 70, 48, 51, (37,542,0): 71, 48, 54, (37,543,0): 71, 50, 55, (37,544,0): 70, 49, 56, (37,545,0): 68, 48, 57, (37,546,0): 68, 47, 56, (37,547,0): 67, 46, 55, (37,548,0): 66, 45, 52, (37,549,0): 67, 46, 53, (37,550,0): 68, 45, 51, (37,551,0): 69, 46, 52, (37,552,0): 71, 46, 52, (37,553,0): 71, 46, 52, (37,554,0): 73, 48, 52, (37,555,0): 74, 49, 53, (37,556,0): 77, 50, 55, (37,557,0): 78, 52, 55, (37,558,0): 79, 52, 57, (37,559,0): 79, 54, 58, (37,560,0): 77, 52, 56, (37,561,0): 74, 52, 55, (37,562,0): 74, 52, 55, (37,563,0): 73, 51, 54, (37,564,0): 73, 51, 54, (37,565,0): 72, 50, 53, (37,566,0): 72, 50, 53, (37,567,0): 72, 50, 53, (37,568,0): 73, 51, 54, (37,569,0): 72, 50, 53, (37,570,0): 72, 50, 53, (37,571,0): 71, 49, 52, (37,572,0): 69, 47, 50, (37,573,0): 68, 46, 49, (37,574,0): 68, 46, 49, (37,575,0): 67, 45, 48, (37,576,0): 67, 44, 52, (37,577,0): 67, 44, 52, (37,578,0): 67, 44, 52, (37,579,0): 67, 44, 52, (37,580,0): 67, 44, 50, (37,581,0): 67, 44, 50, (37,582,0): 69, 44, 50, (37,583,0): 69, 44, 50, (37,584,0): 66, 39, 44, (37,585,0): 66, 39, 44, (37,586,0): 67, 41, 44, (37,587,0): 67, 41, 44, (37,588,0): 70, 41, 45, (37,589,0): 68, 42, 45, (37,590,0): 70, 41, 43, (37,591,0): 68, 42, 43, (37,592,0): 66, 41, 45, (37,593,0): 66, 41, 45, (37,594,0): 68, 43, 46, (37,595,0): 69, 45, 45, (37,596,0): 70, 46, 46, (37,597,0): 72, 48, 46, (37,598,0): 73, 49, 45, (37,599,0): 74, 50, 46, (38,0,0): 40, 27, 45, (38,1,0): 41, 28, 46, (38,2,0): 41, 28, 45, (38,3,0): 41, 28, 45, (38,4,0): 42, 29, 46, (38,5,0): 42, 29, 46, (38,6,0): 44, 30, 45, (38,7,0): 44, 30, 45, (38,8,0): 46, 30, 43, (38,9,0): 47, 31, 44, (38,10,0): 48, 30, 44, (38,11,0): 48, 30, 44, (38,12,0): 49, 31, 43, (38,13,0): 49, 31, 43, (38,14,0): 50, 32, 44, (38,15,0): 50, 32, 44, (38,16,0): 49, 31, 43, (38,17,0): 49, 31, 43, (38,18,0): 49, 31, 43, (38,19,0): 49, 31, 43, (38,20,0): 49, 31, 43, (38,21,0): 49, 31, 43, (38,22,0): 49, 31, 43, (38,23,0): 49, 31, 43, (38,24,0): 48, 30, 42, (38,25,0): 48, 30, 42, (38,26,0): 48, 30, 42, (38,27,0): 48, 30, 42, (38,28,0): 48, 30, 42, (38,29,0): 48, 30, 42, (38,30,0): 48, 30, 42, (38,31,0): 48, 30, 42, (38,32,0): 47, 30, 46, (38,33,0): 47, 30, 46, (38,34,0): 45, 28, 44, (38,35,0): 45, 28, 44, (38,36,0): 45, 28, 44, (38,37,0): 45, 28, 44, (38,38,0): 47, 30, 46, (38,39,0): 47, 30, 46, (38,40,0): 47, 30, 46, (38,41,0): 47, 30, 46, (38,42,0): 47, 30, 46, (38,43,0): 47, 30, 46, (38,44,0): 47, 30, 46, (38,45,0): 47, 30, 46, (38,46,0): 47, 30, 46, (38,47,0): 47, 30, 46, (38,48,0): 47, 29, 45, (38,49,0): 47, 29, 45, (38,50,0): 47, 29, 45, (38,51,0): 47, 29, 45, (38,52,0): 47, 29, 45, (38,53,0): 47, 29, 45, (38,54,0): 47, 29, 45, (38,55,0): 47, 29, 45, (38,56,0): 47, 29, 45, (38,57,0): 47, 29, 45, (38,58,0): 46, 28, 44, (38,59,0): 46, 28, 44, (38,60,0): 45, 27, 43, (38,61,0): 45, 27, 43, (38,62,0): 45, 27, 43, (38,63,0): 44, 26, 42, (38,64,0): 43, 26, 42, (38,65,0): 42, 25, 41, (38,66,0): 39, 25, 40, (38,67,0): 38, 24, 39, (38,68,0): 37, 23, 38, (38,69,0): 35, 21, 36, (38,70,0): 34, 21, 38, (38,71,0): 33, 20, 37, (38,72,0): 32, 21, 38, (38,73,0): 32, 21, 38, (38,74,0): 32, 20, 40, (38,75,0): 31, 19, 39, (38,76,0): 29, 20, 39, (38,77,0): 28, 19, 38, (38,78,0): 28, 19, 38, (38,79,0): 27, 18, 37, (38,80,0): 29, 17, 37, (38,81,0): 29, 17, 37, (38,82,0): 29, 17, 37, (38,83,0): 28, 16, 36, (38,84,0): 28, 16, 36, (38,85,0): 27, 15, 35, (38,86,0): 27, 15, 35, (38,87,0): 26, 14, 34, (38,88,0): 26, 14, 34, (38,89,0): 26, 14, 34, (38,90,0): 27, 15, 35, (38,91,0): 27, 15, 35, (38,92,0): 28, 16, 36, (38,93,0): 28, 16, 36, (38,94,0): 29, 17, 37, (38,95,0): 29, 17, 37, (38,96,0): 26, 17, 38, (38,97,0): 25, 17, 40, (38,98,0): 25, 17, 40, (38,99,0): 25, 17, 40, (38,100,0): 25, 17, 40, (38,101,0): 25, 17, 40, (38,102,0): 25, 17, 40, (38,103,0): 25, 17, 40, (38,104,0): 26, 18, 41, (38,105,0): 27, 19, 42, (38,106,0): 27, 19, 42, (38,107,0): 29, 21, 44, (38,108,0): 30, 22, 45, (38,109,0): 31, 23, 46, (38,110,0): 32, 24, 47, (38,111,0): 33, 25, 48, (38,112,0): 35, 27, 50, (38,113,0): 34, 26, 49, (38,114,0): 34, 26, 49, (38,115,0): 33, 25, 48, (38,116,0): 31, 23, 46, (38,117,0): 30, 22, 45, (38,118,0): 30, 22, 45, (38,119,0): 29, 21, 44, (38,120,0): 33, 25, 48, (38,121,0): 33, 25, 48, (38,122,0): 33, 25, 48, (38,123,0): 33, 25, 48, (38,124,0): 33, 25, 48, (38,125,0): 34, 26, 49, (38,126,0): 34, 26, 49, (38,127,0): 34, 26, 49, (38,128,0): 32, 24, 47, (38,129,0): 32, 24, 47, (38,130,0): 31, 23, 46, (38,131,0): 31, 23, 46, (38,132,0): 30, 22, 45, (38,133,0): 30, 22, 45, (38,134,0): 29, 21, 44, (38,135,0): 29, 21, 44, (38,136,0): 29, 21, 44, (38,137,0): 29, 21, 44, (38,138,0): 29, 21, 44, (38,139,0): 29, 21, 44, (38,140,0): 29, 21, 44, (38,141,0): 29, 21, 44, (38,142,0): 29, 21, 44, (38,143,0): 29, 21, 44, (38,144,0): 27, 22, 44, (38,145,0): 26, 23, 44, (38,146,0): 26, 23, 44, (38,147,0): 26, 23, 44, (38,148,0): 26, 23, 44, (38,149,0): 26, 23, 44, (38,150,0): 26, 23, 44, (38,151,0): 26, 23, 44, (38,152,0): 26, 23, 44, (38,153,0): 26, 23, 44, (38,154,0): 26, 23, 44, (38,155,0): 26, 23, 44, (38,156,0): 26, 23, 44, (38,157,0): 26, 23, 44, (38,158,0): 26, 23, 44, (38,159,0): 27, 22, 44, (38,160,0): 28, 20, 43, (38,161,0): 28, 20, 43, (38,162,0): 29, 21, 44, (38,163,0): 30, 22, 45, (38,164,0): 31, 23, 46, (38,165,0): 31, 23, 46, (38,166,0): 32, 24, 47, (38,167,0): 32, 24, 47, (38,168,0): 29, 21, 44, (38,169,0): 29, 21, 44, (38,170,0): 30, 22, 45, (38,171,0): 30, 22, 45, (38,172,0): 31, 23, 46, (38,173,0): 31, 23, 46, (38,174,0): 32, 24, 47, (38,175,0): 32, 24, 47, (38,176,0): 33, 25, 48, (38,177,0): 32, 24, 47, (38,178,0): 32, 24, 47, (38,179,0): 31, 23, 46, (38,180,0): 31, 23, 46, (38,181,0): 32, 24, 47, (38,182,0): 32, 24, 47, (38,183,0): 33, 25, 48, (38,184,0): 32, 24, 47, (38,185,0): 32, 24, 47, (38,186,0): 32, 24, 47, (38,187,0): 33, 25, 48, (38,188,0): 33, 25, 48, (38,189,0): 34, 26, 49, (38,190,0): 34, 26, 49, (38,191,0): 35, 27, 48, (38,192,0): 35, 26, 47, (38,193,0): 36, 27, 46, (38,194,0): 36, 27, 46, (38,195,0): 36, 27, 46, (38,196,0): 38, 26, 46, (38,197,0): 38, 26, 46, (38,198,0): 38, 26, 46, (38,199,0): 39, 27, 47, (38,200,0): 41, 28, 48, (38,201,0): 41, 28, 48, (38,202,0): 42, 27, 48, (38,203,0): 43, 28, 49, (38,204,0): 43, 28, 49, (38,205,0): 44, 29, 50, (38,206,0): 46, 28, 50, (38,207,0): 46, 28, 50, (38,208,0): 47, 30, 49, (38,209,0): 47, 30, 49, (38,210,0): 47, 30, 49, (38,211,0): 48, 31, 50, (38,212,0): 48, 31, 50, (38,213,0): 49, 32, 51, (38,214,0): 49, 32, 51, (38,215,0): 49, 32, 51, (38,216,0): 50, 33, 52, (38,217,0): 50, 33, 52, (38,218,0): 50, 33, 52, (38,219,0): 50, 33, 52, (38,220,0): 50, 33, 52, (38,221,0): 50, 33, 52, (38,222,0): 50, 33, 52, (38,223,0): 50, 33, 52, (38,224,0): 47, 32, 51, (38,225,0): 48, 33, 52, (38,226,0): 49, 34, 53, (38,227,0): 50, 35, 54, (38,228,0): 50, 35, 54, (38,229,0): 49, 34, 53, (38,230,0): 48, 33, 52, (38,231,0): 47, 32, 51, (38,232,0): 46, 31, 50, (38,233,0): 46, 31, 50, (38,234,0): 46, 31, 50, (38,235,0): 46, 31, 50, (38,236,0): 46, 31, 50, (38,237,0): 46, 31, 50, (38,238,0): 46, 31, 50, (38,239,0): 46, 32, 49, (38,240,0): 51, 35, 48, (38,241,0): 50, 34, 45, (38,242,0): 50, 32, 44, (38,243,0): 50, 32, 44, (38,244,0): 50, 32, 44, (38,245,0): 52, 34, 46, (38,246,0): 56, 36, 48, (38,247,0): 57, 37, 49, (38,248,0): 57, 35, 48, (38,249,0): 57, 35, 48, (38,250,0): 57, 35, 48, (38,251,0): 57, 35, 48, (38,252,0): 58, 34, 48, (38,253,0): 58, 34, 48, (38,254,0): 58, 34, 48, (38,255,0): 57, 35, 48, (38,256,0): 54, 33, 48, (38,257,0): 55, 34, 49, (38,258,0): 55, 34, 49, (38,259,0): 56, 35, 50, (38,260,0): 58, 36, 49, (38,261,0): 59, 37, 50, (38,262,0): 61, 37, 51, (38,263,0): 61, 37, 50, (38,264,0): 62, 38, 51, (38,265,0): 63, 39, 52, (38,266,0): 67, 41, 52, (38,267,0): 69, 43, 54, (38,268,0): 71, 43, 55, (38,269,0): 71, 44, 53, (38,270,0): 71, 44, 53, (38,271,0): 70, 43, 52, (38,272,0): 74, 44, 52, (38,273,0): 75, 45, 53, (38,274,0): 76, 47, 52, (38,275,0): 77, 48, 53, (38,276,0): 79, 48, 54, (38,277,0): 80, 49, 55, (38,278,0): 81, 50, 55, (38,279,0): 81, 50, 55, (38,280,0): 84, 52, 55, (38,281,0): 85, 53, 56, (38,282,0): 88, 53, 57, (38,283,0): 89, 54, 58, (38,284,0): 91, 57, 58, (38,285,0): 93, 59, 60, (38,286,0): 95, 59, 61, (38,287,0): 95, 59, 59, (38,288,0): 98, 58, 59, (38,289,0): 100, 58, 59, (38,290,0): 102, 61, 59, (38,291,0): 103, 62, 60, (38,292,0): 105, 64, 62, (38,293,0): 105, 64, 62, (38,294,0): 104, 63, 59, (38,295,0): 104, 63, 59, (38,296,0): 111, 70, 66, (38,297,0): 110, 69, 63, (38,298,0): 109, 68, 62, (38,299,0): 108, 67, 61, (38,300,0): 109, 69, 61, (38,301,0): 110, 70, 62, (38,302,0): 112, 72, 64, (38,303,0): 113, 73, 63, (38,304,0): 119, 77, 65, (38,305,0): 124, 78, 62, (38,306,0): 130, 82, 60, (38,307,0): 141, 90, 61, (38,308,0): 152, 98, 64, (38,309,0): 157, 102, 63, (38,310,0): 159, 101, 61, (38,311,0): 155, 100, 59, (38,312,0): 158, 107, 64, (38,313,0): 155, 106, 65, (38,314,0): 152, 104, 64, (38,315,0): 151, 103, 63, (38,316,0): 152, 103, 63, (38,317,0): 153, 104, 64, (38,318,0): 157, 105, 66, (38,319,0): 158, 106, 66, (38,320,0): 160, 105, 66, (38,321,0): 159, 104, 65, (38,322,0): 156, 103, 63, (38,323,0): 151, 102, 61, (38,324,0): 148, 100, 60, (38,325,0): 145, 102, 60, (38,326,0): 144, 102, 60, (38,327,0): 142, 103, 60, (38,328,0): 144, 105, 64, (38,329,0): 143, 106, 64, (38,330,0): 143, 105, 66, (38,331,0): 142, 104, 65, (38,332,0): 142, 104, 65, (38,333,0): 141, 103, 64, (38,334,0): 142, 102, 66, (38,335,0): 141, 101, 65, (38,336,0): 141, 103, 67, (38,337,0): 139, 103, 67, (38,338,0): 138, 102, 66, (38,339,0): 138, 102, 66, (38,340,0): 137, 101, 67, (38,341,0): 136, 100, 66, (38,342,0): 136, 100, 66, (38,343,0): 135, 99, 65, (38,344,0): 136, 100, 68, (38,345,0): 136, 100, 68, (38,346,0): 137, 100, 71, (38,347,0): 137, 100, 71, (38,348,0): 138, 101, 72, (38,349,0): 139, 102, 73, (38,350,0): 139, 102, 75, (38,351,0): 140, 103, 76, (38,352,0): 144, 107, 78, (38,353,0): 142, 105, 76, (38,354,0): 140, 103, 74, (38,355,0): 139, 102, 73, (38,356,0): 138, 101, 72, (38,357,0): 138, 101, 72, (38,358,0): 139, 102, 75, (38,359,0): 140, 103, 76, (38,360,0): 137, 100, 74, (38,361,0): 136, 99, 73, (38,362,0): 135, 97, 74, (38,363,0): 134, 96, 73, (38,364,0): 134, 96, 73, (38,365,0): 134, 96, 73, (38,366,0): 135, 97, 74, (38,367,0): 136, 99, 73, (38,368,0): 139, 97, 73, (38,369,0): 140, 98, 73, (38,370,0): 142, 100, 76, (38,371,0): 143, 101, 77, (38,372,0): 144, 102, 78, (38,373,0): 144, 102, 78, (38,374,0): 143, 101, 79, (38,375,0): 143, 101, 79, (38,376,0): 143, 100, 81, (38,377,0): 143, 100, 81, (38,378,0): 143, 100, 81, (38,379,0): 143, 100, 81, (38,380,0): 143, 100, 83, (38,381,0): 143, 100, 83, (38,382,0): 143, 100, 83, (38,383,0): 143, 100, 83, (38,384,0): 143, 102, 84, (38,385,0): 143, 102, 84, (38,386,0): 144, 101, 84, (38,387,0): 145, 102, 85, (38,388,0): 147, 101, 85, (38,389,0): 148, 102, 86, (38,390,0): 149, 102, 84, (38,391,0): 149, 102, 84, (38,392,0): 152, 101, 84, (38,393,0): 152, 101, 82, (38,394,0): 154, 101, 83, (38,395,0): 156, 104, 83, (38,396,0): 159, 104, 84, (38,397,0): 160, 105, 85, (38,398,0): 162, 105, 86, (38,399,0): 162, 105, 86, (38,400,0): 163, 106, 87, (38,401,0): 163, 106, 86, (38,402,0): 164, 107, 87, (38,403,0): 164, 107, 87, (38,404,0): 165, 108, 88, (38,405,0): 166, 108, 86, (38,406,0): 167, 109, 85, (38,407,0): 167, 110, 83, (38,408,0): 172, 112, 86, (38,409,0): 171, 111, 83, (38,410,0): 171, 112, 82, (38,411,0): 172, 111, 80, (38,412,0): 174, 113, 82, (38,413,0): 177, 117, 83, (38,414,0): 180, 120, 86, (38,415,0): 182, 122, 86, (38,416,0): 182, 124, 84, (38,417,0): 182, 124, 84, (38,418,0): 183, 125, 85, (38,419,0): 182, 124, 84, (38,420,0): 181, 123, 85, (38,421,0): 176, 121, 82, (38,422,0): 174, 118, 83, (38,423,0): 171, 117, 83, (38,424,0): 162, 112, 79, (38,425,0): 150, 103, 73, (38,426,0): 136, 92, 63, (38,427,0): 123, 83, 57, (38,428,0): 115, 79, 55, (38,429,0): 111, 76, 54, (38,430,0): 106, 75, 54, (38,431,0): 102, 73, 55, (38,432,0): 103, 75, 61, (38,433,0): 100, 72, 60, (38,434,0): 96, 68, 56, (38,435,0): 92, 64, 52, (38,436,0): 90, 62, 50, (38,437,0): 89, 61, 49, (38,438,0): 89, 61, 49, (38,439,0): 90, 62, 50, (38,440,0): 91, 63, 51, (38,441,0): 94, 66, 54, (38,442,0): 97, 69, 57, (38,443,0): 101, 73, 61, (38,444,0): 103, 75, 63, (38,445,0): 102, 74, 62, (38,446,0): 101, 73, 61, (38,447,0): 100, 72, 60, (38,448,0): 98, 65, 56, (38,449,0): 98, 65, 56, (38,450,0): 96, 66, 58, (38,451,0): 95, 65, 57, (38,452,0): 93, 63, 55, (38,453,0): 91, 61, 53, (38,454,0): 87, 58, 52, (38,455,0): 85, 56, 50, (38,456,0): 86, 58, 54, (38,457,0): 87, 59, 55, (38,458,0): 89, 61, 57, (38,459,0): 90, 62, 58, (38,460,0): 89, 64, 60, (38,461,0): 88, 63, 59, (38,462,0): 88, 63, 59, (38,463,0): 87, 62, 58, (38,464,0): 91, 61, 59, (38,465,0): 91, 61, 59, (38,466,0): 92, 62, 60, (38,467,0): 92, 62, 60, (38,468,0): 92, 64, 61, (38,469,0): 92, 64, 61, (38,470,0): 91, 66, 62, (38,471,0): 91, 66, 62, (38,472,0): 90, 65, 61, (38,473,0): 91, 66, 62, (38,474,0): 90, 66, 62, (38,475,0): 90, 66, 62, (38,476,0): 87, 66, 61, (38,477,0): 86, 65, 60, (38,478,0): 83, 62, 57, (38,479,0): 82, 61, 56, (38,480,0): 83, 62, 57, (38,481,0): 84, 63, 58, (38,482,0): 86, 66, 59, (38,483,0): 88, 68, 59, (38,484,0): 93, 70, 62, (38,485,0): 96, 74, 63, (38,486,0): 99, 75, 63, (38,487,0): 100, 76, 64, (38,488,0): 97, 73, 61, (38,489,0): 97, 73, 61, (38,490,0): 99, 72, 63, (38,491,0): 98, 71, 62, (38,492,0): 97, 68, 64, (38,493,0): 95, 66, 62, (38,494,0): 92, 62, 60, (38,495,0): 90, 62, 59, (38,496,0): 94, 66, 63, (38,497,0): 92, 67, 63, (38,498,0): 92, 67, 63, (38,499,0): 92, 67, 63, (38,500,0): 92, 67, 63, (38,501,0): 92, 67, 63, (38,502,0): 92, 67, 63, (38,503,0): 92, 67, 63, (38,504,0): 93, 68, 64, (38,505,0): 93, 68, 64, (38,506,0): 93, 68, 64, (38,507,0): 92, 67, 63, (38,508,0): 92, 67, 63, (38,509,0): 91, 66, 62, (38,510,0): 91, 66, 62, (38,511,0): 91, 66, 62, (38,512,0): 91, 66, 62, (38,513,0): 91, 66, 62, (38,514,0): 91, 66, 62, (38,515,0): 91, 66, 62, (38,516,0): 91, 66, 62, (38,517,0): 91, 66, 62, (38,518,0): 91, 66, 62, (38,519,0): 91, 66, 62, (38,520,0): 91, 66, 62, (38,521,0): 90, 65, 61, (38,522,0): 90, 65, 61, (38,523,0): 90, 65, 61, (38,524,0): 89, 64, 60, (38,525,0): 89, 64, 60, (38,526,0): 88, 63, 59, (38,527,0): 87, 63, 59, (38,528,0): 87, 63, 61, (38,529,0): 86, 65, 62, (38,530,0): 87, 66, 63, (38,531,0): 88, 67, 64, (38,532,0): 89, 68, 67, (38,533,0): 88, 67, 66, (38,534,0): 87, 66, 65, (38,535,0): 86, 65, 64, (38,536,0): 80, 58, 60, (38,537,0): 78, 56, 58, (38,538,0): 75, 53, 56, (38,539,0): 72, 50, 53, (38,540,0): 70, 48, 51, (38,541,0): 70, 48, 51, (38,542,0): 71, 48, 54, (38,543,0): 71, 50, 55, (38,544,0): 71, 50, 57, (38,545,0): 69, 50, 56, (38,546,0): 68, 47, 54, (38,547,0): 66, 45, 52, (38,548,0): 65, 44, 51, (38,549,0): 66, 45, 52, (38,550,0): 67, 44, 52, (38,551,0): 68, 45, 53, (38,552,0): 69, 44, 50, (38,553,0): 70, 45, 51, (38,554,0): 71, 46, 52, (38,555,0): 72, 47, 53, (38,556,0): 75, 48, 55, (38,557,0): 76, 49, 54, (38,558,0): 78, 51, 58, (38,559,0): 77, 52, 56, (38,560,0): 76, 51, 55, (38,561,0): 74, 52, 55, (38,562,0): 74, 52, 55, (38,563,0): 73, 51, 54, (38,564,0): 73, 51, 54, (38,565,0): 72, 50, 53, (38,566,0): 72, 50, 53, (38,567,0): 71, 49, 52, (38,568,0): 72, 50, 53, (38,569,0): 71, 49, 52, (38,570,0): 71, 49, 52, (38,571,0): 70, 48, 51, (38,572,0): 68, 46, 49, (38,573,0): 67, 45, 48, (38,574,0): 67, 45, 48, (38,575,0): 66, 44, 47, (38,576,0): 68, 45, 53, (38,577,0): 68, 45, 53, (38,578,0): 68, 45, 53, (38,579,0): 68, 45, 53, (38,580,0): 68, 45, 51, (38,581,0): 68, 45, 51, (38,582,0): 70, 45, 51, (38,583,0): 70, 45, 51, (38,584,0): 67, 42, 46, (38,585,0): 67, 42, 46, (38,586,0): 67, 42, 45, (38,587,0): 66, 41, 44, (38,588,0): 67, 41, 44, (38,589,0): 65, 40, 43, (38,590,0): 66, 40, 41, (38,591,0): 65, 41, 41, (38,592,0): 65, 40, 44, (38,593,0): 65, 40, 44, (38,594,0): 66, 41, 44, (38,595,0): 67, 43, 43, (38,596,0): 68, 44, 44, (38,597,0): 69, 45, 43, (38,598,0): 69, 45, 41, (38,599,0): 70, 46, 42, (39,0,0): 40, 27, 45, (39,1,0): 41, 28, 46, (39,2,0): 41, 28, 45, (39,3,0): 42, 29, 46, (39,4,0): 42, 29, 46, (39,5,0): 43, 30, 47, (39,6,0): 44, 30, 45, (39,7,0): 44, 30, 45, (39,8,0): 46, 30, 43, (39,9,0): 47, 31, 44, (39,10,0): 48, 30, 44, (39,11,0): 49, 31, 45, (39,12,0): 49, 31, 43, (39,13,0): 50, 32, 44, (39,14,0): 50, 32, 44, (39,15,0): 50, 32, 44, (39,16,0): 49, 31, 43, (39,17,0): 49, 31, 43, (39,18,0): 49, 31, 43, (39,19,0): 49, 31, 43, (39,20,0): 49, 31, 43, (39,21,0): 49, 31, 43, (39,22,0): 49, 31, 43, (39,23,0): 49, 31, 43, (39,24,0): 49, 31, 43, (39,25,0): 49, 31, 43, (39,26,0): 49, 31, 43, (39,27,0): 49, 31, 43, (39,28,0): 49, 31, 43, (39,29,0): 49, 31, 43, (39,30,0): 49, 31, 43, (39,31,0): 49, 31, 43, (39,32,0): 46, 29, 45, (39,33,0): 46, 29, 45, (39,34,0): 45, 28, 44, (39,35,0): 44, 27, 43, (39,36,0): 44, 27, 43, (39,37,0): 45, 28, 44, (39,38,0): 46, 29, 45, (39,39,0): 46, 29, 45, (39,40,0): 47, 30, 46, (39,41,0): 47, 30, 46, (39,42,0): 47, 30, 46, (39,43,0): 47, 30, 46, (39,44,0): 47, 30, 46, (39,45,0): 47, 30, 46, (39,46,0): 47, 30, 46, (39,47,0): 47, 30, 46, (39,48,0): 47, 29, 45, (39,49,0): 47, 29, 45, (39,50,0): 47, 29, 45, (39,51,0): 47, 29, 45, (39,52,0): 47, 29, 45, (39,53,0): 47, 29, 45, (39,54,0): 47, 29, 45, (39,55,0): 47, 29, 45, (39,56,0): 47, 29, 45, (39,57,0): 47, 29, 45, (39,58,0): 47, 29, 45, (39,59,0): 46, 28, 44, (39,60,0): 46, 28, 44, (39,61,0): 45, 27, 43, (39,62,0): 45, 27, 43, (39,63,0): 44, 26, 42, (39,64,0): 43, 26, 42, (39,65,0): 42, 25, 41, (39,66,0): 39, 25, 40, (39,67,0): 38, 24, 39, (39,68,0): 36, 22, 37, (39,69,0): 35, 21, 36, (39,70,0): 33, 20, 37, (39,71,0): 33, 20, 37, (39,72,0): 32, 21, 38, (39,73,0): 32, 21, 38, (39,74,0): 31, 19, 39, (39,75,0): 31, 19, 39, (39,76,0): 28, 19, 38, (39,77,0): 28, 19, 38, (39,78,0): 27, 18, 37, (39,79,0): 27, 18, 37, (39,80,0): 29, 17, 37, (39,81,0): 29, 17, 37, (39,82,0): 28, 16, 36, (39,83,0): 28, 16, 36, (39,84,0): 27, 15, 35, (39,85,0): 27, 15, 35, (39,86,0): 26, 14, 34, (39,87,0): 26, 14, 34, (39,88,0): 25, 13, 33, (39,89,0): 25, 13, 33, (39,90,0): 26, 14, 34, (39,91,0): 26, 14, 34, (39,92,0): 27, 15, 35, (39,93,0): 27, 15, 35, (39,94,0): 28, 16, 36, (39,95,0): 26, 17, 38, (39,96,0): 23, 15, 38, (39,97,0): 23, 15, 38, (39,98,0): 23, 15, 38, (39,99,0): 23, 15, 38, (39,100,0): 23, 15, 38, (39,101,0): 23, 15, 38, (39,102,0): 23, 15, 38, (39,103,0): 23, 15, 38, (39,104,0): 26, 18, 41, (39,105,0): 26, 18, 41, (39,106,0): 27, 19, 42, (39,107,0): 28, 20, 43, (39,108,0): 30, 22, 45, (39,109,0): 31, 23, 46, (39,110,0): 32, 24, 47, (39,111,0): 33, 25, 48, (39,112,0): 36, 28, 51, (39,113,0): 36, 28, 51, (39,114,0): 34, 26, 49, (39,115,0): 33, 25, 48, (39,116,0): 31, 23, 46, (39,117,0): 30, 22, 45, (39,118,0): 28, 20, 43, (39,119,0): 28, 20, 43, (39,120,0): 34, 26, 49, (39,121,0): 34, 26, 49, (39,122,0): 34, 26, 49, (39,123,0): 34, 26, 49, (39,124,0): 33, 25, 48, (39,125,0): 33, 25, 48, (39,126,0): 33, 25, 48, (39,127,0): 33, 25, 48, (39,128,0): 32, 24, 47, (39,129,0): 32, 24, 47, (39,130,0): 31, 23, 46, (39,131,0): 31, 23, 46, (39,132,0): 30, 22, 45, (39,133,0): 30, 22, 45, (39,134,0): 29, 21, 44, (39,135,0): 29, 21, 44, (39,136,0): 29, 21, 44, (39,137,0): 29, 21, 44, (39,138,0): 29, 21, 44, (39,139,0): 29, 21, 44, (39,140,0): 29, 21, 44, (39,141,0): 29, 21, 44, (39,142,0): 29, 21, 44, (39,143,0): 27, 22, 44, (39,144,0): 27, 22, 44, (39,145,0): 26, 23, 44, (39,146,0): 26, 23, 44, (39,147,0): 26, 23, 44, (39,148,0): 26, 23, 44, (39,149,0): 26, 23, 44, (39,150,0): 26, 23, 44, (39,151,0): 26, 23, 44, (39,152,0): 26, 23, 44, (39,153,0): 26, 23, 44, (39,154,0): 26, 23, 44, (39,155,0): 26, 23, 44, (39,156,0): 26, 23, 44, (39,157,0): 26, 23, 44, (39,158,0): 26, 23, 44, (39,159,0): 26, 23, 44, (39,160,0): 27, 19, 42, (39,161,0): 27, 19, 42, (39,162,0): 28, 20, 43, (39,163,0): 30, 22, 45, (39,164,0): 31, 23, 46, (39,165,0): 32, 24, 47, (39,166,0): 33, 25, 48, (39,167,0): 34, 26, 49, (39,168,0): 29, 21, 44, (39,169,0): 29, 21, 44, (39,170,0): 30, 22, 45, (39,171,0): 30, 22, 45, (39,172,0): 31, 23, 46, (39,173,0): 31, 23, 46, (39,174,0): 32, 24, 47, (39,175,0): 32, 24, 47, (39,176,0): 34, 26, 49, (39,177,0): 33, 25, 48, (39,178,0): 31, 23, 46, (39,179,0): 30, 22, 45, (39,180,0): 30, 22, 45, (39,181,0): 31, 23, 46, (39,182,0): 33, 25, 48, (39,183,0): 34, 26, 49, (39,184,0): 32, 24, 47, (39,185,0): 32, 24, 47, (39,186,0): 33, 25, 48, (39,187,0): 33, 25, 48, (39,188,0): 34, 26, 49, (39,189,0): 34, 26, 49, (39,190,0): 35, 27, 50, (39,191,0): 35, 27, 48, (39,192,0): 37, 28, 49, (39,193,0): 37, 28, 47, (39,194,0): 36, 27, 46, (39,195,0): 36, 27, 46, (39,196,0): 38, 26, 46, (39,197,0): 38, 26, 46, (39,198,0): 37, 25, 45, (39,199,0): 37, 25, 45, (39,200,0): 41, 28, 48, (39,201,0): 41, 28, 48, (39,202,0): 42, 27, 48, (39,203,0): 43, 28, 49, (39,204,0): 43, 28, 49, (39,205,0): 44, 29, 50, (39,206,0): 46, 28, 50, (39,207,0): 46, 28, 50, (39,208,0): 47, 30, 49, (39,209,0): 47, 30, 49, (39,210,0): 47, 30, 49, (39,211,0): 48, 31, 50, (39,212,0): 48, 31, 50, (39,213,0): 49, 32, 51, (39,214,0): 49, 32, 51, (39,215,0): 49, 32, 51, (39,216,0): 50, 33, 52, (39,217,0): 50, 33, 52, (39,218,0): 50, 33, 52, (39,219,0): 50, 33, 52, (39,220,0): 50, 33, 52, (39,221,0): 50, 33, 52, (39,222,0): 50, 33, 52, (39,223,0): 50, 33, 52, (39,224,0): 48, 33, 52, (39,225,0): 48, 33, 52, (39,226,0): 49, 34, 53, (39,227,0): 50, 35, 54, (39,228,0): 50, 35, 54, (39,229,0): 49, 34, 53, (39,230,0): 48, 33, 52, (39,231,0): 48, 33, 52, (39,232,0): 46, 31, 50, (39,233,0): 46, 31, 50, (39,234,0): 46, 31, 50, (39,235,0): 46, 31, 50, (39,236,0): 46, 31, 50, (39,237,0): 46, 31, 50, (39,238,0): 46, 31, 50, (39,239,0): 46, 32, 49, (39,240,0): 52, 36, 49, (39,241,0): 51, 35, 46, (39,242,0): 50, 32, 44, (39,243,0): 50, 32, 44, (39,244,0): 50, 32, 44, (39,245,0): 52, 34, 46, (39,246,0): 56, 36, 48, (39,247,0): 57, 37, 49, (39,248,0): 58, 36, 49, (39,249,0): 58, 36, 49, (39,250,0): 58, 36, 49, (39,251,0): 58, 36, 49, (39,252,0): 59, 35, 49, (39,253,0): 59, 35, 49, (39,254,0): 59, 35, 49, (39,255,0): 59, 35, 49, (39,256,0): 56, 33, 49, (39,257,0): 55, 34, 49, (39,258,0): 56, 35, 50, (39,259,0): 56, 36, 48, (39,260,0): 58, 36, 49, (39,261,0): 59, 37, 50, (39,262,0): 61, 37, 50, (39,263,0): 61, 37, 50, (39,264,0): 62, 38, 51, (39,265,0): 63, 40, 50, (39,266,0): 68, 42, 53, (39,267,0): 70, 44, 55, (39,268,0): 72, 45, 54, (39,269,0): 72, 45, 54, (39,270,0): 71, 44, 53, (39,271,0): 70, 43, 52, (39,272,0): 75, 45, 53, (39,273,0): 75, 45, 53, (39,274,0): 76, 47, 52, (39,275,0): 77, 48, 53, (39,276,0): 79, 48, 54, (39,277,0): 80, 49, 55, (39,278,0): 81, 50, 55, (39,279,0): 81, 50, 55, (39,280,0): 84, 52, 55, (39,281,0): 85, 53, 56, (39,282,0): 88, 53, 57, (39,283,0): 90, 55, 59, (39,284,0): 91, 57, 58, (39,285,0): 93, 59, 60, (39,286,0): 95, 59, 61, (39,287,0): 98, 59, 60, (39,288,0): 99, 57, 58, (39,289,0): 100, 59, 57, (39,290,0): 102, 61, 59, (39,291,0): 104, 63, 61, (39,292,0): 105, 64, 62, (39,293,0): 105, 64, 60, (39,294,0): 105, 64, 60, (39,295,0): 104, 63, 57, (39,296,0): 112, 71, 65, (39,297,0): 111, 70, 64, (39,298,0): 109, 68, 62, (39,299,0): 108, 68, 60, (39,300,0): 108, 68, 60, (39,301,0): 110, 70, 62, (39,302,0): 112, 72, 64, (39,303,0): 115, 72, 63, (39,304,0): 120, 77, 61, (39,305,0): 125, 78, 58, (39,306,0): 133, 83, 58, (39,307,0): 144, 91, 60, (39,308,0): 156, 98, 61, (39,309,0): 160, 102, 62, (39,310,0): 160, 101, 59, (39,311,0): 157, 100, 57, (39,312,0): 160, 107, 63, (39,313,0): 158, 107, 64, (39,314,0): 154, 105, 64, (39,315,0): 152, 104, 64, (39,316,0): 153, 104, 64, (39,317,0): 154, 105, 64, (39,318,0): 158, 106, 66, (39,319,0): 160, 107, 67, (39,320,0): 160, 107, 67, (39,321,0): 158, 105, 65, (39,322,0): 155, 103, 63, (39,323,0): 151, 102, 61, (39,324,0): 149, 101, 61, (39,325,0): 145, 102, 60, (39,326,0): 144, 102, 60, (39,327,0): 143, 104, 61, (39,328,0): 144, 107, 65, (39,329,0): 143, 106, 64, (39,330,0): 143, 105, 66, (39,331,0): 143, 105, 66, (39,332,0): 142, 104, 65, (39,333,0): 141, 103, 64, (39,334,0): 142, 102, 66, (39,335,0): 141, 103, 66, (39,336,0): 140, 104, 68, (39,337,0): 139, 103, 67, (39,338,0): 139, 103, 67, (39,339,0): 138, 102, 66, (39,340,0): 137, 101, 67, (39,341,0): 136, 100, 66, (39,342,0): 136, 100, 66, (39,343,0): 135, 99, 65, (39,344,0): 135, 99, 67, (39,345,0): 136, 100, 68, (39,346,0): 136, 99, 70, (39,347,0): 137, 100, 71, (39,348,0): 138, 101, 72, (39,349,0): 139, 102, 73, (39,350,0): 139, 102, 75, (39,351,0): 140, 103, 76, (39,352,0): 146, 109, 80, (39,353,0): 144, 107, 78, (39,354,0): 142, 105, 76, (39,355,0): 140, 103, 74, (39,356,0): 139, 102, 73, (39,357,0): 139, 102, 73, (39,358,0): 140, 103, 76, (39,359,0): 141, 104, 77, (39,360,0): 137, 100, 74, (39,361,0): 136, 99, 73, (39,362,0): 134, 96, 73, (39,363,0): 133, 95, 72, (39,364,0): 133, 95, 72, (39,365,0): 134, 96, 73, (39,366,0): 134, 96, 73, (39,367,0): 135, 98, 72, (39,368,0): 139, 97, 73, (39,369,0): 140, 98, 73, (39,370,0): 141, 99, 75, (39,371,0): 143, 101, 77, (39,372,0): 144, 102, 78, (39,373,0): 144, 102, 78, (39,374,0): 143, 101, 79, (39,375,0): 143, 101, 79, (39,376,0): 143, 100, 81, (39,377,0): 143, 100, 81, (39,378,0): 143, 100, 81, (39,379,0): 143, 100, 81, (39,380,0): 143, 100, 83, (39,381,0): 143, 100, 83, (39,382,0): 143, 100, 83, (39,383,0): 143, 100, 83, (39,384,0): 143, 102, 84, (39,385,0): 143, 102, 84, (39,386,0): 144, 101, 84, (39,387,0): 145, 102, 85, (39,388,0): 147, 101, 85, (39,389,0): 148, 103, 84, (39,390,0): 149, 102, 84, (39,391,0): 149, 102, 82, (39,392,0): 152, 101, 82, (39,393,0): 152, 101, 82, (39,394,0): 154, 102, 81, (39,395,0): 156, 104, 83, (39,396,0): 159, 104, 84, (39,397,0): 160, 105, 85, (39,398,0): 162, 105, 86, (39,399,0): 163, 106, 86, (39,400,0): 164, 107, 87, (39,401,0): 164, 107, 87, (39,402,0): 164, 107, 87, (39,403,0): 166, 108, 86, (39,404,0): 166, 108, 86, (39,405,0): 167, 109, 85, (39,406,0): 167, 110, 83, (39,407,0): 170, 110, 82, (39,408,0): 172, 112, 84, (39,409,0): 173, 112, 83, (39,410,0): 173, 112, 81, (39,411,0): 174, 114, 80, (39,412,0): 176, 116, 82, (39,413,0): 181, 118, 85, (39,414,0): 183, 120, 87, (39,415,0): 185, 123, 86, (39,416,0): 182, 123, 83, (39,417,0): 182, 125, 80, (39,418,0): 184, 125, 83, (39,419,0): 183, 126, 83, (39,420,0): 184, 125, 83, (39,421,0): 181, 123, 83, (39,422,0): 178, 120, 82, (39,423,0): 174, 120, 82, (39,424,0): 166, 116, 79, (39,425,0): 154, 108, 74, (39,426,0): 139, 94, 63, (39,427,0): 126, 85, 55, (39,428,0): 117, 80, 54, (39,429,0): 113, 77, 53, (39,430,0): 108, 76, 53, (39,431,0): 105, 74, 54, (39,432,0): 104, 75, 61, (39,433,0): 101, 73, 61, (39,434,0): 96, 68, 56, (39,435,0): 92, 64, 52, (39,436,0): 89, 61, 49, (39,437,0): 88, 60, 48, (39,438,0): 89, 61, 49, (39,439,0): 89, 61, 49, (39,440,0): 88, 60, 48, (39,441,0): 91, 63, 51, (39,442,0): 96, 68, 56, (39,443,0): 100, 72, 60, (39,444,0): 103, 75, 63, (39,445,0): 103, 75, 63, (39,446,0): 102, 74, 62, (39,447,0): 101, 73, 61, (39,448,0): 98, 65, 56, (39,449,0): 98, 65, 56, (39,450,0): 97, 67, 59, (39,451,0): 96, 66, 58, (39,452,0): 94, 64, 56, (39,453,0): 91, 61, 53, (39,454,0): 87, 58, 52, (39,455,0): 85, 56, 50, (39,456,0): 85, 57, 53, (39,457,0): 86, 58, 54, (39,458,0): 88, 60, 56, (39,459,0): 89, 61, 57, (39,460,0): 88, 63, 59, (39,461,0): 88, 63, 59, (39,462,0): 87, 62, 58, (39,463,0): 86, 61, 57, (39,464,0): 91, 61, 59, (39,465,0): 91, 61, 59, (39,466,0): 91, 61, 59, (39,467,0): 92, 62, 60, (39,468,0): 91, 63, 60, (39,469,0): 92, 64, 61, (39,470,0): 90, 65, 61, (39,471,0): 90, 65, 61, (39,472,0): 90, 65, 61, (39,473,0): 91, 66, 62, (39,474,0): 91, 67, 63, (39,475,0): 92, 68, 64, (39,476,0): 89, 68, 63, (39,477,0): 87, 66, 61, (39,478,0): 85, 64, 59, (39,479,0): 84, 63, 58, (39,480,0): 84, 63, 58, (39,481,0): 85, 64, 59, (39,482,0): 87, 67, 60, (39,483,0): 89, 69, 60, (39,484,0): 94, 71, 63, (39,485,0): 96, 74, 63, (39,486,0): 99, 75, 63, (39,487,0): 100, 76, 64, (39,488,0): 97, 73, 61, (39,489,0): 97, 73, 61, (39,490,0): 99, 72, 63, (39,491,0): 98, 71, 62, (39,492,0): 97, 68, 64, (39,493,0): 94, 65, 61, (39,494,0): 92, 62, 60, (39,495,0): 89, 61, 58, (39,496,0): 94, 66, 63, (39,497,0): 92, 67, 63, (39,498,0): 92, 67, 63, (39,499,0): 92, 67, 63, (39,500,0): 92, 67, 63, (39,501,0): 92, 67, 63, (39,502,0): 92, 67, 63, (39,503,0): 92, 67, 63, (39,504,0): 93, 68, 64, (39,505,0): 93, 68, 64, (39,506,0): 93, 68, 64, (39,507,0): 92, 67, 63, (39,508,0): 92, 67, 63, (39,509,0): 91, 66, 62, (39,510,0): 91, 66, 62, (39,511,0): 91, 66, 62, (39,512,0): 91, 66, 62, (39,513,0): 91, 66, 62, (39,514,0): 91, 66, 62, (39,515,0): 91, 66, 62, (39,516,0): 91, 66, 62, (39,517,0): 91, 66, 62, (39,518,0): 91, 66, 62, (39,519,0): 91, 66, 62, (39,520,0): 91, 66, 62, (39,521,0): 90, 65, 61, (39,522,0): 90, 65, 61, (39,523,0): 89, 64, 60, (39,524,0): 89, 64, 60, (39,525,0): 88, 63, 59, (39,526,0): 88, 63, 59, (39,527,0): 87, 63, 59, (39,528,0): 87, 63, 61, (39,529,0): 86, 65, 62, (39,530,0): 87, 66, 63, (39,531,0): 89, 68, 65, (39,532,0): 89, 68, 67, (39,533,0): 88, 67, 66, (39,534,0): 87, 66, 65, (39,535,0): 87, 66, 65, (39,536,0): 81, 59, 61, (39,537,0): 78, 56, 58, (39,538,0): 75, 53, 56, (39,539,0): 72, 50, 53, (39,540,0): 70, 48, 51, (39,541,0): 70, 48, 51, (39,542,0): 71, 48, 54, (39,543,0): 71, 50, 55, (39,544,0): 71, 50, 57, (39,545,0): 69, 50, 56, (39,546,0): 68, 47, 54, (39,547,0): 66, 45, 52, (39,548,0): 65, 44, 51, (39,549,0): 65, 44, 51, (39,550,0): 67, 44, 52, (39,551,0): 68, 45, 53, (39,552,0): 68, 42, 51, (39,553,0): 68, 43, 49, (39,554,0): 70, 44, 53, (39,555,0): 71, 46, 52, (39,556,0): 74, 47, 56, (39,557,0): 75, 48, 55, (39,558,0): 76, 49, 58, (39,559,0): 76, 51, 57, (39,560,0): 76, 51, 55, (39,561,0): 74, 52, 55, (39,562,0): 73, 51, 54, (39,563,0): 73, 51, 54, (39,564,0): 72, 50, 53, (39,565,0): 72, 50, 53, (39,566,0): 71, 49, 52, (39,567,0): 71, 49, 52, (39,568,0): 71, 49, 52, (39,569,0): 71, 49, 52, (39,570,0): 70, 48, 51, (39,571,0): 69, 47, 50, (39,572,0): 68, 46, 49, (39,573,0): 67, 45, 48, (39,574,0): 66, 44, 47, (39,575,0): 65, 43, 46, (39,576,0): 68, 45, 53, (39,577,0): 68, 45, 53, (39,578,0): 68, 45, 53, (39,579,0): 68, 45, 53, (39,580,0): 68, 45, 51, (39,581,0): 68, 45, 51, (39,582,0): 70, 45, 51, (39,583,0): 70, 45, 51, (39,584,0): 69, 44, 48, (39,585,0): 68, 43, 47, (39,586,0): 67, 42, 45, (39,587,0): 66, 41, 44, (39,588,0): 65, 40, 43, (39,589,0): 62, 40, 42, (39,590,0): 63, 39, 39, (39,591,0): 63, 38, 41, (39,592,0): 66, 41, 45, (39,593,0): 66, 41, 45, (39,594,0): 66, 41, 45, (39,595,0): 66, 41, 44, (39,596,0): 66, 42, 42, (39,597,0): 66, 42, 40, (39,598,0): 66, 42, 40, (39,599,0): 66, 42, 38, (40,0,0): 39, 26, 44, (40,1,0): 39, 26, 44, (40,2,0): 40, 27, 44, (40,3,0): 40, 27, 44, (40,4,0): 41, 28, 45, (40,5,0): 41, 28, 45, (40,6,0): 43, 29, 44, (40,7,0): 43, 29, 44, (40,8,0): 45, 29, 42, (40,9,0): 46, 30, 43, (40,10,0): 48, 30, 44, (40,11,0): 49, 31, 45, (40,12,0): 50, 32, 44, (40,13,0): 51, 33, 45, (40,14,0): 51, 33, 45, (40,15,0): 52, 34, 46, (40,16,0): 53, 35, 47, (40,17,0): 52, 34, 46, (40,18,0): 52, 34, 46, (40,19,0): 51, 33, 45, (40,20,0): 50, 32, 44, (40,21,0): 49, 31, 43, (40,22,0): 49, 31, 43, (40,23,0): 48, 30, 42, (40,24,0): 52, 34, 46, (40,25,0): 52, 34, 46, (40,26,0): 51, 33, 45, (40,27,0): 51, 33, 45, (40,28,0): 50, 32, 44, (40,29,0): 50, 32, 44, (40,30,0): 49, 31, 43, (40,31,0): 49, 31, 43, (40,32,0): 47, 30, 46, (40,33,0): 47, 30, 46, (40,34,0): 47, 30, 46, (40,35,0): 47, 30, 46, (40,36,0): 47, 30, 46, (40,37,0): 47, 30, 46, (40,38,0): 47, 30, 46, (40,39,0): 47, 30, 46, (40,40,0): 48, 31, 47, (40,41,0): 47, 30, 46, (40,42,0): 45, 28, 44, (40,43,0): 44, 27, 43, (40,44,0): 43, 26, 42, (40,45,0): 43, 26, 42, (40,46,0): 44, 27, 43, (40,47,0): 45, 28, 44, (40,48,0): 47, 29, 45, (40,49,0): 48, 30, 46, (40,50,0): 48, 30, 46, (40,51,0): 49, 31, 47, (40,52,0): 49, 31, 47, (40,53,0): 50, 32, 48, (40,54,0): 50, 32, 48, (40,55,0): 50, 32, 48, (40,56,0): 49, 31, 47, (40,57,0): 49, 31, 47, (40,58,0): 48, 30, 46, (40,59,0): 48, 30, 46, (40,60,0): 47, 29, 45, (40,61,0): 47, 29, 45, (40,62,0): 46, 28, 44, (40,63,0): 46, 28, 44, (40,64,0): 43, 26, 42, (40,65,0): 42, 25, 41, (40,66,0): 38, 24, 39, (40,67,0): 35, 21, 36, (40,68,0): 33, 19, 34, (40,69,0): 31, 17, 32, (40,70,0): 28, 15, 32, (40,71,0): 27, 14, 31, (40,72,0): 33, 22, 39, (40,73,0): 32, 21, 38, (40,74,0): 30, 18, 38, (40,75,0): 28, 16, 36, (40,76,0): 25, 16, 35, (40,77,0): 25, 16, 35, (40,78,0): 25, 16, 35, (40,79,0): 25, 16, 35, (40,80,0): 22, 13, 34, (40,81,0): 23, 14, 35, (40,82,0): 26, 17, 38, (40,83,0): 27, 18, 39, (40,84,0): 28, 19, 40, (40,85,0): 27, 18, 39, (40,86,0): 26, 17, 38, (40,87,0): 25, 16, 37, (40,88,0): 23, 14, 35, (40,89,0): 24, 15, 36, (40,90,0): 24, 15, 36, (40,91,0): 25, 16, 37, (40,92,0): 26, 17, 38, (40,93,0): 27, 18, 39, (40,94,0): 27, 18, 39, (40,95,0): 28, 19, 40, (40,96,0): 25, 17, 40, (40,97,0): 23, 18, 40, (40,98,0): 24, 19, 41, (40,99,0): 25, 20, 42, (40,100,0): 25, 20, 42, (40,101,0): 24, 19, 41, (40,102,0): 23, 18, 40, (40,103,0): 23, 18, 40, (40,104,0): 24, 19, 41, (40,105,0): 24, 19, 41, (40,106,0): 25, 20, 42, (40,107,0): 25, 20, 42, (40,108,0): 26, 21, 43, (40,109,0): 26, 21, 43, (40,110,0): 27, 22, 44, (40,111,0): 27, 22, 44, (40,112,0): 28, 23, 45, (40,113,0): 28, 23, 45, (40,114,0): 28, 23, 45, (40,115,0): 28, 23, 45, (40,116,0): 28, 23, 45, (40,117,0): 28, 23, 45, (40,118,0): 28, 23, 45, (40,119,0): 28, 23, 45, (40,120,0): 28, 23, 45, (40,121,0): 29, 24, 46, (40,122,0): 29, 24, 46, (40,123,0): 29, 24, 46, (40,124,0): 30, 25, 47, (40,125,0): 30, 25, 47, (40,126,0): 31, 26, 48, (40,127,0): 31, 26, 48, (40,128,0): 31, 23, 46, (40,129,0): 31, 23, 46, (40,130,0): 31, 23, 46, (40,131,0): 31, 23, 46, (40,132,0): 31, 23, 46, (40,133,0): 31, 23, 46, (40,134,0): 31, 23, 46, (40,135,0): 31, 23, 46, (40,136,0): 31, 23, 46, (40,137,0): 30, 22, 45, (40,138,0): 30, 22, 45, (40,139,0): 29, 21, 44, (40,140,0): 29, 21, 44, (40,141,0): 28, 20, 43, (40,142,0): 28, 20, 43, (40,143,0): 26, 21, 43, (40,144,0): 26, 21, 43, (40,145,0): 25, 22, 43, (40,146,0): 25, 22, 43, (40,147,0): 25, 22, 43, (40,148,0): 25, 22, 43, (40,149,0): 25, 22, 43, (40,150,0): 25, 22, 43, (40,151,0): 25, 22, 43, (40,152,0): 25, 22, 43, (40,153,0): 25, 22, 43, (40,154,0): 25, 22, 43, (40,155,0): 25, 22, 43, (40,156,0): 25, 22, 43, (40,157,0): 25, 22, 43, (40,158,0): 25, 22, 43, (40,159,0): 25, 22, 43, (40,160,0): 27, 19, 42, (40,161,0): 27, 19, 42, (40,162,0): 28, 20, 43, (40,163,0): 29, 21, 44, (40,164,0): 30, 22, 45, (40,165,0): 30, 22, 45, (40,166,0): 31, 23, 46, (40,167,0): 31, 23, 46, (40,168,0): 29, 21, 44, (40,169,0): 29, 21, 44, (40,170,0): 30, 22, 45, (40,171,0): 30, 22, 45, (40,172,0): 31, 23, 46, (40,173,0): 31, 23, 46, (40,174,0): 32, 24, 47, (40,175,0): 32, 24, 47, (40,176,0): 34, 26, 49, (40,177,0): 34, 26, 49, (40,178,0): 34, 26, 49, (40,179,0): 34, 26, 49, (40,180,0): 34, 26, 49, (40,181,0): 34, 26, 49, (40,182,0): 34, 26, 49, (40,183,0): 34, 26, 49, (40,184,0): 32, 24, 47, (40,185,0): 32, 24, 47, (40,186,0): 33, 25, 48, (40,187,0): 33, 25, 48, (40,188,0): 34, 26, 49, (40,189,0): 34, 26, 49, (40,190,0): 35, 27, 50, (40,191,0): 35, 27, 48, (40,192,0): 35, 26, 47, (40,193,0): 35, 26, 45, (40,194,0): 35, 26, 45, (40,195,0): 36, 27, 46, (40,196,0): 38, 26, 46, (40,197,0): 39, 27, 47, (40,198,0): 39, 27, 47, (40,199,0): 39, 27, 47, (40,200,0): 39, 26, 46, (40,201,0): 39, 26, 46, (40,202,0): 41, 26, 47, (40,203,0): 41, 26, 47, (40,204,0): 42, 27, 48, (40,205,0): 42, 27, 48, (40,206,0): 45, 27, 49, (40,207,0): 45, 27, 49, (40,208,0): 45, 28, 47, (40,209,0): 46, 29, 48, (40,210,0): 46, 29, 48, (40,211,0): 47, 30, 49, (40,212,0): 49, 32, 51, (40,213,0): 50, 33, 52, (40,214,0): 50, 33, 52, (40,215,0): 51, 34, 53, (40,216,0): 51, 34, 53, (40,217,0): 51, 34, 53, (40,218,0): 50, 33, 52, (40,219,0): 50, 33, 52, (40,220,0): 49, 32, 51, (40,221,0): 49, 32, 51, (40,222,0): 48, 31, 50, (40,223,0): 48, 31, 50, (40,224,0): 51, 34, 53, (40,225,0): 51, 34, 53, (40,226,0): 50, 33, 52, (40,227,0): 50, 33, 52, (40,228,0): 49, 32, 51, (40,229,0): 49, 32, 51, (40,230,0): 48, 31, 50, (40,231,0): 48, 31, 50, (40,232,0): 47, 30, 49, (40,233,0): 48, 31, 50, (40,234,0): 49, 32, 51, (40,235,0): 51, 34, 53, (40,236,0): 51, 34, 53, (40,237,0): 51, 34, 53, (40,238,0): 50, 33, 52, (40,239,0): 50, 33, 51, (40,240,0): 51, 33, 47, (40,241,0): 51, 33, 45, (40,242,0): 53, 33, 45, (40,243,0): 54, 34, 46, (40,244,0): 54, 34, 46, (40,245,0): 55, 35, 47, (40,246,0): 56, 34, 47, (40,247,0): 57, 35, 48, (40,248,0): 58, 34, 48, (40,249,0): 58, 34, 48, (40,250,0): 58, 34, 48, (40,251,0): 59, 35, 49, (40,252,0): 61, 34, 49, (40,253,0): 62, 35, 50, (40,254,0): 62, 35, 50, (40,255,0): 61, 37, 51, (40,256,0): 58, 36, 49, (40,257,0): 58, 36, 49, (40,258,0): 57, 35, 48, (40,259,0): 57, 35, 48, (40,260,0): 58, 34, 48, (40,261,0): 59, 35, 48, (40,262,0): 61, 37, 50, (40,263,0): 62, 38, 51, (40,264,0): 66, 40, 51, (40,265,0): 67, 41, 52, (40,266,0): 69, 41, 53, (40,267,0): 70, 43, 52, (40,268,0): 72, 45, 54, (40,269,0): 73, 46, 55, (40,270,0): 77, 47, 55, (40,271,0): 77, 47, 55, (40,272,0): 79, 48, 56, (40,273,0): 79, 48, 56, (40,274,0): 79, 48, 54, (40,275,0): 80, 49, 55, (40,276,0): 81, 48, 55, (40,277,0): 82, 49, 56, (40,278,0): 82, 50, 55, (40,279,0): 82, 50, 55, (40,280,0): 88, 53, 57, (40,281,0): 88, 53, 57, (40,282,0): 90, 54, 58, (40,283,0): 91, 55, 59, (40,284,0): 92, 56, 58, (40,285,0): 93, 57, 59, (40,286,0): 96, 57, 60, (40,287,0): 96, 57, 58, (40,288,0): 96, 54, 55, (40,289,0): 100, 56, 55, (40,290,0): 103, 59, 58, (40,291,0): 105, 61, 58, (40,292,0): 108, 64, 61, (40,293,0): 109, 65, 62, (40,294,0): 109, 65, 62, (40,295,0): 109, 66, 60, (40,296,0): 112, 69, 63, (40,297,0): 111, 68, 61, (40,298,0): 111, 68, 61, (40,299,0): 111, 68, 61, (40,300,0): 112, 69, 62, (40,301,0): 114, 71, 62, (40,302,0): 116, 73, 64, (40,303,0): 118, 74, 63, (40,304,0): 123, 77, 61, (40,305,0): 127, 79, 56, (40,306,0): 135, 84, 55, (40,307,0): 147, 93, 59, (40,308,0): 160, 100, 63, (40,309,0): 166, 107, 65, (40,310,0): 167, 106, 61, (40,311,0): 163, 105, 59, (40,312,0): 162, 108, 62, (40,313,0): 160, 109, 64, (40,314,0): 158, 109, 66, (40,315,0): 158, 109, 68, (40,316,0): 159, 110, 69, (40,317,0): 159, 110, 69, (40,318,0): 161, 109, 69, (40,319,0): 162, 109, 67, (40,320,0): 162, 109, 67, (40,321,0): 161, 108, 66, (40,322,0): 157, 106, 63, (40,323,0): 152, 105, 61, (40,324,0): 149, 104, 62, (40,325,0): 147, 104, 61, (40,326,0): 146, 104, 62, (40,327,0): 144, 105, 62, (40,328,0): 143, 106, 62, (40,329,0): 140, 106, 61, (40,330,0): 140, 105, 63, (40,331,0): 139, 104, 62, (40,332,0): 141, 103, 64, (40,333,0): 140, 102, 63, (40,334,0): 140, 102, 63, (40,335,0): 140, 102, 63, (40,336,0): 140, 105, 67, (40,337,0): 140, 105, 67, (40,338,0): 139, 104, 66, (40,339,0): 138, 103, 65, (40,340,0): 137, 101, 65, (40,341,0): 136, 100, 64, (40,342,0): 135, 99, 63, (40,343,0): 135, 99, 63, (40,344,0): 133, 97, 63, (40,345,0): 134, 98, 64, (40,346,0): 136, 100, 68, (40,347,0): 137, 101, 69, (40,348,0): 138, 102, 70, (40,349,0): 137, 101, 69, (40,350,0): 137, 100, 71, (40,351,0): 136, 99, 70, (40,352,0): 143, 106, 77, (40,353,0): 142, 105, 76, (40,354,0): 142, 105, 76, (40,355,0): 141, 104, 75, (40,356,0): 140, 103, 74, (40,357,0): 139, 102, 73, (40,358,0): 139, 102, 75, (40,359,0): 138, 101, 74, (40,360,0): 139, 102, 76, (40,361,0): 139, 102, 76, (40,362,0): 139, 101, 78, (40,363,0): 139, 101, 78, (40,364,0): 139, 101, 78, (40,365,0): 139, 101, 78, (40,366,0): 139, 101, 78, (40,367,0): 139, 102, 76, (40,368,0): 144, 102, 78, (40,369,0): 144, 102, 77, (40,370,0): 144, 102, 78, (40,371,0): 144, 102, 78, (40,372,0): 144, 102, 78, (40,373,0): 144, 102, 78, (40,374,0): 144, 102, 80, (40,375,0): 144, 102, 80, (40,376,0): 145, 102, 83, (40,377,0): 144, 101, 82, (40,378,0): 144, 101, 82, (40,379,0): 143, 100, 81, (40,380,0): 144, 101, 84, (40,381,0): 145, 102, 85, (40,382,0): 147, 104, 87, (40,383,0): 148, 105, 88, (40,384,0): 146, 105, 87, (40,385,0): 146, 105, 87, (40,386,0): 147, 104, 85, (40,387,0): 148, 105, 86, (40,388,0): 150, 105, 86, (40,389,0): 151, 106, 87, (40,390,0): 152, 105, 87, (40,391,0): 153, 106, 86, (40,392,0): 153, 102, 83, (40,393,0): 154, 103, 82, (40,394,0): 155, 103, 82, (40,395,0): 156, 104, 83, (40,396,0): 159, 104, 83, (40,397,0): 161, 106, 85, (40,398,0): 162, 105, 85, (40,399,0): 163, 106, 86, (40,400,0): 165, 107, 87, (40,401,0): 165, 107, 85, (40,402,0): 166, 108, 86, (40,403,0): 170, 110, 86, (40,404,0): 171, 111, 87, (40,405,0): 172, 112, 86, (40,406,0): 173, 113, 87, (40,407,0): 175, 114, 86, (40,408,0): 179, 118, 89, (40,409,0): 179, 116, 85, (40,410,0): 177, 114, 83, (40,411,0): 176, 113, 80, (40,412,0): 178, 115, 82, (40,413,0): 183, 119, 84, (40,414,0): 187, 123, 88, (40,415,0): 189, 127, 88, (40,416,0): 187, 125, 84, (40,417,0): 185, 127, 81, (40,418,0): 186, 125, 81, (40,419,0): 183, 124, 80, (40,420,0): 184, 123, 79, (40,421,0): 182, 123, 79, (40,422,0): 180, 123, 80, (40,423,0): 178, 123, 82, (40,424,0): 173, 121, 81, (40,425,0): 163, 115, 77, (40,426,0): 149, 103, 69, (40,427,0): 134, 91, 59, (40,428,0): 121, 81, 55, (40,429,0): 113, 77, 51, (40,430,0): 112, 77, 55, (40,431,0): 111, 79, 58, (40,432,0): 104, 75, 59, (40,433,0): 101, 73, 59, (40,434,0): 99, 71, 57, (40,435,0): 96, 68, 54, (40,436,0): 94, 66, 52, (40,437,0): 93, 65, 51, (40,438,0): 93, 65, 51, (40,439,0): 93, 65, 51, (40,440,0): 93, 65, 51, (40,441,0): 94, 66, 52, (40,442,0): 95, 67, 53, (40,443,0): 97, 69, 55, (40,444,0): 99, 71, 57, (40,445,0): 101, 73, 59, (40,446,0): 102, 74, 60, (40,447,0): 103, 75, 63, (40,448,0): 102, 69, 60, (40,449,0): 103, 70, 61, (40,450,0): 101, 71, 61, (40,451,0): 99, 69, 59, (40,452,0): 97, 67, 57, (40,453,0): 93, 63, 53, (40,454,0): 89, 60, 52, (40,455,0): 87, 58, 50, (40,456,0): 87, 60, 53, (40,457,0): 87, 60, 53, (40,458,0): 88, 60, 56, (40,459,0): 88, 60, 56, (40,460,0): 86, 61, 56, (40,461,0): 87, 62, 57, (40,462,0): 87, 62, 57, (40,463,0): 87, 62, 57, (40,464,0): 89, 59, 57, (40,465,0): 88, 58, 56, (40,466,0): 86, 56, 54, (40,467,0): 85, 55, 53, (40,468,0): 85, 57, 54, (40,469,0): 88, 60, 57, (40,470,0): 90, 65, 61, (40,471,0): 92, 67, 63, (40,472,0): 90, 65, 61, (40,473,0): 90, 65, 61, (40,474,0): 89, 65, 61, (40,475,0): 89, 65, 61, (40,476,0): 87, 66, 61, (40,477,0): 87, 66, 61, (40,478,0): 87, 66, 61, (40,479,0): 87, 66, 61, (40,480,0): 85, 64, 59, (40,481,0): 85, 64, 59, (40,482,0): 86, 66, 59, (40,483,0): 88, 68, 59, (40,484,0): 92, 69, 61, (40,485,0): 95, 73, 62, (40,486,0): 99, 75, 63, (40,487,0): 101, 77, 65, (40,488,0): 99, 75, 63, (40,489,0): 99, 75, 63, (40,490,0): 100, 73, 64, (40,491,0): 99, 72, 63, (40,492,0): 99, 70, 66, (40,493,0): 98, 69, 65, (40,494,0): 97, 67, 65, (40,495,0): 96, 68, 65, (40,496,0): 89, 61, 58, (40,497,0): 87, 62, 58, (40,498,0): 88, 63, 59, (40,499,0): 89, 64, 60, (40,500,0): 89, 64, 60, (40,501,0): 90, 65, 61, (40,502,0): 91, 66, 62, (40,503,0): 91, 66, 62, (40,504,0): 91, 66, 62, (40,505,0): 91, 66, 62, (40,506,0): 90, 65, 61, (40,507,0): 89, 64, 60, (40,508,0): 88, 63, 59, (40,509,0): 88, 63, 59, (40,510,0): 87, 62, 58, (40,511,0): 87, 62, 58, (40,512,0): 88, 63, 59, (40,513,0): 88, 63, 59, (40,514,0): 88, 63, 59, (40,515,0): 89, 64, 60, (40,516,0): 89, 64, 60, (40,517,0): 90, 65, 61, (40,518,0): 90, 65, 61, (40,519,0): 91, 66, 62, (40,520,0): 89, 64, 60, (40,521,0): 89, 64, 60, (40,522,0): 89, 64, 60, (40,523,0): 89, 64, 60, (40,524,0): 89, 64, 60, (40,525,0): 89, 64, 60, (40,526,0): 89, 64, 60, (40,527,0): 88, 64, 60, (40,528,0): 93, 69, 67, (40,529,0): 91, 70, 67, (40,530,0): 91, 70, 67, (40,531,0): 91, 70, 67, (40,532,0): 90, 69, 68, (40,533,0): 88, 67, 66, (40,534,0): 86, 65, 64, (40,535,0): 85, 64, 63, (40,536,0): 86, 64, 66, (40,537,0): 83, 61, 63, (40,538,0): 79, 57, 60, (40,539,0): 75, 53, 56, (40,540,0): 72, 50, 53, (40,541,0): 71, 49, 52, (40,542,0): 70, 47, 53, (40,543,0): 69, 48, 53, (40,544,0): 69, 48, 55, (40,545,0): 67, 48, 54, (40,546,0): 68, 47, 54, (40,547,0): 67, 46, 53, (40,548,0): 67, 46, 53, (40,549,0): 66, 45, 52, (40,550,0): 67, 44, 52, (40,551,0): 67, 44, 52, (40,552,0): 67, 41, 50, (40,553,0): 67, 41, 50, (40,554,0): 67, 41, 52, (40,555,0): 68, 42, 51, (40,556,0): 70, 42, 54, (40,557,0): 71, 44, 53, (40,558,0): 71, 43, 55, (40,559,0): 71, 45, 54, (40,560,0): 75, 50, 56, (40,561,0): 73, 51, 54, (40,562,0): 73, 51, 54, (40,563,0): 73, 51, 54, (40,564,0): 72, 50, 53, (40,565,0): 72, 50, 53, (40,566,0): 72, 50, 53, (40,567,0): 72, 50, 53, (40,568,0): 73, 51, 54, (40,569,0): 73, 51, 54, (40,570,0): 74, 52, 55, (40,571,0): 74, 52, 55, (40,572,0): 74, 52, 55, (40,573,0): 72, 50, 53, (40,574,0): 71, 49, 52, (40,575,0): 70, 48, 51, (40,576,0): 73, 47, 56, (40,577,0): 71, 45, 54, (40,578,0): 69, 43, 52, (40,579,0): 69, 43, 52, (40,580,0): 69, 46, 52, (40,581,0): 69, 46, 52, (40,582,0): 67, 44, 50, (40,583,0): 65, 42, 48, (40,584,0): 68, 46, 49, (40,585,0): 67, 45, 48, (40,586,0): 67, 45, 47, (40,587,0): 66, 44, 46, (40,588,0): 64, 42, 44, (40,589,0): 62, 42, 43, (40,590,0): 63, 42, 41, (40,591,0): 62, 40, 42, (40,592,0): 60, 38, 41, (40,593,0): 59, 37, 40, (40,594,0): 59, 37, 40, (40,595,0): 59, 37, 39, (40,596,0): 60, 39, 38, (40,597,0): 61, 40, 37, (40,598,0): 63, 42, 39, (40,599,0): 64, 43, 40, (41,0,0): 39, 26, 44, (41,1,0): 39, 26, 44, (41,2,0): 39, 26, 43, (41,3,0): 40, 27, 44, (41,4,0): 40, 27, 44, (41,5,0): 41, 28, 45, (41,6,0): 42, 28, 43, (41,7,0): 43, 29, 44, (41,8,0): 46, 30, 43, (41,9,0): 46, 30, 43, (41,10,0): 48, 30, 44, (41,11,0): 49, 31, 45, (41,12,0): 50, 32, 44, (41,13,0): 51, 33, 45, (41,14,0): 52, 34, 46, (41,15,0): 52, 34, 46, (41,16,0): 53, 35, 47, (41,17,0): 53, 35, 47, (41,18,0): 52, 34, 46, (41,19,0): 51, 33, 45, (41,20,0): 51, 33, 45, (41,21,0): 50, 32, 44, (41,22,0): 50, 32, 44, (41,23,0): 49, 31, 43, (41,24,0): 52, 34, 46, (41,25,0): 52, 34, 46, (41,26,0): 51, 33, 45, (41,27,0): 51, 33, 45, (41,28,0): 50, 32, 44, (41,29,0): 50, 32, 44, (41,30,0): 49, 31, 43, (41,31,0): 49, 31, 43, (41,32,0): 47, 30, 46, (41,33,0): 47, 30, 46, (41,34,0): 47, 30, 46, (41,35,0): 47, 30, 46, (41,36,0): 47, 30, 46, (41,37,0): 47, 30, 46, (41,38,0): 47, 30, 46, (41,39,0): 47, 30, 46, (41,40,0): 47, 30, 46, (41,41,0): 46, 29, 45, (41,42,0): 44, 27, 43, (41,43,0): 43, 26, 42, (41,44,0): 42, 25, 41, (41,45,0): 43, 26, 42, (41,46,0): 43, 26, 42, (41,47,0): 44, 27, 43, (41,48,0): 47, 29, 45, (41,49,0): 47, 29, 45, (41,50,0): 48, 30, 46, (41,51,0): 48, 30, 46, (41,52,0): 49, 31, 47, (41,53,0): 49, 31, 47, (41,54,0): 50, 32, 48, (41,55,0): 50, 32, 48, (41,56,0): 49, 31, 47, (41,57,0): 49, 31, 47, (41,58,0): 48, 30, 46, (41,59,0): 48, 30, 46, (41,60,0): 47, 29, 45, (41,61,0): 47, 29, 45, (41,62,0): 46, 28, 44, (41,63,0): 46, 28, 44, (41,64,0): 43, 26, 42, (41,65,0): 42, 25, 41, (41,66,0): 38, 24, 39, (41,67,0): 36, 22, 37, (41,68,0): 33, 19, 34, (41,69,0): 31, 17, 32, (41,70,0): 29, 16, 33, (41,71,0): 28, 15, 32, (41,72,0): 32, 21, 38, (41,73,0): 31, 20, 37, (41,74,0): 29, 17, 37, (41,75,0): 27, 15, 35, (41,76,0): 24, 15, 34, (41,77,0): 24, 15, 34, (41,78,0): 24, 15, 34, (41,79,0): 25, 16, 35, (41,80,0): 22, 13, 34, (41,81,0): 24, 15, 36, (41,82,0): 25, 16, 37, (41,83,0): 27, 18, 39, (41,84,0): 27, 18, 39, (41,85,0): 27, 18, 39, (41,86,0): 26, 17, 38, (41,87,0): 25, 16, 37, (41,88,0): 24, 15, 36, (41,89,0): 24, 15, 36, (41,90,0): 24, 15, 36, (41,91,0): 25, 16, 37, (41,92,0): 26, 17, 38, (41,93,0): 27, 18, 39, (41,94,0): 27, 18, 39, (41,95,0): 26, 18, 39, (41,96,0): 22, 17, 39, (41,97,0): 23, 18, 40, (41,98,0): 24, 19, 41, (41,99,0): 25, 20, 42, (41,100,0): 25, 20, 42, (41,101,0): 24, 19, 41, (41,102,0): 23, 18, 40, (41,103,0): 22, 17, 39, (41,104,0): 23, 18, 40, (41,105,0): 24, 19, 41, (41,106,0): 24, 19, 41, (41,107,0): 25, 20, 42, (41,108,0): 25, 20, 42, (41,109,0): 26, 21, 43, (41,110,0): 26, 21, 43, (41,111,0): 26, 21, 43, (41,112,0): 28, 23, 45, (41,113,0): 28, 23, 45, (41,114,0): 28, 23, 45, (41,115,0): 28, 23, 45, (41,116,0): 28, 23, 45, (41,117,0): 28, 23, 45, (41,118,0): 28, 23, 45, (41,119,0): 28, 23, 45, (41,120,0): 27, 22, 44, (41,121,0): 28, 23, 45, (41,122,0): 28, 23, 45, (41,123,0): 28, 23, 45, (41,124,0): 29, 24, 46, (41,125,0): 30, 25, 47, (41,126,0): 30, 25, 47, (41,127,0): 30, 25, 47, (41,128,0): 31, 23, 46, (41,129,0): 31, 23, 46, (41,130,0): 31, 23, 46, (41,131,0): 31, 23, 46, (41,132,0): 31, 23, 46, (41,133,0): 31, 23, 46, (41,134,0): 31, 23, 46, (41,135,0): 31, 23, 46, (41,136,0): 31, 23, 46, (41,137,0): 30, 22, 45, (41,138,0): 30, 22, 45, (41,139,0): 30, 22, 45, (41,140,0): 29, 21, 44, (41,141,0): 29, 21, 44, (41,142,0): 28, 20, 43, (41,143,0): 26, 21, 43, (41,144,0): 25, 22, 43, (41,145,0): 25, 22, 43, (41,146,0): 25, 22, 43, (41,147,0): 25, 22, 43, (41,148,0): 25, 22, 43, (41,149,0): 25, 22, 43, (41,150,0): 25, 22, 43, (41,151,0): 25, 22, 43, (41,152,0): 25, 22, 43, (41,153,0): 25, 22, 43, (41,154,0): 25, 22, 43, (41,155,0): 25, 22, 43, (41,156,0): 25, 22, 43, (41,157,0): 25, 22, 43, (41,158,0): 25, 22, 43, (41,159,0): 25, 22, 43, (41,160,0): 26, 21, 43, (41,161,0): 29, 21, 44, (41,162,0): 29, 21, 44, (41,163,0): 29, 21, 44, (41,164,0): 29, 21, 44, (41,165,0): 30, 22, 45, (41,166,0): 30, 22, 45, (41,167,0): 30, 22, 45, (41,168,0): 29, 21, 44, (41,169,0): 30, 22, 45, (41,170,0): 30, 22, 45, (41,171,0): 31, 23, 46, (41,172,0): 31, 23, 46, (41,173,0): 32, 24, 47, (41,174,0): 32, 24, 47, (41,175,0): 32, 24, 47, (41,176,0): 34, 26, 49, (41,177,0): 34, 26, 49, (41,178,0): 34, 26, 49, (41,179,0): 34, 26, 49, (41,180,0): 34, 26, 49, (41,181,0): 34, 26, 49, (41,182,0): 34, 26, 49, (41,183,0): 34, 26, 49, (41,184,0): 32, 24, 47, (41,185,0): 32, 24, 47, (41,186,0): 33, 25, 48, (41,187,0): 33, 25, 48, (41,188,0): 34, 26, 49, (41,189,0): 34, 26, 49, (41,190,0): 35, 27, 50, (41,191,0): 35, 27, 48, (41,192,0): 35, 26, 47, (41,193,0): 35, 26, 45, (41,194,0): 35, 26, 45, (41,195,0): 36, 27, 46, (41,196,0): 38, 26, 46, (41,197,0): 39, 27, 47, (41,198,0): 39, 27, 47, (41,199,0): 39, 27, 47, (41,200,0): 39, 26, 46, (41,201,0): 39, 26, 46, (41,202,0): 41, 26, 47, (41,203,0): 41, 26, 47, (41,204,0): 42, 27, 48, (41,205,0): 42, 27, 48, (41,206,0): 45, 27, 49, (41,207,0): 45, 27, 49, (41,208,0): 45, 28, 47, (41,209,0): 46, 29, 48, (41,210,0): 46, 29, 48, (41,211,0): 47, 30, 49, (41,212,0): 49, 32, 51, (41,213,0): 50, 33, 52, (41,214,0): 50, 33, 52, (41,215,0): 51, 34, 53, (41,216,0): 51, 34, 53, (41,217,0): 51, 34, 53, (41,218,0): 51, 34, 53, (41,219,0): 50, 33, 52, (41,220,0): 50, 33, 52, (41,221,0): 49, 32, 51, (41,222,0): 49, 32, 51, (41,223,0): 48, 31, 50, (41,224,0): 51, 34, 53, (41,225,0): 51, 34, 53, (41,226,0): 50, 33, 52, (41,227,0): 50, 33, 52, (41,228,0): 49, 32, 51, (41,229,0): 49, 32, 51, (41,230,0): 48, 31, 50, (41,231,0): 48, 31, 50, (41,232,0): 47, 30, 49, (41,233,0): 48, 31, 50, (41,234,0): 49, 32, 51, (41,235,0): 51, 34, 53, (41,236,0): 51, 34, 53, (41,237,0): 51, 34, 53, (41,238,0): 50, 33, 52, (41,239,0): 50, 33, 51, (41,240,0): 51, 33, 47, (41,241,0): 51, 33, 45, (41,242,0): 54, 34, 46, (41,243,0): 54, 34, 46, (41,244,0): 55, 35, 47, (41,245,0): 55, 35, 47, (41,246,0): 56, 34, 47, (41,247,0): 57, 35, 48, (41,248,0): 58, 34, 48, (41,249,0): 58, 34, 48, (41,250,0): 59, 35, 49, (41,251,0): 59, 35, 49, (41,252,0): 62, 35, 50, (41,253,0): 62, 35, 50, (41,254,0): 62, 35, 50, (41,255,0): 63, 36, 51, (41,256,0): 60, 36, 50, (41,257,0): 58, 36, 49, (41,258,0): 57, 35, 48, (41,259,0): 57, 35, 48, (41,260,0): 59, 35, 48, (41,261,0): 60, 36, 49, (41,262,0): 61, 37, 50, (41,263,0): 62, 39, 49, (41,264,0): 66, 40, 51, (41,265,0): 67, 41, 50, (41,266,0): 69, 42, 51, (41,267,0): 70, 43, 52, (41,268,0): 72, 45, 54, (41,269,0): 74, 47, 56, (41,270,0): 77, 47, 55, (41,271,0): 77, 47, 55, (41,272,0): 79, 48, 56, (41,273,0): 79, 48, 56, (41,274,0): 79, 48, 54, (41,275,0): 80, 49, 55, (41,276,0): 81, 48, 55, (41,277,0): 82, 49, 56, (41,278,0): 82, 50, 55, (41,279,0): 82, 50, 55, (41,280,0): 87, 52, 56, (41,281,0): 88, 53, 57, (41,282,0): 90, 54, 58, (41,283,0): 91, 55, 59, (41,284,0): 92, 56, 58, (41,285,0): 93, 57, 59, (41,286,0): 96, 57, 60, (41,287,0): 97, 57, 58, (41,288,0): 96, 54, 55, (41,289,0): 100, 56, 55, (41,290,0): 103, 59, 56, (41,291,0): 106, 62, 59, (41,292,0): 108, 64, 61, (41,293,0): 109, 65, 62, (41,294,0): 109, 66, 60, (41,295,0): 110, 67, 61, (41,296,0): 112, 69, 62, (41,297,0): 111, 68, 61, (41,298,0): 111, 68, 61, (41,299,0): 112, 69, 62, (41,300,0): 113, 70, 61, (41,301,0): 115, 72, 63, (41,302,0): 117, 74, 65, (41,303,0): 119, 75, 62, (41,304,0): 127, 79, 59, (41,305,0): 133, 81, 57, (41,306,0): 141, 86, 56, (41,307,0): 153, 94, 60, (41,308,0): 165, 103, 64, (41,309,0): 169, 108, 64, (41,310,0): 169, 108, 61, (41,311,0): 165, 107, 59, (41,312,0): 163, 109, 62, (41,313,0): 162, 110, 63, (41,314,0): 161, 110, 65, (41,315,0): 159, 110, 67, (41,316,0): 159, 110, 69, (41,317,0): 160, 111, 68, (41,318,0): 163, 110, 68, (41,319,0): 163, 110, 68, (41,320,0): 162, 109, 67, (41,321,0): 160, 109, 66, (41,322,0): 155, 106, 63, (41,323,0): 152, 105, 61, (41,324,0): 148, 103, 61, (41,325,0): 146, 105, 61, (41,326,0): 144, 105, 62, (41,327,0): 143, 106, 62, (41,328,0): 141, 107, 62, (41,329,0): 141, 107, 62, (41,330,0): 140, 105, 63, (41,331,0): 140, 105, 63, (41,332,0): 141, 103, 64, (41,333,0): 141, 103, 64, (41,334,0): 140, 102, 63, (41,335,0): 140, 102, 63, (41,336,0): 141, 106, 68, (41,337,0): 141, 106, 68, (41,338,0): 140, 105, 67, (41,339,0): 139, 104, 66, (41,340,0): 138, 102, 66, (41,341,0): 137, 101, 65, (41,342,0): 136, 100, 64, (41,343,0): 135, 99, 63, (41,344,0): 134, 98, 64, (41,345,0): 135, 99, 65, (41,346,0): 136, 100, 68, (41,347,0): 137, 101, 69, (41,348,0): 138, 102, 70, (41,349,0): 138, 102, 70, (41,350,0): 137, 100, 71, (41,351,0): 136, 99, 70, (41,352,0): 142, 105, 76, (41,353,0): 142, 105, 76, (41,354,0): 142, 105, 76, (41,355,0): 141, 104, 75, (41,356,0): 140, 103, 74, (41,357,0): 139, 102, 73, (41,358,0): 139, 102, 75, (41,359,0): 139, 102, 75, (41,360,0): 138, 101, 75, (41,361,0): 138, 101, 75, (41,362,0): 138, 100, 77, (41,363,0): 138, 100, 77, (41,364,0): 138, 100, 77, (41,365,0): 138, 100, 77, (41,366,0): 138, 100, 77, (41,367,0): 138, 101, 75, (41,368,0): 144, 102, 78, (41,369,0): 144, 102, 77, (41,370,0): 144, 102, 78, (41,371,0): 144, 102, 78, (41,372,0): 144, 102, 78, (41,373,0): 144, 102, 78, (41,374,0): 144, 102, 80, (41,375,0): 144, 102, 80, (41,376,0): 145, 102, 83, (41,377,0): 144, 101, 82, (41,378,0): 144, 101, 82, (41,379,0): 143, 100, 81, (41,380,0): 144, 101, 84, (41,381,0): 145, 102, 85, (41,382,0): 147, 104, 87, (41,383,0): 148, 105, 88, (41,384,0): 146, 105, 87, (41,385,0): 146, 105, 87, (41,386,0): 148, 105, 86, (41,387,0): 148, 105, 86, (41,388,0): 151, 106, 87, (41,389,0): 151, 106, 85, (41,390,0): 152, 105, 85, (41,391,0): 153, 106, 86, (41,392,0): 154, 103, 82, (41,393,0): 154, 103, 82, (41,394,0): 156, 104, 83, (41,395,0): 157, 105, 83, (41,396,0): 160, 105, 84, (41,397,0): 161, 106, 85, (41,398,0): 163, 106, 86, (41,399,0): 164, 108, 85, (41,400,0): 166, 108, 86, (41,401,0): 169, 109, 85, (41,402,0): 169, 109, 85, (41,403,0): 171, 111, 85, (41,404,0): 172, 112, 86, (41,405,0): 174, 113, 85, (41,406,0): 175, 114, 86, (41,407,0): 175, 114, 85, (41,408,0): 180, 117, 86, (41,409,0): 179, 116, 83, (41,410,0): 178, 115, 82, (41,411,0): 179, 115, 80, (41,412,0): 181, 117, 82, (41,413,0): 184, 120, 84, (41,414,0): 187, 123, 87, (41,415,0): 190, 126, 88, (41,416,0): 190, 127, 84, (41,417,0): 188, 127, 82, (41,418,0): 188, 127, 82, (41,419,0): 187, 126, 81, (41,420,0): 187, 126, 81, (41,421,0): 186, 125, 80, (41,422,0): 183, 125, 79, (41,423,0): 180, 126, 80, (41,424,0): 175, 122, 80, (41,425,0): 165, 116, 76, (41,426,0): 151, 105, 69, (41,427,0): 137, 94, 62, (41,428,0): 125, 86, 57, (41,429,0): 117, 80, 54, (41,430,0): 114, 78, 54, (41,431,0): 111, 79, 58, (41,432,0): 104, 75, 59, (41,433,0): 101, 73, 59, (41,434,0): 98, 70, 56, (41,435,0): 95, 67, 53, (41,436,0): 93, 65, 51, (41,437,0): 93, 65, 51, (41,438,0): 93, 65, 51, (41,439,0): 94, 66, 52, (41,440,0): 93, 65, 51, (41,441,0): 94, 66, 52, (41,442,0): 95, 67, 53, (41,443,0): 97, 69, 55, (41,444,0): 99, 71, 57, (41,445,0): 101, 73, 59, (41,446,0): 102, 74, 60, (41,447,0): 103, 75, 61, (41,448,0): 102, 70, 59, (41,449,0): 102, 69, 60, (41,450,0): 100, 70, 60, (41,451,0): 99, 69, 59, (41,452,0): 97, 67, 57, (41,453,0): 93, 63, 53, (41,454,0): 89, 60, 52, (41,455,0): 87, 58, 50, (41,456,0): 88, 61, 54, (41,457,0): 88, 61, 54, (41,458,0): 88, 60, 56, (41,459,0): 88, 60, 56, (41,460,0): 86, 61, 56, (41,461,0): 87, 62, 57, (41,462,0): 87, 62, 57, (41,463,0): 87, 62, 57, (41,464,0): 89, 59, 57, (41,465,0): 87, 57, 55, (41,466,0): 86, 56, 54, (41,467,0): 85, 55, 53, (41,468,0): 85, 57, 54, (41,469,0): 88, 60, 57, (41,470,0): 89, 64, 60, (41,471,0): 91, 66, 62, (41,472,0): 90, 65, 61, (41,473,0): 90, 65, 61, (41,474,0): 89, 65, 61, (41,475,0): 89, 65, 61, (41,476,0): 87, 66, 61, (41,477,0): 87, 66, 61, (41,478,0): 87, 66, 61, (41,479,0): 87, 66, 61, (41,480,0): 85, 64, 59, (41,481,0): 85, 64, 59, (41,482,0): 85, 65, 58, (41,483,0): 87, 67, 58, (41,484,0): 91, 68, 60, (41,485,0): 94, 72, 61, (41,486,0): 98, 74, 62, (41,487,0): 100, 76, 64, (41,488,0): 100, 76, 64, (41,489,0): 99, 75, 63, (41,490,0): 100, 73, 64, (41,491,0): 99, 72, 63, (41,492,0): 99, 70, 66, (41,493,0): 98, 69, 65, (41,494,0): 97, 67, 65, (41,495,0): 96, 68, 65, (41,496,0): 90, 62, 59, (41,497,0): 89, 64, 60, (41,498,0): 89, 64, 60, (41,499,0): 89, 64, 60, (41,500,0): 89, 64, 60, (41,501,0): 90, 65, 61, (41,502,0): 90, 65, 61, (41,503,0): 90, 65, 61, (41,504,0): 91, 66, 62, (41,505,0): 90, 65, 61, (41,506,0): 90, 65, 61, (41,507,0): 89, 64, 60, (41,508,0): 88, 63, 59, (41,509,0): 88, 63, 59, (41,510,0): 87, 62, 58, (41,511,0): 87, 62, 58, (41,512,0): 89, 64, 60, (41,513,0): 89, 64, 60, (41,514,0): 89, 64, 60, (41,515,0): 90, 65, 61, (41,516,0): 90, 65, 61, (41,517,0): 91, 66, 62, (41,518,0): 91, 66, 62, (41,519,0): 91, 66, 62, (41,520,0): 90, 65, 61, (41,521,0): 90, 65, 61, (41,522,0): 90, 65, 61, (41,523,0): 90, 65, 61, (41,524,0): 90, 65, 61, (41,525,0): 90, 65, 61, (41,526,0): 90, 65, 61, (41,527,0): 89, 65, 61, (41,528,0): 93, 69, 67, (41,529,0): 91, 70, 67, (41,530,0): 92, 71, 68, (41,531,0): 91, 70, 67, (41,532,0): 90, 69, 68, (41,533,0): 89, 68, 67, (41,534,0): 87, 66, 65, (41,535,0): 86, 65, 64, (41,536,0): 86, 64, 66, (41,537,0): 83, 61, 63, (41,538,0): 80, 58, 61, (41,539,0): 76, 54, 57, (41,540,0): 73, 51, 54, (41,541,0): 72, 50, 53, (41,542,0): 71, 48, 54, (41,543,0): 70, 49, 54, (41,544,0): 69, 48, 55, (41,545,0): 68, 49, 55, (41,546,0): 68, 47, 54, (41,547,0): 68, 47, 54, (41,548,0): 67, 46, 53, (41,549,0): 67, 46, 53, (41,550,0): 67, 44, 52, (41,551,0): 67, 44, 52, (41,552,0): 68, 42, 53, (41,553,0): 68, 42, 53, (41,554,0): 68, 42, 53, (41,555,0): 69, 43, 54, (41,556,0): 70, 42, 54, (41,557,0): 70, 42, 54, (41,558,0): 71, 43, 57, (41,559,0): 70, 44, 55, (41,560,0): 74, 49, 55, (41,561,0): 72, 50, 53, (41,562,0): 72, 50, 53, (41,563,0): 72, 50, 53, (41,564,0): 72, 50, 53, (41,565,0): 73, 51, 54, (41,566,0): 73, 51, 54, (41,567,0): 73, 51, 54, (41,568,0): 74, 52, 55, (41,569,0): 74, 52, 55, (41,570,0): 75, 53, 56, (41,571,0): 75, 53, 56, (41,572,0): 74, 52, 55, (41,573,0): 73, 51, 54, (41,574,0): 72, 50, 53, (41,575,0): 71, 49, 52, (41,576,0): 73, 47, 56, (41,577,0): 71, 45, 54, (41,578,0): 69, 43, 52, (41,579,0): 69, 43, 52, (41,580,0): 69, 46, 52, (41,581,0): 70, 47, 53, (41,582,0): 68, 45, 51, (41,583,0): 65, 42, 48, (41,584,0): 68, 46, 49, (41,585,0): 67, 45, 48, (41,586,0): 67, 45, 47, (41,587,0): 65, 45, 46, (41,588,0): 63, 43, 44, (41,589,0): 62, 42, 43, (41,590,0): 62, 42, 41, (41,591,0): 61, 41, 42, (41,592,0): 59, 39, 41, (41,593,0): 59, 36, 42, (41,594,0): 59, 36, 42, (41,595,0): 59, 37, 40, (41,596,0): 60, 38, 40, (41,597,0): 61, 40, 39, (41,598,0): 63, 42, 41, (41,599,0): 64, 43, 40, (42,0,0): 38, 25, 43, (42,1,0): 39, 26, 44, (42,2,0): 39, 26, 43, (42,3,0): 40, 27, 44, (42,4,0): 40, 27, 44, (42,5,0): 41, 28, 45, (42,6,0): 42, 28, 43, (42,7,0): 42, 28, 43, (42,8,0): 47, 31, 44, (42,9,0): 47, 31, 44, (42,10,0): 49, 31, 45, (42,11,0): 50, 32, 46, (42,12,0): 51, 33, 45, (42,13,0): 52, 34, 46, (42,14,0): 53, 35, 47, (42,15,0): 53, 35, 47, (42,16,0): 53, 35, 47, (42,17,0): 53, 35, 47, (42,18,0): 53, 35, 47, (42,19,0): 52, 34, 46, (42,20,0): 52, 34, 46, (42,21,0): 51, 33, 45, (42,22,0): 51, 33, 45, (42,23,0): 51, 33, 45, (42,24,0): 52, 34, 46, (42,25,0): 52, 34, 46, (42,26,0): 51, 33, 45, (42,27,0): 51, 33, 45, (42,28,0): 50, 32, 44, (42,29,0): 50, 32, 44, (42,30,0): 49, 31, 43, (42,31,0): 49, 31, 43, (42,32,0): 47, 30, 46, (42,33,0): 47, 30, 46, (42,34,0): 47, 30, 46, (42,35,0): 47, 30, 46, (42,36,0): 47, 30, 46, (42,37,0): 47, 30, 46, (42,38,0): 47, 30, 46, (42,39,0): 47, 30, 46, (42,40,0): 46, 29, 45, (42,41,0): 45, 28, 44, (42,42,0): 43, 26, 42, (42,43,0): 42, 25, 41, (42,44,0): 41, 24, 40, (42,45,0): 42, 25, 41, (42,46,0): 42, 25, 41, (42,47,0): 43, 26, 42, (42,48,0): 46, 28, 44, (42,49,0): 46, 28, 44, (42,50,0): 47, 29, 45, (42,51,0): 47, 29, 45, (42,52,0): 48, 30, 46, (42,53,0): 48, 30, 46, (42,54,0): 49, 31, 47, (42,55,0): 49, 31, 47, (42,56,0): 49, 31, 47, (42,57,0): 49, 31, 47, (42,58,0): 48, 30, 46, (42,59,0): 48, 30, 46, (42,60,0): 47, 29, 45, (42,61,0): 47, 29, 45, (42,62,0): 46, 28, 44, (42,63,0): 46, 28, 44, (42,64,0): 43, 26, 42, (42,65,0): 42, 25, 41, (42,66,0): 38, 24, 39, (42,67,0): 37, 23, 38, (42,68,0): 34, 20, 35, (42,69,0): 32, 18, 33, (42,70,0): 30, 17, 34, (42,71,0): 29, 16, 33, (42,72,0): 31, 20, 37, (42,73,0): 30, 19, 36, (42,74,0): 28, 16, 36, (42,75,0): 26, 14, 34, (42,76,0): 23, 14, 33, (42,77,0): 23, 14, 33, (42,78,0): 23, 14, 33, (42,79,0): 24, 15, 34, (42,80,0): 22, 14, 35, (42,81,0): 23, 15, 36, (42,82,0): 24, 16, 37, (42,83,0): 25, 17, 38, (42,84,0): 26, 18, 39, (42,85,0): 26, 18, 39, (42,86,0): 25, 17, 38, (42,87,0): 25, 17, 38, (42,88,0): 23, 15, 36, (42,89,0): 23, 15, 36, (42,90,0): 24, 16, 37, (42,91,0): 24, 16, 37, (42,92,0): 25, 17, 38, (42,93,0): 25, 17, 38, (42,94,0): 26, 18, 39, (42,95,0): 26, 18, 39, (42,96,0): 21, 16, 38, (42,97,0): 22, 17, 39, (42,98,0): 23, 18, 40, (42,99,0): 24, 19, 41, (42,100,0): 24, 19, 41, (42,101,0): 23, 18, 40, (42,102,0): 22, 17, 39, (42,103,0): 21, 16, 38, (42,104,0): 23, 18, 40, (42,105,0): 23, 18, 40, (42,106,0): 23, 18, 40, (42,107,0): 24, 19, 41, (42,108,0): 24, 19, 41, (42,109,0): 25, 20, 42, (42,110,0): 25, 20, 42, (42,111,0): 26, 21, 43, (42,112,0): 26, 21, 43, (42,113,0): 26, 21, 43, (42,114,0): 26, 21, 43, (42,115,0): 26, 21, 43, (42,116,0): 26, 21, 43, (42,117,0): 26, 21, 43, (42,118,0): 26, 21, 43, (42,119,0): 26, 21, 43, (42,120,0): 26, 21, 43, (42,121,0): 26, 21, 43, (42,122,0): 26, 21, 43, (42,123,0): 27, 22, 44, (42,124,0): 28, 23, 45, (42,125,0): 28, 23, 45, (42,126,0): 28, 23, 45, (42,127,0): 29, 24, 46, (42,128,0): 31, 23, 46, (42,129,0): 31, 23, 46, (42,130,0): 31, 23, 46, (42,131,0): 31, 23, 46, (42,132,0): 31, 23, 46, (42,133,0): 31, 23, 46, (42,134,0): 31, 23, 46, (42,135,0): 31, 23, 46, (42,136,0): 31, 23, 46, (42,137,0): 31, 23, 46, (42,138,0): 31, 23, 46, (42,139,0): 30, 22, 45, (42,140,0): 29, 21, 44, (42,141,0): 29, 21, 44, (42,142,0): 29, 21, 44, (42,143,0): 26, 21, 43, (42,144,0): 25, 22, 43, (42,145,0): 24, 22, 43, (42,146,0): 24, 22, 43, (42,147,0): 24, 22, 43, (42,148,0): 24, 22, 43, (42,149,0): 24, 22, 43, (42,150,0): 24, 22, 43, (42,151,0): 24, 22, 43, (42,152,0): 24, 22, 43, (42,153,0): 24, 22, 43, (42,154,0): 24, 22, 43, (42,155,0): 24, 22, 43, (42,156,0): 24, 22, 43, (42,157,0): 24, 22, 43, (42,158,0): 24, 22, 43, (42,159,0): 25, 22, 43, (42,160,0): 29, 24, 46, (42,161,0): 30, 22, 45, (42,162,0): 30, 22, 45, (42,163,0): 30, 22, 45, (42,164,0): 30, 22, 45, (42,165,0): 29, 21, 44, (42,166,0): 29, 21, 44, (42,167,0): 29, 21, 44, (42,168,0): 30, 22, 45, (42,169,0): 30, 22, 45, (42,170,0): 30, 22, 45, (42,171,0): 31, 23, 46, (42,172,0): 31, 23, 46, (42,173,0): 32, 24, 47, (42,174,0): 32, 24, 47, (42,175,0): 33, 25, 48, (42,176,0): 34, 26, 49, (42,177,0): 34, 26, 49, (42,178,0): 34, 26, 49, (42,179,0): 34, 26, 49, (42,180,0): 34, 26, 49, (42,181,0): 34, 26, 49, (42,182,0): 34, 26, 49, (42,183,0): 34, 26, 49, (42,184,0): 32, 24, 47, (42,185,0): 32, 24, 47, (42,186,0): 33, 25, 48, (42,187,0): 33, 25, 48, (42,188,0): 34, 26, 49, (42,189,0): 34, 26, 49, (42,190,0): 35, 27, 50, (42,191,0): 35, 27, 48, (42,192,0): 35, 26, 47, (42,193,0): 35, 26, 45, (42,194,0): 35, 26, 45, (42,195,0): 36, 27, 46, (42,196,0): 38, 26, 46, (42,197,0): 39, 27, 47, (42,198,0): 39, 27, 47, (42,199,0): 39, 27, 47, (42,200,0): 39, 26, 46, (42,201,0): 39, 26, 46, (42,202,0): 41, 26, 47, (42,203,0): 41, 26, 47, (42,204,0): 42, 27, 48, (42,205,0): 42, 27, 48, (42,206,0): 45, 27, 49, (42,207,0): 45, 27, 49, (42,208,0): 45, 28, 47, (42,209,0): 46, 29, 48, (42,210,0): 46, 29, 48, (42,211,0): 47, 30, 49, (42,212,0): 49, 32, 51, (42,213,0): 50, 33, 52, (42,214,0): 50, 33, 52, (42,215,0): 51, 34, 53, (42,216,0): 52, 35, 54, (42,217,0): 51, 34, 53, (42,218,0): 51, 34, 53, (42,219,0): 50, 33, 52, (42,220,0): 50, 33, 52, (42,221,0): 49, 32, 51, (42,222,0): 49, 32, 51, (42,223,0): 49, 32, 51, (42,224,0): 52, 33, 53, (42,225,0): 52, 33, 53, (42,226,0): 51, 32, 52, (42,227,0): 51, 32, 52, (42,228,0): 50, 31, 51, (42,229,0): 50, 31, 51, (42,230,0): 49, 30, 50, (42,231,0): 49, 30, 50, (42,232,0): 48, 29, 49, (42,233,0): 49, 30, 50, (42,234,0): 50, 31, 51, (42,235,0): 52, 33, 53, (42,236,0): 52, 33, 53, (42,237,0): 52, 33, 53, (42,238,0): 51, 32, 52, (42,239,0): 51, 32, 51, (42,240,0): 53, 32, 47, (42,241,0): 54, 34, 46, (42,242,0): 54, 34, 46, (42,243,0): 54, 34, 46, (42,244,0): 56, 34, 47, (42,245,0): 57, 35, 48, (42,246,0): 57, 35, 48, (42,247,0): 57, 35, 48, (42,248,0): 58, 34, 48, (42,249,0): 59, 35, 49, (42,250,0): 61, 34, 49, (42,251,0): 61, 34, 49, (42,252,0): 62, 35, 50, (42,253,0): 63, 36, 51, (42,254,0): 64, 36, 51, (42,255,0): 63, 36, 51, (42,256,0): 60, 36, 49, (42,257,0): 60, 36, 49, (42,258,0): 59, 35, 48, (42,259,0): 59, 35, 48, (42,260,0): 59, 35, 48, (42,261,0): 61, 37, 50, (42,262,0): 64, 38, 49, (42,263,0): 65, 39, 50, (42,264,0): 68, 40, 52, (42,265,0): 68, 41, 50, (42,266,0): 71, 41, 51, (42,267,0): 73, 43, 51, (42,268,0): 75, 45, 53, (42,269,0): 76, 46, 54, (42,270,0): 77, 47, 55, (42,271,0): 78, 48, 56, (42,272,0): 79, 48, 56, (42,273,0): 79, 48, 56, (42,274,0): 80, 47, 54, (42,275,0): 81, 48, 55, (42,276,0): 81, 48, 55, (42,277,0): 82, 49, 56, (42,278,0): 84, 49, 55, (42,279,0): 84, 49, 55, (42,280,0): 88, 52, 56, (42,281,0): 88, 52, 56, (42,282,0): 89, 53, 57, (42,283,0): 90, 54, 58, (42,284,0): 93, 54, 57, (42,285,0): 94, 55, 58, (42,286,0): 95, 56, 59, (42,287,0): 97, 57, 58, (42,288,0): 97, 56, 54, (42,289,0): 100, 56, 53, (42,290,0): 103, 59, 56, (42,291,0): 106, 62, 59, (42,292,0): 108, 65, 59, (42,293,0): 109, 66, 60, (42,294,0): 110, 67, 61, (42,295,0): 110, 67, 61, (42,296,0): 111, 68, 61, (42,297,0): 111, 68, 61, (42,298,0): 112, 69, 60, (42,299,0): 112, 69, 60, (42,300,0): 114, 71, 62, (42,301,0): 117, 74, 65, (42,302,0): 119, 77, 65, (42,303,0): 123, 77, 62, (42,304,0): 133, 82, 61, (42,305,0): 139, 85, 57, (42,306,0): 147, 91, 58, (42,307,0): 159, 99, 62, (42,308,0): 169, 106, 63, (42,309,0): 173, 111, 64, (42,310,0): 173, 111, 62, (42,311,0): 170, 110, 60, (42,312,0): 167, 111, 62, (42,313,0): 165, 111, 64, (42,314,0): 163, 112, 67, (42,315,0): 161, 113, 67, (42,316,0): 161, 112, 69, (42,317,0): 161, 112, 69, (42,318,0): 164, 111, 69, (42,319,0): 164, 111, 67, (42,320,0): 161, 110, 65, (42,321,0): 160, 109, 64, (42,322,0): 155, 106, 63, (42,323,0): 152, 105, 61, (42,324,0): 148, 104, 59, (42,325,0): 146, 105, 59, (42,326,0): 144, 106, 61, (42,327,0): 143, 106, 61, (42,328,0): 142, 108, 63, (42,329,0): 141, 108, 63, (42,330,0): 140, 107, 62, (42,331,0): 140, 107, 62, (42,332,0): 140, 105, 63, (42,333,0): 140, 105, 63, (42,334,0): 141, 104, 62, (42,335,0): 141, 104, 62, (42,336,0): 142, 107, 67, (42,337,0): 141, 106, 66, (42,338,0): 141, 106, 68, (42,339,0): 139, 104, 66, (42,340,0): 138, 103, 65, (42,341,0): 137, 102, 64, (42,342,0): 137, 101, 65, (42,343,0): 136, 100, 64, (42,344,0): 134, 98, 64, (42,345,0): 135, 99, 65, (42,346,0): 136, 100, 66, (42,347,0): 138, 102, 68, (42,348,0): 138, 102, 70, (42,349,0): 138, 102, 70, (42,350,0): 137, 101, 69, (42,351,0): 137, 101, 69, (42,352,0): 142, 105, 76, (42,353,0): 142, 105, 76, (42,354,0): 141, 104, 75, (42,355,0): 141, 104, 75, (42,356,0): 140, 103, 74, (42,357,0): 140, 103, 74, (42,358,0): 139, 102, 75, (42,359,0): 139, 102, 75, (42,360,0): 138, 101, 75, (42,361,0): 138, 101, 75, (42,362,0): 138, 100, 77, (42,363,0): 138, 100, 77, (42,364,0): 138, 100, 77, (42,365,0): 138, 100, 77, (42,366,0): 138, 100, 77, (42,367,0): 138, 101, 75, (42,368,0): 144, 102, 78, (42,369,0): 144, 102, 77, (42,370,0): 144, 102, 78, (42,371,0): 144, 102, 78, (42,372,0): 144, 102, 78, (42,373,0): 144, 102, 78, (42,374,0): 144, 102, 80, (42,375,0): 144, 102, 80, (42,376,0): 145, 102, 83, (42,377,0): 144, 101, 82, (42,378,0): 144, 101, 82, (42,379,0): 143, 100, 81, (42,380,0): 144, 101, 84, (42,381,0): 145, 102, 85, (42,382,0): 147, 104, 87, (42,383,0): 148, 105, 88, (42,384,0): 146, 105, 85, (42,385,0): 147, 106, 86, (42,386,0): 148, 105, 86, (42,387,0): 148, 105, 86, (42,388,0): 151, 106, 85, (42,389,0): 152, 107, 86, (42,390,0): 153, 106, 86, (42,391,0): 153, 107, 84, (42,392,0): 156, 105, 84, (42,393,0): 156, 105, 84, (42,394,0): 158, 106, 84, (42,395,0): 159, 107, 85, (42,396,0): 162, 107, 86, (42,397,0): 163, 109, 85, (42,398,0): 165, 109, 86, (42,399,0): 166, 108, 86, (42,400,0): 170, 110, 86, (42,401,0): 172, 110, 85, (42,402,0): 172, 110, 85, (42,403,0): 173, 111, 86, (42,404,0): 174, 112, 87, (42,405,0): 177, 113, 86, (42,406,0): 178, 114, 86, (42,407,0): 178, 115, 84, (42,408,0): 180, 115, 85, (42,409,0): 181, 116, 84, (42,410,0): 182, 118, 83, (42,411,0): 184, 118, 83, (42,412,0): 186, 120, 85, (42,413,0): 188, 123, 85, (42,414,0): 189, 124, 86, (42,415,0): 190, 125, 87, (42,416,0): 191, 128, 85, (42,417,0): 191, 128, 85, (42,418,0): 190, 127, 83, (42,419,0): 190, 127, 83, (42,420,0): 189, 127, 80, (42,421,0): 188, 127, 80, (42,422,0): 186, 128, 80, (42,423,0): 184, 128, 81, (42,424,0): 177, 123, 79, (42,425,0): 169, 117, 77, (42,426,0): 157, 109, 71, (42,427,0): 144, 99, 66, (42,428,0): 132, 91, 63, (42,429,0): 122, 85, 59, (42,430,0): 117, 81, 57, (42,431,0): 113, 78, 58, (42,432,0): 104, 75, 59, (42,433,0): 100, 72, 58, (42,434,0): 97, 69, 55, (42,435,0): 94, 66, 52, (42,436,0): 92, 64, 50, (42,437,0): 92, 64, 50, (42,438,0): 94, 66, 52, (42,439,0): 95, 67, 53, (42,440,0): 94, 66, 52, (42,441,0): 95, 67, 53, (42,442,0): 96, 68, 54, (42,443,0): 97, 69, 55, (42,444,0): 99, 71, 57, (42,445,0): 100, 72, 58, (42,446,0): 101, 73, 59, (42,447,0): 102, 74, 60, (42,448,0): 102, 70, 59, (42,449,0): 102, 70, 59, (42,450,0): 100, 70, 59, (42,451,0): 98, 68, 57, (42,452,0): 96, 66, 56, (42,453,0): 94, 64, 54, (42,454,0): 90, 62, 51, (42,455,0): 89, 61, 50, (42,456,0): 89, 62, 53, (42,457,0): 89, 62, 53, (42,458,0): 89, 62, 55, (42,459,0): 89, 62, 55, (42,460,0): 87, 62, 55, (42,461,0): 87, 62, 55, (42,462,0): 87, 62, 57, (42,463,0): 87, 62, 57, (42,464,0): 87, 57, 55, (42,465,0): 86, 56, 54, (42,466,0): 85, 55, 53, (42,467,0): 85, 55, 53, (42,468,0): 85, 57, 54, (42,469,0): 87, 59, 56, (42,470,0): 88, 63, 59, (42,471,0): 90, 65, 61, (42,472,0): 90, 65, 61, (42,473,0): 90, 65, 61, (42,474,0): 89, 65, 61, (42,475,0): 89, 65, 61, (42,476,0): 87, 66, 61, (42,477,0): 87, 66, 61, (42,478,0): 87, 66, 61, (42,479,0): 87, 66, 61, (42,480,0): 84, 63, 58, (42,481,0): 84, 63, 58, (42,482,0): 84, 64, 57, (42,483,0): 85, 65, 56, (42,484,0): 90, 67, 59, (42,485,0): 92, 70, 59, (42,486,0): 96, 72, 60, (42,487,0): 97, 73, 61, (42,488,0): 100, 76, 64, (42,489,0): 99, 75, 63, (42,490,0): 101, 74, 65, (42,491,0): 100, 73, 64, (42,492,0): 100, 71, 67, (42,493,0): 99, 70, 66, (42,494,0): 98, 68, 66, (42,495,0): 96, 68, 65, (42,496,0): 92, 64, 61, (42,497,0): 90, 65, 61, (42,498,0): 90, 65, 61, (42,499,0): 90, 65, 61, (42,500,0): 89, 64, 60, (42,501,0): 89, 64, 60, (42,502,0): 89, 64, 60, (42,503,0): 89, 64, 60, (42,504,0): 89, 64, 60, (42,505,0): 89, 64, 60, (42,506,0): 89, 64, 60, (42,507,0): 89, 64, 60, (42,508,0): 88, 63, 59, (42,509,0): 88, 63, 59, (42,510,0): 87, 62, 58, (42,511,0): 87, 62, 58, (42,512,0): 90, 65, 61, (42,513,0): 90, 65, 61, (42,514,0): 90, 65, 61, (42,515,0): 91, 66, 62, (42,516,0): 91, 66, 62, (42,517,0): 92, 67, 63, (42,518,0): 92, 67, 63, (42,519,0): 92, 67, 63, (42,520,0): 90, 65, 61, (42,521,0): 90, 65, 61, (42,522,0): 90, 65, 61, (42,523,0): 90, 65, 61, (42,524,0): 90, 65, 61, (42,525,0): 90, 65, 61, (42,526,0): 90, 65, 61, (42,527,0): 89, 65, 61, (42,528,0): 94, 70, 68, (42,529,0): 92, 71, 68, (42,530,0): 92, 71, 68, (42,531,0): 92, 71, 68, (42,532,0): 91, 70, 69, (42,533,0): 89, 68, 67, (42,534,0): 87, 66, 65, (42,535,0): 86, 65, 64, (42,536,0): 86, 64, 66, (42,537,0): 84, 62, 64, (42,538,0): 81, 59, 62, (42,539,0): 78, 56, 59, (42,540,0): 75, 53, 56, (42,541,0): 73, 51, 54, (42,542,0): 72, 49, 55, (42,543,0): 71, 50, 55, (42,544,0): 70, 49, 54, (42,545,0): 69, 50, 54, (42,546,0): 69, 48, 53, (42,547,0): 69, 48, 53, (42,548,0): 68, 47, 54, (42,549,0): 68, 47, 54, (42,550,0): 68, 45, 55, (42,551,0): 68, 45, 55, (42,552,0): 70, 44, 55, (42,553,0): 70, 44, 55, (42,554,0): 70, 44, 57, (42,555,0): 69, 43, 56, (42,556,0): 70, 42, 56, (42,557,0): 70, 42, 56, (42,558,0): 70, 42, 57, (42,559,0): 68, 42, 53, (42,560,0): 72, 47, 53, (42,561,0): 70, 48, 51, (42,562,0): 71, 49, 52, (42,563,0): 71, 49, 52, (42,564,0): 72, 50, 53, (42,565,0): 73, 51, 54, (42,566,0): 74, 52, 55, (42,567,0): 74, 52, 55, (42,568,0): 75, 53, 56, (42,569,0): 75, 53, 56, (42,570,0): 76, 54, 57, (42,571,0): 76, 54, 57, (42,572,0): 76, 54, 57, (42,573,0): 74, 52, 55, (42,574,0): 73, 51, 54, (42,575,0): 72, 50, 53, (42,576,0): 74, 48, 57, (42,577,0): 71, 45, 54, (42,578,0): 69, 43, 52, (42,579,0): 70, 44, 53, (42,580,0): 70, 47, 53, (42,581,0): 70, 47, 53, (42,582,0): 68, 45, 51, (42,583,0): 66, 43, 49, (42,584,0): 67, 47, 49, (42,585,0): 66, 46, 48, (42,586,0): 66, 46, 47, (42,587,0): 64, 46, 46, (42,588,0): 62, 44, 44, (42,589,0): 61, 43, 43, (42,590,0): 61, 43, 41, (42,591,0): 60, 42, 42, (42,592,0): 60, 39, 44, (42,593,0): 59, 38, 43, (42,594,0): 58, 37, 42, (42,595,0): 58, 38, 40, (42,596,0): 58, 38, 39, (42,597,0): 60, 40, 39, (42,598,0): 61, 41, 40, (42,599,0): 62, 42, 41, (43,0,0): 38, 25, 43, (43,1,0): 38, 25, 43, (43,2,0): 38, 25, 42, (43,3,0): 39, 26, 43, (43,4,0): 40, 27, 44, (43,5,0): 40, 27, 44, (43,6,0): 41, 27, 42, (43,7,0): 42, 28, 43, (43,8,0): 47, 31, 44, (43,9,0): 47, 31, 44, (43,10,0): 49, 31, 45, (43,11,0): 50, 32, 46, (43,12,0): 51, 33, 45, (43,13,0): 52, 34, 46, (43,14,0): 53, 35, 47, (43,15,0): 53, 35, 47, (43,16,0): 53, 35, 47, (43,17,0): 52, 34, 46, (43,18,0): 52, 34, 46, (43,19,0): 52, 34, 46, (43,20,0): 52, 34, 46, (43,21,0): 52, 34, 46, (43,22,0): 52, 34, 46, (43,23,0): 52, 34, 46, (43,24,0): 52, 34, 46, (43,25,0): 52, 34, 46, (43,26,0): 51, 33, 45, (43,27,0): 51, 33, 45, (43,28,0): 50, 32, 44, (43,29,0): 50, 32, 44, (43,30,0): 49, 31, 43, (43,31,0): 49, 31, 43, (43,32,0): 47, 30, 46, (43,33,0): 47, 30, 46, (43,34,0): 47, 30, 46, (43,35,0): 47, 30, 46, (43,36,0): 47, 30, 46, (43,37,0): 47, 30, 46, (43,38,0): 47, 30, 46, (43,39,0): 47, 30, 46, (43,40,0): 45, 28, 44, (43,41,0): 44, 27, 43, (43,42,0): 42, 25, 41, (43,43,0): 41, 24, 40, (43,44,0): 41, 24, 40, (43,45,0): 41, 24, 40, (43,46,0): 42, 25, 41, (43,47,0): 42, 25, 41, (43,48,0): 45, 27, 43, (43,49,0): 45, 27, 43, (43,50,0): 46, 28, 44, (43,51,0): 46, 28, 44, (43,52,0): 47, 29, 45, (43,53,0): 47, 29, 45, (43,54,0): 48, 30, 46, (43,55,0): 48, 30, 46, (43,56,0): 49, 31, 47, (43,57,0): 49, 31, 47, (43,58,0): 48, 30, 46, (43,59,0): 48, 30, 46, (43,60,0): 47, 29, 45, (43,61,0): 47, 29, 45, (43,62,0): 46, 28, 44, (43,63,0): 46, 28, 44, (43,64,0): 43, 26, 42, (43,65,0): 42, 25, 41, (43,66,0): 39, 25, 40, (43,67,0): 37, 23, 38, (43,68,0): 36, 22, 37, (43,69,0): 34, 20, 35, (43,70,0): 32, 19, 36, (43,71,0): 31, 18, 35, (43,72,0): 30, 19, 36, (43,73,0): 29, 18, 35, (43,74,0): 27, 15, 35, (43,75,0): 25, 13, 33, (43,76,0): 22, 13, 32, (43,77,0): 22, 13, 32, (43,78,0): 22, 13, 32, (43,79,0): 23, 14, 33, (43,80,0): 23, 15, 36, (43,81,0): 23, 15, 36, (43,82,0): 24, 16, 37, (43,83,0): 25, 17, 38, (43,84,0): 25, 17, 38, (43,85,0): 25, 17, 38, (43,86,0): 26, 18, 39, (43,87,0): 25, 17, 38, (43,88,0): 24, 16, 37, (43,89,0): 24, 16, 37, (43,90,0): 24, 16, 37, (43,91,0): 24, 16, 37, (43,92,0): 25, 17, 38, (43,93,0): 25, 17, 38, (43,94,0): 25, 17, 38, (43,95,0): 25, 17, 38, (43,96,0): 21, 16, 38, (43,97,0): 22, 17, 39, (43,98,0): 23, 18, 40, (43,99,0): 24, 19, 41, (43,100,0): 24, 19, 41, (43,101,0): 23, 18, 40, (43,102,0): 22, 17, 39, (43,103,0): 21, 16, 38, (43,104,0): 23, 18, 40, (43,105,0): 23, 18, 40, (43,106,0): 23, 18, 40, (43,107,0): 24, 19, 41, (43,108,0): 24, 19, 41, (43,109,0): 25, 20, 42, (43,110,0): 25, 20, 42, (43,111,0): 25, 20, 42, (43,112,0): 26, 21, 43, (43,113,0): 26, 21, 43, (43,114,0): 26, 21, 43, (43,115,0): 26, 21, 43, (43,116,0): 26, 21, 43, (43,117,0): 26, 21, 43, (43,118,0): 26, 21, 43, (43,119,0): 26, 21, 43, (43,120,0): 25, 20, 42, (43,121,0): 25, 20, 42, (43,122,0): 25, 20, 42, (43,123,0): 26, 21, 43, (43,124,0): 26, 21, 43, (43,125,0): 27, 22, 44, (43,126,0): 27, 22, 44, (43,127,0): 27, 22, 44, (43,128,0): 31, 23, 46, (43,129,0): 31, 23, 46, (43,130,0): 31, 23, 46, (43,131,0): 31, 23, 46, (43,132,0): 31, 23, 46, (43,133,0): 31, 23, 46, (43,134,0): 31, 23, 46, (43,135,0): 31, 23, 46, (43,136,0): 32, 24, 47, (43,137,0): 31, 23, 46, (43,138,0): 31, 23, 46, (43,139,0): 30, 22, 45, (43,140,0): 30, 22, 45, (43,141,0): 29, 21, 44, (43,142,0): 29, 21, 44, (43,143,0): 27, 22, 44, (43,144,0): 25, 22, 43, (43,145,0): 24, 22, 43, (43,146,0): 24, 22, 43, (43,147,0): 24, 22, 43, (43,148,0): 24, 22, 43, (43,149,0): 24, 22, 43, (43,150,0): 24, 22, 43, (43,151,0): 24, 22, 43, (43,152,0): 24, 22, 43, (43,153,0): 24, 22, 43, (43,154,0): 24, 22, 43, (43,155,0): 24, 22, 43, (43,156,0): 24, 22, 43, (43,157,0): 24, 22, 43, (43,158,0): 24, 22, 43, (43,159,0): 25, 22, 43, (43,160,0): 30, 25, 47, (43,161,0): 32, 24, 47, (43,162,0): 31, 23, 46, (43,163,0): 31, 23, 46, (43,164,0): 30, 22, 45, (43,165,0): 29, 21, 44, (43,166,0): 28, 20, 43, (43,167,0): 28, 20, 43, (43,168,0): 30, 22, 45, (43,169,0): 31, 23, 46, (43,170,0): 31, 23, 46, (43,171,0): 31, 23, 46, (43,172,0): 32, 24, 47, (43,173,0): 33, 25, 48, (43,174,0): 33, 25, 48, (43,175,0): 33, 25, 48, (43,176,0): 34, 26, 49, (43,177,0): 34, 26, 49, (43,178,0): 34, 26, 49, (43,179,0): 34, 26, 49, (43,180,0): 34, 26, 49, (43,181,0): 34, 26, 49, (43,182,0): 34, 26, 49, (43,183,0): 34, 26, 49, (43,184,0): 32, 24, 47, (43,185,0): 32, 24, 47, (43,186,0): 33, 25, 48, (43,187,0): 33, 25, 48, (43,188,0): 34, 26, 49, (43,189,0): 34, 26, 49, (43,190,0): 35, 27, 50, (43,191,0): 35, 27, 48, (43,192,0): 35, 26, 47, (43,193,0): 35, 26, 45, (43,194,0): 35, 26, 45, (43,195,0): 36, 27, 46, (43,196,0): 38, 26, 46, (43,197,0): 39, 27, 47, (43,198,0): 39, 27, 47, (43,199,0): 39, 27, 47, (43,200,0): 39, 26, 46, (43,201,0): 39, 26, 46, (43,202,0): 41, 26, 47, (43,203,0): 41, 26, 47, (43,204,0): 42, 27, 48, (43,205,0): 42, 27, 48, (43,206,0): 45, 27, 49, (43,207,0): 45, 27, 49, (43,208,0): 45, 28, 47, (43,209,0): 46, 29, 48, (43,210,0): 46, 29, 48, (43,211,0): 47, 30, 49, (43,212,0): 49, 32, 51, (43,213,0): 50, 33, 52, (43,214,0): 50, 33, 52, (43,215,0): 51, 34, 53, (43,216,0): 52, 35, 54, (43,217,0): 52, 35, 54, (43,218,0): 52, 35, 54, (43,219,0): 51, 34, 53, (43,220,0): 50, 33, 52, (43,221,0): 50, 33, 52, (43,222,0): 50, 33, 52, (43,223,0): 49, 32, 51, (43,224,0): 52, 33, 53, (43,225,0): 52, 33, 53, (43,226,0): 51, 32, 52, (43,227,0): 51, 32, 52, (43,228,0): 50, 31, 51, (43,229,0): 50, 31, 51, (43,230,0): 49, 30, 50, (43,231,0): 49, 30, 50, (43,232,0): 48, 29, 49, (43,233,0): 49, 30, 50, (43,234,0): 50, 31, 51, (43,235,0): 52, 33, 53, (43,236,0): 52, 33, 53, (43,237,0): 52, 33, 53, (43,238,0): 51, 32, 52, (43,239,0): 51, 32, 51, (43,240,0): 54, 33, 48, (43,241,0): 54, 34, 46, (43,242,0): 54, 34, 46, (43,243,0): 55, 35, 47, (43,244,0): 56, 34, 47, (43,245,0): 57, 35, 48, (43,246,0): 57, 35, 48, (43,247,0): 58, 36, 49, (43,248,0): 59, 35, 49, (43,249,0): 59, 35, 49, (43,250,0): 61, 34, 49, (43,251,0): 62, 35, 50, (43,252,0): 62, 35, 50, (43,253,0): 63, 36, 51, (43,254,0): 64, 36, 51, (43,255,0): 64, 37, 52, (43,256,0): 63, 37, 50, (43,257,0): 61, 37, 50, (43,258,0): 60, 36, 49, (43,259,0): 60, 36, 49, (43,260,0): 60, 36, 49, (43,261,0): 62, 39, 49, (43,262,0): 65, 39, 50, (43,263,0): 66, 40, 51, (43,264,0): 68, 41, 50, (43,265,0): 69, 42, 51, (43,266,0): 72, 42, 50, (43,267,0): 73, 43, 51, (43,268,0): 75, 45, 53, (43,269,0): 77, 47, 55, (43,270,0): 78, 48, 56, (43,271,0): 78, 48, 56, (43,272,0): 79, 48, 56, (43,273,0): 79, 48, 56, (43,274,0): 80, 47, 54, (43,275,0): 81, 48, 55, (43,276,0): 81, 48, 55, (43,277,0): 82, 49, 56, (43,278,0): 84, 49, 55, (43,279,0): 84, 49, 55, (43,280,0): 88, 52, 56, (43,281,0): 88, 52, 56, (43,282,0): 89, 53, 57, (43,283,0): 90, 54, 58, (43,284,0): 93, 54, 57, (43,285,0): 94, 55, 58, (43,286,0): 95, 56, 59, (43,287,0): 96, 56, 57, (43,288,0): 99, 55, 54, (43,289,0): 101, 57, 54, (43,290,0): 104, 60, 57, (43,291,0): 106, 62, 59, (43,292,0): 109, 66, 60, (43,293,0): 110, 67, 61, (43,294,0): 110, 67, 61, (43,295,0): 110, 67, 60, (43,296,0): 111, 68, 61, (43,297,0): 112, 69, 62, (43,298,0): 112, 69, 60, (43,299,0): 114, 71, 62, (43,300,0): 116, 73, 64, (43,301,0): 119, 76, 67, (43,302,0): 122, 80, 68, (43,303,0): 127, 81, 66, (43,304,0): 137, 85, 63, (43,305,0): 145, 90, 60, (43,306,0): 156, 96, 62, (43,307,0): 167, 105, 66, (43,308,0): 175, 111, 67, (43,309,0): 177, 113, 65, (43,310,0): 177, 114, 63, (43,311,0): 175, 113, 62, (43,312,0): 171, 113, 63, (43,313,0): 168, 115, 65, (43,314,0): 165, 114, 67, (43,315,0): 163, 115, 69, (43,316,0): 163, 114, 71, (43,317,0): 164, 113, 68, (43,318,0): 165, 112, 68, (43,319,0): 165, 112, 68, (43,320,0): 162, 111, 66, (43,321,0): 158, 110, 64, (43,322,0): 156, 107, 64, (43,323,0): 151, 107, 62, (43,324,0): 148, 105, 60, (43,325,0): 146, 105, 59, (43,326,0): 144, 106, 61, (43,327,0): 142, 108, 62, (43,328,0): 142, 109, 64, (43,329,0): 142, 109, 64, (43,330,0): 141, 108, 63, (43,331,0): 141, 108, 63, (43,332,0): 141, 106, 64, (43,333,0): 141, 106, 64, (43,334,0): 142, 105, 63, (43,335,0): 142, 105, 63, (43,336,0): 143, 108, 68, (43,337,0): 142, 107, 67, (43,338,0): 142, 107, 69, (43,339,0): 140, 105, 67, (43,340,0): 139, 104, 66, (43,341,0): 138, 103, 65, (43,342,0): 138, 102, 66, (43,343,0): 137, 101, 65, (43,344,0): 135, 99, 65, (43,345,0): 136, 100, 66, (43,346,0): 137, 101, 67, (43,347,0): 138, 102, 68, (43,348,0): 139, 103, 71, (43,349,0): 139, 103, 71, (43,350,0): 138, 102, 70, (43,351,0): 137, 101, 69, (43,352,0): 141, 104, 75, (43,353,0): 141, 104, 75, (43,354,0): 141, 104, 75, (43,355,0): 141, 104, 75, (43,356,0): 140, 103, 74, (43,357,0): 140, 103, 74, (43,358,0): 140, 103, 76, (43,359,0): 140, 103, 76, (43,360,0): 137, 100, 74, (43,361,0): 137, 100, 74, (43,362,0): 137, 99, 76, (43,363,0): 137, 99, 76, (43,364,0): 137, 99, 76, (43,365,0): 137, 99, 76, (43,366,0): 137, 99, 76, (43,367,0): 137, 100, 74, (43,368,0): 144, 102, 78, (43,369,0): 144, 102, 77, (43,370,0): 144, 102, 78, (43,371,0): 144, 102, 78, (43,372,0): 144, 102, 78, (43,373,0): 144, 102, 78, (43,374,0): 144, 102, 80, (43,375,0): 144, 102, 80, (43,376,0): 145, 102, 83, (43,377,0): 144, 101, 82, (43,378,0): 144, 101, 82, (43,379,0): 143, 100, 81, (43,380,0): 144, 101, 84, (43,381,0): 145, 102, 85, (43,382,0): 147, 104, 87, (43,383,0): 148, 105, 88, (43,384,0): 147, 106, 86, (43,385,0): 147, 106, 86, (43,386,0): 148, 105, 86, (43,387,0): 149, 106, 87, (43,388,0): 151, 106, 85, (43,389,0): 152, 107, 86, (43,390,0): 153, 107, 84, (43,391,0): 154, 108, 85, (43,392,0): 158, 107, 86, (43,393,0): 158, 108, 85, (43,394,0): 160, 108, 86, (43,395,0): 161, 109, 87, (43,396,0): 164, 110, 86, (43,397,0): 165, 111, 87, (43,398,0): 167, 111, 88, (43,399,0): 168, 110, 86, (43,400,0): 173, 113, 87, (43,401,0): 174, 112, 87, (43,402,0): 175, 113, 88, (43,403,0): 176, 115, 87, (43,404,0): 178, 114, 87, (43,405,0): 179, 115, 87, (43,406,0): 179, 116, 85, (43,407,0): 180, 117, 84, (43,408,0): 181, 116, 84, (43,409,0): 182, 118, 83, (43,410,0): 186, 120, 85, (43,411,0): 188, 123, 85, (43,412,0): 190, 125, 87, (43,413,0): 190, 125, 87, (43,414,0): 192, 124, 87, (43,415,0): 192, 124, 85, (43,416,0): 191, 126, 86, (43,417,0): 190, 127, 84, (43,418,0): 190, 127, 83, (43,419,0): 190, 127, 83, (43,420,0): 189, 127, 80, (43,421,0): 189, 127, 80, (43,422,0): 188, 127, 80, (43,423,0): 185, 129, 80, (43,424,0): 180, 126, 80, (43,425,0): 172, 121, 78, (43,426,0): 161, 113, 75, (43,427,0): 149, 105, 70, (43,428,0): 138, 97, 69, (43,429,0): 130, 90, 65, (43,430,0): 121, 83, 60, (43,431,0): 114, 79, 59, (43,432,0): 104, 75, 59, (43,433,0): 100, 72, 58, (43,434,0): 97, 69, 55, (43,435,0): 93, 65, 51, (43,436,0): 92, 64, 50, (43,437,0): 93, 65, 51, (43,438,0): 95, 67, 53, (43,439,0): 96, 68, 54, (43,440,0): 96, 68, 54, (43,441,0): 96, 68, 54, (43,442,0): 97, 69, 55, (43,443,0): 98, 70, 56, (43,444,0): 100, 72, 58, (43,445,0): 101, 73, 59, (43,446,0): 102, 74, 60, (43,447,0): 102, 74, 60, (43,448,0): 103, 71, 60, (43,449,0): 103, 71, 60, (43,450,0): 100, 70, 59, (43,451,0): 98, 68, 57, (43,452,0): 96, 66, 56, (43,453,0): 94, 64, 54, (43,454,0): 92, 64, 53, (43,455,0): 91, 63, 52, (43,456,0): 90, 63, 54, (43,457,0): 90, 63, 54, (43,458,0): 90, 63, 56, (43,459,0): 89, 62, 55, (43,460,0): 87, 62, 55, (43,461,0): 87, 62, 55, (43,462,0): 86, 61, 56, (43,463,0): 86, 61, 56, (43,464,0): 86, 56, 54, (43,465,0): 86, 56, 54, (43,466,0): 85, 55, 53, (43,467,0): 85, 55, 53, (43,468,0): 85, 57, 54, (43,469,0): 87, 59, 56, (43,470,0): 87, 62, 58, (43,471,0): 89, 64, 60, (43,472,0): 89, 64, 60, (43,473,0): 89, 64, 60, (43,474,0): 88, 64, 60, (43,475,0): 88, 64, 60, (43,476,0): 86, 65, 60, (43,477,0): 86, 65, 60, (43,478,0): 86, 65, 60, (43,479,0): 86, 65, 60, (43,480,0): 83, 62, 57, (43,481,0): 83, 62, 57, (43,482,0): 83, 63, 56, (43,483,0): 84, 64, 55, (43,484,0): 88, 65, 57, (43,485,0): 91, 69, 58, (43,486,0): 94, 70, 58, (43,487,0): 95, 71, 59, (43,488,0): 100, 76, 64, (43,489,0): 99, 75, 63, (43,490,0): 100, 73, 64, (43,491,0): 99, 72, 63, (43,492,0): 99, 70, 66, (43,493,0): 98, 69, 65, (43,494,0): 97, 67, 65, (43,495,0): 96, 68, 65, (43,496,0): 93, 65, 62, (43,497,0): 91, 66, 62, (43,498,0): 90, 65, 61, (43,499,0): 90, 65, 61, (43,500,0): 89, 64, 60, (43,501,0): 88, 63, 59, (43,502,0): 88, 63, 59, (43,503,0): 87, 62, 58, (43,504,0): 88, 63, 59, (43,505,0): 88, 63, 59, (43,506,0): 88, 63, 59, (43,507,0): 88, 63, 59, (43,508,0): 88, 63, 59, (43,509,0): 88, 63, 59, (43,510,0): 87, 62, 58, (43,511,0): 87, 62, 58, (43,512,0): 90, 65, 61, (43,513,0): 91, 66, 62, (43,514,0): 91, 66, 62, (43,515,0): 92, 67, 63, (43,516,0): 92, 67, 63, (43,517,0): 93, 68, 64, (43,518,0): 93, 68, 64, (43,519,0): 93, 68, 64, (43,520,0): 91, 66, 62, (43,521,0): 91, 66, 62, (43,522,0): 91, 66, 62, (43,523,0): 91, 66, 62, (43,524,0): 91, 66, 62, (43,525,0): 91, 66, 62, (43,526,0): 91, 66, 62, (43,527,0): 90, 66, 62, (43,528,0): 94, 70, 68, (43,529,0): 92, 71, 68, (43,530,0): 93, 72, 69, (43,531,0): 92, 71, 68, (43,532,0): 91, 70, 69, (43,533,0): 90, 69, 68, (43,534,0): 88, 67, 66, (43,535,0): 87, 66, 65, (43,536,0): 86, 64, 66, (43,537,0): 84, 62, 64, (43,538,0): 82, 60, 63, (43,539,0): 80, 58, 61, (43,540,0): 78, 56, 59, (43,541,0): 76, 54, 57, (43,542,0): 74, 51, 57, (43,543,0): 73, 52, 57, (43,544,0): 71, 50, 55, (43,545,0): 70, 51, 55, (43,546,0): 70, 49, 54, (43,547,0): 70, 49, 54, (43,548,0): 69, 48, 55, (43,549,0): 69, 48, 55, (43,550,0): 69, 46, 56, (43,551,0): 69, 46, 56, (43,552,0): 72, 46, 57, (43,553,0): 71, 45, 56, (43,554,0): 71, 45, 58, (43,555,0): 70, 44, 57, (43,556,0): 70, 42, 57, (43,557,0): 70, 42, 57, (43,558,0): 69, 41, 56, (43,559,0): 68, 42, 55, (43,560,0): 70, 45, 51, (43,561,0): 68, 46, 49, (43,562,0): 69, 47, 50, (43,563,0): 71, 49, 52, (43,564,0): 72, 50, 53, (43,565,0): 73, 51, 54, (43,566,0): 74, 52, 55, (43,567,0): 75, 53, 56, (43,568,0): 75, 53, 56, (43,569,0): 76, 54, 57, (43,570,0): 77, 55, 58, (43,571,0): 77, 55, 58, (43,572,0): 76, 54, 57, (43,573,0): 75, 53, 56, (43,574,0): 74, 52, 55, (43,575,0): 73, 51, 54, (43,576,0): 74, 48, 57, (43,577,0): 72, 46, 55, (43,578,0): 70, 44, 53, (43,579,0): 70, 44, 53, (43,580,0): 70, 47, 53, (43,581,0): 71, 48, 54, (43,582,0): 68, 45, 51, (43,583,0): 65, 44, 49, (43,584,0): 67, 47, 49, (43,585,0): 65, 46, 48, (43,586,0): 65, 47, 47, (43,587,0): 64, 46, 46, (43,588,0): 62, 44, 44, (43,589,0): 59, 43, 43, (43,590,0): 59, 44, 41, (43,591,0): 58, 42, 42, (43,592,0): 59, 40, 44, (43,593,0): 60, 39, 46, (43,594,0): 59, 38, 43, (43,595,0): 58, 38, 40, (43,596,0): 58, 38, 40, (43,597,0): 59, 39, 40, (43,598,0): 60, 40, 39, (43,599,0): 61, 41, 40, (44,0,0): 37, 24, 42, (44,1,0): 38, 25, 43, (44,2,0): 38, 25, 42, (44,3,0): 38, 25, 42, (44,4,0): 39, 26, 43, (44,5,0): 40, 27, 44, (44,6,0): 41, 27, 42, (44,7,0): 41, 27, 42, (44,8,0): 46, 30, 43, (44,9,0): 47, 31, 44, (44,10,0): 48, 30, 44, (44,11,0): 49, 31, 45, (44,12,0): 51, 33, 45, (44,13,0): 52, 34, 46, (44,14,0): 52, 34, 46, (44,15,0): 53, 35, 47, (44,16,0): 51, 33, 45, (44,17,0): 51, 33, 45, (44,18,0): 51, 33, 45, (44,19,0): 51, 33, 45, (44,20,0): 52, 34, 46, (44,21,0): 52, 34, 46, (44,22,0): 52, 34, 46, (44,23,0): 52, 34, 46, (44,24,0): 52, 34, 46, (44,25,0): 52, 34, 46, (44,26,0): 51, 33, 45, (44,27,0): 51, 33, 45, (44,28,0): 50, 32, 44, (44,29,0): 50, 32, 44, (44,30,0): 49, 31, 43, (44,31,0): 49, 31, 43, (44,32,0): 47, 30, 46, (44,33,0): 47, 30, 46, (44,34,0): 47, 30, 46, (44,35,0): 47, 30, 46, (44,36,0): 47, 30, 46, (44,37,0): 47, 30, 46, (44,38,0): 47, 30, 46, (44,39,0): 47, 30, 46, (44,40,0): 45, 28, 44, (44,41,0): 44, 27, 43, (44,42,0): 42, 25, 41, (44,43,0): 41, 24, 40, (44,44,0): 41, 24, 40, (44,45,0): 41, 24, 40, (44,46,0): 42, 25, 41, (44,47,0): 42, 25, 41, (44,48,0): 44, 26, 42, (44,49,0): 44, 26, 42, (44,50,0): 45, 27, 43, (44,51,0): 45, 27, 43, (44,52,0): 46, 28, 44, (44,53,0): 46, 28, 44, (44,54,0): 47, 29, 45, (44,55,0): 47, 29, 45, (44,56,0): 49, 31, 47, (44,57,0): 49, 31, 47, (44,58,0): 48, 30, 46, (44,59,0): 48, 30, 46, (44,60,0): 47, 29, 45, (44,61,0): 47, 29, 45, (44,62,0): 46, 28, 44, (44,63,0): 46, 28, 44, (44,64,0): 43, 26, 42, (44,65,0): 43, 26, 42, (44,66,0): 40, 26, 41, (44,67,0): 38, 24, 39, (44,68,0): 37, 23, 38, (44,69,0): 35, 21, 36, (44,70,0): 33, 20, 37, (44,71,0): 33, 20, 37, (44,72,0): 30, 19, 36, (44,73,0): 29, 18, 35, (44,74,0): 27, 15, 35, (44,75,0): 25, 13, 33, (44,76,0): 22, 13, 32, (44,77,0): 22, 13, 32, (44,78,0): 22, 13, 32, (44,79,0): 23, 14, 33, (44,80,0): 24, 16, 37, (44,81,0): 23, 15, 38, (44,82,0): 24, 16, 39, (44,83,0): 24, 16, 39, (44,84,0): 24, 16, 39, (44,85,0): 25, 17, 40, (44,86,0): 26, 18, 41, (44,87,0): 26, 18, 41, (44,88,0): 25, 17, 40, (44,89,0): 25, 17, 40, (44,90,0): 25, 17, 40, (44,91,0): 25, 17, 40, (44,92,0): 24, 16, 39, (44,93,0): 24, 16, 39, (44,94,0): 24, 16, 39, (44,95,0): 24, 16, 39, (44,96,0): 22, 17, 39, (44,97,0): 21, 18, 39, (44,98,0): 23, 20, 41, (44,99,0): 23, 20, 41, (44,100,0): 23, 20, 41, (44,101,0): 23, 20, 41, (44,102,0): 21, 18, 39, (44,103,0): 21, 18, 39, (44,104,0): 22, 19, 40, (44,105,0): 22, 19, 40, (44,106,0): 23, 20, 41, (44,107,0): 23, 20, 41, (44,108,0): 24, 21, 42, (44,109,0): 24, 21, 42, (44,110,0): 25, 22, 43, (44,111,0): 25, 22, 43, (44,112,0): 25, 22, 43, (44,113,0): 25, 22, 43, (44,114,0): 25, 22, 43, (44,115,0): 25, 22, 43, (44,116,0): 25, 22, 43, (44,117,0): 25, 22, 43, (44,118,0): 25, 22, 43, (44,119,0): 25, 22, 43, (44,120,0): 23, 20, 41, (44,121,0): 23, 20, 41, (44,122,0): 24, 21, 42, (44,123,0): 24, 21, 42, (44,124,0): 25, 22, 43, (44,125,0): 25, 22, 43, (44,126,0): 26, 23, 44, (44,127,0): 27, 22, 44, (44,128,0): 31, 23, 46, (44,129,0): 31, 23, 46, (44,130,0): 31, 23, 46, (44,131,0): 31, 23, 46, (44,132,0): 31, 23, 46, (44,133,0): 31, 23, 46, (44,134,0): 31, 23, 46, (44,135,0): 31, 23, 46, (44,136,0): 32, 24, 47, (44,137,0): 32, 24, 47, (44,138,0): 32, 24, 47, (44,139,0): 31, 23, 46, (44,140,0): 31, 23, 46, (44,141,0): 30, 22, 45, (44,142,0): 30, 22, 45, (44,143,0): 27, 22, 44, (44,144,0): 24, 22, 43, (44,145,0): 22, 23, 43, (44,146,0): 22, 23, 43, (44,147,0): 22, 23, 43, (44,148,0): 22, 23, 43, (44,149,0): 22, 23, 43, (44,150,0): 22, 23, 43, (44,151,0): 22, 23, 43, (44,152,0): 22, 23, 43, (44,153,0): 22, 23, 43, (44,154,0): 22, 23, 43, (44,155,0): 22, 23, 43, (44,156,0): 22, 23, 43, (44,157,0): 22, 23, 43, (44,158,0): 22, 23, 43, (44,159,0): 24, 22, 43, (44,160,0): 31, 26, 48, (44,161,0): 33, 25, 48, (44,162,0): 32, 24, 47, (44,163,0): 31, 23, 46, (44,164,0): 30, 22, 45, (44,165,0): 30, 22, 45, (44,166,0): 29, 21, 44, (44,167,0): 29, 21, 44, (44,168,0): 31, 23, 46, (44,169,0): 31, 23, 46, (44,170,0): 31, 23, 46, (44,171,0): 32, 24, 47, (44,172,0): 33, 25, 48, (44,173,0): 33, 25, 48, (44,174,0): 33, 25, 48, (44,175,0): 34, 26, 49, (44,176,0): 34, 26, 49, (44,177,0): 34, 26, 49, (44,178,0): 34, 26, 49, (44,179,0): 34, 26, 49, (44,180,0): 34, 26, 49, (44,181,0): 34, 26, 49, (44,182,0): 34, 26, 49, (44,183,0): 34, 26, 49, (44,184,0): 32, 24, 47, (44,185,0): 32, 24, 47, (44,186,0): 33, 25, 48, (44,187,0): 33, 25, 48, (44,188,0): 34, 26, 49, (44,189,0): 34, 26, 49, (44,190,0): 35, 27, 50, (44,191,0): 35, 27, 48, (44,192,0): 35, 26, 47, (44,193,0): 35, 26, 45, (44,194,0): 35, 26, 45, (44,195,0): 36, 27, 46, (44,196,0): 38, 26, 46, (44,197,0): 39, 27, 47, (44,198,0): 39, 27, 47, (44,199,0): 39, 27, 47, (44,200,0): 39, 26, 46, (44,201,0): 39, 26, 46, (44,202,0): 41, 26, 47, (44,203,0): 41, 26, 47, (44,204,0): 42, 27, 48, (44,205,0): 42, 27, 48, (44,206,0): 45, 27, 49, (44,207,0): 45, 27, 49, (44,208,0): 45, 28, 47, (44,209,0): 46, 29, 48, (44,210,0): 46, 29, 48, (44,211,0): 47, 30, 49, (44,212,0): 49, 32, 51, (44,213,0): 50, 33, 52, (44,214,0): 50, 33, 52, (44,215,0): 51, 34, 53, (44,216,0): 53, 36, 55, (44,217,0): 52, 35, 54, (44,218,0): 52, 35, 54, (44,219,0): 52, 35, 54, (44,220,0): 51, 34, 53, (44,221,0): 50, 33, 52, (44,222,0): 50, 33, 52, (44,223,0): 50, 33, 52, (44,224,0): 52, 33, 53, (44,225,0): 52, 33, 53, (44,226,0): 51, 32, 52, (44,227,0): 51, 32, 52, (44,228,0): 50, 31, 51, (44,229,0): 50, 31, 51, (44,230,0): 49, 30, 50, (44,231,0): 49, 30, 50, (44,232,0): 48, 29, 49, (44,233,0): 49, 30, 50, (44,234,0): 50, 31, 51, (44,235,0): 52, 33, 53, (44,236,0): 52, 33, 53, (44,237,0): 52, 33, 53, (44,238,0): 51, 32, 52, (44,239,0): 51, 32, 51, (44,240,0): 54, 33, 48, (44,241,0): 55, 35, 47, (44,242,0): 56, 34, 47, (44,243,0): 57, 35, 48, (44,244,0): 57, 35, 48, (44,245,0): 58, 36, 49, (44,246,0): 59, 35, 49, (44,247,0): 59, 35, 49, (44,248,0): 61, 34, 49, (44,249,0): 62, 35, 50, (44,250,0): 62, 35, 50, (44,251,0): 63, 36, 51, (44,252,0): 64, 36, 51, (44,253,0): 65, 37, 52, (44,254,0): 65, 37, 52, (44,255,0): 64, 37, 52, (44,256,0): 64, 38, 51, (44,257,0): 62, 38, 51, (44,258,0): 61, 37, 50, (44,259,0): 61, 37, 50, (44,260,0): 64, 38, 49, (44,261,0): 65, 39, 50, (44,262,0): 67, 39, 51, (44,263,0): 68, 41, 50, (44,264,0): 69, 42, 51, (44,265,0): 69, 42, 51, (44,266,0): 72, 42, 50, (44,267,0): 74, 44, 52, (44,268,0): 77, 46, 52, (44,269,0): 78, 47, 53, (44,270,0): 79, 48, 54, (44,271,0): 80, 49, 55, (44,272,0): 80, 47, 56, (44,273,0): 80, 47, 56, (44,274,0): 80, 47, 54, (44,275,0): 81, 48, 55, (44,276,0): 83, 48, 55, (44,277,0): 84, 49, 56, (44,278,0): 84, 49, 55, (44,279,0): 84, 49, 55, (44,280,0): 87, 51, 55, (44,281,0): 87, 51, 55, (44,282,0): 90, 51, 56, (44,283,0): 91, 52, 57, (44,284,0): 92, 53, 56, (44,285,0): 93, 54, 57, (44,286,0): 95, 54, 58, (44,287,0): 95, 55, 56, (44,288,0): 100, 56, 55, (44,289,0): 103, 58, 55, (44,290,0): 105, 60, 55, (44,291,0): 108, 63, 58, (44,292,0): 110, 65, 60, (44,293,0): 111, 66, 61, (44,294,0): 112, 67, 61, (44,295,0): 112, 67, 61, (44,296,0): 112, 67, 61, (44,297,0): 113, 69, 60, (44,298,0): 114, 70, 61, (44,299,0): 116, 72, 63, (44,300,0): 119, 75, 64, (44,301,0): 123, 79, 68, (44,302,0): 126, 82, 71, (44,303,0): 131, 84, 68, (44,304,0): 142, 88, 64, (44,305,0): 150, 94, 61, (44,306,0): 164, 101, 66, (44,307,0): 173, 110, 69, (44,308,0): 181, 114, 69, (44,309,0): 182, 116, 66, (44,310,0): 182, 116, 64, (44,311,0): 178, 117, 63, (44,312,0): 174, 116, 66, (44,313,0): 171, 118, 68, (44,314,0): 169, 117, 70, (44,315,0): 167, 116, 69, (44,316,0): 167, 116, 71, (44,317,0): 166, 115, 70, (44,318,0): 167, 114, 70, (44,319,0): 166, 114, 67, (44,320,0): 163, 112, 67, (44,321,0): 160, 112, 66, (44,322,0): 158, 110, 64, (44,323,0): 153, 109, 62, (44,324,0): 150, 107, 62, (44,325,0): 146, 108, 61, (44,326,0): 145, 109, 61, (44,327,0): 143, 109, 61, (44,328,0): 143, 111, 64, (44,329,0): 143, 111, 64, (44,330,0): 142, 109, 64, (44,331,0): 142, 109, 64, (44,332,0): 141, 108, 63, (44,333,0): 141, 108, 63, (44,334,0): 141, 106, 64, (44,335,0): 141, 106, 64, (44,336,0): 144, 109, 69, (44,337,0): 143, 108, 68, (44,338,0): 143, 108, 68, (44,339,0): 142, 107, 67, (44,340,0): 141, 106, 68, (44,341,0): 139, 104, 66, (44,342,0): 139, 104, 66, (44,343,0): 138, 103, 65, (44,344,0): 135, 99, 63, (44,345,0): 136, 100, 64, (44,346,0): 138, 102, 68, (44,347,0): 139, 103, 69, (44,348,0): 139, 103, 69, (44,349,0): 139, 103, 69, (44,350,0): 138, 102, 70, (44,351,0): 138, 102, 70, (44,352,0): 140, 103, 74, (44,353,0): 140, 103, 74, (44,354,0): 140, 103, 74, (44,355,0): 140, 103, 74, (44,356,0): 141, 104, 75, (44,357,0): 141, 104, 75, (44,358,0): 141, 104, 77, (44,359,0): 141, 104, 77, (44,360,0): 138, 101, 75, (44,361,0): 138, 101, 75, (44,362,0): 138, 100, 77, (44,363,0): 138, 100, 77, (44,364,0): 138, 100, 77, (44,365,0): 138, 100, 77, (44,366,0): 138, 100, 77, (44,367,0): 138, 101, 75, (44,368,0): 144, 102, 78, (44,369,0): 144, 102, 77, (44,370,0): 144, 102, 78, (44,371,0): 144, 102, 78, (44,372,0): 144, 102, 78, (44,373,0): 144, 102, 78, (44,374,0): 144, 102, 80, (44,375,0): 144, 102, 80, (44,376,0): 145, 102, 83, (44,377,0): 144, 101, 82, (44,378,0): 144, 101, 82, (44,379,0): 143, 100, 81, (44,380,0): 144, 101, 84, (44,381,0): 145, 102, 85, (44,382,0): 147, 104, 87, (44,383,0): 148, 105, 88, (44,384,0): 147, 106, 86, (44,385,0): 148, 107, 85, (44,386,0): 149, 107, 85, (44,387,0): 150, 108, 86, (44,388,0): 152, 107, 86, (44,389,0): 153, 108, 87, (44,390,0): 154, 108, 85, (44,391,0): 154, 108, 85, (44,392,0): 160, 110, 87, (44,393,0): 160, 110, 87, (44,394,0): 162, 110, 88, (44,395,0): 163, 111, 87, (44,396,0): 166, 112, 88, (44,397,0): 167, 113, 89, (44,398,0): 169, 113, 90, (44,399,0): 170, 112, 88, (44,400,0): 177, 115, 90, (44,401,0): 179, 115, 88, (44,402,0): 180, 116, 89, (44,403,0): 180, 116, 89, (44,404,0): 181, 115, 89, (44,405,0): 182, 117, 89, (44,406,0): 182, 117, 87, (44,407,0): 182, 117, 85, (44,408,0): 183, 117, 85, (44,409,0): 185, 119, 85, (44,410,0): 190, 122, 87, (44,411,0): 193, 125, 88, (44,412,0): 195, 127, 90, (44,413,0): 195, 127, 88, (44,414,0): 195, 126, 87, (44,415,0): 193, 125, 86, (44,416,0): 189, 124, 84, (44,417,0): 189, 124, 82, (44,418,0): 190, 126, 82, (44,419,0): 190, 126, 82, (44,420,0): 190, 126, 80, (44,421,0): 189, 127, 78, (44,422,0): 188, 128, 78, (44,423,0): 186, 128, 80, (44,424,0): 185, 128, 83, (44,425,0): 176, 123, 81, (44,426,0): 164, 114, 77, (44,427,0): 154, 108, 74, (44,428,0): 145, 101, 74, (44,429,0): 135, 95, 70, (44,430,0): 124, 86, 65, (44,431,0): 116, 81, 62, (44,432,0): 105, 76, 58, (44,433,0): 101, 74, 57, (44,434,0): 97, 70, 53, (44,435,0): 93, 66, 49, (44,436,0): 92, 65, 48, (44,437,0): 94, 67, 50, (44,438,0): 97, 70, 53, (44,439,0): 99, 72, 55, (44,440,0): 98, 71, 54, (44,441,0): 99, 72, 55, (44,442,0): 99, 72, 55, (44,443,0): 100, 73, 56, (44,444,0): 101, 74, 57, (44,445,0): 102, 75, 58, (44,446,0): 103, 76, 59, (44,447,0): 103, 76, 59, (44,448,0): 105, 73, 60, (44,449,0): 104, 72, 59, (44,450,0): 100, 70, 59, (44,451,0): 99, 69, 58, (44,452,0): 97, 67, 56, (44,453,0): 96, 66, 55, (44,454,0): 95, 67, 56, (44,455,0): 94, 66, 55, (44,456,0): 92, 65, 56, (44,457,0): 91, 64, 55, (44,458,0): 91, 64, 55, (44,459,0): 90, 63, 54, (44,460,0): 87, 62, 55, (44,461,0): 87, 62, 55, (44,462,0): 86, 61, 54, (44,463,0): 86, 61, 56, (44,464,0): 86, 56, 54, (44,465,0): 86, 56, 54, (44,466,0): 86, 56, 54, (44,467,0): 87, 57, 55, (44,468,0): 87, 59, 56, (44,469,0): 88, 60, 57, (44,470,0): 88, 63, 59, (44,471,0): 89, 64, 60, (44,472,0): 89, 64, 60, (44,473,0): 89, 64, 60, (44,474,0): 88, 64, 60, (44,475,0): 88, 64, 60, (44,476,0): 86, 65, 60, (44,477,0): 86, 65, 60, (44,478,0): 86, 65, 60, (44,479,0): 86, 65, 60, (44,480,0): 83, 62, 57, (44,481,0): 83, 62, 57, (44,482,0): 83, 63, 56, (44,483,0): 84, 64, 55, (44,484,0): 87, 64, 56, (44,485,0): 89, 67, 56, (44,486,0): 93, 69, 57, (44,487,0): 94, 70, 58, (44,488,0): 99, 75, 63, (44,489,0): 98, 74, 62, (44,490,0): 99, 72, 63, (44,491,0): 98, 71, 62, (44,492,0): 98, 69, 65, (44,493,0): 97, 68, 64, (44,494,0): 96, 66, 64, (44,495,0): 95, 67, 64, (44,496,0): 92, 64, 61, (44,497,0): 90, 65, 61, (44,498,0): 89, 64, 60, (44,499,0): 89, 64, 60, (44,500,0): 88, 63, 59, (44,501,0): 87, 62, 58, (44,502,0): 87, 62, 58, (44,503,0): 86, 61, 57, (44,504,0): 87, 62, 58, (44,505,0): 87, 62, 58, (44,506,0): 87, 62, 58, (44,507,0): 87, 62, 58, (44,508,0): 87, 62, 58, (44,509,0): 87, 62, 58, (44,510,0): 88, 63, 59, (44,511,0): 88, 63, 59, (44,512,0): 90, 65, 61, (44,513,0): 91, 66, 62, (44,514,0): 91, 66, 62, (44,515,0): 92, 67, 63, (44,516,0): 92, 67, 63, (44,517,0): 93, 68, 64, (44,518,0): 93, 68, 64, (44,519,0): 93, 68, 64, (44,520,0): 93, 68, 64, (44,521,0): 93, 68, 64, (44,522,0): 93, 68, 64, (44,523,0): 93, 68, 64, (44,524,0): 93, 68, 64, (44,525,0): 93, 68, 64, (44,526,0): 93, 68, 64, (44,527,0): 92, 68, 64, (44,528,0): 93, 69, 67, (44,529,0): 92, 71, 68, (44,530,0): 92, 71, 68, (44,531,0): 92, 71, 68, (44,532,0): 91, 70, 69, (44,533,0): 89, 68, 67, (44,534,0): 87, 66, 65, (44,535,0): 86, 65, 64, (44,536,0): 86, 64, 66, (44,537,0): 85, 63, 65, (44,538,0): 84, 62, 65, (44,539,0): 82, 60, 63, (44,540,0): 80, 58, 61, (44,541,0): 78, 56, 59, (44,542,0): 76, 53, 59, (44,543,0): 74, 53, 58, (44,544,0): 72, 51, 56, (44,545,0): 71, 52, 56, (44,546,0): 71, 50, 55, (44,547,0): 71, 50, 55, (44,548,0): 70, 49, 56, (44,549,0): 70, 49, 56, (44,550,0): 70, 47, 57, (44,551,0): 70, 47, 57, (44,552,0): 72, 46, 59, (44,553,0): 72, 46, 59, (44,554,0): 71, 44, 59, (44,555,0): 71, 44, 59, (44,556,0): 71, 42, 60, (44,557,0): 70, 41, 59, (44,558,0): 70, 41, 59, (44,559,0): 68, 42, 55, (44,560,0): 69, 44, 50, (44,561,0): 68, 46, 49, (44,562,0): 69, 47, 50, (44,563,0): 70, 48, 51, (44,564,0): 71, 49, 52, (44,565,0): 73, 51, 54, (44,566,0): 74, 52, 55, (44,567,0): 74, 52, 55, (44,568,0): 75, 53, 56, (44,569,0): 76, 54, 57, (44,570,0): 77, 55, 58, (44,571,0): 77, 55, 58, (44,572,0): 76, 54, 57, (44,573,0): 75, 53, 56, (44,574,0): 74, 52, 55, (44,575,0): 73, 51, 54, (44,576,0): 75, 49, 58, (44,577,0): 74, 47, 56, (44,578,0): 70, 44, 53, (44,579,0): 71, 45, 54, (44,580,0): 71, 48, 54, (44,581,0): 71, 48, 54, (44,582,0): 68, 47, 52, (44,583,0): 66, 45, 50, (44,584,0): 67, 47, 49, (44,585,0): 65, 46, 48, (44,586,0): 65, 47, 47, (44,587,0): 62, 46, 46, (44,588,0): 60, 44, 44, (44,589,0): 58, 44, 43, (44,590,0): 58, 44, 41, (44,591,0): 58, 42, 42, (44,592,0): 60, 41, 45, (44,593,0): 60, 39, 46, (44,594,0): 59, 38, 43, (44,595,0): 58, 38, 40, (44,596,0): 58, 38, 40, (44,597,0): 59, 39, 40, (44,598,0): 60, 40, 39, (44,599,0): 60, 40, 39, (45,0,0): 37, 24, 42, (45,1,0): 37, 24, 42, (45,2,0): 37, 24, 41, (45,3,0): 38, 25, 42, (45,4,0): 38, 25, 42, (45,5,0): 39, 26, 43, (45,6,0): 40, 26, 41, (45,7,0): 41, 27, 42, (45,8,0): 45, 29, 42, (45,9,0): 45, 29, 42, (45,10,0): 47, 29, 43, (45,11,0): 48, 30, 44, (45,12,0): 49, 31, 43, (45,13,0): 50, 32, 44, (45,14,0): 51, 33, 45, (45,15,0): 52, 34, 46, (45,16,0): 49, 31, 43, (45,17,0): 49, 31, 43, (45,18,0): 50, 32, 44, (45,19,0): 50, 32, 44, (45,20,0): 50, 32, 44, (45,21,0): 51, 33, 45, (45,22,0): 51, 33, 45, (45,23,0): 51, 33, 45, (45,24,0): 52, 34, 46, (45,25,0): 52, 34, 46, (45,26,0): 51, 33, 45, (45,27,0): 51, 33, 45, (45,28,0): 50, 32, 44, (45,29,0): 50, 32, 44, (45,30,0): 49, 31, 43, (45,31,0): 49, 31, 43, (45,32,0): 47, 30, 46, (45,33,0): 47, 30, 46, (45,34,0): 47, 30, 46, (45,35,0): 47, 30, 46, (45,36,0): 47, 30, 46, (45,37,0): 47, 30, 46, (45,38,0): 47, 30, 46, (45,39,0): 47, 30, 46, (45,40,0): 46, 29, 45, (45,41,0): 45, 28, 44, (45,42,0): 43, 26, 42, (45,43,0): 42, 25, 41, (45,44,0): 41, 24, 40, (45,45,0): 42, 25, 41, (45,46,0): 42, 25, 41, (45,47,0): 43, 26, 42, (45,48,0): 43, 25, 41, (45,49,0): 43, 25, 41, (45,50,0): 44, 26, 42, (45,51,0): 44, 26, 42, (45,52,0): 45, 27, 43, (45,53,0): 45, 27, 43, (45,54,0): 46, 28, 44, (45,55,0): 46, 28, 44, (45,56,0): 49, 31, 47, (45,57,0): 49, 31, 47, (45,58,0): 48, 30, 46, (45,59,0): 48, 30, 46, (45,60,0): 47, 29, 45, (45,61,0): 47, 29, 45, (45,62,0): 46, 28, 44, (45,63,0): 46, 28, 44, (45,64,0): 44, 27, 43, (45,65,0): 43, 26, 42, (45,66,0): 40, 26, 41, (45,67,0): 39, 25, 40, (45,68,0): 38, 24, 39, (45,69,0): 37, 23, 38, (45,70,0): 35, 22, 39, (45,71,0): 35, 22, 39, (45,72,0): 31, 20, 37, (45,73,0): 30, 19, 36, (45,74,0): 28, 16, 36, (45,75,0): 26, 14, 34, (45,76,0): 23, 14, 33, (45,77,0): 23, 14, 33, (45,78,0): 23, 14, 33, (45,79,0): 24, 15, 34, (45,80,0): 24, 16, 39, (45,81,0): 24, 16, 39, (45,82,0): 23, 15, 38, (45,83,0): 23, 15, 38, (45,84,0): 24, 16, 39, (45,85,0): 25, 17, 40, (45,86,0): 26, 18, 41, (45,87,0): 27, 19, 42, (45,88,0): 26, 18, 41, (45,89,0): 26, 18, 41, (45,90,0): 25, 17, 40, (45,91,0): 25, 17, 40, (45,92,0): 24, 16, 39, (45,93,0): 24, 16, 39, (45,94,0): 23, 15, 38, (45,95,0): 21, 16, 38, (45,96,0): 22, 19, 40, (45,97,0): 23, 20, 41, (45,98,0): 24, 21, 42, (45,99,0): 25, 22, 43, (45,100,0): 25, 22, 43, (45,101,0): 24, 21, 42, (45,102,0): 23, 20, 41, (45,103,0): 22, 19, 40, (45,104,0): 23, 20, 41, (45,105,0): 24, 21, 42, (45,106,0): 24, 21, 42, (45,107,0): 24, 21, 42, (45,108,0): 25, 22, 43, (45,109,0): 26, 23, 44, (45,110,0): 26, 23, 44, (45,111,0): 26, 23, 44, (45,112,0): 25, 22, 43, (45,113,0): 25, 22, 43, (45,114,0): 25, 22, 43, (45,115,0): 25, 22, 43, (45,116,0): 25, 22, 43, (45,117,0): 25, 22, 43, (45,118,0): 25, 22, 43, (45,119,0): 25, 22, 43, (45,120,0): 23, 20, 41, (45,121,0): 24, 21, 42, (45,122,0): 24, 21, 42, (45,123,0): 24, 21, 42, (45,124,0): 25, 22, 43, (45,125,0): 25, 22, 43, (45,126,0): 26, 23, 44, (45,127,0): 26, 23, 44, (45,128,0): 31, 23, 46, (45,129,0): 31, 23, 46, (45,130,0): 31, 23, 46, (45,131,0): 31, 23, 46, (45,132,0): 31, 23, 46, (45,133,0): 31, 23, 46, (45,134,0): 31, 23, 46, (45,135,0): 31, 23, 46, (45,136,0): 33, 25, 48, (45,137,0): 32, 24, 47, (45,138,0): 32, 24, 47, (45,139,0): 32, 24, 47, (45,140,0): 31, 23, 46, (45,141,0): 30, 22, 45, (45,142,0): 30, 22, 45, (45,143,0): 28, 23, 45, (45,144,0): 24, 22, 43, (45,145,0): 22, 23, 43, (45,146,0): 22, 23, 43, (45,147,0): 22, 23, 43, (45,148,0): 22, 23, 43, (45,149,0): 22, 23, 43, (45,150,0): 22, 23, 43, (45,151,0): 22, 23, 43, (45,152,0): 22, 23, 43, (45,153,0): 22, 23, 43, (45,154,0): 22, 23, 43, (45,155,0): 22, 23, 43, (45,156,0): 22, 23, 43, (45,157,0): 22, 23, 43, (45,158,0): 22, 23, 43, (45,159,0): 24, 22, 43, (45,160,0): 30, 25, 47, (45,161,0): 32, 24, 47, (45,162,0): 32, 24, 47, (45,163,0): 31, 23, 46, (45,164,0): 31, 23, 46, (45,165,0): 31, 23, 46, (45,166,0): 31, 23, 46, (45,167,0): 30, 22, 45, (45,168,0): 31, 23, 46, (45,169,0): 32, 24, 47, (45,170,0): 32, 24, 47, (45,171,0): 33, 25, 48, (45,172,0): 33, 25, 48, (45,173,0): 34, 26, 49, (45,174,0): 34, 26, 49, (45,175,0): 34, 26, 49, (45,176,0): 34, 26, 49, (45,177,0): 34, 26, 49, (45,178,0): 34, 26, 49, (45,179,0): 34, 26, 49, (45,180,0): 34, 26, 49, (45,181,0): 34, 26, 49, (45,182,0): 34, 26, 49, (45,183,0): 34, 26, 49, (45,184,0): 32, 24, 47, (45,185,0): 32, 24, 47, (45,186,0): 33, 25, 48, (45,187,0): 33, 25, 48, (45,188,0): 34, 26, 49, (45,189,0): 34, 26, 49, (45,190,0): 35, 27, 50, (45,191,0): 35, 27, 48, (45,192,0): 35, 26, 47, (45,193,0): 35, 26, 45, (45,194,0): 35, 26, 45, (45,195,0): 36, 27, 46, (45,196,0): 38, 26, 46, (45,197,0): 39, 27, 47, (45,198,0): 39, 27, 47, (45,199,0): 39, 27, 47, (45,200,0): 39, 26, 46, (45,201,0): 39, 26, 46, (45,202,0): 41, 26, 47, (45,203,0): 41, 26, 47, (45,204,0): 42, 27, 48, (45,205,0): 42, 27, 48, (45,206,0): 45, 27, 49, (45,207,0): 45, 27, 49, (45,208,0): 45, 28, 47, (45,209,0): 46, 29, 48, (45,210,0): 46, 29, 48, (45,211,0): 47, 30, 49, (45,212,0): 49, 32, 51, (45,213,0): 50, 33, 52, (45,214,0): 50, 33, 52, (45,215,0): 51, 34, 53, (45,216,0): 53, 36, 55, (45,217,0): 53, 36, 55, (45,218,0): 53, 36, 55, (45,219,0): 52, 35, 54, (45,220,0): 52, 35, 54, (45,221,0): 51, 34, 53, (45,222,0): 51, 34, 53, (45,223,0): 50, 33, 52, (45,224,0): 52, 33, 53, (45,225,0): 52, 33, 53, (45,226,0): 51, 32, 52, (45,227,0): 51, 32, 52, (45,228,0): 50, 31, 51, (45,229,0): 50, 31, 51, (45,230,0): 49, 30, 50, (45,231,0): 49, 30, 50, (45,232,0): 48, 29, 49, (45,233,0): 49, 30, 50, (45,234,0): 50, 31, 51, (45,235,0): 52, 33, 53, (45,236,0): 52, 33, 53, (45,237,0): 52, 33, 53, (45,238,0): 51, 32, 52, (45,239,0): 51, 32, 51, (45,240,0): 55, 34, 49, (45,241,0): 55, 35, 47, (45,242,0): 56, 34, 47, (45,243,0): 57, 35, 48, (45,244,0): 58, 36, 49, (45,245,0): 58, 36, 49, (45,246,0): 59, 35, 49, (45,247,0): 60, 36, 50, (45,248,0): 62, 35, 50, (45,249,0): 62, 35, 50, (45,250,0): 62, 35, 50, (45,251,0): 63, 36, 51, (45,252,0): 65, 37, 52, (45,253,0): 65, 37, 52, (45,254,0): 65, 37, 52, (45,255,0): 66, 38, 53, (45,256,0): 65, 39, 52, (45,257,0): 63, 39, 52, (45,258,0): 62, 38, 51, (45,259,0): 62, 38, 51, (45,260,0): 65, 39, 50, (45,261,0): 66, 40, 51, (45,262,0): 68, 41, 50, (45,263,0): 69, 42, 51, (45,264,0): 69, 42, 51, (45,265,0): 70, 43, 52, (45,266,0): 73, 43, 51, (45,267,0): 74, 44, 52, (45,268,0): 77, 46, 52, (45,269,0): 79, 48, 54, (45,270,0): 80, 49, 55, (45,271,0): 80, 49, 55, (45,272,0): 80, 47, 56, (45,273,0): 80, 47, 56, (45,274,0): 80, 47, 54, (45,275,0): 81, 48, 55, (45,276,0): 83, 48, 55, (45,277,0): 84, 49, 56, (45,278,0): 84, 49, 55, (45,279,0): 84, 49, 55, (45,280,0): 86, 50, 54, (45,281,0): 87, 51, 55, (45,282,0): 90, 51, 56, (45,283,0): 91, 52, 57, (45,284,0): 92, 53, 56, (45,285,0): 93, 54, 57, (45,286,0): 95, 54, 58, (45,287,0): 96, 54, 56, (45,288,0): 100, 56, 55, (45,289,0): 103, 58, 55, (45,290,0): 106, 61, 56, (45,291,0): 108, 63, 58, (45,292,0): 111, 66, 61, (45,293,0): 112, 67, 62, (45,294,0): 112, 67, 61, (45,295,0): 113, 68, 62, (45,296,0): 112, 68, 59, (45,297,0): 113, 69, 60, (45,298,0): 114, 70, 61, (45,299,0): 117, 73, 64, (45,300,0): 121, 77, 66, (45,301,0): 125, 81, 70, (45,302,0): 129, 85, 74, (45,303,0): 134, 87, 71, (45,304,0): 144, 90, 64, (45,305,0): 155, 96, 62, (45,306,0): 169, 107, 70, (45,307,0): 178, 113, 71, (45,308,0): 185, 117, 70, (45,309,0): 185, 118, 66, (45,310,0): 183, 118, 64, (45,311,0): 181, 118, 64, (45,312,0): 177, 120, 67, (45,313,0): 173, 120, 68, (45,314,0): 172, 120, 72, (45,315,0): 170, 119, 72, (45,316,0): 169, 118, 73, (45,317,0): 168, 117, 72, (45,318,0): 168, 116, 69, (45,319,0): 168, 116, 69, (45,320,0): 166, 115, 70, (45,321,0): 162, 114, 68, (45,322,0): 159, 112, 66, (45,323,0): 155, 111, 64, (45,324,0): 152, 109, 64, (45,325,0): 148, 110, 63, (45,326,0): 147, 111, 63, (45,327,0): 145, 111, 63, (45,328,0): 144, 112, 65, (45,329,0): 144, 112, 65, (45,330,0): 143, 110, 65, (45,331,0): 143, 110, 65, (45,332,0): 142, 109, 64, (45,333,0): 142, 109, 64, (45,334,0): 142, 107, 65, (45,335,0): 142, 107, 65, (45,336,0): 145, 110, 70, (45,337,0): 144, 109, 69, (45,338,0): 144, 109, 69, (45,339,0): 143, 108, 68, (45,340,0): 142, 107, 69, (45,341,0): 140, 105, 67, (45,342,0): 140, 105, 67, (45,343,0): 139, 104, 66, (45,344,0): 136, 100, 64, (45,345,0): 137, 101, 65, (45,346,0): 138, 102, 68, (45,347,0): 139, 103, 69, (45,348,0): 140, 104, 70, (45,349,0): 140, 104, 70, (45,350,0): 139, 103, 71, (45,351,0): 138, 102, 70, (45,352,0): 139, 102, 73, (45,353,0): 139, 102, 73, (45,354,0): 140, 103, 74, (45,355,0): 140, 103, 74, (45,356,0): 141, 104, 75, (45,357,0): 141, 104, 75, (45,358,0): 142, 105, 78, (45,359,0): 142, 105, 78, (45,360,0): 139, 102, 76, (45,361,0): 139, 102, 76, (45,362,0): 139, 101, 78, (45,363,0): 139, 101, 78, (45,364,0): 139, 101, 78, (45,365,0): 139, 101, 78, (45,366,0): 139, 101, 78, (45,367,0): 139, 102, 76, (45,368,0): 144, 102, 78, (45,369,0): 144, 102, 77, (45,370,0): 144, 102, 78, (45,371,0): 144, 102, 78, (45,372,0): 144, 102, 78, (45,373,0): 144, 102, 78, (45,374,0): 144, 102, 80, (45,375,0): 144, 102, 80, (45,376,0): 145, 102, 83, (45,377,0): 144, 101, 82, (45,378,0): 144, 101, 82, (45,379,0): 143, 100, 81, (45,380,0): 144, 101, 84, (45,381,0): 145, 102, 85, (45,382,0): 147, 104, 87, (45,383,0): 148, 105, 86, (45,384,0): 148, 107, 87, (45,385,0): 148, 107, 85, (45,386,0): 149, 107, 85, (45,387,0): 150, 108, 86, (45,388,0): 153, 108, 87, (45,389,0): 153, 108, 87, (45,390,0): 154, 108, 85, (45,391,0): 155, 109, 86, (45,392,0): 162, 112, 89, (45,393,0): 162, 112, 89, (45,394,0): 164, 112, 88, (45,395,0): 165, 113, 89, (45,396,0): 168, 114, 90, (45,397,0): 169, 115, 91, (45,398,0): 171, 115, 92, (45,399,0): 172, 114, 90, (45,400,0): 180, 118, 93, (45,401,0): 182, 118, 91, (45,402,0): 182, 118, 91, (45,403,0): 182, 118, 90, (45,404,0): 183, 118, 90, (45,405,0): 183, 118, 88, (45,406,0): 183, 118, 86, (45,407,0): 183, 118, 86, (45,408,0): 185, 119, 85, (45,409,0): 187, 121, 86, (45,410,0): 192, 124, 87, (45,411,0): 195, 127, 90, (45,412,0): 197, 129, 90, (45,413,0): 197, 129, 90, (45,414,0): 197, 128, 89, (45,415,0): 197, 128, 89, (45,416,0): 192, 124, 85, (45,417,0): 190, 125, 85, (45,418,0): 191, 126, 84, (45,419,0): 191, 127, 83, (45,420,0): 191, 127, 81, (45,421,0): 192, 128, 80, (45,422,0): 191, 129, 80, (45,423,0): 188, 130, 82, (45,424,0): 189, 133, 86, (45,425,0): 178, 125, 81, (45,426,0): 165, 115, 78, (45,427,0): 155, 109, 76, (45,428,0): 148, 104, 77, (45,429,0): 139, 97, 73, (45,430,0): 129, 88, 68, (45,431,0): 119, 82, 64, (45,432,0): 109, 78, 60, (45,433,0): 102, 75, 58, (45,434,0): 98, 71, 54, (45,435,0): 94, 67, 50, (45,436,0): 94, 67, 50, (45,437,0): 96, 69, 52, (45,438,0): 100, 73, 56, (45,439,0): 103, 76, 59, (45,440,0): 101, 74, 57, (45,441,0): 101, 74, 57, (45,442,0): 102, 75, 58, (45,443,0): 103, 76, 59, (45,444,0): 103, 76, 59, (45,445,0): 104, 77, 60, (45,446,0): 104, 77, 60, (45,447,0): 104, 77, 60, (45,448,0): 107, 75, 62, (45,449,0): 106, 74, 61, (45,450,0): 102, 72, 61, (45,451,0): 100, 70, 59, (45,452,0): 99, 69, 58, (45,453,0): 99, 69, 58, (45,454,0): 98, 70, 59, (45,455,0): 98, 70, 59, (45,456,0): 93, 66, 57, (45,457,0): 92, 65, 56, (45,458,0): 92, 65, 56, (45,459,0): 91, 64, 55, (45,460,0): 88, 63, 56, (45,461,0): 87, 62, 55, (45,462,0): 86, 61, 54, (45,463,0): 86, 61, 54, (45,464,0): 87, 57, 55, (45,465,0): 87, 57, 55, (45,466,0): 88, 58, 56, (45,467,0): 89, 59, 57, (45,468,0): 89, 61, 58, (45,469,0): 90, 62, 59, (45,470,0): 89, 64, 60, (45,471,0): 89, 64, 60, (45,472,0): 88, 63, 59, (45,473,0): 88, 63, 59, (45,474,0): 87, 63, 59, (45,475,0): 87, 63, 59, (45,476,0): 85, 64, 59, (45,477,0): 85, 64, 59, (45,478,0): 85, 64, 59, (45,479,0): 85, 64, 59, (45,480,0): 85, 64, 59, (45,481,0): 84, 63, 58, (45,482,0): 84, 64, 57, (45,483,0): 84, 64, 55, (45,484,0): 87, 64, 56, (45,485,0): 89, 67, 56, (45,486,0): 92, 68, 56, (45,487,0): 93, 69, 57, (45,488,0): 97, 73, 61, (45,489,0): 96, 72, 60, (45,490,0): 98, 71, 62, (45,491,0): 97, 70, 61, (45,492,0): 96, 67, 63, (45,493,0): 95, 66, 62, (45,494,0): 95, 65, 63, (45,495,0): 93, 65, 62, (45,496,0): 89, 61, 58, (45,497,0): 87, 62, 58, (45,498,0): 87, 62, 58, (45,499,0): 87, 62, 58, (45,500,0): 86, 61, 57, (45,501,0): 86, 61, 57, (45,502,0): 86, 61, 57, (45,503,0): 86, 61, 57, (45,504,0): 86, 61, 57, (45,505,0): 86, 61, 57, (45,506,0): 86, 61, 57, (45,507,0): 86, 61, 57, (45,508,0): 87, 62, 58, (45,509,0): 87, 62, 58, (45,510,0): 88, 63, 59, (45,511,0): 88, 63, 59, (45,512,0): 90, 65, 61, (45,513,0): 90, 65, 61, (45,514,0): 90, 65, 61, (45,515,0): 91, 66, 62, (45,516,0): 91, 66, 62, (45,517,0): 92, 67, 63, (45,518,0): 92, 67, 63, (45,519,0): 92, 67, 63, (45,520,0): 94, 69, 65, (45,521,0): 94, 69, 65, (45,522,0): 94, 69, 65, (45,523,0): 94, 69, 65, (45,524,0): 94, 69, 65, (45,525,0): 94, 69, 65, (45,526,0): 94, 69, 65, (45,527,0): 93, 69, 65, (45,528,0): 92, 68, 66, (45,529,0): 91, 70, 67, (45,530,0): 91, 70, 67, (45,531,0): 91, 70, 67, (45,532,0): 90, 69, 68, (45,533,0): 88, 67, 66, (45,534,0): 86, 65, 64, (45,535,0): 85, 64, 63, (45,536,0): 86, 64, 66, (45,537,0): 86, 64, 66, (45,538,0): 85, 63, 66, (45,539,0): 84, 62, 65, (45,540,0): 83, 61, 64, (45,541,0): 80, 58, 61, (45,542,0): 78, 55, 61, (45,543,0): 76, 55, 60, (45,544,0): 73, 52, 57, (45,545,0): 72, 53, 57, (45,546,0): 72, 51, 56, (45,547,0): 72, 51, 56, (45,548,0): 71, 50, 57, (45,549,0): 71, 50, 57, (45,550,0): 71, 48, 58, (45,551,0): 71, 48, 58, (45,552,0): 72, 46, 59, (45,553,0): 71, 45, 58, (45,554,0): 71, 44, 59, (45,555,0): 71, 44, 59, (45,556,0): 72, 43, 61, (45,557,0): 71, 42, 60, (45,558,0): 71, 42, 60, (45,559,0): 70, 43, 58, (45,560,0): 70, 44, 53, (45,561,0): 68, 46, 49, (45,562,0): 69, 47, 50, (45,563,0): 70, 48, 51, (45,564,0): 71, 49, 52, (45,565,0): 71, 49, 52, (45,566,0): 72, 50, 53, (45,567,0): 72, 50, 53, (45,568,0): 75, 53, 56, (45,569,0): 75, 53, 56, (45,570,0): 76, 54, 57, (45,571,0): 76, 54, 57, (45,572,0): 76, 54, 57, (45,573,0): 74, 52, 55, (45,574,0): 73, 51, 54, (45,575,0): 72, 50, 53, (45,576,0): 76, 49, 58, (45,577,0): 74, 47, 56, (45,578,0): 71, 45, 54, (45,579,0): 71, 45, 54, (45,580,0): 71, 48, 54, (45,581,0): 72, 49, 55, (45,582,0): 69, 48, 53, (45,583,0): 66, 45, 50, (45,584,0): 66, 47, 49, (45,585,0): 65, 46, 48, (45,586,0): 63, 47, 47, (45,587,0): 62, 46, 46, (45,588,0): 59, 45, 44, (45,589,0): 58, 44, 43, (45,590,0): 58, 44, 41, (45,591,0): 57, 43, 42, (45,592,0): 61, 42, 46, (45,593,0): 61, 40, 47, (45,594,0): 60, 39, 46, (45,595,0): 58, 37, 42, (45,596,0): 58, 38, 40, (45,597,0): 58, 38, 39, (45,598,0): 59, 39, 40, (45,599,0): 60, 40, 39, (46,0,0): 36, 23, 41, (46,1,0): 37, 24, 42, (46,2,0): 37, 24, 41, (46,3,0): 38, 25, 42, (46,4,0): 38, 25, 42, (46,5,0): 39, 26, 43, (46,6,0): 40, 26, 41, (46,7,0): 40, 26, 41, (46,8,0): 44, 28, 41, (46,9,0): 44, 28, 41, (46,10,0): 46, 28, 42, (46,11,0): 47, 29, 43, (46,12,0): 48, 30, 42, (46,13,0): 49, 31, 43, (46,14,0): 50, 32, 44, (46,15,0): 50, 32, 44, (46,16,0): 47, 29, 41, (46,17,0): 47, 29, 41, (46,18,0): 48, 30, 42, (46,19,0): 48, 30, 42, (46,20,0): 49, 31, 43, (46,21,0): 50, 32, 44, (46,22,0): 50, 32, 44, (46,23,0): 51, 33, 45, (46,24,0): 52, 34, 46, (46,25,0): 52, 34, 46, (46,26,0): 51, 33, 45, (46,27,0): 51, 33, 45, (46,28,0): 50, 32, 44, (46,29,0): 50, 32, 44, (46,30,0): 49, 31, 43, (46,31,0): 49, 31, 43, (46,32,0): 47, 30, 46, (46,33,0): 47, 30, 46, (46,34,0): 47, 30, 46, (46,35,0): 47, 30, 46, (46,36,0): 47, 30, 46, (46,37,0): 47, 30, 46, (46,38,0): 47, 30, 46, (46,39,0): 47, 30, 46, (46,40,0): 47, 30, 46, (46,41,0): 46, 29, 45, (46,42,0): 44, 27, 43, (46,43,0): 43, 26, 42, (46,44,0): 42, 25, 41, (46,45,0): 43, 26, 42, (46,46,0): 43, 26, 42, (46,47,0): 44, 27, 43, (46,48,0): 42, 24, 40, (46,49,0): 42, 24, 40, (46,50,0): 43, 25, 41, (46,51,0): 43, 25, 41, (46,52,0): 44, 26, 42, (46,53,0): 44, 26, 42, (46,54,0): 45, 27, 43, (46,55,0): 45, 27, 43, (46,56,0): 49, 31, 47, (46,57,0): 49, 31, 47, (46,58,0): 48, 30, 46, (46,59,0): 48, 30, 46, (46,60,0): 47, 29, 45, (46,61,0): 47, 29, 45, (46,62,0): 46, 28, 44, (46,63,0): 46, 28, 44, (46,64,0): 44, 27, 43, (46,65,0): 43, 26, 42, (46,66,0): 41, 27, 42, (46,67,0): 40, 26, 41, (46,68,0): 39, 25, 40, (46,69,0): 38, 24, 39, (46,70,0): 36, 23, 40, (46,71,0): 36, 23, 40, (46,72,0): 32, 21, 38, (46,73,0): 31, 20, 37, (46,74,0): 29, 17, 37, (46,75,0): 27, 15, 35, (46,76,0): 24, 15, 34, (46,77,0): 24, 15, 34, (46,78,0): 24, 15, 34, (46,79,0): 25, 16, 35, (46,80,0): 25, 17, 40, (46,81,0): 22, 17, 39, (46,82,0): 21, 16, 38, (46,83,0): 21, 16, 38, (46,84,0): 21, 16, 38, (46,85,0): 23, 18, 40, (46,86,0): 24, 19, 41, (46,87,0): 26, 21, 43, (46,88,0): 24, 19, 41, (46,89,0): 24, 19, 41, (46,90,0): 24, 19, 41, (46,91,0): 23, 18, 40, (46,92,0): 22, 17, 39, (46,93,0): 21, 16, 38, (46,94,0): 21, 16, 38, (46,95,0): 21, 16, 38, (46,96,0): 23, 20, 41, (46,97,0): 24, 21, 42, (46,98,0): 25, 22, 43, (46,99,0): 26, 23, 44, (46,100,0): 26, 23, 44, (46,101,0): 25, 22, 43, (46,102,0): 24, 21, 42, (46,103,0): 23, 20, 41, (46,104,0): 25, 22, 43, (46,105,0): 25, 22, 43, (46,106,0): 25, 22, 43, (46,107,0): 26, 23, 44, (46,108,0): 26, 23, 44, (46,109,0): 27, 24, 45, (46,110,0): 27, 24, 45, (46,111,0): 28, 25, 46, (46,112,0): 27, 24, 45, (46,113,0): 27, 24, 45, (46,114,0): 27, 24, 45, (46,115,0): 27, 24, 45, (46,116,0): 27, 24, 45, (46,117,0): 27, 24, 45, (46,118,0): 27, 24, 45, (46,119,0): 27, 24, 45, (46,120,0): 24, 21, 42, (46,121,0): 24, 21, 42, (46,122,0): 25, 22, 43, (46,123,0): 25, 22, 43, (46,124,0): 26, 23, 44, (46,125,0): 26, 23, 44, (46,126,0): 27, 24, 45, (46,127,0): 27, 24, 45, (46,128,0): 31, 23, 46, (46,129,0): 31, 23, 46, (46,130,0): 31, 23, 46, (46,131,0): 31, 23, 46, (46,132,0): 31, 23, 46, (46,133,0): 31, 23, 46, (46,134,0): 31, 23, 46, (46,135,0): 31, 23, 46, (46,136,0): 33, 25, 48, (46,137,0): 33, 25, 48, (46,138,0): 32, 24, 47, (46,139,0): 32, 24, 47, (46,140,0): 31, 23, 46, (46,141,0): 31, 23, 46, (46,142,0): 31, 23, 46, (46,143,0): 28, 23, 45, (46,144,0): 24, 22, 43, (46,145,0): 22, 23, 43, (46,146,0): 22, 23, 43, (46,147,0): 22, 23, 43, (46,148,0): 22, 23, 43, (46,149,0): 22, 23, 43, (46,150,0): 22, 23, 43, (46,151,0): 22, 23, 43, (46,152,0): 22, 23, 43, (46,153,0): 22, 23, 43, (46,154,0): 22, 23, 43, (46,155,0): 22, 23, 43, (46,156,0): 22, 23, 43, (46,157,0): 22, 23, 43, (46,158,0): 22, 23, 43, (46,159,0): 24, 22, 43, (46,160,0): 29, 24, 46, (46,161,0): 31, 23, 46, (46,162,0): 31, 23, 46, (46,163,0): 32, 24, 47, (46,164,0): 32, 24, 47, (46,165,0): 32, 24, 47, (46,166,0): 32, 24, 47, (46,167,0): 33, 25, 48, (46,168,0): 32, 24, 47, (46,169,0): 32, 24, 47, (46,170,0): 32, 24, 47, (46,171,0): 33, 25, 48, (46,172,0): 33, 25, 48, (46,173,0): 34, 26, 49, (46,174,0): 34, 26, 49, (46,175,0): 35, 27, 50, (46,176,0): 34, 26, 49, (46,177,0): 34, 26, 49, (46,178,0): 34, 26, 49, (46,179,0): 34, 26, 49, (46,180,0): 34, 26, 49, (46,181,0): 34, 26, 49, (46,182,0): 34, 26, 49, (46,183,0): 34, 26, 49, (46,184,0): 32, 24, 47, (46,185,0): 32, 24, 47, (46,186,0): 33, 25, 48, (46,187,0): 33, 25, 48, (46,188,0): 34, 26, 49, (46,189,0): 34, 26, 49, (46,190,0): 35, 27, 50, (46,191,0): 35, 27, 48, (46,192,0): 35, 26, 47, (46,193,0): 35, 26, 45, (46,194,0): 35, 26, 45, (46,195,0): 36, 27, 46, (46,196,0): 38, 26, 46, (46,197,0): 39, 27, 47, (46,198,0): 39, 27, 47, (46,199,0): 39, 27, 47, (46,200,0): 39, 26, 46, (46,201,0): 39, 26, 46, (46,202,0): 41, 26, 47, (46,203,0): 41, 26, 47, (46,204,0): 42, 27, 48, (46,205,0): 42, 27, 48, (46,206,0): 45, 27, 49, (46,207,0): 45, 27, 49, (46,208,0): 45, 28, 47, (46,209,0): 46, 29, 48, (46,210,0): 46, 29, 48, (46,211,0): 47, 30, 49, (46,212,0): 49, 32, 51, (46,213,0): 50, 33, 52, (46,214,0): 50, 33, 52, (46,215,0): 51, 34, 53, (46,216,0): 54, 37, 56, (46,217,0): 53, 36, 55, (46,218,0): 53, 36, 55, (46,219,0): 52, 35, 54, (46,220,0): 52, 35, 54, (46,221,0): 51, 34, 53, (46,222,0): 51, 34, 53, (46,223,0): 51, 34, 53, (46,224,0): 52, 33, 53, (46,225,0): 52, 33, 53, (46,226,0): 51, 32, 52, (46,227,0): 51, 32, 52, (46,228,0): 50, 31, 51, (46,229,0): 50, 31, 51, (46,230,0): 49, 30, 50, (46,231,0): 49, 30, 50, (46,232,0): 48, 29, 49, (46,233,0): 49, 30, 50, (46,234,0): 50, 31, 51, (46,235,0): 52, 33, 53, (46,236,0): 52, 33, 53, (46,237,0): 52, 33, 53, (46,238,0): 51, 32, 52, (46,239,0): 51, 32, 51, (46,240,0): 55, 34, 49, (46,241,0): 57, 35, 48, (46,242,0): 57, 35, 48, (46,243,0): 57, 35, 48, (46,244,0): 59, 35, 49, (46,245,0): 59, 35, 49, (46,246,0): 60, 36, 50, (46,247,0): 60, 36, 50, (46,248,0): 62, 35, 50, (46,249,0): 63, 36, 51, (46,250,0): 64, 36, 51, (46,251,0): 64, 36, 51, (46,252,0): 65, 37, 52, (46,253,0): 65, 37, 52, (46,254,0): 68, 37, 53, (46,255,0): 66, 38, 53, (46,256,0): 66, 40, 53, (46,257,0): 64, 40, 53, (46,258,0): 65, 39, 50, (46,259,0): 65, 39, 50, (46,260,0): 65, 39, 50, (46,261,0): 67, 41, 52, (46,262,0): 69, 42, 51, (46,263,0): 70, 43, 52, (46,264,0): 72, 42, 50, (46,265,0): 72, 42, 50, (46,266,0): 73, 43, 51, (46,267,0): 75, 45, 53, (46,268,0): 78, 47, 53, (46,269,0): 79, 48, 54, (46,270,0): 80, 49, 55, (46,271,0): 81, 50, 56, (46,272,0): 80, 47, 56, (46,273,0): 80, 47, 56, (46,274,0): 82, 47, 54, (46,275,0): 83, 48, 55, (46,276,0): 83, 48, 55, (46,277,0): 84, 49, 56, (46,278,0): 85, 48, 55, (46,279,0): 85, 48, 55, (46,280,0): 88, 49, 54, (46,281,0): 88, 49, 54, (46,282,0): 89, 50, 55, (46,283,0): 90, 51, 56, (46,284,0): 92, 51, 55, (46,285,0): 93, 52, 56, (46,286,0): 94, 53, 57, (46,287,0): 96, 54, 56, (46,288,0): 101, 57, 54, (46,289,0): 103, 58, 53, (46,290,0): 106, 61, 56, (46,291,0): 109, 64, 59, (46,292,0): 111, 66, 60, (46,293,0): 112, 67, 61, (46,294,0): 113, 68, 62, (46,295,0): 113, 68, 62, (46,296,0): 112, 68, 59, (46,297,0): 113, 69, 60, (46,298,0): 115, 71, 60, (46,299,0): 118, 74, 63, (46,300,0): 122, 78, 67, (46,301,0): 127, 83, 72, (46,302,0): 131, 87, 74, (46,303,0): 136, 89, 71, (46,304,0): 146, 90, 63, (46,305,0): 159, 99, 65, (46,306,0): 172, 108, 70, (46,307,0): 181, 117, 73, (46,308,0): 186, 118, 69, (46,309,0): 186, 119, 66, (46,310,0): 184, 119, 65, (46,311,0): 182, 119, 65, (46,312,0): 181, 121, 69, (46,313,0): 177, 121, 70, (46,314,0): 174, 122, 74, (46,315,0): 171, 120, 73, (46,316,0): 170, 119, 74, (46,317,0): 169, 118, 73, (46,318,0): 169, 117, 70, (46,319,0): 169, 117, 70, (46,320,0): 168, 117, 72, (46,321,0): 165, 117, 71, (46,322,0): 161, 114, 68, (46,323,0): 157, 113, 66, (46,324,0): 154, 112, 64, (46,325,0): 151, 113, 64, (46,326,0): 150, 114, 66, (46,327,0): 148, 114, 66, (46,328,0): 145, 113, 66, (46,329,0): 145, 113, 66, (46,330,0): 143, 112, 66, (46,331,0): 143, 112, 66, (46,332,0): 143, 110, 65, (46,333,0): 143, 110, 65, (46,334,0): 143, 109, 64, (46,335,0): 143, 109, 64, (46,336,0): 146, 111, 69, (46,337,0): 145, 110, 68, (46,338,0): 144, 109, 69, (46,339,0): 143, 108, 68, (46,340,0): 142, 107, 67, (46,341,0): 141, 106, 66, (46,342,0): 140, 105, 67, (46,343,0): 140, 105, 67, (46,344,0): 136, 100, 64, (46,345,0): 137, 101, 65, (46,346,0): 138, 102, 66, (46,347,0): 140, 104, 68, (46,348,0): 140, 104, 70, (46,349,0): 140, 104, 70, (46,350,0): 139, 103, 69, (46,351,0): 139, 103, 71, (46,352,0): 139, 102, 73, (46,353,0): 139, 102, 73, (46,354,0): 139, 102, 73, (46,355,0): 140, 103, 74, (46,356,0): 141, 104, 75, (46,357,0): 142, 105, 76, (46,358,0): 142, 105, 78, (46,359,0): 142, 105, 78, (46,360,0): 141, 104, 78, (46,361,0): 141, 104, 78, (46,362,0): 141, 103, 80, (46,363,0): 141, 103, 80, (46,364,0): 141, 103, 80, (46,365,0): 141, 103, 80, (46,366,0): 141, 103, 80, (46,367,0): 141, 104, 78, (46,368,0): 144, 102, 78, (46,369,0): 144, 102, 77, (46,370,0): 144, 102, 78, (46,371,0): 144, 102, 78, (46,372,0): 144, 102, 78, (46,373,0): 144, 102, 78, (46,374,0): 144, 102, 80, (46,375,0): 144, 102, 80, (46,376,0): 145, 102, 83, (46,377,0): 144, 101, 82, (46,378,0): 144, 101, 82, (46,379,0): 143, 100, 81, (46,380,0): 144, 101, 84, (46,381,0): 145, 102, 85, (46,382,0): 147, 104, 87, (46,383,0): 148, 105, 86, (46,384,0): 148, 107, 87, (46,385,0): 149, 108, 86, (46,386,0): 150, 108, 86, (46,387,0): 150, 108, 86, (46,388,0): 153, 108, 85, (46,389,0): 153, 108, 85, (46,390,0): 155, 109, 86, (46,391,0): 155, 109, 86, (46,392,0): 163, 113, 90, (46,393,0): 164, 114, 91, (46,394,0): 166, 114, 90, (46,395,0): 167, 115, 91, (46,396,0): 170, 116, 92, (46,397,0): 171, 117, 93, (46,398,0): 173, 117, 92, (46,399,0): 174, 116, 92, (46,400,0): 182, 120, 95, (46,401,0): 184, 120, 93, (46,402,0): 185, 120, 92, (46,403,0): 185, 120, 92, (46,404,0): 185, 120, 92, (46,405,0): 184, 119, 89, (46,406,0): 185, 119, 87, (46,407,0): 185, 119, 87, (46,408,0): 190, 121, 88, (46,409,0): 191, 123, 88, (46,410,0): 193, 125, 88, (46,411,0): 195, 127, 90, (46,412,0): 198, 129, 90, (46,413,0): 199, 130, 91, (46,414,0): 199, 130, 89, (46,415,0): 200, 131, 92, (46,416,0): 195, 127, 88, (46,417,0): 196, 128, 89, (46,418,0): 196, 129, 87, (46,419,0): 197, 130, 87, (46,420,0): 198, 131, 86, (46,421,0): 196, 132, 86, (46,422,0): 196, 134, 85, (46,423,0): 195, 134, 87, (46,424,0): 193, 135, 89, (46,425,0): 181, 127, 83, (46,426,0): 167, 115, 78, (46,427,0): 156, 107, 75, (46,428,0): 149, 103, 77, (46,429,0): 140, 98, 76, (46,430,0): 131, 90, 72, (46,431,0): 121, 84, 66, (46,432,0): 110, 79, 61, (46,433,0): 104, 77, 60, (46,434,0): 99, 72, 55, (46,435,0): 95, 68, 51, (46,436,0): 95, 68, 51, (46,437,0): 98, 71, 54, (46,438,0): 102, 75, 58, (46,439,0): 106, 79, 62, (46,440,0): 104, 77, 60, (46,441,0): 104, 77, 60, (46,442,0): 105, 78, 61, (46,443,0): 105, 78, 61, (46,444,0): 105, 78, 61, (46,445,0): 106, 79, 62, (46,446,0): 106, 79, 62, (46,447,0): 106, 79, 62, (46,448,0): 109, 77, 64, (46,449,0): 108, 76, 63, (46,450,0): 104, 75, 61, (46,451,0): 102, 73, 59, (46,452,0): 101, 71, 60, (46,453,0): 101, 71, 60, (46,454,0): 101, 73, 62, (46,455,0): 101, 73, 62, (46,456,0): 94, 67, 56, (46,457,0): 93, 66, 55, (46,458,0): 93, 66, 57, (46,459,0): 91, 64, 55, (46,460,0): 88, 63, 56, (46,461,0): 87, 62, 55, (46,462,0): 86, 61, 54, (46,463,0): 85, 60, 53, (46,464,0): 88, 58, 56, (46,465,0): 88, 58, 56, (46,466,0): 89, 59, 57, (46,467,0): 91, 61, 59, (46,468,0): 91, 63, 60, (46,469,0): 91, 63, 60, (46,470,0): 90, 65, 61, (46,471,0): 90, 65, 61, (46,472,0): 88, 63, 59, (46,473,0): 88, 63, 59, (46,474,0): 87, 63, 59, (46,475,0): 87, 63, 59, (46,476,0): 85, 64, 59, (46,477,0): 85, 64, 59, (46,478,0): 85, 64, 59, (46,479,0): 85, 64, 59, (46,480,0): 86, 65, 60, (46,481,0): 85, 64, 59, (46,482,0): 85, 65, 58, (46,483,0): 85, 65, 56, (46,484,0): 88, 65, 57, (46,485,0): 90, 68, 57, (46,486,0): 92, 68, 56, (46,487,0): 94, 70, 58, (46,488,0): 95, 71, 59, (46,489,0): 94, 70, 58, (46,490,0): 96, 69, 60, (46,491,0): 95, 68, 59, (46,492,0): 95, 66, 62, (46,493,0): 94, 65, 61, (46,494,0): 93, 63, 61, (46,495,0): 91, 63, 60, (46,496,0): 86, 58, 55, (46,497,0): 84, 59, 55, (46,498,0): 84, 59, 55, (46,499,0): 84, 59, 55, (46,500,0): 85, 60, 56, (46,501,0): 85, 60, 56, (46,502,0): 85, 60, 56, (46,503,0): 85, 60, 56, (46,504,0): 84, 59, 55, (46,505,0): 85, 60, 56, (46,506,0): 85, 60, 56, (46,507,0): 86, 61, 57, (46,508,0): 87, 62, 58, (46,509,0): 87, 62, 58, (46,510,0): 88, 63, 59, (46,511,0): 88, 63, 59, (46,512,0): 89, 64, 60, (46,513,0): 89, 64, 60, (46,514,0): 89, 64, 60, (46,515,0): 90, 65, 61, (46,516,0): 90, 65, 61, (46,517,0): 91, 66, 62, (46,518,0): 91, 66, 62, (46,519,0): 91, 66, 62, (46,520,0): 94, 69, 65, (46,521,0): 94, 69, 65, (46,522,0): 94, 69, 65, (46,523,0): 94, 69, 65, (46,524,0): 94, 69, 65, (46,525,0): 94, 69, 65, (46,526,0): 94, 69, 65, (46,527,0): 93, 69, 65, (46,528,0): 91, 67, 65, (46,529,0): 89, 68, 65, (46,530,0): 89, 68, 65, (46,531,0): 89, 68, 65, (46,532,0): 88, 67, 66, (46,533,0): 86, 65, 64, (46,534,0): 84, 63, 62, (46,535,0): 83, 62, 61, (46,536,0): 86, 64, 66, (46,537,0): 86, 64, 66, (46,538,0): 86, 64, 67, (46,539,0): 86, 64, 67, (46,540,0): 85, 63, 66, (46,541,0): 82, 60, 63, (46,542,0): 80, 57, 63, (46,543,0): 77, 56, 61, (46,544,0): 74, 53, 58, (46,545,0): 73, 54, 58, (46,546,0): 73, 52, 57, (46,547,0): 73, 52, 57, (46,548,0): 72, 51, 58, (46,549,0): 72, 51, 58, (46,550,0): 72, 49, 59, (46,551,0): 72, 49, 59, (46,552,0): 70, 44, 57, (46,553,0): 70, 43, 58, (46,554,0): 71, 44, 61, (46,555,0): 71, 44, 61, (46,556,0): 72, 43, 63, (46,557,0): 73, 44, 64, (46,558,0): 73, 44, 64, (46,559,0): 72, 45, 60, (46,560,0): 71, 45, 54, (46,561,0): 69, 47, 50, (46,562,0): 69, 47, 50, (46,563,0): 70, 48, 51, (46,564,0): 70, 48, 51, (46,565,0): 70, 48, 51, (46,566,0): 70, 48, 51, (46,567,0): 70, 48, 51, (46,568,0): 74, 52, 55, (46,569,0): 74, 52, 55, (46,570,0): 75, 53, 56, (46,571,0): 75, 53, 56, (46,572,0): 74, 52, 55, (46,573,0): 73, 51, 54, (46,574,0): 72, 50, 53, (46,575,0): 71, 49, 52, (46,576,0): 77, 50, 59, (46,577,0): 74, 47, 56, (46,578,0): 71, 45, 54, (46,579,0): 72, 46, 55, (46,580,0): 72, 49, 55, (46,581,0): 72, 49, 55, (46,582,0): 69, 48, 53, (46,583,0): 67, 46, 51, (46,584,0): 66, 47, 49, (46,585,0): 65, 46, 48, (46,586,0): 63, 47, 47, (46,587,0): 62, 46, 46, (46,588,0): 59, 45, 44, (46,589,0): 58, 44, 43, (46,590,0): 56, 45, 41, (46,591,0): 57, 43, 42, (46,592,0): 62, 43, 49, (46,593,0): 61, 42, 48, (46,594,0): 59, 40, 46, (46,595,0): 58, 39, 43, (46,596,0): 57, 38, 40, (46,597,0): 57, 39, 39, (46,598,0): 57, 39, 39, (46,599,0): 58, 40, 40, (47,0,0): 36, 23, 41, (47,1,0): 35, 24, 41, (47,2,0): 37, 24, 41, (47,3,0): 37, 24, 41, (47,4,0): 38, 25, 42, (47,5,0): 38, 25, 42, (47,6,0): 39, 27, 41, (47,7,0): 40, 26, 41, (47,8,0): 41, 27, 40, (47,9,0): 43, 27, 40, (47,10,0): 44, 28, 41, (47,11,0): 45, 29, 42, (47,12,0): 47, 29, 41, (47,13,0): 48, 30, 42, (47,14,0): 49, 31, 43, (47,15,0): 49, 31, 43, (47,16,0): 46, 28, 40, (47,17,0): 46, 28, 40, (47,18,0): 47, 29, 41, (47,19,0): 47, 29, 41, (47,20,0): 48, 30, 42, (47,21,0): 49, 31, 43, (47,22,0): 50, 32, 44, (47,23,0): 50, 32, 44, (47,24,0): 52, 34, 46, (47,25,0): 52, 34, 46, (47,26,0): 51, 33, 45, (47,27,0): 51, 33, 45, (47,28,0): 50, 32, 44, (47,29,0): 50, 32, 44, (47,30,0): 49, 31, 43, (47,31,0): 49, 31, 43, (47,32,0): 47, 30, 46, (47,33,0): 47, 30, 46, (47,34,0): 47, 30, 46, (47,35,0): 47, 30, 46, (47,36,0): 47, 30, 46, (47,37,0): 47, 30, 46, (47,38,0): 47, 30, 46, (47,39,0): 47, 30, 46, (47,40,0): 48, 31, 47, (47,41,0): 47, 30, 46, (47,42,0): 45, 28, 44, (47,43,0): 44, 27, 43, (47,44,0): 43, 26, 42, (47,45,0): 43, 26, 42, (47,46,0): 44, 27, 43, (47,47,0): 45, 28, 44, (47,48,0): 41, 24, 40, (47,49,0): 41, 24, 40, (47,50,0): 42, 24, 40, (47,51,0): 42, 25, 41, (47,52,0): 43, 25, 41, (47,53,0): 43, 26, 42, (47,54,0): 44, 26, 42, (47,55,0): 44, 27, 43, (47,56,0): 49, 31, 47, (47,57,0): 48, 31, 47, (47,58,0): 48, 30, 46, (47,59,0): 47, 30, 46, (47,60,0): 47, 29, 45, (47,61,0): 46, 29, 45, (47,62,0): 46, 28, 44, (47,63,0): 45, 28, 44, (47,64,0): 44, 27, 43, (47,65,0): 43, 27, 40, (47,66,0): 43, 26, 42, (47,67,0): 40, 26, 41, (47,68,0): 41, 24, 40, (47,69,0): 39, 25, 40, (47,70,0): 38, 24, 39, (47,71,0): 37, 24, 41, (47,72,0): 34, 21, 38, (47,73,0): 32, 21, 38, (47,74,0): 30, 19, 36, (47,75,0): 28, 17, 34, (47,76,0): 27, 15, 35, (47,77,0): 25, 16, 35, (47,78,0): 27, 15, 35, (47,79,0): 25, 16, 35, (47,80,0): 25, 17, 38, (47,81,0): 22, 17, 39, (47,82,0): 21, 16, 38, (47,83,0): 20, 15, 37, (47,84,0): 21, 16, 38, (47,85,0): 22, 17, 39, (47,86,0): 25, 20, 42, (47,87,0): 26, 21, 43, (47,88,0): 25, 20, 42, (47,89,0): 24, 19, 41, (47,90,0): 24, 19, 41, (47,91,0): 23, 18, 40, (47,92,0): 22, 17, 39, (47,93,0): 21, 16, 38, (47,94,0): 21, 16, 38, (47,95,0): 20, 15, 37, (47,96,0): 25, 20, 42, (47,97,0): 26, 21, 41, (47,98,0): 27, 22, 44, (47,99,0): 28, 23, 43, (47,100,0): 28, 23, 45, (47,101,0): 27, 22, 42, (47,102,0): 26, 21, 43, (47,103,0): 25, 20, 40, (47,104,0): 27, 22, 44, (47,105,0): 27, 22, 42, (47,106,0): 27, 22, 44, (47,107,0): 28, 23, 43, (47,108,0): 28, 23, 45, (47,109,0): 29, 24, 44, (47,110,0): 29, 24, 46, (47,111,0): 30, 25, 45, (47,112,0): 28, 23, 43, (47,113,0): 28, 23, 43, (47,114,0): 28, 23, 43, (47,115,0): 28, 23, 43, (47,116,0): 28, 23, 43, (47,117,0): 28, 23, 43, (47,118,0): 28, 23, 43, (47,119,0): 28, 23, 43, (47,120,0): 26, 21, 41, (47,121,0): 26, 21, 41, (47,122,0): 26, 21, 41, (47,123,0): 27, 22, 42, (47,124,0): 27, 22, 42, (47,125,0): 28, 23, 43, (47,126,0): 28, 23, 43, (47,127,0): 28, 23, 43, (47,128,0): 31, 23, 44, (47,129,0): 31, 23, 44, (47,130,0): 31, 23, 46, (47,131,0): 31, 23, 44, (47,132,0): 31, 23, 46, (47,133,0): 31, 23, 44, (47,134,0): 31, 23, 46, (47,135,0): 31, 23, 44, (47,136,0): 33, 25, 48, (47,137,0): 33, 25, 46, (47,138,0): 33, 25, 48, (47,139,0): 32, 24, 45, (47,140,0): 32, 24, 47, (47,141,0): 31, 23, 44, (47,142,0): 31, 23, 46, (47,143,0): 28, 23, 43, (47,144,0): 25, 22, 43, (47,145,0): 24, 23, 41, (47,146,0): 24, 22, 43, (47,147,0): 24, 23, 41, (47,148,0): 24, 22, 43, (47,149,0): 24, 23, 41, (47,150,0): 24, 22, 43, (47,151,0): 24, 23, 41, (47,152,0): 24, 22, 43, (47,153,0): 24, 23, 41, (47,154,0): 24, 22, 43, (47,155,0): 24, 23, 41, (47,156,0): 24, 22, 43, (47,157,0): 24, 23, 41, (47,158,0): 24, 22, 43, (47,159,0): 25, 22, 41, (47,160,0): 28, 23, 45, (47,161,0): 30, 22, 43, (47,162,0): 31, 23, 46, (47,163,0): 31, 23, 44, (47,164,0): 32, 24, 47, (47,165,0): 33, 25, 46, (47,166,0): 34, 26, 49, (47,167,0): 34, 26, 47, (47,168,0): 32, 24, 47, (47,169,0): 32, 24, 45, (47,170,0): 33, 25, 48, (47,171,0): 33, 25, 46, (47,172,0): 34, 26, 49, (47,173,0): 34, 26, 47, (47,174,0): 35, 27, 50, (47,175,0): 35, 27, 50, (47,176,0): 34, 26, 49, (47,177,0): 34, 26, 49, (47,178,0): 34, 26, 49, (47,179,0): 34, 26, 49, (47,180,0): 34, 26, 49, (47,181,0): 34, 26, 49, (47,182,0): 34, 26, 49, (47,183,0): 34, 26, 49, (47,184,0): 32, 24, 47, (47,185,0): 32, 24, 47, (47,186,0): 33, 25, 48, (47,187,0): 33, 25, 48, (47,188,0): 34, 26, 49, (47,189,0): 34, 26, 49, (47,190,0): 35, 27, 50, (47,191,0): 35, 27, 48, (47,192,0): 34, 26, 47, (47,193,0): 35, 26, 45, (47,194,0): 35, 26, 45, (47,195,0): 36, 27, 46, (47,196,0): 36, 27, 46, (47,197,0): 39, 27, 47, (47,198,0): 39, 27, 47, (47,199,0): 39, 27, 47, (47,200,0): 39, 26, 46, (47,201,0): 39, 26, 46, (47,202,0): 40, 27, 47, (47,203,0): 41, 26, 47, (47,204,0): 42, 27, 48, (47,205,0): 42, 27, 48, (47,206,0): 43, 28, 49, (47,207,0): 45, 27, 49, (47,208,0): 45, 28, 47, (47,209,0): 46, 29, 48, (47,210,0): 46, 29, 48, (47,211,0): 47, 30, 49, (47,212,0): 49, 32, 51, (47,213,0): 50, 33, 52, (47,214,0): 51, 32, 52, (47,215,0): 52, 33, 52, (47,216,0): 55, 36, 55, (47,217,0): 55, 36, 55, (47,218,0): 54, 35, 54, (47,219,0): 54, 35, 54, (47,220,0): 53, 34, 53, (47,221,0): 53, 34, 53, (47,222,0): 52, 33, 52, (47,223,0): 52, 33, 52, (47,224,0): 52, 33, 52, (47,225,0): 52, 33, 52, (47,226,0): 51, 32, 52, (47,227,0): 51, 32, 51, (47,228,0): 50, 31, 51, (47,229,0): 50, 31, 50, (47,230,0): 49, 30, 50, (47,231,0): 49, 30, 49, (47,232,0): 48, 29, 49, (47,233,0): 49, 30, 49, (47,234,0): 50, 31, 51, (47,235,0): 52, 33, 52, (47,236,0): 52, 33, 53, (47,237,0): 52, 33, 52, (47,238,0): 51, 32, 52, (47,239,0): 53, 32, 51, (47,240,0): 56, 33, 49, (47,241,0): 57, 35, 48, (47,242,0): 57, 35, 48, (47,243,0): 58, 36, 49, (47,244,0): 59, 35, 49, (47,245,0): 60, 36, 50, (47,246,0): 60, 36, 50, (47,247,0): 60, 36, 50, (47,248,0): 62, 35, 50, (47,249,0): 63, 36, 51, (47,250,0): 63, 36, 51, (47,251,0): 64, 38, 51, (47,252,0): 65, 37, 51, (47,253,0): 66, 38, 52, (47,254,0): 66, 38, 52, (47,255,0): 66, 38, 52, (47,256,0): 67, 41, 54, (47,257,0): 64, 41, 51, (47,258,0): 65, 39, 50, (47,259,0): 65, 39, 50, (47,260,0): 66, 40, 51, (47,261,0): 67, 41, 50, (47,262,0): 69, 42, 51, (47,263,0): 70, 43, 50, (47,264,0): 72, 42, 50, (47,265,0): 72, 42, 50, (47,266,0): 74, 44, 52, (47,267,0): 75, 46, 51, (47,268,0): 78, 47, 53, (47,269,0): 79, 48, 54, (47,270,0): 80, 49, 55, (47,271,0): 82, 49, 56, (47,272,0): 80, 47, 54, (47,273,0): 82, 47, 54, (47,274,0): 82, 47, 53, (47,275,0): 83, 48, 54, (47,276,0): 83, 48, 54, (47,277,0): 84, 49, 55, (47,278,0): 85, 48, 55, (47,279,0): 85, 49, 53, (47,280,0): 88, 49, 54, (47,281,0): 88, 49, 54, (47,282,0): 89, 50, 55, (47,283,0): 90, 51, 56, (47,284,0): 91, 52, 55, (47,285,0): 92, 53, 56, (47,286,0): 94, 53, 57, (47,287,0): 94, 54, 55, (47,288,0): 101, 57, 56, (47,289,0): 103, 59, 56, (47,290,0): 106, 61, 58, (47,291,0): 108, 65, 59, (47,292,0): 111, 66, 61, (47,293,0): 113, 68, 62, (47,294,0): 113, 68, 62, (47,295,0): 113, 69, 60, (47,296,0): 112, 68, 59, (47,297,0): 113, 69, 58, (47,298,0): 115, 71, 60, (47,299,0): 119, 75, 62, (47,300,0): 123, 79, 66, (47,301,0): 128, 85, 69, (47,302,0): 132, 89, 73, (47,303,0): 138, 91, 71, (47,304,0): 147, 91, 64, (47,305,0): 160, 100, 66, (47,306,0): 175, 110, 70, (47,307,0): 184, 117, 72, (47,308,0): 189, 119, 68, (47,309,0): 188, 119, 64, (47,310,0): 185, 118, 63, (47,311,0): 183, 121, 64, (47,312,0): 182, 123, 67, (47,313,0): 179, 124, 68, (47,314,0): 175, 124, 69, (47,315,0): 173, 122, 69, (47,316,0): 172, 120, 70, (47,317,0): 171, 119, 69, (47,318,0): 170, 118, 68, (47,319,0): 168, 118, 69, (47,320,0): 169, 119, 70, (47,321,0): 166, 118, 70, (47,322,0): 164, 116, 68, (47,323,0): 160, 114, 65, (47,324,0): 156, 114, 64, (47,325,0): 154, 114, 65, (47,326,0): 151, 115, 65, (47,327,0): 149, 115, 67, (47,328,0): 146, 112, 64, (47,329,0): 145, 113, 66, (47,330,0): 145, 112, 67, (47,331,0): 144, 111, 66, (47,332,0): 144, 111, 66, (47,333,0): 144, 109, 67, (47,334,0): 144, 109, 67, (47,335,0): 143, 108, 66, (47,336,0): 146, 111, 69, (47,337,0): 146, 111, 71, (47,338,0): 145, 110, 70, (47,339,0): 144, 109, 71, (47,340,0): 143, 108, 70, (47,341,0): 142, 107, 69, (47,342,0): 141, 105, 69, (47,343,0): 141, 105, 69, (47,344,0): 136, 100, 66, (47,345,0): 137, 101, 67, (47,346,0): 139, 103, 69, (47,347,0): 140, 104, 70, (47,348,0): 140, 104, 72, (47,349,0): 140, 104, 72, (47,350,0): 140, 104, 72, (47,351,0): 139, 102, 73, (47,352,0): 138, 101, 72, (47,353,0): 139, 102, 75, (47,354,0): 139, 102, 75, (47,355,0): 140, 103, 76, (47,356,0): 141, 104, 77, (47,357,0): 142, 105, 78, (47,358,0): 142, 105, 78, (47,359,0): 143, 106, 80, (47,360,0): 142, 105, 79, (47,361,0): 142, 105, 79, (47,362,0): 142, 104, 81, (47,363,0): 142, 104, 81, (47,364,0): 142, 104, 81, (47,365,0): 142, 104, 81, (47,366,0): 142, 104, 81, (47,367,0): 144, 103, 81, (47,368,0): 144, 102, 78, (47,369,0): 146, 101, 78, (47,370,0): 146, 101, 78, (47,371,0): 146, 101, 78, (47,372,0): 146, 101, 78, (47,373,0): 144, 102, 78, (47,374,0): 146, 101, 80, (47,375,0): 144, 102, 80, (47,376,0): 145, 102, 83, (47,377,0): 144, 101, 82, (47,378,0): 144, 101, 82, (47,379,0): 143, 100, 81, (47,380,0): 144, 101, 82, (47,381,0): 145, 102, 83, (47,382,0): 147, 104, 87, (47,383,0): 148, 105, 86, (47,384,0): 149, 106, 87, (47,385,0): 150, 107, 88, (47,386,0): 150, 107, 88, (47,387,0): 153, 108, 87, (47,388,0): 153, 108, 87, (47,389,0): 154, 109, 86, (47,390,0): 155, 109, 86, (47,391,0): 155, 109, 85, (47,392,0): 164, 114, 91, (47,393,0): 165, 115, 90, (47,394,0): 166, 114, 90, (47,395,0): 170, 116, 90, (47,396,0): 172, 116, 91, (47,397,0): 174, 117, 90, (47,398,0): 176, 116, 90, (47,399,0): 177, 117, 89, (47,400,0): 185, 121, 93, (47,401,0): 185, 122, 91, (47,402,0): 186, 121, 91, (47,403,0): 186, 121, 89, (47,404,0): 185, 120, 88, (47,405,0): 185, 120, 88, (47,406,0): 186, 120, 88, (47,407,0): 186, 120, 86, (47,408,0): 192, 124, 89, (47,409,0): 193, 125, 90, (47,410,0): 194, 126, 89, (47,411,0): 195, 127, 90, (47,412,0): 197, 129, 90, (47,413,0): 198, 131, 89, (47,414,0): 200, 133, 91, (47,415,0): 200, 133, 91, (47,416,0): 199, 131, 92, (47,417,0): 199, 131, 92, (47,418,0): 199, 132, 90, (47,419,0): 201, 132, 90, (47,420,0): 202, 134, 89, (47,421,0): 203, 135, 88, (47,422,0): 203, 137, 89, (47,423,0): 201, 137, 89, (47,424,0): 197, 136, 91, (47,425,0): 184, 127, 84, (47,426,0): 167, 115, 76, (47,427,0): 156, 107, 74, (47,428,0): 149, 104, 75, (47,429,0): 143, 98, 75, (47,430,0): 133, 90, 71, (47,431,0): 123, 84, 67, (47,432,0): 113, 80, 63, (47,433,0): 108, 77, 59, (47,434,0): 101, 72, 56, (47,435,0): 97, 68, 50, (47,436,0): 97, 68, 52, (47,437,0): 100, 71, 53, (47,438,0): 104, 77, 60, (47,439,0): 107, 80, 61, (47,440,0): 106, 79, 62, (47,441,0): 106, 79, 60, (47,442,0): 106, 79, 62, (47,443,0): 106, 79, 60, (47,444,0): 107, 80, 63, (47,445,0): 108, 79, 61, (47,446,0): 108, 79, 63, (47,447,0): 108, 79, 63, (47,448,0): 111, 79, 64, (47,449,0): 109, 77, 62, (47,450,0): 105, 76, 60, (47,451,0): 103, 74, 58, (47,452,0): 102, 73, 59, (47,453,0): 102, 73, 59, (47,454,0): 103, 75, 63, (47,455,0): 104, 76, 64, (47,456,0): 94, 68, 55, (47,457,0): 94, 67, 56, (47,458,0): 93, 66, 55, (47,459,0): 92, 65, 56, (47,460,0): 88, 64, 54, (47,461,0): 87, 62, 55, (47,462,0): 86, 61, 54, (47,463,0): 85, 60, 53, (47,464,0): 87, 59, 55, (47,465,0): 88, 60, 57, (47,466,0): 90, 60, 58, (47,467,0): 91, 63, 60, (47,468,0): 92, 64, 61, (47,469,0): 91, 66, 62, (47,470,0): 91, 66, 62, (47,471,0): 91, 66, 62, (47,472,0): 88, 63, 59, (47,473,0): 87, 63, 59, (47,474,0): 87, 63, 59, (47,475,0): 85, 64, 59, (47,476,0): 85, 64, 59, (47,477,0): 85, 64, 59, (47,478,0): 85, 64, 59, (47,479,0): 85, 64, 59, (47,480,0): 87, 66, 61, (47,481,0): 86, 66, 59, (47,482,0): 88, 65, 59, (47,483,0): 88, 65, 57, (47,484,0): 88, 65, 57, (47,485,0): 90, 68, 57, (47,486,0): 93, 69, 59, (47,487,0): 94, 70, 58, (47,488,0): 94, 70, 60, (47,489,0): 93, 69, 59, (47,490,0): 94, 67, 58, (47,491,0): 93, 66, 59, (47,492,0): 92, 65, 58, (47,493,0): 91, 63, 59, (47,494,0): 92, 63, 59, (47,495,0): 90, 62, 59, (47,496,0): 81, 56, 52, (47,497,0): 81, 57, 55, (47,498,0): 82, 56, 55, (47,499,0): 83, 57, 56, (47,500,0): 84, 58, 57, (47,501,0): 85, 59, 58, (47,502,0): 85, 59, 58, (47,503,0): 85, 59, 58, (47,504,0): 84, 58, 57, (47,505,0): 84, 58, 57, (47,506,0): 85, 59, 58, (47,507,0): 86, 60, 59, (47,508,0): 87, 61, 60, (47,509,0): 87, 61, 60, (47,510,0): 90, 62, 61, (47,511,0): 88, 63, 59, (47,512,0): 88, 63, 59, (47,513,0): 88, 63, 58, (47,514,0): 88, 63, 59, (47,515,0): 89, 64, 59, (47,516,0): 89, 64, 60, (47,517,0): 90, 65, 60, (47,518,0): 90, 65, 61, (47,519,0): 91, 66, 61, (47,520,0): 95, 70, 66, (47,521,0): 95, 70, 65, (47,522,0): 95, 70, 66, (47,523,0): 95, 70, 65, (47,524,0): 95, 70, 66, (47,525,0): 95, 70, 65, (47,526,0): 95, 70, 66, (47,527,0): 95, 70, 66, (47,528,0): 90, 66, 62, (47,529,0): 90, 66, 64, (47,530,0): 90, 66, 64, (47,531,0): 90, 66, 64, (47,532,0): 87, 66, 65, (47,533,0): 85, 64, 63, (47,534,0): 83, 62, 61, (47,535,0): 82, 60, 62, (47,536,0): 85, 63, 65, (47,537,0): 86, 64, 66, (47,538,0): 87, 65, 68, (47,539,0): 87, 65, 68, (47,540,0): 86, 64, 66, (47,541,0): 83, 61, 63, (47,542,0): 80, 58, 61, (47,543,0): 78, 58, 60, (47,544,0): 73, 54, 58, (47,545,0): 71, 55, 58, (47,546,0): 73, 54, 58, (47,547,0): 72, 53, 57, (47,548,0): 73, 52, 57, (47,549,0): 72, 51, 58, (47,550,0): 75, 49, 58, (47,551,0): 74, 48, 59, (47,552,0): 69, 43, 54, (47,553,0): 70, 44, 57, (47,554,0): 68, 44, 58, (47,555,0): 69, 45, 59, (47,556,0): 70, 46, 62, (47,557,0): 73, 46, 63, (47,558,0): 74, 45, 63, (47,559,0): 74, 46, 60, (47,560,0): 72, 46, 55, (47,561,0): 70, 47, 53, (47,562,0): 70, 47, 53, (47,563,0): 70, 48, 51, (47,564,0): 69, 46, 52, (47,565,0): 69, 47, 50, (47,566,0): 69, 47, 50, (47,567,0): 69, 47, 50, (47,568,0): 73, 51, 54, (47,569,0): 73, 51, 54, (47,570,0): 74, 52, 55, (47,571,0): 74, 52, 55, (47,572,0): 74, 52, 55, (47,573,0): 72, 50, 53, (47,574,0): 71, 49, 52, (47,575,0): 70, 48, 51, (47,576,0): 76, 51, 57, (47,577,0): 74, 49, 55, (47,578,0): 72, 47, 53, (47,579,0): 70, 47, 53, (47,580,0): 72, 50, 53, (47,581,0): 72, 50, 53, (47,582,0): 69, 49, 51, (47,583,0): 67, 47, 49, (47,584,0): 66, 47, 49, (47,585,0): 65, 46, 48, (47,586,0): 65, 47, 47, (47,587,0): 62, 46, 46, (47,588,0): 60, 44, 44, (47,589,0): 59, 43, 43, (47,590,0): 58, 44, 43, (47,591,0): 58, 42, 43, (47,592,0): 62, 43, 47, (47,593,0): 61, 42, 48, (47,594,0): 59, 40, 46, (47,595,0): 58, 39, 43, (47,596,0): 57, 38, 40, (47,597,0): 57, 38, 40, (47,598,0): 57, 39, 39, (47,599,0): 58, 40, 40, (48,0,0): 37, 26, 43, (48,1,0): 35, 26, 43, (48,2,0): 37, 26, 42, (48,3,0): 37, 26, 42, (48,4,0): 37, 26, 42, (48,5,0): 37, 26, 42, (48,6,0): 37, 26, 40, (48,7,0): 38, 26, 40, (48,8,0): 39, 27, 39, (48,9,0): 40, 26, 39, (48,10,0): 41, 27, 40, (48,11,0): 41, 27, 40, (48,12,0): 44, 28, 39, (48,13,0): 44, 28, 39, (48,14,0): 45, 29, 40, (48,15,0): 45, 29, 40, (48,16,0): 49, 31, 43, (48,17,0): 49, 31, 43, (48,18,0): 49, 31, 43, (48,19,0): 49, 31, 43, (48,20,0): 49, 31, 43, (48,21,0): 49, 31, 43, (48,22,0): 49, 31, 43, (48,23,0): 49, 31, 43, (48,24,0): 50, 32, 44, (48,25,0): 50, 32, 44, (48,26,0): 50, 32, 44, (48,27,0): 50, 32, 44, (48,28,0): 50, 32, 44, (48,29,0): 50, 32, 44, (48,30,0): 50, 32, 44, (48,31,0): 50, 32, 44, (48,32,0): 45, 28, 44, (48,33,0): 45, 28, 44, (48,34,0): 45, 28, 44, (48,35,0): 45, 28, 44, (48,36,0): 45, 28, 44, (48,37,0): 45, 28, 44, (48,38,0): 45, 28, 44, (48,39,0): 45, 28, 44, (48,40,0): 49, 32, 48, (48,41,0): 48, 31, 47, (48,42,0): 47, 30, 46, (48,43,0): 46, 29, 45, (48,44,0): 44, 27, 43, (48,45,0): 43, 26, 42, (48,46,0): 42, 25, 41, (48,47,0): 42, 25, 41, (48,48,0): 44, 27, 43, (48,49,0): 42, 28, 43, (48,50,0): 44, 27, 43, (48,51,0): 42, 28, 43, (48,52,0): 44, 27, 43, (48,53,0): 42, 28, 43, (48,54,0): 44, 27, 43, (48,55,0): 42, 28, 43, (48,56,0): 46, 29, 45, (48,57,0): 44, 30, 45, (48,58,0): 46, 29, 45, (48,59,0): 43, 29, 44, (48,60,0): 45, 28, 44, (48,61,0): 42, 28, 43, (48,62,0): 44, 27, 43, (48,63,0): 44, 27, 43, (48,64,0): 46, 30, 43, (48,65,0): 47, 29, 41, (48,66,0): 46, 28, 42, (48,67,0): 43, 27, 40, (48,68,0): 42, 24, 38, (48,69,0): 40, 24, 37, (48,70,0): 39, 23, 36, (48,71,0): 36, 22, 37, (48,72,0): 34, 20, 35, (48,73,0): 33, 20, 37, (48,74,0): 33, 20, 37, (48,75,0): 32, 19, 36, (48,76,0): 32, 19, 37, (48,77,0): 30, 19, 36, (48,78,0): 31, 18, 36, (48,79,0): 30, 18, 38, (48,80,0): 26, 18, 39, (48,81,0): 24, 19, 41, (48,82,0): 24, 19, 41, (48,83,0): 24, 19, 41, (48,84,0): 24, 19, 41, (48,85,0): 24, 19, 41, (48,86,0): 24, 19, 41, (48,87,0): 24, 19, 41, (48,88,0): 24, 19, 41, (48,89,0): 24, 19, 41, (48,90,0): 24, 19, 41, (48,91,0): 24, 19, 41, (48,92,0): 24, 19, 41, (48,93,0): 24, 19, 41, (48,94,0): 24, 19, 41, (48,95,0): 24, 19, 41, (48,96,0): 28, 20, 41, (48,97,0): 29, 22, 40, (48,98,0): 29, 21, 42, (48,99,0): 30, 23, 41, (48,100,0): 31, 23, 44, (48,101,0): 32, 25, 43, (48,102,0): 32, 24, 45, (48,103,0): 33, 26, 44, (48,104,0): 31, 23, 44, (48,105,0): 31, 24, 42, (48,106,0): 31, 23, 44, (48,107,0): 31, 24, 42, (48,108,0): 31, 23, 44, (48,109,0): 31, 24, 42, (48,110,0): 31, 23, 44, (48,111,0): 31, 24, 42, (48,112,0): 30, 21, 38, (48,113,0): 30, 21, 38, (48,114,0): 31, 22, 39, (48,115,0): 31, 22, 39, (48,116,0): 32, 23, 40, (48,117,0): 32, 23, 40, (48,118,0): 33, 24, 41, (48,119,0): 33, 24, 41, (48,120,0): 32, 23, 40, (48,121,0): 32, 23, 40, (48,122,0): 32, 23, 40, (48,123,0): 33, 24, 41, (48,124,0): 33, 24, 41, (48,125,0): 34, 25, 42, (48,126,0): 34, 25, 42, (48,127,0): 34, 25, 42, (48,128,0): 33, 24, 43, (48,129,0): 33, 24, 43, (48,130,0): 33, 24, 45, (48,131,0): 33, 24, 43, (48,132,0): 33, 24, 45, (48,133,0): 33, 24, 43, (48,134,0): 33, 24, 45, (48,135,0): 33, 24, 43, (48,136,0): 36, 27, 48, (48,137,0): 35, 26, 45, (48,138,0): 33, 24, 45, (48,139,0): 32, 23, 42, (48,140,0): 31, 22, 43, (48,141,0): 32, 23, 42, (48,142,0): 32, 23, 44, (48,143,0): 32, 25, 43, (48,144,0): 31, 23, 44, (48,145,0): 30, 23, 41, (48,146,0): 30, 22, 43, (48,147,0): 29, 22, 40, (48,148,0): 29, 21, 42, (48,149,0): 28, 21, 39, (48,150,0): 28, 20, 41, (48,151,0): 28, 21, 39, (48,152,0): 26, 18, 39, (48,153,0): 26, 19, 37, (48,154,0): 27, 19, 40, (48,155,0): 27, 20, 38, (48,156,0): 28, 20, 41, (48,157,0): 28, 21, 39, (48,158,0): 29, 21, 42, (48,159,0): 29, 22, 40, (48,160,0): 31, 23, 44, (48,161,0): 31, 24, 42, (48,162,0): 31, 23, 44, (48,163,0): 31, 24, 42, (48,164,0): 31, 23, 44, (48,165,0): 31, 24, 42, (48,166,0): 31, 23, 44, (48,167,0): 31, 24, 42, (48,168,0): 32, 24, 45, (48,169,0): 32, 25, 43, (48,170,0): 33, 25, 46, (48,171,0): 33, 26, 44, (48,172,0): 34, 26, 47, (48,173,0): 34, 27, 45, (48,174,0): 35, 27, 48, (48,175,0): 35, 27, 48, (48,176,0): 33, 25, 48, (48,177,0): 33, 25, 48, (48,178,0): 33, 25, 48, (48,179,0): 33, 25, 48, (48,180,0): 34, 26, 49, (48,181,0): 34, 26, 49, (48,182,0): 34, 26, 49, (48,183,0): 34, 26, 49, (48,184,0): 31, 23, 46, (48,185,0): 31, 23, 46, (48,186,0): 31, 23, 46, (48,187,0): 32, 24, 47, (48,188,0): 32, 24, 47, (48,189,0): 33, 25, 48, (48,190,0): 33, 25, 48, (48,191,0): 33, 25, 46, (48,192,0): 35, 27, 48, (48,193,0): 34, 27, 45, (48,194,0): 31, 24, 42, (48,195,0): 30, 23, 41, (48,196,0): 30, 23, 41, (48,197,0): 34, 25, 44, (48,198,0): 37, 28, 47, (48,199,0): 39, 30, 49, (48,200,0): 38, 26, 46, (48,201,0): 38, 26, 46, (48,202,0): 39, 27, 47, (48,203,0): 40, 27, 47, (48,204,0): 41, 28, 48, (48,205,0): 41, 28, 48, (48,206,0): 42, 29, 49, (48,207,0): 43, 28, 49, (48,208,0): 47, 30, 49, (48,209,0): 48, 29, 49, (48,210,0): 48, 29, 48, (48,211,0): 49, 30, 49, (48,212,0): 49, 30, 49, (48,213,0): 50, 31, 50, (48,214,0): 52, 31, 50, (48,215,0): 53, 32, 49, (48,216,0): 56, 35, 52, (48,217,0): 55, 34, 51, (48,218,0): 56, 33, 51, (48,219,0): 55, 32, 50, (48,220,0): 55, 32, 48, (48,221,0): 54, 31, 47, (48,222,0): 55, 31, 47, (48,223,0): 54, 31, 47, (48,224,0): 53, 32, 49, (48,225,0): 51, 33, 49, (48,226,0): 51, 32, 51, (48,227,0): 51, 33, 49, (48,228,0): 51, 32, 51, (48,229,0): 51, 33, 49, (48,230,0): 51, 32, 51, (48,231,0): 51, 33, 49, (48,232,0): 49, 30, 49, (48,233,0): 50, 32, 48, (48,234,0): 51, 32, 51, (48,235,0): 52, 34, 50, (48,236,0): 53, 34, 53, (48,237,0): 54, 36, 52, (48,238,0): 54, 35, 54, (48,239,0): 57, 36, 53, (48,240,0): 58, 35, 51, (48,241,0): 60, 36, 52, (48,242,0): 60, 36, 52, (48,243,0): 61, 37, 53, (48,244,0): 63, 39, 53, (48,245,0): 64, 40, 54, (48,246,0): 64, 40, 53, (48,247,0): 65, 41, 54, (48,248,0): 63, 39, 52, (48,249,0): 63, 39, 52, (48,250,0): 63, 39, 52, (48,251,0): 63, 40, 50, (48,252,0): 65, 39, 50, (48,253,0): 65, 39, 50, (48,254,0): 65, 39, 50, (48,255,0): 65, 39, 50, (48,256,0): 65, 39, 50, (48,257,0): 65, 39, 50, (48,258,0): 66, 38, 50, (48,259,0): 67, 40, 49, (48,260,0): 67, 40, 49, (48,261,0): 67, 40, 49, (48,262,0): 69, 39, 49, (48,263,0): 69, 39, 47, (48,264,0): 74, 43, 51, (48,265,0): 74, 43, 49, (48,266,0): 75, 44, 50, (48,267,0): 75, 44, 50, (48,268,0): 77, 44, 51, (48,269,0): 77, 45, 50, (48,270,0): 78, 46, 51, (48,271,0): 78, 46, 51, (48,272,0): 82, 47, 51, (48,273,0): 83, 47, 51, (48,274,0): 83, 47, 51, (48,275,0): 84, 48, 52, (48,276,0): 84, 48, 52, (48,277,0): 85, 49, 53, (48,278,0): 85, 49, 53, (48,279,0): 85, 49, 51, (48,280,0): 86, 50, 52, (48,281,0): 86, 50, 52, (48,282,0): 86, 50, 52, (48,283,0): 86, 50, 52, (48,284,0): 88, 52, 54, (48,285,0): 90, 54, 56, (48,286,0): 95, 56, 59, (48,287,0): 96, 57, 58, (48,288,0): 98, 56, 57, (48,289,0): 100, 59, 57, (48,290,0): 106, 62, 61, (48,291,0): 107, 66, 62, (48,292,0): 111, 68, 62, (48,293,0): 112, 69, 62, (48,294,0): 112, 69, 62, (48,295,0): 111, 68, 59, (48,296,0): 111, 67, 56, (48,297,0): 114, 70, 57, (48,298,0): 121, 75, 60, (48,299,0): 126, 80, 64, (48,300,0): 129, 83, 67, (48,301,0): 131, 86, 67, (48,302,0): 131, 86, 67, (48,303,0): 133, 85, 63, (48,304,0): 146, 92, 64, (48,305,0): 169, 109, 75, (48,306,0): 184, 117, 75, (48,307,0): 183, 113, 64, (48,308,0): 184, 111, 58, (48,309,0): 193, 123, 64, (48,310,0): 194, 128, 68, (48,311,0): 184, 124, 64, (48,312,0): 185, 129, 70, (48,313,0): 181, 129, 69, (48,314,0): 178, 127, 64, (48,315,0): 176, 125, 62, (48,316,0): 174, 123, 60, (48,317,0): 173, 121, 61, (48,318,0): 171, 122, 63, (48,319,0): 171, 122, 64, (48,320,0): 169, 118, 63, (48,321,0): 169, 118, 65, (48,322,0): 168, 118, 65, (48,323,0): 166, 119, 67, (48,324,0): 161, 118, 65, (48,325,0): 157, 116, 64, (48,326,0): 151, 114, 62, (48,327,0): 148, 112, 62, (48,328,0): 153, 117, 69, (48,329,0): 150, 116, 70, (48,330,0): 149, 115, 70, (48,331,0): 147, 113, 68, (48,332,0): 146, 111, 69, (48,333,0): 146, 108, 69, (48,334,0): 145, 107, 68, (48,335,0): 144, 106, 67, (48,336,0): 150, 115, 75, (48,337,0): 149, 115, 77, (48,338,0): 147, 113, 75, (48,339,0): 145, 111, 74, (48,340,0): 143, 109, 72, (48,341,0): 141, 107, 70, (48,342,0): 139, 105, 70, (48,343,0): 138, 103, 71, (48,344,0): 137, 102, 72, (48,345,0): 137, 102, 72, (48,346,0): 137, 102, 74, (48,347,0): 138, 103, 75, (48,348,0): 138, 102, 76, (48,349,0): 138, 102, 76, (48,350,0): 139, 103, 77, (48,351,0): 139, 103, 77, (48,352,0): 138, 101, 75, (48,353,0): 137, 100, 74, (48,354,0): 137, 100, 74, (48,355,0): 137, 100, 74, (48,356,0): 138, 101, 75, (48,357,0): 140, 103, 77, (48,358,0): 142, 105, 79, (48,359,0): 143, 105, 82, (48,360,0): 144, 106, 83, (48,361,0): 144, 106, 83, (48,362,0): 144, 106, 83, (48,363,0): 144, 106, 83, (48,364,0): 144, 106, 83, (48,365,0): 144, 106, 83, (48,366,0): 144, 106, 83, (48,367,0): 146, 105, 83, (48,368,0): 149, 104, 83, (48,369,0): 150, 103, 83, (48,370,0): 149, 102, 82, (48,371,0): 149, 102, 82, (48,372,0): 148, 101, 81, (48,373,0): 146, 101, 80, (48,374,0): 146, 99, 79, (48,375,0): 145, 100, 79, (48,376,0): 147, 102, 81, (48,377,0): 147, 102, 81, (48,378,0): 147, 102, 81, (48,379,0): 147, 102, 81, (48,380,0): 145, 103, 81, (48,381,0): 146, 104, 82, (48,382,0): 146, 103, 84, (48,383,0): 146, 103, 84, (48,384,0): 150, 103, 87, (48,385,0): 151, 104, 88, (48,386,0): 152, 105, 89, (48,387,0): 152, 107, 88, (48,388,0): 154, 109, 88, (48,389,0): 156, 111, 88, (48,390,0): 158, 112, 89, (48,391,0): 158, 112, 88, (48,392,0): 165, 115, 90, (48,393,0): 166, 115, 88, (48,394,0): 168, 114, 86, (48,395,0): 171, 114, 85, (48,396,0): 177, 116, 88, (48,397,0): 182, 118, 90, (48,398,0): 187, 122, 94, (48,399,0): 189, 124, 92, (48,400,0): 191, 127, 91, (48,401,0): 190, 128, 89, (48,402,0): 191, 127, 89, (48,403,0): 191, 127, 91, (48,404,0): 192, 126, 91, (48,405,0): 192, 126, 92, (48,406,0): 192, 126, 92, (48,407,0): 192, 126, 92, (48,408,0): 195, 127, 92, (48,409,0): 195, 127, 92, (48,410,0): 193, 128, 90, (48,411,0): 193, 128, 90, (48,412,0): 194, 129, 89, (48,413,0): 196, 131, 89, (48,414,0): 198, 133, 91, (48,415,0): 199, 134, 92, (48,416,0): 203, 138, 98, (48,417,0): 203, 138, 98, (48,418,0): 202, 133, 91, (48,419,0): 199, 128, 84, (48,420,0): 204, 130, 85, (48,421,0): 214, 137, 91, (48,422,0): 213, 139, 92, (48,423,0): 207, 137, 88, (48,424,0): 197, 133, 87, (48,425,0): 185, 126, 82, (48,426,0): 172, 119, 77, (48,427,0): 162, 112, 75, (48,428,0): 153, 108, 75, (48,429,0): 146, 102, 75, (48,430,0): 134, 92, 68, (48,431,0): 125, 84, 64, (48,432,0): 123, 84, 67, (48,433,0): 117, 80, 62, (48,434,0): 110, 74, 58, (48,435,0): 103, 70, 51, (48,436,0): 102, 69, 52, (48,437,0): 105, 74, 54, (48,438,0): 109, 80, 62, (48,439,0): 113, 85, 64, (48,440,0): 111, 84, 65, (48,441,0): 111, 84, 63, (48,442,0): 113, 84, 66, (48,443,0): 113, 85, 64, (48,444,0): 113, 84, 66, (48,445,0): 113, 82, 62, (48,446,0): 112, 81, 63, (48,447,0): 111, 80, 60, (48,448,0): 114, 83, 63, (48,449,0): 109, 81, 59, (48,450,0): 106, 78, 57, (48,451,0): 105, 77, 56, (48,452,0): 104, 77, 58, (48,453,0): 103, 76, 57, (48,454,0): 100, 73, 56, (48,455,0): 97, 70, 53, (48,456,0): 97, 71, 56, (48,457,0): 96, 70, 57, (48,458,0): 92, 69, 55, (48,459,0): 90, 66, 54, (48,460,0): 88, 64, 52, (48,461,0): 88, 64, 54, (48,462,0): 87, 65, 54, (48,463,0): 88, 63, 56, (48,464,0): 84, 59, 54, (48,465,0): 85, 60, 56, (48,466,0): 88, 60, 57, (48,467,0): 88, 63, 59, (48,468,0): 89, 64, 60, (48,469,0): 89, 65, 61, (48,470,0): 89, 65, 61, (48,471,0): 89, 65, 61, (48,472,0): 88, 64, 60, (48,473,0): 86, 65, 60, (48,474,0): 86, 65, 60, (48,475,0): 85, 66, 60, (48,476,0): 85, 66, 60, (48,477,0): 85, 66, 60, (48,478,0): 85, 66, 60, (48,479,0): 85, 66, 60, (48,480,0): 90, 67, 61, (48,481,0): 90, 67, 59, (48,482,0): 90, 65, 58, (48,483,0): 90, 65, 58, (48,484,0): 91, 66, 59, (48,485,0): 93, 68, 61, (48,486,0): 94, 69, 62, (48,487,0): 95, 71, 61, (48,488,0): 94, 69, 62, (48,489,0): 92, 67, 60, (48,490,0): 90, 65, 58, (48,491,0): 88, 63, 56, (48,492,0): 87, 62, 55, (48,493,0): 87, 62, 55, (48,494,0): 90, 63, 56, (48,495,0): 88, 63, 58, (48,496,0): 86, 62, 60, (48,497,0): 84, 63, 62, (48,498,0): 85, 61, 61, (48,499,0): 84, 60, 60, (48,500,0): 83, 59, 59, (48,501,0): 82, 58, 58, (48,502,0): 82, 56, 57, (48,503,0): 82, 56, 57, (48,504,0): 83, 57, 58, (48,505,0): 83, 57, 58, (48,506,0): 84, 55, 57, (48,507,0): 85, 56, 58, (48,508,0): 86, 57, 59, (48,509,0): 87, 58, 60, (48,510,0): 90, 60, 62, (48,511,0): 90, 62, 61, (48,512,0): 89, 64, 59, (48,513,0): 90, 65, 58, (48,514,0): 90, 65, 60, (48,515,0): 91, 66, 59, (48,516,0): 93, 68, 63, (48,517,0): 94, 69, 62, (48,518,0): 94, 69, 64, (48,519,0): 95, 70, 63, (48,520,0): 95, 70, 65, (48,521,0): 96, 71, 64, (48,522,0): 96, 71, 66, (48,523,0): 97, 72, 65, (48,524,0): 96, 71, 66, (48,525,0): 95, 70, 63, (48,526,0): 93, 68, 63, (48,527,0): 92, 67, 62, (48,528,0): 92, 64, 61, (48,529,0): 93, 63, 61, (48,530,0): 92, 64, 63, (48,531,0): 90, 64, 63, (48,532,0): 88, 64, 64, (48,533,0): 84, 62, 64, (48,534,0): 81, 59, 61, (48,535,0): 79, 59, 61, (48,536,0): 84, 64, 66, (48,537,0): 83, 63, 65, (48,538,0): 81, 61, 62, (48,539,0): 79, 59, 60, (48,540,0): 80, 59, 58, (48,541,0): 81, 60, 59, (48,542,0): 82, 58, 56, (48,543,0): 77, 57, 56, (48,544,0): 67, 53, 53, (48,545,0): 67, 55, 57, (48,546,0): 68, 56, 58, (48,547,0): 70, 55, 58, (48,548,0): 73, 54, 58, (48,549,0): 74, 51, 57, (48,550,0): 77, 50, 57, (48,551,0): 77, 50, 57, (48,552,0): 77, 50, 57, (48,553,0): 73, 50, 56, (48,554,0): 71, 52, 58, (48,555,0): 68, 51, 57, (48,556,0): 69, 49, 58, (48,557,0): 70, 47, 57, (48,558,0): 74, 44, 56, (48,559,0): 74, 42, 55, (48,560,0): 69, 43, 54, (48,561,0): 65, 44, 51, (48,562,0): 64, 43, 50, (48,563,0): 64, 43, 48, (48,564,0): 65, 44, 51, (48,565,0): 66, 45, 50, (48,566,0): 67, 46, 51, (48,567,0): 68, 47, 52, (48,568,0): 72, 52, 54, (48,569,0): 73, 53, 55, (48,570,0): 74, 54, 56, (48,571,0): 76, 56, 58, (48,572,0): 76, 56, 57, (48,573,0): 76, 56, 57, (48,574,0): 75, 55, 56, (48,575,0): 75, 55, 56, (48,576,0): 73, 51, 53, (48,577,0): 73, 52, 51, (48,578,0): 73, 52, 51, (48,579,0): 72, 52, 51, (48,580,0): 72, 52, 53, (48,581,0): 71, 51, 52, (48,582,0): 71, 51, 52, (48,583,0): 71, 51, 52, (48,584,0): 70, 50, 51, (48,585,0): 69, 49, 50, (48,586,0): 69, 49, 51, (48,587,0): 67, 48, 50, (48,588,0): 65, 46, 48, (48,589,0): 64, 45, 47, (48,590,0): 64, 45, 47, (48,591,0): 63, 44, 46, (48,592,0): 62, 41, 46, (48,593,0): 61, 40, 45, (48,594,0): 59, 38, 43, (48,595,0): 57, 37, 39, (48,596,0): 56, 36, 38, (48,597,0): 56, 36, 38, (48,598,0): 56, 36, 38, (48,599,0): 57, 37, 39, (49,0,0): 35, 26, 43, (49,1,0): 35, 26, 43, (49,2,0): 35, 27, 42, (49,3,0): 35, 27, 42, (49,4,0): 37, 26, 42, (49,5,0): 37, 26, 42, (49,6,0): 37, 26, 40, (49,7,0): 37, 26, 40, (49,8,0): 39, 27, 39, (49,9,0): 39, 27, 39, (49,10,0): 40, 26, 39, (49,11,0): 41, 27, 40, (49,12,0): 41, 28, 38, (49,13,0): 42, 29, 39, (49,14,0): 44, 28, 39, (49,15,0): 45, 29, 40, (49,16,0): 49, 31, 43, (49,17,0): 49, 31, 43, (49,18,0): 49, 31, 43, (49,19,0): 49, 31, 43, (49,20,0): 49, 31, 43, (49,21,0): 49, 31, 43, (49,22,0): 49, 31, 43, (49,23,0): 49, 31, 43, (49,24,0): 50, 32, 44, (49,25,0): 50, 32, 44, (49,26,0): 50, 32, 44, (49,27,0): 50, 32, 44, (49,28,0): 50, 32, 44, (49,29,0): 50, 32, 44, (49,30,0): 50, 32, 44, (49,31,0): 50, 32, 44, (49,32,0): 45, 28, 44, (49,33,0): 45, 28, 44, (49,34,0): 45, 28, 44, (49,35,0): 45, 28, 44, (49,36,0): 45, 28, 44, (49,37,0): 45, 28, 44, (49,38,0): 45, 28, 44, (49,39,0): 45, 28, 44, (49,40,0): 49, 32, 48, (49,41,0): 48, 31, 47, (49,42,0): 47, 30, 46, (49,43,0): 46, 29, 45, (49,44,0): 45, 28, 44, (49,45,0): 43, 26, 42, (49,46,0): 43, 26, 42, (49,47,0): 42, 25, 41, (49,48,0): 42, 28, 43, (49,49,0): 42, 28, 43, (49,50,0): 42, 28, 43, (49,51,0): 42, 28, 43, (49,52,0): 42, 28, 43, (49,53,0): 42, 28, 43, (49,54,0): 42, 28, 43, (49,55,0): 42, 28, 43, (49,56,0): 44, 30, 45, (49,57,0): 44, 30, 45, (49,58,0): 44, 30, 45, (49,59,0): 43, 29, 44, (49,60,0): 43, 29, 44, (49,61,0): 42, 28, 43, (49,62,0): 42, 28, 43, (49,63,0): 44, 28, 41, (49,64,0): 46, 28, 42, (49,65,0): 46, 28, 40, (49,66,0): 45, 27, 39, (49,67,0): 44, 26, 38, (49,68,0): 43, 25, 39, (49,69,0): 42, 24, 38, (49,70,0): 40, 24, 37, (49,71,0): 40, 24, 37, (49,72,0): 35, 21, 36, (49,73,0): 35, 21, 36, (49,74,0): 34, 21, 38, (49,75,0): 33, 20, 37, (49,76,0): 33, 20, 37, (49,77,0): 32, 19, 36, (49,78,0): 32, 19, 37, (49,79,0): 31, 19, 39, (49,80,0): 27, 19, 40, (49,81,0): 25, 20, 42, (49,82,0): 25, 20, 42, (49,83,0): 25, 20, 42, (49,84,0): 25, 20, 42, (49,85,0): 25, 20, 42, (49,86,0): 25, 20, 42, (49,87,0): 25, 20, 42, (49,88,0): 25, 20, 42, (49,89,0): 25, 20, 42, (49,90,0): 25, 20, 42, (49,91,0): 25, 20, 42, (49,92,0): 25, 20, 42, (49,93,0): 25, 20, 42, (49,94,0): 25, 20, 42, (49,95,0): 27, 19, 40, (49,96,0): 30, 21, 42, (49,97,0): 30, 21, 40, (49,98,0): 31, 22, 41, (49,99,0): 31, 22, 41, (49,100,0): 32, 23, 42, (49,101,0): 33, 24, 43, (49,102,0): 33, 24, 43, (49,103,0): 34, 25, 44, (49,104,0): 32, 23, 42, (49,105,0): 32, 23, 42, (49,106,0): 32, 23, 42, (49,107,0): 32, 23, 42, (49,108,0): 32, 23, 42, (49,109,0): 32, 23, 42, (49,110,0): 32, 23, 42, (49,111,0): 32, 23, 42, (49,112,0): 32, 21, 38, (49,113,0): 32, 21, 37, (49,114,0): 33, 22, 38, (49,115,0): 33, 22, 38, (49,116,0): 34, 23, 39, (49,117,0): 34, 23, 39, (49,118,0): 35, 24, 40, (49,119,0): 35, 24, 40, (49,120,0): 34, 23, 39, (49,121,0): 34, 23, 39, (49,122,0): 34, 23, 39, (49,123,0): 35, 24, 40, (49,124,0): 35, 24, 40, (49,125,0): 36, 25, 41, (49,126,0): 36, 25, 41, (49,127,0): 36, 25, 42, (49,128,0): 33, 24, 43, (49,129,0): 33, 24, 43, (49,130,0): 33, 24, 43, (49,131,0): 33, 24, 43, (49,132,0): 33, 24, 43, (49,133,0): 33, 24, 43, (49,134,0): 33, 24, 43, (49,135,0): 33, 24, 43, (49,136,0): 35, 26, 45, (49,137,0): 34, 25, 44, (49,138,0): 33, 24, 43, (49,139,0): 32, 23, 42, (49,140,0): 31, 22, 41, (49,141,0): 31, 22, 41, (49,142,0): 32, 23, 42, (49,143,0): 33, 24, 43, (49,144,0): 32, 23, 42, (49,145,0): 31, 22, 41, (49,146,0): 31, 22, 41, (49,147,0): 31, 22, 41, (49,148,0): 30, 21, 40, (49,149,0): 30, 21, 40, (49,150,0): 29, 20, 39, (49,151,0): 29, 20, 39, (49,152,0): 27, 18, 37, (49,153,0): 28, 19, 38, (49,154,0): 28, 19, 38, (49,155,0): 29, 20, 39, (49,156,0): 29, 20, 39, (49,157,0): 30, 21, 40, (49,158,0): 30, 21, 40, (49,159,0): 30, 21, 40, (49,160,0): 31, 24, 42, (49,161,0): 31, 24, 42, (49,162,0): 31, 24, 42, (49,163,0): 31, 24, 42, (49,164,0): 31, 24, 42, (49,165,0): 31, 24, 42, (49,166,0): 31, 24, 42, (49,167,0): 31, 24, 42, (49,168,0): 32, 25, 43, (49,169,0): 32, 25, 43, (49,170,0): 33, 26, 44, (49,171,0): 33, 26, 44, (49,172,0): 34, 27, 45, (49,173,0): 34, 27, 45, (49,174,0): 35, 28, 46, (49,175,0): 35, 28, 46, (49,176,0): 34, 26, 49, (49,177,0): 34, 26, 49, (49,178,0): 34, 26, 49, (49,179,0): 33, 25, 48, (49,180,0): 33, 25, 48, (49,181,0): 33, 25, 48, (49,182,0): 33, 25, 48, (49,183,0): 33, 25, 48, (49,184,0): 31, 23, 46, (49,185,0): 31, 23, 46, (49,186,0): 32, 24, 47, (49,187,0): 32, 24, 47, (49,188,0): 33, 25, 48, (49,189,0): 33, 25, 48, (49,190,0): 34, 26, 49, (49,191,0): 34, 26, 47, (49,192,0): 33, 28, 48, (49,193,0): 32, 28, 45, (49,194,0): 31, 24, 42, (49,195,0): 30, 23, 41, (49,196,0): 31, 24, 42, (49,197,0): 33, 26, 44, (49,198,0): 37, 28, 47, (49,199,0): 39, 30, 49, (49,200,0): 38, 26, 46, (49,201,0): 38, 26, 46, (49,202,0): 39, 27, 47, (49,203,0): 39, 27, 47, (49,204,0): 41, 28, 48, (49,205,0): 41, 28, 48, (49,206,0): 42, 29, 49, (49,207,0): 43, 28, 49, (49,208,0): 47, 30, 49, (49,209,0): 48, 29, 49, (49,210,0): 49, 30, 49, (49,211,0): 49, 30, 49, (49,212,0): 52, 31, 50, (49,213,0): 52, 31, 50, (49,214,0): 52, 31, 48, (49,215,0): 53, 32, 49, (49,216,0): 57, 34, 50, (49,217,0): 56, 33, 49, (49,218,0): 57, 33, 49, (49,219,0): 57, 33, 49, (49,220,0): 56, 32, 46, (49,221,0): 56, 32, 46, (49,222,0): 57, 30, 45, (49,223,0): 55, 31, 45, (49,224,0): 53, 32, 49, (49,225,0): 51, 33, 49, (49,226,0): 51, 33, 49, (49,227,0): 51, 33, 49, (49,228,0): 51, 33, 49, (49,229,0): 51, 33, 49, (49,230,0): 51, 33, 49, (49,231,0): 51, 33, 49, (49,232,0): 50, 32, 48, (49,233,0): 50, 32, 48, (49,234,0): 51, 33, 49, (49,235,0): 52, 34, 50, (49,236,0): 53, 35, 51, (49,237,0): 54, 36, 52, (49,238,0): 55, 37, 53, (49,239,0): 57, 36, 53, (49,240,0): 58, 35, 51, (49,241,0): 60, 36, 52, (49,242,0): 60, 36, 52, (49,243,0): 61, 37, 53, (49,244,0): 63, 39, 53, (49,245,0): 64, 40, 54, (49,246,0): 64, 40, 53, (49,247,0): 65, 41, 54, (49,248,0): 63, 39, 52, (49,249,0): 63, 39, 52, (49,250,0): 63, 40, 50, (49,251,0): 63, 40, 50, (49,252,0): 63, 40, 48, (49,253,0): 63, 40, 48, (49,254,0): 63, 40, 48, (49,255,0): 63, 40, 48, (49,256,0): 65, 39, 50, (49,257,0): 65, 39, 50, (49,258,0): 66, 39, 48, (49,259,0): 67, 40, 49, (49,260,0): 67, 40, 49, (49,261,0): 67, 40, 49, (49,262,0): 70, 40, 48, (49,263,0): 70, 40, 48, (49,264,0): 74, 43, 49, (49,265,0): 75, 44, 50, (49,266,0): 75, 44, 50, (49,267,0): 76, 45, 51, (49,268,0): 77, 45, 50, (49,269,0): 78, 46, 51, (49,270,0): 78, 46, 51, (49,271,0): 80, 45, 49, (49,272,0): 83, 47, 49, (49,273,0): 83, 47, 49, (49,274,0): 83, 47, 49, (49,275,0): 84, 48, 50, (49,276,0): 84, 48, 50, (49,277,0): 85, 49, 51, (49,278,0): 85, 49, 51, (49,279,0): 85, 49, 51, (49,280,0): 86, 50, 52, (49,281,0): 86, 50, 52, (49,282,0): 86, 50, 52, (49,283,0): 87, 51, 53, (49,284,0): 88, 52, 54, (49,285,0): 91, 55, 57, (49,286,0): 93, 57, 59, (49,287,0): 96, 57, 58, (49,288,0): 99, 59, 60, (49,289,0): 101, 59, 60, (49,290,0): 103, 62, 60, (49,291,0): 106, 65, 63, (49,292,0): 108, 67, 63, (49,293,0): 110, 69, 63, (49,294,0): 112, 69, 62, (49,295,0): 113, 70, 61, (49,296,0): 113, 69, 58, (49,297,0): 115, 71, 58, (49,298,0): 121, 75, 60, (49,299,0): 124, 78, 62, (49,300,0): 127, 82, 63, (49,301,0): 129, 84, 63, (49,302,0): 131, 86, 65, (49,303,0): 133, 85, 62, (49,304,0): 146, 92, 64, (49,305,0): 169, 109, 75, (49,306,0): 186, 119, 77, (49,307,0): 187, 115, 65, (49,308,0): 188, 115, 60, (49,309,0): 195, 125, 65, (49,310,0): 195, 129, 69, (49,311,0): 185, 125, 63, (49,312,0): 186, 132, 70, (49,313,0): 182, 131, 66, (49,314,0): 182, 129, 63, (49,315,0): 179, 126, 58, (49,316,0): 178, 125, 57, (49,317,0): 175, 124, 58, (49,318,0): 172, 124, 60, (49,319,0): 172, 124, 62, (49,320,0): 170, 119, 62, (49,321,0): 171, 120, 63, (49,322,0): 170, 121, 65, (49,323,0): 167, 120, 64, (49,324,0): 164, 118, 66, (49,325,0): 158, 117, 63, (49,326,0): 154, 114, 63, (49,327,0): 150, 113, 61, (49,328,0): 153, 117, 69, (49,329,0): 152, 116, 68, (49,330,0): 151, 114, 70, (49,331,0): 150, 113, 69, (49,332,0): 148, 110, 71, (49,333,0): 146, 108, 69, (49,334,0): 146, 106, 70, (49,335,0): 145, 107, 70, (49,336,0): 148, 113, 75, (49,337,0): 146, 112, 74, (49,338,0): 145, 111, 74, (49,339,0): 144, 110, 73, (49,340,0): 142, 108, 73, (49,341,0): 141, 107, 72, (49,342,0): 140, 105, 73, (49,343,0): 139, 104, 72, (49,344,0): 137, 102, 74, (49,345,0): 137, 102, 74, (49,346,0): 137, 101, 75, (49,347,0): 138, 102, 76, (49,348,0): 138, 102, 78, (49,349,0): 138, 102, 78, (49,350,0): 138, 102, 80, (49,351,0): 138, 102, 80, (49,352,0): 138, 100, 77, (49,353,0): 137, 99, 76, (49,354,0): 137, 99, 76, (49,355,0): 137, 99, 76, (49,356,0): 138, 100, 77, (49,357,0): 140, 102, 79, (49,358,0): 142, 104, 81, (49,359,0): 143, 105, 82, (49,360,0): 144, 106, 83, (49,361,0): 144, 106, 83, (49,362,0): 144, 106, 83, (49,363,0): 144, 106, 83, (49,364,0): 144, 106, 83, (49,365,0): 144, 106, 83, (49,366,0): 144, 106, 83, (49,367,0): 146, 105, 83, (49,368,0): 150, 103, 83, (49,369,0): 151, 103, 83, (49,370,0): 150, 102, 82, (49,371,0): 150, 102, 82, (49,372,0): 148, 101, 81, (49,373,0): 147, 100, 80, (49,374,0): 147, 100, 80, (49,375,0): 146, 99, 79, (49,376,0): 147, 102, 81, (49,377,0): 147, 102, 81, (49,378,0): 147, 102, 81, (49,379,0): 147, 102, 81, (49,380,0): 146, 104, 82, (49,381,0): 146, 104, 82, (49,382,0): 146, 104, 82, (49,383,0): 149, 104, 85, (49,384,0): 150, 103, 87, (49,385,0): 151, 102, 88, (49,386,0): 152, 105, 89, (49,387,0): 153, 106, 88, (49,388,0): 155, 108, 90, (49,389,0): 155, 110, 87, (49,390,0): 158, 112, 89, (49,391,0): 159, 112, 86, (49,392,0): 166, 116, 91, (49,393,0): 167, 116, 87, (49,394,0): 170, 114, 87, (49,395,0): 174, 115, 85, (49,396,0): 180, 116, 88, (49,397,0): 185, 118, 89, (49,398,0): 190, 121, 90, (49,399,0): 192, 123, 90, (49,400,0): 191, 128, 87, (49,401,0): 190, 129, 85, (49,402,0): 191, 128, 87, (49,403,0): 191, 128, 87, (49,404,0): 192, 126, 91, (49,405,0): 192, 126, 91, (49,406,0): 192, 126, 92, (49,407,0): 192, 126, 92, (49,408,0): 197, 129, 94, (49,409,0): 196, 128, 93, (49,410,0): 194, 129, 91, (49,411,0): 193, 128, 88, (49,412,0): 194, 129, 87, (49,413,0): 195, 132, 88, (49,414,0): 196, 133, 89, (49,415,0): 197, 134, 90, (49,416,0): 202, 137, 95, (49,417,0): 205, 138, 95, (49,418,0): 206, 135, 91, (49,419,0): 204, 130, 85, (49,420,0): 211, 133, 87, (49,421,0): 220, 139, 92, (49,422,0): 218, 140, 92, (49,423,0): 210, 136, 87, (49,424,0): 201, 133, 86, (49,425,0): 188, 127, 82, (49,426,0): 173, 118, 77, (49,427,0): 163, 114, 74, (49,428,0): 154, 109, 76, (49,429,0): 147, 103, 74, (49,430,0): 135, 93, 68, (49,431,0): 127, 85, 63, (49,432,0): 124, 83, 65, (49,433,0): 118, 79, 62, (49,434,0): 112, 73, 56, (49,435,0): 106, 71, 52, (49,436,0): 105, 70, 51, (49,437,0): 106, 75, 55, (49,438,0): 111, 80, 60, (49,439,0): 112, 84, 63, (49,440,0): 112, 85, 64, (49,441,0): 112, 85, 64, (49,442,0): 114, 86, 65, (49,443,0): 115, 87, 66, (49,444,0): 116, 85, 65, (49,445,0): 115, 84, 64, (49,446,0): 115, 82, 63, (49,447,0): 114, 82, 61, (49,448,0): 116, 85, 64, (49,449,0): 111, 83, 59, (49,450,0): 108, 80, 58, (49,451,0): 107, 79, 57, (49,452,0): 107, 80, 59, (49,453,0): 106, 79, 58, (49,454,0): 103, 76, 57, (49,455,0): 100, 73, 56, (49,456,0): 97, 71, 56, (49,457,0): 96, 70, 55, (49,458,0): 92, 69, 55, (49,459,0): 90, 67, 53, (49,460,0): 89, 65, 53, (49,461,0): 88, 64, 52, (49,462,0): 87, 65, 54, (49,463,0): 88, 65, 57, (49,464,0): 85, 60, 55, (49,465,0): 86, 61, 57, (49,466,0): 86, 61, 57, (49,467,0): 87, 62, 58, (49,468,0): 87, 63, 59, (49,469,0): 88, 64, 60, (49,470,0): 89, 65, 61, (49,471,0): 90, 66, 62, (49,472,0): 87, 66, 61, (49,473,0): 87, 66, 61, (49,474,0): 86, 67, 61, (49,475,0): 86, 67, 61, (49,476,0): 86, 67, 61, (49,477,0): 86, 67, 61, (49,478,0): 85, 68, 61, (49,479,0): 86, 67, 60, (49,480,0): 90, 67, 61, (49,481,0): 91, 66, 59, (49,482,0): 90, 65, 58, (49,483,0): 90, 65, 58, (49,484,0): 91, 66, 59, (49,485,0): 92, 67, 60, (49,486,0): 94, 69, 62, (49,487,0): 95, 70, 63, (49,488,0): 94, 69, 62, (49,489,0): 93, 68, 61, (49,490,0): 91, 66, 59, (49,491,0): 88, 63, 56, (49,492,0): 87, 62, 55, (49,493,0): 87, 62, 55, (49,494,0): 88, 63, 56, (49,495,0): 88, 65, 59, (49,496,0): 86, 62, 62, (49,497,0): 83, 61, 63, (49,498,0): 82, 60, 62, (49,499,0): 81, 59, 61, (49,500,0): 82, 57, 60, (49,501,0): 81, 56, 59, (49,502,0): 82, 56, 59, (49,503,0): 81, 55, 58, (49,504,0): 82, 56, 59, (49,505,0): 82, 56, 59, (49,506,0): 84, 55, 59, (49,507,0): 84, 55, 59, (49,508,0): 86, 55, 60, (49,509,0): 88, 57, 62, (49,510,0): 90, 59, 64, (49,511,0): 90, 61, 63, (49,512,0): 91, 63, 59, (49,513,0): 90, 65, 58, (49,514,0): 90, 65, 58, (49,515,0): 91, 66, 59, (49,516,0): 93, 68, 61, (49,517,0): 94, 69, 62, (49,518,0): 94, 69, 62, (49,519,0): 95, 70, 63, (49,520,0): 95, 70, 63, (49,521,0): 95, 70, 63, (49,522,0): 96, 71, 64, (49,523,0): 96, 71, 64, (49,524,0): 96, 71, 64, (49,525,0): 94, 69, 62, (49,526,0): 93, 68, 61, (49,527,0): 94, 67, 60, (49,528,0): 93, 64, 60, (49,529,0): 93, 63, 61, (49,530,0): 94, 64, 62, (49,531,0): 93, 65, 64, (49,532,0): 90, 64, 65, (49,533,0): 87, 62, 65, (49,534,0): 83, 61, 63, (49,535,0): 82, 60, 62, (49,536,0): 84, 64, 66, (49,537,0): 85, 63, 65, (49,538,0): 85, 63, 65, (49,539,0): 89, 65, 65, (49,540,0): 92, 66, 65, (49,541,0): 92, 67, 63, (49,542,0): 92, 64, 61, (49,543,0): 87, 61, 60, (49,544,0): 80, 55, 58, (49,545,0): 77, 57, 59, (49,546,0): 76, 57, 59, (49,547,0): 75, 56, 58, (49,548,0): 75, 55, 57, (49,549,0): 77, 52, 56, (49,550,0): 79, 50, 55, (49,551,0): 78, 49, 54, (49,552,0): 77, 50, 55, (49,553,0): 74, 52, 55, (49,554,0): 69, 53, 56, (49,555,0): 67, 52, 55, (49,556,0): 67, 50, 56, (49,557,0): 70, 47, 55, (49,558,0): 75, 43, 54, (49,559,0): 75, 43, 54, (49,560,0): 69, 43, 54, (49,561,0): 66, 45, 54, (49,562,0): 65, 44, 51, (49,563,0): 65, 44, 51, (49,564,0): 65, 44, 51, (49,565,0): 66, 45, 52, (49,566,0): 68, 47, 52, (49,567,0): 69, 48, 53, (49,568,0): 72, 52, 54, (49,569,0): 73, 53, 55, (49,570,0): 75, 55, 57, (49,571,0): 76, 56, 58, (49,572,0): 77, 57, 58, (49,573,0): 76, 56, 57, (49,574,0): 76, 56, 57, (49,575,0): 75, 55, 54, (49,576,0): 73, 54, 50, (49,577,0): 73, 54, 50, (49,578,0): 73, 54, 50, (49,579,0): 72, 53, 49, (49,580,0): 72, 52, 51, (49,581,0): 72, 52, 51, (49,582,0): 71, 51, 50, (49,583,0): 71, 51, 50, (49,584,0): 70, 50, 51, (49,585,0): 69, 49, 50, (49,586,0): 69, 49, 51, (49,587,0): 68, 48, 50, (49,588,0): 66, 46, 48, (49,589,0): 65, 45, 47, (49,590,0): 65, 44, 49, (49,591,0): 64, 43, 48, (49,592,0): 62, 42, 44, (49,593,0): 61, 41, 43, (49,594,0): 59, 39, 41, (49,595,0): 57, 37, 39, (49,596,0): 56, 36, 38, (49,597,0): 56, 36, 38, (49,598,0): 56, 36, 38, (49,599,0): 57, 37, 39, (50,0,0): 35, 26, 43, (50,1,0): 35, 26, 43, (50,2,0): 35, 27, 42, (50,3,0): 35, 27, 42, (50,4,0): 37, 26, 42, (50,5,0): 37, 26, 42, (50,6,0): 37, 26, 40, (50,7,0): 37, 26, 40, (50,8,0): 38, 26, 38, (50,9,0): 39, 27, 39, (50,10,0): 40, 26, 39, (50,11,0): 41, 27, 40, (50,12,0): 41, 28, 38, (50,13,0): 42, 29, 39, (50,14,0): 44, 28, 39, (50,15,0): 44, 28, 39, (50,16,0): 48, 30, 42, (50,17,0): 48, 30, 42, (50,18,0): 48, 30, 42, (50,19,0): 48, 30, 42, (50,20,0): 48, 30, 42, (50,21,0): 48, 30, 42, (50,22,0): 48, 30, 42, (50,23,0): 48, 30, 42, (50,24,0): 50, 32, 44, (50,25,0): 50, 32, 44, (50,26,0): 50, 32, 44, (50,27,0): 50, 32, 44, (50,28,0): 50, 32, 44, (50,29,0): 50, 32, 44, (50,30,0): 50, 32, 44, (50,31,0): 50, 32, 44, (50,32,0): 46, 29, 45, (50,33,0): 46, 29, 45, (50,34,0): 46, 29, 45, (50,35,0): 46, 29, 45, (50,36,0): 46, 29, 45, (50,37,0): 46, 29, 45, (50,38,0): 46, 29, 45, (50,39,0): 46, 29, 45, (50,40,0): 48, 31, 47, (50,41,0): 48, 31, 47, (50,42,0): 47, 30, 46, (50,43,0): 46, 29, 45, (50,44,0): 45, 28, 44, (50,45,0): 44, 27, 43, (50,46,0): 44, 27, 43, (50,47,0): 43, 26, 42, (50,48,0): 44, 27, 43, (50,49,0): 44, 27, 43, (50,50,0): 44, 27, 43, (50,51,0): 44, 27, 43, (50,52,0): 44, 27, 43, (50,53,0): 44, 27, 43, (50,54,0): 44, 27, 43, (50,55,0): 44, 27, 43, (50,56,0): 46, 29, 45, (50,57,0): 46, 29, 45, (50,58,0): 46, 29, 45, (50,59,0): 45, 28, 44, (50,60,0): 45, 28, 44, (50,61,0): 44, 27, 43, (50,62,0): 44, 27, 43, (50,63,0): 44, 28, 41, (50,64,0): 44, 26, 40, (50,65,0): 44, 26, 38, (50,66,0): 44, 26, 38, (50,67,0): 44, 26, 38, (50,68,0): 44, 26, 40, (50,69,0): 43, 25, 39, (50,70,0): 42, 26, 39, (50,71,0): 42, 26, 39, (50,72,0): 37, 23, 38, (50,73,0): 37, 23, 38, (50,74,0): 36, 23, 40, (50,75,0): 35, 22, 39, (50,76,0): 35, 22, 39, (50,77,0): 34, 21, 38, (50,78,0): 34, 21, 39, (50,79,0): 33, 21, 41, (50,80,0): 29, 20, 41, (50,81,0): 28, 20, 43, (50,82,0): 28, 20, 43, (50,83,0): 28, 20, 43, (50,84,0): 28, 20, 43, (50,85,0): 28, 20, 43, (50,86,0): 28, 20, 43, (50,87,0): 28, 20, 43, (50,88,0): 28, 20, 43, (50,89,0): 28, 20, 43, (50,90,0): 28, 20, 43, (50,91,0): 28, 20, 43, (50,92,0): 28, 20, 43, (50,93,0): 28, 20, 43, (50,94,0): 28, 20, 43, (50,95,0): 28, 20, 41, (50,96,0): 31, 22, 43, (50,97,0): 31, 22, 41, (50,98,0): 32, 23, 42, (50,99,0): 32, 23, 42, (50,100,0): 32, 23, 42, (50,101,0): 33, 24, 43, (50,102,0): 33, 24, 43, (50,103,0): 33, 24, 43, (50,104,0): 32, 23, 42, (50,105,0): 32, 23, 42, (50,106,0): 32, 23, 42, (50,107,0): 32, 23, 42, (50,108,0): 32, 23, 42, (50,109,0): 32, 23, 42, (50,110,0): 32, 23, 42, (50,111,0): 32, 23, 42, (50,112,0): 30, 21, 38, (50,113,0): 30, 21, 38, (50,114,0): 31, 22, 39, (50,115,0): 31, 22, 39, (50,116,0): 32, 23, 40, (50,117,0): 32, 23, 40, (50,118,0): 33, 24, 41, (50,119,0): 33, 24, 41, (50,120,0): 32, 23, 40, (50,121,0): 32, 23, 40, (50,122,0): 32, 23, 40, (50,123,0): 33, 24, 41, (50,124,0): 33, 24, 41, (50,125,0): 34, 25, 42, (50,126,0): 34, 25, 42, (50,127,0): 34, 25, 42, (50,128,0): 33, 24, 43, (50,129,0): 33, 24, 43, (50,130,0): 33, 24, 43, (50,131,0): 33, 24, 43, (50,132,0): 33, 24, 43, (50,133,0): 33, 24, 43, (50,134,0): 33, 24, 43, (50,135,0): 33, 24, 43, (50,136,0): 35, 26, 45, (50,137,0): 34, 25, 44, (50,138,0): 33, 24, 43, (50,139,0): 31, 22, 41, (50,140,0): 31, 22, 41, (50,141,0): 31, 22, 41, (50,142,0): 32, 23, 42, (50,143,0): 32, 23, 42, (50,144,0): 32, 23, 42, (50,145,0): 32, 23, 42, (50,146,0): 32, 23, 42, (50,147,0): 31, 22, 41, (50,148,0): 30, 21, 40, (50,149,0): 30, 21, 40, (50,150,0): 30, 21, 40, (50,151,0): 29, 20, 39, (50,152,0): 28, 19, 38, (50,153,0): 28, 19, 38, (50,154,0): 28, 19, 38, (50,155,0): 29, 20, 39, (50,156,0): 29, 20, 39, (50,157,0): 30, 21, 40, (50,158,0): 30, 21, 40, (50,159,0): 31, 22, 41, (50,160,0): 31, 24, 42, (50,161,0): 31, 24, 42, (50,162,0): 31, 24, 42, (50,163,0): 31, 24, 42, (50,164,0): 31, 24, 42, (50,165,0): 31, 24, 42, (50,166,0): 31, 24, 42, (50,167,0): 31, 24, 42, (50,168,0): 32, 25, 43, (50,169,0): 32, 25, 43, (50,170,0): 33, 26, 44, (50,171,0): 33, 26, 44, (50,172,0): 34, 27, 45, (50,173,0): 34, 27, 45, (50,174,0): 35, 28, 46, (50,175,0): 35, 28, 46, (50,176,0): 35, 27, 50, (50,177,0): 35, 27, 50, (50,178,0): 34, 26, 49, (50,179,0): 33, 25, 48, (50,180,0): 32, 24, 47, (50,181,0): 32, 24, 47, (50,182,0): 31, 23, 46, (50,183,0): 31, 23, 46, (50,184,0): 32, 24, 47, (50,185,0): 32, 24, 47, (50,186,0): 33, 25, 48, (50,187,0): 33, 25, 48, (50,188,0): 34, 26, 49, (50,189,0): 34, 26, 49, (50,190,0): 34, 26, 49, (50,191,0): 35, 27, 48, (50,192,0): 33, 28, 48, (50,193,0): 31, 27, 44, (50,194,0): 32, 25, 43, (50,195,0): 31, 24, 42, (50,196,0): 31, 24, 42, (50,197,0): 33, 26, 44, (50,198,0): 37, 28, 47, (50,199,0): 38, 29, 48, (50,200,0): 38, 26, 46, (50,201,0): 38, 26, 46, (50,202,0): 39, 27, 47, (50,203,0): 39, 27, 47, (50,204,0): 41, 28, 48, (50,205,0): 41, 28, 48, (50,206,0): 42, 29, 49, (50,207,0): 43, 28, 49, (50,208,0): 47, 30, 49, (50,209,0): 49, 30, 50, (50,210,0): 49, 30, 49, (50,211,0): 49, 30, 49, (50,212,0): 52, 31, 50, (50,213,0): 53, 32, 51, (50,214,0): 53, 32, 49, (50,215,0): 53, 32, 49, (50,216,0): 57, 34, 50, (50,217,0): 57, 34, 50, (50,218,0): 58, 34, 50, (50,219,0): 57, 33, 49, (50,220,0): 56, 32, 46, (50,221,0): 56, 32, 46, (50,222,0): 58, 31, 46, (50,223,0): 55, 31, 45, (50,224,0): 53, 32, 49, (50,225,0): 51, 33, 49, (50,226,0): 51, 33, 49, (50,227,0): 51, 33, 49, (50,228,0): 51, 33, 49, (50,229,0): 51, 33, 49, (50,230,0): 51, 33, 49, (50,231,0): 51, 33, 49, (50,232,0): 50, 32, 48, (50,233,0): 50, 32, 48, (50,234,0): 51, 33, 49, (50,235,0): 52, 34, 50, (50,236,0): 53, 35, 51, (50,237,0): 54, 36, 52, (50,238,0): 55, 37, 53, (50,239,0): 57, 36, 53, (50,240,0): 58, 35, 51, (50,241,0): 60, 36, 52, (50,242,0): 60, 36, 50, (50,243,0): 61, 37, 51, (50,244,0): 63, 39, 53, (50,245,0): 64, 40, 54, (50,246,0): 64, 40, 53, (50,247,0): 65, 41, 54, (50,248,0): 63, 40, 50, (50,249,0): 63, 40, 50, (50,250,0): 63, 40, 50, (50,251,0): 63, 40, 50, (50,252,0): 63, 40, 48, (50,253,0): 63, 40, 48, (50,254,0): 63, 40, 48, (50,255,0): 63, 40, 48, (50,256,0): 65, 39, 48, (50,257,0): 66, 39, 48, (50,258,0): 66, 39, 48, (50,259,0): 67, 40, 49, (50,260,0): 70, 40, 48, (50,261,0): 70, 40, 48, (50,262,0): 71, 41, 49, (50,263,0): 71, 41, 49, (50,264,0): 75, 44, 50, (50,265,0): 75, 44, 50, (50,266,0): 76, 44, 49, (50,267,0): 77, 45, 50, (50,268,0): 77, 45, 50, (50,269,0): 78, 46, 51, (50,270,0): 80, 45, 49, (50,271,0): 81, 46, 50, (50,272,0): 83, 47, 49, (50,273,0): 83, 47, 49, (50,274,0): 83, 47, 49, (50,275,0): 84, 48, 50, (50,276,0): 84, 48, 50, (50,277,0): 85, 49, 51, (50,278,0): 85, 49, 51, (50,279,0): 85, 49, 51, (50,280,0): 86, 50, 52, (50,281,0): 86, 50, 52, (50,282,0): 86, 50, 52, (50,283,0): 87, 51, 53, (50,284,0): 89, 53, 55, (50,285,0): 91, 55, 57, (50,286,0): 93, 57, 59, (50,287,0): 97, 58, 59, (50,288,0): 100, 60, 61, (50,289,0): 102, 60, 61, (50,290,0): 102, 60, 61, (50,291,0): 104, 63, 61, (50,292,0): 108, 64, 61, (50,293,0): 111, 68, 62, (50,294,0): 113, 70, 63, (50,295,0): 114, 71, 62, (50,296,0): 117, 73, 62, (50,297,0): 118, 74, 61, (50,298,0): 121, 75, 60, (50,299,0): 122, 76, 60, (50,300,0): 125, 80, 61, (50,301,0): 128, 83, 62, (50,302,0): 131, 84, 64, (50,303,0): 134, 86, 63, (50,304,0): 146, 92, 64, (50,305,0): 169, 109, 73, (50,306,0): 189, 120, 78, (50,307,0): 192, 121, 69, (50,308,0): 193, 121, 63, (50,309,0): 198, 128, 68, (50,310,0): 196, 130, 70, (50,311,0): 186, 126, 64, (50,312,0): 188, 134, 72, (50,313,0): 184, 133, 68, (50,314,0): 184, 131, 65, (50,315,0): 183, 128, 61, (50,316,0): 180, 127, 59, (50,317,0): 178, 127, 61, (50,318,0): 176, 128, 64, (50,319,0): 176, 128, 66, (50,320,0): 174, 123, 66, (50,321,0): 173, 122, 65, (50,322,0): 172, 123, 67, (50,323,0): 168, 121, 65, (50,324,0): 165, 119, 67, (50,325,0): 159, 118, 64, (50,326,0): 156, 116, 65, (50,327,0): 152, 115, 63, (50,328,0): 153, 117, 69, (50,329,0): 151, 117, 69, (50,330,0): 150, 116, 71, (50,331,0): 148, 114, 69, (50,332,0): 148, 110, 71, (50,333,0): 147, 109, 70, (50,334,0): 147, 107, 71, (50,335,0): 145, 107, 70, (50,336,0): 145, 110, 72, (50,337,0): 143, 109, 71, (50,338,0): 143, 109, 72, (50,339,0): 142, 108, 71, (50,340,0): 142, 108, 73, (50,341,0): 141, 107, 72, (50,342,0): 140, 105, 73, (50,343,0): 140, 105, 73, (50,344,0): 137, 102, 74, (50,345,0): 137, 102, 74, (50,346,0): 137, 101, 75, (50,347,0): 137, 101, 75, (50,348,0): 137, 101, 77, (50,349,0): 137, 101, 77, (50,350,0): 137, 101, 79, (50,351,0): 137, 101, 79, (50,352,0): 138, 100, 77, (50,353,0): 137, 99, 76, (50,354,0): 137, 99, 76, (50,355,0): 137, 99, 76, (50,356,0): 138, 100, 77, (50,357,0): 140, 102, 79, (50,358,0): 142, 104, 81, (50,359,0): 143, 105, 82, (50,360,0): 144, 106, 83, (50,361,0): 144, 106, 83, (50,362,0): 144, 106, 83, (50,363,0): 144, 106, 83, (50,364,0): 144, 106, 83, (50,365,0): 144, 106, 83, (50,366,0): 144, 106, 83, (50,367,0): 146, 105, 83, (50,368,0): 149, 104, 83, (50,369,0): 150, 103, 83, (50,370,0): 149, 102, 82, (50,371,0): 149, 102, 82, (50,372,0): 148, 101, 81, (50,373,0): 148, 101, 81, (50,374,0): 148, 101, 81, (50,375,0): 148, 101, 81, (50,376,0): 147, 102, 81, (50,377,0): 147, 102, 81, (50,378,0): 148, 103, 82, (50,379,0): 148, 103, 82, (50,380,0): 149, 104, 83, (50,381,0): 149, 104, 83, (50,382,0): 148, 106, 84, (50,383,0): 150, 105, 86, (50,384,0): 150, 103, 87, (50,385,0): 152, 103, 89, (50,386,0): 153, 104, 89, (50,387,0): 153, 106, 88, (50,388,0): 155, 108, 90, (50,389,0): 156, 110, 87, (50,390,0): 158, 112, 89, (50,391,0): 159, 112, 86, (50,392,0): 168, 118, 93, (50,393,0): 171, 117, 89, (50,394,0): 172, 116, 89, (50,395,0): 177, 118, 88, (50,396,0): 182, 118, 90, (50,397,0): 186, 119, 90, (50,398,0): 191, 122, 91, (50,399,0): 192, 123, 90, (50,400,0): 191, 128, 87, (50,401,0): 190, 129, 85, (50,402,0): 191, 128, 87, (50,403,0): 191, 128, 87, (50,404,0): 191, 127, 91, (50,405,0): 191, 127, 91, (50,406,0): 192, 126, 91, (50,407,0): 192, 126, 91, (50,408,0): 199, 131, 96, (50,409,0): 198, 130, 95, (50,410,0): 197, 129, 92, (50,411,0): 194, 129, 89, (50,412,0): 195, 130, 88, (50,413,0): 196, 132, 88, (50,414,0): 197, 133, 89, (50,415,0): 198, 134, 88, (50,416,0): 202, 135, 90, (50,417,0): 207, 139, 92, (50,418,0): 210, 138, 90, (50,419,0): 212, 136, 87, (50,420,0): 218, 137, 90, (50,421,0): 224, 144, 95, (50,422,0): 220, 142, 93, (50,423,0): 211, 137, 88, (50,424,0): 201, 133, 86, (50,425,0): 188, 127, 82, (50,426,0): 173, 120, 78, (50,427,0): 163, 115, 75, (50,428,0): 156, 111, 78, (50,429,0): 148, 104, 75, (50,430,0): 137, 95, 70, (50,431,0): 128, 87, 65, (50,432,0): 123, 82, 62, (50,433,0): 118, 80, 61, (50,434,0): 114, 76, 57, (50,435,0): 109, 74, 54, (50,436,0): 108, 73, 53, (50,437,0): 107, 76, 55, (50,438,0): 111, 80, 59, (50,439,0): 111, 83, 61, (50,440,0): 113, 87, 64, (50,441,0): 114, 88, 65, (50,442,0): 116, 88, 66, (50,443,0): 117, 89, 67, (50,444,0): 119, 88, 67, (50,445,0): 119, 88, 67, (50,446,0): 119, 87, 66, (50,447,0): 118, 86, 65, (50,448,0): 119, 88, 67, (50,449,0): 116, 85, 64, (50,450,0): 111, 83, 61, (50,451,0): 110, 82, 60, (50,452,0): 110, 82, 61, (50,453,0): 109, 80, 62, (50,454,0): 105, 78, 61, (50,455,0): 102, 75, 58, (50,456,0): 96, 70, 55, (50,457,0): 95, 69, 54, (50,458,0): 93, 67, 54, (50,459,0): 92, 65, 54, (50,460,0): 89, 65, 55, (50,461,0): 88, 64, 54, (50,462,0): 89, 64, 57, (50,463,0): 89, 64, 57, (50,464,0): 88, 63, 58, (50,465,0): 87, 62, 58, (50,466,0): 86, 61, 57, (50,467,0): 85, 60, 56, (50,468,0): 86, 62, 58, (50,469,0): 88, 64, 60, (50,470,0): 90, 66, 62, (50,471,0): 92, 68, 64, (50,472,0): 88, 67, 62, (50,473,0): 88, 67, 62, (50,474,0): 87, 68, 62, (50,475,0): 87, 68, 62, (50,476,0): 87, 68, 62, (50,477,0): 87, 68, 62, (50,478,0): 86, 69, 62, (50,479,0): 87, 68, 61, (50,480,0): 91, 68, 62, (50,481,0): 92, 67, 60, (50,482,0): 91, 66, 59, (50,483,0): 90, 65, 58, (50,484,0): 91, 66, 59, (50,485,0): 92, 67, 60, (50,486,0): 94, 69, 62, (50,487,0): 95, 70, 63, (50,488,0): 94, 69, 62, (50,489,0): 93, 68, 61, (50,490,0): 92, 67, 60, (50,491,0): 90, 65, 58, (50,492,0): 89, 64, 57, (50,493,0): 88, 63, 56, (50,494,0): 89, 64, 57, (50,495,0): 88, 65, 59, (50,496,0): 85, 61, 61, (50,497,0): 83, 61, 63, (50,498,0): 82, 60, 62, (50,499,0): 81, 59, 61, (50,500,0): 82, 57, 60, (50,501,0): 81, 56, 59, (50,502,0): 81, 55, 58, (50,503,0): 80, 54, 57, (50,504,0): 82, 56, 59, (50,505,0): 81, 55, 58, (50,506,0): 83, 54, 58, (50,507,0): 83, 54, 58, (50,508,0): 85, 54, 59, (50,509,0): 87, 56, 61, (50,510,0): 89, 58, 63, (50,511,0): 89, 60, 62, (50,512,0): 91, 63, 59, (50,513,0): 90, 65, 58, (50,514,0): 90, 65, 58, (50,515,0): 91, 66, 59, (50,516,0): 93, 68, 61, (50,517,0): 94, 69, 62, (50,518,0): 94, 69, 62, (50,519,0): 95, 70, 63, (50,520,0): 94, 69, 62, (50,521,0): 95, 70, 63, (50,522,0): 96, 71, 64, (50,523,0): 96, 71, 64, (50,524,0): 95, 70, 63, (50,525,0): 94, 69, 62, (50,526,0): 93, 68, 61, (50,527,0): 94, 67, 60, (50,528,0): 93, 64, 58, (50,529,0): 93, 64, 60, (50,530,0): 94, 65, 61, (50,531,0): 94, 66, 63, (50,532,0): 92, 66, 65, (50,533,0): 91, 65, 66, (50,534,0): 88, 64, 64, (50,535,0): 87, 63, 63, (50,536,0): 90, 64, 67, (50,537,0): 89, 63, 64, (50,538,0): 93, 63, 65, (50,539,0): 97, 65, 66, (50,540,0): 101, 67, 66, (50,541,0): 99, 65, 63, (50,542,0): 97, 62, 60, (50,543,0): 99, 59, 59, (50,544,0): 92, 50, 54, (50,545,0): 91, 49, 53, (50,546,0): 85, 50, 54, (50,547,0): 82, 52, 54, (50,548,0): 78, 52, 55, (50,549,0): 77, 51, 54, (50,550,0): 76, 49, 54, (50,551,0): 75, 48, 53, (50,552,0): 76, 51, 57, (50,553,0): 74, 51, 57, (50,554,0): 71, 52, 56, (50,555,0): 68, 52, 55, (50,556,0): 69, 50, 54, (50,557,0): 72, 47, 53, (50,558,0): 76, 43, 52, (50,559,0): 76, 43, 52, (50,560,0): 70, 44, 53, (50,561,0): 66, 45, 52, (50,562,0): 66, 45, 52, (50,563,0): 65, 44, 51, (50,564,0): 66, 45, 50, (50,565,0): 67, 46, 51, (50,566,0): 69, 48, 53, (50,567,0): 70, 49, 54, (50,568,0): 73, 53, 55, (50,569,0): 74, 54, 56, (50,570,0): 76, 56, 57, (50,571,0): 77, 57, 58, (50,572,0): 78, 58, 59, (50,573,0): 77, 57, 58, (50,574,0): 77, 57, 56, (50,575,0): 76, 56, 55, (50,576,0): 74, 55, 51, (50,577,0): 74, 55, 51, (50,578,0): 74, 55, 51, (50,579,0): 73, 54, 50, (50,580,0): 73, 53, 52, (50,581,0): 72, 52, 51, (50,582,0): 72, 52, 51, (50,583,0): 71, 51, 50, (50,584,0): 70, 50, 51, (50,585,0): 69, 49, 50, (50,586,0): 69, 49, 51, (50,587,0): 68, 48, 50, (50,588,0): 66, 46, 48, (50,589,0): 65, 45, 47, (50,590,0): 65, 44, 49, (50,591,0): 64, 43, 48, (50,592,0): 62, 42, 44, (50,593,0): 61, 41, 43, (50,594,0): 59, 39, 41, (50,595,0): 57, 37, 39, (50,596,0): 56, 36, 38, (50,597,0): 56, 36, 38, (50,598,0): 56, 36, 38, (50,599,0): 57, 37, 39, (51,0,0): 35, 26, 43, (51,1,0): 35, 26, 43, (51,2,0): 35, 27, 42, (51,3,0): 35, 27, 42, (51,4,0): 37, 26, 42, (51,5,0): 37, 26, 42, (51,6,0): 37, 26, 40, (51,7,0): 37, 26, 40, (51,8,0): 38, 26, 38, (51,9,0): 38, 26, 38, (51,10,0): 39, 25, 38, (51,11,0): 40, 26, 39, (51,12,0): 41, 28, 38, (51,13,0): 41, 28, 38, (51,14,0): 43, 27, 38, (51,15,0): 44, 28, 39, (51,16,0): 48, 30, 42, (51,17,0): 48, 30, 42, (51,18,0): 48, 30, 42, (51,19,0): 48, 30, 42, (51,20,0): 48, 30, 42, (51,21,0): 48, 30, 42, (51,22,0): 48, 30, 42, (51,23,0): 48, 30, 42, (51,24,0): 49, 31, 43, (51,25,0): 49, 31, 43, (51,26,0): 49, 31, 43, (51,27,0): 49, 31, 43, (51,28,0): 49, 31, 43, (51,29,0): 49, 31, 43, (51,30,0): 49, 31, 43, (51,31,0): 49, 31, 43, (51,32,0): 46, 29, 45, (51,33,0): 46, 29, 45, (51,34,0): 46, 29, 45, (51,35,0): 46, 29, 45, (51,36,0): 46, 29, 45, (51,37,0): 46, 29, 45, (51,38,0): 46, 29, 45, (51,39,0): 46, 29, 45, (51,40,0): 48, 31, 47, (51,41,0): 48, 31, 47, (51,42,0): 47, 30, 46, (51,43,0): 47, 30, 46, (51,44,0): 46, 29, 45, (51,45,0): 45, 28, 44, (51,46,0): 45, 28, 44, (51,47,0): 44, 27, 43, (51,48,0): 45, 28, 44, (51,49,0): 45, 28, 44, (51,50,0): 45, 28, 44, (51,51,0): 45, 28, 44, (51,52,0): 45, 28, 44, (51,53,0): 45, 28, 44, (51,54,0): 45, 28, 44, (51,55,0): 45, 28, 44, (51,56,0): 46, 29, 45, (51,57,0): 46, 29, 45, (51,58,0): 46, 29, 45, (51,59,0): 45, 28, 44, (51,60,0): 45, 28, 44, (51,61,0): 44, 27, 43, (51,62,0): 44, 27, 43, (51,63,0): 44, 28, 41, (51,64,0): 43, 25, 39, (51,65,0): 43, 25, 37, (51,66,0): 43, 25, 37, (51,67,0): 44, 26, 38, (51,68,0): 45, 27, 41, (51,69,0): 45, 27, 41, (51,70,0): 45, 29, 42, (51,71,0): 45, 29, 42, (51,72,0): 39, 25, 40, (51,73,0): 39, 25, 40, (51,74,0): 38, 25, 42, (51,75,0): 37, 24, 41, (51,76,0): 36, 23, 40, (51,77,0): 36, 23, 40, (51,78,0): 36, 23, 41, (51,79,0): 34, 22, 42, (51,80,0): 31, 22, 43, (51,81,0): 30, 22, 45, (51,82,0): 30, 22, 45, (51,83,0): 30, 22, 45, (51,84,0): 30, 22, 45, (51,85,0): 30, 22, 45, (51,86,0): 30, 22, 45, (51,87,0): 30, 22, 45, (51,88,0): 30, 22, 45, (51,89,0): 30, 22, 45, (51,90,0): 30, 22, 45, (51,91,0): 30, 22, 45, (51,92,0): 30, 22, 45, (51,93,0): 30, 22, 45, (51,94,0): 30, 22, 45, (51,95,0): 30, 22, 43, (51,96,0): 32, 23, 42, (51,97,0): 32, 23, 42, (51,98,0): 32, 23, 42, (51,99,0): 33, 24, 43, (51,100,0): 33, 24, 43, (51,101,0): 33, 24, 43, (51,102,0): 33, 24, 43, (51,103,0): 33, 24, 43, (51,104,0): 32, 23, 42, (51,105,0): 32, 23, 42, (51,106,0): 32, 23, 42, (51,107,0): 32, 23, 42, (51,108,0): 32, 23, 42, (51,109,0): 32, 23, 42, (51,110,0): 32, 23, 42, (51,111,0): 32, 23, 42, (51,112,0): 30, 21, 38, (51,113,0): 30, 21, 38, (51,114,0): 31, 22, 39, (51,115,0): 31, 22, 39, (51,116,0): 32, 23, 40, (51,117,0): 32, 23, 40, (51,118,0): 33, 24, 41, (51,119,0): 33, 24, 41, (51,120,0): 32, 23, 40, (51,121,0): 32, 23, 40, (51,122,0): 32, 23, 40, (51,123,0): 33, 24, 41, (51,124,0): 33, 24, 41, (51,125,0): 34, 25, 42, (51,126,0): 34, 25, 42, (51,127,0): 34, 25, 42, (51,128,0): 33, 24, 43, (51,129,0): 33, 24, 43, (51,130,0): 33, 24, 43, (51,131,0): 33, 24, 43, (51,132,0): 33, 24, 43, (51,133,0): 33, 24, 43, (51,134,0): 33, 24, 43, (51,135,0): 33, 24, 43, (51,136,0): 34, 25, 44, (51,137,0): 33, 24, 43, (51,138,0): 32, 23, 42, (51,139,0): 31, 22, 41, (51,140,0): 30, 21, 40, (51,141,0): 30, 21, 40, (51,142,0): 31, 22, 41, (51,143,0): 32, 23, 42, (51,144,0): 33, 24, 43, (51,145,0): 32, 23, 42, (51,146,0): 32, 23, 42, (51,147,0): 31, 22, 41, (51,148,0): 31, 22, 41, (51,149,0): 30, 21, 40, (51,150,0): 30, 21, 40, (51,151,0): 30, 21, 40, (51,152,0): 28, 19, 38, (51,153,0): 29, 20, 39, (51,154,0): 29, 20, 39, (51,155,0): 29, 20, 39, (51,156,0): 30, 21, 40, (51,157,0): 31, 22, 41, (51,158,0): 31, 22, 41, (51,159,0): 31, 22, 41, (51,160,0): 31, 24, 42, (51,161,0): 31, 24, 42, (51,162,0): 31, 24, 42, (51,163,0): 31, 24, 42, (51,164,0): 31, 24, 42, (51,165,0): 31, 24, 42, (51,166,0): 31, 24, 42, (51,167,0): 31, 24, 42, (51,168,0): 32, 25, 43, (51,169,0): 32, 25, 43, (51,170,0): 33, 26, 44, (51,171,0): 33, 26, 44, (51,172,0): 34, 27, 45, (51,173,0): 34, 27, 45, (51,174,0): 35, 28, 46, (51,175,0): 35, 28, 46, (51,176,0): 36, 28, 51, (51,177,0): 35, 27, 50, (51,178,0): 34, 26, 49, (51,179,0): 33, 25, 48, (51,180,0): 32, 24, 47, (51,181,0): 30, 22, 45, (51,182,0): 29, 21, 44, (51,183,0): 29, 21, 44, (51,184,0): 32, 24, 47, (51,185,0): 32, 24, 47, (51,186,0): 33, 25, 48, (51,187,0): 33, 25, 48, (51,188,0): 34, 26, 49, (51,189,0): 34, 26, 49, (51,190,0): 35, 27, 50, (51,191,0): 35, 27, 48, (51,192,0): 32, 27, 47, (51,193,0): 31, 27, 44, (51,194,0): 32, 25, 43, (51,195,0): 32, 25, 43, (51,196,0): 32, 25, 43, (51,197,0): 34, 27, 45, (51,198,0): 36, 27, 46, (51,199,0): 38, 29, 48, (51,200,0): 38, 26, 46, (51,201,0): 38, 26, 46, (51,202,0): 39, 27, 47, (51,203,0): 39, 27, 47, (51,204,0): 41, 28, 48, (51,205,0): 41, 28, 48, (51,206,0): 42, 29, 49, (51,207,0): 43, 28, 49, (51,208,0): 48, 31, 50, (51,209,0): 49, 30, 50, (51,210,0): 49, 30, 49, (51,211,0): 50, 31, 50, (51,212,0): 52, 31, 50, (51,213,0): 53, 32, 51, (51,214,0): 53, 32, 49, (51,215,0): 54, 33, 50, (51,216,0): 58, 35, 51, (51,217,0): 57, 34, 50, (51,218,0): 58, 34, 50, (51,219,0): 57, 33, 49, (51,220,0): 57, 33, 47, (51,221,0): 56, 32, 46, (51,222,0): 58, 31, 46, (51,223,0): 56, 32, 46, (51,224,0): 54, 33, 48, (51,225,0): 52, 34, 50, (51,226,0): 52, 34, 50, (51,227,0): 52, 34, 50, (51,228,0): 52, 34, 50, (51,229,0): 52, 34, 50, (51,230,0): 52, 34, 50, (51,231,0): 52, 34, 50, (51,232,0): 50, 32, 48, (51,233,0): 51, 33, 49, (51,234,0): 52, 34, 50, (51,235,0): 53, 35, 51, (51,236,0): 54, 36, 52, (51,237,0): 55, 37, 53, (51,238,0): 56, 38, 54, (51,239,0): 58, 37, 52, (51,240,0): 59, 35, 51, (51,241,0): 60, 36, 52, (51,242,0): 60, 36, 50, (51,243,0): 61, 37, 51, (51,244,0): 63, 39, 53, (51,245,0): 64, 40, 53, (51,246,0): 64, 40, 53, (51,247,0): 65, 41, 54, (51,248,0): 62, 39, 49, (51,249,0): 62, 39, 49, (51,250,0): 62, 39, 49, (51,251,0): 62, 39, 47, (51,252,0): 62, 39, 47, (51,253,0): 62, 39, 47, (51,254,0): 62, 39, 47, (51,255,0): 64, 38, 47, (51,256,0): 65, 38, 47, (51,257,0): 66, 39, 48, (51,258,0): 66, 39, 48, (51,259,0): 67, 40, 49, (51,260,0): 70, 40, 48, (51,261,0): 71, 41, 49, (51,262,0): 72, 42, 50, (51,263,0): 72, 43, 48, (51,264,0): 75, 44, 50, (51,265,0): 76, 45, 51, (51,266,0): 77, 45, 50, (51,267,0): 77, 45, 50, (51,268,0): 78, 46, 51, (51,269,0): 79, 47, 52, (51,270,0): 81, 46, 50, (51,271,0): 81, 46, 50, (51,272,0): 83, 47, 49, (51,273,0): 83, 47, 49, (51,274,0): 83, 47, 49, (51,275,0): 84, 48, 50, (51,276,0): 84, 48, 50, (51,277,0): 85, 49, 51, (51,278,0): 85, 49, 51, (51,279,0): 85, 49, 51, (51,280,0): 87, 51, 53, (51,281,0): 87, 51, 53, (51,282,0): 87, 51, 53, (51,283,0): 88, 52, 54, (51,284,0): 89, 53, 55, (51,285,0): 92, 56, 58, (51,286,0): 94, 58, 60, (51,287,0): 97, 58, 61, (51,288,0): 102, 62, 63, (51,289,0): 102, 60, 61, (51,290,0): 102, 60, 61, (51,291,0): 103, 61, 62, (51,292,0): 107, 63, 62, (51,293,0): 110, 66, 63, (51,294,0): 114, 71, 65, (51,295,0): 116, 73, 66, (51,296,0): 121, 77, 68, (51,297,0): 120, 76, 65, (51,298,0): 120, 74, 61, (51,299,0): 121, 75, 60, (51,300,0): 122, 76, 60, (51,301,0): 126, 81, 62, (51,302,0): 131, 84, 66, (51,303,0): 134, 86, 63, (51,304,0): 147, 92, 62, (51,305,0): 169, 109, 73, (51,306,0): 191, 123, 78, (51,307,0): 198, 125, 74, (51,308,0): 201, 126, 68, (51,309,0): 202, 131, 69, (51,310,0): 197, 131, 70, (51,311,0): 188, 128, 66, (51,312,0): 191, 136, 72, (51,313,0): 188, 134, 70, (51,314,0): 187, 132, 67, (51,315,0): 186, 131, 64, (51,316,0): 183, 130, 62, (51,317,0): 181, 130, 64, (51,318,0): 179, 131, 67, (51,319,0): 179, 131, 69, (51,320,0): 177, 127, 68, (51,321,0): 175, 126, 68, (51,322,0): 174, 125, 69, (51,323,0): 168, 123, 66, (51,324,0): 164, 121, 68, (51,325,0): 160, 119, 65, (51,326,0): 157, 117, 66, (51,327,0): 153, 117, 65, (51,328,0): 152, 118, 70, (51,329,0): 151, 117, 69, (51,330,0): 150, 116, 71, (51,331,0): 149, 115, 70, (51,332,0): 149, 111, 72, (51,333,0): 147, 109, 70, (51,334,0): 147, 107, 71, (51,335,0): 146, 108, 71, (51,336,0): 142, 107, 69, (51,337,0): 141, 107, 69, (51,338,0): 141, 107, 70, (51,339,0): 141, 107, 70, (51,340,0): 141, 107, 72, (51,341,0): 141, 107, 72, (51,342,0): 141, 106, 74, (51,343,0): 141, 106, 74, (51,344,0): 138, 103, 75, (51,345,0): 138, 103, 75, (51,346,0): 137, 101, 75, (51,347,0): 137, 101, 75, (51,348,0): 137, 101, 77, (51,349,0): 136, 100, 76, (51,350,0): 136, 100, 78, (51,351,0): 136, 100, 78, (51,352,0): 138, 100, 77, (51,353,0): 137, 99, 76, (51,354,0): 137, 99, 76, (51,355,0): 137, 99, 76, (51,356,0): 138, 100, 77, (51,357,0): 140, 102, 79, (51,358,0): 142, 104, 81, (51,359,0): 143, 105, 82, (51,360,0): 144, 106, 83, (51,361,0): 144, 106, 83, (51,362,0): 144, 106, 83, (51,363,0): 144, 106, 83, (51,364,0): 144, 106, 83, (51,365,0): 144, 106, 83, (51,366,0): 144, 106, 83, (51,367,0): 146, 105, 83, (51,368,0): 149, 104, 83, (51,369,0): 150, 103, 83, (51,370,0): 149, 102, 82, (51,371,0): 149, 102, 82, (51,372,0): 149, 102, 82, (51,373,0): 149, 102, 82, (51,374,0): 149, 102, 82, (51,375,0): 149, 102, 82, (51,376,0): 147, 102, 81, (51,377,0): 147, 102, 81, (51,378,0): 148, 103, 82, (51,379,0): 149, 104, 83, (51,380,0): 150, 105, 84, (51,381,0): 151, 106, 85, (51,382,0): 149, 107, 85, (51,383,0): 152, 107, 88, (51,384,0): 151, 104, 88, (51,385,0): 152, 103, 88, (51,386,0): 154, 105, 90, (51,387,0): 155, 106, 89, (51,388,0): 156, 109, 89, (51,389,0): 157, 111, 88, (51,390,0): 158, 112, 88, (51,391,0): 160, 113, 87, (51,392,0): 171, 120, 93, (51,393,0): 173, 119, 91, (51,394,0): 176, 119, 90, (51,395,0): 180, 121, 91, (51,396,0): 184, 121, 90, (51,397,0): 188, 121, 92, (51,398,0): 192, 123, 92, (51,399,0): 193, 124, 91, (51,400,0): 192, 129, 88, (51,401,0): 191, 130, 86, (51,402,0): 192, 129, 88, (51,403,0): 192, 129, 88, (51,404,0): 192, 128, 92, (51,405,0): 192, 128, 92, (51,406,0): 193, 127, 92, (51,407,0): 193, 127, 92, (51,408,0): 200, 132, 97, (51,409,0): 199, 131, 94, (51,410,0): 198, 130, 91, (51,411,0): 198, 131, 89, (51,412,0): 198, 131, 88, (51,413,0): 199, 132, 87, (51,414,0): 200, 133, 88, (51,415,0): 201, 135, 87, (51,416,0): 205, 135, 86, (51,417,0): 211, 139, 89, (51,418,0): 217, 141, 91, (51,419,0): 220, 140, 91, (51,420,0): 225, 143, 93, (51,421,0): 229, 147, 97, (51,422,0): 224, 144, 95, (51,423,0): 211, 137, 88, (51,424,0): 201, 133, 84, (51,425,0): 188, 127, 80, (51,426,0): 173, 120, 78, (51,427,0): 163, 115, 75, (51,428,0): 156, 111, 78, (51,429,0): 147, 106, 76, (51,430,0): 137, 97, 71, (51,431,0): 130, 89, 67, (51,432,0): 123, 82, 62, (51,433,0): 121, 80, 60, (51,434,0): 117, 79, 60, (51,435,0): 114, 78, 56, (51,436,0): 112, 77, 57, (51,437,0): 111, 79, 56, (51,438,0): 112, 81, 60, (51,439,0): 111, 83, 59, (51,440,0): 115, 87, 65, (51,441,0): 116, 90, 65, (51,442,0): 118, 90, 68, (51,443,0): 120, 92, 68, (51,444,0): 122, 91, 70, (51,445,0): 122, 92, 68, (51,446,0): 123, 91, 70, (51,447,0): 122, 90, 69, (51,448,0): 120, 89, 68, (51,449,0): 117, 86, 65, (51,450,0): 112, 84, 62, (51,451,0): 110, 82, 61, (51,452,0): 110, 81, 63, (51,453,0): 109, 80, 62, (51,454,0): 104, 77, 60, (51,455,0): 101, 74, 57, (51,456,0): 97, 69, 55, (51,457,0): 95, 69, 56, (51,458,0): 93, 66, 55, (51,459,0): 92, 65, 54, (51,460,0): 89, 65, 55, (51,461,0): 89, 65, 55, (51,462,0): 89, 64, 57, (51,463,0): 90, 65, 58, (51,464,0): 89, 64, 59, (51,465,0): 88, 63, 59, (51,466,0): 86, 61, 57, (51,467,0): 85, 60, 56, (51,468,0): 85, 61, 57, (51,469,0): 88, 64, 60, (51,470,0): 91, 67, 63, (51,471,0): 94, 70, 66, (51,472,0): 90, 69, 64, (51,473,0): 90, 69, 64, (51,474,0): 89, 70, 64, (51,475,0): 89, 70, 64, (51,476,0): 89, 70, 64, (51,477,0): 89, 70, 64, (51,478,0): 88, 71, 64, (51,479,0): 89, 70, 63, (51,480,0): 92, 69, 61, (51,481,0): 92, 67, 60, (51,482,0): 91, 66, 59, (51,483,0): 91, 66, 59, (51,484,0): 91, 66, 59, (51,485,0): 92, 67, 60, (51,486,0): 93, 68, 61, (51,487,0): 94, 69, 62, (51,488,0): 95, 70, 63, (51,489,0): 94, 69, 62, (51,490,0): 93, 68, 61, (51,491,0): 92, 67, 60, (51,492,0): 90, 65, 58, (51,493,0): 90, 65, 58, (51,494,0): 89, 64, 57, (51,495,0): 88, 65, 59, (51,496,0): 85, 61, 61, (51,497,0): 82, 60, 62, (51,498,0): 81, 59, 61, (51,499,0): 80, 58, 60, (51,500,0): 81, 56, 59, (51,501,0): 80, 55, 58, (51,502,0): 81, 55, 58, (51,503,0): 80, 54, 57, (51,504,0): 81, 55, 58, (51,505,0): 81, 55, 58, (51,506,0): 83, 54, 58, (51,507,0): 83, 54, 58, (51,508,0): 85, 54, 59, (51,509,0): 87, 56, 61, (51,510,0): 89, 58, 63, (51,511,0): 90, 60, 60, (51,512,0): 91, 63, 59, (51,513,0): 90, 65, 58, (51,514,0): 90, 65, 58, (51,515,0): 91, 66, 59, (51,516,0): 93, 68, 61, (51,517,0): 94, 69, 62, (51,518,0): 94, 69, 62, (51,519,0): 95, 70, 63, (51,520,0): 95, 70, 63, (51,521,0): 95, 70, 63, (51,522,0): 96, 71, 64, (51,523,0): 96, 71, 64, (51,524,0): 96, 71, 64, (51,525,0): 94, 69, 62, (51,526,0): 93, 68, 61, (51,527,0): 94, 67, 60, (51,528,0): 92, 65, 58, (51,529,0): 94, 65, 59, (51,530,0): 95, 68, 61, (51,531,0): 96, 68, 64, (51,532,0): 94, 69, 65, (51,533,0): 93, 67, 66, (51,534,0): 94, 66, 65, (51,535,0): 94, 66, 65, (51,536,0): 96, 66, 68, (51,537,0): 93, 61, 62, (51,538,0): 95, 59, 61, (51,539,0): 100, 61, 62, (51,540,0): 102, 60, 61, (51,541,0): 100, 56, 55, (51,542,0): 101, 55, 55, (51,543,0): 110, 55, 58, (51,544,0): 112, 45, 52, (51,545,0): 109, 42, 51, (51,546,0): 97, 42, 47, (51,547,0): 89, 44, 47, (51,548,0): 82, 47, 51, (51,549,0): 79, 50, 54, (51,550,0): 76, 49, 54, (51,551,0): 74, 47, 52, (51,552,0): 77, 52, 58, (51,553,0): 75, 52, 58, (51,554,0): 72, 53, 57, (51,555,0): 69, 53, 56, (51,556,0): 70, 51, 55, (51,557,0): 71, 48, 54, (51,558,0): 75, 45, 53, (51,559,0): 74, 44, 52, (51,560,0): 71, 45, 54, (51,561,0): 67, 46, 53, (51,562,0): 67, 46, 53, (51,563,0): 66, 45, 52, (51,564,0): 67, 46, 51, (51,565,0): 68, 47, 52, (51,566,0): 70, 49, 54, (51,567,0): 71, 51, 53, (51,568,0): 74, 54, 56, (51,569,0): 75, 55, 57, (51,570,0): 77, 57, 58, (51,571,0): 78, 58, 59, (51,572,0): 79, 59, 60, (51,573,0): 78, 58, 59, (51,574,0): 78, 58, 57, (51,575,0): 77, 57, 56, (51,576,0): 76, 57, 53, (51,577,0): 76, 57, 53, (51,578,0): 75, 56, 52, (51,579,0): 74, 55, 51, (51,580,0): 73, 53, 52, (51,581,0): 73, 53, 52, (51,582,0): 72, 52, 51, (51,583,0): 72, 52, 51, (51,584,0): 70, 50, 51, (51,585,0): 69, 49, 50, (51,586,0): 69, 49, 51, (51,587,0): 68, 48, 50, (51,588,0): 66, 46, 48, (51,589,0): 65, 45, 47, (51,590,0): 65, 44, 49, (51,591,0): 64, 43, 48, (51,592,0): 62, 42, 44, (51,593,0): 61, 41, 43, (51,594,0): 59, 39, 41, (51,595,0): 57, 37, 39, (51,596,0): 56, 36, 38, (51,597,0): 56, 36, 38, (51,598,0): 56, 36, 38, (51,599,0): 57, 37, 39, (52,0,0): 35, 26, 43, (52,1,0): 35, 26, 43, (52,2,0): 35, 27, 42, (52,3,0): 35, 27, 42, (52,4,0): 37, 26, 42, (52,5,0): 37, 26, 42, (52,6,0): 37, 26, 40, (52,7,0): 37, 26, 40, (52,8,0): 37, 25, 37, (52,9,0): 38, 26, 38, (52,10,0): 39, 25, 38, (52,11,0): 39, 25, 38, (52,12,0): 40, 27, 37, (52,13,0): 41, 28, 38, (52,14,0): 43, 27, 38, (52,15,0): 43, 27, 38, (52,16,0): 47, 29, 41, (52,17,0): 47, 29, 41, (52,18,0): 47, 29, 41, (52,19,0): 47, 29, 41, (52,20,0): 47, 29, 41, (52,21,0): 47, 29, 41, (52,22,0): 47, 29, 41, (52,23,0): 47, 29, 41, (52,24,0): 49, 31, 43, (52,25,0): 49, 31, 43, (52,26,0): 49, 31, 43, (52,27,0): 49, 31, 43, (52,28,0): 49, 31, 43, (52,29,0): 49, 31, 43, (52,30,0): 49, 31, 43, (52,31,0): 49, 31, 43, (52,32,0): 47, 30, 46, (52,33,0): 47, 30, 46, (52,34,0): 47, 30, 46, (52,35,0): 47, 30, 46, (52,36,0): 47, 30, 46, (52,37,0): 47, 30, 46, (52,38,0): 47, 30, 46, (52,39,0): 47, 30, 46, (52,40,0): 48, 31, 47, (52,41,0): 48, 31, 47, (52,42,0): 47, 30, 46, (52,43,0): 47, 30, 46, (52,44,0): 47, 30, 46, (52,45,0): 46, 29, 45, (52,46,0): 46, 29, 45, (52,47,0): 46, 29, 45, (52,48,0): 45, 28, 44, (52,49,0): 45, 28, 44, (52,50,0): 45, 28, 44, (52,51,0): 45, 28, 44, (52,52,0): 45, 28, 44, (52,53,0): 45, 28, 44, (52,54,0): 45, 28, 44, (52,55,0): 45, 28, 44, (52,56,0): 46, 29, 45, (52,57,0): 46, 29, 45, (52,58,0): 46, 29, 45, (52,59,0): 45, 28, 44, (52,60,0): 45, 28, 44, (52,61,0): 44, 27, 43, (52,62,0): 44, 27, 43, (52,63,0): 44, 28, 41, (52,64,0): 42, 24, 38, (52,65,0): 43, 25, 37, (52,66,0): 43, 25, 37, (52,67,0): 44, 26, 38, (52,68,0): 45, 27, 41, (52,69,0): 46, 28, 42, (52,70,0): 46, 30, 43, (52,71,0): 46, 30, 43, (52,72,0): 40, 26, 41, (52,73,0): 40, 26, 41, (52,74,0): 39, 26, 43, (52,75,0): 38, 25, 42, (52,76,0): 38, 25, 42, (52,77,0): 37, 24, 41, (52,78,0): 37, 24, 42, (52,79,0): 35, 23, 43, (52,80,0): 32, 23, 44, (52,81,0): 31, 23, 44, (52,82,0): 31, 23, 44, (52,83,0): 31, 23, 44, (52,84,0): 31, 23, 44, (52,85,0): 31, 23, 44, (52,86,0): 31, 23, 44, (52,87,0): 31, 23, 44, (52,88,0): 31, 23, 44, (52,89,0): 31, 23, 44, (52,90,0): 31, 23, 44, (52,91,0): 31, 23, 44, (52,92,0): 31, 23, 44, (52,93,0): 31, 23, 44, (52,94,0): 31, 23, 44, (52,95,0): 31, 23, 44, (52,96,0): 34, 25, 44, (52,97,0): 34, 25, 44, (52,98,0): 34, 25, 44, (52,99,0): 33, 24, 43, (52,100,0): 33, 24, 43, (52,101,0): 33, 24, 43, (52,102,0): 33, 24, 43, (52,103,0): 33, 24, 43, (52,104,0): 32, 23, 42, (52,105,0): 32, 23, 42, (52,106,0): 32, 23, 42, (52,107,0): 32, 23, 42, (52,108,0): 32, 23, 42, (52,109,0): 32, 23, 42, (52,110,0): 32, 23, 42, (52,111,0): 32, 23, 42, (52,112,0): 30, 21, 38, (52,113,0): 30, 21, 38, (52,114,0): 31, 22, 39, (52,115,0): 31, 22, 39, (52,116,0): 32, 23, 40, (52,117,0): 32, 23, 40, (52,118,0): 33, 24, 41, (52,119,0): 33, 24, 41, (52,120,0): 32, 23, 40, (52,121,0): 32, 23, 40, (52,122,0): 32, 23, 40, (52,123,0): 33, 24, 41, (52,124,0): 33, 24, 41, (52,125,0): 34, 25, 42, (52,126,0): 34, 25, 42, (52,127,0): 34, 25, 42, (52,128,0): 33, 24, 43, (52,129,0): 33, 24, 43, (52,130,0): 33, 24, 43, (52,131,0): 33, 24, 43, (52,132,0): 33, 24, 43, (52,133,0): 33, 24, 43, (52,134,0): 33, 24, 43, (52,135,0): 33, 24, 43, (52,136,0): 34, 25, 44, (52,137,0): 33, 24, 43, (52,138,0): 31, 22, 41, (52,139,0): 30, 21, 40, (52,140,0): 30, 21, 40, (52,141,0): 30, 21, 40, (52,142,0): 31, 22, 41, (52,143,0): 31, 22, 41, (52,144,0): 33, 24, 43, (52,145,0): 33, 24, 43, (52,146,0): 33, 24, 43, (52,147,0): 32, 23, 42, (52,148,0): 32, 23, 42, (52,149,0): 31, 22, 41, (52,150,0): 31, 22, 41, (52,151,0): 30, 21, 40, (52,152,0): 29, 20, 39, (52,153,0): 29, 20, 39, (52,154,0): 29, 20, 39, (52,155,0): 30, 21, 40, (52,156,0): 31, 22, 41, (52,157,0): 31, 22, 41, (52,158,0): 31, 22, 41, (52,159,0): 32, 23, 42, (52,160,0): 31, 24, 42, (52,161,0): 31, 24, 42, (52,162,0): 31, 24, 42, (52,163,0): 31, 24, 42, (52,164,0): 31, 24, 42, (52,165,0): 31, 24, 42, (52,166,0): 31, 24, 42, (52,167,0): 31, 24, 42, (52,168,0): 32, 25, 43, (52,169,0): 32, 25, 43, (52,170,0): 33, 26, 44, (52,171,0): 33, 26, 44, (52,172,0): 34, 27, 45, (52,173,0): 34, 27, 45, (52,174,0): 35, 28, 46, (52,175,0): 35, 28, 46, (52,176,0): 35, 27, 50, (52,177,0): 35, 27, 50, (52,178,0): 34, 26, 49, (52,179,0): 32, 24, 47, (52,180,0): 31, 23, 46, (52,181,0): 30, 22, 45, (52,182,0): 29, 21, 44, (52,183,0): 28, 20, 43, (52,184,0): 32, 24, 47, (52,185,0): 32, 24, 47, (52,186,0): 32, 24, 47, (52,187,0): 33, 25, 48, (52,188,0): 33, 25, 48, (52,189,0): 34, 26, 49, (52,190,0): 34, 26, 49, (52,191,0): 34, 26, 47, (52,192,0): 31, 26, 46, (52,193,0): 31, 27, 44, (52,194,0): 32, 25, 43, (52,195,0): 32, 25, 43, (52,196,0): 33, 26, 44, (52,197,0): 34, 27, 45, (52,198,0): 36, 27, 46, (52,199,0): 37, 28, 47, (52,200,0): 38, 26, 46, (52,201,0): 38, 26, 46, (52,202,0): 39, 27, 47, (52,203,0): 39, 27, 47, (52,204,0): 41, 28, 48, (52,205,0): 41, 28, 48, (52,206,0): 42, 29, 49, (52,207,0): 43, 28, 49, (52,208,0): 48, 31, 50, (52,209,0): 50, 31, 51, (52,210,0): 50, 31, 50, (52,211,0): 51, 32, 51, (52,212,0): 53, 32, 51, (52,213,0): 54, 33, 52, (52,214,0): 54, 33, 50, (52,215,0): 54, 33, 50, (52,216,0): 58, 35, 51, (52,217,0): 58, 35, 51, (52,218,0): 59, 35, 51, (52,219,0): 58, 34, 50, (52,220,0): 58, 34, 48, (52,221,0): 57, 33, 47, (52,222,0): 59, 32, 47, (52,223,0): 56, 32, 46, (52,224,0): 55, 32, 48, (52,225,0): 54, 33, 48, (52,226,0): 54, 33, 48, (52,227,0): 54, 33, 48, (52,228,0): 54, 33, 48, (52,229,0): 54, 33, 48, (52,230,0): 54, 33, 48, (52,231,0): 54, 33, 48, (52,232,0): 53, 32, 47, (52,233,0): 53, 32, 47, (52,234,0): 54, 33, 48, (52,235,0): 55, 34, 49, (52,236,0): 56, 35, 50, (52,237,0): 57, 36, 51, (52,238,0): 58, 37, 52, (52,239,0): 59, 38, 53, (52,240,0): 59, 35, 51, (52,241,0): 62, 35, 50, (52,242,0): 62, 35, 50, (52,243,0): 63, 36, 51, (52,244,0): 65, 39, 52, (52,245,0): 66, 40, 53, (52,246,0): 66, 40, 53, (52,247,0): 67, 41, 52, (52,248,0): 64, 38, 49, (52,249,0): 64, 38, 49, (52,250,0): 64, 38, 47, (52,251,0): 64, 38, 47, (52,252,0): 64, 38, 47, (52,253,0): 64, 39, 45, (52,254,0): 64, 39, 45, (52,255,0): 64, 39, 45, (52,256,0): 65, 38, 47, (52,257,0): 66, 39, 48, (52,258,0): 68, 38, 46, (52,259,0): 70, 40, 48, (52,260,0): 71, 41, 49, (52,261,0): 72, 42, 50, (52,262,0): 74, 43, 49, (52,263,0): 74, 43, 49, (52,264,0): 77, 44, 51, (52,265,0): 77, 45, 50, (52,266,0): 77, 45, 50, (52,267,0): 78, 46, 51, (52,268,0): 81, 46, 50, (52,269,0): 81, 46, 50, (52,270,0): 81, 46, 50, (52,271,0): 82, 47, 51, (52,272,0): 83, 47, 49, (52,273,0): 83, 47, 49, (52,274,0): 83, 47, 49, (52,275,0): 84, 48, 50, (52,276,0): 84, 48, 50, (52,277,0): 85, 49, 51, (52,278,0): 85, 49, 51, (52,279,0): 85, 49, 51, (52,280,0): 87, 51, 53, (52,281,0): 87, 51, 53, (52,282,0): 87, 51, 53, (52,283,0): 88, 52, 54, (52,284,0): 90, 54, 56, (52,285,0): 92, 56, 58, (52,286,0): 94, 58, 60, (52,287,0): 98, 59, 62, (52,288,0): 102, 61, 65, (52,289,0): 102, 60, 62, (52,290,0): 104, 59, 62, (52,291,0): 105, 61, 62, (52,292,0): 107, 63, 62, (52,293,0): 110, 66, 63, (52,294,0): 115, 70, 65, (52,295,0): 117, 72, 66, (52,296,0): 123, 76, 68, (52,297,0): 122, 75, 65, (52,298,0): 120, 74, 61, (52,299,0): 120, 74, 59, (52,300,0): 123, 76, 60, (52,301,0): 127, 80, 62, (52,302,0): 131, 84, 66, (52,303,0): 135, 87, 64, (52,304,0): 148, 93, 63, (52,305,0): 168, 108, 71, (52,306,0): 191, 123, 76, (52,307,0): 201, 128, 75, (52,308,0): 204, 130, 69, (52,309,0): 203, 132, 68, (52,310,0): 198, 133, 69, (52,311,0): 191, 131, 68, (52,312,0): 192, 137, 73, (52,313,0): 190, 137, 71, (52,314,0): 189, 134, 67, (52,315,0): 188, 134, 64, (52,316,0): 186, 133, 63, (52,317,0): 184, 134, 65, (52,318,0): 183, 134, 68, (52,319,0): 182, 134, 72, (52,320,0): 180, 130, 71, (52,321,0): 177, 128, 70, (52,322,0): 175, 126, 70, (52,323,0): 169, 124, 67, (52,324,0): 164, 121, 68, (52,325,0): 160, 121, 66, (52,326,0): 156, 119, 67, (52,327,0): 154, 118, 66, (52,328,0): 152, 118, 70, (52,329,0): 152, 118, 70, (52,330,0): 151, 117, 72, (52,331,0): 149, 115, 70, (52,332,0): 147, 112, 72, (52,333,0): 146, 111, 71, (52,334,0): 147, 109, 72, (52,335,0): 146, 108, 71, (52,336,0): 141, 106, 68, (52,337,0): 140, 106, 68, (52,338,0): 141, 107, 70, (52,339,0): 141, 107, 70, (52,340,0): 141, 107, 72, (52,341,0): 142, 108, 73, (52,342,0): 142, 107, 75, (52,343,0): 142, 107, 75, (52,344,0): 138, 103, 75, (52,345,0): 138, 103, 75, (52,346,0): 137, 101, 75, (52,347,0): 137, 101, 75, (52,348,0): 136, 100, 76, (52,349,0): 135, 99, 75, (52,350,0): 135, 99, 77, (52,351,0): 134, 98, 76, (52,352,0): 138, 100, 77, (52,353,0): 137, 99, 76, (52,354,0): 137, 99, 76, (52,355,0): 137, 99, 76, (52,356,0): 138, 100, 77, (52,357,0): 140, 102, 79, (52,358,0): 142, 104, 81, (52,359,0): 143, 105, 82, (52,360,0): 144, 106, 83, (52,361,0): 144, 106, 83, (52,362,0): 144, 106, 83, (52,363,0): 144, 106, 83, (52,364,0): 144, 106, 83, (52,365,0): 144, 106, 83, (52,366,0): 144, 106, 83, (52,367,0): 146, 105, 83, (52,368,0): 146, 104, 82, (52,369,0): 148, 103, 82, (52,370,0): 149, 104, 83, (52,371,0): 149, 104, 83, (52,372,0): 149, 104, 83, (52,373,0): 149, 104, 83, (52,374,0): 149, 104, 83, (52,375,0): 149, 104, 83, (52,376,0): 147, 102, 81, (52,377,0): 148, 103, 82, (52,378,0): 149, 104, 83, (52,379,0): 150, 105, 84, (52,380,0): 151, 106, 85, (52,381,0): 152, 107, 86, (52,382,0): 153, 108, 87, (52,383,0): 154, 109, 90, (52,384,0): 152, 105, 89, (52,385,0): 154, 105, 90, (52,386,0): 155, 106, 91, (52,387,0): 157, 108, 91, (52,388,0): 158, 110, 90, (52,389,0): 160, 112, 90, (52,390,0): 161, 113, 90, (52,391,0): 164, 114, 89, (52,392,0): 173, 122, 95, (52,393,0): 176, 122, 94, (52,394,0): 179, 122, 93, (52,395,0): 184, 123, 94, (52,396,0): 187, 124, 93, (52,397,0): 190, 124, 92, (52,398,0): 193, 124, 93, (52,399,0): 193, 124, 91, (52,400,0): 192, 129, 88, (52,401,0): 192, 129, 86, (52,402,0): 192, 129, 88, (52,403,0): 192, 129, 88, (52,404,0): 192, 128, 92, (52,405,0): 192, 128, 92, (52,406,0): 193, 127, 92, (52,407,0): 193, 127, 92, (52,408,0): 198, 133, 95, (52,409,0): 198, 133, 95, (52,410,0): 199, 131, 92, (52,411,0): 199, 132, 90, (52,412,0): 199, 132, 89, (52,413,0): 201, 133, 88, (52,414,0): 203, 135, 90, (52,415,0): 206, 136, 87, (52,416,0): 209, 136, 85, (52,417,0): 217, 140, 88, (52,418,0): 223, 143, 90, (52,419,0): 226, 143, 91, (52,420,0): 232, 146, 95, (52,421,0): 233, 150, 98, (52,422,0): 226, 144, 94, (52,423,0): 213, 137, 87, (52,424,0): 200, 132, 83, (52,425,0): 188, 127, 80, (52,426,0): 173, 120, 78, (52,427,0): 163, 115, 75, (52,428,0): 156, 113, 79, (52,429,0): 148, 107, 77, (52,430,0): 138, 98, 72, (52,431,0): 130, 90, 65, (52,432,0): 123, 82, 60, (52,433,0): 123, 82, 60, (52,434,0): 120, 82, 61, (52,435,0): 119, 83, 59, (52,436,0): 117, 82, 60, (52,437,0): 115, 83, 58, (52,438,0): 113, 83, 59, (52,439,0): 111, 84, 57, (52,440,0): 116, 88, 64, (52,441,0): 117, 90, 63, (52,442,0): 119, 91, 67, (52,443,0): 121, 94, 67, (52,444,0): 125, 95, 71, (52,445,0): 127, 95, 70, (52,446,0): 128, 93, 71, (52,447,0): 126, 94, 71, (52,448,0): 120, 89, 68, (52,449,0): 117, 86, 66, (52,450,0): 113, 82, 62, (52,451,0): 111, 80, 60, (52,452,0): 109, 80, 62, (52,453,0): 107, 78, 60, (52,454,0): 103, 74, 58, (52,455,0): 99, 71, 57, (52,456,0): 96, 68, 56, (52,457,0): 95, 67, 55, (52,458,0): 92, 65, 54, (52,459,0): 91, 64, 55, (52,460,0): 91, 64, 57, (52,461,0): 91, 64, 57, (52,462,0): 90, 65, 58, (52,463,0): 91, 66, 59, (52,464,0): 90, 65, 60, (52,465,0): 88, 63, 58, (52,466,0): 86, 61, 56, (52,467,0): 85, 60, 55, (52,468,0): 85, 62, 56, (52,469,0): 88, 65, 59, (52,470,0): 92, 69, 63, (52,471,0): 94, 71, 65, (52,472,0): 91, 71, 64, (52,473,0): 91, 71, 64, (52,474,0): 90, 71, 64, (52,475,0): 90, 71, 64, (52,476,0): 90, 71, 64, (52,477,0): 90, 71, 64, (52,478,0): 89, 72, 64, (52,479,0): 90, 71, 64, (52,480,0): 93, 70, 62, (52,481,0): 93, 68, 61, (52,482,0): 92, 67, 60, (52,483,0): 91, 66, 59, (52,484,0): 91, 66, 59, (52,485,0): 91, 66, 59, (52,486,0): 92, 67, 60, (52,487,0): 93, 68, 61, (52,488,0): 95, 70, 63, (52,489,0): 95, 70, 63, (52,490,0): 94, 69, 62, (52,491,0): 94, 69, 62, (52,492,0): 92, 67, 60, (52,493,0): 91, 66, 59, (52,494,0): 90, 65, 58, (52,495,0): 88, 65, 59, (52,496,0): 85, 61, 59, (52,497,0): 83, 62, 61, (52,498,0): 82, 61, 60, (52,499,0): 81, 60, 59, (52,500,0): 82, 58, 58, (52,501,0): 81, 57, 57, (52,502,0): 81, 55, 56, (52,503,0): 81, 55, 56, (52,504,0): 82, 56, 57, (52,505,0): 82, 56, 57, (52,506,0): 83, 54, 56, (52,507,0): 84, 55, 57, (52,508,0): 86, 56, 58, (52,509,0): 87, 57, 59, (52,510,0): 89, 59, 61, (52,511,0): 91, 61, 61, (52,512,0): 91, 63, 59, (52,513,0): 92, 65, 56, (52,514,0): 92, 65, 56, (52,515,0): 93, 66, 57, (52,516,0): 95, 68, 59, (52,517,0): 96, 69, 60, (52,518,0): 96, 69, 60, (52,519,0): 97, 70, 61, (52,520,0): 98, 71, 62, (52,521,0): 98, 71, 62, (52,522,0): 99, 72, 63, (52,523,0): 99, 72, 63, (52,524,0): 99, 72, 63, (52,525,0): 98, 71, 62, (52,526,0): 96, 69, 60, (52,527,0): 95, 68, 59, (52,528,0): 95, 68, 59, (52,529,0): 96, 69, 60, (52,530,0): 97, 70, 61, (52,531,0): 98, 71, 64, (52,532,0): 98, 70, 66, (52,533,0): 98, 70, 67, (52,534,0): 98, 68, 66, (52,535,0): 98, 67, 65, (52,536,0): 100, 66, 67, (52,537,0): 99, 60, 61, (52,538,0): 100, 58, 60, (52,539,0): 106, 60, 62, (52,540,0): 107, 57, 58, (52,541,0): 106, 55, 54, (52,542,0): 117, 61, 62, (52,543,0): 138, 69, 72, (52,544,0): 152, 59, 69, (52,545,0): 148, 51, 62, (52,546,0): 126, 46, 55, (52,547,0): 107, 45, 50, (52,548,0): 92, 47, 50, (52,549,0): 84, 49, 53, (52,550,0): 78, 49, 53, (52,551,0): 74, 47, 52, (52,552,0): 78, 53, 59, (52,553,0): 74, 53, 60, (52,554,0): 70, 53, 59, (52,555,0): 68, 53, 58, (52,556,0): 68, 52, 55, (52,557,0): 69, 50, 54, (52,558,0): 70, 48, 51, (52,559,0): 70, 47, 53, (52,560,0): 70, 47, 55, (52,561,0): 68, 47, 54, (52,562,0): 68, 47, 52, (52,563,0): 67, 46, 51, (52,564,0): 68, 47, 52, (52,565,0): 69, 48, 53, (52,566,0): 71, 51, 53, (52,567,0): 72, 52, 54, (52,568,0): 75, 55, 57, (52,569,0): 76, 56, 57, (52,570,0): 78, 58, 59, (52,571,0): 79, 59, 60, (52,572,0): 80, 60, 59, (52,573,0): 79, 59, 58, (52,574,0): 79, 59, 58, (52,575,0): 78, 58, 57, (52,576,0): 78, 59, 55, (52,577,0): 78, 59, 55, (52,578,0): 77, 58, 54, (52,579,0): 76, 57, 53, (52,580,0): 74, 54, 53, (52,581,0): 73, 53, 52, (52,582,0): 72, 52, 51, (52,583,0): 72, 52, 51, (52,584,0): 70, 50, 51, (52,585,0): 69, 49, 50, (52,586,0): 69, 49, 51, (52,587,0): 68, 48, 50, (52,588,0): 66, 46, 48, (52,589,0): 65, 45, 47, (52,590,0): 65, 44, 49, (52,591,0): 64, 43, 48, (52,592,0): 62, 42, 44, (52,593,0): 61, 41, 43, (52,594,0): 59, 39, 41, (52,595,0): 57, 37, 39, (52,596,0): 56, 36, 38, (52,597,0): 56, 36, 38, (52,598,0): 56, 36, 38, (52,599,0): 57, 37, 39, (53,0,0): 35, 26, 43, (53,1,0): 35, 26, 43, (53,2,0): 35, 27, 42, (53,3,0): 35, 27, 42, (53,4,0): 37, 26, 42, (53,5,0): 37, 26, 42, (53,6,0): 37, 26, 40, (53,7,0): 37, 26, 40, (53,8,0): 37, 25, 37, (53,9,0): 37, 25, 37, (53,10,0): 38, 24, 37, (53,11,0): 39, 25, 38, (53,12,0): 39, 26, 36, (53,13,0): 40, 27, 37, (53,14,0): 42, 26, 37, (53,15,0): 43, 27, 38, (53,16,0): 47, 29, 41, (53,17,0): 47, 29, 41, (53,18,0): 47, 29, 41, (53,19,0): 47, 29, 41, (53,20,0): 47, 29, 41, (53,21,0): 47, 29, 41, (53,22,0): 47, 29, 41, (53,23,0): 47, 29, 41, (53,24,0): 48, 30, 42, (53,25,0): 48, 30, 42, (53,26,0): 48, 30, 42, (53,27,0): 48, 30, 42, (53,28,0): 48, 30, 42, (53,29,0): 48, 30, 42, (53,30,0): 48, 30, 42, (53,31,0): 48, 30, 42, (53,32,0): 47, 30, 46, (53,33,0): 47, 30, 46, (53,34,0): 47, 30, 46, (53,35,0): 47, 30, 46, (53,36,0): 47, 30, 46, (53,37,0): 47, 30, 46, (53,38,0): 47, 30, 46, (53,39,0): 47, 30, 46, (53,40,0): 47, 30, 46, (53,41,0): 47, 30, 46, (53,42,0): 47, 30, 46, (53,43,0): 47, 30, 46, (53,44,0): 47, 30, 46, (53,45,0): 47, 30, 46, (53,46,0): 47, 30, 46, (53,47,0): 47, 30, 46, (53,48,0): 46, 29, 45, (53,49,0): 46, 29, 45, (53,50,0): 46, 29, 45, (53,51,0): 46, 29, 45, (53,52,0): 46, 29, 45, (53,53,0): 46, 29, 45, (53,54,0): 46, 29, 45, (53,55,0): 46, 29, 45, (53,56,0): 46, 29, 45, (53,57,0): 46, 29, 45, (53,58,0): 46, 29, 45, (53,59,0): 45, 28, 44, (53,60,0): 45, 28, 44, (53,61,0): 44, 27, 43, (53,62,0): 44, 27, 43, (53,63,0): 44, 28, 41, (53,64,0): 43, 25, 39, (53,65,0): 44, 26, 38, (53,66,0): 44, 26, 38, (53,67,0): 45, 27, 39, (53,68,0): 46, 28, 42, (53,69,0): 46, 28, 42, (53,70,0): 46, 30, 43, (53,71,0): 46, 30, 43, (53,72,0): 41, 27, 42, (53,73,0): 40, 26, 41, (53,74,0): 39, 26, 43, (53,75,0): 38, 25, 42, (53,76,0): 38, 25, 42, (53,77,0): 37, 24, 41, (53,78,0): 37, 24, 42, (53,79,0): 36, 25, 42, (53,80,0): 34, 25, 46, (53,81,0): 33, 25, 46, (53,82,0): 33, 25, 46, (53,83,0): 33, 25, 46, (53,84,0): 33, 25, 46, (53,85,0): 33, 25, 46, (53,86,0): 33, 25, 46, (53,87,0): 33, 25, 46, (53,88,0): 33, 25, 46, (53,89,0): 33, 25, 46, (53,90,0): 33, 25, 46, (53,91,0): 33, 25, 46, (53,92,0): 33, 25, 46, (53,93,0): 33, 25, 46, (53,94,0): 33, 25, 46, (53,95,0): 33, 25, 46, (53,96,0): 35, 26, 45, (53,97,0): 35, 26, 45, (53,98,0): 34, 25, 44, (53,99,0): 34, 25, 44, (53,100,0): 34, 25, 44, (53,101,0): 33, 24, 43, (53,102,0): 33, 24, 43, (53,103,0): 33, 24, 43, (53,104,0): 32, 23, 42, (53,105,0): 32, 23, 42, (53,106,0): 32, 23, 42, (53,107,0): 32, 23, 42, (53,108,0): 32, 23, 42, (53,109,0): 32, 23, 42, (53,110,0): 32, 23, 42, (53,111,0): 32, 23, 42, (53,112,0): 30, 21, 38, (53,113,0): 30, 21, 38, (53,114,0): 31, 22, 39, (53,115,0): 31, 22, 39, (53,116,0): 32, 23, 40, (53,117,0): 32, 23, 40, (53,118,0): 33, 24, 41, (53,119,0): 33, 24, 41, (53,120,0): 32, 23, 40, (53,121,0): 32, 23, 40, (53,122,0): 32, 23, 40, (53,123,0): 33, 24, 41, (53,124,0): 33, 24, 41, (53,125,0): 34, 25, 42, (53,126,0): 34, 25, 42, (53,127,0): 34, 25, 42, (53,128,0): 33, 24, 43, (53,129,0): 33, 24, 43, (53,130,0): 33, 24, 43, (53,131,0): 33, 24, 43, (53,132,0): 33, 24, 43, (53,133,0): 33, 24, 43, (53,134,0): 33, 24, 43, (53,135,0): 33, 24, 43, (53,136,0): 33, 24, 43, (53,137,0): 32, 23, 42, (53,138,0): 31, 22, 41, (53,139,0): 30, 21, 40, (53,140,0): 29, 20, 39, (53,141,0): 29, 20, 39, (53,142,0): 30, 21, 40, (53,143,0): 31, 22, 41, (53,144,0): 34, 25, 44, (53,145,0): 33, 24, 43, (53,146,0): 33, 24, 43, (53,147,0): 33, 24, 43, (53,148,0): 32, 23, 42, (53,149,0): 31, 22, 41, (53,150,0): 31, 22, 41, (53,151,0): 31, 22, 41, (53,152,0): 29, 20, 39, (53,153,0): 30, 21, 40, (53,154,0): 30, 21, 40, (53,155,0): 31, 22, 41, (53,156,0): 31, 22, 41, (53,157,0): 32, 23, 42, (53,158,0): 32, 23, 42, (53,159,0): 32, 23, 42, (53,160,0): 31, 24, 42, (53,161,0): 31, 24, 42, (53,162,0): 31, 24, 42, (53,163,0): 31, 24, 42, (53,164,0): 31, 24, 42, (53,165,0): 31, 24, 42, (53,166,0): 31, 24, 42, (53,167,0): 31, 24, 42, (53,168,0): 32, 25, 43, (53,169,0): 32, 25, 43, (53,170,0): 33, 26, 44, (53,171,0): 33, 26, 44, (53,172,0): 34, 27, 45, (53,173,0): 34, 27, 45, (53,174,0): 35, 28, 46, (53,175,0): 35, 28, 46, (53,176,0): 33, 25, 48, (53,177,0): 33, 25, 48, (53,178,0): 32, 24, 47, (53,179,0): 32, 24, 47, (53,180,0): 31, 23, 46, (53,181,0): 30, 22, 45, (53,182,0): 29, 21, 44, (53,183,0): 29, 21, 44, (53,184,0): 30, 22, 45, (53,185,0): 31, 23, 46, (53,186,0): 31, 23, 46, (53,187,0): 31, 23, 46, (53,188,0): 32, 24, 47, (53,189,0): 33, 25, 48, (53,190,0): 33, 25, 48, (53,191,0): 33, 25, 46, (53,192,0): 30, 25, 45, (53,193,0): 30, 26, 43, (53,194,0): 33, 26, 44, (53,195,0): 33, 26, 44, (53,196,0): 34, 27, 45, (53,197,0): 34, 27, 45, (53,198,0): 36, 27, 46, (53,199,0): 36, 27, 46, (53,200,0): 38, 26, 46, (53,201,0): 38, 26, 46, (53,202,0): 39, 27, 47, (53,203,0): 39, 27, 47, (53,204,0): 41, 28, 48, (53,205,0): 41, 28, 48, (53,206,0): 42, 29, 49, (53,207,0): 43, 28, 49, (53,208,0): 49, 32, 51, (53,209,0): 50, 31, 51, (53,210,0): 50, 31, 50, (53,211,0): 51, 32, 51, (53,212,0): 54, 33, 52, (53,213,0): 54, 33, 52, (53,214,0): 54, 33, 50, (53,215,0): 55, 34, 51, (53,216,0): 59, 36, 52, (53,217,0): 58, 35, 51, (53,218,0): 59, 35, 51, (53,219,0): 59, 35, 51, (53,220,0): 58, 34, 48, (53,221,0): 57, 33, 47, (53,222,0): 59, 32, 47, (53,223,0): 57, 33, 47, (53,224,0): 56, 33, 49, (53,225,0): 55, 34, 49, (53,226,0): 55, 34, 49, (53,227,0): 55, 34, 49, (53,228,0): 55, 34, 49, (53,229,0): 55, 34, 49, (53,230,0): 55, 34, 49, (53,231,0): 55, 34, 49, (53,232,0): 54, 33, 48, (53,233,0): 54, 33, 48, (53,234,0): 55, 34, 49, (53,235,0): 56, 35, 50, (53,236,0): 57, 36, 51, (53,237,0): 58, 37, 52, (53,238,0): 59, 38, 53, (53,239,0): 60, 37, 53, (53,240,0): 59, 35, 49, (53,241,0): 62, 35, 50, (53,242,0): 62, 35, 50, (53,243,0): 63, 37, 50, (53,244,0): 65, 39, 52, (53,245,0): 66, 40, 53, (53,246,0): 66, 40, 51, (53,247,0): 67, 41, 52, (53,248,0): 63, 37, 48, (53,249,0): 63, 37, 46, (53,250,0): 63, 37, 46, (53,251,0): 63, 37, 46, (53,252,0): 63, 38, 44, (53,253,0): 63, 38, 44, (53,254,0): 63, 38, 44, (53,255,0): 63, 38, 44, (53,256,0): 65, 38, 47, (53,257,0): 65, 38, 47, (53,258,0): 69, 39, 47, (53,259,0): 70, 40, 48, (53,260,0): 72, 42, 50, (53,261,0): 73, 43, 51, (53,262,0): 75, 44, 50, (53,263,0): 76, 45, 51, (53,264,0): 77, 45, 50, (53,265,0): 78, 46, 51, (53,266,0): 78, 46, 51, (53,267,0): 79, 47, 52, (53,268,0): 81, 46, 50, (53,269,0): 82, 47, 51, (53,270,0): 82, 47, 51, (53,271,0): 82, 47, 51, (53,272,0): 83, 47, 49, (53,273,0): 83, 47, 49, (53,274,0): 83, 47, 49, (53,275,0): 84, 48, 50, (53,276,0): 84, 48, 50, (53,277,0): 85, 49, 51, (53,278,0): 85, 49, 51, (53,279,0): 85, 49, 51, (53,280,0): 88, 52, 54, (53,281,0): 88, 52, 54, (53,282,0): 88, 52, 54, (53,283,0): 89, 53, 55, (53,284,0): 90, 54, 56, (53,285,0): 93, 57, 59, (53,286,0): 95, 59, 61, (53,287,0): 98, 59, 62, (53,288,0): 101, 59, 63, (53,289,0): 102, 60, 64, (53,290,0): 104, 59, 62, (53,291,0): 106, 61, 64, (53,292,0): 108, 64, 65, (53,293,0): 111, 67, 66, (53,294,0): 114, 69, 66, (53,295,0): 115, 70, 65, (53,296,0): 122, 75, 69, (53,297,0): 121, 74, 64, (53,298,0): 120, 73, 63, (53,299,0): 120, 74, 61, (53,300,0): 123, 75, 61, (53,301,0): 128, 81, 65, (53,302,0): 132, 85, 69, (53,303,0): 138, 88, 65, (53,304,0): 150, 95, 64, (53,305,0): 168, 109, 67, (53,306,0): 190, 122, 73, (53,307,0): 202, 129, 74, (53,308,0): 207, 131, 69, (53,309,0): 205, 131, 66, (53,310,0): 200, 132, 67, (53,311,0): 195, 134, 69, (53,312,0): 193, 138, 73, (53,313,0): 191, 138, 72, (53,314,0): 190, 135, 68, (53,315,0): 189, 135, 65, (53,316,0): 188, 134, 64, (53,317,0): 185, 135, 66, (53,318,0): 185, 136, 70, (53,319,0): 184, 136, 74, (53,320,0): 181, 131, 72, (53,321,0): 179, 130, 72, (53,322,0): 173, 126, 70, (53,323,0): 169, 124, 67, (53,324,0): 163, 120, 67, (53,325,0): 159, 120, 65, (53,326,0): 156, 119, 67, (53,327,0): 154, 118, 66, (53,328,0): 153, 119, 71, (53,329,0): 152, 118, 70, (53,330,0): 151, 117, 72, (53,331,0): 150, 116, 71, (53,332,0): 148, 113, 73, (53,333,0): 146, 111, 71, (53,334,0): 147, 109, 72, (53,335,0): 145, 110, 72, (53,336,0): 141, 107, 69, (53,337,0): 141, 107, 69, (53,338,0): 142, 108, 71, (53,339,0): 142, 108, 71, (53,340,0): 142, 108, 73, (53,341,0): 142, 108, 73, (53,342,0): 143, 108, 76, (53,343,0): 143, 108, 76, (53,344,0): 138, 103, 75, (53,345,0): 138, 103, 75, (53,346,0): 137, 101, 75, (53,347,0): 136, 100, 74, (53,348,0): 135, 99, 75, (53,349,0): 134, 98, 74, (53,350,0): 134, 98, 76, (53,351,0): 133, 97, 75, (53,352,0): 138, 100, 77, (53,353,0): 137, 99, 76, (53,354,0): 137, 99, 76, (53,355,0): 137, 99, 76, (53,356,0): 138, 100, 77, (53,357,0): 140, 102, 79, (53,358,0): 142, 104, 81, (53,359,0): 143, 105, 82, (53,360,0): 144, 106, 83, (53,361,0): 144, 106, 83, (53,362,0): 144, 106, 83, (53,363,0): 144, 106, 83, (53,364,0): 144, 106, 83, (53,365,0): 144, 106, 83, (53,366,0): 144, 106, 83, (53,367,0): 144, 106, 83, (53,368,0): 146, 104, 82, (53,369,0): 148, 103, 82, (53,370,0): 149, 104, 83, (53,371,0): 149, 104, 83, (53,372,0): 150, 105, 84, (53,373,0): 150, 105, 84, (53,374,0): 150, 105, 84, (53,375,0): 150, 105, 84, (53,376,0): 148, 103, 82, (53,377,0): 148, 103, 82, (53,378,0): 149, 104, 83, (53,379,0): 151, 106, 85, (53,380,0): 152, 107, 86, (53,381,0): 154, 109, 88, (53,382,0): 155, 110, 89, (53,383,0): 157, 110, 90, (53,384,0): 155, 108, 90, (53,385,0): 156, 107, 90, (53,386,0): 157, 108, 91, (53,387,0): 159, 111, 91, (53,388,0): 161, 113, 93, (53,389,0): 164, 113, 92, (53,390,0): 165, 115, 92, (53,391,0): 167, 116, 89, (53,392,0): 177, 123, 95, (53,393,0): 179, 124, 94, (53,394,0): 184, 125, 95, (53,395,0): 187, 126, 95, (53,396,0): 191, 126, 94, (53,397,0): 192, 126, 94, (53,398,0): 194, 125, 94, (53,399,0): 192, 126, 92, (53,400,0): 194, 129, 89, (53,401,0): 193, 130, 87, (53,402,0): 193, 130, 89, (53,403,0): 193, 129, 91, (53,404,0): 193, 129, 93, (53,405,0): 193, 129, 93, (53,406,0): 194, 128, 93, (53,407,0): 194, 128, 93, (53,408,0): 197, 132, 94, (53,409,0): 197, 132, 92, (53,410,0): 199, 132, 90, (53,411,0): 200, 131, 89, (53,412,0): 201, 133, 88, (53,413,0): 205, 134, 88, (53,414,0): 207, 136, 90, (53,415,0): 211, 137, 88, (53,416,0): 215, 138, 84, (53,417,0): 222, 143, 87, (53,418,0): 228, 146, 90, (53,419,0): 230, 145, 90, (53,420,0): 234, 147, 93, (53,421,0): 235, 150, 96, (53,422,0): 226, 145, 92, (53,423,0): 212, 136, 86, (53,424,0): 199, 131, 82, (53,425,0): 186, 125, 78, (53,426,0): 171, 118, 76, (53,427,0): 162, 114, 74, (53,428,0): 155, 112, 78, (53,429,0): 148, 107, 77, (53,430,0): 138, 98, 72, (53,431,0): 130, 90, 65, (53,432,0): 124, 84, 59, (53,433,0): 125, 85, 60, (53,434,0): 127, 86, 64, (53,435,0): 125, 88, 62, (53,436,0): 124, 88, 64, (53,437,0): 119, 88, 60, (53,438,0): 117, 85, 60, (53,439,0): 114, 84, 56, (53,440,0): 116, 89, 62, (53,441,0): 117, 90, 61, (53,442,0): 120, 93, 66, (53,443,0): 124, 94, 66, (53,444,0): 128, 96, 71, (53,445,0): 129, 98, 70, (53,446,0): 131, 97, 72, (53,447,0): 131, 97, 72, (53,448,0): 122, 90, 69, (53,449,0): 117, 86, 66, (53,450,0): 114, 83, 63, (53,451,0): 111, 80, 60, (53,452,0): 109, 80, 62, (53,453,0): 106, 77, 59, (53,454,0): 103, 74, 58, (53,455,0): 99, 70, 56, (53,456,0): 95, 67, 55, (53,457,0): 94, 66, 54, (53,458,0): 92, 65, 54, (53,459,0): 91, 64, 55, (53,460,0): 91, 64, 57, (53,461,0): 92, 65, 58, (53,462,0): 91, 66, 59, (53,463,0): 92, 67, 60, (53,464,0): 89, 64, 59, (53,465,0): 88, 63, 58, (53,466,0): 87, 62, 57, (53,467,0): 87, 62, 57, (53,468,0): 87, 64, 58, (53,469,0): 89, 66, 60, (53,470,0): 92, 69, 63, (53,471,0): 94, 71, 65, (53,472,0): 93, 73, 66, (53,473,0): 93, 73, 66, (53,474,0): 92, 73, 66, (53,475,0): 92, 73, 66, (53,476,0): 92, 73, 66, (53,477,0): 92, 73, 66, (53,478,0): 91, 74, 66, (53,479,0): 92, 73, 66, (53,480,0): 94, 71, 63, (53,481,0): 94, 69, 62, (53,482,0): 92, 67, 60, (53,483,0): 91, 66, 59, (53,484,0): 90, 65, 58, (53,485,0): 91, 66, 59, (53,486,0): 92, 67, 60, (53,487,0): 92, 67, 60, (53,488,0): 95, 70, 63, (53,489,0): 95, 70, 63, (53,490,0): 96, 71, 64, (53,491,0): 95, 70, 63, (53,492,0): 94, 69, 62, (53,493,0): 92, 67, 60, (53,494,0): 91, 66, 59, (53,495,0): 89, 66, 60, (53,496,0): 87, 63, 61, (53,497,0): 84, 63, 60, (53,498,0): 83, 62, 61, (53,499,0): 82, 61, 58, (53,500,0): 83, 59, 59, (53,501,0): 82, 58, 56, (53,502,0): 82, 56, 57, (53,503,0): 82, 56, 55, (53,504,0): 83, 57, 58, (53,505,0): 83, 57, 56, (53,506,0): 85, 56, 58, (53,507,0): 85, 57, 56, (53,508,0): 87, 57, 59, (53,509,0): 89, 59, 59, (53,510,0): 91, 61, 63, (53,511,0): 92, 62, 60, (53,512,0): 91, 64, 57, (53,513,0): 92, 65, 56, (53,514,0): 92, 65, 56, (53,515,0): 93, 66, 57, (53,516,0): 95, 68, 59, (53,517,0): 96, 69, 60, (53,518,0): 96, 69, 60, (53,519,0): 97, 70, 61, (53,520,0): 100, 73, 64, (53,521,0): 100, 73, 64, (53,522,0): 101, 74, 65, (53,523,0): 101, 74, 65, (53,524,0): 101, 74, 65, (53,525,0): 99, 72, 63, (53,526,0): 98, 71, 62, (53,527,0): 97, 70, 61, (53,528,0): 98, 71, 60, (53,529,0): 99, 72, 61, (53,530,0): 100, 73, 62, (53,531,0): 100, 73, 64, (53,532,0): 100, 73, 66, (53,533,0): 99, 71, 67, (53,534,0): 100, 69, 66, (53,535,0): 101, 67, 65, (53,536,0): 101, 65, 65, (53,537,0): 102, 62, 62, (53,538,0): 109, 63, 65, (53,539,0): 117, 67, 68, (53,540,0): 116, 62, 62, (53,541,0): 118, 60, 59, (53,542,0): 135, 75, 75, (53,543,0): 170, 91, 96, (53,544,0): 198, 88, 99, (53,545,0): 188, 72, 85, (53,546,0): 154, 61, 69, (53,547,0): 124, 53, 57, (53,548,0): 102, 52, 55, (53,549,0): 88, 52, 54, (53,550,0): 80, 49, 54, (53,551,0): 73, 48, 54, (53,552,0): 78, 52, 61, (53,553,0): 75, 54, 61, (53,554,0): 73, 54, 60, (53,555,0): 69, 54, 59, (53,556,0): 68, 53, 56, (53,557,0): 67, 53, 53, (53,558,0): 67, 51, 52, (53,559,0): 69, 50, 52, (53,560,0): 70, 49, 54, (53,561,0): 69, 48, 55, (53,562,0): 69, 48, 53, (53,563,0): 68, 47, 52, (53,564,0): 69, 48, 53, (53,565,0): 70, 49, 54, (53,566,0): 72, 52, 54, (53,567,0): 73, 53, 55, (53,568,0): 76, 56, 57, (53,569,0): 77, 57, 58, (53,570,0): 79, 59, 60, (53,571,0): 80, 60, 61, (53,572,0): 81, 61, 60, (53,573,0): 80, 60, 59, (53,574,0): 80, 60, 59, (53,575,0): 79, 59, 58, (53,576,0): 80, 61, 57, (53,577,0): 79, 60, 56, (53,578,0): 78, 59, 55, (53,579,0): 77, 58, 54, (53,580,0): 75, 55, 54, (53,581,0): 74, 54, 53, (53,582,0): 73, 53, 52, (53,583,0): 72, 52, 51, (53,584,0): 70, 50, 51, (53,585,0): 69, 49, 50, (53,586,0): 69, 49, 51, (53,587,0): 68, 48, 50, (53,588,0): 66, 46, 48, (53,589,0): 65, 45, 47, (53,590,0): 65, 44, 49, (53,591,0): 64, 43, 48, (53,592,0): 62, 42, 44, (53,593,0): 61, 41, 43, (53,594,0): 59, 39, 41, (53,595,0): 57, 37, 39, (53,596,0): 56, 36, 38, (53,597,0): 56, 36, 38, (53,598,0): 56, 36, 38, (53,599,0): 57, 37, 39, (54,0,0): 35, 26, 43, (54,1,0): 35, 26, 43, (54,2,0): 35, 27, 42, (54,3,0): 35, 27, 42, (54,4,0): 37, 26, 42, (54,5,0): 37, 26, 42, (54,6,0): 37, 26, 40, (54,7,0): 37, 26, 40, (54,8,0): 36, 24, 36, (54,9,0): 37, 25, 37, (54,10,0): 38, 24, 37, (54,11,0): 39, 25, 38, (54,12,0): 39, 26, 36, (54,13,0): 40, 27, 37, (54,14,0): 42, 26, 37, (54,15,0): 42, 26, 37, (54,16,0): 46, 28, 40, (54,17,0): 46, 28, 40, (54,18,0): 46, 28, 40, (54,19,0): 46, 28, 40, (54,20,0): 46, 28, 40, (54,21,0): 46, 28, 40, (54,22,0): 46, 28, 40, (54,23,0): 46, 28, 40, (54,24,0): 48, 30, 42, (54,25,0): 48, 30, 42, (54,26,0): 48, 30, 42, (54,27,0): 48, 30, 42, (54,28,0): 48, 30, 42, (54,29,0): 48, 30, 42, (54,30,0): 48, 30, 42, (54,31,0): 48, 30, 42, (54,32,0): 48, 31, 47, (54,33,0): 48, 31, 47, (54,34,0): 48, 31, 47, (54,35,0): 48, 31, 47, (54,36,0): 48, 31, 47, (54,37,0): 48, 31, 47, (54,38,0): 48, 31, 47, (54,39,0): 48, 31, 47, (54,40,0): 47, 30, 46, (54,41,0): 47, 30, 46, (54,42,0): 47, 30, 46, (54,43,0): 48, 31, 47, (54,44,0): 48, 31, 47, (54,45,0): 48, 31, 47, (54,46,0): 48, 31, 47, (54,47,0): 48, 31, 47, (54,48,0): 47, 29, 45, (54,49,0): 47, 29, 45, (54,50,0): 47, 29, 45, (54,51,0): 47, 29, 45, (54,52,0): 47, 29, 45, (54,53,0): 47, 29, 45, (54,54,0): 47, 29, 45, (54,55,0): 47, 29, 45, (54,56,0): 47, 29, 45, (54,57,0): 47, 29, 45, (54,58,0): 47, 29, 45, (54,59,0): 46, 28, 44, (54,60,0): 46, 28, 44, (54,61,0): 45, 27, 43, (54,62,0): 45, 27, 43, (54,63,0): 45, 27, 41, (54,64,0): 45, 27, 41, (54,65,0): 45, 27, 39, (54,66,0): 45, 27, 39, (54,67,0): 45, 27, 39, (54,68,0): 46, 28, 42, (54,69,0): 46, 28, 42, (54,70,0): 46, 30, 43, (54,71,0): 46, 30, 43, (54,72,0): 40, 26, 41, (54,73,0): 40, 26, 41, (54,74,0): 39, 26, 43, (54,75,0): 38, 25, 42, (54,76,0): 38, 25, 42, (54,77,0): 37, 24, 41, (54,78,0): 37, 24, 42, (54,79,0): 35, 24, 41, (54,80,0): 35, 26, 47, (54,81,0): 35, 26, 47, (54,82,0): 35, 26, 47, (54,83,0): 35, 26, 47, (54,84,0): 35, 26, 47, (54,85,0): 35, 26, 47, (54,86,0): 35, 26, 47, (54,87,0): 35, 26, 47, (54,88,0): 35, 26, 47, (54,89,0): 35, 26, 47, (54,90,0): 35, 26, 47, (54,91,0): 35, 26, 47, (54,92,0): 35, 26, 47, (54,93,0): 35, 26, 47, (54,94,0): 35, 26, 47, (54,95,0): 35, 26, 47, (54,96,0): 36, 27, 46, (54,97,0): 36, 27, 46, (54,98,0): 35, 26, 45, (54,99,0): 35, 26, 45, (54,100,0): 34, 25, 44, (54,101,0): 33, 24, 43, (54,102,0): 33, 24, 43, (54,103,0): 32, 23, 42, (54,104,0): 32, 23, 42, (54,105,0): 32, 23, 42, (54,106,0): 32, 23, 42, (54,107,0): 32, 23, 42, (54,108,0): 32, 23, 42, (54,109,0): 32, 23, 42, (54,110,0): 32, 23, 42, (54,111,0): 32, 23, 42, (54,112,0): 29, 22, 40, (54,113,0): 29, 22, 40, (54,114,0): 30, 23, 41, (54,115,0): 30, 23, 41, (54,116,0): 31, 24, 42, (54,117,0): 31, 24, 42, (54,118,0): 32, 25, 43, (54,119,0): 32, 25, 43, (54,120,0): 31, 24, 42, (54,121,0): 31, 24, 42, (54,122,0): 31, 24, 42, (54,123,0): 32, 25, 43, (54,124,0): 32, 25, 43, (54,125,0): 33, 26, 44, (54,126,0): 33, 26, 44, (54,127,0): 33, 26, 44, (54,128,0): 33, 24, 43, (54,129,0): 33, 24, 43, (54,130,0): 33, 24, 43, (54,131,0): 33, 24, 43, (54,132,0): 33, 24, 43, (54,133,0): 33, 24, 43, (54,134,0): 33, 24, 43, (54,135,0): 33, 24, 43, (54,136,0): 33, 24, 43, (54,137,0): 32, 23, 42, (54,138,0): 31, 22, 41, (54,139,0): 29, 20, 39, (54,140,0): 29, 20, 39, (54,141,0): 29, 20, 39, (54,142,0): 30, 21, 40, (54,143,0): 30, 21, 40, (54,144,0): 34, 25, 44, (54,145,0): 34, 25, 44, (54,146,0): 33, 24, 43, (54,147,0): 33, 24, 43, (54,148,0): 32, 23, 42, (54,149,0): 32, 23, 42, (54,150,0): 32, 23, 42, (54,151,0): 31, 22, 41, (54,152,0): 30, 21, 40, (54,153,0): 30, 21, 40, (54,154,0): 30, 21, 40, (54,155,0): 31, 22, 41, (54,156,0): 31, 22, 41, (54,157,0): 32, 23, 42, (54,158,0): 32, 23, 42, (54,159,0): 33, 24, 43, (54,160,0): 31, 24, 42, (54,161,0): 31, 24, 42, (54,162,0): 31, 24, 42, (54,163,0): 31, 24, 42, (54,164,0): 31, 24, 42, (54,165,0): 31, 24, 42, (54,166,0): 31, 24, 42, (54,167,0): 31, 24, 42, (54,168,0): 32, 25, 43, (54,169,0): 32, 25, 43, (54,170,0): 33, 26, 44, (54,171,0): 33, 26, 44, (54,172,0): 34, 27, 45, (54,173,0): 34, 27, 45, (54,174,0): 35, 28, 46, (54,175,0): 35, 28, 46, (54,176,0): 31, 23, 46, (54,177,0): 31, 23, 46, (54,178,0): 31, 23, 46, (54,179,0): 31, 23, 46, (54,180,0): 31, 23, 46, (54,181,0): 30, 22, 45, (54,182,0): 30, 22, 45, (54,183,0): 30, 22, 45, (54,184,0): 29, 21, 44, (54,185,0): 29, 21, 44, (54,186,0): 29, 21, 44, (54,187,0): 30, 22, 45, (54,188,0): 31, 23, 46, (54,189,0): 31, 23, 46, (54,190,0): 31, 23, 46, (54,191,0): 32, 24, 45, (54,192,0): 30, 25, 45, (54,193,0): 30, 26, 43, (54,194,0): 33, 26, 44, (54,195,0): 34, 27, 45, (54,196,0): 34, 27, 45, (54,197,0): 34, 27, 45, (54,198,0): 36, 27, 46, (54,199,0): 35, 26, 45, (54,200,0): 38, 26, 46, (54,201,0): 38, 26, 46, (54,202,0): 39, 27, 47, (54,203,0): 39, 27, 47, (54,204,0): 41, 28, 48, (54,205,0): 41, 28, 48, (54,206,0): 42, 29, 49, (54,207,0): 43, 28, 49, (54,208,0): 49, 32, 51, (54,209,0): 51, 32, 52, (54,210,0): 51, 32, 51, (54,211,0): 51, 32, 51, (54,212,0): 54, 33, 52, (54,213,0): 54, 33, 52, (54,214,0): 55, 34, 51, (54,215,0): 55, 34, 51, (54,216,0): 59, 36, 52, (54,217,0): 59, 36, 52, (54,218,0): 59, 35, 51, (54,219,0): 59, 35, 51, (54,220,0): 58, 34, 48, (54,221,0): 58, 34, 48, (54,222,0): 60, 33, 48, (54,223,0): 57, 33, 47, (54,224,0): 56, 33, 49, (54,225,0): 55, 34, 49, (54,226,0): 55, 34, 49, (54,227,0): 55, 34, 49, (54,228,0): 55, 34, 49, (54,229,0): 55, 34, 49, (54,230,0): 55, 34, 49, (54,231,0): 55, 34, 49, (54,232,0): 54, 33, 48, (54,233,0): 54, 33, 48, (54,234,0): 55, 34, 49, (54,235,0): 56, 35, 50, (54,236,0): 57, 36, 51, (54,237,0): 58, 37, 52, (54,238,0): 59, 38, 53, (54,239,0): 60, 37, 53, (54,240,0): 61, 34, 49, (54,241,0): 63, 35, 49, (54,242,0): 63, 35, 49, (54,243,0): 64, 36, 50, (54,244,0): 66, 38, 52, (54,245,0): 67, 39, 51, (54,246,0): 67, 39, 51, (54,247,0): 68, 40, 52, (54,248,0): 64, 37, 46, (54,249,0): 64, 37, 46, (54,250,0): 64, 37, 46, (54,251,0): 64, 37, 44, (54,252,0): 64, 37, 44, (54,253,0): 64, 37, 44, (54,254,0): 64, 37, 42, (54,255,0): 64, 37, 42, (54,256,0): 67, 37, 45, (54,257,0): 67, 37, 45, (54,258,0): 69, 39, 47, (54,259,0): 70, 40, 48, (54,260,0): 73, 42, 48, (54,261,0): 75, 44, 50, (54,262,0): 76, 45, 51, (54,263,0): 77, 46, 52, (54,264,0): 78, 46, 51, (54,265,0): 78, 46, 51, (54,266,0): 80, 45, 49, (54,267,0): 81, 46, 50, (54,268,0): 81, 46, 50, (54,269,0): 82, 47, 51, (54,270,0): 83, 47, 49, (54,271,0): 84, 48, 50, (54,272,0): 85, 46, 49, (54,273,0): 85, 46, 49, (54,274,0): 85, 46, 49, (54,275,0): 86, 47, 50, (54,276,0): 86, 47, 50, (54,277,0): 87, 48, 51, (54,278,0): 87, 48, 51, (54,279,0): 87, 48, 51, (54,280,0): 90, 51, 54, (54,281,0): 90, 51, 54, (54,282,0): 90, 51, 54, (54,283,0): 91, 52, 55, (54,284,0): 93, 54, 57, (54,285,0): 95, 56, 59, (54,286,0): 97, 58, 61, (54,287,0): 99, 60, 63, (54,288,0): 100, 58, 62, (54,289,0): 103, 58, 63, (54,290,0): 105, 60, 63, (54,291,0): 108, 63, 66, (54,292,0): 111, 65, 67, (54,293,0): 113, 67, 67, (54,294,0): 115, 67, 65, (54,295,0): 116, 68, 64, (54,296,0): 119, 72, 66, (54,297,0): 119, 72, 62, (54,298,0): 120, 72, 62, (54,299,0): 122, 74, 62, (54,300,0): 126, 77, 63, (54,301,0): 130, 81, 66, (54,302,0): 134, 85, 70, (54,303,0): 138, 88, 65, (54,304,0): 151, 97, 63, (54,305,0): 169, 108, 64, (54,306,0): 191, 121, 70, (54,307,0): 202, 130, 71, (54,308,0): 207, 132, 67, (54,309,0): 204, 131, 63, (54,310,0): 201, 133, 68, (54,311,0): 198, 137, 72, (54,312,0): 194, 136, 72, (54,313,0): 192, 137, 72, (54,314,0): 192, 135, 68, (54,315,0): 189, 135, 65, (54,316,0): 189, 135, 65, (54,317,0): 188, 135, 67, (54,318,0): 186, 137, 71, (54,319,0): 186, 138, 76, (54,320,0): 181, 132, 73, (54,321,0): 179, 130, 72, (54,322,0): 173, 126, 70, (54,323,0): 166, 124, 66, (54,324,0): 161, 120, 66, (54,325,0): 158, 119, 64, (54,326,0): 155, 118, 66, (54,327,0): 154, 118, 66, (54,328,0): 153, 119, 71, (54,329,0): 152, 120, 71, (54,330,0): 151, 118, 73, (54,331,0): 149, 116, 71, (54,332,0): 148, 113, 73, (54,333,0): 147, 112, 72, (54,334,0): 146, 111, 73, (54,335,0): 145, 110, 72, (54,336,0): 143, 109, 71, (54,337,0): 143, 109, 71, (54,338,0): 143, 109, 72, (54,339,0): 143, 109, 72, (54,340,0): 143, 109, 74, (54,341,0): 143, 109, 74, (54,342,0): 143, 108, 76, (54,343,0): 143, 108, 76, (54,344,0): 139, 104, 76, (54,345,0): 138, 103, 75, (54,346,0): 137, 101, 75, (54,347,0): 136, 100, 74, (54,348,0): 135, 99, 75, (54,349,0): 133, 97, 73, (54,350,0): 133, 97, 75, (54,351,0): 132, 96, 74, (54,352,0): 137, 101, 77, (54,353,0): 136, 100, 76, (54,354,0): 136, 100, 76, (54,355,0): 136, 100, 76, (54,356,0): 137, 101, 77, (54,357,0): 139, 103, 79, (54,358,0): 141, 105, 81, (54,359,0): 142, 106, 82, (54,360,0): 143, 107, 83, (54,361,0): 143, 107, 83, (54,362,0): 143, 107, 83, (54,363,0): 143, 107, 83, (54,364,0): 143, 107, 83, (54,365,0): 143, 107, 83, (54,366,0): 143, 107, 83, (54,367,0): 144, 106, 83, (54,368,0): 146, 104, 82, (54,369,0): 146, 104, 82, (54,370,0): 147, 105, 83, (54,371,0): 147, 105, 83, (54,372,0): 150, 105, 84, (54,373,0): 151, 106, 85, (54,374,0): 151, 106, 85, (54,375,0): 152, 107, 86, (54,376,0): 149, 102, 82, (54,377,0): 149, 102, 82, (54,378,0): 151, 104, 84, (54,379,0): 152, 105, 85, (54,380,0): 154, 107, 87, (54,381,0): 156, 109, 89, (54,382,0): 157, 110, 90, (54,383,0): 158, 111, 91, (54,384,0): 157, 110, 92, (54,385,0): 158, 111, 93, (54,386,0): 160, 111, 94, (54,387,0): 161, 113, 93, (54,388,0): 165, 114, 95, (54,389,0): 166, 115, 94, (54,390,0): 169, 117, 95, (54,391,0): 171, 117, 91, (54,392,0): 180, 124, 97, (54,393,0): 182, 125, 96, (54,394,0): 186, 127, 97, (54,395,0): 189, 128, 97, (54,396,0): 193, 128, 96, (54,397,0): 194, 128, 96, (54,398,0): 195, 126, 93, (54,399,0): 192, 126, 91, (54,400,0): 194, 129, 91, (54,401,0): 193, 130, 89, (54,402,0): 193, 129, 91, (54,403,0): 193, 129, 91, (54,404,0): 193, 129, 93, (54,405,0): 193, 129, 93, (54,406,0): 193, 129, 93, (54,407,0): 193, 129, 93, (54,408,0): 196, 131, 93, (54,409,0): 196, 131, 91, (54,410,0): 198, 131, 89, (54,411,0): 200, 131, 89, (54,412,0): 205, 134, 88, (54,413,0): 208, 136, 88, (54,414,0): 212, 138, 91, (54,415,0): 216, 140, 90, (54,416,0): 220, 141, 84, (54,417,0): 227, 145, 85, (54,418,0): 231, 146, 89, (54,419,0): 231, 145, 88, (54,420,0): 233, 147, 90, (54,421,0): 235, 148, 94, (54,422,0): 224, 143, 90, (54,423,0): 211, 135, 83, (54,424,0): 196, 130, 80, (54,425,0): 183, 125, 77, (54,426,0): 169, 118, 75, (54,427,0): 159, 114, 73, (54,428,0): 154, 111, 77, (54,429,0): 147, 106, 76, (54,430,0): 137, 97, 71, (54,431,0): 130, 90, 65, (54,432,0): 126, 84, 60, (54,433,0): 127, 87, 61, (54,434,0): 130, 90, 65, (54,435,0): 130, 93, 66, (54,436,0): 129, 93, 67, (54,437,0): 123, 92, 63, (54,438,0): 119, 88, 60, (54,439,0): 116, 87, 57, (54,440,0): 117, 87, 59, (54,441,0): 119, 90, 60, (54,442,0): 122, 92, 64, (54,443,0): 125, 96, 66, (54,444,0): 128, 97, 69, (54,445,0): 130, 99, 70, (54,446,0): 133, 99, 72, (54,447,0): 133, 99, 72, (54,448,0): 125, 93, 70, (54,449,0): 121, 89, 68, (54,450,0): 116, 85, 65, (54,451,0): 114, 83, 63, (54,452,0): 113, 82, 64, (54,453,0): 111, 80, 62, (54,454,0): 104, 75, 59, (54,455,0): 101, 72, 58, (54,456,0): 94, 66, 54, (54,457,0): 94, 66, 54, (54,458,0): 93, 65, 54, (54,459,0): 92, 64, 53, (54,460,0): 91, 64, 55, (54,461,0): 92, 65, 56, (54,462,0): 93, 66, 59, (54,463,0): 94, 67, 60, (54,464,0): 88, 63, 56, (54,465,0): 88, 63, 56, (54,466,0): 88, 63, 56, (54,467,0): 89, 64, 57, (54,468,0): 89, 66, 58, (54,469,0): 91, 68, 60, (54,470,0): 92, 69, 61, (54,471,0): 92, 69, 61, (54,472,0): 94, 74, 65, (54,473,0): 94, 74, 65, (54,474,0): 93, 75, 65, (54,475,0): 93, 75, 65, (54,476,0): 93, 75, 65, (54,477,0): 93, 75, 65, (54,478,0): 92, 75, 65, (54,479,0): 93, 75, 65, (54,480,0): 94, 71, 63, (54,481,0): 94, 69, 62, (54,482,0): 92, 67, 60, (54,483,0): 91, 66, 59, (54,484,0): 90, 65, 58, (54,485,0): 90, 65, 58, (54,486,0): 91, 66, 59, (54,487,0): 91, 66, 59, (54,488,0): 95, 70, 63, (54,489,0): 96, 71, 64, (54,490,0): 97, 72, 65, (54,491,0): 97, 72, 65, (54,492,0): 96, 71, 64, (54,493,0): 93, 68, 61, (54,494,0): 91, 66, 59, (54,495,0): 89, 66, 60, (54,496,0): 88, 64, 60, (54,497,0): 86, 65, 60, (54,498,0): 85, 64, 61, (54,499,0): 84, 63, 58, (54,500,0): 85, 61, 59, (54,501,0): 84, 60, 56, (54,502,0): 84, 58, 57, (54,503,0): 83, 58, 54, (54,504,0): 85, 59, 58, (54,505,0): 84, 59, 55, (54,506,0): 86, 58, 57, (54,507,0): 86, 58, 55, (54,508,0): 88, 58, 58, (54,509,0): 90, 60, 58, (54,510,0): 92, 62, 62, (54,511,0): 93, 63, 61, (54,512,0): 91, 64, 57, (54,513,0): 92, 65, 56, (54,514,0): 92, 65, 56, (54,515,0): 93, 66, 57, (54,516,0): 95, 68, 59, (54,517,0): 96, 69, 60, (54,518,0): 96, 69, 60, (54,519,0): 97, 70, 61, (54,520,0): 101, 74, 65, (54,521,0): 102, 75, 66, (54,522,0): 103, 76, 67, (54,523,0): 103, 76, 67, (54,524,0): 102, 75, 66, (54,525,0): 101, 74, 65, (54,526,0): 100, 73, 64, (54,527,0): 99, 72, 61, (54,528,0): 99, 76, 62, (54,529,0): 100, 77, 63, (54,530,0): 100, 77, 63, (54,531,0): 100, 76, 64, (54,532,0): 101, 74, 65, (54,533,0): 100, 73, 66, (54,534,0): 100, 69, 64, (54,535,0): 101, 68, 63, (54,536,0): 103, 65, 64, (54,537,0): 107, 66, 64, (54,538,0): 118, 72, 72, (54,539,0): 125, 75, 74, (54,540,0): 119, 65, 63, (54,541,0): 117, 59, 57, (54,542,0): 137, 77, 76, (54,543,0): 178, 98, 99, (54,544,0): 220, 103, 112, (54,545,0): 207, 83, 94, (54,546,0): 163, 66, 73, (54,547,0): 127, 55, 58, (54,548,0): 103, 53, 54, (54,549,0): 88, 54, 53, (54,550,0): 81, 52, 56, (54,551,0): 75, 50, 56, (54,552,0): 78, 52, 61, (54,553,0): 76, 53, 63, (54,554,0): 74, 53, 62, (54,555,0): 70, 53, 59, (54,556,0): 68, 53, 56, (54,557,0): 65, 53, 53, (54,558,0): 64, 52, 52, (54,559,0): 66, 52, 52, (54,560,0): 70, 51, 55, (54,561,0): 70, 49, 54, (54,562,0): 70, 49, 54, (54,563,0): 69, 48, 53, (54,564,0): 70, 50, 52, (54,565,0): 71, 51, 53, (54,566,0): 73, 53, 55, (54,567,0): 74, 54, 56, (54,568,0): 77, 57, 58, (54,569,0): 78, 58, 59, (54,570,0): 80, 60, 59, (54,571,0): 81, 61, 60, (54,572,0): 81, 61, 60, (54,573,0): 81, 61, 60, (54,574,0): 80, 61, 57, (54,575,0): 80, 61, 57, (54,576,0): 81, 62, 58, (54,577,0): 81, 62, 58, (54,578,0): 79, 60, 56, (54,579,0): 78, 59, 55, (54,580,0): 76, 56, 55, (54,581,0): 74, 54, 53, (54,582,0): 73, 53, 52, (54,583,0): 72, 52, 51, (54,584,0): 70, 50, 51, (54,585,0): 69, 49, 50, (54,586,0): 69, 49, 51, (54,587,0): 68, 48, 50, (54,588,0): 66, 46, 48, (54,589,0): 65, 45, 47, (54,590,0): 65, 44, 49, (54,591,0): 64, 43, 48, (54,592,0): 62, 42, 44, (54,593,0): 61, 41, 43, (54,594,0): 59, 39, 41, (54,595,0): 57, 37, 39, (54,596,0): 56, 36, 38, (54,597,0): 56, 36, 38, (54,598,0): 56, 36, 38, (54,599,0): 57, 37, 39, (55,0,0): 35, 26, 43, (55,1,0): 35, 26, 43, (55,2,0): 35, 27, 42, (55,3,0): 35, 27, 42, (55,4,0): 37, 26, 42, (55,5,0): 37, 26, 42, (55,6,0): 37, 26, 40, (55,7,0): 37, 26, 40, (55,8,0): 36, 24, 36, (55,9,0): 36, 24, 36, (55,10,0): 38, 24, 37, (55,11,0): 38, 24, 37, (55,12,0): 39, 26, 36, (55,13,0): 39, 26, 36, (55,14,0): 42, 26, 37, (55,15,0): 42, 26, 37, (55,16,0): 46, 28, 40, (55,17,0): 46, 28, 40, (55,18,0): 46, 28, 40, (55,19,0): 46, 28, 40, (55,20,0): 46, 28, 40, (55,21,0): 46, 28, 40, (55,22,0): 46, 28, 40, (55,23,0): 46, 28, 40, (55,24,0): 48, 30, 42, (55,25,0): 48, 30, 42, (55,26,0): 48, 30, 42, (55,27,0): 48, 30, 42, (55,28,0): 48, 30, 42, (55,29,0): 48, 30, 42, (55,30,0): 48, 30, 42, (55,31,0): 48, 30, 42, (55,32,0): 48, 31, 47, (55,33,0): 48, 31, 47, (55,34,0): 48, 31, 47, (55,35,0): 48, 31, 47, (55,36,0): 48, 31, 47, (55,37,0): 48, 31, 47, (55,38,0): 48, 31, 47, (55,39,0): 48, 31, 47, (55,40,0): 47, 30, 46, (55,41,0): 47, 30, 46, (55,42,0): 47, 30, 46, (55,43,0): 48, 31, 47, (55,44,0): 48, 31, 47, (55,45,0): 48, 31, 47, (55,46,0): 49, 32, 48, (55,47,0): 49, 32, 48, (55,48,0): 47, 29, 45, (55,49,0): 47, 29, 45, (55,50,0): 47, 29, 45, (55,51,0): 47, 29, 45, (55,52,0): 47, 29, 45, (55,53,0): 47, 29, 45, (55,54,0): 47, 29, 45, (55,55,0): 47, 29, 45, (55,56,0): 47, 29, 45, (55,57,0): 47, 29, 45, (55,58,0): 47, 29, 45, (55,59,0): 46, 28, 44, (55,60,0): 46, 28, 44, (55,61,0): 45, 27, 43, (55,62,0): 45, 27, 43, (55,63,0): 45, 27, 41, (55,64,0): 46, 28, 42, (55,65,0): 46, 28, 40, (55,66,0): 46, 28, 40, (55,67,0): 46, 28, 40, (55,68,0): 46, 28, 42, (55,69,0): 46, 28, 42, (55,70,0): 45, 29, 42, (55,71,0): 45, 29, 42, (55,72,0): 40, 26, 41, (55,73,0): 40, 26, 41, (55,74,0): 38, 25, 42, (55,75,0): 38, 25, 42, (55,76,0): 37, 24, 41, (55,77,0): 37, 24, 41, (55,78,0): 36, 23, 41, (55,79,0): 36, 23, 41, (55,80,0): 38, 26, 46, (55,81,0): 36, 27, 48, (55,82,0): 36, 27, 48, (55,83,0): 36, 27, 48, (55,84,0): 36, 27, 48, (55,85,0): 36, 27, 48, (55,86,0): 36, 27, 48, (55,87,0): 36, 27, 48, (55,88,0): 36, 27, 48, (55,89,0): 36, 27, 48, (55,90,0): 36, 27, 48, (55,91,0): 36, 27, 48, (55,92,0): 36, 27, 48, (55,93,0): 36, 27, 48, (55,94,0): 36, 27, 48, (55,95,0): 36, 27, 48, (55,96,0): 37, 28, 47, (55,97,0): 36, 27, 46, (55,98,0): 36, 27, 46, (55,99,0): 35, 26, 45, (55,100,0): 34, 25, 44, (55,101,0): 33, 24, 43, (55,102,0): 33, 24, 43, (55,103,0): 32, 23, 42, (55,104,0): 32, 23, 42, (55,105,0): 32, 23, 42, (55,106,0): 32, 23, 42, (55,107,0): 32, 23, 42, (55,108,0): 32, 23, 42, (55,109,0): 32, 23, 42, (55,110,0): 32, 23, 42, (55,111,0): 32, 23, 42, (55,112,0): 29, 22, 40, (55,113,0): 29, 22, 40, (55,114,0): 30, 23, 41, (55,115,0): 30, 23, 41, (55,116,0): 31, 24, 42, (55,117,0): 31, 24, 42, (55,118,0): 32, 25, 43, (55,119,0): 32, 25, 43, (55,120,0): 31, 24, 42, (55,121,0): 31, 24, 42, (55,122,0): 31, 24, 42, (55,123,0): 32, 25, 43, (55,124,0): 32, 25, 43, (55,125,0): 33, 26, 44, (55,126,0): 33, 26, 44, (55,127,0): 33, 26, 44, (55,128,0): 33, 24, 43, (55,129,0): 33, 24, 43, (55,130,0): 33, 24, 43, (55,131,0): 33, 24, 43, (55,132,0): 33, 24, 43, (55,133,0): 33, 24, 43, (55,134,0): 33, 24, 43, (55,135,0): 33, 24, 43, (55,136,0): 33, 24, 43, (55,137,0): 32, 23, 42, (55,138,0): 30, 21, 40, (55,139,0): 29, 20, 39, (55,140,0): 29, 20, 39, (55,141,0): 29, 20, 39, (55,142,0): 29, 20, 39, (55,143,0): 30, 21, 40, (55,144,0): 34, 25, 44, (55,145,0): 34, 25, 44, (55,146,0): 34, 25, 44, (55,147,0): 33, 24, 43, (55,148,0): 33, 24, 43, (55,149,0): 32, 23, 42, (55,150,0): 32, 23, 42, (55,151,0): 31, 22, 41, (55,152,0): 30, 21, 40, (55,153,0): 30, 21, 40, (55,154,0): 31, 22, 41, (55,155,0): 31, 22, 41, (55,156,0): 32, 23, 42, (55,157,0): 32, 23, 42, (55,158,0): 33, 24, 43, (55,159,0): 33, 24, 43, (55,160,0): 31, 24, 42, (55,161,0): 31, 24, 42, (55,162,0): 31, 24, 42, (55,163,0): 31, 24, 42, (55,164,0): 31, 24, 42, (55,165,0): 31, 24, 42, (55,166,0): 31, 24, 42, (55,167,0): 31, 24, 42, (55,168,0): 32, 25, 43, (55,169,0): 32, 25, 43, (55,170,0): 33, 26, 44, (55,171,0): 33, 26, 44, (55,172,0): 34, 27, 45, (55,173,0): 34, 27, 45, (55,174,0): 35, 28, 46, (55,175,0): 35, 28, 46, (55,176,0): 30, 22, 45, (55,177,0): 30, 22, 45, (55,178,0): 30, 22, 45, (55,179,0): 30, 22, 45, (55,180,0): 31, 23, 46, (55,181,0): 31, 23, 46, (55,182,0): 31, 23, 46, (55,183,0): 31, 23, 46, (55,184,0): 28, 20, 43, (55,185,0): 28, 20, 43, (55,186,0): 29, 21, 44, (55,187,0): 29, 21, 44, (55,188,0): 30, 22, 45, (55,189,0): 30, 22, 45, (55,190,0): 30, 22, 45, (55,191,0): 31, 23, 44, (55,192,0): 29, 24, 44, (55,193,0): 30, 26, 43, (55,194,0): 33, 26, 44, (55,195,0): 34, 27, 45, (55,196,0): 35, 28, 46, (55,197,0): 35, 28, 46, (55,198,0): 35, 26, 45, (55,199,0): 35, 26, 45, (55,200,0): 38, 26, 46, (55,201,0): 38, 26, 46, (55,202,0): 39, 27, 47, (55,203,0): 39, 27, 47, (55,204,0): 41, 28, 48, (55,205,0): 41, 28, 48, (55,206,0): 42, 29, 49, (55,207,0): 43, 28, 49, (55,208,0): 49, 32, 51, (55,209,0): 51, 32, 52, (55,210,0): 51, 32, 51, (55,211,0): 52, 33, 52, (55,212,0): 54, 33, 52, (55,213,0): 55, 34, 53, (55,214,0): 55, 34, 51, (55,215,0): 55, 34, 51, (55,216,0): 59, 36, 52, (55,217,0): 59, 36, 52, (55,218,0): 60, 36, 52, (55,219,0): 59, 35, 51, (55,220,0): 59, 35, 49, (55,221,0): 58, 34, 48, (55,222,0): 60, 33, 48, (55,223,0): 57, 33, 47, (55,224,0): 56, 33, 49, (55,225,0): 55, 34, 49, (55,226,0): 55, 34, 49, (55,227,0): 55, 34, 49, (55,228,0): 55, 34, 49, (55,229,0): 55, 34, 49, (55,230,0): 55, 34, 49, (55,231,0): 55, 34, 49, (55,232,0): 54, 33, 48, (55,233,0): 55, 34, 49, (55,234,0): 55, 34, 49, (55,235,0): 56, 35, 50, (55,236,0): 57, 36, 51, (55,237,0): 58, 37, 52, (55,238,0): 59, 38, 53, (55,239,0): 61, 39, 52, (55,240,0): 61, 35, 48, (55,241,0): 63, 35, 49, (55,242,0): 63, 35, 49, (55,243,0): 64, 36, 50, (55,244,0): 66, 38, 50, (55,245,0): 67, 39, 51, (55,246,0): 67, 39, 51, (55,247,0): 68, 41, 50, (55,248,0): 64, 37, 46, (55,249,0): 64, 37, 46, (55,250,0): 64, 37, 44, (55,251,0): 64, 37, 44, (55,252,0): 64, 37, 44, (55,253,0): 64, 37, 44, (55,254,0): 64, 37, 42, (55,255,0): 64, 37, 42, (55,256,0): 66, 36, 44, (55,257,0): 67, 37, 45, (55,258,0): 69, 39, 47, (55,259,0): 70, 41, 46, (55,260,0): 73, 42, 48, (55,261,0): 75, 44, 50, (55,262,0): 77, 46, 52, (55,263,0): 77, 46, 51, (55,264,0): 78, 46, 51, (55,265,0): 78, 46, 49, (55,266,0): 81, 46, 50, (55,267,0): 81, 46, 50, (55,268,0): 82, 47, 51, (55,269,0): 82, 48, 49, (55,270,0): 84, 48, 50, (55,271,0): 84, 48, 50, (55,272,0): 85, 46, 49, (55,273,0): 85, 46, 49, (55,274,0): 85, 46, 49, (55,275,0): 86, 47, 50, (55,276,0): 86, 47, 50, (55,277,0): 87, 48, 51, (55,278,0): 87, 48, 51, (55,279,0): 87, 48, 51, (55,280,0): 91, 52, 55, (55,281,0): 90, 51, 54, (55,282,0): 90, 51, 54, (55,283,0): 91, 52, 55, (55,284,0): 93, 54, 57, (55,285,0): 95, 56, 59, (55,286,0): 97, 58, 61, (55,287,0): 100, 59, 63, (55,288,0): 100, 55, 60, (55,289,0): 102, 57, 62, (55,290,0): 106, 61, 64, (55,291,0): 109, 64, 67, (55,292,0): 112, 66, 68, (55,293,0): 113, 67, 67, (55,294,0): 115, 67, 65, (55,295,0): 114, 66, 62, (55,296,0): 117, 70, 64, (55,297,0): 117, 70, 60, (55,298,0): 120, 72, 62, (55,299,0): 122, 74, 62, (55,300,0): 127, 78, 64, (55,301,0): 131, 82, 67, (55,302,0): 135, 86, 71, (55,303,0): 140, 88, 66, (55,304,0): 153, 97, 62, (55,305,0): 168, 107, 62, (55,306,0): 190, 121, 66, (55,307,0): 203, 129, 68, (55,308,0): 206, 131, 64, (55,309,0): 204, 131, 62, (55,310,0): 201, 134, 66, (55,311,0): 199, 138, 71, (55,312,0): 194, 137, 70, (55,313,0): 191, 136, 69, (55,314,0): 192, 135, 66, (55,315,0): 191, 134, 65, (55,316,0): 191, 134, 65, (55,317,0): 188, 135, 67, (55,318,0): 186, 137, 71, (55,319,0): 186, 138, 76, (55,320,0): 182, 133, 74, (55,321,0): 177, 131, 72, (55,322,0): 172, 127, 70, (55,323,0): 165, 123, 65, (55,324,0): 161, 120, 66, (55,325,0): 155, 118, 63, (55,326,0): 154, 118, 66, (55,327,0): 151, 118, 65, (55,328,0): 153, 121, 72, (55,329,0): 152, 120, 71, (55,330,0): 151, 118, 73, (55,331,0): 149, 116, 71, (55,332,0): 149, 114, 74, (55,333,0): 147, 112, 72, (55,334,0): 146, 111, 73, (55,335,0): 145, 110, 72, (55,336,0): 145, 111, 73, (55,337,0): 145, 111, 73, (55,338,0): 145, 111, 74, (55,339,0): 144, 110, 73, (55,340,0): 144, 110, 75, (55,341,0): 143, 109, 74, (55,342,0): 143, 108, 76, (55,343,0): 143, 108, 76, (55,344,0): 139, 104, 76, (55,345,0): 138, 103, 75, (55,346,0): 137, 101, 75, (55,347,0): 136, 100, 74, (55,348,0): 134, 98, 74, (55,349,0): 133, 97, 73, (55,350,0): 132, 96, 74, (55,351,0): 132, 96, 74, (55,352,0): 137, 101, 77, (55,353,0): 136, 100, 76, (55,354,0): 136, 100, 76, (55,355,0): 136, 100, 76, (55,356,0): 137, 101, 77, (55,357,0): 139, 103, 79, (55,358,0): 141, 105, 81, (55,359,0): 142, 106, 82, (55,360,0): 143, 107, 83, (55,361,0): 143, 107, 83, (55,362,0): 143, 107, 83, (55,363,0): 143, 107, 83, (55,364,0): 143, 107, 83, (55,365,0): 143, 107, 83, (55,366,0): 143, 107, 83, (55,367,0): 143, 107, 83, (55,368,0): 145, 104, 82, (55,369,0): 146, 104, 82, (55,370,0): 147, 105, 83, (55,371,0): 147, 105, 83, (55,372,0): 150, 105, 84, (55,373,0): 151, 106, 85, (55,374,0): 152, 107, 86, (55,375,0): 152, 107, 86, (55,376,0): 149, 102, 82, (55,377,0): 150, 103, 83, (55,378,0): 151, 104, 84, (55,379,0): 153, 106, 86, (55,380,0): 155, 108, 88, (55,381,0): 158, 110, 90, (55,382,0): 159, 111, 91, (55,383,0): 160, 112, 92, (55,384,0): 158, 111, 93, (55,385,0): 159, 112, 94, (55,386,0): 161, 113, 93, (55,387,0): 163, 115, 95, (55,388,0): 166, 115, 94, (55,389,0): 169, 117, 95, (55,390,0): 172, 118, 94, (55,391,0): 174, 118, 93, (55,392,0): 182, 125, 98, (55,393,0): 185, 126, 96, (55,394,0): 188, 127, 98, (55,395,0): 192, 129, 98, (55,396,0): 194, 129, 97, (55,397,0): 195, 129, 95, (55,398,0): 195, 126, 93, (55,399,0): 193, 127, 92, (55,400,0): 194, 129, 91, (55,401,0): 193, 130, 89, (55,402,0): 193, 129, 91, (55,403,0): 193, 129, 91, (55,404,0): 193, 129, 93, (55,405,0): 193, 129, 93, (55,406,0): 193, 129, 93, (55,407,0): 193, 129, 91, (55,408,0): 195, 130, 90, (55,409,0): 197, 130, 88, (55,410,0): 199, 130, 88, (55,411,0): 203, 132, 88, (55,412,0): 206, 134, 86, (55,413,0): 211, 137, 88, (55,414,0): 216, 140, 91, (55,415,0): 221, 141, 90, (55,416,0): 223, 143, 84, (55,417,0): 230, 146, 84, (55,418,0): 233, 147, 88, (55,419,0): 231, 145, 86, (55,420,0): 234, 145, 89, (55,421,0): 233, 148, 93, (55,422,0): 224, 143, 90, (55,423,0): 208, 135, 82, (55,424,0): 195, 129, 79, (55,425,0): 181, 125, 78, (55,426,0): 168, 117, 74, (55,427,0): 158, 113, 74, (55,428,0): 153, 110, 76, (55,429,0): 146, 105, 75, (55,430,0): 137, 97, 71, (55,431,0): 130, 90, 64, (55,432,0): 127, 85, 60, (55,433,0): 130, 89, 61, (55,434,0): 133, 93, 67, (55,435,0): 133, 96, 67, (55,436,0): 131, 96, 68, (55,437,0): 127, 94, 63, (55,438,0): 121, 90, 61, (55,439,0): 117, 88, 56, (55,440,0): 116, 87, 57, (55,441,0): 118, 89, 57, (55,442,0): 121, 92, 62, (55,443,0): 125, 96, 64, (55,444,0): 128, 97, 68, (55,445,0): 130, 99, 68, (55,446,0): 133, 99, 71, (55,447,0): 134, 100, 73, (55,448,0): 130, 95, 73, (55,449,0): 124, 92, 71, (55,450,0): 120, 87, 68, (55,451,0): 117, 86, 66, (55,452,0): 115, 84, 66, (55,453,0): 113, 82, 64, (55,454,0): 109, 77, 62, (55,455,0): 103, 74, 58, (55,456,0): 95, 66, 52, (55,457,0): 93, 65, 53, (55,458,0): 93, 65, 54, (55,459,0): 92, 64, 53, (55,460,0): 92, 63, 55, (55,461,0): 92, 65, 56, (55,462,0): 94, 67, 60, (55,463,0): 95, 68, 61, (55,464,0): 87, 62, 55, (55,465,0): 88, 63, 56, (55,466,0): 89, 64, 57, (55,467,0): 91, 66, 59, (55,468,0): 91, 68, 60, (55,469,0): 91, 68, 60, (55,470,0): 91, 68, 60, (55,471,0): 91, 68, 60, (55,472,0): 95, 75, 66, (55,473,0): 95, 75, 66, (55,474,0): 94, 76, 66, (55,475,0): 94, 76, 66, (55,476,0): 94, 76, 66, (55,477,0): 94, 76, 66, (55,478,0): 93, 76, 66, (55,479,0): 94, 76, 66, (55,480,0): 94, 71, 63, (55,481,0): 94, 69, 62, (55,482,0): 93, 68, 61, (55,483,0): 91, 66, 59, (55,484,0): 90, 65, 58, (55,485,0): 90, 65, 58, (55,486,0): 91, 66, 59, (55,487,0): 91, 66, 59, (55,488,0): 96, 71, 64, (55,489,0): 96, 71, 64, (55,490,0): 97, 72, 65, (55,491,0): 97, 72, 65, (55,492,0): 96, 71, 64, (55,493,0): 94, 69, 62, (55,494,0): 92, 67, 60, (55,495,0): 89, 66, 58, (55,496,0): 89, 66, 60, (55,497,0): 87, 66, 61, (55,498,0): 86, 65, 60, (55,499,0): 85, 64, 59, (55,500,0): 86, 62, 58, (55,501,0): 85, 61, 57, (55,502,0): 85, 60, 56, (55,503,0): 84, 59, 55, (55,504,0): 86, 61, 57, (55,505,0): 85, 60, 56, (55,506,0): 87, 59, 56, (55,507,0): 87, 59, 56, (55,508,0): 89, 59, 57, (55,509,0): 91, 61, 59, (55,510,0): 93, 63, 61, (55,511,0): 94, 65, 61, (55,512,0): 91, 64, 57, (55,513,0): 92, 65, 56, (55,514,0): 92, 65, 56, (55,515,0): 93, 66, 57, (55,516,0): 95, 68, 59, (55,517,0): 96, 69, 60, (55,518,0): 96, 69, 60, (55,519,0): 97, 70, 61, (55,520,0): 103, 76, 67, (55,521,0): 103, 76, 67, (55,522,0): 104, 77, 68, (55,523,0): 104, 77, 68, (55,524,0): 104, 77, 68, (55,525,0): 102, 75, 66, (55,526,0): 101, 74, 65, (55,527,0): 100, 73, 62, (55,528,0): 103, 77, 64, (55,529,0): 101, 78, 62, (55,530,0): 102, 79, 65, (55,531,0): 101, 78, 64, (55,532,0): 102, 75, 64, (55,533,0): 100, 73, 64, (55,534,0): 99, 70, 64, (55,535,0): 98, 67, 62, (55,536,0): 102, 67, 63, (55,537,0): 109, 70, 65, (55,538,0): 122, 78, 75, (55,539,0): 127, 79, 75, (55,540,0): 115, 64, 60, (55,541,0): 106, 53, 47, (55,542,0): 126, 68, 64, (55,543,0): 166, 90, 90, (55,544,0): 214, 103, 109, (55,545,0): 198, 83, 90, (55,546,0): 155, 65, 67, (55,547,0): 118, 53, 51, (55,548,0): 95, 51, 50, (55,549,0): 83, 53, 51, (55,550,0): 80, 54, 57, (55,551,0): 78, 53, 59, (55,552,0): 80, 53, 62, (55,553,0): 79, 51, 63, (55,554,0): 77, 51, 62, (55,555,0): 74, 51, 59, (55,556,0): 71, 52, 56, (55,557,0): 67, 53, 53, (55,558,0): 67, 53, 52, (55,559,0): 66, 52, 51, (55,560,0): 70, 51, 53, (55,561,0): 71, 50, 55, (55,562,0): 70, 49, 54, (55,563,0): 70, 50, 52, (55,564,0): 70, 50, 52, (55,565,0): 72, 52, 54, (55,566,0): 73, 53, 55, (55,567,0): 74, 54, 55, (55,568,0): 78, 58, 59, (55,569,0): 79, 59, 58, (55,570,0): 80, 60, 59, (55,571,0): 81, 61, 60, (55,572,0): 82, 62, 61, (55,573,0): 82, 63, 59, (55,574,0): 81, 62, 58, (55,575,0): 80, 61, 57, (55,576,0): 82, 63, 59, (55,577,0): 81, 62, 58, (55,578,0): 80, 61, 57, (55,579,0): 78, 59, 55, (55,580,0): 76, 56, 55, (55,581,0): 74, 54, 53, (55,582,0): 73, 53, 52, (55,583,0): 72, 52, 51, (55,584,0): 70, 50, 51, (55,585,0): 69, 49, 50, (55,586,0): 69, 49, 51, (55,587,0): 68, 48, 50, (55,588,0): 66, 46, 48, (55,589,0): 65, 45, 47, (55,590,0): 65, 44, 49, (55,591,0): 64, 43, 48, (55,592,0): 62, 42, 44, (55,593,0): 61, 41, 43, (55,594,0): 59, 39, 41, (55,595,0): 57, 37, 39, (55,596,0): 56, 36, 38, (55,597,0): 56, 36, 38, (55,598,0): 56, 36, 38, (55,599,0): 57, 37, 39, (56,0,0): 33, 24, 41, (56,1,0): 33, 24, 41, (56,2,0): 34, 26, 41, (56,3,0): 34, 26, 41, (56,4,0): 37, 26, 42, (56,5,0): 37, 26, 42, (56,6,0): 38, 27, 41, (56,7,0): 38, 27, 41, (56,8,0): 39, 27, 39, (56,9,0): 39, 27, 39, (56,10,0): 41, 27, 40, (56,11,0): 41, 27, 40, (56,12,0): 42, 29, 39, (56,13,0): 42, 29, 39, (56,14,0): 45, 29, 40, (56,15,0): 45, 29, 40, (56,16,0): 46, 28, 40, (56,17,0): 46, 28, 40, (56,18,0): 47, 29, 41, (56,19,0): 47, 29, 41, (56,20,0): 48, 30, 42, (56,21,0): 48, 30, 42, (56,22,0): 49, 31, 43, (56,23,0): 49, 31, 43, (56,24,0): 50, 32, 44, (56,25,0): 50, 32, 44, (56,26,0): 50, 32, 44, (56,27,0): 49, 31, 43, (56,28,0): 49, 31, 43, (56,29,0): 48, 30, 42, (56,30,0): 48, 30, 42, (56,31,0): 48, 30, 42, (56,32,0): 48, 31, 47, (56,33,0): 48, 31, 47, (56,34,0): 48, 31, 47, (56,35,0): 48, 31, 47, (56,36,0): 48, 31, 47, (56,37,0): 48, 31, 47, (56,38,0): 48, 31, 47, (56,39,0): 48, 31, 47, (56,40,0): 50, 33, 49, (56,41,0): 50, 33, 49, (56,42,0): 50, 33, 49, (56,43,0): 50, 33, 49, (56,44,0): 50, 33, 49, (56,45,0): 50, 33, 49, (56,46,0): 50, 33, 49, (56,47,0): 50, 33, 49, (56,48,0): 49, 31, 47, (56,49,0): 51, 30, 47, (56,50,0): 51, 30, 47, (56,51,0): 51, 30, 47, (56,52,0): 51, 30, 47, (56,53,0): 51, 30, 47, (56,54,0): 51, 30, 47, (56,55,0): 51, 30, 47, (56,56,0): 51, 30, 47, (56,57,0): 50, 29, 46, (56,58,0): 48, 27, 44, (56,59,0): 47, 26, 43, (56,60,0): 47, 26, 43, (56,61,0): 47, 26, 43, (56,62,0): 47, 26, 43, (56,63,0): 48, 27, 42, (56,64,0): 47, 29, 43, (56,65,0): 47, 29, 41, (56,66,0): 47, 29, 41, (56,67,0): 46, 28, 40, (56,68,0): 46, 28, 42, (56,69,0): 45, 27, 41, (56,70,0): 44, 28, 41, (56,71,0): 44, 28, 41, (56,72,0): 40, 26, 41, (56,73,0): 40, 26, 41, (56,74,0): 39, 26, 43, (56,75,0): 39, 26, 43, (56,76,0): 39, 26, 43, (56,77,0): 39, 26, 43, (56,78,0): 39, 26, 44, (56,79,0): 39, 26, 44, (56,80,0): 37, 25, 45, (56,81,0): 37, 25, 45, (56,82,0): 37, 25, 45, (56,83,0): 37, 25, 45, (56,84,0): 37, 25, 45, (56,85,0): 37, 25, 45, (56,86,0): 37, 25, 45, (56,87,0): 37, 25, 45, (56,88,0): 37, 25, 45, (56,89,0): 37, 25, 45, (56,90,0): 37, 25, 45, (56,91,0): 37, 25, 45, (56,92,0): 37, 25, 45, (56,93,0): 37, 25, 45, (56,94,0): 37, 25, 45, (56,95,0): 37, 25, 45, (56,96,0): 33, 24, 43, (56,97,0): 33, 24, 43, (56,98,0): 33, 24, 43, (56,99,0): 33, 24, 43, (56,100,0): 33, 24, 43, (56,101,0): 33, 24, 43, (56,102,0): 33, 24, 43, (56,103,0): 33, 24, 43, (56,104,0): 33, 24, 43, (56,105,0): 33, 24, 43, (56,106,0): 32, 23, 42, (56,107,0): 32, 23, 42, (56,108,0): 31, 22, 41, (56,109,0): 31, 22, 41, (56,110,0): 30, 21, 40, (56,111,0): 30, 21, 40, (56,112,0): 29, 21, 42, (56,113,0): 27, 22, 42, (56,114,0): 28, 23, 43, (56,115,0): 28, 23, 43, (56,116,0): 29, 24, 44, (56,117,0): 29, 24, 44, (56,118,0): 30, 25, 45, (56,119,0): 30, 25, 45, (56,120,0): 30, 25, 45, (56,121,0): 30, 25, 45, (56,122,0): 30, 25, 45, (56,123,0): 30, 25, 45, (56,124,0): 30, 25, 45, (56,125,0): 30, 25, 45, (56,126,0): 30, 25, 45, (56,127,0): 32, 24, 45, (56,128,0): 31, 22, 41, (56,129,0): 31, 22, 41, (56,130,0): 31, 22, 41, (56,131,0): 30, 21, 40, (56,132,0): 30, 21, 40, (56,133,0): 29, 20, 39, (56,134,0): 29, 20, 39, (56,135,0): 29, 20, 39, (56,136,0): 33, 24, 43, (56,137,0): 33, 24, 43, (56,138,0): 32, 23, 42, (56,139,0): 32, 23, 42, (56,140,0): 31, 22, 41, (56,141,0): 31, 22, 41, (56,142,0): 30, 21, 40, (56,143,0): 30, 21, 40, (56,144,0): 31, 22, 41, (56,145,0): 31, 22, 41, (56,146,0): 31, 22, 41, (56,147,0): 31, 22, 41, (56,148,0): 31, 22, 41, (56,149,0): 31, 22, 41, (56,150,0): 31, 22, 41, (56,151,0): 31, 22, 41, (56,152,0): 31, 22, 41, (56,153,0): 32, 23, 42, (56,154,0): 32, 23, 42, (56,155,0): 33, 24, 43, (56,156,0): 33, 24, 43, (56,157,0): 34, 25, 44, (56,158,0): 34, 25, 44, (56,159,0): 34, 25, 44, (56,160,0): 32, 25, 43, (56,161,0): 32, 25, 43, (56,162,0): 31, 24, 42, (56,163,0): 31, 24, 42, (56,164,0): 30, 23, 41, (56,165,0): 30, 23, 41, (56,166,0): 29, 22, 40, (56,167,0): 29, 22, 40, (56,168,0): 30, 23, 41, (56,169,0): 30, 23, 41, (56,170,0): 30, 23, 41, (56,171,0): 30, 23, 41, (56,172,0): 30, 23, 41, (56,173,0): 30, 23, 41, (56,174,0): 30, 23, 41, (56,175,0): 30, 23, 41, (56,176,0): 31, 23, 46, (56,177,0): 31, 23, 46, (56,178,0): 31, 23, 46, (56,179,0): 31, 23, 46, (56,180,0): 31, 23, 46, (56,181,0): 31, 23, 46, (56,182,0): 31, 23, 46, (56,183,0): 31, 23, 46, (56,184,0): 29, 21, 44, (56,185,0): 29, 21, 44, (56,186,0): 29, 21, 44, (56,187,0): 29, 21, 44, (56,188,0): 29, 21, 44, (56,189,0): 29, 21, 44, (56,190,0): 29, 21, 44, (56,191,0): 29, 21, 42, (56,192,0): 29, 24, 44, (56,193,0): 29, 25, 42, (56,194,0): 32, 25, 43, (56,195,0): 33, 26, 44, (56,196,0): 34, 27, 45, (56,197,0): 35, 28, 46, (56,198,0): 37, 28, 47, (56,199,0): 37, 28, 47, (56,200,0): 40, 28, 48, (56,201,0): 40, 28, 48, (56,202,0): 40, 28, 48, (56,203,0): 41, 29, 49, (56,204,0): 42, 29, 49, (56,205,0): 43, 30, 50, (56,206,0): 43, 30, 50, (56,207,0): 44, 29, 50, (56,208,0): 50, 33, 52, (56,209,0): 51, 32, 52, (56,210,0): 51, 32, 51, (56,211,0): 51, 32, 51, (56,212,0): 52, 31, 50, (56,213,0): 52, 31, 50, (56,214,0): 52, 31, 48, (56,215,0): 52, 31, 48, (56,216,0): 55, 32, 48, (56,217,0): 56, 33, 49, (56,218,0): 58, 34, 50, (56,219,0): 59, 35, 51, (56,220,0): 59, 35, 49, (56,221,0): 58, 34, 48, (56,222,0): 59, 32, 47, (56,223,0): 56, 32, 46, (56,224,0): 58, 36, 49, (56,225,0): 58, 36, 49, (56,226,0): 59, 37, 50, (56,227,0): 59, 37, 50, (56,228,0): 60, 38, 51, (56,229,0): 60, 38, 51, (56,230,0): 61, 39, 52, (56,231,0): 61, 39, 52, (56,232,0): 57, 35, 48, (56,233,0): 57, 35, 48, (56,234,0): 56, 34, 47, (56,235,0): 56, 34, 47, (56,236,0): 57, 35, 48, (56,237,0): 59, 37, 50, (56,238,0): 60, 38, 51, (56,239,0): 62, 38, 52, (56,240,0): 64, 38, 51, (56,241,0): 65, 37, 51, (56,242,0): 65, 37, 49, (56,243,0): 65, 37, 49, (56,244,0): 65, 37, 49, (56,245,0): 65, 37, 49, (56,246,0): 65, 38, 47, (56,247,0): 65, 38, 47, (56,248,0): 65, 38, 47, (56,249,0): 65, 38, 45, (56,250,0): 65, 38, 45, (56,251,0): 65, 38, 45, (56,252,0): 65, 38, 43, (56,253,0): 65, 38, 43, (56,254,0): 65, 38, 43, (56,255,0): 65, 38, 43, (56,256,0): 69, 40, 45, (56,257,0): 70, 39, 45, (56,258,0): 71, 40, 46, (56,259,0): 72, 41, 47, (56,260,0): 74, 41, 48, (56,261,0): 75, 43, 48, (56,262,0): 76, 44, 49, (56,263,0): 76, 44, 49, (56,264,0): 81, 46, 52, (56,265,0): 82, 47, 51, (56,266,0): 83, 47, 51, (56,267,0): 84, 48, 50, (56,268,0): 84, 48, 50, (56,269,0): 85, 49, 51, (56,270,0): 87, 48, 51, (56,271,0): 87, 48, 49, (56,272,0): 87, 46, 50, (56,273,0): 87, 46, 50, (56,274,0): 88, 47, 51, (56,275,0): 88, 47, 51, (56,276,0): 89, 48, 52, (56,277,0): 89, 48, 52, (56,278,0): 90, 49, 53, (56,279,0): 90, 49, 53, (56,280,0): 92, 51, 55, (56,281,0): 91, 50, 54, (56,282,0): 91, 50, 54, (56,283,0): 91, 50, 54, (56,284,0): 92, 51, 55, (56,285,0): 94, 53, 57, (56,286,0): 96, 55, 59, (56,287,0): 97, 56, 60, (56,288,0): 102, 57, 60, (56,289,0): 105, 59, 62, (56,290,0): 109, 63, 66, (56,291,0): 109, 63, 66, (56,292,0): 111, 62, 65, (56,293,0): 112, 64, 64, (56,294,0): 115, 67, 65, (56,295,0): 118, 70, 66, (56,296,0): 123, 74, 69, (56,297,0): 124, 76, 66, (56,298,0): 126, 76, 67, (56,299,0): 126, 76, 65, (56,300,0): 127, 78, 64, (56,301,0): 131, 82, 67, (56,302,0): 140, 88, 74, (56,303,0): 146, 94, 70, (56,304,0): 154, 98, 61, (56,305,0): 172, 110, 61, (56,306,0): 196, 125, 69, (56,307,0): 208, 134, 71, (56,308,0): 210, 135, 67, (56,309,0): 207, 135, 63, (56,310,0): 202, 135, 65, (56,311,0): 199, 136, 67, (56,312,0): 197, 140, 73, (56,313,0): 193, 138, 71, (56,314,0): 192, 135, 66, (56,315,0): 192, 135, 64, (56,316,0): 194, 137, 68, (56,317,0): 193, 138, 71, (56,318,0): 189, 138, 73, (56,319,0): 185, 137, 75, (56,320,0): 176, 127, 68, (56,321,0): 173, 127, 68, (56,322,0): 169, 124, 67, (56,323,0): 165, 123, 65, (56,324,0): 162, 121, 67, (56,325,0): 158, 121, 66, (56,326,0): 157, 121, 69, (56,327,0): 155, 122, 69, (56,328,0): 152, 120, 71, (56,329,0): 150, 120, 70, (56,330,0): 149, 118, 72, (56,331,0): 147, 116, 70, (56,332,0): 147, 114, 73, (56,333,0): 147, 114, 73, (56,334,0): 148, 113, 75, (56,335,0): 148, 113, 75, (56,336,0): 147, 113, 75, (56,337,0): 146, 112, 74, (56,338,0): 145, 111, 74, (56,339,0): 144, 110, 73, (56,340,0): 143, 109, 74, (56,341,0): 142, 108, 73, (56,342,0): 142, 107, 75, (56,343,0): 141, 106, 74, (56,344,0): 141, 106, 78, (56,345,0): 140, 105, 77, (56,346,0): 137, 101, 75, (56,347,0): 134, 98, 72, (56,348,0): 133, 97, 73, (56,349,0): 131, 95, 71, (56,350,0): 131, 95, 73, (56,351,0): 131, 95, 73, (56,352,0): 135, 101, 76, (56,353,0): 135, 101, 76, (56,354,0): 135, 101, 76, (56,355,0): 135, 101, 76, (56,356,0): 136, 102, 77, (56,357,0): 138, 104, 79, (56,358,0): 140, 106, 81, (56,359,0): 141, 107, 82, (56,360,0): 143, 109, 84, (56,361,0): 143, 109, 84, (56,362,0): 142, 108, 83, (56,363,0): 142, 108, 83, (56,364,0): 141, 107, 82, (56,365,0): 141, 107, 82, (56,366,0): 140, 106, 81, (56,367,0): 141, 105, 81, (56,368,0): 144, 103, 81, (56,369,0): 144, 103, 81, (56,370,0): 145, 104, 82, (56,371,0): 145, 104, 82, (56,372,0): 147, 105, 83, (56,373,0): 147, 105, 83, (56,374,0): 150, 105, 84, (56,375,0): 150, 105, 84, (56,376,0): 152, 105, 85, (56,377,0): 153, 106, 86, (56,378,0): 155, 107, 87, (56,379,0): 157, 109, 89, (56,380,0): 159, 111, 91, (56,381,0): 163, 112, 93, (56,382,0): 164, 113, 94, (56,383,0): 163, 115, 95, (56,384,0): 161, 114, 96, (56,385,0): 162, 115, 97, (56,386,0): 164, 116, 96, (56,387,0): 165, 117, 97, (56,388,0): 168, 117, 96, (56,389,0): 171, 119, 97, (56,390,0): 174, 118, 95, (56,391,0): 176, 118, 94, (56,392,0): 185, 125, 99, (56,393,0): 188, 127, 98, (56,394,0): 192, 128, 100, (56,395,0): 193, 128, 98, (56,396,0): 192, 126, 94, (56,397,0): 192, 126, 92, (56,398,0): 194, 128, 94, (56,399,0): 196, 130, 95, (56,400,0): 193, 128, 90, (56,401,0): 193, 128, 88, (56,402,0): 193, 129, 91, (56,403,0): 193, 129, 91, (56,404,0): 193, 131, 94, (56,405,0): 193, 131, 94, (56,406,0): 194, 132, 93, (56,407,0): 195, 131, 93, (56,408,0): 197, 132, 92, (56,409,0): 199, 132, 90, (56,410,0): 200, 132, 87, (56,411,0): 204, 131, 86, (56,412,0): 209, 135, 86, (56,413,0): 217, 139, 90, (56,414,0): 223, 143, 94, (56,415,0): 227, 146, 93, (56,416,0): 234, 152, 92, (56,417,0): 237, 153, 89, (56,418,0): 238, 152, 91, (56,419,0): 237, 151, 92, (56,420,0): 233, 147, 90, (56,421,0): 226, 141, 86, (56,422,0): 216, 136, 83, (56,423,0): 206, 135, 83, (56,424,0): 190, 126, 78, (56,425,0): 178, 124, 77, (56,426,0): 166, 117, 74, (56,427,0): 156, 112, 73, (56,428,0): 149, 109, 74, (56,429,0): 143, 104, 73, (56,430,0): 138, 99, 70, (56,431,0): 134, 94, 68, (56,432,0): 135, 94, 66, (56,433,0): 134, 93, 63, (56,434,0): 132, 93, 64, (56,435,0): 133, 97, 65, (56,436,0): 136, 101, 71, (56,437,0): 136, 103, 70, (56,438,0): 132, 101, 70, (56,439,0): 128, 98, 64, (56,440,0): 124, 95, 63, (56,441,0): 124, 95, 61, (56,442,0): 126, 95, 64, (56,443,0): 130, 100, 66, (56,444,0): 135, 102, 71, (56,445,0): 135, 102, 69, (56,446,0): 132, 97, 67, (56,447,0): 127, 93, 65, (56,448,0): 125, 91, 66, (56,449,0): 123, 91, 68, (56,450,0): 123, 91, 70, (56,451,0): 122, 90, 69, (56,452,0): 120, 87, 68, (56,453,0): 115, 84, 64, (56,454,0): 112, 81, 63, (56,455,0): 108, 79, 63, (56,456,0): 102, 73, 59, (56,457,0): 100, 71, 57, (56,458,0): 97, 67, 56, (56,459,0): 93, 65, 53, (56,460,0): 92, 64, 53, (56,461,0): 92, 64, 53, (56,462,0): 92, 63, 55, (56,463,0): 92, 65, 56, (56,464,0): 88, 63, 56, (56,465,0): 88, 63, 56, (56,466,0): 88, 63, 56, (56,467,0): 89, 64, 57, (56,468,0): 89, 66, 58, (56,469,0): 92, 69, 61, (56,470,0): 94, 71, 63, (56,471,0): 95, 72, 64, (56,472,0): 95, 75, 66, (56,473,0): 95, 75, 66, (56,474,0): 94, 76, 66, (56,475,0): 93, 75, 65, (56,476,0): 93, 75, 65, (56,477,0): 92, 74, 64, (56,478,0): 91, 74, 64, (56,479,0): 91, 73, 63, (56,480,0): 95, 72, 64, (56,481,0): 96, 71, 64, (56,482,0): 96, 71, 64, (56,483,0): 95, 70, 63, (56,484,0): 95, 70, 63, (56,485,0): 95, 70, 63, (56,486,0): 95, 70, 63, (56,487,0): 95, 70, 63, (56,488,0): 99, 74, 67, (56,489,0): 99, 74, 67, (56,490,0): 98, 73, 66, (56,491,0): 98, 73, 66, (56,492,0): 97, 72, 65, (56,493,0): 97, 72, 65, (56,494,0): 97, 72, 65, (56,495,0): 95, 72, 64, (56,496,0): 91, 68, 62, (56,497,0): 89, 69, 62, (56,498,0): 88, 68, 61, (56,499,0): 88, 68, 61, (56,500,0): 89, 66, 60, (56,501,0): 89, 66, 60, (56,502,0): 89, 64, 59, (56,503,0): 89, 64, 59, (56,504,0): 91, 66, 61, (56,505,0): 90, 65, 60, (56,506,0): 92, 64, 60, (56,507,0): 92, 64, 60, (56,508,0): 94, 65, 61, (56,509,0): 95, 66, 62, (56,510,0): 96, 67, 63, (56,511,0): 96, 67, 61, (56,512,0): 97, 68, 60, (56,513,0): 96, 68, 57, (56,514,0): 96, 68, 57, (56,515,0): 95, 67, 56, (56,516,0): 96, 68, 57, (56,517,0): 97, 69, 58, (56,518,0): 99, 71, 60, (56,519,0): 100, 72, 61, (56,520,0): 101, 73, 62, (56,521,0): 102, 74, 63, (56,522,0): 102, 74, 63, (56,523,0): 103, 75, 64, (56,524,0): 103, 75, 64, (56,525,0): 104, 76, 65, (56,526,0): 104, 76, 65, (56,527,0): 103, 77, 64, (56,528,0): 103, 77, 62, (56,529,0): 103, 77, 60, (56,530,0): 101, 78, 62, (56,531,0): 100, 77, 63, (56,532,0): 99, 75, 63, (56,533,0): 101, 74, 63, (56,534,0): 101, 74, 65, (56,535,0): 101, 72, 64, (56,536,0): 100, 70, 62, (56,537,0): 104, 69, 63, (56,538,0): 107, 70, 64, (56,539,0): 110, 69, 63, (56,540,0): 113, 68, 62, (56,541,0): 115, 68, 60, (56,542,0): 115, 66, 59, (56,543,0): 124, 61, 54, (56,544,0): 164, 73, 72, (56,545,0): 160, 66, 66, (56,546,0): 134, 63, 59, (56,547,0): 110, 60, 53, (56,548,0): 91, 58, 53, (56,549,0): 80, 56, 52, (56,550,0): 79, 54, 57, (56,551,0): 79, 54, 60, (56,552,0): 85, 53, 64, (56,553,0): 84, 50, 64, (56,554,0): 81, 49, 62, (56,555,0): 78, 48, 58, (56,556,0): 74, 49, 55, (56,557,0): 71, 49, 52, (56,558,0): 70, 50, 51, (56,559,0): 71, 51, 52, (56,560,0): 71, 51, 53, (56,561,0): 72, 52, 54, (56,562,0): 73, 53, 55, (56,563,0): 74, 54, 56, (56,564,0): 75, 55, 57, (56,565,0): 77, 57, 58, (56,566,0): 78, 58, 59, (56,567,0): 78, 58, 59, (56,568,0): 81, 61, 62, (56,569,0): 81, 61, 60, (56,570,0): 81, 61, 60, (56,571,0): 82, 63, 59, (56,572,0): 82, 63, 59, (56,573,0): 83, 64, 60, (56,574,0): 83, 64, 60, (56,575,0): 83, 64, 58, (56,576,0): 80, 61, 57, (56,577,0): 80, 61, 57, (56,578,0): 79, 60, 56, (56,579,0): 78, 59, 55, (56,580,0): 77, 57, 56, (56,581,0): 76, 56, 55, (56,582,0): 75, 55, 54, (56,583,0): 75, 55, 54, (56,584,0): 72, 52, 53, (56,585,0): 71, 51, 52, (56,586,0): 69, 49, 51, (56,587,0): 67, 47, 49, (56,588,0): 65, 45, 47, (56,589,0): 65, 45, 47, (56,590,0): 65, 44, 49, (56,591,0): 65, 44, 49, (56,592,0): 63, 43, 45, (56,593,0): 62, 42, 44, (56,594,0): 61, 41, 43, (56,595,0): 59, 39, 41, (56,596,0): 57, 37, 39, (56,597,0): 55, 35, 37, (56,598,0): 54, 34, 36, (56,599,0): 53, 33, 35, (57,0,0): 33, 24, 41, (57,1,0): 34, 25, 42, (57,2,0): 34, 26, 41, (57,3,0): 35, 27, 42, (57,4,0): 37, 26, 42, (57,5,0): 38, 27, 43, (57,6,0): 38, 27, 41, (57,7,0): 38, 27, 41, (57,8,0): 39, 27, 39, (57,9,0): 39, 27, 39, (57,10,0): 41, 27, 40, (57,11,0): 41, 27, 40, (57,12,0): 42, 29, 39, (57,13,0): 42, 29, 39, (57,14,0): 45, 29, 40, (57,15,0): 45, 29, 40, (57,16,0): 46, 28, 40, (57,17,0): 46, 28, 40, (57,18,0): 47, 29, 41, (57,19,0): 47, 29, 41, (57,20,0): 48, 30, 42, (57,21,0): 48, 30, 42, (57,22,0): 49, 31, 43, (57,23,0): 49, 31, 43, (57,24,0): 50, 32, 44, (57,25,0): 50, 32, 44, (57,26,0): 50, 32, 44, (57,27,0): 49, 31, 43, (57,28,0): 49, 31, 43, (57,29,0): 48, 30, 42, (57,30,0): 48, 30, 42, (57,31,0): 48, 30, 42, (57,32,0): 48, 31, 47, (57,33,0): 48, 31, 47, (57,34,0): 48, 31, 47, (57,35,0): 48, 31, 47, (57,36,0): 48, 31, 47, (57,37,0): 48, 31, 47, (57,38,0): 48, 31, 47, (57,39,0): 48, 31, 47, (57,40,0): 50, 33, 49, (57,41,0): 50, 33, 49, (57,42,0): 50, 33, 49, (57,43,0): 50, 33, 49, (57,44,0): 50, 33, 49, (57,45,0): 50, 33, 49, (57,46,0): 50, 33, 49, (57,47,0): 50, 33, 49, (57,48,0): 51, 30, 47, (57,49,0): 51, 30, 47, (57,50,0): 51, 30, 47, (57,51,0): 51, 30, 47, (57,52,0): 51, 30, 47, (57,53,0): 51, 30, 47, (57,54,0): 51, 30, 47, (57,55,0): 51, 30, 47, (57,56,0): 51, 30, 47, (57,57,0): 50, 29, 46, (57,58,0): 49, 28, 45, (57,59,0): 47, 26, 43, (57,60,0): 47, 26, 43, (57,61,0): 47, 26, 43, (57,62,0): 48, 27, 44, (57,63,0): 48, 27, 42, (57,64,0): 47, 29, 43, (57,65,0): 47, 29, 41, (57,66,0): 47, 29, 41, (57,67,0): 46, 28, 40, (57,68,0): 46, 28, 42, (57,69,0): 45, 27, 41, (57,70,0): 44, 28, 41, (57,71,0): 44, 28, 41, (57,72,0): 41, 27, 42, (57,73,0): 41, 27, 42, (57,74,0): 40, 27, 44, (57,75,0): 40, 27, 44, (57,76,0): 40, 27, 44, (57,77,0): 40, 27, 44, (57,78,0): 40, 27, 45, (57,79,0): 40, 27, 45, (57,80,0): 37, 25, 45, (57,81,0): 37, 25, 45, (57,82,0): 37, 25, 45, (57,83,0): 37, 25, 45, (57,84,0): 37, 25, 45, (57,85,0): 37, 25, 45, (57,86,0): 37, 25, 45, (57,87,0): 37, 25, 45, (57,88,0): 37, 25, 45, (57,89,0): 37, 25, 45, (57,90,0): 37, 25, 45, (57,91,0): 37, 25, 45, (57,92,0): 37, 25, 45, (57,93,0): 37, 25, 45, (57,94,0): 37, 25, 45, (57,95,0): 37, 25, 45, (57,96,0): 33, 24, 43, (57,97,0): 33, 24, 43, (57,98,0): 33, 24, 43, (57,99,0): 33, 24, 43, (57,100,0): 33, 24, 43, (57,101,0): 33, 24, 43, (57,102,0): 33, 24, 43, (57,103,0): 33, 24, 43, (57,104,0): 33, 24, 43, (57,105,0): 33, 24, 43, (57,106,0): 32, 23, 42, (57,107,0): 32, 23, 42, (57,108,0): 31, 22, 41, (57,109,0): 31, 22, 41, (57,110,0): 30, 21, 40, (57,111,0): 29, 22, 40, (57,112,0): 29, 21, 42, (57,113,0): 27, 22, 42, (57,114,0): 27, 22, 42, (57,115,0): 28, 23, 43, (57,116,0): 28, 23, 43, (57,117,0): 29, 24, 44, (57,118,0): 29, 24, 44, (57,119,0): 30, 25, 45, (57,120,0): 30, 25, 45, (57,121,0): 30, 25, 45, (57,122,0): 30, 25, 45, (57,123,0): 30, 25, 45, (57,124,0): 30, 25, 45, (57,125,0): 30, 25, 45, (57,126,0): 30, 25, 45, (57,127,0): 30, 25, 45, (57,128,0): 31, 22, 41, (57,129,0): 31, 22, 41, (57,130,0): 31, 22, 41, (57,131,0): 30, 21, 40, (57,132,0): 30, 21, 40, (57,133,0): 29, 20, 39, (57,134,0): 29, 20, 39, (57,135,0): 29, 20, 39, (57,136,0): 33, 24, 43, (57,137,0): 32, 23, 42, (57,138,0): 32, 23, 42, (57,139,0): 31, 22, 41, (57,140,0): 31, 22, 41, (57,141,0): 30, 21, 40, (57,142,0): 30, 21, 40, (57,143,0): 30, 21, 40, (57,144,0): 31, 22, 41, (57,145,0): 31, 22, 41, (57,146,0): 31, 22, 41, (57,147,0): 31, 22, 41, (57,148,0): 31, 22, 41, (57,149,0): 31, 22, 41, (57,150,0): 31, 22, 41, (57,151,0): 31, 22, 41, (57,152,0): 31, 22, 41, (57,153,0): 32, 23, 42, (57,154,0): 32, 23, 42, (57,155,0): 32, 23, 42, (57,156,0): 33, 24, 43, (57,157,0): 33, 24, 43, (57,158,0): 34, 25, 44, (57,159,0): 34, 25, 44, (57,160,0): 32, 25, 43, (57,161,0): 32, 25, 43, (57,162,0): 31, 24, 42, (57,163,0): 31, 24, 42, (57,164,0): 30, 23, 41, (57,165,0): 30, 23, 41, (57,166,0): 29, 22, 40, (57,167,0): 29, 22, 40, (57,168,0): 30, 23, 41, (57,169,0): 30, 23, 41, (57,170,0): 30, 23, 41, (57,171,0): 30, 23, 41, (57,172,0): 30, 23, 41, (57,173,0): 30, 23, 41, (57,174,0): 30, 23, 41, (57,175,0): 30, 23, 41, (57,176,0): 31, 23, 46, (57,177,0): 31, 23, 46, (57,178,0): 31, 23, 46, (57,179,0): 31, 23, 46, (57,180,0): 31, 23, 46, (57,181,0): 31, 23, 46, (57,182,0): 31, 23, 46, (57,183,0): 31, 23, 46, (57,184,0): 29, 21, 44, (57,185,0): 29, 21, 44, (57,186,0): 29, 21, 44, (57,187,0): 29, 21, 44, (57,188,0): 29, 21, 44, (57,189,0): 29, 21, 44, (57,190,0): 29, 21, 44, (57,191,0): 29, 21, 42, (57,192,0): 29, 24, 44, (57,193,0): 29, 25, 42, (57,194,0): 32, 25, 43, (57,195,0): 33, 26, 44, (57,196,0): 34, 27, 45, (57,197,0): 35, 28, 46, (57,198,0): 37, 28, 47, (57,199,0): 37, 28, 47, (57,200,0): 40, 28, 48, (57,201,0): 40, 28, 48, (57,202,0): 40, 28, 48, (57,203,0): 41, 29, 49, (57,204,0): 42, 29, 49, (57,205,0): 43, 30, 50, (57,206,0): 43, 30, 50, (57,207,0): 44, 29, 50, (57,208,0): 49, 32, 51, (57,209,0): 50, 31, 51, (57,210,0): 50, 31, 50, (57,211,0): 50, 31, 50, (57,212,0): 53, 32, 51, (57,213,0): 53, 32, 51, (57,214,0): 53, 32, 49, (57,215,0): 53, 32, 49, (57,216,0): 56, 33, 49, (57,217,0): 57, 34, 50, (57,218,0): 59, 35, 51, (57,219,0): 60, 36, 52, (57,220,0): 60, 36, 50, (57,221,0): 59, 35, 49, (57,222,0): 60, 33, 48, (57,223,0): 59, 32, 47, (57,224,0): 59, 35, 49, (57,225,0): 58, 36, 49, (57,226,0): 59, 37, 50, (57,227,0): 59, 37, 50, (57,228,0): 60, 38, 51, (57,229,0): 60, 38, 51, (57,230,0): 61, 39, 52, (57,231,0): 61, 39, 52, (57,232,0): 57, 35, 48, (57,233,0): 57, 35, 48, (57,234,0): 56, 34, 47, (57,235,0): 56, 34, 47, (57,236,0): 57, 35, 48, (57,237,0): 58, 36, 49, (57,238,0): 60, 38, 51, (57,239,0): 62, 38, 51, (57,240,0): 65, 37, 51, (57,241,0): 65, 37, 51, (57,242,0): 65, 37, 49, (57,243,0): 65, 37, 49, (57,244,0): 65, 37, 49, (57,245,0): 65, 38, 47, (57,246,0): 65, 38, 47, (57,247,0): 65, 38, 47, (57,248,0): 65, 38, 45, (57,249,0): 65, 38, 45, (57,250,0): 65, 38, 45, (57,251,0): 65, 38, 43, (57,252,0): 65, 38, 43, (57,253,0): 65, 38, 43, (57,254,0): 65, 38, 43, (57,255,0): 67, 38, 43, (57,256,0): 70, 39, 45, (57,257,0): 70, 39, 45, (57,258,0): 71, 40, 46, (57,259,0): 72, 41, 47, (57,260,0): 74, 42, 47, (57,261,0): 75, 43, 48, (57,262,0): 76, 44, 49, (57,263,0): 76, 44, 47, (57,264,0): 81, 46, 50, (57,265,0): 82, 47, 51, (57,266,0): 83, 47, 49, (57,267,0): 83, 47, 49, (57,268,0): 84, 48, 50, (57,269,0): 84, 48, 50, (57,270,0): 87, 48, 49, (57,271,0): 87, 48, 49, (57,272,0): 87, 46, 50, (57,273,0): 87, 46, 50, (57,274,0): 88, 47, 51, (57,275,0): 88, 47, 51, (57,276,0): 89, 48, 52, (57,277,0): 89, 48, 52, (57,278,0): 90, 49, 53, (57,279,0): 90, 49, 53, (57,280,0): 92, 51, 55, (57,281,0): 91, 50, 54, (57,282,0): 91, 50, 54, (57,283,0): 91, 50, 54, (57,284,0): 92, 51, 55, (57,285,0): 94, 53, 57, (57,286,0): 96, 55, 59, (57,287,0): 98, 56, 60, (57,288,0): 102, 56, 59, (57,289,0): 105, 59, 62, (57,290,0): 108, 62, 65, (57,291,0): 109, 63, 65, (57,292,0): 111, 63, 63, (57,293,0): 112, 64, 62, (57,294,0): 115, 67, 63, (57,295,0): 118, 71, 65, (57,296,0): 124, 75, 68, (57,297,0): 126, 78, 68, (57,298,0): 128, 78, 67, (57,299,0): 129, 80, 66, (57,300,0): 130, 81, 66, (57,301,0): 133, 84, 67, (57,302,0): 140, 89, 72, (57,303,0): 148, 94, 68, (57,304,0): 158, 100, 62, (57,305,0): 175, 113, 62, (57,306,0): 198, 128, 69, (57,307,0): 212, 137, 72, (57,308,0): 215, 138, 68, (57,309,0): 210, 136, 63, (57,310,0): 205, 137, 66, (57,311,0): 201, 138, 67, (57,312,0): 199, 140, 72, (57,313,0): 195, 138, 69, (57,314,0): 194, 135, 65, (57,315,0): 193, 134, 64, (57,316,0): 194, 137, 68, (57,317,0): 192, 137, 70, (57,318,0): 188, 137, 72, (57,319,0): 184, 134, 73, (57,320,0): 176, 127, 68, (57,321,0): 171, 126, 67, (57,322,0): 169, 124, 67, (57,323,0): 163, 123, 64, (57,324,0): 160, 121, 66, (57,325,0): 157, 120, 65, (57,326,0): 156, 120, 68, (57,327,0): 153, 122, 68, (57,328,0): 149, 119, 69, (57,329,0): 149, 119, 69, (57,330,0): 149, 118, 72, (57,331,0): 149, 118, 72, (57,332,0): 149, 116, 75, (57,333,0): 148, 115, 74, (57,334,0): 148, 113, 75, (57,335,0): 148, 113, 75, (57,336,0): 145, 111, 73, (57,337,0): 145, 111, 73, (57,338,0): 144, 110, 73, (57,339,0): 144, 110, 73, (57,340,0): 143, 109, 74, (57,341,0): 142, 108, 73, (57,342,0): 142, 107, 75, (57,343,0): 142, 107, 75, (57,344,0): 140, 105, 77, (57,345,0): 138, 103, 75, (57,346,0): 136, 100, 74, (57,347,0): 134, 98, 72, (57,348,0): 132, 96, 72, (57,349,0): 131, 95, 71, (57,350,0): 131, 95, 73, (57,351,0): 131, 95, 73, (57,352,0): 135, 101, 76, (57,353,0): 134, 100, 75, (57,354,0): 134, 100, 75, (57,355,0): 134, 100, 75, (57,356,0): 135, 101, 76, (57,357,0): 137, 103, 78, (57,358,0): 139, 105, 80, (57,359,0): 140, 106, 81, (57,360,0): 142, 108, 83, (57,361,0): 142, 108, 83, (57,362,0): 142, 108, 83, (57,363,0): 141, 107, 82, (57,364,0): 141, 107, 82, (57,365,0): 140, 106, 81, (57,366,0): 140, 106, 81, (57,367,0): 139, 105, 80, (57,368,0): 142, 104, 81, (57,369,0): 144, 103, 81, (57,370,0): 144, 103, 81, (57,371,0): 145, 104, 82, (57,372,0): 146, 104, 82, (57,373,0): 147, 105, 83, (57,374,0): 149, 104, 83, (57,375,0): 150, 105, 84, (57,376,0): 153, 106, 86, (57,377,0): 153, 106, 86, (57,378,0): 156, 108, 88, (57,379,0): 157, 109, 89, (57,380,0): 161, 110, 91, (57,381,0): 163, 112, 93, (57,382,0): 164, 113, 94, (57,383,0): 165, 114, 95, (57,384,0): 161, 114, 96, (57,385,0): 162, 115, 95, (57,386,0): 164, 116, 96, (57,387,0): 167, 116, 95, (57,388,0): 170, 118, 96, (57,389,0): 173, 119, 95, (57,390,0): 176, 118, 94, (57,391,0): 179, 119, 93, (57,392,0): 186, 125, 97, (57,393,0): 191, 127, 99, (57,394,0): 194, 129, 99, (57,395,0): 193, 128, 96, (57,396,0): 192, 126, 92, (57,397,0): 192, 126, 91, (57,398,0): 194, 128, 93, (57,399,0): 196, 131, 93, (57,400,0): 193, 128, 90, (57,401,0): 194, 129, 89, (57,402,0): 193, 129, 91, (57,403,0): 194, 130, 92, (57,404,0): 193, 131, 94, (57,405,0): 194, 132, 95, (57,406,0): 194, 132, 93, (57,407,0): 194, 132, 91, (57,408,0): 196, 133, 90, (57,409,0): 199, 132, 89, (57,410,0): 201, 133, 88, (57,411,0): 207, 135, 87, (57,412,0): 214, 138, 89, (57,413,0): 222, 142, 91, (57,414,0): 228, 146, 96, (57,415,0): 232, 149, 95, (57,416,0): 232, 150, 90, (57,417,0): 233, 152, 89, (57,418,0): 236, 152, 90, (57,419,0): 235, 151, 91, (57,420,0): 231, 146, 91, (57,421,0): 222, 141, 86, (57,422,0): 213, 136, 84, (57,423,0): 204, 134, 83, (57,424,0): 188, 128, 78, (57,425,0): 177, 125, 78, (57,426,0): 165, 118, 76, (57,427,0): 156, 114, 74, (57,428,0): 150, 110, 75, (57,429,0): 146, 107, 74, (57,430,0): 142, 103, 74, (57,431,0): 140, 99, 71, (57,432,0): 141, 97, 68, (57,433,0): 139, 96, 64, (57,434,0): 138, 97, 67, (57,435,0): 139, 100, 67, (57,436,0): 141, 105, 73, (57,437,0): 141, 107, 72, (57,438,0): 138, 105, 72, (57,439,0): 133, 103, 67, (57,440,0): 127, 97, 63, (57,441,0): 126, 98, 61, (57,442,0): 128, 98, 64, (57,443,0): 131, 101, 65, (57,444,0): 136, 103, 70, (57,445,0): 136, 103, 68, (57,446,0): 133, 98, 66, (57,447,0): 130, 95, 65, (57,448,0): 128, 94, 67, (57,449,0): 128, 94, 69, (57,450,0): 126, 94, 71, (57,451,0): 125, 93, 70, (57,452,0): 123, 91, 70, (57,453,0): 121, 89, 68, (57,454,0): 117, 86, 66, (57,455,0): 115, 84, 66, (57,456,0): 108, 76, 61, (57,457,0): 104, 75, 59, (57,458,0): 101, 72, 58, (57,459,0): 98, 69, 55, (57,460,0): 95, 67, 55, (57,461,0): 93, 65, 53, (57,462,0): 93, 65, 54, (57,463,0): 92, 65, 56, (57,464,0): 91, 64, 55, (57,465,0): 89, 64, 57, (57,466,0): 89, 64, 57, (57,467,0): 90, 65, 58, (57,468,0): 90, 67, 59, (57,469,0): 93, 70, 62, (57,470,0): 95, 72, 64, (57,471,0): 96, 73, 65, (57,472,0): 96, 76, 67, (57,473,0): 96, 76, 67, (57,474,0): 94, 76, 66, (57,475,0): 94, 76, 66, (57,476,0): 93, 75, 65, (57,477,0): 93, 75, 65, (57,478,0): 91, 74, 64, (57,479,0): 92, 74, 64, (57,480,0): 96, 73, 65, (57,481,0): 97, 72, 65, (57,482,0): 97, 72, 65, (57,483,0): 96, 71, 64, (57,484,0): 96, 71, 64, (57,485,0): 95, 70, 63, (57,486,0): 95, 70, 63, (57,487,0): 95, 70, 63, (57,488,0): 98, 73, 66, (57,489,0): 98, 73, 66, (57,490,0): 98, 73, 66, (57,491,0): 97, 72, 65, (57,492,0): 96, 71, 64, (57,493,0): 96, 71, 64, (57,494,0): 96, 71, 64, (57,495,0): 94, 71, 63, (57,496,0): 90, 67, 59, (57,497,0): 88, 68, 59, (57,498,0): 88, 68, 61, (57,499,0): 87, 67, 58, (57,500,0): 89, 66, 60, (57,501,0): 89, 66, 58, (57,502,0): 89, 64, 59, (57,503,0): 89, 64, 57, (57,504,0): 91, 66, 61, (57,505,0): 92, 67, 60, (57,506,0): 94, 66, 62, (57,507,0): 95, 68, 61, (57,508,0): 97, 68, 64, (57,509,0): 97, 68, 62, (57,510,0): 97, 68, 64, (57,511,0): 97, 68, 62, (57,512,0): 98, 70, 59, (57,513,0): 97, 69, 58, (57,514,0): 97, 69, 58, (57,515,0): 97, 69, 58, (57,516,0): 97, 69, 58, (57,517,0): 98, 70, 59, (57,518,0): 100, 72, 61, (57,519,0): 101, 73, 62, (57,520,0): 102, 74, 63, (57,521,0): 102, 74, 63, (57,522,0): 103, 75, 64, (57,523,0): 103, 75, 64, (57,524,0): 104, 76, 65, (57,525,0): 104, 76, 65, (57,526,0): 105, 77, 66, (57,527,0): 105, 77, 65, (57,528,0): 105, 77, 63, (57,529,0): 103, 77, 60, (57,530,0): 103, 77, 62, (57,531,0): 100, 77, 63, (57,532,0): 100, 76, 64, (57,533,0): 99, 75, 63, (57,534,0): 99, 75, 65, (57,535,0): 101, 74, 65, (57,536,0): 100, 71, 63, (57,537,0): 102, 72, 64, (57,538,0): 105, 72, 65, (57,539,0): 106, 72, 63, (57,540,0): 109, 71, 62, (57,541,0): 109, 69, 59, (57,542,0): 110, 67, 58, (57,543,0): 116, 64, 53, (57,544,0): 134, 61, 55, (57,545,0): 130, 57, 51, (57,546,0): 112, 57, 50, (57,547,0): 96, 58, 49, (57,548,0): 83, 58, 51, (57,549,0): 78, 59, 53, (57,550,0): 80, 58, 60, (57,551,0): 84, 57, 64, (57,552,0): 87, 54, 65, (57,553,0): 88, 52, 66, (57,554,0): 86, 50, 64, (57,555,0): 82, 49, 60, (57,556,0): 80, 50, 58, (57,557,0): 77, 50, 55, (57,558,0): 77, 52, 56, (57,559,0): 75, 53, 55, (57,560,0): 73, 53, 55, (57,561,0): 73, 53, 55, (57,562,0): 74, 54, 56, (57,563,0): 74, 54, 56, (57,564,0): 75, 55, 56, (57,565,0): 76, 56, 57, (57,566,0): 77, 57, 58, (57,567,0): 77, 57, 56, (57,568,0): 80, 60, 59, (57,569,0): 81, 61, 60, (57,570,0): 81, 62, 58, (57,571,0): 81, 62, 58, (57,572,0): 82, 63, 59, (57,573,0): 82, 63, 59, (57,574,0): 83, 64, 58, (57,575,0): 83, 64, 58, (57,576,0): 81, 62, 58, (57,577,0): 81, 62, 58, (57,578,0): 80, 61, 57, (57,579,0): 79, 60, 56, (57,580,0): 78, 58, 57, (57,581,0): 77, 57, 56, (57,582,0): 76, 56, 55, (57,583,0): 75, 55, 54, (57,584,0): 73, 53, 54, (57,585,0): 71, 51, 52, (57,586,0): 69, 49, 51, (57,587,0): 67, 47, 49, (57,588,0): 66, 46, 48, (57,589,0): 65, 45, 47, (57,590,0): 65, 44, 49, (57,591,0): 65, 44, 49, (57,592,0): 62, 42, 44, (57,593,0): 62, 42, 44, (57,594,0): 60, 40, 42, (57,595,0): 59, 39, 41, (57,596,0): 57, 37, 39, (57,597,0): 55, 35, 37, (57,598,0): 54, 34, 36, (57,599,0): 53, 33, 35, (58,0,0): 34, 25, 42, (58,1,0): 34, 25, 42, (58,2,0): 34, 26, 41, (58,3,0): 35, 27, 42, (58,4,0): 37, 26, 42, (58,5,0): 38, 27, 43, (58,6,0): 38, 27, 41, (58,7,0): 39, 28, 42, (58,8,0): 39, 27, 39, (58,9,0): 39, 27, 39, (58,10,0): 41, 27, 40, (58,11,0): 41, 27, 40, (58,12,0): 42, 29, 39, (58,13,0): 42, 29, 39, (58,14,0): 45, 29, 40, (58,15,0): 45, 29, 40, (58,16,0): 46, 28, 40, (58,17,0): 46, 28, 40, (58,18,0): 47, 29, 41, (58,19,0): 47, 29, 41, (58,20,0): 48, 30, 42, (58,21,0): 48, 30, 42, (58,22,0): 49, 31, 43, (58,23,0): 49, 31, 43, (58,24,0): 50, 32, 44, (58,25,0): 50, 32, 44, (58,26,0): 50, 32, 44, (58,27,0): 49, 31, 43, (58,28,0): 49, 31, 43, (58,29,0): 48, 30, 42, (58,30,0): 48, 30, 42, (58,31,0): 48, 30, 42, (58,32,0): 48, 31, 47, (58,33,0): 48, 31, 47, (58,34,0): 48, 31, 47, (58,35,0): 48, 31, 47, (58,36,0): 48, 31, 47, (58,37,0): 48, 31, 47, (58,38,0): 48, 31, 47, (58,39,0): 48, 31, 47, (58,40,0): 50, 33, 49, (58,41,0): 50, 33, 49, (58,42,0): 50, 33, 49, (58,43,0): 50, 33, 49, (58,44,0): 50, 33, 49, (58,45,0): 50, 33, 49, (58,46,0): 50, 33, 49, (58,47,0): 50, 33, 49, (58,48,0): 52, 31, 48, (58,49,0): 52, 31, 48, (58,50,0): 52, 31, 48, (58,51,0): 52, 31, 48, (58,52,0): 52, 31, 48, (58,53,0): 52, 31, 48, (58,54,0): 52, 31, 48, (58,55,0): 52, 31, 48, (58,56,0): 51, 30, 47, (58,57,0): 50, 29, 46, (58,58,0): 49, 28, 45, (58,59,0): 48, 27, 44, (58,60,0): 47, 26, 43, (58,61,0): 47, 26, 43, (58,62,0): 48, 27, 44, (58,63,0): 49, 28, 43, (58,64,0): 47, 29, 43, (58,65,0): 47, 29, 41, (58,66,0): 47, 29, 41, (58,67,0): 46, 28, 40, (58,68,0): 46, 28, 42, (58,69,0): 45, 27, 41, (58,70,0): 44, 28, 41, (58,71,0): 44, 28, 41, (58,72,0): 42, 28, 43, (58,73,0): 42, 28, 43, (58,74,0): 41, 28, 45, (58,75,0): 41, 28, 45, (58,76,0): 41, 28, 45, (58,77,0): 41, 28, 45, (58,78,0): 41, 28, 46, (58,79,0): 41, 28, 46, (58,80,0): 37, 26, 43, (58,81,0): 37, 26, 43, (58,82,0): 37, 26, 43, (58,83,0): 37, 26, 43, (58,84,0): 37, 26, 43, (58,85,0): 37, 26, 43, (58,86,0): 37, 26, 43, (58,87,0): 37, 26, 43, (58,88,0): 37, 26, 43, (58,89,0): 37, 26, 43, (58,90,0): 37, 26, 43, (58,91,0): 37, 26, 43, (58,92,0): 37, 26, 43, (58,93,0): 37, 26, 43, (58,94,0): 37, 26, 43, (58,95,0): 37, 26, 43, (58,96,0): 33, 24, 43, (58,97,0): 33, 24, 43, (58,98,0): 33, 24, 43, (58,99,0): 33, 24, 43, (58,100,0): 33, 24, 43, (58,101,0): 33, 24, 43, (58,102,0): 33, 24, 43, (58,103,0): 33, 24, 43, (58,104,0): 33, 24, 43, (58,105,0): 33, 24, 43, (58,106,0): 32, 23, 42, (58,107,0): 32, 23, 42, (58,108,0): 31, 22, 41, (58,109,0): 31, 22, 41, (58,110,0): 30, 21, 40, (58,111,0): 29, 22, 40, (58,112,0): 28, 20, 41, (58,113,0): 27, 22, 42, (58,114,0): 27, 22, 42, (58,115,0): 28, 23, 43, (58,116,0): 28, 23, 43, (58,117,0): 29, 24, 44, (58,118,0): 29, 24, 44, (58,119,0): 29, 24, 44, (58,120,0): 29, 24, 44, (58,121,0): 29, 24, 44, (58,122,0): 29, 24, 44, (58,123,0): 29, 24, 44, (58,124,0): 29, 24, 44, (58,125,0): 29, 24, 44, (58,126,0): 29, 24, 44, (58,127,0): 29, 24, 44, (58,128,0): 31, 22, 41, (58,129,0): 31, 22, 41, (58,130,0): 31, 22, 41, (58,131,0): 30, 21, 40, (58,132,0): 30, 21, 40, (58,133,0): 29, 20, 39, (58,134,0): 29, 20, 39, (58,135,0): 29, 20, 39, (58,136,0): 32, 23, 42, (58,137,0): 32, 23, 42, (58,138,0): 32, 23, 42, (58,139,0): 31, 22, 41, (58,140,0): 31, 22, 41, (58,141,0): 30, 21, 40, (58,142,0): 30, 21, 40, (58,143,0): 29, 20, 39, (58,144,0): 30, 21, 40, (58,145,0): 30, 21, 40, (58,146,0): 30, 21, 40, (58,147,0): 30, 21, 40, (58,148,0): 30, 21, 40, (58,149,0): 30, 21, 40, (58,150,0): 30, 21, 40, (58,151,0): 30, 21, 40, (58,152,0): 31, 22, 41, (58,153,0): 31, 22, 41, (58,154,0): 31, 22, 41, (58,155,0): 32, 23, 42, (58,156,0): 33, 24, 43, (58,157,0): 33, 24, 43, (58,158,0): 33, 24, 43, (58,159,0): 34, 25, 44, (58,160,0): 32, 25, 43, (58,161,0): 32, 25, 43, (58,162,0): 31, 24, 42, (58,163,0): 31, 24, 42, (58,164,0): 30, 23, 41, (58,165,0): 30, 23, 41, (58,166,0): 29, 22, 40, (58,167,0): 29, 22, 40, (58,168,0): 28, 21, 39, (58,169,0): 28, 21, 39, (58,170,0): 28, 21, 39, (58,171,0): 28, 21, 39, (58,172,0): 28, 21, 39, (58,173,0): 28, 21, 39, (58,174,0): 28, 21, 39, (58,175,0): 28, 21, 39, (58,176,0): 31, 23, 46, (58,177,0): 31, 23, 46, (58,178,0): 31, 23, 46, (58,179,0): 31, 23, 46, (58,180,0): 31, 23, 46, (58,181,0): 31, 23, 46, (58,182,0): 31, 23, 46, (58,183,0): 31, 23, 46, (58,184,0): 30, 22, 45, (58,185,0): 30, 22, 45, (58,186,0): 30, 22, 45, (58,187,0): 30, 22, 45, (58,188,0): 30, 22, 45, (58,189,0): 30, 22, 45, (58,190,0): 30, 22, 45, (58,191,0): 30, 22, 43, (58,192,0): 29, 24, 44, (58,193,0): 29, 25, 42, (58,194,0): 32, 25, 43, (58,195,0): 33, 26, 44, (58,196,0): 34, 27, 45, (58,197,0): 35, 28, 46, (58,198,0): 37, 28, 47, (58,199,0): 37, 28, 47, (58,200,0): 40, 28, 48, (58,201,0): 40, 28, 48, (58,202,0): 40, 28, 48, (58,203,0): 41, 29, 49, (58,204,0): 42, 29, 49, (58,205,0): 43, 30, 50, (58,206,0): 43, 30, 50, (58,207,0): 44, 29, 50, (58,208,0): 47, 30, 49, (58,209,0): 49, 30, 50, (58,210,0): 49, 30, 49, (58,211,0): 50, 31, 50, (58,212,0): 53, 32, 51, (58,213,0): 54, 33, 52, (58,214,0): 54, 33, 50, (58,215,0): 55, 34, 51, (58,216,0): 57, 34, 50, (58,217,0): 58, 35, 51, (58,218,0): 60, 36, 52, (58,219,0): 61, 37, 53, (58,220,0): 61, 37, 51, (58,221,0): 60, 36, 50, (58,222,0): 61, 34, 49, (58,223,0): 60, 33, 48, (58,224,0): 59, 35, 48, (58,225,0): 59, 35, 48, (58,226,0): 60, 36, 49, (58,227,0): 60, 36, 49, (58,228,0): 61, 37, 50, (58,229,0): 61, 37, 50, (58,230,0): 62, 38, 51, (58,231,0): 62, 38, 51, (58,232,0): 59, 35, 48, (58,233,0): 59, 35, 48, (58,234,0): 58, 34, 47, (58,235,0): 57, 33, 46, (58,236,0): 58, 34, 47, (58,237,0): 59, 35, 48, (58,238,0): 61, 37, 50, (58,239,0): 62, 38, 51, (58,240,0): 65, 37, 51, (58,241,0): 67, 37, 49, (58,242,0): 67, 37, 49, (58,243,0): 67, 37, 49, (58,244,0): 67, 37, 47, (58,245,0): 67, 37, 47, (58,246,0): 67, 37, 47, (58,247,0): 67, 37, 45, (58,248,0): 68, 38, 46, (58,249,0): 68, 38, 46, (58,250,0): 68, 39, 44, (58,251,0): 68, 39, 44, (58,252,0): 68, 39, 44, (58,253,0): 68, 39, 43, (58,254,0): 68, 39, 43, (58,255,0): 68, 39, 43, (58,256,0): 70, 39, 45, (58,257,0): 70, 39, 45, (58,258,0): 72, 40, 45, (58,259,0): 73, 41, 46, (58,260,0): 74, 42, 47, (58,261,0): 75, 43, 48, (58,262,0): 78, 43, 47, (58,263,0): 78, 43, 47, (58,264,0): 82, 46, 50, (58,265,0): 82, 46, 48, (58,266,0): 82, 46, 48, (58,267,0): 83, 47, 49, (58,268,0): 86, 47, 48, (58,269,0): 86, 47, 48, (58,270,0): 86, 47, 48, (58,271,0): 87, 48, 49, (58,272,0): 87, 46, 50, (58,273,0): 88, 46, 50, (58,274,0): 89, 47, 51, (58,275,0): 89, 47, 51, (58,276,0): 90, 48, 52, (58,277,0): 90, 48, 52, (58,278,0): 91, 49, 53, (58,279,0): 91, 49, 53, (58,280,0): 93, 51, 55, (58,281,0): 92, 50, 54, (58,282,0): 92, 50, 54, (58,283,0): 92, 50, 54, (58,284,0): 93, 51, 55, (58,285,0): 95, 53, 57, (58,286,0): 97, 55, 59, (58,287,0): 98, 56, 60, (58,288,0): 102, 56, 59, (58,289,0): 107, 58, 61, (58,290,0): 111, 62, 65, (58,291,0): 112, 64, 64, (58,292,0): 112, 64, 62, (58,293,0): 113, 65, 61, (58,294,0): 117, 68, 63, (58,295,0): 120, 71, 64, (58,296,0): 126, 76, 67, (58,297,0): 129, 79, 68, (58,298,0): 134, 82, 69, (58,299,0): 135, 83, 69, (58,300,0): 135, 84, 67, (58,301,0): 137, 86, 67, (58,302,0): 141, 90, 71, (58,303,0): 147, 93, 65, (58,304,0): 163, 105, 65, (58,305,0): 180, 117, 64, (58,306,0): 202, 132, 70, (58,307,0): 216, 141, 73, (58,308,0): 218, 141, 69, (58,309,0): 213, 139, 64, (58,310,0): 208, 140, 67, (58,311,0): 204, 142, 69, (58,312,0): 200, 141, 71, (58,313,0): 196, 139, 68, (58,314,0): 194, 135, 65, (58,315,0): 194, 136, 63, (58,316,0): 195, 136, 66, (58,317,0): 193, 136, 67, (58,318,0): 188, 134, 70, (58,319,0): 182, 132, 71, (58,320,0): 175, 126, 67, (58,321,0): 171, 126, 67, (58,322,0): 168, 123, 66, (58,323,0): 162, 122, 63, (58,324,0): 159, 120, 65, (58,325,0): 155, 120, 64, (58,326,0): 152, 119, 66, (58,327,0): 151, 120, 66, (58,328,0): 147, 117, 67, (58,329,0): 148, 118, 68, (58,330,0): 150, 119, 73, (58,331,0): 151, 120, 74, (58,332,0): 150, 118, 77, (58,333,0): 148, 116, 75, (58,334,0): 147, 113, 75, (58,335,0): 146, 112, 74, (58,336,0): 143, 109, 71, (58,337,0): 143, 109, 71, (58,338,0): 143, 109, 72, (58,339,0): 143, 109, 72, (58,340,0): 143, 109, 74, (58,341,0): 142, 108, 73, (58,342,0): 142, 107, 75, (58,343,0): 142, 107, 75, (58,344,0): 138, 103, 75, (58,345,0): 137, 102, 74, (58,346,0): 135, 99, 73, (58,347,0): 132, 96, 70, (58,348,0): 131, 95, 71, (58,349,0): 130, 94, 70, (58,350,0): 130, 94, 72, (58,351,0): 130, 94, 72, (58,352,0): 134, 100, 75, (58,353,0): 131, 99, 74, (58,354,0): 131, 99, 74, (58,355,0): 131, 99, 74, (58,356,0): 132, 100, 75, (58,357,0): 134, 102, 77, (58,358,0): 136, 104, 79, (58,359,0): 137, 105, 80, (58,360,0): 140, 108, 83, (58,361,0): 139, 107, 82, (58,362,0): 139, 107, 82, (58,363,0): 138, 106, 81, (58,364,0): 138, 106, 81, (58,365,0): 137, 105, 80, (58,366,0): 137, 105, 80, (58,367,0): 139, 105, 80, (58,368,0): 141, 103, 80, (58,369,0): 142, 104, 81, (58,370,0): 142, 104, 81, (58,371,0): 143, 105, 82, (58,372,0): 145, 104, 82, (58,373,0): 147, 105, 83, (58,374,0): 149, 104, 83, (58,375,0): 149, 104, 83, (58,376,0): 154, 107, 87, (58,377,0): 154, 107, 87, (58,378,0): 156, 108, 88, (58,379,0): 160, 109, 90, (58,380,0): 163, 110, 92, (58,381,0): 164, 111, 93, (58,382,0): 165, 112, 94, (58,383,0): 165, 114, 95, (58,384,0): 161, 114, 94, (58,385,0): 162, 115, 95, (58,386,0): 164, 116, 96, (58,387,0): 167, 116, 95, (58,388,0): 170, 118, 96, (58,389,0): 175, 119, 96, (58,390,0): 179, 119, 95, (58,391,0): 181, 119, 94, (58,392,0): 189, 125, 98, (58,393,0): 192, 127, 99, (58,394,0): 194, 129, 99, (58,395,0): 195, 129, 97, (58,396,0): 193, 127, 93, (58,397,0): 192, 126, 91, (58,398,0): 194, 128, 93, (58,399,0): 197, 132, 94, (58,400,0): 196, 128, 91, (58,401,0): 194, 129, 91, (58,402,0): 193, 129, 91, (58,403,0): 194, 130, 92, (58,404,0): 193, 131, 94, (58,405,0): 194, 132, 95, (58,406,0): 192, 133, 93, (58,407,0): 195, 133, 92, (58,408,0): 196, 133, 90, (58,409,0): 201, 134, 89, (58,410,0): 206, 135, 89, (58,411,0): 212, 138, 89, (58,412,0): 220, 142, 93, (58,413,0): 229, 147, 97, (58,414,0): 236, 150, 99, (58,415,0): 238, 153, 98, (58,416,0): 230, 150, 91, (58,417,0): 231, 151, 90, (58,418,0): 232, 150, 92, (58,419,0): 231, 149, 93, (58,420,0): 227, 146, 91, (58,421,0): 218, 141, 87, (58,422,0): 209, 136, 85, (58,423,0): 200, 134, 84, (58,424,0): 184, 126, 78, (58,425,0): 173, 122, 77, (58,426,0): 161, 116, 74, (58,427,0): 155, 113, 75, (58,428,0): 151, 111, 75, (58,429,0): 150, 111, 78, (58,430,0): 149, 108, 78, (58,431,0): 148, 107, 77, (58,432,0): 145, 102, 70, (58,433,0): 144, 101, 67, (58,434,0): 143, 102, 70, (58,435,0): 145, 107, 71, (58,436,0): 146, 110, 76, (58,437,0): 146, 112, 75, (58,438,0): 144, 111, 76, (58,439,0): 140, 110, 72, (58,440,0): 131, 101, 65, (58,441,0): 130, 100, 62, (58,442,0): 133, 100, 65, (58,443,0): 136, 104, 66, (58,444,0): 139, 105, 70, (58,445,0): 139, 105, 68, (58,446,0): 137, 101, 67, (58,447,0): 133, 98, 66, (58,448,0): 131, 97, 69, (58,449,0): 131, 97, 70, (58,450,0): 131, 97, 72, (58,451,0): 131, 97, 72, (58,452,0): 127, 95, 72, (58,453,0): 126, 94, 71, (58,454,0): 124, 92, 71, (58,455,0): 121, 90, 69, (58,456,0): 114, 83, 63, (58,457,0): 112, 81, 63, (58,458,0): 107, 78, 62, (58,459,0): 103, 74, 58, (58,460,0): 100, 71, 57, (58,461,0): 98, 69, 55, (58,462,0): 96, 68, 56, (58,463,0): 94, 68, 55, (58,464,0): 92, 65, 56, (58,465,0): 90, 66, 56, (58,466,0): 90, 66, 56, (58,467,0): 91, 67, 57, (58,468,0): 92, 70, 59, (58,469,0): 94, 72, 61, (58,470,0): 96, 74, 63, (58,471,0): 98, 76, 65, (58,472,0): 97, 77, 66, (58,473,0): 97, 77, 66, (58,474,0): 95, 77, 65, (58,475,0): 95, 77, 65, (58,476,0): 94, 76, 64, (58,477,0): 94, 76, 64, (58,478,0): 92, 76, 63, (58,479,0): 93, 75, 63, (58,480,0): 98, 75, 67, (58,481,0): 98, 73, 66, (58,482,0): 98, 73, 66, (58,483,0): 97, 72, 65, (58,484,0): 97, 72, 65, (58,485,0): 96, 71, 64, (58,486,0): 96, 71, 64, (58,487,0): 96, 71, 64, (58,488,0): 97, 72, 65, (58,489,0): 96, 71, 64, (58,490,0): 96, 71, 64, (58,491,0): 96, 71, 64, (58,492,0): 95, 70, 63, (58,493,0): 94, 69, 62, (58,494,0): 94, 69, 62, (58,495,0): 93, 70, 62, (58,496,0): 89, 66, 58, (58,497,0): 87, 67, 56, (58,498,0): 87, 67, 58, (58,499,0): 87, 67, 56, (58,500,0): 89, 66, 58, (58,501,0): 89, 67, 56, (58,502,0): 90, 65, 58, (58,503,0): 90, 66, 56, (58,504,0): 93, 68, 61, (58,505,0): 94, 70, 60, (58,506,0): 98, 71, 64, (58,507,0): 100, 73, 64, (58,508,0): 102, 73, 67, (58,509,0): 101, 72, 64, (58,510,0): 99, 70, 64, (58,511,0): 98, 69, 61, (58,512,0): 101, 71, 61, (58,513,0): 100, 70, 59, (58,514,0): 100, 70, 59, (58,515,0): 99, 69, 58, (58,516,0): 100, 70, 59, (58,517,0): 101, 71, 60, (58,518,0): 103, 73, 62, (58,519,0): 104, 74, 63, (58,520,0): 104, 74, 63, (58,521,0): 104, 74, 63, (58,522,0): 105, 75, 64, (58,523,0): 105, 75, 64, (58,524,0): 106, 76, 65, (58,525,0): 106, 76, 65, (58,526,0): 107, 77, 66, (58,527,0): 106, 78, 66, (58,528,0): 105, 77, 63, (58,529,0): 104, 78, 63, (58,530,0): 104, 78, 65, (58,531,0): 101, 78, 64, (58,532,0): 101, 77, 65, (58,533,0): 99, 77, 66, (58,534,0): 99, 76, 68, (58,535,0): 100, 75, 68, (58,536,0): 98, 73, 66, (58,537,0): 101, 74, 65, (58,538,0): 102, 73, 65, (58,539,0): 103, 73, 63, (58,540,0): 105, 71, 61, (58,541,0): 106, 70, 58, (58,542,0): 104, 68, 56, (58,543,0): 107, 65, 53, (58,544,0): 109, 55, 45, (58,545,0): 108, 53, 46, (58,546,0): 97, 57, 47, (58,547,0): 87, 59, 48, (58,548,0): 81, 61, 54, (58,549,0): 80, 62, 58, (58,550,0): 85, 60, 63, (58,551,0): 88, 58, 66, (58,552,0): 89, 53, 65, (58,553,0): 89, 51, 64, (58,554,0): 87, 51, 63, (58,555,0): 83, 51, 62, (58,556,0): 82, 52, 60, (58,557,0): 80, 53, 58, (58,558,0): 81, 54, 59, (58,559,0): 81, 56, 60, (58,560,0): 76, 54, 57, (58,561,0): 75, 55, 57, (58,562,0): 75, 55, 56, (58,563,0): 75, 55, 56, (58,564,0): 75, 55, 56, (58,565,0): 76, 56, 57, (58,566,0): 76, 56, 55, (58,567,0): 76, 56, 55, (58,568,0): 80, 60, 59, (58,569,0): 80, 61, 57, (58,570,0): 81, 62, 58, (58,571,0): 81, 62, 58, (58,572,0): 82, 63, 57, (58,573,0): 82, 63, 57, (58,574,0): 83, 64, 58, (58,575,0): 83, 64, 58, (58,576,0): 82, 63, 59, (58,577,0): 81, 62, 58, (58,578,0): 81, 62, 58, (58,579,0): 79, 60, 56, (58,580,0): 78, 58, 57, (58,581,0): 77, 57, 56, (58,582,0): 77, 57, 56, (58,583,0): 76, 56, 55, (58,584,0): 74, 54, 55, (58,585,0): 73, 53, 54, (58,586,0): 70, 50, 52, (58,587,0): 68, 48, 50, (58,588,0): 66, 46, 48, (58,589,0): 65, 45, 47, (58,590,0): 65, 44, 49, (58,591,0): 65, 44, 49, (58,592,0): 61, 41, 43, (58,593,0): 61, 41, 43, (58,594,0): 60, 40, 42, (58,595,0): 58, 38, 40, (58,596,0): 57, 37, 39, (58,597,0): 55, 35, 37, (58,598,0): 54, 34, 36, (58,599,0): 53, 33, 35, (59,0,0): 34, 25, 42, (59,1,0): 35, 26, 43, (59,2,0): 35, 27, 42, (59,3,0): 35, 27, 42, (59,4,0): 38, 27, 43, (59,5,0): 39, 28, 44, (59,6,0): 39, 28, 42, (59,7,0): 39, 28, 42, (59,8,0): 39, 27, 39, (59,9,0): 39, 27, 39, (59,10,0): 41, 27, 40, (59,11,0): 41, 27, 40, (59,12,0): 42, 29, 39, (59,13,0): 42, 29, 39, (59,14,0): 45, 29, 40, (59,15,0): 45, 29, 40, (59,16,0): 46, 28, 40, (59,17,0): 46, 28, 40, (59,18,0): 47, 29, 41, (59,19,0): 47, 29, 41, (59,20,0): 48, 30, 42, (59,21,0): 48, 30, 42, (59,22,0): 49, 31, 43, (59,23,0): 49, 31, 43, (59,24,0): 50, 32, 44, (59,25,0): 50, 32, 44, (59,26,0): 50, 32, 44, (59,27,0): 49, 31, 43, (59,28,0): 49, 31, 43, (59,29,0): 48, 30, 42, (59,30,0): 48, 30, 42, (59,31,0): 48, 30, 42, (59,32,0): 48, 31, 47, (59,33,0): 48, 31, 47, (59,34,0): 48, 31, 47, (59,35,0): 48, 31, 47, (59,36,0): 48, 31, 47, (59,37,0): 48, 31, 47, (59,38,0): 48, 31, 47, (59,39,0): 48, 31, 47, (59,40,0): 50, 33, 49, (59,41,0): 50, 33, 49, (59,42,0): 50, 33, 49, (59,43,0): 50, 33, 49, (59,44,0): 50, 33, 49, (59,45,0): 50, 33, 49, (59,46,0): 50, 33, 49, (59,47,0): 51, 33, 49, (59,48,0): 52, 31, 48, (59,49,0): 52, 31, 48, (59,50,0): 52, 31, 48, (59,51,0): 52, 31, 48, (59,52,0): 52, 31, 48, (59,53,0): 52, 31, 48, (59,54,0): 52, 31, 48, (59,55,0): 52, 31, 48, (59,56,0): 52, 31, 48, (59,57,0): 51, 30, 47, (59,58,0): 49, 28, 45, (59,59,0): 48, 27, 44, (59,60,0): 48, 27, 44, (59,61,0): 48, 27, 44, (59,62,0): 49, 28, 45, (59,63,0): 49, 28, 43, (59,64,0): 47, 29, 43, (59,65,0): 47, 29, 41, (59,66,0): 47, 29, 41, (59,67,0): 46, 28, 40, (59,68,0): 46, 28, 42, (59,69,0): 45, 27, 41, (59,70,0): 44, 28, 41, (59,71,0): 44, 28, 41, (59,72,0): 43, 29, 44, (59,73,0): 43, 29, 44, (59,74,0): 42, 29, 46, (59,75,0): 42, 29, 46, (59,76,0): 42, 29, 46, (59,77,0): 42, 29, 46, (59,78,0): 42, 29, 47, (59,79,0): 42, 29, 47, (59,80,0): 37, 26, 43, (59,81,0): 37, 26, 43, (59,82,0): 37, 26, 43, (59,83,0): 37, 26, 43, (59,84,0): 37, 26, 43, (59,85,0): 37, 26, 43, (59,86,0): 37, 26, 43, (59,87,0): 37, 26, 43, (59,88,0): 37, 26, 43, (59,89,0): 37, 26, 43, (59,90,0): 37, 26, 43, (59,91,0): 37, 26, 43, (59,92,0): 37, 26, 43, (59,93,0): 37, 26, 43, (59,94,0): 37, 26, 43, (59,95,0): 37, 26, 43, (59,96,0): 33, 24, 43, (59,97,0): 33, 24, 43, (59,98,0): 33, 24, 43, (59,99,0): 33, 24, 43, (59,100,0): 33, 24, 43, (59,101,0): 33, 24, 43, (59,102,0): 33, 24, 43, (59,103,0): 33, 24, 43, (59,104,0): 33, 24, 43, (59,105,0): 33, 24, 43, (59,106,0): 32, 23, 42, (59,107,0): 32, 23, 42, (59,108,0): 31, 22, 41, (59,109,0): 31, 22, 41, (59,110,0): 30, 21, 40, (59,111,0): 29, 22, 40, (59,112,0): 26, 21, 41, (59,113,0): 26, 21, 41, (59,114,0): 26, 21, 41, (59,115,0): 27, 22, 42, (59,116,0): 28, 23, 43, (59,117,0): 28, 23, 43, (59,118,0): 28, 23, 43, (59,119,0): 29, 24, 44, (59,120,0): 29, 24, 44, (59,121,0): 29, 24, 44, (59,122,0): 29, 24, 44, (59,123,0): 29, 24, 44, (59,124,0): 29, 24, 44, (59,125,0): 29, 24, 44, (59,126,0): 29, 24, 44, (59,127,0): 29, 24, 44, (59,128,0): 30, 23, 41, (59,129,0): 31, 22, 41, (59,130,0): 31, 22, 41, (59,131,0): 30, 21, 40, (59,132,0): 30, 21, 40, (59,133,0): 29, 20, 39, (59,134,0): 29, 20, 39, (59,135,0): 29, 20, 39, (59,136,0): 32, 23, 42, (59,137,0): 31, 22, 41, (59,138,0): 31, 22, 41, (59,139,0): 31, 22, 41, (59,140,0): 30, 21, 40, (59,141,0): 29, 20, 39, (59,142,0): 29, 20, 39, (59,143,0): 29, 20, 39, (59,144,0): 29, 20, 39, (59,145,0): 29, 20, 39, (59,146,0): 29, 20, 39, (59,147,0): 29, 20, 39, (59,148,0): 29, 20, 39, (59,149,0): 29, 20, 39, (59,150,0): 29, 20, 39, (59,151,0): 29, 20, 39, (59,152,0): 30, 21, 40, (59,153,0): 31, 22, 41, (59,154,0): 31, 22, 41, (59,155,0): 32, 23, 42, (59,156,0): 32, 23, 42, (59,157,0): 33, 24, 43, (59,158,0): 33, 24, 43, (59,159,0): 33, 24, 43, (59,160,0): 32, 25, 43, (59,161,0): 32, 25, 43, (59,162,0): 31, 24, 42, (59,163,0): 31, 24, 42, (59,164,0): 30, 23, 41, (59,165,0): 30, 23, 41, (59,166,0): 29, 22, 40, (59,167,0): 29, 22, 40, (59,168,0): 28, 21, 39, (59,169,0): 28, 21, 39, (59,170,0): 28, 21, 39, (59,171,0): 28, 21, 39, (59,172,0): 28, 21, 39, (59,173,0): 28, 21, 39, (59,174,0): 28, 21, 39, (59,175,0): 28, 21, 39, (59,176,0): 31, 23, 46, (59,177,0): 31, 23, 46, (59,178,0): 31, 23, 46, (59,179,0): 31, 23, 46, (59,180,0): 31, 23, 46, (59,181,0): 31, 23, 46, (59,182,0): 31, 23, 46, (59,183,0): 31, 23, 46, (59,184,0): 30, 22, 45, (59,185,0): 30, 22, 45, (59,186,0): 30, 22, 45, (59,187,0): 30, 22, 45, (59,188,0): 30, 22, 45, (59,189,0): 30, 22, 45, (59,190,0): 30, 22, 45, (59,191,0): 30, 22, 43, (59,192,0): 29, 24, 44, (59,193,0): 29, 25, 42, (59,194,0): 32, 25, 43, (59,195,0): 33, 26, 44, (59,196,0): 34, 27, 45, (59,197,0): 35, 28, 46, (59,198,0): 37, 28, 47, (59,199,0): 37, 28, 47, (59,200,0): 40, 28, 48, (59,201,0): 40, 28, 48, (59,202,0): 40, 28, 48, (59,203,0): 41, 29, 49, (59,204,0): 42, 29, 49, (59,205,0): 43, 30, 50, (59,206,0): 43, 30, 50, (59,207,0): 44, 29, 50, (59,208,0): 46, 29, 48, (59,209,0): 48, 29, 49, (59,210,0): 49, 30, 49, (59,211,0): 50, 31, 50, (59,212,0): 53, 32, 51, (59,213,0): 54, 33, 52, (59,214,0): 55, 34, 51, (59,215,0): 56, 35, 52, (59,216,0): 58, 35, 51, (59,217,0): 59, 36, 52, (59,218,0): 61, 37, 53, (59,219,0): 62, 38, 54, (59,220,0): 62, 38, 52, (59,221,0): 61, 37, 51, (59,222,0): 62, 35, 50, (59,223,0): 61, 34, 49, (59,224,0): 59, 35, 48, (59,225,0): 59, 35, 48, (59,226,0): 60, 36, 49, (59,227,0): 60, 36, 49, (59,228,0): 61, 37, 50, (59,229,0): 61, 37, 50, (59,230,0): 62, 38, 51, (59,231,0): 62, 38, 51, (59,232,0): 60, 36, 49, (59,233,0): 59, 35, 48, (59,234,0): 58, 34, 47, (59,235,0): 58, 34, 47, (59,236,0): 58, 34, 47, (59,237,0): 59, 35, 48, (59,238,0): 60, 36, 49, (59,239,0): 63, 37, 50, (59,240,0): 65, 37, 49, (59,241,0): 67, 37, 49, (59,242,0): 67, 37, 49, (59,243,0): 67, 37, 47, (59,244,0): 67, 37, 47, (59,245,0): 67, 37, 47, (59,246,0): 67, 37, 45, (59,247,0): 67, 37, 45, (59,248,0): 68, 38, 46, (59,249,0): 68, 39, 44, (59,250,0): 68, 39, 44, (59,251,0): 68, 39, 44, (59,252,0): 68, 39, 43, (59,253,0): 68, 39, 43, (59,254,0): 68, 39, 43, (59,255,0): 68, 39, 43, (59,256,0): 70, 39, 45, (59,257,0): 70, 39, 45, (59,258,0): 72, 40, 45, (59,259,0): 73, 41, 46, (59,260,0): 74, 42, 47, (59,261,0): 75, 43, 48, (59,262,0): 78, 43, 47, (59,263,0): 78, 43, 47, (59,264,0): 81, 45, 47, (59,265,0): 82, 46, 48, (59,266,0): 82, 46, 48, (59,267,0): 83, 47, 49, (59,268,0): 85, 46, 47, (59,269,0): 86, 47, 48, (59,270,0): 86, 47, 48, (59,271,0): 87, 47, 48, (59,272,0): 88, 46, 50, (59,273,0): 88, 46, 50, (59,274,0): 89, 47, 51, (59,275,0): 89, 47, 51, (59,276,0): 90, 48, 52, (59,277,0): 90, 48, 52, (59,278,0): 91, 49, 53, (59,279,0): 91, 49, 53, (59,280,0): 93, 51, 55, (59,281,0): 92, 50, 54, (59,282,0): 92, 50, 54, (59,283,0): 92, 50, 54, (59,284,0): 93, 51, 55, (59,285,0): 95, 53, 57, (59,286,0): 97, 55, 59, (59,287,0): 100, 55, 58, (59,288,0): 102, 56, 58, (59,289,0): 107, 59, 59, (59,290,0): 111, 63, 63, (59,291,0): 112, 64, 62, (59,292,0): 112, 64, 60, (59,293,0): 114, 67, 61, (59,294,0): 118, 69, 62, (59,295,0): 121, 73, 63, (59,296,0): 128, 78, 67, (59,297,0): 131, 82, 68, (59,298,0): 137, 85, 71, (59,299,0): 139, 88, 71, (59,300,0): 139, 88, 69, (59,301,0): 140, 89, 68, (59,302,0): 142, 91, 70, (59,303,0): 148, 95, 64, (59,304,0): 167, 110, 67, (59,305,0): 185, 122, 68, (59,306,0): 206, 137, 72, (59,307,0): 219, 145, 74, (59,308,0): 223, 145, 71, (59,309,0): 218, 142, 66, (59,310,0): 212, 143, 68, (59,311,0): 208, 144, 72, (59,312,0): 200, 142, 69, (59,313,0): 197, 140, 69, (59,314,0): 196, 138, 65, (59,315,0): 195, 137, 64, (59,316,0): 196, 137, 67, (59,317,0): 193, 136, 67, (59,318,0): 187, 133, 69, (59,319,0): 180, 130, 69, (59,320,0): 175, 126, 67, (59,321,0): 171, 126, 67, (59,322,0): 166, 124, 66, (59,323,0): 162, 122, 63, (59,324,0): 158, 119, 64, (59,325,0): 153, 118, 62, (59,326,0): 151, 118, 65, (59,327,0): 149, 118, 64, (59,328,0): 146, 116, 66, (59,329,0): 148, 118, 68, (59,330,0): 150, 119, 73, (59,331,0): 152, 121, 75, (59,332,0): 152, 120, 79, (59,333,0): 150, 118, 77, (59,334,0): 148, 114, 76, (59,335,0): 146, 112, 74, (59,336,0): 143, 109, 71, (59,337,0): 143, 109, 71, (59,338,0): 143, 109, 72, (59,339,0): 142, 108, 71, (59,340,0): 142, 108, 73, (59,341,0): 142, 108, 73, (59,342,0): 142, 107, 75, (59,343,0): 142, 107, 75, (59,344,0): 137, 102, 74, (59,345,0): 135, 100, 72, (59,346,0): 133, 97, 71, (59,347,0): 132, 96, 70, (59,348,0): 130, 94, 70, (59,349,0): 130, 94, 70, (59,350,0): 130, 94, 72, (59,351,0): 129, 94, 72, (59,352,0): 133, 99, 74, (59,353,0): 130, 98, 73, (59,354,0): 130, 98, 73, (59,355,0): 130, 98, 73, (59,356,0): 131, 99, 74, (59,357,0): 133, 101, 76, (59,358,0): 135, 103, 78, (59,359,0): 136, 104, 79, (59,360,0): 139, 107, 82, (59,361,0): 139, 107, 82, (59,362,0): 139, 107, 82, (59,363,0): 138, 106, 81, (59,364,0): 138, 106, 81, (59,365,0): 137, 105, 80, (59,366,0): 137, 105, 80, (59,367,0): 139, 105, 80, (59,368,0): 141, 105, 81, (59,369,0): 142, 104, 81, (59,370,0): 142, 104, 81, (59,371,0): 143, 105, 82, (59,372,0): 145, 104, 82, (59,373,0): 146, 105, 83, (59,374,0): 147, 105, 83, (59,375,0): 150, 105, 84, (59,376,0): 155, 108, 88, (59,377,0): 155, 108, 88, (59,378,0): 159, 108, 89, (59,379,0): 161, 110, 91, (59,380,0): 163, 110, 92, (59,381,0): 164, 111, 93, (59,382,0): 165, 112, 94, (59,383,0): 164, 113, 94, (59,384,0): 161, 114, 94, (59,385,0): 161, 115, 92, (59,386,0): 164, 116, 94, (59,387,0): 168, 118, 95, (59,388,0): 173, 119, 95, (59,389,0): 176, 120, 95, (59,390,0): 180, 120, 96, (59,391,0): 184, 120, 93, (59,392,0): 190, 125, 97, (59,393,0): 192, 127, 97, (59,394,0): 196, 130, 98, (59,395,0): 195, 129, 95, (59,396,0): 193, 127, 92, (59,397,0): 193, 127, 92, (59,398,0): 195, 130, 92, (59,399,0): 197, 132, 94, (59,400,0): 196, 128, 91, (59,401,0): 195, 130, 92, (59,402,0): 195, 130, 92, (59,403,0): 194, 130, 92, (59,404,0): 194, 132, 95, (59,405,0): 195, 133, 96, (59,406,0): 193, 134, 94, (59,407,0): 195, 133, 92, (59,408,0): 198, 135, 92, (59,409,0): 203, 136, 91, (59,410,0): 210, 139, 93, (59,411,0): 219, 143, 94, (59,412,0): 228, 148, 97, (59,413,0): 234, 151, 99, (59,414,0): 241, 154, 101, (59,415,0): 241, 156, 101, (59,416,0): 229, 150, 91, (59,417,0): 228, 152, 92, (59,418,0): 230, 151, 94, (59,419,0): 229, 150, 94, (59,420,0): 223, 146, 92, (59,421,0): 216, 140, 90, (59,422,0): 206, 136, 87, (59,423,0): 197, 135, 88, (59,424,0): 176, 122, 76, (59,425,0): 167, 118, 75, (59,426,0): 157, 114, 72, (59,427,0): 151, 112, 73, (59,428,0): 151, 111, 75, (59,429,0): 152, 114, 78, (59,430,0): 153, 112, 80, (59,431,0): 155, 112, 80, (59,432,0): 149, 104, 71, (59,433,0): 150, 106, 71, (59,434,0): 150, 107, 73, (59,435,0): 150, 110, 74, (59,436,0): 151, 113, 77, (59,437,0): 148, 114, 76, (59,438,0): 148, 114, 77, (59,439,0): 146, 114, 75, (59,440,0): 136, 106, 68, (59,441,0): 135, 106, 66, (59,442,0): 136, 104, 66, (59,443,0): 139, 107, 68, (59,444,0): 142, 108, 71, (59,445,0): 142, 108, 70, (59,446,0): 140, 104, 68, (59,447,0): 137, 101, 65, (59,448,0): 134, 99, 67, (59,449,0): 133, 100, 69, (59,450,0): 132, 98, 70, (59,451,0): 132, 98, 70, (59,452,0): 129, 98, 70, (59,453,0): 128, 97, 69, (59,454,0): 127, 95, 70, (59,455,0): 126, 94, 71, (59,456,0): 121, 90, 69, (59,457,0): 119, 88, 67, (59,458,0): 114, 86, 65, (59,459,0): 110, 82, 61, (59,460,0): 106, 77, 59, (59,461,0): 103, 74, 56, (59,462,0): 99, 72, 55, (59,463,0): 98, 70, 56, (59,464,0): 95, 68, 57, (59,465,0): 92, 68, 58, (59,466,0): 93, 69, 59, (59,467,0): 93, 69, 59, (59,468,0): 94, 72, 61, (59,469,0): 96, 74, 63, (59,470,0): 98, 76, 65, (59,471,0): 100, 78, 67, (59,472,0): 99, 79, 68, (59,473,0): 98, 78, 67, (59,474,0): 97, 79, 67, (59,475,0): 96, 78, 66, (59,476,0): 96, 78, 66, (59,477,0): 95, 77, 65, (59,478,0): 94, 78, 65, (59,479,0): 95, 77, 65, (59,480,0): 100, 77, 69, (59,481,0): 101, 76, 69, (59,482,0): 100, 75, 68, (59,483,0): 99, 74, 67, (59,484,0): 98, 73, 66, (59,485,0): 97, 72, 65, (59,486,0): 97, 72, 65, (59,487,0): 96, 71, 64, (59,488,0): 95, 70, 63, (59,489,0): 95, 70, 63, (59,490,0): 95, 70, 63, (59,491,0): 94, 69, 62, (59,492,0): 94, 69, 62, (59,493,0): 93, 68, 61, (59,494,0): 93, 68, 61, (59,495,0): 92, 69, 61, (59,496,0): 87, 65, 54, (59,497,0): 86, 66, 55, (59,498,0): 86, 66, 55, (59,499,0): 87, 67, 56, (59,500,0): 90, 68, 57, (59,501,0): 90, 68, 57, (59,502,0): 92, 68, 58, (59,503,0): 92, 68, 58, (59,504,0): 95, 71, 61, (59,505,0): 97, 73, 63, (59,506,0): 102, 75, 66, (59,507,0): 105, 78, 69, (59,508,0): 106, 77, 69, (59,509,0): 105, 76, 68, (59,510,0): 102, 73, 65, (59,511,0): 100, 72, 61, (59,512,0): 104, 74, 63, (59,513,0): 103, 73, 62, (59,514,0): 102, 72, 61, (59,515,0): 102, 72, 61, (59,516,0): 103, 73, 62, (59,517,0): 104, 74, 63, (59,518,0): 105, 75, 64, (59,519,0): 106, 76, 65, (59,520,0): 106, 76, 65, (59,521,0): 106, 76, 65, (59,522,0): 106, 76, 65, (59,523,0): 107, 77, 66, (59,524,0): 107, 77, 66, (59,525,0): 108, 78, 67, (59,526,0): 108, 78, 67, (59,527,0): 109, 79, 68, (59,528,0): 106, 78, 64, (59,529,0): 106, 78, 64, (59,530,0): 105, 79, 66, (59,531,0): 104, 77, 66, (59,532,0): 102, 78, 68, (59,533,0): 100, 78, 67, (59,534,0): 100, 77, 69, (59,535,0): 100, 77, 69, (59,536,0): 100, 75, 68, (59,537,0): 100, 75, 68, (59,538,0): 102, 75, 68, (59,539,0): 103, 74, 66, (59,540,0): 102, 72, 62, (59,541,0): 102, 70, 59, (59,542,0): 101, 67, 57, (59,543,0): 103, 65, 54, (59,544,0): 105, 62, 55, (59,545,0): 102, 62, 54, (59,546,0): 95, 65, 57, (59,547,0): 90, 65, 58, (59,548,0): 84, 65, 59, (59,549,0): 83, 63, 62, (59,550,0): 85, 59, 62, (59,551,0): 88, 57, 63, (59,552,0): 89, 51, 62, (59,553,0): 88, 50, 63, (59,554,0): 84, 51, 62, (59,555,0): 81, 51, 61, (59,556,0): 80, 53, 60, (59,557,0): 80, 55, 61, (59,558,0): 82, 55, 60, (59,559,0): 82, 57, 61, (59,560,0): 77, 55, 58, (59,561,0): 76, 56, 58, (59,562,0): 76, 56, 57, (59,563,0): 76, 56, 57, (59,564,0): 76, 56, 57, (59,565,0): 75, 55, 56, (59,566,0): 75, 55, 54, (59,567,0): 75, 55, 54, (59,568,0): 80, 61, 57, (59,569,0): 80, 61, 57, (59,570,0): 81, 62, 58, (59,571,0): 81, 62, 58, (59,572,0): 82, 63, 57, (59,573,0): 82, 63, 57, (59,574,0): 83, 64, 58, (59,575,0): 83, 64, 58, (59,576,0): 83, 64, 60, (59,577,0): 82, 63, 59, (59,578,0): 82, 63, 59, (59,579,0): 80, 61, 57, (59,580,0): 79, 59, 58, (59,581,0): 78, 58, 57, (59,582,0): 78, 58, 57, (59,583,0): 77, 57, 56, (59,584,0): 76, 56, 57, (59,585,0): 74, 54, 55, (59,586,0): 72, 52, 54, (59,587,0): 69, 49, 51, (59,588,0): 67, 47, 49, (59,589,0): 66, 46, 48, (59,590,0): 66, 45, 50, (59,591,0): 66, 45, 50, (59,592,0): 61, 41, 43, (59,593,0): 60, 40, 42, (59,594,0): 59, 39, 41, (59,595,0): 58, 38, 40, (59,596,0): 57, 37, 39, (59,597,0): 56, 36, 38, (59,598,0): 55, 35, 37, (59,599,0): 54, 34, 36, (60,0,0): 35, 26, 43, (60,1,0): 35, 26, 43, (60,2,0): 35, 27, 42, (60,3,0): 36, 28, 43, (60,4,0): 39, 28, 44, (60,5,0): 39, 28, 44, (60,6,0): 39, 28, 42, (60,7,0): 40, 29, 43, (60,8,0): 39, 27, 39, (60,9,0): 39, 27, 39, (60,10,0): 41, 27, 40, (60,11,0): 41, 27, 40, (60,12,0): 42, 29, 39, (60,13,0): 42, 29, 39, (60,14,0): 45, 29, 40, (60,15,0): 45, 29, 40, (60,16,0): 46, 28, 40, (60,17,0): 46, 28, 40, (60,18,0): 47, 29, 41, (60,19,0): 47, 29, 41, (60,20,0): 48, 30, 42, (60,21,0): 48, 30, 42, (60,22,0): 49, 31, 43, (60,23,0): 49, 31, 43, (60,24,0): 50, 32, 44, (60,25,0): 50, 32, 44, (60,26,0): 50, 32, 44, (60,27,0): 49, 31, 43, (60,28,0): 49, 31, 43, (60,29,0): 48, 30, 42, (60,30,0): 48, 30, 42, (60,31,0): 48, 30, 42, (60,32,0): 48, 31, 47, (60,33,0): 48, 31, 47, (60,34,0): 48, 31, 47, (60,35,0): 48, 31, 47, (60,36,0): 48, 31, 47, (60,37,0): 48, 31, 47, (60,38,0): 48, 31, 47, (60,39,0): 48, 31, 47, (60,40,0): 50, 33, 49, (60,41,0): 50, 33, 49, (60,42,0): 50, 33, 49, (60,43,0): 50, 33, 49, (60,44,0): 50, 33, 49, (60,45,0): 50, 33, 49, (60,46,0): 50, 33, 49, (60,47,0): 51, 33, 49, (60,48,0): 53, 32, 49, (60,49,0): 54, 31, 49, (60,50,0): 54, 31, 49, (60,51,0): 54, 31, 49, (60,52,0): 54, 31, 49, (60,53,0): 54, 31, 49, (60,54,0): 54, 31, 49, (60,55,0): 54, 31, 49, (60,56,0): 53, 30, 48, (60,57,0): 52, 29, 47, (60,58,0): 51, 28, 46, (60,59,0): 50, 27, 45, (60,60,0): 49, 26, 44, (60,61,0): 49, 26, 44, (60,62,0): 50, 27, 45, (60,63,0): 50, 29, 44, (60,64,0): 47, 29, 43, (60,65,0): 47, 29, 41, (60,66,0): 47, 29, 41, (60,67,0): 46, 28, 40, (60,68,0): 46, 28, 42, (60,69,0): 45, 27, 41, (60,70,0): 44, 28, 41, (60,71,0): 44, 28, 41, (60,72,0): 43, 29, 44, (60,73,0): 43, 29, 44, (60,74,0): 42, 29, 46, (60,75,0): 42, 29, 46, (60,76,0): 42, 29, 46, (60,77,0): 42, 29, 46, (60,78,0): 42, 29, 47, (60,79,0): 42, 29, 47, (60,80,0): 38, 25, 43, (60,81,0): 38, 25, 43, (60,82,0): 38, 25, 43, (60,83,0): 38, 25, 43, (60,84,0): 38, 25, 43, (60,85,0): 38, 25, 43, (60,86,0): 38, 25, 43, (60,87,0): 38, 25, 43, (60,88,0): 38, 25, 43, (60,89,0): 38, 25, 43, (60,90,0): 38, 25, 43, (60,91,0): 38, 25, 43, (60,92,0): 38, 25, 43, (60,93,0): 38, 25, 43, (60,94,0): 38, 25, 43, (60,95,0): 37, 26, 43, (60,96,0): 33, 24, 43, (60,97,0): 33, 24, 43, (60,98,0): 33, 24, 43, (60,99,0): 33, 24, 43, (60,100,0): 33, 24, 43, (60,101,0): 33, 24, 43, (60,102,0): 33, 24, 43, (60,103,0): 33, 24, 43, (60,104,0): 33, 24, 43, (60,105,0): 33, 24, 43, (60,106,0): 32, 23, 42, (60,107,0): 32, 23, 42, (60,108,0): 31, 22, 41, (60,109,0): 31, 22, 41, (60,110,0): 30, 21, 40, (60,111,0): 29, 22, 40, (60,112,0): 25, 20, 40, (60,113,0): 25, 22, 43, (60,114,0): 25, 22, 43, (60,115,0): 25, 22, 43, (60,116,0): 26, 23, 44, (60,117,0): 27, 24, 45, (60,118,0): 27, 24, 45, (60,119,0): 27, 24, 45, (60,120,0): 27, 24, 45, (60,121,0): 27, 24, 45, (60,122,0): 27, 24, 45, (60,123,0): 27, 24, 45, (60,124,0): 27, 24, 45, (60,125,0): 27, 24, 45, (60,126,0): 27, 24, 45, (60,127,0): 28, 23, 43, (60,128,0): 30, 23, 41, (60,129,0): 31, 22, 41, (60,130,0): 31, 22, 41, (60,131,0): 30, 21, 40, (60,132,0): 30, 21, 40, (60,133,0): 29, 20, 39, (60,134,0): 29, 20, 39, (60,135,0): 29, 20, 39, (60,136,0): 31, 22, 41, (60,137,0): 31, 22, 41, (60,138,0): 31, 22, 41, (60,139,0): 30, 21, 40, (60,140,0): 29, 20, 39, (60,141,0): 29, 20, 39, (60,142,0): 29, 20, 39, (60,143,0): 28, 19, 38, (60,144,0): 28, 19, 38, (60,145,0): 28, 19, 38, (60,146,0): 28, 19, 38, (60,147,0): 28, 19, 38, (60,148,0): 28, 19, 38, (60,149,0): 28, 19, 38, (60,150,0): 28, 19, 38, (60,151,0): 28, 19, 38, (60,152,0): 30, 21, 40, (60,153,0): 30, 21, 40, (60,154,0): 30, 21, 40, (60,155,0): 31, 22, 41, (60,156,0): 31, 22, 41, (60,157,0): 32, 23, 42, (60,158,0): 32, 23, 42, (60,159,0): 33, 24, 43, (60,160,0): 32, 25, 43, (60,161,0): 32, 25, 43, (60,162,0): 31, 24, 42, (60,163,0): 31, 24, 42, (60,164,0): 30, 23, 41, (60,165,0): 30, 23, 41, (60,166,0): 29, 22, 40, (60,167,0): 29, 22, 40, (60,168,0): 28, 21, 39, (60,169,0): 28, 21, 39, (60,170,0): 28, 21, 39, (60,171,0): 28, 21, 39, (60,172,0): 28, 21, 39, (60,173,0): 28, 21, 39, (60,174,0): 28, 21, 39, (60,175,0): 28, 21, 39, (60,176,0): 31, 23, 46, (60,177,0): 31, 23, 46, (60,178,0): 31, 23, 46, (60,179,0): 31, 23, 46, (60,180,0): 31, 23, 46, (60,181,0): 31, 23, 46, (60,182,0): 31, 23, 46, (60,183,0): 31, 23, 46, (60,184,0): 31, 23, 46, (60,185,0): 31, 23, 46, (60,186,0): 31, 23, 46, (60,187,0): 31, 23, 46, (60,188,0): 31, 23, 46, (60,189,0): 31, 23, 46, (60,190,0): 31, 23, 46, (60,191,0): 31, 23, 44, (60,192,0): 29, 24, 44, (60,193,0): 29, 25, 42, (60,194,0): 32, 25, 43, (60,195,0): 33, 26, 44, (60,196,0): 34, 27, 45, (60,197,0): 35, 28, 46, (60,198,0): 37, 28, 47, (60,199,0): 37, 28, 47, (60,200,0): 40, 28, 48, (60,201,0): 40, 28, 48, (60,202,0): 40, 28, 48, (60,203,0): 41, 29, 49, (60,204,0): 42, 29, 49, (60,205,0): 43, 30, 50, (60,206,0): 43, 30, 50, (60,207,0): 44, 29, 50, (60,208,0): 46, 29, 48, (60,209,0): 48, 29, 49, (60,210,0): 49, 30, 49, (60,211,0): 50, 31, 50, (60,212,0): 53, 32, 51, (60,213,0): 54, 33, 52, (60,214,0): 55, 34, 51, (60,215,0): 56, 35, 52, (60,216,0): 58, 35, 51, (60,217,0): 59, 36, 52, (60,218,0): 61, 37, 53, (60,219,0): 62, 38, 54, (60,220,0): 62, 38, 52, (60,221,0): 61, 37, 51, (60,222,0): 62, 35, 50, (60,223,0): 61, 34, 49, (60,224,0): 59, 35, 48, (60,225,0): 59, 35, 48, (60,226,0): 60, 36, 49, (60,227,0): 60, 36, 49, (60,228,0): 61, 37, 50, (60,229,0): 61, 37, 50, (60,230,0): 62, 38, 51, (60,231,0): 62, 38, 51, (60,232,0): 61, 37, 50, (60,233,0): 60, 36, 49, (60,234,0): 59, 35, 48, (60,235,0): 58, 34, 47, (60,236,0): 58, 34, 47, (60,237,0): 58, 34, 47, (60,238,0): 59, 35, 48, (60,239,0): 62, 36, 49, (60,240,0): 67, 37, 49, (60,241,0): 68, 36, 47, (60,242,0): 68, 36, 47, (60,243,0): 68, 36, 47, (60,244,0): 68, 36, 47, (60,245,0): 68, 37, 45, (60,246,0): 68, 37, 45, (60,247,0): 68, 37, 45, (60,248,0): 70, 39, 45, (60,249,0): 70, 39, 45, (60,250,0): 70, 39, 45, (60,251,0): 70, 39, 44, (60,252,0): 70, 39, 44, (60,253,0): 70, 39, 44, (60,254,0): 70, 40, 42, (60,255,0): 70, 40, 42, (60,256,0): 71, 39, 44, (60,257,0): 71, 39, 44, (60,258,0): 72, 40, 45, (60,259,0): 73, 41, 46, (60,260,0): 76, 41, 45, (60,261,0): 77, 42, 46, (60,262,0): 78, 43, 47, (60,263,0): 78, 43, 47, (60,264,0): 81, 45, 47, (60,265,0): 81, 45, 47, (60,266,0): 83, 44, 45, (60,267,0): 84, 45, 46, (60,268,0): 84, 45, 46, (60,269,0): 85, 46, 47, (60,270,0): 86, 46, 46, (60,271,0): 87, 47, 48, (60,272,0): 88, 46, 50, (60,273,0): 88, 46, 50, (60,274,0): 89, 47, 51, (60,275,0): 89, 47, 51, (60,276,0): 90, 48, 52, (60,277,0): 90, 48, 52, (60,278,0): 91, 49, 53, (60,279,0): 91, 49, 53, (60,280,0): 93, 51, 55, (60,281,0): 92, 50, 54, (60,282,0): 92, 50, 54, (60,283,0): 92, 50, 54, (60,284,0): 93, 51, 55, (60,285,0): 95, 53, 57, (60,286,0): 97, 55, 59, (60,287,0): 100, 55, 58, (60,288,0): 102, 56, 56, (60,289,0): 107, 59, 55, (60,290,0): 111, 63, 59, (60,291,0): 112, 65, 59, (60,292,0): 114, 65, 60, (60,293,0): 116, 67, 60, (60,294,0): 121, 71, 62, (60,295,0): 124, 74, 63, (60,296,0): 128, 79, 64, (60,297,0): 132, 83, 66, (60,298,0): 138, 87, 68, (60,299,0): 140, 89, 68, (60,300,0): 142, 90, 69, (60,301,0): 143, 91, 69, (60,302,0): 146, 94, 72, (60,303,0): 150, 97, 65, (60,304,0): 170, 113, 68, (60,305,0): 188, 126, 69, (60,306,0): 210, 139, 73, (60,307,0): 222, 148, 75, (60,308,0): 225, 147, 72, (60,309,0): 220, 144, 66, (60,310,0): 213, 144, 67, (60,311,0): 209, 145, 71, (60,312,0): 202, 142, 70, (60,313,0): 199, 140, 70, (60,314,0): 198, 138, 66, (60,315,0): 198, 138, 66, (60,316,0): 198, 139, 69, (60,317,0): 195, 138, 69, (60,318,0): 187, 133, 69, (60,319,0): 180, 130, 69, (60,320,0): 174, 128, 68, (60,321,0): 171, 126, 67, (60,322,0): 166, 124, 66, (60,323,0): 161, 122, 63, (60,324,0): 156, 119, 64, (60,325,0): 153, 118, 62, (60,326,0): 150, 117, 64, (60,327,0): 149, 118, 64, (60,328,0): 145, 115, 65, (60,329,0): 145, 117, 67, (60,330,0): 148, 120, 73, (60,331,0): 151, 123, 76, (60,332,0): 153, 121, 80, (60,333,0): 151, 119, 78, (60,334,0): 148, 116, 77, (60,335,0): 146, 114, 75, (60,336,0): 144, 110, 72, (60,337,0): 144, 110, 72, (60,338,0): 144, 110, 73, (60,339,0): 143, 109, 72, (60,340,0): 143, 109, 74, (60,341,0): 142, 108, 73, (60,342,0): 142, 107, 75, (60,343,0): 142, 107, 75, (60,344,0): 136, 101, 73, (60,345,0): 135, 100, 72, (60,346,0): 133, 97, 71, (60,347,0): 131, 95, 69, (60,348,0): 130, 94, 70, (60,349,0): 130, 94, 70, (60,350,0): 131, 95, 73, (60,351,0): 130, 95, 73, (60,352,0): 133, 99, 74, (60,353,0): 130, 98, 73, (60,354,0): 130, 98, 73, (60,355,0): 130, 98, 73, (60,356,0): 131, 99, 74, (60,357,0): 133, 101, 76, (60,358,0): 135, 103, 78, (60,359,0): 136, 104, 79, (60,360,0): 140, 108, 83, (60,361,0): 140, 108, 83, (60,362,0): 139, 107, 82, (60,363,0): 139, 107, 82, (60,364,0): 138, 106, 81, (60,365,0): 138, 106, 81, (60,366,0): 137, 105, 80, (60,367,0): 139, 105, 80, (60,368,0): 142, 106, 82, (60,369,0): 142, 106, 82, (60,370,0): 142, 106, 82, (60,371,0): 144, 106, 83, (60,372,0): 147, 106, 84, (60,373,0): 147, 106, 84, (60,374,0): 148, 106, 84, (60,375,0): 151, 106, 85, (60,376,0): 156, 109, 89, (60,377,0): 157, 110, 90, (60,378,0): 160, 109, 90, (60,379,0): 161, 110, 91, (60,380,0): 163, 110, 92, (60,381,0): 164, 111, 93, (60,382,0): 167, 111, 94, (60,383,0): 165, 112, 94, (60,384,0): 160, 114, 91, (60,385,0): 161, 115, 92, (60,386,0): 164, 116, 94, (60,387,0): 168, 118, 95, (60,388,0): 173, 119, 95, (60,389,0): 178, 120, 96, (60,390,0): 182, 120, 97, (60,391,0): 185, 121, 94, (60,392,0): 191, 126, 98, (60,393,0): 194, 127, 98, (60,394,0): 198, 129, 98, (60,395,0): 198, 129, 96, (60,396,0): 194, 128, 93, (60,397,0): 193, 127, 92, (60,398,0): 196, 131, 93, (60,399,0): 198, 133, 95, (60,400,0): 197, 129, 92, (60,401,0): 195, 130, 92, (60,402,0): 195, 129, 94, (60,403,0): 195, 131, 95, (60,404,0): 195, 133, 96, (60,405,0): 193, 133, 96, (60,406,0): 193, 134, 94, (60,407,0): 196, 134, 93, (60,408,0): 200, 137, 94, (60,409,0): 206, 139, 94, (60,410,0): 215, 143, 95, (60,411,0): 224, 148, 98, (60,412,0): 232, 151, 98, (60,413,0): 238, 153, 99, (60,414,0): 243, 153, 100, (60,415,0): 240, 155, 100, (60,416,0): 227, 150, 94, (60,417,0): 225, 153, 95, (60,418,0): 227, 152, 97, (60,419,0): 225, 149, 97, (60,420,0): 218, 145, 94, (60,421,0): 211, 139, 91, (60,422,0): 200, 134, 86, (60,423,0): 192, 131, 86, (60,424,0): 168, 115, 71, (60,425,0): 160, 113, 71, (60,426,0): 152, 110, 68, (60,427,0): 149, 110, 71, (60,428,0): 152, 112, 76, (60,429,0): 154, 114, 79, (60,430,0): 157, 114, 80, (60,431,0): 157, 114, 80, (60,432,0): 152, 108, 73, (60,433,0): 154, 110, 73, (60,434,0): 155, 112, 77, (60,435,0): 154, 115, 76, (60,436,0): 153, 115, 78, (60,437,0): 149, 116, 75, (60,438,0): 149, 115, 77, (60,439,0): 148, 116, 75, (60,440,0): 143, 111, 72, (60,441,0): 142, 110, 69, (60,442,0): 140, 108, 69, (60,443,0): 142, 110, 69, (60,444,0): 145, 111, 73, (60,445,0): 145, 112, 71, (60,446,0): 144, 109, 71, (60,447,0): 141, 106, 68, (60,448,0): 134, 100, 65, (60,449,0): 134, 99, 67, (60,450,0): 132, 99, 68, (60,451,0): 131, 98, 67, (60,452,0): 130, 96, 68, (60,453,0): 129, 95, 67, (60,454,0): 127, 96, 68, (60,455,0): 127, 96, 68, (60,456,0): 126, 96, 70, (60,457,0): 124, 94, 70, (60,458,0): 122, 91, 70, (60,459,0): 118, 87, 66, (60,460,0): 112, 84, 63, (60,461,0): 107, 79, 58, (60,462,0): 104, 75, 57, (60,463,0): 101, 74, 57, (60,464,0): 97, 71, 58, (60,465,0): 95, 71, 59, (60,466,0): 95, 71, 59, (60,467,0): 95, 71, 59, (60,468,0): 96, 74, 61, (60,469,0): 98, 76, 63, (60,470,0): 101, 79, 66, (60,471,0): 102, 80, 67, (60,472,0): 100, 81, 67, (60,473,0): 100, 81, 67, (60,474,0): 99, 81, 67, (60,475,0): 98, 80, 66, (60,476,0): 98, 80, 66, (60,477,0): 97, 79, 65, (60,478,0): 96, 80, 65, (60,479,0): 96, 78, 66, (60,480,0): 103, 80, 72, (60,481,0): 103, 78, 71, (60,482,0): 102, 77, 70, (60,483,0): 101, 76, 69, (60,484,0): 100, 75, 68, (60,485,0): 98, 73, 66, (60,486,0): 98, 73, 66, (60,487,0): 97, 72, 65, (60,488,0): 95, 70, 63, (60,489,0): 95, 70, 63, (60,490,0): 94, 69, 62, (60,491,0): 94, 69, 62, (60,492,0): 93, 68, 61, (60,493,0): 93, 68, 61, (60,494,0): 92, 67, 60, (60,495,0): 91, 68, 60, (60,496,0): 87, 65, 54, (60,497,0): 85, 66, 52, (60,498,0): 86, 67, 53, (60,499,0): 88, 69, 55, (60,500,0): 91, 69, 56, (60,501,0): 92, 70, 57, (60,502,0): 94, 70, 58, (60,503,0): 95, 71, 59, (60,504,0): 97, 73, 61, (60,505,0): 100, 76, 64, (60,506,0): 105, 78, 67, (60,507,0): 107, 80, 69, (60,508,0): 109, 81, 70, (60,509,0): 107, 79, 68, (60,510,0): 105, 77, 66, (60,511,0): 103, 75, 64, (60,512,0): 106, 76, 65, (60,513,0): 106, 76, 65, (60,514,0): 105, 75, 64, (60,515,0): 105, 75, 64, (60,516,0): 105, 75, 64, (60,517,0): 107, 77, 66, (60,518,0): 108, 78, 67, (60,519,0): 109, 79, 68, (60,520,0): 107, 77, 66, (60,521,0): 108, 78, 67, (60,522,0): 108, 78, 67, (60,523,0): 109, 79, 68, (60,524,0): 109, 79, 68, (60,525,0): 110, 80, 69, (60,526,0): 110, 80, 69, (60,527,0): 110, 80, 69, (60,528,0): 107, 79, 67, (60,529,0): 107, 79, 67, (60,530,0): 106, 79, 68, (60,531,0): 105, 78, 67, (60,532,0): 103, 79, 69, (60,533,0): 102, 77, 70, (60,534,0): 101, 78, 72, (60,535,0): 101, 78, 72, (60,536,0): 101, 76, 71, (60,537,0): 101, 76, 69, (60,538,0): 103, 76, 69, (60,539,0): 104, 75, 67, (60,540,0): 103, 73, 63, (60,541,0): 103, 71, 60, (60,542,0): 102, 68, 58, (60,543,0): 103, 66, 58, (60,544,0): 101, 64, 58, (60,545,0): 99, 64, 62, (60,546,0): 95, 66, 62, (60,547,0): 91, 66, 62, (60,548,0): 88, 64, 64, (60,549,0): 86, 60, 63, (60,550,0): 88, 55, 62, (60,551,0): 89, 54, 61, (60,552,0): 87, 49, 60, (60,553,0): 85, 49, 59, (60,554,0): 80, 50, 58, (60,555,0): 77, 52, 58, (60,556,0): 75, 52, 58, (60,557,0): 76, 53, 59, (60,558,0): 79, 54, 60, (60,559,0): 80, 55, 59, (60,560,0): 78, 56, 59, (60,561,0): 77, 57, 58, (60,562,0): 77, 57, 58, (60,563,0): 76, 56, 57, (60,564,0): 76, 56, 55, (60,565,0): 76, 56, 55, (60,566,0): 76, 56, 55, (60,567,0): 76, 56, 55, (60,568,0): 81, 62, 58, (60,569,0): 82, 63, 59, (60,570,0): 82, 63, 57, (60,571,0): 82, 63, 57, (60,572,0): 83, 64, 58, (60,573,0): 84, 65, 59, (60,574,0): 84, 65, 58, (60,575,0): 84, 65, 59, (60,576,0): 84, 65, 61, (60,577,0): 83, 64, 60, (60,578,0): 83, 64, 60, (60,579,0): 82, 63, 59, (60,580,0): 81, 61, 60, (60,581,0): 79, 59, 58, (60,582,0): 79, 59, 58, (60,583,0): 78, 58, 57, (60,584,0): 78, 58, 59, (60,585,0): 76, 56, 57, (60,586,0): 73, 53, 55, (60,587,0): 70, 50, 52, (60,588,0): 68, 48, 50, (60,589,0): 67, 47, 49, (60,590,0): 66, 45, 50, (60,591,0): 66, 45, 50, (60,592,0): 61, 41, 43, (60,593,0): 61, 41, 43, (60,594,0): 60, 40, 42, (60,595,0): 59, 39, 41, (60,596,0): 58, 38, 40, (60,597,0): 57, 37, 39, (60,598,0): 57, 37, 39, (60,599,0): 56, 36, 38, (61,0,0): 35, 26, 43, (61,1,0): 36, 27, 44, (61,2,0): 36, 28, 43, (61,3,0): 37, 29, 44, (61,4,0): 39, 28, 44, (61,5,0): 40, 29, 45, (61,6,0): 40, 29, 43, (61,7,0): 40, 29, 43, (61,8,0): 39, 27, 39, (61,9,0): 39, 27, 39, (61,10,0): 41, 27, 40, (61,11,0): 41, 27, 40, (61,12,0): 42, 29, 39, (61,13,0): 42, 29, 39, (61,14,0): 45, 29, 40, (61,15,0): 45, 29, 40, (61,16,0): 46, 28, 40, (61,17,0): 46, 28, 40, (61,18,0): 47, 29, 41, (61,19,0): 47, 29, 41, (61,20,0): 48, 30, 42, (61,21,0): 48, 30, 42, (61,22,0): 49, 31, 43, (61,23,0): 49, 31, 43, (61,24,0): 50, 32, 44, (61,25,0): 50, 32, 44, (61,26,0): 50, 32, 44, (61,27,0): 49, 31, 43, (61,28,0): 49, 31, 43, (61,29,0): 48, 30, 42, (61,30,0): 48, 30, 42, (61,31,0): 48, 30, 42, (61,32,0): 48, 31, 47, (61,33,0): 48, 31, 47, (61,34,0): 48, 31, 47, (61,35,0): 48, 31, 47, (61,36,0): 48, 31, 47, (61,37,0): 48, 31, 47, (61,38,0): 48, 31, 47, (61,39,0): 48, 31, 47, (61,40,0): 50, 33, 49, (61,41,0): 50, 33, 49, (61,42,0): 50, 33, 49, (61,43,0): 50, 33, 49, (61,44,0): 50, 33, 49, (61,45,0): 50, 33, 49, (61,46,0): 50, 33, 49, (61,47,0): 51, 33, 49, (61,48,0): 53, 32, 49, (61,49,0): 54, 31, 49, (61,50,0): 54, 31, 49, (61,51,0): 54, 31, 49, (61,52,0): 54, 31, 49, (61,53,0): 54, 31, 49, (61,54,0): 54, 31, 49, (61,55,0): 54, 31, 49, (61,56,0): 54, 31, 49, (61,57,0): 53, 30, 48, (61,58,0): 52, 29, 47, (61,59,0): 50, 27, 45, (61,60,0): 50, 27, 45, (61,61,0): 50, 27, 45, (61,62,0): 51, 28, 46, (61,63,0): 50, 29, 44, (61,64,0): 49, 28, 43, (61,65,0): 47, 29, 41, (61,66,0): 47, 29, 41, (61,67,0): 46, 28, 40, (61,68,0): 46, 28, 42, (61,69,0): 45, 27, 41, (61,70,0): 44, 28, 41, (61,71,0): 44, 28, 41, (61,72,0): 42, 28, 43, (61,73,0): 42, 28, 43, (61,74,0): 41, 28, 45, (61,75,0): 41, 28, 45, (61,76,0): 41, 28, 45, (61,77,0): 41, 28, 45, (61,78,0): 41, 28, 46, (61,79,0): 41, 28, 46, (61,80,0): 38, 25, 43, (61,81,0): 38, 25, 43, (61,82,0): 38, 25, 43, (61,83,0): 38, 25, 43, (61,84,0): 38, 25, 43, (61,85,0): 38, 25, 43, (61,86,0): 38, 25, 43, (61,87,0): 38, 25, 43, (61,88,0): 38, 25, 43, (61,89,0): 38, 25, 43, (61,90,0): 38, 25, 43, (61,91,0): 38, 25, 43, (61,92,0): 38, 25, 43, (61,93,0): 38, 25, 43, (61,94,0): 38, 25, 43, (61,95,0): 37, 26, 43, (61,96,0): 35, 23, 43, (61,97,0): 33, 24, 43, (61,98,0): 33, 24, 43, (61,99,0): 33, 24, 43, (61,100,0): 33, 24, 43, (61,101,0): 33, 24, 43, (61,102,0): 33, 24, 43, (61,103,0): 33, 24, 43, (61,104,0): 33, 24, 43, (61,105,0): 33, 24, 43, (61,106,0): 32, 23, 42, (61,107,0): 32, 23, 42, (61,108,0): 31, 22, 41, (61,109,0): 31, 22, 41, (61,110,0): 30, 21, 40, (61,111,0): 29, 22, 40, (61,112,0): 25, 20, 42, (61,113,0): 24, 21, 42, (61,114,0): 24, 21, 42, (61,115,0): 25, 22, 43, (61,116,0): 25, 22, 43, (61,117,0): 26, 23, 44, (61,118,0): 26, 23, 44, (61,119,0): 27, 24, 45, (61,120,0): 27, 24, 45, (61,121,0): 27, 24, 45, (61,122,0): 27, 24, 45, (61,123,0): 27, 24, 45, (61,124,0): 27, 24, 45, (61,125,0): 27, 24, 45, (61,126,0): 27, 24, 45, (61,127,0): 28, 23, 43, (61,128,0): 30, 22, 43, (61,129,0): 31, 22, 41, (61,130,0): 31, 22, 41, (61,131,0): 30, 21, 40, (61,132,0): 30, 21, 40, (61,133,0): 29, 20, 39, (61,134,0): 29, 20, 39, (61,135,0): 29, 20, 39, (61,136,0): 31, 22, 41, (61,137,0): 30, 21, 40, (61,138,0): 30, 21, 40, (61,139,0): 29, 20, 39, (61,140,0): 29, 20, 39, (61,141,0): 28, 19, 38, (61,142,0): 28, 19, 38, (61,143,0): 28, 19, 38, (61,144,0): 27, 18, 37, (61,145,0): 27, 18, 37, (61,146,0): 27, 18, 37, (61,147,0): 27, 18, 37, (61,148,0): 27, 18, 37, (61,149,0): 27, 18, 37, (61,150,0): 27, 18, 37, (61,151,0): 27, 18, 37, (61,152,0): 29, 20, 39, (61,153,0): 30, 21, 40, (61,154,0): 30, 21, 40, (61,155,0): 30, 21, 40, (61,156,0): 31, 22, 41, (61,157,0): 32, 23, 42, (61,158,0): 32, 23, 42, (61,159,0): 32, 23, 42, (61,160,0): 32, 25, 43, (61,161,0): 32, 25, 43, (61,162,0): 31, 24, 42, (61,163,0): 31, 24, 42, (61,164,0): 30, 23, 41, (61,165,0): 30, 23, 41, (61,166,0): 29, 22, 40, (61,167,0): 29, 22, 40, (61,168,0): 28, 21, 39, (61,169,0): 28, 21, 39, (61,170,0): 28, 21, 39, (61,171,0): 28, 21, 39, (61,172,0): 28, 21, 39, (61,173,0): 28, 21, 39, (61,174,0): 28, 21, 39, (61,175,0): 28, 21, 39, (61,176,0): 31, 23, 46, (61,177,0): 31, 23, 46, (61,178,0): 31, 23, 46, (61,179,0): 31, 23, 46, (61,180,0): 31, 23, 46, (61,181,0): 31, 23, 46, (61,182,0): 31, 23, 46, (61,183,0): 31, 23, 46, (61,184,0): 31, 23, 46, (61,185,0): 31, 23, 46, (61,186,0): 31, 23, 46, (61,187,0): 31, 23, 46, (61,188,0): 31, 23, 46, (61,189,0): 31, 23, 46, (61,190,0): 31, 23, 46, (61,191,0): 31, 23, 44, (61,192,0): 29, 24, 44, (61,193,0): 29, 25, 42, (61,194,0): 32, 25, 43, (61,195,0): 33, 26, 44, (61,196,0): 34, 27, 45, (61,197,0): 35, 28, 46, (61,198,0): 37, 28, 47, (61,199,0): 37, 28, 47, (61,200,0): 40, 28, 48, (61,201,0): 40, 28, 48, (61,202,0): 40, 28, 48, (61,203,0): 41, 29, 49, (61,204,0): 42, 29, 49, (61,205,0): 43, 30, 50, (61,206,0): 43, 30, 50, (61,207,0): 44, 29, 50, (61,208,0): 47, 30, 49, (61,209,0): 49, 30, 50, (61,210,0): 49, 30, 49, (61,211,0): 50, 31, 50, (61,212,0): 53, 32, 51, (61,213,0): 54, 33, 52, (61,214,0): 54, 33, 50, (61,215,0): 55, 34, 51, (61,216,0): 57, 34, 50, (61,217,0): 58, 35, 51, (61,218,0): 60, 36, 52, (61,219,0): 61, 37, 53, (61,220,0): 61, 37, 51, (61,221,0): 60, 36, 50, (61,222,0): 61, 34, 49, (61,223,0): 60, 33, 48, (61,224,0): 59, 35, 48, (61,225,0): 59, 35, 48, (61,226,0): 60, 36, 49, (61,227,0): 60, 36, 49, (61,228,0): 61, 37, 50, (61,229,0): 61, 37, 50, (61,230,0): 62, 38, 51, (61,231,0): 62, 38, 51, (61,232,0): 62, 38, 51, (61,233,0): 61, 37, 50, (61,234,0): 59, 35, 48, (61,235,0): 58, 34, 47, (61,236,0): 57, 33, 46, (61,237,0): 58, 34, 47, (61,238,0): 59, 35, 48, (61,239,0): 61, 35, 46, (61,240,0): 67, 37, 47, (61,241,0): 68, 36, 47, (61,242,0): 68, 36, 47, (61,243,0): 68, 36, 47, (61,244,0): 68, 37, 45, (61,245,0): 68, 37, 45, (61,246,0): 68, 37, 45, (61,247,0): 68, 37, 45, (61,248,0): 70, 39, 45, (61,249,0): 70, 39, 45, (61,250,0): 70, 39, 44, (61,251,0): 70, 39, 44, (61,252,0): 70, 39, 44, (61,253,0): 70, 39, 44, (61,254,0): 70, 40, 42, (61,255,0): 70, 40, 42, (61,256,0): 71, 39, 44, (61,257,0): 71, 39, 44, (61,258,0): 72, 40, 45, (61,259,0): 73, 41, 46, (61,260,0): 76, 41, 45, (61,261,0): 77, 42, 46, (61,262,0): 78, 43, 47, (61,263,0): 78, 44, 45, (61,264,0): 80, 44, 46, (61,265,0): 81, 45, 47, (61,266,0): 83, 44, 45, (61,267,0): 83, 44, 45, (61,268,0): 84, 45, 46, (61,269,0): 85, 46, 47, (61,270,0): 86, 46, 46, (61,271,0): 86, 46, 46, (61,272,0): 88, 46, 50, (61,273,0): 88, 46, 50, (61,274,0): 89, 47, 51, (61,275,0): 89, 47, 51, (61,276,0): 90, 48, 52, (61,277,0): 90, 48, 52, (61,278,0): 91, 49, 53, (61,279,0): 91, 49, 53, (61,280,0): 93, 51, 55, (61,281,0): 92, 50, 54, (61,282,0): 92, 50, 54, (61,283,0): 92, 50, 54, (61,284,0): 93, 51, 55, (61,285,0): 95, 53, 57, (61,286,0): 97, 55, 59, (61,287,0): 100, 55, 58, (61,288,0): 101, 56, 53, (61,289,0): 107, 60, 54, (61,290,0): 111, 64, 58, (61,291,0): 113, 66, 58, (61,292,0): 115, 66, 59, (61,293,0): 117, 69, 59, (61,294,0): 122, 72, 61, (61,295,0): 125, 76, 62, (61,296,0): 128, 79, 62, (61,297,0): 132, 84, 64, (61,298,0): 137, 86, 65, (61,299,0): 139, 89, 66, (61,300,0): 142, 90, 68, (61,301,0): 144, 92, 68, (61,302,0): 149, 97, 73, (61,303,0): 154, 101, 69, (61,304,0): 172, 114, 68, (61,305,0): 189, 127, 68, (61,306,0): 211, 140, 74, (61,307,0): 224, 148, 73, (61,308,0): 225, 148, 70, (61,309,0): 220, 144, 66, (61,310,0): 213, 144, 67, (61,311,0): 209, 145, 71, (61,312,0): 201, 141, 69, (61,313,0): 199, 141, 68, (61,314,0): 200, 140, 68, (61,315,0): 201, 141, 69, (61,316,0): 200, 141, 71, (61,317,0): 198, 141, 72, (61,318,0): 190, 136, 72, (61,319,0): 183, 133, 72, (61,320,0): 176, 130, 70, (61,321,0): 171, 129, 69, (61,322,0): 168, 126, 68, (61,323,0): 162, 123, 64, (61,324,0): 157, 120, 65, (61,325,0): 151, 119, 62, (61,326,0): 149, 118, 64, (61,327,0): 148, 118, 64, (61,328,0): 144, 116, 66, (61,329,0): 146, 118, 68, (61,330,0): 148, 120, 73, (61,331,0): 150, 122, 75, (61,332,0): 152, 120, 79, (61,333,0): 151, 119, 78, (61,334,0): 150, 118, 79, (61,335,0): 149, 117, 78, (61,336,0): 147, 113, 75, (61,337,0): 147, 113, 75, (61,338,0): 146, 112, 75, (61,339,0): 145, 111, 74, (61,340,0): 144, 110, 75, (61,341,0): 142, 108, 73, (61,342,0): 142, 107, 75, (61,343,0): 141, 106, 74, (61,344,0): 136, 101, 73, (61,345,0): 135, 100, 72, (61,346,0): 133, 97, 71, (61,347,0): 132, 96, 70, (61,348,0): 131, 95, 71, (61,349,0): 132, 96, 72, (61,350,0): 132, 96, 74, (61,351,0): 132, 97, 75, (61,352,0): 134, 100, 75, (61,353,0): 131, 99, 74, (61,354,0): 131, 99, 74, (61,355,0): 131, 99, 74, (61,356,0): 132, 100, 75, (61,357,0): 134, 102, 77, (61,358,0): 136, 104, 79, (61,359,0): 137, 105, 80, (61,360,0): 141, 109, 84, (61,361,0): 141, 109, 84, (61,362,0): 141, 109, 84, (61,363,0): 140, 108, 83, (61,364,0): 139, 107, 82, (61,365,0): 139, 107, 82, (61,366,0): 139, 107, 82, (61,367,0): 138, 106, 81, (61,368,0): 143, 109, 84, (61,369,0): 144, 108, 84, (61,370,0): 144, 108, 84, (61,371,0): 145, 109, 85, (61,372,0): 146, 108, 85, (61,373,0): 149, 108, 86, (61,374,0): 150, 108, 86, (61,375,0): 150, 108, 86, (61,376,0): 158, 111, 91, (61,377,0): 158, 111, 91, (61,378,0): 161, 110, 91, (61,379,0): 162, 111, 92, (61,380,0): 164, 111, 93, (61,381,0): 164, 111, 93, (61,382,0): 167, 111, 94, (61,383,0): 165, 112, 94, (61,384,0): 160, 114, 91, (61,385,0): 161, 115, 92, (61,386,0): 164, 116, 93, (61,387,0): 169, 117, 95, (61,388,0): 174, 120, 96, (61,389,0): 179, 121, 97, (61,390,0): 184, 122, 97, (61,391,0): 188, 122, 96, (61,392,0): 192, 125, 98, (61,393,0): 195, 129, 97, (61,394,0): 199, 130, 99, (61,395,0): 198, 129, 96, (61,396,0): 194, 128, 93, (61,397,0): 194, 128, 93, (61,398,0): 196, 131, 93, (61,399,0): 198, 133, 95, (61,400,0): 197, 129, 92, (61,401,0): 196, 131, 93, (61,402,0): 196, 130, 95, (61,403,0): 195, 133, 96, (61,404,0): 195, 133, 96, (61,405,0): 194, 135, 95, (61,406,0): 194, 135, 95, (61,407,0): 196, 135, 91, (61,408,0): 203, 140, 96, (61,409,0): 209, 142, 97, (61,410,0): 218, 146, 98, (61,411,0): 227, 149, 100, (61,412,0): 234, 151, 99, (61,413,0): 238, 151, 97, (61,414,0): 240, 149, 94, (61,415,0): 236, 149, 95, (61,416,0): 224, 149, 94, (61,417,0): 220, 151, 96, (61,418,0): 220, 149, 95, (61,419,0): 217, 146, 94, (61,420,0): 212, 140, 92, (61,421,0): 201, 133, 86, (61,422,0): 191, 127, 83, (61,423,0): 182, 125, 80, (61,424,0): 163, 112, 69, (61,425,0): 156, 111, 70, (61,426,0): 152, 110, 70, (61,427,0): 152, 113, 74, (61,428,0): 155, 115, 79, (61,429,0): 158, 118, 82, (61,430,0): 160, 117, 83, (61,431,0): 159, 116, 81, (61,432,0): 158, 114, 77, (61,433,0): 160, 116, 79, (61,434,0): 161, 119, 81, (61,435,0): 158, 119, 80, (61,436,0): 155, 117, 78, (61,437,0): 151, 116, 76, (61,438,0): 150, 117, 76, (61,439,0): 149, 117, 76, (61,440,0): 148, 116, 75, (61,441,0): 146, 114, 73, (61,442,0): 144, 112, 71, (61,443,0): 145, 113, 72, (61,444,0): 148, 115, 74, (61,445,0): 148, 115, 74, (61,446,0): 147, 112, 72, (61,447,0): 144, 109, 69, (61,448,0): 137, 103, 66, (61,449,0): 135, 101, 66, (61,450,0): 133, 100, 65, (61,451,0): 131, 98, 65, (61,452,0): 129, 96, 63, (61,453,0): 129, 96, 65, (61,454,0): 127, 96, 65, (61,455,0): 127, 96, 67, (61,456,0): 129, 98, 70, (61,457,0): 127, 97, 71, (61,458,0): 125, 95, 69, (61,459,0): 122, 92, 68, (61,460,0): 116, 88, 66, (61,461,0): 112, 84, 62, (61,462,0): 108, 80, 58, (61,463,0): 105, 78, 59, (61,464,0): 99, 73, 60, (61,465,0): 97, 73, 61, (61,466,0): 97, 73, 61, (61,467,0): 98, 74, 62, (61,468,0): 98, 76, 63, (61,469,0): 100, 78, 65, (61,470,0): 103, 81, 68, (61,471,0): 104, 82, 69, (61,472,0): 102, 83, 69, (61,473,0): 102, 83, 69, (61,474,0): 100, 82, 68, (61,475,0): 100, 82, 68, (61,476,0): 99, 81, 67, (61,477,0): 99, 81, 67, (61,478,0): 97, 81, 66, (61,479,0): 98, 80, 66, (61,480,0): 105, 82, 74, (61,481,0): 105, 80, 73, (61,482,0): 104, 79, 72, (61,483,0): 103, 78, 71, (61,484,0): 101, 76, 69, (61,485,0): 100, 75, 68, (61,486,0): 98, 73, 66, (61,487,0): 98, 73, 66, (61,488,0): 95, 70, 63, (61,489,0): 95, 70, 63, (61,490,0): 94, 69, 62, (61,491,0): 94, 69, 62, (61,492,0): 93, 68, 61, (61,493,0): 93, 68, 61, (61,494,0): 93, 68, 61, (61,495,0): 91, 69, 58, (61,496,0): 87, 65, 54, (61,497,0): 86, 67, 53, (61,498,0): 87, 68, 54, (61,499,0): 89, 70, 56, (61,500,0): 93, 71, 58, (61,501,0): 95, 73, 60, (61,502,0): 97, 73, 61, (61,503,0): 98, 74, 62, (61,504,0): 100, 76, 64, (61,505,0): 102, 78, 66, (61,506,0): 106, 79, 68, (61,507,0): 108, 81, 70, (61,508,0): 109, 81, 70, (61,509,0): 109, 81, 70, (61,510,0): 107, 79, 68, (61,511,0): 106, 78, 67, (61,512,0): 109, 79, 68, (61,513,0): 108, 78, 67, (61,514,0): 108, 78, 67, (61,515,0): 107, 77, 66, (61,516,0): 108, 78, 67, (61,517,0): 109, 79, 68, (61,518,0): 111, 81, 70, (61,519,0): 112, 82, 71, (61,520,0): 109, 79, 68, (61,521,0): 109, 79, 68, (61,522,0): 110, 80, 69, (61,523,0): 110, 80, 69, (61,524,0): 111, 81, 70, (61,525,0): 111, 81, 70, (61,526,0): 112, 82, 71, (61,527,0): 112, 82, 71, (61,528,0): 108, 80, 68, (61,529,0): 108, 80, 68, (61,530,0): 107, 80, 69, (61,531,0): 106, 79, 70, (61,532,0): 104, 79, 72, (61,533,0): 103, 78, 71, (61,534,0): 103, 78, 73, (61,535,0): 103, 78, 73, (61,536,0): 101, 76, 71, (61,537,0): 104, 76, 72, (61,538,0): 105, 76, 72, (61,539,0): 106, 75, 70, (61,540,0): 107, 74, 67, (61,541,0): 107, 73, 64, (61,542,0): 107, 70, 62, (61,543,0): 106, 69, 63, (61,544,0): 90, 59, 57, (61,545,0): 90, 60, 60, (61,546,0): 87, 61, 62, (61,547,0): 87, 61, 62, (61,548,0): 86, 60, 63, (61,549,0): 88, 57, 62, (61,550,0): 91, 54, 62, (61,551,0): 91, 54, 62, (61,552,0): 88, 50, 61, (61,553,0): 84, 51, 60, (61,554,0): 78, 51, 58, (61,555,0): 74, 53, 58, (61,556,0): 73, 52, 57, (61,557,0): 75, 52, 58, (61,558,0): 79, 52, 59, (61,559,0): 79, 52, 59, (61,560,0): 77, 55, 58, (61,561,0): 76, 56, 57, (61,562,0): 76, 56, 57, (61,563,0): 77, 57, 58, (61,564,0): 77, 57, 56, (61,565,0): 77, 57, 56, (61,566,0): 77, 57, 56, (61,567,0): 77, 58, 54, (61,568,0): 83, 64, 60, (61,569,0): 83, 64, 60, (61,570,0): 84, 65, 59, (61,571,0): 84, 65, 59, (61,572,0): 85, 66, 60, (61,573,0): 85, 66, 60, (61,574,0): 86, 67, 60, (61,575,0): 86, 67, 60, (61,576,0): 85, 66, 62, (61,577,0): 84, 65, 61, (61,578,0): 84, 65, 61, (61,579,0): 83, 64, 60, (61,580,0): 82, 62, 61, (61,581,0): 80, 60, 59, (61,582,0): 80, 60, 59, (61,583,0): 79, 59, 58, (61,584,0): 80, 60, 61, (61,585,0): 78, 58, 59, (61,586,0): 75, 55, 57, (61,587,0): 72, 52, 54, (61,588,0): 69, 49, 51, (61,589,0): 67, 47, 49, (61,590,0): 66, 45, 50, (61,591,0): 66, 45, 50, (61,592,0): 62, 42, 44, (61,593,0): 62, 42, 44, (61,594,0): 61, 41, 43, (61,595,0): 61, 41, 43, (61,596,0): 60, 40, 42, (61,597,0): 60, 40, 42, (61,598,0): 59, 39, 41, (61,599,0): 59, 39, 41, (62,0,0): 36, 27, 44, (62,1,0): 36, 27, 44, (62,2,0): 36, 28, 43, (62,3,0): 37, 29, 44, (62,4,0): 39, 28, 44, (62,5,0): 40, 29, 45, (62,6,0): 40, 29, 43, (62,7,0): 41, 30, 44, (62,8,0): 39, 27, 39, (62,9,0): 39, 27, 39, (62,10,0): 41, 27, 40, (62,11,0): 41, 27, 40, (62,12,0): 42, 29, 39, (62,13,0): 42, 29, 39, (62,14,0): 45, 29, 40, (62,15,0): 45, 29, 40, (62,16,0): 46, 28, 40, (62,17,0): 46, 28, 40, (62,18,0): 47, 29, 41, (62,19,0): 47, 29, 41, (62,20,0): 48, 30, 42, (62,21,0): 48, 30, 42, (62,22,0): 49, 31, 43, (62,23,0): 49, 31, 43, (62,24,0): 50, 32, 44, (62,25,0): 50, 32, 44, (62,26,0): 50, 32, 44, (62,27,0): 49, 31, 43, (62,28,0): 49, 31, 43, (62,29,0): 48, 30, 42, (62,30,0): 48, 30, 42, (62,31,0): 48, 30, 42, (62,32,0): 48, 31, 47, (62,33,0): 48, 31, 47, (62,34,0): 48, 31, 47, (62,35,0): 48, 31, 47, (62,36,0): 48, 31, 47, (62,37,0): 48, 31, 47, (62,38,0): 48, 31, 47, (62,39,0): 48, 31, 47, (62,40,0): 50, 33, 49, (62,41,0): 50, 33, 49, (62,42,0): 50, 33, 49, (62,43,0): 50, 33, 49, (62,44,0): 50, 33, 49, (62,45,0): 50, 33, 49, (62,46,0): 50, 33, 49, (62,47,0): 51, 33, 49, (62,48,0): 54, 33, 50, (62,49,0): 55, 32, 50, (62,50,0): 55, 32, 50, (62,51,0): 55, 32, 50, (62,52,0): 55, 32, 50, (62,53,0): 55, 32, 50, (62,54,0): 55, 32, 50, (62,55,0): 55, 32, 50, (62,56,0): 54, 31, 49, (62,57,0): 53, 30, 48, (62,58,0): 52, 29, 47, (62,59,0): 51, 28, 46, (62,60,0): 50, 27, 45, (62,61,0): 50, 27, 45, (62,62,0): 51, 28, 46, (62,63,0): 51, 30, 45, (62,64,0): 49, 28, 43, (62,65,0): 47, 29, 41, (62,66,0): 47, 29, 41, (62,67,0): 46, 28, 40, (62,68,0): 46, 28, 42, (62,69,0): 45, 27, 41, (62,70,0): 44, 28, 41, (62,71,0): 44, 28, 41, (62,72,0): 41, 27, 42, (62,73,0): 41, 27, 42, (62,74,0): 40, 27, 44, (62,75,0): 40, 27, 44, (62,76,0): 40, 27, 44, (62,77,0): 40, 27, 44, (62,78,0): 40, 27, 45, (62,79,0): 40, 27, 45, (62,80,0): 38, 25, 42, (62,81,0): 38, 25, 42, (62,82,0): 38, 25, 42, (62,83,0): 38, 25, 42, (62,84,0): 38, 25, 42, (62,85,0): 38, 25, 42, (62,86,0): 38, 25, 42, (62,87,0): 38, 25, 42, (62,88,0): 38, 25, 42, (62,89,0): 38, 25, 42, (62,90,0): 38, 25, 42, (62,91,0): 38, 25, 42, (62,92,0): 38, 25, 42, (62,93,0): 38, 25, 42, (62,94,0): 38, 25, 42, (62,95,0): 37, 26, 43, (62,96,0): 35, 23, 43, (62,97,0): 33, 24, 43, (62,98,0): 33, 24, 43, (62,99,0): 33, 24, 43, (62,100,0): 33, 24, 43, (62,101,0): 33, 24, 43, (62,102,0): 33, 24, 43, (62,103,0): 33, 24, 43, (62,104,0): 33, 24, 43, (62,105,0): 33, 24, 43, (62,106,0): 32, 23, 42, (62,107,0): 32, 23, 42, (62,108,0): 31, 22, 41, (62,109,0): 31, 22, 41, (62,110,0): 30, 21, 40, (62,111,0): 29, 22, 40, (62,112,0): 24, 19, 41, (62,113,0): 24, 21, 42, (62,114,0): 24, 21, 42, (62,115,0): 25, 22, 43, (62,116,0): 25, 22, 43, (62,117,0): 26, 23, 44, (62,118,0): 26, 23, 44, (62,119,0): 26, 23, 44, (62,120,0): 26, 23, 44, (62,121,0): 26, 23, 44, (62,122,0): 26, 23, 44, (62,123,0): 26, 23, 44, (62,124,0): 26, 23, 44, (62,125,0): 26, 23, 44, (62,126,0): 26, 23, 44, (62,127,0): 27, 22, 42, (62,128,0): 30, 22, 43, (62,129,0): 31, 22, 41, (62,130,0): 31, 22, 41, (62,131,0): 30, 21, 40, (62,132,0): 30, 21, 40, (62,133,0): 29, 20, 39, (62,134,0): 29, 20, 39, (62,135,0): 29, 20, 39, (62,136,0): 30, 21, 40, (62,137,0): 30, 21, 40, (62,138,0): 30, 21, 40, (62,139,0): 29, 20, 39, (62,140,0): 29, 20, 39, (62,141,0): 28, 19, 38, (62,142,0): 28, 19, 38, (62,143,0): 27, 18, 37, (62,144,0): 26, 17, 36, (62,145,0): 26, 17, 36, (62,146,0): 26, 17, 36, (62,147,0): 26, 17, 36, (62,148,0): 26, 17, 36, (62,149,0): 26, 17, 36, (62,150,0): 26, 17, 36, (62,151,0): 26, 17, 36, (62,152,0): 29, 20, 39, (62,153,0): 29, 20, 39, (62,154,0): 30, 21, 40, (62,155,0): 30, 21, 40, (62,156,0): 31, 22, 41, (62,157,0): 31, 22, 41, (62,158,0): 31, 22, 41, (62,159,0): 32, 23, 42, (62,160,0): 32, 25, 43, (62,161,0): 32, 25, 43, (62,162,0): 31, 24, 42, (62,163,0): 31, 24, 42, (62,164,0): 30, 23, 41, (62,165,0): 30, 23, 41, (62,166,0): 29, 22, 40, (62,167,0): 29, 22, 40, (62,168,0): 30, 23, 41, (62,169,0): 30, 23, 41, (62,170,0): 30, 23, 41, (62,171,0): 30, 23, 41, (62,172,0): 30, 23, 41, (62,173,0): 30, 23, 41, (62,174,0): 30, 23, 41, (62,175,0): 30, 23, 41, (62,176,0): 31, 23, 46, (62,177,0): 31, 23, 46, (62,178,0): 31, 23, 46, (62,179,0): 31, 23, 46, (62,180,0): 31, 23, 46, (62,181,0): 31, 23, 46, (62,182,0): 31, 23, 46, (62,183,0): 31, 23, 46, (62,184,0): 32, 24, 47, (62,185,0): 32, 24, 47, (62,186,0): 32, 24, 47, (62,187,0): 32, 24, 47, (62,188,0): 32, 24, 47, (62,189,0): 32, 24, 47, (62,190,0): 32, 24, 47, (62,191,0): 32, 24, 45, (62,192,0): 29, 24, 44, (62,193,0): 29, 25, 42, (62,194,0): 32, 25, 43, (62,195,0): 33, 26, 44, (62,196,0): 34, 27, 45, (62,197,0): 35, 28, 46, (62,198,0): 37, 28, 47, (62,199,0): 37, 28, 47, (62,200,0): 40, 28, 48, (62,201,0): 40, 28, 48, (62,202,0): 40, 28, 48, (62,203,0): 41, 29, 49, (62,204,0): 42, 29, 49, (62,205,0): 43, 30, 50, (62,206,0): 43, 30, 50, (62,207,0): 44, 29, 50, (62,208,0): 49, 32, 51, (62,209,0): 50, 31, 51, (62,210,0): 50, 31, 50, (62,211,0): 50, 31, 50, (62,212,0): 53, 32, 51, (62,213,0): 53, 32, 51, (62,214,0): 53, 32, 49, (62,215,0): 53, 32, 49, (62,216,0): 56, 33, 49, (62,217,0): 57, 34, 50, (62,218,0): 59, 35, 51, (62,219,0): 60, 36, 52, (62,220,0): 60, 36, 50, (62,221,0): 59, 35, 49, (62,222,0): 60, 33, 48, (62,223,0): 59, 32, 47, (62,224,0): 61, 35, 48, (62,225,0): 61, 35, 46, (62,226,0): 62, 36, 47, (62,227,0): 62, 36, 47, (62,228,0): 63, 37, 48, (62,229,0): 63, 37, 48, (62,230,0): 64, 38, 49, (62,231,0): 64, 38, 49, (62,232,0): 64, 38, 49, (62,233,0): 63, 37, 48, (62,234,0): 61, 35, 46, (62,235,0): 60, 34, 45, (62,236,0): 59, 33, 44, (62,237,0): 59, 33, 44, (62,238,0): 60, 34, 45, (62,239,0): 61, 33, 45, (62,240,0): 67, 37, 47, (62,241,0): 68, 36, 47, (62,242,0): 68, 36, 47, (62,243,0): 68, 36, 47, (62,244,0): 68, 37, 45, (62,245,0): 68, 37, 45, (62,246,0): 68, 37, 43, (62,247,0): 68, 37, 43, (62,248,0): 71, 40, 46, (62,249,0): 71, 40, 46, (62,250,0): 71, 40, 45, (62,251,0): 71, 40, 45, (62,252,0): 71, 41, 43, (62,253,0): 71, 41, 43, (62,254,0): 71, 41, 43, (62,255,0): 71, 41, 43, (62,256,0): 71, 39, 44, (62,257,0): 71, 39, 44, (62,258,0): 74, 39, 43, (62,259,0): 75, 40, 44, (62,260,0): 76, 41, 45, (62,261,0): 77, 42, 46, (62,262,0): 79, 43, 45, (62,263,0): 79, 43, 45, (62,264,0): 82, 43, 46, (62,265,0): 82, 43, 44, (62,266,0): 83, 44, 45, (62,267,0): 83, 44, 45, (62,268,0): 85, 45, 45, (62,269,0): 85, 45, 45, (62,270,0): 85, 45, 45, (62,271,0): 86, 46, 46, (62,272,0): 88, 46, 50, (62,273,0): 88, 46, 50, (62,274,0): 89, 47, 51, (62,275,0): 89, 47, 51, (62,276,0): 90, 48, 52, (62,277,0): 90, 48, 52, (62,278,0): 91, 49, 53, (62,279,0): 91, 49, 53, (62,280,0): 93, 51, 55, (62,281,0): 92, 50, 54, (62,282,0): 92, 50, 54, (62,283,0): 92, 50, 54, (62,284,0): 93, 51, 55, (62,285,0): 95, 53, 57, (62,286,0): 97, 55, 59, (62,287,0): 100, 55, 58, (62,288,0): 101, 56, 53, (62,289,0): 107, 60, 54, (62,290,0): 112, 63, 58, (62,291,0): 114, 65, 58, (62,292,0): 115, 67, 57, (62,293,0): 118, 70, 58, (62,294,0): 123, 74, 60, (62,295,0): 126, 77, 62, (62,296,0): 130, 79, 62, (62,297,0): 132, 81, 62, (62,298,0): 135, 84, 63, (62,299,0): 137, 87, 64, (62,300,0): 140, 88, 64, (62,301,0): 145, 94, 67, (62,302,0): 151, 100, 73, (62,303,0): 158, 105, 71, (62,304,0): 172, 114, 66, (62,305,0): 189, 127, 66, (62,306,0): 211, 141, 72, (62,307,0): 224, 148, 73, (62,308,0): 224, 147, 69, (62,309,0): 219, 144, 63, (62,310,0): 212, 143, 65, (62,311,0): 210, 144, 68, (62,312,0): 201, 141, 68, (62,313,0): 199, 141, 68, (62,314,0): 201, 141, 69, (62,315,0): 203, 143, 71, (62,316,0): 203, 144, 74, (62,317,0): 201, 144, 75, (62,318,0): 194, 139, 75, (62,319,0): 187, 135, 75, (62,320,0): 178, 132, 72, (62,321,0): 172, 130, 70, (62,322,0): 169, 127, 69, (62,323,0): 163, 124, 65, (62,324,0): 157, 120, 65, (62,325,0): 152, 120, 63, (62,326,0): 150, 119, 65, (62,327,0): 148, 118, 64, (62,328,0): 146, 118, 68, (62,329,0): 146, 118, 68, (62,330,0): 147, 119, 72, (62,331,0): 148, 120, 73, (62,332,0): 149, 120, 78, (62,333,0): 149, 120, 78, (62,334,0): 152, 120, 81, (62,335,0): 152, 120, 81, (62,336,0): 151, 117, 79, (62,337,0): 150, 116, 78, (62,338,0): 149, 115, 78, (62,339,0): 147, 113, 76, (62,340,0): 145, 111, 76, (62,341,0): 143, 109, 74, (62,342,0): 141, 106, 74, (62,343,0): 140, 105, 73, (62,344,0): 136, 101, 73, (62,345,0): 135, 100, 72, (62,346,0): 134, 98, 72, (62,347,0): 133, 97, 71, (62,348,0): 133, 97, 73, (62,349,0): 133, 97, 73, (62,350,0): 134, 98, 76, (62,351,0): 133, 98, 76, (62,352,0): 135, 101, 76, (62,353,0): 132, 100, 75, (62,354,0): 132, 100, 75, (62,355,0): 132, 100, 75, (62,356,0): 133, 101, 76, (62,357,0): 135, 103, 78, (62,358,0): 137, 105, 80, (62,359,0): 138, 106, 81, (62,360,0): 143, 111, 86, (62,361,0): 142, 110, 85, (62,362,0): 142, 110, 85, (62,363,0): 141, 109, 84, (62,364,0): 141, 109, 84, (62,365,0): 140, 108, 83, (62,366,0): 140, 108, 83, (62,367,0): 140, 108, 83, (62,368,0): 145, 111, 86, (62,369,0): 145, 111, 86, (62,370,0): 146, 110, 86, (62,371,0): 147, 111, 87, (62,372,0): 148, 110, 87, (62,373,0): 151, 110, 88, (62,374,0): 152, 110, 88, (62,375,0): 152, 110, 88, (62,376,0): 159, 112, 92, (62,377,0): 159, 112, 92, (62,378,0): 162, 111, 92, (62,379,0): 162, 111, 92, (62,380,0): 164, 111, 93, (62,381,0): 166, 110, 93, (62,382,0): 167, 110, 93, (62,383,0): 165, 112, 94, (62,384,0): 160, 114, 91, (62,385,0): 161, 115, 92, (62,386,0): 164, 116, 93, (62,387,0): 170, 118, 96, (62,388,0): 176, 120, 97, (62,389,0): 181, 121, 97, (62,390,0): 186, 122, 97, (62,391,0): 189, 123, 97, (62,392,0): 193, 126, 99, (62,393,0): 197, 128, 97, (62,394,0): 199, 130, 99, (62,395,0): 199, 130, 97, (62,396,0): 195, 129, 94, (62,397,0): 194, 129, 91, (62,398,0): 195, 131, 93, (62,399,0): 199, 134, 96, (62,400,0): 198, 130, 95, (62,401,0): 196, 130, 95, (62,402,0): 196, 130, 95, (62,403,0): 195, 133, 96, (62,404,0): 195, 133, 96, (62,405,0): 194, 135, 95, (62,406,0): 194, 135, 95, (62,407,0): 197, 136, 92, (62,408,0): 206, 143, 99, (62,409,0): 212, 146, 98, (62,410,0): 221, 149, 99, (62,411,0): 229, 152, 100, (62,412,0): 234, 151, 99, (62,413,0): 237, 147, 94, (62,414,0): 237, 143, 89, (62,415,0): 230, 143, 89, (62,416,0): 217, 144, 89, (62,417,0): 213, 146, 93, (62,418,0): 213, 143, 92, (62,419,0): 207, 139, 90, (62,420,0): 201, 133, 86, (62,421,0): 189, 125, 79, (62,422,0): 179, 118, 74, (62,423,0): 169, 115, 71, (62,424,0): 161, 112, 71, (62,425,0): 156, 113, 71, (62,426,0): 154, 115, 74, (62,427,0): 156, 118, 79, (62,428,0): 161, 121, 85, (62,429,0): 163, 123, 87, (62,430,0): 163, 120, 85, (62,431,0): 162, 118, 83, (62,432,0): 165, 121, 84, (62,433,0): 168, 124, 85, (62,434,0): 169, 127, 87, (62,435,0): 165, 126, 85, (62,436,0): 159, 122, 80, (62,437,0): 154, 119, 77, (62,438,0): 152, 119, 76, (62,439,0): 153, 120, 77, (62,440,0): 152, 121, 77, (62,441,0): 150, 119, 75, (62,442,0): 147, 116, 72, (62,443,0): 147, 116, 72, (62,444,0): 150, 117, 74, (62,445,0): 151, 116, 74, (62,446,0): 151, 114, 72, (62,447,0): 147, 112, 72, (62,448,0): 141, 107, 70, (62,449,0): 139, 105, 68, (62,450,0): 136, 102, 65, (62,451,0): 134, 100, 65, (62,452,0): 131, 98, 63, (62,453,0): 130, 97, 64, (62,454,0): 130, 97, 66, (62,455,0): 128, 97, 68, (62,456,0): 130, 99, 70, (62,457,0): 130, 99, 71, (62,458,0): 128, 98, 72, (62,459,0): 125, 95, 69, (62,460,0): 121, 91, 67, (62,461,0): 117, 87, 63, (62,462,0): 111, 83, 59, (62,463,0): 107, 80, 59, (62,464,0): 100, 74, 59, (62,465,0): 98, 74, 62, (62,466,0): 98, 74, 62, (62,467,0): 99, 75, 63, (62,468,0): 100, 78, 65, (62,469,0): 102, 80, 67, (62,470,0): 104, 82, 69, (62,471,0): 106, 84, 71, (62,472,0): 103, 84, 70, (62,473,0): 103, 84, 70, (62,474,0): 101, 83, 69, (62,475,0): 101, 83, 69, (62,476,0): 100, 82, 68, (62,477,0): 100, 82, 68, (62,478,0): 98, 82, 67, (62,479,0): 99, 81, 67, (62,480,0): 107, 84, 76, (62,481,0): 107, 82, 75, (62,482,0): 106, 81, 74, (62,483,0): 104, 79, 72, (62,484,0): 102, 77, 70, (62,485,0): 100, 75, 68, (62,486,0): 99, 74, 67, (62,487,0): 98, 73, 66, (62,488,0): 96, 71, 64, (62,489,0): 96, 71, 64, (62,490,0): 95, 70, 63, (62,491,0): 95, 70, 63, (62,492,0): 94, 69, 62, (62,493,0): 94, 69, 62, (62,494,0): 93, 68, 61, (62,495,0): 92, 70, 59, (62,496,0): 87, 65, 54, (62,497,0): 86, 67, 53, (62,498,0): 88, 69, 55, (62,499,0): 91, 72, 58, (62,500,0): 95, 73, 60, (62,501,0): 98, 76, 63, (62,502,0): 100, 76, 64, (62,503,0): 101, 77, 65, (62,504,0): 103, 79, 67, (62,505,0): 103, 79, 67, (62,506,0): 106, 79, 68, (62,507,0): 107, 80, 69, (62,508,0): 109, 81, 70, (62,509,0): 109, 81, 70, (62,510,0): 109, 81, 70, (62,511,0): 109, 81, 70, (62,512,0): 111, 81, 70, (62,513,0): 112, 80, 67, (62,514,0): 112, 80, 67, (62,515,0): 111, 79, 66, (62,516,0): 112, 80, 67, (62,517,0): 113, 81, 68, (62,518,0): 115, 83, 70, (62,519,0): 116, 84, 71, (62,520,0): 112, 80, 67, (62,521,0): 112, 80, 67, (62,522,0): 113, 81, 68, (62,523,0): 113, 81, 68, (62,524,0): 114, 82, 69, (62,525,0): 114, 82, 69, (62,526,0): 115, 83, 70, (62,527,0): 113, 83, 72, (62,528,0): 109, 81, 69, (62,529,0): 109, 81, 70, (62,530,0): 108, 81, 72, (62,531,0): 107, 80, 71, (62,532,0): 107, 80, 73, (62,533,0): 106, 78, 74, (62,534,0): 106, 78, 75, (62,535,0): 105, 77, 74, (62,536,0): 104, 76, 73, (62,537,0): 105, 76, 72, (62,538,0): 109, 75, 73, (62,539,0): 111, 76, 72, (62,540,0): 113, 76, 70, (62,541,0): 113, 74, 67, (62,542,0): 112, 71, 65, (62,543,0): 110, 72, 69, (62,544,0): 92, 63, 65, (62,545,0): 88, 63, 67, (62,546,0): 88, 63, 67, (62,547,0): 87, 62, 66, (62,548,0): 89, 60, 65, (62,549,0): 91, 58, 65, (62,550,0): 96, 56, 65, (62,551,0): 96, 56, 65, (62,552,0): 91, 54, 62, (62,553,0): 86, 55, 61, (62,554,0): 80, 55, 61, (62,555,0): 76, 55, 60, (62,556,0): 75, 54, 61, (62,557,0): 78, 52, 61, (62,558,0): 83, 50, 61, (62,559,0): 83, 52, 60, (62,560,0): 78, 53, 57, (62,561,0): 75, 55, 56, (62,562,0): 76, 56, 55, (62,563,0): 77, 57, 56, (62,564,0): 78, 58, 57, (62,565,0): 78, 58, 57, (62,566,0): 79, 60, 56, (62,567,0): 79, 60, 56, (62,568,0): 85, 66, 62, (62,569,0): 85, 66, 60, (62,570,0): 86, 67, 61, (62,571,0): 86, 67, 61, (62,572,0): 87, 68, 61, (62,573,0): 87, 68, 61, (62,574,0): 88, 69, 62, (62,575,0): 88, 69, 62, (62,576,0): 86, 67, 63, (62,577,0): 85, 66, 62, (62,578,0): 84, 65, 61, (62,579,0): 83, 64, 60, (62,580,0): 82, 62, 61, (62,581,0): 81, 61, 60, (62,582,0): 80, 60, 59, (62,583,0): 80, 60, 59, (62,584,0): 81, 61, 62, (62,585,0): 79, 59, 60, (62,586,0): 76, 56, 58, (62,587,0): 73, 53, 55, (62,588,0): 70, 50, 52, (62,589,0): 68, 48, 50, (62,590,0): 67, 46, 51, (62,591,0): 66, 45, 50, (62,592,0): 63, 43, 45, (62,593,0): 63, 43, 45, (62,594,0): 63, 43, 45, (62,595,0): 63, 43, 45, (62,596,0): 62, 42, 44, (62,597,0): 62, 42, 44, (62,598,0): 62, 42, 44, (62,599,0): 61, 41, 43, (63,0,0): 36, 27, 44, (63,1,0): 36, 27, 44, (63,2,0): 37, 29, 44, (63,3,0): 37, 29, 44, (63,4,0): 38, 30, 45, (63,5,0): 40, 29, 45, (63,6,0): 41, 30, 44, (63,7,0): 41, 30, 44, (63,8,0): 39, 27, 39, (63,9,0): 39, 27, 39, (63,10,0): 40, 28, 40, (63,11,0): 41, 27, 40, (63,12,0): 42, 29, 39, (63,13,0): 42, 29, 39, (63,14,0): 43, 30, 40, (63,15,0): 45, 29, 40, (63,16,0): 45, 29, 40, (63,17,0): 45, 29, 40, (63,18,0): 46, 30, 41, (63,19,0): 46, 30, 41, (63,20,0): 47, 31, 42, (63,21,0): 47, 31, 42, (63,22,0): 48, 32, 43, (63,23,0): 49, 31, 43, (63,24,0): 50, 32, 44, (63,25,0): 50, 32, 44, (63,26,0): 50, 32, 44, (63,27,0): 49, 31, 43, (63,28,0): 49, 31, 43, (63,29,0): 48, 30, 42, (63,30,0): 48, 30, 42, (63,31,0): 48, 30, 42, (63,32,0): 48, 32, 45, (63,33,0): 48, 32, 45, (63,34,0): 48, 31, 47, (63,35,0): 48, 32, 45, (63,36,0): 48, 31, 47, (63,37,0): 48, 32, 45, (63,38,0): 48, 31, 47, (63,39,0): 48, 32, 45, (63,40,0): 50, 33, 49, (63,41,0): 50, 34, 47, (63,42,0): 50, 33, 49, (63,43,0): 50, 34, 47, (63,44,0): 50, 33, 49, (63,45,0): 50, 34, 47, (63,46,0): 50, 33, 49, (63,47,0): 51, 33, 47, (63,48,0): 54, 33, 50, (63,49,0): 54, 33, 48, (63,50,0): 55, 32, 50, (63,51,0): 54, 33, 48, (63,52,0): 55, 32, 50, (63,53,0): 54, 33, 48, (63,54,0): 55, 32, 50, (63,55,0): 54, 33, 48, (63,56,0): 55, 32, 50, (63,57,0): 53, 32, 47, (63,58,0): 52, 29, 47, (63,59,0): 50, 29, 44, (63,60,0): 50, 27, 45, (63,61,0): 50, 29, 44, (63,62,0): 51, 28, 46, (63,63,0): 51, 30, 45, (63,64,0): 49, 28, 43, (63,65,0): 47, 29, 41, (63,66,0): 47, 29, 43, (63,67,0): 46, 28, 42, (63,68,0): 46, 28, 42, (63,69,0): 45, 27, 41, (63,70,0): 44, 28, 41, (63,71,0): 44, 27, 43, (63,72,0): 40, 26, 41, (63,73,0): 40, 26, 43, (63,74,0): 39, 26, 43, (63,75,0): 39, 26, 43, (63,76,0): 39, 26, 44, (63,77,0): 39, 26, 44, (63,78,0): 39, 26, 44, (63,79,0): 39, 26, 44, (63,80,0): 38, 25, 43, (63,81,0): 37, 26, 42, (63,82,0): 38, 25, 43, (63,83,0): 37, 26, 42, (63,84,0): 38, 25, 43, (63,85,0): 37, 26, 42, (63,86,0): 38, 25, 43, (63,87,0): 37, 26, 42, (63,88,0): 38, 25, 43, (63,89,0): 37, 26, 42, (63,90,0): 38, 25, 43, (63,91,0): 37, 26, 42, (63,92,0): 38, 25, 43, (63,93,0): 37, 26, 42, (63,94,0): 38, 25, 43, (63,95,0): 37, 26, 43, (63,96,0): 35, 23, 43, (63,97,0): 33, 24, 43, (63,98,0): 33, 24, 45, (63,99,0): 33, 24, 43, (63,100,0): 33, 24, 45, (63,101,0): 33, 24, 43, (63,102,0): 33, 24, 45, (63,103,0): 33, 24, 43, (63,104,0): 33, 24, 45, (63,105,0): 32, 25, 43, (63,106,0): 32, 23, 44, (63,107,0): 31, 24, 42, (63,108,0): 30, 22, 43, (63,109,0): 30, 23, 41, (63,110,0): 29, 21, 42, (63,111,0): 29, 21, 42, (63,112,0): 24, 19, 41, (63,113,0): 23, 20, 41, (63,114,0): 24, 21, 42, (63,115,0): 24, 21, 42, (63,116,0): 25, 22, 43, (63,117,0): 25, 22, 43, (63,118,0): 26, 23, 44, (63,119,0): 26, 23, 44, (63,120,0): 26, 23, 44, (63,121,0): 26, 23, 44, (63,122,0): 26, 23, 44, (63,123,0): 26, 23, 44, (63,124,0): 26, 23, 44, (63,125,0): 26, 23, 44, (63,126,0): 26, 23, 44, (63,127,0): 27, 22, 44, (63,128,0): 30, 22, 43, (63,129,0): 31, 22, 41, (63,130,0): 31, 22, 43, (63,131,0): 30, 21, 40, (63,132,0): 30, 21, 42, (63,133,0): 29, 20, 39, (63,134,0): 29, 20, 41, (63,135,0): 29, 20, 39, (63,136,0): 30, 21, 42, (63,137,0): 30, 21, 40, (63,138,0): 29, 20, 41, (63,139,0): 29, 20, 39, (63,140,0): 28, 19, 40, (63,141,0): 28, 19, 38, (63,142,0): 27, 18, 39, (63,143,0): 27, 18, 37, (63,144,0): 25, 18, 36, (63,145,0): 25, 18, 36, (63,146,0): 25, 18, 36, (63,147,0): 25, 18, 36, (63,148,0): 25, 18, 36, (63,149,0): 25, 18, 36, (63,150,0): 25, 18, 36, (63,151,0): 25, 18, 36, (63,152,0): 28, 21, 39, (63,153,0): 28, 21, 39, (63,154,0): 28, 21, 39, (63,155,0): 29, 22, 40, (63,156,0): 29, 22, 40, (63,157,0): 30, 23, 41, (63,158,0): 30, 23, 41, (63,159,0): 31, 24, 42, (63,160,0): 32, 25, 43, (63,161,0): 32, 25, 43, (63,162,0): 31, 24, 42, (63,163,0): 31, 24, 42, (63,164,0): 30, 23, 41, (63,165,0): 30, 23, 41, (63,166,0): 29, 22, 40, (63,167,0): 29, 22, 40, (63,168,0): 30, 23, 41, (63,169,0): 30, 23, 41, (63,170,0): 30, 23, 41, (63,171,0): 30, 23, 41, (63,172,0): 30, 23, 41, (63,173,0): 30, 23, 41, (63,174,0): 30, 23, 41, (63,175,0): 30, 23, 41, (63,176,0): 31, 23, 46, (63,177,0): 31, 23, 46, (63,178,0): 31, 23, 46, (63,179,0): 31, 23, 46, (63,180,0): 31, 23, 46, (63,181,0): 31, 23, 46, (63,182,0): 31, 23, 46, (63,183,0): 31, 23, 46, (63,184,0): 32, 24, 47, (63,185,0): 32, 24, 47, (63,186,0): 32, 24, 47, (63,187,0): 32, 24, 47, (63,188,0): 32, 24, 47, (63,189,0): 32, 24, 47, (63,190,0): 32, 24, 47, (63,191,0): 32, 24, 45, (63,192,0): 31, 23, 44, (63,193,0): 31, 24, 42, (63,194,0): 32, 25, 43, (63,195,0): 33, 26, 44, (63,196,0): 34, 27, 45, (63,197,0): 35, 28, 46, (63,198,0): 37, 28, 47, (63,199,0): 37, 28, 47, (63,200,0): 40, 28, 48, (63,201,0): 40, 28, 48, (63,202,0): 40, 28, 48, (63,203,0): 41, 29, 49, (63,204,0): 41, 29, 49, (63,205,0): 42, 30, 50, (63,206,0): 43, 30, 50, (63,207,0): 43, 30, 50, (63,208,0): 50, 33, 52, (63,209,0): 51, 32, 52, (63,210,0): 51, 32, 51, (63,211,0): 51, 32, 51, (63,212,0): 50, 31, 50, (63,213,0): 52, 31, 50, (63,214,0): 52, 31, 48, (63,215,0): 52, 31, 48, (63,216,0): 55, 32, 48, (63,217,0): 56, 33, 49, (63,218,0): 57, 34, 50, (63,219,0): 59, 35, 51, (63,220,0): 59, 35, 49, (63,221,0): 58, 34, 48, (63,222,0): 57, 33, 47, (63,223,0): 58, 31, 46, (63,224,0): 61, 35, 48, (63,225,0): 61, 35, 48, (63,226,0): 62, 36, 49, (63,227,0): 62, 36, 49, (63,228,0): 63, 37, 50, (63,229,0): 63, 37, 48, (63,230,0): 64, 38, 49, (63,231,0): 64, 38, 49, (63,232,0): 64, 38, 49, (63,233,0): 63, 37, 48, (63,234,0): 62, 36, 47, (63,235,0): 60, 34, 45, (63,236,0): 60, 32, 44, (63,237,0): 59, 33, 44, (63,238,0): 61, 33, 45, (63,239,0): 61, 33, 45, (63,240,0): 67, 37, 47, (63,241,0): 68, 36, 47, (63,242,0): 68, 36, 47, (63,243,0): 68, 36, 47, (63,244,0): 68, 37, 45, (63,245,0): 68, 37, 45, (63,246,0): 68, 37, 45, (63,247,0): 68, 37, 43, (63,248,0): 71, 40, 46, (63,249,0): 71, 40, 46, (63,250,0): 71, 40, 45, (63,251,0): 72, 40, 45, (63,252,0): 72, 40, 45, (63,253,0): 72, 40, 43, (63,254,0): 72, 40, 43, (63,255,0): 72, 40, 43, (63,256,0): 71, 39, 44, (63,257,0): 71, 39, 44, (63,258,0): 74, 39, 43, (63,259,0): 75, 40, 44, (63,260,0): 76, 41, 45, (63,261,0): 77, 42, 46, (63,262,0): 79, 43, 47, (63,263,0): 79, 43, 45, (63,264,0): 82, 43, 46, (63,265,0): 82, 43, 46, (63,266,0): 82, 43, 46, (63,267,0): 83, 44, 47, (63,268,0): 84, 44, 45, (63,269,0): 85, 45, 46, (63,270,0): 85, 45, 46, (63,271,0): 86, 46, 47, (63,272,0): 88, 46, 50, (63,273,0): 88, 46, 50, (63,274,0): 89, 47, 51, (63,275,0): 89, 47, 51, (63,276,0): 90, 48, 52, (63,277,0): 90, 48, 52, (63,278,0): 91, 49, 53, (63,279,0): 91, 49, 53, (63,280,0): 93, 51, 55, (63,281,0): 92, 50, 54, (63,282,0): 92, 50, 54, (63,283,0): 92, 50, 54, (63,284,0): 93, 51, 55, (63,285,0): 95, 53, 57, (63,286,0): 97, 55, 59, (63,287,0): 100, 55, 58, (63,288,0): 101, 56, 53, (63,289,0): 107, 59, 55, (63,290,0): 111, 64, 58, (63,291,0): 114, 66, 56, (63,292,0): 116, 68, 56, (63,293,0): 119, 70, 56, (63,294,0): 123, 74, 59, (63,295,0): 129, 78, 61, (63,296,0): 130, 77, 59, (63,297,0): 133, 81, 60, (63,298,0): 135, 83, 61, (63,299,0): 139, 85, 61, (63,300,0): 141, 87, 61, (63,301,0): 147, 93, 65, (63,302,0): 156, 101, 71, (63,303,0): 163, 108, 69, (63,304,0): 176, 113, 60, (63,305,0): 193, 125, 62, (63,306,0): 212, 139, 70, (63,307,0): 223, 147, 71, (63,308,0): 224, 147, 67, (63,309,0): 218, 142, 64, (63,310,0): 211, 142, 65, (63,311,0): 209, 143, 69, (63,312,0): 201, 141, 68, (63,313,0): 199, 141, 68, (63,314,0): 201, 141, 68, (63,315,0): 204, 144, 71, (63,316,0): 205, 147, 74, (63,317,0): 203, 146, 75, (63,318,0): 198, 140, 76, (63,319,0): 189, 138, 75, (63,320,0): 178, 133, 74, (63,321,0): 173, 133, 74, (63,322,0): 168, 129, 70, (63,323,0): 162, 126, 68, (63,324,0): 157, 122, 66, (63,325,0): 153, 120, 66, (63,326,0): 150, 119, 65, (63,327,0): 149, 119, 67, (63,328,0): 149, 119, 69, (63,329,0): 147, 119, 69, (63,330,0): 147, 119, 71, (63,331,0): 147, 119, 72, (63,332,0): 148, 119, 75, (63,333,0): 149, 120, 78, (63,334,0): 153, 121, 80, (63,335,0): 153, 121, 80, (63,336,0): 153, 121, 80, (63,337,0): 152, 120, 79, (63,338,0): 151, 117, 79, (63,339,0): 147, 115, 76, (63,340,0): 145, 111, 74, (63,341,0): 142, 110, 72, (63,342,0): 141, 107, 72, (63,343,0): 139, 106, 73, (63,344,0): 137, 102, 72, (63,345,0): 135, 102, 71, (63,346,0): 135, 100, 72, (63,347,0): 133, 99, 71, (63,348,0): 133, 97, 71, (63,349,0): 133, 99, 72, (63,350,0): 135, 99, 75, (63,351,0): 135, 101, 76, (63,352,0): 133, 101, 76, (63,353,0): 132, 102, 76, (63,354,0): 133, 101, 76, (63,355,0): 133, 101, 76, (63,356,0): 134, 102, 77, (63,357,0): 136, 104, 79, (63,358,0): 138, 106, 81, (63,359,0): 139, 107, 82, (63,360,0): 144, 112, 87, (63,361,0): 143, 111, 86, (63,362,0): 143, 111, 86, (63,363,0): 142, 110, 85, (63,364,0): 142, 110, 85, (63,365,0): 141, 109, 84, (63,366,0): 141, 109, 84, (63,367,0): 143, 109, 84, (63,368,0): 146, 112, 87, (63,369,0): 147, 111, 87, (63,370,0): 147, 111, 87, (63,371,0): 148, 112, 88, (63,372,0): 149, 111, 88, (63,373,0): 152, 111, 89, (63,374,0): 152, 111, 89, (63,375,0): 153, 111, 89, (63,376,0): 158, 113, 92, (63,377,0): 159, 112, 92, (63,378,0): 161, 113, 93, (63,379,0): 163, 112, 93, (63,380,0): 163, 112, 93, (63,381,0): 164, 111, 93, (63,382,0): 166, 110, 93, (63,383,0): 164, 111, 93, (63,384,0): 161, 113, 93, (63,385,0): 162, 114, 94, (63,386,0): 166, 115, 94, (63,387,0): 172, 117, 96, (63,388,0): 176, 120, 95, (63,389,0): 182, 122, 96, (63,390,0): 185, 124, 95, (63,391,0): 189, 124, 94, (63,392,0): 193, 126, 97, (63,393,0): 195, 129, 97, (63,394,0): 197, 131, 97, (63,395,0): 197, 131, 96, (63,396,0): 195, 130, 92, (63,397,0): 194, 130, 92, (63,398,0): 196, 133, 92, (63,399,0): 198, 134, 96, (63,400,0): 195, 131, 96, (63,401,0): 195, 131, 96, (63,402,0): 196, 132, 97, (63,403,0): 196, 132, 96, (63,404,0): 196, 134, 97, (63,405,0): 197, 133, 95, (63,406,0): 198, 135, 94, (63,407,0): 199, 135, 91, (63,408,0): 211, 144, 99, (63,409,0): 217, 147, 98, (63,410,0): 223, 149, 100, (63,411,0): 229, 152, 100, (63,412,0): 233, 150, 98, (63,413,0): 233, 146, 93, (63,414,0): 231, 141, 88, (63,415,0): 224, 139, 85, (63,416,0): 212, 140, 90, (63,417,0): 207, 141, 93, (63,418,0): 205, 138, 93, (63,419,0): 201, 134, 89, (63,420,0): 191, 127, 83, (63,421,0): 181, 118, 75, (63,422,0): 168, 111, 68, (63,423,0): 160, 107, 65, (63,424,0): 162, 115, 73, (63,425,0): 159, 116, 74, (63,426,0): 160, 118, 78, (63,427,0): 162, 123, 82, (63,428,0): 166, 127, 86, (63,429,0): 169, 127, 87, (63,430,0): 168, 125, 83, (63,431,0): 164, 121, 79, (63,432,0): 171, 128, 86, (63,433,0): 174, 131, 89, (63,434,0): 174, 132, 92, (63,435,0): 171, 129, 87, (63,436,0): 164, 125, 84, (63,437,0): 159, 122, 80, (63,438,0): 156, 121, 79, (63,439,0): 156, 123, 80, (63,440,0): 155, 122, 79, (63,441,0): 151, 120, 76, (63,442,0): 149, 118, 74, (63,443,0): 148, 117, 73, (63,444,0): 151, 118, 75, (63,445,0): 151, 118, 75, (63,446,0): 151, 116, 74, (63,447,0): 148, 115, 72, (63,448,0): 145, 111, 73, (63,449,0): 142, 110, 72, (63,450,0): 139, 105, 68, (63,451,0): 135, 103, 65, (63,452,0): 132, 99, 64, (63,453,0): 131, 98, 63, (63,454,0): 131, 98, 65, (63,455,0): 131, 98, 67, (63,456,0): 132, 99, 68, (63,457,0): 130, 99, 70, (63,458,0): 129, 98, 70, (63,459,0): 127, 96, 68, (63,460,0): 124, 92, 67, (63,461,0): 120, 88, 63, (63,462,0): 115, 85, 59, (63,463,0): 112, 81, 60, (63,464,0): 102, 74, 60, (63,465,0): 102, 74, 62, (63,466,0): 101, 75, 62, (63,467,0): 102, 76, 63, (63,468,0): 102, 79, 65, (63,469,0): 104, 81, 67, (63,470,0): 105, 83, 69, (63,471,0): 107, 85, 71, (63,472,0): 104, 85, 70, (63,473,0): 102, 85, 69, (63,474,0): 102, 85, 69, (63,475,0): 101, 84, 68, (63,476,0): 101, 84, 68, (63,477,0): 100, 83, 67, (63,478,0): 99, 83, 67, (63,479,0): 100, 82, 68, (63,480,0): 106, 86, 75, (63,481,0): 107, 85, 74, (63,482,0): 105, 83, 72, (63,483,0): 104, 82, 71, (63,484,0): 103, 79, 69, (63,485,0): 101, 77, 67, (63,486,0): 99, 75, 65, (63,487,0): 99, 74, 67, (63,488,0): 96, 71, 64, (63,489,0): 96, 71, 64, (63,490,0): 96, 71, 64, (63,491,0): 95, 70, 63, (63,492,0): 94, 71, 63, (63,493,0): 93, 70, 62, (63,494,0): 93, 70, 62, (63,495,0): 93, 70, 62, (63,496,0): 88, 66, 55, (63,497,0): 87, 68, 54, (63,498,0): 91, 69, 56, (63,499,0): 94, 72, 59, (63,500,0): 97, 75, 62, (63,501,0): 99, 77, 64, (63,502,0): 102, 78, 66, (63,503,0): 103, 79, 67, (63,504,0): 105, 81, 69, (63,505,0): 104, 80, 68, (63,506,0): 104, 80, 68, (63,507,0): 104, 80, 68, (63,508,0): 107, 80, 69, (63,509,0): 108, 81, 70, (63,510,0): 109, 82, 71, (63,511,0): 109, 82, 71, (63,512,0): 111, 83, 69, (63,513,0): 110, 82, 68, (63,514,0): 110, 82, 68, (63,515,0): 109, 81, 67, (63,516,0): 110, 82, 68, (63,517,0): 112, 83, 69, (63,518,0): 114, 85, 71, (63,519,0): 115, 86, 72, (63,520,0): 111, 82, 68, (63,521,0): 111, 82, 68, (63,522,0): 111, 82, 68, (63,523,0): 114, 82, 69, (63,524,0): 114, 82, 71, (63,525,0): 115, 83, 72, (63,526,0): 115, 83, 72, (63,527,0): 114, 84, 73, (63,528,0): 110, 82, 71, (63,529,0): 108, 81, 70, (63,530,0): 108, 81, 72, (63,531,0): 108, 81, 72, (63,532,0): 107, 80, 73, (63,533,0): 106, 79, 72, (63,534,0): 106, 78, 74, (63,535,0): 106, 78, 74, (63,536,0): 105, 76, 72, (63,537,0): 107, 76, 71, (63,538,0): 110, 77, 72, (63,539,0): 112, 77, 71, (63,540,0): 114, 77, 69, (63,541,0): 115, 76, 69, (63,542,0): 114, 76, 67, (63,543,0): 110, 75, 69, (63,544,0): 103, 75, 74, (63,545,0): 96, 74, 76, (63,546,0): 95, 70, 74, (63,547,0): 93, 67, 70, (63,548,0): 94, 63, 68, (63,549,0): 94, 62, 67, (63,550,0): 97, 60, 67, (63,551,0): 97, 60, 67, (63,552,0): 94, 59, 65, (63,553,0): 89, 60, 64, (63,554,0): 84, 59, 63, (63,555,0): 80, 58, 61, (63,556,0): 78, 55, 61, (63,557,0): 80, 55, 61, (63,558,0): 85, 52, 61, (63,559,0): 84, 53, 61, (63,560,0): 77, 52, 56, (63,561,0): 74, 54, 55, (63,562,0): 75, 55, 54, (63,563,0): 77, 57, 56, (63,564,0): 78, 58, 57, (63,565,0): 79, 59, 58, (63,566,0): 80, 61, 57, (63,567,0): 81, 62, 56, (63,568,0): 86, 67, 61, (63,569,0): 86, 67, 61, (63,570,0): 87, 68, 62, (63,571,0): 86, 69, 61, (63,572,0): 88, 69, 62, (63,573,0): 87, 70, 60, (63,574,0): 89, 71, 61, (63,575,0): 89, 70, 63, (63,576,0): 86, 67, 61, (63,577,0): 86, 67, 63, (63,578,0): 85, 66, 62, (63,579,0): 84, 65, 61, (63,580,0): 83, 63, 62, (63,581,0): 82, 62, 61, (63,582,0): 81, 61, 60, (63,583,0): 81, 61, 60, (63,584,0): 82, 62, 61, (63,585,0): 80, 60, 61, (63,586,0): 77, 57, 58, (63,587,0): 73, 53, 54, (63,588,0): 70, 50, 51, (63,589,0): 68, 48, 49, (63,590,0): 67, 47, 49, (63,591,0): 66, 46, 48, (63,592,0): 64, 44, 46, (63,593,0): 64, 44, 46, (63,594,0): 64, 44, 46, (63,595,0): 64, 44, 46, (63,596,0): 63, 43, 45, (63,597,0): 63, 43, 45, (63,598,0): 63, 43, 45, (63,599,0): 63, 43, 45, (64,0,0): 37, 30, 46, (64,1,0): 37, 30, 46, (64,2,0): 37, 31, 45, (64,3,0): 37, 31, 45, (64,4,0): 37, 31, 45, (64,5,0): 38, 30, 45, (64,6,0): 38, 30, 43, (64,7,0): 38, 30, 43, (64,8,0): 38, 28, 39, (64,9,0): 38, 28, 39, (64,10,0): 38, 28, 39, (64,11,0): 39, 27, 39, (64,12,0): 39, 27, 37, (64,13,0): 39, 27, 37, (64,14,0): 39, 27, 37, (64,15,0): 40, 27, 37, (64,16,0): 43, 30, 40, (64,17,0): 43, 30, 40, (64,18,0): 43, 30, 40, (64,19,0): 43, 30, 40, (64,20,0): 43, 30, 40, (64,21,0): 43, 30, 40, (64,22,0): 43, 30, 40, (64,23,0): 45, 29, 40, (64,24,0): 46, 30, 41, (64,25,0): 47, 31, 42, (64,26,0): 48, 30, 42, (64,27,0): 49, 31, 43, (64,28,0): 49, 31, 43, (64,29,0): 50, 32, 44, (64,30,0): 50, 32, 44, (64,31,0): 50, 32, 44, (64,32,0): 49, 31, 43, (64,33,0): 49, 31, 43, (64,34,0): 49, 31, 45, (64,35,0): 49, 31, 43, (64,36,0): 49, 31, 45, (64,37,0): 49, 31, 43, (64,38,0): 49, 31, 45, (64,39,0): 49, 31, 43, (64,40,0): 51, 33, 47, (64,41,0): 51, 33, 45, (64,42,0): 51, 33, 47, (64,43,0): 51, 33, 45, (64,44,0): 51, 33, 47, (64,45,0): 51, 33, 45, (64,46,0): 51, 33, 47, (64,47,0): 51, 33, 45, (64,48,0): 51, 33, 47, (64,49,0): 51, 33, 45, (64,50,0): 53, 32, 47, (64,51,0): 51, 33, 45, (64,52,0): 53, 32, 47, (64,53,0): 51, 33, 45, (64,54,0): 53, 32, 47, (64,55,0): 51, 33, 45, (64,56,0): 52, 31, 46, (64,57,0): 50, 32, 44, (64,58,0): 52, 31, 46, (64,59,0): 49, 31, 43, (64,60,0): 51, 30, 45, (64,61,0): 48, 30, 42, (64,62,0): 50, 29, 44, (64,63,0): 50, 29, 44, (64,64,0): 51, 30, 45, (64,65,0): 50, 29, 44, (64,66,0): 48, 30, 46, (64,67,0): 47, 29, 45, (64,68,0): 45, 27, 43, (64,69,0): 44, 26, 42, (64,70,0): 43, 26, 42, (64,71,0): 42, 25, 43, (64,72,0): 41, 27, 44, (64,73,0): 41, 26, 45, (64,74,0): 41, 26, 45, (64,75,0): 40, 25, 44, (64,76,0): 39, 26, 46, (64,77,0): 38, 25, 45, (64,78,0): 38, 25, 45, (64,79,0): 37, 24, 44, (64,80,0): 36, 24, 44, (64,81,0): 34, 25, 42, (64,82,0): 36, 24, 44, (64,83,0): 34, 25, 42, (64,84,0): 36, 24, 44, (64,85,0): 34, 25, 42, (64,86,0): 36, 24, 44, (64,87,0): 34, 25, 42, (64,88,0): 38, 26, 46, (64,89,0): 36, 27, 44, (64,90,0): 37, 25, 45, (64,91,0): 35, 26, 43, (64,92,0): 36, 24, 44, (64,93,0): 34, 25, 42, (64,94,0): 35, 23, 43, (64,95,0): 35, 23, 43, (64,96,0): 34, 22, 44, (64,97,0): 34, 22, 44, (64,98,0): 32, 22, 46, (64,99,0): 32, 23, 44, (64,100,0): 32, 22, 46, (64,101,0): 32, 23, 44, (64,102,0): 31, 23, 46, (64,103,0): 31, 23, 44, (64,104,0): 33, 25, 48, (64,105,0): 30, 25, 45, (64,106,0): 30, 22, 45, (64,107,0): 26, 21, 41, (64,108,0): 25, 20, 42, (64,109,0): 25, 20, 40, (64,110,0): 25, 20, 42, (64,111,0): 25, 20, 42, (64,112,0): 22, 19, 40, (64,113,0): 22, 19, 40, (64,114,0): 22, 19, 40, (64,115,0): 22, 19, 40, (64,116,0): 22, 19, 40, (64,117,0): 22, 19, 40, (64,118,0): 22, 19, 40, (64,119,0): 22, 19, 40, (64,120,0): 26, 23, 44, (64,121,0): 26, 23, 44, (64,122,0): 25, 22, 43, (64,123,0): 25, 22, 43, (64,124,0): 24, 21, 42, (64,125,0): 24, 21, 42, (64,126,0): 23, 20, 41, (64,127,0): 24, 19, 41, (64,128,0): 29, 21, 44, (64,129,0): 29, 21, 42, (64,130,0): 29, 21, 44, (64,131,0): 29, 21, 42, (64,132,0): 29, 21, 44, (64,133,0): 29, 21, 42, (64,134,0): 29, 21, 44, (64,135,0): 29, 21, 42, (64,136,0): 26, 18, 41, (64,137,0): 27, 19, 40, (64,138,0): 27, 19, 42, (64,139,0): 27, 19, 40, (64,140,0): 27, 19, 42, (64,141,0): 26, 18, 39, (64,142,0): 24, 16, 39, (64,143,0): 23, 15, 36, (64,144,0): 24, 20, 37, (64,145,0): 24, 20, 37, (64,146,0): 24, 20, 37, (64,147,0): 23, 19, 36, (64,148,0): 22, 18, 35, (64,149,0): 21, 17, 34, (64,150,0): 20, 16, 33, (64,151,0): 20, 16, 33, (64,152,0): 20, 16, 33, (64,153,0): 21, 17, 34, (64,154,0): 22, 18, 35, (64,155,0): 23, 19, 36, (64,156,0): 25, 21, 38, (64,157,0): 26, 22, 39, (64,158,0): 27, 23, 40, (64,159,0): 28, 24, 41, (64,160,0): 31, 24, 42, (64,161,0): 31, 24, 42, (64,162,0): 31, 24, 42, (64,163,0): 31, 24, 42, (64,164,0): 31, 24, 42, (64,165,0): 31, 24, 42, (64,166,0): 31, 24, 42, (64,167,0): 31, 24, 42, (64,168,0): 29, 22, 40, (64,169,0): 29, 22, 40, (64,170,0): 29, 22, 40, (64,171,0): 29, 22, 40, (64,172,0): 29, 22, 40, (64,173,0): 29, 22, 40, (64,174,0): 29, 22, 40, (64,175,0): 29, 22, 40, (64,176,0): 32, 24, 47, (64,177,0): 32, 24, 47, (64,178,0): 32, 24, 47, (64,179,0): 32, 24, 47, (64,180,0): 32, 24, 47, (64,181,0): 32, 24, 47, (64,182,0): 32, 24, 47, (64,183,0): 32, 24, 47, (64,184,0): 31, 23, 46, (64,185,0): 30, 22, 45, (64,186,0): 29, 21, 44, (64,187,0): 29, 21, 44, (64,188,0): 30, 22, 45, (64,189,0): 31, 23, 46, (64,190,0): 33, 25, 48, (64,191,0): 34, 26, 47, (64,192,0): 37, 29, 50, (64,193,0): 38, 29, 48, (64,194,0): 38, 29, 48, (64,195,0): 38, 29, 48, (64,196,0): 38, 29, 48, (64,197,0): 38, 29, 48, (64,198,0): 38, 29, 48, (64,199,0): 38, 29, 48, (64,200,0): 39, 30, 49, (64,201,0): 39, 30, 49, (64,202,0): 40, 31, 50, (64,203,0): 40, 31, 50, (64,204,0): 41, 32, 51, (64,205,0): 41, 32, 51, (64,206,0): 44, 32, 52, (64,207,0): 44, 32, 52, (64,208,0): 46, 31, 50, (64,209,0): 48, 31, 50, (64,210,0): 49, 32, 50, (64,211,0): 49, 32, 50, (64,212,0): 50, 33, 51, (64,213,0): 51, 32, 51, (64,214,0): 52, 34, 50, (64,215,0): 52, 34, 50, (64,216,0): 54, 33, 48, (64,217,0): 54, 33, 48, (64,218,0): 55, 34, 49, (64,219,0): 56, 33, 49, (64,220,0): 57, 35, 48, (64,221,0): 57, 35, 48, (64,222,0): 58, 36, 49, (64,223,0): 59, 35, 49, (64,224,0): 59, 35, 49, (64,225,0): 59, 35, 49, (64,226,0): 60, 36, 50, (64,227,0): 60, 36, 50, (64,228,0): 61, 37, 51, (64,229,0): 61, 37, 50, (64,230,0): 64, 38, 51, (64,231,0): 64, 38, 51, (64,232,0): 65, 37, 51, (64,233,0): 65, 37, 51, (64,234,0): 64, 36, 48, (64,235,0): 64, 36, 48, (64,236,0): 65, 35, 45, (64,237,0): 63, 36, 45, (64,238,0): 64, 34, 44, (64,239,0): 64, 34, 44, (64,240,0): 66, 36, 48, (64,241,0): 68, 38, 50, (64,242,0): 70, 40, 50, (64,243,0): 72, 42, 52, (64,244,0): 73, 41, 52, (64,245,0): 72, 41, 49, (64,246,0): 72, 39, 48, (64,247,0): 71, 38, 47, (64,248,0): 74, 41, 48, (64,249,0): 74, 41, 48, (64,250,0): 74, 41, 48, (64,251,0): 76, 41, 47, (64,252,0): 76, 41, 47, (64,253,0): 76, 41, 47, (64,254,0): 76, 41, 47, (64,255,0): 76, 41, 47, (64,256,0): 77, 42, 48, (64,257,0): 76, 41, 47, (64,258,0): 77, 40, 47, (64,259,0): 76, 39, 46, (64,260,0): 77, 40, 47, (64,261,0): 78, 41, 48, (64,262,0): 82, 42, 50, (64,263,0): 83, 44, 49, (64,264,0): 84, 43, 49, (64,265,0): 84, 43, 49, (64,266,0): 85, 44, 50, (64,267,0): 85, 44, 50, (64,268,0): 87, 44, 51, (64,269,0): 87, 44, 51, (64,270,0): 88, 45, 52, (64,271,0): 88, 45, 52, (64,272,0): 89, 47, 51, (64,273,0): 90, 48, 52, (64,274,0): 90, 48, 52, (64,275,0): 91, 49, 53, (64,276,0): 91, 49, 53, (64,277,0): 92, 50, 54, (64,278,0): 92, 50, 54, (64,279,0): 92, 50, 54, (64,280,0): 93, 51, 55, (64,281,0): 93, 51, 55, (64,282,0): 93, 51, 55, (64,283,0): 93, 51, 55, (64,284,0): 95, 53, 57, (64,285,0): 97, 55, 59, (64,286,0): 100, 58, 62, (64,287,0): 101, 59, 61, (64,288,0): 102, 58, 59, (64,289,0): 106, 60, 60, (64,290,0): 110, 65, 60, (64,291,0): 113, 66, 56, (64,292,0): 116, 68, 54, (64,293,0): 120, 71, 54, (64,294,0): 129, 76, 58, (64,295,0): 135, 80, 60, (64,296,0): 135, 78, 59, (64,297,0): 138, 81, 61, (64,298,0): 142, 84, 62, (64,299,0): 147, 87, 63, (64,300,0): 150, 90, 62, (64,301,0): 156, 97, 65, (64,302,0): 164, 104, 70, (64,303,0): 173, 110, 66, (64,304,0): 187, 112, 55, (64,305,0): 203, 124, 57, (64,306,0): 215, 137, 63, (64,307,0): 219, 142, 64, (64,308,0): 220, 144, 66, (64,309,0): 219, 146, 69, (64,310,0): 210, 142, 69, (64,311,0): 200, 136, 64, (64,312,0): 203, 140, 69, (64,313,0): 200, 140, 68, (64,314,0): 198, 141, 64, (64,315,0): 199, 142, 65, (64,316,0): 200, 143, 66, (64,317,0): 197, 139, 66, (64,318,0): 191, 132, 66, (64,319,0): 182, 128, 66, (64,320,0): 171, 129, 69, (64,321,0): 165, 130, 72, (64,322,0): 162, 127, 69, (64,323,0): 160, 125, 69, (64,324,0): 156, 124, 67, (64,325,0): 156, 123, 69, (64,326,0): 155, 124, 70, (64,327,0): 154, 124, 72, (64,328,0): 151, 121, 71, (64,329,0): 151, 121, 71, (64,330,0): 150, 122, 74, (64,331,0): 150, 122, 75, (64,332,0): 151, 123, 76, (64,333,0): 151, 122, 78, (64,334,0): 152, 123, 79, (64,335,0): 152, 123, 79, (64,336,0): 151, 122, 78, (64,337,0): 150, 121, 77, (64,338,0): 150, 119, 75, (64,339,0): 146, 117, 73, (64,340,0): 145, 113, 72, (64,341,0): 140, 111, 69, (64,342,0): 141, 109, 70, (64,343,0): 137, 107, 69, (64,344,0): 139, 106, 71, (64,345,0): 136, 106, 70, (64,346,0): 137, 104, 71, (64,347,0): 134, 103, 72, (64,348,0): 135, 101, 73, (64,349,0): 132, 101, 72, (64,350,0): 133, 99, 71, (64,351,0): 131, 100, 71, (64,352,0): 133, 103, 75, (64,353,0): 131, 104, 75, (64,354,0): 133, 103, 75, (64,355,0): 134, 104, 76, (64,356,0): 135, 105, 77, (64,357,0): 137, 107, 79, (64,358,0): 139, 109, 81, (64,359,0): 140, 110, 82, (64,360,0): 144, 113, 85, (64,361,0): 145, 114, 86, (64,362,0): 148, 114, 87, (64,363,0): 149, 115, 88, (64,364,0): 149, 115, 88, (64,365,0): 149, 115, 88, (64,366,0): 148, 114, 87, (64,367,0): 148, 112, 86, (64,368,0): 147, 111, 87, (64,369,0): 148, 110, 87, (64,370,0): 148, 110, 87, (64,371,0): 149, 111, 88, (64,372,0): 152, 111, 89, (64,373,0): 153, 112, 90, (64,374,0): 154, 113, 91, (64,375,0): 156, 114, 92, (64,376,0): 156, 114, 92, (64,377,0): 158, 113, 92, (64,378,0): 158, 113, 92, (64,379,0): 159, 112, 92, (64,380,0): 158, 111, 91, (64,381,0): 158, 111, 91, (64,382,0): 159, 111, 91, (64,383,0): 161, 110, 93, (64,384,0): 162, 108, 96, (64,385,0): 165, 109, 96, (64,386,0): 168, 111, 94, (64,387,0): 171, 115, 92, (64,388,0): 176, 119, 92, (64,389,0): 181, 125, 92, (64,390,0): 187, 129, 92, (64,391,0): 190, 130, 94, (64,392,0): 193, 130, 95, (64,393,0): 192, 129, 94, (64,394,0): 193, 129, 93, (64,395,0): 192, 128, 92, (64,396,0): 194, 130, 92, (64,397,0): 196, 133, 92, (64,398,0): 198, 135, 92, (64,399,0): 199, 137, 96, (64,400,0): 191, 131, 97, (64,401,0): 194, 133, 102, (64,402,0): 198, 135, 102, (64,403,0): 199, 135, 100, (64,404,0): 199, 134, 96, (64,405,0): 204, 135, 96, (64,406,0): 211, 138, 97, (64,407,0): 216, 142, 97, (64,408,0): 218, 141, 95, (64,409,0): 222, 144, 96, (64,410,0): 228, 148, 99, (64,411,0): 231, 149, 99, (64,412,0): 231, 148, 98, (64,413,0): 226, 143, 93, (64,414,0): 221, 138, 88, (64,415,0): 215, 134, 87, (64,416,0): 205, 134, 92, (64,417,0): 201, 133, 94, (64,418,0): 195, 130, 92, (64,419,0): 185, 121, 83, (64,420,0): 176, 114, 77, (64,421,0): 168, 110, 72, (64,422,0): 166, 112, 74, (64,423,0): 166, 117, 77, (64,424,0): 164, 117, 75, (64,425,0): 163, 118, 76, (64,426,0): 163, 120, 77, (64,427,0): 165, 124, 78, (64,428,0): 167, 127, 78, (64,429,0): 170, 128, 78, (64,430,0): 172, 131, 79, (64,431,0): 173, 131, 81, (64,432,0): 174, 131, 86, (64,433,0): 172, 131, 87, (64,434,0): 170, 128, 86, (64,435,0): 168, 127, 83, (64,436,0): 164, 125, 82, (64,437,0): 161, 124, 80, (64,438,0): 160, 123, 79, (64,439,0): 157, 123, 78, (64,440,0): 155, 122, 77, (64,441,0): 155, 122, 77, (64,442,0): 154, 123, 77, (64,443,0): 152, 121, 75, (64,444,0): 151, 120, 74, (64,445,0): 149, 118, 72, (64,446,0): 145, 117, 70, (64,447,0): 144, 115, 71, (64,448,0): 142, 113, 73, (64,449,0): 142, 113, 73, (64,450,0): 144, 112, 74, (64,451,0): 140, 110, 72, (64,452,0): 137, 107, 69, (64,453,0): 134, 104, 68, (64,454,0): 134, 101, 66, (64,455,0): 132, 99, 66, (64,456,0): 137, 104, 71, (64,457,0): 135, 102, 71, (64,458,0): 132, 99, 68, (64,459,0): 132, 98, 70, (64,460,0): 131, 97, 70, (64,461,0): 127, 93, 66, (64,462,0): 121, 85, 59, (64,463,0): 115, 81, 56, (64,464,0): 112, 76, 60, (64,465,0): 110, 76, 64, (64,466,0): 110, 78, 65, (64,467,0): 109, 80, 66, (64,468,0): 108, 80, 66, (64,469,0): 107, 81, 66, (64,470,0): 105, 82, 66, (64,471,0): 103, 82, 65, (64,472,0): 104, 85, 68, (64,473,0): 102, 85, 67, (64,474,0): 101, 84, 66, (64,475,0): 99, 84, 65, (64,476,0): 99, 84, 65, (64,477,0): 100, 85, 66, (64,478,0): 103, 86, 68, (64,479,0): 105, 88, 70, (64,480,0): 100, 83, 67, (64,481,0): 101, 83, 69, (64,482,0): 102, 83, 69, (64,483,0): 102, 83, 69, (64,484,0): 103, 81, 68, (64,485,0): 101, 79, 66, (64,486,0): 100, 76, 64, (64,487,0): 99, 75, 65, (64,488,0): 95, 71, 61, (64,489,0): 94, 70, 60, (64,490,0): 92, 69, 61, (64,491,0): 92, 69, 61, (64,492,0): 90, 70, 61, (64,493,0): 90, 70, 61, (64,494,0): 90, 72, 62, (64,495,0): 92, 72, 63, (64,496,0): 88, 66, 55, (64,497,0): 91, 69, 58, (64,498,0): 95, 71, 61, (64,499,0): 98, 76, 65, (64,500,0): 102, 80, 69, (64,501,0): 105, 83, 72, (64,502,0): 106, 84, 73, (64,503,0): 107, 85, 74, (64,504,0): 105, 83, 72, (64,505,0): 103, 83, 72, (64,506,0): 103, 83, 72, (64,507,0): 103, 83, 72, (64,508,0): 103, 83, 72, (64,509,0): 102, 82, 71, (64,510,0): 102, 82, 71, (64,511,0): 102, 83, 69, (64,512,0): 102, 83, 66, (64,513,0): 104, 83, 64, (64,514,0): 104, 83, 64, (64,515,0): 105, 84, 65, (64,516,0): 105, 84, 67, (64,517,0): 106, 83, 67, (64,518,0): 109, 83, 68, (64,519,0): 109, 83, 68, (64,520,0): 110, 82, 70, (64,521,0): 111, 83, 71, (64,522,0): 111, 83, 71, (64,523,0): 112, 82, 71, (64,524,0): 113, 83, 73, (64,525,0): 113, 83, 73, (64,526,0): 116, 83, 74, (64,527,0): 114, 84, 74, (64,528,0): 111, 84, 75, (64,529,0): 108, 84, 74, (64,530,0): 107, 83, 71, (64,531,0): 106, 82, 70, (64,532,0): 108, 81, 72, (64,533,0): 109, 82, 73, (64,534,0): 111, 83, 72, (64,535,0): 111, 83, 72, (64,536,0): 108, 80, 69, (64,537,0): 109, 81, 69, (64,538,0): 110, 80, 69, (64,539,0): 112, 80, 69, (64,540,0): 111, 79, 66, (64,541,0): 111, 77, 65, (64,542,0): 109, 75, 63, (64,543,0): 107, 75, 64, (64,544,0): 104, 75, 71, (64,545,0): 102, 74, 71, (64,546,0): 98, 72, 71, (64,547,0): 97, 69, 68, (64,548,0): 95, 67, 66, (64,549,0): 93, 63, 63, (64,550,0): 91, 61, 61, (64,551,0): 90, 60, 60, (64,552,0): 87, 58, 60, (64,553,0): 84, 58, 59, (64,554,0): 81, 56, 59, (64,555,0): 77, 55, 57, (64,556,0): 75, 53, 55, (64,557,0): 73, 51, 53, (64,558,0): 75, 48, 53, (64,559,0): 73, 48, 52, (64,560,0): 77, 55, 57, (64,561,0): 77, 55, 57, (64,562,0): 77, 55, 57, (64,563,0): 78, 56, 58, (64,564,0): 80, 59, 58, (64,565,0): 82, 61, 60, (64,566,0): 84, 65, 61, (64,567,0): 85, 66, 60, (64,568,0): 82, 65, 58, (64,569,0): 85, 68, 60, (64,570,0): 88, 71, 63, (64,571,0): 88, 74, 63, (64,572,0): 91, 74, 64, (64,573,0): 87, 73, 60, (64,574,0): 87, 71, 58, (64,575,0): 85, 68, 58, (64,576,0): 86, 67, 61, (64,577,0): 86, 67, 63, (64,578,0): 85, 66, 62, (64,579,0): 84, 65, 61, (64,580,0): 83, 64, 60, (64,581,0): 82, 63, 59, (64,582,0): 81, 62, 58, (64,583,0): 81, 62, 58, (64,584,0): 82, 63, 59, (64,585,0): 79, 59, 58, (64,586,0): 76, 56, 55, (64,587,0): 72, 52, 51, (64,588,0): 70, 50, 49, (64,589,0): 69, 49, 48, (64,590,0): 69, 49, 48, (64,591,0): 69, 49, 48, (64,592,0): 63, 45, 45, (64,593,0): 63, 45, 45, (64,594,0): 62, 44, 44, (64,595,0): 61, 43, 43, (64,596,0): 60, 42, 42, (64,597,0): 59, 41, 41, (64,598,0): 58, 40, 40, (64,599,0): 58, 40, 40, (65,0,0): 35, 31, 46, (65,1,0): 35, 31, 46, (65,2,0): 37, 31, 45, (65,3,0): 37, 31, 45, (65,4,0): 37, 31, 45, (65,5,0): 37, 31, 45, (65,6,0): 38, 30, 43, (65,7,0): 38, 30, 43, (65,8,0): 38, 28, 39, (65,9,0): 38, 28, 39, (65,10,0): 38, 28, 39, (65,11,0): 38, 28, 39, (65,12,0): 39, 27, 37, (65,13,0): 39, 27, 37, (65,14,0): 39, 27, 37, (65,15,0): 39, 27, 37, (65,16,0): 42, 30, 40, (65,17,0): 42, 30, 40, (65,18,0): 42, 30, 40, (65,19,0): 42, 30, 40, (65,20,0): 42, 30, 40, (65,21,0): 42, 30, 40, (65,22,0): 43, 30, 40, (65,23,0): 43, 30, 40, (65,24,0): 46, 30, 41, (65,25,0): 47, 31, 42, (65,26,0): 48, 30, 42, (65,27,0): 48, 30, 42, (65,28,0): 49, 31, 43, (65,29,0): 49, 31, 43, (65,30,0): 50, 32, 44, (65,31,0): 50, 32, 44, (65,32,0): 49, 31, 43, (65,33,0): 49, 31, 43, (65,34,0): 49, 31, 43, (65,35,0): 49, 31, 43, (65,36,0): 49, 31, 43, (65,37,0): 49, 31, 43, (65,38,0): 49, 31, 43, (65,39,0): 49, 31, 43, (65,40,0): 51, 33, 45, (65,41,0): 51, 33, 45, (65,42,0): 51, 33, 45, (65,43,0): 51, 33, 45, (65,44,0): 51, 33, 45, (65,45,0): 51, 33, 45, (65,46,0): 51, 33, 45, (65,47,0): 51, 33, 45, (65,48,0): 51, 33, 45, (65,49,0): 51, 33, 45, (65,50,0): 51, 33, 45, (65,51,0): 51, 33, 45, (65,52,0): 51, 33, 45, (65,53,0): 51, 33, 45, (65,54,0): 51, 33, 45, (65,55,0): 51, 33, 45, (65,56,0): 50, 32, 44, (65,57,0): 50, 32, 44, (65,58,0): 50, 32, 44, (65,59,0): 49, 31, 43, (65,60,0): 49, 31, 43, (65,61,0): 48, 30, 42, (65,62,0): 48, 30, 42, (65,63,0): 48, 30, 42, (65,64,0): 51, 30, 47, (65,65,0): 50, 29, 46, (65,66,0): 48, 30, 46, (65,67,0): 47, 29, 45, (65,68,0): 45, 27, 43, (65,69,0): 44, 26, 42, (65,70,0): 43, 26, 44, (65,71,0): 42, 25, 43, (65,72,0): 41, 26, 45, (65,73,0): 41, 26, 45, (65,74,0): 40, 25, 46, (65,75,0): 40, 25, 46, (65,76,0): 38, 25, 45, (65,77,0): 38, 25, 45, (65,78,0): 38, 25, 45, (65,79,0): 36, 24, 44, (65,80,0): 36, 24, 44, (65,81,0): 34, 25, 44, (65,82,0): 34, 25, 44, (65,83,0): 34, 25, 44, (65,84,0): 34, 25, 44, (65,85,0): 34, 25, 44, (65,86,0): 34, 25, 44, (65,87,0): 34, 25, 44, (65,88,0): 36, 27, 46, (65,89,0): 35, 26, 45, (65,90,0): 35, 26, 45, (65,91,0): 34, 25, 44, (65,92,0): 34, 25, 44, (65,93,0): 33, 24, 43, (65,94,0): 33, 24, 43, (65,95,0): 33, 24, 43, (65,96,0): 34, 22, 46, (65,97,0): 34, 22, 46, (65,98,0): 32, 22, 46, (65,99,0): 32, 22, 46, (65,100,0): 32, 22, 46, (65,101,0): 32, 22, 46, (65,102,0): 31, 23, 46, (65,103,0): 31, 23, 46, (65,104,0): 31, 26, 48, (65,105,0): 30, 25, 47, (65,106,0): 28, 23, 45, (65,107,0): 26, 21, 43, (65,108,0): 24, 21, 42, (65,109,0): 24, 21, 42, (65,110,0): 24, 21, 42, (65,111,0): 24, 21, 42, (65,112,0): 22, 19, 40, (65,113,0): 22, 19, 40, (65,114,0): 22, 19, 40, (65,115,0): 22, 19, 40, (65,116,0): 22, 19, 40, (65,117,0): 22, 19, 40, (65,118,0): 22, 19, 40, (65,119,0): 22, 19, 40, (65,120,0): 26, 23, 44, (65,121,0): 25, 22, 43, (65,122,0): 25, 22, 43, (65,123,0): 24, 21, 42, (65,124,0): 24, 21, 42, (65,125,0): 23, 20, 41, (65,126,0): 23, 20, 41, (65,127,0): 23, 20, 41, (65,128,0): 28, 20, 43, (65,129,0): 28, 20, 43, (65,130,0): 28, 20, 43, (65,131,0): 28, 20, 43, (65,132,0): 28, 20, 43, (65,133,0): 28, 20, 43, (65,134,0): 28, 20, 43, (65,135,0): 28, 20, 43, (65,136,0): 26, 18, 41, (65,137,0): 26, 18, 41, (65,138,0): 27, 19, 42, (65,139,0): 27, 19, 42, (65,140,0): 27, 19, 42, (65,141,0): 25, 17, 40, (65,142,0): 24, 16, 39, (65,143,0): 21, 16, 36, (65,144,0): 23, 18, 38, (65,145,0): 22, 19, 36, (65,146,0): 22, 19, 36, (65,147,0): 21, 18, 35, (65,148,0): 20, 17, 34, (65,149,0): 19, 16, 33, (65,150,0): 19, 16, 33, (65,151,0): 19, 16, 33, (65,152,0): 20, 17, 34, (65,153,0): 20, 17, 34, (65,154,0): 21, 18, 35, (65,155,0): 22, 19, 36, (65,156,0): 24, 21, 38, (65,157,0): 25, 22, 39, (65,158,0): 26, 23, 40, (65,159,0): 26, 23, 40, (65,160,0): 31, 24, 42, (65,161,0): 31, 24, 42, (65,162,0): 31, 24, 42, (65,163,0): 31, 24, 42, (65,164,0): 31, 24, 42, (65,165,0): 31, 24, 42, (65,166,0): 31, 24, 42, (65,167,0): 31, 24, 42, (65,168,0): 29, 22, 40, (65,169,0): 29, 22, 40, (65,170,0): 29, 22, 40, (65,171,0): 29, 22, 40, (65,172,0): 29, 22, 40, (65,173,0): 29, 22, 40, (65,174,0): 29, 22, 40, (65,175,0): 29, 22, 40, (65,176,0): 32, 24, 47, (65,177,0): 32, 24, 47, (65,178,0): 32, 24, 47, (65,179,0): 32, 24, 47, (65,180,0): 32, 24, 47, (65,181,0): 32, 24, 47, (65,182,0): 32, 24, 47, (65,183,0): 32, 24, 47, (65,184,0): 32, 24, 47, (65,185,0): 31, 23, 46, (65,186,0): 30, 22, 45, (65,187,0): 30, 22, 45, (65,188,0): 31, 23, 46, (65,189,0): 32, 24, 47, (65,190,0): 33, 25, 48, (65,191,0): 34, 26, 47, (65,192,0): 38, 29, 50, (65,193,0): 38, 29, 48, (65,194,0): 38, 29, 48, (65,195,0): 38, 29, 48, (65,196,0): 38, 29, 48, (65,197,0): 38, 29, 48, (65,198,0): 38, 29, 48, (65,199,0): 38, 29, 48, (65,200,0): 39, 30, 49, (65,201,0): 39, 30, 49, (65,202,0): 39, 30, 49, (65,203,0): 40, 31, 50, (65,204,0): 40, 31, 50, (65,205,0): 41, 32, 51, (65,206,0): 41, 32, 51, (65,207,0): 44, 32, 52, (65,208,0): 45, 32, 50, (65,209,0): 46, 31, 50, (65,210,0): 48, 31, 49, (65,211,0): 49, 32, 50, (65,212,0): 49, 32, 50, (65,213,0): 50, 33, 51, (65,214,0): 51, 33, 49, (65,215,0): 52, 34, 50, (65,216,0): 54, 33, 48, (65,217,0): 54, 33, 48, (65,218,0): 55, 34, 49, (65,219,0): 55, 34, 49, (65,220,0): 57, 35, 48, (65,221,0): 57, 35, 48, (65,222,0): 58, 36, 49, (65,223,0): 58, 36, 49, (65,224,0): 59, 35, 51, (65,225,0): 59, 35, 51, (65,226,0): 60, 36, 52, (65,227,0): 60, 36, 52, (65,228,0): 61, 37, 51, (65,229,0): 63, 36, 51, (65,230,0): 64, 38, 51, (65,231,0): 64, 38, 51, (65,232,0): 65, 37, 51, (65,233,0): 65, 37, 51, (65,234,0): 67, 37, 49, (65,235,0): 66, 36, 48, (65,236,0): 66, 36, 46, (65,237,0): 65, 35, 45, (65,238,0): 65, 35, 45, (65,239,0): 64, 34, 44, (65,240,0): 66, 36, 48, (65,241,0): 67, 37, 49, (65,242,0): 69, 39, 49, (65,243,0): 70, 40, 50, (65,244,0): 72, 40, 51, (65,245,0): 72, 40, 51, (65,246,0): 71, 38, 47, (65,247,0): 71, 38, 47, (65,248,0): 74, 41, 48, (65,249,0): 74, 41, 48, (65,250,0): 76, 41, 48, (65,251,0): 76, 41, 48, (65,252,0): 77, 40, 47, (65,253,0): 77, 40, 47, (65,254,0): 77, 40, 47, (65,255,0): 77, 40, 47, (65,256,0): 77, 42, 48, (65,257,0): 76, 41, 47, (65,258,0): 77, 40, 47, (65,259,0): 76, 39, 46, (65,260,0): 77, 40, 47, (65,261,0): 78, 41, 48, (65,262,0): 82, 42, 50, (65,263,0): 83, 43, 51, (65,264,0): 84, 43, 51, (65,265,0): 84, 43, 51, (65,266,0): 85, 44, 52, (65,267,0): 85, 44, 52, (65,268,0): 87, 44, 53, (65,269,0): 87, 44, 53, (65,270,0): 88, 45, 54, (65,271,0): 88, 45, 52, (65,272,0): 89, 46, 53, (65,273,0): 89, 47, 51, (65,274,0): 89, 47, 51, (65,275,0): 90, 48, 52, (65,276,0): 90, 48, 52, (65,277,0): 91, 49, 53, (65,278,0): 91, 49, 53, (65,279,0): 91, 49, 53, (65,280,0): 93, 51, 55, (65,281,0): 93, 51, 55, (65,282,0): 93, 51, 55, (65,283,0): 93, 51, 55, (65,284,0): 95, 53, 57, (65,285,0): 97, 55, 59, (65,286,0): 100, 58, 62, (65,287,0): 101, 59, 63, (65,288,0): 102, 57, 60, (65,289,0): 105, 61, 62, (65,290,0): 110, 65, 60, (65,291,0): 113, 66, 56, (65,292,0): 116, 68, 54, (65,293,0): 122, 71, 52, (65,294,0): 129, 77, 56, (65,295,0): 135, 80, 59, (65,296,0): 137, 80, 60, (65,297,0): 140, 82, 60, (65,298,0): 146, 84, 61, (65,299,0): 149, 87, 62, (65,300,0): 154, 90, 62, (65,301,0): 159, 96, 61, (65,302,0): 166, 104, 67, (65,303,0): 177, 109, 62, (65,304,0): 191, 111, 50, (65,305,0): 209, 125, 55, (65,306,0): 222, 140, 66, (65,307,0): 222, 145, 67, (65,308,0): 220, 144, 66, (65,309,0): 217, 146, 68, (65,310,0): 210, 142, 71, (65,311,0): 201, 137, 66, (65,312,0): 202, 139, 70, (65,313,0): 198, 140, 67, (65,314,0): 197, 140, 63, (65,315,0): 197, 142, 62, (65,316,0): 199, 142, 65, (65,317,0): 196, 138, 64, (65,318,0): 191, 132, 64, (65,319,0): 182, 128, 64, (65,320,0): 170, 130, 71, (65,321,0): 163, 131, 74, (65,322,0): 160, 128, 71, (65,323,0): 158, 126, 69, (65,324,0): 156, 123, 69, (65,325,0): 156, 123, 69, (65,326,0): 155, 124, 70, (65,327,0): 155, 123, 72, (65,328,0): 152, 122, 72, (65,329,0): 152, 122, 72, (65,330,0): 151, 123, 75, (65,331,0): 151, 123, 75, (65,332,0): 152, 124, 77, (65,333,0): 152, 124, 77, (65,334,0): 153, 125, 78, (65,335,0): 153, 125, 78, (65,336,0): 153, 125, 78, (65,337,0): 151, 123, 76, (65,338,0): 150, 122, 75, (65,339,0): 147, 119, 72, (65,340,0): 144, 115, 71, (65,341,0): 142, 113, 69, (65,342,0): 140, 111, 71, (65,343,0): 139, 110, 70, (65,344,0): 137, 107, 69, (65,345,0): 137, 107, 69, (65,346,0): 136, 106, 72, (65,347,0): 135, 105, 71, (65,348,0): 134, 103, 72, (65,349,0): 133, 102, 71, (65,350,0): 132, 101, 70, (65,351,0): 131, 102, 70, (65,352,0): 134, 104, 76, (65,353,0): 132, 105, 76, (65,354,0): 131, 104, 75, (65,355,0): 132, 105, 76, (65,356,0): 135, 105, 77, (65,357,0): 137, 107, 79, (65,358,0): 139, 109, 81, (65,359,0): 140, 110, 82, (65,360,0): 144, 113, 85, (65,361,0): 144, 113, 85, (65,362,0): 148, 114, 87, (65,363,0): 149, 115, 88, (65,364,0): 149, 115, 88, (65,365,0): 149, 115, 88, (65,366,0): 149, 113, 87, (65,367,0): 148, 112, 86, (65,368,0): 150, 112, 89, (65,369,0): 150, 112, 89, (65,370,0): 150, 112, 89, (65,371,0): 150, 112, 89, (65,372,0): 153, 112, 90, (65,373,0): 154, 113, 91, (65,374,0): 155, 114, 92, (65,375,0): 155, 114, 92, (65,376,0): 155, 113, 91, (65,377,0): 155, 113, 91, (65,378,0): 157, 112, 91, (65,379,0): 158, 113, 92, (65,380,0): 158, 113, 92, (65,381,0): 158, 113, 92, (65,382,0): 159, 112, 92, (65,383,0): 160, 111, 94, (65,384,0): 164, 107, 98, (65,385,0): 166, 108, 97, (65,386,0): 169, 110, 94, (65,387,0): 172, 114, 92, (65,388,0): 176, 119, 90, (65,389,0): 180, 124, 89, (65,390,0): 186, 128, 90, (65,391,0): 188, 130, 92, (65,392,0): 191, 131, 94, (65,393,0): 190, 130, 93, (65,394,0): 192, 130, 93, (65,395,0): 192, 130, 93, (65,396,0): 193, 131, 92, (65,397,0): 195, 133, 92, (65,398,0): 198, 135, 92, (65,399,0): 198, 136, 95, (65,400,0): 194, 135, 101, (65,401,0): 195, 136, 104, (65,402,0): 198, 135, 102, (65,403,0): 198, 134, 98, (65,404,0): 200, 132, 93, (65,405,0): 205, 133, 93, (65,406,0): 214, 137, 95, (65,407,0): 220, 142, 96, (65,408,0): 224, 143, 96, (65,409,0): 226, 144, 96, (65,410,0): 228, 146, 96, (65,411,0): 228, 146, 96, (65,412,0): 226, 144, 96, (65,413,0): 221, 141, 92, (65,414,0): 216, 135, 88, (65,415,0): 210, 133, 89, (65,416,0): 201, 132, 93, (65,417,0): 195, 129, 94, (65,418,0): 189, 125, 90, (65,419,0): 181, 118, 83, (65,420,0): 174, 114, 80, (65,421,0): 169, 113, 78, (65,422,0): 168, 116, 79, (65,423,0): 167, 119, 79, (65,424,0): 164, 119, 77, (65,425,0): 164, 121, 76, (65,426,0): 166, 124, 76, (65,427,0): 168, 126, 76, (65,428,0): 171, 130, 78, (65,429,0): 173, 132, 76, (65,430,0): 176, 133, 78, (65,431,0): 176, 135, 81, (65,432,0): 177, 137, 88, (65,433,0): 176, 135, 89, (65,434,0): 175, 134, 90, (65,435,0): 173, 132, 88, (65,436,0): 169, 131, 86, (65,437,0): 167, 129, 84, (65,438,0): 164, 127, 82, (65,439,0): 163, 126, 82, (65,440,0): 160, 126, 81, (65,441,0): 159, 126, 81, (65,442,0): 158, 125, 80, (65,443,0): 156, 125, 79, (65,444,0): 154, 123, 77, (65,445,0): 150, 122, 75, (65,446,0): 149, 121, 74, (65,447,0): 147, 120, 75, (65,448,0): 145, 116, 74, (65,449,0): 145, 116, 76, (65,450,0): 144, 114, 76, (65,451,0): 142, 112, 74, (65,452,0): 139, 109, 71, (65,453,0): 135, 105, 67, (65,454,0): 134, 101, 66, (65,455,0): 132, 99, 64, (65,456,0): 138, 103, 71, (65,457,0): 136, 101, 69, (65,458,0): 134, 99, 69, (65,459,0): 134, 99, 69, (65,460,0): 134, 99, 71, (65,461,0): 130, 95, 67, (65,462,0): 125, 88, 61, (65,463,0): 120, 82, 59, (65,464,0): 115, 78, 60, (65,465,0): 114, 78, 64, (65,466,0): 114, 78, 64, (65,467,0): 111, 79, 64, (65,468,0): 109, 80, 64, (65,469,0): 107, 81, 64, (65,470,0): 104, 81, 63, (65,471,0): 101, 83, 63, (65,472,0): 105, 87, 67, (65,473,0): 103, 86, 66, (65,474,0): 101, 86, 65, (65,475,0): 100, 85, 64, (65,476,0): 100, 85, 64, (65,477,0): 101, 86, 65, (65,478,0): 104, 87, 67, (65,479,0): 105, 88, 68, (65,480,0): 101, 86, 67, (65,481,0): 101, 85, 69, (65,482,0): 102, 85, 69, (65,483,0): 102, 85, 69, (65,484,0): 104, 82, 68, (65,485,0): 102, 80, 66, (65,486,0): 101, 77, 65, (65,487,0): 100, 76, 64, (65,488,0): 96, 72, 62, (65,489,0): 95, 71, 61, (65,490,0): 93, 70, 62, (65,491,0): 90, 70, 61, (65,492,0): 90, 70, 61, (65,493,0): 90, 72, 62, (65,494,0): 90, 73, 63, (65,495,0): 92, 74, 64, (65,496,0): 94, 72, 61, (65,497,0): 96, 72, 62, (65,498,0): 99, 75, 65, (65,499,0): 101, 77, 67, (65,500,0): 102, 80, 69, (65,501,0): 103, 81, 70, (65,502,0): 103, 81, 70, (65,503,0): 103, 81, 70, (65,504,0): 103, 83, 72, (65,505,0): 103, 83, 72, (65,506,0): 102, 84, 72, (65,507,0): 102, 84, 72, (65,508,0): 103, 85, 73, (65,509,0): 103, 85, 73, (65,510,0): 102, 86, 73, (65,511,0): 102, 86, 71, (65,512,0): 103, 86, 68, (65,513,0): 103, 86, 66, (65,514,0): 103, 86, 66, (65,515,0): 103, 86, 66, (65,516,0): 104, 85, 68, (65,517,0): 104, 85, 68, (65,518,0): 106, 85, 68, (65,519,0): 108, 85, 69, (65,520,0): 110, 84, 71, (65,521,0): 110, 84, 71, (65,522,0): 112, 84, 73, (65,523,0): 112, 84, 73, (65,524,0): 114, 84, 74, (65,525,0): 114, 84, 74, (65,526,0): 117, 84, 77, (65,527,0): 115, 85, 77, (65,528,0): 112, 85, 76, (65,529,0): 109, 85, 75, (65,530,0): 107, 83, 71, (65,531,0): 106, 82, 70, (65,532,0): 108, 81, 70, (65,533,0): 108, 81, 70, (65,534,0): 110, 82, 70, (65,535,0): 111, 83, 71, (65,536,0): 109, 81, 67, (65,537,0): 110, 82, 68, (65,538,0): 112, 83, 69, (65,539,0): 112, 83, 69, (65,540,0): 113, 81, 66, (65,541,0): 111, 79, 64, (65,542,0): 110, 78, 63, (65,543,0): 107, 78, 64, (65,544,0): 108, 78, 70, (65,545,0): 106, 77, 71, (65,546,0): 103, 75, 71, (65,547,0): 101, 73, 69, (65,548,0): 98, 70, 66, (65,549,0): 96, 68, 64, (65,550,0): 92, 67, 63, (65,551,0): 91, 66, 62, (65,552,0): 88, 64, 60, (65,553,0): 87, 63, 61, (65,554,0): 85, 61, 59, (65,555,0): 83, 59, 57, (65,556,0): 79, 58, 57, (65,557,0): 77, 56, 55, (65,558,0): 76, 55, 54, (65,559,0): 75, 53, 55, (65,560,0): 79, 57, 59, (65,561,0): 78, 56, 58, (65,562,0): 78, 56, 58, (65,563,0): 79, 58, 57, (65,564,0): 80, 59, 58, (65,565,0): 83, 62, 59, (65,566,0): 84, 65, 59, (65,567,0): 85, 66, 60, (65,568,0): 83, 66, 58, (65,569,0): 85, 68, 60, (65,570,0): 86, 72, 61, (65,571,0): 88, 74, 63, (65,572,0): 89, 75, 62, (65,573,0): 88, 74, 61, (65,574,0): 86, 73, 57, (65,575,0): 84, 70, 57, (65,576,0): 87, 68, 62, (65,577,0): 86, 67, 63, (65,578,0): 85, 66, 62, (65,579,0): 84, 65, 61, (65,580,0): 83, 64, 60, (65,581,0): 82, 63, 59, (65,582,0): 81, 62, 58, (65,583,0): 81, 62, 58, (65,584,0): 81, 62, 58, (65,585,0): 79, 60, 56, (65,586,0): 77, 58, 54, (65,587,0): 74, 55, 51, (65,588,0): 72, 53, 49, (65,589,0): 70, 51, 47, (65,590,0): 69, 50, 46, (65,591,0): 69, 50, 46, (65,592,0): 64, 46, 44, (65,593,0): 64, 46, 46, (65,594,0): 63, 45, 45, (65,595,0): 62, 44, 44, (65,596,0): 61, 43, 43, (65,597,0): 60, 42, 42, (65,598,0): 59, 41, 41, (65,599,0): 59, 41, 41, (66,0,0): 35, 31, 46, (66,1,0): 35, 31, 46, (66,2,0): 37, 31, 45, (66,3,0): 37, 31, 45, (66,4,0): 37, 31, 45, (66,5,0): 37, 31, 45, (66,6,0): 38, 30, 43, (66,7,0): 38, 30, 43, (66,8,0): 38, 28, 39, (66,9,0): 38, 28, 39, (66,10,0): 38, 28, 39, (66,11,0): 38, 28, 39, (66,12,0): 39, 27, 37, (66,13,0): 39, 27, 37, (66,14,0): 39, 27, 37, (66,15,0): 39, 27, 37, (66,16,0): 42, 30, 40, (66,17,0): 42, 30, 40, (66,18,0): 42, 30, 40, (66,19,0): 42, 30, 40, (66,20,0): 42, 30, 40, (66,21,0): 42, 30, 40, (66,22,0): 43, 30, 40, (66,23,0): 43, 30, 40, (66,24,0): 46, 30, 41, (66,25,0): 46, 30, 41, (66,26,0): 47, 29, 41, (66,27,0): 48, 30, 42, (66,28,0): 49, 31, 43, (66,29,0): 49, 31, 43, (66,30,0): 49, 31, 43, (66,31,0): 50, 32, 44, (66,32,0): 49, 31, 43, (66,33,0): 49, 31, 43, (66,34,0): 49, 31, 43, (66,35,0): 49, 31, 43, (66,36,0): 49, 31, 43, (66,37,0): 49, 31, 43, (66,38,0): 49, 31, 43, (66,39,0): 49, 31, 43, (66,40,0): 51, 33, 45, (66,41,0): 51, 33, 45, (66,42,0): 51, 33, 45, (66,43,0): 51, 33, 45, (66,44,0): 51, 33, 45, (66,45,0): 51, 33, 45, (66,46,0): 51, 33, 45, (66,47,0): 51, 33, 45, (66,48,0): 51, 33, 45, (66,49,0): 51, 33, 45, (66,50,0): 51, 33, 45, (66,51,0): 51, 33, 45, (66,52,0): 51, 33, 45, (66,53,0): 51, 33, 45, (66,54,0): 51, 33, 45, (66,55,0): 51, 33, 45, (66,56,0): 50, 32, 44, (66,57,0): 50, 32, 44, (66,58,0): 50, 32, 44, (66,59,0): 49, 31, 43, (66,60,0): 49, 31, 43, (66,61,0): 48, 30, 42, (66,62,0): 48, 30, 42, (66,63,0): 48, 30, 42, (66,64,0): 49, 31, 47, (66,65,0): 48, 30, 46, (66,66,0): 48, 30, 46, (66,67,0): 47, 29, 45, (66,68,0): 45, 27, 43, (66,69,0): 44, 26, 42, (66,70,0): 43, 26, 44, (66,71,0): 42, 25, 43, (66,72,0): 41, 26, 45, (66,73,0): 40, 25, 44, (66,74,0): 39, 26, 46, (66,75,0): 39, 26, 46, (66,76,0): 38, 25, 45, (66,77,0): 37, 24, 44, (66,78,0): 37, 24, 44, (66,79,0): 36, 24, 44, (66,80,0): 34, 22, 42, (66,81,0): 32, 23, 42, (66,82,0): 32, 23, 42, (66,83,0): 32, 23, 42, (66,84,0): 32, 23, 42, (66,85,0): 32, 23, 42, (66,86,0): 32, 23, 42, (66,87,0): 32, 23, 42, (66,88,0): 35, 26, 45, (66,89,0): 35, 26, 45, (66,90,0): 35, 26, 45, (66,91,0): 34, 25, 44, (66,92,0): 34, 25, 44, (66,93,0): 33, 24, 43, (66,94,0): 33, 24, 43, (66,95,0): 32, 23, 42, (66,96,0): 34, 22, 46, (66,97,0): 34, 22, 46, (66,98,0): 32, 22, 46, (66,99,0): 32, 22, 46, (66,100,0): 32, 22, 46, (66,101,0): 32, 22, 46, (66,102,0): 31, 23, 46, (66,103,0): 31, 23, 46, (66,104,0): 30, 25, 47, (66,105,0): 29, 24, 46, (66,106,0): 27, 22, 44, (66,107,0): 26, 21, 43, (66,108,0): 23, 20, 41, (66,109,0): 23, 20, 41, (66,110,0): 23, 20, 41, (66,111,0): 24, 21, 42, (66,112,0): 24, 21, 42, (66,113,0): 24, 21, 42, (66,114,0): 24, 21, 42, (66,115,0): 24, 21, 42, (66,116,0): 24, 21, 42, (66,117,0): 24, 21, 42, (66,118,0): 24, 21, 42, (66,119,0): 24, 21, 42, (66,120,0): 25, 22, 43, (66,121,0): 25, 22, 43, (66,122,0): 25, 22, 43, (66,123,0): 24, 21, 42, (66,124,0): 24, 21, 42, (66,125,0): 23, 20, 41, (66,126,0): 23, 20, 41, (66,127,0): 22, 19, 40, (66,128,0): 28, 20, 43, (66,129,0): 28, 20, 43, (66,130,0): 28, 20, 43, (66,131,0): 28, 20, 43, (66,132,0): 28, 20, 43, (66,133,0): 28, 20, 43, (66,134,0): 28, 20, 43, (66,135,0): 28, 20, 43, (66,136,0): 25, 17, 40, (66,137,0): 26, 18, 41, (66,138,0): 27, 19, 42, (66,139,0): 27, 19, 42, (66,140,0): 26, 18, 41, (66,141,0): 25, 17, 40, (66,142,0): 24, 16, 39, (66,143,0): 21, 16, 36, (66,144,0): 22, 17, 37, (66,145,0): 20, 17, 34, (66,146,0): 20, 17, 34, (66,147,0): 20, 17, 34, (66,148,0): 19, 16, 33, (66,149,0): 19, 16, 33, (66,150,0): 18, 15, 32, (66,151,0): 18, 15, 32, (66,152,0): 20, 17, 34, (66,153,0): 21, 18, 35, (66,154,0): 22, 19, 36, (66,155,0): 22, 19, 36, (66,156,0): 24, 21, 38, (66,157,0): 24, 21, 38, (66,158,0): 25, 22, 39, (66,159,0): 26, 23, 40, (66,160,0): 31, 24, 42, (66,161,0): 31, 24, 42, (66,162,0): 31, 24, 42, (66,163,0): 31, 24, 42, (66,164,0): 31, 24, 42, (66,165,0): 31, 24, 42, (66,166,0): 31, 24, 42, (66,167,0): 31, 24, 42, (66,168,0): 30, 23, 41, (66,169,0): 30, 23, 41, (66,170,0): 30, 23, 41, (66,171,0): 30, 23, 41, (66,172,0): 30, 23, 41, (66,173,0): 30, 23, 41, (66,174,0): 30, 23, 41, (66,175,0): 30, 23, 41, (66,176,0): 32, 24, 47, (66,177,0): 32, 24, 47, (66,178,0): 32, 24, 47, (66,179,0): 32, 24, 47, (66,180,0): 32, 24, 47, (66,181,0): 32, 24, 47, (66,182,0): 32, 24, 47, (66,183,0): 32, 24, 47, (66,184,0): 33, 25, 48, (66,185,0): 33, 25, 48, (66,186,0): 32, 24, 47, (66,187,0): 32, 24, 47, (66,188,0): 32, 24, 47, (66,189,0): 33, 25, 48, (66,190,0): 35, 27, 50, (66,191,0): 36, 28, 49, (66,192,0): 38, 29, 50, (66,193,0): 38, 29, 48, (66,194,0): 38, 29, 48, (66,195,0): 38, 29, 48, (66,196,0): 38, 29, 48, (66,197,0): 38, 29, 48, (66,198,0): 38, 29, 48, (66,199,0): 38, 29, 48, (66,200,0): 38, 29, 48, (66,201,0): 39, 30, 49, (66,202,0): 39, 30, 49, (66,203,0): 40, 31, 50, (66,204,0): 40, 31, 50, (66,205,0): 41, 32, 51, (66,206,0): 41, 32, 51, (66,207,0): 43, 31, 51, (66,208,0): 44, 31, 49, (66,209,0): 46, 31, 50, (66,210,0): 48, 31, 49, (66,211,0): 49, 32, 50, (66,212,0): 49, 32, 50, (66,213,0): 50, 33, 51, (66,214,0): 51, 33, 49, (66,215,0): 51, 33, 49, (66,216,0): 54, 33, 48, (66,217,0): 54, 33, 48, (66,218,0): 55, 34, 49, (66,219,0): 55, 34, 49, (66,220,0): 57, 35, 48, (66,221,0): 57, 35, 48, (66,222,0): 58, 36, 49, (66,223,0): 58, 36, 49, (66,224,0): 59, 35, 51, (66,225,0): 61, 34, 51, (66,226,0): 62, 35, 50, (66,227,0): 62, 35, 50, (66,228,0): 63, 36, 51, (66,229,0): 64, 36, 51, (66,230,0): 65, 37, 51, (66,231,0): 65, 37, 51, (66,232,0): 68, 38, 50, (66,233,0): 67, 37, 49, (66,234,0): 68, 36, 49, (66,235,0): 67, 35, 48, (66,236,0): 67, 35, 46, (66,237,0): 66, 34, 45, (66,238,0): 66, 34, 45, (66,239,0): 66, 34, 45, (66,240,0): 65, 35, 45, (66,241,0): 66, 36, 46, (66,242,0): 69, 37, 48, (66,243,0): 70, 38, 49, (66,244,0): 70, 39, 47, (66,245,0): 70, 39, 47, (66,246,0): 71, 38, 47, (66,247,0): 70, 37, 46, (66,248,0): 76, 41, 48, (66,249,0): 76, 41, 48, (66,250,0): 76, 41, 47, (66,251,0): 76, 41, 47, (66,252,0): 77, 40, 47, (66,253,0): 77, 40, 47, (66,254,0): 77, 41, 45, (66,255,0): 77, 41, 45, (66,256,0): 78, 41, 48, (66,257,0): 77, 40, 47, (66,258,0): 77, 40, 47, (66,259,0): 76, 39, 46, (66,260,0): 77, 40, 47, (66,261,0): 78, 41, 48, (66,262,0): 82, 42, 50, (66,263,0): 83, 43, 51, (66,264,0): 84, 43, 51, (66,265,0): 84, 43, 51, (66,266,0): 86, 43, 52, (66,267,0): 86, 43, 52, (66,268,0): 87, 44, 53, (66,269,0): 87, 44, 53, (66,270,0): 88, 45, 54, (66,271,0): 88, 45, 52, (66,272,0): 88, 45, 52, (66,273,0): 88, 46, 50, (66,274,0): 88, 46, 50, (66,275,0): 89, 47, 51, (66,276,0): 89, 47, 51, (66,277,0): 90, 48, 52, (66,278,0): 90, 48, 52, (66,279,0): 90, 48, 52, (66,280,0): 93, 51, 55, (66,281,0): 93, 51, 55, (66,282,0): 93, 51, 55, (66,283,0): 93, 51, 55, (66,284,0): 95, 53, 57, (66,285,0): 97, 55, 59, (66,286,0): 100, 58, 62, (66,287,0): 101, 59, 63, (66,288,0): 102, 57, 60, (66,289,0): 105, 61, 62, (66,290,0): 110, 65, 60, (66,291,0): 113, 66, 56, (66,292,0): 116, 68, 54, (66,293,0): 122, 71, 52, (66,294,0): 129, 77, 56, (66,295,0): 135, 80, 59, (66,296,0): 139, 83, 60, (66,297,0): 143, 85, 63, (66,298,0): 149, 87, 64, (66,299,0): 151, 90, 62, (66,300,0): 155, 92, 61, (66,301,0): 161, 97, 61, (66,302,0): 168, 104, 66, (66,303,0): 178, 110, 61, (66,304,0): 192, 112, 51, (66,305,0): 213, 129, 57, (66,306,0): 227, 145, 71, (66,307,0): 227, 148, 71, (66,308,0): 221, 145, 67, (66,309,0): 215, 144, 66, (66,310,0): 207, 140, 69, (66,311,0): 200, 137, 66, (66,312,0): 199, 139, 69, (66,313,0): 196, 138, 65, (66,314,0): 195, 139, 64, (66,315,0): 193, 140, 62, (66,316,0): 196, 140, 65, (66,317,0): 194, 138, 64, (66,318,0): 189, 132, 63, (66,319,0): 180, 129, 64, (66,320,0): 169, 130, 71, (66,321,0): 163, 131, 74, (66,322,0): 160, 128, 71, (66,323,0): 158, 126, 69, (66,324,0): 156, 123, 69, (66,325,0): 156, 123, 69, (66,326,0): 155, 124, 70, (66,327,0): 155, 124, 70, (66,328,0): 154, 124, 72, (66,329,0): 154, 124, 72, (66,330,0): 153, 125, 75, (66,331,0): 153, 125, 75, (66,332,0): 154, 126, 78, (66,333,0): 154, 126, 78, (66,334,0): 155, 127, 79, (66,335,0): 155, 127, 80, (66,336,0): 154, 126, 79, (66,337,0): 153, 125, 78, (66,338,0): 151, 123, 76, (66,339,0): 149, 121, 74, (66,340,0): 146, 117, 73, (66,341,0): 144, 115, 71, (66,342,0): 142, 113, 73, (66,343,0): 141, 112, 72, (66,344,0): 138, 108, 70, (66,345,0): 138, 108, 70, (66,346,0): 137, 107, 73, (66,347,0): 136, 106, 72, (66,348,0): 135, 104, 73, (66,349,0): 134, 103, 72, (66,350,0): 133, 102, 71, (66,351,0): 132, 103, 71, (66,352,0): 135, 105, 77, (66,353,0): 133, 106, 77, (66,354,0): 132, 105, 76, (66,355,0): 132, 105, 76, (66,356,0): 135, 105, 77, (66,357,0): 137, 107, 79, (66,358,0): 139, 109, 81, (66,359,0): 140, 110, 82, (66,360,0): 143, 112, 84, (66,361,0): 144, 113, 85, (66,362,0): 148, 114, 87, (66,363,0): 149, 115, 88, (66,364,0): 150, 116, 89, (66,365,0): 150, 116, 89, (66,366,0): 150, 114, 88, (66,367,0): 149, 113, 87, (66,368,0): 152, 114, 91, (66,369,0): 152, 114, 91, (66,370,0): 152, 114, 91, (66,371,0): 153, 115, 92, (66,372,0): 155, 114, 92, (66,373,0): 156, 115, 93, (66,374,0): 156, 115, 93, (66,375,0): 156, 115, 93, (66,376,0): 154, 112, 90, (66,377,0): 154, 112, 90, (66,378,0): 157, 112, 91, (66,379,0): 158, 113, 92, (66,380,0): 159, 114, 93, (66,381,0): 159, 114, 93, (66,382,0): 161, 114, 94, (66,383,0): 162, 113, 96, (66,384,0): 164, 107, 96, (66,385,0): 166, 108, 97, (66,386,0): 167, 110, 93, (66,387,0): 170, 114, 91, (66,388,0): 175, 118, 89, (66,389,0): 179, 123, 88, (66,390,0): 185, 127, 90, (66,391,0): 187, 129, 92, (66,392,0): 190, 130, 94, (66,393,0): 190, 130, 94, (66,394,0): 192, 129, 94, (66,395,0): 192, 129, 94, (66,396,0): 194, 130, 94, (66,397,0): 196, 132, 94, (66,398,0): 198, 135, 94, (66,399,0): 198, 136, 97, (66,400,0): 199, 139, 103, (66,401,0): 198, 138, 104, (66,402,0): 198, 135, 100, (66,403,0): 197, 132, 94, (66,404,0): 200, 131, 90, (66,405,0): 207, 134, 93, (66,406,0): 215, 141, 96, (66,407,0): 223, 145, 99, (66,408,0): 225, 147, 99, (66,409,0): 226, 146, 97, (66,410,0): 225, 145, 96, (66,411,0): 221, 143, 94, (66,412,0): 217, 139, 91, (66,413,0): 212, 136, 87, (66,414,0): 209, 132, 86, (66,415,0): 203, 130, 85, (66,416,0): 196, 127, 88, (66,417,0): 188, 123, 85, (66,418,0): 181, 117, 81, (66,419,0): 175, 115, 78, (66,420,0): 173, 115, 78, (66,421,0): 172, 118, 80, (66,422,0): 172, 120, 81, (66,423,0): 170, 122, 82, (66,424,0): 167, 122, 80, (66,425,0): 167, 124, 79, (66,426,0): 169, 127, 79, (66,427,0): 171, 131, 80, (66,428,0): 174, 133, 81, (66,429,0): 177, 136, 80, (66,430,0): 179, 138, 82, (66,431,0): 180, 139, 83, (66,432,0): 183, 143, 92, (66,433,0): 182, 142, 93, (66,434,0): 180, 139, 93, (66,435,0): 178, 137, 91, (66,436,0): 174, 136, 89, (66,437,0): 172, 134, 87, (66,438,0): 169, 133, 85, (66,439,0): 169, 132, 87, (66,440,0): 165, 131, 85, (66,441,0): 163, 131, 84, (66,442,0): 162, 129, 84, (66,443,0): 159, 128, 82, (66,444,0): 157, 126, 80, (66,445,0): 154, 126, 79, (66,446,0): 153, 125, 78, (66,447,0): 152, 123, 79, (66,448,0): 152, 120, 79, (66,449,0): 151, 119, 78, (66,450,0): 150, 118, 79, (66,451,0): 147, 115, 76, (66,452,0): 144, 112, 74, (66,453,0): 140, 108, 70, (66,454,0): 136, 103, 68, (66,455,0): 134, 101, 66, (66,456,0): 139, 104, 72, (66,457,0): 138, 103, 71, (66,458,0): 137, 102, 72, (66,459,0): 137, 102, 72, (66,460,0): 136, 101, 73, (66,461,0): 133, 98, 70, (66,462,0): 128, 93, 65, (66,463,0): 124, 88, 64, (66,464,0): 119, 82, 64, (66,465,0): 117, 81, 67, (66,466,0): 116, 80, 66, (66,467,0): 112, 80, 65, (66,468,0): 110, 81, 65, (66,469,0): 107, 81, 64, (66,470,0): 104, 81, 63, (66,471,0): 101, 83, 63, (66,472,0): 106, 88, 68, (66,473,0): 104, 87, 67, (66,474,0): 102, 87, 66, (66,475,0): 102, 87, 66, (66,476,0): 102, 85, 65, (66,477,0): 103, 86, 66, (66,478,0): 104, 87, 67, (66,479,0): 105, 88, 68, (66,480,0): 102, 87, 68, (66,481,0): 103, 88, 69, (66,482,0): 104, 87, 71, (66,483,0): 104, 87, 71, (66,484,0): 106, 84, 70, (66,485,0): 104, 82, 68, (66,486,0): 103, 79, 67, (66,487,0): 102, 78, 66, (66,488,0): 97, 73, 63, (66,489,0): 96, 72, 62, (66,490,0): 94, 72, 61, (66,491,0): 91, 71, 60, (66,492,0): 91, 71, 62, (66,493,0): 91, 73, 63, (66,494,0): 91, 74, 64, (66,495,0): 93, 75, 65, (66,496,0): 100, 78, 67, (66,497,0): 101, 77, 65, (66,498,0): 103, 79, 67, (66,499,0): 104, 80, 68, (66,500,0): 103, 81, 68, (66,501,0): 102, 80, 67, (66,502,0): 101, 79, 66, (66,503,0): 101, 79, 66, (66,504,0): 102, 83, 69, (66,505,0): 103, 84, 70, (66,506,0): 102, 84, 70, (66,507,0): 103, 85, 71, (66,508,0): 104, 86, 72, (66,509,0): 105, 87, 73, (66,510,0): 105, 89, 74, (66,511,0): 105, 89, 73, (66,512,0): 105, 88, 70, (66,513,0): 105, 88, 68, (66,514,0): 106, 88, 68, (66,515,0): 106, 88, 68, (66,516,0): 106, 87, 70, (66,517,0): 106, 87, 70, (66,518,0): 108, 87, 70, (66,519,0): 109, 86, 70, (66,520,0): 111, 85, 72, (66,521,0): 111, 85, 72, (66,522,0): 113, 85, 74, (66,523,0): 113, 85, 74, (66,524,0): 114, 86, 75, (66,525,0): 114, 86, 75, (66,526,0): 116, 86, 78, (66,527,0): 115, 86, 78, (66,528,0): 113, 86, 77, (66,529,0): 110, 86, 76, (66,530,0): 108, 84, 72, (66,531,0): 107, 83, 71, (66,532,0): 108, 81, 70, (66,533,0): 108, 81, 70, (66,534,0): 108, 82, 69, (66,535,0): 109, 83, 70, (66,536,0): 111, 83, 69, (66,537,0): 112, 84, 70, (66,538,0): 113, 84, 70, (66,539,0): 114, 85, 71, (66,540,0): 113, 84, 68, (66,541,0): 112, 83, 67, (66,542,0): 113, 81, 66, (66,543,0): 110, 81, 67, (66,544,0): 111, 81, 71, (66,545,0): 110, 81, 73, (66,546,0): 108, 79, 73, (66,547,0): 106, 77, 71, (66,548,0): 103, 76, 69, (66,549,0): 101, 74, 67, (66,550,0): 98, 73, 68, (66,551,0): 97, 72, 67, (66,552,0): 94, 69, 64, (66,553,0): 93, 68, 64, (66,554,0): 91, 67, 63, (66,555,0): 89, 65, 61, (66,556,0): 84, 63, 60, (66,557,0): 82, 61, 58, (66,558,0): 81, 60, 57, (66,559,0): 80, 59, 58, (66,560,0): 83, 59, 59, (66,561,0): 83, 59, 59, (66,562,0): 80, 59, 58, (66,563,0): 80, 59, 58, (66,564,0): 81, 60, 59, (66,565,0): 83, 62, 59, (66,566,0): 84, 65, 59, (66,567,0): 85, 66, 60, (66,568,0): 84, 67, 59, (66,569,0): 86, 69, 61, (66,570,0): 89, 72, 62, (66,571,0): 90, 73, 63, (66,572,0): 89, 75, 62, (66,573,0): 88, 74, 61, (66,574,0): 86, 72, 59, (66,575,0): 85, 71, 60, (66,576,0): 87, 68, 61, (66,577,0): 87, 68, 62, (66,578,0): 86, 67, 61, (66,579,0): 85, 66, 60, (66,580,0): 84, 65, 59, (66,581,0): 83, 64, 58, (66,582,0): 82, 63, 57, (66,583,0): 81, 62, 56, (66,584,0): 79, 60, 54, (66,585,0): 79, 60, 54, (66,586,0): 78, 59, 53, (66,587,0): 76, 57, 51, (66,588,0): 74, 55, 49, (66,589,0): 72, 53, 47, (66,590,0): 70, 51, 45, (66,591,0): 68, 49, 45, (66,592,0): 67, 47, 46, (66,593,0): 66, 46, 47, (66,594,0): 65, 45, 46, (66,595,0): 64, 44, 45, (66,596,0): 63, 43, 44, (66,597,0): 62, 42, 43, (66,598,0): 61, 41, 42, (66,599,0): 61, 41, 42, (67,0,0): 35, 31, 46, (67,1,0): 35, 31, 46, (67,2,0): 37, 31, 45, (67,3,0): 37, 31, 45, (67,4,0): 37, 31, 45, (67,5,0): 37, 31, 45, (67,6,0): 38, 30, 43, (67,7,0): 38, 30, 43, (67,8,0): 38, 28, 39, (67,9,0): 38, 28, 39, (67,10,0): 38, 28, 39, (67,11,0): 38, 28, 39, (67,12,0): 39, 27, 37, (67,13,0): 39, 27, 37, (67,14,0): 39, 27, 37, (67,15,0): 39, 27, 37, (67,16,0): 42, 30, 40, (67,17,0): 42, 30, 40, (67,18,0): 42, 30, 40, (67,19,0): 42, 30, 40, (67,20,0): 42, 30, 40, (67,21,0): 42, 30, 40, (67,22,0): 43, 30, 40, (67,23,0): 43, 30, 40, (67,24,0): 45, 29, 40, (67,25,0): 46, 30, 41, (67,26,0): 47, 29, 41, (67,27,0): 48, 30, 42, (67,28,0): 48, 30, 42, (67,29,0): 49, 31, 43, (67,30,0): 49, 31, 43, (67,31,0): 49, 31, 43, (67,32,0): 49, 31, 43, (67,33,0): 49, 31, 43, (67,34,0): 49, 31, 43, (67,35,0): 49, 31, 43, (67,36,0): 49, 31, 43, (67,37,0): 49, 31, 43, (67,38,0): 49, 31, 43, (67,39,0): 49, 31, 43, (67,40,0): 51, 33, 45, (67,41,0): 51, 33, 45, (67,42,0): 51, 33, 45, (67,43,0): 51, 33, 45, (67,44,0): 51, 33, 45, (67,45,0): 51, 33, 45, (67,46,0): 51, 33, 45, (67,47,0): 51, 33, 45, (67,48,0): 51, 33, 45, (67,49,0): 51, 33, 45, (67,50,0): 51, 33, 45, (67,51,0): 51, 33, 45, (67,52,0): 51, 33, 45, (67,53,0): 51, 33, 45, (67,54,0): 51, 33, 45, (67,55,0): 51, 33, 45, (67,56,0): 50, 32, 44, (67,57,0): 50, 32, 44, (67,58,0): 50, 32, 44, (67,59,0): 49, 31, 43, (67,60,0): 49, 31, 43, (67,61,0): 48, 30, 42, (67,62,0): 48, 30, 42, (67,63,0): 48, 30, 42, (67,64,0): 49, 31, 47, (67,65,0): 48, 30, 46, (67,66,0): 48, 30, 46, (67,67,0): 47, 29, 45, (67,68,0): 45, 27, 43, (67,69,0): 43, 26, 42, (67,70,0): 43, 26, 44, (67,71,0): 42, 25, 43, (67,72,0): 40, 25, 44, (67,73,0): 40, 25, 44, (67,74,0): 39, 26, 46, (67,75,0): 38, 25, 45, (67,76,0): 38, 25, 45, (67,77,0): 37, 24, 44, (67,78,0): 37, 24, 44, (67,79,0): 35, 23, 43, (67,80,0): 32, 23, 42, (67,81,0): 32, 23, 42, (67,82,0): 32, 23, 42, (67,83,0): 32, 23, 42, (67,84,0): 32, 23, 42, (67,85,0): 32, 23, 42, (67,86,0): 32, 23, 42, (67,87,0): 32, 23, 42, (67,88,0): 35, 26, 45, (67,89,0): 34, 25, 44, (67,90,0): 34, 25, 44, (67,91,0): 34, 25, 44, (67,92,0): 33, 24, 43, (67,93,0): 32, 23, 42, (67,94,0): 32, 23, 42, (67,95,0): 32, 23, 42, (67,96,0): 34, 22, 46, (67,97,0): 34, 22, 46, (67,98,0): 32, 22, 46, (67,99,0): 32, 22, 46, (67,100,0): 32, 22, 46, (67,101,0): 32, 22, 46, (67,102,0): 31, 23, 46, (67,103,0): 31, 23, 46, (67,104,0): 30, 25, 47, (67,105,0): 29, 24, 46, (67,106,0): 27, 22, 44, (67,107,0): 25, 20, 42, (67,108,0): 23, 20, 41, (67,109,0): 23, 20, 41, (67,110,0): 23, 20, 41, (67,111,0): 23, 20, 41, (67,112,0): 24, 21, 42, (67,113,0): 24, 21, 42, (67,114,0): 24, 21, 42, (67,115,0): 24, 21, 42, (67,116,0): 24, 21, 42, (67,117,0): 24, 21, 42, (67,118,0): 24, 21, 42, (67,119,0): 24, 21, 42, (67,120,0): 25, 22, 43, (67,121,0): 24, 21, 42, (67,122,0): 24, 21, 42, (67,123,0): 24, 21, 42, (67,124,0): 23, 20, 41, (67,125,0): 22, 19, 40, (67,126,0): 22, 19, 40, (67,127,0): 22, 19, 40, (67,128,0): 27, 19, 42, (67,129,0): 27, 19, 42, (67,130,0): 27, 19, 42, (67,131,0): 27, 19, 42, (67,132,0): 27, 19, 42, (67,133,0): 27, 19, 42, (67,134,0): 27, 19, 42, (67,135,0): 27, 19, 42, (67,136,0): 25, 17, 40, (67,137,0): 25, 17, 40, (67,138,0): 26, 18, 41, (67,139,0): 26, 18, 41, (67,140,0): 26, 18, 41, (67,141,0): 25, 17, 40, (67,142,0): 23, 15, 38, (67,143,0): 22, 14, 35, (67,144,0): 20, 15, 35, (67,145,0): 19, 16, 33, (67,146,0): 19, 16, 33, (67,147,0): 19, 16, 33, (67,148,0): 19, 16, 33, (67,149,0): 18, 15, 32, (67,150,0): 18, 15, 32, (67,151,0): 18, 15, 32, (67,152,0): 21, 18, 35, (67,153,0): 21, 18, 35, (67,154,0): 22, 19, 36, (67,155,0): 23, 20, 37, (67,156,0): 23, 20, 37, (67,157,0): 24, 21, 38, (67,158,0): 25, 22, 39, (67,159,0): 26, 22, 39, (67,160,0): 31, 24, 42, (67,161,0): 31, 24, 42, (67,162,0): 31, 24, 42, (67,163,0): 31, 24, 42, (67,164,0): 31, 24, 42, (67,165,0): 31, 24, 42, (67,166,0): 31, 24, 42, (67,167,0): 31, 24, 42, (67,168,0): 30, 23, 41, (67,169,0): 30, 23, 41, (67,170,0): 30, 23, 41, (67,171,0): 30, 23, 41, (67,172,0): 30, 23, 41, (67,173,0): 30, 23, 41, (67,174,0): 30, 23, 41, (67,175,0): 30, 23, 41, (67,176,0): 32, 24, 47, (67,177,0): 32, 24, 47, (67,178,0): 32, 24, 47, (67,179,0): 32, 24, 47, (67,180,0): 32, 24, 47, (67,181,0): 32, 24, 47, (67,182,0): 32, 24, 47, (67,183,0): 32, 24, 47, (67,184,0): 34, 26, 49, (67,185,0): 34, 26, 49, (67,186,0): 33, 25, 48, (67,187,0): 33, 25, 48, (67,188,0): 34, 26, 49, (67,189,0): 35, 27, 50, (67,190,0): 36, 28, 51, (67,191,0): 37, 29, 50, (67,192,0): 38, 29, 50, (67,193,0): 38, 29, 48, (67,194,0): 38, 29, 48, (67,195,0): 38, 29, 48, (67,196,0): 38, 29, 48, (67,197,0): 38, 29, 48, (67,198,0): 38, 29, 48, (67,199,0): 38, 29, 48, (67,200,0): 38, 29, 48, (67,201,0): 38, 29, 48, (67,202,0): 38, 29, 48, (67,203,0): 39, 30, 49, (67,204,0): 40, 31, 50, (67,205,0): 40, 31, 50, (67,206,0): 40, 31, 50, (67,207,0): 43, 31, 51, (67,208,0): 44, 31, 49, (67,209,0): 45, 30, 49, (67,210,0): 47, 30, 48, (67,211,0): 48, 31, 49, (67,212,0): 49, 32, 50, (67,213,0): 49, 32, 50, (67,214,0): 50, 32, 48, (67,215,0): 51, 33, 49, (67,216,0): 54, 33, 48, (67,217,0): 54, 33, 48, (67,218,0): 55, 34, 49, (67,219,0): 55, 34, 49, (67,220,0): 57, 35, 48, (67,221,0): 57, 35, 48, (67,222,0): 58, 36, 49, (67,223,0): 59, 35, 49, (67,224,0): 61, 34, 51, (67,225,0): 61, 34, 51, (67,226,0): 63, 35, 50, (67,227,0): 63, 35, 50, (67,228,0): 64, 36, 51, (67,229,0): 64, 36, 50, (67,230,0): 65, 37, 51, (67,231,0): 67, 36, 51, (67,232,0): 68, 38, 50, (67,233,0): 69, 37, 50, (67,234,0): 69, 37, 50, (67,235,0): 68, 36, 47, (67,236,0): 68, 35, 46, (67,237,0): 68, 35, 46, (67,238,0): 68, 35, 46, (67,239,0): 67, 34, 45, (67,240,0): 66, 34, 45, (67,241,0): 66, 36, 46, (67,242,0): 68, 36, 47, (67,243,0): 68, 36, 47, (67,244,0): 69, 38, 46, (67,245,0): 69, 38, 46, (67,246,0): 70, 37, 46, (67,247,0): 70, 37, 44, (67,248,0): 76, 41, 48, (67,249,0): 76, 41, 48, (67,250,0): 76, 41, 47, (67,251,0): 76, 41, 47, (67,252,0): 77, 40, 47, (67,253,0): 77, 40, 47, (67,254,0): 77, 41, 45, (67,255,0): 77, 41, 45, (67,256,0): 78, 41, 48, (67,257,0): 77, 40, 47, (67,258,0): 77, 40, 47, (67,259,0): 76, 39, 46, (67,260,0): 77, 40, 47, (67,261,0): 78, 41, 48, (67,262,0): 82, 42, 50, (67,263,0): 83, 43, 51, (67,264,0): 84, 43, 51, (67,265,0): 84, 43, 51, (67,266,0): 86, 43, 52, (67,267,0): 86, 43, 52, (67,268,0): 87, 44, 53, (67,269,0): 87, 44, 53, (67,270,0): 88, 45, 54, (67,271,0): 88, 45, 52, (67,272,0): 87, 45, 49, (67,273,0): 87, 45, 49, (67,274,0): 87, 45, 49, (67,275,0): 88, 46, 50, (67,276,0): 88, 46, 50, (67,277,0): 89, 47, 51, (67,278,0): 89, 47, 51, (67,279,0): 90, 48, 52, (67,280,0): 93, 51, 55, (67,281,0): 93, 51, 55, (67,282,0): 93, 51, 55, (67,283,0): 93, 51, 55, (67,284,0): 95, 53, 57, (67,285,0): 97, 55, 59, (67,286,0): 100, 58, 62, (67,287,0): 101, 59, 63, (67,288,0): 102, 57, 60, (67,289,0): 105, 61, 60, (67,290,0): 110, 65, 60, (67,291,0): 113, 66, 56, (67,292,0): 116, 69, 53, (67,293,0): 120, 72, 52, (67,294,0): 128, 77, 56, (67,295,0): 135, 80, 59, (67,296,0): 142, 86, 63, (67,297,0): 147, 87, 63, (67,298,0): 151, 89, 64, (67,299,0): 155, 91, 63, (67,300,0): 158, 93, 61, (67,301,0): 163, 99, 61, (67,302,0): 171, 106, 64, (67,303,0): 181, 111, 60, (67,304,0): 197, 116, 53, (67,305,0): 220, 133, 62, (67,306,0): 233, 149, 76, (67,307,0): 229, 150, 73, (67,308,0): 220, 144, 66, (67,309,0): 213, 141, 65, (67,310,0): 206, 140, 66, (67,311,0): 200, 137, 66, (67,312,0): 196, 137, 67, (67,313,0): 193, 137, 63, (67,314,0): 190, 137, 61, (67,315,0): 190, 139, 60, (67,316,0): 191, 139, 63, (67,317,0): 190, 138, 63, (67,318,0): 186, 133, 63, (67,319,0): 178, 130, 64, (67,320,0): 169, 130, 71, (67,321,0): 163, 131, 74, (67,322,0): 160, 128, 71, (67,323,0): 158, 126, 69, (67,324,0): 156, 123, 69, (67,325,0): 156, 123, 69, (67,326,0): 155, 124, 70, (67,327,0): 155, 124, 70, (67,328,0): 156, 126, 74, (67,329,0): 156, 126, 74, (67,330,0): 154, 127, 74, (67,331,0): 155, 127, 77, (67,332,0): 156, 128, 78, (67,333,0): 156, 128, 78, (67,334,0): 156, 128, 80, (67,335,0): 157, 129, 81, (67,336,0): 156, 128, 81, (67,337,0): 155, 127, 80, (67,338,0): 153, 125, 78, (67,339,0): 151, 123, 76, (67,340,0): 148, 119, 75, (67,341,0): 145, 116, 72, (67,342,0): 143, 114, 74, (67,343,0): 142, 113, 73, (67,344,0): 140, 110, 72, (67,345,0): 140, 110, 72, (67,346,0): 139, 109, 75, (67,347,0): 138, 108, 74, (67,348,0): 137, 106, 75, (67,349,0): 136, 105, 74, (67,350,0): 135, 104, 73, (67,351,0): 133, 104, 72, (67,352,0): 134, 107, 78, (67,353,0): 134, 107, 78, (67,354,0): 133, 106, 77, (67,355,0): 133, 106, 77, (67,356,0): 136, 106, 78, (67,357,0): 137, 107, 79, (67,358,0): 139, 109, 81, (67,359,0): 140, 110, 82, (67,360,0): 143, 112, 84, (67,361,0): 144, 113, 85, (67,362,0): 148, 114, 87, (67,363,0): 150, 116, 89, (67,364,0): 150, 116, 89, (67,365,0): 151, 117, 90, (67,366,0): 151, 115, 89, (67,367,0): 151, 115, 89, (67,368,0): 153, 115, 92, (67,369,0): 154, 116, 93, (67,370,0): 155, 117, 94, (67,371,0): 156, 118, 95, (67,372,0): 158, 117, 95, (67,373,0): 157, 116, 94, (67,374,0): 157, 116, 94, (67,375,0): 156, 115, 93, (67,376,0): 153, 111, 89, (67,377,0): 154, 112, 90, (67,378,0): 157, 112, 91, (67,379,0): 158, 113, 92, (67,380,0): 159, 114, 93, (67,381,0): 161, 116, 95, (67,382,0): 163, 116, 96, (67,383,0): 164, 115, 98, (67,384,0): 164, 107, 96, (67,385,0): 166, 108, 96, (67,386,0): 167, 110, 91, (67,387,0): 170, 114, 91, (67,388,0): 174, 117, 88, (67,389,0): 178, 122, 89, (67,390,0): 184, 125, 91, (67,391,0): 186, 128, 91, (67,392,0): 190, 130, 96, (67,393,0): 190, 130, 96, (67,394,0): 192, 129, 96, (67,395,0): 193, 130, 97, (67,396,0): 195, 131, 96, (67,397,0): 196, 132, 96, (67,398,0): 198, 134, 96, (67,399,0): 198, 134, 96, (67,400,0): 201, 139, 102, (67,401,0): 199, 137, 100, (67,402,0): 197, 133, 95, (67,403,0): 197, 132, 90, (67,404,0): 202, 133, 91, (67,405,0): 211, 138, 95, (67,406,0): 220, 146, 99, (67,407,0): 227, 151, 102, (67,408,0): 224, 148, 99, (67,409,0): 222, 146, 96, (67,410,0): 219, 143, 93, (67,411,0): 215, 139, 90, (67,412,0): 208, 134, 85, (67,413,0): 205, 131, 84, (67,414,0): 201, 129, 81, (67,415,0): 198, 127, 83, (67,416,0): 190, 123, 81, (67,417,0): 182, 119, 78, (67,418,0): 175, 113, 74, (67,419,0): 172, 113, 73, (67,420,0): 175, 117, 79, (67,421,0): 176, 123, 83, (67,422,0): 174, 125, 84, (67,423,0): 173, 126, 84, (67,424,0): 169, 126, 83, (67,425,0): 170, 129, 83, (67,426,0): 172, 132, 81, (67,427,0): 175, 135, 83, (67,428,0): 178, 139, 84, (67,429,0): 182, 141, 85, (67,430,0): 184, 144, 85, (67,431,0): 185, 144, 88, (67,432,0): 186, 146, 94, (67,433,0): 185, 145, 94, (67,434,0): 184, 144, 93, (67,435,0): 182, 142, 91, (67,436,0): 177, 139, 90, (67,437,0): 175, 137, 88, (67,438,0): 173, 137, 87, (67,439,0): 172, 136, 88, (67,440,0): 168, 134, 86, (67,441,0): 166, 132, 86, (67,442,0): 164, 131, 86, (67,443,0): 161, 128, 83, (67,444,0): 160, 127, 82, (67,445,0): 158, 127, 81, (67,446,0): 157, 126, 80, (67,447,0): 157, 126, 80, (67,448,0): 157, 126, 82, (67,449,0): 157, 125, 84, (67,450,0): 155, 123, 82, (67,451,0): 152, 120, 81, (67,452,0): 148, 116, 77, (67,453,0): 143, 111, 73, (67,454,0): 139, 107, 69, (67,455,0): 137, 104, 69, (67,456,0): 139, 105, 70, (67,457,0): 140, 105, 73, (67,458,0): 140, 105, 75, (67,459,0): 140, 105, 75, (67,460,0): 139, 104, 76, (67,461,0): 136, 101, 73, (67,462,0): 132, 97, 69, (67,463,0): 129, 93, 69, (67,464,0): 122, 85, 67, (67,465,0): 120, 84, 70, (67,466,0): 116, 83, 68, (67,467,0): 113, 81, 66, (67,468,0): 110, 81, 65, (67,469,0): 107, 81, 64, (67,470,0): 105, 82, 64, (67,471,0): 102, 84, 64, (67,472,0): 108, 90, 70, (67,473,0): 106, 89, 69, (67,474,0): 105, 90, 69, (67,475,0): 104, 89, 68, (67,476,0): 105, 88, 68, (67,477,0): 104, 87, 67, (67,478,0): 105, 88, 68, (67,479,0): 105, 88, 68, (67,480,0): 105, 88, 70, (67,481,0): 105, 90, 71, (67,482,0): 106, 89, 73, (67,483,0): 107, 88, 73, (67,484,0): 108, 86, 72, (67,485,0): 106, 84, 70, (67,486,0): 105, 81, 69, (67,487,0): 104, 80, 68, (67,488,0): 98, 74, 64, (67,489,0): 98, 74, 64, (67,490,0): 97, 73, 63, (67,491,0): 95, 73, 62, (67,492,0): 93, 73, 64, (67,493,0): 93, 75, 65, (67,494,0): 94, 76, 66, (67,495,0): 94, 76, 64, (67,496,0): 102, 80, 69, (67,497,0): 104, 80, 68, (67,498,0): 105, 81, 69, (67,499,0): 106, 82, 70, (67,500,0): 105, 83, 70, (67,501,0): 104, 82, 69, (67,502,0): 103, 81, 68, (67,503,0): 102, 80, 67, (67,504,0): 103, 84, 70, (67,505,0): 103, 84, 70, (67,506,0): 103, 85, 71, (67,507,0): 105, 87, 73, (67,508,0): 106, 88, 74, (67,509,0): 107, 89, 75, (67,510,0): 107, 91, 76, (67,511,0): 108, 92, 76, (67,512,0): 108, 91, 73, (67,513,0): 108, 91, 71, (67,514,0): 108, 90, 70, (67,515,0): 108, 90, 70, (67,516,0): 108, 89, 72, (67,517,0): 107, 88, 71, (67,518,0): 109, 88, 71, (67,519,0): 109, 88, 71, (67,520,0): 110, 87, 73, (67,521,0): 112, 86, 73, (67,522,0): 114, 86, 75, (67,523,0): 114, 86, 75, (67,524,0): 115, 87, 76, (67,525,0): 115, 87, 76, (67,526,0): 115, 86, 78, (67,527,0): 116, 87, 79, (67,528,0): 112, 88, 78, (67,529,0): 111, 87, 77, (67,530,0): 109, 85, 73, (67,531,0): 107, 83, 71, (67,532,0): 108, 81, 70, (67,533,0): 108, 81, 70, (67,534,0): 109, 83, 70, (67,535,0): 109, 83, 70, (67,536,0): 113, 85, 71, (67,537,0): 113, 85, 71, (67,538,0): 115, 86, 72, (67,539,0): 116, 87, 73, (67,540,0): 116, 87, 71, (67,541,0): 115, 86, 70, (67,542,0): 116, 84, 69, (67,543,0): 113, 84, 70, (67,544,0): 111, 83, 71, (67,545,0): 111, 83, 72, (67,546,0): 110, 82, 71, (67,547,0): 108, 80, 69, (67,548,0): 106, 79, 70, (67,549,0): 105, 78, 69, (67,550,0): 104, 77, 68, (67,551,0): 101, 77, 67, (67,552,0): 98, 73, 66, (67,553,0): 97, 72, 65, (67,554,0): 94, 71, 65, (67,555,0): 92, 69, 63, (67,556,0): 88, 68, 61, (67,557,0): 86, 66, 59, (67,558,0): 84, 63, 58, (67,559,0): 84, 63, 58, (67,560,0): 86, 62, 60, (67,561,0): 85, 61, 61, (67,562,0): 83, 62, 61, (67,563,0): 82, 61, 58, (67,564,0): 83, 62, 59, (67,565,0): 84, 63, 58, (67,566,0): 84, 65, 59, (67,567,0): 85, 66, 60, (67,568,0): 86, 67, 60, (67,569,0): 87, 70, 62, (67,570,0): 89, 72, 62, (67,571,0): 90, 73, 63, (67,572,0): 89, 75, 62, (67,573,0): 88, 74, 61, (67,574,0): 87, 73, 60, (67,575,0): 86, 72, 61, (67,576,0): 87, 68, 61, (67,577,0): 87, 68, 62, (67,578,0): 86, 67, 61, (67,579,0): 85, 66, 60, (67,580,0): 84, 65, 59, (67,581,0): 83, 64, 58, (67,582,0): 82, 63, 57, (67,583,0): 82, 63, 57, (67,584,0): 78, 59, 53, (67,585,0): 78, 59, 53, (67,586,0): 79, 60, 54, (67,587,0): 78, 59, 53, (67,588,0): 77, 58, 52, (67,589,0): 74, 55, 49, (67,590,0): 71, 52, 46, (67,591,0): 69, 50, 44, (67,592,0): 69, 49, 48, (67,593,0): 68, 48, 49, (67,594,0): 67, 47, 48, (67,595,0): 66, 46, 47, (67,596,0): 65, 45, 46, (67,597,0): 64, 44, 45, (67,598,0): 64, 44, 45, (67,599,0): 63, 43, 44, (68,0,0): 35, 31, 46, (68,1,0): 35, 31, 46, (68,2,0): 37, 31, 45, (68,3,0): 37, 31, 45, (68,4,0): 37, 31, 45, (68,5,0): 37, 31, 45, (68,6,0): 38, 30, 43, (68,7,0): 38, 30, 43, (68,8,0): 38, 28, 39, (68,9,0): 38, 28, 39, (68,10,0): 38, 28, 39, (68,11,0): 38, 28, 39, (68,12,0): 39, 27, 37, (68,13,0): 39, 27, 37, (68,14,0): 39, 27, 37, (68,15,0): 39, 27, 37, (68,16,0): 42, 30, 40, (68,17,0): 42, 30, 40, (68,18,0): 42, 30, 40, (68,19,0): 42, 30, 40, (68,20,0): 42, 30, 40, (68,21,0): 42, 30, 40, (68,22,0): 43, 30, 40, (68,23,0): 43, 30, 40, (68,24,0): 45, 29, 40, (68,25,0): 45, 29, 40, (68,26,0): 46, 28, 40, (68,27,0): 47, 29, 41, (68,28,0): 47, 29, 41, (68,29,0): 48, 30, 42, (68,30,0): 48, 30, 42, (68,31,0): 49, 31, 43, (68,32,0): 49, 31, 43, (68,33,0): 49, 31, 43, (68,34,0): 49, 31, 43, (68,35,0): 49, 31, 43, (68,36,0): 49, 31, 43, (68,37,0): 49, 31, 43, (68,38,0): 49, 31, 43, (68,39,0): 49, 31, 43, (68,40,0): 51, 33, 45, (68,41,0): 51, 33, 45, (68,42,0): 51, 33, 45, (68,43,0): 51, 33, 45, (68,44,0): 51, 33, 45, (68,45,0): 51, 33, 45, (68,46,0): 51, 33, 45, (68,47,0): 51, 33, 45, (68,48,0): 51, 33, 45, (68,49,0): 51, 33, 45, (68,50,0): 51, 33, 45, (68,51,0): 51, 33, 45, (68,52,0): 51, 33, 45, (68,53,0): 51, 33, 45, (68,54,0): 51, 33, 45, (68,55,0): 51, 33, 45, (68,56,0): 50, 32, 44, (68,57,0): 50, 32, 44, (68,58,0): 50, 32, 44, (68,59,0): 49, 31, 43, (68,60,0): 49, 31, 43, (68,61,0): 48, 30, 42, (68,62,0): 48, 30, 42, (68,63,0): 48, 30, 42, (68,64,0): 49, 31, 47, (68,65,0): 48, 30, 46, (68,66,0): 48, 30, 46, (68,67,0): 47, 29, 45, (68,68,0): 44, 27, 43, (68,69,0): 43, 26, 42, (68,70,0): 43, 26, 44, (68,71,0): 40, 26, 43, (68,72,0): 40, 25, 44, (68,73,0): 39, 24, 43, (68,74,0): 38, 25, 45, (68,75,0): 37, 24, 44, (68,76,0): 36, 24, 44, (68,77,0): 35, 23, 43, (68,78,0): 35, 23, 43, (68,79,0): 35, 23, 43, (68,80,0): 32, 23, 42, (68,81,0): 32, 23, 42, (68,82,0): 32, 23, 42, (68,83,0): 32, 23, 42, (68,84,0): 32, 23, 42, (68,85,0): 32, 23, 42, (68,86,0): 32, 23, 42, (68,87,0): 32, 23, 42, (68,88,0): 34, 25, 44, (68,89,0): 34, 25, 44, (68,90,0): 34, 25, 44, (68,91,0): 33, 24, 43, (68,92,0): 32, 23, 42, (68,93,0): 32, 23, 42, (68,94,0): 32, 23, 42, (68,95,0): 31, 22, 41, (68,96,0): 34, 22, 46, (68,97,0): 34, 22, 46, (68,98,0): 32, 22, 46, (68,99,0): 32, 22, 46, (68,100,0): 32, 22, 46, (68,101,0): 32, 22, 46, (68,102,0): 31, 23, 46, (68,103,0): 31, 23, 46, (68,104,0): 29, 24, 46, (68,105,0): 28, 23, 45, (68,106,0): 26, 21, 43, (68,107,0): 24, 19, 41, (68,108,0): 22, 19, 40, (68,109,0): 22, 19, 40, (68,110,0): 22, 19, 40, (68,111,0): 23, 20, 41, (68,112,0): 24, 21, 42, (68,113,0): 24, 21, 42, (68,114,0): 24, 21, 42, (68,115,0): 24, 21, 42, (68,116,0): 24, 21, 42, (68,117,0): 24, 21, 42, (68,118,0): 24, 21, 42, (68,119,0): 24, 21, 42, (68,120,0): 24, 21, 42, (68,121,0): 24, 21, 42, (68,122,0): 24, 21, 42, (68,123,0): 23, 20, 41, (68,124,0): 22, 19, 40, (68,125,0): 22, 19, 40, (68,126,0): 22, 19, 40, (68,127,0): 21, 18, 39, (68,128,0): 25, 17, 40, (68,129,0): 25, 17, 40, (68,130,0): 25, 17, 40, (68,131,0): 25, 17, 40, (68,132,0): 25, 17, 40, (68,133,0): 25, 17, 40, (68,134,0): 25, 17, 40, (68,135,0): 25, 17, 40, (68,136,0): 24, 16, 39, (68,137,0): 25, 17, 40, (68,138,0): 26, 18, 41, (68,139,0): 26, 18, 41, (68,140,0): 25, 17, 40, (68,141,0): 24, 16, 39, (68,142,0): 23, 15, 38, (68,143,0): 22, 14, 35, (68,144,0): 19, 14, 34, (68,145,0): 19, 15, 32, (68,146,0): 19, 15, 32, (68,147,0): 20, 16, 33, (68,148,0): 20, 16, 33, (68,149,0): 20, 16, 33, (68,150,0): 20, 16, 33, (68,151,0): 20, 16, 33, (68,152,0): 23, 19, 36, (68,153,0): 23, 19, 36, (68,154,0): 23, 19, 36, (68,155,0): 24, 20, 37, (68,156,0): 24, 20, 37, (68,157,0): 25, 21, 38, (68,158,0): 25, 21, 38, (68,159,0): 25, 21, 38, (68,160,0): 31, 24, 42, (68,161,0): 31, 24, 42, (68,162,0): 31, 24, 42, (68,163,0): 31, 24, 42, (68,164,0): 31, 24, 42, (68,165,0): 31, 24, 42, (68,166,0): 31, 24, 42, (68,167,0): 31, 24, 42, (68,168,0): 31, 24, 42, (68,169,0): 31, 24, 42, (68,170,0): 31, 24, 42, (68,171,0): 31, 24, 42, (68,172,0): 31, 24, 42, (68,173,0): 31, 24, 42, (68,174,0): 31, 24, 42, (68,175,0): 31, 24, 42, (68,176,0): 32, 24, 47, (68,177,0): 32, 24, 47, (68,178,0): 32, 24, 47, (68,179,0): 32, 24, 47, (68,180,0): 32, 24, 47, (68,181,0): 32, 24, 47, (68,182,0): 32, 24, 47, (68,183,0): 32, 24, 47, (68,184,0): 35, 27, 50, (68,185,0): 34, 26, 49, (68,186,0): 34, 26, 49, (68,187,0): 34, 26, 49, (68,188,0): 34, 26, 49, (68,189,0): 35, 27, 50, (68,190,0): 37, 29, 52, (68,191,0): 38, 30, 51, (68,192,0): 38, 29, 50, (68,193,0): 38, 29, 48, (68,194,0): 38, 29, 48, (68,195,0): 38, 29, 48, (68,196,0): 38, 29, 48, (68,197,0): 38, 29, 48, (68,198,0): 38, 29, 48, (68,199,0): 38, 29, 48, (68,200,0): 37, 28, 47, (68,201,0): 38, 29, 48, (68,202,0): 38, 29, 48, (68,203,0): 38, 29, 48, (68,204,0): 39, 30, 49, (68,205,0): 40, 31, 50, (68,206,0): 40, 31, 50, (68,207,0): 42, 30, 50, (68,208,0): 43, 30, 48, (68,209,0): 45, 30, 49, (68,210,0): 47, 30, 48, (68,211,0): 47, 30, 48, (68,212,0): 48, 31, 49, (68,213,0): 49, 32, 50, (68,214,0): 50, 32, 48, (68,215,0): 50, 32, 48, (68,216,0): 54, 33, 48, (68,217,0): 54, 33, 48, (68,218,0): 55, 34, 49, (68,219,0): 55, 34, 49, (68,220,0): 57, 35, 48, (68,221,0): 57, 35, 48, (68,222,0): 58, 36, 49, (68,223,0): 59, 35, 49, (68,224,0): 62, 34, 49, (68,225,0): 62, 34, 49, (68,226,0): 65, 34, 50, (68,227,0): 65, 34, 50, (68,228,0): 66, 35, 50, (68,229,0): 66, 35, 50, (68,230,0): 67, 36, 51, (68,231,0): 68, 36, 49, (68,232,0): 70, 38, 51, (68,233,0): 70, 36, 50, (68,234,0): 70, 37, 48, (68,235,0): 70, 37, 48, (68,236,0): 71, 35, 47, (68,237,0): 70, 34, 44, (68,238,0): 70, 34, 44, (68,239,0): 68, 35, 44, (68,240,0): 67, 35, 46, (68,241,0): 67, 35, 46, (68,242,0): 67, 36, 44, (68,243,0): 68, 37, 45, (68,244,0): 69, 36, 45, (68,245,0): 70, 37, 46, (68,246,0): 71, 38, 45, (68,247,0): 71, 38, 45, (68,248,0): 76, 41, 48, (68,249,0): 76, 41, 47, (68,250,0): 77, 40, 47, (68,251,0): 77, 40, 47, (68,252,0): 77, 41, 45, (68,253,0): 77, 41, 45, (68,254,0): 79, 40, 45, (68,255,0): 79, 40, 45, (68,256,0): 78, 42, 46, (68,257,0): 77, 41, 45, (68,258,0): 77, 41, 45, (68,259,0): 76, 40, 44, (68,260,0): 79, 40, 45, (68,261,0): 80, 41, 46, (68,262,0): 83, 42, 48, (68,263,0): 84, 43, 49, (68,264,0): 84, 43, 49, (68,265,0): 84, 43, 49, (68,266,0): 86, 43, 50, (68,267,0): 86, 43, 50, (68,268,0): 89, 44, 51, (68,269,0): 89, 44, 51, (68,270,0): 90, 45, 52, (68,271,0): 90, 45, 52, (68,272,0): 89, 44, 49, (68,273,0): 89, 44, 49, (68,274,0): 89, 44, 49, (68,275,0): 90, 45, 50, (68,276,0): 90, 45, 50, (68,277,0): 91, 46, 51, (68,278,0): 91, 46, 51, (68,279,0): 92, 47, 52, (68,280,0): 95, 50, 55, (68,281,0): 95, 50, 55, (68,282,0): 95, 50, 55, (68,283,0): 95, 50, 55, (68,284,0): 97, 52, 57, (68,285,0): 99, 54, 59, (68,286,0): 102, 57, 62, (68,287,0): 103, 58, 63, (68,288,0): 102, 57, 60, (68,289,0): 105, 61, 60, (68,290,0): 110, 65, 60, (68,291,0): 113, 66, 56, (68,292,0): 116, 69, 53, (68,293,0): 120, 72, 52, (68,294,0): 128, 77, 56, (68,295,0): 135, 80, 59, (68,296,0): 143, 87, 64, (68,297,0): 149, 89, 65, (68,298,0): 153, 91, 66, (68,299,0): 157, 93, 65, (68,300,0): 160, 96, 61, (68,301,0): 166, 101, 61, (68,302,0): 176, 109, 66, (68,303,0): 185, 114, 62, (68,304,0): 204, 120, 56, (68,305,0): 224, 137, 66, (68,306,0): 234, 150, 77, (68,307,0): 229, 150, 73, (68,308,0): 218, 142, 66, (68,309,0): 211, 139, 63, (68,310,0): 204, 138, 64, (68,311,0): 196, 136, 64, (68,312,0): 193, 136, 65, (68,313,0): 189, 135, 61, (68,314,0): 185, 136, 59, (68,315,0): 185, 136, 59, (68,316,0): 186, 138, 62, (68,317,0): 185, 137, 63, (68,318,0): 182, 133, 64, (68,319,0): 176, 131, 66, (68,320,0): 167, 131, 69, (68,321,0): 163, 131, 72, (68,322,0): 160, 128, 71, (68,323,0): 158, 126, 69, (68,324,0): 156, 124, 67, (68,325,0): 156, 124, 67, (68,326,0): 155, 124, 69, (68,327,0): 155, 124, 69, (68,328,0): 157, 127, 73, (68,329,0): 157, 127, 73, (68,330,0): 156, 129, 74, (68,331,0): 156, 129, 76, (68,332,0): 157, 130, 77, (68,333,0): 157, 130, 77, (68,334,0): 158, 130, 80, (68,335,0): 158, 130, 80, (68,336,0): 156, 130, 81, (68,337,0): 155, 128, 81, (68,338,0): 153, 126, 79, (68,339,0): 151, 124, 77, (68,340,0): 148, 121, 76, (68,341,0): 145, 118, 73, (68,342,0): 143, 115, 75, (68,343,0): 142, 114, 74, (68,344,0): 141, 113, 74, (68,345,0): 140, 112, 73, (68,346,0): 139, 110, 76, (68,347,0): 138, 109, 75, (68,348,0): 137, 108, 76, (68,349,0): 136, 107, 75, (68,350,0): 135, 106, 74, (68,351,0): 135, 106, 74, (68,352,0): 136, 109, 80, (68,353,0): 135, 108, 79, (68,354,0): 134, 107, 78, (68,355,0): 134, 107, 78, (68,356,0): 136, 106, 78, (68,357,0): 137, 107, 79, (68,358,0): 139, 109, 81, (68,359,0): 140, 110, 82, (68,360,0): 143, 112, 84, (68,361,0): 144, 113, 85, (68,362,0): 148, 114, 87, (68,363,0): 150, 116, 89, (68,364,0): 151, 117, 90, (68,365,0): 152, 118, 91, (68,366,0): 152, 116, 90, (68,367,0): 152, 116, 90, (68,368,0): 155, 117, 94, (68,369,0): 156, 118, 95, (68,370,0): 157, 119, 96, (68,371,0): 158, 120, 97, (68,372,0): 159, 118, 96, (68,373,0): 158, 117, 95, (68,374,0): 157, 116, 94, (68,375,0): 156, 115, 93, (68,376,0): 154, 112, 90, (68,377,0): 154, 112, 90, (68,378,0): 157, 112, 91, (68,379,0): 159, 114, 93, (68,380,0): 160, 115, 94, (68,381,0): 161, 116, 95, (68,382,0): 163, 116, 96, (68,383,0): 165, 116, 99, (68,384,0): 164, 111, 97, (68,385,0): 166, 110, 97, (68,386,0): 167, 112, 92, (68,387,0): 170, 116, 92, (68,388,0): 174, 119, 89, (68,389,0): 178, 122, 89, (68,390,0): 184, 125, 91, (68,391,0): 186, 127, 93, (68,392,0): 189, 128, 97, (68,393,0): 189, 128, 97, (68,394,0): 193, 130, 99, (68,395,0): 195, 130, 100, (68,396,0): 197, 130, 101, (68,397,0): 198, 132, 100, (68,398,0): 198, 132, 97, (68,399,0): 198, 133, 95, (68,400,0): 199, 136, 95, (68,401,0): 198, 133, 91, (68,402,0): 197, 133, 89, (68,403,0): 201, 134, 89, (68,404,0): 207, 139, 92, (68,405,0): 216, 146, 97, (68,406,0): 223, 151, 103, (68,407,0): 228, 154, 105, (68,408,0): 219, 145, 96, (68,409,0): 217, 143, 94, (68,410,0): 213, 139, 90, (68,411,0): 207, 135, 87, (68,412,0): 202, 132, 83, (68,413,0): 198, 127, 81, (68,414,0): 194, 126, 79, (68,415,0): 192, 125, 80, (68,416,0): 184, 120, 76, (68,417,0): 179, 116, 73, (68,418,0): 175, 113, 72, (68,419,0): 173, 116, 73, (68,420,0): 176, 121, 80, (68,421,0): 179, 128, 85, (68,422,0): 177, 130, 86, (68,423,0): 174, 130, 85, (68,424,0): 172, 129, 84, (68,425,0): 173, 133, 84, (68,426,0): 175, 135, 84, (68,427,0): 177, 140, 87, (68,428,0): 180, 143, 88, (68,429,0): 185, 146, 89, (68,430,0): 188, 149, 90, (68,431,0): 189, 150, 91, (68,432,0): 188, 149, 94, (68,433,0): 187, 147, 95, (68,434,0): 183, 146, 93, (68,435,0): 181, 144, 91, (68,436,0): 179, 142, 90, (68,437,0): 177, 140, 88, (68,438,0): 174, 138, 86, (68,439,0): 174, 138, 88, (68,440,0): 169, 135, 87, (68,441,0): 168, 134, 86, (68,442,0): 165, 131, 85, (68,443,0): 162, 130, 83, (68,444,0): 160, 127, 82, (68,445,0): 159, 126, 81, (68,446,0): 160, 127, 82, (68,447,0): 160, 127, 82, (68,448,0): 163, 130, 85, (68,449,0): 162, 129, 86, (68,450,0): 160, 127, 84, (68,451,0): 157, 124, 83, (68,452,0): 153, 120, 79, (68,453,0): 148, 114, 76, (68,454,0): 144, 110, 72, (68,455,0): 142, 108, 71, (68,456,0): 141, 107, 72, (68,457,0): 142, 108, 73, (68,458,0): 143, 108, 76, (68,459,0): 143, 108, 76, (68,460,0): 140, 105, 75, (68,461,0): 137, 102, 72, (68,462,0): 134, 99, 71, (68,463,0): 132, 96, 72, (68,464,0): 123, 88, 69, (68,465,0): 122, 86, 70, (68,466,0): 118, 85, 68, (68,467,0): 112, 83, 65, (68,468,0): 110, 83, 64, (68,469,0): 109, 84, 64, (68,470,0): 107, 85, 64, (68,471,0): 105, 87, 65, (68,472,0): 109, 91, 69, (68,473,0): 108, 92, 69, (68,474,0): 108, 92, 69, (68,475,0): 108, 92, 69, (68,476,0): 108, 90, 68, (68,477,0): 107, 89, 67, (68,478,0): 106, 88, 66, (68,479,0): 105, 88, 68, (68,480,0): 106, 89, 71, (68,481,0): 107, 90, 72, (68,482,0): 108, 89, 72, (68,483,0): 108, 89, 72, (68,484,0): 109, 87, 73, (68,485,0): 108, 85, 71, (68,486,0): 108, 82, 69, (68,487,0): 107, 81, 68, (68,488,0): 102, 75, 64, (68,489,0): 99, 75, 63, (68,490,0): 98, 74, 64, (68,491,0): 97, 75, 64, (68,492,0): 95, 75, 64, (68,493,0): 94, 76, 64, (68,494,0): 95, 77, 67, (68,495,0): 97, 77, 66, (68,496,0): 102, 80, 69, (68,497,0): 105, 81, 69, (68,498,0): 106, 82, 70, (68,499,0): 108, 84, 72, (68,500,0): 107, 85, 72, (68,501,0): 107, 85, 72, (68,502,0): 107, 85, 72, (68,503,0): 106, 84, 71, (68,504,0): 104, 85, 71, (68,505,0): 105, 86, 72, (68,506,0): 105, 87, 73, (68,507,0): 106, 88, 74, (68,508,0): 107, 89, 75, (68,509,0): 109, 91, 77, (68,510,0): 109, 93, 78, (68,511,0): 109, 93, 77, (68,512,0): 110, 93, 75, (68,513,0): 110, 92, 72, (68,514,0): 110, 92, 72, (68,515,0): 109, 91, 71, (68,516,0): 108, 89, 72, (68,517,0): 108, 89, 72, (68,518,0): 109, 88, 71, (68,519,0): 109, 88, 71, (68,520,0): 110, 87, 73, (68,521,0): 110, 87, 73, (68,522,0): 113, 86, 75, (68,523,0): 113, 86, 75, (68,524,0): 114, 87, 76, (68,525,0): 114, 87, 76, (68,526,0): 114, 87, 78, (68,527,0): 115, 88, 79, (68,528,0): 112, 88, 78, (68,529,0): 110, 88, 77, (68,530,0): 108, 86, 73, (68,531,0): 107, 85, 72, (68,532,0): 107, 83, 71, (68,533,0): 107, 83, 71, (68,534,0): 110, 84, 71, (68,535,0): 110, 84, 71, (68,536,0): 112, 86, 71, (68,537,0): 113, 87, 72, (68,538,0): 115, 87, 73, (68,539,0): 116, 88, 74, (68,540,0): 118, 89, 73, (68,541,0): 117, 88, 72, (68,542,0): 116, 87, 71, (68,543,0): 115, 86, 70, (68,544,0): 111, 83, 69, (68,545,0): 111, 83, 69, (68,546,0): 110, 82, 70, (68,547,0): 110, 82, 70, (68,548,0): 109, 81, 69, (68,549,0): 107, 81, 68, (68,550,0): 107, 80, 69, (68,551,0): 106, 79, 68, (68,552,0): 100, 76, 66, (68,553,0): 100, 76, 66, (68,554,0): 97, 75, 64, (68,555,0): 95, 73, 62, (68,556,0): 93, 70, 62, (68,557,0): 91, 68, 60, (68,558,0): 89, 66, 58, (68,559,0): 88, 65, 59, (68,560,0): 89, 65, 61, (68,561,0): 89, 65, 63, (68,562,0): 87, 63, 61, (68,563,0): 86, 62, 60, (68,564,0): 84, 63, 60, (68,565,0): 84, 63, 58, (68,566,0): 85, 64, 59, (68,567,0): 85, 66, 59, (68,568,0): 87, 68, 61, (68,569,0): 87, 68, 61, (68,570,0): 88, 71, 61, (68,571,0): 89, 72, 62, (68,572,0): 89, 73, 60, (68,573,0): 89, 73, 60, (68,574,0): 87, 73, 60, (68,575,0): 87, 73, 62, (68,576,0): 88, 69, 62, (68,577,0): 88, 69, 62, (68,578,0): 87, 68, 61, (68,579,0): 86, 67, 60, (68,580,0): 85, 66, 59, (68,581,0): 84, 65, 58, (68,582,0): 83, 64, 57, (68,583,0): 83, 64, 57, (68,584,0): 78, 59, 52, (68,585,0): 79, 60, 53, (68,586,0): 80, 61, 54, (68,587,0): 79, 60, 53, (68,588,0): 78, 59, 52, (68,589,0): 75, 56, 49, (68,590,0): 73, 54, 47, (68,591,0): 71, 52, 46, (68,592,0): 71, 51, 50, (68,593,0): 70, 50, 49, (68,594,0): 70, 50, 49, (68,595,0): 69, 49, 48, (68,596,0): 68, 48, 47, (68,597,0): 67, 47, 46, (68,598,0): 66, 46, 45, (68,599,0): 65, 45, 44, (69,0,0): 35, 31, 46, (69,1,0): 35, 31, 46, (69,2,0): 37, 31, 45, (69,3,0): 37, 31, 45, (69,4,0): 37, 31, 45, (69,5,0): 37, 31, 45, (69,6,0): 38, 30, 43, (69,7,0): 38, 30, 43, (69,8,0): 38, 28, 39, (69,9,0): 38, 28, 39, (69,10,0): 38, 28, 39, (69,11,0): 38, 28, 39, (69,12,0): 39, 27, 37, (69,13,0): 39, 27, 37, (69,14,0): 39, 27, 37, (69,15,0): 39, 27, 37, (69,16,0): 42, 30, 40, (69,17,0): 42, 30, 40, (69,18,0): 42, 30, 40, (69,19,0): 42, 30, 40, (69,20,0): 42, 30, 40, (69,21,0): 42, 30, 40, (69,22,0): 43, 30, 40, (69,23,0): 43, 30, 40, (69,24,0): 44, 28, 39, (69,25,0): 45, 29, 40, (69,26,0): 46, 28, 40, (69,27,0): 46, 28, 40, (69,28,0): 47, 29, 41, (69,29,0): 48, 30, 42, (69,30,0): 48, 30, 42, (69,31,0): 48, 30, 42, (69,32,0): 49, 31, 43, (69,33,0): 49, 31, 43, (69,34,0): 49, 31, 43, (69,35,0): 49, 31, 43, (69,36,0): 49, 31, 43, (69,37,0): 49, 31, 43, (69,38,0): 49, 31, 43, (69,39,0): 49, 31, 43, (69,40,0): 51, 33, 45, (69,41,0): 51, 33, 45, (69,42,0): 51, 33, 45, (69,43,0): 51, 33, 45, (69,44,0): 51, 33, 45, (69,45,0): 51, 33, 45, (69,46,0): 51, 33, 45, (69,47,0): 51, 33, 45, (69,48,0): 51, 33, 45, (69,49,0): 51, 33, 45, (69,50,0): 51, 33, 45, (69,51,0): 51, 33, 45, (69,52,0): 51, 33, 45, (69,53,0): 51, 33, 45, (69,54,0): 51, 33, 45, (69,55,0): 51, 33, 45, (69,56,0): 50, 32, 44, (69,57,0): 50, 32, 44, (69,58,0): 50, 32, 44, (69,59,0): 49, 31, 43, (69,60,0): 49, 31, 43, (69,61,0): 48, 30, 42, (69,62,0): 48, 30, 42, (69,63,0): 48, 30, 42, (69,64,0): 49, 31, 47, (69,65,0): 48, 30, 46, (69,66,0): 48, 30, 46, (69,67,0): 46, 29, 45, (69,68,0): 44, 27, 43, (69,69,0): 43, 26, 42, (69,70,0): 41, 27, 44, (69,71,0): 40, 26, 43, (69,72,0): 39, 24, 43, (69,73,0): 38, 25, 43, (69,74,0): 38, 25, 45, (69,75,0): 37, 24, 44, (69,76,0): 35, 23, 43, (69,77,0): 35, 23, 43, (69,78,0): 35, 23, 43, (69,79,0): 34, 22, 42, (69,80,0): 32, 23, 42, (69,81,0): 32, 23, 42, (69,82,0): 32, 23, 42, (69,83,0): 32, 23, 42, (69,84,0): 32, 23, 42, (69,85,0): 32, 23, 42, (69,86,0): 32, 23, 42, (69,87,0): 32, 23, 42, (69,88,0): 34, 25, 44, (69,89,0): 33, 24, 43, (69,90,0): 33, 24, 43, (69,91,0): 32, 23, 42, (69,92,0): 32, 23, 42, (69,93,0): 31, 22, 41, (69,94,0): 31, 22, 41, (69,95,0): 31, 22, 41, (69,96,0): 34, 22, 46, (69,97,0): 34, 22, 46, (69,98,0): 32, 22, 46, (69,99,0): 32, 22, 46, (69,100,0): 32, 22, 46, (69,101,0): 32, 22, 46, (69,102,0): 31, 23, 46, (69,103,0): 31, 23, 46, (69,104,0): 29, 24, 46, (69,105,0): 28, 23, 45, (69,106,0): 26, 21, 43, (69,107,0): 24, 19, 41, (69,108,0): 22, 19, 40, (69,109,0): 22, 19, 40, (69,110,0): 22, 19, 40, (69,111,0): 22, 19, 40, (69,112,0): 24, 21, 42, (69,113,0): 24, 21, 42, (69,114,0): 24, 21, 42, (69,115,0): 24, 21, 42, (69,116,0): 24, 21, 42, (69,117,0): 24, 21, 42, (69,118,0): 24, 21, 42, (69,119,0): 24, 21, 42, (69,120,0): 24, 21, 42, (69,121,0): 23, 20, 41, (69,122,0): 23, 20, 41, (69,123,0): 22, 19, 40, (69,124,0): 22, 19, 40, (69,125,0): 21, 18, 39, (69,126,0): 21, 18, 39, (69,127,0): 21, 18, 39, (69,128,0): 24, 16, 39, (69,129,0): 24, 16, 39, (69,130,0): 24, 16, 39, (69,131,0): 24, 16, 39, (69,132,0): 24, 16, 39, (69,133,0): 24, 16, 39, (69,134,0): 24, 16, 39, (69,135,0): 24, 16, 39, (69,136,0): 24, 16, 39, (69,137,0): 24, 16, 39, (69,138,0): 25, 17, 40, (69,139,0): 25, 17, 40, (69,140,0): 25, 17, 40, (69,141,0): 23, 15, 38, (69,142,0): 22, 14, 37, (69,143,0): 21, 13, 34, (69,144,0): 19, 14, 34, (69,145,0): 19, 15, 32, (69,146,0): 20, 16, 33, (69,147,0): 20, 16, 33, (69,148,0): 21, 17, 34, (69,149,0): 21, 17, 34, (69,150,0): 21, 17, 34, (69,151,0): 22, 18, 35, (69,152,0): 24, 20, 37, (69,153,0): 24, 20, 37, (69,154,0): 24, 20, 37, (69,155,0): 24, 20, 37, (69,156,0): 24, 20, 37, (69,157,0): 24, 20, 37, (69,158,0): 24, 20, 37, (69,159,0): 24, 20, 37, (69,160,0): 31, 24, 42, (69,161,0): 31, 24, 42, (69,162,0): 31, 24, 42, (69,163,0): 31, 24, 42, (69,164,0): 31, 24, 42, (69,165,0): 31, 24, 42, (69,166,0): 31, 24, 42, (69,167,0): 31, 24, 42, (69,168,0): 31, 24, 42, (69,169,0): 31, 24, 42, (69,170,0): 31, 24, 42, (69,171,0): 31, 24, 42, (69,172,0): 31, 24, 42, (69,173,0): 31, 24, 42, (69,174,0): 31, 24, 42, (69,175,0): 31, 24, 42, (69,176,0): 32, 24, 47, (69,177,0): 32, 24, 47, (69,178,0): 32, 24, 47, (69,179,0): 32, 24, 47, (69,180,0): 32, 24, 47, (69,181,0): 32, 24, 47, (69,182,0): 32, 24, 47, (69,183,0): 32, 24, 47, (69,184,0): 35, 27, 50, (69,185,0): 34, 26, 49, (69,186,0): 33, 25, 48, (69,187,0): 33, 25, 48, (69,188,0): 34, 26, 49, (69,189,0): 35, 27, 50, (69,190,0): 37, 29, 52, (69,191,0): 38, 30, 51, (69,192,0): 38, 29, 50, (69,193,0): 38, 29, 48, (69,194,0): 38, 29, 48, (69,195,0): 38, 29, 48, (69,196,0): 38, 29, 48, (69,197,0): 38, 29, 48, (69,198,0): 38, 29, 48, (69,199,0): 38, 29, 48, (69,200,0): 37, 28, 47, (69,201,0): 37, 28, 47, (69,202,0): 37, 28, 47, (69,203,0): 38, 29, 48, (69,204,0): 38, 29, 48, (69,205,0): 39, 30, 49, (69,206,0): 39, 30, 49, (69,207,0): 42, 30, 50, (69,208,0): 43, 30, 48, (69,209,0): 44, 29, 48, (69,210,0): 46, 29, 47, (69,211,0): 47, 30, 48, (69,212,0): 47, 30, 48, (69,213,0): 48, 31, 49, (69,214,0): 49, 31, 47, (69,215,0): 50, 32, 48, (69,216,0): 54, 33, 48, (69,217,0): 54, 33, 48, (69,218,0): 55, 34, 49, (69,219,0): 55, 34, 49, (69,220,0): 57, 35, 48, (69,221,0): 57, 35, 48, (69,222,0): 58, 36, 49, (69,223,0): 59, 35, 49, (69,224,0): 62, 34, 49, (69,225,0): 64, 33, 49, (69,226,0): 65, 34, 50, (69,227,0): 65, 34, 49, (69,228,0): 66, 35, 50, (69,229,0): 67, 35, 50, (69,230,0): 68, 36, 49, (69,231,0): 68, 36, 49, (69,232,0): 71, 37, 51, (69,233,0): 71, 38, 49, (69,234,0): 73, 37, 49, (69,235,0): 72, 36, 48, (69,236,0): 72, 36, 46, (69,237,0): 71, 35, 45, (69,238,0): 71, 35, 45, (69,239,0): 70, 34, 44, (69,240,0): 70, 37, 48, (69,241,0): 68, 36, 47, (69,242,0): 68, 37, 45, (69,243,0): 68, 37, 45, (69,244,0): 69, 36, 45, (69,245,0): 70, 37, 46, (69,246,0): 72, 39, 46, (69,247,0): 72, 39, 46, (69,248,0): 76, 41, 47, (69,249,0): 76, 41, 47, (69,250,0): 77, 40, 47, (69,251,0): 77, 40, 47, (69,252,0): 77, 41, 45, (69,253,0): 77, 41, 45, (69,254,0): 79, 40, 45, (69,255,0): 79, 40, 45, (69,256,0): 78, 42, 46, (69,257,0): 77, 41, 45, (69,258,0): 77, 41, 45, (69,259,0): 76, 40, 44, (69,260,0): 79, 40, 45, (69,261,0): 80, 41, 46, (69,262,0): 83, 42, 48, (69,263,0): 84, 43, 49, (69,264,0): 84, 43, 49, (69,265,0): 84, 43, 49, (69,266,0): 86, 43, 50, (69,267,0): 86, 43, 50, (69,268,0): 89, 44, 51, (69,269,0): 89, 44, 51, (69,270,0): 90, 45, 52, (69,271,0): 90, 45, 52, (69,272,0): 90, 45, 50, (69,273,0): 90, 45, 50, (69,274,0): 90, 45, 50, (69,275,0): 91, 46, 51, (69,276,0): 91, 46, 51, (69,277,0): 92, 47, 52, (69,278,0): 92, 47, 52, (69,279,0): 92, 47, 52, (69,280,0): 95, 50, 55, (69,281,0): 95, 50, 55, (69,282,0): 95, 50, 55, (69,283,0): 95, 50, 55, (69,284,0): 97, 52, 57, (69,285,0): 99, 54, 59, (69,286,0): 102, 57, 62, (69,287,0): 103, 58, 61, (69,288,0): 102, 58, 59, (69,289,0): 105, 61, 60, (69,290,0): 110, 65, 59, (69,291,0): 113, 66, 56, (69,292,0): 116, 69, 53, (69,293,0): 120, 72, 52, (69,294,0): 128, 77, 56, (69,295,0): 135, 80, 59, (69,296,0): 143, 87, 64, (69,297,0): 149, 89, 65, (69,298,0): 154, 93, 65, (69,299,0): 159, 94, 64, (69,300,0): 164, 98, 63, (69,301,0): 172, 105, 63, (69,302,0): 180, 112, 65, (69,303,0): 192, 117, 62, (69,304,0): 211, 127, 63, (69,305,0): 227, 140, 69, (69,306,0): 233, 149, 76, (69,307,0): 226, 147, 72, (69,308,0): 216, 140, 64, (69,309,0): 207, 138, 61, (69,310,0): 201, 137, 63, (69,311,0): 194, 134, 62, (69,312,0): 192, 135, 64, (69,313,0): 186, 134, 61, (69,314,0): 182, 134, 58, (69,315,0): 181, 135, 58, (69,316,0): 181, 137, 62, (69,317,0): 181, 137, 64, (69,318,0): 179, 134, 66, (69,319,0): 173, 132, 66, (69,320,0): 167, 131, 71, (69,321,0): 163, 131, 72, (69,322,0): 160, 128, 71, (69,323,0): 158, 126, 69, (69,324,0): 156, 124, 67, (69,325,0): 156, 124, 67, (69,326,0): 155, 124, 69, (69,327,0): 155, 124, 69, (69,328,0): 157, 127, 73, (69,329,0): 157, 127, 73, (69,330,0): 156, 129, 74, (69,331,0): 156, 129, 74, (69,332,0): 157, 130, 75, (69,333,0): 157, 130, 75, (69,334,0): 158, 131, 78, (69,335,0): 158, 131, 78, (69,336,0): 157, 131, 82, (69,337,0): 156, 129, 82, (69,338,0): 154, 127, 80, (69,339,0): 151, 124, 77, (69,340,0): 148, 121, 76, (69,341,0): 146, 119, 74, (69,342,0): 144, 116, 76, (69,343,0): 143, 115, 75, (69,344,0): 142, 114, 75, (69,345,0): 142, 114, 75, (69,346,0): 141, 112, 78, (69,347,0): 140, 111, 77, (69,348,0): 139, 110, 78, (69,349,0): 138, 109, 77, (69,350,0): 137, 108, 76, (69,351,0): 137, 108, 76, (69,352,0): 137, 110, 81, (69,353,0): 136, 109, 80, (69,354,0): 135, 108, 79, (69,355,0): 134, 107, 78, (69,356,0): 137, 107, 79, (69,357,0): 137, 107, 79, (69,358,0): 138, 108, 80, (69,359,0): 139, 109, 81, (69,360,0): 142, 111, 83, (69,361,0): 144, 113, 85, (69,362,0): 148, 114, 87, (69,363,0): 150, 116, 89, (69,364,0): 152, 118, 91, (69,365,0): 153, 119, 92, (69,366,0): 154, 118, 92, (69,367,0): 153, 117, 91, (69,368,0): 155, 117, 94, (69,369,0): 156, 118, 95, (69,370,0): 158, 120, 97, (69,371,0): 159, 121, 98, (69,372,0): 160, 119, 97, (69,373,0): 158, 117, 95, (69,374,0): 156, 115, 93, (69,375,0): 154, 113, 91, (69,376,0): 156, 114, 92, (69,377,0): 156, 114, 92, (69,378,0): 159, 114, 93, (69,379,0): 159, 114, 93, (69,380,0): 160, 115, 94, (69,381,0): 161, 116, 95, (69,382,0): 163, 116, 96, (69,383,0): 164, 115, 98, (69,384,0): 166, 113, 99, (69,385,0): 168, 112, 97, (69,386,0): 169, 114, 94, (69,387,0): 171, 117, 93, (69,388,0): 175, 120, 90, (69,389,0): 178, 123, 92, (69,390,0): 182, 126, 93, (69,391,0): 186, 127, 95, (69,392,0): 188, 127, 98, (69,393,0): 191, 127, 99, (69,394,0): 194, 128, 102, (69,395,0): 196, 131, 103, (69,396,0): 198, 131, 102, (69,397,0): 198, 132, 100, (69,398,0): 198, 132, 98, (69,399,0): 200, 132, 95, (69,400,0): 200, 133, 90, (69,401,0): 199, 133, 85, (69,402,0): 202, 134, 87, (69,403,0): 206, 138, 89, (69,404,0): 215, 145, 96, (69,405,0): 220, 150, 99, (69,406,0): 224, 152, 102, (69,407,0): 224, 152, 102, (69,408,0): 212, 140, 90, (69,409,0): 210, 138, 88, (69,410,0): 207, 135, 87, (69,411,0): 202, 132, 83, (69,412,0): 197, 129, 82, (69,413,0): 193, 127, 79, (69,414,0): 191, 124, 79, (69,415,0): 189, 125, 79, (69,416,0): 181, 119, 72, (69,417,0): 179, 118, 71, (69,418,0): 178, 120, 74, (69,419,0): 179, 122, 77, (69,420,0): 181, 127, 81, (69,421,0): 181, 130, 85, (69,422,0): 179, 132, 86, (69,423,0): 175, 133, 85, (69,424,0): 173, 133, 84, (69,425,0): 175, 135, 84, (69,426,0): 176, 139, 86, (69,427,0): 179, 142, 87, (69,428,0): 183, 147, 89, (69,429,0): 186, 150, 90, (69,430,0): 191, 153, 91, (69,431,0): 193, 154, 95, (69,432,0): 190, 151, 94, (69,433,0): 189, 150, 93, (69,434,0): 185, 149, 91, (69,435,0): 183, 146, 91, (69,436,0): 181, 144, 89, (69,437,0): 179, 142, 89, (69,438,0): 176, 141, 87, (69,439,0): 175, 139, 87, (69,440,0): 174, 138, 88, (69,441,0): 170, 136, 88, (69,442,0): 167, 133, 85, (69,443,0): 164, 130, 84, (69,444,0): 162, 128, 82, (69,445,0): 161, 128, 83, (69,446,0): 163, 129, 84, (69,447,0): 163, 130, 85, (69,448,0): 167, 133, 88, (69,449,0): 165, 132, 87, (69,450,0): 165, 131, 86, (69,451,0): 161, 128, 85, (69,452,0): 157, 124, 81, (69,453,0): 153, 120, 79, (69,454,0): 149, 116, 75, (69,455,0): 147, 113, 75, (69,456,0): 142, 108, 71, (69,457,0): 145, 111, 76, (69,458,0): 146, 111, 79, (69,459,0): 145, 110, 78, (69,460,0): 141, 106, 76, (69,461,0): 136, 101, 71, (69,462,0): 134, 99, 71, (69,463,0): 132, 98, 71, (69,464,0): 125, 90, 71, (69,465,0): 121, 88, 71, (69,466,0): 117, 86, 68, (69,467,0): 113, 84, 66, (69,468,0): 111, 84, 65, (69,469,0): 109, 87, 66, (69,470,0): 109, 88, 67, (69,471,0): 108, 90, 68, (69,472,0): 110, 94, 71, (69,473,0): 110, 94, 71, (69,474,0): 110, 94, 71, (69,475,0): 110, 94, 71, (69,476,0): 110, 92, 70, (69,477,0): 108, 90, 68, (69,478,0): 107, 89, 67, (69,479,0): 106, 88, 66, (69,480,0): 108, 90, 70, (69,481,0): 107, 90, 72, (69,482,0): 108, 89, 72, (69,483,0): 110, 89, 72, (69,484,0): 110, 87, 73, (69,485,0): 108, 85, 71, (69,486,0): 108, 82, 69, (69,487,0): 107, 81, 68, (69,488,0): 104, 77, 66, (69,489,0): 103, 76, 65, (69,490,0): 102, 75, 66, (69,491,0): 99, 75, 65, (69,492,0): 98, 76, 65, (69,493,0): 97, 77, 66, (69,494,0): 98, 78, 69, (69,495,0): 99, 79, 68, (69,496,0): 103, 81, 68, (69,497,0): 105, 81, 69, (69,498,0): 107, 83, 71, (69,499,0): 109, 85, 73, (69,500,0): 110, 88, 75, (69,501,0): 110, 88, 75, (69,502,0): 110, 88, 75, (69,503,0): 110, 88, 75, (69,504,0): 107, 88, 74, (69,505,0): 107, 88, 74, (69,506,0): 107, 89, 75, (69,507,0): 108, 90, 76, (69,508,0): 109, 91, 77, (69,509,0): 110, 92, 78, (69,510,0): 109, 93, 78, (69,511,0): 110, 94, 78, (69,512,0): 112, 93, 76, (69,513,0): 111, 93, 73, (69,514,0): 111, 93, 73, (69,515,0): 110, 92, 72, (69,516,0): 109, 90, 73, (69,517,0): 108, 89, 72, (69,518,0): 109, 88, 71, (69,519,0): 109, 88, 71, (69,520,0): 109, 86, 72, (69,521,0): 109, 86, 72, (69,522,0): 110, 86, 74, (69,523,0): 110, 86, 74, (69,524,0): 113, 86, 75, (69,525,0): 111, 87, 75, (69,526,0): 114, 87, 78, (69,527,0): 112, 88, 78, (69,528,0): 109, 87, 76, (69,529,0): 108, 86, 75, (69,530,0): 108, 86, 73, (69,531,0): 107, 85, 72, (69,532,0): 108, 84, 72, (69,533,0): 109, 85, 73, (69,534,0): 112, 86, 73, (69,535,0): 113, 87, 74, (69,536,0): 112, 86, 71, (69,537,0): 113, 87, 72, (69,538,0): 116, 88, 74, (69,539,0): 117, 89, 75, (69,540,0): 118, 89, 73, (69,541,0): 118, 89, 73, (69,542,0): 117, 88, 72, (69,543,0): 117, 88, 72, (69,544,0): 112, 85, 66, (69,545,0): 112, 85, 66, (69,546,0): 112, 85, 68, (69,547,0): 112, 85, 68, (69,548,0): 112, 85, 68, (69,549,0): 112, 85, 68, (69,550,0): 111, 85, 70, (69,551,0): 111, 85, 70, (69,552,0): 106, 80, 67, (69,553,0): 103, 80, 66, (69,554,0): 102, 79, 65, (69,555,0): 99, 77, 63, (69,556,0): 96, 74, 61, (69,557,0): 94, 72, 59, (69,558,0): 93, 71, 58, (69,559,0): 92, 70, 59, (69,560,0): 93, 70, 64, (69,561,0): 91, 67, 63, (69,562,0): 90, 66, 64, (69,563,0): 88, 64, 60, (69,564,0): 87, 63, 59, (69,565,0): 85, 65, 58, (69,566,0): 85, 65, 58, (69,567,0): 86, 66, 59, (69,568,0): 86, 67, 60, (69,569,0): 87, 68, 61, (69,570,0): 87, 69, 59, (69,571,0): 87, 70, 60, (69,572,0): 87, 71, 58, (69,573,0): 88, 72, 59, (69,574,0): 86, 72, 59, (69,575,0): 88, 71, 61, (69,576,0): 89, 70, 63, (69,577,0): 88, 69, 62, (69,578,0): 87, 68, 61, (69,579,0): 86, 67, 60, (69,580,0): 85, 66, 59, (69,581,0): 84, 65, 58, (69,582,0): 83, 64, 57, (69,583,0): 83, 64, 57, (69,584,0): 80, 61, 54, (69,585,0): 80, 61, 54, (69,586,0): 80, 61, 54, (69,587,0): 79, 60, 53, (69,588,0): 78, 59, 52, (69,589,0): 76, 57, 50, (69,590,0): 75, 56, 49, (69,591,0): 74, 55, 49, (69,592,0): 73, 54, 50, (69,593,0): 73, 53, 52, (69,594,0): 72, 52, 51, (69,595,0): 71, 51, 50, (69,596,0): 70, 50, 49, (69,597,0): 69, 49, 48, (69,598,0): 68, 48, 47, (69,599,0): 67, 47, 46, (70,0,0): 35, 31, 46, (70,1,0): 35, 31, 46, (70,2,0): 37, 31, 45, (70,3,0): 37, 31, 45, (70,4,0): 37, 31, 45, (70,5,0): 37, 31, 45, (70,6,0): 38, 30, 43, (70,7,0): 38, 30, 43, (70,8,0): 38, 28, 39, (70,9,0): 38, 28, 39, (70,10,0): 38, 28, 39, (70,11,0): 38, 28, 39, (70,12,0): 39, 27, 37, (70,13,0): 39, 27, 37, (70,14,0): 39, 27, 37, (70,15,0): 39, 27, 37, (70,16,0): 42, 30, 40, (70,17,0): 42, 30, 40, (70,18,0): 42, 30, 40, (70,19,0): 42, 30, 40, (70,20,0): 42, 30, 40, (70,21,0): 42, 30, 40, (70,22,0): 43, 30, 40, (70,23,0): 43, 30, 40, (70,24,0): 44, 28, 39, (70,25,0): 44, 28, 39, (70,26,0): 46, 28, 40, (70,27,0): 46, 28, 40, (70,28,0): 47, 29, 41, (70,29,0): 47, 29, 41, (70,30,0): 47, 29, 41, (70,31,0): 48, 30, 42, (70,32,0): 49, 31, 43, (70,33,0): 49, 31, 43, (70,34,0): 49, 31, 43, (70,35,0): 49, 31, 43, (70,36,0): 49, 31, 43, (70,37,0): 49, 31, 43, (70,38,0): 49, 31, 43, (70,39,0): 49, 31, 43, (70,40,0): 51, 33, 45, (70,41,0): 51, 33, 45, (70,42,0): 51, 33, 45, (70,43,0): 51, 33, 45, (70,44,0): 51, 33, 45, (70,45,0): 51, 33, 45, (70,46,0): 51, 33, 45, (70,47,0): 51, 33, 45, (70,48,0): 51, 33, 45, (70,49,0): 51, 33, 45, (70,50,0): 51, 33, 45, (70,51,0): 51, 33, 45, (70,52,0): 51, 33, 45, (70,53,0): 51, 33, 45, (70,54,0): 51, 33, 45, (70,55,0): 51, 33, 45, (70,56,0): 50, 32, 44, (70,57,0): 50, 32, 44, (70,58,0): 50, 32, 44, (70,59,0): 49, 31, 43, (70,60,0): 49, 31, 43, (70,61,0): 48, 30, 42, (70,62,0): 48, 30, 42, (70,63,0): 48, 30, 42, (70,64,0): 48, 31, 47, (70,65,0): 47, 30, 46, (70,66,0): 47, 30, 46, (70,67,0): 46, 29, 45, (70,68,0): 44, 27, 43, (70,69,0): 41, 27, 42, (70,70,0): 41, 27, 44, (70,71,0): 40, 26, 43, (70,72,0): 38, 25, 43, (70,73,0): 37, 24, 42, (70,74,0): 37, 24, 44, (70,75,0): 36, 24, 44, (70,76,0): 35, 23, 43, (70,77,0): 35, 23, 43, (70,78,0): 32, 23, 42, (70,79,0): 32, 23, 42, (70,80,0): 34, 25, 44, (70,81,0): 34, 25, 44, (70,82,0): 34, 25, 44, (70,83,0): 34, 25, 44, (70,84,0): 34, 25, 44, (70,85,0): 34, 25, 44, (70,86,0): 34, 25, 44, (70,87,0): 34, 25, 44, (70,88,0): 33, 24, 43, (70,89,0): 33, 24, 43, (70,90,0): 33, 24, 43, (70,91,0): 32, 23, 42, (70,92,0): 32, 23, 42, (70,93,0): 31, 22, 41, (70,94,0): 31, 22, 41, (70,95,0): 30, 21, 40, (70,96,0): 34, 22, 46, (70,97,0): 34, 22, 46, (70,98,0): 32, 22, 46, (70,99,0): 32, 22, 46, (70,100,0): 32, 22, 46, (70,101,0): 32, 22, 46, (70,102,0): 31, 23, 46, (70,103,0): 31, 23, 46, (70,104,0): 28, 23, 45, (70,105,0): 27, 22, 44, (70,106,0): 25, 20, 42, (70,107,0): 24, 19, 41, (70,108,0): 21, 18, 39, (70,109,0): 21, 18, 39, (70,110,0): 22, 19, 40, (70,111,0): 22, 19, 40, (70,112,0): 22, 19, 40, (70,113,0): 22, 19, 40, (70,114,0): 22, 19, 40, (70,115,0): 22, 19, 40, (70,116,0): 22, 19, 40, (70,117,0): 22, 19, 40, (70,118,0): 22, 19, 40, (70,119,0): 22, 19, 40, (70,120,0): 23, 20, 41, (70,121,0): 23, 20, 41, (70,122,0): 23, 20, 41, (70,123,0): 22, 19, 40, (70,124,0): 22, 19, 40, (70,125,0): 21, 18, 39, (70,126,0): 21, 18, 39, (70,127,0): 20, 17, 38, (70,128,0): 24, 16, 39, (70,129,0): 24, 16, 39, (70,130,0): 24, 16, 39, (70,131,0): 24, 16, 39, (70,132,0): 24, 16, 39, (70,133,0): 24, 16, 39, (70,134,0): 24, 16, 39, (70,135,0): 24, 16, 39, (70,136,0): 23, 15, 38, (70,137,0): 24, 16, 39, (70,138,0): 25, 17, 40, (70,139,0): 25, 17, 40, (70,140,0): 24, 16, 39, (70,141,0): 23, 15, 38, (70,142,0): 22, 14, 37, (70,143,0): 21, 13, 34, (70,144,0): 20, 15, 35, (70,145,0): 20, 16, 33, (70,146,0): 20, 16, 33, (70,147,0): 21, 17, 34, (70,148,0): 22, 18, 35, (70,149,0): 23, 19, 36, (70,150,0): 23, 19, 36, (70,151,0): 23, 19, 36, (70,152,0): 24, 20, 37, (70,153,0): 24, 20, 37, (70,154,0): 24, 20, 37, (70,155,0): 24, 20, 37, (70,156,0): 24, 20, 37, (70,157,0): 24, 20, 37, (70,158,0): 24, 20, 37, (70,159,0): 24, 20, 37, (70,160,0): 31, 24, 42, (70,161,0): 31, 24, 42, (70,162,0): 31, 24, 42, (70,163,0): 31, 24, 42, (70,164,0): 31, 24, 42, (70,165,0): 31, 24, 42, (70,166,0): 31, 24, 42, (70,167,0): 31, 24, 42, (70,168,0): 32, 25, 43, (70,169,0): 32, 25, 43, (70,170,0): 32, 25, 43, (70,171,0): 32, 25, 43, (70,172,0): 32, 25, 43, (70,173,0): 32, 25, 43, (70,174,0): 32, 25, 43, (70,175,0): 32, 25, 43, (70,176,0): 32, 24, 47, (70,177,0): 32, 24, 47, (70,178,0): 32, 24, 47, (70,179,0): 32, 24, 47, (70,180,0): 32, 24, 47, (70,181,0): 32, 24, 47, (70,182,0): 32, 24, 47, (70,183,0): 32, 24, 47, (70,184,0): 34, 26, 49, (70,185,0): 33, 25, 48, (70,186,0): 33, 25, 48, (70,187,0): 33, 25, 48, (70,188,0): 33, 25, 48, (70,189,0): 34, 26, 49, (70,190,0): 36, 28, 51, (70,191,0): 37, 29, 50, (70,192,0): 38, 29, 50, (70,193,0): 38, 29, 48, (70,194,0): 38, 29, 48, (70,195,0): 38, 29, 48, (70,196,0): 38, 29, 48, (70,197,0): 38, 29, 48, (70,198,0): 38, 29, 48, (70,199,0): 38, 29, 48, (70,200,0): 36, 27, 46, (70,201,0): 37, 28, 47, (70,202,0): 37, 28, 47, (70,203,0): 38, 29, 48, (70,204,0): 38, 29, 48, (70,205,0): 39, 30, 49, (70,206,0): 39, 30, 49, (70,207,0): 41, 29, 49, (70,208,0): 42, 29, 47, (70,209,0): 44, 29, 48, (70,210,0): 46, 29, 47, (70,211,0): 47, 30, 48, (70,212,0): 47, 30, 48, (70,213,0): 48, 31, 49, (70,214,0): 49, 31, 47, (70,215,0): 49, 31, 47, (70,216,0): 54, 33, 48, (70,217,0): 54, 33, 48, (70,218,0): 55, 34, 49, (70,219,0): 55, 34, 49, (70,220,0): 57, 35, 48, (70,221,0): 57, 35, 48, (70,222,0): 58, 36, 49, (70,223,0): 59, 35, 49, (70,224,0): 64, 33, 48, (70,225,0): 65, 33, 48, (70,226,0): 66, 34, 49, (70,227,0): 66, 34, 49, (70,228,0): 67, 35, 50, (70,229,0): 68, 34, 48, (70,230,0): 69, 35, 49, (70,231,0): 69, 35, 49, (70,232,0): 74, 38, 50, (70,233,0): 73, 37, 49, (70,234,0): 74, 36, 49, (70,235,0): 73, 35, 46, (70,236,0): 73, 35, 46, (70,237,0): 72, 34, 45, (70,238,0): 72, 35, 43, (70,239,0): 72, 35, 43, (70,240,0): 71, 38, 47, (70,241,0): 71, 38, 47, (70,242,0): 70, 37, 46, (70,243,0): 69, 36, 45, (70,244,0): 70, 37, 44, (70,245,0): 71, 38, 45, (70,246,0): 75, 40, 47, (70,247,0): 76, 41, 48, (70,248,0): 77, 40, 47, (70,249,0): 77, 40, 47, (70,250,0): 79, 40, 45, (70,251,0): 79, 40, 45, (70,252,0): 79, 40, 45, (70,253,0): 79, 40, 45, (70,254,0): 79, 40, 43, (70,255,0): 79, 40, 43, (70,256,0): 80, 41, 46, (70,257,0): 79, 40, 45, (70,258,0): 79, 40, 45, (70,259,0): 78, 39, 44, (70,260,0): 80, 39, 45, (70,261,0): 81, 40, 46, (70,262,0): 83, 42, 48, (70,263,0): 84, 43, 49, (70,264,0): 85, 42, 49, (70,265,0): 85, 42, 49, (70,266,0): 88, 43, 50, (70,267,0): 88, 43, 50, (70,268,0): 89, 44, 51, (70,269,0): 89, 44, 51, (70,270,0): 91, 44, 52, (70,271,0): 91, 44, 52, (70,272,0): 91, 46, 51, (70,273,0): 91, 46, 49, (70,274,0): 91, 46, 49, (70,275,0): 92, 47, 50, (70,276,0): 92, 47, 50, (70,277,0): 93, 48, 51, (70,278,0): 93, 48, 51, (70,279,0): 93, 48, 51, (70,280,0): 95, 50, 53, (70,281,0): 95, 50, 53, (70,282,0): 95, 50, 53, (70,283,0): 95, 50, 53, (70,284,0): 97, 52, 55, (70,285,0): 99, 54, 57, (70,286,0): 102, 57, 60, (70,287,0): 103, 58, 61, (70,288,0): 103, 57, 59, (70,289,0): 106, 61, 58, (70,290,0): 112, 65, 59, (70,291,0): 113, 66, 56, (70,292,0): 116, 69, 53, (70,293,0): 120, 72, 52, (70,294,0): 128, 77, 56, (70,295,0): 133, 81, 59, (70,296,0): 143, 87, 64, (70,297,0): 149, 89, 65, (70,298,0): 156, 92, 65, (70,299,0): 161, 95, 63, (70,300,0): 168, 100, 61, (70,301,0): 177, 106, 62, (70,302,0): 187, 115, 65, (70,303,0): 197, 120, 64, (70,304,0): 219, 134, 69, (70,305,0): 229, 142, 71, (70,306,0): 230, 146, 73, (70,307,0): 221, 142, 67, (70,308,0): 211, 137, 62, (70,309,0): 206, 137, 62, (70,310,0): 199, 135, 63, (70,311,0): 191, 133, 60, (70,312,0): 189, 135, 63, (70,313,0): 183, 133, 62, (70,314,0): 179, 132, 60, (70,315,0): 176, 134, 60, (70,316,0): 176, 136, 64, (70,317,0): 177, 137, 67, (70,318,0): 175, 135, 66, (70,319,0): 172, 133, 68, (70,320,0): 166, 132, 71, (70,321,0): 163, 131, 74, (70,322,0): 160, 128, 71, (70,323,0): 158, 126, 69, (70,324,0): 156, 124, 67, (70,325,0): 156, 124, 67, (70,326,0): 155, 124, 67, (70,327,0): 155, 124, 67, (70,328,0): 157, 128, 72, (70,329,0): 157, 128, 72, (70,330,0): 156, 130, 73, (70,331,0): 156, 130, 73, (70,332,0): 157, 131, 74, (70,333,0): 157, 131, 74, (70,334,0): 157, 130, 75, (70,335,0): 158, 131, 78, (70,336,0): 156, 130, 81, (70,337,0): 155, 128, 81, (70,338,0): 153, 126, 79, (70,339,0): 151, 124, 77, (70,340,0): 148, 121, 76, (70,341,0): 145, 118, 73, (70,342,0): 143, 115, 75, (70,343,0): 142, 114, 74, (70,344,0): 143, 115, 76, (70,345,0): 143, 115, 76, (70,346,0): 142, 113, 79, (70,347,0): 141, 112, 78, (70,348,0): 140, 111, 79, (70,349,0): 139, 110, 78, (70,350,0): 138, 109, 77, (70,351,0): 138, 109, 77, (70,352,0): 138, 111, 82, (70,353,0): 137, 110, 81, (70,354,0): 136, 109, 80, (70,355,0): 135, 108, 79, (70,356,0): 137, 107, 79, (70,357,0): 137, 107, 79, (70,358,0): 138, 108, 80, (70,359,0): 139, 109, 81, (70,360,0): 142, 111, 83, (70,361,0): 144, 113, 85, (70,362,0): 148, 114, 87, (70,363,0): 151, 117, 90, (70,364,0): 152, 118, 91, (70,365,0): 153, 119, 92, (70,366,0): 155, 119, 93, (70,367,0): 154, 118, 92, (70,368,0): 155, 117, 94, (70,369,0): 156, 118, 95, (70,370,0): 158, 120, 97, (70,371,0): 159, 121, 98, (70,372,0): 160, 119, 97, (70,373,0): 158, 117, 95, (70,374,0): 155, 114, 92, (70,375,0): 153, 112, 90, (70,376,0): 158, 116, 94, (70,377,0): 158, 116, 94, (70,378,0): 160, 115, 94, (70,379,0): 160, 115, 94, (70,380,0): 160, 115, 94, (70,381,0): 161, 116, 95, (70,382,0): 162, 115, 95, (70,383,0): 163, 115, 95, (70,384,0): 167, 116, 99, (70,385,0): 168, 115, 97, (70,386,0): 169, 117, 95, (70,387,0): 173, 119, 93, (70,388,0): 176, 120, 93, (70,389,0): 179, 124, 93, (70,390,0): 183, 126, 96, (70,391,0): 187, 128, 98, (70,392,0): 188, 127, 99, (70,393,0): 191, 127, 100, (70,394,0): 194, 128, 104, (70,395,0): 196, 130, 104, (70,396,0): 198, 131, 104, (70,397,0): 200, 131, 100, (70,398,0): 200, 131, 98, (70,399,0): 200, 131, 92, (70,400,0): 203, 132, 86, (70,401,0): 204, 134, 82, (70,402,0): 208, 138, 86, (70,403,0): 214, 144, 92, (70,404,0): 221, 150, 98, (70,405,0): 223, 152, 100, (70,406,0): 220, 150, 98, (70,407,0): 216, 146, 94, (70,408,0): 204, 134, 83, (70,409,0): 201, 134, 82, (70,410,0): 200, 132, 83, (70,411,0): 197, 131, 83, (70,412,0): 195, 128, 83, (70,413,0): 191, 127, 81, (70,414,0): 189, 125, 81, (70,415,0): 187, 125, 78, (70,416,0): 180, 118, 69, (70,417,0): 182, 122, 72, (70,418,0): 185, 127, 79, (70,419,0): 185, 132, 82, (70,420,0): 184, 132, 84, (70,421,0): 180, 132, 84, (70,422,0): 179, 133, 84, (70,423,0): 176, 134, 84, (70,424,0): 175, 135, 84, (70,425,0): 174, 137, 84, (70,426,0): 177, 140, 87, (70,427,0): 181, 144, 89, (70,428,0): 185, 149, 91, (70,429,0): 188, 152, 92, (70,430,0): 191, 155, 93, (70,431,0): 193, 157, 95, (70,432,0): 191, 155, 95, (70,433,0): 190, 154, 94, (70,434,0): 188, 152, 92, (70,435,0): 186, 150, 92, (70,436,0): 184, 148, 90, (70,437,0): 182, 145, 90, (70,438,0): 181, 144, 89, (70,439,0): 179, 144, 90, (70,440,0): 179, 143, 91, (70,441,0): 176, 140, 90, (70,442,0): 173, 137, 87, (70,443,0): 169, 133, 85, (70,444,0): 168, 132, 84, (70,445,0): 166, 132, 86, (70,446,0): 169, 132, 87, (70,447,0): 169, 135, 89, (70,448,0): 170, 133, 88, (70,449,0): 168, 134, 88, (70,450,0): 169, 132, 87, (70,451,0): 165, 131, 85, (70,452,0): 162, 128, 83, (70,453,0): 158, 123, 81, (70,454,0): 155, 120, 80, (70,455,0): 153, 118, 80, (70,456,0): 144, 110, 73, (70,457,0): 147, 113, 78, (70,458,0): 148, 113, 81, (70,459,0): 146, 111, 79, (70,460,0): 140, 105, 75, (70,461,0): 135, 100, 70, (70,462,0): 132, 98, 70, (70,463,0): 131, 97, 70, (70,464,0): 125, 90, 71, (70,465,0): 121, 88, 71, (70,466,0): 117, 86, 68, (70,467,0): 113, 84, 66, (70,468,0): 112, 85, 66, (70,469,0): 110, 88, 67, (70,470,0): 112, 91, 70, (70,471,0): 111, 93, 71, (70,472,0): 111, 95, 72, (70,473,0): 112, 96, 73, (70,474,0): 113, 95, 73, (70,475,0): 113, 95, 73, (70,476,0): 114, 93, 72, (70,477,0): 111, 90, 69, (70,478,0): 109, 88, 67, (70,479,0): 108, 87, 66, (70,480,0): 107, 89, 69, (70,481,0): 108, 90, 70, (70,482,0): 110, 89, 70, (70,483,0): 110, 89, 70, (70,484,0): 110, 87, 71, (70,485,0): 110, 84, 69, (70,486,0): 109, 81, 69, (70,487,0): 108, 80, 68, (70,488,0): 106, 78, 66, (70,489,0): 104, 78, 65, (70,490,0): 103, 76, 65, (70,491,0): 100, 76, 64, (70,492,0): 99, 77, 66, (70,493,0): 98, 78, 67, (70,494,0): 99, 79, 68, (70,495,0): 100, 80, 69, (70,496,0): 106, 84, 71, (70,497,0): 108, 85, 71, (70,498,0): 109, 86, 72, (70,499,0): 111, 88, 74, (70,500,0): 111, 89, 75, (70,501,0): 111, 89, 75, (70,502,0): 111, 89, 75, (70,503,0): 110, 88, 74, (70,504,0): 110, 91, 76, (70,505,0): 110, 91, 76, (70,506,0): 109, 92, 76, (70,507,0): 109, 92, 76, (70,508,0): 110, 93, 77, (70,509,0): 110, 93, 77, (70,510,0): 109, 93, 77, (70,511,0): 109, 93, 77, (70,512,0): 112, 93, 76, (70,513,0): 112, 94, 74, (70,514,0): 111, 93, 73, (70,515,0): 109, 91, 71, (70,516,0): 108, 89, 72, (70,517,0): 107, 88, 71, (70,518,0): 108, 87, 70, (70,519,0): 108, 87, 70, (70,520,0): 107, 85, 71, (70,521,0): 107, 85, 71, (70,522,0): 108, 86, 73, (70,523,0): 108, 86, 73, (70,524,0): 110, 86, 74, (70,525,0): 109, 87, 74, (70,526,0): 111, 87, 77, (70,527,0): 110, 88, 77, (70,528,0): 107, 85, 74, (70,529,0): 105, 85, 74, (70,530,0): 107, 85, 72, (70,531,0): 107, 85, 72, (70,532,0): 108, 86, 73, (70,533,0): 110, 88, 75, (70,534,0): 113, 90, 76, (70,535,0): 114, 91, 77, (70,536,0): 112, 86, 71, (70,537,0): 113, 87, 72, (70,538,0): 115, 89, 74, (70,539,0): 116, 90, 75, (70,540,0): 118, 91, 74, (70,541,0): 118, 91, 74, (70,542,0): 117, 90, 73, (70,543,0): 117, 90, 71, (70,544,0): 116, 88, 67, (70,545,0): 117, 89, 68, (70,546,0): 117, 89, 68, (70,547,0): 117, 89, 68, (70,548,0): 116, 89, 70, (70,549,0): 117, 90, 71, (70,550,0): 117, 90, 73, (70,551,0): 116, 90, 73, (70,552,0): 111, 85, 68, (70,553,0): 108, 85, 67, (70,554,0): 107, 84, 68, (70,555,0): 105, 82, 66, (70,556,0): 103, 80, 66, (70,557,0): 101, 78, 64, (70,558,0): 98, 76, 62, (70,559,0): 97, 75, 62, (70,560,0): 96, 71, 64, (70,561,0): 95, 70, 65, (70,562,0): 93, 68, 64, (70,563,0): 89, 66, 60, (70,564,0): 88, 65, 59, (70,565,0): 87, 64, 58, (70,566,0): 85, 65, 58, (70,567,0): 86, 66, 57, (70,568,0): 86, 66, 57, (70,569,0): 85, 67, 57, (70,570,0): 85, 67, 57, (70,571,0): 86, 68, 58, (70,572,0): 85, 68, 58, (70,573,0): 86, 69, 59, (70,574,0): 87, 70, 60, (70,575,0): 87, 70, 60, (70,576,0): 89, 70, 63, (70,577,0): 89, 70, 63, (70,578,0): 88, 69, 62, (70,579,0): 87, 68, 61, (70,580,0): 86, 67, 60, (70,581,0): 85, 66, 59, (70,582,0): 84, 65, 58, (70,583,0): 83, 64, 57, (70,584,0): 82, 63, 56, (70,585,0): 81, 62, 55, (70,586,0): 79, 60, 53, (70,587,0): 78, 59, 52, (70,588,0): 77, 58, 51, (70,589,0): 77, 58, 51, (70,590,0): 77, 58, 51, (70,591,0): 77, 58, 52, (70,592,0): 75, 54, 51, (70,593,0): 75, 54, 53, (70,594,0): 74, 53, 52, (70,595,0): 73, 52, 51, (70,596,0): 72, 51, 50, (70,597,0): 71, 50, 49, (70,598,0): 70, 49, 48, (70,599,0): 70, 49, 48, (71,0,0): 35, 31, 46, (71,1,0): 35, 31, 46, (71,2,0): 37, 31, 45, (71,3,0): 37, 31, 45, (71,4,0): 37, 31, 45, (71,5,0): 37, 31, 45, (71,6,0): 38, 30, 43, (71,7,0): 38, 30, 43, (71,8,0): 38, 28, 39, (71,9,0): 38, 28, 39, (71,10,0): 38, 28, 39, (71,11,0): 38, 28, 39, (71,12,0): 39, 27, 37, (71,13,0): 39, 27, 37, (71,14,0): 39, 27, 37, (71,15,0): 39, 27, 37, (71,16,0): 42, 30, 40, (71,17,0): 42, 30, 40, (71,18,0): 42, 30, 40, (71,19,0): 42, 30, 40, (71,20,0): 42, 30, 40, (71,21,0): 42, 30, 40, (71,22,0): 43, 30, 40, (71,23,0): 43, 30, 40, (71,24,0): 44, 28, 39, (71,25,0): 44, 28, 39, (71,26,0): 45, 27, 39, (71,27,0): 46, 28, 40, (71,28,0): 46, 28, 40, (71,29,0): 47, 29, 41, (71,30,0): 47, 29, 41, (71,31,0): 48, 30, 42, (71,32,0): 49, 31, 43, (71,33,0): 49, 31, 43, (71,34,0): 49, 31, 43, (71,35,0): 49, 31, 43, (71,36,0): 49, 31, 43, (71,37,0): 49, 31, 43, (71,38,0): 49, 31, 43, (71,39,0): 49, 31, 43, (71,40,0): 51, 33, 45, (71,41,0): 51, 33, 45, (71,42,0): 51, 33, 45, (71,43,0): 51, 33, 45, (71,44,0): 51, 33, 45, (71,45,0): 51, 33, 45, (71,46,0): 51, 33, 45, (71,47,0): 51, 33, 45, (71,48,0): 51, 33, 45, (71,49,0): 51, 33, 45, (71,50,0): 51, 33, 45, (71,51,0): 51, 33, 45, (71,52,0): 51, 33, 45, (71,53,0): 51, 33, 45, (71,54,0): 51, 33, 45, (71,55,0): 51, 33, 45, (71,56,0): 50, 32, 44, (71,57,0): 50, 32, 44, (71,58,0): 50, 32, 44, (71,59,0): 49, 31, 43, (71,60,0): 49, 31, 43, (71,61,0): 48, 30, 42, (71,62,0): 48, 30, 42, (71,63,0): 48, 30, 42, (71,64,0): 48, 31, 47, (71,65,0): 47, 30, 46, (71,66,0): 47, 30, 46, (71,67,0): 46, 29, 45, (71,68,0): 42, 28, 43, (71,69,0): 41, 27, 42, (71,70,0): 41, 27, 44, (71,71,0): 39, 26, 43, (71,72,0): 38, 25, 43, (71,73,0): 36, 25, 42, (71,74,0): 36, 24, 44, (71,75,0): 35, 23, 43, (71,76,0): 35, 23, 43, (71,77,0): 34, 22, 42, (71,78,0): 32, 23, 42, (71,79,0): 32, 23, 42, (71,80,0): 34, 25, 44, (71,81,0): 34, 25, 44, (71,82,0): 34, 25, 44, (71,83,0): 34, 25, 44, (71,84,0): 34, 25, 44, (71,85,0): 34, 25, 44, (71,86,0): 34, 25, 44, (71,87,0): 34, 25, 44, (71,88,0): 33, 24, 43, (71,89,0): 33, 24, 43, (71,90,0): 32, 23, 42, (71,91,0): 32, 23, 42, (71,92,0): 31, 22, 41, (71,93,0): 31, 22, 41, (71,94,0): 30, 21, 40, (71,95,0): 30, 21, 40, (71,96,0): 34, 22, 46, (71,97,0): 34, 22, 46, (71,98,0): 32, 22, 46, (71,99,0): 32, 22, 46, (71,100,0): 32, 22, 46, (71,101,0): 32, 22, 46, (71,102,0): 31, 23, 46, (71,103,0): 31, 23, 46, (71,104,0): 28, 23, 45, (71,105,0): 27, 22, 44, (71,106,0): 25, 20, 42, (71,107,0): 23, 18, 40, (71,108,0): 21, 18, 39, (71,109,0): 21, 18, 39, (71,110,0): 21, 18, 39, (71,111,0): 22, 19, 40, (71,112,0): 22, 19, 40, (71,113,0): 22, 19, 40, (71,114,0): 22, 19, 40, (71,115,0): 22, 19, 40, (71,116,0): 22, 19, 40, (71,117,0): 22, 19, 40, (71,118,0): 22, 19, 40, (71,119,0): 22, 19, 40, (71,120,0): 23, 20, 41, (71,121,0): 23, 20, 41, (71,122,0): 22, 19, 40, (71,123,0): 22, 19, 40, (71,124,0): 21, 18, 39, (71,125,0): 21, 18, 39, (71,126,0): 20, 17, 38, (71,127,0): 20, 17, 38, (71,128,0): 23, 15, 38, (71,129,0): 23, 15, 38, (71,130,0): 23, 15, 38, (71,131,0): 23, 15, 38, (71,132,0): 23, 15, 38, (71,133,0): 23, 15, 38, (71,134,0): 23, 15, 38, (71,135,0): 23, 15, 38, (71,136,0): 23, 15, 38, (71,137,0): 24, 16, 39, (71,138,0): 24, 16, 39, (71,139,0): 25, 17, 40, (71,140,0): 24, 16, 39, (71,141,0): 23, 15, 38, (71,142,0): 21, 13, 36, (71,143,0): 20, 12, 33, (71,144,0): 20, 15, 35, (71,145,0): 20, 16, 33, (71,146,0): 21, 17, 34, (71,147,0): 22, 18, 35, (71,148,0): 23, 19, 36, (71,149,0): 24, 20, 37, (71,150,0): 24, 20, 37, (71,151,0): 24, 20, 37, (71,152,0): 25, 21, 38, (71,153,0): 25, 21, 38, (71,154,0): 24, 20, 37, (71,155,0): 24, 20, 37, (71,156,0): 24, 20, 37, (71,157,0): 24, 20, 37, (71,158,0): 23, 19, 36, (71,159,0): 23, 19, 36, (71,160,0): 31, 24, 42, (71,161,0): 31, 24, 42, (71,162,0): 31, 24, 42, (71,163,0): 31, 24, 42, (71,164,0): 31, 24, 42, (71,165,0): 31, 24, 42, (71,166,0): 31, 24, 42, (71,167,0): 31, 24, 42, (71,168,0): 32, 25, 43, (71,169,0): 32, 25, 43, (71,170,0): 32, 25, 43, (71,171,0): 32, 25, 43, (71,172,0): 32, 25, 43, (71,173,0): 32, 25, 43, (71,174,0): 32, 25, 43, (71,175,0): 32, 25, 43, (71,176,0): 32, 24, 47, (71,177,0): 32, 24, 47, (71,178,0): 32, 24, 47, (71,179,0): 32, 24, 47, (71,180,0): 32, 24, 47, (71,181,0): 32, 24, 47, (71,182,0): 32, 24, 47, (71,183,0): 32, 24, 47, (71,184,0): 34, 26, 49, (71,185,0): 33, 25, 48, (71,186,0): 32, 24, 47, (71,187,0): 32, 24, 47, (71,188,0): 33, 25, 48, (71,189,0): 34, 26, 49, (71,190,0): 35, 27, 50, (71,191,0): 36, 28, 49, (71,192,0): 38, 29, 50, (71,193,0): 38, 29, 48, (71,194,0): 38, 29, 48, (71,195,0): 38, 29, 48, (71,196,0): 38, 29, 48, (71,197,0): 38, 29, 48, (71,198,0): 38, 29, 48, (71,199,0): 38, 29, 48, (71,200,0): 36, 27, 46, (71,201,0): 36, 27, 46, (71,202,0): 37, 28, 47, (71,203,0): 37, 28, 47, (71,204,0): 38, 29, 48, (71,205,0): 38, 29, 48, (71,206,0): 39, 30, 49, (71,207,0): 41, 29, 49, (71,208,0): 42, 29, 47, (71,209,0): 43, 28, 47, (71,210,0): 46, 29, 47, (71,211,0): 46, 29, 47, (71,212,0): 47, 30, 48, (71,213,0): 47, 30, 48, (71,214,0): 49, 31, 47, (71,215,0): 49, 31, 47, (71,216,0): 54, 33, 48, (71,217,0): 54, 33, 48, (71,218,0): 55, 34, 49, (71,219,0): 55, 34, 49, (71,220,0): 57, 35, 48, (71,221,0): 57, 35, 48, (71,222,0): 58, 36, 49, (71,223,0): 59, 35, 49, (71,224,0): 64, 33, 48, (71,225,0): 65, 33, 48, (71,226,0): 66, 34, 49, (71,227,0): 66, 34, 49, (71,228,0): 68, 34, 48, (71,229,0): 68, 34, 48, (71,230,0): 69, 35, 49, (71,231,0): 69, 36, 47, (71,232,0): 74, 38, 50, (71,233,0): 74, 38, 50, (71,234,0): 74, 36, 47, (71,235,0): 74, 36, 47, (71,236,0): 73, 35, 46, (71,237,0): 73, 35, 46, (71,238,0): 74, 34, 43, (71,239,0): 72, 35, 43, (71,240,0): 74, 38, 48, (71,241,0): 71, 38, 47, (71,242,0): 70, 37, 46, (71,243,0): 69, 36, 43, (71,244,0): 70, 37, 44, (71,245,0): 72, 39, 46, (71,246,0): 76, 41, 48, (71,247,0): 77, 42, 48, (71,248,0): 77, 40, 47, (71,249,0): 77, 41, 45, (71,250,0): 79, 40, 45, (71,251,0): 79, 40, 45, (71,252,0): 79, 40, 45, (71,253,0): 79, 40, 43, (71,254,0): 79, 40, 43, (71,255,0): 79, 40, 43, (71,256,0): 80, 41, 46, (71,257,0): 79, 40, 45, (71,258,0): 79, 40, 45, (71,259,0): 78, 39, 44, (71,260,0): 80, 39, 45, (71,261,0): 81, 40, 46, (71,262,0): 83, 42, 48, (71,263,0): 84, 43, 49, (71,264,0): 85, 42, 49, (71,265,0): 85, 42, 49, (71,266,0): 88, 43, 50, (71,267,0): 88, 43, 50, (71,268,0): 89, 44, 51, (71,269,0): 89, 44, 51, (71,270,0): 91, 44, 52, (71,271,0): 91, 44, 50, (71,272,0): 91, 46, 49, (71,273,0): 92, 47, 50, (71,274,0): 92, 47, 50, (71,275,0): 93, 48, 51, (71,276,0): 93, 48, 51, (71,277,0): 94, 49, 52, (71,278,0): 94, 49, 52, (71,279,0): 94, 49, 52, (71,280,0): 95, 50, 53, (71,281,0): 95, 50, 53, (71,282,0): 95, 50, 53, (71,283,0): 95, 50, 53, (71,284,0): 97, 52, 55, (71,285,0): 99, 54, 57, (71,286,0): 102, 57, 60, (71,287,0): 103, 59, 60, (71,288,0): 103, 57, 57, (71,289,0): 106, 61, 58, (71,290,0): 112, 65, 59, (71,291,0): 113, 66, 56, (71,292,0): 116, 69, 53, (71,293,0): 119, 72, 52, (71,294,0): 126, 78, 56, (71,295,0): 133, 81, 59, (71,296,0): 142, 86, 63, (71,297,0): 148, 88, 62, (71,298,0): 156, 92, 64, (71,299,0): 162, 96, 62, (71,300,0): 170, 101, 60, (71,301,0): 180, 107, 62, (71,302,0): 190, 117, 66, (71,303,0): 202, 123, 64, (71,304,0): 223, 138, 73, (71,305,0): 230, 143, 72, (71,306,0): 227, 145, 72, (71,307,0): 217, 139, 65, (71,308,0): 209, 135, 62, (71,309,0): 205, 137, 64, (71,310,0): 198, 135, 64, (71,311,0): 189, 132, 61, (71,312,0): 187, 134, 64, (71,313,0): 180, 133, 63, (71,314,0): 175, 132, 63, (71,315,0): 173, 133, 63, (71,316,0): 174, 135, 66, (71,317,0): 174, 137, 69, (71,318,0): 173, 136, 68, (71,319,0): 169, 134, 70, (71,320,0): 166, 131, 73, (71,321,0): 163, 131, 74, (71,322,0): 160, 127, 73, (71,323,0): 158, 126, 69, (71,324,0): 156, 123, 69, (71,325,0): 156, 124, 67, (71,326,0): 155, 124, 69, (71,327,0): 155, 124, 69, (71,328,0): 157, 128, 72, (71,329,0): 157, 128, 72, (71,330,0): 155, 129, 72, (71,331,0): 156, 130, 73, (71,332,0): 156, 130, 73, (71,333,0): 157, 131, 74, (71,334,0): 157, 131, 74, (71,335,0): 157, 130, 75, (71,336,0): 156, 130, 81, (71,337,0): 155, 128, 81, (71,338,0): 153, 126, 79, (71,339,0): 150, 123, 76, (71,340,0): 148, 121, 76, (71,341,0): 145, 118, 73, (71,342,0): 143, 115, 75, (71,343,0): 142, 114, 74, (71,344,0): 144, 116, 77, (71,345,0): 144, 116, 77, (71,346,0): 143, 114, 80, (71,347,0): 142, 113, 79, (71,348,0): 141, 112, 80, (71,349,0): 140, 111, 79, (71,350,0): 139, 110, 78, (71,351,0): 138, 109, 77, (71,352,0): 138, 111, 82, (71,353,0): 138, 111, 82, (71,354,0): 136, 109, 80, (71,355,0): 135, 108, 79, (71,356,0): 137, 107, 79, (71,357,0): 137, 107, 79, (71,358,0): 138, 108, 80, (71,359,0): 139, 109, 81, (71,360,0): 142, 111, 83, (71,361,0): 144, 113, 85, (71,362,0): 148, 114, 87, (71,363,0): 151, 117, 90, (71,364,0): 153, 119, 92, (71,365,0): 154, 120, 93, (71,366,0): 155, 119, 93, (71,367,0): 155, 119, 93, (71,368,0): 154, 116, 93, (71,369,0): 156, 118, 95, (71,370,0): 158, 120, 97, (71,371,0): 159, 121, 98, (71,372,0): 160, 119, 97, (71,373,0): 158, 117, 95, (71,374,0): 154, 113, 91, (71,375,0): 152, 111, 89, (71,376,0): 159, 117, 95, (71,377,0): 159, 117, 95, (71,378,0): 161, 116, 95, (71,379,0): 161, 116, 95, (71,380,0): 160, 115, 94, (71,381,0): 160, 115, 94, (71,382,0): 161, 114, 94, (71,383,0): 161, 114, 94, (71,384,0): 166, 117, 100, (71,385,0): 169, 118, 99, (71,386,0): 170, 118, 96, (71,387,0): 172, 121, 94, (71,388,0): 176, 122, 94, (71,389,0): 180, 125, 95, (71,390,0): 184, 127, 97, (71,391,0): 188, 128, 100, (71,392,0): 187, 125, 100, (71,393,0): 191, 127, 102, (71,394,0): 194, 128, 104, (71,395,0): 197, 130, 104, (71,396,0): 201, 132, 103, (71,397,0): 200, 131, 100, (71,398,0): 201, 131, 97, (71,399,0): 202, 130, 90, (71,400,0): 206, 134, 84, (71,401,0): 209, 136, 81, (71,402,0): 214, 141, 86, (71,403,0): 220, 149, 95, (71,404,0): 225, 154, 100, (71,405,0): 223, 152, 100, (71,406,0): 216, 146, 94, (71,407,0): 210, 140, 88, (71,408,0): 197, 130, 78, (71,409,0): 196, 130, 78, (71,410,0): 196, 130, 80, (71,411,0): 196, 130, 82, (71,412,0): 193, 129, 83, (71,413,0): 191, 127, 81, (71,414,0): 188, 126, 79, (71,415,0): 187, 125, 78, (71,416,0): 179, 117, 66, (71,417,0): 185, 125, 71, (71,418,0): 190, 133, 80, (71,419,0): 190, 137, 85, (71,420,0): 187, 135, 85, (71,421,0): 181, 134, 82, (71,422,0): 179, 133, 83, (71,423,0): 176, 135, 83, (71,424,0): 175, 135, 83, (71,425,0): 175, 138, 83, (71,426,0): 177, 140, 85, (71,427,0): 181, 145, 87, (71,428,0): 185, 149, 89, (71,429,0): 189, 153, 91, (71,430,0): 192, 156, 94, (71,431,0): 194, 158, 96, (71,432,0): 194, 158, 96, (71,433,0): 193, 157, 95, (71,434,0): 191, 155, 95, (71,435,0): 189, 153, 93, (71,436,0): 187, 151, 91, (71,437,0): 185, 149, 91, (71,438,0): 183, 147, 89, (71,439,0): 183, 146, 91, (71,440,0): 183, 148, 94, (71,441,0): 180, 145, 91, (71,442,0): 176, 140, 88, (71,443,0): 173, 137, 85, (71,444,0): 171, 135, 85, (71,445,0): 171, 135, 85, (71,446,0): 174, 136, 89, (71,447,0): 174, 138, 90, (71,448,0): 172, 134, 85, (71,449,0): 170, 134, 84, (71,450,0): 171, 133, 84, (71,451,0): 168, 132, 84, (71,452,0): 166, 129, 84, (71,453,0): 161, 127, 82, (71,454,0): 158, 123, 81, (71,455,0): 156, 121, 81, (71,456,0): 146, 111, 73, (71,457,0): 148, 114, 77, (71,458,0): 150, 116, 81, (71,459,0): 147, 112, 80, (71,460,0): 140, 105, 75, (71,461,0): 134, 99, 69, (71,462,0): 131, 97, 69, (71,463,0): 130, 96, 69, (71,464,0): 122, 90, 69, (71,465,0): 119, 88, 70, (71,466,0): 115, 86, 68, (71,467,0): 112, 85, 66, (71,468,0): 111, 86, 66, (71,469,0): 112, 90, 69, (71,470,0): 114, 93, 72, (71,471,0): 114, 96, 74, (71,472,0): 112, 96, 73, (71,473,0): 112, 96, 73, (71,474,0): 114, 96, 74, (71,475,0): 114, 96, 74, (71,476,0): 114, 93, 72, (71,477,0): 112, 91, 70, (71,478,0): 110, 88, 67, (71,479,0): 109, 87, 66, (71,480,0): 109, 88, 69, (71,481,0): 107, 89, 69, (71,482,0): 110, 89, 70, (71,483,0): 109, 88, 69, (71,484,0): 111, 85, 70, (71,485,0): 109, 83, 68, (71,486,0): 109, 81, 69, (71,487,0): 107, 79, 67, (71,488,0): 106, 78, 66, (71,489,0): 106, 78, 66, (71,490,0): 104, 77, 66, (71,491,0): 101, 77, 65, (71,492,0): 101, 77, 67, (71,493,0): 101, 79, 68, (71,494,0): 100, 80, 69, (71,495,0): 100, 81, 67, (71,496,0): 109, 86, 72, (71,497,0): 110, 87, 73, (71,498,0): 111, 88, 74, (71,499,0): 112, 89, 75, (71,500,0): 111, 89, 75, (71,501,0): 111, 89, 75, (71,502,0): 110, 88, 74, (71,503,0): 109, 87, 73, (71,504,0): 112, 93, 78, (71,505,0): 112, 93, 78, (71,506,0): 111, 94, 78, (71,507,0): 110, 93, 77, (71,508,0): 110, 93, 77, (71,509,0): 110, 93, 77, (71,510,0): 109, 93, 77, (71,511,0): 110, 93, 75, (71,512,0): 112, 94, 74, (71,513,0): 111, 93, 73, (71,514,0): 110, 92, 72, (71,515,0): 109, 91, 71, (71,516,0): 108, 89, 72, (71,517,0): 106, 87, 70, (71,518,0): 107, 86, 69, (71,519,0): 107, 86, 69, (71,520,0): 106, 84, 70, (71,521,0): 107, 85, 71, (71,522,0): 107, 85, 72, (71,523,0): 107, 85, 72, (71,524,0): 108, 86, 73, (71,525,0): 106, 87, 73, (71,526,0): 109, 87, 76, (71,527,0): 107, 87, 76, (71,528,0): 104, 84, 73, (71,529,0): 104, 84, 73, (71,530,0): 106, 84, 71, (71,531,0): 107, 85, 72, (71,532,0): 108, 86, 73, (71,533,0): 111, 89, 76, (71,534,0): 114, 91, 77, (71,535,0): 115, 92, 78, (71,536,0): 111, 85, 70, (71,537,0): 112, 86, 71, (71,538,0): 114, 88, 73, (71,539,0): 116, 90, 75, (71,540,0): 118, 91, 74, (71,541,0): 118, 91, 74, (71,542,0): 117, 90, 73, (71,543,0): 117, 90, 71, (71,544,0): 119, 91, 69, (71,545,0): 120, 92, 68, (71,546,0): 120, 92, 70, (71,547,0): 121, 93, 71, (71,548,0): 121, 93, 71, (71,549,0): 121, 94, 73, (71,550,0): 121, 94, 73, (71,551,0): 122, 95, 74, (71,552,0): 115, 90, 68, (71,553,0): 114, 89, 69, (71,554,0): 113, 88, 68, (71,555,0): 109, 86, 68, (71,556,0): 107, 84, 66, (71,557,0): 105, 82, 64, (71,558,0): 102, 81, 62, (71,559,0): 101, 79, 65, (71,560,0): 97, 73, 63, (71,561,0): 96, 71, 64, (71,562,0): 94, 69, 64, (71,563,0): 91, 66, 59, (71,564,0): 88, 65, 59, (71,565,0): 88, 65, 57, (71,566,0): 88, 65, 57, (71,567,0): 86, 66, 57, (71,568,0): 86, 66, 57, (71,569,0): 85, 65, 56, (71,570,0): 84, 66, 56, (71,571,0): 84, 66, 56, (71,572,0): 85, 67, 57, (71,573,0): 85, 68, 58, (71,574,0): 86, 69, 59, (71,575,0): 86, 69, 59, (71,576,0): 89, 70, 63, (71,577,0): 89, 70, 63, (71,578,0): 88, 69, 62, (71,579,0): 87, 68, 61, (71,580,0): 86, 67, 60, (71,581,0): 85, 66, 59, (71,582,0): 84, 65, 58, (71,583,0): 84, 65, 58, (71,584,0): 83, 64, 57, (71,585,0): 81, 62, 55, (71,586,0): 79, 60, 53, (71,587,0): 77, 58, 51, (71,588,0): 76, 57, 50, (71,589,0): 77, 58, 51, (71,590,0): 78, 59, 52, (71,591,0): 79, 60, 54, (71,592,0): 76, 55, 52, (71,593,0): 76, 55, 54, (71,594,0): 75, 54, 53, (71,595,0): 74, 53, 52, (71,596,0): 73, 52, 51, (71,597,0): 72, 51, 50, (71,598,0): 71, 50, 49, (71,599,0): 71, 50, 49, (72,0,0): 33, 29, 44, (72,1,0): 33, 29, 44, (72,2,0): 36, 30, 44, (72,3,0): 36, 30, 44, (72,4,0): 37, 31, 45, (72,5,0): 37, 31, 45, (72,6,0): 39, 31, 44, (72,7,0): 39, 31, 44, (72,8,0): 40, 30, 41, (72,9,0): 40, 30, 41, (72,10,0): 40, 30, 41, (72,11,0): 40, 30, 41, (72,12,0): 41, 29, 39, (72,13,0): 41, 29, 39, (72,14,0): 41, 29, 39, (72,15,0): 41, 29, 39, (72,16,0): 41, 29, 39, (72,17,0): 41, 29, 39, (72,18,0): 41, 29, 39, (72,19,0): 41, 29, 39, (72,20,0): 41, 29, 39, (72,21,0): 41, 29, 39, (72,22,0): 42, 29, 39, (72,23,0): 42, 29, 39, (72,24,0): 46, 30, 41, (72,25,0): 46, 30, 41, (72,26,0): 46, 28, 40, (72,27,0): 46, 28, 40, (72,28,0): 46, 28, 40, (72,29,0): 48, 30, 42, (72,30,0): 49, 31, 43, (72,31,0): 50, 32, 44, (72,32,0): 49, 31, 43, (72,33,0): 49, 31, 43, (72,34,0): 49, 31, 43, (72,35,0): 49, 31, 43, (72,36,0): 49, 31, 43, (72,37,0): 49, 31, 43, (72,38,0): 49, 31, 43, (72,39,0): 49, 31, 43, (72,40,0): 48, 30, 42, (72,41,0): 49, 31, 43, (72,42,0): 49, 31, 43, (72,43,0): 50, 32, 44, (72,44,0): 51, 33, 45, (72,45,0): 52, 34, 46, (72,46,0): 52, 34, 46, (72,47,0): 53, 35, 47, (72,48,0): 52, 34, 46, (72,49,0): 51, 33, 45, (72,50,0): 50, 32, 44, (72,51,0): 49, 31, 43, (72,52,0): 49, 31, 43, (72,53,0): 50, 32, 44, (72,54,0): 51, 33, 45, (72,55,0): 52, 34, 46, (72,56,0): 53, 35, 47, (72,57,0): 53, 35, 47, (72,58,0): 52, 34, 46, (72,59,0): 51, 33, 45, (72,60,0): 50, 32, 44, (72,61,0): 49, 31, 43, (72,62,0): 48, 30, 42, (72,63,0): 48, 30, 42, (72,64,0): 45, 28, 44, (72,65,0): 43, 29, 44, (72,66,0): 42, 28, 43, (72,67,0): 42, 28, 43, (72,68,0): 41, 27, 42, (72,69,0): 41, 27, 42, (72,70,0): 39, 26, 43, (72,71,0): 39, 26, 43, (72,72,0): 37, 24, 42, (72,73,0): 36, 25, 42, (72,74,0): 36, 24, 44, (72,75,0): 33, 24, 43, (72,76,0): 33, 24, 43, (72,77,0): 32, 23, 42, (72,78,0): 32, 23, 42, (72,79,0): 32, 23, 42, (72,80,0): 33, 24, 43, (72,81,0): 33, 24, 43, (72,82,0): 32, 23, 42, (72,83,0): 32, 23, 42, (72,84,0): 31, 22, 41, (72,85,0): 31, 22, 41, (72,86,0): 30, 21, 40, (72,87,0): 30, 21, 40, (72,88,0): 28, 19, 38, (72,89,0): 28, 19, 38, (72,90,0): 28, 19, 38, (72,91,0): 28, 19, 38, (72,92,0): 28, 19, 38, (72,93,0): 28, 19, 38, (72,94,0): 28, 19, 38, (72,95,0): 28, 19, 38, (72,96,0): 32, 20, 44, (72,97,0): 32, 20, 44, (72,98,0): 30, 20, 44, (72,99,0): 30, 20, 44, (72,100,0): 30, 20, 44, (72,101,0): 30, 20, 44, (72,102,0): 29, 21, 44, (72,103,0): 29, 21, 44, (72,104,0): 25, 20, 42, (72,105,0): 25, 20, 42, (72,106,0): 25, 20, 42, (72,107,0): 24, 19, 41, (72,108,0): 23, 20, 41, (72,109,0): 22, 19, 40, (72,110,0): 22, 19, 40, (72,111,0): 21, 18, 39, (72,112,0): 22, 19, 40, (72,113,0): 22, 19, 40, (72,114,0): 22, 19, 40, (72,115,0): 22, 19, 40, (72,116,0): 22, 19, 40, (72,117,0): 22, 19, 40, (72,118,0): 22, 19, 40, (72,119,0): 22, 19, 40, (72,120,0): 23, 20, 41, (72,121,0): 23, 20, 41, (72,122,0): 22, 19, 40, (72,123,0): 22, 19, 40, (72,124,0): 21, 18, 39, (72,125,0): 21, 18, 39, (72,126,0): 20, 17, 38, (72,127,0): 20, 17, 38, (72,128,0): 25, 17, 40, (72,129,0): 25, 17, 40, (72,130,0): 25, 17, 40, (72,131,0): 25, 17, 40, (72,132,0): 25, 17, 40, (72,133,0): 25, 17, 40, (72,134,0): 25, 17, 40, (72,135,0): 25, 17, 40, (72,136,0): 23, 15, 38, (72,137,0): 23, 15, 38, (72,138,0): 23, 15, 38, (72,139,0): 23, 15, 38, (72,140,0): 23, 15, 38, (72,141,0): 23, 15, 38, (72,142,0): 23, 15, 38, (72,143,0): 23, 15, 36, (72,144,0): 23, 15, 36, (72,145,0): 24, 17, 35, (72,146,0): 24, 17, 35, (72,147,0): 24, 17, 35, (72,148,0): 25, 18, 36, (72,149,0): 26, 19, 37, (72,150,0): 26, 19, 37, (72,151,0): 26, 19, 37, (72,152,0): 28, 21, 39, (72,153,0): 28, 21, 39, (72,154,0): 28, 21, 39, (72,155,0): 28, 21, 39, (72,156,0): 28, 21, 39, (72,157,0): 28, 21, 39, (72,158,0): 28, 21, 39, (72,159,0): 28, 21, 39, (72,160,0): 32, 25, 43, (72,161,0): 32, 25, 43, (72,162,0): 32, 25, 43, (72,163,0): 32, 25, 43, (72,164,0): 32, 25, 43, (72,165,0): 32, 25, 43, (72,166,0): 32, 25, 43, (72,167,0): 32, 25, 43, (72,168,0): 32, 25, 43, (72,169,0): 32, 25, 43, (72,170,0): 32, 25, 43, (72,171,0): 32, 25, 43, (72,172,0): 32, 25, 43, (72,173,0): 32, 25, 43, (72,174,0): 32, 25, 43, (72,175,0): 32, 25, 43, (72,176,0): 33, 25, 48, (72,177,0): 34, 26, 49, (72,178,0): 34, 26, 49, (72,179,0): 35, 27, 50, (72,180,0): 35, 27, 50, (72,181,0): 36, 28, 51, (72,182,0): 36, 28, 51, (72,183,0): 36, 28, 51, (72,184,0): 35, 27, 50, (72,185,0): 35, 27, 50, (72,186,0): 35, 27, 50, (72,187,0): 35, 27, 50, (72,188,0): 35, 27, 50, (72,189,0): 35, 27, 50, (72,190,0): 35, 27, 50, (72,191,0): 35, 27, 48, (72,192,0): 35, 26, 47, (72,193,0): 35, 26, 45, (72,194,0): 35, 26, 45, (72,195,0): 36, 27, 46, (72,196,0): 36, 27, 46, (72,197,0): 37, 28, 47, (72,198,0): 37, 28, 47, (72,199,0): 37, 28, 47, (72,200,0): 34, 25, 44, (72,201,0): 35, 26, 45, (72,202,0): 38, 29, 48, (72,203,0): 39, 30, 49, (72,204,0): 40, 31, 50, (72,205,0): 39, 30, 49, (72,206,0): 38, 29, 48, (72,207,0): 39, 27, 47, (72,208,0): 41, 28, 46, (72,209,0): 42, 27, 46, (72,210,0): 44, 27, 45, (72,211,0): 45, 28, 46, (72,212,0): 45, 28, 46, (72,213,0): 46, 29, 47, (72,214,0): 47, 29, 45, (72,215,0): 48, 30, 46, (72,216,0): 52, 31, 46, (72,217,0): 53, 32, 47, (72,218,0): 53, 32, 47, (72,219,0): 54, 33, 48, (72,220,0): 55, 33, 46, (72,221,0): 56, 34, 47, (72,222,0): 56, 34, 47, (72,223,0): 57, 33, 47, (72,224,0): 66, 35, 50, (72,225,0): 67, 35, 50, (72,226,0): 67, 35, 48, (72,227,0): 68, 36, 49, (72,228,0): 69, 35, 49, (72,229,0): 70, 36, 50, (72,230,0): 70, 37, 48, (72,231,0): 70, 37, 48, (72,232,0): 72, 36, 48, (72,233,0): 72, 36, 46, (72,234,0): 73, 35, 46, (72,235,0): 73, 35, 46, (72,236,0): 73, 36, 44, (72,237,0): 73, 36, 44, (72,238,0): 75, 35, 44, (72,239,0): 73, 36, 44, (72,240,0): 73, 38, 45, (72,241,0): 71, 38, 45, (72,242,0): 73, 38, 45, (72,243,0): 74, 39, 46, (72,244,0): 74, 39, 46, (72,245,0): 75, 40, 46, (72,246,0): 76, 39, 46, (72,247,0): 76, 39, 46, (72,248,0): 80, 40, 48, (72,249,0): 80, 41, 46, (72,250,0): 80, 41, 46, (72,251,0): 80, 41, 44, (72,252,0): 81, 40, 44, (72,253,0): 81, 40, 44, (72,254,0): 81, 40, 44, (72,255,0): 81, 41, 42, (72,256,0): 80, 39, 43, (72,257,0): 80, 39, 43, (72,258,0): 80, 39, 43, (72,259,0): 81, 40, 44, (72,260,0): 81, 40, 44, (72,261,0): 82, 41, 45, (72,262,0): 83, 41, 45, (72,263,0): 83, 41, 45, (72,264,0): 88, 43, 48, (72,265,0): 88, 43, 48, (72,266,0): 88, 41, 47, (72,267,0): 88, 41, 47, (72,268,0): 88, 41, 47, (72,269,0): 90, 43, 49, (72,270,0): 91, 44, 50, (72,271,0): 92, 45, 51, (72,272,0): 92, 46, 49, (72,273,0): 93, 47, 49, (72,274,0): 93, 47, 49, (72,275,0): 94, 48, 50, (72,276,0): 94, 48, 50, (72,277,0): 95, 49, 51, (72,278,0): 95, 49, 51, (72,279,0): 95, 49, 51, (72,280,0): 96, 50, 52, (72,281,0): 96, 50, 52, (72,282,0): 96, 50, 52, (72,283,0): 96, 50, 52, (72,284,0): 98, 52, 54, (72,285,0): 100, 54, 56, (72,286,0): 103, 57, 59, (72,287,0): 104, 58, 60, (72,288,0): 108, 60, 58, (72,289,0): 111, 63, 59, (72,290,0): 114, 67, 59, (72,291,0): 115, 69, 56, (72,292,0): 116, 70, 54, (72,293,0): 120, 73, 53, (72,294,0): 126, 78, 56, (72,295,0): 132, 82, 59, (72,296,0): 142, 86, 63, (72,297,0): 152, 92, 66, (72,298,0): 159, 94, 64, (72,299,0): 161, 93, 58, (72,300,0): 169, 98, 56, (72,301,0): 185, 111, 62, (72,302,0): 201, 124, 70, (72,303,0): 208, 128, 67, (72,304,0): 221, 138, 70, (72,305,0): 219, 135, 63, (72,306,0): 212, 132, 61, (72,307,0): 209, 132, 62, (72,308,0): 206, 136, 66, (72,309,0): 202, 138, 67, (72,310,0): 197, 139, 66, (72,311,0): 191, 139, 66, (72,312,0): 185, 136, 67, (72,313,0): 180, 135, 67, (72,314,0): 173, 133, 64, (72,315,0): 169, 130, 63, (72,316,0): 167, 129, 64, (72,317,0): 165, 130, 66, (72,318,0): 166, 131, 67, (72,319,0): 165, 131, 70, (72,320,0): 161, 129, 72, (72,321,0): 159, 126, 72, (72,322,0): 158, 125, 72, (72,323,0): 156, 123, 69, (72,324,0): 154, 121, 68, (72,325,0): 154, 121, 67, (72,326,0): 153, 122, 68, (72,327,0): 154, 123, 68, (72,328,0): 154, 125, 69, (72,329,0): 155, 126, 70, (72,330,0): 154, 128, 71, (72,331,0): 156, 130, 73, (72,332,0): 156, 130, 73, (72,333,0): 156, 130, 73, (72,334,0): 155, 129, 72, (72,335,0): 155, 128, 73, (72,336,0): 153, 127, 78, (72,337,0): 150, 126, 78, (72,338,0): 148, 124, 76, (72,339,0): 145, 121, 73, (72,340,0): 143, 119, 73, (72,341,0): 143, 119, 73, (72,342,0): 142, 117, 76, (72,343,0): 143, 118, 77, (72,344,0): 145, 120, 80, (72,345,0): 145, 120, 80, (72,346,0): 144, 118, 83, (72,347,0): 143, 117, 82, (72,348,0): 142, 116, 83, (72,349,0): 141, 115, 82, (72,350,0): 140, 114, 81, (72,351,0): 140, 114, 81, (72,352,0): 140, 113, 84, (72,353,0): 139, 112, 83, (72,354,0): 139, 112, 83, (72,355,0): 138, 111, 82, (72,356,0): 140, 110, 82, (72,357,0): 139, 109, 81, (72,358,0): 139, 109, 81, (72,359,0): 139, 109, 81, (72,360,0): 142, 111, 83, (72,361,0): 144, 113, 85, (72,362,0): 148, 114, 87, (72,363,0): 151, 117, 90, (72,364,0): 153, 119, 92, (72,365,0): 154, 120, 93, (72,366,0): 155, 119, 93, (72,367,0): 155, 119, 93, (72,368,0): 159, 121, 98, (72,369,0): 159, 121, 98, (72,370,0): 158, 120, 97, (72,371,0): 157, 119, 96, (72,372,0): 158, 117, 95, (72,373,0): 158, 117, 95, (72,374,0): 157, 116, 94, (72,375,0): 157, 116, 94, (72,376,0): 157, 115, 93, (72,377,0): 158, 116, 94, (72,378,0): 160, 115, 94, (72,379,0): 160, 115, 94, (72,380,0): 161, 116, 95, (72,381,0): 162, 117, 96, (72,382,0): 163, 116, 96, (72,383,0): 163, 116, 96, (72,384,0): 167, 118, 101, (72,385,0): 168, 120, 100, (72,386,0): 171, 121, 98, (72,387,0): 174, 123, 96, (72,388,0): 178, 124, 96, (72,389,0): 180, 125, 95, (72,390,0): 183, 126, 97, (72,391,0): 185, 125, 97, (72,392,0): 189, 127, 102, (72,393,0): 192, 128, 103, (72,394,0): 193, 127, 101, (72,395,0): 196, 129, 102, (72,396,0): 199, 130, 99, (72,397,0): 202, 131, 99, (72,398,0): 205, 132, 97, (72,399,0): 207, 134, 91, (72,400,0): 211, 138, 85, (72,401,0): 220, 145, 87, (72,402,0): 228, 153, 96, (72,403,0): 228, 156, 98, (72,404,0): 223, 150, 95, (72,405,0): 214, 143, 89, (72,406,0): 207, 137, 85, (72,407,0): 204, 134, 82, (72,408,0): 200, 133, 81, (72,409,0): 198, 132, 80, (72,410,0): 197, 131, 81, (72,411,0): 194, 131, 80, (72,412,0): 193, 129, 81, (72,413,0): 194, 130, 82, (72,414,0): 195, 131, 83, (72,415,0): 195, 132, 81, (72,416,0): 196, 135, 80, (72,417,0): 195, 136, 78, (72,418,0): 194, 138, 81, (72,419,0): 194, 139, 83, (72,420,0): 191, 138, 84, (72,421,0): 188, 138, 85, (72,422,0): 185, 138, 86, (72,423,0): 181, 138, 85, (72,424,0): 179, 138, 84, (72,425,0): 181, 142, 85, (72,426,0): 183, 147, 89, (72,427,0): 188, 152, 92, (72,428,0): 193, 154, 95, (72,429,0): 195, 157, 95, (72,430,0): 196, 158, 96, (72,431,0): 195, 160, 96, (72,432,0): 196, 161, 97, (72,433,0): 194, 160, 96, (72,434,0): 193, 157, 95, (72,435,0): 191, 155, 93, (72,436,0): 189, 153, 91, (72,437,0): 187, 151, 91, (72,438,0): 185, 149, 89, (72,439,0): 184, 148, 90, (72,440,0): 189, 153, 95, (72,441,0): 185, 148, 93, (72,442,0): 182, 145, 92, (72,443,0): 181, 144, 91, (72,444,0): 181, 144, 92, (72,445,0): 181, 144, 92, (72,446,0): 181, 141, 90, (72,447,0): 176, 139, 87, (72,448,0): 178, 138, 87, (72,449,0): 172, 135, 83, (72,450,0): 170, 130, 79, (72,451,0): 167, 129, 80, (72,452,0): 167, 129, 82, (72,453,0): 166, 129, 84, (72,454,0): 164, 127, 83, (72,455,0): 160, 125, 83, (72,456,0): 156, 121, 83, (72,457,0): 154, 118, 82, (72,458,0): 150, 116, 81, (72,459,0): 148, 113, 81, (72,460,0): 144, 111, 80, (72,461,0): 139, 106, 75, (72,462,0): 131, 97, 69, (72,463,0): 124, 93, 65, (72,464,0): 120, 89, 68, (72,465,0): 117, 89, 68, (72,466,0): 117, 89, 68, (72,467,0): 116, 89, 68, (72,468,0): 116, 91, 69, (72,469,0): 115, 93, 70, (72,470,0): 116, 96, 72, (72,471,0): 115, 97, 73, (72,472,0): 118, 100, 76, (72,473,0): 118, 100, 76, (72,474,0): 119, 101, 77, (72,475,0): 118, 100, 76, (72,476,0): 119, 99, 75, (72,477,0): 118, 96, 73, (72,478,0): 118, 93, 71, (72,479,0): 114, 92, 69, (72,480,0): 114, 93, 72, (72,481,0): 112, 94, 72, (72,482,0): 113, 92, 73, (72,483,0): 111, 90, 71, (72,484,0): 113, 87, 70, (72,485,0): 112, 86, 69, (72,486,0): 112, 84, 70, (72,487,0): 111, 83, 69, (72,488,0): 112, 84, 72, (72,489,0): 107, 79, 67, (72,490,0): 101, 75, 62, (72,491,0): 98, 75, 61, (72,492,0): 101, 77, 65, (72,493,0): 103, 81, 68, (72,494,0): 101, 82, 68, (72,495,0): 100, 81, 67, (72,496,0): 108, 85, 71, (72,497,0): 109, 86, 70, (72,498,0): 111, 88, 72, (72,499,0): 113, 90, 74, (72,500,0): 112, 91, 74, (72,501,0): 112, 91, 74, (72,502,0): 112, 91, 74, (72,503,0): 112, 91, 74, (72,504,0): 113, 94, 77, (72,505,0): 113, 94, 77, (72,506,0): 112, 95, 77, (72,507,0): 112, 95, 77, (72,508,0): 112, 95, 77, (72,509,0): 112, 95, 77, (72,510,0): 111, 96, 77, (72,511,0): 112, 95, 77, (72,512,0): 115, 97, 77, (72,513,0): 115, 94, 75, (72,514,0): 113, 92, 73, (72,515,0): 111, 90, 71, (72,516,0): 108, 89, 72, (72,517,0): 108, 89, 72, (72,518,0): 109, 90, 73, (72,519,0): 109, 90, 73, (72,520,0): 107, 88, 73, (72,521,0): 107, 88, 73, (72,522,0): 106, 87, 73, (72,523,0): 106, 87, 73, (72,524,0): 105, 86, 72, (72,525,0): 104, 86, 72, (72,526,0): 104, 84, 73, (72,527,0): 104, 84, 73, (72,528,0): 104, 84, 73, (72,529,0): 104, 84, 73, (72,530,0): 105, 86, 72, (72,531,0): 105, 86, 72, (72,532,0): 108, 86, 73, (72,533,0): 108, 86, 73, (72,534,0): 109, 87, 73, (72,535,0): 109, 87, 73, (72,536,0): 114, 91, 75, (72,537,0): 116, 93, 77, (72,538,0): 120, 94, 79, (72,539,0): 121, 95, 80, (72,540,0): 121, 95, 78, (72,541,0): 120, 94, 77, (72,542,0): 120, 93, 76, (72,543,0): 119, 92, 73, (72,544,0): 115, 87, 65, (72,545,0): 118, 88, 62, (72,546,0): 121, 91, 67, (72,547,0): 121, 93, 69, (72,548,0): 123, 95, 71, (72,549,0): 123, 95, 73, (72,550,0): 122, 96, 73, (72,551,0): 122, 96, 73, (72,552,0): 122, 96, 73, (72,553,0): 120, 95, 73, (72,554,0): 118, 93, 71, (72,555,0): 115, 90, 70, (72,556,0): 110, 88, 67, (72,557,0): 108, 86, 65, (72,558,0): 106, 84, 63, (72,559,0): 105, 82, 66, (72,560,0): 105, 78, 67, (72,561,0): 103, 76, 67, (72,562,0): 97, 72, 65, (72,563,0): 93, 69, 59, (72,564,0): 90, 65, 58, (72,565,0): 87, 65, 54, (72,566,0): 85, 63, 52, (72,567,0): 85, 63, 52, (72,568,0): 90, 70, 61, (72,569,0): 89, 69, 60, (72,570,0): 86, 66, 57, (72,571,0): 83, 65, 55, (72,572,0): 82, 64, 54, (72,573,0): 81, 63, 53, (72,574,0): 81, 63, 53, (72,575,0): 81, 63, 53, (72,576,0): 82, 63, 56, (72,577,0): 82, 63, 56, (72,578,0): 83, 64, 57, (72,579,0): 83, 64, 57, (72,580,0): 83, 64, 57, (72,581,0): 82, 63, 56, (72,582,0): 80, 61, 54, (72,583,0): 79, 60, 53, (72,584,0): 79, 60, 53, (72,585,0): 78, 59, 52, (72,586,0): 78, 59, 52, (72,587,0): 78, 59, 52, (72,588,0): 77, 58, 51, (72,589,0): 76, 57, 50, (72,590,0): 76, 57, 50, (72,591,0): 76, 57, 51, (72,592,0): 79, 58, 55, (72,593,0): 81, 57, 55, (72,594,0): 80, 56, 54, (72,595,0): 79, 55, 53, (72,596,0): 78, 54, 52, (72,597,0): 77, 53, 51, (72,598,0): 76, 52, 50, (72,599,0): 76, 52, 50, (73,0,0): 33, 29, 44, (73,1,0): 33, 29, 44, (73,2,0): 35, 29, 43, (73,3,0): 36, 30, 44, (73,4,0): 36, 30, 44, (73,5,0): 37, 31, 45, (73,6,0): 38, 30, 43, (73,7,0): 39, 31, 44, (73,8,0): 40, 30, 41, (73,9,0): 40, 30, 41, (73,10,0): 40, 30, 41, (73,11,0): 40, 30, 41, (73,12,0): 41, 29, 39, (73,13,0): 41, 29, 39, (73,14,0): 41, 29, 39, (73,15,0): 41, 29, 39, (73,16,0): 41, 29, 39, (73,17,0): 41, 29, 39, (73,18,0): 41, 29, 39, (73,19,0): 41, 29, 39, (73,20,0): 41, 29, 39, (73,21,0): 41, 29, 39, (73,22,0): 42, 29, 39, (73,23,0): 42, 29, 39, (73,24,0): 46, 30, 41, (73,25,0): 46, 30, 41, (73,26,0): 46, 28, 40, (73,27,0): 46, 28, 40, (73,28,0): 46, 28, 40, (73,29,0): 48, 30, 42, (73,30,0): 49, 31, 43, (73,31,0): 50, 32, 44, (73,32,0): 49, 31, 43, (73,33,0): 49, 31, 43, (73,34,0): 49, 31, 43, (73,35,0): 49, 31, 43, (73,36,0): 49, 31, 43, (73,37,0): 49, 31, 43, (73,38,0): 49, 31, 43, (73,39,0): 49, 31, 43, (73,40,0): 49, 31, 43, (73,41,0): 49, 31, 43, (73,42,0): 49, 31, 43, (73,43,0): 50, 32, 44, (73,44,0): 51, 33, 45, (73,45,0): 52, 34, 46, (73,46,0): 52, 34, 46, (73,47,0): 52, 34, 46, (73,48,0): 52, 34, 46, (73,49,0): 51, 33, 45, (73,50,0): 50, 32, 44, (73,51,0): 49, 31, 43, (73,52,0): 49, 31, 43, (73,53,0): 50, 32, 44, (73,54,0): 51, 33, 45, (73,55,0): 52, 34, 46, (73,56,0): 53, 35, 47, (73,57,0): 53, 35, 47, (73,58,0): 52, 34, 46, (73,59,0): 51, 33, 45, (73,60,0): 50, 32, 44, (73,61,0): 49, 31, 43, (73,62,0): 48, 30, 42, (73,63,0): 46, 30, 41, (73,64,0): 45, 28, 44, (73,65,0): 42, 28, 43, (73,66,0): 42, 28, 43, (73,67,0): 41, 27, 42, (73,68,0): 41, 27, 42, (73,69,0): 39, 27, 41, (73,70,0): 39, 26, 43, (73,71,0): 38, 27, 43, (73,72,0): 36, 25, 42, (73,73,0): 36, 25, 42, (73,74,0): 34, 25, 44, (73,75,0): 33, 24, 43, (73,76,0): 33, 24, 43, (73,77,0): 32, 23, 42, (73,78,0): 32, 23, 42, (73,79,0): 32, 23, 42, (73,80,0): 33, 24, 43, (73,81,0): 32, 23, 42, (73,82,0): 32, 23, 42, (73,83,0): 31, 22, 41, (73,84,0): 31, 22, 41, (73,85,0): 30, 21, 40, (73,86,0): 30, 21, 40, (73,87,0): 30, 21, 40, (73,88,0): 28, 19, 38, (73,89,0): 28, 19, 38, (73,90,0): 28, 19, 38, (73,91,0): 28, 19, 38, (73,92,0): 28, 19, 38, (73,93,0): 28, 19, 38, (73,94,0): 28, 19, 38, (73,95,0): 28, 19, 38, (73,96,0): 32, 20, 44, (73,97,0): 32, 20, 44, (73,98,0): 30, 20, 44, (73,99,0): 30, 20, 44, (73,100,0): 30, 20, 44, (73,101,0): 30, 20, 44, (73,102,0): 29, 21, 44, (73,103,0): 29, 21, 44, (73,104,0): 25, 20, 42, (73,105,0): 25, 20, 42, (73,106,0): 24, 19, 41, (73,107,0): 24, 19, 41, (73,108,0): 22, 19, 40, (73,109,0): 22, 19, 40, (73,110,0): 22, 19, 40, (73,111,0): 21, 18, 39, (73,112,0): 22, 19, 40, (73,113,0): 22, 19, 40, (73,114,0): 22, 19, 40, (73,115,0): 22, 19, 40, (73,116,0): 22, 19, 40, (73,117,0): 22, 19, 40, (73,118,0): 22, 19, 40, (73,119,0): 22, 19, 40, (73,120,0): 23, 20, 41, (73,121,0): 23, 20, 41, (73,122,0): 22, 19, 40, (73,123,0): 22, 19, 40, (73,124,0): 21, 18, 39, (73,125,0): 21, 18, 39, (73,126,0): 20, 17, 38, (73,127,0): 20, 17, 38, (73,128,0): 25, 17, 40, (73,129,0): 25, 17, 40, (73,130,0): 25, 17, 40, (73,131,0): 25, 17, 40, (73,132,0): 25, 17, 40, (73,133,0): 25, 17, 40, (73,134,0): 25, 17, 40, (73,135,0): 25, 17, 40, (73,136,0): 23, 15, 38, (73,137,0): 23, 15, 38, (73,138,0): 23, 15, 38, (73,139,0): 23, 15, 38, (73,140,0): 23, 15, 38, (73,141,0): 23, 15, 38, (73,142,0): 23, 15, 38, (73,143,0): 23, 15, 36, (73,144,0): 24, 16, 37, (73,145,0): 24, 17, 35, (73,146,0): 24, 17, 35, (73,147,0): 25, 18, 36, (73,148,0): 25, 18, 36, (73,149,0): 26, 19, 37, (73,150,0): 26, 19, 37, (73,151,0): 27, 20, 38, (73,152,0): 28, 21, 39, (73,153,0): 28, 21, 39, (73,154,0): 28, 21, 39, (73,155,0): 28, 21, 39, (73,156,0): 28, 21, 39, (73,157,0): 28, 21, 39, (73,158,0): 28, 21, 39, (73,159,0): 28, 21, 39, (73,160,0): 32, 25, 43, (73,161,0): 32, 25, 43, (73,162,0): 32, 25, 43, (73,163,0): 32, 25, 43, (73,164,0): 32, 25, 43, (73,165,0): 32, 25, 43, (73,166,0): 32, 25, 43, (73,167,0): 32, 25, 43, (73,168,0): 32, 25, 43, (73,169,0): 32, 25, 43, (73,170,0): 32, 25, 43, (73,171,0): 32, 25, 43, (73,172,0): 32, 25, 43, (73,173,0): 32, 25, 43, (73,174,0): 32, 25, 43, (73,175,0): 32, 25, 43, (73,176,0): 33, 25, 48, (73,177,0): 34, 26, 49, (73,178,0): 34, 26, 49, (73,179,0): 34, 26, 49, (73,180,0): 35, 27, 50, (73,181,0): 35, 27, 50, (73,182,0): 36, 28, 51, (73,183,0): 36, 28, 51, (73,184,0): 35, 27, 50, (73,185,0): 35, 27, 50, (73,186,0): 35, 27, 50, (73,187,0): 35, 27, 50, (73,188,0): 35, 27, 50, (73,189,0): 35, 27, 50, (73,190,0): 35, 27, 50, (73,191,0): 35, 27, 48, (73,192,0): 35, 26, 47, (73,193,0): 35, 26, 45, (73,194,0): 35, 26, 45, (73,195,0): 36, 27, 46, (73,196,0): 36, 27, 46, (73,197,0): 37, 28, 47, (73,198,0): 37, 28, 47, (73,199,0): 37, 28, 47, (73,200,0): 34, 25, 44, (73,201,0): 36, 27, 46, (73,202,0): 37, 28, 47, (73,203,0): 39, 30, 49, (73,204,0): 39, 30, 49, (73,205,0): 39, 30, 49, (73,206,0): 38, 29, 48, (73,207,0): 39, 27, 47, (73,208,0): 41, 28, 46, (73,209,0): 42, 27, 46, (73,210,0): 45, 28, 46, (73,211,0): 45, 28, 46, (73,212,0): 46, 29, 47, (73,213,0): 46, 29, 47, (73,214,0): 47, 29, 45, (73,215,0): 48, 30, 46, (73,216,0): 52, 31, 46, (73,217,0): 53, 32, 47, (73,218,0): 53, 32, 47, (73,219,0): 53, 32, 47, (73,220,0): 55, 33, 46, (73,221,0): 55, 33, 46, (73,222,0): 56, 34, 47, (73,223,0): 57, 33, 47, (73,224,0): 66, 35, 50, (73,225,0): 67, 35, 50, (73,226,0): 68, 36, 49, (73,227,0): 68, 36, 49, (73,228,0): 69, 37, 50, (73,229,0): 70, 37, 48, (73,230,0): 70, 37, 48, (73,231,0): 71, 38, 49, (73,232,0): 72, 36, 46, (73,233,0): 72, 36, 46, (73,234,0): 73, 35, 46, (73,235,0): 73, 36, 44, (73,236,0): 73, 36, 44, (73,237,0): 73, 36, 44, (73,238,0): 73, 36, 44, (73,239,0): 73, 36, 44, (73,240,0): 73, 38, 45, (73,241,0): 71, 38, 45, (73,242,0): 73, 38, 45, (73,243,0): 74, 39, 46, (73,244,0): 74, 39, 45, (73,245,0): 75, 40, 46, (73,246,0): 76, 39, 46, (73,247,0): 76, 40, 44, (73,248,0): 80, 41, 46, (73,249,0): 80, 41, 46, (73,250,0): 80, 41, 44, (73,251,0): 80, 41, 44, (73,252,0): 81, 40, 44, (73,253,0): 81, 40, 44, (73,254,0): 81, 41, 42, (73,255,0): 81, 41, 42, (73,256,0): 80, 39, 43, (73,257,0): 80, 39, 43, (73,258,0): 80, 39, 43, (73,259,0): 81, 40, 44, (73,260,0): 81, 40, 44, (73,261,0): 82, 41, 45, (73,262,0): 83, 41, 45, (73,263,0): 83, 41, 45, (73,264,0): 88, 43, 48, (73,265,0): 88, 43, 48, (73,266,0): 88, 41, 47, (73,267,0): 88, 41, 47, (73,268,0): 88, 41, 47, (73,269,0): 89, 42, 48, (73,270,0): 91, 44, 50, (73,271,0): 92, 46, 49, (73,272,0): 92, 46, 48, (73,273,0): 93, 47, 49, (73,274,0): 93, 47, 49, (73,275,0): 93, 47, 49, (73,276,0): 94, 48, 50, (73,277,0): 94, 48, 50, (73,278,0): 95, 49, 51, (73,279,0): 95, 49, 51, (73,280,0): 96, 50, 52, (73,281,0): 96, 50, 52, (73,282,0): 96, 50, 52, (73,283,0): 97, 51, 53, (73,284,0): 99, 53, 55, (73,285,0): 101, 55, 57, (73,286,0): 103, 57, 59, (73,287,0): 105, 59, 59, (73,288,0): 108, 60, 58, (73,289,0): 111, 64, 58, (73,290,0): 114, 67, 59, (73,291,0): 115, 69, 56, (73,292,0): 116, 70, 54, (73,293,0): 119, 74, 53, (73,294,0): 126, 78, 56, (73,295,0): 132, 82, 57, (73,296,0): 139, 83, 60, (73,297,0): 149, 89, 61, (73,298,0): 158, 93, 61, (73,299,0): 163, 93, 57, (73,300,0): 172, 99, 54, (73,301,0): 190, 114, 62, (73,302,0): 206, 127, 70, (73,303,0): 211, 131, 68, (73,304,0): 214, 134, 65, (73,305,0): 211, 131, 60, (73,306,0): 207, 128, 59, (73,307,0): 204, 129, 61, (73,308,0): 202, 133, 66, (73,309,0): 200, 137, 68, (73,310,0): 195, 138, 69, (73,311,0): 188, 138, 67, (73,312,0): 183, 136, 68, (73,313,0): 178, 134, 69, (73,314,0): 172, 131, 69, (73,315,0): 167, 129, 67, (73,316,0): 164, 128, 68, (73,317,0): 164, 128, 68, (73,318,0): 164, 130, 69, (73,319,0): 164, 129, 71, (73,320,0): 160, 127, 74, (73,321,0): 158, 125, 74, (73,322,0): 156, 123, 72, (73,323,0): 154, 121, 70, (73,324,0): 153, 120, 69, (73,325,0): 153, 120, 67, (73,326,0): 152, 120, 69, (73,327,0): 152, 121, 67, (73,328,0): 152, 122, 68, (73,329,0): 153, 124, 68, (73,330,0): 152, 126, 69, (73,331,0): 153, 127, 70, (73,332,0): 154, 128, 71, (73,333,0): 154, 128, 71, (73,334,0): 153, 127, 70, (73,335,0): 151, 126, 70, (73,336,0): 151, 128, 78, (73,337,0): 149, 125, 77, (73,338,0): 147, 123, 75, (73,339,0): 145, 121, 73, (73,340,0): 144, 120, 74, (73,341,0): 143, 119, 73, (73,342,0): 143, 118, 77, (73,343,0): 143, 118, 77, (73,344,0): 146, 121, 81, (73,345,0): 146, 121, 81, (73,346,0): 145, 119, 84, (73,347,0): 144, 118, 83, (73,348,0): 143, 117, 84, (73,349,0): 142, 116, 83, (73,350,0): 141, 115, 82, (73,351,0): 140, 114, 81, (73,352,0): 140, 113, 84, (73,353,0): 140, 113, 84, (73,354,0): 139, 112, 83, (73,355,0): 139, 112, 83, (73,356,0): 140, 110, 82, (73,357,0): 140, 110, 82, (73,358,0): 139, 109, 81, (73,359,0): 139, 109, 81, (73,360,0): 143, 112, 84, (73,361,0): 144, 113, 85, (73,362,0): 148, 114, 87, (73,363,0): 151, 117, 90, (73,364,0): 153, 119, 92, (73,365,0): 154, 120, 93, (73,366,0): 155, 119, 93, (73,367,0): 155, 119, 93, (73,368,0): 158, 120, 97, (73,369,0): 158, 120, 97, (73,370,0): 157, 119, 96, (73,371,0): 156, 118, 95, (73,372,0): 158, 117, 95, (73,373,0): 157, 116, 94, (73,374,0): 156, 115, 93, (73,375,0): 156, 115, 93, (73,376,0): 158, 116, 94, (73,377,0): 158, 116, 94, (73,378,0): 160, 115, 94, (73,379,0): 161, 116, 95, (73,380,0): 161, 116, 95, (73,381,0): 162, 117, 96, (73,382,0): 163, 116, 96, (73,383,0): 164, 117, 97, (73,384,0): 167, 118, 101, (73,385,0): 168, 120, 100, (73,386,0): 171, 121, 98, (73,387,0): 173, 123, 96, (73,388,0): 176, 125, 96, (73,389,0): 180, 127, 96, (73,390,0): 182, 127, 97, (73,391,0): 186, 126, 98, (73,392,0): 190, 128, 103, (73,393,0): 193, 127, 101, (73,394,0): 194, 127, 101, (73,395,0): 198, 129, 100, (73,396,0): 201, 130, 98, (73,397,0): 204, 134, 98, (73,398,0): 210, 139, 97, (73,399,0): 212, 140, 92, (73,400,0): 222, 145, 89, (73,401,0): 227, 151, 91, (73,402,0): 232, 156, 96, (73,403,0): 230, 155, 97, (73,404,0): 224, 149, 92, (73,405,0): 214, 141, 86, (73,406,0): 207, 136, 82, (73,407,0): 202, 132, 80, (73,408,0): 202, 135, 83, (73,409,0): 200, 134, 82, (73,410,0): 199, 133, 83, (73,411,0): 199, 133, 83, (73,412,0): 199, 133, 83, (73,413,0): 200, 134, 84, (73,414,0): 202, 136, 86, (73,415,0): 201, 138, 85, (73,416,0): 200, 138, 81, (73,417,0): 199, 139, 79, (73,418,0): 199, 140, 82, (73,419,0): 197, 141, 84, (73,420,0): 194, 142, 85, (73,421,0): 192, 141, 86, (73,422,0): 188, 141, 85, (73,423,0): 186, 141, 86, (73,424,0): 182, 141, 85, (73,425,0): 183, 144, 85, (73,426,0): 187, 148, 89, (73,427,0): 191, 153, 91, (73,428,0): 193, 155, 93, (73,429,0): 195, 157, 94, (73,430,0): 196, 158, 95, (73,431,0): 196, 158, 95, (73,432,0): 197, 162, 98, (73,433,0): 195, 161, 97, (73,434,0): 195, 159, 97, (73,435,0): 193, 157, 95, (73,436,0): 192, 156, 94, (73,437,0): 190, 154, 92, (73,438,0): 189, 153, 93, (73,439,0): 188, 152, 92, (73,440,0): 189, 153, 93, (73,441,0): 186, 150, 92, (73,442,0): 183, 147, 89, (73,443,0): 184, 145, 88, (73,444,0): 185, 146, 91, (73,445,0): 185, 146, 91, (73,446,0): 183, 144, 89, (73,447,0): 180, 141, 86, (73,448,0): 181, 140, 86, (73,449,0): 176, 137, 82, (73,450,0): 172, 132, 80, (73,451,0): 170, 130, 79, (73,452,0): 171, 131, 82, (73,453,0): 168, 130, 83, (73,454,0): 166, 128, 83, (73,455,0): 163, 126, 82, (73,456,0): 157, 122, 82, (73,457,0): 154, 119, 81, (73,458,0): 149, 115, 78, (73,459,0): 147, 113, 78, (73,460,0): 143, 110, 77, (73,461,0): 137, 104, 73, (73,462,0): 130, 96, 68, (73,463,0): 123, 92, 64, (73,464,0): 120, 89, 68, (73,465,0): 116, 89, 68, (73,466,0): 116, 89, 68, (73,467,0): 115, 90, 68, (73,468,0): 114, 92, 69, (73,469,0): 114, 94, 70, (73,470,0): 114, 96, 72, (73,471,0): 115, 97, 73, (73,472,0): 117, 99, 75, (73,473,0): 118, 100, 76, (73,474,0): 118, 100, 76, (73,475,0): 120, 100, 76, (73,476,0): 120, 98, 75, (73,477,0): 119, 97, 74, (73,478,0): 119, 94, 72, (73,479,0): 116, 94, 71, (73,480,0): 114, 93, 72, (73,481,0): 112, 94, 72, (73,482,0): 113, 92, 73, (73,483,0): 112, 89, 71, (73,484,0): 113, 87, 70, (73,485,0): 112, 86, 69, (73,486,0): 112, 84, 70, (73,487,0): 112, 84, 70, (73,488,0): 111, 83, 71, (73,489,0): 107, 79, 67, (73,490,0): 103, 75, 63, (73,491,0): 100, 74, 61, (73,492,0): 101, 77, 65, (73,493,0): 102, 80, 67, (73,494,0): 102, 80, 67, (73,495,0): 102, 80, 66, (73,496,0): 108, 85, 69, (73,497,0): 109, 86, 70, (73,498,0): 111, 88, 72, (73,499,0): 113, 90, 74, (73,500,0): 113, 92, 75, (73,501,0): 114, 93, 76, (73,502,0): 113, 92, 75, (73,503,0): 113, 92, 75, (73,504,0): 113, 94, 77, (73,505,0): 113, 94, 77, (73,506,0): 112, 95, 77, (73,507,0): 112, 95, 77, (73,508,0): 112, 95, 77, (73,509,0): 112, 95, 77, (73,510,0): 111, 96, 77, (73,511,0): 112, 95, 77, (73,512,0): 115, 97, 77, (73,513,0): 116, 95, 76, (73,514,0): 113, 92, 73, (73,515,0): 111, 90, 71, (73,516,0): 108, 89, 72, (73,517,0): 108, 89, 72, (73,518,0): 109, 90, 73, (73,519,0): 110, 91, 74, (73,520,0): 107, 88, 73, (73,521,0): 106, 87, 72, (73,522,0): 106, 87, 73, (73,523,0): 104, 86, 72, (73,524,0): 104, 86, 72, (73,525,0): 103, 85, 71, (73,526,0): 103, 85, 73, (73,527,0): 103, 85, 73, (73,528,0): 103, 85, 73, (73,529,0): 104, 84, 73, (73,530,0): 104, 85, 71, (73,531,0): 105, 86, 72, (73,532,0): 107, 85, 72, (73,533,0): 108, 86, 73, (73,534,0): 108, 86, 72, (73,535,0): 109, 87, 73, (73,536,0): 112, 89, 73, (73,537,0): 114, 91, 75, (73,538,0): 118, 92, 77, (73,539,0): 119, 93, 78, (73,540,0): 120, 94, 77, (73,541,0): 120, 94, 77, (73,542,0): 120, 93, 76, (73,543,0): 119, 92, 73, (73,544,0): 120, 90, 66, (73,545,0): 121, 91, 65, (73,546,0): 123, 93, 67, (73,547,0): 125, 95, 69, (73,548,0): 124, 96, 72, (73,549,0): 124, 96, 72, (73,550,0): 124, 96, 72, (73,551,0): 122, 96, 71, (73,552,0): 121, 95, 72, (73,553,0): 120, 94, 71, (73,554,0): 117, 92, 70, (73,555,0): 115, 90, 68, (73,556,0): 113, 88, 66, (73,557,0): 109, 87, 64, (73,558,0): 108, 86, 65, (73,559,0): 107, 84, 66, (73,560,0): 108, 82, 69, (73,561,0): 105, 78, 67, (73,562,0): 100, 76, 66, (73,563,0): 95, 71, 61, (73,564,0): 92, 68, 58, (73,565,0): 89, 65, 55, (73,566,0): 88, 64, 54, (73,567,0): 86, 64, 53, (73,568,0): 91, 68, 60, (73,569,0): 88, 68, 59, (73,570,0): 86, 66, 57, (73,571,0): 84, 64, 55, (73,572,0): 82, 64, 54, (73,573,0): 81, 63, 53, (73,574,0): 82, 64, 54, (73,575,0): 82, 63, 56, (73,576,0): 79, 60, 53, (73,577,0): 80, 61, 54, (73,578,0): 80, 61, 55, (73,579,0): 80, 61, 54, (73,580,0): 80, 61, 55, (73,581,0): 78, 59, 52, (73,582,0): 77, 58, 52, (73,583,0): 76, 57, 50, (73,584,0): 77, 58, 52, (73,585,0): 77, 58, 51, (73,586,0): 77, 58, 52, (73,587,0): 77, 58, 51, (73,588,0): 77, 58, 52, (73,589,0): 77, 58, 51, (73,590,0): 77, 58, 52, (73,591,0): 77, 58, 52, (73,592,0): 81, 57, 53, (73,593,0): 80, 56, 54, (73,594,0): 80, 56, 54, (73,595,0): 79, 55, 53, (73,596,0): 77, 53, 51, (73,597,0): 76, 52, 50, (73,598,0): 76, 52, 50, (73,599,0): 75, 51, 49, (74,0,0): 32, 28, 43, (74,1,0): 33, 29, 44, (74,2,0): 35, 29, 43, (74,3,0): 36, 30, 44, (74,4,0): 36, 30, 44, (74,5,0): 37, 31, 45, (74,6,0): 38, 30, 43, (74,7,0): 38, 30, 43, (74,8,0): 40, 30, 41, (74,9,0): 40, 30, 41, (74,10,0): 40, 30, 41, (74,11,0): 40, 30, 41, (74,12,0): 41, 29, 39, (74,13,0): 41, 29, 39, (74,14,0): 41, 29, 39, (74,15,0): 41, 29, 39, (74,16,0): 41, 29, 39, (74,17,0): 41, 29, 39, (74,18,0): 41, 29, 39, (74,19,0): 41, 29, 39, (74,20,0): 41, 29, 39, (74,21,0): 41, 29, 39, (74,22,0): 42, 29, 39, (74,23,0): 42, 29, 39, (74,24,0): 46, 30, 41, (74,25,0): 46, 30, 41, (74,26,0): 46, 28, 40, (74,27,0): 46, 28, 40, (74,28,0): 46, 28, 40, (74,29,0): 48, 30, 42, (74,30,0): 49, 31, 43, (74,31,0): 50, 32, 44, (74,32,0): 50, 32, 44, (74,33,0): 50, 32, 44, (74,34,0): 50, 32, 44, (74,35,0): 50, 32, 44, (74,36,0): 50, 32, 44, (74,37,0): 50, 32, 44, (74,38,0): 50, 32, 44, (74,39,0): 50, 32, 44, (74,40,0): 49, 31, 43, (74,41,0): 49, 31, 43, (74,42,0): 50, 32, 44, (74,43,0): 50, 32, 44, (74,44,0): 51, 33, 45, (74,45,0): 51, 33, 45, (74,46,0): 52, 34, 46, (74,47,0): 52, 34, 46, (74,48,0): 52, 34, 46, (74,49,0): 51, 33, 45, (74,50,0): 50, 32, 44, (74,51,0): 49, 31, 43, (74,52,0): 49, 31, 43, (74,53,0): 50, 32, 44, (74,54,0): 51, 33, 45, (74,55,0): 52, 34, 46, (74,56,0): 53, 35, 47, (74,57,0): 52, 34, 46, (74,58,0): 51, 33, 45, (74,59,0): 50, 32, 44, (74,60,0): 49, 31, 43, (74,61,0): 48, 30, 42, (74,62,0): 47, 29, 41, (74,63,0): 46, 30, 41, (74,64,0): 44, 27, 43, (74,65,0): 42, 28, 43, (74,66,0): 41, 29, 43, (74,67,0): 40, 28, 42, (74,68,0): 40, 28, 42, (74,69,0): 39, 27, 41, (74,70,0): 39, 26, 43, (74,71,0): 37, 26, 42, (74,72,0): 36, 25, 42, (74,73,0): 34, 25, 42, (74,74,0): 34, 25, 44, (74,75,0): 33, 24, 43, (74,76,0): 32, 25, 43, (74,77,0): 31, 24, 42, (74,78,0): 31, 24, 42, (74,79,0): 31, 24, 42, (74,80,0): 32, 23, 42, (74,81,0): 32, 23, 42, (74,82,0): 32, 23, 42, (74,83,0): 31, 22, 41, (74,84,0): 31, 22, 41, (74,85,0): 30, 21, 40, (74,86,0): 30, 21, 40, (74,87,0): 29, 20, 39, (74,88,0): 28, 19, 38, (74,89,0): 28, 19, 38, (74,90,0): 28, 19, 38, (74,91,0): 28, 19, 38, (74,92,0): 28, 19, 38, (74,93,0): 28, 19, 38, (74,94,0): 28, 19, 38, (74,95,0): 28, 19, 38, (74,96,0): 31, 19, 43, (74,97,0): 31, 19, 43, (74,98,0): 29, 19, 43, (74,99,0): 29, 19, 43, (74,100,0): 29, 19, 43, (74,101,0): 29, 19, 43, (74,102,0): 28, 20, 43, (74,103,0): 28, 20, 43, (74,104,0): 25, 20, 42, (74,105,0): 24, 19, 41, (74,106,0): 24, 19, 41, (74,107,0): 24, 19, 41, (74,108,0): 22, 19, 40, (74,109,0): 21, 18, 39, (74,110,0): 21, 18, 39, (74,111,0): 21, 18, 39, (74,112,0): 22, 19, 40, (74,113,0): 22, 19, 40, (74,114,0): 22, 19, 40, (74,115,0): 22, 19, 40, (74,116,0): 22, 19, 40, (74,117,0): 22, 19, 40, (74,118,0): 22, 19, 40, (74,119,0): 22, 19, 40, (74,120,0): 23, 20, 41, (74,121,0): 23, 20, 41, (74,122,0): 22, 19, 40, (74,123,0): 22, 19, 40, (74,124,0): 21, 18, 39, (74,125,0): 21, 18, 39, (74,126,0): 20, 17, 38, (74,127,0): 20, 17, 38, (74,128,0): 25, 17, 40, (74,129,0): 25, 17, 40, (74,130,0): 25, 17, 40, (74,131,0): 25, 17, 40, (74,132,0): 25, 17, 40, (74,133,0): 25, 17, 40, (74,134,0): 25, 17, 40, (74,135,0): 25, 17, 40, (74,136,0): 24, 16, 39, (74,137,0): 24, 16, 39, (74,138,0): 24, 16, 39, (74,139,0): 24, 16, 39, (74,140,0): 24, 16, 39, (74,141,0): 24, 16, 39, (74,142,0): 24, 16, 39, (74,143,0): 24, 16, 37, (74,144,0): 26, 17, 38, (74,145,0): 26, 17, 36, (74,146,0): 26, 17, 36, (74,147,0): 27, 18, 37, (74,148,0): 27, 18, 37, (74,149,0): 28, 19, 38, (74,150,0): 28, 19, 38, (74,151,0): 28, 19, 38, (74,152,0): 29, 20, 39, (74,153,0): 29, 20, 39, (74,154,0): 29, 20, 39, (74,155,0): 29, 20, 39, (74,156,0): 29, 20, 39, (74,157,0): 29, 20, 39, (74,158,0): 29, 20, 39, (74,159,0): 29, 20, 39, (74,160,0): 32, 25, 43, (74,161,0): 32, 25, 43, (74,162,0): 32, 25, 43, (74,163,0): 32, 25, 43, (74,164,0): 32, 25, 43, (74,165,0): 32, 25, 43, (74,166,0): 32, 25, 43, (74,167,0): 32, 25, 43, (74,168,0): 32, 25, 43, (74,169,0): 32, 25, 43, (74,170,0): 32, 25, 43, (74,171,0): 32, 25, 43, (74,172,0): 32, 25, 43, (74,173,0): 32, 25, 43, (74,174,0): 32, 25, 43, (74,175,0): 32, 25, 43, (74,176,0): 33, 25, 48, (74,177,0): 33, 25, 48, (74,178,0): 33, 25, 48, (74,179,0): 34, 26, 49, (74,180,0): 35, 27, 50, (74,181,0): 35, 27, 50, (74,182,0): 35, 27, 50, (74,183,0): 36, 28, 51, (74,184,0): 34, 26, 49, (74,185,0): 34, 26, 49, (74,186,0): 34, 26, 49, (74,187,0): 34, 26, 49, (74,188,0): 34, 26, 49, (74,189,0): 34, 26, 49, (74,190,0): 34, 26, 49, (74,191,0): 34, 26, 47, (74,192,0): 35, 26, 47, (74,193,0): 35, 26, 45, (74,194,0): 35, 26, 45, (74,195,0): 36, 27, 46, (74,196,0): 36, 27, 46, (74,197,0): 37, 28, 47, (74,198,0): 37, 28, 47, (74,199,0): 37, 28, 47, (74,200,0): 35, 26, 45, (74,201,0): 36, 27, 46, (74,202,0): 37, 28, 47, (74,203,0): 38, 29, 48, (74,204,0): 39, 30, 49, (74,205,0): 39, 30, 49, (74,206,0): 38, 29, 48, (74,207,0): 40, 28, 48, (74,208,0): 41, 28, 46, (74,209,0): 43, 28, 47, (74,210,0): 45, 28, 46, (74,211,0): 45, 28, 46, (74,212,0): 46, 29, 47, (74,213,0): 47, 30, 48, (74,214,0): 48, 30, 46, (74,215,0): 48, 30, 46, (74,216,0): 52, 31, 46, (74,217,0): 52, 31, 46, (74,218,0): 52, 31, 46, (74,219,0): 53, 32, 47, (74,220,0): 55, 33, 46, (74,221,0): 55, 33, 46, (74,222,0): 55, 33, 46, (74,223,0): 57, 33, 47, (74,224,0): 64, 36, 50, (74,225,0): 66, 36, 48, (74,226,0): 67, 37, 49, (74,227,0): 67, 37, 49, (74,228,0): 68, 38, 48, (74,229,0): 69, 37, 48, (74,230,0): 70, 38, 49, (74,231,0): 70, 39, 47, (74,232,0): 70, 37, 46, (74,233,0): 70, 37, 46, (74,234,0): 72, 37, 44, (74,235,0): 72, 37, 44, (74,236,0): 72, 37, 44, (74,237,0): 72, 37, 43, (74,238,0): 72, 37, 43, (74,239,0): 72, 37, 43, (74,240,0): 73, 38, 45, (74,241,0): 73, 38, 45, (74,242,0): 73, 38, 44, (74,243,0): 74, 39, 45, (74,244,0): 75, 38, 45, (74,245,0): 76, 39, 46, (74,246,0): 78, 39, 44, (74,247,0): 78, 39, 44, (74,248,0): 80, 41, 46, (74,249,0): 80, 41, 44, (74,250,0): 81, 40, 44, (74,251,0): 81, 40, 44, (74,252,0): 82, 40, 42, (74,253,0): 82, 40, 42, (74,254,0): 82, 40, 42, (74,255,0): 82, 40, 42, (74,256,0): 80, 40, 41, (74,257,0): 80, 40, 41, (74,258,0): 81, 39, 41, (74,259,0): 82, 40, 42, (74,260,0): 82, 40, 42, (74,261,0): 83, 41, 43, (74,262,0): 85, 40, 43, (74,263,0): 85, 40, 43, (74,264,0): 89, 43, 46, (74,265,0): 88, 42, 45, (74,266,0): 87, 41, 44, (74,267,0): 87, 41, 44, (74,268,0): 90, 41, 45, (74,269,0): 91, 42, 46, (74,270,0): 92, 43, 47, (74,271,0): 93, 44, 48, (74,272,0): 94, 45, 48, (74,273,0): 94, 46, 46, (74,274,0): 94, 46, 46, (74,275,0): 95, 47, 47, (74,276,0): 96, 48, 48, (74,277,0): 96, 48, 48, (74,278,0): 96, 48, 48, (74,279,0): 97, 49, 49, (74,280,0): 99, 51, 51, (74,281,0): 99, 51, 51, (74,282,0): 99, 51, 51, (74,283,0): 100, 52, 52, (74,284,0): 101, 53, 53, (74,285,0): 104, 56, 56, (74,286,0): 106, 58, 58, (74,287,0): 107, 59, 57, (74,288,0): 108, 60, 56, (74,289,0): 111, 64, 56, (74,290,0): 114, 67, 57, (74,291,0): 115, 69, 54, (74,292,0): 116, 70, 54, (74,293,0): 119, 74, 53, (74,294,0): 126, 78, 56, (74,295,0): 132, 82, 57, (74,296,0): 136, 82, 58, (74,297,0): 148, 88, 60, (74,298,0): 157, 92, 60, (74,299,0): 164, 95, 56, (74,300,0): 177, 103, 56, (74,301,0): 195, 118, 64, (74,302,0): 210, 130, 71, (74,303,0): 214, 133, 68, (74,304,0): 207, 128, 59, (74,305,0): 203, 126, 56, (74,306,0): 199, 124, 57, (74,307,0): 196, 125, 59, (74,308,0): 195, 130, 66, (74,309,0): 193, 134, 68, (74,310,0): 190, 135, 68, (74,311,0): 185, 136, 69, (74,312,0): 178, 133, 68, (74,313,0): 173, 132, 70, (74,314,0): 169, 129, 70, (74,315,0): 165, 126, 71, (74,316,0): 161, 124, 71, (74,317,0): 161, 124, 71, (74,318,0): 161, 126, 70, (74,319,0): 162, 127, 73, (74,320,0): 157, 124, 73, (74,321,0): 156, 122, 74, (74,322,0): 154, 120, 72, (74,323,0): 152, 118, 70, (74,324,0): 151, 117, 69, (74,325,0): 150, 117, 66, (74,326,0): 150, 118, 69, (74,327,0): 150, 118, 67, (74,328,0): 150, 120, 68, (74,329,0): 151, 121, 67, (74,330,0): 150, 123, 68, (74,331,0): 151, 124, 69, (74,332,0): 152, 125, 70, (74,333,0): 152, 125, 70, (74,334,0): 151, 125, 68, (74,335,0): 149, 124, 68, (74,336,0): 150, 127, 77, (74,337,0): 148, 126, 77, (74,338,0): 146, 124, 75, (74,339,0): 144, 122, 73, (74,340,0): 143, 121, 74, (74,341,0): 143, 121, 74, (74,342,0): 144, 121, 79, (74,343,0): 144, 121, 79, (74,344,0): 146, 123, 82, (74,345,0): 145, 122, 81, (74,346,0): 145, 121, 85, (74,347,0): 143, 119, 83, (74,348,0): 142, 118, 84, (74,349,0): 141, 117, 83, (74,350,0): 141, 117, 83, (74,351,0): 140, 116, 82, (74,352,0): 141, 114, 85, (74,353,0): 141, 114, 85, (74,354,0): 140, 113, 84, (74,355,0): 140, 113, 84, (74,356,0): 141, 111, 83, (74,357,0): 141, 111, 83, (74,358,0): 140, 110, 82, (74,359,0): 140, 110, 82, (74,360,0): 143, 112, 84, (74,361,0): 145, 114, 86, (74,362,0): 149, 115, 88, (74,363,0): 151, 117, 90, (74,364,0): 153, 119, 92, (74,365,0): 153, 119, 92, (74,366,0): 154, 118, 92, (74,367,0): 154, 118, 92, (74,368,0): 156, 118, 95, (74,369,0): 156, 118, 95, (74,370,0): 156, 118, 95, (74,371,0): 155, 117, 94, (74,372,0): 157, 116, 94, (74,373,0): 156, 115, 93, (74,374,0): 156, 115, 93, (74,375,0): 156, 115, 93, (74,376,0): 159, 117, 95, (74,377,0): 159, 117, 95, (74,378,0): 161, 116, 95, (74,379,0): 162, 117, 96, (74,380,0): 162, 117, 96, (74,381,0): 163, 118, 97, (74,382,0): 164, 117, 97, (74,383,0): 164, 117, 97, (74,384,0): 166, 119, 101, (74,385,0): 167, 120, 100, (74,386,0): 170, 122, 99, (74,387,0): 174, 124, 97, (74,388,0): 177, 126, 97, (74,389,0): 181, 128, 97, (74,390,0): 184, 129, 99, (74,391,0): 188, 128, 100, (74,392,0): 192, 131, 103, (74,393,0): 194, 128, 102, (74,394,0): 195, 128, 99, (74,395,0): 198, 129, 96, (74,396,0): 203, 133, 97, (74,397,0): 211, 140, 98, (74,398,0): 217, 145, 97, (74,399,0): 222, 149, 96, (74,400,0): 234, 155, 96, (74,401,0): 237, 157, 96, (74,402,0): 236, 157, 98, (74,403,0): 231, 155, 97, (74,404,0): 223, 148, 91, (74,405,0): 213, 140, 85, (74,406,0): 206, 135, 81, (74,407,0): 203, 133, 81, (74,408,0): 203, 136, 84, (74,409,0): 203, 136, 84, (74,410,0): 203, 136, 84, (74,411,0): 203, 136, 84, (74,412,0): 205, 138, 86, (74,413,0): 207, 140, 88, (74,414,0): 209, 142, 90, (74,415,0): 211, 144, 89, (74,416,0): 207, 143, 82, (74,417,0): 205, 144, 81, (74,418,0): 205, 145, 83, (74,419,0): 204, 145, 85, (74,420,0): 200, 146, 86, (74,421,0): 197, 145, 87, (74,422,0): 194, 145, 87, (74,423,0): 190, 145, 88, (74,424,0): 188, 146, 88, (74,425,0): 189, 149, 90, (74,426,0): 191, 151, 92, (74,427,0): 193, 153, 92, (74,428,0): 195, 155, 94, (74,429,0): 196, 156, 94, (74,430,0): 196, 156, 94, (74,431,0): 196, 156, 94, (74,432,0): 197, 162, 98, (74,433,0): 196, 162, 99, (74,434,0): 195, 161, 98, (74,435,0): 194, 160, 97, (74,436,0): 195, 159, 97, (74,437,0): 194, 158, 96, (74,438,0): 193, 157, 95, (74,439,0): 193, 157, 95, (74,440,0): 192, 154, 92, (74,441,0): 190, 152, 90, (74,442,0): 187, 149, 87, (74,443,0): 188, 148, 87, (74,444,0): 190, 150, 89, (74,445,0): 190, 150, 89, (74,446,0): 187, 147, 86, (74,447,0): 185, 145, 86, (74,448,0): 185, 143, 85, (74,449,0): 180, 139, 83, (74,450,0): 176, 135, 81, (74,451,0): 173, 134, 79, (74,452,0): 173, 133, 82, (74,453,0): 171, 133, 84, (74,454,0): 169, 131, 84, (74,455,0): 165, 128, 83, (74,456,0): 158, 123, 81, (74,457,0): 154, 119, 79, (74,458,0): 149, 115, 78, (74,459,0): 145, 111, 76, (74,460,0): 140, 107, 74, (74,461,0): 135, 102, 69, (74,462,0): 127, 96, 65, (74,463,0): 121, 92, 62, (74,464,0): 119, 91, 67, (74,465,0): 117, 91, 68, (74,466,0): 116, 90, 67, (74,467,0): 115, 91, 67, (74,468,0): 114, 92, 68, (74,469,0): 114, 94, 69, (74,470,0): 113, 96, 70, (74,471,0): 114, 97, 71, (74,472,0): 116, 99, 73, (74,473,0): 117, 100, 74, (74,474,0): 120, 100, 75, (74,475,0): 120, 100, 75, (74,476,0): 121, 99, 75, (74,477,0): 122, 98, 74, (74,478,0): 122, 96, 73, (74,479,0): 120, 95, 73, (74,480,0): 115, 93, 72, (74,481,0): 113, 92, 71, (74,482,0): 114, 92, 71, (74,483,0): 113, 91, 70, (74,484,0): 114, 89, 69, (74,485,0): 114, 87, 68, (74,486,0): 114, 85, 69, (74,487,0): 114, 85, 69, (74,488,0): 112, 83, 69, (74,489,0): 108, 80, 66, (74,490,0): 104, 76, 64, (74,491,0): 102, 76, 63, (74,492,0): 101, 78, 64, (74,493,0): 101, 79, 65, (74,494,0): 102, 80, 66, (74,495,0): 101, 79, 65, (74,496,0): 107, 84, 68, (74,497,0): 108, 85, 69, (74,498,0): 111, 88, 72, (74,499,0): 113, 90, 74, (74,500,0): 114, 93, 76, (74,501,0): 115, 94, 77, (74,502,0): 116, 95, 78, (74,503,0): 116, 95, 78, (74,504,0): 113, 94, 77, (74,505,0): 113, 94, 77, (74,506,0): 112, 95, 77, (74,507,0): 112, 95, 77, (74,508,0): 112, 95, 77, (74,509,0): 112, 95, 77, (74,510,0): 111, 96, 77, (74,511,0): 112, 95, 77, (74,512,0): 115, 97, 77, (74,513,0): 116, 95, 76, (74,514,0): 114, 93, 74, (74,515,0): 113, 92, 73, (74,516,0): 110, 91, 74, (74,517,0): 109, 90, 73, (74,518,0): 109, 90, 73, (74,519,0): 110, 91, 74, (74,520,0): 105, 88, 72, (74,521,0): 105, 88, 72, (74,522,0): 105, 87, 73, (74,523,0): 103, 87, 72, (74,524,0): 103, 87, 72, (74,525,0): 102, 86, 71, (74,526,0): 102, 86, 73, (74,527,0): 101, 85, 72, (74,528,0): 102, 84, 72, (74,529,0): 103, 85, 73, (74,530,0): 103, 85, 71, (74,531,0): 104, 86, 72, (74,532,0): 105, 86, 72, (74,533,0): 106, 87, 73, (74,534,0): 108, 86, 72, (74,535,0): 108, 86, 72, (74,536,0): 108, 87, 70, (74,537,0): 110, 89, 72, (74,538,0): 112, 89, 73, (74,539,0): 114, 91, 75, (74,540,0): 118, 92, 75, (74,541,0): 119, 93, 76, (74,542,0): 119, 93, 76, (74,543,0): 119, 92, 73, (74,544,0): 124, 94, 70, (74,545,0): 126, 95, 67, (74,546,0): 126, 96, 68, (74,547,0): 127, 97, 69, (74,548,0): 127, 97, 71, (74,549,0): 125, 98, 71, (74,550,0): 124, 97, 70, (74,551,0): 123, 96, 69, (74,552,0): 119, 93, 68, (74,553,0): 119, 93, 68, (74,554,0): 118, 92, 69, (74,555,0): 116, 92, 68, (74,556,0): 114, 90, 66, (74,557,0): 113, 89, 65, (74,558,0): 112, 87, 65, (74,559,0): 112, 87, 67, (74,560,0): 112, 86, 71, (74,561,0): 110, 84, 71, (74,562,0): 106, 79, 68, (74,563,0): 101, 74, 63, (74,564,0): 97, 70, 59, (74,565,0): 92, 68, 56, (74,566,0): 90, 66, 54, (74,567,0): 88, 66, 53, (74,568,0): 91, 69, 58, (74,569,0): 90, 68, 57, (74,570,0): 86, 66, 57, (74,571,0): 84, 64, 55, (74,572,0): 83, 63, 54, (74,573,0): 83, 63, 54, (74,574,0): 84, 64, 57, (74,575,0): 84, 64, 57, (74,576,0): 77, 58, 52, (74,577,0): 78, 59, 53, (74,578,0): 78, 59, 55, (74,579,0): 77, 58, 52, (74,580,0): 76, 57, 53, (74,581,0): 74, 55, 49, (74,582,0): 72, 53, 49, (74,583,0): 71, 52, 46, (74,584,0): 74, 55, 51, (74,585,0): 75, 56, 50, (74,586,0): 75, 56, 52, (74,587,0): 76, 57, 51, (74,588,0): 77, 58, 54, (74,589,0): 78, 59, 53, (74,590,0): 79, 60, 56, (74,591,0): 79, 60, 54, (74,592,0): 80, 56, 52, (74,593,0): 79, 55, 51, (74,594,0): 78, 54, 50, (74,595,0): 77, 53, 49, (74,596,0): 76, 52, 48, (74,597,0): 75, 51, 47, (74,598,0): 74, 50, 46, (74,599,0): 74, 50, 46, (75,0,0): 32, 28, 43, (75,1,0): 32, 28, 43, (75,2,0): 34, 28, 42, (75,3,0): 35, 29, 43, (75,4,0): 36, 30, 44, (75,5,0): 36, 30, 44, (75,6,0): 37, 29, 42, (75,7,0): 38, 30, 43, (75,8,0): 40, 30, 41, (75,9,0): 40, 30, 41, (75,10,0): 40, 30, 41, (75,11,0): 40, 30, 41, (75,12,0): 41, 29, 39, (75,13,0): 41, 29, 39, (75,14,0): 41, 29, 39, (75,15,0): 41, 29, 39, (75,16,0): 41, 29, 39, (75,17,0): 41, 29, 39, (75,18,0): 41, 29, 39, (75,19,0): 41, 29, 39, (75,20,0): 41, 29, 39, (75,21,0): 41, 29, 39, (75,22,0): 42, 29, 39, (75,23,0): 42, 29, 39, (75,24,0): 46, 30, 41, (75,25,0): 46, 30, 41, (75,26,0): 46, 28, 40, (75,27,0): 46, 28, 40, (75,28,0): 46, 28, 40, (75,29,0): 48, 30, 42, (75,30,0): 49, 31, 43, (75,31,0): 50, 32, 44, (75,32,0): 50, 32, 44, (75,33,0): 50, 32, 44, (75,34,0): 50, 32, 44, (75,35,0): 50, 32, 44, (75,36,0): 50, 32, 44, (75,37,0): 50, 32, 44, (75,38,0): 50, 32, 44, (75,39,0): 50, 32, 44, (75,40,0): 50, 32, 44, (75,41,0): 50, 32, 44, (75,42,0): 50, 32, 44, (75,43,0): 50, 32, 44, (75,44,0): 51, 33, 45, (75,45,0): 51, 33, 45, (75,46,0): 51, 33, 45, (75,47,0): 51, 33, 45, (75,48,0): 52, 34, 46, (75,49,0): 51, 33, 45, (75,50,0): 50, 32, 44, (75,51,0): 49, 31, 43, (75,52,0): 49, 31, 43, (75,53,0): 50, 32, 44, (75,54,0): 51, 33, 45, (75,55,0): 52, 34, 46, (75,56,0): 52, 34, 46, (75,57,0): 52, 34, 46, (75,58,0): 51, 33, 45, (75,59,0): 50, 32, 44, (75,60,0): 49, 31, 43, (75,61,0): 48, 30, 42, (75,62,0): 47, 29, 41, (75,63,0): 46, 30, 41, (75,64,0): 42, 28, 43, (75,65,0): 41, 27, 42, (75,66,0): 40, 28, 42, (75,67,0): 40, 28, 42, (75,68,0): 39, 27, 41, (75,69,0): 38, 26, 40, (75,70,0): 37, 26, 42, (75,71,0): 37, 26, 42, (75,72,0): 34, 25, 42, (75,73,0): 34, 25, 42, (75,74,0): 34, 25, 44, (75,75,0): 33, 24, 43, (75,76,0): 32, 25, 43, (75,77,0): 31, 24, 42, (75,78,0): 31, 24, 42, (75,79,0): 31, 24, 42, (75,80,0): 32, 23, 42, (75,81,0): 31, 22, 41, (75,82,0): 31, 22, 41, (75,83,0): 31, 22, 41, (75,84,0): 30, 21, 40, (75,85,0): 29, 20, 39, (75,86,0): 29, 20, 39, (75,87,0): 29, 20, 39, (75,88,0): 27, 18, 37, (75,89,0): 27, 18, 37, (75,90,0): 27, 18, 37, (75,91,0): 27, 18, 37, (75,92,0): 27, 18, 37, (75,93,0): 27, 18, 37, (75,94,0): 27, 18, 37, (75,95,0): 27, 18, 37, (75,96,0): 31, 19, 43, (75,97,0): 31, 19, 43, (75,98,0): 29, 19, 43, (75,99,0): 29, 19, 43, (75,100,0): 29, 19, 43, (75,101,0): 29, 19, 43, (75,102,0): 28, 20, 43, (75,103,0): 28, 20, 43, (75,104,0): 24, 19, 41, (75,105,0): 24, 19, 41, (75,106,0): 24, 19, 41, (75,107,0): 23, 18, 40, (75,108,0): 22, 19, 40, (75,109,0): 21, 18, 39, (75,110,0): 21, 18, 39, (75,111,0): 20, 17, 38, (75,112,0): 22, 19, 40, (75,113,0): 22, 19, 40, (75,114,0): 22, 19, 40, (75,115,0): 22, 19, 40, (75,116,0): 22, 19, 40, (75,117,0): 22, 19, 40, (75,118,0): 22, 19, 40, (75,119,0): 22, 19, 40, (75,120,0): 23, 20, 41, (75,121,0): 23, 20, 41, (75,122,0): 22, 19, 40, (75,123,0): 22, 19, 40, (75,124,0): 21, 18, 39, (75,125,0): 21, 18, 39, (75,126,0): 20, 17, 38, (75,127,0): 20, 17, 38, (75,128,0): 25, 17, 40, (75,129,0): 25, 17, 40, (75,130,0): 25, 17, 40, (75,131,0): 25, 17, 40, (75,132,0): 25, 17, 40, (75,133,0): 25, 17, 40, (75,134,0): 25, 17, 40, (75,135,0): 25, 17, 40, (75,136,0): 24, 16, 39, (75,137,0): 24, 16, 39, (75,138,0): 24, 16, 39, (75,139,0): 24, 16, 39, (75,140,0): 24, 16, 39, (75,141,0): 24, 16, 39, (75,142,0): 24, 16, 39, (75,143,0): 24, 16, 37, (75,144,0): 27, 18, 39, (75,145,0): 27, 18, 37, (75,146,0): 27, 18, 37, (75,147,0): 28, 19, 38, (75,148,0): 28, 19, 38, (75,149,0): 29, 20, 39, (75,150,0): 29, 20, 39, (75,151,0): 29, 20, 39, (75,152,0): 30, 21, 40, (75,153,0): 30, 21, 40, (75,154,0): 30, 21, 40, (75,155,0): 30, 21, 40, (75,156,0): 30, 21, 40, (75,157,0): 30, 21, 40, (75,158,0): 30, 21, 40, (75,159,0): 30, 21, 40, (75,160,0): 32, 25, 43, (75,161,0): 32, 25, 43, (75,162,0): 32, 25, 43, (75,163,0): 32, 25, 43, (75,164,0): 32, 25, 43, (75,165,0): 32, 25, 43, (75,166,0): 32, 25, 43, (75,167,0): 32, 25, 43, (75,168,0): 32, 25, 43, (75,169,0): 32, 25, 43, (75,170,0): 32, 25, 43, (75,171,0): 32, 25, 43, (75,172,0): 32, 25, 43, (75,173,0): 32, 25, 43, (75,174,0): 32, 25, 43, (75,175,0): 32, 25, 43, (75,176,0): 32, 24, 47, (75,177,0): 33, 25, 48, (75,178,0): 33, 25, 48, (75,179,0): 34, 26, 49, (75,180,0): 34, 26, 49, (75,181,0): 35, 27, 50, (75,182,0): 35, 27, 50, (75,183,0): 35, 27, 50, (75,184,0): 34, 26, 49, (75,185,0): 34, 26, 49, (75,186,0): 34, 26, 49, (75,187,0): 34, 26, 49, (75,188,0): 34, 26, 49, (75,189,0): 34, 26, 49, (75,190,0): 34, 26, 49, (75,191,0): 34, 26, 47, (75,192,0): 35, 26, 47, (75,193,0): 35, 26, 45, (75,194,0): 35, 26, 45, (75,195,0): 36, 27, 46, (75,196,0): 36, 27, 46, (75,197,0): 37, 28, 47, (75,198,0): 37, 28, 47, (75,199,0): 37, 28, 47, (75,200,0): 36, 27, 46, (75,201,0): 36, 27, 46, (75,202,0): 37, 28, 47, (75,203,0): 38, 29, 48, (75,204,0): 38, 29, 48, (75,205,0): 38, 29, 48, (75,206,0): 39, 30, 49, (75,207,0): 40, 28, 48, (75,208,0): 42, 29, 47, (75,209,0): 43, 28, 47, (75,210,0): 45, 28, 46, (75,211,0): 46, 29, 47, (75,212,0): 46, 29, 47, (75,213,0): 47, 30, 48, (75,214,0): 48, 30, 46, (75,215,0): 49, 31, 47, (75,216,0): 51, 30, 45, (75,217,0): 52, 31, 46, (75,218,0): 52, 31, 46, (75,219,0): 53, 32, 47, (75,220,0): 54, 32, 45, (75,221,0): 55, 33, 46, (75,222,0): 55, 33, 46, (75,223,0): 56, 32, 45, (75,224,0): 64, 36, 48, (75,225,0): 64, 36, 48, (75,226,0): 67, 37, 49, (75,227,0): 67, 37, 47, (75,228,0): 68, 38, 48, (75,229,0): 68, 38, 48, (75,230,0): 69, 39, 47, (75,231,0): 70, 39, 47, (75,232,0): 68, 37, 45, (75,233,0): 69, 36, 43, (75,234,0): 69, 36, 43, (75,235,0): 69, 36, 43, (75,236,0): 71, 36, 42, (75,237,0): 71, 36, 42, (75,238,0): 71, 36, 42, (75,239,0): 71, 36, 42, (75,240,0): 73, 38, 45, (75,241,0): 73, 38, 45, (75,242,0): 73, 38, 44, (75,243,0): 74, 39, 45, (75,244,0): 75, 38, 45, (75,245,0): 76, 39, 46, (75,246,0): 78, 39, 44, (75,247,0): 78, 39, 44, (75,248,0): 80, 41, 44, (75,249,0): 80, 41, 44, (75,250,0): 81, 40, 44, (75,251,0): 81, 40, 44, (75,252,0): 82, 40, 42, (75,253,0): 82, 40, 42, (75,254,0): 82, 40, 42, (75,255,0): 82, 40, 42, (75,256,0): 80, 40, 41, (75,257,0): 80, 40, 41, (75,258,0): 81, 39, 41, (75,259,0): 82, 40, 42, (75,260,0): 82, 40, 42, (75,261,0): 83, 41, 43, (75,262,0): 85, 40, 43, (75,263,0): 85, 40, 43, (75,264,0): 88, 42, 45, (75,265,0): 88, 42, 45, (75,266,0): 87, 41, 44, (75,267,0): 87, 41, 44, (75,268,0): 89, 40, 44, (75,269,0): 91, 42, 46, (75,270,0): 92, 43, 47, (75,271,0): 93, 44, 47, (75,272,0): 93, 44, 47, (75,273,0): 94, 46, 46, (75,274,0): 94, 46, 46, (75,275,0): 95, 47, 47, (75,276,0): 95, 47, 47, (75,277,0): 96, 48, 48, (75,278,0): 96, 48, 48, (75,279,0): 96, 48, 48, (75,280,0): 99, 51, 51, (75,281,0): 99, 51, 51, (75,282,0): 99, 51, 51, (75,283,0): 100, 52, 52, (75,284,0): 102, 54, 54, (75,285,0): 104, 56, 56, (75,286,0): 106, 58, 58, (75,287,0): 108, 60, 58, (75,288,0): 108, 60, 56, (75,289,0): 111, 64, 56, (75,290,0): 114, 67, 57, (75,291,0): 115, 69, 54, (75,292,0): 116, 70, 54, (75,293,0): 119, 74, 53, (75,294,0): 125, 79, 56, (75,295,0): 132, 82, 59, (75,296,0): 137, 83, 57, (75,297,0): 149, 89, 61, (75,298,0): 159, 94, 62, (75,299,0): 169, 97, 57, (75,300,0): 182, 106, 57, (75,301,0): 201, 120, 65, (75,302,0): 214, 130, 68, (75,303,0): 215, 132, 66, (75,304,0): 200, 123, 55, (75,305,0): 194, 121, 53, (75,306,0): 190, 119, 55, (75,307,0): 189, 121, 58, (75,308,0): 187, 125, 64, (75,309,0): 187, 129, 66, (75,310,0): 184, 130, 66, (75,311,0): 180, 130, 67, (75,312,0): 174, 128, 66, (75,313,0): 169, 127, 69, (75,314,0): 164, 123, 71, (75,315,0): 160, 120, 71, (75,316,0): 156, 118, 71, (75,317,0): 156, 118, 71, (75,318,0): 156, 120, 70, (75,319,0): 157, 121, 71, (75,320,0): 153, 119, 73, (75,321,0): 152, 118, 73, (75,322,0): 150, 116, 71, (75,323,0): 149, 115, 69, (75,324,0): 148, 114, 68, (75,325,0): 148, 114, 68, (75,326,0): 148, 116, 69, (75,327,0): 148, 116, 67, (75,328,0): 150, 120, 70, (75,329,0): 151, 121, 69, (75,330,0): 150, 123, 70, (75,331,0): 152, 125, 70, (75,332,0): 152, 125, 70, (75,333,0): 152, 125, 70, (75,334,0): 151, 124, 69, (75,335,0): 150, 125, 71, (75,336,0): 149, 126, 76, (75,337,0): 147, 125, 76, (75,338,0): 146, 124, 75, (75,339,0): 145, 123, 74, (75,340,0): 144, 122, 75, (75,341,0): 145, 123, 76, (75,342,0): 146, 123, 81, (75,343,0): 146, 123, 81, (75,344,0): 147, 124, 83, (75,345,0): 146, 123, 82, (75,346,0): 146, 122, 86, (75,347,0): 144, 120, 84, (75,348,0): 143, 119, 85, (75,349,0): 142, 118, 84, (75,350,0): 142, 118, 84, (75,351,0): 141, 117, 83, (75,352,0): 142, 115, 86, (75,353,0): 142, 115, 86, (75,354,0): 141, 114, 85, (75,355,0): 141, 114, 85, (75,356,0): 142, 112, 84, (75,357,0): 142, 112, 84, (75,358,0): 141, 111, 83, (75,359,0): 141, 111, 83, (75,360,0): 144, 113, 85, (75,361,0): 145, 114, 86, (75,362,0): 149, 115, 88, (75,363,0): 151, 117, 90, (75,364,0): 152, 118, 91, (75,365,0): 153, 119, 92, (75,366,0): 154, 118, 92, (75,367,0): 153, 117, 91, (75,368,0): 155, 117, 94, (75,369,0): 155, 117, 94, (75,370,0): 154, 116, 93, (75,371,0): 154, 116, 93, (75,372,0): 156, 115, 93, (75,373,0): 156, 115, 93, (75,374,0): 156, 115, 93, (75,375,0): 156, 115, 93, (75,376,0): 160, 118, 96, (75,377,0): 160, 118, 96, (75,378,0): 162, 117, 96, (75,379,0): 163, 118, 97, (75,380,0): 163, 118, 97, (75,381,0): 164, 119, 98, (75,382,0): 165, 118, 98, (75,383,0): 165, 118, 98, (75,384,0): 166, 119, 101, (75,385,0): 167, 120, 100, (75,386,0): 170, 122, 99, (75,387,0): 173, 126, 98, (75,388,0): 177, 128, 98, (75,389,0): 183, 130, 99, (75,390,0): 185, 130, 100, (75,391,0): 189, 129, 101, (75,392,0): 193, 132, 103, (75,393,0): 196, 131, 101, (75,394,0): 196, 130, 98, (75,395,0): 201, 131, 95, (75,396,0): 209, 138, 96, (75,397,0): 216, 146, 97, (75,398,0): 225, 154, 100, (75,399,0): 233, 158, 100, (75,400,0): 241, 161, 100, (75,401,0): 242, 161, 98, (75,402,0): 238, 158, 99, (75,403,0): 232, 153, 96, (75,404,0): 224, 147, 91, (75,405,0): 217, 142, 87, (75,406,0): 210, 137, 84, (75,407,0): 207, 136, 84, (75,408,0): 204, 134, 83, (75,409,0): 204, 134, 83, (75,410,0): 205, 135, 84, (75,411,0): 207, 137, 85, (75,412,0): 211, 140, 88, (75,413,0): 214, 143, 89, (75,414,0): 217, 146, 92, (75,415,0): 219, 148, 92, (75,416,0): 214, 149, 85, (75,417,0): 213, 149, 85, (75,418,0): 212, 151, 88, (75,419,0): 211, 151, 89, (75,420,0): 207, 151, 90, (75,421,0): 204, 150, 90, (75,422,0): 199, 149, 90, (75,423,0): 195, 149, 90, (75,424,0): 196, 151, 92, (75,425,0): 194, 152, 92, (75,426,0): 195, 153, 93, (75,427,0): 196, 155, 93, (75,428,0): 197, 156, 94, (75,429,0): 197, 156, 92, (75,430,0): 197, 156, 92, (75,431,0): 196, 157, 92, (75,432,0): 195, 159, 97, (75,433,0): 194, 160, 97, (75,434,0): 194, 160, 99, (75,435,0): 194, 160, 97, (75,436,0): 195, 159, 97, (75,437,0): 195, 159, 97, (75,438,0): 195, 159, 97, (75,439,0): 195, 159, 97, (75,440,0): 193, 155, 92, (75,441,0): 192, 154, 91, (75,442,0): 191, 151, 89, (75,443,0): 192, 153, 88, (75,444,0): 194, 155, 90, (75,445,0): 196, 155, 91, (75,446,0): 193, 152, 88, (75,447,0): 190, 149, 85, (75,448,0): 189, 147, 87, (75,449,0): 185, 143, 85, (75,450,0): 180, 138, 80, (75,451,0): 177, 136, 80, (75,452,0): 177, 136, 84, (75,453,0): 175, 135, 84, (75,454,0): 173, 133, 84, (75,455,0): 168, 130, 83, (75,456,0): 161, 124, 80, (75,457,0): 155, 120, 80, (75,458,0): 147, 113, 75, (75,459,0): 142, 108, 71, (75,460,0): 138, 105, 72, (75,461,0): 134, 101, 68, (75,462,0): 126, 95, 64, (75,463,0): 121, 92, 62, (75,464,0): 120, 92, 68, (75,465,0): 118, 94, 70, (75,466,0): 117, 93, 69, (75,467,0): 114, 92, 68, (75,468,0): 113, 93, 68, (75,469,0): 114, 94, 69, (75,470,0): 113, 96, 70, (75,471,0): 114, 97, 71, (75,472,0): 115, 98, 72, (75,473,0): 116, 99, 73, (75,474,0): 119, 99, 74, (75,475,0): 121, 99, 75, (75,476,0): 124, 100, 76, (75,477,0): 123, 99, 75, (75,478,0): 123, 97, 74, (75,479,0): 122, 98, 74, (75,480,0): 115, 93, 70, (75,481,0): 113, 92, 71, (75,482,0): 114, 92, 71, (75,483,0): 115, 90, 70, (75,484,0): 115, 88, 69, (75,485,0): 115, 88, 69, (75,486,0): 115, 86, 70, (75,487,0): 115, 86, 70, (75,488,0): 112, 83, 69, (75,489,0): 110, 81, 67, (75,490,0): 107, 77, 66, (75,491,0): 105, 77, 65, (75,492,0): 103, 77, 64, (75,493,0): 102, 79, 65, (75,494,0): 102, 79, 65, (75,495,0): 101, 79, 65, (75,496,0): 106, 83, 67, (75,497,0): 108, 85, 69, (75,498,0): 111, 88, 72, (75,499,0): 114, 91, 75, (75,500,0): 115, 94, 77, (75,501,0): 117, 96, 79, (75,502,0): 118, 97, 80, (75,503,0): 118, 97, 80, (75,504,0): 113, 94, 77, (75,505,0): 113, 94, 77, (75,506,0): 112, 95, 77, (75,507,0): 112, 95, 77, (75,508,0): 112, 95, 77, (75,509,0): 112, 95, 77, (75,510,0): 111, 96, 77, (75,511,0): 112, 95, 77, (75,512,0): 115, 97, 77, (75,513,0): 116, 95, 76, (75,514,0): 115, 94, 75, (75,515,0): 114, 93, 74, (75,516,0): 111, 92, 75, (75,517,0): 110, 91, 74, (75,518,0): 109, 90, 73, (75,519,0): 108, 91, 73, (75,520,0): 105, 88, 72, (75,521,0): 103, 87, 71, (75,522,0): 103, 87, 72, (75,523,0): 103, 87, 72, (75,524,0): 102, 86, 71, (75,525,0): 99, 86, 70, (75,526,0): 99, 85, 72, (75,527,0): 99, 85, 72, (75,528,0): 101, 85, 72, (75,529,0): 102, 84, 72, (75,530,0): 102, 84, 70, (75,531,0): 103, 85, 71, (75,532,0): 105, 86, 72, (75,533,0): 105, 86, 72, (75,534,0): 107, 85, 71, (75,535,0): 108, 86, 72, (75,536,0): 106, 85, 68, (75,537,0): 107, 86, 69, (75,538,0): 110, 87, 71, (75,539,0): 112, 89, 73, (75,540,0): 116, 90, 73, (75,541,0): 117, 91, 74, (75,542,0): 118, 92, 75, (75,543,0): 120, 93, 72, (75,544,0): 128, 98, 74, (75,545,0): 129, 98, 70, (75,546,0): 129, 99, 71, (75,547,0): 129, 99, 71, (75,548,0): 129, 99, 73, (75,549,0): 127, 97, 71, (75,550,0): 124, 97, 70, (75,551,0): 123, 96, 69, (75,552,0): 119, 91, 67, (75,553,0): 118, 92, 67, (75,554,0): 118, 92, 69, (75,555,0): 117, 91, 68, (75,556,0): 116, 92, 68, (75,557,0): 115, 91, 67, (75,558,0): 115, 90, 68, (75,559,0): 115, 90, 70, (75,560,0): 116, 90, 75, (75,561,0): 114, 88, 75, (75,562,0): 110, 84, 71, (75,563,0): 105, 79, 66, (75,564,0): 101, 74, 63, (75,565,0): 98, 71, 60, (75,566,0): 94, 70, 58, (75,567,0): 93, 69, 57, (75,568,0): 91, 69, 58, (75,569,0): 90, 68, 57, (75,570,0): 88, 65, 57, (75,571,0): 85, 65, 56, (75,572,0): 84, 64, 55, (75,573,0): 84, 64, 55, (75,574,0): 85, 65, 58, (75,575,0): 85, 64, 59, (75,576,0): 78, 59, 55, (75,577,0): 78, 58, 57, (75,578,0): 78, 58, 57, (75,579,0): 77, 57, 56, (75,580,0): 75, 55, 54, (75,581,0): 72, 52, 51, (75,582,0): 70, 50, 49, (75,583,0): 68, 48, 47, (75,584,0): 71, 51, 50, (75,585,0): 72, 52, 51, (75,586,0): 73, 53, 52, (75,587,0): 75, 55, 54, (75,588,0): 76, 56, 55, (75,589,0): 78, 58, 57, (75,590,0): 79, 59, 58, (75,591,0): 81, 60, 57, (75,592,0): 78, 54, 50, (75,593,0): 78, 54, 50, (75,594,0): 77, 53, 49, (75,595,0): 76, 52, 48, (75,596,0): 75, 51, 47, (75,597,0): 74, 50, 46, (75,598,0): 73, 49, 45, (75,599,0): 73, 49, 45, (76,0,0): 31, 27, 42, (76,1,0): 32, 28, 43, (76,2,0): 34, 28, 42, (76,3,0): 34, 28, 42, (76,4,0): 35, 29, 43, (76,5,0): 36, 30, 44, (76,6,0): 37, 29, 42, (76,7,0): 37, 29, 42, (76,8,0): 40, 30, 41, (76,9,0): 40, 30, 41, (76,10,0): 40, 30, 41, (76,11,0): 40, 30, 41, (76,12,0): 41, 29, 39, (76,13,0): 41, 29, 39, (76,14,0): 41, 29, 39, (76,15,0): 41, 29, 39, (76,16,0): 41, 29, 39, (76,17,0): 41, 29, 39, (76,18,0): 41, 29, 39, (76,19,0): 41, 29, 39, (76,20,0): 41, 29, 39, (76,21,0): 41, 29, 39, (76,22,0): 42, 29, 39, (76,23,0): 42, 29, 39, (76,24,0): 46, 30, 41, (76,25,0): 46, 30, 41, (76,26,0): 46, 28, 40, (76,27,0): 46, 28, 40, (76,28,0): 46, 28, 40, (76,29,0): 48, 30, 42, (76,30,0): 49, 31, 43, (76,31,0): 50, 32, 44, (76,32,0): 51, 33, 45, (76,33,0): 51, 33, 45, (76,34,0): 51, 33, 45, (76,35,0): 51, 33, 45, (76,36,0): 51, 33, 45, (76,37,0): 51, 33, 45, (76,38,0): 51, 33, 45, (76,39,0): 51, 33, 45, (76,40,0): 51, 33, 45, (76,41,0): 51, 33, 45, (76,42,0): 51, 33, 45, (76,43,0): 51, 33, 45, (76,44,0): 50, 32, 44, (76,45,0): 50, 32, 44, (76,46,0): 50, 32, 44, (76,47,0): 50, 32, 44, (76,48,0): 52, 34, 46, (76,49,0): 51, 33, 45, (76,50,0): 50, 32, 44, (76,51,0): 49, 31, 43, (76,52,0): 49, 31, 43, (76,53,0): 50, 32, 44, (76,54,0): 51, 33, 45, (76,55,0): 52, 34, 46, (76,56,0): 51, 33, 45, (76,57,0): 51, 33, 45, (76,58,0): 50, 32, 44, (76,59,0): 49, 31, 43, (76,60,0): 48, 30, 42, (76,61,0): 47, 29, 41, (76,62,0): 46, 28, 40, (76,63,0): 45, 29, 40, (76,64,0): 41, 27, 42, (76,65,0): 40, 28, 42, (76,66,0): 40, 28, 42, (76,67,0): 39, 27, 41, (76,68,0): 37, 26, 40, (76,69,0): 37, 26, 40, (76,70,0): 37, 26, 42, (76,71,0): 36, 25, 41, (76,72,0): 34, 25, 42, (76,73,0): 34, 25, 42, (76,74,0): 33, 26, 44, (76,75,0): 32, 25, 43, (76,76,0): 32, 25, 43, (76,77,0): 31, 24, 42, (76,78,0): 29, 25, 42, (76,79,0): 31, 24, 42, (76,80,0): 31, 22, 41, (76,81,0): 31, 22, 41, (76,82,0): 31, 22, 41, (76,83,0): 30, 21, 40, (76,84,0): 29, 20, 39, (76,85,0): 29, 20, 39, (76,86,0): 29, 20, 39, (76,87,0): 28, 19, 38, (76,88,0): 27, 18, 37, (76,89,0): 27, 18, 37, (76,90,0): 27, 18, 37, (76,91,0): 27, 18, 37, (76,92,0): 27, 18, 37, (76,93,0): 27, 18, 37, (76,94,0): 27, 18, 37, (76,95,0): 27, 18, 37, (76,96,0): 30, 18, 42, (76,97,0): 30, 18, 42, (76,98,0): 28, 18, 42, (76,99,0): 28, 18, 42, (76,100,0): 28, 18, 42, (76,101,0): 28, 18, 42, (76,102,0): 27, 19, 42, (76,103,0): 27, 19, 42, (76,104,0): 24, 19, 41, (76,105,0): 23, 18, 40, (76,106,0): 23, 18, 40, (76,107,0): 22, 17, 39, (76,108,0): 21, 18, 39, (76,109,0): 20, 17, 38, (76,110,0): 20, 17, 38, (76,111,0): 20, 17, 38, (76,112,0): 22, 19, 40, (76,113,0): 22, 19, 40, (76,114,0): 22, 19, 40, (76,115,0): 22, 19, 40, (76,116,0): 22, 19, 40, (76,117,0): 22, 19, 40, (76,118,0): 22, 19, 40, (76,119,0): 22, 19, 40, (76,120,0): 23, 20, 41, (76,121,0): 23, 20, 41, (76,122,0): 22, 19, 40, (76,123,0): 22, 19, 40, (76,124,0): 21, 18, 39, (76,125,0): 21, 18, 39, (76,126,0): 20, 17, 38, (76,127,0): 20, 17, 38, (76,128,0): 25, 17, 40, (76,129,0): 25, 17, 40, (76,130,0): 25, 17, 40, (76,131,0): 25, 17, 40, (76,132,0): 25, 17, 40, (76,133,0): 25, 17, 40, (76,134,0): 25, 17, 40, (76,135,0): 25, 17, 40, (76,136,0): 25, 17, 40, (76,137,0): 25, 17, 40, (76,138,0): 25, 17, 40, (76,139,0): 25, 17, 40, (76,140,0): 25, 17, 40, (76,141,0): 25, 17, 40, (76,142,0): 25, 17, 40, (76,143,0): 25, 17, 38, (76,144,0): 28, 19, 40, (76,145,0): 28, 19, 38, (76,146,0): 28, 19, 38, (76,147,0): 29, 20, 39, (76,148,0): 29, 20, 39, (76,149,0): 30, 21, 40, (76,150,0): 30, 21, 40, (76,151,0): 30, 21, 40, (76,152,0): 30, 21, 40, (76,153,0): 30, 21, 40, (76,154,0): 30, 21, 40, (76,155,0): 30, 21, 40, (76,156,0): 30, 21, 40, (76,157,0): 30, 21, 40, (76,158,0): 30, 21, 40, (76,159,0): 30, 21, 40, (76,160,0): 32, 25, 43, (76,161,0): 32, 25, 43, (76,162,0): 32, 25, 43, (76,163,0): 32, 25, 43, (76,164,0): 32, 25, 43, (76,165,0): 32, 25, 43, (76,166,0): 32, 25, 43, (76,167,0): 32, 25, 43, (76,168,0): 32, 25, 43, (76,169,0): 32, 25, 43, (76,170,0): 32, 25, 43, (76,171,0): 32, 25, 43, (76,172,0): 32, 25, 43, (76,173,0): 32, 25, 43, (76,174,0): 32, 25, 43, (76,175,0): 32, 25, 43, (76,176,0): 32, 24, 47, (76,177,0): 32, 24, 47, (76,178,0): 32, 24, 47, (76,179,0): 33, 25, 48, (76,180,0): 33, 25, 48, (76,181,0): 34, 26, 49, (76,182,0): 34, 26, 49, (76,183,0): 35, 27, 50, (76,184,0): 33, 25, 48, (76,185,0): 33, 25, 48, (76,186,0): 33, 25, 48, (76,187,0): 33, 25, 48, (76,188,0): 33, 25, 48, (76,189,0): 33, 25, 48, (76,190,0): 33, 25, 48, (76,191,0): 33, 25, 46, (76,192,0): 35, 26, 47, (76,193,0): 35, 26, 45, (76,194,0): 35, 26, 45, (76,195,0): 36, 27, 46, (76,196,0): 36, 27, 46, (76,197,0): 37, 28, 47, (76,198,0): 37, 28, 47, (76,199,0): 37, 28, 47, (76,200,0): 37, 28, 47, (76,201,0): 36, 27, 46, (76,202,0): 37, 28, 47, (76,203,0): 37, 28, 47, (76,204,0): 37, 28, 47, (76,205,0): 38, 29, 48, (76,206,0): 39, 30, 49, (76,207,0): 41, 29, 49, (76,208,0): 42, 29, 47, (76,209,0): 44, 29, 48, (76,210,0): 46, 29, 47, (76,211,0): 47, 30, 48, (76,212,0): 47, 30, 48, (76,213,0): 48, 31, 49, (76,214,0): 49, 31, 47, (76,215,0): 49, 31, 47, (76,216,0): 51, 30, 45, (76,217,0): 51, 30, 45, (76,218,0): 51, 30, 45, (76,219,0): 52, 31, 46, (76,220,0): 53, 31, 44, (76,221,0): 54, 32, 45, (76,222,0): 54, 32, 45, (76,223,0): 56, 32, 45, (76,224,0): 62, 36, 47, (76,225,0): 62, 36, 45, (76,226,0): 63, 36, 45, (76,227,0): 64, 37, 46, (76,228,0): 65, 38, 47, (76,229,0): 65, 38, 45, (76,230,0): 65, 38, 45, (76,231,0): 68, 38, 46, (76,232,0): 67, 38, 43, (76,233,0): 68, 37, 43, (76,234,0): 68, 37, 43, (76,235,0): 68, 37, 42, (76,236,0): 69, 37, 42, (76,237,0): 69, 37, 42, (76,238,0): 69, 37, 40, (76,239,0): 71, 36, 40, (76,240,0): 73, 38, 44, (76,241,0): 74, 37, 44, (76,242,0): 74, 37, 44, (76,243,0): 75, 38, 45, (76,244,0): 75, 39, 43, (76,245,0): 76, 40, 44, (76,246,0): 78, 39, 44, (76,247,0): 78, 39, 44, (76,248,0): 81, 40, 44, (76,249,0): 81, 40, 44, (76,250,0): 82, 40, 42, (76,251,0): 82, 40, 42, (76,252,0): 82, 40, 42, (76,253,0): 82, 40, 42, (76,254,0): 82, 40, 41, (76,255,0): 82, 40, 41, (76,256,0): 81, 39, 41, (76,257,0): 81, 39, 41, (76,258,0): 81, 39, 41, (76,259,0): 82, 40, 42, (76,260,0): 84, 39, 42, (76,261,0): 85, 40, 43, (76,262,0): 85, 40, 43, (76,263,0): 85, 40, 43, (76,264,0): 88, 42, 45, (76,265,0): 87, 41, 44, (76,266,0): 88, 39, 43, (76,267,0): 88, 39, 43, (76,268,0): 89, 40, 44, (76,269,0): 90, 41, 45, (76,270,0): 92, 41, 46, (76,271,0): 93, 43, 46, (76,272,0): 93, 44, 47, (76,273,0): 93, 45, 45, (76,274,0): 93, 45, 45, (76,275,0): 94, 46, 46, (76,276,0): 94, 46, 46, (76,277,0): 95, 47, 47, (76,278,0): 95, 47, 47, (76,279,0): 96, 48, 48, (76,280,0): 99, 51, 51, (76,281,0): 99, 51, 51, (76,282,0): 99, 51, 51, (76,283,0): 99, 51, 51, (76,284,0): 101, 53, 53, (76,285,0): 103, 55, 55, (76,286,0): 106, 58, 58, (76,287,0): 107, 59, 57, (76,288,0): 109, 60, 55, (76,289,0): 112, 64, 54, (76,290,0): 114, 68, 55, (76,291,0): 115, 69, 53, (76,292,0): 114, 71, 52, (76,293,0): 119, 74, 53, (76,294,0): 125, 79, 56, (76,295,0): 130, 82, 59, (76,296,0): 140, 86, 60, (76,297,0): 151, 92, 62, (76,298,0): 162, 96, 62, (76,299,0): 172, 100, 60, (76,300,0): 187, 109, 60, (76,301,0): 204, 122, 66, (76,302,0): 214, 129, 65, (76,303,0): 212, 129, 61, (76,304,0): 194, 119, 51, (76,305,0): 187, 118, 51, (76,306,0): 184, 116, 55, (76,307,0): 181, 117, 56, (76,308,0): 181, 120, 63, (76,309,0): 180, 124, 65, (76,310,0): 176, 125, 62, (76,311,0): 173, 125, 63, (76,312,0): 166, 121, 62, (76,313,0): 162, 119, 66, (76,314,0): 158, 116, 68, (76,315,0): 154, 113, 69, (76,316,0): 150, 111, 68, (76,317,0): 150, 111, 68, (76,318,0): 151, 113, 68, (76,319,0): 151, 114, 69, (76,320,0): 147, 112, 70, (76,321,0): 146, 111, 69, (76,322,0): 145, 110, 68, (76,323,0): 145, 110, 68, (76,324,0): 145, 110, 68, (76,325,0): 146, 112, 67, (76,326,0): 146, 113, 68, (76,327,0): 147, 115, 68, (76,328,0): 152, 121, 74, (76,329,0): 153, 123, 73, (76,330,0): 152, 124, 74, (76,331,0): 153, 126, 73, (76,332,0): 154, 127, 74, (76,333,0): 154, 127, 74, (76,334,0): 153, 126, 73, (76,335,0): 151, 126, 72, (76,336,0): 148, 125, 75, (76,337,0): 146, 124, 75, (76,338,0): 145, 123, 74, (76,339,0): 145, 123, 74, (76,340,0): 145, 123, 76, (76,341,0): 146, 124, 77, (76,342,0): 148, 125, 83, (76,343,0): 148, 125, 83, (76,344,0): 148, 125, 84, (76,345,0): 147, 124, 83, (76,346,0): 147, 123, 87, (76,347,0): 146, 122, 86, (76,348,0): 145, 121, 87, (76,349,0): 143, 119, 85, (76,350,0): 143, 119, 85, (76,351,0): 142, 118, 84, (76,352,0): 143, 116, 87, (76,353,0): 143, 116, 87, (76,354,0): 142, 115, 86, (76,355,0): 142, 115, 86, (76,356,0): 143, 113, 85, (76,357,0): 143, 113, 85, (76,358,0): 142, 112, 84, (76,359,0): 142, 112, 84, (76,360,0): 145, 114, 86, (76,361,0): 146, 115, 87, (76,362,0): 150, 116, 89, (76,363,0): 151, 117, 90, (76,364,0): 152, 118, 91, (76,365,0): 152, 118, 91, (76,366,0): 153, 117, 91, (76,367,0): 153, 117, 91, (76,368,0): 154, 116, 93, (76,369,0): 154, 116, 93, (76,370,0): 154, 116, 93, (76,371,0): 154, 116, 93, (76,372,0): 156, 115, 93, (76,373,0): 156, 115, 93, (76,374,0): 157, 116, 94, (76,375,0): 157, 116, 94, (76,376,0): 161, 119, 97, (76,377,0): 161, 119, 97, (76,378,0): 163, 118, 97, (76,379,0): 164, 119, 98, (76,380,0): 164, 119, 98, (76,381,0): 165, 120, 99, (76,382,0): 166, 119, 99, (76,383,0): 166, 119, 99, (76,384,0): 166, 121, 102, (76,385,0): 167, 122, 101, (76,386,0): 170, 124, 101, (76,387,0): 174, 127, 101, (76,388,0): 179, 129, 102, (76,389,0): 184, 131, 100, (76,390,0): 187, 132, 102, (76,391,0): 191, 132, 102, (76,392,0): 195, 134, 103, (76,393,0): 198, 133, 101, (76,394,0): 199, 133, 98, (76,395,0): 205, 136, 95, (76,396,0): 214, 144, 95, (76,397,0): 223, 152, 98, (76,398,0): 233, 161, 102, (76,399,0): 240, 166, 103, (76,400,0): 243, 163, 100, (76,401,0): 242, 161, 98, (76,402,0): 238, 156, 98, (76,403,0): 232, 151, 95, (76,404,0): 225, 148, 92, (76,405,0): 220, 145, 90, (76,406,0): 215, 142, 89, (76,407,0): 211, 140, 88, (76,408,0): 204, 133, 81, (76,409,0): 205, 134, 82, (76,410,0): 206, 135, 83, (76,411,0): 209, 136, 83, (76,412,0): 215, 139, 87, (76,413,0): 219, 144, 89, (76,414,0): 223, 146, 90, (76,415,0): 224, 149, 91, (76,416,0): 223, 154, 89, (76,417,0): 222, 155, 87, (76,418,0): 219, 156, 89, (76,419,0): 217, 156, 91, (76,420,0): 213, 155, 92, (76,421,0): 210, 154, 93, (76,422,0): 205, 153, 93, (76,423,0): 202, 152, 93, (76,424,0): 202, 156, 96, (76,425,0): 200, 156, 95, (76,426,0): 200, 156, 95, (76,427,0): 200, 156, 95, (76,428,0): 200, 156, 95, (76,429,0): 200, 156, 93, (76,430,0): 200, 156, 93, (76,431,0): 198, 157, 93, (76,432,0): 193, 157, 95, (76,433,0): 192, 158, 97, (76,434,0): 192, 157, 99, (76,435,0): 193, 159, 98, (76,436,0): 194, 158, 96, (76,437,0): 194, 158, 96, (76,438,0): 197, 159, 96, (76,439,0): 197, 159, 96, (76,440,0): 196, 157, 92, (76,441,0): 195, 156, 89, (76,442,0): 196, 155, 89, (76,443,0): 198, 157, 91, (76,444,0): 201, 161, 92, (76,445,0): 203, 160, 92, (76,446,0): 200, 157, 88, (76,447,0): 197, 154, 86, (76,448,0): 194, 150, 87, (76,449,0): 190, 145, 86, (76,450,0): 185, 140, 83, (76,451,0): 180, 137, 82, (76,452,0): 179, 138, 84, (76,453,0): 177, 137, 85, (76,454,0): 174, 134, 85, (76,455,0): 170, 132, 85, (76,456,0): 162, 125, 81, (76,457,0): 155, 120, 78, (76,458,0): 146, 112, 74, (76,459,0): 141, 107, 70, (76,460,0): 136, 103, 70, (76,461,0): 133, 100, 67, (76,462,0): 128, 97, 66, (76,463,0): 123, 94, 64, (76,464,0): 122, 96, 71, (76,465,0): 120, 96, 72, (76,466,0): 119, 95, 71, (76,467,0): 116, 94, 70, (76,468,0): 115, 95, 70, (76,469,0): 115, 95, 70, (76,470,0): 114, 97, 71, (76,471,0): 115, 98, 72, (76,472,0): 116, 99, 73, (76,473,0): 117, 100, 74, (76,474,0): 120, 100, 75, (76,475,0): 122, 100, 76, (76,476,0): 124, 100, 76, (76,477,0): 125, 99, 76, (76,478,0): 125, 97, 75, (76,479,0): 123, 97, 74, (76,480,0): 116, 91, 69, (76,481,0): 114, 92, 69, (76,482,0): 116, 91, 69, (76,483,0): 115, 90, 68, (76,484,0): 116, 89, 70, (76,485,0): 117, 88, 70, (76,486,0): 118, 86, 71, (76,487,0): 118, 86, 71, (76,488,0): 115, 83, 68, (76,489,0): 112, 83, 67, (76,490,0): 111, 82, 68, (76,491,0): 108, 80, 66, (76,492,0): 105, 79, 66, (76,493,0): 102, 79, 65, (76,494,0): 103, 80, 66, (76,495,0): 103, 80, 66, (76,496,0): 108, 85, 69, (76,497,0): 109, 86, 68, (76,498,0): 112, 89, 71, (76,499,0): 115, 92, 74, (76,500,0): 117, 96, 77, (76,501,0): 118, 97, 78, (76,502,0): 119, 98, 79, (76,503,0): 119, 98, 79, (76,504,0): 113, 95, 75, (76,505,0): 113, 95, 75, (76,506,0): 112, 95, 75, (76,507,0): 112, 95, 75, (76,508,0): 112, 95, 75, (76,509,0): 112, 95, 75, (76,510,0): 111, 96, 75, (76,511,0): 112, 95, 75, (76,512,0): 115, 94, 75, (76,513,0): 116, 93, 75, (76,514,0): 115, 94, 75, (76,515,0): 114, 93, 74, (76,516,0): 111, 92, 75, (76,517,0): 110, 91, 74, (76,518,0): 108, 91, 73, (76,519,0): 107, 90, 72, (76,520,0): 104, 87, 71, (76,521,0): 103, 87, 71, (76,522,0): 103, 87, 72, (76,523,0): 100, 87, 71, (76,524,0): 99, 86, 70, (76,525,0): 98, 86, 70, (76,526,0): 98, 86, 72, (76,527,0): 98, 84, 71, (76,528,0): 100, 84, 71, (76,529,0): 101, 85, 72, (76,530,0): 102, 84, 70, (76,531,0): 102, 84, 70, (76,532,0): 103, 85, 71, (76,533,0): 104, 86, 72, (76,534,0): 105, 86, 71, (76,535,0): 105, 86, 71, (76,536,0): 106, 85, 68, (76,537,0): 106, 85, 68, (76,538,0): 107, 86, 69, (76,539,0): 109, 88, 71, (76,540,0): 112, 89, 71, (76,541,0): 114, 91, 73, (76,542,0): 115, 92, 74, (76,543,0): 118, 93, 71, (76,544,0): 129, 99, 75, (76,545,0): 130, 99, 71, (76,546,0): 131, 100, 72, (76,547,0): 130, 99, 71, (76,548,0): 128, 98, 72, (76,549,0): 127, 97, 71, (76,550,0): 125, 95, 71, (76,551,0): 122, 94, 70, (76,552,0): 119, 91, 67, (76,553,0): 119, 91, 67, (76,554,0): 118, 92, 69, (76,555,0): 118, 92, 69, (76,556,0): 118, 91, 70, (76,557,0): 118, 91, 70, (76,558,0): 117, 92, 70, (76,559,0): 117, 92, 72, (76,560,0): 120, 93, 76, (76,561,0): 117, 89, 75, (76,562,0): 114, 86, 72, (76,563,0): 109, 81, 67, (76,564,0): 104, 78, 65, (76,565,0): 101, 75, 62, (76,566,0): 98, 74, 62, (76,567,0): 97, 73, 61, (76,568,0): 93, 69, 59, (76,569,0): 91, 69, 58, (76,570,0): 89, 66, 58, (76,571,0): 87, 64, 56, (76,572,0): 84, 64, 57, (76,573,0): 84, 64, 57, (76,574,0): 85, 65, 58, (76,575,0): 85, 64, 59, (76,576,0): 80, 60, 59, (76,577,0): 79, 59, 60, (76,578,0): 79, 59, 60, (76,579,0): 77, 57, 58, (76,580,0): 75, 55, 56, (76,581,0): 71, 51, 52, (76,582,0): 69, 49, 50, (76,583,0): 67, 47, 48, (76,584,0): 68, 48, 49, (76,585,0): 69, 49, 50, (76,586,0): 70, 50, 51, (76,587,0): 72, 52, 53, (76,588,0): 74, 54, 55, (76,589,0): 76, 56, 57, (76,590,0): 78, 58, 59, (76,591,0): 79, 58, 57, (76,592,0): 76, 52, 50, (76,593,0): 77, 52, 48, (76,594,0): 76, 51, 47, (76,595,0): 75, 50, 46, (76,596,0): 74, 49, 45, (76,597,0): 73, 48, 44, (76,598,0): 72, 47, 43, (76,599,0): 72, 47, 43, (77,0,0): 31, 27, 42, (77,1,0): 31, 27, 42, (77,2,0): 33, 27, 41, (77,3,0): 34, 28, 42, (77,4,0): 34, 28, 42, (77,5,0): 35, 29, 43, (77,6,0): 36, 28, 41, (77,7,0): 37, 29, 42, (77,8,0): 40, 30, 41, (77,9,0): 40, 30, 41, (77,10,0): 40, 30, 41, (77,11,0): 40, 30, 41, (77,12,0): 41, 29, 39, (77,13,0): 41, 29, 39, (77,14,0): 41, 29, 39, (77,15,0): 41, 29, 39, (77,16,0): 41, 29, 39, (77,17,0): 41, 29, 39, (77,18,0): 41, 29, 39, (77,19,0): 41, 29, 39, (77,20,0): 41, 29, 39, (77,21,0): 41, 29, 39, (77,22,0): 42, 29, 39, (77,23,0): 42, 29, 39, (77,24,0): 46, 30, 41, (77,25,0): 46, 30, 41, (77,26,0): 46, 28, 40, (77,27,0): 46, 28, 40, (77,28,0): 46, 28, 40, (77,29,0): 48, 30, 42, (77,30,0): 49, 31, 43, (77,31,0): 50, 32, 44, (77,32,0): 51, 33, 45, (77,33,0): 51, 33, 45, (77,34,0): 51, 33, 45, (77,35,0): 51, 33, 45, (77,36,0): 51, 33, 45, (77,37,0): 51, 33, 45, (77,38,0): 51, 33, 45, (77,39,0): 51, 33, 45, (77,40,0): 52, 34, 46, (77,41,0): 52, 34, 46, (77,42,0): 51, 33, 45, (77,43,0): 51, 33, 45, (77,44,0): 50, 32, 44, (77,45,0): 50, 32, 44, (77,46,0): 49, 31, 43, (77,47,0): 49, 31, 43, (77,48,0): 52, 34, 46, (77,49,0): 51, 33, 45, (77,50,0): 50, 32, 44, (77,51,0): 49, 31, 43, (77,52,0): 49, 31, 43, (77,53,0): 50, 32, 44, (77,54,0): 51, 33, 45, (77,55,0): 52, 34, 46, (77,56,0): 51, 33, 45, (77,57,0): 51, 33, 45, (77,58,0): 50, 32, 44, (77,59,0): 49, 31, 43, (77,60,0): 48, 30, 42, (77,61,0): 47, 29, 41, (77,62,0): 46, 28, 40, (77,63,0): 44, 28, 39, (77,64,0): 41, 27, 42, (77,65,0): 39, 27, 41, (77,66,0): 39, 27, 41, (77,67,0): 38, 26, 40, (77,68,0): 37, 26, 40, (77,69,0): 36, 25, 39, (77,70,0): 36, 25, 41, (77,71,0): 36, 25, 41, (77,72,0): 34, 25, 42, (77,73,0): 34, 25, 42, (77,74,0): 33, 26, 44, (77,75,0): 32, 25, 43, (77,76,0): 32, 25, 43, (77,77,0): 31, 24, 42, (77,78,0): 29, 25, 42, (77,79,0): 29, 25, 42, (77,80,0): 31, 22, 41, (77,81,0): 30, 21, 40, (77,82,0): 30, 21, 40, (77,83,0): 29, 20, 39, (77,84,0): 29, 20, 39, (77,85,0): 28, 19, 38, (77,86,0): 28, 19, 38, (77,87,0): 28, 19, 38, (77,88,0): 26, 17, 36, (77,89,0): 26, 17, 36, (77,90,0): 26, 17, 36, (77,91,0): 26, 17, 36, (77,92,0): 26, 17, 36, (77,93,0): 26, 17, 36, (77,94,0): 26, 17, 36, (77,95,0): 26, 17, 36, (77,96,0): 30, 18, 42, (77,97,0): 30, 18, 42, (77,98,0): 28, 18, 42, (77,99,0): 28, 18, 42, (77,100,0): 28, 18, 42, (77,101,0): 28, 18, 42, (77,102,0): 27, 19, 42, (77,103,0): 27, 19, 42, (77,104,0): 23, 18, 40, (77,105,0): 23, 18, 40, (77,106,0): 23, 18, 40, (77,107,0): 22, 17, 39, (77,108,0): 20, 17, 38, (77,109,0): 20, 17, 38, (77,110,0): 20, 17, 38, (77,111,0): 19, 16, 37, (77,112,0): 22, 19, 40, (77,113,0): 22, 19, 40, (77,114,0): 22, 19, 40, (77,115,0): 22, 19, 40, (77,116,0): 22, 19, 40, (77,117,0): 22, 19, 40, (77,118,0): 22, 19, 40, (77,119,0): 22, 19, 40, (77,120,0): 23, 20, 41, (77,121,0): 23, 20, 41, (77,122,0): 22, 19, 40, (77,123,0): 22, 19, 40, (77,124,0): 21, 18, 39, (77,125,0): 21, 18, 39, (77,126,0): 20, 17, 38, (77,127,0): 20, 17, 38, (77,128,0): 25, 17, 40, (77,129,0): 25, 17, 40, (77,130,0): 25, 17, 40, (77,131,0): 25, 17, 40, (77,132,0): 25, 17, 40, (77,133,0): 25, 17, 40, (77,134,0): 25, 17, 40, (77,135,0): 25, 17, 40, (77,136,0): 25, 17, 40, (77,137,0): 25, 17, 40, (77,138,0): 25, 17, 40, (77,139,0): 25, 17, 40, (77,140,0): 25, 17, 40, (77,141,0): 25, 17, 40, (77,142,0): 25, 17, 40, (77,143,0): 25, 17, 38, (77,144,0): 29, 20, 41, (77,145,0): 29, 20, 39, (77,146,0): 29, 20, 39, (77,147,0): 30, 21, 40, (77,148,0): 30, 21, 40, (77,149,0): 31, 22, 41, (77,150,0): 31, 22, 41, (77,151,0): 31, 22, 41, (77,152,0): 31, 22, 41, (77,153,0): 31, 22, 41, (77,154,0): 31, 22, 41, (77,155,0): 31, 22, 41, (77,156,0): 31, 22, 41, (77,157,0): 31, 22, 41, (77,158,0): 31, 22, 41, (77,159,0): 31, 22, 41, (77,160,0): 32, 25, 43, (77,161,0): 32, 25, 43, (77,162,0): 32, 25, 43, (77,163,0): 32, 25, 43, (77,164,0): 32, 25, 43, (77,165,0): 32, 25, 43, (77,166,0): 32, 25, 43, (77,167,0): 32, 25, 43, (77,168,0): 32, 25, 43, (77,169,0): 32, 25, 43, (77,170,0): 32, 25, 43, (77,171,0): 32, 25, 43, (77,172,0): 32, 25, 43, (77,173,0): 32, 25, 43, (77,174,0): 32, 25, 43, (77,175,0): 32, 25, 43, (77,176,0): 31, 23, 46, (77,177,0): 32, 24, 47, (77,178,0): 32, 24, 47, (77,179,0): 32, 24, 47, (77,180,0): 33, 25, 48, (77,181,0): 34, 26, 49, (77,182,0): 34, 26, 49, (77,183,0): 34, 26, 49, (77,184,0): 33, 25, 48, (77,185,0): 33, 25, 48, (77,186,0): 33, 25, 48, (77,187,0): 33, 25, 48, (77,188,0): 33, 25, 48, (77,189,0): 33, 25, 48, (77,190,0): 33, 25, 48, (77,191,0): 33, 25, 46, (77,192,0): 35, 26, 47, (77,193,0): 35, 26, 45, (77,194,0): 35, 26, 45, (77,195,0): 36, 27, 46, (77,196,0): 36, 27, 46, (77,197,0): 37, 28, 47, (77,198,0): 37, 28, 47, (77,199,0): 37, 28, 47, (77,200,0): 37, 28, 47, (77,201,0): 37, 28, 47, (77,202,0): 36, 27, 46, (77,203,0): 36, 27, 46, (77,204,0): 37, 28, 47, (77,205,0): 38, 29, 48, (77,206,0): 39, 30, 49, (77,207,0): 42, 30, 50, (77,208,0): 43, 30, 48, (77,209,0): 44, 29, 48, (77,210,0): 46, 29, 47, (77,211,0): 47, 30, 48, (77,212,0): 48, 31, 49, (77,213,0): 48, 31, 49, (77,214,0): 49, 31, 47, (77,215,0): 50, 32, 48, (77,216,0): 50, 29, 44, (77,217,0): 51, 30, 45, (77,218,0): 51, 30, 45, (77,219,0): 51, 30, 45, (77,220,0): 53, 31, 44, (77,221,0): 54, 32, 45, (77,222,0): 54, 32, 45, (77,223,0): 54, 32, 44, (77,224,0): 58, 35, 45, (77,225,0): 60, 34, 43, (77,226,0): 61, 35, 44, (77,227,0): 61, 35, 44, (77,228,0): 62, 37, 43, (77,229,0): 63, 36, 43, (77,230,0): 64, 37, 44, (77,231,0): 64, 37, 44, (77,232,0): 66, 37, 42, (77,233,0): 66, 37, 42, (77,234,0): 67, 36, 41, (77,235,0): 67, 36, 41, (77,236,0): 67, 36, 41, (77,237,0): 67, 36, 41, (77,238,0): 67, 37, 39, (77,239,0): 68, 36, 39, (77,240,0): 73, 38, 44, (77,241,0): 74, 37, 44, (77,242,0): 74, 37, 44, (77,243,0): 75, 38, 45, (77,244,0): 75, 39, 43, (77,245,0): 76, 40, 44, (77,246,0): 78, 39, 44, (77,247,0): 78, 39, 42, (77,248,0): 81, 40, 44, (77,249,0): 81, 40, 44, (77,250,0): 82, 40, 42, (77,251,0): 82, 40, 42, (77,252,0): 82, 40, 42, (77,253,0): 82, 40, 42, (77,254,0): 82, 40, 41, (77,255,0): 82, 40, 41, (77,256,0): 81, 39, 41, (77,257,0): 81, 39, 41, (77,258,0): 81, 39, 41, (77,259,0): 82, 40, 42, (77,260,0): 84, 39, 42, (77,261,0): 85, 40, 43, (77,262,0): 85, 40, 43, (77,263,0): 85, 40, 43, (77,264,0): 87, 41, 44, (77,265,0): 87, 41, 44, (77,266,0): 88, 39, 43, (77,267,0): 88, 39, 43, (77,268,0): 88, 39, 43, (77,269,0): 89, 40, 44, (77,270,0): 92, 41, 46, (77,271,0): 93, 43, 46, (77,272,0): 92, 44, 44, (77,273,0): 93, 45, 45, (77,274,0): 93, 45, 45, (77,275,0): 93, 45, 45, (77,276,0): 94, 46, 46, (77,277,0): 95, 47, 47, (77,278,0): 95, 47, 47, (77,279,0): 95, 47, 47, (77,280,0): 97, 49, 49, (77,281,0): 97, 49, 49, (77,282,0): 97, 49, 49, (77,283,0): 98, 50, 50, (77,284,0): 100, 52, 52, (77,285,0): 102, 54, 54, (77,286,0): 104, 56, 56, (77,287,0): 106, 58, 56, (77,288,0): 109, 60, 55, (77,289,0): 112, 64, 54, (77,290,0): 114, 68, 55, (77,291,0): 115, 69, 53, (77,292,0): 114, 71, 52, (77,293,0): 117, 75, 53, (77,294,0): 125, 79, 56, (77,295,0): 130, 82, 59, (77,296,0): 141, 87, 61, (77,297,0): 152, 93, 63, (77,298,0): 164, 98, 64, (77,299,0): 175, 102, 61, (77,300,0): 190, 112, 63, (77,301,0): 207, 125, 67, (77,302,0): 217, 129, 65, (77,303,0): 211, 128, 58, (77,304,0): 193, 120, 52, (77,305,0): 186, 118, 53, (77,306,0): 179, 115, 54, (77,307,0): 175, 114, 57, (77,308,0): 175, 116, 60, (77,309,0): 172, 117, 60, (77,310,0): 168, 118, 59, (77,311,0): 163, 117, 57, (77,312,0): 158, 113, 58, (77,313,0): 153, 112, 60, (77,314,0): 149, 108, 64, (77,315,0): 146, 104, 64, (77,316,0): 142, 103, 64, (77,317,0): 142, 103, 64, (77,318,0): 143, 104, 63, (77,319,0): 144, 105, 64, (77,320,0): 142, 104, 65, (77,321,0): 140, 105, 67, (77,322,0): 140, 105, 67, (77,323,0): 141, 106, 66, (77,324,0): 143, 108, 68, (77,325,0): 145, 110, 68, (77,326,0): 146, 113, 70, (77,327,0): 148, 115, 70, (77,328,0): 152, 121, 75, (77,329,0): 153, 122, 75, (77,330,0): 153, 125, 77, (77,331,0): 154, 126, 76, (77,332,0): 154, 126, 76, (77,333,0): 154, 127, 74, (77,334,0): 153, 126, 73, (77,335,0): 152, 126, 75, (77,336,0): 147, 124, 74, (77,337,0): 145, 123, 74, (77,338,0): 145, 123, 74, (77,339,0): 145, 123, 74, (77,340,0): 146, 124, 77, (77,341,0): 148, 126, 79, (77,342,0): 149, 126, 84, (77,343,0): 151, 128, 86, (77,344,0): 149, 126, 85, (77,345,0): 148, 125, 84, (77,346,0): 148, 124, 88, (77,347,0): 147, 123, 87, (77,348,0): 146, 122, 88, (77,349,0): 144, 120, 86, (77,350,0): 144, 120, 86, (77,351,0): 143, 119, 85, (77,352,0): 144, 117, 88, (77,353,0): 144, 117, 88, (77,354,0): 143, 116, 87, (77,355,0): 143, 116, 87, (77,356,0): 144, 114, 86, (77,357,0): 144, 114, 86, (77,358,0): 143, 113, 85, (77,359,0): 143, 113, 85, (77,360,0): 146, 115, 87, (77,361,0): 147, 116, 88, (77,362,0): 150, 116, 89, (77,363,0): 151, 117, 90, (77,364,0): 152, 118, 91, (77,365,0): 152, 118, 91, (77,366,0): 152, 116, 90, (77,367,0): 152, 116, 90, (77,368,0): 154, 116, 93, (77,369,0): 154, 116, 93, (77,370,0): 154, 116, 93, (77,371,0): 155, 117, 94, (77,372,0): 157, 116, 94, (77,373,0): 158, 117, 95, (77,374,0): 158, 117, 95, (77,375,0): 158, 117, 95, (77,376,0): 162, 120, 98, (77,377,0): 162, 120, 98, (77,378,0): 164, 119, 98, (77,379,0): 165, 120, 99, (77,380,0): 165, 120, 99, (77,381,0): 166, 121, 100, (77,382,0): 167, 120, 100, (77,383,0): 167, 120, 100, (77,384,0): 166, 121, 102, (77,385,0): 167, 122, 101, (77,386,0): 170, 124, 101, (77,387,0): 174, 127, 101, (77,388,0): 180, 130, 103, (77,389,0): 186, 133, 102, (77,390,0): 189, 134, 103, (77,391,0): 193, 134, 102, (77,392,0): 197, 137, 103, (77,393,0): 200, 136, 101, (77,394,0): 203, 138, 98, (77,395,0): 210, 142, 97, (77,396,0): 219, 149, 97, (77,397,0): 228, 158, 98, (77,398,0): 237, 166, 100, (77,399,0): 245, 170, 103, (77,400,0): 245, 164, 101, (77,401,0): 243, 159, 97, (77,402,0): 237, 155, 97, (77,403,0): 232, 151, 95, (77,404,0): 229, 150, 94, (77,405,0): 224, 147, 93, (77,406,0): 219, 143, 93, (77,407,0): 214, 141, 90, (77,408,0): 207, 134, 83, (77,409,0): 208, 135, 84, (77,410,0): 209, 136, 83, (77,411,0): 214, 139, 84, (77,412,0): 218, 141, 87, (77,413,0): 224, 145, 89, (77,414,0): 229, 148, 92, (77,415,0): 230, 151, 92, (77,416,0): 228, 157, 91, (77,417,0): 227, 158, 89, (77,418,0): 224, 159, 91, (77,419,0): 223, 160, 93, (77,420,0): 218, 158, 95, (77,421,0): 215, 157, 94, (77,422,0): 210, 156, 94, (77,423,0): 206, 154, 94, (77,424,0): 207, 158, 99, (77,425,0): 204, 158, 98, (77,426,0): 203, 157, 97, (77,427,0): 202, 156, 96, (77,428,0): 202, 156, 94, (77,429,0): 202, 156, 94, (77,430,0): 203, 158, 93, (77,431,0): 203, 159, 96, (77,432,0): 193, 157, 97, (77,433,0): 192, 157, 99, (77,434,0): 193, 158, 100, (77,435,0): 193, 158, 100, (77,436,0): 194, 158, 98, (77,437,0): 194, 158, 96, (77,438,0): 197, 159, 96, (77,439,0): 197, 159, 94, (77,440,0): 197, 158, 91, (77,441,0): 196, 157, 88, (77,442,0): 199, 159, 90, (77,443,0): 202, 162, 92, (77,444,0): 207, 164, 95, (77,445,0): 207, 165, 93, (77,446,0): 204, 162, 90, (77,447,0): 201, 158, 89, (77,448,0): 197, 152, 87, (77,449,0): 193, 147, 87, (77,450,0): 187, 142, 83, (77,451,0): 184, 139, 82, (77,452,0): 181, 138, 83, (77,453,0): 179, 138, 84, (77,454,0): 175, 135, 84, (77,455,0): 170, 132, 85, (77,456,0): 163, 125, 80, (77,457,0): 154, 119, 77, (77,458,0): 146, 111, 73, (77,459,0): 140, 106, 69, (77,460,0): 136, 103, 68, (77,461,0): 135, 102, 69, (77,462,0): 131, 100, 69, (77,463,0): 128, 99, 69, (77,464,0): 125, 99, 74, (77,465,0): 123, 99, 75, (77,466,0): 119, 97, 73, (77,467,0): 118, 96, 72, (77,468,0): 117, 97, 72, (77,469,0): 117, 97, 72, (77,470,0): 116, 99, 73, (77,471,0): 116, 99, 73, (77,472,0): 118, 101, 75, (77,473,0): 118, 101, 75, (77,474,0): 122, 100, 76, (77,475,0): 123, 101, 77, (77,476,0): 125, 99, 76, (77,477,0): 125, 99, 76, (77,478,0): 124, 96, 74, (77,479,0): 122, 96, 73, (77,480,0): 116, 91, 69, (77,481,0): 114, 92, 69, (77,482,0): 116, 91, 69, (77,483,0): 116, 91, 69, (77,484,0): 118, 89, 71, (77,485,0): 118, 89, 71, (77,486,0): 120, 88, 73, (77,487,0): 120, 88, 73, (77,488,0): 116, 84, 69, (77,489,0): 117, 85, 70, (77,490,0): 115, 86, 72, (77,491,0): 112, 84, 70, (77,492,0): 108, 80, 68, (77,493,0): 105, 79, 66, (77,494,0): 104, 81, 67, (77,495,0): 105, 82, 66, (77,496,0): 110, 87, 71, (77,497,0): 111, 88, 70, (77,498,0): 114, 91, 73, (77,499,0): 116, 93, 75, (77,500,0): 117, 96, 77, (77,501,0): 118, 97, 78, (77,502,0): 119, 98, 79, (77,503,0): 119, 98, 79, (77,504,0): 113, 95, 75, (77,505,0): 113, 95, 75, (77,506,0): 112, 95, 75, (77,507,0): 112, 95, 75, (77,508,0): 112, 95, 75, (77,509,0): 112, 95, 75, (77,510,0): 111, 96, 75, (77,511,0): 112, 95, 75, (77,512,0): 113, 92, 73, (77,513,0): 115, 92, 74, (77,514,0): 114, 93, 74, (77,515,0): 113, 92, 73, (77,516,0): 110, 91, 74, (77,517,0): 109, 90, 73, (77,518,0): 106, 89, 71, (77,519,0): 105, 88, 70, (77,520,0): 103, 87, 71, (77,521,0): 102, 86, 70, (77,522,0): 100, 87, 71, (77,523,0): 99, 86, 70, (77,524,0): 98, 86, 70, (77,525,0): 97, 85, 69, (77,526,0): 97, 85, 71, (77,527,0): 97, 85, 71, (77,528,0): 98, 84, 71, (77,529,0): 100, 84, 71, (77,530,0): 101, 83, 69, (77,531,0): 102, 84, 70, (77,532,0): 102, 84, 70, (77,533,0): 103, 85, 71, (77,534,0): 104, 85, 70, (77,535,0): 105, 86, 71, (77,536,0): 107, 86, 69, (77,537,0): 107, 86, 69, (77,538,0): 107, 86, 69, (77,539,0): 108, 87, 70, (77,540,0): 110, 87, 69, (77,541,0): 112, 89, 71, (77,542,0): 114, 91, 73, (77,543,0): 118, 93, 71, (77,544,0): 127, 97, 73, (77,545,0): 128, 97, 69, (77,546,0): 129, 98, 70, (77,547,0): 129, 98, 70, (77,548,0): 127, 97, 71, (77,549,0): 125, 95, 69, (77,550,0): 124, 94, 70, (77,551,0): 123, 93, 69, (77,552,0): 121, 93, 69, (77,553,0): 121, 93, 69, (77,554,0): 119, 93, 70, (77,555,0): 119, 93, 70, (77,556,0): 119, 92, 71, (77,557,0): 119, 92, 71, (77,558,0): 117, 92, 70, (77,559,0): 117, 92, 70, (77,560,0): 120, 93, 76, (77,561,0): 118, 91, 74, (77,562,0): 115, 87, 73, (77,563,0): 111, 83, 69, (77,564,0): 107, 81, 68, (77,565,0): 105, 79, 66, (77,566,0): 102, 78, 66, (77,567,0): 101, 77, 65, (77,568,0): 96, 72, 62, (77,569,0): 94, 70, 60, (77,570,0): 91, 68, 60, (77,571,0): 88, 65, 57, (77,572,0): 85, 65, 58, (77,573,0): 84, 64, 57, (77,574,0): 83, 63, 56, (77,575,0): 84, 63, 58, (77,576,0): 80, 60, 61, (77,577,0): 80, 60, 62, (77,578,0): 79, 59, 61, (77,579,0): 76, 56, 58, (77,580,0): 73, 53, 55, (77,581,0): 69, 49, 51, (77,582,0): 66, 46, 48, (77,583,0): 64, 44, 46, (77,584,0): 66, 46, 48, (77,585,0): 66, 46, 48, (77,586,0): 68, 48, 50, (77,587,0): 69, 49, 51, (77,588,0): 71, 51, 53, (77,589,0): 73, 53, 55, (77,590,0): 75, 55, 57, (77,591,0): 76, 54, 56, (77,592,0): 75, 51, 49, (77,593,0): 76, 51, 47, (77,594,0): 75, 50, 46, (77,595,0): 74, 49, 45, (77,596,0): 73, 48, 44, (77,597,0): 72, 47, 43, (77,598,0): 71, 46, 42, (77,599,0): 70, 45, 41, (78,0,0): 30, 26, 41, (78,1,0): 31, 27, 42, (78,2,0): 33, 27, 41, (78,3,0): 34, 28, 42, (78,4,0): 34, 28, 42, (78,5,0): 35, 29, 43, (78,6,0): 36, 28, 41, (78,7,0): 36, 28, 41, (78,8,0): 40, 30, 41, (78,9,0): 40, 30, 41, (78,10,0): 40, 30, 41, (78,11,0): 40, 30, 41, (78,12,0): 41, 29, 39, (78,13,0): 41, 29, 39, (78,14,0): 41, 29, 39, (78,15,0): 41, 29, 39, (78,16,0): 41, 29, 39, (78,17,0): 41, 29, 39, (78,18,0): 41, 29, 39, (78,19,0): 41, 29, 39, (78,20,0): 41, 29, 39, (78,21,0): 41, 29, 39, (78,22,0): 42, 29, 39, (78,23,0): 42, 29, 39, (78,24,0): 46, 30, 41, (78,25,0): 46, 30, 41, (78,26,0): 46, 28, 40, (78,27,0): 46, 28, 40, (78,28,0): 46, 28, 40, (78,29,0): 48, 30, 42, (78,30,0): 49, 31, 43, (78,31,0): 50, 32, 44, (78,32,0): 52, 34, 46, (78,33,0): 52, 34, 46, (78,34,0): 52, 34, 46, (78,35,0): 52, 34, 46, (78,36,0): 52, 34, 46, (78,37,0): 52, 34, 46, (78,38,0): 52, 34, 46, (78,39,0): 52, 34, 46, (78,40,0): 52, 34, 46, (78,41,0): 52, 34, 46, (78,42,0): 52, 34, 46, (78,43,0): 51, 33, 45, (78,44,0): 50, 32, 44, (78,45,0): 49, 31, 43, (78,46,0): 49, 31, 43, (78,47,0): 49, 31, 43, (78,48,0): 52, 34, 46, (78,49,0): 51, 33, 45, (78,50,0): 50, 32, 44, (78,51,0): 49, 31, 43, (78,52,0): 49, 31, 43, (78,53,0): 50, 32, 44, (78,54,0): 51, 33, 45, (78,55,0): 52, 34, 46, (78,56,0): 51, 33, 45, (78,57,0): 50, 32, 44, (78,58,0): 49, 31, 43, (78,59,0): 48, 30, 42, (78,60,0): 47, 29, 41, (78,61,0): 46, 28, 40, (78,62,0): 45, 27, 39, (78,63,0): 44, 28, 39, (78,64,0): 40, 26, 41, (78,65,0): 39, 27, 41, (78,66,0): 39, 27, 41, (78,67,0): 38, 26, 40, (78,68,0): 37, 26, 40, (78,69,0): 36, 25, 39, (78,70,0): 34, 26, 41, (78,71,0): 33, 25, 40, (78,72,0): 34, 25, 42, (78,73,0): 34, 25, 42, (78,74,0): 33, 26, 44, (78,75,0): 32, 25, 43, (78,76,0): 30, 26, 43, (78,77,0): 29, 25, 42, (78,78,0): 29, 25, 42, (78,79,0): 29, 25, 42, (78,80,0): 30, 21, 40, (78,81,0): 30, 21, 40, (78,82,0): 30, 21, 40, (78,83,0): 29, 20, 39, (78,84,0): 29, 20, 39, (78,85,0): 28, 19, 38, (78,86,0): 28, 19, 38, (78,87,0): 27, 18, 37, (78,88,0): 26, 17, 36, (78,89,0): 26, 17, 36, (78,90,0): 26, 17, 36, (78,91,0): 26, 17, 36, (78,92,0): 26, 17, 36, (78,93,0): 26, 17, 36, (78,94,0): 26, 17, 36, (78,95,0): 26, 17, 36, (78,96,0): 29, 17, 41, (78,97,0): 29, 17, 41, (78,98,0): 27, 17, 41, (78,99,0): 27, 17, 41, (78,100,0): 27, 17, 41, (78,101,0): 27, 17, 41, (78,102,0): 26, 18, 41, (78,103,0): 26, 18, 41, (78,104,0): 23, 18, 40, (78,105,0): 22, 17, 39, (78,106,0): 22, 17, 39, (78,107,0): 22, 17, 39, (78,108,0): 20, 17, 38, (78,109,0): 20, 17, 38, (78,110,0): 19, 16, 37, (78,111,0): 19, 16, 37, (78,112,0): 22, 19, 40, (78,113,0): 22, 19, 40, (78,114,0): 22, 19, 40, (78,115,0): 22, 19, 40, (78,116,0): 22, 19, 40, (78,117,0): 22, 19, 40, (78,118,0): 22, 19, 40, (78,119,0): 22, 19, 40, (78,120,0): 23, 20, 41, (78,121,0): 23, 20, 41, (78,122,0): 22, 19, 40, (78,123,0): 22, 19, 40, (78,124,0): 21, 18, 39, (78,125,0): 21, 18, 39, (78,126,0): 20, 17, 38, (78,127,0): 20, 17, 38, (78,128,0): 25, 17, 40, (78,129,0): 25, 17, 40, (78,130,0): 25, 17, 40, (78,131,0): 25, 17, 40, (78,132,0): 25, 17, 40, (78,133,0): 25, 17, 40, (78,134,0): 25, 17, 40, (78,135,0): 25, 17, 40, (78,136,0): 26, 18, 41, (78,137,0): 26, 18, 41, (78,138,0): 26, 18, 41, (78,139,0): 26, 18, 41, (78,140,0): 26, 18, 41, (78,141,0): 26, 18, 41, (78,142,0): 26, 18, 41, (78,143,0): 26, 18, 39, (78,144,0): 29, 20, 41, (78,145,0): 32, 20, 40, (78,146,0): 32, 20, 40, (78,147,0): 33, 21, 41, (78,148,0): 33, 21, 41, (78,149,0): 34, 22, 42, (78,150,0): 34, 22, 42, (78,151,0): 34, 22, 42, (78,152,0): 33, 21, 41, (78,153,0): 33, 21, 41, (78,154,0): 33, 21, 41, (78,155,0): 33, 21, 41, (78,156,0): 33, 21, 41, (78,157,0): 33, 21, 41, (78,158,0): 33, 21, 41, (78,159,0): 31, 22, 41, (78,160,0): 32, 25, 43, (78,161,0): 32, 25, 43, (78,162,0): 32, 25, 43, (78,163,0): 32, 25, 43, (78,164,0): 32, 25, 43, (78,165,0): 32, 25, 43, (78,166,0): 32, 25, 43, (78,167,0): 32, 25, 43, (78,168,0): 32, 25, 43, (78,169,0): 32, 25, 43, (78,170,0): 32, 25, 43, (78,171,0): 32, 25, 43, (78,172,0): 32, 25, 43, (78,173,0): 32, 25, 43, (78,174,0): 32, 25, 43, (78,175,0): 32, 25, 43, (78,176,0): 31, 23, 46, (78,177,0): 31, 23, 46, (78,178,0): 32, 24, 47, (78,179,0): 32, 24, 47, (78,180,0): 33, 25, 48, (78,181,0): 33, 25, 48, (78,182,0): 33, 25, 48, (78,183,0): 34, 26, 49, (78,184,0): 32, 24, 47, (78,185,0): 32, 24, 47, (78,186,0): 32, 24, 47, (78,187,0): 32, 24, 47, (78,188,0): 32, 24, 47, (78,189,0): 32, 24, 47, (78,190,0): 32, 24, 47, (78,191,0): 32, 24, 45, (78,192,0): 35, 26, 47, (78,193,0): 35, 26, 45, (78,194,0): 35, 26, 45, (78,195,0): 36, 27, 46, (78,196,0): 36, 27, 46, (78,197,0): 37, 28, 47, (78,198,0): 37, 28, 47, (78,199,0): 37, 28, 47, (78,200,0): 38, 29, 48, (78,201,0): 37, 28, 47, (78,202,0): 36, 27, 46, (78,203,0): 36, 27, 46, (78,204,0): 36, 27, 46, (78,205,0): 38, 29, 48, (78,206,0): 39, 30, 49, (78,207,0): 43, 31, 51, (78,208,0): 43, 30, 48, (78,209,0): 45, 30, 49, (78,210,0): 47, 30, 48, (78,211,0): 47, 30, 48, (78,212,0): 48, 31, 49, (78,213,0): 48, 31, 49, (78,214,0): 50, 32, 48, (78,215,0): 50, 32, 48, (78,216,0): 50, 29, 44, (78,217,0): 50, 29, 44, (78,218,0): 51, 30, 45, (78,219,0): 51, 30, 45, (78,220,0): 53, 31, 44, (78,221,0): 53, 31, 44, (78,222,0): 53, 31, 44, (78,223,0): 54, 32, 44, (78,224,0): 56, 33, 43, (78,225,0): 56, 33, 41, (78,226,0): 57, 34, 42, (78,227,0): 57, 34, 42, (78,228,0): 58, 35, 41, (78,229,0): 60, 35, 41, (78,230,0): 61, 36, 40, (78,231,0): 61, 36, 40, (78,232,0): 64, 37, 42, (78,233,0): 64, 37, 42, (78,234,0): 66, 37, 41, (78,235,0): 66, 37, 41, (78,236,0): 66, 37, 39, (78,237,0): 66, 37, 39, (78,238,0): 66, 37, 39, (78,239,0): 67, 37, 39, (78,240,0): 73, 38, 44, (78,241,0): 74, 37, 44, (78,242,0): 74, 38, 42, (78,243,0): 75, 39, 43, (78,244,0): 77, 38, 43, (78,245,0): 78, 39, 44, (78,246,0): 78, 39, 42, (78,247,0): 78, 39, 42, (78,248,0): 81, 40, 44, (78,249,0): 81, 41, 42, (78,250,0): 82, 40, 42, (78,251,0): 82, 40, 42, (78,252,0): 82, 40, 41, (78,253,0): 82, 40, 41, (78,254,0): 84, 40, 41, (78,255,0): 84, 40, 41, (78,256,0): 81, 39, 40, (78,257,0): 81, 39, 40, (78,258,0): 81, 39, 40, (78,259,0): 82, 40, 41, (78,260,0): 84, 40, 41, (78,261,0): 85, 41, 42, (78,262,0): 86, 40, 42, (78,263,0): 86, 40, 42, (78,264,0): 87, 41, 43, (78,265,0): 86, 40, 42, (78,266,0): 87, 38, 41, (78,267,0): 87, 38, 41, (78,268,0): 89, 39, 42, (78,269,0): 90, 40, 43, (78,270,0): 92, 42, 45, (78,271,0): 93, 43, 46, (78,272,0): 93, 43, 44, (78,273,0): 93, 43, 44, (78,274,0): 94, 44, 45, (78,275,0): 94, 44, 45, (78,276,0): 95, 45, 46, (78,277,0): 95, 45, 46, (78,278,0): 95, 45, 46, (78,279,0): 96, 46, 47, (78,280,0): 97, 47, 48, (78,281,0): 97, 47, 48, (78,282,0): 97, 47, 48, (78,283,0): 98, 48, 49, (78,284,0): 99, 49, 50, (78,285,0): 102, 52, 53, (78,286,0): 104, 54, 55, (78,287,0): 105, 55, 54, (78,288,0): 109, 60, 53, (78,289,0): 112, 64, 54, (78,290,0): 114, 68, 55, (78,291,0): 115, 69, 53, (78,292,0): 114, 71, 52, (78,293,0): 117, 75, 53, (78,294,0): 125, 79, 56, (78,295,0): 130, 82, 59, (78,296,0): 139, 85, 59, (78,297,0): 151, 92, 62, (78,298,0): 163, 97, 62, (78,299,0): 177, 104, 61, (78,300,0): 196, 116, 65, (78,301,0): 213, 129, 69, (78,302,0): 221, 132, 66, (78,303,0): 213, 130, 60, (78,304,0): 194, 124, 55, (78,305,0): 185, 121, 57, (78,306,0): 177, 115, 56, (78,307,0): 173, 114, 58, (78,308,0): 170, 113, 60, (78,309,0): 165, 112, 58, (78,310,0): 161, 112, 54, (78,311,0): 155, 110, 51, (78,312,0): 150, 107, 54, (78,313,0): 146, 104, 54, (78,314,0): 142, 100, 58, (78,315,0): 139, 96, 61, (78,316,0): 137, 94, 60, (78,317,0): 137, 94, 60, (78,318,0): 138, 96, 58, (78,319,0): 137, 98, 59, (78,320,0): 137, 99, 63, (78,321,0): 135, 99, 63, (78,322,0): 136, 100, 64, (78,323,0): 138, 103, 65, (78,324,0): 141, 106, 68, (78,325,0): 145, 110, 70, (78,326,0): 147, 114, 73, (78,327,0): 149, 116, 73, (78,328,0): 150, 119, 73, (78,329,0): 151, 120, 73, (78,330,0): 151, 123, 75, (78,331,0): 152, 124, 74, (78,332,0): 152, 124, 74, (78,333,0): 152, 124, 74, (78,334,0): 151, 123, 73, (78,335,0): 150, 124, 73, (78,336,0): 145, 123, 73, (78,337,0): 144, 124, 74, (78,338,0): 144, 124, 74, (78,339,0): 144, 124, 74, (78,340,0): 146, 125, 78, (78,341,0): 148, 127, 80, (78,342,0): 150, 129, 86, (78,343,0): 151, 130, 87, (78,344,0): 149, 127, 86, (78,345,0): 148, 126, 85, (78,346,0): 147, 125, 88, (78,347,0): 146, 124, 87, (78,348,0): 145, 122, 88, (78,349,0): 144, 121, 87, (78,350,0): 143, 120, 86, (78,351,0): 144, 120, 86, (78,352,0): 145, 118, 89, (78,353,0): 145, 118, 89, (78,354,0): 144, 117, 88, (78,355,0): 144, 117, 88, (78,356,0): 145, 115, 87, (78,357,0): 145, 115, 87, (78,358,0): 144, 114, 86, (78,359,0): 144, 114, 86, (78,360,0): 146, 115, 87, (78,361,0): 147, 116, 88, (78,362,0): 151, 117, 90, (78,363,0): 152, 118, 91, (78,364,0): 152, 118, 91, (78,365,0): 152, 118, 91, (78,366,0): 152, 116, 90, (78,367,0): 151, 115, 89, (78,368,0): 154, 116, 93, (78,369,0): 154, 116, 93, (78,370,0): 155, 117, 94, (78,371,0): 156, 118, 95, (78,372,0): 158, 117, 95, (78,373,0): 159, 118, 96, (78,374,0): 160, 119, 97, (78,375,0): 160, 119, 97, (78,376,0): 162, 120, 98, (78,377,0): 163, 121, 99, (78,378,0): 165, 120, 99, (78,379,0): 166, 121, 100, (78,380,0): 166, 121, 100, (78,381,0): 167, 122, 101, (78,382,0): 168, 121, 101, (78,383,0): 168, 121, 101, (78,384,0): 166, 121, 102, (78,385,0): 167, 122, 101, (78,386,0): 171, 125, 102, (78,387,0): 175, 128, 102, (78,388,0): 181, 131, 104, (78,389,0): 185, 134, 103, (78,390,0): 190, 135, 104, (78,391,0): 195, 136, 104, (78,392,0): 198, 138, 104, (78,393,0): 203, 139, 103, (78,394,0): 209, 142, 100, (78,395,0): 215, 147, 100, (78,396,0): 224, 155, 98, (78,397,0): 232, 163, 98, (78,398,0): 240, 170, 100, (78,399,0): 246, 172, 101, (78,400,0): 246, 165, 100, (78,401,0): 244, 160, 98, (78,402,0): 237, 155, 97, (78,403,0): 233, 152, 96, (78,404,0): 230, 151, 95, (78,405,0): 224, 147, 93, (78,406,0): 218, 142, 92, (78,407,0): 212, 139, 88, (78,408,0): 212, 139, 88, (78,409,0): 212, 139, 88, (78,410,0): 215, 139, 87, (78,411,0): 219, 142, 88, (78,412,0): 225, 144, 89, (78,413,0): 230, 148, 92, (78,414,0): 235, 150, 93, (78,415,0): 234, 154, 93, (78,416,0): 233, 160, 92, (78,417,0): 230, 161, 92, (78,418,0): 229, 162, 94, (78,419,0): 226, 161, 95, (78,420,0): 221, 160, 95, (78,421,0): 218, 158, 95, (78,422,0): 213, 157, 96, (78,423,0): 208, 157, 94, (78,424,0): 209, 159, 98, (78,425,0): 207, 159, 97, (78,426,0): 206, 158, 96, (78,427,0): 205, 157, 95, (78,428,0): 205, 157, 95, (78,429,0): 206, 158, 96, (78,430,0): 207, 159, 95, (78,431,0): 205, 161, 100, (78,432,0): 197, 161, 103, (78,433,0): 194, 162, 105, (78,434,0): 196, 161, 105, (78,435,0): 196, 161, 103, (78,436,0): 196, 160, 100, (78,437,0): 196, 160, 98, (78,438,0): 198, 160, 97, (78,439,0): 198, 160, 95, (78,440,0): 198, 159, 92, (78,441,0): 198, 159, 90, (78,442,0): 201, 161, 89, (78,443,0): 207, 165, 91, (78,444,0): 212, 168, 95, (78,445,0): 212, 168, 93, (78,446,0): 209, 165, 90, (78,447,0): 206, 162, 89, (78,448,0): 198, 153, 88, (78,449,0): 194, 148, 88, (78,450,0): 188, 142, 82, (78,451,0): 184, 139, 80, (78,452,0): 181, 138, 83, (78,453,0): 179, 138, 84, (78,454,0): 175, 135, 84, (78,455,0): 170, 132, 83, (78,456,0): 163, 125, 80, (78,457,0): 154, 119, 77, (78,458,0): 146, 111, 71, (78,459,0): 139, 105, 68, (78,460,0): 136, 103, 68, (78,461,0): 137, 104, 71, (78,462,0): 134, 103, 72, (78,463,0): 132, 103, 73, (78,464,0): 128, 102, 75, (78,465,0): 126, 102, 76, (78,466,0): 122, 101, 74, (78,467,0): 121, 100, 73, (78,468,0): 119, 99, 72, (78,469,0): 117, 100, 72, (78,470,0): 118, 101, 73, (78,471,0): 118, 101, 73, (78,472,0): 120, 103, 75, (78,473,0): 120, 103, 75, (78,474,0): 123, 102, 75, (78,475,0): 123, 102, 75, (78,476,0): 126, 100, 75, (78,477,0): 124, 98, 73, (78,478,0): 123, 95, 71, (78,479,0): 122, 94, 72, (78,480,0): 116, 91, 69, (78,481,0): 114, 92, 69, (78,482,0): 116, 91, 69, (78,483,0): 116, 91, 69, (78,484,0): 118, 89, 71, (78,485,0): 118, 89, 71, (78,486,0): 121, 90, 72, (78,487,0): 121, 90, 72, (78,488,0): 118, 86, 71, (78,489,0): 120, 88, 73, (78,490,0): 119, 90, 76, (78,491,0): 115, 87, 73, (78,492,0): 111, 83, 69, (78,493,0): 107, 81, 66, (78,494,0): 105, 82, 68, (78,495,0): 106, 83, 67, (78,496,0): 112, 89, 73, (78,497,0): 113, 90, 72, (78,498,0): 115, 92, 74, (78,499,0): 117, 94, 76, (78,500,0): 118, 97, 78, (78,501,0): 118, 97, 78, (78,502,0): 118, 97, 78, (78,503,0): 118, 97, 78, (78,504,0): 113, 95, 75, (78,505,0): 113, 95, 75, (78,506,0): 112, 95, 75, (78,507,0): 112, 95, 75, (78,508,0): 112, 95, 75, (78,509,0): 112, 95, 75, (78,510,0): 111, 96, 75, (78,511,0): 112, 95, 75, (78,512,0): 111, 90, 71, (78,513,0): 113, 90, 72, (78,514,0): 113, 92, 73, (78,515,0): 113, 92, 73, (78,516,0): 109, 90, 73, (78,517,0): 107, 88, 71, (78,518,0): 104, 87, 69, (78,519,0): 103, 86, 68, (78,520,0): 102, 86, 70, (78,521,0): 102, 86, 70, (78,522,0): 100, 87, 71, (78,523,0): 99, 86, 70, (78,524,0): 98, 86, 70, (78,525,0): 97, 85, 69, (78,526,0): 95, 86, 71, (78,527,0): 96, 84, 70, (78,528,0): 97, 83, 70, (78,529,0): 100, 84, 71, (78,530,0): 100, 84, 69, (78,531,0): 101, 85, 70, (78,532,0): 102, 84, 70, (78,533,0): 103, 85, 71, (78,534,0): 104, 85, 70, (78,535,0): 104, 85, 70, (78,536,0): 108, 89, 72, (78,537,0): 107, 88, 71, (78,538,0): 108, 87, 70, (78,539,0): 108, 87, 70, (78,540,0): 110, 87, 69, (78,541,0): 112, 89, 71, (78,542,0): 114, 91, 73, (78,543,0): 117, 92, 70, (78,544,0): 124, 94, 70, (78,545,0): 125, 94, 66, (78,546,0): 126, 94, 69, (78,547,0): 126, 94, 69, (78,548,0): 126, 94, 69, (78,549,0): 125, 93, 68, (78,550,0): 123, 93, 69, (78,551,0): 122, 92, 68, (78,552,0): 123, 95, 73, (78,553,0): 122, 94, 72, (78,554,0): 121, 95, 72, (78,555,0): 120, 94, 71, (78,556,0): 119, 92, 71, (78,557,0): 119, 92, 71, (78,558,0): 118, 91, 70, (78,559,0): 118, 91, 70, (78,560,0): 119, 92, 75, (78,561,0): 117, 90, 73, (78,562,0): 115, 88, 71, (78,563,0): 112, 85, 68, (78,564,0): 109, 83, 68, (78,565,0): 107, 81, 66, (78,566,0): 107, 81, 68, (78,567,0): 107, 80, 69, (78,568,0): 98, 74, 64, (78,569,0): 97, 73, 63, (78,570,0): 93, 70, 62, (78,571,0): 89, 66, 58, (78,572,0): 87, 64, 58, (78,573,0): 85, 62, 56, (78,574,0): 82, 62, 55, (78,575,0): 82, 61, 56, (78,576,0): 78, 58, 59, (78,577,0): 78, 57, 62, (78,578,0): 76, 55, 60, (78,579,0): 73, 52, 57, (78,580,0): 70, 49, 54, (78,581,0): 66, 45, 50, (78,582,0): 62, 41, 46, (78,583,0): 60, 39, 44, (78,584,0): 64, 43, 48, (78,585,0): 65, 44, 49, (78,586,0): 66, 45, 50, (78,587,0): 67, 46, 51, (78,588,0): 69, 48, 53, (78,589,0): 70, 49, 54, (78,590,0): 71, 50, 55, (78,591,0): 73, 51, 53, (78,592,0): 74, 50, 48, (78,593,0): 74, 49, 44, (78,594,0): 74, 49, 44, (78,595,0): 73, 48, 43, (78,596,0): 71, 46, 41, (78,597,0): 70, 45, 40, (78,598,0): 70, 45, 40, (78,599,0): 69, 44, 39, (79,0,0): 30, 26, 41, (79,1,0): 30, 26, 41, (79,2,0): 31, 27, 41, (79,3,0): 33, 27, 41, (79,4,0): 34, 28, 42, (79,5,0): 34, 28, 42, (79,6,0): 35, 29, 43, (79,7,0): 36, 28, 41, (79,8,0): 38, 30, 43, (79,9,0): 40, 29, 43, (79,10,0): 40, 29, 43, (79,11,0): 40, 29, 43, (79,12,0): 40, 30, 41, (79,13,0): 41, 29, 41, (79,14,0): 41, 29, 41, (79,15,0): 41, 29, 41, (79,16,0): 42, 28, 41, (79,17,0): 42, 29, 39, (79,18,0): 42, 28, 41, (79,19,0): 42, 29, 39, (79,20,0): 42, 29, 39, (79,21,0): 42, 29, 39, (79,22,0): 42, 29, 39, (79,23,0): 42, 29, 39, (79,24,0): 46, 30, 41, (79,25,0): 46, 30, 41, (79,26,0): 45, 29, 40, (79,27,0): 45, 29, 40, (79,28,0): 45, 29, 40, (79,29,0): 47, 31, 42, (79,30,0): 48, 32, 43, (79,31,0): 49, 33, 44, (79,32,0): 52, 34, 46, (79,33,0): 52, 34, 46, (79,34,0): 52, 34, 46, (79,35,0): 52, 34, 46, (79,36,0): 52, 34, 46, (79,37,0): 52, 34, 46, (79,38,0): 52, 34, 46, (79,39,0): 52, 34, 46, (79,40,0): 53, 35, 47, (79,41,0): 52, 34, 46, (79,42,0): 52, 34, 46, (79,43,0): 51, 33, 45, (79,44,0): 50, 32, 46, (79,45,0): 49, 31, 43, (79,46,0): 49, 31, 45, (79,47,0): 48, 30, 42, (79,48,0): 52, 34, 46, (79,49,0): 51, 34, 44, (79,50,0): 52, 32, 44, (79,51,0): 49, 31, 43, (79,52,0): 49, 31, 43, (79,53,0): 50, 32, 44, (79,54,0): 51, 33, 45, (79,55,0): 52, 34, 46, (79,56,0): 50, 32, 44, (79,57,0): 50, 32, 44, (79,58,0): 49, 31, 43, (79,59,0): 48, 30, 42, (79,60,0): 47, 29, 41, (79,61,0): 46, 28, 40, (79,62,0): 45, 27, 41, (79,63,0): 44, 28, 41, (79,64,0): 39, 27, 41, (79,65,0): 38, 27, 41, (79,66,0): 38, 26, 40, (79,67,0): 37, 26, 40, (79,68,0): 36, 25, 39, (79,69,0): 36, 25, 39, (79,70,0): 33, 25, 40, (79,71,0): 33, 25, 40, (79,72,0): 34, 25, 42, (79,73,0): 34, 25, 42, (79,74,0): 33, 26, 42, (79,75,0): 32, 25, 41, (79,76,0): 32, 25, 43, (79,77,0): 29, 25, 40, (79,78,0): 31, 24, 42, (79,79,0): 31, 24, 42, (79,80,0): 30, 21, 40, (79,81,0): 30, 21, 40, (79,82,0): 29, 20, 39, (79,83,0): 29, 20, 39, (79,84,0): 28, 19, 38, (79,85,0): 28, 19, 38, (79,86,0): 27, 18, 37, (79,87,0): 27, 18, 37, (79,88,0): 26, 17, 36, (79,89,0): 25, 17, 38, (79,90,0): 26, 17, 38, (79,91,0): 25, 17, 38, (79,92,0): 25, 17, 38, (79,93,0): 25, 17, 38, (79,94,0): 25, 17, 38, (79,95,0): 25, 17, 38, (79,96,0): 27, 17, 41, (79,97,0): 27, 17, 41, (79,98,0): 26, 18, 41, (79,99,0): 26, 18, 41, (79,100,0): 26, 18, 41, (79,101,0): 26, 18, 41, (79,102,0): 26, 18, 41, (79,103,0): 24, 19, 41, (79,104,0): 23, 18, 40, (79,105,0): 22, 17, 39, (79,106,0): 22, 17, 39, (79,107,0): 21, 16, 38, (79,108,0): 20, 17, 38, (79,109,0): 19, 16, 37, (79,110,0): 19, 16, 37, (79,111,0): 19, 16, 37, (79,112,0): 22, 19, 40, (79,113,0): 22, 19, 40, (79,114,0): 22, 19, 40, (79,115,0): 22, 19, 40, (79,116,0): 22, 19, 40, (79,117,0): 22, 19, 40, (79,118,0): 22, 19, 40, (79,119,0): 22, 19, 40, (79,120,0): 23, 20, 41, (79,121,0): 23, 20, 41, (79,122,0): 22, 19, 40, (79,123,0): 22, 19, 40, (79,124,0): 21, 18, 39, (79,125,0): 21, 18, 39, (79,126,0): 20, 17, 38, (79,127,0): 20, 17, 38, (79,128,0): 23, 18, 40, (79,129,0): 23, 18, 40, (79,130,0): 23, 18, 40, (79,131,0): 23, 18, 40, (79,132,0): 23, 18, 40, (79,133,0): 23, 18, 40, (79,134,0): 23, 18, 40, (79,135,0): 23, 18, 40, (79,136,0): 24, 19, 41, (79,137,0): 26, 18, 39, (79,138,0): 26, 18, 39, (79,139,0): 26, 18, 39, (79,140,0): 26, 18, 39, (79,141,0): 26, 18, 39, (79,142,0): 26, 18, 39, (79,143,0): 27, 18, 39, (79,144,0): 32, 20, 40, (79,145,0): 32, 20, 40, (79,146,0): 32, 20, 40, (79,147,0): 33, 21, 41, (79,148,0): 34, 22, 42, (79,149,0): 34, 22, 42, (79,150,0): 34, 22, 42, (79,151,0): 35, 23, 43, (79,152,0): 33, 21, 41, (79,153,0): 33, 21, 41, (79,154,0): 33, 21, 41, (79,155,0): 33, 21, 41, (79,156,0): 33, 21, 41, (79,157,0): 33, 21, 41, (79,158,0): 33, 21, 41, (79,159,0): 33, 21, 41, (79,160,0): 33, 24, 43, (79,161,0): 32, 25, 43, (79,162,0): 32, 25, 43, (79,163,0): 32, 25, 43, (79,164,0): 32, 25, 43, (79,165,0): 32, 25, 43, (79,166,0): 32, 25, 43, (79,167,0): 32, 25, 43, (79,168,0): 32, 25, 43, (79,169,0): 32, 25, 43, (79,170,0): 32, 25, 43, (79,171,0): 32, 25, 43, (79,172,0): 32, 25, 43, (79,173,0): 32, 25, 43, (79,174,0): 32, 25, 43, (79,175,0): 32, 25, 43, (79,176,0): 31, 23, 44, (79,177,0): 31, 23, 46, (79,178,0): 31, 23, 46, (79,179,0): 32, 24, 47, (79,180,0): 32, 24, 47, (79,181,0): 33, 25, 48, (79,182,0): 33, 25, 48, (79,183,0): 34, 26, 49, (79,184,0): 32, 24, 47, (79,185,0): 32, 24, 47, (79,186,0): 32, 24, 47, (79,187,0): 32, 24, 47, (79,188,0): 32, 24, 47, (79,189,0): 32, 24, 47, (79,190,0): 32, 24, 47, (79,191,0): 32, 24, 47, (79,192,0): 34, 26, 47, (79,193,0): 34, 27, 45, (79,194,0): 35, 26, 47, (79,195,0): 36, 27, 46, (79,196,0): 36, 27, 46, (79,197,0): 37, 28, 47, (79,198,0): 37, 28, 47, (79,199,0): 37, 28, 47, (79,200,0): 38, 29, 48, (79,201,0): 37, 28, 47, (79,202,0): 36, 27, 46, (79,203,0): 35, 26, 45, (79,204,0): 36, 27, 46, (79,205,0): 37, 28, 47, (79,206,0): 42, 30, 50, (79,207,0): 43, 32, 49, (79,208,0): 43, 30, 48, (79,209,0): 45, 30, 49, (79,210,0): 47, 30, 48, (79,211,0): 48, 31, 49, (79,212,0): 48, 31, 49, (79,213,0): 49, 32, 50, (79,214,0): 50, 32, 48, (79,215,0): 50, 32, 48, (79,216,0): 50, 29, 46, (79,217,0): 50, 29, 44, (79,218,0): 50, 29, 44, (79,219,0): 51, 30, 45, (79,220,0): 52, 30, 43, (79,221,0): 53, 31, 44, (79,222,0): 53, 31, 44, (79,223,0): 54, 32, 44, (79,224,0): 55, 32, 42, (79,225,0): 55, 32, 40, (79,226,0): 56, 33, 41, (79,227,0): 56, 33, 41, (79,228,0): 57, 34, 40, (79,229,0): 57, 34, 40, (79,230,0): 60, 35, 41, (79,231,0): 60, 35, 39, (79,232,0): 63, 38, 44, (79,233,0): 64, 37, 42, (79,234,0): 64, 37, 42, (79,235,0): 64, 37, 42, (79,236,0): 64, 38, 41, (79,237,0): 64, 38, 41, (79,238,0): 64, 38, 41, (79,239,0): 66, 37, 41, (79,240,0): 71, 39, 44, (79,241,0): 74, 37, 44, (79,242,0): 74, 38, 42, (79,243,0): 75, 39, 43, (79,244,0): 75, 39, 43, (79,245,0): 78, 39, 44, (79,246,0): 78, 39, 44, (79,247,0): 78, 39, 42, (79,248,0): 81, 40, 44, (79,249,0): 81, 40, 44, (79,250,0): 81, 40, 44, (79,251,0): 82, 40, 44, (79,252,0): 82, 40, 42, (79,253,0): 82, 40, 42, (79,254,0): 82, 40, 42, (79,255,0): 82, 40, 42, (79,256,0): 81, 39, 41, (79,257,0): 81, 39, 40, (79,258,0): 81, 39, 41, (79,259,0): 82, 40, 41, (79,260,0): 84, 39, 42, (79,261,0): 85, 41, 42, (79,262,0): 85, 40, 43, (79,263,0): 85, 41, 42, (79,264,0): 87, 41, 44, (79,265,0): 86, 40, 42, (79,266,0): 85, 39, 42, (79,267,0): 85, 39, 41, (79,268,0): 88, 39, 43, (79,269,0): 89, 40, 43, (79,270,0): 90, 41, 45, (79,271,0): 91, 42, 45, (79,272,0): 92, 43, 46, (79,273,0): 92, 43, 46, (79,274,0): 92, 43, 46, (79,275,0): 93, 44, 47, (79,276,0): 93, 44, 47, (79,277,0): 94, 45, 48, (79,278,0): 94, 45, 48, (79,279,0): 95, 47, 47, (79,280,0): 95, 47, 47, (79,281,0): 95, 47, 47, (79,282,0): 95, 47, 47, (79,283,0): 96, 48, 48, (79,284,0): 97, 49, 49, (79,285,0): 100, 52, 52, (79,286,0): 102, 54, 54, (79,287,0): 103, 55, 53, (79,288,0): 109, 60, 55, (79,289,0): 112, 64, 54, (79,290,0): 114, 68, 55, (79,291,0): 115, 69, 54, (79,292,0): 114, 71, 54, (79,293,0): 119, 74, 53, (79,294,0): 125, 79, 56, (79,295,0): 130, 83, 57, (79,296,0): 137, 83, 55, (79,297,0): 146, 90, 57, (79,298,0): 161, 97, 59, (79,299,0): 174, 106, 59, (79,300,0): 195, 120, 65, (79,301,0): 213, 133, 72, (79,302,0): 220, 137, 69, (79,303,0): 213, 134, 65, (79,304,0): 194, 127, 59, (79,305,0): 184, 122, 61, (79,306,0): 176, 117, 59, (79,307,0): 170, 113, 58, (79,308,0): 164, 113, 60, (79,309,0): 161, 111, 60, (79,310,0): 154, 109, 54, (79,311,0): 149, 106, 53, (79,312,0): 145, 103, 53, (79,313,0): 141, 100, 54, (79,314,0): 138, 96, 58, (79,315,0): 135, 92, 58, (79,316,0): 131, 90, 58, (79,317,0): 131, 90, 58, (79,318,0): 132, 92, 56, (79,319,0): 132, 94, 57, (79,320,0): 133, 95, 59, (79,321,0): 132, 96, 62, (79,322,0): 134, 98, 62, (79,323,0): 136, 100, 64, (79,324,0): 140, 105, 67, (79,325,0): 145, 110, 72, (79,326,0): 148, 114, 76, (79,327,0): 150, 117, 76, (79,328,0): 148, 117, 73, (79,329,0): 149, 118, 74, (79,330,0): 148, 120, 73, (79,331,0): 149, 121, 74, (79,332,0): 150, 122, 75, (79,333,0): 150, 122, 74, (79,334,0): 149, 121, 74, (79,335,0): 147, 120, 73, (79,336,0): 144, 122, 75, (79,337,0): 143, 122, 75, (79,338,0): 143, 122, 75, (79,339,0): 144, 123, 76, (79,340,0): 146, 125, 80, (79,341,0): 148, 127, 82, (79,342,0): 151, 130, 87, (79,343,0): 152, 131, 88, (79,344,0): 149, 127, 86, (79,345,0): 149, 127, 86, (79,346,0): 148, 126, 87, (79,347,0): 147, 125, 88, (79,348,0): 146, 124, 87, (79,349,0): 145, 123, 86, (79,350,0): 144, 122, 85, (79,351,0): 145, 121, 87, (79,352,0): 145, 118, 88, (79,353,0): 145, 118, 88, (79,354,0): 145, 118, 89, (79,355,0): 144, 117, 88, (79,356,0): 146, 116, 88, (79,357,0): 145, 115, 87, (79,358,0): 145, 115, 87, (79,359,0): 144, 114, 86, (79,360,0): 147, 116, 88, (79,361,0): 147, 116, 88, (79,362,0): 151, 117, 90, (79,363,0): 152, 118, 91, (79,364,0): 152, 118, 91, (79,365,0): 151, 117, 90, (79,366,0): 151, 115, 89, (79,367,0): 151, 115, 91, (79,368,0): 154, 118, 94, (79,369,0): 155, 117, 94, (79,370,0): 156, 118, 95, (79,371,0): 158, 117, 95, (79,372,0): 160, 118, 96, (79,373,0): 163, 118, 99, (79,374,0): 164, 119, 100, (79,375,0): 164, 119, 100, (79,376,0): 165, 120, 101, (79,377,0): 165, 120, 99, (79,378,0): 165, 120, 99, (79,379,0): 166, 121, 100, (79,380,0): 167, 122, 101, (79,381,0): 167, 122, 99, (79,382,0): 168, 122, 99, (79,383,0): 169, 122, 102, (79,384,0): 166, 121, 102, (79,385,0): 168, 123, 104, (79,386,0): 171, 125, 102, (79,387,0): 175, 128, 102, (79,388,0): 182, 131, 104, (79,389,0): 187, 134, 103, (79,390,0): 194, 135, 103, (79,391,0): 198, 135, 100, (79,392,0): 202, 138, 102, (79,393,0): 207, 140, 98, (79,394,0): 214, 143, 99, (79,395,0): 221, 150, 98, (79,396,0): 231, 156, 99, (79,397,0): 237, 163, 100, (79,398,0): 244, 169, 101, (79,399,0): 250, 171, 102, (79,400,0): 249, 165, 103, (79,401,0): 246, 160, 101, (79,402,0): 240, 155, 98, (79,403,0): 234, 152, 94, (79,404,0): 231, 150, 95, (79,405,0): 226, 147, 91, (79,406,0): 219, 139, 86, (79,407,0): 212, 135, 81, (79,408,0): 218, 143, 88, (79,409,0): 218, 143, 86, (79,410,0): 220, 144, 86, (79,411,0): 222, 146, 88, (79,412,0): 227, 148, 89, (79,413,0): 231, 153, 91, (79,414,0): 235, 155, 92, (79,415,0): 236, 158, 92, (79,416,0): 233, 163, 94, (79,417,0): 231, 164, 94, (79,418,0): 231, 164, 96, (79,419,0): 227, 162, 94, (79,420,0): 223, 162, 95, (79,421,0): 219, 160, 94, (79,422,0): 213, 158, 94, (79,423,0): 209, 158, 93, (79,424,0): 211, 160, 97, (79,425,0): 209, 159, 96, (79,426,0): 206, 158, 96, (79,427,0): 205, 157, 95, (79,428,0): 206, 158, 96, (79,429,0): 207, 159, 97, (79,430,0): 209, 161, 97, (79,431,0): 207, 163, 100, (79,432,0): 203, 163, 104, (79,433,0): 200, 164, 106, (79,434,0): 200, 164, 106, (79,435,0): 201, 162, 103, (79,436,0): 201, 162, 103, (79,437,0): 200, 162, 100, (79,438,0): 200, 162, 99, (79,439,0): 200, 162, 97, (79,440,0): 198, 159, 92, (79,441,0): 199, 160, 91, (79,442,0): 202, 162, 92, (79,443,0): 209, 167, 93, (79,444,0): 213, 171, 95, (79,445,0): 214, 170, 95, (79,446,0): 211, 168, 90, (79,447,0): 207, 163, 88, (79,448,0): 200, 152, 86, (79,449,0): 196, 148, 86, (79,450,0): 191, 142, 83, (79,451,0): 186, 140, 80, (79,452,0): 183, 138, 81, (79,453,0): 180, 137, 84, (79,454,0): 175, 134, 82, (79,455,0): 172, 132, 83, (79,456,0): 162, 125, 80, (79,457,0): 154, 119, 77, (79,458,0): 144, 110, 72, (79,459,0): 138, 106, 68, (79,460,0): 135, 105, 71, (79,461,0): 136, 105, 74, (79,462,0): 135, 106, 74, (79,463,0): 133, 106, 76, (79,464,0): 129, 103, 76, (79,465,0): 127, 103, 75, (79,466,0): 124, 103, 74, (79,467,0): 122, 101, 72, (79,468,0): 120, 100, 73, (79,469,0): 120, 100, 73, (79,470,0): 121, 101, 74, (79,471,0): 121, 101, 74, (79,472,0): 123, 103, 76, (79,473,0): 123, 103, 76, (79,474,0): 124, 103, 76, (79,475,0): 126, 102, 76, (79,476,0): 126, 100, 75, (79,477,0): 124, 96, 72, (79,478,0): 124, 94, 70, (79,479,0): 121, 93, 71, (79,480,0): 116, 92, 68, (79,481,0): 114, 92, 69, (79,482,0): 116, 91, 69, (79,483,0): 116, 91, 69, (79,484,0): 118, 91, 70, (79,485,0): 119, 91, 70, (79,486,0): 121, 90, 72, (79,487,0): 121, 90, 72, (79,488,0): 119, 88, 70, (79,489,0): 121, 90, 72, (79,490,0): 121, 92, 76, (79,491,0): 118, 89, 73, (79,492,0): 112, 85, 68, (79,493,0): 109, 82, 65, (79,494,0): 108, 82, 67, (79,495,0): 110, 84, 67, (79,496,0): 114, 92, 71, (79,497,0): 115, 93, 70, (79,498,0): 117, 95, 72, (79,499,0): 118, 96, 73, (79,500,0): 118, 98, 74, (79,501,0): 118, 97, 76, (79,502,0): 118, 97, 76, (79,503,0): 117, 96, 75, (79,504,0): 113, 95, 73, (79,505,0): 113, 95, 73, (79,506,0): 112, 96, 73, (79,507,0): 112, 95, 75, (79,508,0): 112, 95, 75, (79,509,0): 112, 95, 75, (79,510,0): 111, 96, 75, (79,511,0): 112, 95, 75, (79,512,0): 110, 89, 72, (79,513,0): 111, 90, 73, (79,514,0): 112, 91, 74, (79,515,0): 112, 91, 74, (79,516,0): 109, 90, 73, (79,517,0): 107, 88, 71, (79,518,0): 103, 86, 70, (79,519,0): 101, 84, 68, (79,520,0): 103, 86, 70, (79,521,0): 102, 86, 70, (79,522,0): 101, 85, 70, (79,523,0): 101, 85, 70, (79,524,0): 98, 85, 69, (79,525,0): 98, 85, 69, (79,526,0): 96, 84, 70, (79,527,0): 97, 83, 70, (79,528,0): 97, 83, 70, (79,529,0): 99, 83, 70, (79,530,0): 100, 84, 69, (79,531,0): 100, 84, 69, (79,532,0): 102, 84, 70, (79,533,0): 102, 84, 70, (79,534,0): 104, 85, 70, (79,535,0): 104, 85, 70, (79,536,0): 110, 91, 74, (79,537,0): 111, 90, 73, (79,538,0): 109, 88, 71, (79,539,0): 109, 86, 70, (79,540,0): 110, 87, 69, (79,541,0): 111, 88, 70, (79,542,0): 115, 89, 72, (79,543,0): 117, 90, 71, (79,544,0): 121, 91, 67, (79,545,0): 123, 91, 66, (79,546,0): 124, 92, 67, (79,547,0): 125, 93, 68, (79,548,0): 125, 93, 68, (79,549,0): 124, 92, 69, (79,550,0): 122, 92, 68, (79,551,0): 121, 90, 69, (79,552,0): 124, 96, 74, (79,553,0): 124, 96, 74, (79,554,0): 122, 96, 73, (79,555,0): 121, 94, 73, (79,556,0): 120, 93, 72, (79,557,0): 119, 92, 71, (79,558,0): 118, 91, 72, (79,559,0): 118, 91, 72, (79,560,0): 117, 91, 74, (79,561,0): 116, 90, 75, (79,562,0): 113, 87, 72, (79,563,0): 111, 85, 70, (79,564,0): 107, 84, 70, (79,565,0): 107, 84, 70, (79,566,0): 107, 84, 70, (79,567,0): 107, 83, 71, (79,568,0): 100, 76, 66, (79,569,0): 97, 75, 64, (79,570,0): 94, 71, 63, (79,571,0): 90, 67, 59, (79,572,0): 86, 63, 57, (79,573,0): 84, 61, 55, (79,574,0): 81, 61, 54, (79,575,0): 80, 59, 54, (79,576,0): 77, 55, 57, (79,577,0): 75, 55, 57, (79,578,0): 73, 53, 55, (79,579,0): 70, 50, 52, (79,580,0): 67, 47, 49, (79,581,0): 62, 42, 44, (79,582,0): 58, 38, 40, (79,583,0): 56, 36, 38, (79,584,0): 63, 43, 45, (79,585,0): 64, 43, 48, (79,586,0): 65, 44, 49, (79,587,0): 66, 45, 50, (79,588,0): 67, 46, 51, (79,589,0): 67, 48, 52, (79,590,0): 69, 48, 53, (79,591,0): 69, 49, 51, (79,592,0): 73, 49, 49, (79,593,0): 73, 49, 47, (79,594,0): 72, 48, 46, (79,595,0): 71, 47, 45, (79,596,0): 70, 46, 44, (79,597,0): 69, 45, 41, (79,598,0): 68, 44, 40, (79,599,0): 68, 44, 40, (80,0,0): 30, 28, 42, (80,1,0): 30, 28, 42, (80,2,0): 30, 28, 42, (80,3,0): 31, 27, 42, (80,4,0): 31, 27, 42, (80,5,0): 31, 27, 42, (80,6,0): 31, 27, 42, (80,7,0): 33, 27, 41, (80,8,0): 35, 29, 43, (80,9,0): 36, 28, 43, (80,10,0): 36, 28, 43, (80,11,0): 36, 28, 43, (80,12,0): 36, 28, 43, (80,13,0): 38, 27, 43, (80,14,0): 38, 27, 43, (80,15,0): 39, 26, 43, (80,16,0): 44, 27, 43, (80,17,0): 44, 28, 41, (80,18,0): 44, 27, 43, (80,19,0): 45, 29, 42, (80,20,0): 45, 29, 42, (80,21,0): 46, 30, 43, (80,22,0): 46, 30, 43, (80,23,0): 46, 30, 43, (80,24,0): 43, 30, 40, (80,25,0): 43, 30, 40, (80,26,0): 44, 31, 40, (80,27,0): 44, 31, 40, (80,28,0): 45, 32, 41, (80,29,0): 45, 32, 41, (80,30,0): 46, 33, 42, (80,31,0): 46, 33, 42, (80,32,0): 51, 34, 44, (80,33,0): 53, 33, 44, (80,34,0): 53, 33, 44, (80,35,0): 53, 33, 44, (80,36,0): 53, 33, 44, (80,37,0): 53, 33, 44, (80,38,0): 53, 33, 45, (80,39,0): 53, 33, 45, (80,40,0): 53, 32, 47, (80,41,0): 53, 32, 47, (80,42,0): 53, 32, 47, (80,43,0): 53, 32, 47, (80,44,0): 53, 32, 49, (80,45,0): 53, 32, 47, (80,46,0): 53, 32, 49, (80,47,0): 53, 32, 47, (80,48,0): 52, 32, 43, (80,49,0): 52, 32, 41, (80,50,0): 53, 31, 43, (80,51,0): 52, 32, 43, (80,52,0): 53, 33, 44, (80,53,0): 53, 33, 44, (80,54,0): 53, 33, 45, (80,55,0): 53, 33, 45, (80,56,0): 50, 32, 44, (80,57,0): 50, 32, 44, (80,58,0): 48, 32, 45, (80,59,0): 48, 32, 45, (80,60,0): 47, 31, 44, (80,61,0): 47, 31, 44, (80,62,0): 47, 30, 46, (80,63,0): 44, 30, 45, (80,64,0): 40, 29, 43, (80,65,0): 37, 29, 44, (80,66,0): 37, 26, 42, (80,67,0): 34, 26, 41, (80,68,0): 34, 26, 41, (80,69,0): 35, 27, 42, (80,70,0): 37, 29, 44, (80,71,0): 38, 30, 45, (80,72,0): 34, 26, 41, (80,73,0): 34, 26, 41, (80,74,0): 34, 26, 41, (80,75,0): 33, 25, 40, (80,76,0): 33, 24, 41, (80,77,0): 31, 25, 39, (80,78,0): 32, 23, 40, (80,79,0): 32, 23, 40, (80,80,0): 29, 20, 39, (80,81,0): 30, 18, 38, (80,82,0): 28, 19, 38, (80,83,0): 27, 18, 37, (80,84,0): 27, 18, 39, (80,85,0): 26, 17, 38, (80,86,0): 25, 17, 38, (80,87,0): 25, 17, 38, (80,88,0): 26, 18, 39, (80,89,0): 24, 19, 41, (80,90,0): 26, 18, 41, (80,91,0): 24, 19, 41, (80,92,0): 24, 19, 41, (80,93,0): 24, 19, 41, (80,94,0): 24, 19, 42, (80,95,0): 24, 19, 42, (80,96,0): 20, 15, 38, (80,97,0): 21, 16, 39, (80,98,0): 21, 16, 39, (80,99,0): 22, 17, 40, (80,100,0): 23, 18, 41, (80,101,0): 24, 19, 42, (80,102,0): 24, 19, 42, (80,103,0): 24, 20, 43, (80,104,0): 20, 16, 39, (80,105,0): 20, 16, 39, (80,106,0): 19, 15, 38, (80,107,0): 19, 15, 38, (80,108,0): 18, 14, 37, (80,109,0): 18, 14, 37, (80,110,0): 18, 14, 37, (80,111,0): 17, 13, 36, (80,112,0): 20, 17, 38, (80,113,0): 20, 17, 38, (80,114,0): 20, 17, 38, (80,115,0): 20, 17, 38, (80,116,0): 20, 17, 38, (80,117,0): 20, 17, 38, (80,118,0): 20, 17, 38, (80,119,0): 20, 17, 38, (80,120,0): 18, 15, 36, (80,121,0): 18, 15, 36, (80,122,0): 19, 16, 37, (80,123,0): 20, 17, 38, (80,124,0): 20, 17, 38, (80,125,0): 21, 18, 39, (80,126,0): 22, 19, 40, (80,127,0): 22, 19, 40, (80,128,0): 19, 17, 38, (80,129,0): 19, 17, 38, (80,130,0): 20, 18, 39, (80,131,0): 20, 18, 39, (80,132,0): 22, 19, 38, (80,133,0): 22, 19, 38, (80,134,0): 22, 19, 38, (80,135,0): 23, 20, 39, (80,136,0): 23, 20, 39, (80,137,0): 24, 20, 37, (80,138,0): 24, 20, 37, (80,139,0): 24, 20, 37, (80,140,0): 24, 20, 37, (80,141,0): 24, 20, 37, (80,142,0): 26, 19, 35, (80,143,0): 27, 18, 35, (80,144,0): 32, 21, 38, (80,145,0): 33, 20, 38, (80,146,0): 34, 21, 39, (80,147,0): 34, 21, 39, (80,148,0): 35, 22, 40, (80,149,0): 35, 22, 40, (80,150,0): 36, 23, 41, (80,151,0): 36, 23, 41, (80,152,0): 37, 24, 42, (80,153,0): 36, 23, 41, (80,154,0): 35, 22, 40, (80,155,0): 33, 20, 38, (80,156,0): 33, 20, 38, (80,157,0): 33, 20, 38, (80,158,0): 34, 21, 39, (80,159,0): 33, 22, 39, (80,160,0): 31, 22, 39, (80,161,0): 32, 23, 40, (80,162,0): 32, 23, 40, (80,163,0): 33, 24, 41, (80,164,0): 33, 24, 41, (80,165,0): 34, 25, 42, (80,166,0): 34, 25, 42, (80,167,0): 34, 25, 42, (80,168,0): 33, 24, 41, (80,169,0): 33, 24, 41, (80,170,0): 32, 23, 40, (80,171,0): 32, 23, 40, (80,172,0): 31, 22, 39, (80,173,0): 31, 22, 39, (80,174,0): 30, 21, 38, (80,175,0): 30, 21, 40, (80,176,0): 30, 22, 43, (80,177,0): 30, 22, 45, (80,178,0): 29, 21, 44, (80,179,0): 29, 21, 44, (80,180,0): 29, 21, 44, (80,181,0): 31, 23, 46, (80,182,0): 32, 24, 47, (80,183,0): 33, 25, 48, (80,184,0): 32, 24, 47, (80,185,0): 32, 24, 47, (80,186,0): 32, 24, 47, (80,187,0): 32, 24, 47, (80,188,0): 32, 24, 47, (80,189,0): 32, 24, 47, (80,190,0): 32, 24, 47, (80,191,0): 32, 24, 47, (80,192,0): 32, 24, 47, (80,193,0): 30, 25, 45, (80,194,0): 33, 25, 48, (80,195,0): 33, 25, 46, (80,196,0): 34, 26, 47, (80,197,0): 34, 26, 47, (80,198,0): 36, 27, 48, (80,199,0): 36, 27, 48, (80,200,0): 36, 27, 46, (80,201,0): 36, 27, 46, (80,202,0): 39, 28, 45, (80,203,0): 39, 28, 45, (80,204,0): 40, 29, 46, (80,205,0): 40, 29, 46, (80,206,0): 42, 29, 47, (80,207,0): 42, 29, 47, (80,208,0): 43, 28, 47, (80,209,0): 43, 28, 47, (80,210,0): 46, 29, 48, (80,211,0): 46, 29, 48, (80,212,0): 47, 30, 48, (80,213,0): 47, 30, 48, (80,214,0): 49, 30, 49, (80,215,0): 49, 31, 47, (80,216,0): 50, 29, 46, (80,217,0): 50, 29, 46, (80,218,0): 50, 29, 44, (80,219,0): 51, 30, 45, (80,220,0): 52, 29, 45, (80,221,0): 53, 30, 46, (80,222,0): 53, 31, 44, (80,223,0): 53, 31, 43, (80,224,0): 51, 28, 38, (80,225,0): 51, 28, 36, (80,226,0): 52, 29, 37, (80,227,0): 53, 30, 38, (80,228,0): 53, 30, 38, (80,229,0): 54, 31, 39, (80,230,0): 55, 32, 40, (80,231,0): 55, 32, 38, (80,232,0): 53, 30, 38, (80,233,0): 58, 33, 39, (80,234,0): 60, 35, 41, (80,235,0): 60, 35, 41, (80,236,0): 59, 34, 40, (80,237,0): 59, 34, 40, (80,238,0): 61, 36, 42, (80,239,0): 64, 37, 42, (80,240,0): 69, 38, 44, (80,241,0): 73, 38, 44, (80,242,0): 73, 38, 44, (80,243,0): 74, 39, 45, (80,244,0): 74, 39, 45, (80,245,0): 76, 39, 46, (80,246,0): 76, 39, 46, (80,247,0): 76, 40, 44, (80,248,0): 80, 41, 46, (80,249,0): 80, 41, 46, (80,250,0): 80, 41, 46, (80,251,0): 81, 40, 46, (80,252,0): 81, 40, 46, (80,253,0): 81, 40, 46, (80,254,0): 81, 40, 46, (80,255,0): 82, 39, 46, (80,256,0): 80, 38, 42, (80,257,0): 80, 38, 40, (80,258,0): 80, 38, 42, (80,259,0): 80, 38, 40, (80,260,0): 80, 38, 42, (80,261,0): 80, 38, 40, (80,262,0): 80, 38, 42, (80,263,0): 80, 38, 40, (80,264,0): 80, 35, 40, (80,265,0): 81, 36, 39, (80,266,0): 82, 37, 42, (80,267,0): 83, 38, 41, (80,268,0): 85, 40, 45, (80,269,0): 86, 41, 44, (80,270,0): 87, 42, 47, (80,271,0): 87, 42, 47, (80,272,0): 85, 43, 47, (80,273,0): 86, 44, 48, (80,274,0): 86, 44, 46, (80,275,0): 87, 45, 47, (80,276,0): 88, 46, 48, (80,277,0): 89, 47, 49, (80,278,0): 90, 48, 50, (80,279,0): 91, 49, 50, (80,280,0): 87, 45, 46, (80,281,0): 87, 45, 46, (80,282,0): 89, 47, 48, (80,283,0): 90, 48, 49, (80,284,0): 92, 51, 49, (80,285,0): 93, 52, 50, (80,286,0): 95, 54, 52, (80,287,0): 97, 53, 50, (80,288,0): 107, 59, 55, (80,289,0): 109, 62, 56, (80,290,0): 111, 64, 56, (80,291,0): 112, 65, 55, (80,292,0): 114, 68, 53, (80,293,0): 118, 73, 54, (80,294,0): 125, 79, 56, (80,295,0): 133, 83, 56, (80,296,0): 141, 91, 58, (80,297,0): 149, 96, 56, (80,298,0): 158, 100, 54, (80,299,0): 170, 109, 55, (80,300,0): 189, 123, 63, (80,301,0): 206, 137, 72, (80,302,0): 208, 138, 68, (80,303,0): 200, 131, 62, (80,304,0): 188, 124, 62, (80,305,0): 180, 121, 63, (80,306,0): 172, 117, 61, (80,307,0): 166, 115, 60, (80,308,0): 159, 113, 61, (80,309,0): 152, 110, 60, (80,310,0): 145, 105, 56, (80,311,0): 138, 100, 53, (80,312,0): 136, 95, 51, (80,313,0): 132, 93, 52, (80,314,0): 129, 89, 53, (80,315,0): 127, 87, 52, (80,316,0): 126, 88, 52, (80,317,0): 125, 89, 53, (80,318,0): 128, 92, 56, (80,319,0): 130, 94, 58, (80,320,0): 134, 98, 62, (80,321,0): 136, 98, 62, (80,322,0): 134, 98, 62, (80,323,0): 135, 99, 63, (80,324,0): 137, 101, 65, (80,325,0): 140, 104, 68, (80,326,0): 141, 107, 70, (80,327,0): 143, 109, 71, (80,328,0): 147, 115, 76, (80,329,0): 150, 118, 79, (80,330,0): 153, 121, 82, (80,331,0): 153, 121, 82, (80,332,0): 149, 120, 80, (80,333,0): 147, 118, 76, (80,334,0): 148, 119, 79, (80,335,0): 149, 121, 81, (80,336,0): 145, 120, 79, (80,337,0): 144, 121, 79, (80,338,0): 144, 121, 79, (80,339,0): 144, 121, 79, (80,340,0): 145, 122, 80, (80,341,0): 147, 124, 82, (80,342,0): 149, 126, 85, (80,343,0): 150, 127, 86, (80,344,0): 151, 128, 87, (80,345,0): 151, 128, 87, (80,346,0): 150, 127, 86, (80,347,0): 150, 126, 88, (80,348,0): 149, 125, 87, (80,349,0): 148, 124, 86, (80,350,0): 147, 123, 85, (80,351,0): 147, 123, 85, (80,352,0): 146, 120, 87, (80,353,0): 146, 120, 87, (80,354,0): 147, 120, 90, (80,355,0): 147, 120, 90, (80,356,0): 148, 119, 89, (80,357,0): 147, 118, 88, (80,358,0): 146, 117, 87, (80,359,0): 145, 116, 86, (80,360,0): 149, 118, 90, (80,361,0): 148, 117, 89, (80,362,0): 149, 115, 90, (80,363,0): 148, 114, 89, (80,364,0): 148, 114, 89, (80,365,0): 149, 115, 90, (80,366,0): 151, 115, 91, (80,367,0): 152, 116, 92, (80,368,0): 155, 121, 96, (80,369,0): 157, 121, 97, (80,370,0): 160, 119, 99, (80,371,0): 161, 118, 99, (80,372,0): 166, 117, 100, (80,373,0): 169, 117, 103, (80,374,0): 169, 117, 103, (80,375,0): 169, 117, 103, (80,376,0): 170, 121, 106, (80,377,0): 168, 121, 103, (80,378,0): 168, 121, 101, (80,379,0): 166, 121, 100, (80,380,0): 167, 122, 99, (80,381,0): 168, 124, 99, (80,382,0): 171, 125, 101, (80,383,0): 172, 126, 103, (80,384,0): 170, 125, 106, (80,385,0): 170, 124, 108, (80,386,0): 174, 126, 106, (80,387,0): 179, 127, 105, (80,388,0): 187, 131, 104, (80,389,0): 195, 136, 106, (80,390,0): 203, 139, 104, (80,391,0): 209, 141, 102, (80,392,0): 210, 137, 96, (80,393,0): 215, 138, 92, (80,394,0): 221, 143, 94, (80,395,0): 232, 152, 99, (80,396,0): 243, 161, 105, (80,397,0): 249, 167, 107, (80,398,0): 249, 168, 105, (80,399,0): 249, 165, 103, (80,400,0): 254, 168, 109, (80,401,0): 248, 162, 105, (80,402,0): 239, 153, 96, (80,403,0): 230, 145, 88, (80,404,0): 225, 139, 82, (80,405,0): 223, 138, 81, (80,406,0): 224, 139, 82, (80,407,0): 223, 141, 81, (80,408,0): 227, 147, 86, (80,409,0): 227, 149, 85, (80,410,0): 227, 152, 85, (80,411,0): 228, 155, 87, (80,412,0): 229, 159, 89, (80,413,0): 230, 162, 91, (80,414,0): 232, 164, 91, (80,415,0): 232, 165, 94, (80,416,0): 231, 167, 95, (80,417,0): 231, 168, 97, (80,418,0): 231, 168, 99, (80,419,0): 225, 165, 95, (80,420,0): 219, 160, 92, (80,421,0): 215, 158, 91, (80,422,0): 214, 159, 92, (80,423,0): 212, 161, 95, (80,424,0): 215, 164, 99, (80,425,0): 211, 162, 96, (80,426,0): 205, 157, 93, (80,427,0): 199, 154, 89, (80,428,0): 199, 153, 91, (80,429,0): 201, 157, 94, (80,430,0): 205, 161, 98, (80,431,0): 208, 164, 101, (80,432,0): 203, 159, 98, (80,433,0): 204, 160, 99, (80,434,0): 206, 162, 101, (80,435,0): 205, 164, 102, (80,436,0): 205, 163, 103, (80,437,0): 203, 163, 102, (80,438,0): 200, 162, 100, (80,439,0): 199, 161, 99, (80,440,0): 202, 164, 101, (80,441,0): 203, 166, 98, (80,442,0): 206, 167, 98, (80,443,0): 208, 170, 97, (80,444,0): 208, 169, 94, (80,445,0): 208, 166, 90, (80,446,0): 206, 165, 86, (80,447,0): 205, 161, 86, (80,448,0): 208, 159, 93, (80,449,0): 204, 153, 90, (80,450,0): 198, 148, 87, (80,451,0): 193, 143, 84, (80,452,0): 188, 141, 85, (80,453,0): 183, 138, 83, (80,454,0): 175, 134, 82, (80,455,0): 170, 130, 81, (80,456,0): 166, 129, 85, (80,457,0): 154, 119, 79, (80,458,0): 141, 109, 71, (80,459,0): 135, 105, 69, (80,460,0): 136, 107, 75, (80,461,0): 137, 110, 80, (80,462,0): 135, 110, 80, (80,463,0): 132, 107, 77, (80,464,0): 129, 106, 75, (80,465,0): 124, 103, 72, (80,466,0): 121, 100, 69, (80,467,0): 121, 100, 69, (80,468,0): 123, 102, 73, (80,469,0): 125, 104, 75, (80,470,0): 124, 103, 74, (80,471,0): 123, 102, 73, (80,472,0): 125, 101, 75, (80,473,0): 125, 101, 75, (80,474,0): 126, 100, 75, (80,475,0): 125, 99, 74, (80,476,0): 125, 97, 75, (80,477,0): 123, 95, 73, (80,478,0): 123, 92, 71, (80,479,0): 120, 92, 70, (80,480,0): 113, 87, 64, (80,481,0): 114, 90, 66, (80,482,0): 116, 92, 68, (80,483,0): 118, 94, 70, (80,484,0): 120, 94, 71, (80,485,0): 119, 93, 70, (80,486,0): 119, 91, 70, (80,487,0): 118, 90, 69, (80,488,0): 122, 94, 73, (80,489,0): 124, 96, 75, (80,490,0): 127, 96, 76, (80,491,0): 125, 94, 74, (80,492,0): 121, 90, 70, (80,493,0): 118, 87, 67, (80,494,0): 118, 87, 67, (80,495,0): 117, 89, 67, (80,496,0): 116, 92, 64, (80,497,0): 115, 94, 63, (80,498,0): 117, 96, 67, (80,499,0): 120, 99, 70, (80,500,0): 120, 101, 71, (80,501,0): 121, 101, 74, (80,502,0): 119, 102, 74, (80,503,0): 119, 102, 76, (80,504,0): 116, 99, 73, (80,505,0): 116, 98, 74, (80,506,0): 114, 98, 73, (80,507,0): 113, 97, 74, (80,508,0): 111, 96, 73, (80,509,0): 109, 94, 71, (80,510,0): 109, 94, 73, (80,511,0): 109, 92, 74, (80,512,0): 108, 89, 74, (80,513,0): 108, 89, 74, (80,514,0): 108, 89, 74, (80,515,0): 107, 88, 73, (80,516,0): 107, 88, 73, (80,517,0): 107, 88, 73, (80,518,0): 107, 88, 74, (80,519,0): 106, 87, 73, (80,520,0): 98, 79, 65, (80,521,0): 96, 78, 64, (80,522,0): 95, 77, 63, (80,523,0): 94, 76, 62, (80,524,0): 94, 76, 62, (80,525,0): 94, 76, 62, (80,526,0): 95, 77, 63, (80,527,0): 95, 79, 64, (80,528,0): 93, 77, 64, (80,529,0): 92, 78, 65, (80,530,0): 94, 81, 65, (80,531,0): 96, 83, 67, (80,532,0): 100, 84, 69, (80,533,0): 103, 85, 71, (80,534,0): 106, 87, 72, (80,535,0): 107, 88, 73, (80,536,0): 109, 88, 71, (80,537,0): 109, 88, 71, (80,538,0): 109, 86, 70, (80,539,0): 112, 86, 71, (80,540,0): 114, 88, 71, (80,541,0): 117, 91, 74, (80,542,0): 121, 94, 77, (80,543,0): 123, 96, 77, (80,544,0): 125, 94, 73, (80,545,0): 126, 94, 71, (80,546,0): 125, 93, 70, (80,547,0): 124, 92, 69, (80,548,0): 122, 90, 67, (80,549,0): 121, 89, 68, (80,550,0): 119, 88, 67, (80,551,0): 118, 87, 67, (80,552,0): 119, 91, 70, (80,553,0): 119, 91, 70, (80,554,0): 120, 93, 72, (80,555,0): 120, 93, 74, (80,556,0): 120, 93, 74, (80,557,0): 120, 93, 74, (80,558,0): 118, 91, 74, (80,559,0): 117, 91, 74, (80,560,0): 112, 89, 75, (80,561,0): 110, 88, 74, (80,562,0): 108, 86, 72, (80,563,0): 106, 84, 70, (80,564,0): 103, 81, 68, (80,565,0): 101, 79, 66, (80,566,0): 99, 77, 64, (80,567,0): 98, 76, 65, (80,568,0): 96, 74, 63, (80,569,0): 92, 72, 63, (80,570,0): 90, 70, 63, (80,571,0): 88, 68, 61, (80,572,0): 85, 65, 58, (80,573,0): 82, 62, 55, (80,574,0): 80, 59, 54, (80,575,0): 78, 57, 52, (80,576,0): 77, 56, 53, (80,577,0): 76, 55, 54, (80,578,0): 74, 53, 52, (80,579,0): 71, 50, 49, (80,580,0): 68, 46, 48, (80,581,0): 65, 43, 45, (80,582,0): 62, 42, 43, (80,583,0): 61, 41, 42, (80,584,0): 60, 42, 42, (80,585,0): 60, 41, 43, (80,586,0): 61, 42, 44, (80,587,0): 61, 42, 44, (80,588,0): 62, 43, 45, (80,589,0): 60, 44, 45, (80,590,0): 63, 44, 48, (80,591,0): 63, 44, 48, (80,592,0): 64, 43, 50, (80,593,0): 65, 42, 50, (80,594,0): 65, 42, 48, (80,595,0): 65, 42, 48, (80,596,0): 65, 43, 46, (80,597,0): 65, 43, 45, (80,598,0): 65, 43, 45, (80,599,0): 65, 43, 45, (81,0,0): 30, 28, 42, (81,1,0): 30, 28, 42, (81,2,0): 30, 28, 42, (81,3,0): 30, 28, 42, (81,4,0): 31, 27, 42, (81,5,0): 31, 27, 42, (81,6,0): 31, 27, 42, (81,7,0): 31, 27, 42, (81,8,0): 35, 28, 44, (81,9,0): 35, 28, 44, (81,10,0): 36, 27, 44, (81,11,0): 36, 27, 44, (81,12,0): 36, 27, 44, (81,13,0): 36, 27, 44, (81,14,0): 38, 27, 44, (81,15,0): 39, 26, 43, (81,16,0): 44, 27, 45, (81,17,0): 45, 27, 43, (81,18,0): 45, 27, 43, (81,19,0): 46, 28, 44, (81,20,0): 45, 29, 42, (81,21,0): 46, 30, 43, (81,22,0): 46, 30, 43, (81,23,0): 46, 30, 43, (81,24,0): 43, 30, 40, (81,25,0): 44, 31, 41, (81,26,0): 44, 31, 40, (81,27,0): 45, 32, 41, (81,28,0): 44, 33, 41, (81,29,0): 45, 34, 42, (81,30,0): 45, 34, 40, (81,31,0): 46, 33, 40, (81,32,0): 51, 34, 44, (81,33,0): 53, 33, 44, (81,34,0): 53, 33, 44, (81,35,0): 53, 33, 44, (81,36,0): 53, 33, 44, (81,37,0): 53, 33, 44, (81,38,0): 53, 33, 45, (81,39,0): 53, 33, 45, (81,40,0): 53, 32, 47, (81,41,0): 53, 32, 47, (81,42,0): 53, 32, 49, (81,43,0): 53, 32, 49, (81,44,0): 53, 32, 49, (81,45,0): 53, 32, 49, (81,46,0): 53, 32, 49, (81,47,0): 53, 32, 47, (81,48,0): 53, 31, 43, (81,49,0): 53, 32, 41, (81,50,0): 53, 32, 41, (81,51,0): 53, 32, 41, (81,52,0): 53, 33, 44, (81,53,0): 53, 33, 44, (81,54,0): 53, 33, 45, (81,55,0): 53, 33, 45, (81,56,0): 49, 31, 43, (81,57,0): 49, 31, 43, (81,58,0): 48, 32, 45, (81,59,0): 47, 31, 44, (81,60,0): 46, 29, 45, (81,61,0): 46, 29, 45, (81,62,0): 44, 30, 45, (81,63,0): 42, 30, 44, (81,64,0): 39, 28, 44, (81,65,0): 36, 28, 43, (81,66,0): 35, 27, 42, (81,67,0): 35, 27, 42, (81,68,0): 35, 27, 42, (81,69,0): 35, 27, 42, (81,70,0): 36, 28, 43, (81,71,0): 37, 29, 44, (81,72,0): 34, 26, 41, (81,73,0): 34, 26, 41, (81,74,0): 34, 26, 41, (81,75,0): 33, 25, 40, (81,76,0): 33, 25, 40, (81,77,0): 32, 24, 39, (81,78,0): 32, 24, 39, (81,79,0): 32, 23, 40, (81,80,0): 31, 19, 39, (81,81,0): 31, 19, 39, (81,82,0): 29, 20, 39, (81,83,0): 28, 19, 38, (81,84,0): 28, 19, 40, (81,85,0): 27, 18, 39, (81,86,0): 26, 18, 39, (81,87,0): 26, 18, 39, (81,88,0): 24, 19, 41, (81,89,0): 24, 19, 41, (81,90,0): 24, 19, 42, (81,91,0): 24, 19, 42, (81,92,0): 23, 19, 42, (81,93,0): 23, 19, 42, (81,94,0): 23, 19, 44, (81,95,0): 23, 19, 44, (81,96,0): 20, 16, 39, (81,97,0): 20, 16, 39, (81,98,0): 20, 16, 39, (81,99,0): 21, 17, 40, (81,100,0): 22, 18, 41, (81,101,0): 23, 19, 42, (81,102,0): 23, 19, 42, (81,103,0): 23, 19, 42, (81,104,0): 21, 17, 40, (81,105,0): 21, 17, 40, (81,106,0): 20, 16, 39, (81,107,0): 20, 16, 39, (81,108,0): 19, 15, 38, (81,109,0): 19, 15, 38, (81,110,0): 18, 14, 37, (81,111,0): 18, 14, 37, (81,112,0): 20, 17, 38, (81,113,0): 20, 17, 38, (81,114,0): 20, 17, 38, (81,115,0): 20, 17, 38, (81,116,0): 20, 17, 38, (81,117,0): 20, 17, 38, (81,118,0): 20, 17, 38, (81,119,0): 20, 17, 38, (81,120,0): 19, 16, 37, (81,121,0): 19, 16, 37, (81,122,0): 20, 17, 38, (81,123,0): 20, 17, 38, (81,124,0): 20, 17, 38, (81,125,0): 20, 17, 38, (81,126,0): 21, 18, 39, (81,127,0): 20, 18, 39, (81,128,0): 18, 16, 37, (81,129,0): 16, 17, 37, (81,130,0): 17, 18, 38, (81,131,0): 17, 18, 38, (81,132,0): 20, 19, 37, (81,133,0): 20, 19, 37, (81,134,0): 21, 20, 38, (81,135,0): 21, 20, 38, (81,136,0): 23, 20, 37, (81,137,0): 23, 20, 37, (81,138,0): 24, 20, 35, (81,139,0): 24, 20, 35, (81,140,0): 24, 20, 35, (81,141,0): 24, 20, 35, (81,142,0): 26, 20, 34, (81,143,0): 27, 19, 34, (81,144,0): 32, 21, 38, (81,145,0): 33, 20, 38, (81,146,0): 34, 21, 39, (81,147,0): 34, 21, 39, (81,148,0): 35, 22, 40, (81,149,0): 35, 22, 40, (81,150,0): 36, 23, 41, (81,151,0): 36, 23, 41, (81,152,0): 37, 24, 42, (81,153,0): 36, 23, 41, (81,154,0): 35, 22, 40, (81,155,0): 33, 20, 38, (81,156,0): 33, 20, 38, (81,157,0): 33, 20, 38, (81,158,0): 34, 21, 39, (81,159,0): 33, 22, 39, (81,160,0): 33, 22, 39, (81,161,0): 32, 23, 40, (81,162,0): 32, 23, 40, (81,163,0): 32, 23, 40, (81,164,0): 33, 24, 41, (81,165,0): 33, 24, 41, (81,166,0): 34, 25, 42, (81,167,0): 34, 25, 42, (81,168,0): 33, 24, 41, (81,169,0): 33, 24, 41, (81,170,0): 32, 23, 40, (81,171,0): 32, 23, 40, (81,172,0): 31, 22, 39, (81,173,0): 31, 22, 39, (81,174,0): 30, 21, 38, (81,175,0): 30, 21, 40, (81,176,0): 30, 22, 43, (81,177,0): 30, 22, 45, (81,178,0): 29, 21, 44, (81,179,0): 29, 21, 44, (81,180,0): 29, 21, 44, (81,181,0): 30, 22, 45, (81,182,0): 32, 24, 47, (81,183,0): 33, 25, 48, (81,184,0): 32, 24, 47, (81,185,0): 32, 24, 47, (81,186,0): 32, 24, 47, (81,187,0): 32, 24, 47, (81,188,0): 32, 24, 47, (81,189,0): 32, 24, 47, (81,190,0): 32, 24, 47, (81,191,0): 32, 24, 47, (81,192,0): 30, 25, 47, (81,193,0): 30, 25, 47, (81,194,0): 31, 26, 48, (81,195,0): 31, 26, 48, (81,196,0): 34, 26, 47, (81,197,0): 34, 26, 47, (81,198,0): 36, 27, 48, (81,199,0): 36, 27, 48, (81,200,0): 36, 27, 46, (81,201,0): 36, 27, 46, (81,202,0): 39, 28, 45, (81,203,0): 39, 28, 45, (81,204,0): 41, 28, 46, (81,205,0): 41, 28, 46, (81,206,0): 42, 29, 46, (81,207,0): 42, 29, 46, (81,208,0): 43, 28, 47, (81,209,0): 43, 28, 47, (81,210,0): 46, 29, 48, (81,211,0): 46, 29, 48, (81,212,0): 47, 30, 48, (81,213,0): 47, 30, 48, (81,214,0): 49, 30, 49, (81,215,0): 49, 31, 47, (81,216,0): 50, 29, 46, (81,217,0): 50, 29, 46, (81,218,0): 50, 29, 44, (81,219,0): 51, 30, 45, (81,220,0): 52, 29, 45, (81,221,0): 53, 30, 46, (81,222,0): 53, 31, 44, (81,223,0): 53, 31, 43, (81,224,0): 51, 28, 38, (81,225,0): 51, 28, 36, (81,226,0): 52, 29, 37, (81,227,0): 53, 30, 38, (81,228,0): 53, 30, 38, (81,229,0): 54, 31, 39, (81,230,0): 55, 32, 40, (81,231,0): 55, 32, 40, (81,232,0): 54, 31, 39, (81,233,0): 56, 33, 41, (81,234,0): 58, 35, 43, (81,235,0): 58, 35, 43, (81,236,0): 56, 33, 41, (81,237,0): 56, 33, 41, (81,238,0): 58, 35, 43, (81,239,0): 63, 38, 44, (81,240,0): 69, 38, 44, (81,241,0): 70, 38, 43, (81,242,0): 73, 38, 44, (81,243,0): 73, 38, 44, (81,244,0): 74, 39, 45, (81,245,0): 74, 39, 45, (81,246,0): 76, 39, 46, (81,247,0): 76, 39, 46, (81,248,0): 77, 37, 45, (81,249,0): 77, 37, 45, (81,250,0): 77, 37, 45, (81,251,0): 77, 37, 45, (81,252,0): 78, 37, 45, (81,253,0): 78, 37, 45, (81,254,0): 78, 37, 45, (81,255,0): 78, 37, 43, (81,256,0): 80, 37, 44, (81,257,0): 80, 38, 42, (81,258,0): 80, 38, 42, (81,259,0): 80, 38, 42, (81,260,0): 80, 38, 42, (81,261,0): 80, 38, 42, (81,262,0): 80, 38, 42, (81,263,0): 80, 38, 42, (81,264,0): 79, 37, 41, (81,265,0): 80, 38, 42, (81,266,0): 80, 38, 42, (81,267,0): 81, 39, 43, (81,268,0): 82, 40, 44, (81,269,0): 83, 41, 45, (81,270,0): 84, 42, 46, (81,271,0): 84, 42, 46, (81,272,0): 84, 43, 49, (81,273,0): 84, 43, 49, (81,274,0): 85, 44, 48, (81,275,0): 86, 45, 49, (81,276,0): 87, 46, 50, (81,277,0): 88, 47, 51, (81,278,0): 89, 49, 50, (81,279,0): 89, 49, 50, (81,280,0): 86, 46, 46, (81,281,0): 86, 46, 46, (81,282,0): 88, 48, 48, (81,283,0): 89, 49, 49, (81,284,0): 91, 51, 49, (81,285,0): 92, 52, 50, (81,286,0): 94, 54, 52, (81,287,0): 95, 54, 50, (81,288,0): 104, 59, 56, (81,289,0): 108, 60, 56, (81,290,0): 111, 64, 58, (81,291,0): 112, 65, 57, (81,292,0): 113, 67, 54, (81,293,0): 118, 72, 56, (81,294,0): 126, 78, 56, (81,295,0): 133, 83, 56, (81,296,0): 138, 88, 53, (81,297,0): 146, 93, 51, (81,298,0): 154, 98, 49, (81,299,0): 165, 106, 50, (81,300,0): 182, 120, 59, (81,301,0): 198, 135, 68, (81,302,0): 202, 135, 65, (81,303,0): 193, 128, 60, (81,304,0): 182, 120, 59, (81,305,0): 177, 118, 62, (81,306,0): 167, 115, 58, (81,307,0): 159, 112, 58, (81,308,0): 153, 110, 59, (81,309,0): 145, 107, 58, (81,310,0): 139, 101, 54, (81,311,0): 134, 97, 53, (81,312,0): 133, 94, 53, (81,313,0): 132, 93, 54, (81,314,0): 129, 89, 53, (81,315,0): 126, 88, 52, (81,316,0): 126, 88, 52, (81,317,0): 125, 91, 54, (81,318,0): 126, 94, 56, (81,319,0): 128, 96, 58, (81,320,0): 134, 98, 62, (81,321,0): 136, 98, 62, (81,322,0): 134, 98, 62, (81,323,0): 135, 99, 63, (81,324,0): 137, 101, 65, (81,325,0): 139, 103, 67, (81,326,0): 141, 107, 70, (81,327,0): 142, 108, 71, (81,328,0): 144, 112, 74, (81,329,0): 147, 115, 77, (81,330,0): 150, 118, 80, (81,331,0): 150, 118, 80, (81,332,0): 146, 116, 78, (81,333,0): 145, 115, 77, (81,334,0): 146, 116, 78, (81,335,0): 146, 118, 79, (81,336,0): 145, 120, 80, (81,337,0): 144, 121, 80, (81,338,0): 144, 121, 80, (81,339,0): 144, 121, 80, (81,340,0): 145, 122, 81, (81,341,0): 147, 124, 83, (81,342,0): 149, 126, 85, (81,343,0): 150, 127, 86, (81,344,0): 151, 128, 87, (81,345,0): 151, 128, 87, (81,346,0): 150, 127, 86, (81,347,0): 150, 127, 86, (81,348,0): 149, 126, 85, (81,349,0): 148, 125, 84, (81,350,0): 148, 125, 84, (81,351,0): 147, 123, 85, (81,352,0): 148, 122, 87, (81,353,0): 149, 123, 90, (81,354,0): 149, 123, 90, (81,355,0): 150, 124, 91, (81,356,0): 151, 122, 92, (81,357,0): 150, 121, 91, (81,358,0): 148, 119, 89, (81,359,0): 147, 118, 88, (81,360,0): 149, 118, 90, (81,361,0): 149, 118, 90, (81,362,0): 149, 115, 90, (81,363,0): 149, 115, 90, (81,364,0): 149, 115, 90, (81,365,0): 149, 115, 90, (81,366,0): 152, 116, 94, (81,367,0): 151, 117, 92, (81,368,0): 156, 122, 97, (81,369,0): 156, 122, 97, (81,370,0): 160, 119, 97, (81,371,0): 164, 119, 100, (81,372,0): 168, 116, 102, (81,373,0): 170, 117, 103, (81,374,0): 172, 115, 104, (81,375,0): 171, 117, 105, (81,376,0): 172, 120, 106, (81,377,0): 169, 120, 105, (81,378,0): 167, 122, 103, (81,379,0): 164, 122, 100, (81,380,0): 167, 122, 99, (81,381,0): 168, 124, 99, (81,382,0): 171, 125, 101, (81,383,0): 172, 126, 103, (81,384,0): 171, 124, 106, (81,385,0): 171, 124, 108, (81,386,0): 176, 125, 106, (81,387,0): 179, 127, 103, (81,388,0): 187, 130, 103, (81,389,0): 197, 134, 103, (81,390,0): 205, 137, 100, (81,391,0): 211, 140, 98, (81,392,0): 214, 137, 91, (81,393,0): 219, 139, 90, (81,394,0): 226, 145, 92, (81,395,0): 236, 154, 98, (81,396,0): 248, 161, 107, (81,397,0): 252, 166, 109, (81,398,0): 250, 164, 105, (81,399,0): 248, 162, 103, (81,400,0): 249, 163, 106, (81,401,0): 244, 158, 101, (81,402,0): 237, 151, 94, (81,403,0): 231, 145, 88, (81,404,0): 229, 140, 84, (81,405,0): 227, 141, 82, (81,406,0): 230, 144, 85, (81,407,0): 231, 147, 85, (81,408,0): 230, 149, 84, (81,409,0): 229, 152, 84, (81,410,0): 228, 153, 85, (81,411,0): 227, 157, 85, (81,412,0): 229, 161, 88, (81,413,0): 228, 165, 88, (81,414,0): 229, 167, 90, (81,415,0): 230, 168, 93, (81,416,0): 229, 169, 97, (81,417,0): 230, 170, 98, (81,418,0): 229, 169, 99, (81,419,0): 224, 165, 95, (81,420,0): 219, 162, 93, (81,421,0): 214, 160, 90, (81,422,0): 215, 160, 93, (81,423,0): 214, 164, 95, (81,424,0): 216, 165, 99, (81,425,0): 212, 165, 97, (81,426,0): 208, 160, 94, (81,427,0): 203, 158, 93, (81,428,0): 202, 158, 95, (81,429,0): 204, 160, 97, (81,430,0): 205, 164, 100, (81,431,0): 209, 165, 102, (81,432,0): 206, 161, 96, (81,433,0): 207, 162, 97, (81,434,0): 208, 162, 100, (81,435,0): 208, 164, 101, (81,436,0): 205, 164, 102, (81,437,0): 203, 163, 102, (81,438,0): 200, 161, 102, (81,439,0): 198, 160, 98, (81,440,0): 203, 165, 102, (81,441,0): 205, 167, 102, (81,442,0): 207, 170, 102, (81,443,0): 209, 171, 100, (81,444,0): 210, 171, 96, (81,445,0): 210, 168, 92, (81,446,0): 208, 167, 88, (81,447,0): 210, 164, 89, (81,448,0): 210, 159, 94, (81,449,0): 205, 153, 93, (81,450,0): 199, 147, 87, (81,451,0): 194, 144, 85, (81,452,0): 190, 141, 85, (81,453,0): 184, 139, 84, (81,454,0): 178, 135, 84, (81,455,0): 172, 132, 83, (81,456,0): 164, 127, 83, (81,457,0): 152, 119, 78, (81,458,0): 141, 109, 71, (81,459,0): 134, 105, 71, (81,460,0): 134, 108, 75, (81,461,0): 135, 110, 79, (81,462,0): 133, 109, 81, (81,463,0): 131, 108, 77, (81,464,0): 126, 105, 74, (81,465,0): 123, 103, 70, (81,466,0): 121, 100, 69, (81,467,0): 121, 100, 69, (81,468,0): 125, 102, 71, (81,469,0): 127, 104, 73, (81,470,0): 126, 102, 74, (81,471,0): 125, 101, 73, (81,472,0): 126, 100, 75, (81,473,0): 126, 100, 75, (81,474,0): 127, 99, 75, (81,475,0): 127, 99, 75, (81,476,0): 125, 97, 75, (81,477,0): 123, 95, 73, (81,478,0): 123, 92, 71, (81,479,0): 119, 91, 69, (81,480,0): 113, 87, 64, (81,481,0): 113, 89, 65, (81,482,0): 115, 91, 67, (81,483,0): 116, 92, 68, (81,484,0): 118, 92, 69, (81,485,0): 118, 92, 69, (81,486,0): 119, 91, 69, (81,487,0): 119, 91, 69, (81,488,0): 124, 96, 74, (81,489,0): 126, 98, 76, (81,490,0): 129, 98, 77, (81,491,0): 128, 97, 76, (81,492,0): 125, 93, 72, (81,493,0): 122, 90, 69, (81,494,0): 122, 90, 69, (81,495,0): 122, 92, 68, (81,496,0): 119, 96, 65, (81,497,0): 118, 98, 65, (81,498,0): 119, 99, 66, (81,499,0): 120, 100, 67, (81,500,0): 119, 100, 68, (81,501,0): 119, 100, 70, (81,502,0): 116, 99, 69, (81,503,0): 115, 98, 70, (81,504,0): 115, 98, 72, (81,505,0): 114, 96, 72, (81,506,0): 112, 96, 71, (81,507,0): 111, 95, 72, (81,508,0): 108, 93, 70, (81,509,0): 107, 92, 71, (81,510,0): 106, 91, 70, (81,511,0): 105, 90, 71, (81,512,0): 107, 88, 73, (81,513,0): 107, 88, 74, (81,514,0): 106, 87, 73, (81,515,0): 105, 86, 72, (81,516,0): 105, 86, 72, (81,517,0): 104, 85, 71, (81,518,0): 103, 84, 70, (81,519,0): 103, 84, 70, (81,520,0): 97, 78, 64, (81,521,0): 96, 77, 63, (81,522,0): 95, 76, 62, (81,523,0): 94, 75, 61, (81,524,0): 94, 75, 61, (81,525,0): 95, 76, 62, (81,526,0): 96, 77, 63, (81,527,0): 95, 77, 63, (81,528,0): 92, 76, 63, (81,529,0): 91, 77, 64, (81,530,0): 93, 80, 64, (81,531,0): 96, 83, 67, (81,532,0): 100, 84, 69, (81,533,0): 103, 87, 72, (81,534,0): 107, 88, 73, (81,535,0): 108, 89, 74, (81,536,0): 110, 89, 72, (81,537,0): 109, 88, 71, (81,538,0): 112, 86, 71, (81,539,0): 113, 87, 72, (81,540,0): 116, 89, 72, (81,541,0): 119, 92, 75, (81,542,0): 121, 94, 77, (81,543,0): 124, 95, 77, (81,544,0): 125, 94, 73, (81,545,0): 126, 94, 71, (81,546,0): 125, 93, 70, (81,547,0): 124, 92, 69, (81,548,0): 122, 90, 69, (81,549,0): 121, 89, 68, (81,550,0): 119, 88, 68, (81,551,0): 119, 88, 68, (81,552,0): 116, 88, 67, (81,553,0): 117, 89, 68, (81,554,0): 117, 90, 71, (81,555,0): 118, 91, 72, (81,556,0): 118, 91, 74, (81,557,0): 117, 90, 73, (81,558,0): 116, 89, 72, (81,559,0): 114, 88, 73, (81,560,0): 110, 88, 74, (81,561,0): 107, 88, 74, (81,562,0): 105, 86, 72, (81,563,0): 103, 84, 70, (81,564,0): 100, 80, 69, (81,565,0): 98, 78, 67, (81,566,0): 96, 76, 65, (81,567,0): 96, 76, 65, (81,568,0): 92, 72, 63, (81,569,0): 91, 71, 62, (81,570,0): 89, 69, 62, (81,571,0): 87, 67, 60, (81,572,0): 84, 64, 57, (81,573,0): 82, 62, 55, (81,574,0): 80, 59, 54, (81,575,0): 79, 58, 53, (81,576,0): 79, 55, 53, (81,577,0): 78, 54, 52, (81,578,0): 74, 53, 50, (81,579,0): 71, 50, 47, (81,580,0): 69, 48, 47, (81,581,0): 67, 46, 45, (81,582,0): 64, 44, 43, (81,583,0): 63, 43, 42, (81,584,0): 61, 43, 43, (81,585,0): 61, 43, 43, (81,586,0): 61, 42, 44, (81,587,0): 61, 42, 44, (81,588,0): 59, 43, 44, (81,589,0): 59, 43, 44, (81,590,0): 59, 43, 46, (81,591,0): 59, 42, 48, (81,592,0): 60, 39, 48, (81,593,0): 60, 38, 50, (81,594,0): 60, 39, 48, (81,595,0): 60, 39, 46, (81,596,0): 60, 39, 46, (81,597,0): 60, 39, 44, (81,598,0): 60, 40, 42, (81,599,0): 60, 40, 42, (82,0,0): 30, 28, 42, (82,1,0): 30, 28, 42, (82,2,0): 30, 28, 42, (82,3,0): 30, 28, 42, (82,4,0): 31, 27, 42, (82,5,0): 31, 27, 42, (82,6,0): 31, 27, 42, (82,7,0): 31, 27, 42, (82,8,0): 35, 28, 44, (82,9,0): 35, 28, 44, (82,10,0): 36, 27, 44, (82,11,0): 36, 27, 44, (82,12,0): 36, 27, 44, (82,13,0): 36, 27, 44, (82,14,0): 38, 27, 44, (82,15,0): 39, 26, 43, (82,16,0): 42, 28, 45, (82,17,0): 44, 27, 43, (82,18,0): 44, 27, 43, (82,19,0): 45, 28, 44, (82,20,0): 45, 29, 42, (82,21,0): 46, 30, 43, (82,22,0): 46, 30, 43, (82,23,0): 46, 30, 43, (82,24,0): 44, 31, 41, (82,25,0): 44, 31, 41, (82,26,0): 44, 31, 40, (82,27,0): 45, 32, 41, (82,28,0): 45, 32, 41, (82,29,0): 46, 33, 42, (82,30,0): 46, 33, 40, (82,31,0): 49, 34, 41, (82,32,0): 53, 33, 42, (82,33,0): 54, 33, 42, (82,34,0): 54, 32, 44, (82,35,0): 54, 32, 44, (82,36,0): 54, 32, 44, (82,37,0): 54, 32, 44, (82,38,0): 54, 32, 45, (82,39,0): 54, 32, 45, (82,40,0): 54, 31, 47, (82,41,0): 54, 31, 47, (82,42,0): 54, 31, 47, (82,43,0): 54, 31, 47, (82,44,0): 54, 31, 49, (82,45,0): 54, 31, 49, (82,46,0): 54, 31, 49, (82,47,0): 54, 31, 47, (82,48,0): 54, 32, 44, (82,49,0): 54, 33, 42, (82,50,0): 54, 32, 44, (82,51,0): 54, 32, 44, (82,52,0): 52, 32, 43, (82,53,0): 52, 32, 43, (82,54,0): 52, 32, 44, (82,55,0): 52, 32, 44, (82,56,0): 48, 30, 44, (82,57,0): 47, 29, 43, (82,58,0): 46, 30, 43, (82,59,0): 46, 30, 43, (82,60,0): 45, 28, 44, (82,61,0): 44, 27, 43, (82,62,0): 42, 28, 43, (82,63,0): 41, 29, 43, (82,64,0): 36, 25, 41, (82,65,0): 35, 26, 43, (82,66,0): 36, 27, 44, (82,67,0): 36, 27, 44, (82,68,0): 36, 27, 44, (82,69,0): 36, 27, 44, (82,70,0): 35, 26, 43, (82,71,0): 34, 25, 42, (82,72,0): 34, 25, 42, (82,73,0): 34, 25, 42, (82,74,0): 34, 25, 42, (82,75,0): 33, 24, 41, (82,76,0): 33, 24, 41, (82,77,0): 32, 23, 40, (82,78,0): 32, 23, 40, (82,79,0): 32, 23, 40, (82,80,0): 32, 20, 40, (82,81,0): 32, 20, 40, (82,82,0): 30, 21, 40, (82,83,0): 29, 20, 39, (82,84,0): 29, 20, 41, (82,85,0): 28, 19, 40, (82,86,0): 27, 19, 40, (82,87,0): 27, 19, 40, (82,88,0): 24, 19, 41, (82,89,0): 24, 19, 41, (82,90,0): 24, 19, 42, (82,91,0): 24, 19, 42, (82,92,0): 23, 19, 42, (82,93,0): 23, 19, 42, (82,94,0): 23, 19, 44, (82,95,0): 23, 19, 44, (82,96,0): 20, 16, 39, (82,97,0): 20, 16, 39, (82,98,0): 21, 17, 40, (82,99,0): 21, 17, 40, (82,100,0): 22, 18, 41, (82,101,0): 22, 18, 41, (82,102,0): 23, 19, 42, (82,103,0): 23, 19, 42, (82,104,0): 22, 18, 41, (82,105,0): 22, 18, 41, (82,106,0): 21, 17, 40, (82,107,0): 21, 17, 40, (82,108,0): 20, 16, 39, (82,109,0): 20, 16, 39, (82,110,0): 19, 15, 38, (82,111,0): 19, 15, 38, (82,112,0): 20, 17, 38, (82,113,0): 20, 17, 38, (82,114,0): 20, 17, 38, (82,115,0): 20, 17, 38, (82,116,0): 20, 17, 38, (82,117,0): 20, 17, 38, (82,118,0): 20, 17, 38, (82,119,0): 20, 17, 38, (82,120,0): 21, 18, 39, (82,121,0): 21, 18, 39, (82,122,0): 20, 17, 38, (82,123,0): 20, 17, 38, (82,124,0): 20, 17, 38, (82,125,0): 20, 17, 38, (82,126,0): 19, 16, 37, (82,127,0): 18, 16, 37, (82,128,0): 17, 15, 36, (82,129,0): 15, 16, 36, (82,130,0): 16, 17, 37, (82,131,0): 16, 17, 37, (82,132,0): 19, 18, 36, (82,133,0): 19, 18, 36, (82,134,0): 21, 18, 37, (82,135,0): 21, 18, 37, (82,136,0): 23, 20, 37, (82,137,0): 23, 20, 37, (82,138,0): 24, 20, 35, (82,139,0): 24, 20, 35, (82,140,0): 26, 19, 35, (82,141,0): 26, 19, 35, (82,142,0): 26, 20, 34, (82,143,0): 27, 19, 34, (82,144,0): 32, 21, 38, (82,145,0): 33, 20, 38, (82,146,0): 34, 21, 39, (82,147,0): 34, 21, 39, (82,148,0): 35, 22, 40, (82,149,0): 35, 22, 40, (82,150,0): 36, 23, 41, (82,151,0): 36, 23, 41, (82,152,0): 37, 24, 42, (82,153,0): 36, 23, 41, (82,154,0): 35, 22, 40, (82,155,0): 33, 20, 38, (82,156,0): 33, 20, 38, (82,157,0): 33, 20, 38, (82,158,0): 34, 21, 39, (82,159,0): 33, 22, 39, (82,160,0): 33, 22, 39, (82,161,0): 31, 22, 39, (82,162,0): 31, 22, 39, (82,163,0): 32, 23, 40, (82,164,0): 33, 24, 41, (82,165,0): 33, 24, 41, (82,166,0): 33, 24, 41, (82,167,0): 34, 25, 42, (82,168,0): 33, 24, 41, (82,169,0): 33, 24, 41, (82,170,0): 32, 23, 40, (82,171,0): 32, 23, 40, (82,172,0): 31, 22, 39, (82,173,0): 31, 22, 39, (82,174,0): 30, 21, 38, (82,175,0): 30, 21, 40, (82,176,0): 30, 22, 43, (82,177,0): 29, 21, 44, (82,178,0): 28, 20, 43, (82,179,0): 28, 20, 43, (82,180,0): 29, 21, 44, (82,181,0): 30, 22, 45, (82,182,0): 31, 23, 46, (82,183,0): 32, 24, 47, (82,184,0): 32, 24, 47, (82,185,0): 32, 24, 47, (82,186,0): 32, 24, 47, (82,187,0): 32, 24, 47, (82,188,0): 32, 24, 47, (82,189,0): 32, 24, 47, (82,190,0): 32, 24, 47, (82,191,0): 32, 24, 47, (82,192,0): 30, 25, 47, (82,193,0): 30, 25, 47, (82,194,0): 33, 25, 48, (82,195,0): 33, 25, 48, (82,196,0): 34, 26, 47, (82,197,0): 34, 26, 47, (82,198,0): 36, 27, 48, (82,199,0): 36, 27, 48, (82,200,0): 38, 26, 46, (82,201,0): 38, 26, 46, (82,202,0): 39, 28, 45, (82,203,0): 39, 28, 45, (82,204,0): 41, 28, 46, (82,205,0): 41, 28, 46, (82,206,0): 42, 29, 46, (82,207,0): 42, 29, 46, (82,208,0): 43, 28, 47, (82,209,0): 43, 28, 47, (82,210,0): 46, 29, 47, (82,211,0): 46, 29, 47, (82,212,0): 47, 30, 48, (82,213,0): 47, 30, 48, (82,214,0): 49, 31, 47, (82,215,0): 49, 31, 47, (82,216,0): 50, 29, 46, (82,217,0): 50, 29, 44, (82,218,0): 50, 29, 44, (82,219,0): 51, 30, 45, (82,220,0): 52, 30, 43, (82,221,0): 53, 31, 44, (82,222,0): 53, 31, 44, (82,223,0): 53, 31, 43, (82,224,0): 52, 29, 39, (82,225,0): 52, 29, 37, (82,226,0): 52, 29, 37, (82,227,0): 53, 30, 38, (82,228,0): 53, 30, 38, (82,229,0): 54, 31, 39, (82,230,0): 54, 31, 39, (82,231,0): 54, 31, 39, (82,232,0): 54, 31, 39, (82,233,0): 56, 33, 41, (82,234,0): 58, 35, 43, (82,235,0): 58, 35, 43, (82,236,0): 56, 33, 41, (82,237,0): 55, 32, 40, (82,238,0): 57, 34, 42, (82,239,0): 62, 37, 43, (82,240,0): 68, 37, 43, (82,241,0): 69, 37, 42, (82,242,0): 70, 38, 43, (82,243,0): 70, 38, 43, (82,244,0): 73, 38, 44, (82,245,0): 73, 38, 44, (82,246,0): 74, 39, 45, (82,247,0): 74, 39, 45, (82,248,0): 73, 36, 43, (82,249,0): 73, 36, 43, (82,250,0): 75, 35, 43, (82,251,0): 75, 35, 43, (82,252,0): 75, 35, 43, (82,253,0): 75, 35, 43, (82,254,0): 76, 35, 43, (82,255,0): 76, 35, 41, (82,256,0): 80, 37, 44, (82,257,0): 80, 38, 42, (82,258,0): 80, 38, 42, (82,259,0): 80, 38, 42, (82,260,0): 80, 38, 42, (82,261,0): 80, 38, 42, (82,262,0): 80, 38, 42, (82,263,0): 80, 38, 42, (82,264,0): 81, 39, 43, (82,265,0): 81, 39, 43, (82,266,0): 81, 39, 43, (82,267,0): 81, 39, 43, (82,268,0): 81, 39, 43, (82,269,0): 82, 40, 44, (82,270,0): 82, 40, 44, (82,271,0): 82, 40, 44, (82,272,0): 84, 43, 47, (82,273,0): 84, 43, 47, (82,274,0): 85, 44, 48, (82,275,0): 86, 45, 49, (82,276,0): 87, 46, 50, (82,277,0): 88, 47, 51, (82,278,0): 89, 49, 50, (82,279,0): 89, 49, 50, (82,280,0): 86, 46, 46, (82,281,0): 86, 46, 46, (82,282,0): 88, 48, 46, (82,283,0): 89, 49, 47, (82,284,0): 91, 51, 49, (82,285,0): 92, 52, 50, (82,286,0): 94, 54, 52, (82,287,0): 95, 54, 50, (82,288,0): 104, 59, 56, (82,289,0): 108, 60, 56, (82,290,0): 110, 63, 57, (82,291,0): 111, 64, 54, (82,292,0): 113, 67, 54, (82,293,0): 117, 71, 55, (82,294,0): 126, 78, 56, (82,295,0): 133, 83, 56, (82,296,0): 134, 84, 51, (82,297,0): 143, 90, 50, (82,298,0): 152, 96, 49, (82,299,0): 162, 102, 48, (82,300,0): 177, 115, 56, (82,301,0): 192, 128, 64, (82,302,0): 197, 130, 62, (82,303,0): 189, 124, 58, (82,304,0): 178, 116, 57, (82,305,0): 172, 113, 57, (82,306,0): 162, 110, 53, (82,307,0): 154, 107, 53, (82,308,0): 149, 106, 55, (82,309,0): 141, 103, 54, (82,310,0): 136, 98, 53, (82,311,0): 131, 94, 50, (82,312,0): 132, 93, 52, (82,313,0): 131, 92, 53, (82,314,0): 129, 89, 53, (82,315,0): 127, 89, 52, (82,316,0): 127, 89, 53, (82,317,0): 125, 91, 54, (82,318,0): 126, 94, 55, (82,319,0): 128, 96, 57, (82,320,0): 134, 98, 62, (82,321,0): 134, 98, 62, (82,322,0): 134, 98, 62, (82,323,0): 135, 99, 63, (82,324,0): 136, 100, 64, (82,325,0): 138, 102, 66, (82,326,0): 140, 106, 69, (82,327,0): 141, 107, 70, (82,328,0): 141, 109, 71, (82,329,0): 144, 112, 74, (82,330,0): 145, 115, 77, (82,331,0): 146, 116, 78, (82,332,0): 144, 114, 76, (82,333,0): 143, 113, 75, (82,334,0): 144, 114, 76, (82,335,0): 145, 117, 78, (82,336,0): 145, 120, 80, (82,337,0): 143, 120, 79, (82,338,0): 143, 120, 79, (82,339,0): 143, 120, 79, (82,340,0): 145, 122, 81, (82,341,0): 146, 123, 82, (82,342,0): 148, 125, 84, (82,343,0): 149, 126, 85, (82,344,0): 151, 128, 87, (82,345,0): 151, 128, 87, (82,346,0): 150, 127, 86, (82,347,0): 150, 127, 86, (82,348,0): 149, 126, 85, (82,349,0): 149, 126, 85, (82,350,0): 149, 126, 85, (82,351,0): 149, 125, 87, (82,352,0): 151, 125, 90, (82,353,0): 151, 125, 92, (82,354,0): 152, 126, 93, (82,355,0): 152, 126, 93, (82,356,0): 154, 125, 93, (82,357,0): 152, 123, 91, (82,358,0): 151, 122, 92, (82,359,0): 150, 121, 91, (82,360,0): 150, 119, 91, (82,361,0): 150, 119, 91, (82,362,0): 151, 117, 92, (82,363,0): 150, 116, 91, (82,364,0): 150, 116, 91, (82,365,0): 151, 117, 92, (82,366,0): 153, 117, 93, (82,367,0): 152, 118, 93, (82,368,0): 157, 123, 96, (82,369,0): 157, 123, 96, (82,370,0): 161, 120, 98, (82,371,0): 165, 120, 99, (82,372,0): 167, 118, 101, (82,373,0): 170, 119, 102, (82,374,0): 171, 118, 104, (82,375,0): 171, 118, 104, (82,376,0): 170, 121, 106, (82,377,0): 168, 121, 105, (82,378,0): 165, 122, 103, (82,379,0): 163, 122, 100, (82,380,0): 165, 123, 99, (82,381,0): 166, 124, 99, (82,382,0): 170, 126, 101, (82,383,0): 172, 126, 103, (82,384,0): 170, 123, 105, (82,385,0): 171, 124, 106, (82,386,0): 176, 125, 104, (82,387,0): 182, 128, 104, (82,388,0): 190, 130, 102, (82,389,0): 197, 134, 101, (82,390,0): 204, 136, 99, (82,391,0): 211, 138, 97, (82,392,0): 213, 136, 90, (82,393,0): 220, 140, 91, (82,394,0): 229, 148, 95, (82,395,0): 239, 157, 101, (82,396,0): 250, 163, 109, (82,397,0): 252, 166, 109, (82,398,0): 249, 163, 104, (82,399,0): 246, 160, 101, (82,400,0): 242, 157, 100, (82,401,0): 239, 154, 99, (82,402,0): 235, 148, 94, (82,403,0): 231, 145, 88, (82,404,0): 230, 144, 87, (82,405,0): 232, 146, 87, (82,406,0): 235, 149, 90, (82,407,0): 236, 152, 90, (82,408,0): 232, 151, 88, (82,409,0): 231, 153, 87, (82,410,0): 229, 156, 88, (82,411,0): 228, 160, 89, (82,412,0): 230, 163, 92, (82,413,0): 230, 166, 92, (82,414,0): 230, 168, 93, (82,415,0): 229, 170, 94, (82,416,0): 230, 170, 98, (82,417,0): 231, 171, 101, (82,418,0): 229, 170, 100, (82,419,0): 225, 166, 96, (82,420,0): 219, 162, 93, (82,421,0): 215, 161, 91, (82,422,0): 217, 162, 95, (82,423,0): 216, 166, 97, (82,424,0): 217, 166, 100, (82,425,0): 213, 166, 98, (82,426,0): 212, 164, 98, (82,427,0): 208, 163, 96, (82,428,0): 207, 163, 98, (82,429,0): 207, 163, 98, (82,430,0): 206, 165, 101, (82,431,0): 209, 165, 102, (82,432,0): 210, 165, 100, (82,433,0): 210, 165, 100, (82,434,0): 209, 165, 102, (82,435,0): 206, 165, 101, (82,436,0): 205, 164, 102, (82,437,0): 202, 162, 100, (82,438,0): 199, 161, 99, (82,439,0): 198, 160, 98, (82,440,0): 204, 166, 103, (82,441,0): 206, 168, 103, (82,442,0): 209, 170, 103, (82,443,0): 211, 173, 102, (82,444,0): 212, 172, 100, (82,445,0): 212, 170, 94, (82,446,0): 211, 168, 90, (82,447,0): 212, 166, 91, (82,448,0): 211, 160, 95, (82,449,0): 206, 154, 94, (82,450,0): 200, 148, 90, (82,451,0): 194, 143, 86, (82,452,0): 191, 141, 88, (82,453,0): 185, 139, 87, (82,454,0): 178, 136, 86, (82,455,0): 172, 134, 87, (82,456,0): 161, 124, 82, (82,457,0): 150, 116, 78, (82,458,0): 140, 108, 70, (82,459,0): 133, 104, 70, (82,460,0): 132, 106, 73, (82,461,0): 133, 108, 77, (82,462,0): 132, 108, 80, (82,463,0): 130, 107, 76, (82,464,0): 126, 105, 74, (82,465,0): 123, 103, 70, (82,466,0): 120, 99, 68, (82,467,0): 120, 99, 68, (82,468,0): 125, 102, 71, (82,469,0): 126, 103, 72, (82,470,0): 126, 102, 74, (82,471,0): 124, 100, 72, (82,472,0): 127, 101, 76, (82,473,0): 127, 101, 76, (82,474,0): 127, 99, 75, (82,475,0): 127, 99, 75, (82,476,0): 125, 97, 75, (82,477,0): 123, 95, 73, (82,478,0): 122, 91, 70, (82,479,0): 119, 91, 69, (82,480,0): 113, 87, 64, (82,481,0): 112, 88, 64, (82,482,0): 113, 87, 64, (82,483,0): 114, 88, 65, (82,484,0): 115, 89, 66, (82,485,0): 117, 91, 68, (82,486,0): 119, 91, 69, (82,487,0): 120, 92, 70, (82,488,0): 127, 96, 75, (82,489,0): 130, 99, 78, (82,490,0): 132, 101, 80, (82,491,0): 131, 100, 79, (82,492,0): 129, 97, 76, (82,493,0): 126, 94, 73, (82,494,0): 126, 94, 73, (82,495,0): 126, 96, 72, (82,496,0): 123, 100, 69, (82,497,0): 121, 100, 69, (82,498,0): 121, 100, 69, (82,499,0): 121, 100, 69, (82,500,0): 119, 100, 70, (82,501,0): 117, 98, 68, (82,502,0): 115, 95, 68, (82,503,0): 114, 94, 69, (82,504,0): 114, 97, 71, (82,505,0): 113, 95, 71, (82,506,0): 111, 95, 72, (82,507,0): 109, 92, 72, (82,508,0): 107, 90, 70, (82,509,0): 106, 89, 71, (82,510,0): 103, 88, 69, (82,511,0): 102, 87, 68, (82,512,0): 107, 88, 73, (82,513,0): 106, 87, 73, (82,514,0): 105, 86, 72, (82,515,0): 104, 85, 71, (82,516,0): 103, 84, 70, (82,517,0): 101, 82, 68, (82,518,0): 100, 81, 67, (82,519,0): 100, 81, 67, (82,520,0): 95, 76, 62, (82,521,0): 95, 76, 62, (82,522,0): 94, 75, 61, (82,523,0): 93, 74, 60, (82,524,0): 93, 74, 60, (82,525,0): 94, 75, 61, (82,526,0): 95, 76, 62, (82,527,0): 95, 77, 63, (82,528,0): 91, 75, 62, (82,529,0): 91, 77, 64, (82,530,0): 93, 80, 64, (82,531,0): 95, 82, 66, (82,532,0): 101, 85, 70, (82,533,0): 103, 87, 72, (82,534,0): 107, 88, 73, (82,535,0): 109, 90, 75, (82,536,0): 110, 89, 72, (82,537,0): 110, 89, 72, (82,538,0): 114, 88, 73, (82,539,0): 114, 88, 73, (82,540,0): 117, 90, 73, (82,541,0): 119, 92, 75, (82,542,0): 121, 94, 77, (82,543,0): 123, 94, 76, (82,544,0): 125, 94, 73, (82,545,0): 125, 93, 70, (82,546,0): 124, 92, 71, (82,547,0): 123, 91, 70, (82,548,0): 121, 90, 69, (82,549,0): 120, 89, 68, (82,550,0): 120, 89, 69, (82,551,0): 119, 88, 68, (82,552,0): 114, 85, 67, (82,553,0): 114, 85, 67, (82,554,0): 115, 88, 69, (82,555,0): 115, 88, 69, (82,556,0): 115, 88, 71, (82,557,0): 115, 88, 71, (82,558,0): 112, 86, 69, (82,559,0): 110, 87, 71, (82,560,0): 108, 86, 72, (82,561,0): 105, 86, 72, (82,562,0): 104, 85, 71, (82,563,0): 102, 83, 69, (82,564,0): 99, 79, 68, (82,565,0): 97, 77, 66, (82,566,0): 96, 76, 65, (82,567,0): 95, 75, 64, (82,568,0): 90, 70, 61, (82,569,0): 89, 69, 60, (82,570,0): 88, 68, 61, (82,571,0): 86, 66, 59, (82,572,0): 84, 64, 57, (82,573,0): 83, 63, 56, (82,574,0): 81, 60, 55, (82,575,0): 81, 60, 55, (82,576,0): 78, 54, 52, (82,577,0): 77, 53, 51, (82,578,0): 74, 53, 50, (82,579,0): 72, 51, 48, (82,580,0): 70, 49, 48, (82,581,0): 68, 47, 46, (82,582,0): 66, 46, 45, (82,583,0): 65, 45, 44, (82,584,0): 63, 45, 45, (82,585,0): 63, 45, 45, (82,586,0): 62, 43, 45, (82,587,0): 61, 42, 44, (82,588,0): 58, 42, 43, (82,589,0): 57, 41, 42, (82,590,0): 57, 41, 44, (82,591,0): 56, 39, 45, (82,592,0): 56, 35, 44, (82,593,0): 56, 34, 46, (82,594,0): 56, 35, 44, (82,595,0): 56, 35, 42, (82,596,0): 56, 35, 42, (82,597,0): 56, 35, 40, (82,598,0): 56, 36, 38, (82,599,0): 56, 36, 38, (83,0,0): 29, 27, 41, (83,1,0): 29, 27, 41, (83,2,0): 29, 27, 41, (83,3,0): 29, 27, 41, (83,4,0): 30, 26, 41, (83,5,0): 30, 26, 41, (83,6,0): 30, 26, 41, (83,7,0): 30, 26, 41, (83,8,0): 35, 28, 44, (83,9,0): 35, 28, 44, (83,10,0): 36, 27, 44, (83,11,0): 36, 27, 44, (83,12,0): 36, 27, 44, (83,13,0): 36, 27, 44, (83,14,0): 38, 27, 44, (83,15,0): 39, 26, 43, (83,16,0): 42, 28, 45, (83,17,0): 44, 27, 43, (83,18,0): 44, 27, 43, (83,19,0): 45, 28, 44, (83,20,0): 45, 29, 42, (83,21,0): 46, 30, 43, (83,22,0): 46, 30, 43, (83,23,0): 46, 30, 43, (83,24,0): 44, 31, 41, (83,25,0): 45, 32, 42, (83,26,0): 45, 32, 41, (83,27,0): 45, 32, 41, (83,28,0): 46, 33, 42, (83,29,0): 47, 34, 43, (83,30,0): 47, 34, 41, (83,31,0): 49, 34, 41, (83,32,0): 54, 34, 43, (83,33,0): 55, 34, 43, (83,34,0): 55, 33, 45, (83,35,0): 55, 33, 45, (83,36,0): 55, 33, 45, (83,37,0): 55, 33, 45, (83,38,0): 55, 33, 46, (83,39,0): 55, 33, 46, (83,40,0): 55, 32, 48, (83,41,0): 55, 32, 48, (83,42,0): 55, 32, 48, (83,43,0): 55, 32, 48, (83,44,0): 55, 32, 50, (83,45,0): 55, 32, 50, (83,46,0): 55, 32, 50, (83,47,0): 55, 32, 48, (83,48,0): 54, 32, 44, (83,49,0): 54, 33, 42, (83,50,0): 54, 32, 44, (83,51,0): 54, 32, 44, (83,52,0): 52, 32, 43, (83,53,0): 52, 32, 43, (83,54,0): 52, 32, 44, (83,55,0): 52, 32, 44, (83,56,0): 46, 28, 42, (83,57,0): 46, 28, 42, (83,58,0): 45, 29, 42, (83,59,0): 44, 28, 41, (83,60,0): 44, 27, 43, (83,61,0): 43, 26, 42, (83,62,0): 41, 27, 42, (83,63,0): 40, 27, 44, (83,64,0): 35, 24, 41, (83,65,0): 34, 25, 42, (83,66,0): 36, 27, 44, (83,67,0): 37, 28, 45, (83,68,0): 37, 28, 45, (83,69,0): 36, 27, 44, (83,70,0): 34, 25, 42, (83,71,0): 33, 24, 41, (83,72,0): 34, 25, 42, (83,73,0): 34, 25, 42, (83,74,0): 34, 25, 42, (83,75,0): 33, 24, 41, (83,76,0): 33, 24, 41, (83,77,0): 32, 23, 40, (83,78,0): 32, 23, 40, (83,79,0): 32, 23, 40, (83,80,0): 33, 21, 41, (83,81,0): 33, 21, 41, (83,82,0): 31, 22, 41, (83,83,0): 30, 21, 40, (83,84,0): 30, 21, 42, (83,85,0): 29, 20, 41, (83,86,0): 28, 20, 41, (83,87,0): 27, 19, 40, (83,88,0): 24, 19, 41, (83,89,0): 24, 19, 41, (83,90,0): 24, 19, 42, (83,91,0): 24, 19, 42, (83,92,0): 23, 19, 42, (83,93,0): 23, 19, 42, (83,94,0): 23, 19, 44, (83,95,0): 23, 19, 44, (83,96,0): 21, 17, 40, (83,97,0): 21, 17, 40, (83,98,0): 21, 17, 40, (83,99,0): 21, 17, 40, (83,100,0): 22, 18, 41, (83,101,0): 22, 18, 41, (83,102,0): 22, 18, 41, (83,103,0): 22, 18, 41, (83,104,0): 23, 19, 42, (83,105,0): 22, 18, 41, (83,106,0): 22, 18, 41, (83,107,0): 22, 18, 41, (83,108,0): 21, 17, 40, (83,109,0): 21, 17, 40, (83,110,0): 20, 16, 39, (83,111,0): 20, 16, 39, (83,112,0): 20, 17, 38, (83,113,0): 20, 17, 38, (83,114,0): 20, 17, 38, (83,115,0): 20, 17, 38, (83,116,0): 20, 17, 38, (83,117,0): 20, 17, 38, (83,118,0): 20, 17, 38, (83,119,0): 20, 17, 38, (83,120,0): 22, 19, 40, (83,121,0): 22, 19, 40, (83,122,0): 21, 18, 39, (83,123,0): 20, 17, 38, (83,124,0): 20, 17, 38, (83,125,0): 19, 16, 37, (83,126,0): 18, 15, 36, (83,127,0): 18, 15, 36, (83,128,0): 16, 14, 35, (83,129,0): 15, 16, 36, (83,130,0): 15, 16, 36, (83,131,0): 15, 16, 36, (83,132,0): 18, 17, 35, (83,133,0): 18, 17, 35, (83,134,0): 20, 17, 36, (83,135,0): 20, 17, 36, (83,136,0): 23, 20, 37, (83,137,0): 23, 20, 37, (83,138,0): 24, 20, 35, (83,139,0): 24, 20, 35, (83,140,0): 26, 19, 35, (83,141,0): 26, 19, 35, (83,142,0): 26, 20, 34, (83,143,0): 27, 19, 34, (83,144,0): 32, 21, 38, (83,145,0): 33, 20, 38, (83,146,0): 34, 21, 39, (83,147,0): 34, 21, 39, (83,148,0): 35, 22, 40, (83,149,0): 35, 22, 40, (83,150,0): 36, 23, 41, (83,151,0): 36, 23, 41, (83,152,0): 37, 24, 42, (83,153,0): 36, 23, 41, (83,154,0): 35, 22, 40, (83,155,0): 33, 20, 38, (83,156,0): 33, 20, 38, (83,157,0): 33, 20, 38, (83,158,0): 34, 21, 39, (83,159,0): 33, 22, 39, (83,160,0): 32, 21, 38, (83,161,0): 31, 22, 39, (83,162,0): 31, 22, 39, (83,163,0): 32, 23, 40, (83,164,0): 32, 23, 40, (83,165,0): 33, 24, 41, (83,166,0): 33, 24, 41, (83,167,0): 33, 24, 41, (83,168,0): 33, 24, 41, (83,169,0): 33, 24, 41, (83,170,0): 32, 23, 40, (83,171,0): 32, 23, 40, (83,172,0): 31, 22, 39, (83,173,0): 31, 22, 39, (83,174,0): 30, 21, 38, (83,175,0): 30, 21, 40, (83,176,0): 29, 21, 42, (83,177,0): 29, 21, 44, (83,178,0): 28, 20, 43, (83,179,0): 28, 20, 43, (83,180,0): 28, 20, 43, (83,181,0): 30, 22, 45, (83,182,0): 31, 23, 46, (83,183,0): 32, 24, 47, (83,184,0): 32, 24, 47, (83,185,0): 32, 24, 47, (83,186,0): 32, 24, 47, (83,187,0): 32, 24, 47, (83,188,0): 32, 24, 47, (83,189,0): 32, 24, 47, (83,190,0): 32, 24, 47, (83,191,0): 32, 24, 47, (83,192,0): 30, 25, 47, (83,193,0): 30, 25, 47, (83,194,0): 33, 25, 48, (83,195,0): 33, 25, 48, (83,196,0): 34, 26, 47, (83,197,0): 34, 26, 47, (83,198,0): 36, 27, 48, (83,199,0): 36, 27, 46, (83,200,0): 38, 26, 46, (83,201,0): 38, 26, 46, (83,202,0): 39, 28, 45, (83,203,0): 39, 28, 45, (83,204,0): 41, 28, 46, (83,205,0): 41, 28, 46, (83,206,0): 42, 29, 46, (83,207,0): 42, 29, 46, (83,208,0): 43, 28, 47, (83,209,0): 43, 28, 47, (83,210,0): 46, 29, 47, (83,211,0): 46, 29, 47, (83,212,0): 47, 30, 48, (83,213,0): 47, 30, 48, (83,214,0): 49, 31, 47, (83,215,0): 49, 31, 47, (83,216,0): 50, 29, 44, (83,217,0): 50, 29, 44, (83,218,0): 50, 29, 44, (83,219,0): 51, 30, 45, (83,220,0): 52, 30, 43, (83,221,0): 53, 31, 44, (83,222,0): 53, 31, 44, (83,223,0): 53, 31, 43, (83,224,0): 53, 30, 40, (83,225,0): 53, 30, 38, (83,226,0): 53, 30, 38, (83,227,0): 53, 30, 38, (83,228,0): 53, 30, 38, (83,229,0): 53, 30, 38, (83,230,0): 53, 30, 38, (83,231,0): 53, 30, 38, (83,232,0): 54, 31, 39, (83,233,0): 56, 33, 41, (83,234,0): 58, 35, 43, (83,235,0): 57, 34, 42, (83,236,0): 55, 32, 40, (83,237,0): 54, 31, 39, (83,238,0): 56, 33, 41, (83,239,0): 60, 35, 41, (83,240,0): 67, 36, 42, (83,241,0): 68, 36, 41, (83,242,0): 69, 37, 42, (83,243,0): 69, 37, 42, (83,244,0): 72, 37, 43, (83,245,0): 72, 37, 43, (83,246,0): 73, 38, 44, (83,247,0): 73, 38, 44, (83,248,0): 73, 36, 43, (83,249,0): 73, 36, 43, (83,250,0): 75, 35, 43, (83,251,0): 75, 35, 43, (83,252,0): 75, 35, 43, (83,253,0): 75, 35, 43, (83,254,0): 76, 35, 43, (83,255,0): 76, 35, 41, (83,256,0): 79, 36, 43, (83,257,0): 79, 37, 41, (83,258,0): 79, 37, 41, (83,259,0): 79, 37, 41, (83,260,0): 79, 37, 41, (83,261,0): 79, 37, 41, (83,262,0): 79, 37, 41, (83,263,0): 79, 37, 41, (83,264,0): 81, 39, 43, (83,265,0): 81, 39, 43, (83,266,0): 81, 39, 43, (83,267,0): 81, 39, 43, (83,268,0): 81, 39, 43, (83,269,0): 80, 38, 42, (83,270,0): 80, 38, 42, (83,271,0): 80, 38, 42, (83,272,0): 83, 42, 46, (83,273,0): 83, 42, 46, (83,274,0): 84, 43, 47, (83,275,0): 85, 44, 48, (83,276,0): 86, 45, 49, (83,277,0): 87, 47, 48, (83,278,0): 88, 48, 49, (83,279,0): 89, 49, 50, (83,280,0): 86, 46, 46, (83,281,0): 86, 46, 46, (83,282,0): 88, 48, 46, (83,283,0): 89, 49, 47, (83,284,0): 91, 51, 49, (83,285,0): 92, 52, 50, (83,286,0): 94, 54, 52, (83,287,0): 95, 54, 50, (83,288,0): 103, 58, 53, (83,289,0): 108, 61, 55, (83,290,0): 110, 63, 57, (83,291,0): 111, 64, 54, (83,292,0): 112, 66, 53, (83,293,0): 117, 71, 55, (83,294,0): 124, 78, 55, (83,295,0): 130, 83, 55, (83,296,0): 134, 84, 51, (83,297,0): 143, 90, 50, (83,298,0): 152, 96, 49, (83,299,0): 162, 102, 48, (83,300,0): 175, 113, 54, (83,301,0): 189, 125, 61, (83,302,0): 192, 127, 59, (83,303,0): 187, 122, 56, (83,304,0): 177, 115, 56, (83,305,0): 169, 112, 57, (83,306,0): 160, 107, 53, (83,307,0): 152, 105, 51, (83,308,0): 146, 105, 53, (83,309,0): 140, 102, 53, (83,310,0): 135, 98, 53, (83,311,0): 131, 94, 50, (83,312,0): 132, 93, 54, (83,313,0): 131, 92, 53, (83,314,0): 130, 90, 54, (83,315,0): 128, 90, 53, (83,316,0): 126, 90, 54, (83,317,0): 127, 93, 55, (83,318,0): 127, 95, 56, (83,319,0): 129, 97, 58, (83,320,0): 133, 99, 62, (83,321,0): 134, 98, 62, (83,322,0): 134, 98, 62, (83,323,0): 134, 98, 62, (83,324,0): 136, 100, 64, (83,325,0): 137, 103, 66, (83,326,0): 139, 105, 68, (83,327,0): 140, 106, 69, (83,328,0): 140, 108, 70, (83,329,0): 143, 111, 73, (83,330,0): 145, 115, 77, (83,331,0): 145, 115, 77, (83,332,0): 144, 114, 76, (83,333,0): 143, 113, 75, (83,334,0): 144, 114, 76, (83,335,0): 145, 117, 78, (83,336,0): 144, 119, 79, (83,337,0): 143, 120, 79, (83,338,0): 143, 120, 79, (83,339,0): 143, 120, 79, (83,340,0): 144, 121, 80, (83,341,0): 146, 123, 82, (83,342,0): 148, 125, 84, (83,343,0): 149, 126, 85, (83,344,0): 151, 128, 87, (83,345,0): 151, 128, 87, (83,346,0): 150, 127, 86, (83,347,0): 150, 127, 86, (83,348,0): 150, 127, 86, (83,349,0): 150, 127, 86, (83,350,0): 150, 127, 86, (83,351,0): 150, 126, 88, (83,352,0): 151, 125, 90, (83,353,0): 151, 125, 92, (83,354,0): 152, 126, 93, (83,355,0): 152, 126, 93, (83,356,0): 154, 125, 93, (83,357,0): 152, 123, 91, (83,358,0): 151, 122, 92, (83,359,0): 150, 121, 91, (83,360,0): 152, 121, 93, (83,361,0): 151, 120, 92, (83,362,0): 152, 118, 93, (83,363,0): 151, 117, 92, (83,364,0): 151, 117, 92, (83,365,0): 152, 118, 93, (83,366,0): 154, 118, 94, (83,367,0): 155, 119, 93, (83,368,0): 158, 124, 96, (83,369,0): 158, 124, 96, (83,370,0): 162, 122, 97, (83,371,0): 166, 121, 100, (83,372,0): 168, 120, 100, (83,373,0): 171, 120, 103, (83,374,0): 171, 119, 105, (83,375,0): 171, 119, 105, (83,376,0): 169, 122, 106, (83,377,0): 165, 122, 105, (83,378,0): 164, 123, 103, (83,379,0): 161, 123, 102, (83,380,0): 162, 124, 101, (83,381,0): 165, 125, 100, (83,382,0): 168, 126, 102, (83,383,0): 171, 126, 103, (83,384,0): 171, 124, 104, (83,385,0): 175, 124, 103, (83,386,0): 178, 126, 104, (83,387,0): 184, 128, 103, (83,388,0): 191, 130, 101, (83,389,0): 198, 134, 99, (83,390,0): 205, 136, 97, (83,391,0): 209, 136, 93, (83,392,0): 212, 134, 88, (83,393,0): 220, 140, 91, (83,394,0): 232, 149, 97, (83,395,0): 243, 158, 103, (83,396,0): 251, 164, 110, (83,397,0): 252, 166, 109, (83,398,0): 249, 163, 104, (83,399,0): 246, 160, 103, (83,400,0): 239, 154, 99, (83,401,0): 237, 152, 97, (83,402,0): 234, 147, 93, (83,403,0): 231, 144, 90, (83,404,0): 231, 144, 90, (83,405,0): 233, 148, 91, (83,406,0): 236, 151, 94, (83,407,0): 236, 154, 94, (83,408,0): 234, 154, 93, (83,409,0): 233, 155, 91, (83,410,0): 232, 158, 93, (83,411,0): 230, 161, 92, (83,412,0): 231, 164, 94, (83,413,0): 230, 168, 95, (83,414,0): 229, 169, 96, (83,415,0): 230, 170, 97, (83,416,0): 231, 171, 101, (83,417,0): 230, 171, 101, (83,418,0): 229, 170, 100, (83,419,0): 224, 167, 96, (83,420,0): 220, 163, 94, (83,421,0): 216, 162, 92, (83,422,0): 217, 164, 96, (83,423,0): 218, 168, 99, (83,424,0): 214, 165, 98, (83,425,0): 214, 167, 99, (83,426,0): 213, 165, 99, (83,427,0): 211, 166, 99, (83,428,0): 210, 166, 101, (83,429,0): 209, 165, 100, (83,430,0): 206, 165, 101, (83,431,0): 206, 165, 99, (83,432,0): 213, 169, 104, (83,433,0): 212, 168, 103, (83,434,0): 209, 168, 104, (83,435,0): 206, 167, 102, (83,436,0): 204, 164, 102, (83,437,0): 200, 162, 99, (83,438,0): 198, 160, 97, (83,439,0): 197, 159, 96, (83,440,0): 203, 165, 102, (83,441,0): 205, 166, 101, (83,442,0): 208, 169, 102, (83,443,0): 211, 171, 101, (83,444,0): 213, 171, 99, (83,445,0): 213, 169, 96, (83,446,0): 213, 167, 92, (83,447,0): 213, 165, 93, (83,448,0): 211, 161, 98, (83,449,0): 205, 155, 96, (83,450,0): 198, 147, 90, (83,451,0): 193, 144, 88, (83,452,0): 188, 141, 89, (83,453,0): 185, 139, 89, (83,454,0): 178, 136, 88, (83,455,0): 173, 135, 90, (83,456,0): 157, 120, 78, (83,457,0): 148, 114, 76, (83,458,0): 139, 106, 71, (83,459,0): 133, 104, 70, (83,460,0): 131, 104, 74, (83,461,0): 132, 107, 77, (83,462,0): 132, 106, 79, (83,463,0): 130, 107, 76, (83,464,0): 126, 105, 74, (83,465,0): 123, 103, 70, (83,466,0): 121, 100, 69, (83,467,0): 121, 100, 69, (83,468,0): 125, 102, 71, (83,469,0): 127, 104, 73, (83,470,0): 126, 102, 74, (83,471,0): 125, 101, 73, (83,472,0): 127, 101, 76, (83,473,0): 127, 101, 76, (83,474,0): 128, 100, 76, (83,475,0): 127, 99, 75, (83,476,0): 125, 97, 75, (83,477,0): 122, 94, 72, (83,478,0): 122, 91, 70, (83,479,0): 118, 90, 68, (83,480,0): 113, 87, 64, (83,481,0): 111, 87, 63, (83,482,0): 112, 86, 63, (83,483,0): 112, 86, 63, (83,484,0): 113, 87, 64, (83,485,0): 116, 90, 67, (83,486,0): 120, 92, 70, (83,487,0): 122, 94, 72, (83,488,0): 125, 94, 73, (83,489,0): 129, 98, 77, (83,490,0): 132, 101, 80, (83,491,0): 132, 101, 80, (83,492,0): 130, 98, 77, (83,493,0): 128, 96, 75, (83,494,0): 127, 95, 74, (83,495,0): 127, 97, 73, (83,496,0): 124, 98, 71, (83,497,0): 121, 100, 69, (83,498,0): 121, 100, 69, (83,499,0): 121, 100, 71, (83,500,0): 120, 99, 70, (83,501,0): 117, 97, 70, (83,502,0): 115, 95, 70, (83,503,0): 113, 93, 69, (83,504,0): 115, 97, 73, (83,505,0): 114, 96, 74, (83,506,0): 112, 94, 74, (83,507,0): 110, 93, 73, (83,508,0): 107, 90, 72, (83,509,0): 105, 88, 70, (83,510,0): 103, 88, 69, (83,511,0): 103, 86, 70, (83,512,0): 108, 89, 75, (83,513,0): 108, 89, 75, (83,514,0): 106, 87, 73, (83,515,0): 104, 85, 71, (83,516,0): 103, 84, 70, (83,517,0): 101, 82, 68, (83,518,0): 99, 80, 66, (83,519,0): 99, 80, 66, (83,520,0): 93, 74, 60, (83,521,0): 93, 74, 60, (83,522,0): 92, 73, 59, (83,523,0): 91, 72, 58, (83,524,0): 92, 73, 59, (83,525,0): 93, 74, 60, (83,526,0): 94, 75, 61, (83,527,0): 94, 76, 62, (83,528,0): 91, 75, 62, (83,529,0): 90, 76, 63, (83,530,0): 92, 79, 63, (83,531,0): 95, 82, 66, (83,532,0): 101, 85, 70, (83,533,0): 104, 88, 73, (83,534,0): 108, 89, 74, (83,535,0): 109, 90, 75, (83,536,0): 111, 90, 73, (83,537,0): 111, 90, 73, (83,538,0): 115, 89, 74, (83,539,0): 116, 90, 75, (83,540,0): 118, 91, 74, (83,541,0): 119, 92, 75, (83,542,0): 120, 93, 76, (83,543,0): 122, 93, 75, (83,544,0): 123, 92, 71, (83,545,0): 124, 92, 69, (83,546,0): 123, 91, 70, (83,547,0): 122, 90, 69, (83,548,0): 121, 90, 69, (83,549,0): 120, 89, 68, (83,550,0): 120, 89, 69, (83,551,0): 117, 89, 68, (83,552,0): 114, 85, 67, (83,553,0): 114, 85, 67, (83,554,0): 114, 87, 68, (83,555,0): 115, 88, 69, (83,556,0): 115, 88, 71, (83,557,0): 114, 87, 70, (83,558,0): 112, 86, 69, (83,559,0): 110, 87, 71, (83,560,0): 106, 84, 70, (83,561,0): 104, 85, 71, (83,562,0): 102, 83, 69, (83,563,0): 101, 82, 68, (83,564,0): 99, 79, 68, (83,565,0): 97, 77, 66, (83,566,0): 96, 76, 65, (83,567,0): 95, 75, 64, (83,568,0): 89, 69, 60, (83,569,0): 89, 69, 60, (83,570,0): 88, 68, 61, (83,571,0): 86, 66, 59, (83,572,0): 85, 65, 58, (83,573,0): 84, 64, 57, (83,574,0): 83, 62, 57, (83,575,0): 82, 61, 56, (83,576,0): 77, 53, 51, (83,577,0): 77, 53, 51, (83,578,0): 74, 53, 50, (83,579,0): 73, 52, 49, (83,580,0): 71, 50, 49, (83,581,0): 70, 49, 48, (83,582,0): 68, 48, 47, (83,583,0): 67, 47, 46, (83,584,0): 65, 47, 47, (83,585,0): 64, 46, 46, (83,586,0): 63, 44, 46, (83,587,0): 61, 42, 44, (83,588,0): 57, 41, 42, (83,589,0): 56, 40, 41, (83,590,0): 55, 39, 42, (83,591,0): 54, 37, 43, (83,592,0): 54, 34, 43, (83,593,0): 55, 33, 45, (83,594,0): 55, 34, 43, (83,595,0): 55, 34, 41, (83,596,0): 55, 34, 41, (83,597,0): 55, 34, 39, (83,598,0): 55, 35, 37, (83,599,0): 55, 35, 37, (84,0,0): 29, 27, 41, (84,1,0): 29, 27, 41, (84,2,0): 29, 27, 41, (84,3,0): 29, 27, 41, (84,4,0): 30, 26, 41, (84,5,0): 30, 26, 41, (84,6,0): 30, 26, 41, (84,7,0): 30, 26, 41, (84,8,0): 35, 28, 44, (84,9,0): 35, 28, 44, (84,10,0): 36, 27, 44, (84,11,0): 36, 27, 44, (84,12,0): 36, 27, 44, (84,13,0): 36, 27, 44, (84,14,0): 38, 27, 44, (84,15,0): 39, 26, 43, (84,16,0): 42, 28, 45, (84,17,0): 44, 27, 43, (84,18,0): 44, 27, 43, (84,19,0): 45, 28, 44, (84,20,0): 45, 29, 42, (84,21,0): 46, 30, 43, (84,22,0): 46, 30, 43, (84,23,0): 46, 30, 43, (84,24,0): 47, 31, 42, (84,25,0): 47, 31, 42, (84,26,0): 47, 31, 41, (84,27,0): 48, 32, 42, (84,28,0): 49, 33, 43, (84,29,0): 49, 33, 43, (84,30,0): 49, 34, 41, (84,31,0): 51, 34, 42, (84,32,0): 54, 34, 43, (84,33,0): 55, 34, 43, (84,34,0): 55, 34, 43, (84,35,0): 55, 34, 43, (84,36,0): 55, 33, 45, (84,37,0): 55, 33, 45, (84,38,0): 55, 33, 45, (84,39,0): 55, 33, 45, (84,40,0): 55, 33, 46, (84,41,0): 55, 33, 46, (84,42,0): 55, 32, 48, (84,43,0): 55, 32, 48, (84,44,0): 55, 32, 48, (84,45,0): 55, 32, 48, (84,46,0): 55, 32, 50, (84,47,0): 55, 32, 48, (84,48,0): 55, 33, 46, (84,49,0): 55, 33, 45, (84,50,0): 55, 33, 45, (84,51,0): 54, 32, 44, (84,52,0): 52, 32, 44, (84,53,0): 51, 31, 43, (84,54,0): 51, 31, 43, (84,55,0): 51, 31, 43, (84,56,0): 46, 28, 42, (84,57,0): 46, 28, 42, (84,58,0): 44, 27, 43, (84,59,0): 44, 27, 43, (84,60,0): 43, 26, 42, (84,61,0): 43, 26, 42, (84,62,0): 40, 26, 43, (84,63,0): 39, 26, 43, (84,64,0): 34, 23, 40, (84,65,0): 33, 24, 41, (84,66,0): 35, 26, 43, (84,67,0): 36, 27, 44, (84,68,0): 36, 27, 44, (84,69,0): 35, 26, 43, (84,70,0): 33, 24, 41, (84,71,0): 32, 23, 40, (84,72,0): 34, 25, 42, (84,73,0): 34, 25, 42, (84,74,0): 34, 25, 42, (84,75,0): 33, 24, 41, (84,76,0): 33, 24, 41, (84,77,0): 32, 23, 40, (84,78,0): 32, 23, 40, (84,79,0): 32, 23, 40, (84,80,0): 33, 21, 41, (84,81,0): 33, 21, 41, (84,82,0): 31, 22, 41, (84,83,0): 30, 21, 40, (84,84,0): 30, 21, 42, (84,85,0): 29, 20, 41, (84,86,0): 28, 20, 41, (84,87,0): 27, 19, 40, (84,88,0): 24, 19, 41, (84,89,0): 24, 19, 41, (84,90,0): 24, 19, 42, (84,91,0): 24, 19, 42, (84,92,0): 23, 19, 42, (84,93,0): 23, 19, 42, (84,94,0): 23, 19, 44, (84,95,0): 23, 19, 44, (84,96,0): 22, 18, 41, (84,97,0): 22, 18, 41, (84,98,0): 22, 18, 41, (84,99,0): 22, 18, 41, (84,100,0): 21, 17, 40, (84,101,0): 21, 17, 40, (84,102,0): 21, 17, 40, (84,103,0): 21, 17, 40, (84,104,0): 23, 19, 42, (84,105,0): 22, 18, 41, (84,106,0): 22, 18, 41, (84,107,0): 22, 18, 41, (84,108,0): 21, 17, 40, (84,109,0): 21, 17, 40, (84,110,0): 20, 16, 39, (84,111,0): 20, 16, 39, (84,112,0): 20, 17, 38, (84,113,0): 20, 17, 38, (84,114,0): 20, 17, 38, (84,115,0): 20, 17, 38, (84,116,0): 20, 17, 38, (84,117,0): 20, 17, 38, (84,118,0): 20, 17, 38, (84,119,0): 20, 17, 38, (84,120,0): 22, 19, 40, (84,121,0): 22, 19, 40, (84,122,0): 21, 18, 39, (84,123,0): 20, 17, 38, (84,124,0): 20, 17, 38, (84,125,0): 19, 16, 37, (84,126,0): 18, 15, 36, (84,127,0): 18, 15, 36, (84,128,0): 16, 14, 35, (84,129,0): 17, 15, 36, (84,130,0): 17, 15, 36, (84,131,0): 17, 15, 36, (84,132,0): 18, 17, 35, (84,133,0): 18, 17, 35, (84,134,0): 20, 17, 36, (84,135,0): 20, 17, 36, (84,136,0): 24, 20, 37, (84,137,0): 24, 20, 37, (84,138,0): 26, 19, 35, (84,139,0): 26, 19, 35, (84,140,0): 26, 19, 35, (84,141,0): 26, 19, 35, (84,142,0): 26, 20, 34, (84,143,0): 27, 19, 34, (84,144,0): 32, 21, 38, (84,145,0): 33, 20, 38, (84,146,0): 34, 21, 39, (84,147,0): 34, 21, 39, (84,148,0): 35, 22, 40, (84,149,0): 35, 22, 40, (84,150,0): 36, 23, 41, (84,151,0): 36, 23, 41, (84,152,0): 37, 24, 42, (84,153,0): 36, 23, 41, (84,154,0): 35, 22, 40, (84,155,0): 33, 20, 38, (84,156,0): 33, 20, 38, (84,157,0): 33, 20, 38, (84,158,0): 34, 21, 39, (84,159,0): 33, 22, 39, (84,160,0): 32, 21, 38, (84,161,0): 30, 21, 38, (84,162,0): 30, 21, 38, (84,163,0): 31, 22, 39, (84,164,0): 31, 22, 39, (84,165,0): 32, 23, 40, (84,166,0): 32, 23, 40, (84,167,0): 33, 24, 41, (84,168,0): 33, 24, 41, (84,169,0): 33, 24, 41, (84,170,0): 32, 23, 40, (84,171,0): 32, 23, 40, (84,172,0): 31, 22, 39, (84,173,0): 31, 22, 39, (84,174,0): 30, 21, 38, (84,175,0): 30, 21, 40, (84,176,0): 29, 21, 42, (84,177,0): 28, 20, 41, (84,178,0): 27, 19, 40, (84,179,0): 27, 19, 40, (84,180,0): 28, 20, 41, (84,181,0): 29, 21, 42, (84,182,0): 30, 22, 43, (84,183,0): 31, 23, 44, (84,184,0): 32, 24, 45, (84,185,0): 32, 24, 45, (84,186,0): 32, 24, 45, (84,187,0): 32, 24, 45, (84,188,0): 32, 24, 45, (84,189,0): 32, 24, 45, (84,190,0): 32, 24, 45, (84,191,0): 32, 24, 45, (84,192,0): 32, 24, 47, (84,193,0): 32, 24, 47, (84,194,0): 33, 25, 46, (84,195,0): 33, 25, 46, (84,196,0): 35, 26, 47, (84,197,0): 35, 26, 47, (84,198,0): 36, 27, 46, (84,199,0): 36, 27, 46, (84,200,0): 38, 26, 46, (84,201,0): 38, 27, 44, (84,202,0): 40, 27, 45, (84,203,0): 40, 27, 45, (84,204,0): 41, 28, 45, (84,205,0): 41, 28, 45, (84,206,0): 43, 29, 46, (84,207,0): 43, 29, 46, (84,208,0): 43, 29, 46, (84,209,0): 43, 29, 46, (84,210,0): 46, 29, 47, (84,211,0): 46, 29, 47, (84,212,0): 47, 30, 46, (84,213,0): 47, 30, 46, (84,214,0): 49, 31, 47, (84,215,0): 49, 31, 47, (84,216,0): 50, 29, 44, (84,217,0): 50, 29, 44, (84,218,0): 50, 30, 42, (84,219,0): 51, 31, 43, (84,220,0): 52, 30, 43, (84,221,0): 53, 31, 44, (84,222,0): 53, 31, 43, (84,223,0): 53, 31, 43, (84,224,0): 53, 30, 40, (84,225,0): 53, 30, 38, (84,226,0): 53, 30, 38, (84,227,0): 53, 30, 38, (84,228,0): 53, 30, 38, (84,229,0): 53, 30, 38, (84,230,0): 53, 30, 38, (84,231,0): 53, 30, 38, (84,232,0): 54, 31, 39, (84,233,0): 56, 33, 41, (84,234,0): 58, 35, 43, (84,235,0): 57, 34, 42, (84,236,0): 54, 31, 39, (84,237,0): 53, 30, 38, (84,238,0): 55, 32, 40, (84,239,0): 59, 34, 40, (84,240,0): 65, 36, 41, (84,241,0): 66, 35, 40, (84,242,0): 68, 36, 41, (84,243,0): 68, 36, 41, (84,244,0): 69, 37, 42, (84,245,0): 69, 37, 42, (84,246,0): 72, 37, 43, (84,247,0): 72, 37, 43, (84,248,0): 74, 37, 44, (84,249,0): 74, 37, 44, (84,250,0): 74, 37, 44, (84,251,0): 74, 37, 44, (84,252,0): 76, 36, 44, (84,253,0): 76, 36, 44, (84,254,0): 76, 36, 44, (84,255,0): 77, 36, 42, (84,256,0): 79, 36, 43, (84,257,0): 79, 37, 41, (84,258,0): 79, 37, 41, (84,259,0): 79, 37, 41, (84,260,0): 79, 37, 41, (84,261,0): 79, 37, 41, (84,262,0): 79, 37, 41, (84,263,0): 79, 37, 41, (84,264,0): 81, 39, 43, (84,265,0): 81, 39, 43, (84,266,0): 81, 39, 43, (84,267,0): 80, 38, 42, (84,268,0): 80, 38, 42, (84,269,0): 80, 38, 42, (84,270,0): 80, 38, 42, (84,271,0): 80, 38, 42, (84,272,0): 82, 41, 45, (84,273,0): 83, 42, 46, (84,274,0): 84, 43, 47, (84,275,0): 85, 44, 48, (84,276,0): 86, 46, 47, (84,277,0): 87, 47, 48, (84,278,0): 88, 48, 49, (84,279,0): 88, 48, 48, (84,280,0): 86, 46, 46, (84,281,0): 86, 46, 46, (84,282,0): 88, 48, 46, (84,283,0): 89, 49, 47, (84,284,0): 91, 52, 47, (84,285,0): 92, 53, 48, (84,286,0): 94, 55, 50, (84,287,0): 95, 54, 50, (84,288,0): 102, 59, 53, (84,289,0): 105, 60, 54, (84,290,0): 107, 62, 56, (84,291,0): 108, 64, 53, (84,292,0): 112, 66, 53, (84,293,0): 116, 70, 54, (84,294,0): 124, 78, 55, (84,295,0): 130, 83, 55, (84,296,0): 135, 85, 52, (84,297,0): 144, 92, 52, (84,298,0): 153, 99, 53, (84,299,0): 161, 104, 51, (84,300,0): 174, 113, 56, (84,301,0): 188, 124, 62, (84,302,0): 191, 126, 60, (84,303,0): 185, 121, 57, (84,304,0): 177, 116, 59, (84,305,0): 169, 112, 57, (84,306,0): 160, 107, 53, (84,307,0): 152, 105, 53, (84,308,0): 146, 105, 53, (84,309,0): 141, 103, 54, (84,310,0): 137, 100, 55, (84,311,0): 132, 98, 53, (84,312,0): 131, 93, 54, (84,313,0): 130, 92, 53, (84,314,0): 130, 92, 55, (84,315,0): 130, 92, 55, (84,316,0): 129, 94, 56, (84,317,0): 129, 95, 57, (84,318,0): 129, 97, 58, (84,319,0): 130, 98, 57, (84,320,0): 134, 100, 62, (84,321,0): 134, 99, 61, (84,322,0): 134, 99, 61, (84,323,0): 134, 99, 61, (84,324,0): 134, 100, 62, (84,325,0): 136, 102, 64, (84,326,0): 137, 103, 65, (84,327,0): 137, 105, 66, (84,328,0): 140, 108, 69, (84,329,0): 144, 112, 73, (84,330,0): 145, 116, 76, (84,331,0): 146, 117, 77, (84,332,0): 144, 116, 76, (84,333,0): 144, 116, 76, (84,334,0): 145, 117, 77, (84,335,0): 147, 119, 79, (84,336,0): 144, 119, 79, (84,337,0): 142, 119, 78, (84,338,0): 142, 119, 78, (84,339,0): 142, 119, 78, (84,340,0): 143, 120, 79, (84,341,0): 145, 122, 81, (84,342,0): 147, 124, 83, (84,343,0): 148, 125, 84, (84,344,0): 150, 127, 86, (84,345,0): 150, 127, 86, (84,346,0): 151, 128, 87, (84,347,0): 151, 128, 87, (84,348,0): 151, 128, 87, (84,349,0): 151, 128, 87, (84,350,0): 151, 128, 87, (84,351,0): 151, 127, 89, (84,352,0): 149, 123, 88, (84,353,0): 150, 124, 89, (84,354,0): 151, 125, 90, (84,355,0): 151, 125, 90, (84,356,0): 152, 123, 91, (84,357,0): 151, 122, 90, (84,358,0): 150, 121, 91, (84,359,0): 149, 120, 90, (84,360,0): 154, 123, 94, (84,361,0): 153, 122, 93, (84,362,0): 154, 120, 93, (84,363,0): 153, 119, 92, (84,364,0): 153, 119, 94, (84,365,0): 154, 120, 95, (84,366,0): 156, 120, 96, (84,367,0): 157, 121, 95, (84,368,0): 159, 126, 95, (84,369,0): 160, 125, 95, (84,370,0): 163, 123, 97, (84,371,0): 167, 122, 99, (84,372,0): 168, 121, 101, (84,373,0): 170, 122, 102, (84,374,0): 170, 121, 104, (84,375,0): 170, 121, 104, (84,376,0): 168, 122, 106, (84,377,0): 164, 123, 105, (84,378,0): 162, 124, 103, (84,379,0): 160, 124, 102, (84,380,0): 161, 125, 101, (84,381,0): 162, 126, 100, (84,382,0): 165, 128, 102, (84,383,0): 169, 127, 103, (84,384,0): 173, 125, 102, (84,385,0): 179, 125, 101, (84,386,0): 183, 127, 102, (84,387,0): 189, 129, 101, (84,388,0): 195, 132, 99, (84,389,0): 202, 134, 97, (84,390,0): 207, 135, 95, (84,391,0): 210, 136, 91, (84,392,0): 213, 132, 85, (84,393,0): 221, 139, 89, (84,394,0): 232, 149, 97, (84,395,0): 243, 158, 103, (84,396,0): 249, 162, 108, (84,397,0): 250, 164, 107, (84,398,0): 248, 162, 105, (84,399,0): 246, 160, 103, (84,400,0): 238, 153, 98, (84,401,0): 234, 151, 97, (84,402,0): 233, 148, 94, (84,403,0): 231, 146, 91, (84,404,0): 230, 145, 90, (84,405,0): 232, 147, 90, (84,406,0): 235, 150, 93, (84,407,0): 235, 153, 95, (84,408,0): 236, 156, 97, (84,409,0): 233, 157, 95, (84,410,0): 231, 160, 96, (84,411,0): 231, 164, 96, (84,412,0): 230, 165, 97, (84,413,0): 230, 167, 96, (84,414,0): 230, 170, 98, (84,415,0): 229, 170, 100, (84,416,0): 230, 171, 101, (84,417,0): 229, 172, 103, (84,418,0): 227, 170, 101, (84,419,0): 223, 166, 97, (84,420,0): 219, 162, 95, (84,421,0): 216, 161, 94, (84,422,0): 218, 165, 97, (84,423,0): 220, 170, 101, (84,424,0): 214, 165, 98, (84,425,0): 214, 167, 99, (84,426,0): 214, 166, 100, (84,427,0): 212, 167, 100, (84,428,0): 211, 168, 100, (84,429,0): 210, 167, 99, (84,430,0): 208, 164, 99, (84,431,0): 205, 164, 98, (84,432,0): 214, 173, 107, (84,433,0): 211, 172, 103, (84,434,0): 209, 170, 103, (84,435,0): 205, 168, 100, (84,436,0): 203, 165, 100, (84,437,0): 199, 164, 98, (84,438,0): 197, 162, 96, (84,439,0): 198, 160, 95, (84,440,0): 201, 163, 98, (84,441,0): 203, 164, 97, (84,442,0): 207, 167, 98, (84,443,0): 211, 168, 99, (84,444,0): 215, 168, 98, (84,445,0): 215, 167, 95, (84,446,0): 214, 166, 92, (84,447,0): 212, 163, 94, (84,448,0): 212, 162, 101, (84,449,0): 206, 155, 98, (84,450,0): 197, 146, 91, (84,451,0): 190, 140, 87, (84,452,0): 185, 138, 86, (84,453,0): 180, 136, 87, (84,454,0): 176, 133, 88, (84,455,0): 170, 131, 88, (84,456,0): 154, 116, 77, (84,457,0): 146, 112, 74, (84,458,0): 140, 107, 72, (84,459,0): 134, 105, 71, (84,460,0): 131, 104, 74, (84,461,0): 131, 106, 76, (84,462,0): 131, 105, 78, (84,463,0): 130, 107, 76, (84,464,0): 127, 106, 75, (84,465,0): 124, 104, 71, (84,466,0): 122, 102, 69, (84,467,0): 122, 102, 69, (84,468,0): 126, 103, 72, (84,469,0): 128, 105, 74, (84,470,0): 127, 104, 73, (84,471,0): 126, 103, 72, (84,472,0): 128, 102, 75, (84,473,0): 128, 102, 75, (84,474,0): 128, 100, 76, (84,475,0): 127, 99, 75, (84,476,0): 125, 97, 73, (84,477,0): 122, 94, 70, (84,478,0): 121, 90, 69, (84,479,0): 117, 89, 67, (84,480,0): 112, 86, 61, (84,481,0): 112, 86, 61, (84,482,0): 111, 85, 60, (84,483,0): 112, 86, 61, (84,484,0): 114, 86, 62, (84,485,0): 117, 89, 65, (84,486,0): 120, 92, 68, (84,487,0): 122, 94, 70, (84,488,0): 122, 92, 68, (84,489,0): 126, 96, 72, (84,490,0): 131, 99, 76, (84,491,0): 133, 101, 78, (84,492,0): 131, 99, 76, (84,493,0): 128, 96, 73, (84,494,0): 130, 95, 73, (84,495,0): 127, 97, 73, (84,496,0): 123, 97, 70, (84,497,0): 122, 98, 70, (84,498,0): 123, 99, 71, (84,499,0): 121, 100, 73, (84,500,0): 120, 99, 72, (84,501,0): 118, 96, 72, (84,502,0): 116, 96, 71, (84,503,0): 115, 95, 71, (84,504,0): 117, 96, 75, (84,505,0): 114, 96, 76, (84,506,0): 113, 95, 75, (84,507,0): 111, 92, 75, (84,508,0): 108, 91, 75, (84,509,0): 107, 90, 74, (84,510,0): 105, 88, 72, (84,511,0): 105, 87, 73, (84,512,0): 109, 90, 76, (84,513,0): 108, 89, 75, (84,514,0): 107, 88, 74, (84,515,0): 105, 86, 72, (84,516,0): 103, 84, 70, (84,517,0): 101, 82, 68, (84,518,0): 100, 81, 67, (84,519,0): 99, 80, 66, (84,520,0): 91, 72, 58, (84,521,0): 90, 71, 57, (84,522,0): 90, 71, 57, (84,523,0): 90, 71, 57, (84,524,0): 90, 71, 57, (84,525,0): 92, 73, 59, (84,526,0): 93, 74, 60, (84,527,0): 93, 75, 61, (84,528,0): 92, 76, 63, (84,529,0): 91, 77, 64, (84,530,0): 93, 80, 64, (84,531,0): 96, 83, 67, (84,532,0): 100, 84, 69, (84,533,0): 103, 87, 72, (84,534,0): 107, 88, 73, (84,535,0): 108, 89, 74, (84,536,0): 110, 89, 72, (84,537,0): 111, 90, 73, (84,538,0): 115, 89, 74, (84,539,0): 116, 90, 75, (84,540,0): 118, 91, 74, (84,541,0): 119, 92, 75, (84,542,0): 119, 92, 75, (84,543,0): 120, 91, 73, (84,544,0): 120, 89, 69, (84,545,0): 121, 89, 68, (84,546,0): 120, 89, 68, (84,547,0): 120, 89, 68, (84,548,0): 119, 88, 68, (84,549,0): 119, 88, 68, (84,550,0): 117, 88, 70, (84,551,0): 117, 88, 70, (84,552,0): 115, 86, 68, (84,553,0): 115, 88, 69, (84,554,0): 116, 89, 72, (84,555,0): 116, 89, 72, (84,556,0): 115, 89, 74, (84,557,0): 115, 89, 74, (84,558,0): 114, 88, 73, (84,559,0): 111, 88, 72, (84,560,0): 105, 83, 69, (84,561,0): 103, 84, 70, (84,562,0): 102, 83, 69, (84,563,0): 100, 81, 67, (84,564,0): 99, 79, 68, (84,565,0): 98, 78, 67, (84,566,0): 97, 77, 66, (84,567,0): 96, 76, 65, (84,568,0): 90, 70, 61, (84,569,0): 90, 70, 61, (84,570,0): 89, 69, 62, (84,571,0): 87, 67, 60, (84,572,0): 86, 66, 59, (84,573,0): 85, 65, 58, (84,574,0): 84, 63, 58, (84,575,0): 83, 62, 57, (84,576,0): 79, 55, 53, (84,577,0): 78, 54, 52, (84,578,0): 75, 54, 51, (84,579,0): 74, 53, 50, (84,580,0): 72, 51, 50, (84,581,0): 71, 50, 49, (84,582,0): 69, 49, 48, (84,583,0): 69, 49, 48, (84,584,0): 65, 47, 47, (84,585,0): 64, 46, 46, (84,586,0): 63, 44, 46, (84,587,0): 61, 42, 44, (84,588,0): 57, 41, 42, (84,589,0): 55, 39, 40, (84,590,0): 53, 37, 40, (84,591,0): 52, 35, 41, (84,592,0): 55, 35, 44, (84,593,0): 55, 35, 46, (84,594,0): 55, 35, 44, (84,595,0): 55, 36, 42, (84,596,0): 55, 36, 42, (84,597,0): 55, 36, 40, (84,598,0): 55, 36, 38, (84,599,0): 55, 36, 38, (85,0,0): 28, 26, 40, (85,1,0): 28, 26, 40, (85,2,0): 28, 26, 40, (85,3,0): 28, 26, 40, (85,4,0): 29, 25, 40, (85,5,0): 29, 25, 40, (85,6,0): 29, 25, 40, (85,7,0): 29, 25, 40, (85,8,0): 35, 28, 44, (85,9,0): 35, 28, 44, (85,10,0): 36, 27, 44, (85,11,0): 36, 27, 44, (85,12,0): 36, 27, 44, (85,13,0): 36, 27, 44, (85,14,0): 38, 27, 44, (85,15,0): 39, 26, 43, (85,16,0): 42, 28, 45, (85,17,0): 42, 28, 43, (85,18,0): 44, 27, 43, (85,19,0): 45, 28, 44, (85,20,0): 45, 29, 42, (85,21,0): 46, 30, 43, (85,22,0): 46, 30, 43, (85,23,0): 46, 30, 43, (85,24,0): 47, 31, 42, (85,25,0): 48, 32, 43, (85,26,0): 48, 32, 42, (85,27,0): 49, 33, 43, (85,28,0): 49, 33, 43, (85,29,0): 50, 34, 44, (85,30,0): 50, 35, 42, (85,31,0): 51, 34, 42, (85,32,0): 56, 35, 44, (85,33,0): 56, 35, 44, (85,34,0): 56, 35, 44, (85,35,0): 56, 35, 44, (85,36,0): 56, 34, 46, (85,37,0): 56, 34, 46, (85,38,0): 56, 34, 46, (85,39,0): 56, 34, 46, (85,40,0): 56, 34, 47, (85,41,0): 56, 34, 47, (85,42,0): 56, 33, 49, (85,43,0): 56, 33, 49, (85,44,0): 56, 33, 49, (85,45,0): 56, 33, 49, (85,46,0): 56, 33, 51, (85,47,0): 56, 33, 49, (85,48,0): 56, 34, 47, (85,49,0): 56, 34, 46, (85,50,0): 55, 33, 45, (85,51,0): 54, 32, 44, (85,52,0): 52, 32, 44, (85,53,0): 51, 31, 43, (85,54,0): 50, 30, 42, (85,55,0): 50, 30, 42, (85,56,0): 46, 28, 42, (85,57,0): 46, 28, 42, (85,58,0): 44, 27, 43, (85,59,0): 44, 27, 43, (85,60,0): 43, 26, 42, (85,61,0): 43, 26, 42, (85,62,0): 41, 27, 44, (85,63,0): 39, 26, 43, (85,64,0): 35, 24, 41, (85,65,0): 33, 24, 41, (85,66,0): 34, 25, 42, (85,67,0): 35, 26, 43, (85,68,0): 35, 26, 43, (85,69,0): 34, 25, 42, (85,70,0): 33, 24, 41, (85,71,0): 33, 24, 41, (85,72,0): 34, 25, 42, (85,73,0): 34, 25, 42, (85,74,0): 34, 25, 42, (85,75,0): 33, 24, 41, (85,76,0): 33, 24, 41, (85,77,0): 32, 23, 40, (85,78,0): 32, 23, 40, (85,79,0): 32, 23, 40, (85,80,0): 32, 20, 40, (85,81,0): 32, 20, 40, (85,82,0): 30, 21, 40, (85,83,0): 29, 20, 39, (85,84,0): 29, 20, 41, (85,85,0): 28, 19, 40, (85,86,0): 27, 19, 40, (85,87,0): 27, 19, 40, (85,88,0): 24, 19, 41, (85,89,0): 24, 19, 41, (85,90,0): 24, 19, 42, (85,91,0): 24, 19, 42, (85,92,0): 23, 19, 42, (85,93,0): 23, 19, 42, (85,94,0): 23, 19, 44, (85,95,0): 23, 19, 44, (85,96,0): 23, 19, 42, (85,97,0): 23, 19, 42, (85,98,0): 22, 18, 41, (85,99,0): 22, 18, 41, (85,100,0): 21, 17, 40, (85,101,0): 21, 17, 40, (85,102,0): 20, 16, 39, (85,103,0): 20, 16, 39, (85,104,0): 22, 18, 41, (85,105,0): 22, 18, 41, (85,106,0): 21, 17, 40, (85,107,0): 21, 17, 40, (85,108,0): 20, 16, 39, (85,109,0): 20, 16, 39, (85,110,0): 19, 15, 38, (85,111,0): 19, 15, 38, (85,112,0): 20, 17, 38, (85,113,0): 20, 17, 38, (85,114,0): 20, 17, 38, (85,115,0): 20, 17, 38, (85,116,0): 20, 17, 38, (85,117,0): 20, 17, 38, (85,118,0): 20, 17, 38, (85,119,0): 20, 17, 38, (85,120,0): 21, 18, 39, (85,121,0): 21, 18, 39, (85,122,0): 20, 17, 38, (85,123,0): 20, 17, 38, (85,124,0): 20, 17, 38, (85,125,0): 20, 17, 38, (85,126,0): 19, 16, 37, (85,127,0): 19, 16, 37, (85,128,0): 17, 15, 36, (85,129,0): 17, 15, 36, (85,130,0): 18, 16, 37, (85,131,0): 18, 16, 37, (85,132,0): 19, 18, 36, (85,133,0): 19, 18, 36, (85,134,0): 21, 18, 37, (85,135,0): 21, 18, 37, (85,136,0): 24, 20, 37, (85,137,0): 24, 20, 37, (85,138,0): 26, 19, 35, (85,139,0): 26, 19, 35, (85,140,0): 26, 19, 35, (85,141,0): 26, 19, 35, (85,142,0): 26, 20, 34, (85,143,0): 27, 19, 34, (85,144,0): 32, 21, 38, (85,145,0): 33, 20, 38, (85,146,0): 34, 21, 39, (85,147,0): 34, 21, 39, (85,148,0): 35, 22, 40, (85,149,0): 35, 22, 40, (85,150,0): 36, 23, 41, (85,151,0): 36, 23, 41, (85,152,0): 37, 24, 42, (85,153,0): 36, 23, 41, (85,154,0): 35, 22, 40, (85,155,0): 33, 20, 38, (85,156,0): 33, 20, 38, (85,157,0): 33, 20, 38, (85,158,0): 34, 21, 39, (85,159,0): 33, 22, 39, (85,160,0): 31, 20, 37, (85,161,0): 30, 21, 38, (85,162,0): 30, 21, 38, (85,163,0): 30, 21, 38, (85,164,0): 31, 22, 39, (85,165,0): 32, 23, 40, (85,166,0): 32, 23, 40, (85,167,0): 32, 23, 40, (85,168,0): 33, 24, 41, (85,169,0): 33, 24, 41, (85,170,0): 32, 23, 40, (85,171,0): 32, 23, 40, (85,172,0): 31, 22, 39, (85,173,0): 31, 22, 39, (85,174,0): 30, 21, 38, (85,175,0): 30, 21, 38, (85,176,0): 28, 20, 41, (85,177,0): 28, 20, 41, (85,178,0): 27, 19, 40, (85,179,0): 27, 19, 40, (85,180,0): 27, 19, 40, (85,181,0): 28, 20, 41, (85,182,0): 30, 22, 43, (85,183,0): 31, 23, 44, (85,184,0): 32, 24, 45, (85,185,0): 32, 24, 45, (85,186,0): 32, 24, 45, (85,187,0): 32, 24, 45, (85,188,0): 32, 24, 45, (85,189,0): 32, 24, 45, (85,190,0): 32, 24, 45, (85,191,0): 32, 24, 45, (85,192,0): 32, 24, 47, (85,193,0): 32, 24, 45, (85,194,0): 33, 25, 46, (85,195,0): 33, 25, 46, (85,196,0): 35, 26, 47, (85,197,0): 35, 26, 45, (85,198,0): 36, 27, 46, (85,199,0): 36, 27, 44, (85,200,0): 38, 27, 44, (85,201,0): 38, 27, 44, (85,202,0): 40, 27, 45, (85,203,0): 40, 27, 44, (85,204,0): 41, 28, 45, (85,205,0): 41, 28, 45, (85,206,0): 43, 29, 46, (85,207,0): 43, 29, 46, (85,208,0): 43, 29, 46, (85,209,0): 43, 29, 46, (85,210,0): 46, 29, 47, (85,211,0): 46, 29, 47, (85,212,0): 47, 30, 46, (85,213,0): 47, 30, 46, (85,214,0): 49, 31, 47, (85,215,0): 49, 31, 45, (85,216,0): 50, 29, 44, (85,217,0): 50, 29, 44, (85,218,0): 50, 30, 42, (85,219,0): 51, 31, 43, (85,220,0): 52, 30, 43, (85,221,0): 53, 31, 44, (85,222,0): 53, 31, 43, (85,223,0): 53, 32, 41, (85,224,0): 54, 31, 41, (85,225,0): 54, 31, 39, (85,226,0): 54, 31, 39, (85,227,0): 53, 30, 38, (85,228,0): 53, 30, 38, (85,229,0): 52, 29, 37, (85,230,0): 52, 29, 37, (85,231,0): 52, 29, 37, (85,232,0): 55, 32, 40, (85,233,0): 57, 34, 42, (85,234,0): 58, 35, 43, (85,235,0): 57, 34, 42, (85,236,0): 54, 31, 39, (85,237,0): 52, 29, 37, (85,238,0): 54, 31, 39, (85,239,0): 58, 33, 39, (85,240,0): 64, 35, 40, (85,241,0): 65, 34, 39, (85,242,0): 67, 35, 40, (85,243,0): 67, 35, 40, (85,244,0): 68, 36, 41, (85,245,0): 68, 36, 41, (85,246,0): 71, 36, 42, (85,247,0): 71, 36, 42, (85,248,0): 74, 37, 44, (85,249,0): 74, 37, 44, (85,250,0): 74, 37, 44, (85,251,0): 74, 37, 44, (85,252,0): 76, 36, 44, (85,253,0): 76, 36, 44, (85,254,0): 76, 36, 44, (85,255,0): 76, 37, 42, (85,256,0): 77, 36, 42, (85,257,0): 78, 36, 40, (85,258,0): 78, 36, 40, (85,259,0): 78, 36, 40, (85,260,0): 78, 36, 40, (85,261,0): 78, 36, 40, (85,262,0): 78, 36, 40, (85,263,0): 78, 36, 40, (85,264,0): 79, 37, 41, (85,265,0): 79, 37, 41, (85,266,0): 79, 37, 41, (85,267,0): 80, 38, 42, (85,268,0): 80, 38, 42, (85,269,0): 80, 38, 42, (85,270,0): 80, 38, 42, (85,271,0): 80, 38, 42, (85,272,0): 82, 41, 45, (85,273,0): 82, 41, 45, (85,274,0): 83, 42, 46, (85,275,0): 84, 44, 45, (85,276,0): 85, 45, 46, (85,277,0): 86, 46, 47, (85,278,0): 87, 47, 47, (85,279,0): 87, 47, 47, (85,280,0): 86, 46, 46, (85,281,0): 86, 46, 44, (85,282,0): 88, 48, 46, (85,283,0): 89, 49, 47, (85,284,0): 91, 52, 47, (85,285,0): 92, 53, 48, (85,286,0): 94, 55, 50, (85,287,0): 95, 54, 48, (85,288,0): 101, 58, 52, (85,289,0): 104, 59, 53, (85,290,0): 107, 63, 54, (85,291,0): 108, 64, 53, (85,292,0): 111, 65, 52, (85,293,0): 116, 70, 54, (85,294,0): 123, 77, 54, (85,295,0): 128, 83, 54, (85,296,0): 135, 86, 53, (85,297,0): 146, 94, 54, (85,298,0): 155, 101, 55, (85,299,0): 162, 104, 54, (85,300,0): 173, 112, 55, (85,301,0): 184, 123, 60, (85,302,0): 188, 124, 60, (85,303,0): 185, 121, 57, (85,304,0): 177, 116, 59, (85,305,0): 168, 113, 59, (85,306,0): 158, 107, 54, (85,307,0): 150, 104, 52, (85,308,0): 144, 104, 53, (85,309,0): 140, 104, 54, (85,310,0): 138, 101, 56, (85,311,0): 133, 99, 54, (85,312,0): 131, 93, 54, (85,313,0): 132, 94, 55, (85,314,0): 132, 94, 57, (85,315,0): 131, 96, 58, (85,316,0): 132, 97, 59, (85,317,0): 131, 99, 58, (85,318,0): 130, 101, 59, (85,319,0): 131, 102, 60, (85,320,0): 134, 100, 62, (85,321,0): 134, 99, 61, (85,322,0): 134, 99, 61, (85,323,0): 133, 99, 61, (85,324,0): 133, 99, 61, (85,325,0): 135, 101, 63, (85,326,0): 135, 103, 64, (85,327,0): 136, 104, 65, (85,328,0): 139, 107, 68, (85,329,0): 141, 112, 72, (85,330,0): 145, 116, 76, (85,331,0): 146, 117, 77, (85,332,0): 144, 116, 76, (85,333,0): 144, 116, 76, (85,334,0): 146, 118, 78, (85,335,0): 146, 121, 80, (85,336,0): 142, 119, 78, (85,337,0): 142, 119, 78, (85,338,0): 142, 119, 78, (85,339,0): 142, 119, 78, (85,340,0): 143, 120, 79, (85,341,0): 145, 122, 81, (85,342,0): 147, 124, 83, (85,343,0): 148, 125, 84, (85,344,0): 150, 127, 86, (85,345,0): 150, 127, 86, (85,346,0): 151, 128, 87, (85,347,0): 151, 128, 87, (85,348,0): 152, 129, 88, (85,349,0): 152, 129, 88, (85,350,0): 152, 129, 88, (85,351,0): 152, 129, 88, (85,352,0): 150, 124, 87, (85,353,0): 150, 124, 89, (85,354,0): 151, 125, 90, (85,355,0): 151, 125, 90, (85,356,0): 153, 124, 92, (85,357,0): 151, 122, 90, (85,358,0): 150, 121, 91, (85,359,0): 149, 120, 90, (85,360,0): 155, 124, 95, (85,361,0): 154, 123, 94, (85,362,0): 155, 121, 94, (85,363,0): 155, 121, 94, (85,364,0): 155, 121, 96, (85,365,0): 155, 121, 96, (85,366,0): 157, 121, 97, (85,367,0): 158, 122, 96, (85,368,0): 160, 127, 96, (85,369,0): 161, 126, 94, (85,370,0): 164, 125, 96, (85,371,0): 168, 124, 99, (85,372,0): 169, 123, 100, (85,373,0): 171, 123, 103, (85,374,0): 170, 123, 105, (85,375,0): 169, 124, 105, (85,376,0): 165, 124, 106, (85,377,0): 162, 124, 105, (85,378,0): 160, 125, 103, (85,379,0): 159, 124, 102, (85,380,0): 160, 126, 101, (85,381,0): 161, 127, 102, (85,382,0): 164, 128, 102, (85,383,0): 169, 127, 102, (85,384,0): 178, 126, 102, (85,385,0): 184, 127, 100, (85,386,0): 188, 128, 100, (85,387,0): 195, 132, 101, (85,388,0): 200, 134, 99, (85,389,0): 205, 136, 97, (85,390,0): 209, 136, 95, (85,391,0): 212, 135, 89, (85,392,0): 217, 137, 88, (85,393,0): 225, 142, 90, (85,394,0): 236, 151, 97, (85,395,0): 242, 157, 102, (85,396,0): 245, 159, 102, (85,397,0): 244, 158, 101, (85,398,0): 243, 157, 100, (85,399,0): 242, 157, 100, (85,400,0): 234, 151, 97, (85,401,0): 233, 150, 96, (85,402,0): 230, 147, 93, (85,403,0): 228, 145, 91, (85,404,0): 230, 145, 90, (85,405,0): 229, 147, 91, (85,406,0): 231, 149, 93, (85,407,0): 232, 152, 93, (85,408,0): 236, 157, 98, (85,409,0): 234, 158, 98, (85,410,0): 232, 161, 99, (85,411,0): 231, 163, 98, (85,412,0): 230, 165, 99, (85,413,0): 228, 167, 100, (85,414,0): 228, 169, 101, (85,415,0): 228, 171, 102, (85,416,0): 228, 171, 102, (85,417,0): 225, 171, 101, (85,418,0): 225, 168, 99, (85,419,0): 219, 165, 95, (85,420,0): 216, 161, 94, (85,421,0): 215, 162, 94, (85,422,0): 217, 167, 98, (85,423,0): 220, 171, 102, (85,424,0): 217, 168, 101, (85,425,0): 216, 169, 101, (85,426,0): 214, 169, 102, (85,427,0): 214, 169, 102, (85,428,0): 213, 170, 102, (85,429,0): 212, 169, 101, (85,430,0): 211, 168, 100, (85,431,0): 208, 168, 99, (85,432,0): 214, 175, 106, (85,433,0): 211, 174, 104, (85,434,0): 209, 172, 102, (85,435,0): 204, 169, 101, (85,436,0): 201, 166, 98, (85,437,0): 200, 165, 97, (85,438,0): 199, 164, 98, (85,439,0): 198, 163, 95, (85,440,0): 202, 163, 96, (85,441,0): 205, 165, 96, (85,442,0): 210, 167, 99, (85,443,0): 213, 168, 100, (85,444,0): 217, 168, 99, (85,445,0): 217, 167, 96, (85,446,0): 216, 166, 95, (85,447,0): 215, 165, 96, (85,448,0): 212, 162, 103, (85,449,0): 204, 155, 99, (85,450,0): 195, 145, 92, (85,451,0): 185, 138, 86, (85,452,0): 180, 134, 84, (85,453,0): 175, 131, 82, (85,454,0): 169, 128, 82, (85,455,0): 165, 126, 83, (85,456,0): 152, 114, 75, (85,457,0): 146, 112, 75, (85,458,0): 141, 108, 73, (85,459,0): 135, 106, 74, (85,460,0): 134, 105, 75, (85,461,0): 132, 105, 76, (85,462,0): 132, 106, 79, (85,463,0): 131, 108, 77, (85,464,0): 131, 108, 76, (85,465,0): 126, 106, 73, (85,466,0): 123, 103, 70, (85,467,0): 124, 104, 71, (85,468,0): 128, 105, 74, (85,469,0): 130, 107, 76, (85,470,0): 129, 106, 75, (85,471,0): 128, 105, 74, (85,472,0): 129, 103, 76, (85,473,0): 129, 103, 76, (85,474,0): 129, 101, 77, (85,475,0): 127, 99, 75, (85,476,0): 124, 96, 72, (85,477,0): 121, 93, 69, (85,478,0): 120, 89, 68, (85,479,0): 118, 87, 66, (85,480,0): 112, 84, 60, (85,481,0): 111, 85, 60, (85,482,0): 112, 86, 61, (85,483,0): 114, 88, 63, (85,484,0): 117, 89, 65, (85,485,0): 119, 91, 67, (85,486,0): 121, 93, 69, (85,487,0): 123, 95, 71, (85,488,0): 120, 90, 66, (85,489,0): 125, 95, 71, (85,490,0): 132, 100, 77, (85,491,0): 134, 102, 79, (85,492,0): 132, 100, 77, (85,493,0): 130, 98, 75, (85,494,0): 131, 96, 74, (85,495,0): 130, 98, 75, (85,496,0): 123, 97, 72, (85,497,0): 123, 99, 73, (85,498,0): 123, 99, 73, (85,499,0): 123, 99, 73, (85,500,0): 120, 98, 74, (85,501,0): 118, 96, 73, (85,502,0): 116, 94, 71, (85,503,0): 114, 93, 72, (85,504,0): 113, 92, 73, (85,505,0): 113, 92, 75, (85,506,0): 110, 91, 74, (85,507,0): 109, 90, 75, (85,508,0): 108, 89, 74, (85,509,0): 106, 88, 74, (85,510,0): 106, 88, 74, (85,511,0): 105, 87, 73, (85,512,0): 106, 87, 73, (85,513,0): 106, 87, 73, (85,514,0): 105, 86, 72, (85,515,0): 103, 84, 70, (85,516,0): 102, 83, 69, (85,517,0): 101, 82, 68, (85,518,0): 100, 81, 67, (85,519,0): 99, 80, 66, (85,520,0): 88, 69, 55, (85,521,0): 88, 69, 55, (85,522,0): 88, 69, 55, (85,523,0): 88, 69, 55, (85,524,0): 89, 70, 56, (85,525,0): 91, 72, 58, (85,526,0): 92, 73, 59, (85,527,0): 93, 75, 61, (85,528,0): 94, 78, 65, (85,529,0): 93, 79, 66, (85,530,0): 94, 81, 65, (85,531,0): 96, 83, 67, (85,532,0): 100, 84, 69, (85,533,0): 102, 86, 71, (85,534,0): 105, 86, 71, (85,535,0): 106, 87, 72, (85,536,0): 109, 88, 71, (85,537,0): 110, 89, 72, (85,538,0): 114, 88, 73, (85,539,0): 116, 90, 75, (85,540,0): 117, 90, 73, (85,541,0): 117, 90, 73, (85,542,0): 117, 90, 73, (85,543,0): 117, 88, 70, (85,544,0): 117, 86, 66, (85,545,0): 118, 86, 65, (85,546,0): 117, 86, 65, (85,547,0): 117, 86, 65, (85,548,0): 117, 86, 66, (85,549,0): 115, 87, 66, (85,550,0): 115, 86, 68, (85,551,0): 115, 86, 68, (85,552,0): 114, 87, 68, (85,553,0): 114, 87, 68, (85,554,0): 116, 89, 72, (85,555,0): 115, 89, 72, (85,556,0): 115, 89, 74, (85,557,0): 115, 89, 74, (85,558,0): 113, 87, 72, (85,559,0): 111, 88, 74, (85,560,0): 105, 83, 70, (85,561,0): 103, 84, 70, (85,562,0): 102, 83, 69, (85,563,0): 101, 82, 68, (85,564,0): 100, 80, 69, (85,565,0): 99, 79, 68, (85,566,0): 98, 78, 67, (85,567,0): 98, 78, 67, (85,568,0): 93, 73, 64, (85,569,0): 93, 73, 64, (85,570,0): 91, 71, 64, (85,571,0): 89, 69, 62, (85,572,0): 88, 68, 61, (85,573,0): 86, 66, 59, (85,574,0): 85, 64, 59, (85,575,0): 84, 63, 58, (85,576,0): 81, 57, 55, (85,577,0): 80, 56, 54, (85,578,0): 77, 56, 53, (85,579,0): 75, 54, 51, (85,580,0): 73, 52, 51, (85,581,0): 71, 50, 49, (85,582,0): 69, 49, 48, (85,583,0): 68, 48, 47, (85,584,0): 64, 46, 46, (85,585,0): 63, 45, 45, (85,586,0): 62, 43, 45, (85,587,0): 60, 41, 43, (85,588,0): 56, 40, 41, (85,589,0): 54, 38, 39, (85,590,0): 53, 37, 40, (85,591,0): 52, 35, 41, (85,592,0): 55, 35, 44, (85,593,0): 55, 35, 46, (85,594,0): 55, 35, 44, (85,595,0): 55, 36, 42, (85,596,0): 55, 36, 42, (85,597,0): 55, 36, 40, (85,598,0): 55, 36, 38, (85,599,0): 55, 36, 38, (86,0,0): 28, 26, 40, (86,1,0): 28, 26, 40, (86,2,0): 28, 26, 40, (86,3,0): 28, 26, 40, (86,4,0): 29, 25, 40, (86,5,0): 29, 25, 40, (86,6,0): 29, 25, 40, (86,7,0): 29, 25, 40, (86,8,0): 35, 28, 44, (86,9,0): 35, 28, 44, (86,10,0): 36, 27, 44, (86,11,0): 36, 27, 44, (86,12,0): 36, 27, 44, (86,13,0): 36, 27, 44, (86,14,0): 38, 27, 44, (86,15,0): 38, 27, 43, (86,16,0): 41, 28, 45, (86,17,0): 41, 29, 43, (86,18,0): 42, 28, 43, (86,19,0): 43, 29, 44, (86,20,0): 43, 29, 42, (86,21,0): 44, 30, 43, (86,22,0): 44, 30, 43, (86,23,0): 44, 30, 43, (86,24,0): 48, 32, 43, (86,25,0): 48, 32, 43, (86,26,0): 48, 32, 42, (86,27,0): 49, 33, 43, (86,28,0): 50, 33, 43, (86,29,0): 51, 34, 44, (86,30,0): 51, 34, 42, (86,31,0): 52, 35, 43, (86,32,0): 56, 35, 42, (86,33,0): 57, 34, 42, (86,34,0): 57, 34, 42, (86,35,0): 57, 34, 42, (86,36,0): 57, 34, 44, (86,37,0): 57, 34, 44, (86,38,0): 57, 33, 46, (86,39,0): 57, 33, 46, (86,40,0): 57, 33, 46, (86,41,0): 57, 33, 46, (86,42,0): 57, 33, 47, (86,43,0): 57, 33, 47, (86,44,0): 57, 33, 49, (86,45,0): 57, 33, 49, (86,46,0): 57, 33, 49, (86,47,0): 57, 33, 49, (86,48,0): 57, 35, 48, (86,49,0): 56, 34, 47, (86,50,0): 55, 33, 46, (86,51,0): 54, 32, 45, (86,52,0): 52, 32, 44, (86,53,0): 51, 31, 43, (86,54,0): 50, 29, 44, (86,55,0): 49, 28, 43, (86,56,0): 47, 29, 45, (86,57,0): 47, 29, 45, (86,58,0): 45, 28, 46, (86,59,0): 45, 28, 46, (86,60,0): 44, 27, 45, (86,61,0): 44, 27, 45, (86,62,0): 41, 27, 44, (86,63,0): 40, 27, 44, (86,64,0): 36, 25, 42, (86,65,0): 34, 25, 44, (86,66,0): 33, 24, 43, (86,67,0): 32, 23, 42, (86,68,0): 32, 23, 42, (86,69,0): 33, 24, 43, (86,70,0): 34, 25, 44, (86,71,0): 34, 25, 44, (86,72,0): 34, 25, 44, (86,73,0): 34, 25, 44, (86,74,0): 34, 25, 44, (86,75,0): 33, 24, 43, (86,76,0): 33, 24, 43, (86,77,0): 32, 23, 42, (86,78,0): 32, 23, 42, (86,79,0): 32, 23, 42, (86,80,0): 31, 19, 39, (86,81,0): 31, 19, 39, (86,82,0): 29, 20, 39, (86,83,0): 28, 19, 38, (86,84,0): 28, 19, 40, (86,85,0): 27, 18, 39, (86,86,0): 26, 18, 39, (86,87,0): 26, 18, 39, (86,88,0): 24, 19, 41, (86,89,0): 24, 19, 41, (86,90,0): 24, 19, 42, (86,91,0): 24, 19, 42, (86,92,0): 23, 19, 42, (86,93,0): 23, 19, 42, (86,94,0): 23, 19, 44, (86,95,0): 23, 19, 44, (86,96,0): 23, 19, 42, (86,97,0): 23, 19, 42, (86,98,0): 23, 19, 42, (86,99,0): 22, 18, 41, (86,100,0): 21, 17, 40, (86,101,0): 20, 16, 39, (86,102,0): 20, 16, 39, (86,103,0): 20, 16, 39, (86,104,0): 21, 17, 40, (86,105,0): 21, 17, 40, (86,106,0): 20, 16, 39, (86,107,0): 20, 16, 39, (86,108,0): 19, 15, 38, (86,109,0): 19, 15, 38, (86,110,0): 18, 14, 37, (86,111,0): 18, 14, 37, (86,112,0): 20, 17, 38, (86,113,0): 20, 17, 38, (86,114,0): 20, 17, 38, (86,115,0): 20, 17, 38, (86,116,0): 20, 17, 38, (86,117,0): 20, 17, 38, (86,118,0): 20, 17, 38, (86,119,0): 20, 17, 38, (86,120,0): 19, 16, 37, (86,121,0): 19, 16, 37, (86,122,0): 20, 17, 38, (86,123,0): 20, 17, 38, (86,124,0): 20, 17, 38, (86,125,0): 20, 17, 38, (86,126,0): 21, 18, 39, (86,127,0): 21, 18, 39, (86,128,0): 18, 16, 37, (86,129,0): 18, 16, 37, (86,130,0): 20, 17, 38, (86,131,0): 20, 17, 38, (86,132,0): 21, 18, 37, (86,133,0): 21, 18, 37, (86,134,0): 23, 18, 38, (86,135,0): 23, 18, 38, (86,136,0): 26, 19, 37, (86,137,0): 26, 19, 37, (86,138,0): 26, 19, 35, (86,139,0): 26, 19, 35, (86,140,0): 27, 18, 35, (86,141,0): 27, 18, 35, (86,142,0): 27, 19, 34, (86,143,0): 27, 19, 34, (86,144,0): 32, 21, 38, (86,145,0): 33, 20, 38, (86,146,0): 34, 21, 39, (86,147,0): 34, 21, 39, (86,148,0): 35, 22, 40, (86,149,0): 35, 22, 40, (86,150,0): 36, 23, 41, (86,151,0): 36, 23, 41, (86,152,0): 37, 24, 42, (86,153,0): 36, 23, 41, (86,154,0): 35, 22, 40, (86,155,0): 33, 20, 38, (86,156,0): 33, 20, 38, (86,157,0): 33, 20, 38, (86,158,0): 34, 21, 39, (86,159,0): 33, 22, 39, (86,160,0): 31, 20, 37, (86,161,0): 29, 20, 37, (86,162,0): 30, 21, 38, (86,163,0): 30, 21, 38, (86,164,0): 31, 22, 39, (86,165,0): 31, 22, 39, (86,166,0): 31, 22, 39, (86,167,0): 32, 23, 40, (86,168,0): 33, 24, 41, (86,169,0): 33, 24, 41, (86,170,0): 32, 23, 40, (86,171,0): 32, 23, 40, (86,172,0): 31, 22, 39, (86,173,0): 31, 22, 39, (86,174,0): 30, 21, 38, (86,175,0): 30, 21, 38, (86,176,0): 28, 20, 41, (86,177,0): 27, 19, 40, (86,178,0): 26, 18, 39, (86,179,0): 26, 18, 39, (86,180,0): 27, 19, 40, (86,181,0): 28, 20, 41, (86,182,0): 30, 22, 43, (86,183,0): 31, 23, 44, (86,184,0): 32, 24, 45, (86,185,0): 32, 24, 45, (86,186,0): 32, 24, 45, (86,187,0): 32, 24, 45, (86,188,0): 32, 24, 45, (86,189,0): 32, 24, 45, (86,190,0): 32, 24, 45, (86,191,0): 32, 24, 45, (86,192,0): 33, 24, 45, (86,193,0): 33, 24, 45, (86,194,0): 34, 25, 46, (86,195,0): 34, 25, 44, (86,196,0): 35, 26, 45, (86,197,0): 35, 26, 45, (86,198,0): 38, 26, 46, (86,199,0): 38, 27, 44, (86,200,0): 39, 26, 44, (86,201,0): 39, 26, 43, (86,202,0): 41, 27, 44, (86,203,0): 41, 27, 44, (86,204,0): 42, 28, 45, (86,205,0): 42, 28, 43, (86,206,0): 43, 29, 44, (86,207,0): 43, 29, 44, (86,208,0): 43, 29, 46, (86,209,0): 43, 29, 46, (86,210,0): 46, 29, 45, (86,211,0): 46, 29, 45, (86,212,0): 47, 30, 46, (86,213,0): 47, 30, 46, (86,214,0): 49, 31, 45, (86,215,0): 49, 31, 45, (86,216,0): 50, 29, 44, (86,217,0): 50, 30, 42, (86,218,0): 50, 30, 42, (86,219,0): 51, 31, 43, (86,220,0): 52, 30, 42, (86,221,0): 53, 31, 43, (86,222,0): 53, 31, 43, (86,223,0): 53, 32, 41, (86,224,0): 55, 32, 42, (86,225,0): 55, 32, 40, (86,226,0): 54, 31, 39, (86,227,0): 53, 30, 38, (86,228,0): 53, 30, 38, (86,229,0): 52, 29, 37, (86,230,0): 51, 28, 36, (86,231,0): 51, 28, 36, (86,232,0): 55, 32, 40, (86,233,0): 57, 34, 42, (86,234,0): 58, 35, 43, (86,235,0): 56, 33, 41, (86,236,0): 53, 30, 38, (86,237,0): 52, 29, 37, (86,238,0): 53, 30, 38, (86,239,0): 57, 32, 38, (86,240,0): 63, 34, 39, (86,241,0): 64, 33, 38, (86,242,0): 65, 34, 39, (86,243,0): 65, 34, 39, (86,244,0): 67, 35, 40, (86,245,0): 67, 35, 40, (86,246,0): 68, 36, 41, (86,247,0): 68, 36, 41, (86,248,0): 71, 36, 42, (86,249,0): 71, 36, 42, (86,250,0): 72, 35, 42, (86,251,0): 72, 35, 42, (86,252,0): 72, 35, 42, (86,253,0): 72, 35, 42, (86,254,0): 74, 34, 42, (86,255,0): 74, 35, 40, (86,256,0): 77, 36, 42, (86,257,0): 77, 36, 40, (86,258,0): 77, 36, 40, (86,259,0): 77, 36, 40, (86,260,0): 77, 36, 40, (86,261,0): 77, 36, 40, (86,262,0): 77, 36, 40, (86,263,0): 77, 36, 40, (86,264,0): 76, 35, 39, (86,265,0): 76, 35, 39, (86,266,0): 77, 36, 40, (86,267,0): 78, 37, 41, (86,268,0): 79, 38, 42, (86,269,0): 80, 39, 43, (86,270,0): 80, 39, 43, (86,271,0): 81, 40, 44, (86,272,0): 82, 42, 43, (86,273,0): 82, 42, 43, (86,274,0): 83, 43, 44, (86,275,0): 84, 44, 45, (86,276,0): 85, 45, 46, (86,277,0): 86, 46, 46, (86,278,0): 87, 47, 47, (86,279,0): 87, 47, 47, (86,280,0): 86, 46, 44, (86,281,0): 86, 46, 44, (86,282,0): 88, 48, 46, (86,283,0): 89, 50, 45, (86,284,0): 91, 52, 47, (86,285,0): 92, 53, 48, (86,286,0): 94, 55, 48, (86,287,0): 95, 54, 48, (86,288,0): 101, 58, 52, (86,289,0): 103, 60, 53, (86,290,0): 105, 62, 53, (86,291,0): 106, 64, 52, (86,292,0): 109, 65, 52, (86,293,0): 113, 70, 53, (86,294,0): 122, 77, 56, (86,295,0): 128, 82, 56, (86,296,0): 134, 85, 53, (86,297,0): 143, 94, 54, (86,298,0): 154, 101, 57, (86,299,0): 160, 104, 53, (86,300,0): 170, 111, 55, (86,301,0): 181, 119, 58, (86,302,0): 185, 121, 59, (86,303,0): 182, 118, 56, (86,304,0): 174, 115, 59, (86,305,0): 166, 111, 57, (86,306,0): 156, 105, 52, (86,307,0): 148, 102, 50, (86,308,0): 142, 102, 51, (86,309,0): 139, 103, 55, (86,310,0): 137, 100, 55, (86,311,0): 133, 99, 54, (86,312,0): 130, 95, 55, (86,313,0): 131, 96, 56, (86,314,0): 134, 96, 57, (86,315,0): 134, 99, 59, (86,316,0): 135, 100, 60, (86,317,0): 134, 102, 61, (86,318,0): 133, 104, 62, (86,319,0): 133, 104, 60, (86,320,0): 134, 101, 60, (86,321,0): 134, 101, 60, (86,322,0): 133, 100, 59, (86,323,0): 132, 99, 58, (86,324,0): 133, 100, 59, (86,325,0): 133, 101, 60, (86,326,0): 134, 102, 61, (86,327,0): 135, 103, 62, (86,328,0): 134, 105, 63, (86,329,0): 138, 109, 67, (86,330,0): 142, 113, 71, (86,331,0): 143, 116, 73, (86,332,0): 142, 115, 72, (86,333,0): 142, 115, 72, (86,334,0): 142, 118, 74, (86,335,0): 144, 119, 78, (86,336,0): 142, 119, 78, (86,337,0): 142, 119, 78, (86,338,0): 141, 118, 77, (86,339,0): 141, 118, 77, (86,340,0): 143, 120, 79, (86,341,0): 144, 121, 80, (86,342,0): 146, 123, 82, (86,343,0): 147, 124, 83, (86,344,0): 150, 127, 86, (86,345,0): 150, 127, 86, (86,346,0): 151, 128, 87, (86,347,0): 151, 128, 87, (86,348,0): 152, 129, 88, (86,349,0): 153, 130, 89, (86,350,0): 153, 130, 89, (86,351,0): 154, 131, 90, (86,352,0): 152, 126, 89, (86,353,0): 153, 127, 90, (86,354,0): 153, 127, 92, (86,355,0): 154, 128, 93, (86,356,0): 155, 126, 92, (86,357,0): 154, 125, 91, (86,358,0): 152, 123, 91, (86,359,0): 151, 122, 90, (86,360,0): 156, 125, 96, (86,361,0): 156, 125, 96, (86,362,0): 156, 122, 94, (86,363,0): 156, 122, 94, (86,364,0): 156, 122, 95, (86,365,0): 156, 122, 95, (86,366,0): 159, 123, 97, (86,367,0): 159, 124, 96, (86,368,0): 161, 126, 94, (86,369,0): 163, 127, 95, (86,370,0): 165, 126, 95, (86,371,0): 169, 125, 98, (86,372,0): 170, 124, 101, (86,373,0): 171, 124, 104, (86,374,0): 170, 125, 106, (86,375,0): 168, 125, 106, (86,376,0): 163, 125, 104, (86,377,0): 160, 125, 103, (86,378,0): 158, 126, 103, (86,379,0): 157, 125, 102, (86,380,0): 158, 126, 101, (86,381,0): 161, 127, 102, (86,382,0): 164, 128, 102, (86,383,0): 169, 127, 102, (86,384,0): 183, 127, 100, (86,385,0): 189, 128, 99, (86,386,0): 194, 131, 100, (86,387,0): 199, 133, 99, (86,388,0): 205, 135, 99, (86,389,0): 209, 136, 95, (86,390,0): 213, 136, 92, (86,391,0): 214, 136, 88, (86,392,0): 225, 143, 93, (86,393,0): 231, 148, 96, (86,394,0): 239, 154, 100, (86,395,0): 242, 155, 101, (86,396,0): 240, 154, 97, (86,397,0): 237, 151, 94, (86,398,0): 236, 150, 93, (86,399,0): 235, 150, 93, (86,400,0): 230, 147, 93, (86,401,0): 228, 147, 92, (86,402,0): 227, 146, 91, (86,403,0): 226, 145, 90, (86,404,0): 227, 144, 90, (86,405,0): 228, 147, 91, (86,406,0): 230, 149, 93, (86,407,0): 232, 151, 95, (86,408,0): 234, 158, 100, (86,409,0): 233, 158, 100, (86,410,0): 231, 161, 101, (86,411,0): 229, 164, 100, (86,412,0): 229, 165, 101, (86,413,0): 228, 167, 102, (86,414,0): 227, 168, 102, (86,415,0): 227, 170, 103, (86,416,0): 225, 170, 103, (86,417,0): 223, 170, 102, (86,418,0): 222, 167, 100, (86,419,0): 216, 163, 95, (86,420,0): 213, 160, 92, (86,421,0): 212, 162, 93, (86,422,0): 216, 165, 99, (86,423,0): 220, 171, 104, (86,424,0): 223, 174, 107, (86,425,0): 221, 174, 106, (86,426,0): 219, 174, 106, (86,427,0): 218, 173, 105, (86,428,0): 216, 173, 104, (86,429,0): 216, 173, 104, (86,430,0): 216, 173, 104, (86,431,0): 214, 174, 104, (86,432,0): 213, 176, 105, (86,433,0): 209, 175, 103, (86,434,0): 207, 173, 101, (86,435,0): 204, 170, 99, (86,436,0): 202, 168, 97, (86,437,0): 200, 167, 96, (86,438,0): 201, 166, 98, (86,439,0): 201, 167, 96, (86,440,0): 205, 166, 97, (86,441,0): 208, 168, 99, (86,442,0): 213, 170, 102, (86,443,0): 216, 171, 103, (86,444,0): 221, 172, 103, (86,445,0): 221, 171, 102, (86,446,0): 222, 169, 101, (86,447,0): 219, 168, 102, (86,448,0): 212, 161, 104, (86,449,0): 202, 155, 101, (86,450,0): 191, 144, 90, (86,451,0): 181, 135, 83, (86,452,0): 173, 129, 80, (86,453,0): 168, 126, 78, (86,454,0): 164, 123, 79, (86,455,0): 158, 121, 79, (86,456,0): 149, 114, 74, (86,457,0): 146, 112, 75, (86,458,0): 142, 109, 74, (86,459,0): 137, 108, 76, (86,460,0): 135, 106, 76, (86,461,0): 133, 106, 77, (86,462,0): 133, 107, 80, (86,463,0): 132, 109, 78, (86,464,0): 133, 110, 78, (86,465,0): 128, 108, 73, (86,466,0): 125, 105, 70, (86,467,0): 125, 105, 70, (86,468,0): 130, 107, 75, (86,469,0): 131, 108, 76, (86,470,0): 131, 108, 76, (86,471,0): 129, 106, 74, (86,472,0): 130, 105, 75, (86,473,0): 129, 104, 74, (86,474,0): 129, 102, 75, (86,475,0): 127, 100, 73, (86,476,0): 124, 97, 70, (86,477,0): 121, 94, 67, (86,478,0): 120, 90, 66, (86,479,0): 118, 88, 64, (86,480,0): 111, 83, 59, (86,481,0): 112, 84, 60, (86,482,0): 115, 87, 63, (86,483,0): 117, 89, 65, (86,484,0): 120, 92, 68, (86,485,0): 121, 93, 69, (86,486,0): 124, 94, 70, (86,487,0): 125, 95, 71, (86,488,0): 122, 90, 67, (86,489,0): 128, 96, 73, (86,490,0): 136, 101, 79, (86,491,0): 139, 104, 82, (86,492,0): 138, 103, 81, (86,493,0): 136, 101, 79, (86,494,0): 135, 100, 78, (86,495,0): 133, 101, 78, (86,496,0): 128, 100, 76, (86,497,0): 126, 100, 77, (86,498,0): 125, 101, 77, (86,499,0): 123, 99, 75, (86,500,0): 121, 96, 74, (86,501,0): 116, 94, 71, (86,502,0): 113, 91, 70, (86,503,0): 112, 89, 71, (86,504,0): 107, 86, 67, (86,505,0): 107, 86, 69, (86,506,0): 107, 85, 71, (86,507,0): 105, 86, 72, (86,508,0): 105, 86, 72, (86,509,0): 105, 85, 74, (86,510,0): 105, 85, 74, (86,511,0): 105, 85, 74, (86,512,0): 101, 82, 68, (86,513,0): 100, 81, 67, (86,514,0): 100, 81, 67, (86,515,0): 99, 80, 66, (86,516,0): 98, 79, 65, (86,517,0): 98, 79, 65, (86,518,0): 97, 78, 64, (86,519,0): 97, 78, 64, (86,520,0): 87, 68, 54, (86,521,0): 86, 67, 53, (86,522,0): 86, 67, 53, (86,523,0): 87, 68, 54, (86,524,0): 88, 69, 55, (86,525,0): 90, 71, 57, (86,526,0): 92, 73, 59, (86,527,0): 92, 74, 60, (86,528,0): 96, 80, 67, (86,529,0): 95, 81, 68, (86,530,0): 95, 82, 66, (86,531,0): 96, 83, 67, (86,532,0): 100, 84, 69, (86,533,0): 101, 85, 70, (86,534,0): 103, 84, 69, (86,535,0): 104, 85, 70, (86,536,0): 108, 87, 70, (86,537,0): 109, 88, 71, (86,538,0): 113, 87, 72, (86,539,0): 115, 89, 74, (86,540,0): 116, 89, 72, (86,541,0): 116, 89, 72, (86,542,0): 114, 87, 70, (86,543,0): 115, 86, 68, (86,544,0): 115, 84, 64, (86,545,0): 115, 84, 64, (86,546,0): 115, 84, 64, (86,547,0): 115, 84, 64, (86,548,0): 113, 84, 66, (86,549,0): 113, 84, 66, (86,550,0): 113, 84, 66, (86,551,0): 112, 85, 66, (86,552,0): 111, 84, 67, (86,553,0): 112, 85, 68, (86,554,0): 112, 86, 71, (86,555,0): 113, 87, 72, (86,556,0): 113, 87, 72, (86,557,0): 110, 87, 71, (86,558,0): 109, 86, 72, (86,559,0): 108, 85, 71, (86,560,0): 106, 84, 71, (86,561,0): 104, 85, 71, (86,562,0): 103, 84, 70, (86,563,0): 102, 83, 69, (86,564,0): 101, 81, 70, (86,565,0): 100, 80, 69, (86,566,0): 100, 80, 69, (86,567,0): 99, 79, 68, (86,568,0): 97, 77, 68, (86,569,0): 96, 76, 67, (86,570,0): 94, 74, 67, (86,571,0): 92, 72, 65, (86,572,0): 89, 69, 62, (86,573,0): 87, 67, 60, (86,574,0): 85, 64, 59, (86,575,0): 84, 63, 58, (86,576,0): 83, 59, 57, (86,577,0): 82, 58, 56, (86,578,0): 78, 57, 54, (86,579,0): 76, 55, 52, (86,580,0): 74, 53, 52, (86,581,0): 71, 50, 49, (86,582,0): 68, 48, 47, (86,583,0): 67, 47, 46, (86,584,0): 63, 45, 45, (86,585,0): 62, 44, 44, (86,586,0): 61, 42, 44, (86,587,0): 60, 41, 43, (86,588,0): 56, 40, 41, (86,589,0): 55, 39, 40, (86,590,0): 54, 38, 41, (86,591,0): 53, 36, 42, (86,592,0): 53, 33, 42, (86,593,0): 53, 33, 44, (86,594,0): 53, 33, 42, (86,595,0): 53, 34, 40, (86,596,0): 53, 34, 40, (86,597,0): 53, 34, 38, (86,598,0): 53, 34, 36, (86,599,0): 53, 34, 36, (87,0,0): 28, 26, 40, (87,1,0): 28, 26, 40, (87,2,0): 28, 26, 40, (87,3,0): 28, 26, 40, (87,4,0): 29, 25, 40, (87,5,0): 29, 25, 40, (87,6,0): 29, 25, 40, (87,7,0): 29, 25, 40, (87,8,0): 35, 28, 44, (87,9,0): 35, 28, 44, (87,10,0): 36, 27, 44, (87,11,0): 36, 27, 44, (87,12,0): 36, 27, 44, (87,13,0): 36, 27, 44, (87,14,0): 38, 27, 44, (87,15,0): 38, 27, 43, (87,16,0): 41, 28, 45, (87,17,0): 41, 29, 43, (87,18,0): 41, 29, 43, (87,19,0): 42, 30, 44, (87,20,0): 43, 29, 42, (87,21,0): 44, 30, 43, (87,22,0): 44, 30, 43, (87,23,0): 44, 30, 43, (87,24,0): 48, 32, 43, (87,25,0): 48, 32, 43, (87,26,0): 49, 33, 43, (87,27,0): 49, 33, 43, (87,28,0): 51, 34, 44, (87,29,0): 51, 34, 44, (87,30,0): 52, 35, 43, (87,31,0): 54, 34, 43, (87,32,0): 57, 34, 42, (87,33,0): 57, 34, 42, (87,34,0): 57, 34, 42, (87,35,0): 57, 34, 42, (87,36,0): 57, 34, 44, (87,37,0): 57, 34, 44, (87,38,0): 57, 33, 46, (87,39,0): 57, 33, 46, (87,40,0): 57, 33, 46, (87,41,0): 57, 33, 46, (87,42,0): 57, 33, 47, (87,43,0): 57, 33, 47, (87,44,0): 57, 33, 49, (87,45,0): 57, 33, 49, (87,46,0): 57, 33, 49, (87,47,0): 57, 33, 49, (87,48,0): 57, 35, 48, (87,49,0): 57, 35, 48, (87,50,0): 56, 34, 47, (87,51,0): 54, 32, 45, (87,52,0): 52, 32, 44, (87,53,0): 50, 30, 42, (87,54,0): 49, 28, 43, (87,55,0): 49, 28, 43, (87,56,0): 47, 29, 45, (87,57,0): 47, 29, 45, (87,58,0): 46, 29, 47, (87,59,0): 45, 28, 46, (87,60,0): 45, 28, 46, (87,61,0): 44, 27, 45, (87,62,0): 42, 28, 45, (87,63,0): 41, 28, 46, (87,64,0): 37, 25, 45, (87,65,0): 34, 25, 44, (87,66,0): 32, 23, 42, (87,67,0): 31, 22, 41, (87,68,0): 31, 22, 41, (87,69,0): 32, 23, 42, (87,70,0): 34, 25, 44, (87,71,0): 35, 26, 45, (87,72,0): 34, 25, 44, (87,73,0): 34, 25, 44, (87,74,0): 34, 25, 44, (87,75,0): 33, 24, 43, (87,76,0): 33, 24, 43, (87,77,0): 32, 23, 42, (87,78,0): 32, 23, 42, (87,79,0): 32, 23, 42, (87,80,0): 31, 19, 39, (87,81,0): 30, 18, 38, (87,82,0): 28, 19, 38, (87,83,0): 27, 18, 37, (87,84,0): 27, 18, 39, (87,85,0): 26, 17, 38, (87,86,0): 25, 17, 38, (87,87,0): 25, 17, 38, (87,88,0): 24, 19, 41, (87,89,0): 24, 19, 41, (87,90,0): 24, 19, 42, (87,91,0): 24, 19, 42, (87,92,0): 23, 19, 42, (87,93,0): 23, 19, 42, (87,94,0): 23, 19, 44, (87,95,0): 23, 19, 44, (87,96,0): 24, 20, 43, (87,97,0): 23, 19, 42, (87,98,0): 23, 19, 42, (87,99,0): 22, 18, 41, (87,100,0): 21, 17, 40, (87,101,0): 20, 16, 39, (87,102,0): 20, 16, 39, (87,103,0): 19, 15, 38, (87,104,0): 20, 16, 39, (87,105,0): 20, 16, 39, (87,106,0): 19, 15, 38, (87,107,0): 19, 15, 38, (87,108,0): 18, 14, 37, (87,109,0): 18, 14, 37, (87,110,0): 18, 14, 37, (87,111,0): 17, 13, 36, (87,112,0): 20, 17, 38, (87,113,0): 20, 17, 38, (87,114,0): 20, 17, 38, (87,115,0): 20, 17, 38, (87,116,0): 20, 17, 38, (87,117,0): 20, 17, 38, (87,118,0): 20, 17, 38, (87,119,0): 20, 17, 38, (87,120,0): 18, 15, 36, (87,121,0): 18, 15, 36, (87,122,0): 19, 16, 37, (87,123,0): 20, 17, 38, (87,124,0): 20, 17, 38, (87,125,0): 21, 18, 39, (87,126,0): 22, 19, 40, (87,127,0): 22, 19, 40, (87,128,0): 19, 17, 38, (87,129,0): 19, 17, 38, (87,130,0): 21, 18, 39, (87,131,0): 21, 18, 39, (87,132,0): 22, 19, 38, (87,133,0): 22, 19, 38, (87,134,0): 23, 18, 38, (87,135,0): 24, 19, 39, (87,136,0): 26, 19, 37, (87,137,0): 26, 19, 37, (87,138,0): 26, 19, 35, (87,139,0): 26, 19, 35, (87,140,0): 27, 18, 35, (87,141,0): 27, 18, 35, (87,142,0): 27, 19, 34, (87,143,0): 29, 18, 34, (87,144,0): 33, 20, 38, (87,145,0): 33, 20, 38, (87,146,0): 34, 21, 39, (87,147,0): 34, 21, 39, (87,148,0): 35, 22, 40, (87,149,0): 35, 22, 40, (87,150,0): 36, 23, 41, (87,151,0): 36, 23, 41, (87,152,0): 37, 24, 42, (87,153,0): 36, 23, 41, (87,154,0): 35, 22, 40, (87,155,0): 33, 20, 38, (87,156,0): 33, 20, 38, (87,157,0): 33, 20, 38, (87,158,0): 34, 21, 39, (87,159,0): 33, 22, 39, (87,160,0): 31, 20, 37, (87,161,0): 29, 20, 37, (87,162,0): 29, 20, 37, (87,163,0): 30, 21, 38, (87,164,0): 30, 21, 38, (87,165,0): 31, 22, 39, (87,166,0): 31, 22, 39, (87,167,0): 32, 23, 40, (87,168,0): 33, 24, 41, (87,169,0): 33, 24, 41, (87,170,0): 32, 23, 40, (87,171,0): 32, 23, 40, (87,172,0): 31, 22, 39, (87,173,0): 31, 22, 39, (87,174,0): 30, 21, 38, (87,175,0): 30, 21, 38, (87,176,0): 28, 21, 39, (87,177,0): 27, 19, 40, (87,178,0): 26, 18, 39, (87,179,0): 26, 18, 39, (87,180,0): 27, 19, 40, (87,181,0): 28, 20, 41, (87,182,0): 29, 21, 42, (87,183,0): 30, 22, 43, (87,184,0): 32, 24, 45, (87,185,0): 32, 24, 45, (87,186,0): 32, 24, 45, (87,187,0): 32, 24, 45, (87,188,0): 32, 24, 45, (87,189,0): 32, 24, 45, (87,190,0): 32, 24, 45, (87,191,0): 32, 24, 45, (87,192,0): 33, 24, 45, (87,193,0): 33, 24, 45, (87,194,0): 34, 25, 44, (87,195,0): 34, 25, 44, (87,196,0): 35, 26, 45, (87,197,0): 35, 26, 45, (87,198,0): 38, 27, 44, (87,199,0): 38, 27, 44, (87,200,0): 39, 26, 43, (87,201,0): 39, 26, 43, (87,202,0): 41, 27, 44, (87,203,0): 41, 27, 44, (87,204,0): 42, 28, 43, (87,205,0): 42, 28, 43, (87,206,0): 43, 29, 44, (87,207,0): 43, 29, 44, (87,208,0): 43, 29, 46, (87,209,0): 43, 29, 44, (87,210,0): 46, 29, 45, (87,211,0): 46, 29, 45, (87,212,0): 47, 30, 46, (87,213,0): 47, 31, 44, (87,214,0): 49, 31, 45, (87,215,0): 49, 31, 43, (87,216,0): 50, 30, 42, (87,217,0): 50, 30, 42, (87,218,0): 50, 30, 42, (87,219,0): 51, 31, 42, (87,220,0): 52, 30, 42, (87,221,0): 53, 31, 43, (87,222,0): 53, 31, 43, (87,223,0): 53, 32, 41, (87,224,0): 55, 32, 40, (87,225,0): 55, 32, 40, (87,226,0): 54, 31, 39, (87,227,0): 53, 30, 38, (87,228,0): 53, 30, 38, (87,229,0): 52, 29, 37, (87,230,0): 51, 28, 36, (87,231,0): 51, 28, 36, (87,232,0): 55, 32, 40, (87,233,0): 57, 34, 42, (87,234,0): 58, 35, 43, (87,235,0): 56, 33, 41, (87,236,0): 53, 30, 38, (87,237,0): 51, 28, 36, (87,238,0): 52, 29, 37, (87,239,0): 56, 31, 37, (87,240,0): 63, 34, 39, (87,241,0): 64, 33, 38, (87,242,0): 64, 33, 38, (87,243,0): 65, 34, 39, (87,244,0): 66, 34, 39, (87,245,0): 67, 35, 40, (87,246,0): 67, 35, 40, (87,247,0): 68, 36, 41, (87,248,0): 68, 33, 39, (87,249,0): 68, 33, 39, (87,250,0): 69, 32, 39, (87,251,0): 69, 32, 39, (87,252,0): 69, 32, 39, (87,253,0): 69, 32, 39, (87,254,0): 71, 31, 39, (87,255,0): 71, 32, 37, (87,256,0): 77, 36, 42, (87,257,0): 77, 36, 40, (87,258,0): 77, 36, 40, (87,259,0): 77, 36, 40, (87,260,0): 77, 36, 40, (87,261,0): 77, 36, 40, (87,262,0): 77, 36, 40, (87,263,0): 77, 36, 40, (87,264,0): 75, 34, 38, (87,265,0): 75, 34, 38, (87,266,0): 76, 35, 39, (87,267,0): 77, 36, 40, (87,268,0): 79, 38, 42, (87,269,0): 80, 39, 43, (87,270,0): 81, 40, 44, (87,271,0): 82, 41, 45, (87,272,0): 81, 41, 42, (87,273,0): 82, 42, 43, (87,274,0): 83, 43, 44, (87,275,0): 84, 44, 45, (87,276,0): 85, 45, 45, (87,277,0): 86, 46, 46, (87,278,0): 86, 46, 46, (87,279,0): 87, 47, 45, (87,280,0): 86, 46, 44, (87,281,0): 86, 47, 42, (87,282,0): 88, 49, 44, (87,283,0): 89, 50, 45, (87,284,0): 91, 52, 47, (87,285,0): 92, 53, 48, (87,286,0): 94, 55, 48, (87,287,0): 94, 55, 48, (87,288,0): 101, 58, 51, (87,289,0): 103, 60, 53, (87,290,0): 105, 62, 53, (87,291,0): 106, 64, 52, (87,292,0): 109, 65, 52, (87,293,0): 113, 70, 53, (87,294,0): 122, 77, 56, (87,295,0): 128, 82, 56, (87,296,0): 130, 84, 51, (87,297,0): 142, 92, 55, (87,298,0): 152, 99, 55, (87,299,0): 158, 102, 53, (87,300,0): 167, 107, 53, (87,301,0): 178, 116, 57, (87,302,0): 183, 119, 58, (87,303,0): 180, 116, 55, (87,304,0): 172, 112, 58, (87,305,0): 163, 107, 56, (87,306,0): 152, 102, 51, (87,307,0): 145, 99, 49, (87,308,0): 140, 100, 51, (87,309,0): 137, 101, 53, (87,310,0): 133, 99, 53, (87,311,0): 132, 98, 53, (87,312,0): 131, 96, 56, (87,313,0): 132, 97, 57, (87,314,0): 136, 98, 59, (87,315,0): 135, 100, 60, (87,316,0): 136, 103, 62, (87,317,0): 136, 105, 61, (87,318,0): 134, 105, 61, (87,319,0): 133, 106, 61, (87,320,0): 133, 101, 60, (87,321,0): 134, 101, 60, (87,322,0): 133, 100, 59, (87,323,0): 132, 99, 58, (87,324,0): 131, 99, 58, (87,325,0): 132, 100, 59, (87,326,0): 134, 102, 61, (87,327,0): 133, 104, 62, (87,328,0): 131, 102, 60, (87,329,0): 134, 107, 64, (87,330,0): 138, 111, 68, (87,331,0): 140, 113, 70, (87,332,0): 140, 113, 70, (87,333,0): 140, 113, 70, (87,334,0): 140, 116, 72, (87,335,0): 142, 118, 74, (87,336,0): 142, 119, 78, (87,337,0): 141, 118, 77, (87,338,0): 141, 118, 77, (87,339,0): 141, 118, 77, (87,340,0): 142, 119, 78, (87,341,0): 144, 121, 80, (87,342,0): 146, 123, 82, (87,343,0): 147, 124, 83, (87,344,0): 150, 127, 86, (87,345,0): 150, 127, 86, (87,346,0): 151, 128, 87, (87,347,0): 151, 128, 87, (87,348,0): 152, 129, 88, (87,349,0): 153, 130, 89, (87,350,0): 154, 131, 90, (87,351,0): 154, 131, 90, (87,352,0): 155, 129, 92, (87,353,0): 155, 129, 92, (87,354,0): 156, 130, 95, (87,355,0): 156, 130, 95, (87,356,0): 158, 129, 95, (87,357,0): 156, 127, 93, (87,358,0): 155, 126, 94, (87,359,0): 154, 125, 93, (87,360,0): 157, 126, 97, (87,361,0): 156, 125, 96, (87,362,0): 157, 123, 95, (87,363,0): 156, 122, 94, (87,364,0): 156, 122, 95, (87,365,0): 157, 123, 96, (87,366,0): 159, 123, 97, (87,367,0): 160, 125, 97, (87,368,0): 162, 127, 95, (87,369,0): 162, 128, 93, (87,370,0): 165, 126, 95, (87,371,0): 167, 126, 98, (87,372,0): 170, 126, 101, (87,373,0): 170, 125, 102, (87,374,0): 168, 126, 104, (87,375,0): 168, 127, 107, (87,376,0): 162, 126, 104, (87,377,0): 158, 126, 103, (87,378,0): 157, 127, 103, (87,379,0): 156, 126, 100, (87,380,0): 158, 126, 101, (87,381,0): 161, 127, 100, (87,382,0): 164, 128, 102, (87,383,0): 171, 127, 100, (87,384,0): 185, 128, 98, (87,385,0): 193, 128, 96, (87,386,0): 199, 130, 97, (87,387,0): 204, 134, 98, (87,388,0): 209, 135, 96, (87,389,0): 211, 136, 94, (87,390,0): 214, 136, 90, (87,391,0): 216, 136, 87, (87,392,0): 233, 150, 98, (87,393,0): 239, 154, 100, (87,394,0): 243, 156, 102, (87,395,0): 241, 154, 100, (87,396,0): 236, 150, 93, (87,397,0): 231, 145, 88, (87,398,0): 230, 144, 87, (87,399,0): 229, 144, 87, (87,400,0): 225, 144, 88, (87,401,0): 225, 144, 89, (87,402,0): 224, 143, 88, (87,403,0): 225, 144, 89, (87,404,0): 226, 145, 90, (87,405,0): 229, 148, 93, (87,406,0): 231, 150, 94, (87,407,0): 232, 153, 96, (87,408,0): 233, 158, 100, (87,409,0): 231, 159, 100, (87,410,0): 231, 161, 101, (87,411,0): 229, 163, 102, (87,412,0): 226, 165, 102, (87,413,0): 226, 166, 103, (87,414,0): 226, 168, 104, (87,415,0): 224, 169, 104, (87,416,0): 223, 170, 104, (87,417,0): 220, 170, 101, (87,418,0): 219, 166, 98, (87,419,0): 213, 163, 94, (87,420,0): 210, 160, 91, (87,421,0): 210, 161, 92, (87,422,0): 215, 166, 99, (87,423,0): 220, 171, 104, (87,424,0): 227, 180, 112, (87,425,0): 226, 179, 111, (87,426,0): 222, 177, 109, (87,427,0): 221, 176, 108, (87,428,0): 219, 176, 107, (87,429,0): 220, 177, 108, (87,430,0): 220, 177, 108, (87,431,0): 219, 179, 109, (87,432,0): 213, 176, 105, (87,433,0): 209, 175, 103, (87,434,0): 206, 172, 100, (87,435,0): 204, 170, 98, (87,436,0): 201, 169, 96, (87,437,0): 201, 169, 96, (87,438,0): 202, 168, 97, (87,439,0): 203, 169, 97, (87,440,0): 208, 169, 100, (87,441,0): 211, 171, 101, (87,442,0): 216, 173, 104, (87,443,0): 222, 175, 107, (87,444,0): 224, 175, 106, (87,445,0): 225, 175, 106, (87,446,0): 227, 172, 105, (87,447,0): 225, 171, 107, (87,448,0): 211, 162, 104, (87,449,0): 200, 155, 100, (87,450,0): 188, 142, 90, (87,451,0): 177, 134, 83, (87,452,0): 169, 127, 77, (87,453,0): 164, 123, 77, (87,454,0): 158, 120, 75, (87,455,0): 154, 117, 73, (87,456,0): 148, 113, 73, (87,457,0): 145, 113, 74, (87,458,0): 143, 110, 75, (87,459,0): 138, 109, 75, (87,460,0): 136, 107, 75, (87,461,0): 133, 106, 76, (87,462,0): 133, 108, 78, (87,463,0): 134, 109, 79, (87,464,0): 134, 111, 77, (87,465,0): 129, 109, 74, (87,466,0): 126, 106, 71, (87,467,0): 127, 107, 72, (87,468,0): 131, 108, 76, (87,469,0): 133, 110, 78, (87,470,0): 132, 109, 77, (87,471,0): 131, 108, 76, (87,472,0): 130, 105, 75, (87,473,0): 129, 104, 74, (87,474,0): 129, 102, 75, (87,475,0): 127, 100, 73, (87,476,0): 124, 97, 70, (87,477,0): 121, 94, 67, (87,478,0): 119, 89, 65, (87,479,0): 117, 87, 63, (87,480,0): 110, 82, 58, (87,481,0): 112, 84, 60, (87,482,0): 116, 88, 64, (87,483,0): 119, 91, 67, (87,484,0): 122, 94, 70, (87,485,0): 123, 95, 71, (87,486,0): 125, 95, 71, (87,487,0): 125, 95, 71, (87,488,0): 124, 92, 69, (87,489,0): 130, 98, 75, (87,490,0): 138, 103, 81, (87,491,0): 142, 107, 85, (87,492,0): 141, 106, 84, (87,493,0): 139, 104, 82, (87,494,0): 138, 103, 81, (87,495,0): 136, 104, 81, (87,496,0): 131, 103, 81, (87,497,0): 129, 103, 80, (87,498,0): 127, 103, 79, (87,499,0): 124, 100, 76, (87,500,0): 120, 95, 73, (87,501,0): 116, 91, 69, (87,502,0): 111, 88, 70, (87,503,0): 108, 85, 67, (87,504,0): 103, 80, 64, (87,505,0): 102, 81, 64, (87,506,0): 102, 80, 67, (87,507,0): 103, 81, 68, (87,508,0): 102, 82, 71, (87,509,0): 102, 82, 71, (87,510,0): 102, 82, 71, (87,511,0): 103, 83, 72, (87,512,0): 96, 77, 63, (87,513,0): 96, 77, 63, (87,514,0): 96, 77, 63, (87,515,0): 95, 76, 62, (87,516,0): 95, 76, 62, (87,517,0): 95, 76, 62, (87,518,0): 95, 76, 62, (87,519,0): 95, 76, 62, (87,520,0): 86, 67, 53, (87,521,0): 85, 66, 52, (87,522,0): 85, 66, 52, (87,523,0): 86, 67, 53, (87,524,0): 87, 68, 54, (87,525,0): 89, 70, 56, (87,526,0): 91, 72, 58, (87,527,0): 92, 74, 60, (87,528,0): 98, 82, 69, (87,529,0): 96, 82, 69, (87,530,0): 96, 83, 67, (87,531,0): 97, 84, 68, (87,532,0): 99, 83, 68, (87,533,0): 100, 84, 69, (87,534,0): 102, 83, 68, (87,535,0): 102, 83, 68, (87,536,0): 107, 86, 69, (87,537,0): 108, 87, 70, (87,538,0): 113, 87, 72, (87,539,0): 114, 88, 73, (87,540,0): 115, 88, 71, (87,541,0): 115, 88, 71, (87,542,0): 113, 86, 69, (87,543,0): 112, 85, 66, (87,544,0): 111, 82, 64, (87,545,0): 113, 82, 62, (87,546,0): 113, 82, 62, (87,547,0): 111, 83, 62, (87,548,0): 112, 83, 65, (87,549,0): 112, 83, 65, (87,550,0): 111, 84, 65, (87,551,0): 111, 84, 65, (87,552,0): 109, 82, 65, (87,553,0): 108, 82, 65, (87,554,0): 110, 84, 69, (87,555,0): 110, 84, 69, (87,556,0): 108, 85, 69, (87,557,0): 108, 85, 69, (87,558,0): 106, 83, 69, (87,559,0): 105, 83, 69, (87,560,0): 104, 85, 71, (87,561,0): 104, 85, 71, (87,562,0): 103, 84, 70, (87,563,0): 103, 84, 70, (87,564,0): 102, 82, 71, (87,565,0): 101, 81, 70, (87,566,0): 101, 81, 70, (87,567,0): 100, 80, 69, (87,568,0): 99, 79, 70, (87,569,0): 98, 78, 69, (87,570,0): 96, 76, 69, (87,571,0): 93, 73, 66, (87,572,0): 90, 70, 63, (87,573,0): 87, 67, 60, (87,574,0): 85, 64, 59, (87,575,0): 84, 63, 58, (87,576,0): 85, 61, 59, (87,577,0): 84, 60, 58, (87,578,0): 80, 59, 56, (87,579,0): 77, 56, 53, (87,580,0): 74, 53, 52, (87,581,0): 71, 50, 49, (87,582,0): 68, 48, 47, (87,583,0): 67, 47, 46, (87,584,0): 62, 44, 44, (87,585,0): 61, 43, 43, (87,586,0): 60, 41, 43, (87,587,0): 59, 40, 42, (87,588,0): 56, 40, 41, (87,589,0): 55, 39, 40, (87,590,0): 54, 38, 41, (87,591,0): 54, 37, 43, (87,592,0): 51, 31, 40, (87,593,0): 51, 31, 42, (87,594,0): 51, 31, 40, (87,595,0): 51, 32, 38, (87,596,0): 51, 32, 38, (87,597,0): 51, 32, 36, (87,598,0): 51, 32, 34, (87,599,0): 51, 32, 34, (88,0,0): 26, 24, 38, (88,1,0): 26, 24, 38, (88,2,0): 27, 25, 39, (88,3,0): 27, 25, 39, (88,4,0): 29, 25, 40, (88,5,0): 29, 25, 40, (88,6,0): 30, 26, 41, (88,7,0): 30, 26, 41, (88,8,0): 31, 24, 40, (88,9,0): 31, 24, 40, (88,10,0): 33, 24, 41, (88,11,0): 34, 25, 42, (88,12,0): 35, 26, 43, (88,13,0): 36, 27, 44, (88,14,0): 39, 28, 45, (88,15,0): 39, 28, 44, (88,16,0): 38, 27, 43, (88,17,0): 38, 27, 41, (88,18,0): 39, 28, 42, (88,19,0): 39, 28, 42, (88,20,0): 41, 29, 41, (88,21,0): 41, 29, 41, (88,22,0): 43, 29, 42, (88,23,0): 43, 29, 42, (88,24,0): 50, 34, 45, (88,25,0): 50, 34, 45, (88,26,0): 52, 35, 45, (88,27,0): 53, 36, 46, (88,28,0): 56, 36, 47, (88,29,0): 57, 37, 48, (88,30,0): 58, 38, 47, (88,31,0): 58, 38, 47, (88,32,0): 61, 38, 46, (88,33,0): 63, 38, 44, (88,34,0): 62, 36, 45, (88,35,0): 62, 36, 45, (88,36,0): 61, 35, 44, (88,37,0): 60, 34, 43, (88,38,0): 59, 33, 44, (88,39,0): 59, 33, 44, (88,40,0): 59, 33, 46, (88,41,0): 59, 33, 46, (88,42,0): 60, 34, 47, (88,43,0): 60, 34, 47, (88,44,0): 60, 33, 48, (88,45,0): 60, 33, 48, (88,46,0): 61, 34, 49, (88,47,0): 59, 35, 49, (88,48,0): 61, 39, 52, (88,49,0): 60, 38, 51, (88,50,0): 57, 34, 50, (88,51,0): 54, 31, 47, (88,52,0): 51, 30, 45, (88,53,0): 50, 29, 44, (88,54,0): 50, 29, 46, (88,55,0): 50, 29, 46, (88,56,0): 48, 29, 48, (88,57,0): 47, 28, 47, (88,58,0): 45, 28, 46, (88,59,0): 44, 27, 45, (88,60,0): 43, 26, 45, (88,61,0): 43, 26, 45, (88,62,0): 42, 27, 46, (88,63,0): 42, 29, 47, (88,64,0): 40, 28, 48, (88,65,0): 37, 28, 49, (88,66,0): 35, 26, 47, (88,67,0): 33, 24, 45, (88,68,0): 32, 23, 44, (88,69,0): 33, 24, 45, (88,70,0): 34, 25, 46, (88,71,0): 35, 26, 47, (88,72,0): 36, 27, 48, (88,73,0): 36, 27, 48, (88,74,0): 35, 26, 47, (88,75,0): 33, 24, 45, (88,76,0): 32, 23, 44, (88,77,0): 31, 22, 43, (88,78,0): 30, 21, 42, (88,79,0): 29, 20, 41, (88,80,0): 31, 19, 39, (88,81,0): 31, 19, 39, (88,82,0): 28, 19, 38, (88,83,0): 27, 18, 37, (88,84,0): 27, 18, 39, (88,85,0): 26, 17, 38, (88,86,0): 24, 16, 37, (88,87,0): 24, 16, 37, (88,88,0): 25, 20, 42, (88,89,0): 24, 19, 41, (88,90,0): 23, 18, 41, (88,91,0): 21, 16, 39, (88,92,0): 20, 16, 39, (88,93,0): 20, 16, 39, (88,94,0): 21, 17, 42, (88,95,0): 21, 17, 42, (88,96,0): 21, 17, 40, (88,97,0): 21, 17, 40, (88,98,0): 21, 17, 40, (88,99,0): 20, 16, 39, (88,100,0): 20, 16, 39, (88,101,0): 19, 15, 38, (88,102,0): 19, 15, 38, (88,103,0): 18, 14, 37, (88,104,0): 16, 12, 35, (88,105,0): 17, 13, 36, (88,106,0): 17, 13, 36, (88,107,0): 18, 14, 37, (88,108,0): 18, 14, 37, (88,109,0): 17, 13, 36, (88,110,0): 17, 13, 36, (88,111,0): 16, 12, 35, (88,112,0): 21, 18, 39, (88,113,0): 20, 17, 38, (88,114,0): 20, 17, 38, (88,115,0): 19, 16, 37, (88,116,0): 18, 15, 36, (88,117,0): 17, 14, 35, (88,118,0): 17, 14, 35, (88,119,0): 16, 13, 34, (88,120,0): 19, 16, 37, (88,121,0): 19, 16, 37, (88,122,0): 19, 16, 37, (88,123,0): 19, 16, 37, (88,124,0): 19, 16, 37, (88,125,0): 19, 16, 37, (88,126,0): 19, 16, 37, (88,127,0): 19, 16, 37, (88,128,0): 20, 17, 38, (88,129,0): 20, 17, 38, (88,130,0): 21, 18, 39, (88,131,0): 21, 18, 39, (88,132,0): 23, 18, 38, (88,133,0): 23, 18, 38, (88,134,0): 26, 18, 39, (88,135,0): 26, 18, 39, (88,136,0): 22, 15, 33, (88,137,0): 24, 17, 35, (88,138,0): 27, 18, 35, (88,139,0): 29, 20, 37, (88,140,0): 32, 21, 38, (88,141,0): 31, 20, 37, (88,142,0): 29, 18, 34, (88,143,0): 28, 17, 33, (88,144,0): 32, 19, 37, (88,145,0): 32, 19, 37, (88,146,0): 32, 19, 37, (88,147,0): 33, 20, 38, (88,148,0): 33, 20, 38, (88,149,0): 34, 21, 39, (88,150,0): 34, 21, 39, (88,151,0): 34, 21, 39, (88,152,0): 36, 23, 41, (88,153,0): 36, 23, 41, (88,154,0): 36, 23, 41, (88,155,0): 36, 23, 41, (88,156,0): 36, 23, 41, (88,157,0): 36, 23, 41, (88,158,0): 36, 23, 41, (88,159,0): 35, 24, 41, (88,160,0): 34, 23, 40, (88,161,0): 32, 23, 40, (88,162,0): 32, 23, 40, (88,163,0): 32, 23, 40, (88,164,0): 32, 23, 40, (88,165,0): 32, 23, 40, (88,166,0): 32, 23, 40, (88,167,0): 32, 23, 40, (88,168,0): 32, 23, 40, (88,169,0): 32, 23, 40, (88,170,0): 32, 23, 40, (88,171,0): 32, 23, 40, (88,172,0): 32, 23, 40, (88,173,0): 32, 23, 40, (88,174,0): 32, 23, 40, (88,175,0): 32, 23, 40, (88,176,0): 29, 22, 40, (88,177,0): 28, 21, 39, (88,178,0): 27, 20, 38, (88,179,0): 26, 19, 37, (88,180,0): 26, 19, 37, (88,181,0): 27, 20, 38, (88,182,0): 28, 21, 39, (88,183,0): 29, 22, 40, (88,184,0): 31, 24, 42, (88,185,0): 31, 24, 42, (88,186,0): 31, 24, 42, (88,187,0): 32, 25, 43, (88,188,0): 32, 25, 43, (88,189,0): 33, 26, 44, (88,190,0): 33, 26, 44, (88,191,0): 33, 26, 44, (88,192,0): 35, 26, 45, (88,193,0): 35, 26, 45, (88,194,0): 37, 25, 45, (88,195,0): 38, 26, 46, (88,196,0): 38, 27, 44, (88,197,0): 39, 28, 45, (88,198,0): 40, 27, 45, (88,199,0): 40, 27, 45, (88,200,0): 43, 29, 46, (88,201,0): 43, 29, 46, (88,202,0): 43, 29, 44, (88,203,0): 43, 29, 44, (88,204,0): 45, 28, 44, (88,205,0): 45, 28, 44, (88,206,0): 45, 29, 42, (88,207,0): 45, 29, 42, (88,208,0): 43, 29, 44, (88,209,0): 43, 29, 44, (88,210,0): 46, 29, 45, (88,211,0): 46, 30, 43, (88,212,0): 47, 31, 44, (88,213,0): 47, 31, 44, (88,214,0): 49, 31, 45, (88,215,0): 49, 31, 43, (88,216,0): 51, 31, 43, (88,217,0): 51, 31, 42, (88,218,0): 51, 31, 42, (88,219,0): 51, 31, 42, (88,220,0): 52, 30, 42, (88,221,0): 52, 31, 40, (88,222,0): 52, 31, 40, (88,223,0): 52, 31, 40, (88,224,0): 53, 30, 38, (88,225,0): 53, 30, 38, (88,226,0): 53, 30, 38, (88,227,0): 53, 30, 38, (88,228,0): 53, 30, 38, (88,229,0): 53, 30, 38, (88,230,0): 53, 30, 38, (88,231,0): 53, 30, 38, (88,232,0): 53, 30, 38, (88,233,0): 53, 30, 38, (88,234,0): 53, 30, 38, (88,235,0): 53, 30, 38, (88,236,0): 53, 30, 38, (88,237,0): 53, 30, 38, (88,238,0): 53, 30, 38, (88,239,0): 55, 30, 36, (88,240,0): 59, 32, 37, (88,241,0): 61, 32, 36, (88,242,0): 61, 32, 36, (88,243,0): 61, 32, 36, (88,244,0): 62, 31, 36, (88,245,0): 62, 31, 36, (88,246,0): 62, 31, 36, (88,247,0): 62, 31, 36, (88,248,0): 64, 32, 37, (88,249,0): 64, 32, 37, (88,250,0): 67, 32, 38, (88,251,0): 67, 32, 38, (88,252,0): 68, 33, 39, (88,253,0): 69, 34, 40, (88,254,0): 71, 34, 41, (88,255,0): 71, 35, 39, (88,256,0): 72, 33, 38, (88,257,0): 73, 34, 37, (88,258,0): 73, 34, 37, (88,259,0): 74, 35, 38, (88,260,0): 74, 35, 38, (88,261,0): 75, 36, 39, (88,262,0): 75, 36, 39, (88,263,0): 75, 36, 39, (88,264,0): 77, 38, 41, (88,265,0): 77, 38, 41, (88,266,0): 78, 39, 42, (88,267,0): 78, 39, 42, (88,268,0): 79, 40, 43, (88,269,0): 79, 40, 43, (88,270,0): 80, 41, 44, (88,271,0): 80, 41, 44, (88,272,0): 81, 41, 42, (88,273,0): 82, 42, 42, (88,274,0): 82, 42, 42, (88,275,0): 83, 43, 43, (88,276,0): 84, 44, 44, (88,277,0): 85, 45, 45, (88,278,0): 86, 46, 44, (88,279,0): 87, 47, 45, (88,280,0): 87, 47, 45, (88,281,0): 88, 49, 44, (88,282,0): 89, 50, 45, (88,283,0): 91, 52, 45, (88,284,0): 92, 53, 46, (88,285,0): 94, 55, 48, (88,286,0): 95, 56, 49, (88,287,0): 96, 57, 50, (88,288,0): 99, 56, 49, (88,289,0): 102, 59, 50, (88,290,0): 105, 62, 53, (88,291,0): 107, 65, 53, (88,292,0): 109, 67, 53, (88,293,0): 114, 71, 54, (88,294,0): 121, 76, 55, (88,295,0): 127, 81, 55, (88,296,0): 131, 85, 52, (88,297,0): 143, 93, 56, (88,298,0): 153, 100, 58, (88,299,0): 160, 104, 57, (88,300,0): 170, 110, 58, (88,301,0): 180, 118, 61, (88,302,0): 184, 119, 61, (88,303,0): 178, 116, 57, (88,304,0): 171, 111, 57, (88,305,0): 163, 107, 56, (88,306,0): 152, 102, 51, (88,307,0): 144, 98, 48, (88,308,0): 140, 100, 51, (88,309,0): 137, 101, 53, (88,310,0): 134, 100, 54, (88,311,0): 132, 99, 54, (88,312,0): 135, 100, 60, (88,313,0): 136, 101, 61, (88,314,0): 136, 101, 59, (88,315,0): 136, 101, 59, (88,316,0): 135, 102, 59, (88,317,0): 133, 104, 60, (88,318,0): 132, 105, 60, (88,319,0): 132, 105, 60, (88,320,0): 134, 102, 61, (88,321,0): 134, 102, 61, (88,322,0): 134, 102, 61, (88,323,0): 135, 103, 62, (88,324,0): 135, 103, 62, (88,325,0): 135, 103, 62, (88,326,0): 133, 104, 62, (88,327,0): 133, 104, 62, (88,328,0): 135, 106, 64, (88,329,0): 135, 108, 65, (88,330,0): 137, 110, 67, (88,331,0): 138, 114, 70, (88,332,0): 139, 115, 71, (88,333,0): 139, 115, 71, (88,334,0): 139, 115, 71, (88,335,0): 139, 115, 71, (88,336,0): 139, 116, 75, (88,337,0): 140, 117, 76, (88,338,0): 141, 118, 77, (88,339,0): 142, 119, 78, (88,340,0): 144, 121, 80, (88,341,0): 146, 123, 82, (88,342,0): 147, 124, 83, (88,343,0): 147, 124, 83, (88,344,0): 148, 125, 84, (88,345,0): 149, 126, 85, (88,346,0): 151, 128, 87, (88,347,0): 153, 130, 89, (88,348,0): 154, 131, 90, (88,349,0): 154, 131, 90, (88,350,0): 154, 131, 90, (88,351,0): 154, 131, 90, (88,352,0): 155, 129, 92, (88,353,0): 155, 129, 92, (88,354,0): 155, 129, 92, (88,355,0): 155, 129, 92, (88,356,0): 157, 129, 92, (88,357,0): 157, 129, 92, (88,358,0): 157, 128, 94, (88,359,0): 157, 128, 94, (88,360,0): 156, 125, 94, (88,361,0): 156, 125, 94, (88,362,0): 158, 124, 96, (88,363,0): 158, 124, 96, (88,364,0): 159, 125, 97, (88,365,0): 161, 127, 99, (88,366,0): 164, 129, 101, (88,367,0): 165, 130, 100, (88,368,0): 162, 129, 96, (88,369,0): 163, 129, 94, (88,370,0): 166, 127, 96, (88,371,0): 167, 126, 98, (88,372,0): 167, 125, 100, (88,373,0): 167, 125, 101, (88,374,0): 167, 125, 103, (88,375,0): 164, 126, 103, (88,376,0): 160, 126, 101, (88,377,0): 158, 126, 101, (88,378,0): 157, 127, 101, (88,379,0): 158, 127, 99, (88,380,0): 162, 128, 101, (88,381,0): 166, 131, 103, (88,382,0): 172, 132, 106, (88,383,0): 179, 132, 102, (88,384,0): 190, 130, 96, (88,385,0): 198, 130, 95, (88,386,0): 205, 132, 97, (88,387,0): 210, 136, 97, (88,388,0): 213, 138, 96, (88,389,0): 216, 138, 92, (88,390,0): 218, 136, 88, (88,391,0): 218, 135, 85, (88,392,0): 233, 148, 94, (88,393,0): 232, 145, 91, (88,394,0): 231, 144, 90, (88,395,0): 229, 143, 86, (88,396,0): 229, 143, 86, (88,397,0): 230, 144, 87, (88,398,0): 230, 145, 88, (88,399,0): 230, 148, 90, (88,400,0): 221, 142, 85, (88,401,0): 222, 143, 86, (88,402,0): 222, 143, 86, (88,403,0): 224, 145, 88, (88,404,0): 227, 148, 91, (88,405,0): 230, 151, 94, (88,406,0): 233, 154, 97, (88,407,0): 233, 157, 99, (88,408,0): 231, 156, 98, (88,409,0): 229, 159, 99, (88,410,0): 229, 160, 101, (88,411,0): 227, 163, 102, (88,412,0): 224, 164, 102, (88,413,0): 222, 164, 101, (88,414,0): 219, 164, 100, (88,415,0): 217, 164, 98, (88,416,0): 218, 167, 101, (88,417,0): 220, 171, 104, (88,418,0): 222, 171, 105, (88,419,0): 217, 168, 101, (88,420,0): 211, 162, 95, (88,421,0): 210, 161, 94, (88,422,0): 215, 166, 99, (88,423,0): 221, 174, 106, (88,424,0): 221, 174, 106, (88,425,0): 223, 176, 108, (88,426,0): 223, 179, 108, (88,427,0): 225, 181, 110, (88,428,0): 225, 181, 110, (88,429,0): 224, 180, 109, (88,430,0): 222, 178, 107, (88,431,0): 219, 177, 105, (88,432,0): 213, 177, 103, (88,433,0): 210, 176, 102, (88,434,0): 209, 175, 101, (88,435,0): 208, 174, 100, (88,436,0): 206, 174, 99, (88,437,0): 206, 174, 99, (88,438,0): 207, 173, 101, (88,439,0): 207, 173, 99, (88,440,0): 209, 171, 100, (88,441,0): 210, 170, 98, (88,442,0): 214, 172, 100, (88,443,0): 220, 173, 103, (88,444,0): 224, 175, 108, (88,445,0): 224, 173, 107, (88,446,0): 223, 168, 103, (88,447,0): 216, 165, 102, (88,448,0): 202, 155, 99, (88,449,0): 191, 148, 95, (88,450,0): 180, 137, 86, (88,451,0): 170, 129, 77, (88,452,0): 165, 123, 73, (88,453,0): 162, 121, 75, (88,454,0): 157, 119, 74, (88,455,0): 154, 117, 73, (88,456,0): 148, 113, 73, (88,457,0): 144, 112, 73, (88,458,0): 142, 110, 72, (88,459,0): 137, 109, 72, (88,460,0): 136, 107, 73, (88,461,0): 135, 109, 76, (88,462,0): 137, 111, 78, (88,463,0): 138, 114, 80, (88,464,0): 133, 110, 76, (88,465,0): 131, 111, 74, (88,466,0): 132, 112, 77, (88,467,0): 133, 113, 78, (88,468,0): 134, 111, 77, (88,469,0): 133, 110, 76, (88,470,0): 132, 109, 77, (88,471,0): 131, 108, 76, (88,472,0): 128, 103, 73, (88,473,0): 128, 103, 73, (88,474,0): 129, 102, 73, (88,475,0): 128, 101, 72, (88,476,0): 126, 99, 72, (88,477,0): 125, 98, 71, (88,478,0): 125, 95, 69, (88,479,0): 124, 94, 68, (88,480,0): 121, 94, 67, (88,481,0): 120, 93, 66, (88,482,0): 121, 91, 65, (88,483,0): 120, 90, 64, (88,484,0): 121, 91, 65, (88,485,0): 123, 93, 67, (88,486,0): 126, 94, 69, (88,487,0): 127, 95, 70, (88,488,0): 130, 96, 71, (88,489,0): 134, 100, 75, (88,490,0): 139, 105, 80, (88,491,0): 143, 109, 84, (88,492,0): 145, 109, 85, (88,493,0): 144, 108, 84, (88,494,0): 141, 105, 81, (88,495,0): 138, 103, 81, (88,496,0): 135, 107, 85, (88,497,0): 132, 106, 83, (88,498,0): 129, 103, 80, (88,499,0): 124, 98, 75, (88,500,0): 119, 94, 72, (88,501,0): 115, 90, 68, (88,502,0): 111, 85, 68, (88,503,0): 108, 85, 67, (88,504,0): 104, 81, 65, (88,505,0): 103, 80, 64, (88,506,0): 99, 77, 64, (88,507,0): 97, 75, 62, (88,508,0): 96, 74, 63, (88,509,0): 97, 75, 64, (88,510,0): 96, 76, 65, (88,511,0): 97, 77, 66, (88,512,0): 93, 74, 60, (88,513,0): 93, 74, 60, (88,514,0): 92, 73, 59, (88,515,0): 92, 73, 59, (88,516,0): 92, 73, 59, (88,517,0): 92, 73, 59, (88,518,0): 91, 72, 58, (88,519,0): 91, 72, 58, (88,520,0): 86, 67, 53, (88,521,0): 86, 67, 53, (88,522,0): 87, 68, 54, (88,523,0): 88, 69, 55, (88,524,0): 89, 70, 56, (88,525,0): 91, 72, 58, (88,526,0): 92, 73, 59, (88,527,0): 92, 74, 60, (88,528,0): 96, 80, 67, (88,529,0): 95, 81, 68, (88,530,0): 97, 84, 68, (88,531,0): 99, 86, 70, (88,532,0): 102, 86, 71, (88,533,0): 102, 86, 71, (88,534,0): 104, 85, 70, (88,535,0): 104, 85, 70, (88,536,0): 104, 83, 66, (88,537,0): 104, 83, 66, (88,538,0): 108, 82, 67, (88,539,0): 108, 82, 67, (88,540,0): 110, 83, 66, (88,541,0): 111, 84, 67, (88,542,0): 112, 85, 68, (88,543,0): 112, 85, 66, (88,544,0): 109, 80, 62, (88,545,0): 108, 80, 59, (88,546,0): 105, 76, 58, (88,547,0): 104, 75, 57, (88,548,0): 105, 76, 58, (88,549,0): 107, 80, 61, (88,550,0): 110, 83, 66, (88,551,0): 113, 86, 69, (88,552,0): 109, 83, 68, (88,553,0): 109, 83, 68, (88,554,0): 109, 83, 68, (88,555,0): 107, 84, 68, (88,556,0): 107, 84, 70, (88,557,0): 107, 84, 70, (88,558,0): 106, 84, 70, (88,559,0): 106, 84, 70, (88,560,0): 105, 86, 72, (88,561,0): 104, 85, 71, (88,562,0): 103, 84, 70, (88,563,0): 102, 83, 69, (88,564,0): 100, 80, 69, (88,565,0): 99, 79, 68, (88,566,0): 97, 77, 66, (88,567,0): 97, 77, 66, (88,568,0): 97, 77, 68, (88,569,0): 98, 78, 69, (88,570,0): 99, 79, 72, (88,571,0): 98, 78, 71, (88,572,0): 96, 76, 69, (88,573,0): 93, 73, 66, (88,574,0): 89, 68, 63, (88,575,0): 87, 66, 61, (88,576,0): 86, 62, 60, (88,577,0): 85, 61, 59, (88,578,0): 81, 60, 57, (88,579,0): 79, 58, 55, (88,580,0): 76, 55, 54, (88,581,0): 73, 52, 51, (88,582,0): 70, 50, 49, (88,583,0): 69, 49, 48, (88,584,0): 64, 46, 46, (88,585,0): 64, 46, 46, (88,586,0): 62, 43, 45, (88,587,0): 60, 41, 43, (88,588,0): 56, 40, 41, (88,589,0): 54, 38, 39, (88,590,0): 52, 36, 39, (88,591,0): 51, 34, 40, (88,592,0): 51, 34, 42, (88,593,0): 51, 34, 44, (88,594,0): 52, 35, 43, (88,595,0): 52, 35, 41, (88,596,0): 52, 35, 41, (88,597,0): 52, 36, 39, (88,598,0): 53, 37, 38, (88,599,0): 53, 37, 38, (89,0,0): 26, 24, 38, (89,1,0): 26, 24, 38, (89,2,0): 27, 25, 39, (89,3,0): 27, 25, 39, (89,4,0): 29, 25, 40, (89,5,0): 29, 25, 40, (89,6,0): 30, 26, 41, (89,7,0): 30, 26, 41, (89,8,0): 31, 24, 40, (89,9,0): 31, 24, 40, (89,10,0): 33, 24, 41, (89,11,0): 34, 25, 42, (89,12,0): 35, 26, 43, (89,13,0): 36, 27, 44, (89,14,0): 39, 28, 45, (89,15,0): 39, 28, 44, (89,16,0): 38, 27, 43, (89,17,0): 39, 28, 42, (89,18,0): 39, 28, 42, (89,19,0): 40, 29, 43, (89,20,0): 41, 29, 41, (89,21,0): 42, 30, 42, (89,22,0): 43, 29, 42, (89,23,0): 43, 29, 42, (89,24,0): 49, 33, 44, (89,25,0): 50, 34, 45, (89,26,0): 51, 34, 44, (89,27,0): 52, 35, 45, (89,28,0): 55, 35, 46, (89,29,0): 56, 36, 47, (89,30,0): 57, 37, 46, (89,31,0): 59, 38, 45, (89,32,0): 60, 37, 45, (89,33,0): 62, 37, 43, (89,34,0): 62, 36, 45, (89,35,0): 61, 35, 44, (89,36,0): 61, 35, 44, (89,37,0): 61, 35, 44, (89,38,0): 61, 35, 46, (89,39,0): 60, 34, 45, (89,40,0): 59, 33, 46, (89,41,0): 59, 33, 46, (89,42,0): 59, 33, 46, (89,43,0): 59, 33, 46, (89,44,0): 59, 32, 47, (89,45,0): 59, 32, 47, (89,46,0): 60, 33, 48, (89,47,0): 58, 34, 48, (89,48,0): 61, 37, 51, (89,49,0): 59, 37, 50, (89,50,0): 56, 33, 49, (89,51,0): 54, 31, 47, (89,52,0): 51, 30, 45, (89,53,0): 50, 29, 44, (89,54,0): 50, 29, 46, (89,55,0): 50, 29, 46, (89,56,0): 48, 29, 48, (89,57,0): 47, 28, 47, (89,58,0): 45, 28, 46, (89,59,0): 43, 26, 44, (89,60,0): 43, 26, 45, (89,61,0): 43, 26, 45, (89,62,0): 42, 27, 46, (89,63,0): 41, 28, 48, (89,64,0): 37, 25, 47, (89,65,0): 34, 25, 46, (89,66,0): 33, 24, 45, (89,67,0): 32, 23, 44, (89,68,0): 32, 23, 44, (89,69,0): 32, 23, 44, (89,70,0): 32, 23, 44, (89,71,0): 32, 23, 44, (89,72,0): 36, 27, 48, (89,73,0): 35, 26, 47, (89,74,0): 34, 25, 46, (89,75,0): 33, 24, 45, (89,76,0): 32, 23, 44, (89,77,0): 31, 22, 43, (89,78,0): 30, 21, 42, (89,79,0): 29, 20, 41, (89,80,0): 31, 19, 39, (89,81,0): 31, 19, 39, (89,82,0): 28, 19, 38, (89,83,0): 27, 18, 37, (89,84,0): 27, 18, 39, (89,85,0): 26, 17, 38, (89,86,0): 24, 16, 37, (89,87,0): 24, 16, 37, (89,88,0): 25, 20, 42, (89,89,0): 24, 19, 41, (89,90,0): 23, 18, 41, (89,91,0): 21, 16, 39, (89,92,0): 20, 16, 39, (89,93,0): 20, 16, 39, (89,94,0): 21, 17, 42, (89,95,0): 21, 17, 42, (89,96,0): 21, 17, 40, (89,97,0): 21, 17, 40, (89,98,0): 20, 16, 39, (89,99,0): 20, 16, 39, (89,100,0): 19, 15, 38, (89,101,0): 19, 15, 38, (89,102,0): 19, 15, 38, (89,103,0): 18, 14, 37, (89,104,0): 17, 13, 36, (89,105,0): 17, 13, 36, (89,106,0): 17, 13, 36, (89,107,0): 17, 13, 36, (89,108,0): 17, 13, 36, (89,109,0): 17, 13, 36, (89,110,0): 17, 13, 36, (89,111,0): 17, 13, 36, (89,112,0): 19, 16, 37, (89,113,0): 19, 16, 37, (89,114,0): 19, 16, 37, (89,115,0): 19, 16, 37, (89,116,0): 18, 15, 36, (89,117,0): 18, 15, 36, (89,118,0): 18, 15, 36, (89,119,0): 18, 15, 36, (89,120,0): 19, 16, 37, (89,121,0): 19, 16, 37, (89,122,0): 19, 16, 37, (89,123,0): 19, 16, 37, (89,124,0): 19, 16, 37, (89,125,0): 19, 16, 37, (89,126,0): 19, 16, 37, (89,127,0): 19, 16, 37, (89,128,0): 20, 17, 38, (89,129,0): 20, 17, 38, (89,130,0): 20, 17, 38, (89,131,0): 21, 18, 39, (89,132,0): 22, 17, 37, (89,133,0): 23, 18, 38, (89,134,0): 25, 17, 38, (89,135,0): 26, 18, 39, (89,136,0): 25, 18, 36, (89,137,0): 25, 18, 36, (89,138,0): 26, 17, 34, (89,139,0): 26, 17, 34, (89,140,0): 29, 18, 35, (89,141,0): 30, 19, 36, (89,142,0): 30, 19, 35, (89,143,0): 31, 20, 36, (89,144,0): 32, 19, 37, (89,145,0): 32, 19, 37, (89,146,0): 32, 19, 37, (89,147,0): 33, 20, 38, (89,148,0): 33, 20, 38, (89,149,0): 34, 21, 39, (89,150,0): 34, 21, 39, (89,151,0): 34, 21, 39, (89,152,0): 36, 23, 41, (89,153,0): 36, 23, 41, (89,154,0): 36, 23, 41, (89,155,0): 36, 23, 41, (89,156,0): 36, 23, 41, (89,157,0): 36, 23, 41, (89,158,0): 36, 23, 41, (89,159,0): 35, 24, 41, (89,160,0): 34, 23, 40, (89,161,0): 32, 23, 40, (89,162,0): 32, 23, 40, (89,163,0): 32, 23, 40, (89,164,0): 32, 23, 40, (89,165,0): 32, 23, 40, (89,166,0): 32, 23, 40, (89,167,0): 32, 23, 40, (89,168,0): 32, 23, 40, (89,169,0): 32, 23, 40, (89,170,0): 32, 23, 40, (89,171,0): 32, 23, 40, (89,172,0): 32, 23, 40, (89,173,0): 32, 23, 40, (89,174,0): 32, 23, 40, (89,175,0): 32, 23, 40, (89,176,0): 29, 22, 40, (89,177,0): 28, 21, 39, (89,178,0): 27, 20, 38, (89,179,0): 27, 20, 38, (89,180,0): 27, 20, 38, (89,181,0): 27, 20, 38, (89,182,0): 28, 21, 39, (89,183,0): 29, 22, 40, (89,184,0): 31, 24, 42, (89,185,0): 31, 24, 42, (89,186,0): 31, 24, 42, (89,187,0): 32, 25, 43, (89,188,0): 32, 25, 43, (89,189,0): 33, 26, 44, (89,190,0): 33, 26, 44, (89,191,0): 33, 26, 44, (89,192,0): 35, 26, 45, (89,193,0): 35, 26, 45, (89,194,0): 37, 25, 45, (89,195,0): 38, 27, 44, (89,196,0): 38, 27, 44, (89,197,0): 39, 28, 45, (89,198,0): 40, 27, 45, (89,199,0): 40, 27, 44, (89,200,0): 43, 29, 46, (89,201,0): 43, 29, 44, (89,202,0): 43, 29, 44, (89,203,0): 43, 29, 44, (89,204,0): 45, 28, 44, (89,205,0): 45, 29, 42, (89,206,0): 45, 29, 42, (89,207,0): 45, 29, 42, (89,208,0): 43, 29, 44, (89,209,0): 43, 29, 44, (89,210,0): 46, 30, 43, (89,211,0): 46, 30, 43, (89,212,0): 47, 31, 44, (89,213,0): 47, 31, 44, (89,214,0): 49, 31, 43, (89,215,0): 49, 31, 43, (89,216,0): 51, 31, 42, (89,217,0): 51, 31, 42, (89,218,0): 51, 31, 42, (89,219,0): 51, 31, 42, (89,220,0): 52, 31, 40, (89,221,0): 52, 31, 40, (89,222,0): 52, 31, 40, (89,223,0): 52, 31, 40, (89,224,0): 53, 30, 38, (89,225,0): 53, 30, 38, (89,226,0): 53, 30, 38, (89,227,0): 53, 30, 38, (89,228,0): 53, 30, 38, (89,229,0): 53, 30, 38, (89,230,0): 53, 30, 38, (89,231,0): 53, 30, 38, (89,232,0): 53, 30, 38, (89,233,0): 53, 30, 38, (89,234,0): 53, 30, 38, (89,235,0): 53, 30, 38, (89,236,0): 53, 30, 38, (89,237,0): 53, 30, 38, (89,238,0): 53, 30, 38, (89,239,0): 55, 30, 36, (89,240,0): 59, 32, 37, (89,241,0): 61, 32, 36, (89,242,0): 61, 32, 36, (89,243,0): 61, 32, 36, (89,244,0): 62, 31, 36, (89,245,0): 62, 31, 36, (89,246,0): 62, 31, 36, (89,247,0): 62, 31, 36, (89,248,0): 64, 32, 37, (89,249,0): 64, 32, 37, (89,250,0): 66, 31, 37, (89,251,0): 67, 32, 38, (89,252,0): 68, 33, 39, (89,253,0): 68, 33, 39, (89,254,0): 70, 33, 40, (89,255,0): 70, 34, 38, (89,256,0): 72, 33, 38, (89,257,0): 72, 33, 36, (89,258,0): 73, 34, 37, (89,259,0): 73, 34, 37, (89,260,0): 74, 35, 38, (89,261,0): 74, 35, 38, (89,262,0): 75, 36, 39, (89,263,0): 75, 36, 39, (89,264,0): 77, 38, 41, (89,265,0): 77, 38, 41, (89,266,0): 77, 38, 41, (89,267,0): 78, 39, 42, (89,268,0): 78, 39, 42, (89,269,0): 79, 40, 43, (89,270,0): 79, 40, 43, (89,271,0): 80, 41, 42, (89,272,0): 81, 41, 42, (89,273,0): 81, 41, 41, (89,274,0): 82, 42, 42, (89,275,0): 83, 43, 43, (89,276,0): 84, 44, 44, (89,277,0): 85, 45, 43, (89,278,0): 86, 46, 44, (89,279,0): 86, 47, 42, (89,280,0): 87, 48, 43, (89,281,0): 88, 49, 44, (89,282,0): 89, 50, 43, (89,283,0): 90, 51, 44, (89,284,0): 92, 53, 46, (89,285,0): 94, 55, 48, (89,286,0): 95, 56, 49, (89,287,0): 95, 57, 48, (89,288,0): 98, 58, 48, (89,289,0): 103, 60, 51, (89,290,0): 106, 63, 54, (89,291,0): 108, 66, 54, (89,292,0): 109, 67, 53, (89,293,0): 112, 71, 53, (89,294,0): 119, 77, 55, (89,295,0): 125, 81, 56, (89,296,0): 130, 83, 53, (89,297,0): 142, 92, 57, (89,298,0): 152, 99, 59, (89,299,0): 159, 102, 57, (89,300,0): 169, 109, 59, (89,301,0): 179, 118, 63, (89,302,0): 183, 121, 64, (89,303,0): 179, 117, 60, (89,304,0): 172, 112, 60, (89,305,0): 161, 108, 58, (89,306,0): 152, 102, 53, (89,307,0): 142, 98, 49, (89,308,0): 137, 99, 52, (89,309,0): 134, 100, 54, (89,310,0): 133, 100, 55, (89,311,0): 131, 98, 53, (89,312,0): 134, 99, 57, (89,313,0): 135, 100, 60, (89,314,0): 135, 100, 58, (89,315,0): 135, 102, 59, (89,316,0): 135, 104, 60, (89,317,0): 133, 105, 58, (89,318,0): 133, 106, 59, (89,319,0): 133, 106, 59, (89,320,0): 133, 104, 60, (89,321,0): 135, 103, 62, (89,322,0): 136, 104, 63, (89,323,0): 136, 104, 63, (89,324,0): 136, 104, 63, (89,325,0): 135, 106, 64, (89,326,0): 135, 106, 64, (89,327,0): 134, 107, 64, (89,328,0): 135, 108, 65, (89,329,0): 137, 110, 67, (89,330,0): 137, 113, 69, (89,331,0): 138, 114, 70, (89,332,0): 140, 116, 72, (89,333,0): 140, 116, 72, (89,334,0): 140, 116, 72, (89,335,0): 140, 116, 72, (89,336,0): 139, 116, 74, (89,337,0): 140, 117, 76, (89,338,0): 141, 118, 77, (89,339,0): 143, 120, 79, (89,340,0): 144, 121, 80, (89,341,0): 146, 123, 82, (89,342,0): 147, 124, 83, (89,343,0): 148, 125, 84, (89,344,0): 149, 126, 85, (89,345,0): 150, 127, 86, (89,346,0): 152, 129, 88, (89,347,0): 153, 130, 89, (89,348,0): 155, 132, 91, (89,349,0): 155, 132, 91, (89,350,0): 154, 131, 90, (89,351,0): 154, 131, 90, (89,352,0): 156, 130, 93, (89,353,0): 156, 130, 93, (89,354,0): 156, 130, 93, (89,355,0): 156, 130, 93, (89,356,0): 158, 130, 93, (89,357,0): 158, 130, 93, (89,358,0): 158, 129, 95, (89,359,0): 158, 129, 95, (89,360,0): 158, 127, 96, (89,361,0): 158, 127, 96, (89,362,0): 159, 125, 97, (89,363,0): 159, 125, 97, (89,364,0): 159, 125, 97, (89,365,0): 160, 126, 98, (89,366,0): 163, 128, 100, (89,367,0): 164, 129, 99, (89,368,0): 162, 129, 96, (89,369,0): 163, 128, 96, (89,370,0): 164, 127, 98, (89,371,0): 166, 126, 100, (89,372,0): 167, 125, 101, (89,373,0): 166, 126, 101, (89,374,0): 166, 125, 103, (89,375,0): 164, 126, 103, (89,376,0): 161, 127, 102, (89,377,0): 159, 128, 100, (89,378,0): 158, 127, 99, (89,379,0): 161, 127, 99, (89,380,0): 164, 129, 99, (89,381,0): 171, 132, 103, (89,382,0): 177, 133, 104, (89,383,0): 184, 133, 102, (89,384,0): 202, 136, 101, (89,385,0): 209, 135, 96, (89,386,0): 212, 137, 97, (89,387,0): 216, 139, 97, (89,388,0): 220, 142, 96, (89,389,0): 225, 143, 95, (89,390,0): 227, 144, 94, (89,391,0): 229, 143, 92, (89,392,0): 234, 147, 93, (89,393,0): 233, 147, 90, (89,394,0): 231, 145, 88, (89,395,0): 230, 144, 87, (89,396,0): 229, 143, 86, (89,397,0): 230, 144, 87, (89,398,0): 230, 145, 88, (89,399,0): 229, 147, 89, (89,400,0): 222, 143, 84, (89,401,0): 221, 145, 85, (89,402,0): 222, 146, 86, (89,403,0): 226, 147, 88, (89,404,0): 229, 150, 91, (89,405,0): 230, 154, 96, (89,406,0): 233, 157, 99, (89,407,0): 233, 158, 100, (89,408,0): 229, 157, 98, (89,409,0): 229, 159, 99, (89,410,0): 227, 161, 101, (89,411,0): 227, 163, 102, (89,412,0): 225, 165, 103, (89,413,0): 221, 166, 102, (89,414,0): 220, 166, 102, (89,415,0): 217, 166, 101, (89,416,0): 218, 169, 103, (89,417,0): 219, 172, 104, (89,418,0): 221, 172, 105, (89,419,0): 216, 169, 101, (89,420,0): 211, 162, 95, (89,421,0): 209, 162, 94, (89,422,0): 214, 167, 99, (89,423,0): 219, 172, 104, (89,424,0): 220, 173, 105, (89,425,0): 222, 175, 107, (89,426,0): 222, 178, 107, (89,427,0): 224, 180, 109, (89,428,0): 225, 181, 110, (89,429,0): 223, 179, 108, (89,430,0): 222, 178, 107, (89,431,0): 219, 177, 105, (89,432,0): 216, 178, 105, (89,433,0): 213, 179, 105, (89,434,0): 212, 178, 104, (89,435,0): 211, 177, 103, (89,436,0): 210, 176, 102, (89,437,0): 209, 177, 100, (89,438,0): 210, 177, 100, (89,439,0): 209, 176, 99, (89,440,0): 212, 174, 99, (89,441,0): 212, 172, 100, (89,442,0): 214, 172, 100, (89,443,0): 216, 172, 101, (89,444,0): 220, 171, 104, (89,445,0): 218, 167, 101, (89,446,0): 215, 161, 97, (89,447,0): 209, 157, 97, (89,448,0): 192, 147, 90, (89,449,0): 182, 141, 87, (89,450,0): 172, 131, 79, (89,451,0): 165, 125, 73, (89,452,0): 162, 122, 71, (89,453,0): 158, 120, 71, (89,454,0): 156, 120, 72, (89,455,0): 152, 118, 72, (89,456,0): 151, 118, 75, (89,457,0): 148, 116, 75, (89,458,0): 143, 114, 74, (89,459,0): 140, 110, 72, (89,460,0): 137, 109, 72, (89,461,0): 136, 110, 73, (89,462,0): 137, 111, 76, (89,463,0): 137, 113, 77, (89,464,0): 133, 111, 74, (89,465,0): 132, 112, 75, (89,466,0): 133, 113, 78, (89,467,0): 133, 113, 78, (89,468,0): 135, 112, 78, (89,469,0): 134, 111, 77, (89,470,0): 133, 110, 78, (89,471,0): 132, 109, 77, (89,472,0): 129, 104, 74, (89,473,0): 129, 104, 74, (89,474,0): 129, 102, 73, (89,475,0): 128, 101, 72, (89,476,0): 127, 100, 73, (89,477,0): 125, 98, 71, (89,478,0): 126, 96, 70, (89,479,0): 125, 95, 69, (89,480,0): 123, 96, 69, (89,481,0): 123, 96, 69, (89,482,0): 123, 93, 67, (89,483,0): 123, 93, 67, (89,484,0): 123, 93, 67, (89,485,0): 124, 94, 68, (89,486,0): 127, 95, 70, (89,487,0): 128, 96, 71, (89,488,0): 131, 97, 72, (89,489,0): 134, 100, 75, (89,490,0): 138, 104, 79, (89,491,0): 142, 108, 83, (89,492,0): 146, 110, 86, (89,493,0): 146, 110, 86, (89,494,0): 144, 108, 84, (89,495,0): 142, 108, 83, (89,496,0): 140, 110, 86, (89,497,0): 135, 109, 86, (89,498,0): 130, 104, 81, (89,499,0): 124, 98, 75, (89,500,0): 119, 92, 71, (89,501,0): 113, 88, 66, (89,502,0): 110, 85, 65, (89,503,0): 108, 82, 65, (89,504,0): 102, 79, 61, (89,505,0): 101, 78, 62, (89,506,0): 98, 75, 61, (89,507,0): 95, 73, 60, (89,508,0): 94, 72, 59, (89,509,0): 94, 72, 61, (89,510,0): 92, 72, 61, (89,511,0): 93, 73, 62, (89,512,0): 91, 72, 58, (89,513,0): 91, 72, 58, (89,514,0): 91, 72, 58, (89,515,0): 92, 73, 59, (89,516,0): 92, 73, 59, (89,517,0): 92, 73, 59, (89,518,0): 92, 73, 59, (89,519,0): 92, 73, 59, (89,520,0): 90, 71, 57, (89,521,0): 90, 71, 57, (89,522,0): 91, 72, 58, (89,523,0): 91, 72, 58, (89,524,0): 93, 74, 60, (89,525,0): 94, 75, 61, (89,526,0): 95, 76, 62, (89,527,0): 95, 77, 63, (89,528,0): 95, 79, 66, (89,529,0): 95, 81, 68, (89,530,0): 97, 84, 68, (89,531,0): 98, 85, 69, (89,532,0): 101, 85, 70, (89,533,0): 102, 86, 71, (89,534,0): 103, 84, 69, (89,535,0): 103, 84, 69, (89,536,0): 104, 83, 66, (89,537,0): 104, 83, 66, (89,538,0): 107, 81, 66, (89,539,0): 108, 82, 67, (89,540,0): 110, 83, 66, (89,541,0): 110, 83, 66, (89,542,0): 111, 84, 67, (89,543,0): 111, 84, 67, (89,544,0): 109, 80, 62, (89,545,0): 108, 80, 59, (89,546,0): 106, 77, 59, (89,547,0): 105, 76, 58, (89,548,0): 104, 77, 58, (89,549,0): 107, 80, 61, (89,550,0): 110, 83, 66, (89,551,0): 111, 85, 68, (89,552,0): 108, 82, 67, (89,553,0): 106, 83, 67, (89,554,0): 106, 83, 67, (89,555,0): 106, 83, 67, (89,556,0): 106, 83, 69, (89,557,0): 106, 83, 69, (89,558,0): 105, 83, 69, (89,559,0): 105, 83, 69, (89,560,0): 105, 86, 72, (89,561,0): 105, 86, 72, (89,562,0): 104, 85, 71, (89,563,0): 102, 83, 69, (89,564,0): 100, 80, 69, (89,565,0): 99, 79, 68, (89,566,0): 98, 78, 67, (89,567,0): 97, 77, 66, (89,568,0): 97, 77, 68, (89,569,0): 97, 77, 68, (89,570,0): 97, 77, 70, (89,571,0): 96, 76, 69, (89,572,0): 94, 74, 67, (89,573,0): 92, 72, 65, (89,574,0): 89, 68, 63, (89,575,0): 88, 67, 62, (89,576,0): 88, 64, 62, (89,577,0): 87, 63, 61, (89,578,0): 82, 61, 58, (89,579,0): 80, 59, 56, (89,580,0): 76, 55, 54, (89,581,0): 73, 52, 51, (89,582,0): 70, 50, 49, (89,583,0): 69, 49, 48, (89,584,0): 65, 47, 47, (89,585,0): 64, 46, 46, (89,586,0): 63, 44, 46, (89,587,0): 61, 42, 44, (89,588,0): 56, 40, 41, (89,589,0): 54, 38, 39, (89,590,0): 53, 37, 40, (89,591,0): 52, 35, 41, (89,592,0): 52, 35, 43, (89,593,0): 52, 35, 45, (89,594,0): 52, 35, 43, (89,595,0): 52, 35, 41, (89,596,0): 52, 35, 41, (89,597,0): 52, 36, 39, (89,598,0): 52, 36, 37, (89,599,0): 52, 36, 37, (90,0,0): 26, 24, 38, (90,1,0): 26, 24, 38, (90,2,0): 27, 25, 39, (90,3,0): 27, 25, 39, (90,4,0): 29, 25, 40, (90,5,0): 29, 25, 40, (90,6,0): 30, 26, 41, (90,7,0): 30, 26, 41, (90,8,0): 31, 24, 40, (90,9,0): 31, 24, 40, (90,10,0): 33, 24, 41, (90,11,0): 34, 25, 42, (90,12,0): 35, 26, 43, (90,13,0): 36, 27, 44, (90,14,0): 39, 28, 45, (90,15,0): 39, 28, 44, (90,16,0): 37, 29, 44, (90,17,0): 37, 29, 42, (90,18,0): 37, 29, 42, (90,19,0): 38, 30, 43, (90,20,0): 40, 30, 41, (90,21,0): 42, 30, 42, (90,22,0): 43, 29, 42, (90,23,0): 44, 30, 43, (90,24,0): 48, 32, 43, (90,25,0): 49, 33, 44, (90,26,0): 51, 34, 44, (90,27,0): 54, 34, 45, (90,28,0): 56, 34, 46, (90,29,0): 57, 35, 47, (90,30,0): 58, 37, 46, (90,31,0): 58, 37, 44, (90,32,0): 59, 36, 44, (90,33,0): 61, 36, 42, (90,34,0): 61, 36, 42, (90,35,0): 62, 37, 43, (90,36,0): 62, 37, 43, (90,37,0): 62, 37, 43, (90,38,0): 62, 36, 45, (90,39,0): 63, 37, 46, (90,40,0): 59, 33, 44, (90,41,0): 59, 33, 44, (90,42,0): 59, 33, 46, (90,43,0): 59, 33, 46, (90,44,0): 59, 33, 46, (90,45,0): 59, 33, 46, (90,46,0): 59, 33, 46, (90,47,0): 57, 33, 47, (90,48,0): 60, 36, 50, (90,49,0): 57, 34, 50, (90,50,0): 55, 32, 48, (90,51,0): 53, 30, 46, (90,52,0): 50, 29, 46, (90,53,0): 50, 29, 46, (90,54,0): 50, 29, 48, (90,55,0): 50, 29, 48, (90,56,0): 47, 28, 47, (90,57,0): 46, 27, 46, (90,58,0): 44, 27, 46, (90,59,0): 43, 26, 45, (90,60,0): 42, 24, 46, (90,61,0): 42, 24, 46, (90,62,0): 41, 26, 47, (90,63,0): 40, 27, 47, (90,64,0): 34, 22, 44, (90,65,0): 32, 23, 44, (90,66,0): 33, 24, 45, (90,67,0): 33, 24, 45, (90,68,0): 32, 23, 44, (90,69,0): 31, 22, 43, (90,70,0): 30, 21, 42, (90,71,0): 29, 20, 41, (90,72,0): 34, 25, 46, (90,73,0): 34, 25, 46, (90,74,0): 33, 24, 45, (90,75,0): 32, 23, 44, (90,76,0): 31, 22, 43, (90,77,0): 30, 21, 42, (90,78,0): 29, 20, 41, (90,79,0): 29, 20, 41, (90,80,0): 30, 18, 38, (90,81,0): 30, 18, 38, (90,82,0): 28, 19, 38, (90,83,0): 27, 18, 37, (90,84,0): 27, 18, 39, (90,85,0): 26, 17, 38, (90,86,0): 25, 17, 38, (90,87,0): 25, 17, 38, (90,88,0): 25, 20, 42, (90,89,0): 24, 19, 41, (90,90,0): 23, 18, 41, (90,91,0): 21, 16, 39, (90,92,0): 20, 16, 39, (90,93,0): 20, 16, 39, (90,94,0): 21, 17, 42, (90,95,0): 21, 17, 42, (90,96,0): 21, 17, 40, (90,97,0): 20, 16, 39, (90,98,0): 20, 16, 39, (90,99,0): 20, 16, 39, (90,100,0): 19, 15, 38, (90,101,0): 18, 14, 37, (90,102,0): 18, 14, 37, (90,103,0): 18, 14, 37, (90,104,0): 19, 15, 38, (90,105,0): 18, 14, 37, (90,106,0): 16, 12, 35, (90,107,0): 15, 11, 34, (90,108,0): 15, 11, 34, (90,109,0): 16, 12, 35, (90,110,0): 18, 14, 37, (90,111,0): 19, 15, 38, (90,112,0): 18, 15, 36, (90,113,0): 18, 15, 36, (90,114,0): 18, 15, 36, (90,115,0): 18, 15, 36, (90,116,0): 19, 16, 37, (90,117,0): 19, 16, 37, (90,118,0): 19, 16, 37, (90,119,0): 19, 16, 37, (90,120,0): 19, 16, 37, (90,121,0): 19, 16, 37, (90,122,0): 19, 16, 37, (90,123,0): 19, 16, 37, (90,124,0): 19, 16, 37, (90,125,0): 19, 16, 37, (90,126,0): 19, 16, 37, (90,127,0): 19, 16, 37, (90,128,0): 20, 15, 37, (90,129,0): 21, 16, 38, (90,130,0): 21, 16, 38, (90,131,0): 22, 17, 39, (90,132,0): 24, 16, 37, (90,133,0): 25, 17, 38, (90,134,0): 25, 17, 38, (90,135,0): 25, 17, 38, (90,136,0): 28, 19, 38, (90,137,0): 27, 18, 37, (90,138,0): 27, 16, 33, (90,139,0): 26, 15, 32, (90,140,0): 27, 16, 33, (90,141,0): 29, 18, 35, (90,142,0): 32, 19, 36, (90,143,0): 34, 21, 38, (90,144,0): 32, 19, 37, (90,145,0): 32, 19, 37, (90,146,0): 32, 19, 37, (90,147,0): 33, 20, 38, (90,148,0): 33, 20, 38, (90,149,0): 34, 21, 39, (90,150,0): 34, 21, 39, (90,151,0): 34, 21, 39, (90,152,0): 35, 22, 40, (90,153,0): 35, 22, 40, (90,154,0): 35, 22, 40, (90,155,0): 35, 22, 40, (90,156,0): 35, 22, 40, (90,157,0): 35, 22, 40, (90,158,0): 35, 22, 40, (90,159,0): 34, 23, 40, (90,160,0): 34, 23, 40, (90,161,0): 32, 23, 40, (90,162,0): 32, 23, 40, (90,163,0): 32, 23, 40, (90,164,0): 32, 23, 40, (90,165,0): 32, 23, 40, (90,166,0): 32, 23, 40, (90,167,0): 32, 23, 40, (90,168,0): 32, 23, 40, (90,169,0): 32, 23, 40, (90,170,0): 32, 23, 40, (90,171,0): 32, 23, 40, (90,172,0): 32, 23, 40, (90,173,0): 32, 23, 40, (90,174,0): 32, 23, 40, (90,175,0): 32, 23, 40, (90,176,0): 30, 23, 39, (90,177,0): 29, 22, 38, (90,178,0): 28, 21, 37, (90,179,0): 27, 20, 36, (90,180,0): 27, 20, 36, (90,181,0): 28, 21, 37, (90,182,0): 29, 22, 38, (90,183,0): 30, 23, 39, (90,184,0): 31, 24, 40, (90,185,0): 31, 24, 40, (90,186,0): 31, 24, 40, (90,187,0): 32, 25, 41, (90,188,0): 32, 25, 41, (90,189,0): 33, 26, 42, (90,190,0): 33, 26, 42, (90,191,0): 33, 26, 42, (90,192,0): 35, 26, 43, (90,193,0): 37, 26, 43, (90,194,0): 37, 26, 43, (90,195,0): 38, 27, 44, (90,196,0): 39, 26, 44, (90,197,0): 40, 27, 44, (90,198,0): 41, 27, 44, (90,199,0): 41, 27, 44, (90,200,0): 43, 29, 46, (90,201,0): 43, 29, 44, (90,202,0): 45, 28, 44, (90,203,0): 45, 29, 42, (90,204,0): 46, 28, 42, (90,205,0): 46, 28, 42, (90,206,0): 46, 28, 42, (90,207,0): 45, 29, 40, (90,208,0): 43, 29, 42, (90,209,0): 43, 29, 42, (90,210,0): 46, 30, 43, (90,211,0): 46, 30, 43, (90,212,0): 47, 31, 42, (90,213,0): 47, 31, 42, (90,214,0): 49, 31, 43, (90,215,0): 49, 31, 43, (90,216,0): 51, 31, 42, (90,217,0): 51, 31, 42, (90,218,0): 51, 31, 40, (90,219,0): 51, 31, 40, (90,220,0): 52, 31, 40, (90,221,0): 52, 31, 40, (90,222,0): 52, 31, 38, (90,223,0): 52, 31, 38, (90,224,0): 53, 30, 38, (90,225,0): 53, 30, 38, (90,226,0): 53, 30, 38, (90,227,0): 53, 30, 38, (90,228,0): 53, 30, 38, (90,229,0): 53, 30, 38, (90,230,0): 53, 30, 38, (90,231,0): 53, 30, 38, (90,232,0): 53, 30, 38, (90,233,0): 53, 30, 38, (90,234,0): 53, 30, 38, (90,235,0): 53, 30, 38, (90,236,0): 53, 30, 38, (90,237,0): 53, 30, 38, (90,238,0): 53, 30, 38, (90,239,0): 55, 30, 36, (90,240,0): 59, 32, 37, (90,241,0): 59, 33, 36, (90,242,0): 61, 32, 36, (90,243,0): 61, 32, 36, (90,244,0): 61, 32, 36, (90,245,0): 61, 32, 36, (90,246,0): 62, 31, 36, (90,247,0): 62, 31, 36, (90,248,0): 63, 31, 36, (90,249,0): 64, 32, 37, (90,250,0): 64, 32, 37, (90,251,0): 64, 32, 37, (90,252,0): 67, 32, 38, (90,253,0): 67, 32, 38, (90,254,0): 68, 33, 39, (90,255,0): 68, 33, 37, (90,256,0): 69, 33, 37, (90,257,0): 69, 33, 35, (90,258,0): 70, 34, 36, (90,259,0): 70, 34, 36, (90,260,0): 71, 35, 37, (90,261,0): 71, 35, 37, (90,262,0): 72, 36, 38, (90,263,0): 72, 36, 38, (90,264,0): 74, 38, 40, (90,265,0): 75, 39, 41, (90,266,0): 75, 39, 41, (90,267,0): 76, 40, 42, (90,268,0): 76, 40, 42, (90,269,0): 77, 41, 43, (90,270,0): 77, 41, 43, (90,271,0): 79, 40, 41, (90,272,0): 81, 41, 42, (90,273,0): 81, 41, 41, (90,274,0): 82, 42, 40, (90,275,0): 83, 43, 41, (90,276,0): 84, 44, 42, (90,277,0): 85, 45, 43, (90,278,0): 86, 46, 44, (90,279,0): 86, 47, 42, (90,280,0): 87, 48, 43, (90,281,0): 87, 48, 41, (90,282,0): 88, 49, 42, (90,283,0): 90, 51, 44, (90,284,0): 92, 54, 45, (90,285,0): 93, 55, 46, (90,286,0): 94, 56, 47, (90,287,0): 95, 57, 48, (90,288,0): 100, 60, 50, (90,289,0): 103, 63, 53, (90,290,0): 105, 65, 53, (90,291,0): 107, 67, 55, (90,292,0): 107, 68, 53, (90,293,0): 112, 71, 53, (90,294,0): 118, 76, 54, (90,295,0): 124, 80, 55, (90,296,0): 129, 82, 52, (90,297,0): 139, 91, 55, (90,298,0): 150, 98, 58, (90,299,0): 156, 102, 56, (90,300,0): 166, 108, 60, (90,301,0): 179, 118, 64, (90,302,0): 183, 120, 66, (90,303,0): 179, 118, 63, (90,304,0): 170, 112, 62, (90,305,0): 161, 107, 60, (90,306,0): 152, 102, 53, (90,307,0): 142, 98, 49, (90,308,0): 137, 99, 52, (90,309,0): 134, 100, 54, (90,310,0): 132, 99, 54, (90,311,0): 130, 99, 53, (90,312,0): 132, 99, 56, (90,313,0): 133, 100, 57, (90,314,0): 134, 101, 58, (90,315,0): 135, 102, 59, (90,316,0): 135, 104, 58, (90,317,0): 135, 107, 59, (90,318,0): 135, 109, 60, (90,319,0): 135, 108, 61, (90,320,0): 135, 106, 62, (90,321,0): 138, 107, 63, (90,322,0): 136, 107, 63, (90,323,0): 137, 108, 64, (90,324,0): 137, 108, 64, (90,325,0): 138, 109, 65, (90,326,0): 138, 109, 65, (90,327,0): 137, 110, 65, (90,328,0): 137, 110, 65, (90,329,0): 137, 113, 67, (90,330,0): 138, 114, 68, (90,331,0): 140, 116, 70, (90,332,0): 140, 118, 71, (90,333,0): 140, 118, 71, (90,334,0): 140, 118, 71, (90,335,0): 140, 117, 73, (90,336,0): 140, 117, 75, (90,337,0): 141, 118, 77, (90,338,0): 142, 119, 78, (90,339,0): 144, 121, 80, (90,340,0): 145, 122, 81, (90,341,0): 147, 124, 83, (90,342,0): 148, 125, 84, (90,343,0): 149, 126, 85, (90,344,0): 149, 126, 85, (90,345,0): 151, 128, 87, (90,346,0): 152, 129, 88, (90,347,0): 154, 131, 90, (90,348,0): 155, 132, 91, (90,349,0): 156, 133, 92, (90,350,0): 155, 132, 91, (90,351,0): 155, 132, 91, (90,352,0): 159, 134, 94, (90,353,0): 159, 134, 94, (90,354,0): 159, 134, 94, (90,355,0): 159, 134, 94, (90,356,0): 161, 133, 96, (90,357,0): 161, 133, 96, (90,358,0): 161, 133, 96, (90,359,0): 161, 133, 96, (90,360,0): 161, 131, 97, (90,361,0): 160, 130, 96, (90,362,0): 161, 128, 97, (90,363,0): 160, 127, 96, (90,364,0): 159, 126, 95, (90,365,0): 160, 127, 96, (90,366,0): 162, 127, 99, (90,367,0): 162, 127, 99, (90,368,0): 161, 128, 97, (90,369,0): 162, 127, 99, (90,370,0): 163, 126, 99, (90,371,0): 163, 126, 100, (90,372,0): 165, 125, 100, (90,373,0): 165, 124, 102, (90,374,0): 165, 124, 102, (90,375,0): 163, 125, 102, (90,376,0): 162, 128, 101, (90,377,0): 162, 128, 101, (90,378,0): 161, 127, 99, (90,379,0): 164, 129, 99, (90,380,0): 169, 130, 99, (90,381,0): 177, 134, 102, (90,382,0): 183, 137, 104, (90,383,0): 193, 137, 104, (90,384,0): 215, 146, 107, (90,385,0): 221, 144, 102, (90,386,0): 223, 144, 101, (90,387,0): 226, 145, 100, (90,388,0): 230, 148, 100, (90,389,0): 236, 150, 101, (90,390,0): 239, 151, 101, (90,391,0): 243, 153, 100, (90,392,0): 236, 147, 91, (90,393,0): 236, 147, 89, (90,394,0): 234, 145, 87, (90,395,0): 233, 144, 86, (90,396,0): 230, 144, 87, (90,397,0): 230, 144, 87, (90,398,0): 230, 145, 90, (90,399,0): 228, 146, 88, (90,400,0): 222, 146, 84, (90,401,0): 222, 148, 85, (90,402,0): 224, 150, 87, (90,403,0): 228, 152, 90, (90,404,0): 231, 155, 93, (90,405,0): 233, 157, 97, (90,406,0): 235, 159, 99, (90,407,0): 235, 161, 100, (90,408,0): 228, 158, 96, (90,409,0): 229, 161, 98, (90,410,0): 227, 163, 101, (90,411,0): 227, 166, 103, (90,412,0): 226, 168, 105, (90,413,0): 224, 169, 105, (90,414,0): 222, 168, 104, (90,415,0): 220, 169, 104, (90,416,0): 219, 171, 105, (90,417,0): 218, 173, 106, (90,418,0): 220, 172, 106, (90,419,0): 214, 169, 102, (90,420,0): 210, 162, 96, (90,421,0): 207, 162, 95, (90,422,0): 211, 166, 98, (90,423,0): 216, 171, 103, (90,424,0): 217, 173, 102, (90,425,0): 219, 175, 104, (90,426,0): 221, 177, 106, (90,427,0): 223, 179, 108, (90,428,0): 224, 180, 107, (90,429,0): 223, 179, 106, (90,430,0): 221, 177, 104, (90,431,0): 219, 177, 103, (90,432,0): 218, 180, 107, (90,433,0): 217, 181, 107, (90,434,0): 217, 181, 105, (90,435,0): 214, 181, 104, (90,436,0): 214, 181, 104, (90,437,0): 213, 180, 101, (90,438,0): 213, 180, 101, (90,439,0): 212, 179, 100, (90,440,0): 215, 178, 100, (90,441,0): 213, 174, 99, (90,442,0): 213, 171, 99, (90,443,0): 213, 169, 98, (90,444,0): 214, 165, 98, (90,445,0): 211, 160, 95, (90,446,0): 205, 154, 91, (90,447,0): 199, 149, 88, (90,448,0): 180, 138, 80, (90,449,0): 172, 133, 76, (90,450,0): 166, 127, 72, (90,451,0): 160, 123, 70, (90,452,0): 160, 123, 70, (90,453,0): 159, 123, 71, (90,454,0): 159, 123, 73, (90,455,0): 156, 122, 74, (90,456,0): 157, 124, 79, (90,457,0): 153, 122, 78, (90,458,0): 147, 118, 76, (90,459,0): 143, 114, 74, (90,460,0): 139, 111, 71, (90,461,0): 138, 110, 71, (90,462,0): 137, 111, 74, (90,463,0): 136, 112, 74, (90,464,0): 134, 112, 73, (90,465,0): 132, 113, 73, (90,466,0): 133, 113, 76, (90,467,0): 134, 114, 77, (90,468,0): 136, 114, 77, (90,469,0): 136, 114, 77, (90,470,0): 135, 112, 78, (90,471,0): 134, 111, 77, (90,472,0): 130, 105, 74, (90,473,0): 129, 104, 73, (90,474,0): 130, 103, 73, (90,475,0): 129, 102, 72, (90,476,0): 127, 100, 71, (90,477,0): 127, 100, 71, (90,478,0): 128, 98, 70, (90,479,0): 128, 98, 70, (90,480,0): 129, 99, 71, (90,481,0): 128, 98, 70, (90,482,0): 127, 97, 69, (90,483,0): 127, 97, 69, (90,484,0): 127, 96, 68, (90,485,0): 128, 97, 69, (90,486,0): 131, 97, 70, (90,487,0): 131, 97, 70, (90,488,0): 132, 98, 71, (90,489,0): 134, 100, 73, (90,490,0): 139, 103, 77, (90,491,0): 143, 107, 81, (90,492,0): 147, 110, 84, (90,493,0): 149, 112, 86, (90,494,0): 150, 113, 87, (90,495,0): 149, 115, 90, (90,496,0): 145, 115, 89, (90,497,0): 139, 111, 87, (90,498,0): 133, 105, 81, (90,499,0): 124, 98, 73, (90,500,0): 117, 91, 68, (90,501,0): 112, 85, 64, (90,502,0): 108, 83, 61, (90,503,0): 106, 81, 61, (90,504,0): 104, 78, 61, (90,505,0): 100, 77, 61, (90,506,0): 98, 75, 59, (90,507,0): 95, 72, 58, (90,508,0): 92, 70, 56, (90,509,0): 91, 69, 56, (90,510,0): 91, 69, 56, (90,511,0): 91, 69, 56, (90,512,0): 89, 70, 56, (90,513,0): 90, 71, 57, (90,514,0): 90, 71, 57, (90,515,0): 91, 72, 58, (90,516,0): 92, 73, 59, (90,517,0): 93, 74, 60, (90,518,0): 93, 74, 60, (90,519,0): 94, 75, 61, (90,520,0): 93, 74, 60, (90,521,0): 94, 75, 61, (90,522,0): 95, 76, 62, (90,523,0): 96, 77, 63, (90,524,0): 97, 78, 64, (90,525,0): 98, 79, 65, (90,526,0): 98, 79, 65, (90,527,0): 97, 79, 65, (90,528,0): 94, 78, 65, (90,529,0): 94, 80, 67, (90,530,0): 95, 82, 66, (90,531,0): 97, 84, 68, (90,532,0): 100, 84, 69, (90,533,0): 101, 85, 70, (90,534,0): 102, 83, 68, (90,535,0): 102, 83, 68, (90,536,0): 103, 82, 65, (90,537,0): 104, 83, 66, (90,538,0): 107, 81, 66, (90,539,0): 107, 81, 66, (90,540,0): 109, 82, 65, (90,541,0): 109, 82, 65, (90,542,0): 110, 83, 66, (90,543,0): 110, 83, 66, (90,544,0): 108, 81, 62, (90,545,0): 107, 80, 61, (90,546,0): 105, 78, 59, (90,547,0): 104, 77, 58, (90,548,0): 105, 78, 61, (90,549,0): 107, 80, 63, (90,550,0): 108, 82, 67, (90,551,0): 110, 84, 69, (90,552,0): 108, 82, 67, (90,553,0): 106, 83, 67, (90,554,0): 106, 83, 69, (90,555,0): 105, 83, 69, (90,556,0): 105, 83, 70, (90,557,0): 105, 83, 70, (90,558,0): 105, 83, 70, (90,559,0): 105, 83, 70, (90,560,0): 106, 87, 73, (90,561,0): 105, 86, 72, (90,562,0): 104, 85, 71, (90,563,0): 102, 83, 69, (90,564,0): 101, 81, 70, (90,565,0): 99, 79, 68, (90,566,0): 98, 78, 67, (90,567,0): 97, 77, 66, (90,568,0): 97, 77, 68, (90,569,0): 96, 76, 67, (90,570,0): 94, 74, 67, (90,571,0): 92, 72, 65, (90,572,0): 90, 70, 63, (90,573,0): 89, 69, 62, (90,574,0): 89, 68, 63, (90,575,0): 89, 68, 63, (90,576,0): 90, 66, 64, (90,577,0): 89, 65, 63, (90,578,0): 84, 63, 60, (90,579,0): 81, 60, 57, (90,580,0): 77, 56, 55, (90,581,0): 74, 53, 52, (90,582,0): 70, 50, 49, (90,583,0): 69, 49, 48, (90,584,0): 66, 48, 48, (90,585,0): 65, 47, 47, (90,586,0): 64, 45, 47, (90,587,0): 62, 43, 45, (90,588,0): 58, 42, 43, (90,589,0): 56, 40, 41, (90,590,0): 54, 38, 41, (90,591,0): 53, 36, 42, (90,592,0): 51, 36, 43, (90,593,0): 51, 35, 45, (90,594,0): 51, 36, 43, (90,595,0): 51, 36, 41, (90,596,0): 51, 36, 41, (90,597,0): 51, 36, 39, (90,598,0): 51, 37, 37, (90,599,0): 51, 37, 37, (91,0,0): 26, 24, 38, (91,1,0): 26, 24, 38, (91,2,0): 27, 25, 39, (91,3,0): 27, 25, 39, (91,4,0): 29, 25, 40, (91,5,0): 29, 25, 40, (91,6,0): 30, 26, 41, (91,7,0): 30, 26, 41, (91,8,0): 31, 24, 40, (91,9,0): 31, 24, 40, (91,10,0): 33, 24, 41, (91,11,0): 34, 25, 42, (91,12,0): 35, 26, 43, (91,13,0): 36, 27, 44, (91,14,0): 39, 28, 45, (91,15,0): 39, 28, 44, (91,16,0): 37, 29, 44, (91,17,0): 38, 30, 43, (91,18,0): 38, 30, 43, (91,19,0): 38, 30, 43, (91,20,0): 41, 31, 42, (91,21,0): 42, 32, 43, (91,22,0): 44, 30, 43, (91,23,0): 44, 30, 43, (91,24,0): 48, 32, 43, (91,25,0): 49, 33, 44, (91,26,0): 52, 32, 43, (91,27,0): 53, 33, 44, (91,28,0): 55, 33, 45, (91,29,0): 56, 34, 46, (91,30,0): 57, 36, 45, (91,31,0): 59, 36, 44, (91,32,0): 60, 35, 41, (91,33,0): 60, 35, 41, (91,34,0): 61, 36, 42, (91,35,0): 62, 37, 43, (91,36,0): 63, 38, 44, (91,37,0): 63, 38, 44, (91,38,0): 64, 38, 47, (91,39,0): 64, 38, 47, (91,40,0): 62, 36, 47, (91,41,0): 62, 36, 47, (91,42,0): 62, 36, 49, (91,43,0): 61, 35, 48, (91,44,0): 61, 35, 48, (91,45,0): 61, 35, 48, (91,46,0): 60, 34, 47, (91,47,0): 60, 33, 48, (91,48,0): 58, 34, 50, (91,49,0): 56, 33, 49, (91,50,0): 54, 31, 47, (91,51,0): 52, 29, 45, (91,52,0): 50, 29, 46, (91,53,0): 49, 28, 45, (91,54,0): 49, 28, 47, (91,55,0): 50, 29, 48, (91,56,0): 46, 27, 46, (91,57,0): 45, 26, 45, (91,58,0): 43, 26, 45, (91,59,0): 42, 25, 44, (91,60,0): 41, 23, 45, (91,61,0): 41, 23, 45, (91,62,0): 40, 25, 46, (91,63,0): 39, 26, 46, (91,64,0): 33, 21, 43, (91,65,0): 32, 23, 44, (91,66,0): 34, 25, 46, (91,67,0): 35, 26, 47, (91,68,0): 34, 25, 46, (91,69,0): 32, 23, 44, (91,70,0): 30, 21, 42, (91,71,0): 29, 20, 41, (91,72,0): 32, 23, 44, (91,73,0): 32, 23, 44, (91,74,0): 32, 23, 44, (91,75,0): 31, 22, 43, (91,76,0): 30, 21, 42, (91,77,0): 30, 21, 42, (91,78,0): 29, 20, 41, (91,79,0): 29, 20, 41, (91,80,0): 29, 17, 37, (91,81,0): 29, 17, 37, (91,82,0): 27, 18, 37, (91,83,0): 27, 18, 37, (91,84,0): 27, 18, 39, (91,85,0): 27, 18, 39, (91,86,0): 26, 18, 39, (91,87,0): 26, 18, 39, (91,88,0): 25, 20, 42, (91,89,0): 24, 19, 41, (91,90,0): 23, 18, 41, (91,91,0): 21, 16, 39, (91,92,0): 20, 16, 39, (91,93,0): 20, 16, 39, (91,94,0): 21, 17, 42, (91,95,0): 21, 17, 42, (91,96,0): 20, 16, 39, (91,97,0): 20, 16, 39, (91,98,0): 20, 16, 39, (91,99,0): 19, 15, 38, (91,100,0): 19, 15, 38, (91,101,0): 18, 14, 37, (91,102,0): 18, 14, 37, (91,103,0): 17, 13, 36, (91,104,0): 20, 16, 39, (91,105,0): 18, 14, 37, (91,106,0): 16, 12, 35, (91,107,0): 14, 10, 33, (91,108,0): 14, 10, 33, (91,109,0): 16, 12, 35, (91,110,0): 18, 14, 37, (91,111,0): 20, 16, 39, (91,112,0): 16, 13, 34, (91,113,0): 17, 14, 35, (91,114,0): 17, 14, 35, (91,115,0): 18, 15, 36, (91,116,0): 19, 16, 37, (91,117,0): 20, 17, 38, (91,118,0): 20, 17, 38, (91,119,0): 21, 18, 39, (91,120,0): 19, 16, 37, (91,121,0): 19, 16, 37, (91,122,0): 19, 16, 37, (91,123,0): 19, 16, 37, (91,124,0): 19, 16, 37, (91,125,0): 19, 16, 37, (91,126,0): 19, 16, 37, (91,127,0): 19, 16, 37, (91,128,0): 20, 15, 37, (91,129,0): 20, 15, 37, (91,130,0): 20, 15, 37, (91,131,0): 21, 16, 38, (91,132,0): 24, 16, 37, (91,133,0): 24, 16, 37, (91,134,0): 24, 16, 37, (91,135,0): 25, 17, 38, (91,136,0): 27, 18, 37, (91,137,0): 26, 17, 36, (91,138,0): 28, 17, 34, (91,139,0): 27, 16, 33, (91,140,0): 28, 17, 34, (91,141,0): 29, 18, 35, (91,142,0): 32, 19, 36, (91,143,0): 33, 20, 37, (91,144,0): 32, 19, 37, (91,145,0): 32, 19, 37, (91,146,0): 32, 19, 37, (91,147,0): 33, 20, 38, (91,148,0): 33, 20, 38, (91,149,0): 34, 21, 39, (91,150,0): 34, 21, 39, (91,151,0): 34, 21, 39, (91,152,0): 35, 22, 40, (91,153,0): 35, 22, 40, (91,154,0): 35, 22, 40, (91,155,0): 35, 22, 40, (91,156,0): 35, 22, 40, (91,157,0): 35, 22, 40, (91,158,0): 35, 22, 40, (91,159,0): 34, 23, 40, (91,160,0): 34, 23, 40, (91,161,0): 32, 23, 40, (91,162,0): 32, 23, 40, (91,163,0): 32, 23, 40, (91,164,0): 32, 23, 40, (91,165,0): 32, 23, 40, (91,166,0): 32, 23, 40, (91,167,0): 32, 23, 40, (91,168,0): 32, 23, 40, (91,169,0): 32, 23, 40, (91,170,0): 32, 23, 40, (91,171,0): 32, 23, 40, (91,172,0): 32, 23, 40, (91,173,0): 32, 23, 40, (91,174,0): 32, 23, 40, (91,175,0): 32, 23, 40, (91,176,0): 30, 23, 39, (91,177,0): 29, 22, 38, (91,178,0): 28, 21, 37, (91,179,0): 27, 20, 36, (91,180,0): 27, 20, 36, (91,181,0): 28, 21, 37, (91,182,0): 29, 22, 38, (91,183,0): 30, 23, 39, (91,184,0): 31, 24, 40, (91,185,0): 31, 24, 40, (91,186,0): 31, 24, 40, (91,187,0): 32, 25, 41, (91,188,0): 32, 25, 41, (91,189,0): 33, 26, 42, (91,190,0): 33, 26, 42, (91,191,0): 34, 25, 42, (91,192,0): 37, 26, 43, (91,193,0): 37, 26, 43, (91,194,0): 37, 26, 43, (91,195,0): 38, 27, 44, (91,196,0): 39, 26, 43, (91,197,0): 40, 27, 44, (91,198,0): 41, 27, 44, (91,199,0): 41, 27, 42, (91,200,0): 43, 29, 44, (91,201,0): 43, 29, 44, (91,202,0): 45, 29, 42, (91,203,0): 45, 29, 42, (91,204,0): 46, 28, 42, (91,205,0): 46, 28, 42, (91,206,0): 46, 28, 40, (91,207,0): 45, 29, 40, (91,208,0): 45, 29, 42, (91,209,0): 43, 29, 42, (91,210,0): 46, 30, 43, (91,211,0): 46, 30, 43, (91,212,0): 47, 31, 42, (91,213,0): 47, 31, 42, (91,214,0): 49, 31, 43, (91,215,0): 49, 32, 42, (91,216,0): 51, 31, 42, (91,217,0): 51, 31, 42, (91,218,0): 51, 31, 40, (91,219,0): 51, 31, 40, (91,220,0): 52, 31, 40, (91,221,0): 52, 31, 40, (91,222,0): 52, 31, 38, (91,223,0): 52, 31, 38, (91,224,0): 53, 30, 38, (91,225,0): 53, 30, 38, (91,226,0): 53, 30, 38, (91,227,0): 53, 30, 38, (91,228,0): 53, 30, 38, (91,229,0): 53, 30, 38, (91,230,0): 53, 30, 38, (91,231,0): 53, 30, 38, (91,232,0): 53, 30, 38, (91,233,0): 53, 30, 38, (91,234,0): 53, 30, 38, (91,235,0): 53, 30, 38, (91,236,0): 53, 30, 38, (91,237,0): 53, 30, 38, (91,238,0): 53, 30, 38, (91,239,0): 53, 30, 36, (91,240,0): 59, 32, 37, (91,241,0): 59, 33, 36, (91,242,0): 61, 32, 36, (91,243,0): 61, 32, 36, (91,244,0): 61, 32, 36, (91,245,0): 61, 32, 36, (91,246,0): 62, 31, 36, (91,247,0): 62, 31, 36, (91,248,0): 63, 31, 36, (91,249,0): 63, 31, 36, (91,250,0): 63, 31, 36, (91,251,0): 63, 31, 36, (91,252,0): 66, 31, 37, (91,253,0): 66, 31, 37, (91,254,0): 66, 31, 37, (91,255,0): 66, 31, 35, (91,256,0): 68, 32, 36, (91,257,0): 68, 32, 34, (91,258,0): 69, 33, 35, (91,259,0): 69, 33, 35, (91,260,0): 70, 34, 36, (91,261,0): 70, 34, 36, (91,262,0): 71, 35, 37, (91,263,0): 71, 35, 37, (91,264,0): 74, 38, 40, (91,265,0): 74, 38, 40, (91,266,0): 74, 38, 40, (91,267,0): 75, 39, 41, (91,268,0): 76, 40, 42, (91,269,0): 76, 40, 42, (91,270,0): 76, 40, 42, (91,271,0): 77, 41, 41, (91,272,0): 80, 40, 40, (91,273,0): 80, 40, 40, (91,274,0): 81, 41, 39, (91,275,0): 82, 42, 40, (91,276,0): 83, 43, 41, (91,277,0): 84, 44, 42, (91,278,0): 85, 46, 41, (91,279,0): 86, 47, 42, (91,280,0): 86, 47, 40, (91,281,0): 87, 48, 41, (91,282,0): 88, 49, 42, (91,283,0): 89, 50, 43, (91,284,0): 91, 53, 44, (91,285,0): 93, 55, 46, (91,286,0): 94, 56, 47, (91,287,0): 94, 56, 47, (91,288,0): 101, 61, 51, (91,289,0): 103, 63, 53, (91,290,0): 106, 66, 54, (91,291,0): 106, 67, 52, (91,292,0): 107, 68, 53, (91,293,0): 109, 71, 52, (91,294,0): 115, 74, 52, (91,295,0): 120, 78, 53, (91,296,0): 126, 81, 52, (91,297,0): 137, 88, 55, (91,298,0): 147, 95, 56, (91,299,0): 153, 99, 55, (91,300,0): 164, 106, 60, (91,301,0): 176, 116, 64, (91,302,0): 181, 120, 65, (91,303,0): 178, 117, 63, (91,304,0): 169, 111, 63, (91,305,0): 159, 107, 59, (91,306,0): 149, 101, 53, (91,307,0): 140, 98, 50, (91,308,0): 135, 99, 51, (91,309,0): 132, 100, 53, (91,310,0): 132, 99, 54, (91,311,0): 129, 98, 52, (91,312,0): 131, 98, 55, (91,313,0): 132, 99, 56, (91,314,0): 133, 100, 57, (91,315,0): 134, 103, 57, (91,316,0): 136, 105, 58, (91,317,0): 135, 109, 60, (91,318,0): 134, 111, 61, (91,319,0): 135, 112, 62, (91,320,0): 137, 109, 62, (91,321,0): 140, 109, 65, (91,322,0): 138, 109, 65, (91,323,0): 139, 110, 66, (91,324,0): 140, 111, 67, (91,325,0): 141, 112, 68, (91,326,0): 141, 114, 69, (91,327,0): 141, 114, 69, (91,328,0): 138, 114, 68, (91,329,0): 139, 115, 69, (91,330,0): 141, 117, 71, (91,331,0): 142, 118, 72, (91,332,0): 142, 120, 73, (91,333,0): 142, 120, 73, (91,334,0): 141, 119, 72, (91,335,0): 141, 118, 74, (91,336,0): 141, 118, 76, (91,337,0): 142, 119, 78, (91,338,0): 143, 120, 79, (91,339,0): 145, 122, 81, (91,340,0): 146, 123, 82, (91,341,0): 148, 125, 84, (91,342,0): 149, 126, 85, (91,343,0): 150, 127, 86, (91,344,0): 150, 127, 86, (91,345,0): 152, 129, 88, (91,346,0): 153, 130, 89, (91,347,0): 155, 132, 91, (91,348,0): 156, 133, 92, (91,349,0): 157, 134, 93, (91,350,0): 156, 133, 92, (91,351,0): 156, 133, 92, (91,352,0): 161, 136, 96, (91,353,0): 161, 136, 96, (91,354,0): 161, 136, 96, (91,355,0): 161, 136, 96, (91,356,0): 163, 135, 98, (91,357,0): 163, 135, 98, (91,358,0): 163, 135, 98, (91,359,0): 163, 135, 98, (91,360,0): 164, 134, 100, (91,361,0): 163, 133, 99, (91,362,0): 163, 130, 99, (91,363,0): 161, 128, 97, (91,364,0): 160, 127, 96, (91,365,0): 160, 127, 96, (91,366,0): 161, 126, 98, (91,367,0): 161, 126, 98, (91,368,0): 161, 127, 100, (91,369,0): 161, 127, 100, (91,370,0): 162, 126, 100, (91,371,0): 163, 125, 102, (91,372,0): 165, 124, 102, (91,373,0): 165, 124, 102, (91,374,0): 163, 125, 102, (91,375,0): 163, 125, 102, (91,376,0): 165, 129, 103, (91,377,0): 164, 129, 101, (91,378,0): 164, 129, 99, (91,379,0): 168, 129, 96, (91,380,0): 175, 132, 98, (91,381,0): 185, 136, 103, (91,382,0): 194, 141, 107, (91,383,0): 204, 141, 106, (91,384,0): 223, 148, 108, (91,385,0): 230, 149, 104, (91,386,0): 233, 151, 104, (91,387,0): 236, 152, 105, (91,388,0): 240, 154, 105, (91,389,0): 243, 155, 105, (91,390,0): 246, 156, 103, (91,391,0): 248, 157, 102, (91,392,0): 238, 147, 90, (91,393,0): 237, 146, 89, (91,394,0): 236, 145, 88, (91,395,0): 234, 145, 87, (91,396,0): 231, 145, 88, (91,397,0): 231, 145, 88, (91,398,0): 229, 144, 89, (91,399,0): 227, 145, 87, (91,400,0): 224, 149, 84, (91,401,0): 225, 152, 84, (91,402,0): 228, 155, 87, (91,403,0): 232, 158, 93, (91,404,0): 236, 161, 96, (91,405,0): 236, 162, 99, (91,406,0): 237, 163, 100, (91,407,0): 235, 164, 102, (91,408,0): 230, 160, 98, (91,409,0): 228, 163, 99, (91,410,0): 229, 165, 103, (91,411,0): 228, 168, 105, (91,412,0): 228, 170, 107, (91,413,0): 225, 171, 107, (91,414,0): 222, 171, 106, (91,415,0): 221, 172, 106, (91,416,0): 220, 172, 108, (91,417,0): 218, 173, 108, (91,418,0): 217, 172, 107, (91,419,0): 213, 168, 101, (91,420,0): 209, 164, 97, (91,421,0): 208, 163, 96, (91,422,0): 211, 166, 98, (91,423,0): 214, 169, 101, (91,424,0): 216, 172, 101, (91,425,0): 218, 174, 103, (91,426,0): 221, 177, 106, (91,427,0): 223, 179, 106, (91,428,0): 224, 180, 107, (91,429,0): 223, 179, 106, (91,430,0): 222, 178, 105, (91,431,0): 221, 177, 104, (91,432,0): 219, 179, 107, (91,433,0): 218, 180, 105, (91,434,0): 219, 181, 106, (91,435,0): 218, 182, 104, (91,436,0): 218, 182, 104, (91,437,0): 215, 182, 101, (91,438,0): 214, 181, 100, (91,439,0): 216, 181, 100, (91,440,0): 214, 178, 100, (91,441,0): 212, 175, 97, (91,442,0): 209, 170, 95, (91,443,0): 209, 166, 97, (91,444,0): 209, 161, 95, (91,445,0): 206, 156, 93, (91,446,0): 199, 149, 86, (91,447,0): 193, 145, 83, (91,448,0): 175, 135, 76, (91,449,0): 169, 133, 75, (91,450,0): 165, 129, 71, (91,451,0): 164, 129, 73, (91,452,0): 166, 131, 75, (91,453,0): 166, 133, 79, (91,454,0): 165, 132, 79, (91,455,0): 163, 131, 80, (91,456,0): 162, 131, 84, (91,457,0): 159, 128, 82, (91,458,0): 152, 123, 79, (91,459,0): 147, 118, 74, (91,460,0): 141, 114, 71, (91,461,0): 139, 112, 69, (91,462,0): 136, 111, 70, (91,463,0): 135, 112, 71, (91,464,0): 134, 112, 73, (91,465,0): 132, 113, 73, (91,466,0): 134, 114, 77, (91,467,0): 135, 115, 78, (91,468,0): 137, 115, 78, (91,469,0): 137, 115, 78, (91,470,0): 136, 113, 79, (91,471,0): 135, 112, 78, (91,472,0): 131, 106, 75, (91,473,0): 131, 106, 75, (91,474,0): 130, 103, 73, (91,475,0): 129, 102, 72, (91,476,0): 128, 101, 72, (91,477,0): 128, 101, 72, (91,478,0): 131, 101, 73, (91,479,0): 131, 101, 73, (91,480,0): 133, 103, 75, (91,481,0): 133, 103, 75, (91,482,0): 132, 102, 74, (91,483,0): 131, 101, 73, (91,484,0): 131, 100, 72, (91,485,0): 131, 100, 72, (91,486,0): 132, 98, 71, (91,487,0): 132, 98, 71, (91,488,0): 132, 98, 71, (91,489,0): 134, 100, 73, (91,490,0): 138, 102, 76, (91,491,0): 142, 106, 80, (91,492,0): 147, 110, 84, (91,493,0): 151, 114, 88, (91,494,0): 153, 116, 90, (91,495,0): 153, 117, 91, (91,496,0): 147, 117, 91, (91,497,0): 141, 114, 87, (91,498,0): 134, 107, 80, (91,499,0): 125, 97, 73, (91,500,0): 117, 91, 66, (91,501,0): 112, 86, 63, (91,502,0): 109, 83, 60, (91,503,0): 106, 81, 59, (91,504,0): 106, 81, 61, (91,505,0): 105, 79, 62, (91,506,0): 101, 78, 60, (91,507,0): 98, 75, 59, (91,508,0): 96, 73, 59, (91,509,0): 93, 71, 57, (91,510,0): 91, 69, 55, (91,511,0): 91, 69, 56, (91,512,0): 88, 69, 55, (91,513,0): 89, 70, 56, (91,514,0): 90, 71, 57, (91,515,0): 91, 72, 58, (91,516,0): 92, 73, 59, (91,517,0): 94, 75, 61, (91,518,0): 95, 76, 62, (91,519,0): 95, 76, 62, (91,520,0): 94, 75, 61, (91,521,0): 95, 76, 62, (91,522,0): 96, 77, 63, (91,523,0): 97, 78, 64, (91,524,0): 98, 79, 65, (91,525,0): 98, 79, 65, (91,526,0): 98, 79, 65, (91,527,0): 97, 79, 65, (91,528,0): 94, 78, 65, (91,529,0): 93, 79, 66, (91,530,0): 95, 82, 66, (91,531,0): 96, 83, 67, (91,532,0): 100, 84, 69, (91,533,0): 100, 84, 69, (91,534,0): 101, 82, 67, (91,535,0): 101, 82, 67, (91,536,0): 104, 83, 66, (91,537,0): 104, 83, 66, (91,538,0): 107, 81, 66, (91,539,0): 107, 81, 66, (91,540,0): 108, 81, 64, (91,541,0): 109, 82, 65, (91,542,0): 109, 82, 65, (91,543,0): 109, 82, 65, (91,544,0): 108, 81, 62, (91,545,0): 107, 80, 61, (91,546,0): 106, 79, 60, (91,547,0): 105, 78, 59, (91,548,0): 105, 78, 61, (91,549,0): 106, 80, 63, (91,550,0): 107, 81, 66, (91,551,0): 108, 82, 67, (91,552,0): 105, 82, 66, (91,553,0): 105, 82, 66, (91,554,0): 104, 82, 68, (91,555,0): 104, 82, 68, (91,556,0): 104, 82, 69, (91,557,0): 104, 82, 69, (91,558,0): 104, 82, 69, (91,559,0): 104, 82, 69, (91,560,0): 106, 87, 73, (91,561,0): 105, 86, 72, (91,562,0): 104, 85, 71, (91,563,0): 102, 83, 69, (91,564,0): 101, 81, 70, (91,565,0): 99, 79, 68, (91,566,0): 98, 78, 67, (91,567,0): 97, 77, 66, (91,568,0): 96, 76, 67, (91,569,0): 94, 74, 65, (91,570,0): 91, 71, 64, (91,571,0): 88, 68, 61, (91,572,0): 86, 66, 59, (91,573,0): 87, 67, 60, (91,574,0): 89, 68, 63, (91,575,0): 90, 69, 64, (91,576,0): 91, 67, 65, (91,577,0): 90, 66, 64, (91,578,0): 85, 64, 61, (91,579,0): 82, 61, 58, (91,580,0): 78, 57, 56, (91,581,0): 74, 53, 52, (91,582,0): 71, 51, 50, (91,583,0): 69, 49, 48, (91,584,0): 68, 50, 50, (91,585,0): 67, 49, 49, (91,586,0): 65, 46, 48, (91,587,0): 63, 44, 46, (91,588,0): 59, 43, 44, (91,589,0): 57, 41, 42, (91,590,0): 55, 39, 42, (91,591,0): 55, 38, 44, (91,592,0): 52, 37, 44, (91,593,0): 52, 36, 46, (91,594,0): 52, 37, 44, (91,595,0): 51, 36, 41, (91,596,0): 51, 36, 41, (91,597,0): 50, 35, 38, (91,598,0): 50, 36, 36, (91,599,0): 50, 36, 36, (92,0,0): 26, 24, 38, (92,1,0): 26, 24, 38, (92,2,0): 27, 25, 39, (92,3,0): 27, 25, 39, (92,4,0): 29, 25, 40, (92,5,0): 29, 25, 40, (92,6,0): 30, 26, 41, (92,7,0): 30, 26, 41, (92,8,0): 31, 24, 40, (92,9,0): 31, 24, 40, (92,10,0): 33, 24, 41, (92,11,0): 34, 25, 42, (92,12,0): 35, 26, 43, (92,13,0): 36, 27, 44, (92,14,0): 39, 28, 45, (92,15,0): 39, 28, 44, (92,16,0): 38, 30, 45, (92,17,0): 37, 31, 43, (92,18,0): 37, 31, 43, (92,19,0): 39, 31, 44, (92,20,0): 42, 32, 43, (92,21,0): 42, 32, 43, (92,22,0): 44, 30, 43, (92,23,0): 45, 31, 44, (92,24,0): 49, 33, 44, (92,25,0): 49, 33, 44, (92,26,0): 53, 33, 44, (92,27,0): 54, 34, 45, (92,28,0): 56, 34, 46, (92,29,0): 58, 34, 47, (92,30,0): 59, 36, 46, (92,31,0): 59, 36, 44, (92,32,0): 61, 36, 42, (92,33,0): 62, 35, 40, (92,34,0): 63, 36, 41, (92,35,0): 63, 36, 41, (92,36,0): 64, 37, 44, (92,37,0): 65, 38, 45, (92,38,0): 66, 39, 48, (92,39,0): 66, 39, 48, (92,40,0): 66, 39, 48, (92,41,0): 66, 39, 48, (92,42,0): 65, 37, 49, (92,43,0): 64, 36, 48, (92,44,0): 64, 36, 50, (92,45,0): 63, 35, 49, (92,46,0): 62, 34, 48, (92,47,0): 61, 34, 49, (92,48,0): 56, 32, 48, (92,49,0): 54, 31, 49, (92,50,0): 52, 29, 47, (92,51,0): 51, 28, 46, (92,52,0): 49, 28, 45, (92,53,0): 49, 28, 45, (92,54,0): 49, 28, 47, (92,55,0): 49, 28, 47, (92,56,0): 45, 26, 46, (92,57,0): 44, 25, 45, (92,58,0): 42, 24, 46, (92,59,0): 40, 22, 44, (92,60,0): 40, 22, 44, (92,61,0): 40, 22, 44, (92,62,0): 39, 24, 45, (92,63,0): 38, 25, 45, (92,64,0): 35, 23, 45, (92,65,0): 34, 24, 48, (92,66,0): 35, 25, 49, (92,67,0): 36, 26, 50, (92,68,0): 35, 25, 49, (92,69,0): 34, 24, 48, (92,70,0): 31, 21, 45, (92,71,0): 30, 20, 44, (92,72,0): 30, 20, 44, (92,73,0): 30, 20, 44, (92,74,0): 30, 20, 44, (92,75,0): 30, 20, 44, (92,76,0): 29, 19, 43, (92,77,0): 29, 19, 43, (92,78,0): 29, 19, 43, (92,79,0): 28, 19, 40, (92,80,0): 29, 17, 37, (92,81,0): 29, 17, 37, (92,82,0): 27, 18, 37, (92,83,0): 27, 18, 37, (92,84,0): 27, 18, 39, (92,85,0): 27, 18, 39, (92,86,0): 26, 18, 39, (92,87,0): 26, 18, 39, (92,88,0): 25, 20, 42, (92,89,0): 24, 19, 41, (92,90,0): 23, 18, 41, (92,91,0): 21, 16, 39, (92,92,0): 20, 16, 39, (92,93,0): 20, 16, 39, (92,94,0): 21, 17, 42, (92,95,0): 21, 17, 42, (92,96,0): 20, 16, 39, (92,97,0): 19, 15, 38, (92,98,0): 19, 15, 38, (92,99,0): 18, 14, 37, (92,100,0): 18, 14, 37, (92,101,0): 17, 13, 36, (92,102,0): 17, 13, 36, (92,103,0): 17, 13, 36, (92,104,0): 20, 16, 39, (92,105,0): 18, 14, 37, (92,106,0): 16, 12, 35, (92,107,0): 14, 10, 33, (92,108,0): 14, 10, 33, (92,109,0): 16, 12, 35, (92,110,0): 18, 14, 37, (92,111,0): 20, 16, 39, (92,112,0): 16, 13, 34, (92,113,0): 17, 14, 35, (92,114,0): 17, 14, 35, (92,115,0): 18, 15, 36, (92,116,0): 19, 16, 37, (92,117,0): 20, 17, 38, (92,118,0): 20, 17, 38, (92,119,0): 21, 18, 39, (92,120,0): 19, 16, 37, (92,121,0): 19, 16, 37, (92,122,0): 19, 16, 37, (92,123,0): 19, 16, 37, (92,124,0): 19, 16, 37, (92,125,0): 19, 16, 37, (92,126,0): 19, 16, 37, (92,127,0): 19, 16, 37, (92,128,0): 19, 14, 36, (92,129,0): 20, 15, 37, (92,130,0): 22, 14, 37, (92,131,0): 22, 14, 37, (92,132,0): 23, 15, 36, (92,133,0): 24, 16, 37, (92,134,0): 25, 16, 37, (92,135,0): 25, 16, 37, (92,136,0): 26, 14, 34, (92,137,0): 27, 15, 35, (92,138,0): 29, 18, 35, (92,139,0): 30, 19, 36, (92,140,0): 32, 19, 37, (92,141,0): 31, 18, 36, (92,142,0): 31, 18, 35, (92,143,0): 30, 17, 34, (92,144,0): 32, 19, 37, (92,145,0): 32, 19, 37, (92,146,0): 32, 19, 37, (92,147,0): 33, 20, 38, (92,148,0): 33, 20, 38, (92,149,0): 34, 21, 39, (92,150,0): 34, 21, 39, (92,151,0): 34, 21, 39, (92,152,0): 34, 21, 39, (92,153,0): 34, 21, 39, (92,154,0): 34, 21, 39, (92,155,0): 34, 21, 39, (92,156,0): 34, 21, 39, (92,157,0): 34, 21, 39, (92,158,0): 34, 21, 39, (92,159,0): 33, 22, 39, (92,160,0): 34, 23, 40, (92,161,0): 32, 23, 40, (92,162,0): 32, 23, 40, (92,163,0): 32, 23, 40, (92,164,0): 32, 23, 40, (92,165,0): 32, 23, 40, (92,166,0): 32, 23, 40, (92,167,0): 32, 23, 40, (92,168,0): 32, 23, 40, (92,169,0): 32, 23, 40, (92,170,0): 32, 23, 40, (92,171,0): 32, 23, 40, (92,172,0): 32, 23, 40, (92,173,0): 32, 23, 40, (92,174,0): 32, 23, 40, (92,175,0): 32, 23, 40, (92,176,0): 31, 24, 40, (92,177,0): 30, 23, 39, (92,178,0): 29, 22, 38, (92,179,0): 28, 21, 37, (92,180,0): 28, 21, 37, (92,181,0): 29, 22, 38, (92,182,0): 30, 23, 39, (92,183,0): 31, 24, 40, (92,184,0): 31, 24, 40, (92,185,0): 31, 24, 40, (92,186,0): 31, 24, 40, (92,187,0): 32, 25, 41, (92,188,0): 32, 25, 41, (92,189,0): 33, 26, 42, (92,190,0): 33, 26, 42, (92,191,0): 34, 25, 42, (92,192,0): 37, 26, 43, (92,193,0): 38, 25, 43, (92,194,0): 38, 25, 42, (92,195,0): 39, 26, 43, (92,196,0): 39, 26, 43, (92,197,0): 40, 27, 44, (92,198,0): 41, 27, 42, (92,199,0): 41, 27, 42, (92,200,0): 45, 28, 44, (92,201,0): 45, 29, 42, (92,202,0): 46, 28, 42, (92,203,0): 46, 28, 42, (92,204,0): 46, 28, 40, (92,205,0): 46, 28, 40, (92,206,0): 46, 28, 40, (92,207,0): 45, 29, 40, (92,208,0): 45, 29, 42, (92,209,0): 43, 29, 42, (92,210,0): 46, 30, 41, (92,211,0): 46, 30, 41, (92,212,0): 47, 31, 42, (92,213,0): 47, 31, 42, (92,214,0): 49, 32, 42, (92,215,0): 49, 32, 42, (92,216,0): 51, 31, 42, (92,217,0): 51, 31, 40, (92,218,0): 51, 31, 40, (92,219,0): 51, 31, 40, (92,220,0): 52, 31, 38, (92,221,0): 52, 31, 38, (92,222,0): 52, 31, 38, (92,223,0): 52, 31, 38, (92,224,0): 53, 30, 38, (92,225,0): 53, 30, 38, (92,226,0): 53, 30, 38, (92,227,0): 53, 30, 38, (92,228,0): 53, 30, 38, (92,229,0): 53, 30, 38, (92,230,0): 53, 30, 38, (92,231,0): 53, 30, 38, (92,232,0): 53, 30, 38, (92,233,0): 53, 30, 38, (92,234,0): 53, 30, 38, (92,235,0): 53, 30, 38, (92,236,0): 53, 30, 38, (92,237,0): 53, 30, 38, (92,238,0): 53, 30, 38, (92,239,0): 53, 30, 36, (92,240,0): 59, 32, 37, (92,241,0): 59, 33, 36, (92,242,0): 59, 33, 36, (92,243,0): 59, 33, 36, (92,244,0): 61, 32, 36, (92,245,0): 61, 32, 36, (92,246,0): 61, 32, 36, (92,247,0): 61, 32, 36, (92,248,0): 62, 31, 36, (92,249,0): 62, 31, 36, (92,250,0): 63, 31, 36, (92,251,0): 63, 31, 36, (92,252,0): 62, 30, 35, (92,253,0): 62, 30, 35, (92,254,0): 64, 29, 35, (92,255,0): 64, 29, 33, (92,256,0): 67, 31, 35, (92,257,0): 67, 31, 33, (92,258,0): 68, 32, 34, (92,259,0): 68, 32, 34, (92,260,0): 69, 33, 35, (92,261,0): 69, 33, 35, (92,262,0): 70, 34, 36, (92,263,0): 70, 34, 36, (92,264,0): 73, 37, 39, (92,265,0): 74, 38, 40, (92,266,0): 74, 38, 40, (92,267,0): 74, 38, 40, (92,268,0): 75, 39, 41, (92,269,0): 76, 40, 42, (92,270,0): 76, 40, 42, (92,271,0): 76, 40, 40, (92,272,0): 79, 39, 39, (92,273,0): 80, 40, 38, (92,274,0): 81, 41, 39, (92,275,0): 82, 42, 40, (92,276,0): 83, 44, 39, (92,277,0): 84, 45, 40, (92,278,0): 85, 46, 41, (92,279,0): 85, 46, 41, (92,280,0): 86, 47, 40, (92,281,0): 86, 47, 40, (92,282,0): 87, 49, 40, (92,283,0): 89, 51, 42, (92,284,0): 91, 53, 44, (92,285,0): 92, 54, 45, (92,286,0): 93, 55, 44, (92,287,0): 94, 56, 45, (92,288,0): 99, 61, 50, (92,289,0): 101, 63, 52, (92,290,0): 104, 66, 53, (92,291,0): 104, 67, 51, (92,292,0): 106, 67, 52, (92,293,0): 108, 70, 51, (92,294,0): 114, 73, 53, (92,295,0): 119, 77, 52, (92,296,0): 125, 80, 51, (92,297,0): 134, 88, 54, (92,298,0): 143, 94, 54, (92,299,0): 149, 96, 52, (92,300,0): 159, 103, 56, (92,301,0): 172, 112, 62, (92,302,0): 178, 117, 63, (92,303,0): 176, 114, 63, (92,304,0): 166, 110, 61, (92,305,0): 157, 105, 58, (92,306,0): 147, 99, 53, (92,307,0): 139, 97, 49, (92,308,0): 135, 99, 51, (92,309,0): 133, 101, 54, (92,310,0): 133, 100, 55, (92,311,0): 131, 100, 56, (92,312,0): 131, 100, 56, (92,313,0): 132, 101, 57, (92,314,0): 134, 101, 56, (92,315,0): 135, 104, 58, (92,316,0): 137, 106, 59, (92,317,0): 136, 110, 61, (92,318,0): 135, 112, 60, (92,319,0): 136, 113, 63, (92,320,0): 139, 111, 64, (92,321,0): 139, 111, 64, (92,322,0): 140, 112, 65, (92,323,0): 141, 113, 66, (92,324,0): 142, 115, 68, (92,325,0): 143, 116, 69, (92,326,0): 144, 117, 70, (92,327,0): 144, 117, 70, (92,328,0): 141, 117, 69, (92,329,0): 142, 118, 70, (92,330,0): 143, 121, 72, (92,331,0): 144, 122, 73, (92,332,0): 144, 122, 73, (92,333,0): 144, 122, 73, (92,334,0): 142, 122, 72, (92,335,0): 141, 120, 73, (92,336,0): 142, 119, 77, (92,337,0): 143, 120, 79, (92,338,0): 144, 121, 80, (92,339,0): 146, 123, 82, (92,340,0): 147, 124, 83, (92,341,0): 149, 126, 85, (92,342,0): 150, 127, 86, (92,343,0): 151, 128, 87, (92,344,0): 151, 128, 87, (92,345,0): 153, 130, 89, (92,346,0): 155, 132, 91, (92,347,0): 156, 133, 92, (92,348,0): 157, 134, 93, (92,349,0): 158, 135, 94, (92,350,0): 157, 134, 93, (92,351,0): 157, 134, 93, (92,352,0): 163, 138, 97, (92,353,0): 163, 138, 97, (92,354,0): 163, 138, 98, (92,355,0): 163, 138, 98, (92,356,0): 165, 137, 98, (92,357,0): 165, 137, 98, (92,358,0): 165, 137, 100, (92,359,0): 165, 137, 100, (92,360,0): 166, 136, 102, (92,361,0): 165, 135, 101, (92,362,0): 165, 132, 99, (92,363,0): 163, 130, 97, (92,364,0): 161, 128, 97, (92,365,0): 160, 127, 96, (92,366,0): 161, 126, 96, (92,367,0): 162, 127, 99, (92,368,0): 161, 127, 102, (92,369,0): 161, 127, 102, (92,370,0): 162, 126, 102, (92,371,0): 163, 125, 104, (92,372,0): 165, 124, 104, (92,373,0): 165, 124, 104, (92,374,0): 163, 125, 102, (92,375,0): 163, 125, 102, (92,376,0): 167, 130, 104, (92,377,0): 166, 129, 100, (92,378,0): 168, 129, 98, (92,379,0): 173, 130, 96, (92,380,0): 180, 134, 100, (92,381,0): 192, 140, 103, (92,382,0): 203, 145, 108, (92,383,0): 215, 147, 110, (92,384,0): 227, 148, 105, (92,385,0): 234, 150, 103, (92,386,0): 241, 155, 106, (92,387,0): 246, 158, 108, (92,388,0): 250, 160, 108, (92,389,0): 249, 158, 105, (92,390,0): 247, 156, 101, (92,391,0): 247, 154, 97, (92,392,0): 241, 148, 91, (92,393,0): 238, 148, 88, (92,394,0): 238, 147, 90, (92,395,0): 236, 147, 89, (92,396,0): 233, 147, 90, (92,397,0): 231, 145, 88, (92,398,0): 229, 144, 89, (92,399,0): 226, 144, 86, (92,400,0): 226, 151, 84, (92,401,0): 226, 156, 86, (92,402,0): 231, 161, 91, (92,403,0): 235, 165, 96, (92,404,0): 240, 167, 99, (92,405,0): 241, 167, 102, (92,406,0): 240, 166, 101, (92,407,0): 236, 167, 102, (92,408,0): 232, 164, 99, (92,409,0): 230, 167, 100, (92,410,0): 230, 169, 104, (92,411,0): 229, 172, 105, (92,412,0): 228, 173, 108, (92,413,0): 227, 174, 108, (92,414,0): 224, 173, 107, (92,415,0): 221, 173, 107, (92,416,0): 218, 173, 108, (92,417,0): 216, 172, 107, (92,418,0): 215, 171, 106, (92,419,0): 211, 167, 102, (92,420,0): 208, 165, 97, (92,421,0): 208, 165, 97, (92,422,0): 211, 168, 99, (92,423,0): 213, 170, 101, (92,424,0): 216, 172, 101, (92,425,0): 218, 174, 103, (92,426,0): 221, 177, 104, (92,427,0): 223, 179, 106, (92,428,0): 225, 181, 108, (92,429,0): 224, 180, 105, (92,430,0): 225, 179, 104, (92,431,0): 222, 178, 103, (92,432,0): 221, 177, 104, (92,433,0): 221, 179, 105, (92,434,0): 221, 182, 107, (92,435,0): 221, 184, 106, (92,436,0): 221, 184, 104, (92,437,0): 219, 184, 102, (92,438,0): 218, 183, 101, (92,439,0): 217, 182, 100, (92,440,0): 214, 179, 98, (92,441,0): 211, 174, 96, (92,442,0): 207, 169, 94, (92,443,0): 205, 165, 95, (92,444,0): 205, 162, 94, (92,445,0): 202, 157, 92, (92,446,0): 199, 151, 89, (92,447,0): 192, 146, 86, (92,448,0): 179, 141, 79, (92,449,0): 174, 140, 79, (92,450,0): 173, 139, 78, (92,451,0): 174, 139, 81, (92,452,0): 177, 142, 86, (92,453,0): 177, 144, 90, (92,454,0): 176, 143, 89, (92,455,0): 174, 143, 89, (92,456,0): 167, 137, 85, (92,457,0): 164, 134, 84, (92,458,0): 156, 128, 80, (92,459,0): 149, 121, 74, (92,460,0): 143, 116, 71, (92,461,0): 140, 113, 68, (92,462,0): 138, 111, 68, (92,463,0): 136, 111, 70, (92,464,0): 133, 111, 70, (92,465,0): 132, 113, 73, (92,466,0): 133, 114, 74, (92,467,0): 135, 116, 76, (92,468,0): 137, 115, 78, (92,469,0): 137, 115, 78, (92,470,0): 137, 115, 78, (92,471,0): 136, 114, 77, (92,472,0): 133, 109, 75, (92,473,0): 132, 108, 74, (92,474,0): 131, 104, 74, (92,475,0): 130, 103, 73, (92,476,0): 129, 102, 72, (92,477,0): 130, 103, 73, (92,478,0): 133, 103, 75, (92,479,0): 134, 104, 76, (92,480,0): 138, 107, 79, (92,481,0): 138, 107, 79, (92,482,0): 137, 106, 78, (92,483,0): 136, 105, 77, (92,484,0): 134, 103, 75, (92,485,0): 133, 102, 74, (92,486,0): 133, 99, 72, (92,487,0): 133, 99, 72, (92,488,0): 134, 98, 72, (92,489,0): 135, 99, 73, (92,490,0): 139, 102, 76, (92,491,0): 143, 106, 80, (92,492,0): 147, 110, 84, (92,493,0): 150, 113, 87, (92,494,0): 152, 115, 89, (92,495,0): 152, 116, 90, (92,496,0): 145, 114, 86, (92,497,0): 141, 111, 83, (92,498,0): 133, 106, 77, (92,499,0): 126, 99, 72, (92,500,0): 120, 93, 66, (92,501,0): 114, 88, 63, (92,502,0): 111, 85, 62, (92,503,0): 110, 83, 62, (92,504,0): 110, 85, 63, (92,505,0): 110, 85, 65, (92,506,0): 108, 82, 65, (92,507,0): 104, 81, 63, (92,508,0): 102, 79, 63, (92,509,0): 99, 76, 60, (92,510,0): 97, 74, 58, (92,511,0): 95, 73, 59, (92,512,0): 89, 70, 56, (92,513,0): 90, 71, 57, (92,514,0): 91, 72, 58, (92,515,0): 92, 73, 59, (92,516,0): 93, 74, 60, (92,517,0): 95, 76, 62, (92,518,0): 96, 77, 63, (92,519,0): 96, 77, 63, (92,520,0): 93, 74, 60, (92,521,0): 94, 75, 61, (92,522,0): 96, 77, 63, (92,523,0): 97, 78, 64, (92,524,0): 98, 79, 65, (92,525,0): 97, 78, 64, (92,526,0): 96, 77, 63, (92,527,0): 94, 76, 62, (92,528,0): 94, 78, 65, (92,529,0): 93, 79, 66, (92,530,0): 95, 82, 66, (92,531,0): 96, 83, 67, (92,532,0): 100, 84, 69, (92,533,0): 100, 84, 69, (92,534,0): 101, 82, 67, (92,535,0): 101, 82, 67, (92,536,0): 105, 84, 67, (92,537,0): 105, 84, 67, (92,538,0): 108, 82, 67, (92,539,0): 108, 82, 67, (92,540,0): 109, 82, 65, (92,541,0): 109, 82, 65, (92,542,0): 109, 82, 65, (92,543,0): 109, 82, 65, (92,544,0): 108, 81, 64, (92,545,0): 108, 81, 64, (92,546,0): 107, 80, 63, (92,547,0): 106, 79, 62, (92,548,0): 105, 79, 64, (92,549,0): 105, 79, 64, (92,550,0): 106, 80, 65, (92,551,0): 104, 81, 65, (92,552,0): 103, 80, 66, (92,553,0): 103, 80, 66, (92,554,0): 102, 80, 67, (92,555,0): 102, 80, 67, (92,556,0): 100, 81, 67, (92,557,0): 100, 81, 67, (92,558,0): 100, 80, 69, (92,559,0): 100, 80, 69, (92,560,0): 104, 85, 71, (92,561,0): 104, 85, 71, (92,562,0): 103, 84, 70, (92,563,0): 101, 82, 68, (92,564,0): 99, 79, 68, (92,565,0): 98, 78, 67, (92,566,0): 97, 77, 66, (92,567,0): 96, 76, 65, (92,568,0): 94, 74, 65, (92,569,0): 91, 71, 62, (92,570,0): 88, 68, 61, (92,571,0): 85, 65, 58, (92,572,0): 84, 64, 57, (92,573,0): 85, 65, 58, (92,574,0): 88, 67, 62, (92,575,0): 89, 68, 63, (92,576,0): 90, 66, 64, (92,577,0): 89, 65, 63, (92,578,0): 85, 64, 61, (92,579,0): 82, 61, 58, (92,580,0): 78, 57, 56, (92,581,0): 75, 54, 53, (92,582,0): 72, 52, 51, (92,583,0): 70, 50, 49, (92,584,0): 69, 51, 51, (92,585,0): 69, 51, 51, (92,586,0): 67, 48, 50, (92,587,0): 65, 46, 48, (92,588,0): 61, 45, 46, (92,589,0): 59, 43, 44, (92,590,0): 57, 41, 44, (92,591,0): 56, 39, 45, (92,592,0): 53, 38, 45, (92,593,0): 53, 37, 47, (92,594,0): 52, 37, 44, (92,595,0): 51, 36, 41, (92,596,0): 51, 36, 41, (92,597,0): 50, 35, 38, (92,598,0): 49, 35, 35, (92,599,0): 49, 35, 35, (93,0,0): 26, 24, 38, (93,1,0): 26, 24, 38, (93,2,0): 27, 25, 39, (93,3,0): 27, 25, 39, (93,4,0): 29, 25, 40, (93,5,0): 29, 25, 40, (93,6,0): 30, 26, 41, (93,7,0): 30, 26, 41, (93,8,0): 31, 24, 40, (93,9,0): 31, 24, 40, (93,10,0): 33, 24, 41, (93,11,0): 34, 25, 42, (93,12,0): 35, 26, 43, (93,13,0): 36, 27, 44, (93,14,0): 39, 28, 45, (93,15,0): 37, 29, 44, (93,16,0): 37, 31, 45, (93,17,0): 38, 32, 44, (93,18,0): 38, 32, 44, (93,19,0): 39, 33, 45, (93,20,0): 42, 32, 43, (93,21,0): 43, 33, 44, (93,22,0): 44, 32, 44, (93,23,0): 45, 31, 44, (93,24,0): 50, 34, 45, (93,25,0): 51, 33, 45, (93,26,0): 54, 34, 45, (93,27,0): 55, 35, 46, (93,28,0): 58, 34, 47, (93,29,0): 59, 35, 48, (93,30,0): 60, 37, 47, (93,31,0): 63, 37, 46, (93,32,0): 63, 36, 43, (93,33,0): 64, 37, 42, (93,34,0): 64, 37, 42, (93,35,0): 64, 37, 42, (93,36,0): 64, 37, 44, (93,37,0): 65, 38, 45, (93,38,0): 65, 38, 47, (93,39,0): 65, 38, 47, (93,40,0): 65, 38, 47, (93,41,0): 65, 38, 47, (93,42,0): 64, 36, 48, (93,43,0): 63, 35, 47, (93,44,0): 62, 34, 48, (93,45,0): 61, 33, 47, (93,46,0): 61, 33, 47, (93,47,0): 59, 32, 47, (93,48,0): 54, 30, 46, (93,49,0): 52, 29, 47, (93,50,0): 51, 28, 46, (93,51,0): 49, 26, 44, (93,52,0): 48, 27, 44, (93,53,0): 48, 27, 44, (93,54,0): 49, 28, 47, (93,55,0): 49, 28, 47, (93,56,0): 44, 25, 45, (93,57,0): 43, 24, 44, (93,58,0): 41, 23, 45, (93,59,0): 39, 21, 43, (93,60,0): 39, 21, 43, (93,61,0): 39, 21, 43, (93,62,0): 38, 23, 44, (93,63,0): 37, 23, 46, (93,64,0): 35, 23, 47, (93,65,0): 33, 23, 47, (93,66,0): 34, 24, 48, (93,67,0): 34, 24, 48, (93,68,0): 33, 23, 47, (93,69,0): 32, 22, 46, (93,70,0): 31, 21, 45, (93,71,0): 30, 20, 44, (93,72,0): 29, 19, 43, (93,73,0): 29, 19, 43, (93,74,0): 29, 19, 43, (93,75,0): 28, 18, 42, (93,76,0): 28, 18, 42, (93,77,0): 28, 18, 42, (93,78,0): 28, 18, 42, (93,79,0): 28, 19, 40, (93,80,0): 28, 16, 38, (93,81,0): 28, 16, 36, (93,82,0): 26, 17, 36, (93,83,0): 27, 18, 37, (93,84,0): 27, 18, 39, (93,85,0): 28, 19, 40, (93,86,0): 27, 19, 40, (93,87,0): 27, 19, 40, (93,88,0): 25, 20, 42, (93,89,0): 24, 19, 41, (93,90,0): 23, 18, 41, (93,91,0): 21, 16, 39, (93,92,0): 20, 16, 39, (93,93,0): 20, 16, 39, (93,94,0): 21, 17, 42, (93,95,0): 21, 17, 42, (93,96,0): 19, 15, 38, (93,97,0): 19, 15, 38, (93,98,0): 19, 15, 38, (93,99,0): 18, 14, 37, (93,100,0): 17, 13, 36, (93,101,0): 17, 13, 36, (93,102,0): 17, 13, 36, (93,103,0): 16, 12, 35, (93,104,0): 19, 15, 38, (93,105,0): 18, 14, 37, (93,106,0): 16, 12, 35, (93,107,0): 15, 11, 34, (93,108,0): 15, 11, 34, (93,109,0): 16, 12, 35, (93,110,0): 18, 14, 37, (93,111,0): 19, 15, 38, (93,112,0): 18, 15, 36, (93,113,0): 18, 15, 36, (93,114,0): 18, 15, 36, (93,115,0): 18, 15, 36, (93,116,0): 19, 16, 37, (93,117,0): 19, 16, 37, (93,118,0): 19, 16, 37, (93,119,0): 19, 16, 37, (93,120,0): 19, 16, 37, (93,121,0): 19, 16, 37, (93,122,0): 19, 16, 37, (93,123,0): 19, 16, 37, (93,124,0): 19, 16, 37, (93,125,0): 19, 16, 37, (93,126,0): 19, 16, 37, (93,127,0): 19, 16, 37, (93,128,0): 19, 14, 36, (93,129,0): 19, 14, 36, (93,130,0): 21, 13, 36, (93,131,0): 22, 14, 37, (93,132,0): 22, 14, 35, (93,133,0): 23, 15, 36, (93,134,0): 24, 15, 36, (93,135,0): 25, 16, 37, (93,136,0): 25, 13, 33, (93,137,0): 27, 15, 35, (93,138,0): 29, 18, 35, (93,139,0): 31, 20, 37, (93,140,0): 33, 20, 38, (93,141,0): 32, 19, 37, (93,142,0): 30, 17, 34, (93,143,0): 29, 16, 33, (93,144,0): 32, 19, 37, (93,145,0): 32, 19, 37, (93,146,0): 32, 19, 37, (93,147,0): 33, 20, 38, (93,148,0): 33, 20, 38, (93,149,0): 34, 21, 39, (93,150,0): 34, 21, 39, (93,151,0): 34, 21, 39, (93,152,0): 34, 21, 39, (93,153,0): 34, 21, 39, (93,154,0): 34, 21, 39, (93,155,0): 34, 21, 39, (93,156,0): 34, 21, 39, (93,157,0): 34, 21, 39, (93,158,0): 34, 21, 39, (93,159,0): 33, 22, 39, (93,160,0): 34, 23, 40, (93,161,0): 32, 23, 40, (93,162,0): 32, 23, 40, (93,163,0): 32, 23, 40, (93,164,0): 32, 23, 40, (93,165,0): 32, 23, 40, (93,166,0): 32, 23, 40, (93,167,0): 32, 23, 40, (93,168,0): 32, 23, 40, (93,169,0): 32, 23, 40, (93,170,0): 32, 23, 40, (93,171,0): 32, 23, 40, (93,172,0): 32, 23, 40, (93,173,0): 32, 23, 40, (93,174,0): 32, 23, 40, (93,175,0): 32, 23, 40, (93,176,0): 31, 24, 40, (93,177,0): 30, 23, 39, (93,178,0): 29, 22, 38, (93,179,0): 28, 21, 37, (93,180,0): 28, 21, 37, (93,181,0): 29, 22, 38, (93,182,0): 30, 23, 39, (93,183,0): 31, 24, 40, (93,184,0): 31, 24, 40, (93,185,0): 31, 24, 40, (93,186,0): 31, 24, 40, (93,187,0): 32, 25, 41, (93,188,0): 32, 25, 41, (93,189,0): 33, 26, 42, (93,190,0): 33, 26, 42, (93,191,0): 34, 25, 42, (93,192,0): 37, 26, 43, (93,193,0): 38, 25, 43, (93,194,0): 38, 25, 42, (93,195,0): 39, 26, 43, (93,196,0): 39, 26, 43, (93,197,0): 40, 27, 44, (93,198,0): 41, 27, 42, (93,199,0): 41, 27, 42, (93,200,0): 45, 29, 42, (93,201,0): 45, 29, 42, (93,202,0): 46, 28, 42, (93,203,0): 46, 28, 42, (93,204,0): 46, 28, 40, (93,205,0): 46, 28, 40, (93,206,0): 46, 28, 40, (93,207,0): 46, 28, 40, (93,208,0): 45, 29, 42, (93,209,0): 43, 29, 42, (93,210,0): 46, 30, 41, (93,211,0): 46, 30, 41, (93,212,0): 47, 31, 42, (93,213,0): 47, 31, 42, (93,214,0): 49, 32, 42, (93,215,0): 49, 32, 42, (93,216,0): 51, 31, 40, (93,217,0): 51, 31, 40, (93,218,0): 51, 31, 40, (93,219,0): 51, 31, 40, (93,220,0): 52, 31, 38, (93,221,0): 52, 31, 38, (93,222,0): 52, 31, 38, (93,223,0): 52, 31, 38, (93,224,0): 53, 30, 38, (93,225,0): 53, 30, 38, (93,226,0): 53, 30, 38, (93,227,0): 53, 30, 38, (93,228,0): 53, 30, 38, (93,229,0): 53, 30, 38, (93,230,0): 53, 30, 38, (93,231,0): 53, 30, 38, (93,232,0): 53, 30, 38, (93,233,0): 53, 30, 38, (93,234,0): 53, 30, 38, (93,235,0): 53, 30, 38, (93,236,0): 53, 30, 38, (93,237,0): 53, 30, 38, (93,238,0): 53, 30, 38, (93,239,0): 53, 30, 36, (93,240,0): 58, 33, 37, (93,241,0): 59, 33, 36, (93,242,0): 59, 33, 36, (93,243,0): 59, 33, 36, (93,244,0): 61, 32, 36, (93,245,0): 61, 32, 36, (93,246,0): 61, 32, 36, (93,247,0): 61, 32, 36, (93,248,0): 62, 31, 36, (93,249,0): 61, 30, 35, (93,250,0): 62, 30, 35, (93,251,0): 62, 30, 35, (93,252,0): 61, 29, 34, (93,253,0): 61, 29, 34, (93,254,0): 62, 27, 33, (93,255,0): 62, 27, 31, (93,256,0): 66, 30, 34, (93,257,0): 66, 30, 32, (93,258,0): 67, 31, 33, (93,259,0): 67, 31, 33, (93,260,0): 68, 32, 34, (93,261,0): 68, 32, 34, (93,262,0): 69, 33, 35, (93,263,0): 69, 33, 35, (93,264,0): 73, 37, 39, (93,265,0): 73, 37, 39, (93,266,0): 73, 37, 39, (93,267,0): 74, 38, 40, (93,268,0): 74, 38, 40, (93,269,0): 75, 39, 41, (93,270,0): 75, 39, 41, (93,271,0): 76, 40, 40, (93,272,0): 79, 39, 39, (93,273,0): 79, 39, 37, (93,274,0): 80, 40, 38, (93,275,0): 81, 41, 39, (93,276,0): 82, 43, 38, (93,277,0): 83, 44, 39, (93,278,0): 84, 45, 40, (93,279,0): 84, 45, 40, (93,280,0): 85, 46, 39, (93,281,0): 86, 47, 40, (93,282,0): 87, 49, 40, (93,283,0): 88, 50, 41, (93,284,0): 90, 52, 43, (93,285,0): 92, 54, 45, (93,286,0): 93, 55, 44, (93,287,0): 93, 55, 44, (93,288,0): 96, 58, 47, (93,289,0): 99, 61, 50, (93,290,0): 101, 63, 50, (93,291,0): 102, 65, 49, (93,292,0): 104, 65, 50, (93,293,0): 107, 69, 50, (93,294,0): 113, 72, 52, (93,295,0): 119, 77, 53, (93,296,0): 124, 80, 51, (93,297,0): 132, 86, 53, (93,298,0): 140, 90, 53, (93,299,0): 145, 92, 50, (93,300,0): 154, 97, 52, (93,301,0): 168, 108, 58, (93,302,0): 173, 111, 60, (93,303,0): 171, 109, 58, (93,304,0): 162, 106, 59, (93,305,0): 154, 102, 55, (93,306,0): 144, 97, 51, (93,307,0): 138, 95, 50, (93,308,0): 135, 98, 53, (93,309,0): 134, 102, 55, (93,310,0): 133, 102, 58, (93,311,0): 133, 102, 58, (93,312,0): 133, 102, 58, (93,313,0): 133, 102, 58, (93,314,0): 135, 102, 57, (93,315,0): 136, 105, 59, (93,316,0): 135, 107, 59, (93,317,0): 135, 109, 58, (93,318,0): 134, 111, 59, (93,319,0): 135, 112, 60, (93,320,0): 138, 112, 63, (93,321,0): 140, 112, 65, (93,322,0): 141, 113, 66, (93,323,0): 142, 114, 67, (93,324,0): 143, 116, 69, (93,325,0): 144, 117, 70, (93,326,0): 146, 119, 72, (93,327,0): 146, 119, 72, (93,328,0): 144, 120, 72, (93,329,0): 145, 121, 73, (93,330,0): 145, 123, 74, (93,331,0): 146, 124, 75, (93,332,0): 146, 124, 75, (93,333,0): 145, 123, 74, (93,334,0): 143, 123, 73, (93,335,0): 143, 122, 75, (93,336,0): 143, 120, 78, (93,337,0): 144, 121, 80, (93,338,0): 145, 122, 81, (93,339,0): 147, 124, 83, (93,340,0): 148, 125, 84, (93,341,0): 150, 127, 86, (93,342,0): 151, 128, 87, (93,343,0): 152, 129, 88, (93,344,0): 152, 129, 88, (93,345,0): 154, 131, 90, (93,346,0): 156, 133, 92, (93,347,0): 157, 134, 93, (93,348,0): 158, 135, 94, (93,349,0): 159, 136, 95, (93,350,0): 158, 135, 94, (93,351,0): 158, 135, 94, (93,352,0): 163, 138, 97, (93,353,0): 163, 138, 97, (93,354,0): 163, 138, 98, (93,355,0): 163, 138, 98, (93,356,0): 165, 137, 98, (93,357,0): 165, 137, 98, (93,358,0): 165, 137, 100, (93,359,0): 165, 137, 100, (93,360,0): 167, 137, 103, (93,361,0): 166, 136, 102, (93,362,0): 165, 132, 99, (93,363,0): 163, 130, 97, (93,364,0): 162, 129, 98, (93,365,0): 162, 129, 98, (93,366,0): 163, 128, 98, (93,367,0): 162, 128, 100, (93,368,0): 161, 129, 104, (93,369,0): 161, 129, 106, (93,370,0): 163, 128, 108, (93,371,0): 164, 128, 106, (93,372,0): 167, 126, 106, (93,373,0): 167, 126, 106, (93,374,0): 165, 127, 104, (93,375,0): 165, 128, 102, (93,376,0): 169, 132, 105, (93,377,0): 170, 131, 102, (93,378,0): 171, 130, 98, (93,379,0): 176, 132, 97, (93,380,0): 186, 136, 99, (93,381,0): 198, 142, 105, (93,382,0): 213, 149, 113, (93,383,0): 224, 152, 112, (93,384,0): 231, 150, 105, (93,385,0): 240, 152, 104, (93,386,0): 246, 158, 108, (93,387,0): 252, 162, 110, (93,388,0): 253, 162, 109, (93,389,0): 250, 159, 104, (93,390,0): 247, 154, 97, (93,391,0): 243, 150, 93, (93,392,0): 241, 148, 89, (93,393,0): 241, 148, 89, (93,394,0): 239, 148, 91, (93,395,0): 237, 148, 90, (93,396,0): 236, 147, 91, (93,397,0): 231, 145, 88, (93,398,0): 228, 143, 88, (93,399,0): 224, 144, 83, (93,400,0): 227, 154, 85, (93,401,0): 229, 159, 87, (93,402,0): 235, 165, 93, (93,403,0): 241, 171, 101, (93,404,0): 245, 172, 103, (93,405,0): 243, 173, 104, (93,406,0): 241, 171, 102, (93,407,0): 238, 169, 102, (93,408,0): 236, 169, 101, (93,409,0): 234, 171, 104, (93,410,0): 233, 172, 107, (93,411,0): 232, 175, 108, (93,412,0): 229, 174, 109, (93,413,0): 225, 174, 108, (93,414,0): 223, 174, 107, (93,415,0): 221, 173, 107, (93,416,0): 217, 172, 107, (93,417,0): 215, 171, 108, (93,418,0): 213, 169, 104, (93,419,0): 210, 166, 101, (93,420,0): 209, 165, 100, (93,421,0): 210, 167, 99, (93,422,0): 213, 170, 101, (93,423,0): 215, 172, 103, (93,424,0): 216, 172, 101, (93,425,0): 218, 174, 103, (93,426,0): 222, 178, 105, (93,427,0): 225, 181, 108, (93,428,0): 226, 182, 107, (93,429,0): 226, 182, 107, (93,430,0): 227, 181, 106, (93,431,0): 226, 180, 105, (93,432,0): 222, 178, 105, (93,433,0): 224, 180, 107, (93,434,0): 225, 183, 107, (93,435,0): 225, 186, 107, (93,436,0): 226, 188, 107, (93,437,0): 224, 187, 106, (93,438,0): 221, 186, 104, (93,439,0): 220, 185, 103, (93,440,0): 216, 181, 100, (93,441,0): 212, 177, 96, (93,442,0): 209, 171, 96, (93,443,0): 205, 167, 96, (93,444,0): 204, 164, 95, (93,445,0): 203, 159, 94, (93,446,0): 199, 153, 93, (93,447,0): 194, 150, 89, (93,448,0): 186, 148, 86, (93,449,0): 182, 148, 85, (93,450,0): 181, 147, 86, (93,451,0): 183, 149, 88, (93,452,0): 184, 152, 93, (93,453,0): 184, 152, 95, (93,454,0): 181, 150, 93, (93,455,0): 178, 147, 92, (93,456,0): 170, 140, 86, (93,457,0): 166, 136, 84, (93,458,0): 158, 130, 80, (93,459,0): 151, 123, 75, (93,460,0): 144, 118, 69, (93,461,0): 141, 114, 67, (93,462,0): 139, 112, 65, (93,463,0): 136, 112, 68, (93,464,0): 131, 109, 68, (93,465,0): 130, 111, 71, (93,466,0): 132, 113, 73, (93,467,0): 134, 115, 75, (93,468,0): 137, 115, 78, (93,469,0): 137, 115, 78, (93,470,0): 137, 115, 78, (93,471,0): 136, 114, 77, (93,472,0): 134, 110, 76, (93,473,0): 133, 109, 75, (93,474,0): 132, 105, 75, (93,475,0): 130, 103, 73, (93,476,0): 130, 103, 73, (93,477,0): 132, 105, 75, (93,478,0): 136, 106, 78, (93,479,0): 137, 107, 79, (93,480,0): 141, 110, 82, (93,481,0): 140, 109, 81, (93,482,0): 140, 109, 81, (93,483,0): 139, 108, 80, (93,484,0): 137, 106, 78, (93,485,0): 134, 103, 75, (93,486,0): 134, 100, 73, (93,487,0): 132, 98, 71, (93,488,0): 134, 98, 72, (93,489,0): 135, 99, 73, (93,490,0): 140, 103, 77, (93,491,0): 143, 106, 80, (93,492,0): 145, 108, 82, (93,493,0): 146, 109, 83, (93,494,0): 147, 110, 84, (93,495,0): 146, 110, 84, (93,496,0): 138, 107, 79, (93,497,0): 136, 106, 78, (93,498,0): 131, 104, 75, (93,499,0): 128, 101, 72, (93,500,0): 124, 97, 70, (93,501,0): 120, 93, 66, (93,502,0): 116, 90, 65, (93,503,0): 114, 88, 65, (93,504,0): 113, 89, 65, (93,505,0): 113, 88, 66, (93,506,0): 113, 88, 68, (93,507,0): 112, 86, 69, (93,508,0): 108, 85, 67, (93,509,0): 105, 82, 66, (93,510,0): 103, 80, 64, (93,511,0): 100, 79, 62, (93,512,0): 94, 72, 58, (93,513,0): 93, 74, 60, (93,514,0): 93, 74, 60, (93,515,0): 94, 75, 61, (93,516,0): 95, 76, 62, (93,517,0): 96, 77, 63, (93,518,0): 96, 77, 63, (93,519,0): 97, 78, 64, (93,520,0): 92, 73, 59, (93,521,0): 94, 75, 61, (93,522,0): 96, 77, 63, (93,523,0): 97, 78, 64, (93,524,0): 98, 79, 65, (93,525,0): 96, 77, 63, (93,526,0): 94, 75, 61, (93,527,0): 92, 74, 60, (93,528,0): 94, 78, 65, (93,529,0): 94, 80, 67, (93,530,0): 95, 82, 66, (93,531,0): 97, 84, 68, (93,532,0): 100, 84, 69, (93,533,0): 101, 85, 70, (93,534,0): 102, 83, 68, (93,535,0): 102, 83, 68, (93,536,0): 107, 86, 69, (93,537,0): 107, 86, 69, (93,538,0): 110, 84, 69, (93,539,0): 109, 83, 68, (93,540,0): 110, 83, 66, (93,541,0): 110, 83, 66, (93,542,0): 109, 82, 65, (93,543,0): 109, 82, 65, (93,544,0): 108, 81, 64, (93,545,0): 108, 81, 64, (93,546,0): 108, 81, 64, (93,547,0): 107, 80, 63, (93,548,0): 106, 80, 65, (93,549,0): 105, 79, 64, (93,550,0): 103, 80, 64, (93,551,0): 103, 80, 64, (93,552,0): 102, 79, 65, (93,553,0): 102, 79, 65, (93,554,0): 101, 79, 66, (93,555,0): 101, 79, 66, (93,556,0): 99, 80, 66, (93,557,0): 99, 80, 66, (93,558,0): 99, 79, 68, (93,559,0): 99, 79, 68, (93,560,0): 103, 84, 70, (93,561,0): 102, 83, 69, (93,562,0): 101, 82, 68, (93,563,0): 99, 80, 66, (93,564,0): 98, 78, 67, (93,565,0): 96, 76, 65, (93,566,0): 95, 75, 64, (93,567,0): 94, 74, 63, (93,568,0): 91, 71, 62, (93,569,0): 89, 69, 60, (93,570,0): 85, 65, 58, (93,571,0): 83, 63, 56, (93,572,0): 82, 62, 55, (93,573,0): 84, 64, 57, (93,574,0): 86, 65, 60, (93,575,0): 88, 67, 62, (93,576,0): 88, 64, 62, (93,577,0): 87, 63, 61, (93,578,0): 83, 62, 59, (93,579,0): 80, 59, 56, (93,580,0): 78, 57, 56, (93,581,0): 75, 54, 53, (93,582,0): 72, 52, 51, (93,583,0): 71, 51, 50, (93,584,0): 71, 53, 53, (93,585,0): 70, 52, 52, (93,586,0): 68, 49, 51, (93,587,0): 66, 47, 49, (93,588,0): 62, 46, 47, (93,589,0): 60, 44, 45, (93,590,0): 59, 43, 46, (93,591,0): 58, 41, 47, (93,592,0): 54, 39, 46, (93,593,0): 53, 37, 47, (93,594,0): 52, 37, 44, (93,595,0): 52, 37, 42, (93,596,0): 50, 35, 40, (93,597,0): 50, 35, 38, (93,598,0): 49, 35, 35, (93,599,0): 48, 34, 34, (94,0,0): 26, 24, 38, (94,1,0): 26, 24, 38, (94,2,0): 27, 25, 39, (94,3,0): 27, 25, 39, (94,4,0): 29, 25, 40, (94,5,0): 29, 25, 40, (94,6,0): 30, 26, 41, (94,7,0): 30, 26, 41, (94,8,0): 31, 24, 40, (94,9,0): 31, 24, 40, (94,10,0): 33, 24, 41, (94,11,0): 34, 25, 42, (94,12,0): 35, 26, 43, (94,13,0): 36, 27, 44, (94,14,0): 39, 28, 45, (94,15,0): 37, 29, 44, (94,16,0): 38, 32, 46, (94,17,0): 36, 33, 44, (94,18,0): 38, 32, 44, (94,19,0): 39, 33, 45, (94,20,0): 42, 32, 43, (94,21,0): 43, 33, 44, (94,22,0): 44, 32, 44, (94,23,0): 46, 32, 45, (94,24,0): 51, 35, 46, (94,25,0): 53, 35, 47, (94,26,0): 56, 36, 47, (94,27,0): 57, 37, 48, (94,28,0): 60, 36, 49, (94,29,0): 61, 37, 50, (94,30,0): 64, 38, 49, (94,31,0): 64, 38, 47, (94,32,0): 66, 39, 46, (94,33,0): 65, 38, 43, (94,34,0): 65, 38, 43, (94,35,0): 65, 38, 43, (94,36,0): 65, 38, 45, (94,37,0): 64, 37, 44, (94,38,0): 64, 37, 44, (94,39,0): 64, 37, 44, (94,40,0): 62, 35, 44, (94,41,0): 61, 34, 43, (94,42,0): 60, 32, 44, (94,43,0): 59, 31, 43, (94,44,0): 58, 30, 42, (94,45,0): 57, 29, 41, (94,46,0): 56, 28, 42, (94,47,0): 54, 27, 42, (94,48,0): 53, 29, 45, (94,49,0): 51, 28, 46, (94,50,0): 50, 27, 45, (94,51,0): 49, 26, 44, (94,52,0): 47, 26, 45, (94,53,0): 48, 27, 46, (94,54,0): 48, 27, 46, (94,55,0): 49, 28, 47, (94,56,0): 43, 24, 44, (94,57,0): 42, 23, 43, (94,58,0): 40, 22, 44, (94,59,0): 39, 21, 43, (94,60,0): 38, 20, 42, (94,61,0): 38, 20, 42, (94,62,0): 37, 22, 45, (94,63,0): 37, 23, 46, (94,64,0): 33, 21, 45, (94,65,0): 31, 21, 45, (94,66,0): 29, 19, 43, (94,67,0): 28, 18, 42, (94,68,0): 28, 18, 42, (94,69,0): 28, 18, 42, (94,70,0): 28, 18, 42, (94,71,0): 29, 19, 43, (94,72,0): 27, 17, 41, (94,73,0): 27, 17, 41, (94,74,0): 27, 17, 41, (94,75,0): 28, 18, 42, (94,76,0): 28, 18, 42, (94,77,0): 28, 18, 42, (94,78,0): 28, 18, 42, (94,79,0): 28, 19, 40, (94,80,0): 27, 15, 37, (94,81,0): 27, 15, 35, (94,82,0): 26, 17, 36, (94,83,0): 27, 18, 37, (94,84,0): 27, 18, 39, (94,85,0): 28, 19, 40, (94,86,0): 28, 20, 41, (94,87,0): 28, 20, 41, (94,88,0): 25, 20, 42, (94,89,0): 24, 19, 41, (94,90,0): 23, 18, 41, (94,91,0): 21, 16, 39, (94,92,0): 20, 16, 39, (94,93,0): 20, 16, 39, (94,94,0): 21, 17, 42, (94,95,0): 21, 17, 42, (94,96,0): 19, 15, 38, (94,97,0): 18, 14, 37, (94,98,0): 18, 14, 37, (94,99,0): 18, 14, 37, (94,100,0): 17, 13, 36, (94,101,0): 17, 13, 36, (94,102,0): 16, 12, 35, (94,103,0): 16, 12, 35, (94,104,0): 17, 13, 36, (94,105,0): 17, 13, 36, (94,106,0): 17, 13, 36, (94,107,0): 17, 13, 36, (94,108,0): 17, 13, 36, (94,109,0): 17, 13, 36, (94,110,0): 17, 13, 36, (94,111,0): 17, 13, 36, (94,112,0): 19, 16, 37, (94,113,0): 19, 16, 37, (94,114,0): 19, 16, 37, (94,115,0): 19, 16, 37, (94,116,0): 18, 15, 36, (94,117,0): 18, 15, 36, (94,118,0): 18, 15, 36, (94,119,0): 18, 15, 36, (94,120,0): 19, 16, 37, (94,121,0): 19, 16, 37, (94,122,0): 19, 16, 37, (94,123,0): 19, 16, 37, (94,124,0): 19, 16, 37, (94,125,0): 19, 16, 37, (94,126,0): 19, 16, 37, (94,127,0): 19, 16, 37, (94,128,0): 18, 13, 35, (94,129,0): 21, 13, 36, (94,130,0): 21, 13, 36, (94,131,0): 22, 14, 37, (94,132,0): 22, 14, 35, (94,133,0): 23, 15, 36, (94,134,0): 24, 15, 36, (94,135,0): 24, 15, 36, (94,136,0): 27, 15, 35, (94,137,0): 28, 16, 36, (94,138,0): 29, 16, 34, (94,139,0): 30, 17, 35, (94,140,0): 31, 18, 36, (94,141,0): 31, 18, 36, (94,142,0): 31, 18, 35, (94,143,0): 31, 18, 35, (94,144,0): 32, 19, 37, (94,145,0): 32, 19, 37, (94,146,0): 32, 19, 37, (94,147,0): 33, 20, 38, (94,148,0): 33, 20, 38, (94,149,0): 34, 21, 39, (94,150,0): 34, 21, 39, (94,151,0): 34, 21, 39, (94,152,0): 33, 20, 38, (94,153,0): 33, 20, 38, (94,154,0): 33, 20, 38, (94,155,0): 33, 20, 38, (94,156,0): 33, 20, 38, (94,157,0): 33, 20, 38, (94,158,0): 33, 20, 38, (94,159,0): 32, 21, 38, (94,160,0): 34, 23, 40, (94,161,0): 32, 23, 40, (94,162,0): 32, 23, 40, (94,163,0): 32, 23, 40, (94,164,0): 32, 23, 40, (94,165,0): 32, 23, 40, (94,166,0): 32, 23, 40, (94,167,0): 32, 23, 40, (94,168,0): 32, 23, 40, (94,169,0): 32, 23, 40, (94,170,0): 32, 23, 40, (94,171,0): 32, 23, 40, (94,172,0): 32, 23, 40, (94,173,0): 32, 23, 40, (94,174,0): 32, 23, 40, (94,175,0): 32, 23, 40, (94,176,0): 31, 25, 39, (94,177,0): 31, 25, 39, (94,178,0): 30, 24, 38, (94,179,0): 29, 23, 37, (94,180,0): 29, 23, 37, (94,181,0): 30, 24, 38, (94,182,0): 31, 25, 39, (94,183,0): 31, 25, 39, (94,184,0): 31, 25, 39, (94,185,0): 31, 25, 39, (94,186,0): 31, 25, 39, (94,187,0): 32, 26, 40, (94,188,0): 32, 26, 40, (94,189,0): 33, 27, 41, (94,190,0): 33, 27, 41, (94,191,0): 34, 26, 41, (94,192,0): 37, 26, 43, (94,193,0): 38, 25, 43, (94,194,0): 38, 25, 42, (94,195,0): 39, 26, 43, (94,196,0): 40, 26, 43, (94,197,0): 41, 27, 44, (94,198,0): 41, 27, 42, (94,199,0): 41, 27, 42, (94,200,0): 45, 29, 42, (94,201,0): 45, 29, 42, (94,202,0): 46, 28, 42, (94,203,0): 46, 28, 42, (94,204,0): 46, 28, 40, (94,205,0): 46, 28, 40, (94,206,0): 48, 28, 40, (94,207,0): 46, 28, 40, (94,208,0): 45, 29, 40, (94,209,0): 43, 30, 40, (94,210,0): 46, 30, 41, (94,211,0): 46, 30, 41, (94,212,0): 47, 31, 41, (94,213,0): 47, 31, 41, (94,214,0): 49, 32, 42, (94,215,0): 49, 32, 42, (94,216,0): 51, 31, 40, (94,217,0): 51, 31, 40, (94,218,0): 51, 32, 38, (94,219,0): 51, 32, 38, (94,220,0): 52, 31, 38, (94,221,0): 52, 31, 38, (94,222,0): 52, 31, 36, (94,223,0): 52, 31, 36, (94,224,0): 53, 30, 38, (94,225,0): 53, 30, 38, (94,226,0): 53, 30, 38, (94,227,0): 53, 30, 38, (94,228,0): 53, 30, 38, (94,229,0): 53, 30, 38, (94,230,0): 53, 30, 38, (94,231,0): 53, 30, 38, (94,232,0): 53, 30, 38, (94,233,0): 53, 30, 38, (94,234,0): 53, 30, 38, (94,235,0): 53, 30, 38, (94,236,0): 53, 30, 38, (94,237,0): 53, 30, 38, (94,238,0): 53, 30, 38, (94,239,0): 53, 30, 36, (94,240,0): 58, 33, 37, (94,241,0): 58, 33, 36, (94,242,0): 59, 33, 36, (94,243,0): 59, 33, 36, (94,244,0): 59, 33, 36, (94,245,0): 59, 33, 36, (94,246,0): 61, 32, 36, (94,247,0): 61, 32, 36, (94,248,0): 61, 30, 35, (94,249,0): 61, 30, 35, (94,250,0): 61, 30, 35, (94,251,0): 60, 29, 34, (94,252,0): 60, 28, 33, (94,253,0): 60, 28, 33, (94,254,0): 59, 27, 32, (94,255,0): 61, 26, 30, (94,256,0): 65, 29, 33, (94,257,0): 65, 29, 31, (94,258,0): 66, 30, 32, (94,259,0): 66, 30, 32, (94,260,0): 67, 31, 33, (94,261,0): 67, 31, 33, (94,262,0): 68, 32, 34, (94,263,0): 68, 32, 34, (94,264,0): 72, 36, 38, (94,265,0): 73, 37, 39, (94,266,0): 73, 37, 39, (94,267,0): 74, 38, 40, (94,268,0): 74, 38, 40, (94,269,0): 75, 39, 41, (94,270,0): 75, 39, 41, (94,271,0): 75, 39, 39, (94,272,0): 79, 39, 39, (94,273,0): 79, 39, 37, (94,274,0): 80, 40, 38, (94,275,0): 81, 41, 39, (94,276,0): 82, 43, 38, (94,277,0): 83, 44, 39, (94,278,0): 84, 45, 38, (94,279,0): 84, 45, 38, (94,280,0): 85, 46, 39, (94,281,0): 85, 46, 39, (94,282,0): 86, 48, 39, (94,283,0): 88, 50, 41, (94,284,0): 90, 52, 41, (94,285,0): 91, 53, 42, (94,286,0): 92, 54, 43, (94,287,0): 93, 55, 44, (94,288,0): 92, 54, 41, (94,289,0): 95, 57, 44, (94,290,0): 98, 60, 47, (94,291,0): 100, 63, 47, (94,292,0): 102, 63, 48, (94,293,0): 106, 68, 49, (94,294,0): 113, 72, 52, (94,295,0): 118, 76, 52, (94,296,0): 123, 79, 50, (94,297,0): 132, 86, 53, (94,298,0): 138, 88, 51, (94,299,0): 142, 89, 47, (94,300,0): 150, 93, 48, (94,301,0): 163, 102, 55, (94,302,0): 168, 106, 57, (94,303,0): 165, 105, 55, (94,304,0): 159, 103, 56, (94,305,0): 151, 99, 52, (94,306,0): 142, 95, 49, (94,307,0): 137, 94, 49, (94,308,0): 135, 98, 53, (94,309,0): 135, 103, 56, (94,310,0): 135, 104, 60, (94,311,0): 133, 104, 60, (94,312,0): 135, 104, 60, (94,313,0): 135, 104, 60, (94,314,0): 136, 105, 59, (94,315,0): 136, 105, 59, (94,316,0): 135, 107, 59, (94,317,0): 135, 109, 58, (94,318,0): 133, 110, 58, (94,319,0): 134, 111, 59, (94,320,0): 138, 112, 63, (94,321,0): 140, 112, 65, (94,322,0): 141, 113, 66, (94,323,0): 143, 115, 68, (94,324,0): 144, 117, 70, (94,325,0): 145, 118, 71, (94,326,0): 145, 121, 73, (94,327,0): 145, 121, 73, (94,328,0): 146, 122, 74, (94,329,0): 147, 123, 75, (94,330,0): 147, 125, 76, (94,331,0): 148, 126, 77, (94,332,0): 146, 126, 76, (94,333,0): 146, 126, 76, (94,334,0): 144, 124, 74, (94,335,0): 143, 122, 75, (94,336,0): 144, 121, 79, (94,337,0): 145, 122, 81, (94,338,0): 146, 123, 82, (94,339,0): 148, 125, 84, (94,340,0): 149, 126, 85, (94,341,0): 151, 128, 87, (94,342,0): 152, 129, 88, (94,343,0): 153, 130, 89, (94,344,0): 153, 130, 89, (94,345,0): 154, 131, 90, (94,346,0): 156, 133, 92, (94,347,0): 158, 135, 94, (94,348,0): 159, 136, 95, (94,349,0): 159, 136, 95, (94,350,0): 159, 136, 95, (94,351,0): 159, 136, 95, (94,352,0): 164, 139, 98, (94,353,0): 164, 139, 98, (94,354,0): 164, 139, 98, (94,355,0): 164, 139, 98, (94,356,0): 166, 138, 99, (94,357,0): 166, 138, 99, (94,358,0): 166, 138, 101, (94,359,0): 166, 138, 101, (94,360,0): 167, 137, 101, (94,361,0): 165, 135, 99, (94,362,0): 166, 133, 100, (94,363,0): 164, 131, 98, (94,364,0): 163, 130, 99, (94,365,0): 163, 130, 99, (94,366,0): 164, 129, 99, (94,367,0): 164, 130, 102, (94,368,0): 162, 130, 107, (94,369,0): 162, 130, 109, (94,370,0): 164, 129, 110, (94,371,0): 165, 128, 109, (94,372,0): 168, 127, 109, (94,373,0): 168, 127, 107, (94,374,0): 168, 127, 105, (94,375,0): 168, 128, 103, (94,376,0): 172, 132, 106, (94,377,0): 172, 131, 101, (94,378,0): 174, 131, 97, (94,379,0): 181, 133, 97, (94,380,0): 191, 137, 99, (94,381,0): 205, 145, 108, (94,382,0): 220, 152, 113, (94,383,0): 230, 157, 116, (94,384,0): 238, 156, 109, (94,385,0): 245, 157, 107, (94,386,0): 251, 161, 111, (94,387,0): 254, 162, 111, (94,388,0): 253, 162, 109, (94,389,0): 252, 158, 104, (94,390,0): 248, 153, 97, (94,391,0): 245, 150, 92, (94,392,0): 243, 148, 90, (94,393,0): 242, 149, 90, (94,394,0): 240, 149, 92, (94,395,0): 238, 149, 91, (94,396,0): 236, 147, 91, (94,397,0): 232, 146, 89, (94,398,0): 228, 143, 88, (94,399,0): 223, 143, 82, (94,400,0): 229, 156, 87, (94,401,0): 230, 162, 87, (94,402,0): 238, 169, 94, (94,403,0): 244, 174, 102, (94,404,0): 247, 177, 105, (94,405,0): 246, 176, 106, (94,406,0): 243, 173, 103, (94,407,0): 240, 171, 102, (94,408,0): 240, 173, 105, (94,409,0): 237, 174, 105, (94,410,0): 235, 176, 108, (94,411,0): 232, 178, 108, (94,412,0): 229, 176, 108, (94,413,0): 226, 176, 107, (94,414,0): 223, 174, 105, (94,415,0): 219, 174, 106, (94,416,0): 214, 170, 105, (94,417,0): 210, 169, 105, (94,418,0): 209, 168, 104, (94,419,0): 208, 167, 101, (94,420,0): 210, 166, 101, (94,421,0): 212, 169, 101, (94,422,0): 215, 172, 103, (94,423,0): 216, 173, 104, (94,424,0): 217, 173, 102, (94,425,0): 219, 175, 104, (94,426,0): 223, 179, 106, (94,427,0): 226, 182, 109, (94,428,0): 230, 184, 109, (94,429,0): 230, 184, 109, (94,430,0): 229, 183, 106, (94,431,0): 228, 182, 107, (94,432,0): 228, 181, 109, (94,433,0): 228, 184, 111, (94,434,0): 231, 187, 112, (94,435,0): 233, 192, 113, (94,436,0): 232, 194, 113, (94,437,0): 229, 192, 111, (94,438,0): 226, 191, 107, (94,439,0): 225, 190, 106, (94,440,0): 222, 187, 105, (94,441,0): 217, 182, 101, (94,442,0): 212, 176, 100, (94,443,0): 208, 170, 97, (94,444,0): 206, 166, 97, (94,445,0): 204, 160, 95, (94,446,0): 199, 155, 94, (94,447,0): 193, 152, 90, (94,448,0): 188, 153, 89, (94,449,0): 186, 152, 88, (94,450,0): 184, 153, 89, (94,451,0): 185, 153, 92, (94,452,0): 186, 154, 93, (94,453,0): 185, 153, 94, (94,454,0): 180, 149, 92, (94,455,0): 176, 145, 90, (94,456,0): 170, 140, 86, (94,457,0): 166, 136, 84, (94,458,0): 158, 131, 78, (94,459,0): 151, 123, 73, (94,460,0): 145, 119, 68, (94,461,0): 141, 115, 66, (94,462,0): 139, 113, 64, (94,463,0): 136, 112, 66, (94,464,0): 129, 107, 66, (94,465,0): 129, 110, 70, (94,466,0): 131, 112, 72, (94,467,0): 133, 114, 74, (94,468,0): 136, 114, 77, (94,469,0): 136, 114, 77, (94,470,0): 136, 114, 77, (94,471,0): 136, 114, 77, (94,472,0): 136, 112, 78, (94,473,0): 134, 110, 76, (94,474,0): 133, 106, 76, (94,475,0): 131, 104, 74, (94,476,0): 131, 104, 74, (94,477,0): 133, 106, 76, (94,478,0): 138, 108, 80, (94,479,0): 139, 109, 81, (94,480,0): 142, 111, 82, (94,481,0): 142, 111, 82, (94,482,0): 142, 111, 82, (94,483,0): 140, 109, 80, (94,484,0): 140, 106, 78, (94,485,0): 136, 102, 74, (94,486,0): 133, 99, 71, (94,487,0): 131, 97, 69, (94,488,0): 133, 98, 70, (94,489,0): 136, 101, 73, (94,490,0): 140, 103, 76, (94,491,0): 143, 106, 79, (94,492,0): 144, 107, 80, (94,493,0): 142, 105, 78, (94,494,0): 142, 102, 76, (94,495,0): 138, 101, 74, (94,496,0): 129, 98, 69, (94,497,0): 129, 100, 70, (94,498,0): 131, 102, 72, (94,499,0): 131, 102, 72, (94,500,0): 128, 101, 72, (94,501,0): 125, 98, 71, (94,502,0): 121, 95, 68, (94,503,0): 119, 93, 68, (94,504,0): 114, 88, 65, (94,505,0): 115, 88, 67, (94,506,0): 114, 89, 67, (94,507,0): 114, 89, 69, (94,508,0): 111, 89, 68, (94,509,0): 109, 86, 68, (94,510,0): 106, 83, 65, (94,511,0): 104, 83, 66, (94,512,0): 98, 76, 62, (94,513,0): 96, 77, 63, (94,514,0): 96, 77, 63, (94,515,0): 96, 77, 63, (94,516,0): 97, 78, 64, (94,517,0): 97, 78, 64, (94,518,0): 97, 78, 64, (94,519,0): 97, 78, 64, (94,520,0): 94, 75, 61, (94,521,0): 96, 77, 63, (94,522,0): 98, 79, 65, (94,523,0): 100, 81, 67, (94,524,0): 99, 80, 66, (94,525,0): 97, 78, 64, (94,526,0): 95, 76, 62, (94,527,0): 92, 74, 60, (94,528,0): 95, 79, 66, (94,529,0): 95, 81, 68, (94,530,0): 97, 84, 68, (94,531,0): 98, 85, 69, (94,532,0): 101, 85, 70, (94,533,0): 102, 86, 71, (94,534,0): 103, 84, 69, (94,535,0): 103, 84, 69, (94,536,0): 110, 89, 72, (94,537,0): 109, 88, 71, (94,538,0): 112, 86, 71, (94,539,0): 111, 85, 70, (94,540,0): 111, 84, 67, (94,541,0): 111, 84, 67, (94,542,0): 110, 83, 66, (94,543,0): 110, 83, 66, (94,544,0): 108, 81, 64, (94,545,0): 108, 81, 64, (94,546,0): 107, 81, 64, (94,547,0): 107, 81, 64, (94,548,0): 106, 80, 65, (94,549,0): 105, 79, 64, (94,550,0): 102, 79, 65, (94,551,0): 102, 79, 65, (94,552,0): 101, 79, 65, (94,553,0): 101, 79, 65, (94,554,0): 101, 79, 66, (94,555,0): 101, 79, 66, (94,556,0): 99, 79, 68, (94,557,0): 99, 79, 68, (94,558,0): 99, 79, 68, (94,559,0): 99, 79, 68, (94,560,0): 101, 82, 68, (94,561,0): 100, 81, 67, (94,562,0): 99, 80, 66, (94,563,0): 97, 78, 64, (94,564,0): 96, 76, 65, (94,565,0): 94, 74, 63, (94,566,0): 93, 73, 62, (94,567,0): 92, 72, 61, (94,568,0): 87, 67, 58, (94,569,0): 86, 66, 57, (94,570,0): 84, 64, 57, (94,571,0): 82, 62, 55, (94,572,0): 82, 62, 55, (94,573,0): 83, 63, 56, (94,574,0): 84, 63, 58, (94,575,0): 85, 64, 59, (94,576,0): 84, 60, 58, (94,577,0): 84, 60, 58, (94,578,0): 80, 59, 56, (94,579,0): 79, 58, 55, (94,580,0): 77, 56, 55, (94,581,0): 76, 55, 54, (94,582,0): 73, 53, 52, (94,583,0): 73, 53, 52, (94,584,0): 72, 54, 54, (94,585,0): 71, 53, 53, (94,586,0): 70, 51, 53, (94,587,0): 68, 49, 51, (94,588,0): 63, 47, 48, (94,589,0): 61, 45, 46, (94,590,0): 60, 44, 47, (94,591,0): 59, 42, 48, (94,592,0): 54, 39, 46, (94,593,0): 52, 39, 48, (94,594,0): 51, 38, 45, (94,595,0): 50, 38, 42, (94,596,0): 48, 36, 40, (94,597,0): 47, 35, 37, (94,598,0): 46, 34, 34, (94,599,0): 46, 34, 34, (95,0,0): 26, 24, 38, (95,1,0): 26, 24, 37, (95,2,0): 27, 25, 39, (95,3,0): 27, 25, 39, (95,4,0): 29, 25, 40, (95,5,0): 29, 25, 40, (95,6,0): 30, 26, 41, (95,7,0): 30, 26, 41, (95,8,0): 31, 24, 40, (95,9,0): 31, 24, 40, (95,10,0): 33, 24, 41, (95,11,0): 34, 25, 42, (95,12,0): 35, 26, 43, (95,13,0): 36, 27, 44, (95,14,0): 37, 28, 45, (95,15,0): 37, 29, 44, (95,16,0): 38, 32, 44, (95,17,0): 38, 32, 42, (95,18,0): 39, 33, 43, (95,19,0): 40, 32, 43, (95,20,0): 43, 33, 42, (95,21,0): 44, 32, 42, (95,22,0): 45, 33, 43, (95,23,0): 46, 33, 43, (95,24,0): 53, 36, 46, (95,25,0): 56, 36, 47, (95,26,0): 57, 37, 48, (95,27,0): 59, 38, 47, (95,28,0): 61, 37, 50, (95,29,0): 64, 38, 49, (95,30,0): 65, 39, 50, (95,31,0): 66, 39, 48, (95,32,0): 69, 39, 47, (95,33,0): 70, 39, 47, (95,34,0): 69, 38, 46, (95,35,0): 68, 37, 45, (95,36,0): 66, 36, 46, (95,37,0): 66, 36, 46, (95,38,0): 65, 35, 45, (95,39,0): 63, 36, 45, (95,40,0): 58, 30, 42, (95,41,0): 58, 30, 42, (95,42,0): 56, 30, 43, (95,43,0): 54, 28, 41, (95,44,0): 53, 27, 40, (95,45,0): 50, 26, 39, (95,46,0): 49, 25, 39, (95,47,0): 48, 24, 38, (95,48,0): 51, 28, 46, (95,49,0): 49, 28, 45, (95,50,0): 48, 27, 44, (95,51,0): 47, 26, 43, (95,52,0): 47, 26, 45, (95,53,0): 45, 26, 45, (95,54,0): 46, 27, 46, (95,55,0): 47, 28, 47, (95,56,0): 43, 24, 44, (95,57,0): 41, 24, 43, (95,58,0): 39, 22, 41, (95,59,0): 36, 21, 40, (95,60,0): 36, 21, 42, (95,61,0): 36, 21, 42, (95,62,0): 37, 22, 43, (95,63,0): 36, 22, 45, (95,64,0): 29, 20, 41, (95,65,0): 28, 19, 40, (95,66,0): 26, 16, 40, (95,67,0): 24, 15, 36, (95,68,0): 23, 13, 37, (95,69,0): 24, 15, 36, (95,70,0): 25, 15, 39, (95,71,0): 26, 17, 38, (95,72,0): 26, 16, 40, (95,73,0): 27, 18, 39, (95,74,0): 27, 17, 41, (95,75,0): 27, 18, 39, (95,76,0): 27, 17, 41, (95,77,0): 28, 19, 40, (95,78,0): 28, 18, 42, (95,79,0): 28, 19, 40, (95,80,0): 27, 15, 35, (95,81,0): 27, 15, 35, (95,82,0): 26, 17, 36, (95,83,0): 27, 18, 37, (95,84,0): 27, 18, 39, (95,85,0): 28, 19, 40, (95,86,0): 28, 20, 41, (95,87,0): 28, 20, 41, (95,88,0): 25, 20, 40, (95,89,0): 24, 19, 41, (95,90,0): 23, 18, 40, (95,91,0): 21, 16, 38, (95,92,0): 20, 17, 38, (95,93,0): 20, 17, 38, (95,94,0): 21, 17, 40, (95,95,0): 21, 17, 40, (95,96,0): 19, 16, 37, (95,97,0): 18, 15, 36, (95,98,0): 19, 14, 36, (95,99,0): 17, 14, 35, (95,100,0): 18, 13, 35, (95,101,0): 16, 13, 34, (95,102,0): 17, 12, 34, (95,103,0): 16, 13, 34, (95,104,0): 17, 12, 34, (95,105,0): 17, 14, 35, (95,106,0): 18, 13, 35, (95,107,0): 18, 15, 36, (95,108,0): 19, 14, 36, (95,109,0): 17, 14, 35, (95,110,0): 18, 13, 35, (95,111,0): 17, 12, 34, (95,112,0): 22, 17, 39, (95,113,0): 21, 16, 36, (95,114,0): 21, 16, 38, (95,115,0): 20, 15, 35, (95,116,0): 19, 14, 36, (95,117,0): 18, 13, 33, (95,118,0): 18, 13, 35, (95,119,0): 16, 13, 32, (95,120,0): 19, 16, 37, (95,121,0): 19, 16, 35, (95,122,0): 19, 16, 37, (95,123,0): 19, 16, 35, (95,124,0): 19, 16, 37, (95,125,0): 19, 16, 35, (95,126,0): 19, 16, 37, (95,127,0): 19, 16, 37, (95,128,0): 18, 13, 35, (95,129,0): 20, 12, 35, (95,130,0): 21, 13, 36, (95,131,0): 21, 13, 36, (95,132,0): 22, 14, 35, (95,133,0): 22, 14, 35, (95,134,0): 24, 15, 36, (95,135,0): 24, 15, 36, (95,136,0): 30, 18, 38, (95,137,0): 29, 17, 37, (95,138,0): 28, 15, 33, (95,139,0): 27, 14, 32, (95,140,0): 28, 15, 33, (95,141,0): 30, 17, 35, (95,142,0): 32, 19, 36, (95,143,0): 34, 21, 38, (95,144,0): 32, 19, 36, (95,145,0): 32, 19, 36, (95,146,0): 32, 19, 37, (95,147,0): 33, 20, 37, (95,148,0): 33, 20, 38, (95,149,0): 34, 21, 38, (95,150,0): 34, 21, 39, (95,151,0): 34, 21, 38, (95,152,0): 33, 20, 38, (95,153,0): 33, 20, 37, (95,154,0): 33, 20, 38, (95,155,0): 33, 20, 37, (95,156,0): 33, 20, 38, (95,157,0): 33, 20, 37, (95,158,0): 33, 20, 38, (95,159,0): 33, 20, 37, (95,160,0): 34, 23, 40, (95,161,0): 32, 24, 39, (95,162,0): 34, 23, 40, (95,163,0): 32, 24, 39, (95,164,0): 34, 23, 40, (95,165,0): 32, 24, 39, (95,166,0): 34, 23, 40, (95,167,0): 32, 24, 39, (95,168,0): 34, 23, 40, (95,169,0): 32, 24, 39, (95,170,0): 34, 23, 40, (95,171,0): 32, 24, 39, (95,172,0): 34, 23, 40, (95,173,0): 32, 24, 39, (95,174,0): 34, 23, 40, (95,175,0): 32, 24, 39, (95,176,0): 33, 25, 40, (95,177,0): 32, 24, 39, (95,178,0): 31, 23, 38, (95,179,0): 30, 22, 37, (95,180,0): 30, 22, 37, (95,181,0): 31, 23, 38, (95,182,0): 32, 24, 39, (95,183,0): 33, 25, 40, (95,184,0): 32, 24, 39, (95,185,0): 32, 24, 39, (95,186,0): 32, 24, 39, (95,187,0): 33, 25, 40, (95,188,0): 33, 25, 40, (95,189,0): 34, 26, 41, (95,190,0): 34, 26, 41, (95,191,0): 34, 26, 41, (95,192,0): 37, 26, 42, (95,193,0): 38, 25, 42, (95,194,0): 38, 25, 42, (95,195,0): 39, 26, 43, (95,196,0): 40, 26, 43, (95,197,0): 41, 27, 42, (95,198,0): 41, 27, 42, (95,199,0): 41, 27, 40, (95,200,0): 45, 29, 42, (95,201,0): 45, 29, 42, (95,202,0): 46, 28, 42, (95,203,0): 46, 28, 40, (95,204,0): 46, 28, 40, (95,205,0): 46, 28, 40, (95,206,0): 48, 28, 40, (95,207,0): 46, 28, 40, (95,208,0): 45, 29, 40, (95,209,0): 45, 29, 40, (95,210,0): 46, 30, 41, (95,211,0): 46, 30, 40, (95,212,0): 48, 31, 41, (95,213,0): 48, 31, 41, (95,214,0): 49, 32, 42, (95,215,0): 49, 32, 40, (95,216,0): 51, 31, 40, (95,217,0): 51, 32, 38, (95,218,0): 51, 32, 38, (95,219,0): 51, 32, 38, (95,220,0): 52, 31, 38, (95,221,0): 52, 31, 36, (95,222,0): 52, 31, 36, (95,223,0): 52, 31, 36, (95,224,0): 53, 30, 36, (95,225,0): 53, 30, 36, (95,226,0): 53, 30, 36, (95,227,0): 53, 30, 36, (95,228,0): 53, 30, 36, (95,229,0): 53, 30, 36, (95,230,0): 53, 30, 36, (95,231,0): 53, 30, 36, (95,232,0): 53, 30, 36, (95,233,0): 53, 30, 36, (95,234,0): 53, 30, 36, (95,235,0): 53, 30, 36, (95,236,0): 53, 30, 36, (95,237,0): 53, 30, 36, (95,238,0): 53, 30, 36, (95,239,0): 53, 30, 36, (95,240,0): 58, 33, 37, (95,241,0): 59, 33, 36, (95,242,0): 59, 33, 36, (95,243,0): 59, 33, 36, (95,244,0): 61, 32, 36, (95,245,0): 61, 32, 36, (95,246,0): 61, 32, 36, (95,247,0): 61, 32, 36, (95,248,0): 61, 30, 35, (95,249,0): 61, 30, 35, (95,250,0): 60, 29, 34, (95,251,0): 60, 29, 34, (95,252,0): 60, 28, 33, (95,253,0): 59, 27, 32, (95,254,0): 58, 26, 31, (95,255,0): 58, 26, 31, (95,256,0): 64, 29, 33, (95,257,0): 64, 30, 31, (95,258,0): 64, 29, 33, (95,259,0): 65, 31, 32, (95,260,0): 65, 31, 32, (95,261,0): 66, 32, 33, (95,262,0): 66, 32, 33, (95,263,0): 68, 32, 34, (95,264,0): 72, 36, 38, (95,265,0): 72, 36, 38, (95,266,0): 73, 37, 39, (95,267,0): 73, 37, 39, (95,268,0): 74, 38, 40, (95,269,0): 74, 38, 40, (95,270,0): 75, 39, 41, (95,271,0): 75, 39, 39, (95,272,0): 77, 39, 38, (95,273,0): 78, 40, 37, (95,274,0): 80, 40, 40, (95,275,0): 80, 42, 39, (95,276,0): 82, 42, 40, (95,277,0): 82, 45, 39, (95,278,0): 83, 44, 39, (95,279,0): 83, 46, 40, (95,280,0): 84, 45, 40, (95,281,0): 84, 47, 39, (95,282,0): 86, 47, 40, (95,283,0): 87, 50, 41, (95,284,0): 89, 51, 42, (95,285,0): 90, 53, 44, (95,286,0): 92, 54, 45, (95,287,0): 92, 56, 44, (95,288,0): 89, 53, 41, (95,289,0): 92, 56, 42, (95,290,0): 96, 60, 46, (95,291,0): 99, 62, 46, (95,292,0): 100, 63, 45, (95,293,0): 105, 67, 48, (95,294,0): 113, 72, 52, (95,295,0): 118, 76, 52, (95,296,0): 123, 79, 52, (95,297,0): 131, 84, 54, (95,298,0): 136, 87, 54, (95,299,0): 139, 87, 48, (95,300,0): 146, 92, 48, (95,301,0): 157, 101, 52, (95,302,0): 162, 105, 52, (95,303,0): 159, 104, 50, (95,304,0): 155, 101, 54, (95,305,0): 147, 99, 51, (95,306,0): 141, 94, 48, (95,307,0): 136, 95, 49, (95,308,0): 136, 100, 52, (95,309,0): 136, 104, 57, (95,310,0): 137, 106, 60, (95,311,0): 137, 106, 60, (95,312,0): 136, 105, 59, (95,313,0): 136, 105, 59, (95,314,0): 136, 105, 59, (95,315,0): 137, 106, 59, (95,316,0): 135, 107, 59, (95,317,0): 134, 108, 57, (95,318,0): 132, 109, 57, (95,319,0): 133, 110, 58, (95,320,0): 138, 112, 63, (95,321,0): 140, 112, 64, (95,322,0): 141, 113, 65, (95,323,0): 143, 115, 67, (95,324,0): 144, 117, 70, (95,325,0): 146, 119, 72, (95,326,0): 145, 121, 73, (95,327,0): 146, 122, 74, (95,328,0): 148, 124, 76, (95,329,0): 148, 124, 76, (95,330,0): 148, 126, 77, (95,331,0): 149, 127, 78, (95,332,0): 147, 127, 77, (95,333,0): 146, 126, 76, (95,334,0): 145, 125, 75, (95,335,0): 144, 123, 76, (95,336,0): 145, 122, 80, (95,337,0): 145, 122, 80, (95,338,0): 146, 123, 82, (95,339,0): 148, 125, 84, (95,340,0): 150, 127, 86, (95,341,0): 151, 128, 87, (95,342,0): 152, 129, 88, (95,343,0): 153, 130, 89, (95,344,0): 154, 131, 90, (95,345,0): 155, 132, 91, (95,346,0): 157, 134, 93, (95,347,0): 159, 136, 95, (95,348,0): 160, 137, 96, (95,349,0): 160, 137, 96, (95,350,0): 160, 136, 98, (95,351,0): 159, 136, 95, (95,352,0): 163, 138, 98, (95,353,0): 163, 138, 97, (95,354,0): 163, 138, 97, (95,355,0): 163, 138, 97, (95,356,0): 165, 137, 98, (95,357,0): 165, 137, 98, (95,358,0): 165, 137, 100, (95,359,0): 165, 137, 100, (95,360,0): 166, 136, 100, (95,361,0): 165, 135, 99, (95,362,0): 166, 133, 100, (95,363,0): 164, 131, 98, (95,364,0): 164, 131, 100, (95,365,0): 164, 131, 100, (95,366,0): 165, 132, 101, (95,367,0): 165, 131, 103, (95,368,0): 162, 131, 110, (95,369,0): 162, 131, 111, (95,370,0): 163, 131, 110, (95,371,0): 166, 129, 110, (95,372,0): 167, 129, 108, (95,373,0): 169, 128, 108, (95,374,0): 169, 128, 106, (95,375,0): 169, 129, 104, (95,376,0): 173, 131, 106, (95,377,0): 174, 130, 101, (95,378,0): 176, 130, 97, (95,379,0): 182, 132, 97, (95,380,0): 195, 137, 99, (95,381,0): 209, 146, 105, (95,382,0): 223, 154, 112, (95,383,0): 235, 158, 114, (95,384,0): 246, 163, 113, (95,385,0): 249, 162, 108, (95,386,0): 252, 162, 109, (95,387,0): 253, 162, 107, (95,388,0): 254, 161, 104, (95,389,0): 251, 158, 101, (95,390,0): 249, 154, 96, (95,391,0): 247, 153, 92, (95,392,0): 243, 149, 88, (95,393,0): 242, 149, 90, (95,394,0): 240, 151, 91, (95,395,0): 237, 151, 92, (95,396,0): 234, 150, 90, (95,397,0): 228, 148, 89, (95,398,0): 224, 145, 88, (95,399,0): 219, 145, 84, (95,400,0): 226, 159, 89, (95,401,0): 229, 165, 93, (95,402,0): 236, 172, 100, (95,403,0): 245, 178, 107, (95,404,0): 247, 180, 109, (95,405,0): 246, 179, 108, (95,406,0): 242, 175, 104, (95,407,0): 237, 173, 101, (95,408,0): 239, 176, 105, (95,409,0): 238, 178, 108, (95,410,0): 235, 178, 107, (95,411,0): 233, 179, 109, (95,412,0): 228, 178, 109, (95,413,0): 225, 176, 107, (95,414,0): 221, 174, 104, (95,415,0): 218, 173, 105, (95,416,0): 213, 169, 104, (95,417,0): 209, 168, 104, (95,418,0): 209, 165, 102, (95,419,0): 209, 165, 100, (95,420,0): 211, 167, 102, (95,421,0): 214, 171, 103, (95,422,0): 216, 173, 104, (95,423,0): 217, 175, 103, (95,424,0): 218, 174, 103, (95,425,0): 220, 176, 103, (95,426,0): 223, 179, 106, (95,427,0): 227, 183, 108, (95,428,0): 231, 185, 110, (95,429,0): 231, 185, 108, (95,430,0): 230, 184, 107, (95,431,0): 230, 184, 107, (95,432,0): 232, 186, 109, (95,433,0): 234, 188, 110, (95,434,0): 238, 192, 114, (95,435,0): 238, 196, 114, (95,436,0): 238, 197, 115, (95,437,0): 235, 197, 114, (95,438,0): 233, 195, 112, (95,439,0): 230, 194, 110, (95,440,0): 228, 192, 108, (95,441,0): 223, 186, 105, (95,442,0): 216, 179, 101, (95,443,0): 210, 172, 97, (95,444,0): 207, 167, 97, (95,445,0): 203, 163, 94, (95,446,0): 199, 155, 90, (95,447,0): 192, 153, 88, (95,448,0): 188, 155, 88, (95,449,0): 185, 154, 89, (95,450,0): 184, 153, 89, (95,451,0): 185, 154, 90, (95,452,0): 185, 153, 92, (95,453,0): 182, 150, 91, (95,454,0): 177, 145, 88, (95,455,0): 171, 140, 85, (95,456,0): 171, 140, 86, (95,457,0): 166, 136, 84, (95,458,0): 160, 130, 80, (95,459,0): 151, 123, 75, (95,460,0): 146, 118, 70, (95,461,0): 141, 114, 67, (95,462,0): 139, 112, 65, (95,463,0): 137, 113, 69, (95,464,0): 129, 106, 65, (95,465,0): 130, 108, 69, (95,466,0): 132, 110, 73, (95,467,0): 134, 112, 75, (95,468,0): 136, 112, 76, (95,469,0): 137, 113, 77, (95,470,0): 137, 113, 77, (95,471,0): 136, 112, 76, (95,472,0): 137, 111, 78, (95,473,0): 135, 109, 76, (95,474,0): 135, 106, 76, (95,475,0): 133, 104, 74, (95,476,0): 133, 104, 74, (95,477,0): 136, 107, 77, (95,478,0): 140, 109, 80, (95,479,0): 142, 111, 82, (95,480,0): 143, 112, 83, (95,481,0): 143, 112, 81, (95,482,0): 142, 111, 82, (95,483,0): 141, 110, 81, (95,484,0): 140, 106, 78, (95,485,0): 136, 102, 74, (95,486,0): 133, 99, 71, (95,487,0): 130, 96, 68, (95,488,0): 133, 98, 70, (95,489,0): 136, 101, 73, (95,490,0): 139, 104, 76, (95,491,0): 142, 107, 79, (95,492,0): 143, 106, 79, (95,493,0): 140, 103, 76, (95,494,0): 135, 98, 71, (95,495,0): 132, 97, 69, (95,496,0): 123, 92, 63, (95,497,0): 123, 96, 66, (95,498,0): 129, 100, 70, (95,499,0): 130, 103, 74, (95,500,0): 130, 103, 74, (95,501,0): 127, 101, 74, (95,502,0): 124, 98, 71, (95,503,0): 122, 96, 71, (95,504,0): 113, 87, 64, (95,505,0): 113, 89, 65, (95,506,0): 114, 89, 67, (95,507,0): 113, 91, 68, (95,508,0): 112, 90, 69, (95,509,0): 110, 88, 67, (95,510,0): 108, 85, 67, (95,511,0): 105, 84, 65, (95,512,0): 98, 79, 64, (95,513,0): 98, 79, 64, (95,514,0): 98, 79, 64, (95,515,0): 98, 79, 64, (95,516,0): 97, 78, 63, (95,517,0): 97, 78, 63, (95,518,0): 97, 78, 63, (95,519,0): 97, 78, 63, (95,520,0): 96, 77, 62, (95,521,0): 97, 78, 63, (95,522,0): 100, 81, 66, (95,523,0): 102, 83, 68, (95,524,0): 101, 82, 67, (95,525,0): 99, 80, 65, (95,526,0): 96, 77, 62, (95,527,0): 93, 76, 60, (95,528,0): 96, 80, 65, (95,529,0): 95, 82, 66, (95,530,0): 97, 84, 67, (95,531,0): 99, 86, 69, (95,532,0): 102, 86, 70, (95,533,0): 102, 86, 70, (95,534,0): 103, 86, 70, (95,535,0): 104, 85, 68, (95,536,0): 109, 90, 73, (95,537,0): 111, 90, 73, (95,538,0): 111, 88, 72, (95,539,0): 110, 87, 71, (95,540,0): 111, 85, 68, (95,541,0): 110, 84, 67, (95,542,0): 110, 84, 67, (95,543,0): 110, 84, 67, (95,544,0): 107, 81, 64, (95,545,0): 108, 83, 63, (95,546,0): 106, 83, 65, (95,547,0): 105, 82, 64, (95,548,0): 104, 81, 63, (95,549,0): 103, 80, 64, (95,550,0): 102, 79, 63, (95,551,0): 100, 79, 62, (95,552,0): 100, 78, 64, (95,553,0): 100, 78, 64, (95,554,0): 100, 78, 64, (95,555,0): 100, 78, 65, (95,556,0): 98, 79, 65, (95,557,0): 98, 79, 65, (95,558,0): 98, 78, 67, (95,559,0): 98, 79, 65, (95,560,0): 100, 81, 67, (95,561,0): 99, 80, 66, (95,562,0): 100, 78, 65, (95,563,0): 96, 77, 63, (95,564,0): 95, 75, 64, (95,565,0): 93, 73, 62, (95,566,0): 92, 72, 61, (95,567,0): 91, 71, 60, (95,568,0): 85, 65, 56, (95,569,0): 84, 64, 55, (95,570,0): 83, 63, 56, (95,571,0): 82, 62, 55, (95,572,0): 82, 62, 55, (95,573,0): 83, 63, 56, (95,574,0): 83, 62, 57, (95,575,0): 84, 63, 58, (95,576,0): 80, 59, 56, (95,577,0): 80, 59, 56, (95,578,0): 79, 58, 57, (95,579,0): 78, 57, 56, (95,580,0): 77, 56, 55, (95,581,0): 76, 55, 54, (95,582,0): 74, 54, 53, (95,583,0): 73, 53, 52, (95,584,0): 73, 55, 55, (95,585,0): 72, 54, 54, (95,586,0): 70, 51, 53, (95,587,0): 68, 49, 51, (95,588,0): 66, 47, 49, (95,589,0): 62, 46, 47, (95,590,0): 62, 43, 45, (95,591,0): 60, 44, 47, (95,592,0): 55, 40, 47, (95,593,0): 52, 39, 46, (95,594,0): 53, 38, 45, (95,595,0): 50, 38, 42, (95,596,0): 50, 35, 38, (95,597,0): 47, 35, 37, (95,598,0): 48, 34, 34, (95,599,0): 45, 33, 33, (96,0,0): 28, 24, 38, (96,1,0): 29, 26, 37, (96,2,0): 29, 25, 39, (96,3,0): 30, 26, 40, (96,4,0): 30, 26, 40, (96,5,0): 31, 27, 41, (96,6,0): 31, 27, 41, (96,7,0): 31, 27, 41, (96,8,0): 30, 26, 41, (96,9,0): 30, 26, 41, (96,10,0): 33, 26, 42, (96,11,0): 33, 26, 42, (96,12,0): 34, 27, 45, (96,13,0): 35, 28, 46, (96,14,0): 35, 28, 46, (96,15,0): 36, 30, 44, (96,16,0): 37, 30, 38, (96,17,0): 38, 32, 36, (96,18,0): 40, 34, 38, (96,19,0): 44, 35, 40, (96,20,0): 47, 36, 42, (96,21,0): 48, 35, 42, (96,22,0): 50, 35, 42, (96,23,0): 51, 34, 42, (96,24,0): 55, 35, 44, (96,25,0): 57, 36, 45, (96,26,0): 59, 36, 46, (96,27,0): 62, 36, 45, (96,28,0): 64, 38, 49, (96,29,0): 66, 39, 48, (96,30,0): 67, 40, 49, (96,31,0): 70, 38, 49, (96,32,0): 76, 38, 51, (96,33,0): 78, 37, 51, (96,34,0): 75, 37, 50, (96,35,0): 74, 36, 49, (96,36,0): 72, 36, 50, (96,37,0): 68, 34, 48, (96,38,0): 66, 34, 49, (96,39,0): 64, 33, 48, (96,40,0): 56, 28, 42, (96,41,0): 54, 28, 41, (96,42,0): 52, 28, 42, (96,43,0): 50, 28, 41, (96,44,0): 49, 28, 43, (96,45,0): 46, 28, 42, (96,46,0): 46, 28, 42, (96,47,0): 46, 28, 44, (96,48,0): 44, 26, 42, (96,49,0): 44, 25, 44, (96,50,0): 45, 26, 45, (96,51,0): 45, 28, 46, (96,52,0): 44, 27, 45, (96,53,0): 43, 26, 44, (96,54,0): 42, 25, 43, (96,55,0): 39, 25, 42, (96,56,0): 39, 25, 42, (96,57,0): 37, 24, 41, (96,58,0): 36, 23, 40, (96,59,0): 35, 22, 39, (96,60,0): 34, 21, 39, (96,61,0): 31, 20, 37, (96,62,0): 30, 19, 36, (96,63,0): 28, 19, 36, (96,64,0): 24, 15, 34, (96,65,0): 23, 16, 34, (96,66,0): 23, 15, 36, (96,67,0): 23, 16, 34, (96,68,0): 23, 15, 36, (96,69,0): 23, 16, 34, (96,70,0): 23, 15, 36, (96,71,0): 23, 16, 34, (96,72,0): 25, 17, 38, (96,73,0): 25, 18, 36, (96,74,0): 25, 17, 38, (96,75,0): 25, 18, 36, (96,76,0): 25, 17, 38, (96,77,0): 25, 18, 36, (96,78,0): 25, 17, 38, (96,79,0): 26, 17, 36, (96,80,0): 30, 18, 38, (96,81,0): 30, 18, 38, (96,82,0): 28, 19, 38, (96,83,0): 27, 18, 37, (96,84,0): 27, 18, 37, (96,85,0): 26, 17, 36, (96,86,0): 25, 18, 36, (96,87,0): 24, 17, 35, (96,88,0): 24, 20, 37, (96,89,0): 23, 18, 38, (96,90,0): 21, 16, 36, (96,91,0): 19, 14, 34, (96,92,0): 18, 15, 34, (96,93,0): 18, 15, 34, (96,94,0): 20, 17, 36, (96,95,0): 21, 18, 37, (96,96,0): 20, 15, 35, (96,97,0): 20, 15, 35, (96,98,0): 22, 14, 35, (96,99,0): 20, 15, 35, (96,100,0): 22, 14, 35, (96,101,0): 20, 15, 35, (96,102,0): 22, 14, 35, (96,103,0): 20, 15, 35, (96,104,0): 20, 12, 33, (96,105,0): 18, 13, 33, (96,106,0): 20, 12, 33, (96,107,0): 18, 13, 33, (96,108,0): 20, 12, 33, (96,109,0): 18, 13, 33, (96,110,0): 20, 12, 33, (96,111,0): 20, 12, 33, (96,112,0): 21, 12, 33, (96,113,0): 24, 12, 32, (96,114,0): 23, 14, 35, (96,115,0): 24, 15, 34, (96,116,0): 24, 15, 36, (96,117,0): 23, 14, 33, (96,118,0): 21, 13, 34, (96,119,0): 18, 14, 31, (96,120,0): 20, 15, 35, (96,121,0): 19, 15, 32, (96,122,0): 16, 13, 32, (96,123,0): 15, 12, 29, (96,124,0): 14, 13, 31, (96,125,0): 15, 14, 30, (96,126,0): 17, 16, 34, (96,127,0): 18, 17, 35, (96,128,0): 21, 16, 38, (96,129,0): 21, 16, 38, (96,130,0): 21, 16, 38, (96,131,0): 21, 16, 38, (96,132,0): 23, 15, 36, (96,133,0): 23, 15, 36, (96,134,0): 24, 15, 36, (96,135,0): 24, 15, 36, (96,136,0): 26, 17, 36, (96,137,0): 26, 17, 36, (96,138,0): 28, 17, 34, (96,139,0): 29, 18, 35, (96,140,0): 30, 17, 35, (96,141,0): 31, 18, 36, (96,142,0): 31, 18, 35, (96,143,0): 31, 18, 35, (96,144,0): 33, 20, 37, (96,145,0): 33, 21, 35, (96,146,0): 33, 20, 37, (96,147,0): 33, 21, 35, (96,148,0): 33, 20, 37, (96,149,0): 33, 21, 35, (96,150,0): 33, 20, 37, (96,151,0): 33, 21, 35, (96,152,0): 33, 20, 37, (96,153,0): 33, 21, 35, (96,154,0): 33, 20, 37, (96,155,0): 33, 21, 35, (96,156,0): 33, 20, 37, (96,157,0): 33, 21, 35, (96,158,0): 33, 20, 37, (96,159,0): 33, 21, 35, (96,160,0): 33, 20, 37, (96,161,0): 32, 21, 35, (96,162,0): 34, 21, 38, (96,163,0): 33, 22, 36, (96,164,0): 35, 22, 39, (96,165,0): 34, 23, 37, (96,166,0): 36, 23, 40, (96,167,0): 35, 24, 38, (96,168,0): 35, 22, 39, (96,169,0): 34, 23, 37, (96,170,0): 35, 22, 39, (96,171,0): 34, 23, 37, (96,172,0): 35, 22, 39, (96,173,0): 34, 23, 37, (96,174,0): 35, 22, 39, (96,175,0): 34, 23, 37, (96,176,0): 35, 24, 38, (96,177,0): 34, 23, 37, (96,178,0): 33, 22, 36, (96,179,0): 32, 21, 35, (96,180,0): 32, 21, 35, (96,181,0): 33, 22, 36, (96,182,0): 34, 23, 37, (96,183,0): 35, 24, 38, (96,184,0): 35, 24, 38, (96,185,0): 35, 24, 38, (96,186,0): 35, 24, 38, (96,187,0): 35, 24, 38, (96,188,0): 35, 24, 38, (96,189,0): 35, 24, 38, (96,190,0): 35, 24, 38, (96,191,0): 35, 24, 38, (96,192,0): 40, 29, 43, (96,193,0): 40, 29, 43, (96,194,0): 41, 29, 43, (96,195,0): 41, 29, 43, (96,196,0): 41, 29, 43, (96,197,0): 41, 29, 43, (96,198,0): 42, 28, 43, (96,199,0): 42, 28, 41, (96,200,0): 45, 29, 42, (96,201,0): 45, 29, 40, (96,202,0): 46, 30, 41, (96,203,0): 46, 30, 40, (96,204,0): 48, 31, 41, (96,205,0): 48, 31, 41, (96,206,0): 49, 32, 42, (96,207,0): 49, 32, 42, (96,208,0): 49, 32, 42, (96,209,0): 49, 32, 42, (96,210,0): 49, 32, 42, (96,211,0): 49, 32, 42, (96,212,0): 51, 31, 42, (96,213,0): 51, 31, 40, (96,214,0): 51, 31, 40, (96,215,0): 51, 31, 40, (96,216,0): 53, 33, 42, (96,217,0): 53, 34, 40, (96,218,0): 53, 34, 40, (96,219,0): 53, 34, 38, (96,220,0): 53, 34, 38, (96,221,0): 53, 34, 38, (96,222,0): 53, 34, 38, (96,223,0): 54, 34, 36, (96,224,0): 53, 31, 34, (96,225,0): 53, 31, 34, (96,226,0): 53, 31, 34, (96,227,0): 53, 31, 34, (96,228,0): 53, 31, 34, (96,229,0): 53, 31, 34, (96,230,0): 53, 31, 34, (96,231,0): 53, 31, 34, (96,232,0): 52, 30, 33, (96,233,0): 53, 31, 34, (96,234,0): 53, 31, 34, (96,235,0): 54, 32, 35, (96,236,0): 55, 33, 36, (96,237,0): 56, 34, 37, (96,238,0): 56, 34, 37, (96,239,0): 59, 34, 38, (96,240,0): 55, 29, 32, (96,241,0): 58, 29, 33, (96,242,0): 58, 29, 33, (96,243,0): 59, 30, 34, (96,244,0): 61, 30, 35, (96,245,0): 62, 31, 36, (96,246,0): 62, 31, 36, (96,247,0): 63, 32, 37, (96,248,0): 59, 28, 33, (96,249,0): 59, 28, 33, (96,250,0): 59, 28, 33, (96,251,0): 59, 28, 33, (96,252,0): 59, 28, 33, (96,253,0): 59, 28, 33, (96,254,0): 59, 28, 33, (96,255,0): 59, 28, 33, (96,256,0): 61, 30, 35, (96,257,0): 61, 31, 33, (96,258,0): 63, 31, 36, (96,259,0): 64, 32, 35, (96,260,0): 65, 33, 36, (96,261,0): 66, 34, 37, (96,262,0): 67, 35, 38, (96,263,0): 69, 34, 38, (96,264,0): 71, 37, 38, (96,265,0): 71, 37, 38, (96,266,0): 72, 38, 37, (96,267,0): 72, 38, 37, (96,268,0): 74, 38, 38, (96,269,0): 74, 38, 38, (96,270,0): 74, 38, 38, (96,271,0): 75, 40, 38, (96,272,0): 75, 39, 39, (96,273,0): 76, 41, 39, (96,274,0): 78, 39, 40, (96,275,0): 77, 42, 40, (96,276,0): 81, 43, 42, (96,277,0): 80, 45, 41, (96,278,0): 82, 44, 41, (96,279,0): 81, 46, 42, (96,280,0): 86, 48, 45, (96,281,0): 84, 49, 43, (96,282,0): 87, 50, 44, (96,283,0): 86, 52, 43, (96,284,0): 89, 52, 44, (96,285,0): 88, 54, 45, (96,286,0): 91, 54, 46, (96,287,0): 89, 55, 45, (96,288,0): 90, 56, 44, (96,289,0): 91, 58, 43, (96,290,0): 92, 59, 44, (96,291,0): 96, 60, 44, (96,292,0): 101, 64, 46, (96,293,0): 105, 67, 48, (96,294,0): 111, 70, 52, (96,295,0): 114, 71, 52, (96,296,0): 122, 77, 54, (96,297,0): 125, 79, 53, (96,298,0): 130, 83, 53, (96,299,0): 137, 89, 53, (96,300,0): 146, 95, 52, (96,301,0): 153, 101, 51, (96,302,0): 157, 106, 49, (96,303,0): 159, 110, 52, (96,304,0): 146, 99, 47, (96,305,0): 144, 100, 51, (96,306,0): 143, 101, 53, (96,307,0): 142, 102, 53, (96,308,0): 141, 103, 54, (96,309,0): 141, 105, 57, (96,310,0): 139, 105, 57, (96,311,0): 139, 105, 59, (96,312,0): 140, 108, 61, (96,313,0): 140, 108, 61, (96,314,0): 139, 108, 61, (96,315,0): 139, 108, 61, (96,316,0): 137, 109, 61, (96,317,0): 136, 110, 61, (96,318,0): 136, 110, 61, (96,319,0): 136, 110, 61, (96,320,0): 142, 114, 64, (96,321,0): 143, 115, 65, (96,322,0): 144, 116, 66, (96,323,0): 145, 117, 67, (96,324,0): 146, 120, 71, (96,325,0): 147, 121, 72, (96,326,0): 146, 123, 73, (96,327,0): 146, 123, 73, (96,328,0): 149, 125, 77, (96,329,0): 149, 125, 77, (96,330,0): 148, 126, 77, (96,331,0): 148, 126, 77, (96,332,0): 146, 125, 78, (96,333,0): 146, 125, 78, (96,334,0): 146, 125, 78, (96,335,0): 146, 125, 78, (96,336,0): 147, 124, 80, (96,337,0): 148, 125, 81, (96,338,0): 150, 127, 85, (96,339,0): 152, 129, 87, (96,340,0): 153, 130, 88, (96,341,0): 153, 130, 88, (96,342,0): 153, 130, 89, (96,343,0): 152, 129, 88, (96,344,0): 157, 134, 93, (96,345,0): 157, 134, 93, (96,346,0): 157, 133, 95, (96,347,0): 158, 134, 96, (96,348,0): 158, 134, 96, (96,349,0): 159, 135, 97, (96,350,0): 159, 135, 99, (96,351,0): 160, 136, 98, (96,352,0): 162, 137, 97, (96,353,0): 165, 137, 98, (96,354,0): 166, 138, 99, (96,355,0): 167, 139, 100, (96,356,0): 168, 140, 103, (96,357,0): 169, 141, 104, (96,358,0): 171, 141, 105, (96,359,0): 171, 141, 105, (96,360,0): 172, 142, 108, (96,361,0): 171, 141, 107, (96,362,0): 169, 139, 105, (96,363,0): 167, 137, 103, (96,364,0): 166, 135, 104, (96,365,0): 166, 135, 104, (96,366,0): 167, 136, 105, (96,367,0): 166, 137, 107, (96,368,0): 160, 134, 111, (96,369,0): 162, 138, 114, (96,370,0): 166, 138, 114, (96,371,0): 168, 136, 111, (96,372,0): 167, 131, 105, (96,373,0): 167, 127, 102, (96,374,0): 167, 127, 102, (96,375,0): 169, 127, 102, (96,376,0): 168, 124, 97, (96,377,0): 173, 128, 99, (96,378,0): 182, 133, 101, (96,379,0): 192, 138, 102, (96,380,0): 203, 141, 102, (96,381,0): 215, 148, 105, (96,382,0): 227, 156, 110, (96,383,0): 238, 162, 112, (96,384,0): 249, 167, 111, (96,385,0): 252, 166, 107, (96,386,0): 254, 165, 107, (96,387,0): 254, 164, 104, (96,388,0): 254, 161, 100, (96,389,0): 252, 159, 98, (96,390,0): 251, 157, 95, (96,391,0): 249, 155, 93, (96,392,0): 248, 156, 93, (96,393,0): 245, 157, 94, (96,394,0): 242, 158, 94, (96,395,0): 237, 157, 94, (96,396,0): 230, 154, 92, (96,397,0): 222, 151, 89, (96,398,0): 217, 147, 87, (96,399,0): 211, 145, 84, (96,400,0): 207, 150, 83, (96,401,0): 214, 159, 92, (96,402,0): 227, 170, 101, (96,403,0): 235, 176, 106, (96,404,0): 237, 178, 108, (96,405,0): 238, 178, 106, (96,406,0): 238, 178, 105, (96,407,0): 239, 179, 106, (96,408,0): 236, 178, 104, (96,409,0): 235, 179, 105, (96,410,0): 232, 178, 106, (96,411,0): 231, 178, 108, (96,412,0): 227, 178, 109, (96,413,0): 225, 178, 108, (96,414,0): 221, 178, 109, (96,415,0): 221, 178, 110, (96,416,0): 216, 172, 107, (96,417,0): 212, 168, 103, (96,418,0): 209, 164, 99, (96,419,0): 210, 165, 100, (96,420,0): 215, 170, 105, (96,421,0): 219, 174, 107, (96,422,0): 221, 176, 108, (96,423,0): 221, 177, 106, (96,424,0): 219, 175, 104, (96,425,0): 223, 179, 106, (96,426,0): 228, 184, 109, (96,427,0): 229, 186, 108, (96,428,0): 228, 185, 107, (96,429,0): 226, 183, 104, (96,430,0): 227, 184, 105, (96,431,0): 229, 184, 103, (96,432,0): 240, 195, 110, (96,433,0): 240, 194, 108, (96,434,0): 240, 194, 108, (96,435,0): 242, 197, 112, (96,436,0): 245, 200, 115, (96,437,0): 243, 201, 115, (96,438,0): 240, 198, 112, (96,439,0): 237, 195, 111, (96,440,0): 230, 189, 107, (96,441,0): 224, 183, 103, (96,442,0): 216, 178, 97, (96,443,0): 215, 176, 97, (96,444,0): 219, 177, 101, (96,445,0): 217, 175, 101, (96,446,0): 208, 169, 94, (96,447,0): 200, 163, 92, (96,448,0): 191, 161, 91, (96,449,0): 191, 164, 95, (96,450,0): 191, 164, 97, (96,451,0): 188, 158, 94, (96,452,0): 181, 149, 88, (96,453,0): 175, 143, 84, (96,454,0): 173, 140, 86, (96,455,0): 174, 141, 88, (96,456,0): 164, 130, 82, (96,457,0): 161, 127, 81, (96,458,0): 156, 123, 78, (96,459,0): 153, 122, 78, (96,460,0): 149, 120, 78, (96,461,0): 145, 116, 76, (96,462,0): 138, 110, 70, (96,463,0): 133, 105, 66, (96,464,0): 134, 108, 73, (96,465,0): 131, 107, 71, (96,466,0): 131, 105, 72, (96,467,0): 133, 107, 74, (96,468,0): 137, 111, 78, (96,469,0): 140, 114, 81, (96,470,0): 142, 113, 81, (96,471,0): 141, 112, 80, (96,472,0): 139, 108, 77, (96,473,0): 138, 107, 76, (96,474,0): 138, 107, 76, (96,475,0): 137, 106, 75, (96,476,0): 139, 106, 75, (96,477,0): 140, 107, 76, (96,478,0): 140, 107, 76, (96,479,0): 141, 108, 77, (96,480,0): 143, 110, 79, (96,481,0): 143, 110, 77, (96,482,0): 142, 109, 78, (96,483,0): 141, 108, 77, (96,484,0): 138, 105, 74, (96,485,0): 135, 102, 71, (96,486,0): 132, 99, 68, (96,487,0): 130, 97, 66, (96,488,0): 132, 98, 70, (96,489,0): 134, 100, 72, (96,490,0): 137, 103, 76, (96,491,0): 139, 105, 78, (96,492,0): 139, 103, 77, (96,493,0): 136, 100, 74, (96,494,0): 133, 97, 71, (96,495,0): 129, 95, 68, (96,496,0): 123, 93, 65, (96,497,0): 121, 96, 66, (96,498,0): 123, 96, 67, (96,499,0): 123, 97, 70, (96,500,0): 124, 98, 71, (96,501,0): 124, 100, 74, (96,502,0): 125, 101, 75, (96,503,0): 126, 102, 76, (96,504,0): 118, 94, 70, (96,505,0): 115, 93, 69, (96,506,0): 114, 92, 69, (96,507,0): 111, 91, 67, (96,508,0): 110, 90, 66, (96,509,0): 108, 88, 64, (96,510,0): 107, 86, 65, (96,511,0): 104, 86, 66, (96,512,0): 101, 83, 63, (96,513,0): 100, 83, 65, (96,514,0): 100, 83, 65, (96,515,0): 100, 83, 65, (96,516,0): 100, 83, 65, (96,517,0): 100, 83, 65, (96,518,0): 100, 83, 65, (96,519,0): 100, 83, 65, (96,520,0): 102, 85, 67, (96,521,0): 102, 85, 67, (96,522,0): 102, 85, 67, (96,523,0): 102, 85, 67, (96,524,0): 102, 85, 67, (96,525,0): 102, 85, 67, (96,526,0): 102, 85, 67, (96,527,0): 102, 85, 67, (96,528,0): 100, 85, 66, (96,529,0): 101, 88, 69, (96,530,0): 104, 91, 72, (96,531,0): 106, 93, 74, (96,532,0): 108, 93, 74, (96,533,0): 105, 90, 71, (96,534,0): 100, 85, 66, (96,535,0): 98, 81, 61, (96,536,0): 104, 87, 67, (96,537,0): 105, 87, 67, (96,538,0): 106, 88, 68, (96,539,0): 109, 88, 69, (96,540,0): 109, 88, 69, (96,541,0): 108, 87, 68, (96,542,0): 107, 84, 66, (96,543,0): 106, 83, 65, (96,544,0): 106, 85, 64, (96,545,0): 105, 85, 61, (96,546,0): 104, 83, 62, (96,547,0): 102, 81, 60, (96,548,0): 101, 80, 59, (96,549,0): 99, 78, 59, (96,550,0): 98, 77, 58, (96,551,0): 95, 77, 57, (96,552,0): 97, 78, 61, (96,553,0): 97, 78, 61, (96,554,0): 97, 78, 61, (96,555,0): 98, 79, 64, (96,556,0): 98, 79, 64, (96,557,0): 99, 80, 65, (96,558,0): 99, 80, 66, (96,559,0): 99, 80, 66, (96,560,0): 100, 78, 65, (96,561,0): 100, 78, 65, (96,562,0): 101, 77, 65, (96,563,0): 99, 77, 64, (96,564,0): 97, 75, 64, (96,565,0): 95, 73, 62, (96,566,0): 93, 71, 60, (96,567,0): 92, 70, 59, (96,568,0): 87, 67, 58, (96,569,0): 85, 65, 56, (96,570,0): 81, 62, 55, (96,571,0): 81, 62, 55, (96,572,0): 82, 63, 56, (96,573,0): 82, 63, 56, (96,574,0): 80, 61, 55, (96,575,0): 77, 58, 54, (96,576,0): 79, 59, 58, (96,577,0): 78, 58, 57, (96,578,0): 77, 57, 58, (96,579,0): 75, 55, 56, (96,580,0): 73, 53, 54, (96,581,0): 71, 51, 52, (96,582,0): 70, 50, 51, (96,583,0): 69, 49, 50, (96,584,0): 66, 46, 47, (96,585,0): 67, 47, 48, (96,586,0): 68, 48, 49, (96,587,0): 68, 48, 49, (96,588,0): 67, 47, 48, (96,589,0): 64, 46, 46, (96,590,0): 62, 42, 43, (96,591,0): 60, 41, 43, (96,592,0): 60, 44, 47, (96,593,0): 58, 43, 48, (96,594,0): 58, 41, 47, (96,595,0): 55, 40, 43, (96,596,0): 55, 39, 42, (96,597,0): 52, 37, 40, (96,598,0): 52, 36, 39, (96,599,0): 50, 35, 38, (97,0,0): 28, 24, 38, (97,1,0): 27, 25, 36, (97,2,0): 28, 24, 38, (97,3,0): 29, 25, 39, (97,4,0): 29, 25, 39, (97,5,0): 30, 26, 40, (97,6,0): 30, 26, 40, (97,7,0): 30, 26, 40, (97,8,0): 30, 26, 41, (97,9,0): 30, 26, 41, (97,10,0): 33, 26, 42, (97,11,0): 33, 26, 42, (97,12,0): 34, 27, 43, (97,13,0): 35, 28, 44, (97,14,0): 37, 28, 47, (97,15,0): 37, 29, 44, (97,16,0): 41, 31, 39, (97,17,0): 43, 32, 36, (97,18,0): 44, 33, 37, (97,19,0): 47, 35, 39, (97,20,0): 49, 34, 39, (97,21,0): 50, 33, 39, (97,22,0): 52, 33, 39, (97,23,0): 51, 32, 38, (97,24,0): 57, 34, 42, (97,25,0): 57, 34, 42, (97,26,0): 61, 34, 43, (97,27,0): 63, 36, 45, (97,28,0): 67, 37, 47, (97,29,0): 70, 40, 50, (97,30,0): 73, 41, 52, (97,31,0): 75, 42, 53, (97,32,0): 78, 37, 53, (97,33,0): 78, 35, 52, (97,34,0): 77, 34, 51, (97,35,0): 75, 34, 50, (97,36,0): 71, 32, 50, (97,37,0): 68, 31, 48, (97,38,0): 64, 30, 47, (97,39,0): 61, 30, 46, (97,40,0): 55, 27, 42, (97,41,0): 51, 27, 41, (97,42,0): 50, 27, 43, (97,43,0): 46, 28, 42, (97,44,0): 46, 28, 44, (97,45,0): 44, 27, 43, (97,46,0): 42, 28, 43, (97,47,0): 42, 28, 43, (97,48,0): 42, 25, 43, (97,49,0): 43, 26, 44, (97,50,0): 44, 27, 45, (97,51,0): 44, 27, 45, (97,52,0): 42, 28, 45, (97,53,0): 41, 27, 44, (97,54,0): 39, 25, 42, (97,55,0): 38, 25, 42, (97,56,0): 37, 24, 41, (97,57,0): 37, 24, 41, (97,58,0): 35, 24, 40, (97,59,0): 33, 22, 38, (97,60,0): 32, 21, 37, (97,61,0): 31, 20, 36, (97,62,0): 28, 20, 35, (97,63,0): 28, 19, 36, (97,64,0): 23, 16, 34, (97,65,0): 23, 16, 34, (97,66,0): 23, 16, 34, (97,67,0): 23, 16, 34, (97,68,0): 23, 16, 34, (97,69,0): 23, 16, 34, (97,70,0): 23, 16, 34, (97,71,0): 23, 16, 34, (97,72,0): 25, 18, 36, (97,73,0): 25, 18, 36, (97,74,0): 25, 18, 36, (97,75,0): 25, 18, 36, (97,76,0): 25, 18, 36, (97,77,0): 25, 18, 36, (97,78,0): 25, 18, 36, (97,79,0): 25, 18, 36, (97,80,0): 30, 18, 38, (97,81,0): 30, 18, 38, (97,82,0): 27, 18, 37, (97,83,0): 27, 18, 37, (97,84,0): 26, 17, 36, (97,85,0): 26, 17, 36, (97,86,0): 25, 18, 36, (97,87,0): 24, 17, 35, (97,88,0): 24, 20, 37, (97,89,0): 23, 19, 36, (97,90,0): 21, 17, 34, (97,91,0): 20, 16, 33, (97,92,0): 18, 15, 32, (97,93,0): 19, 16, 33, (97,94,0): 20, 17, 34, (97,95,0): 20, 17, 34, (97,96,0): 22, 15, 33, (97,97,0): 22, 15, 33, (97,98,0): 22, 15, 33, (97,99,0): 22, 15, 33, (97,100,0): 22, 15, 33, (97,101,0): 22, 15, 33, (97,102,0): 22, 15, 33, (97,103,0): 22, 15, 33, (97,104,0): 20, 13, 31, (97,105,0): 20, 13, 31, (97,106,0): 20, 13, 31, (97,107,0): 20, 13, 31, (97,108,0): 20, 13, 31, (97,109,0): 20, 13, 31, (97,110,0): 20, 13, 31, (97,111,0): 21, 12, 31, (97,112,0): 24, 12, 32, (97,113,0): 25, 12, 32, (97,114,0): 25, 13, 33, (97,115,0): 26, 14, 34, (97,116,0): 26, 14, 34, (97,117,0): 23, 14, 33, (97,118,0): 21, 14, 32, (97,119,0): 21, 14, 32, (97,120,0): 20, 16, 33, (97,121,0): 19, 15, 32, (97,122,0): 17, 14, 31, (97,123,0): 16, 13, 30, (97,124,0): 15, 14, 30, (97,125,0): 16, 15, 31, (97,126,0): 15, 17, 32, (97,127,0): 18, 17, 33, (97,128,0): 20, 17, 38, (97,129,0): 21, 16, 38, (97,130,0): 21, 16, 38, (97,131,0): 21, 16, 38, (97,132,0): 23, 15, 36, (97,133,0): 23, 15, 36, (97,134,0): 24, 15, 36, (97,135,0): 24, 15, 36, (97,136,0): 26, 17, 36, (97,137,0): 26, 17, 36, (97,138,0): 28, 17, 34, (97,139,0): 29, 18, 35, (97,140,0): 30, 17, 35, (97,141,0): 31, 18, 36, (97,142,0): 31, 18, 35, (97,143,0): 31, 18, 35, (97,144,0): 33, 21, 35, (97,145,0): 33, 21, 35, (97,146,0): 33, 21, 35, (97,147,0): 33, 21, 35, (97,148,0): 33, 21, 35, (97,149,0): 33, 21, 35, (97,150,0): 33, 21, 35, (97,151,0): 33, 21, 35, (97,152,0): 33, 21, 35, (97,153,0): 33, 21, 35, (97,154,0): 33, 21, 35, (97,155,0): 33, 21, 35, (97,156,0): 33, 21, 35, (97,157,0): 33, 21, 35, (97,158,0): 33, 21, 35, (97,159,0): 33, 21, 35, (97,160,0): 33, 21, 35, (97,161,0): 33, 21, 35, (97,162,0): 34, 22, 36, (97,163,0): 34, 22, 36, (97,164,0): 35, 23, 37, (97,165,0): 35, 23, 37, (97,166,0): 36, 24, 38, (97,167,0): 36, 24, 38, (97,168,0): 35, 23, 37, (97,169,0): 35, 23, 37, (97,170,0): 35, 23, 37, (97,171,0): 35, 23, 37, (97,172,0): 35, 23, 37, (97,173,0): 35, 23, 37, (97,174,0): 35, 23, 37, (97,175,0): 35, 23, 37, (97,176,0): 36, 24, 38, (97,177,0): 35, 23, 37, (97,178,0): 34, 22, 36, (97,179,0): 34, 22, 36, (97,180,0): 34, 22, 36, (97,181,0): 34, 22, 36, (97,182,0): 35, 23, 37, (97,183,0): 36, 24, 38, (97,184,0): 36, 24, 38, (97,185,0): 36, 24, 38, (97,186,0): 36, 24, 38, (97,187,0): 36, 24, 38, (97,188,0): 36, 24, 38, (97,189,0): 36, 24, 38, (97,190,0): 36, 24, 38, (97,191,0): 36, 24, 38, (97,192,0): 40, 29, 43, (97,193,0): 40, 29, 43, (97,194,0): 41, 29, 43, (97,195,0): 41, 29, 43, (97,196,0): 41, 29, 43, (97,197,0): 41, 29, 43, (97,198,0): 42, 28, 41, (97,199,0): 42, 28, 41, (97,200,0): 44, 28, 39, (97,201,0): 45, 29, 40, (97,202,0): 45, 29, 39, (97,203,0): 46, 30, 40, (97,204,0): 47, 30, 40, (97,205,0): 48, 31, 41, (97,206,0): 48, 31, 41, (97,207,0): 48, 31, 41, (97,208,0): 51, 31, 42, (97,209,0): 51, 31, 42, (97,210,0): 51, 31, 42, (97,211,0): 51, 31, 42, (97,212,0): 51, 31, 40, (97,213,0): 51, 31, 40, (97,214,0): 51, 31, 40, (97,215,0): 51, 31, 40, (97,216,0): 53, 34, 40, (97,217,0): 53, 34, 40, (97,218,0): 53, 34, 38, (97,219,0): 53, 34, 38, (97,220,0): 53, 34, 38, (97,221,0): 53, 34, 38, (97,222,0): 53, 34, 36, (97,223,0): 54, 34, 36, (97,224,0): 53, 31, 33, (97,225,0): 53, 31, 33, (97,226,0): 53, 31, 33, (97,227,0): 53, 31, 33, (97,228,0): 53, 31, 33, (97,229,0): 53, 31, 33, (97,230,0): 53, 31, 33, (97,231,0): 53, 31, 33, (97,232,0): 54, 32, 34, (97,233,0): 54, 32, 34, (97,234,0): 54, 32, 34, (97,235,0): 54, 32, 34, (97,236,0): 55, 33, 35, (97,237,0): 55, 33, 35, (97,238,0): 55, 33, 35, (97,239,0): 57, 32, 35, (97,240,0): 59, 30, 34, (97,241,0): 60, 29, 34, (97,242,0): 60, 29, 34, (97,243,0): 60, 29, 34, (97,244,0): 61, 30, 35, (97,245,0): 61, 30, 35, (97,246,0): 61, 30, 35, (97,247,0): 61, 30, 35, (97,248,0): 59, 28, 33, (97,249,0): 59, 28, 33, (97,250,0): 59, 28, 33, (97,251,0): 59, 28, 33, (97,252,0): 59, 28, 33, (97,253,0): 59, 28, 33, (97,254,0): 59, 28, 33, (97,255,0): 59, 28, 33, (97,256,0): 60, 31, 35, (97,257,0): 60, 31, 35, (97,258,0): 62, 31, 36, (97,259,0): 63, 32, 37, (97,260,0): 64, 34, 36, (97,261,0): 65, 35, 37, (97,262,0): 67, 35, 38, (97,263,0): 67, 35, 38, (97,264,0): 70, 36, 37, (97,265,0): 70, 36, 37, (97,266,0): 71, 37, 36, (97,267,0): 71, 37, 36, (97,268,0): 73, 37, 37, (97,269,0): 73, 37, 37, (97,270,0): 74, 39, 37, (97,271,0): 74, 39, 37, (97,272,0): 75, 39, 39, (97,273,0): 76, 40, 40, (97,274,0): 76, 40, 40, (97,275,0): 77, 41, 41, (97,276,0): 79, 44, 42, (97,277,0): 80, 45, 43, (97,278,0): 80, 45, 43, (97,279,0): 81, 46, 42, (97,280,0): 83, 48, 44, (97,281,0): 83, 48, 44, (97,282,0): 84, 49, 43, (97,283,0): 85, 50, 44, (97,284,0): 86, 51, 45, (97,285,0): 87, 52, 46, (97,286,0): 88, 54, 45, (97,287,0): 88, 54, 44, (97,288,0): 88, 56, 45, (97,289,0): 89, 57, 42, (97,290,0): 91, 58, 43, (97,291,0): 93, 60, 41, (97,292,0): 100, 63, 45, (97,293,0): 103, 66, 47, (97,294,0): 110, 69, 51, (97,295,0): 112, 71, 51, (97,296,0): 120, 75, 56, (97,297,0): 121, 76, 53, (97,298,0): 127, 80, 52, (97,299,0): 131, 85, 51, (97,300,0): 140, 91, 48, (97,301,0): 146, 99, 47, (97,302,0): 152, 103, 45, (97,303,0): 153, 107, 48, (97,304,0): 143, 100, 47, (97,305,0): 143, 101, 51, (97,306,0): 142, 102, 51, (97,307,0): 143, 103, 54, (97,308,0): 141, 103, 54, (97,309,0): 142, 104, 55, (97,310,0): 141, 105, 57, (97,311,0): 139, 105, 57, (97,312,0): 141, 107, 59, (97,313,0): 140, 108, 61, (97,314,0): 139, 108, 61, (97,315,0): 140, 109, 62, (97,316,0): 138, 110, 63, (97,317,0): 139, 111, 64, (97,318,0): 138, 111, 64, (97,319,0): 139, 113, 64, (97,320,0): 143, 115, 65, (97,321,0): 144, 117, 64, (97,322,0): 145, 117, 67, (97,323,0): 146, 118, 68, (97,324,0): 146, 120, 69, (97,325,0): 147, 121, 70, (97,326,0): 146, 123, 73, (97,327,0): 147, 124, 74, (97,328,0): 149, 125, 77, (97,329,0): 149, 125, 77, (97,330,0): 148, 126, 77, (97,331,0): 148, 126, 77, (97,332,0): 147, 126, 79, (97,333,0): 147, 126, 79, (97,334,0): 146, 125, 78, (97,335,0): 146, 125, 78, (97,336,0): 147, 124, 80, (97,337,0): 149, 126, 82, (97,338,0): 150, 127, 83, (97,339,0): 152, 129, 85, (97,340,0): 153, 130, 88, (97,341,0): 154, 131, 89, (97,342,0): 153, 130, 89, (97,343,0): 153, 130, 89, (97,344,0): 157, 134, 93, (97,345,0): 157, 134, 93, (97,346,0): 158, 134, 96, (97,347,0): 158, 134, 96, (97,348,0): 159, 135, 99, (97,349,0): 159, 135, 99, (97,350,0): 159, 135, 99, (97,351,0): 160, 136, 98, (97,352,0): 165, 137, 100, (97,353,0): 166, 138, 99, (97,354,0): 166, 138, 99, (97,355,0): 167, 139, 100, (97,356,0): 169, 141, 104, (97,357,0): 170, 142, 105, (97,358,0): 171, 141, 105, (97,359,0): 172, 142, 106, (97,360,0): 173, 143, 109, (97,361,0): 172, 142, 108, (97,362,0): 170, 140, 106, (97,363,0): 168, 138, 104, (97,364,0): 167, 136, 105, (97,365,0): 167, 136, 105, (97,366,0): 167, 136, 105, (97,367,0): 166, 137, 107, (97,368,0): 162, 136, 109, (97,369,0): 163, 139, 113, (97,370,0): 169, 139, 111, (97,371,0): 170, 136, 108, (97,372,0): 168, 131, 102, (97,373,0): 169, 128, 98, (97,374,0): 172, 128, 101, (97,375,0): 175, 130, 101, (97,376,0): 174, 127, 99, (97,377,0): 180, 131, 101, (97,378,0): 190, 135, 104, (97,379,0): 198, 140, 103, (97,380,0): 208, 143, 103, (97,381,0): 218, 150, 103, (97,382,0): 231, 158, 107, (97,383,0): 240, 163, 107, (97,384,0): 246, 166, 107, (97,385,0): 250, 166, 104, (97,386,0): 251, 165, 104, (97,387,0): 252, 164, 101, (97,388,0): 252, 162, 100, (97,389,0): 252, 160, 97, (97,390,0): 250, 158, 93, (97,391,0): 249, 157, 92, (97,392,0): 248, 158, 95, (97,393,0): 247, 159, 95, (97,394,0): 242, 161, 96, (97,395,0): 238, 160, 94, (97,396,0): 230, 159, 93, (97,397,0): 223, 155, 90, (97,398,0): 216, 151, 87, (97,399,0): 209, 149, 86, (97,400,0): 205, 151, 87, (97,401,0): 209, 160, 93, (97,402,0): 220, 169, 103, (97,403,0): 229, 176, 106, (97,404,0): 233, 179, 109, (97,405,0): 236, 180, 106, (97,406,0): 238, 180, 107, (97,407,0): 239, 183, 108, (97,408,0): 237, 181, 106, (97,409,0): 234, 181, 105, (97,410,0): 232, 180, 107, (97,411,0): 229, 179, 106, (97,412,0): 227, 178, 109, (97,413,0): 222, 178, 107, (97,414,0): 220, 177, 109, (97,415,0): 218, 178, 109, (97,416,0): 218, 173, 108, (97,417,0): 215, 170, 105, (97,418,0): 211, 166, 101, (97,419,0): 212, 167, 100, (97,420,0): 216, 171, 104, (97,421,0): 220, 175, 107, (97,422,0): 222, 178, 107, (97,423,0): 222, 178, 107, (97,424,0): 221, 177, 104, (97,425,0): 224, 180, 105, (97,426,0): 228, 185, 107, (97,427,0): 229, 186, 108, (97,428,0): 228, 185, 106, (97,429,0): 227, 184, 105, (97,430,0): 229, 186, 107, (97,431,0): 231, 189, 105, (97,432,0): 242, 198, 109, (97,433,0): 242, 197, 106, (97,434,0): 243, 197, 109, (97,435,0): 245, 201, 112, (97,436,0): 247, 203, 116, (97,437,0): 246, 202, 115, (97,438,0): 242, 197, 112, (97,439,0): 236, 194, 108, (97,440,0): 230, 188, 106, (97,441,0): 224, 183, 101, (97,442,0): 219, 178, 98, (97,443,0): 219, 178, 98, (97,444,0): 220, 179, 100, (97,445,0): 216, 177, 98, (97,446,0): 209, 170, 93, (97,447,0): 200, 164, 88, (97,448,0): 190, 161, 91, (97,449,0): 187, 163, 93, (97,450,0): 188, 161, 94, (97,451,0): 185, 157, 92, (97,452,0): 182, 150, 89, (97,453,0): 177, 145, 86, (97,454,0): 176, 141, 87, (97,455,0): 175, 139, 89, (97,456,0): 168, 132, 84, (97,457,0): 163, 129, 84, (97,458,0): 157, 124, 81, (97,459,0): 153, 121, 80, (97,460,0): 151, 119, 81, (97,461,0): 144, 114, 76, (97,462,0): 137, 109, 72, (97,463,0): 132, 103, 69, (97,464,0): 130, 104, 71, (97,465,0): 129, 103, 70, (97,466,0): 131, 102, 72, (97,467,0): 133, 104, 72, (97,468,0): 137, 108, 78, (97,469,0): 139, 110, 78, (97,470,0): 139, 108, 79, (97,471,0): 137, 106, 75, (97,472,0): 137, 103, 75, (97,473,0): 136, 103, 72, (97,474,0): 136, 102, 74, (97,475,0): 136, 103, 72, (97,476,0): 138, 103, 75, (97,477,0): 139, 104, 74, (97,478,0): 140, 105, 77, (97,479,0): 141, 106, 76, (97,480,0): 140, 107, 76, (97,481,0): 137, 107, 73, (97,482,0): 139, 106, 75, (97,483,0): 135, 104, 73, (97,484,0): 135, 102, 71, (97,485,0): 130, 99, 68, (97,486,0): 129, 95, 67, (97,487,0): 126, 95, 66, (97,488,0): 131, 97, 69, (97,489,0): 130, 99, 70, (97,490,0): 134, 100, 73, (97,491,0): 133, 102, 74, (97,492,0): 135, 101, 74, (97,493,0): 131, 100, 72, (97,494,0): 131, 97, 70, (97,495,0): 127, 96, 68, (97,496,0): 122, 95, 68, (97,497,0): 122, 96, 69, (97,498,0): 122, 96, 69, (97,499,0): 123, 97, 70, (97,500,0): 123, 99, 73, (97,501,0): 124, 100, 74, (97,502,0): 124, 100, 74, (97,503,0): 125, 101, 75, (97,504,0): 116, 94, 70, (97,505,0): 115, 93, 69, (97,506,0): 113, 93, 69, (97,507,0): 112, 92, 68, (97,508,0): 110, 90, 66, (97,509,0): 108, 88, 64, (97,510,0): 105, 87, 65, (97,511,0): 105, 87, 65, (97,512,0): 101, 84, 64, (97,513,0): 101, 84, 64, (97,514,0): 101, 84, 64, (97,515,0): 101, 84, 64, (97,516,0): 101, 84, 64, (97,517,0): 101, 84, 64, (97,518,0): 101, 84, 64, (97,519,0): 101, 84, 64, (97,520,0): 102, 85, 65, (97,521,0): 102, 85, 65, (97,522,0): 102, 85, 65, (97,523,0): 102, 85, 65, (97,524,0): 102, 85, 65, (97,525,0): 102, 85, 65, (97,526,0): 102, 85, 65, (97,527,0): 101, 86, 65, (97,528,0): 101, 86, 65, (97,529,0): 101, 89, 67, (97,530,0): 104, 92, 70, (97,531,0): 106, 94, 72, (97,532,0): 107, 92, 71, (97,533,0): 104, 89, 68, (97,534,0): 99, 84, 63, (97,535,0): 96, 81, 60, (97,536,0): 102, 85, 65, (97,537,0): 103, 86, 66, (97,538,0): 105, 87, 67, (97,539,0): 106, 88, 68, (97,540,0): 106, 88, 68, (97,541,0): 105, 87, 67, (97,542,0): 106, 85, 66, (97,543,0): 106, 85, 64, (97,544,0): 104, 86, 64, (97,545,0): 103, 85, 61, (97,546,0): 102, 84, 60, (97,547,0): 101, 83, 59, (97,548,0): 99, 81, 59, (97,549,0): 97, 79, 57, (97,550,0): 96, 78, 58, (97,551,0): 96, 78, 58, (97,552,0): 97, 79, 59, (97,553,0): 97, 79, 59, (97,554,0): 97, 78, 61, (97,555,0): 98, 79, 62, (97,556,0): 98, 79, 64, (97,557,0): 99, 80, 65, (97,558,0): 99, 80, 65, (97,559,0): 99, 80, 65, (97,560,0): 101, 77, 65, (97,561,0): 101, 77, 65, (97,562,0): 101, 77, 65, (97,563,0): 100, 76, 64, (97,564,0): 97, 75, 64, (97,565,0): 95, 73, 62, (97,566,0): 93, 71, 60, (97,567,0): 92, 70, 59, (97,568,0): 87, 67, 58, (97,569,0): 84, 64, 55, (97,570,0): 81, 62, 55, (97,571,0): 80, 61, 54, (97,572,0): 82, 63, 56, (97,573,0): 82, 63, 56, (97,574,0): 78, 61, 54, (97,575,0): 75, 57, 53, (97,576,0): 78, 58, 57, (97,577,0): 77, 57, 58, (97,578,0): 76, 56, 57, (97,579,0): 74, 54, 55, (97,580,0): 72, 52, 53, (97,581,0): 70, 50, 51, (97,582,0): 69, 49, 50, (97,583,0): 68, 48, 49, (97,584,0): 65, 45, 46, (97,585,0): 66, 46, 47, (97,586,0): 67, 47, 48, (97,587,0): 67, 47, 48, (97,588,0): 67, 47, 48, (97,589,0): 65, 45, 46, (97,590,0): 63, 43, 44, (97,591,0): 61, 43, 43, (97,592,0): 62, 43, 45, (97,593,0): 59, 43, 46, (97,594,0): 58, 42, 45, (97,595,0): 57, 41, 44, (97,596,0): 55, 39, 42, (97,597,0): 54, 38, 41, (97,598,0): 52, 36, 39, (97,599,0): 52, 36, 39, (98,0,0): 26, 24, 38, (98,1,0): 25, 25, 37, (98,2,0): 26, 24, 38, (98,3,0): 27, 25, 39, (98,4,0): 27, 25, 39, (98,5,0): 28, 26, 40, (98,6,0): 29, 25, 40, (98,7,0): 29, 25, 40, (98,8,0): 31, 25, 39, (98,9,0): 32, 26, 40, (98,10,0): 34, 26, 41, (98,11,0): 35, 27, 42, (98,12,0): 36, 28, 43, (98,13,0): 37, 29, 44, (98,14,0): 40, 29, 46, (98,15,0): 40, 29, 43, (98,16,0): 48, 33, 40, (98,17,0): 50, 34, 37, (98,18,0): 51, 35, 38, (98,19,0): 52, 36, 39, (98,20,0): 54, 35, 39, (98,21,0): 55, 34, 39, (98,22,0): 55, 32, 38, (98,23,0): 54, 31, 37, (98,24,0): 62, 35, 42, (98,25,0): 62, 35, 42, (98,26,0): 65, 34, 42, (98,27,0): 66, 35, 43, (98,28,0): 70, 37, 46, (98,29,0): 73, 40, 49, (98,30,0): 79, 43, 53, (98,31,0): 82, 44, 57, (98,32,0): 77, 36, 52, (98,33,0): 77, 34, 51, (98,34,0): 75, 32, 51, (98,35,0): 72, 31, 49, (98,36,0): 67, 28, 46, (98,37,0): 62, 28, 44, (98,38,0): 59, 26, 43, (98,39,0): 57, 26, 42, (98,40,0): 53, 24, 42, (98,41,0): 50, 26, 42, (98,42,0): 49, 26, 42, (98,43,0): 45, 27, 41, (98,44,0): 44, 26, 42, (98,45,0): 43, 26, 42, (98,46,0): 41, 27, 42, (98,47,0): 40, 26, 41, (98,48,0): 42, 25, 43, (98,49,0): 43, 26, 45, (98,50,0): 41, 26, 45, (98,51,0): 42, 27, 46, (98,52,0): 41, 26, 45, (98,53,0): 40, 25, 44, (98,54,0): 37, 24, 42, (98,55,0): 36, 23, 41, (98,56,0): 36, 23, 41, (98,57,0): 34, 23, 40, (98,58,0): 34, 23, 40, (98,59,0): 33, 22, 39, (98,60,0): 30, 21, 38, (98,61,0): 29, 20, 37, (98,62,0): 28, 19, 36, (98,63,0): 27, 18, 35, (98,64,0): 24, 17, 35, (98,65,0): 24, 17, 35, (98,66,0): 24, 17, 35, (98,67,0): 24, 17, 35, (98,68,0): 24, 17, 35, (98,69,0): 24, 17, 35, (98,70,0): 24, 17, 35, (98,71,0): 24, 17, 35, (98,72,0): 27, 20, 38, (98,73,0): 27, 20, 38, (98,74,0): 27, 20, 38, (98,75,0): 27, 20, 38, (98,76,0): 27, 20, 38, (98,77,0): 27, 20, 38, (98,78,0): 27, 20, 38, (98,79,0): 27, 20, 38, (98,80,0): 30, 18, 38, (98,81,0): 29, 17, 37, (98,82,0): 27, 18, 37, (98,83,0): 27, 18, 37, (98,84,0): 26, 17, 36, (98,85,0): 25, 16, 35, (98,86,0): 24, 17, 35, (98,87,0): 24, 17, 35, (98,88,0): 24, 20, 37, (98,89,0): 23, 19, 36, (98,90,0): 21, 17, 34, (98,91,0): 20, 16, 33, (98,92,0): 19, 16, 33, (98,93,0): 19, 16, 33, (98,94,0): 19, 16, 33, (98,95,0): 20, 17, 34, (98,96,0): 22, 15, 33, (98,97,0): 22, 15, 33, (98,98,0): 22, 15, 33, (98,99,0): 22, 15, 33, (98,100,0): 22, 15, 33, (98,101,0): 22, 15, 33, (98,102,0): 22, 15, 33, (98,103,0): 22, 15, 33, (98,104,0): 21, 14, 32, (98,105,0): 21, 14, 32, (98,106,0): 21, 14, 32, (98,107,0): 21, 14, 32, (98,108,0): 21, 14, 32, (98,109,0): 21, 14, 32, (98,110,0): 21, 14, 32, (98,111,0): 22, 13, 32, (98,112,0): 24, 12, 32, (98,113,0): 25, 13, 33, (98,114,0): 26, 14, 34, (98,115,0): 27, 15, 35, (98,116,0): 25, 16, 35, (98,117,0): 24, 15, 34, (98,118,0): 22, 15, 33, (98,119,0): 21, 14, 32, (98,120,0): 20, 16, 33, (98,121,0): 19, 15, 32, (98,122,0): 17, 14, 31, (98,123,0): 17, 14, 31, (98,124,0): 16, 15, 31, (98,125,0): 16, 15, 31, (98,126,0): 17, 16, 32, (98,127,0): 18, 17, 33, (98,128,0): 21, 18, 39, (98,129,0): 22, 17, 39, (98,130,0): 24, 16, 39, (98,131,0): 24, 16, 39, (98,132,0): 24, 16, 37, (98,133,0): 24, 16, 37, (98,134,0): 25, 16, 37, (98,135,0): 25, 16, 37, (98,136,0): 28, 16, 36, (98,137,0): 28, 16, 36, (98,138,0): 28, 17, 34, (98,139,0): 29, 18, 35, (98,140,0): 30, 17, 35, (98,141,0): 31, 18, 36, (98,142,0): 31, 18, 35, (98,143,0): 31, 18, 35, (98,144,0): 33, 21, 35, (98,145,0): 33, 21, 35, (98,146,0): 33, 21, 35, (98,147,0): 33, 21, 35, (98,148,0): 33, 21, 35, (98,149,0): 33, 21, 35, (98,150,0): 33, 21, 35, (98,151,0): 33, 21, 35, (98,152,0): 33, 21, 35, (98,153,0): 33, 21, 35, (98,154,0): 33, 21, 35, (98,155,0): 33, 21, 35, (98,156,0): 33, 21, 35, (98,157,0): 33, 21, 35, (98,158,0): 33, 21, 35, (98,159,0): 33, 21, 35, (98,160,0): 33, 21, 35, (98,161,0): 33, 21, 35, (98,162,0): 34, 22, 36, (98,163,0): 34, 22, 36, (98,164,0): 35, 23, 37, (98,165,0): 35, 23, 37, (98,166,0): 36, 24, 38, (98,167,0): 36, 24, 38, (98,168,0): 35, 23, 37, (98,169,0): 35, 23, 37, (98,170,0): 35, 23, 37, (98,171,0): 35, 23, 37, (98,172,0): 35, 23, 37, (98,173,0): 35, 23, 37, (98,174,0): 35, 23, 37, (98,175,0): 35, 23, 37, (98,176,0): 37, 25, 39, (98,177,0): 36, 24, 38, (98,178,0): 35, 23, 37, (98,179,0): 34, 22, 36, (98,180,0): 34, 22, 36, (98,181,0): 35, 23, 37, (98,182,0): 36, 24, 38, (98,183,0): 37, 25, 39, (98,184,0): 37, 25, 39, (98,185,0): 37, 25, 39, (98,186,0): 37, 25, 39, (98,187,0): 37, 25, 39, (98,188,0): 37, 25, 39, (98,189,0): 37, 25, 39, (98,190,0): 37, 25, 39, (98,191,0): 37, 25, 39, (98,192,0): 41, 29, 43, (98,193,0): 41, 29, 43, (98,194,0): 41, 29, 43, (98,195,0): 41, 29, 43, (98,196,0): 41, 29, 41, (98,197,0): 41, 29, 41, (98,198,0): 42, 28, 41, (98,199,0): 42, 28, 41, (98,200,0): 44, 28, 39, (98,201,0): 44, 28, 39, (98,202,0): 45, 28, 38, (98,203,0): 46, 29, 39, (98,204,0): 46, 29, 39, (98,205,0): 47, 30, 40, (98,206,0): 47, 30, 38, (98,207,0): 48, 31, 39, (98,208,0): 52, 32, 43, (98,209,0): 53, 31, 43, (98,210,0): 53, 31, 43, (98,211,0): 53, 31, 43, (98,212,0): 53, 32, 41, (98,213,0): 53, 32, 41, (98,214,0): 53, 32, 39, (98,215,0): 53, 32, 39, (98,216,0): 54, 33, 40, (98,217,0): 54, 33, 40, (98,218,0): 54, 33, 38, (98,219,0): 54, 33, 38, (98,220,0): 54, 34, 36, (98,221,0): 54, 34, 36, (98,222,0): 54, 34, 36, (98,223,0): 54, 34, 36, (98,224,0): 53, 31, 33, (98,225,0): 53, 31, 33, (98,226,0): 53, 31, 33, (98,227,0): 53, 31, 33, (98,228,0): 53, 31, 33, (98,229,0): 53, 31, 33, (98,230,0): 53, 31, 33, (98,231,0): 53, 31, 33, (98,232,0): 55, 33, 35, (98,233,0): 55, 33, 35, (98,234,0): 55, 33, 35, (98,235,0): 55, 33, 35, (98,236,0): 54, 32, 34, (98,237,0): 54, 32, 34, (98,238,0): 54, 32, 34, (98,239,0): 56, 31, 34, (98,240,0): 60, 31, 35, (98,241,0): 61, 30, 35, (98,242,0): 61, 30, 35, (98,243,0): 61, 30, 35, (98,244,0): 60, 29, 34, (98,245,0): 60, 29, 34, (98,246,0): 60, 29, 34, (98,247,0): 60, 29, 34, (98,248,0): 60, 29, 34, (98,249,0): 60, 29, 34, (98,250,0): 60, 29, 34, (98,251,0): 60, 29, 34, (98,252,0): 60, 29, 34, (98,253,0): 60, 29, 34, (98,254,0): 60, 29, 34, (98,255,0): 60, 29, 34, (98,256,0): 60, 31, 35, (98,257,0): 60, 31, 35, (98,258,0): 62, 31, 36, (98,259,0): 63, 32, 37, (98,260,0): 64, 34, 36, (98,261,0): 65, 35, 37, (98,262,0): 67, 35, 38, (98,263,0): 67, 35, 38, (98,264,0): 69, 35, 36, (98,265,0): 69, 35, 36, (98,266,0): 70, 36, 35, (98,267,0): 70, 36, 35, (98,268,0): 72, 36, 36, (98,269,0): 72, 36, 36, (98,270,0): 73, 38, 36, (98,271,0): 73, 38, 36, (98,272,0): 75, 39, 39, (98,273,0): 76, 40, 40, (98,274,0): 76, 41, 39, (98,275,0): 77, 42, 40, (98,276,0): 79, 44, 42, (98,277,0): 80, 45, 43, (98,278,0): 80, 45, 41, (98,279,0): 81, 46, 42, (98,280,0): 81, 46, 42, (98,281,0): 82, 47, 41, (98,282,0): 83, 48, 42, (98,283,0): 84, 49, 43, (98,284,0): 85, 51, 42, (98,285,0): 86, 52, 43, (98,286,0): 87, 53, 44, (98,287,0): 87, 53, 43, (98,288,0): 87, 55, 44, (98,289,0): 87, 55, 40, (98,290,0): 89, 56, 41, (98,291,0): 92, 59, 40, (98,292,0): 98, 61, 43, (98,293,0): 102, 65, 46, (98,294,0): 108, 67, 49, (98,295,0): 110, 69, 49, (98,296,0): 118, 73, 54, (98,297,0): 119, 74, 51, (98,298,0): 123, 76, 48, (98,299,0): 127, 81, 47, (98,300,0): 136, 87, 44, (98,301,0): 141, 94, 42, (98,302,0): 146, 100, 41, (98,303,0): 148, 103, 44, (98,304,0): 144, 101, 48, (98,305,0): 143, 102, 50, (98,306,0): 143, 103, 51, (98,307,0): 143, 103, 52, (98,308,0): 142, 105, 53, (98,309,0): 142, 105, 53, (98,310,0): 141, 105, 55, (98,311,0): 140, 107, 56, (98,312,0): 140, 107, 56, (98,313,0): 140, 108, 59, (98,314,0): 140, 110, 60, (98,315,0): 141, 111, 61, (98,316,0): 141, 113, 65, (98,317,0): 142, 114, 66, (98,318,0): 142, 116, 67, (98,319,0): 143, 117, 68, (98,320,0): 145, 117, 67, (98,321,0): 145, 118, 65, (98,322,0): 146, 119, 66, (98,323,0): 147, 120, 67, (98,324,0): 147, 121, 70, (98,325,0): 148, 122, 71, (98,326,0): 149, 123, 72, (98,327,0): 149, 123, 72, (98,328,0): 149, 126, 76, (98,329,0): 149, 126, 76, (98,330,0): 148, 126, 77, (98,331,0): 148, 126, 77, (98,332,0): 148, 126, 77, (98,333,0): 148, 126, 77, (98,334,0): 147, 126, 79, (98,335,0): 147, 126, 79, (98,336,0): 149, 126, 82, (98,337,0): 150, 127, 83, (98,338,0): 152, 129, 85, (98,339,0): 153, 130, 86, (98,340,0): 155, 132, 90, (98,341,0): 155, 132, 90, (98,342,0): 154, 131, 89, (98,343,0): 154, 131, 89, (98,344,0): 157, 134, 93, (98,345,0): 158, 135, 94, (98,346,0): 158, 134, 96, (98,347,0): 158, 134, 96, (98,348,0): 159, 135, 97, (98,349,0): 160, 136, 98, (98,350,0): 160, 136, 100, (98,351,0): 160, 136, 98, (98,352,0): 166, 138, 101, (98,353,0): 167, 139, 100, (98,354,0): 167, 139, 100, (98,355,0): 168, 140, 101, (98,356,0): 170, 142, 105, (98,357,0): 171, 143, 106, (98,358,0): 172, 142, 106, (98,359,0): 173, 143, 107, (98,360,0): 174, 144, 108, (98,361,0): 173, 143, 107, (98,362,0): 171, 141, 107, (98,363,0): 169, 139, 105, (98,364,0): 169, 136, 103, (98,365,0): 169, 136, 103, (98,366,0): 169, 136, 103, (98,367,0): 167, 136, 105, (98,368,0): 168, 139, 109, (98,369,0): 169, 140, 110, (98,370,0): 173, 138, 108, (98,371,0): 175, 136, 105, (98,372,0): 176, 133, 99, (98,373,0): 177, 131, 97, (98,374,0): 182, 131, 100, (98,375,0): 186, 133, 101, (98,376,0): 186, 133, 101, (98,377,0): 191, 137, 103, (98,378,0): 201, 141, 105, (98,379,0): 208, 145, 104, (98,380,0): 216, 148, 103, (98,381,0): 225, 151, 102, (98,382,0): 237, 157, 104, (98,383,0): 244, 163, 107, (98,384,0): 243, 163, 104, (98,385,0): 244, 164, 103, (98,386,0): 246, 164, 104, (98,387,0): 248, 164, 102, (98,388,0): 251, 163, 100, (98,389,0): 251, 161, 98, (98,390,0): 250, 161, 95, (98,391,0): 249, 160, 94, (98,392,0): 251, 162, 96, (98,393,0): 248, 163, 96, (98,394,0): 245, 164, 98, (98,395,0): 242, 164, 98, (98,396,0): 236, 162, 97, (98,397,0): 228, 159, 94, (98,398,0): 223, 155, 90, (98,399,0): 215, 154, 89, (98,400,0): 207, 154, 88, (98,401,0): 209, 160, 93, (98,402,0): 218, 167, 101, (98,403,0): 226, 173, 103, (98,404,0): 232, 178, 108, (98,405,0): 235, 181, 107, (98,406,0): 239, 183, 109, (98,407,0): 242, 186, 111, (98,408,0): 239, 183, 108, (98,409,0): 236, 183, 107, (98,410,0): 234, 182, 109, (98,411,0): 229, 181, 107, (98,412,0): 226, 179, 109, (98,413,0): 222, 178, 107, (98,414,0): 219, 176, 108, (98,415,0): 217, 177, 108, (98,416,0): 220, 175, 110, (98,417,0): 218, 173, 108, (98,418,0): 215, 170, 103, (98,419,0): 215, 170, 103, (98,420,0): 218, 173, 106, (98,421,0): 221, 176, 108, (98,422,0): 223, 179, 108, (98,423,0): 223, 179, 108, (98,424,0): 224, 180, 107, (98,425,0): 226, 182, 107, (98,426,0): 228, 185, 107, (98,427,0): 228, 185, 107, (98,428,0): 228, 185, 106, (98,429,0): 229, 186, 107, (98,430,0): 233, 191, 109, (98,431,0): 236, 194, 110, (98,432,0): 244, 200, 111, (98,433,0): 244, 201, 109, (98,434,0): 246, 202, 113, (98,435,0): 247, 206, 116, (98,436,0): 249, 208, 120, (98,437,0): 246, 205, 117, (98,438,0): 240, 198, 112, (98,439,0): 234, 194, 107, (98,440,0): 227, 186, 104, (98,441,0): 222, 184, 101, (98,442,0): 220, 182, 101, (98,443,0): 220, 182, 101, (98,444,0): 221, 182, 103, (98,445,0): 216, 179, 99, (98,446,0): 208, 171, 93, (98,447,0): 198, 165, 88, (98,448,0): 190, 161, 91, (98,449,0): 185, 161, 91, (98,450,0): 184, 157, 90, (98,451,0): 182, 154, 89, (98,452,0): 182, 150, 89, (98,453,0): 179, 147, 88, (98,454,0): 176, 141, 87, (98,455,0): 173, 137, 85, (98,456,0): 168, 134, 86, (98,457,0): 165, 131, 86, (98,458,0): 159, 126, 83, (98,459,0): 154, 122, 81, (98,460,0): 151, 119, 81, (98,461,0): 143, 113, 75, (98,462,0): 135, 107, 70, (98,463,0): 128, 102, 67, (98,464,0): 126, 99, 69, (98,465,0): 125, 98, 68, (98,466,0): 126, 99, 70, (98,467,0): 129, 102, 72, (98,468,0): 134, 104, 76, (98,469,0): 135, 106, 76, (98,470,0): 132, 102, 74, (98,471,0): 129, 100, 70, (98,472,0): 128, 97, 69, (98,473,0): 128, 97, 68, (98,474,0): 129, 95, 68, (98,475,0): 130, 96, 68, (98,476,0): 131, 97, 70, (98,477,0): 134, 100, 72, (98,478,0): 137, 101, 75, (98,479,0): 137, 103, 75, (98,480,0): 133, 102, 73, (98,481,0): 132, 103, 71, (98,482,0): 133, 102, 73, (98,483,0): 131, 102, 72, (98,484,0): 129, 98, 69, (98,485,0): 126, 97, 67, (98,486,0): 124, 93, 65, (98,487,0): 122, 92, 64, (98,488,0): 127, 96, 68, (98,489,0): 126, 96, 68, (98,490,0): 127, 95, 70, (98,491,0): 126, 96, 70, (98,492,0): 128, 96, 71, (98,493,0): 126, 96, 70, (98,494,0): 127, 95, 70, (98,495,0): 126, 96, 70, (98,496,0): 124, 97, 70, (98,497,0): 123, 97, 70, (98,498,0): 123, 97, 70, (98,499,0): 123, 97, 70, (98,500,0): 123, 99, 73, (98,501,0): 123, 99, 73, (98,502,0): 121, 100, 73, (98,503,0): 121, 100, 73, (98,504,0): 116, 94, 70, (98,505,0): 116, 94, 70, (98,506,0): 114, 94, 70, (98,507,0): 112, 92, 68, (98,508,0): 108, 90, 66, (98,509,0): 107, 89, 65, (98,510,0): 106, 88, 66, (98,511,0): 105, 87, 65, (98,512,0): 102, 85, 65, (98,513,0): 102, 85, 65, (98,514,0): 102, 85, 65, (98,515,0): 102, 85, 65, (98,516,0): 102, 85, 65, (98,517,0): 102, 85, 65, (98,518,0): 102, 85, 65, (98,519,0): 102, 85, 65, (98,520,0): 103, 86, 66, (98,521,0): 103, 86, 66, (98,522,0): 103, 86, 66, (98,523,0): 103, 86, 66, (98,524,0): 103, 86, 66, (98,525,0): 103, 86, 66, (98,526,0): 103, 86, 66, (98,527,0): 102, 87, 66, (98,528,0): 103, 88, 67, (98,529,0): 102, 90, 68, (98,530,0): 104, 92, 70, (98,531,0): 105, 93, 71, (98,532,0): 106, 91, 70, (98,533,0): 102, 87, 66, (98,534,0): 98, 83, 62, (98,535,0): 96, 81, 60, (98,536,0): 99, 82, 62, (98,537,0): 100, 83, 63, (98,538,0): 103, 85, 65, (98,539,0): 104, 86, 66, (98,540,0): 105, 87, 67, (98,541,0): 105, 87, 67, (98,542,0): 107, 86, 67, (98,543,0): 106, 85, 64, (98,544,0): 104, 86, 64, (98,545,0): 104, 86, 62, (98,546,0): 103, 85, 61, (98,547,0): 101, 83, 59, (98,548,0): 99, 81, 59, (98,549,0): 98, 80, 58, (98,550,0): 97, 79, 59, (98,551,0): 96, 78, 58, (98,552,0): 97, 79, 59, (98,553,0): 97, 79, 59, (98,554,0): 97, 78, 61, (98,555,0): 98, 79, 62, (98,556,0): 98, 79, 64, (98,557,0): 99, 80, 65, (98,558,0): 99, 80, 65, (98,559,0): 99, 80, 65, (98,560,0): 101, 77, 65, (98,561,0): 101, 77, 65, (98,562,0): 101, 77, 65, (98,563,0): 100, 76, 64, (98,564,0): 97, 75, 64, (98,565,0): 95, 73, 62, (98,566,0): 93, 71, 60, (98,567,0): 92, 70, 59, (98,568,0): 86, 66, 57, (98,569,0): 83, 63, 54, (98,570,0): 79, 60, 53, (98,571,0): 79, 60, 53, (98,572,0): 81, 62, 55, (98,573,0): 80, 61, 54, (98,574,0): 77, 60, 53, (98,575,0): 74, 56, 52, (98,576,0): 75, 55, 54, (98,577,0): 75, 55, 56, (98,578,0): 73, 53, 54, (98,579,0): 72, 52, 53, (98,580,0): 70, 50, 51, (98,581,0): 69, 49, 50, (98,582,0): 68, 48, 49, (98,583,0): 67, 47, 48, (98,584,0): 63, 43, 44, (98,585,0): 64, 44, 45, (98,586,0): 65, 45, 46, (98,587,0): 66, 46, 47, (98,588,0): 66, 46, 47, (98,589,0): 66, 46, 47, (98,590,0): 65, 45, 46, (98,591,0): 64, 46, 46, (98,592,0): 63, 44, 46, (98,593,0): 61, 45, 46, (98,594,0): 60, 44, 45, (98,595,0): 58, 42, 43, (98,596,0): 56, 40, 41, (98,597,0): 55, 39, 40, (98,598,0): 54, 38, 39, (98,599,0): 53, 37, 38, (99,0,0): 24, 23, 39, (99,1,0): 24, 23, 39, (99,2,0): 24, 23, 39, (99,3,0): 25, 24, 38, (99,4,0): 26, 24, 38, (99,5,0): 27, 25, 39, (99,6,0): 28, 24, 39, (99,7,0): 29, 25, 40, (99,8,0): 32, 26, 40, (99,9,0): 33, 25, 40, (99,10,0): 34, 26, 41, (99,11,0): 38, 27, 43, (99,12,0): 39, 28, 44, (99,13,0): 42, 30, 44, (99,14,0): 43, 31, 45, (99,15,0): 44, 30, 43, (99,16,0): 54, 34, 43, (99,17,0): 56, 35, 40, (99,18,0): 58, 37, 42, (99,19,0): 60, 37, 43, (99,20,0): 63, 38, 44, (99,21,0): 63, 38, 44, (99,22,0): 64, 37, 44, (99,23,0): 65, 35, 43, (99,24,0): 69, 38, 46, (99,25,0): 69, 36, 45, (99,26,0): 70, 34, 44, (99,27,0): 70, 34, 44, (99,28,0): 73, 35, 46, (99,29,0): 76, 38, 49, (99,30,0): 81, 41, 52, (99,31,0): 83, 42, 56, (99,32,0): 76, 35, 51, (99,33,0): 75, 34, 50, (99,34,0): 72, 31, 49, (99,35,0): 66, 27, 45, (99,36,0): 62, 25, 42, (99,37,0): 58, 24, 40, (99,38,0): 55, 24, 40, (99,39,0): 52, 24, 39, (99,40,0): 51, 24, 41, (99,41,0): 49, 25, 41, (99,42,0): 47, 24, 40, (99,43,0): 44, 26, 40, (99,44,0): 43, 25, 41, (99,45,0): 42, 25, 41, (99,46,0): 39, 25, 40, (99,47,0): 39, 25, 42, (99,48,0): 42, 25, 44, (99,49,0): 43, 26, 45, (99,50,0): 41, 26, 45, (99,51,0): 41, 26, 45, (99,52,0): 40, 25, 44, (99,53,0): 38, 23, 42, (99,54,0): 36, 23, 41, (99,55,0): 34, 21, 39, (99,56,0): 33, 22, 39, (99,57,0): 33, 22, 39, (99,58,0): 32, 21, 38, (99,59,0): 31, 20, 37, (99,60,0): 29, 20, 37, (99,61,0): 28, 19, 36, (99,62,0): 28, 19, 36, (99,63,0): 27, 18, 35, (99,64,0): 24, 17, 35, (99,65,0): 24, 17, 35, (99,66,0): 24, 17, 35, (99,67,0): 24, 17, 35, (99,68,0): 24, 17, 35, (99,69,0): 24, 17, 35, (99,70,0): 24, 17, 35, (99,71,0): 24, 17, 35, (99,72,0): 27, 20, 38, (99,73,0): 27, 20, 38, (99,74,0): 27, 20, 38, (99,75,0): 27, 20, 38, (99,76,0): 27, 20, 38, (99,77,0): 27, 20, 38, (99,78,0): 27, 20, 38, (99,79,0): 27, 20, 38, (99,80,0): 29, 17, 37, (99,81,0): 29, 17, 37, (99,82,0): 27, 18, 37, (99,83,0): 26, 17, 36, (99,84,0): 26, 17, 36, (99,85,0): 25, 16, 35, (99,86,0): 24, 17, 35, (99,87,0): 23, 16, 34, (99,88,0): 23, 19, 36, (99,89,0): 22, 18, 35, (99,90,0): 22, 18, 35, (99,91,0): 21, 17, 34, (99,92,0): 19, 16, 33, (99,93,0): 19, 16, 33, (99,94,0): 19, 16, 33, (99,95,0): 19, 16, 33, (99,96,0): 22, 15, 33, (99,97,0): 22, 15, 33, (99,98,0): 22, 15, 33, (99,99,0): 22, 15, 33, (99,100,0): 22, 15, 33, (99,101,0): 22, 15, 33, (99,102,0): 22, 15, 33, (99,103,0): 22, 15, 33, (99,104,0): 21, 14, 32, (99,105,0): 21, 14, 32, (99,106,0): 21, 14, 32, (99,107,0): 21, 14, 32, (99,108,0): 21, 14, 32, (99,109,0): 21, 14, 32, (99,110,0): 21, 14, 32, (99,111,0): 21, 14, 32, (99,112,0): 24, 12, 32, (99,113,0): 25, 13, 33, (99,114,0): 26, 14, 34, (99,115,0): 27, 15, 35, (99,116,0): 25, 16, 35, (99,117,0): 24, 15, 34, (99,118,0): 22, 15, 33, (99,119,0): 21, 14, 32, (99,120,0): 20, 16, 33, (99,121,0): 19, 15, 32, (99,122,0): 18, 15, 32, (99,123,0): 18, 15, 32, (99,124,0): 18, 15, 32, (99,125,0): 17, 16, 32, (99,126,0): 17, 16, 32, (99,127,0): 19, 16, 33, (99,128,0): 22, 17, 39, (99,129,0): 22, 17, 39, (99,130,0): 24, 16, 39, (99,131,0): 24, 16, 39, (99,132,0): 24, 16, 37, (99,133,0): 24, 16, 37, (99,134,0): 25, 16, 37, (99,135,0): 25, 16, 35, (99,136,0): 28, 16, 36, (99,137,0): 28, 16, 36, (99,138,0): 28, 17, 34, (99,139,0): 29, 18, 35, (99,140,0): 30, 17, 35, (99,141,0): 31, 18, 36, (99,142,0): 31, 18, 35, (99,143,0): 31, 18, 35, (99,144,0): 33, 21, 35, (99,145,0): 33, 21, 35, (99,146,0): 33, 21, 35, (99,147,0): 33, 21, 35, (99,148,0): 33, 21, 35, (99,149,0): 33, 21, 35, (99,150,0): 33, 21, 35, (99,151,0): 33, 21, 35, (99,152,0): 33, 21, 35, (99,153,0): 33, 21, 35, (99,154,0): 33, 21, 35, (99,155,0): 33, 21, 35, (99,156,0): 33, 21, 35, (99,157,0): 33, 21, 35, (99,158,0): 33, 21, 35, (99,159,0): 33, 21, 35, (99,160,0): 33, 21, 35, (99,161,0): 33, 21, 35, (99,162,0): 34, 22, 36, (99,163,0): 34, 22, 36, (99,164,0): 35, 23, 37, (99,165,0): 35, 23, 37, (99,166,0): 36, 24, 38, (99,167,0): 36, 24, 38, (99,168,0): 36, 24, 38, (99,169,0): 36, 24, 38, (99,170,0): 36, 24, 38, (99,171,0): 36, 24, 38, (99,172,0): 36, 24, 38, (99,173,0): 36, 24, 38, (99,174,0): 36, 24, 38, (99,175,0): 36, 24, 38, (99,176,0): 37, 25, 39, (99,177,0): 36, 24, 38, (99,178,0): 35, 23, 37, (99,179,0): 34, 22, 36, (99,180,0): 34, 22, 36, (99,181,0): 35, 23, 37, (99,182,0): 36, 24, 38, (99,183,0): 37, 25, 39, (99,184,0): 37, 25, 39, (99,185,0): 37, 25, 39, (99,186,0): 37, 25, 39, (99,187,0): 37, 25, 39, (99,188,0): 37, 25, 39, (99,189,0): 37, 25, 39, (99,190,0): 37, 25, 39, (99,191,0): 37, 25, 39, (99,192,0): 41, 29, 43, (99,193,0): 41, 29, 43, (99,194,0): 41, 29, 43, (99,195,0): 41, 29, 43, (99,196,0): 41, 29, 41, (99,197,0): 41, 29, 41, (99,198,0): 42, 28, 41, (99,199,0): 42, 29, 39, (99,200,0): 44, 28, 39, (99,201,0): 44, 28, 39, (99,202,0): 45, 28, 38, (99,203,0): 46, 29, 39, (99,204,0): 46, 29, 39, (99,205,0): 47, 30, 40, (99,206,0): 47, 30, 38, (99,207,0): 49, 29, 38, (99,208,0): 53, 31, 43, (99,209,0): 53, 31, 43, (99,210,0): 53, 31, 43, (99,211,0): 53, 31, 43, (99,212,0): 53, 32, 41, (99,213,0): 53, 32, 41, (99,214,0): 53, 32, 39, (99,215,0): 53, 32, 39, (99,216,0): 54, 33, 40, (99,217,0): 54, 33, 38, (99,218,0): 54, 33, 38, (99,219,0): 54, 33, 38, (99,220,0): 54, 34, 36, (99,221,0): 54, 34, 36, (99,222,0): 54, 34, 36, (99,223,0): 54, 34, 36, (99,224,0): 53, 31, 33, (99,225,0): 53, 31, 33, (99,226,0): 53, 31, 33, (99,227,0): 53, 31, 33, (99,228,0): 53, 31, 33, (99,229,0): 53, 31, 33, (99,230,0): 53, 31, 33, (99,231,0): 53, 31, 33, (99,232,0): 57, 35, 37, (99,233,0): 56, 34, 36, (99,234,0): 56, 34, 36, (99,235,0): 55, 33, 35, (99,236,0): 54, 32, 34, (99,237,0): 53, 31, 33, (99,238,0): 53, 31, 33, (99,239,0): 54, 29, 32, (99,240,0): 62, 33, 37, (99,241,0): 62, 31, 36, (99,242,0): 62, 31, 36, (99,243,0): 61, 30, 35, (99,244,0): 60, 29, 34, (99,245,0): 59, 28, 33, (99,246,0): 59, 28, 33, (99,247,0): 58, 27, 32, (99,248,0): 60, 29, 34, (99,249,0): 60, 29, 34, (99,250,0): 60, 29, 34, (99,251,0): 60, 29, 34, (99,252,0): 60, 29, 34, (99,253,0): 60, 29, 34, (99,254,0): 60, 29, 34, (99,255,0): 60, 29, 34, (99,256,0): 60, 31, 35, (99,257,0): 60, 31, 35, (99,258,0): 62, 31, 36, (99,259,0): 63, 32, 37, (99,260,0): 64, 34, 36, (99,261,0): 65, 35, 37, (99,262,0): 67, 35, 38, (99,263,0): 67, 35, 36, (99,264,0): 68, 34, 35, (99,265,0): 69, 35, 36, (99,266,0): 69, 35, 34, (99,267,0): 69, 35, 34, (99,268,0): 71, 35, 35, (99,269,0): 71, 35, 35, (99,270,0): 72, 37, 35, (99,271,0): 72, 37, 35, (99,272,0): 75, 39, 39, (99,273,0): 76, 40, 40, (99,274,0): 76, 41, 39, (99,275,0): 77, 42, 40, (99,276,0): 79, 44, 42, (99,277,0): 80, 45, 43, (99,278,0): 80, 45, 41, (99,279,0): 81, 46, 42, (99,280,0): 80, 45, 39, (99,281,0): 81, 46, 40, (99,282,0): 81, 46, 40, (99,283,0): 82, 47, 41, (99,284,0): 84, 50, 41, (99,285,0): 85, 51, 42, (99,286,0): 85, 51, 42, (99,287,0): 86, 52, 42, (99,288,0): 85, 53, 42, (99,289,0): 86, 54, 41, (99,290,0): 88, 55, 40, (99,291,0): 91, 58, 41, (99,292,0): 96, 61, 42, (99,293,0): 101, 64, 45, (99,294,0): 105, 67, 48, (99,295,0): 109, 68, 50, (99,296,0): 116, 73, 54, (99,297,0): 119, 74, 51, (99,298,0): 121, 76, 47, (99,299,0): 126, 80, 46, (99,300,0): 133, 86, 42, (99,301,0): 140, 93, 41, (99,302,0): 145, 99, 40, (99,303,0): 148, 104, 43, (99,304,0): 145, 102, 47, (99,305,0): 144, 103, 49, (99,306,0): 144, 104, 52, (99,307,0): 144, 104, 52, (99,308,0): 145, 105, 53, (99,309,0): 143, 106, 54, (99,310,0): 143, 107, 55, (99,311,0): 143, 107, 55, (99,312,0): 141, 108, 57, (99,313,0): 141, 109, 58, (99,314,0): 141, 111, 59, (99,315,0): 143, 113, 63, (99,316,0): 144, 116, 66, (99,317,0): 146, 118, 68, (99,318,0): 147, 121, 72, (99,319,0): 147, 121, 70, (99,320,0): 147, 120, 67, (99,321,0): 148, 121, 68, (99,322,0): 148, 121, 68, (99,323,0): 149, 122, 69, (99,324,0): 149, 123, 72, (99,325,0): 149, 123, 72, (99,326,0): 150, 124, 73, (99,327,0): 150, 124, 73, (99,328,0): 149, 126, 76, (99,329,0): 149, 126, 76, (99,330,0): 148, 126, 77, (99,331,0): 149, 127, 78, (99,332,0): 149, 127, 78, (99,333,0): 149, 127, 78, (99,334,0): 149, 128, 81, (99,335,0): 149, 128, 81, (99,336,0): 150, 127, 83, (99,337,0): 151, 128, 84, (99,338,0): 153, 130, 86, (99,339,0): 155, 132, 88, (99,340,0): 156, 133, 91, (99,341,0): 156, 133, 91, (99,342,0): 156, 133, 91, (99,343,0): 156, 133, 91, (99,344,0): 158, 135, 94, (99,345,0): 158, 135, 94, (99,346,0): 158, 134, 96, (99,347,0): 159, 135, 97, (99,348,0): 159, 135, 97, (99,349,0): 160, 136, 98, (99,350,0): 160, 136, 100, (99,351,0): 161, 137, 99, (99,352,0): 165, 139, 102, (99,353,0): 167, 139, 100, (99,354,0): 168, 140, 101, (99,355,0): 169, 141, 102, (99,356,0): 170, 142, 105, (99,357,0): 171, 143, 106, (99,358,0): 173, 143, 107, (99,359,0): 174, 144, 108, (99,360,0): 175, 145, 109, (99,361,0): 173, 143, 107, (99,362,0): 172, 142, 108, (99,363,0): 170, 140, 106, (99,364,0): 171, 138, 105, (99,365,0): 170, 137, 104, (99,366,0): 171, 138, 105, (99,367,0): 171, 138, 105, (99,368,0): 176, 141, 109, (99,369,0): 177, 141, 107, (99,370,0): 180, 140, 105, (99,371,0): 182, 138, 101, (99,372,0): 186, 136, 99, (99,373,0): 189, 135, 97, (99,374,0): 192, 136, 99, (99,375,0): 195, 137, 100, (99,376,0): 199, 139, 103, (99,377,0): 205, 143, 106, (99,378,0): 212, 147, 107, (99,379,0): 218, 149, 107, (99,380,0): 224, 150, 101, (99,381,0): 231, 154, 100, (99,382,0): 240, 158, 100, (99,383,0): 245, 163, 103, (99,384,0): 239, 160, 101, (99,385,0): 240, 161, 102, (99,386,0): 243, 163, 104, (99,387,0): 245, 163, 103, (99,388,0): 249, 163, 102, (99,389,0): 251, 163, 100, (99,390,0): 251, 163, 99, (99,391,0): 251, 164, 97, (99,392,0): 254, 167, 100, (99,393,0): 252, 167, 100, (99,394,0): 249, 168, 102, (99,395,0): 246, 169, 101, (99,396,0): 240, 167, 99, (99,397,0): 233, 164, 97, (99,398,0): 228, 161, 93, (99,399,0): 220, 159, 92, (99,400,0): 210, 157, 91, (99,401,0): 210, 161, 94, (99,402,0): 217, 167, 98, (99,403,0): 223, 173, 102, (99,404,0): 230, 177, 107, (99,405,0): 236, 182, 110, (99,406,0): 240, 186, 112, (99,407,0): 242, 189, 113, (99,408,0): 238, 185, 109, (99,409,0): 236, 184, 109, (99,410,0): 233, 183, 110, (99,411,0): 229, 181, 107, (99,412,0): 224, 180, 109, (99,413,0): 221, 179, 107, (99,414,0): 217, 177, 107, (99,415,0): 216, 176, 107, (99,416,0): 222, 178, 113, (99,417,0): 221, 176, 111, (99,418,0): 220, 175, 108, (99,419,0): 219, 174, 107, (99,420,0): 220, 175, 107, (99,421,0): 222, 177, 109, (99,422,0): 223, 179, 108, (99,423,0): 224, 180, 107, (99,424,0): 226, 182, 107, (99,425,0): 227, 183, 108, (99,426,0): 228, 185, 107, (99,427,0): 228, 185, 106, (99,428,0): 228, 185, 106, (99,429,0): 231, 188, 109, (99,430,0): 237, 195, 113, (99,431,0): 242, 200, 116, (99,432,0): 245, 204, 114, (99,433,0): 245, 204, 112, (99,434,0): 247, 206, 116, (99,435,0): 249, 210, 119, (99,436,0): 251, 210, 122, (99,437,0): 246, 206, 118, (99,438,0): 238, 198, 111, (99,439,0): 230, 193, 105, (99,440,0): 223, 185, 102, (99,441,0): 221, 185, 101, (99,442,0): 220, 183, 102, (99,443,0): 222, 185, 104, (99,444,0): 222, 185, 105, (99,445,0): 216, 181, 100, (99,446,0): 209, 172, 94, (99,447,0): 200, 167, 90, (99,448,0): 190, 162, 89, (99,449,0): 183, 159, 89, (99,450,0): 182, 155, 88, (99,451,0): 182, 153, 87, (99,452,0): 182, 151, 87, (99,453,0): 180, 148, 89, (99,454,0): 176, 141, 85, (99,455,0): 171, 135, 83, (99,456,0): 170, 136, 88, (99,457,0): 166, 132, 87, (99,458,0): 160, 127, 84, (99,459,0): 154, 122, 83, (99,460,0): 148, 118, 80, (99,461,0): 141, 113, 76, (99,462,0): 131, 105, 70, (99,463,0): 126, 100, 67, (99,464,0): 123, 96, 67, (99,465,0): 123, 96, 69, (99,466,0): 124, 97, 70, (99,467,0): 128, 101, 74, (99,468,0): 132, 102, 76, (99,469,0): 132, 102, 76, (99,470,0): 127, 97, 71, (99,471,0): 123, 93, 67, (99,472,0): 120, 88, 63, (99,473,0): 120, 88, 63, (99,474,0): 121, 87, 62, (99,475,0): 122, 88, 63, (99,476,0): 125, 91, 66, (99,477,0): 128, 94, 69, (99,478,0): 132, 96, 72, (99,479,0): 134, 100, 75, (99,480,0): 129, 99, 71, (99,481,0): 127, 100, 71, (99,482,0): 129, 99, 71, (99,483,0): 126, 99, 70, (99,484,0): 126, 96, 70, (99,485,0): 122, 95, 68, (99,486,0): 121, 91, 65, (99,487,0): 118, 91, 64, (99,488,0): 122, 92, 66, (99,489,0): 119, 92, 65, (99,490,0): 121, 91, 65, (99,491,0): 118, 91, 64, (99,492,0): 121, 91, 67, (99,493,0): 121, 94, 67, (99,494,0): 125, 95, 71, (99,495,0): 124, 97, 70, (99,496,0): 124, 98, 71, (99,497,0): 124, 98, 71, (99,498,0): 124, 98, 71, (99,499,0): 124, 98, 71, (99,500,0): 122, 98, 72, (99,501,0): 122, 98, 72, (99,502,0): 120, 99, 72, (99,503,0): 120, 99, 72, (99,504,0): 117, 95, 71, (99,505,0): 115, 95, 70, (99,506,0): 114, 94, 70, (99,507,0): 113, 93, 69, (99,508,0): 109, 91, 67, (99,509,0): 107, 89, 65, (99,510,0): 106, 88, 66, (99,511,0): 106, 88, 66, (99,512,0): 104, 87, 67, (99,513,0): 104, 87, 67, (99,514,0): 104, 87, 67, (99,515,0): 104, 87, 67, (99,516,0): 104, 87, 67, (99,517,0): 104, 87, 67, (99,518,0): 104, 87, 67, (99,519,0): 104, 87, 67, (99,520,0): 104, 87, 67, (99,521,0): 104, 87, 67, (99,522,0): 104, 87, 67, (99,523,0): 104, 87, 67, (99,524,0): 104, 87, 67, (99,525,0): 104, 87, 67, (99,526,0): 104, 87, 67, (99,527,0): 103, 88, 67, (99,528,0): 104, 89, 68, (99,529,0): 103, 91, 69, (99,530,0): 105, 93, 71, (99,531,0): 105, 93, 71, (99,532,0): 105, 90, 69, (99,533,0): 102, 87, 66, (99,534,0): 99, 84, 63, (99,535,0): 96, 81, 60, (99,536,0): 98, 81, 61, (99,537,0): 99, 82, 62, (99,538,0): 102, 84, 64, (99,539,0): 104, 86, 66, (99,540,0): 106, 88, 68, (99,541,0): 106, 88, 68, (99,542,0): 108, 87, 68, (99,543,0): 108, 87, 66, (99,544,0): 105, 87, 63, (99,545,0): 104, 86, 62, (99,546,0): 103, 85, 61, (99,547,0): 102, 84, 60, (99,548,0): 100, 82, 60, (99,549,0): 98, 80, 58, (99,550,0): 97, 79, 59, (99,551,0): 97, 79, 59, (99,552,0): 97, 79, 59, (99,553,0): 97, 79, 59, (99,554,0): 97, 78, 61, (99,555,0): 98, 79, 62, (99,556,0): 98, 79, 64, (99,557,0): 99, 80, 65, (99,558,0): 99, 80, 65, (99,559,0): 101, 79, 65, (99,560,0): 101, 77, 65, (99,561,0): 101, 77, 65, (99,562,0): 101, 77, 65, (99,563,0): 100, 76, 64, (99,564,0): 97, 75, 64, (99,565,0): 95, 73, 62, (99,566,0): 93, 71, 60, (99,567,0): 92, 70, 59, (99,568,0): 85, 65, 56, (99,569,0): 82, 62, 53, (99,570,0): 79, 60, 53, (99,571,0): 79, 60, 53, (99,572,0): 80, 61, 54, (99,573,0): 80, 61, 54, (99,574,0): 76, 59, 52, (99,575,0): 74, 56, 52, (99,576,0): 73, 53, 52, (99,577,0): 73, 53, 54, (99,578,0): 72, 52, 53, (99,579,0): 71, 51, 52, (99,580,0): 69, 49, 50, (99,581,0): 68, 48, 49, (99,582,0): 67, 47, 48, (99,583,0): 67, 47, 48, (99,584,0): 62, 42, 43, (99,585,0): 62, 42, 43, (99,586,0): 64, 44, 45, (99,587,0): 65, 45, 46, (99,588,0): 66, 46, 47, (99,589,0): 67, 47, 48, (99,590,0): 68, 48, 49, (99,591,0): 67, 49, 49, (99,592,0): 65, 46, 48, (99,593,0): 62, 46, 47, (99,594,0): 61, 45, 46, (99,595,0): 60, 44, 45, (99,596,0): 58, 42, 43, (99,597,0): 56, 40, 41, (99,598,0): 55, 39, 40, (99,599,0): 55, 39, 40, (100,0,0): 22, 23, 41, (100,1,0): 22, 23, 41, (100,2,0): 22, 23, 41, (100,3,0): 23, 25, 40, (100,4,0): 25, 24, 40, (100,5,0): 27, 24, 41, (100,6,0): 28, 24, 39, (100,7,0): 29, 25, 40, (100,8,0): 33, 27, 41, (100,9,0): 35, 27, 42, (100,10,0): 38, 27, 41, (100,11,0): 41, 29, 43, (100,12,0): 43, 31, 45, (100,13,0): 45, 31, 44, (100,14,0): 47, 33, 46, (100,15,0): 50, 32, 44, (100,16,0): 58, 35, 43, (100,17,0): 63, 36, 43, (100,18,0): 65, 38, 45, (100,19,0): 69, 39, 47, (100,20,0): 71, 41, 49, (100,21,0): 73, 42, 50, (100,22,0): 74, 41, 50, (100,23,0): 74, 41, 50, (100,24,0): 77, 41, 51, (100,25,0): 77, 39, 50, (100,26,0): 77, 37, 48, (100,27,0): 76, 36, 47, (100,28,0): 76, 34, 46, (100,29,0): 77, 35, 47, (100,30,0): 79, 35, 48, (100,31,0): 79, 37, 51, (100,32,0): 75, 34, 50, (100,33,0): 71, 32, 50, (100,34,0): 67, 28, 46, (100,35,0): 62, 25, 42, (100,36,0): 57, 23, 40, (100,37,0): 55, 22, 39, (100,38,0): 53, 22, 38, (100,39,0): 51, 23, 38, (100,40,0): 50, 23, 40, (100,41,0): 48, 24, 40, (100,42,0): 47, 24, 42, (100,43,0): 43, 25, 41, (100,44,0): 43, 25, 41, (100,45,0): 41, 24, 40, (100,46,0): 39, 25, 42, (100,47,0): 39, 25, 42, (100,48,0): 40, 25, 44, (100,49,0): 40, 25, 44, (100,50,0): 40, 25, 44, (100,51,0): 40, 25, 44, (100,52,0): 38, 25, 43, (100,53,0): 36, 23, 41, (100,54,0): 34, 21, 39, (100,55,0): 32, 19, 37, (100,56,0): 31, 20, 37, (100,57,0): 31, 20, 37, (100,58,0): 28, 19, 36, (100,59,0): 28, 19, 36, (100,60,0): 28, 19, 36, (100,61,0): 27, 18, 35, (100,62,0): 26, 19, 35, (100,63,0): 26, 19, 35, (100,64,0): 25, 18, 36, (100,65,0): 25, 18, 36, (100,66,0): 25, 18, 36, (100,67,0): 25, 18, 36, (100,68,0): 25, 18, 36, (100,69,0): 25, 18, 36, (100,70,0): 25, 18, 36, (100,71,0): 25, 18, 36, (100,72,0): 27, 20, 38, (100,73,0): 27, 20, 38, (100,74,0): 27, 20, 38, (100,75,0): 27, 20, 38, (100,76,0): 27, 20, 38, (100,77,0): 27, 20, 38, (100,78,0): 27, 20, 38, (100,79,0): 27, 20, 38, (100,80,0): 29, 17, 37, (100,81,0): 28, 16, 36, (100,82,0): 26, 17, 36, (100,83,0): 25, 16, 35, (100,84,0): 25, 16, 35, (100,85,0): 24, 15, 34, (100,86,0): 23, 16, 34, (100,87,0): 23, 16, 34, (100,88,0): 22, 18, 35, (100,89,0): 22, 18, 35, (100,90,0): 22, 18, 35, (100,91,0): 22, 18, 35, (100,92,0): 20, 17, 34, (100,93,0): 19, 16, 33, (100,94,0): 19, 16, 33, (100,95,0): 18, 15, 32, (100,96,0): 22, 15, 33, (100,97,0): 22, 15, 33, (100,98,0): 22, 15, 33, (100,99,0): 22, 15, 33, (100,100,0): 22, 15, 33, (100,101,0): 22, 15, 33, (100,102,0): 22, 15, 33, (100,103,0): 22, 15, 33, (100,104,0): 22, 15, 33, (100,105,0): 22, 15, 33, (100,106,0): 22, 15, 33, (100,107,0): 22, 15, 33, (100,108,0): 22, 15, 33, (100,109,0): 22, 15, 33, (100,110,0): 22, 15, 33, (100,111,0): 22, 15, 33, (100,112,0): 25, 13, 33, (100,113,0): 26, 14, 34, (100,114,0): 25, 16, 35, (100,115,0): 26, 17, 36, (100,116,0): 26, 17, 36, (100,117,0): 25, 16, 35, (100,118,0): 23, 16, 34, (100,119,0): 22, 15, 33, (100,120,0): 19, 15, 32, (100,121,0): 20, 16, 33, (100,122,0): 20, 16, 33, (100,123,0): 19, 16, 33, (100,124,0): 19, 16, 33, (100,125,0): 19, 16, 33, (100,126,0): 19, 16, 33, (100,127,0): 18, 15, 32, (100,128,0): 23, 18, 40, (100,129,0): 25, 17, 40, (100,130,0): 25, 17, 38, (100,131,0): 25, 17, 38, (100,132,0): 26, 17, 38, (100,133,0): 26, 17, 38, (100,134,0): 26, 17, 36, (100,135,0): 26, 17, 36, (100,136,0): 28, 16, 36, (100,137,0): 28, 17, 34, (100,138,0): 29, 16, 34, (100,139,0): 30, 17, 35, (100,140,0): 30, 17, 34, (100,141,0): 31, 18, 35, (100,142,0): 32, 18, 35, (100,143,0): 32, 18, 35, (100,144,0): 33, 21, 35, (100,145,0): 33, 21, 35, (100,146,0): 33, 21, 35, (100,147,0): 33, 21, 35, (100,148,0): 33, 21, 35, (100,149,0): 33, 21, 35, (100,150,0): 33, 21, 35, (100,151,0): 33, 21, 35, (100,152,0): 33, 21, 35, (100,153,0): 33, 21, 35, (100,154,0): 33, 21, 35, (100,155,0): 33, 21, 35, (100,156,0): 33, 21, 35, (100,157,0): 33, 21, 35, (100,158,0): 33, 21, 35, (100,159,0): 33, 21, 35, (100,160,0): 33, 21, 33, (100,161,0): 33, 21, 33, (100,162,0): 34, 22, 34, (100,163,0): 34, 22, 34, (100,164,0): 35, 23, 35, (100,165,0): 35, 23, 35, (100,166,0): 36, 24, 36, (100,167,0): 36, 24, 36, (100,168,0): 36, 24, 36, (100,169,0): 36, 24, 36, (100,170,0): 36, 24, 36, (100,171,0): 36, 24, 36, (100,172,0): 36, 24, 36, (100,173,0): 36, 24, 36, (100,174,0): 36, 24, 36, (100,175,0): 36, 24, 36, (100,176,0): 38, 26, 38, (100,177,0): 37, 25, 37, (100,178,0): 36, 24, 36, (100,179,0): 35, 23, 35, (100,180,0): 35, 23, 35, (100,181,0): 36, 24, 36, (100,182,0): 37, 25, 37, (100,183,0): 38, 26, 38, (100,184,0): 38, 26, 38, (100,185,0): 38, 26, 38, (100,186,0): 38, 26, 38, (100,187,0): 38, 26, 38, (100,188,0): 38, 26, 38, (100,189,0): 38, 26, 38, (100,190,0): 38, 26, 38, (100,191,0): 38, 26, 38, (100,192,0): 41, 29, 43, (100,193,0): 41, 29, 43, (100,194,0): 41, 29, 41, (100,195,0): 41, 29, 41, (100,196,0): 42, 28, 41, (100,197,0): 42, 28, 41, (100,198,0): 44, 28, 39, (100,199,0): 44, 28, 39, (100,200,0): 44, 28, 39, (100,201,0): 44, 28, 38, (100,202,0): 46, 29, 39, (100,203,0): 46, 29, 39, (100,204,0): 49, 29, 38, (100,205,0): 49, 29, 38, (100,206,0): 50, 30, 39, (100,207,0): 50, 30, 39, (100,208,0): 54, 33, 42, (100,209,0): 54, 33, 42, (100,210,0): 54, 33, 42, (100,211,0): 54, 33, 42, (100,212,0): 54, 33, 42, (100,213,0): 54, 33, 42, (100,214,0): 54, 33, 40, (100,215,0): 54, 33, 40, (100,216,0): 54, 33, 38, (100,217,0): 54, 33, 38, (100,218,0): 54, 33, 38, (100,219,0): 54, 34, 36, (100,220,0): 54, 34, 36, (100,221,0): 54, 34, 36, (100,222,0): 54, 34, 36, (100,223,0): 54, 34, 36, (100,224,0): 53, 31, 33, (100,225,0): 53, 31, 33, (100,226,0): 53, 31, 33, (100,227,0): 53, 31, 33, (100,228,0): 53, 31, 33, (100,229,0): 53, 31, 33, (100,230,0): 53, 31, 33, (100,231,0): 53, 31, 33, (100,232,0): 57, 35, 37, (100,233,0): 56, 34, 36, (100,234,0): 56, 34, 36, (100,235,0): 55, 33, 35, (100,236,0): 54, 32, 34, (100,237,0): 53, 31, 33, (100,238,0): 53, 31, 33, (100,239,0): 54, 29, 32, (100,240,0): 62, 33, 35, (100,241,0): 62, 32, 34, (100,242,0): 62, 32, 34, (100,243,0): 61, 31, 33, (100,244,0): 60, 30, 32, (100,245,0): 59, 29, 31, (100,246,0): 59, 29, 31, (100,247,0): 58, 28, 30, (100,248,0): 61, 31, 33, (100,249,0): 61, 31, 33, (100,250,0): 61, 31, 33, (100,251,0): 61, 31, 33, (100,252,0): 61, 31, 33, (100,253,0): 61, 31, 33, (100,254,0): 61, 31, 33, (100,255,0): 61, 31, 33, (100,256,0): 60, 31, 35, (100,257,0): 60, 31, 35, (100,258,0): 62, 32, 34, (100,259,0): 63, 33, 35, (100,260,0): 64, 34, 36, (100,261,0): 65, 35, 37, (100,262,0): 67, 35, 36, (100,263,0): 67, 35, 36, (100,264,0): 68, 34, 35, (100,265,0): 69, 35, 34, (100,266,0): 69, 35, 34, (100,267,0): 69, 35, 34, (100,268,0): 71, 36, 34, (100,269,0): 71, 36, 34, (100,270,0): 72, 37, 35, (100,271,0): 72, 37, 35, (100,272,0): 75, 40, 38, (100,273,0): 76, 41, 39, (100,274,0): 76, 41, 39, (100,275,0): 77, 42, 40, (100,276,0): 79, 44, 40, (100,277,0): 80, 45, 41, (100,278,0): 80, 45, 41, (100,279,0): 81, 46, 42, (100,280,0): 80, 45, 39, (100,281,0): 80, 45, 39, (100,282,0): 81, 47, 38, (100,283,0): 82, 48, 39, (100,284,0): 83, 49, 40, (100,285,0): 84, 50, 41, (100,286,0): 85, 51, 41, (100,287,0): 85, 51, 41, (100,288,0): 85, 53, 42, (100,289,0): 83, 54, 40, (100,290,0): 87, 55, 40, (100,291,0): 90, 57, 40, (100,292,0): 95, 60, 41, (100,293,0): 100, 63, 45, (100,294,0): 105, 67, 48, (100,295,0): 109, 68, 50, (100,296,0): 117, 74, 55, (100,297,0): 119, 74, 51, (100,298,0): 122, 77, 48, (100,299,0): 126, 80, 46, (100,300,0): 134, 87, 43, (100,301,0): 140, 94, 42, (100,302,0): 148, 102, 43, (100,303,0): 150, 106, 45, (100,304,0): 147, 105, 47, (100,305,0): 147, 106, 50, (100,306,0): 147, 106, 52, (100,307,0): 147, 108, 53, (100,308,0): 147, 108, 53, (100,309,0): 146, 109, 56, (100,310,0): 145, 110, 56, (100,311,0): 145, 110, 56, (100,312,0): 143, 110, 57, (100,313,0): 143, 112, 58, (100,314,0): 144, 114, 60, (100,315,0): 146, 116, 64, (100,316,0): 147, 120, 67, (100,317,0): 149, 122, 69, (100,318,0): 151, 123, 73, (100,319,0): 152, 125, 72, (100,320,0): 152, 122, 70, (100,321,0): 152, 122, 68, (100,322,0): 150, 123, 68, (100,323,0): 151, 124, 69, (100,324,0): 151, 124, 71, (100,325,0): 151, 124, 71, (100,326,0): 151, 126, 72, (100,327,0): 151, 126, 72, (100,328,0): 148, 125, 73, (100,329,0): 149, 126, 74, (100,330,0): 149, 126, 76, (100,331,0): 150, 127, 77, (100,332,0): 150, 128, 78, (100,333,0): 150, 128, 78, (100,334,0): 151, 129, 80, (100,335,0): 151, 129, 80, (100,336,0): 152, 130, 83, (100,337,0): 153, 131, 84, (100,338,0): 155, 133, 86, (100,339,0): 157, 135, 88, (100,340,0): 158, 135, 91, (100,341,0): 158, 135, 91, (100,342,0): 158, 135, 93, (100,343,0): 157, 134, 92, (100,344,0): 158, 135, 93, (100,345,0): 159, 136, 94, (100,346,0): 159, 136, 95, (100,347,0): 160, 137, 96, (100,348,0): 160, 136, 98, (100,349,0): 161, 137, 99, (100,350,0): 161, 137, 99, (100,351,0): 161, 137, 99, (100,352,0): 165, 139, 102, (100,353,0): 165, 139, 102, (100,354,0): 168, 140, 103, (100,355,0): 169, 141, 104, (100,356,0): 170, 142, 105, (100,357,0): 171, 143, 106, (100,358,0): 173, 143, 107, (100,359,0): 174, 144, 108, (100,360,0): 176, 143, 108, (100,361,0): 175, 142, 107, (100,362,0): 174, 141, 106, (100,363,0): 172, 139, 104, (100,364,0): 173, 139, 104, (100,365,0): 173, 139, 104, (100,366,0): 174, 140, 105, (100,367,0): 176, 140, 106, (100,368,0): 184, 144, 108, (100,369,0): 187, 143, 106, (100,370,0): 189, 141, 101, (100,371,0): 193, 141, 101, (100,372,0): 199, 141, 101, (100,373,0): 203, 141, 100, (100,374,0): 205, 142, 101, (100,375,0): 206, 141, 101, (100,376,0): 212, 144, 105, (100,377,0): 217, 148, 107, (100,378,0): 223, 152, 108, (100,379,0): 227, 153, 106, (100,380,0): 231, 154, 102, (100,381,0): 236, 154, 98, (100,382,0): 243, 157, 96, (100,383,0): 245, 161, 99, (100,384,0): 234, 158, 100, (100,385,0): 234, 159, 102, (100,386,0): 238, 162, 104, (100,387,0): 243, 164, 105, (100,388,0): 247, 166, 103, (100,389,0): 251, 167, 103, (100,390,0): 252, 167, 102, (100,391,0): 253, 168, 103, (100,392,0): 255, 170, 103, (100,393,0): 254, 171, 103, (100,394,0): 253, 173, 104, (100,395,0): 250, 173, 105, (100,396,0): 245, 170, 102, (100,397,0): 238, 168, 99, (100,398,0): 233, 164, 95, (100,399,0): 227, 164, 95, (100,400,0): 214, 161, 93, (100,401,0): 213, 164, 97, (100,402,0): 218, 168, 99, (100,403,0): 223, 173, 102, (100,404,0): 231, 178, 108, (100,405,0): 237, 185, 112, (100,406,0): 240, 188, 113, (100,407,0): 242, 190, 115, (100,408,0): 238, 186, 111, (100,409,0): 235, 186, 110, (100,410,0): 232, 184, 110, (100,411,0): 229, 183, 108, (100,412,0): 225, 181, 110, (100,413,0): 221, 179, 107, (100,414,0): 218, 178, 108, (100,415,0): 217, 177, 107, (100,416,0): 223, 180, 112, (100,417,0): 223, 180, 112, (100,418,0): 223, 180, 112, (100,419,0): 222, 179, 111, (100,420,0): 221, 178, 109, (100,421,0): 221, 178, 109, (100,422,0): 222, 180, 108, (100,423,0): 223, 181, 107, (100,424,0): 225, 183, 107, (100,425,0): 226, 184, 108, (100,426,0): 227, 186, 107, (100,427,0): 227, 186, 106, (100,428,0): 227, 186, 106, (100,429,0): 232, 191, 109, (100,430,0): 239, 198, 116, (100,431,0): 244, 204, 119, (100,432,0): 246, 207, 116, (100,433,0): 247, 208, 115, (100,434,0): 248, 209, 118, (100,435,0): 248, 211, 120, (100,436,0): 249, 209, 121, (100,437,0): 242, 205, 116, (100,438,0): 234, 197, 109, (100,439,0): 226, 190, 102, (100,440,0): 220, 184, 100, (100,441,0): 219, 184, 100, (100,442,0): 220, 185, 103, (100,443,0): 221, 186, 104, (100,444,0): 220, 185, 104, (100,445,0): 214, 181, 100, (100,446,0): 209, 173, 95, (100,447,0): 200, 168, 91, (100,448,0): 191, 163, 90, (100,449,0): 186, 159, 88, (100,450,0): 183, 154, 86, (100,451,0): 182, 153, 87, (100,452,0): 182, 151, 87, (100,453,0): 179, 147, 88, (100,454,0): 175, 140, 84, (100,455,0): 170, 134, 82, (100,456,0): 170, 136, 88, (100,457,0): 166, 132, 87, (100,458,0): 159, 126, 85, (100,459,0): 153, 121, 82, (100,460,0): 147, 117, 79, (100,461,0): 139, 111, 74, (100,462,0): 130, 104, 69, (100,463,0): 123, 98, 67, (100,464,0): 121, 95, 68, (100,465,0): 121, 95, 70, (100,466,0): 123, 95, 71, (100,467,0): 125, 97, 73, (100,468,0): 127, 99, 75, (100,469,0): 126, 98, 74, (100,470,0): 123, 93, 69, (100,471,0): 119, 89, 65, (100,472,0): 113, 81, 58, (100,473,0): 112, 80, 57, (100,474,0): 111, 79, 56, (100,475,0): 112, 80, 57, (100,476,0): 117, 82, 60, (100,477,0): 121, 86, 64, (100,478,0): 125, 90, 68, (100,479,0): 126, 94, 71, (100,480,0): 124, 96, 72, (100,481,0): 123, 97, 72, (100,482,0): 124, 96, 72, (100,483,0): 123, 97, 72, (100,484,0): 122, 94, 70, (100,485,0): 119, 93, 68, (100,486,0): 118, 90, 66, (100,487,0): 116, 90, 65, (100,488,0): 116, 88, 64, (100,489,0): 114, 88, 63, (100,490,0): 114, 86, 62, (100,491,0): 113, 87, 62, (100,492,0): 115, 87, 65, (100,493,0): 117, 91, 66, (100,494,0): 121, 93, 71, (100,495,0): 122, 96, 71, (100,496,0): 124, 98, 71, (100,497,0): 123, 99, 71, (100,498,0): 123, 99, 71, (100,499,0): 123, 99, 71, (100,500,0): 122, 98, 72, (100,501,0): 122, 98, 72, (100,502,0): 120, 99, 72, (100,503,0): 120, 99, 72, (100,504,0): 116, 96, 71, (100,505,0): 116, 96, 71, (100,506,0): 115, 95, 71, (100,507,0): 111, 93, 69, (100,508,0): 109, 91, 67, (100,509,0): 108, 90, 66, (100,510,0): 107, 89, 67, (100,511,0): 106, 88, 66, (100,512,0): 105, 89, 66, (100,513,0): 105, 89, 66, (100,514,0): 105, 89, 66, (100,515,0): 105, 89, 66, (100,516,0): 105, 89, 66, (100,517,0): 105, 89, 66, (100,518,0): 105, 89, 66, (100,519,0): 105, 89, 66, (100,520,0): 105, 89, 66, (100,521,0): 105, 89, 66, (100,522,0): 105, 89, 66, (100,523,0): 105, 89, 66, (100,524,0): 105, 89, 66, (100,525,0): 105, 89, 66, (100,526,0): 105, 89, 66, (100,527,0): 104, 89, 66, (100,528,0): 105, 90, 67, (100,529,0): 104, 92, 68, (100,530,0): 105, 93, 69, (100,531,0): 105, 93, 69, (100,532,0): 106, 91, 68, (100,533,0): 103, 88, 65, (100,534,0): 101, 86, 63, (100,535,0): 99, 84, 61, (100,536,0): 99, 83, 60, (100,537,0): 101, 85, 62, (100,538,0): 104, 86, 64, (100,539,0): 106, 88, 66, (100,540,0): 107, 89, 67, (100,541,0): 108, 90, 68, (100,542,0): 110, 89, 68, (100,543,0): 109, 88, 67, (100,544,0): 107, 87, 63, (100,545,0): 107, 87, 63, (100,546,0): 106, 86, 62, (100,547,0): 104, 84, 60, (100,548,0): 102, 81, 60, (100,549,0): 101, 80, 59, (100,550,0): 100, 79, 60, (100,551,0): 99, 78, 59, (100,552,0): 99, 78, 59, (100,553,0): 99, 78, 59, (100,554,0): 99, 78, 61, (100,555,0): 100, 79, 62, (100,556,0): 100, 78, 64, (100,557,0): 101, 79, 65, (100,558,0): 101, 79, 65, (100,559,0): 101, 79, 65, (100,560,0): 101, 77, 65, (100,561,0): 101, 77, 65, (100,562,0): 101, 77, 65, (100,563,0): 100, 76, 64, (100,564,0): 97, 75, 64, (100,565,0): 95, 73, 62, (100,566,0): 93, 71, 60, (100,567,0): 92, 70, 59, (100,568,0): 85, 65, 56, (100,569,0): 82, 62, 53, (100,570,0): 79, 60, 53, (100,571,0): 79, 60, 53, (100,572,0): 80, 61, 54, (100,573,0): 80, 61, 54, (100,574,0): 76, 59, 52, (100,575,0): 74, 56, 52, (100,576,0): 73, 53, 52, (100,577,0): 73, 53, 52, (100,578,0): 72, 52, 51, (100,579,0): 71, 51, 50, (100,580,0): 70, 50, 49, (100,581,0): 69, 49, 48, (100,582,0): 69, 49, 48, (100,583,0): 68, 48, 47, (100,584,0): 63, 43, 42, (100,585,0): 63, 43, 42, (100,586,0): 64, 44, 43, (100,587,0): 65, 45, 44, (100,588,0): 67, 47, 46, (100,589,0): 68, 48, 47, (100,590,0): 70, 50, 49, (100,591,0): 70, 52, 52, (100,592,0): 66, 47, 49, (100,593,0): 64, 48, 49, (100,594,0): 63, 47, 48, (100,595,0): 61, 45, 46, (100,596,0): 59, 43, 44, (100,597,0): 58, 42, 43, (100,598,0): 57, 41, 42, (100,599,0): 56, 40, 41, (101,0,0): 22, 24, 45, (101,1,0): 22, 25, 44, (101,2,0): 23, 24, 44, (101,3,0): 24, 25, 43, (101,4,0): 26, 25, 43, (101,5,0): 27, 26, 42, (101,6,0): 29, 25, 42, (101,7,0): 31, 24, 40, (101,8,0): 36, 28, 43, (101,9,0): 39, 28, 42, (101,10,0): 42, 30, 44, (101,11,0): 45, 31, 44, (101,12,0): 47, 33, 46, (101,13,0): 51, 35, 46, (101,14,0): 53, 35, 47, (101,15,0): 56, 36, 47, (101,16,0): 63, 36, 45, (101,17,0): 67, 37, 45, (101,18,0): 70, 39, 47, (101,19,0): 72, 41, 49, (101,20,0): 74, 41, 50, (101,21,0): 75, 42, 51, (101,22,0): 77, 41, 51, (101,23,0): 77, 41, 51, (101,24,0): 78, 40, 51, (101,25,0): 80, 40, 51, (101,26,0): 80, 38, 50, (101,27,0): 79, 37, 49, (101,28,0): 78, 34, 47, (101,29,0): 77, 33, 46, (101,30,0): 76, 32, 45, (101,31,0): 74, 32, 46, (101,32,0): 71, 33, 48, (101,33,0): 68, 31, 48, (101,34,0): 64, 27, 44, (101,35,0): 58, 24, 40, (101,36,0): 55, 22, 39, (101,37,0): 53, 22, 38, (101,38,0): 51, 23, 38, (101,39,0): 50, 23, 38, (101,40,0): 49, 25, 41, (101,41,0): 47, 24, 40, (101,42,0): 46, 25, 42, (101,43,0): 43, 25, 41, (101,44,0): 42, 25, 41, (101,45,0): 41, 24, 40, (101,46,0): 39, 25, 42, (101,47,0): 39, 25, 42, (101,48,0): 40, 25, 44, (101,49,0): 40, 25, 44, (101,50,0): 40, 25, 44, (101,51,0): 39, 24, 43, (101,52,0): 36, 23, 41, (101,53,0): 34, 21, 39, (101,54,0): 32, 19, 37, (101,55,0): 30, 19, 36, (101,56,0): 29, 18, 35, (101,57,0): 29, 18, 35, (101,58,0): 27, 18, 35, (101,59,0): 27, 18, 35, (101,60,0): 27, 18, 35, (101,61,0): 27, 18, 35, (101,62,0): 26, 19, 35, (101,63,0): 26, 19, 35, (101,64,0): 25, 18, 36, (101,65,0): 25, 18, 36, (101,66,0): 25, 18, 36, (101,67,0): 25, 18, 36, (101,68,0): 25, 18, 36, (101,69,0): 25, 18, 36, (101,70,0): 25, 18, 36, (101,71,0): 25, 18, 36, (101,72,0): 27, 20, 38, (101,73,0): 27, 20, 38, (101,74,0): 27, 20, 38, (101,75,0): 27, 20, 38, (101,76,0): 27, 20, 38, (101,77,0): 27, 20, 38, (101,78,0): 27, 20, 38, (101,79,0): 27, 20, 38, (101,80,0): 28, 16, 36, (101,81,0): 28, 16, 36, (101,82,0): 26, 17, 36, (101,83,0): 25, 16, 35, (101,84,0): 24, 15, 34, (101,85,0): 24, 15, 34, (101,86,0): 23, 16, 34, (101,87,0): 22, 15, 33, (101,88,0): 21, 17, 34, (101,89,0): 22, 18, 35, (101,90,0): 22, 18, 35, (101,91,0): 22, 18, 35, (101,92,0): 21, 18, 35, (101,93,0): 20, 17, 34, (101,94,0): 18, 15, 32, (101,95,0): 17, 14, 31, (101,96,0): 22, 15, 33, (101,97,0): 22, 15, 33, (101,98,0): 22, 15, 33, (101,99,0): 22, 15, 33, (101,100,0): 22, 15, 33, (101,101,0): 22, 15, 33, (101,102,0): 22, 15, 33, (101,103,0): 22, 15, 33, (101,104,0): 22, 15, 33, (101,105,0): 22, 15, 33, (101,106,0): 22, 15, 33, (101,107,0): 22, 15, 33, (101,108,0): 22, 15, 33, (101,109,0): 22, 15, 33, (101,110,0): 22, 15, 33, (101,111,0): 22, 15, 33, (101,112,0): 23, 14, 33, (101,113,0): 24, 15, 34, (101,114,0): 25, 16, 35, (101,115,0): 26, 17, 36, (101,116,0): 26, 17, 36, (101,117,0): 25, 16, 35, (101,118,0): 23, 16, 34, (101,119,0): 22, 15, 33, (101,120,0): 19, 15, 32, (101,121,0): 20, 16, 33, (101,122,0): 21, 17, 34, (101,123,0): 21, 17, 34, (101,124,0): 20, 17, 34, (101,125,0): 20, 17, 34, (101,126,0): 19, 16, 33, (101,127,0): 19, 15, 32, (101,128,0): 25, 17, 38, (101,129,0): 25, 17, 38, (101,130,0): 25, 17, 38, (101,131,0): 25, 17, 38, (101,132,0): 26, 17, 38, (101,133,0): 26, 17, 36, (101,134,0): 26, 17, 36, (101,135,0): 26, 17, 34, (101,136,0): 28, 17, 34, (101,137,0): 28, 17, 34, (101,138,0): 29, 16, 34, (101,139,0): 30, 17, 34, (101,140,0): 30, 17, 34, (101,141,0): 31, 18, 35, (101,142,0): 32, 18, 35, (101,143,0): 32, 18, 35, (101,144,0): 33, 21, 35, (101,145,0): 33, 21, 35, (101,146,0): 33, 21, 35, (101,147,0): 33, 21, 35, (101,148,0): 33, 21, 35, (101,149,0): 33, 21, 35, (101,150,0): 33, 21, 35, (101,151,0): 33, 21, 35, (101,152,0): 33, 21, 35, (101,153,0): 33, 21, 35, (101,154,0): 33, 21, 35, (101,155,0): 33, 21, 35, (101,156,0): 33, 21, 35, (101,157,0): 33, 21, 35, (101,158,0): 33, 21, 35, (101,159,0): 33, 21, 35, (101,160,0): 33, 21, 33, (101,161,0): 33, 21, 33, (101,162,0): 34, 22, 34, (101,163,0): 34, 22, 34, (101,164,0): 35, 23, 35, (101,165,0): 35, 23, 35, (101,166,0): 36, 24, 36, (101,167,0): 36, 24, 36, (101,168,0): 37, 25, 37, (101,169,0): 37, 25, 37, (101,170,0): 37, 25, 37, (101,171,0): 37, 25, 37, (101,172,0): 37, 25, 37, (101,173,0): 37, 25, 37, (101,174,0): 37, 25, 37, (101,175,0): 37, 25, 37, (101,176,0): 38, 26, 38, (101,177,0): 37, 25, 37, (101,178,0): 36, 24, 36, (101,179,0): 35, 23, 35, (101,180,0): 35, 23, 35, (101,181,0): 36, 24, 36, (101,182,0): 37, 25, 37, (101,183,0): 38, 26, 38, (101,184,0): 38, 26, 38, (101,185,0): 38, 26, 38, (101,186,0): 38, 26, 38, (101,187,0): 38, 26, 38, (101,188,0): 38, 26, 38, (101,189,0): 38, 26, 38, (101,190,0): 38, 26, 38, (101,191,0): 38, 26, 38, (101,192,0): 41, 29, 43, (101,193,0): 41, 29, 43, (101,194,0): 41, 29, 41, (101,195,0): 41, 29, 41, (101,196,0): 42, 28, 41, (101,197,0): 42, 29, 39, (101,198,0): 44, 28, 39, (101,199,0): 44, 28, 39, (101,200,0): 45, 29, 39, (101,201,0): 46, 30, 40, (101,202,0): 47, 30, 40, (101,203,0): 47, 30, 38, (101,204,0): 50, 30, 39, (101,205,0): 51, 31, 40, (101,206,0): 51, 31, 40, (101,207,0): 51, 31, 40, (101,208,0): 54, 33, 42, (101,209,0): 54, 33, 42, (101,210,0): 54, 33, 42, (101,211,0): 54, 33, 42, (101,212,0): 54, 33, 42, (101,213,0): 54, 33, 40, (101,214,0): 54, 33, 40, (101,215,0): 54, 33, 38, (101,216,0): 54, 33, 38, (101,217,0): 54, 33, 38, (101,218,0): 54, 34, 36, (101,219,0): 54, 34, 36, (101,220,0): 54, 34, 36, (101,221,0): 54, 34, 36, (101,222,0): 54, 34, 36, (101,223,0): 54, 34, 36, (101,224,0): 53, 31, 33, (101,225,0): 53, 31, 33, (101,226,0): 53, 31, 33, (101,227,0): 53, 31, 33, (101,228,0): 53, 31, 33, (101,229,0): 53, 31, 33, (101,230,0): 53, 31, 33, (101,231,0): 53, 31, 33, (101,232,0): 55, 33, 35, (101,233,0): 55, 33, 35, (101,234,0): 55, 33, 35, (101,235,0): 55, 33, 35, (101,236,0): 54, 32, 34, (101,237,0): 54, 32, 34, (101,238,0): 54, 32, 34, (101,239,0): 56, 31, 34, (101,240,0): 60, 31, 33, (101,241,0): 61, 31, 33, (101,242,0): 61, 31, 33, (101,243,0): 61, 31, 33, (101,244,0): 60, 30, 32, (101,245,0): 60, 30, 32, (101,246,0): 60, 30, 32, (101,247,0): 60, 30, 32, (101,248,0): 61, 31, 33, (101,249,0): 61, 31, 33, (101,250,0): 61, 31, 33, (101,251,0): 61, 31, 33, (101,252,0): 61, 31, 33, (101,253,0): 61, 31, 33, (101,254,0): 61, 31, 33, (101,255,0): 61, 31, 33, (101,256,0): 60, 31, 35, (101,257,0): 60, 31, 33, (101,258,0): 62, 32, 34, (101,259,0): 63, 33, 35, (101,260,0): 64, 34, 36, (101,261,0): 65, 35, 35, (101,262,0): 67, 35, 36, (101,263,0): 67, 36, 34, (101,264,0): 69, 35, 34, (101,265,0): 69, 35, 34, (101,266,0): 70, 36, 35, (101,267,0): 70, 36, 34, (101,268,0): 72, 37, 35, (101,269,0): 72, 37, 35, (101,270,0): 73, 38, 36, (101,271,0): 73, 38, 36, (101,272,0): 75, 40, 38, (101,273,0): 76, 41, 39, (101,274,0): 76, 41, 39, (101,275,0): 77, 42, 40, (101,276,0): 79, 44, 40, (101,277,0): 80, 45, 41, (101,278,0): 80, 45, 41, (101,279,0): 81, 46, 40, (101,280,0): 80, 45, 39, (101,281,0): 80, 45, 39, (101,282,0): 81, 47, 38, (101,283,0): 82, 48, 39, (101,284,0): 83, 49, 40, (101,285,0): 84, 50, 41, (101,286,0): 85, 51, 41, (101,287,0): 84, 52, 41, (101,288,0): 85, 53, 42, (101,289,0): 84, 54, 43, (101,290,0): 87, 55, 42, (101,291,0): 89, 57, 42, (101,292,0): 94, 61, 44, (101,293,0): 99, 64, 45, (101,294,0): 104, 67, 49, (101,295,0): 107, 69, 50, (101,296,0): 116, 75, 57, (101,297,0): 117, 75, 53, (101,298,0): 121, 75, 49, (101,299,0): 125, 81, 46, (101,300,0): 132, 87, 45, (101,301,0): 142, 96, 44, (101,302,0): 150, 104, 45, (101,303,0): 154, 110, 49, (101,304,0): 150, 108, 50, (101,305,0): 149, 109, 50, (101,306,0): 150, 110, 51, (101,307,0): 150, 109, 53, (101,308,0): 151, 110, 54, (101,309,0): 150, 111, 54, (101,310,0): 149, 112, 57, (101,311,0): 148, 113, 57, (101,312,0): 148, 113, 57, (101,313,0): 147, 114, 60, (101,314,0): 147, 116, 61, (101,315,0): 149, 120, 64, (101,316,0): 151, 121, 67, (101,317,0): 151, 124, 69, (101,318,0): 153, 126, 71, (101,319,0): 154, 127, 72, (101,320,0): 154, 124, 70, (101,321,0): 154, 124, 70, (101,322,0): 152, 125, 70, (101,323,0): 152, 125, 70, (101,324,0): 152, 125, 70, (101,325,0): 152, 125, 72, (101,326,0): 152, 125, 72, (101,327,0): 152, 127, 73, (101,328,0): 150, 124, 73, (101,329,0): 149, 126, 74, (101,330,0): 149, 126, 74, (101,331,0): 150, 127, 77, (101,332,0): 150, 128, 78, (101,333,0): 151, 129, 79, (101,334,0): 152, 130, 80, (101,335,0): 152, 130, 81, (101,336,0): 153, 131, 82, (101,337,0): 154, 132, 85, (101,338,0): 156, 134, 87, (101,339,0): 158, 136, 89, (101,340,0): 159, 136, 92, (101,341,0): 159, 136, 92, (101,342,0): 159, 136, 94, (101,343,0): 159, 136, 94, (101,344,0): 159, 136, 94, (101,345,0): 159, 136, 94, (101,346,0): 159, 136, 95, (101,347,0): 160, 137, 96, (101,348,0): 161, 137, 99, (101,349,0): 161, 137, 99, (101,350,0): 161, 137, 99, (101,351,0): 162, 138, 100, (101,352,0): 164, 138, 101, (101,353,0): 165, 139, 102, (101,354,0): 167, 139, 102, (101,355,0): 168, 140, 103, (101,356,0): 170, 142, 105, (101,357,0): 171, 143, 106, (101,358,0): 172, 142, 106, (101,359,0): 173, 143, 107, (101,360,0): 174, 141, 106, (101,361,0): 174, 141, 106, (101,362,0): 173, 140, 105, (101,363,0): 174, 140, 103, (101,364,0): 175, 141, 106, (101,365,0): 176, 142, 105, (101,366,0): 178, 142, 108, (101,367,0): 181, 143, 106, (101,368,0): 190, 146, 107, (101,369,0): 194, 145, 104, (101,370,0): 198, 145, 103, (101,371,0): 205, 146, 102, (101,372,0): 213, 149, 105, (101,373,0): 216, 149, 104, (101,374,0): 217, 146, 102, (101,375,0): 215, 144, 100, (101,376,0): 221, 148, 105, (101,377,0): 224, 151, 106, (101,378,0): 229, 155, 108, (101,379,0): 233, 155, 106, (101,380,0): 235, 154, 99, (101,381,0): 238, 153, 96, (101,382,0): 242, 154, 91, (101,383,0): 242, 158, 96, (101,384,0): 231, 156, 99, (101,385,0): 230, 159, 103, (101,386,0): 235, 163, 105, (101,387,0): 242, 166, 108, (101,388,0): 247, 169, 107, (101,389,0): 252, 171, 108, (101,390,0): 255, 171, 107, (101,391,0): 255, 173, 107, (101,392,0): 255, 172, 105, (101,393,0): 255, 173, 105, (101,394,0): 254, 175, 106, (101,395,0): 252, 175, 105, (101,396,0): 248, 174, 103, (101,397,0): 241, 171, 101, (101,398,0): 237, 169, 98, (101,399,0): 230, 167, 96, (101,400,0): 219, 166, 98, (101,401,0): 217, 168, 99, (101,402,0): 220, 170, 101, (101,403,0): 226, 176, 105, (101,404,0): 232, 182, 111, (101,405,0): 237, 187, 114, (101,406,0): 239, 189, 116, (101,407,0): 239, 190, 114, (101,408,0): 235, 185, 112, (101,409,0): 234, 186, 112, (101,410,0): 231, 185, 110, (101,411,0): 227, 183, 110, (101,412,0): 224, 182, 108, (101,413,0): 222, 180, 108, (101,414,0): 219, 179, 109, (101,415,0): 218, 178, 108, (101,416,0): 224, 181, 113, (101,417,0): 225, 182, 114, (101,418,0): 226, 183, 115, (101,419,0): 224, 181, 112, (101,420,0): 221, 178, 109, (101,421,0): 220, 178, 106, (101,422,0): 221, 179, 105, (101,423,0): 222, 180, 106, (101,424,0): 223, 181, 105, (101,425,0): 225, 184, 105, (101,426,0): 226, 185, 105, (101,427,0): 227, 186, 106, (101,428,0): 228, 187, 105, (101,429,0): 233, 192, 110, (101,430,0): 240, 199, 117, (101,431,0): 244, 206, 121, (101,432,0): 246, 209, 118, (101,433,0): 246, 210, 116, (101,434,0): 245, 208, 117, (101,435,0): 245, 210, 118, (101,436,0): 244, 207, 118, (101,437,0): 238, 203, 113, (101,438,0): 230, 194, 106, (101,439,0): 222, 188, 99, (101,440,0): 218, 183, 99, (101,441,0): 216, 184, 99, (101,442,0): 217, 185, 102, (101,443,0): 217, 185, 102, (101,444,0): 216, 183, 102, (101,445,0): 211, 180, 98, (101,446,0): 207, 174, 95, (101,447,0): 202, 170, 93, (101,448,0): 192, 164, 90, (101,449,0): 190, 161, 91, (101,450,0): 187, 158, 88, (101,451,0): 184, 155, 87, (101,452,0): 182, 151, 87, (101,453,0): 177, 145, 86, (101,454,0): 174, 139, 83, (101,455,0): 170, 134, 82, (101,456,0): 168, 134, 86, (101,457,0): 163, 130, 85, (101,458,0): 157, 124, 83, (101,459,0): 150, 120, 82, (101,460,0): 144, 116, 79, (101,461,0): 136, 110, 75, (101,462,0): 127, 103, 69, (101,463,0): 122, 97, 67, (101,464,0): 120, 94, 69, (101,465,0): 118, 91, 70, (101,466,0): 119, 91, 70, (101,467,0): 120, 92, 71, (101,468,0): 121, 93, 72, (101,469,0): 120, 92, 71, (101,470,0): 118, 87, 67, (101,471,0): 114, 83, 63, (101,472,0): 107, 74, 55, (101,473,0): 106, 73, 54, (101,474,0): 105, 72, 53, (101,475,0): 105, 72, 53, (101,476,0): 109, 74, 55, (101,477,0): 114, 79, 60, (101,478,0): 119, 84, 65, (101,479,0): 120, 87, 68, (101,480,0): 119, 91, 70, (101,481,0): 118, 93, 71, (101,482,0): 119, 92, 71, (101,483,0): 118, 93, 71, (101,484,0): 118, 91, 70, (101,485,0): 115, 91, 67, (101,486,0): 114, 87, 66, (101,487,0): 112, 88, 64, (101,488,0): 111, 85, 62, (101,489,0): 109, 85, 61, (101,490,0): 110, 84, 61, (101,491,0): 110, 86, 62, (101,492,0): 113, 87, 64, (101,493,0): 115, 91, 67, (101,494,0): 119, 93, 70, (101,495,0): 120, 96, 70, (101,496,0): 122, 98, 72, (101,497,0): 122, 98, 70, (101,498,0): 122, 98, 70, (101,499,0): 122, 98, 70, (101,500,0): 123, 99, 73, (101,501,0): 121, 100, 73, (101,502,0): 121, 100, 73, (101,503,0): 120, 100, 73, (101,504,0): 117, 97, 72, (101,505,0): 116, 96, 71, (101,506,0): 113, 95, 71, (101,507,0): 112, 94, 70, (101,508,0): 110, 92, 68, (101,509,0): 108, 90, 66, (101,510,0): 107, 89, 67, (101,511,0): 107, 89, 67, (101,512,0): 107, 91, 68, (101,513,0): 107, 91, 68, (101,514,0): 107, 91, 68, (101,515,0): 107, 91, 68, (101,516,0): 107, 91, 68, (101,517,0): 107, 91, 68, (101,518,0): 107, 91, 68, (101,519,0): 107, 91, 68, (101,520,0): 106, 90, 67, (101,521,0): 106, 90, 67, (101,522,0): 106, 90, 67, (101,523,0): 106, 90, 67, (101,524,0): 106, 90, 67, (101,525,0): 106, 90, 67, (101,526,0): 106, 90, 67, (101,527,0): 105, 90, 67, (101,528,0): 106, 91, 68, (101,529,0): 104, 92, 68, (101,530,0): 105, 93, 69, (101,531,0): 106, 94, 70, (101,532,0): 107, 92, 69, (101,533,0): 106, 91, 68, (101,534,0): 105, 90, 67, (101,535,0): 104, 89, 66, (101,536,0): 104, 88, 65, (101,537,0): 105, 89, 66, (101,538,0): 108, 90, 68, (101,539,0): 109, 91, 69, (101,540,0): 110, 92, 70, (101,541,0): 110, 92, 70, (101,542,0): 112, 91, 70, (101,543,0): 111, 90, 69, (101,544,0): 108, 88, 64, (101,545,0): 107, 87, 63, (101,546,0): 106, 86, 62, (101,547,0): 105, 85, 61, (101,548,0): 103, 82, 61, (101,549,0): 101, 80, 59, (101,550,0): 100, 79, 60, (101,551,0): 100, 79, 60, (101,552,0): 99, 78, 59, (101,553,0): 99, 78, 59, (101,554,0): 99, 78, 61, (101,555,0): 100, 79, 62, (101,556,0): 100, 78, 64, (101,557,0): 101, 79, 65, (101,558,0): 101, 79, 65, (101,559,0): 101, 79, 65, (101,560,0): 101, 77, 65, (101,561,0): 101, 77, 65, (101,562,0): 101, 77, 65, (101,563,0): 100, 76, 64, (101,564,0): 97, 75, 64, (101,565,0): 95, 73, 62, (101,566,0): 93, 71, 60, (101,567,0): 92, 70, 59, (101,568,0): 86, 66, 57, (101,569,0): 83, 63, 54, (101,570,0): 79, 60, 53, (101,571,0): 79, 60, 53, (101,572,0): 81, 62, 55, (101,573,0): 80, 61, 54, (101,574,0): 77, 60, 53, (101,575,0): 74, 57, 50, (101,576,0): 74, 54, 53, (101,577,0): 74, 54, 53, (101,578,0): 74, 54, 53, (101,579,0): 73, 53, 52, (101,580,0): 72, 52, 51, (101,581,0): 72, 52, 51, (101,582,0): 71, 51, 50, (101,583,0): 71, 51, 50, (101,584,0): 66, 46, 45, (101,585,0): 66, 46, 45, (101,586,0): 66, 46, 45, (101,587,0): 66, 46, 45, (101,588,0): 68, 48, 47, (101,589,0): 70, 50, 49, (101,590,0): 71, 51, 50, (101,591,0): 72, 54, 52, (101,592,0): 68, 50, 50, (101,593,0): 65, 49, 50, (101,594,0): 64, 48, 49, (101,595,0): 63, 47, 48, (101,596,0): 61, 45, 46, (101,597,0): 59, 43, 44, (101,598,0): 58, 42, 43, (101,599,0): 58, 42, 43, (102,0,0): 21, 26, 48, (102,1,0): 21, 26, 46, (102,2,0): 23, 25, 46, (102,3,0): 25, 26, 46, (102,4,0): 27, 26, 44, (102,5,0): 28, 27, 43, (102,6,0): 30, 26, 43, (102,7,0): 32, 25, 41, (102,8,0): 38, 30, 45, (102,9,0): 41, 30, 44, (102,10,0): 45, 31, 46, (102,11,0): 49, 33, 46, (102,12,0): 52, 34, 46, (102,13,0): 55, 38, 48, (102,14,0): 58, 38, 49, (102,15,0): 61, 38, 48, (102,16,0): 66, 39, 48, (102,17,0): 69, 38, 46, (102,18,0): 71, 38, 47, (102,19,0): 71, 38, 47, (102,20,0): 71, 38, 47, (102,21,0): 70, 37, 46, (102,22,0): 71, 35, 45, (102,23,0): 70, 34, 44, (102,24,0): 74, 36, 47, (102,25,0): 75, 37, 48, (102,26,0): 79, 39, 50, (102,27,0): 79, 39, 50, (102,28,0): 79, 37, 49, (102,29,0): 77, 35, 47, (102,30,0): 74, 32, 44, (102,31,0): 71, 30, 44, (102,32,0): 69, 32, 49, (102,33,0): 63, 30, 47, (102,34,0): 59, 26, 43, (102,35,0): 55, 24, 40, (102,36,0): 53, 22, 38, (102,37,0): 51, 23, 38, (102,38,0): 51, 24, 41, (102,39,0): 50, 26, 42, (102,40,0): 49, 24, 43, (102,41,0): 48, 25, 43, (102,42,0): 47, 26, 45, (102,43,0): 44, 25, 44, (102,44,0): 43, 26, 44, (102,45,0): 42, 25, 43, (102,46,0): 40, 26, 43, (102,47,0): 39, 25, 42, (102,48,0): 39, 24, 43, (102,49,0): 40, 25, 46, (102,50,0): 38, 25, 45, (102,51,0): 37, 24, 44, (102,52,0): 36, 23, 43, (102,53,0): 33, 20, 40, (102,54,0): 30, 18, 38, (102,55,0): 28, 16, 36, (102,56,0): 28, 16, 36, (102,57,0): 26, 17, 36, (102,58,0): 26, 17, 36, (102,59,0): 26, 17, 36, (102,60,0): 25, 18, 36, (102,61,0): 25, 18, 36, (102,62,0): 26, 19, 37, (102,63,0): 26, 19, 37, (102,64,0): 26, 19, 37, (102,65,0): 26, 19, 37, (102,66,0): 26, 19, 37, (102,67,0): 26, 19, 37, (102,68,0): 26, 19, 37, (102,69,0): 26, 19, 37, (102,70,0): 26, 19, 37, (102,71,0): 26, 19, 37, (102,72,0): 25, 18, 36, (102,73,0): 25, 18, 36, (102,74,0): 25, 18, 36, (102,75,0): 25, 18, 36, (102,76,0): 25, 18, 36, (102,77,0): 25, 18, 36, (102,78,0): 25, 18, 36, (102,79,0): 25, 18, 36, (102,80,0): 28, 16, 36, (102,81,0): 27, 15, 35, (102,82,0): 25, 16, 35, (102,83,0): 25, 16, 35, (102,84,0): 24, 15, 34, (102,85,0): 24, 15, 34, (102,86,0): 22, 15, 33, (102,87,0): 22, 15, 33, (102,88,0): 21, 17, 34, (102,89,0): 21, 17, 34, (102,90,0): 22, 18, 35, (102,91,0): 23, 19, 36, (102,92,0): 21, 18, 35, (102,93,0): 20, 17, 34, (102,94,0): 18, 15, 32, (102,95,0): 17, 14, 31, (102,96,0): 22, 15, 33, (102,97,0): 22, 15, 33, (102,98,0): 22, 15, 33, (102,99,0): 22, 15, 33, (102,100,0): 22, 15, 33, (102,101,0): 22, 15, 33, (102,102,0): 22, 15, 33, (102,103,0): 22, 15, 33, (102,104,0): 23, 16, 34, (102,105,0): 23, 16, 34, (102,106,0): 23, 16, 34, (102,107,0): 23, 16, 34, (102,108,0): 23, 16, 34, (102,109,0): 23, 16, 34, (102,110,0): 23, 16, 34, (102,111,0): 23, 16, 34, (102,112,0): 23, 16, 34, (102,113,0): 24, 17, 35, (102,114,0): 25, 18, 36, (102,115,0): 25, 18, 36, (102,116,0): 25, 18, 36, (102,117,0): 25, 18, 36, (102,118,0): 24, 17, 35, (102,119,0): 23, 16, 34, (102,120,0): 19, 15, 32, (102,121,0): 20, 16, 33, (102,122,0): 21, 17, 34, (102,123,0): 22, 18, 35, (102,124,0): 22, 18, 35, (102,125,0): 21, 17, 34, (102,126,0): 20, 16, 33, (102,127,0): 19, 15, 32, (102,128,0): 26, 18, 39, (102,129,0): 27, 18, 39, (102,130,0): 27, 18, 39, (102,131,0): 27, 18, 37, (102,132,0): 27, 18, 37, (102,133,0): 27, 18, 37, (102,134,0): 29, 17, 37, (102,135,0): 29, 18, 35, (102,136,0): 29, 16, 34, (102,137,0): 29, 16, 33, (102,138,0): 30, 16, 33, (102,139,0): 31, 17, 34, (102,140,0): 31, 17, 34, (102,141,0): 32, 18, 33, (102,142,0): 32, 18, 33, (102,143,0): 32, 18, 33, (102,144,0): 34, 20, 35, (102,145,0): 34, 20, 35, (102,146,0): 34, 20, 35, (102,147,0): 34, 20, 35, (102,148,0): 34, 20, 35, (102,149,0): 34, 20, 35, (102,150,0): 34, 20, 35, (102,151,0): 34, 20, 35, (102,152,0): 34, 20, 35, (102,153,0): 34, 20, 35, (102,154,0): 34, 20, 35, (102,155,0): 34, 20, 35, (102,156,0): 34, 20, 35, (102,157,0): 34, 20, 35, (102,158,0): 34, 20, 35, (102,159,0): 34, 20, 35, (102,160,0): 34, 20, 33, (102,161,0): 34, 20, 33, (102,162,0): 35, 21, 34, (102,163,0): 35, 21, 34, (102,164,0): 36, 22, 35, (102,165,0): 36, 22, 35, (102,166,0): 37, 23, 36, (102,167,0): 37, 23, 36, (102,168,0): 38, 24, 37, (102,169,0): 38, 24, 37, (102,170,0): 38, 24, 37, (102,171,0): 38, 24, 37, (102,172,0): 38, 24, 37, (102,173,0): 38, 24, 37, (102,174,0): 38, 24, 37, (102,175,0): 38, 24, 37, (102,176,0): 38, 26, 38, (102,177,0): 38, 26, 38, (102,178,0): 37, 25, 37, (102,179,0): 36, 24, 36, (102,180,0): 36, 24, 36, (102,181,0): 37, 25, 37, (102,182,0): 38, 26, 38, (102,183,0): 38, 26, 38, (102,184,0): 39, 27, 39, (102,185,0): 39, 27, 39, (102,186,0): 39, 27, 39, (102,187,0): 39, 27, 39, (102,188,0): 39, 27, 39, (102,189,0): 39, 27, 39, (102,190,0): 39, 27, 39, (102,191,0): 39, 27, 39, (102,192,0): 42, 28, 41, (102,193,0): 42, 28, 41, (102,194,0): 42, 28, 41, (102,195,0): 42, 28, 41, (102,196,0): 44, 28, 39, (102,197,0): 44, 28, 39, (102,198,0): 44, 28, 39, (102,199,0): 44, 28, 38, (102,200,0): 48, 31, 41, (102,201,0): 48, 31, 41, (102,202,0): 50, 30, 39, (102,203,0): 51, 31, 40, (102,204,0): 51, 31, 40, (102,205,0): 52, 33, 39, (102,206,0): 53, 32, 39, (102,207,0): 54, 33, 40, (102,208,0): 56, 33, 43, (102,209,0): 56, 33, 43, (102,210,0): 56, 33, 41, (102,211,0): 56, 33, 41, (102,212,0): 56, 33, 41, (102,213,0): 56, 33, 41, (102,214,0): 56, 33, 41, (102,215,0): 56, 33, 39, (102,216,0): 55, 32, 38, (102,217,0): 55, 33, 36, (102,218,0): 55, 33, 36, (102,219,0): 55, 33, 36, (102,220,0): 55, 33, 35, (102,221,0): 55, 33, 35, (102,222,0): 55, 33, 35, (102,223,0): 55, 33, 35, (102,224,0): 53, 31, 33, (102,225,0): 53, 31, 33, (102,226,0): 53, 31, 33, (102,227,0): 53, 31, 33, (102,228,0): 53, 31, 33, (102,229,0): 53, 31, 33, (102,230,0): 53, 31, 33, (102,231,0): 53, 31, 33, (102,232,0): 54, 32, 34, (102,233,0): 54, 32, 34, (102,234,0): 54, 32, 34, (102,235,0): 54, 32, 34, (102,236,0): 55, 33, 35, (102,237,0): 55, 33, 35, (102,238,0): 55, 33, 35, (102,239,0): 57, 32, 35, (102,240,0): 59, 30, 32, (102,241,0): 60, 30, 32, (102,242,0): 60, 30, 32, (102,243,0): 60, 30, 32, (102,244,0): 61, 31, 33, (102,245,0): 61, 31, 33, (102,246,0): 61, 31, 33, (102,247,0): 61, 31, 33, (102,248,0): 62, 32, 34, (102,249,0): 62, 32, 34, (102,250,0): 62, 32, 34, (102,251,0): 62, 32, 34, (102,252,0): 62, 32, 34, (102,253,0): 62, 32, 34, (102,254,0): 62, 32, 34, (102,255,0): 62, 32, 34, (102,256,0): 60, 31, 33, (102,257,0): 60, 31, 33, (102,258,0): 62, 32, 34, (102,259,0): 63, 33, 33, (102,260,0): 64, 34, 34, (102,261,0): 65, 35, 35, (102,262,0): 67, 35, 36, (102,263,0): 67, 36, 34, (102,264,0): 70, 36, 35, (102,265,0): 70, 36, 34, (102,266,0): 71, 37, 35, (102,267,0): 71, 37, 35, (102,268,0): 73, 38, 36, (102,269,0): 73, 38, 34, (102,270,0): 74, 39, 35, (102,271,0): 74, 39, 35, (102,272,0): 75, 40, 38, (102,273,0): 76, 41, 39, (102,274,0): 76, 41, 37, (102,275,0): 77, 42, 38, (102,276,0): 79, 44, 40, (102,277,0): 80, 45, 41, (102,278,0): 80, 45, 39, (102,279,0): 81, 46, 40, (102,280,0): 81, 46, 40, (102,281,0): 81, 47, 38, (102,282,0): 82, 48, 39, (102,283,0): 83, 49, 40, (102,284,0): 84, 50, 40, (102,285,0): 85, 51, 41, (102,286,0): 86, 52, 42, (102,287,0): 85, 53, 42, (102,288,0): 86, 53, 44, (102,289,0): 84, 54, 43, (102,290,0): 88, 56, 43, (102,291,0): 90, 58, 43, (102,292,0): 94, 61, 44, (102,293,0): 100, 65, 46, (102,294,0): 104, 67, 49, (102,295,0): 108, 70, 51, (102,296,0): 112, 71, 53, (102,297,0): 114, 72, 50, (102,298,0): 118, 72, 46, (102,299,0): 122, 78, 43, (102,300,0): 130, 85, 43, (102,301,0): 139, 96, 45, (102,302,0): 150, 105, 48, (102,303,0): 155, 111, 50, (102,304,0): 153, 111, 51, (102,305,0): 153, 111, 51, (102,306,0): 153, 111, 51, (102,307,0): 153, 113, 54, (102,308,0): 154, 114, 55, (102,309,0): 153, 114, 55, (102,310,0): 151, 115, 57, (102,311,0): 151, 116, 58, (102,312,0): 151, 116, 58, (102,313,0): 150, 118, 61, (102,314,0): 150, 119, 62, (102,315,0): 151, 122, 64, (102,316,0): 153, 124, 68, (102,317,0): 155, 126, 70, (102,318,0): 156, 127, 71, (102,319,0): 157, 128, 72, (102,320,0): 156, 127, 71, (102,321,0): 156, 127, 71, (102,322,0): 156, 127, 71, (102,323,0): 156, 127, 71, (102,324,0): 155, 126, 70, (102,325,0): 153, 126, 71, (102,326,0): 153, 126, 71, (102,327,0): 152, 127, 71, (102,328,0): 150, 125, 71, (102,329,0): 150, 125, 71, (102,330,0): 149, 126, 72, (102,331,0): 151, 128, 76, (102,332,0): 152, 129, 77, (102,333,0): 153, 130, 78, (102,334,0): 154, 131, 79, (102,335,0): 154, 131, 81, (102,336,0): 154, 132, 83, (102,337,0): 156, 134, 85, (102,338,0): 158, 136, 89, (102,339,0): 159, 137, 90, (102,340,0): 160, 138, 91, (102,341,0): 161, 139, 92, (102,342,0): 160, 137, 93, (102,343,0): 160, 137, 93, (102,344,0): 159, 136, 94, (102,345,0): 160, 137, 95, (102,346,0): 160, 137, 95, (102,347,0): 160, 137, 95, (102,348,0): 161, 138, 97, (102,349,0): 161, 138, 97, (102,350,0): 162, 139, 98, (102,351,0): 162, 139, 98, (102,352,0): 163, 137, 100, (102,353,0): 164, 138, 101, (102,354,0): 164, 138, 101, (102,355,0): 165, 139, 102, (102,356,0): 169, 141, 104, (102,357,0): 170, 142, 105, (102,358,0): 171, 141, 103, (102,359,0): 172, 142, 104, (102,360,0): 172, 140, 102, (102,361,0): 173, 139, 102, (102,362,0): 173, 139, 102, (102,363,0): 175, 140, 102, (102,364,0): 177, 141, 105, (102,365,0): 179, 144, 106, (102,366,0): 184, 146, 110, (102,367,0): 186, 147, 108, (102,368,0): 195, 147, 107, (102,369,0): 200, 147, 105, (102,370,0): 207, 148, 106, (102,371,0): 215, 152, 108, (102,372,0): 224, 156, 109, (102,373,0): 226, 156, 107, (102,374,0): 224, 150, 101, (102,375,0): 221, 147, 98, (102,376,0): 224, 150, 103, (102,377,0): 230, 154, 105, (102,378,0): 233, 157, 107, (102,379,0): 234, 157, 105, (102,380,0): 235, 154, 98, (102,381,0): 236, 152, 92, (102,382,0): 238, 153, 89, (102,383,0): 236, 155, 92, (102,384,0): 227, 157, 98, (102,385,0): 226, 159, 104, (102,386,0): 233, 164, 107, (102,387,0): 240, 168, 110, (102,388,0): 247, 171, 111, (102,389,0): 253, 175, 111, (102,390,0): 255, 176, 111, (102,391,0): 255, 177, 111, (102,392,0): 255, 174, 106, (102,393,0): 255, 175, 104, (102,394,0): 255, 177, 105, (102,395,0): 252, 178, 105, (102,396,0): 249, 177, 103, (102,397,0): 243, 173, 101, (102,398,0): 239, 171, 98, (102,399,0): 232, 170, 97, (102,400,0): 223, 170, 100, (102,401,0): 220, 171, 102, (102,402,0): 222, 173, 104, (102,403,0): 228, 180, 108, (102,404,0): 235, 187, 115, (102,405,0): 238, 190, 118, (102,406,0): 238, 190, 118, (102,407,0): 236, 188, 114, (102,408,0): 233, 185, 113, (102,409,0): 232, 185, 113, (102,410,0): 231, 184, 112, (102,411,0): 227, 183, 110, (102,412,0): 225, 183, 109, (102,413,0): 224, 182, 108, (102,414,0): 221, 181, 109, (102,415,0): 220, 180, 110, (102,416,0): 222, 182, 113, (102,417,0): 224, 184, 115, (102,418,0): 226, 186, 116, (102,419,0): 223, 183, 113, (102,420,0): 219, 179, 109, (102,421,0): 217, 177, 105, (102,422,0): 217, 178, 103, (102,423,0): 219, 180, 105, (102,424,0): 219, 180, 103, (102,425,0): 221, 182, 103, (102,426,0): 224, 186, 105, (102,427,0): 226, 188, 107, (102,428,0): 228, 190, 107, (102,429,0): 232, 194, 111, (102,430,0): 238, 200, 115, (102,431,0): 243, 206, 118, (102,432,0): 248, 211, 120, (102,433,0): 245, 210, 116, (102,434,0): 242, 207, 115, (102,435,0): 240, 207, 114, (102,436,0): 239, 204, 114, (102,437,0): 233, 199, 109, (102,438,0): 226, 192, 103, (102,439,0): 218, 187, 97, (102,440,0): 215, 183, 98, (102,441,0): 215, 185, 99, (102,442,0): 215, 184, 101, (102,443,0): 214, 183, 100, (102,444,0): 212, 181, 99, (102,445,0): 207, 179, 96, (102,446,0): 206, 175, 95, (102,447,0): 202, 173, 95, (102,448,0): 195, 165, 92, (102,449,0): 194, 164, 92, (102,450,0): 193, 163, 93, (102,451,0): 188, 157, 90, (102,452,0): 183, 149, 86, (102,453,0): 177, 143, 82, (102,454,0): 173, 138, 82, (102,455,0): 171, 135, 83, (102,456,0): 165, 131, 83, (102,457,0): 160, 127, 82, (102,458,0): 155, 122, 81, (102,459,0): 147, 117, 79, (102,460,0): 142, 114, 77, (102,461,0): 135, 109, 74, (102,462,0): 126, 102, 68, (102,463,0): 120, 97, 66, (102,464,0): 116, 89, 68, (102,465,0): 114, 87, 68, (102,466,0): 111, 84, 65, (102,467,0): 111, 84, 65, (102,468,0): 113, 84, 66, (102,469,0): 112, 83, 65, (102,470,0): 109, 80, 62, (102,471,0): 106, 77, 59, (102,472,0): 103, 72, 54, (102,473,0): 101, 70, 52, (102,474,0): 100, 67, 50, (102,475,0): 99, 66, 49, (102,476,0): 101, 68, 51, (102,477,0): 106, 73, 56, (102,478,0): 113, 77, 61, (102,479,0): 114, 81, 64, (102,480,0): 112, 85, 66, (102,481,0): 109, 87, 66, (102,482,0): 112, 87, 67, (102,483,0): 110, 88, 67, (102,484,0): 111, 86, 66, (102,485,0): 107, 85, 62, (102,486,0): 107, 82, 62, (102,487,0): 104, 82, 59, (102,488,0): 106, 81, 59, (102,489,0): 104, 82, 59, (102,490,0): 107, 82, 60, (102,491,0): 107, 85, 62, (102,492,0): 112, 88, 64, (102,493,0): 113, 91, 67, (102,494,0): 117, 93, 69, (102,495,0): 119, 95, 69, (102,496,0): 120, 96, 70, (102,497,0): 121, 97, 69, (102,498,0): 119, 98, 69, (102,499,0): 120, 99, 70, (102,500,0): 121, 100, 73, (102,501,0): 122, 101, 74, (102,502,0): 122, 101, 74, (102,503,0): 122, 102, 75, (102,504,0): 117, 97, 72, (102,505,0): 115, 98, 72, (102,506,0): 114, 96, 72, (102,507,0): 112, 94, 70, (102,508,0): 109, 93, 68, (102,509,0): 108, 92, 67, (102,510,0): 107, 91, 68, (102,511,0): 106, 90, 67, (102,512,0): 108, 92, 69, (102,513,0): 108, 92, 69, (102,514,0): 108, 92, 69, (102,515,0): 108, 92, 69, (102,516,0): 108, 92, 69, (102,517,0): 108, 92, 69, (102,518,0): 108, 92, 69, (102,519,0): 108, 92, 69, (102,520,0): 107, 91, 68, (102,521,0): 107, 91, 68, (102,522,0): 107, 91, 68, (102,523,0): 107, 91, 68, (102,524,0): 107, 91, 68, (102,525,0): 107, 91, 68, (102,526,0): 107, 91, 68, (102,527,0): 106, 91, 68, (102,528,0): 106, 91, 68, (102,529,0): 104, 92, 68, (102,530,0): 106, 94, 70, (102,531,0): 107, 95, 71, (102,532,0): 109, 94, 71, (102,533,0): 109, 94, 71, (102,534,0): 109, 94, 71, (102,535,0): 108, 93, 70, (102,536,0): 109, 93, 70, (102,537,0): 110, 94, 71, (102,538,0): 112, 94, 72, (102,539,0): 113, 95, 73, (102,540,0): 113, 95, 73, (102,541,0): 112, 94, 72, (102,542,0): 114, 93, 72, (102,543,0): 113, 92, 71, (102,544,0): 109, 87, 64, (102,545,0): 109, 87, 64, (102,546,0): 108, 86, 63, (102,547,0): 106, 84, 61, (102,548,0): 104, 82, 61, (102,549,0): 103, 81, 60, (102,550,0): 102, 79, 61, (102,551,0): 101, 78, 60, (102,552,0): 100, 77, 59, (102,553,0): 100, 77, 59, (102,554,0): 100, 77, 61, (102,555,0): 101, 78, 62, (102,556,0): 101, 78, 64, (102,557,0): 102, 79, 65, (102,558,0): 102, 79, 65, (102,559,0): 102, 79, 65, (102,560,0): 101, 77, 65, (102,561,0): 101, 77, 65, (102,562,0): 101, 77, 65, (102,563,0): 100, 76, 64, (102,564,0): 97, 75, 64, (102,565,0): 95, 73, 62, (102,566,0): 93, 71, 60, (102,567,0): 92, 70, 59, (102,568,0): 87, 67, 58, (102,569,0): 84, 64, 55, (102,570,0): 81, 62, 55, (102,571,0): 80, 61, 54, (102,572,0): 82, 63, 56, (102,573,0): 82, 63, 56, (102,574,0): 78, 61, 54, (102,575,0): 75, 58, 51, (102,576,0): 76, 56, 55, (102,577,0): 76, 56, 55, (102,578,0): 76, 56, 55, (102,579,0): 75, 55, 54, (102,580,0): 75, 55, 54, (102,581,0): 75, 55, 54, (102,582,0): 74, 54, 53, (102,583,0): 74, 54, 53, (102,584,0): 69, 49, 48, (102,585,0): 69, 49, 48, (102,586,0): 68, 48, 47, (102,587,0): 68, 48, 47, (102,588,0): 69, 49, 48, (102,589,0): 71, 51, 50, (102,590,0): 73, 53, 52, (102,591,0): 73, 55, 53, (102,592,0): 69, 51, 51, (102,593,0): 67, 51, 51, (102,594,0): 65, 49, 49, (102,595,0): 64, 48, 48, (102,596,0): 62, 46, 46, (102,597,0): 61, 45, 45, (102,598,0): 60, 44, 44, (102,599,0): 59, 43, 43, (103,0,0): 21, 26, 48, (103,1,0): 22, 27, 49, (103,2,0): 24, 26, 47, (103,3,0): 26, 27, 47, (103,4,0): 28, 26, 47, (103,5,0): 30, 27, 46, (103,6,0): 31, 27, 44, (103,7,0): 33, 26, 42, (103,8,0): 42, 31, 47, (103,9,0): 43, 31, 45, (103,10,0): 48, 32, 45, (103,11,0): 52, 34, 46, (103,12,0): 56, 36, 48, (103,13,0): 58, 38, 49, (103,14,0): 61, 40, 49, (103,15,0): 63, 40, 50, (103,16,0): 67, 40, 49, (103,17,0): 69, 39, 47, (103,18,0): 70, 39, 47, (103,19,0): 68, 37, 45, (103,20,0): 66, 35, 43, (103,21,0): 64, 33, 41, (103,22,0): 62, 29, 38, (103,23,0): 61, 28, 37, (103,24,0): 69, 33, 43, (103,25,0): 71, 35, 45, (103,26,0): 76, 38, 49, (103,27,0): 78, 40, 51, (103,28,0): 78, 40, 51, (103,29,0): 77, 37, 48, (103,30,0): 73, 33, 44, (103,31,0): 69, 31, 44, (103,32,0): 65, 33, 48, (103,33,0): 61, 30, 46, (103,34,0): 57, 26, 42, (103,35,0): 52, 24, 39, (103,36,0): 51, 23, 38, (103,37,0): 50, 23, 38, (103,38,0): 50, 26, 42, (103,39,0): 51, 28, 44, (103,40,0): 49, 26, 44, (103,41,0): 48, 27, 44, (103,42,0): 45, 26, 45, (103,43,0): 44, 27, 45, (103,44,0): 43, 26, 44, (103,45,0): 43, 26, 44, (103,46,0): 40, 26, 43, (103,47,0): 40, 25, 44, (103,48,0): 39, 24, 45, (103,49,0): 38, 25, 45, (103,50,0): 38, 25, 45, (103,51,0): 37, 24, 44, (103,52,0): 35, 22, 42, (103,53,0): 31, 19, 39, (103,54,0): 29, 17, 37, (103,55,0): 25, 16, 35, (103,56,0): 25, 16, 35, (103,57,0): 25, 16, 35, (103,58,0): 25, 16, 35, (103,59,0): 25, 18, 36, (103,60,0): 25, 18, 36, (103,61,0): 25, 18, 36, (103,62,0): 25, 18, 36, (103,63,0): 25, 18, 36, (103,64,0): 26, 19, 37, (103,65,0): 26, 19, 37, (103,66,0): 26, 19, 37, (103,67,0): 26, 19, 37, (103,68,0): 26, 19, 37, (103,69,0): 26, 19, 37, (103,70,0): 26, 19, 37, (103,71,0): 26, 19, 37, (103,72,0): 25, 18, 36, (103,73,0): 25, 18, 36, (103,74,0): 25, 18, 36, (103,75,0): 25, 18, 36, (103,76,0): 25, 18, 36, (103,77,0): 25, 18, 36, (103,78,0): 25, 18, 36, (103,79,0): 25, 18, 36, (103,80,0): 28, 16, 36, (103,81,0): 27, 15, 35, (103,82,0): 25, 16, 35, (103,83,0): 24, 15, 34, (103,84,0): 24, 15, 34, (103,85,0): 23, 14, 33, (103,86,0): 22, 15, 33, (103,87,0): 22, 15, 33, (103,88,0): 20, 16, 33, (103,89,0): 21, 17, 34, (103,90,0): 23, 19, 36, (103,91,0): 23, 19, 36, (103,92,0): 22, 19, 36, (103,93,0): 20, 17, 34, (103,94,0): 18, 15, 32, (103,95,0): 17, 14, 31, (103,96,0): 22, 15, 33, (103,97,0): 22, 15, 33, (103,98,0): 22, 15, 33, (103,99,0): 22, 15, 33, (103,100,0): 22, 15, 33, (103,101,0): 22, 15, 33, (103,102,0): 22, 15, 33, (103,103,0): 22, 15, 33, (103,104,0): 23, 16, 34, (103,105,0): 23, 16, 34, (103,106,0): 23, 16, 34, (103,107,0): 23, 16, 34, (103,108,0): 23, 16, 34, (103,109,0): 23, 16, 34, (103,110,0): 23, 16, 34, (103,111,0): 23, 16, 34, (103,112,0): 23, 16, 34, (103,113,0): 24, 17, 35, (103,114,0): 25, 18, 36, (103,115,0): 26, 19, 37, (103,116,0): 26, 19, 37, (103,117,0): 25, 18, 36, (103,118,0): 24, 17, 35, (103,119,0): 23, 16, 34, (103,120,0): 19, 15, 32, (103,121,0): 20, 16, 33, (103,122,0): 22, 18, 35, (103,123,0): 23, 19, 36, (103,124,0): 23, 19, 36, (103,125,0): 22, 18, 35, (103,126,0): 20, 16, 33, (103,127,0): 21, 14, 32, (103,128,0): 27, 18, 39, (103,129,0): 27, 18, 39, (103,130,0): 27, 18, 37, (103,131,0): 27, 18, 37, (103,132,0): 27, 18, 37, (103,133,0): 27, 18, 37, (103,134,0): 29, 18, 35, (103,135,0): 29, 18, 35, (103,136,0): 29, 16, 33, (103,137,0): 29, 16, 33, (103,138,0): 30, 16, 33, (103,139,0): 31, 17, 34, (103,140,0): 31, 17, 32, (103,141,0): 32, 18, 33, (103,142,0): 32, 18, 33, (103,143,0): 32, 18, 33, (103,144,0): 34, 20, 35, (103,145,0): 34, 20, 35, (103,146,0): 34, 20, 35, (103,147,0): 34, 20, 35, (103,148,0): 34, 20, 35, (103,149,0): 34, 20, 35, (103,150,0): 34, 20, 35, (103,151,0): 34, 20, 35, (103,152,0): 34, 20, 35, (103,153,0): 34, 20, 35, (103,154,0): 34, 20, 35, (103,155,0): 34, 20, 35, (103,156,0): 34, 20, 35, (103,157,0): 34, 20, 35, (103,158,0): 34, 20, 35, (103,159,0): 34, 20, 35, (103,160,0): 34, 20, 33, (103,161,0): 34, 20, 33, (103,162,0): 35, 21, 34, (103,163,0): 35, 21, 34, (103,164,0): 36, 22, 35, (103,165,0): 36, 22, 35, (103,166,0): 37, 23, 36, (103,167,0): 37, 23, 36, (103,168,0): 38, 24, 37, (103,169,0): 38, 24, 37, (103,170,0): 38, 24, 37, (103,171,0): 38, 24, 37, (103,172,0): 38, 24, 37, (103,173,0): 38, 24, 37, (103,174,0): 38, 24, 37, (103,175,0): 38, 24, 37, (103,176,0): 39, 27, 39, (103,177,0): 38, 26, 38, (103,178,0): 37, 25, 37, (103,179,0): 36, 24, 36, (103,180,0): 36, 24, 36, (103,181,0): 37, 25, 37, (103,182,0): 38, 26, 38, (103,183,0): 39, 27, 39, (103,184,0): 39, 27, 39, (103,185,0): 39, 27, 39, (103,186,0): 39, 27, 39, (103,187,0): 39, 27, 39, (103,188,0): 39, 27, 39, (103,189,0): 39, 27, 39, (103,190,0): 39, 27, 39, (103,191,0): 39, 27, 39, (103,192,0): 42, 28, 41, (103,193,0): 42, 28, 41, (103,194,0): 42, 28, 41, (103,195,0): 42, 29, 39, (103,196,0): 44, 28, 39, (103,197,0): 44, 28, 39, (103,198,0): 44, 28, 38, (103,199,0): 44, 28, 38, (103,200,0): 49, 32, 42, (103,201,0): 49, 32, 40, (103,202,0): 51, 31, 40, (103,203,0): 52, 32, 41, (103,204,0): 52, 33, 39, (103,205,0): 53, 34, 40, (103,206,0): 54, 33, 40, (103,207,0): 55, 34, 41, (103,208,0): 56, 33, 43, (103,209,0): 56, 33, 43, (103,210,0): 56, 33, 41, (103,211,0): 56, 33, 41, (103,212,0): 56, 33, 41, (103,213,0): 56, 33, 39, (103,214,0): 56, 33, 39, (103,215,0): 56, 33, 39, (103,216,0): 55, 33, 36, (103,217,0): 55, 33, 36, (103,218,0): 55, 33, 36, (103,219,0): 55, 33, 35, (103,220,0): 55, 33, 35, (103,221,0): 55, 33, 35, (103,222,0): 55, 33, 35, (103,223,0): 55, 33, 35, (103,224,0): 53, 31, 33, (103,225,0): 53, 31, 33, (103,226,0): 53, 31, 33, (103,227,0): 53, 31, 33, (103,228,0): 53, 31, 33, (103,229,0): 53, 31, 33, (103,230,0): 53, 31, 33, (103,231,0): 53, 31, 33, (103,232,0): 52, 30, 32, (103,233,0): 53, 31, 33, (103,234,0): 53, 31, 33, (103,235,0): 54, 32, 34, (103,236,0): 55, 33, 35, (103,237,0): 56, 34, 36, (103,238,0): 56, 34, 36, (103,239,0): 59, 34, 37, (103,240,0): 57, 28, 30, (103,241,0): 59, 29, 31, (103,242,0): 59, 29, 31, (103,243,0): 60, 30, 32, (103,244,0): 61, 31, 33, (103,245,0): 62, 32, 34, (103,246,0): 62, 32, 34, (103,247,0): 63, 33, 35, (103,248,0): 62, 32, 34, (103,249,0): 62, 32, 34, (103,250,0): 62, 32, 34, (103,251,0): 62, 32, 34, (103,252,0): 62, 32, 34, (103,253,0): 62, 32, 34, (103,254,0): 62, 32, 34, (103,255,0): 62, 32, 34, (103,256,0): 60, 31, 33, (103,257,0): 60, 31, 33, (103,258,0): 62, 32, 32, (103,259,0): 63, 33, 33, (103,260,0): 64, 34, 34, (103,261,0): 65, 35, 35, (103,262,0): 67, 36, 34, (103,263,0): 67, 36, 34, (103,264,0): 71, 37, 35, (103,265,0): 71, 37, 35, (103,266,0): 72, 38, 36, (103,267,0): 72, 38, 36, (103,268,0): 74, 39, 35, (103,269,0): 74, 39, 35, (103,270,0): 74, 39, 35, (103,271,0): 75, 40, 36, (103,272,0): 75, 40, 38, (103,273,0): 76, 41, 37, (103,274,0): 76, 41, 37, (103,275,0): 77, 42, 38, (103,276,0): 79, 44, 40, (103,277,0): 80, 45, 39, (103,278,0): 80, 45, 39, (103,279,0): 81, 47, 38, (103,280,0): 81, 47, 38, (103,281,0): 82, 48, 39, (103,282,0): 82, 48, 39, (103,283,0): 83, 49, 39, (103,284,0): 84, 50, 40, (103,285,0): 85, 51, 41, (103,286,0): 86, 52, 42, (103,287,0): 86, 54, 43, (103,288,0): 84, 54, 44, (103,289,0): 85, 55, 44, (103,290,0): 88, 56, 45, (103,291,0): 90, 58, 43, (103,292,0): 95, 62, 47, (103,293,0): 99, 66, 49, (103,294,0): 105, 68, 50, (103,295,0): 108, 69, 52, (103,296,0): 109, 68, 50, (103,297,0): 111, 68, 49, (103,298,0): 114, 70, 45, (103,299,0): 120, 75, 42, (103,300,0): 128, 83, 42, (103,301,0): 138, 95, 44, (103,302,0): 150, 105, 48, (103,303,0): 155, 111, 50, (103,304,0): 154, 113, 51, (103,305,0): 155, 114, 50, (103,306,0): 155, 114, 52, (103,307,0): 156, 115, 53, (103,308,0): 155, 115, 53, (103,309,0): 156, 116, 54, (103,310,0): 155, 117, 55, (103,311,0): 153, 117, 55, (103,312,0): 153, 119, 58, (103,313,0): 153, 119, 58, (103,314,0): 153, 121, 60, (103,315,0): 153, 123, 61, (103,316,0): 155, 125, 65, (103,317,0): 155, 126, 66, (103,318,0): 157, 128, 68, (103,319,0): 157, 128, 68, (103,320,0): 157, 128, 70, (103,321,0): 157, 128, 70, (103,322,0): 157, 128, 70, (103,323,0): 156, 127, 71, (103,324,0): 156, 127, 71, (103,325,0): 156, 127, 71, (103,326,0): 153, 127, 70, (103,327,0): 153, 126, 71, (103,328,0): 151, 124, 69, (103,329,0): 150, 125, 71, (103,330,0): 151, 126, 72, (103,331,0): 151, 128, 74, (103,332,0): 152, 129, 75, (103,333,0): 153, 130, 78, (103,334,0): 154, 131, 79, (103,335,0): 155, 132, 80, (103,336,0): 155, 133, 83, (103,337,0): 156, 134, 85, (103,338,0): 158, 136, 89, (103,339,0): 160, 138, 91, (103,340,0): 161, 139, 92, (103,341,0): 161, 139, 92, (103,342,0): 161, 138, 94, (103,343,0): 161, 138, 94, (103,344,0): 159, 136, 94, (103,345,0): 160, 137, 95, (103,346,0): 160, 137, 95, (103,347,0): 161, 138, 96, (103,348,0): 161, 138, 97, (103,349,0): 162, 139, 98, (103,350,0): 162, 139, 98, (103,351,0): 162, 139, 98, (103,352,0): 162, 136, 99, (103,353,0): 163, 137, 100, (103,354,0): 164, 138, 101, (103,355,0): 165, 139, 102, (103,356,0): 168, 140, 103, (103,357,0): 169, 141, 104, (103,358,0): 171, 141, 103, (103,359,0): 173, 141, 103, (103,360,0): 172, 138, 101, (103,361,0): 172, 138, 100, (103,362,0): 174, 139, 101, (103,363,0): 177, 139, 102, (103,364,0): 180, 142, 105, (103,365,0): 183, 145, 106, (103,366,0): 187, 147, 111, (103,367,0): 190, 148, 108, (103,368,0): 197, 148, 107, (103,369,0): 203, 149, 105, (103,370,0): 212, 151, 107, (103,371,0): 220, 156, 110, (103,372,0): 230, 160, 111, (103,373,0): 232, 159, 108, (103,374,0): 229, 153, 103, (103,375,0): 224, 148, 98, (103,376,0): 228, 152, 103, (103,377,0): 231, 155, 105, (103,378,0): 234, 158, 108, (103,379,0): 235, 158, 104, (103,380,0): 234, 155, 98, (103,381,0): 232, 152, 91, (103,382,0): 235, 151, 89, (103,383,0): 232, 154, 92, (103,384,0): 226, 157, 100, (103,385,0): 223, 161, 104, (103,386,0): 231, 164, 109, (103,387,0): 238, 169, 110, (103,388,0): 248, 174, 113, (103,389,0): 252, 177, 112, (103,390,0): 255, 179, 113, (103,391,0): 255, 180, 111, (103,392,0): 254, 175, 106, (103,393,0): 255, 177, 105, (103,394,0): 255, 178, 106, (103,395,0): 252, 178, 105, (103,396,0): 248, 179, 104, (103,397,0): 243, 175, 100, (103,398,0): 239, 173, 99, (103,399,0): 232, 172, 99, (103,400,0): 225, 172, 102, (103,401,0): 222, 173, 104, (103,402,0): 225, 177, 105, (103,403,0): 231, 183, 111, (103,404,0): 237, 189, 117, (103,405,0): 238, 191, 119, (103,406,0): 236, 189, 117, (103,407,0): 231, 187, 114, (103,408,0): 229, 185, 112, (103,409,0): 229, 185, 112, (103,410,0): 228, 184, 111, (103,411,0): 226, 184, 110, (103,412,0): 225, 183, 109, (103,413,0): 225, 183, 109, (103,414,0): 222, 182, 110, (103,415,0): 222, 182, 110, (103,416,0): 222, 182, 112, (103,417,0): 225, 185, 115, (103,418,0): 226, 186, 116, (103,419,0): 224, 184, 112, (103,420,0): 219, 179, 107, (103,421,0): 216, 177, 102, (103,422,0): 216, 177, 102, (103,423,0): 218, 179, 102, (103,424,0): 217, 178, 99, (103,425,0): 220, 182, 101, (103,426,0): 224, 186, 105, (103,427,0): 226, 188, 105, (103,428,0): 228, 190, 107, (103,429,0): 232, 194, 109, (103,430,0): 238, 200, 115, (103,431,0): 243, 206, 118, (103,432,0): 247, 212, 120, (103,433,0): 243, 210, 115, (103,434,0): 240, 207, 114, (103,435,0): 237, 204, 111, (103,436,0): 235, 201, 111, (103,437,0): 228, 197, 106, (103,438,0): 222, 191, 101, (103,439,0): 216, 186, 96, (103,440,0): 214, 184, 98, (103,441,0): 214, 184, 98, (103,442,0): 214, 183, 100, (103,443,0): 210, 182, 98, (103,444,0): 207, 179, 96, (103,445,0): 205, 177, 94, (103,446,0): 204, 175, 95, (103,447,0): 203, 174, 96, (103,448,0): 195, 166, 90, (103,449,0): 197, 167, 94, (103,450,0): 196, 166, 94, (103,451,0): 190, 160, 90, (103,452,0): 183, 149, 85, (103,453,0): 175, 141, 80, (103,454,0): 172, 137, 81, (103,455,0): 172, 136, 84, (103,456,0): 163, 129, 81, (103,457,0): 158, 125, 80, (103,458,0): 152, 120, 79, (103,459,0): 146, 116, 78, (103,460,0): 141, 112, 78, (103,461,0): 133, 109, 75, (103,462,0): 125, 102, 70, (103,463,0): 119, 95, 67, (103,464,0): 113, 86, 67, (103,465,0): 110, 83, 66, (103,466,0): 106, 79, 62, (103,467,0): 105, 78, 61, (103,468,0): 107, 78, 62, (103,469,0): 107, 78, 62, (103,470,0): 105, 76, 60, (103,471,0): 102, 73, 57, (103,472,0): 101, 69, 54, (103,473,0): 99, 67, 52, (103,474,0): 98, 65, 50, (103,475,0): 96, 63, 48, (103,476,0): 98, 65, 50, (103,477,0): 102, 69, 54, (103,478,0): 110, 74, 60, (103,479,0): 110, 78, 63, (103,480,0): 106, 80, 63, (103,481,0): 104, 81, 63, (103,482,0): 105, 82, 64, (103,483,0): 105, 82, 64, (103,484,0): 104, 81, 63, (103,485,0): 103, 81, 60, (103,486,0): 101, 79, 58, (103,487,0): 100, 78, 57, (103,488,0): 102, 80, 59, (103,489,0): 103, 81, 58, (103,490,0): 105, 83, 60, (103,491,0): 108, 86, 63, (103,492,0): 110, 88, 64, (103,493,0): 113, 91, 67, (103,494,0): 115, 93, 69, (103,495,0): 116, 95, 68, (103,496,0): 119, 95, 69, (103,497,0): 120, 96, 68, (103,498,0): 119, 98, 69, (103,499,0): 120, 99, 70, (103,500,0): 121, 100, 73, (103,501,0): 121, 101, 74, (103,502,0): 122, 102, 75, (103,503,0): 123, 103, 76, (103,504,0): 116, 99, 73, (103,505,0): 115, 98, 72, (103,506,0): 114, 96, 72, (103,507,0): 111, 95, 70, (103,508,0): 110, 94, 69, (103,509,0): 108, 92, 67, (103,510,0): 107, 91, 68, (103,511,0): 106, 90, 67, (103,512,0): 109, 93, 70, (103,513,0): 109, 93, 70, (103,514,0): 109, 93, 70, (103,515,0): 109, 93, 70, (103,516,0): 109, 93, 70, (103,517,0): 109, 93, 70, (103,518,0): 109, 93, 70, (103,519,0): 109, 93, 70, (103,520,0): 107, 91, 68, (103,521,0): 107, 91, 68, (103,522,0): 107, 91, 68, (103,523,0): 107, 91, 68, (103,524,0): 107, 91, 68, (103,525,0): 107, 91, 68, (103,526,0): 107, 91, 68, (103,527,0): 106, 91, 68, (103,528,0): 106, 91, 68, (103,529,0): 104, 92, 68, (103,530,0): 106, 94, 70, (103,531,0): 107, 95, 71, (103,532,0): 110, 95, 72, (103,533,0): 111, 96, 73, (103,534,0): 111, 96, 73, (103,535,0): 111, 96, 73, (103,536,0): 112, 96, 73, (103,537,0): 113, 97, 74, (103,538,0): 115, 97, 75, (103,539,0): 115, 97, 75, (103,540,0): 115, 97, 75, (103,541,0): 114, 96, 74, (103,542,0): 115, 94, 73, (103,543,0): 114, 93, 72, (103,544,0): 110, 88, 65, (103,545,0): 109, 87, 64, (103,546,0): 108, 86, 63, (103,547,0): 106, 84, 61, (103,548,0): 105, 83, 62, (103,549,0): 103, 81, 60, (103,550,0): 102, 79, 61, (103,551,0): 101, 78, 60, (103,552,0): 100, 77, 59, (103,553,0): 100, 77, 59, (103,554,0): 100, 77, 61, (103,555,0): 101, 78, 62, (103,556,0): 101, 78, 64, (103,557,0): 102, 79, 65, (103,558,0): 102, 79, 65, (103,559,0): 102, 79, 65, (103,560,0): 101, 77, 65, (103,561,0): 101, 77, 65, (103,562,0): 101, 77, 65, (103,563,0): 100, 76, 64, (103,564,0): 97, 75, 64, (103,565,0): 95, 73, 62, (103,566,0): 93, 71, 60, (103,567,0): 92, 70, 59, (103,568,0): 87, 67, 58, (103,569,0): 85, 65, 56, (103,570,0): 81, 62, 55, (103,571,0): 81, 62, 55, (103,572,0): 82, 63, 56, (103,573,0): 82, 63, 56, (103,574,0): 79, 62, 55, (103,575,0): 76, 59, 52, (103,576,0): 78, 59, 55, (103,577,0): 78, 58, 57, (103,578,0): 77, 57, 56, (103,579,0): 77, 57, 56, (103,580,0): 77, 57, 56, (103,581,0): 77, 57, 56, (103,582,0): 76, 56, 55, (103,583,0): 76, 56, 55, (103,584,0): 72, 52, 51, (103,585,0): 71, 51, 50, (103,586,0): 69, 49, 48, (103,587,0): 69, 49, 48, (103,588,0): 69, 49, 48, (103,589,0): 71, 51, 50, (103,590,0): 73, 53, 52, (103,591,0): 74, 56, 54, (103,592,0): 70, 52, 52, (103,593,0): 67, 51, 51, (103,594,0): 66, 50, 50, (103,595,0): 64, 48, 48, (103,596,0): 63, 47, 47, (103,597,0): 61, 45, 45, (103,598,0): 60, 44, 44, (103,599,0): 59, 43, 43, (104,0,0): 27, 29, 52, (104,1,0): 27, 29, 52, (104,2,0): 27, 28, 49, (104,3,0): 26, 27, 47, (104,4,0): 28, 26, 47, (104,5,0): 30, 27, 46, (104,6,0): 33, 29, 46, (104,7,0): 36, 29, 45, (104,8,0): 42, 31, 47, (104,9,0): 46, 34, 48, (104,10,0): 54, 38, 51, (104,11,0): 59, 41, 53, (104,12,0): 63, 43, 55, (104,13,0): 63, 41, 53, (104,14,0): 62, 39, 49, (104,15,0): 60, 37, 47, (104,16,0): 61, 35, 44, (104,17,0): 60, 33, 42, (104,18,0): 57, 30, 39, (104,19,0): 54, 27, 36, (104,20,0): 53, 23, 33, (104,21,0): 51, 21, 31, (104,22,0): 50, 20, 30, (104,23,0): 50, 20, 30, (104,24,0): 54, 22, 33, (104,25,0): 56, 24, 35, (104,26,0): 60, 28, 39, (104,27,0): 63, 31, 42, (104,28,0): 64, 32, 43, (104,29,0): 64, 31, 42, (104,30,0): 62, 29, 40, (104,31,0): 59, 27, 40, (104,32,0): 58, 27, 42, (104,33,0): 55, 27, 42, (104,34,0): 52, 23, 41, (104,35,0): 49, 22, 39, (104,36,0): 48, 21, 38, (104,37,0): 46, 22, 38, (104,38,0): 47, 22, 41, (104,39,0): 47, 24, 42, (104,40,0): 45, 24, 43, (104,41,0): 43, 24, 43, (104,42,0): 43, 24, 43, (104,43,0): 42, 25, 43, (104,44,0): 41, 24, 43, (104,45,0): 39, 24, 43, (104,46,0): 39, 24, 43, (104,47,0): 39, 24, 43, (104,48,0): 33, 20, 40, (104,49,0): 33, 19, 42, (104,50,0): 32, 18, 41, (104,51,0): 30, 18, 40, (104,52,0): 28, 16, 38, (104,53,0): 27, 15, 37, (104,54,0): 26, 14, 36, (104,55,0): 23, 14, 35, (104,56,0): 26, 17, 38, (104,57,0): 25, 17, 38, (104,58,0): 25, 17, 38, (104,59,0): 25, 17, 38, (104,60,0): 25, 17, 38, (104,61,0): 23, 18, 38, (104,62,0): 23, 18, 38, (104,63,0): 23, 18, 38, (104,64,0): 26, 19, 37, (104,65,0): 26, 19, 37, (104,66,0): 26, 19, 37, (104,67,0): 26, 19, 37, (104,68,0): 26, 19, 37, (104,69,0): 26, 19, 37, (104,70,0): 26, 19, 37, (104,71,0): 26, 19, 37, (104,72,0): 26, 19, 37, (104,73,0): 26, 19, 37, (104,74,0): 25, 18, 36, (104,75,0): 25, 18, 36, (104,76,0): 24, 17, 35, (104,77,0): 24, 17, 35, (104,78,0): 23, 16, 34, (104,79,0): 23, 16, 34, (104,80,0): 27, 15, 35, (104,81,0): 27, 15, 35, (104,82,0): 25, 16, 35, (104,83,0): 24, 15, 34, (104,84,0): 24, 15, 34, (104,85,0): 23, 14, 33, (104,86,0): 22, 15, 33, (104,87,0): 21, 14, 32, (104,88,0): 19, 15, 32, (104,89,0): 19, 15, 32, (104,90,0): 19, 15, 32, (104,91,0): 19, 15, 32, (104,92,0): 18, 15, 32, (104,93,0): 18, 15, 32, (104,94,0): 18, 15, 32, (104,95,0): 18, 15, 32, (104,96,0): 20, 13, 31, (104,97,0): 20, 13, 31, (104,98,0): 20, 13, 31, (104,99,0): 20, 13, 31, (104,100,0): 20, 13, 31, (104,101,0): 20, 13, 31, (104,102,0): 20, 13, 31, (104,103,0): 20, 13, 31, (104,104,0): 22, 15, 33, (104,105,0): 22, 15, 33, (104,106,0): 21, 14, 32, (104,107,0): 20, 13, 31, (104,108,0): 20, 13, 31, (104,109,0): 21, 14, 32, (104,110,0): 22, 15, 33, (104,111,0): 22, 15, 33, (104,112,0): 22, 18, 35, (104,113,0): 22, 18, 35, (104,114,0): 21, 17, 34, (104,115,0): 21, 17, 34, (104,116,0): 21, 17, 34, (104,117,0): 20, 16, 33, (104,118,0): 20, 16, 33, (104,119,0): 20, 16, 33, (104,120,0): 20, 13, 31, (104,121,0): 21, 14, 32, (104,122,0): 23, 16, 34, (104,123,0): 24, 17, 35, (104,124,0): 25, 18, 36, (104,125,0): 24, 17, 35, (104,126,0): 24, 17, 35, (104,127,0): 23, 16, 34, (104,128,0): 27, 18, 37, (104,129,0): 27, 18, 37, (104,130,0): 29, 17, 37, (104,131,0): 29, 17, 37, (104,132,0): 29, 18, 35, (104,133,0): 29, 18, 35, (104,134,0): 30, 17, 35, (104,135,0): 30, 17, 35, (104,136,0): 29, 15, 32, (104,137,0): 30, 16, 33, (104,138,0): 32, 18, 33, (104,139,0): 33, 19, 34, (104,140,0): 36, 19, 35, (104,141,0): 36, 19, 35, (104,142,0): 36, 20, 33, (104,143,0): 35, 19, 32, (104,144,0): 35, 18, 34, (104,145,0): 35, 18, 34, (104,146,0): 35, 18, 34, (104,147,0): 35, 18, 34, (104,148,0): 35, 18, 34, (104,149,0): 35, 18, 34, (104,150,0): 35, 18, 34, (104,151,0): 35, 18, 34, (104,152,0): 35, 18, 34, (104,153,0): 35, 18, 34, (104,154,0): 35, 18, 34, (104,155,0): 36, 19, 35, (104,156,0): 36, 19, 35, (104,157,0): 37, 20, 36, (104,158,0): 37, 20, 36, (104,159,0): 38, 21, 37, (104,160,0): 38, 22, 35, (104,161,0): 38, 22, 33, (104,162,0): 38, 22, 33, (104,163,0): 38, 22, 33, (104,164,0): 38, 22, 33, (104,165,0): 38, 22, 33, (104,166,0): 38, 22, 33, (104,167,0): 38, 22, 33, (104,168,0): 40, 24, 35, (104,169,0): 40, 24, 35, (104,170,0): 40, 24, 35, (104,171,0): 40, 24, 35, (104,172,0): 40, 24, 35, (104,173,0): 40, 24, 35, (104,174,0): 40, 24, 35, (104,175,0): 38, 25, 35, (104,176,0): 36, 24, 34, (104,177,0): 36, 24, 34, (104,178,0): 36, 24, 34, (104,179,0): 36, 24, 34, (104,180,0): 36, 24, 34, (104,181,0): 36, 24, 34, (104,182,0): 36, 24, 34, (104,183,0): 36, 24, 34, (104,184,0): 35, 23, 33, (104,185,0): 35, 23, 33, (104,186,0): 35, 23, 33, (104,187,0): 36, 24, 34, (104,188,0): 36, 24, 34, (104,189,0): 37, 25, 35, (104,190,0): 37, 25, 35, (104,191,0): 38, 26, 36, (104,192,0): 42, 29, 39, (104,193,0): 44, 28, 39, (104,194,0): 44, 28, 39, (104,195,0): 45, 29, 40, (104,196,0): 45, 29, 40, (104,197,0): 46, 30, 40, (104,198,0): 47, 30, 40, (104,199,0): 48, 31, 41, (104,200,0): 53, 33, 42, (104,201,0): 53, 33, 42, (104,202,0): 54, 33, 42, (104,203,0): 54, 33, 40, (104,204,0): 54, 33, 40, (104,205,0): 54, 33, 40, (104,206,0): 54, 33, 38, (104,207,0): 54, 33, 38, (104,208,0): 57, 34, 42, (104,209,0): 59, 33, 42, (104,210,0): 59, 33, 42, (104,211,0): 58, 32, 41, (104,212,0): 58, 33, 39, (104,213,0): 57, 32, 38, (104,214,0): 57, 32, 38, (104,215,0): 57, 32, 36, (104,216,0): 57, 32, 36, (104,217,0): 57, 32, 36, (104,218,0): 57, 32, 35, (104,219,0): 57, 32, 35, (104,220,0): 57, 32, 35, (104,221,0): 57, 33, 33, (104,222,0): 57, 33, 33, (104,223,0): 57, 33, 33, (104,224,0): 53, 31, 33, (104,225,0): 53, 31, 33, (104,226,0): 53, 31, 33, (104,227,0): 53, 31, 33, (104,228,0): 53, 31, 33, (104,229,0): 53, 31, 33, (104,230,0): 53, 31, 33, (104,231,0): 53, 31, 33, (104,232,0): 54, 32, 34, (104,233,0): 54, 32, 34, (104,234,0): 54, 32, 34, (104,235,0): 54, 32, 34, (104,236,0): 54, 32, 34, (104,237,0): 54, 32, 34, (104,238,0): 54, 32, 34, (104,239,0): 56, 31, 34, (104,240,0): 60, 31, 33, (104,241,0): 61, 31, 31, (104,242,0): 61, 31, 31, (104,243,0): 61, 31, 31, (104,244,0): 61, 31, 31, (104,245,0): 61, 31, 31, (104,246,0): 61, 31, 31, (104,247,0): 61, 31, 31, (104,248,0): 61, 31, 31, (104,249,0): 61, 31, 31, (104,250,0): 61, 31, 31, (104,251,0): 62, 32, 32, (104,252,0): 62, 32, 32, (104,253,0): 63, 33, 33, (104,254,0): 63, 33, 33, (104,255,0): 63, 33, 33, (104,256,0): 61, 33, 32, (104,257,0): 61, 33, 32, (104,258,0): 63, 33, 33, (104,259,0): 63, 33, 33, (104,260,0): 64, 34, 32, (104,261,0): 64, 34, 32, (104,262,0): 66, 35, 33, (104,263,0): 66, 35, 33, (104,264,0): 70, 36, 34, (104,265,0): 70, 36, 34, (104,266,0): 71, 38, 33, (104,267,0): 72, 39, 34, (104,268,0): 74, 39, 35, (104,269,0): 75, 40, 36, (104,270,0): 76, 41, 35, (104,271,0): 76, 41, 35, (104,272,0): 78, 43, 39, (104,273,0): 77, 42, 38, (104,274,0): 77, 42, 38, (104,275,0): 76, 41, 35, (104,276,0): 77, 42, 36, (104,277,0): 78, 43, 37, (104,278,0): 80, 45, 39, (104,279,0): 81, 47, 38, (104,280,0): 82, 48, 39, (104,281,0): 83, 49, 39, (104,282,0): 83, 49, 39, (104,283,0): 84, 50, 40, (104,284,0): 84, 50, 40, (104,285,0): 85, 51, 39, (104,286,0): 85, 51, 39, (104,287,0): 84, 52, 41, (104,288,0): 84, 54, 44, (104,289,0): 83, 55, 43, (104,290,0): 85, 55, 44, (104,291,0): 88, 56, 41, (104,292,0): 91, 58, 43, (104,293,0): 94, 61, 44, (104,294,0): 100, 63, 47, (104,295,0): 102, 63, 46, (104,296,0): 104, 63, 45, (104,297,0): 109, 66, 47, (104,298,0): 117, 73, 48, (104,299,0): 123, 78, 45, (104,300,0): 130, 85, 44, (104,301,0): 138, 94, 45, (104,302,0): 148, 105, 50, (104,303,0): 155, 114, 52, (104,304,0): 157, 113, 50, (104,305,0): 158, 114, 49, (104,306,0): 158, 117, 51, (104,307,0): 160, 119, 53, (104,308,0): 160, 121, 56, (104,309,0): 160, 121, 56, (104,310,0): 159, 121, 58, (104,311,0): 156, 121, 57, (104,312,0): 156, 122, 58, (104,313,0): 157, 123, 59, (104,314,0): 156, 125, 61, (104,315,0): 156, 126, 62, (104,316,0): 157, 127, 65, (104,317,0): 158, 128, 66, (104,318,0): 158, 130, 67, (104,319,0): 158, 130, 67, (104,320,0): 162, 132, 72, (104,321,0): 163, 133, 73, (104,322,0): 164, 134, 74, (104,323,0): 164, 133, 76, (104,324,0): 163, 134, 76, (104,325,0): 162, 133, 75, (104,326,0): 160, 131, 73, (104,327,0): 157, 131, 74, (104,328,0): 155, 129, 72, (104,329,0): 154, 129, 73, (104,330,0): 155, 130, 74, (104,331,0): 157, 132, 76, (104,332,0): 158, 133, 77, (104,333,0): 159, 134, 80, (104,334,0): 158, 135, 81, (104,335,0): 159, 136, 84, (104,336,0): 159, 137, 87, (104,337,0): 160, 138, 89, (104,338,0): 161, 139, 90, (104,339,0): 161, 139, 90, (104,340,0): 161, 139, 92, (104,341,0): 160, 138, 91, (104,342,0): 159, 137, 90, (104,343,0): 158, 136, 89, (104,344,0): 159, 136, 92, (104,345,0): 159, 136, 92, (104,346,0): 159, 136, 94, (104,347,0): 159, 136, 94, (104,348,0): 159, 136, 94, (104,349,0): 159, 136, 94, (104,350,0): 159, 136, 95, (104,351,0): 159, 136, 95, (104,352,0): 160, 136, 98, (104,353,0): 160, 136, 100, (104,354,0): 163, 137, 100, (104,355,0): 164, 138, 101, (104,356,0): 168, 140, 103, (104,357,0): 169, 141, 104, (104,358,0): 172, 142, 104, (104,359,0): 174, 142, 104, (104,360,0): 172, 138, 100, (104,361,0): 173, 138, 100, (104,362,0): 176, 138, 101, (104,363,0): 178, 140, 101, (104,364,0): 182, 143, 104, (104,365,0): 187, 148, 107, (104,366,0): 193, 151, 113, (104,367,0): 196, 152, 113, (104,368,0): 200, 151, 110, (104,369,0): 208, 154, 110, (104,370,0): 219, 158, 113, (104,371,0): 225, 161, 113, (104,372,0): 232, 162, 111, (104,373,0): 231, 158, 107, (104,374,0): 229, 153, 103, (104,375,0): 226, 150, 98, (104,376,0): 230, 154, 104, (104,377,0): 228, 155, 104, (104,378,0): 228, 155, 104, (104,379,0): 227, 154, 101, (104,380,0): 228, 153, 96, (104,381,0): 228, 152, 92, (104,382,0): 228, 150, 88, (104,383,0): 225, 151, 88, (104,384,0): 218, 153, 95, (104,385,0): 220, 159, 102, (104,386,0): 230, 165, 109, (104,387,0): 236, 170, 110, (104,388,0): 243, 172, 110, (104,389,0): 247, 173, 108, (104,390,0): 252, 177, 110, (104,391,0): 255, 180, 110, (104,392,0): 255, 180, 110, (104,393,0): 255, 180, 108, (104,394,0): 255, 181, 108, (104,395,0): 253, 181, 107, (104,396,0): 247, 179, 104, (104,397,0): 241, 175, 99, (104,398,0): 235, 171, 97, (104,399,0): 228, 170, 96, (104,400,0): 222, 172, 99, (104,401,0): 223, 176, 104, (104,402,0): 228, 181, 109, (104,403,0): 233, 186, 114, (104,404,0): 234, 187, 115, (104,405,0): 231, 187, 114, (104,406,0): 228, 184, 113, (104,407,0): 225, 183, 111, (104,408,0): 221, 179, 107, (104,409,0): 221, 179, 107, (104,410,0): 222, 180, 106, (104,411,0): 223, 184, 109, (104,412,0): 227, 188, 113, (104,413,0): 229, 190, 115, (104,414,0): 228, 189, 114, (104,415,0): 225, 185, 113, (104,416,0): 223, 183, 113, (104,417,0): 225, 185, 115, (104,418,0): 225, 185, 115, (104,419,0): 222, 182, 110, (104,420,0): 216, 176, 104, (104,421,0): 212, 173, 98, (104,422,0): 211, 172, 97, (104,423,0): 211, 172, 95, (104,424,0): 220, 181, 102, (104,425,0): 222, 184, 103, (104,426,0): 225, 187, 106, (104,427,0): 225, 187, 104, (104,428,0): 226, 188, 105, (104,429,0): 229, 191, 106, (104,430,0): 235, 197, 112, (104,431,0): 239, 202, 113, (104,432,0): 240, 205, 113, (104,433,0): 239, 206, 111, (104,434,0): 237, 204, 111, (104,435,0): 232, 201, 108, (104,436,0): 228, 197, 106, (104,437,0): 224, 193, 102, (104,438,0): 220, 189, 99, (104,439,0): 217, 187, 97, (104,440,0): 215, 185, 99, (104,441,0): 210, 183, 96, (104,442,0): 206, 178, 94, (104,443,0): 203, 175, 91, (104,444,0): 201, 173, 90, (104,445,0): 200, 174, 90, (104,446,0): 201, 174, 93, (104,447,0): 204, 175, 97, (104,448,0): 204, 175, 99, (104,449,0): 203, 171, 98, (104,450,0): 198, 165, 94, (104,451,0): 194, 161, 92, (104,452,0): 191, 156, 92, (104,453,0): 185, 149, 87, (104,454,0): 178, 141, 86, (104,455,0): 171, 135, 83, (104,456,0): 166, 132, 86, (104,457,0): 161, 128, 85, (104,458,0): 154, 122, 83, (104,459,0): 146, 118, 79, (104,460,0): 139, 113, 78, (104,461,0): 130, 106, 72, (104,462,0): 120, 97, 65, (104,463,0): 112, 91, 62, (104,464,0): 104, 79, 59, (104,465,0): 102, 76, 61, (104,466,0): 99, 73, 58, (104,467,0): 99, 73, 58, (104,468,0): 101, 73, 59, (104,469,0): 102, 74, 60, (104,470,0): 100, 72, 58, (104,471,0): 98, 70, 56, (104,472,0): 93, 64, 50, (104,473,0): 96, 67, 53, (104,474,0): 100, 68, 55, (104,475,0): 100, 68, 55, (104,476,0): 99, 67, 54, (104,477,0): 100, 68, 55, (104,478,0): 105, 71, 59, (104,479,0): 107, 75, 62, (104,480,0): 109, 83, 68, (104,481,0): 105, 84, 67, (104,482,0): 102, 81, 64, (104,483,0): 99, 78, 61, (104,484,0): 97, 76, 59, (104,485,0): 96, 75, 56, (104,486,0): 96, 75, 56, (104,487,0): 97, 76, 55, (104,488,0): 98, 77, 56, (104,489,0): 99, 78, 57, (104,490,0): 100, 80, 56, (104,491,0): 103, 83, 59, (104,492,0): 106, 86, 61, (104,493,0): 110, 90, 65, (104,494,0): 113, 93, 68, (104,495,0): 115, 95, 68, (104,496,0): 114, 93, 66, (104,497,0): 115, 94, 65, (104,498,0): 116, 95, 66, (104,499,0): 117, 96, 67, (104,500,0): 117, 97, 70, (104,501,0): 117, 97, 70, (104,502,0): 116, 96, 69, (104,503,0): 113, 96, 68, (104,504,0): 113, 96, 70, (104,505,0): 112, 95, 69, (104,506,0): 110, 94, 69, (104,507,0): 109, 93, 68, (104,508,0): 108, 92, 67, (104,509,0): 106, 92, 66, (104,510,0): 105, 90, 67, (104,511,0): 105, 90, 67, (104,512,0): 108, 92, 67, (104,513,0): 107, 91, 66, (104,514,0): 106, 90, 65, (104,515,0): 105, 89, 64, (104,516,0): 106, 90, 65, (104,517,0): 108, 92, 67, (104,518,0): 110, 94, 69, (104,519,0): 111, 95, 70, (104,520,0): 112, 96, 71, (104,521,0): 111, 95, 70, (104,522,0): 109, 93, 68, (104,523,0): 108, 92, 67, (104,524,0): 108, 92, 67, (104,525,0): 108, 92, 67, (104,526,0): 108, 92, 67, (104,527,0): 108, 94, 68, (104,528,0): 107, 93, 67, (104,529,0): 106, 94, 68, (104,530,0): 108, 96, 70, (104,531,0): 110, 98, 72, (104,532,0): 113, 99, 73, (104,533,0): 113, 99, 73, (104,534,0): 113, 99, 73, (104,535,0): 113, 99, 73, (104,536,0): 115, 99, 74, (104,537,0): 115, 99, 74, (104,538,0): 116, 98, 74, (104,539,0): 115, 97, 73, (104,540,0): 115, 97, 73, (104,541,0): 114, 96, 72, (104,542,0): 116, 96, 72, (104,543,0): 115, 95, 71, (104,544,0): 113, 91, 68, (104,545,0): 112, 90, 67, (104,546,0): 110, 88, 65, (104,547,0): 107, 85, 62, (104,548,0): 104, 82, 61, (104,549,0): 102, 80, 59, (104,550,0): 100, 77, 59, (104,551,0): 99, 76, 58, (104,552,0): 100, 77, 59, (104,553,0): 101, 78, 60, (104,554,0): 102, 79, 63, (104,555,0): 103, 80, 64, (104,556,0): 103, 80, 66, (104,557,0): 101, 78, 64, (104,558,0): 99, 76, 62, (104,559,0): 98, 75, 61, (104,560,0): 102, 78, 66, (104,561,0): 101, 77, 65, (104,562,0): 101, 77, 65, (104,563,0): 100, 76, 64, (104,564,0): 98, 76, 65, (104,565,0): 97, 75, 64, (104,566,0): 97, 75, 64, (104,567,0): 96, 74, 63, (104,568,0): 94, 74, 65, (104,569,0): 93, 73, 64, (104,570,0): 90, 71, 64, (104,571,0): 88, 69, 62, (104,572,0): 86, 67, 60, (104,573,0): 83, 64, 57, (104,574,0): 80, 63, 56, (104,575,0): 79, 62, 55, (104,576,0): 83, 64, 60, (104,577,0): 83, 64, 60, (104,578,0): 83, 64, 60, (104,579,0): 82, 63, 59, (104,580,0): 82, 63, 59, (104,581,0): 82, 63, 59, (104,582,0): 82, 63, 59, (104,583,0): 82, 63, 59, (104,584,0): 77, 58, 54, (104,585,0): 77, 58, 54, (104,586,0): 76, 57, 53, (104,587,0): 74, 55, 51, (104,588,0): 73, 54, 50, (104,589,0): 72, 53, 49, (104,590,0): 71, 52, 48, (104,591,0): 69, 51, 47, (104,592,0): 68, 50, 48, (104,593,0): 67, 52, 49, (104,594,0): 69, 54, 51, (104,595,0): 69, 54, 51, (104,596,0): 69, 54, 51, (104,597,0): 67, 52, 49, (104,598,0): 65, 50, 47, (104,599,0): 64, 49, 46, (105,0,0): 28, 28, 52, (105,1,0): 28, 29, 50, (105,2,0): 27, 28, 49, (105,3,0): 28, 26, 47, (105,4,0): 30, 27, 46, (105,5,0): 32, 28, 45, (105,6,0): 35, 28, 46, (105,7,0): 37, 28, 45, (105,8,0): 46, 35, 51, (105,9,0): 49, 35, 50, (105,10,0): 53, 36, 52, (105,11,0): 56, 38, 52, (105,12,0): 58, 38, 50, (105,13,0): 57, 35, 47, (105,14,0): 55, 33, 45, (105,15,0): 54, 31, 41, (105,16,0): 55, 32, 42, (105,17,0): 53, 30, 40, (105,18,0): 51, 28, 38, (105,19,0): 48, 25, 35, (105,20,0): 48, 22, 33, (105,21,0): 47, 21, 32, (105,22,0): 46, 20, 31, (105,23,0): 46, 20, 31, (105,24,0): 48, 22, 33, (105,25,0): 50, 24, 35, (105,26,0): 54, 26, 38, (105,27,0): 56, 30, 41, (105,28,0): 58, 30, 42, (105,29,0): 57, 29, 41, (105,30,0): 56, 28, 40, (105,31,0): 54, 26, 38, (105,32,0): 54, 27, 42, (105,33,0): 51, 27, 41, (105,34,0): 49, 25, 41, (105,35,0): 47, 23, 39, (105,36,0): 46, 22, 38, (105,37,0): 45, 22, 38, (105,38,0): 45, 22, 40, (105,39,0): 44, 23, 40, (105,40,0): 42, 23, 42, (105,41,0): 42, 23, 42, (105,42,0): 41, 24, 42, (105,43,0): 41, 24, 42, (105,44,0): 38, 23, 42, (105,45,0): 38, 23, 42, (105,46,0): 38, 23, 42, (105,47,0): 37, 22, 43, (105,48,0): 33, 19, 42, (105,49,0): 32, 18, 41, (105,50,0): 31, 19, 41, (105,51,0): 29, 17, 39, (105,52,0): 28, 16, 38, (105,53,0): 27, 15, 37, (105,54,0): 24, 15, 36, (105,55,0): 23, 14, 35, (105,56,0): 25, 17, 38, (105,57,0): 25, 17, 38, (105,58,0): 25, 17, 38, (105,59,0): 25, 17, 38, (105,60,0): 23, 18, 38, (105,61,0): 23, 18, 38, (105,62,0): 23, 18, 38, (105,63,0): 23, 18, 38, (105,64,0): 26, 19, 37, (105,65,0): 26, 19, 37, (105,66,0): 26, 19, 37, (105,67,0): 26, 19, 37, (105,68,0): 26, 19, 37, (105,69,0): 26, 19, 37, (105,70,0): 26, 19, 37, (105,71,0): 26, 19, 37, (105,72,0): 26, 19, 37, (105,73,0): 25, 18, 36, (105,74,0): 25, 18, 36, (105,75,0): 24, 17, 35, (105,76,0): 24, 17, 35, (105,77,0): 23, 16, 34, (105,78,0): 23, 16, 34, (105,79,0): 23, 16, 34, (105,80,0): 27, 15, 35, (105,81,0): 27, 15, 35, (105,82,0): 24, 15, 34, (105,83,0): 24, 15, 34, (105,84,0): 23, 14, 33, (105,85,0): 23, 14, 33, (105,86,0): 22, 15, 33, (105,87,0): 21, 14, 32, (105,88,0): 18, 14, 31, (105,89,0): 18, 14, 31, (105,90,0): 18, 14, 31, (105,91,0): 18, 14, 31, (105,92,0): 17, 14, 31, (105,93,0): 17, 14, 31, (105,94,0): 17, 14, 31, (105,95,0): 17, 14, 31, (105,96,0): 20, 13, 31, (105,97,0): 20, 13, 31, (105,98,0): 20, 13, 31, (105,99,0): 20, 13, 31, (105,100,0): 20, 13, 31, (105,101,0): 20, 13, 31, (105,102,0): 20, 13, 31, (105,103,0): 20, 13, 31, (105,104,0): 22, 15, 33, (105,105,0): 21, 14, 32, (105,106,0): 20, 13, 31, (105,107,0): 19, 12, 30, (105,108,0): 19, 12, 30, (105,109,0): 20, 13, 31, (105,110,0): 21, 14, 32, (105,111,0): 22, 15, 33, (105,112,0): 21, 17, 34, (105,113,0): 21, 17, 34, (105,114,0): 21, 17, 34, (105,115,0): 21, 17, 34, (105,116,0): 21, 17, 34, (105,117,0): 20, 16, 33, (105,118,0): 20, 16, 33, (105,119,0): 20, 16, 33, (105,120,0): 21, 14, 32, (105,121,0): 22, 15, 33, (105,122,0): 23, 16, 34, (105,123,0): 24, 17, 35, (105,124,0): 25, 18, 36, (105,125,0): 25, 18, 36, (105,126,0): 24, 17, 35, (105,127,0): 24, 15, 34, (105,128,0): 27, 18, 37, (105,129,0): 27, 18, 37, (105,130,0): 29, 17, 37, (105,131,0): 29, 18, 35, (105,132,0): 29, 18, 35, (105,133,0): 29, 18, 35, (105,134,0): 30, 17, 35, (105,135,0): 30, 17, 34, (105,136,0): 29, 15, 32, (105,137,0): 30, 16, 31, (105,138,0): 32, 18, 33, (105,139,0): 33, 19, 34, (105,140,0): 36, 19, 35, (105,141,0): 36, 20, 33, (105,142,0): 36, 20, 33, (105,143,0): 35, 19, 32, (105,144,0): 35, 18, 34, (105,145,0): 35, 18, 34, (105,146,0): 35, 18, 34, (105,147,0): 35, 18, 34, (105,148,0): 35, 18, 34, (105,149,0): 35, 18, 34, (105,150,0): 35, 18, 34, (105,151,0): 35, 18, 34, (105,152,0): 35, 18, 34, (105,153,0): 35, 18, 34, (105,154,0): 36, 19, 35, (105,155,0): 36, 19, 35, (105,156,0): 37, 20, 36, (105,157,0): 37, 20, 36, (105,158,0): 37, 20, 36, (105,159,0): 38, 22, 35, (105,160,0): 38, 22, 33, (105,161,0): 38, 22, 33, (105,162,0): 38, 22, 33, (105,163,0): 38, 22, 33, (105,164,0): 38, 22, 33, (105,165,0): 38, 22, 33, (105,166,0): 38, 22, 33, (105,167,0): 38, 22, 33, (105,168,0): 40, 24, 35, (105,169,0): 40, 24, 35, (105,170,0): 40, 24, 35, (105,171,0): 40, 24, 35, (105,172,0): 40, 24, 35, (105,173,0): 40, 24, 35, (105,174,0): 40, 24, 35, (105,175,0): 40, 24, 35, (105,176,0): 37, 24, 34, (105,177,0): 36, 24, 34, (105,178,0): 36, 24, 34, (105,179,0): 36, 24, 34, (105,180,0): 36, 24, 34, (105,181,0): 36, 24, 34, (105,182,0): 36, 24, 34, (105,183,0): 36, 24, 34, (105,184,0): 35, 23, 33, (105,185,0): 35, 23, 33, (105,186,0): 36, 24, 34, (105,187,0): 36, 24, 34, (105,188,0): 37, 25, 35, (105,189,0): 37, 25, 35, (105,190,0): 37, 25, 35, (105,191,0): 38, 26, 36, (105,192,0): 45, 29, 40, (105,193,0): 45, 29, 40, (105,194,0): 45, 29, 40, (105,195,0): 46, 30, 41, (105,196,0): 46, 30, 40, (105,197,0): 47, 31, 41, (105,198,0): 48, 31, 41, (105,199,0): 48, 31, 39, (105,200,0): 53, 33, 42, (105,201,0): 53, 34, 40, (105,202,0): 54, 33, 40, (105,203,0): 54, 33, 40, (105,204,0): 54, 33, 40, (105,205,0): 54, 33, 40, (105,206,0): 54, 33, 38, (105,207,0): 55, 32, 38, (105,208,0): 59, 33, 42, (105,209,0): 59, 33, 42, (105,210,0): 59, 33, 42, (105,211,0): 58, 33, 39, (105,212,0): 58, 33, 39, (105,213,0): 57, 32, 38, (105,214,0): 57, 32, 36, (105,215,0): 57, 32, 36, (105,216,0): 57, 32, 36, (105,217,0): 57, 32, 35, (105,218,0): 57, 32, 35, (105,219,0): 57, 32, 35, (105,220,0): 57, 33, 33, (105,221,0): 57, 33, 33, (105,222,0): 57, 33, 33, (105,223,0): 57, 33, 33, (105,224,0): 53, 31, 33, (105,225,0): 53, 31, 33, (105,226,0): 53, 31, 33, (105,227,0): 53, 31, 33, (105,228,0): 53, 31, 33, (105,229,0): 53, 31, 33, (105,230,0): 53, 31, 33, (105,231,0): 53, 31, 33, (105,232,0): 54, 32, 34, (105,233,0): 54, 32, 34, (105,234,0): 54, 32, 34, (105,235,0): 54, 32, 34, (105,236,0): 54, 32, 34, (105,237,0): 54, 32, 34, (105,238,0): 54, 32, 34, (105,239,0): 56, 32, 32, (105,240,0): 60, 32, 31, (105,241,0): 61, 31, 31, (105,242,0): 61, 31, 31, (105,243,0): 61, 31, 31, (105,244,0): 61, 31, 31, (105,245,0): 61, 31, 31, (105,246,0): 61, 31, 31, (105,247,0): 61, 31, 31, (105,248,0): 61, 31, 31, (105,249,0): 61, 31, 31, (105,250,0): 61, 31, 31, (105,251,0): 62, 32, 32, (105,252,0): 62, 32, 32, (105,253,0): 63, 33, 33, (105,254,0): 63, 33, 33, (105,255,0): 63, 33, 33, (105,256,0): 61, 33, 32, (105,257,0): 61, 33, 32, (105,258,0): 63, 33, 33, (105,259,0): 63, 33, 31, (105,260,0): 64, 34, 32, (105,261,0): 64, 34, 32, (105,262,0): 66, 35, 33, (105,263,0): 66, 35, 32, (105,264,0): 70, 36, 34, (105,265,0): 70, 37, 32, (105,266,0): 71, 38, 33, (105,267,0): 72, 39, 34, (105,268,0): 74, 39, 35, (105,269,0): 75, 40, 34, (105,270,0): 76, 41, 35, (105,271,0): 76, 41, 35, (105,272,0): 78, 43, 39, (105,273,0): 77, 42, 38, (105,274,0): 77, 42, 36, (105,275,0): 76, 41, 35, (105,276,0): 77, 42, 36, (105,277,0): 78, 43, 37, (105,278,0): 80, 46, 37, (105,279,0): 81, 47, 38, (105,280,0): 82, 48, 38, (105,281,0): 83, 49, 39, (105,282,0): 83, 49, 39, (105,283,0): 83, 49, 39, (105,284,0): 84, 50, 38, (105,285,0): 84, 50, 38, (105,286,0): 85, 51, 39, (105,287,0): 84, 52, 39, (105,288,0): 84, 54, 44, (105,289,0): 83, 55, 44, (105,290,0): 85, 55, 44, (105,291,0): 86, 57, 43, (105,292,0): 90, 58, 43, (105,293,0): 94, 61, 44, (105,294,0): 98, 62, 46, (105,295,0): 101, 64, 48, (105,296,0): 102, 63, 46, (105,297,0): 108, 67, 47, (105,298,0): 114, 72, 48, (105,299,0): 122, 79, 47, (105,300,0): 129, 85, 46, (105,301,0): 138, 94, 45, (105,302,0): 147, 104, 49, (105,303,0): 154, 113, 51, (105,304,0): 159, 115, 50, (105,305,0): 160, 117, 48, (105,306,0): 162, 119, 50, (105,307,0): 162, 122, 53, (105,308,0): 163, 123, 54, (105,309,0): 162, 123, 54, (105,310,0): 162, 123, 56, (105,311,0): 160, 123, 55, (105,312,0): 160, 125, 57, (105,313,0): 160, 127, 60, (105,314,0): 161, 128, 61, (105,315,0): 160, 129, 62, (105,316,0): 161, 130, 65, (105,317,0): 161, 132, 66, (105,318,0): 162, 133, 67, (105,319,0): 161, 133, 68, (105,320,0): 163, 133, 71, (105,321,0): 163, 133, 73, (105,322,0): 164, 134, 74, (105,323,0): 165, 135, 75, (105,324,0): 165, 135, 75, (105,325,0): 163, 134, 76, (105,326,0): 162, 133, 75, (105,327,0): 161, 132, 74, (105,328,0): 157, 131, 74, (105,329,0): 157, 131, 74, (105,330,0): 158, 132, 75, (105,331,0): 158, 133, 77, (105,332,0): 160, 135, 79, (105,333,0): 161, 136, 80, (105,334,0): 160, 138, 81, (105,335,0): 160, 137, 83, (105,336,0): 159, 137, 87, (105,337,0): 160, 138, 89, (105,338,0): 161, 139, 90, (105,339,0): 161, 139, 90, (105,340,0): 161, 139, 92, (105,341,0): 160, 138, 91, (105,342,0): 158, 136, 89, (105,343,0): 157, 135, 88, (105,344,0): 159, 136, 92, (105,345,0): 159, 136, 92, (105,346,0): 159, 136, 94, (105,347,0): 159, 136, 94, (105,348,0): 159, 136, 94, (105,349,0): 159, 136, 94, (105,350,0): 159, 136, 95, (105,351,0): 159, 136, 95, (105,352,0): 160, 136, 98, (105,353,0): 160, 136, 100, (105,354,0): 163, 137, 100, (105,355,0): 164, 138, 101, (105,356,0): 168, 140, 103, (105,357,0): 169, 141, 104, (105,358,0): 174, 142, 104, (105,359,0): 175, 141, 103, (105,360,0): 174, 139, 101, (105,361,0): 177, 139, 100, (105,362,0): 178, 140, 101, (105,363,0): 181, 142, 101, (105,364,0): 186, 144, 104, (105,365,0): 190, 148, 106, (105,366,0): 193, 151, 111, (105,367,0): 197, 152, 111, (105,368,0): 201, 152, 111, (105,369,0): 209, 155, 111, (105,370,0): 220, 159, 114, (105,371,0): 227, 163, 115, (105,372,0): 234, 164, 113, (105,373,0): 235, 162, 109, (105,374,0): 234, 158, 106, (105,375,0): 231, 155, 103, (105,376,0): 229, 156, 103, (105,377,0): 228, 157, 105, (105,378,0): 228, 157, 105, (105,379,0): 226, 157, 102, (105,380,0): 227, 156, 100, (105,381,0): 226, 156, 96, (105,382,0): 226, 155, 91, (105,383,0): 225, 155, 93, (105,384,0): 218, 156, 97, (105,385,0): 222, 161, 104, (105,386,0): 229, 167, 108, (105,387,0): 237, 171, 111, (105,388,0): 242, 172, 110, (105,389,0): 246, 175, 109, (105,390,0): 251, 178, 110, (105,391,0): 255, 180, 112, (105,392,0): 255, 183, 112, (105,393,0): 255, 183, 110, (105,394,0): 255, 184, 110, (105,395,0): 251, 183, 108, (105,396,0): 246, 180, 104, (105,397,0): 239, 177, 102, (105,398,0): 234, 172, 97, (105,399,0): 227, 171, 96, (105,400,0): 222, 172, 99, (105,401,0): 223, 176, 104, (105,402,0): 228, 181, 109, (105,403,0): 230, 186, 113, (105,404,0): 232, 188, 115, (105,405,0): 230, 188, 114, (105,406,0): 227, 185, 113, (105,407,0): 224, 184, 112, (105,408,0): 221, 181, 109, (105,409,0): 219, 181, 108, (105,410,0): 220, 182, 109, (105,411,0): 225, 186, 111, (105,412,0): 229, 190, 115, (105,413,0): 231, 192, 117, (105,414,0): 230, 191, 116, (105,415,0): 228, 189, 114, (105,416,0): 227, 187, 115, (105,417,0): 228, 188, 118, (105,418,0): 227, 187, 115, (105,419,0): 223, 183, 111, (105,420,0): 218, 179, 104, (105,421,0): 215, 176, 101, (105,422,0): 215, 176, 99, (105,423,0): 216, 177, 98, (105,424,0): 222, 184, 103, (105,425,0): 223, 185, 104, (105,426,0): 224, 186, 103, (105,427,0): 223, 185, 100, (105,428,0): 223, 185, 100, (105,429,0): 226, 188, 103, (105,430,0): 232, 195, 107, (105,431,0): 236, 201, 111, (105,432,0): 236, 203, 110, (105,433,0): 236, 203, 108, (105,434,0): 234, 203, 110, (105,435,0): 232, 201, 108, (105,436,0): 229, 198, 107, (105,437,0): 225, 194, 103, (105,438,0): 219, 189, 99, (105,439,0): 217, 187, 97, (105,440,0): 214, 184, 98, (105,441,0): 210, 183, 96, (105,442,0): 206, 178, 94, (105,443,0): 202, 174, 90, (105,444,0): 199, 173, 89, (105,445,0): 199, 173, 89, (105,446,0): 200, 173, 92, (105,447,0): 202, 173, 93, (105,448,0): 203, 171, 94, (105,449,0): 201, 169, 94, (105,450,0): 197, 165, 92, (105,451,0): 195, 162, 93, (105,452,0): 192, 157, 91, (105,453,0): 186, 150, 88, (105,454,0): 178, 141, 86, (105,455,0): 170, 134, 82, (105,456,0): 164, 130, 84, (105,457,0): 159, 126, 83, (105,458,0): 153, 121, 82, (105,459,0): 145, 117, 80, (105,460,0): 138, 112, 79, (105,461,0): 129, 106, 74, (105,462,0): 119, 98, 67, (105,463,0): 113, 92, 65, (105,464,0): 106, 81, 61, (105,465,0): 102, 76, 61, (105,466,0): 98, 72, 57, (105,467,0): 97, 71, 56, (105,468,0): 99, 71, 57, (105,469,0): 100, 72, 58, (105,470,0): 98, 70, 56, (105,471,0): 97, 69, 55, (105,472,0): 93, 64, 50, (105,473,0): 96, 67, 53, (105,474,0): 102, 70, 57, (105,475,0): 102, 70, 57, (105,476,0): 101, 69, 56, (105,477,0): 102, 70, 57, (105,478,0): 105, 71, 59, (105,479,0): 105, 76, 62, (105,480,0): 106, 80, 67, (105,481,0): 104, 82, 68, (105,482,0): 104, 82, 68, (105,483,0): 104, 83, 66, (105,484,0): 103, 82, 65, (105,485,0): 101, 80, 63, (105,486,0): 100, 79, 60, (105,487,0): 99, 78, 57, (105,488,0): 99, 78, 57, (105,489,0): 100, 80, 56, (105,490,0): 101, 81, 57, (105,491,0): 103, 83, 58, (105,492,0): 106, 86, 61, (105,493,0): 109, 89, 62, (105,494,0): 111, 91, 66, (105,495,0): 112, 92, 65, (105,496,0): 114, 93, 64, (105,497,0): 115, 94, 65, (105,498,0): 117, 96, 67, (105,499,0): 117, 98, 68, (105,500,0): 118, 98, 71, (105,501,0): 117, 97, 70, (105,502,0): 115, 98, 70, (105,503,0): 114, 97, 69, (105,504,0): 114, 97, 71, (105,505,0): 113, 97, 71, (105,506,0): 112, 96, 71, (105,507,0): 111, 95, 70, (105,508,0): 109, 95, 69, (105,509,0): 108, 94, 68, (105,510,0): 107, 92, 69, (105,511,0): 107, 92, 69, (105,512,0): 108, 92, 67, (105,513,0): 107, 91, 66, (105,514,0): 106, 90, 65, (105,515,0): 106, 90, 65, (105,516,0): 106, 90, 65, (105,517,0): 108, 92, 67, (105,518,0): 109, 93, 68, (105,519,0): 111, 95, 70, (105,520,0): 112, 96, 71, (105,521,0): 111, 95, 70, (105,522,0): 110, 94, 69, (105,523,0): 108, 92, 67, (105,524,0): 108, 92, 67, (105,525,0): 108, 92, 67, (105,526,0): 109, 93, 68, (105,527,0): 108, 94, 68, (105,528,0): 108, 94, 68, (105,529,0): 107, 95, 69, (105,530,0): 109, 97, 71, (105,531,0): 111, 99, 73, (105,532,0): 114, 100, 74, (105,533,0): 114, 100, 74, (105,534,0): 114, 100, 74, (105,535,0): 114, 100, 74, (105,536,0): 117, 101, 76, (105,537,0): 117, 101, 76, (105,538,0): 117, 99, 75, (105,539,0): 116, 98, 74, (105,540,0): 115, 97, 73, (105,541,0): 114, 96, 72, (105,542,0): 116, 96, 72, (105,543,0): 115, 95, 71, (105,544,0): 112, 90, 67, (105,545,0): 111, 89, 66, (105,546,0): 109, 87, 64, (105,547,0): 107, 85, 62, (105,548,0): 104, 82, 61, (105,549,0): 102, 80, 59, (105,550,0): 100, 77, 59, (105,551,0): 99, 76, 58, (105,552,0): 99, 76, 58, (105,553,0): 100, 77, 59, (105,554,0): 102, 79, 63, (105,555,0): 102, 79, 63, (105,556,0): 102, 79, 65, (105,557,0): 101, 78, 64, (105,558,0): 100, 77, 63, (105,559,0): 99, 76, 62, (105,560,0): 101, 77, 65, (105,561,0): 101, 77, 65, (105,562,0): 100, 76, 64, (105,563,0): 100, 76, 64, (105,564,0): 99, 77, 66, (105,565,0): 98, 76, 65, (105,566,0): 98, 76, 65, (105,567,0): 98, 76, 65, (105,568,0): 95, 75, 66, (105,569,0): 94, 74, 65, (105,570,0): 91, 72, 65, (105,571,0): 89, 70, 63, (105,572,0): 87, 68, 61, (105,573,0): 84, 65, 58, (105,574,0): 82, 65, 58, (105,575,0): 81, 64, 57, (105,576,0): 84, 65, 61, (105,577,0): 84, 65, 61, (105,578,0): 84, 65, 61, (105,579,0): 83, 64, 60, (105,580,0): 83, 64, 60, (105,581,0): 83, 64, 60, (105,582,0): 83, 64, 60, (105,583,0): 83, 64, 60, (105,584,0): 80, 61, 57, (105,585,0): 79, 60, 56, (105,586,0): 78, 59, 55, (105,587,0): 76, 57, 53, (105,588,0): 74, 55, 51, (105,589,0): 73, 54, 50, (105,590,0): 71, 52, 48, (105,591,0): 70, 52, 48, (105,592,0): 68, 50, 48, (105,593,0): 67, 52, 49, (105,594,0): 68, 53, 50, (105,595,0): 69, 54, 51, (105,596,0): 68, 53, 50, (105,597,0): 67, 52, 49, (105,598,0): 65, 50, 47, (105,599,0): 64, 49, 46, (106,0,0): 30, 28, 50, (106,1,0): 29, 27, 48, (106,2,0): 29, 27, 48, (106,3,0): 30, 27, 46, (106,4,0): 30, 27, 46, (106,5,0): 33, 29, 46, (106,6,0): 36, 29, 47, (106,7,0): 38, 29, 46, (106,8,0): 49, 38, 54, (106,9,0): 50, 36, 51, (106,10,0): 51, 34, 50, (106,11,0): 50, 32, 46, (106,12,0): 50, 29, 44, (106,13,0): 48, 28, 40, (106,14,0): 46, 26, 38, (106,15,0): 45, 25, 36, (106,16,0): 47, 27, 38, (106,17,0): 46, 26, 37, (106,18,0): 44, 24, 35, (106,19,0): 42, 22, 33, (106,20,0): 41, 21, 32, (106,21,0): 40, 20, 31, (106,22,0): 40, 20, 31, (106,23,0): 41, 21, 32, (106,24,0): 41, 21, 32, (106,25,0): 43, 23, 34, (106,26,0): 47, 25, 37, (106,27,0): 48, 28, 39, (106,28,0): 50, 28, 40, (106,29,0): 50, 28, 40, (106,30,0): 49, 27, 39, (106,31,0): 48, 26, 39, (106,32,0): 48, 26, 39, (106,33,0): 48, 25, 41, (106,34,0): 48, 25, 41, (106,35,0): 48, 25, 41, (106,36,0): 46, 23, 41, (106,37,0): 44, 23, 40, (106,38,0): 42, 21, 40, (106,39,0): 39, 20, 39, (106,40,0): 41, 22, 41, (106,41,0): 40, 23, 41, (106,42,0): 39, 22, 41, (106,43,0): 39, 22, 41, (106,44,0): 36, 21, 42, (106,45,0): 36, 21, 42, (106,46,0): 35, 20, 41, (106,47,0): 35, 20, 41, (106,48,0): 32, 18, 41, (106,49,0): 30, 18, 40, (106,50,0): 30, 18, 40, (106,51,0): 29, 17, 39, (106,52,0): 26, 17, 38, (106,53,0): 25, 16, 37, (106,54,0): 24, 15, 36, (106,55,0): 24, 15, 36, (106,56,0): 25, 17, 38, (106,57,0): 25, 17, 38, (106,58,0): 23, 18, 38, (106,59,0): 23, 18, 38, (106,60,0): 23, 18, 38, (106,61,0): 23, 18, 38, (106,62,0): 22, 19, 38, (106,63,0): 23, 18, 38, (106,64,0): 25, 18, 36, (106,65,0): 25, 18, 36, (106,66,0): 25, 18, 36, (106,67,0): 25, 18, 36, (106,68,0): 25, 18, 36, (106,69,0): 25, 18, 36, (106,70,0): 25, 18, 36, (106,71,0): 25, 18, 36, (106,72,0): 25, 18, 36, (106,73,0): 25, 18, 36, (106,74,0): 25, 18, 36, (106,75,0): 24, 17, 35, (106,76,0): 24, 17, 35, (106,77,0): 23, 16, 34, (106,78,0): 23, 16, 34, (106,79,0): 22, 15, 33, (106,80,0): 27, 15, 35, (106,81,0): 26, 14, 34, (106,82,0): 24, 15, 34, (106,83,0): 24, 15, 34, (106,84,0): 23, 14, 33, (106,85,0): 22, 13, 32, (106,86,0): 21, 14, 32, (106,87,0): 21, 14, 32, (106,88,0): 17, 13, 30, (106,89,0): 17, 13, 30, (106,90,0): 17, 13, 30, (106,91,0): 17, 13, 30, (106,92,0): 16, 13, 30, (106,93,0): 16, 13, 30, (106,94,0): 16, 13, 30, (106,95,0): 16, 13, 30, (106,96,0): 19, 12, 30, (106,97,0): 19, 12, 30, (106,98,0): 19, 12, 30, (106,99,0): 19, 12, 30, (106,100,0): 19, 12, 30, (106,101,0): 19, 12, 30, (106,102,0): 19, 12, 30, (106,103,0): 19, 12, 30, (106,104,0): 20, 13, 31, (106,105,0): 19, 12, 30, (106,106,0): 18, 11, 29, (106,107,0): 17, 10, 28, (106,108,0): 17, 10, 28, (106,109,0): 18, 11, 29, (106,110,0): 19, 12, 30, (106,111,0): 20, 13, 31, (106,112,0): 20, 16, 33, (106,113,0): 19, 16, 33, (106,114,0): 19, 16, 33, (106,115,0): 19, 16, 33, (106,116,0): 20, 16, 33, (106,117,0): 20, 16, 33, (106,118,0): 20, 16, 33, (106,119,0): 20, 16, 33, (106,120,0): 21, 14, 32, (106,121,0): 22, 15, 33, (106,122,0): 24, 15, 34, (106,123,0): 26, 17, 36, (106,124,0): 26, 17, 36, (106,125,0): 26, 17, 36, (106,126,0): 25, 16, 35, (106,127,0): 27, 15, 35, (106,128,0): 30, 19, 36, (106,129,0): 30, 19, 36, (106,130,0): 30, 19, 36, (106,131,0): 30, 19, 36, (106,132,0): 31, 18, 36, (106,133,0): 31, 18, 35, (106,134,0): 32, 18, 35, (106,135,0): 32, 18, 35, (106,136,0): 30, 16, 33, (106,137,0): 31, 17, 32, (106,138,0): 34, 17, 33, (106,139,0): 36, 20, 33, (106,140,0): 37, 19, 33, (106,141,0): 37, 19, 33, (106,142,0): 36, 18, 32, (106,143,0): 35, 17, 31, (106,144,0): 36, 18, 34, (106,145,0): 36, 18, 34, (106,146,0): 36, 18, 34, (106,147,0): 36, 18, 34, (106,148,0): 36, 18, 34, (106,149,0): 36, 18, 34, (106,150,0): 36, 18, 34, (106,151,0): 36, 18, 34, (106,152,0): 36, 18, 34, (106,153,0): 37, 19, 35, (106,154,0): 37, 19, 35, (106,155,0): 37, 19, 35, (106,156,0): 38, 20, 36, (106,157,0): 39, 21, 37, (106,158,0): 39, 21, 37, (106,159,0): 39, 21, 35, (106,160,0): 39, 21, 33, (106,161,0): 39, 22, 32, (106,162,0): 39, 22, 32, (106,163,0): 39, 22, 32, (106,164,0): 39, 22, 32, (106,165,0): 39, 22, 32, (106,166,0): 39, 22, 32, (106,167,0): 39, 22, 32, (106,168,0): 41, 24, 34, (106,169,0): 41, 24, 34, (106,170,0): 41, 24, 34, (106,171,0): 41, 24, 34, (106,172,0): 41, 24, 34, (106,173,0): 41, 24, 34, (106,174,0): 41, 24, 34, (106,175,0): 40, 24, 34, (106,176,0): 37, 24, 33, (106,177,0): 36, 25, 33, (106,178,0): 36, 25, 33, (106,179,0): 36, 25, 33, (106,180,0): 36, 25, 33, (106,181,0): 36, 25, 33, (106,182,0): 36, 25, 33, (106,183,0): 36, 25, 33, (106,184,0): 35, 24, 32, (106,185,0): 36, 25, 33, (106,186,0): 36, 25, 33, (106,187,0): 36, 25, 33, (106,188,0): 37, 26, 34, (106,189,0): 38, 27, 35, (106,190,0): 38, 27, 35, (106,191,0): 38, 27, 35, (106,192,0): 46, 30, 40, (106,193,0): 46, 30, 40, (106,194,0): 47, 30, 40, (106,195,0): 48, 31, 41, (106,196,0): 48, 31, 41, (106,197,0): 49, 32, 42, (106,198,0): 51, 31, 40, (106,199,0): 51, 31, 40, (106,200,0): 56, 35, 44, (106,201,0): 56, 35, 42, (106,202,0): 56, 35, 42, (106,203,0): 56, 35, 40, (106,204,0): 57, 34, 40, (106,205,0): 57, 34, 40, (106,206,0): 57, 34, 40, (106,207,0): 57, 34, 40, (106,208,0): 59, 34, 40, (106,209,0): 59, 34, 40, (106,210,0): 59, 34, 40, (106,211,0): 58, 33, 39, (106,212,0): 58, 33, 39, (106,213,0): 57, 32, 36, (106,214,0): 57, 32, 36, (106,215,0): 57, 32, 36, (106,216,0): 57, 32, 35, (106,217,0): 57, 32, 35, (106,218,0): 57, 32, 35, (106,219,0): 57, 33, 33, (106,220,0): 57, 33, 33, (106,221,0): 57, 33, 33, (106,222,0): 57, 33, 31, (106,223,0): 57, 33, 33, (106,224,0): 53, 31, 33, (106,225,0): 53, 31, 33, (106,226,0): 53, 31, 33, (106,227,0): 53, 31, 33, (106,228,0): 53, 31, 33, (106,229,0): 53, 31, 33, (106,230,0): 53, 31, 33, (106,231,0): 53, 31, 33, (106,232,0): 53, 31, 33, (106,233,0): 53, 31, 33, (106,234,0): 53, 31, 33, (106,235,0): 53, 31, 33, (106,236,0): 53, 31, 33, (106,237,0): 53, 31, 33, (106,238,0): 53, 31, 33, (106,239,0): 55, 31, 31, (106,240,0): 60, 32, 31, (106,241,0): 61, 31, 29, (106,242,0): 61, 31, 29, (106,243,0): 61, 31, 29, (106,244,0): 61, 31, 29, (106,245,0): 61, 31, 29, (106,246,0): 61, 31, 29, (106,247,0): 61, 31, 29, (106,248,0): 61, 31, 29, (106,249,0): 61, 31, 29, (106,250,0): 61, 31, 29, (106,251,0): 62, 32, 30, (106,252,0): 62, 32, 30, (106,253,0): 63, 33, 31, (106,254,0): 63, 33, 31, (106,255,0): 63, 33, 31, (106,256,0): 61, 33, 30, (106,257,0): 61, 33, 30, (106,258,0): 63, 33, 31, (106,259,0): 63, 33, 31, (106,260,0): 64, 34, 32, (106,261,0): 64, 35, 31, (106,262,0): 66, 35, 32, (106,263,0): 66, 35, 32, (106,264,0): 70, 36, 34, (106,265,0): 70, 37, 32, (106,266,0): 71, 38, 33, (106,267,0): 72, 39, 32, (106,268,0): 74, 39, 33, (106,269,0): 75, 40, 34, (106,270,0): 76, 41, 35, (106,271,0): 76, 42, 33, (106,272,0): 78, 43, 37, (106,273,0): 77, 42, 36, (106,274,0): 77, 42, 36, (106,275,0): 76, 41, 35, (106,276,0): 77, 43, 34, (106,277,0): 78, 44, 35, (106,278,0): 80, 46, 37, (106,279,0): 81, 47, 38, (106,280,0): 82, 48, 38, (106,281,0): 82, 48, 38, (106,282,0): 82, 48, 36, (106,283,0): 83, 49, 37, (106,284,0): 84, 50, 38, (106,285,0): 84, 50, 38, (106,286,0): 84, 51, 36, (106,287,0): 84, 52, 39, (106,288,0): 83, 55, 44, (106,289,0): 82, 55, 44, (106,290,0): 83, 55, 43, (106,291,0): 85, 56, 42, (106,292,0): 90, 58, 43, (106,293,0): 93, 60, 45, (106,294,0): 98, 62, 48, (106,295,0): 101, 64, 48, (106,296,0): 102, 63, 46, (106,297,0): 108, 67, 47, (106,298,0): 114, 72, 48, (106,299,0): 121, 78, 46, (106,300,0): 128, 84, 45, (106,301,0): 136, 94, 46, (106,302,0): 147, 104, 51, (106,303,0): 154, 113, 51, (106,304,0): 162, 119, 51, (106,305,0): 163, 121, 49, (106,306,0): 165, 123, 51, (106,307,0): 165, 125, 55, (106,308,0): 166, 126, 56, (106,309,0): 165, 127, 56, (106,310,0): 165, 126, 57, (106,311,0): 164, 127, 57, (106,312,0): 164, 130, 59, (106,313,0): 163, 130, 61, (106,314,0): 164, 131, 62, (106,315,0): 163, 133, 63, (106,316,0): 164, 133, 66, (106,317,0): 164, 135, 67, (106,318,0): 165, 136, 68, (106,319,0): 165, 136, 68, (106,320,0): 165, 134, 70, (106,321,0): 166, 134, 73, (106,322,0): 167, 135, 74, (106,323,0): 167, 137, 75, (106,324,0): 167, 137, 75, (106,325,0): 166, 136, 76, (106,326,0): 164, 135, 75, (106,327,0): 163, 134, 74, (106,328,0): 163, 134, 76, (106,329,0): 161, 135, 76, (106,330,0): 162, 136, 77, (106,331,0): 163, 137, 80, (106,332,0): 163, 138, 81, (106,333,0): 164, 139, 82, (106,334,0): 164, 139, 82, (106,335,0): 163, 141, 84, (106,336,0): 160, 139, 86, (106,337,0): 160, 138, 88, (106,338,0): 161, 139, 89, (106,339,0): 161, 139, 89, (106,340,0): 161, 139, 90, (106,341,0): 159, 137, 88, (106,342,0): 158, 136, 89, (106,343,0): 157, 135, 88, (106,344,0): 158, 136, 89, (106,345,0): 158, 136, 89, (106,346,0): 158, 135, 91, (106,347,0): 158, 135, 91, (106,348,0): 158, 135, 93, (106,349,0): 158, 135, 93, (106,350,0): 158, 135, 93, (106,351,0): 158, 135, 94, (106,352,0): 160, 136, 98, (106,353,0): 160, 136, 100, (106,354,0): 163, 137, 102, (106,355,0): 164, 138, 103, (106,356,0): 168, 140, 103, (106,357,0): 169, 141, 104, (106,358,0): 174, 142, 104, (106,359,0): 175, 141, 103, (106,360,0): 175, 140, 102, (106,361,0): 178, 140, 101, (106,362,0): 182, 143, 102, (106,363,0): 187, 145, 103, (106,364,0): 189, 147, 105, (106,365,0): 192, 149, 106, (106,366,0): 194, 151, 109, (106,367,0): 195, 150, 108, (106,368,0): 201, 152, 109, (106,369,0): 208, 155, 111, (106,370,0): 219, 161, 113, (106,371,0): 228, 165, 114, (106,372,0): 237, 167, 115, (106,373,0): 239, 166, 111, (106,374,0): 239, 164, 109, (106,375,0): 237, 162, 107, (106,376,0): 230, 157, 104, (106,377,0): 229, 158, 104, (106,378,0): 226, 159, 106, (106,379,0): 226, 159, 104, (106,380,0): 225, 160, 102, (106,381,0): 227, 161, 101, (106,382,0): 227, 162, 98, (106,383,0): 227, 163, 99, (106,384,0): 220, 160, 100, (106,385,0): 225, 165, 105, (106,386,0): 231, 169, 108, (106,387,0): 237, 173, 111, (106,388,0): 242, 174, 109, (106,389,0): 245, 176, 109, (106,390,0): 252, 179, 111, (106,391,0): 255, 182, 113, (106,392,0): 255, 186, 114, (106,393,0): 255, 186, 114, (106,394,0): 255, 187, 114, (106,395,0): 251, 185, 111, (106,396,0): 244, 182, 107, (106,397,0): 236, 178, 104, (106,398,0): 231, 173, 99, (106,399,0): 224, 171, 95, (106,400,0): 221, 173, 97, (106,401,0): 223, 177, 102, (106,402,0): 225, 181, 106, (106,403,0): 229, 185, 112, (106,404,0): 230, 188, 114, (106,405,0): 227, 187, 115, (106,406,0): 224, 186, 115, (106,407,0): 222, 185, 114, (106,408,0): 220, 183, 112, (106,409,0): 219, 183, 109, (106,410,0): 220, 184, 110, (106,411,0): 225, 187, 112, (106,412,0): 230, 192, 117, (106,413,0): 232, 195, 117, (106,414,0): 231, 194, 116, (106,415,0): 229, 192, 114, (106,416,0): 231, 193, 120, (106,417,0): 230, 192, 119, (106,418,0): 228, 190, 117, (106,419,0): 224, 186, 113, (106,420,0): 219, 181, 106, (106,421,0): 217, 179, 104, (106,422,0): 218, 181, 103, (106,423,0): 221, 184, 104, (106,424,0): 224, 187, 106, (106,425,0): 224, 187, 106, (106,426,0): 224, 188, 104, (106,427,0): 223, 187, 101, (106,428,0): 222, 186, 100, (106,429,0): 224, 188, 100, (106,430,0): 229, 193, 105, (106,431,0): 233, 198, 108, (106,432,0): 232, 199, 106, (106,433,0): 233, 200, 105, (106,434,0): 234, 201, 108, (106,435,0): 234, 201, 108, (106,436,0): 230, 199, 108, (106,437,0): 226, 195, 104, (106,438,0): 221, 190, 100, (106,439,0): 217, 187, 97, (106,440,0): 213, 183, 97, (106,441,0): 211, 181, 95, (106,442,0): 205, 177, 93, (106,443,0): 202, 174, 90, (106,444,0): 199, 171, 88, (106,445,0): 199, 171, 88, (106,446,0): 198, 171, 90, (106,447,0): 200, 171, 91, (106,448,0): 199, 167, 90, (106,449,0): 199, 165, 91, (106,450,0): 197, 163, 91, (106,451,0): 196, 162, 91, (106,452,0): 196, 158, 93, (106,453,0): 189, 151, 89, (106,454,0): 178, 142, 84, (106,455,0): 170, 134, 82, (106,456,0): 161, 127, 81, (106,457,0): 156, 125, 81, (106,458,0): 148, 118, 80, (106,459,0): 141, 115, 78, (106,460,0): 136, 112, 78, (106,461,0): 130, 107, 75, (106,462,0): 121, 100, 69, (106,463,0): 115, 95, 68, (106,464,0): 106, 84, 63, (106,465,0): 101, 78, 62, (106,466,0): 97, 71, 56, (106,467,0): 94, 68, 53, (106,468,0): 95, 69, 54, (106,469,0): 96, 70, 55, (106,470,0): 97, 69, 55, (106,471,0): 96, 68, 54, (106,472,0): 94, 65, 51, (106,473,0): 98, 69, 55, (106,474,0): 102, 73, 59, (106,475,0): 104, 75, 61, (106,476,0): 106, 74, 61, (106,477,0): 106, 74, 61, (106,478,0): 106, 74, 61, (106,479,0): 105, 76, 62, (106,480,0): 103, 77, 64, (106,481,0): 103, 80, 66, (106,482,0): 105, 82, 68, (106,483,0): 107, 84, 70, (106,484,0): 108, 85, 69, (106,485,0): 107, 84, 68, (106,486,0): 106, 83, 65, (106,487,0): 105, 83, 62, (106,488,0): 103, 81, 60, (106,489,0): 104, 82, 59, (106,490,0): 105, 83, 60, (106,491,0): 107, 85, 61, (106,492,0): 109, 88, 61, (106,493,0): 110, 89, 60, (106,494,0): 111, 90, 63, (106,495,0): 112, 91, 62, (106,496,0): 114, 95, 65, (106,497,0): 115, 96, 66, (106,498,0): 117, 98, 68, (106,499,0): 118, 99, 69, (106,500,0): 119, 99, 72, (106,501,0): 116, 99, 71, (106,502,0): 116, 99, 71, (106,503,0): 115, 98, 70, (106,504,0): 115, 99, 73, (106,505,0): 114, 98, 72, (106,506,0): 114, 98, 73, (106,507,0): 112, 98, 72, (106,508,0): 110, 96, 70, (106,509,0): 109, 95, 69, (106,510,0): 107, 95, 71, (106,511,0): 108, 93, 70, (106,512,0): 107, 91, 66, (106,513,0): 107, 91, 65, (106,514,0): 106, 90, 64, (106,515,0): 106, 90, 64, (106,516,0): 107, 91, 65, (106,517,0): 108, 92, 66, (106,518,0): 109, 93, 67, (106,519,0): 110, 94, 68, (106,520,0): 112, 96, 70, (106,521,0): 111, 95, 69, (106,522,0): 110, 94, 68, (106,523,0): 109, 93, 67, (106,524,0): 108, 92, 66, (106,525,0): 108, 92, 66, (106,526,0): 109, 93, 67, (106,527,0): 109, 95, 68, (106,528,0): 110, 96, 69, (106,529,0): 109, 98, 70, (106,530,0): 111, 100, 72, (106,531,0): 113, 102, 74, (106,532,0): 116, 102, 75, (106,533,0): 116, 102, 75, (106,534,0): 116, 102, 75, (106,535,0): 115, 101, 74, (106,536,0): 120, 104, 78, (106,537,0): 119, 103, 77, (106,538,0): 119, 102, 76, (106,539,0): 118, 101, 75, (106,540,0): 117, 100, 74, (106,541,0): 115, 98, 72, (106,542,0): 116, 96, 71, (106,543,0): 116, 96, 71, (106,544,0): 113, 91, 68, (106,545,0): 113, 88, 66, (106,546,0): 112, 87, 65, (106,547,0): 109, 84, 62, (106,548,0): 106, 81, 61, (106,549,0): 104, 79, 59, (106,550,0): 102, 76, 59, (106,551,0): 101, 75, 58, (106,552,0): 100, 74, 57, (106,553,0): 101, 75, 58, (106,554,0): 102, 76, 61, (106,555,0): 103, 77, 62, (106,556,0): 104, 78, 65, (106,557,0): 103, 77, 64, (106,558,0): 102, 76, 63, (106,559,0): 102, 76, 63, (106,560,0): 99, 75, 63, (106,561,0): 99, 75, 63, (106,562,0): 100, 76, 64, (106,563,0): 100, 76, 64, (106,564,0): 99, 77, 66, (106,565,0): 100, 78, 67, (106,566,0): 100, 78, 67, (106,567,0): 100, 78, 67, (106,568,0): 96, 76, 67, (106,569,0): 95, 75, 66, (106,570,0): 92, 73, 66, (106,571,0): 90, 71, 64, (106,572,0): 88, 69, 62, (106,573,0): 86, 67, 60, (106,574,0): 84, 67, 60, (106,575,0): 83, 66, 59, (106,576,0): 85, 66, 60, (106,577,0): 85, 66, 60, (106,578,0): 85, 66, 60, (106,579,0): 85, 66, 60, (106,580,0): 85, 66, 60, (106,581,0): 85, 66, 60, (106,582,0): 85, 66, 60, (106,583,0): 85, 66, 60, (106,584,0): 84, 65, 59, (106,585,0): 83, 64, 58, (106,586,0): 82, 63, 57, (106,587,0): 79, 60, 54, (106,588,0): 77, 58, 52, (106,589,0): 74, 55, 49, (106,590,0): 73, 54, 48, (106,591,0): 71, 53, 49, (106,592,0): 69, 51, 49, (106,593,0): 67, 52, 49, (106,594,0): 68, 53, 50, (106,595,0): 68, 53, 50, (106,596,0): 67, 52, 49, (106,597,0): 66, 51, 48, (106,598,0): 65, 50, 47, (106,599,0): 64, 49, 46, (107,0,0): 31, 28, 47, (107,1,0): 30, 27, 46, (107,2,0): 31, 26, 46, (107,3,0): 31, 27, 44, (107,4,0): 32, 28, 45, (107,5,0): 36, 29, 47, (107,6,0): 38, 29, 46, (107,7,0): 41, 30, 47, (107,8,0): 49, 36, 53, (107,9,0): 47, 34, 51, (107,10,0): 45, 31, 46, (107,11,0): 43, 26, 42, (107,12,0): 42, 24, 40, (107,13,0): 40, 22, 36, (107,14,0): 42, 21, 36, (107,15,0): 40, 22, 36, (107,16,0): 39, 21, 35, (107,17,0): 39, 21, 35, (107,18,0): 37, 19, 33, (107,19,0): 36, 18, 32, (107,20,0): 35, 17, 31, (107,21,0): 35, 19, 32, (107,22,0): 37, 19, 33, (107,23,0): 36, 20, 33, (107,24,0): 37, 19, 33, (107,25,0): 37, 21, 34, (107,26,0): 39, 23, 36, (107,27,0): 41, 25, 38, (107,28,0): 42, 26, 39, (107,29,0): 43, 27, 40, (107,30,0): 42, 26, 39, (107,31,0): 42, 24, 38, (107,32,0): 45, 24, 39, (107,33,0): 46, 25, 40, (107,34,0): 47, 26, 41, (107,35,0): 45, 27, 41, (107,36,0): 46, 25, 42, (107,37,0): 41, 23, 39, (107,38,0): 39, 20, 39, (107,39,0): 36, 19, 37, (107,40,0): 39, 22, 40, (107,41,0): 39, 22, 40, (107,42,0): 38, 21, 40, (107,43,0): 37, 20, 39, (107,44,0): 34, 19, 40, (107,45,0): 33, 18, 39, (107,46,0): 33, 18, 39, (107,47,0): 31, 18, 38, (107,48,0): 31, 17, 40, (107,49,0): 29, 17, 39, (107,50,0): 29, 17, 39, (107,51,0): 28, 16, 38, (107,52,0): 25, 16, 37, (107,53,0): 25, 16, 37, (107,54,0): 24, 15, 36, (107,55,0): 23, 15, 36, (107,56,0): 25, 17, 38, (107,57,0): 25, 17, 38, (107,58,0): 23, 18, 38, (107,59,0): 23, 18, 38, (107,60,0): 23, 18, 38, (107,61,0): 23, 18, 38, (107,62,0): 22, 19, 38, (107,63,0): 22, 19, 38, (107,64,0): 25, 18, 36, (107,65,0): 25, 18, 36, (107,66,0): 25, 18, 36, (107,67,0): 25, 18, 36, (107,68,0): 25, 18, 36, (107,69,0): 25, 18, 36, (107,70,0): 25, 18, 36, (107,71,0): 25, 18, 36, (107,72,0): 25, 18, 36, (107,73,0): 24, 17, 35, (107,74,0): 24, 17, 35, (107,75,0): 24, 17, 35, (107,76,0): 23, 16, 34, (107,77,0): 22, 15, 33, (107,78,0): 22, 15, 33, (107,79,0): 22, 15, 33, (107,80,0): 26, 14, 34, (107,81,0): 26, 14, 34, (107,82,0): 24, 15, 34, (107,83,0): 23, 14, 33, (107,84,0): 23, 14, 33, (107,85,0): 22, 13, 32, (107,86,0): 21, 14, 32, (107,87,0): 20, 13, 31, (107,88,0): 15, 11, 28, (107,89,0): 15, 11, 28, (107,90,0): 15, 11, 28, (107,91,0): 15, 11, 28, (107,92,0): 14, 11, 28, (107,93,0): 14, 11, 28, (107,94,0): 14, 11, 28, (107,95,0): 14, 11, 28, (107,96,0): 19, 12, 30, (107,97,0): 19, 12, 30, (107,98,0): 19, 12, 30, (107,99,0): 19, 12, 30, (107,100,0): 19, 12, 30, (107,101,0): 19, 12, 30, (107,102,0): 19, 12, 30, (107,103,0): 19, 12, 30, (107,104,0): 19, 12, 30, (107,105,0): 18, 11, 29, (107,106,0): 17, 10, 28, (107,107,0): 16, 9, 27, (107,108,0): 16, 9, 27, (107,109,0): 17, 10, 28, (107,110,0): 18, 11, 29, (107,111,0): 17, 13, 30, (107,112,0): 18, 15, 32, (107,113,0): 18, 15, 32, (107,114,0): 18, 15, 32, (107,115,0): 19, 16, 33, (107,116,0): 20, 16, 33, (107,117,0): 20, 16, 33, (107,118,0): 21, 17, 34, (107,119,0): 21, 17, 34, (107,120,0): 22, 15, 33, (107,121,0): 23, 16, 34, (107,122,0): 25, 16, 35, (107,123,0): 26, 17, 36, (107,124,0): 27, 18, 37, (107,125,0): 27, 18, 37, (107,126,0): 28, 16, 36, (107,127,0): 27, 15, 35, (107,128,0): 30, 19, 36, (107,129,0): 30, 19, 36, (107,130,0): 30, 19, 36, (107,131,0): 30, 19, 36, (107,132,0): 31, 18, 35, (107,133,0): 31, 18, 35, (107,134,0): 32, 18, 35, (107,135,0): 32, 18, 33, (107,136,0): 31, 17, 32, (107,137,0): 32, 18, 33, (107,138,0): 35, 19, 32, (107,139,0): 36, 20, 33, (107,140,0): 37, 19, 33, (107,141,0): 36, 18, 32, (107,142,0): 35, 17, 29, (107,143,0): 35, 17, 29, (107,144,0): 37, 19, 35, (107,145,0): 37, 19, 35, (107,146,0): 37, 19, 35, (107,147,0): 37, 19, 35, (107,148,0): 37, 19, 35, (107,149,0): 37, 19, 35, (107,150,0): 37, 19, 35, (107,151,0): 37, 19, 35, (107,152,0): 37, 19, 35, (107,153,0): 37, 19, 35, (107,154,0): 37, 19, 35, (107,155,0): 38, 20, 36, (107,156,0): 38, 20, 36, (107,157,0): 39, 21, 37, (107,158,0): 39, 21, 37, (107,159,0): 40, 22, 36, (107,160,0): 39, 21, 33, (107,161,0): 39, 22, 32, (107,162,0): 39, 22, 32, (107,163,0): 39, 22, 32, (107,164,0): 39, 22, 32, (107,165,0): 39, 22, 32, (107,166,0): 39, 22, 32, (107,167,0): 39, 22, 32, (107,168,0): 40, 23, 33, (107,169,0): 40, 23, 33, (107,170,0): 40, 23, 33, (107,171,0): 40, 23, 33, (107,172,0): 40, 23, 33, (107,173,0): 40, 23, 33, (107,174,0): 40, 23, 33, (107,175,0): 39, 23, 33, (107,176,0): 37, 24, 33, (107,177,0): 36, 25, 33, (107,178,0): 36, 25, 33, (107,179,0): 36, 25, 33, (107,180,0): 36, 25, 33, (107,181,0): 36, 25, 33, (107,182,0): 36, 25, 33, (107,183,0): 36, 25, 33, (107,184,0): 36, 25, 33, (107,185,0): 36, 25, 33, (107,186,0): 36, 25, 33, (107,187,0): 37, 26, 34, (107,188,0): 37, 26, 34, (107,189,0): 38, 27, 35, (107,190,0): 38, 27, 35, (107,191,0): 40, 27, 36, (107,192,0): 46, 30, 40, (107,193,0): 47, 31, 41, (107,194,0): 48, 31, 41, (107,195,0): 49, 32, 42, (107,196,0): 49, 32, 42, (107,197,0): 50, 33, 41, (107,198,0): 52, 32, 41, (107,199,0): 52, 32, 41, (107,200,0): 56, 35, 42, (107,201,0): 56, 35, 42, (107,202,0): 56, 35, 40, (107,203,0): 56, 35, 40, (107,204,0): 57, 34, 40, (107,205,0): 57, 34, 40, (107,206,0): 57, 34, 40, (107,207,0): 57, 34, 40, (107,208,0): 59, 34, 40, (107,209,0): 59, 34, 40, (107,210,0): 59, 34, 40, (107,211,0): 58, 33, 39, (107,212,0): 58, 33, 37, (107,213,0): 57, 32, 36, (107,214,0): 57, 32, 36, (107,215,0): 57, 32, 35, (107,216,0): 57, 32, 35, (107,217,0): 57, 32, 35, (107,218,0): 57, 33, 33, (107,219,0): 57, 33, 33, (107,220,0): 57, 33, 33, (107,221,0): 57, 33, 33, (107,222,0): 57, 33, 31, (107,223,0): 57, 33, 31, (107,224,0): 53, 31, 33, (107,225,0): 53, 31, 33, (107,226,0): 53, 31, 33, (107,227,0): 53, 31, 33, (107,228,0): 53, 31, 33, (107,229,0): 53, 31, 33, (107,230,0): 53, 31, 33, (107,231,0): 53, 31, 33, (107,232,0): 53, 31, 33, (107,233,0): 53, 31, 33, (107,234,0): 53, 31, 33, (107,235,0): 53, 31, 33, (107,236,0): 53, 31, 33, (107,237,0): 53, 31, 33, (107,238,0): 53, 31, 33, (107,239,0): 55, 31, 31, (107,240,0): 60, 32, 31, (107,241,0): 61, 31, 29, (107,242,0): 61, 31, 29, (107,243,0): 61, 31, 29, (107,244,0): 61, 31, 29, (107,245,0): 61, 31, 29, (107,246,0): 61, 31, 29, (107,247,0): 61, 31, 29, (107,248,0): 61, 31, 29, (107,249,0): 61, 31, 29, (107,250,0): 61, 31, 29, (107,251,0): 62, 32, 30, (107,252,0): 62, 32, 30, (107,253,0): 63, 33, 31, (107,254,0): 63, 33, 31, (107,255,0): 63, 33, 31, (107,256,0): 61, 33, 30, (107,257,0): 61, 33, 30, (107,258,0): 63, 33, 31, (107,259,0): 63, 33, 31, (107,260,0): 64, 35, 31, (107,261,0): 64, 35, 31, (107,262,0): 66, 35, 32, (107,263,0): 66, 35, 30, (107,264,0): 70, 37, 32, (107,265,0): 70, 37, 32, (107,266,0): 71, 38, 31, (107,267,0): 72, 39, 32, (107,268,0): 74, 39, 33, (107,269,0): 75, 40, 34, (107,270,0): 76, 42, 33, (107,271,0): 76, 42, 33, (107,272,0): 78, 43, 37, (107,273,0): 77, 42, 36, (107,274,0): 77, 42, 36, (107,275,0): 76, 41, 35, (107,276,0): 77, 43, 34, (107,277,0): 78, 44, 35, (107,278,0): 80, 46, 37, (107,279,0): 81, 47, 37, (107,280,0): 81, 47, 37, (107,281,0): 82, 48, 38, (107,282,0): 82, 48, 36, (107,283,0): 83, 49, 37, (107,284,0): 83, 49, 37, (107,285,0): 84, 50, 38, (107,286,0): 84, 51, 36, (107,287,0): 83, 51, 38, (107,288,0): 82, 54, 43, (107,289,0): 81, 54, 45, (107,290,0): 83, 55, 44, (107,291,0): 84, 56, 44, (107,292,0): 87, 58, 44, (107,293,0): 92, 60, 45, (107,294,0): 96, 63, 48, (107,295,0): 99, 63, 49, (107,296,0): 100, 63, 47, (107,297,0): 105, 67, 48, (107,298,0): 113, 71, 47, (107,299,0): 119, 78, 48, (107,300,0): 127, 85, 45, (107,301,0): 136, 94, 46, (107,302,0): 147, 104, 51, (107,303,0): 153, 112, 50, (107,304,0): 166, 123, 54, (107,305,0): 168, 124, 51, (107,306,0): 169, 127, 53, (107,307,0): 171, 129, 55, (107,308,0): 172, 130, 58, (107,309,0): 170, 130, 58, (107,310,0): 169, 131, 58, (107,311,0): 169, 131, 60, (107,312,0): 167, 130, 59, (107,313,0): 165, 131, 59, (107,314,0): 165, 132, 61, (107,315,0): 166, 133, 62, (107,316,0): 165, 135, 63, (107,317,0): 166, 136, 64, (107,318,0): 166, 137, 67, (107,319,0): 166, 137, 67, (107,320,0): 167, 136, 71, (107,321,0): 168, 137, 73, (107,322,0): 169, 137, 76, (107,323,0): 170, 138, 77, (107,324,0): 170, 140, 78, (107,325,0): 169, 139, 77, (107,326,0): 168, 138, 78, (107,327,0): 167, 138, 78, (107,328,0): 167, 138, 80, (107,329,0): 167, 138, 80, (107,330,0): 165, 139, 80, (107,331,0): 166, 140, 81, (107,332,0): 166, 141, 84, (107,333,0): 166, 141, 84, (107,334,0): 167, 142, 85, (107,335,0): 167, 142, 86, (107,336,0): 162, 139, 87, (107,337,0): 162, 140, 90, (107,338,0): 162, 140, 90, (107,339,0): 162, 140, 90, (107,340,0): 161, 139, 90, (107,341,0): 160, 138, 89, (107,342,0): 158, 136, 89, (107,343,0): 157, 135, 88, (107,344,0): 158, 136, 89, (107,345,0): 158, 136, 89, (107,346,0): 158, 135, 91, (107,347,0): 158, 135, 91, (107,348,0): 158, 135, 93, (107,349,0): 158, 135, 93, (107,350,0): 158, 135, 93, (107,351,0): 158, 135, 94, (107,352,0): 160, 136, 98, (107,353,0): 160, 136, 100, (107,354,0): 163, 137, 102, (107,355,0): 164, 138, 103, (107,356,0): 168, 140, 103, (107,357,0): 170, 140, 102, (107,358,0): 174, 142, 104, (107,359,0): 175, 141, 103, (107,360,0): 176, 141, 101, (107,361,0): 181, 142, 101, (107,362,0): 187, 145, 103, (107,363,0): 191, 148, 105, (107,364,0): 193, 150, 107, (107,365,0): 194, 149, 107, (107,366,0): 194, 149, 107, (107,367,0): 195, 148, 104, (107,368,0): 201, 150, 107, (107,369,0): 206, 154, 107, (107,370,0): 217, 159, 111, (107,371,0): 227, 164, 111, (107,372,0): 237, 168, 113, (107,373,0): 240, 168, 110, (107,374,0): 242, 167, 110, (107,375,0): 241, 166, 109, (107,376,0): 231, 158, 103, (107,377,0): 229, 160, 103, (107,378,0): 227, 160, 105, (107,379,0): 225, 163, 106, (107,380,0): 226, 164, 105, (107,381,0): 228, 166, 105, (107,382,0): 229, 168, 105, (107,383,0): 230, 169, 106, (107,384,0): 225, 165, 103, (107,385,0): 228, 168, 106, (107,386,0): 234, 173, 110, (107,387,0): 239, 175, 111, (107,388,0): 241, 176, 108, (107,389,0): 246, 177, 108, (107,390,0): 251, 181, 111, (107,391,0): 255, 183, 114, (107,392,0): 255, 188, 116, (107,393,0): 255, 189, 116, (107,394,0): 255, 189, 115, (107,395,0): 249, 187, 114, (107,396,0): 242, 184, 110, (107,397,0): 233, 179, 105, (107,398,0): 226, 174, 99, (107,399,0): 221, 172, 96, (107,400,0): 222, 174, 98, (107,401,0): 223, 177, 100, (107,402,0): 225, 181, 106, (107,403,0): 227, 185, 109, (107,404,0): 227, 187, 115, (107,405,0): 225, 187, 114, (107,406,0): 223, 186, 115, (107,407,0): 220, 186, 114, (107,408,0): 216, 182, 110, (107,409,0): 216, 182, 110, (107,410,0): 217, 183, 109, (107,411,0): 223, 187, 111, (107,412,0): 228, 192, 116, (107,413,0): 232, 195, 117, (107,414,0): 231, 194, 114, (107,415,0): 229, 192, 114, (107,416,0): 232, 194, 119, (107,417,0): 231, 193, 120, (107,418,0): 229, 191, 118, (107,419,0): 224, 186, 111, (107,420,0): 219, 181, 106, (107,421,0): 218, 181, 103, (107,422,0): 220, 183, 103, (107,423,0): 224, 187, 107, (107,424,0): 226, 189, 108, (107,425,0): 228, 192, 108, (107,426,0): 230, 194, 108, (107,427,0): 230, 194, 108, (107,428,0): 227, 191, 103, (107,429,0): 226, 190, 102, (107,430,0): 228, 192, 104, (107,431,0): 230, 195, 105, (107,432,0): 231, 196, 104, (107,433,0): 231, 198, 103, (107,434,0): 233, 200, 107, (107,435,0): 234, 201, 108, (107,436,0): 232, 198, 108, (107,437,0): 227, 196, 105, (107,438,0): 222, 191, 101, (107,439,0): 220, 189, 99, (107,440,0): 214, 182, 97, (107,441,0): 211, 181, 95, (107,442,0): 208, 177, 94, (107,443,0): 203, 175, 91, (107,444,0): 200, 172, 89, (107,445,0): 199, 171, 88, (107,446,0): 198, 169, 89, (107,447,0): 198, 169, 89, (107,448,0): 197, 164, 87, (107,449,0): 197, 164, 87, (107,450,0): 197, 163, 89, (107,451,0): 197, 163, 92, (107,452,0): 197, 159, 94, (107,453,0): 190, 152, 90, (107,454,0): 178, 142, 84, (107,455,0): 169, 134, 80, (107,456,0): 160, 126, 80, (107,457,0): 154, 123, 79, (107,458,0): 147, 117, 79, (107,459,0): 140, 114, 79, (107,460,0): 136, 112, 78, (107,461,0): 128, 107, 76, (107,462,0): 122, 103, 73, (107,463,0): 117, 97, 72, (107,464,0): 109, 86, 68, (107,465,0): 103, 80, 64, (107,466,0): 98, 72, 57, (107,467,0): 93, 67, 52, (107,468,0): 93, 67, 52, (107,469,0): 95, 69, 54, (107,470,0): 96, 68, 54, (107,471,0): 96, 68, 54, (107,472,0): 97, 68, 54, (107,473,0): 100, 71, 57, (107,474,0): 104, 75, 61, (107,475,0): 108, 79, 65, (107,476,0): 111, 79, 66, (107,477,0): 110, 78, 65, (107,478,0): 109, 77, 64, (107,479,0): 106, 77, 63, (107,480,0): 101, 75, 62, (107,481,0): 100, 76, 64, (107,482,0): 102, 79, 65, (107,483,0): 105, 82, 68, (107,484,0): 107, 84, 68, (107,485,0): 108, 85, 67, (107,486,0): 109, 87, 66, (107,487,0): 109, 87, 64, (107,488,0): 108, 86, 63, (107,489,0): 109, 87, 63, (107,490,0): 111, 89, 65, (107,491,0): 112, 91, 64, (107,492,0): 113, 92, 63, (107,493,0): 114, 93, 62, (107,494,0): 114, 93, 64, (107,495,0): 113, 92, 63, (107,496,0): 116, 97, 67, (107,497,0): 117, 98, 68, (107,498,0): 118, 99, 69, (107,499,0): 120, 101, 71, (107,500,0): 118, 101, 73, (107,501,0): 118, 101, 73, (107,502,0): 117, 100, 72, (107,503,0): 116, 101, 72, (107,504,0): 114, 98, 72, (107,505,0): 114, 98, 72, (107,506,0): 112, 98, 72, (107,507,0): 111, 97, 71, (107,508,0): 110, 96, 70, (107,509,0): 109, 95, 69, (107,510,0): 106, 94, 70, (107,511,0): 106, 94, 68, (107,512,0): 107, 91, 66, (107,513,0): 107, 91, 65, (107,514,0): 107, 91, 65, (107,515,0): 108, 92, 66, (107,516,0): 108, 92, 66, (107,517,0): 109, 93, 67, (107,518,0): 110, 94, 68, (107,519,0): 110, 94, 68, (107,520,0): 113, 97, 71, (107,521,0): 112, 96, 70, (107,522,0): 110, 94, 68, (107,523,0): 109, 93, 67, (107,524,0): 109, 93, 67, (107,525,0): 109, 93, 67, (107,526,0): 110, 94, 68, (107,527,0): 109, 95, 68, (107,528,0): 111, 97, 70, (107,529,0): 110, 99, 71, (107,530,0): 112, 101, 73, (107,531,0): 114, 103, 75, (107,532,0): 117, 103, 76, (107,533,0): 117, 103, 76, (107,534,0): 117, 103, 76, (107,535,0): 116, 102, 75, (107,536,0): 121, 105, 79, (107,537,0): 121, 105, 79, (107,538,0): 121, 104, 78, (107,539,0): 119, 102, 76, (107,540,0): 118, 101, 75, (107,541,0): 116, 99, 73, (107,542,0): 117, 97, 72, (107,543,0): 118, 96, 72, (107,544,0): 115, 90, 68, (107,545,0): 114, 89, 67, (107,546,0): 112, 87, 65, (107,547,0): 110, 85, 63, (107,548,0): 107, 82, 62, (107,549,0): 104, 79, 59, (107,550,0): 102, 76, 59, (107,551,0): 101, 75, 58, (107,552,0): 100, 74, 57, (107,553,0): 101, 75, 58, (107,554,0): 101, 75, 60, (107,555,0): 102, 76, 61, (107,556,0): 102, 76, 63, (107,557,0): 103, 77, 64, (107,558,0): 103, 77, 64, (107,559,0): 102, 76, 63, (107,560,0): 98, 74, 62, (107,561,0): 98, 74, 62, (107,562,0): 99, 75, 63, (107,563,0): 99, 75, 63, (107,564,0): 99, 77, 66, (107,565,0): 100, 78, 67, (107,566,0): 101, 79, 68, (107,567,0): 101, 79, 68, (107,568,0): 96, 76, 67, (107,569,0): 95, 75, 66, (107,570,0): 93, 74, 67, (107,571,0): 91, 72, 65, (107,572,0): 90, 71, 64, (107,573,0): 88, 69, 62, (107,574,0): 86, 69, 62, (107,575,0): 85, 68, 61, (107,576,0): 85, 66, 60, (107,577,0): 85, 66, 60, (107,578,0): 85, 66, 60, (107,579,0): 86, 67, 61, (107,580,0): 86, 67, 61, (107,581,0): 87, 68, 62, (107,582,0): 87, 68, 62, (107,583,0): 87, 68, 62, (107,584,0): 88, 69, 63, (107,585,0): 87, 68, 62, (107,586,0): 85, 66, 60, (107,587,0): 82, 63, 57, (107,588,0): 79, 60, 54, (107,589,0): 76, 57, 51, (107,590,0): 74, 55, 49, (107,591,0): 72, 55, 48, (107,592,0): 70, 52, 48, (107,593,0): 68, 53, 50, (107,594,0): 68, 53, 50, (107,595,0): 67, 52, 49, (107,596,0): 67, 52, 49, (107,597,0): 66, 51, 48, (107,598,0): 65, 50, 47, (107,599,0): 65, 50, 47, (108,0,0): 31, 27, 44, (108,1,0): 31, 27, 44, (108,2,0): 33, 26, 44, (108,3,0): 33, 26, 42, (108,4,0): 35, 28, 44, (108,5,0): 38, 29, 46, (108,6,0): 40, 31, 48, (108,7,0): 43, 32, 49, (108,8,0): 46, 33, 50, (108,9,0): 44, 31, 48, (108,10,0): 41, 27, 44, (108,11,0): 40, 23, 41, (108,12,0): 37, 20, 38, (108,13,0): 37, 20, 36, (108,14,0): 38, 20, 36, (108,15,0): 38, 21, 37, (108,16,0): 35, 18, 34, (108,17,0): 35, 18, 34, (108,18,0): 33, 16, 32, (108,19,0): 33, 16, 32, (108,20,0): 32, 15, 31, (108,21,0): 31, 17, 32, (108,22,0): 34, 17, 33, (108,23,0): 33, 19, 34, (108,24,0): 35, 18, 34, (108,25,0): 34, 20, 35, (108,26,0): 35, 21, 36, (108,27,0): 37, 23, 38, (108,28,0): 38, 24, 39, (108,29,0): 39, 25, 40, (108,30,0): 39, 25, 40, (108,31,0): 38, 24, 39, (108,32,0): 41, 24, 40, (108,33,0): 42, 24, 40, (108,34,0): 43, 25, 41, (108,35,0): 43, 26, 42, (108,36,0): 43, 25, 41, (108,37,0): 39, 22, 38, (108,38,0): 37, 20, 38, (108,39,0): 35, 18, 36, (108,40,0): 39, 22, 41, (108,41,0): 36, 21, 40, (108,42,0): 35, 20, 41, (108,43,0): 34, 19, 40, (108,44,0): 33, 18, 39, (108,45,0): 32, 17, 38, (108,46,0): 31, 16, 37, (108,47,0): 29, 16, 36, (108,48,0): 29, 15, 38, (108,49,0): 28, 16, 40, (108,50,0): 26, 16, 40, (108,51,0): 25, 15, 39, (108,52,0): 25, 15, 39, (108,53,0): 25, 15, 39, (108,54,0): 23, 15, 38, (108,55,0): 23, 15, 38, (108,56,0): 25, 17, 40, (108,57,0): 23, 18, 40, (108,58,0): 23, 18, 40, (108,59,0): 23, 18, 40, (108,60,0): 22, 19, 40, (108,61,0): 22, 19, 40, (108,62,0): 22, 19, 40, (108,63,0): 22, 19, 38, (108,64,0): 24, 17, 35, (108,65,0): 24, 17, 35, (108,66,0): 24, 17, 35, (108,67,0): 24, 17, 35, (108,68,0): 24, 17, 35, (108,69,0): 24, 17, 35, (108,70,0): 24, 17, 35, (108,71,0): 24, 17, 35, (108,72,0): 24, 17, 35, (108,73,0): 24, 17, 35, (108,74,0): 24, 17, 35, (108,75,0): 23, 16, 34, (108,76,0): 22, 15, 33, (108,77,0): 22, 15, 33, (108,78,0): 22, 15, 33, (108,79,0): 21, 14, 32, (108,80,0): 26, 14, 34, (108,81,0): 25, 13, 33, (108,82,0): 23, 14, 33, (108,83,0): 22, 13, 32, (108,84,0): 22, 13, 32, (108,85,0): 21, 12, 31, (108,86,0): 20, 13, 31, (108,87,0): 20, 13, 31, (108,88,0): 15, 11, 28, (108,89,0): 15, 11, 28, (108,90,0): 15, 11, 28, (108,91,0): 15, 11, 28, (108,92,0): 14, 11, 28, (108,93,0): 14, 11, 28, (108,94,0): 14, 11, 28, (108,95,0): 14, 11, 28, (108,96,0): 18, 11, 29, (108,97,0): 18, 11, 29, (108,98,0): 18, 11, 29, (108,99,0): 18, 11, 29, (108,100,0): 18, 11, 29, (108,101,0): 18, 11, 29, (108,102,0): 18, 11, 29, (108,103,0): 18, 11, 29, (108,104,0): 18, 11, 29, (108,105,0): 17, 10, 28, (108,106,0): 16, 9, 27, (108,107,0): 16, 9, 27, (108,108,0): 16, 9, 27, (108,109,0): 16, 9, 27, (108,110,0): 17, 10, 28, (108,111,0): 16, 12, 29, (108,112,0): 16, 13, 30, (108,113,0): 16, 15, 31, (108,114,0): 16, 15, 31, (108,115,0): 17, 16, 32, (108,116,0): 19, 16, 33, (108,117,0): 19, 16, 33, (108,118,0): 21, 17, 34, (108,119,0): 21, 17, 34, (108,120,0): 22, 15, 33, (108,121,0): 23, 16, 34, (108,122,0): 26, 17, 36, (108,123,0): 27, 18, 37, (108,124,0): 29, 17, 37, (108,125,0): 29, 17, 37, (108,126,0): 28, 16, 36, (108,127,0): 28, 16, 36, (108,128,0): 32, 19, 37, (108,129,0): 32, 19, 37, (108,130,0): 32, 19, 36, (108,131,0): 32, 19, 36, (108,132,0): 32, 19, 36, (108,133,0): 32, 19, 36, (108,134,0): 33, 19, 34, (108,135,0): 33, 19, 34, (108,136,0): 34, 17, 33, (108,137,0): 34, 18, 31, (108,138,0): 36, 18, 32, (108,139,0): 37, 19, 33, (108,140,0): 37, 19, 31, (108,141,0): 36, 18, 30, (108,142,0): 35, 17, 29, (108,143,0): 34, 16, 28, (108,144,0): 37, 19, 35, (108,145,0): 37, 19, 35, (108,146,0): 37, 19, 35, (108,147,0): 37, 19, 35, (108,148,0): 37, 19, 35, (108,149,0): 37, 19, 35, (108,150,0): 37, 19, 35, (108,151,0): 37, 19, 35, (108,152,0): 37, 19, 35, (108,153,0): 38, 20, 36, (108,154,0): 38, 20, 36, (108,155,0): 39, 21, 37, (108,156,0): 39, 21, 37, (108,157,0): 40, 22, 38, (108,158,0): 40, 22, 38, (108,159,0): 40, 22, 36, (108,160,0): 39, 21, 33, (108,161,0): 39, 22, 32, (108,162,0): 39, 22, 32, (108,163,0): 39, 22, 32, (108,164,0): 39, 22, 32, (108,165,0): 39, 22, 32, (108,166,0): 39, 22, 32, (108,167,0): 39, 22, 32, (108,168,0): 40, 23, 33, (108,169,0): 40, 23, 33, (108,170,0): 40, 23, 33, (108,171,0): 40, 23, 33, (108,172,0): 40, 23, 33, (108,173,0): 40, 23, 33, (108,174,0): 40, 23, 33, (108,175,0): 39, 23, 33, (108,176,0): 37, 24, 33, (108,177,0): 36, 25, 33, (108,178,0): 36, 25, 33, (108,179,0): 36, 25, 33, (108,180,0): 36, 25, 33, (108,181,0): 36, 25, 33, (108,182,0): 36, 25, 33, (108,183,0): 36, 25, 33, (108,184,0): 36, 25, 33, (108,185,0): 37, 26, 34, (108,186,0): 37, 26, 34, (108,187,0): 38, 27, 35, (108,188,0): 38, 27, 35, (108,189,0): 39, 28, 36, (108,190,0): 39, 28, 36, (108,191,0): 40, 27, 36, (108,192,0): 46, 30, 40, (108,193,0): 48, 31, 41, (108,194,0): 48, 31, 41, (108,195,0): 49, 32, 42, (108,196,0): 51, 31, 40, (108,197,0): 52, 32, 41, (108,198,0): 52, 32, 41, (108,199,0): 52, 33, 39, (108,200,0): 56, 35, 42, (108,201,0): 56, 35, 42, (108,202,0): 57, 34, 40, (108,203,0): 57, 34, 40, (108,204,0): 57, 35, 38, (108,205,0): 57, 35, 38, (108,206,0): 59, 34, 38, (108,207,0): 59, 34, 38, (108,208,0): 60, 33, 40, (108,209,0): 60, 33, 40, (108,210,0): 60, 33, 38, (108,211,0): 59, 32, 37, (108,212,0): 59, 32, 37, (108,213,0): 58, 31, 36, (108,214,0): 58, 32, 35, (108,215,0): 58, 32, 35, (108,216,0): 58, 32, 35, (108,217,0): 58, 32, 33, (108,218,0): 58, 32, 33, (108,219,0): 58, 32, 33, (108,220,0): 58, 32, 31, (108,221,0): 58, 32, 31, (108,222,0): 58, 32, 31, (108,223,0): 57, 33, 31, (108,224,0): 53, 31, 33, (108,225,0): 53, 31, 33, (108,226,0): 53, 31, 33, (108,227,0): 53, 31, 33, (108,228,0): 53, 31, 33, (108,229,0): 53, 31, 33, (108,230,0): 53, 31, 33, (108,231,0): 53, 31, 33, (108,232,0): 53, 31, 33, (108,233,0): 53, 31, 33, (108,234,0): 53, 31, 33, (108,235,0): 53, 31, 33, (108,236,0): 53, 31, 33, (108,237,0): 53, 31, 33, (108,238,0): 53, 31, 33, (108,239,0): 55, 31, 31, (108,240,0): 60, 32, 31, (108,241,0): 61, 31, 29, (108,242,0): 61, 31, 29, (108,243,0): 61, 31, 29, (108,244,0): 61, 31, 29, (108,245,0): 61, 31, 29, (108,246,0): 61, 31, 29, (108,247,0): 61, 31, 29, (108,248,0): 61, 31, 29, (108,249,0): 61, 31, 29, (108,250,0): 61, 31, 29, (108,251,0): 62, 32, 30, (108,252,0): 62, 32, 30, (108,253,0): 63, 33, 31, (108,254,0): 63, 33, 31, (108,255,0): 63, 33, 31, (108,256,0): 61, 33, 30, (108,257,0): 61, 33, 30, (108,258,0): 63, 34, 30, (108,259,0): 63, 34, 30, (108,260,0): 64, 35, 31, (108,261,0): 64, 35, 31, (108,262,0): 66, 35, 30, (108,263,0): 66, 35, 30, (108,264,0): 70, 37, 32, (108,265,0): 70, 37, 30, (108,266,0): 71, 38, 31, (108,267,0): 72, 39, 32, (108,268,0): 74, 40, 31, (108,269,0): 75, 41, 32, (108,270,0): 76, 42, 33, (108,271,0): 76, 42, 33, (108,272,0): 78, 43, 37, (108,273,0): 77, 42, 36, (108,274,0): 77, 43, 34, (108,275,0): 76, 42, 33, (108,276,0): 77, 43, 34, (108,277,0): 78, 44, 35, (108,278,0): 80, 46, 36, (108,279,0): 81, 47, 37, (108,280,0): 81, 47, 37, (108,281,0): 81, 47, 35, (108,282,0): 81, 47, 35, (108,283,0): 82, 48, 36, (108,284,0): 82, 49, 34, (108,285,0): 83, 50, 35, (108,286,0): 83, 50, 35, (108,287,0): 83, 51, 38, (108,288,0): 81, 52, 44, (108,289,0): 81, 54, 45, (108,290,0): 82, 54, 43, (108,291,0): 83, 55, 43, (108,292,0): 87, 58, 44, (108,293,0): 91, 59, 46, (108,294,0): 95, 62, 47, (108,295,0): 99, 63, 49, (108,296,0): 100, 63, 47, (108,297,0): 105, 67, 48, (108,298,0): 113, 71, 47, (108,299,0): 118, 77, 47, (108,300,0): 126, 84, 44, (108,301,0): 134, 94, 45, (108,302,0): 145, 104, 50, (108,303,0): 153, 112, 50, (108,304,0): 169, 127, 55, (108,305,0): 172, 128, 53, (108,306,0): 173, 129, 54, (108,307,0): 174, 132, 56, (108,308,0): 175, 133, 59, (108,309,0): 174, 135, 60, (108,310,0): 172, 134, 59, (108,311,0): 172, 134, 61, (108,312,0): 167, 131, 57, (108,313,0): 165, 131, 57, (108,314,0): 165, 133, 60, (108,315,0): 166, 134, 61, (108,316,0): 165, 135, 62, (108,317,0): 166, 136, 63, (108,318,0): 167, 137, 65, (108,319,0): 167, 137, 65, (108,320,0): 169, 138, 71, (108,321,0): 170, 139, 74, (108,322,0): 171, 140, 76, (108,323,0): 173, 142, 78, (108,324,0): 174, 143, 79, (108,325,0): 172, 142, 78, (108,326,0): 172, 142, 80, (108,327,0): 171, 141, 79, (108,328,0): 170, 141, 81, (108,329,0): 170, 141, 81, (108,330,0): 169, 143, 82, (108,331,0): 169, 143, 82, (108,332,0): 169, 143, 84, (108,333,0): 170, 144, 85, (108,334,0): 170, 144, 85, (108,335,0): 169, 144, 87, (108,336,0): 165, 142, 88, (108,337,0): 164, 143, 90, (108,338,0): 164, 142, 92, (108,339,0): 164, 142, 92, (108,340,0): 163, 141, 91, (108,341,0): 161, 139, 89, (108,342,0): 159, 137, 88, (108,343,0): 158, 136, 87, (108,344,0): 158, 136, 89, (108,345,0): 158, 136, 89, (108,346,0): 158, 136, 89, (108,347,0): 158, 136, 89, (108,348,0): 158, 135, 91, (108,349,0): 158, 135, 91, (108,350,0): 158, 135, 91, (108,351,0): 158, 135, 93, (108,352,0): 159, 137, 100, (108,353,0): 159, 136, 102, (108,354,0): 162, 138, 102, (108,355,0): 164, 138, 103, (108,356,0): 168, 140, 103, (108,357,0): 170, 140, 102, (108,358,0): 174, 142, 104, (108,359,0): 175, 141, 103, (108,360,0): 179, 144, 104, (108,361,0): 183, 144, 103, (108,362,0): 188, 146, 104, (108,363,0): 192, 149, 106, (108,364,0): 194, 149, 107, (108,365,0): 196, 149, 105, (108,366,0): 195, 148, 104, (108,367,0): 195, 147, 101, (108,368,0): 199, 148, 101, (108,369,0): 205, 152, 102, (108,370,0): 216, 156, 104, (108,371,0): 225, 163, 106, (108,372,0): 235, 166, 107, (108,373,0): 239, 168, 106, (108,374,0): 242, 168, 107, (108,375,0): 242, 168, 107, (108,376,0): 233, 161, 102, (108,377,0): 231, 162, 103, (108,378,0): 228, 163, 105, (108,379,0): 226, 164, 103, (108,380,0): 226, 166, 104, (108,381,0): 229, 169, 106, (108,382,0): 231, 172, 106, (108,383,0): 233, 174, 108, (108,384,0): 229, 169, 106, (108,385,0): 232, 173, 107, (108,386,0): 237, 176, 111, (108,387,0): 240, 177, 110, (108,388,0): 242, 177, 109, (108,389,0): 247, 178, 109, (108,390,0): 252, 182, 112, (108,391,0): 255, 186, 114, (108,392,0): 255, 189, 116, (108,393,0): 255, 190, 116, (108,394,0): 253, 189, 117, (108,395,0): 247, 187, 114, (108,396,0): 239, 185, 111, (108,397,0): 230, 180, 107, (108,398,0): 223, 175, 101, (108,399,0): 219, 173, 98, (108,400,0): 221, 175, 98, (108,401,0): 223, 177, 100, (108,402,0): 224, 180, 105, (108,403,0): 226, 184, 108, (108,404,0): 224, 186, 113, (108,405,0): 223, 187, 113, (108,406,0): 221, 187, 115, (108,407,0): 219, 186, 115, (108,408,0): 213, 180, 109, (108,409,0): 213, 181, 108, (108,410,0): 214, 182, 107, (108,411,0): 220, 187, 110, (108,412,0): 227, 191, 115, (108,413,0): 230, 194, 116, (108,414,0): 230, 193, 113, (108,415,0): 228, 191, 111, (108,416,0): 230, 194, 118, (108,417,0): 230, 194, 120, (108,418,0): 227, 191, 115, (108,419,0): 222, 186, 110, (108,420,0): 218, 182, 106, (108,421,0): 217, 181, 103, (108,422,0): 220, 185, 104, (108,423,0): 224, 189, 108, (108,424,0): 227, 192, 110, (108,425,0): 232, 197, 113, (108,426,0): 236, 202, 115, (108,427,0): 237, 203, 116, (108,428,0): 234, 200, 111, (108,429,0): 231, 197, 108, (108,430,0): 228, 194, 104, (108,431,0): 229, 194, 104, (108,432,0): 231, 196, 104, (108,433,0): 232, 197, 103, (108,434,0): 234, 199, 107, (108,435,0): 235, 200, 108, (108,436,0): 233, 198, 108, (108,437,0): 229, 195, 105, (108,438,0): 226, 192, 103, (108,439,0): 222, 191, 101, (108,440,0): 216, 184, 99, (108,441,0): 214, 182, 97, (108,442,0): 212, 180, 97, (108,443,0): 207, 176, 93, (108,444,0): 204, 173, 91, (108,445,0): 202, 171, 89, (108,446,0): 201, 170, 90, (108,447,0): 200, 169, 89, (108,448,0): 198, 165, 86, (108,449,0): 200, 164, 88, (108,450,0): 200, 164, 90, (108,451,0): 200, 163, 92, (108,452,0): 197, 160, 92, (108,453,0): 190, 152, 89, (108,454,0): 178, 142, 84, (108,455,0): 170, 135, 81, (108,456,0): 160, 126, 80, (108,457,0): 154, 123, 79, (108,458,0): 146, 116, 78, (108,459,0): 139, 113, 78, (108,460,0): 135, 112, 80, (108,461,0): 129, 108, 77, (108,462,0): 123, 104, 74, (108,463,0): 119, 99, 74, (108,464,0): 110, 87, 69, (108,465,0): 105, 82, 66, (108,466,0): 97, 74, 58, (108,467,0): 93, 70, 54, (108,468,0): 95, 69, 54, (108,469,0): 96, 70, 55, (108,470,0): 97, 71, 56, (108,471,0): 96, 70, 55, (108,472,0): 100, 72, 58, (108,473,0): 102, 74, 60, (108,474,0): 107, 78, 64, (108,475,0): 110, 81, 67, (108,476,0): 113, 84, 70, (108,477,0): 112, 83, 69, (108,478,0): 112, 80, 67, (108,479,0): 108, 79, 65, (108,480,0): 103, 75, 63, (108,481,0): 101, 75, 62, (108,482,0): 100, 74, 61, (108,483,0): 101, 75, 62, (108,484,0): 103, 77, 62, (108,485,0): 107, 81, 64, (108,486,0): 111, 86, 66, (108,487,0): 114, 89, 67, (108,488,0): 115, 90, 68, (108,489,0): 117, 93, 69, (108,490,0): 119, 95, 69, (108,491,0): 120, 96, 68, (108,492,0): 121, 98, 67, (108,493,0): 121, 98, 66, (108,494,0): 120, 97, 66, (108,495,0): 117, 96, 65, (108,496,0): 118, 99, 69, (108,497,0): 119, 100, 70, (108,498,0): 118, 101, 71, (108,499,0): 119, 102, 72, (108,500,0): 120, 103, 75, (108,501,0): 120, 103, 75, (108,502,0): 118, 103, 74, (108,503,0): 117, 102, 73, (108,504,0): 113, 97, 71, (108,505,0): 111, 97, 70, (108,506,0): 111, 97, 71, (108,507,0): 110, 96, 70, (108,508,0): 107, 95, 69, (108,509,0): 105, 93, 67, (108,510,0): 105, 93, 69, (108,511,0): 104, 92, 66, (108,512,0): 108, 92, 67, (108,513,0): 109, 93, 67, (108,514,0): 109, 93, 67, (108,515,0): 110, 94, 68, (108,516,0): 111, 95, 69, (108,517,0): 111, 95, 69, (108,518,0): 111, 95, 69, (108,519,0): 111, 95, 69, (108,520,0): 113, 97, 71, (108,521,0): 112, 96, 70, (108,522,0): 111, 95, 69, (108,523,0): 110, 94, 68, (108,524,0): 109, 93, 67, (108,525,0): 109, 93, 67, (108,526,0): 110, 94, 68, (108,527,0): 110, 96, 69, (108,528,0): 112, 98, 71, (108,529,0): 111, 100, 72, (108,530,0): 113, 102, 74, (108,531,0): 114, 103, 75, (108,532,0): 117, 103, 76, (108,533,0): 118, 104, 77, (108,534,0): 117, 103, 76, (108,535,0): 117, 103, 76, (108,536,0): 121, 105, 79, (108,537,0): 121, 105, 79, (108,538,0): 121, 104, 78, (108,539,0): 120, 103, 77, (108,540,0): 118, 101, 75, (108,541,0): 117, 100, 74, (108,542,0): 119, 99, 74, (108,543,0): 119, 97, 73, (108,544,0): 117, 92, 70, (108,545,0): 117, 90, 69, (108,546,0): 115, 88, 67, (108,547,0): 112, 85, 64, (108,548,0): 110, 83, 64, (108,549,0): 107, 80, 61, (108,550,0): 105, 78, 61, (108,551,0): 104, 77, 60, (108,552,0): 102, 75, 58, (108,553,0): 102, 75, 58, (108,554,0): 102, 74, 60, (108,555,0): 102, 74, 60, (108,556,0): 102, 74, 62, (108,557,0): 102, 74, 62, (108,558,0): 103, 75, 63, (108,559,0): 102, 76, 63, (108,560,0): 97, 73, 61, (108,561,0): 97, 73, 61, (108,562,0): 98, 74, 62, (108,563,0): 98, 74, 62, (108,564,0): 98, 76, 65, (108,565,0): 99, 77, 66, (108,566,0): 99, 77, 66, (108,567,0): 100, 78, 67, (108,568,0): 96, 76, 67, (108,569,0): 95, 75, 66, (108,570,0): 93, 74, 67, (108,571,0): 92, 73, 66, (108,572,0): 90, 71, 64, (108,573,0): 89, 70, 63, (108,574,0): 87, 70, 63, (108,575,0): 86, 69, 62, (108,576,0): 85, 66, 60, (108,577,0): 85, 66, 60, (108,578,0): 86, 67, 61, (108,579,0): 86, 67, 61, (108,580,0): 87, 68, 62, (108,581,0): 88, 69, 63, (108,582,0): 88, 69, 63, (108,583,0): 88, 69, 63, (108,584,0): 90, 71, 65, (108,585,0): 89, 70, 64, (108,586,0): 87, 68, 62, (108,587,0): 84, 65, 59, (108,588,0): 81, 62, 56, (108,589,0): 79, 60, 54, (108,590,0): 76, 57, 51, (108,591,0): 74, 57, 50, (108,592,0): 72, 54, 50, (108,593,0): 69, 54, 49, (108,594,0): 68, 53, 48, (108,595,0): 68, 53, 48, (108,596,0): 67, 52, 47, (108,597,0): 67, 52, 47, (108,598,0): 67, 52, 47, (108,599,0): 67, 52, 47, (109,0,0): 34, 25, 42, (109,1,0): 34, 26, 41, (109,2,0): 34, 25, 42, (109,3,0): 35, 26, 43, (109,4,0): 38, 27, 44, (109,5,0): 40, 29, 46, (109,6,0): 43, 32, 49, (109,7,0): 44, 33, 50, (109,8,0): 44, 31, 48, (109,9,0): 42, 29, 46, (109,10,0): 40, 26, 43, (109,11,0): 37, 23, 40, (109,12,0): 37, 20, 38, (109,13,0): 36, 19, 37, (109,14,0): 37, 20, 39, (109,15,0): 37, 20, 38, (109,16,0): 35, 18, 37, (109,17,0): 34, 17, 35, (109,18,0): 33, 16, 35, (109,19,0): 32, 15, 33, (109,20,0): 30, 15, 34, (109,21,0): 30, 16, 33, (109,22,0): 31, 16, 35, (109,23,0): 32, 18, 35, (109,24,0): 34, 19, 38, (109,25,0): 34, 20, 37, (109,26,0): 34, 21, 39, (109,27,0): 35, 22, 39, (109,28,0): 36, 23, 41, (109,29,0): 37, 24, 41, (109,30,0): 38, 25, 43, (109,31,0): 38, 25, 42, (109,32,0): 39, 25, 40, (109,33,0): 41, 24, 40, (109,34,0): 41, 24, 40, (109,35,0): 40, 23, 39, (109,36,0): 39, 22, 38, (109,37,0): 38, 21, 37, (109,38,0): 36, 19, 37, (109,39,0): 35, 18, 36, (109,40,0): 37, 22, 41, (109,41,0): 37, 22, 41, (109,42,0): 36, 21, 42, (109,43,0): 34, 19, 40, (109,44,0): 33, 18, 39, (109,45,0): 31, 16, 37, (109,46,0): 30, 15, 36, (109,47,0): 28, 14, 37, (109,48,0): 27, 15, 39, (109,49,0): 27, 15, 39, (109,50,0): 25, 15, 39, (109,51,0): 25, 15, 39, (109,52,0): 25, 15, 39, (109,53,0): 25, 15, 39, (109,54,0): 24, 16, 39, (109,55,0): 24, 16, 39, (109,56,0): 23, 18, 40, (109,57,0): 23, 18, 40, (109,58,0): 23, 18, 40, (109,59,0): 23, 18, 40, (109,60,0): 22, 19, 40, (109,61,0): 22, 19, 40, (109,62,0): 22, 19, 40, (109,63,0): 22, 19, 38, (109,64,0): 22, 17, 37, (109,65,0): 24, 17, 35, (109,66,0): 24, 17, 35, (109,67,0): 24, 17, 35, (109,68,0): 24, 17, 35, (109,69,0): 24, 17, 35, (109,70,0): 24, 17, 35, (109,71,0): 24, 17, 35, (109,72,0): 24, 17, 35, (109,73,0): 23, 16, 34, (109,74,0): 23, 16, 34, (109,75,0): 22, 15, 33, (109,76,0): 22, 15, 33, (109,77,0): 21, 14, 32, (109,78,0): 21, 14, 32, (109,79,0): 21, 14, 32, (109,80,0): 25, 13, 33, (109,81,0): 25, 13, 33, (109,82,0): 23, 14, 33, (109,83,0): 22, 13, 32, (109,84,0): 21, 12, 31, (109,85,0): 21, 12, 31, (109,86,0): 20, 13, 31, (109,87,0): 19, 12, 30, (109,88,0): 15, 11, 28, (109,89,0): 15, 11, 28, (109,90,0): 15, 11, 28, (109,91,0): 15, 11, 28, (109,92,0): 14, 11, 28, (109,93,0): 14, 11, 28, (109,94,0): 14, 11, 28, (109,95,0): 14, 11, 28, (109,96,0): 18, 11, 29, (109,97,0): 18, 11, 29, (109,98,0): 18, 11, 29, (109,99,0): 18, 11, 29, (109,100,0): 18, 11, 29, (109,101,0): 18, 11, 29, (109,102,0): 18, 11, 29, (109,103,0): 18, 11, 29, (109,104,0): 18, 11, 29, (109,105,0): 18, 11, 29, (109,106,0): 17, 10, 28, (109,107,0): 16, 9, 27, (109,108,0): 16, 9, 27, (109,109,0): 17, 10, 28, (109,110,0): 18, 11, 29, (109,111,0): 16, 12, 29, (109,112,0): 15, 12, 29, (109,113,0): 15, 14, 30, (109,114,0): 15, 14, 30, (109,115,0): 16, 15, 31, (109,116,0): 18, 15, 32, (109,117,0): 19, 16, 33, (109,118,0): 21, 17, 34, (109,119,0): 21, 17, 34, (109,120,0): 23, 16, 34, (109,121,0): 24, 17, 35, (109,122,0): 26, 17, 36, (109,123,0): 27, 18, 37, (109,124,0): 30, 18, 38, (109,125,0): 30, 18, 38, (109,126,0): 29, 17, 37, (109,127,0): 28, 16, 36, (109,128,0): 32, 19, 37, (109,129,0): 32, 19, 37, (109,130,0): 32, 19, 36, (109,131,0): 32, 19, 36, (109,132,0): 32, 19, 36, (109,133,0): 32, 19, 36, (109,134,0): 33, 19, 34, (109,135,0): 33, 19, 34, (109,136,0): 34, 18, 31, (109,137,0): 35, 19, 32, (109,138,0): 37, 19, 33, (109,139,0): 37, 19, 33, (109,140,0): 37, 19, 31, (109,141,0): 35, 17, 29, (109,142,0): 34, 16, 28, (109,143,0): 33, 15, 27, (109,144,0): 38, 20, 36, (109,145,0): 38, 20, 36, (109,146,0): 38, 20, 36, (109,147,0): 38, 20, 36, (109,148,0): 38, 20, 36, (109,149,0): 38, 20, 36, (109,150,0): 38, 20, 36, (109,151,0): 38, 20, 36, (109,152,0): 38, 20, 36, (109,153,0): 38, 20, 36, (109,154,0): 38, 20, 36, (109,155,0): 39, 21, 37, (109,156,0): 40, 22, 38, (109,157,0): 40, 22, 38, (109,158,0): 40, 22, 38, (109,159,0): 41, 23, 37, (109,160,0): 39, 21, 33, (109,161,0): 39, 22, 32, (109,162,0): 39, 22, 32, (109,163,0): 39, 22, 32, (109,164,0): 39, 22, 32, (109,165,0): 39, 22, 32, (109,166,0): 39, 22, 32, (109,167,0): 39, 22, 32, (109,168,0): 39, 22, 32, (109,169,0): 39, 22, 32, (109,170,0): 39, 22, 32, (109,171,0): 39, 22, 32, (109,172,0): 39, 22, 32, (109,173,0): 39, 22, 32, (109,174,0): 39, 22, 32, (109,175,0): 38, 22, 32, (109,176,0): 37, 24, 33, (109,177,0): 36, 25, 33, (109,178,0): 36, 25, 33, (109,179,0): 36, 25, 33, (109,180,0): 36, 25, 33, (109,181,0): 36, 25, 33, (109,182,0): 36, 25, 33, (109,183,0): 36, 25, 33, (109,184,0): 37, 26, 34, (109,185,0): 37, 26, 34, (109,186,0): 37, 26, 34, (109,187,0): 38, 27, 35, (109,188,0): 39, 28, 36, (109,189,0): 39, 28, 36, (109,190,0): 39, 28, 36, (109,191,0): 41, 28, 37, (109,192,0): 46, 30, 40, (109,193,0): 47, 30, 40, (109,194,0): 47, 30, 40, (109,195,0): 48, 31, 41, (109,196,0): 50, 30, 39, (109,197,0): 51, 31, 40, (109,198,0): 51, 32, 38, (109,199,0): 51, 32, 38, (109,200,0): 56, 35, 42, (109,201,0): 56, 35, 42, (109,202,0): 57, 34, 40, (109,203,0): 57, 34, 40, (109,204,0): 57, 35, 38, (109,205,0): 57, 35, 38, (109,206,0): 59, 34, 38, (109,207,0): 59, 34, 38, (109,208,0): 60, 33, 40, (109,209,0): 60, 33, 40, (109,210,0): 60, 33, 38, (109,211,0): 59, 32, 37, (109,212,0): 59, 32, 37, (109,213,0): 58, 31, 36, (109,214,0): 58, 32, 35, (109,215,0): 58, 32, 35, (109,216,0): 58, 32, 33, (109,217,0): 58, 32, 33, (109,218,0): 58, 32, 33, (109,219,0): 58, 32, 33, (109,220,0): 58, 32, 31, (109,221,0): 58, 32, 31, (109,222,0): 58, 32, 31, (109,223,0): 57, 33, 31, (109,224,0): 55, 30, 33, (109,225,0): 53, 31, 33, (109,226,0): 53, 31, 33, (109,227,0): 53, 31, 33, (109,228,0): 53, 31, 33, (109,229,0): 53, 31, 33, (109,230,0): 53, 31, 33, (109,231,0): 53, 31, 33, (109,232,0): 55, 33, 35, (109,233,0): 55, 33, 35, (109,234,0): 55, 33, 35, (109,235,0): 55, 33, 35, (109,236,0): 55, 33, 35, (109,237,0): 55, 33, 35, (109,238,0): 55, 33, 35, (109,239,0): 57, 33, 33, (109,240,0): 60, 32, 31, (109,241,0): 61, 31, 29, (109,242,0): 61, 31, 29, (109,243,0): 61, 31, 29, (109,244,0): 61, 31, 29, (109,245,0): 61, 31, 29, (109,246,0): 61, 31, 29, (109,247,0): 61, 31, 29, (109,248,0): 61, 31, 29, (109,249,0): 61, 31, 29, (109,250,0): 61, 31, 29, (109,251,0): 62, 32, 30, (109,252,0): 62, 32, 30, (109,253,0): 63, 33, 31, (109,254,0): 63, 33, 31, (109,255,0): 63, 33, 31, (109,256,0): 61, 33, 30, (109,257,0): 61, 33, 30, (109,258,0): 63, 34, 30, (109,259,0): 63, 34, 30, (109,260,0): 64, 35, 31, (109,261,0): 64, 35, 31, (109,262,0): 66, 35, 30, (109,263,0): 66, 35, 30, (109,264,0): 70, 37, 30, (109,265,0): 70, 37, 30, (109,266,0): 71, 38, 31, (109,267,0): 72, 39, 32, (109,268,0): 74, 40, 31, (109,269,0): 75, 41, 32, (109,270,0): 76, 42, 33, (109,271,0): 76, 42, 33, (109,272,0): 78, 43, 37, (109,273,0): 77, 42, 36, (109,274,0): 77, 43, 34, (109,275,0): 76, 42, 33, (109,276,0): 77, 43, 34, (109,277,0): 78, 44, 35, (109,278,0): 80, 46, 36, (109,279,0): 81, 47, 37, (109,280,0): 80, 46, 34, (109,281,0): 81, 47, 35, (109,282,0): 81, 47, 35, (109,283,0): 81, 47, 35, (109,284,0): 82, 49, 34, (109,285,0): 83, 50, 35, (109,286,0): 83, 50, 35, (109,287,0): 82, 50, 37, (109,288,0): 81, 52, 44, (109,289,0): 80, 53, 44, (109,290,0): 82, 53, 45, (109,291,0): 83, 55, 43, (109,292,0): 86, 56, 45, (109,293,0): 89, 60, 46, (109,294,0): 94, 61, 46, (109,295,0): 98, 62, 48, (109,296,0): 99, 62, 46, (109,297,0): 104, 66, 47, (109,298,0): 111, 70, 48, (109,299,0): 118, 77, 47, (109,300,0): 126, 84, 44, (109,301,0): 134, 94, 45, (109,302,0): 145, 104, 50, (109,303,0): 152, 111, 47, (109,304,0): 172, 130, 56, (109,305,0): 174, 131, 53, (109,306,0): 176, 133, 55, (109,307,0): 178, 134, 59, (109,308,0): 178, 136, 60, (109,309,0): 176, 137, 60, (109,310,0): 176, 137, 62, (109,311,0): 174, 136, 61, (109,312,0): 168, 132, 56, (109,313,0): 166, 132, 58, (109,314,0): 167, 133, 59, (109,315,0): 167, 135, 60, (109,316,0): 166, 136, 63, (109,317,0): 167, 137, 64, (109,318,0): 168, 138, 65, (109,319,0): 168, 138, 66, (109,320,0): 171, 140, 73, (109,321,0): 172, 141, 76, (109,322,0): 174, 143, 79, (109,323,0): 175, 144, 80, (109,324,0): 176, 145, 81, (109,325,0): 176, 145, 81, (109,326,0): 175, 145, 83, (109,327,0): 175, 145, 83, (109,328,0): 173, 144, 84, (109,329,0): 173, 144, 84, (109,330,0): 171, 145, 84, (109,331,0): 171, 145, 84, (109,332,0): 171, 145, 86, (109,333,0): 171, 145, 86, (109,334,0): 171, 145, 86, (109,335,0): 170, 145, 88, (109,336,0): 168, 145, 91, (109,337,0): 167, 146, 93, (109,338,0): 167, 145, 95, (109,339,0): 166, 144, 94, (109,340,0): 165, 143, 93, (109,341,0): 163, 141, 91, (109,342,0): 160, 138, 89, (109,343,0): 159, 137, 88, (109,344,0): 160, 138, 91, (109,345,0): 160, 138, 91, (109,346,0): 160, 138, 91, (109,347,0): 160, 138, 91, (109,348,0): 160, 137, 93, (109,349,0): 160, 137, 93, (109,350,0): 160, 137, 93, (109,351,0): 160, 137, 95, (109,352,0): 159, 137, 100, (109,353,0): 159, 136, 102, (109,354,0): 162, 138, 102, (109,355,0): 163, 139, 103, (109,356,0): 168, 140, 103, (109,357,0): 170, 140, 102, (109,358,0): 174, 142, 104, (109,359,0): 176, 141, 101, (109,360,0): 183, 145, 106, (109,361,0): 185, 146, 103, (109,362,0): 188, 146, 104, (109,363,0): 191, 146, 104, (109,364,0): 194, 147, 103, (109,365,0): 194, 147, 101, (109,366,0): 195, 147, 101, (109,367,0): 197, 146, 99, (109,368,0): 200, 148, 100, (109,369,0): 207, 151, 100, (109,370,0): 216, 156, 102, (109,371,0): 226, 161, 103, (109,372,0): 235, 165, 105, (109,373,0): 242, 168, 105, (109,374,0): 244, 169, 104, (109,375,0): 244, 169, 104, (109,376,0): 236, 165, 103, (109,377,0): 233, 165, 102, (109,378,0): 229, 165, 103, (109,379,0): 227, 166, 103, (109,380,0): 227, 167, 104, (109,381,0): 229, 172, 105, (109,382,0): 232, 175, 108, (109,383,0): 234, 177, 108, (109,384,0): 234, 175, 109, (109,385,0): 237, 176, 109, (109,386,0): 241, 178, 111, (109,387,0): 243, 178, 110, (109,388,0): 245, 178, 108, (109,389,0): 248, 180, 109, (109,390,0): 252, 184, 111, (109,391,0): 255, 188, 115, (109,392,0): 254, 188, 114, (109,393,0): 252, 188, 114, (109,394,0): 249, 189, 116, (109,395,0): 244, 188, 114, (109,396,0): 237, 185, 112, (109,397,0): 229, 181, 109, (109,398,0): 221, 177, 104, (109,399,0): 217, 173, 100, (109,400,0): 221, 175, 98, (109,401,0): 221, 178, 99, (109,402,0): 223, 179, 104, (109,403,0): 222, 183, 106, (109,404,0): 223, 185, 112, (109,405,0): 221, 187, 113, (109,406,0): 220, 187, 116, (109,407,0): 217, 187, 115, (109,408,0): 211, 181, 109, (109,409,0): 211, 181, 108, (109,410,0): 215, 183, 110, (109,411,0): 219, 187, 110, (109,412,0): 226, 193, 116, (109,413,0): 231, 196, 115, (109,414,0): 232, 195, 115, (109,415,0): 230, 193, 113, (109,416,0): 229, 193, 117, (109,417,0): 230, 194, 120, (109,418,0): 228, 192, 116, (109,419,0): 224, 188, 112, (109,420,0): 220, 184, 106, (109,421,0): 219, 183, 105, (109,422,0): 221, 186, 105, (109,423,0): 224, 189, 107, (109,424,0): 230, 195, 111, (109,425,0): 235, 200, 116, (109,426,0): 240, 206, 119, (109,427,0): 241, 207, 118, (109,428,0): 238, 204, 115, (109,429,0): 234, 200, 111, (109,430,0): 231, 197, 107, (109,431,0): 231, 196, 104, (109,432,0): 236, 199, 108, (109,433,0): 236, 200, 106, (109,434,0): 236, 199, 108, (109,435,0): 234, 199, 107, (109,436,0): 233, 198, 108, (109,437,0): 231, 196, 106, (109,438,0): 229, 193, 105, (109,439,0): 227, 193, 104, (109,440,0): 221, 186, 102, (109,441,0): 218, 186, 101, (109,442,0): 215, 183, 100, (109,443,0): 212, 180, 97, (109,444,0): 209, 176, 95, (109,445,0): 205, 174, 92, (109,446,0): 203, 172, 92, (109,447,0): 203, 170, 91, (109,448,0): 204, 168, 90, (109,449,0): 202, 166, 88, (109,450,0): 201, 165, 89, (109,451,0): 200, 163, 92, (109,452,0): 197, 160, 92, (109,453,0): 190, 152, 89, (109,454,0): 179, 143, 85, (109,455,0): 171, 136, 82, (109,456,0): 163, 129, 83, (109,457,0): 156, 125, 81, (109,458,0): 148, 118, 80, (109,459,0): 140, 114, 79, (109,460,0): 135, 112, 80, (109,461,0): 129, 110, 80, (109,462,0): 122, 105, 77, (109,463,0): 119, 102, 76, (109,464,0): 110, 89, 70, (109,465,0): 106, 83, 67, (109,466,0): 100, 77, 61, (109,467,0): 97, 74, 58, (109,468,0): 99, 73, 58, (109,469,0): 101, 75, 60, (109,470,0): 100, 74, 59, (109,471,0): 100, 74, 59, (109,472,0): 105, 77, 63, (109,473,0): 105, 77, 63, (109,474,0): 108, 79, 65, (109,475,0): 112, 83, 69, (109,476,0): 115, 86, 72, (109,477,0): 116, 87, 73, (109,478,0): 116, 84, 71, (109,479,0): 112, 83, 69, (109,480,0): 107, 79, 67, (109,481,0): 103, 77, 64, (109,482,0): 100, 74, 61, (109,483,0): 99, 73, 58, (109,484,0): 100, 74, 57, (109,485,0): 105, 80, 60, (109,486,0): 111, 86, 66, (109,487,0): 114, 89, 67, (109,488,0): 117, 93, 69, (109,489,0): 119, 95, 69, (109,490,0): 121, 97, 69, (109,491,0): 124, 101, 70, (109,492,0): 124, 101, 69, (109,493,0): 124, 101, 69, (109,494,0): 122, 99, 67, (109,495,0): 121, 98, 66, (109,496,0): 119, 100, 68, (109,497,0): 120, 101, 71, (109,498,0): 120, 103, 73, (109,499,0): 121, 104, 74, (109,500,0): 121, 104, 76, (109,501,0): 121, 104, 76, (109,502,0): 119, 104, 75, (109,503,0): 119, 104, 75, (109,504,0): 113, 99, 72, (109,505,0): 112, 98, 71, (109,506,0): 112, 98, 72, (109,507,0): 110, 96, 70, (109,508,0): 107, 95, 69, (109,509,0): 106, 94, 68, (109,510,0): 106, 94, 70, (109,511,0): 105, 93, 67, (109,512,0): 110, 94, 68, (109,513,0): 111, 95, 69, (109,514,0): 112, 96, 70, (109,515,0): 113, 97, 71, (109,516,0): 114, 98, 72, (109,517,0): 114, 98, 72, (109,518,0): 113, 97, 71, (109,519,0): 113, 97, 71, (109,520,0): 114, 98, 72, (109,521,0): 113, 97, 71, (109,522,0): 112, 96, 70, (109,523,0): 110, 94, 68, (109,524,0): 110, 94, 68, (109,525,0): 110, 94, 68, (109,526,0): 111, 95, 69, (109,527,0): 110, 96, 69, (109,528,0): 111, 97, 70, (109,529,0): 110, 99, 71, (109,530,0): 112, 101, 73, (109,531,0): 114, 103, 75, (109,532,0): 117, 103, 76, (109,533,0): 117, 103, 76, (109,534,0): 117, 103, 76, (109,535,0): 117, 103, 76, (109,536,0): 119, 103, 77, (109,537,0): 119, 103, 77, (109,538,0): 119, 102, 76, (109,539,0): 119, 102, 76, (109,540,0): 119, 102, 76, (109,541,0): 118, 101, 75, (109,542,0): 120, 100, 75, (109,543,0): 121, 99, 75, (109,544,0): 119, 94, 72, (109,545,0): 119, 92, 71, (109,546,0): 117, 90, 69, (109,547,0): 115, 88, 67, (109,548,0): 112, 85, 66, (109,549,0): 109, 82, 63, (109,550,0): 107, 80, 63, (109,551,0): 106, 79, 62, (109,552,0): 105, 78, 61, (109,553,0): 104, 77, 60, (109,554,0): 102, 74, 60, (109,555,0): 101, 73, 59, (109,556,0): 100, 72, 60, (109,557,0): 100, 72, 60, (109,558,0): 101, 73, 61, (109,559,0): 100, 74, 61, (109,560,0): 98, 71, 60, (109,561,0): 96, 72, 60, (109,562,0): 97, 73, 61, (109,563,0): 97, 73, 61, (109,564,0): 96, 74, 63, (109,565,0): 96, 74, 63, (109,566,0): 97, 75, 64, (109,567,0): 97, 75, 64, (109,568,0): 95, 75, 66, (109,569,0): 94, 74, 65, (109,570,0): 92, 73, 66, (109,571,0): 91, 72, 65, (109,572,0): 90, 71, 64, (109,573,0): 89, 70, 63, (109,574,0): 87, 70, 63, (109,575,0): 87, 70, 63, (109,576,0): 84, 65, 59, (109,577,0): 84, 65, 59, (109,578,0): 85, 66, 60, (109,579,0): 86, 67, 61, (109,580,0): 87, 68, 62, (109,581,0): 88, 69, 63, (109,582,0): 89, 70, 64, (109,583,0): 89, 70, 64, (109,584,0): 91, 72, 66, (109,585,0): 90, 71, 65, (109,586,0): 88, 69, 63, (109,587,0): 85, 66, 60, (109,588,0): 83, 64, 58, (109,589,0): 81, 62, 56, (109,590,0): 79, 60, 54, (109,591,0): 77, 60, 53, (109,592,0): 74, 56, 52, (109,593,0): 71, 56, 51, (109,594,0): 70, 55, 50, (109,595,0): 69, 54, 49, (109,596,0): 68, 53, 48, (109,597,0): 68, 53, 48, (109,598,0): 69, 54, 49, (109,599,0): 69, 54, 49, (110,0,0): 36, 25, 41, (110,1,0): 36, 25, 39, (110,2,0): 36, 25, 41, (110,3,0): 37, 26, 42, (110,4,0): 40, 27, 44, (110,5,0): 42, 29, 46, (110,6,0): 45, 32, 49, (110,7,0): 46, 33, 50, (110,8,0): 45, 32, 50, (110,9,0): 43, 30, 48, (110,10,0): 41, 26, 45, (110,11,0): 39, 24, 43, (110,12,0): 36, 21, 40, (110,13,0): 34, 19, 38, (110,14,0): 33, 18, 39, (110,15,0): 33, 18, 37, (110,16,0): 37, 19, 41, (110,17,0): 36, 19, 38, (110,18,0): 34, 16, 38, (110,19,0): 33, 16, 35, (110,20,0): 30, 15, 36, (110,21,0): 30, 15, 34, (110,22,0): 31, 16, 37, (110,23,0): 31, 16, 35, (110,24,0): 34, 21, 41, (110,25,0): 34, 21, 39, (110,26,0): 35, 22, 42, (110,27,0): 36, 23, 41, (110,28,0): 36, 24, 44, (110,29,0): 37, 26, 43, (110,30,0): 38, 26, 46, (110,31,0): 40, 27, 45, (110,32,0): 40, 26, 43, (110,33,0): 39, 25, 40, (110,34,0): 37, 23, 38, (110,35,0): 36, 22, 37, (110,36,0): 35, 21, 38, (110,37,0): 34, 20, 37, (110,38,0): 34, 20, 37, (110,39,0): 34, 20, 37, (110,40,0): 38, 23, 42, (110,41,0): 38, 23, 42, (110,42,0): 36, 21, 42, (110,43,0): 35, 20, 41, (110,44,0): 33, 18, 39, (110,45,0): 31, 16, 37, (110,46,0): 30, 15, 38, (110,47,0): 28, 14, 37, (110,48,0): 26, 14, 38, (110,49,0): 24, 14, 38, (110,50,0): 24, 14, 38, (110,51,0): 24, 14, 38, (110,52,0): 23, 15, 38, (110,53,0): 24, 16, 39, (110,54,0): 24, 16, 39, (110,55,0): 24, 16, 39, (110,56,0): 23, 18, 40, (110,57,0): 23, 18, 40, (110,58,0): 22, 19, 40, (110,59,0): 22, 19, 40, (110,60,0): 22, 19, 40, (110,61,0): 22, 19, 40, (110,62,0): 21, 19, 40, (110,63,0): 22, 19, 38, (110,64,0): 21, 16, 36, (110,65,0): 23, 16, 34, (110,66,0): 23, 16, 34, (110,67,0): 23, 16, 34, (110,68,0): 23, 16, 34, (110,69,0): 23, 16, 34, (110,70,0): 23, 16, 34, (110,71,0): 23, 16, 34, (110,72,0): 23, 16, 34, (110,73,0): 23, 16, 34, (110,74,0): 23, 16, 34, (110,75,0): 22, 15, 33, (110,76,0): 22, 15, 33, (110,77,0): 21, 14, 32, (110,78,0): 21, 14, 32, (110,79,0): 20, 13, 31, (110,80,0): 25, 13, 33, (110,81,0): 24, 12, 32, (110,82,0): 22, 13, 32, (110,83,0): 22, 13, 32, (110,84,0): 21, 12, 31, (110,85,0): 21, 12, 31, (110,86,0): 19, 12, 30, (110,87,0): 19, 12, 30, (110,88,0): 16, 12, 29, (110,89,0): 16, 12, 29, (110,90,0): 16, 12, 29, (110,91,0): 16, 12, 29, (110,92,0): 15, 12, 29, (110,93,0): 15, 12, 29, (110,94,0): 15, 12, 29, (110,95,0): 15, 12, 29, (110,96,0): 17, 10, 28, (110,97,0): 17, 10, 28, (110,98,0): 17, 10, 28, (110,99,0): 17, 10, 28, (110,100,0): 17, 10, 28, (110,101,0): 17, 10, 28, (110,102,0): 17, 10, 28, (110,103,0): 17, 10, 28, (110,104,0): 19, 12, 30, (110,105,0): 18, 11, 29, (110,106,0): 17, 10, 28, (110,107,0): 17, 10, 28, (110,108,0): 17, 10, 28, (110,109,0): 17, 10, 28, (110,110,0): 18, 11, 29, (110,111,0): 17, 13, 30, (110,112,0): 13, 12, 28, (110,113,0): 12, 14, 29, (110,114,0): 14, 13, 29, (110,115,0): 16, 15, 31, (110,116,0): 18, 15, 32, (110,117,0): 19, 16, 33, (110,118,0): 21, 17, 34, (110,119,0): 22, 18, 35, (110,120,0): 23, 16, 34, (110,121,0): 24, 17, 35, (110,122,0): 26, 17, 36, (110,123,0): 30, 18, 38, (110,124,0): 30, 18, 38, (110,125,0): 30, 18, 38, (110,126,0): 30, 17, 37, (110,127,0): 30, 17, 37, (110,128,0): 33, 20, 38, (110,129,0): 33, 20, 38, (110,130,0): 33, 20, 37, (110,131,0): 33, 20, 37, (110,132,0): 34, 20, 37, (110,133,0): 34, 20, 37, (110,134,0): 34, 20, 35, (110,135,0): 34, 20, 35, (110,136,0): 35, 19, 32, (110,137,0): 36, 20, 33, (110,138,0): 37, 19, 33, (110,139,0): 37, 19, 33, (110,140,0): 36, 18, 30, (110,141,0): 35, 17, 29, (110,142,0): 35, 15, 27, (110,143,0): 34, 14, 26, (110,144,0): 38, 20, 36, (110,145,0): 38, 20, 36, (110,146,0): 38, 20, 36, (110,147,0): 38, 20, 36, (110,148,0): 38, 20, 36, (110,149,0): 38, 20, 36, (110,150,0): 38, 20, 36, (110,151,0): 38, 20, 36, (110,152,0): 38, 20, 36, (110,153,0): 39, 21, 37, (110,154,0): 39, 21, 37, (110,155,0): 39, 21, 37, (110,156,0): 40, 22, 38, (110,157,0): 40, 22, 38, (110,158,0): 41, 23, 39, (110,159,0): 41, 23, 37, (110,160,0): 39, 22, 32, (110,161,0): 39, 22, 30, (110,162,0): 39, 22, 30, (110,163,0): 39, 22, 30, (110,164,0): 39, 22, 30, (110,165,0): 39, 22, 30, (110,166,0): 39, 22, 30, (110,167,0): 39, 22, 30, (110,168,0): 39, 22, 30, (110,169,0): 39, 22, 30, (110,170,0): 39, 22, 30, (110,171,0): 39, 22, 30, (110,172,0): 39, 22, 30, (110,173,0): 39, 22, 30, (110,174,0): 39, 22, 30, (110,175,0): 38, 23, 30, (110,176,0): 37, 24, 31, (110,177,0): 36, 25, 31, (110,178,0): 36, 25, 31, (110,179,0): 36, 25, 31, (110,180,0): 36, 25, 31, (110,181,0): 36, 25, 31, (110,182,0): 36, 25, 31, (110,183,0): 36, 25, 31, (110,184,0): 37, 26, 32, (110,185,0): 38, 27, 33, (110,186,0): 38, 27, 33, (110,187,0): 38, 27, 33, (110,188,0): 39, 28, 34, (110,189,0): 39, 28, 34, (110,190,0): 40, 29, 35, (110,191,0): 41, 28, 35, (110,192,0): 45, 29, 39, (110,193,0): 46, 29, 39, (110,194,0): 46, 29, 37, (110,195,0): 47, 30, 38, (110,196,0): 49, 29, 38, (110,197,0): 50, 30, 39, (110,198,0): 51, 30, 37, (110,199,0): 51, 30, 37, (110,200,0): 54, 33, 38, (110,201,0): 54, 33, 38, (110,202,0): 55, 32, 38, (110,203,0): 55, 32, 38, (110,204,0): 57, 32, 36, (110,205,0): 57, 32, 36, (110,206,0): 57, 32, 36, (110,207,0): 57, 32, 36, (110,208,0): 60, 33, 38, (110,209,0): 60, 33, 38, (110,210,0): 60, 33, 38, (110,211,0): 59, 32, 37, (110,212,0): 59, 32, 37, (110,213,0): 58, 31, 36, (110,214,0): 58, 32, 35, (110,215,0): 58, 32, 35, (110,216,0): 58, 32, 33, (110,217,0): 58, 32, 33, (110,218,0): 58, 32, 31, (110,219,0): 58, 32, 31, (110,220,0): 58, 32, 31, (110,221,0): 58, 32, 31, (110,222,0): 58, 32, 31, (110,223,0): 57, 33, 31, (110,224,0): 55, 30, 33, (110,225,0): 53, 31, 33, (110,226,0): 53, 31, 33, (110,227,0): 53, 31, 33, (110,228,0): 53, 31, 33, (110,229,0): 53, 31, 33, (110,230,0): 53, 31, 33, (110,231,0): 53, 31, 33, (110,232,0): 56, 34, 36, (110,233,0): 56, 34, 36, (110,234,0): 56, 34, 36, (110,235,0): 56, 34, 36, (110,236,0): 56, 34, 36, (110,237,0): 56, 34, 36, (110,238,0): 56, 34, 36, (110,239,0): 58, 34, 34, (110,240,0): 60, 32, 29, (110,241,0): 61, 32, 28, (110,242,0): 61, 32, 28, (110,243,0): 61, 32, 28, (110,244,0): 61, 32, 28, (110,245,0): 61, 32, 28, (110,246,0): 61, 32, 28, (110,247,0): 61, 32, 28, (110,248,0): 61, 32, 28, (110,249,0): 61, 32, 28, (110,250,0): 61, 32, 28, (110,251,0): 62, 33, 29, (110,252,0): 62, 33, 29, (110,253,0): 63, 34, 30, (110,254,0): 63, 34, 30, (110,255,0): 63, 34, 30, (110,256,0): 61, 33, 30, (110,257,0): 61, 33, 30, (110,258,0): 63, 34, 30, (110,259,0): 63, 34, 30, (110,260,0): 64, 35, 31, (110,261,0): 64, 35, 31, (110,262,0): 66, 35, 30, (110,263,0): 66, 35, 30, (110,264,0): 70, 37, 30, (110,265,0): 70, 37, 30, (110,266,0): 71, 38, 31, (110,267,0): 72, 39, 32, (110,268,0): 74, 40, 31, (110,269,0): 75, 41, 32, (110,270,0): 76, 42, 33, (110,271,0): 76, 42, 33, (110,272,0): 78, 44, 35, (110,273,0): 77, 43, 34, (110,274,0): 77, 43, 34, (110,275,0): 76, 42, 33, (110,276,0): 77, 43, 33, (110,277,0): 78, 44, 34, (110,278,0): 80, 46, 36, (110,279,0): 81, 47, 37, (110,280,0): 80, 46, 34, (110,281,0): 80, 46, 34, (110,282,0): 81, 48, 33, (110,283,0): 81, 48, 33, (110,284,0): 82, 49, 34, (110,285,0): 82, 49, 34, (110,286,0): 82, 49, 32, (110,287,0): 82, 50, 37, (110,288,0): 80, 53, 44, (110,289,0): 78, 54, 44, (110,290,0): 80, 53, 44, (110,291,0): 82, 54, 42, (110,292,0): 86, 56, 45, (110,293,0): 88, 59, 45, (110,294,0): 94, 61, 46, (110,295,0): 98, 62, 48, (110,296,0): 99, 62, 46, (110,297,0): 104, 66, 47, (110,298,0): 111, 70, 48, (110,299,0): 117, 76, 46, (110,300,0): 125, 83, 43, (110,301,0): 133, 93, 44, (110,302,0): 144, 103, 49, (110,303,0): 152, 111, 47, (110,304,0): 173, 131, 57, (110,305,0): 175, 132, 53, (110,306,0): 177, 134, 55, (110,307,0): 179, 136, 58, (110,308,0): 179, 138, 59, (110,309,0): 177, 138, 59, (110,310,0): 177, 138, 61, (110,311,0): 175, 138, 60, (110,312,0): 171, 135, 57, (110,313,0): 169, 136, 59, (110,314,0): 170, 137, 60, (110,315,0): 170, 138, 61, (110,316,0): 169, 140, 64, (110,317,0): 170, 141, 65, (110,318,0): 171, 142, 66, (110,319,0): 172, 142, 69, (110,320,0): 174, 141, 74, (110,321,0): 175, 141, 77, (110,322,0): 175, 144, 79, (110,323,0): 177, 146, 81, (110,324,0): 178, 147, 83, (110,325,0): 179, 148, 84, (110,326,0): 178, 148, 84, (110,327,0): 177, 147, 83, (110,328,0): 174, 146, 83, (110,329,0): 174, 146, 83, (110,330,0): 174, 145, 85, (110,331,0): 174, 145, 85, (110,332,0): 172, 146, 85, (110,333,0): 172, 146, 85, (110,334,0): 171, 145, 86, (110,335,0): 170, 145, 88, (110,336,0): 171, 148, 94, (110,337,0): 170, 149, 96, (110,338,0): 170, 149, 96, (110,339,0): 169, 148, 95, (110,340,0): 167, 145, 95, (110,341,0): 165, 143, 93, (110,342,0): 162, 140, 91, (110,343,0): 161, 139, 90, (110,344,0): 161, 139, 90, (110,345,0): 161, 139, 90, (110,346,0): 161, 139, 92, (110,347,0): 161, 139, 92, (110,348,0): 161, 138, 94, (110,349,0): 161, 138, 94, (110,350,0): 161, 138, 94, (110,351,0): 161, 138, 96, (110,352,0): 159, 137, 100, (110,353,0): 159, 136, 102, (110,354,0): 162, 138, 102, (110,355,0): 163, 139, 103, (110,356,0): 168, 140, 103, (110,357,0): 170, 140, 102, (110,358,0): 174, 142, 104, (110,359,0): 176, 141, 101, (110,360,0): 186, 148, 109, (110,361,0): 186, 147, 104, (110,362,0): 187, 145, 103, (110,363,0): 189, 144, 102, (110,364,0): 191, 144, 100, (110,365,0): 193, 145, 99, (110,366,0): 196, 145, 100, (110,367,0): 197, 147, 98, (110,368,0): 204, 152, 102, (110,369,0): 210, 155, 99, (110,370,0): 219, 158, 101, (110,371,0): 229, 163, 102, (110,372,0): 238, 167, 103, (110,373,0): 244, 169, 102, (110,374,0): 248, 171, 103, (110,375,0): 249, 172, 104, (110,376,0): 240, 166, 101, (110,377,0): 235, 166, 101, (110,378,0): 231, 166, 102, (110,379,0): 227, 166, 101, (110,380,0): 227, 168, 102, (110,381,0): 228, 171, 102, (110,382,0): 231, 174, 105, (110,383,0): 234, 177, 106, (110,384,0): 237, 178, 110, (110,385,0): 240, 180, 110, (110,386,0): 243, 180, 111, (110,387,0): 244, 180, 109, (110,388,0): 246, 179, 109, (110,389,0): 249, 181, 110, (110,390,0): 253, 185, 112, (110,391,0): 255, 189, 116, (110,392,0): 252, 185, 114, (110,393,0): 249, 187, 114, (110,394,0): 246, 188, 115, (110,395,0): 241, 187, 113, (110,396,0): 234, 184, 111, (110,397,0): 228, 181, 109, (110,398,0): 220, 178, 106, (110,399,0): 217, 175, 101, (110,400,0): 219, 176, 98, (110,401,0): 220, 177, 98, (110,402,0): 222, 178, 103, (110,403,0): 221, 182, 105, (110,404,0): 222, 184, 111, (110,405,0): 220, 186, 112, (110,406,0): 219, 186, 115, (110,407,0): 218, 188, 116, (110,408,0): 214, 184, 112, (110,409,0): 213, 185, 111, (110,410,0): 216, 186, 113, (110,411,0): 223, 191, 114, (110,412,0): 230, 197, 120, (110,413,0): 235, 200, 119, (110,414,0): 236, 199, 119, (110,415,0): 234, 197, 117, (110,416,0): 230, 194, 116, (110,417,0): 232, 196, 120, (110,418,0): 232, 196, 120, (110,419,0): 229, 193, 117, (110,420,0): 225, 189, 111, (110,421,0): 223, 187, 109, (110,422,0): 224, 189, 108, (110,423,0): 226, 191, 109, (110,424,0): 233, 198, 114, (110,425,0): 236, 201, 117, (110,426,0): 238, 204, 117, (110,427,0): 237, 203, 114, (110,428,0): 235, 201, 112, (110,429,0): 232, 198, 108, (110,430,0): 232, 198, 108, (110,431,0): 235, 200, 108, (110,432,0): 241, 204, 113, (110,433,0): 239, 203, 109, (110,434,0): 237, 200, 109, (110,435,0): 234, 197, 106, (110,436,0): 233, 196, 107, (110,437,0): 231, 196, 106, (110,438,0): 230, 194, 106, (110,439,0): 229, 195, 106, (110,440,0): 224, 189, 105, (110,441,0): 223, 188, 104, (110,442,0): 221, 186, 104, (110,443,0): 216, 184, 101, (110,444,0): 213, 180, 99, (110,445,0): 209, 176, 95, (110,446,0): 207, 174, 95, (110,447,0): 205, 172, 93, (110,448,0): 209, 174, 93, (110,449,0): 207, 170, 92, (110,450,0): 204, 166, 91, (110,451,0): 201, 163, 92, (110,452,0): 196, 159, 91, (110,453,0): 190, 152, 89, (110,454,0): 180, 144, 86, (110,455,0): 173, 138, 84, (110,456,0): 166, 132, 86, (110,457,0): 159, 128, 84, (110,458,0): 149, 121, 82, (110,459,0): 140, 116, 82, (110,460,0): 136, 113, 82, (110,461,0): 130, 111, 81, (110,462,0): 123, 106, 78, (110,463,0): 120, 102, 78, (110,464,0): 110, 89, 68, (110,465,0): 106, 85, 66, (110,466,0): 103, 80, 62, (110,467,0): 102, 79, 61, (110,468,0): 103, 80, 62, (110,469,0): 104, 81, 63, (110,470,0): 104, 78, 61, (110,471,0): 103, 77, 60, (110,472,0): 110, 83, 66, (110,473,0): 108, 81, 64, (110,474,0): 108, 81, 64, (110,475,0): 111, 84, 67, (110,476,0): 116, 87, 71, (110,477,0): 118, 89, 73, (110,478,0): 117, 88, 72, (110,479,0): 115, 86, 72, (110,480,0): 110, 82, 70, (110,481,0): 108, 80, 68, (110,482,0): 105, 77, 63, (110,483,0): 104, 76, 62, (110,484,0): 104, 77, 60, (110,485,0): 107, 80, 61, (110,486,0): 111, 84, 65, (110,487,0): 113, 87, 64, (110,488,0): 116, 90, 65, (110,489,0): 118, 92, 65, (110,490,0): 121, 95, 68, (110,491,0): 124, 99, 69, (110,492,0): 125, 100, 69, (110,493,0): 125, 101, 67, (110,494,0): 123, 99, 65, (110,495,0): 121, 98, 64, (110,496,0): 120, 101, 69, (110,497,0): 119, 102, 72, (110,498,0): 121, 104, 74, (110,499,0): 122, 105, 75, (110,500,0): 123, 106, 78, (110,501,0): 122, 105, 77, (110,502,0): 121, 106, 77, (110,503,0): 120, 105, 76, (110,504,0): 116, 102, 75, (110,505,0): 116, 102, 75, (110,506,0): 113, 101, 75, (110,507,0): 112, 100, 74, (110,508,0): 111, 99, 73, (110,509,0): 110, 98, 72, (110,510,0): 109, 97, 73, (110,511,0): 109, 97, 71, (110,512,0): 111, 95, 69, (110,513,0): 113, 98, 69, (110,514,0): 114, 99, 70, (110,515,0): 116, 101, 72, (110,516,0): 117, 102, 73, (110,517,0): 116, 101, 72, (110,518,0): 115, 100, 71, (110,519,0): 114, 99, 70, (110,520,0): 114, 99, 70, (110,521,0): 113, 98, 69, (110,522,0): 112, 97, 68, (110,523,0): 111, 96, 67, (110,524,0): 110, 95, 66, (110,525,0): 110, 95, 66, (110,526,0): 111, 96, 67, (110,527,0): 111, 97, 68, (110,528,0): 111, 97, 68, (110,529,0): 110, 99, 69, (110,530,0): 112, 101, 71, (110,531,0): 113, 102, 72, (110,532,0): 116, 102, 73, (110,533,0): 117, 103, 74, (110,534,0): 116, 102, 73, (110,535,0): 116, 102, 73, (110,536,0): 116, 101, 72, (110,537,0): 116, 101, 72, (110,538,0): 117, 100, 72, (110,539,0): 118, 101, 73, (110,540,0): 118, 101, 73, (110,541,0): 119, 102, 74, (110,542,0): 121, 101, 74, (110,543,0): 122, 100, 76, (110,544,0): 121, 96, 74, (110,545,0): 121, 94, 73, (110,546,0): 119, 92, 71, (110,547,0): 117, 90, 69, (110,548,0): 114, 87, 68, (110,549,0): 112, 85, 66, (110,550,0): 110, 83, 66, (110,551,0): 109, 82, 65, (110,552,0): 107, 80, 63, (110,553,0): 105, 78, 61, (110,554,0): 103, 75, 61, (110,555,0): 100, 72, 58, (110,556,0): 99, 71, 59, (110,557,0): 98, 70, 58, (110,558,0): 99, 71, 59, (110,559,0): 98, 72, 59, (110,560,0): 98, 71, 60, (110,561,0): 96, 72, 60, (110,562,0): 96, 72, 60, (110,563,0): 95, 71, 59, (110,564,0): 94, 72, 61, (110,565,0): 94, 72, 61, (110,566,0): 93, 71, 60, (110,567,0): 93, 71, 60, (110,568,0): 93, 73, 64, (110,569,0): 93, 73, 64, (110,570,0): 91, 72, 65, (110,571,0): 91, 72, 65, (110,572,0): 90, 71, 64, (110,573,0): 89, 70, 63, (110,574,0): 87, 70, 63, (110,575,0): 87, 70, 63, (110,576,0): 82, 63, 56, (110,577,0): 83, 64, 57, (110,578,0): 84, 65, 58, (110,579,0): 85, 66, 59, (110,580,0): 86, 67, 60, (110,581,0): 87, 68, 61, (110,582,0): 88, 69, 62, (110,583,0): 89, 70, 63, (110,584,0): 89, 70, 63, (110,585,0): 89, 70, 63, (110,586,0): 87, 68, 61, (110,587,0): 86, 67, 60, (110,588,0): 84, 65, 58, (110,589,0): 82, 63, 56, (110,590,0): 81, 62, 55, (110,591,0): 79, 62, 55, (110,592,0): 77, 59, 55, (110,593,0): 73, 58, 53, (110,594,0): 71, 56, 51, (110,595,0): 70, 55, 50, (110,596,0): 69, 54, 49, (110,597,0): 70, 55, 50, (110,598,0): 71, 56, 51, (110,599,0): 72, 57, 52, (111,0,0): 34, 26, 41, (111,1,0): 34, 26, 41, (111,2,0): 36, 25, 41, (111,3,0): 37, 26, 42, (111,4,0): 40, 27, 44, (111,5,0): 43, 30, 47, (111,6,0): 46, 32, 47, (111,7,0): 48, 34, 49, (111,8,0): 49, 32, 50, (111,9,0): 48, 31, 49, (111,10,0): 46, 29, 47, (111,11,0): 43, 26, 44, (111,12,0): 39, 22, 41, (111,13,0): 34, 19, 38, (111,14,0): 31, 16, 35, (111,15,0): 30, 15, 34, (111,16,0): 37, 22, 43, (111,17,0): 35, 20, 41, (111,18,0): 36, 18, 40, (111,19,0): 32, 17, 36, (111,20,0): 31, 16, 37, (111,21,0): 31, 16, 35, (111,22,0): 31, 16, 35, (111,23,0): 31, 16, 35, (111,24,0): 36, 21, 40, (111,25,0): 36, 21, 40, (111,26,0): 37, 22, 41, (111,27,0): 37, 22, 41, (111,28,0): 37, 24, 42, (111,29,0): 39, 26, 44, (111,30,0): 40, 27, 45, (111,31,0): 41, 28, 45, (111,32,0): 41, 27, 42, (111,33,0): 39, 25, 40, (111,34,0): 36, 22, 37, (111,35,0): 34, 20, 35, (111,36,0): 33, 19, 36, (111,37,0): 33, 19, 36, (111,38,0): 34, 20, 37, (111,39,0): 35, 21, 38, (111,40,0): 39, 24, 43, (111,41,0): 37, 24, 42, (111,42,0): 37, 22, 43, (111,43,0): 34, 21, 41, (111,44,0): 32, 19, 39, (111,45,0): 30, 17, 37, (111,46,0): 29, 15, 38, (111,47,0): 28, 14, 37, (111,48,0): 25, 13, 37, (111,49,0): 23, 13, 37, (111,50,0): 24, 14, 38, (111,51,0): 24, 14, 38, (111,52,0): 23, 15, 38, (111,53,0): 24, 16, 39, (111,54,0): 24, 16, 39, (111,55,0): 24, 16, 39, (111,56,0): 25, 17, 40, (111,57,0): 23, 18, 40, (111,58,0): 23, 18, 40, (111,59,0): 23, 18, 40, (111,60,0): 23, 18, 40, (111,61,0): 23, 18, 40, (111,62,0): 22, 19, 40, (111,63,0): 22, 19, 38, (111,64,0): 21, 16, 36, (111,65,0): 23, 16, 34, (111,66,0): 23, 16, 34, (111,67,0): 23, 16, 34, (111,68,0): 23, 16, 34, (111,69,0): 23, 16, 34, (111,70,0): 23, 16, 34, (111,71,0): 23, 16, 34, (111,72,0): 23, 16, 34, (111,73,0): 23, 16, 34, (111,74,0): 22, 15, 33, (111,75,0): 22, 15, 33, (111,76,0): 21, 14, 32, (111,77,0): 21, 14, 32, (111,78,0): 20, 13, 31, (111,79,0): 20, 13, 31, (111,80,0): 23, 14, 33, (111,81,0): 22, 13, 32, (111,82,0): 21, 13, 34, (111,83,0): 20, 13, 31, (111,84,0): 20, 12, 33, (111,85,0): 19, 12, 30, (111,86,0): 19, 11, 32, (111,87,0): 17, 13, 30, (111,88,0): 16, 11, 31, (111,89,0): 16, 12, 29, (111,90,0): 16, 11, 31, (111,91,0): 16, 12, 29, (111,92,0): 15, 12, 31, (111,93,0): 15, 12, 29, (111,94,0): 15, 12, 31, (111,95,0): 15, 12, 29, (111,96,0): 15, 11, 28, (111,97,0): 15, 11, 28, (111,98,0): 15, 11, 28, (111,99,0): 15, 11, 28, (111,100,0): 15, 11, 28, (111,101,0): 15, 11, 28, (111,102,0): 15, 11, 28, (111,103,0): 15, 11, 28, (111,104,0): 18, 14, 31, (111,105,0): 17, 13, 30, (111,106,0): 16, 12, 29, (111,107,0): 15, 11, 28, (111,108,0): 15, 11, 28, (111,109,0): 16, 12, 29, (111,110,0): 17, 13, 30, (111,111,0): 17, 14, 31, (111,112,0): 13, 12, 28, (111,113,0): 11, 13, 28, (111,114,0): 14, 13, 29, (111,115,0): 15, 14, 30, (111,116,0): 18, 15, 32, (111,117,0): 19, 16, 33, (111,118,0): 21, 17, 34, (111,119,0): 22, 18, 35, (111,120,0): 23, 16, 34, (111,121,0): 24, 17, 35, (111,122,0): 27, 18, 37, (111,123,0): 30, 18, 38, (111,124,0): 30, 18, 38, (111,125,0): 30, 18, 38, (111,126,0): 30, 18, 38, (111,127,0): 30, 17, 35, (111,128,0): 33, 20, 37, (111,129,0): 33, 20, 37, (111,130,0): 34, 20, 35, (111,131,0): 34, 20, 35, (111,132,0): 34, 20, 35, (111,133,0): 34, 20, 35, (111,134,0): 34, 20, 35, (111,135,0): 34, 20, 33, (111,136,0): 35, 19, 32, (111,137,0): 36, 20, 33, (111,138,0): 37, 19, 33, (111,139,0): 37, 19, 33, (111,140,0): 36, 18, 30, (111,141,0): 35, 17, 29, (111,142,0): 33, 15, 27, (111,143,0): 32, 14, 26, (111,144,0): 38, 20, 34, (111,145,0): 38, 20, 34, (111,146,0): 38, 20, 36, (111,147,0): 38, 20, 34, (111,148,0): 38, 20, 36, (111,149,0): 38, 20, 34, (111,150,0): 38, 20, 36, (111,151,0): 38, 20, 34, (111,152,0): 38, 20, 36, (111,153,0): 39, 21, 35, (111,154,0): 39, 21, 37, (111,155,0): 40, 22, 36, (111,156,0): 40, 22, 38, (111,157,0): 41, 23, 37, (111,158,0): 41, 23, 39, (111,159,0): 41, 23, 37, (111,160,0): 39, 22, 32, (111,161,0): 39, 22, 30, (111,162,0): 39, 22, 30, (111,163,0): 39, 22, 30, (111,164,0): 39, 22, 30, (111,165,0): 39, 22, 30, (111,166,0): 39, 22, 30, (111,167,0): 39, 22, 30, (111,168,0): 39, 22, 30, (111,169,0): 39, 22, 30, (111,170,0): 39, 22, 30, (111,171,0): 39, 22, 30, (111,172,0): 39, 22, 30, (111,173,0): 39, 22, 30, (111,174,0): 39, 22, 30, (111,175,0): 38, 23, 30, (111,176,0): 37, 24, 33, (111,177,0): 36, 25, 33, (111,178,0): 36, 25, 33, (111,179,0): 36, 25, 33, (111,180,0): 36, 25, 33, (111,181,0): 36, 25, 33, (111,182,0): 36, 25, 33, (111,183,0): 36, 25, 33, (111,184,0): 37, 26, 34, (111,185,0): 38, 27, 35, (111,186,0): 38, 27, 35, (111,187,0): 39, 28, 36, (111,188,0): 39, 28, 36, (111,189,0): 40, 29, 37, (111,190,0): 40, 29, 37, (111,191,0): 41, 28, 37, (111,192,0): 44, 28, 38, (111,193,0): 45, 28, 38, (111,194,0): 45, 28, 36, (111,195,0): 46, 29, 37, (111,196,0): 48, 28, 37, (111,197,0): 49, 29, 38, (111,198,0): 50, 29, 36, (111,199,0): 51, 30, 37, (111,200,0): 54, 33, 40, (111,201,0): 54, 33, 38, (111,202,0): 55, 32, 38, (111,203,0): 55, 32, 38, (111,204,0): 57, 32, 36, (111,205,0): 57, 32, 36, (111,206,0): 57, 32, 36, (111,207,0): 57, 32, 36, (111,208,0): 59, 34, 40, (111,209,0): 59, 34, 40, (111,210,0): 60, 33, 40, (111,211,0): 58, 33, 37, (111,212,0): 59, 32, 39, (111,213,0): 57, 32, 36, (111,214,0): 58, 31, 36, (111,215,0): 57, 32, 35, (111,216,0): 58, 32, 35, (111,217,0): 57, 33, 33, (111,218,0): 58, 32, 33, (111,219,0): 57, 33, 33, (111,220,0): 58, 32, 33, (111,221,0): 57, 33, 31, (111,222,0): 58, 32, 33, (111,223,0): 57, 33, 33, (111,224,0): 55, 31, 31, (111,225,0): 55, 31, 31, (111,226,0): 55, 30, 33, (111,227,0): 55, 31, 31, (111,228,0): 55, 30, 33, (111,229,0): 55, 31, 31, (111,230,0): 55, 30, 33, (111,231,0): 55, 31, 31, (111,232,0): 59, 34, 37, (111,233,0): 59, 35, 35, (111,234,0): 59, 34, 37, (111,235,0): 59, 35, 35, (111,236,0): 59, 34, 37, (111,237,0): 59, 35, 35, (111,238,0): 59, 34, 37, (111,239,0): 60, 34, 35, (111,240,0): 60, 32, 29, (111,241,0): 61, 32, 28, (111,242,0): 61, 31, 29, (111,243,0): 61, 32, 28, (111,244,0): 61, 31, 29, (111,245,0): 61, 32, 28, (111,246,0): 61, 31, 29, (111,247,0): 61, 32, 28, (111,248,0): 61, 31, 29, (111,249,0): 61, 32, 28, (111,250,0): 61, 31, 29, (111,251,0): 62, 33, 29, (111,252,0): 62, 32, 30, (111,253,0): 63, 34, 30, (111,254,0): 63, 33, 31, (111,255,0): 63, 34, 30, (111,256,0): 62, 33, 29, (111,257,0): 62, 33, 29, (111,258,0): 63, 34, 28, (111,259,0): 63, 34, 28, (111,260,0): 64, 35, 29, (111,261,0): 64, 35, 29, (111,262,0): 66, 35, 30, (111,263,0): 66, 36, 28, (111,264,0): 70, 37, 30, (111,265,0): 70, 37, 30, (111,266,0): 71, 38, 31, (111,267,0): 72, 39, 32, (111,268,0): 73, 40, 31, (111,269,0): 74, 41, 32, (111,270,0): 76, 42, 33, (111,271,0): 76, 42, 33, (111,272,0): 78, 44, 35, (111,273,0): 77, 43, 34, (111,274,0): 77, 43, 34, (111,275,0): 76, 42, 33, (111,276,0): 77, 43, 33, (111,277,0): 78, 44, 34, (111,278,0): 80, 46, 36, (111,279,0): 81, 47, 37, (111,280,0): 80, 46, 36, (111,281,0): 80, 46, 34, (111,282,0): 80, 46, 34, (111,283,0): 81, 47, 35, (111,284,0): 81, 47, 35, (111,285,0): 82, 48, 36, (111,286,0): 82, 49, 34, (111,287,0): 82, 50, 37, (111,288,0): 80, 52, 41, (111,289,0): 79, 52, 43, (111,290,0): 81, 53, 42, (111,291,0): 82, 54, 42, (111,292,0): 85, 56, 42, (111,293,0): 88, 59, 43, (111,294,0): 93, 61, 46, (111,295,0): 95, 62, 45, (111,296,0): 98, 62, 46, (111,297,0): 102, 65, 46, (111,298,0): 109, 71, 48, (111,299,0): 116, 77, 46, (111,300,0): 123, 84, 45, (111,301,0): 133, 92, 46, (111,302,0): 144, 103, 51, (111,303,0): 152, 111, 49, (111,304,0): 174, 130, 55, (111,305,0): 176, 134, 50, (111,306,0): 178, 136, 52, (111,307,0): 179, 137, 55, (111,308,0): 180, 138, 56, (111,309,0): 180, 139, 59, (111,310,0): 177, 138, 59, (111,311,0): 176, 139, 59, (111,312,0): 174, 138, 60, (111,313,0): 172, 139, 60, (111,314,0): 172, 140, 63, (111,315,0): 171, 142, 66, (111,316,0): 172, 143, 67, (111,317,0): 173, 143, 70, (111,318,0): 174, 144, 71, (111,319,0): 175, 145, 73, (111,320,0): 173, 143, 73, (111,321,0): 174, 143, 76, (111,322,0): 176, 145, 78, (111,323,0): 177, 148, 80, (111,324,0): 179, 148, 83, (111,325,0): 179, 150, 84, (111,326,0): 179, 149, 85, (111,327,0): 178, 150, 85, (111,328,0): 175, 147, 84, (111,329,0): 173, 148, 84, (111,330,0): 175, 146, 86, (111,331,0): 172, 146, 85, (111,332,0): 172, 146, 85, (111,333,0): 171, 147, 85, (111,334,0): 171, 145, 86, (111,335,0): 170, 145, 88, (111,336,0): 172, 151, 98, (111,337,0): 172, 150, 100, (111,338,0): 171, 149, 99, (111,339,0): 170, 148, 98, (111,340,0): 168, 146, 96, (111,341,0): 166, 144, 95, (111,342,0): 163, 141, 92, (111,343,0): 162, 140, 91, (111,344,0): 162, 140, 91, (111,345,0): 162, 140, 91, (111,346,0): 162, 140, 93, (111,347,0): 162, 140, 93, (111,348,0): 163, 139, 95, (111,349,0): 163, 139, 95, (111,350,0): 163, 139, 95, (111,351,0): 163, 138, 97, (111,352,0): 160, 137, 96, (111,353,0): 160, 136, 98, (111,354,0): 163, 138, 98, (111,355,0): 166, 138, 99, (111,356,0): 169, 139, 101, (111,357,0): 172, 140, 101, (111,358,0): 175, 142, 101, (111,359,0): 176, 141, 99, (111,360,0): 188, 149, 108, (111,361,0): 189, 147, 105, (111,362,0): 188, 145, 102, (111,363,0): 188, 144, 99, (111,364,0): 190, 141, 98, (111,365,0): 194, 143, 98, (111,366,0): 195, 144, 99, (111,367,0): 198, 146, 98, (111,368,0): 211, 154, 99, (111,369,0): 217, 157, 97, (111,370,0): 225, 161, 99, (111,371,0): 234, 166, 101, (111,372,0): 240, 170, 101, (111,373,0): 247, 172, 104, (111,374,0): 248, 174, 103, (111,375,0): 249, 175, 104, (111,376,0): 239, 169, 99, (111,377,0): 236, 167, 98, (111,378,0): 231, 166, 100, (111,379,0): 229, 166, 99, (111,380,0): 226, 167, 99, (111,381,0): 229, 170, 102, (111,382,0): 232, 173, 105, (111,383,0): 234, 175, 105, (111,384,0): 240, 180, 110, (111,385,0): 243, 180, 109, (111,386,0): 245, 182, 111, (111,387,0): 245, 181, 109, (111,388,0): 246, 179, 108, (111,389,0): 248, 181, 110, (111,390,0): 252, 186, 112, (111,391,0): 254, 190, 116, (111,392,0): 247, 185, 112, (111,393,0): 245, 185, 112, (111,394,0): 244, 186, 113, (111,395,0): 240, 186, 112, (111,396,0): 234, 184, 111, (111,397,0): 227, 180, 108, (111,398,0): 221, 177, 104, (111,399,0): 218, 174, 101, (111,400,0): 219, 175, 100, (111,401,0): 220, 176, 101, (111,402,0): 221, 179, 103, (111,403,0): 221, 182, 107, (111,404,0): 222, 184, 111, (111,405,0): 220, 186, 112, (111,406,0): 219, 187, 114, (111,407,0): 218, 188, 115, (111,408,0): 217, 187, 114, (111,409,0): 217, 187, 114, (111,410,0): 221, 189, 114, (111,411,0): 226, 194, 117, (111,412,0): 235, 199, 121, (111,413,0): 240, 203, 123, (111,414,0): 239, 202, 122, (111,415,0): 238, 201, 121, (111,416,0): 232, 196, 118, (111,417,0): 234, 198, 122, (111,418,0): 235, 199, 123, (111,419,0): 233, 197, 119, (111,420,0): 230, 194, 116, (111,421,0): 227, 192, 111, (111,422,0): 227, 192, 110, (111,423,0): 228, 193, 109, (111,424,0): 235, 200, 116, (111,425,0): 235, 201, 114, (111,426,0): 235, 201, 112, (111,427,0): 232, 198, 109, (111,428,0): 230, 196, 107, (111,429,0): 230, 196, 107, (111,430,0): 233, 199, 110, (111,431,0): 237, 203, 113, (111,432,0): 243, 208, 114, (111,433,0): 240, 205, 111, (111,434,0): 237, 202, 108, (111,435,0): 233, 198, 104, (111,436,0): 231, 196, 104, (111,437,0): 230, 195, 103, (111,438,0): 230, 196, 106, (111,439,0): 231, 197, 108, (111,440,0): 227, 193, 106, (111,441,0): 226, 192, 105, (111,442,0): 224, 189, 105, (111,443,0): 221, 186, 102, (111,444,0): 215, 183, 100, (111,445,0): 211, 179, 96, (111,446,0): 208, 175, 94, (111,447,0): 208, 173, 92, (111,448,0): 214, 175, 96, (111,449,0): 213, 172, 93, (111,450,0): 208, 166, 92, (111,451,0): 202, 162, 90, (111,452,0): 197, 158, 91, (111,453,0): 191, 151, 89, (111,454,0): 182, 143, 84, (111,455,0): 174, 139, 85, (111,456,0): 168, 134, 86, (111,457,0): 160, 129, 85, (111,458,0): 150, 122, 83, (111,459,0): 141, 117, 81, (111,460,0): 136, 113, 81, (111,461,0): 130, 111, 79, (111,462,0): 124, 107, 79, (111,463,0): 120, 103, 77, (111,464,0): 110, 90, 66, (111,465,0): 108, 86, 65, (111,466,0): 105, 83, 62, (111,467,0): 105, 83, 62, (111,468,0): 109, 84, 64, (111,469,0): 109, 84, 64, (111,470,0): 107, 82, 62, (111,471,0): 105, 80, 60, (111,472,0): 113, 86, 67, (111,473,0): 110, 83, 64, (111,474,0): 108, 81, 62, (111,475,0): 111, 84, 65, (111,476,0): 116, 87, 69, (111,477,0): 119, 90, 72, (111,478,0): 119, 90, 72, (111,479,0): 117, 90, 73, (111,480,0): 112, 84, 70, (111,481,0): 110, 84, 69, (111,482,0): 110, 82, 68, (111,483,0): 108, 82, 65, (111,484,0): 108, 82, 65, (111,485,0): 108, 83, 63, (111,486,0): 109, 84, 64, (111,487,0): 110, 85, 63, (111,488,0): 111, 87, 63, (111,489,0): 114, 90, 64, (111,490,0): 118, 94, 66, (111,491,0): 121, 97, 69, (111,492,0): 123, 100, 69, (111,493,0): 123, 100, 69, (111,494,0): 121, 98, 66, (111,495,0): 118, 98, 65, (111,496,0): 121, 102, 72, (111,497,0): 120, 103, 73, (111,498,0): 121, 104, 74, (111,499,0): 123, 106, 76, (111,500,0): 123, 106, 78, (111,501,0): 123, 106, 78, (111,502,0): 121, 106, 77, (111,503,0): 121, 106, 77, (111,504,0): 121, 106, 77, (111,505,0): 119, 105, 78, (111,506,0): 118, 104, 77, (111,507,0): 117, 103, 76, (111,508,0): 116, 102, 75, (111,509,0): 115, 101, 74, (111,510,0): 114, 100, 74, (111,511,0): 114, 100, 73, (111,512,0): 113, 98, 69, (111,513,0): 114, 99, 70, (111,514,0): 116, 101, 72, (111,515,0): 118, 103, 74, (111,516,0): 118, 103, 74, (111,517,0): 118, 103, 74, (111,518,0): 116, 101, 72, (111,519,0): 115, 100, 71, (111,520,0): 115, 100, 71, (111,521,0): 114, 99, 70, (111,522,0): 112, 97, 68, (111,523,0): 111, 96, 67, (111,524,0): 110, 95, 66, (111,525,0): 111, 96, 67, (111,526,0): 111, 96, 67, (111,527,0): 111, 97, 68, (111,528,0): 110, 96, 67, (111,529,0): 109, 98, 68, (111,530,0): 111, 100, 70, (111,531,0): 113, 102, 72, (111,532,0): 116, 102, 73, (111,533,0): 116, 102, 73, (111,534,0): 116, 102, 73, (111,535,0): 116, 102, 73, (111,536,0): 114, 99, 70, (111,537,0): 114, 99, 70, (111,538,0): 115, 100, 71, (111,539,0): 116, 101, 72, (111,540,0): 118, 101, 75, (111,541,0): 119, 102, 76, (111,542,0): 120, 103, 77, (111,543,0): 122, 102, 77, (111,544,0): 123, 98, 76, (111,545,0): 123, 96, 75, (111,546,0): 121, 94, 73, (111,547,0): 118, 91, 70, (111,548,0): 116, 89, 68, (111,549,0): 113, 86, 65, (111,550,0): 111, 84, 65, (111,551,0): 110, 83, 64, (111,552,0): 109, 82, 63, (111,553,0): 107, 80, 61, (111,554,0): 103, 76, 59, (111,555,0): 100, 72, 58, (111,556,0): 98, 70, 56, (111,557,0): 97, 69, 57, (111,558,0): 97, 69, 57, (111,559,0): 97, 71, 58, (111,560,0): 98, 71, 60, (111,561,0): 96, 72, 60, (111,562,0): 97, 70, 61, (111,563,0): 94, 70, 60, (111,564,0): 94, 70, 60, (111,565,0): 92, 70, 59, (111,566,0): 92, 68, 58, (111,567,0): 91, 69, 58, (111,568,0): 95, 72, 64, (111,569,0): 92, 72, 63, (111,570,0): 92, 72, 65, (111,571,0): 90, 71, 64, (111,572,0): 90, 70, 63, (111,573,0): 88, 69, 62, (111,574,0): 88, 69, 62, (111,575,0): 88, 69, 62, (111,576,0): 82, 63, 56, (111,577,0): 82, 63, 56, (111,578,0): 83, 64, 57, (111,579,0): 84, 65, 58, (111,580,0): 86, 67, 60, (111,581,0): 87, 68, 61, (111,582,0): 88, 69, 62, (111,583,0): 89, 70, 63, (111,584,0): 88, 69, 62, (111,585,0): 88, 69, 62, (111,586,0): 87, 68, 61, (111,587,0): 85, 66, 59, (111,588,0): 84, 65, 58, (111,589,0): 83, 64, 57, (111,590,0): 82, 63, 56, (111,591,0): 81, 62, 56, (111,592,0): 78, 60, 56, (111,593,0): 75, 60, 55, (111,594,0): 73, 58, 53, (111,595,0): 71, 56, 51, (111,596,0): 70, 55, 50, (111,597,0): 71, 56, 51, (111,598,0): 72, 57, 52, (111,599,0): 73, 58, 53, (112,0,0): 35, 32, 49, (112,1,0): 35, 32, 49, (112,2,0): 38, 31, 47, (112,3,0): 40, 32, 47, (112,4,0): 45, 32, 49, (112,5,0): 48, 34, 49, (112,6,0): 53, 35, 49, (112,7,0): 56, 35, 50, (112,8,0): 53, 31, 44, (112,9,0): 53, 31, 44, (112,10,0): 51, 30, 45, (112,11,0): 48, 27, 42, (112,12,0): 43, 25, 41, (112,13,0): 38, 21, 37, (112,14,0): 33, 19, 36, (112,15,0): 31, 17, 34, (112,16,0): 32, 17, 36, (112,17,0): 30, 17, 35, (112,18,0): 30, 15, 34, (112,19,0): 27, 14, 31, (112,20,0): 27, 14, 32, (112,21,0): 28, 15, 32, (112,22,0): 29, 15, 32, (112,23,0): 30, 16, 33, (112,24,0): 32, 18, 33, (112,25,0): 36, 19, 35, (112,26,0): 38, 21, 37, (112,27,0): 40, 23, 39, (112,28,0): 41, 25, 38, (112,29,0): 42, 26, 39, (112,30,0): 42, 26, 39, (112,31,0): 41, 25, 38, (112,32,0): 44, 27, 43, (112,33,0): 44, 27, 43, (112,34,0): 41, 27, 42, (112,35,0): 39, 25, 40, (112,36,0): 38, 24, 39, (112,37,0): 36, 22, 37, (112,38,0): 34, 21, 38, (112,39,0): 34, 21, 38, (112,40,0): 37, 24, 42, (112,41,0): 35, 24, 41, (112,42,0): 35, 22, 42, (112,43,0): 32, 20, 40, (112,44,0): 30, 18, 38, (112,45,0): 28, 16, 36, (112,46,0): 27, 15, 35, (112,47,0): 26, 14, 36, (112,48,0): 26, 16, 40, (112,49,0): 26, 16, 40, (112,50,0): 26, 16, 40, (112,51,0): 26, 16, 40, (112,52,0): 26, 16, 40, (112,53,0): 26, 16, 40, (112,54,0): 26, 16, 40, (112,55,0): 26, 16, 40, (112,56,0): 25, 15, 39, (112,57,0): 24, 16, 39, (112,58,0): 24, 16, 39, (112,59,0): 24, 16, 39, (112,60,0): 25, 17, 40, (112,61,0): 25, 17, 40, (112,62,0): 25, 17, 40, (112,63,0): 25, 17, 38, (112,64,0): 21, 16, 36, (112,65,0): 21, 17, 34, (112,66,0): 21, 17, 34, (112,67,0): 21, 17, 34, (112,68,0): 21, 17, 34, (112,69,0): 21, 17, 34, (112,70,0): 21, 17, 34, (112,71,0): 21, 17, 34, (112,72,0): 21, 17, 34, (112,73,0): 21, 17, 34, (112,74,0): 21, 17, 34, (112,75,0): 21, 17, 34, (112,76,0): 21, 17, 34, (112,77,0): 21, 17, 34, (112,78,0): 21, 17, 34, (112,79,0): 21, 17, 34, (112,80,0): 17, 12, 32, (112,81,0): 17, 12, 32, (112,82,0): 18, 13, 35, (112,83,0): 18, 13, 33, (112,84,0): 18, 13, 35, (112,85,0): 18, 13, 33, (112,86,0): 19, 14, 36, (112,87,0): 18, 15, 34, (112,88,0): 14, 11, 32, (112,89,0): 14, 11, 30, (112,90,0): 14, 11, 32, (112,91,0): 14, 11, 30, (112,92,0): 14, 11, 32, (112,93,0): 14, 11, 30, (112,94,0): 14, 11, 32, (112,95,0): 14, 11, 30, (112,96,0): 15, 14, 30, (112,97,0): 15, 14, 30, (112,98,0): 15, 14, 30, (112,99,0): 15, 14, 30, (112,100,0): 15, 14, 30, (112,101,0): 15, 14, 30, (112,102,0): 15, 14, 30, (112,103,0): 15, 14, 30, (112,104,0): 12, 11, 27, (112,105,0): 13, 12, 28, (112,106,0): 13, 12, 28, (112,107,0): 14, 13, 29, (112,108,0): 15, 14, 30, (112,109,0): 16, 15, 31, (112,110,0): 16, 15, 31, (112,111,0): 17, 16, 32, (112,112,0): 15, 14, 28, (112,113,0): 15, 14, 28, (112,114,0): 16, 14, 28, (112,115,0): 17, 15, 29, (112,116,0): 17, 15, 29, (112,117,0): 18, 16, 30, (112,118,0): 19, 15, 30, (112,119,0): 19, 15, 30, (112,120,0): 23, 16, 32, (112,121,0): 24, 17, 33, (112,122,0): 24, 17, 33, (112,123,0): 26, 17, 34, (112,124,0): 28, 19, 36, (112,125,0): 29, 20, 37, (112,126,0): 29, 20, 37, (112,127,0): 32, 21, 37, (112,128,0): 33, 19, 34, (112,129,0): 33, 19, 32, (112,130,0): 35, 19, 32, (112,131,0): 36, 20, 33, (112,132,0): 36, 20, 33, (112,133,0): 37, 21, 34, (112,134,0): 37, 21, 34, (112,135,0): 37, 21, 32, (112,136,0): 35, 19, 30, (112,137,0): 35, 19, 30, (112,138,0): 35, 19, 30, (112,139,0): 35, 19, 30, (112,140,0): 35, 19, 30, (112,141,0): 35, 19, 30, (112,142,0): 35, 19, 30, (112,143,0): 35, 19, 30, (112,144,0): 38, 22, 33, (112,145,0): 38, 22, 33, (112,146,0): 38, 22, 35, (112,147,0): 38, 22, 33, (112,148,0): 38, 22, 35, (112,149,0): 38, 22, 33, (112,150,0): 38, 22, 35, (112,151,0): 38, 22, 33, (112,152,0): 38, 22, 35, (112,153,0): 38, 22, 33, (112,154,0): 38, 22, 35, (112,155,0): 38, 22, 33, (112,156,0): 38, 22, 35, (112,157,0): 38, 22, 33, (112,158,0): 38, 22, 35, (112,159,0): 38, 22, 33, (112,160,0): 40, 23, 33, (112,161,0): 40, 23, 33, (112,162,0): 40, 23, 33, (112,163,0): 40, 23, 33, (112,164,0): 40, 23, 33, (112,165,0): 40, 23, 33, (112,166,0): 40, 23, 33, (112,167,0): 40, 23, 33, (112,168,0): 40, 23, 33, (112,169,0): 39, 22, 32, (112,170,0): 38, 21, 31, (112,171,0): 37, 20, 30, (112,172,0): 37, 20, 30, (112,173,0): 38, 21, 31, (112,174,0): 39, 22, 32, (112,175,0): 39, 23, 33, (112,176,0): 38, 25, 35, (112,177,0): 37, 24, 34, (112,178,0): 35, 22, 32, (112,179,0): 35, 22, 32, (112,180,0): 35, 22, 32, (112,181,0): 37, 24, 34, (112,182,0): 39, 26, 36, (112,183,0): 40, 27, 37, (112,184,0): 40, 27, 37, (112,185,0): 40, 27, 37, (112,186,0): 40, 27, 37, (112,187,0): 40, 27, 37, (112,188,0): 40, 27, 37, (112,189,0): 40, 27, 37, (112,190,0): 40, 27, 37, (112,191,0): 40, 27, 37, (112,192,0): 43, 27, 37, (112,193,0): 45, 28, 38, (112,194,0): 45, 28, 38, (112,195,0): 46, 29, 39, (112,196,0): 46, 29, 37, (112,197,0): 47, 30, 38, (112,198,0): 49, 29, 38, (112,199,0): 49, 30, 36, (112,200,0): 52, 31, 38, (112,201,0): 52, 31, 38, (112,202,0): 53, 30, 36, (112,203,0): 54, 31, 37, (112,204,0): 54, 31, 37, (112,205,0): 55, 32, 38, (112,206,0): 55, 33, 36, (112,207,0): 56, 33, 39, (112,208,0): 54, 31, 39, (112,209,0): 54, 31, 39, (112,210,0): 56, 30, 39, (112,211,0): 54, 31, 37, (112,212,0): 56, 30, 39, (112,213,0): 54, 31, 37, (112,214,0): 56, 31, 37, (112,215,0): 54, 32, 35, (112,216,0): 51, 26, 30, (112,217,0): 50, 28, 30, (112,218,0): 53, 28, 31, (112,219,0): 52, 30, 32, (112,220,0): 56, 31, 34, (112,221,0): 55, 34, 33, (112,222,0): 58, 33, 36, (112,223,0): 59, 35, 35, (112,224,0): 59, 33, 34, (112,225,0): 61, 33, 32, (112,226,0): 61, 32, 34, (112,227,0): 61, 33, 32, (112,228,0): 61, 32, 34, (112,229,0): 61, 33, 32, (112,230,0): 61, 32, 34, (112,231,0): 61, 33, 32, (112,232,0): 62, 33, 35, (112,233,0): 62, 34, 33, (112,234,0): 62, 33, 35, (112,235,0): 61, 33, 32, (112,236,0): 61, 32, 34, (112,237,0): 60, 32, 31, (112,238,0): 60, 31, 33, (112,239,0): 60, 32, 31, (112,240,0): 63, 33, 33, (112,241,0): 62, 32, 30, (112,242,0): 62, 32, 32, (112,243,0): 61, 31, 29, (112,244,0): 60, 30, 30, (112,245,0): 59, 29, 27, (112,246,0): 59, 29, 29, (112,247,0): 58, 28, 26, (112,248,0): 61, 31, 31, (112,249,0): 61, 31, 29, (112,250,0): 61, 31, 31, (112,251,0): 61, 31, 29, (112,252,0): 61, 31, 31, (112,253,0): 61, 31, 29, (112,254,0): 61, 31, 31, (112,255,0): 61, 31, 29, (112,256,0): 61, 32, 26, (112,257,0): 62, 32, 24, (112,258,0): 62, 32, 24, (112,259,0): 63, 33, 25, (112,260,0): 63, 33, 25, (112,261,0): 64, 34, 26, (112,262,0): 64, 34, 26, (112,263,0): 65, 35, 25, (112,264,0): 70, 40, 30, (112,265,0): 70, 40, 30, (112,266,0): 70, 40, 30, (112,267,0): 70, 40, 30, (112,268,0): 70, 40, 30, (112,269,0): 70, 40, 30, (112,270,0): 72, 39, 30, (112,271,0): 72, 39, 30, (112,272,0): 73, 39, 30, (112,273,0): 74, 40, 31, (112,274,0): 74, 40, 31, (112,275,0): 75, 41, 32, (112,276,0): 75, 41, 32, (112,277,0): 76, 42, 33, (112,278,0): 76, 42, 33, (112,279,0): 76, 42, 33, (112,280,0): 77, 43, 34, (112,281,0): 77, 43, 33, (112,282,0): 78, 44, 34, (112,283,0): 79, 45, 35, (112,284,0): 80, 46, 36, (112,285,0): 81, 47, 37, (112,286,0): 82, 48, 38, (112,287,0): 82, 48, 38, (112,288,0): 80, 47, 38, (112,289,0): 81, 48, 39, (112,290,0): 80, 51, 37, (112,291,0): 82, 53, 37, (112,292,0): 83, 54, 36, (112,293,0): 85, 57, 36, (112,294,0): 88, 57, 37, (112,295,0): 90, 57, 38, (112,296,0): 100, 67, 48, (112,297,0): 104, 69, 49, (112,298,0): 108, 70, 47, (112,299,0): 113, 74, 45, (112,300,0): 119, 79, 44, (112,301,0): 129, 87, 47, (112,302,0): 140, 97, 52, (112,303,0): 149, 107, 47, (112,304,0): 168, 125, 46, (112,305,0): 180, 136, 47, (112,306,0): 186, 142, 53, (112,307,0): 180, 139, 51, (112,308,0): 177, 135, 49, (112,309,0): 180, 140, 55, (112,310,0): 182, 144, 61, (112,311,0): 181, 144, 63, (112,312,0): 175, 140, 59, (112,313,0): 174, 141, 62, (112,314,0): 173, 141, 64, (112,315,0): 172, 143, 67, (112,316,0): 173, 143, 70, (112,317,0): 173, 145, 72, (112,318,0): 173, 145, 72, (112,319,0): 174, 146, 73, (112,320,0): 177, 148, 78, (112,321,0): 177, 148, 78, (112,322,0): 177, 148, 78, (112,323,0): 177, 150, 79, (112,324,0): 178, 149, 81, (112,325,0): 178, 151, 82, (112,326,0): 178, 151, 84, (112,327,0): 177, 152, 85, (112,328,0): 175, 150, 84, (112,329,0): 174, 150, 86, (112,330,0): 175, 149, 88, (112,331,0): 173, 149, 87, (112,332,0): 173, 149, 89, (112,333,0): 170, 148, 88, (112,334,0): 172, 148, 88, (112,335,0): 170, 148, 91, (112,336,0): 168, 146, 96, (112,337,0): 166, 146, 96, (112,338,0): 165, 145, 95, (112,339,0): 163, 143, 93, (112,340,0): 164, 142, 93, (112,341,0): 164, 142, 95, (112,342,0): 165, 143, 96, (112,343,0): 165, 143, 96, (112,344,0): 164, 140, 94, (112,345,0): 164, 140, 94, (112,346,0): 164, 140, 94, (112,347,0): 164, 140, 94, (112,348,0): 165, 138, 93, (112,349,0): 165, 138, 93, (112,350,0): 165, 138, 93, (112,351,0): 165, 138, 93, (112,352,0): 170, 141, 97, (112,353,0): 170, 141, 97, (112,354,0): 173, 142, 98, (112,355,0): 173, 142, 98, (112,356,0): 174, 141, 98, (112,357,0): 176, 142, 97, (112,358,0): 178, 141, 97, (112,359,0): 179, 141, 96, (112,360,0): 186, 143, 100, (112,361,0): 190, 145, 103, (112,362,0): 196, 149, 105, (112,363,0): 199, 150, 107, (112,364,0): 200, 149, 106, (112,365,0): 202, 149, 107, (112,366,0): 205, 152, 110, (112,367,0): 210, 154, 105, (112,368,0): 220, 156, 95, (112,369,0): 227, 160, 92, (112,370,0): 234, 165, 96, (112,371,0): 240, 172, 101, (112,372,0): 245, 175, 103, (112,373,0): 248, 178, 106, (112,374,0): 248, 179, 104, (112,375,0): 247, 179, 106, (112,376,0): 242, 174, 101, (112,377,0): 237, 170, 99, (112,378,0): 231, 167, 96, (112,379,0): 230, 167, 98, (112,380,0): 233, 170, 103, (112,381,0): 233, 172, 107, (112,382,0): 233, 172, 107, (112,383,0): 233, 170, 103, (112,384,0): 235, 171, 100, (112,385,0): 240, 176, 104, (112,386,0): 246, 182, 110, (112,387,0): 249, 185, 111, (112,388,0): 248, 184, 110, (112,389,0): 245, 183, 108, (112,390,0): 243, 181, 108, (112,391,0): 241, 181, 108, (112,392,0): 238, 180, 106, (112,393,0): 240, 182, 108, (112,394,0): 242, 186, 111, (112,395,0): 241, 188, 112, (112,396,0): 237, 188, 112, (112,397,0): 232, 184, 108, (112,398,0): 227, 179, 103, (112,399,0): 223, 177, 102, (112,400,0): 221, 177, 104, (112,401,0): 221, 179, 107, (112,402,0): 221, 179, 107, (112,403,0): 216, 176, 104, (112,404,0): 213, 175, 102, (112,405,0): 213, 177, 103, (112,406,0): 217, 183, 109, (112,407,0): 220, 188, 113, (112,408,0): 220, 188, 111, (112,409,0): 222, 190, 113, (112,410,0): 227, 194, 117, (112,411,0): 233, 197, 119, (112,412,0): 237, 200, 122, (112,413,0): 240, 201, 122, (112,414,0): 240, 201, 122, (112,415,0): 240, 201, 122, (112,416,0): 236, 199, 121, (112,417,0): 233, 197, 121, (112,418,0): 229, 193, 115, (112,419,0): 226, 191, 110, (112,420,0): 224, 189, 107, (112,421,0): 225, 190, 106, (112,422,0): 226, 192, 105, (112,423,0): 228, 194, 105, (112,424,0): 238, 204, 115, (112,425,0): 236, 202, 113, (112,426,0): 233, 199, 110, (112,427,0): 230, 196, 107, (112,428,0): 230, 196, 107, (112,429,0): 233, 199, 112, (112,430,0): 236, 202, 115, (112,431,0): 238, 204, 115, (112,432,0): 239, 209, 113, (112,433,0): 241, 213, 114, (112,434,0): 242, 214, 115, (112,435,0): 238, 210, 111, (112,436,0): 233, 203, 107, (112,437,0): 229, 199, 103, (112,438,0): 227, 196, 103, (112,439,0): 228, 197, 104, (112,440,0): 225, 194, 103, (112,441,0): 224, 193, 103, (112,442,0): 225, 191, 104, (112,443,0): 223, 189, 102, (112,444,0): 220, 185, 101, (112,445,0): 216, 181, 97, (112,446,0): 212, 177, 93, (112,447,0): 212, 174, 91, (112,448,0): 222, 176, 98, (112,449,0): 221, 173, 97, (112,450,0): 217, 169, 95, (112,451,0): 209, 162, 90, (112,452,0): 200, 155, 88, (112,453,0): 189, 148, 84, (112,454,0): 182, 142, 81, (112,455,0): 175, 138, 83, (112,456,0): 162, 131, 77, (112,457,0): 158, 130, 82, (112,458,0): 152, 128, 84, (112,459,0): 146, 124, 83, (112,460,0): 138, 118, 81, (112,461,0): 131, 113, 77, (112,462,0): 126, 110, 77, (112,463,0): 124, 107, 77, (112,464,0): 119, 98, 71, (112,465,0): 118, 94, 70, (112,466,0): 114, 90, 66, (112,467,0): 110, 86, 62, (112,468,0): 109, 83, 60, (112,469,0): 110, 84, 61, (112,470,0): 112, 86, 63, (112,471,0): 113, 87, 64, (112,472,0): 117, 91, 68, (112,473,0): 115, 89, 66, (112,474,0): 115, 89, 66, (112,475,0): 117, 91, 68, (112,476,0): 120, 94, 71, (112,477,0): 122, 96, 73, (112,478,0): 120, 94, 71, (112,479,0): 118, 91, 70, (112,480,0): 112, 87, 67, (112,481,0): 108, 85, 67, (112,482,0): 107, 81, 64, (112,483,0): 103, 81, 60, (112,484,0): 103, 81, 60, (112,485,0): 105, 83, 62, (112,486,0): 108, 86, 65, (112,487,0): 110, 88, 67, (112,488,0): 106, 86, 62, (112,489,0): 106, 86, 62, (112,490,0): 105, 87, 63, (112,491,0): 106, 88, 64, (112,492,0): 109, 92, 66, (112,493,0): 111, 94, 68, (112,494,0): 114, 97, 71, (112,495,0): 116, 99, 71, (112,496,0): 114, 97, 69, (112,497,0): 115, 98, 68, (112,498,0): 117, 100, 70, (112,499,0): 119, 102, 72, (112,500,0): 120, 103, 73, (112,501,0): 121, 104, 74, (112,502,0): 121, 104, 74, (112,503,0): 122, 105, 75, (112,504,0): 120, 103, 73, (112,505,0): 119, 104, 75, (112,506,0): 119, 104, 75, (112,507,0): 118, 103, 74, (112,508,0): 118, 103, 74, (112,509,0): 118, 103, 74, (112,510,0): 118, 103, 74, (112,511,0): 117, 102, 73, (112,512,0): 119, 104, 73, (112,513,0): 117, 104, 72, (112,514,0): 117, 104, 72, (112,515,0): 116, 103, 71, (112,516,0): 115, 102, 70, (112,517,0): 114, 101, 69, (112,518,0): 114, 101, 69, (112,519,0): 114, 101, 69, (112,520,0): 113, 100, 68, (112,521,0): 113, 100, 68, (112,522,0): 113, 100, 68, (112,523,0): 113, 100, 68, (112,524,0): 113, 100, 68, (112,525,0): 113, 100, 68, (112,526,0): 113, 100, 68, (112,527,0): 113, 100, 68, (112,528,0): 107, 94, 62, (112,529,0): 109, 96, 64, (112,530,0): 113, 100, 68, (112,531,0): 117, 104, 72, (112,532,0): 118, 104, 75, (112,533,0): 118, 104, 75, (112,534,0): 116, 102, 73, (112,535,0): 115, 101, 72, (112,536,0): 117, 103, 76, (112,537,0): 117, 103, 76, (112,538,0): 116, 102, 75, (112,539,0): 116, 102, 75, (112,540,0): 116, 100, 75, (112,541,0): 116, 100, 75, (112,542,0): 115, 99, 74, (112,543,0): 116, 98, 74, (112,544,0): 124, 102, 79, (112,545,0): 125, 100, 78, (112,546,0): 123, 99, 75, (112,547,0): 120, 96, 72, (112,548,0): 116, 92, 68, (112,549,0): 113, 89, 65, (112,550,0): 111, 87, 63, (112,551,0): 109, 85, 61, (112,552,0): 109, 85, 61, (112,553,0): 108, 84, 60, (112,554,0): 104, 79, 57, (112,555,0): 100, 75, 55, (112,556,0): 96, 70, 55, (112,557,0): 93, 67, 52, (112,558,0): 91, 65, 52, (112,559,0): 90, 63, 52, (112,560,0): 91, 64, 55, (112,561,0): 91, 64, 55, (112,562,0): 92, 63, 57, (112,563,0): 92, 65, 58, (112,564,0): 92, 65, 58, (112,565,0): 91, 66, 59, (112,566,0): 93, 66, 59, (112,567,0): 92, 67, 60, (112,568,0): 93, 68, 61, (112,569,0): 93, 70, 62, (112,570,0): 93, 70, 62, (112,571,0): 92, 72, 63, (112,572,0): 93, 70, 62, (112,573,0): 90, 70, 61, (112,574,0): 88, 68, 59, (112,575,0): 87, 67, 60, (112,576,0): 86, 66, 59, (112,577,0): 86, 65, 60, (112,578,0): 87, 66, 61, (112,579,0): 87, 66, 61, (112,580,0): 88, 67, 62, (112,581,0): 88, 67, 62, (112,582,0): 89, 68, 63, (112,583,0): 89, 68, 63, (112,584,0): 88, 67, 62, (112,585,0): 88, 67, 62, (112,586,0): 87, 66, 61, (112,587,0): 85, 64, 59, (112,588,0): 83, 62, 57, (112,589,0): 82, 61, 56, (112,590,0): 81, 60, 55, (112,591,0): 79, 60, 54, (112,592,0): 79, 61, 57, (112,593,0): 76, 61, 56, (112,594,0): 74, 59, 54, (112,595,0): 73, 58, 53, (112,596,0): 71, 56, 51, (112,597,0): 69, 54, 49, (112,598,0): 67, 52, 47, (112,599,0): 67, 52, 47, (113,0,0): 32, 33, 51, (113,1,0): 34, 33, 49, (113,2,0): 36, 32, 49, (113,3,0): 40, 32, 47, (113,4,0): 45, 32, 49, (113,5,0): 50, 34, 47, (113,6,0): 55, 34, 49, (113,7,0): 57, 35, 48, (113,8,0): 58, 32, 45, (113,9,0): 55, 31, 44, (113,10,0): 54, 30, 44, (113,11,0): 50, 30, 42, (113,12,0): 46, 25, 40, (113,13,0): 39, 23, 36, (113,14,0): 36, 19, 35, (113,15,0): 32, 18, 33, (113,16,0): 28, 15, 33, (113,17,0): 28, 15, 33, (113,18,0): 27, 14, 31, (113,19,0): 27, 14, 31, (113,20,0): 28, 15, 32, (113,21,0): 29, 16, 33, (113,22,0): 32, 18, 33, (113,23,0): 33, 19, 34, (113,24,0): 35, 19, 32, (113,25,0): 36, 20, 33, (113,26,0): 39, 21, 35, (113,27,0): 41, 23, 37, (113,28,0): 43, 25, 37, (113,29,0): 43, 25, 37, (113,30,0): 43, 25, 37, (113,31,0): 43, 25, 37, (113,32,0): 44, 27, 43, (113,33,0): 43, 26, 42, (113,34,0): 40, 26, 41, (113,35,0): 39, 25, 40, (113,36,0): 38, 24, 39, (113,37,0): 37, 23, 38, (113,38,0): 35, 22, 39, (113,39,0): 34, 21, 38, (113,40,0): 36, 25, 42, (113,41,0): 35, 24, 41, (113,42,0): 34, 22, 42, (113,43,0): 32, 20, 40, (113,44,0): 28, 19, 38, (113,45,0): 27, 18, 37, (113,46,0): 25, 16, 35, (113,47,0): 25, 16, 35, (113,48,0): 26, 16, 40, (113,49,0): 26, 16, 40, (113,50,0): 26, 16, 40, (113,51,0): 26, 16, 40, (113,52,0): 26, 16, 40, (113,53,0): 26, 16, 40, (113,54,0): 26, 16, 40, (113,55,0): 26, 16, 40, (113,56,0): 25, 15, 39, (113,57,0): 25, 15, 39, (113,58,0): 26, 16, 40, (113,59,0): 26, 16, 40, (113,60,0): 26, 16, 40, (113,61,0): 26, 16, 40, (113,62,0): 26, 16, 40, (113,63,0): 26, 17, 38, (113,64,0): 23, 15, 36, (113,65,0): 21, 17, 34, (113,66,0): 21, 17, 34, (113,67,0): 21, 17, 34, (113,68,0): 21, 17, 34, (113,69,0): 21, 17, 34, (113,70,0): 21, 17, 34, (113,71,0): 21, 17, 34, (113,72,0): 20, 16, 33, (113,73,0): 20, 16, 33, (113,74,0): 20, 16, 33, (113,75,0): 20, 16, 33, (113,76,0): 20, 16, 33, (113,77,0): 20, 16, 33, (113,78,0): 20, 16, 33, (113,79,0): 20, 16, 33, (113,80,0): 17, 14, 35, (113,81,0): 17, 14, 35, (113,82,0): 17, 14, 35, (113,83,0): 17, 14, 35, (113,84,0): 17, 14, 35, (113,85,0): 17, 14, 35, (113,86,0): 17, 14, 35, (113,87,0): 17, 14, 35, (113,88,0): 14, 11, 32, (113,89,0): 14, 11, 32, (113,90,0): 14, 11, 32, (113,91,0): 14, 11, 32, (113,92,0): 14, 11, 32, (113,93,0): 14, 11, 32, (113,94,0): 14, 11, 32, (113,95,0): 13, 12, 30, (113,96,0): 15, 14, 32, (113,97,0): 13, 15, 30, (113,98,0): 13, 15, 30, (113,99,0): 13, 15, 30, (113,100,0): 13, 15, 30, (113,101,0): 13, 15, 30, (113,102,0): 13, 15, 30, (113,103,0): 13, 15, 30, (113,104,0): 10, 12, 27, (113,105,0): 11, 13, 28, (113,106,0): 11, 13, 28, (113,107,0): 12, 14, 29, (113,108,0): 13, 15, 30, (113,109,0): 13, 15, 30, (113,110,0): 14, 16, 31, (113,111,0): 14, 16, 31, (113,112,0): 15, 14, 28, (113,113,0): 15, 14, 28, (113,114,0): 16, 14, 28, (113,115,0): 17, 15, 29, (113,116,0): 17, 15, 29, (113,117,0): 18, 16, 30, (113,118,0): 19, 15, 30, (113,119,0): 19, 15, 30, (113,120,0): 23, 16, 32, (113,121,0): 24, 17, 33, (113,122,0): 24, 17, 33, (113,123,0): 25, 18, 34, (113,124,0): 28, 19, 36, (113,125,0): 29, 20, 37, (113,126,0): 29, 20, 37, (113,127,0): 32, 21, 37, (113,128,0): 33, 19, 32, (113,129,0): 35, 19, 30, (113,130,0): 35, 19, 30, (113,131,0): 36, 20, 31, (113,132,0): 36, 20, 31, (113,133,0): 37, 21, 32, (113,134,0): 37, 21, 32, (113,135,0): 37, 21, 32, (113,136,0): 35, 19, 30, (113,137,0): 35, 19, 30, (113,138,0): 35, 19, 30, (113,139,0): 35, 19, 30, (113,140,0): 35, 19, 30, (113,141,0): 35, 19, 30, (113,142,0): 35, 19, 30, (113,143,0): 35, 19, 30, (113,144,0): 38, 22, 33, (113,145,0): 38, 22, 33, (113,146,0): 38, 22, 33, (113,147,0): 38, 22, 33, (113,148,0): 38, 22, 33, (113,149,0): 38, 22, 33, (113,150,0): 38, 22, 33, (113,151,0): 38, 22, 33, (113,152,0): 38, 22, 33, (113,153,0): 38, 22, 33, (113,154,0): 38, 22, 33, (113,155,0): 38, 22, 33, (113,156,0): 38, 22, 33, (113,157,0): 38, 22, 33, (113,158,0): 38, 22, 33, (113,159,0): 38, 22, 33, (113,160,0): 40, 23, 33, (113,161,0): 40, 23, 33, (113,162,0): 40, 23, 33, (113,163,0): 40, 23, 33, (113,164,0): 40, 23, 33, (113,165,0): 40, 23, 33, (113,166,0): 40, 23, 33, (113,167,0): 40, 23, 33, (113,168,0): 40, 23, 33, (113,169,0): 39, 22, 32, (113,170,0): 38, 21, 31, (113,171,0): 37, 20, 30, (113,172,0): 37, 20, 30, (113,173,0): 38, 21, 31, (113,174,0): 39, 22, 32, (113,175,0): 40, 23, 33, (113,176,0): 39, 23, 34, (113,177,0): 37, 23, 36, (113,178,0): 36, 22, 35, (113,179,0): 35, 21, 34, (113,180,0): 36, 22, 35, (113,181,0): 37, 23, 36, (113,182,0): 39, 25, 38, (113,183,0): 40, 26, 39, (113,184,0): 40, 26, 39, (113,185,0): 40, 26, 39, (113,186,0): 40, 26, 39, (113,187,0): 40, 26, 39, (113,188,0): 40, 26, 39, (113,189,0): 40, 26, 39, (113,190,0): 40, 26, 39, (113,191,0): 42, 26, 37, (113,192,0): 44, 27, 37, (113,193,0): 45, 28, 38, (113,194,0): 45, 28, 38, (113,195,0): 45, 28, 38, (113,196,0): 46, 29, 37, (113,197,0): 46, 29, 37, (113,198,0): 49, 29, 38, (113,199,0): 49, 29, 38, (113,200,0): 51, 30, 37, (113,201,0): 51, 30, 37, (113,202,0): 52, 29, 35, (113,203,0): 53, 30, 36, (113,204,0): 53, 30, 36, (113,205,0): 54, 31, 37, (113,206,0): 54, 32, 35, (113,207,0): 55, 32, 38, (113,208,0): 54, 31, 39, (113,209,0): 54, 31, 41, (113,210,0): 54, 31, 39, (113,211,0): 54, 31, 39, (113,212,0): 54, 31, 39, (113,213,0): 54, 31, 39, (113,214,0): 54, 31, 37, (113,215,0): 54, 31, 37, (113,216,0): 52, 30, 33, (113,217,0): 52, 30, 33, (113,218,0): 53, 31, 34, (113,219,0): 53, 31, 34, (113,220,0): 53, 31, 33, (113,221,0): 53, 31, 33, (113,222,0): 54, 32, 34, (113,223,0): 56, 32, 32, (113,224,0): 61, 33, 32, (113,225,0): 62, 32, 32, (113,226,0): 62, 32, 32, (113,227,0): 62, 32, 32, (113,228,0): 62, 32, 32, (113,229,0): 62, 32, 32, (113,230,0): 62, 32, 32, (113,231,0): 62, 32, 32, (113,232,0): 63, 33, 33, (113,233,0): 63, 33, 33, (113,234,0): 63, 33, 33, (113,235,0): 62, 32, 32, (113,236,0): 62, 32, 32, (113,237,0): 61, 31, 31, (113,238,0): 61, 31, 31, (113,239,0): 61, 31, 31, (113,240,0): 62, 32, 32, (113,241,0): 62, 32, 32, (113,242,0): 62, 32, 32, (113,243,0): 61, 31, 31, (113,244,0): 60, 30, 30, (113,245,0): 59, 29, 29, (113,246,0): 59, 29, 29, (113,247,0): 59, 29, 29, (113,248,0): 61, 31, 31, (113,249,0): 61, 31, 31, (113,250,0): 61, 31, 31, (113,251,0): 61, 31, 31, (113,252,0): 61, 31, 31, (113,253,0): 61, 31, 31, (113,254,0): 61, 31, 31, (113,255,0): 61, 31, 29, (113,256,0): 62, 32, 24, (113,257,0): 62, 32, 22, (113,258,0): 63, 33, 23, (113,259,0): 63, 33, 23, (113,260,0): 64, 34, 24, (113,261,0): 64, 34, 24, (113,262,0): 64, 34, 24, (113,263,0): 65, 35, 25, (113,264,0): 70, 40, 30, (113,265,0): 70, 40, 30, (113,266,0): 70, 40, 30, (113,267,0): 70, 40, 30, (113,268,0): 70, 40, 30, (113,269,0): 70, 40, 30, (113,270,0): 70, 40, 30, (113,271,0): 70, 40, 30, (113,272,0): 73, 39, 30, (113,273,0): 74, 40, 31, (113,274,0): 74, 40, 31, (113,275,0): 74, 40, 31, (113,276,0): 75, 41, 32, (113,277,0): 75, 41, 32, (113,278,0): 76, 42, 33, (113,279,0): 76, 42, 33, (113,280,0): 76, 42, 33, (113,281,0): 77, 43, 34, (113,282,0): 78, 44, 35, (113,283,0): 79, 45, 36, (113,284,0): 80, 46, 37, (113,285,0): 81, 47, 38, (113,286,0): 82, 48, 39, (113,287,0): 82, 48, 39, (113,288,0): 81, 47, 38, (113,289,0): 82, 48, 38, (113,290,0): 82, 50, 37, (113,291,0): 84, 53, 35, (113,292,0): 83, 54, 36, (113,293,0): 85, 57, 36, (113,294,0): 88, 57, 36, (113,295,0): 89, 58, 37, (113,296,0): 98, 66, 45, (113,297,0): 102, 67, 45, (113,298,0): 107, 71, 47, (113,299,0): 113, 74, 45, (113,300,0): 119, 78, 46, (113,301,0): 130, 88, 50, (113,302,0): 141, 98, 55, (113,303,0): 150, 108, 50, (113,304,0): 175, 130, 49, (113,305,0): 186, 141, 48, (113,306,0): 191, 148, 56, (113,307,0): 187, 144, 52, (113,308,0): 181, 140, 50, (113,309,0): 181, 141, 53, (113,310,0): 182, 142, 55, (113,311,0): 178, 142, 58, (113,312,0): 176, 141, 59, (113,313,0): 173, 142, 60, (113,314,0): 174, 142, 65, (113,315,0): 173, 144, 68, (113,316,0): 172, 144, 70, (113,317,0): 173, 145, 72, (113,318,0): 173, 146, 75, (113,319,0): 173, 146, 75, (113,320,0): 176, 148, 75, (113,321,0): 176, 148, 75, (113,322,0): 175, 149, 75, (113,323,0): 176, 150, 76, (113,324,0): 176, 149, 78, (113,325,0): 177, 150, 79, (113,326,0): 175, 150, 83, (113,327,0): 176, 151, 84, (113,328,0): 175, 152, 85, (113,329,0): 175, 152, 85, (113,330,0): 174, 150, 88, (113,331,0): 174, 150, 88, (113,332,0): 171, 149, 89, (113,333,0): 171, 149, 89, (113,334,0): 170, 148, 88, (113,335,0): 169, 148, 91, (113,336,0): 168, 146, 96, (113,337,0): 166, 145, 98, (113,338,0): 165, 144, 97, (113,339,0): 163, 142, 95, (113,340,0): 164, 142, 95, (113,341,0): 164, 142, 95, (113,342,0): 165, 143, 96, (113,343,0): 165, 143, 96, (113,344,0): 164, 140, 94, (113,345,0): 164, 140, 94, (113,346,0): 166, 139, 94, (113,347,0): 166, 139, 94, (113,348,0): 165, 138, 93, (113,349,0): 165, 138, 93, (113,350,0): 166, 137, 93, (113,351,0): 166, 138, 91, (113,352,0): 171, 140, 93, (113,353,0): 172, 141, 94, (113,354,0): 173, 141, 94, (113,355,0): 175, 141, 95, (113,356,0): 176, 142, 96, (113,357,0): 178, 142, 94, (113,358,0): 180, 142, 95, (113,359,0): 182, 141, 95, (113,360,0): 188, 144, 99, (113,361,0): 193, 146, 100, (113,362,0): 198, 150, 104, (113,363,0): 201, 150, 105, (113,364,0): 202, 149, 105, (113,365,0): 204, 150, 106, (113,366,0): 209, 152, 109, (113,367,0): 215, 155, 105, (113,368,0): 226, 158, 95, (113,369,0): 231, 161, 91, (113,370,0): 237, 167, 97, (113,371,0): 243, 173, 101, (113,372,0): 246, 178, 105, (113,373,0): 248, 180, 105, (113,374,0): 248, 180, 105, (113,375,0): 247, 181, 105, (113,376,0): 243, 177, 101, (113,377,0): 240, 174, 100, (113,378,0): 234, 170, 98, (113,379,0): 234, 170, 99, (113,380,0): 237, 172, 104, (113,381,0): 238, 175, 108, (113,382,0): 238, 174, 110, (113,383,0): 237, 172, 106, (113,384,0): 238, 174, 102, (113,385,0): 244, 180, 106, (113,386,0): 249, 185, 111, (113,387,0): 251, 189, 114, (113,388,0): 249, 187, 112, (113,389,0): 245, 186, 110, (113,390,0): 243, 185, 111, (113,391,0): 243, 185, 111, (113,392,0): 239, 183, 108, (113,393,0): 239, 186, 110, (113,394,0): 241, 188, 112, (113,395,0): 241, 189, 113, (113,396,0): 237, 188, 111, (113,397,0): 233, 184, 107, (113,398,0): 228, 179, 102, (113,399,0): 223, 175, 99, (113,400,0): 219, 175, 104, (113,401,0): 217, 177, 107, (113,402,0): 217, 177, 105, (113,403,0): 214, 176, 103, (113,404,0): 211, 175, 101, (113,405,0): 210, 176, 102, (113,406,0): 215, 182, 105, (113,407,0): 219, 186, 109, (113,408,0): 222, 189, 112, (113,409,0): 224, 191, 112, (113,410,0): 229, 193, 115, (113,411,0): 233, 197, 119, (113,412,0): 237, 200, 120, (113,413,0): 240, 201, 122, (113,414,0): 242, 201, 122, (113,415,0): 240, 201, 122, (113,416,0): 237, 200, 122, (113,417,0): 233, 197, 119, (113,418,0): 230, 195, 114, (113,419,0): 226, 191, 109, (113,420,0): 225, 190, 106, (113,421,0): 225, 191, 104, (113,422,0): 226, 192, 103, (113,423,0): 227, 193, 104, (113,424,0): 238, 204, 114, (113,425,0): 236, 202, 112, (113,426,0): 233, 199, 110, (113,427,0): 231, 197, 108, (113,428,0): 231, 197, 110, (113,429,0): 233, 199, 112, (113,430,0): 236, 201, 117, (113,431,0): 236, 205, 115, (113,432,0): 238, 210, 113, (113,433,0): 238, 213, 112, (113,434,0): 239, 214, 113, (113,435,0): 237, 212, 111, (113,436,0): 233, 205, 106, (113,437,0): 229, 201, 102, (113,438,0): 228, 200, 103, (113,439,0): 228, 200, 103, (113,440,0): 227, 196, 105, (113,441,0): 226, 195, 104, (113,442,0): 226, 192, 103, (113,443,0): 223, 189, 100, (113,444,0): 221, 187, 100, (113,445,0): 218, 184, 97, (113,446,0): 217, 181, 95, (113,447,0): 219, 179, 94, (113,448,0): 223, 176, 96, (113,449,0): 224, 172, 96, (113,450,0): 219, 170, 94, (113,451,0): 212, 164, 92, (113,452,0): 204, 157, 89, (113,453,0): 194, 150, 85, (113,454,0): 185, 145, 83, (113,455,0): 179, 143, 85, (113,456,0): 168, 137, 82, (113,457,0): 163, 135, 85, (113,458,0): 156, 132, 86, (113,459,0): 149, 128, 85, (113,460,0): 140, 121, 81, (113,461,0): 133, 115, 77, (113,462,0): 126, 110, 74, (113,463,0): 124, 108, 74, (113,464,0): 123, 99, 71, (113,465,0): 121, 95, 70, (113,466,0): 116, 90, 65, (113,467,0): 113, 87, 62, (113,468,0): 111, 85, 60, (113,469,0): 112, 86, 61, (113,470,0): 114, 88, 63, (113,471,0): 116, 90, 65, (113,472,0): 119, 93, 68, (113,473,0): 117, 91, 66, (113,474,0): 116, 90, 65, (113,475,0): 118, 92, 67, (113,476,0): 121, 95, 70, (113,477,0): 123, 97, 72, (113,478,0): 121, 95, 70, (113,479,0): 118, 94, 68, (113,480,0): 113, 88, 66, (113,481,0): 109, 87, 66, (113,482,0): 107, 85, 64, (113,483,0): 105, 83, 62, (113,484,0): 104, 83, 62, (113,485,0): 106, 85, 64, (113,486,0): 108, 87, 66, (113,487,0): 110, 89, 68, (113,488,0): 104, 86, 64, (113,489,0): 104, 86, 64, (113,490,0): 104, 88, 65, (113,491,0): 105, 89, 66, (113,492,0): 107, 91, 68, (113,493,0): 110, 94, 71, (113,494,0): 111, 96, 73, (113,495,0): 113, 99, 73, (113,496,0): 114, 97, 69, (113,497,0): 115, 98, 68, (113,498,0): 116, 99, 69, (113,499,0): 117, 100, 70, (113,500,0): 119, 102, 72, (113,501,0): 120, 103, 73, (113,502,0): 120, 103, 73, (113,503,0): 121, 104, 74, (113,504,0): 120, 103, 73, (113,505,0): 120, 103, 73, (113,506,0): 120, 103, 73, (113,507,0): 120, 103, 73, (113,508,0): 120, 103, 73, (113,509,0): 119, 102, 72, (113,510,0): 119, 102, 72, (113,511,0): 119, 102, 72, (113,512,0): 120, 105, 74, (113,513,0): 118, 105, 73, (113,514,0): 117, 104, 72, (113,515,0): 116, 103, 71, (113,516,0): 115, 102, 70, (113,517,0): 114, 101, 69, (113,518,0): 113, 100, 68, (113,519,0): 112, 99, 67, (113,520,0): 113, 100, 68, (113,521,0): 113, 100, 68, (113,522,0): 113, 100, 68, (113,523,0): 113, 100, 68, (113,524,0): 113, 100, 68, (113,525,0): 113, 100, 68, (113,526,0): 113, 100, 68, (113,527,0): 113, 100, 68, (113,528,0): 110, 97, 65, (113,529,0): 112, 99, 67, (113,530,0): 115, 102, 70, (113,531,0): 118, 105, 73, (113,532,0): 119, 105, 76, (113,533,0): 118, 104, 75, (113,534,0): 116, 102, 73, (113,535,0): 115, 101, 72, (113,536,0): 117, 103, 76, (113,537,0): 116, 102, 75, (113,538,0): 116, 102, 76, (113,539,0): 115, 101, 75, (113,540,0): 115, 101, 75, (113,541,0): 114, 100, 74, (113,542,0): 114, 99, 76, (113,543,0): 115, 99, 76, (113,544,0): 123, 101, 78, (113,545,0): 124, 99, 77, (113,546,0): 122, 97, 75, (113,547,0): 119, 95, 71, (113,548,0): 117, 93, 67, (113,549,0): 114, 90, 64, (113,550,0): 112, 88, 62, (113,551,0): 111, 87, 61, (113,552,0): 112, 88, 62, (113,553,0): 110, 86, 62, (113,554,0): 106, 81, 59, (113,555,0): 102, 77, 57, (113,556,0): 98, 72, 55, (113,557,0): 94, 68, 53, (113,558,0): 91, 65, 52, (113,559,0): 90, 63, 52, (113,560,0): 91, 62, 54, (113,561,0): 91, 62, 56, (113,562,0): 91, 62, 56, (113,563,0): 92, 63, 57, (113,564,0): 91, 64, 57, (113,565,0): 92, 65, 58, (113,566,0): 92, 65, 58, (113,567,0): 93, 66, 59, (113,568,0): 92, 67, 60, (113,569,0): 93, 68, 61, (113,570,0): 92, 69, 61, (113,571,0): 92, 69, 61, (113,572,0): 92, 69, 61, (113,573,0): 91, 68, 60, (113,574,0): 87, 67, 58, (113,575,0): 86, 66, 57, (113,576,0): 86, 65, 60, (113,577,0): 87, 66, 61, (113,578,0): 87, 66, 61, (113,579,0): 88, 67, 62, (113,580,0): 88, 67, 62, (113,581,0): 89, 68, 63, (113,582,0): 89, 68, 63, (113,583,0): 89, 68, 63, (113,584,0): 88, 67, 62, (113,585,0): 87, 66, 61, (113,586,0): 86, 65, 60, (113,587,0): 85, 64, 59, (113,588,0): 83, 62, 57, (113,589,0): 81, 60, 55, (113,590,0): 80, 59, 54, (113,591,0): 79, 60, 54, (113,592,0): 79, 61, 57, (113,593,0): 76, 61, 56, (113,594,0): 75, 60, 55, (113,595,0): 73, 58, 53, (113,596,0): 71, 56, 51, (113,597,0): 70, 55, 50, (113,598,0): 68, 53, 48, (113,599,0): 68, 53, 48, (114,0,0): 32, 33, 51, (114,1,0): 34, 33, 49, (114,2,0): 36, 32, 49, (114,3,0): 40, 32, 47, (114,4,0): 45, 32, 49, (114,5,0): 50, 34, 47, (114,6,0): 55, 34, 49, (114,7,0): 57, 35, 48, (114,8,0): 59, 33, 46, (114,9,0): 57, 33, 46, (114,10,0): 56, 32, 46, (114,11,0): 51, 31, 43, (114,12,0): 48, 27, 42, (114,13,0): 41, 25, 38, (114,14,0): 38, 21, 37, (114,15,0): 34, 20, 35, (114,16,0): 26, 13, 31, (114,17,0): 26, 13, 31, (114,18,0): 26, 13, 30, (114,19,0): 27, 14, 31, (114,20,0): 29, 16, 33, (114,21,0): 31, 18, 35, (114,22,0): 34, 20, 35, (114,23,0): 36, 22, 37, (114,24,0): 37, 21, 34, (114,25,0): 38, 22, 35, (114,26,0): 41, 23, 37, (114,27,0): 42, 24, 38, (114,28,0): 43, 25, 37, (114,29,0): 43, 25, 37, (114,30,0): 43, 25, 37, (114,31,0): 43, 25, 37, (114,32,0): 43, 26, 42, (114,33,0): 43, 26, 42, (114,34,0): 40, 26, 41, (114,35,0): 39, 25, 40, (114,36,0): 38, 24, 39, (114,37,0): 37, 23, 38, (114,38,0): 35, 22, 39, (114,39,0): 35, 22, 39, (114,40,0): 36, 25, 42, (114,41,0): 35, 24, 41, (114,42,0): 34, 22, 42, (114,43,0): 33, 21, 41, (114,44,0): 29, 20, 39, (114,45,0): 28, 19, 38, (114,46,0): 27, 18, 37, (114,47,0): 26, 17, 36, (114,48,0): 28, 18, 42, (114,49,0): 28, 18, 42, (114,50,0): 28, 18, 42, (114,51,0): 28, 18, 42, (114,52,0): 28, 18, 42, (114,53,0): 28, 18, 42, (114,54,0): 28, 18, 42, (114,55,0): 28, 18, 42, (114,56,0): 26, 16, 40, (114,57,0): 26, 16, 40, (114,58,0): 26, 16, 40, (114,59,0): 26, 16, 40, (114,60,0): 26, 16, 40, (114,61,0): 26, 16, 40, (114,62,0): 26, 16, 40, (114,63,0): 26, 17, 38, (114,64,0): 23, 15, 36, (114,65,0): 23, 16, 34, (114,66,0): 23, 16, 34, (114,67,0): 23, 16, 34, (114,68,0): 23, 16, 34, (114,69,0): 23, 16, 34, (114,70,0): 23, 16, 34, (114,71,0): 23, 16, 34, (114,72,0): 22, 15, 33, (114,73,0): 22, 15, 33, (114,74,0): 22, 15, 33, (114,75,0): 22, 15, 33, (114,76,0): 22, 15, 33, (114,77,0): 22, 15, 33, (114,78,0): 22, 15, 33, (114,79,0): 20, 16, 33, (114,80,0): 17, 14, 35, (114,81,0): 17, 14, 35, (114,82,0): 17, 14, 35, (114,83,0): 17, 14, 35, (114,84,0): 17, 14, 35, (114,85,0): 17, 14, 35, (114,86,0): 17, 14, 35, (114,87,0): 17, 14, 35, (114,88,0): 15, 12, 33, (114,89,0): 15, 12, 33, (114,90,0): 15, 12, 33, (114,91,0): 15, 12, 33, (114,92,0): 15, 12, 33, (114,93,0): 15, 12, 33, (114,94,0): 15, 12, 33, (114,95,0): 14, 13, 31, (114,96,0): 15, 14, 32, (114,97,0): 13, 15, 30, (114,98,0): 13, 15, 30, (114,99,0): 13, 15, 30, (114,100,0): 13, 15, 30, (114,101,0): 13, 15, 30, (114,102,0): 13, 15, 30, (114,103,0): 13, 15, 30, (114,104,0): 11, 13, 28, (114,105,0): 11, 13, 28, (114,106,0): 11, 13, 28, (114,107,0): 12, 14, 29, (114,108,0): 12, 14, 29, (114,109,0): 12, 14, 29, (114,110,0): 13, 15, 30, (114,111,0): 13, 15, 30, (114,112,0): 15, 14, 28, (114,113,0): 16, 14, 28, (114,114,0): 16, 14, 28, (114,115,0): 17, 15, 29, (114,116,0): 18, 14, 29, (114,117,0): 19, 15, 30, (114,118,0): 19, 15, 30, (114,119,0): 19, 15, 30, (114,120,0): 23, 16, 32, (114,121,0): 24, 17, 33, (114,122,0): 25, 16, 33, (114,123,0): 26, 17, 34, (114,124,0): 28, 19, 36, (114,125,0): 29, 20, 37, (114,126,0): 31, 20, 37, (114,127,0): 33, 20, 37, (114,128,0): 33, 19, 32, (114,129,0): 35, 19, 30, (114,130,0): 35, 19, 30, (114,131,0): 36, 20, 31, (114,132,0): 36, 20, 31, (114,133,0): 37, 21, 32, (114,134,0): 37, 21, 32, (114,135,0): 37, 21, 32, (114,136,0): 35, 19, 30, (114,137,0): 35, 19, 30, (114,138,0): 35, 19, 30, (114,139,0): 35, 19, 30, (114,140,0): 35, 19, 30, (114,141,0): 35, 19, 30, (114,142,0): 35, 19, 30, (114,143,0): 35, 19, 30, (114,144,0): 38, 22, 33, (114,145,0): 38, 22, 33, (114,146,0): 38, 22, 33, (114,147,0): 38, 22, 33, (114,148,0): 38, 22, 33, (114,149,0): 38, 22, 33, (114,150,0): 38, 22, 33, (114,151,0): 38, 22, 33, (114,152,0): 38, 22, 33, (114,153,0): 38, 22, 33, (114,154,0): 38, 22, 33, (114,155,0): 38, 22, 33, (114,156,0): 38, 22, 33, (114,157,0): 38, 22, 33, (114,158,0): 38, 22, 33, (114,159,0): 38, 22, 33, (114,160,0): 40, 23, 33, (114,161,0): 40, 23, 33, (114,162,0): 40, 23, 33, (114,163,0): 40, 23, 33, (114,164,0): 40, 23, 33, (114,165,0): 40, 23, 33, (114,166,0): 40, 23, 33, (114,167,0): 40, 23, 33, (114,168,0): 40, 23, 33, (114,169,0): 39, 22, 32, (114,170,0): 38, 21, 31, (114,171,0): 37, 20, 30, (114,172,0): 37, 20, 30, (114,173,0): 38, 21, 31, (114,174,0): 39, 22, 32, (114,175,0): 40, 23, 33, (114,176,0): 39, 23, 34, (114,177,0): 38, 22, 33, (114,178,0): 38, 22, 33, (114,179,0): 38, 22, 33, (114,180,0): 38, 22, 33, (114,181,0): 39, 23, 34, (114,182,0): 41, 25, 36, (114,183,0): 42, 26, 37, (114,184,0): 41, 25, 36, (114,185,0): 41, 25, 36, (114,186,0): 41, 25, 36, (114,187,0): 41, 25, 36, (114,188,0): 41, 25, 36, (114,189,0): 41, 25, 36, (114,190,0): 41, 25, 36, (114,191,0): 41, 25, 36, (114,192,0): 44, 27, 37, (114,193,0): 44, 27, 37, (114,194,0): 44, 27, 37, (114,195,0): 45, 28, 38, (114,196,0): 48, 28, 37, (114,197,0): 48, 28, 37, (114,198,0): 48, 29, 35, (114,199,0): 49, 30, 36, (114,200,0): 49, 28, 35, (114,201,0): 50, 29, 36, (114,202,0): 51, 28, 34, (114,203,0): 51, 28, 34, (114,204,0): 52, 30, 33, (114,205,0): 53, 31, 34, (114,206,0): 55, 30, 34, (114,207,0): 55, 30, 36, (114,208,0): 54, 31, 39, (114,209,0): 54, 31, 39, (114,210,0): 54, 31, 39, (114,211,0): 54, 31, 39, (114,212,0): 54, 31, 37, (114,213,0): 54, 31, 37, (114,214,0): 54, 31, 37, (114,215,0): 54, 31, 37, (114,216,0): 54, 32, 35, (114,217,0): 54, 32, 35, (114,218,0): 54, 32, 34, (114,219,0): 53, 31, 33, (114,220,0): 53, 31, 33, (114,221,0): 52, 30, 32, (114,222,0): 52, 31, 30, (114,223,0): 54, 30, 30, (114,224,0): 61, 33, 32, (114,225,0): 62, 32, 32, (114,226,0): 62, 32, 32, (114,227,0): 62, 32, 32, (114,228,0): 62, 32, 32, (114,229,0): 62, 32, 32, (114,230,0): 62, 32, 32, (114,231,0): 62, 32, 32, (114,232,0): 63, 33, 33, (114,233,0): 63, 33, 33, (114,234,0): 63, 33, 33, (114,235,0): 62, 32, 32, (114,236,0): 62, 32, 32, (114,237,0): 61, 31, 31, (114,238,0): 61, 31, 31, (114,239,0): 61, 31, 31, (114,240,0): 62, 32, 32, (114,241,0): 62, 32, 32, (114,242,0): 61, 31, 31, (114,243,0): 61, 31, 31, (114,244,0): 60, 30, 30, (114,245,0): 60, 30, 30, (114,246,0): 59, 29, 29, (114,247,0): 59, 29, 29, (114,248,0): 61, 31, 31, (114,249,0): 61, 31, 31, (114,250,0): 61, 31, 31, (114,251,0): 61, 31, 31, (114,252,0): 61, 31, 31, (114,253,0): 61, 31, 31, (114,254,0): 61, 31, 31, (114,255,0): 61, 31, 29, (114,256,0): 62, 32, 24, (114,257,0): 63, 33, 23, (114,258,0): 63, 33, 23, (114,259,0): 63, 33, 23, (114,260,0): 64, 34, 24, (114,261,0): 65, 35, 25, (114,262,0): 65, 35, 25, (114,263,0): 65, 35, 25, (114,264,0): 70, 40, 30, (114,265,0): 70, 40, 30, (114,266,0): 70, 40, 30, (114,267,0): 70, 40, 30, (114,268,0): 70, 40, 30, (114,269,0): 70, 40, 30, (114,270,0): 70, 40, 30, (114,271,0): 70, 40, 30, (114,272,0): 73, 39, 30, (114,273,0): 73, 39, 30, (114,274,0): 73, 39, 30, (114,275,0): 74, 40, 31, (114,276,0): 75, 41, 32, (114,277,0): 75, 41, 32, (114,278,0): 75, 41, 32, (114,279,0): 76, 42, 33, (114,280,0): 76, 42, 33, (114,281,0): 76, 42, 33, (114,282,0): 77, 43, 34, (114,283,0): 78, 44, 35, (114,284,0): 79, 45, 36, (114,285,0): 80, 46, 37, (114,286,0): 81, 47, 38, (114,287,0): 82, 48, 39, (114,288,0): 81, 47, 38, (114,289,0): 82, 48, 38, (114,290,0): 82, 50, 37, (114,291,0): 84, 53, 35, (114,292,0): 83, 54, 36, (114,293,0): 85, 57, 36, (114,294,0): 88, 57, 36, (114,295,0): 89, 58, 37, (114,296,0): 96, 64, 43, (114,297,0): 101, 66, 44, (114,298,0): 106, 70, 46, (114,299,0): 113, 74, 45, (114,300,0): 120, 79, 47, (114,301,0): 131, 89, 51, (114,302,0): 142, 99, 56, (114,303,0): 151, 109, 51, (114,304,0): 179, 134, 51, (114,305,0): 191, 147, 52, (114,306,0): 197, 154, 60, (114,307,0): 193, 150, 58, (114,308,0): 186, 145, 55, (114,309,0): 184, 144, 56, (114,310,0): 182, 142, 55, (114,311,0): 176, 140, 56, (114,312,0): 178, 143, 61, (114,313,0): 175, 144, 62, (114,314,0): 175, 143, 66, (114,315,0): 174, 145, 69, (114,316,0): 173, 145, 71, (114,317,0): 174, 146, 72, (114,318,0): 173, 147, 73, (114,319,0): 173, 147, 73, (114,320,0): 174, 146, 73, (114,321,0): 175, 147, 74, (114,322,0): 174, 148, 74, (114,323,0): 174, 148, 74, (114,324,0): 175, 148, 77, (114,325,0): 176, 149, 78, (114,326,0): 174, 149, 82, (114,327,0): 174, 149, 82, (114,328,0): 176, 153, 86, (114,329,0): 175, 152, 85, (114,330,0): 175, 151, 89, (114,331,0): 175, 151, 89, (114,332,0): 172, 150, 90, (114,333,0): 172, 150, 90, (114,334,0): 171, 149, 89, (114,335,0): 170, 149, 92, (114,336,0): 168, 146, 96, (114,337,0): 166, 146, 96, (114,338,0): 166, 144, 95, (114,339,0): 164, 142, 93, (114,340,0): 164, 142, 93, (114,341,0): 164, 142, 93, (114,342,0): 166, 142, 94, (114,343,0): 166, 142, 94, (114,344,0): 165, 138, 91, (114,345,0): 165, 138, 91, (114,346,0): 165, 138, 91, (114,347,0): 165, 138, 91, (114,348,0): 167, 139, 92, (114,349,0): 167, 139, 92, (114,350,0): 167, 139, 92, (114,351,0): 167, 139, 92, (114,352,0): 171, 140, 93, (114,353,0): 171, 140, 93, (114,354,0): 173, 141, 94, (114,355,0): 175, 141, 95, (114,356,0): 178, 142, 94, (114,357,0): 181, 143, 96, (114,358,0): 183, 142, 96, (114,359,0): 185, 143, 95, (114,360,0): 191, 144, 98, (114,361,0): 196, 148, 100, (114,362,0): 202, 150, 103, (114,363,0): 205, 151, 105, (114,364,0): 207, 151, 104, (114,365,0): 209, 153, 106, (114,366,0): 214, 156, 110, (114,367,0): 220, 158, 107, (114,368,0): 232, 162, 102, (114,369,0): 238, 165, 97, (114,370,0): 240, 170, 101, (114,371,0): 245, 175, 105, (114,372,0): 249, 179, 107, (114,373,0): 250, 182, 107, (114,374,0): 251, 183, 108, (114,375,0): 251, 184, 106, (114,376,0): 246, 180, 102, (114,377,0): 244, 178, 102, (114,378,0): 242, 176, 100, (114,379,0): 240, 176, 102, (114,380,0): 242, 178, 106, (114,381,0): 243, 179, 108, (114,382,0): 243, 178, 110, (114,383,0): 242, 178, 107, (114,384,0): 243, 179, 107, (114,385,0): 248, 184, 110, (114,386,0): 253, 189, 115, (114,387,0): 253, 191, 116, (114,388,0): 252, 190, 115, (114,389,0): 247, 188, 112, (114,390,0): 245, 187, 113, (114,391,0): 245, 187, 113, (114,392,0): 242, 186, 111, (114,393,0): 241, 188, 112, (114,394,0): 243, 190, 114, (114,395,0): 242, 190, 114, (114,396,0): 237, 188, 112, (114,397,0): 232, 183, 107, (114,398,0): 227, 179, 103, (114,399,0): 222, 176, 101, (114,400,0): 218, 176, 104, (114,401,0): 216, 176, 106, (114,402,0): 216, 176, 106, (114,403,0): 213, 175, 104, (114,404,0): 211, 175, 101, (114,405,0): 210, 176, 102, (114,406,0): 214, 180, 106, (114,407,0): 216, 184, 107, (114,408,0): 222, 190, 113, (114,409,0): 224, 192, 115, (114,410,0): 228, 195, 116, (114,411,0): 233, 197, 119, (114,412,0): 237, 200, 122, (114,413,0): 238, 201, 123, (114,414,0): 240, 201, 122, (114,415,0): 241, 202, 123, (114,416,0): 238, 201, 123, (114,417,0): 234, 198, 120, (114,418,0): 231, 196, 115, (114,419,0): 228, 193, 111, (114,420,0): 226, 191, 107, (114,421,0): 226, 192, 105, (114,422,0): 226, 192, 103, (114,423,0): 227, 193, 104, (114,424,0): 237, 203, 113, (114,425,0): 236, 202, 112, (114,426,0): 234, 200, 110, (114,427,0): 232, 198, 109, (114,428,0): 232, 198, 111, (114,429,0): 234, 200, 113, (114,430,0): 236, 202, 115, (114,431,0): 235, 204, 114, (114,432,0): 238, 210, 113, (114,433,0): 237, 212, 111, (114,434,0): 238, 213, 113, (114,435,0): 236, 211, 111, (114,436,0): 235, 207, 108, (114,437,0): 231, 203, 104, (114,438,0): 230, 202, 105, (114,439,0): 230, 202, 105, (114,440,0): 230, 199, 108, (114,441,0): 228, 197, 106, (114,442,0): 227, 193, 104, (114,443,0): 224, 190, 101, (114,444,0): 222, 188, 99, (114,445,0): 222, 188, 99, (114,446,0): 223, 187, 101, (114,447,0): 227, 187, 102, (114,448,0): 226, 179, 99, (114,449,0): 227, 175, 99, (114,450,0): 221, 172, 96, (114,451,0): 214, 168, 93, (114,452,0): 206, 162, 91, (114,453,0): 196, 156, 87, (114,454,0): 189, 151, 86, (114,455,0): 182, 148, 87, (114,456,0): 174, 143, 88, (114,457,0): 168, 141, 88, (114,458,0): 159, 135, 87, (114,459,0): 151, 130, 85, (114,460,0): 142, 123, 81, (114,461,0): 135, 117, 77, (114,462,0): 128, 113, 74, (114,463,0): 127, 109, 73, (114,464,0): 125, 102, 71, (114,465,0): 123, 97, 70, (114,466,0): 119, 93, 66, (114,467,0): 116, 90, 63, (114,468,0): 115, 89, 62, (114,469,0): 116, 90, 63, (114,470,0): 119, 93, 66, (114,471,0): 121, 95, 68, (114,472,0): 122, 96, 69, (114,473,0): 120, 94, 67, (114,474,0): 119, 93, 66, (114,475,0): 120, 94, 67, (114,476,0): 123, 97, 70, (114,477,0): 124, 98, 71, (114,478,0): 123, 97, 70, (114,479,0): 120, 96, 70, (114,480,0): 115, 90, 68, (114,481,0): 112, 90, 67, (114,482,0): 109, 87, 64, (114,483,0): 108, 86, 63, (114,484,0): 107, 87, 63, (114,485,0): 108, 88, 64, (114,486,0): 111, 91, 67, (114,487,0): 112, 92, 68, (114,488,0): 105, 87, 63, (114,489,0): 105, 87, 63, (114,490,0): 104, 88, 63, (114,491,0): 105, 89, 64, (114,492,0): 106, 90, 65, (114,493,0): 109, 93, 68, (114,494,0): 110, 96, 70, (114,495,0): 111, 97, 70, (114,496,0): 114, 97, 69, (114,497,0): 114, 97, 67, (114,498,0): 115, 98, 68, (114,499,0): 116, 99, 69, (114,500,0): 117, 100, 70, (114,501,0): 118, 101, 71, (114,502,0): 119, 102, 72, (114,503,0): 119, 102, 72, (114,504,0): 120, 103, 73, (114,505,0): 120, 103, 73, (114,506,0): 120, 103, 73, (114,507,0): 120, 103, 73, (114,508,0): 120, 103, 73, (114,509,0): 121, 104, 74, (114,510,0): 121, 104, 74, (114,511,0): 121, 104, 74, (114,512,0): 122, 107, 76, (114,513,0): 121, 106, 75, (114,514,0): 119, 104, 73, (114,515,0): 118, 103, 72, (114,516,0): 116, 101, 70, (114,517,0): 114, 99, 68, (114,518,0): 112, 97, 66, (114,519,0): 112, 97, 66, (114,520,0): 114, 99, 68, (114,521,0): 114, 99, 68, (114,522,0): 114, 99, 68, (114,523,0): 114, 99, 68, (114,524,0): 114, 99, 68, (114,525,0): 114, 99, 68, (114,526,0): 114, 99, 68, (114,527,0): 114, 99, 68, (114,528,0): 115, 100, 69, (114,529,0): 116, 101, 70, (114,530,0): 119, 104, 73, (114,531,0): 120, 105, 74, (114,532,0): 120, 105, 76, (114,533,0): 119, 104, 75, (114,534,0): 117, 102, 73, (114,535,0): 116, 101, 72, (114,536,0): 117, 101, 75, (114,537,0): 117, 101, 75, (114,538,0): 117, 101, 76, (114,539,0): 116, 100, 75, (114,540,0): 116, 100, 75, (114,541,0): 115, 99, 74, (114,542,0): 115, 99, 76, (114,543,0): 115, 97, 75, (114,544,0): 122, 97, 77, (114,545,0): 123, 96, 75, (114,546,0): 121, 94, 73, (114,547,0): 120, 94, 71, (114,548,0): 118, 92, 67, (114,549,0): 116, 90, 65, (114,550,0): 115, 89, 64, (114,551,0): 114, 88, 63, (114,552,0): 115, 89, 66, (114,553,0): 114, 88, 65, (114,554,0): 110, 83, 62, (114,555,0): 106, 79, 60, (114,556,0): 101, 74, 57, (114,557,0): 97, 69, 55, (114,558,0): 94, 66, 54, (114,559,0): 92, 64, 53, (114,560,0): 89, 60, 52, (114,561,0): 90, 61, 55, (114,562,0): 90, 61, 55, (114,563,0): 90, 61, 55, (114,564,0): 90, 63, 56, (114,565,0): 91, 64, 57, (114,566,0): 89, 64, 57, (114,567,0): 89, 64, 57, (114,568,0): 90, 65, 58, (114,569,0): 91, 66, 59, (114,570,0): 90, 67, 59, (114,571,0): 91, 68, 60, (114,572,0): 88, 68, 59, (114,573,0): 87, 67, 58, (114,574,0): 85, 65, 56, (114,575,0): 84, 64, 55, (114,576,0): 87, 66, 61, (114,577,0): 87, 66, 61, (114,578,0): 87, 66, 61, (114,579,0): 88, 67, 62, (114,580,0): 88, 67, 62, (114,581,0): 89, 68, 63, (114,582,0): 89, 68, 63, (114,583,0): 90, 69, 64, (114,584,0): 87, 66, 61, (114,585,0): 87, 66, 61, (114,586,0): 85, 64, 59, (114,587,0): 84, 63, 58, (114,588,0): 82, 61, 56, (114,589,0): 81, 60, 55, (114,590,0): 80, 59, 54, (114,591,0): 78, 59, 53, (114,592,0): 79, 61, 57, (114,593,0): 76, 61, 56, (114,594,0): 75, 60, 55, (114,595,0): 74, 59, 54, (114,596,0): 72, 57, 52, (114,597,0): 71, 56, 51, (114,598,0): 69, 54, 49, (114,599,0): 69, 54, 49, (115,0,0): 32, 33, 51, (115,1,0): 34, 33, 49, (115,2,0): 36, 32, 49, (115,3,0): 40, 32, 47, (115,4,0): 45, 32, 49, (115,5,0): 50, 34, 47, (115,6,0): 55, 34, 49, (115,7,0): 57, 35, 48, (115,8,0): 61, 35, 48, (115,9,0): 59, 35, 48, (115,10,0): 58, 34, 48, (115,11,0): 53, 33, 45, (115,12,0): 50, 29, 44, (115,13,0): 43, 27, 40, (115,14,0): 40, 23, 39, (115,15,0): 36, 22, 37, (115,16,0): 28, 15, 33, (115,17,0): 28, 15, 33, (115,18,0): 28, 15, 32, (115,19,0): 28, 15, 32, (115,20,0): 29, 16, 33, (115,21,0): 31, 18, 35, (115,22,0): 34, 20, 35, (115,23,0): 35, 21, 36, (115,24,0): 38, 22, 35, (115,25,0): 39, 23, 36, (115,26,0): 42, 24, 38, (115,27,0): 43, 25, 39, (115,28,0): 44, 26, 38, (115,29,0): 44, 26, 38, (115,30,0): 43, 25, 37, (115,31,0): 43, 25, 37, (115,32,0): 42, 25, 41, (115,33,0): 42, 25, 41, (115,34,0): 40, 26, 41, (115,35,0): 39, 25, 40, (115,36,0): 38, 24, 39, (115,37,0): 37, 23, 38, (115,38,0): 36, 23, 40, (115,39,0): 36, 23, 40, (115,40,0): 37, 24, 42, (115,41,0): 36, 25, 42, (115,42,0): 35, 23, 43, (115,43,0): 34, 22, 42, (115,44,0): 30, 21, 40, (115,45,0): 29, 20, 39, (115,46,0): 28, 19, 38, (115,47,0): 28, 19, 38, (115,48,0): 29, 20, 41, (115,49,0): 29, 19, 43, (115,50,0): 29, 19, 43, (115,51,0): 29, 19, 43, (115,52,0): 29, 19, 43, (115,53,0): 29, 19, 43, (115,54,0): 29, 19, 43, (115,55,0): 29, 19, 43, (115,56,0): 28, 18, 42, (115,57,0): 28, 18, 42, (115,58,0): 27, 17, 41, (115,59,0): 27, 17, 41, (115,60,0): 27, 17, 41, (115,61,0): 26, 16, 40, (115,62,0): 26, 16, 40, (115,63,0): 26, 17, 38, (115,64,0): 23, 16, 34, (115,65,0): 23, 16, 34, (115,66,0): 23, 16, 34, (115,67,0): 23, 16, 34, (115,68,0): 23, 16, 34, (115,69,0): 23, 16, 34, (115,70,0): 23, 16, 34, (115,71,0): 23, 16, 34, (115,72,0): 21, 14, 32, (115,73,0): 21, 14, 32, (115,74,0): 21, 14, 32, (115,75,0): 21, 14, 32, (115,76,0): 21, 14, 32, (115,77,0): 21, 14, 32, (115,78,0): 21, 14, 32, (115,79,0): 21, 14, 32, (115,80,0): 19, 14, 34, (115,81,0): 18, 15, 36, (115,82,0): 18, 15, 36, (115,83,0): 17, 14, 35, (115,84,0): 17, 14, 35, (115,85,0): 16, 13, 34, (115,86,0): 16, 13, 34, (115,87,0): 16, 13, 34, (115,88,0): 15, 12, 33, (115,89,0): 15, 12, 33, (115,90,0): 15, 12, 33, (115,91,0): 15, 12, 33, (115,92,0): 15, 12, 33, (115,93,0): 15, 12, 33, (115,94,0): 15, 12, 33, (115,95,0): 15, 12, 31, (115,96,0): 15, 14, 30, (115,97,0): 13, 15, 30, (115,98,0): 13, 15, 30, (115,99,0): 13, 15, 30, (115,100,0): 13, 15, 30, (115,101,0): 13, 15, 30, (115,102,0): 13, 15, 30, (115,103,0): 13, 15, 30, (115,104,0): 11, 13, 28, (115,105,0): 11, 13, 28, (115,106,0): 11, 13, 28, (115,107,0): 11, 13, 28, (115,108,0): 11, 13, 28, (115,109,0): 12, 14, 29, (115,110,0): 12, 14, 29, (115,111,0): 14, 13, 29, (115,112,0): 16, 14, 28, (115,113,0): 16, 14, 28, (115,114,0): 16, 14, 28, (115,115,0): 17, 15, 29, (115,116,0): 18, 14, 29, (115,117,0): 19, 15, 30, (115,118,0): 19, 15, 30, (115,119,0): 19, 15, 30, (115,120,0): 23, 16, 32, (115,121,0): 24, 17, 33, (115,122,0): 25, 16, 33, (115,123,0): 26, 17, 34, (115,124,0): 28, 19, 36, (115,125,0): 29, 20, 37, (115,126,0): 31, 20, 37, (115,127,0): 33, 20, 37, (115,128,0): 33, 19, 32, (115,129,0): 35, 19, 30, (115,130,0): 35, 19, 30, (115,131,0): 36, 20, 31, (115,132,0): 36, 20, 31, (115,133,0): 37, 21, 32, (115,134,0): 37, 21, 32, (115,135,0): 37, 21, 32, (115,136,0): 36, 20, 31, (115,137,0): 36, 20, 31, (115,138,0): 36, 20, 31, (115,139,0): 36, 20, 31, (115,140,0): 36, 20, 31, (115,141,0): 36, 20, 31, (115,142,0): 36, 20, 31, (115,143,0): 36, 20, 31, (115,144,0): 38, 22, 33, (115,145,0): 38, 22, 33, (115,146,0): 38, 22, 33, (115,147,0): 38, 22, 33, (115,148,0): 38, 22, 33, (115,149,0): 38, 22, 33, (115,150,0): 38, 22, 33, (115,151,0): 38, 22, 33, (115,152,0): 38, 22, 33, (115,153,0): 38, 22, 33, (115,154,0): 38, 22, 33, (115,155,0): 38, 22, 33, (115,156,0): 38, 22, 33, (115,157,0): 38, 22, 33, (115,158,0): 38, 22, 33, (115,159,0): 38, 22, 33, (115,160,0): 40, 23, 33, (115,161,0): 40, 23, 33, (115,162,0): 40, 23, 33, (115,163,0): 40, 23, 33, (115,164,0): 40, 23, 33, (115,165,0): 40, 23, 33, (115,166,0): 40, 23, 33, (115,167,0): 40, 23, 33, (115,168,0): 40, 23, 33, (115,169,0): 39, 22, 32, (115,170,0): 38, 21, 31, (115,171,0): 37, 20, 30, (115,172,0): 37, 20, 30, (115,173,0): 38, 21, 31, (115,174,0): 39, 22, 32, (115,175,0): 40, 23, 33, (115,176,0): 38, 22, 33, (115,177,0): 38, 22, 33, (115,178,0): 38, 22, 33, (115,179,0): 38, 22, 33, (115,180,0): 39, 23, 34, (115,181,0): 40, 24, 35, (115,182,0): 40, 24, 35, (115,183,0): 41, 25, 36, (115,184,0): 41, 25, 36, (115,185,0): 41, 25, 36, (115,186,0): 41, 25, 36, (115,187,0): 41, 25, 36, (115,188,0): 41, 25, 36, (115,189,0): 41, 25, 36, (115,190,0): 41, 25, 36, (115,191,0): 41, 25, 36, (115,192,0): 43, 26, 36, (115,193,0): 44, 27, 37, (115,194,0): 44, 27, 37, (115,195,0): 45, 28, 38, (115,196,0): 47, 27, 36, (115,197,0): 48, 28, 37, (115,198,0): 48, 29, 35, (115,199,0): 48, 29, 35, (115,200,0): 48, 27, 34, (115,201,0): 48, 27, 32, (115,202,0): 50, 27, 33, (115,203,0): 50, 27, 33, (115,204,0): 51, 29, 32, (115,205,0): 51, 29, 32, (115,206,0): 54, 29, 33, (115,207,0): 54, 29, 33, (115,208,0): 53, 30, 38, (115,209,0): 53, 30, 38, (115,210,0): 53, 30, 38, (115,211,0): 53, 30, 38, (115,212,0): 53, 30, 36, (115,213,0): 53, 30, 36, (115,214,0): 53, 30, 36, (115,215,0): 53, 31, 34, (115,216,0): 53, 31, 34, (115,217,0): 53, 31, 34, (115,218,0): 53, 31, 33, (115,219,0): 53, 31, 33, (115,220,0): 53, 31, 33, (115,221,0): 53, 31, 33, (115,222,0): 53, 32, 31, (115,223,0): 55, 31, 31, (115,224,0): 61, 33, 32, (115,225,0): 62, 32, 32, (115,226,0): 62, 32, 32, (115,227,0): 62, 32, 32, (115,228,0): 62, 32, 32, (115,229,0): 62, 32, 32, (115,230,0): 62, 32, 32, (115,231,0): 62, 32, 32, (115,232,0): 63, 33, 33, (115,233,0): 63, 33, 33, (115,234,0): 63, 33, 33, (115,235,0): 62, 32, 32, (115,236,0): 62, 32, 32, (115,237,0): 61, 31, 31, (115,238,0): 61, 31, 31, (115,239,0): 61, 31, 31, (115,240,0): 61, 31, 31, (115,241,0): 61, 31, 31, (115,242,0): 61, 31, 31, (115,243,0): 61, 31, 31, (115,244,0): 60, 30, 30, (115,245,0): 60, 30, 30, (115,246,0): 60, 30, 30, (115,247,0): 60, 30, 30, (115,248,0): 62, 32, 32, (115,249,0): 62, 32, 32, (115,250,0): 62, 32, 32, (115,251,0): 62, 32, 32, (115,252,0): 62, 32, 32, (115,253,0): 62, 32, 32, (115,254,0): 62, 32, 32, (115,255,0): 62, 32, 30, (115,256,0): 63, 33, 25, (115,257,0): 63, 33, 23, (115,258,0): 63, 33, 23, (115,259,0): 64, 34, 24, (115,260,0): 64, 34, 24, (115,261,0): 65, 35, 25, (115,262,0): 65, 35, 25, (115,263,0): 66, 36, 26, (115,264,0): 69, 39, 29, (115,265,0): 69, 39, 29, (115,266,0): 69, 39, 29, (115,267,0): 69, 39, 29, (115,268,0): 69, 39, 29, (115,269,0): 69, 39, 29, (115,270,0): 69, 39, 29, (115,271,0): 69, 39, 29, (115,272,0): 72, 38, 29, (115,273,0): 73, 39, 30, (115,274,0): 73, 39, 30, (115,275,0): 74, 40, 31, (115,276,0): 74, 40, 31, (115,277,0): 75, 41, 32, (115,278,0): 75, 41, 32, (115,279,0): 75, 41, 32, (115,280,0): 76, 42, 33, (115,281,0): 76, 42, 33, (115,282,0): 77, 43, 34, (115,283,0): 78, 44, 35, (115,284,0): 79, 45, 36, (115,285,0): 80, 46, 37, (115,286,0): 81, 47, 38, (115,287,0): 81, 47, 38, (115,288,0): 81, 47, 38, (115,289,0): 82, 48, 38, (115,290,0): 82, 50, 37, (115,291,0): 84, 53, 35, (115,292,0): 83, 54, 36, (115,293,0): 85, 57, 36, (115,294,0): 88, 57, 36, (115,295,0): 89, 58, 37, (115,296,0): 94, 62, 41, (115,297,0): 99, 64, 42, (115,298,0): 106, 70, 46, (115,299,0): 114, 75, 46, (115,300,0): 121, 80, 48, (115,301,0): 132, 90, 52, (115,302,0): 143, 100, 57, (115,303,0): 151, 109, 51, (115,304,0): 179, 134, 51, (115,305,0): 193, 149, 54, (115,306,0): 201, 158, 64, (115,307,0): 198, 155, 63, (115,308,0): 191, 150, 60, (115,309,0): 188, 148, 60, (115,310,0): 185, 145, 58, (115,311,0): 178, 142, 56, (115,312,0): 180, 145, 61, (115,313,0): 177, 146, 64, (115,314,0): 177, 146, 66, (115,315,0): 176, 147, 69, (115,316,0): 175, 148, 71, (115,317,0): 175, 147, 73, (115,318,0): 174, 148, 73, (115,319,0): 174, 148, 74, (115,320,0): 173, 145, 72, (115,321,0): 173, 145, 72, (115,322,0): 173, 147, 73, (115,323,0): 173, 147, 73, (115,324,0): 174, 147, 76, (115,325,0): 174, 147, 78, (115,326,0): 173, 148, 81, (115,327,0): 173, 148, 81, (115,328,0): 176, 153, 86, (115,329,0): 176, 152, 88, (115,330,0): 175, 151, 89, (115,331,0): 175, 151, 89, (115,332,0): 172, 150, 90, (115,333,0): 172, 150, 90, (115,334,0): 171, 149, 89, (115,335,0): 171, 149, 92, (115,336,0): 167, 145, 95, (115,337,0): 165, 145, 95, (115,338,0): 165, 143, 94, (115,339,0): 164, 142, 93, (115,340,0): 163, 141, 92, (115,341,0): 163, 141, 92, (115,342,0): 165, 141, 93, (115,343,0): 166, 142, 94, (115,344,0): 165, 138, 91, (115,345,0): 165, 138, 91, (115,346,0): 165, 138, 91, (115,347,0): 165, 138, 91, (115,348,0): 167, 139, 92, (115,349,0): 167, 139, 92, (115,350,0): 167, 139, 92, (115,351,0): 169, 138, 92, (115,352,0): 170, 139, 92, (115,353,0): 172, 140, 93, (115,354,0): 174, 140, 94, (115,355,0): 178, 142, 94, (115,356,0): 181, 143, 96, (115,357,0): 185, 145, 96, (115,358,0): 187, 145, 97, (115,359,0): 191, 145, 96, (115,360,0): 195, 147, 99, (115,361,0): 201, 149, 101, (115,362,0): 205, 152, 102, (115,363,0): 210, 152, 104, (115,364,0): 213, 153, 103, (115,365,0): 216, 156, 106, (115,366,0): 222, 160, 111, (115,367,0): 229, 164, 110, (115,368,0): 237, 167, 107, (115,369,0): 243, 169, 104, (115,370,0): 244, 174, 105, (115,371,0): 248, 178, 108, (115,372,0): 251, 181, 109, (115,373,0): 253, 184, 109, (115,374,0): 253, 186, 108, (115,375,0): 253, 186, 108, (115,376,0): 250, 183, 105, (115,377,0): 249, 183, 105, (115,378,0): 248, 182, 104, (115,379,0): 248, 182, 104, (115,380,0): 246, 183, 106, (115,381,0): 247, 184, 107, (115,382,0): 247, 183, 109, (115,383,0): 246, 182, 108, (115,384,0): 246, 182, 108, (115,385,0): 249, 187, 112, (115,386,0): 253, 191, 116, (115,387,0): 252, 193, 117, (115,388,0): 249, 190, 114, (115,389,0): 245, 188, 111, (115,390,0): 244, 186, 112, (115,391,0): 244, 188, 113, (115,392,0): 243, 190, 114, (115,393,0): 242, 190, 114, (115,394,0): 243, 191, 115, (115,395,0): 240, 191, 114, (115,396,0): 237, 188, 112, (115,397,0): 231, 183, 107, (115,398,0): 227, 179, 103, (115,399,0): 223, 177, 102, (115,400,0): 220, 178, 106, (115,401,0): 217, 177, 107, (115,402,0): 216, 178, 107, (115,403,0): 214, 177, 106, (115,404,0): 214, 178, 104, (115,405,0): 213, 179, 105, (115,406,0): 215, 183, 108, (115,407,0): 216, 184, 109, (115,408,0): 223, 191, 114, (115,409,0): 225, 193, 116, (115,410,0): 228, 195, 116, (115,411,0): 230, 197, 118, (115,412,0): 235, 198, 120, (115,413,0): 237, 200, 122, (115,414,0): 240, 201, 122, (115,415,0): 239, 202, 122, (115,416,0): 237, 200, 122, (115,417,0): 235, 199, 121, (115,418,0): 232, 197, 116, (115,419,0): 230, 195, 113, (115,420,0): 228, 193, 109, (115,421,0): 227, 193, 106, (115,422,0): 228, 194, 105, (115,423,0): 228, 194, 104, (115,424,0): 237, 203, 113, (115,425,0): 236, 202, 112, (115,426,0): 236, 202, 112, (115,427,0): 235, 201, 111, (115,428,0): 235, 201, 112, (115,429,0): 236, 202, 115, (115,430,0): 236, 202, 115, (115,431,0): 235, 204, 114, (115,432,0): 237, 209, 112, (115,433,0): 235, 210, 109, (115,434,0): 236, 211, 111, (115,435,0): 236, 211, 111, (115,436,0): 236, 208, 109, (115,437,0): 234, 206, 107, (115,438,0): 233, 205, 108, (115,439,0): 232, 203, 109, (115,440,0): 233, 202, 109, (115,441,0): 230, 199, 108, (115,442,0): 228, 194, 105, (115,443,0): 224, 190, 101, (115,444,0): 223, 189, 100, (115,445,0): 225, 191, 102, (115,446,0): 229, 193, 107, (115,447,0): 234, 194, 109, (115,448,0): 231, 184, 102, (115,449,0): 230, 181, 102, (115,450,0): 225, 178, 100, (115,451,0): 218, 172, 95, (115,452,0): 209, 165, 92, (115,453,0): 199, 159, 89, (115,454,0): 191, 154, 86, (115,455,0): 185, 151, 88, (115,456,0): 175, 144, 87, (115,457,0): 168, 141, 86, (115,458,0): 158, 135, 85, (115,459,0): 150, 129, 82, (115,460,0): 143, 124, 81, (115,461,0): 137, 120, 77, (115,462,0): 130, 115, 74, (115,463,0): 128, 110, 74, (115,464,0): 127, 104, 73, (115,465,0): 126, 100, 73, (115,466,0): 122, 96, 69, (115,467,0): 119, 93, 66, (115,468,0): 119, 93, 66, (115,469,0): 121, 95, 68, (115,470,0): 124, 98, 71, (115,471,0): 126, 100, 73, (115,472,0): 126, 100, 73, (115,473,0): 124, 98, 71, (115,474,0): 121, 95, 68, (115,475,0): 122, 96, 69, (115,476,0): 124, 98, 71, (115,477,0): 126, 100, 73, (115,478,0): 125, 99, 72, (115,479,0): 123, 99, 71, (115,480,0): 118, 94, 70, (115,481,0): 115, 93, 70, (115,482,0): 113, 91, 68, (115,483,0): 112, 90, 67, (115,484,0): 111, 91, 67, (115,485,0): 112, 92, 68, (115,486,0): 114, 94, 70, (115,487,0): 115, 95, 71, (115,488,0): 108, 90, 66, (115,489,0): 108, 90, 66, (115,490,0): 106, 90, 65, (115,491,0): 106, 90, 65, (115,492,0): 107, 91, 66, (115,493,0): 109, 93, 68, (115,494,0): 109, 95, 69, (115,495,0): 111, 97, 70, (115,496,0): 114, 97, 69, (115,497,0): 114, 97, 67, (115,498,0): 114, 97, 67, (115,499,0): 114, 97, 67, (115,500,0): 114, 97, 67, (115,501,0): 116, 99, 69, (115,502,0): 117, 100, 70, (115,503,0): 118, 101, 71, (115,504,0): 120, 103, 73, (115,505,0): 121, 104, 74, (115,506,0): 121, 104, 74, (115,507,0): 121, 104, 74, (115,508,0): 122, 105, 75, (115,509,0): 122, 105, 75, (115,510,0): 122, 105, 75, (115,511,0): 122, 105, 75, (115,512,0): 124, 109, 78, (115,513,0): 123, 108, 77, (115,514,0): 121, 106, 75, (115,515,0): 119, 104, 73, (115,516,0): 116, 101, 70, (115,517,0): 114, 99, 68, (115,518,0): 112, 97, 66, (115,519,0): 111, 96, 65, (115,520,0): 114, 99, 68, (115,521,0): 114, 99, 68, (115,522,0): 114, 99, 68, (115,523,0): 114, 99, 68, (115,524,0): 114, 99, 68, (115,525,0): 114, 99, 68, (115,526,0): 114, 99, 68, (115,527,0): 114, 99, 68, (115,528,0): 119, 104, 73, (115,529,0): 120, 105, 74, (115,530,0): 121, 106, 75, (115,531,0): 121, 106, 75, (115,532,0): 120, 105, 76, (115,533,0): 119, 104, 75, (115,534,0): 117, 102, 73, (115,535,0): 116, 101, 72, (115,536,0): 117, 101, 75, (115,537,0): 116, 100, 74, (115,538,0): 116, 100, 75, (115,539,0): 116, 100, 75, (115,540,0): 115, 99, 74, (115,541,0): 114, 98, 73, (115,542,0): 114, 98, 75, (115,543,0): 115, 97, 75, (115,544,0): 120, 95, 75, (115,545,0): 120, 93, 74, (115,546,0): 121, 93, 72, (115,547,0): 119, 92, 71, (115,548,0): 119, 91, 69, (115,549,0): 117, 91, 66, (115,550,0): 117, 89, 65, (115,551,0): 116, 90, 65, (115,552,0): 117, 89, 67, (115,553,0): 115, 89, 66, (115,554,0): 113, 84, 66, (115,555,0): 108, 81, 62, (115,556,0): 105, 76, 62, (115,557,0): 99, 71, 57, (115,558,0): 95, 65, 54, (115,559,0): 92, 64, 53, (115,560,0): 88, 59, 51, (115,561,0): 88, 59, 53, (115,562,0): 89, 60, 54, (115,563,0): 89, 60, 54, (115,564,0): 89, 62, 55, (115,565,0): 89, 62, 55, (115,566,0): 88, 63, 56, (115,567,0): 88, 63, 56, (115,568,0): 88, 63, 56, (115,569,0): 88, 65, 57, (115,570,0): 89, 66, 58, (115,571,0): 89, 66, 58, (115,572,0): 86, 66, 57, (115,573,0): 85, 65, 56, (115,574,0): 84, 64, 55, (115,575,0): 83, 63, 54, (115,576,0): 86, 65, 60, (115,577,0): 87, 66, 61, (115,578,0): 87, 66, 61, (115,579,0): 88, 67, 62, (115,580,0): 88, 67, 62, (115,581,0): 89, 68, 63, (115,582,0): 89, 68, 63, (115,583,0): 89, 68, 63, (115,584,0): 86, 65, 60, (115,585,0): 86, 65, 60, (115,586,0): 84, 63, 58, (115,587,0): 83, 62, 57, (115,588,0): 81, 60, 55, (115,589,0): 80, 59, 54, (115,590,0): 79, 58, 53, (115,591,0): 77, 58, 52, (115,592,0): 78, 60, 56, (115,593,0): 76, 61, 56, (115,594,0): 75, 60, 55, (115,595,0): 74, 59, 54, (115,596,0): 72, 57, 52, (115,597,0): 71, 56, 51, (115,598,0): 70, 55, 50, (115,599,0): 70, 55, 50, (116,0,0): 32, 33, 51, (116,1,0): 34, 33, 49, (116,2,0): 36, 32, 49, (116,3,0): 40, 32, 47, (116,4,0): 45, 32, 49, (116,5,0): 50, 34, 47, (116,6,0): 55, 34, 49, (116,7,0): 57, 35, 48, (116,8,0): 62, 36, 49, (116,9,0): 60, 36, 49, (116,10,0): 59, 35, 49, (116,11,0): 54, 34, 46, (116,12,0): 51, 30, 45, (116,13,0): 44, 28, 41, (116,14,0): 41, 24, 40, (116,15,0): 37, 23, 38, (116,16,0): 32, 19, 37, (116,17,0): 31, 18, 36, (116,18,0): 30, 17, 34, (116,19,0): 29, 16, 33, (116,20,0): 29, 16, 33, (116,21,0): 30, 17, 34, (116,22,0): 32, 18, 33, (116,23,0): 32, 18, 33, (116,24,0): 40, 24, 37, (116,25,0): 41, 25, 38, (116,26,0): 44, 26, 40, (116,27,0): 45, 27, 41, (116,28,0): 45, 27, 39, (116,29,0): 45, 27, 39, (116,30,0): 44, 26, 38, (116,31,0): 43, 25, 37, (116,32,0): 41, 24, 40, (116,33,0): 41, 24, 40, (116,34,0): 41, 24, 40, (116,35,0): 41, 24, 40, (116,36,0): 38, 24, 39, (116,37,0): 38, 24, 39, (116,38,0): 38, 24, 41, (116,39,0): 37, 24, 41, (116,40,0): 37, 24, 42, (116,41,0): 37, 24, 42, (116,42,0): 35, 23, 43, (116,43,0): 35, 23, 43, (116,44,0): 34, 22, 42, (116,45,0): 33, 21, 41, (116,46,0): 30, 21, 40, (116,47,0): 30, 21, 40, (116,48,0): 33, 21, 43, (116,49,0): 33, 21, 43, (116,50,0): 33, 21, 43, (116,51,0): 33, 21, 43, (116,52,0): 33, 21, 43, (116,53,0): 33, 21, 43, (116,54,0): 33, 21, 43, (116,55,0): 33, 21, 43, (116,56,0): 31, 19, 41, (116,57,0): 31, 19, 41, (116,58,0): 30, 18, 40, (116,59,0): 30, 18, 40, (116,60,0): 29, 17, 39, (116,61,0): 28, 16, 38, (116,62,0): 28, 16, 38, (116,63,0): 25, 16, 37, (116,64,0): 23, 16, 34, (116,65,0): 23, 16, 34, (116,66,0): 23, 16, 34, (116,67,0): 23, 16, 34, (116,68,0): 23, 16, 34, (116,69,0): 23, 16, 34, (116,70,0): 23, 16, 34, (116,71,0): 23, 16, 34, (116,72,0): 22, 15, 33, (116,73,0): 22, 15, 33, (116,74,0): 22, 15, 33, (116,75,0): 22, 15, 33, (116,76,0): 22, 15, 33, (116,77,0): 22, 15, 33, (116,78,0): 22, 15, 33, (116,79,0): 22, 15, 33, (116,80,0): 20, 15, 35, (116,81,0): 20, 15, 35, (116,82,0): 19, 14, 34, (116,83,0): 18, 13, 33, (116,84,0): 18, 13, 33, (116,85,0): 17, 12, 32, (116,86,0): 16, 11, 31, (116,87,0): 16, 11, 31, (116,88,0): 17, 12, 32, (116,89,0): 17, 12, 32, (116,90,0): 17, 12, 32, (116,91,0): 17, 12, 32, (116,92,0): 17, 12, 32, (116,93,0): 17, 12, 32, (116,94,0): 17, 12, 32, (116,95,0): 16, 13, 32, (116,96,0): 15, 14, 30, (116,97,0): 15, 14, 30, (116,98,0): 15, 14, 30, (116,99,0): 15, 14, 30, (116,100,0): 15, 14, 30, (116,101,0): 15, 14, 30, (116,102,0): 15, 14, 30, (116,103,0): 15, 14, 30, (116,104,0): 13, 12, 28, (116,105,0): 13, 12, 28, (116,106,0): 13, 12, 28, (116,107,0): 13, 12, 28, (116,108,0): 13, 12, 28, (116,109,0): 12, 11, 27, (116,110,0): 12, 11, 27, (116,111,0): 12, 11, 27, (116,112,0): 16, 14, 28, (116,113,0): 16, 14, 28, (116,114,0): 17, 13, 28, (116,115,0): 18, 14, 29, (116,116,0): 18, 14, 29, (116,117,0): 19, 15, 30, (116,118,0): 21, 14, 30, (116,119,0): 21, 14, 30, (116,120,0): 24, 15, 32, (116,121,0): 25, 16, 33, (116,122,0): 25, 16, 33, (116,123,0): 26, 17, 34, (116,124,0): 30, 19, 36, (116,125,0): 31, 20, 37, (116,126,0): 31, 20, 37, (116,127,0): 33, 20, 37, (116,128,0): 33, 19, 32, (116,129,0): 35, 19, 30, (116,130,0): 35, 19, 30, (116,131,0): 36, 20, 31, (116,132,0): 36, 20, 31, (116,133,0): 37, 21, 32, (116,134,0): 37, 21, 32, (116,135,0): 37, 21, 32, (116,136,0): 36, 20, 31, (116,137,0): 36, 20, 31, (116,138,0): 36, 20, 31, (116,139,0): 36, 20, 31, (116,140,0): 36, 20, 31, (116,141,0): 36, 20, 31, (116,142,0): 36, 20, 31, (116,143,0): 36, 20, 31, (116,144,0): 38, 22, 33, (116,145,0): 38, 22, 33, (116,146,0): 38, 22, 33, (116,147,0): 38, 22, 33, (116,148,0): 38, 22, 33, (116,149,0): 38, 22, 33, (116,150,0): 38, 22, 33, (116,151,0): 38, 22, 33, (116,152,0): 38, 22, 33, (116,153,0): 38, 22, 33, (116,154,0): 38, 22, 33, (116,155,0): 38, 22, 33, (116,156,0): 38, 22, 33, (116,157,0): 38, 22, 33, (116,158,0): 38, 22, 33, (116,159,0): 38, 22, 33, (116,160,0): 40, 23, 33, (116,161,0): 40, 23, 33, (116,162,0): 40, 23, 33, (116,163,0): 40, 23, 33, (116,164,0): 40, 23, 33, (116,165,0): 40, 23, 33, (116,166,0): 40, 23, 33, (116,167,0): 40, 23, 33, (116,168,0): 40, 23, 33, (116,169,0): 39, 22, 32, (116,170,0): 38, 21, 31, (116,171,0): 37, 20, 30, (116,172,0): 37, 20, 30, (116,173,0): 38, 21, 31, (116,174,0): 39, 22, 32, (116,175,0): 40, 23, 33, (116,176,0): 37, 21, 32, (116,177,0): 38, 22, 33, (116,178,0): 38, 22, 33, (116,179,0): 39, 23, 34, (116,180,0): 40, 24, 35, (116,181,0): 40, 24, 35, (116,182,0): 40, 24, 35, (116,183,0): 40, 24, 35, (116,184,0): 40, 24, 35, (116,185,0): 40, 24, 35, (116,186,0): 40, 24, 35, (116,187,0): 40, 24, 35, (116,188,0): 40, 24, 35, (116,189,0): 40, 24, 35, (116,190,0): 40, 24, 35, (116,191,0): 40, 24, 35, (116,192,0): 43, 26, 36, (116,193,0): 43, 26, 34, (116,194,0): 45, 25, 34, (116,195,0): 46, 26, 35, (116,196,0): 46, 26, 35, (116,197,0): 47, 27, 36, (116,198,0): 48, 27, 34, (116,199,0): 49, 28, 35, (116,200,0): 49, 26, 32, (116,201,0): 49, 26, 32, (116,202,0): 49, 26, 32, (116,203,0): 50, 28, 31, (116,204,0): 52, 27, 31, (116,205,0): 53, 28, 32, (116,206,0): 53, 28, 32, (116,207,0): 53, 28, 32, (116,208,0): 53, 30, 38, (116,209,0): 53, 30, 38, (116,210,0): 53, 30, 36, (116,211,0): 53, 30, 36, (116,212,0): 53, 30, 36, (116,213,0): 53, 30, 36, (116,214,0): 53, 31, 34, (116,215,0): 53, 31, 34, (116,216,0): 50, 28, 31, (116,217,0): 51, 29, 31, (116,218,0): 51, 29, 31, (116,219,0): 52, 30, 32, (116,220,0): 54, 33, 32, (116,221,0): 55, 34, 33, (116,222,0): 55, 34, 33, (116,223,0): 58, 34, 34, (116,224,0): 61, 33, 32, (116,225,0): 62, 32, 32, (116,226,0): 62, 32, 32, (116,227,0): 62, 32, 32, (116,228,0): 62, 32, 32, (116,229,0): 62, 32, 32, (116,230,0): 62, 32, 32, (116,231,0): 62, 32, 32, (116,232,0): 63, 33, 33, (116,233,0): 63, 33, 33, (116,234,0): 63, 33, 33, (116,235,0): 62, 32, 32, (116,236,0): 62, 32, 32, (116,237,0): 61, 31, 31, (116,238,0): 61, 31, 31, (116,239,0): 61, 31, 31, (116,240,0): 60, 30, 30, (116,241,0): 60, 30, 30, (116,242,0): 60, 30, 30, (116,243,0): 60, 30, 30, (116,244,0): 61, 31, 31, (116,245,0): 61, 31, 31, (116,246,0): 61, 31, 31, (116,247,0): 61, 31, 31, (116,248,0): 62, 32, 32, (116,249,0): 62, 32, 32, (116,250,0): 62, 32, 32, (116,251,0): 62, 32, 32, (116,252,0): 62, 32, 32, (116,253,0): 62, 32, 32, (116,254,0): 62, 32, 32, (116,255,0): 62, 32, 30, (116,256,0): 63, 33, 25, (116,257,0): 64, 34, 24, (116,258,0): 64, 34, 24, (116,259,0): 65, 35, 25, (116,260,0): 65, 35, 25, (116,261,0): 66, 36, 26, (116,262,0): 66, 36, 26, (116,263,0): 66, 36, 26, (116,264,0): 69, 39, 29, (116,265,0): 69, 39, 29, (116,266,0): 69, 39, 29, (116,267,0): 69, 39, 29, (116,268,0): 69, 39, 29, (116,269,0): 69, 39, 29, (116,270,0): 69, 39, 29, (116,271,0): 69, 39, 29, (116,272,0): 72, 38, 29, (116,273,0): 72, 38, 29, (116,274,0): 72, 38, 29, (116,275,0): 73, 39, 30, (116,276,0): 73, 39, 30, (116,277,0): 74, 40, 31, (116,278,0): 74, 40, 31, (116,279,0): 75, 41, 32, (116,280,0): 75, 41, 32, (116,281,0): 75, 41, 32, (116,282,0): 76, 42, 33, (116,283,0): 77, 43, 34, (116,284,0): 78, 44, 35, (116,285,0): 79, 45, 36, (116,286,0): 80, 46, 37, (116,287,0): 80, 46, 37, (116,288,0): 81, 47, 38, (116,289,0): 82, 48, 38, (116,290,0): 82, 50, 37, (116,291,0): 84, 53, 35, (116,292,0): 83, 54, 36, (116,293,0): 85, 57, 36, (116,294,0): 88, 57, 36, (116,295,0): 89, 58, 37, (116,296,0): 93, 61, 40, (116,297,0): 99, 64, 42, (116,298,0): 106, 70, 46, (116,299,0): 115, 76, 47, (116,300,0): 122, 81, 49, (116,301,0): 132, 90, 52, (116,302,0): 143, 100, 57, (116,303,0): 150, 108, 50, (116,304,0): 175, 130, 49, (116,305,0): 190, 145, 52, (116,306,0): 199, 156, 64, (116,307,0): 199, 156, 64, (116,308,0): 193, 152, 62, (116,309,0): 191, 151, 63, (116,310,0): 189, 149, 62, (116,311,0): 181, 145, 59, (116,312,0): 183, 148, 64, (116,313,0): 180, 149, 67, (116,314,0): 180, 149, 69, (116,315,0): 177, 148, 70, (116,316,0): 176, 149, 70, (116,317,0): 176, 149, 72, (116,318,0): 175, 149, 72, (116,319,0): 175, 149, 74, (116,320,0): 173, 145, 72, (116,321,0): 173, 145, 72, (116,322,0): 172, 145, 74, (116,323,0): 173, 146, 75, (116,324,0): 173, 146, 77, (116,325,0): 174, 147, 78, (116,326,0): 172, 147, 80, (116,327,0): 172, 147, 80, (116,328,0): 175, 152, 85, (116,329,0): 175, 151, 87, (116,330,0): 175, 151, 89, (116,331,0): 174, 150, 88, (116,332,0): 172, 150, 90, (116,333,0): 171, 149, 89, (116,334,0): 171, 149, 91, (116,335,0): 171, 149, 92, (116,336,0): 166, 144, 94, (116,337,0): 165, 143, 94, (116,338,0): 164, 140, 92, (116,339,0): 163, 139, 91, (116,340,0): 162, 138, 90, (116,341,0): 163, 139, 91, (116,342,0): 165, 138, 91, (116,343,0): 166, 139, 92, (116,344,0): 165, 137, 90, (116,345,0): 165, 137, 90, (116,346,0): 165, 137, 90, (116,347,0): 166, 138, 91, (116,348,0): 169, 138, 92, (116,349,0): 170, 139, 93, (116,350,0): 170, 139, 93, (116,351,0): 170, 139, 93, (116,352,0): 172, 140, 93, (116,353,0): 174, 140, 94, (116,354,0): 178, 142, 94, (116,355,0): 181, 143, 96, (116,356,0): 186, 146, 97, (116,357,0): 189, 147, 97, (116,358,0): 194, 148, 99, (116,359,0): 196, 148, 99, (116,360,0): 200, 148, 98, (116,361,0): 206, 150, 99, (116,362,0): 210, 153, 100, (116,363,0): 215, 153, 102, (116,364,0): 218, 155, 102, (116,365,0): 224, 159, 105, (116,366,0): 231, 164, 111, (116,367,0): 238, 169, 112, (116,368,0): 244, 173, 111, (116,369,0): 247, 173, 108, (116,370,0): 250, 177, 109, (116,371,0): 252, 179, 110, (116,372,0): 253, 183, 111, (116,373,0): 254, 185, 110, (116,374,0): 255, 186, 109, (116,375,0): 255, 188, 109, (116,376,0): 252, 185, 106, (116,377,0): 253, 186, 107, (116,378,0): 252, 187, 107, (116,379,0): 252, 187, 107, (116,380,0): 252, 187, 107, (116,381,0): 251, 186, 106, (116,382,0): 250, 187, 108, (116,383,0): 250, 187, 108, (116,384,0): 247, 185, 108, (116,385,0): 250, 188, 111, (116,386,0): 253, 191, 116, (116,387,0): 250, 191, 115, (116,388,0): 247, 188, 112, (116,389,0): 243, 186, 109, (116,390,0): 242, 184, 110, (116,391,0): 242, 186, 111, (116,392,0): 244, 190, 116, (116,393,0): 243, 191, 116, (116,394,0): 243, 191, 116, (116,395,0): 239, 190, 114, (116,396,0): 236, 186, 113, (116,397,0): 231, 183, 109, (116,398,0): 227, 179, 105, (116,399,0): 222, 178, 105, (116,400,0): 223, 180, 111, (116,401,0): 220, 180, 111, (116,402,0): 219, 181, 110, (116,403,0): 218, 181, 110, (116,404,0): 219, 182, 111, (116,405,0): 218, 184, 112, (116,406,0): 218, 186, 111, (116,407,0): 218, 186, 111, (116,408,0): 224, 192, 115, (116,409,0): 225, 193, 116, (116,410,0): 227, 194, 117, (116,411,0): 228, 195, 118, (116,412,0): 233, 196, 118, (116,413,0): 235, 198, 120, (116,414,0): 238, 199, 122, (116,415,0): 238, 201, 123, (116,416,0): 236, 199, 121, (116,417,0): 234, 198, 120, (116,418,0): 233, 198, 117, (116,419,0): 231, 196, 114, (116,420,0): 230, 195, 111, (116,421,0): 230, 196, 109, (116,422,0): 230, 196, 107, (116,423,0): 230, 196, 106, (116,424,0): 237, 203, 113, (116,425,0): 238, 205, 112, (116,426,0): 239, 205, 115, (116,427,0): 239, 205, 115, (116,428,0): 239, 205, 116, (116,429,0): 239, 205, 116, (116,430,0): 238, 204, 117, (116,431,0): 235, 204, 114, (116,432,0): 234, 206, 109, (116,433,0): 232, 207, 107, (116,434,0): 233, 208, 108, (116,435,0): 234, 209, 109, (116,436,0): 237, 209, 112, (116,437,0): 236, 208, 111, (116,438,0): 235, 206, 112, (116,439,0): 233, 204, 110, (116,440,0): 235, 204, 111, (116,441,0): 232, 201, 108, (116,442,0): 229, 195, 105, (116,443,0): 225, 191, 101, (116,444,0): 224, 190, 101, (116,445,0): 227, 193, 104, (116,446,0): 232, 196, 108, (116,447,0): 235, 198, 110, (116,448,0): 235, 190, 105, (116,449,0): 234, 188, 103, (116,450,0): 230, 183, 101, (116,451,0): 220, 177, 98, (116,452,0): 211, 169, 93, (116,453,0): 200, 162, 89, (116,454,0): 191, 157, 86, (116,455,0): 184, 153, 88, (116,456,0): 173, 143, 81, (116,457,0): 164, 138, 81, (116,458,0): 154, 131, 79, (116,459,0): 147, 127, 77, (116,460,0): 143, 125, 79, (116,461,0): 139, 122, 78, (116,462,0): 132, 117, 74, (116,463,0): 130, 112, 74, (116,464,0): 129, 106, 74, (116,465,0): 127, 102, 72, (116,466,0): 124, 99, 69, (116,467,0): 122, 97, 67, (116,468,0): 123, 98, 68, (116,469,0): 125, 100, 70, (116,470,0): 129, 104, 74, (116,471,0): 131, 106, 76, (116,472,0): 130, 105, 75, (116,473,0): 126, 101, 71, (116,474,0): 123, 98, 68, (116,475,0): 123, 98, 68, (116,476,0): 125, 100, 70, (116,477,0): 127, 102, 72, (116,478,0): 126, 101, 71, (116,479,0): 124, 100, 72, (116,480,0): 121, 97, 73, (116,481,0): 118, 96, 72, (116,482,0): 118, 96, 72, (116,483,0): 117, 95, 71, (116,484,0): 116, 96, 71, (116,485,0): 117, 97, 72, (116,486,0): 117, 97, 72, (116,487,0): 118, 98, 73, (116,488,0): 113, 96, 70, (116,489,0): 112, 95, 69, (116,490,0): 110, 94, 68, (116,491,0): 109, 93, 67, (116,492,0): 110, 94, 68, (116,493,0): 111, 95, 69, (116,494,0): 111, 97, 70, (116,495,0): 112, 98, 71, (116,496,0): 115, 98, 70, (116,497,0): 114, 97, 67, (116,498,0): 113, 96, 66, (116,499,0): 113, 96, 66, (116,500,0): 113, 96, 66, (116,501,0): 114, 97, 67, (116,502,0): 116, 99, 69, (116,503,0): 117, 100, 70, (116,504,0): 121, 104, 74, (116,505,0): 121, 104, 74, (116,506,0): 122, 105, 75, (116,507,0): 122, 105, 75, (116,508,0): 123, 106, 76, (116,509,0): 124, 107, 77, (116,510,0): 124, 107, 77, (116,511,0): 124, 107, 77, (116,512,0): 125, 110, 79, (116,513,0): 124, 109, 78, (116,514,0): 123, 108, 77, (116,515,0): 120, 105, 74, (116,516,0): 118, 103, 72, (116,517,0): 116, 101, 70, (116,518,0): 114, 99, 68, (116,519,0): 113, 98, 67, (116,520,0): 116, 101, 70, (116,521,0): 116, 101, 70, (116,522,0): 116, 101, 70, (116,523,0): 116, 101, 70, (116,524,0): 116, 101, 70, (116,525,0): 116, 101, 70, (116,526,0): 116, 101, 70, (116,527,0): 116, 101, 70, (116,528,0): 121, 106, 75, (116,529,0): 121, 106, 75, (116,530,0): 121, 106, 75, (116,531,0): 121, 106, 75, (116,532,0): 120, 105, 76, (116,533,0): 119, 104, 75, (116,534,0): 117, 102, 73, (116,535,0): 116, 101, 72, (116,536,0): 116, 100, 74, (116,537,0): 116, 100, 74, (116,538,0): 116, 100, 75, (116,539,0): 115, 99, 74, (116,540,0): 114, 98, 73, (116,541,0): 114, 98, 73, (116,542,0): 114, 98, 75, (116,543,0): 116, 95, 74, (116,544,0): 118, 91, 72, (116,545,0): 119, 90, 72, (116,546,0): 120, 89, 69, (116,547,0): 118, 90, 69, (116,548,0): 119, 88, 67, (116,549,0): 117, 89, 67, (116,550,0): 118, 88, 64, (116,551,0): 116, 88, 64, (116,552,0): 118, 87, 66, (116,553,0): 115, 87, 65, (116,554,0): 115, 84, 66, (116,555,0): 110, 81, 63, (116,556,0): 108, 76, 63, (116,557,0): 100, 71, 57, (116,558,0): 98, 66, 55, (116,559,0): 93, 63, 53, (116,560,0): 88, 59, 51, (116,561,0): 87, 60, 53, (116,562,0): 87, 60, 53, (116,563,0): 88, 61, 54, (116,564,0): 88, 61, 54, (116,565,0): 89, 62, 55, (116,566,0): 87, 62, 55, (116,567,0): 87, 62, 55, (116,568,0): 86, 63, 55, (116,569,0): 87, 64, 56, (116,570,0): 87, 64, 56, (116,571,0): 86, 66, 57, (116,572,0): 85, 65, 56, (116,573,0): 84, 64, 55, (116,574,0): 82, 62, 53, (116,575,0): 81, 61, 52, (116,576,0): 85, 64, 59, (116,577,0): 86, 65, 60, (116,578,0): 86, 65, 60, (116,579,0): 86, 65, 60, (116,580,0): 87, 66, 61, (116,581,0): 88, 67, 62, (116,582,0): 88, 67, 62, (116,583,0): 88, 67, 62, (116,584,0): 85, 64, 59, (116,585,0): 84, 63, 58, (116,586,0): 83, 62, 57, (116,587,0): 82, 61, 56, (116,588,0): 80, 59, 54, (116,589,0): 79, 58, 53, (116,590,0): 77, 56, 51, (116,591,0): 76, 57, 51, (116,592,0): 77, 59, 55, (116,593,0): 77, 59, 55, (116,594,0): 76, 58, 54, (116,595,0): 75, 57, 53, (116,596,0): 74, 56, 52, (116,597,0): 73, 55, 51, (116,598,0): 73, 55, 51, (116,599,0): 72, 54, 50, (117,0,0): 32, 33, 51, (117,1,0): 34, 33, 49, (117,2,0): 36, 32, 49, (117,3,0): 40, 32, 47, (117,4,0): 45, 32, 49, (117,5,0): 50, 34, 47, (117,6,0): 55, 34, 49, (117,7,0): 57, 35, 48, (117,8,0): 63, 37, 50, (117,9,0): 60, 36, 49, (117,10,0): 59, 35, 49, (117,11,0): 55, 35, 47, (117,12,0): 51, 30, 45, (117,13,0): 44, 28, 41, (117,14,0): 41, 24, 40, (117,15,0): 37, 23, 38, (117,16,0): 33, 20, 38, (117,17,0): 32, 19, 37, (117,18,0): 31, 18, 35, (117,19,0): 30, 17, 34, (117,20,0): 29, 16, 33, (117,21,0): 30, 17, 34, (117,22,0): 31, 17, 32, (117,23,0): 32, 18, 33, (117,24,0): 42, 26, 39, (117,25,0): 43, 27, 40, (117,26,0): 45, 27, 41, (117,27,0): 46, 28, 42, (117,28,0): 46, 28, 40, (117,29,0): 45, 27, 39, (117,30,0): 44, 26, 38, (117,31,0): 43, 25, 37, (117,32,0): 41, 24, 40, (117,33,0): 41, 24, 40, (117,34,0): 41, 24, 40, (117,35,0): 41, 24, 40, (117,36,0): 40, 23, 39, (117,37,0): 38, 24, 39, (117,38,0): 38, 24, 41, (117,39,0): 38, 24, 41, (117,40,0): 39, 24, 43, (117,41,0): 37, 24, 42, (117,42,0): 37, 24, 44, (117,43,0): 35, 23, 43, (117,44,0): 35, 23, 43, (117,45,0): 34, 22, 42, (117,46,0): 34, 22, 42, (117,47,0): 32, 23, 42, (117,48,0): 34, 22, 44, (117,49,0): 34, 22, 44, (117,50,0): 34, 22, 44, (117,51,0): 34, 22, 44, (117,52,0): 34, 22, 44, (117,53,0): 34, 22, 44, (117,54,0): 34, 22, 44, (117,55,0): 34, 22, 44, (117,56,0): 32, 20, 42, (117,57,0): 32, 20, 42, (117,58,0): 31, 19, 41, (117,59,0): 30, 18, 40, (117,60,0): 29, 17, 39, (117,61,0): 28, 16, 38, (117,62,0): 28, 16, 38, (117,63,0): 27, 15, 37, (117,64,0): 24, 15, 34, (117,65,0): 23, 16, 34, (117,66,0): 23, 16, 34, (117,67,0): 23, 16, 34, (117,68,0): 23, 16, 34, (117,69,0): 23, 16, 34, (117,70,0): 23, 16, 34, (117,71,0): 23, 16, 34, (117,72,0): 23, 16, 34, (117,73,0): 23, 16, 34, (117,74,0): 23, 16, 34, (117,75,0): 23, 16, 34, (117,76,0): 23, 16, 34, (117,77,0): 23, 16, 34, (117,78,0): 23, 16, 34, (117,79,0): 23, 16, 34, (117,80,0): 21, 16, 36, (117,81,0): 20, 15, 35, (117,82,0): 19, 14, 34, (117,83,0): 19, 14, 34, (117,84,0): 17, 12, 32, (117,85,0): 17, 12, 32, (117,86,0): 16, 11, 31, (117,87,0): 15, 10, 30, (117,88,0): 17, 12, 32, (117,89,0): 17, 12, 32, (117,90,0): 17, 12, 32, (117,91,0): 17, 12, 32, (117,92,0): 17, 12, 32, (117,93,0): 17, 12, 32, (117,94,0): 17, 12, 32, (117,95,0): 17, 12, 32, (117,96,0): 16, 13, 30, (117,97,0): 15, 14, 30, (117,98,0): 15, 14, 30, (117,99,0): 15, 14, 30, (117,100,0): 15, 14, 30, (117,101,0): 15, 14, 30, (117,102,0): 15, 14, 30, (117,103,0): 15, 14, 30, (117,104,0): 13, 12, 28, (117,105,0): 13, 12, 28, (117,106,0): 13, 12, 28, (117,107,0): 12, 11, 27, (117,108,0): 12, 11, 27, (117,109,0): 12, 11, 27, (117,110,0): 11, 10, 26, (117,111,0): 11, 10, 26, (117,112,0): 16, 14, 28, (117,113,0): 16, 14, 28, (117,114,0): 17, 13, 28, (117,115,0): 18, 14, 29, (117,116,0): 18, 14, 29, (117,117,0): 19, 15, 30, (117,118,0): 21, 14, 30, (117,119,0): 21, 14, 30, (117,120,0): 24, 15, 32, (117,121,0): 25, 16, 33, (117,122,0): 25, 16, 33, (117,123,0): 26, 17, 34, (117,124,0): 30, 19, 36, (117,125,0): 31, 20, 37, (117,126,0): 31, 20, 37, (117,127,0): 33, 20, 37, (117,128,0): 33, 19, 32, (117,129,0): 35, 19, 30, (117,130,0): 35, 19, 30, (117,131,0): 36, 20, 31, (117,132,0): 36, 20, 31, (117,133,0): 37, 21, 32, (117,134,0): 37, 21, 32, (117,135,0): 37, 21, 32, (117,136,0): 37, 21, 32, (117,137,0): 37, 21, 32, (117,138,0): 37, 21, 32, (117,139,0): 37, 21, 32, (117,140,0): 37, 21, 32, (117,141,0): 37, 21, 32, (117,142,0): 37, 21, 32, (117,143,0): 37, 21, 32, (117,144,0): 38, 22, 33, (117,145,0): 38, 22, 33, (117,146,0): 38, 22, 33, (117,147,0): 38, 22, 33, (117,148,0): 38, 22, 33, (117,149,0): 38, 22, 33, (117,150,0): 38, 22, 33, (117,151,0): 38, 22, 33, (117,152,0): 38, 22, 33, (117,153,0): 38, 22, 33, (117,154,0): 38, 22, 33, (117,155,0): 38, 22, 33, (117,156,0): 38, 22, 33, (117,157,0): 38, 22, 33, (117,158,0): 38, 22, 33, (117,159,0): 38, 22, 33, (117,160,0): 40, 23, 33, (117,161,0): 40, 23, 33, (117,162,0): 40, 23, 33, (117,163,0): 40, 23, 33, (117,164,0): 40, 23, 33, (117,165,0): 40, 23, 33, (117,166,0): 40, 23, 33, (117,167,0): 40, 23, 33, (117,168,0): 40, 23, 33, (117,169,0): 39, 22, 32, (117,170,0): 38, 21, 31, (117,171,0): 37, 20, 30, (117,172,0): 37, 20, 30, (117,173,0): 38, 21, 31, (117,174,0): 39, 22, 32, (117,175,0): 40, 23, 33, (117,176,0): 36, 20, 31, (117,177,0): 37, 21, 32, (117,178,0): 39, 23, 34, (117,179,0): 40, 24, 35, (117,180,0): 40, 24, 35, (117,181,0): 40, 24, 35, (117,182,0): 40, 24, 35, (117,183,0): 39, 23, 34, (117,184,0): 40, 24, 35, (117,185,0): 40, 24, 35, (117,186,0): 40, 24, 35, (117,187,0): 40, 24, 35, (117,188,0): 40, 24, 35, (117,189,0): 40, 24, 35, (117,190,0): 40, 24, 35, (117,191,0): 40, 24, 34, (117,192,0): 42, 25, 33, (117,193,0): 43, 26, 34, (117,194,0): 45, 25, 34, (117,195,0): 45, 25, 34, (117,196,0): 46, 26, 35, (117,197,0): 47, 28, 34, (117,198,0): 48, 27, 34, (117,199,0): 48, 27, 32, (117,200,0): 49, 26, 32, (117,201,0): 49, 26, 32, (117,202,0): 49, 27, 30, (117,203,0): 50, 28, 31, (117,204,0): 52, 27, 31, (117,205,0): 53, 28, 32, (117,206,0): 53, 28, 32, (117,207,0): 54, 29, 33, (117,208,0): 52, 29, 35, (117,209,0): 52, 29, 37, (117,210,0): 52, 29, 35, (117,211,0): 52, 29, 35, (117,212,0): 52, 29, 35, (117,213,0): 52, 29, 35, (117,214,0): 52, 30, 33, (117,215,0): 52, 30, 33, (117,216,0): 49, 27, 29, (117,217,0): 50, 28, 30, (117,218,0): 51, 29, 31, (117,219,0): 52, 30, 32, (117,220,0): 54, 33, 32, (117,221,0): 55, 34, 33, (117,222,0): 56, 35, 34, (117,223,0): 59, 35, 33, (117,224,0): 61, 33, 32, (117,225,0): 62, 32, 32, (117,226,0): 62, 32, 32, (117,227,0): 62, 32, 32, (117,228,0): 62, 32, 32, (117,229,0): 62, 32, 32, (117,230,0): 62, 32, 32, (117,231,0): 62, 32, 32, (117,232,0): 63, 33, 33, (117,233,0): 63, 33, 33, (117,234,0): 63, 33, 33, (117,235,0): 62, 32, 32, (117,236,0): 62, 32, 32, (117,237,0): 61, 31, 31, (117,238,0): 61, 31, 31, (117,239,0): 61, 31, 31, (117,240,0): 59, 29, 29, (117,241,0): 59, 29, 29, (117,242,0): 60, 30, 30, (117,243,0): 60, 30, 30, (117,244,0): 61, 31, 31, (117,245,0): 61, 31, 31, (117,246,0): 62, 32, 32, (117,247,0): 62, 32, 32, (117,248,0): 63, 33, 33, (117,249,0): 63, 33, 33, (117,250,0): 63, 33, 33, (117,251,0): 63, 33, 33, (117,252,0): 63, 33, 33, (117,253,0): 63, 33, 33, (117,254,0): 63, 33, 33, (117,255,0): 63, 33, 31, (117,256,0): 64, 34, 26, (117,257,0): 64, 34, 24, (117,258,0): 64, 34, 24, (117,259,0): 65, 35, 25, (117,260,0): 66, 36, 26, (117,261,0): 66, 36, 26, (117,262,0): 66, 36, 26, (117,263,0): 67, 37, 27, (117,264,0): 68, 38, 28, (117,265,0): 68, 38, 28, (117,266,0): 68, 38, 28, (117,267,0): 68, 38, 28, (117,268,0): 68, 38, 28, (117,269,0): 68, 38, 28, (117,270,0): 68, 38, 28, (117,271,0): 68, 38, 28, (117,272,0): 71, 37, 28, (117,273,0): 72, 38, 29, (117,274,0): 72, 38, 29, (117,275,0): 72, 38, 29, (117,276,0): 73, 39, 30, (117,277,0): 74, 40, 31, (117,278,0): 74, 40, 31, (117,279,0): 74, 40, 31, (117,280,0): 74, 40, 31, (117,281,0): 75, 41, 32, (117,282,0): 76, 42, 33, (117,283,0): 77, 43, 34, (117,284,0): 78, 44, 35, (117,285,0): 79, 45, 36, (117,286,0): 80, 46, 37, (117,287,0): 80, 46, 37, (117,288,0): 81, 47, 38, (117,289,0): 82, 48, 38, (117,290,0): 82, 50, 37, (117,291,0): 84, 53, 35, (117,292,0): 83, 54, 36, (117,293,0): 85, 57, 36, (117,294,0): 88, 57, 36, (117,295,0): 89, 58, 37, (117,296,0): 93, 61, 40, (117,297,0): 100, 65, 43, (117,298,0): 107, 71, 47, (117,299,0): 116, 77, 48, (117,300,0): 122, 81, 49, (117,301,0): 132, 90, 52, (117,302,0): 141, 98, 55, (117,303,0): 148, 106, 48, (117,304,0): 171, 126, 45, (117,305,0): 185, 140, 47, (117,306,0): 195, 152, 60, (117,307,0): 196, 153, 61, (117,308,0): 191, 150, 60, (117,309,0): 191, 151, 63, (117,310,0): 190, 150, 63, (117,311,0): 183, 147, 61, (117,312,0): 185, 150, 66, (117,313,0): 182, 151, 68, (117,314,0): 182, 151, 69, (117,315,0): 179, 150, 70, (117,316,0): 178, 151, 72, (117,317,0): 177, 150, 71, (117,318,0): 176, 150, 73, (117,319,0): 176, 150, 73, (117,320,0): 173, 145, 72, (117,321,0): 173, 145, 72, (117,322,0): 172, 145, 74, (117,323,0): 173, 146, 75, (117,324,0): 173, 146, 77, (117,325,0): 174, 147, 78, (117,326,0): 172, 147, 80, (117,327,0): 173, 148, 82, (117,328,0): 174, 150, 86, (117,329,0): 174, 150, 86, (117,330,0): 174, 150, 88, (117,331,0): 173, 149, 87, (117,332,0): 170, 148, 88, (117,333,0): 170, 148, 88, (117,334,0): 170, 148, 90, (117,335,0): 169, 147, 90, (117,336,0): 164, 141, 91, (117,337,0): 163, 139, 91, (117,338,0): 162, 138, 90, (117,339,0): 161, 137, 89, (117,340,0): 160, 136, 88, (117,341,0): 162, 135, 88, (117,342,0): 163, 136, 89, (117,343,0): 164, 137, 90, (117,344,0): 164, 136, 89, (117,345,0): 164, 136, 89, (117,346,0): 165, 137, 90, (117,347,0): 168, 137, 91, (117,348,0): 169, 138, 92, (117,349,0): 170, 139, 93, (117,350,0): 171, 140, 94, (117,351,0): 172, 140, 93, (117,352,0): 174, 140, 94, (117,353,0): 177, 141, 93, (117,354,0): 181, 143, 96, (117,355,0): 185, 145, 96, (117,356,0): 190, 148, 98, (117,357,0): 196, 150, 100, (117,358,0): 199, 151, 102, (117,359,0): 203, 151, 101, (117,360,0): 205, 149, 98, (117,361,0): 211, 151, 97, (117,362,0): 215, 154, 100, (117,363,0): 220, 155, 99, (117,364,0): 224, 157, 102, (117,365,0): 231, 162, 105, (117,366,0): 239, 169, 110, (117,367,0): 244, 174, 114, (117,368,0): 250, 176, 113, (117,369,0): 251, 177, 112, (117,370,0): 252, 179, 111, (117,371,0): 254, 181, 112, (117,372,0): 254, 185, 110, (117,373,0): 255, 186, 109, (117,374,0): 255, 187, 109, (117,375,0): 255, 189, 108, (117,376,0): 252, 185, 104, (117,377,0): 254, 187, 106, (117,378,0): 255, 190, 108, (117,379,0): 255, 190, 108, (117,380,0): 254, 189, 107, (117,381,0): 252, 187, 105, (117,382,0): 251, 188, 108, (117,383,0): 251, 188, 108, (117,384,0): 250, 188, 111, (117,385,0): 250, 191, 113, (117,386,0): 252, 193, 117, (117,387,0): 250, 193, 116, (117,388,0): 246, 189, 112, (117,389,0): 242, 186, 109, (117,390,0): 241, 185, 110, (117,391,0): 240, 187, 111, (117,392,0): 241, 189, 114, (117,393,0): 239, 190, 114, (117,394,0): 239, 190, 114, (117,395,0): 236, 188, 114, (117,396,0): 234, 186, 112, (117,397,0): 230, 184, 109, (117,398,0): 227, 180, 108, (117,399,0): 223, 179, 106, (117,400,0): 225, 182, 113, (117,401,0): 221, 182, 113, (117,402,0): 220, 182, 111, (117,403,0): 220, 183, 112, (117,404,0): 220, 186, 114, (117,405,0): 220, 188, 115, (117,406,0): 220, 188, 113, (117,407,0): 218, 186, 111, (117,408,0): 224, 192, 117, (117,409,0): 224, 192, 115, (117,410,0): 225, 192, 115, (117,411,0): 226, 193, 116, (117,412,0): 230, 194, 116, (117,413,0): 233, 196, 118, (117,414,0): 236, 197, 120, (117,415,0): 236, 199, 121, (117,416,0): 233, 197, 119, (117,417,0): 232, 197, 116, (117,418,0): 232, 197, 115, (117,419,0): 232, 197, 113, (117,420,0): 232, 198, 111, (117,421,0): 233, 199, 110, (117,422,0): 233, 199, 109, (117,423,0): 233, 200, 107, (117,424,0): 239, 206, 113, (117,425,0): 240, 207, 114, (117,426,0): 242, 208, 118, (117,427,0): 243, 209, 119, (117,428,0): 243, 209, 120, (117,429,0): 242, 208, 119, (117,430,0): 240, 206, 119, (117,431,0): 237, 206, 116, (117,432,0): 231, 203, 106, (117,433,0): 229, 204, 104, (117,434,0): 229, 204, 104, (117,435,0): 232, 207, 107, (117,436,0): 236, 208, 111, (117,437,0): 237, 209, 112, (117,438,0): 235, 206, 112, (117,439,0): 233, 204, 110, (117,440,0): 235, 204, 111, (117,441,0): 232, 201, 108, (117,442,0): 229, 195, 105, (117,443,0): 226, 192, 102, (117,444,0): 225, 191, 102, (117,445,0): 227, 193, 104, (117,446,0): 231, 195, 107, (117,447,0): 235, 198, 109, (117,448,0): 235, 194, 106, (117,449,0): 235, 191, 104, (117,450,0): 230, 185, 100, (117,451,0): 222, 180, 98, (117,452,0): 212, 173, 94, (117,453,0): 203, 165, 90, (117,454,0): 194, 160, 88, (117,455,0): 187, 156, 89, (117,456,0): 174, 144, 80, (117,457,0): 164, 138, 79, (117,458,0): 153, 131, 74, (117,459,0): 146, 126, 73, (117,460,0): 145, 124, 77, (117,461,0): 142, 124, 78, (117,462,0): 136, 119, 75, (117,463,0): 132, 114, 74, (117,464,0): 129, 106, 72, (117,465,0): 128, 103, 73, (117,466,0): 126, 101, 71, (117,467,0): 124, 99, 69, (117,468,0): 125, 100, 70, (117,469,0): 129, 104, 74, (117,470,0): 132, 107, 77, (117,471,0): 135, 110, 80, (117,472,0): 132, 107, 77, (117,473,0): 128, 103, 73, (117,474,0): 124, 99, 69, (117,475,0): 123, 98, 68, (117,476,0): 125, 100, 70, (117,477,0): 127, 102, 72, (117,478,0): 127, 102, 72, (117,479,0): 125, 102, 71, (117,480,0): 124, 100, 74, (117,481,0): 122, 101, 74, (117,482,0): 121, 99, 75, (117,483,0): 121, 100, 73, (117,484,0): 120, 100, 75, (117,485,0): 120, 100, 73, (117,486,0): 121, 101, 76, (117,487,0): 121, 101, 74, (117,488,0): 118, 101, 75, (117,489,0): 117, 100, 72, (117,490,0): 115, 99, 73, (117,491,0): 114, 99, 70, (117,492,0): 113, 97, 71, (117,493,0): 114, 99, 70, (117,494,0): 113, 99, 72, (117,495,0): 114, 100, 71, (117,496,0): 117, 100, 70, (117,497,0): 116, 99, 69, (117,498,0): 114, 97, 67, (117,499,0): 112, 95, 65, (117,500,0): 112, 95, 65, (117,501,0): 114, 97, 67, (117,502,0): 116, 99, 69, (117,503,0): 117, 100, 70, (117,504,0): 121, 104, 74, (117,505,0): 121, 104, 74, (117,506,0): 122, 105, 75, (117,507,0): 123, 106, 76, (117,508,0): 124, 107, 77, (117,509,0): 125, 108, 78, (117,510,0): 126, 109, 79, (117,511,0): 126, 109, 79, (117,512,0): 126, 111, 80, (117,513,0): 126, 111, 80, (117,514,0): 124, 109, 78, (117,515,0): 122, 107, 76, (117,516,0): 120, 105, 74, (117,517,0): 118, 103, 72, (117,518,0): 117, 102, 71, (117,519,0): 116, 101, 70, (117,520,0): 118, 103, 72, (117,521,0): 118, 103, 72, (117,522,0): 118, 103, 72, (117,523,0): 118, 103, 72, (117,524,0): 118, 103, 72, (117,525,0): 118, 103, 72, (117,526,0): 118, 103, 72, (117,527,0): 118, 103, 72, (117,528,0): 121, 106, 75, (117,529,0): 121, 106, 75, (117,530,0): 121, 106, 75, (117,531,0): 120, 105, 74, (117,532,0): 119, 104, 75, (117,533,0): 118, 103, 74, (117,534,0): 117, 102, 73, (117,535,0): 117, 102, 73, (117,536,0): 116, 100, 74, (117,537,0): 115, 99, 73, (117,538,0): 115, 99, 74, (117,539,0): 114, 98, 73, (117,540,0): 114, 98, 73, (117,541,0): 113, 97, 72, (117,542,0): 113, 97, 74, (117,543,0): 116, 95, 74, (117,544,0): 116, 89, 70, (117,545,0): 119, 88, 70, (117,546,0): 118, 87, 69, (117,547,0): 118, 87, 67, (117,548,0): 117, 86, 66, (117,549,0): 116, 85, 64, (117,550,0): 115, 84, 63, (117,551,0): 115, 85, 61, (117,552,0): 113, 82, 61, (117,553,0): 113, 82, 62, (117,554,0): 113, 82, 64, (117,555,0): 111, 79, 64, (117,556,0): 107, 75, 62, (117,557,0): 102, 70, 59, (117,558,0): 98, 65, 56, (117,559,0): 93, 63, 55, (117,560,0): 88, 59, 53, (117,561,0): 87, 60, 53, (117,562,0): 87, 60, 53, (117,563,0): 88, 61, 54, (117,564,0): 88, 61, 54, (117,565,0): 87, 62, 55, (117,566,0): 87, 62, 55, (117,567,0): 87, 64, 56, (117,568,0): 86, 63, 55, (117,569,0): 87, 64, 56, (117,570,0): 85, 65, 56, (117,571,0): 85, 65, 56, (117,572,0): 85, 65, 56, (117,573,0): 84, 64, 55, (117,574,0): 82, 62, 53, (117,575,0): 81, 61, 54, (117,576,0): 84, 63, 58, (117,577,0): 84, 63, 58, (117,578,0): 84, 63, 58, (117,579,0): 85, 64, 59, (117,580,0): 85, 64, 59, (117,581,0): 86, 65, 60, (117,582,0): 86, 65, 60, (117,583,0): 86, 65, 60, (117,584,0): 84, 63, 58, (117,585,0): 83, 62, 57, (117,586,0): 82, 61, 56, (117,587,0): 81, 60, 55, (117,588,0): 79, 58, 53, (117,589,0): 78, 57, 52, (117,590,0): 76, 55, 50, (117,591,0): 75, 56, 50, (117,592,0): 76, 57, 53, (117,593,0): 75, 57, 53, (117,594,0): 74, 56, 52, (117,595,0): 74, 56, 52, (117,596,0): 73, 55, 51, (117,597,0): 72, 54, 50, (117,598,0): 72, 54, 50, (117,599,0): 72, 54, 50, (118,0,0): 32, 33, 51, (118,1,0): 34, 33, 49, (118,2,0): 36, 32, 49, (118,3,0): 40, 32, 47, (118,4,0): 45, 32, 49, (118,5,0): 50, 34, 47, (118,6,0): 55, 34, 49, (118,7,0): 57, 35, 48, (118,8,0): 62, 36, 49, (118,9,0): 60, 36, 49, (118,10,0): 59, 35, 49, (118,11,0): 54, 34, 46, (118,12,0): 51, 30, 45, (118,13,0): 44, 28, 41, (118,14,0): 41, 24, 40, (118,15,0): 37, 23, 38, (118,16,0): 32, 19, 37, (118,17,0): 31, 18, 36, (118,18,0): 30, 17, 34, (118,19,0): 30, 17, 34, (118,20,0): 30, 17, 34, (118,21,0): 31, 18, 35, (118,22,0): 33, 19, 34, (118,23,0): 34, 20, 35, (118,24,0): 43, 27, 40, (118,25,0): 44, 28, 41, (118,26,0): 46, 28, 42, (118,27,0): 47, 29, 43, (118,28,0): 47, 29, 41, (118,29,0): 46, 28, 40, (118,30,0): 44, 26, 38, (118,31,0): 44, 26, 38, (118,32,0): 41, 23, 39, (118,33,0): 41, 23, 39, (118,34,0): 41, 23, 39, (118,35,0): 40, 23, 39, (118,36,0): 41, 24, 40, (118,37,0): 41, 24, 40, (118,38,0): 41, 24, 42, (118,39,0): 39, 25, 42, (118,40,0): 39, 24, 43, (118,41,0): 38, 25, 43, (118,42,0): 37, 24, 44, (118,43,0): 37, 24, 44, (118,44,0): 37, 24, 44, (118,45,0): 35, 23, 43, (118,46,0): 35, 23, 43, (118,47,0): 35, 23, 43, (118,48,0): 37, 23, 46, (118,49,0): 37, 23, 46, (118,50,0): 37, 23, 46, (118,51,0): 37, 23, 46, (118,52,0): 37, 23, 46, (118,53,0): 37, 23, 46, (118,54,0): 37, 23, 46, (118,55,0): 37, 23, 46, (118,56,0): 34, 20, 43, (118,57,0): 34, 20, 43, (118,58,0): 33, 19, 42, (118,59,0): 32, 18, 41, (118,60,0): 31, 17, 40, (118,61,0): 29, 15, 38, (118,62,0): 28, 14, 37, (118,63,0): 27, 15, 37, (118,64,0): 24, 15, 34, (118,65,0): 24, 15, 34, (118,66,0): 24, 15, 34, (118,67,0): 24, 15, 34, (118,68,0): 24, 15, 34, (118,69,0): 24, 15, 34, (118,70,0): 24, 15, 34, (118,71,0): 24, 15, 34, (118,72,0): 26, 17, 36, (118,73,0): 26, 17, 36, (118,74,0): 26, 17, 36, (118,75,0): 26, 17, 36, (118,76,0): 26, 17, 36, (118,77,0): 26, 17, 36, (118,78,0): 26, 17, 36, (118,79,0): 25, 18, 36, (118,80,0): 21, 16, 36, (118,81,0): 21, 16, 36, (118,82,0): 20, 15, 35, (118,83,0): 19, 14, 34, (118,84,0): 17, 12, 32, (118,85,0): 16, 11, 31, (118,86,0): 15, 10, 30, (118,87,0): 15, 10, 30, (118,88,0): 18, 13, 33, (118,89,0): 18, 13, 33, (118,90,0): 18, 13, 33, (118,91,0): 18, 13, 33, (118,92,0): 18, 13, 33, (118,93,0): 18, 13, 33, (118,94,0): 18, 13, 33, (118,95,0): 18, 13, 33, (118,96,0): 16, 13, 30, (118,97,0): 16, 13, 30, (118,98,0): 16, 13, 30, (118,99,0): 16, 13, 30, (118,100,0): 16, 13, 30, (118,101,0): 16, 13, 30, (118,102,0): 16, 13, 30, (118,103,0): 16, 13, 30, (118,104,0): 15, 12, 29, (118,105,0): 14, 11, 28, (118,106,0): 14, 11, 28, (118,107,0): 13, 10, 27, (118,108,0): 12, 9, 26, (118,109,0): 12, 9, 26, (118,110,0): 11, 8, 25, (118,111,0): 11, 8, 25, (118,112,0): 17, 13, 28, (118,113,0): 17, 13, 28, (118,114,0): 17, 13, 28, (118,115,0): 18, 14, 29, (118,116,0): 20, 13, 29, (118,117,0): 21, 14, 30, (118,118,0): 21, 14, 30, (118,119,0): 21, 14, 30, (118,120,0): 24, 15, 32, (118,121,0): 25, 16, 33, (118,122,0): 27, 16, 33, (118,123,0): 28, 17, 34, (118,124,0): 30, 19, 36, (118,125,0): 31, 20, 37, (118,126,0): 32, 19, 37, (118,127,0): 33, 20, 37, (118,128,0): 33, 19, 32, (118,129,0): 35, 19, 30, (118,130,0): 35, 19, 30, (118,131,0): 36, 20, 31, (118,132,0): 36, 20, 31, (118,133,0): 37, 21, 32, (118,134,0): 37, 21, 32, (118,135,0): 37, 21, 32, (118,136,0): 37, 21, 32, (118,137,0): 37, 21, 32, (118,138,0): 37, 21, 32, (118,139,0): 37, 21, 32, (118,140,0): 37, 21, 32, (118,141,0): 37, 21, 32, (118,142,0): 37, 21, 32, (118,143,0): 37, 21, 32, (118,144,0): 38, 22, 33, (118,145,0): 38, 22, 33, (118,146,0): 38, 22, 33, (118,147,0): 38, 22, 33, (118,148,0): 38, 22, 33, (118,149,0): 38, 22, 33, (118,150,0): 38, 22, 33, (118,151,0): 38, 22, 33, (118,152,0): 38, 22, 33, (118,153,0): 38, 22, 33, (118,154,0): 38, 22, 33, (118,155,0): 38, 22, 33, (118,156,0): 38, 22, 33, (118,157,0): 38, 22, 33, (118,158,0): 38, 22, 33, (118,159,0): 38, 22, 33, (118,160,0): 40, 23, 33, (118,161,0): 40, 23, 33, (118,162,0): 40, 23, 33, (118,163,0): 40, 23, 33, (118,164,0): 40, 23, 33, (118,165,0): 40, 23, 33, (118,166,0): 40, 23, 33, (118,167,0): 40, 23, 33, (118,168,0): 40, 23, 33, (118,169,0): 39, 22, 32, (118,170,0): 38, 21, 31, (118,171,0): 37, 20, 30, (118,172,0): 37, 20, 30, (118,173,0): 38, 21, 31, (118,174,0): 39, 22, 32, (118,175,0): 40, 23, 33, (118,176,0): 37, 20, 30, (118,177,0): 38, 21, 31, (118,178,0): 40, 23, 33, (118,179,0): 41, 24, 34, (118,180,0): 42, 25, 35, (118,181,0): 41, 24, 34, (118,182,0): 40, 23, 33, (118,183,0): 40, 23, 33, (118,184,0): 40, 23, 33, (118,185,0): 40, 23, 33, (118,186,0): 40, 23, 33, (118,187,0): 40, 23, 33, (118,188,0): 40, 23, 33, (118,189,0): 40, 23, 33, (118,190,0): 40, 23, 33, (118,191,0): 40, 23, 33, (118,192,0): 44, 24, 33, (118,193,0): 44, 24, 33, (118,194,0): 45, 26, 32, (118,195,0): 45, 26, 32, (118,196,0): 47, 26, 33, (118,197,0): 47, 26, 33, (118,198,0): 48, 25, 33, (118,199,0): 49, 26, 32, (118,200,0): 49, 26, 32, (118,201,0): 50, 28, 31, (118,202,0): 52, 27, 31, (118,203,0): 53, 28, 32, (118,204,0): 54, 28, 31, (118,205,0): 55, 29, 32, (118,206,0): 55, 29, 32, (118,207,0): 54, 29, 33, (118,208,0): 52, 29, 35, (118,209,0): 52, 29, 35, (118,210,0): 52, 29, 35, (118,211,0): 52, 29, 35, (118,212,0): 52, 30, 33, (118,213,0): 52, 30, 33, (118,214,0): 52, 30, 33, (118,215,0): 52, 30, 33, (118,216,0): 51, 29, 31, (118,217,0): 51, 29, 31, (118,218,0): 52, 31, 30, (118,219,0): 53, 32, 31, (118,220,0): 53, 32, 31, (118,221,0): 54, 33, 32, (118,222,0): 55, 34, 31, (118,223,0): 57, 33, 31, (118,224,0): 61, 33, 32, (118,225,0): 62, 32, 30, (118,226,0): 62, 32, 30, (118,227,0): 62, 32, 30, (118,228,0): 62, 32, 30, (118,229,0): 62, 32, 30, (118,230,0): 62, 32, 30, (118,231,0): 62, 32, 30, (118,232,0): 63, 33, 31, (118,233,0): 63, 33, 31, (118,234,0): 63, 33, 31, (118,235,0): 62, 32, 30, (118,236,0): 62, 32, 30, (118,237,0): 61, 31, 29, (118,238,0): 61, 31, 29, (118,239,0): 61, 31, 29, (118,240,0): 59, 29, 27, (118,241,0): 59, 29, 27, (118,242,0): 59, 29, 27, (118,243,0): 60, 30, 28, (118,244,0): 61, 31, 29, (118,245,0): 62, 32, 30, (118,246,0): 62, 32, 30, (118,247,0): 62, 32, 30, (118,248,0): 63, 33, 31, (118,249,0): 63, 33, 31, (118,250,0): 63, 33, 31, (118,251,0): 63, 33, 31, (118,252,0): 63, 33, 31, (118,253,0): 63, 33, 31, (118,254,0): 63, 33, 31, (118,255,0): 63, 34, 30, (118,256,0): 64, 34, 26, (118,257,0): 65, 35, 25, (118,258,0): 65, 35, 25, (118,259,0): 65, 35, 25, (118,260,0): 66, 36, 26, (118,261,0): 66, 36, 26, (118,262,0): 67, 37, 27, (118,263,0): 67, 37, 27, (118,264,0): 68, 38, 28, (118,265,0): 68, 38, 28, (118,266,0): 68, 38, 28, (118,267,0): 68, 38, 28, (118,268,0): 68, 38, 28, (118,269,0): 68, 38, 28, (118,270,0): 68, 38, 28, (118,271,0): 68, 38, 28, (118,272,0): 71, 37, 28, (118,273,0): 71, 37, 28, (118,274,0): 72, 38, 29, (118,275,0): 72, 38, 29, (118,276,0): 73, 39, 30, (118,277,0): 73, 39, 30, (118,278,0): 73, 39, 30, (118,279,0): 74, 40, 31, (118,280,0): 74, 40, 31, (118,281,0): 74, 40, 31, (118,282,0): 75, 41, 32, (118,283,0): 76, 42, 33, (118,284,0): 77, 43, 34, (118,285,0): 78, 44, 35, (118,286,0): 79, 45, 36, (118,287,0): 80, 46, 37, (118,288,0): 81, 47, 38, (118,289,0): 82, 48, 38, (118,290,0): 82, 50, 37, (118,291,0): 84, 53, 35, (118,292,0): 83, 54, 36, (118,293,0): 85, 57, 36, (118,294,0): 88, 57, 36, (118,295,0): 89, 58, 37, (118,296,0): 95, 63, 42, (118,297,0): 101, 66, 44, (118,298,0): 108, 72, 48, (118,299,0): 117, 78, 49, (118,300,0): 123, 82, 50, (118,301,0): 131, 89, 51, (118,302,0): 140, 97, 54, (118,303,0): 146, 104, 46, (118,304,0): 169, 123, 45, (118,305,0): 183, 138, 47, (118,306,0): 192, 148, 59, (118,307,0): 192, 148, 59, (118,308,0): 187, 146, 58, (118,309,0): 187, 147, 59, (118,310,0): 187, 147, 60, (118,311,0): 182, 146, 60, (118,312,0): 187, 152, 68, (118,313,0): 184, 153, 70, (118,314,0): 183, 152, 70, (118,315,0): 180, 152, 69, (118,316,0): 179, 152, 71, (118,317,0): 178, 151, 70, (118,318,0): 176, 151, 71, (118,319,0): 176, 150, 73, (118,320,0): 173, 145, 72, (118,321,0): 174, 145, 75, (118,322,0): 173, 146, 77, (118,323,0): 174, 147, 78, (118,324,0): 174, 147, 80, (118,325,0): 175, 148, 81, (118,326,0): 173, 148, 82, (118,327,0): 173, 148, 82, (118,328,0): 173, 149, 85, (118,329,0): 172, 148, 86, (118,330,0): 172, 148, 88, (118,331,0): 172, 148, 88, (118,332,0): 169, 147, 89, (118,333,0): 168, 146, 88, (118,334,0): 168, 146, 89, (118,335,0): 168, 145, 91, (118,336,0): 162, 139, 87, (118,337,0): 163, 137, 88, (118,338,0): 162, 136, 87, (118,339,0): 160, 134, 85, (118,340,0): 160, 134, 85, (118,341,0): 161, 133, 85, (118,342,0): 162, 134, 86, (118,343,0): 162, 134, 86, (118,344,0): 165, 134, 87, (118,345,0): 166, 135, 88, (118,346,0): 167, 136, 89, (118,347,0): 169, 137, 90, (118,348,0): 170, 138, 91, (118,349,0): 171, 139, 92, (118,350,0): 172, 140, 93, (118,351,0): 174, 140, 94, (118,352,0): 179, 141, 96, (118,353,0): 182, 141, 95, (118,354,0): 185, 144, 98, (118,355,0): 189, 147, 99, (118,356,0): 196, 150, 101, (118,357,0): 200, 152, 103, (118,358,0): 206, 155, 102, (118,359,0): 210, 155, 101, (118,360,0): 208, 151, 96, (118,361,0): 213, 152, 95, (118,362,0): 219, 154, 98, (118,363,0): 225, 156, 97, (118,364,0): 229, 159, 100, (118,365,0): 235, 163, 104, (118,366,0): 245, 171, 110, (118,367,0): 251, 177, 114, (118,368,0): 253, 179, 114, (118,369,0): 253, 180, 111, (118,370,0): 253, 180, 111, (118,371,0): 254, 182, 110, (118,372,0): 254, 185, 108, (118,373,0): 255, 186, 108, (118,374,0): 255, 188, 107, (118,375,0): 255, 189, 106, (118,376,0): 251, 185, 101, (118,377,0): 254, 188, 104, (118,378,0): 255, 191, 107, (118,379,0): 255, 191, 107, (118,380,0): 254, 189, 107, (118,381,0): 252, 187, 105, (118,382,0): 250, 187, 107, (118,383,0): 251, 190, 109, (118,384,0): 253, 194, 116, (118,385,0): 253, 196, 117, (118,386,0): 254, 197, 118, (118,387,0): 252, 195, 116, (118,388,0): 248, 191, 114, (118,389,0): 244, 188, 111, (118,390,0): 241, 188, 112, (118,391,0): 241, 189, 113, (118,392,0): 239, 187, 112, (118,393,0): 237, 187, 114, (118,394,0): 236, 188, 114, (118,395,0): 233, 186, 114, (118,396,0): 231, 184, 112, (118,397,0): 227, 183, 110, (118,398,0): 225, 181, 110, (118,399,0): 223, 181, 109, (118,400,0): 222, 182, 112, (118,401,0): 219, 180, 111, (118,402,0): 218, 179, 110, (118,403,0): 219, 182, 112, (118,404,0): 220, 186, 114, (118,405,0): 220, 188, 115, (118,406,0): 219, 187, 114, (118,407,0): 214, 185, 109, (118,408,0): 221, 192, 116, (118,409,0): 221, 192, 116, (118,410,0): 222, 190, 113, (118,411,0): 224, 191, 114, (118,412,0): 227, 191, 115, (118,413,0): 229, 193, 117, (118,414,0): 233, 196, 118, (118,415,0): 235, 198, 120, (118,416,0): 230, 195, 114, (118,417,0): 231, 196, 115, (118,418,0): 232, 197, 115, (118,419,0): 233, 198, 114, (118,420,0): 234, 200, 113, (118,421,0): 235, 201, 112, (118,422,0): 236, 202, 112, (118,423,0): 236, 203, 110, (118,424,0): 240, 207, 114, (118,425,0): 242, 209, 114, (118,426,0): 245, 212, 119, (118,427,0): 247, 214, 121, (118,428,0): 247, 213, 123, (118,429,0): 245, 211, 121, (118,430,0): 242, 208, 119, (118,431,0): 238, 207, 116, (118,432,0): 229, 200, 106, (118,433,0): 226, 200, 103, (118,434,0): 226, 200, 103, (118,435,0): 229, 203, 106, (118,436,0): 236, 207, 113, (118,437,0): 237, 208, 114, (118,438,0): 236, 207, 113, (118,439,0): 233, 204, 110, (118,440,0): 234, 203, 110, (118,441,0): 231, 200, 107, (118,442,0): 229, 196, 103, (118,443,0): 226, 193, 100, (118,444,0): 225, 191, 101, (118,445,0): 226, 192, 102, (118,446,0): 229, 194, 104, (118,447,0): 231, 194, 105, (118,448,0): 232, 191, 103, (118,449,0): 230, 189, 101, (118,450,0): 227, 185, 99, (118,451,0): 222, 182, 97, (118,452,0): 214, 176, 95, (118,453,0): 206, 170, 92, (118,454,0): 199, 165, 91, (118,455,0): 193, 163, 93, (118,456,0): 180, 152, 87, (118,457,0): 168, 144, 82, (118,458,0): 156, 134, 76, (118,459,0): 149, 130, 74, (118,460,0): 148, 128, 78, (118,461,0): 144, 126, 78, (118,462,0): 138, 121, 75, (118,463,0): 134, 115, 73, (118,464,0): 129, 106, 72, (118,465,0): 128, 103, 72, (118,466,0): 126, 101, 70, (118,467,0): 125, 100, 69, (118,468,0): 127, 102, 71, (118,469,0): 130, 105, 74, (118,470,0): 135, 110, 79, (118,471,0): 138, 113, 82, (118,472,0): 133, 108, 77, (118,473,0): 129, 104, 73, (118,474,0): 124, 99, 68, (118,475,0): 123, 98, 67, (118,476,0): 124, 99, 68, (118,477,0): 126, 101, 70, (118,478,0): 127, 102, 71, (118,479,0): 125, 102, 71, (118,480,0): 126, 102, 74, (118,481,0): 124, 103, 74, (118,482,0): 124, 103, 76, (118,483,0): 125, 104, 75, (118,484,0): 124, 104, 77, (118,485,0): 123, 104, 74, (118,486,0): 123, 103, 76, (118,487,0): 123, 104, 74, (118,488,0): 124, 107, 79, (118,489,0): 122, 105, 75, (118,490,0): 120, 105, 76, (118,491,0): 118, 103, 72, (118,492,0): 117, 102, 73, (118,493,0): 117, 102, 71, (118,494,0): 117, 103, 74, (118,495,0): 117, 104, 72, (118,496,0): 119, 102, 72, (118,497,0): 117, 101, 68, (118,498,0): 114, 98, 65, (118,499,0): 112, 96, 63, (118,500,0): 112, 96, 63, (118,501,0): 114, 98, 65, (118,502,0): 116, 100, 67, (118,503,0): 118, 102, 69, (118,504,0): 121, 105, 72, (118,505,0): 122, 106, 73, (118,506,0): 123, 107, 74, (118,507,0): 124, 108, 75, (118,508,0): 125, 109, 76, (118,509,0): 126, 110, 77, (118,510,0): 127, 111, 78, (118,511,0): 128, 112, 79, (118,512,0): 128, 111, 81, (118,513,0): 127, 110, 80, (118,514,0): 126, 109, 79, (118,515,0): 125, 108, 78, (118,516,0): 124, 107, 77, (118,517,0): 123, 106, 76, (118,518,0): 122, 105, 75, (118,519,0): 121, 104, 74, (118,520,0): 122, 105, 75, (118,521,0): 122, 105, 75, (118,522,0): 122, 105, 75, (118,523,0): 122, 105, 75, (118,524,0): 122, 105, 75, (118,525,0): 122, 105, 75, (118,526,0): 122, 105, 75, (118,527,0): 122, 105, 75, (118,528,0): 121, 104, 74, (118,529,0): 121, 104, 74, (118,530,0): 120, 103, 73, (118,531,0): 119, 102, 72, (118,532,0): 119, 102, 74, (118,533,0): 119, 102, 74, (118,534,0): 119, 102, 74, (118,535,0): 119, 102, 74, (118,536,0): 116, 99, 73, (118,537,0): 116, 99, 73, (118,538,0): 116, 98, 74, (118,539,0): 115, 97, 73, (118,540,0): 115, 97, 73, (118,541,0): 114, 96, 72, (118,542,0): 114, 96, 74, (118,543,0): 115, 94, 73, (118,544,0): 115, 88, 71, (118,545,0): 118, 87, 69, (118,546,0): 117, 86, 68, (118,547,0): 116, 85, 65, (118,548,0): 114, 83, 63, (118,549,0): 113, 82, 61, (118,550,0): 112, 81, 60, (118,551,0): 112, 81, 60, (118,552,0): 108, 77, 57, (118,553,0): 109, 78, 58, (118,554,0): 110, 79, 61, (118,555,0): 109, 77, 62, (118,556,0): 106, 74, 61, (118,557,0): 102, 70, 59, (118,558,0): 97, 64, 55, (118,559,0): 92, 62, 54, (118,560,0): 88, 59, 53, (118,561,0): 88, 60, 56, (118,562,0): 86, 61, 56, (118,563,0): 87, 62, 57, (118,564,0): 87, 62, 57, (118,565,0): 88, 63, 58, (118,566,0): 88, 63, 58, (118,567,0): 87, 64, 58, (118,568,0): 86, 63, 57, (118,569,0): 85, 65, 58, (118,570,0): 86, 66, 59, (118,571,0): 86, 66, 59, (118,572,0): 84, 65, 58, (118,573,0): 83, 64, 57, (118,574,0): 81, 62, 55, (118,575,0): 80, 61, 54, (118,576,0): 82, 61, 56, (118,577,0): 82, 61, 56, (118,578,0): 82, 61, 56, (118,579,0): 83, 62, 57, (118,580,0): 83, 62, 57, (118,581,0): 84, 63, 58, (118,582,0): 84, 63, 58, (118,583,0): 84, 63, 58, (118,584,0): 83, 62, 57, (118,585,0): 83, 62, 57, (118,586,0): 82, 61, 56, (118,587,0): 80, 59, 54, (118,588,0): 78, 57, 52, (118,589,0): 77, 56, 51, (118,590,0): 76, 55, 50, (118,591,0): 74, 55, 49, (118,592,0): 74, 55, 51, (118,593,0): 73, 55, 51, (118,594,0): 72, 54, 50, (118,595,0): 72, 54, 50, (118,596,0): 72, 54, 50, (118,597,0): 71, 53, 49, (118,598,0): 71, 53, 49, (118,599,0): 71, 53, 49, (119,0,0): 32, 33, 51, (119,1,0): 34, 33, 49, (119,2,0): 36, 32, 49, (119,3,0): 40, 32, 47, (119,4,0): 45, 32, 49, (119,5,0): 50, 34, 47, (119,6,0): 55, 34, 49, (119,7,0): 57, 35, 48, (119,8,0): 62, 36, 49, (119,9,0): 59, 35, 48, (119,10,0): 58, 34, 48, (119,11,0): 54, 34, 46, (119,12,0): 51, 30, 45, (119,13,0): 44, 28, 41, (119,14,0): 40, 23, 39, (119,15,0): 36, 22, 37, (119,16,0): 29, 16, 34, (119,17,0): 29, 16, 34, (119,18,0): 29, 16, 33, (119,19,0): 29, 16, 33, (119,20,0): 31, 18, 35, (119,21,0): 33, 20, 37, (119,22,0): 36, 22, 37, (119,23,0): 37, 23, 38, (119,24,0): 44, 28, 41, (119,25,0): 45, 29, 42, (119,26,0): 47, 29, 43, (119,27,0): 47, 29, 43, (119,28,0): 47, 29, 41, (119,29,0): 46, 28, 40, (119,30,0): 45, 27, 39, (119,31,0): 44, 26, 38, (119,32,0): 41, 23, 39, (119,33,0): 41, 23, 39, (119,34,0): 41, 23, 39, (119,35,0): 41, 23, 39, (119,36,0): 41, 24, 40, (119,37,0): 41, 24, 40, (119,38,0): 41, 24, 42, (119,39,0): 41, 24, 42, (119,40,0): 39, 24, 43, (119,41,0): 39, 24, 43, (119,42,0): 38, 25, 45, (119,43,0): 37, 24, 44, (119,44,0): 37, 24, 44, (119,45,0): 37, 24, 44, (119,46,0): 36, 24, 44, (119,47,0): 36, 24, 44, (119,48,0): 37, 23, 46, (119,49,0): 37, 23, 46, (119,50,0): 37, 23, 46, (119,51,0): 37, 23, 46, (119,52,0): 37, 23, 46, (119,53,0): 37, 23, 46, (119,54,0): 37, 23, 46, (119,55,0): 37, 23, 46, (119,56,0): 35, 21, 44, (119,57,0): 34, 20, 43, (119,58,0): 33, 19, 42, (119,59,0): 32, 18, 41, (119,60,0): 31, 17, 40, (119,61,0): 29, 15, 38, (119,62,0): 28, 14, 37, (119,63,0): 28, 14, 37, (119,64,0): 26, 14, 34, (119,65,0): 24, 15, 34, (119,66,0): 24, 15, 34, (119,67,0): 24, 15, 34, (119,68,0): 24, 15, 34, (119,69,0): 24, 15, 34, (119,70,0): 24, 15, 34, (119,71,0): 24, 15, 34, (119,72,0): 27, 18, 37, (119,73,0): 27, 18, 37, (119,74,0): 27, 18, 37, (119,75,0): 27, 18, 37, (119,76,0): 27, 18, 37, (119,77,0): 27, 18, 37, (119,78,0): 27, 18, 37, (119,79,0): 27, 18, 37, (119,80,0): 24, 16, 37, (119,81,0): 21, 16, 36, (119,82,0): 20, 15, 35, (119,83,0): 19, 14, 34, (119,84,0): 17, 12, 32, (119,85,0): 16, 11, 31, (119,86,0): 15, 10, 30, (119,87,0): 14, 9, 29, (119,88,0): 18, 13, 33, (119,89,0): 18, 13, 33, (119,90,0): 18, 13, 33, (119,91,0): 18, 13, 33, (119,92,0): 18, 13, 33, (119,93,0): 18, 13, 33, (119,94,0): 18, 13, 33, (119,95,0): 18, 13, 33, (119,96,0): 16, 13, 30, (119,97,0): 16, 13, 30, (119,98,0): 16, 13, 30, (119,99,0): 16, 13, 30, (119,100,0): 16, 13, 30, (119,101,0): 16, 13, 30, (119,102,0): 16, 13, 30, (119,103,0): 16, 13, 30, (119,104,0): 15, 12, 29, (119,105,0): 14, 11, 28, (119,106,0): 14, 11, 28, (119,107,0): 13, 10, 27, (119,108,0): 12, 9, 26, (119,109,0): 11, 8, 25, (119,110,0): 11, 8, 25, (119,111,0): 10, 7, 24, (119,112,0): 17, 13, 28, (119,113,0): 17, 13, 28, (119,114,0): 17, 13, 28, (119,115,0): 18, 14, 29, (119,116,0): 20, 13, 29, (119,117,0): 21, 14, 30, (119,118,0): 21, 14, 30, (119,119,0): 21, 14, 30, (119,120,0): 24, 15, 32, (119,121,0): 25, 16, 33, (119,122,0): 27, 16, 33, (119,123,0): 28, 17, 34, (119,124,0): 30, 19, 36, (119,125,0): 31, 20, 37, (119,126,0): 32, 19, 37, (119,127,0): 34, 20, 37, (119,128,0): 35, 19, 32, (119,129,0): 35, 19, 30, (119,130,0): 35, 19, 30, (119,131,0): 36, 20, 31, (119,132,0): 36, 20, 31, (119,133,0): 37, 21, 32, (119,134,0): 37, 21, 32, (119,135,0): 37, 21, 32, (119,136,0): 37, 21, 32, (119,137,0): 37, 21, 32, (119,138,0): 37, 21, 32, (119,139,0): 37, 21, 32, (119,140,0): 37, 21, 32, (119,141,0): 37, 21, 32, (119,142,0): 37, 21, 32, (119,143,0): 37, 21, 32, (119,144,0): 38, 22, 33, (119,145,0): 38, 22, 33, (119,146,0): 38, 22, 33, (119,147,0): 38, 22, 33, (119,148,0): 38, 22, 33, (119,149,0): 38, 22, 33, (119,150,0): 38, 22, 33, (119,151,0): 38, 22, 33, (119,152,0): 38, 22, 33, (119,153,0): 38, 22, 33, (119,154,0): 38, 22, 33, (119,155,0): 38, 22, 33, (119,156,0): 38, 22, 33, (119,157,0): 38, 22, 33, (119,158,0): 38, 22, 33, (119,159,0): 38, 22, 33, (119,160,0): 40, 23, 33, (119,161,0): 40, 23, 33, (119,162,0): 40, 23, 33, (119,163,0): 40, 23, 33, (119,164,0): 40, 23, 33, (119,165,0): 40, 23, 33, (119,166,0): 40, 23, 33, (119,167,0): 40, 23, 33, (119,168,0): 40, 23, 33, (119,169,0): 39, 22, 32, (119,170,0): 38, 21, 31, (119,171,0): 37, 20, 30, (119,172,0): 37, 20, 30, (119,173,0): 38, 21, 31, (119,174,0): 39, 22, 32, (119,175,0): 40, 23, 33, (119,176,0): 37, 20, 30, (119,177,0): 38, 21, 31, (119,178,0): 40, 23, 33, (119,179,0): 42, 25, 35, (119,180,0): 42, 25, 35, (119,181,0): 42, 25, 35, (119,182,0): 40, 23, 33, (119,183,0): 39, 22, 32, (119,184,0): 40, 23, 33, (119,185,0): 40, 23, 33, (119,186,0): 40, 23, 33, (119,187,0): 40, 23, 33, (119,188,0): 40, 23, 33, (119,189,0): 40, 23, 33, (119,190,0): 40, 23, 33, (119,191,0): 40, 23, 31, (119,192,0): 44, 24, 33, (119,193,0): 44, 24, 33, (119,194,0): 44, 25, 31, (119,195,0): 45, 26, 32, (119,196,0): 46, 25, 32, (119,197,0): 47, 26, 31, (119,198,0): 48, 25, 31, (119,199,0): 49, 26, 32, (119,200,0): 50, 28, 31, (119,201,0): 50, 28, 31, (119,202,0): 53, 28, 32, (119,203,0): 53, 28, 31, (119,204,0): 55, 29, 32, (119,205,0): 55, 29, 32, (119,206,0): 56, 30, 33, (119,207,0): 56, 30, 33, (119,208,0): 54, 29, 33, (119,209,0): 52, 29, 35, (119,210,0): 52, 29, 35, (119,211,0): 52, 30, 33, (119,212,0): 52, 30, 33, (119,213,0): 52, 30, 33, (119,214,0): 52, 30, 33, (119,215,0): 52, 30, 32, (119,216,0): 54, 32, 34, (119,217,0): 54, 33, 32, (119,218,0): 53, 32, 31, (119,219,0): 53, 32, 31, (119,220,0): 53, 32, 31, (119,221,0): 53, 32, 29, (119,222,0): 52, 31, 28, (119,223,0): 54, 30, 26, (119,224,0): 61, 33, 30, (119,225,0): 62, 32, 30, (119,226,0): 62, 32, 30, (119,227,0): 62, 32, 30, (119,228,0): 62, 32, 30, (119,229,0): 62, 32, 30, (119,230,0): 62, 32, 30, (119,231,0): 62, 32, 30, (119,232,0): 63, 33, 31, (119,233,0): 63, 33, 31, (119,234,0): 63, 33, 31, (119,235,0): 62, 32, 30, (119,236,0): 62, 32, 30, (119,237,0): 61, 31, 29, (119,238,0): 61, 31, 29, (119,239,0): 61, 31, 29, (119,240,0): 58, 28, 26, (119,241,0): 59, 29, 27, (119,242,0): 59, 29, 27, (119,243,0): 60, 30, 28, (119,244,0): 61, 31, 29, (119,245,0): 62, 32, 30, (119,246,0): 62, 32, 30, (119,247,0): 63, 33, 31, (119,248,0): 63, 33, 31, (119,249,0): 63, 33, 31, (119,250,0): 63, 33, 31, (119,251,0): 63, 33, 31, (119,252,0): 63, 33, 31, (119,253,0): 63, 33, 31, (119,254,0): 63, 33, 31, (119,255,0): 63, 34, 30, (119,256,0): 64, 34, 26, (119,257,0): 65, 35, 25, (119,258,0): 65, 35, 25, (119,259,0): 66, 36, 26, (119,260,0): 66, 36, 26, (119,261,0): 67, 37, 27, (119,262,0): 67, 37, 27, (119,263,0): 67, 37, 27, (119,264,0): 68, 38, 28, (119,265,0): 68, 38, 28, (119,266,0): 68, 38, 28, (119,267,0): 68, 38, 28, (119,268,0): 68, 38, 28, (119,269,0): 68, 38, 28, (119,270,0): 68, 38, 28, (119,271,0): 68, 38, 28, (119,272,0): 71, 37, 28, (119,273,0): 71, 37, 28, (119,274,0): 71, 37, 28, (119,275,0): 72, 38, 29, (119,276,0): 72, 38, 29, (119,277,0): 73, 39, 30, (119,278,0): 73, 39, 30, (119,279,0): 74, 40, 31, (119,280,0): 74, 40, 31, (119,281,0): 74, 40, 31, (119,282,0): 75, 41, 32, (119,283,0): 76, 42, 33, (119,284,0): 77, 43, 34, (119,285,0): 78, 44, 35, (119,286,0): 79, 45, 36, (119,287,0): 79, 45, 36, (119,288,0): 81, 47, 38, (119,289,0): 82, 48, 38, (119,290,0): 82, 50, 37, (119,291,0): 84, 53, 35, (119,292,0): 83, 54, 36, (119,293,0): 85, 57, 36, (119,294,0): 88, 57, 36, (119,295,0): 89, 58, 37, (119,296,0): 95, 63, 42, (119,297,0): 102, 67, 45, (119,298,0): 109, 73, 49, (119,299,0): 117, 78, 49, (119,300,0): 123, 82, 50, (119,301,0): 131, 89, 51, (119,302,0): 139, 96, 53, (119,303,0): 145, 103, 45, (119,304,0): 169, 123, 45, (119,305,0): 182, 136, 48, (119,306,0): 190, 146, 57, (119,307,0): 189, 145, 58, (119,308,0): 184, 143, 55, (119,309,0): 184, 144, 57, (119,310,0): 185, 145, 60, (119,311,0): 179, 143, 59, (119,312,0): 188, 153, 71, (119,313,0): 184, 153, 70, (119,314,0): 184, 153, 71, (119,315,0): 181, 153, 70, (119,316,0): 179, 152, 71, (119,317,0): 178, 151, 70, (119,318,0): 177, 152, 72, (119,319,0): 176, 150, 73, (119,320,0): 174, 146, 73, (119,321,0): 174, 145, 75, (119,322,0): 174, 147, 78, (119,323,0): 174, 147, 78, (119,324,0): 175, 148, 81, (119,325,0): 175, 148, 81, (119,326,0): 174, 149, 83, (119,327,0): 174, 149, 85, (119,328,0): 172, 148, 86, (119,329,0): 171, 147, 85, (119,330,0): 171, 147, 87, (119,331,0): 171, 147, 87, (119,332,0): 168, 146, 88, (119,333,0): 168, 146, 88, (119,334,0): 167, 145, 88, (119,335,0): 167, 144, 90, (119,336,0): 163, 137, 86, (119,337,0): 162, 136, 87, (119,338,0): 160, 134, 85, (119,339,0): 160, 132, 84, (119,340,0): 159, 131, 83, (119,341,0): 160, 132, 84, (119,342,0): 160, 132, 84, (119,343,0): 163, 132, 85, (119,344,0): 165, 134, 87, (119,345,0): 166, 134, 87, (119,346,0): 167, 135, 88, (119,347,0): 169, 137, 90, (119,348,0): 170, 138, 91, (119,349,0): 173, 139, 93, (119,350,0): 174, 140, 94, (119,351,0): 176, 140, 92, (119,352,0): 181, 140, 94, (119,353,0): 184, 142, 94, (119,354,0): 188, 144, 97, (119,355,0): 193, 147, 98, (119,356,0): 198, 150, 101, (119,357,0): 205, 153, 103, (119,358,0): 211, 156, 102, (119,359,0): 213, 156, 101, (119,360,0): 212, 151, 96, (119,361,0): 215, 153, 94, (119,362,0): 221, 155, 95, (119,363,0): 226, 156, 96, (119,364,0): 233, 159, 98, (119,365,0): 239, 165, 102, (119,366,0): 248, 172, 110, (119,367,0): 254, 179, 114, (119,368,0): 254, 181, 112, (119,369,0): 254, 182, 110, (119,370,0): 254, 182, 108, (119,371,0): 252, 183, 106, (119,372,0): 253, 184, 106, (119,373,0): 255, 187, 106, (119,374,0): 255, 188, 105, (119,375,0): 255, 190, 106, (119,376,0): 250, 184, 100, (119,377,0): 253, 188, 104, (119,378,0): 255, 192, 108, (119,379,0): 255, 192, 110, (119,380,0): 254, 189, 109, (119,381,0): 249, 186, 106, (119,382,0): 250, 187, 108, (119,383,0): 250, 189, 109, (119,384,0): 255, 197, 119, (119,385,0): 255, 200, 121, (119,386,0): 255, 200, 121, (119,387,0): 254, 199, 119, (119,388,0): 249, 193, 116, (119,389,0): 244, 191, 113, (119,390,0): 242, 190, 114, (119,391,0): 241, 192, 116, (119,392,0): 236, 186, 113, (119,393,0): 234, 186, 112, (119,394,0): 233, 186, 114, (119,395,0): 230, 186, 115, (119,396,0): 229, 185, 114, (119,397,0): 227, 183, 112, (119,398,0): 225, 180, 112, (119,399,0): 224, 181, 112, (119,400,0): 220, 181, 112, (119,401,0): 216, 179, 109, (119,402,0): 215, 178, 108, (119,403,0): 215, 181, 110, (119,404,0): 218, 185, 114, (119,405,0): 217, 187, 114, (119,406,0): 215, 185, 112, (119,407,0): 212, 182, 109, (119,408,0): 221, 191, 118, (119,409,0): 220, 191, 115, (119,410,0): 221, 189, 114, (119,411,0): 221, 189, 112, (119,412,0): 224, 191, 114, (119,413,0): 228, 192, 116, (119,414,0): 232, 194, 119, (119,415,0): 233, 196, 118, (119,416,0): 228, 193, 112, (119,417,0): 229, 194, 112, (119,418,0): 231, 196, 112, (119,419,0): 234, 200, 113, (119,420,0): 236, 202, 113, (119,421,0): 237, 203, 113, (119,422,0): 238, 205, 112, (119,423,0): 238, 205, 112, (119,424,0): 241, 208, 113, (119,425,0): 244, 211, 116, (119,426,0): 247, 214, 121, (119,427,0): 249, 216, 123, (119,428,0): 249, 215, 125, (119,429,0): 247, 213, 123, (119,430,0): 244, 210, 121, (119,431,0): 239, 208, 117, (119,432,0): 227, 198, 104, (119,433,0): 224, 198, 101, (119,434,0): 224, 198, 103, (119,435,0): 228, 202, 107, (119,436,0): 235, 206, 112, (119,437,0): 237, 208, 114, (119,438,0): 236, 207, 113, (119,439,0): 233, 204, 110, (119,440,0): 233, 202, 109, (119,441,0): 231, 200, 107, (119,442,0): 229, 196, 103, (119,443,0): 226, 193, 100, (119,444,0): 225, 192, 99, (119,445,0): 225, 192, 99, (119,446,0): 227, 192, 102, (119,447,0): 229, 192, 101, (119,448,0): 227, 188, 97, (119,449,0): 226, 187, 96, (119,450,0): 224, 184, 96, (119,451,0): 219, 181, 96, (119,452,0): 214, 178, 94, (119,453,0): 209, 174, 93, (119,454,0): 202, 170, 95, (119,455,0): 198, 168, 96, (119,456,0): 186, 159, 92, (119,457,0): 173, 149, 87, (119,458,0): 160, 138, 80, (119,459,0): 151, 132, 76, (119,460,0): 150, 130, 79, (119,461,0): 145, 127, 77, (119,462,0): 138, 122, 73, (119,463,0): 134, 115, 72, (119,464,0): 129, 107, 70, (119,465,0): 128, 104, 70, (119,466,0): 126, 101, 70, (119,467,0): 126, 102, 68, (119,468,0): 127, 102, 71, (119,469,0): 131, 107, 73, (119,470,0): 136, 111, 80, (119,471,0): 139, 115, 81, (119,472,0): 134, 109, 78, (119,473,0): 129, 105, 71, (119,474,0): 124, 99, 68, (119,475,0): 122, 98, 64, (119,476,0): 124, 99, 68, (119,477,0): 126, 102, 68, (119,478,0): 126, 101, 70, (119,479,0): 125, 102, 70, (119,480,0): 127, 104, 73, (119,481,0): 125, 104, 73, (119,482,0): 126, 105, 74, (119,483,0): 126, 105, 74, (119,484,0): 125, 106, 74, (119,485,0): 125, 106, 74, (119,486,0): 124, 105, 73, (119,487,0): 124, 105, 73, (119,488,0): 127, 111, 78, (119,489,0): 126, 110, 77, (119,490,0): 123, 108, 75, (119,491,0): 121, 106, 73, (119,492,0): 120, 105, 72, (119,493,0): 119, 104, 71, (119,494,0): 119, 106, 72, (119,495,0): 119, 106, 72, (119,496,0): 120, 104, 71, (119,497,0): 118, 102, 69, (119,498,0): 115, 99, 66, (119,499,0): 113, 97, 64, (119,500,0): 112, 96, 63, (119,501,0): 114, 98, 65, (119,502,0): 117, 101, 68, (119,503,0): 118, 102, 69, (119,504,0): 121, 105, 72, (119,505,0): 122, 106, 73, (119,506,0): 123, 107, 74, (119,507,0): 124, 108, 75, (119,508,0): 125, 109, 76, (119,509,0): 127, 111, 78, (119,510,0): 128, 112, 79, (119,511,0): 128, 112, 79, (119,512,0): 128, 111, 81, (119,513,0): 128, 111, 81, (119,514,0): 127, 110, 80, (119,515,0): 126, 109, 79, (119,516,0): 126, 109, 79, (119,517,0): 125, 108, 78, (119,518,0): 124, 107, 77, (119,519,0): 124, 107, 77, (119,520,0): 123, 106, 76, (119,521,0): 123, 106, 76, (119,522,0): 123, 106, 76, (119,523,0): 123, 106, 76, (119,524,0): 123, 106, 76, (119,525,0): 123, 106, 76, (119,526,0): 123, 106, 76, (119,527,0): 123, 106, 76, (119,528,0): 120, 103, 73, (119,529,0): 120, 103, 73, (119,530,0): 119, 102, 72, (119,531,0): 118, 101, 71, (119,532,0): 118, 101, 73, (119,533,0): 119, 102, 74, (119,534,0): 119, 102, 74, (119,535,0): 120, 103, 75, (119,536,0): 116, 99, 73, (119,537,0): 116, 99, 73, (119,538,0): 115, 97, 73, (119,539,0): 115, 97, 73, (119,540,0): 114, 96, 72, (119,541,0): 114, 96, 72, (119,542,0): 113, 95, 73, (119,543,0): 116, 94, 73, (119,544,0): 115, 88, 71, (119,545,0): 117, 85, 70, (119,546,0): 116, 84, 69, (119,547,0): 114, 83, 65, (119,548,0): 113, 82, 62, (119,549,0): 111, 80, 60, (119,550,0): 110, 79, 58, (119,551,0): 110, 79, 58, (119,552,0): 105, 74, 54, (119,553,0): 106, 75, 57, (119,554,0): 107, 75, 60, (119,555,0): 107, 75, 62, (119,556,0): 105, 73, 62, (119,557,0): 101, 68, 59, (119,558,0): 97, 64, 57, (119,559,0): 92, 61, 56, (119,560,0): 89, 60, 56, (119,561,0): 88, 60, 56, (119,562,0): 87, 62, 57, (119,563,0): 87, 62, 57, (119,564,0): 88, 63, 58, (119,565,0): 87, 64, 58, (119,566,0): 88, 65, 59, (119,567,0): 88, 65, 59, (119,568,0): 85, 65, 58, (119,569,0): 85, 65, 58, (119,570,0): 86, 66, 59, (119,571,0): 85, 66, 59, (119,572,0): 85, 66, 59, (119,573,0): 83, 64, 57, (119,574,0): 82, 63, 56, (119,575,0): 81, 62, 55, (119,576,0): 81, 60, 55, (119,577,0): 81, 60, 55, (119,578,0): 81, 60, 55, (119,579,0): 82, 61, 56, (119,580,0): 82, 61, 56, (119,581,0): 83, 62, 57, (119,582,0): 83, 62, 57, (119,583,0): 83, 62, 57, (119,584,0): 83, 62, 57, (119,585,0): 82, 61, 56, (119,586,0): 81, 60, 55, (119,587,0): 80, 59, 54, (119,588,0): 78, 57, 52, (119,589,0): 76, 55, 50, (119,590,0): 75, 54, 49, (119,591,0): 75, 54, 49, (119,592,0): 72, 53, 49, (119,593,0): 71, 53, 49, (119,594,0): 71, 53, 49, (119,595,0): 71, 53, 49, (119,596,0): 71, 53, 49, (119,597,0): 70, 52, 48, (119,598,0): 70, 52, 48, (119,599,0): 70, 52, 48, (120,0,0): 31, 32, 50, (120,1,0): 35, 34, 50, (120,2,0): 38, 34, 51, (120,3,0): 40, 32, 47, (120,4,0): 41, 28, 45, (120,5,0): 44, 28, 41, (120,6,0): 52, 31, 46, (120,7,0): 57, 35, 48, (120,8,0): 62, 36, 49, (120,9,0): 59, 35, 48, (120,10,0): 57, 33, 47, (120,11,0): 52, 32, 44, (120,12,0): 48, 27, 42, (120,13,0): 41, 25, 38, (120,14,0): 37, 20, 36, (120,15,0): 33, 19, 34, (120,16,0): 31, 18, 36, (120,17,0): 30, 17, 35, (120,18,0): 28, 15, 32, (120,19,0): 28, 15, 32, (120,20,0): 29, 16, 33, (120,21,0): 32, 19, 36, (120,22,0): 37, 23, 38, (120,23,0): 40, 26, 41, (120,24,0): 39, 23, 36, (120,25,0): 40, 24, 37, (120,26,0): 43, 25, 39, (120,27,0): 44, 26, 40, (120,28,0): 45, 27, 39, (120,29,0): 44, 26, 38, (120,30,0): 44, 26, 38, (120,31,0): 43, 25, 37, (120,32,0): 44, 23, 40, (120,33,0): 45, 24, 41, (120,34,0): 44, 26, 42, (120,35,0): 44, 26, 42, (120,36,0): 44, 26, 42, (120,37,0): 44, 26, 42, (120,38,0): 42, 25, 43, (120,39,0): 41, 24, 42, (120,40,0): 39, 24, 43, (120,41,0): 39, 24, 43, (120,42,0): 39, 24, 45, (120,43,0): 39, 24, 45, (120,44,0): 38, 25, 45, (120,45,0): 38, 25, 45, (120,46,0): 38, 25, 45, (120,47,0): 38, 25, 45, (120,48,0): 36, 23, 43, (120,49,0): 36, 23, 43, (120,50,0): 36, 23, 43, (120,51,0): 36, 23, 43, (120,52,0): 36, 23, 43, (120,53,0): 36, 23, 43, (120,54,0): 36, 23, 43, (120,55,0): 36, 23, 43, (120,56,0): 35, 22, 42, (120,57,0): 35, 22, 42, (120,58,0): 34, 21, 41, (120,59,0): 34, 21, 41, (120,60,0): 33, 20, 40, (120,61,0): 33, 20, 40, (120,62,0): 32, 19, 39, (120,63,0): 32, 19, 39, (120,64,0): 33, 21, 41, (120,65,0): 33, 21, 41, (120,66,0): 32, 20, 40, (120,67,0): 31, 19, 39, (120,68,0): 30, 18, 38, (120,69,0): 29, 17, 37, (120,70,0): 28, 16, 36, (120,71,0): 28, 16, 36, (120,72,0): 28, 16, 36, (120,73,0): 28, 16, 36, (120,74,0): 28, 16, 36, (120,75,0): 28, 16, 36, (120,76,0): 28, 16, 36, (120,77,0): 28, 16, 36, (120,78,0): 28, 16, 36, (120,79,0): 26, 17, 36, (120,80,0): 23, 16, 34, (120,81,0): 23, 16, 34, (120,82,0): 24, 17, 35, (120,83,0): 24, 17, 35, (120,84,0): 23, 16, 34, (120,85,0): 21, 14, 32, (120,86,0): 19, 12, 30, (120,87,0): 18, 11, 29, (120,88,0): 23, 16, 34, (120,89,0): 23, 16, 34, (120,90,0): 22, 15, 33, (120,91,0): 22, 15, 33, (120,92,0): 21, 14, 32, (120,93,0): 21, 14, 32, (120,94,0): 20, 13, 31, (120,95,0): 18, 14, 31, (120,96,0): 16, 13, 30, (120,97,0): 15, 12, 29, (120,98,0): 15, 12, 29, (120,99,0): 14, 11, 28, (120,100,0): 14, 11, 28, (120,101,0): 13, 10, 27, (120,102,0): 13, 10, 27, (120,103,0): 13, 10, 27, (120,104,0): 14, 11, 28, (120,105,0): 14, 11, 28, (120,106,0): 14, 11, 28, (120,107,0): 14, 11, 28, (120,108,0): 14, 11, 28, (120,109,0): 14, 11, 28, (120,110,0): 14, 11, 28, (120,111,0): 14, 11, 28, (120,112,0): 17, 13, 28, (120,113,0): 19, 12, 28, (120,114,0): 19, 12, 28, (120,115,0): 20, 13, 29, (120,116,0): 21, 12, 29, (120,117,0): 22, 13, 30, (120,118,0): 22, 13, 30, (120,119,0): 23, 14, 31, (120,120,0): 26, 15, 32, (120,121,0): 26, 15, 32, (120,122,0): 28, 15, 33, (120,123,0): 28, 15, 33, (120,124,0): 29, 16, 34, (120,125,0): 29, 16, 34, (120,126,0): 31, 16, 35, (120,127,0): 31, 17, 34, (120,128,0): 34, 18, 31, (120,129,0): 34, 18, 29, (120,130,0): 33, 17, 28, (120,131,0): 33, 17, 28, (120,132,0): 33, 17, 28, (120,133,0): 35, 19, 30, (120,134,0): 36, 20, 31, (120,135,0): 37, 21, 32, (120,136,0): 37, 21, 32, (120,137,0): 37, 21, 32, (120,138,0): 37, 21, 32, (120,139,0): 36, 20, 31, (120,140,0): 36, 20, 31, (120,141,0): 35, 19, 30, (120,142,0): 35, 19, 30, (120,143,0): 35, 19, 30, (120,144,0): 36, 20, 31, (120,145,0): 36, 20, 31, (120,146,0): 37, 21, 32, (120,147,0): 37, 21, 32, (120,148,0): 38, 22, 33, (120,149,0): 38, 22, 33, (120,150,0): 39, 23, 34, (120,151,0): 39, 23, 34, (120,152,0): 38, 22, 33, (120,153,0): 38, 22, 33, (120,154,0): 38, 22, 33, (120,155,0): 39, 23, 34, (120,156,0): 39, 23, 34, (120,157,0): 40, 24, 35, (120,158,0): 40, 24, 35, (120,159,0): 40, 24, 35, (120,160,0): 40, 23, 33, (120,161,0): 40, 23, 33, (120,162,0): 40, 23, 33, (120,163,0): 40, 23, 33, (120,164,0): 40, 23, 33, (120,165,0): 40, 23, 33, (120,166,0): 40, 23, 33, (120,167,0): 40, 23, 33, (120,168,0): 39, 22, 32, (120,169,0): 39, 22, 32, (120,170,0): 39, 22, 32, (120,171,0): 39, 22, 32, (120,172,0): 39, 22, 32, (120,173,0): 39, 22, 32, (120,174,0): 39, 22, 32, (120,175,0): 39, 22, 32, (120,176,0): 42, 22, 31, (120,177,0): 42, 22, 31, (120,178,0): 42, 22, 31, (120,179,0): 42, 22, 31, (120,180,0): 42, 22, 31, (120,181,0): 42, 22, 31, (120,182,0): 42, 22, 31, (120,183,0): 42, 22, 31, (120,184,0): 44, 24, 33, (120,185,0): 44, 24, 33, (120,186,0): 44, 24, 33, (120,187,0): 44, 24, 33, (120,188,0): 44, 24, 33, (120,189,0): 44, 24, 33, (120,190,0): 44, 24, 33, (120,191,0): 44, 24, 33, (120,192,0): 43, 22, 31, (120,193,0): 44, 23, 30, (120,194,0): 45, 24, 31, (120,195,0): 46, 25, 32, (120,196,0): 48, 25, 31, (120,197,0): 49, 26, 32, (120,198,0): 49, 26, 32, (120,199,0): 50, 28, 31, (120,200,0): 51, 26, 30, (120,201,0): 51, 26, 30, (120,202,0): 52, 26, 29, (120,203,0): 53, 27, 30, (120,204,0): 53, 27, 30, (120,205,0): 54, 28, 29, (120,206,0): 56, 27, 29, (120,207,0): 55, 29, 32, (120,208,0): 55, 30, 34, (120,209,0): 53, 31, 34, (120,210,0): 52, 30, 33, (120,211,0): 52, 30, 33, (120,212,0): 51, 29, 32, (120,213,0): 51, 29, 31, (120,214,0): 50, 28, 30, (120,215,0): 50, 28, 30, (120,216,0): 52, 30, 32, (120,217,0): 52, 31, 30, (120,218,0): 52, 31, 30, (120,219,0): 53, 32, 29, (120,220,0): 53, 32, 29, (120,221,0): 54, 33, 30, (120,222,0): 54, 33, 30, (120,223,0): 57, 33, 29, (120,224,0): 58, 30, 27, (120,225,0): 59, 30, 26, (120,226,0): 60, 31, 27, (120,227,0): 60, 31, 27, (120,228,0): 61, 32, 28, (120,229,0): 61, 32, 28, (120,230,0): 62, 33, 29, (120,231,0): 62, 33, 29, (120,232,0): 62, 33, 29, (120,233,0): 62, 33, 29, (120,234,0): 61, 32, 28, (120,235,0): 61, 32, 28, (120,236,0): 60, 31, 27, (120,237,0): 60, 31, 27, (120,238,0): 59, 30, 26, (120,239,0): 59, 30, 26, (120,240,0): 61, 32, 28, (120,241,0): 61, 32, 28, (120,242,0): 61, 32, 28, (120,243,0): 61, 32, 28, (120,244,0): 61, 32, 28, (120,245,0): 61, 32, 28, (120,246,0): 61, 32, 28, (120,247,0): 61, 32, 28, (120,248,0): 61, 32, 28, (120,249,0): 61, 32, 28, (120,250,0): 61, 32, 28, (120,251,0): 61, 32, 28, (120,252,0): 61, 32, 28, (120,253,0): 61, 32, 28, (120,254,0): 61, 32, 28, (120,255,0): 61, 32, 26, (120,256,0): 66, 36, 28, (120,257,0): 66, 36, 26, (120,258,0): 66, 36, 26, (120,259,0): 66, 36, 26, (120,260,0): 66, 36, 26, (120,261,0): 66, 36, 26, (120,262,0): 66, 36, 26, (120,263,0): 66, 36, 26, (120,264,0): 66, 36, 26, (120,265,0): 66, 36, 26, (120,266,0): 66, 36, 26, (120,267,0): 66, 36, 26, (120,268,0): 66, 36, 26, (120,269,0): 66, 36, 26, (120,270,0): 66, 36, 26, (120,271,0): 66, 36, 26, (120,272,0): 69, 35, 26, (120,273,0): 69, 35, 26, (120,274,0): 70, 36, 27, (120,275,0): 70, 36, 27, (120,276,0): 71, 37, 28, (120,277,0): 71, 37, 28, (120,278,0): 72, 38, 29, (120,279,0): 72, 38, 29, (120,280,0): 75, 41, 32, (120,281,0): 75, 41, 32, (120,282,0): 74, 40, 31, (120,283,0): 75, 41, 32, (120,284,0): 76, 42, 33, (120,285,0): 78, 44, 35, (120,286,0): 79, 45, 36, (120,287,0): 81, 47, 38, (120,288,0): 82, 48, 39, (120,289,0): 83, 49, 39, (120,290,0): 84, 52, 39, (120,291,0): 86, 55, 37, (120,292,0): 87, 58, 40, (120,293,0): 89, 61, 40, (120,294,0): 93, 62, 41, (120,295,0): 94, 63, 42, (120,296,0): 94, 62, 41, (120,297,0): 99, 64, 42, (120,298,0): 106, 70, 46, (120,299,0): 116, 77, 48, (120,300,0): 124, 83, 51, (120,301,0): 132, 90, 52, (120,302,0): 137, 94, 51, (120,303,0): 140, 97, 42, (120,304,0): 161, 115, 38, (120,305,0): 182, 136, 50, (120,306,0): 186, 142, 55, (120,307,0): 182, 137, 52, (120,308,0): 182, 140, 54, (120,309,0): 181, 141, 56, (120,310,0): 181, 141, 56, (120,311,0): 186, 150, 66, (120,312,0): 184, 149, 67, (120,313,0): 182, 151, 69, (120,314,0): 183, 152, 72, (120,315,0): 182, 153, 73, (120,316,0): 181, 154, 75, (120,317,0): 180, 153, 74, (120,318,0): 177, 152, 72, (120,319,0): 176, 150, 73, (120,320,0): 174, 145, 75, (120,321,0): 174, 145, 77, (120,322,0): 173, 146, 77, (120,323,0): 173, 146, 77, (120,324,0): 173, 146, 79, (120,325,0): 174, 147, 80, (120,326,0): 172, 147, 81, (120,327,0): 172, 147, 83, (120,328,0): 171, 147, 85, (120,329,0): 172, 148, 86, (120,330,0): 173, 149, 89, (120,331,0): 173, 148, 91, (120,332,0): 171, 149, 92, (120,333,0): 169, 147, 90, (120,334,0): 166, 144, 87, (120,335,0): 165, 142, 88, (120,336,0): 158, 132, 81, (120,337,0): 159, 131, 81, (120,338,0): 157, 129, 79, (120,339,0): 159, 129, 79, (120,340,0): 160, 130, 80, (120,341,0): 162, 132, 82, (120,342,0): 164, 134, 84, (120,343,0): 166, 134, 85, (120,344,0): 165, 133, 84, (120,345,0): 167, 133, 85, (120,346,0): 168, 134, 86, (120,347,0): 169, 135, 87, (120,348,0): 170, 136, 88, (120,349,0): 174, 138, 90, (120,350,0): 175, 139, 91, (120,351,0): 176, 138, 91, (120,352,0): 181, 137, 90, (120,353,0): 186, 140, 91, (120,354,0): 191, 143, 95, (120,355,0): 198, 148, 99, (120,356,0): 204, 152, 102, (120,357,0): 209, 156, 104, (120,358,0): 214, 157, 104, (120,359,0): 217, 158, 102, (120,360,0): 219, 157, 100, (120,361,0): 225, 160, 102, (120,362,0): 232, 164, 103, (120,363,0): 236, 166, 104, (120,364,0): 241, 167, 104, (120,365,0): 245, 170, 105, (120,366,0): 252, 174, 110, (120,367,0): 254, 179, 111, (120,368,0): 255, 184, 110, (120,369,0): 255, 186, 109, (120,370,0): 255, 186, 108, (120,371,0): 255, 188, 109, (120,372,0): 255, 188, 107, (120,373,0): 255, 190, 106, (120,374,0): 255, 190, 106, (120,375,0): 254, 189, 105, (120,376,0): 255, 190, 106, (120,377,0): 255, 194, 109, (120,378,0): 255, 196, 113, (120,379,0): 255, 194, 114, (120,380,0): 253, 190, 111, (120,381,0): 249, 187, 110, (120,382,0): 248, 186, 111, (120,383,0): 246, 187, 111, (120,384,0): 250, 193, 114, (120,385,0): 250, 195, 113, (120,386,0): 251, 196, 116, (120,387,0): 249, 196, 116, (120,388,0): 248, 195, 117, (120,389,0): 245, 194, 115, (120,390,0): 242, 190, 114, (120,391,0): 239, 190, 114, (120,392,0): 235, 187, 113, (120,393,0): 234, 187, 115, (120,394,0): 233, 186, 116, (120,395,0): 229, 185, 114, (120,396,0): 226, 181, 113, (120,397,0): 224, 181, 112, (120,398,0): 223, 180, 112, (120,399,0): 222, 182, 113, (120,400,0): 219, 180, 111, (120,401,0): 219, 182, 114, (120,402,0): 220, 183, 115, (120,403,0): 219, 185, 114, (120,404,0): 218, 185, 114, (120,405,0): 216, 186, 114, (120,406,0): 216, 186, 114, (120,407,0): 215, 187, 113, (120,408,0): 221, 193, 119, (120,409,0): 221, 194, 117, (120,410,0): 221, 192, 116, (120,411,0): 223, 191, 116, (120,412,0): 225, 191, 117, (120,413,0): 226, 193, 116, (120,414,0): 230, 194, 118, (120,415,0): 231, 195, 117, (120,416,0): 232, 197, 116, (120,417,0): 232, 197, 115, (120,418,0): 233, 198, 114, (120,419,0): 234, 200, 113, (120,420,0): 236, 202, 113, (120,421,0): 238, 204, 114, (120,422,0): 241, 208, 115, (120,423,0): 242, 209, 116, (120,424,0): 248, 215, 120, (120,425,0): 249, 216, 121, (120,426,0): 249, 216, 121, (120,427,0): 249, 216, 123, (120,428,0): 246, 212, 122, (120,429,0): 242, 208, 118, (120,430,0): 238, 204, 114, (120,431,0): 233, 202, 111, (120,432,0): 227, 198, 106, (120,433,0): 223, 197, 102, (120,434,0): 223, 197, 104, (120,435,0): 225, 199, 104, (120,436,0): 232, 203, 109, (120,437,0): 235, 206, 112, (120,438,0): 233, 204, 110, (120,439,0): 231, 202, 108, (120,440,0): 234, 203, 110, (120,441,0): 232, 201, 108, (120,442,0): 234, 201, 108, (120,443,0): 236, 203, 110, (120,444,0): 238, 205, 112, (120,445,0): 237, 204, 109, (120,446,0): 233, 198, 106, (120,447,0): 229, 194, 100, (120,448,0): 229, 193, 99, (120,449,0): 226, 189, 98, (120,450,0): 222, 185, 96, (120,451,0): 220, 184, 96, (120,452,0): 219, 184, 100, (120,453,0): 216, 183, 102, (120,454,0): 211, 179, 102, (120,455,0): 205, 177, 104, (120,456,0): 188, 161, 94, (120,457,0): 176, 152, 88, (120,458,0): 162, 140, 82, (120,459,0): 153, 134, 78, (120,460,0): 149, 129, 76, (120,461,0): 143, 125, 75, (120,462,0): 135, 119, 70, (120,463,0): 130, 111, 68, (120,464,0): 132, 110, 71, (120,465,0): 131, 107, 71, (120,466,0): 129, 105, 71, (120,467,0): 127, 103, 67, (120,468,0): 129, 105, 71, (120,469,0): 133, 109, 73, (120,470,0): 138, 114, 80, (120,471,0): 142, 118, 82, (120,472,0): 138, 114, 80, (120,473,0): 136, 112, 76, (120,474,0): 133, 109, 75, (120,475,0): 130, 106, 70, (120,476,0): 129, 105, 71, (120,477,0): 129, 105, 69, (120,478,0): 131, 107, 73, (120,479,0): 131, 108, 74, (120,480,0): 134, 111, 77, (120,481,0): 132, 112, 79, (120,482,0): 132, 112, 79, (120,483,0): 131, 111, 78, (120,484,0): 130, 111, 78, (120,485,0): 128, 109, 76, (120,486,0): 127, 108, 75, (120,487,0): 126, 107, 74, (120,488,0): 128, 112, 78, (120,489,0): 131, 115, 81, (120,490,0): 132, 118, 83, (120,491,0): 130, 116, 81, (120,492,0): 125, 111, 76, (120,493,0): 122, 108, 73, (120,494,0): 121, 108, 73, (120,495,0): 122, 109, 74, (120,496,0): 123, 107, 73, (120,497,0): 121, 105, 71, (120,498,0): 118, 102, 68, (120,499,0): 116, 100, 66, (120,500,0): 116, 100, 66, (120,501,0): 118, 102, 68, (120,502,0): 121, 105, 71, (120,503,0): 123, 107, 73, (120,504,0): 124, 108, 74, (120,505,0): 124, 108, 74, (120,506,0): 125, 109, 75, (120,507,0): 126, 110, 76, (120,508,0): 127, 111, 77, (120,509,0): 128, 112, 78, (120,510,0): 129, 113, 79, (120,511,0): 130, 114, 81, (120,512,0): 132, 113, 83, (120,513,0): 132, 113, 83, (120,514,0): 131, 112, 82, (120,515,0): 130, 111, 81, (120,516,0): 130, 111, 81, (120,517,0): 129, 110, 80, (120,518,0): 128, 109, 79, (120,519,0): 128, 109, 79, (120,520,0): 130, 111, 81, (120,521,0): 130, 111, 81, (120,522,0): 131, 112, 82, (120,523,0): 131, 112, 82, (120,524,0): 129, 110, 80, (120,525,0): 128, 109, 79, (120,526,0): 126, 107, 77, (120,527,0): 125, 106, 76, (120,528,0): 123, 104, 74, (120,529,0): 122, 103, 73, (120,530,0): 121, 102, 72, (120,531,0): 120, 101, 71, (120,532,0): 118, 98, 71, (120,533,0): 117, 97, 70, (120,534,0): 116, 96, 69, (120,535,0): 116, 96, 69, (120,536,0): 117, 97, 72, (120,537,0): 117, 97, 72, (120,538,0): 118, 98, 74, (120,539,0): 118, 98, 74, (120,540,0): 117, 97, 73, (120,541,0): 115, 95, 71, (120,542,0): 114, 93, 72, (120,543,0): 113, 91, 70, (120,544,0): 116, 89, 72, (120,545,0): 116, 87, 71, (120,546,0): 114, 85, 69, (120,547,0): 112, 83, 65, (120,548,0): 110, 82, 61, (120,549,0): 107, 79, 58, (120,550,0): 105, 77, 56, (120,551,0): 104, 76, 55, (120,552,0): 107, 78, 60, (120,553,0): 107, 78, 60, (120,554,0): 105, 76, 60, (120,555,0): 103, 74, 60, (120,556,0): 101, 71, 60, (120,557,0): 99, 69, 59, (120,558,0): 97, 67, 59, (120,559,0): 95, 66, 60, (120,560,0): 90, 62, 58, (120,561,0): 87, 62, 58, (120,562,0): 87, 62, 58, (120,563,0): 87, 62, 58, (120,564,0): 87, 63, 59, (120,565,0): 88, 64, 60, (120,566,0): 90, 66, 62, (120,567,0): 89, 68, 63, (120,568,0): 87, 66, 61, (120,569,0): 88, 67, 62, (120,570,0): 88, 69, 63, (120,571,0): 88, 69, 63, (120,572,0): 86, 67, 61, (120,573,0): 83, 66, 59, (120,574,0): 80, 63, 56, (120,575,0): 79, 60, 54, (120,576,0): 81, 60, 55, (120,577,0): 82, 61, 56, (120,578,0): 84, 63, 58, (120,579,0): 85, 64, 59, (120,580,0): 85, 64, 59, (120,581,0): 84, 63, 58, (120,582,0): 82, 61, 56, (120,583,0): 81, 60, 55, (120,584,0): 80, 59, 54, (120,585,0): 79, 58, 53, (120,586,0): 77, 56, 51, (120,587,0): 76, 55, 50, (120,588,0): 75, 54, 49, (120,589,0): 76, 55, 50, (120,590,0): 76, 55, 50, (120,591,0): 77, 56, 51, (120,592,0): 74, 55, 51, (120,593,0): 75, 56, 52, (120,594,0): 75, 56, 52, (120,595,0): 75, 56, 52, (120,596,0): 74, 55, 51, (120,597,0): 72, 53, 49, (120,598,0): 70, 51, 47, (120,599,0): 69, 50, 46, (121,0,0): 31, 32, 50, (121,1,0): 35, 34, 50, (121,2,0): 38, 34, 51, (121,3,0): 40, 32, 47, (121,4,0): 42, 29, 46, (121,5,0): 46, 30, 43, (121,6,0): 54, 33, 48, (121,7,0): 58, 36, 49, (121,8,0): 61, 35, 48, (121,9,0): 58, 34, 47, (121,10,0): 55, 31, 45, (121,11,0): 49, 29, 41, (121,12,0): 45, 24, 39, (121,13,0): 39, 23, 36, (121,14,0): 37, 20, 36, (121,15,0): 34, 20, 35, (121,16,0): 32, 19, 37, (121,17,0): 30, 17, 35, (121,18,0): 29, 16, 33, (121,19,0): 28, 15, 32, (121,20,0): 29, 16, 33, (121,21,0): 32, 19, 36, (121,22,0): 37, 23, 38, (121,23,0): 39, 25, 40, (121,24,0): 39, 23, 36, (121,25,0): 40, 24, 37, (121,26,0): 43, 25, 39, (121,27,0): 44, 26, 40, (121,28,0): 45, 27, 39, (121,29,0): 44, 26, 38, (121,30,0): 44, 26, 38, (121,31,0): 43, 25, 37, (121,32,0): 44, 23, 40, (121,33,0): 45, 24, 41, (121,34,0): 46, 25, 42, (121,35,0): 45, 27, 43, (121,36,0): 45, 27, 43, (121,37,0): 44, 26, 42, (121,38,0): 43, 24, 43, (121,39,0): 41, 24, 42, (121,40,0): 41, 24, 43, (121,41,0): 39, 24, 43, (121,42,0): 39, 24, 45, (121,43,0): 39, 24, 45, (121,44,0): 39, 24, 45, (121,45,0): 38, 25, 45, (121,46,0): 38, 25, 45, (121,47,0): 38, 25, 45, (121,48,0): 38, 25, 45, (121,49,0): 38, 25, 45, (121,50,0): 38, 25, 45, (121,51,0): 38, 25, 45, (121,52,0): 38, 25, 45, (121,53,0): 38, 25, 45, (121,54,0): 38, 25, 45, (121,55,0): 38, 25, 45, (121,56,0): 35, 22, 42, (121,57,0): 35, 22, 42, (121,58,0): 35, 22, 42, (121,59,0): 34, 21, 41, (121,60,0): 34, 21, 41, (121,61,0): 33, 20, 40, (121,62,0): 33, 20, 40, (121,63,0): 33, 20, 40, (121,64,0): 34, 22, 42, (121,65,0): 34, 22, 42, (121,66,0): 33, 21, 41, (121,67,0): 32, 20, 40, (121,68,0): 31, 19, 39, (121,69,0): 30, 18, 38, (121,70,0): 29, 17, 37, (121,71,0): 28, 16, 36, (121,72,0): 28, 16, 36, (121,73,0): 28, 16, 36, (121,74,0): 28, 16, 36, (121,75,0): 28, 16, 36, (121,76,0): 28, 16, 36, (121,77,0): 28, 16, 36, (121,78,0): 28, 16, 36, (121,79,0): 28, 16, 36, (121,80,0): 24, 15, 34, (121,81,0): 23, 16, 34, (121,82,0): 24, 17, 35, (121,83,0): 24, 17, 35, (121,84,0): 23, 16, 34, (121,85,0): 22, 15, 33, (121,86,0): 20, 13, 31, (121,87,0): 19, 12, 30, (121,88,0): 23, 16, 34, (121,89,0): 23, 16, 34, (121,90,0): 23, 16, 34, (121,91,0): 22, 15, 33, (121,92,0): 22, 15, 33, (121,93,0): 21, 14, 32, (121,94,0): 21, 14, 32, (121,95,0): 20, 13, 31, (121,96,0): 17, 13, 30, (121,97,0): 16, 13, 30, (121,98,0): 15, 12, 29, (121,99,0): 15, 12, 29, (121,100,0): 14, 11, 28, (121,101,0): 14, 11, 28, (121,102,0): 13, 10, 27, (121,103,0): 13, 10, 27, (121,104,0): 14, 11, 28, (121,105,0): 14, 11, 28, (121,106,0): 14, 11, 28, (121,107,0): 14, 11, 28, (121,108,0): 14, 11, 28, (121,109,0): 14, 11, 28, (121,110,0): 14, 11, 28, (121,111,0): 15, 11, 28, (121,112,0): 19, 12, 28, (121,113,0): 19, 12, 28, (121,114,0): 20, 13, 29, (121,115,0): 20, 13, 29, (121,116,0): 22, 13, 30, (121,117,0): 22, 13, 30, (121,118,0): 22, 13, 30, (121,119,0): 23, 14, 31, (121,120,0): 26, 15, 32, (121,121,0): 26, 15, 32, (121,122,0): 28, 15, 33, (121,123,0): 28, 15, 33, (121,124,0): 29, 16, 34, (121,125,0): 29, 16, 34, (121,126,0): 31, 16, 35, (121,127,0): 31, 17, 34, (121,128,0): 34, 18, 31, (121,129,0): 34, 18, 29, (121,130,0): 33, 17, 28, (121,131,0): 33, 17, 28, (121,132,0): 33, 17, 28, (121,133,0): 35, 19, 30, (121,134,0): 36, 20, 31, (121,135,0): 37, 21, 32, (121,136,0): 37, 21, 32, (121,137,0): 37, 21, 32, (121,138,0): 37, 21, 32, (121,139,0): 36, 20, 31, (121,140,0): 36, 20, 31, (121,141,0): 35, 19, 30, (121,142,0): 35, 19, 30, (121,143,0): 35, 19, 30, (121,144,0): 36, 20, 31, (121,145,0): 36, 20, 31, (121,146,0): 37, 21, 32, (121,147,0): 37, 21, 32, (121,148,0): 38, 22, 33, (121,149,0): 38, 22, 33, (121,150,0): 39, 23, 34, (121,151,0): 39, 23, 34, (121,152,0): 38, 22, 33, (121,153,0): 38, 22, 33, (121,154,0): 38, 22, 33, (121,155,0): 39, 23, 34, (121,156,0): 39, 23, 34, (121,157,0): 40, 24, 35, (121,158,0): 40, 24, 35, (121,159,0): 40, 24, 35, (121,160,0): 40, 23, 33, (121,161,0): 40, 23, 33, (121,162,0): 40, 23, 33, (121,163,0): 40, 23, 33, (121,164,0): 40, 23, 33, (121,165,0): 40, 23, 33, (121,166,0): 40, 23, 33, (121,167,0): 40, 23, 33, (121,168,0): 39, 22, 32, (121,169,0): 39, 22, 32, (121,170,0): 39, 22, 32, (121,171,0): 39, 22, 32, (121,172,0): 39, 22, 32, (121,173,0): 39, 22, 32, (121,174,0): 39, 22, 32, (121,175,0): 39, 22, 32, (121,176,0): 42, 22, 31, (121,177,0): 42, 22, 31, (121,178,0): 42, 22, 31, (121,179,0): 42, 22, 31, (121,180,0): 42, 22, 31, (121,181,0): 42, 22, 31, (121,182,0): 42, 22, 31, (121,183,0): 42, 22, 31, (121,184,0): 44, 24, 33, (121,185,0): 44, 24, 33, (121,186,0): 44, 24, 33, (121,187,0): 44, 24, 33, (121,188,0): 44, 24, 33, (121,189,0): 44, 24, 33, (121,190,0): 44, 24, 33, (121,191,0): 44, 24, 33, (121,192,0): 44, 23, 30, (121,193,0): 44, 23, 30, (121,194,0): 45, 24, 31, (121,195,0): 46, 25, 30, (121,196,0): 48, 25, 31, (121,197,0): 49, 26, 32, (121,198,0): 50, 28, 31, (121,199,0): 50, 28, 31, (121,200,0): 51, 26, 30, (121,201,0): 51, 26, 29, (121,202,0): 53, 27, 30, (121,203,0): 53, 27, 30, (121,204,0): 54, 28, 29, (121,205,0): 54, 28, 29, (121,206,0): 56, 27, 29, (121,207,0): 55, 29, 30, (121,208,0): 55, 30, 33, (121,209,0): 53, 31, 34, (121,210,0): 52, 30, 33, (121,211,0): 52, 30, 33, (121,212,0): 51, 29, 31, (121,213,0): 51, 29, 31, (121,214,0): 50, 28, 30, (121,215,0): 50, 29, 28, (121,216,0): 52, 31, 30, (121,217,0): 52, 31, 30, (121,218,0): 53, 32, 29, (121,219,0): 53, 32, 29, (121,220,0): 54, 33, 30, (121,221,0): 54, 33, 30, (121,222,0): 54, 33, 28, (121,223,0): 57, 33, 29, (121,224,0): 58, 30, 26, (121,225,0): 60, 31, 27, (121,226,0): 60, 31, 27, (121,227,0): 61, 32, 28, (121,228,0): 61, 32, 28, (121,229,0): 62, 33, 29, (121,230,0): 62, 33, 29, (121,231,0): 62, 33, 29, (121,232,0): 62, 33, 29, (121,233,0): 62, 33, 29, (121,234,0): 61, 32, 28, (121,235,0): 61, 32, 28, (121,236,0): 60, 31, 27, (121,237,0): 60, 31, 27, (121,238,0): 59, 30, 26, (121,239,0): 59, 30, 26, (121,240,0): 61, 32, 28, (121,241,0): 61, 32, 28, (121,242,0): 61, 32, 28, (121,243,0): 61, 32, 28, (121,244,0): 61, 32, 28, (121,245,0): 61, 32, 28, (121,246,0): 61, 32, 28, (121,247,0): 61, 32, 28, (121,248,0): 61, 32, 28, (121,249,0): 61, 32, 28, (121,250,0): 61, 32, 28, (121,251,0): 61, 32, 28, (121,252,0): 61, 32, 28, (121,253,0): 61, 32, 28, (121,254,0): 61, 32, 28, (121,255,0): 61, 32, 26, (121,256,0): 66, 36, 28, (121,257,0): 66, 36, 26, (121,258,0): 66, 36, 26, (121,259,0): 66, 36, 26, (121,260,0): 66, 36, 26, (121,261,0): 66, 36, 26, (121,262,0): 66, 36, 26, (121,263,0): 66, 36, 26, (121,264,0): 66, 36, 26, (121,265,0): 66, 36, 26, (121,266,0): 66, 36, 26, (121,267,0): 66, 36, 26, (121,268,0): 66, 36, 26, (121,269,0): 66, 36, 26, (121,270,0): 66, 36, 26, (121,271,0): 66, 36, 26, (121,272,0): 69, 35, 26, (121,273,0): 69, 35, 26, (121,274,0): 70, 36, 27, (121,275,0): 70, 36, 27, (121,276,0): 71, 37, 28, (121,277,0): 71, 37, 28, (121,278,0): 72, 38, 29, (121,279,0): 72, 38, 29, (121,280,0): 75, 41, 32, (121,281,0): 75, 41, 32, (121,282,0): 74, 40, 31, (121,283,0): 75, 41, 32, (121,284,0): 76, 42, 33, (121,285,0): 78, 44, 35, (121,286,0): 79, 45, 36, (121,287,0): 81, 47, 38, (121,288,0): 82, 48, 39, (121,289,0): 83, 49, 39, (121,290,0): 84, 52, 39, (121,291,0): 86, 55, 37, (121,292,0): 87, 58, 40, (121,293,0): 89, 61, 40, (121,294,0): 93, 62, 41, (121,295,0): 94, 63, 42, (121,296,0): 95, 63, 42, (121,297,0): 100, 65, 43, (121,298,0): 106, 70, 46, (121,299,0): 115, 76, 47, (121,300,0): 123, 82, 50, (121,301,0): 131, 89, 51, (121,302,0): 136, 93, 50, (121,303,0): 140, 97, 42, (121,304,0): 159, 112, 40, (121,305,0): 180, 133, 51, (121,306,0): 185, 140, 57, (121,307,0): 180, 135, 52, (121,308,0): 180, 138, 56, (121,309,0): 179, 138, 56, (121,310,0): 179, 138, 58, (121,311,0): 183, 146, 65, (121,312,0): 181, 146, 65, (121,313,0): 180, 149, 69, (121,314,0): 181, 150, 70, (121,315,0): 180, 151, 73, (121,316,0): 180, 153, 74, (121,317,0): 179, 152, 73, (121,318,0): 176, 151, 71, (121,319,0): 176, 150, 75, (121,320,0): 171, 142, 72, (121,321,0): 171, 142, 74, (121,322,0): 171, 144, 75, (121,323,0): 172, 145, 76, (121,324,0): 172, 145, 78, (121,325,0): 173, 145, 80, (121,326,0): 172, 147, 83, (121,327,0): 172, 147, 83, (121,328,0): 171, 147, 85, (121,329,0): 172, 148, 88, (121,330,0): 172, 147, 90, (121,331,0): 172, 147, 90, (121,332,0): 169, 147, 90, (121,333,0): 167, 145, 88, (121,334,0): 164, 142, 85, (121,335,0): 165, 140, 86, (121,336,0): 157, 129, 79, (121,337,0): 159, 129, 79, (121,338,0): 159, 129, 79, (121,339,0): 159, 129, 79, (121,340,0): 161, 131, 81, (121,341,0): 165, 133, 84, (121,342,0): 168, 136, 87, (121,343,0): 169, 137, 88, (121,344,0): 167, 133, 85, (121,345,0): 167, 133, 85, (121,346,0): 169, 135, 87, (121,347,0): 172, 136, 88, (121,348,0): 174, 138, 90, (121,349,0): 176, 140, 92, (121,350,0): 177, 141, 93, (121,351,0): 181, 141, 92, (121,352,0): 186, 140, 91, (121,353,0): 191, 141, 92, (121,354,0): 196, 144, 96, (121,355,0): 200, 148, 98, (121,356,0): 205, 152, 100, (121,357,0): 210, 155, 101, (121,358,0): 215, 155, 101, (121,359,0): 217, 156, 101, (121,360,0): 223, 158, 102, (121,361,0): 228, 162, 102, (121,362,0): 233, 165, 104, (121,363,0): 237, 166, 104, (121,364,0): 240, 166, 103, (121,365,0): 242, 167, 102, (121,366,0): 246, 171, 106, (121,367,0): 249, 174, 106, (121,368,0): 249, 180, 103, (121,369,0): 250, 183, 104, (121,370,0): 252, 185, 104, (121,371,0): 254, 189, 107, (121,372,0): 255, 190, 106, (121,373,0): 255, 191, 107, (121,374,0): 255, 191, 107, (121,375,0): 253, 191, 106, (121,376,0): 251, 189, 104, (121,377,0): 252, 191, 108, (121,378,0): 254, 193, 112, (121,379,0): 252, 191, 111, (121,380,0): 248, 186, 111, (121,381,0): 243, 183, 110, (121,382,0): 242, 182, 109, (121,383,0): 243, 183, 110, (121,384,0): 248, 193, 113, (121,385,0): 248, 196, 113, (121,386,0): 250, 197, 117, (121,387,0): 250, 199, 118, (121,388,0): 249, 198, 119, (121,389,0): 245, 196, 117, (121,390,0): 242, 193, 117, (121,391,0): 238, 190, 116, (121,392,0): 233, 186, 114, (121,393,0): 230, 186, 115, (121,394,0): 228, 184, 113, (121,395,0): 225, 182, 113, (121,396,0): 224, 181, 113, (121,397,0): 221, 181, 112, (121,398,0): 221, 181, 112, (121,399,0): 220, 181, 114, (121,400,0): 217, 180, 112, (121,401,0): 218, 181, 113, (121,402,0): 217, 182, 114, (121,403,0): 216, 183, 114, (121,404,0): 217, 184, 113, (121,405,0): 215, 185, 113, (121,406,0): 214, 186, 113, (121,407,0): 214, 186, 113, (121,408,0): 220, 192, 118, (121,409,0): 219, 191, 117, (121,410,0): 220, 191, 115, (121,411,0): 220, 191, 115, (121,412,0): 224, 190, 116, (121,413,0): 226, 192, 118, (121,414,0): 229, 193, 117, (121,415,0): 230, 194, 116, (121,416,0): 232, 197, 116, (121,417,0): 232, 197, 115, (121,418,0): 232, 197, 113, (121,419,0): 234, 200, 113, (121,420,0): 236, 202, 113, (121,421,0): 239, 205, 115, (121,422,0): 242, 209, 116, (121,423,0): 244, 211, 116, (121,424,0): 251, 218, 123, (121,425,0): 251, 218, 123, (121,426,0): 250, 217, 122, (121,427,0): 248, 215, 120, (121,428,0): 245, 212, 119, (121,429,0): 241, 207, 117, (121,430,0): 238, 204, 114, (121,431,0): 234, 203, 112, (121,432,0): 230, 201, 109, (121,433,0): 225, 199, 106, (121,434,0): 223, 197, 104, (121,435,0): 224, 198, 105, (121,436,0): 230, 201, 109, (121,437,0): 233, 204, 110, (121,438,0): 233, 204, 110, (121,439,0): 232, 203, 109, (121,440,0): 236, 205, 112, (121,441,0): 235, 204, 111, (121,442,0): 238, 205, 112, (121,443,0): 239, 206, 111, (121,444,0): 240, 207, 112, (121,445,0): 238, 205, 110, (121,446,0): 233, 198, 104, (121,447,0): 228, 193, 99, (121,448,0): 227, 192, 98, (121,449,0): 225, 190, 96, (121,450,0): 222, 187, 97, (121,451,0): 221, 187, 98, (121,452,0): 219, 187, 102, (121,453,0): 216, 185, 103, (121,454,0): 210, 181, 103, (121,455,0): 206, 178, 105, (121,456,0): 190, 163, 96, (121,457,0): 178, 154, 90, (121,458,0): 165, 143, 85, (121,459,0): 157, 136, 81, (121,460,0): 152, 132, 79, (121,461,0): 146, 128, 78, (121,462,0): 139, 121, 73, (121,463,0): 133, 115, 69, (121,464,0): 133, 111, 72, (121,465,0): 132, 108, 72, (121,466,0): 129, 105, 69, (121,467,0): 128, 104, 68, (121,468,0): 130, 106, 70, (121,469,0): 134, 110, 74, (121,470,0): 139, 115, 79, (121,471,0): 142, 118, 82, (121,472,0): 137, 113, 77, (121,473,0): 136, 112, 76, (121,474,0): 135, 111, 75, (121,475,0): 134, 110, 74, (121,476,0): 133, 109, 73, (121,477,0): 133, 109, 73, (121,478,0): 134, 110, 74, (121,479,0): 134, 112, 75, (121,480,0): 135, 113, 76, (121,481,0): 133, 113, 76, (121,482,0): 133, 113, 78, (121,483,0): 133, 113, 76, (121,484,0): 131, 113, 77, (121,485,0): 130, 112, 74, (121,486,0): 129, 111, 75, (121,487,0): 129, 111, 73, (121,488,0): 130, 114, 78, (121,489,0): 132, 117, 78, (121,490,0): 133, 119, 82, (121,491,0): 131, 117, 78, (121,492,0): 127, 113, 76, (121,493,0): 124, 110, 71, (121,494,0): 122, 110, 72, (121,495,0): 123, 111, 73, (121,496,0): 122, 106, 70, (121,497,0): 121, 105, 71, (121,498,0): 118, 102, 68, (121,499,0): 116, 100, 66, (121,500,0): 116, 100, 66, (121,501,0): 118, 102, 68, (121,502,0): 121, 105, 71, (121,503,0): 122, 106, 72, (121,504,0): 126, 110, 76, (121,505,0): 126, 110, 76, (121,506,0): 126, 110, 76, (121,507,0): 127, 111, 77, (121,508,0): 127, 111, 77, (121,509,0): 128, 112, 78, (121,510,0): 128, 112, 78, (121,511,0): 128, 112, 78, (121,512,0): 131, 112, 80, (121,513,0): 131, 112, 82, (121,514,0): 131, 112, 82, (121,515,0): 131, 112, 82, (121,516,0): 130, 111, 81, (121,517,0): 130, 111, 81, (121,518,0): 130, 111, 81, (121,519,0): 130, 111, 81, (121,520,0): 131, 112, 82, (121,521,0): 131, 112, 82, (121,522,0): 132, 113, 83, (121,523,0): 131, 112, 82, (121,524,0): 130, 111, 81, (121,525,0): 128, 109, 79, (121,526,0): 127, 108, 78, (121,527,0): 125, 106, 76, (121,528,0): 123, 104, 74, (121,529,0): 122, 103, 73, (121,530,0): 121, 102, 72, (121,531,0): 119, 100, 70, (121,532,0): 117, 97, 70, (121,533,0): 115, 95, 68, (121,534,0): 114, 94, 67, (121,535,0): 113, 93, 66, (121,536,0): 114, 94, 69, (121,537,0): 114, 94, 69, (121,538,0): 115, 95, 71, (121,539,0): 116, 96, 72, (121,540,0): 115, 95, 71, (121,541,0): 114, 94, 70, (121,542,0): 113, 92, 71, (121,543,0): 113, 91, 70, (121,544,0): 115, 87, 73, (121,545,0): 114, 86, 72, (121,546,0): 114, 85, 69, (121,547,0): 111, 84, 67, (121,548,0): 109, 80, 62, (121,549,0): 106, 79, 58, (121,550,0): 105, 77, 56, (121,551,0): 103, 76, 55, (121,552,0): 107, 78, 60, (121,553,0): 105, 78, 59, (121,554,0): 105, 76, 62, (121,555,0): 102, 74, 62, (121,556,0): 101, 71, 61, (121,557,0): 98, 70, 59, (121,558,0): 97, 67, 59, (121,559,0): 95, 66, 60, (121,560,0): 86, 61, 57, (121,561,0): 86, 61, 57, (121,562,0): 86, 61, 57, (121,563,0): 85, 61, 57, (121,564,0): 86, 62, 58, (121,565,0): 88, 64, 60, (121,566,0): 88, 67, 62, (121,567,0): 89, 68, 63, (121,568,0): 88, 67, 62, (121,569,0): 87, 68, 62, (121,570,0): 87, 68, 62, (121,571,0): 86, 67, 61, (121,572,0): 84, 67, 60, (121,573,0): 82, 65, 58, (121,574,0): 81, 64, 57, (121,575,0): 80, 63, 56, (121,576,0): 80, 61, 55, (121,577,0): 82, 61, 56, (121,578,0): 84, 63, 58, (121,579,0): 85, 64, 59, (121,580,0): 85, 64, 59, (121,581,0): 84, 63, 58, (121,582,0): 82, 61, 56, (121,583,0): 81, 60, 55, (121,584,0): 80, 59, 54, (121,585,0): 79, 58, 53, (121,586,0): 77, 56, 51, (121,587,0): 76, 55, 50, (121,588,0): 75, 54, 49, (121,589,0): 76, 55, 50, (121,590,0): 76, 55, 50, (121,591,0): 77, 56, 51, (121,592,0): 74, 55, 51, (121,593,0): 74, 55, 51, (121,594,0): 75, 56, 52, (121,595,0): 75, 56, 52, (121,596,0): 73, 54, 50, (121,597,0): 72, 53, 49, (121,598,0): 70, 51, 47, (121,599,0): 69, 50, 46, (122,0,0): 30, 31, 49, (122,1,0): 34, 33, 49, (122,2,0): 38, 34, 51, (122,3,0): 41, 33, 48, (122,4,0): 45, 32, 49, (122,5,0): 49, 33, 46, (122,6,0): 56, 35, 50, (122,7,0): 60, 38, 51, (122,8,0): 60, 34, 47, (122,9,0): 55, 31, 44, (122,10,0): 51, 27, 41, (122,11,0): 45, 25, 37, (122,12,0): 42, 21, 36, (122,13,0): 37, 21, 34, (122,14,0): 36, 19, 35, (122,15,0): 34, 20, 35, (122,16,0): 32, 19, 37, (122,17,0): 31, 18, 36, (122,18,0): 30, 17, 34, (122,19,0): 29, 16, 33, (122,20,0): 30, 17, 34, (122,21,0): 33, 20, 37, (122,22,0): 36, 22, 37, (122,23,0): 38, 24, 39, (122,24,0): 39, 23, 36, (122,25,0): 40, 24, 37, (122,26,0): 43, 25, 39, (122,27,0): 44, 26, 40, (122,28,0): 45, 27, 39, (122,29,0): 44, 26, 38, (122,30,0): 44, 26, 38, (122,31,0): 43, 25, 37, (122,32,0): 44, 23, 40, (122,33,0): 45, 24, 41, (122,34,0): 46, 25, 42, (122,35,0): 47, 26, 43, (122,36,0): 47, 26, 43, (122,37,0): 44, 26, 42, (122,38,0): 43, 24, 43, (122,39,0): 41, 24, 42, (122,40,0): 41, 24, 43, (122,41,0): 41, 24, 43, (122,42,0): 41, 23, 45, (122,43,0): 39, 24, 45, (122,44,0): 39, 24, 45, (122,45,0): 39, 24, 45, (122,46,0): 39, 24, 45, (122,47,0): 39, 24, 45, (122,48,0): 40, 25, 44, (122,49,0): 40, 25, 44, (122,50,0): 40, 25, 44, (122,51,0): 40, 25, 44, (122,52,0): 40, 25, 44, (122,53,0): 40, 25, 44, (122,54,0): 40, 25, 44, (122,55,0): 40, 25, 44, (122,56,0): 38, 23, 42, (122,57,0): 37, 22, 41, (122,58,0): 37, 22, 41, (122,59,0): 36, 21, 40, (122,60,0): 36, 21, 40, (122,61,0): 35, 20, 39, (122,62,0): 35, 20, 39, (122,63,0): 34, 21, 39, (122,64,0): 35, 23, 43, (122,65,0): 34, 22, 42, (122,66,0): 34, 22, 42, (122,67,0): 32, 20, 40, (122,68,0): 31, 19, 39, (122,69,0): 30, 18, 38, (122,70,0): 30, 18, 38, (122,71,0): 29, 17, 37, (122,72,0): 28, 16, 36, (122,73,0): 28, 16, 36, (122,74,0): 28, 16, 36, (122,75,0): 28, 16, 36, (122,76,0): 28, 16, 36, (122,77,0): 28, 16, 36, (122,78,0): 28, 16, 36, (122,79,0): 28, 16, 36, (122,80,0): 25, 16, 33, (122,81,0): 25, 16, 33, (122,82,0): 26, 17, 34, (122,83,0): 26, 17, 34, (122,84,0): 26, 17, 34, (122,85,0): 25, 16, 33, (122,86,0): 23, 14, 31, (122,87,0): 22, 13, 30, (122,88,0): 25, 16, 33, (122,89,0): 24, 15, 32, (122,90,0): 24, 15, 32, (122,91,0): 23, 14, 31, (122,92,0): 23, 14, 31, (122,93,0): 22, 13, 30, (122,94,0): 22, 13, 30, (122,95,0): 21, 14, 30, (122,96,0): 18, 14, 31, (122,97,0): 18, 14, 31, (122,98,0): 17, 13, 30, (122,99,0): 17, 13, 30, (122,100,0): 16, 12, 29, (122,101,0): 16, 12, 29, (122,102,0): 15, 11, 28, (122,103,0): 15, 11, 28, (122,104,0): 16, 12, 29, (122,105,0): 16, 12, 29, (122,106,0): 16, 12, 29, (122,107,0): 16, 12, 29, (122,108,0): 16, 12, 29, (122,109,0): 16, 12, 29, (122,110,0): 16, 12, 29, (122,111,0): 16, 12, 29, (122,112,0): 19, 12, 28, (122,113,0): 20, 13, 29, (122,114,0): 21, 12, 29, (122,115,0): 21, 12, 29, (122,116,0): 22, 13, 30, (122,117,0): 23, 14, 31, (122,118,0): 25, 14, 31, (122,119,0): 25, 14, 31, (122,120,0): 27, 14, 32, (122,121,0): 27, 14, 32, (122,122,0): 28, 15, 33, (122,123,0): 28, 15, 33, (122,124,0): 30, 15, 34, (122,125,0): 30, 15, 34, (122,126,0): 31, 16, 35, (122,127,0): 31, 17, 34, (122,128,0): 34, 18, 31, (122,129,0): 34, 18, 29, (122,130,0): 33, 17, 28, (122,131,0): 33, 17, 28, (122,132,0): 33, 17, 28, (122,133,0): 35, 19, 30, (122,134,0): 36, 20, 31, (122,135,0): 37, 21, 32, (122,136,0): 37, 21, 32, (122,137,0): 37, 21, 32, (122,138,0): 37, 21, 32, (122,139,0): 36, 20, 31, (122,140,0): 36, 20, 31, (122,141,0): 35, 19, 30, (122,142,0): 35, 19, 30, (122,143,0): 35, 19, 30, (122,144,0): 36, 20, 31, (122,145,0): 36, 20, 31, (122,146,0): 37, 21, 32, (122,147,0): 37, 21, 32, (122,148,0): 38, 22, 33, (122,149,0): 38, 22, 33, (122,150,0): 39, 23, 34, (122,151,0): 39, 23, 34, (122,152,0): 38, 22, 33, (122,153,0): 38, 22, 33, (122,154,0): 38, 22, 33, (122,155,0): 39, 23, 34, (122,156,0): 39, 23, 34, (122,157,0): 40, 24, 35, (122,158,0): 40, 24, 35, (122,159,0): 40, 24, 35, (122,160,0): 40, 23, 33, (122,161,0): 40, 23, 33, (122,162,0): 40, 23, 33, (122,163,0): 40, 23, 33, (122,164,0): 40, 23, 33, (122,165,0): 40, 23, 33, (122,166,0): 40, 23, 33, (122,167,0): 40, 23, 33, (122,168,0): 39, 22, 32, (122,169,0): 39, 22, 32, (122,170,0): 39, 22, 32, (122,171,0): 39, 22, 32, (122,172,0): 39, 22, 32, (122,173,0): 39, 22, 32, (122,174,0): 39, 22, 32, (122,175,0): 39, 22, 32, (122,176,0): 42, 22, 31, (122,177,0): 42, 22, 31, (122,178,0): 42, 22, 31, (122,179,0): 42, 22, 31, (122,180,0): 42, 22, 31, (122,181,0): 42, 22, 31, (122,182,0): 42, 22, 31, (122,183,0): 42, 22, 31, (122,184,0): 44, 24, 33, (122,185,0): 44, 24, 33, (122,186,0): 44, 24, 33, (122,187,0): 44, 24, 33, (122,188,0): 44, 24, 33, (122,189,0): 44, 24, 33, (122,190,0): 44, 24, 33, (122,191,0): 44, 24, 33, (122,192,0): 44, 23, 30, (122,193,0): 45, 22, 28, (122,194,0): 46, 23, 29, (122,195,0): 47, 24, 30, (122,196,0): 48, 25, 31, (122,197,0): 49, 27, 30, (122,198,0): 52, 27, 31, (122,199,0): 52, 27, 31, (122,200,0): 52, 26, 29, (122,201,0): 53, 27, 30, (122,202,0): 55, 26, 30, (122,203,0): 55, 26, 28, (122,204,0): 56, 27, 29, (122,205,0): 57, 28, 30, (122,206,0): 57, 29, 28, (122,207,0): 55, 29, 30, (122,208,0): 55, 30, 33, (122,209,0): 53, 31, 34, (122,210,0): 52, 30, 32, (122,211,0): 52, 30, 32, (122,212,0): 51, 29, 31, (122,213,0): 51, 29, 31, (122,214,0): 50, 29, 28, (122,215,0): 50, 29, 28, (122,216,0): 52, 31, 30, (122,217,0): 53, 32, 29, (122,218,0): 53, 32, 29, (122,219,0): 53, 32, 29, (122,220,0): 54, 33, 28, (122,221,0): 55, 34, 29, (122,222,0): 55, 34, 29, (122,223,0): 57, 33, 29, (122,224,0): 59, 31, 27, (122,225,0): 60, 31, 25, (122,226,0): 60, 31, 25, (122,227,0): 61, 32, 26, (122,228,0): 61, 32, 26, (122,229,0): 62, 33, 27, (122,230,0): 62, 33, 27, (122,231,0): 63, 34, 28, (122,232,0): 62, 33, 27, (122,233,0): 62, 33, 27, (122,234,0): 61, 32, 26, (122,235,0): 61, 32, 26, (122,236,0): 60, 31, 25, (122,237,0): 60, 31, 25, (122,238,0): 59, 30, 24, (122,239,0): 59, 30, 24, (122,240,0): 61, 32, 26, (122,241,0): 61, 32, 26, (122,242,0): 61, 32, 26, (122,243,0): 61, 32, 26, (122,244,0): 61, 32, 26, (122,245,0): 61, 32, 26, (122,246,0): 61, 32, 26, (122,247,0): 61, 32, 26, (122,248,0): 61, 32, 26, (122,249,0): 61, 32, 26, (122,250,0): 61, 32, 26, (122,251,0): 61, 32, 26, (122,252,0): 61, 32, 26, (122,253,0): 61, 32, 26, (122,254,0): 61, 32, 26, (122,255,0): 61, 32, 26, (122,256,0): 66, 36, 28, (122,257,0): 66, 36, 26, (122,258,0): 66, 36, 26, (122,259,0): 66, 36, 26, (122,260,0): 66, 36, 26, (122,261,0): 66, 36, 26, (122,262,0): 66, 36, 26, (122,263,0): 66, 36, 26, (122,264,0): 66, 36, 26, (122,265,0): 66, 36, 26, (122,266,0): 66, 36, 26, (122,267,0): 66, 36, 26, (122,268,0): 66, 36, 26, (122,269,0): 66, 36, 26, (122,270,0): 66, 36, 26, (122,271,0): 66, 36, 26, (122,272,0): 69, 35, 26, (122,273,0): 69, 35, 26, (122,274,0): 70, 36, 27, (122,275,0): 70, 36, 27, (122,276,0): 71, 37, 28, (122,277,0): 71, 37, 28, (122,278,0): 72, 38, 29, (122,279,0): 72, 38, 29, (122,280,0): 75, 41, 32, (122,281,0): 75, 41, 32, (122,282,0): 74, 40, 31, (122,283,0): 75, 41, 32, (122,284,0): 76, 42, 33, (122,285,0): 78, 44, 35, (122,286,0): 79, 45, 36, (122,287,0): 81, 47, 38, (122,288,0): 82, 48, 39, (122,289,0): 83, 49, 39, (122,290,0): 84, 52, 39, (122,291,0): 86, 55, 37, (122,292,0): 87, 58, 40, (122,293,0): 89, 61, 40, (122,294,0): 93, 62, 41, (122,295,0): 94, 63, 42, (122,296,0): 95, 63, 42, (122,297,0): 100, 65, 43, (122,298,0): 105, 69, 45, (122,299,0): 114, 75, 46, (122,300,0): 122, 81, 49, (122,301,0): 130, 88, 50, (122,302,0): 136, 93, 50, (122,303,0): 139, 96, 43, (122,304,0): 156, 109, 39, (122,305,0): 177, 130, 52, (122,306,0): 182, 136, 58, (122,307,0): 177, 131, 53, (122,308,0): 177, 134, 56, (122,309,0): 175, 134, 55, (122,310,0): 175, 134, 55, (122,311,0): 178, 141, 63, (122,312,0): 178, 142, 64, (122,313,0): 176, 144, 67, (122,314,0): 177, 145, 68, (122,315,0): 177, 148, 72, (122,316,0): 177, 150, 73, (122,317,0): 177, 150, 73, (122,318,0): 175, 149, 72, (122,319,0): 175, 149, 75, (122,320,0): 169, 140, 72, (122,321,0): 169, 140, 74, (122,322,0): 169, 142, 75, (122,323,0): 171, 144, 77, (122,324,0): 172, 144, 79, (122,325,0): 173, 145, 80, (122,326,0): 172, 147, 83, (122,327,0): 173, 147, 86, (122,328,0): 172, 148, 88, (122,329,0): 172, 148, 88, (122,330,0): 171, 146, 89, (122,331,0): 170, 145, 89, (122,332,0): 166, 143, 89, (122,333,0): 164, 141, 87, (122,334,0): 161, 138, 84, (122,335,0): 162, 137, 83, (122,336,0): 157, 127, 77, (122,337,0): 159, 127, 78, (122,338,0): 160, 128, 79, (122,339,0): 162, 130, 81, (122,340,0): 164, 132, 83, (122,341,0): 169, 135, 87, (122,342,0): 171, 137, 89, (122,343,0): 173, 139, 91, (122,344,0): 170, 134, 86, (122,345,0): 171, 135, 87, (122,346,0): 172, 136, 88, (122,347,0): 176, 138, 91, (122,348,0): 178, 140, 93, (122,349,0): 181, 143, 96, (122,350,0): 182, 144, 97, (122,351,0): 186, 144, 96, (122,352,0): 193, 143, 94, (122,353,0): 197, 144, 94, (122,354,0): 200, 147, 97, (122,355,0): 205, 149, 100, (122,356,0): 209, 151, 101, (122,357,0): 213, 153, 101, (122,358,0): 215, 154, 100, (122,359,0): 216, 153, 99, (122,360,0): 225, 160, 104, (122,361,0): 228, 162, 102, (122,362,0): 233, 165, 104, (122,363,0): 235, 165, 103, (122,364,0): 235, 164, 102, (122,365,0): 238, 164, 101, (122,366,0): 240, 166, 103, (122,367,0): 243, 170, 102, (122,368,0): 243, 175, 100, (122,369,0): 245, 180, 100, (122,370,0): 250, 185, 103, (122,371,0): 253, 191, 108, (122,372,0): 255, 193, 110, (122,373,0): 255, 194, 111, (122,374,0): 254, 193, 110, (122,375,0): 253, 192, 109, (122,376,0): 249, 188, 105, (122,377,0): 248, 190, 108, (122,378,0): 248, 189, 109, (122,379,0): 244, 187, 108, (122,380,0): 240, 182, 108, (122,381,0): 238, 180, 107, (122,382,0): 239, 180, 110, (122,383,0): 240, 184, 110, (122,384,0): 247, 192, 112, (122,385,0): 247, 195, 112, (122,386,0): 251, 198, 118, (122,387,0): 253, 202, 121, (122,388,0): 252, 201, 122, (122,389,0): 247, 198, 119, (122,390,0): 242, 194, 118, (122,391,0): 238, 192, 117, (122,392,0): 231, 184, 112, (122,393,0): 227, 183, 112, (122,394,0): 225, 180, 112, (122,395,0): 222, 179, 111, (122,396,0): 220, 180, 111, (122,397,0): 219, 180, 113, (122,398,0): 219, 180, 113, (122,399,0): 219, 180, 115, (122,400,0): 217, 179, 114, (122,401,0): 217, 179, 114, (122,402,0): 215, 180, 112, (122,403,0): 214, 181, 112, (122,404,0): 215, 182, 113, (122,405,0): 213, 183, 113, (122,406,0): 213, 185, 112, (122,407,0): 213, 185, 112, (122,408,0): 218, 190, 116, (122,409,0): 217, 189, 115, (122,410,0): 218, 188, 115, (122,411,0): 218, 188, 115, (122,412,0): 223, 189, 115, (122,413,0): 224, 190, 116, (122,414,0): 228, 192, 118, (122,415,0): 230, 194, 118, (122,416,0): 231, 196, 115, (122,417,0): 232, 197, 115, (122,418,0): 233, 198, 114, (122,419,0): 235, 201, 114, (122,420,0): 238, 204, 115, (122,421,0): 242, 208, 118, (122,422,0): 245, 212, 119, (122,423,0): 247, 214, 119, (122,424,0): 255, 222, 127, (122,425,0): 253, 220, 123, (122,426,0): 250, 217, 122, (122,427,0): 246, 213, 118, (122,428,0): 242, 209, 116, (122,429,0): 240, 207, 114, (122,430,0): 238, 204, 114, (122,431,0): 235, 204, 113, (122,432,0): 234, 204, 114, (122,433,0): 228, 201, 110, (122,434,0): 224, 197, 106, (122,435,0): 223, 197, 104, (122,436,0): 227, 198, 106, (122,437,0): 230, 201, 109, (122,438,0): 232, 203, 109, (122,439,0): 232, 203, 109, (122,440,0): 238, 207, 114, (122,441,0): 239, 208, 115, (122,442,0): 242, 209, 114, (122,443,0): 244, 211, 116, (122,444,0): 243, 210, 115, (122,445,0): 240, 207, 110, (122,446,0): 234, 200, 103, (122,447,0): 229, 195, 98, (122,448,0): 227, 192, 98, (122,449,0): 224, 191, 96, (122,450,0): 223, 189, 99, (122,451,0): 221, 190, 100, (122,452,0): 221, 189, 104, (122,453,0): 218, 187, 105, (122,454,0): 211, 182, 106, (122,455,0): 205, 179, 105, (122,456,0): 189, 164, 97, (122,457,0): 179, 155, 91, (122,458,0): 166, 144, 86, (122,459,0): 159, 138, 83, (122,460,0): 155, 135, 84, (122,461,0): 149, 131, 81, (122,462,0): 143, 125, 77, (122,463,0): 137, 118, 75, (122,464,0): 133, 111, 70, (122,465,0): 133, 109, 71, (122,466,0): 131, 107, 69, (122,467,0): 130, 106, 68, (122,468,0): 132, 108, 70, (122,469,0): 135, 111, 73, (122,470,0): 140, 116, 78, (122,471,0): 143, 119, 81, (122,472,0): 137, 113, 75, (122,473,0): 137, 113, 75, (122,474,0): 139, 115, 77, (122,475,0): 140, 116, 78, (122,476,0): 140, 116, 78, (122,477,0): 140, 116, 78, (122,478,0): 139, 115, 77, (122,479,0): 138, 116, 77, (122,480,0): 138, 116, 77, (122,481,0): 136, 117, 77, (122,482,0): 135, 115, 78, (122,483,0): 135, 116, 76, (122,484,0): 133, 115, 77, (122,485,0): 133, 115, 75, (122,486,0): 133, 115, 77, (122,487,0): 132, 114, 74, (122,488,0): 133, 118, 79, (122,489,0): 135, 120, 79, (122,490,0): 135, 121, 82, (122,491,0): 133, 120, 78, (122,492,0): 130, 116, 77, (122,493,0): 127, 114, 72, (122,494,0): 125, 113, 73, (122,495,0): 125, 113, 73, (122,496,0): 122, 106, 70, (122,497,0): 121, 105, 69, (122,498,0): 119, 103, 67, (122,499,0): 117, 101, 65, (122,500,0): 117, 101, 65, (122,501,0): 119, 103, 67, (122,502,0): 121, 105, 69, (122,503,0): 122, 106, 70, (122,504,0): 129, 113, 77, (122,505,0): 129, 113, 77, (122,506,0): 129, 113, 77, (122,507,0): 128, 112, 76, (122,508,0): 128, 112, 76, (122,509,0): 127, 111, 75, (122,510,0): 127, 111, 75, (122,511,0): 127, 111, 77, (122,512,0): 130, 111, 79, (122,513,0): 131, 112, 82, (122,514,0): 131, 112, 82, (122,515,0): 131, 112, 82, (122,516,0): 131, 112, 82, (122,517,0): 132, 113, 83, (122,518,0): 132, 113, 83, (122,519,0): 132, 113, 83, (122,520,0): 132, 113, 83, (122,521,0): 132, 113, 83, (122,522,0): 133, 114, 84, (122,523,0): 132, 113, 83, (122,524,0): 131, 112, 82, (122,525,0): 130, 111, 81, (122,526,0): 128, 109, 79, (122,527,0): 126, 107, 77, (122,528,0): 122, 103, 73, (122,529,0): 121, 102, 72, (122,530,0): 120, 101, 71, (122,531,0): 117, 98, 68, (122,532,0): 115, 95, 68, (122,533,0): 112, 92, 65, (122,534,0): 111, 91, 64, (122,535,0): 110, 90, 63, (122,536,0): 109, 89, 64, (122,537,0): 110, 90, 65, (122,538,0): 112, 92, 68, (122,539,0): 113, 93, 69, (122,540,0): 113, 93, 69, (122,541,0): 113, 93, 69, (122,542,0): 112, 91, 70, (122,543,0): 112, 90, 69, (122,544,0): 113, 87, 72, (122,545,0): 112, 86, 71, (122,546,0): 112, 85, 68, (122,547,0): 109, 83, 66, (122,548,0): 107, 80, 61, (122,549,0): 105, 80, 60, (122,550,0): 104, 77, 58, (122,551,0): 102, 77, 57, (122,552,0): 106, 79, 60, (122,553,0): 104, 79, 59, (122,554,0): 103, 75, 61, (122,555,0): 100, 74, 61, (122,556,0): 99, 71, 60, (122,557,0): 96, 69, 60, (122,558,0): 96, 67, 61, (122,559,0): 94, 67, 60, (122,560,0): 84, 59, 55, (122,561,0): 83, 59, 57, (122,562,0): 83, 59, 57, (122,563,0): 83, 59, 57, (122,564,0): 85, 61, 59, (122,565,0): 84, 63, 60, (122,566,0): 86, 65, 62, (122,567,0): 88, 67, 64, (122,568,0): 88, 69, 65, (122,569,0): 87, 68, 64, (122,570,0): 85, 66, 62, (122,571,0): 83, 65, 61, (122,572,0): 82, 64, 60, (122,573,0): 81, 63, 59, (122,574,0): 79, 64, 59, (122,575,0): 81, 63, 59, (122,576,0): 81, 62, 56, (122,577,0): 82, 61, 56, (122,578,0): 83, 62, 57, (122,579,0): 84, 63, 58, (122,580,0): 84, 63, 58, (122,581,0): 83, 62, 57, (122,582,0): 82, 61, 56, (122,583,0): 82, 61, 56, (122,584,0): 80, 59, 54, (122,585,0): 79, 58, 53, (122,586,0): 77, 56, 51, (122,587,0): 76, 55, 50, (122,588,0): 75, 54, 49, (122,589,0): 76, 55, 50, (122,590,0): 76, 55, 50, (122,591,0): 77, 56, 51, (122,592,0): 75, 54, 51, (122,593,0): 75, 54, 51, (122,594,0): 75, 54, 51, (122,595,0): 75, 54, 51, (122,596,0): 74, 53, 50, (122,597,0): 72, 51, 48, (122,598,0): 70, 49, 46, (122,599,0): 69, 48, 45, (123,0,0): 30, 31, 49, (123,1,0): 33, 32, 48, (123,2,0): 37, 33, 50, (123,3,0): 42, 34, 49, (123,4,0): 47, 34, 51, (123,5,0): 52, 36, 49, (123,6,0): 58, 37, 52, (123,7,0): 60, 38, 51, (123,8,0): 57, 31, 44, (123,9,0): 52, 28, 41, (123,10,0): 47, 23, 37, (123,11,0): 41, 21, 33, (123,12,0): 38, 17, 32, (123,13,0): 35, 19, 32, (123,14,0): 36, 19, 35, (123,15,0): 35, 21, 36, (123,16,0): 33, 20, 38, (123,17,0): 32, 19, 37, (123,18,0): 31, 18, 35, (123,19,0): 31, 18, 35, (123,20,0): 31, 18, 35, (123,21,0): 33, 20, 37, (123,22,0): 36, 22, 37, (123,23,0): 37, 23, 38, (123,24,0): 39, 23, 36, (123,25,0): 40, 24, 37, (123,26,0): 43, 25, 39, (123,27,0): 44, 26, 40, (123,28,0): 45, 27, 39, (123,29,0): 44, 26, 38, (123,30,0): 44, 26, 38, (123,31,0): 43, 25, 37, (123,32,0): 46, 23, 41, (123,33,0): 47, 24, 42, (123,34,0): 47, 26, 43, (123,35,0): 48, 27, 44, (123,36,0): 48, 27, 44, (123,37,0): 47, 26, 43, (123,38,0): 44, 25, 44, (123,39,0): 43, 24, 43, (123,40,0): 43, 24, 44, (123,41,0): 42, 25, 44, (123,42,0): 42, 24, 46, (123,43,0): 42, 24, 46, (123,44,0): 40, 25, 46, (123,45,0): 40, 25, 46, (123,46,0): 40, 25, 46, (123,47,0): 40, 25, 46, (123,48,0): 42, 27, 46, (123,49,0): 42, 27, 46, (123,50,0): 42, 27, 46, (123,51,0): 42, 27, 46, (123,52,0): 42, 27, 46, (123,53,0): 42, 27, 46, (123,54,0): 42, 27, 46, (123,55,0): 42, 27, 46, (123,56,0): 39, 24, 43, (123,57,0): 39, 24, 43, (123,58,0): 38, 23, 42, (123,59,0): 38, 23, 42, (123,60,0): 37, 22, 41, (123,61,0): 37, 22, 41, (123,62,0): 37, 22, 41, (123,63,0): 36, 21, 40, (123,64,0): 37, 24, 44, (123,65,0): 35, 23, 43, (123,66,0): 35, 23, 43, (123,67,0): 33, 21, 41, (123,68,0): 32, 20, 40, (123,69,0): 31, 19, 39, (123,70,0): 31, 19, 39, (123,71,0): 30, 18, 38, (123,72,0): 29, 17, 37, (123,73,0): 29, 17, 37, (123,74,0): 29, 17, 37, (123,75,0): 29, 17, 37, (123,76,0): 29, 17, 37, (123,77,0): 29, 17, 37, (123,78,0): 29, 17, 37, (123,79,0): 29, 17, 37, (123,80,0): 25, 16, 33, (123,81,0): 26, 17, 34, (123,82,0): 27, 18, 35, (123,83,0): 28, 19, 36, (123,84,0): 27, 18, 35, (123,85,0): 26, 17, 34, (123,86,0): 25, 16, 33, (123,87,0): 24, 15, 32, (123,88,0): 25, 16, 33, (123,89,0): 25, 16, 33, (123,90,0): 25, 16, 33, (123,91,0): 24, 15, 32, (123,92,0): 23, 14, 31, (123,93,0): 23, 14, 31, (123,94,0): 23, 14, 31, (123,95,0): 22, 13, 30, (123,96,0): 21, 14, 32, (123,97,0): 19, 15, 32, (123,98,0): 18, 14, 31, (123,99,0): 18, 14, 31, (123,100,0): 17, 13, 30, (123,101,0): 17, 13, 30, (123,102,0): 16, 12, 29, (123,103,0): 16, 12, 29, (123,104,0): 16, 12, 29, (123,105,0): 16, 12, 29, (123,106,0): 16, 12, 29, (123,107,0): 16, 12, 29, (123,108,0): 16, 12, 29, (123,109,0): 16, 12, 29, (123,110,0): 16, 12, 29, (123,111,0): 16, 12, 29, (123,112,0): 20, 13, 29, (123,113,0): 20, 13, 29, (123,114,0): 21, 12, 29, (123,115,0): 22, 13, 30, (123,116,0): 22, 13, 30, (123,117,0): 23, 14, 31, (123,118,0): 25, 14, 31, (123,119,0): 26, 15, 32, (123,120,0): 27, 14, 32, (123,121,0): 27, 14, 32, (123,122,0): 28, 15, 33, (123,123,0): 28, 15, 33, (123,124,0): 30, 15, 34, (123,125,0): 30, 15, 34, (123,126,0): 31, 16, 35, (123,127,0): 31, 17, 34, (123,128,0): 34, 18, 31, (123,129,0): 34, 18, 29, (123,130,0): 33, 17, 28, (123,131,0): 33, 17, 28, (123,132,0): 33, 17, 28, (123,133,0): 35, 19, 30, (123,134,0): 36, 20, 31, (123,135,0): 37, 21, 32, (123,136,0): 37, 21, 32, (123,137,0): 37, 21, 32, (123,138,0): 37, 21, 32, (123,139,0): 36, 20, 31, (123,140,0): 36, 20, 31, (123,141,0): 35, 19, 30, (123,142,0): 35, 19, 30, (123,143,0): 35, 19, 30, (123,144,0): 36, 20, 31, (123,145,0): 36, 20, 31, (123,146,0): 37, 21, 32, (123,147,0): 37, 21, 32, (123,148,0): 38, 22, 33, (123,149,0): 38, 22, 33, (123,150,0): 39, 23, 34, (123,151,0): 39, 23, 34, (123,152,0): 38, 22, 33, (123,153,0): 38, 22, 33, (123,154,0): 38, 22, 33, (123,155,0): 39, 23, 34, (123,156,0): 39, 23, 34, (123,157,0): 40, 24, 35, (123,158,0): 40, 24, 35, (123,159,0): 40, 24, 35, (123,160,0): 40, 23, 33, (123,161,0): 40, 23, 33, (123,162,0): 40, 23, 33, (123,163,0): 40, 23, 33, (123,164,0): 40, 23, 33, (123,165,0): 40, 23, 33, (123,166,0): 40, 23, 33, (123,167,0): 40, 23, 33, (123,168,0): 39, 22, 32, (123,169,0): 39, 22, 32, (123,170,0): 39, 22, 32, (123,171,0): 39, 22, 32, (123,172,0): 39, 22, 32, (123,173,0): 39, 22, 32, (123,174,0): 39, 22, 32, (123,175,0): 39, 22, 32, (123,176,0): 42, 22, 31, (123,177,0): 42, 22, 31, (123,178,0): 42, 22, 31, (123,179,0): 42, 22, 31, (123,180,0): 42, 22, 31, (123,181,0): 42, 22, 31, (123,182,0): 42, 22, 31, (123,183,0): 42, 22, 31, (123,184,0): 44, 24, 33, (123,185,0): 44, 24, 33, (123,186,0): 44, 24, 33, (123,187,0): 44, 24, 33, (123,188,0): 44, 24, 33, (123,189,0): 44, 24, 33, (123,190,0): 44, 24, 33, (123,191,0): 45, 24, 31, (123,192,0): 45, 22, 28, (123,193,0): 46, 23, 29, (123,194,0): 47, 24, 30, (123,195,0): 48, 25, 31, (123,196,0): 49, 27, 30, (123,197,0): 50, 28, 31, (123,198,0): 53, 28, 32, (123,199,0): 53, 28, 31, (123,200,0): 53, 27, 30, (123,201,0): 53, 27, 30, (123,202,0): 55, 26, 28, (123,203,0): 56, 27, 29, (123,204,0): 56, 27, 29, (123,205,0): 57, 28, 30, (123,206,0): 57, 29, 28, (123,207,0): 56, 30, 31, (123,208,0): 55, 30, 33, (123,209,0): 53, 31, 34, (123,210,0): 52, 30, 32, (123,211,0): 52, 30, 32, (123,212,0): 51, 29, 31, (123,213,0): 51, 29, 31, (123,214,0): 50, 29, 28, (123,215,0): 50, 29, 28, (123,216,0): 53, 32, 29, (123,217,0): 53, 32, 29, (123,218,0): 53, 32, 29, (123,219,0): 54, 33, 30, (123,220,0): 54, 33, 28, (123,221,0): 55, 34, 29, (123,222,0): 55, 34, 29, (123,223,0): 58, 35, 29, (123,224,0): 59, 32, 25, (123,225,0): 61, 32, 26, (123,226,0): 61, 32, 26, (123,227,0): 61, 32, 26, (123,228,0): 62, 33, 27, (123,229,0): 63, 34, 28, (123,230,0): 63, 34, 28, (123,231,0): 63, 34, 28, (123,232,0): 62, 33, 27, (123,233,0): 62, 33, 27, (123,234,0): 61, 32, 26, (123,235,0): 61, 32, 26, (123,236,0): 60, 31, 25, (123,237,0): 60, 31, 25, (123,238,0): 59, 30, 24, (123,239,0): 59, 30, 24, (123,240,0): 61, 32, 26, (123,241,0): 61, 32, 26, (123,242,0): 61, 32, 26, (123,243,0): 61, 32, 26, (123,244,0): 61, 32, 26, (123,245,0): 61, 32, 26, (123,246,0): 61, 32, 26, (123,247,0): 61, 32, 26, (123,248,0): 62, 33, 27, (123,249,0): 62, 33, 27, (123,250,0): 62, 33, 27, (123,251,0): 62, 33, 27, (123,252,0): 62, 33, 27, (123,253,0): 62, 33, 27, (123,254,0): 62, 33, 27, (123,255,0): 62, 33, 25, (123,256,0): 66, 36, 28, (123,257,0): 66, 36, 26, (123,258,0): 66, 36, 26, (123,259,0): 66, 36, 26, (123,260,0): 66, 36, 26, (123,261,0): 66, 36, 26, (123,262,0): 66, 36, 26, (123,263,0): 66, 36, 26, (123,264,0): 66, 36, 26, (123,265,0): 66, 36, 26, (123,266,0): 66, 36, 26, (123,267,0): 66, 36, 26, (123,268,0): 66, 36, 26, (123,269,0): 66, 36, 26, (123,270,0): 66, 36, 26, (123,271,0): 66, 36, 26, (123,272,0): 69, 35, 26, (123,273,0): 69, 35, 26, (123,274,0): 70, 36, 27, (123,275,0): 70, 36, 27, (123,276,0): 71, 37, 28, (123,277,0): 71, 37, 28, (123,278,0): 72, 38, 29, (123,279,0): 72, 38, 29, (123,280,0): 75, 41, 32, (123,281,0): 75, 41, 32, (123,282,0): 74, 40, 31, (123,283,0): 75, 41, 32, (123,284,0): 76, 42, 33, (123,285,0): 78, 44, 35, (123,286,0): 79, 45, 36, (123,287,0): 81, 47, 38, (123,288,0): 82, 48, 39, (123,289,0): 83, 49, 39, (123,290,0): 84, 52, 39, (123,291,0): 86, 55, 37, (123,292,0): 87, 58, 40, (123,293,0): 89, 61, 40, (123,294,0): 93, 62, 41, (123,295,0): 94, 63, 42, (123,296,0): 96, 64, 43, (123,297,0): 100, 65, 43, (123,298,0): 105, 69, 45, (123,299,0): 113, 74, 45, (123,300,0): 121, 80, 48, (123,301,0): 129, 87, 49, (123,302,0): 135, 92, 49, (123,303,0): 139, 96, 43, (123,304,0): 153, 105, 39, (123,305,0): 174, 126, 52, (123,306,0): 179, 133, 58, (123,307,0): 175, 129, 54, (123,308,0): 175, 131, 58, (123,309,0): 172, 130, 56, (123,310,0): 171, 129, 55, (123,311,0): 174, 136, 61, (123,312,0): 174, 138, 64, (123,313,0): 171, 139, 64, (123,314,0): 173, 141, 66, (123,315,0): 172, 143, 67, (123,316,0): 173, 145, 71, (123,317,0): 174, 146, 72, (123,318,0): 173, 147, 72, (123,319,0): 173, 147, 73, (123,320,0): 168, 139, 71, (123,321,0): 169, 140, 74, (123,322,0): 170, 143, 76, (123,323,0): 171, 144, 77, (123,324,0): 173, 145, 80, (123,325,0): 175, 147, 84, (123,326,0): 174, 148, 87, (123,327,0): 175, 149, 88, (123,328,0): 171, 147, 87, (123,329,0): 170, 145, 88, (123,330,0): 169, 144, 88, (123,331,0): 167, 142, 86, (123,332,0): 163, 140, 86, (123,333,0): 160, 137, 83, (123,334,0): 158, 135, 81, (123,335,0): 159, 134, 80, (123,336,0): 159, 129, 79, (123,337,0): 161, 129, 80, (123,338,0): 162, 130, 81, (123,339,0): 164, 132, 83, (123,340,0): 167, 133, 85, (123,341,0): 170, 136, 88, (123,342,0): 172, 138, 90, (123,343,0): 173, 139, 91, (123,344,0): 171, 135, 87, (123,345,0): 172, 136, 88, (123,346,0): 175, 137, 90, (123,347,0): 178, 140, 93, (123,348,0): 181, 143, 96, (123,349,0): 184, 146, 99, (123,350,0): 188, 147, 101, (123,351,0): 191, 147, 100, (123,352,0): 199, 145, 98, (123,353,0): 203, 145, 95, (123,354,0): 206, 148, 100, (123,355,0): 208, 150, 100, (123,356,0): 212, 152, 100, (123,357,0): 214, 153, 99, (123,358,0): 215, 152, 98, (123,359,0): 215, 152, 98, (123,360,0): 223, 158, 102, (123,361,0): 226, 160, 102, (123,362,0): 231, 162, 103, (123,363,0): 231, 163, 102, (123,364,0): 231, 161, 101, (123,365,0): 232, 162, 100, (123,366,0): 235, 164, 102, (123,367,0): 237, 168, 101, (123,368,0): 240, 176, 102, (123,369,0): 243, 182, 102, (123,370,0): 248, 187, 106, (123,371,0): 254, 193, 112, (123,372,0): 255, 195, 114, (123,373,0): 254, 196, 114, (123,374,0): 252, 194, 112, (123,375,0): 249, 193, 110, (123,376,0): 247, 191, 108, (123,377,0): 247, 190, 109, (123,378,0): 246, 189, 110, (123,379,0): 241, 185, 108, (123,380,0): 237, 181, 106, (123,381,0): 234, 180, 106, (123,382,0): 236, 182, 110, (123,383,0): 239, 185, 111, (123,384,0): 244, 191, 111, (123,385,0): 247, 196, 113, (123,386,0): 252, 201, 120, (123,387,0): 253, 205, 123, (123,388,0): 253, 204, 125, (123,389,0): 248, 201, 123, (123,390,0): 242, 196, 119, (123,391,0): 237, 193, 118, (123,392,0): 226, 182, 109, (123,393,0): 222, 179, 110, (123,394,0): 219, 176, 108, (123,395,0): 216, 175, 109, (123,396,0): 217, 178, 111, (123,397,0): 218, 179, 114, (123,398,0): 219, 180, 115, (123,399,0): 217, 179, 114, (123,400,0): 216, 178, 113, (123,401,0): 214, 179, 113, (123,402,0): 213, 178, 110, (123,403,0): 212, 179, 110, (123,404,0): 211, 181, 111, (123,405,0): 211, 182, 112, (123,406,0): 212, 184, 111, (123,407,0): 213, 185, 112, (123,408,0): 216, 188, 115, (123,409,0): 215, 187, 113, (123,410,0): 216, 186, 113, (123,411,0): 217, 187, 114, (123,412,0): 220, 188, 113, (123,413,0): 224, 190, 116, (123,414,0): 228, 192, 118, (123,415,0): 229, 193, 117, (123,416,0): 232, 197, 116, (123,417,0): 232, 197, 113, (123,418,0): 234, 200, 113, (123,419,0): 236, 202, 113, (123,420,0): 240, 206, 116, (123,421,0): 244, 211, 118, (123,422,0): 247, 214, 119, (123,423,0): 249, 216, 119, (123,424,0): 255, 225, 128, (123,425,0): 255, 222, 125, (123,426,0): 249, 216, 121, (123,427,0): 244, 211, 116, (123,428,0): 240, 207, 114, (123,429,0): 238, 205, 112, (123,430,0): 237, 203, 113, (123,431,0): 236, 205, 114, (123,432,0): 237, 207, 117, (123,433,0): 231, 204, 113, (123,434,0): 226, 199, 108, (123,435,0): 222, 195, 104, (123,436,0): 224, 195, 103, (123,437,0): 227, 198, 106, (123,438,0): 231, 202, 110, (123,439,0): 233, 204, 110, (123,440,0): 237, 206, 113, (123,441,0): 239, 209, 113, (123,442,0): 244, 211, 116, (123,443,0): 246, 213, 118, (123,444,0): 246, 213, 116, (123,445,0): 242, 209, 112, (123,446,0): 237, 203, 106, (123,447,0): 233, 199, 102, (123,448,0): 226, 193, 98, (123,449,0): 222, 191, 98, (123,450,0): 221, 190, 99, (123,451,0): 220, 190, 100, (123,452,0): 221, 191, 105, (123,453,0): 216, 188, 105, (123,454,0): 210, 183, 106, (123,455,0): 204, 177, 106, (123,456,0): 187, 162, 95, (123,457,0): 175, 154, 91, (123,458,0): 165, 143, 85, (123,459,0): 158, 137, 82, (123,460,0): 155, 135, 84, (123,461,0): 151, 130, 83, (123,462,0): 143, 125, 79, (123,463,0): 138, 119, 76, (123,464,0): 135, 112, 71, (123,465,0): 134, 110, 72, (123,466,0): 133, 109, 71, (123,467,0): 132, 108, 70, (123,468,0): 134, 110, 72, (123,469,0): 137, 113, 75, (123,470,0): 141, 117, 79, (123,471,0): 143, 119, 81, (123,472,0): 138, 114, 76, (123,473,0): 140, 116, 78, (123,474,0): 143, 119, 81, (123,475,0): 146, 122, 84, (123,476,0): 147, 123, 85, (123,477,0): 147, 123, 85, (123,478,0): 145, 121, 83, (123,479,0): 143, 121, 82, (123,480,0): 141, 119, 80, (123,481,0): 139, 120, 80, (123,482,0): 138, 119, 79, (123,483,0): 137, 118, 78, (123,484,0): 136, 118, 78, (123,485,0): 136, 118, 78, (123,486,0): 137, 119, 79, (123,487,0): 138, 120, 80, (123,488,0): 137, 122, 81, (123,489,0): 138, 123, 82, (123,490,0): 137, 124, 82, (123,491,0): 136, 123, 81, (123,492,0): 134, 121, 79, (123,493,0): 132, 119, 77, (123,494,0): 129, 117, 75, (123,495,0): 128, 116, 74, (123,496,0): 124, 109, 70, (123,497,0): 123, 107, 71, (123,498,0): 121, 105, 69, (123,499,0): 120, 104, 68, (123,500,0): 120, 104, 68, (123,501,0): 121, 105, 69, (123,502,0): 123, 107, 71, (123,503,0): 124, 108, 72, (123,504,0): 132, 116, 80, (123,505,0): 131, 115, 79, (123,506,0): 131, 115, 79, (123,507,0): 130, 114, 78, (123,508,0): 128, 112, 76, (123,509,0): 127, 111, 75, (123,510,0): 126, 110, 74, (123,511,0): 126, 110, 76, (123,512,0): 130, 111, 79, (123,513,0): 130, 111, 81, (123,514,0): 130, 111, 81, (123,515,0): 131, 112, 82, (123,516,0): 132, 113, 83, (123,517,0): 133, 114, 84, (123,518,0): 133, 114, 84, (123,519,0): 134, 115, 85, (123,520,0): 133, 114, 84, (123,521,0): 133, 114, 84, (123,522,0): 133, 114, 84, (123,523,0): 133, 114, 84, (123,524,0): 132, 113, 83, (123,525,0): 130, 111, 81, (123,526,0): 128, 109, 79, (123,527,0): 127, 108, 78, (123,528,0): 122, 103, 73, (123,529,0): 121, 102, 72, (123,530,0): 119, 100, 70, (123,531,0): 116, 97, 67, (123,532,0): 113, 93, 66, (123,533,0): 110, 90, 63, (123,534,0): 108, 88, 61, (123,535,0): 107, 87, 60, (123,536,0): 105, 85, 60, (123,537,0): 107, 87, 62, (123,538,0): 108, 88, 64, (123,539,0): 110, 90, 66, (123,540,0): 111, 91, 67, (123,541,0): 111, 91, 67, (123,542,0): 110, 89, 68, (123,543,0): 111, 88, 70, (123,544,0): 109, 86, 70, (123,545,0): 108, 85, 69, (123,546,0): 109, 83, 68, (123,547,0): 105, 82, 64, (123,548,0): 106, 80, 63, (123,549,0): 102, 80, 59, (123,550,0): 103, 78, 58, (123,551,0): 100, 78, 57, (123,552,0): 104, 79, 59, (123,553,0): 101, 78, 60, (123,554,0): 102, 76, 61, (123,555,0): 98, 75, 61, (123,556,0): 98, 71, 60, (123,557,0): 94, 70, 60, (123,558,0): 94, 67, 60, (123,559,0): 91, 66, 61, (123,560,0): 81, 57, 53, (123,561,0): 81, 57, 55, (123,562,0): 81, 57, 55, (123,563,0): 81, 57, 55, (123,564,0): 80, 59, 56, (123,565,0): 82, 61, 58, (123,566,0): 84, 63, 60, (123,567,0): 84, 65, 61, (123,568,0): 87, 68, 64, (123,569,0): 85, 66, 62, (123,570,0): 82, 64, 60, (123,571,0): 80, 62, 58, (123,572,0): 79, 61, 57, (123,573,0): 80, 62, 58, (123,574,0): 79, 64, 59, (123,575,0): 82, 64, 60, (123,576,0): 81, 62, 56, (123,577,0): 82, 61, 56, (123,578,0): 82, 61, 56, (123,579,0): 83, 62, 57, (123,580,0): 83, 62, 57, (123,581,0): 82, 61, 56, (123,582,0): 82, 61, 56, (123,583,0): 82, 61, 56, (123,584,0): 80, 59, 54, (123,585,0): 79, 58, 53, (123,586,0): 77, 56, 51, (123,587,0): 76, 55, 50, (123,588,0): 75, 54, 49, (123,589,0): 76, 55, 50, (123,590,0): 76, 55, 50, (123,591,0): 77, 56, 51, (123,592,0): 74, 53, 50, (123,593,0): 75, 54, 51, (123,594,0): 75, 54, 51, (123,595,0): 75, 54, 51, (123,596,0): 74, 53, 50, (123,597,0): 72, 51, 48, (123,598,0): 70, 49, 46, (123,599,0): 69, 48, 45, (124,0,0): 30, 31, 49, (124,1,0): 33, 32, 48, (124,2,0): 36, 32, 49, (124,3,0): 42, 34, 49, (124,4,0): 48, 35, 52, (124,5,0): 54, 38, 51, (124,6,0): 58, 37, 52, (124,7,0): 59, 37, 50, (124,8,0): 53, 27, 40, (124,9,0): 49, 25, 38, (124,10,0): 45, 21, 35, (124,11,0): 39, 19, 31, (124,12,0): 37, 16, 31, (124,13,0): 34, 18, 31, (124,14,0): 36, 19, 35, (124,15,0): 35, 21, 36, (124,16,0): 33, 20, 38, (124,17,0): 33, 20, 38, (124,18,0): 32, 19, 36, (124,19,0): 32, 19, 36, (124,20,0): 33, 20, 37, (124,21,0): 33, 20, 37, (124,22,0): 35, 21, 36, (124,23,0): 36, 22, 37, (124,24,0): 39, 23, 36, (124,25,0): 40, 24, 37, (124,26,0): 43, 25, 39, (124,27,0): 44, 26, 40, (124,28,0): 45, 27, 39, (124,29,0): 44, 26, 38, (124,30,0): 44, 26, 38, (124,31,0): 43, 25, 37, (124,32,0): 46, 23, 41, (124,33,0): 47, 24, 42, (124,34,0): 48, 25, 43, (124,35,0): 49, 26, 44, (124,36,0): 48, 27, 44, (124,37,0): 47, 26, 43, (124,38,0): 46, 25, 44, (124,39,0): 43, 24, 43, (124,40,0): 43, 24, 44, (124,41,0): 43, 24, 44, (124,42,0): 42, 24, 46, (124,43,0): 42, 24, 46, (124,44,0): 42, 24, 46, (124,45,0): 42, 24, 46, (124,46,0): 40, 25, 46, (124,47,0): 40, 25, 46, (124,48,0): 45, 28, 47, (124,49,0): 45, 28, 47, (124,50,0): 45, 28, 47, (124,51,0): 45, 28, 47, (124,52,0): 45, 28, 47, (124,53,0): 45, 28, 47, (124,54,0): 45, 28, 47, (124,55,0): 45, 28, 47, (124,56,0): 43, 26, 45, (124,57,0): 42, 25, 44, (124,58,0): 42, 25, 44, (124,59,0): 42, 25, 44, (124,60,0): 41, 24, 43, (124,61,0): 41, 24, 43, (124,62,0): 40, 23, 42, (124,63,0): 38, 23, 42, (124,64,0): 38, 25, 45, (124,65,0): 37, 24, 44, (124,66,0): 37, 24, 44, (124,67,0): 36, 23, 43, (124,68,0): 35, 22, 42, (124,69,0): 33, 20, 40, (124,70,0): 33, 20, 40, (124,71,0): 32, 19, 39, (124,72,0): 30, 17, 37, (124,73,0): 30, 17, 37, (124,74,0): 30, 17, 37, (124,75,0): 30, 17, 37, (124,76,0): 30, 17, 37, (124,77,0): 30, 17, 37, (124,78,0): 30, 17, 37, (124,79,0): 29, 17, 37, (124,80,0): 26, 17, 34, (124,81,0): 27, 18, 35, (124,82,0): 28, 19, 36, (124,83,0): 29, 20, 37, (124,84,0): 29, 20, 37, (124,85,0): 29, 20, 37, (124,86,0): 28, 19, 36, (124,87,0): 27, 18, 35, (124,88,0): 26, 17, 34, (124,89,0): 25, 16, 33, (124,90,0): 25, 16, 33, (124,91,0): 25, 16, 33, (124,92,0): 24, 15, 32, (124,93,0): 23, 14, 31, (124,94,0): 23, 14, 31, (124,95,0): 23, 14, 31, (124,96,0): 22, 15, 33, (124,97,0): 22, 15, 33, (124,98,0): 21, 14, 32, (124,99,0): 21, 14, 32, (124,100,0): 20, 13, 31, (124,101,0): 20, 13, 31, (124,102,0): 19, 12, 30, (124,103,0): 19, 12, 30, (124,104,0): 19, 12, 30, (124,105,0): 19, 12, 30, (124,106,0): 19, 12, 30, (124,107,0): 19, 12, 30, (124,108,0): 19, 12, 30, (124,109,0): 19, 12, 30, (124,110,0): 19, 12, 30, (124,111,0): 19, 12, 30, (124,112,0): 21, 12, 29, (124,113,0): 22, 13, 30, (124,114,0): 22, 13, 30, (124,115,0): 23, 14, 31, (124,116,0): 25, 14, 31, (124,117,0): 26, 15, 32, (124,118,0): 26, 15, 32, (124,119,0): 26, 15, 32, (124,120,0): 27, 14, 32, (124,121,0): 27, 14, 32, (124,122,0): 29, 14, 33, (124,123,0): 29, 14, 33, (124,124,0): 30, 15, 34, (124,125,0): 30, 15, 34, (124,126,0): 33, 16, 35, (124,127,0): 33, 16, 34, (124,128,0): 34, 18, 31, (124,129,0): 34, 18, 29, (124,130,0): 33, 17, 28, (124,131,0): 33, 17, 28, (124,132,0): 33, 17, 28, (124,133,0): 35, 19, 30, (124,134,0): 36, 20, 31, (124,135,0): 37, 21, 32, (124,136,0): 37, 21, 32, (124,137,0): 37, 21, 32, (124,138,0): 37, 21, 32, (124,139,0): 36, 20, 31, (124,140,0): 36, 20, 31, (124,141,0): 35, 19, 30, (124,142,0): 35, 19, 30, (124,143,0): 35, 19, 30, (124,144,0): 36, 20, 31, (124,145,0): 36, 20, 31, (124,146,0): 37, 21, 32, (124,147,0): 37, 21, 32, (124,148,0): 38, 22, 33, (124,149,0): 38, 22, 33, (124,150,0): 39, 23, 34, (124,151,0): 39, 23, 34, (124,152,0): 38, 22, 33, (124,153,0): 38, 22, 33, (124,154,0): 38, 22, 33, (124,155,0): 39, 23, 34, (124,156,0): 39, 23, 34, (124,157,0): 40, 24, 35, (124,158,0): 40, 24, 35, (124,159,0): 40, 24, 35, (124,160,0): 40, 23, 33, (124,161,0): 40, 23, 33, (124,162,0): 40, 23, 33, (124,163,0): 40, 23, 33, (124,164,0): 40, 23, 33, (124,165,0): 40, 23, 33, (124,166,0): 40, 23, 33, (124,167,0): 40, 23, 33, (124,168,0): 39, 22, 32, (124,169,0): 39, 22, 32, (124,170,0): 39, 22, 32, (124,171,0): 39, 22, 32, (124,172,0): 39, 22, 32, (124,173,0): 39, 22, 32, (124,174,0): 39, 22, 32, (124,175,0): 39, 22, 32, (124,176,0): 42, 22, 31, (124,177,0): 43, 22, 29, (124,178,0): 43, 22, 29, (124,179,0): 43, 22, 29, (124,180,0): 43, 22, 29, (124,181,0): 43, 22, 29, (124,182,0): 43, 22, 29, (124,183,0): 43, 22, 29, (124,184,0): 45, 24, 31, (124,185,0): 45, 24, 31, (124,186,0): 45, 24, 31, (124,187,0): 45, 24, 31, (124,188,0): 45, 24, 31, (124,189,0): 45, 24, 31, (124,190,0): 45, 24, 31, (124,191,0): 45, 24, 31, (124,192,0): 46, 23, 29, (124,193,0): 46, 23, 29, (124,194,0): 47, 25, 28, (124,195,0): 48, 26, 29, (124,196,0): 51, 26, 30, (124,197,0): 52, 27, 31, (124,198,0): 54, 28, 31, (124,199,0): 55, 29, 32, (124,200,0): 53, 27, 30, (124,201,0): 54, 28, 29, (124,202,0): 56, 27, 29, (124,203,0): 57, 28, 30, (124,204,0): 58, 28, 28, (124,205,0): 59, 29, 29, (124,206,0): 59, 29, 29, (124,207,0): 58, 29, 31, (124,208,0): 55, 30, 33, (124,209,0): 53, 31, 33, (124,210,0): 52, 30, 32, (124,211,0): 52, 30, 32, (124,212,0): 51, 30, 29, (124,213,0): 51, 30, 29, (124,214,0): 50, 29, 28, (124,215,0): 50, 29, 28, (124,216,0): 53, 32, 29, (124,217,0): 54, 33, 30, (124,218,0): 54, 33, 28, (124,219,0): 55, 34, 29, (124,220,0): 55, 34, 29, (124,221,0): 56, 35, 30, (124,222,0): 56, 36, 29, (124,223,0): 58, 35, 29, (124,224,0): 60, 33, 26, (124,225,0): 61, 32, 26, (124,226,0): 61, 32, 26, (124,227,0): 62, 33, 27, (124,228,0): 63, 34, 28, (124,229,0): 63, 34, 28, (124,230,0): 63, 34, 28, (124,231,0): 64, 35, 29, (124,232,0): 62, 33, 27, (124,233,0): 62, 33, 27, (124,234,0): 61, 32, 26, (124,235,0): 61, 32, 26, (124,236,0): 60, 31, 25, (124,237,0): 60, 31, 25, (124,238,0): 59, 30, 24, (124,239,0): 59, 30, 24, (124,240,0): 61, 32, 26, (124,241,0): 61, 32, 26, (124,242,0): 61, 32, 26, (124,243,0): 61, 32, 26, (124,244,0): 61, 32, 26, (124,245,0): 61, 32, 26, (124,246,0): 61, 32, 26, (124,247,0): 61, 32, 26, (124,248,0): 62, 33, 27, (124,249,0): 62, 33, 27, (124,250,0): 62, 33, 27, (124,251,0): 62, 33, 27, (124,252,0): 62, 33, 27, (124,253,0): 62, 33, 27, (124,254,0): 62, 33, 27, (124,255,0): 62, 33, 25, (124,256,0): 66, 36, 28, (124,257,0): 66, 36, 26, (124,258,0): 66, 36, 26, (124,259,0): 66, 36, 26, (124,260,0): 66, 36, 26, (124,261,0): 66, 36, 26, (124,262,0): 66, 36, 26, (124,263,0): 66, 36, 26, (124,264,0): 66, 36, 26, (124,265,0): 66, 36, 26, (124,266,0): 66, 36, 26, (124,267,0): 66, 36, 26, (124,268,0): 66, 36, 26, (124,269,0): 66, 36, 26, (124,270,0): 66, 36, 26, (124,271,0): 66, 36, 26, (124,272,0): 69, 35, 26, (124,273,0): 69, 35, 26, (124,274,0): 70, 36, 27, (124,275,0): 70, 36, 27, (124,276,0): 71, 37, 28, (124,277,0): 71, 37, 28, (124,278,0): 72, 38, 29, (124,279,0): 72, 38, 29, (124,280,0): 75, 41, 32, (124,281,0): 75, 41, 32, (124,282,0): 74, 40, 31, (124,283,0): 75, 41, 32, (124,284,0): 76, 42, 33, (124,285,0): 78, 44, 35, (124,286,0): 79, 45, 36, (124,287,0): 81, 47, 38, (124,288,0): 82, 48, 39, (124,289,0): 83, 49, 39, (124,290,0): 84, 52, 39, (124,291,0): 86, 55, 37, (124,292,0): 87, 58, 40, (124,293,0): 89, 61, 40, (124,294,0): 93, 62, 41, (124,295,0): 94, 63, 42, (124,296,0): 98, 66, 45, (124,297,0): 101, 66, 44, (124,298,0): 105, 69, 45, (124,299,0): 112, 73, 44, (124,300,0): 119, 78, 46, (124,301,0): 127, 85, 47, (124,302,0): 134, 91, 48, (124,303,0): 138, 95, 44, (124,304,0): 151, 103, 39, (124,305,0): 173, 124, 55, (124,306,0): 179, 132, 62, (124,307,0): 175, 128, 58, (124,308,0): 174, 130, 59, (124,309,0): 170, 128, 56, (124,310,0): 168, 126, 54, (124,311,0): 170, 132, 59, (124,312,0): 171, 134, 63, (124,313,0): 168, 136, 63, (124,314,0): 168, 136, 63, (124,315,0): 167, 137, 64, (124,316,0): 168, 140, 67, (124,317,0): 169, 141, 68, (124,318,0): 170, 144, 70, (124,319,0): 170, 143, 72, (124,320,0): 169, 140, 72, (124,321,0): 170, 141, 75, (124,322,0): 170, 142, 77, (124,323,0): 172, 144, 79, (124,324,0): 174, 146, 83, (124,325,0): 176, 148, 85, (124,326,0): 175, 149, 88, (124,327,0): 176, 150, 89, (124,328,0): 169, 145, 85, (124,329,0): 168, 143, 86, (124,330,0): 166, 141, 85, (124,331,0): 163, 138, 82, (124,332,0): 159, 136, 82, (124,333,0): 157, 134, 80, (124,334,0): 156, 133, 81, (124,335,0): 157, 131, 80, (124,336,0): 164, 132, 81, (124,337,0): 166, 133, 82, (124,338,0): 167, 134, 83, (124,339,0): 168, 135, 84, (124,340,0): 171, 135, 85, (124,341,0): 172, 136, 86, (124,342,0): 172, 136, 86, (124,343,0): 173, 137, 87, (124,344,0): 174, 136, 87, (124,345,0): 175, 137, 88, (124,346,0): 180, 140, 91, (124,347,0): 182, 142, 93, (124,348,0): 185, 145, 96, (124,349,0): 188, 148, 99, (124,350,0): 191, 149, 101, (124,351,0): 195, 149, 100, (124,352,0): 204, 148, 99, (124,353,0): 209, 149, 97, (124,354,0): 210, 150, 100, (124,355,0): 213, 151, 100, (124,356,0): 214, 152, 101, (124,357,0): 215, 152, 99, (124,358,0): 215, 152, 98, (124,359,0): 215, 152, 98, (124,360,0): 219, 154, 98, (124,361,0): 221, 156, 98, (124,362,0): 225, 159, 101, (124,363,0): 226, 160, 100, (124,364,0): 228, 159, 100, (124,365,0): 229, 160, 101, (124,366,0): 232, 163, 104, (124,367,0): 233, 168, 104, (124,368,0): 241, 178, 107, (124,369,0): 242, 183, 107, (124,370,0): 247, 188, 110, (124,371,0): 251, 194, 115, (124,372,0): 252, 195, 114, (124,373,0): 251, 194, 113, (124,374,0): 249, 192, 111, (124,375,0): 245, 190, 108, (124,376,0): 246, 191, 109, (124,377,0): 245, 193, 110, (124,378,0): 244, 191, 111, (124,379,0): 241, 188, 110, (124,380,0): 237, 184, 108, (124,381,0): 236, 184, 109, (124,382,0): 238, 186, 113, (124,383,0): 241, 189, 114, (124,384,0): 245, 194, 113, (124,385,0): 246, 198, 113, (124,386,0): 251, 203, 119, (124,387,0): 254, 206, 124, (124,388,0): 253, 204, 125, (124,389,0): 248, 201, 123, (124,390,0): 242, 196, 119, (124,391,0): 236, 192, 117, (124,392,0): 225, 181, 108, (124,393,0): 219, 176, 107, (124,394,0): 213, 173, 104, (124,395,0): 212, 173, 106, (124,396,0): 215, 176, 111, (124,397,0): 217, 179, 116, (124,398,0): 218, 180, 117, (124,399,0): 217, 179, 116, (124,400,0): 216, 178, 113, (124,401,0): 213, 178, 112, (124,402,0): 212, 177, 111, (124,403,0): 211, 178, 111, (124,404,0): 209, 179, 109, (124,405,0): 210, 181, 111, (124,406,0): 212, 183, 113, (124,407,0): 212, 186, 112, (124,408,0): 213, 187, 113, (124,409,0): 213, 187, 113, (124,410,0): 214, 186, 112, (124,411,0): 216, 186, 113, (124,412,0): 220, 188, 115, (124,413,0): 222, 190, 117, (124,414,0): 226, 192, 118, (124,415,0): 227, 194, 117, (124,416,0): 233, 198, 116, (124,417,0): 234, 199, 115, (124,418,0): 235, 201, 114, (124,419,0): 238, 204, 115, (124,420,0): 241, 207, 117, (124,421,0): 245, 212, 119, (124,422,0): 249, 216, 121, (124,423,0): 251, 218, 121, (124,424,0): 255, 225, 128, (124,425,0): 254, 222, 123, (124,426,0): 248, 215, 118, (124,427,0): 242, 209, 112, (124,428,0): 238, 205, 110, (124,429,0): 236, 203, 108, (124,430,0): 237, 204, 111, (124,431,0): 235, 204, 113, (124,432,0): 238, 208, 118, (124,433,0): 232, 205, 116, (124,434,0): 227, 200, 109, (124,435,0): 222, 195, 104, (124,436,0): 222, 192, 102, (124,437,0): 225, 196, 104, (124,438,0): 230, 201, 109, (124,439,0): 234, 205, 111, (124,440,0): 236, 205, 112, (124,441,0): 239, 209, 113, (124,442,0): 244, 211, 116, (124,443,0): 246, 213, 116, (124,444,0): 245, 212, 115, (124,445,0): 242, 209, 112, (124,446,0): 240, 206, 108, (124,447,0): 237, 203, 106, (124,448,0): 226, 193, 100, (124,449,0): 222, 191, 100, (124,450,0): 220, 189, 99, (124,451,0): 218, 188, 100, (124,452,0): 218, 187, 104, (124,453,0): 213, 184, 104, (124,454,0): 207, 179, 105, (124,455,0): 202, 175, 104, (124,456,0): 182, 157, 91, (124,457,0): 171, 149, 89, (124,458,0): 161, 139, 82, (124,459,0): 155, 134, 81, (124,460,0): 152, 132, 82, (124,461,0): 149, 128, 81, (124,462,0): 142, 124, 78, (124,463,0): 137, 118, 75, (124,464,0): 136, 113, 72, (124,465,0): 135, 112, 71, (124,466,0): 135, 112, 71, (124,467,0): 135, 112, 71, (124,468,0): 136, 113, 72, (124,469,0): 139, 116, 75, (124,470,0): 142, 119, 78, (124,471,0): 144, 121, 80, (124,472,0): 140, 117, 76, (124,473,0): 143, 120, 79, (124,474,0): 147, 124, 83, (124,475,0): 151, 128, 87, (124,476,0): 153, 130, 89, (124,477,0): 152, 129, 88, (124,478,0): 150, 127, 86, (124,479,0): 147, 125, 84, (124,480,0): 145, 123, 82, (124,481,0): 142, 123, 81, (124,482,0): 141, 122, 80, (124,483,0): 140, 121, 79, (124,484,0): 139, 122, 79, (124,485,0): 140, 123, 80, (124,486,0): 142, 125, 82, (124,487,0): 143, 126, 83, (124,488,0): 142, 127, 84, (124,489,0): 142, 127, 84, (124,490,0): 140, 127, 83, (124,491,0): 140, 127, 83, (124,492,0): 139, 126, 82, (124,493,0): 137, 124, 80, (124,494,0): 133, 122, 77, (124,495,0): 131, 119, 77, (124,496,0): 127, 112, 73, (124,497,0): 126, 110, 74, (124,498,0): 125, 109, 73, (124,499,0): 125, 109, 73, (124,500,0): 125, 109, 73, (124,501,0): 125, 109, 73, (124,502,0): 126, 110, 74, (124,503,0): 127, 111, 75, (124,504,0): 134, 118, 82, (124,505,0): 133, 117, 81, (124,506,0): 132, 116, 80, (124,507,0): 131, 115, 79, (124,508,0): 129, 113, 77, (124,509,0): 128, 112, 76, (124,510,0): 127, 111, 75, (124,511,0): 126, 110, 76, (124,512,0): 129, 110, 78, (124,513,0): 130, 109, 80, (124,514,0): 131, 110, 81, (124,515,0): 132, 111, 82, (124,516,0): 132, 111, 82, (124,517,0): 133, 112, 83, (124,518,0): 134, 113, 84, (124,519,0): 134, 113, 84, (124,520,0): 134, 113, 84, (124,521,0): 134, 113, 84, (124,522,0): 134, 113, 84, (124,523,0): 134, 113, 84, (124,524,0): 133, 112, 83, (124,525,0): 131, 110, 81, (124,526,0): 129, 108, 79, (124,527,0): 128, 107, 78, (124,528,0): 122, 101, 72, (124,529,0): 121, 100, 71, (124,530,0): 118, 97, 68, (124,531,0): 116, 95, 66, (124,532,0): 113, 92, 65, (124,533,0): 110, 89, 62, (124,534,0): 108, 87, 60, (124,535,0): 107, 86, 59, (124,536,0): 104, 82, 58, (124,537,0): 105, 83, 59, (124,538,0): 107, 85, 62, (124,539,0): 108, 86, 63, (124,540,0): 109, 87, 64, (124,541,0): 109, 87, 64, (124,542,0): 109, 87, 66, (124,543,0): 108, 85, 67, (124,544,0): 107, 84, 68, (124,545,0): 106, 85, 68, (124,546,0): 106, 83, 67, (124,547,0): 103, 82, 63, (124,548,0): 103, 80, 62, (124,549,0): 100, 79, 60, (124,550,0): 100, 78, 57, (124,551,0): 99, 78, 57, (124,552,0): 102, 79, 61, (124,553,0): 100, 79, 60, (124,554,0): 99, 76, 60, (124,555,0): 96, 74, 60, (124,556,0): 95, 71, 59, (124,557,0): 92, 70, 59, (124,558,0): 92, 67, 60, (124,559,0): 90, 67, 61, (124,560,0): 81, 57, 53, (124,561,0): 80, 56, 54, (124,562,0): 78, 57, 54, (124,563,0): 77, 56, 53, (124,564,0): 78, 57, 54, (124,565,0): 79, 58, 55, (124,566,0): 79, 60, 56, (124,567,0): 80, 61, 57, (124,568,0): 84, 65, 61, (124,569,0): 81, 63, 59, (124,570,0): 79, 61, 57, (124,571,0): 78, 60, 56, (124,572,0): 75, 60, 55, (124,573,0): 76, 61, 56, (124,574,0): 78, 63, 58, (124,575,0): 81, 63, 59, (124,576,0): 80, 61, 55, (124,577,0): 81, 60, 55, (124,578,0): 80, 59, 54, (124,579,0): 80, 59, 54, (124,580,0): 80, 59, 54, (124,581,0): 80, 59, 54, (124,582,0): 81, 60, 55, (124,583,0): 81, 60, 55, (124,584,0): 80, 59, 54, (124,585,0): 79, 58, 53, (124,586,0): 77, 56, 51, (124,587,0): 76, 55, 50, (124,588,0): 75, 54, 49, (124,589,0): 76, 55, 50, (124,590,0): 76, 55, 50, (124,591,0): 77, 56, 51, (124,592,0): 74, 53, 50, (124,593,0): 74, 53, 50, (124,594,0): 74, 53, 50, (124,595,0): 74, 53, 50, (124,596,0): 73, 52, 49, (124,597,0): 71, 50, 47, (124,598,0): 69, 48, 45, (124,599,0): 68, 47, 44, (125,0,0): 31, 32, 50, (125,1,0): 33, 32, 48, (125,2,0): 36, 32, 49, (125,3,0): 42, 34, 49, (125,4,0): 49, 36, 53, (125,5,0): 53, 37, 50, (125,6,0): 56, 35, 50, (125,7,0): 55, 33, 46, (125,8,0): 50, 24, 37, (125,9,0): 46, 22, 35, (125,10,0): 43, 19, 33, (125,11,0): 39, 19, 31, (125,12,0): 38, 17, 32, (125,13,0): 35, 19, 32, (125,14,0): 36, 19, 35, (125,15,0): 35, 21, 36, (125,16,0): 34, 21, 39, (125,17,0): 34, 21, 39, (125,18,0): 34, 21, 38, (125,19,0): 34, 21, 38, (125,20,0): 34, 21, 38, (125,21,0): 34, 21, 38, (125,22,0): 35, 21, 36, (125,23,0): 35, 21, 36, (125,24,0): 39, 23, 36, (125,25,0): 40, 24, 37, (125,26,0): 43, 25, 39, (125,27,0): 44, 26, 40, (125,28,0): 45, 27, 39, (125,29,0): 44, 26, 38, (125,30,0): 44, 26, 38, (125,31,0): 43, 25, 37, (125,32,0): 47, 24, 42, (125,33,0): 48, 25, 43, (125,34,0): 49, 26, 44, (125,35,0): 50, 27, 45, (125,36,0): 49, 28, 45, (125,37,0): 48, 27, 44, (125,38,0): 47, 26, 45, (125,39,0): 46, 25, 44, (125,40,0): 44, 25, 45, (125,41,0): 44, 25, 45, (125,42,0): 43, 25, 47, (125,43,0): 43, 25, 47, (125,44,0): 43, 25, 47, (125,45,0): 43, 25, 47, (125,46,0): 41, 26, 47, (125,47,0): 41, 26, 47, (125,48,0): 46, 29, 48, (125,49,0): 46, 29, 48, (125,50,0): 46, 29, 48, (125,51,0): 46, 29, 48, (125,52,0): 46, 29, 48, (125,53,0): 46, 29, 48, (125,54,0): 46, 29, 48, (125,55,0): 46, 29, 48, (125,56,0): 44, 27, 46, (125,57,0): 44, 27, 46, (125,58,0): 44, 27, 46, (125,59,0): 43, 26, 45, (125,60,0): 43, 26, 45, (125,61,0): 42, 25, 44, (125,62,0): 42, 25, 44, (125,63,0): 39, 24, 43, (125,64,0): 40, 25, 46, (125,65,0): 38, 25, 45, (125,66,0): 38, 25, 45, (125,67,0): 37, 24, 44, (125,68,0): 36, 23, 43, (125,69,0): 34, 21, 41, (125,70,0): 34, 21, 41, (125,71,0): 33, 20, 40, (125,72,0): 31, 18, 38, (125,73,0): 31, 18, 38, (125,74,0): 31, 18, 38, (125,75,0): 31, 18, 38, (125,76,0): 31, 18, 38, (125,77,0): 31, 18, 38, (125,78,0): 31, 18, 38, (125,79,0): 31, 18, 38, (125,80,0): 29, 18, 35, (125,81,0): 28, 19, 36, (125,82,0): 29, 20, 37, (125,83,0): 30, 21, 38, (125,84,0): 31, 22, 39, (125,85,0): 31, 22, 39, (125,86,0): 30, 21, 38, (125,87,0): 29, 20, 37, (125,88,0): 26, 17, 34, (125,89,0): 26, 17, 34, (125,90,0): 26, 17, 34, (125,91,0): 25, 16, 33, (125,92,0): 25, 16, 33, (125,93,0): 24, 15, 32, (125,94,0): 24, 15, 32, (125,95,0): 23, 14, 31, (125,96,0): 23, 16, 34, (125,97,0): 23, 16, 34, (125,98,0): 22, 15, 33, (125,99,0): 22, 15, 33, (125,100,0): 21, 14, 32, (125,101,0): 21, 14, 32, (125,102,0): 20, 13, 31, (125,103,0): 20, 13, 31, (125,104,0): 19, 12, 30, (125,105,0): 19, 12, 30, (125,106,0): 19, 12, 30, (125,107,0): 19, 12, 30, (125,108,0): 19, 12, 30, (125,109,0): 19, 12, 30, (125,110,0): 19, 12, 30, (125,111,0): 19, 12, 30, (125,112,0): 22, 13, 30, (125,113,0): 22, 13, 30, (125,114,0): 22, 13, 30, (125,115,0): 23, 14, 31, (125,116,0): 26, 15, 32, (125,117,0): 26, 15, 32, (125,118,0): 26, 15, 32, (125,119,0): 27, 16, 33, (125,120,0): 27, 14, 32, (125,121,0): 27, 14, 32, (125,122,0): 29, 14, 33, (125,123,0): 29, 14, 33, (125,124,0): 30, 15, 34, (125,125,0): 30, 15, 34, (125,126,0): 33, 16, 35, (125,127,0): 33, 16, 34, (125,128,0): 34, 18, 31, (125,129,0): 34, 18, 29, (125,130,0): 33, 17, 28, (125,131,0): 33, 17, 28, (125,132,0): 33, 17, 28, (125,133,0): 35, 19, 30, (125,134,0): 36, 20, 31, (125,135,0): 37, 21, 32, (125,136,0): 37, 21, 32, (125,137,0): 37, 21, 32, (125,138,0): 37, 21, 32, (125,139,0): 36, 20, 31, (125,140,0): 36, 20, 31, (125,141,0): 35, 19, 30, (125,142,0): 35, 19, 30, (125,143,0): 35, 19, 30, (125,144,0): 36, 20, 31, (125,145,0): 36, 20, 31, (125,146,0): 37, 21, 32, (125,147,0): 37, 21, 32, (125,148,0): 38, 22, 33, (125,149,0): 38, 22, 33, (125,150,0): 39, 23, 34, (125,151,0): 39, 23, 34, (125,152,0): 38, 22, 33, (125,153,0): 38, 22, 33, (125,154,0): 38, 22, 33, (125,155,0): 39, 23, 34, (125,156,0): 39, 23, 34, (125,157,0): 40, 24, 35, (125,158,0): 40, 24, 35, (125,159,0): 40, 24, 35, (125,160,0): 40, 23, 33, (125,161,0): 40, 23, 33, (125,162,0): 40, 23, 33, (125,163,0): 40, 23, 33, (125,164,0): 40, 23, 33, (125,165,0): 40, 23, 33, (125,166,0): 40, 23, 33, (125,167,0): 40, 23, 33, (125,168,0): 39, 22, 32, (125,169,0): 39, 22, 32, (125,170,0): 39, 22, 32, (125,171,0): 39, 22, 32, (125,172,0): 39, 22, 32, (125,173,0): 39, 22, 32, (125,174,0): 39, 22, 32, (125,175,0): 39, 22, 30, (125,176,0): 43, 22, 31, (125,177,0): 43, 22, 29, (125,178,0): 43, 22, 29, (125,179,0): 43, 22, 29, (125,180,0): 43, 22, 29, (125,181,0): 43, 22, 29, (125,182,0): 43, 22, 29, (125,183,0): 43, 22, 29, (125,184,0): 45, 24, 31, (125,185,0): 45, 24, 31, (125,186,0): 45, 24, 31, (125,187,0): 45, 24, 31, (125,188,0): 45, 24, 31, (125,189,0): 45, 24, 31, (125,190,0): 45, 24, 31, (125,191,0): 45, 24, 31, (125,192,0): 47, 24, 30, (125,193,0): 47, 24, 30, (125,194,0): 48, 26, 29, (125,195,0): 49, 27, 30, (125,196,0): 52, 27, 31, (125,197,0): 53, 28, 32, (125,198,0): 55, 29, 32, (125,199,0): 55, 29, 32, (125,200,0): 54, 28, 29, (125,201,0): 54, 28, 29, (125,202,0): 56, 27, 29, (125,203,0): 57, 28, 30, (125,204,0): 59, 29, 29, (125,205,0): 59, 29, 29, (125,206,0): 59, 29, 29, (125,207,0): 59, 31, 30, (125,208,0): 55, 30, 33, (125,209,0): 53, 31, 33, (125,210,0): 52, 30, 32, (125,211,0): 52, 30, 32, (125,212,0): 51, 30, 29, (125,213,0): 51, 30, 29, (125,214,0): 50, 29, 28, (125,215,0): 50, 29, 26, (125,216,0): 54, 33, 30, (125,217,0): 54, 33, 30, (125,218,0): 54, 33, 28, (125,219,0): 55, 34, 29, (125,220,0): 56, 35, 30, (125,221,0): 56, 35, 30, (125,222,0): 56, 36, 29, (125,223,0): 59, 36, 30, (125,224,0): 60, 33, 26, (125,225,0): 62, 33, 27, (125,226,0): 62, 33, 27, (125,227,0): 63, 34, 28, (125,228,0): 63, 34, 28, (125,229,0): 64, 35, 29, (125,230,0): 64, 35, 29, (125,231,0): 64, 35, 29, (125,232,0): 62, 33, 27, (125,233,0): 62, 33, 27, (125,234,0): 61, 32, 26, (125,235,0): 61, 32, 26, (125,236,0): 60, 31, 25, (125,237,0): 60, 31, 25, (125,238,0): 59, 30, 24, (125,239,0): 59, 30, 24, (125,240,0): 61, 32, 26, (125,241,0): 61, 32, 26, (125,242,0): 61, 32, 26, (125,243,0): 61, 32, 26, (125,244,0): 61, 32, 26, (125,245,0): 61, 32, 26, (125,246,0): 61, 32, 26, (125,247,0): 61, 32, 26, (125,248,0): 63, 34, 28, (125,249,0): 63, 34, 28, (125,250,0): 63, 34, 28, (125,251,0): 63, 34, 28, (125,252,0): 63, 34, 28, (125,253,0): 63, 34, 28, (125,254,0): 63, 34, 28, (125,255,0): 63, 34, 26, (125,256,0): 66, 36, 28, (125,257,0): 66, 36, 26, (125,258,0): 66, 36, 26, (125,259,0): 66, 36, 26, (125,260,0): 66, 36, 26, (125,261,0): 66, 36, 26, (125,262,0): 66, 36, 26, (125,263,0): 66, 36, 26, (125,264,0): 66, 36, 26, (125,265,0): 66, 36, 26, (125,266,0): 66, 36, 26, (125,267,0): 66, 36, 26, (125,268,0): 66, 36, 26, (125,269,0): 66, 36, 26, (125,270,0): 66, 36, 26, (125,271,0): 66, 36, 26, (125,272,0): 69, 35, 26, (125,273,0): 69, 35, 26, (125,274,0): 70, 36, 27, (125,275,0): 70, 36, 27, (125,276,0): 71, 37, 28, (125,277,0): 71, 37, 28, (125,278,0): 72, 38, 29, (125,279,0): 72, 38, 29, (125,280,0): 75, 41, 32, (125,281,0): 75, 41, 32, (125,282,0): 74, 40, 31, (125,283,0): 75, 41, 32, (125,284,0): 76, 42, 33, (125,285,0): 78, 44, 35, (125,286,0): 79, 45, 36, (125,287,0): 81, 47, 38, (125,288,0): 82, 48, 39, (125,289,0): 83, 49, 39, (125,290,0): 84, 52, 39, (125,291,0): 86, 55, 37, (125,292,0): 87, 58, 40, (125,293,0): 89, 61, 40, (125,294,0): 93, 62, 41, (125,295,0): 94, 63, 42, (125,296,0): 99, 67, 46, (125,297,0): 101, 66, 44, (125,298,0): 104, 68, 44, (125,299,0): 111, 72, 43, (125,300,0): 118, 77, 45, (125,301,0): 126, 84, 46, (125,302,0): 133, 90, 47, (125,303,0): 138, 95, 44, (125,304,0): 151, 103, 41, (125,305,0): 173, 124, 57, (125,306,0): 179, 131, 65, (125,307,0): 175, 128, 60, (125,308,0): 174, 129, 62, (125,309,0): 170, 127, 58, (125,310,0): 167, 124, 56, (125,311,0): 169, 130, 61, (125,312,0): 169, 132, 62, (125,313,0): 166, 133, 62, (125,314,0): 165, 132, 63, (125,315,0): 163, 133, 61, (125,316,0): 163, 134, 64, (125,317,0): 165, 136, 66, (125,318,0): 165, 138, 67, (125,319,0): 166, 139, 70, (125,320,0): 168, 139, 73, (125,321,0): 169, 140, 74, (125,322,0): 169, 141, 76, (125,323,0): 170, 142, 77, (125,324,0): 172, 144, 81, (125,325,0): 173, 145, 82, (125,326,0): 172, 146, 85, (125,327,0): 172, 146, 85, (125,328,0): 166, 141, 84, (125,329,0): 165, 140, 83, (125,330,0): 162, 137, 81, (125,331,0): 160, 135, 79, (125,332,0): 156, 133, 79, (125,333,0): 155, 132, 78, (125,334,0): 154, 131, 79, (125,335,0): 156, 130, 79, (125,336,0): 166, 134, 83, (125,337,0): 168, 135, 84, (125,338,0): 169, 136, 85, (125,339,0): 171, 138, 87, (125,340,0): 173, 137, 87, (125,341,0): 173, 137, 87, (125,342,0): 173, 137, 87, (125,343,0): 172, 136, 86, (125,344,0): 177, 139, 90, (125,345,0): 178, 140, 91, (125,346,0): 182, 142, 93, (125,347,0): 184, 144, 95, (125,348,0): 186, 146, 97, (125,349,0): 189, 149, 100, (125,350,0): 192, 150, 102, (125,351,0): 197, 149, 101, (125,352,0): 207, 149, 99, (125,353,0): 211, 149, 98, (125,354,0): 214, 151, 100, (125,355,0): 216, 153, 102, (125,356,0): 217, 154, 101, (125,357,0): 217, 154, 101, (125,358,0): 216, 153, 99, (125,359,0): 216, 153, 99, (125,360,0): 216, 151, 97, (125,361,0): 219, 154, 98, (125,362,0): 222, 157, 101, (125,363,0): 223, 158, 100, (125,364,0): 222, 157, 101, (125,365,0): 223, 158, 100, (125,366,0): 226, 161, 103, (125,367,0): 229, 165, 104, (125,368,0): 235, 176, 108, (125,369,0): 237, 180, 109, (125,370,0): 242, 184, 111, (125,371,0): 244, 188, 113, (125,372,0): 246, 190, 113, (125,373,0): 246, 191, 111, (125,374,0): 244, 189, 109, (125,375,0): 240, 188, 105, (125,376,0): 241, 189, 106, (125,377,0): 242, 191, 110, (125,378,0): 243, 192, 111, (125,379,0): 239, 190, 111, (125,380,0): 239, 187, 111, (125,381,0): 237, 188, 112, (125,382,0): 239, 190, 114, (125,383,0): 242, 193, 116, (125,384,0): 246, 198, 114, (125,385,0): 248, 200, 115, (125,386,0): 251, 203, 119, (125,387,0): 252, 206, 121, (125,388,0): 251, 204, 124, (125,389,0): 246, 200, 122, (125,390,0): 239, 196, 118, (125,391,0): 235, 191, 118, (125,392,0): 223, 181, 109, (125,393,0): 215, 175, 105, (125,394,0): 209, 170, 101, (125,395,0): 209, 170, 105, (125,396,0): 213, 175, 112, (125,397,0): 218, 180, 117, (125,398,0): 219, 181, 119, (125,399,0): 218, 180, 118, (125,400,0): 215, 180, 116, (125,401,0): 214, 179, 113, (125,402,0): 211, 178, 111, (125,403,0): 208, 177, 110, (125,404,0): 209, 179, 109, (125,405,0): 210, 181, 111, (125,406,0): 211, 184, 113, (125,407,0): 213, 186, 115, (125,408,0): 213, 187, 113, (125,409,0): 213, 187, 113, (125,410,0): 214, 186, 112, (125,411,0): 215, 187, 113, (125,412,0): 220, 188, 115, (125,413,0): 223, 191, 118, (125,414,0): 227, 193, 119, (125,415,0): 228, 195, 118, (125,416,0): 236, 201, 119, (125,417,0): 236, 202, 115, (125,418,0): 237, 203, 116, (125,419,0): 239, 205, 115, (125,420,0): 243, 209, 119, (125,421,0): 246, 213, 118, (125,422,0): 249, 216, 121, (125,423,0): 251, 218, 121, (125,424,0): 254, 222, 123, (125,425,0): 251, 219, 120, (125,426,0): 246, 213, 116, (125,427,0): 240, 207, 110, (125,428,0): 237, 204, 109, (125,429,0): 235, 202, 107, (125,430,0): 236, 203, 110, (125,431,0): 234, 203, 112, (125,432,0): 236, 206, 116, (125,433,0): 232, 205, 116, (125,434,0): 228, 201, 110, (125,435,0): 223, 196, 105, (125,436,0): 222, 192, 102, (125,437,0): 224, 194, 104, (125,438,0): 230, 201, 109, (125,439,0): 235, 206, 112, (125,440,0): 237, 206, 113, (125,441,0): 239, 209, 113, (125,442,0): 244, 211, 114, (125,443,0): 244, 211, 114, (125,444,0): 241, 208, 111, (125,445,0): 239, 206, 109, (125,446,0): 238, 204, 106, (125,447,0): 237, 204, 107, (125,448,0): 226, 195, 102, (125,449,0): 221, 191, 101, (125,450,0): 217, 187, 99, (125,451,0): 212, 185, 98, (125,452,0): 210, 182, 99, (125,453,0): 207, 180, 99, (125,454,0): 201, 175, 100, (125,455,0): 196, 172, 102, (125,456,0): 178, 154, 90, (125,457,0): 167, 145, 85, (125,458,0): 158, 136, 79, (125,459,0): 152, 131, 78, (125,460,0): 150, 130, 80, (125,461,0): 148, 127, 82, (125,462,0): 141, 122, 79, (125,463,0): 136, 117, 74, (125,464,0): 137, 114, 73, (125,465,0): 136, 113, 72, (125,466,0): 136, 113, 72, (125,467,0): 137, 114, 73, (125,468,0): 139, 116, 75, (125,469,0): 141, 118, 77, (125,470,0): 143, 120, 79, (125,471,0): 145, 122, 81, (125,472,0): 144, 121, 80, (125,473,0): 147, 124, 83, (125,474,0): 151, 128, 87, (125,475,0): 154, 131, 90, (125,476,0): 155, 132, 91, (125,477,0): 155, 132, 91, (125,478,0): 153, 130, 89, (125,479,0): 150, 128, 87, (125,480,0): 149, 127, 86, (125,481,0): 145, 126, 84, (125,482,0): 144, 125, 83, (125,483,0): 143, 124, 82, (125,484,0): 142, 125, 82, (125,485,0): 144, 127, 84, (125,486,0): 147, 130, 87, (125,487,0): 148, 131, 88, (125,488,0): 147, 132, 89, (125,489,0): 145, 130, 87, (125,490,0): 143, 130, 86, (125,491,0): 143, 130, 86, (125,492,0): 143, 130, 86, (125,493,0): 141, 128, 84, (125,494,0): 137, 126, 81, (125,495,0): 134, 122, 80, (125,496,0): 131, 116, 77, (125,497,0): 131, 115, 79, (125,498,0): 131, 115, 79, (125,499,0): 131, 115, 79, (125,500,0): 131, 115, 79, (125,501,0): 131, 115, 79, (125,502,0): 131, 115, 79, (125,503,0): 131, 115, 79, (125,504,0): 135, 119, 83, (125,505,0): 134, 118, 82, (125,506,0): 133, 117, 81, (125,507,0): 132, 116, 80, (125,508,0): 130, 114, 78, (125,509,0): 129, 113, 77, (125,510,0): 128, 112, 76, (125,511,0): 128, 112, 78, (125,512,0): 130, 109, 78, (125,513,0): 130, 109, 80, (125,514,0): 130, 109, 80, (125,515,0): 131, 110, 81, (125,516,0): 131, 110, 81, (125,517,0): 131, 110, 81, (125,518,0): 131, 110, 81, (125,519,0): 132, 111, 82, (125,520,0): 133, 112, 83, (125,521,0): 133, 112, 83, (125,522,0): 134, 113, 84, (125,523,0): 133, 112, 83, (125,524,0): 132, 111, 82, (125,525,0): 131, 110, 81, (125,526,0): 129, 108, 79, (125,527,0): 127, 106, 77, (125,528,0): 120, 99, 70, (125,529,0): 119, 98, 69, (125,530,0): 117, 96, 67, (125,531,0): 115, 94, 65, (125,532,0): 113, 92, 65, (125,533,0): 110, 89, 62, (125,534,0): 108, 87, 60, (125,535,0): 108, 87, 60, (125,536,0): 104, 82, 58, (125,537,0): 105, 83, 59, (125,538,0): 106, 84, 61, (125,539,0): 107, 85, 62, (125,540,0): 108, 86, 63, (125,541,0): 107, 85, 62, (125,542,0): 106, 84, 63, (125,543,0): 106, 83, 65, (125,544,0): 104, 83, 66, (125,545,0): 104, 82, 68, (125,546,0): 103, 82, 65, (125,547,0): 102, 81, 64, (125,548,0): 101, 80, 61, (125,549,0): 100, 79, 60, (125,550,0): 99, 78, 57, (125,551,0): 98, 77, 56, (125,552,0): 100, 79, 60, (125,553,0): 99, 78, 59, (125,554,0): 98, 76, 62, (125,555,0): 96, 74, 60, (125,556,0): 94, 72, 61, (125,557,0): 92, 70, 59, (125,558,0): 90, 67, 61, (125,559,0): 89, 66, 60, (125,560,0): 82, 58, 56, (125,561,0): 81, 57, 55, (125,562,0): 77, 56, 53, (125,563,0): 76, 55, 52, (125,564,0): 75, 54, 51, (125,565,0): 75, 54, 51, (125,566,0): 75, 56, 52, (125,567,0): 76, 57, 53, (125,568,0): 78, 60, 56, (125,569,0): 77, 59, 55, (125,570,0): 77, 59, 55, (125,571,0): 76, 58, 54, (125,572,0): 74, 59, 54, (125,573,0): 74, 59, 54, (125,574,0): 75, 60, 55, (125,575,0): 78, 60, 56, (125,576,0): 78, 59, 53, (125,577,0): 79, 58, 53, (125,578,0): 78, 57, 52, (125,579,0): 77, 56, 51, (125,580,0): 77, 56, 51, (125,581,0): 78, 57, 52, (125,582,0): 79, 58, 53, (125,583,0): 79, 58, 53, (125,584,0): 80, 59, 54, (125,585,0): 79, 58, 53, (125,586,0): 77, 56, 51, (125,587,0): 76, 55, 50, (125,588,0): 75, 54, 49, (125,589,0): 76, 55, 50, (125,590,0): 76, 55, 50, (125,591,0): 77, 56, 51, (125,592,0): 73, 52, 49, (125,593,0): 74, 53, 50, (125,594,0): 74, 53, 50, (125,595,0): 74, 53, 50, (125,596,0): 72, 51, 48, (125,597,0): 71, 50, 47, (125,598,0): 69, 48, 45, (125,599,0): 68, 47, 44, (126,0,0): 31, 32, 50, (126,1,0): 32, 31, 47, (126,2,0): 35, 31, 48, (126,3,0): 41, 33, 48, (126,4,0): 48, 35, 52, (126,5,0): 52, 36, 49, (126,6,0): 53, 32, 47, (126,7,0): 51, 29, 42, (126,8,0): 47, 21, 34, (126,9,0): 44, 20, 33, (126,10,0): 43, 19, 33, (126,11,0): 40, 20, 32, (126,12,0): 40, 19, 34, (126,13,0): 36, 20, 33, (126,14,0): 36, 19, 35, (126,15,0): 34, 20, 35, (126,16,0): 34, 21, 39, (126,17,0): 34, 21, 39, (126,18,0): 35, 22, 39, (126,19,0): 35, 22, 39, (126,20,0): 35, 22, 39, (126,21,0): 34, 21, 38, (126,22,0): 35, 21, 36, (126,23,0): 34, 20, 35, (126,24,0): 39, 23, 36, (126,25,0): 40, 24, 37, (126,26,0): 43, 25, 39, (126,27,0): 44, 26, 40, (126,28,0): 45, 27, 39, (126,29,0): 44, 26, 38, (126,30,0): 44, 26, 38, (126,31,0): 43, 25, 37, (126,32,0): 47, 24, 42, (126,33,0): 48, 25, 43, (126,34,0): 49, 26, 44, (126,35,0): 50, 27, 45, (126,36,0): 49, 28, 45, (126,37,0): 48, 27, 44, (126,38,0): 47, 26, 45, (126,39,0): 46, 25, 44, (126,40,0): 44, 25, 45, (126,41,0): 44, 25, 45, (126,42,0): 43, 25, 47, (126,43,0): 43, 25, 47, (126,44,0): 43, 25, 47, (126,45,0): 43, 25, 47, (126,46,0): 41, 26, 47, (126,47,0): 41, 26, 47, (126,48,0): 45, 28, 47, (126,49,0): 45, 28, 46, (126,50,0): 45, 28, 46, (126,51,0): 45, 28, 46, (126,52,0): 45, 28, 46, (126,53,0): 45, 28, 46, (126,54,0): 45, 28, 46, (126,55,0): 45, 28, 46, (126,56,0): 45, 28, 46, (126,57,0): 45, 28, 46, (126,58,0): 45, 28, 46, (126,59,0): 44, 27, 45, (126,60,0): 44, 27, 45, (126,61,0): 43, 26, 44, (126,62,0): 43, 26, 44, (126,63,0): 41, 26, 45, (126,64,0): 41, 26, 47, (126,65,0): 39, 26, 46, (126,66,0): 38, 25, 45, (126,67,0): 37, 24, 44, (126,68,0): 36, 23, 43, (126,69,0): 35, 22, 42, (126,70,0): 34, 21, 41, (126,71,0): 34, 21, 41, (126,72,0): 31, 18, 38, (126,73,0): 31, 18, 38, (126,74,0): 31, 18, 38, (126,75,0): 31, 18, 38, (126,76,0): 31, 18, 38, (126,77,0): 31, 18, 38, (126,78,0): 31, 18, 38, (126,79,0): 31, 18, 38, (126,80,0): 29, 18, 35, (126,81,0): 30, 19, 35, (126,82,0): 32, 21, 37, (126,83,0): 33, 22, 38, (126,84,0): 34, 23, 39, (126,85,0): 34, 23, 39, (126,86,0): 34, 23, 39, (126,87,0): 33, 22, 38, (126,88,0): 29, 18, 34, (126,89,0): 28, 17, 33, (126,90,0): 28, 17, 33, (126,91,0): 27, 16, 32, (126,92,0): 27, 16, 32, (126,93,0): 26, 15, 31, (126,94,0): 26, 15, 31, (126,95,0): 24, 15, 32, (126,96,0): 24, 17, 35, (126,97,0): 24, 17, 35, (126,98,0): 23, 16, 34, (126,99,0): 23, 16, 34, (126,100,0): 22, 15, 33, (126,101,0): 22, 15, 33, (126,102,0): 21, 14, 32, (126,103,0): 21, 14, 32, (126,104,0): 20, 13, 31, (126,105,0): 20, 13, 31, (126,106,0): 20, 13, 31, (126,107,0): 20, 13, 31, (126,108,0): 20, 13, 31, (126,109,0): 20, 13, 31, (126,110,0): 20, 13, 31, (126,111,0): 20, 13, 31, (126,112,0): 22, 13, 30, (126,113,0): 23, 14, 31, (126,114,0): 25, 14, 31, (126,115,0): 25, 14, 31, (126,116,0): 26, 15, 32, (126,117,0): 26, 15, 32, (126,118,0): 28, 15, 33, (126,119,0): 28, 15, 33, (126,120,0): 28, 13, 32, (126,121,0): 28, 13, 32, (126,122,0): 29, 14, 33, (126,123,0): 29, 14, 33, (126,124,0): 32, 15, 34, (126,125,0): 32, 15, 34, (126,126,0): 33, 16, 35, (126,127,0): 33, 16, 34, (126,128,0): 34, 18, 31, (126,129,0): 34, 18, 29, (126,130,0): 33, 17, 28, (126,131,0): 33, 17, 28, (126,132,0): 33, 17, 28, (126,133,0): 35, 19, 30, (126,134,0): 36, 20, 31, (126,135,0): 37, 21, 32, (126,136,0): 37, 21, 32, (126,137,0): 37, 21, 32, (126,138,0): 37, 21, 32, (126,139,0): 36, 20, 31, (126,140,0): 36, 20, 31, (126,141,0): 35, 19, 30, (126,142,0): 35, 19, 30, (126,143,0): 35, 19, 30, (126,144,0): 36, 20, 31, (126,145,0): 36, 20, 31, (126,146,0): 37, 21, 32, (126,147,0): 37, 21, 32, (126,148,0): 38, 22, 33, (126,149,0): 38, 22, 33, (126,150,0): 39, 23, 34, (126,151,0): 39, 23, 34, (126,152,0): 38, 22, 33, (126,153,0): 38, 22, 33, (126,154,0): 38, 22, 33, (126,155,0): 39, 23, 34, (126,156,0): 39, 23, 34, (126,157,0): 40, 24, 35, (126,158,0): 40, 24, 35, (126,159,0): 40, 24, 35, (126,160,0): 40, 23, 33, (126,161,0): 40, 23, 33, (126,162,0): 40, 23, 33, (126,163,0): 40, 23, 33, (126,164,0): 40, 23, 33, (126,165,0): 40, 23, 33, (126,166,0): 40, 23, 33, (126,167,0): 40, 23, 33, (126,168,0): 39, 22, 32, (126,169,0): 39, 22, 32, (126,170,0): 39, 22, 32, (126,171,0): 39, 22, 32, (126,172,0): 39, 22, 32, (126,173,0): 39, 22, 32, (126,174,0): 39, 22, 32, (126,175,0): 39, 22, 30, (126,176,0): 43, 22, 31, (126,177,0): 43, 22, 29, (126,178,0): 43, 22, 29, (126,179,0): 43, 22, 29, (126,180,0): 43, 22, 29, (126,181,0): 43, 22, 29, (126,182,0): 43, 22, 29, (126,183,0): 43, 22, 29, (126,184,0): 45, 24, 31, (126,185,0): 45, 24, 31, (126,186,0): 45, 24, 31, (126,187,0): 45, 24, 31, (126,188,0): 45, 24, 31, (126,189,0): 45, 24, 31, (126,190,0): 45, 24, 31, (126,191,0): 45, 24, 31, (126,192,0): 47, 24, 30, (126,193,0): 47, 25, 28, (126,194,0): 50, 25, 29, (126,195,0): 51, 26, 30, (126,196,0): 52, 27, 31, (126,197,0): 53, 28, 32, (126,198,0): 55, 29, 32, (126,199,0): 55, 29, 32, (126,200,0): 56, 27, 29, (126,201,0): 57, 28, 30, (126,202,0): 57, 29, 28, (126,203,0): 57, 29, 28, (126,204,0): 59, 29, 29, (126,205,0): 59, 29, 29, (126,206,0): 60, 30, 30, (126,207,0): 59, 31, 30, (126,208,0): 55, 30, 33, (126,209,0): 53, 31, 33, (126,210,0): 52, 31, 30, (126,211,0): 52, 31, 30, (126,212,0): 51, 30, 29, (126,213,0): 51, 30, 29, (126,214,0): 50, 29, 26, (126,215,0): 50, 29, 26, (126,216,0): 54, 33, 30, (126,217,0): 55, 34, 29, (126,218,0): 55, 34, 29, (126,219,0): 55, 34, 29, (126,220,0): 56, 36, 29, (126,221,0): 56, 36, 29, (126,222,0): 57, 37, 30, (126,223,0): 59, 36, 30, (126,224,0): 61, 34, 27, (126,225,0): 62, 33, 27, (126,226,0): 62, 33, 27, (126,227,0): 63, 34, 28, (126,228,0): 63, 34, 28, (126,229,0): 64, 35, 29, (126,230,0): 64, 35, 29, (126,231,0): 65, 36, 30, (126,232,0): 62, 33, 27, (126,233,0): 62, 33, 27, (126,234,0): 61, 32, 26, (126,235,0): 61, 32, 26, (126,236,0): 60, 31, 25, (126,237,0): 60, 31, 25, (126,238,0): 59, 30, 24, (126,239,0): 59, 30, 24, (126,240,0): 61, 32, 26, (126,241,0): 61, 32, 26, (126,242,0): 61, 32, 26, (126,243,0): 61, 32, 26, (126,244,0): 61, 32, 26, (126,245,0): 61, 32, 26, (126,246,0): 61, 32, 26, (126,247,0): 61, 32, 26, (126,248,0): 63, 34, 28, (126,249,0): 63, 34, 28, (126,250,0): 63, 34, 28, (126,251,0): 63, 34, 28, (126,252,0): 63, 34, 28, (126,253,0): 63, 34, 28, (126,254,0): 63, 34, 28, (126,255,0): 63, 34, 26, (126,256,0): 66, 36, 28, (126,257,0): 66, 36, 26, (126,258,0): 66, 36, 26, (126,259,0): 66, 36, 26, (126,260,0): 66, 36, 26, (126,261,0): 66, 36, 26, (126,262,0): 66, 36, 26, (126,263,0): 66, 36, 26, (126,264,0): 66, 36, 26, (126,265,0): 66, 36, 26, (126,266,0): 66, 36, 26, (126,267,0): 66, 36, 26, (126,268,0): 66, 36, 26, (126,269,0): 66, 36, 26, (126,270,0): 66, 36, 26, (126,271,0): 66, 36, 26, (126,272,0): 69, 35, 26, (126,273,0): 69, 35, 26, (126,274,0): 70, 36, 27, (126,275,0): 70, 36, 27, (126,276,0): 71, 37, 28, (126,277,0): 71, 37, 28, (126,278,0): 72, 38, 29, (126,279,0): 72, 38, 29, (126,280,0): 75, 41, 32, (126,281,0): 75, 41, 32, (126,282,0): 74, 40, 31, (126,283,0): 75, 41, 32, (126,284,0): 76, 42, 33, (126,285,0): 78, 44, 35, (126,286,0): 79, 45, 36, (126,287,0): 81, 47, 38, (126,288,0): 82, 48, 39, (126,289,0): 83, 49, 39, (126,290,0): 84, 52, 39, (126,291,0): 86, 55, 37, (126,292,0): 87, 58, 40, (126,293,0): 89, 61, 40, (126,294,0): 93, 62, 41, (126,295,0): 94, 63, 42, (126,296,0): 99, 67, 46, (126,297,0): 102, 67, 45, (126,298,0): 104, 68, 44, (126,299,0): 110, 71, 42, (126,300,0): 116, 75, 43, (126,301,0): 125, 83, 45, (126,302,0): 132, 89, 46, (126,303,0): 137, 94, 43, (126,304,0): 152, 103, 44, (126,305,0): 175, 126, 60, (126,306,0): 181, 133, 69, (126,307,0): 177, 129, 63, (126,308,0): 176, 131, 66, (126,309,0): 171, 128, 60, (126,310,0): 167, 123, 58, (126,311,0): 169, 130, 63, (126,312,0): 168, 131, 63, (126,313,0): 165, 132, 63, (126,314,0): 163, 130, 63, (126,315,0): 160, 130, 60, (126,316,0): 160, 131, 63, (126,317,0): 161, 132, 64, (126,318,0): 161, 134, 65, (126,319,0): 163, 136, 67, (126,320,0): 165, 136, 70, (126,321,0): 165, 136, 70, (126,322,0): 165, 137, 72, (126,323,0): 165, 137, 72, (126,324,0): 166, 138, 75, (126,325,0): 167, 139, 76, (126,326,0): 165, 139, 78, (126,327,0): 166, 140, 79, (126,328,0): 163, 138, 81, (126,329,0): 162, 137, 80, (126,330,0): 159, 134, 78, (126,331,0): 157, 132, 76, (126,332,0): 154, 131, 77, (126,333,0): 154, 131, 77, (126,334,0): 154, 131, 79, (126,335,0): 157, 131, 80, (126,336,0): 165, 133, 82, (126,337,0): 167, 134, 83, (126,338,0): 172, 136, 86, (126,339,0): 174, 138, 88, (126,340,0): 175, 139, 89, (126,341,0): 176, 140, 90, (126,342,0): 176, 138, 89, (126,343,0): 176, 138, 89, (126,344,0): 181, 141, 92, (126,345,0): 182, 142, 93, (126,346,0): 183, 143, 94, (126,347,0): 185, 145, 96, (126,348,0): 188, 146, 98, (126,349,0): 189, 147, 99, (126,350,0): 191, 149, 101, (126,351,0): 195, 147, 99, (126,352,0): 210, 150, 100, (126,353,0): 213, 150, 97, (126,354,0): 217, 151, 99, (126,355,0): 219, 153, 101, (126,356,0): 220, 154, 102, (126,357,0): 220, 154, 102, (126,358,0): 218, 155, 102, (126,359,0): 217, 154, 100, (126,360,0): 216, 153, 99, (126,361,0): 218, 155, 101, (126,362,0): 220, 157, 103, (126,363,0): 220, 158, 101, (126,364,0): 218, 155, 101, (126,365,0): 217, 155, 98, (126,366,0): 219, 157, 100, (126,367,0): 220, 160, 100, (126,368,0): 226, 168, 104, (126,369,0): 226, 171, 104, (126,370,0): 232, 175, 106, (126,371,0): 233, 179, 107, (126,372,0): 236, 182, 108, (126,373,0): 237, 184, 108, (126,374,0): 238, 185, 107, (126,375,0): 237, 186, 105, (126,376,0): 234, 183, 102, (126,377,0): 236, 188, 106, (126,378,0): 239, 191, 109, (126,379,0): 239, 192, 112, (126,380,0): 239, 190, 111, (126,381,0): 237, 190, 112, (126,382,0): 239, 192, 114, (126,383,0): 241, 194, 114, (126,384,0): 249, 201, 117, (126,385,0): 250, 202, 117, (126,386,0): 250, 204, 119, (126,387,0): 250, 204, 119, (126,388,0): 248, 201, 121, (126,389,0): 243, 197, 119, (126,390,0): 237, 194, 116, (126,391,0): 234, 190, 117, (126,392,0): 223, 181, 109, (126,393,0): 214, 174, 104, (126,394,0): 207, 168, 99, (126,395,0): 208, 169, 104, (126,396,0): 213, 175, 112, (126,397,0): 219, 181, 119, (126,398,0): 218, 182, 122, (126,399,0): 217, 181, 119, (126,400,0): 217, 182, 118, (126,401,0): 215, 180, 116, (126,402,0): 212, 179, 112, (126,403,0): 209, 178, 111, (126,404,0): 209, 178, 111, (126,405,0): 210, 181, 113, (126,406,0): 212, 185, 114, (126,407,0): 214, 187, 116, (126,408,0): 213, 187, 113, (126,409,0): 213, 187, 113, (126,410,0): 214, 186, 113, (126,411,0): 216, 188, 115, (126,412,0): 221, 189, 116, (126,413,0): 224, 192, 119, (126,414,0): 228, 194, 122, (126,415,0): 230, 197, 120, (126,416,0): 239, 204, 122, (126,417,0): 239, 205, 118, (126,418,0): 240, 206, 119, (126,419,0): 241, 207, 117, (126,420,0): 243, 209, 119, (126,421,0): 246, 213, 118, (126,422,0): 249, 216, 121, (126,423,0): 251, 218, 121, (126,424,0): 250, 218, 119, (126,425,0): 247, 215, 116, (126,426,0): 243, 210, 113, (126,427,0): 239, 206, 109, (126,428,0): 236, 203, 108, (126,429,0): 235, 202, 107, (126,430,0): 235, 202, 109, (126,431,0): 233, 202, 111, (126,432,0): 233, 203, 113, (126,433,0): 231, 204, 115, (126,434,0): 228, 201, 112, (126,435,0): 224, 197, 108, (126,436,0): 223, 193, 103, (126,437,0): 225, 195, 105, (126,438,0): 230, 201, 109, (126,439,0): 235, 206, 112, (126,440,0): 241, 210, 117, (126,441,0): 242, 212, 116, (126,442,0): 244, 211, 114, (126,443,0): 241, 208, 111, (126,444,0): 236, 204, 105, (126,445,0): 233, 201, 102, (126,446,0): 234, 200, 102, (126,447,0): 234, 201, 104, (126,448,0): 228, 197, 104, (126,449,0): 221, 191, 101, (126,450,0): 214, 184, 96, (126,451,0): 207, 180, 93, (126,452,0): 204, 176, 93, (126,453,0): 201, 174, 95, (126,454,0): 196, 170, 96, (126,455,0): 192, 168, 98, (126,456,0): 176, 152, 88, (126,457,0): 167, 145, 85, (126,458,0): 157, 134, 80, (126,459,0): 152, 130, 80, (126,460,0): 151, 130, 83, (126,461,0): 149, 128, 83, (126,462,0): 142, 123, 80, (126,463,0): 137, 118, 76, (126,464,0): 137, 114, 72, (126,465,0): 137, 114, 72, (126,466,0): 138, 115, 73, (126,467,0): 139, 116, 74, (126,468,0): 140, 117, 75, (126,469,0): 143, 120, 78, (126,470,0): 144, 121, 79, (126,471,0): 146, 123, 81, (126,472,0): 149, 126, 84, (126,473,0): 150, 127, 85, (126,474,0): 153, 130, 88, (126,475,0): 155, 132, 90, (126,476,0): 156, 133, 91, (126,477,0): 156, 133, 91, (126,478,0): 154, 131, 89, (126,479,0): 153, 132, 89, (126,480,0): 151, 130, 87, (126,481,0): 148, 129, 86, (126,482,0): 146, 127, 84, (126,483,0): 145, 126, 83, (126,484,0): 145, 128, 84, (126,485,0): 147, 130, 86, (126,486,0): 150, 133, 89, (126,487,0): 152, 135, 91, (126,488,0): 150, 136, 91, (126,489,0): 148, 134, 89, (126,490,0): 145, 132, 87, (126,491,0): 145, 132, 87, (126,492,0): 146, 133, 88, (126,493,0): 145, 132, 87, (126,494,0): 140, 129, 83, (126,495,0): 136, 125, 80, (126,496,0): 135, 120, 81, (126,497,0): 136, 120, 84, (126,498,0): 136, 120, 84, (126,499,0): 136, 120, 84, (126,500,0): 136, 120, 84, (126,501,0): 136, 120, 84, (126,502,0): 136, 120, 84, (126,503,0): 135, 119, 83, (126,504,0): 134, 118, 82, (126,505,0): 134, 118, 82, (126,506,0): 133, 117, 81, (126,507,0): 132, 116, 80, (126,508,0): 131, 115, 79, (126,509,0): 130, 114, 78, (126,510,0): 130, 114, 78, (126,511,0): 129, 113, 79, (126,512,0): 130, 109, 78, (126,513,0): 130, 109, 80, (126,514,0): 130, 109, 80, (126,515,0): 129, 108, 79, (126,516,0): 129, 108, 79, (126,517,0): 129, 108, 79, (126,518,0): 129, 108, 79, (126,519,0): 128, 107, 78, (126,520,0): 132, 111, 82, (126,521,0): 132, 111, 82, (126,522,0): 133, 112, 83, (126,523,0): 132, 111, 82, (126,524,0): 131, 110, 81, (126,525,0): 129, 108, 79, (126,526,0): 128, 107, 78, (126,527,0): 126, 105, 76, (126,528,0): 119, 98, 69, (126,529,0): 118, 97, 68, (126,530,0): 117, 96, 67, (126,531,0): 115, 94, 65, (126,532,0): 113, 92, 65, (126,533,0): 112, 91, 64, (126,534,0): 110, 89, 62, (126,535,0): 109, 88, 61, (126,536,0): 105, 83, 59, (126,537,0): 106, 84, 60, (126,538,0): 107, 85, 62, (126,539,0): 107, 85, 62, (126,540,0): 107, 85, 62, (126,541,0): 106, 84, 61, (126,542,0): 105, 83, 62, (126,543,0): 104, 81, 63, (126,544,0): 103, 82, 65, (126,545,0): 101, 82, 67, (126,546,0): 100, 81, 64, (126,547,0): 99, 80, 63, (126,548,0): 98, 80, 60, (126,549,0): 97, 79, 59, (126,550,0): 97, 79, 57, (126,551,0): 96, 78, 56, (126,552,0): 98, 80, 60, (126,553,0): 97, 79, 59, (126,554,0): 95, 76, 61, (126,555,0): 93, 74, 59, (126,556,0): 91, 71, 60, (126,557,0): 89, 69, 58, (126,558,0): 88, 68, 61, (126,559,0): 87, 67, 60, (126,560,0): 81, 60, 57, (126,561,0): 80, 59, 56, (126,562,0): 77, 56, 53, (126,563,0): 75, 54, 51, (126,564,0): 73, 52, 49, (126,565,0): 72, 51, 48, (126,566,0): 71, 52, 48, (126,567,0): 71, 52, 48, (126,568,0): 73, 55, 51, (126,569,0): 74, 56, 52, (126,570,0): 72, 57, 52, (126,571,0): 73, 58, 53, (126,572,0): 73, 58, 53, (126,573,0): 73, 58, 53, (126,574,0): 72, 57, 52, (126,575,0): 74, 56, 52, (126,576,0): 77, 58, 52, (126,577,0): 77, 56, 51, (126,578,0): 75, 54, 49, (126,579,0): 74, 53, 48, (126,580,0): 74, 53, 48, (126,581,0): 75, 54, 49, (126,582,0): 77, 56, 51, (126,583,0): 78, 57, 52, (126,584,0): 80, 59, 54, (126,585,0): 79, 58, 53, (126,586,0): 77, 56, 51, (126,587,0): 76, 55, 50, (126,588,0): 75, 54, 49, (126,589,0): 76, 55, 50, (126,590,0): 76, 55, 50, (126,591,0): 77, 56, 51, (126,592,0): 75, 51, 49, (126,593,0): 75, 51, 49, (126,594,0): 75, 51, 49, (126,595,0): 75, 51, 49, (126,596,0): 74, 50, 48, (126,597,0): 72, 48, 46, (126,598,0): 70, 46, 44, (126,599,0): 69, 45, 43, (127,0,0): 35, 32, 49, (127,1,0): 35, 31, 48, (127,2,0): 37, 30, 46, (127,3,0): 43, 32, 48, (127,4,0): 48, 35, 52, (127,5,0): 51, 34, 50, (127,6,0): 49, 31, 45, (127,7,0): 48, 27, 42, (127,8,0): 42, 20, 33, (127,9,0): 42, 20, 33, (127,10,0): 42, 21, 36, (127,11,0): 40, 22, 36, (127,12,0): 38, 21, 37, (127,13,0): 35, 21, 36, (127,14,0): 34, 20, 37, (127,15,0): 33, 20, 37, (127,16,0): 34, 21, 38, (127,17,0): 35, 22, 39, (127,18,0): 36, 22, 39, (127,19,0): 35, 22, 39, (127,20,0): 36, 22, 39, (127,21,0): 35, 21, 38, (127,22,0): 34, 20, 35, (127,23,0): 34, 20, 35, (127,24,0): 39, 23, 36, (127,25,0): 40, 24, 37, (127,26,0): 43, 25, 39, (127,27,0): 44, 26, 40, (127,28,0): 45, 27, 41, (127,29,0): 44, 26, 38, (127,30,0): 44, 26, 40, (127,31,0): 43, 25, 39, (127,32,0): 47, 26, 43, (127,33,0): 47, 26, 43, (127,34,0): 48, 27, 44, (127,35,0): 49, 28, 45, (127,36,0): 49, 28, 45, (127,37,0): 46, 28, 44, (127,38,0): 47, 26, 45, (127,39,0): 45, 26, 45, (127,40,0): 44, 25, 44, (127,41,0): 44, 25, 45, (127,42,0): 43, 26, 45, (127,43,0): 43, 26, 45, (127,44,0): 43, 26, 45, (127,45,0): 43, 26, 45, (127,46,0): 41, 26, 45, (127,47,0): 41, 26, 45, (127,48,0): 45, 28, 47, (127,49,0): 45, 28, 46, (127,50,0): 45, 28, 46, (127,51,0): 45, 28, 46, (127,52,0): 45, 28, 46, (127,53,0): 45, 28, 46, (127,54,0): 45, 28, 46, (127,55,0): 45, 28, 46, (127,56,0): 46, 29, 47, (127,57,0): 46, 29, 47, (127,58,0): 45, 28, 46, (127,59,0): 45, 28, 46, (127,60,0): 45, 26, 45, (127,61,0): 45, 26, 45, (127,62,0): 44, 25, 44, (127,63,0): 43, 26, 44, (127,64,0): 41, 26, 45, (127,65,0): 40, 27, 45, (127,66,0): 39, 26, 44, (127,67,0): 38, 25, 43, (127,68,0): 37, 24, 42, (127,69,0): 36, 23, 41, (127,70,0): 35, 22, 40, (127,71,0): 35, 22, 40, (127,72,0): 31, 18, 36, (127,73,0): 31, 18, 36, (127,74,0): 31, 18, 36, (127,75,0): 30, 19, 36, (127,76,0): 31, 18, 36, (127,77,0): 30, 19, 36, (127,78,0): 30, 19, 36, (127,79,0): 30, 19, 36, (127,80,0): 30, 19, 35, (127,81,0): 31, 20, 34, (127,82,0): 33, 21, 35, (127,83,0): 34, 23, 37, (127,84,0): 36, 24, 38, (127,85,0): 35, 24, 38, (127,86,0): 35, 23, 37, (127,87,0): 34, 23, 37, (127,88,0): 30, 18, 32, (127,89,0): 29, 18, 32, (127,90,0): 29, 17, 31, (127,91,0): 28, 17, 31, (127,92,0): 28, 16, 30, (127,93,0): 27, 16, 30, (127,94,0): 27, 15, 29, (127,95,0): 26, 15, 31, (127,96,0): 25, 16, 33, (127,97,0): 25, 16, 35, (127,98,0): 25, 16, 35, (127,99,0): 24, 15, 34, (127,100,0): 24, 15, 34, (127,101,0): 22, 15, 33, (127,102,0): 22, 15, 33, (127,103,0): 21, 14, 32, (127,104,0): 20, 13, 31, (127,105,0): 20, 13, 31, (127,106,0): 20, 13, 31, (127,107,0): 20, 13, 31, (127,108,0): 20, 13, 31, (127,109,0): 20, 13, 31, (127,110,0): 20, 13, 31, (127,111,0): 20, 13, 29, (127,112,0): 22, 13, 30, (127,113,0): 23, 15, 30, (127,114,0): 25, 14, 31, (127,115,0): 26, 15, 31, (127,116,0): 26, 15, 32, (127,117,0): 27, 16, 32, (127,118,0): 27, 16, 33, (127,119,0): 28, 15, 32, (127,120,0): 27, 14, 32, (127,121,0): 27, 14, 31, (127,122,0): 28, 15, 33, (127,123,0): 28, 15, 32, (127,124,0): 30, 15, 34, (127,125,0): 30, 16, 33, (127,126,0): 31, 16, 35, (127,127,0): 31, 17, 34, (127,128,0): 32, 18, 31, (127,129,0): 32, 19, 29, (127,130,0): 33, 17, 28, (127,131,0): 31, 18, 28, (127,132,0): 33, 17, 28, (127,133,0): 35, 19, 30, (127,134,0): 36, 20, 31, (127,135,0): 37, 21, 32, (127,136,0): 37, 21, 32, (127,137,0): 37, 21, 32, (127,138,0): 37, 21, 32, (127,139,0): 36, 20, 31, (127,140,0): 36, 20, 31, (127,141,0): 35, 19, 30, (127,142,0): 35, 19, 30, (127,143,0): 35, 19, 30, (127,144,0): 36, 20, 31, (127,145,0): 36, 20, 31, (127,146,0): 37, 21, 34, (127,147,0): 37, 21, 32, (127,148,0): 38, 22, 35, (127,149,0): 38, 22, 33, (127,150,0): 39, 23, 34, (127,151,0): 39, 23, 34, (127,152,0): 38, 22, 33, (127,153,0): 38, 22, 33, (127,154,0): 38, 22, 33, (127,155,0): 39, 23, 34, (127,156,0): 39, 23, 34, (127,157,0): 40, 24, 35, (127,158,0): 40, 24, 35, (127,159,0): 40, 24, 35, (127,160,0): 40, 23, 33, (127,161,0): 40, 23, 33, (127,162,0): 40, 23, 33, (127,163,0): 40, 23, 33, (127,164,0): 40, 23, 33, (127,165,0): 40, 23, 33, (127,166,0): 40, 23, 33, (127,167,0): 40, 23, 33, (127,168,0): 39, 22, 32, (127,169,0): 39, 22, 32, (127,170,0): 39, 22, 32, (127,171,0): 39, 22, 32, (127,172,0): 39, 22, 32, (127,173,0): 39, 22, 32, (127,174,0): 39, 22, 32, (127,175,0): 39, 22, 30, (127,176,0): 42, 22, 31, (127,177,0): 42, 23, 29, (127,178,0): 43, 22, 29, (127,179,0): 43, 22, 29, (127,180,0): 43, 22, 29, (127,181,0): 43, 22, 29, (127,182,0): 43, 22, 29, (127,183,0): 43, 22, 29, (127,184,0): 45, 24, 31, (127,185,0): 45, 24, 29, (127,186,0): 45, 24, 29, (127,187,0): 45, 24, 29, (127,188,0): 45, 24, 29, (127,189,0): 45, 24, 29, (127,190,0): 45, 24, 29, (127,191,0): 46, 23, 29, (127,192,0): 47, 25, 28, (127,193,0): 48, 26, 29, (127,194,0): 50, 25, 29, (127,195,0): 51, 26, 30, (127,196,0): 52, 27, 31, (127,197,0): 53, 28, 31, (127,198,0): 55, 29, 32, (127,199,0): 56, 30, 31, (127,200,0): 56, 27, 29, (127,201,0): 57, 29, 28, (127,202,0): 57, 29, 28, (127,203,0): 58, 30, 29, (127,204,0): 59, 29, 29, (127,205,0): 60, 30, 30, (127,206,0): 60, 30, 30, (127,207,0): 59, 31, 30, (127,208,0): 56, 30, 31, (127,209,0): 55, 30, 33, (127,210,0): 54, 30, 30, (127,211,0): 54, 30, 30, (127,212,0): 53, 29, 29, (127,213,0): 53, 29, 29, (127,214,0): 52, 28, 26, (127,215,0): 52, 28, 26, (127,216,0): 56, 32, 30, (127,217,0): 57, 33, 29, (127,218,0): 57, 33, 29, (127,219,0): 58, 34, 30, (127,220,0): 58, 35, 29, (127,221,0): 59, 36, 30, (127,222,0): 59, 36, 30, (127,223,0): 60, 35, 30, (127,224,0): 61, 34, 27, (127,225,0): 62, 33, 25, (127,226,0): 63, 34, 28, (127,227,0): 63, 34, 26, (127,228,0): 64, 35, 29, (127,229,0): 64, 35, 27, (127,230,0): 65, 36, 30, (127,231,0): 65, 36, 28, (127,232,0): 62, 33, 27, (127,233,0): 62, 33, 25, (127,234,0): 61, 32, 26, (127,235,0): 61, 32, 24, (127,236,0): 60, 31, 25, (127,237,0): 60, 31, 23, (127,238,0): 59, 30, 24, (127,239,0): 59, 30, 22, (127,240,0): 61, 32, 26, (127,241,0): 61, 32, 24, (127,242,0): 61, 32, 26, (127,243,0): 61, 32, 24, (127,244,0): 61, 32, 26, (127,245,0): 61, 32, 24, (127,246,0): 61, 32, 26, (127,247,0): 61, 32, 24, (127,248,0): 63, 34, 28, (127,249,0): 63, 34, 26, (127,250,0): 63, 34, 28, (127,251,0): 63, 34, 26, (127,252,0): 63, 34, 28, (127,253,0): 63, 34, 26, (127,254,0): 63, 34, 28, (127,255,0): 64, 34, 26, (127,256,0): 66, 36, 26, (127,257,0): 66, 36, 26, (127,258,0): 68, 35, 26, (127,259,0): 66, 36, 26, (127,260,0): 68, 35, 26, (127,261,0): 66, 36, 26, (127,262,0): 68, 35, 26, (127,263,0): 66, 36, 26, (127,264,0): 68, 35, 26, (127,265,0): 66, 36, 26, (127,266,0): 68, 35, 26, (127,267,0): 66, 36, 26, (127,268,0): 68, 35, 26, (127,269,0): 66, 36, 26, (127,270,0): 68, 35, 26, (127,271,0): 68, 35, 26, (127,272,0): 69, 35, 26, (127,273,0): 69, 35, 26, (127,274,0): 70, 35, 29, (127,275,0): 70, 36, 27, (127,276,0): 71, 36, 30, (127,277,0): 71, 37, 28, (127,278,0): 72, 38, 29, (127,279,0): 72, 38, 29, (127,280,0): 75, 41, 32, (127,281,0): 75, 41, 32, (127,282,0): 74, 40, 31, (127,283,0): 75, 41, 32, (127,284,0): 76, 42, 33, (127,285,0): 78, 44, 35, (127,286,0): 79, 45, 36, (127,287,0): 81, 47, 38, (127,288,0): 82, 48, 39, (127,289,0): 83, 49, 39, (127,290,0): 84, 52, 39, (127,291,0): 86, 54, 39, (127,292,0): 89, 58, 40, (127,293,0): 91, 60, 42, (127,294,0): 93, 62, 42, (127,295,0): 95, 62, 43, (127,296,0): 100, 68, 47, (127,297,0): 102, 67, 45, (127,298,0): 104, 68, 44, (127,299,0): 110, 70, 44, (127,300,0): 116, 75, 43, (127,301,0): 123, 84, 45, (127,302,0): 131, 89, 47, (127,303,0): 137, 93, 44, (127,304,0): 153, 104, 46, (127,305,0): 176, 127, 61, (127,306,0): 183, 134, 67, (127,307,0): 179, 130, 63, (127,308,0): 180, 131, 62, (127,309,0): 175, 128, 60, (127,310,0): 169, 124, 57, (127,311,0): 170, 130, 61, (127,312,0): 168, 131, 63, (127,313,0): 164, 131, 64, (127,314,0): 160, 130, 60, (127,315,0): 158, 129, 59, (127,316,0): 157, 130, 59, (127,317,0): 158, 131, 60, (127,318,0): 157, 133, 63, (127,319,0): 158, 134, 64, (127,320,0): 161, 134, 67, (127,321,0): 161, 134, 67, (127,322,0): 161, 133, 68, (127,323,0): 161, 133, 68, (127,324,0): 160, 135, 71, (127,325,0): 160, 134, 73, (127,326,0): 160, 134, 73, (127,327,0): 159, 135, 75, (127,328,0): 161, 136, 79, (127,329,0): 160, 135, 79, (127,330,0): 157, 132, 76, (127,331,0): 155, 130, 76, (127,332,0): 155, 129, 78, (127,333,0): 155, 129, 78, (127,334,0): 156, 130, 81, (127,335,0): 158, 130, 80, (127,336,0): 162, 130, 79, (127,337,0): 165, 132, 81, (127,338,0): 171, 135, 85, (127,339,0): 174, 138, 88, (127,340,0): 177, 141, 91, (127,341,0): 179, 141, 92, (127,342,0): 179, 141, 92, (127,343,0): 181, 141, 92, (127,344,0): 183, 141, 93, (127,345,0): 184, 142, 94, (127,346,0): 185, 143, 95, (127,347,0): 187, 143, 96, (127,348,0): 188, 144, 97, (127,349,0): 192, 145, 99, (127,350,0): 193, 146, 100, (127,351,0): 196, 146, 97, (127,352,0): 210, 150, 100, (127,353,0): 213, 150, 97, (127,354,0): 217, 151, 99, (127,355,0): 219, 153, 101, (127,356,0): 222, 155, 103, (127,357,0): 222, 155, 102, (127,358,0): 222, 155, 102, (127,359,0): 222, 155, 102, (127,360,0): 221, 154, 99, (127,361,0): 223, 156, 101, (127,362,0): 223, 158, 104, (127,363,0): 221, 156, 102, (127,364,0): 216, 153, 99, (127,365,0): 213, 152, 97, (127,366,0): 214, 153, 98, (127,367,0): 215, 156, 100, (127,368,0): 216, 162, 100, (127,369,0): 216, 165, 100, (127,370,0): 219, 168, 103, (127,371,0): 223, 172, 106, (127,372,0): 227, 177, 108, (127,373,0): 230, 180, 109, (127,374,0): 233, 183, 110, (127,375,0): 234, 185, 109, (127,376,0): 228, 179, 102, (127,377,0): 231, 184, 106, (127,378,0): 236, 189, 111, (127,379,0): 238, 191, 113, (127,380,0): 238, 191, 113, (127,381,0): 237, 190, 112, (127,382,0): 239, 192, 114, (127,383,0): 241, 192, 115, (127,384,0): 254, 201, 121, (127,385,0): 254, 201, 121, (127,386,0): 253, 202, 121, (127,387,0): 249, 200, 121, (127,388,0): 246, 199, 121, (127,389,0): 241, 195, 120, (127,390,0): 235, 191, 118, (127,391,0): 232, 190, 118, (127,392,0): 221, 181, 112, (127,393,0): 213, 174, 105, (127,394,0): 207, 168, 101, (127,395,0): 206, 168, 103, (127,396,0): 214, 176, 113, (127,397,0): 220, 182, 119, (127,398,0): 219, 184, 120, (127,399,0): 218, 182, 120, (127,400,0): 216, 182, 119, (127,401,0): 213, 182, 118, (127,402,0): 210, 179, 115, (127,403,0): 208, 179, 113, (127,404,0): 208, 179, 113, (127,405,0): 210, 183, 116, (127,406,0): 213, 186, 117, (127,407,0): 215, 188, 117, (127,408,0): 213, 186, 115, (127,409,0): 213, 187, 113, (127,410,0): 215, 187, 114, (127,411,0): 216, 188, 114, (127,412,0): 220, 190, 117, (127,413,0): 225, 193, 120, (127,414,0): 228, 196, 123, (127,415,0): 231, 198, 121, (127,416,0): 239, 206, 125, (127,417,0): 241, 206, 122, (127,418,0): 241, 207, 120, (127,419,0): 242, 208, 119, (127,420,0): 244, 210, 120, (127,421,0): 246, 212, 122, (127,422,0): 249, 216, 123, (127,423,0): 250, 217, 122, (127,424,0): 246, 213, 118, (127,425,0): 245, 212, 117, (127,426,0): 242, 209, 114, (127,427,0): 239, 206, 111, (127,428,0): 236, 203, 110, (127,429,0): 235, 202, 109, (127,430,0): 234, 201, 108, (127,431,0): 232, 201, 110, (127,432,0): 231, 201, 113, (127,433,0): 230, 203, 114, (127,434,0): 229, 202, 113, (127,435,0): 227, 197, 107, (127,436,0): 224, 194, 104, (127,437,0): 226, 195, 104, (127,438,0): 231, 200, 109, (127,439,0): 236, 205, 112, (127,440,0): 245, 215, 119, (127,441,0): 247, 214, 119, (127,442,0): 245, 212, 115, (127,443,0): 239, 206, 109, (127,444,0): 232, 199, 102, (127,445,0): 228, 195, 98, (127,446,0): 228, 195, 98, (127,447,0): 230, 197, 102, (127,448,0): 229, 198, 105, (127,449,0): 221, 192, 100, (127,450,0): 212, 182, 94, (127,451,0): 203, 175, 91, (127,452,0): 199, 173, 89, (127,453,0): 196, 170, 93, (127,454,0): 191, 167, 93, (127,455,0): 188, 165, 97, (127,456,0): 175, 154, 91, (127,457,0): 166, 146, 87, (127,458,0): 156, 136, 83, (127,459,0): 152, 132, 82, (127,460,0): 150, 132, 86, (127,461,0): 149, 130, 87, (127,462,0): 143, 126, 83, (127,463,0): 139, 120, 78, (127,464,0): 137, 115, 74, (127,465,0): 138, 115, 74, (127,466,0): 139, 116, 75, (127,467,0): 140, 117, 75, (127,468,0): 141, 118, 76, (127,469,0): 143, 120, 78, (127,470,0): 145, 122, 80, (127,471,0): 146, 123, 79, (127,472,0): 152, 129, 85, (127,473,0): 152, 129, 85, (127,474,0): 154, 131, 87, (127,475,0): 155, 132, 88, (127,476,0): 156, 133, 91, (127,477,0): 156, 133, 91, (127,478,0): 155, 132, 90, (127,479,0): 154, 133, 90, (127,480,0): 153, 132, 89, (127,481,0): 149, 130, 87, (127,482,0): 147, 128, 85, (127,483,0): 146, 127, 84, (127,484,0): 146, 129, 85, (127,485,0): 149, 132, 88, (127,486,0): 152, 135, 91, (127,487,0): 154, 137, 93, (127,488,0): 152, 138, 93, (127,489,0): 149, 135, 90, (127,490,0): 146, 133, 88, (127,491,0): 146, 133, 88, (127,492,0): 148, 135, 90, (127,493,0): 147, 134, 89, (127,494,0): 141, 130, 84, (127,495,0): 137, 126, 81, (127,496,0): 137, 124, 82, (127,497,0): 138, 124, 85, (127,498,0): 138, 124, 85, (127,499,0): 139, 125, 86, (127,500,0): 139, 125, 86, (127,501,0): 138, 124, 85, (127,502,0): 138, 124, 87, (127,503,0): 137, 123, 86, (127,504,0): 133, 119, 82, (127,505,0): 133, 119, 82, (127,506,0): 132, 118, 81, (127,507,0): 132, 118, 81, (127,508,0): 132, 116, 80, (127,509,0): 131, 115, 79, (127,510,0): 131, 115, 79, (127,511,0): 131, 115, 81, (127,512,0): 129, 110, 77, (127,513,0): 129, 110, 78, (127,514,0): 129, 108, 77, (127,515,0): 128, 109, 77, (127,516,0): 128, 107, 76, (127,517,0): 127, 106, 75, (127,518,0): 127, 106, 75, (127,519,0): 126, 105, 74, (127,520,0): 131, 110, 79, (127,521,0): 131, 110, 79, (127,522,0): 132, 111, 80, (127,523,0): 132, 111, 80, (127,524,0): 130, 109, 80, (127,525,0): 129, 108, 79, (127,526,0): 127, 106, 77, (127,527,0): 126, 105, 76, (127,528,0): 118, 97, 70, (127,529,0): 118, 97, 70, (127,530,0): 119, 95, 69, (127,531,0): 115, 94, 67, (127,532,0): 114, 92, 68, (127,533,0): 113, 91, 67, (127,534,0): 112, 90, 66, (127,535,0): 111, 89, 65, (127,536,0): 106, 84, 61, (127,537,0): 107, 85, 62, (127,538,0): 107, 85, 64, (127,539,0): 107, 85, 64, (127,540,0): 107, 85, 64, (127,541,0): 104, 83, 62, (127,542,0): 103, 80, 62, (127,543,0): 101, 80, 61, (127,544,0): 100, 81, 66, (127,545,0): 100, 81, 66, (127,546,0): 99, 80, 65, (127,547,0): 99, 80, 63, (127,548,0): 98, 79, 62, (127,549,0): 97, 78, 61, (127,550,0): 97, 79, 59, (127,551,0): 96, 78, 58, (127,552,0): 98, 79, 62, (127,553,0): 97, 78, 63, (127,554,0): 95, 76, 62, (127,555,0): 93, 74, 60, (127,556,0): 91, 71, 60, (127,557,0): 89, 69, 60, (127,558,0): 87, 67, 60, (127,559,0): 87, 66, 61, (127,560,0): 82, 61, 58, (127,561,0): 80, 59, 56, (127,562,0): 78, 57, 54, (127,563,0): 74, 53, 50, (127,564,0): 72, 51, 48, (127,565,0): 69, 50, 46, (127,566,0): 69, 50, 46, (127,567,0): 67, 49, 45, (127,568,0): 70, 52, 48, (127,569,0): 71, 53, 49, (127,570,0): 71, 56, 51, (127,571,0): 73, 58, 53, (127,572,0): 75, 57, 53, (127,573,0): 74, 56, 52, (127,574,0): 72, 54, 50, (127,575,0): 71, 53, 49, (127,576,0): 77, 56, 51, (127,577,0): 75, 54, 49, (127,578,0): 74, 53, 48, (127,579,0): 72, 51, 46, (127,580,0): 72, 51, 46, (127,581,0): 74, 53, 48, (127,582,0): 75, 54, 49, (127,583,0): 77, 56, 51, (127,584,0): 80, 59, 54, (127,585,0): 79, 58, 53, (127,586,0): 77, 56, 51, (127,587,0): 76, 55, 50, (127,588,0): 75, 54, 49, (127,589,0): 76, 55, 50, (127,590,0): 76, 55, 50, (127,591,0): 77, 56, 51, (127,592,0): 73, 52, 49, (127,593,0): 73, 52, 49, (127,594,0): 75, 51, 49, (127,595,0): 73, 52, 49, (127,596,0): 74, 50, 48, (127,597,0): 70, 49, 46, (127,598,0): 70, 46, 44, (127,599,0): 67, 46, 43, (128,0,0): 41, 28, 45, (128,1,0): 42, 29, 46, (128,2,0): 43, 30, 47, (128,3,0): 44, 31, 48, (128,4,0): 43, 29, 46, (128,5,0): 41, 27, 44, (128,6,0): 38, 24, 41, (128,7,0): 36, 22, 39, (128,8,0): 33, 19, 36, (128,9,0): 33, 19, 36, (128,10,0): 33, 18, 37, (128,11,0): 33, 20, 38, (128,12,0): 33, 20, 40, (128,13,0): 33, 21, 41, (128,14,0): 33, 21, 41, (128,15,0): 33, 22, 39, (128,16,0): 33, 19, 36, (128,17,0): 34, 20, 35, (128,18,0): 38, 21, 37, (128,19,0): 38, 24, 39, (128,20,0): 41, 24, 40, (128,21,0): 41, 24, 40, (128,22,0): 41, 24, 40, (128,23,0): 41, 24, 40, (128,24,0): 40, 23, 39, (128,25,0): 40, 23, 39, (128,26,0): 41, 24, 40, (128,27,0): 42, 25, 41, (128,28,0): 43, 26, 42, (128,29,0): 43, 27, 40, (128,30,0): 44, 27, 43, (128,31,0): 44, 27, 43, (128,32,0): 46, 28, 44, (128,33,0): 46, 28, 44, (128,34,0): 46, 28, 44, (128,35,0): 46, 28, 44, (128,36,0): 46, 28, 44, (128,37,0): 45, 28, 44, (128,38,0): 46, 28, 44, (128,39,0): 45, 28, 44, (128,40,0): 47, 30, 46, (128,41,0): 47, 30, 48, (128,42,0): 47, 30, 48, (128,43,0): 47, 30, 48, (128,44,0): 47, 30, 48, (128,45,0): 47, 30, 48, (128,46,0): 47, 30, 48, (128,47,0): 47, 30, 48, (128,48,0): 45, 30, 49, (128,49,0): 45, 30, 49, (128,50,0): 45, 30, 49, (128,51,0): 45, 30, 49, (128,52,0): 47, 30, 49, (128,53,0): 47, 30, 49, (128,54,0): 47, 30, 49, (128,55,0): 47, 30, 49, (128,56,0): 46, 27, 47, (128,57,0): 46, 27, 47, (128,58,0): 46, 27, 47, (128,59,0): 46, 27, 47, (128,60,0): 48, 26, 47, (128,61,0): 48, 26, 47, (128,62,0): 48, 26, 47, (128,63,0): 46, 27, 46, (128,64,0): 43, 26, 44, (128,65,0): 41, 27, 44, (128,66,0): 40, 26, 43, (128,67,0): 39, 25, 42, (128,68,0): 37, 24, 41, (128,69,0): 36, 23, 40, (128,70,0): 35, 22, 39, (128,71,0): 35, 22, 39, (128,72,0): 32, 21, 37, (128,73,0): 32, 21, 37, (128,74,0): 32, 21, 37, (128,75,0): 30, 22, 37, (128,76,0): 32, 21, 37, (128,77,0): 30, 22, 37, (128,78,0): 30, 22, 37, (128,79,0): 30, 22, 35, (128,80,0): 33, 21, 33, (128,81,0): 34, 22, 34, (128,82,0): 35, 21, 34, (128,83,0): 34, 22, 34, (128,84,0): 36, 22, 35, (128,85,0): 36, 24, 36, (128,86,0): 37, 23, 36, (128,87,0): 36, 24, 36, (128,88,0): 35, 21, 34, (128,89,0): 34, 22, 34, (128,90,0): 34, 20, 33, (128,91,0): 32, 20, 32, (128,92,0): 33, 19, 32, (128,93,0): 31, 19, 31, (128,94,0): 31, 17, 30, (128,95,0): 30, 18, 32, (128,96,0): 29, 16, 33, (128,97,0): 28, 17, 34, (128,98,0): 27, 16, 33, (128,99,0): 27, 16, 33, (128,100,0): 26, 15, 32, (128,101,0): 23, 14, 31, (128,102,0): 23, 14, 31, (128,103,0): 22, 13, 30, (128,104,0): 22, 13, 30, (128,105,0): 22, 13, 30, (128,106,0): 21, 14, 30, (128,107,0): 21, 14, 30, (128,108,0): 20, 16, 31, (128,109,0): 20, 16, 31, (128,110,0): 20, 16, 31, (128,111,0): 22, 15, 31, (128,112,0): 24, 16, 31, (128,113,0): 24, 16, 29, (128,114,0): 24, 16, 31, (128,115,0): 24, 16, 29, (128,116,0): 24, 16, 31, (128,117,0): 24, 16, 29, (128,118,0): 24, 16, 31, (128,119,0): 26, 15, 29, (128,120,0): 26, 15, 31, (128,121,0): 26, 15, 29, (128,122,0): 27, 16, 32, (128,123,0): 27, 16, 30, (128,124,0): 28, 17, 33, (128,125,0): 28, 17, 31, (128,126,0): 29, 18, 34, (128,127,0): 29, 18, 32, (128,128,0): 31, 19, 31, (128,129,0): 31, 19, 29, (128,130,0): 32, 19, 29, (128,131,0): 31, 19, 29, (128,132,0): 32, 19, 29, (128,133,0): 32, 19, 29, (128,134,0): 32, 19, 29, (128,135,0): 32, 19, 29, (128,136,0): 37, 21, 32, (128,137,0): 36, 20, 31, (128,138,0): 37, 19, 31, (128,139,0): 36, 18, 30, (128,140,0): 35, 17, 29, (128,141,0): 34, 16, 28, (128,142,0): 34, 16, 28, (128,143,0): 32, 16, 27, (128,144,0): 36, 20, 33, (128,145,0): 34, 20, 33, (128,146,0): 35, 21, 36, (128,147,0): 35, 21, 34, (128,148,0): 36, 22, 37, (128,149,0): 36, 22, 35, (128,150,0): 36, 22, 35, (128,151,0): 37, 23, 36, (128,152,0): 34, 21, 31, (128,153,0): 34, 21, 31, (128,154,0): 35, 22, 31, (128,155,0): 35, 22, 31, (128,156,0): 36, 23, 32, (128,157,0): 36, 23, 32, (128,158,0): 37, 24, 33, (128,159,0): 39, 23, 33, (128,160,0): 41, 24, 34, (128,161,0): 41, 24, 34, (128,162,0): 41, 24, 34, (128,163,0): 40, 23, 33, (128,164,0): 40, 23, 33, (128,165,0): 39, 22, 32, (128,166,0): 39, 22, 32, (128,167,0): 39, 22, 32, (128,168,0): 39, 22, 32, (128,169,0): 39, 22, 32, (128,170,0): 39, 22, 32, (128,171,0): 39, 22, 32, (128,172,0): 39, 22, 32, (128,173,0): 39, 22, 32, (128,174,0): 39, 22, 32, (128,175,0): 39, 22, 30, (128,176,0): 40, 23, 31, (128,177,0): 40, 23, 29, (128,178,0): 42, 23, 29, (128,179,0): 42, 23, 29, (128,180,0): 42, 23, 27, (128,181,0): 42, 23, 27, (128,182,0): 42, 23, 27, (128,183,0): 42, 23, 27, (128,184,0): 42, 21, 26, (128,185,0): 42, 22, 24, (128,186,0): 43, 21, 24, (128,187,0): 44, 22, 25, (128,188,0): 44, 22, 25, (128,189,0): 45, 23, 26, (128,190,0): 45, 23, 25, (128,191,0): 46, 24, 26, (128,192,0): 50, 28, 30, (128,193,0): 50, 28, 30, (128,194,0): 51, 29, 31, (128,195,0): 51, 29, 31, (128,196,0): 54, 29, 32, (128,197,0): 54, 30, 30, (128,198,0): 56, 30, 31, (128,199,0): 56, 30, 31, (128,200,0): 53, 27, 28, (128,201,0): 53, 27, 26, (128,202,0): 56, 28, 27, (128,203,0): 56, 28, 25, (128,204,0): 58, 28, 26, (128,205,0): 58, 28, 26, (128,206,0): 59, 29, 27, (128,207,0): 59, 29, 27, (128,208,0): 58, 29, 31, (128,209,0): 58, 29, 33, (128,210,0): 58, 29, 33, (128,211,0): 58, 29, 33, (128,212,0): 58, 29, 31, (128,213,0): 58, 29, 31, (128,214,0): 58, 29, 31, (128,215,0): 58, 30, 29, (128,216,0): 56, 28, 27, (128,217,0): 56, 28, 27, (128,218,0): 57, 29, 26, (128,219,0): 59, 31, 28, (128,220,0): 60, 32, 29, (128,221,0): 62, 34, 31, (128,222,0): 63, 35, 31, (128,223,0): 63, 36, 29, (128,224,0): 61, 32, 24, (128,225,0): 64, 34, 24, (128,226,0): 66, 36, 28, (128,227,0): 68, 38, 28, (128,228,0): 68, 38, 30, (128,229,0): 68, 38, 28, (128,230,0): 66, 36, 28, (128,231,0): 65, 35, 25, (128,232,0): 62, 32, 24, (128,233,0): 62, 32, 22, (128,234,0): 62, 32, 24, (128,235,0): 62, 32, 22, (128,236,0): 62, 32, 24, (128,237,0): 62, 32, 22, (128,238,0): 62, 32, 24, (128,239,0): 62, 32, 22, (128,240,0): 60, 30, 22, (128,241,0): 60, 30, 20, (128,242,0): 60, 30, 22, (128,243,0): 60, 30, 20, (128,244,0): 60, 30, 22, (128,245,0): 60, 30, 20, (128,246,0): 60, 30, 22, (128,247,0): 60, 30, 20, (128,248,0): 62, 32, 24, (128,249,0): 62, 32, 22, (128,250,0): 63, 33, 25, (128,251,0): 64, 34, 24, (128,252,0): 65, 35, 27, (128,253,0): 66, 36, 26, (128,254,0): 67, 37, 29, (128,255,0): 67, 37, 27, (128,256,0): 67, 34, 25, (128,257,0): 67, 35, 24, (128,258,0): 68, 34, 24, (128,259,0): 67, 35, 24, (128,260,0): 68, 34, 24, (128,261,0): 67, 35, 24, (128,262,0): 68, 34, 24, (128,263,0): 67, 35, 24, (128,264,0): 68, 34, 24, (128,265,0): 67, 35, 24, (128,266,0): 68, 34, 24, (128,267,0): 67, 35, 24, (128,268,0): 68, 34, 24, (128,269,0): 67, 35, 24, (128,270,0): 68, 34, 24, (128,271,0): 68, 34, 25, (128,272,0): 69, 34, 28, (128,273,0): 69, 34, 28, (128,274,0): 70, 35, 31, (128,275,0): 70, 35, 29, (128,276,0): 71, 36, 32, (128,277,0): 71, 36, 30, (128,278,0): 72, 37, 31, (128,279,0): 72, 37, 31, (128,280,0): 74, 40, 31, (128,281,0): 74, 40, 31, (128,282,0): 76, 42, 32, (128,283,0): 77, 43, 33, (128,284,0): 79, 45, 35, (128,285,0): 80, 46, 36, (128,286,0): 82, 48, 38, (128,287,0): 82, 48, 38, (128,288,0): 80, 46, 36, (128,289,0): 81, 47, 37, (128,290,0): 84, 50, 40, (128,291,0): 87, 53, 41, (128,292,0): 90, 56, 44, (128,293,0): 93, 59, 47, (128,294,0): 96, 63, 48, (128,295,0): 99, 63, 47, (128,296,0): 100, 65, 46, (128,297,0): 103, 67, 45, (128,298,0): 107, 69, 46, (128,299,0): 109, 72, 45, (128,300,0): 114, 75, 44, (128,301,0): 121, 83, 47, (128,302,0): 130, 92, 53, (128,303,0): 140, 99, 53, (128,304,0): 164, 115, 57, (128,305,0): 183, 130, 64, (128,306,0): 194, 142, 69, (128,307,0): 193, 140, 64, (128,308,0): 187, 134, 56, (128,309,0): 184, 132, 56, (128,310,0): 182, 132, 61, (128,311,0): 176, 131, 63, (128,312,0): 173, 134, 65, (128,313,0): 167, 134, 65, (128,314,0): 161, 133, 60, (128,315,0): 155, 131, 57, (128,316,0): 153, 131, 56, (128,317,0): 150, 131, 55, (128,318,0): 151, 131, 58, (128,319,0): 153, 130, 60, (128,320,0): 157, 132, 65, (128,321,0): 160, 132, 67, (128,322,0): 160, 132, 69, (128,323,0): 158, 133, 69, (128,324,0): 157, 133, 71, (128,325,0): 154, 133, 70, (128,326,0): 153, 131, 71, (128,327,0): 153, 131, 73, (128,328,0): 151, 129, 72, (128,329,0): 151, 128, 74, (128,330,0): 151, 128, 76, (128,331,0): 153, 127, 76, (128,332,0): 155, 129, 80, (128,333,0): 158, 130, 82, (128,334,0): 160, 132, 85, (128,335,0): 163, 132, 85, (128,336,0): 167, 134, 83, (128,337,0): 171, 135, 83, (128,338,0): 175, 138, 86, (128,339,0): 178, 141, 89, (128,340,0): 181, 144, 92, (128,341,0): 185, 145, 94, (128,342,0): 187, 145, 95, (128,343,0): 188, 144, 95, (128,344,0): 191, 145, 96, (128,345,0): 190, 144, 95, (128,346,0): 190, 142, 94, (128,347,0): 192, 141, 94, (128,348,0): 194, 143, 96, (128,349,0): 198, 146, 99, (128,350,0): 202, 150, 103, (128,351,0): 205, 151, 104, (128,352,0): 215, 155, 105, (128,353,0): 217, 156, 102, (128,354,0): 220, 157, 104, (128,355,0): 224, 157, 104, (128,356,0): 227, 157, 105, (128,357,0): 228, 157, 103, (128,358,0): 231, 156, 101, (128,359,0): 230, 155, 100, (128,360,0): 227, 152, 97, (128,361,0): 225, 152, 97, (128,362,0): 224, 153, 99, (128,363,0): 223, 154, 99, (128,364,0): 220, 155, 101, (128,365,0): 218, 155, 101, (128,366,0): 216, 155, 101, (128,367,0): 212, 157, 101, (128,368,0): 204, 158, 99, (128,369,0): 202, 160, 100, (128,370,0): 206, 164, 104, (128,371,0): 211, 167, 106, (128,372,0): 215, 171, 108, (128,373,0): 218, 173, 108, (128,374,0): 220, 175, 108, (128,375,0): 223, 176, 108, (128,376,0): 229, 182, 112, (128,377,0): 232, 183, 114, (128,378,0): 234, 186, 114, (128,379,0): 236, 188, 114, (128,380,0): 238, 188, 115, (128,381,0): 237, 187, 114, (128,382,0): 236, 186, 113, (128,383,0): 238, 184, 110, (128,384,0): 252, 192, 120, (128,385,0): 255, 192, 121, (128,386,0): 253, 193, 123, (128,387,0): 249, 192, 123, (128,388,0): 243, 190, 122, (128,389,0): 236, 187, 121, (128,390,0): 228, 183, 118, (128,391,0): 225, 181, 118, (128,392,0): 214, 175, 110, (128,393,0): 207, 169, 104, (128,394,0): 203, 165, 100, (128,395,0): 204, 169, 103, (128,396,0): 212, 177, 109, (128,397,0): 218, 183, 115, (128,398,0): 220, 183, 115, (128,399,0): 214, 181, 114, (128,400,0): 214, 184, 122, (128,401,0): 210, 184, 123, (128,402,0): 208, 182, 121, (128,403,0): 207, 181, 120, (128,404,0): 206, 181, 117, (128,405,0): 210, 182, 119, (128,406,0): 211, 183, 118, (128,407,0): 212, 185, 118, (128,408,0): 214, 187, 116, (128,409,0): 215, 189, 115, (128,410,0): 217, 189, 116, (128,411,0): 218, 190, 116, (128,412,0): 221, 191, 118, (128,413,0): 223, 194, 118, (128,414,0): 224, 195, 119, (128,415,0): 226, 194, 117, (128,416,0): 237, 204, 123, (128,417,0): 240, 208, 123, (128,418,0): 243, 211, 126, (128,419,0): 242, 210, 123, (128,420,0): 239, 207, 120, (128,421,0): 236, 204, 117, (128,422,0): 237, 205, 118, (128,423,0): 239, 208, 118, (128,424,0): 237, 206, 116, (128,425,0): 236, 205, 115, (128,426,0): 234, 203, 113, (128,427,0): 232, 201, 111, (128,428,0): 232, 201, 110, (128,429,0): 233, 202, 111, (128,430,0): 234, 203, 112, (128,431,0): 235, 204, 114, (128,432,0): 232, 202, 114, (128,433,0): 227, 200, 111, (128,434,0): 225, 195, 107, (128,435,0): 223, 193, 103, (128,436,0): 226, 195, 104, (128,437,0): 232, 199, 106, (128,438,0): 239, 206, 111, (128,439,0): 243, 210, 115, (128,440,0): 245, 212, 115, (128,441,0): 245, 212, 115, (128,442,0): 242, 209, 114, (128,443,0): 239, 206, 111, (128,444,0): 231, 201, 105, (128,445,0): 224, 196, 99, (128,446,0): 219, 190, 96, (128,447,0): 215, 186, 92, (128,448,0): 215, 184, 91, (128,449,0): 215, 184, 91, (128,450,0): 212, 182, 92, (128,451,0): 207, 180, 93, (128,452,0): 201, 176, 94, (128,453,0): 194, 171, 93, (128,454,0): 187, 167, 96, (128,455,0): 183, 165, 99, (128,456,0): 168, 152, 92, (128,457,0): 162, 147, 90, (128,458,0): 155, 139, 87, (128,459,0): 148, 134, 85, (128,460,0): 145, 131, 86, (128,461,0): 141, 126, 83, (128,462,0): 137, 122, 79, (128,463,0): 135, 117, 77, (128,464,0): 137, 115, 76, (128,465,0): 138, 114, 76, (128,466,0): 139, 115, 77, (128,467,0): 140, 117, 76, (128,468,0): 144, 121, 79, (128,469,0): 149, 126, 82, (128,470,0): 154, 131, 87, (128,471,0): 157, 135, 88, (128,472,0): 157, 135, 88, (128,473,0): 156, 134, 87, (128,474,0): 155, 133, 86, (128,475,0): 154, 132, 85, (128,476,0): 155, 132, 88, (128,477,0): 157, 134, 90, (128,478,0): 160, 137, 93, (128,479,0): 160, 139, 94, (128,480,0): 158, 137, 92, (128,481,0): 155, 137, 91, (128,482,0): 154, 136, 90, (128,483,0): 154, 136, 90, (128,484,0): 153, 136, 90, (128,485,0): 154, 137, 91, (128,486,0): 155, 138, 92, (128,487,0): 156, 139, 93, (128,488,0): 155, 141, 94, (128,489,0): 154, 140, 93, (128,490,0): 153, 141, 93, (128,491,0): 152, 140, 92, (128,492,0): 151, 139, 91, (128,493,0): 150, 138, 90, (128,494,0): 149, 139, 90, (128,495,0): 148, 137, 91, (128,496,0): 142, 134, 88, (128,497,0): 141, 134, 90, (128,498,0): 140, 133, 89, (128,499,0): 138, 131, 87, (128,500,0): 137, 128, 85, (128,501,0): 136, 127, 84, (128,502,0): 135, 126, 85, (128,503,0): 134, 125, 84, (128,504,0): 133, 121, 81, (128,505,0): 134, 122, 82, (128,506,0): 136, 124, 86, (128,507,0): 136, 124, 86, (128,508,0): 137, 123, 86, (128,509,0): 135, 121, 84, (128,510,0): 133, 119, 84, (128,511,0): 133, 117, 81, (128,512,0): 129, 113, 77, (128,513,0): 127, 112, 73, (128,514,0): 126, 108, 70, (128,515,0): 124, 109, 70, (128,516,0): 127, 109, 73, (128,517,0): 126, 108, 72, (128,518,0): 123, 105, 69, (128,519,0): 121, 103, 67, (128,520,0): 126, 106, 73, (128,521,0): 127, 107, 74, (128,522,0): 129, 106, 74, (128,523,0): 130, 107, 75, (128,524,0): 129, 106, 75, (128,525,0): 128, 105, 74, (128,526,0): 127, 104, 73, (128,527,0): 126, 102, 74, (128,528,0): 120, 96, 72, (128,529,0): 119, 95, 71, (128,530,0): 119, 93, 70, (128,531,0): 117, 93, 69, (128,532,0): 116, 91, 69, (128,533,0): 114, 89, 67, (128,534,0): 111, 89, 66, (128,535,0): 111, 89, 66, (128,536,0): 107, 85, 64, (128,537,0): 106, 84, 63, (128,538,0): 103, 82, 63, (128,539,0): 101, 80, 61, (128,540,0): 99, 78, 59, (128,541,0): 97, 79, 59, (128,542,0): 99, 78, 61, (128,543,0): 97, 78, 63, (128,544,0): 98, 79, 64, (128,545,0): 97, 79, 65, (128,546,0): 97, 79, 65, (128,547,0): 96, 78, 64, (128,548,0): 96, 78, 64, (128,549,0): 96, 78, 64, (128,550,0): 96, 78, 64, (128,551,0): 96, 78, 64, (128,552,0): 97, 79, 67, (128,553,0): 96, 78, 66, (128,554,0): 94, 76, 66, (128,555,0): 92, 74, 64, (128,556,0): 89, 71, 61, (128,557,0): 86, 67, 60, (128,558,0): 85, 66, 59, (128,559,0): 84, 63, 58, (128,560,0): 82, 61, 58, (128,561,0): 80, 56, 54, (128,562,0): 74, 53, 50, (128,563,0): 72, 51, 48, (128,564,0): 72, 53, 49, (128,565,0): 71, 53, 49, (128,566,0): 69, 51, 47, (128,567,0): 65, 50, 45, (128,568,0): 64, 49, 44, (128,569,0): 65, 50, 45, (128,570,0): 69, 51, 47, (128,571,0): 70, 52, 48, (128,572,0): 73, 54, 50, (128,573,0): 74, 55, 51, (128,574,0): 75, 54, 51, (128,575,0): 75, 54, 51, (128,576,0): 75, 54, 49, (128,577,0): 76, 55, 50, (128,578,0): 77, 56, 51, (128,579,0): 77, 56, 51, (128,580,0): 77, 56, 51, (128,581,0): 76, 55, 50, (128,582,0): 74, 53, 48, (128,583,0): 74, 53, 48, (128,584,0): 76, 55, 50, (128,585,0): 76, 55, 50, (128,586,0): 77, 56, 51, (128,587,0): 77, 56, 51, (128,588,0): 78, 57, 52, (128,589,0): 78, 57, 52, (128,590,0): 79, 58, 53, (128,591,0): 79, 58, 53, (128,592,0): 79, 58, 53, (128,593,0): 78, 59, 53, (128,594,0): 78, 57, 52, (128,595,0): 76, 57, 51, (128,596,0): 74, 53, 48, (128,597,0): 70, 51, 45, (128,598,0): 68, 47, 42, (128,599,0): 66, 47, 41, (129,0,0): 45, 28, 44, (129,1,0): 45, 28, 44, (129,2,0): 44, 30, 45, (129,3,0): 44, 30, 45, (129,4,0): 43, 29, 46, (129,5,0): 40, 26, 43, (129,6,0): 35, 22, 39, (129,7,0): 33, 20, 38, (129,8,0): 30, 19, 36, (129,9,0): 30, 19, 36, (129,10,0): 31, 19, 39, (129,11,0): 31, 19, 39, (129,12,0): 30, 21, 40, (129,13,0): 30, 21, 42, (129,14,0): 31, 22, 43, (129,15,0): 33, 21, 41, (129,16,0): 33, 19, 36, (129,17,0): 36, 19, 35, (129,18,0): 38, 21, 37, (129,19,0): 40, 23, 39, (129,20,0): 41, 24, 40, (129,21,0): 41, 24, 40, (129,22,0): 41, 24, 40, (129,23,0): 41, 24, 40, (129,24,0): 40, 23, 39, (129,25,0): 41, 24, 40, (129,26,0): 41, 24, 40, (129,27,0): 42, 25, 41, (129,28,0): 43, 26, 42, (129,29,0): 43, 26, 42, (129,30,0): 44, 27, 43, (129,31,0): 44, 27, 43, (129,32,0): 45, 28, 44, (129,33,0): 45, 28, 44, (129,34,0): 45, 28, 44, (129,35,0): 45, 28, 44, (129,36,0): 45, 28, 44, (129,37,0): 45, 28, 44, (129,38,0): 45, 28, 44, (129,39,0): 45, 28, 44, (129,40,0): 47, 30, 46, (129,41,0): 47, 30, 46, (129,42,0): 47, 30, 46, (129,43,0): 47, 30, 46, (129,44,0): 47, 30, 46, (129,45,0): 47, 30, 46, (129,46,0): 47, 30, 46, (129,47,0): 47, 30, 46, (129,48,0): 45, 30, 49, (129,49,0): 45, 30, 49, (129,50,0): 45, 30, 49, (129,51,0): 45, 30, 49, (129,52,0): 47, 30, 49, (129,53,0): 47, 30, 49, (129,54,0): 47, 30, 49, (129,55,0): 47, 30, 49, (129,56,0): 46, 27, 47, (129,57,0): 46, 27, 47, (129,58,0): 48, 26, 47, (129,59,0): 48, 26, 47, (129,60,0): 48, 26, 47, (129,61,0): 48, 26, 47, (129,62,0): 49, 25, 47, (129,63,0): 48, 27, 46, (129,64,0): 44, 27, 45, (129,65,0): 42, 28, 43, (129,66,0): 41, 27, 42, (129,67,0): 40, 26, 41, (129,68,0): 39, 25, 40, (129,69,0): 37, 25, 39, (129,70,0): 36, 24, 38, (129,71,0): 35, 23, 37, (129,72,0): 33, 22, 36, (129,73,0): 33, 22, 36, (129,74,0): 33, 22, 36, (129,75,0): 31, 23, 36, (129,76,0): 31, 23, 36, (129,77,0): 31, 23, 36, (129,78,0): 30, 24, 36, (129,79,0): 31, 23, 34, (129,80,0): 34, 22, 34, (129,81,0): 35, 22, 32, (129,82,0): 35, 22, 32, (129,83,0): 36, 23, 33, (129,84,0): 36, 23, 33, (129,85,0): 37, 24, 34, (129,86,0): 37, 24, 34, (129,87,0): 38, 25, 35, (129,88,0): 36, 23, 33, (129,89,0): 36, 23, 33, (129,90,0): 35, 22, 32, (129,91,0): 35, 22, 32, (129,92,0): 34, 21, 31, (129,93,0): 33, 20, 30, (129,94,0): 33, 20, 30, (129,95,0): 33, 19, 32, (129,96,0): 30, 17, 34, (129,97,0): 30, 17, 35, (129,98,0): 29, 16, 34, (129,99,0): 28, 15, 33, (129,100,0): 27, 16, 33, (129,101,0): 26, 15, 32, (129,102,0): 23, 14, 31, (129,103,0): 23, 14, 31, (129,104,0): 23, 14, 31, (129,105,0): 23, 14, 31, (129,106,0): 22, 15, 31, (129,107,0): 22, 15, 31, (129,108,0): 20, 16, 31, (129,109,0): 19, 15, 30, (129,110,0): 19, 15, 30, (129,111,0): 19, 15, 29, (129,112,0): 24, 16, 31, (129,113,0): 24, 16, 29, (129,114,0): 24, 16, 29, (129,115,0): 24, 16, 29, (129,116,0): 24, 16, 29, (129,117,0): 24, 16, 29, (129,118,0): 24, 16, 29, (129,119,0): 24, 16, 29, (129,120,0): 24, 16, 29, (129,121,0): 24, 16, 29, (129,122,0): 24, 16, 29, (129,123,0): 25, 17, 30, (129,124,0): 25, 17, 30, (129,125,0): 26, 18, 31, (129,126,0): 26, 18, 31, (129,127,0): 27, 19, 30, (129,128,0): 31, 19, 31, (129,129,0): 31, 19, 29, (129,130,0): 31, 19, 29, (129,131,0): 31, 19, 29, (129,132,0): 31, 19, 29, (129,133,0): 31, 19, 29, (129,134,0): 32, 19, 29, (129,135,0): 32, 19, 29, (129,136,0): 36, 20, 31, (129,137,0): 36, 20, 31, (129,138,0): 37, 19, 31, (129,139,0): 36, 18, 30, (129,140,0): 35, 17, 29, (129,141,0): 34, 16, 28, (129,142,0): 34, 16, 28, (129,143,0): 34, 16, 28, (129,144,0): 35, 18, 34, (129,145,0): 33, 19, 34, (129,146,0): 34, 20, 35, (129,147,0): 34, 20, 35, (129,148,0): 35, 21, 36, (129,149,0): 35, 21, 36, (129,150,0): 36, 22, 35, (129,151,0): 36, 22, 35, (129,152,0): 34, 21, 31, (129,153,0): 34, 21, 31, (129,154,0): 35, 22, 31, (129,155,0): 35, 22, 31, (129,156,0): 36, 23, 32, (129,157,0): 36, 23, 32, (129,158,0): 37, 24, 33, (129,159,0): 39, 23, 33, (129,160,0): 41, 24, 34, (129,161,0): 41, 24, 34, (129,162,0): 41, 24, 34, (129,163,0): 40, 23, 33, (129,164,0): 40, 23, 33, (129,165,0): 39, 22, 32, (129,166,0): 39, 22, 32, (129,167,0): 39, 22, 32, (129,168,0): 39, 22, 32, (129,169,0): 39, 22, 32, (129,170,0): 39, 22, 32, (129,171,0): 39, 22, 32, (129,172,0): 39, 22, 32, (129,173,0): 39, 22, 32, (129,174,0): 39, 22, 32, (129,175,0): 39, 22, 30, (129,176,0): 40, 23, 31, (129,177,0): 40, 23, 29, (129,178,0): 40, 23, 29, (129,179,0): 40, 23, 29, (129,180,0): 42, 23, 27, (129,181,0): 42, 23, 27, (129,182,0): 42, 23, 27, (129,183,0): 42, 23, 27, (129,184,0): 42, 22, 24, (129,185,0): 42, 22, 24, (129,186,0): 44, 22, 24, (129,187,0): 44, 22, 24, (129,188,0): 45, 23, 25, (129,189,0): 45, 23, 25, (129,190,0): 47, 23, 23, (129,191,0): 48, 24, 24, (129,192,0): 50, 28, 30, (129,193,0): 50, 28, 30, (129,194,0): 50, 28, 30, (129,195,0): 51, 29, 31, (129,196,0): 53, 29, 29, (129,197,0): 54, 30, 30, (129,198,0): 55, 29, 30, (129,199,0): 56, 30, 31, (129,200,0): 53, 27, 26, (129,201,0): 53, 27, 26, (129,202,0): 56, 28, 25, (129,203,0): 56, 28, 25, (129,204,0): 58, 28, 26, (129,205,0): 58, 28, 26, (129,206,0): 59, 30, 26, (129,207,0): 59, 29, 27, (129,208,0): 59, 29, 31, (129,209,0): 59, 28, 33, (129,210,0): 59, 28, 33, (129,211,0): 59, 28, 33, (129,212,0): 59, 29, 31, (129,213,0): 59, 29, 31, (129,214,0): 59, 29, 31, (129,215,0): 59, 29, 31, (129,216,0): 57, 27, 27, (129,217,0): 58, 28, 28, (129,218,0): 59, 29, 27, (129,219,0): 60, 30, 28, (129,220,0): 61, 31, 29, (129,221,0): 62, 32, 30, (129,222,0): 63, 34, 30, (129,223,0): 64, 35, 29, (129,224,0): 63, 33, 25, (129,225,0): 64, 34, 24, (129,226,0): 66, 36, 26, (129,227,0): 67, 37, 27, (129,228,0): 68, 38, 28, (129,229,0): 67, 37, 27, (129,230,0): 66, 36, 26, (129,231,0): 65, 35, 25, (129,232,0): 62, 32, 22, (129,233,0): 62, 32, 22, (129,234,0): 62, 32, 22, (129,235,0): 62, 32, 22, (129,236,0): 62, 32, 22, (129,237,0): 62, 32, 22, (129,238,0): 62, 32, 22, (129,239,0): 62, 32, 22, (129,240,0): 60, 30, 20, (129,241,0): 60, 30, 20, (129,242,0): 60, 30, 20, (129,243,0): 60, 30, 20, (129,244,0): 60, 30, 20, (129,245,0): 60, 30, 20, (129,246,0): 60, 30, 20, (129,247,0): 60, 30, 20, (129,248,0): 62, 32, 22, (129,249,0): 62, 32, 22, (129,250,0): 63, 33, 23, (129,251,0): 64, 34, 24, (129,252,0): 65, 35, 25, (129,253,0): 66, 36, 26, (129,254,0): 67, 37, 27, (129,255,0): 67, 37, 27, (129,256,0): 69, 35, 25, (129,257,0): 69, 35, 25, (129,258,0): 69, 35, 25, (129,259,0): 69, 35, 25, (129,260,0): 69, 35, 25, (129,261,0): 69, 35, 25, (129,262,0): 69, 35, 25, (129,263,0): 69, 35, 25, (129,264,0): 68, 34, 24, (129,265,0): 68, 34, 24, (129,266,0): 68, 34, 24, (129,267,0): 68, 34, 24, (129,268,0): 68, 34, 24, (129,269,0): 68, 34, 24, (129,270,0): 68, 34, 24, (129,271,0): 68, 34, 25, (129,272,0): 69, 34, 28, (129,273,0): 69, 34, 30, (129,274,0): 70, 35, 31, (129,275,0): 70, 35, 31, (129,276,0): 71, 36, 32, (129,277,0): 71, 36, 32, (129,278,0): 72, 37, 31, (129,279,0): 72, 37, 31, (129,280,0): 74, 40, 31, (129,281,0): 74, 40, 31, (129,282,0): 76, 42, 32, (129,283,0): 77, 43, 33, (129,284,0): 79, 45, 35, (129,285,0): 80, 46, 36, (129,286,0): 82, 48, 38, (129,287,0): 82, 48, 38, (129,288,0): 82, 48, 38, (129,289,0): 83, 49, 39, (129,290,0): 85, 51, 41, (129,291,0): 87, 53, 43, (129,292,0): 90, 56, 46, (129,293,0): 92, 58, 46, (129,294,0): 96, 60, 46, (129,295,0): 97, 61, 45, (129,296,0): 101, 64, 46, (129,297,0): 103, 67, 45, (129,298,0): 106, 68, 45, (129,299,0): 108, 71, 44, (129,300,0): 112, 76, 44, (129,301,0): 118, 82, 46, (129,302,0): 127, 92, 54, (129,303,0): 139, 98, 52, (129,304,0): 163, 114, 55, (129,305,0): 184, 130, 60, (129,306,0): 199, 143, 68, (129,307,0): 198, 143, 61, (129,308,0): 193, 137, 54, (129,309,0): 190, 135, 53, (129,310,0): 185, 133, 58, (129,311,0): 179, 132, 62, (129,312,0): 174, 134, 65, (129,313,0): 168, 134, 63, (129,314,0): 161, 133, 59, (129,315,0): 156, 133, 57, (129,316,0): 151, 132, 55, (129,317,0): 150, 132, 56, (129,318,0): 151, 131, 58, (129,319,0): 151, 131, 62, (129,320,0): 160, 132, 67, (129,321,0): 160, 132, 67, (129,322,0): 159, 131, 68, (129,323,0): 157, 132, 68, (129,324,0): 155, 131, 69, (129,325,0): 152, 130, 70, (129,326,0): 151, 129, 71, (129,327,0): 150, 130, 71, (129,328,0): 150, 128, 71, (129,329,0): 150, 127, 73, (129,330,0): 150, 127, 75, (129,331,0): 153, 127, 78, (129,332,0): 156, 128, 80, (129,333,0): 160, 129, 83, (129,334,0): 162, 131, 85, (129,335,0): 165, 133, 86, (129,336,0): 170, 134, 84, (129,337,0): 173, 136, 84, (129,338,0): 178, 138, 87, (129,339,0): 182, 142, 91, (129,340,0): 186, 144, 94, (129,341,0): 188, 146, 96, (129,342,0): 191, 147, 98, (129,343,0): 193, 147, 98, (129,344,0): 196, 148, 100, (129,345,0): 197, 146, 99, (129,346,0): 197, 145, 98, (129,347,0): 197, 145, 98, (129,348,0): 199, 145, 99, (129,349,0): 202, 148, 102, (129,350,0): 207, 150, 105, (129,351,0): 211, 153, 107, (129,352,0): 217, 157, 107, (129,353,0): 219, 158, 104, (129,354,0): 223, 158, 104, (129,355,0): 225, 158, 103, (129,356,0): 228, 157, 103, (129,357,0): 231, 156, 101, (129,358,0): 233, 154, 98, (129,359,0): 233, 154, 98, (129,360,0): 231, 152, 96, (129,361,0): 230, 153, 97, (129,362,0): 229, 154, 99, (129,363,0): 226, 155, 101, (129,364,0): 223, 156, 101, (129,365,0): 219, 156, 102, (129,366,0): 217, 156, 102, (129,367,0): 212, 157, 103, (129,368,0): 205, 158, 102, (129,369,0): 202, 161, 105, (129,370,0): 204, 164, 105, (129,371,0): 207, 165, 107, (129,372,0): 210, 168, 108, (129,373,0): 215, 170, 111, (129,374,0): 217, 173, 112, (129,375,0): 220, 174, 112, (129,376,0): 224, 179, 114, (129,377,0): 228, 180, 114, (129,378,0): 229, 182, 114, (129,379,0): 231, 184, 116, (129,380,0): 233, 184, 115, (129,381,0): 233, 184, 115, (129,382,0): 232, 184, 112, (129,383,0): 234, 181, 111, (129,384,0): 248, 187, 120, (129,385,0): 251, 187, 123, (129,386,0): 249, 188, 125, (129,387,0): 246, 188, 125, (129,388,0): 240, 186, 126, (129,389,0): 232, 183, 124, (129,390,0): 225, 180, 121, (129,391,0): 219, 179, 118, (129,392,0): 212, 173, 114, (129,393,0): 205, 169, 109, (129,394,0): 201, 165, 103, (129,395,0): 203, 168, 104, (129,396,0): 210, 175, 109, (129,397,0): 215, 180, 112, (129,398,0): 217, 180, 112, (129,399,0): 212, 179, 112, (129,400,0): 211, 182, 122, (129,401,0): 207, 182, 125, (129,402,0): 206, 182, 122, (129,403,0): 205, 181, 121, (129,404,0): 207, 181, 120, (129,405,0): 208, 183, 119, (129,406,0): 211, 183, 118, (129,407,0): 212, 185, 118, (129,408,0): 214, 187, 118, (129,409,0): 215, 189, 115, (129,410,0): 217, 189, 116, (129,411,0): 219, 191, 117, (129,412,0): 221, 192, 116, (129,413,0): 223, 194, 116, (129,414,0): 224, 195, 117, (129,415,0): 225, 196, 116, (129,416,0): 235, 204, 121, (129,417,0): 239, 207, 122, (129,418,0): 241, 209, 124, (129,419,0): 241, 209, 124, (129,420,0): 238, 206, 121, (129,421,0): 235, 203, 118, (129,422,0): 236, 204, 119, (129,423,0): 237, 205, 120, (129,424,0): 236, 204, 117, (129,425,0): 235, 203, 116, (129,426,0): 233, 201, 114, (129,427,0): 232, 200, 113, (129,428,0): 232, 200, 113, (129,429,0): 233, 201, 114, (129,430,0): 234, 202, 115, (129,431,0): 234, 204, 116, (129,432,0): 231, 204, 117, (129,433,0): 229, 202, 113, (129,434,0): 227, 197, 107, (129,435,0): 225, 196, 104, (129,436,0): 229, 195, 105, (129,437,0): 233, 200, 105, (129,438,0): 239, 204, 110, (129,439,0): 242, 208, 111, (129,440,0): 245, 211, 114, (129,441,0): 244, 210, 113, (129,442,0): 241, 208, 113, (129,443,0): 236, 206, 110, (129,444,0): 231, 200, 107, (129,445,0): 225, 196, 102, (129,446,0): 218, 192, 99, (129,447,0): 218, 189, 97, (129,448,0): 217, 186, 93, (129,449,0): 216, 185, 92, (129,450,0): 213, 183, 93, (129,451,0): 207, 180, 93, (129,452,0): 201, 176, 94, (129,453,0): 193, 171, 95, (129,454,0): 186, 167, 98, (129,455,0): 180, 165, 100, (129,456,0): 166, 151, 92, (129,457,0): 159, 146, 91, (129,458,0): 152, 140, 88, (129,459,0): 147, 135, 87, (129,460,0): 144, 131, 86, (129,461,0): 141, 128, 84, (129,462,0): 136, 123, 81, (129,463,0): 134, 119, 78, (129,464,0): 138, 116, 79, (129,465,0): 139, 115, 79, (129,466,0): 139, 115, 77, (129,467,0): 141, 118, 77, (129,468,0): 144, 121, 79, (129,469,0): 149, 126, 82, (129,470,0): 154, 132, 85, (129,471,0): 157, 135, 86, (129,472,0): 157, 135, 86, (129,473,0): 156, 134, 85, (129,474,0): 156, 134, 85, (129,475,0): 156, 134, 85, (129,476,0): 157, 135, 88, (129,477,0): 158, 135, 91, (129,478,0): 159, 136, 92, (129,479,0): 159, 138, 93, (129,480,0): 158, 137, 92, (129,481,0): 155, 137, 91, (129,482,0): 154, 136, 90, (129,483,0): 154, 136, 90, (129,484,0): 153, 136, 90, (129,485,0): 154, 137, 91, (129,486,0): 156, 139, 93, (129,487,0): 157, 140, 94, (129,488,0): 155, 141, 94, (129,489,0): 155, 141, 94, (129,490,0): 154, 142, 94, (129,491,0): 153, 141, 93, (129,492,0): 152, 140, 92, (129,493,0): 152, 140, 92, (129,494,0): 150, 140, 91, (129,495,0): 148, 140, 91, (129,496,0): 143, 137, 89, (129,497,0): 140, 136, 89, (129,498,0): 139, 135, 88, (129,499,0): 138, 134, 87, (129,500,0): 138, 131, 85, (129,501,0): 136, 129, 85, (129,502,0): 135, 128, 84, (129,503,0): 135, 128, 84, (129,504,0): 134, 125, 84, (129,505,0): 135, 126, 85, (129,506,0): 138, 126, 88, (129,507,0): 138, 126, 88, (129,508,0): 137, 125, 87, (129,509,0): 135, 123, 85, (129,510,0): 134, 120, 83, (129,511,0): 133, 119, 82, (129,512,0): 130, 115, 76, (129,513,0): 128, 113, 72, (129,514,0): 125, 110, 69, (129,515,0): 125, 110, 69, (129,516,0): 126, 111, 72, (129,517,0): 128, 110, 72, (129,518,0): 125, 107, 69, (129,519,0): 122, 104, 66, (129,520,0): 126, 106, 71, (129,521,0): 126, 106, 71, (129,522,0): 129, 106, 74, (129,523,0): 129, 106, 74, (129,524,0): 128, 105, 73, (129,525,0): 127, 104, 72, (129,526,0): 125, 102, 71, (129,527,0): 125, 99, 72, (129,528,0): 121, 95, 72, (129,529,0): 120, 93, 72, (129,530,0): 119, 92, 71, (129,531,0): 118, 91, 70, (129,532,0): 115, 90, 70, (129,533,0): 114, 89, 69, (129,534,0): 111, 89, 68, (129,535,0): 110, 88, 67, (129,536,0): 108, 85, 67, (129,537,0): 107, 84, 66, (129,538,0): 103, 82, 65, (129,539,0): 101, 80, 63, (129,540,0): 97, 78, 61, (129,541,0): 96, 77, 60, (129,542,0): 96, 77, 62, (129,543,0): 96, 77, 62, (129,544,0): 95, 77, 63, (129,545,0): 95, 77, 63, (129,546,0): 95, 77, 63, (129,547,0): 95, 77, 63, (129,548,0): 94, 76, 64, (129,549,0): 94, 76, 64, (129,550,0): 94, 76, 64, (129,551,0): 93, 75, 63, (129,552,0): 95, 77, 67, (129,553,0): 94, 76, 66, (129,554,0): 92, 73, 66, (129,555,0): 90, 71, 64, (129,556,0): 88, 69, 62, (129,557,0): 86, 67, 60, (129,558,0): 85, 66, 60, (129,559,0): 84, 65, 59, (129,560,0): 84, 60, 58, (129,561,0): 80, 56, 54, (129,562,0): 74, 53, 50, (129,563,0): 72, 53, 49, (129,564,0): 72, 53, 49, (129,565,0): 71, 53, 49, (129,566,0): 67, 52, 47, (129,567,0): 65, 50, 45, (129,568,0): 65, 50, 45, (129,569,0): 66, 51, 46, (129,570,0): 68, 50, 46, (129,571,0): 69, 51, 47, (129,572,0): 72, 51, 48, (129,573,0): 74, 53, 50, (129,574,0): 77, 53, 51, (129,575,0): 78, 54, 52, (129,576,0): 76, 55, 50, (129,577,0): 76, 55, 50, (129,578,0): 77, 56, 51, (129,579,0): 78, 57, 52, (129,580,0): 78, 57, 52, (129,581,0): 77, 56, 51, (129,582,0): 76, 55, 50, (129,583,0): 75, 54, 49, (129,584,0): 77, 56, 51, (129,585,0): 77, 56, 51, (129,586,0): 77, 56, 51, (129,587,0): 78, 57, 52, (129,588,0): 78, 57, 52, (129,589,0): 79, 58, 53, (129,590,0): 79, 58, 53, (129,591,0): 79, 58, 53, (129,592,0): 78, 59, 53, (129,593,0): 78, 59, 53, (129,594,0): 77, 58, 52, (129,595,0): 76, 57, 51, (129,596,0): 73, 54, 48, (129,597,0): 70, 51, 45, (129,598,0): 67, 48, 42, (129,599,0): 65, 46, 40, (130,0,0): 46, 30, 43, (130,1,0): 47, 31, 44, (130,2,0): 45, 31, 44, (130,3,0): 44, 30, 43, (130,4,0): 41, 27, 42, (130,5,0): 38, 24, 39, (130,6,0): 33, 21, 35, (130,7,0): 30, 17, 34, (130,8,0): 29, 18, 34, (130,9,0): 30, 19, 35, (130,10,0): 30, 19, 36, (130,11,0): 30, 19, 36, (130,12,0): 29, 20, 37, (130,13,0): 29, 20, 39, (130,14,0): 30, 21, 40, (130,15,0): 32, 21, 38, (130,16,0): 34, 20, 37, (130,17,0): 37, 20, 36, (130,18,0): 39, 22, 38, (130,19,0): 40, 23, 39, (130,20,0): 42, 25, 41, (130,21,0): 42, 25, 41, (130,22,0): 42, 25, 41, (130,23,0): 41, 24, 40, (130,24,0): 42, 25, 41, (130,25,0): 42, 25, 41, (130,26,0): 42, 25, 41, (130,27,0): 42, 25, 41, (130,28,0): 43, 26, 42, (130,29,0): 43, 26, 42, (130,30,0): 44, 27, 43, (130,31,0): 44, 27, 43, (130,32,0): 45, 28, 44, (130,33,0): 45, 28, 44, (130,34,0): 45, 28, 44, (130,35,0): 45, 28, 44, (130,36,0): 45, 28, 44, (130,37,0): 45, 28, 44, (130,38,0): 45, 28, 44, (130,39,0): 45, 28, 44, (130,40,0): 47, 30, 46, (130,41,0): 47, 30, 46, (130,42,0): 47, 30, 46, (130,43,0): 47, 30, 46, (130,44,0): 47, 30, 46, (130,45,0): 47, 30, 46, (130,46,0): 47, 30, 46, (130,47,0): 47, 30, 46, (130,48,0): 45, 30, 49, (130,49,0): 45, 30, 49, (130,50,0): 47, 30, 49, (130,51,0): 47, 30, 49, (130,52,0): 47, 30, 49, (130,53,0): 47, 30, 49, (130,54,0): 48, 29, 49, (130,55,0): 48, 29, 49, (130,56,0): 49, 27, 48, (130,57,0): 49, 27, 48, (130,58,0): 49, 27, 48, (130,59,0): 49, 27, 48, (130,60,0): 50, 26, 48, (130,61,0): 50, 26, 48, (130,62,0): 50, 26, 48, (130,63,0): 49, 28, 47, (130,64,0): 46, 27, 46, (130,65,0): 44, 27, 43, (130,66,0): 44, 27, 43, (130,67,0): 40, 26, 41, (130,68,0): 39, 25, 40, (130,69,0): 38, 24, 39, (130,70,0): 37, 25, 39, (130,71,0): 36, 24, 38, (130,72,0): 34, 22, 36, (130,73,0): 33, 22, 36, (130,74,0): 33, 22, 36, (130,75,0): 33, 22, 36, (130,76,0): 31, 23, 36, (130,77,0): 31, 23, 36, (130,78,0): 31, 23, 36, (130,79,0): 33, 23, 34, (130,80,0): 36, 22, 35, (130,81,0): 38, 22, 33, (130,82,0): 38, 22, 33, (130,83,0): 39, 23, 34, (130,84,0): 39, 23, 34, (130,85,0): 40, 24, 35, (130,86,0): 40, 24, 35, (130,87,0): 40, 24, 35, (130,88,0): 40, 24, 35, (130,89,0): 40, 24, 35, (130,90,0): 39, 23, 34, (130,91,0): 39, 23, 34, (130,92,0): 38, 22, 33, (130,93,0): 38, 22, 33, (130,94,0): 38, 22, 33, (130,95,0): 35, 21, 34, (130,96,0): 32, 19, 36, (130,97,0): 32, 19, 37, (130,98,0): 31, 18, 36, (130,99,0): 30, 17, 35, (130,100,0): 28, 17, 34, (130,101,0): 26, 15, 32, (130,102,0): 26, 15, 32, (130,103,0): 25, 14, 31, (130,104,0): 25, 16, 33, (130,105,0): 25, 16, 33, (130,106,0): 23, 16, 32, (130,107,0): 23, 16, 32, (130,108,0): 22, 15, 31, (130,109,0): 21, 14, 30, (130,110,0): 18, 14, 29, (130,111,0): 18, 14, 28, (130,112,0): 24, 16, 31, (130,113,0): 24, 16, 29, (130,114,0): 24, 16, 29, (130,115,0): 24, 16, 29, (130,116,0): 24, 16, 29, (130,117,0): 24, 16, 29, (130,118,0): 24, 16, 29, (130,119,0): 24, 16, 29, (130,120,0): 23, 15, 28, (130,121,0): 24, 16, 29, (130,122,0): 24, 16, 29, (130,123,0): 25, 17, 30, (130,124,0): 25, 17, 30, (130,125,0): 26, 18, 31, (130,126,0): 26, 18, 31, (130,127,0): 26, 18, 29, (130,128,0): 31, 19, 31, (130,129,0): 31, 19, 29, (130,130,0): 31, 19, 29, (130,131,0): 31, 19, 29, (130,132,0): 31, 19, 29, (130,133,0): 31, 19, 29, (130,134,0): 32, 19, 29, (130,135,0): 32, 19, 29, (130,136,0): 36, 20, 31, (130,137,0): 36, 20, 31, (130,138,0): 36, 18, 30, (130,139,0): 36, 18, 30, (130,140,0): 35, 17, 29, (130,141,0): 35, 17, 29, (130,142,0): 34, 16, 28, (130,143,0): 34, 16, 28, (130,144,0): 34, 17, 33, (130,145,0): 34, 17, 33, (130,146,0): 35, 18, 34, (130,147,0): 35, 18, 34, (130,148,0): 36, 20, 33, (130,149,0): 36, 20, 33, (130,150,0): 37, 21, 34, (130,151,0): 37, 21, 34, (130,152,0): 36, 20, 31, (130,153,0): 36, 20, 31, (130,154,0): 37, 21, 31, (130,155,0): 37, 21, 31, (130,156,0): 38, 22, 32, (130,157,0): 38, 22, 32, (130,158,0): 39, 24, 31, (130,159,0): 39, 24, 31, (130,160,0): 41, 24, 34, (130,161,0): 41, 24, 34, (130,162,0): 41, 24, 34, (130,163,0): 40, 23, 33, (130,164,0): 40, 23, 33, (130,165,0): 39, 22, 32, (130,166,0): 39, 22, 32, (130,167,0): 39, 22, 32, (130,168,0): 39, 22, 32, (130,169,0): 39, 22, 32, (130,170,0): 39, 22, 32, (130,171,0): 39, 22, 32, (130,172,0): 39, 22, 32, (130,173,0): 39, 22, 32, (130,174,0): 39, 22, 32, (130,175,0): 39, 22, 30, (130,176,0): 40, 23, 31, (130,177,0): 40, 23, 29, (130,178,0): 40, 23, 29, (130,179,0): 40, 23, 29, (130,180,0): 42, 23, 27, (130,181,0): 42, 23, 27, (130,182,0): 42, 23, 27, (130,183,0): 42, 23, 27, (130,184,0): 42, 22, 24, (130,185,0): 43, 23, 25, (130,186,0): 44, 22, 24, (130,187,0): 44, 22, 24, (130,188,0): 45, 23, 25, (130,189,0): 46, 24, 26, (130,190,0): 48, 24, 24, (130,191,0): 48, 24, 24, (130,192,0): 49, 27, 29, (130,193,0): 50, 28, 30, (130,194,0): 50, 28, 30, (130,195,0): 51, 29, 31, (130,196,0): 53, 29, 29, (130,197,0): 54, 30, 30, (130,198,0): 55, 29, 30, (130,199,0): 55, 29, 30, (130,200,0): 53, 27, 26, (130,201,0): 53, 27, 26, (130,202,0): 56, 28, 25, (130,203,0): 56, 28, 25, (130,204,0): 58, 28, 26, (130,205,0): 58, 28, 26, (130,206,0): 59, 30, 26, (130,207,0): 59, 29, 27, (130,208,0): 59, 29, 31, (130,209,0): 59, 28, 33, (130,210,0): 59, 28, 33, (130,211,0): 59, 28, 33, (130,212,0): 59, 29, 31, (130,213,0): 59, 29, 31, (130,214,0): 59, 29, 31, (130,215,0): 59, 29, 31, (130,216,0): 58, 28, 28, (130,217,0): 58, 28, 28, (130,218,0): 59, 29, 27, (130,219,0): 60, 30, 28, (130,220,0): 61, 31, 29, (130,221,0): 62, 32, 30, (130,222,0): 63, 34, 30, (130,223,0): 63, 34, 28, (130,224,0): 63, 33, 25, (130,225,0): 64, 34, 24, (130,226,0): 65, 35, 25, (130,227,0): 66, 36, 26, (130,228,0): 67, 37, 27, (130,229,0): 67, 37, 27, (130,230,0): 66, 36, 26, (130,231,0): 66, 36, 26, (130,232,0): 62, 32, 22, (130,233,0): 62, 32, 22, (130,234,0): 62, 32, 22, (130,235,0): 62, 32, 22, (130,236,0): 62, 32, 22, (130,237,0): 62, 32, 22, (130,238,0): 62, 32, 22, (130,239,0): 62, 32, 22, (130,240,0): 61, 31, 21, (130,241,0): 61, 31, 21, (130,242,0): 61, 31, 21, (130,243,0): 61, 31, 21, (130,244,0): 61, 31, 21, (130,245,0): 61, 31, 21, (130,246,0): 61, 31, 21, (130,247,0): 61, 31, 21, (130,248,0): 62, 32, 22, (130,249,0): 62, 32, 22, (130,250,0): 63, 33, 23, (130,251,0): 64, 34, 24, (130,252,0): 65, 35, 25, (130,253,0): 66, 36, 26, (130,254,0): 67, 37, 27, (130,255,0): 67, 37, 27, (130,256,0): 70, 36, 26, (130,257,0): 70, 36, 26, (130,258,0): 70, 36, 26, (130,259,0): 70, 36, 26, (130,260,0): 70, 36, 26, (130,261,0): 70, 36, 26, (130,262,0): 70, 36, 26, (130,263,0): 70, 36, 26, (130,264,0): 68, 34, 24, (130,265,0): 68, 34, 24, (130,266,0): 68, 34, 24, (130,267,0): 68, 34, 24, (130,268,0): 68, 34, 24, (130,269,0): 68, 34, 24, (130,270,0): 68, 34, 24, (130,271,0): 68, 34, 25, (130,272,0): 69, 34, 28, (130,273,0): 69, 34, 30, (130,274,0): 70, 35, 31, (130,275,0): 70, 35, 31, (130,276,0): 71, 36, 30, (130,277,0): 71, 36, 30, (130,278,0): 72, 37, 31, (130,279,0): 72, 37, 31, (130,280,0): 74, 40, 31, (130,281,0): 74, 40, 31, (130,282,0): 76, 42, 32, (130,283,0): 77, 43, 33, (130,284,0): 79, 45, 35, (130,285,0): 80, 46, 36, (130,286,0): 82, 48, 36, (130,287,0): 82, 48, 36, (130,288,0): 84, 50, 38, (130,289,0): 85, 51, 39, (130,290,0): 86, 52, 42, (130,291,0): 88, 54, 44, (130,292,0): 89, 55, 43, (130,293,0): 91, 57, 45, (130,294,0): 94, 58, 44, (130,295,0): 95, 59, 43, (130,296,0): 100, 63, 45, (130,297,0): 102, 65, 46, (130,298,0): 106, 68, 45, (130,299,0): 107, 70, 43, (130,300,0): 110, 74, 42, (130,301,0): 117, 81, 45, (130,302,0): 126, 91, 53, (130,303,0): 137, 96, 50, (130,304,0): 161, 112, 53, (130,305,0): 184, 130, 58, (130,306,0): 202, 146, 69, (130,307,0): 205, 149, 66, (130,308,0): 200, 142, 58, (130,309,0): 196, 140, 57, (130,310,0): 189, 136, 60, (130,311,0): 182, 134, 62, (130,312,0): 176, 133, 64, (130,313,0): 169, 135, 64, (130,314,0): 162, 134, 60, (130,315,0): 157, 134, 56, (130,316,0): 155, 133, 57, (130,317,0): 152, 133, 57, (130,318,0): 153, 131, 58, (130,319,0): 154, 131, 63, (130,320,0): 162, 132, 68, (130,321,0): 161, 131, 69, (130,322,0): 160, 130, 70, (130,323,0): 157, 128, 68, (130,324,0): 154, 128, 69, (130,325,0): 152, 128, 68, (130,326,0): 151, 126, 69, (130,327,0): 148, 126, 68, (130,328,0): 151, 126, 70, (130,329,0): 151, 126, 72, (130,330,0): 151, 126, 72, (130,331,0): 154, 126, 76, (130,332,0): 158, 128, 78, (130,333,0): 162, 130, 83, (130,334,0): 165, 133, 86, (130,335,0): 168, 134, 86, (130,336,0): 175, 138, 86, (130,337,0): 179, 139, 87, (130,338,0): 184, 143, 91, (130,339,0): 188, 147, 95, (130,340,0): 193, 150, 99, (130,341,0): 197, 151, 101, (130,342,0): 199, 153, 103, (130,343,0): 200, 152, 103, (130,344,0): 204, 156, 107, (130,345,0): 204, 154, 105, (130,346,0): 204, 152, 104, (130,347,0): 203, 151, 103, (130,348,0): 205, 151, 104, (130,349,0): 207, 153, 106, (130,350,0): 212, 156, 109, (130,351,0): 214, 156, 108, (130,352,0): 220, 160, 108, (130,353,0): 221, 160, 105, (130,354,0): 225, 160, 106, (130,355,0): 229, 160, 105, (130,356,0): 230, 157, 102, (130,357,0): 231, 156, 99, (130,358,0): 233, 154, 98, (130,359,0): 233, 152, 96, (130,360,0): 235, 154, 98, (130,361,0): 235, 156, 100, (130,362,0): 233, 156, 100, (130,363,0): 231, 158, 103, (130,364,0): 228, 159, 104, (130,365,0): 224, 159, 105, (130,366,0): 220, 157, 103, (130,367,0): 215, 158, 103, (130,368,0): 210, 159, 104, (130,369,0): 207, 160, 104, (130,370,0): 206, 159, 103, (130,371,0): 207, 160, 104, (130,372,0): 209, 163, 104, (130,373,0): 212, 166, 107, (130,374,0): 215, 169, 109, (130,375,0): 217, 171, 109, (130,376,0): 219, 173, 111, (130,377,0): 220, 175, 110, (130,378,0): 221, 176, 111, (130,379,0): 223, 178, 111, (130,380,0): 223, 178, 111, (130,381,0): 223, 178, 111, (130,382,0): 222, 177, 109, (130,383,0): 224, 177, 109, (130,384,0): 236, 182, 118, (130,385,0): 238, 182, 121, (130,386,0): 238, 184, 124, (130,387,0): 234, 184, 125, (130,388,0): 229, 183, 124, (130,389,0): 225, 180, 123, (130,390,0): 218, 177, 121, (130,391,0): 213, 176, 121, (130,392,0): 208, 173, 119, (130,393,0): 203, 168, 112, (130,394,0): 199, 164, 106, (130,395,0): 200, 166, 105, (130,396,0): 206, 172, 109, (130,397,0): 210, 176, 112, (130,398,0): 211, 176, 112, (130,399,0): 209, 175, 112, (130,400,0): 209, 180, 122, (130,401,0): 207, 181, 124, (130,402,0): 206, 180, 121, (130,403,0): 206, 180, 121, (130,404,0): 207, 181, 120, (130,405,0): 208, 183, 119, (130,406,0): 212, 184, 119, (130,407,0): 213, 186, 119, (130,408,0): 216, 187, 119, (130,409,0): 216, 188, 115, (130,410,0): 218, 188, 116, (130,411,0): 220, 190, 117, (130,412,0): 222, 193, 117, (130,413,0): 223, 194, 116, (130,414,0): 224, 195, 117, (130,415,0): 225, 197, 114, (130,416,0): 234, 204, 118, (130,417,0): 236, 206, 118, (130,418,0): 238, 208, 120, (130,419,0): 237, 207, 119, (130,420,0): 235, 205, 117, (130,421,0): 233, 203, 115, (130,422,0): 233, 203, 117, (130,423,0): 234, 204, 118, (130,424,0): 232, 202, 116, (130,425,0): 231, 201, 115, (130,426,0): 230, 200, 114, (130,427,0): 230, 200, 114, (130,428,0): 230, 200, 114, (130,429,0): 230, 200, 114, (130,430,0): 231, 200, 117, (130,431,0): 232, 201, 118, (130,432,0): 231, 204, 117, (130,433,0): 229, 202, 113, (130,434,0): 229, 199, 109, (130,435,0): 228, 199, 107, (130,436,0): 232, 198, 108, (130,437,0): 235, 202, 107, (130,438,0): 239, 204, 110, (130,439,0): 242, 208, 111, (130,440,0): 244, 210, 113, (130,441,0): 243, 209, 112, (130,442,0): 240, 207, 112, (130,443,0): 235, 205, 109, (130,444,0): 231, 200, 107, (130,445,0): 226, 197, 103, (130,446,0): 220, 194, 101, (130,447,0): 219, 190, 98, (130,448,0): 219, 188, 95, (130,449,0): 218, 187, 96, (130,450,0): 214, 184, 94, (130,451,0): 207, 181, 94, (130,452,0): 201, 176, 94, (130,453,0): 192, 170, 94, (130,454,0): 185, 166, 97, (130,455,0): 179, 164, 99, (130,456,0): 165, 150, 91, (130,457,0): 159, 146, 91, (130,458,0): 151, 139, 87, (130,459,0): 147, 135, 87, (130,460,0): 145, 132, 87, (130,461,0): 142, 129, 84, (130,462,0): 138, 125, 81, (130,463,0): 136, 121, 80, (130,464,0): 139, 117, 80, (130,465,0): 140, 116, 80, (130,466,0): 140, 116, 78, (130,467,0): 142, 119, 78, (130,468,0): 145, 122, 80, (130,469,0): 150, 127, 83, (130,470,0): 154, 132, 85, (130,471,0): 157, 135, 86, (130,472,0): 157, 135, 86, (130,473,0): 157, 135, 85, (130,474,0): 158, 136, 87, (130,475,0): 159, 137, 88, (130,476,0): 160, 138, 91, (130,477,0): 160, 138, 91, (130,478,0): 159, 136, 92, (130,479,0): 158, 137, 92, (130,480,0): 157, 136, 91, (130,481,0): 155, 137, 91, (130,482,0): 154, 136, 90, (130,483,0): 154, 136, 90, (130,484,0): 154, 137, 91, (130,485,0): 155, 138, 92, (130,486,0): 157, 140, 94, (130,487,0): 158, 141, 95, (130,488,0): 157, 143, 96, (130,489,0): 157, 143, 96, (130,490,0): 155, 143, 95, (130,491,0): 155, 143, 95, (130,492,0): 154, 142, 94, (130,493,0): 154, 142, 94, (130,494,0): 153, 143, 94, (130,495,0): 150, 142, 93, (130,496,0): 146, 140, 92, (130,497,0): 145, 139, 91, (130,498,0): 144, 138, 90, (130,499,0): 142, 136, 88, (130,500,0): 142, 134, 87, (130,501,0): 140, 132, 86, (130,502,0): 139, 131, 85, (130,503,0): 138, 130, 84, (130,504,0): 140, 128, 86, (130,505,0): 141, 129, 87, (130,506,0): 142, 128, 89, (130,507,0): 141, 127, 88, (130,508,0): 140, 126, 87, (130,509,0): 138, 124, 85, (130,510,0): 137, 122, 83, (130,511,0): 136, 121, 82, (130,512,0): 134, 116, 76, (130,513,0): 131, 113, 73, (130,514,0): 129, 111, 71, (130,515,0): 129, 111, 71, (130,516,0): 130, 112, 74, (130,517,0): 131, 111, 74, (130,518,0): 129, 109, 72, (130,519,0): 126, 106, 69, (130,520,0): 128, 105, 71, (130,521,0): 128, 105, 71, (130,522,0): 129, 104, 73, (130,523,0): 129, 104, 73, (130,524,0): 127, 102, 71, (130,525,0): 126, 101, 70, (130,526,0): 124, 99, 69, (130,527,0): 122, 96, 69, (130,528,0): 121, 95, 72, (130,529,0): 120, 93, 72, (130,530,0): 119, 92, 71, (130,531,0): 118, 91, 70, (130,532,0): 115, 90, 70, (130,533,0): 113, 88, 68, (130,534,0): 110, 87, 69, (130,535,0): 109, 86, 68, (130,536,0): 109, 86, 68, (130,537,0): 108, 85, 67, (130,538,0): 104, 83, 66, (130,539,0): 101, 80, 63, (130,540,0): 96, 77, 62, (130,541,0): 95, 76, 61, (130,542,0): 94, 75, 60, (130,543,0): 94, 75, 60, (130,544,0): 93, 75, 61, (130,545,0): 93, 75, 61, (130,546,0): 92, 74, 60, (130,547,0): 92, 74, 60, (130,548,0): 91, 73, 61, (130,549,0): 90, 72, 60, (130,550,0): 90, 72, 60, (130,551,0): 90, 72, 60, (130,552,0): 91, 73, 63, (130,553,0): 90, 72, 62, (130,554,0): 89, 70, 63, (130,555,0): 88, 69, 62, (130,556,0): 87, 68, 61, (130,557,0): 86, 67, 60, (130,558,0): 85, 66, 60, (130,559,0): 84, 65, 59, (130,560,0): 84, 60, 58, (130,561,0): 80, 56, 54, (130,562,0): 74, 53, 50, (130,563,0): 72, 53, 49, (130,564,0): 73, 54, 50, (130,565,0): 72, 54, 50, (130,566,0): 68, 53, 48, (130,567,0): 66, 51, 46, (130,568,0): 67, 52, 47, (130,569,0): 66, 51, 46, (130,570,0): 67, 49, 45, (130,571,0): 67, 49, 45, (130,572,0): 70, 49, 46, (130,573,0): 72, 51, 48, (130,574,0): 77, 53, 51, (130,575,0): 79, 55, 53, (130,576,0): 76, 55, 50, (130,577,0): 77, 56, 51, (130,578,0): 78, 57, 52, (130,579,0): 79, 58, 53, (130,580,0): 79, 58, 53, (130,581,0): 78, 57, 52, (130,582,0): 77, 56, 51, (130,583,0): 76, 55, 50, (130,584,0): 78, 57, 52, (130,585,0): 78, 57, 52, (130,586,0): 78, 57, 52, (130,587,0): 79, 58, 53, (130,588,0): 79, 58, 53, (130,589,0): 80, 59, 54, (130,590,0): 80, 59, 54, (130,591,0): 81, 60, 55, (130,592,0): 79, 60, 54, (130,593,0): 78, 59, 53, (130,594,0): 78, 59, 53, (130,595,0): 76, 57, 51, (130,596,0): 73, 54, 48, (130,597,0): 70, 51, 45, (130,598,0): 66, 47, 41, (130,599,0): 65, 46, 40, (131,0,0): 48, 32, 45, (131,1,0): 48, 32, 43, (131,2,0): 46, 32, 45, (131,3,0): 44, 30, 43, (131,4,0): 41, 27, 40, (131,5,0): 36, 22, 37, (131,6,0): 31, 19, 33, (131,7,0): 28, 16, 30, (131,8,0): 29, 18, 32, (131,9,0): 29, 18, 34, (131,10,0): 30, 19, 35, (131,11,0): 30, 19, 36, (131,12,0): 29, 20, 37, (131,13,0): 29, 20, 37, (131,14,0): 30, 21, 38, (131,15,0): 32, 21, 38, (131,16,0): 34, 20, 37, (131,17,0): 37, 20, 36, (131,18,0): 39, 22, 38, (131,19,0): 41, 24, 40, (131,20,0): 42, 25, 41, (131,21,0): 42, 25, 41, (131,22,0): 42, 25, 41, (131,23,0): 42, 25, 41, (131,24,0): 43, 26, 42, (131,25,0): 43, 26, 42, (131,26,0): 43, 26, 42, (131,27,0): 43, 26, 42, (131,28,0): 43, 26, 42, (131,29,0): 43, 26, 42, (131,30,0): 44, 27, 43, (131,31,0): 44, 27, 43, (131,32,0): 45, 28, 44, (131,33,0): 45, 28, 44, (131,34,0): 45, 28, 44, (131,35,0): 45, 28, 44, (131,36,0): 45, 28, 44, (131,37,0): 45, 28, 44, (131,38,0): 45, 28, 44, (131,39,0): 45, 28, 44, (131,40,0): 47, 30, 46, (131,41,0): 47, 30, 46, (131,42,0): 47, 30, 46, (131,43,0): 47, 30, 46, (131,44,0): 47, 30, 46, (131,45,0): 47, 30, 46, (131,46,0): 47, 30, 46, (131,47,0): 47, 30, 46, (131,48,0): 45, 31, 48, (131,49,0): 45, 30, 49, (131,50,0): 47, 30, 49, (131,51,0): 47, 30, 49, (131,52,0): 47, 30, 49, (131,53,0): 47, 30, 49, (131,54,0): 48, 29, 49, (131,55,0): 48, 29, 49, (131,56,0): 49, 27, 48, (131,57,0): 49, 27, 48, (131,58,0): 49, 27, 48, (131,59,0): 49, 27, 48, (131,60,0): 50, 26, 48, (131,61,0): 50, 26, 48, (131,62,0): 50, 26, 48, (131,63,0): 49, 28, 47, (131,64,0): 47, 29, 45, (131,65,0): 45, 28, 44, (131,66,0): 45, 28, 44, (131,67,0): 43, 26, 42, (131,68,0): 42, 25, 41, (131,69,0): 39, 25, 40, (131,70,0): 39, 25, 40, (131,71,0): 37, 25, 39, (131,72,0): 35, 23, 37, (131,73,0): 35, 23, 37, (131,74,0): 35, 23, 37, (131,75,0): 34, 23, 37, (131,76,0): 34, 23, 37, (131,77,0): 32, 24, 37, (131,78,0): 32, 24, 37, (131,79,0): 34, 24, 35, (131,80,0): 37, 24, 34, (131,81,0): 39, 23, 34, (131,82,0): 39, 23, 34, (131,83,0): 40, 24, 35, (131,84,0): 40, 24, 35, (131,85,0): 41, 25, 36, (131,86,0): 41, 25, 36, (131,87,0): 41, 25, 36, (131,88,0): 41, 25, 36, (131,89,0): 41, 25, 36, (131,90,0): 41, 25, 36, (131,91,0): 41, 25, 36, (131,92,0): 41, 25, 36, (131,93,0): 41, 25, 36, (131,94,0): 41, 25, 36, (131,95,0): 41, 25, 38, (131,96,0): 35, 21, 38, (131,97,0): 34, 21, 39, (131,98,0): 33, 20, 38, (131,99,0): 31, 18, 36, (131,100,0): 29, 18, 35, (131,101,0): 28, 17, 34, (131,102,0): 27, 16, 33, (131,103,0): 26, 15, 32, (131,104,0): 27, 18, 35, (131,105,0): 27, 18, 35, (131,106,0): 25, 18, 34, (131,107,0): 23, 16, 32, (131,108,0): 22, 15, 31, (131,109,0): 21, 14, 30, (131,110,0): 18, 14, 29, (131,111,0): 19, 13, 27, (131,112,0): 24, 16, 29, (131,113,0): 24, 16, 29, (131,114,0): 24, 16, 29, (131,115,0): 24, 16, 29, (131,116,0): 24, 16, 29, (131,117,0): 24, 16, 29, (131,118,0): 24, 16, 29, (131,119,0): 24, 16, 29, (131,120,0): 23, 15, 28, (131,121,0): 23, 15, 28, (131,122,0): 23, 15, 28, (131,123,0): 24, 16, 29, (131,124,0): 25, 17, 30, (131,125,0): 25, 17, 30, (131,126,0): 25, 17, 30, (131,127,0): 26, 18, 29, (131,128,0): 30, 18, 30, (131,129,0): 30, 18, 28, (131,130,0): 30, 18, 28, (131,131,0): 30, 18, 28, (131,132,0): 30, 18, 28, (131,133,0): 30, 18, 28, (131,134,0): 31, 18, 28, (131,135,0): 31, 18, 28, (131,136,0): 35, 19, 30, (131,137,0): 35, 19, 30, (131,138,0): 36, 18, 30, (131,139,0): 36, 18, 30, (131,140,0): 35, 17, 29, (131,141,0): 35, 17, 29, (131,142,0): 35, 17, 29, (131,143,0): 35, 17, 29, (131,144,0): 33, 16, 32, (131,145,0): 34, 17, 33, (131,146,0): 34, 17, 33, (131,147,0): 34, 17, 33, (131,148,0): 35, 19, 32, (131,149,0): 35, 19, 32, (131,150,0): 36, 20, 33, (131,151,0): 36, 20, 31, (131,152,0): 36, 20, 31, (131,153,0): 36, 20, 31, (131,154,0): 37, 21, 31, (131,155,0): 37, 21, 31, (131,156,0): 38, 22, 32, (131,157,0): 38, 22, 32, (131,158,0): 39, 24, 31, (131,159,0): 39, 24, 31, (131,160,0): 41, 24, 34, (131,161,0): 41, 24, 34, (131,162,0): 41, 24, 34, (131,163,0): 40, 23, 33, (131,164,0): 40, 23, 33, (131,165,0): 39, 22, 32, (131,166,0): 39, 22, 32, (131,167,0): 39, 22, 32, (131,168,0): 39, 22, 32, (131,169,0): 39, 22, 32, (131,170,0): 39, 22, 32, (131,171,0): 39, 22, 32, (131,172,0): 39, 22, 32, (131,173,0): 39, 22, 32, (131,174,0): 39, 22, 32, (131,175,0): 39, 22, 30, (131,176,0): 40, 23, 29, (131,177,0): 40, 23, 29, (131,178,0): 40, 23, 29, (131,179,0): 40, 23, 29, (131,180,0): 42, 23, 27, (131,181,0): 42, 23, 27, (131,182,0): 42, 23, 27, (131,183,0): 42, 23, 27, (131,184,0): 43, 23, 25, (131,185,0): 43, 23, 25, (131,186,0): 44, 22, 24, (131,187,0): 45, 23, 25, (131,188,0): 45, 23, 25, (131,189,0): 46, 24, 26, (131,190,0): 48, 24, 24, (131,191,0): 49, 25, 25, (131,192,0): 49, 27, 29, (131,193,0): 49, 27, 29, (131,194,0): 49, 27, 29, (131,195,0): 50, 28, 30, (131,196,0): 53, 29, 29, (131,197,0): 53, 29, 29, (131,198,0): 54, 28, 29, (131,199,0): 55, 29, 30, (131,200,0): 53, 27, 26, (131,201,0): 53, 27, 26, (131,202,0): 56, 28, 25, (131,203,0): 56, 28, 25, (131,204,0): 58, 28, 26, (131,205,0): 58, 28, 26, (131,206,0): 59, 30, 26, (131,207,0): 59, 29, 27, (131,208,0): 59, 29, 31, (131,209,0): 59, 28, 33, (131,210,0): 59, 28, 33, (131,211,0): 59, 28, 33, (131,212,0): 59, 29, 31, (131,213,0): 59, 29, 31, (131,214,0): 59, 29, 31, (131,215,0): 59, 29, 29, (131,216,0): 59, 29, 29, (131,217,0): 59, 29, 29, (131,218,0): 59, 29, 27, (131,219,0): 60, 30, 28, (131,220,0): 61, 31, 29, (131,221,0): 62, 32, 30, (131,222,0): 62, 33, 29, (131,223,0): 62, 33, 27, (131,224,0): 63, 33, 25, (131,225,0): 63, 33, 23, (131,226,0): 64, 34, 24, (131,227,0): 65, 35, 25, (131,228,0): 65, 35, 25, (131,229,0): 66, 36, 26, (131,230,0): 66, 36, 26, (131,231,0): 66, 36, 26, (131,232,0): 62, 32, 22, (131,233,0): 62, 32, 22, (131,234,0): 62, 32, 22, (131,235,0): 62, 32, 22, (131,236,0): 62, 32, 22, (131,237,0): 62, 32, 22, (131,238,0): 62, 32, 22, (131,239,0): 62, 32, 22, (131,240,0): 61, 31, 21, (131,241,0): 61, 31, 21, (131,242,0): 61, 31, 21, (131,243,0): 61, 31, 21, (131,244,0): 61, 31, 21, (131,245,0): 61, 31, 21, (131,246,0): 61, 31, 21, (131,247,0): 61, 31, 21, (131,248,0): 62, 32, 22, (131,249,0): 62, 32, 22, (131,250,0): 63, 33, 23, (131,251,0): 64, 34, 24, (131,252,0): 65, 35, 25, (131,253,0): 66, 36, 26, (131,254,0): 67, 37, 27, (131,255,0): 67, 37, 27, (131,256,0): 72, 38, 28, (131,257,0): 72, 38, 28, (131,258,0): 72, 38, 28, (131,259,0): 72, 38, 28, (131,260,0): 72, 38, 28, (131,261,0): 72, 38, 28, (131,262,0): 72, 38, 28, (131,263,0): 72, 38, 28, (131,264,0): 69, 35, 25, (131,265,0): 69, 35, 25, (131,266,0): 69, 35, 25, (131,267,0): 69, 35, 25, (131,268,0): 69, 35, 25, (131,269,0): 69, 35, 25, (131,270,0): 69, 35, 25, (131,271,0): 69, 35, 26, (131,272,0): 69, 34, 28, (131,273,0): 69, 34, 30, (131,274,0): 70, 35, 31, (131,275,0): 70, 35, 31, (131,276,0): 71, 36, 30, (131,277,0): 71, 36, 30, (131,278,0): 72, 37, 31, (131,279,0): 72, 38, 29, (131,280,0): 74, 40, 31, (131,281,0): 74, 40, 31, (131,282,0): 76, 42, 32, (131,283,0): 77, 43, 33, (131,284,0): 79, 45, 35, (131,285,0): 80, 46, 36, (131,286,0): 82, 48, 36, (131,287,0): 82, 48, 36, (131,288,0): 86, 52, 40, (131,289,0): 86, 52, 40, (131,290,0): 87, 53, 43, (131,291,0): 88, 54, 44, (131,292,0): 89, 55, 43, (131,293,0): 90, 56, 44, (131,294,0): 93, 57, 43, (131,295,0): 93, 57, 41, (131,296,0): 100, 63, 47, (131,297,0): 101, 64, 45, (131,298,0): 104, 66, 43, (131,299,0): 106, 69, 42, (131,300,0): 109, 73, 41, (131,301,0): 115, 79, 45, (131,302,0): 123, 87, 51, (131,303,0): 135, 94, 50, (131,304,0): 158, 110, 48, (131,305,0): 184, 130, 58, (131,306,0): 205, 150, 70, (131,307,0): 210, 154, 69, (131,308,0): 206, 149, 62, (131,309,0): 201, 145, 60, (131,310,0): 193, 140, 62, (131,311,0): 185, 136, 60, (131,312,0): 177, 135, 63, (131,313,0): 172, 135, 64, (131,314,0): 166, 137, 61, (131,315,0): 162, 136, 59, (131,316,0): 158, 135, 59, (131,317,0): 157, 133, 59, (131,318,0): 156, 132, 60, (131,319,0): 158, 131, 64, (131,320,0): 163, 131, 70, (131,321,0): 162, 130, 71, (131,322,0): 160, 128, 69, (131,323,0): 157, 127, 67, (131,324,0): 154, 125, 67, (131,325,0): 150, 124, 65, (131,326,0): 150, 124, 67, (131,327,0): 149, 124, 67, (131,328,0): 151, 124, 69, (131,329,0): 151, 124, 69, (131,330,0): 152, 125, 70, (131,331,0): 157, 127, 75, (131,332,0): 161, 129, 78, (131,333,0): 166, 133, 82, (131,334,0): 169, 135, 87, (131,335,0): 174, 136, 87, (131,336,0): 186, 145, 93, (131,337,0): 189, 146, 93, (131,338,0): 194, 148, 96, (131,339,0): 199, 153, 101, (131,340,0): 203, 156, 104, (131,341,0): 206, 159, 107, (131,342,0): 210, 160, 109, (131,343,0): 210, 160, 109, (131,344,0): 212, 162, 111, (131,345,0): 212, 160, 110, (131,346,0): 210, 158, 108, (131,347,0): 208, 156, 106, (131,348,0): 210, 157, 107, (131,349,0): 212, 159, 109, (131,350,0): 216, 160, 111, (131,351,0): 219, 161, 111, (131,352,0): 223, 163, 109, (131,353,0): 226, 164, 107, (131,354,0): 229, 162, 107, (131,355,0): 231, 162, 105, (131,356,0): 232, 160, 102, (131,357,0): 234, 158, 100, (131,358,0): 234, 155, 98, (131,359,0): 234, 154, 95, (131,360,0): 239, 158, 102, (131,361,0): 239, 160, 103, (131,362,0): 238, 162, 104, (131,363,0): 235, 163, 105, (131,364,0): 232, 163, 106, (131,365,0): 227, 162, 106, (131,366,0): 223, 161, 104, (131,367,0): 219, 160, 104, (131,368,0): 216, 161, 105, (131,369,0): 211, 160, 105, (131,370,0): 209, 158, 103, (131,371,0): 207, 156, 101, (131,372,0): 207, 158, 100, (131,373,0): 210, 161, 103, (131,374,0): 211, 165, 106, (131,375,0): 213, 167, 107, (131,376,0): 212, 168, 107, (131,377,0): 213, 169, 108, (131,378,0): 211, 170, 106, (131,379,0): 212, 171, 107, (131,380,0): 212, 171, 107, (131,381,0): 211, 172, 107, (131,382,0): 210, 171, 106, (131,383,0): 211, 170, 106, (131,384,0): 221, 175, 115, (131,385,0): 224, 175, 117, (131,386,0): 224, 177, 121, (131,387,0): 223, 178, 123, (131,388,0): 219, 178, 124, (131,389,0): 216, 176, 124, (131,390,0): 211, 174, 122, (131,391,0): 208, 172, 120, (131,392,0): 204, 171, 120, (131,393,0): 200, 167, 116, (131,394,0): 197, 164, 111, (131,395,0): 197, 164, 110, (131,396,0): 203, 168, 112, (131,397,0): 206, 171, 113, (131,398,0): 208, 172, 114, (131,399,0): 206, 171, 113, (131,400,0): 207, 178, 120, (131,401,0): 206, 180, 121, (131,402,0): 206, 180, 121, (131,403,0): 207, 181, 120, (131,404,0): 208, 183, 119, (131,405,0): 212, 184, 119, (131,406,0): 213, 186, 119, (131,407,0): 214, 187, 118, (131,408,0): 217, 188, 118, (131,409,0): 218, 190, 117, (131,410,0): 220, 190, 117, (131,411,0): 221, 192, 116, (131,412,0): 223, 194, 116, (131,413,0): 224, 195, 115, (131,414,0): 226, 197, 117, (131,415,0): 228, 197, 114, (131,416,0): 233, 203, 115, (131,417,0): 234, 204, 114, (131,418,0): 235, 205, 117, (131,419,0): 235, 205, 117, (131,420,0): 234, 204, 116, (131,421,0): 232, 202, 114, (131,422,0): 231, 201, 115, (131,423,0): 231, 201, 115, (131,424,0): 226, 196, 110, (131,425,0): 226, 195, 112, (131,426,0): 226, 195, 112, (131,427,0): 226, 195, 113, (131,428,0): 227, 196, 114, (131,429,0): 227, 196, 114, (131,430,0): 228, 197, 115, (131,431,0): 228, 197, 115, (131,432,0): 228, 201, 114, (131,433,0): 228, 201, 110, (131,434,0): 230, 200, 110, (131,435,0): 232, 203, 111, (131,436,0): 237, 204, 111, (131,437,0): 240, 207, 112, (131,438,0): 243, 209, 112, (131,439,0): 245, 211, 114, (131,440,0): 247, 213, 116, (131,441,0): 245, 211, 114, (131,442,0): 241, 208, 113, (131,443,0): 235, 205, 109, (131,444,0): 230, 199, 106, (131,445,0): 224, 195, 101, (131,446,0): 219, 193, 100, (131,447,0): 217, 191, 98, (131,448,0): 221, 192, 100, (131,449,0): 219, 190, 98, (131,450,0): 214, 187, 98, (131,451,0): 208, 182, 97, (131,452,0): 199, 176, 96, (131,453,0): 192, 170, 95, (131,454,0): 183, 164, 95, (131,455,0): 177, 162, 97, (131,456,0): 164, 149, 90, (131,457,0): 158, 145, 90, (131,458,0): 151, 139, 87, (131,459,0): 147, 135, 85, (131,460,0): 145, 132, 87, (131,461,0): 143, 130, 85, (131,462,0): 140, 127, 83, (131,463,0): 138, 123, 80, (131,464,0): 142, 120, 81, (131,465,0): 143, 119, 81, (131,466,0): 143, 120, 79, (131,467,0): 144, 121, 79, (131,468,0): 147, 124, 82, (131,469,0): 151, 129, 82, (131,470,0): 155, 133, 86, (131,471,0): 158, 136, 87, (131,472,0): 158, 136, 86, (131,473,0): 159, 137, 87, (131,474,0): 161, 139, 90, (131,475,0): 162, 140, 91, (131,476,0): 162, 140, 93, (131,477,0): 161, 139, 92, (131,478,0): 160, 137, 93, (131,479,0): 157, 136, 91, (131,480,0): 157, 136, 91, (131,481,0): 155, 137, 91, (131,482,0): 154, 136, 90, (131,483,0): 154, 136, 90, (131,484,0): 154, 137, 91, (131,485,0): 156, 139, 93, (131,486,0): 158, 141, 95, (131,487,0): 159, 142, 96, (131,488,0): 159, 145, 98, (131,489,0): 158, 144, 97, (131,490,0): 157, 145, 97, (131,491,0): 157, 145, 97, (131,492,0): 157, 145, 97, (131,493,0): 157, 145, 97, (131,494,0): 156, 146, 97, (131,495,0): 156, 146, 97, (131,496,0): 150, 142, 93, (131,497,0): 149, 143, 93, (131,498,0): 148, 140, 93, (131,499,0): 147, 139, 92, (131,500,0): 145, 137, 90, (131,501,0): 144, 136, 89, (131,502,0): 145, 134, 88, (131,503,0): 144, 133, 88, (131,504,0): 145, 134, 89, (131,505,0): 146, 133, 91, (131,506,0): 145, 132, 90, (131,507,0): 144, 131, 89, (131,508,0): 143, 128, 89, (131,509,0): 141, 126, 87, (131,510,0): 139, 124, 85, (131,511,0): 140, 122, 84, (131,512,0): 136, 118, 78, (131,513,0): 133, 115, 75, (131,514,0): 132, 113, 73, (131,515,0): 132, 113, 73, (131,516,0): 134, 114, 77, (131,517,0): 134, 114, 77, (131,518,0): 132, 112, 75, (131,519,0): 131, 109, 72, (131,520,0): 128, 105, 71, (131,521,0): 129, 105, 71, (131,522,0): 129, 104, 73, (131,523,0): 128, 103, 72, (131,524,0): 127, 100, 70, (131,525,0): 124, 97, 67, (131,526,0): 122, 95, 66, (131,527,0): 120, 93, 66, (131,528,0): 121, 95, 72, (131,529,0): 120, 93, 72, (131,530,0): 118, 91, 70, (131,531,0): 116, 89, 68, (131,532,0): 113, 88, 68, (131,533,0): 112, 87, 67, (131,534,0): 108, 85, 67, (131,535,0): 107, 84, 66, (131,536,0): 109, 86, 68, (131,537,0): 107, 84, 66, (131,538,0): 103, 82, 65, (131,539,0): 100, 79, 62, (131,540,0): 95, 76, 61, (131,541,0): 93, 74, 59, (131,542,0): 92, 73, 58, (131,543,0): 91, 72, 57, (131,544,0): 90, 72, 58, (131,545,0): 90, 72, 58, (131,546,0): 89, 71, 57, (131,547,0): 89, 71, 57, (131,548,0): 88, 70, 58, (131,549,0): 87, 69, 57, (131,550,0): 86, 68, 56, (131,551,0): 86, 68, 56, (131,552,0): 86, 68, 58, (131,553,0): 86, 68, 58, (131,554,0): 86, 67, 60, (131,555,0): 85, 66, 59, (131,556,0): 85, 66, 59, (131,557,0): 84, 65, 58, (131,558,0): 84, 65, 59, (131,559,0): 84, 65, 59, (131,560,0): 81, 60, 57, (131,561,0): 77, 56, 53, (131,562,0): 74, 53, 50, (131,563,0): 71, 52, 48, (131,564,0): 72, 54, 50, (131,565,0): 70, 55, 50, (131,566,0): 69, 54, 49, (131,567,0): 67, 52, 47, (131,568,0): 69, 54, 49, (131,569,0): 67, 52, 47, (131,570,0): 67, 49, 45, (131,571,0): 65, 47, 43, (131,572,0): 67, 48, 44, (131,573,0): 71, 50, 47, (131,574,0): 76, 52, 50, (131,575,0): 79, 55, 53, (131,576,0): 76, 55, 50, (131,577,0): 77, 56, 51, (131,578,0): 78, 57, 52, (131,579,0): 79, 58, 53, (131,580,0): 80, 59, 54, (131,581,0): 79, 58, 53, (131,582,0): 79, 58, 53, (131,583,0): 78, 57, 52, (131,584,0): 79, 58, 53, (131,585,0): 80, 59, 54, (131,586,0): 80, 59, 54, (131,587,0): 80, 59, 54, (131,588,0): 81, 60, 55, (131,589,0): 81, 60, 55, (131,590,0): 82, 61, 56, (131,591,0): 82, 61, 56, (131,592,0): 80, 61, 55, (131,593,0): 79, 60, 54, (131,594,0): 78, 59, 53, (131,595,0): 76, 57, 51, (131,596,0): 73, 54, 48, (131,597,0): 69, 50, 44, (131,598,0): 66, 47, 41, (131,599,0): 64, 45, 39, (132,0,0): 49, 33, 44, (132,1,0): 49, 33, 43, (132,2,0): 47, 34, 44, (132,3,0): 45, 32, 42, (132,4,0): 41, 28, 38, (132,5,0): 36, 22, 35, (132,6,0): 30, 18, 30, (132,7,0): 27, 15, 27, (132,8,0): 30, 20, 31, (132,9,0): 30, 19, 33, (132,10,0): 30, 19, 33, (132,11,0): 31, 20, 36, (132,12,0): 29, 21, 36, (132,13,0): 30, 22, 37, (132,14,0): 30, 22, 37, (132,15,0): 32, 21, 37, (132,16,0): 35, 21, 36, (132,17,0): 38, 21, 37, (132,18,0): 40, 23, 39, (132,19,0): 42, 25, 41, (132,20,0): 43, 26, 42, (132,21,0): 43, 26, 42, (132,22,0): 43, 26, 42, (132,23,0): 42, 25, 41, (132,24,0): 44, 27, 43, (132,25,0): 44, 27, 43, (132,26,0): 44, 27, 43, (132,27,0): 44, 27, 43, (132,28,0): 44, 27, 43, (132,29,0): 44, 27, 43, (132,30,0): 43, 26, 42, (132,31,0): 43, 26, 42, (132,32,0): 45, 28, 44, (132,33,0): 45, 28, 44, (132,34,0): 45, 28, 44, (132,35,0): 45, 28, 44, (132,36,0): 45, 28, 44, (132,37,0): 45, 28, 44, (132,38,0): 45, 28, 44, (132,39,0): 45, 28, 44, (132,40,0): 47, 30, 46, (132,41,0): 47, 30, 46, (132,42,0): 47, 30, 46, (132,43,0): 47, 30, 46, (132,44,0): 47, 30, 46, (132,45,0): 47, 30, 46, (132,46,0): 47, 30, 46, (132,47,0): 47, 30, 46, (132,48,0): 47, 30, 48, (132,49,0): 47, 30, 48, (132,50,0): 47, 30, 48, (132,51,0): 47, 30, 48, (132,52,0): 48, 29, 48, (132,53,0): 48, 29, 48, (132,54,0): 48, 29, 48, (132,55,0): 48, 29, 48, (132,56,0): 50, 29, 48, (132,57,0): 50, 29, 48, (132,58,0): 51, 28, 48, (132,59,0): 51, 28, 48, (132,60,0): 51, 28, 48, (132,61,0): 51, 28, 48, (132,62,0): 52, 27, 48, (132,63,0): 51, 28, 48, (132,64,0): 50, 29, 46, (132,65,0): 47, 29, 43, (132,66,0): 47, 29, 43, (132,67,0): 45, 29, 42, (132,68,0): 44, 28, 41, (132,69,0): 40, 26, 39, (132,70,0): 40, 26, 39, (132,71,0): 39, 25, 38, (132,72,0): 38, 24, 37, (132,73,0): 37, 25, 37, (132,74,0): 37, 25, 37, (132,75,0): 36, 26, 37, (132,76,0): 36, 26, 37, (132,77,0): 36, 26, 37, (132,78,0): 36, 26, 37, (132,79,0): 37, 25, 37, (132,80,0): 38, 25, 35, (132,81,0): 40, 24, 35, (132,82,0): 40, 24, 35, (132,83,0): 41, 25, 36, (132,84,0): 41, 25, 36, (132,85,0): 42, 26, 37, (132,86,0): 42, 26, 37, (132,87,0): 42, 26, 37, (132,88,0): 42, 26, 37, (132,89,0): 42, 26, 37, (132,90,0): 42, 26, 37, (132,91,0): 43, 27, 38, (132,92,0): 43, 27, 38, (132,93,0): 43, 27, 38, (132,94,0): 43, 27, 38, (132,95,0): 43, 27, 40, (132,96,0): 38, 24, 39, (132,97,0): 37, 23, 40, (132,98,0): 35, 22, 39, (132,99,0): 33, 20, 37, (132,100,0): 31, 18, 35, (132,101,0): 30, 17, 34, (132,102,0): 27, 16, 32, (132,103,0): 27, 16, 32, (132,104,0): 28, 20, 35, (132,105,0): 27, 19, 34, (132,106,0): 26, 18, 33, (132,107,0): 25, 17, 32, (132,108,0): 23, 17, 31, (132,109,0): 21, 15, 29, (132,110,0): 20, 14, 28, (132,111,0): 20, 14, 28, (132,112,0): 24, 16, 29, (132,113,0): 24, 16, 29, (132,114,0): 24, 16, 29, (132,115,0): 24, 16, 29, (132,116,0): 24, 16, 29, (132,117,0): 24, 16, 29, (132,118,0): 24, 16, 29, (132,119,0): 24, 16, 29, (132,120,0): 22, 14, 27, (132,121,0): 23, 15, 28, (132,122,0): 23, 15, 28, (132,123,0): 23, 15, 28, (132,124,0): 24, 16, 29, (132,125,0): 25, 17, 30, (132,126,0): 25, 17, 30, (132,127,0): 25, 17, 28, (132,128,0): 30, 18, 30, (132,129,0): 30, 18, 28, (132,130,0): 30, 18, 28, (132,131,0): 30, 18, 28, (132,132,0): 30, 18, 28, (132,133,0): 30, 18, 28, (132,134,0): 31, 18, 28, (132,135,0): 31, 18, 28, (132,136,0): 34, 18, 29, (132,137,0): 34, 18, 29, (132,138,0): 35, 17, 29, (132,139,0): 35, 17, 29, (132,140,0): 36, 18, 30, (132,141,0): 36, 18, 30, (132,142,0): 36, 18, 30, (132,143,0): 36, 18, 30, (132,144,0): 33, 16, 32, (132,145,0): 34, 17, 33, (132,146,0): 34, 18, 31, (132,147,0): 34, 18, 31, (132,148,0): 35, 19, 32, (132,149,0): 35, 19, 32, (132,150,0): 36, 20, 31, (132,151,0): 36, 20, 31, (132,152,0): 36, 20, 31, (132,153,0): 36, 20, 30, (132,154,0): 37, 21, 31, (132,155,0): 37, 21, 31, (132,156,0): 38, 23, 30, (132,157,0): 38, 23, 30, (132,158,0): 39, 24, 31, (132,159,0): 39, 24, 31, (132,160,0): 41, 24, 32, (132,161,0): 43, 23, 32, (132,162,0): 43, 23, 32, (132,163,0): 42, 22, 31, (132,164,0): 42, 22, 31, (132,165,0): 41, 21, 30, (132,166,0): 41, 21, 30, (132,167,0): 41, 21, 30, (132,168,0): 41, 21, 30, (132,169,0): 41, 21, 30, (132,170,0): 41, 21, 30, (132,171,0): 41, 21, 30, (132,172,0): 41, 21, 30, (132,173,0): 41, 21, 30, (132,174,0): 41, 21, 30, (132,175,0): 41, 21, 30, (132,176,0): 40, 23, 29, (132,177,0): 40, 23, 29, (132,178,0): 40, 23, 29, (132,179,0): 40, 23, 29, (132,180,0): 42, 23, 27, (132,181,0): 42, 23, 27, (132,182,0): 42, 23, 27, (132,183,0): 42, 23, 27, (132,184,0): 43, 23, 25, (132,185,0): 44, 24, 26, (132,186,0): 45, 23, 25, (132,187,0): 46, 24, 26, (132,188,0): 46, 24, 26, (132,189,0): 47, 25, 27, (132,190,0): 49, 25, 25, (132,191,0): 49, 25, 25, (132,192,0): 48, 26, 28, (132,193,0): 49, 27, 29, (132,194,0): 49, 27, 29, (132,195,0): 49, 27, 29, (132,196,0): 52, 28, 28, (132,197,0): 53, 29, 29, (132,198,0): 54, 28, 29, (132,199,0): 54, 28, 29, (132,200,0): 53, 27, 26, (132,201,0): 53, 27, 26, (132,202,0): 56, 28, 25, (132,203,0): 56, 28, 25, (132,204,0): 58, 28, 26, (132,205,0): 58, 28, 26, (132,206,0): 59, 30, 26, (132,207,0): 59, 29, 27, (132,208,0): 59, 29, 31, (132,209,0): 59, 28, 33, (132,210,0): 59, 29, 31, (132,211,0): 59, 29, 31, (132,212,0): 59, 29, 31, (132,213,0): 59, 29, 31, (132,214,0): 59, 29, 29, (132,215,0): 59, 29, 29, (132,216,0): 60, 30, 30, (132,217,0): 60, 30, 28, (132,218,0): 60, 30, 28, (132,219,0): 60, 30, 28, (132,220,0): 61, 32, 28, (132,221,0): 61, 32, 28, (132,222,0): 61, 32, 28, (132,223,0): 61, 32, 26, (132,224,0): 63, 33, 25, (132,225,0): 63, 33, 23, (132,226,0): 63, 33, 23, (132,227,0): 64, 34, 24, (132,228,0): 64, 34, 24, (132,229,0): 65, 35, 25, (132,230,0): 66, 36, 26, (132,231,0): 66, 36, 26, (132,232,0): 62, 32, 22, (132,233,0): 62, 32, 22, (132,234,0): 62, 32, 22, (132,235,0): 62, 32, 22, (132,236,0): 62, 32, 22, (132,237,0): 62, 32, 22, (132,238,0): 62, 32, 22, (132,239,0): 62, 32, 22, (132,240,0): 62, 32, 22, (132,241,0): 62, 32, 22, (132,242,0): 62, 32, 22, (132,243,0): 62, 32, 22, (132,244,0): 62, 32, 22, (132,245,0): 62, 32, 22, (132,246,0): 62, 32, 22, (132,247,0): 62, 32, 22, (132,248,0): 62, 32, 22, (132,249,0): 62, 32, 22, (132,250,0): 63, 33, 23, (132,251,0): 64, 34, 24, (132,252,0): 65, 35, 25, (132,253,0): 66, 36, 26, (132,254,0): 67, 37, 27, (132,255,0): 67, 37, 27, (132,256,0): 72, 38, 28, (132,257,0): 72, 38, 28, (132,258,0): 72, 38, 28, (132,259,0): 72, 38, 28, (132,260,0): 72, 38, 28, (132,261,0): 72, 38, 28, (132,262,0): 72, 38, 28, (132,263,0): 72, 38, 28, (132,264,0): 69, 35, 25, (132,265,0): 69, 35, 25, (132,266,0): 69, 35, 25, (132,267,0): 69, 35, 25, (132,268,0): 69, 35, 25, (132,269,0): 69, 35, 25, (132,270,0): 69, 35, 25, (132,271,0): 69, 35, 26, (132,272,0): 69, 34, 28, (132,273,0): 69, 34, 30, (132,274,0): 70, 35, 29, (132,275,0): 70, 35, 29, (132,276,0): 71, 36, 30, (132,277,0): 71, 36, 30, (132,278,0): 72, 38, 29, (132,279,0): 72, 38, 29, (132,280,0): 74, 40, 31, (132,281,0): 74, 40, 30, (132,282,0): 76, 42, 32, (132,283,0): 77, 43, 33, (132,284,0): 79, 45, 33, (132,285,0): 80, 46, 34, (132,286,0): 82, 48, 36, (132,287,0): 82, 48, 36, (132,288,0): 87, 54, 39, (132,289,0): 87, 54, 39, (132,290,0): 88, 54, 42, (132,291,0): 88, 54, 42, (132,292,0): 89, 55, 43, (132,293,0): 89, 55, 43, (132,294,0): 92, 56, 42, (132,295,0): 92, 56, 40, (132,296,0): 99, 62, 46, (132,297,0): 101, 64, 45, (132,298,0): 103, 65, 42, (132,299,0): 105, 68, 41, (132,300,0): 107, 70, 41, (132,301,0): 113, 77, 43, (132,302,0): 121, 85, 49, (132,303,0): 132, 91, 47, (132,304,0): 156, 108, 46, (132,305,0): 183, 129, 55, (132,306,0): 206, 151, 69, (132,307,0): 213, 157, 70, (132,308,0): 211, 154, 64, (132,309,0): 205, 150, 60, (132,310,0): 199, 144, 62, (132,311,0): 190, 138, 62, (132,312,0): 182, 135, 63, (132,313,0): 176, 136, 64, (132,314,0): 172, 139, 62, (132,315,0): 167, 138, 60, (132,316,0): 165, 138, 61, (132,317,0): 163, 135, 61, (132,318,0): 161, 132, 62, (132,319,0): 161, 130, 65, (132,320,0): 165, 131, 70, (132,321,0): 165, 128, 73, (132,322,0): 161, 126, 70, (132,323,0): 156, 124, 67, (132,324,0): 154, 122, 65, (132,325,0): 152, 121, 64, (132,326,0): 152, 123, 65, (132,327,0): 150, 124, 65, (132,328,0): 153, 124, 68, (132,329,0): 154, 125, 69, (132,330,0): 157, 126, 71, (132,331,0): 162, 129, 76, (132,332,0): 166, 133, 80, (132,333,0): 173, 137, 85, (132,334,0): 178, 141, 89, (132,335,0): 183, 142, 90, (132,336,0): 197, 151, 99, (132,337,0): 202, 152, 99, (132,338,0): 205, 155, 102, (132,339,0): 209, 159, 106, (132,340,0): 213, 163, 110, (132,341,0): 215, 165, 112, (132,342,0): 217, 166, 113, (132,343,0): 218, 167, 114, (132,344,0): 216, 165, 112, (132,345,0): 216, 163, 111, (132,346,0): 214, 161, 109, (132,347,0): 213, 160, 108, (132,348,0): 213, 160, 108, (132,349,0): 215, 162, 110, (132,350,0): 217, 164, 112, (132,351,0): 221, 166, 112, (132,352,0): 228, 167, 112, (132,353,0): 229, 167, 110, (132,354,0): 233, 167, 109, (132,355,0): 236, 166, 107, (132,356,0): 236, 164, 106, (132,357,0): 237, 161, 103, (132,358,0): 238, 159, 100, (132,359,0): 236, 158, 96, (132,360,0): 242, 163, 104, (132,361,0): 243, 164, 105, (132,362,0): 243, 167, 109, (132,363,0): 240, 168, 110, (132,364,0): 238, 168, 109, (132,365,0): 232, 166, 108, (132,366,0): 227, 162, 106, (132,367,0): 222, 161, 106, (132,368,0): 221, 161, 107, (132,369,0): 217, 160, 105, (132,370,0): 213, 158, 102, (132,371,0): 210, 155, 99, (132,372,0): 207, 154, 100, (132,373,0): 208, 157, 102, (132,374,0): 209, 160, 104, (132,375,0): 209, 162, 106, (132,376,0): 207, 162, 105, (132,377,0): 205, 163, 105, (132,378,0): 203, 163, 104, (132,379,0): 202, 163, 104, (132,380,0): 200, 164, 104, (132,381,0): 200, 164, 104, (132,382,0): 200, 164, 104, (132,383,0): 200, 164, 106, (132,384,0): 208, 169, 114, (132,385,0): 210, 169, 117, (132,386,0): 211, 171, 120, (132,387,0): 211, 173, 124, (132,388,0): 210, 174, 124, (132,389,0): 206, 172, 124, (132,390,0): 203, 171, 122, (132,391,0): 201, 169, 122, (132,392,0): 201, 169, 122, (132,393,0): 198, 166, 119, (132,394,0): 195, 163, 114, (132,395,0): 195, 163, 112, (132,396,0): 199, 166, 115, (132,397,0): 202, 169, 116, (132,398,0): 205, 169, 117, (132,399,0): 203, 170, 116, (132,400,0): 207, 176, 121, (132,401,0): 207, 178, 120, (132,402,0): 209, 180, 122, (132,403,0): 211, 182, 122, (132,404,0): 213, 185, 122, (132,405,0): 215, 185, 121, (132,406,0): 216, 187, 121, (132,407,0): 217, 188, 120, (132,408,0): 220, 190, 120, (132,409,0): 221, 191, 119, (132,410,0): 224, 192, 119, (132,411,0): 225, 193, 118, (132,412,0): 227, 195, 118, (132,413,0): 229, 198, 118, (132,414,0): 230, 199, 119, (132,415,0): 230, 199, 116, (132,416,0): 233, 203, 115, (132,417,0): 231, 205, 112, (132,418,0): 231, 204, 113, (132,419,0): 231, 204, 113, (132,420,0): 231, 204, 115, (132,421,0): 230, 203, 114, (132,422,0): 229, 202, 115, (132,423,0): 227, 200, 113, (132,424,0): 220, 192, 108, (132,425,0): 220, 192, 108, (132,426,0): 221, 193, 110, (132,427,0): 222, 193, 113, (132,428,0): 223, 194, 114, (132,429,0): 223, 194, 114, (132,430,0): 223, 194, 114, (132,431,0): 224, 196, 113, (132,432,0): 225, 198, 111, (132,433,0): 227, 200, 109, (132,434,0): 232, 203, 111, (132,435,0): 237, 208, 114, (132,436,0): 243, 210, 117, (132,437,0): 246, 213, 118, (132,438,0): 249, 215, 118, (132,439,0): 250, 216, 118, (132,440,0): 250, 216, 118, (132,441,0): 247, 213, 116, (132,442,0): 242, 209, 114, (132,443,0): 234, 204, 108, (132,444,0): 229, 198, 105, (132,445,0): 223, 194, 100, (132,446,0): 217, 191, 98, (132,447,0): 215, 189, 96, (132,448,0): 224, 195, 103, (132,449,0): 222, 192, 102, (132,450,0): 216, 189, 102, (132,451,0): 208, 183, 99, (132,452,0): 198, 177, 96, (132,453,0): 189, 170, 94, (132,454,0): 181, 164, 94, (132,455,0): 175, 160, 95, (132,456,0): 163, 148, 89, (132,457,0): 157, 144, 91, (132,458,0): 151, 139, 87, (132,459,0): 148, 136, 86, (132,460,0): 146, 133, 88, (132,461,0): 145, 132, 87, (132,462,0): 142, 129, 85, (132,463,0): 140, 125, 82, (132,464,0): 146, 124, 85, (132,465,0): 146, 122, 84, (132,466,0): 146, 123, 82, (132,467,0): 147, 124, 82, (132,468,0): 149, 126, 84, (132,469,0): 153, 131, 84, (132,470,0): 157, 135, 88, (132,471,0): 160, 138, 89, (132,472,0): 160, 138, 88, (132,473,0): 161, 139, 89, (132,474,0): 163, 141, 92, (132,475,0): 164, 142, 93, (132,476,0): 164, 142, 95, (132,477,0): 162, 140, 93, (132,478,0): 161, 138, 94, (132,479,0): 158, 137, 92, (132,480,0): 157, 136, 89, (132,481,0): 155, 137, 89, (132,482,0): 154, 136, 88, (132,483,0): 155, 137, 89, (132,484,0): 155, 139, 90, (132,485,0): 157, 141, 92, (132,486,0): 159, 143, 94, (132,487,0): 160, 144, 95, (132,488,0): 160, 146, 97, (132,489,0): 161, 147, 98, (132,490,0): 160, 148, 98, (132,491,0): 160, 148, 98, (132,492,0): 160, 148, 98, (132,493,0): 160, 148, 98, (132,494,0): 159, 149, 98, (132,495,0): 159, 149, 98, (132,496,0): 156, 146, 95, (132,497,0): 153, 146, 94, (132,498,0): 154, 144, 95, (132,499,0): 153, 143, 94, (132,500,0): 151, 141, 92, (132,501,0): 150, 140, 91, (132,502,0): 149, 137, 89, (132,503,0): 149, 136, 91, (132,504,0): 151, 138, 93, (132,505,0): 151, 136, 93, (132,506,0): 149, 134, 91, (132,507,0): 146, 131, 88, (132,508,0): 146, 128, 88, (132,509,0): 144, 126, 86, (132,510,0): 142, 124, 84, (132,511,0): 142, 123, 83, (132,512,0): 137, 118, 78, (132,513,0): 135, 116, 76, (132,514,0): 135, 113, 76, (132,515,0): 136, 114, 77, (132,516,0): 138, 116, 79, (132,517,0): 138, 116, 79, (132,518,0): 136, 113, 79, (132,519,0): 135, 111, 77, (132,520,0): 130, 105, 74, (132,521,0): 131, 104, 74, (132,522,0): 130, 103, 73, (132,523,0): 128, 101, 71, (132,524,0): 128, 98, 70, (132,525,0): 125, 95, 67, (132,526,0): 122, 92, 64, (132,527,0): 118, 91, 64, (132,528,0): 119, 92, 71, (132,529,0): 118, 91, 72, (132,530,0): 117, 90, 71, (132,531,0): 114, 87, 68, (132,532,0): 111, 86, 66, (132,533,0): 109, 84, 64, (132,534,0): 105, 82, 64, (132,535,0): 104, 81, 63, (132,536,0): 107, 84, 68, (132,537,0): 105, 82, 66, (132,538,0): 101, 79, 65, (132,539,0): 97, 75, 61, (132,540,0): 92, 73, 58, (132,541,0): 90, 71, 56, (132,542,0): 89, 70, 55, (132,543,0): 89, 70, 55, (132,544,0): 89, 71, 57, (132,545,0): 88, 70, 56, (132,546,0): 87, 69, 55, (132,547,0): 86, 68, 54, (132,548,0): 85, 67, 55, (132,549,0): 83, 65, 53, (132,550,0): 83, 65, 53, (132,551,0): 82, 64, 52, (132,552,0): 82, 64, 54, (132,553,0): 82, 64, 54, (132,554,0): 82, 63, 56, (132,555,0): 82, 63, 56, (132,556,0): 82, 63, 56, (132,557,0): 82, 63, 56, (132,558,0): 82, 63, 57, (132,559,0): 82, 63, 57, (132,560,0): 79, 58, 55, (132,561,0): 75, 54, 53, (132,562,0): 72, 51, 50, (132,563,0): 70, 50, 49, (132,564,0): 71, 53, 51, (132,565,0): 69, 54, 51, (132,566,0): 68, 53, 50, (132,567,0): 65, 51, 48, (132,568,0): 68, 54, 51, (132,569,0): 66, 52, 49, (132,570,0): 65, 50, 47, (132,571,0): 65, 47, 45, (132,572,0): 66, 46, 45, (132,573,0): 69, 49, 48, (132,574,0): 73, 52, 51, (132,575,0): 75, 54, 51, (132,576,0): 75, 54, 49, (132,577,0): 76, 55, 50, (132,578,0): 78, 57, 52, (132,579,0): 79, 58, 53, (132,580,0): 80, 59, 54, (132,581,0): 80, 59, 54, (132,582,0): 79, 58, 53, (132,583,0): 79, 58, 53, (132,584,0): 81, 60, 55, (132,585,0): 81, 60, 55, (132,586,0): 82, 61, 56, (132,587,0): 82, 61, 56, (132,588,0): 83, 62, 57, (132,589,0): 83, 62, 57, (132,590,0): 83, 62, 57, (132,591,0): 84, 63, 58, (132,592,0): 80, 61, 55, (132,593,0): 80, 61, 55, (132,594,0): 79, 60, 54, (132,595,0): 76, 57, 51, (132,596,0): 73, 54, 48, (132,597,0): 69, 50, 44, (132,598,0): 65, 46, 40, (132,599,0): 63, 44, 38, (133,0,0): 50, 34, 44, (133,1,0): 50, 34, 44, (133,2,0): 48, 35, 44, (133,3,0): 46, 33, 42, (133,4,0): 43, 30, 40, (133,5,0): 38, 25, 35, (133,6,0): 32, 20, 30, (133,7,0): 29, 17, 29, (133,8,0): 31, 21, 32, (133,9,0): 31, 21, 32, (133,10,0): 31, 20, 34, (133,11,0): 32, 21, 35, (133,12,0): 31, 23, 36, (133,13,0): 31, 23, 38, (133,14,0): 31, 23, 38, (133,15,0): 34, 23, 39, (133,16,0): 35, 21, 36, (133,17,0): 38, 21, 37, (133,18,0): 40, 23, 39, (133,19,0): 42, 25, 41, (133,20,0): 43, 26, 42, (133,21,0): 43, 26, 42, (133,22,0): 43, 26, 42, (133,23,0): 43, 26, 42, (133,24,0): 45, 28, 44, (133,25,0): 45, 28, 44, (133,26,0): 45, 28, 44, (133,27,0): 45, 28, 44, (133,28,0): 44, 27, 43, (133,29,0): 44, 27, 43, (133,30,0): 43, 26, 42, (133,31,0): 43, 26, 42, (133,32,0): 45, 28, 44, (133,33,0): 45, 28, 44, (133,34,0): 45, 28, 44, (133,35,0): 45, 28, 44, (133,36,0): 45, 28, 44, (133,37,0): 45, 28, 44, (133,38,0): 45, 28, 44, (133,39,0): 45, 28, 44, (133,40,0): 47, 30, 46, (133,41,0): 47, 30, 46, (133,42,0): 47, 30, 46, (133,43,0): 47, 30, 46, (133,44,0): 47, 30, 46, (133,45,0): 47, 30, 46, (133,46,0): 47, 30, 46, (133,47,0): 47, 30, 46, (133,48,0): 47, 30, 48, (133,49,0): 47, 30, 48, (133,50,0): 47, 30, 48, (133,51,0): 47, 30, 48, (133,52,0): 48, 29, 48, (133,53,0): 48, 29, 48, (133,54,0): 48, 29, 48, (133,55,0): 48, 29, 48, (133,56,0): 50, 29, 48, (133,57,0): 50, 29, 48, (133,58,0): 51, 28, 48, (133,59,0): 51, 28, 48, (133,60,0): 51, 28, 48, (133,61,0): 51, 28, 48, (133,62,0): 52, 27, 48, (133,63,0): 51, 28, 46, (133,64,0): 51, 30, 45, (133,65,0): 48, 30, 44, (133,66,0): 48, 30, 44, (133,67,0): 47, 29, 43, (133,68,0): 46, 28, 42, (133,69,0): 43, 27, 40, (133,70,0): 43, 27, 40, (133,71,0): 40, 26, 39, (133,72,0): 39, 25, 38, (133,73,0): 39, 25, 38, (133,74,0): 39, 25, 38, (133,75,0): 38, 26, 38, (133,76,0): 38, 26, 38, (133,77,0): 37, 27, 38, (133,78,0): 37, 27, 38, (133,79,0): 38, 26, 38, (133,80,0): 41, 25, 36, (133,81,0): 41, 25, 36, (133,82,0): 41, 25, 36, (133,83,0): 42, 26, 37, (133,84,0): 42, 26, 37, (133,85,0): 43, 27, 38, (133,86,0): 43, 27, 38, (133,87,0): 43, 27, 38, (133,88,0): 42, 26, 37, (133,89,0): 42, 26, 37, (133,90,0): 43, 27, 38, (133,91,0): 43, 27, 38, (133,92,0): 44, 28, 39, (133,93,0): 44, 28, 39, (133,94,0): 44, 28, 39, (133,95,0): 45, 29, 42, (133,96,0): 40, 26, 41, (133,97,0): 39, 25, 42, (133,98,0): 37, 24, 41, (133,99,0): 35, 22, 39, (133,100,0): 33, 20, 37, (133,101,0): 31, 18, 35, (133,102,0): 29, 16, 33, (133,103,0): 27, 16, 32, (133,104,0): 29, 18, 34, (133,105,0): 27, 19, 34, (133,106,0): 26, 18, 33, (133,107,0): 25, 17, 32, (133,108,0): 23, 17, 31, (133,109,0): 23, 17, 31, (133,110,0): 22, 16, 30, (133,111,0): 22, 16, 30, (133,112,0): 24, 16, 29, (133,113,0): 24, 16, 29, (133,114,0): 24, 16, 29, (133,115,0): 24, 16, 29, (133,116,0): 24, 16, 29, (133,117,0): 24, 16, 29, (133,118,0): 24, 16, 29, (133,119,0): 24, 16, 29, (133,120,0): 22, 14, 27, (133,121,0): 22, 14, 27, (133,122,0): 22, 14, 27, (133,123,0): 23, 15, 28, (133,124,0): 23, 15, 28, (133,125,0): 24, 16, 29, (133,126,0): 24, 16, 29, (133,127,0): 25, 17, 28, (133,128,0): 29, 17, 29, (133,129,0): 29, 17, 27, (133,130,0): 29, 17, 27, (133,131,0): 29, 17, 27, (133,132,0): 29, 17, 27, (133,133,0): 29, 17, 27, (133,134,0): 30, 17, 27, (133,135,0): 30, 17, 27, (133,136,0): 33, 17, 28, (133,137,0): 33, 17, 28, (133,138,0): 35, 17, 29, (133,139,0): 35, 17, 29, (133,140,0): 36, 18, 30, (133,141,0): 36, 18, 30, (133,142,0): 37, 19, 31, (133,143,0): 37, 19, 31, (133,144,0): 34, 18, 31, (133,145,0): 34, 17, 33, (133,146,0): 35, 19, 32, (133,147,0): 35, 19, 32, (133,148,0): 36, 20, 33, (133,149,0): 36, 20, 31, (133,150,0): 37, 21, 32, (133,151,0): 37, 21, 32, (133,152,0): 36, 20, 30, (133,153,0): 36, 20, 30, (133,154,0): 37, 21, 31, (133,155,0): 37, 22, 29, (133,156,0): 38, 23, 30, (133,157,0): 38, 23, 30, (133,158,0): 39, 24, 31, (133,159,0): 40, 23, 31, (133,160,0): 43, 23, 32, (133,161,0): 43, 23, 32, (133,162,0): 43, 23, 32, (133,163,0): 42, 22, 31, (133,164,0): 42, 22, 31, (133,165,0): 41, 21, 30, (133,166,0): 41, 21, 30, (133,167,0): 41, 21, 30, (133,168,0): 41, 21, 30, (133,169,0): 41, 21, 30, (133,170,0): 41, 21, 30, (133,171,0): 41, 21, 30, (133,172,0): 41, 21, 30, (133,173,0): 41, 21, 30, (133,174,0): 41, 21, 30, (133,175,0): 41, 21, 30, (133,176,0): 40, 23, 29, (133,177,0): 40, 23, 29, (133,178,0): 40, 23, 29, (133,179,0): 40, 23, 29, (133,180,0): 42, 23, 27, (133,181,0): 42, 23, 27, (133,182,0): 42, 23, 27, (133,183,0): 42, 23, 27, (133,184,0): 44, 24, 26, (133,185,0): 44, 24, 26, (133,186,0): 45, 23, 25, (133,187,0): 46, 24, 26, (133,188,0): 47, 25, 27, (133,189,0): 47, 25, 27, (133,190,0): 49, 25, 25, (133,191,0): 50, 26, 26, (133,192,0): 48, 26, 28, (133,193,0): 48, 26, 28, (133,194,0): 48, 26, 28, (133,195,0): 49, 27, 29, (133,196,0): 51, 27, 27, (133,197,0): 52, 28, 28, (133,198,0): 53, 27, 28, (133,199,0): 54, 28, 29, (133,200,0): 53, 27, 26, (133,201,0): 53, 27, 26, (133,202,0): 56, 28, 25, (133,203,0): 56, 28, 25, (133,204,0): 58, 28, 26, (133,205,0): 58, 28, 26, (133,206,0): 59, 30, 26, (133,207,0): 59, 29, 27, (133,208,0): 59, 29, 31, (133,209,0): 59, 29, 31, (133,210,0): 59, 29, 31, (133,211,0): 59, 29, 31, (133,212,0): 59, 29, 31, (133,213,0): 59, 29, 29, (133,214,0): 59, 29, 29, (133,215,0): 59, 29, 27, (133,216,0): 60, 30, 28, (133,217,0): 60, 30, 28, (133,218,0): 60, 30, 28, (133,219,0): 60, 31, 27, (133,220,0): 61, 32, 28, (133,221,0): 61, 32, 28, (133,222,0): 61, 32, 28, (133,223,0): 61, 32, 26, (133,224,0): 63, 33, 25, (133,225,0): 63, 33, 23, (133,226,0): 62, 32, 22, (133,227,0): 62, 32, 22, (133,228,0): 63, 33, 23, (133,229,0): 64, 34, 24, (133,230,0): 65, 35, 25, (133,231,0): 66, 36, 26, (133,232,0): 62, 32, 22, (133,233,0): 62, 32, 22, (133,234,0): 62, 32, 22, (133,235,0): 62, 32, 22, (133,236,0): 62, 32, 22, (133,237,0): 62, 32, 22, (133,238,0): 62, 32, 22, (133,239,0): 62, 32, 22, (133,240,0): 62, 32, 22, (133,241,0): 62, 32, 22, (133,242,0): 62, 32, 22, (133,243,0): 62, 32, 22, (133,244,0): 62, 32, 22, (133,245,0): 62, 32, 22, (133,246,0): 62, 32, 22, (133,247,0): 62, 32, 22, (133,248,0): 62, 32, 22, (133,249,0): 62, 32, 22, (133,250,0): 63, 33, 23, (133,251,0): 64, 34, 24, (133,252,0): 65, 35, 25, (133,253,0): 66, 36, 26, (133,254,0): 67, 37, 27, (133,255,0): 67, 37, 27, (133,256,0): 72, 38, 28, (133,257,0): 72, 38, 28, (133,258,0): 72, 38, 28, (133,259,0): 72, 38, 28, (133,260,0): 72, 38, 28, (133,261,0): 72, 38, 28, (133,262,0): 72, 38, 28, (133,263,0): 72, 38, 28, (133,264,0): 70, 36, 26, (133,265,0): 70, 36, 26, (133,266,0): 70, 36, 26, (133,267,0): 70, 36, 26, (133,268,0): 70, 36, 26, (133,269,0): 70, 36, 26, (133,270,0): 70, 36, 26, (133,271,0): 70, 36, 27, (133,272,0): 69, 34, 28, (133,273,0): 69, 34, 30, (133,274,0): 70, 35, 29, (133,275,0): 70, 35, 29, (133,276,0): 71, 36, 30, (133,277,0): 71, 37, 28, (133,278,0): 72, 38, 29, (133,279,0): 72, 38, 29, (133,280,0): 74, 40, 30, (133,281,0): 74, 40, 30, (133,282,0): 76, 42, 32, (133,283,0): 77, 43, 31, (133,284,0): 79, 45, 33, (133,285,0): 80, 46, 34, (133,286,0): 82, 48, 36, (133,287,0): 82, 49, 34, (133,288,0): 86, 53, 38, (133,289,0): 87, 54, 39, (133,290,0): 87, 53, 41, (133,291,0): 88, 54, 42, (133,292,0): 89, 55, 43, (133,293,0): 90, 56, 44, (133,294,0): 92, 56, 42, (133,295,0): 93, 57, 41, (133,296,0): 98, 61, 45, (133,297,0): 100, 63, 44, (133,298,0): 102, 64, 41, (133,299,0): 103, 66, 39, (133,300,0): 105, 68, 39, (133,301,0): 111, 75, 43, (133,302,0): 119, 83, 49, (133,303,0): 130, 89, 45, (133,304,0): 155, 107, 45, (133,305,0): 181, 129, 54, (133,306,0): 206, 151, 68, (133,307,0): 214, 159, 69, (133,308,0): 213, 156, 66, (133,309,0): 208, 153, 62, (133,310,0): 203, 147, 64, (133,311,0): 195, 142, 64, (133,312,0): 185, 137, 61, (133,313,0): 181, 139, 63, (133,314,0): 177, 141, 65, (133,315,0): 173, 141, 64, (133,316,0): 172, 140, 63, (133,317,0): 169, 137, 64, (133,318,0): 167, 134, 65, (133,319,0): 167, 132, 68, (133,320,0): 168, 129, 72, (133,321,0): 166, 127, 72, (133,322,0): 161, 124, 69, (133,323,0): 157, 122, 66, (133,324,0): 156, 121, 65, (133,325,0): 154, 122, 65, (133,326,0): 154, 123, 66, (133,327,0): 155, 124, 67, (133,328,0): 157, 126, 69, (133,329,0): 158, 127, 70, (133,330,0): 161, 129, 72, (133,331,0): 168, 133, 77, (133,332,0): 173, 138, 82, (133,333,0): 180, 143, 88, (133,334,0): 187, 148, 93, (133,335,0): 191, 148, 95, (133,336,0): 205, 156, 100, (133,337,0): 209, 156, 102, (133,338,0): 212, 159, 105, (133,339,0): 215, 162, 108, (133,340,0): 217, 164, 110, (133,341,0): 219, 166, 112, (133,342,0): 220, 167, 113, (133,343,0): 220, 167, 113, (133,344,0): 217, 164, 110, (133,345,0): 216, 163, 109, (133,346,0): 214, 161, 107, (133,347,0): 213, 160, 106, (133,348,0): 214, 161, 107, (133,349,0): 216, 163, 109, (133,350,0): 219, 166, 112, (133,351,0): 223, 168, 112, (133,352,0): 230, 169, 112, (133,353,0): 234, 169, 111, (133,354,0): 236, 170, 110, (133,355,0): 239, 169, 109, (133,356,0): 240, 168, 109, (133,357,0): 241, 167, 106, (133,358,0): 240, 164, 102, (133,359,0): 242, 164, 102, (133,360,0): 245, 167, 105, (133,361,0): 245, 169, 107, (133,362,0): 246, 172, 111, (133,363,0): 245, 173, 114, (133,364,0): 242, 172, 112, (133,365,0): 235, 169, 109, (133,366,0): 230, 165, 107, (133,367,0): 225, 163, 106, (133,368,0): 223, 164, 108, (133,369,0): 219, 162, 107, (133,370,0): 216, 159, 104, (133,371,0): 212, 157, 101, (133,372,0): 208, 155, 101, (133,373,0): 206, 155, 100, (133,374,0): 206, 157, 101, (133,375,0): 203, 158, 103, (133,376,0): 201, 158, 103, (133,377,0): 199, 158, 104, (133,378,0): 196, 157, 102, (133,379,0): 192, 157, 101, (133,380,0): 192, 157, 103, (133,381,0): 190, 157, 103, (133,382,0): 191, 158, 104, (133,383,0): 191, 158, 105, (133,384,0): 197, 161, 111, (133,385,0): 199, 163, 115, (133,386,0): 202, 166, 118, (133,387,0): 202, 168, 122, (133,388,0): 203, 169, 123, (133,389,0): 202, 169, 124, (133,390,0): 200, 167, 122, (133,391,0): 198, 167, 121, (133,392,0): 197, 166, 120, (133,393,0): 195, 164, 118, (133,394,0): 195, 163, 116, (133,395,0): 194, 162, 115, (133,396,0): 197, 163, 115, (133,397,0): 200, 166, 118, (133,398,0): 205, 169, 119, (133,399,0): 205, 172, 119, (133,400,0): 206, 175, 118, (133,401,0): 207, 178, 118, (133,402,0): 210, 181, 121, (133,403,0): 213, 185, 122, (133,404,0): 216, 186, 122, (133,405,0): 218, 189, 123, (133,406,0): 219, 190, 122, (133,407,0): 221, 191, 121, (133,408,0): 223, 193, 121, (133,409,0): 224, 194, 121, (133,410,0): 227, 195, 120, (133,411,0): 228, 196, 119, (133,412,0): 230, 199, 119, (133,413,0): 232, 199, 118, (133,414,0): 234, 201, 120, (133,415,0): 234, 202, 119, (133,416,0): 231, 204, 115, (133,417,0): 230, 203, 112, (133,418,0): 230, 203, 112, (133,419,0): 231, 204, 115, (133,420,0): 232, 205, 116, (133,421,0): 231, 204, 115, (133,422,0): 228, 201, 114, (133,423,0): 226, 199, 112, (133,424,0): 219, 191, 107, (133,425,0): 220, 192, 108, (133,426,0): 222, 194, 111, (133,427,0): 224, 195, 115, (133,428,0): 225, 196, 116, (133,429,0): 225, 196, 116, (133,430,0): 225, 196, 116, (133,431,0): 224, 196, 113, (133,432,0): 225, 198, 109, (133,433,0): 229, 203, 110, (133,434,0): 237, 208, 114, (133,435,0): 243, 215, 118, (133,436,0): 250, 217, 122, (133,437,0): 251, 218, 121, (133,438,0): 252, 218, 120, (133,439,0): 252, 218, 120, (133,440,0): 249, 215, 117, (133,441,0): 247, 213, 115, (133,442,0): 241, 208, 113, (133,443,0): 234, 204, 108, (133,444,0): 228, 197, 104, (133,445,0): 223, 194, 102, (133,446,0): 218, 191, 100, (133,447,0): 217, 190, 99, (133,448,0): 225, 198, 107, (133,449,0): 222, 195, 104, (133,450,0): 217, 191, 104, (133,451,0): 209, 184, 102, (133,452,0): 198, 177, 98, (133,453,0): 187, 169, 95, (133,454,0): 179, 162, 93, (133,455,0): 172, 158, 95, (133,456,0): 160, 148, 90, (133,457,0): 156, 143, 90, (133,458,0): 150, 138, 86, (133,459,0): 148, 136, 86, (133,460,0): 147, 134, 89, (133,461,0): 146, 133, 88, (133,462,0): 144, 131, 87, (133,463,0): 142, 127, 84, (133,464,0): 150, 128, 89, (133,465,0): 150, 126, 88, (133,466,0): 150, 127, 86, (133,467,0): 150, 127, 85, (133,468,0): 152, 129, 85, (133,469,0): 156, 134, 87, (133,470,0): 160, 138, 89, (133,471,0): 162, 140, 90, (133,472,0): 164, 142, 92, (133,473,0): 164, 142, 92, (133,474,0): 164, 142, 93, (133,475,0): 164, 142, 93, (133,476,0): 164, 142, 95, (133,477,0): 163, 141, 94, (133,478,0): 162, 139, 95, (133,479,0): 160, 139, 94, (133,480,0): 157, 136, 89, (133,481,0): 154, 136, 88, (133,482,0): 154, 136, 88, (133,483,0): 155, 137, 89, (133,484,0): 156, 140, 91, (133,485,0): 158, 142, 93, (133,486,0): 160, 144, 95, (133,487,0): 162, 146, 97, (133,488,0): 162, 148, 99, (133,489,0): 162, 148, 99, (133,490,0): 162, 150, 100, (133,491,0): 162, 150, 100, (133,492,0): 163, 151, 101, (133,493,0): 163, 151, 101, (133,494,0): 162, 152, 101, (133,495,0): 163, 153, 102, (133,496,0): 160, 150, 99, (133,497,0): 159, 149, 98, (133,498,0): 158, 148, 97, (133,499,0): 156, 146, 95, (133,500,0): 156, 144, 94, (133,501,0): 154, 142, 94, (133,502,0): 153, 141, 93, (133,503,0): 152, 140, 92, (133,504,0): 156, 142, 97, (133,505,0): 154, 140, 95, (133,506,0): 153, 136, 93, (133,507,0): 149, 132, 89, (133,508,0): 146, 129, 86, (133,509,0): 144, 127, 84, (133,510,0): 143, 124, 82, (133,511,0): 143, 124, 84, (133,512,0): 139, 117, 78, (133,513,0): 137, 115, 76, (133,514,0): 135, 113, 76, (133,515,0): 136, 114, 77, (133,516,0): 139, 117, 80, (133,517,0): 140, 116, 80, (133,518,0): 139, 115, 81, (133,519,0): 136, 112, 78, (133,520,0): 133, 106, 76, (133,521,0): 132, 105, 75, (133,522,0): 133, 104, 74, (133,523,0): 131, 102, 72, (133,524,0): 128, 98, 70, (133,525,0): 124, 94, 66, (133,526,0): 121, 91, 63, (133,527,0): 119, 89, 63, (133,528,0): 118, 90, 69, (133,529,0): 116, 89, 70, (133,530,0): 114, 87, 68, (133,531,0): 112, 85, 66, (133,532,0): 108, 83, 63, (133,533,0): 106, 81, 61, (133,534,0): 102, 79, 61, (133,535,0): 101, 78, 60, (133,536,0): 103, 80, 64, (133,537,0): 101, 78, 62, (133,538,0): 97, 75, 61, (133,539,0): 94, 72, 58, (133,540,0): 90, 71, 56, (133,541,0): 88, 69, 54, (133,542,0): 88, 69, 54, (133,543,0): 87, 68, 53, (133,544,0): 88, 70, 56, (133,545,0): 87, 69, 55, (133,546,0): 86, 68, 54, (133,547,0): 84, 66, 52, (133,548,0): 83, 65, 53, (133,549,0): 81, 63, 51, (133,550,0): 80, 62, 50, (133,551,0): 80, 62, 50, (133,552,0): 80, 62, 52, (133,553,0): 80, 62, 52, (133,554,0): 80, 61, 54, (133,555,0): 80, 61, 54, (133,556,0): 79, 60, 53, (133,557,0): 79, 60, 53, (133,558,0): 79, 60, 54, (133,559,0): 79, 60, 54, (133,560,0): 76, 55, 54, (133,561,0): 73, 52, 51, (133,562,0): 69, 49, 48, (133,563,0): 67, 49, 47, (133,564,0): 67, 52, 49, (133,565,0): 68, 53, 50, (133,566,0): 66, 52, 49, (133,567,0): 64, 50, 47, (133,568,0): 67, 53, 50, (133,569,0): 66, 52, 49, (133,570,0): 65, 50, 47, (133,571,0): 64, 49, 46, (133,572,0): 66, 48, 46, (133,573,0): 68, 48, 47, (133,574,0): 71, 50, 49, (133,575,0): 73, 52, 49, (133,576,0): 74, 53, 50, (133,577,0): 75, 54, 49, (133,578,0): 77, 56, 51, (133,579,0): 78, 57, 52, (133,580,0): 79, 58, 53, (133,581,0): 80, 59, 54, (133,582,0): 79, 58, 53, (133,583,0): 79, 58, 53, (133,584,0): 82, 61, 56, (133,585,0): 83, 62, 57, (133,586,0): 83, 62, 57, (133,587,0): 84, 63, 58, (133,588,0): 84, 63, 58, (133,589,0): 85, 64, 59, (133,590,0): 85, 64, 59, (133,591,0): 85, 64, 59, (133,592,0): 81, 62, 56, (133,593,0): 81, 62, 56, (133,594,0): 79, 60, 54, (133,595,0): 76, 57, 51, (133,596,0): 72, 53, 47, (133,597,0): 68, 49, 43, (133,598,0): 64, 45, 39, (133,599,0): 62, 43, 37, (134,0,0): 51, 36, 43, (134,1,0): 51, 36, 43, (134,2,0): 49, 36, 43, (134,3,0): 47, 34, 41, (134,4,0): 44, 31, 40, (134,5,0): 40, 27, 36, (134,6,0): 34, 23, 31, (134,7,0): 32, 20, 30, (134,8,0): 32, 22, 31, (134,9,0): 33, 23, 32, (134,10,0): 33, 23, 34, (134,11,0): 33, 23, 34, (134,12,0): 32, 24, 35, (134,13,0): 33, 25, 38, (134,14,0): 33, 25, 38, (134,15,0): 35, 24, 38, (134,16,0): 36, 22, 37, (134,17,0): 39, 22, 38, (134,18,0): 41, 24, 40, (134,19,0): 42, 25, 41, (134,20,0): 44, 27, 43, (134,21,0): 44, 27, 43, (134,22,0): 43, 26, 42, (134,23,0): 43, 26, 42, (134,24,0): 47, 30, 46, (134,25,0): 46, 29, 45, (134,26,0): 46, 29, 45, (134,27,0): 45, 28, 44, (134,28,0): 44, 27, 43, (134,29,0): 44, 27, 43, (134,30,0): 43, 26, 42, (134,31,0): 43, 26, 42, (134,32,0): 45, 28, 44, (134,33,0): 45, 28, 44, (134,34,0): 45, 28, 44, (134,35,0): 45, 28, 44, (134,36,0): 45, 28, 44, (134,37,0): 45, 28, 44, (134,38,0): 45, 28, 44, (134,39,0): 45, 28, 44, (134,40,0): 47, 30, 46, (134,41,0): 47, 30, 46, (134,42,0): 47, 30, 46, (134,43,0): 47, 30, 46, (134,44,0): 47, 30, 46, (134,45,0): 47, 30, 46, (134,46,0): 47, 30, 46, (134,47,0): 47, 30, 46, (134,48,0): 47, 30, 46, (134,49,0): 47, 30, 46, (134,50,0): 48, 30, 46, (134,51,0): 48, 30, 46, (134,52,0): 48, 30, 46, (134,53,0): 48, 30, 46, (134,54,0): 50, 29, 46, (134,55,0): 50, 29, 46, (134,56,0): 52, 29, 47, (134,57,0): 52, 29, 47, (134,58,0): 52, 29, 47, (134,59,0): 52, 29, 47, (134,60,0): 53, 28, 47, (134,61,0): 53, 28, 47, (134,62,0): 53, 28, 47, (134,63,0): 52, 29, 47, (134,64,0): 52, 31, 46, (134,65,0): 51, 30, 45, (134,66,0): 50, 29, 44, (134,67,0): 47, 29, 43, (134,68,0): 46, 28, 42, (134,69,0): 45, 27, 41, (134,70,0): 44, 26, 40, (134,71,0): 43, 27, 40, (134,72,0): 41, 25, 38, (134,73,0): 39, 25, 38, (134,74,0): 39, 25, 38, (134,75,0): 39, 25, 38, (134,76,0): 39, 25, 38, (134,77,0): 38, 26, 38, (134,78,0): 38, 26, 38, (134,79,0): 38, 26, 38, (134,80,0): 41, 25, 36, (134,81,0): 43, 25, 37, (134,82,0): 43, 25, 37, (134,83,0): 44, 26, 38, (134,84,0): 44, 26, 38, (134,85,0): 45, 27, 39, (134,86,0): 45, 27, 39, (134,87,0): 45, 27, 39, (134,88,0): 43, 25, 37, (134,89,0): 43, 25, 37, (134,90,0): 43, 25, 37, (134,91,0): 44, 26, 38, (134,92,0): 45, 27, 39, (134,93,0): 46, 28, 40, (134,94,0): 46, 28, 40, (134,95,0): 45, 29, 42, (134,96,0): 42, 28, 43, (134,97,0): 41, 27, 42, (134,98,0): 39, 25, 40, (134,99,0): 37, 23, 38, (134,100,0): 35, 21, 36, (134,101,0): 32, 20, 34, (134,102,0): 30, 18, 32, (134,103,0): 28, 17, 31, (134,104,0): 28, 17, 31, (134,105,0): 28, 17, 31, (134,106,0): 26, 18, 31, (134,107,0): 25, 17, 30, (134,108,0): 25, 17, 30, (134,109,0): 25, 17, 30, (134,110,0): 25, 17, 30, (134,111,0): 25, 17, 30, (134,112,0): 24, 16, 29, (134,113,0): 24, 16, 29, (134,114,0): 24, 16, 29, (134,115,0): 24, 16, 29, (134,116,0): 24, 16, 29, (134,117,0): 24, 16, 29, (134,118,0): 24, 16, 29, (134,119,0): 24, 16, 29, (134,120,0): 21, 13, 26, (134,121,0): 22, 14, 27, (134,122,0): 22, 14, 27, (134,123,0): 23, 15, 28, (134,124,0): 23, 15, 28, (134,125,0): 24, 16, 29, (134,126,0): 24, 16, 29, (134,127,0): 24, 16, 27, (134,128,0): 29, 17, 29, (134,129,0): 29, 17, 27, (134,130,0): 29, 17, 27, (134,131,0): 29, 17, 27, (134,132,0): 29, 17, 27, (134,133,0): 29, 17, 27, (134,134,0): 30, 17, 27, (134,135,0): 30, 17, 27, (134,136,0): 33, 17, 28, (134,137,0): 33, 17, 28, (134,138,0): 34, 16, 28, (134,139,0): 35, 17, 29, (134,140,0): 36, 18, 30, (134,141,0): 37, 19, 31, (134,142,0): 37, 19, 31, (134,143,0): 37, 19, 31, (134,144,0): 36, 18, 32, (134,145,0): 36, 18, 32, (134,146,0): 37, 19, 33, (134,147,0): 37, 19, 33, (134,148,0): 38, 20, 32, (134,149,0): 38, 20, 32, (134,150,0): 39, 21, 33, (134,151,0): 39, 22, 32, (134,152,0): 37, 20, 30, (134,153,0): 37, 20, 30, (134,154,0): 38, 21, 29, (134,155,0): 38, 21, 29, (134,156,0): 39, 22, 30, (134,157,0): 39, 22, 28, (134,158,0): 40, 23, 29, (134,159,0): 40, 23, 29, (134,160,0): 43, 24, 30, (134,161,0): 43, 24, 30, (134,162,0): 43, 24, 30, (134,163,0): 42, 23, 29, (134,164,0): 42, 23, 29, (134,165,0): 41, 22, 28, (134,166,0): 41, 22, 28, (134,167,0): 41, 22, 28, (134,168,0): 41, 22, 28, (134,169,0): 41, 22, 28, (134,170,0): 41, 22, 28, (134,171,0): 41, 22, 28, (134,172,0): 41, 22, 28, (134,173,0): 41, 22, 28, (134,174,0): 41, 22, 28, (134,175,0): 41, 22, 28, (134,176,0): 40, 23, 29, (134,177,0): 40, 23, 29, (134,178,0): 40, 23, 29, (134,179,0): 40, 23, 29, (134,180,0): 42, 23, 27, (134,181,0): 42, 23, 27, (134,182,0): 42, 23, 27, (134,183,0): 42, 23, 27, (134,184,0): 44, 24, 26, (134,185,0): 45, 25, 27, (134,186,0): 46, 24, 26, (134,187,0): 46, 24, 26, (134,188,0): 47, 25, 27, (134,189,0): 47, 25, 27, (134,190,0): 50, 26, 26, (134,191,0): 50, 26, 26, (134,192,0): 47, 25, 27, (134,193,0): 48, 26, 28, (134,194,0): 48, 26, 28, (134,195,0): 49, 27, 29, (134,196,0): 51, 27, 27, (134,197,0): 52, 28, 28, (134,198,0): 53, 27, 28, (134,199,0): 53, 27, 28, (134,200,0): 53, 27, 26, (134,201,0): 53, 27, 26, (134,202,0): 56, 28, 25, (134,203,0): 56, 28, 25, (134,204,0): 58, 28, 26, (134,205,0): 58, 28, 26, (134,206,0): 59, 30, 26, (134,207,0): 59, 29, 27, (134,208,0): 59, 29, 29, (134,209,0): 59, 29, 31, (134,210,0): 59, 29, 31, (134,211,0): 59, 29, 29, (134,212,0): 59, 29, 29, (134,213,0): 59, 29, 29, (134,214,0): 59, 29, 29, (134,215,0): 59, 29, 27, (134,216,0): 61, 31, 29, (134,217,0): 61, 32, 28, (134,218,0): 61, 32, 28, (134,219,0): 61, 32, 28, (134,220,0): 60, 31, 27, (134,221,0): 60, 31, 25, (134,222,0): 60, 31, 25, (134,223,0): 60, 31, 25, (134,224,0): 64, 34, 26, (134,225,0): 63, 33, 23, (134,226,0): 62, 32, 22, (134,227,0): 61, 31, 21, (134,228,0): 62, 32, 22, (134,229,0): 63, 33, 23, (134,230,0): 65, 35, 25, (134,231,0): 66, 36, 26, (134,232,0): 62, 32, 22, (134,233,0): 62, 32, 22, (134,234,0): 62, 32, 22, (134,235,0): 62, 32, 22, (134,236,0): 62, 32, 22, (134,237,0): 62, 32, 22, (134,238,0): 62, 32, 22, (134,239,0): 62, 32, 22, (134,240,0): 63, 33, 23, (134,241,0): 63, 33, 23, (134,242,0): 63, 33, 23, (134,243,0): 63, 33, 23, (134,244,0): 63, 33, 23, (134,245,0): 63, 33, 23, (134,246,0): 63, 33, 23, (134,247,0): 63, 33, 23, (134,248,0): 62, 32, 22, (134,249,0): 62, 32, 22, (134,250,0): 63, 33, 23, (134,251,0): 64, 34, 24, (134,252,0): 65, 35, 25, (134,253,0): 66, 36, 26, (134,254,0): 67, 37, 27, (134,255,0): 67, 37, 27, (134,256,0): 71, 37, 27, (134,257,0): 71, 37, 27, (134,258,0): 71, 37, 27, (134,259,0): 71, 37, 27, (134,260,0): 71, 37, 27, (134,261,0): 71, 37, 27, (134,262,0): 71, 37, 27, (134,263,0): 71, 37, 27, (134,264,0): 70, 36, 26, (134,265,0): 70, 36, 26, (134,266,0): 70, 36, 26, (134,267,0): 70, 36, 26, (134,268,0): 70, 36, 26, (134,269,0): 70, 36, 26, (134,270,0): 70, 36, 26, (134,271,0): 70, 36, 27, (134,272,0): 69, 34, 28, (134,273,0): 69, 34, 28, (134,274,0): 70, 35, 29, (134,275,0): 70, 35, 29, (134,276,0): 71, 37, 28, (134,277,0): 71, 37, 28, (134,278,0): 72, 38, 29, (134,279,0): 72, 38, 28, (134,280,0): 74, 40, 30, (134,281,0): 74, 40, 30, (134,282,0): 76, 42, 30, (134,283,0): 77, 43, 31, (134,284,0): 79, 45, 33, (134,285,0): 80, 47, 32, (134,286,0): 82, 49, 34, (134,287,0): 82, 49, 34, (134,288,0): 85, 52, 37, (134,289,0): 86, 53, 36, (134,290,0): 87, 54, 39, (134,291,0): 88, 55, 40, (134,292,0): 89, 56, 41, (134,293,0): 90, 57, 42, (134,294,0): 93, 57, 43, (134,295,0): 94, 58, 42, (134,296,0): 97, 60, 44, (134,297,0): 99, 62, 43, (134,298,0): 101, 63, 42, (134,299,0): 102, 65, 39, (134,300,0): 104, 67, 40, (134,301,0): 109, 73, 41, (134,302,0): 117, 81, 47, (134,303,0): 126, 87, 44, (134,304,0): 152, 106, 44, (134,305,0): 178, 129, 53, (134,306,0): 203, 151, 67, (134,307,0): 213, 158, 68, (134,308,0): 213, 157, 64, (134,309,0): 209, 154, 63, (134,310,0): 205, 149, 64, (134,311,0): 198, 145, 65, (134,312,0): 188, 141, 63, (134,313,0): 185, 142, 64, (134,314,0): 181, 144, 66, (134,315,0): 180, 144, 66, (134,316,0): 178, 142, 66, (134,317,0): 174, 140, 66, (134,318,0): 173, 136, 68, (134,319,0): 172, 134, 71, (134,320,0): 169, 128, 72, (134,321,0): 167, 126, 72, (134,322,0): 164, 123, 69, (134,323,0): 160, 121, 66, (134,324,0): 157, 120, 65, (134,325,0): 158, 123, 67, (134,326,0): 159, 124, 66, (134,327,0): 159, 127, 68, (134,328,0): 160, 128, 69, (134,329,0): 164, 129, 71, (134,330,0): 167, 132, 74, (134,331,0): 173, 137, 79, (134,332,0): 181, 142, 85, (134,333,0): 188, 147, 91, (134,334,0): 194, 153, 97, (134,335,0): 200, 155, 98, (134,336,0): 208, 155, 101, (134,337,0): 212, 155, 100, (134,338,0): 215, 158, 103, (134,339,0): 217, 160, 105, (134,340,0): 218, 163, 107, (134,341,0): 218, 163, 107, (134,342,0): 218, 163, 107, (134,343,0): 218, 163, 107, (134,344,0): 216, 161, 105, (134,345,0): 215, 160, 104, (134,346,0): 214, 159, 103, (134,347,0): 214, 159, 103, (134,348,0): 216, 161, 105, (134,349,0): 218, 163, 107, (134,350,0): 220, 168, 111, (134,351,0): 225, 169, 112, (134,352,0): 233, 171, 112, (134,353,0): 237, 171, 111, (134,354,0): 240, 171, 112, (134,355,0): 242, 172, 112, (134,356,0): 244, 173, 111, (134,357,0): 245, 171, 108, (134,358,0): 245, 169, 107, (134,359,0): 245, 170, 105, (134,360,0): 246, 171, 106, (134,361,0): 248, 172, 110, (134,362,0): 249, 175, 112, (134,363,0): 248, 177, 115, (134,364,0): 245, 175, 115, (134,365,0): 240, 171, 112, (134,366,0): 233, 167, 107, (134,367,0): 227, 165, 106, (134,368,0): 224, 165, 109, (134,369,0): 221, 164, 109, (134,370,0): 218, 161, 108, (134,371,0): 214, 159, 105, (134,372,0): 209, 156, 104, (134,373,0): 206, 155, 102, (134,374,0): 203, 153, 100, (134,375,0): 199, 153, 101, (134,376,0): 198, 155, 104, (134,377,0): 195, 155, 104, (134,378,0): 191, 154, 102, (134,379,0): 188, 152, 102, (134,380,0): 185, 151, 103, (134,381,0): 185, 153, 104, (134,382,0): 185, 153, 104, (134,383,0): 186, 154, 107, (134,384,0): 192, 155, 110, (134,385,0): 195, 158, 113, (134,386,0): 198, 161, 116, (134,387,0): 199, 165, 120, (134,388,0): 201, 167, 122, (134,389,0): 200, 167, 124, (134,390,0): 199, 166, 123, (134,391,0): 198, 165, 122, (134,392,0): 195, 162, 117, (134,393,0): 195, 162, 117, (134,394,0): 194, 162, 115, (134,395,0): 194, 162, 115, (134,396,0): 196, 164, 115, (134,397,0): 200, 168, 119, (134,398,0): 204, 170, 122, (134,399,0): 207, 174, 121, (134,400,0): 206, 175, 118, (134,401,0): 209, 179, 117, (134,402,0): 212, 182, 120, (134,403,0): 216, 186, 122, (134,404,0): 220, 189, 125, (134,405,0): 222, 191, 126, (134,406,0): 223, 192, 125, (134,407,0): 225, 192, 123, (134,408,0): 228, 196, 123, (134,409,0): 228, 196, 121, (134,410,0): 230, 197, 120, (134,411,0): 232, 199, 120, (134,412,0): 234, 201, 122, (134,413,0): 237, 202, 121, (134,414,0): 238, 203, 122, (134,415,0): 237, 205, 122, (134,416,0): 232, 205, 118, (134,417,0): 229, 204, 114, (134,418,0): 228, 203, 113, (134,419,0): 229, 203, 116, (134,420,0): 231, 205, 118, (134,421,0): 231, 205, 118, (134,422,0): 228, 202, 115, (134,423,0): 225, 199, 112, (134,424,0): 222, 196, 111, (134,425,0): 223, 197, 112, (134,426,0): 225, 199, 114, (134,427,0): 228, 202, 118, (134,428,0): 229, 203, 119, (134,429,0): 229, 203, 119, (134,430,0): 229, 203, 119, (134,431,0): 228, 202, 115, (134,432,0): 230, 203, 112, (134,433,0): 234, 208, 113, (134,434,0): 243, 214, 120, (134,435,0): 248, 220, 123, (134,436,0): 254, 221, 124, (134,437,0): 254, 222, 123, (134,438,0): 252, 218, 120, (134,439,0): 250, 216, 116, (134,440,0): 246, 212, 114, (134,441,0): 243, 209, 111, (134,442,0): 238, 205, 110, (134,443,0): 232, 202, 106, (134,444,0): 229, 198, 105, (134,445,0): 225, 196, 104, (134,446,0): 222, 195, 104, (134,447,0): 222, 195, 104, (134,448,0): 227, 200, 109, (134,449,0): 223, 198, 108, (134,450,0): 217, 193, 107, (134,451,0): 208, 186, 103, (134,452,0): 196, 177, 100, (134,453,0): 185, 168, 96, (134,454,0): 176, 161, 92, (134,455,0): 171, 157, 94, (134,456,0): 159, 147, 89, (134,457,0): 154, 143, 89, (134,458,0): 150, 138, 86, (134,459,0): 148, 136, 86, (134,460,0): 148, 135, 90, (134,461,0): 147, 134, 89, (134,462,0): 146, 132, 87, (134,463,0): 146, 129, 86, (134,464,0): 153, 131, 92, (134,465,0): 154, 130, 92, (134,466,0): 153, 130, 89, (134,467,0): 153, 130, 88, (134,468,0): 155, 132, 88, (134,469,0): 159, 137, 90, (134,470,0): 162, 140, 91, (134,471,0): 165, 143, 93, (134,472,0): 167, 145, 95, (134,473,0): 166, 145, 92, (134,474,0): 165, 143, 93, (134,475,0): 164, 142, 92, (134,476,0): 163, 141, 92, (134,477,0): 163, 141, 92, (134,478,0): 163, 141, 94, (134,479,0): 163, 142, 95, (134,480,0): 156, 135, 88, (134,481,0): 154, 136, 88, (134,482,0): 155, 137, 89, (134,483,0): 155, 137, 89, (134,484,0): 156, 140, 91, (134,485,0): 159, 143, 94, (134,486,0): 161, 145, 96, (134,487,0): 163, 147, 98, (134,488,0): 164, 150, 101, (134,489,0): 164, 150, 101, (134,490,0): 163, 151, 101, (134,491,0): 164, 152, 102, (134,492,0): 165, 153, 103, (134,493,0): 165, 153, 103, (134,494,0): 165, 155, 104, (134,495,0): 165, 155, 104, (134,496,0): 163, 151, 99, (134,497,0): 163, 151, 99, (134,498,0): 162, 150, 98, (134,499,0): 160, 148, 96, (134,500,0): 159, 146, 94, (134,501,0): 158, 144, 95, (134,502,0): 157, 143, 94, (134,503,0): 156, 142, 93, (134,504,0): 160, 143, 97, (134,505,0): 158, 141, 95, (134,506,0): 155, 136, 93, (134,507,0): 150, 131, 88, (134,508,0): 147, 128, 85, (134,509,0): 144, 125, 82, (134,510,0): 145, 124, 81, (134,511,0): 145, 123, 82, (134,512,0): 140, 116, 78, (134,513,0): 138, 114, 78, (134,514,0): 136, 112, 78, (134,515,0): 137, 113, 79, (134,516,0): 140, 116, 82, (134,517,0): 142, 116, 83, (134,518,0): 140, 113, 83, (134,519,0): 138, 111, 81, (134,520,0): 137, 107, 79, (134,521,0): 136, 106, 78, (134,522,0): 136, 105, 77, (134,523,0): 133, 102, 74, (134,524,0): 129, 97, 72, (134,525,0): 125, 93, 68, (134,526,0): 122, 90, 65, (134,527,0): 119, 87, 64, (134,528,0): 116, 88, 67, (134,529,0): 114, 87, 68, (134,530,0): 112, 85, 68, (134,531,0): 109, 82, 65, (134,532,0): 105, 79, 62, (134,533,0): 103, 77, 60, (134,534,0): 99, 76, 60, (134,535,0): 97, 74, 58, (134,536,0): 99, 76, 62, (134,537,0): 97, 74, 60, (134,538,0): 94, 72, 58, (134,539,0): 91, 69, 55, (134,540,0): 88, 69, 55, (134,541,0): 87, 68, 54, (134,542,0): 86, 67, 53, (134,543,0): 86, 67, 53, (134,544,0): 87, 69, 55, (134,545,0): 87, 69, 55, (134,546,0): 85, 67, 53, (134,547,0): 84, 66, 52, (134,548,0): 82, 64, 52, (134,549,0): 80, 62, 50, (134,550,0): 79, 61, 49, (134,551,0): 78, 60, 48, (134,552,0): 79, 61, 51, (134,553,0): 79, 61, 51, (134,554,0): 79, 60, 53, (134,555,0): 78, 59, 52, (134,556,0): 77, 58, 51, (134,557,0): 77, 58, 51, (134,558,0): 76, 57, 51, (134,559,0): 76, 57, 51, (134,560,0): 74, 53, 52, (134,561,0): 71, 50, 49, (134,562,0): 67, 47, 46, (134,563,0): 65, 47, 45, (134,564,0): 65, 50, 47, (134,565,0): 67, 52, 49, (134,566,0): 65, 51, 48, (134,567,0): 61, 50, 46, (134,568,0): 64, 53, 49, (134,569,0): 65, 51, 48, (134,570,0): 66, 51, 48, (134,571,0): 65, 50, 47, (134,572,0): 67, 49, 47, (134,573,0): 68, 48, 47, (134,574,0): 70, 49, 48, (134,575,0): 70, 49, 46, (134,576,0): 72, 51, 48, (134,577,0): 73, 52, 47, (134,578,0): 75, 54, 49, (134,579,0): 77, 56, 51, (134,580,0): 78, 57, 52, (134,581,0): 79, 58, 53, (134,582,0): 79, 58, 53, (134,583,0): 78, 57, 52, (134,584,0): 84, 63, 58, (134,585,0): 84, 63, 58, (134,586,0): 84, 63, 58, (134,587,0): 85, 64, 59, (134,588,0): 85, 64, 59, (134,589,0): 86, 65, 60, (134,590,0): 86, 65, 60, (134,591,0): 86, 65, 60, (134,592,0): 82, 63, 57, (134,593,0): 81, 62, 56, (134,594,0): 79, 60, 54, (134,595,0): 76, 57, 51, (134,596,0): 72, 53, 47, (134,597,0): 68, 49, 43, (134,598,0): 64, 45, 39, (134,599,0): 62, 43, 37, (135,0,0): 51, 36, 43, (135,1,0): 51, 36, 43, (135,2,0): 49, 36, 43, (135,3,0): 48, 35, 42, (135,4,0): 45, 32, 41, (135,5,0): 41, 28, 37, (135,6,0): 36, 25, 33, (135,7,0): 34, 23, 31, (135,8,0): 33, 23, 32, (135,9,0): 34, 24, 33, (135,10,0): 34, 24, 35, (135,11,0): 34, 24, 35, (135,12,0): 33, 25, 36, (135,13,0): 33, 25, 36, (135,14,0): 34, 26, 39, (135,15,0): 36, 25, 39, (135,16,0): 36, 22, 37, (135,17,0): 39, 22, 38, (135,18,0): 41, 24, 40, (135,19,0): 43, 26, 42, (135,20,0): 44, 27, 43, (135,21,0): 44, 27, 43, (135,22,0): 44, 27, 43, (135,23,0): 43, 26, 42, (135,24,0): 47, 30, 46, (135,25,0): 47, 30, 46, (135,26,0): 46, 29, 45, (135,27,0): 45, 28, 44, (135,28,0): 44, 27, 43, (135,29,0): 44, 27, 43, (135,30,0): 43, 26, 42, (135,31,0): 43, 26, 42, (135,32,0): 45, 28, 44, (135,33,0): 45, 28, 44, (135,34,0): 45, 28, 44, (135,35,0): 45, 28, 44, (135,36,0): 45, 28, 44, (135,37,0): 45, 28, 44, (135,38,0): 45, 28, 44, (135,39,0): 45, 28, 44, (135,40,0): 47, 30, 46, (135,41,0): 47, 30, 46, (135,42,0): 47, 30, 46, (135,43,0): 47, 30, 46, (135,44,0): 47, 30, 46, (135,45,0): 47, 30, 46, (135,46,0): 47, 30, 46, (135,47,0): 47, 30, 46, (135,48,0): 47, 30, 46, (135,49,0): 47, 30, 46, (135,50,0): 48, 30, 46, (135,51,0): 48, 30, 46, (135,52,0): 48, 30, 46, (135,53,0): 48, 30, 46, (135,54,0): 50, 29, 46, (135,55,0): 50, 29, 46, (135,56,0): 52, 29, 47, (135,57,0): 52, 29, 47, (135,58,0): 52, 29, 47, (135,59,0): 52, 29, 47, (135,60,0): 53, 28, 47, (135,61,0): 53, 28, 47, (135,62,0): 53, 28, 47, (135,63,0): 53, 28, 47, (135,64,0): 53, 30, 46, (135,65,0): 52, 31, 46, (135,66,0): 51, 30, 45, (135,67,0): 50, 29, 44, (135,68,0): 49, 28, 43, (135,69,0): 46, 28, 42, (135,70,0): 45, 27, 41, (135,71,0): 45, 27, 41, (135,72,0): 43, 25, 39, (135,73,0): 42, 26, 39, (135,74,0): 42, 26, 39, (135,75,0): 40, 26, 39, (135,76,0): 40, 26, 39, (135,77,0): 40, 26, 39, (135,78,0): 40, 26, 39, (135,79,0): 40, 26, 39, (135,80,0): 43, 25, 37, (135,81,0): 43, 25, 37, (135,82,0): 43, 25, 37, (135,83,0): 44, 26, 38, (135,84,0): 45, 27, 39, (135,85,0): 45, 27, 39, (135,86,0): 45, 27, 39, (135,87,0): 46, 28, 40, (135,88,0): 42, 24, 36, (135,89,0): 43, 25, 37, (135,90,0): 43, 25, 37, (135,91,0): 44, 26, 38, (135,92,0): 45, 27, 39, (135,93,0): 46, 28, 40, (135,94,0): 46, 28, 40, (135,95,0): 47, 29, 41, (135,96,0): 45, 28, 44, (135,97,0): 42, 28, 43, (135,98,0): 40, 26, 41, (135,99,0): 38, 24, 39, (135,100,0): 35, 21, 36, (135,101,0): 33, 19, 34, (135,102,0): 30, 18, 32, (135,103,0): 29, 17, 31, (135,104,0): 28, 16, 30, (135,105,0): 27, 16, 30, (135,106,0): 27, 16, 30, (135,107,0): 25, 17, 30, (135,108,0): 26, 18, 31, (135,109,0): 26, 18, 31, (135,110,0): 26, 18, 31, (135,111,0): 26, 18, 31, (135,112,0): 24, 16, 29, (135,113,0): 24, 16, 29, (135,114,0): 24, 16, 29, (135,115,0): 24, 16, 29, (135,116,0): 24, 16, 29, (135,117,0): 24, 16, 29, (135,118,0): 24, 16, 29, (135,119,0): 24, 16, 29, (135,120,0): 21, 13, 26, (135,121,0): 21, 13, 26, (135,122,0): 22, 14, 27, (135,123,0): 22, 14, 27, (135,124,0): 23, 15, 28, (135,125,0): 23, 15, 28, (135,126,0): 24, 16, 29, (135,127,0): 24, 16, 27, (135,128,0): 29, 17, 29, (135,129,0): 29, 17, 27, (135,130,0): 29, 17, 27, (135,131,0): 29, 17, 27, (135,132,0): 29, 17, 27, (135,133,0): 29, 17, 27, (135,134,0): 30, 17, 27, (135,135,0): 30, 17, 27, (135,136,0): 32, 16, 27, (135,137,0): 33, 17, 28, (135,138,0): 34, 16, 28, (135,139,0): 35, 17, 29, (135,140,0): 36, 18, 30, (135,141,0): 37, 19, 31, (135,142,0): 37, 19, 31, (135,143,0): 38, 20, 32, (135,144,0): 37, 19, 33, (135,145,0): 37, 19, 33, (135,146,0): 38, 20, 34, (135,147,0): 38, 20, 32, (135,148,0): 39, 21, 33, (135,149,0): 39, 21, 33, (135,150,0): 39, 22, 32, (135,151,0): 40, 23, 33, (135,152,0): 37, 20, 30, (135,153,0): 37, 20, 28, (135,154,0): 38, 21, 29, (135,155,0): 38, 21, 29, (135,156,0): 39, 22, 28, (135,157,0): 39, 22, 28, (135,158,0): 40, 23, 29, (135,159,0): 40, 23, 29, (135,160,0): 43, 24, 30, (135,161,0): 43, 24, 30, (135,162,0): 43, 24, 30, (135,163,0): 42, 23, 29, (135,164,0): 42, 23, 29, (135,165,0): 41, 22, 28, (135,166,0): 41, 22, 28, (135,167,0): 41, 22, 28, (135,168,0): 41, 22, 28, (135,169,0): 41, 22, 28, (135,170,0): 41, 22, 28, (135,171,0): 41, 22, 28, (135,172,0): 41, 22, 28, (135,173,0): 41, 22, 28, (135,174,0): 41, 22, 28, (135,175,0): 41, 22, 28, (135,176,0): 40, 23, 29, (135,177,0): 40, 23, 29, (135,178,0): 40, 23, 29, (135,179,0): 40, 23, 29, (135,180,0): 42, 23, 27, (135,181,0): 42, 23, 27, (135,182,0): 42, 23, 27, (135,183,0): 42, 23, 27, (135,184,0): 44, 24, 26, (135,185,0): 45, 25, 27, (135,186,0): 46, 24, 26, (135,187,0): 47, 25, 27, (135,188,0): 47, 25, 27, (135,189,0): 48, 26, 28, (135,190,0): 50, 26, 26, (135,191,0): 50, 26, 26, (135,192,0): 47, 25, 27, (135,193,0): 47, 25, 27, (135,194,0): 48, 26, 28, (135,195,0): 48, 26, 28, (135,196,0): 51, 27, 27, (135,197,0): 51, 27, 27, (135,198,0): 53, 27, 28, (135,199,0): 53, 27, 28, (135,200,0): 53, 27, 26, (135,201,0): 53, 27, 26, (135,202,0): 56, 28, 25, (135,203,0): 56, 28, 25, (135,204,0): 58, 28, 26, (135,205,0): 58, 28, 26, (135,206,0): 59, 30, 26, (135,207,0): 59, 29, 27, (135,208,0): 59, 29, 29, (135,209,0): 59, 29, 31, (135,210,0): 59, 29, 29, (135,211,0): 59, 29, 29, (135,212,0): 59, 29, 29, (135,213,0): 59, 29, 29, (135,214,0): 59, 29, 27, (135,215,0): 59, 29, 27, (135,216,0): 61, 32, 28, (135,217,0): 61, 32, 28, (135,218,0): 61, 32, 28, (135,219,0): 61, 32, 28, (135,220,0): 60, 31, 25, (135,221,0): 60, 31, 25, (135,222,0): 60, 31, 25, (135,223,0): 60, 31, 23, (135,224,0): 64, 34, 24, (135,225,0): 63, 33, 23, (135,226,0): 61, 31, 21, (135,227,0): 61, 31, 21, (135,228,0): 61, 31, 21, (135,229,0): 63, 33, 23, (135,230,0): 65, 35, 25, (135,231,0): 67, 37, 27, (135,232,0): 62, 32, 22, (135,233,0): 62, 32, 22, (135,234,0): 62, 32, 22, (135,235,0): 62, 32, 22, (135,236,0): 62, 32, 22, (135,237,0): 62, 32, 22, (135,238,0): 62, 32, 22, (135,239,0): 62, 32, 22, (135,240,0): 63, 33, 23, (135,241,0): 63, 33, 23, (135,242,0): 63, 33, 23, (135,243,0): 63, 33, 23, (135,244,0): 63, 33, 23, (135,245,0): 63, 33, 23, (135,246,0): 63, 33, 23, (135,247,0): 63, 33, 23, (135,248,0): 62, 32, 22, (135,249,0): 62, 32, 22, (135,250,0): 63, 33, 23, (135,251,0): 64, 34, 24, (135,252,0): 65, 35, 25, (135,253,0): 66, 36, 26, (135,254,0): 67, 37, 27, (135,255,0): 67, 37, 27, (135,256,0): 71, 37, 27, (135,257,0): 71, 37, 27, (135,258,0): 71, 37, 27, (135,259,0): 71, 37, 27, (135,260,0): 71, 37, 27, (135,261,0): 71, 37, 27, (135,262,0): 71, 37, 27, (135,263,0): 71, 37, 27, (135,264,0): 70, 36, 26, (135,265,0): 70, 36, 26, (135,266,0): 70, 36, 26, (135,267,0): 70, 36, 26, (135,268,0): 70, 36, 26, (135,269,0): 70, 36, 26, (135,270,0): 70, 36, 26, (135,271,0): 70, 36, 26, (135,272,0): 69, 35, 26, (135,273,0): 69, 34, 28, (135,274,0): 70, 35, 29, (135,275,0): 70, 36, 27, (135,276,0): 71, 37, 28, (135,277,0): 71, 37, 28, (135,278,0): 72, 38, 28, (135,279,0): 72, 38, 28, (135,280,0): 74, 40, 30, (135,281,0): 74, 40, 28, (135,282,0): 76, 42, 30, (135,283,0): 77, 43, 31, (135,284,0): 79, 46, 31, (135,285,0): 80, 47, 32, (135,286,0): 82, 49, 34, (135,287,0): 82, 49, 32, (135,288,0): 84, 51, 34, (135,289,0): 85, 52, 35, (135,290,0): 86, 53, 38, (135,291,0): 88, 55, 40, (135,292,0): 89, 56, 41, (135,293,0): 91, 58, 43, (135,294,0): 94, 58, 44, (135,295,0): 95, 59, 43, (135,296,0): 97, 60, 44, (135,297,0): 99, 62, 43, (135,298,0): 101, 63, 42, (135,299,0): 102, 65, 39, (135,300,0): 103, 66, 39, (135,301,0): 108, 71, 42, (135,302,0): 116, 80, 48, (135,303,0): 125, 86, 43, (135,304,0): 151, 107, 46, (135,305,0): 177, 129, 55, (135,306,0): 202, 150, 67, (135,307,0): 212, 158, 70, (135,308,0): 212, 157, 64, (135,309,0): 210, 155, 64, (135,310,0): 205, 151, 63, (135,311,0): 199, 147, 64, (135,312,0): 189, 142, 62, (135,313,0): 187, 144, 65, (135,314,0): 184, 145, 66, (135,315,0): 183, 146, 66, (135,316,0): 181, 144, 66, (135,317,0): 179, 141, 68, (135,318,0): 176, 137, 68, (135,319,0): 175, 134, 72, (135,320,0): 169, 127, 69, (135,321,0): 167, 124, 71, (135,322,0): 164, 121, 68, (135,323,0): 161, 120, 66, (135,324,0): 160, 121, 66, (135,325,0): 160, 124, 66, (135,326,0): 162, 126, 68, (135,327,0): 163, 128, 70, (135,328,0): 165, 129, 71, (135,329,0): 167, 131, 71, (135,330,0): 170, 134, 74, (135,331,0): 177, 138, 79, (135,332,0): 185, 145, 86, (135,333,0): 193, 151, 91, (135,334,0): 198, 156, 98, (135,335,0): 204, 158, 99, (135,336,0): 209, 154, 98, (135,337,0): 213, 153, 99, (135,338,0): 215, 155, 101, (135,339,0): 217, 157, 103, (135,340,0): 216, 159, 104, (135,341,0): 216, 159, 104, (135,342,0): 216, 159, 104, (135,343,0): 215, 158, 103, (135,344,0): 215, 158, 103, (135,345,0): 213, 158, 102, (135,346,0): 213, 158, 102, (135,347,0): 213, 158, 102, (135,348,0): 215, 160, 104, (135,349,0): 218, 163, 107, (135,350,0): 220, 168, 111, (135,351,0): 225, 169, 112, (135,352,0): 234, 172, 113, (135,353,0): 238, 172, 112, (135,354,0): 242, 174, 113, (135,355,0): 243, 175, 112, (135,356,0): 245, 175, 113, (135,357,0): 246, 175, 111, (135,358,0): 247, 173, 108, (135,359,0): 247, 173, 108, (135,360,0): 247, 173, 108, (135,361,0): 248, 174, 109, (135,362,0): 249, 178, 114, (135,363,0): 249, 180, 115, (135,364,0): 246, 178, 117, (135,365,0): 239, 173, 112, (135,366,0): 234, 168, 108, (135,367,0): 228, 166, 107, (135,368,0): 222, 166, 109, (135,369,0): 221, 166, 110, (135,370,0): 217, 164, 110, (135,371,0): 214, 161, 107, (135,372,0): 210, 159, 106, (135,373,0): 205, 155, 102, (135,374,0): 200, 153, 101, (135,375,0): 197, 151, 101, (135,376,0): 196, 152, 103, (135,377,0): 193, 153, 104, (135,378,0): 189, 151, 104, (135,379,0): 186, 149, 104, (135,380,0): 183, 149, 103, (135,381,0): 182, 149, 104, (135,382,0): 183, 150, 107, (135,383,0): 185, 150, 108, (135,384,0): 190, 153, 109, (135,385,0): 193, 154, 111, (135,386,0): 196, 159, 115, (135,387,0): 199, 162, 118, (135,388,0): 201, 164, 120, (135,389,0): 202, 165, 121, (135,390,0): 201, 164, 120, (135,391,0): 198, 164, 118, (135,392,0): 195, 161, 115, (135,393,0): 195, 161, 115, (135,394,0): 195, 161, 113, (135,395,0): 195, 163, 114, (135,396,0): 196, 164, 113, (135,397,0): 200, 168, 117, (135,398,0): 205, 172, 121, (135,399,0): 208, 175, 122, (135,400,0): 208, 176, 117, (135,401,0): 209, 179, 115, (135,402,0): 214, 183, 119, (135,403,0): 218, 187, 122, (135,404,0): 222, 191, 126, (135,405,0): 224, 193, 126, (135,406,0): 226, 193, 124, (135,407,0): 227, 194, 123, (135,408,0): 229, 197, 122, (135,409,0): 231, 198, 121, (135,410,0): 232, 199, 120, (135,411,0): 236, 201, 120, (135,412,0): 237, 202, 121, (135,413,0): 239, 204, 122, (135,414,0): 240, 205, 123, (135,415,0): 239, 207, 124, (135,416,0): 233, 205, 121, (135,417,0): 230, 204, 119, (135,418,0): 228, 202, 117, (135,419,0): 230, 204, 119, (135,420,0): 232, 206, 121, (135,421,0): 232, 206, 119, (135,422,0): 228, 202, 115, (135,423,0): 225, 199, 112, (135,424,0): 225, 199, 112, (135,425,0): 227, 201, 114, (135,426,0): 230, 204, 117, (135,427,0): 232, 206, 119, (135,428,0): 234, 208, 121, (135,429,0): 234, 209, 119, (135,430,0): 233, 207, 120, (135,431,0): 232, 207, 115, (135,432,0): 235, 209, 116, (135,433,0): 239, 213, 116, (135,434,0): 247, 219, 122, (135,435,0): 252, 224, 125, (135,436,0): 255, 224, 125, (135,437,0): 254, 222, 121, (135,438,0): 251, 217, 117, (135,439,0): 248, 214, 114, (135,440,0): 242, 208, 110, (135,441,0): 240, 206, 108, (135,442,0): 236, 203, 106, (135,443,0): 231, 201, 105, (135,444,0): 229, 198, 107, (135,445,0): 228, 199, 107, (135,446,0): 226, 199, 108, (135,447,0): 226, 199, 110, (135,448,0): 227, 202, 112, (135,449,0): 223, 199, 111, (135,450,0): 216, 194, 109, (135,451,0): 207, 186, 105, (135,452,0): 195, 177, 101, (135,453,0): 185, 168, 96, (135,454,0): 175, 160, 93, (135,455,0): 168, 157, 93, (135,456,0): 158, 148, 89, (135,457,0): 154, 143, 89, (135,458,0): 150, 138, 86, (135,459,0): 148, 136, 86, (135,460,0): 148, 135, 90, (135,461,0): 148, 135, 90, (135,462,0): 147, 133, 88, (135,463,0): 147, 130, 86, (135,464,0): 156, 134, 93, (135,465,0): 156, 133, 92, (135,466,0): 155, 132, 90, (135,467,0): 155, 132, 88, (135,468,0): 157, 135, 88, (135,469,0): 160, 138, 89, (135,470,0): 164, 142, 92, (135,471,0): 166, 145, 92, (135,472,0): 169, 148, 95, (135,473,0): 168, 147, 94, (135,474,0): 166, 144, 94, (135,475,0): 163, 141, 91, (135,476,0): 163, 141, 92, (135,477,0): 163, 141, 92, (135,478,0): 164, 142, 95, (135,479,0): 164, 143, 96, (135,480,0): 156, 135, 88, (135,481,0): 154, 136, 88, (135,482,0): 155, 137, 89, (135,483,0): 156, 138, 90, (135,484,0): 157, 141, 92, (135,485,0): 159, 143, 94, (135,486,0): 162, 146, 97, (135,487,0): 163, 147, 98, (135,488,0): 164, 150, 101, (135,489,0): 165, 151, 102, (135,490,0): 164, 152, 102, (135,491,0): 165, 153, 103, (135,492,0): 166, 154, 104, (135,493,0): 167, 155, 105, (135,494,0): 166, 156, 105, (135,495,0): 167, 157, 106, (135,496,0): 165, 153, 101, (135,497,0): 164, 152, 100, (135,498,0): 163, 151, 99, (135,499,0): 162, 150, 98, (135,500,0): 161, 148, 96, (135,501,0): 159, 146, 94, (135,502,0): 158, 144, 95, (135,503,0): 158, 144, 95, (135,504,0): 161, 144, 98, (135,505,0): 158, 141, 95, (135,506,0): 155, 136, 93, (135,507,0): 150, 131, 88, (135,508,0): 146, 127, 84, (135,509,0): 144, 125, 82, (135,510,0): 145, 124, 81, (135,511,0): 144, 122, 81, (135,512,0): 139, 115, 77, (135,513,0): 137, 113, 77, (135,514,0): 136, 112, 78, (135,515,0): 137, 113, 79, (135,516,0): 141, 115, 82, (135,517,0): 142, 116, 83, (135,518,0): 140, 113, 83, (135,519,0): 138, 111, 81, (135,520,0): 138, 108, 80, (135,521,0): 137, 107, 79, (135,522,0): 137, 106, 78, (135,523,0): 134, 103, 75, (135,524,0): 130, 98, 73, (135,525,0): 125, 93, 68, (135,526,0): 123, 89, 64, (135,527,0): 119, 87, 64, (135,528,0): 115, 87, 66, (135,529,0): 113, 86, 67, (135,530,0): 111, 84, 67, (135,531,0): 108, 81, 64, (135,532,0): 104, 78, 61, (135,533,0): 101, 75, 58, (135,534,0): 97, 74, 58, (135,535,0): 95, 72, 56, (135,536,0): 96, 73, 59, (135,537,0): 95, 72, 58, (135,538,0): 92, 70, 56, (135,539,0): 90, 68, 54, (135,540,0): 86, 67, 53, (135,541,0): 86, 67, 53, (135,542,0): 86, 67, 53, (135,543,0): 86, 67, 53, (135,544,0): 87, 69, 55, (135,545,0): 87, 69, 55, (135,546,0): 85, 67, 53, (135,547,0): 83, 65, 51, (135,548,0): 81, 63, 51, (135,549,0): 80, 62, 50, (135,550,0): 78, 60, 48, (135,551,0): 77, 59, 47, (135,552,0): 79, 61, 51, (135,553,0): 79, 61, 51, (135,554,0): 78, 59, 52, (135,555,0): 77, 58, 51, (135,556,0): 76, 57, 50, (135,557,0): 75, 56, 49, (135,558,0): 74, 55, 49, (135,559,0): 74, 55, 51, (135,560,0): 72, 51, 50, (135,561,0): 68, 48, 47, (135,562,0): 64, 46, 44, (135,563,0): 64, 46, 44, (135,564,0): 64, 49, 46, (135,565,0): 65, 51, 48, (135,566,0): 62, 51, 47, (135,567,0): 60, 49, 45, (135,568,0): 63, 52, 48, (135,569,0): 63, 52, 48, (135,570,0): 65, 51, 48, (135,571,0): 67, 52, 49, (135,572,0): 68, 50, 48, (135,573,0): 68, 50, 48, (135,574,0): 68, 48, 47, (135,575,0): 68, 47, 46, (135,576,0): 71, 50, 47, (135,577,0): 72, 51, 46, (135,578,0): 74, 53, 48, (135,579,0): 76, 55, 50, (135,580,0): 78, 57, 52, (135,581,0): 78, 57, 52, (135,582,0): 78, 57, 52, (135,583,0): 78, 57, 52, (135,584,0): 84, 63, 58, (135,585,0): 84, 63, 58, (135,586,0): 85, 64, 59, (135,587,0): 85, 64, 59, (135,588,0): 86, 65, 60, (135,589,0): 86, 65, 60, (135,590,0): 87, 66, 61, (135,591,0): 87, 66, 61, (135,592,0): 82, 63, 57, (135,593,0): 81, 62, 56, (135,594,0): 79, 60, 54, (135,595,0): 76, 57, 51, (135,596,0): 72, 53, 47, (135,597,0): 68, 49, 43, (135,598,0): 64, 45, 39, (135,599,0): 61, 42, 36, (136,0,0): 47, 32, 39, (136,1,0): 50, 35, 42, (136,2,0): 51, 38, 45, (136,3,0): 49, 36, 43, (136,4,0): 44, 31, 40, (136,5,0): 40, 27, 36, (136,6,0): 38, 27, 35, (136,7,0): 38, 27, 35, (136,8,0): 35, 25, 34, (136,9,0): 35, 25, 34, (136,10,0): 34, 24, 35, (136,11,0): 33, 23, 34, (136,12,0): 32, 24, 35, (136,13,0): 32, 24, 35, (136,14,0): 34, 26, 39, (136,15,0): 37, 26, 40, (136,16,0): 39, 25, 40, (136,17,0): 41, 24, 40, (136,18,0): 41, 24, 40, (136,19,0): 42, 25, 41, (136,20,0): 42, 25, 41, (136,21,0): 43, 26, 42, (136,22,0): 43, 26, 42, (136,23,0): 44, 27, 43, (136,24,0): 45, 28, 44, (136,25,0): 45, 28, 44, (136,26,0): 45, 28, 44, (136,27,0): 45, 28, 44, (136,28,0): 45, 28, 44, (136,29,0): 45, 28, 44, (136,30,0): 45, 28, 44, (136,31,0): 45, 28, 44, (136,32,0): 47, 30, 46, (136,33,0): 47, 30, 46, (136,34,0): 47, 30, 46, (136,35,0): 47, 30, 46, (136,36,0): 47, 30, 46, (136,37,0): 47, 30, 46, (136,38,0): 47, 30, 46, (136,39,0): 47, 30, 46, (136,40,0): 45, 28, 44, (136,41,0): 45, 28, 44, (136,42,0): 45, 28, 44, (136,43,0): 45, 28, 44, (136,44,0): 45, 28, 44, (136,45,0): 45, 28, 44, (136,46,0): 45, 28, 44, (136,47,0): 45, 28, 44, (136,48,0): 51, 33, 49, (136,49,0): 50, 32, 48, (136,50,0): 50, 29, 46, (136,51,0): 49, 28, 45, (136,52,0): 49, 28, 45, (136,53,0): 50, 29, 46, (136,54,0): 53, 30, 48, (136,55,0): 54, 31, 49, (136,56,0): 53, 28, 47, (136,57,0): 53, 28, 47, (136,58,0): 53, 28, 47, (136,59,0): 53, 28, 47, (136,60,0): 55, 28, 47, (136,61,0): 55, 28, 47, (136,62,0): 55, 28, 47, (136,63,0): 53, 28, 47, (136,64,0): 53, 29, 45, (136,65,0): 52, 30, 43, (136,66,0): 52, 30, 43, (136,67,0): 51, 29, 42, (136,68,0): 50, 28, 41, (136,69,0): 49, 29, 41, (136,70,0): 49, 29, 41, (136,71,0): 46, 28, 40, (136,72,0): 43, 25, 37, (136,73,0): 43, 25, 37, (136,74,0): 43, 25, 37, (136,75,0): 42, 26, 37, (136,76,0): 42, 26, 37, (136,77,0): 42, 26, 37, (136,78,0): 42, 26, 37, (136,79,0): 42, 26, 37, (136,80,0): 43, 25, 37, (136,81,0): 46, 26, 38, (136,82,0): 47, 27, 39, (136,83,0): 48, 28, 40, (136,84,0): 48, 28, 40, (136,85,0): 47, 27, 39, (136,86,0): 46, 26, 38, (136,87,0): 45, 25, 37, (136,88,0): 45, 25, 37, (136,89,0): 46, 26, 38, (136,90,0): 48, 28, 40, (136,91,0): 49, 29, 41, (136,92,0): 48, 28, 40, (136,93,0): 46, 26, 38, (136,94,0): 44, 24, 36, (136,95,0): 41, 23, 35, (136,96,0): 40, 23, 39, (136,97,0): 39, 22, 38, (136,98,0): 38, 21, 37, (136,99,0): 37, 20, 36, (136,100,0): 33, 19, 34, (136,101,0): 32, 18, 33, (136,102,0): 31, 17, 32, (136,103,0): 29, 17, 31, (136,104,0): 29, 17, 31, (136,105,0): 27, 16, 30, (136,106,0): 27, 16, 30, (136,107,0): 27, 16, 30, (136,108,0): 26, 15, 29, (136,109,0): 26, 15, 29, (136,110,0): 23, 15, 28, (136,111,0): 23, 15, 28, (136,112,0): 24, 16, 29, (136,113,0): 24, 16, 29, (136,114,0): 24, 16, 29, (136,115,0): 24, 16, 29, (136,116,0): 24, 16, 29, (136,117,0): 24, 16, 29, (136,118,0): 24, 16, 29, (136,119,0): 24, 16, 29, (136,120,0): 23, 15, 28, (136,121,0): 23, 15, 28, (136,122,0): 23, 15, 28, (136,123,0): 23, 15, 28, (136,124,0): 23, 15, 28, (136,125,0): 23, 15, 28, (136,126,0): 23, 15, 28, (136,127,0): 23, 15, 26, (136,128,0): 29, 17, 29, (136,129,0): 29, 17, 27, (136,130,0): 29, 17, 27, (136,131,0): 29, 17, 27, (136,132,0): 29, 17, 27, (136,133,0): 29, 17, 27, (136,134,0): 30, 17, 27, (136,135,0): 30, 17, 27, (136,136,0): 32, 16, 27, (136,137,0): 32, 16, 27, (136,138,0): 33, 15, 27, (136,139,0): 34, 16, 28, (136,140,0): 34, 16, 28, (136,141,0): 35, 17, 29, (136,142,0): 35, 17, 29, (136,143,0): 35, 17, 29, (136,144,0): 38, 18, 30, (136,145,0): 38, 18, 30, (136,146,0): 38, 18, 30, (136,147,0): 39, 19, 31, (136,148,0): 39, 19, 31, (136,149,0): 40, 20, 31, (136,150,0): 40, 20, 31, (136,151,0): 41, 21, 32, (136,152,0): 40, 20, 29, (136,153,0): 40, 20, 29, (136,154,0): 41, 21, 30, (136,155,0): 43, 24, 30, (136,156,0): 44, 25, 31, (136,157,0): 46, 27, 33, (136,158,0): 47, 28, 32, (136,159,0): 47, 28, 32, (136,160,0): 43, 22, 29, (136,161,0): 43, 22, 29, (136,162,0): 43, 22, 29, (136,163,0): 43, 22, 29, (136,164,0): 43, 22, 29, (136,165,0): 43, 22, 29, (136,166,0): 43, 22, 29, (136,167,0): 43, 22, 29, (136,168,0): 43, 22, 29, (136,169,0): 43, 22, 29, (136,170,0): 42, 21, 28, (136,171,0): 42, 21, 28, (136,172,0): 41, 20, 27, (136,173,0): 41, 20, 27, (136,174,0): 40, 19, 26, (136,175,0): 39, 20, 26, (136,176,0): 39, 22, 28, (136,177,0): 39, 22, 28, (136,178,0): 39, 22, 28, (136,179,0): 39, 22, 28, (136,180,0): 41, 22, 26, (136,181,0): 41, 22, 26, (136,182,0): 41, 22, 26, (136,183,0): 41, 22, 26, (136,184,0): 44, 24, 26, (136,185,0): 45, 25, 27, (136,186,0): 46, 24, 26, (136,187,0): 47, 25, 27, (136,188,0): 47, 25, 27, (136,189,0): 48, 26, 28, (136,190,0): 50, 26, 26, (136,191,0): 50, 26, 26, (136,192,0): 47, 25, 27, (136,193,0): 47, 25, 27, (136,194,0): 48, 26, 28, (136,195,0): 48, 26, 28, (136,196,0): 51, 27, 27, (136,197,0): 51, 27, 27, (136,198,0): 53, 27, 28, (136,199,0): 53, 27, 28, (136,200,0): 52, 26, 25, (136,201,0): 52, 26, 25, (136,202,0): 54, 26, 23, (136,203,0): 55, 27, 24, (136,204,0): 56, 26, 24, (136,205,0): 57, 27, 25, (136,206,0): 57, 28, 24, (136,207,0): 57, 27, 25, (136,208,0): 60, 30, 30, (136,209,0): 60, 30, 30, (136,210,0): 60, 30, 30, (136,211,0): 60, 30, 30, (136,212,0): 60, 30, 28, (136,213,0): 60, 30, 28, (136,214,0): 60, 30, 28, (136,215,0): 60, 30, 28, (136,216,0): 59, 30, 26, (136,217,0): 59, 30, 26, (136,218,0): 59, 30, 24, (136,219,0): 59, 30, 24, (136,220,0): 59, 30, 24, (136,221,0): 59, 30, 24, (136,222,0): 59, 30, 22, (136,223,0): 59, 30, 22, (136,224,0): 61, 31, 21, (136,225,0): 62, 32, 22, (136,226,0): 62, 32, 22, (136,227,0): 63, 33, 23, (136,228,0): 63, 33, 23, (136,229,0): 64, 34, 24, (136,230,0): 64, 34, 24, (136,231,0): 64, 34, 24, (136,232,0): 61, 31, 21, (136,233,0): 61, 31, 21, (136,234,0): 61, 31, 21, (136,235,0): 60, 30, 20, (136,236,0): 60, 30, 20, (136,237,0): 59, 29, 19, (136,238,0): 59, 29, 19, (136,239,0): 58, 28, 18, (136,240,0): 60, 30, 20, (136,241,0): 60, 30, 20, (136,242,0): 61, 31, 21, (136,243,0): 61, 31, 21, (136,244,0): 62, 32, 22, (136,245,0): 62, 32, 22, (136,246,0): 63, 33, 23, (136,247,0): 63, 33, 23, (136,248,0): 62, 32, 22, (136,249,0): 62, 32, 22, (136,250,0): 62, 32, 22, (136,251,0): 63, 33, 23, (136,252,0): 63, 33, 23, (136,253,0): 64, 34, 24, (136,254,0): 64, 34, 24, (136,255,0): 64, 34, 24, (136,256,0): 73, 39, 29, (136,257,0): 73, 39, 29, (136,258,0): 72, 38, 28, (136,259,0): 72, 38, 28, (136,260,0): 72, 38, 28, (136,261,0): 72, 38, 28, (136,262,0): 71, 37, 27, (136,263,0): 71, 37, 27, (136,264,0): 67, 33, 23, (136,265,0): 67, 33, 23, (136,266,0): 68, 34, 24, (136,267,0): 69, 35, 25, (136,268,0): 70, 36, 26, (136,269,0): 70, 36, 26, (136,270,0): 71, 37, 27, (136,271,0): 71, 37, 27, (136,272,0): 72, 38, 29, (136,273,0): 72, 38, 29, (136,274,0): 73, 39, 30, (136,275,0): 73, 39, 30, (136,276,0): 74, 40, 31, (136,277,0): 74, 40, 30, (136,278,0): 75, 41, 31, (136,279,0): 75, 41, 31, (136,280,0): 76, 42, 30, (136,281,0): 77, 43, 31, (136,282,0): 77, 43, 31, (136,283,0): 78, 45, 30, (136,284,0): 79, 46, 31, (136,285,0): 79, 46, 31, (136,286,0): 80, 47, 30, (136,287,0): 80, 47, 30, (136,288,0): 85, 52, 35, (136,289,0): 86, 53, 34, (136,290,0): 87, 54, 37, (136,291,0): 89, 56, 39, (136,292,0): 91, 58, 41, (136,293,0): 93, 60, 43, (136,294,0): 96, 60, 46, (136,295,0): 97, 61, 45, (136,296,0): 98, 61, 45, (136,297,0): 97, 60, 41, (136,298,0): 98, 60, 39, (136,299,0): 100, 62, 39, (136,300,0): 105, 68, 42, (136,301,0): 110, 73, 44, (136,302,0): 116, 80, 48, (136,303,0): 123, 84, 43, (136,304,0): 147, 102, 45, (136,305,0): 168, 121, 51, (136,306,0): 197, 146, 67, (136,307,0): 212, 160, 74, (136,308,0): 217, 162, 71, (136,309,0): 211, 156, 65, (136,310,0): 204, 150, 62, (136,311,0): 200, 148, 64, (136,312,0): 196, 148, 66, (136,313,0): 193, 148, 67, (136,314,0): 189, 148, 68, (136,315,0): 185, 147, 66, (136,316,0): 183, 144, 65, (136,317,0): 181, 142, 67, (136,318,0): 182, 139, 70, (136,319,0): 181, 137, 74, (136,320,0): 170, 125, 68, (136,321,0): 170, 125, 70, (136,322,0): 169, 124, 69, (136,323,0): 167, 124, 69, (136,324,0): 165, 124, 68, (136,325,0): 164, 125, 66, (136,326,0): 165, 126, 67, (136,327,0): 163, 127, 67, (136,328,0): 171, 132, 73, (136,329,0): 175, 137, 75, (136,330,0): 180, 142, 80, (136,331,0): 184, 144, 83, (136,332,0): 188, 146, 86, (136,333,0): 193, 149, 88, (136,334,0): 199, 154, 95, (136,335,0): 206, 157, 98, (136,336,0): 212, 156, 99, (136,337,0): 215, 154, 99, (136,338,0): 215, 156, 100, (136,339,0): 216, 157, 101, (136,340,0): 216, 157, 101, (136,341,0): 217, 158, 102, (136,342,0): 218, 159, 103, (136,343,0): 216, 160, 103, (136,344,0): 215, 159, 102, (136,345,0): 213, 157, 100, (136,346,0): 210, 154, 97, (136,347,0): 210, 154, 97, (136,348,0): 213, 158, 101, (136,349,0): 219, 164, 107, (136,350,0): 226, 171, 114, (136,351,0): 231, 175, 116, (136,352,0): 228, 166, 107, (136,353,0): 231, 167, 106, (136,354,0): 234, 168, 107, (136,355,0): 239, 171, 108, (136,356,0): 242, 174, 111, (136,357,0): 246, 177, 112, (136,358,0): 248, 179, 112, (136,359,0): 250, 179, 113, (136,360,0): 243, 172, 106, (136,361,0): 241, 172, 105, (136,362,0): 240, 171, 106, (136,363,0): 241, 173, 108, (136,364,0): 242, 174, 113, (136,365,0): 239, 173, 112, (136,366,0): 235, 169, 109, (136,367,0): 228, 168, 108, (136,368,0): 220, 165, 108, (136,369,0): 214, 163, 106, (136,370,0): 209, 160, 104, (136,371,0): 207, 158, 102, (136,372,0): 206, 159, 105, (136,373,0): 205, 159, 107, (136,374,0): 204, 158, 108, (136,375,0): 199, 155, 106, (136,376,0): 199, 157, 109, (136,377,0): 195, 152, 107, (136,378,0): 189, 148, 104, (136,379,0): 183, 144, 101, (136,380,0): 182, 143, 102, (136,381,0): 182, 145, 103, (136,382,0): 184, 146, 107, (136,383,0): 187, 149, 110, (136,384,0): 189, 147, 107, (136,385,0): 193, 150, 108, (136,386,0): 197, 154, 111, (136,387,0): 202, 159, 116, (136,388,0): 204, 161, 118, (136,389,0): 203, 162, 116, (136,390,0): 202, 161, 115, (136,391,0): 201, 161, 112, (136,392,0): 200, 162, 113, (136,393,0): 200, 163, 111, (136,394,0): 199, 163, 111, (136,395,0): 198, 165, 112, (136,396,0): 200, 167, 114, (136,397,0): 203, 170, 117, (136,398,0): 204, 173, 119, (136,399,0): 207, 174, 120, (136,400,0): 205, 173, 112, (136,401,0): 208, 177, 113, (136,402,0): 216, 182, 119, (136,403,0): 222, 188, 124, (136,404,0): 227, 194, 127, (136,405,0): 230, 197, 128, (136,406,0): 233, 199, 128, (136,407,0): 233, 199, 127, (136,408,0): 229, 195, 121, (136,409,0): 234, 198, 122, (136,410,0): 239, 203, 125, (136,411,0): 245, 208, 128, (136,412,0): 247, 210, 129, (136,413,0): 246, 210, 126, (136,414,0): 244, 208, 124, (136,415,0): 241, 206, 122, (136,416,0): 237, 206, 124, (136,417,0): 231, 203, 120, (136,418,0): 226, 198, 115, (136,419,0): 226, 198, 115, (136,420,0): 227, 199, 116, (136,421,0): 228, 200, 116, (136,422,0): 226, 199, 112, (136,423,0): 223, 196, 109, (136,424,0): 234, 207, 118, (136,425,0): 236, 209, 118, (136,426,0): 240, 213, 122, (136,427,0): 243, 217, 124, (136,428,0): 245, 219, 126, (136,429,0): 246, 220, 125, (136,430,0): 245, 219, 126, (136,431,0): 244, 218, 123, (136,432,0): 247, 221, 124, (136,433,0): 248, 223, 123, (136,434,0): 252, 224, 125, (136,435,0): 252, 224, 124, (136,436,0): 253, 221, 122, (136,437,0): 249, 217, 116, (136,438,0): 245, 211, 111, (136,439,0): 241, 208, 105, (136,440,0): 243, 209, 109, (136,441,0): 239, 205, 107, (136,442,0): 232, 199, 102, (136,443,0): 227, 197, 101, (136,444,0): 228, 197, 106, (136,445,0): 228, 199, 107, (136,446,0): 226, 199, 108, (136,447,0): 224, 199, 109, (136,448,0): 225, 201, 113, (136,449,0): 218, 196, 110, (136,450,0): 211, 190, 107, (136,451,0): 202, 183, 104, (136,452,0): 195, 177, 101, (136,453,0): 184, 170, 99, (136,454,0): 175, 161, 96, (136,455,0): 166, 155, 93, (136,456,0): 159, 148, 92, (136,457,0): 157, 146, 92, (136,458,0): 153, 141, 89, (136,459,0): 150, 138, 88, (136,460,0): 148, 134, 89, (136,461,0): 148, 134, 89, (136,462,0): 150, 133, 89, (136,463,0): 152, 133, 90, (136,464,0): 157, 135, 94, (136,465,0): 159, 136, 95, (136,466,0): 160, 137, 95, (136,467,0): 163, 140, 96, (136,468,0): 165, 143, 96, (136,469,0): 167, 145, 96, (136,470,0): 169, 147, 97, (136,471,0): 170, 149, 96, (136,472,0): 171, 150, 97, (136,473,0): 169, 148, 93, (136,474,0): 167, 146, 93, (136,475,0): 165, 144, 91, (136,476,0): 165, 143, 93, (136,477,0): 165, 143, 93, (136,478,0): 167, 145, 96, (136,479,0): 167, 147, 97, (136,480,0): 159, 139, 89, (136,481,0): 157, 139, 89, (136,482,0): 157, 139, 89, (136,483,0): 158, 140, 90, (136,484,0): 158, 142, 91, (136,485,0): 161, 145, 94, (136,486,0): 163, 147, 96, (136,487,0): 164, 148, 97, (136,488,0): 163, 150, 98, (136,489,0): 164, 151, 99, (136,490,0): 164, 152, 100, (136,491,0): 166, 154, 102, (136,492,0): 167, 155, 103, (136,493,0): 168, 156, 104, (136,494,0): 168, 158, 105, (136,495,0): 168, 158, 105, (136,496,0): 166, 154, 102, (136,497,0): 165, 153, 101, (136,498,0): 163, 151, 99, (136,499,0): 162, 150, 98, (136,500,0): 161, 148, 96, (136,501,0): 161, 148, 96, (136,502,0): 160, 146, 97, (136,503,0): 160, 146, 97, (136,504,0): 157, 140, 94, (136,505,0): 157, 140, 94, (136,506,0): 156, 137, 94, (136,507,0): 154, 135, 92, (136,508,0): 150, 131, 88, (136,509,0): 146, 127, 84, (136,510,0): 144, 123, 80, (136,511,0): 142, 120, 79, (136,512,0): 138, 114, 78, (136,513,0): 138, 114, 80, (136,514,0): 139, 115, 81, (136,515,0): 139, 115, 81, (136,516,0): 139, 112, 82, (136,517,0): 136, 109, 79, (136,518,0): 134, 107, 77, (136,519,0): 132, 105, 75, (136,520,0): 137, 107, 79, (136,521,0): 133, 103, 75, (136,522,0): 129, 97, 72, (136,523,0): 126, 94, 69, (136,524,0): 124, 92, 67, (136,525,0): 120, 88, 63, (136,526,0): 117, 82, 60, (136,527,0): 111, 79, 58, (136,528,0): 105, 76, 58, (136,529,0): 103, 76, 59, (136,530,0): 102, 75, 58, (136,531,0): 100, 73, 56, (136,532,0): 97, 71, 56, (136,533,0): 95, 69, 54, (136,534,0): 92, 69, 55, (136,535,0): 91, 68, 54, (136,536,0): 86, 63, 49, (136,537,0): 87, 64, 50, (136,538,0): 88, 66, 53, (136,539,0): 89, 67, 54, (136,540,0): 87, 67, 56, (136,541,0): 87, 67, 56, (136,542,0): 87, 67, 56, (136,543,0): 86, 66, 55, (136,544,0): 82, 64, 50, (136,545,0): 82, 64, 50, (136,546,0): 81, 63, 49, (136,547,0): 80, 62, 48, (136,548,0): 78, 60, 48, (136,549,0): 75, 57, 45, (136,550,0): 72, 54, 42, (136,551,0): 71, 53, 41, (136,552,0): 76, 58, 48, (136,553,0): 76, 58, 48, (136,554,0): 75, 56, 49, (136,555,0): 74, 55, 48, (136,556,0): 73, 54, 47, (136,557,0): 73, 54, 47, (136,558,0): 73, 54, 48, (136,559,0): 74, 55, 51, (136,560,0): 71, 51, 50, (136,561,0): 70, 50, 51, (136,562,0): 67, 49, 49, (136,563,0): 65, 47, 47, (136,564,0): 62, 46, 46, (136,565,0): 60, 46, 45, (136,566,0): 58, 47, 45, (136,567,0): 58, 47, 45, (136,568,0): 58, 47, 45, (136,569,0): 58, 47, 45, (136,570,0): 60, 46, 45, (136,571,0): 62, 46, 46, (136,572,0): 65, 47, 47, (136,573,0): 66, 48, 48, (136,574,0): 67, 47, 48, (136,575,0): 68, 48, 47, (136,576,0): 70, 49, 46, (136,577,0): 71, 50, 45, (136,578,0): 72, 51, 46, (136,579,0): 73, 52, 47, (136,580,0): 75, 54, 49, (136,581,0): 77, 56, 51, (136,582,0): 78, 57, 52, (136,583,0): 78, 57, 52, (136,584,0): 78, 57, 52, (136,585,0): 79, 58, 53, (136,586,0): 81, 60, 55, (136,587,0): 82, 61, 56, (136,588,0): 83, 62, 57, (136,589,0): 83, 62, 57, (136,590,0): 83, 62, 57, (136,591,0): 82, 61, 56, (136,592,0): 82, 63, 57, (136,593,0): 82, 63, 57, (136,594,0): 80, 61, 55, (136,595,0): 78, 59, 53, (136,596,0): 74, 55, 49, (136,597,0): 70, 51, 45, (136,598,0): 66, 47, 41, (136,599,0): 64, 45, 39, (137,0,0): 49, 34, 41, (137,1,0): 51, 36, 43, (137,2,0): 50, 37, 44, (137,3,0): 48, 35, 42, (137,4,0): 44, 31, 40, (137,5,0): 40, 27, 36, (137,6,0): 39, 28, 36, (137,7,0): 40, 28, 38, (137,8,0): 34, 24, 33, (137,9,0): 33, 23, 32, (137,10,0): 33, 23, 34, (137,11,0): 32, 22, 33, (137,12,0): 31, 23, 34, (137,13,0): 32, 24, 37, (137,14,0): 33, 25, 38, (137,15,0): 36, 25, 39, (137,16,0): 40, 26, 41, (137,17,0): 42, 25, 41, (137,18,0): 42, 25, 41, (137,19,0): 43, 26, 42, (137,20,0): 43, 26, 42, (137,21,0): 44, 27, 43, (137,22,0): 44, 27, 43, (137,23,0): 44, 27, 43, (137,24,0): 45, 28, 44, (137,25,0): 45, 28, 44, (137,26,0): 45, 28, 44, (137,27,0): 45, 28, 44, (137,28,0): 45, 28, 44, (137,29,0): 45, 28, 44, (137,30,0): 45, 28, 44, (137,31,0): 45, 28, 44, (137,32,0): 47, 30, 46, (137,33,0): 47, 30, 46, (137,34,0): 47, 30, 46, (137,35,0): 47, 30, 46, (137,36,0): 47, 30, 46, (137,37,0): 47, 30, 46, (137,38,0): 47, 30, 46, (137,39,0): 47, 30, 46, (137,40,0): 45, 28, 44, (137,41,0): 45, 28, 44, (137,42,0): 45, 28, 44, (137,43,0): 45, 28, 44, (137,44,0): 45, 28, 44, (137,45,0): 45, 28, 44, (137,46,0): 45, 28, 44, (137,47,0): 45, 28, 44, (137,48,0): 50, 32, 48, (137,49,0): 50, 32, 48, (137,50,0): 51, 30, 47, (137,51,0): 50, 29, 46, (137,52,0): 50, 29, 46, (137,53,0): 51, 30, 47, (137,54,0): 53, 30, 48, (137,55,0): 53, 30, 48, (137,56,0): 53, 28, 47, (137,57,0): 53, 28, 47, (137,58,0): 53, 28, 47, (137,59,0): 53, 28, 47, (137,60,0): 55, 28, 47, (137,61,0): 55, 28, 47, (137,62,0): 55, 28, 47, (137,63,0): 55, 28, 45, (137,64,0): 56, 29, 44, (137,65,0): 53, 29, 43, (137,66,0): 53, 29, 43, (137,67,0): 51, 29, 42, (137,68,0): 51, 29, 42, (137,69,0): 50, 28, 41, (137,70,0): 50, 28, 41, (137,71,0): 49, 29, 41, (137,72,0): 46, 26, 38, (137,73,0): 44, 26, 38, (137,74,0): 44, 26, 38, (137,75,0): 44, 26, 38, (137,76,0): 44, 26, 38, (137,77,0): 43, 27, 38, (137,78,0): 43, 27, 38, (137,79,0): 44, 26, 38, (137,80,0): 46, 26, 38, (137,81,0): 47, 27, 39, (137,82,0): 48, 28, 40, (137,83,0): 48, 28, 40, (137,84,0): 48, 28, 40, (137,85,0): 48, 28, 40, (137,86,0): 47, 27, 39, (137,87,0): 46, 26, 38, (137,88,0): 46, 26, 38, (137,89,0): 46, 26, 38, (137,90,0): 47, 27, 39, (137,91,0): 46, 26, 38, (137,92,0): 46, 26, 38, (137,93,0): 45, 25, 37, (137,94,0): 43, 23, 35, (137,95,0): 42, 22, 34, (137,96,0): 40, 22, 36, (137,97,0): 39, 22, 38, (137,98,0): 38, 21, 37, (137,99,0): 37, 20, 36, (137,100,0): 35, 18, 34, (137,101,0): 32, 18, 33, (137,102,0): 31, 17, 32, (137,103,0): 31, 17, 32, (137,104,0): 30, 18, 32, (137,105,0): 29, 17, 31, (137,106,0): 29, 17, 31, (137,107,0): 28, 17, 31, (137,108,0): 27, 16, 30, (137,109,0): 26, 15, 29, (137,110,0): 24, 16, 29, (137,111,0): 24, 16, 29, (137,112,0): 24, 16, 29, (137,113,0): 24, 16, 29, (137,114,0): 24, 16, 29, (137,115,0): 24, 16, 29, (137,116,0): 24, 16, 29, (137,117,0): 24, 16, 29, (137,118,0): 24, 16, 29, (137,119,0): 24, 16, 29, (137,120,0): 23, 15, 28, (137,121,0): 23, 15, 28, (137,122,0): 23, 15, 28, (137,123,0): 23, 15, 28, (137,124,0): 23, 15, 28, (137,125,0): 23, 15, 28, (137,126,0): 23, 15, 28, (137,127,0): 23, 15, 26, (137,128,0): 29, 17, 29, (137,129,0): 29, 17, 27, (137,130,0): 29, 17, 27, (137,131,0): 29, 17, 27, (137,132,0): 29, 17, 27, (137,133,0): 29, 17, 27, (137,134,0): 30, 17, 27, (137,135,0): 30, 17, 27, (137,136,0): 32, 16, 27, (137,137,0): 32, 16, 27, (137,138,0): 33, 15, 27, (137,139,0): 34, 16, 28, (137,140,0): 34, 16, 28, (137,141,0): 35, 17, 29, (137,142,0): 35, 17, 29, (137,143,0): 35, 17, 29, (137,144,0): 38, 18, 30, (137,145,0): 38, 18, 30, (137,146,0): 39, 19, 31, (137,147,0): 39, 19, 31, (137,148,0): 40, 20, 31, (137,149,0): 40, 20, 31, (137,150,0): 40, 20, 31, (137,151,0): 41, 21, 30, (137,152,0): 40, 20, 29, (137,153,0): 41, 22, 28, (137,154,0): 42, 23, 29, (137,155,0): 43, 24, 30, (137,156,0): 44, 25, 31, (137,157,0): 45, 26, 32, (137,158,0): 46, 27, 31, (137,159,0): 47, 28, 32, (137,160,0): 43, 22, 29, (137,161,0): 43, 22, 29, (137,162,0): 43, 22, 29, (137,163,0): 43, 22, 29, (137,164,0): 43, 22, 29, (137,165,0): 43, 22, 29, (137,166,0): 43, 22, 29, (137,167,0): 43, 22, 29, (137,168,0): 43, 22, 29, (137,169,0): 43, 22, 29, (137,170,0): 42, 21, 28, (137,171,0): 42, 21, 28, (137,172,0): 41, 20, 27, (137,173,0): 41, 20, 27, (137,174,0): 40, 19, 26, (137,175,0): 40, 19, 26, (137,176,0): 41, 22, 28, (137,177,0): 39, 22, 28, (137,178,0): 39, 22, 28, (137,179,0): 39, 22, 28, (137,180,0): 41, 22, 26, (137,181,0): 41, 22, 26, (137,182,0): 41, 22, 26, (137,183,0): 41, 22, 26, (137,184,0): 44, 24, 26, (137,185,0): 45, 25, 27, (137,186,0): 46, 24, 26, (137,187,0): 46, 24, 26, (137,188,0): 47, 25, 27, (137,189,0): 47, 25, 27, (137,190,0): 50, 26, 26, (137,191,0): 50, 26, 26, (137,192,0): 47, 25, 27, (137,193,0): 47, 25, 27, (137,194,0): 48, 26, 28, (137,195,0): 48, 26, 28, (137,196,0): 51, 27, 27, (137,197,0): 51, 27, 27, (137,198,0): 53, 27, 28, (137,199,0): 53, 27, 28, (137,200,0): 52, 26, 25, (137,201,0): 52, 26, 25, (137,202,0): 54, 26, 23, (137,203,0): 55, 27, 24, (137,204,0): 56, 26, 24, (137,205,0): 57, 27, 25, (137,206,0): 57, 28, 24, (137,207,0): 57, 28, 24, (137,208,0): 60, 30, 28, (137,209,0): 60, 30, 30, (137,210,0): 60, 30, 30, (137,211,0): 60, 30, 28, (137,212,0): 60, 30, 28, (137,213,0): 60, 30, 28, (137,214,0): 60, 30, 28, (137,215,0): 60, 31, 27, (137,216,0): 59, 30, 26, (137,217,0): 59, 30, 24, (137,218,0): 59, 30, 24, (137,219,0): 59, 30, 24, (137,220,0): 59, 30, 24, (137,221,0): 59, 30, 22, (137,222,0): 59, 30, 22, (137,223,0): 59, 30, 22, (137,224,0): 61, 31, 21, (137,225,0): 62, 32, 22, (137,226,0): 62, 32, 22, (137,227,0): 62, 32, 22, (137,228,0): 63, 33, 23, (137,229,0): 63, 33, 23, (137,230,0): 64, 34, 24, (137,231,0): 64, 34, 24, (137,232,0): 61, 31, 21, (137,233,0): 61, 31, 21, (137,234,0): 60, 30, 20, (137,235,0): 60, 30, 20, (137,236,0): 59, 29, 19, (137,237,0): 59, 29, 19, (137,238,0): 59, 29, 19, (137,239,0): 58, 28, 18, (137,240,0): 60, 30, 20, (137,241,0): 60, 30, 20, (137,242,0): 60, 30, 20, (137,243,0): 61, 31, 21, (137,244,0): 61, 31, 21, (137,245,0): 62, 32, 22, (137,246,0): 62, 32, 22, (137,247,0): 63, 33, 23, (137,248,0): 62, 32, 22, (137,249,0): 62, 32, 22, (137,250,0): 62, 32, 22, (137,251,0): 63, 33, 23, (137,252,0): 63, 33, 23, (137,253,0): 64, 34, 24, (137,254,0): 64, 34, 24, (137,255,0): 64, 34, 24, (137,256,0): 72, 38, 28, (137,257,0): 72, 38, 28, (137,258,0): 72, 38, 28, (137,259,0): 72, 38, 28, (137,260,0): 72, 38, 28, (137,261,0): 72, 38, 28, (137,262,0): 72, 38, 28, (137,263,0): 72, 38, 28, (137,264,0): 67, 33, 23, (137,265,0): 68, 34, 24, (137,266,0): 68, 34, 24, (137,267,0): 69, 35, 25, (137,268,0): 70, 36, 26, (137,269,0): 70, 36, 26, (137,270,0): 71, 37, 27, (137,271,0): 71, 37, 27, (137,272,0): 72, 38, 29, (137,273,0): 72, 38, 29, (137,274,0): 72, 38, 29, (137,275,0): 73, 39, 30, (137,276,0): 73, 39, 29, (137,277,0): 74, 40, 30, (137,278,0): 74, 40, 30, (137,279,0): 75, 41, 29, (137,280,0): 77, 43, 31, (137,281,0): 77, 44, 29, (137,282,0): 78, 45, 30, (137,283,0): 79, 46, 31, (137,284,0): 80, 47, 32, (137,285,0): 81, 48, 33, (137,286,0): 81, 48, 31, (137,287,0): 82, 49, 32, (137,288,0): 84, 51, 32, (137,289,0): 85, 52, 33, (137,290,0): 86, 53, 34, (137,291,0): 88, 55, 38, (137,292,0): 90, 57, 40, (137,293,0): 92, 59, 42, (137,294,0): 95, 59, 45, (137,295,0): 96, 60, 44, (137,296,0): 97, 60, 42, (137,297,0): 97, 60, 42, (137,298,0): 98, 60, 41, (137,299,0): 100, 62, 39, (137,300,0): 104, 67, 41, (137,301,0): 110, 73, 46, (137,302,0): 115, 78, 49, (137,303,0): 121, 83, 44, (137,304,0): 139, 96, 43, (137,305,0): 160, 115, 48, (137,306,0): 188, 140, 64, (137,307,0): 208, 157, 74, (137,308,0): 213, 162, 71, (137,309,0): 212, 158, 68, (137,310,0): 207, 153, 65, (137,311,0): 203, 151, 67, (137,312,0): 196, 148, 66, (137,313,0): 194, 149, 68, (137,314,0): 190, 149, 67, (137,315,0): 187, 149, 66, (137,316,0): 185, 147, 66, (137,317,0): 184, 142, 66, (137,318,0): 182, 138, 67, (137,319,0): 181, 136, 71, (137,320,0): 174, 128, 69, (137,321,0): 173, 126, 70, (137,322,0): 170, 125, 68, (137,323,0): 167, 125, 67, (137,324,0): 167, 125, 67, (137,325,0): 167, 127, 66, (137,326,0): 167, 128, 69, (137,327,0): 168, 130, 68, (137,328,0): 171, 133, 71, (137,329,0): 175, 137, 75, (137,330,0): 182, 142, 81, (137,331,0): 186, 146, 85, (137,332,0): 192, 148, 87, (137,333,0): 195, 151, 90, (137,334,0): 200, 154, 94, (137,335,0): 206, 156, 97, (137,336,0): 212, 156, 99, (137,337,0): 214, 155, 99, (137,338,0): 214, 155, 99, (137,339,0): 213, 157, 100, (137,340,0): 215, 156, 100, (137,341,0): 215, 156, 100, (137,342,0): 216, 157, 101, (137,343,0): 216, 157, 101, (137,344,0): 211, 155, 98, (137,345,0): 210, 154, 97, (137,346,0): 209, 153, 96, (137,347,0): 211, 155, 98, (137,348,0): 214, 159, 102, (137,349,0): 221, 166, 109, (137,350,0): 227, 172, 115, (137,351,0): 232, 176, 117, (137,352,0): 227, 165, 106, (137,353,0): 230, 166, 105, (137,354,0): 232, 168, 107, (137,355,0): 236, 170, 109, (137,356,0): 238, 173, 109, (137,357,0): 241, 176, 110, (137,358,0): 245, 177, 112, (137,359,0): 246, 179, 111, (137,360,0): 243, 176, 108, (137,361,0): 241, 173, 108, (137,362,0): 239, 174, 108, (137,363,0): 240, 175, 111, (137,364,0): 242, 176, 115, (137,365,0): 240, 176, 115, (137,366,0): 237, 173, 112, (137,367,0): 230, 170, 110, (137,368,0): 216, 166, 107, (137,369,0): 210, 164, 105, (137,370,0): 205, 160, 103, (137,371,0): 203, 158, 101, (137,372,0): 204, 159, 104, (137,373,0): 202, 159, 106, (137,374,0): 200, 157, 106, (137,375,0): 198, 154, 105, (137,376,0): 199, 156, 111, (137,377,0): 196, 153, 108, (137,378,0): 190, 148, 106, (137,379,0): 186, 144, 102, (137,380,0): 184, 142, 102, (137,381,0): 182, 143, 104, (137,382,0): 185, 145, 109, (137,383,0): 188, 146, 108, (137,384,0): 196, 151, 110, (137,385,0): 198, 153, 111, (137,386,0): 205, 158, 116, (137,387,0): 209, 162, 118, (137,388,0): 211, 164, 118, (137,389,0): 212, 166, 117, (137,390,0): 209, 165, 116, (137,391,0): 209, 166, 115, (137,392,0): 206, 165, 111, (137,393,0): 205, 166, 111, (137,394,0): 202, 165, 110, (137,395,0): 201, 166, 110, (137,396,0): 202, 167, 111, (137,397,0): 202, 170, 113, (137,398,0): 203, 171, 114, (137,399,0): 204, 172, 113, (137,400,0): 208, 174, 111, (137,401,0): 210, 176, 112, (137,402,0): 215, 181, 117, (137,403,0): 221, 188, 121, (137,404,0): 226, 193, 124, (137,405,0): 231, 197, 126, (137,406,0): 234, 200, 128, (137,407,0): 237, 201, 127, (137,408,0): 234, 198, 122, (137,409,0): 237, 201, 123, (137,410,0): 243, 206, 126, (137,411,0): 247, 210, 129, (137,412,0): 248, 212, 128, (137,413,0): 246, 210, 124, (137,414,0): 245, 207, 122, (137,415,0): 241, 206, 122, (137,416,0): 236, 203, 122, (137,417,0): 230, 201, 121, (137,418,0): 227, 196, 116, (137,419,0): 224, 196, 113, (137,420,0): 228, 197, 115, (137,421,0): 227, 199, 115, (137,422,0): 229, 199, 113, (137,423,0): 225, 198, 109, (137,424,0): 238, 208, 118, (137,425,0): 239, 213, 120, (137,426,0): 244, 215, 121, (137,427,0): 245, 219, 122, (137,428,0): 249, 221, 122, (137,429,0): 247, 222, 122, (137,430,0): 248, 220, 121, (137,431,0): 246, 221, 120, (137,432,0): 249, 224, 124, (137,433,0): 250, 225, 124, (137,434,0): 253, 225, 125, (137,435,0): 254, 227, 124, (137,436,0): 255, 223, 122, (137,437,0): 251, 219, 116, (137,438,0): 247, 214, 111, (137,439,0): 245, 212, 109, (137,440,0): 245, 211, 111, (137,441,0): 240, 206, 108, (137,442,0): 233, 200, 103, (137,443,0): 228, 198, 102, (137,444,0): 228, 197, 106, (137,445,0): 228, 199, 107, (137,446,0): 225, 198, 109, (137,447,0): 223, 197, 110, (137,448,0): 218, 196, 110, (137,449,0): 213, 193, 107, (137,450,0): 205, 187, 105, (137,451,0): 199, 182, 104, (137,452,0): 193, 177, 102, (137,453,0): 183, 169, 98, (137,454,0): 171, 160, 94, (137,455,0): 164, 154, 92, (137,456,0): 159, 148, 92, (137,457,0): 156, 145, 91, (137,458,0): 153, 141, 91, (137,459,0): 149, 137, 87, (137,460,0): 148, 134, 87, (137,461,0): 147, 133, 88, (137,462,0): 150, 133, 89, (137,463,0): 152, 133, 90, (137,464,0): 156, 134, 93, (137,465,0): 158, 135, 93, (137,466,0): 160, 137, 93, (137,467,0): 162, 140, 93, (137,468,0): 165, 143, 94, (137,469,0): 167, 145, 95, (137,470,0): 168, 147, 94, (137,471,0): 169, 148, 95, (137,472,0): 170, 149, 94, (137,473,0): 169, 148, 93, (137,474,0): 168, 147, 94, (137,475,0): 167, 146, 93, (137,476,0): 166, 144, 94, (137,477,0): 166, 144, 94, (137,478,0): 167, 145, 96, (137,479,0): 166, 146, 96, (137,480,0): 160, 140, 90, (137,481,0): 157, 139, 89, (137,482,0): 158, 140, 90, (137,483,0): 158, 140, 90, (137,484,0): 159, 143, 92, (137,485,0): 161, 145, 94, (137,486,0): 164, 148, 97, (137,487,0): 165, 149, 98, (137,488,0): 163, 150, 98, (137,489,0): 164, 151, 99, (137,490,0): 164, 152, 100, (137,491,0): 166, 154, 102, (137,492,0): 167, 155, 103, (137,493,0): 168, 156, 104, (137,494,0): 168, 158, 105, (137,495,0): 168, 158, 105, (137,496,0): 166, 154, 102, (137,497,0): 166, 154, 102, (137,498,0): 165, 153, 101, (137,499,0): 164, 152, 100, (137,500,0): 164, 151, 99, (137,501,0): 162, 148, 99, (137,502,0): 161, 147, 98, (137,503,0): 160, 146, 97, (137,504,0): 157, 140, 94, (137,505,0): 156, 139, 93, (137,506,0): 156, 137, 94, (137,507,0): 154, 135, 92, (137,508,0): 150, 131, 88, (137,509,0): 146, 127, 84, (137,510,0): 145, 124, 81, (137,511,0): 142, 120, 79, (137,512,0): 142, 118, 82, (137,513,0): 142, 118, 84, (137,514,0): 142, 118, 84, (137,515,0): 141, 117, 83, (137,516,0): 139, 114, 83, (137,517,0): 137, 110, 80, (137,518,0): 134, 107, 77, (137,519,0): 133, 106, 76, (137,520,0): 136, 106, 78, (137,521,0): 132, 102, 74, (137,522,0): 127, 95, 70, (137,523,0): 123, 91, 66, (137,524,0): 120, 88, 63, (137,525,0): 116, 84, 59, (137,526,0): 110, 78, 55, (137,527,0): 106, 74, 53, (137,528,0): 101, 72, 54, (137,529,0): 99, 72, 55, (137,530,0): 98, 71, 54, (137,531,0): 96, 69, 52, (137,532,0): 93, 67, 52, (137,533,0): 91, 65, 50, (137,534,0): 88, 65, 51, (137,535,0): 87, 64, 50, (137,536,0): 86, 63, 49, (137,537,0): 87, 64, 50, (137,538,0): 87, 65, 52, (137,539,0): 88, 66, 53, (137,540,0): 87, 67, 56, (137,541,0): 87, 67, 56, (137,542,0): 86, 66, 55, (137,543,0): 85, 65, 54, (137,544,0): 82, 64, 50, (137,545,0): 82, 64, 50, (137,546,0): 81, 63, 49, (137,547,0): 80, 62, 48, (137,548,0): 78, 60, 48, (137,549,0): 75, 57, 45, (137,550,0): 73, 55, 43, (137,551,0): 71, 53, 41, (137,552,0): 75, 57, 47, (137,553,0): 75, 57, 47, (137,554,0): 75, 56, 49, (137,555,0): 75, 56, 49, (137,556,0): 74, 55, 48, (137,557,0): 73, 54, 47, (137,558,0): 72, 53, 47, (137,559,0): 72, 53, 49, (137,560,0): 70, 50, 49, (137,561,0): 68, 50, 50, (137,562,0): 66, 48, 48, (137,563,0): 62, 46, 46, (137,564,0): 59, 45, 44, (137,565,0): 57, 46, 44, (137,566,0): 57, 46, 44, (137,567,0): 58, 47, 45, (137,568,0): 57, 46, 44, (137,569,0): 58, 47, 45, (137,570,0): 60, 46, 45, (137,571,0): 61, 47, 46, (137,572,0): 63, 47, 47, (137,573,0): 66, 48, 48, (137,574,0): 68, 48, 49, (137,575,0): 68, 48, 47, (137,576,0): 70, 49, 46, (137,577,0): 70, 49, 44, (137,578,0): 72, 51, 46, (137,579,0): 73, 52, 47, (137,580,0): 75, 54, 49, (137,581,0): 76, 55, 50, (137,582,0): 78, 57, 52, (137,583,0): 78, 57, 52, (137,584,0): 78, 57, 52, (137,585,0): 79, 58, 53, (137,586,0): 81, 60, 55, (137,587,0): 82, 61, 56, (137,588,0): 83, 62, 57, (137,589,0): 83, 62, 57, (137,590,0): 82, 61, 56, (137,591,0): 82, 61, 56, (137,592,0): 82, 63, 57, (137,593,0): 82, 63, 57, (137,594,0): 80, 61, 55, (137,595,0): 78, 59, 53, (137,596,0): 74, 55, 49, (137,597,0): 70, 51, 45, (137,598,0): 67, 48, 42, (137,599,0): 65, 46, 40, (138,0,0): 51, 35, 45, (138,1,0): 51, 35, 45, (138,2,0): 48, 35, 44, (138,3,0): 46, 33, 42, (138,4,0): 42, 29, 39, (138,5,0): 41, 28, 38, (138,6,0): 41, 29, 39, (138,7,0): 42, 30, 42, (138,8,0): 32, 22, 33, (138,9,0): 31, 21, 32, (138,10,0): 31, 20, 34, (138,11,0): 31, 20, 34, (138,12,0): 29, 21, 34, (138,13,0): 31, 23, 38, (138,14,0): 32, 24, 39, (138,15,0): 35, 24, 40, (138,16,0): 41, 27, 42, (138,17,0): 43, 26, 42, (138,18,0): 43, 26, 42, (138,19,0): 44, 27, 43, (138,20,0): 44, 27, 43, (138,21,0): 45, 28, 44, (138,22,0): 45, 28, 44, (138,23,0): 45, 28, 44, (138,24,0): 45, 28, 44, (138,25,0): 45, 28, 44, (138,26,0): 45, 28, 44, (138,27,0): 45, 28, 44, (138,28,0): 45, 28, 44, (138,29,0): 45, 28, 44, (138,30,0): 45, 28, 44, (138,31,0): 45, 28, 44, (138,32,0): 47, 30, 46, (138,33,0): 47, 30, 46, (138,34,0): 47, 30, 46, (138,35,0): 47, 30, 46, (138,36,0): 47, 30, 46, (138,37,0): 47, 30, 46, (138,38,0): 47, 30, 46, (138,39,0): 47, 30, 46, (138,40,0): 46, 29, 45, (138,41,0): 46, 29, 45, (138,42,0): 46, 29, 45, (138,43,0): 46, 29, 45, (138,44,0): 46, 29, 45, (138,45,0): 46, 29, 45, (138,46,0): 46, 29, 45, (138,47,0): 46, 29, 45, (138,48,0): 49, 31, 45, (138,49,0): 51, 30, 45, (138,50,0): 52, 31, 46, (138,51,0): 53, 32, 47, (138,52,0): 54, 31, 47, (138,53,0): 53, 30, 46, (138,54,0): 52, 29, 45, (138,55,0): 52, 29, 45, (138,56,0): 54, 30, 46, (138,57,0): 54, 30, 46, (138,58,0): 56, 29, 46, (138,59,0): 56, 29, 46, (138,60,0): 56, 29, 46, (138,61,0): 56, 29, 46, (138,62,0): 57, 28, 46, (138,63,0): 56, 29, 46, (138,64,0): 56, 29, 44, (138,65,0): 56, 30, 43, (138,66,0): 56, 30, 43, (138,67,0): 53, 29, 42, (138,68,0): 53, 29, 42, (138,69,0): 52, 28, 41, (138,70,0): 52, 28, 41, (138,71,0): 51, 29, 41, (138,72,0): 47, 25, 37, (138,73,0): 46, 26, 37, (138,74,0): 46, 26, 37, (138,75,0): 46, 26, 37, (138,76,0): 46, 26, 37, (138,77,0): 44, 27, 37, (138,78,0): 44, 27, 37, (138,79,0): 44, 27, 37, (138,80,0): 47, 27, 39, (138,81,0): 47, 27, 39, (138,82,0): 48, 28, 40, (138,83,0): 49, 29, 41, (138,84,0): 49, 29, 41, (138,85,0): 48, 28, 40, (138,86,0): 47, 27, 39, (138,87,0): 47, 27, 39, (138,88,0): 48, 28, 40, (138,89,0): 47, 27, 39, (138,90,0): 45, 25, 37, (138,91,0): 43, 23, 35, (138,92,0): 42, 22, 34, (138,93,0): 42, 22, 34, (138,94,0): 42, 22, 34, (138,95,0): 42, 22, 34, (138,96,0): 40, 22, 36, (138,97,0): 39, 21, 35, (138,98,0): 38, 20, 34, (138,99,0): 37, 21, 34, (138,100,0): 35, 19, 32, (138,101,0): 35, 19, 32, (138,102,0): 32, 18, 31, (138,103,0): 31, 17, 30, (138,104,0): 32, 18, 31, (138,105,0): 31, 19, 31, (138,106,0): 31, 19, 31, (138,107,0): 30, 18, 30, (138,108,0): 28, 18, 29, (138,109,0): 28, 18, 29, (138,110,0): 28, 18, 29, (138,111,0): 27, 17, 28, (138,112,0): 25, 17, 30, (138,113,0): 25, 17, 30, (138,114,0): 25, 17, 30, (138,115,0): 25, 17, 30, (138,116,0): 25, 17, 30, (138,117,0): 25, 17, 30, (138,118,0): 25, 17, 30, (138,119,0): 25, 17, 30, (138,120,0): 23, 15, 28, (138,121,0): 23, 15, 28, (138,122,0): 23, 15, 28, (138,123,0): 23, 15, 28, (138,124,0): 23, 15, 28, (138,125,0): 23, 15, 28, (138,126,0): 23, 15, 28, (138,127,0): 23, 15, 26, (138,128,0): 29, 17, 29, (138,129,0): 29, 17, 27, (138,130,0): 29, 17, 27, (138,131,0): 29, 17, 27, (138,132,0): 29, 17, 27, (138,133,0): 29, 17, 27, (138,134,0): 30, 17, 27, (138,135,0): 30, 17, 27, (138,136,0): 32, 16, 27, (138,137,0): 32, 16, 27, (138,138,0): 33, 15, 27, (138,139,0): 34, 16, 28, (138,140,0): 34, 16, 28, (138,141,0): 35, 17, 29, (138,142,0): 35, 17, 29, (138,143,0): 35, 17, 29, (138,144,0): 38, 18, 29, (138,145,0): 39, 19, 30, (138,146,0): 39, 19, 30, (138,147,0): 39, 19, 30, (138,148,0): 40, 20, 31, (138,149,0): 41, 21, 32, (138,150,0): 41, 21, 30, (138,151,0): 41, 21, 30, (138,152,0): 41, 21, 30, (138,153,0): 41, 22, 28, (138,154,0): 42, 23, 29, (138,155,0): 43, 24, 28, (138,156,0): 44, 25, 29, (138,157,0): 45, 26, 30, (138,158,0): 46, 27, 31, (138,159,0): 46, 27, 31, (138,160,0): 44, 23, 28, (138,161,0): 45, 22, 28, (138,162,0): 45, 22, 28, (138,163,0): 45, 22, 28, (138,164,0): 45, 22, 28, (138,165,0): 45, 22, 28, (138,166,0): 45, 22, 28, (138,167,0): 45, 22, 28, (138,168,0): 44, 21, 27, (138,169,0): 44, 21, 27, (138,170,0): 43, 20, 26, (138,171,0): 43, 20, 26, (138,172,0): 42, 19, 25, (138,173,0): 42, 19, 25, (138,174,0): 41, 18, 24, (138,175,0): 40, 19, 24, (138,176,0): 41, 22, 28, (138,177,0): 39, 22, 28, (138,178,0): 39, 22, 28, (138,179,0): 39, 22, 28, (138,180,0): 41, 22, 26, (138,181,0): 41, 22, 26, (138,182,0): 41, 22, 26, (138,183,0): 41, 22, 26, (138,184,0): 44, 24, 26, (138,185,0): 44, 24, 26, (138,186,0): 45, 23, 25, (138,187,0): 46, 24, 26, (138,188,0): 47, 25, 27, (138,189,0): 47, 25, 27, (138,190,0): 49, 25, 25, (138,191,0): 50, 26, 26, (138,192,0): 47, 25, 27, (138,193,0): 47, 25, 27, (138,194,0): 48, 26, 28, (138,195,0): 48, 26, 28, (138,196,0): 51, 27, 27, (138,197,0): 51, 27, 27, (138,198,0): 53, 27, 28, (138,199,0): 53, 27, 28, (138,200,0): 52, 26, 25, (138,201,0): 52, 26, 25, (138,202,0): 54, 26, 23, (138,203,0): 55, 27, 24, (138,204,0): 56, 26, 24, (138,205,0): 57, 27, 25, (138,206,0): 57, 28, 24, (138,207,0): 57, 28, 24, (138,208,0): 60, 30, 28, (138,209,0): 60, 30, 28, (138,210,0): 60, 30, 28, (138,211,0): 60, 30, 28, (138,212,0): 60, 30, 28, (138,213,0): 60, 31, 27, (138,214,0): 60, 31, 27, (138,215,0): 60, 31, 27, (138,216,0): 59, 30, 26, (138,217,0): 59, 30, 24, (138,218,0): 59, 30, 24, (138,219,0): 59, 30, 22, (138,220,0): 59, 30, 22, (138,221,0): 59, 30, 22, (138,222,0): 59, 30, 22, (138,223,0): 59, 31, 20, (138,224,0): 61, 31, 21, (138,225,0): 61, 31, 21, (138,226,0): 61, 31, 21, (138,227,0): 62, 32, 22, (138,228,0): 63, 33, 23, (138,229,0): 63, 33, 23, (138,230,0): 63, 33, 23, (138,231,0): 64, 34, 24, (138,232,0): 61, 31, 21, (138,233,0): 60, 30, 20, (138,234,0): 60, 30, 20, (138,235,0): 60, 30, 20, (138,236,0): 59, 29, 19, (138,237,0): 58, 28, 18, (138,238,0): 58, 28, 18, (138,239,0): 58, 28, 18, (138,240,0): 59, 29, 19, (138,241,0): 60, 30, 20, (138,242,0): 60, 30, 20, (138,243,0): 61, 31, 21, (138,244,0): 61, 31, 21, (138,245,0): 62, 32, 22, (138,246,0): 62, 32, 22, (138,247,0): 62, 32, 22, (138,248,0): 62, 32, 22, (138,249,0): 62, 32, 22, (138,250,0): 62, 32, 22, (138,251,0): 63, 33, 23, (138,252,0): 63, 33, 23, (138,253,0): 64, 34, 24, (138,254,0): 64, 34, 24, (138,255,0): 64, 34, 24, (138,256,0): 72, 38, 28, (138,257,0): 72, 38, 28, (138,258,0): 72, 38, 28, (138,259,0): 72, 38, 28, (138,260,0): 72, 38, 28, (138,261,0): 72, 38, 28, (138,262,0): 72, 38, 28, (138,263,0): 72, 38, 28, (138,264,0): 69, 35, 25, (138,265,0): 69, 35, 25, (138,266,0): 69, 35, 25, (138,267,0): 69, 35, 25, (138,268,0): 70, 36, 26, (138,269,0): 70, 36, 26, (138,270,0): 71, 37, 27, (138,271,0): 71, 37, 27, (138,272,0): 71, 37, 27, (138,273,0): 72, 38, 28, (138,274,0): 72, 38, 28, (138,275,0): 73, 39, 29, (138,276,0): 73, 39, 29, (138,277,0): 74, 40, 30, (138,278,0): 74, 40, 28, (138,279,0): 74, 40, 28, (138,280,0): 78, 44, 32, (138,281,0): 78, 45, 30, (138,282,0): 79, 46, 31, (138,283,0): 80, 47, 30, (138,284,0): 81, 48, 31, (138,285,0): 82, 49, 32, (138,286,0): 83, 50, 33, (138,287,0): 84, 51, 34, (138,288,0): 84, 51, 32, (138,289,0): 85, 53, 32, (138,290,0): 86, 54, 33, (138,291,0): 87, 54, 35, (138,292,0): 89, 56, 39, (138,293,0): 90, 57, 40, (138,294,0): 93, 57, 41, (138,295,0): 94, 58, 42, (138,296,0): 96, 59, 41, (138,297,0): 96, 59, 41, (138,298,0): 98, 60, 41, (138,299,0): 100, 62, 41, (138,300,0): 104, 66, 43, (138,301,0): 109, 72, 45, (138,302,0): 114, 77, 50, (138,303,0): 119, 81, 45, (138,304,0): 129, 89, 40, (138,305,0): 149, 108, 46, (138,306,0): 177, 133, 62, (138,307,0): 199, 152, 72, (138,308,0): 210, 160, 73, (138,309,0): 211, 160, 71, (138,310,0): 207, 155, 69, (138,311,0): 203, 153, 68, (138,312,0): 194, 147, 65, (138,313,0): 194, 149, 66, (138,314,0): 193, 153, 68, (138,315,0): 192, 152, 67, (138,316,0): 190, 149, 67, (138,317,0): 186, 145, 66, (138,318,0): 182, 138, 65, (138,319,0): 181, 133, 67, (138,320,0): 177, 131, 69, (138,321,0): 175, 129, 69, (138,322,0): 171, 126, 67, (138,323,0): 167, 125, 65, (138,324,0): 167, 125, 65, (138,325,0): 168, 128, 66, (138,326,0): 170, 132, 70, (138,327,0): 172, 134, 71, (138,328,0): 171, 133, 70, (138,329,0): 177, 139, 76, (138,330,0): 184, 144, 82, (138,331,0): 189, 149, 87, (138,332,0): 194, 149, 90, (138,333,0): 196, 151, 92, (138,334,0): 200, 154, 95, (138,335,0): 205, 156, 98, (138,336,0): 211, 156, 99, (138,337,0): 212, 156, 99, (138,338,0): 211, 155, 98, (138,339,0): 210, 155, 98, (138,340,0): 211, 155, 98, (138,341,0): 210, 154, 97, (138,342,0): 210, 154, 97, (138,343,0): 210, 154, 97, (138,344,0): 206, 150, 93, (138,345,0): 207, 151, 94, (138,346,0): 210, 154, 97, (138,347,0): 213, 157, 100, (138,348,0): 217, 161, 104, (138,349,0): 222, 166, 109, (138,350,0): 228, 172, 115, (138,351,0): 233, 174, 118, (138,352,0): 226, 165, 108, (138,353,0): 228, 166, 107, (138,354,0): 230, 168, 107, (138,355,0): 234, 170, 108, (138,356,0): 237, 173, 111, (138,357,0): 239, 175, 111, (138,358,0): 241, 178, 111, (138,359,0): 242, 179, 112, (138,360,0): 241, 178, 111, (138,361,0): 239, 176, 109, (138,362,0): 238, 174, 110, (138,363,0): 239, 175, 113, (138,364,0): 241, 177, 115, (138,365,0): 239, 177, 116, (138,366,0): 236, 174, 115, (138,367,0): 231, 172, 114, (138,368,0): 213, 164, 106, (138,369,0): 205, 163, 105, (138,370,0): 201, 158, 103, (138,371,0): 199, 156, 101, (138,372,0): 200, 157, 104, (138,373,0): 199, 158, 104, (138,374,0): 197, 156, 104, (138,375,0): 195, 153, 103, (138,376,0): 198, 155, 110, (138,377,0): 195, 152, 107, (138,378,0): 191, 148, 106, (138,379,0): 187, 144, 102, (138,380,0): 185, 141, 102, (138,381,0): 185, 143, 103, (138,382,0): 187, 145, 107, (138,383,0): 190, 146, 107, (138,384,0): 203, 156, 114, (138,385,0): 205, 158, 114, (138,386,0): 210, 161, 118, (138,387,0): 214, 166, 120, (138,388,0): 217, 169, 121, (138,389,0): 218, 171, 119, (138,390,0): 218, 171, 119, (138,391,0): 218, 171, 117, (138,392,0): 216, 171, 114, (138,393,0): 213, 171, 111, (138,394,0): 210, 170, 109, (138,395,0): 208, 170, 108, (138,396,0): 205, 169, 107, (138,397,0): 204, 170, 107, (138,398,0): 203, 171, 110, (138,399,0): 203, 172, 108, (138,400,0): 209, 175, 111, (138,401,0): 212, 177, 111, (138,402,0): 215, 180, 114, (138,403,0): 220, 185, 117, (138,404,0): 226, 191, 123, (138,405,0): 234, 197, 127, (138,406,0): 238, 201, 130, (138,407,0): 242, 204, 131, (138,408,0): 241, 204, 126, (138,409,0): 243, 206, 126, (138,410,0): 248, 210, 129, (138,411,0): 250, 212, 129, (138,412,0): 250, 212, 129, (138,413,0): 248, 210, 125, (138,414,0): 247, 207, 122, (138,415,0): 242, 206, 122, (138,416,0): 237, 202, 121, (138,417,0): 231, 200, 120, (138,418,0): 227, 194, 115, (138,419,0): 225, 194, 112, (138,420,0): 227, 195, 112, (138,421,0): 229, 199, 113, (138,422,0): 231, 199, 112, (138,423,0): 230, 200, 110, (138,424,0): 243, 212, 119, (138,425,0): 244, 216, 119, (138,426,0): 248, 218, 120, (138,427,0): 250, 222, 122, (138,428,0): 253, 224, 122, (138,429,0): 252, 225, 120, (138,430,0): 252, 223, 119, (138,431,0): 250, 223, 118, (138,432,0): 250, 225, 122, (138,433,0): 251, 226, 123, (138,434,0): 254, 227, 124, (138,435,0): 253, 226, 121, (138,436,0): 255, 223, 120, (138,437,0): 252, 221, 115, (138,438,0): 250, 217, 112, (138,439,0): 248, 215, 112, (138,440,0): 247, 213, 113, (138,441,0): 242, 208, 110, (138,442,0): 235, 202, 105, (138,443,0): 230, 200, 104, (138,444,0): 229, 198, 107, (138,445,0): 228, 199, 107, (138,446,0): 224, 197, 108, (138,447,0): 221, 195, 108, (138,448,0): 211, 189, 104, (138,449,0): 205, 187, 103, (138,450,0): 201, 184, 104, (138,451,0): 197, 181, 104, (138,452,0): 190, 176, 103, (138,453,0): 182, 169, 99, (138,454,0): 171, 160, 96, (138,455,0): 163, 153, 92, (138,456,0): 159, 148, 92, (138,457,0): 155, 146, 91, (138,458,0): 152, 140, 90, (138,459,0): 149, 137, 87, (138,460,0): 148, 134, 87, (138,461,0): 147, 133, 86, (138,462,0): 150, 133, 87, (138,463,0): 151, 133, 87, (138,464,0): 156, 135, 92, (138,465,0): 158, 135, 93, (138,466,0): 160, 137, 93, (138,467,0): 162, 140, 93, (138,468,0): 164, 142, 93, (138,469,0): 166, 144, 94, (138,470,0): 167, 146, 93, (138,471,0): 168, 147, 94, (138,472,0): 168, 147, 92, (138,473,0): 169, 148, 93, (138,474,0): 169, 148, 93, (138,475,0): 169, 148, 95, (138,476,0): 168, 146, 96, (138,477,0): 167, 145, 95, (138,478,0): 166, 144, 94, (138,479,0): 164, 144, 93, (138,480,0): 161, 141, 90, (138,481,0): 159, 142, 90, (138,482,0): 159, 142, 90, (138,483,0): 160, 143, 91, (138,484,0): 160, 144, 92, (138,485,0): 162, 146, 94, (138,486,0): 165, 149, 97, (138,487,0): 166, 150, 98, (138,488,0): 165, 152, 99, (138,489,0): 165, 152, 99, (138,490,0): 164, 153, 99, (138,491,0): 165, 154, 100, (138,492,0): 166, 155, 101, (138,493,0): 167, 156, 102, (138,494,0): 167, 158, 103, (138,495,0): 168, 158, 105, (138,496,0): 166, 156, 103, (138,497,0): 167, 157, 106, (138,498,0): 167, 157, 106, (138,499,0): 167, 157, 106, (138,500,0): 166, 154, 104, (138,501,0): 163, 151, 103, (138,502,0): 160, 148, 100, (138,503,0): 158, 146, 98, (138,504,0): 154, 140, 95, (138,505,0): 154, 140, 95, (138,506,0): 155, 138, 95, (138,507,0): 152, 135, 92, (138,508,0): 149, 132, 89, (138,509,0): 145, 128, 85, (138,510,0): 143, 124, 82, (138,511,0): 141, 122, 82, (138,512,0): 146, 123, 89, (138,513,0): 145, 122, 90, (138,514,0): 144, 121, 89, (138,515,0): 142, 119, 87, (138,516,0): 138, 115, 84, (138,517,0): 136, 111, 81, (138,518,0): 132, 107, 77, (138,519,0): 131, 106, 76, (138,520,0): 130, 103, 76, (138,521,0): 125, 98, 71, (138,522,0): 122, 92, 68, (138,523,0): 117, 87, 63, (138,524,0): 114, 84, 60, (138,525,0): 109, 79, 55, (138,526,0): 103, 72, 51, (138,527,0): 99, 68, 48, (138,528,0): 95, 66, 50, (138,529,0): 94, 66, 52, (138,530,0): 93, 65, 51, (138,531,0): 91, 63, 49, (138,532,0): 89, 63, 50, (138,533,0): 87, 61, 48, (138,534,0): 84, 61, 47, (138,535,0): 83, 60, 46, (138,536,0): 85, 61, 49, (138,537,0): 86, 62, 50, (138,538,0): 86, 64, 53, (138,539,0): 88, 66, 55, (138,540,0): 86, 66, 55, (138,541,0): 86, 66, 55, (138,542,0): 85, 65, 56, (138,543,0): 85, 65, 54, (138,544,0): 82, 64, 50, (138,545,0): 82, 64, 50, (138,546,0): 82, 64, 50, (138,547,0): 81, 63, 49, (138,548,0): 78, 60, 48, (138,549,0): 76, 58, 46, (138,550,0): 73, 55, 43, (138,551,0): 71, 53, 41, (138,552,0): 72, 54, 44, (138,553,0): 73, 55, 45, (138,554,0): 75, 56, 49, (138,555,0): 76, 57, 50, (138,556,0): 75, 56, 49, (138,557,0): 73, 54, 47, (138,558,0): 71, 52, 46, (138,559,0): 69, 50, 46, (138,560,0): 66, 48, 48, (138,561,0): 65, 46, 48, (138,562,0): 63, 44, 46, (138,563,0): 60, 44, 45, (138,564,0): 58, 44, 44, (138,565,0): 56, 44, 44, (138,566,0): 56, 44, 44, (138,567,0): 55, 45, 44, (138,568,0): 56, 46, 45, (138,569,0): 57, 47, 46, (138,570,0): 59, 47, 47, (138,571,0): 62, 48, 48, (138,572,0): 64, 48, 49, (138,573,0): 65, 49, 50, (138,574,0): 68, 49, 51, (138,575,0): 69, 49, 50, (138,576,0): 70, 49, 46, (138,577,0): 71, 50, 45, (138,578,0): 72, 51, 46, (138,579,0): 73, 52, 47, (138,580,0): 75, 54, 49, (138,581,0): 76, 55, 50, (138,582,0): 78, 57, 52, (138,583,0): 78, 57, 52, (138,584,0): 78, 57, 52, (138,585,0): 79, 58, 53, (138,586,0): 81, 60, 55, (138,587,0): 82, 61, 56, (138,588,0): 82, 61, 56, (138,589,0): 82, 61, 56, (138,590,0): 81, 60, 55, (138,591,0): 81, 60, 55, (138,592,0): 82, 63, 57, (138,593,0): 82, 63, 57, (138,594,0): 80, 61, 55, (138,595,0): 78, 59, 53, (138,596,0): 75, 56, 50, (138,597,0): 71, 52, 46, (138,598,0): 68, 49, 43, (138,599,0): 66, 47, 41, (139,0,0): 51, 35, 46, (139,1,0): 50, 34, 44, (139,2,0): 45, 32, 42, (139,3,0): 43, 30, 40, (139,4,0): 41, 28, 38, (139,5,0): 41, 27, 40, (139,6,0): 41, 29, 41, (139,7,0): 42, 30, 42, (139,8,0): 30, 20, 31, (139,9,0): 30, 19, 33, (139,10,0): 29, 18, 32, (139,11,0): 29, 18, 34, (139,12,0): 28, 20, 35, (139,13,0): 30, 22, 37, (139,14,0): 31, 23, 38, (139,15,0): 35, 24, 40, (139,16,0): 41, 27, 42, (139,17,0): 44, 27, 43, (139,18,0): 44, 27, 43, (139,19,0): 45, 28, 44, (139,20,0): 45, 28, 44, (139,21,0): 46, 29, 45, (139,22,0): 46, 29, 45, (139,23,0): 46, 29, 45, (139,24,0): 45, 28, 44, (139,25,0): 45, 28, 44, (139,26,0): 45, 28, 44, (139,27,0): 45, 28, 44, (139,28,0): 45, 28, 44, (139,29,0): 45, 28, 44, (139,30,0): 45, 28, 44, (139,31,0): 45, 28, 44, (139,32,0): 47, 30, 46, (139,33,0): 47, 30, 46, (139,34,0): 47, 30, 46, (139,35,0): 47, 30, 46, (139,36,0): 47, 30, 46, (139,37,0): 47, 30, 46, (139,38,0): 47, 30, 46, (139,39,0): 47, 30, 46, (139,40,0): 46, 29, 45, (139,41,0): 46, 29, 45, (139,42,0): 46, 29, 45, (139,43,0): 46, 29, 45, (139,44,0): 46, 29, 45, (139,45,0): 46, 29, 45, (139,46,0): 46, 29, 45, (139,47,0): 46, 29, 45, (139,48,0): 50, 29, 44, (139,49,0): 51, 30, 45, (139,50,0): 53, 32, 47, (139,51,0): 54, 33, 48, (139,52,0): 55, 32, 48, (139,53,0): 54, 31, 47, (139,54,0): 52, 29, 45, (139,55,0): 51, 28, 44, (139,56,0): 54, 30, 46, (139,57,0): 54, 30, 46, (139,58,0): 56, 29, 46, (139,59,0): 56, 29, 46, (139,60,0): 56, 29, 46, (139,61,0): 56, 29, 46, (139,62,0): 57, 28, 46, (139,63,0): 57, 29, 44, (139,64,0): 57, 31, 44, (139,65,0): 57, 31, 44, (139,66,0): 57, 31, 44, (139,67,0): 56, 30, 43, (139,68,0): 56, 30, 43, (139,69,0): 53, 29, 42, (139,70,0): 53, 29, 42, (139,71,0): 53, 29, 42, (139,72,0): 49, 25, 38, (139,73,0): 48, 26, 38, (139,74,0): 48, 26, 38, (139,75,0): 47, 27, 38, (139,76,0): 47, 27, 38, (139,77,0): 47, 27, 38, (139,78,0): 47, 27, 38, (139,79,0): 45, 28, 38, (139,80,0): 48, 28, 40, (139,81,0): 48, 28, 40, (139,82,0): 49, 29, 41, (139,83,0): 50, 30, 42, (139,84,0): 50, 30, 42, (139,85,0): 49, 29, 41, (139,86,0): 48, 28, 40, (139,87,0): 48, 28, 40, (139,88,0): 49, 29, 41, (139,89,0): 47, 27, 39, (139,90,0): 44, 24, 36, (139,91,0): 41, 21, 33, (139,92,0): 39, 19, 31, (139,93,0): 39, 19, 31, (139,94,0): 39, 19, 31, (139,95,0): 40, 20, 32, (139,96,0): 39, 21, 35, (139,97,0): 39, 21, 35, (139,98,0): 38, 20, 34, (139,99,0): 37, 19, 33, (139,100,0): 36, 20, 33, (139,101,0): 35, 19, 32, (139,102,0): 34, 18, 31, (139,103,0): 32, 18, 31, (139,104,0): 33, 19, 32, (139,105,0): 33, 19, 32, (139,106,0): 32, 20, 32, (139,107,0): 31, 19, 31, (139,108,0): 30, 20, 31, (139,109,0): 29, 19, 30, (139,110,0): 29, 19, 30, (139,111,0): 29, 19, 30, (139,112,0): 25, 17, 30, (139,113,0): 25, 17, 30, (139,114,0): 25, 17, 30, (139,115,0): 25, 17, 30, (139,116,0): 25, 17, 30, (139,117,0): 25, 17, 30, (139,118,0): 25, 17, 30, (139,119,0): 25, 17, 30, (139,120,0): 24, 16, 29, (139,121,0): 24, 16, 29, (139,122,0): 24, 16, 29, (139,123,0): 24, 16, 29, (139,124,0): 24, 16, 29, (139,125,0): 24, 16, 29, (139,126,0): 24, 16, 29, (139,127,0): 24, 16, 27, (139,128,0): 29, 17, 29, (139,129,0): 29, 17, 27, (139,130,0): 29, 17, 27, (139,131,0): 29, 17, 27, (139,132,0): 29, 17, 27, (139,133,0): 29, 17, 27, (139,134,0): 30, 17, 27, (139,135,0): 30, 17, 27, (139,136,0): 32, 16, 27, (139,137,0): 32, 16, 27, (139,138,0): 33, 15, 27, (139,139,0): 34, 16, 28, (139,140,0): 34, 16, 28, (139,141,0): 35, 17, 29, (139,142,0): 35, 17, 29, (139,143,0): 35, 17, 29, (139,144,0): 39, 19, 30, (139,145,0): 39, 19, 30, (139,146,0): 39, 19, 30, (139,147,0): 40, 20, 31, (139,148,0): 40, 20, 31, (139,149,0): 41, 21, 30, (139,150,0): 41, 21, 30, (139,151,0): 42, 22, 31, (139,152,0): 42, 23, 29, (139,153,0): 42, 23, 29, (139,154,0): 42, 23, 27, (139,155,0): 43, 24, 28, (139,156,0): 44, 25, 29, (139,157,0): 45, 26, 30, (139,158,0): 45, 26, 30, (139,159,0): 46, 25, 30, (139,160,0): 45, 22, 28, (139,161,0): 45, 22, 28, (139,162,0): 45, 22, 28, (139,163,0): 45, 22, 28, (139,164,0): 45, 22, 28, (139,165,0): 45, 22, 28, (139,166,0): 45, 22, 28, (139,167,0): 45, 22, 28, (139,168,0): 44, 21, 27, (139,169,0): 44, 21, 27, (139,170,0): 43, 20, 26, (139,171,0): 43, 20, 26, (139,172,0): 42, 19, 25, (139,173,0): 42, 19, 25, (139,174,0): 41, 18, 24, (139,175,0): 40, 19, 24, (139,176,0): 41, 22, 28, (139,177,0): 39, 22, 28, (139,178,0): 39, 22, 28, (139,179,0): 39, 22, 28, (139,180,0): 41, 22, 26, (139,181,0): 41, 22, 26, (139,182,0): 41, 22, 26, (139,183,0): 41, 22, 26, (139,184,0): 43, 23, 25, (139,185,0): 44, 24, 26, (139,186,0): 45, 23, 25, (139,187,0): 46, 24, 26, (139,188,0): 46, 24, 26, (139,189,0): 47, 25, 27, (139,190,0): 49, 25, 25, (139,191,0): 49, 25, 25, (139,192,0): 47, 25, 27, (139,193,0): 47, 25, 27, (139,194,0): 48, 26, 28, (139,195,0): 48, 26, 28, (139,196,0): 51, 27, 27, (139,197,0): 51, 27, 27, (139,198,0): 53, 27, 28, (139,199,0): 53, 27, 28, (139,200,0): 52, 26, 25, (139,201,0): 52, 26, 25, (139,202,0): 54, 26, 23, (139,203,0): 55, 27, 24, (139,204,0): 56, 26, 24, (139,205,0): 57, 27, 25, (139,206,0): 57, 28, 24, (139,207,0): 57, 28, 24, (139,208,0): 59, 29, 27, (139,209,0): 59, 29, 27, (139,210,0): 59, 29, 27, (139,211,0): 59, 29, 27, (139,212,0): 59, 30, 26, (139,213,0): 59, 30, 26, (139,214,0): 59, 30, 26, (139,215,0): 59, 30, 24, (139,216,0): 59, 30, 24, (139,217,0): 59, 30, 24, (139,218,0): 59, 30, 22, (139,219,0): 59, 30, 22, (139,220,0): 59, 30, 22, (139,221,0): 59, 30, 22, (139,222,0): 59, 31, 20, (139,223,0): 59, 31, 20, (139,224,0): 60, 30, 20, (139,225,0): 61, 31, 21, (139,226,0): 61, 31, 21, (139,227,0): 62, 32, 22, (139,228,0): 62, 32, 22, (139,229,0): 63, 33, 23, (139,230,0): 63, 33, 23, (139,231,0): 63, 33, 23, (139,232,0): 60, 30, 20, (139,233,0): 60, 30, 20, (139,234,0): 60, 30, 20, (139,235,0): 59, 29, 19, (139,236,0): 59, 29, 19, (139,237,0): 58, 28, 18, (139,238,0): 58, 28, 18, (139,239,0): 57, 27, 17, (139,240,0): 59, 29, 19, (139,241,0): 59, 29, 19, (139,242,0): 59, 29, 19, (139,243,0): 60, 30, 20, (139,244,0): 61, 31, 21, (139,245,0): 61, 31, 21, (139,246,0): 61, 31, 21, (139,247,0): 62, 32, 22, (139,248,0): 62, 32, 22, (139,249,0): 62, 32, 22, (139,250,0): 62, 32, 22, (139,251,0): 63, 33, 23, (139,252,0): 63, 33, 23, (139,253,0): 64, 34, 24, (139,254,0): 64, 34, 24, (139,255,0): 64, 34, 24, (139,256,0): 71, 37, 27, (139,257,0): 71, 37, 27, (139,258,0): 71, 37, 27, (139,259,0): 72, 38, 28, (139,260,0): 72, 38, 28, (139,261,0): 73, 39, 29, (139,262,0): 73, 39, 29, (139,263,0): 73, 39, 29, (139,264,0): 70, 36, 26, (139,265,0): 70, 36, 26, (139,266,0): 70, 36, 26, (139,267,0): 70, 36, 26, (139,268,0): 70, 36, 26, (139,269,0): 70, 36, 26, (139,270,0): 71, 37, 27, (139,271,0): 71, 37, 27, (139,272,0): 71, 37, 27, (139,273,0): 71, 37, 27, (139,274,0): 71, 37, 27, (139,275,0): 72, 38, 28, (139,276,0): 73, 39, 29, (139,277,0): 73, 39, 27, (139,278,0): 73, 39, 27, (139,279,0): 74, 40, 28, (139,280,0): 78, 45, 30, (139,281,0): 79, 46, 31, (139,282,0): 80, 47, 30, (139,283,0): 81, 48, 31, (139,284,0): 83, 50, 33, (139,285,0): 84, 51, 34, (139,286,0): 85, 52, 35, (139,287,0): 86, 53, 34, (139,288,0): 84, 52, 31, (139,289,0): 84, 52, 31, (139,290,0): 85, 53, 32, (139,291,0): 87, 55, 34, (139,292,0): 88, 55, 36, (139,293,0): 89, 56, 39, (139,294,0): 92, 56, 40, (139,295,0): 92, 56, 40, (139,296,0): 96, 59, 41, (139,297,0): 96, 59, 41, (139,298,0): 98, 60, 41, (139,299,0): 100, 62, 41, (139,300,0): 104, 66, 43, (139,301,0): 108, 71, 45, (139,302,0): 112, 75, 49, (139,303,0): 114, 78, 44, (139,304,0): 123, 84, 41, (139,305,0): 140, 101, 46, (139,306,0): 164, 123, 57, (139,307,0): 187, 144, 66, (139,308,0): 202, 156, 71, (139,309,0): 205, 158, 70, (139,310,0): 202, 154, 69, (139,311,0): 198, 150, 66, (139,312,0): 192, 147, 64, (139,313,0): 193, 151, 67, (139,314,0): 195, 155, 68, (139,315,0): 196, 156, 69, (139,316,0): 194, 154, 69, (139,317,0): 188, 147, 67, (139,318,0): 185, 139, 64, (139,319,0): 181, 134, 64, (139,320,0): 178, 133, 66, (139,321,0): 175, 131, 66, (139,322,0): 171, 127, 64, (139,323,0): 166, 125, 61, (139,324,0): 166, 127, 62, (139,325,0): 168, 130, 65, (139,326,0): 172, 134, 69, (139,327,0): 175, 137, 74, (139,328,0): 174, 136, 73, (139,329,0): 179, 141, 78, (139,330,0): 186, 146, 84, (139,331,0): 190, 150, 88, (139,332,0): 193, 151, 91, (139,333,0): 196, 151, 92, (139,334,0): 199, 153, 94, (139,335,0): 203, 154, 96, (139,336,0): 206, 155, 98, (139,337,0): 207, 155, 97, (139,338,0): 207, 155, 98, (139,339,0): 206, 154, 96, (139,340,0): 205, 153, 96, (139,341,0): 206, 151, 94, (139,342,0): 206, 151, 95, (139,343,0): 206, 150, 93, (139,344,0): 204, 147, 92, (139,345,0): 208, 152, 95, (139,346,0): 212, 155, 100, (139,347,0): 216, 160, 103, (139,348,0): 218, 161, 106, (139,349,0): 221, 165, 108, (139,350,0): 224, 167, 112, (139,351,0): 229, 170, 114, (139,352,0): 228, 167, 112, (139,353,0): 229, 168, 111, (139,354,0): 231, 171, 111, (139,355,0): 233, 173, 111, (139,356,0): 235, 175, 113, (139,357,0): 238, 178, 115, (139,358,0): 239, 180, 114, (139,359,0): 240, 181, 113, (139,360,0): 237, 178, 112, (139,361,0): 235, 176, 110, (139,362,0): 233, 173, 110, (139,363,0): 234, 174, 112, (139,364,0): 236, 176, 114, (139,365,0): 236, 176, 116, (139,366,0): 233, 172, 115, (139,367,0): 228, 172, 115, (139,368,0): 208, 163, 106, (139,369,0): 202, 162, 103, (139,370,0): 198, 157, 101, (139,371,0): 197, 156, 100, (139,372,0): 197, 156, 102, (139,373,0): 197, 156, 102, (139,374,0): 196, 154, 104, (139,375,0): 194, 152, 102, (139,376,0): 193, 151, 103, (139,377,0): 192, 149, 104, (139,378,0): 189, 146, 103, (139,379,0): 187, 144, 102, (139,380,0): 187, 144, 102, (139,381,0): 189, 145, 106, (139,382,0): 191, 147, 108, (139,383,0): 193, 149, 110, (139,384,0): 203, 158, 116, (139,385,0): 207, 160, 116, (139,386,0): 211, 164, 118, (139,387,0): 214, 168, 119, (139,388,0): 219, 171, 122, (139,389,0): 222, 172, 119, (139,390,0): 223, 174, 118, (139,391,0): 221, 175, 116, (139,392,0): 226, 180, 120, (139,393,0): 223, 179, 116, (139,394,0): 219, 178, 116, (139,395,0): 215, 175, 113, (139,396,0): 212, 174, 111, (139,397,0): 209, 174, 110, (139,398,0): 208, 174, 110, (139,399,0): 208, 174, 110, (139,400,0): 212, 177, 111, (139,401,0): 213, 178, 110, (139,402,0): 214, 179, 111, (139,403,0): 218, 184, 113, (139,404,0): 226, 189, 119, (139,405,0): 233, 196, 125, (139,406,0): 241, 203, 130, (139,407,0): 245, 207, 132, (139,408,0): 246, 209, 131, (139,409,0): 248, 211, 130, (139,410,0): 250, 212, 129, (139,411,0): 251, 213, 128, (139,412,0): 252, 212, 127, (139,413,0): 249, 209, 122, (139,414,0): 246, 206, 119, (139,415,0): 242, 204, 119, (139,416,0): 237, 202, 121, (139,417,0): 232, 199, 118, (139,418,0): 231, 196, 114, (139,419,0): 227, 195, 112, (139,420,0): 230, 195, 111, (139,421,0): 230, 198, 111, (139,422,0): 235, 201, 112, (139,423,0): 235, 204, 111, (139,424,0): 248, 215, 120, (139,425,0): 248, 218, 120, (139,426,0): 253, 221, 120, (139,427,0): 254, 225, 121, (139,428,0): 255, 226, 120, (139,429,0): 255, 227, 118, (139,430,0): 255, 225, 117, (139,431,0): 253, 225, 116, (139,432,0): 250, 223, 118, (139,433,0): 249, 225, 119, (139,434,0): 251, 224, 119, (139,435,0): 250, 223, 116, (139,436,0): 252, 221, 115, (139,437,0): 251, 220, 114, (139,438,0): 251, 218, 113, (139,439,0): 250, 217, 112, (139,440,0): 249, 215, 115, (139,441,0): 245, 211, 113, (139,442,0): 238, 205, 108, (139,443,0): 232, 201, 108, (139,444,0): 230, 199, 108, (139,445,0): 228, 198, 108, (139,446,0): 223, 196, 107, (139,447,0): 219, 193, 106, (139,448,0): 207, 187, 101, (139,449,0): 202, 185, 103, (139,450,0): 198, 182, 104, (139,451,0): 194, 181, 103, (139,452,0): 190, 178, 104, (139,453,0): 182, 172, 103, (139,454,0): 172, 163, 98, (139,455,0): 165, 155, 94, (139,456,0): 158, 149, 92, (139,457,0): 155, 146, 91, (139,458,0): 153, 141, 91, (139,459,0): 149, 137, 87, (139,460,0): 148, 134, 87, (139,461,0): 147, 133, 86, (139,462,0): 150, 133, 87, (139,463,0): 152, 134, 88, (139,464,0): 157, 136, 93, (139,465,0): 159, 136, 94, (139,466,0): 160, 137, 93, (139,467,0): 161, 139, 92, (139,468,0): 163, 141, 92, (139,469,0): 165, 143, 93, (139,470,0): 166, 145, 92, (139,471,0): 167, 146, 91, (139,472,0): 167, 146, 91, (139,473,0): 169, 148, 93, (139,474,0): 170, 149, 94, (139,475,0): 171, 150, 95, (139,476,0): 170, 149, 96, (139,477,0): 168, 146, 96, (139,478,0): 166, 144, 94, (139,479,0): 164, 144, 93, (139,480,0): 162, 142, 91, (139,481,0): 160, 143, 91, (139,482,0): 160, 143, 91, (139,483,0): 161, 144, 92, (139,484,0): 162, 146, 94, (139,485,0): 164, 148, 96, (139,486,0): 166, 150, 98, (139,487,0): 168, 152, 100, (139,488,0): 166, 153, 100, (139,489,0): 166, 153, 100, (139,490,0): 165, 154, 100, (139,491,0): 165, 154, 100, (139,492,0): 165, 154, 100, (139,493,0): 167, 156, 102, (139,494,0): 167, 158, 103, (139,495,0): 168, 158, 105, (139,496,0): 167, 157, 106, (139,497,0): 166, 159, 107, (139,498,0): 169, 159, 110, (139,499,0): 169, 159, 110, (139,500,0): 167, 157, 108, (139,501,0): 163, 153, 104, (139,502,0): 160, 148, 100, (139,503,0): 157, 144, 99, (139,504,0): 153, 140, 95, (139,505,0): 153, 138, 95, (139,506,0): 152, 137, 94, (139,507,0): 150, 135, 92, (139,508,0): 149, 131, 91, (139,509,0): 146, 128, 88, (139,510,0): 143, 125, 85, (139,511,0): 142, 122, 85, (139,512,0): 145, 125, 90, (139,513,0): 144, 124, 91, (139,514,0): 143, 120, 88, (139,515,0): 139, 116, 84, (139,516,0): 135, 112, 81, (139,517,0): 131, 108, 77, (139,518,0): 127, 104, 73, (139,519,0): 126, 101, 71, (139,520,0): 121, 95, 68, (139,521,0): 118, 91, 64, (139,522,0): 113, 85, 61, (139,523,0): 110, 82, 58, (139,524,0): 109, 79, 55, (139,525,0): 106, 76, 52, (139,526,0): 101, 70, 49, (139,527,0): 95, 67, 46, (139,528,0): 92, 65, 48, (139,529,0): 91, 63, 49, (139,530,0): 91, 63, 49, (139,531,0): 89, 61, 47, (139,532,0): 87, 61, 48, (139,533,0): 86, 60, 47, (139,534,0): 83, 60, 46, (139,535,0): 83, 60, 46, (139,536,0): 85, 61, 49, (139,537,0): 86, 62, 50, (139,538,0): 86, 64, 53, (139,539,0): 87, 65, 54, (139,540,0): 86, 66, 55, (139,541,0): 86, 66, 55, (139,542,0): 85, 65, 56, (139,543,0): 84, 64, 53, (139,544,0): 83, 65, 53, (139,545,0): 83, 65, 51, (139,546,0): 82, 64, 50, (139,547,0): 81, 63, 49, (139,548,0): 79, 61, 49, (139,549,0): 76, 58, 46, (139,550,0): 73, 55, 43, (139,551,0): 72, 54, 42, (139,552,0): 70, 52, 42, (139,553,0): 72, 54, 44, (139,554,0): 74, 55, 48, (139,555,0): 76, 57, 50, (139,556,0): 75, 56, 49, (139,557,0): 73, 54, 47, (139,558,0): 69, 50, 44, (139,559,0): 67, 48, 44, (139,560,0): 64, 46, 46, (139,561,0): 63, 44, 46, (139,562,0): 59, 43, 44, (139,563,0): 57, 43, 43, (139,564,0): 54, 42, 42, (139,565,0): 54, 42, 42, (139,566,0): 54, 44, 43, (139,567,0): 54, 44, 43, (139,568,0): 56, 46, 45, (139,569,0): 57, 47, 46, (139,570,0): 59, 47, 47, (139,571,0): 60, 48, 48, (139,572,0): 63, 49, 49, (139,573,0): 66, 50, 51, (139,574,0): 69, 50, 52, (139,575,0): 69, 51, 51, (139,576,0): 71, 50, 47, (139,577,0): 71, 50, 45, (139,578,0): 73, 52, 47, (139,579,0): 74, 53, 48, (139,580,0): 76, 55, 50, (139,581,0): 77, 56, 51, (139,582,0): 78, 57, 52, (139,583,0): 79, 58, 53, (139,584,0): 79, 58, 53, (139,585,0): 80, 59, 54, (139,586,0): 81, 60, 55, (139,587,0): 82, 61, 56, (139,588,0): 83, 62, 57, (139,589,0): 82, 61, 56, (139,590,0): 81, 60, 55, (139,591,0): 80, 59, 54, (139,592,0): 82, 63, 57, (139,593,0): 81, 62, 56, (139,594,0): 80, 61, 55, (139,595,0): 78, 59, 53, (139,596,0): 76, 57, 51, (139,597,0): 72, 53, 47, (139,598,0): 69, 50, 44, (139,599,0): 67, 48, 42, (140,0,0): 48, 32, 45, (140,1,0): 46, 30, 41, (140,2,0): 41, 27, 40, (140,3,0): 39, 25, 38, (140,4,0): 39, 25, 38, (140,5,0): 40, 26, 41, (140,6,0): 39, 27, 41, (140,7,0): 40, 28, 42, (140,8,0): 29, 18, 32, (140,9,0): 28, 17, 33, (140,10,0): 28, 17, 33, (140,11,0): 28, 17, 34, (140,12,0): 28, 19, 36, (140,13,0): 30, 21, 38, (140,14,0): 32, 23, 40, (140,15,0): 35, 24, 41, (140,16,0): 41, 27, 44, (140,17,0): 44, 27, 43, (140,18,0): 44, 27, 43, (140,19,0): 45, 28, 44, (140,20,0): 45, 28, 44, (140,21,0): 46, 29, 45, (140,22,0): 46, 29, 45, (140,23,0): 46, 29, 45, (140,24,0): 45, 28, 44, (140,25,0): 45, 28, 44, (140,26,0): 45, 28, 44, (140,27,0): 45, 28, 44, (140,28,0): 45, 28, 44, (140,29,0): 45, 28, 44, (140,30,0): 45, 28, 44, (140,31,0): 45, 28, 44, (140,32,0): 47, 30, 46, (140,33,0): 47, 30, 46, (140,34,0): 47, 30, 46, (140,35,0): 47, 30, 46, (140,36,0): 47, 30, 46, (140,37,0): 47, 30, 46, (140,38,0): 47, 30, 46, (140,39,0): 47, 30, 46, (140,40,0): 47, 30, 46, (140,41,0): 47, 30, 46, (140,42,0): 47, 30, 46, (140,43,0): 47, 30, 46, (140,44,0): 47, 30, 46, (140,45,0): 47, 30, 46, (140,46,0): 47, 30, 46, (140,47,0): 47, 30, 46, (140,48,0): 51, 30, 45, (140,49,0): 52, 32, 44, (140,50,0): 55, 33, 46, (140,51,0): 56, 34, 47, (140,52,0): 56, 34, 47, (140,53,0): 55, 33, 46, (140,54,0): 54, 30, 44, (140,55,0): 53, 29, 43, (140,56,0): 57, 30, 45, (140,57,0): 57, 30, 45, (140,58,0): 57, 30, 45, (140,59,0): 57, 30, 45, (140,60,0): 58, 30, 45, (140,61,0): 58, 30, 45, (140,62,0): 58, 30, 45, (140,63,0): 58, 30, 45, (140,64,0): 59, 31, 45, (140,65,0): 59, 31, 45, (140,66,0): 59, 31, 45, (140,67,0): 57, 31, 44, (140,68,0): 57, 31, 44, (140,69,0): 56, 30, 43, (140,70,0): 56, 30, 43, (140,71,0): 54, 30, 43, (140,72,0): 51, 27, 40, (140,73,0): 50, 28, 40, (140,74,0): 50, 28, 40, (140,75,0): 50, 28, 40, (140,76,0): 50, 28, 40, (140,77,0): 49, 29, 40, (140,78,0): 49, 29, 40, (140,79,0): 49, 29, 40, (140,80,0): 50, 28, 41, (140,81,0): 51, 29, 42, (140,82,0): 52, 30, 43, (140,83,0): 52, 30, 43, (140,84,0): 52, 30, 43, (140,85,0): 52, 30, 43, (140,86,0): 51, 29, 42, (140,87,0): 50, 28, 41, (140,88,0): 51, 29, 42, (140,89,0): 49, 27, 40, (140,90,0): 46, 24, 37, (140,91,0): 42, 20, 33, (140,92,0): 40, 18, 31, (140,93,0): 38, 16, 29, (140,94,0): 38, 16, 29, (140,95,0): 38, 18, 30, (140,96,0): 38, 20, 32, (140,97,0): 38, 20, 32, (140,98,0): 38, 20, 32, (140,99,0): 37, 19, 31, (140,100,0): 37, 19, 31, (140,101,0): 35, 19, 30, (140,102,0): 35, 19, 30, (140,103,0): 35, 19, 30, (140,104,0): 34, 21, 31, (140,105,0): 34, 21, 31, (140,106,0): 32, 20, 30, (140,107,0): 32, 20, 30, (140,108,0): 31, 19, 29, (140,109,0): 31, 19, 29, (140,110,0): 30, 18, 28, (140,111,0): 29, 19, 30, (140,112,0): 26, 18, 31, (140,113,0): 26, 18, 31, (140,114,0): 26, 18, 31, (140,115,0): 26, 18, 31, (140,116,0): 26, 18, 31, (140,117,0): 26, 18, 31, (140,118,0): 26, 18, 31, (140,119,0): 26, 18, 31, (140,120,0): 24, 16, 29, (140,121,0): 24, 16, 29, (140,122,0): 24, 16, 29, (140,123,0): 24, 16, 29, (140,124,0): 24, 16, 29, (140,125,0): 24, 16, 29, (140,126,0): 24, 16, 29, (140,127,0): 24, 16, 27, (140,128,0): 29, 17, 29, (140,129,0): 29, 17, 27, (140,130,0): 29, 17, 27, (140,131,0): 29, 17, 27, (140,132,0): 29, 17, 27, (140,133,0): 29, 17, 27, (140,134,0): 30, 17, 27, (140,135,0): 30, 17, 27, (140,136,0): 32, 16, 27, (140,137,0): 32, 16, 27, (140,138,0): 33, 15, 27, (140,139,0): 34, 16, 28, (140,140,0): 34, 16, 28, (140,141,0): 35, 17, 29, (140,142,0): 35, 17, 29, (140,143,0): 35, 17, 29, (140,144,0): 39, 19, 30, (140,145,0): 41, 19, 31, (140,146,0): 41, 19, 31, (140,147,0): 42, 20, 32, (140,148,0): 42, 21, 30, (140,149,0): 43, 22, 31, (140,150,0): 43, 22, 31, (140,151,0): 43, 22, 29, (140,152,0): 44, 23, 30, (140,153,0): 44, 23, 30, (140,154,0): 44, 23, 28, (140,155,0): 44, 23, 28, (140,156,0): 45, 25, 27, (140,157,0): 45, 25, 27, (140,158,0): 45, 25, 27, (140,159,0): 45, 25, 27, (140,160,0): 46, 24, 27, (140,161,0): 46, 24, 27, (140,162,0): 46, 24, 27, (140,163,0): 46, 24, 27, (140,164,0): 46, 24, 27, (140,165,0): 46, 24, 27, (140,166,0): 46, 24, 27, (140,167,0): 46, 24, 27, (140,168,0): 44, 22, 25, (140,169,0): 44, 22, 25, (140,170,0): 43, 21, 24, (140,171,0): 43, 21, 24, (140,172,0): 42, 20, 23, (140,173,0): 42, 20, 23, (140,174,0): 41, 19, 22, (140,175,0): 40, 19, 24, (140,176,0): 41, 22, 28, (140,177,0): 39, 22, 28, (140,178,0): 39, 22, 28, (140,179,0): 39, 22, 28, (140,180,0): 41, 22, 26, (140,181,0): 41, 22, 26, (140,182,0): 41, 22, 26, (140,183,0): 41, 22, 26, (140,184,0): 43, 23, 25, (140,185,0): 43, 23, 25, (140,186,0): 44, 22, 24, (140,187,0): 45, 23, 25, (140,188,0): 45, 23, 25, (140,189,0): 46, 24, 26, (140,190,0): 48, 24, 24, (140,191,0): 49, 25, 25, (140,192,0): 47, 25, 27, (140,193,0): 47, 25, 27, (140,194,0): 48, 26, 28, (140,195,0): 48, 26, 28, (140,196,0): 51, 27, 27, (140,197,0): 51, 27, 27, (140,198,0): 53, 27, 28, (140,199,0): 53, 27, 28, (140,200,0): 52, 26, 25, (140,201,0): 52, 26, 25, (140,202,0): 54, 26, 23, (140,203,0): 55, 27, 24, (140,204,0): 56, 26, 24, (140,205,0): 57, 27, 25, (140,206,0): 57, 28, 24, (140,207,0): 57, 28, 24, (140,208,0): 59, 29, 27, (140,209,0): 59, 29, 27, (140,210,0): 59, 30, 26, (140,211,0): 59, 30, 26, (140,212,0): 59, 30, 26, (140,213,0): 59, 30, 26, (140,214,0): 59, 30, 24, (140,215,0): 59, 30, 24, (140,216,0): 59, 30, 24, (140,217,0): 59, 30, 22, (140,218,0): 59, 30, 22, (140,219,0): 59, 30, 22, (140,220,0): 59, 31, 20, (140,221,0): 59, 31, 20, (140,222,0): 59, 31, 20, (140,223,0): 59, 31, 20, (140,224,0): 60, 30, 20, (140,225,0): 60, 30, 20, (140,226,0): 60, 30, 20, (140,227,0): 61, 31, 21, (140,228,0): 61, 31, 21, (140,229,0): 62, 32, 22, (140,230,0): 62, 32, 22, (140,231,0): 63, 33, 23, (140,232,0): 60, 30, 20, (140,233,0): 59, 29, 19, (140,234,0): 59, 29, 19, (140,235,0): 58, 28, 18, (140,236,0): 58, 28, 18, (140,237,0): 57, 27, 17, (140,238,0): 57, 27, 17, (140,239,0): 57, 27, 17, (140,240,0): 58, 28, 18, (140,241,0): 59, 29, 19, (140,242,0): 59, 29, 19, (140,243,0): 59, 29, 19, (140,244,0): 60, 30, 20, (140,245,0): 61, 31, 21, (140,246,0): 61, 31, 21, (140,247,0): 61, 31, 21, (140,248,0): 62, 32, 22, (140,249,0): 62, 32, 22, (140,250,0): 62, 32, 22, (140,251,0): 63, 33, 23, (140,252,0): 63, 33, 23, (140,253,0): 64, 34, 24, (140,254,0): 64, 34, 24, (140,255,0): 64, 34, 24, (140,256,0): 70, 36, 26, (140,257,0): 70, 36, 26, (140,258,0): 71, 37, 27, (140,259,0): 72, 38, 28, (140,260,0): 72, 38, 28, (140,261,0): 73, 39, 29, (140,262,0): 74, 40, 30, (140,263,0): 74, 40, 30, (140,264,0): 71, 37, 27, (140,265,0): 71, 37, 27, (140,266,0): 71, 37, 27, (140,267,0): 71, 37, 27, (140,268,0): 71, 37, 27, (140,269,0): 71, 37, 27, (140,270,0): 70, 36, 26, (140,271,0): 70, 36, 26, (140,272,0): 70, 36, 26, (140,273,0): 71, 37, 27, (140,274,0): 71, 37, 27, (140,275,0): 71, 37, 27, (140,276,0): 72, 38, 26, (140,277,0): 73, 39, 27, (140,278,0): 73, 39, 27, (140,279,0): 73, 40, 25, (140,280,0): 78, 45, 30, (140,281,0): 79, 46, 31, (140,282,0): 80, 47, 30, (140,283,0): 82, 49, 32, (140,284,0): 84, 51, 32, (140,285,0): 85, 52, 33, (140,286,0): 86, 53, 34, (140,287,0): 87, 54, 35, (140,288,0): 85, 53, 32, (140,289,0): 85, 53, 30, (140,290,0): 86, 54, 33, (140,291,0): 87, 55, 34, (140,292,0): 88, 55, 36, (140,293,0): 89, 56, 37, (140,294,0): 91, 55, 39, (140,295,0): 92, 56, 40, (140,296,0): 94, 57, 41, (140,297,0): 95, 58, 40, (140,298,0): 98, 60, 41, (140,299,0): 100, 62, 41, (140,300,0): 103, 65, 42, (140,301,0): 107, 70, 44, (140,302,0): 109, 72, 46, (140,303,0): 111, 74, 45, (140,304,0): 119, 84, 44, (140,305,0): 131, 95, 45, (140,306,0): 154, 114, 53, (140,307,0): 176, 134, 62, (140,308,0): 192, 147, 66, (140,309,0): 198, 152, 67, (140,310,0): 195, 149, 64, (140,311,0): 192, 145, 63, (140,312,0): 191, 146, 63, (140,313,0): 192, 150, 66, (140,314,0): 196, 156, 69, (140,315,0): 196, 159, 71, (140,316,0): 196, 156, 69, (140,317,0): 191, 150, 68, (140,318,0): 188, 142, 65, (140,319,0): 183, 136, 64, (140,320,0): 178, 133, 65, (140,321,0): 175, 132, 64, (140,322,0): 171, 128, 60, (140,323,0): 167, 127, 58, (140,324,0): 167, 128, 61, (140,325,0): 169, 132, 64, (140,326,0): 174, 137, 69, (140,327,0): 175, 140, 74, (140,328,0): 176, 141, 77, (140,329,0): 180, 145, 81, (140,330,0): 187, 149, 87, (140,331,0): 190, 150, 89, (140,332,0): 191, 149, 91, (140,333,0): 191, 149, 91, (140,334,0): 195, 150, 93, (140,335,0): 198, 151, 95, (140,336,0): 203, 154, 98, (140,337,0): 202, 153, 95, (140,338,0): 203, 152, 97, (140,339,0): 202, 151, 94, (140,340,0): 201, 150, 95, (140,341,0): 201, 149, 92, (140,342,0): 201, 148, 94, (140,343,0): 203, 148, 92, (140,344,0): 205, 150, 96, (140,345,0): 209, 154, 98, (140,346,0): 215, 158, 105, (140,347,0): 217, 160, 105, (140,348,0): 219, 159, 107, (140,349,0): 219, 159, 105, (140,350,0): 222, 162, 110, (140,351,0): 225, 165, 111, (140,352,0): 231, 170, 115, (140,353,0): 231, 172, 114, (140,354,0): 233, 174, 116, (140,355,0): 234, 175, 115, (140,356,0): 237, 179, 116, (140,357,0): 238, 180, 116, (140,358,0): 240, 182, 118, (140,359,0): 241, 184, 117, (140,360,0): 235, 177, 113, (140,361,0): 232, 174, 110, (140,362,0): 229, 171, 107, (140,363,0): 229, 171, 108, (140,364,0): 230, 171, 111, (140,365,0): 230, 171, 113, (140,366,0): 228, 169, 111, (140,367,0): 222, 167, 110, (140,368,0): 207, 162, 105, (140,369,0): 200, 161, 104, (140,370,0): 196, 157, 100, (140,371,0): 194, 155, 98, (140,372,0): 195, 156, 101, (140,373,0): 195, 156, 101, (140,374,0): 194, 154, 103, (140,375,0): 192, 152, 101, (140,376,0): 187, 147, 98, (140,377,0): 186, 145, 99, (140,378,0): 186, 145, 99, (140,379,0): 186, 145, 101, (140,380,0): 188, 147, 103, (140,381,0): 191, 149, 107, (140,382,0): 194, 152, 110, (140,383,0): 196, 154, 112, (140,384,0): 199, 158, 114, (140,385,0): 201, 160, 114, (140,386,0): 205, 163, 115, (140,387,0): 210, 166, 117, (140,388,0): 215, 169, 117, (140,389,0): 219, 172, 118, (140,390,0): 221, 175, 116, (140,391,0): 221, 175, 115, (140,392,0): 232, 186, 124, (140,393,0): 230, 185, 120, (140,394,0): 227, 183, 120, (140,395,0): 222, 181, 117, (140,396,0): 218, 179, 114, (140,397,0): 216, 178, 113, (140,398,0): 213, 178, 112, (140,399,0): 213, 178, 112, (140,400,0): 215, 180, 114, (140,401,0): 216, 179, 111, (140,402,0): 217, 180, 112, (140,403,0): 220, 183, 113, (140,404,0): 227, 188, 119, (140,405,0): 234, 196, 125, (140,406,0): 242, 202, 130, (140,407,0): 247, 208, 131, (140,408,0): 250, 211, 132, (140,409,0): 250, 212, 131, (140,410,0): 253, 212, 130, (140,411,0): 253, 213, 128, (140,412,0): 252, 210, 126, (140,413,0): 249, 207, 121, (140,414,0): 246, 204, 118, (140,415,0): 243, 203, 116, (140,416,0): 239, 203, 119, (140,417,0): 237, 202, 118, (140,418,0): 236, 200, 114, (140,419,0): 233, 199, 112, (140,420,0): 234, 198, 110, (140,421,0): 234, 200, 110, (140,422,0): 238, 203, 111, (140,423,0): 240, 207, 112, (140,424,0): 251, 217, 120, (140,425,0): 252, 220, 119, (140,426,0): 255, 223, 120, (140,427,0): 255, 226, 120, (140,428,0): 255, 226, 121, (140,429,0): 255, 227, 119, (140,430,0): 255, 224, 117, (140,431,0): 255, 224, 116, (140,432,0): 247, 220, 113, (140,433,0): 245, 221, 113, (140,434,0): 246, 219, 112, (140,435,0): 245, 218, 111, (140,436,0): 248, 217, 111, (140,437,0): 248, 217, 109, (140,438,0): 250, 217, 112, (140,439,0): 250, 217, 112, (140,440,0): 252, 218, 118, (140,441,0): 248, 214, 116, (140,442,0): 241, 208, 111, (140,443,0): 234, 203, 110, (140,444,0): 232, 201, 110, (140,445,0): 228, 198, 108, (140,446,0): 221, 194, 105, (140,447,0): 216, 192, 106, (140,448,0): 205, 187, 103, (140,449,0): 201, 186, 105, (140,450,0): 198, 182, 104, (140,451,0): 194, 180, 105, (140,452,0): 191, 179, 107, (140,453,0): 183, 172, 106, (140,454,0): 175, 165, 103, (140,455,0): 168, 159, 100, (140,456,0): 159, 150, 93, (140,457,0): 157, 148, 93, (140,458,0): 154, 142, 92, (140,459,0): 150, 138, 88, (140,460,0): 149, 135, 88, (140,461,0): 149, 135, 88, (140,462,0): 151, 134, 88, (140,463,0): 153, 135, 89, (140,464,0): 158, 137, 94, (140,465,0): 160, 137, 95, (140,466,0): 161, 138, 94, (140,467,0): 162, 140, 93, (140,468,0): 164, 142, 93, (140,469,0): 165, 143, 93, (140,470,0): 166, 145, 92, (140,471,0): 167, 146, 91, (140,472,0): 168, 147, 92, (140,473,0): 169, 148, 91, (140,474,0): 170, 149, 94, (140,475,0): 171, 150, 95, (140,476,0): 171, 150, 97, (140,477,0): 169, 148, 95, (140,478,0): 167, 145, 95, (140,479,0): 164, 144, 93, (140,480,0): 164, 144, 93, (140,481,0): 162, 145, 93, (140,482,0): 162, 145, 93, (140,483,0): 163, 146, 94, (140,484,0): 163, 147, 95, (140,485,0): 166, 150, 98, (140,486,0): 168, 152, 100, (140,487,0): 169, 153, 101, (140,488,0): 168, 155, 102, (140,489,0): 167, 154, 101, (140,490,0): 165, 154, 100, (140,491,0): 164, 153, 99, (140,492,0): 164, 153, 99, (140,493,0): 166, 155, 101, (140,494,0): 167, 158, 103, (140,495,0): 168, 158, 105, (140,496,0): 165, 157, 108, (140,497,0): 165, 159, 109, (140,498,0): 167, 159, 112, (140,499,0): 167, 159, 112, (140,500,0): 165, 157, 110, (140,501,0): 160, 152, 105, (140,502,0): 158, 147, 101, (140,503,0): 155, 144, 99, (140,504,0): 151, 140, 95, (140,505,0): 151, 138, 96, (140,506,0): 151, 138, 96, (140,507,0): 149, 136, 94, (140,508,0): 148, 133, 94, (140,509,0): 144, 129, 90, (140,510,0): 141, 126, 87, (140,511,0): 142, 124, 86, (140,512,0): 142, 124, 88, (140,513,0): 140, 121, 88, (140,514,0): 137, 116, 85, (140,515,0): 132, 111, 80, (140,516,0): 127, 106, 75, (140,517,0): 123, 102, 71, (140,518,0): 120, 99, 70, (140,519,0): 120, 96, 68, (140,520,0): 113, 89, 63, (140,521,0): 111, 85, 60, (140,522,0): 107, 81, 56, (140,523,0): 105, 79, 54, (140,524,0): 105, 77, 55, (140,525,0): 104, 76, 54, (140,526,0): 100, 72, 50, (140,527,0): 97, 69, 48, (140,528,0): 92, 65, 48, (140,529,0): 92, 64, 50, (140,530,0): 91, 63, 51, (140,531,0): 90, 62, 50, (140,532,0): 89, 63, 50, (140,533,0): 88, 62, 49, (140,534,0): 85, 61, 49, (140,535,0): 85, 61, 49, (140,536,0): 85, 61, 51, (140,537,0): 86, 62, 52, (140,538,0): 87, 65, 54, (140,539,0): 88, 66, 55, (140,540,0): 87, 67, 58, (140,541,0): 86, 66, 57, (140,542,0): 86, 66, 57, (140,543,0): 85, 65, 54, (140,544,0): 84, 66, 54, (140,545,0): 83, 65, 51, (140,546,0): 83, 65, 51, (140,547,0): 82, 64, 50, (140,548,0): 79, 61, 49, (140,549,0): 77, 59, 47, (140,550,0): 74, 56, 44, (140,551,0): 72, 54, 42, (140,552,0): 69, 51, 41, (140,553,0): 71, 53, 43, (140,554,0): 73, 54, 47, (140,555,0): 75, 56, 49, (140,556,0): 74, 55, 48, (140,557,0): 72, 53, 46, (140,558,0): 68, 49, 43, (140,559,0): 66, 47, 43, (140,560,0): 62, 44, 44, (140,561,0): 61, 42, 44, (140,562,0): 58, 42, 43, (140,563,0): 56, 42, 42, (140,564,0): 53, 41, 41, (140,565,0): 54, 42, 42, (140,566,0): 53, 43, 42, (140,567,0): 53, 45, 43, (140,568,0): 55, 47, 45, (140,569,0): 56, 46, 45, (140,570,0): 59, 47, 47, (140,571,0): 60, 48, 48, (140,572,0): 64, 50, 50, (140,573,0): 67, 51, 52, (140,574,0): 70, 51, 53, (140,575,0): 71, 53, 53, (140,576,0): 72, 51, 48, (140,577,0): 73, 52, 47, (140,578,0): 74, 53, 48, (140,579,0): 76, 55, 50, (140,580,0): 77, 56, 51, (140,581,0): 79, 58, 53, (140,582,0): 80, 59, 54, (140,583,0): 81, 60, 55, (140,584,0): 81, 60, 55, (140,585,0): 82, 61, 56, (140,586,0): 83, 62, 57, (140,587,0): 84, 63, 58, (140,588,0): 83, 62, 57, (140,589,0): 83, 62, 57, (140,590,0): 81, 60, 55, (140,591,0): 81, 60, 55, (140,592,0): 81, 62, 56, (140,593,0): 81, 62, 56, (140,594,0): 81, 62, 56, (140,595,0): 79, 60, 54, (140,596,0): 76, 57, 51, (140,597,0): 73, 54, 48, (140,598,0): 70, 51, 45, (140,599,0): 68, 49, 43, (141,0,0): 43, 27, 40, (141,1,0): 41, 25, 38, (141,2,0): 36, 22, 35, (141,3,0): 36, 22, 35, (141,4,0): 37, 23, 38, (141,5,0): 37, 23, 38, (141,6,0): 36, 24, 38, (141,7,0): 34, 21, 38, (141,8,0): 28, 17, 33, (141,9,0): 28, 17, 33, (141,10,0): 28, 17, 34, (141,11,0): 29, 18, 35, (141,12,0): 28, 19, 36, (141,13,0): 30, 21, 40, (141,14,0): 33, 24, 43, (141,15,0): 36, 25, 42, (141,16,0): 41, 27, 44, (141,17,0): 43, 26, 42, (141,18,0): 43, 26, 42, (141,19,0): 44, 27, 43, (141,20,0): 44, 27, 43, (141,21,0): 45, 28, 44, (141,22,0): 45, 28, 44, (141,23,0): 45, 28, 44, (141,24,0): 45, 28, 44, (141,25,0): 45, 28, 44, (141,26,0): 45, 28, 44, (141,27,0): 45, 28, 44, (141,28,0): 45, 28, 44, (141,29,0): 45, 28, 44, (141,30,0): 45, 28, 44, (141,31,0): 45, 28, 44, (141,32,0): 47, 30, 46, (141,33,0): 47, 30, 46, (141,34,0): 47, 30, 46, (141,35,0): 47, 30, 46, (141,36,0): 47, 30, 46, (141,37,0): 47, 30, 46, (141,38,0): 47, 30, 46, (141,39,0): 47, 30, 46, (141,40,0): 47, 30, 46, (141,41,0): 47, 30, 46, (141,42,0): 47, 30, 46, (141,43,0): 47, 30, 46, (141,44,0): 47, 30, 46, (141,45,0): 47, 30, 46, (141,46,0): 47, 30, 46, (141,47,0): 48, 30, 44, (141,48,0): 52, 31, 46, (141,49,0): 53, 33, 45, (141,50,0): 55, 33, 46, (141,51,0): 55, 33, 46, (141,52,0): 55, 33, 46, (141,53,0): 55, 33, 46, (141,54,0): 55, 31, 45, (141,55,0): 54, 30, 44, (141,56,0): 57, 30, 45, (141,57,0): 57, 30, 45, (141,58,0): 57, 30, 45, (141,59,0): 57, 30, 45, (141,60,0): 58, 30, 45, (141,61,0): 58, 30, 45, (141,62,0): 58, 30, 45, (141,63,0): 58, 30, 45, (141,64,0): 60, 32, 46, (141,65,0): 60, 32, 46, (141,66,0): 60, 32, 46, (141,67,0): 59, 31, 45, (141,68,0): 59, 31, 45, (141,69,0): 57, 31, 44, (141,70,0): 57, 31, 44, (141,71,0): 57, 31, 44, (141,72,0): 52, 28, 41, (141,73,0): 52, 28, 41, (141,74,0): 52, 28, 41, (141,75,0): 51, 29, 41, (141,76,0): 51, 29, 41, (141,77,0): 51, 29, 41, (141,78,0): 50, 30, 41, (141,79,0): 50, 30, 41, (141,80,0): 51, 29, 42, (141,81,0): 52, 30, 43, (141,82,0): 53, 31, 44, (141,83,0): 53, 31, 44, (141,84,0): 53, 31, 44, (141,85,0): 53, 31, 44, (141,86,0): 52, 30, 43, (141,87,0): 51, 29, 42, (141,88,0): 52, 30, 43, (141,89,0): 50, 28, 41, (141,90,0): 47, 25, 38, (141,91,0): 44, 22, 35, (141,92,0): 41, 19, 32, (141,93,0): 38, 16, 29, (141,94,0): 37, 15, 28, (141,95,0): 36, 14, 27, (141,96,0): 39, 19, 31, (141,97,0): 37, 19, 31, (141,98,0): 37, 19, 31, (141,99,0): 37, 19, 31, (141,100,0): 37, 19, 31, (141,101,0): 37, 19, 31, (141,102,0): 36, 20, 31, (141,103,0): 36, 20, 31, (141,104,0): 34, 21, 31, (141,105,0): 33, 20, 30, (141,106,0): 32, 20, 30, (141,107,0): 32, 20, 30, (141,108,0): 31, 19, 29, (141,109,0): 31, 19, 29, (141,110,0): 30, 18, 28, (141,111,0): 29, 19, 28, (141,112,0): 28, 17, 31, (141,113,0): 26, 18, 31, (141,114,0): 26, 18, 31, (141,115,0): 26, 18, 31, (141,116,0): 26, 18, 31, (141,117,0): 26, 18, 31, (141,118,0): 26, 18, 31, (141,119,0): 26, 18, 31, (141,120,0): 25, 17, 30, (141,121,0): 25, 17, 30, (141,122,0): 25, 17, 30, (141,123,0): 25, 17, 30, (141,124,0): 25, 17, 30, (141,125,0): 25, 17, 30, (141,126,0): 25, 17, 30, (141,127,0): 25, 17, 28, (141,128,0): 29, 17, 29, (141,129,0): 29, 17, 27, (141,130,0): 29, 17, 27, (141,131,0): 29, 17, 27, (141,132,0): 29, 17, 27, (141,133,0): 29, 17, 27, (141,134,0): 30, 17, 27, (141,135,0): 30, 17, 27, (141,136,0): 32, 16, 27, (141,137,0): 32, 16, 27, (141,138,0): 33, 15, 27, (141,139,0): 34, 16, 28, (141,140,0): 34, 16, 28, (141,141,0): 35, 17, 29, (141,142,0): 35, 17, 29, (141,143,0): 35, 17, 29, (141,144,0): 41, 19, 31, (141,145,0): 41, 19, 31, (141,146,0): 41, 19, 31, (141,147,0): 42, 20, 32, (141,148,0): 43, 22, 31, (141,149,0): 43, 22, 31, (141,150,0): 43, 22, 29, (141,151,0): 44, 23, 30, (141,152,0): 44, 23, 30, (141,153,0): 44, 23, 30, (141,154,0): 44, 23, 28, (141,155,0): 44, 23, 28, (141,156,0): 45, 25, 27, (141,157,0): 45, 25, 27, (141,158,0): 45, 25, 27, (141,159,0): 45, 25, 27, (141,160,0): 46, 24, 27, (141,161,0): 46, 24, 27, (141,162,0): 46, 24, 27, (141,163,0): 46, 24, 27, (141,164,0): 46, 24, 27, (141,165,0): 46, 24, 27, (141,166,0): 46, 24, 27, (141,167,0): 46, 24, 27, (141,168,0): 44, 22, 25, (141,169,0): 44, 22, 25, (141,170,0): 43, 21, 24, (141,171,0): 43, 21, 24, (141,172,0): 42, 20, 23, (141,173,0): 42, 20, 23, (141,174,0): 41, 19, 22, (141,175,0): 40, 20, 22, (141,176,0): 41, 22, 28, (141,177,0): 39, 22, 28, (141,178,0): 39, 22, 28, (141,179,0): 39, 22, 28, (141,180,0): 41, 22, 26, (141,181,0): 41, 22, 26, (141,182,0): 41, 22, 26, (141,183,0): 41, 22, 26, (141,184,0): 42, 22, 24, (141,185,0): 43, 23, 25, (141,186,0): 44, 22, 24, (141,187,0): 44, 22, 24, (141,188,0): 45, 23, 25, (141,189,0): 46, 24, 26, (141,190,0): 48, 24, 24, (141,191,0): 48, 24, 24, (141,192,0): 47, 25, 27, (141,193,0): 47, 25, 27, (141,194,0): 48, 26, 28, (141,195,0): 48, 26, 28, (141,196,0): 51, 27, 27, (141,197,0): 51, 27, 27, (141,198,0): 53, 27, 28, (141,199,0): 53, 27, 28, (141,200,0): 52, 26, 25, (141,201,0): 52, 26, 25, (141,202,0): 54, 26, 23, (141,203,0): 55, 27, 24, (141,204,0): 56, 26, 24, (141,205,0): 57, 27, 25, (141,206,0): 57, 28, 24, (141,207,0): 57, 28, 24, (141,208,0): 58, 28, 26, (141,209,0): 58, 28, 26, (141,210,0): 58, 29, 25, (141,211,0): 58, 29, 25, (141,212,0): 58, 29, 25, (141,213,0): 58, 29, 25, (141,214,0): 58, 29, 23, (141,215,0): 58, 29, 23, (141,216,0): 59, 30, 22, (141,217,0): 59, 30, 22, (141,218,0): 59, 30, 22, (141,219,0): 59, 30, 22, (141,220,0): 59, 31, 20, (141,221,0): 59, 31, 20, (141,222,0): 59, 31, 20, (141,223,0): 59, 31, 20, (141,224,0): 59, 29, 19, (141,225,0): 60, 30, 20, (141,226,0): 60, 30, 20, (141,227,0): 60, 30, 20, (141,228,0): 61, 31, 21, (141,229,0): 62, 32, 22, (141,230,0): 62, 32, 22, (141,231,0): 62, 32, 22, (141,232,0): 59, 29, 19, (141,233,0): 59, 29, 19, (141,234,0): 59, 29, 19, (141,235,0): 58, 28, 18, (141,236,0): 57, 27, 17, (141,237,0): 57, 27, 17, (141,238,0): 57, 27, 17, (141,239,0): 56, 26, 16, (141,240,0): 58, 28, 18, (141,241,0): 58, 28, 18, (141,242,0): 58, 28, 18, (141,243,0): 59, 29, 19, (141,244,0): 59, 29, 19, (141,245,0): 60, 30, 20, (141,246,0): 60, 30, 20, (141,247,0): 61, 31, 21, (141,248,0): 62, 32, 22, (141,249,0): 62, 32, 22, (141,250,0): 62, 32, 22, (141,251,0): 63, 33, 23, (141,252,0): 63, 33, 23, (141,253,0): 64, 34, 24, (141,254,0): 64, 34, 24, (141,255,0): 64, 34, 24, (141,256,0): 69, 35, 25, (141,257,0): 70, 36, 26, (141,258,0): 71, 37, 27, (141,259,0): 71, 37, 27, (141,260,0): 73, 39, 29, (141,261,0): 73, 39, 29, (141,262,0): 74, 40, 30, (141,263,0): 75, 41, 31, (141,264,0): 72, 38, 28, (141,265,0): 72, 38, 28, (141,266,0): 72, 38, 28, (141,267,0): 72, 38, 28, (141,268,0): 71, 37, 27, (141,269,0): 71, 37, 27, (141,270,0): 70, 36, 26, (141,271,0): 70, 36, 26, (141,272,0): 70, 36, 26, (141,273,0): 70, 36, 26, (141,274,0): 70, 36, 26, (141,275,0): 71, 37, 27, (141,276,0): 71, 37, 25, (141,277,0): 72, 38, 26, (141,278,0): 72, 39, 24, (141,279,0): 73, 40, 25, (141,280,0): 77, 44, 29, (141,281,0): 78, 45, 30, (141,282,0): 79, 46, 29, (141,283,0): 81, 48, 31, (141,284,0): 83, 50, 31, (141,285,0): 85, 52, 33, (141,286,0): 87, 54, 35, (141,287,0): 88, 56, 35, (141,288,0): 86, 54, 31, (141,289,0): 87, 55, 32, (141,290,0): 87, 55, 34, (141,291,0): 88, 56, 35, (141,292,0): 88, 55, 36, (141,293,0): 89, 56, 37, (141,294,0): 91, 55, 39, (141,295,0): 92, 56, 40, (141,296,0): 93, 56, 40, (141,297,0): 94, 57, 39, (141,298,0): 97, 58, 41, (141,299,0): 100, 62, 43, (141,300,0): 103, 65, 44, (141,301,0): 105, 67, 44, (141,302,0): 108, 71, 45, (141,303,0): 109, 72, 45, (141,304,0): 117, 83, 48, (141,305,0): 124, 90, 45, (141,306,0): 140, 104, 46, (141,307,0): 161, 121, 52, (141,308,0): 180, 137, 59, (141,309,0): 190, 145, 64, (141,310,0): 191, 144, 62, (141,311,0): 187, 142, 59, (141,312,0): 189, 147, 63, (141,313,0): 191, 151, 64, (141,314,0): 193, 156, 67, (141,315,0): 197, 160, 71, (141,316,0): 198, 158, 71, (141,317,0): 194, 154, 69, (141,318,0): 192, 146, 69, (141,319,0): 186, 142, 67, (141,320,0): 180, 136, 65, (141,321,0): 177, 135, 63, (141,322,0): 173, 133, 61, (141,323,0): 171, 133, 62, (141,324,0): 171, 134, 63, (141,325,0): 174, 137, 67, (141,326,0): 176, 141, 73, (141,327,0): 178, 143, 75, (141,328,0): 182, 147, 81, (141,329,0): 184, 149, 85, (141,330,0): 188, 150, 88, (141,331,0): 187, 149, 87, (141,332,0): 186, 146, 87, (141,333,0): 187, 145, 87, (141,334,0): 191, 146, 89, (141,335,0): 194, 149, 92, (141,336,0): 196, 151, 94, (141,337,0): 197, 150, 94, (141,338,0): 197, 150, 94, (141,339,0): 198, 149, 93, (141,340,0): 198, 149, 93, (141,341,0): 199, 148, 93, (141,342,0): 198, 147, 92, (141,343,0): 199, 146, 92, (141,344,0): 206, 151, 97, (141,345,0): 211, 156, 102, (141,346,0): 217, 160, 107, (141,347,0): 217, 160, 107, (141,348,0): 217, 157, 105, (141,349,0): 216, 156, 104, (141,350,0): 221, 159, 108, (141,351,0): 225, 163, 112, (141,352,0): 231, 171, 117, (141,353,0): 230, 174, 117, (141,354,0): 231, 175, 118, (141,355,0): 233, 177, 118, (141,356,0): 234, 178, 117, (141,357,0): 235, 181, 117, (141,358,0): 236, 182, 118, (141,359,0): 237, 184, 118, (141,360,0): 234, 181, 115, (141,361,0): 230, 176, 112, (141,362,0): 226, 172, 108, (141,363,0): 225, 169, 108, (141,364,0): 225, 169, 110, (141,365,0): 224, 168, 111, (141,366,0): 222, 166, 109, (141,367,0): 216, 164, 107, (141,368,0): 207, 162, 105, (141,369,0): 200, 161, 104, (141,370,0): 196, 157, 100, (141,371,0): 194, 155, 98, (141,372,0): 195, 156, 101, (141,373,0): 195, 156, 101, (141,374,0): 193, 153, 101, (141,375,0): 191, 151, 100, (141,376,0): 185, 145, 96, (141,377,0): 185, 145, 96, (141,378,0): 185, 144, 98, (141,379,0): 186, 145, 99, (141,380,0): 189, 148, 102, (141,381,0): 192, 151, 107, (141,382,0): 195, 154, 110, (141,383,0): 194, 156, 111, (141,384,0): 193, 156, 111, (141,385,0): 195, 158, 113, (141,386,0): 198, 162, 114, (141,387,0): 204, 164, 113, (141,388,0): 209, 168, 114, (141,389,0): 213, 171, 113, (141,390,0): 218, 173, 114, (141,391,0): 220, 174, 112, (141,392,0): 233, 187, 125, (141,393,0): 232, 187, 122, (141,394,0): 229, 184, 119, (141,395,0): 226, 182, 117, (141,396,0): 222, 181, 117, (141,397,0): 220, 181, 116, (141,398,0): 219, 181, 116, (141,399,0): 219, 181, 116, (141,400,0): 219, 182, 114, (141,401,0): 218, 181, 113, (141,402,0): 219, 182, 112, (141,403,0): 222, 185, 115, (141,404,0): 227, 189, 118, (141,405,0): 234, 196, 123, (141,406,0): 241, 202, 127, (141,407,0): 245, 206, 129, (141,408,0): 249, 210, 131, (141,409,0): 249, 211, 128, (141,410,0): 251, 210, 128, (141,411,0): 250, 210, 125, (141,412,0): 250, 208, 122, (141,413,0): 247, 206, 118, (141,414,0): 245, 204, 116, (141,415,0): 242, 202, 114, (141,416,0): 242, 205, 117, (141,417,0): 242, 206, 118, (141,418,0): 243, 206, 117, (141,419,0): 241, 206, 116, (141,420,0): 240, 203, 112, (141,421,0): 239, 204, 112, (141,422,0): 241, 205, 111, (141,423,0): 243, 209, 112, (141,424,0): 252, 217, 117, (141,425,0): 253, 220, 117, (141,426,0): 255, 222, 118, (141,427,0): 255, 225, 120, (141,428,0): 255, 226, 119, (141,429,0): 255, 225, 118, (141,430,0): 255, 223, 116, (141,431,0): 254, 223, 115, (141,432,0): 246, 220, 110, (141,433,0): 243, 219, 111, (141,434,0): 243, 216, 109, (141,435,0): 242, 215, 108, (141,436,0): 246, 215, 107, (141,437,0): 247, 216, 108, (141,438,0): 251, 218, 113, (141,439,0): 252, 219, 114, (141,440,0): 255, 222, 119, (141,441,0): 250, 216, 118, (141,442,0): 243, 210, 113, (141,443,0): 237, 206, 113, (141,444,0): 233, 202, 111, (141,445,0): 228, 198, 108, (141,446,0): 220, 193, 106, (141,447,0): 214, 190, 104, (141,448,0): 207, 189, 107, (141,449,0): 201, 185, 107, (141,450,0): 195, 182, 104, (141,451,0): 191, 179, 103, (141,452,0): 187, 177, 106, (141,453,0): 182, 173, 106, (141,454,0): 175, 167, 104, (141,455,0): 170, 161, 102, (141,456,0): 161, 152, 95, (141,457,0): 158, 148, 95, (141,458,0): 156, 144, 94, (141,459,0): 152, 140, 90, (141,460,0): 151, 137, 90, (141,461,0): 152, 135, 89, (141,462,0): 154, 136, 90, (141,463,0): 155, 137, 91, (141,464,0): 161, 138, 96, (141,465,0): 162, 139, 95, (141,466,0): 163, 141, 94, (141,467,0): 164, 142, 93, (141,468,0): 165, 143, 94, (141,469,0): 166, 145, 92, (141,470,0): 167, 146, 93, (141,471,0): 167, 146, 91, (141,472,0): 170, 149, 92, (141,473,0): 170, 149, 92, (141,474,0): 170, 149, 94, (141,475,0): 170, 149, 94, (141,476,0): 170, 149, 96, (141,477,0): 169, 148, 95, (141,478,0): 168, 146, 96, (141,479,0): 166, 146, 95, (141,480,0): 165, 145, 94, (141,481,0): 163, 146, 94, (141,482,0): 163, 146, 94, (141,483,0): 164, 147, 95, (141,484,0): 165, 149, 97, (141,485,0): 167, 151, 99, (141,486,0): 169, 153, 101, (141,487,0): 171, 155, 103, (141,488,0): 169, 156, 103, (141,489,0): 168, 155, 102, (141,490,0): 165, 154, 100, (141,491,0): 164, 153, 99, (141,492,0): 164, 153, 99, (141,493,0): 165, 154, 100, (141,494,0): 166, 157, 102, (141,495,0): 166, 159, 105, (141,496,0): 164, 158, 108, (141,497,0): 164, 158, 110, (141,498,0): 164, 158, 110, (141,499,0): 163, 157, 109, (141,500,0): 161, 153, 106, (141,501,0): 157, 149, 103, (141,502,0): 154, 146, 100, (141,503,0): 151, 143, 97, (141,504,0): 150, 138, 96, (141,505,0): 150, 138, 96, (141,506,0): 150, 136, 97, (141,507,0): 149, 135, 96, (141,508,0): 147, 133, 94, (141,509,0): 144, 130, 91, (141,510,0): 142, 127, 88, (141,511,0): 140, 124, 88, (141,512,0): 139, 120, 87, (141,513,0): 137, 118, 85, (141,514,0): 132, 113, 81, (141,515,0): 127, 108, 76, (141,516,0): 122, 103, 71, (141,517,0): 118, 97, 66, (141,518,0): 116, 95, 66, (141,519,0): 114, 93, 64, (141,520,0): 110, 86, 60, (141,521,0): 107, 83, 57, (141,522,0): 105, 79, 54, (141,523,0): 104, 78, 53, (141,524,0): 105, 79, 56, (141,525,0): 104, 78, 55, (141,526,0): 101, 75, 52, (141,527,0): 98, 71, 50, (141,528,0): 93, 66, 49, (141,529,0): 93, 65, 51, (141,530,0): 92, 64, 52, (141,531,0): 92, 64, 52, (141,532,0): 90, 64, 51, (141,533,0): 90, 64, 51, (141,534,0): 87, 63, 51, (141,535,0): 87, 63, 51, (141,536,0): 87, 63, 53, (141,537,0): 88, 64, 54, (141,538,0): 88, 66, 55, (141,539,0): 89, 67, 56, (141,540,0): 88, 68, 59, (141,541,0): 88, 68, 59, (141,542,0): 87, 67, 58, (141,543,0): 86, 66, 55, (141,544,0): 84, 66, 54, (141,545,0): 84, 66, 52, (141,546,0): 83, 65, 51, (141,547,0): 82, 64, 50, (141,548,0): 80, 62, 50, (141,549,0): 77, 59, 47, (141,550,0): 75, 57, 45, (141,551,0): 73, 55, 43, (141,552,0): 69, 51, 41, (141,553,0): 70, 52, 42, (141,554,0): 72, 53, 46, (141,555,0): 72, 53, 46, (141,556,0): 72, 53, 46, (141,557,0): 70, 51, 44, (141,558,0): 68, 49, 43, (141,559,0): 66, 47, 43, (141,560,0): 61, 43, 43, (141,561,0): 58, 42, 43, (141,562,0): 56, 42, 42, (141,563,0): 55, 41, 41, (141,564,0): 53, 41, 41, (141,565,0): 53, 43, 42, (141,566,0): 53, 45, 43, (141,567,0): 54, 46, 44, (141,568,0): 54, 46, 44, (141,569,0): 55, 47, 45, (141,570,0): 58, 48, 47, (141,571,0): 61, 49, 49, (141,572,0): 65, 51, 51, (141,573,0): 67, 53, 53, (141,574,0): 69, 53, 54, (141,575,0): 72, 54, 54, (141,576,0): 74, 55, 51, (141,577,0): 75, 54, 49, (141,578,0): 76, 55, 50, (141,579,0): 78, 57, 52, (141,580,0): 80, 59, 54, (141,581,0): 81, 60, 55, (141,582,0): 82, 61, 56, (141,583,0): 83, 62, 57, (141,584,0): 84, 63, 58, (141,585,0): 85, 64, 59, (141,586,0): 85, 64, 59, (141,587,0): 86, 65, 60, (141,588,0): 85, 64, 59, (141,589,0): 84, 63, 58, (141,590,0): 82, 61, 56, (141,591,0): 82, 61, 56, (141,592,0): 81, 62, 56, (141,593,0): 81, 62, 56, (141,594,0): 81, 62, 56, (141,595,0): 79, 60, 54, (141,596,0): 77, 58, 52, (141,597,0): 74, 55, 49, (141,598,0): 71, 52, 46, (141,599,0): 70, 51, 45, (142,0,0): 37, 20, 36, (142,1,0): 35, 18, 34, (142,2,0): 32, 18, 33, (142,3,0): 33, 19, 34, (142,4,0): 35, 21, 38, (142,5,0): 35, 21, 38, (142,6,0): 31, 18, 35, (142,7,0): 28, 15, 33, (142,8,0): 28, 17, 34, (142,9,0): 28, 17, 34, (142,10,0): 28, 16, 36, (142,11,0): 29, 17, 37, (142,12,0): 29, 20, 39, (142,13,0): 31, 22, 43, (142,14,0): 34, 25, 46, (142,15,0): 37, 25, 45, (142,16,0): 40, 26, 43, (142,17,0): 42, 25, 41, (142,18,0): 42, 25, 41, (142,19,0): 43, 26, 42, (142,20,0): 43, 26, 42, (142,21,0): 44, 27, 43, (142,22,0): 44, 27, 43, (142,23,0): 44, 27, 43, (142,24,0): 45, 28, 44, (142,25,0): 45, 28, 44, (142,26,0): 45, 28, 44, (142,27,0): 45, 28, 44, (142,28,0): 45, 28, 44, (142,29,0): 45, 28, 44, (142,30,0): 45, 28, 44, (142,31,0): 45, 28, 44, (142,32,0): 47, 30, 46, (142,33,0): 47, 30, 46, (142,34,0): 47, 30, 46, (142,35,0): 47, 30, 46, (142,36,0): 47, 30, 46, (142,37,0): 47, 30, 46, (142,38,0): 47, 30, 46, (142,39,0): 47, 30, 46, (142,40,0): 48, 31, 47, (142,41,0): 48, 31, 47, (142,42,0): 48, 31, 47, (142,43,0): 48, 31, 47, (142,44,0): 48, 31, 47, (142,45,0): 48, 31, 47, (142,46,0): 48, 31, 47, (142,47,0): 49, 31, 45, (142,48,0): 55, 34, 49, (142,49,0): 55, 33, 46, (142,50,0): 54, 32, 45, (142,51,0): 54, 32, 45, (142,52,0): 55, 31, 45, (142,53,0): 55, 31, 45, (142,54,0): 56, 32, 46, (142,55,0): 57, 33, 47, (142,56,0): 58, 31, 46, (142,57,0): 58, 31, 46, (142,58,0): 59, 31, 46, (142,59,0): 59, 31, 46, (142,60,0): 59, 31, 46, (142,61,0): 59, 31, 46, (142,62,0): 61, 30, 46, (142,63,0): 61, 30, 46, (142,64,0): 63, 32, 47, (142,65,0): 63, 33, 45, (142,66,0): 63, 33, 45, (142,67,0): 60, 32, 44, (142,68,0): 60, 32, 44, (142,69,0): 59, 31, 43, (142,70,0): 58, 32, 43, (142,71,0): 57, 31, 42, (142,72,0): 54, 28, 39, (142,73,0): 52, 29, 39, (142,74,0): 52, 29, 39, (142,75,0): 52, 29, 39, (142,76,0): 51, 30, 39, (142,77,0): 51, 30, 39, (142,78,0): 51, 30, 39, (142,79,0): 51, 29, 41, (142,80,0): 52, 30, 43, (142,81,0): 52, 30, 43, (142,82,0): 53, 31, 44, (142,83,0): 54, 32, 45, (142,84,0): 54, 32, 45, (142,85,0): 53, 31, 44, (142,86,0): 52, 30, 43, (142,87,0): 52, 30, 43, (142,88,0): 52, 30, 43, (142,89,0): 51, 29, 42, (142,90,0): 49, 27, 40, (142,91,0): 47, 25, 38, (142,92,0): 43, 21, 34, (142,93,0): 39, 17, 30, (142,94,0): 36, 14, 27, (142,95,0): 34, 12, 25, (142,96,0): 39, 19, 31, (142,97,0): 39, 19, 31, (142,98,0): 37, 19, 31, (142,99,0): 37, 19, 31, (142,100,0): 37, 19, 31, (142,101,0): 37, 19, 31, (142,102,0): 36, 20, 31, (142,103,0): 36, 20, 31, (142,104,0): 33, 20, 30, (142,105,0): 33, 20, 30, (142,106,0): 32, 19, 29, (142,107,0): 32, 19, 29, (142,108,0): 30, 18, 28, (142,109,0): 30, 18, 28, (142,110,0): 29, 17, 27, (142,111,0): 28, 18, 27, (142,112,0): 29, 18, 32, (142,113,0): 27, 19, 32, (142,114,0): 27, 19, 32, (142,115,0): 27, 19, 32, (142,116,0): 27, 19, 32, (142,117,0): 27, 19, 32, (142,118,0): 27, 19, 32, (142,119,0): 27, 19, 32, (142,120,0): 25, 17, 30, (142,121,0): 25, 17, 30, (142,122,0): 25, 17, 30, (142,123,0): 25, 17, 30, (142,124,0): 25, 17, 30, (142,125,0): 25, 17, 30, (142,126,0): 25, 17, 30, (142,127,0): 25, 17, 28, (142,128,0): 29, 17, 29, (142,129,0): 29, 17, 27, (142,130,0): 29, 17, 27, (142,131,0): 29, 17, 27, (142,132,0): 29, 17, 27, (142,133,0): 29, 17, 27, (142,134,0): 30, 17, 27, (142,135,0): 30, 17, 27, (142,136,0): 32, 16, 27, (142,137,0): 32, 16, 27, (142,138,0): 33, 15, 27, (142,139,0): 34, 16, 28, (142,140,0): 34, 16, 28, (142,141,0): 35, 17, 29, (142,142,0): 35, 17, 29, (142,143,0): 35, 17, 29, (142,144,0): 41, 19, 31, (142,145,0): 42, 20, 32, (142,146,0): 42, 21, 30, (142,147,0): 42, 21, 30, (142,148,0): 43, 22, 31, (142,149,0): 43, 22, 31, (142,150,0): 44, 23, 30, (142,151,0): 44, 23, 30, (142,152,0): 45, 24, 29, (142,153,0): 45, 24, 29, (142,154,0): 45, 24, 29, (142,155,0): 45, 24, 29, (142,156,0): 44, 24, 26, (142,157,0): 44, 24, 26, (142,158,0): 44, 24, 26, (142,159,0): 44, 24, 26, (142,160,0): 47, 25, 28, (142,161,0): 49, 24, 28, (142,162,0): 49, 24, 28, (142,163,0): 49, 24, 28, (142,164,0): 49, 24, 28, (142,165,0): 49, 24, 28, (142,166,0): 49, 24, 28, (142,167,0): 49, 24, 28, (142,168,0): 46, 21, 25, (142,169,0): 46, 21, 25, (142,170,0): 45, 20, 24, (142,171,0): 45, 20, 24, (142,172,0): 44, 19, 23, (142,173,0): 44, 19, 23, (142,174,0): 43, 18, 22, (142,175,0): 41, 19, 22, (142,176,0): 41, 22, 28, (142,177,0): 39, 22, 28, (142,178,0): 39, 22, 28, (142,179,0): 39, 22, 28, (142,180,0): 41, 22, 26, (142,181,0): 41, 22, 26, (142,182,0): 41, 22, 26, (142,183,0): 41, 22, 26, (142,184,0): 42, 22, 24, (142,185,0): 42, 22, 24, (142,186,0): 44, 22, 24, (142,187,0): 44, 22, 24, (142,188,0): 45, 23, 25, (142,189,0): 45, 23, 25, (142,190,0): 47, 23, 23, (142,191,0): 48, 24, 24, (142,192,0): 47, 25, 27, (142,193,0): 47, 25, 27, (142,194,0): 48, 26, 28, (142,195,0): 48, 26, 28, (142,196,0): 51, 27, 27, (142,197,0): 51, 27, 27, (142,198,0): 53, 27, 28, (142,199,0): 53, 27, 28, (142,200,0): 52, 26, 25, (142,201,0): 52, 26, 25, (142,202,0): 54, 26, 23, (142,203,0): 55, 27, 24, (142,204,0): 56, 26, 24, (142,205,0): 57, 27, 25, (142,206,0): 57, 28, 24, (142,207,0): 57, 28, 24, (142,208,0): 58, 28, 26, (142,209,0): 58, 28, 26, (142,210,0): 58, 29, 25, (142,211,0): 58, 29, 25, (142,212,0): 58, 29, 25, (142,213,0): 58, 29, 25, (142,214,0): 58, 29, 23, (142,215,0): 58, 29, 23, (142,216,0): 59, 30, 22, (142,217,0): 59, 30, 22, (142,218,0): 59, 30, 22, (142,219,0): 59, 30, 22, (142,220,0): 59, 31, 20, (142,221,0): 59, 31, 20, (142,222,0): 59, 31, 20, (142,223,0): 59, 31, 20, (142,224,0): 59, 29, 19, (142,225,0): 59, 29, 19, (142,226,0): 60, 30, 20, (142,227,0): 60, 30, 20, (142,228,0): 61, 31, 21, (142,229,0): 61, 31, 21, (142,230,0): 61, 31, 21, (142,231,0): 62, 32, 22, (142,232,0): 59, 29, 19, (142,233,0): 58, 28, 18, (142,234,0): 58, 28, 18, (142,235,0): 58, 28, 18, (142,236,0): 57, 27, 17, (142,237,0): 57, 27, 17, (142,238,0): 56, 26, 16, (142,239,0): 56, 26, 16, (142,240,0): 57, 27, 17, (142,241,0): 58, 28, 18, (142,242,0): 58, 28, 18, (142,243,0): 59, 29, 19, (142,244,0): 59, 29, 19, (142,245,0): 60, 30, 20, (142,246,0): 60, 30, 20, (142,247,0): 60, 30, 20, (142,248,0): 62, 32, 22, (142,249,0): 62, 32, 22, (142,250,0): 62, 32, 22, (142,251,0): 63, 33, 23, (142,252,0): 63, 33, 23, (142,253,0): 64, 34, 24, (142,254,0): 64, 34, 24, (142,255,0): 64, 34, 24, (142,256,0): 69, 35, 25, (142,257,0): 69, 35, 25, (142,258,0): 70, 36, 26, (142,259,0): 71, 37, 27, (142,260,0): 73, 39, 29, (142,261,0): 74, 40, 30, (142,262,0): 75, 41, 31, (142,263,0): 75, 41, 31, (142,264,0): 74, 40, 30, (142,265,0): 73, 39, 29, (142,266,0): 73, 39, 29, (142,267,0): 72, 38, 28, (142,268,0): 71, 37, 27, (142,269,0): 71, 37, 27, (142,270,0): 70, 36, 26, (142,271,0): 70, 36, 26, (142,272,0): 69, 35, 25, (142,273,0): 70, 36, 26, (142,274,0): 70, 36, 24, (142,275,0): 71, 37, 25, (142,276,0): 71, 37, 25, (142,277,0): 72, 38, 26, (142,278,0): 72, 39, 24, (142,279,0): 72, 39, 24, (142,280,0): 76, 43, 26, (142,281,0): 77, 44, 27, (142,282,0): 78, 45, 28, (142,283,0): 80, 47, 30, (142,284,0): 83, 50, 31, (142,285,0): 85, 52, 33, (142,286,0): 87, 54, 35, (142,287,0): 88, 56, 35, (142,288,0): 88, 56, 33, (142,289,0): 88, 56, 31, (142,290,0): 88, 56, 33, (142,291,0): 89, 57, 36, (142,292,0): 89, 56, 37, (142,293,0): 90, 57, 38, (142,294,0): 92, 56, 40, (142,295,0): 92, 56, 40, (142,296,0): 93, 56, 40, (142,297,0): 94, 57, 39, (142,298,0): 97, 58, 41, (142,299,0): 100, 62, 43, (142,300,0): 102, 64, 43, (142,301,0): 105, 67, 44, (142,302,0): 106, 69, 43, (142,303,0): 106, 71, 43, (142,304,0): 113, 80, 49, (142,305,0): 117, 84, 43, (142,306,0): 129, 94, 40, (142,307,0): 149, 110, 45, (142,308,0): 170, 128, 54, (142,309,0): 183, 140, 61, (142,310,0): 188, 143, 62, (142,311,0): 186, 141, 60, (142,312,0): 188, 146, 62, (142,313,0): 190, 150, 63, (142,314,0): 193, 156, 67, (142,315,0): 196, 159, 68, (142,316,0): 199, 159, 71, (142,317,0): 196, 156, 69, (142,318,0): 196, 150, 72, (142,319,0): 191, 147, 72, (142,320,0): 184, 140, 65, (142,321,0): 182, 140, 66, (142,322,0): 180, 141, 66, (142,323,0): 179, 141, 68, (142,324,0): 179, 142, 71, (142,325,0): 181, 144, 73, (142,326,0): 182, 148, 77, (142,327,0): 182, 149, 80, (142,328,0): 186, 153, 86, (142,329,0): 187, 152, 88, (142,330,0): 188, 150, 88, (142,331,0): 185, 147, 85, (142,332,0): 182, 142, 83, (142,333,0): 183, 140, 85, (142,334,0): 188, 143, 88, (142,335,0): 191, 146, 91, (142,336,0): 192, 147, 90, (142,337,0): 192, 147, 90, (142,338,0): 193, 148, 91, (142,339,0): 193, 148, 91, (142,340,0): 194, 147, 91, (142,341,0): 197, 148, 92, (142,342,0): 198, 147, 92, (142,343,0): 199, 146, 92, (142,344,0): 205, 150, 96, (142,345,0): 210, 155, 101, (142,346,0): 216, 159, 106, (142,347,0): 218, 158, 106, (142,348,0): 216, 154, 103, (142,349,0): 217, 155, 104, (142,350,0): 223, 160, 109, (142,351,0): 228, 166, 115, (142,352,0): 227, 170, 117, (142,353,0): 227, 172, 116, (142,354,0): 228, 173, 116, (142,355,0): 229, 175, 115, (142,356,0): 231, 177, 117, (142,357,0): 230, 179, 116, (142,358,0): 231, 180, 115, (142,359,0): 232, 181, 116, (142,360,0): 236, 185, 120, (142,361,0): 231, 180, 115, (142,362,0): 226, 175, 112, (142,363,0): 225, 171, 111, (142,364,0): 223, 169, 109, (142,365,0): 222, 167, 110, (142,366,0): 220, 165, 109, (142,367,0): 215, 162, 108, (142,368,0): 207, 162, 107, (142,369,0): 201, 160, 104, (142,370,0): 197, 156, 102, (142,371,0): 196, 155, 101, (142,372,0): 196, 155, 101, (142,373,0): 196, 155, 101, (142,374,0): 194, 154, 102, (142,375,0): 192, 152, 100, (142,376,0): 187, 147, 96, (142,377,0): 187, 147, 96, (142,378,0): 185, 147, 98, (142,379,0): 185, 147, 98, (142,380,0): 187, 149, 100, (142,381,0): 189, 151, 104, (142,382,0): 190, 152, 105, (142,383,0): 188, 154, 108, (142,384,0): 189, 157, 110, (142,385,0): 189, 158, 111, (142,386,0): 193, 161, 112, (142,387,0): 197, 164, 113, (142,388,0): 204, 167, 114, (142,389,0): 211, 170, 114, (142,390,0): 215, 173, 113, (142,391,0): 219, 175, 112, (142,392,0): 229, 183, 121, (142,393,0): 228, 183, 118, (142,394,0): 226, 181, 116, (142,395,0): 224, 180, 115, (142,396,0): 223, 179, 116, (142,397,0): 221, 180, 116, (142,398,0): 221, 181, 119, (142,399,0): 222, 183, 118, (142,400,0): 221, 182, 115, (142,401,0): 221, 182, 115, (142,402,0): 222, 183, 114, (142,403,0): 225, 186, 117, (142,404,0): 228, 190, 119, (142,405,0): 233, 195, 122, (142,406,0): 239, 200, 125, (142,407,0): 242, 203, 126, (142,408,0): 249, 208, 129, (142,409,0): 249, 208, 126, (142,410,0): 250, 208, 126, (142,411,0): 249, 207, 123, (142,412,0): 247, 205, 119, (142,413,0): 245, 204, 116, (142,414,0): 243, 202, 114, (142,415,0): 242, 201, 111, (142,416,0): 247, 208, 117, (142,417,0): 248, 212, 118, (142,418,0): 252, 213, 120, (142,419,0): 249, 213, 119, (142,420,0): 248, 209, 114, (142,421,0): 243, 207, 111, (142,422,0): 245, 207, 110, (142,423,0): 244, 209, 109, (142,424,0): 254, 216, 117, (142,425,0): 253, 218, 116, (142,426,0): 255, 221, 117, (142,427,0): 255, 223, 119, (142,428,0): 255, 223, 119, (142,429,0): 255, 223, 116, (142,430,0): 255, 220, 114, (142,431,0): 253, 220, 113, (142,432,0): 247, 221, 111, (142,433,0): 243, 219, 109, (142,434,0): 243, 217, 107, (142,435,0): 242, 216, 106, (142,436,0): 246, 215, 107, (142,437,0): 249, 218, 110, (142,438,0): 253, 220, 113, (142,439,0): 255, 223, 118, (142,440,0): 255, 224, 121, (142,441,0): 252, 218, 118, (142,442,0): 245, 212, 115, (142,443,0): 238, 207, 114, (142,444,0): 234, 203, 112, (142,445,0): 228, 198, 108, (142,446,0): 219, 192, 105, (142,447,0): 212, 188, 102, (142,448,0): 207, 189, 107, (142,449,0): 200, 184, 106, (142,450,0): 192, 179, 101, (142,451,0): 187, 175, 101, (142,452,0): 182, 172, 101, (142,453,0): 178, 169, 102, (142,454,0): 173, 165, 102, (142,455,0): 170, 161, 102, (142,456,0): 163, 154, 99, (142,457,0): 160, 150, 97, (142,458,0): 157, 145, 95, (142,459,0): 154, 142, 92, (142,460,0): 153, 139, 92, (142,461,0): 154, 137, 91, (142,462,0): 156, 138, 92, (142,463,0): 156, 138, 92, (142,464,0): 163, 140, 96, (142,465,0): 164, 141, 97, (142,466,0): 164, 142, 95, (142,467,0): 165, 143, 94, (142,468,0): 166, 144, 95, (142,469,0): 167, 146, 93, (142,470,0): 168, 147, 94, (142,471,0): 168, 147, 92, (142,472,0): 172, 151, 94, (142,473,0): 171, 150, 93, (142,474,0): 170, 149, 94, (142,475,0): 169, 148, 93, (142,476,0): 169, 148, 95, (142,477,0): 169, 148, 95, (142,478,0): 169, 147, 97, (142,479,0): 168, 148, 97, (142,480,0): 167, 147, 94, (142,481,0): 165, 148, 94, (142,482,0): 165, 148, 94, (142,483,0): 165, 148, 94, (142,484,0): 166, 151, 96, (142,485,0): 168, 153, 98, (142,486,0): 171, 156, 101, (142,487,0): 172, 157, 102, (142,488,0): 170, 157, 102, (142,489,0): 169, 156, 101, (142,490,0): 165, 154, 98, (142,491,0): 163, 152, 96, (142,492,0): 163, 152, 96, (142,493,0): 165, 154, 98, (142,494,0): 166, 157, 100, (142,495,0): 166, 159, 105, (142,496,0): 164, 158, 108, (142,497,0): 161, 157, 110, (142,498,0): 159, 155, 108, (142,499,0): 157, 153, 106, (142,500,0): 156, 149, 103, (142,501,0): 153, 146, 102, (142,502,0): 150, 143, 99, (142,503,0): 149, 142, 98, (142,504,0): 147, 138, 97, (142,505,0): 147, 138, 97, (142,506,0): 149, 137, 99, (142,507,0): 148, 136, 98, (142,508,0): 146, 134, 96, (142,509,0): 143, 131, 93, (142,510,0): 142, 128, 91, (142,511,0): 140, 126, 91, (142,512,0): 137, 121, 87, (142,513,0): 134, 118, 84, (142,514,0): 129, 113, 80, (142,515,0): 123, 107, 74, (142,516,0): 118, 102, 69, (142,517,0): 117, 98, 66, (142,518,0): 114, 95, 65, (142,519,0): 114, 95, 65, (142,520,0): 110, 89, 62, (142,521,0): 107, 86, 59, (142,522,0): 106, 82, 56, (142,523,0): 105, 81, 55, (142,524,0): 105, 81, 57, (142,525,0): 104, 80, 56, (142,526,0): 100, 76, 52, (142,527,0): 98, 71, 50, (142,528,0): 92, 64, 50, (142,529,0): 92, 64, 52, (142,530,0): 92, 64, 52, (142,531,0): 91, 63, 51, (142,532,0): 90, 64, 51, (142,533,0): 90, 64, 51, (142,534,0): 87, 63, 51, (142,535,0): 87, 63, 51, (142,536,0): 88, 64, 54, (142,537,0): 89, 65, 55, (142,538,0): 89, 66, 58, (142,539,0): 91, 68, 60, (142,540,0): 89, 69, 60, (142,541,0): 89, 69, 60, (142,542,0): 88, 68, 59, (142,543,0): 88, 68, 57, (142,544,0): 84, 66, 54, (142,545,0): 84, 66, 52, (142,546,0): 84, 66, 52, (142,547,0): 83, 65, 51, (142,548,0): 80, 62, 50, (142,549,0): 78, 60, 48, (142,550,0): 75, 57, 45, (142,551,0): 73, 55, 43, (142,552,0): 70, 52, 42, (142,553,0): 70, 52, 42, (142,554,0): 70, 51, 44, (142,555,0): 70, 51, 44, (142,556,0): 69, 50, 43, (142,557,0): 69, 50, 43, (142,558,0): 68, 49, 43, (142,559,0): 67, 48, 44, (142,560,0): 61, 42, 44, (142,561,0): 58, 42, 45, (142,562,0): 56, 41, 44, (142,563,0): 55, 40, 43, (142,564,0): 53, 41, 43, (142,565,0): 53, 43, 44, (142,566,0): 54, 45, 46, (142,567,0): 54, 45, 46, (142,568,0): 54, 45, 46, (142,569,0): 55, 46, 47, (142,570,0): 58, 48, 49, (142,571,0): 61, 49, 51, (142,572,0): 65, 50, 53, (142,573,0): 68, 53, 56, (142,574,0): 70, 54, 57, (142,575,0): 73, 54, 56, (142,576,0): 76, 57, 53, (142,577,0): 78, 57, 52, (142,578,0): 79, 58, 53, (142,579,0): 80, 59, 54, (142,580,0): 82, 61, 56, (142,581,0): 83, 62, 57, (142,582,0): 85, 64, 59, (142,583,0): 85, 64, 59, (142,584,0): 86, 65, 60, (142,585,0): 87, 66, 61, (142,586,0): 87, 66, 61, (142,587,0): 88, 67, 62, (142,588,0): 87, 66, 61, (142,589,0): 85, 64, 59, (142,590,0): 84, 63, 58, (142,591,0): 83, 62, 57, (142,592,0): 81, 62, 56, (142,593,0): 81, 62, 56, (142,594,0): 81, 62, 56, (142,595,0): 80, 61, 55, (142,596,0): 77, 58, 52, (142,597,0): 75, 56, 50, (142,598,0): 72, 53, 47, (142,599,0): 71, 52, 46, (143,0,0): 31, 17, 32, (143,1,0): 30, 16, 31, (143,2,0): 28, 16, 30, (143,3,0): 30, 18, 32, (143,4,0): 33, 20, 37, (143,5,0): 33, 20, 37, (143,6,0): 29, 16, 33, (143,7,0): 23, 12, 28, (143,8,0): 28, 17, 34, (143,9,0): 28, 17, 34, (143,10,0): 29, 18, 35, (143,11,0): 30, 19, 36, (143,12,0): 30, 21, 40, (143,13,0): 32, 23, 42, (143,14,0): 35, 26, 45, (143,15,0): 38, 27, 44, (143,16,0): 39, 25, 42, (143,17,0): 41, 24, 40, (143,18,0): 41, 24, 40, (143,19,0): 42, 25, 41, (143,20,0): 42, 25, 41, (143,21,0): 43, 26, 42, (143,22,0): 43, 26, 42, (143,23,0): 44, 27, 43, (143,24,0): 45, 28, 44, (143,25,0): 45, 28, 44, (143,26,0): 45, 28, 44, (143,27,0): 45, 28, 44, (143,28,0): 45, 28, 44, (143,29,0): 45, 28, 44, (143,30,0): 45, 28, 44, (143,31,0): 45, 28, 44, (143,32,0): 47, 30, 46, (143,33,0): 47, 31, 44, (143,34,0): 47, 30, 46, (143,35,0): 47, 31, 44, (143,36,0): 47, 30, 46, (143,37,0): 47, 31, 44, (143,38,0): 48, 30, 46, (143,39,0): 48, 30, 44, (143,40,0): 49, 31, 47, (143,41,0): 49, 31, 45, (143,42,0): 49, 31, 47, (143,43,0): 49, 31, 45, (143,44,0): 49, 31, 47, (143,45,0): 49, 31, 45, (143,46,0): 49, 31, 47, (143,47,0): 51, 30, 45, (143,48,0): 57, 34, 50, (143,49,0): 57, 33, 47, (143,50,0): 55, 31, 47, (143,51,0): 54, 30, 44, (143,52,0): 54, 30, 46, (143,53,0): 55, 31, 45, (143,54,0): 59, 32, 47, (143,55,0): 60, 33, 48, (143,56,0): 58, 31, 46, (143,57,0): 58, 31, 46, (143,58,0): 59, 31, 46, (143,59,0): 59, 31, 46, (143,60,0): 59, 31, 46, (143,61,0): 59, 31, 46, (143,62,0): 61, 30, 46, (143,63,0): 59, 31, 45, (143,64,0): 62, 34, 48, (143,65,0): 61, 33, 45, (143,66,0): 61, 33, 45, (143,67,0): 61, 33, 45, (143,68,0): 59, 33, 44, (143,69,0): 58, 32, 43, (143,70,0): 58, 32, 43, (143,71,0): 58, 32, 43, (143,72,0): 55, 29, 40, (143,73,0): 55, 29, 40, (143,74,0): 53, 30, 40, (143,75,0): 53, 30, 38, (143,76,0): 53, 30, 40, (143,77,0): 53, 30, 38, (143,78,0): 53, 30, 38, (143,79,0): 53, 30, 40, (143,80,0): 53, 29, 42, (143,81,0): 54, 30, 43, (143,82,0): 55, 31, 44, (143,83,0): 56, 32, 45, (143,84,0): 56, 32, 45, (143,85,0): 55, 31, 44, (143,86,0): 54, 30, 43, (143,87,0): 53, 29, 42, (143,88,0): 53, 29, 42, (143,89,0): 52, 30, 42, (143,90,0): 51, 29, 41, (143,91,0): 48, 26, 38, (143,92,0): 45, 23, 35, (143,93,0): 40, 18, 30, (143,94,0): 35, 13, 25, (143,95,0): 31, 11, 22, (143,96,0): 38, 18, 30, (143,97,0): 36, 18, 30, (143,98,0): 37, 19, 31, (143,99,0): 36, 20, 31, (143,100,0): 37, 19, 31, (143,101,0): 36, 20, 31, (143,102,0): 37, 21, 32, (143,103,0): 37, 21, 32, (143,104,0): 32, 19, 29, (143,105,0): 32, 19, 29, (143,106,0): 32, 19, 29, (143,107,0): 31, 18, 28, (143,108,0): 30, 18, 30, (143,109,0): 29, 17, 27, (143,110,0): 29, 17, 29, (143,111,0): 29, 17, 29, (143,112,0): 29, 19, 30, (143,113,0): 29, 19, 30, (143,114,0): 29, 18, 32, (143,115,0): 29, 19, 30, (143,116,0): 29, 18, 32, (143,117,0): 29, 19, 30, (143,118,0): 29, 18, 32, (143,119,0): 29, 19, 30, (143,120,0): 27, 16, 30, (143,121,0): 27, 17, 28, (143,122,0): 27, 16, 30, (143,123,0): 27, 17, 28, (143,124,0): 27, 16, 30, (143,125,0): 27, 17, 28, (143,126,0): 27, 16, 30, (143,127,0): 27, 17, 28, (143,128,0): 29, 17, 27, (143,129,0): 29, 17, 27, (143,130,0): 29, 17, 27, (143,131,0): 29, 17, 27, (143,132,0): 30, 17, 27, (143,133,0): 30, 17, 26, (143,134,0): 30, 17, 26, (143,135,0): 32, 16, 26, (143,136,0): 32, 16, 26, (143,137,0): 33, 16, 26, (143,138,0): 33, 16, 26, (143,139,0): 34, 17, 27, (143,140,0): 34, 17, 27, (143,141,0): 35, 18, 28, (143,142,0): 37, 17, 28, (143,143,0): 37, 17, 28, (143,144,0): 41, 20, 29, (143,145,0): 42, 21, 30, (143,146,0): 42, 21, 28, (143,147,0): 43, 22, 29, (143,148,0): 43, 22, 29, (143,149,0): 44, 23, 30, (143,150,0): 44, 23, 30, (143,151,0): 44, 23, 28, (143,152,0): 45, 24, 29, (143,153,0): 45, 24, 29, (143,154,0): 45, 24, 29, (143,155,0): 45, 24, 29, (143,156,0): 44, 24, 26, (143,157,0): 44, 24, 26, (143,158,0): 44, 24, 26, (143,159,0): 44, 24, 26, (143,160,0): 47, 25, 28, (143,161,0): 49, 24, 28, (143,162,0): 49, 24, 28, (143,163,0): 49, 24, 28, (143,164,0): 49, 24, 28, (143,165,0): 49, 24, 28, (143,166,0): 49, 24, 28, (143,167,0): 49, 24, 28, (143,168,0): 46, 21, 25, (143,169,0): 46, 21, 25, (143,170,0): 45, 20, 24, (143,171,0): 45, 20, 24, (143,172,0): 44, 19, 23, (143,173,0): 44, 19, 23, (143,174,0): 43, 18, 22, (143,175,0): 41, 19, 22, (143,176,0): 41, 22, 26, (143,177,0): 39, 22, 28, (143,178,0): 39, 22, 28, (143,179,0): 41, 22, 26, (143,180,0): 41, 22, 26, (143,181,0): 41, 22, 26, (143,182,0): 41, 22, 26, (143,183,0): 42, 22, 24, (143,184,0): 42, 22, 24, (143,185,0): 43, 21, 23, (143,186,0): 43, 21, 23, (143,187,0): 44, 22, 24, (143,188,0): 44, 22, 24, (143,189,0): 47, 23, 23, (143,190,0): 47, 23, 23, (143,191,0): 48, 24, 24, (143,192,0): 49, 25, 25, (143,193,0): 47, 26, 25, (143,194,0): 50, 25, 28, (143,195,0): 50, 26, 26, (143,196,0): 51, 27, 27, (143,197,0): 52, 26, 27, (143,198,0): 53, 27, 28, (143,199,0): 53, 27, 26, (143,200,0): 52, 26, 25, (143,201,0): 54, 26, 23, (143,202,0): 54, 26, 23, (143,203,0): 56, 27, 23, (143,204,0): 56, 26, 24, (143,205,0): 57, 28, 24, (143,206,0): 57, 28, 24, (143,207,0): 57, 28, 24, (143,208,0): 59, 28, 25, (143,209,0): 58, 29, 25, (143,210,0): 58, 29, 25, (143,211,0): 58, 29, 25, (143,212,0): 58, 29, 25, (143,213,0): 58, 29, 25, (143,214,0): 58, 29, 23, (143,215,0): 58, 29, 23, (143,216,0): 59, 30, 22, (143,217,0): 59, 30, 22, (143,218,0): 59, 30, 22, (143,219,0): 59, 30, 22, (143,220,0): 59, 30, 22, (143,221,0): 58, 31, 20, (143,222,0): 59, 30, 22, (143,223,0): 59, 31, 20, (143,224,0): 58, 30, 19, (143,225,0): 59, 29, 19, (143,226,0): 59, 29, 19, (143,227,0): 60, 30, 20, (143,228,0): 60, 30, 20, (143,229,0): 61, 31, 21, (143,230,0): 61, 31, 21, (143,231,0): 62, 32, 22, (143,232,0): 59, 29, 19, (143,233,0): 58, 28, 18, (143,234,0): 58, 28, 18, (143,235,0): 57, 27, 17, (143,236,0): 57, 27, 17, (143,237,0): 56, 26, 16, (143,238,0): 56, 26, 16, (143,239,0): 56, 26, 16, (143,240,0): 57, 27, 17, (143,241,0): 57, 27, 17, (143,242,0): 58, 28, 18, (143,243,0): 58, 28, 18, (143,244,0): 59, 29, 19, (143,245,0): 59, 29, 19, (143,246,0): 60, 30, 20, (143,247,0): 60, 30, 20, (143,248,0): 62, 32, 22, (143,249,0): 62, 32, 22, (143,250,0): 62, 32, 22, (143,251,0): 63, 33, 23, (143,252,0): 63, 33, 23, (143,253,0): 64, 34, 24, (143,254,0): 66, 33, 24, (143,255,0): 66, 34, 23, (143,256,0): 68, 34, 24, (143,257,0): 69, 35, 25, (143,258,0): 70, 36, 26, (143,259,0): 71, 37, 27, (143,260,0): 73, 39, 29, (143,261,0): 74, 40, 30, (143,262,0): 75, 41, 31, (143,263,0): 76, 42, 32, (143,264,0): 74, 40, 30, (143,265,0): 74, 40, 30, (143,266,0): 73, 39, 30, (143,267,0): 72, 38, 29, (143,268,0): 71, 37, 28, (143,269,0): 71, 37, 28, (143,270,0): 70, 36, 27, (143,271,0): 70, 36, 27, (143,272,0): 69, 35, 26, (143,273,0): 69, 35, 26, (143,274,0): 70, 36, 26, (143,275,0): 70, 36, 26, (143,276,0): 71, 37, 27, (143,277,0): 71, 37, 25, (143,278,0): 72, 38, 26, (143,279,0): 72, 39, 24, (143,280,0): 75, 42, 27, (143,281,0): 76, 43, 26, (143,282,0): 78, 45, 28, (143,283,0): 80, 47, 30, (143,284,0): 82, 49, 30, (143,285,0): 85, 52, 33, (143,286,0): 86, 53, 34, (143,287,0): 87, 55, 34, (143,288,0): 91, 56, 34, (143,289,0): 91, 56, 34, (143,290,0): 91, 56, 34, (143,291,0): 92, 57, 37, (143,292,0): 92, 57, 38, (143,293,0): 92, 57, 38, (143,294,0): 92, 56, 40, (143,295,0): 92, 56, 40, (143,296,0): 92, 55, 39, (143,297,0): 94, 57, 39, (143,298,0): 96, 59, 41, (143,299,0): 99, 62, 43, (143,300,0): 101, 64, 45, (143,301,0): 103, 67, 45, (143,302,0): 104, 68, 44, (143,303,0): 105, 69, 43, (143,304,0): 110, 76, 48, (143,305,0): 111, 78, 43, (143,306,0): 120, 86, 40, (143,307,0): 141, 102, 45, (143,308,0): 164, 123, 57, (143,309,0): 181, 137, 64, (143,310,0): 186, 143, 64, (143,311,0): 185, 143, 59, (143,312,0): 188, 146, 60, (143,313,0): 190, 151, 60, (143,314,0): 194, 155, 62, (143,315,0): 197, 158, 65, (143,316,0): 199, 160, 69, (143,317,0): 199, 157, 71, (143,318,0): 199, 153, 75, (143,319,0): 197, 151, 76, (143,320,0): 186, 144, 68, (143,321,0): 184, 145, 68, (143,322,0): 184, 146, 71, (143,323,0): 185, 147, 74, (143,324,0): 185, 148, 77, (143,325,0): 187, 150, 80, (143,326,0): 186, 151, 83, (143,327,0): 187, 152, 84, (143,328,0): 190, 155, 91, (143,329,0): 189, 154, 90, (143,330,0): 188, 150, 88, (143,331,0): 183, 144, 85, (143,332,0): 179, 138, 82, (143,333,0): 179, 138, 82, (143,334,0): 184, 141, 88, (143,335,0): 187, 144, 89, (143,336,0): 187, 146, 90, (143,337,0): 187, 147, 88, (143,338,0): 188, 147, 91, (143,339,0): 189, 149, 90, (143,340,0): 192, 147, 90, (143,341,0): 193, 148, 91, (143,342,0): 197, 148, 92, (143,343,0): 197, 148, 92, (143,344,0): 201, 148, 94, (143,345,0): 206, 153, 99, (143,346,0): 214, 157, 104, (143,347,0): 214, 157, 104, (143,348,0): 214, 154, 102, (143,349,0): 216, 156, 102, (143,350,0): 224, 162, 111, (143,351,0): 230, 170, 118, (143,352,0): 224, 169, 115, (143,353,0): 222, 169, 115, (143,354,0): 223, 171, 114, (143,355,0): 224, 172, 115, (143,356,0): 226, 174, 116, (143,357,0): 227, 175, 117, (143,358,0): 227, 177, 116, (143,359,0): 227, 177, 114, (143,360,0): 239, 189, 128, (143,361,0): 234, 184, 123, (143,362,0): 229, 177, 119, (143,363,0): 224, 172, 114, (143,364,0): 223, 171, 113, (143,365,0): 221, 169, 112, (143,366,0): 218, 165, 111, (143,367,0): 213, 164, 108, (143,368,0): 206, 163, 108, (143,369,0): 200, 161, 104, (143,370,0): 196, 157, 102, (143,371,0): 195, 156, 101, (143,372,0): 196, 157, 102, (143,373,0): 196, 157, 102, (143,374,0): 194, 154, 102, (143,375,0): 192, 152, 101, (143,376,0): 190, 150, 99, (143,377,0): 189, 149, 100, (143,378,0): 187, 149, 100, (143,379,0): 186, 148, 101, (143,380,0): 185, 149, 101, (143,381,0): 186, 150, 102, (143,382,0): 184, 150, 104, (143,383,0): 184, 152, 105, (143,384,0): 188, 157, 110, (143,385,0): 187, 159, 111, (143,386,0): 191, 161, 111, (143,387,0): 196, 164, 113, (143,388,0): 203, 168, 114, (143,389,0): 210, 171, 114, (143,390,0): 215, 175, 116, (143,391,0): 218, 177, 115, (143,392,0): 223, 179, 118, (143,393,0): 224, 178, 116, (143,394,0): 223, 177, 115, (143,395,0): 222, 176, 114, (143,396,0): 222, 176, 114, (143,397,0): 222, 178, 115, (143,398,0): 223, 179, 118, (143,399,0): 222, 181, 117, (143,400,0): 225, 181, 116, (143,401,0): 223, 183, 114, (143,402,0): 225, 185, 115, (143,403,0): 227, 187, 117, (143,404,0): 230, 190, 118, (143,405,0): 234, 195, 120, (143,406,0): 239, 197, 121, (143,407,0): 241, 200, 121, (143,408,0): 247, 206, 126, (143,409,0): 247, 206, 126, (143,410,0): 248, 206, 124, (143,411,0): 247, 205, 121, (143,412,0): 245, 203, 117, (143,413,0): 244, 203, 115, (143,414,0): 242, 201, 113, (143,415,0): 241, 200, 110, (143,416,0): 250, 210, 115, (143,417,0): 254, 214, 118, (143,418,0): 255, 217, 121, (143,419,0): 255, 218, 121, (143,420,0): 251, 213, 116, (143,421,0): 247, 209, 112, (143,422,0): 244, 208, 111, (143,423,0): 245, 209, 112, (143,424,0): 251, 216, 116, (143,425,0): 253, 218, 118, (143,426,0): 255, 220, 118, (143,427,0): 255, 222, 120, (143,428,0): 255, 222, 120, (143,429,0): 255, 221, 117, (143,430,0): 254, 219, 115, (143,431,0): 251, 218, 111, (143,432,0): 250, 222, 113, (143,433,0): 247, 221, 110, (143,434,0): 246, 218, 109, (143,435,0): 244, 216, 107, (143,436,0): 247, 216, 108, (143,437,0): 252, 219, 112, (143,438,0): 255, 223, 116, (143,439,0): 255, 226, 121, (143,440,0): 255, 225, 122, (143,441,0): 252, 220, 119, (143,442,0): 244, 214, 116, (143,443,0): 238, 209, 115, (143,444,0): 232, 206, 113, (143,445,0): 225, 200, 108, (143,446,0): 216, 192, 102, (143,447,0): 209, 187, 101, (143,448,0): 206, 189, 109, (143,449,0): 197, 184, 106, (143,450,0): 188, 176, 100, (143,451,0): 181, 171, 99, (143,452,0): 178, 168, 99, (143,453,0): 175, 166, 99, (143,454,0): 172, 162, 100, (143,455,0): 169, 159, 100, (143,456,0): 165, 154, 100, (143,457,0): 162, 150, 98, (143,458,0): 160, 146, 97, (143,459,0): 156, 142, 93, (143,460,0): 156, 140, 91, (143,461,0): 156, 138, 90, (143,462,0): 157, 139, 91, (143,463,0): 160, 139, 92, (143,464,0): 165, 143, 96, (143,465,0): 165, 143, 96, (143,466,0): 166, 144, 97, (143,467,0): 166, 144, 95, (143,468,0): 167, 145, 95, (143,469,0): 168, 146, 96, (143,470,0): 168, 147, 94, (143,471,0): 169, 148, 93, (143,472,0): 173, 152, 97, (143,473,0): 172, 151, 96, (143,474,0): 170, 149, 94, (143,475,0): 167, 148, 92, (143,476,0): 166, 146, 93, (143,477,0): 167, 147, 94, (143,478,0): 169, 149, 96, (143,479,0): 170, 150, 97, (143,480,0): 165, 148, 94, (143,481,0): 164, 149, 92, (143,482,0): 164, 149, 94, (143,483,0): 165, 150, 95, (143,484,0): 167, 152, 97, (143,485,0): 167, 154, 99, (143,486,0): 169, 156, 101, (143,487,0): 171, 158, 103, (143,488,0): 171, 158, 103, (143,489,0): 168, 157, 101, (143,490,0): 165, 154, 98, (143,491,0): 162, 153, 96, (143,492,0): 161, 152, 97, (143,493,0): 163, 154, 99, (143,494,0): 166, 157, 102, (143,495,0): 166, 159, 105, (143,496,0): 164, 158, 110, (143,497,0): 160, 156, 111, (143,498,0): 157, 153, 108, (143,499,0): 154, 150, 105, (143,500,0): 153, 146, 104, (143,501,0): 150, 143, 101, (143,502,0): 149, 142, 100, (143,503,0): 148, 141, 99, (143,504,0): 147, 138, 99, (143,505,0): 147, 138, 99, (143,506,0): 147, 137, 101, (143,507,0): 146, 136, 100, (143,508,0): 146, 133, 98, (143,509,0): 143, 130, 95, (143,510,0): 141, 128, 94, (143,511,0): 140, 125, 92, (143,512,0): 137, 121, 88, (143,513,0): 134, 118, 85, (143,514,0): 129, 113, 80, (143,515,0): 123, 107, 74, (143,516,0): 118, 102, 69, (143,517,0): 115, 99, 66, (143,518,0): 116, 97, 67, (143,519,0): 115, 96, 66, (143,520,0): 113, 92, 65, (143,521,0): 110, 89, 62, (143,522,0): 106, 85, 58, (143,523,0): 104, 82, 58, (143,524,0): 106, 82, 58, (143,525,0): 102, 80, 56, (143,526,0): 100, 76, 52, (143,527,0): 95, 73, 52, (143,528,0): 88, 65, 49, (143,529,0): 88, 65, 51, (143,530,0): 89, 62, 51, (143,531,0): 89, 63, 50, (143,532,0): 89, 62, 51, (143,533,0): 87, 63, 51, (143,534,0): 87, 63, 51, (143,535,0): 86, 62, 50, (143,536,0): 89, 65, 55, (143,537,0): 90, 66, 56, (143,538,0): 90, 67, 59, (143,539,0): 90, 70, 61, (143,540,0): 89, 71, 61, (143,541,0): 89, 71, 61, (143,542,0): 88, 70, 60, (143,543,0): 88, 70, 58, (143,544,0): 86, 66, 55, (143,545,0): 86, 67, 53, (143,546,0): 85, 65, 54, (143,547,0): 84, 64, 53, (143,548,0): 82, 62, 51, (143,549,0): 79, 59, 48, (143,550,0): 76, 56, 45, (143,551,0): 74, 56, 46, (143,552,0): 71, 53, 43, (143,553,0): 70, 51, 44, (143,554,0): 69, 50, 43, (143,555,0): 68, 49, 42, (143,556,0): 68, 49, 43, (143,557,0): 68, 49, 43, (143,558,0): 68, 49, 43, (143,559,0): 68, 49, 45, (143,560,0): 61, 43, 43, (143,561,0): 58, 42, 43, (143,562,0): 57, 41, 44, (143,563,0): 56, 42, 42, (143,564,0): 54, 42, 44, (143,565,0): 54, 44, 43, (143,566,0): 55, 45, 46, (143,567,0): 56, 46, 45, (143,568,0): 55, 45, 46, (143,569,0): 56, 46, 45, (143,570,0): 58, 48, 49, (143,571,0): 61, 49, 49, (143,572,0): 64, 52, 54, (143,573,0): 68, 54, 54, (143,574,0): 70, 55, 58, (143,575,0): 72, 56, 56, (143,576,0): 76, 58, 54, (143,577,0): 78, 59, 53, (143,578,0): 82, 59, 53, (143,579,0): 85, 60, 55, (143,580,0): 88, 60, 56, (143,581,0): 90, 62, 58, (143,582,0): 89, 64, 59, (143,583,0): 89, 66, 60, (143,584,0): 88, 67, 62, (143,585,0): 87, 68, 62, (143,586,0): 88, 69, 63, (143,587,0): 88, 69, 63, (143,588,0): 87, 68, 62, (143,589,0): 85, 66, 59, (143,590,0): 85, 65, 58, (143,591,0): 83, 64, 57, (143,592,0): 81, 62, 56, (143,593,0): 80, 63, 56, (143,594,0): 81, 62, 56, (143,595,0): 79, 62, 55, (143,596,0): 78, 59, 53, (143,597,0): 74, 57, 50, (143,598,0): 73, 54, 48, (143,599,0): 70, 53, 46, (144,0,0): 32, 21, 35, (144,1,0): 32, 21, 35, (144,2,0): 31, 20, 34, (144,3,0): 30, 19, 33, (144,4,0): 29, 18, 32, (144,5,0): 28, 17, 31, (144,6,0): 27, 16, 30, (144,7,0): 24, 16, 29, (144,8,0): 28, 20, 35, (144,9,0): 29, 21, 36, (144,10,0): 31, 23, 38, (144,11,0): 32, 24, 39, (144,12,0): 33, 25, 40, (144,13,0): 34, 26, 41, (144,14,0): 33, 25, 40, (144,15,0): 35, 24, 40, (144,16,0): 40, 26, 41, (144,17,0): 42, 25, 41, (144,18,0): 43, 26, 42, (144,19,0): 43, 26, 42, (144,20,0): 44, 27, 43, (144,21,0): 44, 27, 43, (144,22,0): 45, 28, 44, (144,23,0): 45, 28, 44, (144,24,0): 45, 28, 44, (144,25,0): 45, 28, 44, (144,26,0): 45, 28, 44, (144,27,0): 45, 28, 44, (144,28,0): 45, 28, 44, (144,29,0): 45, 28, 44, (144,30,0): 45, 28, 44, (144,31,0): 45, 28, 44, (144,32,0): 48, 30, 44, (144,33,0): 48, 30, 42, (144,34,0): 48, 30, 44, (144,35,0): 49, 31, 43, (144,36,0): 49, 31, 45, (144,37,0): 50, 32, 44, (144,38,0): 52, 31, 46, (144,39,0): 52, 32, 44, (144,40,0): 53, 32, 47, (144,41,0): 53, 33, 45, (144,42,0): 54, 31, 47, (144,43,0): 54, 32, 45, (144,44,0): 53, 30, 46, (144,45,0): 53, 31, 44, (144,46,0): 54, 30, 46, (144,47,0): 54, 30, 46, (144,48,0): 57, 30, 47, (144,49,0): 57, 30, 47, (144,50,0): 57, 30, 49, (144,51,0): 57, 30, 47, (144,52,0): 57, 30, 49, (144,53,0): 57, 30, 47, (144,54,0): 58, 29, 47, (144,55,0): 58, 29, 47, (144,56,0): 58, 30, 45, (144,57,0): 59, 31, 46, (144,58,0): 60, 32, 46, (144,59,0): 62, 34, 48, (144,60,0): 62, 34, 48, (144,61,0): 62, 34, 48, (144,62,0): 61, 33, 47, (144,63,0): 60, 34, 47, (144,64,0): 56, 32, 45, (144,65,0): 55, 33, 45, (144,66,0): 55, 33, 45, (144,67,0): 55, 33, 45, (144,68,0): 56, 33, 43, (144,69,0): 56, 33, 43, (144,70,0): 56, 33, 43, (144,71,0): 56, 33, 43, (144,72,0): 52, 29, 37, (144,73,0): 52, 29, 37, (144,74,0): 54, 28, 37, (144,75,0): 55, 30, 36, (144,76,0): 55, 29, 38, (144,77,0): 56, 31, 37, (144,78,0): 56, 31, 37, (144,79,0): 58, 31, 38, (144,80,0): 61, 31, 41, (144,81,0): 61, 31, 43, (144,82,0): 61, 31, 43, (144,83,0): 61, 31, 43, (144,84,0): 59, 31, 43, (144,85,0): 59, 31, 43, (144,86,0): 58, 32, 43, (144,87,0): 58, 32, 43, (144,88,0): 57, 31, 42, (144,89,0): 55, 32, 42, (144,90,0): 54, 31, 41, (144,91,0): 52, 29, 39, (144,92,0): 48, 27, 36, (144,93,0): 44, 23, 32, (144,94,0): 40, 20, 29, (144,95,0): 38, 18, 27, (144,96,0): 35, 19, 29, (144,97,0): 36, 20, 30, (144,98,0): 36, 20, 30, (144,99,0): 35, 22, 31, (144,100,0): 36, 20, 30, (144,101,0): 33, 20, 29, (144,102,0): 31, 18, 28, (144,103,0): 30, 17, 27, (144,104,0): 32, 18, 31, (144,105,0): 32, 18, 31, (144,106,0): 31, 17, 30, (144,107,0): 30, 16, 29, (144,108,0): 29, 15, 30, (144,109,0): 28, 14, 27, (144,110,0): 27, 13, 28, (144,111,0): 27, 13, 26, (144,112,0): 30, 16, 29, (144,113,0): 30, 17, 27, (144,114,0): 32, 18, 31, (144,115,0): 32, 19, 29, (144,116,0): 32, 18, 31, (144,117,0): 32, 19, 29, (144,118,0): 30, 16, 29, (144,119,0): 30, 17, 27, (144,120,0): 28, 14, 27, (144,121,0): 28, 15, 25, (144,122,0): 28, 14, 27, (144,123,0): 28, 15, 25, (144,124,0): 28, 14, 27, (144,125,0): 28, 15, 25, (144,126,0): 28, 14, 27, (144,127,0): 28, 15, 25, (144,128,0): 28, 15, 25, (144,129,0): 28, 15, 24, (144,130,0): 29, 16, 25, (144,131,0): 29, 16, 25, (144,132,0): 32, 16, 26, (144,133,0): 32, 17, 24, (144,134,0): 33, 18, 25, (144,135,0): 34, 17, 25, (144,136,0): 36, 19, 27, (144,137,0): 37, 17, 26, (144,138,0): 36, 17, 23, (144,139,0): 36, 17, 23, (144,140,0): 37, 18, 22, (144,141,0): 38, 19, 23, (144,142,0): 40, 19, 24, (144,143,0): 41, 20, 25, (144,144,0): 40, 19, 24, (144,145,0): 41, 20, 25, (144,146,0): 43, 22, 27, (144,147,0): 44, 23, 28, (144,148,0): 45, 24, 29, (144,149,0): 44, 23, 28, (144,150,0): 44, 23, 28, (144,151,0): 43, 23, 25, (144,152,0): 43, 23, 25, (144,153,0): 43, 23, 25, (144,154,0): 43, 23, 25, (144,155,0): 43, 23, 25, (144,156,0): 43, 23, 25, (144,157,0): 43, 23, 25, (144,158,0): 43, 23, 25, (144,159,0): 43, 23, 25, (144,160,0): 44, 22, 24, (144,161,0): 44, 22, 24, (144,162,0): 45, 23, 25, (144,163,0): 45, 23, 25, (144,164,0): 46, 24, 26, (144,165,0): 46, 24, 26, (144,166,0): 47, 25, 27, (144,167,0): 47, 25, 27, (144,168,0): 45, 23, 25, (144,169,0): 45, 23, 25, (144,170,0): 44, 22, 24, (144,171,0): 43, 21, 23, (144,172,0): 42, 20, 22, (144,173,0): 41, 19, 21, (144,174,0): 40, 18, 20, (144,175,0): 40, 18, 21, (144,176,0): 39, 20, 24, (144,177,0): 39, 20, 24, (144,178,0): 39, 20, 24, (144,179,0): 40, 20, 22, (144,180,0): 40, 20, 22, (144,181,0): 40, 20, 22, (144,182,0): 40, 20, 22, (144,183,0): 41, 19, 21, (144,184,0): 44, 22, 24, (144,185,0): 46, 22, 22, (144,186,0): 47, 23, 23, (144,187,0): 47, 23, 23, (144,188,0): 48, 24, 24, (144,189,0): 49, 23, 22, (144,190,0): 50, 24, 23, (144,191,0): 50, 24, 23, (144,192,0): 51, 25, 24, (144,193,0): 50, 26, 24, (144,194,0): 51, 25, 26, (144,195,0): 51, 25, 24, (144,196,0): 51, 25, 24, (144,197,0): 53, 25, 24, (144,198,0): 53, 25, 24, (144,199,0): 53, 25, 22, (144,200,0): 55, 27, 24, (144,201,0): 56, 27, 23, (144,202,0): 57, 28, 24, (144,203,0): 58, 27, 22, (144,204,0): 59, 28, 25, (144,205,0): 59, 28, 23, (144,206,0): 60, 29, 24, (144,207,0): 60, 29, 24, (144,208,0): 60, 27, 22, (144,209,0): 58, 27, 22, (144,210,0): 58, 27, 22, (144,211,0): 58, 27, 22, (144,212,0): 59, 28, 23, (144,213,0): 59, 28, 23, (144,214,0): 58, 29, 23, (144,215,0): 58, 29, 23, (144,216,0): 56, 29, 22, (144,217,0): 56, 29, 22, (144,218,0): 56, 29, 22, (144,219,0): 56, 29, 22, (144,220,0): 56, 29, 22, (144,221,0): 54, 30, 20, (144,222,0): 56, 29, 22, (144,223,0): 56, 29, 20, (144,224,0): 57, 29, 18, (144,225,0): 57, 29, 18, (144,226,0): 56, 28, 17, (144,227,0): 56, 28, 17, (144,228,0): 56, 28, 17, (144,229,0): 58, 30, 19, (144,230,0): 59, 31, 20, (144,231,0): 60, 32, 21, (144,232,0): 57, 29, 18, (144,233,0): 57, 29, 18, (144,234,0): 57, 29, 18, (144,235,0): 56, 28, 17, (144,236,0): 56, 28, 17, (144,237,0): 55, 27, 16, (144,238,0): 55, 27, 16, (144,239,0): 54, 26, 15, (144,240,0): 55, 27, 15, (144,241,0): 55, 27, 15, (144,242,0): 56, 28, 16, (144,243,0): 56, 28, 16, (144,244,0): 56, 28, 16, (144,245,0): 56, 28, 16, (144,246,0): 58, 28, 17, (144,247,0): 58, 28, 17, (144,248,0): 62, 30, 19, (144,249,0): 62, 30, 19, (144,250,0): 62, 30, 19, (144,251,0): 63, 31, 20, (144,252,0): 64, 32, 21, (144,253,0): 65, 33, 22, (144,254,0): 66, 32, 22, (144,255,0): 67, 33, 23, (144,256,0): 71, 37, 27, (144,257,0): 71, 37, 25, (144,258,0): 71, 37, 27, (144,259,0): 71, 37, 27, (144,260,0): 71, 37, 27, (144,261,0): 71, 37, 27, (144,262,0): 71, 37, 28, (144,263,0): 71, 37, 28, (144,264,0): 72, 38, 29, (144,265,0): 72, 38, 29, (144,266,0): 72, 37, 31, (144,267,0): 72, 37, 31, (144,268,0): 72, 37, 31, (144,269,0): 72, 37, 31, (144,270,0): 72, 37, 31, (144,271,0): 72, 37, 31, (144,272,0): 72, 37, 31, (144,273,0): 72, 37, 31, (144,274,0): 72, 37, 31, (144,275,0): 72, 37, 31, (144,276,0): 72, 38, 29, (144,277,0): 72, 38, 29, (144,278,0): 72, 38, 28, (144,279,0): 72, 38, 26, (144,280,0): 76, 42, 30, (144,281,0): 77, 44, 29, (144,282,0): 80, 47, 30, (144,283,0): 83, 50, 33, (144,284,0): 85, 52, 33, (144,285,0): 86, 53, 34, (144,286,0): 87, 54, 35, (144,287,0): 89, 54, 35, (144,288,0): 93, 56, 37, (144,289,0): 94, 56, 37, (144,290,0): 93, 56, 37, (144,291,0): 93, 56, 38, (144,292,0): 93, 56, 38, (144,293,0): 91, 54, 36, (144,294,0): 89, 52, 34, (144,295,0): 88, 51, 33, (144,296,0): 90, 55, 36, (144,297,0): 91, 56, 37, (144,298,0): 93, 58, 39, (144,299,0): 95, 60, 41, (144,300,0): 96, 61, 42, (144,301,0): 98, 63, 43, (144,302,0): 98, 63, 43, (144,303,0): 98, 63, 41, (144,304,0): 105, 71, 46, (144,305,0): 107, 74, 43, (144,306,0): 117, 82, 44, (144,307,0): 134, 96, 51, (144,308,0): 155, 114, 60, (144,309,0): 170, 129, 63, (144,310,0): 180, 136, 61, (144,311,0): 181, 139, 55, (144,312,0): 187, 144, 52, (144,313,0): 193, 150, 55, (144,314,0): 201, 159, 61, (144,315,0): 207, 164, 69, (144,316,0): 208, 164, 75, (144,317,0): 207, 162, 79, (144,318,0): 208, 160, 84, (144,319,0): 208, 162, 87, (144,320,0): 194, 152, 76, (144,321,0): 191, 154, 76, (144,322,0): 190, 152, 77, (144,323,0): 190, 152, 79, (144,324,0): 190, 152, 81, (144,325,0): 190, 151, 84, (144,326,0): 190, 152, 87, (144,327,0): 190, 152, 89, (144,328,0): 191, 152, 93, (144,329,0): 188, 149, 90, (144,330,0): 184, 143, 87, (144,331,0): 181, 140, 84, (144,332,0): 179, 138, 84, (144,333,0): 181, 140, 86, (144,334,0): 184, 143, 87, (144,335,0): 186, 145, 89, (144,336,0): 184, 148, 90, (144,337,0): 184, 149, 91, (144,338,0): 184, 147, 92, (144,339,0): 183, 147, 89, (144,340,0): 185, 144, 88, (144,341,0): 187, 146, 90, (144,342,0): 196, 151, 94, (144,343,0): 200, 155, 98, (144,344,0): 207, 158, 102, (144,345,0): 209, 160, 104, (144,346,0): 214, 162, 105, (144,347,0): 217, 165, 108, (144,348,0): 222, 167, 111, (144,349,0): 225, 170, 113, (144,350,0): 227, 170, 115, (144,351,0): 226, 171, 115, (144,352,0): 218, 169, 113, (144,353,0): 215, 168, 114, (144,354,0): 217, 168, 112, (144,355,0): 218, 169, 113, (144,356,0): 220, 169, 114, (144,357,0): 221, 170, 115, (144,358,0): 224, 171, 117, (144,359,0): 225, 173, 116, (144,360,0): 235, 182, 128, (144,361,0): 234, 181, 127, (144,362,0): 231, 180, 125, (144,363,0): 228, 177, 122, (144,364,0): 223, 174, 118, (144,365,0): 219, 170, 114, (144,366,0): 213, 166, 110, (144,367,0): 208, 166, 108, (144,368,0): 205, 169, 111, (144,369,0): 197, 165, 106, (144,370,0): 194, 159, 103, (144,371,0): 195, 160, 104, (144,372,0): 199, 162, 109, (144,373,0): 200, 160, 108, (144,374,0): 194, 154, 103, (144,375,0): 188, 146, 96, (144,376,0): 189, 147, 99, (144,377,0): 190, 149, 103, (144,378,0): 189, 151, 104, (144,379,0): 186, 149, 104, (144,380,0): 180, 146, 100, (144,381,0): 178, 146, 99, (144,382,0): 180, 149, 103, (144,383,0): 183, 152, 106, (144,384,0): 185, 155, 105, (144,385,0): 188, 156, 105, (144,386,0): 191, 159, 108, (144,387,0): 196, 163, 110, (144,388,0): 202, 167, 113, (144,389,0): 207, 168, 113, (144,390,0): 209, 168, 112, (144,391,0): 211, 169, 111, (144,392,0): 218, 173, 116, (144,393,0): 218, 172, 113, (144,394,0): 217, 171, 111, (144,395,0): 219, 170, 111, (144,396,0): 222, 173, 114, (144,397,0): 226, 177, 118, (144,398,0): 231, 183, 121, (144,399,0): 234, 186, 122, (144,400,0): 239, 190, 123, (144,401,0): 234, 187, 117, (144,402,0): 232, 185, 115, (144,403,0): 234, 187, 115, (144,404,0): 240, 193, 121, (144,405,0): 247, 201, 126, (144,406,0): 248, 204, 129, (144,407,0): 248, 205, 127, (144,408,0): 251, 208, 129, (144,409,0): 250, 207, 128, (144,410,0): 249, 207, 125, (144,411,0): 248, 206, 124, (144,412,0): 247, 207, 122, (144,413,0): 246, 206, 121, (144,414,0): 247, 207, 122, (144,415,0): 248, 207, 119, (144,416,0): 255, 214, 119, (144,417,0): 255, 216, 118, (144,418,0): 255, 216, 118, (144,419,0): 255, 217, 121, (144,420,0): 255, 217, 120, (144,421,0): 250, 214, 118, (144,422,0): 247, 213, 116, (144,423,0): 244, 211, 114, (144,424,0): 247, 217, 119, (144,425,0): 248, 218, 120, (144,426,0): 249, 220, 120, (144,427,0): 251, 222, 122, (144,428,0): 252, 220, 119, (144,429,0): 251, 219, 116, (144,430,0): 250, 217, 114, (144,431,0): 248, 217, 111, (144,432,0): 249, 219, 109, (144,433,0): 247, 220, 107, (144,434,0): 249, 219, 109, (144,435,0): 250, 218, 109, (144,436,0): 252, 220, 111, (144,437,0): 255, 222, 115, (144,438,0): 255, 224, 117, (144,439,0): 255, 226, 121, (144,440,0): 255, 223, 120, (144,441,0): 247, 218, 118, (144,442,0): 239, 211, 112, (144,443,0): 230, 206, 110, (144,444,0): 224, 204, 109, (144,445,0): 218, 202, 107, (144,446,0): 214, 199, 106, (144,447,0): 210, 196, 107, (144,448,0): 199, 186, 107, (144,449,0): 195, 183, 109, (144,450,0): 189, 179, 107, (144,451,0): 183, 173, 102, (144,452,0): 178, 167, 101, (144,453,0): 174, 163, 99, (144,454,0): 172, 160, 100, (144,455,0): 171, 159, 101, (144,456,0): 166, 150, 98, (144,457,0): 167, 151, 99, (144,458,0): 167, 149, 99, (144,459,0): 164, 146, 96, (144,460,0): 159, 141, 91, (144,461,0): 160, 140, 90, (144,462,0): 161, 141, 91, (144,463,0): 163, 143, 93, (144,464,0): 167, 145, 96, (144,465,0): 171, 147, 99, (144,466,0): 174, 150, 102, (144,467,0): 173, 150, 100, (144,468,0): 170, 148, 98, (144,469,0): 169, 147, 97, (144,470,0): 171, 150, 97, (144,471,0): 172, 151, 98, (144,472,0): 172, 152, 99, (144,473,0): 172, 153, 97, (144,474,0): 172, 153, 97, (144,475,0): 170, 153, 97, (144,476,0): 170, 153, 97, (144,477,0): 170, 153, 97, (144,478,0): 170, 153, 97, (144,479,0): 169, 154, 97, (144,480,0): 170, 158, 100, (144,481,0): 170, 158, 98, (144,482,0): 169, 157, 99, (144,483,0): 168, 158, 99, (144,484,0): 169, 159, 100, (144,485,0): 169, 159, 100, (144,486,0): 170, 159, 103, (144,487,0): 170, 161, 104, (144,488,0): 170, 161, 106, (144,489,0): 165, 158, 103, (144,490,0): 161, 154, 99, (144,491,0): 160, 153, 98, (144,492,0): 161, 154, 100, (144,493,0): 160, 155, 100, (144,494,0): 158, 153, 98, (144,495,0): 155, 149, 99, (144,496,0): 165, 158, 114, (144,497,0): 159, 151, 112, (144,498,0): 152, 144, 105, (144,499,0): 146, 138, 99, (144,500,0): 144, 136, 99, (144,501,0): 141, 133, 96, (144,502,0): 138, 130, 93, (144,503,0): 135, 127, 90, (144,504,0): 134, 126, 90, (144,505,0): 135, 127, 91, (144,506,0): 135, 126, 93, (144,507,0): 135, 126, 93, (144,508,0): 135, 124, 92, (144,509,0): 132, 121, 89, (144,510,0): 129, 118, 88, (144,511,0): 130, 116, 87, (144,512,0): 133, 116, 86, (144,513,0): 131, 112, 82, (144,514,0): 126, 107, 77, (144,515,0): 123, 104, 74, (144,516,0): 121, 102, 72, (144,517,0): 118, 99, 69, (144,518,0): 114, 94, 67, (144,519,0): 110, 90, 63, (144,520,0): 105, 85, 60, (144,521,0): 106, 86, 61, (144,522,0): 106, 86, 61, (144,523,0): 105, 85, 61, (144,524,0): 105, 83, 60, (144,525,0): 102, 82, 58, (144,526,0): 101, 79, 56, (144,527,0): 98, 77, 56, (144,528,0): 83, 66, 50, (144,529,0): 81, 63, 49, (144,530,0): 80, 60, 49, (144,531,0): 82, 60, 47, (144,532,0): 83, 61, 50, (144,533,0): 87, 63, 53, (144,534,0): 91, 67, 57, (144,535,0): 94, 70, 60, (144,536,0): 90, 66, 56, (144,537,0): 90, 68, 57, (144,538,0): 88, 68, 57, (144,539,0): 87, 69, 57, (144,540,0): 86, 70, 57, (144,541,0): 82, 68, 55, (144,542,0): 80, 68, 54, (144,543,0): 80, 66, 53, (144,544,0): 82, 62, 51, (144,545,0): 86, 62, 52, (144,546,0): 87, 64, 56, (144,547,0): 87, 64, 56, (144,548,0): 85, 62, 54, (144,549,0): 81, 58, 50, (144,550,0): 76, 53, 45, (144,551,0): 71, 51, 44, (144,552,0): 72, 52, 45, (144,553,0): 71, 50, 45, (144,554,0): 70, 49, 44, (144,555,0): 68, 47, 42, (144,556,0): 67, 48, 44, (144,557,0): 67, 48, 44, (144,558,0): 68, 49, 45, (144,559,0): 68, 49, 45, (144,560,0): 64, 46, 46, (144,561,0): 61, 45, 45, (144,562,0): 60, 44, 45, (144,563,0): 60, 44, 44, (144,564,0): 59, 45, 45, (144,565,0): 60, 46, 45, (144,566,0): 62, 48, 48, (144,567,0): 60, 49, 47, (144,568,0): 66, 54, 54, (144,569,0): 66, 55, 53, (144,570,0): 65, 53, 53, (144,571,0): 65, 54, 52, (144,572,0): 66, 54, 54, (144,573,0): 68, 57, 55, (144,574,0): 70, 58, 58, (144,575,0): 72, 61, 59, (144,576,0): 66, 55, 49, (144,577,0): 78, 61, 53, (144,578,0): 94, 67, 60, (144,579,0): 103, 70, 63, (144,580,0): 109, 72, 64, (144,581,0): 109, 72, 64, (144,582,0): 99, 69, 61, (144,583,0): 90, 65, 58, (144,584,0): 94, 75, 68, (144,585,0): 90, 75, 68, (144,586,0): 89, 74, 69, (144,587,0): 88, 73, 66, (144,588,0): 88, 71, 63, (144,589,0): 87, 70, 60, (144,590,0): 87, 69, 57, (144,591,0): 86, 70, 57, (144,592,0): 85, 68, 60, (144,593,0): 82, 68, 59, (144,594,0): 82, 65, 57, (144,595,0): 78, 64, 55, (144,596,0): 78, 61, 53, (144,597,0): 73, 59, 50, (144,598,0): 74, 57, 49, (144,599,0): 71, 57, 48, (145,0,0): 30, 22, 35, (145,1,0): 30, 22, 35, (145,2,0): 29, 21, 34, (145,3,0): 28, 20, 33, (145,4,0): 27, 19, 32, (145,5,0): 26, 18, 31, (145,6,0): 25, 17, 30, (145,7,0): 25, 17, 30, (145,8,0): 28, 20, 33, (145,9,0): 29, 21, 34, (145,10,0): 31, 23, 36, (145,11,0): 33, 25, 38, (145,12,0): 34, 26, 39, (145,13,0): 34, 26, 39, (145,14,0): 34, 26, 39, (145,15,0): 35, 24, 38, (145,16,0): 40, 26, 41, (145,17,0): 43, 26, 42, (145,18,0): 43, 26, 42, (145,19,0): 44, 27, 43, (145,20,0): 44, 27, 43, (145,21,0): 45, 28, 44, (145,22,0): 45, 28, 44, (145,23,0): 45, 28, 44, (145,24,0): 45, 28, 44, (145,25,0): 45, 28, 44, (145,26,0): 45, 28, 44, (145,27,0): 45, 28, 44, (145,28,0): 45, 28, 44, (145,29,0): 45, 28, 44, (145,30,0): 45, 28, 44, (145,31,0): 45, 29, 42, (145,32,0): 48, 30, 44, (145,33,0): 48, 30, 42, (145,34,0): 48, 30, 42, (145,35,0): 49, 31, 43, (145,36,0): 51, 31, 43, (145,37,0): 52, 32, 44, (145,38,0): 52, 32, 44, (145,39,0): 52, 32, 44, (145,40,0): 54, 32, 45, (145,41,0): 54, 32, 45, (145,42,0): 55, 31, 45, (145,43,0): 55, 31, 45, (145,44,0): 54, 30, 44, (145,45,0): 54, 30, 44, (145,46,0): 56, 29, 44, (145,47,0): 56, 29, 44, (145,48,0): 58, 29, 49, (145,49,0): 58, 29, 49, (145,50,0): 58, 29, 49, (145,51,0): 58, 29, 49, (145,52,0): 58, 29, 49, (145,53,0): 58, 29, 49, (145,54,0): 58, 29, 47, (145,55,0): 58, 29, 47, (145,56,0): 58, 30, 45, (145,57,0): 59, 31, 46, (145,58,0): 60, 32, 46, (145,59,0): 62, 34, 48, (145,60,0): 62, 34, 48, (145,61,0): 62, 34, 48, (145,62,0): 61, 33, 47, (145,63,0): 60, 34, 47, (145,64,0): 55, 33, 45, (145,65,0): 54, 34, 45, (145,66,0): 54, 34, 45, (145,67,0): 54, 34, 45, (145,68,0): 55, 34, 43, (145,69,0): 55, 34, 43, (145,70,0): 55, 34, 43, (145,71,0): 55, 34, 43, (145,72,0): 52, 29, 37, (145,73,0): 52, 29, 37, (145,74,0): 55, 30, 36, (145,75,0): 55, 30, 36, (145,76,0): 56, 31, 37, (145,77,0): 56, 31, 37, (145,78,0): 58, 31, 36, (145,79,0): 60, 31, 36, (145,80,0): 62, 30, 41, (145,81,0): 63, 30, 41, (145,82,0): 62, 30, 41, (145,83,0): 62, 30, 41, (145,84,0): 61, 31, 41, (145,85,0): 61, 31, 41, (145,86,0): 61, 31, 41, (145,87,0): 59, 32, 41, (145,88,0): 58, 32, 41, (145,89,0): 57, 31, 40, (145,90,0): 54, 31, 39, (145,91,0): 53, 30, 38, (145,92,0): 49, 28, 35, (145,93,0): 45, 24, 31, (145,94,0): 42, 21, 28, (145,95,0): 37, 20, 26, (145,96,0): 36, 21, 28, (145,97,0): 34, 21, 30, (145,98,0): 35, 22, 31, (145,99,0): 35, 22, 31, (145,100,0): 35, 22, 31, (145,101,0): 34, 21, 30, (145,102,0): 32, 19, 29, (145,103,0): 31, 18, 28, (145,104,0): 33, 19, 32, (145,105,0): 32, 18, 31, (145,106,0): 31, 17, 32, (145,107,0): 30, 16, 31, (145,108,0): 29, 15, 30, (145,109,0): 28, 14, 29, (145,110,0): 27, 13, 28, (145,111,0): 27, 13, 26, (145,112,0): 32, 16, 29, (145,113,0): 32, 16, 27, (145,114,0): 34, 18, 29, (145,115,0): 34, 18, 29, (145,116,0): 34, 18, 29, (145,117,0): 34, 18, 29, (145,118,0): 32, 16, 27, (145,119,0): 32, 16, 27, (145,120,0): 30, 14, 25, (145,121,0): 30, 14, 25, (145,122,0): 30, 14, 25, (145,123,0): 30, 14, 25, (145,124,0): 30, 14, 25, (145,125,0): 30, 14, 25, (145,126,0): 30, 14, 25, (145,127,0): 30, 14, 25, (145,128,0): 28, 15, 24, (145,129,0): 29, 16, 25, (145,130,0): 31, 15, 25, (145,131,0): 32, 16, 26, (145,132,0): 32, 17, 24, (145,133,0): 33, 18, 25, (145,134,0): 34, 17, 23, (145,135,0): 34, 17, 23, (145,136,0): 38, 19, 25, (145,137,0): 37, 18, 24, (145,138,0): 36, 17, 21, (145,139,0): 36, 17, 21, (145,140,0): 38, 18, 20, (145,141,0): 39, 19, 21, (145,142,0): 41, 21, 23, (145,143,0): 42, 22, 24, (145,144,0): 41, 21, 23, (145,145,0): 42, 22, 24, (145,146,0): 43, 23, 25, (145,147,0): 44, 24, 26, (145,148,0): 45, 25, 27, (145,149,0): 45, 25, 27, (145,150,0): 44, 24, 26, (145,151,0): 43, 23, 25, (145,152,0): 43, 23, 25, (145,153,0): 43, 23, 25, (145,154,0): 43, 23, 25, (145,155,0): 43, 23, 25, (145,156,0): 43, 23, 25, (145,157,0): 43, 23, 25, (145,158,0): 43, 23, 25, (145,159,0): 43, 23, 25, (145,160,0): 44, 22, 24, (145,161,0): 44, 22, 24, (145,162,0): 45, 23, 25, (145,163,0): 45, 23, 25, (145,164,0): 46, 24, 26, (145,165,0): 46, 24, 26, (145,166,0): 47, 25, 27, (145,167,0): 47, 25, 27, (145,168,0): 46, 24, 26, (145,169,0): 45, 23, 25, (145,170,0): 44, 22, 24, (145,171,0): 43, 21, 23, (145,172,0): 42, 20, 22, (145,173,0): 41, 19, 21, (145,174,0): 40, 18, 20, (145,175,0): 39, 19, 20, (145,176,0): 40, 19, 24, (145,177,0): 39, 20, 24, (145,178,0): 40, 20, 22, (145,179,0): 40, 20, 22, (145,180,0): 40, 20, 22, (145,181,0): 40, 20, 22, (145,182,0): 41, 19, 21, (145,183,0): 41, 19, 21, (145,184,0): 46, 22, 22, (145,185,0): 46, 22, 22, (145,186,0): 47, 23, 23, (145,187,0): 47, 23, 23, (145,188,0): 49, 23, 22, (145,189,0): 49, 23, 22, (145,190,0): 50, 24, 23, (145,191,0): 50, 24, 23, (145,192,0): 51, 25, 24, (145,193,0): 51, 25, 24, (145,194,0): 51, 25, 24, (145,195,0): 51, 25, 24, (145,196,0): 53, 25, 24, (145,197,0): 53, 25, 24, (145,198,0): 53, 25, 22, (145,199,0): 53, 25, 22, (145,200,0): 56, 27, 23, (145,201,0): 56, 27, 23, (145,202,0): 57, 26, 21, (145,203,0): 58, 27, 22, (145,204,0): 58, 27, 22, (145,205,0): 59, 28, 23, (145,206,0): 61, 28, 23, (145,207,0): 62, 29, 24, (145,208,0): 60, 27, 22, (145,209,0): 60, 27, 22, (145,210,0): 58, 27, 22, (145,211,0): 58, 27, 22, (145,212,0): 59, 28, 23, (145,213,0): 59, 28, 23, (145,214,0): 58, 29, 23, (145,215,0): 58, 29, 23, (145,216,0): 56, 29, 22, (145,217,0): 56, 29, 22, (145,218,0): 56, 29, 22, (145,219,0): 56, 29, 22, (145,220,0): 54, 29, 22, (145,221,0): 54, 29, 22, (145,222,0): 54, 29, 22, (145,223,0): 54, 30, 20, (145,224,0): 57, 28, 20, (145,225,0): 57, 29, 18, (145,226,0): 56, 28, 17, (145,227,0): 56, 28, 17, (145,228,0): 56, 28, 17, (145,229,0): 57, 29, 18, (145,230,0): 59, 31, 20, (145,231,0): 60, 32, 21, (145,232,0): 57, 29, 18, (145,233,0): 57, 29, 18, (145,234,0): 56, 28, 17, (145,235,0): 56, 28, 17, (145,236,0): 55, 27, 16, (145,237,0): 55, 27, 16, (145,238,0): 55, 27, 16, (145,239,0): 54, 26, 15, (145,240,0): 54, 28, 15, (145,241,0): 54, 28, 15, (145,242,0): 55, 27, 15, (145,243,0): 56, 28, 16, (145,244,0): 56, 28, 16, (145,245,0): 57, 29, 17, (145,246,0): 58, 28, 17, (145,247,0): 58, 28, 17, (145,248,0): 63, 31, 20, (145,249,0): 63, 31, 20, (145,250,0): 63, 31, 20, (145,251,0): 64, 32, 21, (145,252,0): 65, 31, 21, (145,253,0): 65, 31, 21, (145,254,0): 66, 32, 22, (145,255,0): 66, 32, 22, (145,256,0): 71, 37, 25, (145,257,0): 71, 37, 25, (145,258,0): 71, 37, 27, (145,259,0): 71, 37, 27, (145,260,0): 71, 37, 27, (145,261,0): 71, 37, 27, (145,262,0): 71, 37, 28, (145,263,0): 71, 37, 28, (145,264,0): 72, 37, 31, (145,265,0): 72, 37, 31, (145,266,0): 72, 37, 31, (145,267,0): 72, 37, 31, (145,268,0): 72, 37, 33, (145,269,0): 72, 37, 33, (145,270,0): 72, 37, 33, (145,271,0): 72, 37, 33, (145,272,0): 72, 37, 33, (145,273,0): 72, 37, 33, (145,274,0): 72, 37, 33, (145,275,0): 72, 37, 33, (145,276,0): 72, 37, 31, (145,277,0): 72, 38, 29, (145,278,0): 72, 38, 29, (145,279,0): 72, 38, 28, (145,280,0): 76, 42, 30, (145,281,0): 77, 44, 29, (145,282,0): 80, 47, 32, (145,283,0): 83, 50, 33, (145,284,0): 85, 52, 33, (145,285,0): 86, 53, 34, (145,286,0): 87, 54, 35, (145,287,0): 89, 54, 35, (145,288,0): 94, 55, 38, (145,289,0): 96, 54, 38, (145,290,0): 95, 56, 39, (145,291,0): 95, 56, 39, (145,292,0): 94, 55, 38, (145,293,0): 93, 54, 37, (145,294,0): 90, 53, 35, (145,295,0): 89, 52, 34, (145,296,0): 90, 55, 36, (145,297,0): 91, 56, 37, (145,298,0): 92, 57, 38, (145,299,0): 94, 59, 40, (145,300,0): 94, 61, 42, (145,301,0): 95, 62, 43, (145,302,0): 96, 63, 44, (145,303,0): 96, 64, 43, (145,304,0): 103, 68, 46, (145,305,0): 107, 73, 46, (145,306,0): 116, 80, 48, (145,307,0): 130, 92, 53, (145,308,0): 149, 109, 60, (145,309,0): 163, 123, 62, (145,310,0): 176, 134, 62, (145,311,0): 182, 140, 56, (145,312,0): 193, 150, 56, (145,313,0): 199, 155, 56, (145,314,0): 207, 161, 63, (145,315,0): 210, 166, 71, (145,316,0): 210, 164, 76, (145,317,0): 210, 163, 81, (145,318,0): 211, 163, 87, (145,319,0): 209, 165, 92, (145,320,0): 193, 154, 77, (145,321,0): 192, 155, 77, (145,322,0): 191, 153, 78, (145,323,0): 190, 152, 79, (145,324,0): 189, 150, 81, (145,325,0): 189, 150, 83, (145,326,0): 189, 149, 87, (145,327,0): 189, 149, 90, (145,328,0): 188, 147, 91, (145,329,0): 185, 144, 90, (145,330,0): 182, 141, 87, (145,331,0): 179, 138, 84, (145,332,0): 178, 137, 83, (145,333,0): 180, 139, 85, (145,334,0): 183, 142, 88, (145,335,0): 185, 146, 91, (145,336,0): 183, 148, 92, (145,337,0): 182, 150, 93, (145,338,0): 184, 149, 93, (145,339,0): 183, 148, 92, (145,340,0): 183, 147, 89, (145,341,0): 187, 148, 91, (145,342,0): 193, 153, 94, (145,343,0): 199, 157, 99, (145,344,0): 204, 159, 102, (145,345,0): 207, 160, 104, (145,346,0): 212, 163, 105, (145,347,0): 217, 166, 109, (145,348,0): 221, 169, 111, (145,349,0): 223, 171, 113, (145,350,0): 226, 171, 114, (145,351,0): 224, 172, 115, (145,352,0): 218, 169, 113, (145,353,0): 215, 168, 114, (145,354,0): 216, 166, 113, (145,355,0): 215, 165, 112, (145,356,0): 217, 166, 113, (145,357,0): 219, 166, 114, (145,358,0): 221, 168, 116, (145,359,0): 223, 170, 118, (145,360,0): 230, 177, 125, (145,361,0): 230, 177, 125, (145,362,0): 228, 177, 124, (145,363,0): 225, 176, 120, (145,364,0): 221, 174, 118, (145,365,0): 217, 172, 115, (145,366,0): 214, 169, 112, (145,367,0): 209, 169, 110, (145,368,0): 203, 171, 110, (145,369,0): 199, 169, 109, (145,370,0): 196, 164, 105, (145,371,0): 198, 163, 107, (145,372,0): 201, 164, 109, (145,373,0): 201, 161, 109, (145,374,0): 197, 156, 104, (145,375,0): 191, 149, 99, (145,376,0): 190, 148, 100, (145,377,0): 191, 148, 103, (145,378,0): 191, 150, 104, (145,379,0): 187, 149, 104, (145,380,0): 181, 147, 101, (145,381,0): 180, 147, 102, (145,382,0): 182, 151, 105, (145,383,0): 185, 154, 108, (145,384,0): 187, 155, 106, (145,385,0): 190, 157, 104, (145,386,0): 193, 160, 107, (145,387,0): 199, 164, 110, (145,388,0): 204, 167, 114, (145,389,0): 208, 169, 114, (145,390,0): 210, 169, 115, (145,391,0): 212, 169, 114, (145,392,0): 220, 175, 118, (145,393,0): 220, 174, 115, (145,394,0): 221, 172, 114, (145,395,0): 221, 172, 113, (145,396,0): 224, 174, 115, (145,397,0): 228, 178, 117, (145,398,0): 233, 181, 121, (145,399,0): 235, 184, 121, (145,400,0): 239, 189, 120, (145,401,0): 236, 188, 116, (145,402,0): 235, 187, 115, (145,403,0): 237, 190, 118, (145,404,0): 244, 196, 122, (145,405,0): 249, 203, 128, (145,406,0): 252, 206, 129, (145,407,0): 250, 207, 129, (145,408,0): 251, 208, 129, (145,409,0): 250, 209, 127, (145,410,0): 251, 209, 127, (145,411,0): 250, 210, 125, (145,412,0): 249, 209, 124, (145,413,0): 247, 209, 124, (145,414,0): 248, 208, 123, (145,415,0): 248, 209, 118, (145,416,0): 255, 213, 118, (145,417,0): 255, 215, 115, (145,418,0): 255, 216, 118, (145,419,0): 255, 216, 118, (145,420,0): 255, 216, 121, (145,421,0): 250, 216, 119, (145,422,0): 247, 214, 119, (145,423,0): 244, 214, 118, (145,424,0): 241, 213, 116, (145,425,0): 242, 214, 117, (145,426,0): 244, 216, 117, (145,427,0): 246, 218, 118, (145,428,0): 247, 218, 118, (145,429,0): 247, 218, 116, (145,430,0): 248, 216, 113, (145,431,0): 247, 216, 110, (145,432,0): 247, 217, 107, (145,433,0): 249, 217, 106, (145,434,0): 251, 219, 108, (145,435,0): 253, 221, 110, (145,436,0): 255, 221, 113, (145,437,0): 255, 223, 116, (145,438,0): 255, 222, 118, (145,439,0): 255, 224, 121, (145,440,0): 255, 223, 122, (145,441,0): 246, 218, 118, (145,442,0): 236, 210, 113, (145,443,0): 226, 206, 109, (145,444,0): 220, 204, 109, (145,445,0): 215, 202, 108, (145,446,0): 210, 200, 105, (145,447,0): 206, 196, 107, (145,448,0): 196, 187, 108, (145,449,0): 193, 184, 109, (145,450,0): 188, 178, 107, (145,451,0): 183, 173, 104, (145,452,0): 177, 166, 100, (145,453,0): 173, 162, 100, (145,454,0): 172, 157, 98, (145,455,0): 171, 156, 99, (145,456,0): 168, 151, 99, (145,457,0): 169, 152, 100, (145,458,0): 170, 150, 100, (145,459,0): 167, 147, 97, (145,460,0): 162, 142, 92, (145,461,0): 161, 141, 90, (145,462,0): 162, 142, 91, (145,463,0): 165, 143, 93, (145,464,0): 169, 146, 96, (145,465,0): 172, 149, 99, (145,466,0): 176, 150, 101, (145,467,0): 174, 151, 99, (145,468,0): 173, 150, 100, (145,469,0): 171, 150, 97, (145,470,0): 173, 152, 99, (145,471,0): 175, 154, 101, (145,472,0): 175, 154, 101, (145,473,0): 174, 155, 99, (145,474,0): 173, 154, 98, (145,475,0): 171, 154, 98, (145,476,0): 170, 153, 97, (145,477,0): 169, 154, 97, (145,478,0): 168, 153, 96, (145,479,0): 168, 153, 94, (145,480,0): 170, 158, 98, (145,481,0): 169, 159, 98, (145,482,0): 169, 159, 98, (145,483,0): 169, 159, 98, (145,484,0): 168, 159, 100, (145,485,0): 168, 159, 100, (145,486,0): 169, 160, 103, (145,487,0): 169, 160, 103, (145,488,0): 167, 160, 105, (145,489,0): 164, 157, 102, (145,490,0): 160, 155, 100, (145,491,0): 160, 155, 100, (145,492,0): 161, 156, 101, (145,493,0): 161, 156, 101, (145,494,0): 157, 154, 101, (145,495,0): 154, 150, 102, (145,496,0): 162, 155, 113, (145,497,0): 156, 148, 111, (145,498,0): 148, 140, 103, (145,499,0): 142, 134, 97, (145,500,0): 138, 130, 94, (145,501,0): 135, 127, 91, (145,502,0): 131, 123, 87, (145,503,0): 128, 120, 84, (145,504,0): 129, 120, 87, (145,505,0): 130, 121, 88, (145,506,0): 131, 122, 91, (145,507,0): 132, 123, 92, (145,508,0): 131, 122, 91, (145,509,0): 130, 121, 90, (145,510,0): 128, 119, 90, (145,511,0): 128, 117, 87, (145,512,0): 131, 114, 86, (145,513,0): 129, 110, 80, (145,514,0): 125, 106, 76, (145,515,0): 122, 103, 73, (145,516,0): 120, 101, 71, (145,517,0): 118, 99, 69, (145,518,0): 113, 93, 66, (145,519,0): 110, 90, 63, (145,520,0): 106, 86, 61, (145,521,0): 106, 86, 61, (145,522,0): 106, 86, 62, (145,523,0): 105, 85, 61, (145,524,0): 103, 83, 59, (145,525,0): 101, 81, 57, (145,526,0): 98, 78, 54, (145,527,0): 95, 77, 57, (145,528,0): 82, 66, 50, (145,529,0): 79, 65, 52, (145,530,0): 80, 64, 51, (145,531,0): 80, 62, 50, (145,532,0): 82, 62, 51, (145,533,0): 87, 65, 54, (145,534,0): 91, 69, 58, (145,535,0): 94, 70, 60, (145,536,0): 92, 68, 58, (145,537,0): 92, 70, 59, (145,538,0): 90, 70, 59, (145,539,0): 88, 72, 59, (145,540,0): 85, 71, 58, (145,541,0): 82, 70, 56, (145,542,0): 79, 70, 55, (145,543,0): 80, 68, 54, (145,544,0): 86, 63, 55, (145,545,0): 89, 62, 55, (145,546,0): 87, 62, 55, (145,547,0): 86, 61, 54, (145,548,0): 84, 59, 52, (145,549,0): 80, 55, 48, (145,550,0): 76, 53, 47, (145,551,0): 73, 50, 44, (145,552,0): 72, 51, 46, (145,553,0): 71, 50, 45, (145,554,0): 69, 48, 45, (145,555,0): 68, 47, 44, (145,556,0): 66, 47, 43, (145,557,0): 67, 48, 44, (145,558,0): 67, 48, 44, (145,559,0): 67, 49, 45, (145,560,0): 64, 46, 46, (145,561,0): 63, 45, 45, (145,562,0): 61, 45, 45, (145,563,0): 61, 45, 45, (145,564,0): 61, 45, 45, (145,565,0): 63, 47, 47, (145,566,0): 63, 49, 48, (145,567,0): 65, 51, 50, (145,568,0): 67, 56, 54, (145,569,0): 67, 56, 54, (145,570,0): 66, 55, 53, (145,571,0): 65, 54, 52, (145,572,0): 65, 55, 53, (145,573,0): 66, 56, 54, (145,574,0): 68, 58, 56, (145,575,0): 69, 60, 55, (145,576,0): 74, 65, 58, (145,577,0): 80, 66, 57, (145,578,0): 95, 66, 60, (145,579,0): 108, 71, 63, (145,580,0): 115, 72, 65, (145,581,0): 113, 73, 65, (145,582,0): 108, 74, 65, (145,583,0): 104, 77, 68, (145,584,0): 97, 80, 72, (145,585,0): 93, 80, 72, (145,586,0): 92, 79, 73, (145,587,0): 91, 78, 70, (145,588,0): 93, 76, 68, (145,589,0): 92, 76, 63, (145,590,0): 91, 75, 60, (145,591,0): 90, 74, 59, (145,592,0): 87, 73, 62, (145,593,0): 86, 72, 63, (145,594,0): 84, 70, 61, (145,595,0): 80, 66, 57, (145,596,0): 77, 63, 54, (145,597,0): 74, 60, 51, (145,598,0): 71, 57, 48, (145,599,0): 70, 56, 47, (146,0,0): 31, 23, 36, (146,1,0): 31, 23, 36, (146,2,0): 30, 22, 35, (146,3,0): 29, 21, 34, (146,4,0): 28, 20, 33, (146,5,0): 27, 19, 32, (146,6,0): 26, 18, 31, (146,7,0): 26, 18, 31, (146,8,0): 28, 20, 33, (146,9,0): 29, 21, 34, (146,10,0): 31, 23, 36, (146,11,0): 33, 25, 38, (146,12,0): 34, 26, 39, (146,13,0): 34, 26, 39, (146,14,0): 34, 26, 39, (146,15,0): 36, 25, 39, (146,16,0): 41, 27, 42, (146,17,0): 43, 26, 42, (146,18,0): 43, 26, 42, (146,19,0): 44, 27, 43, (146,20,0): 44, 27, 43, (146,21,0): 45, 28, 44, (146,22,0): 45, 28, 44, (146,23,0): 46, 29, 45, (146,24,0): 45, 28, 44, (146,25,0): 45, 28, 44, (146,26,0): 45, 28, 44, (146,27,0): 45, 28, 44, (146,28,0): 45, 28, 44, (146,29,0): 45, 28, 44, (146,30,0): 45, 28, 44, (146,31,0): 45, 29, 42, (146,32,0): 48, 30, 44, (146,33,0): 48, 30, 42, (146,34,0): 48, 30, 42, (146,35,0): 49, 31, 43, (146,36,0): 51, 31, 43, (146,37,0): 52, 32, 44, (146,38,0): 52, 32, 44, (146,39,0): 52, 32, 44, (146,40,0): 53, 31, 44, (146,41,0): 53, 31, 44, (146,42,0): 54, 30, 44, (146,43,0): 54, 30, 44, (146,44,0): 55, 31, 45, (146,45,0): 55, 31, 45, (146,46,0): 57, 30, 45, (146,47,0): 57, 30, 45, (146,48,0): 57, 30, 49, (146,49,0): 57, 30, 49, (146,50,0): 57, 30, 49, (146,51,0): 57, 30, 49, (146,52,0): 57, 30, 47, (146,53,0): 57, 30, 47, (146,54,0): 57, 30, 47, (146,55,0): 57, 30, 47, (146,56,0): 57, 30, 45, (146,57,0): 58, 31, 46, (146,58,0): 59, 33, 46, (146,59,0): 61, 35, 48, (146,60,0): 61, 35, 48, (146,61,0): 61, 35, 48, (146,62,0): 60, 34, 45, (146,63,0): 58, 35, 45, (146,64,0): 55, 33, 45, (146,65,0): 54, 34, 45, (146,66,0): 55, 33, 45, (146,67,0): 55, 33, 45, (146,68,0): 55, 34, 43, (146,69,0): 55, 34, 43, (146,70,0): 56, 33, 41, (146,71,0): 56, 33, 41, (146,72,0): 55, 29, 38, (146,73,0): 55, 29, 38, (146,74,0): 56, 31, 37, (146,75,0): 56, 31, 37, (146,76,0): 58, 31, 36, (146,77,0): 58, 31, 36, (146,78,0): 59, 32, 37, (146,79,0): 61, 32, 37, (146,80,0): 63, 31, 42, (146,81,0): 64, 31, 42, (146,82,0): 63, 31, 42, (146,83,0): 63, 31, 42, (146,84,0): 63, 31, 42, (146,85,0): 62, 32, 42, (146,86,0): 62, 32, 42, (146,87,0): 60, 33, 42, (146,88,0): 59, 33, 42, (146,89,0): 59, 33, 42, (146,90,0): 56, 33, 41, (146,91,0): 54, 31, 39, (146,92,0): 51, 28, 36, (146,93,0): 47, 26, 33, (146,94,0): 44, 23, 30, (146,95,0): 41, 22, 28, (146,96,0): 38, 21, 29, (146,97,0): 38, 23, 30, (146,98,0): 39, 23, 33, (146,99,0): 39, 23, 33, (146,100,0): 38, 22, 32, (146,101,0): 37, 21, 31, (146,102,0): 36, 20, 31, (146,103,0): 35, 19, 30, (146,104,0): 33, 19, 32, (146,105,0): 33, 19, 32, (146,106,0): 32, 18, 31, (146,107,0): 31, 17, 30, (146,108,0): 30, 16, 31, (146,109,0): 29, 15, 30, (146,110,0): 28, 14, 29, (146,111,0): 27, 13, 26, (146,112,0): 32, 16, 29, (146,113,0): 32, 16, 27, (146,114,0): 34, 18, 29, (146,115,0): 34, 18, 29, (146,116,0): 34, 18, 29, (146,117,0): 34, 18, 29, (146,118,0): 32, 16, 27, (146,119,0): 32, 16, 27, (146,120,0): 31, 15, 26, (146,121,0): 31, 15, 26, (146,122,0): 31, 15, 26, (146,123,0): 31, 15, 26, (146,124,0): 31, 15, 26, (146,125,0): 31, 15, 26, (146,126,0): 31, 15, 26, (146,127,0): 31, 15, 26, (146,128,0): 29, 16, 25, (146,129,0): 29, 16, 25, (146,130,0): 31, 15, 25, (146,131,0): 32, 16, 26, (146,132,0): 32, 17, 24, (146,133,0): 33, 18, 25, (146,134,0): 34, 17, 23, (146,135,0): 35, 18, 24, (146,136,0): 38, 19, 25, (146,137,0): 38, 19, 25, (146,138,0): 37, 18, 22, (146,139,0): 37, 18, 22, (146,140,0): 38, 18, 20, (146,141,0): 39, 19, 21, (146,142,0): 41, 21, 23, (146,143,0): 42, 22, 24, (146,144,0): 41, 21, 23, (146,145,0): 42, 22, 24, (146,146,0): 43, 23, 25, (146,147,0): 45, 25, 27, (146,148,0): 45, 25, 27, (146,149,0): 45, 25, 27, (146,150,0): 44, 24, 26, (146,151,0): 44, 24, 26, (146,152,0): 44, 24, 26, (146,153,0): 44, 24, 26, (146,154,0): 44, 24, 26, (146,155,0): 44, 24, 26, (146,156,0): 44, 24, 26, (146,157,0): 44, 24, 26, (146,158,0): 44, 24, 26, (146,159,0): 44, 24, 26, (146,160,0): 44, 22, 24, (146,161,0): 44, 22, 24, (146,162,0): 45, 23, 25, (146,163,0): 45, 23, 25, (146,164,0): 46, 24, 26, (146,165,0): 46, 24, 26, (146,166,0): 47, 25, 27, (146,167,0): 47, 25, 27, (146,168,0): 46, 24, 26, (146,169,0): 46, 24, 26, (146,170,0): 45, 23, 25, (146,171,0): 44, 22, 24, (146,172,0): 43, 21, 23, (146,173,0): 42, 20, 22, (146,174,0): 41, 19, 21, (146,175,0): 39, 19, 20, (146,176,0): 41, 20, 25, (146,177,0): 40, 21, 25, (146,178,0): 41, 21, 23, (146,179,0): 41, 21, 23, (146,180,0): 41, 21, 23, (146,181,0): 41, 21, 23, (146,182,0): 42, 20, 22, (146,183,0): 42, 20, 22, (146,184,0): 46, 22, 22, (146,185,0): 46, 22, 22, (146,186,0): 47, 23, 23, (146,187,0): 47, 23, 23, (146,188,0): 49, 23, 22, (146,189,0): 49, 23, 22, (146,190,0): 50, 24, 23, (146,191,0): 50, 24, 23, (146,192,0): 49, 23, 22, (146,193,0): 49, 23, 22, (146,194,0): 49, 23, 22, (146,195,0): 49, 23, 22, (146,196,0): 51, 23, 22, (146,197,0): 51, 23, 22, (146,198,0): 51, 23, 20, (146,199,0): 51, 23, 20, (146,200,0): 55, 26, 22, (146,201,0): 56, 27, 23, (146,202,0): 57, 26, 21, (146,203,0): 58, 27, 22, (146,204,0): 58, 27, 22, (146,205,0): 59, 28, 23, (146,206,0): 61, 28, 23, (146,207,0): 61, 28, 23, (146,208,0): 61, 28, 23, (146,209,0): 61, 28, 23, (146,210,0): 59, 28, 23, (146,211,0): 59, 28, 23, (146,212,0): 58, 27, 22, (146,213,0): 58, 27, 22, (146,214,0): 57, 28, 22, (146,215,0): 57, 28, 22, (146,216,0): 56, 29, 22, (146,217,0): 56, 29, 22, (146,218,0): 56, 29, 22, (146,219,0): 56, 29, 22, (146,220,0): 54, 29, 22, (146,221,0): 54, 29, 22, (146,222,0): 54, 29, 22, (146,223,0): 54, 30, 20, (146,224,0): 57, 28, 20, (146,225,0): 56, 28, 17, (146,226,0): 55, 27, 16, (146,227,0): 55, 27, 16, (146,228,0): 56, 28, 17, (146,229,0): 57, 29, 18, (146,230,0): 58, 30, 19, (146,231,0): 59, 31, 20, (146,232,0): 57, 29, 18, (146,233,0): 56, 28, 17, (146,234,0): 56, 28, 17, (146,235,0): 56, 28, 17, (146,236,0): 55, 27, 16, (146,237,0): 54, 26, 15, (146,238,0): 54, 26, 15, (146,239,0): 54, 26, 15, (146,240,0): 53, 27, 14, (146,241,0): 54, 28, 15, (146,242,0): 55, 27, 15, (146,243,0): 56, 28, 16, (146,244,0): 56, 28, 16, (146,245,0): 57, 29, 17, (146,246,0): 58, 28, 17, (146,247,0): 59, 29, 18, (146,248,0): 65, 33, 22, (146,249,0): 65, 33, 22, (146,250,0): 65, 33, 22, (146,251,0): 64, 32, 21, (146,252,0): 65, 31, 21, (146,253,0): 65, 31, 21, (146,254,0): 65, 31, 21, (146,255,0): 64, 30, 20, (146,256,0): 71, 37, 25, (146,257,0): 71, 37, 25, (146,258,0): 71, 37, 27, (146,259,0): 71, 37, 27, (146,260,0): 71, 37, 27, (146,261,0): 71, 37, 27, (146,262,0): 71, 37, 28, (146,263,0): 71, 37, 28, (146,264,0): 71, 36, 30, (146,265,0): 71, 36, 30, (146,266,0): 71, 36, 30, (146,267,0): 71, 36, 30, (146,268,0): 71, 36, 32, (146,269,0): 71, 36, 32, (146,270,0): 71, 36, 32, (146,271,0): 71, 36, 32, (146,272,0): 72, 37, 33, (146,273,0): 72, 37, 33, (146,274,0): 72, 37, 33, (146,275,0): 72, 37, 33, (146,276,0): 72, 37, 31, (146,277,0): 72, 38, 29, (146,278,0): 72, 38, 29, (146,279,0): 72, 38, 28, (146,280,0): 76, 42, 30, (146,281,0): 77, 44, 29, (146,282,0): 80, 47, 32, (146,283,0): 83, 50, 33, (146,284,0): 85, 52, 33, (146,285,0): 86, 53, 34, (146,286,0): 87, 54, 35, (146,287,0): 89, 54, 35, (146,288,0): 93, 56, 38, (146,289,0): 95, 56, 39, (146,290,0): 96, 57, 40, (146,291,0): 96, 57, 40, (146,292,0): 96, 57, 40, (146,293,0): 94, 55, 38, (146,294,0): 92, 55, 37, (146,295,0): 91, 54, 36, (146,296,0): 90, 55, 36, (146,297,0): 90, 55, 36, (146,298,0): 89, 56, 37, (146,299,0): 91, 58, 39, (146,300,0): 92, 59, 40, (146,301,0): 94, 61, 42, (146,302,0): 95, 62, 43, (146,303,0): 96, 64, 43, (146,304,0): 101, 66, 44, (146,305,0): 105, 71, 44, (146,306,0): 115, 79, 47, (146,307,0): 126, 88, 49, (146,308,0): 139, 101, 52, (146,309,0): 155, 115, 54, (146,310,0): 172, 130, 58, (146,311,0): 182, 140, 56, (146,312,0): 195, 152, 60, (146,313,0): 199, 157, 59, (146,314,0): 205, 161, 64, (146,315,0): 206, 162, 67, (146,316,0): 206, 160, 72, (146,317,0): 205, 160, 77, (146,318,0): 207, 161, 84, (146,319,0): 207, 163, 90, (146,320,0): 193, 154, 79, (146,321,0): 190, 154, 78, (146,322,0): 189, 153, 79, (146,323,0): 188, 151, 80, (146,324,0): 186, 149, 81, (146,325,0): 185, 147, 82, (146,326,0): 184, 146, 84, (146,327,0): 183, 144, 85, (146,328,0): 181, 142, 87, (146,329,0): 179, 139, 87, (146,330,0): 176, 136, 84, (146,331,0): 174, 134, 82, (146,332,0): 175, 135, 83, (146,333,0): 177, 137, 85, (146,334,0): 181, 141, 89, (146,335,0): 181, 144, 89, (146,336,0): 183, 148, 92, (146,337,0): 182, 150, 93, (146,338,0): 185, 150, 94, (146,339,0): 184, 149, 93, (146,340,0): 185, 149, 91, (146,341,0): 189, 150, 93, (146,342,0): 195, 154, 98, (146,343,0): 200, 157, 102, (146,344,0): 206, 161, 104, (146,345,0): 209, 162, 106, (146,346,0): 214, 165, 107, (146,347,0): 217, 168, 110, (146,348,0): 220, 169, 112, (146,349,0): 222, 171, 114, (146,350,0): 224, 172, 114, (146,351,0): 224, 172, 115, (146,352,0): 220, 169, 114, (146,353,0): 217, 167, 114, (146,354,0): 215, 164, 111, (146,355,0): 213, 160, 108, (146,356,0): 213, 160, 108, (146,357,0): 217, 161, 110, (146,358,0): 219, 164, 110, (146,359,0): 221, 166, 112, (146,360,0): 224, 171, 117, (146,361,0): 225, 172, 118, (146,362,0): 224, 173, 118, (146,363,0): 223, 174, 118, (146,364,0): 219, 174, 117, (146,365,0): 215, 173, 113, (146,366,0): 213, 171, 111, (146,367,0): 210, 172, 110, (146,368,0): 206, 172, 109, (146,369,0): 204, 170, 109, (146,370,0): 203, 169, 108, (146,371,0): 203, 167, 107, (146,372,0): 204, 165, 108, (146,373,0): 202, 161, 107, (146,374,0): 199, 158, 104, (146,375,0): 197, 154, 103, (146,376,0): 192, 149, 98, (146,377,0): 192, 150, 100, (146,378,0): 191, 151, 102, (146,379,0): 188, 150, 103, (146,380,0): 185, 149, 101, (146,381,0): 184, 150, 104, (146,382,0): 185, 153, 106, (146,383,0): 188, 156, 109, (146,384,0): 190, 157, 106, (146,385,0): 194, 158, 106, (146,386,0): 197, 161, 109, (146,387,0): 202, 165, 112, (146,388,0): 206, 169, 116, (146,389,0): 210, 171, 116, (146,390,0): 212, 171, 117, (146,391,0): 214, 171, 116, (146,392,0): 222, 177, 120, (146,393,0): 222, 176, 117, (146,394,0): 223, 174, 116, (146,395,0): 222, 173, 114, (146,396,0): 225, 175, 116, (146,397,0): 228, 176, 116, (146,398,0): 233, 179, 119, (146,399,0): 233, 182, 117, (146,400,0): 236, 187, 120, (146,401,0): 234, 187, 117, (146,402,0): 236, 189, 119, (146,403,0): 238, 194, 121, (146,404,0): 246, 200, 125, (146,405,0): 248, 204, 129, (146,406,0): 251, 208, 130, (146,407,0): 250, 209, 130, (146,408,0): 249, 208, 128, (146,409,0): 249, 211, 128, (146,410,0): 253, 213, 128, (146,411,0): 252, 215, 127, (146,412,0): 252, 215, 127, (146,413,0): 250, 215, 125, (146,414,0): 249, 212, 123, (146,415,0): 248, 212, 118, (146,416,0): 254, 214, 116, (146,417,0): 255, 215, 115, (146,418,0): 255, 216, 118, (146,419,0): 255, 217, 118, (146,420,0): 253, 217, 121, (146,421,0): 251, 217, 120, (146,422,0): 249, 216, 121, (146,423,0): 246, 216, 120, (146,424,0): 238, 210, 113, (146,425,0): 239, 211, 114, (146,426,0): 241, 213, 114, (146,427,0): 242, 214, 114, (146,428,0): 244, 215, 115, (146,429,0): 244, 215, 113, (146,430,0): 245, 213, 110, (146,431,0): 245, 214, 108, (146,432,0): 246, 214, 103, (146,433,0): 250, 217, 104, (146,434,0): 254, 221, 108, (146,435,0): 255, 223, 113, (146,436,0): 255, 224, 116, (146,437,0): 255, 223, 116, (146,438,0): 254, 221, 116, (146,439,0): 252, 219, 116, (146,440,0): 248, 219, 119, (146,441,0): 239, 214, 114, (146,442,0): 231, 207, 111, (146,443,0): 222, 203, 108, (146,444,0): 216, 201, 108, (146,445,0): 213, 200, 108, (146,446,0): 207, 198, 107, (146,447,0): 202, 195, 107, (146,448,0): 197, 188, 109, (146,449,0): 194, 185, 110, (146,450,0): 188, 178, 107, (146,451,0): 182, 172, 103, (146,452,0): 178, 164, 99, (146,453,0): 174, 160, 99, (146,454,0): 172, 156, 97, (146,455,0): 170, 153, 97, (146,456,0): 169, 152, 100, (146,457,0): 170, 153, 101, (146,458,0): 171, 151, 100, (146,459,0): 168, 148, 97, (146,460,0): 165, 143, 93, (146,461,0): 163, 141, 91, (146,462,0): 165, 143, 93, (146,463,0): 167, 146, 93, (146,464,0): 172, 146, 95, (146,465,0): 175, 149, 98, (146,466,0): 178, 150, 100, (146,467,0): 178, 153, 99, (146,468,0): 177, 151, 100, (146,469,0): 175, 152, 98, (146,470,0): 178, 155, 101, (146,471,0): 180, 159, 104, (146,472,0): 178, 157, 102, (146,473,0): 177, 158, 100, (146,474,0): 176, 157, 99, (146,475,0): 172, 156, 97, (146,476,0): 171, 155, 96, (146,477,0): 169, 153, 94, (146,478,0): 168, 152, 93, (146,479,0): 167, 152, 93, (146,480,0): 171, 159, 99, (146,481,0): 170, 160, 99, (146,482,0): 170, 160, 99, (146,483,0): 170, 160, 99, (146,484,0): 169, 160, 101, (146,485,0): 169, 160, 101, (146,486,0): 169, 160, 103, (146,487,0): 168, 159, 102, (146,488,0): 166, 159, 104, (146,489,0): 163, 156, 101, (146,490,0): 160, 155, 100, (146,491,0): 161, 156, 101, (146,492,0): 162, 156, 104, (146,493,0): 162, 156, 104, (146,494,0): 158, 155, 104, (146,495,0): 155, 151, 103, (146,496,0): 157, 150, 108, (146,497,0): 151, 143, 106, (146,498,0): 142, 134, 98, (146,499,0): 136, 128, 92, (146,500,0): 132, 124, 88, (146,501,0): 128, 120, 84, (146,502,0): 124, 115, 82, (146,503,0): 121, 112, 79, (146,504,0): 123, 114, 83, (146,505,0): 124, 115, 84, (146,506,0): 126, 117, 86, (146,507,0): 127, 118, 87, (146,508,0): 127, 118, 89, (146,509,0): 127, 118, 89, (146,510,0): 126, 117, 88, (146,511,0): 127, 116, 86, (146,512,0): 126, 111, 82, (146,513,0): 124, 107, 77, (146,514,0): 120, 103, 73, (146,515,0): 118, 101, 71, (146,516,0): 117, 100, 72, (146,517,0): 115, 98, 70, (146,518,0): 112, 95, 67, (146,519,0): 108, 91, 63, (146,520,0): 106, 89, 63, (146,521,0): 106, 89, 63, (146,522,0): 105, 87, 63, (146,523,0): 104, 86, 62, (146,524,0): 101, 83, 59, (146,525,0): 98, 80, 56, (146,526,0): 95, 77, 55, (146,527,0): 92, 75, 55, (146,528,0): 83, 70, 53, (146,529,0): 81, 68, 52, (146,530,0): 80, 67, 51, (146,531,0): 82, 66, 51, (146,532,0): 84, 66, 52, (146,533,0): 87, 68, 54, (146,534,0): 92, 70, 57, (146,535,0): 94, 72, 59, (146,536,0): 95, 73, 60, (146,537,0): 95, 73, 60, (146,538,0): 94, 75, 61, (146,539,0): 91, 75, 60, (146,540,0): 88, 75, 59, (146,541,0): 85, 73, 57, (146,542,0): 81, 72, 55, (146,543,0): 82, 68, 55, (146,544,0): 86, 66, 57, (146,545,0): 88, 63, 56, (146,546,0): 87, 62, 55, (146,547,0): 84, 59, 52, (146,548,0): 80, 57, 49, (146,549,0): 78, 55, 47, (146,550,0): 75, 52, 46, (146,551,0): 74, 51, 45, (146,552,0): 71, 50, 45, (146,553,0): 70, 49, 44, (146,554,0): 67, 48, 44, (146,555,0): 66, 47, 43, (146,556,0): 66, 47, 43, (146,557,0): 66, 47, 43, (146,558,0): 66, 48, 44, (146,559,0): 66, 48, 44, (146,560,0): 64, 46, 46, (146,561,0): 61, 45, 45, (146,562,0): 61, 45, 45, (146,563,0): 62, 46, 46, (146,564,0): 63, 47, 47, (146,565,0): 65, 49, 49, (146,566,0): 66, 52, 51, (146,567,0): 68, 54, 53, (146,568,0): 69, 58, 56, (146,569,0): 68, 57, 55, (146,570,0): 66, 56, 54, (146,571,0): 65, 55, 53, (146,572,0): 65, 55, 53, (146,573,0): 65, 55, 53, (146,574,0): 66, 56, 54, (146,575,0): 66, 57, 52, (146,576,0): 76, 67, 60, (146,577,0): 80, 66, 57, (146,578,0): 99, 72, 65, (146,579,0): 119, 85, 76, (146,580,0): 127, 87, 79, (146,581,0): 119, 81, 72, (146,582,0): 111, 78, 69, (146,583,0): 109, 85, 75, (146,584,0): 102, 85, 75, (146,585,0): 98, 85, 77, (146,586,0): 98, 85, 79, (146,587,0): 97, 84, 76, (146,588,0): 99, 82, 74, (146,589,0): 98, 82, 69, (146,590,0): 97, 81, 66, (146,591,0): 96, 80, 65, (146,592,0): 93, 79, 70, (146,593,0): 91, 76, 69, (146,594,0): 88, 73, 66, (146,595,0): 84, 69, 62, (146,596,0): 79, 64, 57, (146,597,0): 75, 60, 53, (146,598,0): 72, 57, 50, (146,599,0): 71, 56, 49, (147,0,0): 32, 24, 37, (147,1,0): 32, 24, 37, (147,2,0): 31, 23, 36, (147,3,0): 30, 22, 35, (147,4,0): 29, 21, 34, (147,5,0): 28, 20, 33, (147,6,0): 27, 19, 32, (147,7,0): 27, 19, 32, (147,8,0): 29, 21, 34, (147,9,0): 30, 22, 35, (147,10,0): 32, 24, 37, (147,11,0): 33, 25, 38, (147,12,0): 35, 27, 40, (147,13,0): 35, 27, 40, (147,14,0): 35, 27, 40, (147,15,0): 36, 25, 39, (147,16,0): 41, 27, 42, (147,17,0): 44, 27, 43, (147,18,0): 44, 27, 43, (147,19,0): 44, 27, 43, (147,20,0): 45, 28, 44, (147,21,0): 46, 29, 45, (147,22,0): 46, 29, 45, (147,23,0): 46, 29, 45, (147,24,0): 45, 28, 44, (147,25,0): 45, 28, 44, (147,26,0): 45, 28, 44, (147,27,0): 45, 28, 44, (147,28,0): 45, 28, 44, (147,29,0): 45, 28, 44, (147,30,0): 45, 28, 44, (147,31,0): 45, 29, 42, (147,32,0): 48, 30, 44, (147,33,0): 48, 30, 42, (147,34,0): 48, 30, 42, (147,35,0): 49, 31, 43, (147,36,0): 51, 31, 43, (147,37,0): 52, 32, 44, (147,38,0): 52, 32, 44, (147,39,0): 52, 32, 44, (147,40,0): 53, 31, 44, (147,41,0): 53, 31, 44, (147,42,0): 54, 30, 44, (147,43,0): 54, 30, 44, (147,44,0): 55, 31, 45, (147,45,0): 55, 31, 45, (147,46,0): 57, 30, 45, (147,47,0): 57, 30, 45, (147,48,0): 58, 31, 50, (147,49,0): 58, 31, 50, (147,50,0): 58, 31, 50, (147,51,0): 58, 31, 50, (147,52,0): 58, 31, 48, (147,53,0): 58, 31, 48, (147,54,0): 58, 31, 48, (147,55,0): 58, 31, 46, (147,56,0): 57, 30, 45, (147,57,0): 58, 31, 46, (147,58,0): 59, 33, 46, (147,59,0): 61, 35, 48, (147,60,0): 61, 35, 48, (147,61,0): 61, 35, 48, (147,62,0): 60, 34, 45, (147,63,0): 58, 35, 45, (147,64,0): 55, 33, 45, (147,65,0): 55, 33, 45, (147,66,0): 55, 33, 45, (147,67,0): 55, 33, 45, (147,68,0): 55, 34, 43, (147,69,0): 55, 34, 43, (147,70,0): 56, 33, 41, (147,71,0): 56, 33, 41, (147,72,0): 56, 30, 39, (147,73,0): 56, 31, 37, (147,74,0): 57, 32, 38, (147,75,0): 58, 31, 38, (147,76,0): 59, 32, 37, (147,77,0): 59, 32, 37, (147,78,0): 60, 33, 38, (147,79,0): 62, 33, 38, (147,80,0): 63, 32, 40, (147,81,0): 64, 31, 42, (147,82,0): 63, 31, 42, (147,83,0): 63, 31, 42, (147,84,0): 63, 31, 42, (147,85,0): 63, 31, 42, (147,86,0): 62, 32, 42, (147,87,0): 62, 32, 42, (147,88,0): 61, 34, 43, (147,89,0): 60, 34, 43, (147,90,0): 59, 33, 42, (147,91,0): 56, 33, 41, (147,92,0): 54, 31, 39, (147,93,0): 51, 28, 36, (147,94,0): 48, 25, 33, (147,95,0): 45, 24, 31, (147,96,0): 40, 23, 31, (147,97,0): 41, 24, 32, (147,98,0): 42, 25, 35, (147,99,0): 41, 25, 35, (147,100,0): 41, 24, 34, (147,101,0): 39, 23, 33, (147,102,0): 38, 22, 33, (147,103,0): 37, 21, 32, (147,104,0): 35, 19, 32, (147,105,0): 33, 19, 32, (147,106,0): 32, 18, 31, (147,107,0): 31, 17, 30, (147,108,0): 30, 16, 31, (147,109,0): 29, 15, 30, (147,110,0): 28, 14, 29, (147,111,0): 28, 14, 27, (147,112,0): 32, 16, 29, (147,113,0): 32, 16, 27, (147,114,0): 34, 18, 29, (147,115,0): 34, 18, 29, (147,116,0): 34, 18, 29, (147,117,0): 34, 18, 29, (147,118,0): 32, 16, 27, (147,119,0): 32, 16, 27, (147,120,0): 31, 15, 26, (147,121,0): 31, 15, 26, (147,122,0): 31, 15, 26, (147,123,0): 31, 15, 26, (147,124,0): 31, 15, 26, (147,125,0): 31, 15, 26, (147,126,0): 31, 15, 26, (147,127,0): 31, 15, 26, (147,128,0): 29, 16, 25, (147,129,0): 30, 17, 26, (147,130,0): 32, 16, 26, (147,131,0): 32, 16, 26, (147,132,0): 33, 18, 25, (147,133,0): 34, 19, 26, (147,134,0): 35, 18, 24, (147,135,0): 35, 18, 24, (147,136,0): 39, 20, 26, (147,137,0): 38, 19, 25, (147,138,0): 37, 18, 22, (147,139,0): 37, 18, 22, (147,140,0): 39, 19, 21, (147,141,0): 40, 20, 22, (147,142,0): 41, 21, 23, (147,143,0): 42, 22, 24, (147,144,0): 42, 22, 24, (147,145,0): 43, 23, 25, (147,146,0): 44, 24, 26, (147,147,0): 45, 25, 27, (147,148,0): 46, 26, 28, (147,149,0): 46, 26, 28, (147,150,0): 45, 25, 27, (147,151,0): 44, 24, 26, (147,152,0): 44, 24, 26, (147,153,0): 44, 24, 26, (147,154,0): 44, 24, 26, (147,155,0): 44, 24, 26, (147,156,0): 44, 24, 26, (147,157,0): 44, 24, 26, (147,158,0): 44, 24, 26, (147,159,0): 44, 24, 26, (147,160,0): 44, 22, 24, (147,161,0): 44, 22, 24, (147,162,0): 45, 23, 25, (147,163,0): 45, 23, 25, (147,164,0): 46, 24, 26, (147,165,0): 46, 24, 26, (147,166,0): 47, 25, 27, (147,167,0): 47, 25, 27, (147,168,0): 46, 24, 26, (147,169,0): 46, 24, 26, (147,170,0): 45, 23, 25, (147,171,0): 44, 22, 24, (147,172,0): 43, 21, 23, (147,173,0): 42, 20, 22, (147,174,0): 41, 19, 21, (147,175,0): 40, 20, 21, (147,176,0): 41, 20, 25, (147,177,0): 40, 21, 25, (147,178,0): 41, 21, 23, (147,179,0): 41, 21, 23, (147,180,0): 41, 21, 23, (147,181,0): 41, 21, 23, (147,182,0): 42, 20, 22, (147,183,0): 42, 20, 22, (147,184,0): 46, 22, 22, (147,185,0): 46, 22, 22, (147,186,0): 47, 23, 23, (147,187,0): 47, 23, 23, (147,188,0): 49, 23, 22, (147,189,0): 49, 23, 22, (147,190,0): 50, 24, 23, (147,191,0): 50, 24, 23, (147,192,0): 49, 23, 22, (147,193,0): 49, 23, 22, (147,194,0): 49, 23, 22, (147,195,0): 49, 23, 22, (147,196,0): 51, 23, 22, (147,197,0): 51, 23, 22, (147,198,0): 51, 23, 20, (147,199,0): 51, 23, 20, (147,200,0): 55, 26, 22, (147,201,0): 55, 26, 22, (147,202,0): 56, 25, 20, (147,203,0): 57, 26, 21, (147,204,0): 58, 27, 22, (147,205,0): 58, 27, 22, (147,206,0): 60, 27, 22, (147,207,0): 61, 28, 23, (147,208,0): 61, 28, 23, (147,209,0): 61, 28, 23, (147,210,0): 59, 28, 23, (147,211,0): 59, 28, 23, (147,212,0): 58, 27, 22, (147,213,0): 58, 27, 22, (147,214,0): 57, 28, 22, (147,215,0): 57, 28, 22, (147,216,0): 55, 28, 21, (147,217,0): 55, 28, 21, (147,218,0): 55, 28, 21, (147,219,0): 55, 28, 21, (147,220,0): 53, 28, 21, (147,221,0): 53, 28, 21, (147,222,0): 53, 28, 21, (147,223,0): 53, 29, 19, (147,224,0): 56, 27, 19, (147,225,0): 56, 28, 17, (147,226,0): 55, 27, 16, (147,227,0): 55, 27, 16, (147,228,0): 55, 27, 16, (147,229,0): 57, 29, 18, (147,230,0): 58, 30, 19, (147,231,0): 59, 31, 20, (147,232,0): 56, 28, 17, (147,233,0): 56, 28, 17, (147,234,0): 56, 28, 17, (147,235,0): 55, 27, 16, (147,236,0): 55, 27, 16, (147,237,0): 54, 26, 15, (147,238,0): 54, 26, 15, (147,239,0): 53, 25, 14, (147,240,0): 53, 27, 14, (147,241,0): 53, 27, 14, (147,242,0): 55, 27, 15, (147,243,0): 56, 28, 16, (147,244,0): 56, 28, 16, (147,245,0): 57, 29, 17, (147,246,0): 59, 29, 18, (147,247,0): 59, 29, 18, (147,248,0): 67, 35, 24, (147,249,0): 66, 34, 23, (147,250,0): 66, 34, 23, (147,251,0): 65, 33, 22, (147,252,0): 65, 31, 21, (147,253,0): 65, 31, 21, (147,254,0): 64, 30, 20, (147,255,0): 64, 30, 20, (147,256,0): 71, 37, 25, (147,257,0): 71, 37, 25, (147,258,0): 71, 37, 27, (147,259,0): 71, 37, 27, (147,260,0): 71, 37, 27, (147,261,0): 71, 37, 27, (147,262,0): 71, 37, 28, (147,263,0): 71, 37, 28, (147,264,0): 71, 36, 30, (147,265,0): 71, 36, 30, (147,266,0): 71, 36, 30, (147,267,0): 71, 36, 30, (147,268,0): 71, 36, 32, (147,269,0): 71, 36, 32, (147,270,0): 71, 36, 32, (147,271,0): 71, 36, 32, (147,272,0): 72, 37, 33, (147,273,0): 72, 37, 33, (147,274,0): 72, 37, 33, (147,275,0): 72, 37, 33, (147,276,0): 72, 37, 31, (147,277,0): 72, 38, 29, (147,278,0): 72, 38, 29, (147,279,0): 72, 38, 28, (147,280,0): 76, 42, 30, (147,281,0): 77, 44, 29, (147,282,0): 80, 47, 32, (147,283,0): 83, 50, 33, (147,284,0): 85, 52, 33, (147,285,0): 86, 53, 34, (147,286,0): 87, 54, 35, (147,287,0): 89, 54, 35, (147,288,0): 93, 56, 38, (147,289,0): 95, 56, 39, (147,290,0): 96, 57, 40, (147,291,0): 97, 58, 41, (147,292,0): 97, 58, 41, (147,293,0): 95, 58, 40, (147,294,0): 93, 56, 38, (147,295,0): 93, 56, 38, (147,296,0): 90, 55, 36, (147,297,0): 90, 55, 36, (147,298,0): 89, 56, 37, (147,299,0): 90, 57, 38, (147,300,0): 91, 58, 39, (147,301,0): 93, 60, 41, (147,302,0): 95, 62, 43, (147,303,0): 96, 64, 43, (147,304,0): 99, 64, 42, (147,305,0): 105, 71, 44, (147,306,0): 113, 78, 46, (147,307,0): 121, 86, 48, (147,308,0): 131, 93, 46, (147,309,0): 146, 107, 48, (147,310,0): 165, 125, 55, (147,311,0): 180, 139, 59, (147,312,0): 191, 150, 60, (147,313,0): 195, 152, 58, (147,314,0): 198, 155, 60, (147,315,0): 198, 155, 61, (147,316,0): 196, 152, 65, (147,317,0): 194, 152, 70, (147,318,0): 196, 152, 77, (147,319,0): 197, 155, 81, (147,320,0): 188, 150, 75, (147,321,0): 186, 150, 76, (147,322,0): 185, 148, 77, (147,323,0): 184, 147, 77, (147,324,0): 182, 144, 79, (147,325,0): 179, 141, 78, (147,326,0): 177, 138, 79, (147,327,0): 175, 136, 79, (147,328,0): 174, 134, 82, (147,329,0): 173, 133, 82, (147,330,0): 171, 131, 80, (147,331,0): 171, 131, 80, (147,332,0): 172, 132, 81, (147,333,0): 175, 135, 84, (147,334,0): 178, 138, 87, (147,335,0): 178, 141, 88, (147,336,0): 182, 147, 93, (147,337,0): 182, 150, 93, (147,338,0): 186, 151, 95, (147,339,0): 186, 151, 95, (147,340,0): 186, 150, 92, (147,341,0): 188, 152, 94, (147,342,0): 195, 156, 99, (147,343,0): 200, 159, 103, (147,344,0): 205, 163, 105, (147,345,0): 208, 163, 106, (147,346,0): 212, 166, 107, (147,347,0): 217, 168, 110, (147,348,0): 220, 171, 113, (147,349,0): 222, 171, 114, (147,350,0): 223, 173, 114, (147,351,0): 223, 172, 115, (147,352,0): 220, 169, 114, (147,353,0): 217, 166, 113, (147,354,0): 214, 161, 109, (147,355,0): 211, 158, 106, (147,356,0): 212, 156, 105, (147,357,0): 213, 157, 106, (147,358,0): 215, 160, 106, (147,359,0): 217, 162, 108, (147,360,0): 221, 168, 114, (147,361,0): 221, 170, 115, (147,362,0): 221, 170, 115, (147,363,0): 219, 173, 114, (147,364,0): 217, 172, 113, (147,365,0): 214, 172, 112, (147,366,0): 212, 172, 111, (147,367,0): 210, 172, 109, (147,368,0): 206, 171, 107, (147,369,0): 206, 171, 107, (147,370,0): 209, 171, 108, (147,371,0): 207, 169, 107, (147,372,0): 206, 166, 107, (147,373,0): 204, 162, 104, (147,374,0): 204, 159, 104, (147,375,0): 203, 158, 103, (147,376,0): 197, 151, 99, (147,377,0): 195, 152, 101, (147,378,0): 194, 152, 102, (147,379,0): 192, 152, 101, (147,380,0): 190, 152, 103, (147,381,0): 190, 154, 104, (147,382,0): 190, 156, 108, (147,383,0): 191, 158, 107, (147,384,0): 194, 158, 106, (147,385,0): 198, 161, 108, (147,386,0): 201, 164, 111, (147,387,0): 207, 168, 113, (147,388,0): 210, 171, 116, (147,389,0): 213, 172, 116, (147,390,0): 216, 173, 118, (147,391,0): 218, 173, 116, (147,392,0): 222, 176, 117, (147,393,0): 221, 175, 115, (147,394,0): 222, 173, 114, (147,395,0): 223, 173, 112, (147,396,0): 225, 173, 113, (147,397,0): 226, 175, 112, (147,398,0): 231, 177, 115, (147,399,0): 230, 179, 114, (147,400,0): 231, 184, 116, (147,401,0): 231, 187, 116, (147,402,0): 234, 190, 119, (147,403,0): 237, 195, 121, (147,404,0): 242, 200, 126, (147,405,0): 246, 204, 128, (147,406,0): 248, 207, 128, (147,407,0): 247, 209, 128, (147,408,0): 247, 209, 126, (147,409,0): 249, 213, 127, (147,410,0): 252, 216, 128, (147,411,0): 255, 220, 130, (147,412,0): 255, 220, 128, (147,413,0): 253, 220, 127, (147,414,0): 251, 218, 123, (147,415,0): 250, 216, 119, (147,416,0): 254, 216, 117, (147,417,0): 255, 216, 115, (147,418,0): 255, 216, 118, (147,419,0): 255, 217, 118, (147,420,0): 252, 218, 120, (147,421,0): 250, 217, 120, (147,422,0): 248, 218, 122, (147,423,0): 247, 219, 122, (147,424,0): 241, 213, 116, (147,425,0): 241, 213, 114, (147,426,0): 241, 213, 114, (147,427,0): 241, 213, 113, (147,428,0): 242, 213, 111, (147,429,0): 242, 213, 109, (147,430,0): 243, 211, 108, (147,431,0): 243, 212, 104, (147,432,0): 246, 213, 100, (147,433,0): 250, 217, 102, (147,434,0): 255, 223, 108, (147,435,0): 255, 228, 115, (147,436,0): 255, 227, 117, (147,437,0): 255, 222, 115, (147,438,0): 249, 216, 113, (147,439,0): 244, 212, 111, (147,440,0): 234, 206, 107, (147,441,0): 226, 202, 106, (147,442,0): 220, 197, 103, (147,443,0): 212, 195, 103, (147,444,0): 210, 195, 104, (147,445,0): 207, 196, 106, (147,446,0): 203, 196, 106, (147,447,0): 201, 193, 108, (147,448,0): 197, 188, 109, (147,449,0): 194, 185, 110, (147,450,0): 188, 178, 106, (147,451,0): 182, 172, 101, (147,452,0): 178, 164, 99, (147,453,0): 173, 159, 96, (147,454,0): 171, 155, 96, (147,455,0): 170, 153, 97, (147,456,0): 170, 153, 99, (147,457,0): 171, 154, 100, (147,458,0): 173, 153, 102, (147,459,0): 170, 150, 97, (147,460,0): 167, 145, 95, (147,461,0): 166, 145, 92, (147,462,0): 168, 147, 94, (147,463,0): 171, 148, 94, (147,464,0): 176, 149, 96, (147,465,0): 180, 150, 96, (147,466,0): 182, 152, 98, (147,467,0): 181, 154, 99, (147,468,0): 180, 153, 98, (147,469,0): 181, 156, 100, (147,470,0): 184, 159, 103, (147,471,0): 186, 164, 107, (147,472,0): 183, 161, 104, (147,473,0): 181, 161, 102, (147,474,0): 180, 159, 102, (147,475,0): 176, 157, 98, (147,476,0): 174, 155, 97, (147,477,0): 170, 154, 94, (147,478,0): 168, 152, 92, (147,479,0): 167, 153, 92, (147,480,0): 171, 159, 99, (147,481,0): 171, 161, 100, (147,482,0): 171, 161, 100, (147,483,0): 171, 161, 100, (147,484,0): 170, 161, 102, (147,485,0): 169, 160, 101, (147,486,0): 168, 159, 102, (147,487,0): 165, 159, 101, (147,488,0): 164, 157, 102, (147,489,0): 162, 155, 100, (147,490,0): 160, 155, 100, (147,491,0): 161, 155, 103, (147,492,0): 163, 157, 105, (147,493,0): 162, 156, 106, (147,494,0): 157, 154, 103, (147,495,0): 154, 150, 103, (147,496,0): 150, 142, 103, (147,497,0): 144, 136, 99, (147,498,0): 136, 128, 92, (147,499,0): 131, 123, 87, (147,500,0): 128, 120, 84, (147,501,0): 125, 117, 81, (147,502,0): 122, 113, 80, (147,503,0): 119, 110, 77, (147,504,0): 120, 111, 80, (147,505,0): 121, 112, 81, (147,506,0): 121, 112, 81, (147,507,0): 121, 112, 81, (147,508,0): 121, 112, 83, (147,509,0): 121, 112, 83, (147,510,0): 121, 112, 83, (147,511,0): 122, 111, 83, (147,512,0): 123, 108, 79, (147,513,0): 121, 104, 74, (147,514,0): 117, 100, 70, (147,515,0): 116, 99, 69, (147,516,0): 117, 100, 72, (147,517,0): 115, 98, 70, (147,518,0): 112, 95, 67, (147,519,0): 109, 92, 64, (147,520,0): 108, 91, 65, (147,521,0): 108, 91, 65, (147,522,0): 107, 89, 65, (147,523,0): 105, 87, 63, (147,524,0): 102, 84, 60, (147,525,0): 98, 80, 56, (147,526,0): 95, 77, 55, (147,527,0): 92, 75, 55, (147,528,0): 86, 73, 56, (147,529,0): 84, 72, 56, (147,530,0): 83, 71, 55, (147,531,0): 84, 71, 55, (147,532,0): 87, 71, 56, (147,533,0): 89, 71, 57, (147,534,0): 92, 73, 59, (147,535,0): 94, 75, 61, (147,536,0): 97, 78, 64, (147,537,0): 97, 78, 64, (147,538,0): 96, 78, 64, (147,539,0): 95, 79, 64, (147,540,0): 91, 78, 62, (147,541,0): 89, 76, 60, (147,542,0): 86, 74, 58, (147,543,0): 85, 72, 56, (147,544,0): 90, 70, 61, (147,545,0): 91, 66, 59, (147,546,0): 88, 63, 56, (147,547,0): 84, 59, 52, (147,548,0): 80, 57, 49, (147,549,0): 77, 54, 46, (147,550,0): 75, 52, 46, (147,551,0): 72, 52, 45, (147,552,0): 71, 50, 45, (147,553,0): 70, 49, 44, (147,554,0): 67, 48, 44, (147,555,0): 66, 47, 43, (147,556,0): 65, 46, 42, (147,557,0): 66, 47, 43, (147,558,0): 65, 47, 43, (147,559,0): 66, 48, 44, (147,560,0): 62, 47, 44, (147,561,0): 62, 46, 46, (147,562,0): 63, 47, 47, (147,563,0): 64, 48, 48, (147,564,0): 66, 50, 50, (147,565,0): 67, 53, 52, (147,566,0): 70, 56, 55, (147,567,0): 71, 57, 56, (147,568,0): 71, 60, 58, (147,569,0): 71, 60, 58, (147,570,0): 68, 58, 56, (147,571,0): 67, 57, 55, (147,572,0): 66, 56, 54, (147,573,0): 65, 55, 53, (147,574,0): 65, 55, 53, (147,575,0): 64, 55, 50, (147,576,0): 69, 60, 53, (147,577,0): 76, 62, 53, (147,578,0): 103, 78, 71, (147,579,0): 136, 103, 96, (147,580,0): 145, 106, 99, (147,581,0): 127, 89, 80, (147,582,0): 109, 79, 69, (147,583,0): 106, 82, 72, (147,584,0): 104, 87, 77, (147,585,0): 100, 87, 78, (147,586,0): 100, 87, 79, (147,587,0): 100, 85, 78, (147,588,0): 101, 84, 76, (147,589,0): 101, 84, 74, (147,590,0): 100, 84, 69, (147,591,0): 100, 84, 71, (147,592,0): 95, 81, 72, (147,593,0): 93, 78, 71, (147,594,0): 91, 76, 69, (147,595,0): 87, 72, 65, (147,596,0): 83, 68, 61, (147,597,0): 79, 64, 57, (147,598,0): 77, 62, 55, (147,599,0): 75, 60, 53, (148,0,0): 33, 25, 38, (148,1,0): 33, 25, 38, (148,2,0): 32, 24, 37, (148,3,0): 31, 23, 36, (148,4,0): 30, 22, 35, (148,5,0): 29, 21, 34, (148,6,0): 28, 20, 33, (148,7,0): 28, 20, 33, (148,8,0): 29, 21, 34, (148,9,0): 30, 22, 35, (148,10,0): 32, 24, 37, (148,11,0): 34, 26, 39, (148,12,0): 35, 27, 40, (148,13,0): 35, 27, 40, (148,14,0): 35, 27, 40, (148,15,0): 37, 26, 40, (148,16,0): 42, 28, 43, (148,17,0): 44, 27, 43, (148,18,0): 44, 27, 43, (148,19,0): 45, 28, 44, (148,20,0): 46, 29, 45, (148,21,0): 46, 29, 45, (148,22,0): 46, 29, 45, (148,23,0): 47, 30, 46, (148,24,0): 45, 28, 44, (148,25,0): 45, 28, 44, (148,26,0): 45, 28, 44, (148,27,0): 45, 28, 44, (148,28,0): 45, 28, 44, (148,29,0): 45, 28, 44, (148,30,0): 45, 28, 44, (148,31,0): 45, 29, 42, (148,32,0): 48, 30, 44, (148,33,0): 48, 30, 42, (148,34,0): 48, 30, 42, (148,35,0): 49, 31, 43, (148,36,0): 51, 31, 43, (148,37,0): 52, 32, 44, (148,38,0): 52, 32, 44, (148,39,0): 52, 32, 44, (148,40,0): 52, 30, 43, (148,41,0): 52, 30, 43, (148,42,0): 53, 29, 43, (148,43,0): 54, 30, 44, (148,44,0): 55, 31, 45, (148,45,0): 56, 32, 46, (148,46,0): 58, 31, 46, (148,47,0): 58, 31, 46, (148,48,0): 56, 31, 50, (148,49,0): 56, 31, 50, (148,50,0): 56, 32, 48, (148,51,0): 56, 32, 48, (148,52,0): 56, 32, 48, (148,53,0): 56, 32, 48, (148,54,0): 56, 32, 46, (148,55,0): 56, 32, 46, (148,56,0): 55, 31, 45, (148,57,0): 56, 32, 45, (148,58,0): 57, 33, 46, (148,59,0): 59, 35, 48, (148,60,0): 59, 36, 46, (148,61,0): 59, 36, 46, (148,62,0): 58, 35, 45, (148,63,0): 58, 35, 45, (148,64,0): 56, 33, 43, (148,65,0): 56, 33, 43, (148,66,0): 56, 33, 43, (148,67,0): 56, 33, 43, (148,68,0): 56, 33, 43, (148,69,0): 56, 33, 43, (148,70,0): 58, 32, 41, (148,71,0): 58, 32, 41, (148,72,0): 58, 31, 38, (148,73,0): 58, 31, 38, (148,74,0): 59, 32, 39, (148,75,0): 61, 32, 37, (148,76,0): 62, 33, 38, (148,77,0): 62, 33, 38, (148,78,0): 63, 34, 39, (148,79,0): 63, 34, 39, (148,80,0): 64, 33, 41, (148,81,0): 65, 32, 41, (148,82,0): 65, 32, 41, (148,83,0): 65, 32, 41, (148,84,0): 64, 33, 41, (148,85,0): 64, 33, 41, (148,86,0): 63, 33, 41, (148,87,0): 63, 33, 41, (148,88,0): 64, 34, 42, (148,89,0): 62, 35, 42, (148,90,0): 62, 35, 42, (148,91,0): 60, 35, 41, (148,92,0): 58, 33, 39, (148,93,0): 55, 30, 36, (148,94,0): 53, 28, 34, (148,95,0): 49, 26, 34, (148,96,0): 46, 25, 34, (148,97,0): 45, 25, 34, (148,98,0): 46, 26, 35, (148,99,0): 44, 27, 35, (148,100,0): 46, 26, 37, (148,101,0): 42, 25, 35, (148,102,0): 41, 24, 34, (148,103,0): 39, 23, 33, (148,104,0): 36, 20, 31, (148,105,0): 36, 20, 31, (148,106,0): 35, 19, 32, (148,107,0): 34, 18, 31, (148,108,0): 31, 17, 30, (148,109,0): 30, 16, 29, (148,110,0): 29, 15, 30, (148,111,0): 29, 15, 28, (148,112,0): 32, 16, 29, (148,113,0): 32, 16, 27, (148,114,0): 34, 18, 29, (148,115,0): 34, 18, 29, (148,116,0): 34, 18, 29, (148,117,0): 34, 18, 29, (148,118,0): 32, 16, 27, (148,119,0): 32, 16, 27, (148,120,0): 32, 16, 27, (148,121,0): 32, 16, 27, (148,122,0): 32, 16, 27, (148,123,0): 32, 16, 27, (148,124,0): 32, 16, 27, (148,125,0): 32, 16, 27, (148,126,0): 32, 16, 27, (148,127,0): 32, 16, 27, (148,128,0): 30, 17, 26, (148,129,0): 30, 17, 26, (148,130,0): 32, 16, 26, (148,131,0): 33, 17, 27, (148,132,0): 34, 19, 26, (148,133,0): 34, 19, 26, (148,134,0): 35, 18, 24, (148,135,0): 36, 19, 25, (148,136,0): 39, 20, 26, (148,137,0): 39, 20, 26, (148,138,0): 38, 19, 23, (148,139,0): 38, 19, 23, (148,140,0): 39, 19, 21, (148,141,0): 41, 21, 23, (148,142,0): 42, 22, 24, (148,143,0): 43, 23, 25, (148,144,0): 42, 22, 24, (148,145,0): 43, 23, 25, (148,146,0): 45, 25, 27, (148,147,0): 46, 26, 28, (148,148,0): 46, 26, 28, (148,149,0): 46, 26, 28, (148,150,0): 45, 25, 27, (148,151,0): 45, 25, 27, (148,152,0): 45, 25, 27, (148,153,0): 45, 25, 27, (148,154,0): 45, 25, 27, (148,155,0): 45, 25, 27, (148,156,0): 45, 25, 27, (148,157,0): 45, 25, 27, (148,158,0): 45, 25, 27, (148,159,0): 45, 25, 27, (148,160,0): 44, 22, 24, (148,161,0): 44, 22, 24, (148,162,0): 45, 23, 25, (148,163,0): 45, 23, 25, (148,164,0): 46, 24, 26, (148,165,0): 46, 24, 26, (148,166,0): 47, 25, 27, (148,167,0): 47, 25, 27, (148,168,0): 47, 25, 27, (148,169,0): 47, 25, 27, (148,170,0): 46, 24, 26, (148,171,0): 45, 23, 25, (148,172,0): 44, 22, 24, (148,173,0): 43, 21, 23, (148,174,0): 42, 20, 22, (148,175,0): 41, 21, 22, (148,176,0): 42, 21, 26, (148,177,0): 41, 22, 26, (148,178,0): 42, 22, 24, (148,179,0): 42, 22, 24, (148,180,0): 42, 22, 24, (148,181,0): 42, 22, 24, (148,182,0): 43, 21, 23, (148,183,0): 43, 21, 23, (148,184,0): 46, 22, 22, (148,185,0): 46, 22, 22, (148,186,0): 47, 23, 23, (148,187,0): 47, 23, 23, (148,188,0): 49, 23, 22, (148,189,0): 49, 23, 22, (148,190,0): 50, 24, 23, (148,191,0): 50, 24, 23, (148,192,0): 49, 23, 22, (148,193,0): 49, 23, 22, (148,194,0): 49, 23, 22, (148,195,0): 49, 23, 22, (148,196,0): 51, 23, 22, (148,197,0): 51, 23, 22, (148,198,0): 51, 23, 20, (148,199,0): 51, 23, 20, (148,200,0): 54, 25, 21, (148,201,0): 55, 26, 22, (148,202,0): 56, 25, 20, (148,203,0): 56, 25, 20, (148,204,0): 57, 26, 21, (148,205,0): 58, 27, 22, (148,206,0): 60, 27, 22, (148,207,0): 60, 27, 22, (148,208,0): 62, 29, 24, (148,209,0): 62, 29, 24, (148,210,0): 60, 29, 24, (148,211,0): 59, 28, 23, (148,212,0): 58, 27, 22, (148,213,0): 57, 26, 21, (148,214,0): 56, 27, 21, (148,215,0): 56, 27, 21, (148,216,0): 55, 28, 21, (148,217,0): 55, 28, 21, (148,218,0): 55, 28, 21, (148,219,0): 55, 28, 21, (148,220,0): 53, 28, 21, (148,221,0): 53, 28, 21, (148,222,0): 53, 28, 21, (148,223,0): 53, 29, 19, (148,224,0): 56, 27, 19, (148,225,0): 55, 27, 16, (148,226,0): 54, 26, 15, (148,227,0): 54, 26, 15, (148,228,0): 55, 27, 16, (148,229,0): 56, 28, 17, (148,230,0): 57, 29, 18, (148,231,0): 58, 30, 19, (148,232,0): 56, 28, 17, (148,233,0): 55, 27, 16, (148,234,0): 55, 27, 16, (148,235,0): 54, 26, 15, (148,236,0): 54, 26, 15, (148,237,0): 53, 25, 14, (148,238,0): 53, 25, 14, (148,239,0): 53, 25, 14, (148,240,0): 52, 26, 13, (148,241,0): 52, 26, 13, (148,242,0): 54, 26, 14, (148,243,0): 55, 27, 15, (148,244,0): 57, 29, 17, (148,245,0): 58, 30, 18, (148,246,0): 60, 30, 19, (148,247,0): 60, 30, 19, (148,248,0): 67, 35, 24, (148,249,0): 67, 35, 24, (148,250,0): 66, 34, 23, (148,251,0): 66, 34, 23, (148,252,0): 66, 32, 22, (148,253,0): 65, 31, 21, (148,254,0): 65, 31, 21, (148,255,0): 64, 30, 20, (148,256,0): 70, 38, 25, (148,257,0): 70, 38, 25, (148,258,0): 70, 38, 27, (148,259,0): 70, 38, 27, (148,260,0): 70, 38, 27, (148,261,0): 70, 38, 27, (148,262,0): 70, 37, 28, (148,263,0): 70, 37, 28, (148,264,0): 69, 36, 29, (148,265,0): 69, 36, 29, (148,266,0): 69, 36, 29, (148,267,0): 69, 36, 29, (148,268,0): 69, 36, 31, (148,269,0): 69, 36, 31, (148,270,0): 69, 36, 31, (148,271,0): 69, 36, 31, (148,272,0): 72, 37, 33, (148,273,0): 72, 37, 33, (148,274,0): 72, 37, 33, (148,275,0): 72, 37, 33, (148,276,0): 72, 37, 31, (148,277,0): 72, 38, 29, (148,278,0): 72, 38, 29, (148,279,0): 72, 38, 28, (148,280,0): 76, 42, 30, (148,281,0): 77, 44, 29, (148,282,0): 80, 47, 32, (148,283,0): 83, 50, 33, (148,284,0): 85, 52, 33, (148,285,0): 86, 53, 34, (148,286,0): 87, 54, 35, (148,287,0): 89, 54, 35, (148,288,0): 93, 56, 38, (148,289,0): 94, 55, 38, (148,290,0): 96, 57, 40, (148,291,0): 97, 58, 41, (148,292,0): 96, 59, 41, (148,293,0): 95, 58, 40, (148,294,0): 94, 57, 39, (148,295,0): 92, 57, 38, (148,296,0): 92, 57, 38, (148,297,0): 91, 56, 37, (148,298,0): 89, 56, 37, (148,299,0): 89, 56, 37, (148,300,0): 90, 59, 39, (148,301,0): 93, 62, 42, (148,302,0): 95, 64, 44, (148,303,0): 97, 66, 45, (148,304,0): 96, 64, 41, (148,305,0): 104, 70, 43, (148,306,0): 113, 78, 48, (148,307,0): 118, 83, 45, (148,308,0): 127, 89, 44, (148,309,0): 142, 103, 48, (148,310,0): 162, 121, 55, (148,311,0): 177, 135, 59, (148,312,0): 190, 150, 63, (148,313,0): 194, 153, 61, (148,314,0): 195, 155, 60, (148,315,0): 194, 153, 61, (148,316,0): 191, 150, 62, (148,317,0): 188, 147, 65, (148,318,0): 189, 147, 71, (148,319,0): 189, 150, 75, (148,320,0): 181, 145, 71, (148,321,0): 179, 145, 73, (148,322,0): 178, 144, 73, (148,323,0): 177, 142, 74, (148,324,0): 174, 139, 75, (148,325,0): 171, 135, 73, (148,326,0): 167, 131, 73, (148,327,0): 165, 128, 75, (148,328,0): 167, 130, 78, (148,329,0): 167, 129, 80, (148,330,0): 166, 128, 79, (148,331,0): 166, 128, 79, (148,332,0): 168, 130, 81, (148,333,0): 170, 132, 83, (148,334,0): 173, 135, 86, (148,335,0): 175, 138, 86, (148,336,0): 180, 145, 91, (148,337,0): 181, 148, 94, (148,338,0): 186, 151, 95, (148,339,0): 186, 151, 95, (148,340,0): 187, 150, 95, (148,341,0): 189, 152, 97, (148,342,0): 195, 156, 99, (148,343,0): 200, 159, 103, (148,344,0): 205, 163, 105, (148,345,0): 209, 164, 107, (148,346,0): 211, 166, 109, (148,347,0): 215, 168, 112, (148,348,0): 217, 171, 112, (148,349,0): 220, 171, 113, (148,350,0): 220, 171, 113, (148,351,0): 221, 170, 113, (148,352,0): 219, 168, 113, (148,353,0): 217, 164, 112, (148,354,0): 216, 160, 109, (148,355,0): 213, 157, 106, (148,356,0): 212, 155, 102, (148,357,0): 212, 155, 102, (148,358,0): 214, 157, 104, (148,359,0): 214, 159, 105, (148,360,0): 220, 168, 111, (148,361,0): 220, 169, 112, (148,362,0): 221, 170, 113, (148,363,0): 218, 172, 112, (148,364,0): 216, 172, 111, (148,365,0): 213, 172, 110, (148,366,0): 210, 170, 108, (148,367,0): 208, 170, 105, (148,368,0): 208, 169, 104, (148,369,0): 209, 170, 105, (148,370,0): 211, 170, 106, (148,371,0): 211, 170, 106, (148,372,0): 211, 167, 106, (148,373,0): 210, 166, 105, (148,374,0): 209, 163, 104, (148,375,0): 209, 162, 106, (148,376,0): 204, 157, 103, (148,377,0): 201, 156, 101, (148,378,0): 198, 155, 102, (148,379,0): 196, 155, 103, (148,380,0): 196, 156, 105, (148,381,0): 195, 158, 106, (148,382,0): 196, 159, 107, (148,383,0): 196, 159, 107, (148,384,0): 198, 161, 108, (148,385,0): 202, 163, 108, (148,386,0): 206, 167, 112, (148,387,0): 211, 170, 116, (148,388,0): 214, 173, 119, (148,389,0): 217, 174, 119, (148,390,0): 218, 176, 118, (148,391,0): 221, 176, 117, (148,392,0): 220, 174, 115, (148,393,0): 221, 172, 113, (148,394,0): 222, 172, 111, (148,395,0): 222, 172, 109, (148,396,0): 224, 173, 110, (148,397,0): 226, 175, 110, (148,398,0): 229, 175, 111, (148,399,0): 228, 177, 112, (148,400,0): 227, 182, 114, (148,401,0): 229, 186, 117, (148,402,0): 233, 191, 119, (148,403,0): 234, 195, 120, (148,404,0): 238, 199, 124, (148,405,0): 240, 203, 125, (148,406,0): 242, 205, 125, (148,407,0): 244, 207, 126, (148,408,0): 247, 211, 125, (148,409,0): 248, 214, 125, (148,410,0): 252, 219, 126, (148,411,0): 254, 224, 128, (148,412,0): 255, 225, 127, (148,413,0): 254, 224, 126, (148,414,0): 253, 224, 124, (148,415,0): 253, 221, 120, (148,416,0): 254, 219, 117, (148,417,0): 255, 219, 115, (148,418,0): 255, 217, 116, (148,419,0): 253, 218, 118, (148,420,0): 250, 218, 119, (148,421,0): 248, 219, 119, (148,422,0): 248, 218, 120, (148,423,0): 247, 219, 120, (148,424,0): 247, 219, 120, (148,425,0): 244, 219, 119, (148,426,0): 242, 217, 117, (148,427,0): 243, 215, 115, (148,428,0): 242, 213, 111, (148,429,0): 241, 212, 108, (148,430,0): 241, 212, 108, (148,431,0): 242, 211, 103, (148,432,0): 246, 213, 98, (148,433,0): 253, 218, 102, (148,434,0): 255, 224, 110, (148,435,0): 255, 228, 116, (148,436,0): 255, 226, 116, (148,437,0): 253, 219, 112, (148,438,0): 243, 210, 107, (148,439,0): 233, 204, 104, (148,440,0): 218, 192, 95, (148,441,0): 212, 189, 95, (148,442,0): 206, 185, 94, (148,443,0): 202, 186, 98, (148,444,0): 203, 189, 101, (148,445,0): 202, 192, 105, (148,446,0): 199, 193, 107, (148,447,0): 199, 193, 109, (148,448,0): 196, 187, 108, (148,449,0): 195, 183, 109, (148,450,0): 190, 178, 106, (148,451,0): 184, 171, 101, (148,452,0): 180, 165, 100, (148,453,0): 175, 159, 97, (148,454,0): 175, 156, 98, (148,455,0): 173, 154, 98, (148,456,0): 173, 154, 98, (148,457,0): 175, 156, 100, (148,458,0): 175, 154, 101, (148,459,0): 173, 152, 97, (148,460,0): 171, 148, 96, (148,461,0): 170, 147, 93, (148,462,0): 172, 149, 95, (148,463,0): 176, 151, 95, (148,464,0): 182, 153, 97, (148,465,0): 185, 154, 99, (148,466,0): 186, 155, 100, (148,467,0): 185, 156, 100, (148,468,0): 185, 156, 100, (148,469,0): 185, 159, 102, (148,470,0): 189, 163, 106, (148,471,0): 192, 167, 110, (148,472,0): 187, 165, 107, (148,473,0): 185, 165, 104, (148,474,0): 183, 163, 104, (148,475,0): 179, 161, 99, (148,476,0): 177, 158, 99, (148,477,0): 174, 156, 94, (148,478,0): 170, 154, 92, (148,479,0): 168, 154, 91, (148,480,0): 172, 161, 99, (148,481,0): 172, 162, 100, (148,482,0): 172, 164, 102, (148,483,0): 172, 164, 102, (148,484,0): 171, 162, 103, (148,485,0): 169, 160, 101, (148,486,0): 166, 160, 102, (148,487,0): 164, 157, 102, (148,488,0): 163, 156, 102, (148,489,0): 161, 156, 101, (148,490,0): 160, 154, 102, (148,491,0): 161, 155, 103, (148,492,0): 160, 157, 106, (148,493,0): 159, 155, 107, (148,494,0): 155, 151, 103, (148,495,0): 152, 148, 101, (148,496,0): 141, 136, 96, (148,497,0): 135, 129, 93, (148,498,0): 129, 123, 87, (148,499,0): 125, 119, 83, (148,500,0): 124, 118, 84, (148,501,0): 123, 117, 83, (148,502,0): 121, 115, 81, (148,503,0): 119, 113, 79, (148,504,0): 118, 112, 80, (148,505,0): 117, 111, 79, (148,506,0): 116, 109, 80, (148,507,0): 115, 108, 79, (148,508,0): 114, 107, 78, (148,509,0): 113, 106, 77, (148,510,0): 112, 105, 77, (148,511,0): 114, 105, 76, (148,512,0): 119, 105, 76, (148,513,0): 117, 102, 71, (148,514,0): 114, 99, 70, (148,515,0): 114, 99, 70, (148,516,0): 116, 101, 72, (148,517,0): 115, 100, 71, (148,518,0): 113, 97, 71, (148,519,0): 110, 94, 68, (148,520,0): 109, 93, 68, (148,521,0): 108, 92, 67, (148,522,0): 107, 91, 66, (148,523,0): 105, 89, 64, (148,524,0): 102, 86, 63, (148,525,0): 99, 83, 60, (148,526,0): 96, 80, 57, (148,527,0): 93, 78, 57, (148,528,0): 89, 78, 60, (148,529,0): 87, 78, 61, (148,530,0): 86, 77, 60, (148,531,0): 88, 76, 60, (148,532,0): 90, 77, 61, (148,533,0): 93, 77, 62, (148,534,0): 94, 78, 63, (148,535,0): 95, 77, 63, (148,536,0): 99, 81, 67, (148,537,0): 99, 81, 67, (148,538,0): 100, 82, 68, (148,539,0): 98, 82, 67, (148,540,0): 95, 82, 66, (148,541,0): 93, 80, 64, (148,542,0): 90, 78, 62, (148,543,0): 90, 77, 61, (148,544,0): 95, 75, 66, (148,545,0): 96, 71, 64, (148,546,0): 91, 68, 60, (148,547,0): 87, 64, 56, (148,548,0): 82, 59, 51, (148,549,0): 79, 56, 48, (148,550,0): 75, 55, 48, (148,551,0): 74, 54, 47, (148,552,0): 71, 50, 45, (148,553,0): 69, 50, 44, (148,554,0): 68, 49, 45, (148,555,0): 66, 47, 43, (148,556,0): 65, 47, 43, (148,557,0): 65, 47, 43, (148,558,0): 66, 48, 44, (148,559,0): 66, 48, 44, (148,560,0): 65, 50, 47, (148,561,0): 65, 50, 47, (148,562,0): 65, 50, 47, (148,563,0): 66, 51, 48, (148,564,0): 67, 53, 50, (148,565,0): 69, 55, 52, (148,566,0): 72, 58, 55, (148,567,0): 71, 60, 56, (148,568,0): 73, 62, 58, (148,569,0): 73, 62, 58, (148,570,0): 71, 62, 57, (148,571,0): 70, 61, 56, (148,572,0): 67, 60, 54, (148,573,0): 66, 59, 53, (148,574,0): 64, 57, 51, (148,575,0): 63, 56, 50, (148,576,0): 65, 58, 50, (148,577,0): 74, 61, 52, (148,578,0): 103, 80, 72, (148,579,0): 136, 106, 98, (148,580,0): 146, 109, 101, (148,581,0): 126, 92, 83, (148,582,0): 108, 79, 71, (148,583,0): 103, 81, 70, (148,584,0): 102, 85, 75, (148,585,0): 99, 86, 77, (148,586,0): 100, 85, 78, (148,587,0): 100, 85, 78, (148,588,0): 101, 84, 76, (148,589,0): 101, 84, 74, (148,590,0): 99, 85, 72, (148,591,0): 99, 85, 72, (148,592,0): 94, 80, 71, (148,593,0): 93, 78, 71, (148,594,0): 92, 77, 70, (148,595,0): 89, 74, 67, (148,596,0): 86, 71, 64, (148,597,0): 84, 69, 62, (148,598,0): 82, 67, 60, (148,599,0): 81, 66, 59, (149,0,0): 34, 26, 39, (149,1,0): 34, 26, 39, (149,2,0): 33, 25, 38, (149,3,0): 32, 24, 37, (149,4,0): 31, 23, 36, (149,5,0): 30, 22, 35, (149,6,0): 29, 21, 34, (149,7,0): 29, 21, 34, (149,8,0): 30, 22, 35, (149,9,0): 31, 23, 36, (149,10,0): 33, 25, 38, (149,11,0): 35, 27, 40, (149,12,0): 36, 28, 41, (149,13,0): 36, 28, 41, (149,14,0): 36, 28, 41, (149,15,0): 37, 26, 40, (149,16,0): 42, 28, 43, (149,17,0): 45, 28, 44, (149,18,0): 45, 28, 44, (149,19,0): 46, 29, 45, (149,20,0): 46, 29, 45, (149,21,0): 47, 30, 46, (149,22,0): 47, 30, 46, (149,23,0): 47, 30, 46, (149,24,0): 45, 28, 44, (149,25,0): 45, 28, 44, (149,26,0): 45, 28, 44, (149,27,0): 45, 28, 44, (149,28,0): 45, 28, 44, (149,29,0): 45, 28, 44, (149,30,0): 45, 28, 44, (149,31,0): 45, 29, 42, (149,32,0): 48, 30, 44, (149,33,0): 48, 30, 42, (149,34,0): 48, 30, 42, (149,35,0): 49, 31, 43, (149,36,0): 51, 31, 43, (149,37,0): 52, 32, 44, (149,38,0): 52, 32, 44, (149,39,0): 52, 32, 44, (149,40,0): 51, 29, 42, (149,41,0): 51, 29, 42, (149,42,0): 53, 29, 43, (149,43,0): 54, 30, 44, (149,44,0): 55, 31, 45, (149,45,0): 56, 32, 46, (149,46,0): 59, 32, 47, (149,47,0): 59, 32, 47, (149,48,0): 57, 33, 49, (149,49,0): 57, 32, 51, (149,50,0): 57, 33, 49, (149,51,0): 57, 33, 49, (149,52,0): 57, 33, 49, (149,53,0): 57, 33, 47, (149,54,0): 57, 33, 47, (149,55,0): 57, 33, 47, (149,56,0): 55, 31, 44, (149,57,0): 56, 32, 45, (149,58,0): 57, 33, 46, (149,59,0): 59, 36, 46, (149,60,0): 59, 36, 46, (149,61,0): 59, 36, 46, (149,62,0): 58, 35, 45, (149,63,0): 58, 35, 45, (149,64,0): 56, 33, 43, (149,65,0): 56, 33, 43, (149,66,0): 56, 33, 43, (149,67,0): 56, 33, 43, (149,68,0): 56, 33, 43, (149,69,0): 58, 32, 41, (149,70,0): 58, 32, 41, (149,71,0): 58, 33, 39, (149,72,0): 59, 32, 39, (149,73,0): 59, 32, 39, (149,74,0): 62, 33, 38, (149,75,0): 62, 33, 38, (149,76,0): 63, 34, 39, (149,77,0): 63, 34, 39, (149,78,0): 64, 35, 40, (149,79,0): 65, 34, 40, (149,80,0): 65, 32, 41, (149,81,0): 65, 32, 41, (149,82,0): 65, 32, 41, (149,83,0): 65, 32, 41, (149,84,0): 64, 33, 41, (149,85,0): 64, 33, 41, (149,86,0): 64, 33, 41, (149,87,0): 63, 33, 41, (149,88,0): 66, 36, 44, (149,89,0): 66, 36, 44, (149,90,0): 66, 36, 44, (149,91,0): 63, 36, 43, (149,92,0): 61, 34, 41, (149,93,0): 59, 32, 39, (149,94,0): 56, 29, 36, (149,95,0): 54, 29, 35, (149,96,0): 49, 26, 34, (149,97,0): 48, 27, 36, (149,98,0): 49, 28, 37, (149,99,0): 49, 28, 37, (149,100,0): 49, 27, 39, (149,101,0): 46, 26, 37, (149,102,0): 45, 25, 36, (149,103,0): 42, 25, 35, (149,104,0): 38, 20, 32, (149,105,0): 36, 20, 31, (149,106,0): 35, 19, 32, (149,107,0): 34, 18, 31, (149,108,0): 31, 17, 30, (149,109,0): 30, 16, 29, (149,110,0): 29, 15, 30, (149,111,0): 29, 15, 28, (149,112,0): 32, 16, 27, (149,113,0): 32, 16, 27, (149,114,0): 34, 18, 29, (149,115,0): 34, 18, 29, (149,116,0): 34, 18, 29, (149,117,0): 34, 18, 29, (149,118,0): 32, 16, 27, (149,119,0): 32, 16, 27, (149,120,0): 32, 16, 27, (149,121,0): 32, 16, 27, (149,122,0): 32, 16, 27, (149,123,0): 32, 16, 27, (149,124,0): 32, 16, 27, (149,125,0): 32, 16, 27, (149,126,0): 32, 16, 27, (149,127,0): 32, 16, 27, (149,128,0): 30, 17, 26, (149,129,0): 31, 18, 27, (149,130,0): 33, 17, 27, (149,131,0): 34, 18, 28, (149,132,0): 34, 19, 26, (149,133,0): 35, 20, 27, (149,134,0): 36, 19, 25, (149,135,0): 36, 19, 25, (149,136,0): 40, 21, 27, (149,137,0): 39, 20, 26, (149,138,0): 38, 19, 23, (149,139,0): 38, 19, 23, (149,140,0): 40, 20, 22, (149,141,0): 41, 21, 23, (149,142,0): 42, 22, 24, (149,143,0): 43, 23, 25, (149,144,0): 43, 23, 25, (149,145,0): 44, 24, 26, (149,146,0): 45, 25, 27, (149,147,0): 46, 26, 28, (149,148,0): 47, 27, 29, (149,149,0): 47, 27, 29, (149,150,0): 46, 26, 28, (149,151,0): 45, 25, 27, (149,152,0): 45, 25, 27, (149,153,0): 45, 25, 27, (149,154,0): 45, 25, 27, (149,155,0): 45, 25, 27, (149,156,0): 45, 25, 27, (149,157,0): 45, 25, 27, (149,158,0): 45, 25, 27, (149,159,0): 45, 25, 27, (149,160,0): 44, 22, 24, (149,161,0): 44, 22, 24, (149,162,0): 45, 23, 25, (149,163,0): 45, 23, 25, (149,164,0): 46, 24, 26, (149,165,0): 46, 24, 26, (149,166,0): 47, 25, 27, (149,167,0): 47, 25, 27, (149,168,0): 48, 26, 28, (149,169,0): 47, 25, 27, (149,170,0): 46, 24, 26, (149,171,0): 45, 23, 25, (149,172,0): 44, 22, 24, (149,173,0): 43, 21, 23, (149,174,0): 42, 20, 22, (149,175,0): 41, 21, 22, (149,176,0): 42, 21, 26, (149,177,0): 41, 22, 26, (149,178,0): 42, 22, 24, (149,179,0): 42, 22, 24, (149,180,0): 42, 22, 24, (149,181,0): 42, 22, 24, (149,182,0): 43, 21, 23, (149,183,0): 43, 21, 23, (149,184,0): 46, 22, 22, (149,185,0): 46, 22, 22, (149,186,0): 47, 23, 23, (149,187,0): 47, 23, 23, (149,188,0): 49, 23, 22, (149,189,0): 49, 23, 22, (149,190,0): 50, 24, 23, (149,191,0): 50, 24, 23, (149,192,0): 49, 23, 22, (149,193,0): 49, 23, 22, (149,194,0): 49, 23, 22, (149,195,0): 49, 23, 22, (149,196,0): 51, 23, 22, (149,197,0): 51, 23, 22, (149,198,0): 51, 23, 20, (149,199,0): 51, 23, 20, (149,200,0): 54, 25, 21, (149,201,0): 54, 25, 21, (149,202,0): 55, 24, 19, (149,203,0): 56, 25, 20, (149,204,0): 56, 25, 20, (149,205,0): 57, 26, 21, (149,206,0): 59, 26, 21, (149,207,0): 60, 27, 22, (149,208,0): 63, 30, 25, (149,209,0): 63, 30, 25, (149,210,0): 60, 29, 24, (149,211,0): 59, 28, 23, (149,212,0): 58, 27, 22, (149,213,0): 57, 26, 21, (149,214,0): 55, 26, 20, (149,215,0): 55, 26, 20, (149,216,0): 54, 27, 20, (149,217,0): 54, 27, 20, (149,218,0): 54, 27, 20, (149,219,0): 54, 27, 20, (149,220,0): 52, 27, 20, (149,221,0): 52, 27, 20, (149,222,0): 52, 27, 20, (149,223,0): 52, 28, 18, (149,224,0): 55, 26, 18, (149,225,0): 55, 27, 16, (149,226,0): 54, 26, 15, (149,227,0): 54, 26, 15, (149,228,0): 54, 26, 15, (149,229,0): 55, 27, 16, (149,230,0): 57, 29, 18, (149,231,0): 58, 30, 19, (149,232,0): 55, 27, 16, (149,233,0): 55, 27, 16, (149,234,0): 55, 27, 16, (149,235,0): 54, 26, 15, (149,236,0): 53, 25, 14, (149,237,0): 53, 25, 14, (149,238,0): 53, 25, 14, (149,239,0): 52, 24, 13, (149,240,0): 51, 25, 12, (149,241,0): 52, 26, 13, (149,242,0): 54, 26, 14, (149,243,0): 55, 27, 15, (149,244,0): 57, 29, 17, (149,245,0): 58, 30, 18, (149,246,0): 60, 30, 19, (149,247,0): 61, 31, 20, (149,248,0): 67, 35, 24, (149,249,0): 66, 34, 23, (149,250,0): 66, 34, 23, (149,251,0): 66, 34, 23, (149,252,0): 67, 33, 23, (149,253,0): 66, 32, 22, (149,254,0): 66, 32, 22, (149,255,0): 66, 32, 22, (149,256,0): 70, 38, 25, (149,257,0): 70, 38, 25, (149,258,0): 70, 38, 27, (149,259,0): 70, 38, 27, (149,260,0): 70, 38, 27, (149,261,0): 70, 38, 27, (149,262,0): 70, 37, 28, (149,263,0): 70, 37, 28, (149,264,0): 69, 36, 29, (149,265,0): 69, 36, 29, (149,266,0): 69, 36, 29, (149,267,0): 69, 36, 29, (149,268,0): 69, 36, 31, (149,269,0): 69, 36, 31, (149,270,0): 69, 36, 31, (149,271,0): 69, 36, 31, (149,272,0): 72, 37, 33, (149,273,0): 72, 37, 33, (149,274,0): 72, 37, 33, (149,275,0): 72, 37, 33, (149,276,0): 72, 37, 31, (149,277,0): 72, 38, 29, (149,278,0): 72, 38, 29, (149,279,0): 72, 38, 28, (149,280,0): 76, 42, 30, (149,281,0): 77, 44, 29, (149,282,0): 80, 47, 32, (149,283,0): 83, 50, 33, (149,284,0): 85, 52, 33, (149,285,0): 86, 53, 34, (149,286,0): 87, 54, 35, (149,287,0): 89, 54, 35, (149,288,0): 91, 54, 36, (149,289,0): 93, 54, 37, (149,290,0): 94, 55, 38, (149,291,0): 95, 58, 40, (149,292,0): 95, 58, 40, (149,293,0): 95, 58, 40, (149,294,0): 93, 58, 39, (149,295,0): 92, 57, 38, (149,296,0): 94, 59, 40, (149,297,0): 91, 58, 39, (149,298,0): 90, 57, 38, (149,299,0): 90, 57, 38, (149,300,0): 91, 60, 40, (149,301,0): 94, 63, 43, (149,302,0): 97, 66, 46, (149,303,0): 99, 68, 47, (149,304,0): 97, 65, 42, (149,305,0): 103, 72, 44, (149,306,0): 112, 79, 48, (149,307,0): 117, 83, 46, (149,308,0): 126, 89, 45, (149,309,0): 139, 102, 49, (149,310,0): 159, 119, 57, (149,311,0): 172, 132, 60, (149,312,0): 192, 154, 71, (149,313,0): 195, 158, 69, (149,314,0): 198, 159, 68, (149,315,0): 195, 158, 67, (149,316,0): 190, 153, 65, (149,317,0): 187, 149, 66, (149,318,0): 185, 146, 69, (149,319,0): 185, 147, 74, (149,320,0): 174, 140, 68, (149,321,0): 173, 140, 69, (149,322,0): 174, 139, 71, (149,323,0): 173, 140, 73, (149,324,0): 171, 135, 73, (149,325,0): 166, 132, 71, (149,326,0): 164, 127, 74, (149,327,0): 160, 124, 72, (149,328,0): 165, 127, 78, (149,329,0): 163, 127, 79, (149,330,0): 164, 126, 79, (149,331,0): 164, 128, 80, (149,332,0): 166, 128, 83, (149,333,0): 167, 131, 83, (149,334,0): 170, 132, 85, (149,335,0): 171, 135, 85, (149,336,0): 176, 143, 90, (149,337,0): 179, 146, 92, (149,338,0): 185, 150, 94, (149,339,0): 186, 151, 95, (149,340,0): 188, 151, 96, (149,341,0): 189, 152, 97, (149,342,0): 195, 156, 101, (149,343,0): 198, 159, 102, (149,344,0): 204, 163, 107, (149,345,0): 206, 164, 106, (149,346,0): 208, 166, 108, (149,347,0): 213, 168, 111, (149,348,0): 214, 169, 110, (149,349,0): 216, 170, 111, (149,350,0): 216, 170, 111, (149,351,0): 218, 169, 113, (149,352,0): 217, 166, 113, (149,353,0): 216, 165, 112, (149,354,0): 215, 162, 110, (149,355,0): 215, 159, 108, (149,356,0): 214, 159, 105, (149,357,0): 214, 157, 104, (149,358,0): 214, 157, 104, (149,359,0): 214, 157, 102, (149,360,0): 221, 166, 110, (149,361,0): 220, 168, 110, (149,362,0): 220, 170, 111, (149,363,0): 219, 171, 109, (149,364,0): 217, 171, 109, (149,365,0): 215, 171, 108, (149,366,0): 212, 171, 107, (149,367,0): 211, 170, 104, (149,368,0): 214, 171, 103, (149,369,0): 215, 170, 103, (149,370,0): 215, 170, 103, (149,371,0): 217, 172, 105, (149,372,0): 221, 173, 109, (149,373,0): 221, 173, 111, (149,374,0): 219, 170, 111, (149,375,0): 218, 169, 110, (149,376,0): 213, 164, 106, (149,377,0): 208, 161, 105, (149,378,0): 204, 159, 104, (149,379,0): 202, 159, 104, (149,380,0): 202, 161, 107, (149,381,0): 201, 162, 107, (149,382,0): 201, 162, 107, (149,383,0): 200, 161, 106, (149,384,0): 203, 164, 109, (149,385,0): 206, 165, 109, (149,386,0): 209, 168, 114, (149,387,0): 213, 172, 116, (149,388,0): 217, 174, 119, (149,389,0): 220, 178, 120, (149,390,0): 223, 178, 119, (149,391,0): 224, 178, 118, (149,392,0): 221, 172, 113, (149,393,0): 222, 174, 112, (149,394,0): 223, 173, 110, (149,395,0): 225, 176, 110, (149,396,0): 227, 176, 111, (149,397,0): 228, 177, 111, (149,398,0): 231, 177, 113, (149,399,0): 229, 180, 113, (149,400,0): 229, 186, 117, (149,401,0): 228, 190, 119, (149,402,0): 232, 194, 121, (149,403,0): 234, 196, 121, (149,404,0): 235, 198, 120, (149,405,0): 236, 201, 120, (149,406,0): 240, 205, 123, (149,407,0): 241, 209, 124, (149,408,0): 245, 214, 124, (149,409,0): 247, 216, 123, (149,410,0): 250, 220, 124, (149,411,0): 252, 224, 125, (149,412,0): 254, 226, 126, (149,413,0): 253, 228, 125, (149,414,0): 253, 229, 123, (149,415,0): 255, 226, 122, (149,416,0): 255, 224, 119, (149,417,0): 255, 221, 117, (149,418,0): 255, 220, 118, (149,419,0): 252, 219, 116, (149,420,0): 248, 219, 117, (149,421,0): 246, 218, 118, (149,422,0): 246, 218, 119, (149,423,0): 244, 219, 119, (149,424,0): 246, 221, 121, (149,425,0): 245, 220, 120, (149,426,0): 243, 218, 117, (149,427,0): 241, 216, 113, (149,428,0): 242, 215, 110, (149,429,0): 242, 213, 109, (149,430,0): 242, 214, 107, (149,431,0): 244, 214, 104, (149,432,0): 248, 215, 100, (149,433,0): 255, 220, 102, (149,434,0): 255, 226, 110, (149,435,0): 255, 229, 116, (149,436,0): 255, 224, 116, (149,437,0): 247, 214, 109, (149,438,0): 235, 203, 102, (149,439,0): 224, 196, 99, (149,440,0): 209, 184, 91, (149,441,0): 202, 181, 90, (149,442,0): 196, 179, 91, (149,443,0): 195, 181, 93, (149,444,0): 195, 185, 98, (149,445,0): 197, 189, 104, (149,446,0): 196, 191, 107, (149,447,0): 197, 190, 109, (149,448,0): 198, 187, 108, (149,449,0): 195, 183, 107, (149,450,0): 192, 178, 107, (149,451,0): 186, 171, 102, (149,452,0): 182, 167, 100, (149,453,0): 178, 163, 98, (149,454,0): 178, 159, 100, (149,455,0): 176, 157, 99, (149,456,0): 175, 156, 100, (149,457,0): 177, 156, 101, (149,458,0): 177, 156, 101, (149,459,0): 176, 154, 97, (149,460,0): 173, 151, 94, (149,461,0): 172, 150, 93, (149,462,0): 174, 152, 95, (149,463,0): 180, 154, 97, (149,464,0): 188, 157, 100, (149,465,0): 190, 158, 99, (149,466,0): 191, 159, 100, (149,467,0): 189, 159, 99, (149,468,0): 188, 158, 98, (149,469,0): 189, 160, 100, (149,470,0): 193, 164, 104, (149,471,0): 196, 170, 109, (149,472,0): 192, 168, 106, (149,473,0): 189, 168, 105, (149,474,0): 187, 166, 103, (149,475,0): 184, 164, 101, (149,476,0): 180, 162, 100, (149,477,0): 178, 160, 96, (149,478,0): 174, 158, 96, (149,479,0): 172, 158, 95, (149,480,0): 172, 161, 99, (149,481,0): 171, 163, 100, (149,482,0): 173, 165, 103, (149,483,0): 173, 165, 103, (149,484,0): 172, 163, 104, (149,485,0): 168, 162, 102, (149,486,0): 165, 158, 103, (149,487,0): 162, 157, 101, (149,488,0): 162, 157, 102, (149,489,0): 160, 154, 102, (149,490,0): 159, 153, 101, (149,491,0): 158, 155, 104, (149,492,0): 159, 155, 107, (149,493,0): 156, 152, 104, (149,494,0): 152, 148, 100, (149,495,0): 147, 143, 98, (149,496,0): 135, 130, 92, (149,497,0): 130, 124, 88, (149,498,0): 125, 119, 83, (149,499,0): 122, 116, 80, (149,500,0): 122, 116, 82, (149,501,0): 122, 116, 82, (149,502,0): 121, 115, 81, (149,503,0): 119, 113, 79, (149,504,0): 116, 110, 78, (149,505,0): 115, 109, 77, (149,506,0): 113, 106, 77, (149,507,0): 111, 104, 75, (149,508,0): 109, 102, 73, (149,509,0): 108, 101, 72, (149,510,0): 108, 101, 73, (149,511,0): 110, 101, 72, (149,512,0): 116, 102, 73, (149,513,0): 115, 100, 69, (149,514,0): 113, 98, 69, (149,515,0): 114, 99, 70, (149,516,0): 116, 101, 72, (149,517,0): 117, 102, 73, (149,518,0): 115, 99, 73, (149,519,0): 113, 97, 71, (149,520,0): 110, 94, 69, (149,521,0): 110, 94, 69, (149,522,0): 109, 93, 68, (149,523,0): 107, 91, 66, (149,524,0): 105, 89, 66, (149,525,0): 102, 86, 63, (149,526,0): 99, 83, 60, (149,527,0): 96, 81, 60, (149,528,0): 92, 84, 65, (149,529,0): 91, 84, 66, (149,530,0): 92, 83, 66, (149,531,0): 92, 83, 66, (149,532,0): 94, 82, 66, (149,533,0): 95, 82, 66, (149,534,0): 95, 82, 66, (149,535,0): 98, 82, 67, (149,536,0): 100, 84, 69, (149,537,0): 100, 84, 69, (149,538,0): 101, 85, 70, (149,539,0): 102, 86, 71, (149,540,0): 99, 86, 70, (149,541,0): 98, 85, 69, (149,542,0): 97, 84, 68, (149,543,0): 98, 82, 67, (149,544,0): 99, 79, 68, (149,545,0): 101, 76, 69, (149,546,0): 96, 73, 65, (149,547,0): 92, 69, 61, (149,548,0): 87, 64, 56, (149,549,0): 83, 60, 52, (149,550,0): 77, 57, 50, (149,551,0): 75, 55, 48, (149,552,0): 71, 52, 46, (149,553,0): 70, 51, 45, (149,554,0): 69, 50, 46, (149,555,0): 68, 49, 45, (149,556,0): 66, 48, 44, (149,557,0): 66, 48, 44, (149,558,0): 67, 49, 45, (149,559,0): 66, 51, 46, (149,560,0): 68, 53, 50, (149,561,0): 68, 53, 50, (149,562,0): 68, 53, 50, (149,563,0): 67, 53, 50, (149,564,0): 69, 55, 52, (149,565,0): 71, 57, 54, (149,566,0): 71, 60, 56, (149,567,0): 72, 61, 57, (149,568,0): 74, 63, 59, (149,569,0): 73, 64, 59, (149,570,0): 73, 64, 59, (149,571,0): 73, 64, 59, (149,572,0): 70, 63, 57, (149,573,0): 68, 61, 55, (149,574,0): 66, 59, 53, (149,575,0): 65, 58, 50, (149,576,0): 70, 63, 55, (149,577,0): 74, 64, 55, (149,578,0): 93, 73, 66, (149,579,0): 118, 89, 83, (149,580,0): 126, 93, 86, (149,581,0): 117, 84, 77, (149,582,0): 108, 81, 72, (149,583,0): 105, 85, 76, (149,584,0): 99, 85, 76, (149,585,0): 98, 85, 76, (149,586,0): 99, 84, 77, (149,587,0): 99, 84, 77, (149,588,0): 101, 84, 76, (149,589,0): 101, 84, 76, (149,590,0): 99, 85, 74, (149,591,0): 99, 85, 74, (149,592,0): 95, 80, 73, (149,593,0): 94, 79, 72, (149,594,0): 93, 78, 71, (149,595,0): 91, 76, 69, (149,596,0): 88, 73, 66, (149,597,0): 86, 71, 64, (149,598,0): 85, 70, 63, (149,599,0): 84, 69, 62, (150,0,0): 35, 27, 40, (150,1,0): 35, 27, 40, (150,2,0): 34, 26, 39, (150,3,0): 33, 25, 38, (150,4,0): 32, 24, 37, (150,5,0): 31, 23, 36, (150,6,0): 30, 22, 35, (150,7,0): 30, 22, 35, (150,8,0): 30, 22, 35, (150,9,0): 31, 23, 36, (150,10,0): 33, 25, 38, (150,11,0): 35, 27, 40, (150,12,0): 36, 28, 41, (150,13,0): 36, 28, 41, (150,14,0): 36, 28, 41, (150,15,0): 38, 27, 41, (150,16,0): 43, 29, 44, (150,17,0): 45, 28, 44, (150,18,0): 45, 28, 44, (150,19,0): 46, 29, 45, (150,20,0): 46, 29, 45, (150,21,0): 47, 30, 46, (150,22,0): 47, 30, 46, (150,23,0): 48, 31, 47, (150,24,0): 45, 28, 44, (150,25,0): 45, 28, 44, (150,26,0): 45, 28, 44, (150,27,0): 45, 28, 44, (150,28,0): 45, 28, 44, (150,29,0): 45, 28, 44, (150,30,0): 45, 28, 44, (150,31,0): 45, 29, 42, (150,32,0): 48, 30, 44, (150,33,0): 48, 30, 42, (150,34,0): 48, 30, 42, (150,35,0): 49, 31, 43, (150,36,0): 51, 31, 43, (150,37,0): 52, 32, 44, (150,38,0): 52, 32, 44, (150,39,0): 52, 32, 44, (150,40,0): 50, 28, 41, (150,41,0): 51, 29, 42, (150,42,0): 53, 29, 43, (150,43,0): 54, 30, 44, (150,44,0): 55, 31, 45, (150,45,0): 56, 32, 46, (150,46,0): 59, 32, 47, (150,47,0): 60, 33, 48, (150,48,0): 57, 33, 49, (150,49,0): 57, 33, 49, (150,50,0): 57, 33, 49, (150,51,0): 57, 33, 49, (150,52,0): 57, 33, 47, (150,53,0): 57, 33, 47, (150,54,0): 57, 33, 47, (150,55,0): 57, 33, 46, (150,56,0): 55, 31, 44, (150,57,0): 56, 32, 45, (150,58,0): 57, 34, 44, (150,59,0): 59, 36, 46, (150,60,0): 59, 36, 46, (150,61,0): 59, 36, 44, (150,62,0): 58, 35, 43, (150,63,0): 58, 35, 43, (150,64,0): 58, 32, 43, (150,65,0): 58, 32, 43, (150,66,0): 58, 32, 41, (150,67,0): 58, 32, 41, (150,68,0): 58, 32, 41, (150,69,0): 59, 32, 41, (150,70,0): 59, 32, 41, (150,71,0): 59, 32, 39, (150,72,0): 62, 32, 40, (150,73,0): 62, 33, 38, (150,74,0): 64, 33, 39, (150,75,0): 64, 33, 39, (150,76,0): 65, 34, 39, (150,77,0): 65, 34, 39, (150,78,0): 66, 35, 40, (150,79,0): 67, 34, 41, (150,80,0): 66, 33, 42, (150,81,0): 66, 33, 42, (150,82,0): 66, 33, 42, (150,83,0): 66, 33, 42, (150,84,0): 66, 33, 42, (150,85,0): 66, 33, 42, (150,86,0): 66, 33, 42, (150,87,0): 65, 34, 42, (150,88,0): 68, 37, 45, (150,89,0): 68, 37, 45, (150,90,0): 68, 37, 45, (150,91,0): 66, 36, 44, (150,92,0): 65, 35, 43, (150,93,0): 63, 33, 41, (150,94,0): 61, 31, 39, (150,95,0): 59, 29, 37, (150,96,0): 52, 26, 35, (150,97,0): 51, 28, 36, (150,98,0): 52, 29, 37, (150,99,0): 52, 29, 37, (150,100,0): 51, 28, 38, (150,101,0): 49, 28, 37, (150,102,0): 48, 26, 38, (150,103,0): 46, 26, 37, (150,104,0): 38, 21, 31, (150,105,0): 38, 21, 31, (150,106,0): 36, 20, 31, (150,107,0): 35, 19, 30, (150,108,0): 32, 18, 31, (150,109,0): 31, 17, 30, (150,110,0): 30, 16, 29, (150,111,0): 29, 15, 28, (150,112,0): 32, 16, 27, (150,113,0): 32, 16, 27, (150,114,0): 34, 18, 29, (150,115,0): 34, 18, 29, (150,116,0): 34, 18, 29, (150,117,0): 34, 18, 29, (150,118,0): 32, 16, 27, (150,119,0): 32, 16, 27, (150,120,0): 33, 17, 28, (150,121,0): 33, 17, 28, (150,122,0): 33, 17, 28, (150,123,0): 33, 17, 28, (150,124,0): 33, 17, 28, (150,125,0): 33, 17, 28, (150,126,0): 33, 17, 28, (150,127,0): 33, 17, 28, (150,128,0): 31, 18, 27, (150,129,0): 31, 18, 27, (150,130,0): 33, 17, 27, (150,131,0): 34, 18, 28, (150,132,0): 34, 19, 26, (150,133,0): 35, 20, 27, (150,134,0): 36, 19, 25, (150,135,0): 37, 20, 26, (150,136,0): 40, 21, 27, (150,137,0): 40, 21, 27, (150,138,0): 39, 20, 24, (150,139,0): 39, 20, 24, (150,140,0): 40, 20, 22, (150,141,0): 41, 21, 23, (150,142,0): 43, 23, 25, (150,143,0): 44, 24, 26, (150,144,0): 43, 23, 25, (150,145,0): 44, 24, 26, (150,146,0): 45, 25, 27, (150,147,0): 47, 27, 29, (150,148,0): 47, 27, 29, (150,149,0): 47, 27, 29, (150,150,0): 46, 26, 28, (150,151,0): 46, 26, 28, (150,152,0): 46, 26, 28, (150,153,0): 46, 26, 28, (150,154,0): 46, 26, 28, (150,155,0): 46, 26, 28, (150,156,0): 46, 26, 28, (150,157,0): 46, 26, 28, (150,158,0): 46, 26, 28, (150,159,0): 46, 26, 28, (150,160,0): 44, 22, 24, (150,161,0): 44, 22, 24, (150,162,0): 45, 23, 25, (150,163,0): 45, 23, 25, (150,164,0): 46, 24, 26, (150,165,0): 46, 24, 26, (150,166,0): 47, 25, 27, (150,167,0): 47, 25, 27, (150,168,0): 48, 26, 28, (150,169,0): 48, 26, 28, (150,170,0): 47, 25, 27, (150,171,0): 46, 24, 26, (150,172,0): 45, 23, 25, (150,173,0): 44, 22, 24, (150,174,0): 43, 21, 23, (150,175,0): 41, 21, 22, (150,176,0): 43, 22, 27, (150,177,0): 42, 23, 27, (150,178,0): 43, 23, 25, (150,179,0): 43, 23, 25, (150,180,0): 43, 23, 25, (150,181,0): 43, 23, 25, (150,182,0): 44, 22, 24, (150,183,0): 44, 22, 24, (150,184,0): 46, 22, 22, (150,185,0): 46, 22, 22, (150,186,0): 47, 23, 23, (150,187,0): 47, 23, 23, (150,188,0): 49, 23, 22, (150,189,0): 49, 23, 22, (150,190,0): 50, 24, 23, (150,191,0): 50, 24, 23, (150,192,0): 51, 25, 24, (150,193,0): 51, 25, 24, (150,194,0): 51, 25, 24, (150,195,0): 51, 25, 24, (150,196,0): 53, 25, 24, (150,197,0): 53, 25, 24, (150,198,0): 53, 25, 22, (150,199,0): 53, 25, 22, (150,200,0): 53, 24, 20, (150,201,0): 54, 25, 21, (150,202,0): 55, 24, 19, (150,203,0): 56, 25, 20, (150,204,0): 56, 25, 20, (150,205,0): 57, 26, 21, (150,206,0): 59, 26, 21, (150,207,0): 59, 26, 21, (150,208,0): 64, 31, 26, (150,209,0): 63, 30, 25, (150,210,0): 60, 29, 24, (150,211,0): 59, 28, 23, (150,212,0): 58, 27, 22, (150,213,0): 57, 26, 21, (150,214,0): 55, 26, 20, (150,215,0): 54, 25, 19, (150,216,0): 54, 27, 20, (150,217,0): 54, 27, 20, (150,218,0): 54, 27, 20, (150,219,0): 54, 27, 20, (150,220,0): 52, 27, 20, (150,221,0): 52, 27, 20, (150,222,0): 52, 27, 20, (150,223,0): 52, 28, 18, (150,224,0): 55, 26, 18, (150,225,0): 54, 26, 15, (150,226,0): 53, 25, 14, (150,227,0): 53, 25, 14, (150,228,0): 54, 26, 15, (150,229,0): 55, 27, 16, (150,230,0): 57, 29, 18, (150,231,0): 58, 30, 19, (150,232,0): 55, 27, 16, (150,233,0): 54, 26, 15, (150,234,0): 54, 26, 15, (150,235,0): 54, 26, 15, (150,236,0): 53, 25, 14, (150,237,0): 53, 25, 14, (150,238,0): 52, 24, 13, (150,239,0): 52, 24, 13, (150,240,0): 50, 24, 11, (150,241,0): 51, 25, 12, (150,242,0): 53, 25, 13, (150,243,0): 55, 27, 15, (150,244,0): 57, 29, 17, (150,245,0): 59, 31, 19, (150,246,0): 61, 31, 20, (150,247,0): 62, 32, 21, (150,248,0): 65, 33, 22, (150,249,0): 65, 33, 22, (150,250,0): 66, 34, 23, (150,251,0): 66, 34, 23, (150,252,0): 67, 33, 23, (150,253,0): 68, 34, 24, (150,254,0): 68, 34, 24, (150,255,0): 68, 34, 24, (150,256,0): 70, 38, 25, (150,257,0): 70, 38, 25, (150,258,0): 70, 38, 27, (150,259,0): 70, 38, 27, (150,260,0): 70, 38, 27, (150,261,0): 70, 38, 27, (150,262,0): 70, 37, 28, (150,263,0): 70, 37, 28, (150,264,0): 68, 35, 28, (150,265,0): 68, 35, 28, (150,266,0): 68, 35, 28, (150,267,0): 68, 35, 28, (150,268,0): 68, 35, 30, (150,269,0): 68, 35, 30, (150,270,0): 68, 35, 30, (150,271,0): 68, 35, 30, (150,272,0): 72, 37, 33, (150,273,0): 72, 37, 33, (150,274,0): 72, 37, 33, (150,275,0): 72, 37, 33, (150,276,0): 72, 37, 31, (150,277,0): 72, 38, 29, (150,278,0): 72, 38, 29, (150,279,0): 72, 38, 28, (150,280,0): 76, 42, 30, (150,281,0): 77, 44, 29, (150,282,0): 80, 47, 32, (150,283,0): 83, 50, 33, (150,284,0): 85, 52, 33, (150,285,0): 86, 53, 34, (150,286,0): 87, 54, 35, (150,287,0): 89, 54, 35, (150,288,0): 89, 52, 34, (150,289,0): 90, 53, 35, (150,290,0): 92, 55, 37, (150,291,0): 93, 56, 38, (150,292,0): 94, 57, 39, (150,293,0): 93, 58, 39, (150,294,0): 92, 57, 38, (150,295,0): 92, 57, 38, (150,296,0): 94, 61, 42, (150,297,0): 92, 59, 40, (150,298,0): 91, 58, 39, (150,299,0): 90, 59, 39, (150,300,0): 92, 61, 41, (150,301,0): 95, 64, 44, (150,302,0): 96, 68, 47, (150,303,0): 101, 70, 49, (150,304,0): 99, 67, 44, (150,305,0): 104, 73, 45, (150,306,0): 112, 78, 50, (150,307,0): 119, 85, 50, (150,308,0): 129, 92, 50, (150,309,0): 141, 103, 54, (150,310,0): 157, 118, 59, (150,311,0): 168, 129, 60, (150,312,0): 190, 153, 73, (150,313,0): 193, 157, 71, (150,314,0): 196, 159, 70, (150,315,0): 194, 159, 69, (150,316,0): 189, 153, 67, (150,317,0): 182, 147, 65, (150,318,0): 179, 143, 65, (150,319,0): 176, 142, 68, (150,320,0): 171, 138, 67, (150,321,0): 170, 140, 70, (150,322,0): 173, 140, 73, (150,323,0): 171, 140, 75, (150,324,0): 171, 137, 76, (150,325,0): 165, 133, 74, (150,326,0): 163, 127, 75, (150,327,0): 159, 126, 75, (150,328,0): 163, 127, 79, (150,329,0): 161, 127, 81, (150,330,0): 163, 126, 81, (150,331,0): 161, 127, 81, (150,332,0): 164, 127, 83, (150,333,0): 163, 129, 83, (150,334,0): 167, 130, 85, (150,335,0): 166, 132, 84, (150,336,0): 174, 141, 88, (150,337,0): 177, 144, 90, (150,338,0): 182, 149, 95, (150,339,0): 184, 151, 97, (150,340,0): 186, 151, 97, (150,341,0): 188, 153, 97, (150,342,0): 192, 155, 100, (150,343,0): 197, 158, 101, (150,344,0): 202, 163, 106, (150,345,0): 204, 163, 107, (150,346,0): 206, 166, 107, (150,347,0): 209, 167, 109, (150,348,0): 211, 169, 111, (150,349,0): 213, 168, 111, (150,350,0): 213, 168, 111, (150,351,0): 213, 168, 111, (150,352,0): 212, 165, 111, (150,353,0): 214, 164, 111, (150,354,0): 216, 165, 110, (150,355,0): 215, 164, 109, (150,356,0): 216, 163, 109, (150,357,0): 216, 161, 107, (150,358,0): 215, 158, 103, (150,359,0): 214, 158, 101, (150,360,0): 218, 162, 105, (150,361,0): 219, 165, 105, (150,362,0): 221, 167, 107, (150,363,0): 221, 170, 107, (150,364,0): 221, 171, 108, (150,365,0): 221, 173, 109, (150,366,0): 219, 174, 109, (150,367,0): 218, 173, 106, (150,368,0): 223, 174, 107, (150,369,0): 221, 172, 103, (150,370,0): 221, 172, 105, (150,371,0): 225, 176, 109, (150,372,0): 231, 182, 116, (150,373,0): 233, 184, 118, (150,374,0): 231, 181, 118, (150,375,0): 226, 178, 114, (150,376,0): 220, 172, 110, (150,377,0): 214, 168, 108, (150,378,0): 209, 164, 105, (150,379,0): 206, 164, 104, (150,380,0): 206, 164, 106, (150,381,0): 206, 166, 107, (150,382,0): 204, 163, 107, (150,383,0): 202, 161, 105, (150,384,0): 206, 165, 109, (150,385,0): 209, 167, 109, (150,386,0): 212, 169, 114, (150,387,0): 216, 174, 116, (150,388,0): 221, 176, 119, (150,389,0): 224, 179, 120, (150,390,0): 226, 180, 120, (150,391,0): 226, 180, 118, (150,392,0): 224, 176, 114, (150,393,0): 225, 177, 113, (150,394,0): 227, 178, 112, (150,395,0): 229, 180, 113, (150,396,0): 232, 181, 115, (150,397,0): 234, 184, 115, (150,398,0): 235, 184, 118, (150,399,0): 234, 187, 119, (150,400,0): 233, 193, 123, (150,401,0): 233, 196, 125, (150,402,0): 235, 199, 125, (150,403,0): 233, 200, 123, (150,404,0): 232, 199, 120, (150,405,0): 235, 202, 121, (150,406,0): 240, 208, 123, (150,407,0): 244, 214, 126, (150,408,0): 245, 216, 124, (150,409,0): 244, 218, 121, (150,410,0): 246, 221, 121, (150,411,0): 249, 224, 121, (150,412,0): 251, 227, 121, (150,413,0): 252, 230, 121, (150,414,0): 254, 232, 121, (150,415,0): 255, 232, 122, (150,416,0): 255, 228, 120, (150,417,0): 255, 225, 120, (150,418,0): 254, 222, 119, (150,419,0): 249, 220, 116, (150,420,0): 246, 219, 116, (150,421,0): 243, 218, 117, (150,422,0): 243, 218, 118, (150,423,0): 242, 218, 118, (150,424,0): 241, 217, 117, (150,425,0): 240, 216, 116, (150,426,0): 240, 215, 114, (150,427,0): 239, 214, 111, (150,428,0): 241, 214, 109, (150,429,0): 242, 215, 110, (150,430,0): 245, 217, 110, (150,431,0): 248, 218, 106, (150,432,0): 252, 217, 101, (150,433,0): 255, 221, 103, (150,434,0): 255, 226, 110, (150,435,0): 255, 228, 115, (150,436,0): 254, 222, 113, (150,437,0): 241, 209, 106, (150,438,0): 225, 197, 97, (150,439,0): 215, 189, 94, (150,440,0): 208, 184, 94, (150,441,0): 201, 181, 94, (150,442,0): 195, 179, 92, (150,443,0): 192, 180, 96, (150,444,0): 192, 184, 101, (150,445,0): 194, 187, 106, (150,446,0): 194, 189, 108, (150,447,0): 194, 187, 107, (150,448,0): 197, 185, 109, (150,449,0): 196, 182, 107, (150,450,0): 194, 177, 107, (150,451,0): 189, 172, 103, (150,452,0): 185, 167, 101, (150,453,0): 183, 165, 101, (150,454,0): 182, 162, 103, (150,455,0): 181, 161, 102, (150,456,0): 177, 156, 99, (150,457,0): 179, 157, 100, (150,458,0): 179, 157, 100, (150,459,0): 179, 154, 97, (150,460,0): 177, 152, 95, (150,461,0): 176, 152, 92, (150,462,0): 179, 155, 95, (150,463,0): 182, 156, 95, (150,464,0): 193, 161, 100, (150,465,0): 196, 162, 99, (150,466,0): 196, 162, 99, (150,467,0): 194, 160, 97, (150,468,0): 190, 159, 95, (150,469,0): 191, 161, 97, (150,470,0): 195, 167, 104, (150,471,0): 197, 172, 108, (150,472,0): 194, 170, 106, (150,473,0): 191, 170, 105, (150,474,0): 189, 168, 103, (150,475,0): 186, 167, 101, (150,476,0): 183, 165, 101, (150,477,0): 181, 163, 97, (150,478,0): 178, 163, 98, (150,479,0): 176, 162, 97, (150,480,0): 172, 163, 98, (150,481,0): 172, 164, 101, (150,482,0): 174, 166, 104, (150,483,0): 172, 166, 104, (150,484,0): 171, 165, 105, (150,485,0): 168, 162, 102, (150,486,0): 165, 158, 103, (150,487,0): 161, 156, 100, (150,488,0): 162, 157, 102, (150,489,0): 158, 155, 102, (150,490,0): 157, 154, 103, (150,491,0): 157, 153, 105, (150,492,0): 157, 153, 105, (150,493,0): 153, 151, 103, (150,494,0): 146, 144, 96, (150,495,0): 141, 138, 95, (150,496,0): 131, 127, 89, (150,497,0): 126, 122, 85, (150,498,0): 120, 116, 81, (150,499,0): 117, 113, 78, (150,500,0): 117, 113, 78, (150,501,0): 116, 112, 77, (150,502,0): 115, 110, 78, (150,503,0): 113, 108, 76, (150,504,0): 112, 107, 77, (150,505,0): 110, 105, 75, (150,506,0): 108, 103, 73, (150,507,0): 107, 102, 72, (150,508,0): 106, 101, 72, (150,509,0): 106, 101, 72, (150,510,0): 107, 102, 73, (150,511,0): 109, 102, 73, (150,512,0): 113, 102, 72, (150,513,0): 113, 99, 70, (150,514,0): 112, 98, 69, (150,515,0): 113, 99, 70, (150,516,0): 116, 102, 75, (150,517,0): 118, 104, 77, (150,518,0): 116, 102, 76, (150,519,0): 114, 100, 74, (150,520,0): 109, 95, 69, (150,521,0): 110, 96, 70, (150,522,0): 109, 94, 71, (150,523,0): 108, 93, 70, (150,524,0): 106, 91, 70, (150,525,0): 104, 89, 68, (150,526,0): 102, 87, 66, (150,527,0): 98, 86, 64, (150,528,0): 96, 88, 69, (150,529,0): 96, 89, 70, (150,530,0): 96, 89, 70, (150,531,0): 97, 89, 70, (150,532,0): 97, 89, 70, (150,533,0): 98, 87, 69, (150,534,0): 98, 87, 69, (150,535,0): 99, 86, 69, (150,536,0): 98, 85, 68, (150,537,0): 101, 85, 69, (150,538,0): 103, 87, 71, (150,539,0): 104, 88, 72, (150,540,0): 104, 88, 72, (150,541,0): 104, 88, 72, (150,542,0): 103, 87, 71, (150,543,0): 103, 87, 72, (150,544,0): 103, 83, 72, (150,545,0): 104, 81, 73, (150,546,0): 102, 79, 71, (150,547,0): 98, 75, 67, (150,548,0): 91, 71, 62, (150,549,0): 85, 65, 56, (150,550,0): 79, 59, 52, (150,551,0): 76, 56, 49, (150,552,0): 73, 54, 48, (150,553,0): 72, 53, 47, (150,554,0): 69, 51, 47, (150,555,0): 68, 50, 46, (150,556,0): 68, 50, 46, (150,557,0): 68, 50, 46, (150,558,0): 67, 52, 47, (150,559,0): 67, 52, 47, (150,560,0): 71, 56, 53, (150,561,0): 70, 56, 53, (150,562,0): 69, 55, 52, (150,563,0): 69, 55, 52, (150,564,0): 70, 56, 53, (150,565,0): 69, 58, 54, (150,566,0): 71, 60, 56, (150,567,0): 72, 61, 57, (150,568,0): 74, 65, 60, (150,569,0): 74, 65, 60, (150,570,0): 75, 66, 61, (150,571,0): 74, 67, 61, (150,572,0): 73, 66, 60, (150,573,0): 71, 64, 58, (150,574,0): 67, 62, 56, (150,575,0): 66, 62, 53, (150,576,0): 70, 66, 57, (150,577,0): 74, 65, 56, (150,578,0): 85, 66, 59, (150,579,0): 98, 71, 64, (150,580,0): 105, 74, 69, (150,581,0): 106, 77, 71, (150,582,0): 105, 80, 73, (150,583,0): 104, 85, 78, (150,584,0): 100, 86, 77, (150,585,0): 99, 86, 77, (150,586,0): 100, 85, 78, (150,587,0): 100, 85, 78, (150,588,0): 102, 85, 77, (150,589,0): 102, 85, 77, (150,590,0): 101, 87, 78, (150,591,0): 100, 87, 78, (150,592,0): 98, 83, 76, (150,593,0): 97, 82, 77, (150,594,0): 95, 80, 75, (150,595,0): 92, 77, 72, (150,596,0): 89, 74, 69, (150,597,0): 86, 71, 66, (150,598,0): 84, 69, 64, (150,599,0): 83, 68, 63, (151,0,0): 36, 28, 41, (151,1,0): 35, 27, 40, (151,2,0): 34, 26, 39, (151,3,0): 33, 25, 38, (151,4,0): 32, 24, 37, (151,5,0): 31, 23, 36, (151,6,0): 30, 22, 35, (151,7,0): 30, 22, 35, (151,8,0): 30, 22, 35, (151,9,0): 31, 23, 36, (151,10,0): 33, 25, 38, (151,11,0): 35, 27, 40, (151,12,0): 36, 28, 41, (151,13,0): 36, 28, 41, (151,14,0): 36, 28, 41, (151,15,0): 38, 27, 41, (151,16,0): 43, 29, 44, (151,17,0): 45, 28, 44, (151,18,0): 46, 29, 45, (151,19,0): 46, 29, 45, (151,20,0): 47, 30, 46, (151,21,0): 47, 30, 46, (151,22,0): 48, 31, 47, (151,23,0): 48, 31, 47, (151,24,0): 45, 28, 44, (151,25,0): 45, 28, 44, (151,26,0): 45, 28, 44, (151,27,0): 45, 28, 44, (151,28,0): 45, 28, 44, (151,29,0): 45, 28, 44, (151,30,0): 45, 28, 44, (151,31,0): 45, 29, 42, (151,32,0): 48, 30, 44, (151,33,0): 48, 30, 42, (151,34,0): 48, 30, 42, (151,35,0): 49, 31, 43, (151,36,0): 51, 31, 43, (151,37,0): 52, 32, 44, (151,38,0): 52, 32, 44, (151,39,0): 52, 32, 44, (151,40,0): 50, 28, 41, (151,41,0): 50, 28, 41, (151,42,0): 52, 28, 42, (151,43,0): 54, 30, 44, (151,44,0): 55, 31, 45, (151,45,0): 57, 33, 47, (151,46,0): 60, 33, 48, (151,47,0): 60, 33, 48, (151,48,0): 57, 33, 49, (151,49,0): 57, 33, 49, (151,50,0): 57, 33, 49, (151,51,0): 57, 33, 47, (151,52,0): 57, 33, 47, (151,53,0): 57, 33, 47, (151,54,0): 57, 33, 46, (151,55,0): 57, 33, 46, (151,56,0): 55, 31, 44, (151,57,0): 56, 33, 43, (151,58,0): 57, 34, 44, (151,59,0): 59, 36, 46, (151,60,0): 59, 36, 44, (151,61,0): 59, 36, 44, (151,62,0): 58, 35, 43, (151,63,0): 58, 35, 43, (151,64,0): 58, 32, 43, (151,65,0): 58, 32, 43, (151,66,0): 58, 32, 41, (151,67,0): 59, 32, 41, (151,68,0): 59, 32, 41, (151,69,0): 59, 32, 39, (151,70,0): 59, 32, 39, (151,71,0): 61, 31, 39, (151,72,0): 62, 33, 38, (151,73,0): 64, 33, 39, (151,74,0): 64, 33, 39, (151,75,0): 65, 34, 39, (151,76,0): 65, 34, 39, (151,77,0): 67, 35, 40, (151,78,0): 67, 35, 40, (151,79,0): 67, 35, 40, (151,80,0): 66, 33, 40, (151,81,0): 66, 33, 42, (151,82,0): 66, 33, 42, (151,83,0): 66, 33, 42, (151,84,0): 66, 33, 42, (151,85,0): 66, 33, 42, (151,86,0): 66, 33, 42, (151,87,0): 66, 33, 42, (151,88,0): 69, 36, 45, (151,89,0): 68, 37, 45, (151,90,0): 70, 37, 46, (151,91,0): 69, 36, 45, (151,92,0): 68, 35, 44, (151,93,0): 66, 33, 42, (151,94,0): 64, 31, 40, (151,95,0): 61, 30, 38, (151,96,0): 56, 26, 36, (151,97,0): 55, 28, 37, (151,98,0): 55, 28, 37, (151,99,0): 55, 29, 38, (151,100,0): 54, 28, 39, (151,101,0): 51, 28, 38, (151,102,0): 49, 25, 38, (151,103,0): 47, 25, 37, (151,104,0): 40, 20, 31, (151,105,0): 38, 21, 31, (151,106,0): 37, 19, 31, (151,107,0): 35, 19, 30, (151,108,0): 34, 18, 31, (151,109,0): 31, 17, 30, (151,110,0): 30, 16, 29, (151,111,0): 30, 16, 29, (151,112,0): 32, 16, 27, (151,113,0): 32, 16, 27, (151,114,0): 34, 18, 29, (151,115,0): 34, 18, 29, (151,116,0): 34, 18, 29, (151,117,0): 34, 18, 29, (151,118,0): 32, 16, 27, (151,119,0): 32, 16, 27, (151,120,0): 33, 17, 28, (151,121,0): 33, 17, 28, (151,122,0): 33, 17, 28, (151,123,0): 33, 17, 28, (151,124,0): 33, 17, 28, (151,125,0): 33, 17, 28, (151,126,0): 33, 17, 28, (151,127,0): 33, 17, 28, (151,128,0): 31, 18, 27, (151,129,0): 31, 18, 27, (151,130,0): 34, 18, 28, (151,131,0): 34, 18, 28, (151,132,0): 35, 20, 27, (151,133,0): 35, 20, 27, (151,134,0): 37, 20, 26, (151,135,0): 37, 20, 26, (151,136,0): 40, 21, 27, (151,137,0): 40, 21, 27, (151,138,0): 39, 20, 24, (151,139,0): 39, 20, 24, (151,140,0): 40, 20, 22, (151,141,0): 42, 22, 24, (151,142,0): 43, 23, 25, (151,143,0): 44, 24, 26, (151,144,0): 43, 23, 25, (151,145,0): 44, 24, 26, (151,146,0): 46, 26, 28, (151,147,0): 47, 27, 29, (151,148,0): 47, 27, 29, (151,149,0): 47, 27, 29, (151,150,0): 47, 27, 29, (151,151,0): 46, 26, 28, (151,152,0): 46, 26, 28, (151,153,0): 46, 26, 28, (151,154,0): 46, 26, 28, (151,155,0): 46, 26, 28, (151,156,0): 46, 26, 28, (151,157,0): 46, 26, 28, (151,158,0): 46, 26, 28, (151,159,0): 46, 26, 28, (151,160,0): 44, 22, 24, (151,161,0): 44, 22, 24, (151,162,0): 45, 23, 25, (151,163,0): 45, 23, 25, (151,164,0): 46, 24, 26, (151,165,0): 46, 24, 26, (151,166,0): 47, 25, 27, (151,167,0): 47, 25, 27, (151,168,0): 48, 26, 28, (151,169,0): 48, 26, 28, (151,170,0): 47, 25, 27, (151,171,0): 46, 24, 26, (151,172,0): 45, 23, 25, (151,173,0): 44, 22, 24, (151,174,0): 43, 21, 23, (151,175,0): 42, 22, 23, (151,176,0): 43, 22, 27, (151,177,0): 42, 23, 27, (151,178,0): 43, 23, 25, (151,179,0): 43, 23, 25, (151,180,0): 43, 23, 25, (151,181,0): 43, 23, 25, (151,182,0): 44, 22, 24, (151,183,0): 44, 22, 24, (151,184,0): 46, 22, 22, (151,185,0): 46, 22, 22, (151,186,0): 47, 23, 23, (151,187,0): 47, 23, 23, (151,188,0): 49, 23, 22, (151,189,0): 49, 23, 22, (151,190,0): 50, 24, 23, (151,191,0): 50, 24, 23, (151,192,0): 51, 25, 24, (151,193,0): 51, 25, 24, (151,194,0): 51, 25, 24, (151,195,0): 51, 25, 24, (151,196,0): 53, 25, 24, (151,197,0): 53, 25, 24, (151,198,0): 53, 25, 22, (151,199,0): 53, 25, 22, (151,200,0): 53, 24, 20, (151,201,0): 53, 24, 20, (151,202,0): 55, 24, 19, (151,203,0): 55, 24, 19, (151,204,0): 56, 25, 20, (151,205,0): 56, 25, 20, (151,206,0): 59, 26, 21, (151,207,0): 59, 26, 21, (151,208,0): 64, 31, 26, (151,209,0): 64, 31, 26, (151,210,0): 61, 30, 25, (151,211,0): 59, 28, 23, (151,212,0): 58, 27, 22, (151,213,0): 56, 25, 20, (151,214,0): 54, 25, 19, (151,215,0): 54, 25, 19, (151,216,0): 54, 27, 20, (151,217,0): 54, 27, 20, (151,218,0): 54, 27, 20, (151,219,0): 54, 27, 20, (151,220,0): 52, 27, 20, (151,221,0): 52, 27, 20, (151,222,0): 52, 27, 20, (151,223,0): 52, 28, 18, (151,224,0): 55, 26, 18, (151,225,0): 54, 26, 15, (151,226,0): 53, 25, 14, (151,227,0): 53, 25, 14, (151,228,0): 54, 26, 15, (151,229,0): 55, 27, 16, (151,230,0): 56, 28, 17, (151,231,0): 57, 29, 18, (151,232,0): 55, 27, 16, (151,233,0): 54, 26, 15, (151,234,0): 54, 26, 15, (151,235,0): 53, 25, 14, (151,236,0): 53, 25, 14, (151,237,0): 52, 24, 13, (151,238,0): 52, 24, 13, (151,239,0): 52, 24, 13, (151,240,0): 50, 24, 11, (151,241,0): 51, 25, 12, (151,242,0): 53, 25, 13, (151,243,0): 55, 27, 15, (151,244,0): 57, 29, 17, (151,245,0): 59, 31, 19, (151,246,0): 61, 31, 20, (151,247,0): 62, 32, 21, (151,248,0): 64, 32, 21, (151,249,0): 65, 33, 22, (151,250,0): 65, 33, 22, (151,251,0): 66, 34, 23, (151,252,0): 68, 34, 24, (151,253,0): 69, 35, 25, (151,254,0): 69, 35, 25, (151,255,0): 69, 35, 25, (151,256,0): 70, 38, 25, (151,257,0): 70, 38, 25, (151,258,0): 70, 38, 27, (151,259,0): 70, 38, 27, (151,260,0): 70, 38, 27, (151,261,0): 70, 38, 27, (151,262,0): 70, 37, 28, (151,263,0): 70, 37, 28, (151,264,0): 68, 35, 28, (151,265,0): 68, 35, 28, (151,266,0): 68, 35, 28, (151,267,0): 68, 35, 28, (151,268,0): 68, 35, 30, (151,269,0): 68, 35, 30, (151,270,0): 68, 35, 30, (151,271,0): 68, 35, 30, (151,272,0): 72, 37, 33, (151,273,0): 72, 37, 33, (151,274,0): 72, 37, 33, (151,275,0): 72, 37, 33, (151,276,0): 72, 37, 31, (151,277,0): 72, 38, 29, (151,278,0): 72, 38, 29, (151,279,0): 72, 38, 28, (151,280,0): 76, 42, 30, (151,281,0): 77, 44, 29, (151,282,0): 80, 47, 32, (151,283,0): 83, 50, 33, (151,284,0): 85, 52, 33, (151,285,0): 86, 53, 34, (151,286,0): 87, 54, 35, (151,287,0): 87, 54, 35, (151,288,0): 87, 52, 33, (151,289,0): 89, 52, 34, (151,290,0): 91, 54, 36, (151,291,0): 93, 56, 38, (151,292,0): 92, 57, 38, (151,293,0): 92, 57, 38, (151,294,0): 92, 57, 38, (151,295,0): 90, 57, 38, (151,296,0): 95, 62, 43, (151,297,0): 93, 62, 42, (151,298,0): 91, 60, 40, (151,299,0): 91, 60, 40, (151,300,0): 92, 61, 41, (151,301,0): 96, 65, 45, (151,302,0): 98, 70, 49, (151,303,0): 100, 72, 50, (151,304,0): 100, 70, 46, (151,305,0): 104, 73, 45, (151,306,0): 112, 78, 50, (151,307,0): 119, 86, 53, (151,308,0): 129, 94, 56, (151,309,0): 142, 105, 60, (151,310,0): 155, 118, 63, (151,311,0): 165, 127, 62, (151,312,0): 184, 148, 74, (151,313,0): 187, 152, 70, (151,314,0): 190, 156, 69, (151,315,0): 189, 155, 68, (151,316,0): 181, 149, 64, (151,317,0): 174, 142, 59, (151,318,0): 169, 138, 58, (151,319,0): 167, 135, 60, (151,320,0): 169, 139, 67, (151,321,0): 170, 141, 73, (151,322,0): 171, 142, 76, (151,323,0): 172, 142, 78, (151,324,0): 170, 140, 80, (151,325,0): 166, 135, 78, (151,326,0): 162, 131, 77, (151,327,0): 160, 128, 79, (151,328,0): 160, 128, 81, (151,329,0): 160, 128, 81, (151,330,0): 160, 127, 82, (151,331,0): 160, 127, 82, (151,332,0): 161, 128, 83, (151,333,0): 162, 129, 84, (151,334,0): 162, 130, 83, (151,335,0): 163, 131, 82, (151,336,0): 172, 139, 86, (151,337,0): 176, 143, 89, (151,338,0): 181, 148, 94, (151,339,0): 183, 150, 96, (151,340,0): 186, 151, 97, (151,341,0): 187, 152, 98, (151,342,0): 192, 155, 100, (151,343,0): 194, 157, 102, (151,344,0): 199, 162, 107, (151,345,0): 202, 163, 106, (151,346,0): 204, 165, 108, (151,347,0): 207, 167, 108, (151,348,0): 209, 169, 110, (151,349,0): 209, 169, 110, (151,350,0): 209, 169, 110, (151,351,0): 210, 168, 110, (151,352,0): 208, 165, 110, (151,353,0): 211, 166, 111, (151,354,0): 213, 168, 111, (151,355,0): 215, 168, 112, (151,356,0): 217, 166, 111, (151,357,0): 216, 164, 107, (151,358,0): 215, 160, 103, (151,359,0): 214, 158, 99, (151,360,0): 215, 159, 100, (151,361,0): 217, 161, 100, (151,362,0): 220, 164, 103, (151,363,0): 223, 168, 104, (151,364,0): 225, 171, 107, (151,365,0): 225, 174, 108, (151,366,0): 226, 175, 109, (151,367,0): 227, 176, 110, (151,368,0): 231, 178, 108, (151,369,0): 228, 174, 104, (151,370,0): 227, 174, 104, (151,371,0): 232, 179, 111, (151,372,0): 240, 187, 119, (151,373,0): 242, 191, 125, (151,374,0): 239, 188, 122, (151,375,0): 234, 185, 119, (151,376,0): 224, 176, 112, (151,377,0): 219, 171, 109, (151,378,0): 213, 167, 105, (151,379,0): 210, 166, 105, (151,380,0): 211, 167, 106, (151,381,0): 208, 166, 106, (151,382,0): 206, 164, 104, (151,383,0): 203, 161, 101, (151,384,0): 208, 166, 108, (151,385,0): 210, 168, 108, (151,386,0): 213, 171, 111, (151,387,0): 217, 175, 115, (151,388,0): 222, 177, 118, (151,389,0): 225, 181, 120, (151,390,0): 227, 181, 119, (151,391,0): 227, 182, 117, (151,392,0): 226, 178, 114, (151,393,0): 228, 180, 114, (151,394,0): 230, 183, 115, (151,395,0): 234, 185, 116, (151,396,0): 236, 187, 118, (151,397,0): 238, 190, 118, (151,398,0): 240, 190, 119, (151,399,0): 239, 192, 122, (151,400,0): 238, 200, 127, (151,401,0): 236, 202, 128, (151,402,0): 237, 203, 129, (151,403,0): 234, 202, 125, (151,404,0): 233, 202, 120, (151,405,0): 235, 204, 121, (151,406,0): 241, 211, 123, (151,407,0): 245, 219, 126, (151,408,0): 243, 217, 122, (151,409,0): 243, 219, 119, (151,410,0): 244, 221, 117, (151,411,0): 247, 224, 118, (151,412,0): 249, 227, 118, (151,413,0): 251, 231, 119, (151,414,0): 254, 234, 121, (151,415,0): 255, 235, 123, (151,416,0): 255, 231, 122, (151,417,0): 255, 228, 120, (151,418,0): 253, 225, 118, (151,419,0): 248, 221, 116, (151,420,0): 243, 218, 115, (151,421,0): 241, 218, 114, (151,422,0): 241, 218, 116, (151,423,0): 240, 218, 117, (151,424,0): 236, 212, 112, (151,425,0): 235, 212, 110, (151,426,0): 235, 212, 108, (151,427,0): 236, 211, 108, (151,428,0): 240, 213, 108, (151,429,0): 243, 216, 109, (151,430,0): 247, 219, 110, (151,431,0): 250, 220, 108, (151,432,0): 252, 219, 103, (151,433,0): 255, 223, 105, (151,434,0): 255, 227, 112, (151,435,0): 255, 226, 115, (151,436,0): 251, 220, 112, (151,437,0): 236, 207, 105, (151,438,0): 220, 194, 97, (151,439,0): 209, 186, 92, (151,440,0): 208, 188, 99, (151,441,0): 202, 184, 98, (151,442,0): 196, 181, 98, (151,443,0): 192, 181, 99, (151,444,0): 192, 183, 104, (151,445,0): 193, 186, 106, (151,446,0): 192, 186, 108, (151,447,0): 192, 185, 107, (151,448,0): 197, 183, 108, (151,449,0): 197, 181, 106, (151,450,0): 194, 177, 107, (151,451,0): 190, 173, 103, (151,452,0): 187, 169, 103, (151,453,0): 185, 165, 102, (151,454,0): 184, 164, 103, (151,455,0): 185, 163, 105, (151,456,0): 178, 156, 98, (151,457,0): 180, 158, 100, (151,458,0): 182, 157, 100, (151,459,0): 180, 156, 96, (151,460,0): 177, 153, 93, (151,461,0): 177, 153, 91, (151,462,0): 181, 155, 94, (151,463,0): 186, 158, 95, (151,464,0): 198, 164, 100, (151,465,0): 199, 164, 98, (151,466,0): 199, 164, 98, (151,467,0): 196, 161, 95, (151,468,0): 193, 160, 93, (151,469,0): 192, 161, 96, (151,470,0): 196, 167, 101, (151,471,0): 199, 171, 106, (151,472,0): 196, 171, 105, (151,473,0): 194, 171, 104, (151,474,0): 191, 170, 105, (151,475,0): 188, 169, 103, (151,476,0): 185, 167, 101, (151,477,0): 182, 167, 100, (151,478,0): 181, 166, 99, (151,479,0): 179, 165, 100, (151,480,0): 172, 163, 98, (151,481,0): 173, 165, 102, (151,482,0): 172, 166, 104, (151,483,0): 173, 167, 105, (151,484,0): 172, 166, 106, (151,485,0): 168, 162, 102, (151,486,0): 163, 158, 102, (151,487,0): 161, 156, 101, (151,488,0): 160, 157, 104, (151,489,0): 158, 155, 104, (151,490,0): 157, 153, 105, (151,491,0): 157, 153, 106, (151,492,0): 155, 153, 105, (151,493,0): 151, 148, 103, (151,494,0): 144, 141, 96, (151,495,0): 138, 135, 92, (151,496,0): 129, 125, 87, (151,497,0): 124, 120, 83, (151,498,0): 118, 114, 79, (151,499,0): 114, 110, 75, (151,500,0): 113, 109, 74, (151,501,0): 112, 108, 73, (151,502,0): 110, 105, 73, (151,503,0): 108, 103, 71, (151,504,0): 108, 103, 73, (151,505,0): 107, 102, 72, (151,506,0): 106, 101, 71, (151,507,0): 105, 100, 70, (151,508,0): 105, 100, 71, (151,509,0): 107, 102, 73, (151,510,0): 109, 104, 75, (151,511,0): 111, 104, 76, (151,512,0): 113, 102, 74, (151,513,0): 111, 100, 70, (151,514,0): 112, 98, 69, (151,515,0): 112, 101, 71, (151,516,0): 117, 103, 76, (151,517,0): 117, 106, 78, (151,518,0): 118, 104, 78, (151,519,0): 114, 102, 76, (151,520,0): 110, 96, 70, (151,521,0): 108, 96, 70, (151,522,0): 110, 95, 72, (151,523,0): 107, 95, 71, (151,524,0): 108, 93, 72, (151,525,0): 104, 92, 70, (151,526,0): 104, 89, 68, (151,527,0): 101, 88, 69, (151,528,0): 99, 91, 70, (151,529,0): 99, 91, 72, (151,530,0): 100, 92, 73, (151,531,0): 100, 92, 73, (151,532,0): 99, 91, 72, (151,533,0): 99, 91, 72, (151,534,0): 100, 89, 71, (151,535,0): 99, 88, 70, (151,536,0): 98, 85, 68, (151,537,0): 99, 86, 69, (151,538,0): 103, 87, 71, (151,539,0): 105, 89, 73, (151,540,0): 106, 90, 74, (151,541,0): 106, 90, 74, (151,542,0): 106, 90, 74, (151,543,0): 107, 89, 75, (151,544,0): 105, 85, 74, (151,545,0): 107, 84, 76, (151,546,0): 105, 82, 74, (151,547,0): 100, 80, 71, (151,548,0): 95, 75, 66, (151,549,0): 88, 68, 59, (151,550,0): 81, 61, 54, (151,551,0): 76, 57, 50, (151,552,0): 74, 55, 49, (151,553,0): 72, 55, 48, (151,554,0): 70, 52, 48, (151,555,0): 69, 51, 47, (151,556,0): 69, 51, 47, (151,557,0): 67, 52, 47, (151,558,0): 68, 53, 48, (151,559,0): 67, 54, 48, (151,560,0): 72, 58, 55, (151,561,0): 71, 57, 54, (151,562,0): 71, 57, 54, (151,563,0): 70, 56, 53, (151,564,0): 68, 57, 53, (151,565,0): 69, 58, 54, (151,566,0): 71, 60, 56, (151,567,0): 71, 62, 57, (151,568,0): 74, 65, 60, (151,569,0): 74, 67, 61, (151,570,0): 75, 68, 62, (151,571,0): 76, 69, 63, (151,572,0): 75, 68, 62, (151,573,0): 73, 66, 60, (151,574,0): 69, 64, 58, (151,575,0): 68, 64, 55, (151,576,0): 65, 63, 51, (151,577,0): 71, 64, 54, (151,578,0): 81, 64, 56, (151,579,0): 87, 64, 58, (151,580,0): 94, 66, 62, (151,581,0): 101, 73, 69, (151,582,0): 101, 78, 72, (151,583,0): 98, 81, 73, (151,584,0): 100, 87, 78, (151,585,0): 100, 87, 78, (151,586,0): 101, 86, 79, (151,587,0): 102, 87, 80, (151,588,0): 104, 87, 79, (151,589,0): 102, 88, 79, (151,590,0): 101, 88, 79, (151,591,0): 101, 88, 80, (151,592,0): 101, 86, 81, (151,593,0): 100, 85, 80, (151,594,0): 97, 82, 77, (151,595,0): 93, 78, 73, (151,596,0): 89, 74, 69, (151,597,0): 85, 70, 65, (151,598,0): 82, 67, 62, (151,599,0): 80, 65, 60, (152,0,0): 32, 24, 37, (152,1,0): 32, 24, 37, (152,2,0): 32, 24, 37, (152,3,0): 32, 24, 37, (152,4,0): 32, 24, 37, (152,5,0): 32, 24, 37, (152,6,0): 32, 24, 37, (152,7,0): 32, 24, 37, (152,8,0): 32, 24, 37, (152,9,0): 33, 25, 38, (152,10,0): 34, 26, 39, (152,11,0): 36, 28, 41, (152,12,0): 36, 28, 41, (152,13,0): 36, 28, 41, (152,14,0): 35, 27, 40, (152,15,0): 37, 26, 40, (152,16,0): 43, 29, 44, (152,17,0): 45, 28, 44, (152,18,0): 45, 28, 44, (152,19,0): 45, 28, 44, (152,20,0): 45, 28, 44, (152,21,0): 45, 28, 44, (152,22,0): 45, 28, 44, (152,23,0): 45, 28, 44, (152,24,0): 44, 27, 43, (152,25,0): 44, 27, 43, (152,26,0): 44, 27, 43, (152,27,0): 45, 28, 44, (152,28,0): 45, 28, 44, (152,29,0): 46, 29, 45, (152,30,0): 46, 29, 45, (152,31,0): 46, 30, 43, (152,32,0): 48, 30, 44, (152,33,0): 48, 30, 42, (152,34,0): 48, 30, 42, (152,35,0): 49, 31, 43, (152,36,0): 51, 31, 43, (152,37,0): 52, 32, 44, (152,38,0): 52, 32, 44, (152,39,0): 52, 32, 44, (152,40,0): 51, 29, 42, (152,41,0): 51, 29, 42, (152,42,0): 53, 29, 43, (152,43,0): 54, 30, 44, (152,44,0): 55, 31, 45, (152,45,0): 56, 32, 46, (152,46,0): 59, 32, 47, (152,47,0): 59, 32, 47, (152,48,0): 55, 31, 45, (152,49,0): 56, 32, 46, (152,50,0): 57, 33, 47, (152,51,0): 59, 35, 49, (152,52,0): 59, 35, 49, (152,53,0): 59, 35, 48, (152,54,0): 58, 34, 47, (152,55,0): 58, 34, 47, (152,56,0): 58, 35, 45, (152,57,0): 58, 35, 45, (152,58,0): 59, 36, 46, (152,59,0): 59, 36, 44, (152,60,0): 59, 36, 44, (152,61,0): 59, 36, 44, (152,62,0): 60, 37, 43, (152,63,0): 60, 37, 43, (152,64,0): 61, 35, 44, (152,65,0): 62, 35, 44, (152,66,0): 62, 35, 44, (152,67,0): 64, 34, 44, (152,68,0): 64, 34, 42, (152,69,0): 64, 34, 42, (152,70,0): 64, 34, 42, (152,71,0): 65, 34, 40, (152,72,0): 60, 29, 35, (152,73,0): 62, 29, 36, (152,74,0): 64, 32, 37, (152,75,0): 66, 34, 39, (152,76,0): 66, 34, 39, (152,77,0): 68, 33, 37, (152,78,0): 68, 33, 37, (152,79,0): 68, 33, 39, (152,80,0): 67, 34, 41, (152,81,0): 66, 33, 40, (152,82,0): 66, 33, 40, (152,83,0): 65, 32, 39, (152,84,0): 66, 31, 38, (152,85,0): 65, 30, 37, (152,86,0): 65, 30, 37, (152,87,0): 64, 29, 36, (152,88,0): 70, 35, 42, (152,89,0): 67, 34, 41, (152,90,0): 69, 34, 41, (152,91,0): 68, 33, 40, (152,92,0): 68, 33, 40, (152,93,0): 67, 32, 39, (152,94,0): 67, 32, 39, (152,95,0): 65, 32, 39, (152,96,0): 61, 30, 38, (152,97,0): 61, 31, 39, (152,98,0): 61, 31, 41, (152,99,0): 59, 32, 41, (152,100,0): 59, 32, 41, (152,101,0): 56, 30, 39, (152,102,0): 52, 29, 39, (152,103,0): 50, 29, 38, (152,104,0): 44, 22, 34, (152,105,0): 42, 22, 33, (152,106,0): 37, 20, 30, (152,107,0): 34, 18, 28, (152,108,0): 32, 16, 27, (152,109,0): 32, 16, 27, (152,110,0): 30, 17, 27, (152,111,0): 30, 17, 27, (152,112,0): 31, 15, 26, (152,113,0): 32, 16, 27, (152,114,0): 34, 18, 29, (152,115,0): 35, 19, 30, (152,116,0): 36, 20, 31, (152,117,0): 36, 20, 31, (152,118,0): 36, 20, 31, (152,119,0): 35, 19, 30, (152,120,0): 34, 18, 29, (152,121,0): 34, 18, 29, (152,122,0): 34, 18, 29, (152,123,0): 34, 18, 29, (152,124,0): 34, 18, 29, (152,125,0): 34, 18, 29, (152,126,0): 34, 18, 29, (152,127,0): 34, 18, 29, (152,128,0): 33, 20, 29, (152,129,0): 33, 20, 29, (152,130,0): 35, 19, 29, (152,131,0): 36, 20, 30, (152,132,0): 36, 21, 28, (152,133,0): 37, 22, 29, (152,134,0): 38, 21, 27, (152,135,0): 38, 21, 27, (152,136,0): 39, 20, 26, (152,137,0): 39, 20, 26, (152,138,0): 40, 21, 25, (152,139,0): 40, 21, 25, (152,140,0): 42, 22, 24, (152,141,0): 42, 22, 24, (152,142,0): 43, 23, 25, (152,143,0): 43, 23, 25, (152,144,0): 43, 23, 25, (152,145,0): 43, 23, 25, (152,146,0): 44, 24, 26, (152,147,0): 44, 24, 26, (152,148,0): 45, 25, 27, (152,149,0): 45, 25, 27, (152,150,0): 46, 26, 28, (152,151,0): 46, 26, 28, (152,152,0): 49, 29, 31, (152,153,0): 48, 28, 30, (152,154,0): 47, 27, 29, (152,155,0): 46, 26, 28, (152,156,0): 46, 26, 28, (152,157,0): 47, 27, 29, (152,158,0): 48, 28, 30, (152,159,0): 49, 29, 31, (152,160,0): 46, 24, 26, (152,161,0): 46, 24, 26, (152,162,0): 46, 24, 26, (152,163,0): 46, 24, 26, (152,164,0): 46, 24, 26, (152,165,0): 46, 24, 26, (152,166,0): 46, 24, 26, (152,167,0): 46, 24, 26, (152,168,0): 48, 26, 28, (152,169,0): 48, 26, 28, (152,170,0): 48, 26, 28, (152,171,0): 48, 26, 28, (152,172,0): 48, 26, 28, (152,173,0): 48, 26, 28, (152,174,0): 48, 26, 28, (152,175,0): 47, 27, 28, (152,176,0): 43, 22, 27, (152,177,0): 42, 23, 27, (152,178,0): 43, 23, 25, (152,179,0): 43, 23, 25, (152,180,0): 43, 23, 25, (152,181,0): 43, 23, 25, (152,182,0): 44, 22, 24, (152,183,0): 44, 22, 24, (152,184,0): 45, 21, 21, (152,185,0): 46, 22, 22, (152,186,0): 47, 23, 23, (152,187,0): 49, 25, 25, (152,188,0): 50, 24, 23, (152,189,0): 50, 24, 23, (152,190,0): 49, 23, 22, (152,191,0): 49, 23, 22, (152,192,0): 50, 24, 23, (152,193,0): 50, 24, 23, (152,194,0): 50, 24, 23, (152,195,0): 50, 24, 23, (152,196,0): 52, 24, 23, (152,197,0): 52, 24, 23, (152,198,0): 52, 24, 21, (152,199,0): 52, 24, 21, (152,200,0): 55, 26, 22, (152,201,0): 54, 25, 21, (152,202,0): 54, 23, 18, (152,203,0): 53, 22, 17, (152,204,0): 54, 23, 18, (152,205,0): 55, 24, 19, (152,206,0): 59, 26, 21, (152,207,0): 61, 28, 23, (152,208,0): 62, 29, 24, (152,209,0): 62, 29, 24, (152,210,0): 59, 28, 23, (152,211,0): 59, 28, 23, (152,212,0): 58, 27, 22, (152,213,0): 58, 27, 22, (152,214,0): 56, 27, 21, (152,215,0): 56, 27, 21, (152,216,0): 53, 26, 19, (152,217,0): 53, 26, 19, (152,218,0): 53, 26, 19, (152,219,0): 53, 26, 19, (152,220,0): 51, 26, 19, (152,221,0): 51, 26, 19, (152,222,0): 51, 26, 19, (152,223,0): 51, 27, 17, (152,224,0): 54, 25, 17, (152,225,0): 55, 27, 16, (152,226,0): 55, 27, 16, (152,227,0): 56, 28, 17, (152,228,0): 56, 28, 17, (152,229,0): 57, 29, 18, (152,230,0): 57, 29, 18, (152,231,0): 57, 29, 18, (152,232,0): 53, 25, 14, (152,233,0): 53, 25, 14, (152,234,0): 53, 25, 14, (152,235,0): 53, 25, 14, (152,236,0): 53, 25, 14, (152,237,0): 53, 25, 14, (152,238,0): 53, 25, 14, (152,239,0): 53, 25, 14, (152,240,0): 54, 28, 15, (152,241,0): 53, 27, 14, (152,242,0): 54, 26, 14, (152,243,0): 54, 26, 14, (152,244,0): 55, 27, 15, (152,245,0): 57, 29, 17, (152,246,0): 60, 30, 19, (152,247,0): 61, 31, 20, (152,248,0): 64, 32, 21, (152,249,0): 64, 32, 21, (152,250,0): 64, 32, 21, (152,251,0): 65, 33, 22, (152,252,0): 66, 32, 22, (152,253,0): 67, 33, 23, (152,254,0): 67, 33, 23, (152,255,0): 67, 33, 23, (152,256,0): 69, 37, 24, (152,257,0): 67, 38, 24, (152,258,0): 67, 37, 26, (152,259,0): 67, 37, 26, (152,260,0): 67, 37, 26, (152,261,0): 67, 37, 26, (152,262,0): 67, 37, 27, (152,263,0): 67, 37, 27, (152,264,0): 67, 37, 29, (152,265,0): 66, 36, 28, (152,266,0): 65, 35, 27, (152,267,0): 65, 35, 27, (152,268,0): 65, 34, 29, (152,269,0): 65, 34, 29, (152,270,0): 66, 35, 30, (152,271,0): 69, 36, 31, (152,272,0): 73, 38, 34, (152,273,0): 73, 38, 34, (152,274,0): 72, 37, 33, (152,275,0): 72, 37, 33, (152,276,0): 72, 37, 31, (152,277,0): 72, 38, 29, (152,278,0): 71, 37, 28, (152,279,0): 71, 37, 27, (152,280,0): 78, 44, 32, (152,281,0): 79, 46, 31, (152,282,0): 80, 47, 32, (152,283,0): 82, 49, 32, (152,284,0): 83, 50, 31, (152,285,0): 85, 52, 33, (152,286,0): 86, 53, 34, (152,287,0): 87, 54, 35, (152,288,0): 89, 54, 35, (152,289,0): 89, 54, 35, (152,290,0): 90, 55, 36, (152,291,0): 90, 55, 36, (152,292,0): 91, 56, 37, (152,293,0): 91, 56, 37, (152,294,0): 90, 57, 38, (152,295,0): 90, 57, 38, (152,296,0): 94, 61, 42, (152,297,0): 93, 62, 42, (152,298,0): 93, 62, 42, (152,299,0): 92, 64, 43, (152,300,0): 94, 66, 45, (152,301,0): 96, 68, 47, (152,302,0): 98, 70, 49, (152,303,0): 100, 72, 50, (152,304,0): 106, 76, 50, (152,305,0): 109, 79, 51, (152,306,0): 113, 82, 53, (152,307,0): 118, 85, 54, (152,308,0): 125, 91, 54, (152,309,0): 135, 100, 58, (152,310,0): 148, 112, 60, (152,311,0): 157, 121, 59, (152,312,0): 166, 132, 61, (152,313,0): 182, 149, 72, (152,314,0): 193, 161, 78, (152,315,0): 186, 156, 70, (152,316,0): 174, 146, 62, (152,317,0): 171, 143, 59, (152,318,0): 170, 143, 62, (152,319,0): 168, 141, 64, (152,320,0): 164, 138, 64, (152,321,0): 165, 138, 69, (152,322,0): 166, 139, 72, (152,323,0): 166, 138, 73, (152,324,0): 165, 136, 76, (152,325,0): 162, 133, 77, (152,326,0): 159, 129, 75, (152,327,0): 158, 128, 78, (152,328,0): 157, 126, 79, (152,329,0): 157, 126, 80, (152,330,0): 158, 127, 81, (152,331,0): 158, 127, 81, (152,332,0): 160, 129, 83, (152,333,0): 162, 131, 85, (152,334,0): 163, 132, 86, (152,335,0): 164, 133, 86, (152,336,0): 171, 139, 88, (152,337,0): 177, 144, 91, (152,338,0): 183, 150, 97, (152,339,0): 186, 153, 100, (152,340,0): 186, 153, 99, (152,341,0): 187, 154, 100, (152,342,0): 190, 155, 101, (152,343,0): 192, 157, 101, (152,344,0): 197, 162, 106, (152,345,0): 200, 164, 106, (152,346,0): 201, 165, 107, (152,347,0): 203, 164, 107, (152,348,0): 201, 162, 105, (152,349,0): 201, 162, 105, (152,350,0): 204, 165, 106, (152,351,0): 207, 168, 109, (152,352,0): 205, 166, 109, (152,353,0): 206, 167, 110, (152,354,0): 209, 169, 110, (152,355,0): 212, 170, 112, (152,356,0): 216, 170, 111, (152,357,0): 218, 167, 110, (152,358,0): 218, 166, 108, (152,359,0): 220, 164, 105, (152,360,0): 223, 164, 104, (152,361,0): 223, 163, 101, (152,362,0): 222, 162, 100, (152,363,0): 224, 164, 101, (152,364,0): 228, 169, 103, (152,365,0): 233, 176, 109, (152,366,0): 240, 183, 116, (152,367,0): 244, 187, 118, (152,368,0): 239, 180, 110, (152,369,0): 235, 176, 106, (152,370,0): 232, 175, 104, (152,371,0): 235, 178, 109, (152,372,0): 240, 186, 116, (152,373,0): 243, 190, 122, (152,374,0): 238, 188, 119, (152,375,0): 233, 184, 117, (152,376,0): 220, 172, 106, (152,377,0): 219, 171, 107, (152,378,0): 216, 171, 106, (152,379,0): 214, 170, 107, (152,380,0): 212, 168, 105, (152,381,0): 210, 166, 105, (152,382,0): 209, 165, 104, (152,383,0): 207, 166, 104, (152,384,0): 210, 168, 108, (152,385,0): 211, 170, 108, (152,386,0): 216, 172, 111, (152,387,0): 220, 176, 113, (152,388,0): 224, 180, 117, (152,389,0): 227, 183, 118, (152,390,0): 230, 186, 121, (152,391,0): 231, 188, 120, (152,392,0): 231, 186, 118, (152,393,0): 230, 186, 115, (152,394,0): 229, 185, 114, (152,395,0): 231, 184, 112, (152,396,0): 233, 186, 114, (152,397,0): 237, 191, 116, (152,398,0): 243, 195, 121, (152,399,0): 243, 199, 124, (152,400,0): 245, 209, 133, (152,401,0): 242, 210, 133, (152,402,0): 241, 210, 130, (152,403,0): 239, 211, 128, (152,404,0): 238, 210, 126, (152,405,0): 238, 211, 124, (152,406,0): 237, 210, 119, (152,407,0): 236, 212, 116, (152,408,0): 241, 217, 119, (152,409,0): 242, 220, 118, (152,410,0): 246, 225, 118, (152,411,0): 250, 229, 120, (152,412,0): 254, 234, 121, (152,413,0): 255, 238, 122, (152,414,0): 255, 240, 124, (152,415,0): 255, 240, 125, (152,416,0): 255, 234, 123, (152,417,0): 255, 231, 121, (152,418,0): 254, 227, 120, (152,419,0): 252, 228, 122, (152,420,0): 250, 227, 123, (152,421,0): 245, 224, 119, (152,422,0): 239, 217, 115, (152,423,0): 231, 212, 109, (152,424,0): 239, 217, 115, (152,425,0): 235, 213, 111, (152,426,0): 232, 209, 105, (152,427,0): 234, 209, 106, (152,428,0): 241, 214, 109, (152,429,0): 246, 219, 112, (152,430,0): 248, 220, 111, (152,431,0): 250, 220, 108, (152,432,0): 255, 222, 106, (152,433,0): 255, 223, 107, (152,434,0): 254, 222, 109, (152,435,0): 249, 219, 109, (152,436,0): 239, 210, 106, (152,437,0): 228, 200, 101, (152,438,0): 216, 191, 98, (152,439,0): 207, 186, 95, (152,440,0): 200, 182, 96, (152,441,0): 197, 180, 98, (152,442,0): 191, 178, 99, (152,443,0): 191, 180, 101, (152,444,0): 191, 182, 103, (152,445,0): 191, 184, 106, (152,446,0): 189, 181, 106, (152,447,0): 188, 179, 104, (152,448,0): 191, 177, 102, (152,449,0): 194, 176, 102, (152,450,0): 194, 175, 106, (152,451,0): 193, 174, 105, (152,452,0): 192, 173, 107, (152,453,0): 190, 169, 104, (152,454,0): 188, 167, 104, (152,455,0): 189, 165, 105, (152,456,0): 186, 162, 102, (152,457,0): 187, 163, 103, (152,458,0): 188, 162, 103, (152,459,0): 186, 160, 99, (152,460,0): 184, 158, 97, (152,461,0): 186, 161, 97, (152,462,0): 193, 165, 102, (152,463,0): 200, 170, 106, (152,464,0): 202, 167, 101, (152,465,0): 205, 168, 100, (152,466,0): 207, 170, 102, (152,467,0): 207, 172, 104, (152,468,0): 206, 173, 104, (152,469,0): 204, 173, 106, (152,470,0): 202, 173, 105, (152,471,0): 200, 173, 106, (152,472,0): 195, 170, 103, (152,473,0): 194, 171, 103, (152,474,0): 192, 171, 104, (152,475,0): 190, 171, 103, (152,476,0): 188, 170, 104, (152,477,0): 183, 168, 101, (152,478,0): 181, 166, 99, (152,479,0): 177, 166, 100, (152,480,0): 173, 165, 100, (152,481,0): 171, 166, 100, (152,482,0): 171, 166, 102, (152,483,0): 170, 164, 102, (152,484,0): 167, 163, 102, (152,485,0): 165, 161, 100, (152,486,0): 163, 158, 102, (152,487,0): 161, 156, 101, (152,488,0): 159, 156, 103, (152,489,0): 156, 153, 102, (152,490,0): 153, 151, 102, (152,491,0): 152, 150, 102, (152,492,0): 150, 147, 102, (152,493,0): 145, 142, 99, (152,494,0): 138, 137, 93, (152,495,0): 132, 130, 89, (152,496,0): 123, 119, 82, (152,497,0): 122, 118, 83, (152,498,0): 120, 115, 83, (152,499,0): 118, 113, 81, (152,500,0): 116, 111, 79, (152,501,0): 114, 109, 77, (152,502,0): 112, 107, 77, (152,503,0): 111, 106, 76, (152,504,0): 109, 104, 75, (152,505,0): 108, 103, 74, (152,506,0): 106, 101, 72, (152,507,0): 104, 99, 70, (152,508,0): 104, 98, 72, (152,509,0): 104, 98, 72, (152,510,0): 104, 98, 72, (152,511,0): 105, 98, 70, (152,512,0): 110, 101, 72, (152,513,0): 111, 102, 73, (152,514,0): 114, 103, 75, (152,515,0): 115, 106, 77, (152,516,0): 117, 105, 79, (152,517,0): 116, 106, 79, (152,518,0): 117, 105, 79, (152,519,0): 115, 105, 78, (152,520,0): 113, 101, 77, (152,521,0): 111, 101, 76, (152,522,0): 110, 98, 76, (152,523,0): 107, 96, 74, (152,524,0): 107, 95, 73, (152,525,0): 106, 95, 73, (152,526,0): 107, 94, 75, (152,527,0): 107, 96, 76, (152,528,0): 106, 95, 75, (152,529,0): 102, 91, 71, (152,530,0): 102, 91, 71, (152,531,0): 105, 94, 74, (152,532,0): 102, 91, 71, (152,533,0): 97, 86, 66, (152,534,0): 99, 88, 68, (152,535,0): 107, 96, 76, (152,536,0): 102, 89, 70, (152,537,0): 103, 90, 71, (152,538,0): 104, 91, 72, (152,539,0): 105, 92, 73, (152,540,0): 107, 92, 73, (152,541,0): 106, 91, 72, (152,542,0): 105, 90, 71, (152,543,0): 105, 88, 72, (152,544,0): 110, 90, 79, (152,545,0): 108, 88, 79, (152,546,0): 105, 85, 76, (152,547,0): 100, 80, 71, (152,548,0): 94, 74, 65, (152,549,0): 85, 67, 57, (152,550,0): 79, 60, 53, (152,551,0): 75, 56, 49, (152,552,0): 73, 54, 48, (152,553,0): 71, 54, 47, (152,554,0): 71, 53, 49, (152,555,0): 69, 54, 49, (152,556,0): 69, 54, 49, (152,557,0): 69, 54, 49, (152,558,0): 68, 53, 48, (152,559,0): 67, 54, 48, (152,560,0): 72, 59, 53, (152,561,0): 70, 59, 53, (152,562,0): 69, 58, 52, (152,563,0): 70, 59, 53, (152,564,0): 71, 60, 54, (152,565,0): 73, 62, 56, (152,566,0): 74, 65, 58, (152,567,0): 76, 67, 60, (152,568,0): 75, 66, 59, (152,569,0): 76, 69, 61, (152,570,0): 78, 71, 63, (152,571,0): 78, 74, 65, (152,572,0): 79, 75, 66, (152,573,0): 80, 76, 67, (152,574,0): 80, 76, 67, (152,575,0): 78, 75, 66, (152,576,0): 75, 75, 63, (152,577,0): 78, 74, 62, (152,578,0): 84, 71, 63, (152,579,0): 89, 68, 63, (152,580,0): 93, 68, 64, (152,581,0): 94, 70, 66, (152,582,0): 93, 74, 68, (152,583,0): 91, 76, 69, (152,584,0): 95, 82, 74, (152,585,0): 96, 83, 75, (152,586,0): 98, 84, 75, (152,587,0): 101, 84, 76, (152,588,0): 102, 85, 78, (152,589,0): 102, 87, 80, (152,590,0): 100, 90, 81, (152,591,0): 100, 90, 81, (152,592,0): 98, 85, 79, (152,593,0): 98, 83, 80, (152,594,0): 96, 81, 78, (152,595,0): 94, 79, 76, (152,596,0): 91, 76, 73, (152,597,0): 88, 73, 70, (152,598,0): 86, 71, 68, (152,599,0): 85, 70, 67, (153,0,0): 32, 24, 37, (153,1,0): 32, 24, 37, (153,2,0): 32, 24, 37, (153,3,0): 32, 24, 37, (153,4,0): 32, 24, 37, (153,5,0): 32, 24, 37, (153,6,0): 32, 24, 37, (153,7,0): 32, 24, 37, (153,8,0): 33, 25, 38, (153,9,0): 34, 26, 39, (153,10,0): 35, 27, 40, (153,11,0): 36, 28, 41, (153,12,0): 37, 29, 42, (153,13,0): 37, 29, 42, (153,14,0): 36, 28, 41, (153,15,0): 38, 27, 41, (153,16,0): 43, 29, 44, (153,17,0): 45, 28, 44, (153,18,0): 45, 28, 44, (153,19,0): 45, 28, 44, (153,20,0): 45, 28, 44, (153,21,0): 45, 28, 44, (153,22,0): 45, 28, 44, (153,23,0): 45, 28, 44, (153,24,0): 44, 27, 43, (153,25,0): 44, 27, 43, (153,26,0): 44, 27, 43, (153,27,0): 45, 28, 44, (153,28,0): 45, 28, 44, (153,29,0): 46, 29, 45, (153,30,0): 46, 29, 45, (153,31,0): 46, 30, 43, (153,32,0): 48, 30, 44, (153,33,0): 48, 30, 42, (153,34,0): 48, 30, 42, (153,35,0): 49, 31, 43, (153,36,0): 51, 31, 43, (153,37,0): 52, 32, 44, (153,38,0): 52, 32, 44, (153,39,0): 52, 32, 44, (153,40,0): 51, 29, 42, (153,41,0): 51, 29, 42, (153,42,0): 53, 29, 43, (153,43,0): 54, 30, 44, (153,44,0): 55, 31, 45, (153,45,0): 56, 32, 46, (153,46,0): 59, 32, 47, (153,47,0): 60, 33, 48, (153,48,0): 57, 30, 45, (153,49,0): 56, 32, 46, (153,50,0): 59, 32, 47, (153,51,0): 59, 35, 49, (153,52,0): 61, 35, 48, (153,53,0): 59, 35, 48, (153,54,0): 60, 34, 47, (153,55,0): 58, 35, 45, (153,56,0): 60, 34, 45, (153,57,0): 58, 35, 43, (153,58,0): 60, 34, 43, (153,59,0): 59, 36, 44, (153,60,0): 61, 35, 44, (153,61,0): 59, 36, 44, (153,62,0): 61, 36, 42, (153,63,0): 61, 36, 42, (153,64,0): 62, 35, 44, (153,65,0): 64, 34, 44, (153,66,0): 64, 34, 44, (153,67,0): 64, 34, 42, (153,68,0): 64, 34, 42, (153,69,0): 65, 34, 42, (153,70,0): 65, 34, 40, (153,71,0): 65, 34, 40, (153,72,0): 62, 29, 36, (153,73,0): 63, 31, 36, (153,74,0): 65, 33, 38, (153,75,0): 68, 33, 39, (153,76,0): 69, 34, 38, (153,77,0): 69, 34, 38, (153,78,0): 68, 33, 37, (153,79,0): 68, 33, 37, (153,80,0): 67, 35, 40, (153,81,0): 66, 33, 40, (153,82,0): 66, 33, 40, (153,83,0): 65, 32, 39, (153,84,0): 66, 31, 38, (153,85,0): 66, 31, 38, (153,86,0): 65, 30, 37, (153,87,0): 65, 30, 37, (153,88,0): 70, 35, 42, (153,89,0): 69, 34, 41, (153,90,0): 70, 33, 41, (153,91,0): 70, 33, 41, (153,92,0): 69, 32, 40, (153,93,0): 69, 32, 40, (153,94,0): 70, 30, 39, (153,95,0): 68, 31, 39, (153,96,0): 63, 30, 39, (153,97,0): 62, 31, 39, (153,98,0): 63, 31, 42, (153,99,0): 62, 32, 42, (153,100,0): 61, 31, 41, (153,101,0): 57, 30, 39, (153,102,0): 54, 28, 39, (153,103,0): 51, 28, 38, (153,104,0): 45, 21, 34, (153,105,0): 43, 21, 33, (153,106,0): 40, 20, 31, (153,107,0): 35, 18, 28, (153,108,0): 33, 17, 28, (153,109,0): 32, 16, 27, (153,110,0): 30, 17, 27, (153,111,0): 30, 17, 27, (153,112,0): 31, 15, 26, (153,113,0): 32, 16, 27, (153,114,0): 34, 18, 29, (153,115,0): 35, 19, 30, (153,116,0): 36, 20, 31, (153,117,0): 36, 20, 31, (153,118,0): 36, 20, 31, (153,119,0): 35, 19, 30, (153,120,0): 34, 18, 29, (153,121,0): 34, 18, 29, (153,122,0): 34, 18, 29, (153,123,0): 34, 18, 29, (153,124,0): 34, 18, 29, (153,125,0): 34, 18, 29, (153,126,0): 34, 18, 29, (153,127,0): 34, 18, 29, (153,128,0): 33, 20, 29, (153,129,0): 33, 20, 29, (153,130,0): 35, 19, 29, (153,131,0): 36, 20, 30, (153,132,0): 36, 21, 28, (153,133,0): 37, 22, 29, (153,134,0): 38, 21, 27, (153,135,0): 38, 21, 27, (153,136,0): 39, 20, 26, (153,137,0): 39, 20, 26, (153,138,0): 40, 21, 25, (153,139,0): 40, 21, 25, (153,140,0): 42, 22, 24, (153,141,0): 42, 22, 24, (153,142,0): 43, 23, 25, (153,143,0): 43, 23, 25, (153,144,0): 43, 23, 25, (153,145,0): 44, 24, 26, (153,146,0): 44, 24, 26, (153,147,0): 45, 25, 27, (153,148,0): 45, 25, 27, (153,149,0): 46, 26, 28, (153,150,0): 46, 26, 28, (153,151,0): 46, 26, 28, (153,152,0): 49, 29, 31, (153,153,0): 48, 28, 30, (153,154,0): 47, 27, 29, (153,155,0): 46, 26, 28, (153,156,0): 46, 26, 28, (153,157,0): 47, 27, 29, (153,158,0): 48, 28, 30, (153,159,0): 49, 29, 31, (153,160,0): 46, 24, 26, (153,161,0): 46, 24, 26, (153,162,0): 46, 24, 26, (153,163,0): 46, 24, 26, (153,164,0): 46, 24, 26, (153,165,0): 46, 24, 26, (153,166,0): 46, 24, 26, (153,167,0): 46, 24, 26, (153,168,0): 48, 26, 28, (153,169,0): 48, 26, 28, (153,170,0): 48, 26, 28, (153,171,0): 48, 26, 28, (153,172,0): 48, 26, 28, (153,173,0): 48, 26, 28, (153,174,0): 48, 26, 28, (153,175,0): 47, 27, 28, (153,176,0): 44, 23, 28, (153,177,0): 43, 24, 28, (153,178,0): 44, 24, 26, (153,179,0): 44, 24, 26, (153,180,0): 44, 24, 26, (153,181,0): 44, 24, 26, (153,182,0): 45, 23, 25, (153,183,0): 45, 23, 25, (153,184,0): 45, 21, 21, (153,185,0): 46, 22, 22, (153,186,0): 47, 23, 23, (153,187,0): 49, 25, 25, (153,188,0): 50, 24, 23, (153,189,0): 50, 24, 23, (153,190,0): 49, 23, 22, (153,191,0): 49, 23, 22, (153,192,0): 50, 24, 23, (153,193,0): 50, 24, 23, (153,194,0): 50, 24, 23, (153,195,0): 50, 24, 23, (153,196,0): 52, 24, 23, (153,197,0): 52, 24, 23, (153,198,0): 52, 24, 21, (153,199,0): 52, 24, 21, (153,200,0): 55, 26, 22, (153,201,0): 54, 25, 21, (153,202,0): 54, 23, 18, (153,203,0): 53, 22, 17, (153,204,0): 54, 23, 18, (153,205,0): 55, 24, 19, (153,206,0): 59, 26, 21, (153,207,0): 60, 27, 22, (153,208,0): 62, 29, 24, (153,209,0): 61, 28, 23, (153,210,0): 59, 28, 23, (153,211,0): 58, 27, 22, (153,212,0): 58, 27, 22, (153,213,0): 57, 26, 21, (153,214,0): 56, 27, 21, (153,215,0): 56, 27, 21, (153,216,0): 53, 26, 19, (153,217,0): 53, 26, 19, (153,218,0): 53, 26, 19, (153,219,0): 53, 26, 19, (153,220,0): 51, 26, 19, (153,221,0): 51, 26, 19, (153,222,0): 51, 26, 19, (153,223,0): 51, 27, 17, (153,224,0): 54, 25, 17, (153,225,0): 54, 26, 15, (153,226,0): 54, 26, 15, (153,227,0): 55, 27, 16, (153,228,0): 55, 27, 16, (153,229,0): 56, 28, 17, (153,230,0): 56, 28, 17, (153,231,0): 56, 28, 17, (153,232,0): 53, 25, 14, (153,233,0): 53, 25, 14, (153,234,0): 53, 25, 14, (153,235,0): 53, 25, 14, (153,236,0): 53, 25, 14, (153,237,0): 53, 25, 14, (153,238,0): 53, 25, 14, (153,239,0): 53, 25, 14, (153,240,0): 54, 28, 15, (153,241,0): 54, 28, 15, (153,242,0): 54, 26, 14, (153,243,0): 54, 26, 14, (153,244,0): 56, 28, 16, (153,245,0): 57, 29, 17, (153,246,0): 60, 30, 19, (153,247,0): 61, 31, 20, (153,248,0): 64, 32, 21, (153,249,0): 64, 32, 21, (153,250,0): 64, 32, 21, (153,251,0): 65, 33, 22, (153,252,0): 66, 32, 22, (153,253,0): 67, 33, 23, (153,254,0): 67, 33, 23, (153,255,0): 66, 34, 23, (153,256,0): 67, 38, 24, (153,257,0): 67, 38, 24, (153,258,0): 67, 37, 26, (153,259,0): 67, 37, 26, (153,260,0): 67, 37, 26, (153,261,0): 67, 37, 26, (153,262,0): 67, 37, 27, (153,263,0): 67, 37, 27, (153,264,0): 67, 37, 29, (153,265,0): 66, 36, 28, (153,266,0): 65, 35, 27, (153,267,0): 64, 34, 26, (153,268,0): 64, 33, 28, (153,269,0): 65, 34, 29, (153,270,0): 66, 35, 30, (153,271,0): 67, 36, 31, (153,272,0): 71, 38, 33, (153,273,0): 72, 37, 33, (153,274,0): 72, 37, 33, (153,275,0): 72, 37, 33, (153,276,0): 72, 37, 31, (153,277,0): 72, 38, 29, (153,278,0): 72, 38, 29, (153,279,0): 72, 38, 28, (153,280,0): 78, 44, 32, (153,281,0): 79, 46, 31, (153,282,0): 80, 47, 32, (153,283,0): 81, 48, 31, (153,284,0): 83, 50, 31, (153,285,0): 85, 52, 33, (153,286,0): 86, 53, 34, (153,287,0): 86, 53, 34, (153,288,0): 89, 54, 35, (153,289,0): 89, 54, 35, (153,290,0): 89, 54, 35, (153,291,0): 90, 55, 36, (153,292,0): 90, 55, 36, (153,293,0): 89, 56, 37, (153,294,0): 89, 56, 37, (153,295,0): 89, 58, 38, (153,296,0): 92, 61, 41, (153,297,0): 92, 61, 41, (153,298,0): 90, 62, 41, (153,299,0): 91, 63, 42, (153,300,0): 93, 65, 44, (153,301,0): 95, 67, 46, (153,302,0): 97, 69, 48, (153,303,0): 99, 71, 49, (153,304,0): 106, 76, 50, (153,305,0): 108, 78, 50, (153,306,0): 112, 81, 52, (153,307,0): 116, 85, 54, (153,308,0): 122, 89, 56, (153,309,0): 132, 98, 60, (153,310,0): 143, 109, 61, (153,311,0): 150, 118, 61, (153,312,0): 162, 129, 62, (153,313,0): 176, 146, 73, (153,314,0): 188, 159, 79, (153,315,0): 185, 157, 74, (153,316,0): 177, 151, 66, (153,317,0): 173, 148, 64, (153,318,0): 171, 146, 64, (153,319,0): 167, 144, 64, (153,320,0): 165, 141, 67, (153,321,0): 164, 141, 71, (153,322,0): 166, 141, 74, (153,323,0): 164, 141, 74, (153,324,0): 164, 138, 77, (153,325,0): 160, 135, 78, (153,326,0): 159, 132, 77, (153,327,0): 156, 130, 79, (153,328,0): 156, 128, 80, (153,329,0): 155, 128, 81, (153,330,0): 157, 129, 82, (153,331,0): 157, 130, 83, (153,332,0): 159, 131, 84, (153,333,0): 159, 132, 85, (153,334,0): 162, 134, 87, (153,335,0): 162, 134, 86, (153,336,0): 170, 138, 87, (153,337,0): 176, 143, 90, (153,338,0): 182, 149, 96, (153,339,0): 185, 152, 99, (153,340,0): 185, 152, 99, (153,341,0): 185, 152, 98, (153,342,0): 189, 154, 100, (153,343,0): 190, 155, 101, (153,344,0): 193, 158, 102, (153,345,0): 195, 160, 104, (153,346,0): 197, 162, 106, (153,347,0): 197, 162, 104, (153,348,0): 197, 161, 103, (153,349,0): 196, 161, 103, (153,350,0): 199, 163, 103, (153,351,0): 201, 167, 106, (153,352,0): 200, 165, 107, (153,353,0): 202, 167, 109, (153,354,0): 205, 169, 109, (153,355,0): 210, 170, 111, (153,356,0): 214, 169, 110, (153,357,0): 217, 168, 109, (153,358,0): 219, 167, 107, (153,359,0): 221, 165, 104, (153,360,0): 223, 165, 102, (153,361,0): 225, 164, 101, (153,362,0): 225, 164, 101, (153,363,0): 228, 164, 100, (153,364,0): 232, 169, 102, (153,365,0): 238, 175, 106, (153,366,0): 244, 181, 112, (153,367,0): 247, 184, 115, (153,368,0): 246, 183, 112, (153,369,0): 240, 180, 108, (153,370,0): 237, 177, 107, (153,371,0): 239, 180, 110, (153,372,0): 245, 188, 119, (153,373,0): 245, 192, 122, (153,374,0): 241, 191, 122, (153,375,0): 236, 187, 118, (153,376,0): 222, 175, 107, (153,377,0): 219, 174, 107, (153,378,0): 217, 172, 107, (153,379,0): 215, 170, 105, (153,380,0): 212, 168, 105, (153,381,0): 211, 167, 104, (153,382,0): 209, 165, 104, (153,383,0): 208, 164, 103, (153,384,0): 210, 169, 107, (153,385,0): 212, 171, 107, (153,386,0): 217, 173, 110, (153,387,0): 220, 176, 111, (153,388,0): 224, 180, 115, (153,389,0): 228, 185, 117, (153,390,0): 230, 187, 119, (153,391,0): 232, 189, 120, (153,392,0): 232, 190, 118, (153,393,0): 231, 189, 115, (153,394,0): 231, 187, 114, (153,395,0): 231, 187, 112, (153,396,0): 233, 189, 114, (153,397,0): 237, 194, 116, (153,398,0): 241, 198, 120, (153,399,0): 243, 202, 123, (153,400,0): 246, 210, 132, (153,401,0): 243, 212, 132, (153,402,0): 240, 212, 129, (153,403,0): 240, 212, 128, (153,404,0): 240, 213, 126, (153,405,0): 239, 212, 121, (153,406,0): 238, 213, 120, (153,407,0): 238, 214, 116, (153,408,0): 241, 219, 117, (153,409,0): 243, 222, 117, (153,410,0): 247, 226, 117, (153,411,0): 251, 231, 119, (153,412,0): 252, 235, 121, (153,413,0): 255, 238, 122, (153,414,0): 255, 240, 122, (153,415,0): 255, 239, 124, (153,416,0): 255, 238, 126, (153,417,0): 255, 235, 125, (153,418,0): 255, 233, 125, (153,419,0): 255, 233, 124, (153,420,0): 253, 232, 125, (153,421,0): 247, 228, 123, (153,422,0): 241, 222, 119, (153,423,0): 236, 217, 114, (153,424,0): 239, 220, 117, (153,425,0): 237, 218, 113, (153,426,0): 236, 215, 110, (153,427,0): 236, 213, 107, (153,428,0): 239, 215, 107, (153,429,0): 243, 217, 107, (153,430,0): 246, 218, 109, (153,431,0): 249, 219, 107, (153,432,0): 255, 226, 110, (153,433,0): 255, 226, 110, (153,434,0): 255, 225, 113, (153,435,0): 248, 220, 111, (153,436,0): 238, 211, 108, (153,437,0): 224, 200, 102, (153,438,0): 210, 189, 96, (153,439,0): 203, 183, 96, (153,440,0): 196, 179, 97, (153,441,0): 193, 178, 97, (153,442,0): 188, 175, 97, (153,443,0): 188, 176, 100, (153,444,0): 189, 180, 103, (153,445,0): 189, 182, 104, (153,446,0): 189, 180, 105, (153,447,0): 190, 178, 104, (153,448,0): 193, 177, 102, (153,449,0): 194, 176, 102, (153,450,0): 194, 176, 104, (153,451,0): 195, 175, 106, (153,452,0): 193, 172, 105, (153,453,0): 191, 170, 105, (153,454,0): 191, 167, 105, (153,455,0): 190, 166, 104, (153,456,0): 187, 163, 101, (153,457,0): 189, 163, 102, (153,458,0): 190, 164, 103, (153,459,0): 188, 163, 99, (153,460,0): 188, 160, 97, (153,461,0): 189, 161, 96, (153,462,0): 193, 165, 100, (153,463,0): 199, 168, 101, (153,464,0): 205, 168, 98, (153,465,0): 207, 168, 99, (153,466,0): 208, 171, 101, (153,467,0): 207, 173, 102, (153,468,0): 206, 173, 104, (153,469,0): 204, 174, 104, (153,470,0): 201, 172, 104, (153,471,0): 200, 173, 104, (153,472,0): 194, 169, 102, (153,473,0): 192, 172, 103, (153,474,0): 191, 172, 104, (153,475,0): 190, 173, 104, (153,476,0): 187, 172, 105, (153,477,0): 184, 171, 103, (153,478,0): 182, 169, 101, (153,479,0): 178, 169, 102, (153,480,0): 175, 167, 102, (153,481,0): 173, 168, 102, (153,482,0): 172, 167, 103, (153,483,0): 170, 166, 102, (153,484,0): 168, 164, 103, (153,485,0): 165, 160, 102, (153,486,0): 162, 157, 101, (153,487,0): 159, 156, 101, (153,488,0): 158, 155, 104, (153,489,0): 154, 152, 103, (153,490,0): 152, 150, 102, (153,491,0): 150, 147, 102, (153,492,0): 149, 146, 103, (153,493,0): 143, 141, 100, (153,494,0): 136, 134, 93, (153,495,0): 131, 129, 90, (153,496,0): 123, 119, 84, (153,497,0): 122, 118, 83, (153,498,0): 120, 115, 83, (153,499,0): 118, 113, 81, (153,500,0): 116, 111, 79, (153,501,0): 114, 109, 77, (153,502,0): 112, 107, 77, (153,503,0): 111, 106, 76, (153,504,0): 109, 104, 75, (153,505,0): 108, 103, 74, (153,506,0): 107, 102, 73, (153,507,0): 105, 100, 71, (153,508,0): 105, 99, 73, (153,509,0): 105, 99, 73, (153,510,0): 105, 99, 73, (153,511,0): 106, 100, 74, (153,512,0): 108, 101, 73, (153,513,0): 111, 102, 73, (153,514,0): 113, 104, 75, (153,515,0): 115, 106, 77, (153,516,0): 116, 106, 79, (153,517,0): 116, 106, 79, (153,518,0): 116, 106, 79, (153,519,0): 115, 105, 78, (153,520,0): 113, 103, 78, (153,521,0): 112, 102, 77, (153,522,0): 110, 99, 77, (153,523,0): 108, 97, 75, (153,524,0): 107, 96, 74, (153,525,0): 107, 96, 74, (153,526,0): 107, 96, 76, (153,527,0): 107, 96, 76, (153,528,0): 110, 95, 76, (153,529,0): 106, 91, 72, (153,530,0): 105, 90, 71, (153,531,0): 108, 93, 74, (153,532,0): 105, 92, 73, (153,533,0): 100, 87, 68, (153,534,0): 100, 87, 68, (153,535,0): 106, 93, 74, (153,536,0): 103, 90, 71, (153,537,0): 103, 90, 71, (153,538,0): 104, 91, 72, (153,539,0): 104, 91, 72, (153,540,0): 106, 91, 72, (153,541,0): 106, 91, 72, (153,542,0): 105, 90, 71, (153,543,0): 105, 89, 73, (153,544,0): 109, 89, 78, (153,545,0): 108, 88, 79, (153,546,0): 105, 85, 76, (153,547,0): 100, 80, 71, (153,548,0): 92, 74, 64, (153,549,0): 86, 68, 58, (153,550,0): 80, 61, 54, (153,551,0): 75, 58, 50, (153,552,0): 73, 56, 49, (153,553,0): 73, 56, 49, (153,554,0): 70, 55, 50, (153,555,0): 70, 55, 50, (153,556,0): 70, 55, 50, (153,557,0): 69, 54, 49, (153,558,0): 68, 55, 49, (153,559,0): 68, 55, 49, (153,560,0): 70, 59, 53, (153,561,0): 70, 59, 53, (153,562,0): 70, 59, 53, (153,563,0): 71, 60, 54, (153,564,0): 72, 61, 55, (153,565,0): 73, 64, 57, (153,566,0): 75, 66, 59, (153,567,0): 76, 69, 61, (153,568,0): 77, 70, 62, (153,569,0): 78, 71, 63, (153,570,0): 78, 74, 65, (153,571,0): 80, 76, 67, (153,572,0): 81, 77, 68, (153,573,0): 81, 77, 68, (153,574,0): 81, 77, 68, (153,575,0): 80, 78, 66, (153,576,0): 76, 77, 63, (153,577,0): 78, 76, 63, (153,578,0): 82, 72, 63, (153,579,0): 87, 69, 65, (153,580,0): 90, 69, 66, (153,581,0): 92, 71, 68, (153,582,0): 92, 74, 70, (153,583,0): 90, 77, 69, (153,584,0): 93, 83, 74, (153,585,0): 95, 82, 74, (153,586,0): 97, 83, 74, (153,587,0): 100, 83, 75, (153,588,0): 102, 85, 78, (153,589,0): 101, 86, 79, (153,590,0): 99, 89, 80, (153,591,0): 99, 88, 82, (153,592,0): 98, 84, 81, (153,593,0): 98, 83, 80, (153,594,0): 96, 81, 78, (153,595,0): 94, 79, 76, (153,596,0): 91, 76, 73, (153,597,0): 88, 73, 70, (153,598,0): 86, 71, 68, (153,599,0): 85, 70, 67, (154,0,0): 32, 24, 37, (154,1,0): 32, 24, 37, (154,2,0): 32, 24, 37, (154,3,0): 32, 24, 37, (154,4,0): 32, 24, 37, (154,5,0): 32, 24, 37, (154,6,0): 32, 24, 37, (154,7,0): 32, 24, 37, (154,8,0): 34, 26, 39, (154,9,0): 35, 27, 40, (154,10,0): 36, 28, 41, (154,11,0): 38, 30, 43, (154,12,0): 38, 30, 43, (154,13,0): 38, 30, 43, (154,14,0): 37, 29, 42, (154,15,0): 39, 28, 42, (154,16,0): 43, 29, 44, (154,17,0): 45, 28, 44, (154,18,0): 45, 28, 44, (154,19,0): 45, 28, 44, (154,20,0): 45, 28, 44, (154,21,0): 45, 28, 44, (154,22,0): 45, 28, 44, (154,23,0): 45, 28, 44, (154,24,0): 44, 27, 43, (154,25,0): 44, 27, 43, (154,26,0): 44, 27, 43, (154,27,0): 45, 28, 44, (154,28,0): 45, 28, 44, (154,29,0): 46, 29, 45, (154,30,0): 46, 29, 45, (154,31,0): 46, 30, 43, (154,32,0): 48, 30, 44, (154,33,0): 48, 30, 42, (154,34,0): 48, 30, 42, (154,35,0): 49, 31, 43, (154,36,0): 51, 31, 43, (154,37,0): 52, 32, 44, (154,38,0): 52, 32, 44, (154,39,0): 52, 32, 44, (154,40,0): 51, 29, 42, (154,41,0): 52, 30, 43, (154,42,0): 54, 30, 44, (154,43,0): 55, 31, 45, (154,44,0): 56, 32, 46, (154,45,0): 57, 33, 47, (154,46,0): 60, 33, 48, (154,47,0): 60, 33, 48, (154,48,0): 57, 31, 44, (154,49,0): 58, 32, 45, (154,50,0): 60, 32, 46, (154,51,0): 61, 35, 48, (154,52,0): 62, 34, 48, (154,53,0): 61, 35, 48, (154,54,0): 61, 33, 45, (154,55,0): 60, 34, 45, (154,56,0): 62, 34, 46, (154,57,0): 61, 35, 44, (154,58,0): 61, 34, 43, (154,59,0): 60, 35, 41, (154,60,0): 61, 34, 41, (154,61,0): 60, 35, 41, (154,62,0): 61, 34, 41, (154,63,0): 61, 34, 41, (154,64,0): 65, 35, 43, (154,65,0): 66, 35, 43, (154,66,0): 66, 35, 43, (154,67,0): 66, 35, 43, (154,68,0): 66, 35, 43, (154,69,0): 67, 34, 41, (154,70,0): 67, 34, 41, (154,71,0): 67, 34, 41, (154,72,0): 65, 30, 36, (154,73,0): 66, 31, 37, (154,74,0): 68, 33, 39, (154,75,0): 70, 34, 38, (154,76,0): 70, 34, 38, (154,77,0): 70, 34, 38, (154,78,0): 69, 33, 35, (154,79,0): 69, 33, 37, (154,80,0): 68, 33, 39, (154,81,0): 66, 34, 39, (154,82,0): 68, 33, 39, (154,83,0): 67, 32, 38, (154,84,0): 67, 32, 38, (154,85,0): 67, 32, 38, (154,86,0): 67, 30, 37, (154,87,0): 67, 30, 37, (154,88,0): 71, 34, 41, (154,89,0): 71, 34, 41, (154,90,0): 73, 33, 41, (154,91,0): 72, 32, 40, (154,92,0): 71, 31, 39, (154,93,0): 71, 31, 39, (154,94,0): 72, 31, 39, (154,95,0): 70, 30, 39, (154,96,0): 67, 29, 40, (154,97,0): 66, 30, 40, (154,98,0): 66, 30, 40, (154,99,0): 64, 31, 40, (154,100,0): 62, 31, 39, (154,101,0): 59, 29, 37, (154,102,0): 55, 28, 37, (154,103,0): 53, 27, 36, (154,104,0): 46, 23, 33, (154,105,0): 43, 22, 31, (154,106,0): 40, 20, 31, (154,107,0): 36, 19, 29, (154,108,0): 33, 17, 27, (154,109,0): 32, 16, 26, (154,110,0): 30, 17, 26, (154,111,0): 30, 17, 26, (154,112,0): 32, 16, 27, (154,113,0): 33, 17, 28, (154,114,0): 34, 18, 29, (154,115,0): 36, 20, 31, (154,116,0): 36, 20, 31, (154,117,0): 36, 20, 31, (154,118,0): 35, 19, 30, (154,119,0): 34, 18, 29, (154,120,0): 34, 18, 29, (154,121,0): 34, 18, 29, (154,122,0): 34, 18, 29, (154,123,0): 34, 18, 29, (154,124,0): 34, 18, 29, (154,125,0): 34, 18, 29, (154,126,0): 34, 18, 29, (154,127,0): 34, 18, 29, (154,128,0): 33, 20, 29, (154,129,0): 33, 20, 29, (154,130,0): 35, 19, 29, (154,131,0): 36, 20, 30, (154,132,0): 36, 21, 28, (154,133,0): 37, 22, 29, (154,134,0): 38, 21, 27, (154,135,0): 38, 21, 27, (154,136,0): 39, 20, 26, (154,137,0): 39, 20, 26, (154,138,0): 40, 21, 25, (154,139,0): 40, 21, 25, (154,140,0): 42, 22, 24, (154,141,0): 42, 22, 24, (154,142,0): 43, 23, 25, (154,143,0): 43, 23, 25, (154,144,0): 44, 24, 26, (154,145,0): 44, 24, 26, (154,146,0): 44, 24, 26, (154,147,0): 45, 25, 27, (154,148,0): 45, 25, 27, (154,149,0): 46, 26, 28, (154,150,0): 46, 26, 28, (154,151,0): 47, 27, 29, (154,152,0): 49, 29, 31, (154,153,0): 48, 28, 30, (154,154,0): 47, 27, 29, (154,155,0): 46, 26, 28, (154,156,0): 46, 26, 28, (154,157,0): 47, 27, 29, (154,158,0): 48, 28, 30, (154,159,0): 49, 29, 31, (154,160,0): 46, 24, 26, (154,161,0): 46, 24, 26, (154,162,0): 46, 24, 26, (154,163,0): 46, 24, 26, (154,164,0): 46, 24, 26, (154,165,0): 46, 24, 26, (154,166,0): 46, 24, 26, (154,167,0): 46, 24, 26, (154,168,0): 48, 26, 28, (154,169,0): 48, 26, 28, (154,170,0): 48, 26, 28, (154,171,0): 48, 26, 28, (154,172,0): 48, 26, 28, (154,173,0): 48, 26, 28, (154,174,0): 48, 26, 28, (154,175,0): 47, 27, 28, (154,176,0): 45, 24, 29, (154,177,0): 44, 25, 29, (154,178,0): 45, 25, 27, (154,179,0): 45, 25, 27, (154,180,0): 45, 25, 27, (154,181,0): 45, 25, 27, (154,182,0): 46, 24, 26, (154,183,0): 46, 24, 26, (154,184,0): 45, 21, 21, (154,185,0): 46, 22, 22, (154,186,0): 47, 23, 23, (154,187,0): 49, 25, 25, (154,188,0): 50, 24, 23, (154,189,0): 50, 24, 23, (154,190,0): 49, 23, 22, (154,191,0): 49, 23, 22, (154,192,0): 50, 24, 23, (154,193,0): 50, 24, 23, (154,194,0): 50, 24, 23, (154,195,0): 50, 24, 23, (154,196,0): 52, 24, 23, (154,197,0): 52, 24, 23, (154,198,0): 52, 24, 21, (154,199,0): 52, 24, 21, (154,200,0): 54, 25, 21, (154,201,0): 53, 24, 20, (154,202,0): 54, 23, 18, (154,203,0): 53, 22, 17, (154,204,0): 54, 23, 18, (154,205,0): 55, 24, 19, (154,206,0): 58, 25, 20, (154,207,0): 59, 26, 21, (154,208,0): 61, 28, 23, (154,209,0): 61, 28, 23, (154,210,0): 59, 28, 23, (154,211,0): 58, 27, 22, (154,212,0): 58, 27, 22, (154,213,0): 57, 26, 21, (154,214,0): 56, 27, 21, (154,215,0): 55, 26, 20, (154,216,0): 53, 26, 19, (154,217,0): 53, 26, 19, (154,218,0): 53, 26, 19, (154,219,0): 53, 26, 19, (154,220,0): 51, 26, 19, (154,221,0): 51, 26, 19, (154,222,0): 51, 26, 19, (154,223,0): 51, 27, 17, (154,224,0): 53, 24, 16, (154,225,0): 53, 25, 14, (154,226,0): 53, 25, 14, (154,227,0): 54, 26, 15, (154,228,0): 54, 26, 15, (154,229,0): 55, 27, 16, (154,230,0): 55, 27, 16, (154,231,0): 55, 27, 16, (154,232,0): 54, 26, 15, (154,233,0): 54, 26, 15, (154,234,0): 54, 26, 15, (154,235,0): 54, 26, 15, (154,236,0): 54, 26, 15, (154,237,0): 54, 26, 15, (154,238,0): 54, 26, 15, (154,239,0): 54, 26, 15, (154,240,0): 54, 28, 15, (154,241,0): 54, 28, 15, (154,242,0): 55, 27, 15, (154,243,0): 55, 27, 15, (154,244,0): 56, 28, 16, (154,245,0): 58, 30, 18, (154,246,0): 61, 31, 20, (154,247,0): 62, 32, 21, (154,248,0): 64, 32, 21, (154,249,0): 64, 32, 21, (154,250,0): 64, 32, 21, (154,251,0): 65, 33, 22, (154,252,0): 66, 32, 22, (154,253,0): 67, 33, 23, (154,254,0): 67, 33, 23, (154,255,0): 66, 34, 23, (154,256,0): 67, 38, 24, (154,257,0): 66, 38, 24, (154,258,0): 66, 38, 26, (154,259,0): 66, 38, 26, (154,260,0): 66, 38, 26, (154,261,0): 66, 38, 26, (154,262,0): 66, 38, 27, (154,263,0): 66, 38, 27, (154,264,0): 66, 37, 29, (154,265,0): 65, 36, 28, (154,266,0): 64, 35, 27, (154,267,0): 63, 34, 26, (154,268,0): 63, 34, 28, (154,269,0): 64, 35, 29, (154,270,0): 65, 36, 30, (154,271,0): 67, 36, 31, (154,272,0): 71, 38, 33, (154,273,0): 72, 37, 33, (154,274,0): 72, 37, 33, (154,275,0): 72, 37, 33, (154,276,0): 72, 37, 31, (154,277,0): 72, 38, 29, (154,278,0): 72, 38, 29, (154,279,0): 72, 38, 28, (154,280,0): 78, 44, 32, (154,281,0): 78, 45, 30, (154,282,0): 79, 46, 31, (154,283,0): 81, 48, 31, (154,284,0): 83, 50, 31, (154,285,0): 84, 51, 32, (154,286,0): 85, 52, 33, (154,287,0): 86, 53, 34, (154,288,0): 88, 53, 34, (154,289,0): 89, 54, 35, (154,290,0): 87, 54, 35, (154,291,0): 88, 55, 36, (154,292,0): 88, 55, 36, (154,293,0): 89, 56, 37, (154,294,0): 89, 56, 37, (154,295,0): 88, 57, 37, (154,296,0): 91, 60, 40, (154,297,0): 89, 61, 40, (154,298,0): 89, 61, 40, (154,299,0): 90, 62, 41, (154,300,0): 90, 63, 42, (154,301,0): 93, 66, 45, (154,302,0): 95, 68, 47, (154,303,0): 96, 70, 47, (154,304,0): 103, 76, 49, (154,305,0): 105, 78, 49, (154,306,0): 110, 80, 52, (154,307,0): 114, 83, 54, (154,308,0): 120, 87, 56, (154,309,0): 128, 94, 57, (154,310,0): 137, 104, 59, (154,311,0): 144, 113, 59, (154,312,0): 154, 123, 59, (154,313,0): 168, 139, 69, (154,314,0): 183, 156, 79, (154,315,0): 185, 160, 78, (154,316,0): 179, 157, 72, (154,317,0): 175, 155, 69, (154,318,0): 173, 152, 69, (154,319,0): 170, 149, 68, (154,320,0): 168, 146, 71, (154,321,0): 166, 146, 75, (154,322,0): 167, 144, 76, (154,323,0): 164, 143, 76, (154,324,0): 165, 141, 79, (154,325,0): 160, 138, 78, (154,326,0): 160, 135, 79, (154,327,0): 157, 134, 82, (154,328,0): 157, 131, 82, (154,329,0): 155, 132, 82, (154,330,0): 158, 131, 84, (154,331,0): 157, 133, 85, (154,332,0): 160, 133, 86, (154,333,0): 159, 135, 87, (154,334,0): 161, 135, 86, (154,335,0): 163, 135, 87, (154,336,0): 168, 136, 85, (154,337,0): 174, 141, 90, (154,338,0): 180, 147, 96, (154,339,0): 183, 150, 97, (154,340,0): 183, 150, 97, (154,341,0): 183, 150, 97, (154,342,0): 185, 152, 98, (154,343,0): 187, 154, 100, (154,344,0): 187, 154, 100, (154,345,0): 190, 158, 101, (154,346,0): 192, 160, 103, (154,347,0): 193, 161, 104, (154,348,0): 193, 158, 100, (154,349,0): 192, 160, 101, (154,350,0): 196, 161, 103, (154,351,0): 196, 164, 105, (154,352,0): 195, 165, 105, (154,353,0): 196, 166, 106, (154,354,0): 202, 168, 107, (154,355,0): 207, 168, 109, (154,356,0): 211, 169, 109, (154,357,0): 216, 170, 110, (154,358,0): 220, 168, 108, (154,359,0): 223, 167, 106, (154,360,0): 225, 165, 103, (154,361,0): 226, 165, 102, (154,362,0): 230, 165, 101, (154,363,0): 232, 167, 101, (154,364,0): 238, 171, 103, (154,365,0): 243, 176, 106, (154,366,0): 248, 179, 110, (154,367,0): 250, 183, 113, (154,368,0): 249, 185, 113, (154,369,0): 245, 183, 110, (154,370,0): 241, 181, 109, (154,371,0): 242, 184, 111, (154,372,0): 246, 189, 118, (154,373,0): 246, 194, 121, (154,374,0): 242, 192, 121, (154,375,0): 237, 188, 119, (154,376,0): 224, 177, 109, (154,377,0): 221, 176, 108, (154,378,0): 219, 174, 107, (154,379,0): 216, 173, 105, (154,380,0): 213, 169, 104, (154,381,0): 211, 167, 102, (154,382,0): 209, 165, 102, (154,383,0): 208, 164, 101, (154,384,0): 211, 170, 106, (154,385,0): 213, 172, 106, (154,386,0): 215, 174, 108, (154,387,0): 219, 179, 110, (154,388,0): 223, 183, 114, (154,389,0): 226, 186, 116, (154,390,0): 229, 189, 119, (154,391,0): 231, 191, 119, (154,392,0): 232, 193, 118, (154,393,0): 231, 192, 115, (154,394,0): 233, 191, 115, (154,395,0): 233, 192, 113, (154,396,0): 236, 195, 116, (154,397,0): 239, 198, 118, (154,398,0): 243, 202, 122, (154,399,0): 243, 205, 124, (154,400,0): 245, 213, 130, (154,401,0): 244, 213, 130, (154,402,0): 242, 215, 128, (154,403,0): 242, 215, 126, (154,404,0): 242, 215, 124, (154,405,0): 242, 216, 123, (154,406,0): 241, 217, 121, (154,407,0): 241, 217, 117, (154,408,0): 242, 221, 116, (154,409,0): 244, 223, 116, (154,410,0): 248, 227, 118, (154,411,0): 251, 231, 119, (154,412,0): 253, 236, 122, (154,413,0): 255, 238, 122, (154,414,0): 255, 239, 121, (154,415,0): 255, 239, 123, (154,416,0): 255, 242, 129, (154,417,0): 255, 241, 128, (154,418,0): 255, 240, 128, (154,419,0): 255, 239, 129, (154,420,0): 255, 237, 129, (154,421,0): 251, 234, 126, (154,422,0): 245, 228, 122, (154,423,0): 241, 224, 118, (154,424,0): 240, 223, 117, (154,425,0): 241, 222, 117, (154,426,0): 241, 220, 115, (154,427,0): 240, 217, 111, (154,428,0): 239, 215, 107, (154,429,0): 241, 215, 105, (154,430,0): 245, 217, 108, (154,431,0): 247, 220, 107, (154,432,0): 255, 229, 115, (154,433,0): 255, 229, 114, (154,434,0): 252, 226, 115, (154,435,0): 245, 221, 115, (154,436,0): 235, 211, 111, (154,437,0): 220, 200, 105, (154,438,0): 208, 188, 99, (154,439,0): 197, 181, 96, (154,440,0): 191, 176, 95, (154,441,0): 186, 173, 95, (154,442,0): 183, 171, 95, (154,443,0): 184, 172, 96, (154,444,0): 187, 175, 99, (154,445,0): 188, 179, 102, (154,446,0): 190, 178, 102, (154,447,0): 190, 176, 101, (154,448,0): 194, 176, 102, (154,449,0): 195, 175, 102, (154,450,0): 195, 175, 104, (154,451,0): 197, 174, 106, (154,452,0): 196, 173, 106, (154,453,0): 195, 172, 105, (154,454,0): 194, 169, 105, (154,455,0): 193, 168, 104, (154,456,0): 190, 165, 101, (154,457,0): 194, 166, 103, (154,458,0): 195, 167, 104, (154,459,0): 194, 166, 101, (154,460,0): 194, 165, 99, (154,461,0): 193, 164, 96, (154,462,0): 195, 166, 98, (154,463,0): 198, 168, 98, (154,464,0): 207, 170, 99, (154,465,0): 209, 171, 100, (154,466,0): 208, 171, 100, (154,467,0): 207, 173, 101, (154,468,0): 206, 173, 102, (154,469,0): 203, 173, 101, (154,470,0): 201, 172, 102, (154,471,0): 197, 173, 103, (154,472,0): 192, 169, 101, (154,473,0): 191, 171, 102, (154,474,0): 190, 173, 104, (154,475,0): 188, 173, 104, (154,476,0): 187, 174, 106, (154,477,0): 184, 174, 105, (154,478,0): 182, 173, 106, (154,479,0): 180, 173, 105, (154,480,0): 176, 171, 105, (154,481,0): 175, 172, 105, (154,482,0): 174, 170, 106, (154,483,0): 172, 168, 104, (154,484,0): 168, 164, 103, (154,485,0): 163, 161, 102, (154,486,0): 159, 157, 100, (154,487,0): 157, 154, 99, (154,488,0): 156, 153, 102, (154,489,0): 153, 151, 102, (154,490,0): 150, 147, 102, (154,491,0): 148, 147, 103, (154,492,0): 146, 144, 103, (154,493,0): 141, 139, 100, (154,494,0): 134, 132, 93, (154,495,0): 126, 126, 88, (154,496,0): 122, 119, 84, (154,497,0): 121, 118, 85, (154,498,0): 119, 116, 83, (154,499,0): 117, 114, 81, (154,500,0): 115, 112, 81, (154,501,0): 113, 110, 79, (154,502,0): 111, 108, 77, (154,503,0): 110, 107, 76, (154,504,0): 109, 105, 76, (154,505,0): 108, 104, 75, (154,506,0): 107, 103, 76, (154,507,0): 106, 102, 75, (154,508,0): 105, 101, 74, (154,509,0): 106, 102, 75, (154,510,0): 106, 102, 77, (154,511,0): 108, 102, 76, (154,512,0): 108, 101, 73, (154,513,0): 109, 102, 74, (154,514,0): 111, 104, 76, (154,515,0): 113, 106, 78, (154,516,0): 114, 107, 79, (154,517,0): 114, 107, 79, (154,518,0): 114, 107, 81, (154,519,0): 113, 106, 80, (154,520,0): 112, 104, 81, (154,521,0): 110, 102, 79, (154,522,0): 108, 100, 79, (154,523,0): 107, 99, 78, (154,524,0): 106, 98, 77, (154,525,0): 105, 97, 76, (154,526,0): 106, 98, 77, (154,527,0): 109, 96, 77, (154,528,0): 113, 94, 77, (154,529,0): 112, 91, 74, (154,530,0): 112, 91, 74, (154,531,0): 112, 93, 76, (154,532,0): 109, 92, 74, (154,533,0): 105, 88, 70, (154,534,0): 103, 88, 69, (154,535,0): 103, 90, 71, (154,536,0): 105, 92, 73, (154,537,0): 105, 92, 73, (154,538,0): 104, 91, 72, (154,539,0): 104, 91, 72, (154,540,0): 106, 91, 72, (154,541,0): 106, 91, 72, (154,542,0): 107, 92, 73, (154,543,0): 107, 91, 75, (154,544,0): 109, 89, 78, (154,545,0): 107, 87, 78, (154,546,0): 103, 85, 75, (154,547,0): 98, 80, 70, (154,548,0): 92, 74, 64, (154,549,0): 86, 68, 58, (154,550,0): 80, 63, 55, (154,551,0): 77, 60, 52, (154,552,0): 75, 58, 51, (154,553,0): 73, 58, 51, (154,554,0): 72, 57, 52, (154,555,0): 72, 57, 52, (154,556,0): 70, 57, 51, (154,557,0): 69, 56, 50, (154,558,0): 69, 56, 50, (154,559,0): 69, 56, 50, (154,560,0): 71, 61, 52, (154,561,0): 71, 61, 52, (154,562,0): 70, 61, 52, (154,563,0): 71, 62, 53, (154,564,0): 73, 64, 55, (154,565,0): 75, 66, 57, (154,566,0): 78, 69, 60, (154,567,0): 78, 71, 61, (154,568,0): 80, 73, 63, (154,569,0): 79, 75, 64, (154,570,0): 81, 77, 66, (154,571,0): 83, 79, 68, (154,572,0): 83, 81, 69, (154,573,0): 83, 81, 69, (154,574,0): 83, 81, 69, (154,575,0): 80, 80, 68, (154,576,0): 77, 79, 65, (154,577,0): 78, 79, 65, (154,578,0): 83, 74, 65, (154,579,0): 86, 71, 66, (154,580,0): 89, 71, 69, (154,581,0): 90, 72, 70, (154,582,0): 88, 74, 71, (154,583,0): 87, 76, 70, (154,584,0): 92, 82, 73, (154,585,0): 93, 83, 74, (154,586,0): 98, 81, 73, (154,587,0): 100, 81, 74, (154,588,0): 100, 83, 76, (154,589,0): 99, 84, 77, (154,590,0): 96, 87, 80, (154,591,0): 96, 87, 82, (154,592,0): 98, 84, 81, (154,593,0): 98, 83, 80, (154,594,0): 96, 81, 78, (154,595,0): 93, 78, 75, (154,596,0): 90, 75, 72, (154,597,0): 88, 73, 70, (154,598,0): 86, 71, 68, (154,599,0): 85, 70, 67, (155,0,0): 33, 25, 38, (155,1,0): 33, 25, 38, (155,2,0): 33, 25, 38, (155,3,0): 33, 25, 38, (155,4,0): 33, 25, 38, (155,5,0): 33, 25, 38, (155,6,0): 33, 25, 38, (155,7,0): 33, 25, 38, (155,8,0): 35, 27, 40, (155,9,0): 36, 28, 41, (155,10,0): 37, 29, 42, (155,11,0): 38, 30, 43, (155,12,0): 39, 31, 44, (155,13,0): 39, 31, 44, (155,14,0): 38, 30, 43, (155,15,0): 39, 28, 42, (155,16,0): 43, 29, 44, (155,17,0): 45, 28, 44, (155,18,0): 45, 28, 44, (155,19,0): 45, 28, 44, (155,20,0): 45, 28, 44, (155,21,0): 45, 28, 44, (155,22,0): 45, 28, 44, (155,23,0): 45, 28, 44, (155,24,0): 44, 27, 43, (155,25,0): 44, 27, 43, (155,26,0): 44, 27, 43, (155,27,0): 45, 28, 44, (155,28,0): 45, 28, 44, (155,29,0): 46, 29, 45, (155,30,0): 46, 29, 45, (155,31,0): 46, 30, 43, (155,32,0): 48, 30, 44, (155,33,0): 48, 30, 42, (155,34,0): 48, 30, 42, (155,35,0): 49, 31, 43, (155,36,0): 51, 31, 43, (155,37,0): 52, 32, 44, (155,38,0): 52, 32, 44, (155,39,0): 52, 32, 44, (155,40,0): 52, 30, 43, (155,41,0): 52, 30, 43, (155,42,0): 54, 30, 44, (155,43,0): 55, 31, 45, (155,44,0): 56, 32, 46, (155,45,0): 57, 33, 47, (155,46,0): 60, 33, 48, (155,47,0): 60, 33, 48, (155,48,0): 59, 31, 45, (155,49,0): 62, 31, 46, (155,50,0): 63, 32, 47, (155,51,0): 64, 33, 48, (155,52,0): 65, 34, 49, (155,53,0): 65, 35, 47, (155,54,0): 64, 34, 46, (155,55,0): 63, 33, 45, (155,56,0): 65, 35, 45, (155,57,0): 64, 34, 44, (155,58,0): 64, 34, 42, (155,59,0): 64, 34, 42, (155,60,0): 63, 33, 41, (155,61,0): 63, 33, 41, (155,62,0): 63, 33, 41, (155,63,0): 63, 33, 41, (155,64,0): 66, 35, 43, (155,65,0): 66, 35, 43, (155,66,0): 66, 35, 43, (155,67,0): 66, 35, 43, (155,68,0): 67, 34, 41, (155,69,0): 67, 34, 41, (155,70,0): 67, 34, 41, (155,71,0): 67, 35, 40, (155,72,0): 67, 32, 38, (155,73,0): 68, 33, 39, (155,74,0): 70, 34, 38, (155,75,0): 71, 35, 39, (155,76,0): 71, 35, 39, (155,77,0): 71, 35, 39, (155,78,0): 72, 33, 36, (155,79,0): 69, 33, 35, (155,80,0): 68, 33, 39, (155,81,0): 66, 34, 39, (155,82,0): 68, 33, 39, (155,83,0): 68, 33, 39, (155,84,0): 68, 33, 39, (155,85,0): 67, 32, 38, (155,86,0): 68, 31, 38, (155,87,0): 68, 31, 38, (155,88,0): 74, 34, 42, (155,89,0): 73, 33, 41, (155,90,0): 73, 33, 41, (155,91,0): 73, 32, 40, (155,92,0): 73, 32, 40, (155,93,0): 72, 31, 39, (155,94,0): 73, 30, 39, (155,95,0): 72, 31, 39, (155,96,0): 70, 30, 39, (155,97,0): 68, 30, 41, (155,98,0): 68, 30, 41, (155,99,0): 67, 31, 41, (155,100,0): 63, 30, 39, (155,101,0): 60, 29, 37, (155,102,0): 57, 27, 37, (155,103,0): 54, 27, 36, (155,104,0): 48, 22, 33, (155,105,0): 45, 22, 32, (155,106,0): 42, 20, 32, (155,107,0): 36, 19, 29, (155,108,0): 35, 18, 28, (155,109,0): 33, 17, 27, (155,110,0): 31, 18, 27, (155,111,0): 31, 18, 27, (155,112,0): 33, 17, 28, (155,113,0): 34, 18, 29, (155,114,0): 35, 19, 30, (155,115,0): 36, 20, 31, (155,116,0): 36, 20, 31, (155,117,0): 35, 19, 30, (155,118,0): 34, 18, 29, (155,119,0): 34, 18, 29, (155,120,0): 33, 17, 28, (155,121,0): 33, 17, 28, (155,122,0): 33, 17, 28, (155,123,0): 33, 17, 28, (155,124,0): 33, 17, 28, (155,125,0): 33, 17, 28, (155,126,0): 33, 17, 28, (155,127,0): 33, 17, 28, (155,128,0): 33, 20, 29, (155,129,0): 33, 20, 29, (155,130,0): 35, 19, 29, (155,131,0): 36, 20, 30, (155,132,0): 36, 21, 28, (155,133,0): 37, 22, 29, (155,134,0): 38, 21, 27, (155,135,0): 38, 21, 27, (155,136,0): 39, 20, 26, (155,137,0): 39, 20, 26, (155,138,0): 40, 21, 25, (155,139,0): 40, 21, 25, (155,140,0): 42, 22, 24, (155,141,0): 42, 22, 24, (155,142,0): 43, 23, 25, (155,143,0): 43, 23, 25, (155,144,0): 44, 24, 26, (155,145,0): 45, 25, 27, (155,146,0): 45, 25, 27, (155,147,0): 45, 25, 27, (155,148,0): 46, 26, 28, (155,149,0): 47, 27, 29, (155,150,0): 47, 27, 29, (155,151,0): 47, 27, 29, (155,152,0): 49, 29, 31, (155,153,0): 48, 28, 30, (155,154,0): 47, 27, 29, (155,155,0): 46, 26, 28, (155,156,0): 46, 26, 28, (155,157,0): 47, 27, 29, (155,158,0): 48, 28, 30, (155,159,0): 49, 29, 31, (155,160,0): 47, 25, 27, (155,161,0): 47, 25, 27, (155,162,0): 47, 25, 27, (155,163,0): 47, 25, 27, (155,164,0): 47, 25, 27, (155,165,0): 47, 25, 27, (155,166,0): 47, 25, 27, (155,167,0): 47, 25, 27, (155,168,0): 47, 25, 27, (155,169,0): 47, 25, 27, (155,170,0): 47, 25, 27, (155,171,0): 47, 25, 27, (155,172,0): 47, 25, 27, (155,173,0): 47, 25, 27, (155,174,0): 47, 25, 27, (155,175,0): 46, 26, 27, (155,176,0): 46, 25, 30, (155,177,0): 45, 26, 30, (155,178,0): 46, 26, 28, (155,179,0): 46, 26, 28, (155,180,0): 46, 26, 28, (155,181,0): 46, 26, 28, (155,182,0): 47, 25, 27, (155,183,0): 47, 25, 27, (155,184,0): 45, 21, 21, (155,185,0): 46, 22, 22, (155,186,0): 47, 23, 23, (155,187,0): 49, 25, 25, (155,188,0): 50, 24, 23, (155,189,0): 50, 24, 23, (155,190,0): 49, 23, 22, (155,191,0): 49, 23, 22, (155,192,0): 50, 24, 23, (155,193,0): 50, 24, 23, (155,194,0): 50, 24, 23, (155,195,0): 50, 24, 23, (155,196,0): 52, 24, 23, (155,197,0): 52, 24, 23, (155,198,0): 52, 24, 21, (155,199,0): 52, 24, 21, (155,200,0): 52, 23, 19, (155,201,0): 52, 23, 19, (155,202,0): 53, 22, 17, (155,203,0): 54, 23, 18, (155,204,0): 54, 23, 18, (155,205,0): 55, 24, 19, (155,206,0): 58, 25, 20, (155,207,0): 58, 25, 20, (155,208,0): 61, 28, 23, (155,209,0): 60, 27, 22, (155,210,0): 58, 27, 22, (155,211,0): 58, 27, 22, (155,212,0): 57, 26, 21, (155,213,0): 56, 25, 20, (155,214,0): 55, 26, 20, (155,215,0): 55, 26, 20, (155,216,0): 52, 25, 18, (155,217,0): 52, 25, 18, (155,218,0): 52, 25, 18, (155,219,0): 52, 25, 18, (155,220,0): 50, 25, 18, (155,221,0): 50, 25, 18, (155,222,0): 50, 25, 18, (155,223,0): 50, 26, 16, (155,224,0): 52, 23, 15, (155,225,0): 52, 24, 13, (155,226,0): 52, 24, 13, (155,227,0): 53, 25, 14, (155,228,0): 53, 25, 14, (155,229,0): 54, 26, 15, (155,230,0): 54, 26, 15, (155,231,0): 55, 27, 16, (155,232,0): 54, 26, 15, (155,233,0): 54, 26, 15, (155,234,0): 54, 26, 15, (155,235,0): 54, 26, 15, (155,236,0): 54, 26, 15, (155,237,0): 54, 26, 15, (155,238,0): 54, 26, 15, (155,239,0): 54, 26, 15, (155,240,0): 55, 29, 16, (155,241,0): 54, 28, 15, (155,242,0): 55, 27, 15, (155,243,0): 55, 27, 15, (155,244,0): 56, 28, 16, (155,245,0): 58, 30, 18, (155,246,0): 61, 31, 20, (155,247,0): 62, 32, 21, (155,248,0): 64, 32, 21, (155,249,0): 64, 32, 21, (155,250,0): 64, 32, 21, (155,251,0): 65, 33, 22, (155,252,0): 66, 32, 22, (155,253,0): 67, 33, 23, (155,254,0): 67, 33, 23, (155,255,0): 66, 34, 23, (155,256,0): 66, 37, 23, (155,257,0): 65, 37, 23, (155,258,0): 65, 37, 25, (155,259,0): 65, 37, 25, (155,260,0): 65, 37, 25, (155,261,0): 65, 37, 25, (155,262,0): 65, 37, 26, (155,263,0): 65, 37, 26, (155,264,0): 65, 36, 28, (155,265,0): 64, 35, 27, (155,266,0): 63, 34, 26, (155,267,0): 62, 33, 25, (155,268,0): 62, 33, 27, (155,269,0): 63, 34, 28, (155,270,0): 64, 35, 29, (155,271,0): 66, 35, 30, (155,272,0): 70, 37, 32, (155,273,0): 71, 36, 32, (155,274,0): 71, 36, 32, (155,275,0): 72, 37, 33, (155,276,0): 72, 37, 31, (155,277,0): 73, 39, 30, (155,278,0): 73, 39, 30, (155,279,0): 73, 39, 29, (155,280,0): 77, 43, 31, (155,281,0): 78, 45, 30, (155,282,0): 79, 46, 31, (155,283,0): 80, 47, 30, (155,284,0): 82, 49, 30, (155,285,0): 84, 51, 32, (155,286,0): 85, 52, 33, (155,287,0): 85, 52, 33, (155,288,0): 88, 53, 34, (155,289,0): 88, 53, 34, (155,290,0): 86, 53, 34, (155,291,0): 87, 54, 35, (155,292,0): 88, 55, 36, (155,293,0): 88, 55, 36, (155,294,0): 87, 56, 36, (155,295,0): 88, 57, 37, (155,296,0): 88, 60, 39, (155,297,0): 87, 59, 38, (155,298,0): 88, 60, 39, (155,299,0): 88, 60, 39, (155,300,0): 89, 62, 41, (155,301,0): 91, 64, 43, (155,302,0): 94, 67, 46, (155,303,0): 95, 69, 46, (155,304,0): 101, 74, 47, (155,305,0): 104, 77, 48, (155,306,0): 109, 79, 51, (155,307,0): 111, 81, 53, (155,308,0): 115, 84, 55, (155,309,0): 123, 90, 57, (155,310,0): 132, 99, 58, (155,311,0): 138, 106, 57, (155,312,0): 147, 117, 57, (155,313,0): 160, 133, 64, (155,314,0): 176, 150, 75, (155,315,0): 183, 160, 80, (155,316,0): 184, 163, 80, (155,317,0): 179, 161, 75, (155,318,0): 175, 157, 73, (155,319,0): 171, 154, 72, (155,320,0): 170, 151, 75, (155,321,0): 169, 149, 76, (155,322,0): 168, 148, 77, (155,323,0): 167, 147, 78, (155,324,0): 165, 144, 79, (155,325,0): 162, 140, 80, (155,326,0): 161, 139, 82, (155,327,0): 160, 137, 83, (155,328,0): 157, 134, 82, (155,329,0): 157, 134, 84, (155,330,0): 159, 135, 87, (155,331,0): 160, 136, 88, (155,332,0): 161, 137, 89, (155,333,0): 161, 138, 88, (155,334,0): 161, 138, 88, (155,335,0): 162, 136, 85, (155,336,0): 166, 134, 83, (155,337,0): 172, 139, 88, (155,338,0): 178, 145, 94, (155,339,0): 181, 148, 97, (155,340,0): 182, 149, 96, (155,341,0): 182, 149, 96, (155,342,0): 183, 150, 97, (155,343,0): 185, 152, 98, (155,344,0): 186, 153, 99, (155,345,0): 188, 157, 102, (155,346,0): 192, 160, 103, (155,347,0): 192, 161, 104, (155,348,0): 192, 160, 101, (155,349,0): 191, 161, 101, (155,350,0): 194, 162, 103, (155,351,0): 196, 166, 106, (155,352,0): 193, 163, 103, (155,353,0): 195, 165, 103, (155,354,0): 200, 166, 105, (155,355,0): 204, 168, 106, (155,356,0): 211, 170, 108, (155,357,0): 216, 170, 108, (155,358,0): 222, 171, 108, (155,359,0): 226, 171, 107, (155,360,0): 226, 166, 103, (155,361,0): 230, 166, 102, (155,362,0): 233, 168, 102, (155,363,0): 238, 171, 103, (155,364,0): 242, 173, 104, (155,365,0): 246, 178, 107, (155,366,0): 250, 180, 110, (155,367,0): 251, 183, 112, (155,368,0): 252, 185, 114, (155,369,0): 247, 183, 111, (155,370,0): 244, 181, 110, (155,371,0): 243, 185, 112, (155,372,0): 245, 188, 117, (155,373,0): 243, 191, 118, (155,374,0): 240, 190, 119, (155,375,0): 235, 188, 116, (155,376,0): 224, 179, 111, (155,377,0): 222, 179, 110, (155,378,0): 220, 177, 109, (155,379,0): 216, 176, 107, (155,380,0): 215, 171, 106, (155,381,0): 212, 168, 103, (155,382,0): 211, 167, 104, (155,383,0): 208, 167, 103, (155,384,0): 212, 171, 105, (155,385,0): 213, 174, 105, (155,386,0): 216, 176, 107, (155,387,0): 219, 181, 110, (155,388,0): 224, 184, 114, (155,389,0): 226, 188, 115, (155,390,0): 230, 190, 118, (155,391,0): 231, 193, 118, (155,392,0): 233, 196, 118, (155,393,0): 233, 196, 116, (155,394,0): 233, 196, 116, (155,395,0): 234, 197, 116, (155,396,0): 236, 199, 118, (155,397,0): 239, 203, 119, (155,398,0): 242, 206, 122, (155,399,0): 243, 208, 124, (155,400,0): 246, 214, 127, (155,401,0): 245, 215, 127, (155,402,0): 243, 216, 125, (155,403,0): 244, 217, 126, (155,404,0): 245, 219, 126, (155,405,0): 246, 220, 125, (155,406,0): 245, 221, 121, (155,407,0): 245, 222, 120, (155,408,0): 245, 222, 116, (155,409,0): 246, 225, 116, (155,410,0): 249, 229, 117, (155,411,0): 252, 232, 119, (155,412,0): 253, 236, 122, (155,413,0): 254, 237, 121, (155,414,0): 255, 238, 120, (155,415,0): 255, 238, 122, (155,416,0): 255, 243, 127, (155,417,0): 255, 243, 129, (155,418,0): 255, 242, 130, (155,419,0): 255, 242, 129, (155,420,0): 255, 240, 129, (155,421,0): 250, 236, 127, (155,422,0): 245, 231, 124, (155,423,0): 242, 228, 121, (155,424,0): 239, 222, 116, (155,425,0): 241, 224, 118, (155,426,0): 242, 224, 116, (155,427,0): 242, 221, 112, (155,428,0): 240, 216, 106, (155,429,0): 239, 215, 105, (155,430,0): 246, 218, 108, (155,431,0): 249, 222, 109, (155,432,0): 254, 228, 115, (155,433,0): 250, 227, 115, (155,434,0): 247, 223, 115, (155,435,0): 241, 220, 115, (155,436,0): 232, 212, 113, (155,437,0): 219, 202, 110, (155,438,0): 206, 190, 103, (155,439,0): 197, 182, 101, (155,440,0): 185, 172, 94, (155,441,0): 182, 168, 93, (155,442,0): 179, 167, 93, (155,443,0): 180, 168, 94, (155,444,0): 183, 171, 95, (155,445,0): 188, 174, 99, (155,446,0): 189, 175, 100, (155,447,0): 191, 175, 100, (155,448,0): 194, 174, 101, (155,449,0): 197, 175, 102, (155,450,0): 197, 174, 104, (155,451,0): 198, 175, 105, (155,452,0): 198, 175, 107, (155,453,0): 196, 173, 106, (155,454,0): 196, 171, 107, (155,455,0): 195, 170, 106, (155,456,0): 195, 167, 104, (155,457,0): 196, 168, 103, (155,458,0): 198, 170, 105, (155,459,0): 199, 170, 104, (155,460,0): 198, 169, 101, (155,461,0): 198, 169, 99, (155,462,0): 198, 169, 99, (155,463,0): 199, 169, 97, (155,464,0): 210, 173, 102, (155,465,0): 210, 174, 100, (155,466,0): 209, 172, 101, (155,467,0): 207, 173, 101, (155,468,0): 205, 172, 101, (155,469,0): 201, 173, 100, (155,470,0): 199, 172, 101, (155,471,0): 197, 173, 103, (155,472,0): 189, 169, 100, (155,473,0): 189, 170, 102, (155,474,0): 187, 172, 103, (155,475,0): 188, 175, 107, (155,476,0): 186, 176, 107, (155,477,0): 185, 176, 109, (155,478,0): 184, 177, 109, (155,479,0): 181, 176, 110, (155,480,0): 179, 176, 109, (155,481,0): 178, 175, 108, (155,482,0): 176, 172, 108, (155,483,0): 173, 169, 105, (155,484,0): 168, 166, 105, (155,485,0): 163, 161, 102, (155,486,0): 159, 157, 100, (155,487,0): 156, 155, 101, (155,488,0): 154, 152, 101, (155,489,0): 152, 150, 102, (155,490,0): 148, 147, 103, (155,491,0): 146, 144, 103, (155,492,0): 144, 142, 103, (155,493,0): 139, 137, 99, (155,494,0): 129, 129, 91, (155,495,0): 124, 124, 88, (155,496,0): 122, 119, 86, (155,497,0): 121, 118, 85, (155,498,0): 119, 116, 83, (155,499,0): 117, 114, 81, (155,500,0): 115, 112, 81, (155,501,0): 113, 110, 79, (155,502,0): 111, 108, 77, (155,503,0): 110, 107, 76, (155,504,0): 110, 106, 77, (155,505,0): 109, 105, 76, (155,506,0): 108, 104, 77, (155,507,0): 107, 103, 76, (155,508,0): 107, 103, 76, (155,509,0): 107, 103, 76, (155,510,0): 108, 104, 79, (155,511,0): 109, 105, 78, (155,512,0): 107, 101, 75, (155,513,0): 109, 102, 74, (155,514,0): 111, 104, 76, (155,515,0): 113, 106, 78, (155,516,0): 114, 107, 79, (155,517,0): 114, 107, 79, (155,518,0): 114, 107, 81, (155,519,0): 113, 106, 80, (155,520,0): 113, 105, 82, (155,521,0): 111, 103, 80, (155,522,0): 109, 101, 80, (155,523,0): 108, 100, 79, (155,524,0): 107, 99, 78, (155,525,0): 106, 98, 77, (155,526,0): 107, 99, 78, (155,527,0): 110, 97, 78, (155,528,0): 118, 95, 79, (155,529,0): 120, 92, 78, (155,530,0): 121, 93, 79, (155,531,0): 120, 94, 79, (155,532,0): 116, 93, 77, (155,533,0): 109, 90, 73, (155,534,0): 105, 88, 70, (155,535,0): 104, 89, 70, (155,536,0): 107, 94, 75, (155,537,0): 106, 93, 74, (155,538,0): 105, 92, 73, (155,539,0): 104, 91, 72, (155,540,0): 106, 91, 72, (155,541,0): 107, 92, 73, (155,542,0): 108, 93, 74, (155,543,0): 109, 93, 77, (155,544,0): 107, 89, 77, (155,545,0): 106, 86, 77, (155,546,0): 102, 84, 74, (155,547,0): 97, 79, 69, (155,548,0): 92, 74, 64, (155,549,0): 87, 69, 59, (155,550,0): 82, 65, 57, (155,551,0): 79, 62, 54, (155,552,0): 76, 61, 54, (155,553,0): 75, 60, 53, (155,554,0): 75, 60, 55, (155,555,0): 74, 59, 54, (155,556,0): 72, 59, 53, (155,557,0): 71, 58, 52, (155,558,0): 70, 57, 51, (155,559,0): 68, 57, 51, (155,560,0): 73, 63, 54, (155,561,0): 73, 63, 54, (155,562,0): 72, 63, 54, (155,563,0): 73, 64, 55, (155,564,0): 75, 66, 57, (155,565,0): 78, 69, 60, (155,566,0): 79, 72, 62, (155,567,0): 81, 74, 64, (155,568,0): 82, 78, 67, (155,569,0): 83, 79, 68, (155,570,0): 85, 81, 70, (155,571,0): 86, 82, 71, (155,572,0): 86, 84, 72, (155,573,0): 86, 84, 72, (155,574,0): 85, 83, 71, (155,575,0): 83, 83, 71, (155,576,0): 79, 83, 68, (155,577,0): 79, 81, 68, (155,578,0): 84, 77, 69, (155,579,0): 85, 74, 70, (155,580,0): 88, 72, 72, (155,581,0): 88, 72, 72, (155,582,0): 86, 75, 73, (155,583,0): 86, 77, 72, (155,584,0): 90, 81, 74, (155,585,0): 92, 82, 73, (155,586,0): 97, 80, 72, (155,587,0): 99, 80, 73, (155,588,0): 99, 82, 75, (155,589,0): 97, 82, 77, (155,590,0): 94, 85, 80, (155,591,0): 94, 85, 80, (155,592,0): 97, 83, 80, (155,593,0): 97, 82, 79, (155,594,0): 95, 80, 77, (155,595,0): 93, 78, 75, (155,596,0): 90, 75, 72, (155,597,0): 87, 72, 69, (155,598,0): 85, 70, 67, (155,599,0): 84, 69, 66, (156,0,0): 33, 25, 38, (156,1,0): 33, 25, 38, (156,2,0): 33, 25, 38, (156,3,0): 33, 25, 38, (156,4,0): 33, 25, 38, (156,5,0): 33, 25, 38, (156,6,0): 33, 25, 38, (156,7,0): 33, 25, 38, (156,8,0): 35, 27, 40, (156,9,0): 36, 28, 41, (156,10,0): 37, 29, 42, (156,11,0): 38, 30, 43, (156,12,0): 39, 31, 44, (156,13,0): 39, 31, 44, (156,14,0): 38, 30, 43, (156,15,0): 39, 28, 42, (156,16,0): 43, 29, 44, (156,17,0): 45, 28, 44, (156,18,0): 45, 28, 44, (156,19,0): 45, 28, 44, (156,20,0): 45, 28, 44, (156,21,0): 45, 28, 44, (156,22,0): 45, 28, 44, (156,23,0): 45, 28, 44, (156,24,0): 44, 27, 43, (156,25,0): 44, 27, 43, (156,26,0): 44, 27, 43, (156,27,0): 45, 28, 44, (156,28,0): 45, 28, 44, (156,29,0): 46, 29, 45, (156,30,0): 46, 29, 45, (156,31,0): 46, 30, 43, (156,32,0): 48, 30, 44, (156,33,0): 48, 30, 42, (156,34,0): 48, 30, 42, (156,35,0): 49, 31, 43, (156,36,0): 51, 31, 43, (156,37,0): 52, 32, 44, (156,38,0): 52, 32, 44, (156,39,0): 52, 32, 44, (156,40,0): 53, 31, 44, (156,41,0): 53, 31, 44, (156,42,0): 55, 31, 45, (156,43,0): 56, 32, 46, (156,44,0): 57, 33, 47, (156,45,0): 58, 34, 48, (156,46,0): 61, 34, 49, (156,47,0): 62, 34, 49, (156,48,0): 62, 31, 46, (156,49,0): 64, 32, 47, (156,50,0): 66, 34, 49, (156,51,0): 67, 35, 50, (156,52,0): 68, 36, 49, (156,53,0): 67, 35, 48, (156,54,0): 67, 35, 48, (156,55,0): 66, 34, 45, (156,56,0): 68, 36, 47, (156,57,0): 67, 35, 46, (156,58,0): 67, 36, 44, (156,59,0): 66, 35, 43, (156,60,0): 65, 34, 40, (156,61,0): 65, 34, 40, (156,62,0): 64, 33, 39, (156,63,0): 64, 33, 39, (156,64,0): 68, 35, 44, (156,65,0): 68, 35, 44, (156,66,0): 68, 35, 42, (156,67,0): 68, 35, 42, (156,68,0): 70, 35, 42, (156,69,0): 70, 35, 42, (156,70,0): 70, 35, 41, (156,71,0): 70, 35, 41, (156,72,0): 70, 33, 40, (156,73,0): 71, 35, 39, (156,74,0): 74, 35, 40, (156,75,0): 74, 35, 40, (156,76,0): 74, 35, 38, (156,77,0): 73, 34, 37, (156,78,0): 73, 32, 36, (156,79,0): 71, 32, 35, (156,80,0): 69, 32, 39, (156,81,0): 68, 33, 39, (156,82,0): 68, 33, 39, (156,83,0): 68, 33, 39, (156,84,0): 69, 32, 39, (156,85,0): 70, 33, 40, (156,86,0): 72, 32, 40, (156,87,0): 72, 32, 40, (156,88,0): 75, 34, 42, (156,89,0): 75, 34, 42, (156,90,0): 75, 34, 42, (156,91,0): 75, 32, 41, (156,92,0): 75, 32, 41, (156,93,0): 74, 31, 40, (156,94,0): 76, 30, 40, (156,95,0): 73, 30, 39, (156,96,0): 73, 31, 41, (156,97,0): 72, 32, 41, (156,98,0): 71, 31, 40, (156,99,0): 69, 32, 40, (156,100,0): 66, 30, 40, (156,101,0): 61, 28, 37, (156,102,0): 57, 27, 37, (156,103,0): 53, 26, 35, (156,104,0): 49, 23, 32, (156,105,0): 45, 22, 30, (156,106,0): 42, 21, 30, (156,107,0): 37, 20, 28, (156,108,0): 35, 18, 28, (156,109,0): 33, 17, 27, (156,110,0): 31, 18, 27, (156,111,0): 31, 18, 27, (156,112,0): 34, 18, 29, (156,113,0): 34, 18, 29, (156,114,0): 35, 19, 30, (156,115,0): 36, 20, 31, (156,116,0): 36, 20, 31, (156,117,0): 35, 19, 30, (156,118,0): 34, 18, 29, (156,119,0): 33, 17, 28, (156,120,0): 33, 17, 28, (156,121,0): 33, 17, 28, (156,122,0): 33, 17, 28, (156,123,0): 33, 17, 28, (156,124,0): 33, 17, 28, (156,125,0): 33, 17, 28, (156,126,0): 33, 17, 28, (156,127,0): 33, 17, 28, (156,128,0): 33, 20, 29, (156,129,0): 33, 20, 29, (156,130,0): 35, 19, 29, (156,131,0): 36, 20, 30, (156,132,0): 36, 21, 28, (156,133,0): 37, 22, 29, (156,134,0): 38, 21, 27, (156,135,0): 38, 21, 27, (156,136,0): 39, 20, 26, (156,137,0): 39, 20, 26, (156,138,0): 40, 21, 25, (156,139,0): 40, 21, 25, (156,140,0): 42, 22, 24, (156,141,0): 42, 22, 24, (156,142,0): 43, 23, 25, (156,143,0): 43, 23, 25, (156,144,0): 45, 25, 27, (156,145,0): 45, 25, 27, (156,146,0): 45, 25, 27, (156,147,0): 46, 26, 28, (156,148,0): 47, 27, 29, (156,149,0): 47, 27, 29, (156,150,0): 47, 27, 29, (156,151,0): 48, 28, 30, (156,152,0): 49, 29, 31, (156,153,0): 48, 28, 30, (156,154,0): 47, 27, 29, (156,155,0): 46, 26, 28, (156,156,0): 46, 26, 28, (156,157,0): 47, 27, 29, (156,158,0): 48, 28, 30, (156,159,0): 49, 29, 31, (156,160,0): 47, 25, 27, (156,161,0): 47, 25, 27, (156,162,0): 47, 25, 27, (156,163,0): 47, 25, 27, (156,164,0): 47, 25, 27, (156,165,0): 47, 25, 27, (156,166,0): 47, 25, 27, (156,167,0): 47, 25, 27, (156,168,0): 47, 25, 27, (156,169,0): 47, 25, 27, (156,170,0): 47, 25, 27, (156,171,0): 47, 25, 27, (156,172,0): 47, 25, 27, (156,173,0): 47, 25, 27, (156,174,0): 47, 25, 27, (156,175,0): 46, 26, 27, (156,176,0): 46, 25, 30, (156,177,0): 45, 26, 30, (156,178,0): 46, 26, 28, (156,179,0): 46, 26, 28, (156,180,0): 46, 26, 28, (156,181,0): 46, 26, 28, (156,182,0): 47, 25, 27, (156,183,0): 47, 25, 27, (156,184,0): 45, 21, 21, (156,185,0): 46, 22, 22, (156,186,0): 47, 23, 23, (156,187,0): 49, 25, 25, (156,188,0): 50, 24, 23, (156,189,0): 50, 24, 23, (156,190,0): 49, 23, 22, (156,191,0): 49, 23, 22, (156,192,0): 50, 24, 23, (156,193,0): 50, 24, 23, (156,194,0): 50, 24, 23, (156,195,0): 50, 24, 23, (156,196,0): 52, 24, 23, (156,197,0): 52, 24, 23, (156,198,0): 52, 24, 21, (156,199,0): 52, 24, 21, (156,200,0): 51, 22, 18, (156,201,0): 51, 22, 18, (156,202,0): 53, 22, 17, (156,203,0): 54, 23, 18, (156,204,0): 54, 23, 18, (156,205,0): 55, 24, 19, (156,206,0): 57, 24, 19, (156,207,0): 57, 24, 19, (156,208,0): 60, 27, 22, (156,209,0): 60, 27, 22, (156,210,0): 58, 27, 22, (156,211,0): 57, 26, 21, (156,212,0): 56, 25, 20, (156,213,0): 56, 25, 20, (156,214,0): 55, 26, 20, (156,215,0): 54, 25, 19, (156,216,0): 52, 25, 18, (156,217,0): 52, 25, 18, (156,218,0): 52, 25, 18, (156,219,0): 52, 25, 18, (156,220,0): 50, 25, 18, (156,221,0): 50, 25, 18, (156,222,0): 50, 25, 18, (156,223,0): 50, 26, 16, (156,224,0): 52, 23, 15, (156,225,0): 52, 24, 13, (156,226,0): 52, 24, 13, (156,227,0): 53, 25, 14, (156,228,0): 53, 25, 14, (156,229,0): 54, 26, 15, (156,230,0): 54, 26, 15, (156,231,0): 55, 27, 16, (156,232,0): 55, 27, 16, (156,233,0): 55, 27, 16, (156,234,0): 55, 27, 16, (156,235,0): 55, 27, 16, (156,236,0): 55, 27, 16, (156,237,0): 55, 27, 16, (156,238,0): 55, 27, 16, (156,239,0): 55, 27, 16, (156,240,0): 55, 29, 16, (156,241,0): 55, 29, 16, (156,242,0): 56, 28, 16, (156,243,0): 56, 28, 16, (156,244,0): 57, 29, 17, (156,245,0): 59, 31, 19, (156,246,0): 62, 32, 21, (156,247,0): 63, 33, 22, (156,248,0): 64, 32, 21, (156,249,0): 64, 32, 21, (156,250,0): 64, 32, 21, (156,251,0): 65, 33, 22, (156,252,0): 66, 32, 22, (156,253,0): 67, 33, 23, (156,254,0): 67, 33, 23, (156,255,0): 66, 34, 23, (156,256,0): 66, 37, 23, (156,257,0): 65, 37, 23, (156,258,0): 65, 37, 25, (156,259,0): 65, 37, 25, (156,260,0): 65, 37, 25, (156,261,0): 65, 37, 25, (156,262,0): 65, 37, 26, (156,263,0): 65, 37, 26, (156,264,0): 65, 36, 28, (156,265,0): 64, 35, 27, (156,266,0): 63, 34, 26, (156,267,0): 62, 33, 25, (156,268,0): 62, 33, 27, (156,269,0): 63, 34, 28, (156,270,0): 64, 35, 29, (156,271,0): 66, 35, 30, (156,272,0): 69, 36, 31, (156,273,0): 70, 35, 31, (156,274,0): 71, 36, 32, (156,275,0): 72, 37, 33, (156,276,0): 72, 37, 31, (156,277,0): 73, 39, 30, (156,278,0): 74, 40, 31, (156,279,0): 74, 40, 30, (156,280,0): 77, 43, 31, (156,281,0): 77, 44, 29, (156,282,0): 78, 45, 30, (156,283,0): 80, 47, 30, (156,284,0): 82, 49, 30, (156,285,0): 83, 50, 31, (156,286,0): 84, 51, 32, (156,287,0): 85, 52, 33, (156,288,0): 85, 52, 33, (156,289,0): 86, 53, 34, (156,290,0): 86, 53, 34, (156,291,0): 86, 53, 34, (156,292,0): 86, 55, 35, (156,293,0): 87, 56, 36, (156,294,0): 87, 56, 36, (156,295,0): 87, 56, 36, (156,296,0): 87, 59, 38, (156,297,0): 87, 59, 38, (156,298,0): 86, 59, 38, (156,299,0): 87, 60, 39, (156,300,0): 88, 61, 40, (156,301,0): 91, 64, 43, (156,302,0): 92, 67, 45, (156,303,0): 93, 69, 45, (156,304,0): 98, 72, 45, (156,305,0): 101, 76, 46, (156,306,0): 106, 79, 52, (156,307,0): 110, 80, 52, (156,308,0): 114, 83, 55, (156,309,0): 119, 88, 57, (156,310,0): 128, 96, 58, (156,311,0): 133, 102, 56, (156,312,0): 142, 113, 57, (156,313,0): 150, 125, 59, (156,314,0): 167, 143, 69, (156,315,0): 181, 160, 81, (156,316,0): 186, 168, 84, (156,317,0): 183, 167, 82, (156,318,0): 177, 162, 77, (156,319,0): 174, 159, 76, (156,320,0): 173, 156, 78, (156,321,0): 172, 154, 80, (156,322,0): 170, 152, 80, (156,323,0): 167, 148, 79, (156,324,0): 165, 146, 80, (156,325,0): 163, 143, 80, (156,326,0): 162, 142, 83, (156,327,0): 161, 140, 85, (156,328,0): 158, 137, 84, (156,329,0): 159, 138, 85, (156,330,0): 161, 139, 89, (156,331,0): 162, 140, 90, (156,332,0): 162, 140, 90, (156,333,0): 162, 140, 90, (156,334,0): 161, 139, 89, (156,335,0): 161, 138, 86, (156,336,0): 164, 134, 82, (156,337,0): 170, 138, 87, (156,338,0): 176, 144, 93, (156,339,0): 179, 147, 96, (156,340,0): 179, 147, 96, (156,341,0): 180, 149, 95, (156,342,0): 181, 150, 96, (156,343,0): 183, 152, 98, (156,344,0): 185, 154, 99, (156,345,0): 188, 159, 103, (156,346,0): 194, 163, 106, (156,347,0): 194, 165, 107, (156,348,0): 195, 164, 107, (156,349,0): 194, 165, 107, (156,350,0): 196, 165, 108, (156,351,0): 198, 168, 108, (156,352,0): 194, 164, 104, (156,353,0): 195, 165, 103, (156,354,0): 200, 166, 105, (156,355,0): 205, 167, 105, (156,356,0): 213, 169, 108, (156,357,0): 219, 171, 109, (156,358,0): 225, 171, 109, (156,359,0): 230, 172, 109, (156,360,0): 229, 168, 103, (156,361,0): 233, 170, 103, (156,362,0): 236, 171, 103, (156,363,0): 242, 175, 105, (156,364,0): 246, 178, 107, (156,365,0): 248, 180, 107, (156,366,0): 251, 181, 109, (156,367,0): 251, 183, 110, (156,368,0): 250, 183, 112, (156,369,0): 246, 182, 110, (156,370,0): 243, 180, 109, (156,371,0): 242, 182, 110, (156,372,0): 241, 184, 113, (156,373,0): 238, 186, 113, (156,374,0): 234, 186, 114, (156,375,0): 231, 184, 112, (156,376,0): 224, 181, 112, (156,377,0): 221, 181, 111, (156,378,0): 219, 179, 110, (156,379,0): 216, 177, 108, (156,380,0): 215, 174, 108, (156,381,0): 213, 172, 106, (156,382,0): 211, 170, 106, (156,383,0): 210, 169, 103, (156,384,0): 212, 173, 104, (156,385,0): 213, 176, 105, (156,386,0): 217, 179, 108, (156,387,0): 219, 182, 111, (156,388,0): 224, 186, 115, (156,389,0): 227, 191, 117, (156,390,0): 230, 192, 117, (156,391,0): 231, 195, 117, (156,392,0): 233, 197, 119, (156,393,0): 234, 199, 118, (156,394,0): 234, 199, 117, (156,395,0): 236, 201, 117, (156,396,0): 238, 203, 119, (156,397,0): 241, 207, 120, (156,398,0): 243, 209, 122, (156,399,0): 242, 210, 123, (156,400,0): 244, 214, 124, (156,401,0): 245, 216, 124, (156,402,0): 246, 217, 123, (156,403,0): 247, 218, 124, (156,404,0): 247, 221, 124, (156,405,0): 248, 223, 123, (156,406,0): 249, 224, 123, (156,407,0): 249, 226, 122, (156,408,0): 248, 225, 119, (156,409,0): 249, 227, 118, (156,410,0): 251, 231, 119, (156,411,0): 253, 233, 120, (156,412,0): 255, 235, 122, (156,413,0): 255, 236, 121, (156,414,0): 254, 237, 121, (156,415,0): 254, 237, 121, (156,416,0): 255, 240, 124, (156,417,0): 255, 243, 128, (156,418,0): 255, 242, 129, (156,419,0): 255, 242, 128, (156,420,0): 252, 239, 127, (156,421,0): 247, 235, 125, (156,422,0): 243, 231, 123, (156,423,0): 241, 229, 121, (156,424,0): 235, 221, 114, (156,425,0): 239, 222, 116, (156,426,0): 242, 224, 116, (156,427,0): 243, 222, 113, (156,428,0): 242, 218, 108, (156,429,0): 242, 218, 108, (156,430,0): 248, 220, 110, (156,431,0): 250, 224, 111, (156,432,0): 245, 222, 110, (156,433,0): 241, 221, 109, (156,434,0): 239, 218, 111, (156,435,0): 234, 216, 114, (156,436,0): 229, 213, 117, (156,437,0): 219, 205, 116, (156,438,0): 206, 194, 110, (156,439,0): 198, 185, 106, (156,440,0): 183, 171, 95, (156,441,0): 180, 168, 94, (156,442,0): 178, 164, 91, (156,443,0): 178, 164, 91, (156,444,0): 182, 168, 93, (156,445,0): 188, 172, 95, (156,446,0): 191, 173, 97, (156,447,0): 192, 173, 97, (156,448,0): 195, 173, 100, (156,449,0): 197, 173, 101, (156,450,0): 199, 175, 105, (156,451,0): 200, 176, 106, (156,452,0): 200, 175, 108, (156,453,0): 200, 175, 108, (156,454,0): 201, 173, 108, (156,455,0): 200, 172, 107, (156,456,0): 200, 170, 106, (156,457,0): 200, 170, 106, (156,458,0): 200, 171, 105, (156,459,0): 202, 171, 104, (156,460,0): 204, 174, 104, (156,461,0): 204, 174, 102, (156,462,0): 203, 173, 101, (156,463,0): 204, 172, 99, (156,464,0): 211, 177, 103, (156,465,0): 212, 176, 102, (156,466,0): 211, 174, 103, (156,467,0): 206, 174, 101, (156,468,0): 203, 173, 101, (156,469,0): 201, 173, 100, (156,470,0): 197, 173, 101, (156,471,0): 196, 173, 103, (156,472,0): 187, 168, 99, (156,473,0): 187, 170, 101, (156,474,0): 186, 173, 105, (156,475,0): 186, 175, 109, (156,476,0): 185, 178, 110, (156,477,0): 183, 178, 112, (156,478,0): 182, 177, 111, (156,479,0): 181, 178, 111, (156,480,0): 181, 178, 111, (156,481,0): 180, 177, 110, (156,482,0): 176, 175, 110, (156,483,0): 173, 172, 107, (156,484,0): 169, 167, 106, (156,485,0): 164, 162, 103, (156,486,0): 159, 158, 101, (156,487,0): 157, 156, 102, (156,488,0): 154, 152, 103, (156,489,0): 151, 150, 102, (156,490,0): 147, 146, 102, (156,491,0): 145, 143, 102, (156,492,0): 140, 141, 101, (156,493,0): 135, 135, 97, (156,494,0): 128, 128, 92, (156,495,0): 122, 122, 88, (156,496,0): 120, 120, 86, (156,497,0): 119, 119, 85, (156,498,0): 117, 116, 85, (156,499,0): 115, 114, 83, (156,500,0): 113, 112, 81, (156,501,0): 111, 110, 79, (156,502,0): 109, 108, 78, (156,503,0): 108, 107, 77, (156,504,0): 107, 106, 78, (156,505,0): 107, 106, 78, (156,506,0): 106, 105, 77, (156,507,0): 105, 104, 76, (156,508,0): 105, 103, 78, (156,509,0): 106, 104, 79, (156,510,0): 108, 106, 81, (156,511,0): 110, 106, 79, (156,512,0): 107, 101, 75, (156,513,0): 108, 103, 74, (156,514,0): 110, 105, 76, (156,515,0): 112, 107, 78, (156,516,0): 113, 107, 81, (156,517,0): 113, 107, 81, (156,518,0): 113, 107, 83, (156,519,0): 112, 106, 82, (156,520,0): 113, 107, 83, (156,521,0): 111, 105, 81, (156,522,0): 110, 104, 82, (156,523,0): 108, 102, 80, (156,524,0): 107, 100, 81, (156,525,0): 106, 99, 80, (156,526,0): 107, 100, 81, (156,527,0): 113, 98, 79, (156,528,0): 122, 93, 79, (156,529,0): 132, 96, 82, (156,530,0): 133, 100, 85, (156,531,0): 129, 97, 82, (156,532,0): 121, 94, 77, (156,533,0): 114, 91, 73, (156,534,0): 108, 90, 70, (156,535,0): 106, 89, 69, (156,536,0): 109, 94, 73, (156,537,0): 107, 95, 73, (156,538,0): 106, 94, 72, (156,539,0): 106, 94, 72, (156,540,0): 106, 94, 72, (156,541,0): 106, 94, 72, (156,542,0): 109, 94, 73, (156,543,0): 109, 94, 75, (156,544,0): 106, 88, 76, (156,545,0): 104, 86, 76, (156,546,0): 100, 82, 72, (156,547,0): 96, 78, 68, (156,548,0): 90, 73, 63, (156,549,0): 86, 69, 59, (156,550,0): 83, 66, 58, (156,551,0): 82, 65, 57, (156,552,0): 79, 64, 57, (156,553,0): 78, 63, 56, (156,554,0): 76, 63, 57, (156,555,0): 75, 62, 56, (156,556,0): 74, 61, 55, (156,557,0): 73, 60, 54, (156,558,0): 70, 59, 53, (156,559,0): 69, 58, 52, (156,560,0): 74, 64, 55, (156,561,0): 73, 64, 55, (156,562,0): 74, 65, 56, (156,563,0): 75, 66, 57, (156,564,0): 76, 69, 59, (156,565,0): 79, 72, 62, (156,566,0): 82, 75, 65, (156,567,0): 84, 77, 67, (156,568,0): 86, 82, 71, (156,569,0): 87, 83, 72, (156,570,0): 87, 85, 73, (156,571,0): 88, 86, 74, (156,572,0): 89, 87, 75, (156,573,0): 88, 86, 74, (156,574,0): 85, 85, 73, (156,575,0): 84, 86, 73, (156,576,0): 80, 87, 71, (156,577,0): 81, 85, 71, (156,578,0): 84, 80, 71, (156,579,0): 85, 76, 71, (156,580,0): 87, 73, 72, (156,581,0): 87, 73, 72, (156,582,0): 85, 75, 73, (156,583,0): 85, 76, 71, (156,584,0): 90, 81, 74, (156,585,0): 91, 81, 72, (156,586,0): 96, 79, 71, (156,587,0): 97, 78, 71, (156,588,0): 97, 80, 73, (156,589,0): 95, 80, 75, (156,590,0): 91, 81, 79, (156,591,0): 91, 83, 80, (156,592,0): 97, 83, 82, (156,593,0): 97, 81, 81, (156,594,0): 95, 79, 79, (156,595,0): 92, 76, 76, (156,596,0): 89, 73, 73, (156,597,0): 87, 71, 71, (156,598,0): 85, 69, 69, (156,599,0): 84, 68, 68, (157,0,0): 34, 26, 39, (157,1,0): 34, 26, 39, (157,2,0): 34, 26, 39, (157,3,0): 34, 26, 39, (157,4,0): 34, 26, 39, (157,5,0): 34, 26, 39, (157,6,0): 34, 26, 39, (157,7,0): 34, 26, 39, (157,8,0): 34, 26, 39, (157,9,0): 35, 27, 40, (157,10,0): 36, 28, 41, (157,11,0): 38, 30, 43, (157,12,0): 38, 30, 43, (157,13,0): 38, 30, 43, (157,14,0): 37, 29, 42, (157,15,0): 39, 28, 42, (157,16,0): 43, 29, 44, (157,17,0): 45, 28, 44, (157,18,0): 45, 28, 44, (157,19,0): 45, 28, 44, (157,20,0): 45, 28, 44, (157,21,0): 45, 28, 44, (157,22,0): 45, 28, 44, (157,23,0): 45, 28, 44, (157,24,0): 44, 27, 43, (157,25,0): 44, 27, 43, (157,26,0): 44, 27, 43, (157,27,0): 45, 28, 44, (157,28,0): 45, 28, 44, (157,29,0): 46, 29, 45, (157,30,0): 46, 29, 45, (157,31,0): 46, 30, 43, (157,32,0): 48, 30, 44, (157,33,0): 48, 30, 42, (157,34,0): 48, 30, 42, (157,35,0): 49, 31, 43, (157,36,0): 51, 31, 43, (157,37,0): 52, 32, 44, (157,38,0): 52, 32, 44, (157,39,0): 52, 32, 44, (157,40,0): 53, 31, 44, (157,41,0): 53, 31, 44, (157,42,0): 55, 31, 45, (157,43,0): 56, 32, 46, (157,44,0): 57, 33, 47, (157,45,0): 58, 34, 48, (157,46,0): 61, 34, 49, (157,47,0): 63, 35, 50, (157,48,0): 66, 34, 49, (157,49,0): 68, 34, 50, (157,50,0): 69, 35, 51, (157,51,0): 70, 36, 52, (157,52,0): 71, 37, 51, (157,53,0): 71, 37, 51, (157,54,0): 70, 37, 48, (157,55,0): 69, 36, 47, (157,56,0): 71, 38, 49, (157,57,0): 71, 38, 49, (157,58,0): 70, 37, 46, (157,59,0): 69, 36, 45, (157,60,0): 68, 35, 42, (157,61,0): 67, 34, 41, (157,62,0): 66, 33, 40, (157,63,0): 66, 33, 40, (157,64,0): 68, 35, 44, (157,65,0): 68, 35, 44, (157,66,0): 68, 35, 42, (157,67,0): 68, 35, 42, (157,68,0): 70, 35, 42, (157,69,0): 70, 35, 42, (157,70,0): 70, 35, 41, (157,71,0): 70, 35, 41, (157,72,0): 72, 36, 40, (157,73,0): 73, 37, 41, (157,74,0): 75, 36, 41, (157,75,0): 76, 37, 42, (157,76,0): 75, 36, 39, (157,77,0): 74, 35, 38, (157,78,0): 73, 32, 36, (157,79,0): 72, 33, 36, (157,80,0): 69, 33, 37, (157,81,0): 68, 33, 39, (157,82,0): 68, 33, 39, (157,83,0): 69, 34, 40, (157,84,0): 70, 33, 40, (157,85,0): 70, 33, 40, (157,86,0): 73, 33, 41, (157,87,0): 73, 33, 41, (157,88,0): 76, 35, 43, (157,89,0): 75, 34, 42, (157,90,0): 76, 33, 42, (157,91,0): 76, 33, 42, (157,92,0): 77, 31, 41, (157,93,0): 76, 30, 40, (157,94,0): 76, 30, 40, (157,95,0): 76, 30, 40, (157,96,0): 75, 32, 42, (157,97,0): 74, 32, 42, (157,98,0): 73, 31, 41, (157,99,0): 71, 31, 40, (157,100,0): 67, 29, 40, (157,101,0): 61, 28, 37, (157,102,0): 58, 26, 37, (157,103,0): 55, 25, 35, (157,104,0): 50, 23, 32, (157,105,0): 46, 23, 31, (157,106,0): 43, 22, 31, (157,107,0): 37, 20, 28, (157,108,0): 36, 19, 29, (157,109,0): 34, 18, 28, (157,110,0): 32, 19, 28, (157,111,0): 32, 19, 28, (157,112,0): 34, 18, 29, (157,113,0): 35, 19, 30, (157,114,0): 36, 20, 31, (157,115,0): 36, 20, 31, (157,116,0): 36, 20, 31, (157,117,0): 34, 18, 29, (157,118,0): 33, 17, 28, (157,119,0): 32, 16, 27, (157,120,0): 32, 16, 27, (157,121,0): 32, 16, 27, (157,122,0): 32, 16, 27, (157,123,0): 32, 16, 27, (157,124,0): 32, 16, 27, (157,125,0): 32, 16, 27, (157,126,0): 32, 16, 27, (157,127,0): 32, 16, 27, (157,128,0): 33, 20, 29, (157,129,0): 33, 20, 29, (157,130,0): 35, 19, 29, (157,131,0): 36, 20, 30, (157,132,0): 36, 21, 28, (157,133,0): 37, 22, 29, (157,134,0): 38, 21, 27, (157,135,0): 38, 21, 27, (157,136,0): 39, 20, 26, (157,137,0): 39, 20, 26, (157,138,0): 40, 21, 25, (157,139,0): 40, 21, 25, (157,140,0): 42, 22, 24, (157,141,0): 42, 22, 24, (157,142,0): 43, 23, 25, (157,143,0): 43, 23, 25, (157,144,0): 45, 25, 27, (157,145,0): 46, 26, 28, (157,146,0): 46, 26, 28, (157,147,0): 47, 27, 29, (157,148,0): 47, 27, 29, (157,149,0): 48, 28, 30, (157,150,0): 48, 28, 30, (157,151,0): 48, 28, 30, (157,152,0): 49, 29, 31, (157,153,0): 48, 28, 30, (157,154,0): 47, 27, 29, (157,155,0): 46, 26, 28, (157,156,0): 46, 26, 28, (157,157,0): 47, 27, 29, (157,158,0): 48, 28, 30, (157,159,0): 49, 29, 31, (157,160,0): 48, 26, 28, (157,161,0): 48, 26, 28, (157,162,0): 48, 26, 28, (157,163,0): 48, 26, 28, (157,164,0): 48, 26, 28, (157,165,0): 48, 26, 28, (157,166,0): 48, 26, 28, (157,167,0): 48, 26, 28, (157,168,0): 46, 24, 26, (157,169,0): 46, 24, 26, (157,170,0): 46, 24, 26, (157,171,0): 46, 24, 26, (157,172,0): 46, 24, 26, (157,173,0): 46, 24, 26, (157,174,0): 46, 24, 26, (157,175,0): 45, 25, 26, (157,176,0): 45, 24, 29, (157,177,0): 44, 25, 29, (157,178,0): 45, 25, 27, (157,179,0): 45, 25, 27, (157,180,0): 45, 25, 27, (157,181,0): 45, 25, 27, (157,182,0): 46, 24, 26, (157,183,0): 46, 24, 26, (157,184,0): 45, 21, 21, (157,185,0): 46, 22, 22, (157,186,0): 47, 23, 23, (157,187,0): 49, 25, 25, (157,188,0): 50, 24, 23, (157,189,0): 50, 24, 23, (157,190,0): 49, 23, 22, (157,191,0): 49, 23, 22, (157,192,0): 50, 24, 23, (157,193,0): 50, 24, 23, (157,194,0): 50, 24, 23, (157,195,0): 50, 24, 23, (157,196,0): 52, 24, 23, (157,197,0): 52, 24, 23, (157,198,0): 52, 24, 21, (157,199,0): 52, 24, 21, (157,200,0): 50, 21, 17, (157,201,0): 51, 22, 18, (157,202,0): 53, 22, 17, (157,203,0): 54, 23, 18, (157,204,0): 55, 24, 19, (157,205,0): 54, 23, 18, (157,206,0): 56, 23, 18, (157,207,0): 55, 22, 17, (157,208,0): 60, 27, 22, (157,209,0): 59, 26, 21, (157,210,0): 57, 26, 21, (157,211,0): 56, 25, 20, (157,212,0): 56, 25, 20, (157,213,0): 55, 24, 19, (157,214,0): 54, 25, 19, (157,215,0): 54, 25, 19, (157,216,0): 51, 24, 17, (157,217,0): 51, 24, 17, (157,218,0): 51, 24, 17, (157,219,0): 51, 24, 17, (157,220,0): 49, 24, 17, (157,221,0): 49, 24, 17, (157,222,0): 49, 24, 17, (157,223,0): 49, 25, 15, (157,224,0): 53, 24, 16, (157,225,0): 53, 25, 14, (157,226,0): 53, 25, 14, (157,227,0): 54, 26, 15, (157,228,0): 54, 26, 15, (157,229,0): 55, 27, 16, (157,230,0): 55, 27, 16, (157,231,0): 55, 27, 16, (157,232,0): 55, 27, 16, (157,233,0): 55, 27, 16, (157,234,0): 55, 27, 16, (157,235,0): 55, 27, 16, (157,236,0): 55, 27, 16, (157,237,0): 55, 27, 16, (157,238,0): 55, 27, 16, (157,239,0): 55, 27, 16, (157,240,0): 56, 30, 17, (157,241,0): 55, 29, 16, (157,242,0): 56, 28, 16, (157,243,0): 56, 28, 16, (157,244,0): 58, 30, 18, (157,245,0): 59, 31, 19, (157,246,0): 62, 32, 21, (157,247,0): 63, 33, 22, (157,248,0): 64, 32, 21, (157,249,0): 64, 32, 21, (157,250,0): 64, 32, 21, (157,251,0): 65, 33, 22, (157,252,0): 66, 32, 22, (157,253,0): 67, 33, 23, (157,254,0): 67, 33, 23, (157,255,0): 66, 34, 23, (157,256,0): 65, 36, 22, (157,257,0): 64, 36, 22, (157,258,0): 64, 36, 24, (157,259,0): 64, 36, 24, (157,260,0): 64, 36, 24, (157,261,0): 64, 36, 24, (157,262,0): 64, 36, 25, (157,263,0): 64, 36, 25, (157,264,0): 64, 35, 27, (157,265,0): 63, 34, 26, (157,266,0): 62, 33, 25, (157,267,0): 61, 32, 24, (157,268,0): 61, 32, 26, (157,269,0): 62, 33, 27, (157,270,0): 63, 34, 28, (157,271,0): 65, 34, 29, (157,272,0): 68, 35, 30, (157,273,0): 70, 35, 31, (157,274,0): 71, 36, 32, (157,275,0): 71, 36, 32, (157,276,0): 73, 38, 32, (157,277,0): 73, 39, 30, (157,278,0): 74, 40, 31, (157,279,0): 75, 41, 31, (157,280,0): 76, 42, 30, (157,281,0): 77, 44, 29, (157,282,0): 78, 45, 30, (157,283,0): 79, 46, 29, (157,284,0): 81, 48, 29, (157,285,0): 83, 50, 31, (157,286,0): 84, 51, 32, (157,287,0): 84, 51, 32, (157,288,0): 85, 52, 33, (157,289,0): 85, 52, 33, (157,290,0): 85, 52, 33, (157,291,0): 86, 53, 34, (157,292,0): 85, 54, 34, (157,293,0): 86, 55, 35, (157,294,0): 86, 55, 35, (157,295,0): 87, 56, 36, (157,296,0): 87, 59, 38, (157,297,0): 87, 59, 38, (157,298,0): 86, 59, 38, (157,299,0): 87, 60, 39, (157,300,0): 89, 62, 41, (157,301,0): 91, 64, 43, (157,302,0): 92, 67, 45, (157,303,0): 94, 70, 46, (157,304,0): 96, 70, 43, (157,305,0): 99, 74, 44, (157,306,0): 104, 77, 50, (157,307,0): 107, 80, 53, (157,308,0): 112, 82, 56, (157,309,0): 118, 87, 58, (157,310,0): 127, 94, 59, (157,311,0): 130, 101, 57, (157,312,0): 137, 110, 57, (157,313,0): 143, 119, 55, (157,314,0): 159, 137, 64, (157,315,0): 177, 158, 79, (157,316,0): 186, 169, 87, (157,317,0): 184, 169, 84, (157,318,0): 177, 165, 79, (157,319,0): 175, 163, 79, (157,320,0): 175, 159, 81, (157,321,0): 174, 156, 80, (157,322,0): 171, 153, 79, (157,323,0): 168, 150, 78, (157,324,0): 165, 146, 78, (157,325,0): 163, 143, 80, (157,326,0): 162, 142, 83, (157,327,0): 162, 141, 84, (157,328,0): 160, 139, 84, (157,329,0): 161, 140, 87, (157,330,0): 164, 142, 92, (157,331,0): 165, 143, 93, (157,332,0): 165, 143, 93, (157,333,0): 164, 143, 90, (157,334,0): 162, 141, 88, (157,335,0): 161, 138, 86, (157,336,0): 164, 134, 82, (157,337,0): 170, 138, 87, (157,338,0): 176, 144, 93, (157,339,0): 179, 147, 96, (157,340,0): 179, 147, 96, (157,341,0): 179, 147, 96, (157,342,0): 181, 150, 96, (157,343,0): 182, 151, 97, (157,344,0): 184, 155, 99, (157,345,0): 189, 160, 104, (157,346,0): 194, 165, 107, (157,347,0): 197, 168, 110, (157,348,0): 196, 167, 109, (157,349,0): 196, 167, 109, (157,350,0): 197, 168, 110, (157,351,0): 199, 170, 110, (157,352,0): 196, 166, 106, (157,353,0): 198, 166, 105, (157,354,0): 202, 166, 104, (157,355,0): 207, 167, 106, (157,356,0): 213, 169, 108, (157,357,0): 220, 172, 110, (157,358,0): 227, 173, 111, (157,359,0): 232, 174, 110, (157,360,0): 230, 169, 104, (157,361,0): 235, 172, 103, (157,362,0): 240, 176, 105, (157,363,0): 246, 179, 108, (157,364,0): 248, 182, 108, (157,365,0): 251, 183, 108, (157,366,0): 251, 183, 108, (157,367,0): 250, 182, 107, (157,368,0): 249, 181, 110, (157,369,0): 247, 180, 109, (157,370,0): 244, 180, 109, (157,371,0): 240, 180, 108, (157,372,0): 238, 181, 110, (157,373,0): 234, 182, 109, (157,374,0): 230, 182, 110, (157,375,0): 226, 182, 111, (157,376,0): 223, 180, 111, (157,377,0): 220, 182, 111, (157,378,0): 218, 179, 110, (157,379,0): 217, 178, 109, (157,380,0): 216, 177, 110, (157,381,0): 214, 175, 108, (157,382,0): 214, 173, 109, (157,383,0): 213, 174, 107, (157,384,0): 212, 175, 105, (157,385,0): 214, 177, 106, (157,386,0): 217, 180, 109, (157,387,0): 220, 184, 110, (157,388,0): 224, 188, 114, (157,389,0): 228, 192, 116, (157,390,0): 230, 194, 116, (157,391,0): 230, 197, 116, (157,392,0): 232, 199, 118, (157,393,0): 233, 201, 118, (157,394,0): 234, 202, 117, (157,395,0): 235, 205, 117, (157,396,0): 238, 206, 119, (157,397,0): 239, 209, 121, (157,398,0): 241, 211, 123, (157,399,0): 242, 212, 122, (157,400,0): 244, 215, 121, (157,401,0): 244, 216, 119, (157,402,0): 246, 218, 121, (157,403,0): 248, 220, 121, (157,404,0): 250, 222, 123, (157,405,0): 250, 225, 124, (157,406,0): 251, 226, 123, (157,407,0): 252, 228, 122, (157,408,0): 250, 228, 119, (157,409,0): 251, 229, 120, (157,410,0): 253, 231, 120, (157,411,0): 254, 234, 122, (157,412,0): 255, 235, 122, (157,413,0): 255, 236, 121, (157,414,0): 253, 236, 120, (157,415,0): 253, 236, 120, (157,416,0): 253, 238, 121, (157,417,0): 254, 242, 124, (157,418,0): 255, 242, 127, (157,419,0): 254, 241, 127, (157,420,0): 249, 237, 125, (157,421,0): 245, 233, 121, (157,422,0): 242, 230, 120, (157,423,0): 242, 230, 122, (157,424,0): 235, 221, 114, (157,425,0): 238, 221, 113, (157,426,0): 240, 222, 112, (157,427,0): 242, 221, 112, (157,428,0): 242, 220, 109, (157,429,0): 243, 220, 108, (157,430,0): 248, 221, 108, (157,431,0): 248, 222, 111, (157,432,0): 237, 217, 105, (157,433,0): 233, 215, 107, (157,434,0): 230, 213, 109, (157,435,0): 229, 214, 113, (157,436,0): 226, 213, 119, (157,437,0): 219, 208, 119, (157,438,0): 207, 196, 114, (157,439,0): 199, 188, 109, (157,440,0): 185, 173, 99, (157,441,0): 181, 169, 95, (157,442,0): 178, 164, 91, (157,443,0): 178, 164, 89, (157,444,0): 183, 167, 92, (157,445,0): 188, 170, 94, (157,446,0): 191, 172, 95, (157,447,0): 193, 171, 95, (157,448,0): 196, 172, 98, (157,449,0): 197, 173, 101, (157,450,0): 199, 175, 105, (157,451,0): 200, 176, 106, (157,452,0): 201, 176, 109, (157,453,0): 202, 177, 110, (157,454,0): 203, 175, 110, (157,455,0): 203, 175, 110, (157,456,0): 203, 173, 109, (157,457,0): 201, 172, 106, (157,458,0): 202, 171, 104, (157,459,0): 203, 173, 103, (157,460,0): 206, 176, 104, (157,461,0): 208, 178, 105, (157,462,0): 208, 178, 105, (157,463,0): 210, 178, 105, (157,464,0): 214, 180, 106, (157,465,0): 212, 178, 104, (157,466,0): 210, 176, 104, (157,467,0): 206, 174, 101, (157,468,0): 202, 172, 100, (157,469,0): 199, 172, 101, (157,470,0): 196, 172, 102, (157,471,0): 193, 173, 104, (157,472,0): 186, 169, 100, (157,473,0): 185, 170, 103, (157,474,0): 183, 172, 106, (157,475,0): 184, 175, 108, (157,476,0): 182, 177, 111, (157,477,0): 181, 178, 111, (157,478,0): 180, 176, 112, (157,479,0): 180, 176, 112, (157,480,0): 182, 179, 112, (157,481,0): 182, 179, 110, (157,482,0): 178, 177, 112, (157,483,0): 175, 174, 109, (157,484,0): 171, 169, 108, (157,485,0): 166, 164, 105, (157,486,0): 161, 160, 103, (157,487,0): 159, 158, 104, (157,488,0): 154, 154, 104, (157,489,0): 151, 150, 104, (157,490,0): 148, 147, 103, (157,491,0): 145, 143, 104, (157,492,0): 140, 140, 102, (157,493,0): 134, 134, 98, (157,494,0): 127, 127, 93, (157,495,0): 121, 121, 87, (157,496,0): 120, 120, 86, (157,497,0): 119, 119, 85, (157,498,0): 117, 116, 85, (157,499,0): 115, 114, 83, (157,500,0): 113, 112, 81, (157,501,0): 111, 110, 79, (157,502,0): 109, 108, 78, (157,503,0): 108, 107, 77, (157,504,0): 106, 105, 77, (157,505,0): 106, 105, 77, (157,506,0): 105, 104, 76, (157,507,0): 105, 104, 76, (157,508,0): 105, 103, 78, (157,509,0): 106, 104, 79, (157,510,0): 108, 106, 81, (157,511,0): 109, 107, 82, (157,512,0): 106, 102, 75, (157,513,0): 108, 103, 74, (157,514,0): 110, 105, 76, (157,515,0): 112, 107, 78, (157,516,0): 113, 107, 81, (157,517,0): 113, 107, 81, (157,518,0): 113, 107, 83, (157,519,0): 112, 106, 82, (157,520,0): 114, 108, 84, (157,521,0): 112, 106, 82, (157,522,0): 111, 105, 83, (157,523,0): 109, 103, 81, (157,524,0): 108, 101, 82, (157,525,0): 107, 100, 81, (157,526,0): 108, 101, 82, (157,527,0): 114, 99, 80, (157,528,0): 125, 91, 79, (157,529,0): 140, 100, 88, (157,530,0): 146, 108, 95, (157,531,0): 139, 103, 89, (157,532,0): 126, 94, 79, (157,533,0): 117, 91, 74, (157,534,0): 112, 91, 72, (157,535,0): 108, 91, 71, (157,536,0): 108, 93, 72, (157,537,0): 107, 95, 73, (157,538,0): 108, 96, 74, (157,539,0): 109, 97, 75, (157,540,0): 109, 97, 75, (157,541,0): 108, 96, 74, (157,542,0): 109, 94, 73, (157,543,0): 108, 93, 74, (157,544,0): 105, 87, 75, (157,545,0): 103, 85, 75, (157,546,0): 99, 81, 71, (157,547,0): 95, 77, 67, (157,548,0): 90, 73, 63, (157,549,0): 87, 70, 60, (157,550,0): 85, 68, 60, (157,551,0): 82, 68, 59, (157,552,0): 82, 67, 60, (157,553,0): 81, 66, 59, (157,554,0): 79, 66, 60, (157,555,0): 77, 64, 58, (157,556,0): 76, 63, 57, (157,557,0): 74, 61, 55, (157,558,0): 71, 60, 54, (157,559,0): 71, 60, 54, (157,560,0): 74, 65, 56, (157,561,0): 74, 65, 56, (157,562,0): 75, 66, 57, (157,563,0): 77, 68, 59, (157,564,0): 79, 72, 62, (157,565,0): 82, 75, 65, (157,566,0): 85, 78, 68, (157,567,0): 87, 80, 70, (157,568,0): 88, 84, 73, (157,569,0): 89, 85, 74, (157,570,0): 89, 87, 75, (157,571,0): 90, 88, 76, (157,572,0): 90, 88, 76, (157,573,0): 90, 88, 76, (157,574,0): 87, 87, 75, (157,575,0): 85, 87, 74, (157,576,0): 82, 89, 73, (157,577,0): 83, 87, 73, (157,578,0): 85, 82, 73, (157,579,0): 86, 78, 75, (157,580,0): 86, 74, 74, (157,581,0): 85, 73, 73, (157,582,0): 83, 75, 72, (157,583,0): 84, 77, 71, (157,584,0): 89, 80, 73, (157,585,0): 90, 80, 70, (157,586,0): 95, 78, 68, (157,587,0): 96, 77, 70, (157,588,0): 95, 78, 71, (157,589,0): 92, 78, 75, (157,590,0): 89, 79, 77, (157,591,0): 88, 80, 78, (157,592,0): 96, 82, 81, (157,593,0): 96, 80, 80, (157,594,0): 94, 78, 78, (157,595,0): 92, 76, 76, (157,596,0): 89, 73, 73, (157,597,0): 86, 70, 70, (157,598,0): 84, 68, 68, (157,599,0): 83, 67, 67, (158,0,0): 34, 26, 39, (158,1,0): 34, 26, 39, (158,2,0): 34, 26, 39, (158,3,0): 34, 26, 39, (158,4,0): 34, 26, 39, (158,5,0): 34, 26, 39, (158,6,0): 34, 26, 39, (158,7,0): 34, 26, 39, (158,8,0): 33, 25, 38, (158,9,0): 34, 26, 39, (158,10,0): 35, 27, 40, (158,11,0): 36, 28, 41, (158,12,0): 37, 29, 42, (158,13,0): 37, 29, 42, (158,14,0): 36, 28, 41, (158,15,0): 38, 27, 41, (158,16,0): 43, 29, 44, (158,17,0): 45, 28, 44, (158,18,0): 45, 28, 44, (158,19,0): 45, 28, 44, (158,20,0): 45, 28, 44, (158,21,0): 45, 28, 44, (158,22,0): 45, 28, 44, (158,23,0): 45, 28, 44, (158,24,0): 44, 27, 43, (158,25,0): 44, 27, 43, (158,26,0): 44, 27, 43, (158,27,0): 45, 28, 44, (158,28,0): 45, 28, 44, (158,29,0): 46, 29, 45, (158,30,0): 46, 29, 45, (158,31,0): 46, 30, 43, (158,32,0): 48, 30, 44, (158,33,0): 48, 30, 42, (158,34,0): 48, 30, 42, (158,35,0): 49, 31, 43, (158,36,0): 51, 31, 43, (158,37,0): 52, 32, 44, (158,38,0): 52, 32, 44, (158,39,0): 52, 32, 44, (158,40,0): 53, 31, 44, (158,41,0): 54, 32, 45, (158,42,0): 56, 32, 46, (158,43,0): 57, 33, 47, (158,44,0): 58, 34, 48, (158,45,0): 59, 35, 49, (158,46,0): 62, 35, 50, (158,47,0): 63, 35, 50, (158,48,0): 69, 35, 51, (158,49,0): 72, 35, 52, (158,50,0): 73, 37, 51, (158,51,0): 75, 39, 53, (158,52,0): 75, 39, 53, (158,53,0): 75, 39, 53, (158,54,0): 74, 38, 50, (158,55,0): 74, 38, 50, (158,56,0): 76, 40, 50, (158,57,0): 75, 39, 49, (158,58,0): 74, 38, 48, (158,59,0): 73, 37, 47, (158,60,0): 72, 37, 44, (158,61,0): 71, 36, 43, (158,62,0): 70, 35, 42, (158,63,0): 69, 34, 41, (158,64,0): 71, 36, 43, (158,65,0): 71, 36, 43, (158,66,0): 71, 36, 43, (158,67,0): 71, 36, 43, (158,68,0): 71, 36, 43, (158,69,0): 71, 36, 43, (158,70,0): 72, 35, 42, (158,71,0): 72, 35, 42, (158,72,0): 75, 36, 41, (158,73,0): 76, 37, 42, (158,74,0): 77, 36, 40, (158,75,0): 78, 37, 41, (158,76,0): 77, 36, 40, (158,77,0): 75, 34, 38, (158,78,0): 74, 33, 37, (158,79,0): 72, 33, 36, (158,80,0): 68, 32, 36, (158,81,0): 68, 33, 37, (158,82,0): 68, 33, 37, (158,83,0): 69, 34, 38, (158,84,0): 71, 35, 39, (158,85,0): 71, 35, 39, (158,86,0): 74, 35, 40, (158,87,0): 74, 35, 40, (158,88,0): 76, 35, 41, (158,89,0): 77, 34, 41, (158,90,0): 78, 33, 40, (158,91,0): 78, 33, 40, (158,92,0): 78, 31, 39, (158,93,0): 78, 31, 39, (158,94,0): 78, 31, 39, (158,95,0): 76, 30, 40, (158,96,0): 76, 33, 43, (158,97,0): 75, 33, 43, (158,98,0): 74, 32, 42, (158,99,0): 72, 32, 41, (158,100,0): 67, 29, 40, (158,101,0): 63, 27, 37, (158,102,0): 59, 26, 35, (158,103,0): 55, 25, 33, (158,104,0): 51, 24, 33, (158,105,0): 46, 23, 31, (158,106,0): 43, 22, 31, (158,107,0): 38, 21, 29, (158,108,0): 36, 19, 27, (158,109,0): 34, 19, 26, (158,110,0): 32, 19, 28, (158,111,0): 32, 19, 28, (158,112,0): 35, 19, 30, (158,113,0): 36, 20, 31, (158,114,0): 36, 20, 31, (158,115,0): 36, 20, 31, (158,116,0): 35, 19, 30, (158,117,0): 34, 18, 29, (158,118,0): 32, 16, 27, (158,119,0): 31, 15, 26, (158,120,0): 32, 16, 27, (158,121,0): 32, 16, 27, (158,122,0): 32, 16, 27, (158,123,0): 32, 16, 27, (158,124,0): 32, 16, 27, (158,125,0): 32, 16, 27, (158,126,0): 32, 16, 27, (158,127,0): 32, 16, 27, (158,128,0): 33, 20, 29, (158,129,0): 33, 20, 29, (158,130,0): 35, 19, 29, (158,131,0): 36, 20, 30, (158,132,0): 36, 21, 28, (158,133,0): 37, 22, 29, (158,134,0): 38, 21, 27, (158,135,0): 38, 21, 27, (158,136,0): 39, 20, 26, (158,137,0): 39, 20, 26, (158,138,0): 40, 21, 25, (158,139,0): 40, 21, 25, (158,140,0): 42, 22, 24, (158,141,0): 42, 22, 24, (158,142,0): 43, 23, 25, (158,143,0): 43, 23, 25, (158,144,0): 46, 26, 28, (158,145,0): 46, 26, 28, (158,146,0): 46, 26, 28, (158,147,0): 47, 27, 29, (158,148,0): 47, 27, 29, (158,149,0): 48, 28, 30, (158,150,0): 48, 28, 30, (158,151,0): 49, 29, 31, (158,152,0): 49, 29, 31, (158,153,0): 48, 28, 30, (158,154,0): 47, 27, 29, (158,155,0): 46, 26, 28, (158,156,0): 46, 26, 28, (158,157,0): 47, 27, 29, (158,158,0): 48, 28, 30, (158,159,0): 49, 29, 31, (158,160,0): 48, 26, 28, (158,161,0): 48, 26, 28, (158,162,0): 48, 26, 28, (158,163,0): 48, 26, 28, (158,164,0): 48, 26, 28, (158,165,0): 48, 26, 28, (158,166,0): 48, 26, 28, (158,167,0): 48, 26, 28, (158,168,0): 46, 24, 26, (158,169,0): 46, 24, 26, (158,170,0): 46, 24, 26, (158,171,0): 46, 24, 26, (158,172,0): 46, 24, 26, (158,173,0): 46, 24, 26, (158,174,0): 46, 24, 26, (158,175,0): 45, 25, 26, (158,176,0): 44, 23, 28, (158,177,0): 43, 24, 28, (158,178,0): 44, 24, 26, (158,179,0): 44, 24, 26, (158,180,0): 44, 24, 26, (158,181,0): 44, 24, 26, (158,182,0): 45, 23, 25, (158,183,0): 45, 23, 25, (158,184,0): 45, 21, 21, (158,185,0): 46, 22, 22, (158,186,0): 47, 23, 23, (158,187,0): 49, 25, 25, (158,188,0): 50, 24, 23, (158,189,0): 50, 24, 23, (158,190,0): 49, 23, 22, (158,191,0): 49, 23, 22, (158,192,0): 50, 24, 23, (158,193,0): 50, 24, 23, (158,194,0): 50, 24, 23, (158,195,0): 50, 24, 23, (158,196,0): 52, 24, 23, (158,197,0): 52, 24, 23, (158,198,0): 52, 24, 21, (158,199,0): 52, 24, 21, (158,200,0): 49, 20, 16, (158,201,0): 50, 21, 17, (158,202,0): 53, 22, 17, (158,203,0): 54, 23, 18, (158,204,0): 55, 24, 19, (158,205,0): 54, 23, 18, (158,206,0): 55, 22, 17, (158,207,0): 54, 21, 16, (158,208,0): 59, 26, 21, (158,209,0): 59, 26, 21, (158,210,0): 57, 26, 21, (158,211,0): 56, 25, 20, (158,212,0): 56, 25, 20, (158,213,0): 55, 24, 19, (158,214,0): 54, 25, 19, (158,215,0): 53, 24, 18, (158,216,0): 51, 24, 17, (158,217,0): 51, 24, 17, (158,218,0): 51, 24, 17, (158,219,0): 51, 24, 17, (158,220,0): 49, 24, 17, (158,221,0): 49, 24, 17, (158,222,0): 49, 24, 17, (158,223,0): 49, 25, 15, (158,224,0): 54, 25, 17, (158,225,0): 54, 26, 15, (158,226,0): 54, 26, 15, (158,227,0): 55, 27, 16, (158,228,0): 55, 27, 16, (158,229,0): 56, 28, 17, (158,230,0): 56, 28, 17, (158,231,0): 56, 28, 17, (158,232,0): 56, 28, 17, (158,233,0): 56, 28, 17, (158,234,0): 56, 28, 17, (158,235,0): 56, 28, 17, (158,236,0): 56, 28, 17, (158,237,0): 56, 28, 17, (158,238,0): 56, 28, 17, (158,239,0): 56, 28, 17, (158,240,0): 56, 30, 17, (158,241,0): 56, 30, 17, (158,242,0): 57, 29, 17, (158,243,0): 57, 29, 17, (158,244,0): 58, 30, 18, (158,245,0): 60, 32, 20, (158,246,0): 63, 33, 22, (158,247,0): 64, 34, 23, (158,248,0): 64, 32, 21, (158,249,0): 64, 32, 21, (158,250,0): 64, 32, 21, (158,251,0): 65, 33, 22, (158,252,0): 66, 32, 22, (158,253,0): 67, 33, 23, (158,254,0): 67, 33, 23, (158,255,0): 66, 34, 23, (158,256,0): 64, 36, 22, (158,257,0): 63, 37, 22, (158,258,0): 63, 37, 24, (158,259,0): 63, 37, 24, (158,260,0): 63, 37, 24, (158,261,0): 63, 37, 24, (158,262,0): 63, 36, 25, (158,263,0): 63, 36, 25, (158,264,0): 63, 36, 27, (158,265,0): 62, 35, 26, (158,266,0): 61, 34, 25, (158,267,0): 60, 33, 24, (158,268,0): 60, 33, 26, (158,269,0): 61, 34, 27, (158,270,0): 62, 35, 28, (158,271,0): 64, 35, 29, (158,272,0): 68, 35, 30, (158,273,0): 69, 34, 30, (158,274,0): 70, 35, 31, (158,275,0): 71, 36, 32, (158,276,0): 73, 38, 32, (158,277,0): 74, 40, 31, (158,278,0): 75, 41, 32, (158,279,0): 75, 41, 31, (158,280,0): 76, 42, 30, (158,281,0): 76, 43, 28, (158,282,0): 77, 44, 29, (158,283,0): 79, 46, 29, (158,284,0): 81, 48, 29, (158,285,0): 82, 49, 30, (158,286,0): 83, 50, 31, (158,287,0): 84, 51, 32, (158,288,0): 84, 51, 32, (158,289,0): 85, 52, 33, (158,290,0): 85, 52, 33, (158,291,0): 86, 53, 34, (158,292,0): 85, 54, 34, (158,293,0): 86, 55, 35, (158,294,0): 84, 56, 35, (158,295,0): 84, 56, 35, (158,296,0): 88, 60, 39, (158,297,0): 88, 60, 39, (158,298,0): 87, 60, 39, (158,299,0): 88, 61, 40, (158,300,0): 88, 63, 41, (158,301,0): 91, 66, 44, (158,302,0): 93, 68, 46, (158,303,0): 94, 70, 46, (158,304,0): 94, 68, 41, (158,305,0): 98, 73, 43, (158,306,0): 103, 76, 49, (158,307,0): 107, 80, 53, (158,308,0): 113, 83, 57, (158,309,0): 117, 88, 58, (158,310,0): 125, 95, 61, (158,311,0): 130, 101, 59, (158,312,0): 136, 109, 56, (158,313,0): 139, 115, 53, (158,314,0): 152, 132, 61, (158,315,0): 172, 155, 77, (158,316,0): 184, 169, 88, (158,317,0): 182, 170, 86, (158,318,0): 178, 166, 80, (158,319,0): 177, 165, 81, (158,320,0): 176, 161, 80, (158,321,0): 174, 158, 81, (158,322,0): 171, 155, 80, (158,323,0): 167, 150, 78, (158,324,0): 164, 147, 78, (158,325,0): 162, 144, 78, (158,326,0): 162, 144, 82, (158,327,0): 162, 143, 85, (158,328,0): 161, 142, 86, (158,329,0): 162, 143, 87, (158,330,0): 165, 145, 92, (158,331,0): 166, 146, 93, (158,332,0): 166, 146, 93, (158,333,0): 164, 144, 91, (158,334,0): 162, 142, 89, (158,335,0): 162, 139, 85, (158,336,0): 164, 134, 84, (158,337,0): 170, 138, 89, (158,338,0): 176, 144, 93, (158,339,0): 179, 147, 96, (158,340,0): 180, 148, 97, (158,341,0): 180, 148, 97, (158,342,0): 180, 150, 96, (158,343,0): 182, 152, 98, (158,344,0): 183, 154, 98, (158,345,0): 188, 159, 103, (158,346,0): 191, 165, 108, (158,347,0): 194, 168, 111, (158,348,0): 195, 169, 110, (158,349,0): 194, 168, 109, (158,350,0): 195, 169, 110, (158,351,0): 198, 169, 109, (158,352,0): 200, 168, 109, (158,353,0): 203, 167, 107, (158,354,0): 206, 168, 106, (158,355,0): 209, 167, 107, (158,356,0): 215, 169, 109, (158,357,0): 221, 171, 110, (158,358,0): 227, 173, 111, (158,359,0): 232, 174, 110, (158,360,0): 230, 171, 105, (158,361,0): 236, 173, 104, (158,362,0): 242, 178, 107, (158,363,0): 246, 182, 110, (158,364,0): 249, 185, 111, (158,365,0): 251, 185, 109, (158,366,0): 250, 184, 108, (158,367,0): 249, 183, 107, (158,368,0): 250, 182, 111, (158,369,0): 249, 182, 112, (158,370,0): 246, 182, 111, (158,371,0): 241, 181, 109, (158,372,0): 236, 182, 110, (158,373,0): 231, 181, 108, (158,374,0): 228, 181, 109, (158,375,0): 225, 183, 111, (158,376,0): 220, 180, 110, (158,377,0): 219, 181, 110, (158,378,0): 218, 179, 110, (158,379,0): 217, 180, 112, (158,380,0): 217, 178, 113, (158,381,0): 217, 178, 113, (158,382,0): 216, 177, 112, (158,383,0): 216, 177, 110, (158,384,0): 213, 176, 105, (158,385,0): 213, 179, 105, (158,386,0): 215, 181, 107, (158,387,0): 219, 185, 111, (158,388,0): 223, 189, 115, (158,389,0): 226, 193, 116, (158,390,0): 229, 196, 117, (158,391,0): 230, 199, 117, (158,392,0): 231, 200, 118, (158,393,0): 232, 201, 118, (158,394,0): 234, 204, 118, (158,395,0): 234, 207, 118, (158,396,0): 238, 208, 120, (158,397,0): 238, 211, 120, (158,398,0): 239, 212, 121, (158,399,0): 240, 214, 121, (158,400,0): 243, 215, 118, (158,401,0): 245, 216, 116, (158,402,0): 246, 217, 117, (158,403,0): 248, 220, 120, (158,404,0): 250, 222, 122, (158,405,0): 253, 226, 123, (158,406,0): 252, 227, 124, (158,407,0): 253, 229, 123, (158,408,0): 253, 229, 121, (158,409,0): 253, 231, 122, (158,410,0): 254, 232, 121, (158,411,0): 255, 234, 123, (158,412,0): 255, 235, 122, (158,413,0): 255, 235, 122, (158,414,0): 255, 235, 122, (158,415,0): 252, 235, 121, (158,416,0): 252, 237, 120, (158,417,0): 254, 242, 124, (158,418,0): 255, 243, 128, (158,419,0): 254, 243, 128, (158,420,0): 249, 237, 125, (158,421,0): 245, 233, 121, (158,422,0): 243, 231, 121, (158,423,0): 243, 231, 121, (158,424,0): 238, 224, 115, (158,425,0): 239, 222, 114, (158,426,0): 239, 221, 111, (158,427,0): 241, 220, 111, (158,428,0): 243, 221, 110, (158,429,0): 244, 221, 109, (158,430,0): 245, 218, 105, (158,431,0): 240, 217, 105, (158,432,0): 232, 214, 104, (158,433,0): 226, 212, 105, (158,434,0): 224, 209, 106, (158,435,0): 225, 211, 114, (158,436,0): 223, 212, 120, (158,437,0): 217, 207, 120, (158,438,0): 206, 195, 113, (158,439,0): 195, 186, 107, (158,440,0): 187, 178, 103, (158,441,0): 184, 172, 100, (158,442,0): 180, 166, 93, (158,443,0): 180, 164, 89, (158,444,0): 184, 166, 92, (158,445,0): 189, 170, 93, (158,446,0): 193, 172, 93, (158,447,0): 194, 171, 93, (158,448,0): 195, 171, 97, (158,449,0): 197, 173, 101, (158,450,0): 199, 175, 105, (158,451,0): 201, 177, 107, (158,452,0): 204, 177, 110, (158,453,0): 205, 178, 111, (158,454,0): 206, 176, 112, (158,455,0): 206, 176, 112, (158,456,0): 205, 176, 110, (158,457,0): 202, 173, 107, (158,458,0): 201, 170, 103, (158,459,0): 203, 173, 103, (158,460,0): 210, 177, 106, (158,461,0): 214, 182, 109, (158,462,0): 216, 184, 111, (158,463,0): 215, 183, 108, (158,464,0): 216, 182, 108, (158,465,0): 214, 180, 106, (158,466,0): 211, 177, 105, (158,467,0): 204, 174, 101, (158,468,0): 201, 173, 100, (158,469,0): 196, 172, 100, (158,470,0): 195, 172, 102, (158,471,0): 192, 173, 104, (158,472,0): 184, 169, 100, (158,473,0): 184, 171, 103, (158,474,0): 182, 173, 106, (158,475,0): 182, 174, 109, (158,476,0): 179, 175, 111, (158,477,0): 177, 176, 111, (158,478,0): 176, 175, 111, (158,479,0): 176, 175, 110, (158,480,0): 183, 180, 113, (158,481,0): 182, 179, 110, (158,482,0): 178, 177, 112, (158,483,0): 176, 175, 110, (158,484,0): 172, 170, 109, (158,485,0): 168, 166, 107, (158,486,0): 163, 162, 105, (158,487,0): 161, 160, 106, (158,488,0): 155, 155, 105, (158,489,0): 152, 151, 105, (158,490,0): 148, 147, 103, (158,491,0): 145, 143, 104, (158,492,0): 140, 140, 102, (158,493,0): 134, 134, 98, (158,494,0): 126, 126, 92, (158,495,0): 121, 121, 87, (158,496,0): 120, 119, 88, (158,497,0): 119, 118, 87, (158,498,0): 117, 116, 85, (158,499,0): 115, 114, 83, (158,500,0): 113, 112, 82, (158,501,0): 111, 110, 80, (158,502,0): 109, 108, 78, (158,503,0): 108, 107, 77, (158,504,0): 105, 104, 76, (158,505,0): 105, 104, 76, (158,506,0): 104, 102, 77, (158,507,0): 104, 102, 77, (158,508,0): 105, 103, 78, (158,509,0): 106, 104, 79, (158,510,0): 108, 106, 83, (158,511,0): 109, 107, 82, (158,512,0): 106, 102, 75, (158,513,0): 107, 103, 74, (158,514,0): 109, 105, 78, (158,515,0): 111, 107, 80, (158,516,0): 112, 108, 81, (158,517,0): 112, 108, 81, (158,518,0): 112, 108, 83, (158,519,0): 111, 107, 82, (158,520,0): 113, 108, 86, (158,521,0): 112, 107, 85, (158,522,0): 110, 105, 83, (158,523,0): 109, 104, 82, (158,524,0): 107, 102, 82, (158,525,0): 107, 102, 82, (158,526,0): 108, 103, 83, (158,527,0): 115, 100, 81, (158,528,0): 127, 91, 79, (158,529,0): 149, 105, 94, (158,530,0): 158, 116, 104, (158,531,0): 146, 108, 95, (158,532,0): 129, 96, 81, (158,533,0): 118, 91, 74, (158,534,0): 115, 92, 74, (158,535,0): 113, 95, 75, (158,536,0): 107, 90, 70, (158,537,0): 109, 94, 73, (158,538,0): 110, 98, 76, (158,539,0): 112, 100, 78, (158,540,0): 112, 100, 78, (158,541,0): 110, 98, 76, (158,542,0): 109, 94, 73, (158,543,0): 106, 91, 72, (158,544,0): 105, 87, 75, (158,545,0): 102, 84, 74, (158,546,0): 97, 80, 70, (158,547,0): 93, 76, 66, (158,548,0): 90, 73, 63, (158,549,0): 87, 70, 60, (158,550,0): 84, 70, 61, (158,551,0): 84, 70, 61, (158,552,0): 84, 69, 62, (158,553,0): 82, 69, 61, (158,554,0): 81, 68, 62, (158,555,0): 79, 66, 60, (158,556,0): 75, 64, 58, (158,557,0): 74, 63, 57, (158,558,0): 72, 61, 55, (158,559,0): 72, 61, 55, (158,560,0): 75, 66, 57, (158,561,0): 76, 68, 57, (158,562,0): 77, 69, 58, (158,563,0): 78, 70, 59, (158,564,0): 80, 74, 62, (158,565,0): 84, 78, 66, (158,566,0): 85, 81, 69, (158,567,0): 87, 83, 71, (158,568,0): 90, 86, 74, (158,569,0): 91, 87, 75, (158,570,0): 91, 89, 76, (158,571,0): 91, 89, 76, (158,572,0): 89, 90, 76, (158,573,0): 88, 89, 75, (158,574,0): 87, 88, 74, (158,575,0): 85, 87, 73, (158,576,0): 84, 91, 75, (158,577,0): 85, 89, 75, (158,578,0): 86, 83, 74, (158,579,0): 87, 79, 76, (158,580,0): 86, 76, 75, (158,581,0): 84, 74, 73, (158,582,0): 83, 75, 72, (158,583,0): 83, 76, 70, (158,584,0): 88, 79, 70, (158,585,0): 89, 79, 69, (158,586,0): 94, 77, 67, (158,587,0): 95, 76, 69, (158,588,0): 94, 77, 70, (158,589,0): 91, 77, 74, (158,590,0): 88, 78, 76, (158,591,0): 87, 79, 77, (158,592,0): 96, 82, 81, (158,593,0): 96, 80, 80, (158,594,0): 94, 78, 78, (158,595,0): 91, 75, 75, (158,596,0): 88, 72, 72, (158,597,0): 86, 70, 70, (158,598,0): 84, 68, 68, (158,599,0): 83, 67, 67, (159,0,0): 36, 25, 39, (159,1,0): 34, 26, 39, (159,2,0): 36, 25, 39, (159,3,0): 34, 26, 39, (159,4,0): 36, 25, 39, (159,5,0): 34, 26, 39, (159,6,0): 36, 25, 39, (159,7,0): 34, 26, 39, (159,8,0): 34, 23, 37, (159,9,0): 33, 25, 38, (159,10,0): 36, 25, 39, (159,11,0): 36, 28, 41, (159,12,0): 38, 27, 41, (159,13,0): 36, 28, 41, (159,14,0): 37, 26, 40, (159,15,0): 37, 26, 40, (159,16,0): 43, 29, 44, (159,17,0): 45, 28, 44, (159,18,0): 45, 28, 44, (159,19,0): 45, 28, 44, (159,20,0): 45, 28, 44, (159,21,0): 43, 29, 44, (159,22,0): 43, 29, 44, (159,23,0): 43, 29, 44, (159,24,0): 42, 28, 43, (159,25,0): 44, 27, 43, (159,26,0): 44, 27, 43, (159,27,0): 45, 28, 44, (159,28,0): 45, 28, 44, (159,29,0): 47, 29, 43, (159,30,0): 47, 29, 45, (159,31,0): 47, 29, 43, (159,32,0): 47, 31, 42, (159,33,0): 47, 31, 42, (159,34,0): 47, 31, 42, (159,35,0): 48, 32, 43, (159,36,0): 49, 31, 43, (159,37,0): 50, 33, 43, (159,38,0): 52, 32, 44, (159,39,0): 52, 32, 43, (159,40,0): 54, 32, 44, (159,41,0): 55, 31, 44, (159,42,0): 56, 32, 45, (159,43,0): 59, 33, 46, (159,44,0): 60, 34, 47, (159,45,0): 61, 35, 48, (159,46,0): 63, 35, 49, (159,47,0): 65, 35, 47, (159,48,0): 72, 36, 50, (159,49,0): 74, 36, 51, (159,50,0): 76, 38, 51, (159,51,0): 77, 39, 52, (159,52,0): 78, 40, 53, (159,53,0): 79, 38, 52, (159,54,0): 79, 39, 50, (159,55,0): 78, 38, 49, (159,56,0): 80, 40, 51, (159,57,0): 80, 40, 49, (159,58,0): 79, 39, 50, (159,59,0): 75, 38, 46, (159,60,0): 74, 37, 45, (159,61,0): 73, 36, 44, (159,62,0): 72, 35, 43, (159,63,0): 70, 35, 42, (159,64,0): 71, 36, 43, (159,65,0): 69, 36, 43, (159,66,0): 69, 36, 43, (159,67,0): 71, 36, 43, (159,68,0): 71, 36, 43, (159,69,0): 71, 36, 43, (159,70,0): 72, 35, 42, (159,71,0): 72, 35, 42, (159,72,0): 76, 37, 42, (159,73,0): 77, 38, 43, (159,74,0): 78, 37, 43, (159,75,0): 78, 37, 41, (159,76,0): 77, 36, 42, (159,77,0): 76, 35, 39, (159,78,0): 74, 33, 39, (159,79,0): 72, 33, 38, (159,80,0): 68, 32, 36, (159,81,0): 68, 33, 39, (159,82,0): 68, 33, 39, (159,83,0): 69, 34, 40, (159,84,0): 71, 34, 41, (159,85,0): 72, 35, 42, (159,86,0): 74, 34, 42, (159,87,0): 75, 35, 43, (159,88,0): 76, 35, 43, (159,89,0): 76, 35, 43, (159,90,0): 77, 34, 43, (159,91,0): 76, 33, 42, (159,92,0): 78, 32, 42, (159,93,0): 77, 31, 41, (159,94,0): 77, 31, 41, (159,95,0): 74, 31, 40, (159,96,0): 76, 33, 42, (159,97,0): 75, 33, 43, (159,98,0): 75, 33, 43, (159,99,0): 72, 32, 41, (159,100,0): 67, 29, 40, (159,101,0): 63, 27, 37, (159,102,0): 57, 26, 34, (159,103,0): 55, 25, 33, (159,104,0): 50, 24, 33, (159,105,0): 46, 23, 31, (159,106,0): 42, 22, 31, (159,107,0): 38, 21, 29, (159,108,0): 35, 20, 27, (159,109,0): 32, 19, 28, (159,110,0): 32, 19, 28, (159,111,0): 33, 20, 30, (159,112,0): 35, 19, 30, (159,113,0): 36, 20, 31, (159,114,0): 36, 20, 31, (159,115,0): 36, 20, 31, (159,116,0): 35, 19, 30, (159,117,0): 34, 18, 29, (159,118,0): 32, 16, 27, (159,119,0): 31, 15, 26, (159,120,0): 32, 16, 27, (159,121,0): 32, 16, 27, (159,122,0): 32, 16, 27, (159,123,0): 32, 16, 27, (159,124,0): 32, 16, 27, (159,125,0): 32, 16, 27, (159,126,0): 32, 16, 27, (159,127,0): 32, 16, 27, (159,128,0): 35, 19, 30, (159,129,0): 35, 19, 29, (159,130,0): 35, 19, 29, (159,131,0): 36, 20, 30, (159,132,0): 36, 20, 30, (159,133,0): 37, 22, 29, (159,134,0): 38, 21, 29, (159,135,0): 38, 21, 27, (159,136,0): 39, 20, 26, (159,137,0): 39, 20, 26, (159,138,0): 40, 21, 27, (159,139,0): 40, 21, 25, (159,140,0): 41, 22, 26, (159,141,0): 41, 22, 24, (159,142,0): 43, 22, 27, (159,143,0): 43, 23, 25, (159,144,0): 46, 26, 28, (159,145,0): 46, 26, 28, (159,146,0): 47, 27, 29, (159,147,0): 47, 27, 29, (159,148,0): 48, 28, 30, (159,149,0): 48, 28, 30, (159,150,0): 49, 29, 31, (159,151,0): 49, 29, 31, (159,152,0): 49, 29, 31, (159,153,0): 48, 28, 30, (159,154,0): 47, 27, 29, (159,155,0): 46, 26, 28, (159,156,0): 46, 26, 28, (159,157,0): 47, 27, 29, (159,158,0): 48, 28, 30, (159,159,0): 49, 29, 30, (159,160,0): 48, 26, 28, (159,161,0): 48, 27, 26, (159,162,0): 48, 26, 28, (159,163,0): 48, 27, 26, (159,164,0): 48, 26, 28, (159,165,0): 48, 27, 26, (159,166,0): 48, 26, 28, (159,167,0): 48, 27, 26, (159,168,0): 46, 24, 26, (159,169,0): 46, 25, 24, (159,170,0): 46, 24, 26, (159,171,0): 46, 25, 24, (159,172,0): 46, 24, 26, (159,173,0): 46, 25, 24, (159,174,0): 46, 24, 26, (159,175,0): 46, 24, 26, (159,176,0): 43, 23, 25, (159,177,0): 43, 23, 25, (159,178,0): 43, 23, 24, (159,179,0): 43, 23, 24, (159,180,0): 43, 23, 24, (159,181,0): 43, 23, 24, (159,182,0): 44, 22, 24, (159,183,0): 44, 23, 22, (159,184,0): 45, 21, 21, (159,185,0): 46, 22, 22, (159,186,0): 47, 23, 23, (159,187,0): 49, 25, 25, (159,188,0): 49, 25, 23, (159,189,0): 49, 25, 23, (159,190,0): 49, 23, 22, (159,191,0): 48, 24, 22, (159,192,0): 49, 25, 23, (159,193,0): 49, 25, 23, (159,194,0): 49, 25, 23, (159,195,0): 49, 25, 23, (159,196,0): 50, 24, 23, (159,197,0): 50, 24, 23, (159,198,0): 50, 25, 21, (159,199,0): 50, 25, 21, (159,200,0): 47, 19, 16, (159,201,0): 49, 21, 17, (159,202,0): 52, 23, 19, (159,203,0): 53, 24, 20, (159,204,0): 54, 25, 21, (159,205,0): 53, 24, 20, (159,206,0): 53, 22, 19, (159,207,0): 52, 21, 18, (159,208,0): 57, 26, 23, (159,209,0): 57, 26, 21, (159,210,0): 55, 26, 20, (159,211,0): 55, 26, 20, (159,212,0): 54, 25, 19, (159,213,0): 54, 25, 19, (159,214,0): 53, 24, 18, (159,215,0): 52, 25, 18, (159,216,0): 51, 24, 17, (159,217,0): 51, 24, 17, (159,218,0): 51, 24, 17, (159,219,0): 51, 24, 17, (159,220,0): 49, 24, 17, (159,221,0): 49, 25, 15, (159,222,0): 49, 24, 17, (159,223,0): 49, 25, 15, (159,224,0): 53, 26, 17, (159,225,0): 54, 27, 16, (159,226,0): 55, 26, 18, (159,227,0): 56, 28, 17, (159,228,0): 56, 28, 17, (159,229,0): 57, 29, 18, (159,230,0): 57, 29, 18, (159,231,0): 57, 29, 18, (159,232,0): 56, 28, 17, (159,233,0): 56, 28, 17, (159,234,0): 56, 28, 17, (159,235,0): 56, 28, 17, (159,236,0): 56, 28, 17, (159,237,0): 56, 28, 17, (159,238,0): 56, 28, 17, (159,239,0): 56, 28, 16, (159,240,0): 57, 29, 17, (159,241,0): 56, 30, 17, (159,242,0): 57, 29, 17, (159,243,0): 57, 29, 17, (159,244,0): 58, 30, 18, (159,245,0): 60, 32, 20, (159,246,0): 63, 33, 22, (159,247,0): 64, 34, 23, (159,248,0): 62, 32, 21, (159,249,0): 62, 32, 21, (159,250,0): 64, 32, 21, (159,251,0): 65, 33, 22, (159,252,0): 65, 33, 22, (159,253,0): 66, 34, 23, (159,254,0): 66, 34, 23, (159,255,0): 64, 34, 23, (159,256,0): 64, 36, 24, (159,257,0): 63, 37, 24, (159,258,0): 63, 37, 24, (159,259,0): 63, 37, 24, (159,260,0): 63, 37, 24, (159,261,0): 63, 36, 25, (159,262,0): 63, 36, 25, (159,263,0): 63, 36, 25, (159,264,0): 62, 35, 26, (159,265,0): 62, 35, 26, (159,266,0): 61, 34, 25, (159,267,0): 60, 33, 26, (159,268,0): 60, 33, 26, (159,269,0): 61, 34, 27, (159,270,0): 62, 35, 28, (159,271,0): 63, 34, 28, (159,272,0): 67, 34, 29, (159,273,0): 69, 34, 30, (159,274,0): 70, 35, 31, (159,275,0): 71, 36, 32, (159,276,0): 73, 38, 32, (159,277,0): 74, 40, 31, (159,278,0): 75, 41, 32, (159,279,0): 76, 42, 32, (159,280,0): 75, 41, 29, (159,281,0): 76, 43, 28, (159,282,0): 77, 44, 29, (159,283,0): 79, 46, 29, (159,284,0): 80, 47, 28, (159,285,0): 82, 49, 30, (159,286,0): 83, 50, 31, (159,287,0): 84, 51, 32, (159,288,0): 83, 52, 32, (159,289,0): 83, 52, 32, (159,290,0): 84, 53, 33, (159,291,0): 84, 53, 33, (159,292,0): 85, 54, 34, (159,293,0): 83, 55, 34, (159,294,0): 84, 56, 35, (159,295,0): 84, 56, 35, (159,296,0): 89, 61, 40, (159,297,0): 88, 60, 39, (159,298,0): 88, 61, 40, (159,299,0): 88, 61, 40, (159,300,0): 89, 64, 42, (159,301,0): 91, 66, 44, (159,302,0): 93, 68, 46, (159,303,0): 95, 71, 47, (159,304,0): 92, 66, 41, (159,305,0): 97, 71, 44, (159,306,0): 103, 75, 51, (159,307,0): 107, 80, 53, (159,308,0): 111, 84, 57, (159,309,0): 118, 89, 59, (159,310,0): 124, 95, 61, (159,311,0): 129, 101, 61, (159,312,0): 135, 109, 60, (159,313,0): 137, 112, 55, (159,314,0): 149, 128, 61, (159,315,0): 170, 152, 78, (159,316,0): 184, 167, 89, (159,317,0): 184, 169, 86, (159,318,0): 180, 166, 78, (159,319,0): 180, 165, 80, (159,320,0): 177, 162, 81, (159,321,0): 175, 159, 82, (159,322,0): 171, 155, 80, (159,323,0): 167, 150, 78, (159,324,0): 164, 147, 78, (159,325,0): 162, 144, 80, (159,326,0): 162, 143, 84, (159,327,0): 162, 143, 85, (159,328,0): 161, 142, 86, (159,329,0): 163, 143, 90, (159,330,0): 166, 146, 93, (159,331,0): 168, 148, 95, (159,332,0): 168, 147, 94, (159,333,0): 166, 145, 92, (159,334,0): 163, 142, 89, (159,335,0): 162, 139, 85, (159,336,0): 163, 136, 83, (159,337,0): 169, 139, 87, (159,338,0): 175, 145, 91, (159,339,0): 179, 148, 94, (159,340,0): 180, 148, 97, (159,341,0): 180, 148, 97, (159,342,0): 181, 150, 96, (159,343,0): 182, 152, 98, (159,344,0): 181, 151, 97, (159,345,0): 186, 157, 101, (159,346,0): 192, 163, 107, (159,347,0): 195, 166, 110, (159,348,0): 195, 166, 108, (159,349,0): 195, 166, 108, (159,350,0): 196, 167, 109, (159,351,0): 198, 168, 108, (159,352,0): 205, 171, 108, (159,353,0): 205, 170, 106, (159,354,0): 208, 168, 106, (159,355,0): 210, 169, 105, (159,356,0): 215, 170, 105, (159,357,0): 223, 172, 109, (159,358,0): 229, 174, 110, (159,359,0): 234, 174, 111, (159,360,0): 232, 171, 104, (159,361,0): 237, 174, 105, (159,362,0): 245, 178, 108, (159,363,0): 250, 183, 112, (159,364,0): 252, 186, 112, (159,365,0): 252, 186, 110, (159,366,0): 251, 185, 109, (159,367,0): 247, 184, 107, (159,368,0): 248, 184, 110, (159,369,0): 247, 185, 112, (159,370,0): 245, 185, 112, (159,371,0): 241, 185, 111, (159,372,0): 236, 182, 110, (159,373,0): 232, 182, 109, (159,374,0): 229, 182, 112, (159,375,0): 226, 184, 112, (159,376,0): 219, 179, 109, (159,377,0): 218, 179, 110, (159,378,0): 218, 179, 110, (159,379,0): 217, 180, 112, (159,380,0): 218, 179, 112, (159,381,0): 218, 179, 112, (159,382,0): 218, 179, 112, (159,383,0): 217, 180, 110, (159,384,0): 212, 178, 106, (159,385,0): 212, 180, 105, (159,386,0): 215, 183, 108, (159,387,0): 218, 186, 111, (159,388,0): 222, 190, 113, (159,389,0): 226, 195, 115, (159,390,0): 229, 198, 118, (159,391,0): 228, 200, 117, (159,392,0): 230, 199, 116, (159,393,0): 230, 203, 116, (159,394,0): 232, 205, 116, (159,395,0): 234, 207, 116, (159,396,0): 237, 210, 119, (159,397,0): 238, 212, 119, (159,398,0): 238, 213, 120, (159,399,0): 240, 214, 119, (159,400,0): 242, 214, 115, (159,401,0): 244, 215, 115, (159,402,0): 246, 217, 117, (159,403,0): 248, 219, 119, (159,404,0): 251, 222, 122, (159,405,0): 253, 226, 123, (159,406,0): 255, 228, 125, (159,407,0): 254, 230, 124, (159,408,0): 253, 229, 123, (159,409,0): 254, 230, 122, (159,410,0): 255, 232, 124, (159,411,0): 255, 234, 123, (159,412,0): 255, 234, 123, (159,413,0): 255, 235, 123, (159,414,0): 254, 234, 122, (159,415,0): 252, 234, 122, (159,416,0): 253, 237, 124, (159,417,0): 254, 241, 127, (159,418,0): 255, 244, 130, (159,419,0): 255, 243, 131, (159,420,0): 251, 238, 126, (159,421,0): 246, 234, 124, (159,422,0): 245, 231, 122, (159,423,0): 246, 232, 123, (159,424,0): 242, 228, 119, (159,425,0): 240, 223, 115, (159,426,0): 238, 222, 111, (159,427,0): 239, 221, 111, (159,428,0): 242, 221, 112, (159,429,0): 242, 220, 109, (159,430,0): 239, 215, 105, (159,431,0): 234, 212, 103, (159,432,0): 231, 214, 110, (159,433,0): 224, 211, 109, (159,434,0): 222, 208, 109, (159,435,0): 222, 209, 113, (159,436,0): 220, 211, 120, (159,437,0): 214, 207, 119, (159,438,0): 203, 195, 112, (159,439,0): 193, 185, 104, (159,440,0): 189, 180, 103, (159,441,0): 184, 175, 98, (159,442,0): 180, 168, 92, (159,443,0): 181, 165, 88, (159,444,0): 184, 166, 90, (159,445,0): 189, 170, 93, (159,446,0): 194, 171, 93, (159,447,0): 194, 171, 93, (159,448,0): 197, 171, 96, (159,449,0): 199, 173, 99, (159,450,0): 199, 175, 101, (159,451,0): 201, 177, 105, (159,452,0): 205, 178, 107, (159,453,0): 206, 179, 110, (159,454,0): 206, 179, 110, (159,455,0): 206, 179, 110, (159,456,0): 206, 179, 110, (159,457,0): 202, 175, 104, (159,458,0): 200, 171, 101, (159,459,0): 201, 173, 100, (159,460,0): 208, 178, 106, (159,461,0): 214, 184, 111, (159,462,0): 219, 187, 114, (159,463,0): 219, 187, 112, (159,464,0): 216, 184, 109, (159,465,0): 212, 183, 107, (159,466,0): 208, 179, 103, (159,467,0): 203, 175, 101, (159,468,0): 199, 173, 99, (159,469,0): 195, 173, 100, (159,470,0): 193, 173, 102, (159,471,0): 191, 174, 104, (159,472,0): 183, 170, 100, (159,473,0): 182, 171, 105, (159,474,0): 181, 173, 108, (159,475,0): 179, 174, 110, (159,476,0): 177, 176, 111, (159,477,0): 175, 175, 111, (159,478,0): 174, 174, 110, (159,479,0): 173, 173, 109, (159,480,0): 180, 179, 114, (159,481,0): 180, 179, 112, (159,482,0): 177, 178, 112, (159,483,0): 175, 175, 111, (159,484,0): 172, 172, 110, (159,485,0): 168, 168, 108, (159,486,0): 164, 163, 107, (159,487,0): 161, 161, 107, (159,488,0): 155, 155, 105, (159,489,0): 150, 152, 105, (159,490,0): 147, 148, 104, (159,491,0): 144, 145, 103, (159,492,0): 140, 140, 102, (159,493,0): 133, 135, 98, (159,494,0): 125, 127, 90, (159,495,0): 120, 121, 87, (159,496,0): 119, 120, 88, (159,497,0): 118, 119, 87, (159,498,0): 116, 117, 85, (159,499,0): 114, 115, 83, (159,500,0): 112, 113, 82, (159,501,0): 110, 111, 80, (159,502,0): 109, 108, 78, (159,503,0): 108, 107, 77, (159,504,0): 104, 103, 75, (159,505,0): 104, 103, 75, (159,506,0): 103, 101, 76, (159,507,0): 103, 101, 76, (159,508,0): 104, 102, 77, (159,509,0): 106, 104, 79, (159,510,0): 107, 105, 82, (159,511,0): 109, 107, 84, (159,512,0): 104, 103, 75, (159,513,0): 105, 104, 76, (159,514,0): 107, 106, 78, (159,515,0): 109, 108, 80, (159,516,0): 110, 109, 81, (159,517,0): 110, 108, 83, (159,518,0): 112, 108, 83, (159,519,0): 111, 107, 82, (159,520,0): 114, 109, 87, (159,521,0): 113, 108, 86, (159,522,0): 111, 106, 84, (159,523,0): 109, 104, 82, (159,524,0): 108, 103, 83, (159,525,0): 109, 102, 83, (159,526,0): 109, 102, 83, (159,527,0): 115, 99, 83, (159,528,0): 123, 91, 78, (159,529,0): 148, 110, 97, (159,530,0): 159, 123, 109, (159,531,0): 147, 114, 99, (159,532,0): 126, 97, 81, (159,533,0): 117, 91, 74, (159,534,0): 115, 94, 75, (159,535,0): 115, 97, 77, (159,536,0): 106, 89, 69, (159,537,0): 109, 94, 73, (159,538,0): 111, 99, 77, (159,539,0): 114, 102, 80, (159,540,0): 114, 102, 80, (159,541,0): 111, 99, 77, (159,542,0): 109, 94, 73, (159,543,0): 105, 90, 71, (159,544,0): 103, 87, 72, (159,545,0): 101, 85, 72, (159,546,0): 97, 81, 68, (159,547,0): 91, 77, 64, (159,548,0): 89, 73, 60, (159,549,0): 86, 72, 59, (159,550,0): 85, 71, 60, (159,551,0): 85, 71, 60, (159,552,0): 84, 71, 62, (159,553,0): 83, 70, 61, (159,554,0): 82, 69, 61, (159,555,0): 80, 67, 59, (159,556,0): 76, 66, 57, (159,557,0): 74, 64, 55, (159,558,0): 73, 63, 54, (159,559,0): 72, 62, 53, (159,560,0): 76, 68, 57, (159,561,0): 75, 69, 57, (159,562,0): 76, 70, 58, (159,563,0): 78, 72, 60, (159,564,0): 81, 75, 63, (159,565,0): 83, 79, 67, (159,566,0): 85, 83, 70, (159,567,0): 87, 85, 72, (159,568,0): 90, 88, 75, (159,569,0): 88, 88, 76, (159,570,0): 89, 89, 77, (159,571,0): 89, 91, 78, (159,572,0): 88, 90, 77, (159,573,0): 86, 90, 76, (159,574,0): 86, 88, 75, (159,575,0): 84, 88, 74, (159,576,0): 85, 91, 77, (159,577,0): 86, 90, 76, (159,578,0): 85, 85, 75, (159,579,0): 85, 80, 74, (159,580,0): 85, 77, 74, (159,581,0): 83, 75, 73, (159,582,0): 81, 76, 72, (159,583,0): 81, 76, 70, (159,584,0): 88, 79, 72, (159,585,0): 89, 79, 70, (159,586,0): 92, 78, 69, (159,587,0): 93, 76, 69, (159,588,0): 93, 75, 71, (159,589,0): 90, 76, 73, (159,590,0): 87, 77, 75, (159,591,0): 87, 77, 76, (159,592,0): 96, 82, 81, (159,593,0): 96, 81, 78, (159,594,0): 94, 78, 78, (159,595,0): 91, 76, 73, (159,596,0): 88, 72, 72, (159,597,0): 86, 71, 68, (159,598,0): 84, 68, 68, (159,599,0): 83, 68, 65, (160,0,0): 39, 27, 41, (160,1,0): 37, 26, 40, (160,2,0): 37, 25, 39, (160,3,0): 35, 24, 38, (160,4,0): 36, 24, 38, (160,5,0): 36, 25, 39, (160,6,0): 38, 26, 40, (160,7,0): 38, 27, 41, (160,8,0): 39, 27, 41, (160,9,0): 38, 27, 41, (160,10,0): 40, 28, 42, (160,11,0): 39, 28, 42, (160,12,0): 41, 29, 43, (160,13,0): 40, 29, 43, (160,14,0): 42, 30, 44, (160,15,0): 42, 30, 44, (160,16,0): 39, 25, 42, (160,17,0): 42, 25, 43, (160,18,0): 40, 26, 43, (160,19,0): 41, 27, 44, (160,20,0): 42, 28, 45, (160,21,0): 42, 29, 46, (160,22,0): 42, 30, 44, (160,23,0): 43, 31, 45, (160,24,0): 38, 26, 38, (160,25,0): 39, 25, 38, (160,26,0): 42, 26, 39, (160,27,0): 43, 27, 40, (160,28,0): 45, 27, 41, (160,29,0): 48, 28, 40, (160,30,0): 50, 27, 43, (160,31,0): 49, 29, 41, (160,32,0): 46, 33, 43, (160,33,0): 44, 34, 42, (160,34,0): 46, 35, 43, (160,35,0): 46, 35, 43, (160,36,0): 48, 35, 44, (160,37,0): 51, 36, 43, (160,38,0): 52, 35, 45, (160,39,0): 55, 35, 44, (160,40,0): 54, 33, 42, (160,41,0): 56, 33, 43, (160,42,0): 60, 33, 42, (160,43,0): 64, 34, 44, (160,44,0): 66, 36, 46, (160,45,0): 68, 36, 47, (160,46,0): 70, 37, 46, (160,47,0): 73, 37, 47, (160,48,0): 77, 39, 50, (160,49,0): 80, 38, 48, (160,50,0): 81, 39, 49, (160,51,0): 82, 39, 49, (160,52,0): 83, 40, 50, (160,53,0): 85, 39, 50, (160,54,0): 86, 38, 50, (160,55,0): 87, 39, 51, (160,56,0): 86, 38, 50, (160,57,0): 85, 38, 48, (160,58,0): 83, 37, 48, (160,59,0): 80, 37, 46, (160,60,0): 79, 36, 45, (160,61,0): 76, 35, 43, (160,62,0): 75, 34, 42, (160,63,0): 72, 35, 42, (160,64,0): 66, 34, 39, (160,65,0): 65, 34, 39, (160,66,0): 66, 35, 40, (160,67,0): 67, 35, 40, (160,68,0): 68, 36, 41, (160,69,0): 69, 37, 42, (160,70,0): 72, 37, 43, (160,71,0): 72, 37, 43, (160,72,0): 78, 41, 48, (160,73,0): 77, 40, 47, (160,74,0): 78, 38, 46, (160,75,0): 76, 37, 42, (160,76,0): 76, 35, 43, (160,77,0): 74, 33, 39, (160,78,0): 74, 31, 40, (160,79,0): 72, 31, 39, (160,80,0): 71, 31, 40, (160,81,0): 69, 32, 40, (160,82,0): 70, 33, 41, (160,83,0): 70, 33, 41, (160,84,0): 71, 34, 42, (160,85,0): 71, 34, 42, (160,86,0): 72, 35, 43, (160,87,0): 72, 35, 43, (160,88,0): 74, 34, 43, (160,89,0): 74, 34, 43, (160,90,0): 73, 33, 42, (160,91,0): 73, 33, 42, (160,92,0): 72, 32, 41, (160,93,0): 72, 32, 41, (160,94,0): 71, 31, 40, (160,95,0): 71, 31, 40, (160,96,0): 74, 34, 42, (160,97,0): 74, 34, 42, (160,98,0): 73, 33, 41, (160,99,0): 70, 33, 40, (160,100,0): 64, 31, 38, (160,101,0): 60, 29, 35, (160,102,0): 56, 26, 34, (160,103,0): 53, 26, 33, (160,104,0): 45, 22, 30, (160,105,0): 43, 22, 31, (160,106,0): 38, 21, 31, (160,107,0): 34, 18, 28, (160,108,0): 30, 17, 26, (160,109,0): 28, 16, 26, (160,110,0): 27, 17, 26, (160,111,0): 28, 16, 26, (160,112,0): 34, 21, 31, (160,113,0): 35, 19, 30, (160,114,0): 35, 19, 30, (160,115,0): 34, 18, 29, (160,116,0): 34, 18, 29, (160,117,0): 33, 17, 28, (160,118,0): 33, 17, 28, (160,119,0): 33, 17, 28, (160,120,0): 32, 16, 27, (160,121,0): 32, 16, 27, (160,122,0): 32, 16, 27, (160,123,0): 32, 16, 27, (160,124,0): 31, 15, 26, (160,125,0): 31, 15, 26, (160,126,0): 31, 15, 26, (160,127,0): 31, 15, 26, (160,128,0): 33, 17, 28, (160,129,0): 34, 16, 28, (160,130,0): 35, 17, 29, (160,131,0): 35, 17, 29, (160,132,0): 36, 18, 30, (160,133,0): 36, 19, 29, (160,134,0): 37, 20, 30, (160,135,0): 37, 20, 28, (160,136,0): 37, 20, 28, (160,137,0): 37, 20, 28, (160,138,0): 38, 21, 29, (160,139,0): 39, 22, 28, (160,140,0): 40, 23, 29, (160,141,0): 41, 25, 28, (160,142,0): 44, 25, 31, (160,143,0): 45, 26, 30, (160,144,0): 45, 25, 27, (160,145,0): 46, 24, 26, (160,146,0): 47, 25, 27, (160,147,0): 48, 26, 28, (160,148,0): 49, 27, 29, (160,149,0): 50, 28, 30, (160,150,0): 51, 29, 31, (160,151,0): 51, 29, 31, (160,152,0): 49, 27, 29, (160,153,0): 49, 27, 29, (160,154,0): 49, 27, 29, (160,155,0): 49, 27, 29, (160,156,0): 49, 27, 29, (160,157,0): 49, 27, 29, (160,158,0): 49, 27, 29, (160,159,0): 49, 27, 29, (160,160,0): 49, 28, 27, (160,161,0): 49, 28, 25, (160,162,0): 49, 28, 27, (160,163,0): 49, 28, 25, (160,164,0): 49, 28, 27, (160,165,0): 49, 28, 25, (160,166,0): 49, 28, 27, (160,167,0): 49, 28, 25, (160,168,0): 47, 26, 25, (160,169,0): 47, 26, 23, (160,170,0): 46, 25, 24, (160,171,0): 46, 25, 22, (160,172,0): 45, 24, 23, (160,173,0): 45, 24, 21, (160,174,0): 44, 23, 22, (160,175,0): 44, 23, 22, (160,176,0): 46, 25, 24, (160,177,0): 46, 25, 24, (160,178,0): 47, 26, 25, (160,179,0): 47, 26, 25, (160,180,0): 47, 26, 25, (160,181,0): 47, 26, 25, (160,182,0): 48, 27, 26, (160,183,0): 48, 27, 24, (160,184,0): 47, 26, 23, (160,185,0): 47, 26, 23, (160,186,0): 47, 26, 23, (160,187,0): 47, 26, 23, (160,188,0): 47, 26, 23, (160,189,0): 47, 26, 23, (160,190,0): 49, 25, 23, (160,191,0): 47, 26, 23, (160,192,0): 47, 28, 24, (160,193,0): 46, 27, 23, (160,194,0): 46, 27, 23, (160,195,0): 45, 26, 22, (160,196,0): 45, 24, 21, (160,197,0): 44, 23, 20, (160,198,0): 46, 22, 20, (160,199,0): 45, 21, 19, (160,200,0): 47, 23, 21, (160,201,0): 47, 23, 19, (160,202,0): 49, 24, 20, (160,203,0): 49, 24, 20, (160,204,0): 52, 24, 21, (160,205,0): 53, 25, 22, (160,206,0): 54, 26, 23, (160,207,0): 54, 26, 23, (160,208,0): 51, 23, 20, (160,209,0): 52, 24, 20, (160,210,0): 53, 25, 21, (160,211,0): 54, 26, 22, (160,212,0): 55, 27, 23, (160,213,0): 55, 27, 23, (160,214,0): 54, 27, 20, (160,215,0): 51, 26, 19, (160,216,0): 51, 27, 17, (160,217,0): 50, 26, 16, (160,218,0): 50, 26, 16, (160,219,0): 49, 25, 15, (160,220,0): 48, 24, 14, (160,221,0): 47, 23, 11, (160,222,0): 47, 23, 13, (160,223,0): 46, 22, 12, (160,224,0): 50, 26, 16, (160,225,0): 50, 26, 16, (160,226,0): 53, 26, 19, (160,227,0): 53, 26, 17, (160,228,0): 54, 27, 18, (160,229,0): 54, 27, 18, (160,230,0): 55, 28, 19, (160,231,0): 55, 28, 19, (160,232,0): 56, 28, 17, (160,233,0): 56, 28, 17, (160,234,0): 56, 26, 15, (160,235,0): 56, 26, 15, (160,236,0): 55, 25, 14, (160,237,0): 55, 25, 14, (160,238,0): 54, 24, 13, (160,239,0): 54, 25, 11, (160,240,0): 56, 28, 14, (160,241,0): 56, 28, 14, (160,242,0): 57, 29, 15, (160,243,0): 57, 29, 15, (160,244,0): 58, 30, 16, (160,245,0): 58, 30, 16, (160,246,0): 59, 31, 17, (160,247,0): 59, 31, 17, (160,248,0): 61, 33, 19, (160,249,0): 61, 33, 19, (160,250,0): 63, 34, 20, (160,251,0): 64, 35, 21, (160,252,0): 65, 36, 22, (160,253,0): 66, 37, 23, (160,254,0): 67, 38, 24, (160,255,0): 66, 38, 26, (160,256,0): 65, 37, 25, (160,257,0): 65, 37, 26, (160,258,0): 64, 36, 25, (160,259,0): 64, 36, 25, (160,260,0): 63, 35, 24, (160,261,0): 63, 34, 26, (160,262,0): 62, 33, 25, (160,263,0): 62, 33, 25, (160,264,0): 61, 32, 26, (160,265,0): 61, 32, 26, (160,266,0): 61, 32, 26, (160,267,0): 62, 33, 29, (160,268,0): 62, 33, 29, (160,269,0): 63, 34, 30, (160,270,0): 63, 34, 30, (160,271,0): 63, 34, 30, (160,272,0): 68, 35, 30, (160,273,0): 69, 36, 31, (160,274,0): 69, 36, 31, (160,275,0): 70, 37, 32, (160,276,0): 72, 39, 32, (160,277,0): 73, 40, 31, (160,278,0): 73, 40, 31, (160,279,0): 74, 42, 31, (160,280,0): 76, 44, 31, (160,281,0): 76, 44, 29, (160,282,0): 77, 45, 30, (160,283,0): 78, 47, 29, (160,284,0): 79, 48, 28, (160,285,0): 80, 49, 29, (160,286,0): 81, 50, 30, (160,287,0): 81, 50, 30, (160,288,0): 81, 53, 32, (160,289,0): 82, 54, 33, (160,290,0): 82, 54, 33, (160,291,0): 83, 55, 34, (160,292,0): 85, 57, 36, (160,293,0): 85, 58, 37, (160,294,0): 85, 58, 37, (160,295,0): 86, 59, 38, (160,296,0): 89, 62, 41, (160,297,0): 89, 62, 41, (160,298,0): 90, 63, 42, (160,299,0): 90, 63, 42, (160,300,0): 91, 64, 43, (160,301,0): 91, 64, 43, (160,302,0): 92, 65, 44, (160,303,0): 92, 65, 44, (160,304,0): 95, 69, 46, (160,305,0): 97, 71, 48, (160,306,0): 100, 74, 49, (160,307,0): 104, 78, 51, (160,308,0): 109, 84, 53, (160,309,0): 114, 88, 55, (160,310,0): 118, 92, 57, (160,311,0): 122, 94, 55, (160,312,0): 124, 97, 54, (160,313,0): 137, 111, 62, (160,314,0): 152, 127, 71, (160,315,0): 165, 141, 77, (160,316,0): 180, 158, 85, (160,317,0): 190, 169, 88, (160,318,0): 189, 169, 82, (160,319,0): 179, 162, 74, (160,320,0): 179, 162, 82, (160,321,0): 176, 158, 84, (160,322,0): 171, 154, 82, (160,323,0): 169, 152, 82, (160,324,0): 166, 151, 84, (160,325,0): 165, 149, 87, (160,326,0): 161, 145, 86, (160,327,0): 157, 140, 84, (160,328,0): 160, 143, 89, (160,329,0): 162, 142, 91, (160,330,0): 162, 142, 91, (160,331,0): 163, 141, 91, (160,332,0): 163, 140, 90, (160,333,0): 165, 139, 90, (160,334,0): 165, 139, 90, (160,335,0): 165, 140, 86, (160,336,0): 162, 140, 82, (160,337,0): 164, 142, 82, (160,338,0): 171, 145, 88, (160,339,0): 177, 148, 92, (160,340,0): 180, 149, 95, (160,341,0): 183, 150, 97, (160,342,0): 183, 150, 99, (160,343,0): 182, 150, 99, (160,344,0): 189, 157, 106, (160,345,0): 190, 159, 105, (160,346,0): 192, 161, 106, (160,347,0): 194, 163, 108, (160,348,0): 197, 165, 108, (160,349,0): 202, 167, 109, (160,350,0): 206, 167, 110, (160,351,0): 207, 169, 107, (160,352,0): 202, 167, 101, (160,353,0): 204, 169, 101, (160,354,0): 209, 170, 103, (160,355,0): 215, 172, 104, (160,356,0): 222, 175, 107, (160,357,0): 229, 176, 110, (160,358,0): 234, 177, 110, (160,359,0): 238, 177, 110, (160,360,0): 233, 168, 100, (160,361,0): 239, 172, 102, (160,362,0): 247, 177, 107, (160,363,0): 252, 182, 112, (160,364,0): 255, 185, 113, (160,365,0): 254, 185, 110, (160,366,0): 252, 184, 109, (160,367,0): 247, 184, 107, (160,368,0): 245, 188, 109, (160,369,0): 242, 189, 109, (160,370,0): 241, 188, 110, (160,371,0): 239, 187, 111, (160,372,0): 235, 186, 110, (160,373,0): 232, 184, 110, (160,374,0): 228, 181, 111, (160,375,0): 225, 181, 110, (160,376,0): 220, 177, 108, (160,377,0): 218, 178, 109, (160,378,0): 218, 179, 110, (160,379,0): 218, 179, 110, (160,380,0): 217, 180, 110, (160,381,0): 217, 180, 110, (160,382,0): 217, 180, 110, (160,383,0): 216, 182, 110, (160,384,0): 211, 179, 106, (160,385,0): 210, 180, 107, (160,386,0): 213, 184, 108, (160,387,0): 216, 187, 111, (160,388,0): 220, 191, 113, (160,389,0): 223, 194, 114, (160,390,0): 226, 197, 117, (160,391,0): 226, 200, 115, (160,392,0): 232, 205, 118, (160,393,0): 229, 204, 114, (160,394,0): 227, 202, 110, (160,395,0): 230, 205, 112, (160,396,0): 235, 210, 117, (160,397,0): 239, 215, 119, (160,398,0): 239, 215, 119, (160,399,0): 239, 213, 116, (160,400,0): 243, 213, 117, (160,401,0): 246, 213, 116, (160,402,0): 247, 214, 117, (160,403,0): 248, 218, 120, (160,404,0): 250, 220, 122, (160,405,0): 252, 224, 124, (160,406,0): 255, 227, 127, (160,407,0): 255, 229, 126, (160,408,0): 255, 228, 125, (160,409,0): 253, 228, 125, (160,410,0): 255, 230, 127, (160,411,0): 255, 232, 126, (160,412,0): 255, 232, 126, (160,413,0): 254, 232, 123, (160,414,0): 253, 231, 122, (160,415,0): 252, 231, 124, (160,416,0): 255, 236, 133, (160,417,0): 254, 237, 133, (160,418,0): 254, 237, 133, (160,419,0): 251, 237, 130, (160,420,0): 251, 234, 128, (160,421,0): 246, 232, 123, (160,422,0): 246, 229, 121, (160,423,0): 244, 227, 119, (160,424,0): 243, 227, 116, (160,425,0): 243, 227, 116, (160,426,0): 244, 227, 119, (160,427,0): 243, 226, 118, (160,428,0): 242, 223, 118, (160,429,0): 239, 220, 115, (160,430,0): 237, 218, 113, (160,431,0): 234, 217, 113, (160,432,0): 225, 209, 111, (160,433,0): 220, 207, 111, (160,434,0): 217, 204, 110, (160,435,0): 214, 203, 111, (160,436,0): 210, 203, 112, (160,437,0): 206, 201, 110, (160,438,0): 202, 196, 108, (160,439,0): 198, 192, 106, (160,440,0): 192, 186, 100, (160,441,0): 186, 178, 95, (160,442,0): 181, 170, 88, (160,443,0): 181, 166, 85, (160,444,0): 184, 167, 87, (160,445,0): 189, 170, 91, (160,446,0): 194, 171, 95, (160,447,0): 197, 171, 94, (160,448,0): 199, 172, 95, (160,449,0): 202, 175, 96, (160,450,0): 204, 179, 99, (160,451,0): 205, 179, 102, (160,452,0): 202, 179, 101, (160,453,0): 203, 180, 104, (160,454,0): 204, 182, 106, (160,455,0): 207, 185, 109, (160,456,0): 199, 177, 101, (160,457,0): 198, 176, 100, (160,458,0): 200, 177, 101, (160,459,0): 203, 177, 103, (160,460,0): 207, 179, 106, (160,461,0): 211, 183, 110, (160,462,0): 216, 186, 114, (160,463,0): 218, 188, 115, (160,464,0): 214, 187, 108, (160,465,0): 211, 186, 106, (160,466,0): 208, 183, 103, (160,467,0): 203, 180, 102, (160,468,0): 198, 176, 100, (160,469,0): 193, 175, 99, (160,470,0): 190, 173, 101, (160,471,0): 186, 174, 102, (160,472,0): 185, 175, 104, (160,473,0): 183, 176, 108, (160,474,0): 180, 175, 109, (160,475,0): 179, 175, 111, (160,476,0): 176, 176, 112, (160,477,0): 176, 178, 115, (160,478,0): 177, 179, 116, (160,479,0): 178, 180, 117, (160,480,0): 177, 179, 114, (160,481,0): 176, 178, 113, (160,482,0): 175, 177, 114, (160,483,0): 175, 176, 116, (160,484,0): 174, 175, 117, (160,485,0): 167, 170, 113, (160,486,0): 159, 162, 107, (160,487,0): 154, 157, 104, (160,488,0): 152, 154, 104, (160,489,0): 149, 152, 105, (160,490,0): 147, 150, 105, (160,491,0): 145, 148, 105, (160,492,0): 142, 144, 104, (160,493,0): 134, 139, 99, (160,494,0): 126, 131, 91, (160,495,0): 120, 124, 87, (160,496,0): 117, 121, 88, (160,497,0): 117, 120, 89, (160,498,0): 116, 119, 88, (160,499,0): 114, 117, 86, (160,500,0): 111, 114, 85, (160,501,0): 107, 110, 81, (160,502,0): 106, 106, 78, (160,503,0): 104, 104, 76, (160,504,0): 103, 103, 77, (160,505,0): 103, 103, 77, (160,506,0): 106, 104, 81, (160,507,0): 107, 105, 82, (160,508,0): 107, 105, 82, (160,509,0): 107, 105, 82, (160,510,0): 109, 104, 84, (160,511,0): 107, 105, 82, (160,512,0): 104, 104, 78, (160,513,0): 102, 105, 78, (160,514,0): 103, 106, 79, (160,515,0): 104, 107, 80, (160,516,0): 108, 108, 82, (160,517,0): 109, 109, 85, (160,518,0): 111, 109, 86, (160,519,0): 111, 109, 86, (160,520,0): 113, 108, 88, (160,521,0): 113, 108, 88, (160,522,0): 115, 108, 89, (160,523,0): 115, 108, 89, (160,524,0): 114, 107, 89, (160,525,0): 112, 103, 86, (160,526,0): 109, 100, 83, (160,527,0): 111, 98, 81, (160,528,0): 116, 97, 80, (160,529,0): 121, 98, 80, (160,530,0): 123, 102, 83, (160,531,0): 125, 104, 85, (160,532,0): 123, 105, 85, (160,533,0): 121, 103, 83, (160,534,0): 117, 100, 80, (160,535,0): 115, 98, 78, (160,536,0): 114, 99, 78, (160,537,0): 112, 97, 76, (160,538,0): 111, 96, 75, (160,539,0): 112, 97, 76, (160,540,0): 112, 97, 76, (160,541,0): 111, 96, 75, (160,542,0): 106, 91, 70, (160,543,0): 102, 87, 66, (160,544,0): 97, 84, 67, (160,545,0): 96, 83, 66, (160,546,0): 93, 80, 63, (160,547,0): 89, 78, 60, (160,548,0): 87, 74, 58, (160,549,0): 85, 73, 57, (160,550,0): 84, 72, 58, (160,551,0): 84, 72, 58, (160,552,0): 89, 77, 63, (160,553,0): 87, 75, 61, (160,554,0): 84, 72, 60, (160,555,0): 81, 69, 57, (160,556,0): 79, 66, 57, (160,557,0): 78, 65, 56, (160,558,0): 77, 64, 55, (160,559,0): 75, 65, 55, (160,560,0): 78, 72, 60, (160,561,0): 77, 73, 61, (160,562,0): 79, 75, 63, (160,563,0): 81, 79, 66, (160,564,0): 83, 81, 69, (160,565,0): 84, 84, 72, (160,566,0): 85, 87, 74, (160,567,0): 86, 88, 75, (160,568,0): 88, 92, 78, (160,569,0): 88, 91, 80, (160,570,0): 85, 91, 79, (160,571,0): 84, 92, 79, (160,572,0): 84, 92, 79, (160,573,0): 83, 94, 80, (160,574,0): 86, 94, 83, (160,575,0): 86, 94, 83, (160,576,0): 87, 90, 79, (160,577,0): 87, 89, 78, (160,578,0): 87, 87, 77, (160,579,0): 87, 84, 75, (160,580,0): 85, 82, 75, (160,581,0): 85, 80, 74, (160,582,0): 85, 80, 74, (160,583,0): 85, 80, 74, (160,584,0): 87, 78, 73, (160,585,0): 87, 78, 71, (160,586,0): 90, 76, 73, (160,587,0): 90, 76, 73, (160,588,0): 90, 76, 73, (160,589,0): 90, 76, 75, (160,590,0): 89, 75, 75, (160,591,0): 89, 75, 74, (160,592,0): 91, 77, 74, (160,593,0): 92, 79, 73, (160,594,0): 93, 79, 76, (160,595,0): 92, 79, 73, (160,596,0): 89, 75, 72, (160,597,0): 84, 71, 65, (160,598,0): 79, 65, 62, (160,599,0): 76, 63, 57, (161,0,0): 39, 27, 41, (161,1,0): 38, 26, 40, (161,2,0): 37, 25, 39, (161,3,0): 37, 25, 39, (161,4,0): 37, 25, 39, (161,5,0): 37, 25, 39, (161,6,0): 38, 26, 40, (161,7,0): 39, 27, 41, (161,8,0): 39, 27, 41, (161,9,0): 39, 27, 41, (161,10,0): 40, 28, 42, (161,11,0): 40, 28, 42, (161,12,0): 41, 29, 43, (161,13,0): 41, 29, 43, (161,14,0): 42, 30, 44, (161,15,0): 42, 30, 44, (161,16,0): 42, 25, 44, (161,17,0): 42, 25, 44, (161,18,0): 40, 26, 43, (161,19,0): 41, 27, 44, (161,20,0): 41, 28, 45, (161,21,0): 42, 29, 46, (161,22,0): 41, 30, 44, (161,23,0): 41, 30, 44, (161,24,0): 38, 26, 38, (161,25,0): 38, 26, 38, (161,26,0): 42, 26, 39, (161,27,0): 43, 27, 40, (161,28,0): 47, 27, 39, (161,29,0): 48, 28, 40, (161,30,0): 51, 27, 41, (161,31,0): 50, 30, 42, (161,32,0): 45, 34, 42, (161,33,0): 44, 34, 42, (161,34,0): 45, 35, 43, (161,35,0): 46, 35, 43, (161,36,0): 48, 35, 42, (161,37,0): 50, 35, 42, (161,38,0): 54, 34, 43, (161,39,0): 55, 34, 43, (161,40,0): 56, 33, 41, (161,41,0): 59, 33, 42, (161,42,0): 63, 33, 41, (161,43,0): 66, 35, 43, (161,44,0): 69, 36, 45, (161,45,0): 73, 37, 47, (161,46,0): 75, 40, 47, (161,47,0): 76, 39, 47, (161,48,0): 81, 40, 48, (161,49,0): 82, 39, 48, (161,50,0): 84, 38, 48, (161,51,0): 85, 39, 49, (161,52,0): 87, 40, 50, (161,53,0): 89, 39, 50, (161,54,0): 90, 38, 50, (161,55,0): 91, 39, 51, (161,56,0): 90, 38, 50, (161,57,0): 89, 37, 49, (161,58,0): 87, 37, 48, (161,59,0): 84, 37, 47, (161,60,0): 83, 36, 46, (161,61,0): 81, 35, 45, (161,62,0): 78, 35, 44, (161,63,0): 75, 35, 43, (161,64,0): 67, 35, 40, (161,65,0): 66, 35, 40, (161,66,0): 67, 35, 40, (161,67,0): 68, 36, 41, (161,68,0): 69, 37, 42, (161,69,0): 72, 37, 43, (161,70,0): 72, 37, 43, (161,71,0): 72, 37, 43, (161,72,0): 78, 41, 48, (161,73,0): 77, 40, 47, (161,74,0): 78, 38, 46, (161,75,0): 76, 36, 44, (161,76,0): 76, 35, 43, (161,77,0): 74, 33, 41, (161,78,0): 74, 31, 40, (161,79,0): 72, 31, 39, (161,80,0): 71, 31, 40, (161,81,0): 69, 31, 42, (161,82,0): 70, 32, 43, (161,83,0): 70, 32, 43, (161,84,0): 71, 33, 44, (161,85,0): 71, 33, 44, (161,86,0): 72, 34, 45, (161,87,0): 72, 34, 45, (161,88,0): 72, 34, 45, (161,89,0): 72, 34, 45, (161,90,0): 72, 34, 45, (161,91,0): 71, 33, 44, (161,92,0): 71, 33, 44, (161,93,0): 70, 32, 43, (161,94,0): 70, 32, 43, (161,95,0): 69, 32, 40, (161,96,0): 73, 33, 41, (161,97,0): 73, 34, 39, (161,98,0): 70, 33, 40, (161,99,0): 68, 33, 39, (161,100,0): 63, 30, 37, (161,101,0): 59, 28, 34, (161,102,0): 55, 25, 33, (161,103,0): 50, 25, 31, (161,104,0): 44, 21, 31, (161,105,0): 41, 21, 30, (161,106,0): 37, 20, 30, (161,107,0): 32, 19, 28, (161,108,0): 30, 17, 27, (161,109,0): 29, 17, 27, (161,110,0): 28, 18, 29, (161,111,0): 28, 18, 29, (161,112,0): 33, 20, 30, (161,113,0): 34, 18, 29, (161,114,0): 34, 18, 29, (161,115,0): 33, 17, 28, (161,116,0): 33, 17, 28, (161,117,0): 32, 16, 27, (161,118,0): 32, 16, 27, (161,119,0): 32, 16, 27, (161,120,0): 31, 15, 26, (161,121,0): 31, 15, 26, (161,122,0): 31, 15, 26, (161,123,0): 31, 15, 26, (161,124,0): 31, 15, 26, (161,125,0): 32, 16, 27, (161,126,0): 32, 16, 27, (161,127,0): 32, 16, 27, (161,128,0): 34, 16, 30, (161,129,0): 34, 16, 30, (161,130,0): 34, 16, 28, (161,131,0): 35, 17, 29, (161,132,0): 35, 17, 29, (161,133,0): 36, 18, 30, (161,134,0): 36, 19, 29, (161,135,0): 37, 20, 30, (161,136,0): 37, 20, 28, (161,137,0): 37, 20, 28, (161,138,0): 38, 21, 29, (161,139,0): 39, 22, 30, (161,140,0): 40, 23, 29, (161,141,0): 41, 24, 30, (161,142,0): 42, 25, 31, (161,143,0): 44, 25, 29, (161,144,0): 44, 24, 26, (161,145,0): 46, 24, 26, (161,146,0): 47, 25, 27, (161,147,0): 48, 26, 28, (161,148,0): 49, 27, 29, (161,149,0): 50, 28, 30, (161,150,0): 51, 29, 31, (161,151,0): 51, 29, 31, (161,152,0): 49, 27, 29, (161,153,0): 49, 27, 29, (161,154,0): 49, 27, 29, (161,155,0): 49, 27, 29, (161,156,0): 49, 27, 29, (161,157,0): 49, 27, 29, (161,158,0): 49, 27, 29, (161,159,0): 49, 28, 27, (161,160,0): 49, 28, 27, (161,161,0): 49, 28, 25, (161,162,0): 49, 28, 25, (161,163,0): 49, 28, 25, (161,164,0): 49, 28, 25, (161,165,0): 49, 28, 25, (161,166,0): 49, 28, 25, (161,167,0): 49, 28, 25, (161,168,0): 47, 26, 23, (161,169,0): 47, 26, 23, (161,170,0): 47, 26, 23, (161,171,0): 46, 25, 22, (161,172,0): 46, 25, 22, (161,173,0): 45, 24, 21, (161,174,0): 45, 24, 21, (161,175,0): 44, 23, 20, (161,176,0): 47, 26, 23, (161,177,0): 47, 26, 23, (161,178,0): 47, 26, 23, (161,179,0): 47, 26, 23, (161,180,0): 47, 26, 23, (161,181,0): 47, 26, 23, (161,182,0): 47, 26, 23, (161,183,0): 47, 26, 23, (161,184,0): 46, 25, 22, (161,185,0): 46, 25, 22, (161,186,0): 46, 25, 22, (161,187,0): 46, 25, 22, (161,188,0): 46, 25, 22, (161,189,0): 46, 25, 22, (161,190,0): 46, 25, 22, (161,191,0): 45, 26, 22, (161,192,0): 46, 27, 23, (161,193,0): 45, 27, 23, (161,194,0): 45, 27, 23, (161,195,0): 44, 26, 22, (161,196,0): 44, 25, 21, (161,197,0): 43, 24, 20, (161,198,0): 44, 23, 20, (161,199,0): 44, 23, 20, (161,200,0): 44, 23, 20, (161,201,0): 44, 23, 20, (161,202,0): 47, 23, 21, (161,203,0): 48, 24, 22, (161,204,0): 49, 23, 22, (161,205,0): 50, 24, 23, (161,206,0): 51, 25, 24, (161,207,0): 51, 25, 24, (161,208,0): 48, 23, 19, (161,209,0): 49, 24, 20, (161,210,0): 51, 26, 21, (161,211,0): 52, 27, 22, (161,212,0): 53, 28, 23, (161,213,0): 53, 28, 23, (161,214,0): 52, 27, 20, (161,215,0): 51, 26, 19, (161,216,0): 50, 26, 16, (161,217,0): 50, 26, 16, (161,218,0): 50, 26, 16, (161,219,0): 49, 25, 15, (161,220,0): 48, 24, 12, (161,221,0): 47, 23, 11, (161,222,0): 47, 23, 11, (161,223,0): 47, 23, 11, (161,224,0): 50, 25, 18, (161,225,0): 50, 25, 18, (161,226,0): 51, 26, 19, (161,227,0): 51, 26, 19, (161,228,0): 54, 27, 18, (161,229,0): 54, 27, 18, (161,230,0): 55, 28, 19, (161,231,0): 55, 28, 19, (161,232,0): 56, 28, 17, (161,233,0): 56, 28, 17, (161,234,0): 57, 27, 16, (161,235,0): 56, 26, 15, (161,236,0): 56, 26, 15, (161,237,0): 55, 25, 14, (161,238,0): 57, 25, 12, (161,239,0): 54, 25, 11, (161,240,0): 56, 27, 13, (161,241,0): 55, 27, 13, (161,242,0): 56, 28, 14, (161,243,0): 57, 29, 15, (161,244,0): 58, 30, 16, (161,245,0): 59, 31, 17, (161,246,0): 59, 31, 17, (161,247,0): 60, 32, 18, (161,248,0): 60, 32, 18, (161,249,0): 60, 32, 18, (161,250,0): 61, 33, 19, (161,251,0): 62, 34, 20, (161,252,0): 63, 35, 21, (161,253,0): 64, 36, 22, (161,254,0): 65, 37, 23, (161,255,0): 66, 38, 26, (161,256,0): 65, 37, 26, (161,257,0): 64, 36, 25, (161,258,0): 64, 36, 25, (161,259,0): 63, 35, 24, (161,260,0): 63, 34, 26, (161,261,0): 62, 33, 25, (161,262,0): 62, 33, 25, (161,263,0): 62, 33, 25, (161,264,0): 61, 32, 26, (161,265,0): 61, 32, 26, (161,266,0): 61, 32, 28, (161,267,0): 62, 33, 29, (161,268,0): 62, 33, 29, (161,269,0): 63, 34, 30, (161,270,0): 63, 33, 31, (161,271,0): 63, 34, 30, (161,272,0): 66, 35, 32, (161,273,0): 69, 36, 31, (161,274,0): 69, 36, 31, (161,275,0): 70, 37, 32, (161,276,0): 72, 39, 32, (161,277,0): 73, 40, 31, (161,278,0): 73, 40, 31, (161,279,0): 74, 42, 31, (161,280,0): 77, 45, 32, (161,281,0): 77, 45, 30, (161,282,0): 78, 46, 31, (161,283,0): 79, 48, 30, (161,284,0): 80, 49, 29, (161,285,0): 81, 50, 30, (161,286,0): 82, 51, 31, (161,287,0): 80, 52, 31, (161,288,0): 80, 53, 32, (161,289,0): 81, 54, 33, (161,290,0): 81, 54, 33, (161,291,0): 82, 55, 34, (161,292,0): 84, 57, 36, (161,293,0): 85, 58, 37, (161,294,0): 85, 58, 37, (161,295,0): 86, 59, 38, (161,296,0): 89, 62, 41, (161,297,0): 89, 62, 41, (161,298,0): 90, 63, 42, (161,299,0): 90, 63, 42, (161,300,0): 91, 64, 43, (161,301,0): 91, 64, 43, (161,302,0): 92, 65, 44, (161,303,0): 92, 65, 44, (161,304,0): 95, 68, 47, (161,305,0): 96, 70, 47, (161,306,0): 99, 73, 48, (161,307,0): 104, 79, 49, (161,308,0): 108, 83, 52, (161,309,0): 113, 89, 55, (161,310,0): 117, 91, 56, (161,311,0): 119, 93, 56, (161,312,0): 126, 98, 59, (161,313,0): 136, 109, 64, (161,314,0): 148, 120, 70, (161,315,0): 160, 134, 75, (161,316,0): 175, 151, 81, (161,317,0): 189, 166, 86, (161,318,0): 192, 171, 82, (161,319,0): 186, 166, 79, (161,320,0): 181, 162, 85, (161,321,0): 176, 158, 86, (161,322,0): 171, 154, 84, (161,323,0): 169, 152, 83, (161,324,0): 166, 151, 86, (161,325,0): 164, 148, 88, (161,326,0): 159, 144, 85, (161,327,0): 156, 141, 84, (161,328,0): 159, 142, 90, (161,329,0): 160, 143, 91, (161,330,0): 163, 141, 92, (161,331,0): 163, 141, 92, (161,332,0): 166, 140, 91, (161,333,0): 166, 140, 91, (161,334,0): 168, 137, 90, (161,335,0): 165, 138, 85, (161,336,0): 161, 141, 82, (161,337,0): 163, 143, 80, (161,338,0): 169, 145, 85, (161,339,0): 176, 147, 89, (161,340,0): 180, 149, 94, (161,341,0): 182, 149, 96, (161,342,0): 183, 150, 99, (161,343,0): 183, 150, 99, (161,344,0): 188, 155, 104, (161,345,0): 188, 157, 103, (161,346,0): 191, 160, 105, (161,347,0): 194, 162, 105, (161,348,0): 201, 165, 107, (161,349,0): 207, 167, 108, (161,350,0): 212, 167, 108, (161,351,0): 213, 169, 108, (161,352,0): 207, 168, 99, (161,353,0): 208, 170, 99, (161,354,0): 212, 172, 102, (161,355,0): 218, 174, 103, (161,356,0): 225, 175, 106, (161,357,0): 232, 178, 108, (161,358,0): 237, 178, 110, (161,359,0): 242, 179, 110, (161,360,0): 241, 174, 104, (161,361,0): 245, 177, 106, (161,362,0): 251, 181, 111, (161,363,0): 255, 185, 113, (161,364,0): 255, 187, 115, (161,365,0): 255, 187, 112, (161,366,0): 252, 184, 109, (161,367,0): 247, 186, 106, (161,368,0): 242, 190, 107, (161,369,0): 238, 192, 107, (161,370,0): 237, 190, 110, (161,371,0): 235, 188, 110, (161,372,0): 233, 185, 109, (161,373,0): 229, 183, 108, (161,374,0): 224, 180, 109, (161,375,0): 221, 179, 107, (161,376,0): 219, 176, 108, (161,377,0): 217, 177, 108, (161,378,0): 216, 177, 108, (161,379,0): 215, 178, 108, (161,380,0): 216, 179, 108, (161,381,0): 214, 180, 108, (161,382,0): 214, 180, 108, (161,383,0): 214, 182, 109, (161,384,0): 208, 178, 105, (161,385,0): 208, 180, 106, (161,386,0): 211, 183, 109, (161,387,0): 214, 187, 110, (161,388,0): 218, 191, 112, (161,389,0): 221, 194, 113, (161,390,0): 223, 196, 115, (161,391,0): 225, 199, 114, (161,392,0): 229, 203, 116, (161,393,0): 227, 202, 112, (161,394,0): 227, 202, 110, (161,395,0): 231, 206, 113, (161,396,0): 236, 212, 116, (161,397,0): 238, 214, 118, (161,398,0): 238, 214, 116, (161,399,0): 237, 211, 114, (161,400,0): 242, 212, 116, (161,401,0): 245, 212, 117, (161,402,0): 247, 214, 119, (161,403,0): 247, 217, 119, (161,404,0): 250, 220, 122, (161,405,0): 251, 223, 123, (161,406,0): 254, 226, 126, (161,407,0): 255, 227, 127, (161,408,0): 254, 226, 126, (161,409,0): 253, 228, 125, (161,410,0): 255, 230, 127, (161,411,0): 255, 232, 126, (161,412,0): 255, 232, 126, (161,413,0): 255, 232, 126, (161,414,0): 254, 231, 125, (161,415,0): 252, 231, 126, (161,416,0): 251, 232, 130, (161,417,0): 251, 233, 133, (161,418,0): 251, 233, 131, (161,419,0): 251, 234, 130, (161,420,0): 250, 233, 127, (161,421,0): 249, 232, 124, (161,422,0): 247, 230, 122, (161,423,0): 246, 229, 121, (161,424,0): 243, 227, 116, (161,425,0): 244, 227, 119, (161,426,0): 244, 227, 119, (161,427,0): 244, 227, 121, (161,428,0): 241, 224, 120, (161,429,0): 236, 218, 116, (161,430,0): 232, 214, 114, (161,431,0): 227, 211, 113, (161,432,0): 219, 206, 112, (161,433,0): 214, 203, 111, (161,434,0): 211, 200, 108, (161,435,0): 209, 200, 109, (161,436,0): 207, 200, 109, (161,437,0): 204, 199, 107, (161,438,0): 200, 196, 105, (161,439,0): 196, 192, 101, (161,440,0): 195, 189, 101, (161,441,0): 190, 183, 95, (161,442,0): 187, 175, 91, (161,443,0): 186, 171, 88, (161,444,0): 190, 171, 92, (161,445,0): 196, 175, 96, (161,446,0): 200, 177, 101, (161,447,0): 203, 177, 100, (161,448,0): 202, 175, 94, (161,449,0): 205, 178, 97, (161,450,0): 208, 181, 100, (161,451,0): 207, 182, 100, (161,452,0): 204, 182, 99, (161,453,0): 204, 183, 102, (161,454,0): 207, 186, 105, (161,455,0): 207, 188, 109, (161,456,0): 204, 185, 106, (161,457,0): 203, 184, 105, (161,458,0): 206, 183, 105, (161,459,0): 207, 184, 108, (161,460,0): 210, 184, 109, (161,461,0): 213, 187, 112, (161,462,0): 217, 187, 115, (161,463,0): 218, 190, 116, (161,464,0): 212, 189, 109, (161,465,0): 210, 189, 106, (161,466,0): 207, 186, 105, (161,467,0): 202, 184, 102, (161,468,0): 197, 180, 102, (161,469,0): 193, 177, 100, (161,470,0): 189, 175, 100, (161,471,0): 185, 175, 103, (161,472,0): 184, 176, 104, (161,473,0): 180, 175, 107, (161,474,0): 178, 175, 108, (161,475,0): 176, 175, 110, (161,476,0): 176, 176, 114, (161,477,0): 176, 178, 115, (161,478,0): 175, 179, 118, (161,479,0): 176, 180, 119, (161,480,0): 175, 180, 116, (161,481,0): 174, 179, 115, (161,482,0): 173, 177, 116, (161,483,0): 174, 178, 119, (161,484,0): 173, 176, 119, (161,485,0): 169, 172, 117, (161,486,0): 160, 165, 111, (161,487,0): 155, 159, 108, (161,488,0): 152, 156, 106, (161,489,0): 149, 152, 105, (161,490,0): 144, 150, 104, (161,491,0): 142, 148, 104, (161,492,0): 139, 144, 103, (161,493,0): 133, 138, 97, (161,494,0): 124, 131, 90, (161,495,0): 118, 124, 86, (161,496,0): 116, 122, 88, (161,497,0): 116, 121, 89, (161,498,0): 115, 120, 88, (161,499,0): 114, 119, 87, (161,500,0): 112, 115, 86, (161,501,0): 109, 112, 83, (161,502,0): 106, 109, 80, (161,503,0): 104, 107, 78, (161,504,0): 104, 104, 78, (161,505,0): 104, 104, 78, (161,506,0): 105, 103, 80, (161,507,0): 105, 103, 80, (161,508,0): 105, 103, 80, (161,509,0): 106, 104, 81, (161,510,0): 108, 103, 83, (161,511,0): 107, 105, 84, (161,512,0): 100, 102, 78, (161,513,0): 99, 103, 76, (161,514,0): 100, 104, 77, (161,515,0): 101, 105, 78, (161,516,0): 103, 105, 81, (161,517,0): 106, 106, 82, (161,518,0): 108, 106, 83, (161,519,0): 108, 106, 83, (161,520,0): 112, 107, 87, (161,521,0): 113, 108, 88, (161,522,0): 114, 107, 88, (161,523,0): 114, 107, 88, (161,524,0): 114, 105, 88, (161,525,0): 111, 102, 85, (161,526,0): 111, 99, 83, (161,527,0): 110, 99, 81, (161,528,0): 109, 96, 77, (161,529,0): 112, 100, 78, (161,530,0): 117, 102, 81, (161,531,0): 119, 107, 85, (161,532,0): 122, 107, 86, (161,533,0): 120, 108, 86, (161,534,0): 120, 105, 84, (161,535,0): 117, 105, 83, (161,536,0): 116, 101, 80, (161,537,0): 112, 100, 78, (161,538,0): 113, 98, 77, (161,539,0): 110, 98, 76, (161,540,0): 113, 98, 77, (161,541,0): 108, 96, 74, (161,542,0): 106, 91, 70, (161,543,0): 100, 88, 66, (161,544,0): 96, 85, 65, (161,545,0): 94, 83, 63, (161,546,0): 92, 81, 61, (161,547,0): 89, 78, 58, (161,548,0): 87, 76, 58, (161,549,0): 86, 75, 57, (161,550,0): 86, 74, 58, (161,551,0): 86, 74, 58, (161,552,0): 89, 77, 61, (161,553,0): 87, 75, 59, (161,554,0): 85, 73, 59, (161,555,0): 82, 70, 56, (161,556,0): 80, 68, 56, (161,557,0): 79, 67, 55, (161,558,0): 79, 67, 55, (161,559,0): 77, 67, 55, (161,560,0): 79, 75, 63, (161,561,0): 79, 77, 64, (161,562,0): 81, 79, 66, (161,563,0): 84, 82, 69, (161,564,0): 85, 85, 73, (161,565,0): 86, 88, 75, (161,566,0): 88, 90, 77, (161,567,0): 88, 92, 78, (161,568,0): 87, 93, 81, (161,569,0): 87, 95, 82, (161,570,0): 87, 95, 84, (161,571,0): 86, 96, 85, (161,572,0): 85, 97, 85, (161,573,0): 85, 97, 85, (161,574,0): 85, 97, 87, (161,575,0): 86, 96, 87, (161,576,0): 88, 91, 82, (161,577,0): 89, 91, 80, (161,578,0): 89, 89, 79, (161,579,0): 87, 87, 77, (161,580,0): 87, 84, 75, (161,581,0): 85, 82, 73, (161,582,0): 85, 80, 74, (161,583,0): 84, 79, 73, (161,584,0): 87, 80, 74, (161,585,0): 87, 78, 73, (161,586,0): 88, 77, 75, (161,587,0): 88, 77, 75, (161,588,0): 89, 75, 74, (161,589,0): 89, 75, 74, (161,590,0): 90, 74, 75, (161,591,0): 90, 74, 74, (161,592,0): 90, 76, 73, (161,593,0): 90, 77, 71, (161,594,0): 91, 78, 72, (161,595,0): 91, 78, 72, (161,596,0): 89, 76, 70, (161,597,0): 85, 72, 66, (161,598,0): 80, 67, 61, (161,599,0): 78, 65, 59, (162,0,0): 40, 28, 42, (162,1,0): 39, 27, 41, (162,2,0): 38, 26, 40, (162,3,0): 37, 25, 39, (162,4,0): 37, 25, 39, (162,5,0): 38, 26, 40, (162,6,0): 39, 27, 41, (162,7,0): 40, 28, 42, (162,8,0): 39, 27, 41, (162,9,0): 39, 27, 41, (162,10,0): 40, 28, 42, (162,11,0): 40, 28, 42, (162,12,0): 41, 29, 43, (162,13,0): 41, 29, 43, (162,14,0): 42, 30, 44, (162,15,0): 42, 30, 44, (162,16,0): 42, 25, 44, (162,17,0): 42, 25, 44, (162,18,0): 41, 27, 44, (162,19,0): 41, 27, 44, (162,20,0): 41, 28, 45, (162,21,0): 41, 28, 45, (162,22,0): 41, 30, 44, (162,23,0): 41, 30, 44, (162,24,0): 38, 26, 38, (162,25,0): 39, 27, 39, (162,26,0): 43, 27, 40, (162,27,0): 44, 28, 41, (162,28,0): 48, 28, 40, (162,29,0): 49, 29, 41, (162,30,0): 52, 28, 42, (162,31,0): 50, 30, 42, (162,32,0): 47, 34, 43, (162,33,0): 46, 35, 43, (162,34,0): 46, 35, 43, (162,35,0): 47, 34, 43, (162,36,0): 50, 35, 42, (162,37,0): 51, 34, 42, (162,38,0): 54, 33, 40, (162,39,0): 55, 32, 40, (162,40,0): 60, 34, 43, (162,41,0): 62, 35, 44, (162,42,0): 66, 35, 43, (162,43,0): 70, 37, 46, (162,44,0): 74, 39, 46, (162,45,0): 77, 40, 48, (162,46,0): 79, 42, 50, (162,47,0): 82, 42, 51, (162,48,0): 82, 41, 49, (162,49,0): 84, 41, 50, (162,50,0): 86, 40, 50, (162,51,0): 87, 40, 50, (162,52,0): 90, 40, 51, (162,53,0): 91, 41, 52, (162,54,0): 92, 40, 52, (162,55,0): 93, 39, 52, (162,56,0): 92, 38, 51, (162,57,0): 91, 39, 51, (162,58,0): 89, 39, 50, (162,59,0): 86, 39, 49, (162,60,0): 85, 38, 48, (162,61,0): 83, 37, 47, (162,62,0): 80, 37, 46, (162,63,0): 79, 38, 46, (162,64,0): 70, 35, 41, (162,65,0): 69, 37, 42, (162,66,0): 71, 36, 42, (162,67,0): 71, 36, 42, (162,68,0): 72, 37, 43, (162,69,0): 73, 36, 43, (162,70,0): 74, 37, 44, (162,71,0): 74, 37, 44, (162,72,0): 80, 40, 48, (162,73,0): 79, 39, 47, (162,74,0): 78, 38, 46, (162,75,0): 76, 36, 44, (162,76,0): 76, 35, 43, (162,77,0): 74, 33, 41, (162,78,0): 73, 32, 40, (162,79,0): 72, 31, 39, (162,80,0): 71, 31, 40, (162,81,0): 69, 32, 40, (162,82,0): 70, 33, 41, (162,83,0): 70, 33, 41, (162,84,0): 71, 34, 42, (162,85,0): 71, 34, 42, (162,86,0): 72, 35, 43, (162,87,0): 72, 35, 43, (162,88,0): 73, 36, 44, (162,89,0): 72, 35, 43, (162,90,0): 72, 35, 43, (162,91,0): 71, 34, 42, (162,92,0): 71, 34, 42, (162,93,0): 70, 33, 41, (162,94,0): 70, 33, 41, (162,95,0): 70, 33, 41, (162,96,0): 73, 33, 41, (162,97,0): 72, 33, 38, (162,98,0): 69, 32, 39, (162,99,0): 66, 31, 37, (162,100,0): 62, 29, 36, (162,101,0): 57, 26, 32, (162,102,0): 53, 23, 31, (162,103,0): 48, 23, 29, (162,104,0): 42, 19, 29, (162,105,0): 39, 19, 28, (162,106,0): 35, 18, 28, (162,107,0): 31, 18, 27, (162,108,0): 30, 17, 27, (162,109,0): 29, 17, 27, (162,110,0): 29, 19, 30, (162,111,0): 30, 18, 30, (162,112,0): 31, 18, 28, (162,113,0): 33, 17, 28, (162,114,0): 33, 17, 28, (162,115,0): 32, 16, 27, (162,116,0): 31, 15, 26, (162,117,0): 31, 15, 26, (162,118,0): 31, 15, 26, (162,119,0): 30, 14, 25, (162,120,0): 29, 13, 24, (162,121,0): 29, 13, 24, (162,122,0): 30, 14, 25, (162,123,0): 30, 14, 25, (162,124,0): 31, 15, 26, (162,125,0): 32, 16, 27, (162,126,0): 33, 17, 28, (162,127,0): 33, 17, 28, (162,128,0): 33, 15, 29, (162,129,0): 34, 16, 30, (162,130,0): 34, 16, 28, (162,131,0): 35, 17, 29, (162,132,0): 35, 17, 29, (162,133,0): 36, 18, 30, (162,134,0): 36, 19, 29, (162,135,0): 36, 19, 29, (162,136,0): 36, 19, 27, (162,137,0): 36, 19, 27, (162,138,0): 37, 20, 28, (162,139,0): 38, 21, 29, (162,140,0): 39, 22, 28, (162,141,0): 40, 23, 29, (162,142,0): 41, 24, 30, (162,143,0): 43, 24, 28, (162,144,0): 44, 24, 26, (162,145,0): 45, 23, 25, (162,146,0): 46, 24, 26, (162,147,0): 47, 25, 27, (162,148,0): 48, 26, 28, (162,149,0): 49, 27, 29, (162,150,0): 50, 28, 30, (162,151,0): 51, 29, 31, (162,152,0): 51, 29, 31, (162,153,0): 51, 29, 31, (162,154,0): 51, 29, 31, (162,155,0): 51, 29, 31, (162,156,0): 51, 29, 31, (162,157,0): 51, 29, 31, (162,158,0): 51, 29, 31, (162,159,0): 51, 30, 29, (162,160,0): 49, 28, 27, (162,161,0): 49, 28, 25, (162,162,0): 49, 28, 25, (162,163,0): 49, 28, 25, (162,164,0): 49, 28, 25, (162,165,0): 49, 28, 25, (162,166,0): 49, 28, 25, (162,167,0): 49, 28, 25, (162,168,0): 48, 27, 24, (162,169,0): 47, 26, 23, (162,170,0): 47, 26, 23, (162,171,0): 46, 25, 22, (162,172,0): 46, 25, 22, (162,173,0): 45, 24, 21, (162,174,0): 45, 24, 21, (162,175,0): 45, 24, 21, (162,176,0): 47, 26, 23, (162,177,0): 47, 26, 23, (162,178,0): 47, 26, 23, (162,179,0): 47, 26, 23, (162,180,0): 47, 26, 23, (162,181,0): 47, 26, 23, (162,182,0): 47, 26, 23, (162,183,0): 47, 26, 23, (162,184,0): 45, 24, 21, (162,185,0): 45, 24, 21, (162,186,0): 45, 24, 21, (162,187,0): 45, 24, 21, (162,188,0): 45, 24, 21, (162,189,0): 45, 24, 21, (162,190,0): 45, 24, 21, (162,191,0): 44, 25, 21, (162,192,0): 46, 27, 23, (162,193,0): 45, 27, 23, (162,194,0): 45, 26, 22, (162,195,0): 45, 26, 22, (162,196,0): 44, 25, 21, (162,197,0): 44, 25, 21, (162,198,0): 44, 23, 20, (162,199,0): 44, 23, 20, (162,200,0): 46, 22, 20, (162,201,0): 46, 22, 20, (162,202,0): 46, 22, 20, (162,203,0): 47, 23, 21, (162,204,0): 48, 22, 21, (162,205,0): 49, 23, 22, (162,206,0): 49, 23, 22, (162,207,0): 49, 23, 22, (162,208,0): 48, 23, 19, (162,209,0): 49, 24, 20, (162,210,0): 51, 26, 21, (162,211,0): 52, 27, 22, (162,212,0): 52, 27, 22, (162,213,0): 52, 27, 22, (162,214,0): 51, 26, 19, (162,215,0): 51, 26, 19, (162,216,0): 50, 26, 16, (162,217,0): 50, 26, 16, (162,218,0): 49, 25, 15, (162,219,0): 49, 25, 15, (162,220,0): 48, 24, 12, (162,221,0): 48, 24, 12, (162,222,0): 47, 23, 11, (162,223,0): 47, 23, 11, (162,224,0): 50, 25, 18, (162,225,0): 50, 25, 18, (162,226,0): 51, 26, 19, (162,227,0): 51, 26, 19, (162,228,0): 54, 27, 18, (162,229,0): 54, 27, 18, (162,230,0): 55, 28, 19, (162,231,0): 55, 28, 19, (162,232,0): 57, 29, 18, (162,233,0): 56, 28, 17, (162,234,0): 57, 27, 16, (162,235,0): 56, 26, 15, (162,236,0): 56, 26, 15, (162,237,0): 55, 25, 14, (162,238,0): 57, 25, 12, (162,239,0): 55, 26, 12, (162,240,0): 54, 24, 13, (162,241,0): 54, 26, 14, (162,242,0): 55, 27, 15, (162,243,0): 56, 28, 16, (162,244,0): 57, 29, 17, (162,245,0): 59, 31, 19, (162,246,0): 60, 32, 20, (162,247,0): 60, 32, 20, (162,248,0): 59, 31, 19, (162,249,0): 60, 32, 20, (162,250,0): 60, 32, 20, (162,251,0): 62, 34, 22, (162,252,0): 63, 35, 23, (162,253,0): 64, 36, 24, (162,254,0): 64, 36, 24, (162,255,0): 65, 37, 25, (162,256,0): 64, 36, 25, (162,257,0): 64, 36, 25, (162,258,0): 64, 36, 25, (162,259,0): 63, 35, 24, (162,260,0): 63, 34, 26, (162,261,0): 62, 33, 25, (162,262,0): 62, 33, 25, (162,263,0): 61, 32, 24, (162,264,0): 61, 32, 26, (162,265,0): 61, 32, 26, (162,266,0): 61, 32, 28, (162,267,0): 62, 33, 29, (162,268,0): 62, 33, 29, (162,269,0): 63, 34, 30, (162,270,0): 63, 33, 31, (162,271,0): 63, 34, 30, (162,272,0): 66, 35, 32, (162,273,0): 67, 36, 31, (162,274,0): 67, 36, 31, (162,275,0): 68, 37, 32, (162,276,0): 70, 40, 32, (162,277,0): 71, 41, 31, (162,278,0): 71, 41, 31, (162,279,0): 72, 42, 31, (162,280,0): 76, 47, 33, (162,281,0): 76, 47, 31, (162,282,0): 77, 48, 32, (162,283,0): 78, 49, 31, (162,284,0): 79, 51, 30, (162,285,0): 80, 52, 31, (162,286,0): 81, 53, 32, (162,287,0): 81, 53, 32, (162,288,0): 80, 53, 32, (162,289,0): 81, 54, 33, (162,290,0): 81, 54, 33, (162,291,0): 82, 55, 34, (162,292,0): 84, 57, 36, (162,293,0): 85, 58, 37, (162,294,0): 85, 58, 37, (162,295,0): 86, 59, 38, (162,296,0): 89, 62, 41, (162,297,0): 89, 62, 41, (162,298,0): 90, 63, 42, (162,299,0): 90, 63, 42, (162,300,0): 91, 64, 43, (162,301,0): 91, 64, 43, (162,302,0): 92, 65, 44, (162,303,0): 92, 65, 44, (162,304,0): 93, 68, 46, (162,305,0): 95, 71, 47, (162,306,0): 99, 73, 48, (162,307,0): 103, 78, 48, (162,308,0): 107, 82, 51, (162,309,0): 111, 87, 53, (162,310,0): 115, 89, 54, (162,311,0): 117, 91, 54, (162,312,0): 126, 98, 59, (162,313,0): 133, 106, 61, (162,314,0): 141, 115, 64, (162,315,0): 150, 126, 66, (162,316,0): 167, 143, 73, (162,317,0): 185, 162, 84, (162,318,0): 193, 171, 85, (162,319,0): 191, 171, 85, (162,320,0): 181, 162, 85, (162,321,0): 176, 158, 86, (162,322,0): 171, 154, 84, (162,323,0): 169, 151, 85, (162,324,0): 166, 151, 86, (162,325,0): 163, 147, 87, (162,326,0): 158, 143, 84, (162,327,0): 155, 140, 83, (162,328,0): 157, 140, 88, (162,329,0): 159, 142, 90, (162,330,0): 163, 141, 91, (162,331,0): 165, 143, 93, (162,332,0): 168, 142, 93, (162,333,0): 166, 140, 91, (162,334,0): 168, 138, 88, (162,335,0): 165, 138, 85, (162,336,0): 161, 141, 82, (162,337,0): 163, 143, 82, (162,338,0): 169, 145, 85, (162,339,0): 175, 146, 88, (162,340,0): 180, 147, 93, (162,341,0): 184, 149, 95, (162,342,0): 185, 149, 97, (162,343,0): 183, 150, 97, (162,344,0): 185, 152, 99, (162,345,0): 187, 154, 100, (162,346,0): 190, 158, 101, (162,347,0): 196, 161, 103, (162,348,0): 203, 165, 103, (162,349,0): 209, 168, 106, (162,350,0): 215, 169, 107, (162,351,0): 219, 171, 107, (162,352,0): 215, 170, 102, (162,353,0): 217, 173, 102, (162,354,0): 221, 174, 104, (162,355,0): 226, 176, 105, (162,356,0): 232, 179, 109, (162,357,0): 238, 181, 110, (162,358,0): 242, 182, 110, (162,359,0): 246, 184, 111, (162,360,0): 247, 183, 111, (162,361,0): 251, 185, 111, (162,362,0): 254, 188, 112, (162,363,0): 255, 191, 113, (162,364,0): 255, 192, 113, (162,365,0): 254, 191, 112, (162,366,0): 251, 188, 109, (162,367,0): 245, 188, 107, (162,368,0): 238, 190, 106, (162,369,0): 236, 191, 106, (162,370,0): 235, 190, 109, (162,371,0): 231, 188, 109, (162,372,0): 228, 185, 107, (162,373,0): 223, 181, 105, (162,374,0): 220, 178, 106, (162,375,0): 216, 176, 104, (162,376,0): 213, 174, 105, (162,377,0): 212, 175, 105, (162,378,0): 212, 175, 105, (162,379,0): 211, 177, 106, (162,380,0): 212, 178, 106, (162,381,0): 211, 179, 106, (162,382,0): 212, 180, 107, (162,383,0): 210, 180, 107, (162,384,0): 206, 178, 105, (162,385,0): 206, 180, 105, (162,386,0): 208, 182, 107, (162,387,0): 211, 185, 108, (162,388,0): 215, 190, 110, (162,389,0): 218, 193, 111, (162,390,0): 220, 195, 113, (162,391,0): 221, 197, 111, (162,392,0): 224, 200, 112, (162,393,0): 224, 200, 110, (162,394,0): 226, 203, 110, (162,395,0): 230, 207, 113, (162,396,0): 234, 211, 115, (162,397,0): 236, 213, 117, (162,398,0): 234, 212, 113, (162,399,0): 233, 209, 111, (162,400,0): 239, 211, 112, (162,401,0): 241, 211, 113, (162,402,0): 243, 213, 115, (162,403,0): 246, 216, 118, (162,404,0): 249, 219, 121, (162,405,0): 250, 222, 122, (162,406,0): 252, 224, 124, (162,407,0): 251, 226, 123, (162,408,0): 252, 227, 124, (162,409,0): 253, 228, 125, (162,410,0): 254, 229, 126, (162,411,0): 254, 231, 125, (162,412,0): 255, 232, 126, (162,413,0): 254, 233, 124, (162,414,0): 253, 232, 123, (162,415,0): 251, 233, 125, (162,416,0): 246, 229, 123, (162,417,0): 245, 231, 126, (162,418,0): 246, 232, 125, (162,419,0): 247, 233, 124, (162,420,0): 247, 233, 124, (162,421,0): 246, 233, 121, (162,422,0): 245, 232, 120, (162,423,0): 244, 231, 119, (162,424,0): 242, 228, 119, (162,425,0): 243, 229, 120, (162,426,0): 244, 230, 123, (162,427,0): 243, 229, 124, (162,428,0): 238, 223, 122, (162,429,0): 231, 216, 115, (162,430,0): 224, 208, 110, (162,431,0): 219, 205, 108, (162,432,0): 209, 198, 106, (162,433,0): 206, 197, 106, (162,434,0): 203, 194, 103, (162,435,0): 201, 194, 104, (162,436,0): 201, 196, 105, (162,437,0): 201, 196, 105, (162,438,0): 198, 192, 104, (162,439,0): 196, 190, 102, (162,440,0): 200, 193, 105, (162,441,0): 195, 188, 100, (162,442,0): 193, 181, 97, (162,443,0): 193, 178, 95, (162,444,0): 197, 179, 97, (162,445,0): 203, 182, 101, (162,446,0): 207, 184, 106, (162,447,0): 210, 185, 105, (162,448,0): 208, 182, 98, (162,449,0): 211, 185, 101, (162,450,0): 213, 187, 103, (162,451,0): 212, 187, 103, (162,452,0): 209, 187, 102, (162,453,0): 208, 187, 104, (162,454,0): 210, 189, 106, (162,455,0): 211, 193, 111, (162,456,0): 211, 193, 111, (162,457,0): 211, 193, 111, (162,458,0): 213, 190, 110, (162,459,0): 213, 190, 112, (162,460,0): 216, 190, 113, (162,461,0): 217, 191, 114, (162,462,0): 220, 190, 117, (162,463,0): 220, 193, 116, (162,464,0): 214, 191, 111, (162,465,0): 210, 192, 108, (162,466,0): 208, 190, 108, (162,467,0): 204, 187, 105, (162,468,0): 201, 184, 106, (162,469,0): 194, 181, 103, (162,470,0): 191, 179, 103, (162,471,0): 187, 179, 106, (162,472,0): 182, 175, 103, (162,473,0): 179, 174, 106, (162,474,0): 178, 175, 108, (162,475,0): 176, 175, 110, (162,476,0): 175, 175, 113, (162,477,0): 176, 178, 115, (162,478,0): 176, 180, 119, (162,479,0): 177, 181, 120, (162,480,0): 175, 179, 118, (162,481,0): 174, 178, 117, (162,482,0): 173, 179, 119, (162,483,0): 174, 180, 120, (162,484,0): 174, 179, 121, (162,485,0): 170, 175, 119, (162,486,0): 163, 168, 114, (162,487,0): 158, 162, 111, (162,488,0): 150, 157, 106, (162,489,0): 147, 153, 105, (162,490,0): 143, 149, 103, (162,491,0): 141, 147, 103, (162,492,0): 137, 142, 101, (162,493,0): 132, 137, 97, (162,494,0): 124, 129, 89, (162,495,0): 118, 122, 85, (162,496,0): 115, 121, 87, (162,497,0): 115, 120, 88, (162,498,0): 115, 120, 88, (162,499,0): 114, 119, 87, (162,500,0): 113, 116, 87, (162,501,0): 111, 114, 85, (162,502,0): 108, 111, 84, (162,503,0): 107, 110, 83, (162,504,0): 105, 105, 79, (162,505,0): 104, 104, 78, (162,506,0): 103, 101, 78, (162,507,0): 102, 100, 77, (162,508,0): 101, 99, 78, (162,509,0): 103, 101, 80, (162,510,0): 106, 101, 81, (162,511,0): 106, 104, 83, (162,512,0): 98, 100, 76, (162,513,0): 97, 101, 76, (162,514,0): 99, 101, 77, (162,515,0): 100, 102, 78, (162,516,0): 102, 102, 78, (162,517,0): 103, 103, 79, (162,518,0): 105, 103, 80, (162,519,0): 105, 103, 80, (162,520,0): 111, 106, 86, (162,521,0): 111, 106, 86, (162,522,0): 112, 105, 86, (162,523,0): 112, 105, 86, (162,524,0): 112, 104, 85, (162,525,0): 110, 102, 83, (162,526,0): 109, 100, 83, (162,527,0): 110, 99, 81, (162,528,0): 107, 96, 76, (162,529,0): 109, 98, 76, (162,530,0): 115, 103, 81, (162,531,0): 118, 107, 85, (162,532,0): 122, 110, 88, (162,533,0): 122, 111, 89, (162,534,0): 123, 111, 89, (162,535,0): 122, 111, 89, (162,536,0): 119, 107, 85, (162,537,0): 115, 104, 82, (162,538,0): 113, 101, 79, (162,539,0): 111, 100, 78, (162,540,0): 111, 99, 77, (162,541,0): 107, 96, 74, (162,542,0): 104, 92, 70, (162,543,0): 99, 88, 66, (162,544,0): 95, 84, 64, (162,545,0): 92, 84, 63, (162,546,0): 90, 82, 63, (162,547,0): 88, 80, 61, (162,548,0): 87, 79, 60, (162,549,0): 86, 78, 59, (162,550,0): 86, 77, 60, (162,551,0): 87, 78, 61, (162,552,0): 88, 79, 64, (162,553,0): 86, 77, 62, (162,554,0): 84, 75, 60, (162,555,0): 82, 73, 58, (162,556,0): 80, 70, 58, (162,557,0): 80, 70, 58, (162,558,0): 80, 70, 58, (162,559,0): 79, 71, 58, (162,560,0): 83, 79, 67, (162,561,0): 83, 81, 68, (162,562,0): 85, 83, 71, (162,563,0): 88, 86, 74, (162,564,0): 89, 89, 77, (162,565,0): 90, 92, 79, (162,566,0): 92, 94, 83, (162,567,0): 92, 95, 84, (162,568,0): 90, 96, 86, (162,569,0): 90, 98, 87, (162,570,0): 93, 101, 90, (162,571,0): 92, 102, 91, (162,572,0): 92, 104, 94, (162,573,0): 91, 103, 93, (162,574,0): 90, 102, 92, (162,575,0): 90, 100, 91, (162,576,0): 88, 94, 84, (162,577,0): 90, 93, 84, (162,578,0): 92, 93, 85, (162,579,0): 91, 92, 84, (162,580,0): 89, 89, 81, (162,581,0): 86, 86, 78, (162,582,0): 84, 81, 76, (162,583,0): 83, 78, 74, (162,584,0): 87, 79, 76, (162,585,0): 87, 79, 76, (162,586,0): 87, 77, 75, (162,587,0): 87, 77, 75, (162,588,0): 87, 75, 75, (162,589,0): 86, 74, 74, (162,590,0): 88, 74, 74, (162,591,0): 88, 74, 73, (162,592,0): 87, 73, 70, (162,593,0): 88, 75, 69, (162,594,0): 89, 76, 70, (162,595,0): 89, 76, 70, (162,596,0): 88, 75, 69, (162,597,0): 86, 73, 67, (162,598,0): 83, 70, 64, (162,599,0): 81, 68, 62, (163,0,0): 40, 28, 42, (163,1,0): 39, 27, 41, (163,2,0): 38, 26, 40, (163,3,0): 37, 25, 39, (163,4,0): 37, 25, 39, (163,5,0): 38, 26, 40, (163,6,0): 39, 27, 41, (163,7,0): 40, 28, 42, (163,8,0): 39, 27, 41, (163,9,0): 39, 27, 41, (163,10,0): 40, 28, 42, (163,11,0): 40, 28, 42, (163,12,0): 41, 29, 43, (163,13,0): 41, 29, 43, (163,14,0): 42, 30, 44, (163,15,0): 42, 30, 44, (163,16,0): 43, 26, 45, (163,17,0): 43, 26, 45, (163,18,0): 41, 27, 44, (163,19,0): 41, 27, 44, (163,20,0): 41, 28, 45, (163,21,0): 41, 28, 45, (163,22,0): 40, 29, 43, (163,23,0): 40, 29, 43, (163,24,0): 39, 27, 39, (163,25,0): 39, 27, 39, (163,26,0): 43, 27, 40, (163,27,0): 44, 28, 41, (163,28,0): 48, 28, 40, (163,29,0): 49, 29, 41, (163,30,0): 52, 28, 42, (163,31,0): 51, 29, 42, (163,32,0): 49, 33, 43, (163,33,0): 47, 34, 43, (163,34,0): 50, 34, 44, (163,35,0): 51, 34, 44, (163,36,0): 54, 34, 43, (163,37,0): 55, 34, 43, (163,38,0): 56, 33, 41, (163,39,0): 59, 33, 42, (163,40,0): 63, 36, 45, (163,41,0): 67, 36, 44, (163,42,0): 70, 37, 46, (163,43,0): 74, 38, 48, (163,44,0): 78, 41, 49, (163,45,0): 82, 42, 51, (163,46,0): 84, 44, 53, (163,47,0): 86, 44, 54, (163,48,0): 85, 42, 51, (163,49,0): 87, 41, 51, (163,50,0): 88, 41, 51, (163,51,0): 91, 41, 52, (163,52,0): 91, 41, 52, (163,53,0): 93, 41, 53, (163,54,0): 94, 40, 53, (163,55,0): 94, 40, 53, (163,56,0): 93, 39, 52, (163,57,0): 93, 39, 52, (163,58,0): 91, 39, 51, (163,59,0): 90, 40, 51, (163,60,0): 89, 39, 50, (163,61,0): 86, 39, 49, (163,62,0): 85, 39, 49, (163,63,0): 82, 39, 48, (163,64,0): 76, 36, 44, (163,65,0): 74, 37, 44, (163,66,0): 76, 36, 44, (163,67,0): 76, 36, 44, (163,68,0): 76, 36, 44, (163,69,0): 76, 36, 44, (163,70,0): 77, 37, 45, (163,71,0): 77, 37, 45, (163,72,0): 80, 40, 48, (163,73,0): 79, 39, 47, (163,74,0): 78, 38, 46, (163,75,0): 76, 36, 44, (163,76,0): 76, 35, 43, (163,77,0): 74, 33, 41, (163,78,0): 73, 32, 40, (163,79,0): 71, 31, 39, (163,80,0): 69, 32, 40, (163,81,0): 69, 32, 40, (163,82,0): 70, 33, 41, (163,83,0): 70, 33, 41, (163,84,0): 71, 34, 42, (163,85,0): 71, 34, 42, (163,86,0): 72, 35, 43, (163,87,0): 72, 35, 43, (163,88,0): 73, 36, 44, (163,89,0): 73, 36, 44, (163,90,0): 73, 36, 44, (163,91,0): 72, 35, 43, (163,92,0): 71, 34, 42, (163,93,0): 71, 34, 42, (163,94,0): 71, 34, 42, (163,95,0): 70, 33, 40, (163,96,0): 72, 32, 40, (163,97,0): 72, 33, 38, (163,98,0): 68, 31, 38, (163,99,0): 65, 30, 36, (163,100,0): 62, 27, 34, (163,101,0): 56, 25, 31, (163,102,0): 51, 21, 29, (163,103,0): 46, 21, 27, (163,104,0): 40, 17, 27, (163,105,0): 37, 17, 26, (163,106,0): 34, 17, 27, (163,107,0): 32, 16, 26, (163,108,0): 30, 17, 27, (163,109,0): 29, 17, 27, (163,110,0): 29, 19, 30, (163,111,0): 31, 19, 31, (163,112,0): 30, 17, 27, (163,113,0): 32, 16, 27, (163,114,0): 31, 15, 26, (163,115,0): 31, 15, 26, (163,116,0): 30, 14, 25, (163,117,0): 30, 14, 25, (163,118,0): 29, 13, 24, (163,119,0): 29, 13, 24, (163,120,0): 27, 11, 22, (163,121,0): 27, 11, 22, (163,122,0): 28, 12, 23, (163,123,0): 30, 14, 25, (163,124,0): 31, 15, 26, (163,125,0): 32, 16, 27, (163,126,0): 33, 17, 28, (163,127,0): 34, 18, 29, (163,128,0): 33, 15, 29, (163,129,0): 33, 15, 29, (163,130,0): 33, 15, 27, (163,131,0): 34, 16, 28, (163,132,0): 35, 17, 29, (163,133,0): 35, 17, 29, (163,134,0): 35, 18, 28, (163,135,0): 36, 19, 29, (163,136,0): 35, 18, 26, (163,137,0): 35, 18, 26, (163,138,0): 36, 19, 27, (163,139,0): 37, 20, 28, (163,140,0): 38, 21, 27, (163,141,0): 39, 22, 28, (163,142,0): 40, 23, 29, (163,143,0): 42, 23, 27, (163,144,0): 44, 24, 26, (163,145,0): 45, 23, 25, (163,146,0): 46, 24, 26, (163,147,0): 47, 25, 27, (163,148,0): 48, 26, 28, (163,149,0): 49, 27, 29, (163,150,0): 50, 28, 30, (163,151,0): 50, 28, 30, (163,152,0): 51, 29, 31, (163,153,0): 51, 29, 31, (163,154,0): 51, 29, 31, (163,155,0): 51, 29, 31, (163,156,0): 51, 29, 31, (163,157,0): 51, 29, 31, (163,158,0): 51, 29, 31, (163,159,0): 51, 30, 29, (163,160,0): 50, 29, 28, (163,161,0): 50, 29, 26, (163,162,0): 50, 29, 26, (163,163,0): 50, 29, 26, (163,164,0): 50, 29, 26, (163,165,0): 50, 29, 26, (163,166,0): 50, 29, 26, (163,167,0): 50, 29, 26, (163,168,0): 48, 27, 24, (163,169,0): 48, 27, 24, (163,170,0): 48, 27, 24, (163,171,0): 47, 26, 23, (163,172,0): 46, 25, 22, (163,173,0): 46, 25, 22, (163,174,0): 46, 25, 22, (163,175,0): 45, 24, 21, (163,176,0): 48, 27, 24, (163,177,0): 48, 27, 24, (163,178,0): 48, 27, 24, (163,179,0): 47, 26, 23, (163,180,0): 47, 26, 23, (163,181,0): 46, 25, 22, (163,182,0): 46, 25, 22, (163,183,0): 46, 25, 22, (163,184,0): 44, 23, 20, (163,185,0): 44, 23, 20, (163,186,0): 44, 23, 20, (163,187,0): 44, 23, 20, (163,188,0): 44, 23, 20, (163,189,0): 44, 23, 20, (163,190,0): 44, 23, 20, (163,191,0): 44, 23, 20, (163,192,0): 45, 26, 22, (163,193,0): 44, 26, 22, (163,194,0): 45, 26, 22, (163,195,0): 45, 26, 22, (163,196,0): 44, 25, 21, (163,197,0): 44, 25, 21, (163,198,0): 45, 24, 21, (163,199,0): 45, 24, 21, (163,200,0): 46, 22, 20, (163,201,0): 46, 22, 20, (163,202,0): 46, 22, 20, (163,203,0): 46, 22, 20, (163,204,0): 47, 21, 20, (163,205,0): 47, 21, 20, (163,206,0): 48, 22, 21, (163,207,0): 48, 22, 21, (163,208,0): 48, 23, 19, (163,209,0): 49, 24, 20, (163,210,0): 50, 25, 20, (163,211,0): 51, 26, 21, (163,212,0): 52, 27, 22, (163,213,0): 52, 27, 22, (163,214,0): 51, 26, 19, (163,215,0): 50, 25, 18, (163,216,0): 49, 25, 15, (163,217,0): 49, 25, 15, (163,218,0): 49, 25, 15, (163,219,0): 49, 25, 15, (163,220,0): 48, 24, 12, (163,221,0): 48, 24, 12, (163,222,0): 48, 24, 12, (163,223,0): 48, 24, 12, (163,224,0): 50, 25, 18, (163,225,0): 50, 25, 18, (163,226,0): 51, 26, 19, (163,227,0): 51, 26, 19, (163,228,0): 54, 27, 18, (163,229,0): 54, 27, 18, (163,230,0): 55, 28, 19, (163,231,0): 55, 28, 19, (163,232,0): 57, 29, 18, (163,233,0): 57, 29, 18, (163,234,0): 58, 28, 17, (163,235,0): 57, 27, 16, (163,236,0): 56, 26, 15, (163,237,0): 56, 26, 15, (163,238,0): 58, 26, 13, (163,239,0): 55, 26, 12, (163,240,0): 52, 24, 12, (163,241,0): 53, 25, 13, (163,242,0): 54, 26, 14, (163,243,0): 56, 28, 16, (163,244,0): 57, 29, 17, (163,245,0): 58, 30, 18, (163,246,0): 60, 32, 20, (163,247,0): 60, 32, 20, (163,248,0): 58, 30, 18, (163,249,0): 59, 31, 19, (163,250,0): 59, 31, 19, (163,251,0): 61, 33, 21, (163,252,0): 62, 34, 22, (163,253,0): 63, 35, 23, (163,254,0): 63, 35, 23, (163,255,0): 64, 36, 24, (163,256,0): 64, 36, 25, (163,257,0): 63, 35, 24, (163,258,0): 63, 35, 24, (163,259,0): 63, 35, 24, (163,260,0): 62, 33, 25, (163,261,0): 61, 32, 24, (163,262,0): 61, 32, 24, (163,263,0): 61, 32, 24, (163,264,0): 61, 32, 26, (163,265,0): 61, 32, 26, (163,266,0): 61, 32, 28, (163,267,0): 62, 33, 29, (163,268,0): 62, 33, 29, (163,269,0): 63, 34, 30, (163,270,0): 63, 33, 31, (163,271,0): 63, 33, 31, (163,272,0): 66, 35, 32, (163,273,0): 67, 36, 31, (163,274,0): 67, 36, 31, (163,275,0): 68, 37, 32, (163,276,0): 70, 40, 32, (163,277,0): 71, 41, 33, (163,278,0): 71, 41, 31, (163,279,0): 72, 42, 31, (163,280,0): 77, 48, 34, (163,281,0): 77, 48, 34, (163,282,0): 78, 49, 33, (163,283,0): 79, 50, 32, (163,284,0): 80, 51, 33, (163,285,0): 81, 53, 32, (163,286,0): 82, 54, 33, (163,287,0): 82, 54, 33, (163,288,0): 80, 53, 32, (163,289,0): 81, 54, 33, (163,290,0): 81, 54, 33, (163,291,0): 82, 55, 34, (163,292,0): 84, 57, 36, (163,293,0): 85, 58, 37, (163,294,0): 85, 58, 37, (163,295,0): 86, 59, 38, (163,296,0): 89, 62, 41, (163,297,0): 89, 62, 41, (163,298,0): 90, 63, 42, (163,299,0): 90, 63, 42, (163,300,0): 91, 64, 43, (163,301,0): 91, 64, 43, (163,302,0): 92, 65, 44, (163,303,0): 92, 65, 44, (163,304,0): 92, 67, 45, (163,305,0): 94, 70, 46, (163,306,0): 98, 72, 47, (163,307,0): 101, 76, 46, (163,308,0): 105, 80, 49, (163,309,0): 109, 85, 51, (163,310,0): 113, 87, 54, (163,311,0): 114, 88, 53, (163,312,0): 122, 94, 55, (163,313,0): 129, 102, 59, (163,314,0): 136, 110, 61, (163,315,0): 145, 120, 63, (163,316,0): 163, 138, 71, (163,317,0): 182, 159, 83, (163,318,0): 192, 170, 85, (163,319,0): 191, 170, 87, (163,320,0): 180, 161, 85, (163,321,0): 176, 158, 86, (163,322,0): 170, 153, 84, (163,323,0): 168, 150, 84, (163,324,0): 165, 150, 85, (163,325,0): 163, 147, 87, (163,326,0): 158, 143, 84, (163,327,0): 155, 140, 83, (163,328,0): 156, 139, 85, (163,329,0): 158, 141, 89, (163,330,0): 163, 141, 91, (163,331,0): 165, 143, 93, (163,332,0): 168, 142, 93, (163,333,0): 167, 141, 90, (163,334,0): 168, 138, 88, (163,335,0): 165, 138, 85, (163,336,0): 162, 142, 83, (163,337,0): 164, 144, 83, (163,338,0): 169, 145, 85, (163,339,0): 175, 146, 88, (163,340,0): 179, 146, 92, (163,341,0): 184, 149, 95, (163,342,0): 185, 150, 96, (163,343,0): 186, 151, 97, (163,344,0): 186, 151, 97, (163,345,0): 188, 153, 97, (163,346,0): 192, 157, 99, (163,347,0): 200, 162, 100, (163,348,0): 207, 166, 104, (163,349,0): 215, 170, 105, (163,350,0): 222, 172, 109, (163,351,0): 225, 174, 108, (163,352,0): 226, 176, 105, (163,353,0): 228, 178, 105, (163,354,0): 232, 179, 109, (163,355,0): 235, 181, 109, (163,356,0): 240, 183, 112, (163,357,0): 244, 186, 113, (163,358,0): 247, 187, 114, (163,359,0): 250, 188, 113, (163,360,0): 251, 189, 114, (163,361,0): 253, 191, 114, (163,362,0): 255, 194, 114, (163,363,0): 254, 196, 114, (163,364,0): 254, 196, 114, (163,365,0): 251, 195, 110, (163,366,0): 248, 192, 109, (163,367,0): 243, 191, 107, (163,368,0): 237, 191, 106, (163,369,0): 233, 191, 105, (163,370,0): 232, 190, 108, (163,371,0): 228, 187, 107, (163,372,0): 225, 184, 105, (163,373,0): 219, 180, 103, (163,374,0): 215, 175, 103, (163,375,0): 212, 174, 101, (163,376,0): 209, 172, 102, (163,377,0): 207, 173, 102, (163,378,0): 208, 174, 103, (163,379,0): 208, 175, 104, (163,380,0): 208, 176, 103, (163,381,0): 207, 177, 104, (163,382,0): 208, 178, 105, (163,383,0): 207, 179, 105, (163,384,0): 204, 178, 104, (163,385,0): 205, 179, 105, (163,386,0): 207, 181, 106, (163,387,0): 210, 184, 109, (163,388,0): 213, 187, 110, (163,389,0): 215, 190, 110, (163,390,0): 217, 192, 110, (163,391,0): 219, 194, 110, (163,392,0): 220, 196, 110, (163,393,0): 222, 198, 108, (163,394,0): 226, 202, 112, (163,395,0): 230, 207, 114, (163,396,0): 233, 210, 116, (163,397,0): 233, 210, 114, (163,398,0): 231, 208, 112, (163,399,0): 231, 207, 109, (163,400,0): 237, 209, 110, (163,401,0): 239, 211, 112, (163,402,0): 242, 212, 114, (163,403,0): 244, 216, 116, (163,404,0): 247, 219, 119, (163,405,0): 247, 222, 119, (163,406,0): 248, 223, 120, (163,407,0): 249, 224, 121, (163,408,0): 251, 226, 123, (163,409,0): 251, 228, 122, (163,410,0): 253, 230, 124, (163,411,0): 253, 232, 123, (163,412,0): 254, 233, 124, (163,413,0): 254, 233, 124, (163,414,0): 254, 233, 124, (163,415,0): 252, 234, 124, (163,416,0): 247, 230, 122, (163,417,0): 245, 231, 122, (163,418,0): 246, 232, 123, (163,419,0): 246, 233, 121, (163,420,0): 246, 233, 121, (163,421,0): 244, 231, 119, (163,422,0): 243, 230, 118, (163,423,0): 242, 229, 117, (163,424,0): 244, 230, 121, (163,425,0): 245, 231, 124, (163,426,0): 246, 232, 127, (163,427,0): 244, 229, 126, (163,428,0): 237, 221, 123, (163,429,0): 228, 212, 116, (163,430,0): 219, 203, 107, (163,431,0): 212, 197, 104, (163,432,0): 203, 192, 103, (163,433,0): 197, 190, 102, (163,434,0): 195, 188, 100, (163,435,0): 194, 188, 100, (163,436,0): 196, 190, 102, (163,437,0): 198, 192, 104, (163,438,0): 197, 191, 103, (163,439,0): 195, 189, 101, (163,440,0): 200, 193, 105, (163,441,0): 200, 190, 103, (163,442,0): 199, 184, 101, (163,443,0): 199, 182, 100, (163,444,0): 203, 182, 101, (163,445,0): 207, 184, 104, (163,446,0): 213, 188, 108, (163,447,0): 216, 189, 108, (163,448,0): 215, 189, 105, (163,449,0): 217, 191, 106, (163,450,0): 218, 194, 108, (163,451,0): 218, 194, 108, (163,452,0): 214, 192, 106, (163,453,0): 212, 192, 106, (163,454,0): 212, 194, 108, (163,455,0): 214, 196, 112, (163,456,0): 214, 196, 112, (163,457,0): 214, 196, 112, (163,458,0): 216, 195, 112, (163,459,0): 217, 194, 114, (163,460,0): 220, 195, 115, (163,461,0): 221, 196, 116, (163,462,0): 223, 196, 119, (163,463,0): 222, 197, 117, (163,464,0): 216, 195, 114, (163,465,0): 212, 196, 111, (163,466,0): 211, 194, 112, (163,467,0): 207, 192, 111, (163,468,0): 204, 188, 110, (163,469,0): 198, 185, 107, (163,470,0): 192, 183, 108, (163,471,0): 189, 181, 108, (163,472,0): 180, 176, 105, (163,473,0): 179, 176, 107, (163,474,0): 176, 175, 108, (163,475,0): 175, 175, 111, (163,476,0): 175, 177, 114, (163,477,0): 174, 179, 115, (163,478,0): 175, 179, 118, (163,479,0): 176, 180, 119, (163,480,0): 175, 179, 118, (163,481,0): 173, 179, 117, (163,482,0): 173, 179, 119, (163,483,0): 175, 181, 121, (163,484,0): 175, 180, 122, (163,485,0): 172, 177, 121, (163,486,0): 166, 170, 119, (163,487,0): 160, 164, 114, (163,488,0): 150, 156, 108, (163,489,0): 147, 153, 107, (163,490,0): 143, 149, 105, (163,491,0): 139, 144, 103, (163,492,0): 136, 141, 101, (163,493,0): 130, 135, 95, (163,494,0): 123, 128, 88, (163,495,0): 117, 121, 84, (163,496,0): 115, 121, 87, (163,497,0): 115, 120, 88, (163,498,0): 115, 120, 88, (163,499,0): 115, 120, 88, (163,500,0): 114, 117, 88, (163,501,0): 112, 115, 86, (163,502,0): 110, 113, 86, (163,503,0): 109, 112, 85, (163,504,0): 106, 106, 80, (163,505,0): 104, 104, 78, (163,506,0): 101, 99, 76, (163,507,0): 99, 97, 74, (163,508,0): 98, 96, 75, (163,509,0): 99, 97, 76, (163,510,0): 103, 98, 78, (163,511,0): 103, 101, 80, (163,512,0): 97, 99, 75, (163,513,0): 97, 101, 76, (163,514,0): 98, 100, 76, (163,515,0): 99, 101, 77, (163,516,0): 102, 102, 78, (163,517,0): 103, 103, 79, (163,518,0): 105, 103, 80, (163,519,0): 106, 104, 81, (163,520,0): 110, 105, 85, (163,521,0): 110, 105, 85, (163,522,0): 111, 104, 85, (163,523,0): 110, 103, 84, (163,524,0): 111, 103, 84, (163,525,0): 110, 102, 83, (163,526,0): 109, 100, 83, (163,527,0): 108, 100, 81, (163,528,0): 107, 99, 78, (163,529,0): 110, 102, 79, (163,530,0): 115, 104, 82, (163,531,0): 117, 109, 86, (163,532,0): 122, 111, 89, (163,533,0): 122, 114, 91, (163,534,0): 125, 114, 92, (163,535,0): 123, 115, 92, (163,536,0): 123, 112, 90, (163,537,0): 117, 109, 86, (163,538,0): 115, 104, 82, (163,539,0): 111, 103, 80, (163,540,0): 111, 100, 78, (163,541,0): 106, 98, 75, (163,542,0): 103, 92, 70, (163,543,0): 97, 89, 66, (163,544,0): 94, 86, 65, (163,545,0): 93, 85, 64, (163,546,0): 91, 83, 64, (163,547,0): 89, 81, 62, (163,548,0): 88, 80, 61, (163,549,0): 88, 80, 61, (163,550,0): 89, 80, 63, (163,551,0): 89, 80, 63, (163,552,0): 89, 80, 65, (163,553,0): 88, 79, 64, (163,554,0): 86, 77, 62, (163,555,0): 84, 75, 60, (163,556,0): 83, 73, 61, (163,557,0): 83, 73, 61, (163,558,0): 84, 74, 62, (163,559,0): 83, 75, 62, (163,560,0): 86, 82, 70, (163,561,0): 86, 84, 71, (163,562,0): 88, 86, 74, (163,563,0): 88, 88, 76, (163,564,0): 91, 91, 79, (163,565,0): 92, 94, 81, (163,566,0): 93, 96, 85, (163,567,0): 94, 97, 86, (163,568,0): 93, 99, 89, (163,569,0): 94, 102, 91, (163,570,0): 96, 106, 95, (163,571,0): 99, 109, 98, (163,572,0): 99, 111, 101, (163,573,0): 97, 109, 99, (163,574,0): 95, 107, 97, (163,575,0): 95, 105, 96, (163,576,0): 91, 96, 89, (163,577,0): 94, 97, 88, (163,578,0): 96, 97, 91, (163,579,0): 95, 96, 88, (163,580,0): 93, 92, 87, (163,581,0): 89, 88, 83, (163,582,0): 86, 83, 78, (163,583,0): 82, 79, 74, (163,584,0): 85, 80, 76, (163,585,0): 87, 79, 76, (163,586,0): 87, 77, 75, (163,587,0): 86, 76, 74, (163,588,0): 86, 74, 74, (163,589,0): 85, 73, 73, (163,590,0): 87, 73, 73, (163,591,0): 86, 72, 71, (163,592,0): 84, 70, 67, (163,593,0): 85, 72, 66, (163,594,0): 87, 74, 68, (163,595,0): 88, 75, 69, (163,596,0): 87, 74, 68, (163,597,0): 86, 73, 67, (163,598,0): 85, 72, 66, (163,599,0): 84, 71, 65, (164,0,0): 41, 29, 43, (164,1,0): 40, 28, 42, (164,2,0): 39, 27, 41, (164,3,0): 38, 26, 40, (164,4,0): 38, 26, 40, (164,5,0): 39, 27, 41, (164,6,0): 40, 28, 42, (164,7,0): 41, 29, 43, (164,8,0): 39, 27, 41, (164,9,0): 39, 27, 41, (164,10,0): 40, 28, 42, (164,11,0): 40, 28, 42, (164,12,0): 41, 29, 43, (164,13,0): 41, 29, 43, (164,14,0): 42, 30, 44, (164,15,0): 42, 30, 44, (164,16,0): 44, 27, 46, (164,17,0): 44, 27, 46, (164,18,0): 42, 28, 45, (164,19,0): 42, 28, 45, (164,20,0): 40, 27, 44, (164,21,0): 40, 27, 44, (164,22,0): 39, 28, 42, (164,23,0): 39, 28, 42, (164,24,0): 40, 28, 40, (164,25,0): 40, 28, 40, (164,26,0): 44, 28, 41, (164,27,0): 45, 29, 42, (164,28,0): 49, 29, 41, (164,29,0): 50, 30, 42, (164,30,0): 53, 29, 43, (164,31,0): 52, 30, 43, (164,32,0): 52, 32, 43, (164,33,0): 52, 32, 41, (164,34,0): 54, 33, 42, (164,35,0): 55, 34, 43, (164,36,0): 58, 35, 45, (164,37,0): 61, 35, 46, (164,38,0): 63, 36, 45, (164,39,0): 65, 35, 45, (164,40,0): 69, 38, 46, (164,41,0): 73, 37, 47, (164,42,0): 76, 38, 49, (164,43,0): 80, 40, 49, (164,44,0): 82, 42, 51, (164,45,0): 85, 43, 53, (164,46,0): 87, 45, 55, (164,47,0): 89, 46, 56, (164,48,0): 87, 41, 51, (164,49,0): 88, 41, 51, (164,50,0): 89, 42, 52, (164,51,0): 91, 41, 52, (164,52,0): 93, 41, 53, (164,53,0): 94, 40, 53, (164,54,0): 95, 41, 54, (164,55,0): 97, 41, 54, (164,56,0): 95, 39, 52, (164,57,0): 93, 39, 52, (164,58,0): 93, 39, 52, (164,59,0): 92, 40, 52, (164,60,0): 90, 40, 51, (164,61,0): 88, 41, 51, (164,62,0): 88, 41, 51, (164,63,0): 86, 40, 50, (164,64,0): 80, 37, 46, (164,65,0): 80, 37, 46, (164,66,0): 79, 38, 46, (164,67,0): 79, 38, 46, (164,68,0): 79, 38, 46, (164,69,0): 79, 38, 46, (164,70,0): 78, 37, 45, (164,71,0): 78, 37, 45, (164,72,0): 81, 40, 48, (164,73,0): 80, 39, 47, (164,74,0): 79, 38, 46, (164,75,0): 77, 36, 44, (164,76,0): 75, 35, 43, (164,77,0): 73, 33, 41, (164,78,0): 72, 32, 40, (164,79,0): 71, 31, 39, (164,80,0): 69, 32, 40, (164,81,0): 69, 32, 40, (164,82,0): 70, 33, 41, (164,83,0): 70, 33, 41, (164,84,0): 71, 34, 42, (164,85,0): 71, 34, 42, (164,86,0): 72, 35, 43, (164,87,0): 72, 35, 43, (164,88,0): 74, 37, 45, (164,89,0): 73, 36, 44, (164,90,0): 73, 36, 44, (164,91,0): 73, 36, 44, (164,92,0): 72, 35, 43, (164,93,0): 71, 34, 42, (164,94,0): 71, 34, 42, (164,95,0): 71, 34, 41, (164,96,0): 72, 32, 40, (164,97,0): 72, 33, 38, (164,98,0): 68, 31, 38, (164,99,0): 65, 30, 36, (164,100,0): 61, 26, 33, (164,101,0): 54, 23, 29, (164,102,0): 50, 20, 28, (164,103,0): 45, 20, 26, (164,104,0): 40, 17, 27, (164,105,0): 37, 17, 26, (164,106,0): 34, 17, 27, (164,107,0): 32, 16, 26, (164,108,0): 29, 16, 26, (164,109,0): 29, 17, 27, (164,110,0): 29, 19, 30, (164,111,0): 30, 18, 30, (164,112,0): 29, 16, 26, (164,113,0): 31, 15, 26, (164,114,0): 31, 15, 26, (164,115,0): 30, 14, 25, (164,116,0): 30, 14, 25, (164,117,0): 29, 13, 24, (164,118,0): 29, 13, 24, (164,119,0): 29, 13, 24, (164,120,0): 26, 10, 21, (164,121,0): 27, 11, 22, (164,122,0): 28, 12, 23, (164,123,0): 29, 13, 24, (164,124,0): 30, 14, 25, (164,125,0): 32, 16, 27, (164,126,0): 33, 17, 28, (164,127,0): 33, 17, 28, (164,128,0): 32, 14, 28, (164,129,0): 33, 15, 29, (164,130,0): 33, 15, 27, (164,131,0): 33, 15, 27, (164,132,0): 34, 16, 28, (164,133,0): 35, 17, 29, (164,134,0): 35, 18, 28, (164,135,0): 35, 18, 28, (164,136,0): 34, 17, 25, (164,137,0): 34, 17, 25, (164,138,0): 35, 18, 26, (164,139,0): 36, 19, 27, (164,140,0): 37, 20, 26, (164,141,0): 38, 21, 27, (164,142,0): 39, 22, 28, (164,143,0): 41, 22, 26, (164,144,0): 43, 23, 25, (164,145,0): 44, 22, 24, (164,146,0): 45, 23, 25, (164,147,0): 46, 24, 26, (164,148,0): 47, 25, 27, (164,149,0): 48, 26, 28, (164,150,0): 49, 27, 29, (164,151,0): 49, 27, 29, (164,152,0): 51, 29, 31, (164,153,0): 51, 29, 31, (164,154,0): 51, 29, 31, (164,155,0): 51, 29, 31, (164,156,0): 51, 29, 31, (164,157,0): 51, 29, 31, (164,158,0): 51, 29, 31, (164,159,0): 51, 30, 29, (164,160,0): 50, 29, 28, (164,161,0): 50, 29, 26, (164,162,0): 50, 29, 26, (164,163,0): 50, 29, 26, (164,164,0): 50, 29, 26, (164,165,0): 50, 29, 26, (164,166,0): 50, 29, 26, (164,167,0): 50, 29, 26, (164,168,0): 49, 28, 25, (164,169,0): 48, 27, 24, (164,170,0): 48, 27, 24, (164,171,0): 48, 27, 24, (164,172,0): 47, 26, 23, (164,173,0): 46, 25, 22, (164,174,0): 46, 25, 22, (164,175,0): 46, 25, 22, (164,176,0): 49, 28, 25, (164,177,0): 49, 28, 25, (164,178,0): 48, 27, 24, (164,179,0): 47, 26, 23, (164,180,0): 47, 26, 23, (164,181,0): 46, 25, 22, (164,182,0): 45, 24, 21, (164,183,0): 45, 24, 21, (164,184,0): 44, 23, 20, (164,185,0): 44, 23, 20, (164,186,0): 44, 23, 20, (164,187,0): 44, 23, 20, (164,188,0): 44, 23, 20, (164,189,0): 44, 23, 20, (164,190,0): 44, 23, 20, (164,191,0): 44, 23, 20, (164,192,0): 44, 25, 21, (164,193,0): 44, 25, 21, (164,194,0): 44, 25, 21, (164,195,0): 44, 25, 21, (164,196,0): 46, 25, 22, (164,197,0): 46, 25, 22, (164,198,0): 48, 24, 22, (164,199,0): 48, 24, 22, (164,200,0): 47, 23, 21, (164,201,0): 47, 23, 21, (164,202,0): 47, 21, 20, (164,203,0): 47, 21, 20, (164,204,0): 49, 21, 20, (164,205,0): 49, 21, 20, (164,206,0): 49, 21, 20, (164,207,0): 49, 21, 20, (164,208,0): 47, 22, 18, (164,209,0): 48, 23, 19, (164,210,0): 49, 24, 19, (164,211,0): 51, 26, 21, (164,212,0): 51, 26, 21, (164,213,0): 51, 26, 21, (164,214,0): 50, 25, 18, (164,215,0): 50, 25, 18, (164,216,0): 48, 24, 14, (164,217,0): 48, 24, 14, (164,218,0): 48, 24, 14, (164,219,0): 48, 24, 14, (164,220,0): 49, 25, 13, (164,221,0): 49, 25, 13, (164,222,0): 49, 25, 13, (164,223,0): 49, 25, 13, (164,224,0): 50, 25, 18, (164,225,0): 50, 25, 18, (164,226,0): 51, 26, 19, (164,227,0): 51, 26, 19, (164,228,0): 54, 27, 18, (164,229,0): 54, 27, 18, (164,230,0): 55, 28, 19, (164,231,0): 55, 28, 19, (164,232,0): 58, 30, 19, (164,233,0): 57, 29, 18, (164,234,0): 58, 28, 17, (164,235,0): 58, 28, 17, (164,236,0): 57, 27, 16, (164,237,0): 56, 26, 15, (164,238,0): 58, 26, 13, (164,239,0): 56, 27, 13, (164,240,0): 53, 25, 13, (164,241,0): 52, 26, 13, (164,242,0): 53, 27, 14, (164,243,0): 54, 28, 15, (164,244,0): 55, 29, 16, (164,245,0): 56, 30, 17, (164,246,0): 57, 31, 18, (164,247,0): 58, 32, 19, (164,248,0): 56, 30, 17, (164,249,0): 57, 31, 18, (164,250,0): 57, 31, 18, (164,251,0): 58, 32, 19, (164,252,0): 59, 33, 20, (164,253,0): 61, 35, 22, (164,254,0): 61, 35, 22, (164,255,0): 62, 36, 23, (164,256,0): 63, 35, 24, (164,257,0): 63, 35, 24, (164,258,0): 63, 35, 24, (164,259,0): 62, 34, 23, (164,260,0): 61, 32, 24, (164,261,0): 61, 32, 24, (164,262,0): 61, 32, 24, (164,263,0): 60, 31, 23, (164,264,0): 61, 32, 26, (164,265,0): 61, 32, 26, (164,266,0): 61, 32, 28, (164,267,0): 62, 33, 29, (164,268,0): 62, 33, 29, (164,269,0): 63, 34, 30, (164,270,0): 63, 33, 31, (164,271,0): 63, 33, 31, (164,272,0): 66, 35, 32, (164,273,0): 67, 36, 33, (164,274,0): 67, 36, 31, (164,275,0): 68, 37, 32, (164,276,0): 70, 40, 32, (164,277,0): 71, 41, 33, (164,278,0): 71, 41, 31, (164,279,0): 72, 42, 31, (164,280,0): 77, 48, 34, (164,281,0): 77, 48, 34, (164,282,0): 78, 49, 33, (164,283,0): 79, 50, 32, (164,284,0): 80, 51, 33, (164,285,0): 81, 52, 34, (164,286,0): 82, 54, 33, (164,287,0): 82, 54, 33, (164,288,0): 80, 53, 32, (164,289,0): 80, 55, 33, (164,290,0): 80, 55, 33, (164,291,0): 81, 56, 34, (164,292,0): 83, 58, 36, (164,293,0): 84, 59, 37, (164,294,0): 84, 59, 37, (164,295,0): 85, 60, 38, (164,296,0): 88, 63, 41, (164,297,0): 88, 63, 41, (164,298,0): 89, 64, 42, (164,299,0): 89, 64, 42, (164,300,0): 90, 65, 43, (164,301,0): 90, 65, 43, (164,302,0): 91, 66, 44, (164,303,0): 91, 66, 44, (164,304,0): 91, 66, 44, (164,305,0): 93, 69, 45, (164,306,0): 95, 71, 45, (164,307,0): 99, 76, 45, (164,308,0): 104, 79, 48, (164,309,0): 107, 83, 49, (164,310,0): 110, 86, 52, (164,311,0): 111, 87, 51, (164,312,0): 114, 88, 51, (164,313,0): 121, 96, 55, (164,314,0): 132, 106, 57, (164,315,0): 142, 117, 60, (164,316,0): 159, 136, 69, (164,317,0): 178, 156, 81, (164,318,0): 188, 166, 83, (164,319,0): 186, 165, 82, (164,320,0): 178, 159, 83, (164,321,0): 174, 156, 84, (164,322,0): 169, 152, 83, (164,323,0): 167, 149, 83, (164,324,0): 165, 150, 85, (164,325,0): 163, 147, 87, (164,326,0): 159, 144, 85, (164,327,0): 156, 141, 84, (164,328,0): 156, 139, 85, (164,329,0): 157, 140, 86, (164,330,0): 162, 141, 88, (164,331,0): 164, 143, 90, (164,332,0): 168, 142, 91, (164,333,0): 167, 142, 88, (164,334,0): 169, 139, 87, (164,335,0): 167, 140, 85, (164,336,0): 164, 144, 85, (164,337,0): 165, 145, 84, (164,338,0): 170, 146, 86, (164,339,0): 175, 146, 88, (164,340,0): 180, 147, 93, (164,341,0): 185, 150, 96, (164,342,0): 188, 151, 98, (164,343,0): 189, 152, 97, (164,344,0): 189, 153, 95, (164,345,0): 191, 155, 95, (164,346,0): 197, 159, 97, (164,347,0): 204, 165, 100, (164,348,0): 213, 169, 104, (164,349,0): 222, 175, 107, (164,350,0): 228, 177, 111, (164,351,0): 233, 179, 109, (164,352,0): 237, 183, 111, (164,353,0): 239, 183, 109, (164,354,0): 241, 184, 113, (164,355,0): 244, 186, 113, (164,356,0): 245, 187, 114, (164,357,0): 248, 188, 115, (164,358,0): 250, 191, 115, (164,359,0): 250, 191, 113, (164,360,0): 250, 191, 113, (164,361,0): 250, 193, 112, (164,362,0): 251, 195, 112, (164,363,0): 251, 197, 111, (164,364,0): 248, 196, 110, (164,365,0): 246, 196, 107, (164,366,0): 241, 194, 106, (164,367,0): 239, 193, 105, (164,368,0): 233, 192, 104, (164,369,0): 229, 192, 104, (164,370,0): 228, 190, 107, (164,371,0): 224, 187, 106, (164,372,0): 221, 184, 104, (164,373,0): 216, 180, 102, (164,374,0): 212, 176, 102, (164,375,0): 208, 174, 100, (164,376,0): 203, 170, 99, (164,377,0): 202, 172, 100, (164,378,0): 203, 173, 101, (164,379,0): 203, 175, 102, (164,380,0): 204, 176, 102, (164,381,0): 204, 178, 103, (164,382,0): 205, 179, 104, (164,383,0): 206, 180, 105, (164,384,0): 202, 178, 104, (164,385,0): 203, 179, 105, (164,386,0): 204, 181, 105, (164,387,0): 207, 184, 108, (164,388,0): 209, 186, 108, (164,389,0): 212, 189, 109, (164,390,0): 214, 192, 109, (164,391,0): 215, 193, 108, (164,392,0): 214, 192, 106, (164,393,0): 218, 197, 106, (164,394,0): 223, 202, 111, (164,395,0): 227, 206, 113, (164,396,0): 228, 208, 113, (164,397,0): 228, 208, 111, (164,398,0): 227, 207, 110, (164,399,0): 228, 206, 107, (164,400,0): 234, 209, 109, (164,401,0): 236, 211, 110, (164,402,0): 241, 213, 113, (164,403,0): 243, 218, 115, (164,404,0): 246, 221, 118, (164,405,0): 247, 222, 119, (164,406,0): 248, 223, 120, (164,407,0): 247, 224, 118, (164,408,0): 249, 226, 120, (164,409,0): 249, 228, 119, (164,410,0): 251, 230, 121, (164,411,0): 251, 233, 123, (164,412,0): 252, 234, 124, (164,413,0): 253, 235, 123, (164,414,0): 253, 235, 123, (164,415,0): 251, 235, 124, (164,416,0): 248, 235, 123, (164,417,0): 247, 235, 123, (164,418,0): 247, 235, 123, (164,419,0): 246, 235, 120, (164,420,0): 245, 234, 119, (164,421,0): 242, 231, 116, (164,422,0): 240, 228, 116, (164,423,0): 239, 227, 115, (164,424,0): 246, 234, 124, (164,425,0): 247, 235, 127, (164,426,0): 246, 233, 129, (164,427,0): 243, 230, 128, (164,428,0): 235, 221, 124, (164,429,0): 225, 210, 115, (164,430,0): 214, 199, 106, (164,431,0): 207, 194, 102, (164,432,0): 199, 189, 102, (164,433,0): 193, 187, 101, (164,434,0): 190, 184, 98, (164,435,0): 190, 186, 99, (164,436,0): 193, 189, 102, (164,437,0): 195, 191, 104, (164,438,0): 196, 190, 104, (164,439,0): 195, 189, 103, (164,440,0): 198, 190, 105, (164,441,0): 199, 189, 104, (164,442,0): 201, 186, 101, (164,443,0): 201, 185, 100, (164,444,0): 205, 184, 101, (164,445,0): 209, 187, 104, (164,446,0): 215, 190, 108, (164,447,0): 219, 193, 109, (164,448,0): 222, 196, 111, (164,449,0): 224, 198, 111, (164,450,0): 224, 200, 112, (164,451,0): 223, 199, 111, (164,452,0): 218, 197, 108, (164,453,0): 216, 196, 109, (164,454,0): 216, 199, 111, (164,455,0): 218, 200, 114, (164,456,0): 212, 194, 108, (164,457,0): 213, 195, 109, (164,458,0): 217, 197, 111, (164,459,0): 219, 197, 114, (164,460,0): 223, 198, 116, (164,461,0): 224, 199, 117, (164,462,0): 226, 199, 120, (164,463,0): 225, 200, 120, (164,464,0): 217, 199, 117, (164,465,0): 215, 200, 117, (164,466,0): 214, 199, 118, (164,467,0): 210, 198, 116, (164,468,0): 205, 194, 114, (164,469,0): 199, 190, 111, (164,470,0): 195, 187, 112, (164,471,0): 191, 185, 111, (164,472,0): 183, 179, 108, (164,473,0): 181, 178, 109, (164,474,0): 178, 177, 110, (164,475,0): 176, 176, 112, (164,476,0): 175, 177, 114, (164,477,0): 174, 178, 117, (164,478,0): 175, 179, 120, (164,479,0): 175, 181, 121, (164,480,0): 174, 180, 120, (164,481,0): 172, 180, 120, (164,482,0): 172, 180, 121, (164,483,0): 173, 181, 122, (164,484,0): 174, 182, 125, (164,485,0): 171, 179, 122, (164,486,0): 164, 171, 119, (164,487,0): 159, 166, 115, (164,488,0): 151, 157, 109, (164,489,0): 147, 153, 107, (164,490,0): 142, 148, 104, (164,491,0): 137, 142, 101, (164,492,0): 133, 138, 98, (164,493,0): 128, 132, 95, (164,494,0): 121, 125, 88, (164,495,0): 116, 120, 85, (164,496,0): 115, 120, 88, (164,497,0): 115, 120, 90, (164,498,0): 115, 120, 90, (164,499,0): 115, 120, 90, (164,500,0): 114, 117, 88, (164,501,0): 112, 115, 86, (164,502,0): 110, 113, 86, (164,503,0): 109, 112, 85, (164,504,0): 105, 105, 81, (164,505,0): 103, 103, 79, (164,506,0): 100, 98, 77, (164,507,0): 97, 95, 74, (164,508,0): 95, 93, 72, (164,509,0): 96, 94, 73, (164,510,0): 100, 95, 75, (164,511,0): 99, 97, 76, (164,512,0): 99, 98, 77, (164,513,0): 97, 99, 77, (164,514,0): 101, 100, 79, (164,515,0): 102, 101, 80, (164,516,0): 104, 103, 82, (164,517,0): 106, 105, 84, (164,518,0): 108, 106, 85, (164,519,0): 109, 107, 86, (164,520,0): 110, 105, 85, (164,521,0): 110, 105, 85, (164,522,0): 109, 104, 84, (164,523,0): 108, 103, 83, (164,524,0): 109, 102, 83, (164,525,0): 109, 102, 83, (164,526,0): 109, 102, 83, (164,527,0): 109, 102, 83, (164,528,0): 113, 107, 85, (164,529,0): 114, 108, 84, (164,530,0): 117, 109, 86, (164,531,0): 118, 112, 88, (164,532,0): 121, 113, 90, (164,533,0): 121, 115, 91, (164,534,0): 123, 115, 92, (164,535,0): 122, 116, 92, (164,536,0): 125, 117, 94, (164,537,0): 119, 113, 89, (164,538,0): 115, 107, 84, (164,539,0): 111, 105, 81, (164,540,0): 110, 102, 79, (164,541,0): 106, 100, 76, (164,542,0): 103, 95, 72, (164,543,0): 98, 92, 68, (164,544,0): 94, 88, 66, (164,545,0): 93, 86, 67, (164,546,0): 91, 84, 65, (164,547,0): 90, 83, 64, (164,548,0): 89, 82, 64, (164,549,0): 89, 82, 64, (164,550,0): 90, 83, 65, (164,551,0): 90, 83, 65, (164,552,0): 89, 82, 66, (164,553,0): 88, 81, 65, (164,554,0): 87, 79, 66, (164,555,0): 86, 78, 65, (164,556,0): 85, 77, 64, (164,557,0): 86, 78, 65, (164,558,0): 87, 79, 68, (164,559,0): 87, 81, 69, (164,560,0): 87, 83, 72, (164,561,0): 87, 85, 73, (164,562,0): 87, 87, 75, (164,563,0): 89, 89, 77, (164,564,0): 92, 92, 82, (164,565,0): 93, 95, 84, (164,566,0): 94, 97, 86, (164,567,0): 95, 98, 87, (164,568,0): 96, 102, 92, (164,569,0): 97, 105, 94, (164,570,0): 99, 109, 100, (164,571,0): 102, 112, 103, (164,572,0): 103, 115, 105, (164,573,0): 102, 114, 104, (164,574,0): 99, 112, 103, (164,575,0): 98, 109, 101, (164,576,0): 95, 102, 95, (164,577,0): 97, 102, 95, (164,578,0): 99, 101, 96, (164,579,0): 98, 101, 94, (164,580,0): 95, 96, 91, (164,581,0): 90, 91, 86, (164,582,0): 85, 84, 80, (164,583,0): 84, 80, 77, (164,584,0): 85, 80, 77, (164,585,0): 85, 80, 77, (164,586,0): 86, 78, 76, (164,587,0): 85, 77, 75, (164,588,0): 85, 75, 74, (164,589,0): 83, 73, 72, (164,590,0): 83, 71, 71, (164,591,0): 83, 72, 70, (164,592,0): 81, 70, 66, (164,593,0): 82, 71, 67, (164,594,0): 83, 72, 68, (164,595,0): 84, 73, 69, (164,596,0): 84, 73, 69, (164,597,0): 84, 73, 69, (164,598,0): 84, 73, 69, (164,599,0): 84, 73, 69, (165,0,0): 41, 29, 43, (165,1,0): 40, 28, 42, (165,2,0): 39, 27, 41, (165,3,0): 38, 26, 40, (165,4,0): 38, 26, 40, (165,5,0): 39, 27, 41, (165,6,0): 40, 28, 42, (165,7,0): 41, 29, 43, (165,8,0): 39, 27, 41, (165,9,0): 39, 27, 41, (165,10,0): 40, 28, 42, (165,11,0): 40, 28, 42, (165,12,0): 41, 29, 43, (165,13,0): 41, 29, 43, (165,14,0): 42, 30, 44, (165,15,0): 42, 30, 44, (165,16,0): 45, 28, 47, (165,17,0): 45, 28, 47, (165,18,0): 42, 28, 45, (165,19,0): 42, 28, 45, (165,20,0): 40, 27, 44, (165,21,0): 40, 27, 44, (165,22,0): 38, 27, 41, (165,23,0): 38, 27, 41, (165,24,0): 40, 28, 40, (165,25,0): 40, 28, 40, (165,26,0): 44, 28, 41, (165,27,0): 45, 29, 42, (165,28,0): 49, 29, 41, (165,29,0): 50, 30, 42, (165,30,0): 53, 29, 43, (165,31,0): 54, 30, 43, (165,32,0): 54, 30, 43, (165,33,0): 54, 31, 41, (165,34,0): 58, 32, 43, (165,35,0): 60, 34, 45, (165,36,0): 63, 35, 47, (165,37,0): 66, 39, 48, (165,38,0): 70, 38, 49, (165,39,0): 72, 39, 48, (165,40,0): 75, 39, 49, (165,41,0): 77, 39, 50, (165,42,0): 80, 40, 49, (165,43,0): 82, 40, 50, (165,44,0): 84, 42, 52, (165,45,0): 86, 43, 53, (165,46,0): 87, 44, 54, (165,47,0): 90, 44, 55, (165,48,0): 88, 41, 51, (165,49,0): 88, 41, 51, (165,50,0): 91, 41, 52, (165,51,0): 91, 41, 52, (165,52,0): 94, 40, 53, (165,53,0): 94, 40, 53, (165,54,0): 96, 40, 53, (165,55,0): 97, 41, 54, (165,56,0): 95, 39, 52, (165,57,0): 95, 39, 52, (165,58,0): 93, 39, 52, (165,59,0): 92, 40, 52, (165,60,0): 92, 40, 52, (165,61,0): 91, 41, 52, (165,62,0): 88, 41, 51, (165,63,0): 88, 41, 51, (165,64,0): 86, 39, 49, (165,65,0): 84, 38, 48, (165,66,0): 84, 38, 48, (165,67,0): 84, 38, 48, (165,68,0): 83, 37, 47, (165,69,0): 81, 38, 47, (165,70,0): 80, 37, 46, (165,71,0): 80, 37, 46, (165,72,0): 82, 39, 48, (165,73,0): 80, 39, 47, (165,74,0): 79, 38, 46, (165,75,0): 77, 36, 44, (165,76,0): 75, 35, 43, (165,77,0): 73, 33, 41, (165,78,0): 72, 32, 40, (165,79,0): 71, 31, 39, (165,80,0): 69, 32, 40, (165,81,0): 69, 32, 40, (165,82,0): 70, 33, 41, (165,83,0): 70, 33, 41, (165,84,0): 71, 34, 42, (165,85,0): 71, 34, 42, (165,86,0): 72, 35, 43, (165,87,0): 72, 35, 43, (165,88,0): 74, 37, 45, (165,89,0): 74, 37, 45, (165,90,0): 74, 37, 45, (165,91,0): 73, 36, 44, (165,92,0): 73, 36, 44, (165,93,0): 72, 35, 43, (165,94,0): 72, 35, 43, (165,95,0): 73, 33, 41, (165,96,0): 74, 33, 39, (165,97,0): 74, 33, 39, (165,98,0): 71, 31, 39, (165,99,0): 66, 29, 36, (165,100,0): 62, 27, 34, (165,101,0): 54, 23, 29, (165,102,0): 50, 20, 28, (165,103,0): 44, 19, 25, (165,104,0): 40, 17, 27, (165,105,0): 38, 17, 26, (165,106,0): 36, 16, 27, (165,107,0): 31, 15, 25, (165,108,0): 29, 16, 26, (165,109,0): 28, 16, 26, (165,110,0): 28, 16, 28, (165,111,0): 29, 17, 29, (165,112,0): 30, 17, 27, (165,113,0): 31, 15, 26, (165,114,0): 31, 15, 26, (165,115,0): 30, 14, 25, (165,116,0): 30, 14, 25, (165,117,0): 29, 13, 24, (165,118,0): 29, 13, 24, (165,119,0): 29, 13, 24, (165,120,0): 27, 11, 22, (165,121,0): 27, 11, 22, (165,122,0): 28, 12, 23, (165,123,0): 29, 13, 24, (165,124,0): 30, 14, 25, (165,125,0): 30, 14, 25, (165,126,0): 31, 15, 26, (165,127,0): 31, 15, 26, (165,128,0): 32, 14, 28, (165,129,0): 32, 14, 28, (165,130,0): 32, 14, 26, (165,131,0): 33, 15, 27, (165,132,0): 33, 15, 27, (165,133,0): 34, 16, 28, (165,134,0): 34, 17, 27, (165,135,0): 35, 18, 28, (165,136,0): 33, 16, 24, (165,137,0): 33, 16, 24, (165,138,0): 34, 17, 25, (165,139,0): 35, 18, 26, (165,140,0): 36, 19, 25, (165,141,0): 37, 20, 26, (165,142,0): 38, 21, 27, (165,143,0): 40, 21, 25, (165,144,0): 42, 22, 24, (165,145,0): 44, 22, 24, (165,146,0): 45, 23, 25, (165,147,0): 46, 24, 26, (165,148,0): 47, 25, 27, (165,149,0): 48, 26, 28, (165,150,0): 49, 27, 29, (165,151,0): 49, 27, 29, (165,152,0): 51, 29, 31, (165,153,0): 51, 29, 31, (165,154,0): 51, 29, 31, (165,155,0): 51, 29, 31, (165,156,0): 51, 29, 31, (165,157,0): 51, 29, 31, (165,158,0): 51, 29, 31, (165,159,0): 51, 30, 29, (165,160,0): 51, 30, 29, (165,161,0): 51, 30, 27, (165,162,0): 51, 30, 27, (165,163,0): 51, 30, 27, (165,164,0): 51, 30, 27, (165,165,0): 51, 30, 27, (165,166,0): 51, 30, 27, (165,167,0): 51, 30, 27, (165,168,0): 49, 28, 25, (165,169,0): 49, 28, 25, (165,170,0): 49, 28, 25, (165,171,0): 48, 27, 24, (165,172,0): 48, 27, 24, (165,173,0): 47, 26, 23, (165,174,0): 47, 26, 23, (165,175,0): 46, 25, 22, (165,176,0): 50, 29, 26, (165,177,0): 49, 28, 25, (165,178,0): 48, 27, 24, (165,179,0): 48, 27, 24, (165,180,0): 46, 25, 22, (165,181,0): 46, 25, 22, (165,182,0): 45, 24, 21, (165,183,0): 44, 23, 20, (165,184,0): 45, 24, 21, (165,185,0): 45, 24, 21, (165,186,0): 45, 24, 21, (165,187,0): 45, 24, 21, (165,188,0): 45, 24, 21, (165,189,0): 45, 24, 21, (165,190,0): 45, 24, 21, (165,191,0): 45, 24, 21, (165,192,0): 43, 24, 20, (165,193,0): 43, 24, 20, (165,194,0): 44, 25, 21, (165,195,0): 44, 25, 21, (165,196,0): 46, 25, 22, (165,197,0): 46, 25, 22, (165,198,0): 49, 25, 23, (165,199,0): 49, 25, 23, (165,200,0): 48, 24, 22, (165,201,0): 48, 24, 22, (165,202,0): 49, 23, 22, (165,203,0): 48, 22, 21, (165,204,0): 50, 22, 21, (165,205,0): 49, 21, 20, (165,206,0): 49, 21, 20, (165,207,0): 49, 21, 20, (165,208,0): 47, 22, 18, (165,209,0): 48, 23, 19, (165,210,0): 49, 24, 19, (165,211,0): 50, 25, 20, (165,212,0): 51, 26, 21, (165,213,0): 51, 26, 21, (165,214,0): 50, 25, 18, (165,215,0): 49, 24, 17, (165,216,0): 47, 23, 13, (165,217,0): 47, 23, 13, (165,218,0): 48, 24, 14, (165,219,0): 48, 24, 14, (165,220,0): 49, 25, 13, (165,221,0): 49, 25, 13, (165,222,0): 50, 26, 14, (165,223,0): 50, 26, 14, (165,224,0): 50, 25, 18, (165,225,0): 50, 25, 18, (165,226,0): 51, 26, 19, (165,227,0): 51, 26, 19, (165,228,0): 54, 27, 18, (165,229,0): 54, 27, 18, (165,230,0): 55, 28, 19, (165,231,0): 55, 28, 19, (165,232,0): 58, 30, 19, (165,233,0): 58, 30, 19, (165,234,0): 59, 29, 18, (165,235,0): 58, 28, 17, (165,236,0): 58, 28, 17, (165,237,0): 57, 27, 16, (165,238,0): 59, 27, 14, (165,239,0): 56, 27, 13, (165,240,0): 54, 26, 14, (165,241,0): 53, 27, 14, (165,242,0): 54, 28, 15, (165,243,0): 54, 28, 15, (165,244,0): 54, 28, 15, (165,245,0): 55, 29, 16, (165,246,0): 55, 29, 16, (165,247,0): 55, 29, 16, (165,248,0): 55, 29, 16, (165,249,0): 56, 30, 17, (165,250,0): 56, 30, 17, (165,251,0): 57, 31, 18, (165,252,0): 58, 32, 19, (165,253,0): 60, 34, 21, (165,254,0): 60, 34, 21, (165,255,0): 61, 35, 22, (165,256,0): 63, 35, 24, (165,257,0): 62, 34, 23, (165,258,0): 62, 34, 23, (165,259,0): 61, 33, 22, (165,260,0): 61, 32, 24, (165,261,0): 60, 31, 23, (165,262,0): 60, 31, 23, (165,263,0): 60, 31, 23, (165,264,0): 61, 32, 26, (165,265,0): 61, 32, 26, (165,266,0): 61, 32, 28, (165,267,0): 62, 33, 29, (165,268,0): 62, 33, 29, (165,269,0): 63, 34, 30, (165,270,0): 63, 33, 31, (165,271,0): 63, 33, 31, (165,272,0): 66, 35, 32, (165,273,0): 67, 36, 33, (165,274,0): 67, 36, 33, (165,275,0): 68, 37, 32, (165,276,0): 70, 39, 34, (165,277,0): 71, 41, 33, (165,278,0): 71, 41, 33, (165,279,0): 72, 42, 32, (165,280,0): 76, 46, 35, (165,281,0): 76, 47, 33, (165,282,0): 77, 48, 34, (165,283,0): 78, 49, 33, (165,284,0): 79, 50, 34, (165,285,0): 80, 51, 33, (165,286,0): 81, 52, 34, (165,287,0): 80, 53, 32, (165,288,0): 79, 54, 32, (165,289,0): 80, 55, 33, (165,290,0): 80, 55, 33, (165,291,0): 81, 56, 34, (165,292,0): 83, 58, 36, (165,293,0): 84, 59, 37, (165,294,0): 84, 59, 37, (165,295,0): 85, 60, 38, (165,296,0): 88, 63, 41, (165,297,0): 88, 63, 41, (165,298,0): 89, 64, 42, (165,299,0): 89, 64, 42, (165,300,0): 90, 65, 43, (165,301,0): 90, 65, 43, (165,302,0): 91, 66, 44, (165,303,0): 91, 66, 44, (165,304,0): 91, 66, 44, (165,305,0): 92, 68, 44, (165,306,0): 94, 70, 44, (165,307,0): 97, 73, 45, (165,308,0): 102, 77, 47, (165,309,0): 105, 80, 49, (165,310,0): 107, 82, 51, (165,311,0): 109, 85, 51, (165,312,0): 110, 84, 49, (165,313,0): 118, 93, 53, (165,314,0): 129, 102, 55, (165,315,0): 140, 115, 59, (165,316,0): 157, 133, 69, (165,317,0): 175, 153, 80, (165,318,0): 184, 161, 81, (165,319,0): 182, 161, 80, (165,320,0): 174, 154, 81, (165,321,0): 171, 152, 83, (165,322,0): 167, 150, 81, (165,323,0): 166, 148, 82, (165,324,0): 165, 150, 85, (165,325,0): 165, 149, 87, (165,326,0): 161, 146, 87, (165,327,0): 158, 143, 84, (165,328,0): 157, 140, 84, (165,329,0): 157, 140, 86, (165,330,0): 161, 140, 87, (165,331,0): 162, 141, 86, (165,332,0): 166, 141, 87, (165,333,0): 167, 142, 88, (165,334,0): 171, 141, 89, (165,335,0): 169, 142, 87, (165,336,0): 167, 147, 88, (165,337,0): 167, 147, 86, (165,338,0): 171, 147, 87, (165,339,0): 176, 147, 89, (165,340,0): 181, 148, 94, (165,341,0): 187, 150, 95, (165,342,0): 192, 153, 98, (165,343,0): 194, 155, 98, (165,344,0): 195, 156, 97, (165,345,0): 197, 159, 97, (165,346,0): 203, 164, 99, (165,347,0): 209, 169, 100, (165,348,0): 219, 174, 106, (165,349,0): 228, 180, 108, (165,350,0): 236, 182, 112, (165,351,0): 240, 183, 112, (165,352,0): 243, 184, 114, (165,353,0): 243, 185, 112, (165,354,0): 245, 185, 115, (165,355,0): 245, 185, 113, (165,356,0): 246, 186, 114, (165,357,0): 245, 187, 113, (165,358,0): 246, 189, 112, (165,359,0): 246, 189, 110, (165,360,0): 242, 187, 107, (165,361,0): 241, 189, 106, (165,362,0): 243, 191, 107, (165,363,0): 243, 193, 106, (165,364,0): 242, 195, 107, (165,365,0): 240, 195, 104, (165,366,0): 238, 194, 105, (165,367,0): 235, 194, 104, (165,368,0): 228, 191, 102, (165,369,0): 227, 191, 103, (165,370,0): 225, 190, 106, (165,371,0): 223, 188, 106, (165,372,0): 220, 185, 104, (165,373,0): 214, 181, 102, (165,374,0): 210, 178, 103, (165,375,0): 208, 176, 101, (165,376,0): 200, 170, 98, (165,377,0): 199, 171, 98, (165,378,0): 199, 173, 99, (165,379,0): 201, 175, 101, (165,380,0): 200, 177, 101, (165,381,0): 202, 179, 103, (165,382,0): 202, 180, 104, (165,383,0): 203, 181, 105, (165,384,0): 201, 179, 104, (165,385,0): 202, 180, 105, (165,386,0): 205, 181, 107, (165,387,0): 206, 184, 108, (165,388,0): 209, 186, 108, (165,389,0): 210, 189, 108, (165,390,0): 213, 190, 110, (165,391,0): 213, 193, 107, (165,392,0): 213, 191, 105, (165,393,0): 216, 196, 107, (165,394,0): 221, 200, 109, (165,395,0): 223, 204, 110, (165,396,0): 224, 204, 109, (165,397,0): 223, 204, 109, (165,398,0): 225, 205, 108, (165,399,0): 226, 206, 107, (165,400,0): 232, 208, 108, (165,401,0): 235, 212, 110, (165,402,0): 240, 215, 112, (165,403,0): 243, 220, 116, (165,404,0): 246, 223, 119, (165,405,0): 247, 224, 120, (165,406,0): 247, 224, 118, (165,407,0): 245, 224, 117, (165,408,0): 247, 226, 117, (165,409,0): 247, 229, 119, (165,410,0): 249, 231, 121, (165,411,0): 250, 234, 123, (165,412,0): 253, 235, 123, (165,413,0): 252, 236, 123, (165,414,0): 252, 236, 123, (165,415,0): 252, 236, 123, (165,416,0): 250, 238, 126, (165,417,0): 250, 238, 126, (165,418,0): 250, 238, 126, (165,419,0): 249, 238, 123, (165,420,0): 246, 235, 120, (165,421,0): 244, 233, 118, (165,422,0): 241, 229, 117, (165,423,0): 239, 227, 115, (165,424,0): 249, 237, 127, (165,425,0): 249, 237, 129, (165,426,0): 247, 234, 130, (165,427,0): 242, 229, 127, (165,428,0): 234, 220, 123, (165,429,0): 223, 208, 113, (165,430,0): 213, 198, 105, (165,431,0): 204, 193, 103, (165,432,0): 198, 190, 105, (165,433,0): 192, 187, 103, (165,434,0): 189, 184, 100, (165,435,0): 189, 184, 100, (165,436,0): 192, 187, 103, (165,437,0): 195, 190, 106, (165,438,0): 197, 191, 105, (165,439,0): 198, 190, 105, (165,440,0): 197, 187, 102, (165,441,0): 199, 187, 101, (165,442,0): 203, 187, 102, (165,443,0): 203, 185, 101, (165,444,0): 206, 185, 102, (165,445,0): 210, 188, 103, (165,446,0): 217, 192, 110, (165,447,0): 222, 196, 111, (165,448,0): 227, 201, 114, (165,449,0): 228, 204, 114, (165,450,0): 229, 205, 115, (165,451,0): 225, 204, 113, (165,452,0): 221, 202, 110, (165,453,0): 217, 200, 110, (165,454,0): 218, 201, 111, (165,455,0): 220, 203, 115, (165,456,0): 213, 196, 108, (165,457,0): 214, 197, 109, (165,458,0): 219, 199, 112, (165,459,0): 221, 201, 115, (165,460,0): 223, 201, 116, (165,461,0): 226, 201, 117, (165,462,0): 228, 201, 120, (165,463,0): 225, 203, 120, (165,464,0): 219, 202, 120, (165,465,0): 216, 204, 120, (165,466,0): 215, 204, 122, (165,467,0): 213, 202, 122, (165,468,0): 208, 199, 120, (165,469,0): 202, 195, 117, (165,470,0): 197, 191, 115, (165,471,0): 192, 188, 115, (165,472,0): 187, 184, 113, (165,473,0): 184, 183, 116, (165,474,0): 181, 182, 116, (165,475,0): 178, 180, 115, (165,476,0): 175, 180, 116, (165,477,0): 174, 178, 117, (165,478,0): 174, 180, 120, (165,479,0): 174, 180, 120, (165,480,0): 173, 181, 121, (165,481,0): 171, 181, 120, (165,482,0): 172, 180, 121, (165,483,0): 173, 181, 124, (165,484,0): 173, 181, 124, (165,485,0): 170, 177, 123, (165,486,0): 163, 170, 119, (165,487,0): 158, 164, 116, (165,488,0): 152, 158, 112, (165,489,0): 147, 153, 109, (165,490,0): 141, 146, 105, (165,491,0): 136, 141, 101, (165,492,0): 132, 136, 99, (165,493,0): 126, 130, 93, (165,494,0): 120, 124, 87, (165,495,0): 115, 119, 84, (165,496,0): 115, 120, 88, (165,497,0): 115, 120, 90, (165,498,0): 115, 120, 90, (165,499,0): 114, 119, 89, (165,500,0): 113, 116, 87, (165,501,0): 111, 114, 85, (165,502,0): 108, 111, 84, (165,503,0): 107, 110, 83, (165,504,0): 104, 104, 80, (165,505,0): 102, 102, 78, (165,506,0): 99, 97, 76, (165,507,0): 96, 94, 73, (165,508,0): 94, 92, 71, (165,509,0): 93, 91, 70, (165,510,0): 96, 91, 71, (165,511,0): 94, 92, 71, (165,512,0): 96, 95, 74, (165,513,0): 97, 96, 75, (165,514,0): 99, 98, 78, (165,515,0): 102, 101, 80, (165,516,0): 104, 103, 83, (165,517,0): 107, 106, 85, (165,518,0): 110, 108, 87, (165,519,0): 111, 109, 88, (165,520,0): 111, 106, 86, (165,521,0): 110, 105, 85, (165,522,0): 109, 104, 84, (165,523,0): 108, 103, 83, (165,524,0): 109, 102, 83, (165,525,0): 110, 103, 84, (165,526,0): 111, 104, 85, (165,527,0): 111, 105, 83, (165,528,0): 117, 112, 90, (165,529,0): 117, 113, 88, (165,530,0): 118, 114, 89, (165,531,0): 119, 115, 90, (165,532,0): 120, 116, 91, (165,533,0): 121, 117, 92, (165,534,0): 121, 117, 92, (165,535,0): 121, 117, 92, (165,536,0): 125, 121, 96, (165,537,0): 121, 117, 92, (165,538,0): 115, 111, 86, (165,539,0): 111, 107, 82, (165,540,0): 110, 106, 81, (165,541,0): 107, 103, 78, (165,542,0): 104, 100, 75, (165,543,0): 101, 96, 74, (165,544,0): 97, 90, 71, (165,545,0): 96, 89, 70, (165,546,0): 94, 87, 68, (165,547,0): 92, 85, 66, (165,548,0): 90, 83, 65, (165,549,0): 90, 83, 65, (165,550,0): 90, 83, 65, (165,551,0): 90, 83, 65, (165,552,0): 90, 83, 67, (165,553,0): 89, 82, 66, (165,554,0): 88, 80, 67, (165,555,0): 88, 80, 67, (165,556,0): 88, 80, 67, (165,557,0): 90, 82, 69, (165,558,0): 91, 83, 72, (165,559,0): 91, 85, 73, (165,560,0): 89, 85, 74, (165,561,0): 87, 87, 75, (165,562,0): 89, 89, 77, (165,563,0): 90, 92, 79, (165,564,0): 93, 95, 84, (165,565,0): 95, 98, 87, (165,566,0): 97, 100, 89, (165,567,0): 96, 102, 90, (165,568,0): 97, 105, 94, (165,569,0): 97, 107, 96, (165,570,0): 100, 110, 101, (165,571,0): 102, 114, 104, (165,572,0): 104, 116, 106, (165,573,0): 103, 116, 106, (165,574,0): 102, 115, 106, (165,575,0): 102, 113, 105, (165,576,0): 101, 107, 103, (165,577,0): 102, 107, 103, (165,578,0): 103, 105, 102, (165,579,0): 100, 102, 97, (165,580,0): 97, 97, 95, (165,581,0): 92, 93, 88, (165,582,0): 88, 87, 85, (165,583,0): 85, 84, 80, (165,584,0): 85, 81, 78, (165,585,0): 85, 80, 77, (165,586,0): 86, 78, 76, (165,587,0): 85, 77, 75, (165,588,0): 84, 74, 73, (165,589,0): 82, 72, 71, (165,590,0): 82, 70, 70, (165,591,0): 82, 71, 69, (165,592,0): 81, 70, 68, (165,593,0): 81, 70, 66, (165,594,0): 82, 71, 67, (165,595,0): 83, 72, 68, (165,596,0): 83, 72, 68, (165,597,0): 84, 73, 69, (165,598,0): 84, 73, 69, (165,599,0): 84, 73, 69, (166,0,0): 41, 29, 43, (166,1,0): 41, 29, 43, (166,2,0): 40, 28, 42, (166,3,0): 39, 27, 41, (166,4,0): 39, 27, 41, (166,5,0): 40, 28, 42, (166,6,0): 41, 29, 43, (166,7,0): 41, 29, 43, (166,8,0): 39, 27, 41, (166,9,0): 39, 27, 41, (166,10,0): 40, 28, 42, (166,11,0): 40, 28, 42, (166,12,0): 41, 29, 43, (166,13,0): 41, 29, 43, (166,14,0): 42, 30, 44, (166,15,0): 42, 30, 44, (166,16,0): 45, 28, 47, (166,17,0): 45, 28, 47, (166,18,0): 43, 29, 46, (166,19,0): 42, 28, 45, (166,20,0): 40, 27, 44, (166,21,0): 39, 26, 43, (166,22,0): 38, 27, 41, (166,23,0): 38, 27, 41, (166,24,0): 40, 28, 40, (166,25,0): 41, 29, 41, (166,26,0): 45, 29, 42, (166,27,0): 46, 30, 43, (166,28,0): 50, 30, 42, (166,29,0): 51, 31, 43, (166,30,0): 54, 30, 44, (166,31,0): 54, 30, 43, (166,32,0): 56, 28, 42, (166,33,0): 57, 29, 41, (166,34,0): 62, 32, 42, (166,35,0): 65, 35, 45, (166,36,0): 69, 37, 48, (166,37,0): 72, 40, 51, (166,38,0): 78, 42, 54, (166,39,0): 80, 42, 53, (166,40,0): 81, 41, 52, (166,41,0): 82, 40, 50, (166,42,0): 83, 41, 51, (166,43,0): 84, 41, 51, (166,44,0): 87, 41, 51, (166,45,0): 87, 41, 51, (166,46,0): 88, 42, 52, (166,47,0): 89, 42, 52, (166,48,0): 87, 40, 50, (166,49,0): 87, 40, 50, (166,50,0): 90, 40, 51, (166,51,0): 90, 40, 51, (166,52,0): 93, 39, 52, (166,53,0): 93, 39, 52, (166,54,0): 96, 40, 53, (166,55,0): 96, 40, 53, (166,56,0): 94, 38, 51, (166,57,0): 94, 38, 51, (166,58,0): 92, 38, 51, (166,59,0): 91, 39, 51, (166,60,0): 91, 39, 51, (166,61,0): 91, 41, 52, (166,62,0): 89, 42, 52, (166,63,0): 89, 42, 52, (166,64,0): 89, 39, 50, (166,65,0): 89, 39, 50, (166,66,0): 89, 39, 50, (166,67,0): 86, 39, 49, (166,68,0): 85, 38, 48, (166,69,0): 83, 37, 47, (166,70,0): 83, 37, 47, (166,71,0): 81, 38, 47, (166,72,0): 82, 39, 48, (166,73,0): 81, 38, 47, (166,74,0): 79, 38, 46, (166,75,0): 77, 36, 44, (166,76,0): 75, 35, 43, (166,77,0): 73, 33, 41, (166,78,0): 70, 33, 40, (166,79,0): 69, 32, 39, (166,80,0): 71, 31, 39, (166,81,0): 71, 31, 39, (166,82,0): 72, 32, 40, (166,83,0): 72, 32, 40, (166,84,0): 73, 33, 41, (166,85,0): 73, 33, 41, (166,86,0): 74, 34, 42, (166,87,0): 74, 34, 42, (166,88,0): 77, 37, 45, (166,89,0): 76, 36, 44, (166,90,0): 76, 36, 44, (166,91,0): 75, 35, 43, (166,92,0): 75, 35, 43, (166,93,0): 74, 34, 42, (166,94,0): 74, 34, 42, (166,95,0): 74, 34, 42, (166,96,0): 76, 35, 41, (166,97,0): 75, 34, 40, (166,98,0): 72, 32, 40, (166,99,0): 67, 30, 37, (166,100,0): 62, 27, 34, (166,101,0): 56, 23, 30, (166,102,0): 51, 20, 28, (166,103,0): 45, 18, 25, (166,104,0): 44, 18, 29, (166,105,0): 39, 18, 27, (166,106,0): 36, 16, 27, (166,107,0): 31, 15, 25, (166,108,0): 28, 15, 25, (166,109,0): 26, 14, 24, (166,110,0): 26, 14, 26, (166,111,0): 27, 15, 27, (166,112,0): 30, 17, 27, (166,113,0): 32, 16, 27, (166,114,0): 32, 16, 27, (166,115,0): 31, 15, 26, (166,116,0): 31, 15, 26, (166,117,0): 30, 14, 25, (166,118,0): 30, 14, 25, (166,119,0): 29, 13, 24, (166,120,0): 28, 12, 23, (166,121,0): 28, 12, 23, (166,122,0): 28, 12, 23, (166,123,0): 29, 13, 24, (166,124,0): 29, 13, 24, (166,125,0): 29, 13, 24, (166,126,0): 29, 13, 24, (166,127,0): 29, 13, 24, (166,128,0): 31, 13, 27, (166,129,0): 32, 14, 28, (166,130,0): 32, 14, 26, (166,131,0): 33, 15, 27, (166,132,0): 33, 15, 27, (166,133,0): 34, 16, 28, (166,134,0): 34, 17, 27, (166,135,0): 34, 17, 27, (166,136,0): 32, 15, 23, (166,137,0): 32, 15, 23, (166,138,0): 33, 16, 24, (166,139,0): 34, 17, 25, (166,140,0): 35, 18, 24, (166,141,0): 36, 19, 25, (166,142,0): 37, 20, 26, (166,143,0): 39, 20, 24, (166,144,0): 42, 22, 24, (166,145,0): 43, 21, 23, (166,146,0): 44, 22, 24, (166,147,0): 45, 23, 25, (166,148,0): 46, 24, 26, (166,149,0): 47, 25, 27, (166,150,0): 48, 26, 28, (166,151,0): 49, 27, 29, (166,152,0): 49, 27, 29, (166,153,0): 49, 27, 29, (166,154,0): 49, 27, 29, (166,155,0): 49, 27, 29, (166,156,0): 49, 27, 29, (166,157,0): 49, 27, 29, (166,158,0): 49, 27, 29, (166,159,0): 49, 28, 27, (166,160,0): 51, 30, 29, (166,161,0): 51, 30, 27, (166,162,0): 51, 30, 27, (166,163,0): 51, 30, 27, (166,164,0): 51, 30, 27, (166,165,0): 51, 30, 27, (166,166,0): 51, 30, 27, (166,167,0): 51, 30, 27, (166,168,0): 50, 29, 26, (166,169,0): 49, 28, 25, (166,170,0): 49, 28, 25, (166,171,0): 48, 27, 24, (166,172,0): 48, 27, 24, (166,173,0): 47, 26, 23, (166,174,0): 47, 26, 23, (166,175,0): 47, 26, 23, (166,176,0): 50, 29, 26, (166,177,0): 50, 29, 26, (166,178,0): 49, 28, 25, (166,179,0): 48, 27, 24, (166,180,0): 46, 25, 22, (166,181,0): 45, 24, 21, (166,182,0): 44, 23, 20, (166,183,0): 44, 23, 20, (166,184,0): 46, 25, 22, (166,185,0): 46, 25, 22, (166,186,0): 46, 25, 22, (166,187,0): 46, 25, 22, (166,188,0): 46, 25, 22, (166,189,0): 46, 25, 22, (166,190,0): 46, 25, 22, (166,191,0): 46, 25, 22, (166,192,0): 44, 23, 18, (166,193,0): 44, 23, 18, (166,194,0): 44, 23, 18, (166,195,0): 45, 24, 19, (166,196,0): 48, 24, 20, (166,197,0): 49, 25, 21, (166,198,0): 49, 25, 21, (166,199,0): 49, 25, 21, (166,200,0): 51, 26, 22, (166,201,0): 51, 26, 22, (166,202,0): 52, 24, 21, (166,203,0): 51, 23, 20, (166,204,0): 51, 23, 20, (166,205,0): 50, 22, 19, (166,206,0): 50, 20, 18, (166,207,0): 49, 21, 18, (166,208,0): 46, 21, 17, (166,209,0): 47, 22, 18, (166,210,0): 49, 24, 19, (166,211,0): 50, 25, 20, (166,212,0): 50, 25, 20, (166,213,0): 50, 25, 20, (166,214,0): 49, 24, 17, (166,215,0): 49, 24, 17, (166,216,0): 47, 23, 13, (166,217,0): 47, 23, 13, (166,218,0): 47, 23, 13, (166,219,0): 48, 24, 14, (166,220,0): 49, 25, 13, (166,221,0): 50, 26, 14, (166,222,0): 50, 26, 14, (166,223,0): 50, 26, 14, (166,224,0): 50, 25, 18, (166,225,0): 50, 25, 18, (166,226,0): 51, 26, 19, (166,227,0): 51, 26, 19, (166,228,0): 54, 27, 18, (166,229,0): 54, 27, 18, (166,230,0): 55, 28, 19, (166,231,0): 55, 28, 19, (166,232,0): 59, 31, 20, (166,233,0): 58, 30, 19, (166,234,0): 59, 29, 18, (166,235,0): 58, 28, 17, (166,236,0): 58, 28, 17, (166,237,0): 57, 27, 16, (166,238,0): 59, 27, 14, (166,239,0): 57, 28, 14, (166,240,0): 55, 29, 16, (166,241,0): 53, 29, 17, (166,242,0): 53, 29, 17, (166,243,0): 52, 28, 16, (166,244,0): 52, 28, 16, (166,245,0): 51, 27, 15, (166,246,0): 51, 27, 15, (166,247,0): 51, 27, 15, (166,248,0): 52, 28, 16, (166,249,0): 53, 29, 17, (166,250,0): 54, 30, 18, (166,251,0): 55, 31, 19, (166,252,0): 56, 32, 20, (166,253,0): 57, 33, 21, (166,254,0): 58, 34, 22, (166,255,0): 60, 33, 22, (166,256,0): 62, 34, 23, (166,257,0): 62, 34, 23, (166,258,0): 62, 34, 23, (166,259,0): 61, 33, 22, (166,260,0): 61, 32, 24, (166,261,0): 60, 31, 23, (166,262,0): 60, 31, 23, (166,263,0): 59, 30, 22, (166,264,0): 61, 32, 26, (166,265,0): 61, 32, 26, (166,266,0): 61, 32, 28, (166,267,0): 62, 33, 29, (166,268,0): 62, 33, 29, (166,269,0): 63, 34, 30, (166,270,0): 63, 33, 31, (166,271,0): 63, 33, 31, (166,272,0): 65, 35, 33, (166,273,0): 66, 37, 33, (166,274,0): 66, 37, 33, (166,275,0): 67, 38, 32, (166,276,0): 69, 40, 34, (166,277,0): 70, 41, 33, (166,278,0): 70, 41, 33, (166,279,0): 71, 43, 32, (166,280,0): 74, 46, 34, (166,281,0): 74, 46, 32, (166,282,0): 75, 47, 33, (166,283,0): 76, 49, 32, (166,284,0): 77, 50, 33, (166,285,0): 78, 51, 32, (166,286,0): 79, 52, 33, (166,287,0): 79, 52, 33, (166,288,0): 79, 54, 32, (166,289,0): 78, 56, 33, (166,290,0): 78, 56, 33, (166,291,0): 79, 57, 34, (166,292,0): 81, 59, 36, (166,293,0): 82, 60, 37, (166,294,0): 82, 60, 37, (166,295,0): 83, 61, 38, (166,296,0): 86, 64, 41, (166,297,0): 86, 64, 41, (166,298,0): 87, 65, 42, (166,299,0): 87, 65, 42, (166,300,0): 88, 66, 43, (166,301,0): 88, 66, 43, (166,302,0): 89, 67, 44, (166,303,0): 89, 67, 44, (166,304,0): 88, 66, 43, (166,305,0): 89, 67, 43, (166,306,0): 91, 70, 43, (166,307,0): 94, 73, 44, (166,308,0): 100, 77, 46, (166,309,0): 102, 79, 47, (166,310,0): 106, 81, 50, (166,311,0): 107, 83, 49, (166,312,0): 108, 84, 48, (166,313,0): 116, 93, 52, (166,314,0): 124, 100, 56, (166,315,0): 134, 111, 59, (166,316,0): 152, 128, 66, (166,317,0): 171, 148, 78, (166,318,0): 180, 159, 80, (166,319,0): 179, 158, 79, (166,320,0): 171, 151, 78, (166,321,0): 168, 149, 80, (166,322,0): 165, 148, 79, (166,323,0): 165, 147, 81, (166,324,0): 165, 150, 85, (166,325,0): 166, 150, 88, (166,326,0): 163, 148, 89, (166,327,0): 161, 146, 87, (166,328,0): 159, 142, 86, (166,329,0): 158, 141, 85, (166,330,0): 160, 139, 84, (166,331,0): 159, 138, 83, (166,332,0): 164, 139, 85, (166,333,0): 166, 141, 85, (166,334,0): 172, 142, 88, (166,335,0): 172, 146, 89, (166,336,0): 170, 148, 88, (166,337,0): 170, 148, 88, (166,338,0): 174, 148, 89, (166,339,0): 178, 147, 90, (166,340,0): 184, 149, 93, (166,341,0): 189, 152, 97, (166,342,0): 194, 155, 98, (166,343,0): 197, 157, 98, (166,344,0): 201, 161, 100, (166,345,0): 203, 163, 101, (166,346,0): 207, 168, 101, (166,347,0): 216, 173, 104, (166,348,0): 225, 178, 106, (166,349,0): 233, 184, 108, (166,350,0): 242, 186, 112, (166,351,0): 245, 187, 114, (166,352,0): 242, 183, 113, (166,353,0): 242, 183, 113, (166,354,0): 241, 182, 114, (166,355,0): 240, 181, 111, (166,356,0): 240, 181, 111, (166,357,0): 238, 182, 108, (166,358,0): 237, 181, 106, (166,359,0): 235, 182, 104, (166,360,0): 232, 181, 102, (166,361,0): 231, 183, 101, (166,362,0): 233, 185, 101, (166,363,0): 234, 188, 102, (166,364,0): 235, 191, 104, (166,365,0): 234, 193, 103, (166,366,0): 235, 194, 106, (166,367,0): 232, 195, 106, (166,368,0): 225, 191, 102, (166,369,0): 223, 192, 102, (166,370,0): 222, 190, 105, (166,371,0): 220, 189, 106, (166,372,0): 217, 186, 104, (166,373,0): 212, 183, 103, (166,374,0): 208, 181, 104, (166,375,0): 207, 180, 103, (166,376,0): 197, 171, 97, (166,377,0): 196, 172, 98, (166,378,0): 196, 174, 99, (166,379,0): 198, 176, 101, (166,380,0): 197, 178, 101, (166,381,0): 199, 180, 103, (166,382,0): 200, 181, 104, (166,383,0): 201, 182, 105, (166,384,0): 200, 181, 105, (166,385,0): 201, 182, 106, (166,386,0): 204, 182, 107, (166,387,0): 204, 185, 108, (166,388,0): 208, 187, 108, (166,389,0): 208, 190, 108, (166,390,0): 212, 191, 110, (166,391,0): 210, 192, 106, (166,392,0): 211, 191, 104, (166,393,0): 213, 196, 106, (166,394,0): 219, 200, 108, (166,395,0): 218, 202, 107, (166,396,0): 220, 201, 106, (166,397,0): 218, 202, 106, (166,398,0): 223, 205, 107, (166,399,0): 226, 208, 108, (166,400,0): 231, 209, 107, (166,401,0): 234, 213, 108, (166,402,0): 240, 217, 113, (166,403,0): 243, 222, 117, (166,404,0): 246, 225, 118, (166,405,0): 247, 226, 119, (166,406,0): 246, 225, 118, (166,407,0): 243, 225, 117, (166,408,0): 245, 227, 117, (166,409,0): 245, 229, 118, (166,410,0): 247, 231, 118, (166,411,0): 248, 235, 121, (166,412,0): 252, 236, 123, (166,413,0): 251, 238, 124, (166,414,0): 251, 238, 123, (166,415,0): 250, 239, 124, (166,416,0): 251, 239, 127, (166,417,0): 250, 240, 127, (166,418,0): 250, 240, 127, (166,419,0): 250, 240, 127, (166,420,0): 248, 238, 125, (166,421,0): 246, 236, 123, (166,422,0): 244, 234, 121, (166,423,0): 243, 233, 120, (166,424,0): 252, 242, 131, (166,425,0): 250, 239, 131, (166,426,0): 246, 235, 130, (166,427,0): 240, 228, 126, (166,428,0): 232, 220, 122, (166,429,0): 222, 209, 113, (166,430,0): 213, 200, 106, (166,431,0): 206, 195, 105, (166,432,0): 199, 193, 109, (166,433,0): 193, 191, 108, (166,434,0): 189, 187, 104, (166,435,0): 188, 186, 103, (166,436,0): 193, 188, 106, (166,437,0): 197, 192, 108, (166,438,0): 199, 193, 107, (166,439,0): 200, 192, 107, (166,440,0): 198, 186, 100, (166,441,0): 202, 187, 102, (166,442,0): 205, 189, 104, (166,443,0): 206, 188, 102, (166,444,0): 208, 188, 102, (166,445,0): 212, 190, 104, (166,446,0): 219, 194, 110, (166,447,0): 224, 200, 112, (166,448,0): 230, 206, 116, (166,449,0): 232, 209, 116, (166,450,0): 232, 209, 116, (166,451,0): 228, 207, 114, (166,452,0): 223, 204, 110, (166,453,0): 219, 202, 110, (166,454,0): 219, 202, 110, (166,455,0): 220, 205, 114, (166,456,0): 218, 203, 112, (166,457,0): 219, 204, 113, (166,458,0): 222, 205, 115, (166,459,0): 225, 205, 118, (166,460,0): 227, 205, 119, (166,461,0): 226, 204, 118, (166,462,0): 227, 202, 118, (166,463,0): 224, 204, 118, (166,464,0): 218, 206, 120, (166,465,0): 216, 208, 123, (166,466,0): 216, 208, 125, (166,467,0): 213, 206, 125, (166,468,0): 210, 203, 123, (166,469,0): 204, 198, 120, (166,470,0): 197, 194, 117, (166,471,0): 193, 191, 117, (166,472,0): 190, 190, 118, (166,473,0): 187, 188, 120, (166,474,0): 183, 186, 119, (166,475,0): 178, 183, 117, (166,476,0): 176, 181, 117, (166,477,0): 174, 180, 118, (166,478,0): 173, 179, 119, (166,479,0): 171, 179, 120, (166,480,0): 173, 183, 123, (166,481,0): 171, 182, 122, (166,482,0): 172, 181, 124, (166,483,0): 172, 181, 124, (166,484,0): 171, 180, 125, (166,485,0): 167, 176, 123, (166,486,0): 160, 168, 117, (166,487,0): 154, 162, 113, (166,488,0): 152, 158, 112, (166,489,0): 147, 153, 109, (166,490,0): 140, 145, 104, (166,491,0): 134, 139, 99, (166,492,0): 130, 134, 97, (166,493,0): 125, 129, 94, (166,494,0): 121, 122, 88, (166,495,0): 114, 118, 85, (166,496,0): 116, 121, 89, (166,497,0): 116, 121, 91, (166,498,0): 115, 119, 92, (166,499,0): 114, 118, 91, (166,500,0): 112, 115, 88, (166,501,0): 109, 112, 85, (166,502,0): 106, 108, 84, (166,503,0): 104, 106, 82, (166,504,0): 102, 101, 80, (166,505,0): 100, 99, 78, (166,506,0): 99, 97, 76, (166,507,0): 97, 95, 74, (166,508,0): 94, 91, 72, (166,509,0): 92, 89, 70, (166,510,0): 92, 87, 68, (166,511,0): 92, 87, 68, (166,512,0): 92, 89, 70, (166,513,0): 93, 90, 71, (166,514,0): 96, 93, 76, (166,515,0): 100, 97, 78, (166,516,0): 104, 101, 84, (166,517,0): 107, 104, 85, (166,518,0): 110, 107, 88, (166,519,0): 112, 109, 90, (166,520,0): 110, 107, 88, (166,521,0): 109, 106, 87, (166,522,0): 110, 105, 85, (166,523,0): 109, 104, 84, (166,524,0): 109, 104, 84, (166,525,0): 110, 105, 85, (166,526,0): 112, 107, 87, (166,527,0): 113, 108, 86, (166,528,0): 116, 114, 91, (166,529,0): 117, 115, 90, (166,530,0): 117, 115, 90, (166,531,0): 118, 116, 91, (166,532,0): 119, 117, 92, (166,533,0): 120, 118, 93, (166,534,0): 121, 119, 94, (166,535,0): 122, 120, 95, (166,536,0): 124, 122, 97, (166,537,0): 119, 117, 92, (166,538,0): 114, 112, 87, (166,539,0): 110, 108, 83, (166,540,0): 109, 107, 82, (166,541,0): 107, 105, 80, (166,542,0): 104, 102, 77, (166,543,0): 102, 100, 77, (166,544,0): 99, 94, 74, (166,545,0): 97, 92, 73, (166,546,0): 95, 90, 71, (166,547,0): 92, 87, 68, (166,548,0): 90, 85, 66, (166,549,0): 89, 84, 65, (166,550,0): 89, 83, 67, (166,551,0): 89, 83, 67, (166,552,0): 89, 83, 69, (166,553,0): 89, 83, 69, (166,554,0): 89, 83, 71, (166,555,0): 89, 83, 71, (166,556,0): 90, 84, 72, (166,557,0): 91, 85, 73, (166,558,0): 93, 87, 75, (166,559,0): 92, 88, 76, (166,560,0): 92, 90, 78, (166,561,0): 91, 91, 79, (166,562,0): 93, 93, 83, (166,563,0): 94, 96, 85, (166,564,0): 97, 99, 88, (166,565,0): 99, 102, 91, (166,566,0): 101, 104, 95, (166,567,0): 100, 106, 96, (166,568,0): 99, 106, 98, (166,569,0): 98, 108, 99, (166,570,0): 100, 110, 101, (166,571,0): 101, 113, 103, (166,572,0): 102, 113, 105, (166,573,0): 103, 116, 107, (166,574,0): 104, 117, 108, (166,575,0): 104, 117, 110, (166,576,0): 105, 114, 111, (166,577,0): 105, 111, 109, (166,578,0): 103, 107, 106, (166,579,0): 99, 104, 100, (166,580,0): 96, 98, 97, (166,581,0): 91, 93, 90, (166,582,0): 89, 89, 89, (166,583,0): 88, 87, 85, (166,584,0): 85, 81, 80, (166,585,0): 84, 80, 79, (166,586,0): 84, 78, 78, (166,587,0): 82, 76, 76, (166,588,0): 82, 74, 72, (166,589,0): 81, 73, 71, (166,590,0): 80, 70, 69, (166,591,0): 80, 70, 68, (166,592,0): 80, 70, 68, (166,593,0): 80, 71, 66, (166,594,0): 80, 71, 66, (166,595,0): 81, 72, 67, (166,596,0): 81, 72, 67, (166,597,0): 82, 73, 68, (166,598,0): 83, 74, 69, (166,599,0): 83, 74, 69, (167,0,0): 42, 30, 44, (167,1,0): 41, 29, 43, (167,2,0): 40, 28, 42, (167,3,0): 39, 27, 41, (167,4,0): 39, 27, 41, (167,5,0): 40, 28, 42, (167,6,0): 41, 29, 43, (167,7,0): 42, 30, 44, (167,8,0): 39, 27, 41, (167,9,0): 39, 27, 41, (167,10,0): 40, 28, 42, (167,11,0): 40, 28, 42, (167,12,0): 41, 29, 43, (167,13,0): 41, 29, 43, (167,14,0): 42, 30, 44, (167,15,0): 42, 30, 44, (167,16,0): 46, 29, 48, (167,17,0): 45, 28, 47, (167,18,0): 43, 29, 46, (167,19,0): 42, 28, 45, (167,20,0): 40, 27, 44, (167,21,0): 39, 26, 43, (167,22,0): 38, 27, 41, (167,23,0): 37, 26, 40, (167,24,0): 41, 29, 41, (167,25,0): 41, 29, 41, (167,26,0): 45, 29, 42, (167,27,0): 46, 30, 43, (167,28,0): 50, 30, 42, (167,29,0): 51, 31, 43, (167,30,0): 54, 30, 44, (167,31,0): 56, 30, 43, (167,32,0): 57, 27, 39, (167,33,0): 60, 28, 41, (167,34,0): 64, 31, 42, (167,35,0): 68, 35, 46, (167,36,0): 74, 38, 50, (167,37,0): 78, 42, 52, (167,38,0): 82, 44, 55, (167,39,0): 86, 46, 57, (167,40,0): 84, 42, 52, (167,41,0): 85, 42, 52, (167,42,0): 85, 42, 52, (167,43,0): 87, 41, 51, (167,44,0): 88, 41, 51, (167,45,0): 88, 41, 51, (167,46,0): 88, 41, 51, (167,47,0): 88, 41, 51, (167,48,0): 87, 40, 50, (167,49,0): 87, 40, 50, (167,50,0): 89, 39, 50, (167,51,0): 90, 40, 51, (167,52,0): 91, 39, 51, (167,53,0): 93, 39, 52, (167,54,0): 95, 39, 52, (167,55,0): 95, 39, 52, (167,56,0): 93, 37, 50, (167,57,0): 93, 37, 50, (167,58,0): 92, 38, 51, (167,59,0): 91, 39, 51, (167,60,0): 90, 40, 51, (167,61,0): 90, 40, 51, (167,62,0): 89, 42, 52, (167,63,0): 89, 42, 52, (167,64,0): 90, 40, 51, (167,65,0): 91, 39, 51, (167,66,0): 89, 39, 50, (167,67,0): 89, 39, 50, (167,68,0): 86, 39, 49, (167,69,0): 85, 38, 48, (167,70,0): 83, 37, 47, (167,71,0): 83, 37, 47, (167,72,0): 82, 39, 48, (167,73,0): 81, 38, 47, (167,74,0): 79, 38, 46, (167,75,0): 77, 36, 44, (167,76,0): 75, 35, 43, (167,77,0): 73, 33, 41, (167,78,0): 70, 33, 40, (167,79,0): 69, 32, 39, (167,80,0): 71, 31, 39, (167,81,0): 71, 31, 39, (167,82,0): 72, 32, 40, (167,83,0): 72, 32, 40, (167,84,0): 73, 33, 41, (167,85,0): 73, 33, 41, (167,86,0): 74, 34, 42, (167,87,0): 74, 34, 42, (167,88,0): 77, 37, 45, (167,89,0): 77, 37, 45, (167,90,0): 76, 36, 44, (167,91,0): 76, 36, 44, (167,92,0): 75, 35, 43, (167,93,0): 75, 35, 43, (167,94,0): 74, 34, 42, (167,95,0): 74, 34, 42, (167,96,0): 77, 36, 42, (167,97,0): 76, 35, 41, (167,98,0): 74, 33, 41, (167,99,0): 70, 30, 38, (167,100,0): 64, 27, 35, (167,101,0): 56, 23, 30, (167,102,0): 51, 20, 28, (167,103,0): 46, 19, 26, (167,104,0): 45, 19, 30, (167,105,0): 40, 19, 28, (167,106,0): 37, 17, 28, (167,107,0): 32, 15, 25, (167,108,0): 29, 13, 24, (167,109,0): 26, 13, 23, (167,110,0): 26, 12, 25, (167,111,0): 26, 12, 25, (167,112,0): 33, 17, 28, (167,113,0): 33, 17, 28, (167,114,0): 32, 16, 27, (167,115,0): 32, 16, 27, (167,116,0): 31, 15, 26, (167,117,0): 31, 15, 26, (167,118,0): 30, 14, 25, (167,119,0): 30, 14, 25, (167,120,0): 29, 13, 24, (167,121,0): 29, 13, 24, (167,122,0): 29, 13, 24, (167,123,0): 29, 13, 24, (167,124,0): 28, 12, 23, (167,125,0): 28, 12, 23, (167,126,0): 28, 12, 23, (167,127,0): 28, 12, 23, (167,128,0): 31, 13, 27, (167,129,0): 31, 13, 27, (167,130,0): 32, 14, 26, (167,131,0): 32, 14, 26, (167,132,0): 33, 15, 27, (167,133,0): 33, 15, 27, (167,134,0): 34, 17, 27, (167,135,0): 34, 17, 27, (167,136,0): 31, 14, 22, (167,137,0): 32, 15, 23, (167,138,0): 33, 16, 24, (167,139,0): 34, 17, 25, (167,140,0): 35, 18, 24, (167,141,0): 36, 19, 25, (167,142,0): 37, 20, 26, (167,143,0): 39, 20, 24, (167,144,0): 42, 22, 24, (167,145,0): 43, 21, 23, (167,146,0): 44, 22, 24, (167,147,0): 45, 23, 25, (167,148,0): 46, 24, 26, (167,149,0): 47, 25, 27, (167,150,0): 48, 26, 28, (167,151,0): 48, 26, 28, (167,152,0): 49, 27, 29, (167,153,0): 49, 27, 29, (167,154,0): 49, 27, 29, (167,155,0): 49, 27, 29, (167,156,0): 49, 27, 29, (167,157,0): 49, 27, 29, (167,158,0): 49, 27, 29, (167,159,0): 49, 28, 27, (167,160,0): 51, 30, 29, (167,161,0): 51, 30, 27, (167,162,0): 51, 30, 27, (167,163,0): 51, 30, 27, (167,164,0): 51, 30, 27, (167,165,0): 51, 30, 27, (167,166,0): 51, 30, 27, (167,167,0): 51, 30, 27, (167,168,0): 50, 29, 26, (167,169,0): 50, 29, 26, (167,170,0): 49, 28, 25, (167,171,0): 49, 28, 25, (167,172,0): 48, 27, 24, (167,173,0): 48, 27, 24, (167,174,0): 47, 26, 23, (167,175,0): 47, 26, 23, (167,176,0): 51, 30, 27, (167,177,0): 50, 29, 26, (167,178,0): 49, 28, 25, (167,179,0): 48, 27, 24, (167,180,0): 46, 25, 22, (167,181,0): 45, 24, 21, (167,182,0): 44, 23, 20, (167,183,0): 43, 22, 19, (167,184,0): 47, 26, 23, (167,185,0): 47, 26, 23, (167,186,0): 47, 26, 23, (167,187,0): 47, 26, 23, (167,188,0): 47, 26, 23, (167,189,0): 47, 26, 23, (167,190,0): 47, 26, 23, (167,191,0): 47, 26, 23, (167,192,0): 43, 22, 17, (167,193,0): 44, 23, 18, (167,194,0): 44, 23, 18, (167,195,0): 45, 24, 19, (167,196,0): 48, 24, 20, (167,197,0): 49, 25, 21, (167,198,0): 49, 25, 21, (167,199,0): 50, 26, 22, (167,200,0): 52, 27, 23, (167,201,0): 52, 27, 23, (167,202,0): 53, 25, 22, (167,203,0): 52, 24, 21, (167,204,0): 51, 23, 20, (167,205,0): 51, 23, 20, (167,206,0): 51, 21, 19, (167,207,0): 50, 22, 19, (167,208,0): 48, 20, 17, (167,209,0): 47, 22, 18, (167,210,0): 48, 23, 18, (167,211,0): 50, 25, 20, (167,212,0): 50, 25, 20, (167,213,0): 50, 25, 20, (167,214,0): 49, 24, 17, (167,215,0): 49, 24, 17, (167,216,0): 46, 22, 12, (167,217,0): 47, 23, 13, (167,218,0): 47, 23, 13, (167,219,0): 48, 24, 14, (167,220,0): 49, 25, 13, (167,221,0): 50, 26, 14, (167,222,0): 50, 26, 14, (167,223,0): 51, 27, 15, (167,224,0): 50, 25, 18, (167,225,0): 50, 25, 18, (167,226,0): 51, 26, 19, (167,227,0): 51, 26, 19, (167,228,0): 54, 27, 18, (167,229,0): 54, 27, 18, (167,230,0): 55, 28, 19, (167,231,0): 55, 28, 19, (167,232,0): 59, 31, 20, (167,233,0): 59, 31, 20, (167,234,0): 59, 29, 18, (167,235,0): 59, 29, 18, (167,236,0): 58, 28, 17, (167,237,0): 58, 28, 17, (167,238,0): 59, 27, 14, (167,239,0): 57, 27, 16, (167,240,0): 56, 29, 18, (167,241,0): 54, 30, 18, (167,242,0): 53, 29, 17, (167,243,0): 52, 28, 16, (167,244,0): 51, 27, 15, (167,245,0): 50, 26, 14, (167,246,0): 49, 25, 13, (167,247,0): 49, 25, 13, (167,248,0): 52, 28, 16, (167,249,0): 52, 28, 16, (167,250,0): 53, 29, 17, (167,251,0): 54, 30, 18, (167,252,0): 55, 31, 19, (167,253,0): 56, 32, 20, (167,254,0): 57, 33, 21, (167,255,0): 57, 33, 21, (167,256,0): 62, 34, 23, (167,257,0): 62, 34, 23, (167,258,0): 61, 33, 22, (167,259,0): 61, 33, 22, (167,260,0): 60, 31, 23, (167,261,0): 60, 31, 23, (167,262,0): 59, 30, 22, (167,263,0): 59, 30, 22, (167,264,0): 61, 32, 26, (167,265,0): 61, 32, 26, (167,266,0): 61, 32, 28, (167,267,0): 62, 33, 29, (167,268,0): 62, 33, 29, (167,269,0): 63, 34, 30, (167,270,0): 63, 33, 31, (167,271,0): 63, 33, 31, (167,272,0): 65, 35, 33, (167,273,0): 66, 36, 34, (167,274,0): 66, 37, 33, (167,275,0): 67, 38, 34, (167,276,0): 69, 40, 36, (167,277,0): 70, 41, 35, (167,278,0): 70, 41, 33, (167,279,0): 71, 42, 34, (167,280,0): 73, 45, 34, (167,281,0): 73, 45, 33, (167,282,0): 74, 46, 32, (167,283,0): 75, 47, 33, (167,284,0): 76, 49, 32, (167,285,0): 77, 50, 33, (167,286,0): 78, 51, 32, (167,287,0): 77, 52, 32, (167,288,0): 77, 55, 32, (167,289,0): 78, 56, 33, (167,290,0): 78, 56, 33, (167,291,0): 79, 57, 34, (167,292,0): 81, 59, 36, (167,293,0): 82, 60, 37, (167,294,0): 82, 60, 37, (167,295,0): 83, 61, 38, (167,296,0): 86, 64, 41, (167,297,0): 86, 64, 41, (167,298,0): 87, 65, 42, (167,299,0): 87, 65, 42, (167,300,0): 88, 66, 43, (167,301,0): 88, 66, 43, (167,302,0): 89, 67, 44, (167,303,0): 89, 67, 44, (167,304,0): 88, 66, 43, (167,305,0): 89, 67, 43, (167,306,0): 91, 69, 45, (167,307,0): 94, 73, 44, (167,308,0): 99, 75, 47, (167,309,0): 102, 79, 48, (167,310,0): 105, 80, 49, (167,311,0): 106, 81, 50, (167,312,0): 110, 86, 52, (167,313,0): 116, 92, 54, (167,314,0): 122, 97, 56, (167,315,0): 130, 107, 57, (167,316,0): 148, 124, 64, (167,317,0): 168, 145, 77, (167,318,0): 179, 157, 82, (167,319,0): 177, 158, 81, (167,320,0): 168, 150, 78, (167,321,0): 166, 147, 78, (167,322,0): 164, 147, 78, (167,323,0): 165, 147, 81, (167,324,0): 165, 150, 85, (167,325,0): 167, 151, 89, (167,326,0): 164, 150, 89, (167,327,0): 162, 147, 88, (167,328,0): 160, 143, 87, (167,329,0): 158, 141, 85, (167,330,0): 159, 138, 83, (167,331,0): 158, 137, 80, (167,332,0): 162, 137, 81, (167,333,0): 166, 141, 84, (167,334,0): 173, 144, 88, (167,335,0): 174, 148, 89, (167,336,0): 172, 150, 90, (167,337,0): 172, 150, 90, (167,338,0): 175, 149, 90, (167,339,0): 179, 148, 91, (167,340,0): 185, 150, 94, (167,341,0): 192, 153, 96, (167,342,0): 196, 156, 97, (167,343,0): 199, 159, 98, (167,344,0): 204, 164, 102, (167,345,0): 206, 167, 102, (167,346,0): 212, 172, 103, (167,347,0): 219, 177, 105, (167,348,0): 229, 181, 107, (167,349,0): 237, 185, 109, (167,350,0): 244, 188, 111, (167,351,0): 247, 191, 116, (167,352,0): 239, 182, 113, (167,353,0): 238, 181, 114, (167,354,0): 237, 180, 113, (167,355,0): 233, 178, 111, (167,356,0): 232, 178, 108, (167,357,0): 229, 177, 104, (167,358,0): 228, 176, 103, (167,359,0): 225, 176, 100, (167,360,0): 223, 176, 98, (167,361,0): 225, 178, 98, (167,362,0): 226, 181, 100, (167,363,0): 227, 185, 101, (167,364,0): 230, 188, 102, (167,365,0): 231, 191, 104, (167,366,0): 232, 192, 105, (167,367,0): 231, 194, 106, (167,368,0): 222, 191, 101, (167,369,0): 219, 192, 101, (167,370,0): 219, 192, 105, (167,371,0): 218, 190, 106, (167,372,0): 216, 188, 105, (167,373,0): 212, 185, 104, (167,374,0): 209, 183, 106, (167,375,0): 205, 182, 104, (167,376,0): 195, 171, 97, (167,377,0): 194, 172, 97, (167,378,0): 194, 175, 99, (167,379,0): 195, 177, 101, (167,380,0): 197, 180, 102, (167,381,0): 197, 181, 103, (167,382,0): 199, 183, 105, (167,383,0): 201, 183, 107, (167,384,0): 200, 182, 108, (167,385,0): 200, 182, 108, (167,386,0): 203, 183, 110, (167,387,0): 204, 186, 110, (167,388,0): 206, 187, 110, (167,389,0): 207, 190, 110, (167,390,0): 210, 192, 110, (167,391,0): 209, 193, 108, (167,392,0): 209, 191, 105, (167,393,0): 212, 196, 108, (167,394,0): 216, 199, 109, (167,395,0): 215, 200, 107, (167,396,0): 215, 199, 104, (167,397,0): 216, 202, 105, (167,398,0): 221, 205, 109, (167,399,0): 225, 210, 109, (167,400,0): 230, 211, 108, (167,401,0): 233, 214, 109, (167,402,0): 239, 218, 113, (167,403,0): 242, 223, 118, (167,404,0): 245, 226, 121, (167,405,0): 244, 227, 119, (167,406,0): 244, 226, 118, (167,407,0): 242, 225, 117, (167,408,0): 243, 227, 116, (167,409,0): 243, 230, 118, (167,410,0): 245, 232, 120, (167,411,0): 247, 236, 121, (167,412,0): 250, 237, 123, (167,413,0): 250, 239, 124, (167,414,0): 250, 239, 123, (167,415,0): 249, 239, 124, (167,416,0): 249, 239, 128, (167,417,0): 247, 239, 130, (167,418,0): 250, 240, 129, (167,419,0): 249, 241, 130, (167,420,0): 251, 241, 130, (167,421,0): 248, 241, 127, (167,422,0): 249, 239, 126, (167,423,0): 246, 239, 125, (167,424,0): 253, 243, 132, (167,425,0): 249, 241, 132, (167,426,0): 247, 236, 130, (167,427,0): 238, 229, 124, (167,428,0): 231, 219, 119, (167,429,0): 220, 210, 112, (167,430,0): 214, 201, 105, (167,431,0): 207, 198, 105, (167,432,0): 201, 197, 110, (167,433,0): 195, 193, 110, (167,434,0): 190, 188, 105, (167,435,0): 192, 187, 105, (167,436,0): 194, 189, 107, (167,437,0): 199, 193, 109, (167,438,0): 201, 193, 108, (167,439,0): 203, 193, 106, (167,440,0): 198, 186, 100, (167,441,0): 203, 189, 101, (167,442,0): 208, 190, 104, (167,443,0): 208, 191, 103, (167,444,0): 210, 190, 103, (167,445,0): 214, 192, 106, (167,446,0): 219, 197, 111, (167,447,0): 224, 203, 114, (167,448,0): 230, 209, 116, (167,449,0): 231, 211, 116, (167,450,0): 231, 212, 118, (167,451,0): 228, 209, 115, (167,452,0): 222, 206, 111, (167,453,0): 219, 204, 109, (167,454,0): 218, 205, 111, (167,455,0): 220, 207, 113, (167,456,0): 222, 209, 117, (167,457,0): 223, 210, 118, (167,458,0): 225, 210, 119, (167,459,0): 227, 210, 120, (167,460,0): 228, 208, 121, (167,461,0): 227, 207, 120, (167,462,0): 225, 203, 117, (167,463,0): 221, 203, 117, (167,464,0): 218, 208, 121, (167,465,0): 215, 211, 124, (167,466,0): 215, 210, 126, (167,467,0): 214, 209, 127, (167,468,0): 209, 206, 125, (167,469,0): 204, 201, 124, (167,470,0): 198, 196, 121, (167,471,0): 193, 193, 119, (167,472,0): 192, 193, 123, (167,473,0): 189, 192, 123, (167,474,0): 183, 188, 122, (167,475,0): 179, 185, 121, (167,476,0): 176, 182, 120, (167,477,0): 174, 180, 120, (167,478,0): 173, 178, 120, (167,479,0): 170, 178, 119, (167,480,0): 173, 184, 124, (167,481,0): 170, 184, 125, (167,482,0): 171, 182, 124, (167,483,0): 171, 182, 126, (167,484,0): 169, 179, 126, (167,485,0): 166, 174, 123, (167,486,0): 158, 166, 117, (167,487,0): 152, 160, 113, (167,488,0): 152, 158, 114, (167,489,0): 147, 152, 111, (167,490,0): 140, 145, 105, (167,491,0): 134, 138, 101, (167,492,0): 129, 133, 98, (167,493,0): 124, 128, 93, (167,494,0): 120, 121, 89, (167,495,0): 114, 117, 86, (167,496,0): 117, 120, 91, (167,497,0): 116, 121, 91, (167,498,0): 115, 119, 92, (167,499,0): 113, 117, 90, (167,500,0): 111, 114, 87, (167,501,0): 107, 110, 83, (167,502,0): 104, 106, 82, (167,503,0): 102, 104, 80, (167,504,0): 100, 99, 78, (167,505,0): 100, 99, 78, (167,506,0): 99, 97, 76, (167,507,0): 97, 95, 74, (167,508,0): 94, 91, 72, (167,509,0): 91, 88, 69, (167,510,0): 91, 86, 67, (167,511,0): 89, 83, 67, (167,512,0): 87, 84, 67, (167,513,0): 89, 86, 69, (167,514,0): 92, 89, 74, (167,515,0): 97, 94, 77, (167,516,0): 101, 98, 81, (167,517,0): 106, 103, 86, (167,518,0): 109, 106, 89, (167,519,0): 111, 108, 89, (167,520,0): 111, 108, 89, (167,521,0): 109, 106, 87, (167,522,0): 110, 105, 85, (167,523,0): 109, 104, 84, (167,524,0): 109, 104, 84, (167,525,0): 111, 106, 86, (167,526,0): 113, 108, 88, (167,527,0): 112, 110, 87, (167,528,0): 115, 115, 89, (167,529,0): 113, 116, 89, (167,530,0): 116, 116, 90, (167,531,0): 115, 118, 91, (167,532,0): 119, 119, 93, (167,533,0): 119, 122, 95, (167,534,0): 123, 123, 97, (167,535,0): 122, 125, 98, (167,536,0): 123, 123, 97, (167,537,0): 117, 120, 93, (167,538,0): 113, 113, 87, (167,539,0): 108, 111, 84, (167,540,0): 109, 109, 83, (167,541,0): 106, 109, 82, (167,542,0): 105, 105, 79, (167,543,0): 103, 103, 79, (167,544,0): 99, 97, 76, (167,545,0): 99, 94, 75, (167,546,0): 96, 91, 72, (167,547,0): 93, 88, 69, (167,548,0): 91, 86, 67, (167,549,0): 89, 84, 65, (167,550,0): 88, 82, 66, (167,551,0): 88, 82, 66, (167,552,0): 90, 84, 70, (167,553,0): 89, 83, 69, (167,554,0): 89, 83, 71, (167,555,0): 90, 84, 72, (167,556,0): 91, 85, 73, (167,557,0): 93, 87, 75, (167,558,0): 94, 88, 76, (167,559,0): 94, 90, 78, (167,560,0): 95, 93, 81, (167,561,0): 94, 94, 82, (167,562,0): 95, 97, 86, (167,563,0): 98, 100, 89, (167,564,0): 99, 102, 91, (167,565,0): 102, 105, 94, (167,566,0): 102, 108, 98, (167,567,0): 102, 110, 99, (167,568,0): 98, 108, 99, (167,569,0): 98, 108, 99, (167,570,0): 98, 110, 100, (167,571,0): 98, 111, 101, (167,572,0): 100, 113, 104, (167,573,0): 103, 116, 107, (167,574,0): 103, 119, 109, (167,575,0): 106, 119, 112, (167,576,0): 108, 117, 116, (167,577,0): 107, 113, 113, (167,578,0): 103, 109, 109, (167,579,0): 99, 103, 104, (167,580,0): 94, 98, 99, (167,581,0): 92, 94, 93, (167,582,0): 89, 91, 90, (167,583,0): 88, 88, 88, (167,584,0): 83, 81, 82, (167,585,0): 84, 80, 79, (167,586,0): 83, 79, 78, (167,587,0): 82, 76, 76, (167,588,0): 80, 75, 72, (167,589,0): 80, 72, 70, (167,590,0): 79, 71, 69, (167,591,0): 79, 69, 68, (167,592,0): 81, 71, 69, (167,593,0): 81, 72, 67, (167,594,0): 80, 71, 66, (167,595,0): 80, 71, 66, (167,596,0): 81, 72, 67, (167,597,0): 81, 72, 67, (167,598,0): 82, 73, 68, (167,599,0): 83, 74, 69, (168,0,0): 42, 30, 44, (168,1,0): 42, 30, 44, (168,2,0): 41, 29, 43, (168,3,0): 41, 29, 43, (168,4,0): 40, 28, 42, (168,5,0): 40, 28, 42, (168,6,0): 39, 27, 41, (168,7,0): 39, 27, 41, (168,8,0): 39, 27, 41, (168,9,0): 39, 27, 41, (168,10,0): 39, 27, 41, (168,11,0): 39, 27, 41, (168,12,0): 39, 27, 41, (168,13,0): 39, 27, 41, (168,14,0): 39, 27, 41, (168,15,0): 39, 27, 41, (168,16,0): 42, 25, 44, (168,17,0): 42, 25, 44, (168,18,0): 40, 26, 43, (168,19,0): 40, 26, 43, (168,20,0): 39, 26, 43, (168,21,0): 39, 26, 43, (168,22,0): 38, 27, 41, (168,23,0): 38, 27, 41, (168,24,0): 39, 27, 39, (168,25,0): 40, 28, 40, (168,26,0): 44, 28, 41, (168,27,0): 45, 29, 42, (168,28,0): 49, 29, 41, (168,29,0): 50, 30, 42, (168,30,0): 52, 28, 42, (168,31,0): 53, 27, 40, (168,32,0): 63, 29, 43, (168,33,0): 67, 31, 43, (168,34,0): 70, 34, 46, (168,35,0): 73, 37, 49, (168,36,0): 76, 38, 49, (168,37,0): 80, 40, 51, (168,38,0): 80, 40, 51, (168,39,0): 82, 40, 50, (168,40,0): 85, 42, 52, (168,41,0): 86, 40, 51, (168,42,0): 85, 39, 49, (168,43,0): 85, 38, 48, (168,44,0): 86, 39, 49, (168,45,0): 90, 40, 49, (168,46,0): 92, 42, 51, (168,47,0): 92, 45, 53, (168,48,0): 91, 44, 54, (168,49,0): 90, 43, 53, (168,50,0): 91, 41, 52, (168,51,0): 90, 40, 51, (168,52,0): 91, 39, 51, (168,53,0): 93, 39, 52, (168,54,0): 96, 40, 53, (168,55,0): 97, 41, 54, (168,56,0): 97, 41, 54, (168,57,0): 96, 40, 53, (168,58,0): 92, 38, 51, (168,59,0): 89, 37, 49, (168,60,0): 87, 37, 48, (168,61,0): 88, 38, 49, (168,62,0): 87, 40, 50, (168,63,0): 88, 41, 51, (168,64,0): 88, 38, 49, (168,65,0): 89, 37, 49, (168,66,0): 88, 38, 49, (168,67,0): 88, 38, 49, (168,68,0): 86, 39, 49, (168,69,0): 86, 39, 49, (168,70,0): 85, 39, 49, (168,71,0): 85, 39, 49, (168,72,0): 78, 35, 44, (168,73,0): 78, 35, 44, (168,74,0): 76, 35, 43, (168,75,0): 75, 34, 42, (168,76,0): 74, 34, 42, (168,77,0): 73, 33, 41, (168,78,0): 70, 33, 40, (168,79,0): 70, 33, 40, (168,80,0): 73, 34, 39, (168,81,0): 74, 33, 39, (168,82,0): 74, 33, 39, (168,83,0): 74, 33, 39, (168,84,0): 74, 33, 39, (168,85,0): 74, 33, 39, (168,86,0): 74, 33, 39, (168,87,0): 74, 33, 39, (168,88,0): 77, 36, 42, (168,89,0): 77, 36, 42, (168,90,0): 77, 36, 42, (168,91,0): 77, 36, 42, (168,92,0): 77, 36, 42, (168,93,0): 77, 36, 42, (168,94,0): 77, 36, 42, (168,95,0): 77, 36, 42, (168,96,0): 76, 33, 40, (168,97,0): 75, 34, 40, (168,98,0): 75, 34, 42, (168,99,0): 74, 34, 42, (168,100,0): 69, 32, 40, (168,101,0): 64, 29, 36, (168,102,0): 58, 25, 34, (168,103,0): 54, 24, 32, (168,104,0): 42, 14, 26, (168,105,0): 38, 15, 25, (168,106,0): 36, 14, 26, (168,107,0): 32, 15, 25, (168,108,0): 30, 14, 25, (168,109,0): 29, 16, 26, (168,110,0): 29, 15, 28, (168,111,0): 30, 16, 29, (168,112,0): 30, 14, 25, (168,113,0): 30, 14, 25, (168,114,0): 29, 13, 24, (168,115,0): 29, 13, 24, (168,116,0): 28, 12, 23, (168,117,0): 28, 12, 23, (168,118,0): 27, 11, 22, (168,119,0): 27, 11, 22, (168,120,0): 27, 11, 22, (168,121,0): 27, 11, 22, (168,122,0): 27, 11, 22, (168,123,0): 27, 11, 22, (168,124,0): 27, 11, 22, (168,125,0): 27, 11, 22, (168,126,0): 27, 11, 22, (168,127,0): 27, 11, 22, (168,128,0): 29, 11, 25, (168,129,0): 30, 12, 26, (168,130,0): 30, 12, 24, (168,131,0): 31, 13, 25, (168,132,0): 31, 13, 25, (168,133,0): 32, 14, 26, (168,134,0): 32, 15, 25, (168,135,0): 32, 15, 25, (168,136,0): 32, 15, 23, (168,137,0): 33, 16, 24, (168,138,0): 33, 16, 24, (168,139,0): 34, 17, 25, (168,140,0): 34, 17, 23, (168,141,0): 35, 18, 24, (168,142,0): 35, 18, 24, (168,143,0): 37, 18, 22, (168,144,0): 40, 20, 22, (168,145,0): 42, 20, 22, (168,146,0): 42, 20, 22, (168,147,0): 43, 21, 23, (168,148,0): 44, 22, 24, (168,149,0): 45, 23, 25, (168,150,0): 46, 24, 26, (168,151,0): 47, 25, 27, (168,152,0): 50, 28, 30, (168,153,0): 50, 28, 30, (168,154,0): 50, 28, 30, (168,155,0): 50, 28, 30, (168,156,0): 50, 28, 30, (168,157,0): 50, 28, 30, (168,158,0): 50, 28, 30, (168,159,0): 50, 29, 28, (168,160,0): 50, 29, 28, (168,161,0): 50, 29, 26, (168,162,0): 51, 30, 27, (168,163,0): 51, 30, 27, (168,164,0): 52, 31, 28, (168,165,0): 52, 31, 28, (168,166,0): 53, 32, 29, (168,167,0): 53, 32, 29, (168,168,0): 50, 29, 26, (168,169,0): 50, 29, 26, (168,170,0): 49, 28, 25, (168,171,0): 49, 28, 25, (168,172,0): 48, 27, 24, (168,173,0): 48, 27, 24, (168,174,0): 47, 26, 23, (168,175,0): 47, 26, 23, (168,176,0): 47, 26, 23, (168,177,0): 47, 26, 23, (168,178,0): 46, 25, 22, (168,179,0): 46, 25, 22, (168,180,0): 45, 24, 21, (168,181,0): 45, 24, 21, (168,182,0): 44, 23, 20, (168,183,0): 44, 23, 20, (168,184,0): 45, 24, 21, (168,185,0): 45, 24, 21, (168,186,0): 45, 24, 21, (168,187,0): 45, 24, 21, (168,188,0): 45, 24, 21, (168,189,0): 45, 24, 21, (168,190,0): 45, 24, 21, (168,191,0): 45, 24, 21, (168,192,0): 45, 24, 19, (168,193,0): 45, 25, 18, (168,194,0): 48, 25, 19, (168,195,0): 49, 26, 20, (168,196,0): 50, 27, 21, (168,197,0): 50, 27, 21, (168,198,0): 52, 27, 22, (168,199,0): 52, 27, 22, (168,200,0): 54, 26, 22, (168,201,0): 54, 26, 22, (168,202,0): 55, 27, 23, (168,203,0): 55, 27, 23, (168,204,0): 56, 27, 23, (168,205,0): 54, 25, 21, (168,206,0): 53, 24, 20, (168,207,0): 51, 23, 19, (168,208,0): 47, 19, 16, (168,209,0): 45, 20, 16, (168,210,0): 46, 21, 16, (168,211,0): 47, 22, 17, (168,212,0): 48, 23, 18, (168,213,0): 48, 23, 18, (168,214,0): 49, 24, 17, (168,215,0): 49, 24, 17, (168,216,0): 51, 27, 17, (168,217,0): 50, 26, 16, (168,218,0): 48, 24, 14, (168,219,0): 48, 24, 14, (168,220,0): 48, 24, 12, (168,221,0): 50, 26, 14, (168,222,0): 52, 28, 16, (168,223,0): 53, 29, 17, (168,224,0): 52, 27, 20, (168,225,0): 52, 27, 20, (168,226,0): 52, 27, 20, (168,227,0): 53, 28, 21, (168,228,0): 55, 28, 19, (168,229,0): 56, 29, 20, (168,230,0): 56, 29, 20, (168,231,0): 56, 29, 20, (168,232,0): 61, 33, 22, (168,233,0): 61, 33, 22, (168,234,0): 62, 32, 21, (168,235,0): 61, 31, 20, (168,236,0): 59, 29, 18, (168,237,0): 56, 26, 15, (168,238,0): 56, 24, 11, (168,239,0): 52, 22, 11, (168,240,0): 53, 26, 15, (168,241,0): 51, 27, 17, (168,242,0): 51, 27, 17, (168,243,0): 50, 26, 16, (168,244,0): 50, 26, 16, (168,245,0): 49, 25, 15, (168,246,0): 49, 25, 15, (168,247,0): 48, 24, 14, (168,248,0): 51, 27, 17, (168,249,0): 52, 28, 18, (168,250,0): 52, 28, 18, (168,251,0): 53, 29, 19, (168,252,0): 53, 29, 19, (168,253,0): 54, 30, 20, (168,254,0): 54, 30, 20, (168,255,0): 54, 30, 20, (168,256,0): 59, 31, 20, (168,257,0): 59, 31, 20, (168,258,0): 59, 31, 20, (168,259,0): 59, 31, 20, (168,260,0): 59, 30, 22, (168,261,0): 59, 30, 22, (168,262,0): 59, 30, 22, (168,263,0): 59, 30, 22, (168,264,0): 59, 30, 24, (168,265,0): 60, 31, 25, (168,266,0): 60, 31, 27, (168,267,0): 61, 32, 28, (168,268,0): 63, 34, 30, (168,269,0): 64, 35, 31, (168,270,0): 64, 34, 32, (168,271,0): 65, 35, 33, (168,272,0): 67, 39, 36, (168,273,0): 67, 39, 36, (168,274,0): 68, 40, 37, (168,275,0): 68, 40, 36, (168,276,0): 68, 40, 36, (168,277,0): 68, 41, 34, (168,278,0): 69, 42, 33, (168,279,0): 69, 42, 33, (168,280,0): 70, 43, 32, (168,281,0): 73, 47, 34, (168,282,0): 77, 51, 36, (168,283,0): 79, 53, 38, (168,284,0): 78, 52, 35, (168,285,0): 78, 52, 35, (168,286,0): 80, 54, 37, (168,287,0): 82, 57, 37, (168,288,0): 79, 57, 34, (168,289,0): 79, 57, 34, (168,290,0): 80, 58, 35, (168,291,0): 81, 59, 36, (168,292,0): 82, 60, 37, (168,293,0): 83, 61, 38, (168,294,0): 84, 62, 39, (168,295,0): 84, 62, 39, (168,296,0): 81, 59, 36, (168,297,0): 84, 62, 39, (168,298,0): 88, 66, 43, (168,299,0): 91, 69, 46, (168,300,0): 92, 70, 47, (168,301,0): 90, 68, 45, (168,302,0): 87, 65, 42, (168,303,0): 85, 63, 40, (168,304,0): 85, 65, 41, (168,305,0): 86, 66, 41, (168,306,0): 88, 66, 42, (168,307,0): 91, 70, 41, (168,308,0): 94, 73, 44, (168,309,0): 98, 77, 46, (168,310,0): 104, 81, 50, (168,311,0): 106, 83, 51, (168,312,0): 109, 84, 53, (168,313,0): 112, 88, 52, (168,314,0): 120, 97, 56, (168,315,0): 134, 112, 63, (168,316,0): 152, 130, 73, (168,317,0): 164, 143, 76, (168,318,0): 170, 150, 77, (168,319,0): 171, 152, 76, (168,320,0): 161, 143, 71, (168,321,0): 161, 142, 73, (168,322,0): 160, 143, 74, (168,323,0): 162, 144, 78, (168,324,0): 162, 147, 82, (168,325,0): 165, 149, 87, (168,326,0): 167, 153, 92, (168,327,0): 168, 154, 93, (168,328,0): 164, 148, 89, (168,329,0): 163, 147, 88, (168,330,0): 164, 143, 86, (168,331,0): 163, 143, 84, (168,332,0): 166, 141, 84, (168,333,0): 169, 145, 85, (168,334,0): 175, 146, 88, (168,335,0): 174, 148, 87, (168,336,0): 178, 154, 92, (168,337,0): 177, 153, 91, (168,338,0): 179, 150, 90, (168,339,0): 182, 150, 91, (168,340,0): 188, 152, 94, (168,341,0): 195, 156, 99, (168,342,0): 201, 161, 102, (168,343,0): 204, 164, 103, (168,344,0): 204, 164, 102, (168,345,0): 205, 166, 99, (168,346,0): 209, 169, 99, (168,347,0): 217, 175, 101, (168,348,0): 227, 181, 104, (168,349,0): 234, 185, 108, (168,350,0): 238, 185, 107, (168,351,0): 237, 184, 108, (168,352,0): 229, 176, 108, (168,353,0): 225, 174, 109, (168,354,0): 222, 171, 106, (168,355,0): 219, 168, 103, (168,356,0): 219, 168, 102, (168,357,0): 220, 171, 102, (168,358,0): 223, 174, 105, (168,359,0): 223, 176, 104, (168,360,0): 212, 168, 93, (168,361,0): 215, 172, 94, (168,362,0): 218, 177, 98, (168,363,0): 222, 181, 101, (168,364,0): 225, 184, 102, (168,365,0): 227, 186, 104, (168,366,0): 227, 186, 104, (168,367,0): 224, 188, 102, (168,368,0): 225, 195, 107, (168,369,0): 220, 195, 103, (168,370,0): 217, 191, 104, (168,371,0): 212, 188, 102, (168,372,0): 209, 184, 100, (168,373,0): 205, 183, 100, (168,374,0): 204, 181, 103, (168,375,0): 203, 182, 103, (168,376,0): 198, 179, 103, (168,377,0): 194, 176, 100, (168,378,0): 191, 173, 97, (168,379,0): 191, 175, 98, (168,380,0): 195, 179, 101, (168,381,0): 198, 185, 106, (168,382,0): 200, 187, 108, (168,383,0): 201, 188, 110, (168,384,0): 198, 182, 107, (168,385,0): 199, 183, 108, (168,386,0): 202, 184, 110, (168,387,0): 203, 187, 110, (168,388,0): 205, 188, 110, (168,389,0): 205, 190, 109, (168,390,0): 206, 189, 107, (168,391,0): 205, 190, 105, (168,392,0): 208, 192, 105, (168,393,0): 208, 194, 105, (168,394,0): 211, 196, 105, (168,395,0): 213, 200, 106, (168,396,0): 218, 203, 108, (168,397,0): 220, 208, 110, (168,398,0): 224, 210, 113, (168,399,0): 226, 212, 113, (168,400,0): 231, 213, 111, (168,401,0): 233, 216, 112, (168,402,0): 239, 220, 117, (168,403,0): 242, 225, 119, (168,404,0): 244, 227, 121, (168,405,0): 242, 228, 121, (168,406,0): 243, 226, 118, (168,407,0): 240, 226, 117, (168,408,0): 241, 227, 118, (168,409,0): 242, 230, 118, (168,410,0): 244, 232, 120, (168,411,0): 246, 236, 123, (168,412,0): 248, 237, 122, (168,413,0): 246, 236, 121, (168,414,0): 245, 235, 120, (168,415,0): 243, 236, 122, (168,416,0): 239, 231, 124, (168,417,0): 239, 232, 126, (168,418,0): 242, 234, 127, (168,419,0): 243, 236, 129, (168,420,0): 247, 239, 130, (168,421,0): 248, 242, 130, (168,422,0): 251, 243, 132, (168,423,0): 251, 245, 133, (168,424,0): 255, 248, 137, (168,425,0): 251, 245, 133, (168,426,0): 246, 238, 129, (168,427,0): 239, 232, 125, (168,428,0): 235, 226, 121, (168,429,0): 227, 220, 116, (168,430,0): 220, 211, 110, (168,431,0): 211, 205, 107, (168,432,0): 204, 200, 111, (168,433,0): 197, 195, 110, (168,434,0): 193, 188, 104, (168,435,0): 191, 186, 102, (168,436,0): 195, 189, 105, (168,437,0): 201, 193, 108, (168,438,0): 207, 197, 112, (168,439,0): 210, 198, 112, (168,440,0): 206, 191, 106, (168,441,0): 205, 191, 103, (168,442,0): 207, 190, 102, (168,443,0): 207, 190, 100, (168,444,0): 208, 191, 101, (168,445,0): 212, 192, 103, (168,446,0): 213, 193, 104, (168,447,0): 214, 195, 103, (168,448,0): 226, 207, 112, (168,449,0): 225, 209, 111, (168,450,0): 226, 212, 115, (168,451,0): 227, 213, 116, (168,452,0): 226, 214, 116, (168,453,0): 222, 212, 114, (168,454,0): 217, 209, 111, (168,455,0): 214, 206, 108, (168,456,0): 218, 209, 114, (168,457,0): 219, 210, 115, (168,458,0): 221, 211, 116, (168,459,0): 225, 212, 118, (168,460,0): 226, 211, 120, (168,461,0): 226, 211, 120, (168,462,0): 226, 209, 119, (168,463,0): 224, 210, 121, (168,464,0): 215, 209, 123, (168,465,0): 215, 213, 128, (168,466,0): 217, 216, 133, (168,467,0): 219, 218, 135, (168,468,0): 217, 216, 134, (168,469,0): 209, 210, 132, (168,470,0): 202, 205, 128, (168,471,0): 196, 200, 124, (168,472,0): 189, 192, 121, (168,473,0): 188, 194, 124, (168,474,0): 188, 193, 127, (168,475,0): 186, 192, 128, (168,476,0): 182, 188, 126, (168,477,0): 175, 183, 123, (168,478,0): 170, 178, 119, (168,479,0): 165, 175, 115, (168,480,0): 167, 181, 122, (168,481,0): 166, 181, 124, (168,482,0): 167, 180, 124, (168,483,0): 168, 181, 127, (168,484,0): 168, 181, 127, (168,485,0): 166, 176, 124, (168,486,0): 158, 168, 118, (168,487,0): 152, 161, 114, (168,488,0): 149, 156, 114, (168,489,0): 144, 151, 110, (168,490,0): 138, 142, 105, (168,491,0): 130, 134, 99, (168,492,0): 126, 127, 93, (168,493,0): 124, 125, 93, (168,494,0): 124, 125, 94, (168,495,0): 122, 125, 94, (168,496,0): 116, 119, 90, (168,497,0): 114, 118, 91, (168,498,0): 111, 115, 88, (168,499,0): 108, 112, 85, (168,500,0): 105, 107, 83, (168,501,0): 102, 104, 80, (168,502,0): 99, 101, 79, (168,503,0): 98, 100, 78, (168,504,0): 99, 98, 77, (168,505,0): 98, 97, 76, (168,506,0): 96, 93, 74, (168,507,0): 92, 89, 70, (168,508,0): 88, 85, 68, (168,509,0): 85, 82, 65, (168,510,0): 84, 78, 62, (168,511,0): 83, 77, 61, (168,512,0): 88, 82, 68, (168,513,0): 91, 85, 71, (168,514,0): 95, 89, 77, (168,515,0): 100, 94, 80, (168,516,0): 103, 97, 83, (168,517,0): 105, 99, 83, (168,518,0): 103, 100, 83, (168,519,0): 103, 100, 83, (168,520,0): 105, 102, 83, (168,521,0): 107, 104, 85, (168,522,0): 111, 109, 88, (168,523,0): 111, 109, 88, (168,524,0): 111, 109, 86, (168,525,0): 112, 110, 87, (168,526,0): 115, 113, 90, (168,527,0): 118, 116, 93, (168,528,0): 113, 116, 89, (168,529,0): 113, 117, 90, (168,530,0): 117, 120, 93, (168,531,0): 118, 122, 95, (168,532,0): 121, 124, 97, (168,533,0): 121, 125, 98, (168,534,0): 123, 126, 99, (168,535,0): 122, 126, 99, (168,536,0): 118, 121, 94, (168,537,0): 116, 120, 93, (168,538,0): 114, 117, 90, (168,539,0): 110, 114, 87, (168,540,0): 108, 111, 84, (168,541,0): 104, 108, 81, (168,542,0): 102, 105, 78, (168,543,0): 101, 103, 79, (168,544,0): 101, 99, 78, (168,545,0): 100, 97, 78, (168,546,0): 99, 96, 79, (168,547,0): 97, 94, 77, (168,548,0): 95, 92, 75, (168,549,0): 94, 91, 74, (168,550,0): 92, 89, 74, (168,551,0): 92, 89, 74, (168,552,0): 90, 86, 74, (168,553,0): 90, 86, 74, (168,554,0): 89, 85, 73, (168,555,0): 89, 85, 73, (168,556,0): 89, 85, 74, (168,557,0): 91, 87, 76, (168,558,0): 92, 88, 77, (168,559,0): 92, 90, 78, (168,560,0): 95, 95, 85, (168,561,0): 95, 97, 86, (168,562,0): 97, 98, 90, (168,563,0): 100, 101, 93, (168,564,0): 102, 105, 96, (168,565,0): 104, 107, 98, (168,566,0): 104, 109, 102, (168,567,0): 104, 111, 103, (168,568,0): 99, 109, 101, (168,569,0): 99, 109, 101, (168,570,0): 98, 109, 101, (168,571,0): 98, 111, 102, (168,572,0): 100, 113, 106, (168,573,0): 102, 117, 110, (168,574,0): 105, 120, 113, (168,575,0): 109, 121, 117, (168,576,0): 106, 116, 117, (168,577,0): 108, 116, 118, (168,578,0): 107, 115, 117, (168,579,0): 106, 111, 114, (168,580,0): 101, 106, 109, (168,581,0): 96, 100, 101, (168,582,0): 91, 95, 96, (168,583,0): 90, 92, 91, (168,584,0): 85, 85, 85, (168,585,0): 83, 81, 82, (168,586,0): 81, 80, 78, (168,587,0): 82, 78, 77, (168,588,0): 82, 78, 77, (168,589,0): 82, 76, 76, (168,590,0): 78, 73, 70, (168,591,0): 76, 68, 66, (168,592,0): 80, 70, 68, (168,593,0): 79, 69, 67, (168,594,0): 78, 68, 66, (168,595,0): 78, 68, 66, (168,596,0): 78, 68, 66, (168,597,0): 79, 69, 67, (168,598,0): 80, 70, 68, (168,599,0): 81, 71, 69, (169,0,0): 42, 30, 44, (169,1,0): 42, 30, 44, (169,2,0): 41, 29, 43, (169,3,0): 41, 29, 43, (169,4,0): 40, 28, 42, (169,5,0): 40, 28, 42, (169,6,0): 39, 27, 41, (169,7,0): 39, 27, 41, (169,8,0): 39, 27, 41, (169,9,0): 39, 27, 41, (169,10,0): 39, 27, 41, (169,11,0): 39, 27, 41, (169,12,0): 39, 27, 41, (169,13,0): 39, 27, 41, (169,14,0): 39, 27, 41, (169,15,0): 39, 27, 41, (169,16,0): 42, 25, 44, (169,17,0): 42, 25, 44, (169,18,0): 40, 26, 43, (169,19,0): 40, 26, 43, (169,20,0): 39, 26, 43, (169,21,0): 39, 26, 43, (169,22,0): 38, 27, 41, (169,23,0): 38, 27, 41, (169,24,0): 40, 28, 40, (169,25,0): 40, 28, 40, (169,26,0): 44, 28, 41, (169,27,0): 45, 29, 42, (169,28,0): 49, 29, 41, (169,29,0): 50, 30, 42, (169,30,0): 52, 28, 42, (169,31,0): 55, 27, 41, (169,32,0): 66, 30, 44, (169,33,0): 68, 30, 43, (169,34,0): 73, 32, 46, (169,35,0): 76, 36, 47, (169,36,0): 78, 38, 49, (169,37,0): 81, 39, 51, (169,38,0): 81, 39, 49, (169,39,0): 82, 39, 49, (169,40,0): 88, 42, 53, (169,41,0): 87, 41, 51, (169,42,0): 87, 40, 50, (169,43,0): 86, 39, 49, (169,44,0): 88, 38, 47, (169,45,0): 89, 39, 48, (169,46,0): 91, 41, 50, (169,47,0): 90, 43, 51, (169,48,0): 89, 43, 53, (169,49,0): 88, 42, 52, (169,50,0): 88, 41, 51, (169,51,0): 90, 40, 51, (169,52,0): 90, 40, 51, (169,53,0): 91, 39, 51, (169,54,0): 93, 39, 52, (169,55,0): 94, 40, 53, (169,56,0): 96, 40, 53, (169,57,0): 92, 38, 51, (169,58,0): 89, 37, 49, (169,59,0): 87, 37, 48, (169,60,0): 86, 36, 47, (169,61,0): 85, 38, 48, (169,62,0): 85, 39, 49, (169,63,0): 86, 40, 50, (169,64,0): 87, 37, 48, (169,65,0): 87, 37, 48, (169,66,0): 87, 37, 48, (169,67,0): 85, 38, 48, (169,68,0): 85, 38, 48, (169,69,0): 84, 38, 48, (169,70,0): 84, 38, 48, (169,71,0): 82, 39, 48, (169,72,0): 78, 35, 44, (169,73,0): 78, 35, 44, (169,74,0): 76, 35, 43, (169,75,0): 75, 34, 42, (169,76,0): 74, 34, 42, (169,77,0): 73, 33, 41, (169,78,0): 70, 33, 40, (169,79,0): 72, 32, 40, (169,80,0): 74, 33, 39, (169,81,0): 74, 33, 39, (169,82,0): 74, 33, 39, (169,83,0): 74, 33, 39, (169,84,0): 74, 33, 39, (169,85,0): 74, 33, 39, (169,86,0): 74, 33, 39, (169,87,0): 74, 33, 39, (169,88,0): 77, 36, 42, (169,89,0): 77, 36, 42, (169,90,0): 77, 36, 42, (169,91,0): 77, 36, 42, (169,92,0): 77, 36, 42, (169,93,0): 77, 36, 42, (169,94,0): 77, 36, 42, (169,95,0): 77, 36, 42, (169,96,0): 76, 33, 40, (169,97,0): 77, 34, 41, (169,98,0): 77, 34, 43, (169,99,0): 76, 35, 43, (169,100,0): 72, 32, 41, (169,101,0): 65, 30, 37, (169,102,0): 60, 27, 36, (169,103,0): 55, 25, 33, (169,104,0): 45, 17, 29, (169,105,0): 41, 18, 28, (169,106,0): 38, 16, 28, (169,107,0): 35, 15, 26, (169,108,0): 32, 14, 26, (169,109,0): 31, 15, 26, (169,110,0): 29, 15, 28, (169,111,0): 29, 15, 28, (169,112,0): 30, 14, 25, (169,113,0): 30, 14, 25, (169,114,0): 29, 13, 24, (169,115,0): 29, 13, 24, (169,116,0): 28, 12, 23, (169,117,0): 28, 12, 23, (169,118,0): 27, 11, 22, (169,119,0): 27, 11, 22, (169,120,0): 27, 11, 22, (169,121,0): 27, 11, 22, (169,122,0): 27, 11, 22, (169,123,0): 27, 11, 22, (169,124,0): 27, 11, 22, (169,125,0): 27, 11, 22, (169,126,0): 27, 11, 22, (169,127,0): 27, 11, 22, (169,128,0): 29, 11, 25, (169,129,0): 30, 12, 26, (169,130,0): 30, 12, 24, (169,131,0): 30, 12, 24, (169,132,0): 31, 13, 25, (169,133,0): 31, 13, 25, (169,134,0): 32, 15, 25, (169,135,0): 32, 15, 25, (169,136,0): 32, 15, 23, (169,137,0): 33, 16, 24, (169,138,0): 33, 16, 24, (169,139,0): 33, 16, 24, (169,140,0): 34, 17, 23, (169,141,0): 34, 17, 23, (169,142,0): 35, 18, 24, (169,143,0): 37, 18, 22, (169,144,0): 40, 20, 22, (169,145,0): 41, 19, 21, (169,146,0): 42, 20, 22, (169,147,0): 43, 21, 23, (169,148,0): 44, 22, 24, (169,149,0): 45, 23, 25, (169,150,0): 46, 24, 26, (169,151,0): 46, 24, 26, (169,152,0): 48, 26, 28, (169,153,0): 48, 26, 28, (169,154,0): 48, 26, 28, (169,155,0): 48, 26, 28, (169,156,0): 48, 26, 28, (169,157,0): 48, 26, 28, (169,158,0): 48, 26, 28, (169,159,0): 48, 27, 26, (169,160,0): 50, 29, 28, (169,161,0): 50, 29, 26, (169,162,0): 50, 29, 26, (169,163,0): 51, 30, 27, (169,164,0): 51, 30, 27, (169,165,0): 52, 31, 28, (169,166,0): 52, 31, 28, (169,167,0): 53, 32, 29, (169,168,0): 51, 30, 27, (169,169,0): 50, 29, 26, (169,170,0): 50, 29, 26, (169,171,0): 49, 28, 25, (169,172,0): 49, 28, 25, (169,173,0): 48, 27, 24, (169,174,0): 48, 27, 24, (169,175,0): 48, 27, 24, (169,176,0): 47, 26, 23, (169,177,0): 47, 26, 23, (169,178,0): 46, 25, 22, (169,179,0): 46, 25, 22, (169,180,0): 45, 24, 21, (169,181,0): 45, 24, 21, (169,182,0): 44, 23, 20, (169,183,0): 44, 23, 20, (169,184,0): 45, 24, 21, (169,185,0): 45, 24, 21, (169,186,0): 45, 24, 21, (169,187,0): 45, 24, 21, (169,188,0): 45, 24, 21, (169,189,0): 45, 24, 21, (169,190,0): 45, 24, 21, (169,191,0): 45, 24, 19, (169,192,0): 45, 25, 18, (169,193,0): 45, 25, 18, (169,194,0): 48, 25, 19, (169,195,0): 49, 26, 20, (169,196,0): 50, 27, 21, (169,197,0): 51, 28, 22, (169,198,0): 52, 27, 22, (169,199,0): 53, 28, 23, (169,200,0): 54, 26, 22, (169,201,0): 54, 26, 22, (169,202,0): 55, 27, 23, (169,203,0): 55, 27, 23, (169,204,0): 56, 27, 23, (169,205,0): 55, 26, 22, (169,206,0): 53, 24, 20, (169,207,0): 52, 23, 19, (169,208,0): 47, 19, 16, (169,209,0): 46, 21, 17, (169,210,0): 46, 21, 16, (169,211,0): 47, 22, 17, (169,212,0): 48, 23, 18, (169,213,0): 48, 23, 18, (169,214,0): 49, 24, 17, (169,215,0): 49, 24, 17, (169,216,0): 50, 26, 16, (169,217,0): 50, 26, 16, (169,218,0): 49, 25, 15, (169,219,0): 48, 24, 14, (169,220,0): 49, 25, 13, (169,221,0): 50, 26, 14, (169,222,0): 52, 28, 16, (169,223,0): 53, 29, 17, (169,224,0): 52, 27, 20, (169,225,0): 52, 27, 20, (169,226,0): 52, 27, 20, (169,227,0): 53, 28, 21, (169,228,0): 55, 28, 19, (169,229,0): 56, 29, 20, (169,230,0): 56, 29, 20, (169,231,0): 56, 29, 20, (169,232,0): 61, 33, 22, (169,233,0): 61, 33, 22, (169,234,0): 62, 32, 21, (169,235,0): 61, 31, 20, (169,236,0): 59, 29, 18, (169,237,0): 56, 26, 15, (169,238,0): 56, 24, 11, (169,239,0): 53, 23, 12, (169,240,0): 53, 26, 15, (169,241,0): 51, 27, 17, (169,242,0): 50, 26, 16, (169,243,0): 50, 26, 16, (169,244,0): 49, 25, 15, (169,245,0): 49, 25, 15, (169,246,0): 49, 25, 15, (169,247,0): 48, 24, 14, (169,248,0): 51, 27, 17, (169,249,0): 52, 28, 18, (169,250,0): 52, 28, 18, (169,251,0): 52, 28, 18, (169,252,0): 53, 29, 19, (169,253,0): 53, 29, 19, (169,254,0): 54, 30, 20, (169,255,0): 54, 30, 20, (169,256,0): 58, 31, 20, (169,257,0): 59, 31, 20, (169,258,0): 59, 31, 20, (169,259,0): 59, 31, 20, (169,260,0): 59, 30, 22, (169,261,0): 59, 30, 22, (169,262,0): 59, 30, 22, (169,263,0): 59, 30, 22, (169,264,0): 59, 30, 24, (169,265,0): 60, 31, 25, (169,266,0): 60, 31, 27, (169,267,0): 61, 32, 28, (169,268,0): 63, 34, 30, (169,269,0): 64, 35, 31, (169,270,0): 64, 34, 32, (169,271,0): 65, 35, 33, (169,272,0): 67, 39, 36, (169,273,0): 67, 39, 36, (169,274,0): 67, 39, 36, (169,275,0): 67, 39, 36, (169,276,0): 66, 38, 35, (169,277,0): 66, 38, 34, (169,278,0): 66, 39, 32, (169,279,0): 66, 39, 30, (169,280,0): 69, 42, 33, (169,281,0): 73, 46, 35, (169,282,0): 76, 50, 37, (169,283,0): 78, 52, 37, (169,284,0): 77, 51, 36, (169,285,0): 77, 51, 34, (169,286,0): 79, 53, 36, (169,287,0): 81, 55, 38, (169,288,0): 78, 56, 35, (169,289,0): 78, 56, 33, (169,290,0): 79, 57, 34, (169,291,0): 80, 58, 35, (169,292,0): 81, 59, 36, (169,293,0): 82, 60, 37, (169,294,0): 83, 61, 38, (169,295,0): 84, 62, 39, (169,296,0): 83, 61, 38, (169,297,0): 84, 62, 39, (169,298,0): 87, 65, 42, (169,299,0): 90, 68, 45, (169,300,0): 91, 69, 46, (169,301,0): 90, 68, 45, (169,302,0): 88, 66, 43, (169,303,0): 87, 65, 42, (169,304,0): 86, 66, 42, (169,305,0): 86, 66, 42, (169,306,0): 89, 67, 43, (169,307,0): 91, 70, 43, (169,308,0): 95, 74, 45, (169,309,0): 99, 78, 47, (169,310,0): 104, 81, 50, (169,311,0): 106, 83, 52, (169,312,0): 110, 85, 55, (169,313,0): 112, 88, 54, (169,314,0): 119, 95, 57, (169,315,0): 132, 110, 63, (169,316,0): 148, 125, 71, (169,317,0): 161, 140, 77, (169,318,0): 168, 148, 77, (169,319,0): 170, 150, 77, (169,320,0): 161, 142, 73, (169,321,0): 161, 142, 74, (169,322,0): 161, 143, 77, (169,323,0): 162, 144, 78, (169,324,0): 162, 146, 84, (169,325,0): 164, 148, 86, (169,326,0): 166, 152, 91, (169,327,0): 168, 154, 93, (169,328,0): 163, 147, 88, (169,329,0): 163, 147, 87, (169,330,0): 165, 145, 86, (169,331,0): 165, 145, 84, (169,332,0): 169, 145, 85, (169,333,0): 170, 146, 84, (169,334,0): 175, 146, 86, (169,335,0): 174, 148, 87, (169,336,0): 176, 152, 90, (169,337,0): 176, 152, 90, (169,338,0): 180, 151, 91, (169,339,0): 183, 151, 92, (169,340,0): 190, 154, 96, (169,341,0): 196, 157, 100, (169,342,0): 201, 161, 102, (169,343,0): 204, 164, 103, (169,344,0): 205, 165, 103, (169,345,0): 206, 167, 100, (169,346,0): 208, 170, 99, (169,347,0): 214, 175, 100, (169,348,0): 224, 180, 105, (169,349,0): 231, 184, 106, (169,350,0): 234, 183, 104, (169,351,0): 233, 181, 106, (169,352,0): 221, 172, 105, (169,353,0): 219, 171, 107, (169,354,0): 216, 168, 106, (169,355,0): 213, 168, 103, (169,356,0): 213, 168, 103, (169,357,0): 214, 171, 103, (169,358,0): 217, 174, 105, (169,359,0): 217, 177, 105, (169,360,0): 207, 167, 95, (169,361,0): 209, 171, 96, (169,362,0): 213, 176, 98, (169,363,0): 217, 180, 100, (169,364,0): 221, 184, 104, (169,365,0): 225, 187, 106, (169,366,0): 226, 187, 108, (169,367,0): 226, 189, 108, (169,368,0): 222, 195, 106, (169,369,0): 219, 194, 102, (169,370,0): 215, 191, 103, (169,371,0): 212, 188, 102, (169,372,0): 207, 185, 100, (169,373,0): 206, 184, 101, (169,374,0): 204, 183, 104, (169,375,0): 202, 183, 104, (169,376,0): 199, 181, 105, (169,377,0): 196, 178, 102, (169,378,0): 192, 176, 99, (169,379,0): 190, 177, 99, (169,380,0): 195, 182, 103, (169,381,0): 199, 186, 107, (169,382,0): 200, 189, 109, (169,383,0): 200, 189, 110, (169,384,0): 198, 184, 109, (169,385,0): 198, 184, 111, (169,386,0): 198, 184, 109, (169,387,0): 198, 184, 109, (169,388,0): 200, 187, 109, (169,389,0): 201, 188, 109, (169,390,0): 203, 191, 109, (169,391,0): 204, 192, 108, (169,392,0): 205, 193, 107, (169,393,0): 206, 195, 105, (169,394,0): 209, 198, 108, (169,395,0): 212, 201, 109, (169,396,0): 216, 206, 111, (169,397,0): 219, 209, 112, (169,398,0): 222, 212, 115, (169,399,0): 226, 214, 114, (169,400,0): 228, 213, 110, (169,401,0): 230, 216, 111, (169,402,0): 236, 218, 116, (169,403,0): 238, 224, 119, (169,404,0): 240, 226, 121, (169,405,0): 240, 228, 120, (169,406,0): 239, 227, 119, (169,407,0): 238, 226, 116, (169,408,0): 242, 230, 122, (169,409,0): 242, 232, 121, (169,410,0): 244, 234, 123, (169,411,0): 244, 237, 123, (169,412,0): 245, 238, 124, (169,413,0): 244, 237, 121, (169,414,0): 243, 236, 122, (169,415,0): 242, 236, 124, (169,416,0): 235, 228, 122, (169,417,0): 236, 229, 125, (169,418,0): 238, 231, 127, (169,419,0): 240, 233, 127, (169,420,0): 243, 236, 129, (169,421,0): 247, 241, 131, (169,422,0): 250, 244, 132, (169,423,0): 251, 245, 133, (169,424,0): 251, 245, 133, (169,425,0): 248, 242, 130, (169,426,0): 243, 237, 127, (169,427,0): 240, 234, 124, (169,428,0): 236, 229, 122, (169,429,0): 231, 224, 118, (169,430,0): 224, 217, 111, (169,431,0): 217, 212, 112, (169,432,0): 209, 205, 114, (169,433,0): 203, 199, 112, (169,434,0): 197, 193, 106, (169,435,0): 196, 190, 104, (169,436,0): 200, 193, 105, (169,437,0): 206, 196, 109, (169,438,0): 211, 200, 111, (169,439,0): 214, 200, 112, (169,440,0): 211, 197, 109, (169,441,0): 211, 195, 107, (169,442,0): 211, 196, 105, (169,443,0): 210, 195, 104, (169,444,0): 211, 196, 105, (169,445,0): 212, 197, 104, (169,446,0): 215, 198, 106, (169,447,0): 216, 200, 105, (169,448,0): 220, 206, 109, (169,449,0): 220, 208, 108, (169,450,0): 223, 211, 113, (169,451,0): 223, 213, 115, (169,452,0): 222, 214, 115, (169,453,0): 220, 215, 115, (169,454,0): 218, 212, 114, (169,455,0): 216, 212, 113, (169,456,0): 214, 210, 113, (169,457,0): 215, 211, 114, (169,458,0): 220, 211, 116, (169,459,0): 222, 213, 118, (169,460,0): 225, 214, 122, (169,461,0): 226, 215, 123, (169,462,0): 229, 214, 123, (169,463,0): 225, 214, 124, (169,464,0): 219, 217, 130, (169,465,0): 218, 221, 134, (169,466,0): 221, 223, 139, (169,467,0): 220, 224, 140, (169,468,0): 218, 221, 140, (169,469,0): 212, 215, 136, (169,470,0): 204, 208, 132, (169,471,0): 198, 204, 130, (169,472,0): 194, 200, 130, (169,473,0): 193, 200, 132, (169,474,0): 192, 198, 134, (169,475,0): 188, 197, 134, (169,476,0): 183, 191, 131, (169,477,0): 178, 186, 126, (169,478,0): 172, 180, 121, (169,479,0): 167, 176, 119, (169,480,0): 167, 180, 124, (169,481,0): 165, 180, 123, (169,482,0): 165, 180, 125, (169,483,0): 166, 180, 127, (169,484,0): 166, 179, 126, (169,485,0): 162, 174, 124, (169,486,0): 156, 165, 118, (169,487,0): 151, 160, 115, (169,488,0): 146, 153, 112, (169,489,0): 142, 148, 110, (169,490,0): 136, 140, 105, (169,491,0): 129, 133, 100, (169,492,0): 126, 127, 95, (169,493,0): 123, 124, 93, (169,494,0): 122, 123, 92, (169,495,0): 122, 122, 94, (169,496,0): 116, 119, 92, (169,497,0): 113, 117, 90, (169,498,0): 111, 115, 88, (169,499,0): 108, 112, 85, (169,500,0): 106, 108, 84, (169,501,0): 103, 105, 81, (169,502,0): 101, 103, 81, (169,503,0): 100, 102, 80, (169,504,0): 100, 99, 78, (169,505,0): 98, 97, 76, (169,506,0): 96, 93, 74, (169,507,0): 93, 90, 71, (169,508,0): 89, 86, 69, (169,509,0): 85, 82, 65, (169,510,0): 85, 79, 63, (169,511,0): 83, 77, 63, (169,512,0): 87, 81, 69, (169,513,0): 89, 83, 71, (169,514,0): 94, 87, 77, (169,515,0): 98, 92, 80, (169,516,0): 102, 96, 84, (169,517,0): 104, 98, 84, (169,518,0): 103, 100, 85, (169,519,0): 103, 100, 83, (169,520,0): 104, 101, 84, (169,521,0): 107, 104, 85, (169,522,0): 110, 108, 87, (169,523,0): 111, 109, 88, (169,524,0): 111, 109, 86, (169,525,0): 112, 110, 87, (169,526,0): 115, 113, 90, (169,527,0): 117, 117, 93, (169,528,0): 116, 119, 92, (169,529,0): 117, 121, 94, (169,530,0): 118, 122, 95, (169,531,0): 120, 124, 97, (169,532,0): 122, 126, 99, (169,533,0): 122, 126, 99, (169,534,0): 122, 126, 99, (169,535,0): 122, 126, 99, (169,536,0): 117, 121, 94, (169,537,0): 115, 119, 92, (169,538,0): 113, 117, 90, (169,539,0): 110, 114, 87, (169,540,0): 107, 111, 84, (169,541,0): 104, 108, 81, (169,542,0): 102, 106, 79, (169,543,0): 102, 104, 80, (169,544,0): 101, 100, 79, (169,545,0): 101, 100, 80, (169,546,0): 100, 97, 80, (169,547,0): 97, 96, 78, (169,548,0): 96, 93, 76, (169,549,0): 93, 92, 74, (169,550,0): 93, 90, 75, (169,551,0): 91, 89, 74, (169,552,0): 91, 87, 75, (169,553,0): 89, 87, 74, (169,554,0): 89, 85, 73, (169,555,0): 88, 86, 73, (169,556,0): 90, 86, 75, (169,557,0): 90, 88, 76, (169,558,0): 92, 88, 77, (169,559,0): 92, 90, 78, (169,560,0): 95, 97, 86, (169,561,0): 96, 98, 87, (169,562,0): 98, 99, 91, (169,563,0): 100, 103, 94, (169,564,0): 102, 105, 96, (169,565,0): 103, 109, 99, (169,566,0): 104, 111, 103, (169,567,0): 103, 113, 104, (169,568,0): 101, 111, 103, (169,569,0): 100, 111, 103, (169,570,0): 99, 112, 103, (169,571,0): 97, 113, 103, (169,572,0): 99, 114, 107, (169,573,0): 102, 117, 110, (169,574,0): 105, 120, 113, (169,575,0): 107, 122, 117, (169,576,0): 110, 121, 123, (169,577,0): 109, 118, 123, (169,578,0): 108, 115, 121, (169,579,0): 104, 112, 115, (169,580,0): 102, 107, 111, (169,581,0): 98, 103, 106, (169,582,0): 95, 99, 102, (169,583,0): 94, 98, 99, (169,584,0): 91, 92, 94, (169,585,0): 88, 88, 88, (169,586,0): 84, 82, 83, (169,587,0): 82, 81, 79, (169,588,0): 82, 78, 77, (169,589,0): 80, 76, 75, (169,590,0): 77, 72, 69, (169,591,0): 74, 69, 66, (169,592,0): 78, 70, 67, (169,593,0): 78, 68, 66, (169,594,0): 77, 67, 65, (169,595,0): 77, 67, 65, (169,596,0): 77, 67, 65, (169,597,0): 78, 68, 66, (169,598,0): 79, 69, 67, (169,599,0): 80, 70, 68, (170,0,0): 42, 30, 44, (170,1,0): 42, 30, 44, (170,2,0): 41, 29, 43, (170,3,0): 41, 29, 43, (170,4,0): 40, 28, 42, (170,5,0): 40, 28, 42, (170,6,0): 39, 27, 41, (170,7,0): 39, 27, 41, (170,8,0): 39, 27, 41, (170,9,0): 39, 27, 41, (170,10,0): 39, 27, 41, (170,11,0): 39, 27, 41, (170,12,0): 39, 27, 41, (170,13,0): 39, 27, 41, (170,14,0): 39, 27, 41, (170,15,0): 39, 27, 41, (170,16,0): 42, 25, 44, (170,17,0): 42, 25, 44, (170,18,0): 40, 26, 43, (170,19,0): 40, 26, 43, (170,20,0): 39, 26, 43, (170,21,0): 39, 26, 43, (170,22,0): 38, 27, 41, (170,23,0): 38, 27, 41, (170,24,0): 40, 28, 40, (170,25,0): 40, 28, 40, (170,26,0): 44, 28, 41, (170,27,0): 45, 29, 42, (170,28,0): 49, 29, 41, (170,29,0): 50, 30, 42, (170,30,0): 53, 29, 43, (170,31,0): 57, 29, 43, (170,32,0): 67, 31, 43, (170,33,0): 71, 31, 42, (170,34,0): 75, 33, 45, (170,35,0): 77, 35, 47, (170,36,0): 80, 38, 50, (170,37,0): 82, 39, 49, (170,38,0): 82, 39, 49, (170,39,0): 84, 38, 49, (170,40,0): 88, 42, 52, (170,41,0): 87, 41, 51, (170,42,0): 87, 40, 50, (170,43,0): 86, 39, 47, (170,44,0): 88, 38, 47, (170,45,0): 88, 38, 47, (170,46,0): 89, 40, 46, (170,47,0): 88, 41, 49, (170,48,0): 86, 43, 52, (170,49,0): 86, 43, 52, (170,50,0): 87, 41, 51, (170,51,0): 87, 40, 50, (170,52,0): 87, 40, 50, (170,53,0): 90, 40, 51, (170,54,0): 92, 40, 52, (170,55,0): 92, 40, 52, (170,56,0): 91, 37, 50, (170,57,0): 89, 37, 49, (170,58,0): 87, 37, 48, (170,59,0): 84, 37, 47, (170,60,0): 83, 36, 46, (170,61,0): 82, 36, 46, (170,62,0): 81, 38, 47, (170,63,0): 81, 38, 47, (170,64,0): 81, 35, 45, (170,65,0): 81, 35, 45, (170,66,0): 81, 35, 45, (170,67,0): 81, 35, 45, (170,68,0): 81, 35, 45, (170,69,0): 79, 36, 45, (170,70,0): 79, 36, 45, (170,71,0): 79, 36, 45, (170,72,0): 77, 34, 43, (170,73,0): 76, 35, 43, (170,74,0): 76, 35, 43, (170,75,0): 75, 34, 42, (170,76,0): 74, 34, 42, (170,77,0): 73, 33, 41, (170,78,0): 73, 33, 41, (170,79,0): 73, 33, 41, (170,80,0): 75, 34, 40, (170,81,0): 76, 33, 40, (170,82,0): 76, 33, 40, (170,83,0): 76, 33, 40, (170,84,0): 76, 33, 40, (170,85,0): 76, 33, 40, (170,86,0): 76, 33, 40, (170,87,0): 76, 33, 40, (170,88,0): 78, 35, 42, (170,89,0): 78, 35, 42, (170,90,0): 78, 35, 42, (170,91,0): 78, 35, 42, (170,92,0): 78, 35, 42, (170,93,0): 78, 35, 42, (170,94,0): 78, 35, 42, (170,95,0): 78, 35, 42, (170,96,0): 79, 34, 41, (170,97,0): 78, 35, 42, (170,98,0): 78, 35, 44, (170,99,0): 77, 36, 44, (170,100,0): 74, 34, 43, (170,101,0): 67, 32, 39, (170,102,0): 62, 29, 38, (170,103,0): 58, 27, 35, (170,104,0): 51, 21, 33, (170,105,0): 46, 20, 31, (170,106,0): 42, 18, 31, (170,107,0): 37, 17, 28, (170,108,0): 33, 15, 27, (170,109,0): 31, 15, 26, (170,110,0): 28, 14, 27, (170,111,0): 28, 14, 27, (170,112,0): 30, 14, 25, (170,113,0): 30, 14, 25, (170,114,0): 29, 13, 24, (170,115,0): 29, 13, 24, (170,116,0): 28, 12, 23, (170,117,0): 28, 12, 23, (170,118,0): 27, 11, 22, (170,119,0): 27, 11, 22, (170,120,0): 26, 10, 21, (170,121,0): 26, 10, 21, (170,122,0): 26, 10, 21, (170,123,0): 26, 10, 21, (170,124,0): 26, 10, 21, (170,125,0): 26, 10, 21, (170,126,0): 26, 10, 21, (170,127,0): 26, 10, 21, (170,128,0): 29, 11, 25, (170,129,0): 29, 11, 25, (170,130,0): 29, 11, 23, (170,131,0): 30, 12, 24, (170,132,0): 31, 13, 25, (170,133,0): 31, 13, 25, (170,134,0): 31, 14, 24, (170,135,0): 32, 15, 25, (170,136,0): 32, 15, 23, (170,137,0): 32, 15, 23, (170,138,0): 32, 15, 23, (170,139,0): 33, 16, 24, (170,140,0): 34, 17, 23, (170,141,0): 34, 17, 23, (170,142,0): 34, 17, 23, (170,143,0): 37, 18, 22, (170,144,0): 40, 20, 22, (170,145,0): 41, 19, 21, (170,146,0): 42, 20, 22, (170,147,0): 43, 21, 23, (170,148,0): 44, 22, 24, (170,149,0): 45, 23, 25, (170,150,0): 46, 24, 26, (170,151,0): 46, 24, 26, (170,152,0): 45, 23, 25, (170,153,0): 45, 23, 25, (170,154,0): 45, 23, 25, (170,155,0): 45, 23, 25, (170,156,0): 45, 23, 25, (170,157,0): 45, 23, 25, (170,158,0): 45, 23, 25, (170,159,0): 45, 24, 23, (170,160,0): 49, 28, 27, (170,161,0): 50, 29, 26, (170,162,0): 50, 29, 26, (170,163,0): 51, 30, 27, (170,164,0): 51, 30, 27, (170,165,0): 52, 31, 28, (170,166,0): 52, 31, 28, (170,167,0): 52, 31, 28, (170,168,0): 51, 30, 27, (170,169,0): 51, 30, 27, (170,170,0): 51, 30, 27, (170,171,0): 50, 29, 26, (170,172,0): 50, 29, 26, (170,173,0): 49, 28, 25, (170,174,0): 49, 28, 25, (170,175,0): 48, 27, 24, (170,176,0): 47, 26, 23, (170,177,0): 47, 26, 23, (170,178,0): 46, 25, 22, (170,179,0): 46, 25, 22, (170,180,0): 45, 24, 21, (170,181,0): 45, 24, 21, (170,182,0): 44, 23, 20, (170,183,0): 44, 23, 20, (170,184,0): 45, 24, 21, (170,185,0): 45, 24, 21, (170,186,0): 45, 24, 21, (170,187,0): 45, 24, 21, (170,188,0): 45, 24, 21, (170,189,0): 45, 24, 21, (170,190,0): 45, 24, 21, (170,191,0): 45, 24, 19, (170,192,0): 47, 24, 18, (170,193,0): 47, 24, 16, (170,194,0): 48, 25, 17, (170,195,0): 49, 26, 18, (170,196,0): 51, 26, 19, (170,197,0): 52, 27, 20, (170,198,0): 55, 28, 21, (170,199,0): 56, 29, 22, (170,200,0): 54, 27, 20, (170,201,0): 55, 28, 21, (170,202,0): 57, 28, 22, (170,203,0): 57, 28, 22, (170,204,0): 57, 26, 21, (170,205,0): 56, 25, 20, (170,206,0): 55, 24, 19, (170,207,0): 53, 24, 20, (170,208,0): 49, 21, 18, (170,209,0): 47, 22, 18, (170,210,0): 47, 22, 17, (170,211,0): 47, 22, 17, (170,212,0): 48, 23, 18, (170,213,0): 48, 23, 18, (170,214,0): 49, 24, 17, (170,215,0): 49, 24, 17, (170,216,0): 50, 26, 16, (170,217,0): 49, 25, 15, (170,218,0): 49, 25, 15, (170,219,0): 49, 25, 15, (170,220,0): 49, 25, 13, (170,221,0): 50, 26, 14, (170,222,0): 52, 28, 16, (170,223,0): 53, 29, 17, (170,224,0): 52, 27, 20, (170,225,0): 52, 27, 20, (170,226,0): 52, 27, 20, (170,227,0): 53, 28, 21, (170,228,0): 55, 28, 19, (170,229,0): 56, 29, 20, (170,230,0): 56, 29, 20, (170,231,0): 56, 29, 20, (170,232,0): 60, 32, 21, (170,233,0): 60, 32, 21, (170,234,0): 61, 31, 20, (170,235,0): 61, 31, 20, (170,236,0): 59, 29, 18, (170,237,0): 57, 27, 16, (170,238,0): 57, 25, 12, (170,239,0): 53, 23, 12, (170,240,0): 51, 27, 15, (170,241,0): 49, 27, 16, (170,242,0): 49, 27, 16, (170,243,0): 49, 27, 16, (170,244,0): 48, 26, 15, (170,245,0): 47, 25, 14, (170,246,0): 47, 25, 14, (170,247,0): 47, 25, 14, (170,248,0): 50, 28, 17, (170,249,0): 50, 28, 17, (170,250,0): 50, 28, 17, (170,251,0): 51, 29, 18, (170,252,0): 52, 30, 19, (170,253,0): 52, 30, 19, (170,254,0): 52, 30, 19, (170,255,0): 54, 30, 20, (170,256,0): 58, 31, 20, (170,257,0): 59, 31, 20, (170,258,0): 59, 31, 20, (170,259,0): 59, 31, 20, (170,260,0): 59, 30, 22, (170,261,0): 59, 30, 22, (170,262,0): 59, 30, 22, (170,263,0): 59, 30, 22, (170,264,0): 59, 30, 24, (170,265,0): 60, 31, 25, (170,266,0): 60, 31, 27, (170,267,0): 61, 32, 28, (170,268,0): 63, 34, 30, (170,269,0): 64, 35, 31, (170,270,0): 64, 34, 32, (170,271,0): 65, 35, 33, (170,272,0): 67, 39, 38, (170,273,0): 66, 38, 37, (170,274,0): 66, 38, 37, (170,275,0): 65, 37, 34, (170,276,0): 64, 36, 33, (170,277,0): 63, 35, 31, (170,278,0): 62, 35, 28, (170,279,0): 62, 35, 26, (170,280,0): 67, 40, 31, (170,281,0): 71, 44, 33, (170,282,0): 75, 49, 36, (170,283,0): 76, 50, 35, (170,284,0): 76, 50, 35, (170,285,0): 75, 49, 34, (170,286,0): 77, 51, 36, (170,287,0): 79, 53, 36, (170,288,0): 77, 55, 34, (170,289,0): 77, 57, 33, (170,290,0): 77, 57, 33, (170,291,0): 79, 59, 35, (170,292,0): 80, 60, 36, (170,293,0): 81, 61, 37, (170,294,0): 81, 61, 37, (170,295,0): 82, 62, 38, (170,296,0): 83, 63, 39, (170,297,0): 84, 64, 40, (170,298,0): 85, 65, 41, (170,299,0): 86, 66, 42, (170,300,0): 87, 67, 43, (170,301,0): 88, 68, 44, (170,302,0): 89, 69, 45, (170,303,0): 89, 69, 45, (170,304,0): 87, 67, 43, (170,305,0): 88, 68, 44, (170,306,0): 89, 69, 44, (170,307,0): 91, 71, 44, (170,308,0): 94, 75, 45, (170,309,0): 98, 79, 49, (170,310,0): 102, 81, 52, (170,311,0): 104, 83, 54, (170,312,0): 111, 87, 59, (170,313,0): 113, 90, 58, (170,314,0): 119, 95, 59, (170,315,0): 129, 106, 62, (170,316,0): 141, 120, 67, (170,317,0): 153, 133, 72, (170,318,0): 162, 143, 75, (170,319,0): 167, 148, 79, (170,320,0): 162, 143, 74, (170,321,0): 162, 143, 75, (170,322,0): 161, 143, 77, (170,323,0): 162, 144, 78, (170,324,0): 161, 145, 83, (170,325,0): 163, 147, 85, (170,326,0): 164, 150, 89, (170,327,0): 166, 152, 91, (170,328,0): 162, 146, 86, (170,329,0): 163, 147, 87, (170,330,0): 167, 147, 88, (170,331,0): 169, 149, 88, (170,332,0): 173, 149, 87, (170,333,0): 173, 149, 85, (170,334,0): 176, 148, 85, (170,335,0): 176, 148, 85, (170,336,0): 175, 150, 86, (170,337,0): 176, 151, 87, (170,338,0): 182, 152, 90, (170,339,0): 188, 154, 93, (170,340,0): 194, 155, 96, (170,341,0): 199, 159, 100, (170,342,0): 201, 161, 102, (170,343,0): 203, 163, 102, (170,344,0): 206, 168, 105, (170,345,0): 206, 168, 103, (170,346,0): 207, 170, 100, (170,347,0): 212, 174, 101, (170,348,0): 218, 179, 104, (170,349,0): 224, 181, 103, (170,350,0): 225, 179, 101, (170,351,0): 223, 177, 102, (170,352,0): 211, 168, 100, (170,353,0): 208, 167, 103, (170,354,0): 207, 166, 104, (170,355,0): 205, 166, 101, (170,356,0): 205, 167, 102, (170,357,0): 205, 170, 102, (170,358,0): 208, 174, 103, (170,359,0): 210, 176, 104, (170,360,0): 202, 168, 96, (170,361,0): 204, 170, 96, (170,362,0): 208, 175, 98, (170,363,0): 213, 180, 101, (170,364,0): 219, 183, 105, (170,365,0): 223, 186, 106, (170,366,0): 225, 188, 110, (170,367,0): 224, 189, 107, (170,368,0): 220, 193, 104, (170,369,0): 217, 194, 101, (170,370,0): 214, 190, 102, (170,371,0): 212, 188, 102, (170,372,0): 208, 186, 101, (170,373,0): 207, 185, 102, (170,374,0): 206, 185, 106, (170,375,0): 204, 185, 106, (170,376,0): 201, 183, 107, (170,377,0): 198, 180, 104, (170,378,0): 194, 178, 101, (170,379,0): 193, 180, 102, (170,380,0): 197, 184, 105, (170,381,0): 200, 189, 109, (170,382,0): 201, 190, 110, (170,383,0): 201, 190, 111, (170,384,0): 198, 186, 110, (170,385,0): 196, 184, 110, (170,386,0): 194, 182, 106, (170,387,0): 192, 180, 104, (170,388,0): 194, 183, 104, (170,389,0): 197, 186, 106, (170,390,0): 201, 190, 108, (170,391,0): 203, 193, 108, (170,392,0): 204, 194, 107, (170,393,0): 205, 196, 105, (170,394,0): 208, 199, 108, (170,395,0): 212, 203, 110, (170,396,0): 216, 207, 112, (170,397,0): 219, 211, 113, (170,398,0): 222, 214, 116, (170,399,0): 225, 215, 117, (170,400,0): 227, 214, 112, (170,401,0): 229, 216, 112, (170,402,0): 234, 219, 118, (170,403,0): 236, 223, 119, (170,404,0): 239, 226, 122, (170,405,0): 238, 227, 121, (170,406,0): 238, 227, 121, (170,407,0): 237, 226, 118, (170,408,0): 243, 232, 126, (170,409,0): 242, 234, 125, (170,410,0): 243, 235, 126, (170,411,0): 243, 237, 125, (170,412,0): 244, 238, 126, (170,413,0): 243, 237, 123, (170,414,0): 242, 236, 124, (170,415,0): 240, 236, 126, (170,416,0): 232, 228, 121, (170,417,0): 232, 227, 123, (170,418,0): 233, 228, 124, (170,419,0): 235, 231, 124, (170,420,0): 239, 235, 127, (170,421,0): 244, 240, 130, (170,422,0): 248, 245, 132, (170,423,0): 251, 248, 135, (170,424,0): 245, 242, 127, (170,425,0): 243, 240, 125, (170,426,0): 240, 237, 124, (170,427,0): 238, 234, 124, (170,428,0): 237, 233, 123, (170,429,0): 234, 230, 122, (170,430,0): 229, 225, 117, (170,431,0): 225, 220, 118, (170,432,0): 215, 210, 116, (170,433,0): 210, 205, 114, (170,434,0): 204, 199, 108, (170,435,0): 203, 196, 106, (170,436,0): 207, 198, 107, (170,437,0): 211, 200, 110, (170,438,0): 215, 201, 112, (170,439,0): 217, 202, 111, (170,440,0): 218, 203, 112, (170,441,0): 218, 203, 112, (170,442,0): 216, 201, 108, (170,443,0): 214, 201, 107, (170,444,0): 214, 201, 107, (170,445,0): 215, 202, 106, (170,446,0): 216, 203, 107, (170,447,0): 216, 203, 107, (170,448,0): 215, 205, 107, (170,449,0): 216, 208, 109, (170,450,0): 218, 210, 111, (170,451,0): 217, 212, 112, (170,452,0): 217, 213, 114, (170,453,0): 217, 215, 115, (170,454,0): 219, 216, 119, (170,455,0): 218, 218, 120, (170,456,0): 210, 210, 112, (170,457,0): 212, 212, 114, (170,458,0): 218, 213, 119, (170,459,0): 221, 216, 122, (170,460,0): 225, 218, 127, (170,461,0): 227, 220, 129, (170,462,0): 231, 220, 130, (170,463,0): 228, 221, 131, (170,464,0): 225, 225, 139, (170,465,0): 223, 229, 143, (170,466,0): 225, 230, 146, (170,467,0): 224, 229, 145, (170,468,0): 220, 225, 143, (170,469,0): 212, 219, 139, (170,470,0): 205, 212, 135, (170,471,0): 200, 208, 133, (170,472,0): 198, 205, 135, (170,473,0): 196, 206, 137, (170,474,0): 195, 204, 139, (170,475,0): 192, 201, 138, (170,476,0): 187, 195, 135, (170,477,0): 180, 190, 130, (170,478,0): 175, 184, 127, (170,479,0): 170, 181, 123, (170,480,0): 166, 181, 124, (170,481,0): 162, 179, 124, (170,482,0): 161, 178, 124, (170,483,0): 161, 178, 124, (170,484,0): 162, 176, 125, (170,485,0): 158, 172, 123, (170,486,0): 151, 163, 117, (170,487,0): 148, 157, 114, (170,488,0): 141, 148, 107, (170,489,0): 138, 144, 106, (170,490,0): 134, 138, 103, (170,491,0): 129, 133, 100, (170,492,0): 126, 127, 96, (170,493,0): 122, 122, 94, (170,494,0): 121, 120, 92, (170,495,0): 119, 119, 93, (170,496,0): 115, 118, 91, (170,497,0): 114, 118, 93, (170,498,0): 112, 116, 91, (170,499,0): 110, 114, 89, (170,500,0): 108, 110, 88, (170,501,0): 106, 108, 86, (170,502,0): 104, 106, 84, (170,503,0): 103, 105, 83, (170,504,0): 101, 100, 80, (170,505,0): 99, 98, 78, (170,506,0): 98, 95, 78, (170,507,0): 94, 91, 74, (170,508,0): 90, 87, 70, (170,509,0): 87, 84, 67, (170,510,0): 86, 80, 66, (170,511,0): 84, 78, 64, (170,512,0): 86, 77, 68, (170,513,0): 88, 79, 70, (170,514,0): 92, 83, 76, (170,515,0): 96, 87, 78, (170,516,0): 100, 93, 83, (170,517,0): 103, 97, 85, (170,518,0): 105, 99, 85, (170,519,0): 106, 100, 84, (170,520,0): 104, 101, 84, (170,521,0): 107, 104, 85, (170,522,0): 110, 109, 88, (170,523,0): 111, 110, 89, (170,524,0): 111, 111, 87, (170,525,0): 112, 112, 88, (170,526,0): 115, 115, 91, (170,527,0): 116, 118, 94, (170,528,0): 121, 125, 98, (170,529,0): 121, 125, 98, (170,530,0): 123, 127, 100, (170,531,0): 123, 127, 100, (170,532,0): 124, 128, 101, (170,533,0): 123, 127, 100, (170,534,0): 122, 126, 99, (170,535,0): 121, 125, 98, (170,536,0): 116, 120, 93, (170,537,0): 115, 119, 92, (170,538,0): 113, 117, 90, (170,539,0): 111, 115, 88, (170,540,0): 108, 112, 85, (170,541,0): 105, 109, 82, (170,542,0): 104, 108, 81, (170,543,0): 103, 107, 82, (170,544,0): 102, 104, 83, (170,545,0): 101, 102, 84, (170,546,0): 101, 100, 82, (170,547,0): 97, 98, 80, (170,548,0): 97, 95, 80, (170,549,0): 93, 94, 78, (170,550,0): 93, 91, 78, (170,551,0): 90, 91, 77, (170,552,0): 90, 88, 75, (170,553,0): 88, 89, 75, (170,554,0): 89, 87, 75, (170,555,0): 87, 87, 75, (170,556,0): 90, 87, 78, (170,557,0): 89, 89, 79, (170,558,0): 92, 89, 80, (170,559,0): 91, 91, 81, (170,560,0): 96, 97, 89, (170,561,0): 96, 99, 90, (170,562,0): 98, 101, 92, (170,563,0): 101, 104, 95, (170,564,0): 104, 107, 100, (170,565,0): 104, 109, 102, (170,566,0): 105, 112, 104, (170,567,0): 104, 114, 105, (170,568,0): 104, 114, 106, (170,569,0): 103, 114, 106, (170,570,0): 102, 115, 108, (170,571,0): 100, 115, 108, (170,572,0): 102, 117, 110, (170,573,0): 102, 119, 111, (170,574,0): 104, 121, 115, (170,575,0): 107, 122, 119, (170,576,0): 114, 125, 129, (170,577,0): 112, 123, 129, (170,578,0): 109, 118, 125, (170,579,0): 105, 114, 119, (170,580,0): 103, 110, 116, (170,581,0): 101, 109, 112, (170,582,0): 101, 106, 110, (170,583,0): 101, 105, 108, (170,584,0): 98, 99, 101, (170,585,0): 93, 95, 94, (170,586,0): 87, 87, 87, (170,587,0): 81, 81, 81, (170,588,0): 79, 78, 76, (170,589,0): 77, 76, 74, (170,590,0): 75, 71, 68, (170,591,0): 73, 68, 65, (170,592,0): 77, 69, 67, (170,593,0): 76, 68, 66, (170,594,0): 75, 67, 65, (170,595,0): 74, 66, 64, (170,596,0): 74, 66, 64, (170,597,0): 74, 66, 64, (170,598,0): 75, 67, 65, (170,599,0): 76, 68, 66, (171,0,0): 42, 30, 44, (171,1,0): 42, 30, 44, (171,2,0): 41, 29, 43, (171,3,0): 41, 29, 43, (171,4,0): 40, 28, 42, (171,5,0): 40, 28, 42, (171,6,0): 39, 27, 41, (171,7,0): 39, 27, 41, (171,8,0): 39, 27, 41, (171,9,0): 39, 27, 41, (171,10,0): 39, 27, 41, (171,11,0): 39, 27, 41, (171,12,0): 39, 27, 41, (171,13,0): 39, 27, 41, (171,14,0): 39, 27, 41, (171,15,0): 39, 27, 41, (171,16,0): 42, 25, 44, (171,17,0): 42, 25, 44, (171,18,0): 40, 26, 43, (171,19,0): 40, 26, 43, (171,20,0): 39, 26, 43, (171,21,0): 39, 26, 43, (171,22,0): 38, 27, 41, (171,23,0): 38, 27, 41, (171,24,0): 40, 28, 40, (171,25,0): 40, 28, 40, (171,26,0): 44, 28, 41, (171,27,0): 45, 29, 42, (171,28,0): 49, 29, 41, (171,29,0): 51, 31, 43, (171,30,0): 55, 31, 45, (171,31,0): 59, 31, 45, (171,32,0): 69, 31, 44, (171,33,0): 73, 31, 43, (171,34,0): 76, 34, 46, (171,35,0): 78, 36, 48, (171,36,0): 81, 38, 48, (171,37,0): 82, 39, 49, (171,38,0): 84, 38, 49, (171,39,0): 84, 38, 48, (171,40,0): 88, 42, 52, (171,41,0): 88, 42, 52, (171,42,0): 88, 41, 49, (171,43,0): 87, 40, 48, (171,44,0): 88, 38, 47, (171,45,0): 87, 37, 46, (171,46,0): 87, 38, 44, (171,47,0): 85, 38, 44, (171,48,0): 85, 42, 51, (171,49,0): 84, 43, 51, (171,50,0): 84, 41, 50, (171,51,0): 85, 39, 49, (171,52,0): 85, 39, 49, (171,53,0): 87, 40, 50, (171,54,0): 90, 40, 51, (171,55,0): 90, 40, 51, (171,56,0): 87, 37, 48, (171,57,0): 86, 36, 47, (171,58,0): 83, 36, 46, (171,59,0): 82, 36, 46, (171,60,0): 81, 35, 45, (171,61,0): 79, 36, 45, (171,62,0): 78, 37, 45, (171,63,0): 78, 37, 45, (171,64,0): 76, 35, 43, (171,65,0): 77, 34, 43, (171,66,0): 76, 35, 43, (171,67,0): 76, 35, 43, (171,68,0): 76, 35, 43, (171,69,0): 76, 35, 43, (171,70,0): 76, 35, 43, (171,71,0): 76, 35, 43, (171,72,0): 75, 34, 42, (171,73,0): 75, 34, 42, (171,74,0): 75, 34, 42, (171,75,0): 75, 34, 42, (171,76,0): 74, 34, 42, (171,77,0): 74, 34, 42, (171,78,0): 74, 34, 42, (171,79,0): 75, 34, 42, (171,80,0): 77, 34, 41, (171,81,0): 77, 34, 41, (171,82,0): 77, 34, 41, (171,83,0): 77, 34, 41, (171,84,0): 77, 34, 41, (171,85,0): 77, 34, 41, (171,86,0): 77, 34, 41, (171,87,0): 77, 34, 41, (171,88,0): 78, 35, 42, (171,89,0): 78, 35, 42, (171,90,0): 78, 35, 42, (171,91,0): 78, 35, 42, (171,92,0): 78, 35, 42, (171,93,0): 78, 35, 42, (171,94,0): 78, 35, 42, (171,95,0): 78, 35, 42, (171,96,0): 80, 35, 42, (171,97,0): 80, 35, 42, (171,98,0): 79, 36, 45, (171,99,0): 78, 37, 45, (171,100,0): 75, 35, 44, (171,101,0): 70, 33, 41, (171,102,0): 66, 30, 40, (171,103,0): 60, 29, 37, (171,104,0): 54, 24, 36, (171,105,0): 49, 23, 34, (171,106,0): 44, 20, 33, (171,107,0): 39, 19, 30, (171,108,0): 36, 16, 28, (171,109,0): 32, 14, 26, (171,110,0): 30, 14, 27, (171,111,0): 28, 14, 27, (171,112,0): 30, 14, 25, (171,113,0): 30, 14, 25, (171,114,0): 29, 13, 24, (171,115,0): 29, 13, 24, (171,116,0): 28, 12, 23, (171,117,0): 28, 12, 23, (171,118,0): 27, 11, 22, (171,119,0): 27, 11, 22, (171,120,0): 26, 10, 21, (171,121,0): 26, 10, 21, (171,122,0): 26, 10, 21, (171,123,0): 26, 10, 21, (171,124,0): 26, 10, 21, (171,125,0): 26, 10, 21, (171,126,0): 26, 10, 21, (171,127,0): 26, 10, 21, (171,128,0): 28, 10, 24, (171,129,0): 29, 11, 25, (171,130,0): 29, 11, 23, (171,131,0): 30, 12, 24, (171,132,0): 30, 12, 24, (171,133,0): 31, 13, 25, (171,134,0): 31, 14, 24, (171,135,0): 31, 14, 24, (171,136,0): 31, 14, 22, (171,137,0): 32, 15, 23, (171,138,0): 32, 15, 23, (171,139,0): 33, 16, 24, (171,140,0): 33, 16, 22, (171,141,0): 34, 17, 23, (171,142,0): 34, 17, 23, (171,143,0): 36, 17, 21, (171,144,0): 39, 19, 21, (171,145,0): 40, 18, 20, (171,146,0): 41, 19, 21, (171,147,0): 42, 20, 22, (171,148,0): 43, 21, 23, (171,149,0): 44, 22, 24, (171,150,0): 45, 23, 25, (171,151,0): 46, 24, 26, (171,152,0): 43, 21, 23, (171,153,0): 43, 21, 23, (171,154,0): 43, 21, 23, (171,155,0): 43, 21, 23, (171,156,0): 43, 21, 23, (171,157,0): 43, 21, 23, (171,158,0): 43, 21, 23, (171,159,0): 43, 22, 21, (171,160,0): 49, 28, 27, (171,161,0): 49, 28, 25, (171,162,0): 49, 28, 25, (171,163,0): 50, 29, 26, (171,164,0): 51, 30, 27, (171,165,0): 51, 30, 27, (171,166,0): 51, 30, 27, (171,167,0): 52, 31, 28, (171,168,0): 51, 30, 27, (171,169,0): 51, 30, 27, (171,170,0): 51, 30, 27, (171,171,0): 50, 29, 26, (171,172,0): 50, 29, 26, (171,173,0): 49, 28, 25, (171,174,0): 49, 28, 25, (171,175,0): 49, 28, 25, (171,176,0): 47, 26, 23, (171,177,0): 47, 26, 23, (171,178,0): 46, 25, 22, (171,179,0): 46, 25, 22, (171,180,0): 45, 24, 21, (171,181,0): 45, 24, 21, (171,182,0): 44, 23, 20, (171,183,0): 44, 23, 20, (171,184,0): 44, 23, 20, (171,185,0): 44, 23, 20, (171,186,0): 44, 23, 20, (171,187,0): 44, 23, 20, (171,188,0): 44, 23, 20, (171,189,0): 44, 23, 20, (171,190,0): 44, 23, 20, (171,191,0): 44, 23, 18, (171,192,0): 46, 23, 17, (171,193,0): 47, 24, 16, (171,194,0): 48, 25, 17, (171,195,0): 49, 26, 18, (171,196,0): 52, 27, 20, (171,197,0): 53, 28, 21, (171,198,0): 56, 29, 22, (171,199,0): 57, 30, 23, (171,200,0): 55, 28, 21, (171,201,0): 55, 28, 21, (171,202,0): 57, 28, 22, (171,203,0): 57, 28, 22, (171,204,0): 58, 27, 22, (171,205,0): 56, 25, 20, (171,206,0): 55, 24, 19, (171,207,0): 53, 24, 18, (171,208,0): 50, 22, 19, (171,209,0): 48, 23, 19, (171,210,0): 48, 23, 18, (171,211,0): 48, 23, 18, (171,212,0): 48, 23, 18, (171,213,0): 48, 23, 18, (171,214,0): 49, 24, 17, (171,215,0): 49, 24, 17, (171,216,0): 49, 25, 15, (171,217,0): 49, 25, 15, (171,218,0): 49, 25, 15, (171,219,0): 49, 25, 15, (171,220,0): 50, 26, 14, (171,221,0): 51, 27, 15, (171,222,0): 51, 27, 15, (171,223,0): 52, 28, 16, (171,224,0): 52, 27, 20, (171,225,0): 52, 27, 20, (171,226,0): 52, 27, 20, (171,227,0): 53, 28, 21, (171,228,0): 55, 28, 19, (171,229,0): 56, 29, 20, (171,230,0): 56, 29, 20, (171,231,0): 56, 29, 20, (171,232,0): 59, 31, 20, (171,233,0): 60, 32, 21, (171,234,0): 61, 31, 20, (171,235,0): 60, 30, 19, (171,236,0): 59, 29, 18, (171,237,0): 57, 27, 16, (171,238,0): 57, 25, 12, (171,239,0): 54, 24, 13, (171,240,0): 50, 26, 14, (171,241,0): 49, 27, 16, (171,242,0): 49, 27, 16, (171,243,0): 48, 26, 15, (171,244,0): 48, 26, 15, (171,245,0): 47, 25, 14, (171,246,0): 47, 25, 14, (171,247,0): 46, 24, 13, (171,248,0): 49, 27, 16, (171,249,0): 50, 28, 17, (171,250,0): 50, 28, 17, (171,251,0): 51, 29, 18, (171,252,0): 51, 29, 18, (171,253,0): 52, 30, 19, (171,254,0): 52, 30, 19, (171,255,0): 53, 29, 19, (171,256,0): 58, 31, 20, (171,257,0): 59, 31, 20, (171,258,0): 59, 31, 20, (171,259,0): 59, 31, 20, (171,260,0): 59, 30, 22, (171,261,0): 59, 30, 22, (171,262,0): 59, 30, 22, (171,263,0): 59, 30, 22, (171,264,0): 59, 30, 24, (171,265,0): 60, 31, 25, (171,266,0): 60, 31, 27, (171,267,0): 61, 32, 28, (171,268,0): 63, 34, 30, (171,269,0): 64, 35, 31, (171,270,0): 64, 34, 32, (171,271,0): 65, 35, 33, (171,272,0): 65, 37, 36, (171,273,0): 65, 37, 36, (171,274,0): 64, 36, 35, (171,275,0): 63, 35, 34, (171,276,0): 61, 33, 30, (171,277,0): 60, 32, 29, (171,278,0): 59, 31, 27, (171,279,0): 59, 32, 25, (171,280,0): 65, 38, 29, (171,281,0): 69, 42, 33, (171,282,0): 73, 46, 35, (171,283,0): 74, 48, 35, (171,284,0): 74, 48, 35, (171,285,0): 73, 47, 32, (171,286,0): 75, 49, 34, (171,287,0): 75, 52, 34, (171,288,0): 75, 54, 33, (171,289,0): 76, 56, 32, (171,290,0): 76, 56, 32, (171,291,0): 78, 58, 34, (171,292,0): 79, 59, 35, (171,293,0): 80, 60, 36, (171,294,0): 80, 60, 36, (171,295,0): 81, 61, 37, (171,296,0): 84, 64, 40, (171,297,0): 84, 64, 40, (171,298,0): 84, 64, 40, (171,299,0): 84, 64, 40, (171,300,0): 86, 66, 42, (171,301,0): 88, 68, 44, (171,302,0): 90, 70, 46, (171,303,0): 92, 72, 48, (171,304,0): 89, 69, 45, (171,305,0): 89, 69, 45, (171,306,0): 90, 70, 45, (171,307,0): 92, 72, 47, (171,308,0): 95, 75, 48, (171,309,0): 99, 80, 50, (171,310,0): 103, 82, 53, (171,311,0): 105, 84, 55, (171,312,0): 112, 88, 60, (171,313,0): 115, 92, 61, (171,314,0): 120, 96, 62, (171,315,0): 126, 103, 61, (171,316,0): 134, 112, 62, (171,317,0): 145, 125, 66, (171,318,0): 156, 137, 71, (171,319,0): 164, 145, 77, (171,320,0): 162, 143, 75, (171,321,0): 162, 143, 75, (171,322,0): 161, 143, 77, (171,323,0): 161, 143, 77, (171,324,0): 160, 144, 82, (171,325,0): 161, 145, 83, (171,326,0): 162, 148, 87, (171,327,0): 163, 149, 88, (171,328,0): 160, 144, 84, (171,329,0): 162, 146, 84, (171,330,0): 169, 149, 88, (171,331,0): 173, 153, 90, (171,332,0): 177, 153, 89, (171,333,0): 177, 154, 87, (171,334,0): 179, 151, 86, (171,335,0): 178, 150, 85, (171,336,0): 177, 149, 84, (171,337,0): 179, 151, 88, (171,338,0): 184, 152, 91, (171,339,0): 189, 155, 94, (171,340,0): 196, 157, 98, (171,341,0): 199, 159, 100, (171,342,0): 201, 161, 102, (171,343,0): 201, 162, 103, (171,344,0): 205, 169, 107, (171,345,0): 203, 169, 105, (171,346,0): 203, 170, 101, (171,347,0): 207, 173, 102, (171,348,0): 213, 177, 103, (171,349,0): 215, 178, 100, (171,350,0): 217, 175, 99, (171,351,0): 214, 172, 98, (171,352,0): 203, 164, 97, (171,353,0): 201, 163, 98, (171,354,0): 201, 163, 100, (171,355,0): 199, 164, 98, (171,356,0): 200, 167, 100, (171,357,0): 200, 170, 100, (171,358,0): 201, 173, 100, (171,359,0): 203, 175, 101, (171,360,0): 200, 172, 98, (171,361,0): 202, 175, 98, (171,362,0): 205, 176, 98, (171,363,0): 209, 180, 100, (171,364,0): 214, 183, 103, (171,365,0): 217, 184, 103, (171,366,0): 221, 185, 107, (171,367,0): 220, 188, 105, (171,368,0): 218, 193, 103, (171,369,0): 216, 193, 100, (171,370,0): 213, 189, 101, (171,371,0): 211, 187, 101, (171,372,0): 208, 186, 101, (171,373,0): 206, 185, 102, (171,374,0): 207, 186, 107, (171,375,0): 205, 186, 107, (171,376,0): 202, 184, 108, (171,377,0): 198, 182, 105, (171,378,0): 196, 180, 103, (171,379,0): 195, 182, 104, (171,380,0): 197, 186, 106, (171,381,0): 201, 190, 110, (171,382,0): 201, 190, 110, (171,383,0): 201, 190, 111, (171,384,0): 196, 187, 110, (171,385,0): 193, 184, 109, (171,386,0): 188, 179, 104, (171,387,0): 185, 176, 99, (171,388,0): 185, 176, 97, (171,389,0): 190, 182, 101, (171,390,0): 196, 188, 107, (171,391,0): 200, 192, 107, (171,392,0): 201, 194, 106, (171,393,0): 203, 196, 106, (171,394,0): 206, 199, 108, (171,395,0): 211, 205, 111, (171,396,0): 215, 209, 113, (171,397,0): 219, 213, 117, (171,398,0): 221, 215, 117, (171,399,0): 224, 216, 117, (171,400,0): 228, 216, 116, (171,401,0): 230, 218, 116, (171,402,0): 234, 220, 121, (171,403,0): 236, 224, 122, (171,404,0): 238, 226, 124, (171,405,0): 237, 228, 123, (171,406,0): 237, 228, 123, (171,407,0): 237, 228, 123, (171,408,0): 243, 234, 129, (171,409,0): 242, 235, 128, (171,410,0): 243, 236, 129, (171,411,0): 241, 237, 127, (171,412,0): 241, 237, 127, (171,413,0): 241, 237, 127, (171,414,0): 241, 237, 127, (171,415,0): 240, 236, 126, (171,416,0): 234, 229, 125, (171,417,0): 234, 229, 125, (171,418,0): 235, 230, 126, (171,419,0): 237, 233, 126, (171,420,0): 241, 237, 129, (171,421,0): 246, 242, 132, (171,422,0): 251, 248, 135, (171,423,0): 253, 250, 137, (171,424,0): 244, 241, 126, (171,425,0): 242, 239, 126, (171,426,0): 239, 236, 123, (171,427,0): 239, 235, 125, (171,428,0): 239, 235, 125, (171,429,0): 237, 233, 125, (171,430,0): 232, 228, 121, (171,431,0): 228, 223, 119, (171,432,0): 219, 213, 115, (171,433,0): 214, 208, 114, (171,434,0): 211, 202, 109, (171,435,0): 208, 199, 106, (171,436,0): 211, 201, 106, (171,437,0): 215, 202, 108, (171,438,0): 218, 203, 110, (171,439,0): 218, 203, 110, (171,440,0): 222, 207, 114, (171,441,0): 221, 206, 111, (171,442,0): 218, 205, 111, (171,443,0): 215, 205, 108, (171,444,0): 213, 203, 106, (171,445,0): 212, 204, 106, (171,446,0): 212, 204, 106, (171,447,0): 213, 205, 107, (171,448,0): 212, 207, 107, (171,449,0): 214, 209, 109, (171,450,0): 215, 211, 111, (171,451,0): 214, 212, 112, (171,452,0): 212, 212, 112, (171,453,0): 213, 213, 113, (171,454,0): 215, 217, 118, (171,455,0): 216, 221, 121, (171,456,0): 207, 212, 112, (171,457,0): 211, 213, 116, (171,458,0): 216, 216, 120, (171,459,0): 220, 220, 124, (171,460,0): 226, 223, 130, (171,461,0): 229, 224, 132, (171,462,0): 232, 225, 134, (171,463,0): 231, 227, 136, (171,464,0): 227, 231, 144, (171,465,0): 224, 232, 146, (171,466,0): 225, 233, 148, (171,467,0): 222, 231, 148, (171,468,0): 219, 226, 146, (171,469,0): 211, 220, 141, (171,470,0): 204, 212, 135, (171,471,0): 198, 208, 135, (171,472,0): 196, 206, 135, (171,473,0): 195, 204, 137, (171,474,0): 194, 203, 138, (171,475,0): 191, 201, 138, (171,476,0): 187, 197, 137, (171,477,0): 182, 192, 132, (171,478,0): 178, 187, 130, (171,479,0): 173, 186, 130, (171,480,0): 164, 181, 126, (171,481,0): 161, 180, 124, (171,482,0): 159, 178, 123, (171,483,0): 159, 176, 124, (171,484,0): 158, 174, 125, (171,485,0): 155, 168, 122, (171,486,0): 149, 160, 117, (171,487,0): 143, 154, 112, (171,488,0): 135, 143, 104, (171,489,0): 135, 141, 105, (171,490,0): 132, 136, 103, (171,491,0): 128, 131, 100, (171,492,0): 126, 126, 98, (171,493,0): 122, 122, 94, (171,494,0): 121, 119, 94, (171,495,0): 118, 118, 92, (171,496,0): 116, 118, 94, (171,497,0): 115, 119, 94, (171,498,0): 113, 117, 92, (171,499,0): 111, 115, 90, (171,500,0): 110, 112, 90, (171,501,0): 109, 111, 89, (171,502,0): 107, 109, 87, (171,503,0): 107, 109, 87, (171,504,0): 102, 101, 81, (171,505,0): 101, 100, 80, (171,506,0): 99, 96, 79, (171,507,0): 96, 93, 76, (171,508,0): 92, 89, 72, (171,509,0): 88, 85, 68, (171,510,0): 87, 81, 67, (171,511,0): 86, 80, 68, (171,512,0): 84, 75, 68, (171,513,0): 86, 77, 70, (171,514,0): 88, 79, 72, (171,515,0): 92, 83, 76, (171,516,0): 96, 87, 80, (171,517,0): 100, 93, 83, (171,518,0): 103, 97, 85, (171,519,0): 105, 99, 85, (171,520,0): 104, 101, 84, (171,521,0): 107, 104, 85, (171,522,0): 110, 109, 89, (171,523,0): 111, 110, 89, (171,524,0): 111, 111, 87, (171,525,0): 111, 113, 89, (171,526,0): 114, 116, 92, (171,527,0): 117, 119, 95, (171,528,0): 125, 129, 102, (171,529,0): 125, 129, 102, (171,530,0): 125, 129, 102, (171,531,0): 125, 129, 102, (171,532,0): 124, 128, 101, (171,533,0): 123, 127, 100, (171,534,0): 121, 125, 98, (171,535,0): 120, 124, 97, (171,536,0): 115, 119, 92, (171,537,0): 114, 118, 91, (171,538,0): 113, 117, 90, (171,539,0): 111, 115, 88, (171,540,0): 109, 113, 86, (171,541,0): 107, 111, 84, (171,542,0): 105, 109, 82, (171,543,0): 105, 109, 84, (171,544,0): 104, 106, 85, (171,545,0): 103, 104, 86, (171,546,0): 102, 103, 85, (171,547,0): 99, 100, 82, (171,548,0): 97, 98, 82, (171,549,0): 94, 95, 79, (171,550,0): 92, 93, 79, (171,551,0): 91, 92, 78, (171,552,0): 90, 91, 77, (171,553,0): 90, 91, 77, (171,554,0): 89, 89, 77, (171,555,0): 89, 89, 77, (171,556,0): 89, 89, 79, (171,557,0): 91, 91, 81, (171,558,0): 92, 92, 82, (171,559,0): 92, 94, 83, (171,560,0): 97, 100, 91, (171,561,0): 98, 101, 92, (171,562,0): 100, 103, 94, (171,563,0): 100, 106, 96, (171,564,0): 103, 108, 101, (171,565,0): 105, 112, 104, (171,566,0): 105, 115, 106, (171,567,0): 106, 116, 107, (171,568,0): 106, 117, 109, (171,569,0): 105, 118, 109, (171,570,0): 103, 118, 111, (171,571,0): 104, 119, 112, (171,572,0): 104, 121, 113, (171,573,0): 105, 122, 114, (171,574,0): 106, 123, 117, (171,575,0): 106, 122, 121, (171,576,0): 114, 127, 133, (171,577,0): 114, 124, 133, (171,578,0): 112, 121, 130, (171,579,0): 110, 119, 126, (171,580,0): 110, 117, 125, (171,581,0): 107, 114, 120, (171,582,0): 105, 110, 116, (171,583,0): 102, 107, 111, (171,584,0): 97, 101, 104, (171,585,0): 92, 93, 95, (171,586,0): 85, 85, 87, (171,587,0): 79, 79, 79, (171,588,0): 77, 76, 74, (171,589,0): 75, 74, 72, (171,590,0): 75, 71, 68, (171,591,0): 73, 69, 66, (171,592,0): 74, 69, 66, (171,593,0): 75, 67, 65, (171,594,0): 73, 65, 63, (171,595,0): 72, 64, 62, (171,596,0): 72, 64, 62, (171,597,0): 72, 64, 62, (171,598,0): 73, 65, 63, (171,599,0): 74, 66, 64, (172,0,0): 42, 30, 44, (172,1,0): 42, 30, 44, (172,2,0): 41, 29, 43, (172,3,0): 41, 29, 43, (172,4,0): 40, 28, 42, (172,5,0): 40, 28, 42, (172,6,0): 39, 27, 41, (172,7,0): 39, 27, 41, (172,8,0): 39, 27, 41, (172,9,0): 39, 27, 41, (172,10,0): 39, 27, 41, (172,11,0): 39, 27, 41, (172,12,0): 39, 27, 41, (172,13,0): 39, 27, 41, (172,14,0): 39, 27, 41, (172,15,0): 39, 27, 41, (172,16,0): 42, 25, 44, (172,17,0): 42, 25, 44, (172,18,0): 40, 26, 43, (172,19,0): 40, 26, 43, (172,20,0): 39, 26, 43, (172,21,0): 39, 26, 43, (172,22,0): 38, 27, 41, (172,23,0): 38, 27, 41, (172,24,0): 41, 29, 41, (172,25,0): 41, 29, 41, (172,26,0): 43, 27, 40, (172,27,0): 44, 28, 41, (172,28,0): 49, 29, 41, (172,29,0): 52, 32, 44, (172,30,0): 56, 32, 46, (172,31,0): 61, 33, 47, (172,32,0): 70, 32, 45, (172,33,0): 76, 32, 45, (172,34,0): 78, 35, 45, (172,35,0): 80, 37, 47, (172,36,0): 81, 38, 48, (172,37,0): 82, 39, 49, (172,38,0): 84, 38, 48, (172,39,0): 84, 38, 48, (172,40,0): 87, 41, 51, (172,41,0): 87, 42, 49, (172,42,0): 87, 42, 49, (172,43,0): 86, 41, 48, (172,44,0): 86, 39, 45, (172,45,0): 85, 38, 44, (172,46,0): 84, 37, 43, (172,47,0): 83, 38, 43, (172,48,0): 83, 42, 50, (172,49,0): 81, 41, 49, (172,50,0): 80, 40, 48, (172,51,0): 81, 40, 48, (172,52,0): 82, 39, 48, (172,53,0): 84, 38, 48, (172,54,0): 85, 39, 49, (172,55,0): 87, 40, 50, (172,56,0): 83, 36, 46, (172,57,0): 82, 36, 46, (172,58,0): 82, 36, 46, (172,59,0): 79, 36, 45, (172,60,0): 78, 37, 45, (172,61,0): 76, 36, 44, (172,62,0): 75, 35, 43, (172,63,0): 73, 36, 43, (172,64,0): 71, 34, 41, (172,65,0): 71, 34, 41, (172,66,0): 73, 33, 41, (172,67,0): 73, 33, 41, (172,68,0): 73, 33, 41, (172,69,0): 73, 33, 41, (172,70,0): 73, 33, 41, (172,71,0): 73, 33, 41, (172,72,0): 74, 34, 42, (172,73,0): 74, 34, 42, (172,74,0): 74, 34, 42, (172,75,0): 74, 34, 42, (172,76,0): 75, 34, 42, (172,77,0): 75, 34, 42, (172,78,0): 75, 34, 42, (172,79,0): 75, 34, 42, (172,80,0): 78, 35, 42, (172,81,0): 78, 36, 40, (172,82,0): 78, 36, 40, (172,83,0): 78, 36, 40, (172,84,0): 78, 36, 40, (172,85,0): 78, 36, 40, (172,86,0): 78, 36, 40, (172,87,0): 78, 36, 40, (172,88,0): 78, 36, 40, (172,89,0): 78, 36, 40, (172,90,0): 78, 36, 40, (172,91,0): 78, 36, 40, (172,92,0): 78, 36, 40, (172,93,0): 78, 36, 40, (172,94,0): 78, 36, 40, (172,95,0): 78, 36, 40, (172,96,0): 79, 34, 41, (172,97,0): 80, 35, 42, (172,98,0): 79, 36, 45, (172,99,0): 78, 37, 45, (172,100,0): 76, 36, 45, (172,101,0): 71, 34, 42, (172,102,0): 67, 31, 41, (172,103,0): 62, 31, 39, (172,104,0): 55, 25, 37, (172,105,0): 50, 24, 35, (172,106,0): 45, 21, 34, (172,107,0): 39, 19, 30, (172,108,0): 36, 16, 28, (172,109,0): 32, 14, 26, (172,110,0): 30, 14, 27, (172,111,0): 29, 13, 26, (172,112,0): 30, 14, 25, (172,113,0): 30, 14, 25, (172,114,0): 29, 13, 24, (172,115,0): 29, 13, 24, (172,116,0): 28, 12, 23, (172,117,0): 28, 12, 23, (172,118,0): 27, 11, 22, (172,119,0): 27, 11, 22, (172,120,0): 25, 9, 20, (172,121,0): 25, 9, 20, (172,122,0): 25, 9, 20, (172,123,0): 25, 9, 20, (172,124,0): 25, 9, 20, (172,125,0): 25, 9, 20, (172,126,0): 25, 9, 20, (172,127,0): 25, 9, 20, (172,128,0): 28, 10, 24, (172,129,0): 28, 10, 24, (172,130,0): 28, 10, 22, (172,131,0): 29, 11, 23, (172,132,0): 29, 11, 23, (172,133,0): 30, 12, 24, (172,134,0): 30, 13, 23, (172,135,0): 31, 14, 24, (172,136,0): 31, 14, 22, (172,137,0): 31, 14, 22, (172,138,0): 31, 14, 22, (172,139,0): 32, 15, 23, (172,140,0): 32, 15, 21, (172,141,0): 33, 16, 22, (172,142,0): 33, 16, 22, (172,143,0): 36, 17, 21, (172,144,0): 38, 18, 20, (172,145,0): 40, 18, 20, (172,146,0): 41, 19, 21, (172,147,0): 42, 20, 22, (172,148,0): 43, 21, 23, (172,149,0): 44, 22, 24, (172,150,0): 45, 23, 25, (172,151,0): 45, 23, 25, (172,152,0): 43, 21, 23, (172,153,0): 43, 21, 23, (172,154,0): 43, 21, 23, (172,155,0): 43, 21, 23, (172,156,0): 43, 21, 23, (172,157,0): 43, 21, 23, (172,158,0): 43, 21, 23, (172,159,0): 43, 22, 21, (172,160,0): 48, 27, 26, (172,161,0): 49, 28, 25, (172,162,0): 49, 28, 25, (172,163,0): 49, 28, 25, (172,164,0): 50, 29, 26, (172,165,0): 51, 30, 27, (172,166,0): 51, 30, 27, (172,167,0): 51, 30, 27, (172,168,0): 51, 30, 27, (172,169,0): 51, 30, 27, (172,170,0): 50, 29, 26, (172,171,0): 50, 29, 26, (172,172,0): 49, 28, 25, (172,173,0): 49, 28, 25, (172,174,0): 48, 27, 24, (172,175,0): 48, 27, 24, (172,176,0): 47, 26, 23, (172,177,0): 47, 26, 23, (172,178,0): 46, 25, 22, (172,179,0): 46, 25, 22, (172,180,0): 45, 24, 21, (172,181,0): 45, 24, 21, (172,182,0): 44, 23, 20, (172,183,0): 44, 23, 20, (172,184,0): 44, 23, 20, (172,185,0): 44, 23, 20, (172,186,0): 44, 23, 20, (172,187,0): 44, 23, 20, (172,188,0): 44, 23, 20, (172,189,0): 44, 23, 20, (172,190,0): 44, 23, 20, (172,191,0): 44, 23, 18, (172,192,0): 46, 23, 17, (172,193,0): 48, 23, 16, (172,194,0): 49, 24, 17, (172,195,0): 51, 26, 19, (172,196,0): 55, 28, 21, (172,197,0): 56, 29, 22, (172,198,0): 58, 31, 24, (172,199,0): 58, 31, 24, (172,200,0): 56, 27, 21, (172,201,0): 57, 28, 22, (172,202,0): 59, 28, 23, (172,203,0): 59, 28, 23, (172,204,0): 58, 27, 22, (172,205,0): 57, 26, 21, (172,206,0): 58, 25, 20, (172,207,0): 55, 24, 19, (172,208,0): 51, 23, 20, (172,209,0): 49, 24, 20, (172,210,0): 49, 24, 19, (172,211,0): 49, 24, 19, (172,212,0): 49, 24, 19, (172,213,0): 49, 24, 19, (172,214,0): 48, 23, 16, (172,215,0): 48, 23, 16, (172,216,0): 48, 24, 14, (172,217,0): 49, 25, 15, (172,218,0): 49, 25, 15, (172,219,0): 50, 26, 16, (172,220,0): 51, 27, 15, (172,221,0): 51, 27, 15, (172,222,0): 51, 27, 15, (172,223,0): 51, 27, 15, (172,224,0): 52, 27, 20, (172,225,0): 52, 27, 20, (172,226,0): 52, 27, 20, (172,227,0): 53, 28, 21, (172,228,0): 55, 28, 19, (172,229,0): 56, 29, 20, (172,230,0): 56, 29, 20, (172,231,0): 56, 29, 20, (172,232,0): 59, 31, 20, (172,233,0): 59, 31, 20, (172,234,0): 60, 30, 19, (172,235,0): 60, 30, 19, (172,236,0): 59, 29, 18, (172,237,0): 58, 28, 17, (172,238,0): 58, 26, 13, (172,239,0): 55, 25, 14, (172,240,0): 50, 26, 16, (172,241,0): 46, 26, 17, (172,242,0): 46, 26, 17, (172,243,0): 45, 25, 16, (172,244,0): 45, 25, 16, (172,245,0): 44, 24, 15, (172,246,0): 44, 24, 15, (172,247,0): 44, 24, 15, (172,248,0): 47, 27, 18, (172,249,0): 47, 27, 18, (172,250,0): 47, 27, 18, (172,251,0): 48, 28, 19, (172,252,0): 48, 28, 19, (172,253,0): 49, 29, 20, (172,254,0): 49, 29, 20, (172,255,0): 52, 30, 19, (172,256,0): 58, 31, 20, (172,257,0): 59, 31, 20, (172,258,0): 59, 31, 20, (172,259,0): 59, 31, 20, (172,260,0): 59, 30, 22, (172,261,0): 59, 30, 22, (172,262,0): 59, 30, 22, (172,263,0): 59, 30, 22, (172,264,0): 59, 30, 24, (172,265,0): 60, 31, 25, (172,266,0): 60, 31, 27, (172,267,0): 61, 32, 28, (172,268,0): 63, 34, 30, (172,269,0): 64, 35, 31, (172,270,0): 64, 34, 32, (172,271,0): 65, 35, 33, (172,272,0): 64, 36, 35, (172,273,0): 61, 35, 36, (172,274,0): 60, 34, 33, (172,275,0): 59, 33, 32, (172,276,0): 58, 33, 29, (172,277,0): 56, 31, 27, (172,278,0): 55, 30, 25, (172,279,0): 55, 30, 23, (172,280,0): 61, 37, 27, (172,281,0): 65, 41, 31, (172,282,0): 69, 45, 33, (172,283,0): 70, 47, 33, (172,284,0): 69, 46, 32, (172,285,0): 69, 46, 32, (172,286,0): 71, 48, 32, (172,287,0): 73, 50, 32, (172,288,0): 74, 53, 32, (172,289,0): 73, 55, 31, (172,290,0): 73, 55, 31, (172,291,0): 74, 56, 32, (172,292,0): 75, 57, 33, (172,293,0): 77, 59, 35, (172,294,0): 77, 59, 35, (172,295,0): 78, 60, 36, (172,296,0): 82, 64, 40, (172,297,0): 82, 64, 40, (172,298,0): 81, 63, 39, (172,299,0): 81, 63, 39, (172,300,0): 83, 65, 41, (172,301,0): 86, 68, 44, (172,302,0): 89, 71, 47, (172,303,0): 92, 74, 50, (172,304,0): 89, 71, 49, (172,305,0): 89, 71, 47, (172,306,0): 90, 73, 47, (172,307,0): 91, 74, 48, (172,308,0): 96, 76, 49, (172,309,0): 99, 79, 52, (172,310,0): 103, 82, 55, (172,311,0): 105, 84, 57, (172,312,0): 110, 89, 62, (172,313,0): 114, 93, 64, (172,314,0): 119, 96, 64, (172,315,0): 122, 100, 59, (172,316,0): 128, 106, 57, (172,317,0): 137, 116, 59, (172,318,0): 149, 129, 66, (172,319,0): 159, 140, 72, (172,320,0): 162, 143, 75, (172,321,0): 161, 142, 74, (172,322,0): 159, 141, 75, (172,323,0): 159, 141, 75, (172,324,0): 157, 141, 79, (172,325,0): 158, 142, 80, (172,326,0): 158, 144, 83, (172,327,0): 159, 145, 84, (172,328,0): 158, 142, 80, (172,329,0): 161, 145, 83, (172,330,0): 170, 150, 89, (172,331,0): 175, 155, 92, (172,332,0): 181, 157, 93, (172,333,0): 182, 159, 92, (172,334,0): 184, 157, 90, (172,335,0): 183, 156, 89, (172,336,0): 179, 152, 85, (172,337,0): 182, 152, 88, (172,338,0): 187, 153, 90, (172,339,0): 191, 155, 93, (172,340,0): 196, 157, 98, (172,341,0): 199, 159, 100, (172,342,0): 199, 160, 101, (172,343,0): 198, 162, 102, (172,344,0): 204, 170, 107, (172,345,0): 200, 169, 104, (172,346,0): 199, 170, 102, (172,347,0): 202, 172, 102, (172,348,0): 207, 174, 103, (172,349,0): 208, 174, 100, (172,350,0): 209, 171, 98, (172,351,0): 206, 168, 95, (172,352,0): 198, 164, 93, (172,353,0): 197, 164, 95, (172,354,0): 197, 164, 97, (172,355,0): 196, 166, 96, (172,356,0): 196, 167, 97, (172,357,0): 197, 171, 97, (172,358,0): 197, 174, 98, (172,359,0): 197, 176, 97, (172,360,0): 200, 179, 100, (172,361,0): 201, 180, 99, (172,362,0): 203, 181, 98, (172,363,0): 206, 181, 97, (172,364,0): 209, 183, 99, (172,365,0): 211, 185, 100, (172,366,0): 214, 186, 103, (172,367,0): 215, 187, 103, (172,368,0): 218, 193, 103, (172,369,0): 216, 193, 100, (172,370,0): 213, 189, 101, (172,371,0): 211, 187, 101, (172,372,0): 208, 186, 101, (172,373,0): 206, 185, 102, (172,374,0): 207, 186, 107, (172,375,0): 205, 186, 107, (172,376,0): 201, 183, 107, (172,377,0): 198, 182, 105, (172,378,0): 196, 180, 103, (172,379,0): 195, 182, 104, (172,380,0): 198, 187, 107, (172,381,0): 200, 189, 109, (172,382,0): 200, 189, 109, (172,383,0): 198, 187, 108, (172,384,0): 194, 185, 110, (172,385,0): 189, 181, 106, (172,386,0): 182, 174, 99, (172,387,0): 178, 171, 93, (172,388,0): 178, 171, 91, (172,389,0): 183, 176, 95, (172,390,0): 190, 183, 102, (172,391,0): 195, 189, 103, (172,392,0): 197, 191, 103, (172,393,0): 200, 195, 104, (172,394,0): 205, 200, 108, (172,395,0): 210, 205, 111, (172,396,0): 215, 211, 114, (172,397,0): 218, 214, 117, (172,398,0): 220, 216, 117, (172,399,0): 221, 215, 117, (172,400,0): 228, 218, 120, (172,401,0): 230, 221, 120, (172,402,0): 234, 222, 124, (172,403,0): 235, 226, 125, (172,404,0): 237, 228, 127, (172,405,0): 237, 230, 126, (172,406,0): 238, 231, 127, (172,407,0): 238, 231, 127, (172,408,0): 241, 234, 130, (172,409,0): 239, 235, 128, (172,410,0): 239, 235, 128, (172,411,0): 238, 236, 127, (172,412,0): 239, 237, 128, (172,413,0): 240, 238, 129, (172,414,0): 240, 238, 129, (172,415,0): 241, 239, 130, (172,416,0): 240, 237, 130, (172,417,0): 240, 237, 130, (172,418,0): 240, 237, 130, (172,419,0): 242, 240, 131, (172,420,0): 245, 243, 132, (172,421,0): 248, 246, 133, (172,422,0): 252, 250, 137, (172,423,0): 254, 253, 137, (172,424,0): 243, 241, 128, (172,425,0): 240, 238, 125, (172,426,0): 238, 236, 125, (172,427,0): 237, 235, 126, (172,428,0): 237, 234, 127, (172,429,0): 235, 232, 125, (172,430,0): 230, 227, 122, (172,431,0): 227, 222, 120, (172,432,0): 222, 214, 113, (172,433,0): 218, 210, 111, (172,434,0): 213, 203, 105, (172,435,0): 213, 201, 103, (172,436,0): 215, 203, 105, (172,437,0): 218, 204, 107, (172,438,0): 219, 205, 108, (172,439,0): 219, 203, 107, (172,440,0): 224, 210, 113, (172,441,0): 222, 208, 111, (172,442,0): 219, 206, 110, (172,443,0): 214, 204, 107, (172,444,0): 209, 203, 105, (172,445,0): 206, 202, 103, (172,446,0): 206, 202, 103, (172,447,0): 205, 203, 103, (172,448,0): 211, 209, 109, (172,449,0): 214, 212, 112, (172,450,0): 214, 214, 114, (172,451,0): 212, 214, 115, (172,452,0): 207, 212, 112, (172,453,0): 207, 212, 112, (172,454,0): 209, 215, 117, (172,455,0): 213, 219, 121, (172,456,0): 207, 213, 115, (172,457,0): 209, 215, 119, (172,458,0): 214, 218, 123, (172,459,0): 219, 223, 128, (172,460,0): 224, 225, 132, (172,461,0): 228, 227, 135, (172,462,0): 232, 228, 137, (172,463,0): 229, 229, 139, (172,464,0): 225, 231, 143, (172,465,0): 222, 232, 145, (172,466,0): 222, 232, 146, (172,467,0): 217, 229, 145, (172,468,0): 214, 223, 142, (172,469,0): 206, 217, 138, (172,470,0): 199, 210, 132, (172,471,0): 195, 207, 133, (172,472,0): 189, 201, 129, (172,473,0): 189, 200, 132, (172,474,0): 188, 199, 133, (172,475,0): 186, 198, 134, (172,476,0): 184, 195, 135, (172,477,0): 182, 193, 133, (172,478,0): 180, 191, 133, (172,479,0): 177, 190, 134, (172,480,0): 167, 184, 129, (172,481,0): 162, 183, 127, (172,482,0): 159, 179, 126, (172,483,0): 158, 176, 124, (172,484,0): 156, 172, 123, (172,485,0): 152, 168, 121, (172,486,0): 147, 160, 116, (172,487,0): 142, 153, 111, (172,488,0): 134, 142, 103, (172,489,0): 133, 139, 103, (172,490,0): 131, 135, 102, (172,491,0): 128, 131, 100, (172,492,0): 126, 126, 98, (172,493,0): 123, 123, 97, (172,494,0): 122, 120, 97, (172,495,0): 120, 120, 96, (172,496,0): 118, 120, 96, (172,497,0): 117, 121, 96, (172,498,0): 115, 119, 96, (172,499,0): 114, 118, 95, (172,500,0): 113, 115, 93, (172,501,0): 111, 113, 91, (172,502,0): 109, 111, 90, (172,503,0): 109, 111, 90, (172,504,0): 104, 103, 85, (172,505,0): 103, 102, 84, (172,506,0): 101, 98, 81, (172,507,0): 97, 94, 77, (172,508,0): 93, 90, 75, (172,509,0): 90, 87, 72, (172,510,0): 89, 83, 69, (172,511,0): 88, 82, 70, (172,512,0): 83, 74, 67, (172,513,0): 84, 73, 69, (172,514,0): 85, 74, 70, (172,515,0): 87, 78, 71, (172,516,0): 91, 82, 75, (172,517,0): 96, 87, 78, (172,518,0): 99, 93, 81, (172,519,0): 102, 96, 82, (172,520,0): 104, 101, 84, (172,521,0): 107, 104, 85, (172,522,0): 110, 109, 89, (172,523,0): 111, 110, 89, (172,524,0): 110, 112, 88, (172,525,0): 112, 114, 90, (172,526,0): 116, 119, 92, (172,527,0): 118, 122, 95, (172,528,0): 126, 129, 102, (172,529,0): 126, 129, 102, (172,530,0): 126, 129, 102, (172,531,0): 126, 129, 102, (172,532,0): 124, 127, 100, (172,533,0): 121, 124, 97, (172,534,0): 119, 122, 95, (172,535,0): 118, 121, 94, (172,536,0): 115, 118, 91, (172,537,0): 114, 117, 90, (172,538,0): 113, 116, 89, (172,539,0): 112, 115, 88, (172,540,0): 111, 114, 87, (172,541,0): 109, 112, 85, (172,542,0): 108, 111, 84, (172,543,0): 108, 110, 86, (172,544,0): 106, 109, 90, (172,545,0): 105, 108, 91, (172,546,0): 103, 106, 89, (172,547,0): 101, 104, 87, (172,548,0): 98, 101, 84, (172,549,0): 95, 98, 81, (172,550,0): 93, 95, 81, (172,551,0): 92, 94, 80, (172,552,0): 92, 94, 81, (172,553,0): 91, 93, 80, (172,554,0): 91, 93, 82, (172,555,0): 90, 92, 81, (172,556,0): 91, 93, 82, (172,557,0): 92, 94, 83, (172,558,0): 94, 96, 85, (172,559,0): 95, 97, 86, (172,560,0): 98, 101, 92, (172,561,0): 99, 102, 93, (172,562,0): 99, 104, 97, (172,563,0): 102, 107, 100, (172,564,0): 105, 110, 103, (172,565,0): 106, 113, 105, (172,566,0): 106, 116, 108, (172,567,0): 107, 117, 109, (172,568,0): 108, 119, 113, (172,569,0): 107, 120, 113, (172,570,0): 106, 121, 114, (172,571,0): 107, 122, 115, (172,572,0): 107, 124, 118, (172,573,0): 108, 125, 119, (172,574,0): 106, 125, 119, (172,575,0): 108, 124, 123, (172,576,0): 114, 127, 135, (172,577,0): 113, 126, 135, (172,578,0): 114, 124, 134, (172,579,0): 115, 125, 134, (172,580,0): 116, 125, 134, (172,581,0): 112, 121, 128, (172,582,0): 105, 112, 118, (172,583,0): 100, 105, 109, (172,584,0): 91, 95, 98, (172,585,0): 85, 89, 90, (172,586,0): 80, 81, 83, (172,587,0): 75, 77, 76, (172,588,0): 75, 75, 73, (172,589,0): 74, 74, 72, (172,590,0): 73, 72, 68, (172,591,0): 73, 69, 66, (172,592,0): 73, 68, 65, (172,593,0): 72, 67, 64, (172,594,0): 71, 66, 63, (172,595,0): 69, 64, 61, (172,596,0): 68, 63, 60, (172,597,0): 69, 64, 61, (172,598,0): 69, 64, 61, (172,599,0): 70, 65, 62, (173,0,0): 42, 30, 44, (173,1,0): 42, 30, 44, (173,2,0): 41, 29, 43, (173,3,0): 41, 29, 43, (173,4,0): 40, 28, 42, (173,5,0): 40, 28, 42, (173,6,0): 39, 27, 41, (173,7,0): 39, 27, 41, (173,8,0): 39, 27, 41, (173,9,0): 39, 27, 41, (173,10,0): 39, 27, 41, (173,11,0): 39, 27, 41, (173,12,0): 39, 27, 41, (173,13,0): 39, 27, 41, (173,14,0): 39, 27, 41, (173,15,0): 39, 27, 41, (173,16,0): 42, 25, 44, (173,17,0): 42, 25, 44, (173,18,0): 40, 26, 43, (173,19,0): 40, 26, 43, (173,20,0): 39, 26, 43, (173,21,0): 39, 26, 43, (173,22,0): 38, 27, 41, (173,23,0): 38, 27, 41, (173,24,0): 41, 29, 41, (173,25,0): 41, 29, 41, (173,26,0): 43, 27, 40, (173,27,0): 44, 28, 41, (173,28,0): 49, 29, 41, (173,29,0): 52, 32, 44, (173,30,0): 58, 34, 48, (173,31,0): 63, 35, 49, (173,32,0): 74, 33, 47, (173,33,0): 77, 33, 46, (173,34,0): 79, 36, 46, (173,35,0): 81, 38, 48, (173,36,0): 82, 39, 49, (173,37,0): 82, 39, 49, (173,38,0): 84, 38, 48, (173,39,0): 83, 37, 47, (173,40,0): 84, 39, 46, (173,41,0): 85, 40, 47, (173,42,0): 86, 41, 48, (173,43,0): 86, 41, 48, (173,44,0): 87, 40, 46, (173,45,0): 86, 39, 45, (173,46,0): 85, 38, 44, (173,47,0): 81, 39, 43, (173,48,0): 81, 41, 49, (173,49,0): 78, 41, 48, (173,50,0): 79, 39, 47, (173,51,0): 79, 39, 47, (173,52,0): 80, 39, 47, (173,53,0): 81, 38, 47, (173,54,0): 84, 38, 48, (173,55,0): 85, 39, 49, (173,56,0): 81, 35, 45, (173,57,0): 79, 36, 45, (173,58,0): 80, 37, 46, (173,59,0): 79, 38, 46, (173,60,0): 77, 37, 45, (173,61,0): 74, 37, 44, (173,62,0): 73, 36, 43, (173,63,0): 71, 36, 42, (173,64,0): 70, 35, 41, (173,65,0): 68, 36, 41, (173,66,0): 70, 35, 41, (173,67,0): 70, 35, 41, (173,68,0): 70, 35, 41, (173,69,0): 71, 34, 41, (173,70,0): 71, 34, 41, (173,71,0): 71, 34, 41, (173,72,0): 73, 33, 41, (173,73,0): 73, 33, 41, (173,74,0): 73, 33, 41, (173,75,0): 74, 34, 42, (173,76,0): 75, 34, 42, (173,77,0): 76, 35, 43, (173,78,0): 76, 35, 43, (173,79,0): 76, 35, 41, (173,80,0): 79, 36, 43, (173,81,0): 79, 37, 41, (173,82,0): 79, 37, 41, (173,83,0): 79, 37, 41, (173,84,0): 79, 37, 41, (173,85,0): 79, 37, 41, (173,86,0): 79, 37, 41, (173,87,0): 79, 37, 41, (173,88,0): 78, 36, 40, (173,89,0): 78, 36, 40, (173,90,0): 78, 36, 40, (173,91,0): 78, 36, 40, (173,92,0): 78, 36, 40, (173,93,0): 78, 36, 40, (173,94,0): 78, 36, 40, (173,95,0): 78, 36, 40, (173,96,0): 78, 33, 40, (173,97,0): 79, 34, 41, (173,98,0): 79, 36, 45, (173,99,0): 78, 37, 45, (173,100,0): 77, 35, 45, (173,101,0): 71, 34, 42, (173,102,0): 67, 31, 41, (173,103,0): 62, 31, 39, (173,104,0): 55, 25, 37, (173,105,0): 50, 24, 35, (173,106,0): 45, 21, 34, (173,107,0): 40, 18, 30, (173,108,0): 36, 16, 28, (173,109,0): 32, 14, 26, (173,110,0): 30, 14, 27, (173,111,0): 29, 13, 26, (173,112,0): 30, 14, 25, (173,113,0): 30, 14, 25, (173,114,0): 29, 13, 24, (173,115,0): 29, 13, 24, (173,116,0): 28, 12, 23, (173,117,0): 28, 12, 23, (173,118,0): 27, 11, 22, (173,119,0): 27, 11, 22, (173,120,0): 25, 9, 20, (173,121,0): 25, 9, 20, (173,122,0): 25, 9, 20, (173,123,0): 25, 9, 20, (173,124,0): 25, 9, 20, (173,125,0): 25, 9, 20, (173,126,0): 25, 9, 20, (173,127,0): 25, 9, 20, (173,128,0): 27, 9, 23, (173,129,0): 28, 10, 24, (173,130,0): 28, 10, 22, (173,131,0): 28, 10, 22, (173,132,0): 29, 11, 23, (173,133,0): 30, 12, 24, (173,134,0): 30, 13, 23, (173,135,0): 30, 13, 23, (173,136,0): 30, 13, 21, (173,137,0): 31, 14, 22, (173,138,0): 31, 14, 22, (173,139,0): 31, 14, 22, (173,140,0): 32, 15, 21, (173,141,0): 33, 16, 22, (173,142,0): 33, 16, 22, (173,143,0): 35, 16, 20, (173,144,0): 38, 18, 20, (173,145,0): 39, 17, 19, (173,146,0): 40, 18, 20, (173,147,0): 41, 19, 21, (173,148,0): 42, 20, 22, (173,149,0): 43, 21, 23, (173,150,0): 44, 22, 24, (173,151,0): 44, 22, 24, (173,152,0): 44, 22, 24, (173,153,0): 44, 22, 24, (173,154,0): 44, 22, 24, (173,155,0): 44, 22, 24, (173,156,0): 44, 22, 24, (173,157,0): 44, 22, 24, (173,158,0): 44, 22, 24, (173,159,0): 44, 23, 22, (173,160,0): 48, 27, 26, (173,161,0): 48, 27, 24, (173,162,0): 48, 27, 24, (173,163,0): 49, 28, 25, (173,164,0): 49, 28, 25, (173,165,0): 50, 29, 26, (173,166,0): 50, 29, 26, (173,167,0): 51, 30, 27, (173,168,0): 50, 29, 26, (173,169,0): 49, 28, 25, (173,170,0): 49, 28, 25, (173,171,0): 49, 28, 25, (173,172,0): 48, 27, 24, (173,173,0): 47, 26, 23, (173,174,0): 47, 26, 23, (173,175,0): 47, 26, 23, (173,176,0): 47, 26, 23, (173,177,0): 47, 26, 23, (173,178,0): 46, 25, 22, (173,179,0): 46, 25, 22, (173,180,0): 45, 24, 21, (173,181,0): 45, 24, 21, (173,182,0): 44, 23, 20, (173,183,0): 44, 23, 20, (173,184,0): 43, 22, 19, (173,185,0): 43, 22, 19, (173,186,0): 43, 22, 19, (173,187,0): 43, 22, 19, (173,188,0): 43, 22, 19, (173,189,0): 43, 22, 19, (173,190,0): 43, 22, 19, (173,191,0): 43, 22, 17, (173,192,0): 47, 22, 17, (173,193,0): 48, 23, 16, (173,194,0): 49, 24, 17, (173,195,0): 51, 26, 19, (173,196,0): 55, 28, 21, (173,197,0): 57, 30, 23, (173,198,0): 59, 32, 25, (173,199,0): 60, 33, 26, (173,200,0): 57, 28, 22, (173,201,0): 57, 28, 22, (173,202,0): 59, 28, 23, (173,203,0): 59, 28, 23, (173,204,0): 59, 28, 23, (173,205,0): 58, 27, 22, (173,206,0): 58, 25, 20, (173,207,0): 55, 24, 19, (173,208,0): 52, 24, 21, (173,209,0): 50, 25, 21, (173,210,0): 50, 25, 20, (173,211,0): 50, 25, 20, (173,212,0): 49, 24, 19, (173,213,0): 49, 24, 19, (173,214,0): 48, 23, 16, (173,215,0): 48, 23, 16, (173,216,0): 47, 23, 13, (173,217,0): 48, 24, 14, (173,218,0): 50, 26, 16, (173,219,0): 51, 27, 17, (173,220,0): 51, 27, 15, (173,221,0): 51, 27, 15, (173,222,0): 51, 27, 15, (173,223,0): 50, 26, 14, (173,224,0): 52, 27, 20, (173,225,0): 52, 27, 20, (173,226,0): 52, 27, 20, (173,227,0): 53, 28, 21, (173,228,0): 55, 28, 19, (173,229,0): 56, 29, 20, (173,230,0): 56, 29, 20, (173,231,0): 56, 29, 20, (173,232,0): 58, 30, 19, (173,233,0): 58, 30, 19, (173,234,0): 60, 30, 19, (173,235,0): 60, 30, 19, (173,236,0): 59, 29, 18, (173,237,0): 58, 28, 17, (173,238,0): 59, 27, 14, (173,239,0): 55, 27, 15, (173,240,0): 49, 25, 15, (173,241,0): 46, 26, 17, (173,242,0): 46, 26, 17, (173,243,0): 45, 25, 16, (173,244,0): 44, 24, 15, (173,245,0): 44, 24, 15, (173,246,0): 44, 24, 15, (173,247,0): 43, 23, 14, (173,248,0): 46, 26, 17, (173,249,0): 47, 27, 18, (173,250,0): 47, 27, 18, (173,251,0): 47, 27, 18, (173,252,0): 48, 28, 19, (173,253,0): 49, 29, 20, (173,254,0): 49, 29, 20, (173,255,0): 51, 29, 18, (173,256,0): 58, 31, 22, (173,257,0): 59, 31, 20, (173,258,0): 59, 31, 20, (173,259,0): 59, 31, 20, (173,260,0): 59, 30, 22, (173,261,0): 59, 30, 22, (173,262,0): 59, 30, 22, (173,263,0): 59, 30, 22, (173,264,0): 59, 30, 24, (173,265,0): 60, 31, 25, (173,266,0): 60, 31, 27, (173,267,0): 61, 32, 28, (173,268,0): 63, 34, 30, (173,269,0): 64, 35, 31, (173,270,0): 64, 34, 32, (173,271,0): 64, 36, 33, (173,272,0): 62, 33, 35, (173,273,0): 59, 33, 34, (173,274,0): 59, 33, 32, (173,275,0): 58, 32, 31, (173,276,0): 57, 32, 28, (173,277,0): 56, 31, 27, (173,278,0): 56, 31, 26, (173,279,0): 55, 30, 23, (173,280,0): 59, 34, 27, (173,281,0): 63, 39, 29, (173,282,0): 67, 43, 31, (173,283,0): 68, 44, 32, (173,284,0): 67, 44, 30, (173,285,0): 67, 44, 30, (173,286,0): 69, 46, 30, (173,287,0): 70, 49, 30, (173,288,0): 73, 52, 31, (173,289,0): 72, 54, 30, (173,290,0): 72, 54, 30, (173,291,0): 73, 55, 31, (173,292,0): 74, 56, 32, (173,293,0): 76, 58, 34, (173,294,0): 76, 58, 34, (173,295,0): 77, 59, 35, (173,296,0): 81, 63, 39, (173,297,0): 81, 63, 39, (173,298,0): 81, 63, 39, (173,299,0): 81, 63, 39, (173,300,0): 84, 66, 42, (173,301,0): 87, 69, 45, (173,302,0): 90, 72, 48, (173,303,0): 92, 74, 50, (173,304,0): 91, 73, 51, (173,305,0): 91, 73, 49, (173,306,0): 91, 73, 49, (173,307,0): 93, 76, 50, (173,308,0): 97, 77, 50, (173,309,0): 100, 80, 53, (173,310,0): 103, 82, 55, (173,311,0): 105, 84, 57, (173,312,0): 109, 88, 61, (173,313,0): 114, 93, 64, (173,314,0): 121, 98, 66, (173,315,0): 122, 100, 61, (173,316,0): 123, 101, 52, (173,317,0): 130, 109, 54, (173,318,0): 142, 122, 61, (173,319,0): 153, 134, 68, (173,320,0): 161, 142, 74, (173,321,0): 160, 141, 73, (173,322,0): 157, 139, 73, (173,323,0): 156, 138, 72, (173,324,0): 154, 138, 76, (173,325,0): 154, 138, 76, (173,326,0): 154, 140, 79, (173,327,0): 155, 141, 80, (173,328,0): 156, 140, 78, (173,329,0): 160, 144, 82, (173,330,0): 169, 149, 86, (173,331,0): 176, 157, 91, (173,332,0): 183, 160, 93, (173,333,0): 186, 163, 95, (173,334,0): 190, 163, 94, (173,335,0): 190, 163, 94, (173,336,0): 185, 156, 90, (173,337,0): 186, 155, 90, (173,338,0): 189, 155, 92, (173,339,0): 191, 155, 93, (173,340,0): 196, 156, 97, (173,341,0): 197, 157, 98, (173,342,0): 198, 159, 100, (173,343,0): 197, 161, 101, (173,344,0): 200, 168, 107, (173,345,0): 197, 169, 104, (173,346,0): 196, 169, 102, (173,347,0): 198, 171, 102, (173,348,0): 201, 172, 102, (173,349,0): 202, 172, 100, (173,350,0): 201, 169, 96, (173,351,0): 199, 165, 93, (173,352,0): 199, 166, 95, (173,353,0): 199, 166, 95, (173,354,0): 197, 167, 95, (173,355,0): 197, 169, 96, (173,356,0): 195, 171, 97, (173,357,0): 195, 173, 97, (173,358,0): 194, 175, 96, (173,359,0): 193, 176, 94, (173,360,0): 199, 182, 100, (173,361,0): 199, 183, 98, (173,362,0): 200, 182, 96, (173,363,0): 201, 184, 96, (173,364,0): 206, 184, 98, (173,365,0): 209, 188, 99, (173,366,0): 213, 189, 101, (173,367,0): 214, 190, 102, (173,368,0): 218, 194, 104, (173,369,0): 217, 194, 101, (173,370,0): 214, 190, 102, (173,371,0): 212, 188, 102, (173,372,0): 208, 186, 101, (173,373,0): 207, 185, 102, (173,374,0): 206, 185, 106, (173,375,0): 204, 185, 106, (173,376,0): 199, 181, 105, (173,377,0): 197, 179, 103, (173,378,0): 195, 179, 102, (173,379,0): 194, 181, 103, (173,380,0): 197, 184, 105, (173,381,0): 198, 187, 107, (173,382,0): 197, 186, 106, (173,383,0): 193, 184, 105, (173,384,0): 189, 181, 106, (173,385,0): 185, 177, 104, (173,386,0): 178, 170, 95, (173,387,0): 173, 165, 90, (173,388,0): 173, 166, 88, (173,389,0): 178, 171, 91, (173,390,0): 185, 178, 97, (173,391,0): 190, 184, 100, (173,392,0): 194, 188, 102, (173,393,0): 198, 193, 102, (173,394,0): 203, 198, 107, (173,395,0): 209, 204, 112, (173,396,0): 214, 209, 115, (173,397,0): 217, 213, 116, (173,398,0): 219, 215, 118, (173,399,0): 219, 215, 116, (173,400,0): 226, 218, 120, (173,401,0): 228, 218, 120, (173,402,0): 230, 220, 122, (173,403,0): 232, 222, 124, (173,404,0): 233, 225, 126, (173,405,0): 235, 227, 126, (173,406,0): 237, 229, 128, (173,407,0): 235, 230, 128, (173,408,0): 237, 232, 130, (173,409,0): 236, 233, 128, (173,410,0): 235, 232, 127, (173,411,0): 236, 233, 126, (173,412,0): 237, 234, 127, (173,413,0): 239, 236, 129, (173,414,0): 240, 239, 131, (173,415,0): 241, 241, 131, (173,416,0): 246, 244, 135, (173,417,0): 247, 245, 136, (173,418,0): 248, 246, 135, (173,419,0): 249, 247, 136, (173,420,0): 249, 247, 134, (173,421,0): 250, 249, 133, (173,422,0): 250, 249, 133, (173,423,0): 251, 250, 134, (173,424,0): 241, 239, 126, (173,425,0): 238, 236, 125, (173,426,0): 236, 234, 125, (173,427,0): 235, 232, 125, (173,428,0): 235, 232, 127, (173,429,0): 233, 230, 127, (173,430,0): 228, 224, 124, (173,431,0): 225, 220, 118, (173,432,0): 223, 216, 112, (173,433,0): 222, 211, 106, (173,434,0): 218, 206, 104, (173,435,0): 218, 205, 103, (173,436,0): 220, 207, 105, (173,437,0): 223, 208, 107, (173,438,0): 223, 208, 107, (173,439,0): 223, 207, 109, (173,440,0): 225, 211, 112, (173,441,0): 222, 210, 112, (173,442,0): 216, 206, 108, (173,443,0): 212, 204, 105, (173,444,0): 206, 202, 103, (173,445,0): 203, 201, 101, (173,446,0): 199, 199, 99, (173,447,0): 198, 200, 99, (173,448,0): 206, 208, 107, (173,449,0): 210, 212, 111, (173,450,0): 214, 216, 117, (173,451,0): 211, 216, 116, (173,452,0): 206, 212, 112, (173,453,0): 204, 212, 111, (173,454,0): 207, 215, 116, (173,455,0): 209, 219, 120, (173,456,0): 207, 217, 120, (173,457,0): 209, 219, 122, (173,458,0): 214, 221, 125, (173,459,0): 219, 225, 129, (173,460,0): 223, 227, 133, (173,461,0): 225, 229, 135, (173,462,0): 228, 229, 136, (173,463,0): 226, 229, 138, (173,464,0): 219, 229, 140, (173,465,0): 217, 230, 142, (173,466,0): 216, 228, 142, (173,467,0): 213, 225, 141, (173,468,0): 208, 220, 138, (173,469,0): 202, 215, 136, (173,470,0): 196, 208, 132, (173,471,0): 192, 204, 130, (173,472,0): 185, 196, 127, (173,473,0): 185, 196, 128, (173,474,0): 183, 195, 129, (173,475,0): 183, 195, 133, (173,476,0): 182, 193, 133, (173,477,0): 181, 192, 134, (173,478,0): 181, 192, 136, (173,479,0): 178, 191, 137, (173,480,0): 170, 189, 134, (173,481,0): 165, 186, 130, (173,482,0): 161, 181, 128, (173,483,0): 158, 178, 127, (173,484,0): 156, 174, 126, (173,485,0): 152, 168, 123, (173,486,0): 147, 160, 117, (173,487,0): 142, 154, 114, (173,488,0): 135, 143, 106, (173,489,0): 133, 140, 106, (173,490,0): 131, 134, 103, (173,491,0): 128, 131, 102, (173,492,0): 127, 127, 101, (173,493,0): 125, 125, 99, (173,494,0): 125, 123, 100, (173,495,0): 124, 124, 100, (173,496,0): 122, 124, 100, (173,497,0): 120, 124, 99, (173,498,0): 118, 122, 99, (173,499,0): 116, 120, 97, (173,500,0): 114, 116, 94, (173,501,0): 112, 114, 92, (173,502,0): 110, 112, 91, (173,503,0): 110, 112, 91, (173,504,0): 106, 105, 87, (173,505,0): 104, 103, 85, (173,506,0): 102, 99, 82, (173,507,0): 99, 96, 79, (173,508,0): 95, 92, 77, (173,509,0): 91, 88, 73, (173,510,0): 91, 85, 71, (173,511,0): 90, 82, 71, (173,512,0): 83, 72, 68, (173,513,0): 82, 71, 69, (173,514,0): 82, 71, 67, (173,515,0): 82, 71, 67, (173,516,0): 84, 75, 68, (173,517,0): 90, 81, 72, (173,518,0): 94, 87, 77, (173,519,0): 97, 91, 77, (173,520,0): 103, 100, 85, (173,521,0): 107, 104, 85, (173,522,0): 110, 109, 89, (173,523,0): 110, 112, 90, (173,524,0): 111, 113, 89, (173,525,0): 113, 115, 91, (173,526,0): 116, 120, 93, (173,527,0): 119, 123, 96, (173,528,0): 123, 126, 99, (173,529,0): 123, 126, 99, (173,530,0): 123, 126, 99, (173,531,0): 122, 125, 98, (173,532,0): 120, 123, 96, (173,533,0): 118, 121, 94, (173,534,0): 116, 119, 92, (173,535,0): 114, 117, 90, (173,536,0): 113, 116, 89, (173,537,0): 113, 116, 89, (173,538,0): 113, 116, 89, (173,539,0): 112, 115, 88, (173,540,0): 111, 114, 87, (173,541,0): 111, 114, 87, (173,542,0): 110, 113, 86, (173,543,0): 110, 112, 88, (173,544,0): 109, 112, 93, (173,545,0): 108, 111, 94, (173,546,0): 106, 109, 92, (173,547,0): 103, 106, 89, (173,548,0): 100, 103, 86, (173,549,0): 97, 100, 83, (173,550,0): 94, 96, 82, (173,551,0): 93, 95, 81, (173,552,0): 95, 97, 84, (173,553,0): 95, 97, 84, (173,554,0): 94, 96, 85, (173,555,0): 94, 96, 85, (173,556,0): 94, 96, 85, (173,557,0): 96, 98, 87, (173,558,0): 97, 99, 88, (173,559,0): 98, 100, 89, (173,560,0): 100, 103, 94, (173,561,0): 101, 104, 95, (173,562,0): 101, 106, 99, (173,563,0): 103, 108, 101, (173,564,0): 105, 112, 104, (173,565,0): 108, 115, 107, (173,566,0): 108, 118, 110, (173,567,0): 108, 119, 111, (173,568,0): 108, 119, 113, (173,569,0): 109, 122, 115, (173,570,0): 109, 124, 117, (173,571,0): 110, 125, 118, (173,572,0): 111, 128, 122, (173,573,0): 111, 128, 122, (173,574,0): 109, 128, 122, (173,575,0): 109, 128, 126, (173,576,0): 114, 129, 136, (173,577,0): 114, 126, 138, (173,578,0): 116, 126, 138, (173,579,0): 118, 128, 138, (173,580,0): 119, 127, 138, (173,581,0): 114, 123, 132, (173,582,0): 104, 111, 119, (173,583,0): 95, 102, 108, (173,584,0): 86, 91, 95, (173,585,0): 82, 86, 89, (173,586,0): 78, 79, 81, (173,587,0): 75, 77, 76, (173,588,0): 75, 75, 75, (173,589,0): 75, 75, 73, (173,590,0): 74, 73, 69, (173,591,0): 71, 70, 66, (173,592,0): 73, 69, 66, (173,593,0): 73, 68, 65, (173,594,0): 71, 66, 63, (173,595,0): 69, 64, 61, (173,596,0): 68, 63, 60, (173,597,0): 68, 63, 60, (173,598,0): 68, 63, 60, (173,599,0): 69, 64, 61, (174,0,0): 42, 30, 44, (174,1,0): 42, 30, 44, (174,2,0): 41, 29, 43, (174,3,0): 41, 29, 43, (174,4,0): 40, 28, 42, (174,5,0): 40, 28, 42, (174,6,0): 39, 27, 41, (174,7,0): 39, 27, 41, (174,8,0): 39, 27, 41, (174,9,0): 39, 27, 41, (174,10,0): 39, 27, 41, (174,11,0): 39, 27, 41, (174,12,0): 39, 27, 41, (174,13,0): 39, 27, 41, (174,14,0): 39, 27, 41, (174,15,0): 39, 27, 41, (174,16,0): 42, 25, 44, (174,17,0): 42, 25, 44, (174,18,0): 40, 26, 43, (174,19,0): 40, 26, 43, (174,20,0): 39, 26, 43, (174,21,0): 39, 26, 43, (174,22,0): 38, 27, 41, (174,23,0): 38, 27, 41, (174,24,0): 42, 30, 42, (174,25,0): 41, 29, 41, (174,26,0): 43, 27, 40, (174,27,0): 43, 27, 40, (174,28,0): 49, 29, 41, (174,29,0): 53, 33, 45, (174,30,0): 59, 35, 49, (174,31,0): 65, 37, 51, (174,32,0): 75, 35, 46, (174,33,0): 78, 35, 45, (174,34,0): 79, 36, 46, (174,35,0): 81, 38, 48, (174,36,0): 82, 39, 49, (174,37,0): 82, 39, 49, (174,38,0): 82, 39, 48, (174,39,0): 81, 38, 47, (174,40,0): 82, 37, 44, (174,41,0): 83, 38, 45, (174,42,0): 85, 40, 45, (174,43,0): 86, 41, 46, (174,44,0): 86, 41, 46, (174,45,0): 85, 40, 45, (174,46,0): 84, 39, 44, (174,47,0): 81, 39, 43, (174,48,0): 80, 40, 48, (174,49,0): 77, 42, 48, (174,50,0): 77, 40, 47, (174,51,0): 78, 38, 46, (174,52,0): 79, 38, 46, (174,53,0): 80, 39, 47, (174,54,0): 82, 39, 48, (174,55,0): 82, 39, 48, (174,56,0): 78, 35, 44, (174,57,0): 79, 36, 45, (174,58,0): 80, 37, 46, (174,59,0): 80, 39, 47, (174,60,0): 78, 38, 46, (174,61,0): 75, 38, 45, (174,62,0): 73, 36, 43, (174,63,0): 71, 36, 42, (174,64,0): 67, 36, 41, (174,65,0): 67, 36, 41, (174,66,0): 68, 36, 41, (174,67,0): 68, 36, 41, (174,68,0): 68, 36, 41, (174,69,0): 70, 35, 41, (174,70,0): 70, 35, 41, (174,71,0): 70, 35, 41, (174,72,0): 70, 33, 40, (174,73,0): 70, 33, 40, (174,74,0): 73, 33, 41, (174,75,0): 74, 34, 42, (174,76,0): 75, 34, 42, (174,77,0): 76, 35, 43, (174,78,0): 78, 35, 44, (174,79,0): 78, 35, 42, (174,80,0): 80, 37, 44, (174,81,0): 80, 38, 42, (174,82,0): 80, 38, 42, (174,83,0): 80, 38, 42, (174,84,0): 80, 38, 42, (174,85,0): 80, 38, 42, (174,86,0): 80, 38, 42, (174,87,0): 80, 38, 42, (174,88,0): 78, 36, 40, (174,89,0): 78, 36, 40, (174,90,0): 78, 36, 40, (174,91,0): 78, 36, 40, (174,92,0): 78, 36, 40, (174,93,0): 78, 36, 40, (174,94,0): 78, 36, 40, (174,95,0): 78, 36, 40, (174,96,0): 77, 32, 39, (174,97,0): 78, 33, 40, (174,98,0): 78, 35, 44, (174,99,0): 77, 36, 44, (174,100,0): 76, 34, 44, (174,101,0): 71, 34, 42, (174,102,0): 67, 31, 41, (174,103,0): 62, 31, 39, (174,104,0): 53, 23, 35, (174,105,0): 48, 22, 33, (174,106,0): 43, 19, 32, (174,107,0): 39, 17, 29, (174,108,0): 36, 16, 28, (174,109,0): 32, 14, 26, (174,110,0): 30, 14, 27, (174,111,0): 30, 14, 27, (174,112,0): 30, 14, 25, (174,113,0): 30, 14, 25, (174,114,0): 29, 13, 24, (174,115,0): 29, 13, 24, (174,116,0): 28, 12, 23, (174,117,0): 28, 12, 23, (174,118,0): 27, 11, 22, (174,119,0): 27, 11, 22, (174,120,0): 24, 8, 19, (174,121,0): 24, 8, 19, (174,122,0): 24, 8, 19, (174,123,0): 24, 8, 19, (174,124,0): 24, 8, 19, (174,125,0): 24, 8, 19, (174,126,0): 24, 8, 19, (174,127,0): 24, 8, 19, (174,128,0): 27, 9, 23, (174,129,0): 27, 9, 23, (174,130,0): 28, 10, 22, (174,131,0): 28, 10, 22, (174,132,0): 29, 11, 23, (174,133,0): 29, 11, 23, (174,134,0): 29, 12, 22, (174,135,0): 30, 13, 23, (174,136,0): 30, 13, 21, (174,137,0): 30, 13, 21, (174,138,0): 31, 14, 22, (174,139,0): 31, 14, 22, (174,140,0): 32, 15, 21, (174,141,0): 32, 15, 21, (174,142,0): 32, 15, 21, (174,143,0): 35, 16, 20, (174,144,0): 38, 18, 20, (174,145,0): 39, 17, 19, (174,146,0): 40, 18, 20, (174,147,0): 41, 19, 21, (174,148,0): 42, 20, 22, (174,149,0): 43, 21, 23, (174,150,0): 44, 22, 24, (174,151,0): 44, 22, 24, (174,152,0): 45, 23, 25, (174,153,0): 45, 23, 25, (174,154,0): 45, 23, 25, (174,155,0): 45, 23, 25, (174,156,0): 45, 23, 25, (174,157,0): 45, 23, 25, (174,158,0): 45, 23, 25, (174,159,0): 45, 24, 23, (174,160,0): 47, 26, 25, (174,161,0): 48, 27, 24, (174,162,0): 48, 27, 24, (174,163,0): 49, 28, 25, (174,164,0): 49, 28, 25, (174,165,0): 50, 29, 26, (174,166,0): 50, 29, 26, (174,167,0): 50, 29, 26, (174,168,0): 48, 27, 24, (174,169,0): 48, 27, 24, (174,170,0): 48, 27, 24, (174,171,0): 47, 26, 23, (174,172,0): 47, 26, 23, (174,173,0): 46, 25, 22, (174,174,0): 46, 25, 22, (174,175,0): 45, 24, 21, (174,176,0): 47, 26, 23, (174,177,0): 47, 26, 23, (174,178,0): 46, 25, 22, (174,179,0): 46, 25, 22, (174,180,0): 45, 24, 21, (174,181,0): 45, 24, 21, (174,182,0): 44, 23, 20, (174,183,0): 44, 23, 20, (174,184,0): 43, 22, 19, (174,185,0): 43, 22, 19, (174,186,0): 43, 22, 19, (174,187,0): 43, 22, 19, (174,188,0): 43, 22, 19, (174,189,0): 43, 22, 19, (174,190,0): 43, 22, 19, (174,191,0): 43, 22, 17, (174,192,0): 47, 22, 17, (174,193,0): 48, 23, 16, (174,194,0): 49, 24, 17, (174,195,0): 51, 26, 19, (174,196,0): 56, 29, 22, (174,197,0): 58, 31, 24, (174,198,0): 61, 32, 26, (174,199,0): 62, 33, 27, (174,200,0): 57, 28, 22, (174,201,0): 58, 29, 23, (174,202,0): 60, 29, 24, (174,203,0): 60, 29, 24, (174,204,0): 61, 28, 23, (174,205,0): 60, 27, 22, (174,206,0): 58, 25, 20, (174,207,0): 55, 24, 19, (174,208,0): 54, 26, 23, (174,209,0): 51, 26, 22, (174,210,0): 51, 26, 21, (174,211,0): 50, 25, 20, (174,212,0): 49, 24, 19, (174,213,0): 49, 24, 19, (174,214,0): 48, 23, 16, (174,215,0): 48, 23, 16, (174,216,0): 47, 23, 13, (174,217,0): 48, 24, 14, (174,218,0): 50, 26, 16, (174,219,0): 51, 27, 17, (174,220,0): 52, 28, 16, (174,221,0): 51, 27, 15, (174,222,0): 50, 26, 14, (174,223,0): 50, 26, 14, (174,224,0): 52, 27, 20, (174,225,0): 52, 27, 20, (174,226,0): 52, 27, 20, (174,227,0): 53, 28, 21, (174,228,0): 55, 28, 19, (174,229,0): 56, 29, 20, (174,230,0): 56, 29, 20, (174,231,0): 56, 29, 20, (174,232,0): 57, 29, 18, (174,233,0): 58, 30, 19, (174,234,0): 60, 30, 19, (174,235,0): 60, 30, 19, (174,236,0): 60, 30, 19, (174,237,0): 59, 29, 18, (174,238,0): 59, 27, 14, (174,239,0): 55, 27, 15, (174,240,0): 49, 25, 15, (174,241,0): 45, 25, 16, (174,242,0): 45, 25, 16, (174,243,0): 45, 25, 16, (174,244,0): 44, 24, 15, (174,245,0): 44, 24, 15, (174,246,0): 43, 23, 14, (174,247,0): 43, 23, 14, (174,248,0): 46, 26, 17, (174,249,0): 46, 26, 17, (174,250,0): 47, 27, 18, (174,251,0): 47, 27, 18, (174,252,0): 48, 28, 19, (174,253,0): 48, 28, 19, (174,254,0): 48, 28, 19, (174,255,0): 51, 29, 18, (174,256,0): 58, 31, 22, (174,257,0): 59, 31, 20, (174,258,0): 59, 31, 20, (174,259,0): 59, 31, 20, (174,260,0): 59, 30, 22, (174,261,0): 59, 30, 22, (174,262,0): 59, 30, 22, (174,263,0): 59, 30, 22, (174,264,0): 59, 30, 24, (174,265,0): 60, 31, 25, (174,266,0): 60, 31, 27, (174,267,0): 61, 32, 28, (174,268,0): 63, 34, 30, (174,269,0): 64, 35, 31, (174,270,0): 64, 34, 32, (174,271,0): 64, 36, 33, (174,272,0): 60, 31, 33, (174,273,0): 58, 32, 33, (174,274,0): 58, 32, 31, (174,275,0): 58, 32, 31, (174,276,0): 57, 32, 28, (174,277,0): 57, 32, 28, (174,278,0): 57, 32, 27, (174,279,0): 57, 32, 25, (174,280,0): 58, 33, 26, (174,281,0): 61, 37, 27, (174,282,0): 65, 41, 29, (174,283,0): 66, 42, 30, (174,284,0): 66, 43, 29, (174,285,0): 66, 43, 29, (174,286,0): 67, 44, 28, (174,287,0): 68, 47, 28, (174,288,0): 72, 51, 30, (174,289,0): 71, 53, 29, (174,290,0): 72, 54, 30, (174,291,0): 73, 55, 31, (174,292,0): 74, 56, 32, (174,293,0): 75, 57, 33, (174,294,0): 76, 58, 34, (174,295,0): 76, 58, 34, (174,296,0): 79, 61, 37, (174,297,0): 80, 62, 38, (174,298,0): 81, 63, 39, (174,299,0): 82, 64, 40, (174,300,0): 85, 67, 43, (174,301,0): 88, 70, 46, (174,302,0): 90, 72, 48, (174,303,0): 91, 73, 49, (174,304,0): 92, 74, 52, (174,305,0): 92, 74, 50, (174,306,0): 92, 74, 50, (174,307,0): 94, 77, 51, (174,308,0): 98, 78, 51, (174,309,0): 100, 80, 53, (174,310,0): 103, 83, 58, (174,311,0): 104, 84, 59, (174,312,0): 107, 85, 61, (174,313,0): 114, 93, 66, (174,314,0): 122, 99, 67, (174,315,0): 122, 100, 61, (174,316,0): 120, 99, 52, (174,317,0): 124, 105, 49, (174,318,0): 137, 117, 56, (174,319,0): 147, 128, 62, (174,320,0): 159, 140, 72, (174,321,0): 158, 139, 71, (174,322,0): 156, 138, 72, (174,323,0): 154, 136, 70, (174,324,0): 151, 135, 73, (174,325,0): 151, 135, 73, (174,326,0): 150, 136, 73, (174,327,0): 151, 137, 74, (174,328,0): 155, 139, 77, (174,329,0): 158, 142, 80, (174,330,0): 168, 148, 85, (174,331,0): 175, 156, 90, (174,332,0): 185, 162, 95, (174,333,0): 189, 166, 98, (174,334,0): 195, 168, 99, (174,335,0): 197, 170, 99, (174,336,0): 190, 161, 93, (174,337,0): 190, 159, 94, (174,338,0): 190, 156, 93, (174,339,0): 190, 154, 92, (174,340,0): 194, 154, 95, (174,341,0): 195, 155, 96, (174,342,0): 196, 157, 100, (174,343,0): 195, 160, 102, (174,344,0): 198, 168, 108, (174,345,0): 195, 167, 104, (174,346,0): 191, 168, 101, (174,347,0): 193, 170, 102, (174,348,0): 196, 172, 102, (174,349,0): 198, 171, 100, (174,350,0): 196, 167, 97, (174,351,0): 194, 164, 92, (174,352,0): 202, 169, 98, (174,353,0): 203, 171, 98, (174,354,0): 201, 171, 98, (174,355,0): 200, 174, 97, (174,356,0): 197, 176, 97, (174,357,0): 195, 177, 95, (174,358,0): 193, 178, 95, (174,359,0): 192, 177, 92, (174,360,0): 194, 183, 94, (174,361,0): 194, 183, 93, (174,362,0): 197, 183, 94, (174,363,0): 199, 186, 94, (174,364,0): 205, 188, 98, (174,365,0): 209, 192, 100, (174,366,0): 215, 196, 104, (174,367,0): 218, 197, 106, (174,368,0): 220, 197, 104, (174,369,0): 219, 194, 102, (174,370,0): 215, 191, 103, (174,371,0): 212, 188, 102, (174,372,0): 207, 185, 100, (174,373,0): 206, 184, 101, (174,374,0): 204, 183, 104, (174,375,0): 202, 183, 104, (174,376,0): 197, 179, 103, (174,377,0): 195, 177, 101, (174,378,0): 193, 177, 100, (174,379,0): 192, 179, 101, (174,380,0): 195, 182, 103, (174,381,0): 196, 183, 104, (174,382,0): 193, 182, 102, (174,383,0): 189, 180, 101, (174,384,0): 185, 177, 102, (174,385,0): 180, 174, 100, (174,386,0): 173, 167, 91, (174,387,0): 168, 162, 86, (174,388,0): 168, 162, 84, (174,389,0): 173, 168, 87, (174,390,0): 179, 174, 92, (174,391,0): 183, 178, 94, (174,392,0): 191, 187, 100, (174,393,0): 195, 191, 100, (174,394,0): 201, 197, 106, (174,395,0): 207, 204, 111, (174,396,0): 212, 209, 114, (174,397,0): 215, 212, 115, (174,398,0): 216, 213, 116, (174,399,0): 218, 214, 117, (174,400,0): 222, 213, 118, (174,401,0): 223, 215, 117, (174,402,0): 224, 216, 118, (174,403,0): 226, 218, 120, (174,404,0): 228, 220, 122, (174,405,0): 230, 222, 123, (174,406,0): 230, 225, 125, (174,407,0): 231, 226, 124, (174,408,0): 234, 229, 127, (174,409,0): 232, 229, 126, (174,410,0): 232, 229, 126, (174,411,0): 232, 231, 125, (174,412,0): 235, 234, 128, (174,413,0): 238, 237, 131, (174,414,0): 241, 240, 134, (174,415,0): 242, 241, 133, (174,416,0): 249, 249, 137, (174,417,0): 250, 250, 136, (174,418,0): 251, 251, 137, (174,419,0): 252, 253, 136, (174,420,0): 251, 252, 135, (174,421,0): 248, 249, 132, (174,422,0): 245, 246, 129, (174,423,0): 243, 244, 127, (174,424,0): 235, 235, 121, (174,425,0): 233, 233, 121, (174,426,0): 231, 230, 122, (174,427,0): 231, 230, 124, (174,428,0): 232, 230, 129, (174,429,0): 230, 228, 128, (174,430,0): 227, 224, 127, (174,431,0): 224, 220, 120, (174,432,0): 226, 217, 112, (174,433,0): 225, 214, 108, (174,434,0): 222, 209, 104, (174,435,0): 223, 209, 104, (174,436,0): 226, 211, 108, (174,437,0): 230, 212, 110, (174,438,0): 231, 213, 111, (174,439,0): 228, 213, 112, (174,440,0): 227, 213, 114, (174,441,0): 224, 212, 112, (174,442,0): 218, 208, 110, (174,443,0): 210, 205, 105, (174,444,0): 205, 203, 103, (174,445,0): 200, 200, 100, (174,446,0): 195, 200, 98, (174,447,0): 194, 199, 97, (174,448,0): 198, 203, 103, (174,449,0): 204, 210, 110, (174,450,0): 210, 216, 116, (174,451,0): 210, 218, 117, (174,452,0): 205, 215, 116, (174,453,0): 202, 214, 114, (174,454,0): 205, 217, 119, (174,455,0): 209, 221, 123, (174,456,0): 210, 222, 124, (174,457,0): 211, 223, 125, (174,458,0): 214, 224, 128, (174,459,0): 217, 227, 131, (174,460,0): 220, 227, 134, (174,461,0): 222, 227, 135, (174,462,0): 223, 226, 135, (174,463,0): 221, 227, 137, (174,464,0): 217, 227, 140, (174,465,0): 214, 228, 141, (174,466,0): 212, 226, 141, (174,467,0): 210, 224, 139, (174,468,0): 206, 219, 137, (174,469,0): 199, 213, 134, (174,470,0): 194, 208, 131, (174,471,0): 192, 206, 131, (174,472,0): 185, 198, 128, (174,473,0): 185, 198, 129, (174,474,0): 184, 196, 130, (174,475,0): 182, 194, 132, (174,476,0): 181, 192, 132, (174,477,0): 180, 191, 133, (174,478,0): 180, 191, 135, (174,479,0): 178, 191, 137, (174,480,0): 174, 193, 138, (174,481,0): 167, 190, 136, (174,482,0): 164, 184, 133, (174,483,0): 160, 180, 129, (174,484,0): 157, 175, 127, (174,485,0): 153, 169, 124, (174,486,0): 149, 162, 119, (174,487,0): 144, 156, 116, (174,488,0): 138, 146, 109, (174,489,0): 135, 142, 108, (174,490,0): 132, 135, 104, (174,491,0): 128, 131, 102, (174,492,0): 127, 127, 101, (174,493,0): 128, 126, 103, (174,494,0): 129, 127, 104, (174,495,0): 130, 130, 106, (174,496,0): 125, 127, 105, (174,497,0): 123, 127, 104, (174,498,0): 121, 125, 102, (174,499,0): 118, 122, 99, (174,500,0): 116, 118, 96, (174,501,0): 113, 115, 93, (174,502,0): 111, 113, 92, (174,503,0): 109, 111, 90, (174,504,0): 107, 106, 88, (174,505,0): 105, 104, 86, (174,506,0): 104, 101, 86, (174,507,0): 100, 97, 82, (174,508,0): 96, 93, 78, (174,509,0): 93, 90, 75, (174,510,0): 92, 86, 72, (174,511,0): 91, 83, 72, (174,512,0): 83, 72, 68, (174,513,0): 83, 69, 68, (174,514,0): 79, 68, 66, (174,515,0): 78, 67, 63, (174,516,0): 79, 70, 63, (174,517,0): 84, 75, 66, (174,518,0): 88, 81, 71, (174,519,0): 92, 86, 72, (174,520,0): 103, 100, 85, (174,521,0): 107, 104, 85, (174,522,0): 110, 109, 89, (174,523,0): 110, 112, 90, (174,524,0): 111, 113, 89, (174,525,0): 113, 117, 92, (174,526,0): 117, 121, 94, (174,527,0): 120, 124, 97, (174,528,0): 119, 122, 95, (174,529,0): 121, 121, 95, (174,530,0): 121, 121, 95, (174,531,0): 120, 120, 94, (174,532,0): 119, 119, 93, (174,533,0): 116, 116, 90, (174,534,0): 114, 114, 88, (174,535,0): 113, 113, 87, (174,536,0): 115, 115, 89, (174,537,0): 115, 115, 89, (174,538,0): 114, 114, 88, (174,539,0): 114, 114, 88, (174,540,0): 114, 114, 88, (174,541,0): 114, 114, 88, (174,542,0): 114, 114, 88, (174,543,0): 112, 114, 90, (174,544,0): 111, 114, 95, (174,545,0): 109, 113, 96, (174,546,0): 107, 111, 94, (174,547,0): 103, 107, 90, (174,548,0): 100, 104, 89, (174,549,0): 97, 101, 86, (174,550,0): 94, 98, 83, (174,551,0): 93, 97, 82, (174,552,0): 97, 101, 87, (174,553,0): 97, 101, 87, (174,554,0): 96, 99, 88, (174,555,0): 96, 99, 88, (174,556,0): 96, 99, 88, (174,557,0): 98, 101, 90, (174,558,0): 99, 102, 93, (174,559,0): 100, 103, 94, (174,560,0): 101, 104, 97, (174,561,0): 102, 105, 98, (174,562,0): 102, 107, 100, (174,563,0): 105, 110, 103, (174,564,0): 106, 113, 106, (174,565,0): 109, 116, 109, (174,566,0): 109, 119, 111, (174,567,0): 109, 120, 112, (174,568,0): 108, 119, 113, (174,569,0): 109, 122, 115, (174,570,0): 110, 125, 120, (174,571,0): 113, 128, 123, (174,572,0): 114, 131, 125, (174,573,0): 114, 131, 125, (174,574,0): 112, 131, 127, (174,575,0): 112, 130, 130, (174,576,0): 118, 132, 141, (174,577,0): 114, 128, 139, (174,578,0): 113, 125, 137, (174,579,0): 114, 127, 136, (174,580,0): 117, 127, 137, (174,581,0): 112, 122, 131, (174,582,0): 102, 111, 118, (174,583,0): 94, 101, 107, (174,584,0): 86, 91, 95, (174,585,0): 82, 87, 90, (174,586,0): 79, 83, 84, (174,587,0): 77, 81, 80, (174,588,0): 78, 80, 79, (174,589,0): 76, 78, 75, (174,590,0): 73, 73, 71, (174,591,0): 71, 70, 68, (174,592,0): 74, 70, 69, (174,593,0): 73, 67, 67, (174,594,0): 71, 65, 65, (174,595,0): 70, 64, 64, (174,596,0): 68, 62, 62, (174,597,0): 68, 62, 62, (174,598,0): 68, 62, 62, (174,599,0): 68, 62, 62, (175,0,0): 42, 30, 44, (175,1,0): 42, 30, 42, (175,2,0): 41, 29, 43, (175,3,0): 41, 29, 41, (175,4,0): 40, 28, 42, (175,5,0): 40, 28, 40, (175,6,0): 39, 27, 41, (175,7,0): 39, 27, 39, (175,8,0): 39, 27, 41, (175,9,0): 39, 27, 39, (175,10,0): 39, 27, 41, (175,11,0): 39, 27, 39, (175,12,0): 39, 27, 41, (175,13,0): 39, 27, 39, (175,14,0): 39, 27, 41, (175,15,0): 39, 27, 41, (175,16,0): 40, 26, 43, (175,17,0): 40, 26, 43, (175,18,0): 40, 26, 41, (175,19,0): 40, 26, 41, (175,20,0): 39, 27, 41, (175,21,0): 39, 27, 41, (175,22,0): 38, 27, 41, (175,23,0): 38, 28, 39, (175,24,0): 42, 30, 42, (175,25,0): 41, 29, 41, (175,26,0): 41, 27, 40, (175,27,0): 43, 27, 40, (175,28,0): 47, 29, 41, (175,29,0): 51, 33, 45, (175,30,0): 58, 38, 50, (175,31,0): 65, 39, 52, (175,32,0): 72, 36, 48, (175,33,0): 77, 35, 45, (175,34,0): 79, 37, 47, (175,35,0): 80, 38, 48, (175,36,0): 81, 39, 49, (175,37,0): 81, 39, 49, (175,38,0): 81, 39, 49, (175,39,0): 80, 39, 47, (175,40,0): 78, 35, 44, (175,41,0): 80, 37, 44, (175,42,0): 82, 39, 46, (175,43,0): 84, 42, 46, (175,44,0): 85, 43, 47, (175,45,0): 84, 42, 46, (175,46,0): 85, 40, 45, (175,47,0): 81, 40, 46, (175,48,0): 78, 41, 48, (175,49,0): 76, 41, 47, (175,50,0): 75, 40, 46, (175,51,0): 75, 38, 45, (175,52,0): 77, 37, 45, (175,53,0): 79, 38, 46, (175,54,0): 80, 39, 47, (175,55,0): 82, 39, 48, (175,56,0): 78, 35, 44, (175,57,0): 79, 36, 45, (175,58,0): 80, 39, 47, (175,59,0): 80, 39, 47, (175,60,0): 80, 39, 47, (175,61,0): 77, 38, 43, (175,62,0): 75, 35, 43, (175,63,0): 72, 35, 42, (175,64,0): 68, 36, 41, (175,65,0): 67, 36, 41, (175,66,0): 67, 36, 42, (175,67,0): 68, 36, 41, (175,68,0): 68, 36, 41, (175,69,0): 70, 35, 41, (175,70,0): 70, 35, 41, (175,71,0): 70, 35, 41, (175,72,0): 70, 33, 40, (175,73,0): 70, 33, 40, (175,74,0): 73, 33, 41, (175,75,0): 74, 34, 42, (175,76,0): 75, 34, 42, (175,77,0): 76, 35, 41, (175,78,0): 78, 35, 44, (175,79,0): 78, 35, 42, (175,80,0): 82, 37, 42, (175,81,0): 82, 37, 42, (175,82,0): 82, 37, 42, (175,83,0): 82, 37, 42, (175,84,0): 82, 37, 42, (175,85,0): 82, 37, 42, (175,86,0): 82, 37, 42, (175,87,0): 80, 38, 42, (175,88,0): 78, 36, 40, (175,89,0): 78, 36, 40, (175,90,0): 78, 36, 40, (175,91,0): 78, 36, 40, (175,92,0): 78, 36, 40, (175,93,0): 78, 36, 40, (175,94,0): 78, 36, 40, (175,95,0): 78, 36, 40, (175,96,0): 76, 31, 38, (175,97,0): 77, 31, 41, (175,98,0): 77, 34, 43, (175,99,0): 78, 35, 44, (175,100,0): 76, 34, 44, (175,101,0): 73, 33, 42, (175,102,0): 68, 30, 41, (175,103,0): 63, 30, 39, (175,104,0): 53, 21, 32, (175,105,0): 50, 20, 30, (175,106,0): 44, 18, 29, (175,107,0): 39, 16, 26, (175,108,0): 35, 15, 26, (175,109,0): 32, 15, 25, (175,110,0): 30, 14, 24, (175,111,0): 30, 14, 25, (175,112,0): 30, 14, 25, (175,113,0): 28, 15, 25, (175,114,0): 29, 13, 24, (175,115,0): 27, 14, 24, (175,116,0): 28, 12, 23, (175,117,0): 26, 13, 23, (175,118,0): 27, 11, 22, (175,119,0): 25, 12, 22, (175,120,0): 24, 8, 19, (175,121,0): 22, 9, 19, (175,122,0): 24, 8, 19, (175,123,0): 22, 9, 19, (175,124,0): 24, 8, 19, (175,125,0): 22, 9, 19, (175,126,0): 24, 8, 19, (175,127,0): 24, 8, 19, (175,128,0): 26, 10, 21, (175,129,0): 26, 10, 21, (175,130,0): 27, 9, 21, (175,131,0): 27, 11, 22, (175,132,0): 28, 10, 22, (175,133,0): 28, 12, 23, (175,134,0): 29, 12, 22, (175,135,0): 29, 13, 23, (175,136,0): 30, 13, 21, (175,137,0): 29, 14, 21, (175,138,0): 30, 13, 21, (175,139,0): 30, 15, 22, (175,140,0): 31, 14, 22, (175,141,0): 31, 16, 21, (175,142,0): 32, 15, 23, (175,143,0): 33, 16, 22, (175,144,0): 37, 17, 19, (175,145,0): 38, 18, 19, (175,146,0): 39, 19, 20, (175,147,0): 40, 20, 21, (175,148,0): 41, 21, 22, (175,149,0): 42, 22, 23, (175,150,0): 43, 21, 23, (175,151,0): 44, 22, 24, (175,152,0): 47, 25, 27, (175,153,0): 47, 25, 27, (175,154,0): 47, 25, 27, (175,155,0): 47, 25, 27, (175,156,0): 47, 25, 27, (175,157,0): 47, 26, 25, (175,158,0): 47, 25, 27, (175,159,0): 47, 26, 25, (175,160,0): 47, 26, 23, (175,161,0): 47, 26, 23, (175,162,0): 48, 27, 24, (175,163,0): 48, 27, 24, (175,164,0): 49, 28, 25, (175,165,0): 49, 28, 25, (175,166,0): 50, 29, 26, (175,167,0): 50, 29, 26, (175,168,0): 47, 26, 23, (175,169,0): 47, 26, 23, (175,170,0): 47, 26, 23, (175,171,0): 46, 25, 22, (175,172,0): 46, 25, 22, (175,173,0): 45, 24, 21, (175,174,0): 45, 24, 21, (175,175,0): 44, 23, 20, (175,176,0): 47, 26, 23, (175,177,0): 47, 26, 23, (175,178,0): 46, 25, 22, (175,179,0): 46, 25, 22, (175,180,0): 45, 24, 21, (175,181,0): 45, 24, 21, (175,182,0): 44, 23, 20, (175,183,0): 44, 23, 20, (175,184,0): 43, 22, 19, (175,185,0): 43, 22, 19, (175,186,0): 43, 22, 19, (175,187,0): 43, 22, 19, (175,188,0): 43, 22, 19, (175,189,0): 43, 22, 19, (175,190,0): 43, 22, 19, (175,191,0): 43, 22, 17, (175,192,0): 46, 23, 17, (175,193,0): 48, 23, 16, (175,194,0): 49, 24, 17, (175,195,0): 52, 27, 20, (175,196,0): 56, 29, 22, (175,197,0): 58, 31, 24, (175,198,0): 60, 33, 26, (175,199,0): 61, 34, 27, (175,200,0): 57, 28, 22, (175,201,0): 58, 29, 23, (175,202,0): 59, 30, 24, (175,203,0): 59, 30, 24, (175,204,0): 59, 28, 23, (175,205,0): 58, 27, 22, (175,206,0): 57, 26, 21, (175,207,0): 55, 26, 20, (175,208,0): 54, 26, 23, (175,209,0): 52, 27, 23, (175,210,0): 51, 26, 21, (175,211,0): 50, 25, 20, (175,212,0): 49, 24, 19, (175,213,0): 49, 24, 19, (175,214,0): 48, 23, 16, (175,215,0): 48, 23, 16, (175,216,0): 47, 23, 13, (175,217,0): 48, 24, 14, (175,218,0): 50, 26, 16, (175,219,0): 52, 28, 18, (175,220,0): 52, 28, 16, (175,221,0): 52, 28, 16, (175,222,0): 50, 26, 14, (175,223,0): 49, 25, 13, (175,224,0): 52, 27, 20, (175,225,0): 52, 27, 20, (175,226,0): 54, 27, 20, (175,227,0): 55, 28, 21, (175,228,0): 55, 28, 19, (175,229,0): 56, 29, 20, (175,230,0): 56, 29, 20, (175,231,0): 56, 29, 20, (175,232,0): 57, 29, 18, (175,233,0): 57, 29, 18, (175,234,0): 59, 29, 18, (175,235,0): 60, 30, 19, (175,236,0): 60, 30, 19, (175,237,0): 59, 29, 18, (175,238,0): 57, 28, 14, (175,239,0): 56, 28, 16, (175,240,0): 49, 25, 13, (175,241,0): 47, 25, 14, (175,242,0): 47, 25, 14, (175,243,0): 46, 24, 13, (175,244,0): 46, 24, 13, (175,245,0): 45, 23, 12, (175,246,0): 45, 23, 12, (175,247,0): 43, 23, 14, (175,248,0): 48, 25, 17, (175,249,0): 46, 26, 17, (175,250,0): 46, 26, 17, (175,251,0): 47, 27, 18, (175,252,0): 47, 27, 18, (175,253,0): 48, 28, 19, (175,254,0): 48, 28, 19, (175,255,0): 51, 28, 20, (175,256,0): 56, 32, 22, (175,257,0): 58, 31, 22, (175,258,0): 58, 31, 22, (175,259,0): 58, 31, 22, (175,260,0): 58, 31, 24, (175,261,0): 58, 31, 24, (175,262,0): 58, 31, 24, (175,263,0): 58, 31, 24, (175,264,0): 59, 30, 24, (175,265,0): 60, 31, 27, (175,266,0): 60, 31, 27, (175,267,0): 61, 32, 28, (175,268,0): 63, 34, 30, (175,269,0): 64, 35, 31, (175,270,0): 64, 34, 32, (175,271,0): 65, 35, 33, (175,272,0): 59, 31, 30, (175,273,0): 57, 31, 30, (175,274,0): 59, 31, 30, (175,275,0): 58, 33, 29, (175,276,0): 60, 32, 29, (175,277,0): 58, 33, 28, (175,278,0): 60, 32, 28, (175,279,0): 58, 33, 26, (175,280,0): 59, 32, 23, (175,281,0): 60, 36, 24, (175,282,0): 66, 39, 28, (175,283,0): 66, 43, 29, (175,284,0): 67, 41, 28, (175,285,0): 65, 42, 26, (175,286,0): 69, 43, 28, (175,287,0): 69, 46, 28, (175,288,0): 72, 51, 30, (175,289,0): 70, 52, 30, (175,290,0): 73, 52, 31, (175,291,0): 72, 54, 32, (175,292,0): 73, 55, 33, (175,293,0): 74, 56, 34, (175,294,0): 75, 57, 35, (175,295,0): 75, 57, 35, (175,296,0): 78, 60, 38, (175,297,0): 79, 61, 39, (175,298,0): 81, 63, 39, (175,299,0): 83, 65, 41, (175,300,0): 86, 68, 44, (175,301,0): 88, 71, 45, (175,302,0): 90, 73, 47, (175,303,0): 91, 74, 48, (175,304,0): 93, 75, 53, (175,305,0): 93, 75, 53, (175,306,0): 93, 75, 51, (175,307,0): 94, 77, 51, (175,308,0): 98, 78, 51, (175,309,0): 100, 80, 53, (175,310,0): 103, 83, 56, (175,311,0): 104, 84, 57, (175,312,0): 106, 85, 56, (175,313,0): 114, 93, 62, (175,314,0): 123, 100, 66, (175,315,0): 123, 101, 60, (175,316,0): 119, 98, 51, (175,317,0): 121, 101, 48, (175,318,0): 133, 112, 55, (175,319,0): 144, 124, 63, (175,320,0): 158, 138, 77, (175,321,0): 156, 138, 76, (175,322,0): 154, 136, 74, (175,323,0): 152, 134, 72, (175,324,0): 149, 133, 71, (175,325,0): 149, 133, 71, (175,326,0): 149, 133, 71, (175,327,0): 150, 134, 72, (175,328,0): 154, 139, 74, (175,329,0): 159, 141, 75, (175,330,0): 167, 148, 82, (175,331,0): 176, 155, 88, (175,332,0): 183, 163, 94, (175,333,0): 191, 168, 98, (175,334,0): 197, 173, 101, (175,335,0): 201, 174, 103, (175,336,0): 194, 163, 96, (175,337,0): 194, 161, 94, (175,338,0): 192, 157, 93, (175,339,0): 192, 154, 92, (175,340,0): 191, 153, 91, (175,341,0): 193, 155, 93, (175,342,0): 194, 158, 98, (175,343,0): 194, 160, 99, (175,344,0): 196, 166, 104, (175,345,0): 194, 166, 103, (175,346,0): 190, 167, 100, (175,347,0): 192, 169, 101, (175,348,0): 195, 171, 101, (175,349,0): 195, 171, 101, (175,350,0): 194, 167, 96, (175,351,0): 192, 163, 93, (175,352,0): 202, 174, 100, (175,353,0): 202, 174, 100, (175,354,0): 203, 176, 99, (175,355,0): 200, 177, 99, (175,356,0): 199, 178, 99, (175,357,0): 196, 177, 98, (175,358,0): 193, 178, 97, (175,359,0): 191, 179, 95, (175,360,0): 191, 179, 93, (175,361,0): 191, 179, 93, (175,362,0): 193, 182, 93, (175,363,0): 199, 185, 97, (175,364,0): 204, 190, 101, (175,365,0): 211, 196, 105, (175,366,0): 216, 201, 110, (175,367,0): 222, 203, 111, (175,368,0): 221, 198, 105, (175,369,0): 220, 195, 103, (175,370,0): 216, 192, 104, (175,371,0): 212, 188, 102, (175,372,0): 209, 184, 100, (175,373,0): 205, 182, 102, (175,374,0): 204, 181, 103, (175,375,0): 203, 181, 105, (175,376,0): 196, 177, 101, (175,377,0): 193, 175, 99, (175,378,0): 191, 175, 98, (175,379,0): 193, 177, 100, (175,380,0): 194, 181, 103, (175,381,0): 193, 182, 103, (175,382,0): 189, 180, 101, (175,383,0): 186, 179, 99, (175,384,0): 183, 175, 102, (175,385,0): 177, 171, 97, (175,386,0): 171, 165, 91, (175,387,0): 167, 161, 85, (175,388,0): 164, 161, 84, (175,389,0): 168, 165, 86, (175,390,0): 174, 171, 90, (175,391,0): 178, 176, 93, (175,392,0): 187, 185, 100, (175,393,0): 193, 189, 100, (175,394,0): 200, 196, 105, (175,395,0): 207, 204, 111, (175,396,0): 212, 209, 116, (175,397,0): 216, 211, 117, (175,398,0): 217, 212, 118, (175,399,0): 217, 213, 116, (175,400,0): 217, 211, 117, (175,401,0): 217, 211, 117, (175,402,0): 218, 212, 116, (175,403,0): 220, 214, 118, (175,404,0): 222, 216, 120, (175,405,0): 224, 218, 122, (175,406,0): 225, 221, 122, (175,407,0): 227, 223, 124, (175,408,0): 230, 226, 126, (175,409,0): 229, 227, 126, (175,410,0): 230, 228, 127, (175,411,0): 231, 229, 128, (175,412,0): 234, 232, 129, (175,413,0): 237, 235, 132, (175,414,0): 241, 239, 136, (175,415,0): 243, 242, 136, (175,416,0): 248, 251, 138, (175,417,0): 250, 253, 138, (175,418,0): 251, 254, 139, (175,419,0): 252, 255, 140, (175,420,0): 249, 252, 135, (175,421,0): 244, 247, 130, (175,422,0): 239, 242, 127, (175,423,0): 238, 238, 126, (175,424,0): 231, 231, 119, (175,425,0): 229, 229, 119, (175,426,0): 228, 227, 121, (175,427,0): 229, 227, 124, (175,428,0): 231, 229, 128, (175,429,0): 231, 227, 128, (175,430,0): 228, 224, 127, (175,431,0): 226, 221, 121, (175,432,0): 227, 220, 114, (175,433,0): 227, 216, 108, (175,434,0): 224, 213, 105, (175,435,0): 226, 214, 106, (175,436,0): 229, 217, 109, (175,437,0): 232, 219, 114, (175,438,0): 232, 219, 114, (175,439,0): 232, 219, 115, (175,440,0): 228, 216, 114, (175,441,0): 224, 215, 114, (175,442,0): 218, 210, 111, (175,443,0): 211, 207, 108, (175,444,0): 206, 203, 106, (175,445,0): 199, 201, 102, (175,446,0): 195, 200, 100, (175,447,0): 194, 200, 102, (175,448,0): 192, 198, 100, (175,449,0): 201, 207, 109, (175,450,0): 208, 215, 119, (175,451,0): 209, 219, 122, (175,452,0): 205, 217, 119, (175,453,0): 202, 216, 118, (175,454,0): 204, 220, 122, (175,455,0): 208, 224, 126, (175,456,0): 209, 225, 127, (175,457,0): 210, 226, 128, (175,458,0): 213, 227, 132, (175,459,0): 214, 228, 133, (175,460,0): 216, 227, 135, (175,461,0): 217, 226, 135, (175,462,0): 219, 225, 135, (175,463,0): 216, 225, 136, (175,464,0): 214, 226, 140, (175,465,0): 213, 227, 142, (175,466,0): 212, 225, 143, (175,467,0): 208, 223, 142, (175,468,0): 204, 218, 139, (175,469,0): 200, 214, 137, (175,470,0): 195, 208, 136, (175,471,0): 193, 206, 136, (175,472,0): 189, 201, 135, (175,473,0): 185, 200, 135, (175,474,0): 183, 197, 135, (175,475,0): 181, 195, 134, (175,476,0): 179, 193, 134, (175,477,0): 178, 191, 135, (175,478,0): 177, 190, 136, (175,479,0): 176, 190, 137, (175,480,0): 176, 194, 142, (175,481,0): 171, 191, 140, (175,482,0): 166, 186, 137, (175,483,0): 162, 180, 132, (175,484,0): 158, 175, 130, (175,485,0): 154, 169, 126, (175,486,0): 148, 163, 122, (175,487,0): 145, 157, 119, (175,488,0): 138, 148, 113, (175,489,0): 136, 143, 110, (175,490,0): 131, 138, 107, (175,491,0): 127, 131, 104, (175,492,0): 126, 128, 104, (175,493,0): 127, 129, 105, (175,494,0): 129, 131, 107, (175,495,0): 131, 133, 111, (175,496,0): 126, 130, 107, (175,497,0): 124, 129, 107, (175,498,0): 122, 125, 104, (175,499,0): 119, 122, 101, (175,500,0): 115, 118, 97, (175,501,0): 113, 115, 94, (175,502,0): 110, 112, 91, (175,503,0): 109, 110, 92, (175,504,0): 105, 106, 88, (175,505,0): 106, 105, 87, (175,506,0): 103, 101, 86, (175,507,0): 101, 98, 83, (175,508,0): 97, 94, 79, (175,509,0): 93, 90, 75, (175,510,0): 90, 87, 72, (175,511,0): 91, 85, 73, (175,512,0): 83, 72, 68, (175,513,0): 82, 68, 67, (175,514,0): 77, 66, 64, (175,515,0): 75, 64, 60, (175,516,0): 76, 67, 60, (175,517,0): 81, 72, 63, (175,518,0): 86, 78, 67, (175,519,0): 89, 83, 69, (175,520,0): 105, 99, 85, (175,521,0): 107, 104, 87, (175,522,0): 110, 109, 89, (175,523,0): 110, 112, 90, (175,524,0): 112, 114, 92, (175,525,0): 114, 116, 92, (175,526,0): 118, 120, 96, (175,527,0): 122, 125, 98, (175,528,0): 118, 118, 92, (175,529,0): 118, 118, 92, (175,530,0): 118, 118, 92, (175,531,0): 117, 117, 91, (175,532,0): 116, 116, 90, (175,533,0): 114, 114, 88, (175,534,0): 112, 112, 86, (175,535,0): 108, 111, 84, (175,536,0): 114, 114, 88, (175,537,0): 112, 115, 88, (175,538,0): 112, 114, 90, (175,539,0): 112, 114, 90, (175,540,0): 112, 114, 90, (175,541,0): 112, 114, 90, (175,542,0): 113, 115, 91, (175,543,0): 113, 115, 93, (175,544,0): 113, 116, 97, (175,545,0): 110, 114, 97, (175,546,0): 109, 112, 95, (175,547,0): 104, 108, 91, (175,548,0): 102, 104, 90, (175,549,0): 97, 101, 86, (175,550,0): 96, 98, 84, (175,551,0): 93, 97, 82, (175,552,0): 100, 102, 89, (175,553,0): 99, 103, 89, (175,554,0): 99, 101, 90, (175,555,0): 98, 101, 90, (175,556,0): 99, 101, 90, (175,557,0): 99, 102, 91, (175,558,0): 102, 103, 95, (175,559,0): 102, 105, 96, (175,560,0): 102, 105, 96, (175,561,0): 101, 106, 99, (175,562,0): 103, 108, 101, (175,563,0): 104, 111, 103, (175,564,0): 107, 114, 107, (175,565,0): 108, 118, 110, (175,566,0): 110, 120, 112, (175,567,0): 110, 121, 113, (175,568,0): 107, 120, 113, (175,569,0): 109, 122, 115, (175,570,0): 110, 125, 120, (175,571,0): 114, 129, 124, (175,572,0): 115, 132, 126, (175,573,0): 116, 132, 129, (175,574,0): 114, 133, 129, (175,575,0): 114, 132, 132, (175,576,0): 121, 135, 144, (175,577,0): 116, 130, 143, (175,578,0): 112, 124, 138, (175,579,0): 111, 123, 135, (175,580,0): 113, 123, 135, (175,581,0): 110, 120, 130, (175,582,0): 102, 111, 120, (175,583,0): 94, 103, 110, (175,584,0): 87, 94, 100, (175,585,0): 85, 90, 94, (175,586,0): 83, 87, 90, (175,587,0): 80, 84, 85, (175,588,0): 81, 83, 82, (175,589,0): 78, 80, 79, (175,590,0): 73, 73, 73, (175,591,0): 69, 69, 69, (175,592,0): 74, 70, 69, (175,593,0): 74, 68, 68, (175,594,0): 72, 66, 66, (175,595,0): 70, 64, 64, (175,596,0): 69, 63, 63, (175,597,0): 68, 62, 62, (175,598,0): 70, 61, 62, (175,599,0): 70, 61, 62, (176,0,0): 42, 30, 42, (176,1,0): 42, 30, 40, (176,2,0): 42, 30, 42, (176,3,0): 42, 30, 40, (176,4,0): 42, 30, 42, (176,5,0): 42, 30, 40, (176,6,0): 42, 30, 42, (176,7,0): 42, 30, 40, (176,8,0): 42, 30, 42, (176,9,0): 42, 30, 40, (176,10,0): 41, 29, 41, (176,11,0): 41, 29, 39, (176,12,0): 40, 28, 40, (176,13,0): 40, 28, 38, (176,14,0): 39, 27, 39, (176,15,0): 39, 27, 39, (176,16,0): 41, 29, 41, (176,17,0): 41, 29, 41, (176,18,0): 41, 29, 41, (176,19,0): 41, 29, 41, (176,20,0): 41, 29, 41, (176,21,0): 41, 29, 41, (176,22,0): 41, 29, 41, (176,23,0): 41, 29, 39, (176,24,0): 45, 33, 43, (176,25,0): 43, 31, 41, (176,26,0): 41, 29, 39, (176,27,0): 42, 29, 39, (176,28,0): 43, 30, 40, (176,29,0): 47, 34, 44, (176,30,0): 50, 37, 47, (176,31,0): 58, 38, 49, (176,32,0): 70, 38, 49, (176,33,0): 72, 36, 46, (176,34,0): 72, 36, 46, (176,35,0): 71, 35, 45, (176,36,0): 71, 33, 44, (176,37,0): 70, 33, 41, (176,38,0): 72, 32, 41, (176,39,0): 71, 31, 39, (176,40,0): 79, 39, 47, (176,41,0): 79, 39, 47, (176,42,0): 80, 39, 47, (176,43,0): 80, 39, 45, (176,44,0): 81, 40, 46, (176,45,0): 81, 40, 46, (176,46,0): 82, 39, 46, (176,47,0): 80, 41, 46, (176,48,0): 76, 41, 48, (176,49,0): 74, 41, 48, (176,50,0): 74, 41, 48, (176,51,0): 76, 41, 48, (176,52,0): 75, 40, 47, (176,53,0): 76, 39, 47, (176,54,0): 78, 38, 46, (176,55,0): 79, 38, 46, (176,56,0): 82, 41, 47, (176,57,0): 81, 40, 46, (176,58,0): 82, 39, 46, (176,59,0): 81, 38, 45, (176,60,0): 82, 37, 44, (176,61,0): 81, 36, 41, (176,62,0): 81, 36, 43, (176,63,0): 77, 36, 42, (176,64,0): 71, 34, 42, (176,65,0): 68, 35, 42, (176,66,0): 69, 36, 45, (176,67,0): 71, 36, 43, (176,68,0): 71, 36, 43, (176,69,0): 73, 36, 44, (176,70,0): 73, 36, 43, (176,71,0): 73, 36, 43, (176,72,0): 74, 34, 42, (176,73,0): 75, 35, 43, (176,74,0): 76, 35, 41, (176,75,0): 76, 35, 41, (176,76,0): 77, 36, 42, (176,77,0): 78, 37, 41, (176,78,0): 79, 36, 43, (176,79,0): 81, 36, 41, (176,80,0): 84, 37, 43, (176,81,0): 85, 36, 42, (176,82,0): 83, 36, 42, (176,83,0): 82, 35, 41, (176,84,0): 82, 35, 41, (176,85,0): 81, 34, 40, (176,86,0): 81, 34, 40, (176,87,0): 80, 35, 40, (176,88,0): 79, 34, 39, (176,89,0): 79, 34, 39, (176,90,0): 79, 34, 39, (176,91,0): 79, 34, 39, (176,92,0): 78, 36, 40, (176,93,0): 78, 36, 40, (176,94,0): 78, 36, 40, (176,95,0): 78, 35, 42, (176,96,0): 78, 35, 44, (176,97,0): 77, 34, 44, (176,98,0): 76, 33, 43, (176,99,0): 75, 32, 42, (176,100,0): 74, 31, 41, (176,101,0): 72, 29, 39, (176,102,0): 70, 28, 38, (176,103,0): 69, 29, 38, (176,104,0): 63, 25, 36, (176,105,0): 58, 25, 34, (176,106,0): 53, 23, 31, (176,107,0): 47, 22, 28, (176,108,0): 40, 19, 24, (176,109,0): 33, 17, 20, (176,110,0): 30, 15, 18, (176,111,0): 26, 14, 18, (176,112,0): 23, 10, 19, (176,113,0): 23, 12, 20, (176,114,0): 25, 12, 21, (176,115,0): 25, 14, 22, (176,116,0): 26, 13, 22, (176,117,0): 25, 14, 22, (176,118,0): 25, 12, 21, (176,119,0): 24, 13, 21, (176,120,0): 22, 9, 18, (176,121,0): 21, 10, 18, (176,122,0): 22, 9, 18, (176,123,0): 21, 10, 18, (176,124,0): 22, 9, 18, (176,125,0): 21, 10, 18, (176,126,0): 22, 9, 18, (176,127,0): 22, 9, 18, (176,128,0): 23, 10, 19, (176,129,0): 23, 10, 19, (176,130,0): 26, 10, 20, (176,131,0): 25, 12, 21, (176,132,0): 28, 12, 22, (176,133,0): 26, 13, 22, (176,134,0): 29, 13, 23, (176,135,0): 27, 14, 23, (176,136,0): 30, 14, 24, (176,137,0): 28, 15, 24, (176,138,0): 30, 14, 24, (176,139,0): 28, 15, 24, (176,140,0): 30, 14, 24, (176,141,0): 28, 15, 22, (176,142,0): 30, 14, 24, (176,143,0): 30, 15, 22, (176,144,0): 35, 19, 22, (176,145,0): 37, 18, 20, (176,146,0): 37, 18, 20, (176,147,0): 37, 18, 20, (176,148,0): 38, 19, 21, (176,149,0): 38, 19, 21, (176,150,0): 39, 19, 20, (176,151,0): 39, 19, 20, (176,152,0): 46, 26, 25, (176,153,0): 45, 25, 24, (176,154,0): 46, 25, 24, (176,155,0): 46, 25, 24, (176,156,0): 47, 26, 25, (176,157,0): 48, 27, 24, (176,158,0): 51, 27, 27, (176,159,0): 51, 27, 25, (176,160,0): 47, 26, 23, (176,161,0): 47, 26, 23, (176,162,0): 47, 26, 23, (176,163,0): 47, 26, 23, (176,164,0): 47, 26, 23, (176,165,0): 47, 26, 23, (176,166,0): 47, 26, 23, (176,167,0): 47, 26, 23, (176,168,0): 48, 27, 24, (176,169,0): 48, 27, 24, (176,170,0): 48, 27, 24, (176,171,0): 47, 26, 23, (176,172,0): 47, 26, 23, (176,173,0): 46, 25, 22, (176,174,0): 46, 25, 22, (176,175,0): 45, 24, 21, (176,176,0): 46, 27, 23, (176,177,0): 46, 27, 23, (176,178,0): 46, 27, 23, (176,179,0): 46, 27, 23, (176,180,0): 46, 27, 23, (176,181,0): 46, 27, 23, (176,182,0): 46, 27, 23, (176,183,0): 46, 27, 23, (176,184,0): 44, 25, 21, (176,185,0): 44, 25, 21, (176,186,0): 43, 24, 20, (176,187,0): 43, 24, 20, (176,188,0): 43, 24, 20, (176,189,0): 45, 26, 22, (176,190,0): 46, 27, 23, (176,191,0): 48, 27, 22, (176,192,0): 51, 28, 22, (176,193,0): 53, 28, 21, (176,194,0): 54, 29, 22, (176,195,0): 55, 30, 23, (176,196,0): 57, 32, 25, (176,197,0): 58, 33, 26, (176,198,0): 59, 34, 27, (176,199,0): 59, 34, 27, (176,200,0): 58, 31, 24, (176,201,0): 58, 31, 24, (176,202,0): 57, 30, 23, (176,203,0): 57, 30, 23, (176,204,0): 56, 29, 22, (176,205,0): 56, 29, 22, (176,206,0): 55, 28, 21, (176,207,0): 55, 28, 21, (176,208,0): 51, 26, 22, (176,209,0): 51, 26, 22, (176,210,0): 51, 26, 21, (176,211,0): 50, 25, 20, (176,212,0): 50, 25, 20, (176,213,0): 49, 24, 19, (176,214,0): 49, 24, 17, (176,215,0): 49, 24, 17, (176,216,0): 49, 25, 15, (176,217,0): 49, 25, 15, (176,218,0): 49, 25, 15, (176,219,0): 50, 26, 16, (176,220,0): 50, 26, 14, (176,221,0): 51, 27, 15, (176,222,0): 51, 27, 15, (176,223,0): 51, 27, 15, (176,224,0): 51, 24, 17, (176,225,0): 52, 25, 18, (176,226,0): 54, 25, 19, (176,227,0): 55, 26, 20, (176,228,0): 55, 26, 18, (176,229,0): 55, 26, 18, (176,230,0): 55, 26, 18, (176,231,0): 55, 26, 18, (176,232,0): 58, 30, 19, (176,233,0): 58, 30, 19, (176,234,0): 59, 31, 19, (176,235,0): 59, 31, 19, (176,236,0): 59, 31, 19, (176,237,0): 57, 29, 17, (176,238,0): 56, 28, 14, (176,239,0): 55, 27, 13, (176,240,0): 51, 25, 12, (176,241,0): 51, 25, 12, (176,242,0): 51, 24, 13, (176,243,0): 51, 24, 13, (176,244,0): 49, 25, 13, (176,245,0): 49, 25, 13, (176,246,0): 49, 25, 13, (176,247,0): 48, 26, 15, (176,248,0): 47, 23, 13, (176,249,0): 46, 24, 13, (176,250,0): 47, 25, 14, (176,251,0): 48, 26, 15, (176,252,0): 48, 28, 19, (176,253,0): 49, 29, 20, (176,254,0): 50, 30, 21, (176,255,0): 51, 31, 22, (176,256,0): 55, 32, 26, (176,257,0): 55, 32, 26, (176,258,0): 55, 32, 26, (176,259,0): 55, 32, 26, (176,260,0): 56, 31, 26, (176,261,0): 55, 30, 25, (176,262,0): 55, 30, 25, (176,263,0): 55, 30, 25, (176,264,0): 60, 32, 28, (176,265,0): 60, 32, 29, (176,266,0): 60, 32, 29, (176,267,0): 61, 33, 30, (176,268,0): 62, 32, 30, (176,269,0): 63, 33, 31, (176,270,0): 63, 33, 31, (176,271,0): 63, 33, 31, (176,272,0): 62, 32, 30, (176,273,0): 62, 34, 31, (176,274,0): 64, 34, 32, (176,275,0): 63, 35, 32, (176,276,0): 65, 35, 33, (176,277,0): 63, 35, 31, (176,278,0): 64, 35, 29, (176,279,0): 63, 36, 27, (176,280,0): 65, 36, 28, (176,281,0): 64, 37, 26, (176,282,0): 66, 38, 26, (176,283,0): 67, 41, 26, (176,284,0): 69, 41, 27, (176,285,0): 69, 43, 26, (176,286,0): 71, 44, 27, (176,287,0): 71, 45, 28, (176,288,0): 70, 47, 29, (176,289,0): 69, 48, 29, (176,290,0): 70, 47, 31, (176,291,0): 71, 50, 33, (176,292,0): 73, 51, 37, (176,293,0): 76, 54, 40, (176,294,0): 78, 56, 42, (176,295,0): 80, 59, 42, (176,296,0): 76, 57, 40, (176,297,0): 77, 59, 39, (176,298,0): 78, 62, 39, (176,299,0): 80, 64, 39, (176,300,0): 83, 67, 41, (176,301,0): 86, 71, 42, (176,302,0): 88, 73, 42, (176,303,0): 89, 74, 45, (176,304,0): 94, 76, 52, (176,305,0): 94, 76, 54, (176,306,0): 96, 76, 52, (176,307,0): 96, 76, 51, (176,308,0): 98, 78, 51, (176,309,0): 100, 81, 51, (176,310,0): 104, 83, 54, (176,311,0): 105, 85, 52, (176,312,0): 111, 88, 54, (176,313,0): 114, 92, 55, (176,314,0): 116, 94, 55, (176,315,0): 117, 96, 53, (176,316,0): 119, 97, 50, (176,317,0): 122, 100, 50, (176,318,0): 128, 107, 54, (176,319,0): 133, 112, 59, (176,320,0): 150, 130, 77, (176,321,0): 149, 132, 78, (176,322,0): 148, 131, 77, (176,323,0): 144, 127, 71, (176,324,0): 141, 122, 64, (176,325,0): 142, 123, 64, (176,326,0): 149, 131, 69, (176,327,0): 156, 138, 74, (176,328,0): 160, 142, 76, (176,329,0): 167, 148, 79, (176,330,0): 176, 157, 88, (176,331,0): 183, 163, 92, (176,332,0): 186, 166, 93, (176,333,0): 188, 168, 95, (176,334,0): 193, 171, 96, (176,335,0): 197, 173, 101, (176,336,0): 205, 172, 105, (176,337,0): 201, 166, 100, (176,338,0): 198, 160, 95, (176,339,0): 197, 159, 96, (176,340,0): 198, 160, 97, (176,341,0): 197, 162, 98, (176,342,0): 195, 160, 96, (176,343,0): 192, 158, 94, (176,344,0): 193, 164, 98, (176,345,0): 192, 165, 98, (176,346,0): 192, 165, 98, (176,347,0): 190, 166, 96, (176,348,0): 191, 167, 97, (176,349,0): 193, 169, 99, (176,350,0): 194, 170, 100, (176,351,0): 195, 171, 99, (176,352,0): 197, 174, 98, (176,353,0): 198, 175, 97, (176,354,0): 199, 176, 100, (176,355,0): 200, 178, 102, (176,356,0): 201, 179, 104, (176,357,0): 199, 180, 104, (176,358,0): 199, 180, 104, (176,359,0): 197, 179, 103, (176,360,0): 197, 179, 103, (176,361,0): 193, 177, 100, (176,362,0): 189, 173, 95, (176,363,0): 189, 173, 95, (176,364,0): 194, 179, 98, (176,365,0): 204, 189, 106, (176,366,0): 214, 199, 116, (176,367,0): 223, 205, 119, (176,368,0): 220, 199, 108, (176,369,0): 221, 198, 105, (176,370,0): 219, 195, 107, (176,371,0): 216, 192, 106, (176,372,0): 211, 186, 102, (176,373,0): 206, 181, 101, (176,374,0): 202, 176, 99, (176,375,0): 197, 174, 98, (176,376,0): 196, 174, 99, (176,377,0): 195, 175, 102, (176,378,0): 194, 176, 102, (176,379,0): 187, 173, 98, (176,380,0): 182, 170, 94, (176,381,0): 177, 170, 92, (176,382,0): 178, 172, 94, (176,383,0): 181, 175, 97, (176,384,0): 177, 170, 98, (176,385,0): 174, 167, 95, (176,386,0): 169, 165, 92, (176,387,0): 167, 163, 89, (176,388,0): 167, 165, 90, (176,389,0): 171, 169, 94, (176,390,0): 176, 174, 97, (176,391,0): 180, 179, 99, (176,392,0): 187, 186, 104, (176,393,0): 192, 190, 105, (176,394,0): 201, 197, 110, (176,395,0): 207, 203, 114, (176,396,0): 213, 208, 117, (176,397,0): 216, 209, 118, (176,398,0): 216, 210, 116, (176,399,0): 215, 209, 115, (176,400,0): 214, 209, 117, (176,401,0): 215, 212, 119, (176,402,0): 218, 215, 122, (176,403,0): 222, 219, 126, (176,404,0): 225, 222, 127, (176,405,0): 228, 225, 130, (176,406,0): 229, 226, 131, (176,407,0): 230, 227, 132, (176,408,0): 227, 224, 127, (176,409,0): 225, 225, 127, (176,410,0): 227, 227, 127, (176,411,0): 228, 228, 128, (176,412,0): 230, 230, 130, (176,413,0): 231, 231, 131, (176,414,0): 233, 234, 132, (176,415,0): 233, 234, 130, (176,416,0): 244, 248, 138, (176,417,0): 243, 250, 138, (176,418,0): 245, 252, 140, (176,419,0): 245, 252, 140, (176,420,0): 244, 248, 137, (176,421,0): 239, 243, 132, (176,422,0): 234, 238, 128, (176,423,0): 232, 234, 125, (176,424,0): 232, 231, 123, (176,425,0): 231, 230, 124, (176,426,0): 231, 228, 123, (176,427,0): 232, 229, 126, (176,428,0): 234, 231, 128, (176,429,0): 234, 229, 129, (176,430,0): 230, 225, 125, (176,431,0): 226, 221, 119, (176,432,0): 228, 221, 114, (176,433,0): 228, 222, 112, (176,434,0): 224, 218, 106, (176,435,0): 223, 217, 105, (176,436,0): 230, 224, 112, (176,437,0): 239, 233, 123, (176,438,0): 236, 232, 124, (176,439,0): 228, 224, 117, (176,440,0): 218, 213, 109, (176,441,0): 218, 215, 112, (176,442,0): 218, 216, 116, (176,443,0): 217, 214, 117, (176,444,0): 211, 211, 115, (176,445,0): 205, 206, 112, (176,446,0): 200, 201, 108, (176,447,0): 196, 199, 108, (176,448,0): 190, 195, 103, (176,449,0): 194, 199, 107, (176,450,0): 198, 204, 114, (176,451,0): 199, 208, 117, (176,452,0): 198, 211, 119, (176,453,0): 200, 215, 122, (176,454,0): 205, 222, 128, (176,455,0): 208, 228, 133, (176,456,0): 206, 227, 134, (176,457,0): 207, 228, 135, (176,458,0): 208, 227, 135, (176,459,0): 209, 226, 134, (176,460,0): 208, 223, 132, (176,461,0): 207, 220, 130, (176,462,0): 207, 217, 128, (176,463,0): 204, 216, 130, (176,464,0): 209, 222, 140, (176,465,0): 206, 220, 141, (176,466,0): 204, 218, 141, (176,467,0): 203, 217, 140, (176,468,0): 202, 216, 141, (176,469,0): 196, 212, 139, (176,470,0): 190, 205, 136, (176,471,0): 184, 199, 132, (176,472,0): 184, 198, 136, (176,473,0): 181, 197, 135, (176,474,0): 177, 192, 133, (176,475,0): 174, 189, 132, (176,476,0): 173, 188, 133, (176,477,0): 173, 187, 134, (176,478,0): 172, 189, 137, (176,479,0): 173, 189, 140, (176,480,0): 169, 187, 139, (176,481,0): 171, 188, 143, (176,482,0): 172, 189, 145, (176,483,0): 168, 183, 140, (176,484,0): 160, 175, 134, (176,485,0): 154, 169, 128, (176,486,0): 151, 166, 127, (176,487,0): 151, 165, 129, (176,488,0): 144, 155, 121, (176,489,0): 141, 152, 120, (176,490,0): 136, 147, 115, (176,491,0): 131, 142, 112, (176,492,0): 127, 136, 109, (176,493,0): 124, 133, 106, (176,494,0): 122, 130, 106, (176,495,0): 122, 130, 106, (176,496,0): 124, 132, 111, (176,497,0): 123, 131, 110, (176,498,0): 124, 129, 109, (176,499,0): 122, 127, 107, (176,500,0): 119, 124, 104, (176,501,0): 117, 120, 101, (176,502,0): 115, 118, 99, (176,503,0): 113, 116, 99, (176,504,0): 111, 114, 97, (176,505,0): 108, 109, 93, (176,506,0): 104, 105, 89, (176,507,0): 102, 100, 85, (176,508,0): 100, 98, 83, (176,509,0): 96, 94, 79, (176,510,0): 91, 89, 74, (176,511,0): 89, 83, 71, (176,512,0): 86, 75, 69, (176,513,0): 82, 68, 65, (176,514,0): 75, 64, 60, (176,515,0): 73, 62, 56, (176,516,0): 71, 60, 54, (176,517,0): 71, 62, 53, (176,518,0): 82, 74, 63, (176,519,0): 93, 87, 73, (176,520,0): 104, 98, 84, (176,521,0): 109, 103, 87, (176,522,0): 113, 110, 91, (176,523,0): 116, 114, 93, (176,524,0): 117, 115, 94, (176,525,0): 116, 116, 92, (176,526,0): 118, 118, 94, (176,527,0): 119, 119, 93, (176,528,0): 115, 115, 89, (176,529,0): 115, 115, 87, (176,530,0): 114, 114, 88, (176,531,0): 113, 113, 87, (176,532,0): 109, 112, 85, (176,533,0): 108, 111, 84, (176,534,0): 107, 109, 85, (176,535,0): 106, 110, 85, (176,536,0): 107, 109, 85, (176,537,0): 106, 110, 85, (176,538,0): 105, 109, 86, (176,539,0): 105, 109, 86, (176,540,0): 106, 111, 88, (176,541,0): 107, 112, 89, (176,542,0): 109, 114, 91, (176,543,0): 110, 115, 93, (176,544,0): 111, 114, 95, (176,545,0): 111, 114, 95, (176,546,0): 111, 112, 96, (176,547,0): 109, 112, 95, (176,548,0): 107, 108, 92, (176,549,0): 103, 106, 89, (176,550,0): 100, 101, 87, (176,551,0): 97, 99, 85, (176,552,0): 97, 97, 85, (176,553,0): 97, 99, 86, (176,554,0): 100, 100, 88, (176,555,0): 101, 103, 90, (176,556,0): 103, 103, 93, (176,557,0): 102, 104, 93, (176,558,0): 103, 103, 93, (176,559,0): 101, 103, 92, (176,560,0): 100, 106, 94, (176,561,0): 100, 108, 97, (176,562,0): 102, 110, 99, (176,563,0): 103, 113, 102, (176,564,0): 106, 116, 107, (176,565,0): 107, 119, 109, (176,566,0): 109, 120, 112, (176,567,0): 109, 122, 113, (176,568,0): 110, 123, 116, (176,569,0): 111, 123, 119, (176,570,0): 111, 126, 123, (176,571,0): 113, 128, 125, (176,572,0): 114, 130, 127, (176,573,0): 116, 132, 131, (176,574,0): 118, 134, 133, (176,575,0): 119, 134, 137, (176,576,0): 117, 134, 144, (176,577,0): 116, 132, 147, (176,578,0): 115, 128, 144, (176,579,0): 112, 126, 139, (176,580,0): 108, 120, 134, (176,581,0): 104, 116, 128, (176,582,0): 102, 112, 122, (176,583,0): 101, 110, 119, (176,584,0): 98, 105, 115, (176,585,0): 94, 101, 109, (176,586,0): 90, 95, 101, (176,587,0): 85, 90, 94, (176,588,0): 82, 86, 89, (176,589,0): 77, 81, 84, (176,590,0): 72, 73, 77, (176,591,0): 69, 69, 71, (176,592,0): 72, 70, 71, (176,593,0): 73, 69, 70, (176,594,0): 72, 66, 68, (176,595,0): 70, 64, 66, (176,596,0): 70, 61, 64, (176,597,0): 70, 61, 64, (176,598,0): 71, 60, 64, (176,599,0): 71, 60, 64, (177,0,0): 42, 30, 40, (177,1,0): 42, 30, 40, (177,2,0): 42, 30, 40, (177,3,0): 42, 30, 40, (177,4,0): 42, 30, 40, (177,5,0): 42, 30, 40, (177,6,0): 42, 30, 40, (177,7,0): 42, 30, 40, (177,8,0): 42, 30, 40, (177,9,0): 42, 30, 40, (177,10,0): 41, 29, 39, (177,11,0): 41, 29, 39, (177,12,0): 40, 28, 38, (177,13,0): 40, 28, 38, (177,14,0): 39, 27, 37, (177,15,0): 39, 27, 37, (177,16,0): 41, 29, 39, (177,17,0): 41, 29, 39, (177,18,0): 41, 29, 39, (177,19,0): 41, 29, 39, (177,20,0): 41, 29, 39, (177,21,0): 41, 29, 39, (177,22,0): 41, 29, 39, (177,23,0): 41, 29, 39, (177,24,0): 45, 33, 43, (177,25,0): 43, 31, 41, (177,26,0): 42, 30, 40, (177,27,0): 41, 29, 39, (177,28,0): 42, 30, 40, (177,29,0): 45, 33, 43, (177,30,0): 49, 37, 47, (177,31,0): 54, 38, 48, (177,32,0): 64, 38, 49, (177,33,0): 67, 35, 46, (177,34,0): 67, 35, 46, (177,35,0): 66, 35, 43, (177,36,0): 66, 33, 42, (177,37,0): 66, 33, 42, (177,38,0): 67, 31, 41, (177,39,0): 67, 32, 39, (177,40,0): 71, 36, 43, (177,41,0): 71, 36, 42, (177,42,0): 73, 36, 43, (177,43,0): 73, 36, 43, (177,44,0): 76, 36, 44, (177,45,0): 77, 38, 43, (177,46,0): 77, 38, 43, (177,47,0): 76, 39, 46, (177,48,0): 74, 41, 48, (177,49,0): 73, 42, 50, (177,50,0): 73, 40, 47, (177,51,0): 73, 40, 47, (177,52,0): 75, 40, 47, (177,53,0): 76, 39, 47, (177,54,0): 78, 38, 46, (177,55,0): 78, 38, 46, (177,56,0): 82, 41, 47, (177,57,0): 81, 40, 46, (177,58,0): 82, 39, 46, (177,59,0): 83, 38, 45, (177,60,0): 83, 36, 42, (177,61,0): 83, 36, 42, (177,62,0): 82, 35, 41, (177,63,0): 81, 36, 43, (177,64,0): 77, 37, 46, (177,65,0): 73, 37, 47, (177,66,0): 73, 37, 47, (177,67,0): 73, 35, 46, (177,68,0): 72, 35, 43, (177,69,0): 72, 35, 43, (177,70,0): 71, 34, 41, (177,71,0): 73, 33, 41, (177,72,0): 75, 35, 43, (177,73,0): 76, 35, 43, (177,74,0): 76, 35, 41, (177,75,0): 77, 36, 42, (177,76,0): 77, 36, 40, (177,77,0): 79, 37, 41, (177,78,0): 79, 37, 41, (177,79,0): 82, 37, 42, (177,80,0): 86, 37, 43, (177,81,0): 86, 35, 42, (177,82,0): 85, 36, 42, (177,83,0): 85, 36, 42, (177,84,0): 84, 35, 41, (177,85,0): 84, 35, 41, (177,86,0): 81, 34, 40, (177,87,0): 81, 34, 40, (177,88,0): 79, 34, 39, (177,89,0): 79, 34, 39, (177,90,0): 79, 34, 39, (177,91,0): 79, 34, 39, (177,92,0): 78, 36, 40, (177,93,0): 78, 36, 40, (177,94,0): 78, 36, 40, (177,95,0): 78, 35, 42, (177,96,0): 76, 33, 42, (177,97,0): 76, 33, 43, (177,98,0): 75, 32, 42, (177,99,0): 75, 32, 42, (177,100,0): 76, 30, 41, (177,101,0): 73, 30, 40, (177,102,0): 72, 29, 39, (177,103,0): 71, 29, 39, (177,104,0): 67, 27, 36, (177,105,0): 62, 27, 34, (177,106,0): 56, 25, 31, (177,107,0): 49, 22, 27, (177,108,0): 41, 21, 23, (177,109,0): 34, 18, 19, (177,110,0): 30, 16, 16, (177,111,0): 26, 14, 16, (177,112,0): 23, 12, 18, (177,113,0): 23, 12, 20, (177,114,0): 24, 13, 21, (177,115,0): 24, 13, 21, (177,116,0): 24, 13, 21, (177,117,0): 24, 13, 21, (177,118,0): 24, 13, 21, (177,119,0): 24, 13, 21, (177,120,0): 22, 11, 19, (177,121,0): 22, 11, 19, (177,122,0): 22, 11, 19, (177,123,0): 22, 11, 19, (177,124,0): 22, 11, 19, (177,125,0): 22, 11, 19, (177,126,0): 22, 11, 19, (177,127,0): 22, 11, 19, (177,128,0): 23, 10, 19, (177,129,0): 24, 11, 20, (177,130,0): 24, 11, 20, (177,131,0): 25, 12, 21, (177,132,0): 26, 13, 22, (177,133,0): 26, 13, 22, (177,134,0): 27, 14, 23, (177,135,0): 27, 14, 23, (177,136,0): 28, 15, 24, (177,137,0): 28, 15, 24, (177,138,0): 28, 15, 24, (177,139,0): 28, 15, 24, (177,140,0): 28, 15, 24, (177,141,0): 28, 15, 24, (177,142,0): 28, 15, 24, (177,143,0): 30, 15, 22, (177,144,0): 34, 17, 23, (177,145,0): 34, 18, 21, (177,146,0): 34, 18, 19, (177,147,0): 35, 19, 20, (177,148,0): 38, 19, 21, (177,149,0): 39, 20, 22, (177,150,0): 39, 21, 21, (177,151,0): 39, 21, 21, (177,152,0): 46, 26, 25, (177,153,0): 46, 26, 25, (177,154,0): 47, 26, 25, (177,155,0): 47, 26, 25, (177,156,0): 48, 27, 24, (177,157,0): 49, 28, 25, (177,158,0): 51, 27, 25, (177,159,0): 52, 28, 26, (177,160,0): 47, 26, 23, (177,161,0): 47, 26, 23, (177,162,0): 47, 26, 23, (177,163,0): 47, 26, 23, (177,164,0): 47, 26, 23, (177,165,0): 47, 26, 23, (177,166,0): 47, 26, 23, (177,167,0): 47, 26, 23, (177,168,0): 47, 26, 23, (177,169,0): 47, 26, 23, (177,170,0): 47, 26, 23, (177,171,0): 46, 25, 22, (177,172,0): 46, 25, 22, (177,173,0): 45, 24, 21, (177,174,0): 45, 24, 21, (177,175,0): 45, 24, 21, (177,176,0): 46, 27, 23, (177,177,0): 46, 27, 23, (177,178,0): 46, 27, 23, (177,179,0): 46, 27, 23, (177,180,0): 46, 27, 23, (177,181,0): 46, 27, 23, (177,182,0): 46, 27, 23, (177,183,0): 46, 27, 23, (177,184,0): 44, 25, 21, (177,185,0): 44, 25, 21, (177,186,0): 43, 24, 20, (177,187,0): 43, 24, 20, (177,188,0): 43, 24, 20, (177,189,0): 45, 26, 22, (177,190,0): 46, 27, 23, (177,191,0): 48, 27, 22, (177,192,0): 51, 28, 22, (177,193,0): 53, 28, 21, (177,194,0): 54, 29, 22, (177,195,0): 55, 30, 23, (177,196,0): 56, 31, 24, (177,197,0): 58, 33, 26, (177,198,0): 58, 33, 26, (177,199,0): 59, 34, 27, (177,200,0): 56, 31, 24, (177,201,0): 56, 31, 24, (177,202,0): 55, 30, 23, (177,203,0): 55, 30, 23, (177,204,0): 54, 29, 22, (177,205,0): 54, 29, 22, (177,206,0): 53, 28, 21, (177,207,0): 53, 28, 21, (177,208,0): 51, 26, 22, (177,209,0): 51, 26, 22, (177,210,0): 51, 26, 21, (177,211,0): 50, 25, 20, (177,212,0): 50, 25, 20, (177,213,0): 49, 24, 19, (177,214,0): 49, 24, 17, (177,215,0): 49, 24, 17, (177,216,0): 49, 25, 15, (177,217,0): 49, 25, 15, (177,218,0): 49, 25, 15, (177,219,0): 50, 26, 16, (177,220,0): 50, 26, 14, (177,221,0): 51, 27, 15, (177,222,0): 51, 27, 15, (177,223,0): 51, 27, 15, (177,224,0): 54, 25, 19, (177,225,0): 54, 25, 19, (177,226,0): 55, 26, 20, (177,227,0): 55, 26, 20, (177,228,0): 55, 26, 18, (177,229,0): 56, 27, 19, (177,230,0): 57, 28, 20, (177,231,0): 57, 28, 20, (177,232,0): 58, 30, 19, (177,233,0): 58, 30, 19, (177,234,0): 59, 31, 19, (177,235,0): 59, 31, 19, (177,236,0): 59, 31, 19, (177,237,0): 57, 29, 17, (177,238,0): 56, 28, 14, (177,239,0): 55, 27, 13, (177,240,0): 51, 23, 9, (177,241,0): 51, 23, 9, (177,242,0): 51, 23, 11, (177,243,0): 51, 23, 11, (177,244,0): 50, 24, 11, (177,245,0): 50, 24, 11, (177,246,0): 48, 24, 12, (177,247,0): 48, 24, 12, (177,248,0): 48, 24, 14, (177,249,0): 48, 24, 14, (177,250,0): 48, 26, 15, (177,251,0): 49, 27, 16, (177,252,0): 49, 29, 20, (177,253,0): 50, 30, 21, (177,254,0): 51, 31, 22, (177,255,0): 51, 31, 22, (177,256,0): 52, 31, 26, (177,257,0): 52, 31, 26, (177,258,0): 52, 31, 26, (177,259,0): 52, 31, 26, (177,260,0): 54, 30, 26, (177,261,0): 53, 29, 25, (177,262,0): 54, 29, 25, (177,263,0): 54, 29, 25, (177,264,0): 58, 33, 29, (177,265,0): 58, 33, 29, (177,266,0): 60, 32, 29, (177,267,0): 61, 33, 30, (177,268,0): 62, 32, 30, (177,269,0): 63, 33, 31, (177,270,0): 63, 33, 31, (177,271,0): 63, 33, 31, (177,272,0): 63, 33, 31, (177,273,0): 63, 33, 31, (177,274,0): 64, 34, 32, (177,275,0): 64, 35, 31, (177,276,0): 65, 36, 32, (177,277,0): 65, 36, 30, (177,278,0): 65, 36, 28, (177,279,0): 65, 36, 28, (177,280,0): 66, 38, 27, (177,281,0): 67, 39, 27, (177,282,0): 67, 39, 25, (177,283,0): 69, 41, 27, (177,284,0): 70, 43, 26, (177,285,0): 71, 44, 27, (177,286,0): 72, 45, 28, (177,287,0): 71, 45, 28, (177,288,0): 72, 46, 31, (177,289,0): 70, 47, 31, (177,290,0): 71, 48, 34, (177,291,0): 72, 49, 35, (177,292,0): 73, 51, 38, (177,293,0): 75, 53, 40, (177,294,0): 78, 56, 43, (177,295,0): 79, 57, 44, (177,296,0): 76, 57, 42, (177,297,0): 77, 58, 41, (177,298,0): 78, 61, 41, (177,299,0): 80, 64, 39, (177,300,0): 83, 67, 41, (177,301,0): 86, 71, 42, (177,302,0): 87, 74, 42, (177,303,0): 88, 75, 43, (177,304,0): 94, 76, 52, (177,305,0): 94, 76, 54, (177,306,0): 96, 76, 52, (177,307,0): 96, 76, 51, (177,308,0): 98, 78, 53, (177,309,0): 100, 81, 51, (177,310,0): 104, 83, 52, (177,311,0): 105, 85, 50, (177,312,0): 111, 89, 52, (177,313,0): 114, 92, 53, (177,314,0): 116, 94, 53, (177,315,0): 117, 96, 51, (177,316,0): 119, 97, 50, (177,317,0): 122, 100, 51, (177,318,0): 128, 106, 57, (177,319,0): 132, 110, 60, (177,320,0): 143, 123, 73, (177,321,0): 145, 127, 77, (177,322,0): 147, 130, 78, (177,323,0): 148, 128, 75, (177,324,0): 144, 125, 67, (177,325,0): 145, 126, 67, (177,326,0): 151, 133, 69, (177,327,0): 157, 139, 73, (177,328,0): 165, 146, 77, (177,329,0): 171, 153, 81, (177,330,0): 179, 159, 86, (177,331,0): 184, 164, 91, (177,332,0): 187, 168, 92, (177,333,0): 188, 169, 93, (177,334,0): 191, 172, 96, (177,335,0): 196, 172, 100, (177,336,0): 207, 174, 107, (177,337,0): 203, 168, 102, (177,338,0): 199, 161, 96, (177,339,0): 194, 159, 93, (177,340,0): 195, 160, 94, (177,341,0): 195, 162, 95, (177,342,0): 194, 161, 94, (177,343,0): 191, 160, 93, (177,344,0): 190, 161, 93, (177,345,0): 190, 163, 94, (177,346,0): 191, 164, 95, (177,347,0): 191, 167, 97, (177,348,0): 192, 168, 98, (177,349,0): 193, 169, 99, (177,350,0): 194, 170, 100, (177,351,0): 194, 170, 98, (177,352,0): 193, 171, 95, (177,353,0): 194, 173, 94, (177,354,0): 196, 174, 98, (177,355,0): 198, 176, 100, (177,356,0): 199, 177, 104, (177,357,0): 197, 177, 104, (177,358,0): 197, 177, 106, (177,359,0): 195, 177, 105, (177,360,0): 192, 174, 102, (177,361,0): 190, 172, 100, (177,362,0): 186, 170, 95, (177,363,0): 186, 170, 93, (177,364,0): 191, 175, 98, (177,365,0): 201, 185, 107, (177,366,0): 212, 197, 116, (177,367,0): 219, 203, 118, (177,368,0): 223, 203, 114, (177,369,0): 221, 200, 109, (177,370,0): 220, 196, 108, (177,371,0): 215, 191, 105, (177,372,0): 210, 185, 103, (177,373,0): 205, 180, 100, (177,374,0): 201, 175, 100, (177,375,0): 197, 173, 99, (177,376,0): 191, 169, 96, (177,377,0): 191, 171, 100, (177,378,0): 189, 172, 100, (177,379,0): 184, 170, 97, (177,380,0): 177, 168, 93, (177,381,0): 174, 168, 92, (177,382,0): 174, 171, 94, (177,383,0): 177, 174, 97, (177,384,0): 177, 170, 98, (177,385,0): 173, 169, 96, (177,386,0): 170, 166, 93, (177,387,0): 169, 167, 93, (177,388,0): 171, 171, 97, (177,389,0): 176, 177, 101, (177,390,0): 179, 180, 102, (177,391,0): 181, 182, 102, (177,392,0): 188, 187, 105, (177,393,0): 192, 191, 108, (177,394,0): 199, 197, 110, (177,395,0): 206, 202, 113, (177,396,0): 211, 206, 115, (177,397,0): 214, 207, 116, (177,398,0): 216, 207, 114, (177,399,0): 214, 208, 114, (177,400,0): 214, 211, 118, (177,401,0): 214, 213, 120, (177,402,0): 218, 217, 125, (177,403,0): 222, 221, 128, (177,404,0): 225, 224, 131, (177,405,0): 227, 226, 133, (177,406,0): 228, 227, 134, (177,407,0): 229, 229, 133, (177,408,0): 226, 226, 130, (177,409,0): 226, 226, 128, (177,410,0): 227, 227, 129, (177,411,0): 228, 228, 128, (177,412,0): 229, 229, 131, (177,413,0): 230, 230, 130, (177,414,0): 231, 231, 131, (177,415,0): 230, 233, 130, (177,416,0): 234, 240, 132, (177,417,0): 234, 242, 131, (177,418,0): 235, 243, 132, (177,419,0): 235, 243, 132, (177,420,0): 234, 240, 130, (177,421,0): 231, 237, 127, (177,422,0): 229, 232, 125, (177,423,0): 228, 230, 123, (177,424,0): 232, 231, 125, (177,425,0): 230, 229, 123, (177,426,0): 230, 227, 122, (177,427,0): 232, 229, 124, (177,428,0): 235, 230, 126, (177,429,0): 235, 230, 126, (177,430,0): 235, 228, 124, (177,431,0): 230, 226, 119, (177,432,0): 230, 226, 116, (177,433,0): 231, 228, 115, (177,434,0): 228, 225, 112, (177,435,0): 224, 222, 109, (177,436,0): 229, 227, 114, (177,437,0): 236, 236, 122, (177,438,0): 235, 235, 123, (177,439,0): 229, 229, 119, (177,440,0): 222, 221, 113, (177,441,0): 220, 221, 117, (177,442,0): 220, 220, 120, (177,443,0): 216, 218, 121, (177,444,0): 210, 211, 117, (177,445,0): 202, 202, 112, (177,446,0): 194, 194, 106, (177,447,0): 188, 191, 104, (177,448,0): 184, 187, 100, (177,449,0): 186, 190, 103, (177,450,0): 188, 194, 108, (177,451,0): 188, 198, 111, (177,452,0): 188, 201, 113, (177,453,0): 192, 208, 119, (177,454,0): 198, 217, 127, (177,455,0): 203, 224, 133, (177,456,0): 203, 224, 133, (177,457,0): 201, 224, 134, (177,458,0): 204, 224, 135, (177,459,0): 205, 224, 135, (177,460,0): 206, 222, 134, (177,461,0): 205, 219, 132, (177,462,0): 204, 218, 131, (177,463,0): 203, 217, 132, (177,464,0): 207, 221, 142, (177,465,0): 205, 219, 144, (177,466,0): 203, 217, 142, (177,467,0): 200, 216, 143, (177,468,0): 199, 215, 144, (177,469,0): 196, 211, 142, (177,470,0): 190, 205, 140, (177,471,0): 184, 200, 137, (177,472,0): 183, 198, 139, (177,473,0): 179, 197, 139, (177,474,0): 176, 193, 138, (177,475,0): 173, 190, 136, (177,476,0): 171, 188, 136, (177,477,0): 169, 187, 135, (177,478,0): 169, 187, 137, (177,479,0): 169, 187, 139, (177,480,0): 167, 184, 140, (177,481,0): 170, 187, 143, (177,482,0): 172, 187, 146, (177,483,0): 168, 185, 143, (177,484,0): 162, 177, 138, (177,485,0): 154, 170, 131, (177,486,0): 151, 165, 129, (177,487,0): 149, 165, 129, (177,488,0): 143, 157, 124, (177,489,0): 139, 154, 121, (177,490,0): 135, 148, 118, (177,491,0): 129, 144, 113, (177,492,0): 126, 139, 111, (177,493,0): 121, 136, 107, (177,494,0): 121, 134, 108, (177,495,0): 120, 132, 108, (177,496,0): 124, 133, 112, (177,497,0): 124, 131, 113, (177,498,0): 123, 130, 112, (177,499,0): 121, 128, 110, (177,500,0): 120, 124, 107, (177,501,0): 117, 121, 104, (177,502,0): 116, 119, 102, (177,503,0): 114, 117, 100, (177,504,0): 112, 115, 98, (177,505,0): 109, 112, 95, (177,506,0): 107, 108, 92, (177,507,0): 104, 105, 89, (177,508,0): 104, 102, 87, (177,509,0): 100, 98, 83, (177,510,0): 94, 92, 77, (177,511,0): 90, 86, 74, (177,512,0): 88, 77, 71, (177,513,0): 83, 69, 66, (177,514,0): 78, 65, 59, (177,515,0): 74, 63, 57, (177,516,0): 72, 62, 53, (177,517,0): 73, 63, 54, (177,518,0): 83, 73, 63, (177,519,0): 94, 86, 73, (177,520,0): 104, 96, 83, (177,521,0): 108, 102, 86, (177,522,0): 114, 109, 90, (177,523,0): 117, 112, 93, (177,524,0): 118, 113, 93, (177,525,0): 117, 115, 94, (177,526,0): 118, 116, 93, (177,527,0): 120, 118, 95, (177,528,0): 116, 116, 90, (177,529,0): 116, 116, 88, (177,530,0): 115, 115, 89, (177,531,0): 114, 114, 88, (177,532,0): 111, 114, 87, (177,533,0): 110, 113, 86, (177,534,0): 109, 113, 88, (177,535,0): 109, 113, 88, (177,536,0): 107, 111, 88, (177,537,0): 106, 110, 87, (177,538,0): 105, 110, 87, (177,539,0): 105, 110, 87, (177,540,0): 104, 112, 89, (177,541,0): 106, 114, 91, (177,542,0): 108, 116, 93, (177,543,0): 111, 116, 94, (177,544,0): 111, 114, 95, (177,545,0): 111, 114, 95, (177,546,0): 112, 113, 97, (177,547,0): 109, 112, 95, (177,548,0): 107, 108, 92, (177,549,0): 103, 106, 89, (177,550,0): 101, 102, 88, (177,551,0): 98, 100, 86, (177,552,0): 98, 98, 86, (177,553,0): 99, 101, 88, (177,554,0): 101, 101, 89, (177,555,0): 102, 104, 91, (177,556,0): 104, 104, 94, (177,557,0): 104, 106, 95, (177,558,0): 104, 104, 94, (177,559,0): 102, 105, 94, (177,560,0): 100, 108, 95, (177,561,0): 99, 109, 98, (177,562,0): 101, 111, 100, (177,563,0): 103, 115, 105, (177,564,0): 105, 117, 107, (177,565,0): 107, 120, 111, (177,566,0): 109, 122, 113, (177,567,0): 110, 123, 116, (177,568,0): 110, 122, 118, (177,569,0): 109, 124, 121, (177,570,0): 111, 126, 123, (177,571,0): 112, 128, 127, (177,572,0): 115, 131, 130, (177,573,0): 117, 133, 133, (177,574,0): 119, 135, 135, (177,575,0): 120, 135, 140, (177,576,0): 119, 136, 146, (177,577,0): 118, 134, 149, (177,578,0): 118, 131, 147, (177,579,0): 114, 127, 143, (177,580,0): 111, 123, 137, (177,581,0): 106, 118, 130, (177,582,0): 104, 114, 126, (177,583,0): 102, 112, 122, (177,584,0): 100, 107, 117, (177,585,0): 95, 102, 110, (177,586,0): 91, 95, 104, (177,587,0): 86, 91, 97, (177,588,0): 83, 86, 91, (177,589,0): 78, 81, 86, (177,590,0): 74, 75, 80, (177,591,0): 70, 71, 75, (177,592,0): 72, 70, 73, (177,593,0): 71, 69, 70, (177,594,0): 70, 66, 67, (177,595,0): 69, 63, 65, (177,596,0): 70, 61, 64, (177,597,0): 69, 60, 63, (177,598,0): 70, 59, 63, (177,599,0): 71, 59, 63, (178,0,0): 42, 30, 40, (178,1,0): 42, 30, 40, (178,2,0): 42, 30, 40, (178,3,0): 42, 30, 40, (178,4,0): 42, 30, 40, (178,5,0): 42, 30, 40, (178,6,0): 42, 30, 40, (178,7,0): 42, 30, 40, (178,8,0): 42, 30, 40, (178,9,0): 42, 30, 40, (178,10,0): 41, 29, 39, (178,11,0): 41, 29, 39, (178,12,0): 40, 28, 38, (178,13,0): 40, 28, 38, (178,14,0): 39, 27, 37, (178,15,0): 39, 27, 37, (178,16,0): 41, 29, 39, (178,17,0): 41, 29, 39, (178,18,0): 41, 29, 39, (178,19,0): 41, 29, 39, (178,20,0): 41, 29, 39, (178,21,0): 41, 29, 39, (178,22,0): 41, 29, 39, (178,23,0): 41, 29, 39, (178,24,0): 44, 32, 42, (178,25,0): 43, 31, 41, (178,26,0): 42, 30, 40, (178,27,0): 41, 29, 39, (178,28,0): 42, 30, 40, (178,29,0): 45, 33, 43, (178,30,0): 48, 36, 46, (178,31,0): 52, 36, 46, (178,32,0): 57, 36, 45, (178,33,0): 60, 34, 45, (178,34,0): 61, 33, 45, (178,35,0): 60, 33, 42, (178,36,0): 60, 33, 42, (178,37,0): 59, 32, 41, (178,38,0): 61, 31, 41, (178,39,0): 61, 31, 39, (178,40,0): 62, 31, 39, (178,41,0): 62, 31, 37, (178,42,0): 63, 32, 38, (178,43,0): 65, 34, 40, (178,44,0): 67, 34, 41, (178,45,0): 69, 37, 42, (178,46,0): 70, 38, 43, (178,47,0): 70, 38, 43, (178,48,0): 73, 40, 47, (178,49,0): 73, 40, 49, (178,50,0): 75, 40, 47, (178,51,0): 75, 40, 47, (178,52,0): 76, 39, 47, (178,53,0): 76, 39, 47, (178,54,0): 78, 38, 46, (178,55,0): 78, 38, 46, (178,56,0): 81, 40, 46, (178,57,0): 82, 39, 46, (178,58,0): 84, 39, 46, (178,59,0): 83, 38, 45, (178,60,0): 84, 37, 43, (178,61,0): 84, 37, 43, (178,62,0): 85, 36, 42, (178,63,0): 82, 37, 44, (178,64,0): 79, 39, 48, (178,65,0): 77, 39, 50, (178,66,0): 76, 39, 47, (178,67,0): 76, 36, 45, (178,68,0): 75, 35, 44, (178,69,0): 73, 33, 42, (178,70,0): 72, 32, 40, (178,71,0): 72, 31, 39, (178,72,0): 77, 36, 42, (178,73,0): 78, 35, 42, (178,74,0): 78, 35, 42, (178,75,0): 79, 36, 43, (178,76,0): 79, 37, 41, (178,77,0): 82, 37, 42, (178,78,0): 82, 37, 42, (178,79,0): 83, 36, 42, (178,80,0): 86, 37, 43, (178,81,0): 87, 36, 43, (178,82,0): 86, 37, 43, (178,83,0): 85, 36, 42, (178,84,0): 84, 35, 41, (178,85,0): 84, 35, 41, (178,86,0): 82, 35, 41, (178,87,0): 81, 34, 40, (178,88,0): 80, 35, 40, (178,89,0): 80, 35, 40, (178,90,0): 80, 35, 40, (178,91,0): 80, 35, 40, (178,92,0): 77, 35, 39, (178,93,0): 77, 35, 39, (178,94,0): 77, 35, 39, (178,95,0): 77, 34, 41, (178,96,0): 73, 32, 40, (178,97,0): 73, 31, 41, (178,98,0): 74, 31, 41, (178,99,0): 74, 31, 41, (178,100,0): 74, 31, 41, (178,101,0): 73, 30, 40, (178,102,0): 73, 30, 40, (178,103,0): 72, 30, 40, (178,104,0): 70, 30, 39, (178,105,0): 65, 30, 37, (178,106,0): 59, 28, 34, (178,107,0): 51, 24, 29, (178,108,0): 43, 23, 25, (178,109,0): 35, 19, 20, (178,110,0): 31, 17, 17, (178,111,0): 27, 15, 17, (178,112,0): 24, 13, 19, (178,113,0): 24, 13, 21, (178,114,0): 24, 13, 21, (178,115,0): 24, 13, 21, (178,116,0): 24, 13, 21, (178,117,0): 24, 13, 21, (178,118,0): 24, 13, 21, (178,119,0): 24, 13, 21, (178,120,0): 24, 13, 21, (178,121,0): 24, 13, 21, (178,122,0): 24, 13, 21, (178,123,0): 24, 13, 21, (178,124,0): 24, 13, 21, (178,125,0): 24, 13, 21, (178,126,0): 24, 13, 21, (178,127,0): 24, 13, 21, (178,128,0): 25, 12, 21, (178,129,0): 27, 11, 21, (178,130,0): 27, 11, 21, (178,131,0): 27, 11, 21, (178,132,0): 28, 12, 22, (178,133,0): 28, 12, 22, (178,134,0): 29, 13, 23, (178,135,0): 29, 13, 23, (178,136,0): 30, 14, 24, (178,137,0): 30, 14, 24, (178,138,0): 30, 14, 24, (178,139,0): 30, 14, 24, (178,140,0): 30, 14, 24, (178,141,0): 30, 14, 24, (178,142,0): 30, 14, 24, (178,143,0): 30, 15, 22, (178,144,0): 32, 15, 21, (178,145,0): 32, 16, 19, (178,146,0): 33, 17, 18, (178,147,0): 35, 19, 20, (178,148,0): 38, 19, 21, (178,149,0): 40, 21, 23, (178,150,0): 41, 23, 23, (178,151,0): 41, 23, 23, (178,152,0): 46, 26, 25, (178,153,0): 47, 27, 26, (178,154,0): 48, 27, 26, (178,155,0): 49, 28, 27, (178,156,0): 49, 28, 25, (178,157,0): 50, 29, 26, (178,158,0): 52, 28, 26, (178,159,0): 52, 28, 26, (178,160,0): 47, 26, 23, (178,161,0): 47, 26, 23, (178,162,0): 47, 26, 23, (178,163,0): 47, 26, 23, (178,164,0): 47, 26, 23, (178,165,0): 47, 26, 23, (178,166,0): 47, 26, 23, (178,167,0): 47, 26, 23, (178,168,0): 46, 25, 22, (178,169,0): 46, 25, 22, (178,170,0): 46, 25, 22, (178,171,0): 45, 24, 21, (178,172,0): 45, 24, 21, (178,173,0): 44, 23, 20, (178,174,0): 44, 23, 20, (178,175,0): 44, 23, 20, (178,176,0): 45, 26, 22, (178,177,0): 45, 26, 22, (178,178,0): 45, 26, 22, (178,179,0): 45, 26, 22, (178,180,0): 45, 26, 22, (178,181,0): 45, 26, 22, (178,182,0): 45, 26, 22, (178,183,0): 45, 26, 22, (178,184,0): 44, 25, 21, (178,185,0): 44, 25, 21, (178,186,0): 43, 24, 20, (178,187,0): 43, 24, 20, (178,188,0): 43, 24, 20, (178,189,0): 45, 26, 22, (178,190,0): 46, 27, 23, (178,191,0): 48, 27, 22, (178,192,0): 52, 29, 23, (178,193,0): 53, 28, 21, (178,194,0): 54, 29, 22, (178,195,0): 55, 30, 23, (178,196,0): 56, 31, 24, (178,197,0): 57, 32, 25, (178,198,0): 57, 32, 25, (178,199,0): 58, 33, 26, (178,200,0): 56, 31, 24, (178,201,0): 56, 31, 24, (178,202,0): 55, 30, 23, (178,203,0): 55, 30, 23, (178,204,0): 54, 29, 22, (178,205,0): 54, 29, 22, (178,206,0): 53, 28, 21, (178,207,0): 53, 28, 21, (178,208,0): 51, 26, 22, (178,209,0): 51, 26, 22, (178,210,0): 51, 26, 21, (178,211,0): 50, 25, 20, (178,212,0): 50, 25, 20, (178,213,0): 49, 24, 19, (178,214,0): 49, 24, 17, (178,215,0): 49, 24, 17, (178,216,0): 49, 25, 15, (178,217,0): 49, 25, 15, (178,218,0): 49, 25, 15, (178,219,0): 50, 26, 16, (178,220,0): 50, 26, 14, (178,221,0): 51, 27, 15, (178,222,0): 51, 27, 15, (178,223,0): 51, 27, 15, (178,224,0): 57, 28, 22, (178,225,0): 56, 27, 21, (178,226,0): 54, 25, 19, (178,227,0): 54, 25, 19, (178,228,0): 54, 25, 17, (178,229,0): 56, 27, 19, (178,230,0): 58, 29, 21, (178,231,0): 60, 31, 23, (178,232,0): 58, 30, 19, (178,233,0): 58, 30, 19, (178,234,0): 59, 31, 19, (178,235,0): 59, 31, 19, (178,236,0): 59, 31, 19, (178,237,0): 57, 29, 17, (178,238,0): 56, 28, 14, (178,239,0): 55, 27, 13, (178,240,0): 51, 23, 9, (178,241,0): 51, 23, 9, (178,242,0): 51, 23, 11, (178,243,0): 51, 23, 11, (178,244,0): 50, 24, 11, (178,245,0): 50, 24, 11, (178,246,0): 48, 24, 12, (178,247,0): 48, 24, 12, (178,248,0): 49, 25, 15, (178,249,0): 50, 26, 16, (178,250,0): 50, 28, 17, (178,251,0): 51, 29, 18, (178,252,0): 50, 30, 21, (178,253,0): 51, 31, 22, (178,254,0): 51, 31, 22, (178,255,0): 52, 32, 23, (178,256,0): 50, 29, 24, (178,257,0): 50, 29, 24, (178,258,0): 50, 29, 24, (178,259,0): 50, 29, 24, (178,260,0): 52, 28, 24, (178,261,0): 52, 28, 24, (178,262,0): 53, 28, 24, (178,263,0): 53, 28, 24, (178,264,0): 58, 33, 29, (178,265,0): 58, 33, 29, (178,266,0): 60, 32, 29, (178,267,0): 61, 33, 30, (178,268,0): 62, 32, 30, (178,269,0): 63, 33, 31, (178,270,0): 63, 33, 31, (178,271,0): 63, 33, 31, (178,272,0): 64, 34, 32, (178,273,0): 64, 34, 32, (178,274,0): 64, 35, 31, (178,275,0): 64, 35, 31, (178,276,0): 65, 36, 32, (178,277,0): 66, 37, 31, (178,278,0): 66, 37, 29, (178,279,0): 67, 38, 30, (178,280,0): 68, 40, 29, (178,281,0): 69, 41, 29, (178,282,0): 69, 41, 27, (178,283,0): 70, 42, 28, (178,284,0): 71, 44, 27, (178,285,0): 72, 45, 28, (178,286,0): 73, 46, 27, (178,287,0): 72, 46, 29, (178,288,0): 73, 47, 32, (178,289,0): 71, 48, 32, (178,290,0): 71, 48, 34, (178,291,0): 72, 49, 35, (178,292,0): 72, 50, 36, (178,293,0): 75, 53, 39, (178,294,0): 77, 55, 42, (178,295,0): 78, 56, 43, (178,296,0): 75, 56, 41, (178,297,0): 76, 57, 40, (178,298,0): 77, 60, 40, (178,299,0): 80, 64, 39, (178,300,0): 83, 67, 41, (178,301,0): 85, 70, 41, (178,302,0): 86, 73, 41, (178,303,0): 87, 73, 44, (178,304,0): 94, 76, 52, (178,305,0): 94, 76, 54, (178,306,0): 94, 76, 52, (178,307,0): 94, 77, 51, (178,308,0): 98, 78, 53, (178,309,0): 100, 81, 51, (178,310,0): 104, 83, 52, (178,311,0): 105, 85, 50, (178,312,0): 109, 89, 52, (178,313,0): 111, 92, 52, (178,314,0): 116, 94, 53, (178,315,0): 118, 97, 52, (178,316,0): 120, 98, 51, (178,317,0): 123, 101, 52, (178,318,0): 128, 106, 57, (178,319,0): 132, 110, 60, (178,320,0): 137, 117, 66, (178,321,0): 143, 123, 70, (178,322,0): 148, 129, 73, (178,323,0): 150, 129, 72, (178,324,0): 148, 128, 69, (178,325,0): 149, 129, 68, (178,326,0): 154, 135, 69, (178,327,0): 160, 141, 73, (178,328,0): 170, 150, 81, (178,329,0): 175, 155, 84, (178,330,0): 181, 161, 88, (178,331,0): 185, 165, 92, (178,332,0): 186, 166, 93, (178,333,0): 187, 167, 94, (178,334,0): 189, 169, 96, (178,335,0): 194, 170, 98, (178,336,0): 206, 175, 108, (178,337,0): 203, 170, 103, (178,338,0): 199, 164, 98, (178,339,0): 195, 162, 95, (178,340,0): 194, 161, 94, (178,341,0): 192, 161, 94, (178,342,0): 191, 160, 93, (178,343,0): 190, 161, 93, (178,344,0): 186, 157, 89, (178,345,0): 187, 160, 91, (178,346,0): 190, 163, 94, (178,347,0): 191, 167, 97, (178,348,0): 193, 169, 99, (178,349,0): 193, 170, 100, (178,350,0): 192, 169, 99, (178,351,0): 191, 169, 96, (178,352,0): 188, 166, 90, (178,353,0): 190, 169, 90, (178,354,0): 190, 171, 94, (178,355,0): 192, 173, 96, (178,356,0): 193, 173, 100, (178,357,0): 193, 173, 100, (178,358,0): 193, 173, 102, (178,359,0): 192, 174, 102, (178,360,0): 187, 169, 97, (178,361,0): 183, 166, 94, (178,362,0): 181, 165, 90, (178,363,0): 182, 166, 89, (178,364,0): 186, 173, 95, (178,365,0): 196, 183, 104, (178,366,0): 206, 194, 112, (178,367,0): 215, 200, 117, (178,368,0): 223, 206, 118, (178,369,0): 223, 203, 114, (178,370,0): 219, 197, 111, (178,371,0): 213, 191, 106, (178,372,0): 207, 184, 104, (178,373,0): 202, 179, 101, (178,374,0): 198, 174, 100, (178,375,0): 195, 173, 100, (178,376,0): 185, 165, 94, (178,377,0): 184, 165, 96, (178,378,0): 181, 167, 96, (178,379,0): 179, 167, 95, (178,380,0): 174, 166, 93, (178,381,0): 173, 167, 91, (178,382,0): 173, 170, 93, (178,383,0): 174, 172, 95, (178,384,0): 176, 172, 99, (178,385,0): 173, 169, 96, (178,386,0): 172, 168, 95, (178,387,0): 174, 172, 97, (178,388,0): 178, 179, 103, (178,389,0): 183, 184, 106, (178,390,0): 185, 186, 106, (178,391,0): 184, 186, 103, (178,392,0): 187, 189, 105, (178,393,0): 192, 192, 106, (178,394,0): 198, 196, 109, (178,395,0): 205, 201, 112, (178,396,0): 210, 205, 114, (178,397,0): 213, 206, 115, (178,398,0): 216, 207, 114, (178,399,0): 214, 208, 114, (178,400,0): 217, 214, 119, (178,401,0): 217, 217, 121, (178,402,0): 220, 219, 126, (178,403,0): 224, 224, 128, (178,404,0): 227, 227, 131, (178,405,0): 229, 229, 133, (178,406,0): 231, 231, 135, (178,407,0): 231, 231, 133, (178,408,0): 227, 227, 129, (178,409,0): 227, 227, 127, (178,410,0): 228, 228, 128, (178,411,0): 228, 229, 127, (178,412,0): 228, 228, 128, (178,413,0): 228, 229, 127, (178,414,0): 228, 229, 127, (178,415,0): 227, 230, 125, (178,416,0): 229, 235, 127, (178,417,0): 228, 236, 125, (178,418,0): 229, 235, 125, (178,419,0): 228, 234, 124, (178,420,0): 230, 234, 124, (178,421,0): 229, 233, 123, (178,422,0): 229, 231, 122, (178,423,0): 229, 231, 122, (178,424,0): 233, 232, 124, (178,425,0): 230, 229, 121, (178,426,0): 230, 227, 120, (178,427,0): 231, 228, 121, (178,428,0): 235, 231, 124, (178,429,0): 238, 234, 127, (178,430,0): 237, 233, 126, (178,431,0): 236, 232, 124, (178,432,0): 236, 233, 120, (178,433,0): 237, 236, 120, (178,434,0): 236, 235, 119, (178,435,0): 231, 230, 114, (178,436,0): 232, 231, 115, (178,437,0): 237, 237, 123, (178,438,0): 237, 237, 125, (178,439,0): 231, 233, 123, (178,440,0): 226, 228, 119, (178,441,0): 225, 226, 122, (178,442,0): 224, 224, 124, (178,443,0): 219, 221, 124, (178,444,0): 211, 212, 119, (178,445,0): 197, 200, 109, (178,446,0): 186, 189, 102, (178,447,0): 178, 180, 96, (178,448,0): 174, 176, 92, (178,449,0): 174, 178, 93, (178,450,0): 174, 179, 95, (178,451,0): 174, 182, 97, (178,452,0): 177, 187, 101, (178,453,0): 182, 196, 109, (178,454,0): 192, 208, 120, (178,455,0): 196, 216, 127, (178,456,0): 196, 216, 127, (178,457,0): 197, 217, 130, (178,458,0): 199, 219, 132, (178,459,0): 200, 220, 133, (178,460,0): 201, 219, 133, (178,461,0): 202, 217, 132, (178,462,0): 202, 217, 132, (178,463,0): 201, 216, 135, (178,464,0): 203, 217, 140, (178,465,0): 200, 216, 143, (178,466,0): 198, 214, 141, (178,467,0): 198, 214, 143, (178,468,0): 198, 213, 144, (178,469,0): 194, 211, 143, (178,470,0): 189, 205, 140, (178,471,0): 182, 201, 137, (178,472,0): 181, 199, 139, (178,473,0): 180, 198, 140, (178,474,0): 177, 194, 139, (178,475,0): 173, 192, 137, (178,476,0): 170, 188, 136, (178,477,0): 166, 186, 135, (178,478,0): 164, 184, 135, (178,479,0): 164, 184, 135, (178,480,0): 163, 182, 137, (178,481,0): 166, 184, 142, (178,482,0): 170, 187, 145, (178,483,0): 167, 185, 143, (178,484,0): 163, 179, 140, (178,485,0): 155, 173, 133, (178,486,0): 151, 167, 130, (178,487,0): 147, 164, 128, (178,488,0): 143, 158, 125, (178,489,0): 139, 156, 122, (178,490,0): 136, 151, 120, (178,491,0): 131, 147, 118, (178,492,0): 127, 141, 115, (178,493,0): 123, 139, 112, (178,494,0): 122, 136, 110, (178,495,0): 121, 135, 110, (178,496,0): 126, 135, 114, (178,497,0): 125, 134, 115, (178,498,0): 124, 131, 113, (178,499,0): 121, 128, 110, (178,500,0): 119, 126, 108, (178,501,0): 116, 123, 105, (178,502,0): 116, 120, 103, (178,503,0): 116, 119, 102, (178,504,0): 113, 116, 99, (178,505,0): 113, 114, 98, (178,506,0): 113, 111, 96, (178,507,0): 113, 111, 96, (178,508,0): 111, 109, 94, (178,509,0): 107, 105, 90, (178,510,0): 101, 98, 83, (178,511,0): 97, 91, 79, (178,512,0): 94, 81, 75, (178,513,0): 86, 72, 69, (178,514,0): 80, 67, 61, (178,515,0): 78, 65, 59, (178,516,0): 76, 63, 55, (178,517,0): 74, 64, 55, (178,518,0): 83, 73, 63, (178,519,0): 93, 85, 72, (178,520,0): 102, 94, 81, (178,521,0): 107, 100, 84, (178,522,0): 113, 106, 88, (178,523,0): 116, 111, 92, (178,524,0): 117, 112, 92, (178,525,0): 118, 113, 93, (178,526,0): 120, 115, 93, (178,527,0): 119, 117, 94, (178,528,0): 117, 117, 91, (178,529,0): 117, 117, 91, (178,530,0): 117, 117, 91, (178,531,0): 116, 116, 90, (178,532,0): 114, 116, 92, (178,533,0): 114, 116, 92, (178,534,0): 113, 117, 92, (178,535,0): 113, 117, 92, (178,536,0): 108, 112, 89, (178,537,0): 107, 111, 88, (178,538,0): 106, 111, 89, (178,539,0): 106, 111, 89, (178,540,0): 105, 113, 90, (178,541,0): 107, 115, 92, (178,542,0): 109, 117, 96, (178,543,0): 110, 118, 97, (178,544,0): 112, 116, 99, (178,545,0): 111, 115, 98, (178,546,0): 111, 114, 97, (178,547,0): 108, 112, 95, (178,548,0): 107, 110, 93, (178,549,0): 102, 106, 89, (178,550,0): 101, 103, 89, (178,551,0): 98, 102, 87, (178,552,0): 100, 102, 89, (178,553,0): 100, 104, 90, (178,554,0): 103, 105, 94, (178,555,0): 103, 106, 95, (178,556,0): 106, 108, 97, (178,557,0): 105, 108, 97, (178,558,0): 105, 107, 96, (178,559,0): 102, 108, 96, (178,560,0): 99, 109, 98, (178,561,0): 99, 111, 101, (178,562,0): 101, 113, 103, (178,563,0): 103, 116, 107, (178,564,0): 106, 119, 110, (178,565,0): 108, 121, 114, (178,566,0): 110, 123, 116, (178,567,0): 109, 124, 119, (178,568,0): 109, 124, 121, (178,569,0): 109, 125, 124, (178,570,0): 111, 127, 126, (178,571,0): 114, 130, 130, (178,572,0): 117, 133, 133, (178,573,0): 118, 136, 138, (178,574,0): 120, 138, 140, (178,575,0): 121, 138, 145, (178,576,0): 123, 139, 152, (178,577,0): 122, 138, 153, (178,578,0): 122, 135, 151, (178,579,0): 119, 132, 148, (178,580,0): 115, 127, 141, (178,581,0): 110, 122, 134, (178,582,0): 108, 118, 130, (178,583,0): 105, 115, 125, (178,584,0): 102, 109, 119, (178,585,0): 97, 104, 112, (178,586,0): 93, 97, 106, (178,587,0): 89, 94, 100, (178,588,0): 86, 89, 94, (178,589,0): 81, 84, 89, (178,590,0): 78, 79, 84, (178,591,0): 73, 74, 78, (178,592,0): 72, 70, 73, (178,593,0): 70, 68, 69, (178,594,0): 70, 66, 67, (178,595,0): 69, 63, 65, (178,596,0): 69, 60, 63, (178,597,0): 68, 59, 62, (178,598,0): 69, 58, 62, (178,599,0): 69, 58, 62, (179,0,0): 42, 30, 40, (179,1,0): 42, 30, 40, (179,2,0): 42, 30, 40, (179,3,0): 42, 30, 40, (179,4,0): 42, 30, 40, (179,5,0): 42, 30, 40, (179,6,0): 42, 30, 40, (179,7,0): 42, 30, 40, (179,8,0): 42, 30, 40, (179,9,0): 42, 30, 40, (179,10,0): 41, 29, 39, (179,11,0): 41, 29, 39, (179,12,0): 40, 28, 38, (179,13,0): 40, 28, 38, (179,14,0): 39, 27, 37, (179,15,0): 39, 27, 37, (179,16,0): 41, 29, 39, (179,17,0): 41, 29, 39, (179,18,0): 41, 29, 39, (179,19,0): 41, 29, 39, (179,20,0): 41, 29, 39, (179,21,0): 41, 29, 39, (179,22,0): 41, 29, 39, (179,23,0): 41, 29, 39, (179,24,0): 44, 32, 42, (179,25,0): 43, 31, 41, (179,26,0): 42, 30, 40, (179,27,0): 42, 30, 40, (179,28,0): 42, 30, 40, (179,29,0): 44, 32, 42, (179,30,0): 46, 34, 44, (179,31,0): 48, 35, 45, (179,32,0): 53, 33, 44, (179,33,0): 54, 33, 42, (179,34,0): 55, 31, 44, (179,35,0): 54, 31, 41, (179,36,0): 54, 31, 41, (179,37,0): 54, 31, 41, (179,38,0): 56, 30, 41, (179,39,0): 56, 30, 39, (179,40,0): 56, 29, 38, (179,41,0): 57, 30, 37, (179,42,0): 58, 31, 38, (179,43,0): 60, 33, 38, (179,44,0): 64, 34, 42, (179,45,0): 65, 36, 41, (179,46,0): 67, 38, 43, (179,47,0): 67, 38, 43, (179,48,0): 71, 38, 47, (179,49,0): 73, 37, 47, (179,50,0): 74, 39, 46, (179,51,0): 74, 39, 46, (179,52,0): 75, 38, 46, (179,53,0): 78, 38, 47, (179,54,0): 78, 38, 46, (179,55,0): 79, 38, 46, (179,56,0): 82, 39, 46, (179,57,0): 84, 39, 46, (179,58,0): 84, 39, 46, (179,59,0): 85, 38, 46, (179,60,0): 85, 38, 44, (179,61,0): 86, 37, 43, (179,62,0): 86, 37, 43, (179,63,0): 84, 37, 45, (179,64,0): 80, 38, 48, (179,65,0): 79, 39, 50, (179,66,0): 78, 38, 47, (179,67,0): 77, 37, 46, (179,68,0): 77, 35, 45, (179,69,0): 76, 34, 44, (179,70,0): 75, 34, 42, (179,71,0): 76, 33, 42, (179,72,0): 79, 36, 43, (179,73,0): 81, 36, 43, (179,74,0): 81, 36, 43, (179,75,0): 82, 37, 44, (179,76,0): 82, 37, 42, (179,77,0): 83, 38, 43, (179,78,0): 84, 37, 43, (179,79,0): 84, 37, 43, (179,80,0): 87, 38, 44, (179,81,0): 87, 36, 43, (179,82,0): 86, 37, 43, (179,83,0): 85, 36, 42, (179,84,0): 85, 36, 42, (179,85,0): 84, 35, 41, (179,86,0): 82, 35, 41, (179,87,0): 82, 35, 41, (179,88,0): 80, 35, 40, (179,89,0): 80, 35, 40, (179,90,0): 80, 35, 40, (179,91,0): 80, 35, 40, (179,92,0): 77, 35, 39, (179,93,0): 77, 35, 39, (179,94,0): 77, 35, 39, (179,95,0): 77, 34, 41, (179,96,0): 72, 31, 39, (179,97,0): 72, 30, 40, (179,98,0): 73, 30, 40, (179,99,0): 73, 30, 40, (179,100,0): 73, 30, 40, (179,101,0): 73, 31, 41, (179,102,0): 73, 31, 41, (179,103,0): 72, 32, 41, (179,104,0): 70, 33, 41, (179,105,0): 67, 32, 39, (179,106,0): 61, 30, 36, (179,107,0): 53, 26, 31, (179,108,0): 44, 24, 26, (179,109,0): 39, 20, 22, (179,110,0): 33, 17, 18, (179,111,0): 31, 16, 19, (179,112,0): 27, 14, 21, (179,113,0): 25, 14, 22, (179,114,0): 24, 13, 21, (179,115,0): 23, 12, 20, (179,116,0): 23, 12, 20, (179,117,0): 23, 12, 20, (179,118,0): 24, 13, 21, (179,119,0): 24, 13, 21, (179,120,0): 25, 14, 22, (179,121,0): 25, 14, 22, (179,122,0): 25, 14, 22, (179,123,0): 25, 14, 22, (179,124,0): 25, 14, 22, (179,125,0): 25, 14, 22, (179,126,0): 25, 14, 22, (179,127,0): 25, 14, 22, (179,128,0): 28, 12, 22, (179,129,0): 28, 12, 22, (179,130,0): 28, 12, 22, (179,131,0): 28, 12, 22, (179,132,0): 28, 12, 22, (179,133,0): 28, 12, 22, (179,134,0): 29, 13, 23, (179,135,0): 29, 13, 23, (179,136,0): 30, 14, 24, (179,137,0): 30, 14, 24, (179,138,0): 30, 14, 24, (179,139,0): 30, 14, 24, (179,140,0): 30, 14, 24, (179,141,0): 30, 14, 24, (179,142,0): 30, 14, 24, (179,143,0): 30, 15, 22, (179,144,0): 31, 14, 20, (179,145,0): 31, 15, 18, (179,146,0): 33, 17, 18, (179,147,0): 35, 19, 20, (179,148,0): 38, 19, 21, (179,149,0): 40, 21, 23, (179,150,0): 42, 24, 24, (179,151,0): 42, 24, 24, (179,152,0): 47, 27, 26, (179,153,0): 47, 27, 26, (179,154,0): 49, 28, 27, (179,155,0): 50, 29, 28, (179,156,0): 51, 30, 27, (179,157,0): 51, 30, 27, (179,158,0): 53, 29, 27, (179,159,0): 52, 28, 26, (179,160,0): 47, 26, 23, (179,161,0): 47, 26, 23, (179,162,0): 47, 26, 23, (179,163,0): 47, 26, 23, (179,164,0): 47, 26, 23, (179,165,0): 47, 26, 23, (179,166,0): 47, 26, 23, (179,167,0): 47, 26, 23, (179,168,0): 46, 25, 22, (179,169,0): 45, 24, 21, (179,170,0): 45, 24, 21, (179,171,0): 44, 23, 20, (179,172,0): 44, 23, 20, (179,173,0): 43, 22, 19, (179,174,0): 43, 22, 19, (179,175,0): 43, 22, 19, (179,176,0): 45, 26, 22, (179,177,0): 45, 26, 22, (179,178,0): 45, 26, 22, (179,179,0): 45, 26, 22, (179,180,0): 45, 26, 22, (179,181,0): 45, 26, 22, (179,182,0): 45, 26, 22, (179,183,0): 45, 26, 22, (179,184,0): 44, 25, 21, (179,185,0): 44, 25, 21, (179,186,0): 43, 24, 20, (179,187,0): 43, 24, 20, (179,188,0): 43, 24, 20, (179,189,0): 45, 26, 22, (179,190,0): 46, 27, 23, (179,191,0): 48, 27, 22, (179,192,0): 52, 29, 23, (179,193,0): 53, 28, 21, (179,194,0): 54, 29, 22, (179,195,0): 54, 29, 22, (179,196,0): 55, 30, 23, (179,197,0): 56, 31, 24, (179,198,0): 56, 31, 24, (179,199,0): 57, 32, 25, (179,200,0): 56, 31, 24, (179,201,0): 56, 31, 24, (179,202,0): 55, 30, 23, (179,203,0): 55, 30, 23, (179,204,0): 54, 29, 22, (179,205,0): 54, 29, 22, (179,206,0): 53, 28, 21, (179,207,0): 53, 28, 21, (179,208,0): 51, 26, 22, (179,209,0): 51, 26, 22, (179,210,0): 51, 26, 21, (179,211,0): 50, 25, 20, (179,212,0): 50, 25, 20, (179,213,0): 49, 24, 19, (179,214,0): 49, 24, 17, (179,215,0): 49, 24, 17, (179,216,0): 49, 25, 15, (179,217,0): 49, 25, 15, (179,218,0): 49, 25, 15, (179,219,0): 50, 26, 16, (179,220,0): 50, 26, 14, (179,221,0): 51, 27, 15, (179,222,0): 51, 27, 15, (179,223,0): 51, 27, 15, (179,224,0): 56, 27, 21, (179,225,0): 55, 26, 20, (179,226,0): 52, 23, 17, (179,227,0): 51, 22, 16, (179,228,0): 51, 22, 14, (179,229,0): 54, 25, 17, (179,230,0): 57, 28, 20, (179,231,0): 59, 30, 22, (179,232,0): 58, 30, 19, (179,233,0): 58, 30, 19, (179,234,0): 59, 31, 19, (179,235,0): 59, 31, 19, (179,236,0): 59, 31, 19, (179,237,0): 57, 29, 17, (179,238,0): 56, 28, 14, (179,239,0): 55, 27, 13, (179,240,0): 51, 23, 9, (179,241,0): 51, 23, 9, (179,242,0): 51, 23, 11, (179,243,0): 51, 23, 11, (179,244,0): 50, 24, 11, (179,245,0): 50, 24, 11, (179,246,0): 48, 24, 12, (179,247,0): 48, 24, 12, (179,248,0): 51, 27, 17, (179,249,0): 51, 27, 17, (179,250,0): 51, 29, 18, (179,251,0): 51, 29, 18, (179,252,0): 50, 30, 21, (179,253,0): 51, 31, 22, (179,254,0): 51, 31, 22, (179,255,0): 52, 32, 23, (179,256,0): 48, 27, 22, (179,257,0): 48, 27, 22, (179,258,0): 48, 27, 22, (179,259,0): 49, 28, 23, (179,260,0): 51, 27, 23, (179,261,0): 52, 28, 24, (179,262,0): 53, 28, 24, (179,263,0): 53, 28, 24, (179,264,0): 58, 33, 29, (179,265,0): 58, 33, 29, (179,266,0): 60, 32, 29, (179,267,0): 61, 33, 30, (179,268,0): 62, 32, 30, (179,269,0): 63, 33, 31, (179,270,0): 63, 33, 31, (179,271,0): 63, 33, 31, (179,272,0): 64, 34, 32, (179,273,0): 64, 34, 32, (179,274,0): 64, 35, 31, (179,275,0): 65, 36, 32, (179,276,0): 66, 37, 31, (179,277,0): 67, 38, 32, (179,278,0): 68, 39, 31, (179,279,0): 69, 41, 30, (179,280,0): 71, 43, 31, (179,281,0): 71, 43, 31, (179,282,0): 72, 44, 30, (179,283,0): 73, 45, 31, (179,284,0): 73, 46, 29, (179,285,0): 74, 47, 30, (179,286,0): 74, 47, 28, (179,287,0): 74, 49, 29, (179,288,0): 75, 49, 32, (179,289,0): 73, 50, 34, (179,290,0): 72, 49, 35, (179,291,0): 72, 49, 35, (179,292,0): 72, 50, 36, (179,293,0): 74, 52, 38, (179,294,0): 75, 53, 40, (179,295,0): 77, 55, 42, (179,296,0): 75, 56, 41, (179,297,0): 76, 57, 40, (179,298,0): 77, 60, 40, (179,299,0): 79, 63, 40, (179,300,0): 82, 66, 41, (179,301,0): 85, 69, 43, (179,302,0): 86, 72, 43, (179,303,0): 87, 73, 44, (179,304,0): 94, 76, 52, (179,305,0): 94, 76, 52, (179,306,0): 94, 76, 52, (179,307,0): 94, 77, 51, (179,308,0): 98, 78, 51, (179,309,0): 100, 81, 51, (179,310,0): 104, 83, 52, (179,311,0): 105, 85, 52, (179,312,0): 108, 88, 53, (179,313,0): 111, 92, 52, (179,314,0): 117, 95, 54, (179,315,0): 119, 98, 55, (179,316,0): 121, 98, 54, (179,317,0): 123, 101, 54, (179,318,0): 127, 105, 58, (179,319,0): 131, 109, 60, (179,320,0): 138, 117, 64, (179,321,0): 143, 122, 67, (179,322,0): 148, 127, 70, (179,323,0): 149, 129, 70, (179,324,0): 147, 127, 66, (179,325,0): 149, 130, 64, (179,326,0): 156, 137, 69, (179,327,0): 162, 143, 74, (179,328,0): 173, 153, 82, (179,329,0): 177, 157, 84, (179,330,0): 181, 161, 88, (179,331,0): 183, 163, 90, (179,332,0): 183, 163, 90, (179,333,0): 183, 163, 90, (179,334,0): 184, 164, 91, (179,335,0): 188, 165, 95, (179,336,0): 201, 172, 104, (179,337,0): 200, 169, 102, (179,338,0): 198, 167, 100, (179,339,0): 196, 165, 98, (179,340,0): 193, 164, 96, (179,341,0): 191, 162, 94, (179,342,0): 188, 159, 91, (179,343,0): 186, 159, 90, (179,344,0): 182, 155, 86, (179,345,0): 182, 158, 88, (179,346,0): 187, 163, 93, (179,347,0): 190, 167, 97, (179,348,0): 192, 169, 99, (179,349,0): 190, 170, 99, (179,350,0): 190, 167, 97, (179,351,0): 187, 167, 94, (179,352,0): 185, 163, 87, (179,353,0): 184, 165, 86, (179,354,0): 186, 167, 90, (179,355,0): 188, 169, 93, (179,356,0): 189, 169, 96, (179,357,0): 189, 171, 97, (179,358,0): 188, 170, 98, (179,359,0): 187, 170, 98, (179,360,0): 182, 165, 93, (179,361,0): 181, 164, 92, (179,362,0): 179, 162, 90, (179,363,0): 179, 165, 90, (179,364,0): 185, 172, 94, (179,365,0): 193, 182, 102, (179,366,0): 204, 191, 112, (179,367,0): 210, 198, 114, (179,368,0): 220, 204, 117, (179,369,0): 219, 202, 114, (179,370,0): 216, 198, 112, (179,371,0): 212, 194, 110, (179,372,0): 205, 186, 107, (179,373,0): 198, 179, 102, (179,374,0): 192, 172, 99, (179,375,0): 189, 169, 98, (179,376,0): 182, 163, 94, (179,377,0): 181, 164, 94, (179,378,0): 178, 165, 95, (179,379,0): 175, 165, 93, (179,380,0): 173, 167, 93, (179,381,0): 173, 169, 95, (179,382,0): 174, 172, 97, (179,383,0): 175, 173, 98, (179,384,0): 177, 173, 99, (179,385,0): 175, 171, 97, (179,386,0): 174, 172, 97, (179,387,0): 179, 177, 100, (179,388,0): 184, 185, 107, (179,389,0): 188, 189, 109, (179,390,0): 187, 189, 106, (179,391,0): 185, 187, 103, (179,392,0): 188, 191, 104, (179,393,0): 190, 193, 104, (179,394,0): 197, 196, 106, (179,395,0): 203, 199, 108, (179,396,0): 209, 204, 112, (179,397,0): 213, 207, 113, (179,398,0): 218, 209, 114, (179,399,0): 217, 211, 115, (179,400,0): 219, 216, 119, (179,401,0): 219, 219, 121, (179,402,0): 222, 222, 124, (179,403,0): 226, 226, 128, (179,404,0): 229, 229, 131, (179,405,0): 232, 232, 134, (179,406,0): 233, 233, 135, (179,407,0): 233, 233, 133, (179,408,0): 230, 230, 130, (179,409,0): 230, 231, 129, (179,410,0): 229, 230, 128, (179,411,0): 229, 230, 126, (179,412,0): 228, 229, 125, (179,413,0): 227, 228, 124, (179,414,0): 227, 228, 124, (179,415,0): 226, 229, 124, (179,416,0): 229, 235, 127, (179,417,0): 228, 236, 125, (179,418,0): 228, 234, 124, (179,419,0): 227, 233, 123, (179,420,0): 229, 233, 123, (179,421,0): 231, 235, 125, (179,422,0): 234, 236, 127, (179,423,0): 235, 237, 127, (179,424,0): 234, 234, 124, (179,425,0): 231, 231, 121, (179,426,0): 230, 228, 117, (179,427,0): 232, 230, 119, (179,428,0): 237, 233, 123, (179,429,0): 241, 237, 127, (179,430,0): 243, 239, 129, (179,431,0): 242, 240, 127, (179,432,0): 241, 240, 122, (179,433,0): 244, 245, 125, (179,434,0): 244, 244, 124, (179,435,0): 237, 238, 119, (179,436,0): 235, 236, 117, (179,437,0): 237, 240, 123, (179,438,0): 238, 241, 126, (179,439,0): 234, 237, 124, (179,440,0): 228, 230, 121, (179,441,0): 226, 229, 124, (179,442,0): 224, 226, 125, (179,443,0): 218, 222, 125, (179,444,0): 210, 214, 120, (179,445,0): 197, 200, 111, (179,446,0): 183, 185, 101, (179,447,0): 174, 176, 93, (179,448,0): 168, 169, 89, (179,449,0): 167, 168, 88, (179,450,0): 165, 168, 87, (179,451,0): 163, 171, 88, (179,452,0): 167, 176, 95, (179,453,0): 174, 187, 105, (179,454,0): 183, 198, 115, (179,455,0): 189, 207, 123, (179,456,0): 187, 207, 122, (179,457,0): 189, 209, 124, (179,458,0): 191, 210, 128, (179,459,0): 193, 212, 130, (179,460,0): 195, 214, 132, (179,461,0): 197, 215, 133, (179,462,0): 198, 216, 134, (179,463,0): 198, 215, 137, (179,464,0): 197, 213, 140, (179,465,0): 195, 212, 141, (179,466,0): 195, 210, 141, (179,467,0): 195, 212, 142, (179,468,0): 196, 213, 145, (179,469,0): 191, 210, 144, (179,470,0): 186, 205, 141, (179,471,0): 182, 200, 138, (179,472,0): 181, 199, 141, (179,473,0): 179, 198, 142, (179,474,0): 176, 195, 140, (179,475,0): 171, 191, 138, (179,476,0): 167, 187, 136, (179,477,0): 164, 184, 133, (179,478,0): 161, 181, 132, (179,479,0): 159, 178, 132, (179,480,0): 160, 178, 136, (179,481,0): 163, 181, 139, (179,482,0): 166, 184, 142, (179,483,0): 167, 185, 143, (179,484,0): 164, 182, 142, (179,485,0): 157, 175, 137, (179,486,0): 151, 168, 132, (179,487,0): 147, 164, 128, (179,488,0): 143, 160, 126, (179,489,0): 141, 158, 126, (179,490,0): 138, 154, 125, (179,491,0): 134, 150, 121, (179,492,0): 130, 146, 119, (179,493,0): 126, 142, 115, (179,494,0): 124, 140, 113, (179,495,0): 122, 138, 112, (179,496,0): 126, 138, 116, (179,497,0): 127, 136, 117, (179,498,0): 125, 132, 114, (179,499,0): 122, 129, 111, (179,500,0): 119, 126, 108, (179,501,0): 117, 124, 106, (179,502,0): 118, 122, 105, (179,503,0): 117, 121, 104, (179,504,0): 116, 117, 101, (179,505,0): 115, 116, 100, (179,506,0): 117, 115, 100, (179,507,0): 119, 117, 102, (179,508,0): 118, 116, 101, (179,509,0): 114, 112, 97, (179,510,0): 107, 104, 89, (179,511,0): 103, 97, 85, (179,512,0): 100, 87, 81, (179,513,0): 91, 76, 73, (179,514,0): 83, 68, 63, (179,515,0): 80, 67, 61, (179,516,0): 78, 65, 57, (179,517,0): 78, 65, 57, (179,518,0): 85, 72, 63, (179,519,0): 93, 83, 71, (179,520,0): 101, 91, 79, (179,521,0): 105, 98, 82, (179,522,0): 111, 104, 86, (179,523,0): 115, 108, 90, (179,524,0): 117, 110, 91, (179,525,0): 117, 112, 92, (179,526,0): 119, 114, 92, (179,527,0): 121, 116, 94, (179,528,0): 119, 117, 92, (179,529,0): 118, 118, 92, (179,530,0): 118, 118, 92, (179,531,0): 118, 118, 92, (179,532,0): 116, 118, 94, (179,533,0): 117, 119, 95, (179,534,0): 116, 120, 95, (179,535,0): 116, 120, 95, (179,536,0): 109, 113, 90, (179,537,0): 109, 113, 90, (179,538,0): 108, 113, 91, (179,539,0): 108, 113, 91, (179,540,0): 107, 115, 92, (179,541,0): 109, 117, 94, (179,542,0): 111, 119, 98, (179,543,0): 112, 120, 99, (179,544,0): 111, 118, 100, (179,545,0): 111, 118, 100, (179,546,0): 111, 115, 98, (179,547,0): 107, 114, 96, (179,548,0): 106, 110, 93, (179,549,0): 101, 108, 90, (179,550,0): 101, 105, 90, (179,551,0): 98, 105, 89, (179,552,0): 101, 105, 91, (179,553,0): 100, 106, 92, (179,554,0): 104, 107, 96, (179,555,0): 104, 110, 98, (179,556,0): 107, 110, 99, (179,557,0): 105, 111, 99, (179,558,0): 107, 110, 99, (179,559,0): 103, 111, 100, (179,560,0): 101, 111, 102, (179,561,0): 100, 113, 104, (179,562,0): 102, 115, 106, (179,563,0): 104, 117, 110, (179,564,0): 107, 120, 113, (179,565,0): 108, 123, 118, (179,566,0): 110, 125, 120, (179,567,0): 110, 126, 123, (179,568,0): 109, 125, 124, (179,569,0): 111, 127, 127, (179,570,0): 113, 129, 129, (179,571,0): 114, 132, 134, (179,572,0): 117, 135, 139, (179,573,0): 119, 138, 142, (179,574,0): 122, 140, 144, (179,575,0): 123, 140, 148, (179,576,0): 125, 141, 154, (179,577,0): 125, 141, 156, (179,578,0): 126, 139, 155, (179,579,0): 123, 136, 152, (179,580,0): 119, 131, 145, (179,581,0): 114, 126, 138, (179,582,0): 111, 121, 133, (179,583,0): 108, 118, 128, (179,584,0): 104, 111, 121, (179,585,0): 99, 106, 114, (179,586,0): 96, 100, 109, (179,587,0): 91, 96, 102, (179,588,0): 89, 92, 97, (179,589,0): 85, 88, 93, (179,590,0): 81, 82, 87, (179,591,0): 77, 78, 82, (179,592,0): 72, 70, 73, (179,593,0): 71, 69, 70, (179,594,0): 70, 66, 67, (179,595,0): 68, 64, 65, (179,596,0): 69, 60, 63, (179,597,0): 67, 58, 61, (179,598,0): 68, 57, 61, (179,599,0): 68, 57, 61, (180,0,0): 42, 30, 40, (180,1,0): 42, 30, 40, (180,2,0): 42, 30, 40, (180,3,0): 42, 30, 40, (180,4,0): 42, 30, 40, (180,5,0): 42, 30, 40, (180,6,0): 42, 30, 40, (180,7,0): 42, 30, 40, (180,8,0): 42, 30, 40, (180,9,0): 42, 30, 40, (180,10,0): 41, 29, 39, (180,11,0): 41, 29, 39, (180,12,0): 40, 28, 38, (180,13,0): 40, 28, 38, (180,14,0): 39, 27, 37, (180,15,0): 39, 27, 37, (180,16,0): 41, 29, 39, (180,17,0): 41, 29, 39, (180,18,0): 41, 29, 39, (180,19,0): 41, 29, 39, (180,20,0): 41, 29, 39, (180,21,0): 41, 29, 39, (180,22,0): 41, 29, 39, (180,23,0): 41, 29, 39, (180,24,0): 43, 31, 41, (180,25,0): 43, 31, 41, (180,26,0): 42, 30, 40, (180,27,0): 42, 30, 40, (180,28,0): 43, 31, 41, (180,29,0): 43, 31, 41, (180,30,0): 44, 32, 42, (180,31,0): 46, 33, 43, (180,32,0): 47, 31, 42, (180,33,0): 47, 31, 41, (180,34,0): 48, 30, 42, (180,35,0): 48, 31, 41, (180,36,0): 48, 31, 41, (180,37,0): 48, 31, 41, (180,38,0): 50, 30, 41, (180,39,0): 51, 31, 40, (180,40,0): 52, 31, 40, (180,41,0): 53, 32, 39, (180,42,0): 54, 33, 40, (180,43,0): 56, 35, 40, (180,44,0): 59, 36, 44, (180,45,0): 61, 38, 44, (180,46,0): 62, 39, 45, (180,47,0): 66, 39, 46, (180,48,0): 70, 37, 46, (180,49,0): 73, 35, 46, (180,50,0): 74, 37, 45, (180,51,0): 74, 37, 45, (180,52,0): 77, 37, 46, (180,53,0): 78, 38, 47, (180,54,0): 79, 38, 46, (180,55,0): 81, 38, 47, (180,56,0): 82, 39, 46, (180,57,0): 84, 39, 46, (180,58,0): 85, 38, 46, (180,59,0): 87, 37, 46, (180,60,0): 87, 38, 44, (180,61,0): 89, 38, 45, (180,62,0): 89, 38, 45, (180,63,0): 88, 38, 47, (180,64,0): 79, 36, 45, (180,65,0): 78, 36, 46, (180,66,0): 78, 36, 46, (180,67,0): 79, 37, 47, (180,68,0): 80, 37, 46, (180,69,0): 80, 37, 46, (180,70,0): 80, 37, 46, (180,71,0): 82, 36, 46, (180,72,0): 82, 37, 44, (180,73,0): 83, 36, 44, (180,74,0): 83, 36, 42, (180,75,0): 84, 37, 43, (180,76,0): 84, 37, 43, (180,77,0): 85, 38, 44, (180,78,0): 87, 38, 42, (180,79,0): 87, 38, 42, (180,80,0): 88, 37, 44, (180,81,0): 88, 37, 44, (180,82,0): 87, 38, 44, (180,83,0): 86, 37, 43, (180,84,0): 86, 37, 43, (180,85,0): 85, 36, 42, (180,86,0): 83, 36, 42, (180,87,0): 82, 35, 41, (180,88,0): 81, 36, 41, (180,89,0): 81, 36, 41, (180,90,0): 81, 36, 41, (180,91,0): 80, 35, 40, (180,92,0): 77, 35, 39, (180,93,0): 76, 34, 38, (180,94,0): 76, 34, 38, (180,95,0): 76, 33, 40, (180,96,0): 71, 30, 38, (180,97,0): 71, 29, 39, (180,98,0): 71, 29, 39, (180,99,0): 72, 30, 40, (180,100,0): 72, 30, 40, (180,101,0): 72, 30, 40, (180,102,0): 72, 30, 40, (180,103,0): 71, 31, 40, (180,104,0): 69, 34, 41, (180,105,0): 65, 32, 39, (180,106,0): 60, 31, 36, (180,107,0): 53, 28, 32, (180,108,0): 47, 25, 28, (180,109,0): 40, 21, 23, (180,110,0): 35, 19, 20, (180,111,0): 33, 18, 21, (180,112,0): 29, 16, 23, (180,113,0): 26, 15, 23, (180,114,0): 24, 13, 21, (180,115,0): 23, 12, 20, (180,116,0): 22, 11, 19, (180,117,0): 22, 11, 19, (180,118,0): 23, 12, 20, (180,119,0): 24, 13, 21, (180,120,0): 26, 15, 23, (180,121,0): 26, 15, 23, (180,122,0): 26, 15, 23, (180,123,0): 26, 15, 23, (180,124,0): 26, 15, 23, (180,125,0): 26, 15, 23, (180,126,0): 26, 15, 23, (180,127,0): 26, 15, 23, (180,128,0): 29, 14, 21, (180,129,0): 29, 14, 21, (180,130,0): 29, 14, 21, (180,131,0): 29, 14, 21, (180,132,0): 29, 14, 21, (180,133,0): 29, 14, 21, (180,134,0): 28, 13, 20, (180,135,0): 28, 13, 20, (180,136,0): 30, 15, 22, (180,137,0): 30, 15, 22, (180,138,0): 30, 15, 22, (180,139,0): 30, 15, 22, (180,140,0): 30, 15, 22, (180,141,0): 30, 15, 22, (180,142,0): 30, 15, 22, (180,143,0): 30, 15, 22, (180,144,0): 31, 14, 20, (180,145,0): 31, 15, 18, (180,146,0): 33, 17, 18, (180,147,0): 35, 19, 20, (180,148,0): 38, 19, 21, (180,149,0): 40, 21, 23, (180,150,0): 42, 24, 24, (180,151,0): 42, 24, 24, (180,152,0): 46, 26, 25, (180,153,0): 47, 27, 26, (180,154,0): 50, 29, 28, (180,155,0): 51, 30, 29, (180,156,0): 52, 31, 28, (180,157,0): 51, 30, 27, (180,158,0): 52, 28, 26, (180,159,0): 51, 27, 25, (180,160,0): 47, 26, 23, (180,161,0): 47, 26, 23, (180,162,0): 47, 26, 23, (180,163,0): 47, 26, 23, (180,164,0): 47, 26, 23, (180,165,0): 47, 26, 23, (180,166,0): 47, 26, 23, (180,167,0): 47, 26, 23, (180,168,0): 46, 25, 22, (180,169,0): 45, 24, 21, (180,170,0): 45, 24, 21, (180,171,0): 44, 23, 20, (180,172,0): 44, 23, 20, (180,173,0): 43, 22, 19, (180,174,0): 43, 22, 19, (180,175,0): 43, 22, 19, (180,176,0): 44, 25, 21, (180,177,0): 44, 25, 21, (180,178,0): 44, 25, 21, (180,179,0): 44, 25, 21, (180,180,0): 44, 25, 21, (180,181,0): 44, 25, 21, (180,182,0): 44, 25, 21, (180,183,0): 44, 25, 21, (180,184,0): 44, 25, 21, (180,185,0): 44, 25, 21, (180,186,0): 43, 24, 20, (180,187,0): 43, 24, 20, (180,188,0): 43, 24, 20, (180,189,0): 45, 26, 22, (180,190,0): 46, 27, 23, (180,191,0): 48, 27, 22, (180,192,0): 52, 29, 23, (180,193,0): 53, 28, 21, (180,194,0): 54, 29, 22, (180,195,0): 54, 29, 22, (180,196,0): 54, 29, 22, (180,197,0): 55, 30, 23, (180,198,0): 55, 30, 23, (180,199,0): 55, 30, 23, (180,200,0): 56, 31, 24, (180,201,0): 56, 31, 24, (180,202,0): 55, 30, 23, (180,203,0): 55, 30, 23, (180,204,0): 54, 29, 22, (180,205,0): 54, 29, 22, (180,206,0): 53, 28, 21, (180,207,0): 53, 28, 21, (180,208,0): 51, 26, 22, (180,209,0): 51, 26, 22, (180,210,0): 51, 26, 21, (180,211,0): 50, 25, 20, (180,212,0): 50, 25, 20, (180,213,0): 49, 24, 19, (180,214,0): 49, 24, 17, (180,215,0): 49, 24, 17, (180,216,0): 49, 25, 15, (180,217,0): 49, 25, 15, (180,218,0): 49, 25, 15, (180,219,0): 50, 26, 16, (180,220,0): 50, 26, 14, (180,221,0): 51, 27, 15, (180,222,0): 51, 27, 15, (180,223,0): 51, 27, 15, (180,224,0): 54, 25, 19, (180,225,0): 52, 23, 17, (180,226,0): 50, 21, 15, (180,227,0): 48, 19, 13, (180,228,0): 49, 20, 12, (180,229,0): 51, 22, 14, (180,230,0): 55, 26, 18, (180,231,0): 57, 28, 20, (180,232,0): 58, 30, 19, (180,233,0): 58, 30, 19, (180,234,0): 59, 31, 19, (180,235,0): 59, 31, 19, (180,236,0): 59, 31, 19, (180,237,0): 57, 29, 17, (180,238,0): 56, 28, 14, (180,239,0): 55, 27, 13, (180,240,0): 52, 24, 10, (180,241,0): 52, 24, 10, (180,242,0): 52, 24, 12, (180,243,0): 52, 24, 12, (180,244,0): 51, 25, 12, (180,245,0): 51, 25, 12, (180,246,0): 49, 25, 13, (180,247,0): 49, 25, 13, (180,248,0): 52, 28, 18, (180,249,0): 52, 28, 18, (180,250,0): 51, 29, 18, (180,251,0): 52, 30, 19, (180,252,0): 50, 30, 21, (180,253,0): 50, 30, 21, (180,254,0): 51, 31, 22, (180,255,0): 51, 31, 22, (180,256,0): 47, 26, 21, (180,257,0): 47, 26, 21, (180,258,0): 47, 26, 21, (180,259,0): 48, 27, 22, (180,260,0): 51, 27, 23, (180,261,0): 51, 27, 23, (180,262,0): 53, 28, 24, (180,263,0): 53, 28, 24, (180,264,0): 58, 33, 29, (180,265,0): 58, 33, 29, (180,266,0): 60, 32, 29, (180,267,0): 61, 33, 30, (180,268,0): 62, 32, 30, (180,269,0): 63, 33, 31, (180,270,0): 63, 33, 31, (180,271,0): 63, 33, 31, (180,272,0): 66, 36, 34, (180,273,0): 65, 35, 33, (180,274,0): 65, 36, 32, (180,275,0): 65, 36, 32, (180,276,0): 66, 37, 31, (180,277,0): 68, 39, 33, (180,278,0): 70, 41, 33, (180,279,0): 72, 44, 33, (180,280,0): 74, 46, 34, (180,281,0): 74, 46, 34, (180,282,0): 75, 47, 33, (180,283,0): 75, 47, 33, (180,284,0): 75, 48, 31, (180,285,0): 76, 49, 30, (180,286,0): 76, 49, 30, (180,287,0): 75, 50, 30, (180,288,0): 77, 51, 34, (180,289,0): 74, 51, 33, (180,290,0): 73, 50, 34, (180,291,0): 73, 50, 34, (180,292,0): 72, 50, 36, (180,293,0): 73, 51, 37, (180,294,0): 74, 52, 39, (180,295,0): 75, 53, 40, (180,296,0): 74, 55, 40, (180,297,0): 75, 56, 39, (180,298,0): 76, 59, 39, (180,299,0): 79, 63, 40, (180,300,0): 82, 66, 41, (180,301,0): 84, 68, 42, (180,302,0): 85, 71, 42, (180,303,0): 86, 72, 43, (180,304,0): 94, 76, 52, (180,305,0): 94, 76, 52, (180,306,0): 94, 76, 52, (180,307,0): 94, 77, 51, (180,308,0): 96, 79, 51, (180,309,0): 98, 81, 51, (180,310,0): 103, 84, 52, (180,311,0): 104, 85, 52, (180,312,0): 107, 87, 52, (180,313,0): 111, 92, 52, (180,314,0): 117, 95, 54, (180,315,0): 119, 98, 55, (180,316,0): 120, 99, 56, (180,317,0): 122, 101, 56, (180,318,0): 126, 105, 60, (180,319,0): 130, 108, 59, (180,320,0): 142, 121, 66, (180,321,0): 146, 124, 66, (180,322,0): 148, 126, 66, (180,323,0): 147, 126, 63, (180,324,0): 145, 124, 59, (180,325,0): 149, 129, 60, (180,326,0): 158, 138, 67, (180,327,0): 166, 146, 73, (180,328,0): 174, 154, 81, (180,329,0): 177, 158, 82, (180,330,0): 180, 161, 85, (180,331,0): 181, 161, 88, (180,332,0): 179, 159, 86, (180,333,0): 179, 159, 88, (180,334,0): 180, 160, 89, (180,335,0): 184, 161, 93, (180,336,0): 193, 166, 99, (180,337,0): 196, 167, 101, (180,338,0): 197, 170, 103, (180,339,0): 197, 170, 103, (180,340,0): 194, 167, 100, (180,341,0): 188, 163, 96, (180,342,0): 183, 158, 91, (180,343,0): 179, 156, 88, (180,344,0): 178, 155, 87, (180,345,0): 181, 158, 90, (180,346,0): 185, 162, 94, (180,347,0): 186, 166, 97, (180,348,0): 188, 168, 99, (180,349,0): 187, 168, 99, (180,350,0): 186, 166, 97, (180,351,0): 184, 166, 94, (180,352,0): 183, 164, 88, (180,353,0): 183, 166, 88, (180,354,0): 184, 166, 90, (180,355,0): 185, 167, 91, (180,356,0): 186, 168, 94, (180,357,0): 184, 167, 95, (180,358,0): 184, 167, 97, (180,359,0): 181, 167, 96, (180,360,0): 180, 166, 95, (180,361,0): 178, 164, 91, (180,362,0): 177, 163, 90, (180,363,0): 178, 166, 90, (180,364,0): 183, 172, 93, (180,365,0): 190, 182, 101, (180,366,0): 201, 190, 110, (180,367,0): 207, 196, 114, (180,368,0): 209, 197, 111, (180,369,0): 212, 197, 112, (180,370,0): 212, 197, 114, (180,371,0): 210, 195, 114, (180,372,0): 205, 187, 111, (180,373,0): 197, 179, 105, (180,374,0): 189, 171, 99, (180,375,0): 182, 165, 95, (180,376,0): 181, 166, 97, (180,377,0): 179, 166, 96, (180,378,0): 176, 166, 97, (180,379,0): 176, 168, 96, (180,380,0): 174, 170, 97, (180,381,0): 175, 173, 99, (180,382,0): 174, 174, 100, (180,383,0): 175, 176, 100, (180,384,0): 178, 176, 101, (180,385,0): 178, 174, 100, (180,386,0): 179, 177, 102, (180,387,0): 183, 181, 104, (180,388,0): 186, 187, 107, (180,389,0): 189, 191, 108, (180,390,0): 188, 192, 105, (180,391,0): 186, 191, 101, (180,392,0): 192, 195, 104, (180,393,0): 193, 197, 103, (180,394,0): 198, 197, 104, (180,395,0): 204, 201, 106, (180,396,0): 209, 204, 110, (180,397,0): 215, 209, 113, (180,398,0): 221, 212, 117, (180,399,0): 221, 215, 117, (180,400,0): 220, 218, 118, (180,401,0): 221, 221, 121, (180,402,0): 224, 224, 124, (180,403,0): 228, 228, 128, (180,404,0): 231, 231, 131, (180,405,0): 233, 234, 132, (180,406,0): 235, 236, 134, (180,407,0): 235, 236, 132, (180,408,0): 233, 234, 130, (180,409,0): 233, 234, 130, (180,410,0): 232, 233, 129, (180,411,0): 231, 233, 126, (180,412,0): 230, 232, 125, (180,413,0): 229, 231, 124, (180,414,0): 228, 230, 123, (180,415,0): 227, 230, 123, (180,416,0): 229, 235, 127, (180,417,0): 227, 233, 125, (180,418,0): 228, 232, 122, (180,419,0): 228, 232, 122, (180,420,0): 229, 233, 122, (180,421,0): 232, 236, 125, (180,422,0): 235, 237, 127, (180,423,0): 237, 240, 127, (180,424,0): 236, 236, 124, (180,425,0): 234, 234, 120, (180,426,0): 232, 233, 116, (180,427,0): 234, 235, 118, (180,428,0): 241, 240, 124, (180,429,0): 245, 244, 128, (180,430,0): 247, 246, 128, (180,431,0): 248, 247, 129, (180,432,0): 246, 248, 125, (180,433,0): 247, 251, 128, (180,434,0): 248, 250, 127, (180,435,0): 239, 243, 120, (180,436,0): 236, 240, 119, (180,437,0): 240, 244, 124, (180,438,0): 240, 243, 126, (180,439,0): 235, 239, 126, (180,440,0): 225, 229, 119, (180,441,0): 221, 227, 121, (180,442,0): 219, 224, 124, (180,443,0): 216, 222, 126, (180,444,0): 210, 215, 123, (180,445,0): 199, 203, 116, (180,446,0): 185, 189, 105, (180,447,0): 176, 177, 97, (180,448,0): 168, 169, 91, (180,449,0): 165, 166, 90, (180,450,0): 162, 165, 88, (180,451,0): 161, 165, 88, (180,452,0): 164, 171, 94, (180,453,0): 169, 180, 102, (180,454,0): 176, 189, 110, (180,455,0): 178, 195, 115, (180,456,0): 176, 195, 116, (180,457,0): 178, 197, 118, (180,458,0): 180, 201, 124, (180,459,0): 184, 205, 128, (180,460,0): 188, 209, 132, (180,461,0): 192, 210, 134, (180,462,0): 194, 212, 136, (180,463,0): 194, 212, 138, (180,464,0): 191, 208, 138, (180,465,0): 188, 208, 137, (180,466,0): 190, 207, 139, (180,467,0): 190, 209, 143, (180,468,0): 192, 211, 145, (180,469,0): 190, 211, 146, (180,470,0): 185, 205, 142, (180,471,0): 182, 202, 141, (180,472,0): 179, 198, 142, (180,473,0): 176, 197, 141, (180,474,0): 172, 192, 139, (180,475,0): 166, 189, 137, (180,476,0): 161, 184, 132, (180,477,0): 158, 180, 131, (180,478,0): 156, 178, 131, (180,479,0): 155, 177, 130, (180,480,0): 155, 176, 133, (180,481,0): 158, 179, 138, (180,482,0): 161, 182, 141, (180,483,0): 163, 184, 143, (180,484,0): 162, 183, 144, (180,485,0): 157, 178, 139, (180,486,0): 151, 171, 134, (180,487,0): 146, 166, 131, (180,488,0): 142, 161, 129, (180,489,0): 141, 160, 128, (180,490,0): 138, 157, 127, (180,491,0): 135, 154, 126, (180,492,0): 131, 149, 123, (180,493,0): 128, 146, 120, (180,494,0): 125, 143, 117, (180,495,0): 125, 141, 115, (180,496,0): 128, 140, 118, (180,497,0): 126, 138, 118, (180,498,0): 124, 133, 114, (180,499,0): 121, 130, 111, (180,500,0): 119, 126, 108, (180,501,0): 117, 124, 106, (180,502,0): 119, 123, 106, (180,503,0): 119, 123, 106, (180,504,0): 117, 118, 102, (180,505,0): 117, 118, 102, (180,506,0): 120, 118, 103, (180,507,0): 122, 120, 105, (180,508,0): 124, 121, 106, (180,509,0): 120, 117, 102, (180,510,0): 115, 109, 95, (180,511,0): 111, 103, 92, (180,512,0): 106, 91, 86, (180,513,0): 95, 80, 77, (180,514,0): 86, 71, 66, (180,515,0): 83, 68, 63, (180,516,0): 81, 66, 59, (180,517,0): 80, 67, 59, (180,518,0): 85, 72, 63, (180,519,0): 91, 81, 69, (180,520,0): 98, 88, 76, (180,521,0): 103, 94, 79, (180,522,0): 110, 101, 84, (180,523,0): 113, 106, 88, (180,524,0): 115, 108, 89, (180,525,0): 116, 109, 90, (180,526,0): 119, 113, 91, (180,527,0): 120, 115, 93, (180,528,0): 119, 117, 92, (180,529,0): 118, 118, 92, (180,530,0): 119, 119, 95, (180,531,0): 119, 119, 95, (180,532,0): 117, 119, 95, (180,533,0): 117, 119, 95, (180,534,0): 116, 120, 97, (180,535,0): 117, 121, 98, (180,536,0): 111, 114, 93, (180,537,0): 111, 114, 93, (180,538,0): 109, 114, 92, (180,539,0): 109, 114, 92, (180,540,0): 109, 117, 96, (180,541,0): 110, 118, 97, (180,542,0): 112, 120, 99, (180,543,0): 113, 121, 100, (180,544,0): 113, 120, 102, (180,545,0): 111, 120, 101, (180,546,0): 110, 117, 99, (180,547,0): 106, 115, 96, (180,548,0): 104, 111, 95, (180,549,0): 101, 110, 93, (180,550,0): 100, 106, 92, (180,551,0): 99, 107, 92, (180,552,0): 101, 107, 93, (180,553,0): 101, 109, 94, (180,554,0): 104, 110, 98, (180,555,0): 104, 112, 99, (180,556,0): 106, 112, 102, (180,557,0): 106, 114, 103, (180,558,0): 106, 112, 102, (180,559,0): 103, 113, 104, (180,560,0): 101, 112, 104, (180,561,0): 99, 114, 107, (180,562,0): 101, 116, 109, (180,563,0): 104, 119, 114, (180,564,0): 107, 122, 117, (180,565,0): 108, 124, 121, (180,566,0): 110, 126, 125, (180,567,0): 109, 127, 127, (180,568,0): 110, 128, 128, (180,569,0): 112, 130, 132, (180,570,0): 114, 132, 136, (180,571,0): 115, 134, 138, (180,572,0): 118, 137, 143, (180,573,0): 120, 141, 146, (180,574,0): 123, 142, 148, (180,575,0): 124, 143, 150, (180,576,0): 127, 143, 156, (180,577,0): 127, 143, 158, (180,578,0): 128, 141, 157, (180,579,0): 126, 139, 155, (180,580,0): 123, 135, 149, (180,581,0): 117, 129, 141, (180,582,0): 113, 123, 135, (180,583,0): 110, 120, 130, (180,584,0): 105, 112, 122, (180,585,0): 101, 108, 116, (180,586,0): 97, 101, 110, (180,587,0): 93, 98, 104, (180,588,0): 91, 94, 99, (180,589,0): 87, 90, 95, (180,590,0): 84, 85, 90, (180,591,0): 80, 81, 85, (180,592,0): 74, 72, 75, (180,593,0): 72, 70, 73, (180,594,0): 71, 66, 70, (180,595,0): 68, 63, 67, (180,596,0): 69, 60, 65, (180,597,0): 68, 59, 64, (180,598,0): 68, 57, 63, (180,599,0): 68, 57, 63, (181,0,0): 42, 30, 40, (181,1,0): 42, 30, 40, (181,2,0): 42, 30, 40, (181,3,0): 42, 30, 40, (181,4,0): 42, 30, 40, (181,5,0): 42, 30, 40, (181,6,0): 42, 30, 40, (181,7,0): 42, 30, 40, (181,8,0): 42, 30, 40, (181,9,0): 42, 30, 40, (181,10,0): 41, 29, 39, (181,11,0): 41, 29, 39, (181,12,0): 40, 28, 38, (181,13,0): 40, 28, 38, (181,14,0): 39, 27, 37, (181,15,0): 39, 27, 37, (181,16,0): 41, 29, 39, (181,17,0): 41, 29, 39, (181,18,0): 41, 29, 39, (181,19,0): 41, 29, 39, (181,20,0): 41, 29, 39, (181,21,0): 41, 29, 39, (181,22,0): 41, 29, 39, (181,23,0): 41, 29, 39, (181,24,0): 43, 31, 41, (181,25,0): 43, 31, 41, (181,26,0): 43, 31, 41, (181,27,0): 43, 31, 41, (181,28,0): 43, 31, 41, (181,29,0): 43, 31, 41, (181,30,0): 43, 31, 41, (181,31,0): 43, 31, 41, (181,32,0): 43, 30, 40, (181,33,0): 43, 30, 40, (181,34,0): 43, 29, 42, (181,35,0): 46, 30, 41, (181,36,0): 46, 30, 41, (181,37,0): 47, 31, 42, (181,38,0): 47, 31, 42, (181,39,0): 48, 31, 41, (181,40,0): 50, 33, 43, (181,41,0): 52, 32, 41, (181,42,0): 53, 33, 42, (181,43,0): 55, 36, 42, (181,44,0): 56, 36, 45, (181,45,0): 58, 37, 44, (181,46,0): 59, 38, 45, (181,47,0): 63, 37, 46, (181,48,0): 69, 36, 45, (181,49,0): 72, 34, 45, (181,50,0): 73, 36, 44, (181,51,0): 74, 37, 45, (181,52,0): 77, 37, 46, (181,53,0): 79, 37, 47, (181,54,0): 80, 37, 46, (181,55,0): 81, 38, 47, (181,56,0): 84, 39, 46, (181,57,0): 85, 38, 46, (181,58,0): 87, 37, 46, (181,59,0): 88, 38, 47, (181,60,0): 89, 38, 45, (181,61,0): 89, 38, 45, (181,62,0): 90, 39, 46, (181,63,0): 89, 39, 48, (181,64,0): 81, 35, 45, (181,65,0): 79, 36, 46, (181,66,0): 82, 36, 47, (181,67,0): 80, 37, 47, (181,68,0): 83, 37, 47, (181,69,0): 83, 37, 47, (181,70,0): 84, 38, 48, (181,71,0): 85, 38, 46, (181,72,0): 84, 37, 45, (181,73,0): 86, 37, 43, (181,74,0): 86, 37, 43, (181,75,0): 87, 38, 44, (181,76,0): 88, 37, 44, (181,77,0): 88, 39, 45, (181,78,0): 89, 38, 43, (181,79,0): 89, 38, 43, (181,80,0): 89, 38, 45, (181,81,0): 88, 37, 44, (181,82,0): 87, 38, 44, (181,83,0): 87, 38, 44, (181,84,0): 86, 37, 43, (181,85,0): 85, 36, 42, (181,86,0): 83, 36, 42, (181,87,0): 83, 36, 42, (181,88,0): 82, 37, 42, (181,89,0): 82, 37, 42, (181,90,0): 81, 36, 41, (181,91,0): 80, 35, 40, (181,92,0): 77, 35, 39, (181,93,0): 76, 34, 38, (181,94,0): 75, 33, 37, (181,95,0): 75, 32, 39, (181,96,0): 72, 31, 39, (181,97,0): 72, 30, 40, (181,98,0): 72, 30, 40, (181,99,0): 71, 29, 39, (181,100,0): 71, 29, 39, (181,101,0): 70, 30, 39, (181,102,0): 70, 30, 39, (181,103,0): 68, 31, 39, (181,104,0): 65, 32, 39, (181,105,0): 63, 32, 38, (181,106,0): 59, 30, 35, (181,107,0): 53, 28, 32, (181,108,0): 47, 25, 28, (181,109,0): 43, 23, 25, (181,110,0): 39, 20, 22, (181,111,0): 36, 20, 23, (181,112,0): 30, 17, 24, (181,113,0): 27, 16, 24, (181,114,0): 24, 13, 21, (181,115,0): 22, 11, 19, (181,116,0): 21, 10, 18, (181,117,0): 22, 11, 19, (181,118,0): 23, 12, 20, (181,119,0): 24, 13, 21, (181,120,0): 25, 14, 22, (181,121,0): 25, 14, 22, (181,122,0): 25, 14, 22, (181,123,0): 25, 14, 22, (181,124,0): 25, 14, 22, (181,125,0): 25, 14, 22, (181,126,0): 25, 14, 22, (181,127,0): 26, 13, 22, (181,128,0): 30, 15, 22, (181,129,0): 30, 15, 22, (181,130,0): 30, 15, 22, (181,131,0): 30, 15, 22, (181,132,0): 29, 14, 21, (181,133,0): 29, 14, 21, (181,134,0): 28, 13, 20, (181,135,0): 28, 13, 20, (181,136,0): 30, 15, 22, (181,137,0): 30, 15, 22, (181,138,0): 30, 15, 22, (181,139,0): 30, 15, 22, (181,140,0): 30, 15, 22, (181,141,0): 30, 15, 22, (181,142,0): 30, 15, 22, (181,143,0): 30, 15, 20, (181,144,0): 32, 16, 19, (181,145,0): 32, 16, 19, (181,146,0): 33, 17, 18, (181,147,0): 35, 19, 20, (181,148,0): 38, 19, 21, (181,149,0): 40, 21, 23, (181,150,0): 41, 23, 23, (181,151,0): 41, 23, 23, (181,152,0): 44, 24, 23, (181,153,0): 46, 26, 25, (181,154,0): 49, 28, 27, (181,155,0): 51, 30, 29, (181,156,0): 52, 31, 28, (181,157,0): 51, 30, 27, (181,158,0): 51, 27, 25, (181,159,0): 50, 26, 24, (181,160,0): 47, 26, 23, (181,161,0): 47, 26, 23, (181,162,0): 47, 26, 23, (181,163,0): 47, 26, 23, (181,164,0): 47, 26, 23, (181,165,0): 47, 26, 23, (181,166,0): 47, 26, 23, (181,167,0): 47, 26, 23, (181,168,0): 46, 25, 22, (181,169,0): 46, 25, 22, (181,170,0): 46, 25, 22, (181,171,0): 45, 24, 21, (181,172,0): 45, 24, 21, (181,173,0): 44, 23, 20, (181,174,0): 44, 23, 20, (181,175,0): 44, 23, 20, (181,176,0): 44, 25, 21, (181,177,0): 44, 25, 21, (181,178,0): 44, 25, 21, (181,179,0): 44, 25, 21, (181,180,0): 44, 25, 21, (181,181,0): 44, 25, 21, (181,182,0): 44, 25, 21, (181,183,0): 44, 25, 21, (181,184,0): 44, 25, 21, (181,185,0): 44, 25, 21, (181,186,0): 43, 24, 20, (181,187,0): 43, 24, 20, (181,188,0): 43, 24, 20, (181,189,0): 45, 26, 22, (181,190,0): 46, 27, 23, (181,191,0): 48, 27, 22, (181,192,0): 53, 30, 24, (181,193,0): 54, 29, 22, (181,194,0): 54, 29, 22, (181,195,0): 54, 29, 22, (181,196,0): 54, 29, 22, (181,197,0): 54, 29, 22, (181,198,0): 54, 29, 22, (181,199,0): 54, 29, 22, (181,200,0): 56, 31, 24, (181,201,0): 56, 31, 24, (181,202,0): 55, 30, 23, (181,203,0): 55, 30, 23, (181,204,0): 54, 29, 22, (181,205,0): 54, 29, 22, (181,206,0): 53, 28, 21, (181,207,0): 53, 28, 23, (181,208,0): 51, 26, 22, (181,209,0): 51, 26, 22, (181,210,0): 51, 26, 21, (181,211,0): 50, 25, 20, (181,212,0): 50, 25, 20, (181,213,0): 49, 24, 19, (181,214,0): 49, 24, 17, (181,215,0): 49, 24, 17, (181,216,0): 49, 25, 15, (181,217,0): 49, 25, 15, (181,218,0): 49, 25, 15, (181,219,0): 50, 26, 16, (181,220,0): 50, 26, 14, (181,221,0): 51, 27, 15, (181,222,0): 51, 27, 15, (181,223,0): 51, 27, 15, (181,224,0): 53, 24, 18, (181,225,0): 52, 23, 17, (181,226,0): 50, 21, 15, (181,227,0): 49, 20, 14, (181,228,0): 50, 21, 13, (181,229,0): 52, 23, 15, (181,230,0): 54, 25, 17, (181,231,0): 55, 26, 18, (181,232,0): 58, 30, 19, (181,233,0): 58, 30, 19, (181,234,0): 59, 31, 19, (181,235,0): 59, 31, 19, (181,236,0): 59, 31, 19, (181,237,0): 57, 29, 17, (181,238,0): 56, 28, 14, (181,239,0): 55, 27, 13, (181,240,0): 54, 26, 12, (181,241,0): 54, 26, 12, (181,242,0): 54, 26, 14, (181,243,0): 54, 26, 14, (181,244,0): 53, 27, 14, (181,245,0): 53, 27, 14, (181,246,0): 51, 27, 15, (181,247,0): 51, 27, 15, (181,248,0): 52, 28, 18, (181,249,0): 52, 28, 18, (181,250,0): 51, 29, 18, (181,251,0): 51, 29, 18, (181,252,0): 49, 29, 20, (181,253,0): 49, 29, 20, (181,254,0): 49, 29, 20, (181,255,0): 49, 29, 20, (181,256,0): 46, 25, 20, (181,257,0): 46, 25, 20, (181,258,0): 47, 26, 21, (181,259,0): 48, 27, 22, (181,260,0): 51, 27, 23, (181,261,0): 52, 28, 24, (181,262,0): 54, 29, 25, (181,263,0): 54, 29, 25, (181,264,0): 58, 33, 29, (181,265,0): 58, 33, 29, (181,266,0): 60, 32, 29, (181,267,0): 61, 33, 30, (181,268,0): 62, 32, 30, (181,269,0): 63, 33, 31, (181,270,0): 63, 33, 31, (181,271,0): 63, 33, 31, (181,272,0): 67, 37, 35, (181,273,0): 66, 37, 33, (181,274,0): 65, 36, 32, (181,275,0): 65, 36, 30, (181,276,0): 66, 37, 31, (181,277,0): 69, 40, 32, (181,278,0): 72, 44, 33, (181,279,0): 75, 47, 36, (181,280,0): 77, 49, 37, (181,281,0): 77, 49, 35, (181,282,0): 77, 49, 35, (181,283,0): 77, 50, 33, (181,284,0): 77, 50, 31, (181,285,0): 77, 50, 31, (181,286,0): 77, 50, 31, (181,287,0): 76, 51, 31, (181,288,0): 78, 52, 35, (181,289,0): 75, 52, 34, (181,290,0): 74, 51, 35, (181,291,0): 73, 50, 34, (181,292,0): 71, 49, 35, (181,293,0): 72, 50, 36, (181,294,0): 73, 51, 38, (181,295,0): 73, 51, 38, (181,296,0): 74, 55, 40, (181,297,0): 75, 56, 41, (181,298,0): 76, 59, 41, (181,299,0): 78, 61, 41, (181,300,0): 81, 65, 42, (181,301,0): 84, 68, 43, (181,302,0): 85, 71, 44, (181,303,0): 86, 72, 45, (181,304,0): 93, 77, 52, (181,305,0): 94, 76, 52, (181,306,0): 94, 77, 51, (181,307,0): 94, 77, 51, (181,308,0): 96, 79, 51, (181,309,0): 98, 81, 51, (181,310,0): 103, 84, 54, (181,311,0): 104, 85, 52, (181,312,0): 106, 86, 51, (181,313,0): 110, 90, 53, (181,314,0): 117, 95, 56, (181,315,0): 120, 98, 57, (181,316,0): 121, 99, 58, (181,317,0): 123, 102, 59, (181,318,0): 126, 105, 62, (181,319,0): 129, 107, 58, (181,320,0): 142, 119, 65, (181,321,0): 145, 123, 63, (181,322,0): 147, 126, 63, (181,323,0): 145, 124, 59, (181,324,0): 144, 124, 55, (181,325,0): 149, 129, 58, (181,326,0): 159, 139, 66, (181,327,0): 168, 149, 73, (181,328,0): 176, 157, 81, (181,329,0): 178, 159, 83, (181,330,0): 180, 161, 85, (181,331,0): 180, 161, 85, (181,332,0): 178, 158, 87, (181,333,0): 177, 157, 86, (181,334,0): 179, 159, 90, (181,335,0): 182, 162, 93, (181,336,0): 185, 162, 94, (181,337,0): 189, 164, 97, (181,338,0): 193, 170, 102, (181,339,0): 193, 170, 102, (181,340,0): 190, 167, 99, (181,341,0): 185, 162, 94, (181,342,0): 179, 159, 90, (181,343,0): 178, 158, 89, (181,344,0): 177, 158, 89, (181,345,0): 178, 159, 90, (181,346,0): 181, 162, 93, (181,347,0): 183, 164, 95, (181,348,0): 184, 165, 96, (181,349,0): 182, 165, 95, (181,350,0): 182, 163, 94, (181,351,0): 180, 163, 91, (181,352,0): 184, 166, 90, (181,353,0): 184, 168, 90, (181,354,0): 184, 168, 91, (181,355,0): 184, 168, 93, (181,356,0): 184, 167, 95, (181,357,0): 180, 166, 93, (181,358,0): 179, 165, 94, (181,359,0): 177, 165, 93, (181,360,0): 178, 166, 94, (181,361,0): 176, 164, 92, (181,362,0): 175, 163, 91, (181,363,0): 175, 166, 91, (181,364,0): 179, 170, 93, (181,365,0): 186, 179, 99, (181,366,0): 195, 186, 107, (181,367,0): 200, 192, 111, (181,368,0): 200, 190, 105, (181,369,0): 201, 191, 106, (181,370,0): 203, 192, 110, (181,371,0): 202, 191, 111, (181,372,0): 199, 185, 110, (181,373,0): 192, 178, 105, (181,374,0): 185, 171, 100, (181,375,0): 180, 165, 96, (181,376,0): 182, 169, 101, (181,377,0): 178, 168, 99, (181,378,0): 176, 167, 98, (181,379,0): 175, 168, 98, (181,380,0): 175, 172, 101, (181,381,0): 175, 175, 101, (181,382,0): 174, 176, 101, (181,383,0): 174, 176, 101, (181,384,0): 178, 176, 101, (181,385,0): 180, 178, 101, (181,386,0): 184, 182, 105, (181,387,0): 186, 187, 107, (181,388,0): 189, 191, 108, (181,389,0): 191, 195, 108, (181,390,0): 194, 199, 109, (181,391,0): 195, 200, 106, (181,392,0): 200, 204, 110, (181,393,0): 200, 204, 109, (181,394,0): 202, 204, 107, (181,395,0): 205, 205, 107, (181,396,0): 210, 207, 110, (181,397,0): 215, 211, 112, (181,398,0): 220, 214, 116, (181,399,0): 222, 216, 118, (181,400,0): 221, 219, 118, (181,401,0): 221, 222, 120, (181,402,0): 225, 226, 124, (181,403,0): 229, 230, 126, (181,404,0): 232, 233, 129, (181,405,0): 234, 235, 131, (181,406,0): 235, 236, 132, (181,407,0): 236, 238, 131, (181,408,0): 236, 238, 131, (181,409,0): 236, 238, 129, (181,410,0): 235, 237, 128, (181,411,0): 234, 236, 127, (181,412,0): 234, 236, 127, (181,413,0): 233, 235, 125, (181,414,0): 232, 234, 124, (181,415,0): 232, 234, 125, (181,416,0): 228, 232, 122, (181,417,0): 226, 232, 124, (181,418,0): 227, 231, 121, (181,419,0): 227, 231, 121, (181,420,0): 228, 232, 121, (181,421,0): 231, 235, 122, (181,422,0): 234, 237, 124, (181,423,0): 236, 239, 124, (181,424,0): 239, 239, 125, (181,425,0): 237, 238, 121, (181,426,0): 237, 238, 119, (181,427,0): 240, 241, 121, (181,428,0): 246, 246, 126, (181,429,0): 250, 250, 130, (181,430,0): 252, 252, 130, (181,431,0): 250, 252, 129, (181,432,0): 248, 253, 127, (181,433,0): 249, 255, 129, (181,434,0): 246, 251, 125, (181,435,0): 239, 245, 119, (181,436,0): 238, 244, 120, (181,437,0): 242, 248, 126, (181,438,0): 241, 246, 126, (181,439,0): 234, 241, 125, (181,440,0): 220, 226, 116, (181,441,0): 216, 223, 117, (181,442,0): 214, 220, 120, (181,443,0): 212, 219, 123, (181,444,0): 210, 215, 125, (181,445,0): 201, 207, 121, (181,446,0): 189, 194, 112, (181,447,0): 180, 183, 104, (181,448,0): 170, 170, 96, (181,449,0): 167, 167, 95, (181,450,0): 163, 165, 92, (181,451,0): 162, 166, 92, (181,452,0): 163, 169, 97, (181,453,0): 166, 174, 101, (181,454,0): 166, 178, 104, (181,455,0): 165, 179, 104, (181,456,0): 166, 182, 109, (181,457,0): 168, 186, 112, (181,458,0): 171, 191, 119, (181,459,0): 176, 196, 124, (181,460,0): 182, 202, 130, (181,461,0): 186, 206, 135, (181,462,0): 188, 208, 137, (181,463,0): 189, 209, 140, (181,464,0): 185, 204, 138, (181,465,0): 184, 203, 137, (181,466,0): 185, 204, 140, (181,467,0): 187, 208, 143, (181,468,0): 189, 209, 146, (181,469,0): 189, 209, 146, (181,470,0): 185, 205, 144, (181,471,0): 181, 202, 143, (181,472,0): 176, 197, 141, (181,473,0): 171, 194, 140, (181,474,0): 166, 189, 137, (181,475,0): 160, 182, 133, (181,476,0): 156, 178, 129, (181,477,0): 153, 177, 129, (181,478,0): 153, 177, 129, (181,479,0): 153, 176, 130, (181,480,0): 154, 177, 135, (181,481,0): 155, 178, 136, (181,482,0): 158, 179, 138, (181,483,0): 160, 182, 143, (181,484,0): 162, 183, 144, (181,485,0): 158, 180, 142, (181,486,0): 153, 173, 138, (181,487,0): 147, 168, 135, (181,488,0): 143, 162, 130, (181,489,0): 141, 162, 131, (181,490,0): 141, 160, 132, (181,491,0): 137, 157, 129, (181,492,0): 135, 153, 127, (181,493,0): 130, 150, 123, (181,494,0): 128, 146, 120, (181,495,0): 126, 144, 120, (181,496,0): 127, 140, 120, (181,497,0): 126, 138, 118, (181,498,0): 124, 133, 114, (181,499,0): 120, 129, 110, (181,500,0): 118, 125, 107, (181,501,0): 117, 124, 106, (181,502,0): 119, 123, 106, (181,503,0): 119, 123, 106, (181,504,0): 118, 119, 103, (181,505,0): 117, 118, 102, (181,506,0): 120, 118, 103, (181,507,0): 122, 120, 105, (181,508,0): 125, 122, 107, (181,509,0): 123, 120, 105, (181,510,0): 120, 114, 100, (181,511,0): 116, 108, 97, (181,512,0): 112, 97, 92, (181,513,0): 101, 83, 81, (181,514,0): 88, 73, 68, (181,515,0): 85, 70, 65, (181,516,0): 83, 68, 61, (181,517,0): 82, 67, 60, (181,518,0): 85, 72, 63, (181,519,0): 92, 80, 68, (181,520,0): 98, 86, 74, (181,521,0): 101, 92, 77, (181,522,0): 108, 99, 82, (181,523,0): 113, 104, 87, (181,524,0): 114, 107, 88, (181,525,0): 115, 108, 89, (181,526,0): 118, 112, 90, (181,527,0): 119, 114, 92, (181,528,0): 119, 117, 92, (181,529,0): 118, 118, 92, (181,530,0): 118, 118, 94, (181,531,0): 118, 118, 94, (181,532,0): 116, 118, 94, (181,533,0): 116, 118, 94, (181,534,0): 114, 118, 95, (181,535,0): 114, 118, 95, (181,536,0): 112, 115, 94, (181,537,0): 112, 115, 94, (181,538,0): 111, 116, 94, (181,539,0): 111, 116, 94, (181,540,0): 110, 118, 97, (181,541,0): 112, 120, 99, (181,542,0): 114, 122, 101, (181,543,0): 115, 123, 102, (181,544,0): 114, 123, 104, (181,545,0): 110, 122, 102, (181,546,0): 110, 119, 100, (181,547,0): 104, 116, 96, (181,548,0): 104, 113, 96, (181,549,0): 100, 111, 94, (181,550,0): 101, 109, 94, (181,551,0): 98, 109, 93, (181,552,0): 100, 108, 93, (181,553,0): 100, 111, 95, (181,554,0): 103, 111, 98, (181,555,0): 103, 114, 100, (181,556,0): 106, 114, 103, (181,557,0): 105, 115, 104, (181,558,0): 106, 114, 103, (181,559,0): 104, 114, 105, (181,560,0): 102, 115, 108, (181,561,0): 101, 116, 113, (181,562,0): 103, 118, 115, (181,563,0): 104, 120, 117, (181,564,0): 107, 123, 122, (181,565,0): 108, 127, 125, (181,566,0): 110, 128, 128, (181,567,0): 111, 129, 131, (181,568,0): 114, 132, 134, (181,569,0): 114, 133, 137, (181,570,0): 116, 135, 141, (181,571,0): 117, 137, 144, (181,572,0): 119, 139, 146, (181,573,0): 121, 141, 150, (181,574,0): 122, 142, 151, (181,575,0): 123, 143, 152, (181,576,0): 126, 144, 156, (181,577,0): 127, 143, 158, (181,578,0): 129, 142, 158, (181,579,0): 127, 140, 156, (181,580,0): 124, 136, 150, (181,581,0): 117, 129, 141, (181,582,0): 113, 123, 135, (181,583,0): 109, 119, 129, (181,584,0): 106, 113, 123, (181,585,0): 102, 109, 117, (181,586,0): 98, 102, 111, (181,587,0): 95, 100, 106, (181,588,0): 93, 96, 101, (181,589,0): 89, 92, 97, (181,590,0): 86, 87, 92, (181,591,0): 82, 83, 87, (181,592,0): 75, 74, 79, (181,593,0): 74, 72, 75, (181,594,0): 73, 68, 72, (181,595,0): 70, 65, 69, (181,596,0): 68, 62, 66, (181,597,0): 68, 59, 64, (181,598,0): 69, 58, 64, (181,599,0): 68, 57, 63, (182,0,0): 42, 30, 40, (182,1,0): 42, 30, 40, (182,2,0): 42, 30, 40, (182,3,0): 42, 30, 40, (182,4,0): 42, 30, 40, (182,5,0): 42, 30, 40, (182,6,0): 42, 30, 40, (182,7,0): 42, 30, 40, (182,8,0): 42, 30, 40, (182,9,0): 42, 30, 40, (182,10,0): 41, 29, 39, (182,11,0): 41, 29, 39, (182,12,0): 40, 28, 38, (182,13,0): 40, 28, 38, (182,14,0): 39, 27, 37, (182,15,0): 39, 27, 37, (182,16,0): 41, 29, 39, (182,17,0): 41, 29, 39, (182,18,0): 41, 29, 39, (182,19,0): 41, 29, 39, (182,20,0): 41, 29, 39, (182,21,0): 41, 29, 39, (182,22,0): 41, 29, 39, (182,23,0): 41, 29, 39, (182,24,0): 42, 30, 40, (182,25,0): 43, 31, 41, (182,26,0): 43, 31, 41, (182,27,0): 43, 31, 41, (182,28,0): 43, 31, 41, (182,29,0): 42, 30, 40, (182,30,0): 42, 30, 40, (182,31,0): 41, 29, 39, (182,32,0): 41, 29, 41, (182,33,0): 41, 29, 41, (182,34,0): 41, 29, 43, (182,35,0): 43, 29, 42, (182,36,0): 44, 30, 43, (182,37,0): 44, 30, 43, (182,38,0): 45, 31, 44, (182,39,0): 47, 31, 42, (182,40,0): 48, 32, 43, (182,41,0): 50, 33, 43, (182,42,0): 50, 33, 43, (182,43,0): 51, 34, 42, (182,44,0): 52, 35, 45, (182,45,0): 54, 34, 43, (182,46,0): 55, 35, 44, (182,47,0): 57, 34, 42, (182,48,0): 68, 35, 44, (182,49,0): 71, 33, 44, (182,50,0): 74, 34, 43, (182,51,0): 75, 35, 44, (182,52,0): 77, 35, 45, (182,53,0): 79, 37, 47, (182,54,0): 81, 38, 47, (182,55,0): 81, 38, 47, (182,56,0): 83, 38, 45, (182,57,0): 85, 38, 46, (182,58,0): 87, 37, 46, (182,59,0): 88, 38, 47, (182,60,0): 90, 39, 46, (182,61,0): 90, 39, 46, (182,62,0): 92, 39, 47, (182,63,0): 91, 40, 49, (182,64,0): 85, 38, 48, (182,65,0): 84, 38, 48, (182,66,0): 85, 38, 48, (182,67,0): 84, 38, 48, (182,68,0): 84, 37, 47, (182,69,0): 84, 37, 47, (182,70,0): 84, 37, 45, (182,71,0): 85, 35, 44, (182,72,0): 86, 36, 45, (182,73,0): 88, 37, 44, (182,74,0): 88, 37, 44, (182,75,0): 89, 38, 43, (182,76,0): 90, 37, 43, (182,77,0): 90, 39, 44, (182,78,0): 91, 38, 44, (182,79,0): 90, 39, 44, (182,80,0): 89, 38, 45, (182,81,0): 89, 38, 45, (182,82,0): 87, 38, 44, (182,83,0): 87, 38, 44, (182,84,0): 86, 37, 43, (182,85,0): 86, 37, 43, (182,86,0): 84, 37, 43, (182,87,0): 83, 36, 42, (182,88,0): 83, 38, 43, (182,89,0): 82, 37, 42, (182,90,0): 81, 36, 41, (182,91,0): 80, 35, 40, (182,92,0): 77, 35, 39, (182,93,0): 76, 34, 38, (182,94,0): 75, 33, 37, (182,95,0): 74, 31, 38, (182,96,0): 73, 32, 40, (182,97,0): 72, 32, 41, (182,98,0): 71, 31, 40, (182,99,0): 70, 30, 39, (182,100,0): 69, 29, 38, (182,101,0): 67, 30, 38, (182,102,0): 66, 29, 37, (182,103,0): 65, 30, 37, (182,104,0): 63, 30, 37, (182,105,0): 61, 30, 36, (182,106,0): 58, 29, 34, (182,107,0): 52, 27, 31, (182,108,0): 47, 25, 28, (182,109,0): 44, 24, 26, (182,110,0): 42, 22, 24, (182,111,0): 38, 22, 25, (182,112,0): 31, 18, 25, (182,113,0): 28, 17, 25, (182,114,0): 25, 14, 22, (182,115,0): 22, 11, 19, (182,116,0): 20, 9, 17, (182,117,0): 21, 10, 18, (182,118,0): 23, 12, 20, (182,119,0): 24, 13, 21, (182,120,0): 25, 14, 22, (182,121,0): 25, 14, 22, (182,122,0): 25, 14, 22, (182,123,0): 25, 14, 22, (182,124,0): 25, 14, 22, (182,125,0): 25, 14, 22, (182,126,0): 25, 14, 22, (182,127,0): 26, 13, 22, (182,128,0): 32, 17, 24, (182,129,0): 32, 15, 21, (182,130,0): 32, 15, 21, (182,131,0): 31, 14, 20, (182,132,0): 30, 13, 19, (182,133,0): 30, 13, 19, (182,134,0): 29, 12, 18, (182,135,0): 29, 12, 18, (182,136,0): 31, 14, 20, (182,137,0): 31, 14, 20, (182,138,0): 31, 14, 20, (182,139,0): 31, 14, 20, (182,140,0): 31, 14, 20, (182,141,0): 31, 14, 20, (182,142,0): 31, 14, 20, (182,143,0): 31, 14, 20, (182,144,0): 34, 18, 21, (182,145,0): 34, 18, 21, (182,146,0): 34, 18, 19, (182,147,0): 35, 19, 20, (182,148,0): 38, 19, 21, (182,149,0): 39, 20, 22, (182,150,0): 39, 21, 21, (182,151,0): 39, 21, 21, (182,152,0): 43, 23, 22, (182,153,0): 45, 25, 24, (182,154,0): 48, 27, 26, (182,155,0): 51, 30, 29, (182,156,0): 51, 30, 27, (182,157,0): 50, 29, 26, (182,158,0): 50, 26, 24, (182,159,0): 48, 24, 22, (182,160,0): 47, 26, 23, (182,161,0): 47, 26, 23, (182,162,0): 47, 26, 23, (182,163,0): 47, 26, 23, (182,164,0): 47, 26, 23, (182,165,0): 47, 26, 23, (182,166,0): 47, 26, 23, (182,167,0): 47, 26, 23, (182,168,0): 47, 26, 23, (182,169,0): 47, 26, 23, (182,170,0): 47, 26, 23, (182,171,0): 46, 25, 22, (182,172,0): 46, 25, 22, (182,173,0): 45, 24, 21, (182,174,0): 45, 24, 21, (182,175,0): 45, 24, 21, (182,176,0): 43, 24, 20, (182,177,0): 43, 24, 20, (182,178,0): 43, 24, 20, (182,179,0): 43, 24, 20, (182,180,0): 43, 24, 20, (182,181,0): 43, 24, 20, (182,182,0): 43, 24, 20, (182,183,0): 43, 24, 20, (182,184,0): 44, 25, 21, (182,185,0): 44, 25, 21, (182,186,0): 43, 24, 20, (182,187,0): 43, 24, 20, (182,188,0): 43, 24, 20, (182,189,0): 45, 26, 22, (182,190,0): 46, 27, 23, (182,191,0): 48, 27, 22, (182,192,0): 53, 30, 24, (182,193,0): 54, 29, 24, (182,194,0): 54, 29, 24, (182,195,0): 53, 28, 23, (182,196,0): 53, 28, 23, (182,197,0): 53, 28, 23, (182,198,0): 53, 28, 23, (182,199,0): 53, 28, 23, (182,200,0): 56, 31, 26, (182,201,0): 56, 31, 26, (182,202,0): 55, 30, 25, (182,203,0): 55, 30, 25, (182,204,0): 54, 29, 24, (182,205,0): 54, 29, 24, (182,206,0): 53, 28, 23, (182,207,0): 53, 28, 23, (182,208,0): 51, 26, 22, (182,209,0): 51, 26, 22, (182,210,0): 51, 26, 21, (182,211,0): 50, 25, 20, (182,212,0): 50, 25, 20, (182,213,0): 49, 24, 19, (182,214,0): 49, 24, 17, (182,215,0): 49, 24, 17, (182,216,0): 49, 25, 15, (182,217,0): 49, 25, 15, (182,218,0): 49, 25, 15, (182,219,0): 50, 26, 16, (182,220,0): 50, 26, 14, (182,221,0): 51, 27, 15, (182,222,0): 51, 27, 15, (182,223,0): 51, 27, 15, (182,224,0): 54, 25, 19, (182,225,0): 54, 25, 19, (182,226,0): 54, 25, 19, (182,227,0): 54, 25, 19, (182,228,0): 54, 25, 17, (182,229,0): 55, 26, 18, (182,230,0): 56, 27, 19, (182,231,0): 56, 27, 19, (182,232,0): 58, 30, 19, (182,233,0): 58, 30, 19, (182,234,0): 59, 31, 19, (182,235,0): 59, 31, 19, (182,236,0): 59, 31, 19, (182,237,0): 57, 29, 17, (182,238,0): 56, 28, 14, (182,239,0): 55, 27, 13, (182,240,0): 56, 28, 14, (182,241,0): 56, 28, 14, (182,242,0): 56, 28, 16, (182,243,0): 56, 28, 16, (182,244,0): 55, 29, 16, (182,245,0): 55, 29, 16, (182,246,0): 53, 29, 17, (182,247,0): 53, 29, 17, (182,248,0): 51, 27, 17, (182,249,0): 51, 27, 17, (182,250,0): 50, 28, 17, (182,251,0): 50, 28, 17, (182,252,0): 48, 28, 19, (182,253,0): 48, 28, 19, (182,254,0): 48, 28, 19, (182,255,0): 48, 28, 19, (182,256,0): 46, 25, 20, (182,257,0): 47, 26, 21, (182,258,0): 48, 27, 22, (182,259,0): 49, 28, 23, (182,260,0): 52, 28, 24, (182,261,0): 53, 29, 25, (182,262,0): 55, 30, 26, (182,263,0): 56, 31, 27, (182,264,0): 58, 33, 29, (182,265,0): 58, 33, 29, (182,266,0): 60, 32, 29, (182,267,0): 61, 33, 30, (182,268,0): 62, 32, 30, (182,269,0): 63, 33, 31, (182,270,0): 63, 33, 31, (182,271,0): 63, 33, 31, (182,272,0): 67, 38, 34, (182,273,0): 66, 37, 33, (182,274,0): 65, 36, 32, (182,275,0): 65, 36, 30, (182,276,0): 67, 38, 32, (182,277,0): 70, 41, 33, (182,278,0): 74, 46, 35, (182,279,0): 76, 48, 37, (182,280,0): 79, 51, 39, (182,281,0): 79, 51, 37, (182,282,0): 79, 51, 37, (182,283,0): 79, 52, 35, (182,284,0): 79, 52, 33, (182,285,0): 78, 51, 32, (182,286,0): 78, 51, 30, (182,287,0): 77, 52, 30, (182,288,0): 80, 55, 35, (182,289,0): 76, 54, 33, (182,290,0): 75, 52, 34, (182,291,0): 73, 50, 32, (182,292,0): 71, 50, 33, (182,293,0): 71, 50, 33, (182,294,0): 72, 50, 36, (182,295,0): 72, 50, 36, (182,296,0): 73, 54, 39, (182,297,0): 74, 55, 40, (182,298,0): 75, 58, 40, (182,299,0): 78, 61, 41, (182,300,0): 81, 65, 42, (182,301,0): 83, 67, 42, (182,302,0): 84, 70, 43, (182,303,0): 85, 71, 44, (182,304,0): 93, 77, 52, (182,305,0): 93, 77, 52, (182,306,0): 93, 77, 51, (182,307,0): 93, 77, 51, (182,308,0): 96, 79, 51, (182,309,0): 98, 81, 51, (182,310,0): 101, 84, 54, (182,311,0): 102, 86, 52, (182,312,0): 105, 87, 51, (182,313,0): 109, 91, 53, (182,314,0): 116, 96, 59, (182,315,0): 119, 100, 60, (182,316,0): 120, 101, 59, (182,317,0): 121, 102, 60, (182,318,0): 125, 103, 62, (182,319,0): 129, 107, 60, (182,320,0): 136, 114, 57, (182,321,0): 143, 119, 57, (182,322,0): 147, 123, 59, (182,323,0): 149, 126, 59, (182,324,0): 149, 126, 56, (182,325,0): 154, 132, 57, (182,326,0): 162, 143, 66, (182,327,0): 170, 151, 74, (182,328,0): 179, 160, 83, (182,329,0): 181, 162, 85, (182,330,0): 182, 164, 88, (182,331,0): 181, 163, 87, (182,332,0): 179, 161, 89, (182,333,0): 179, 161, 89, (182,334,0): 181, 162, 93, (182,335,0): 184, 165, 97, (182,336,0): 180, 161, 92, (182,337,0): 183, 164, 95, (182,338,0): 186, 167, 98, (182,339,0): 185, 166, 97, (182,340,0): 182, 163, 94, (182,341,0): 180, 161, 92, (182,342,0): 179, 162, 92, (182,343,0): 180, 163, 93, (182,344,0): 178, 161, 91, (182,345,0): 179, 162, 92, (182,346,0): 179, 162, 92, (182,347,0): 179, 162, 92, (182,348,0): 179, 162, 92, (182,349,0): 177, 163, 92, (182,350,0): 179, 162, 92, (182,351,0): 177, 163, 90, (182,352,0): 187, 171, 96, (182,353,0): 185, 172, 94, (182,354,0): 184, 170, 95, (182,355,0): 184, 170, 95, (182,356,0): 182, 168, 95, (182,357,0): 178, 166, 94, (182,358,0): 176, 163, 93, (182,359,0): 173, 163, 92, (182,360,0): 173, 163, 92, (182,361,0): 172, 162, 90, (182,362,0): 171, 161, 89, (182,363,0): 171, 163, 88, (182,364,0): 174, 167, 89, (182,365,0): 180, 175, 94, (182,366,0): 188, 181, 101, (182,367,0): 192, 185, 104, (182,368,0): 192, 185, 104, (182,369,0): 192, 185, 104, (182,370,0): 192, 183, 104, (182,371,0): 191, 182, 105, (182,372,0): 190, 178, 104, (182,373,0): 188, 176, 104, (182,374,0): 185, 172, 102, (182,375,0): 182, 172, 103, (182,376,0): 181, 171, 102, (182,377,0): 177, 168, 101, (182,378,0): 173, 166, 98, (182,379,0): 172, 168, 97, (182,380,0): 172, 172, 100, (182,381,0): 173, 175, 102, (182,382,0): 173, 175, 100, (182,383,0): 171, 174, 97, (182,384,0): 177, 175, 98, (182,385,0): 183, 182, 102, (182,386,0): 190, 189, 107, (182,387,0): 192, 194, 110, (182,388,0): 194, 197, 110, (182,389,0): 197, 202, 110, (182,390,0): 205, 210, 116, (182,391,0): 210, 218, 119, (182,392,0): 211, 217, 119, (182,393,0): 210, 215, 115, (182,394,0): 210, 212, 111, (182,395,0): 209, 209, 109, (182,396,0): 211, 209, 109, (182,397,0): 214, 210, 110, (182,398,0): 218, 213, 113, (182,399,0): 219, 215, 115, (182,400,0): 221, 219, 116, (182,401,0): 221, 222, 118, (182,402,0): 225, 226, 122, (182,403,0): 229, 231, 124, (182,404,0): 232, 234, 127, (182,405,0): 234, 236, 127, (182,406,0): 236, 238, 129, (182,407,0): 236, 238, 129, (182,408,0): 239, 241, 132, (182,409,0): 239, 241, 131, (182,410,0): 238, 240, 130, (182,411,0): 238, 241, 128, (182,412,0): 238, 241, 128, (182,413,0): 237, 240, 127, (182,414,0): 237, 240, 127, (182,415,0): 237, 240, 127, (182,416,0): 232, 236, 126, (182,417,0): 232, 236, 126, (182,418,0): 233, 235, 126, (182,419,0): 234, 236, 127, (182,420,0): 235, 237, 127, (182,421,0): 236, 239, 126, (182,422,0): 238, 241, 126, (182,423,0): 239, 242, 125, (182,424,0): 239, 243, 123, (182,425,0): 239, 243, 122, (182,426,0): 240, 244, 123, (182,427,0): 244, 248, 125, (182,428,0): 251, 253, 128, (182,429,0): 254, 255, 131, (182,430,0): 253, 255, 128, (182,431,0): 252, 254, 127, (182,432,0): 249, 255, 127, (182,433,0): 246, 255, 126, (182,434,0): 243, 250, 121, (182,435,0): 236, 245, 118, (182,436,0): 238, 247, 122, (182,437,0): 243, 251, 129, (182,438,0): 240, 248, 127, (182,439,0): 232, 241, 124, (182,440,0): 218, 226, 115, (182,441,0): 213, 222, 115, (182,442,0): 210, 218, 117, (182,443,0): 207, 217, 121, (182,444,0): 209, 215, 127, (182,445,0): 201, 209, 124, (182,446,0): 190, 197, 117, (182,447,0): 183, 187, 110, (182,448,0): 172, 174, 101, (182,449,0): 170, 170, 100, (182,450,0): 167, 168, 100, (182,451,0): 165, 168, 99, (182,452,0): 164, 169, 102, (182,453,0): 162, 169, 101, (182,454,0): 156, 165, 98, (182,455,0): 151, 162, 94, (182,456,0): 157, 172, 105, (182,457,0): 160, 177, 109, (182,458,0): 163, 182, 116, (182,459,0): 170, 189, 123, (182,460,0): 175, 196, 129, (182,461,0): 181, 202, 137, (182,462,0): 184, 205, 140, (182,463,0): 186, 206, 143, (182,464,0): 180, 200, 137, (182,465,0): 180, 200, 137, (182,466,0): 181, 201, 140, (182,467,0): 185, 205, 144, (182,468,0): 188, 208, 149, (182,469,0): 187, 208, 149, (182,470,0): 184, 205, 148, (182,471,0): 179, 202, 146, (182,472,0): 173, 196, 142, (182,473,0): 168, 191, 139, (182,474,0): 161, 183, 134, (182,475,0): 154, 178, 130, (182,476,0): 150, 174, 126, (182,477,0): 148, 174, 127, (182,478,0): 149, 175, 128, (182,479,0): 151, 177, 132, (182,480,0): 152, 177, 135, (182,481,0): 151, 176, 136, (182,482,0): 154, 176, 137, (182,483,0): 155, 180, 141, (182,484,0): 159, 181, 143, (182,485,0): 156, 180, 144, (182,486,0): 154, 176, 140, (182,487,0): 148, 172, 138, (182,488,0): 143, 164, 133, (182,489,0): 140, 163, 134, (182,490,0): 142, 162, 134, (182,491,0): 138, 161, 133, (182,492,0): 137, 157, 132, (182,493,0): 131, 154, 128, (182,494,0): 129, 149, 124, (182,495,0): 127, 146, 124, (182,496,0): 126, 141, 120, (182,497,0): 124, 137, 119, (182,498,0): 121, 132, 115, (182,499,0): 116, 127, 110, (182,500,0): 116, 125, 108, (182,501,0): 116, 123, 107, (182,502,0): 118, 122, 107, (182,503,0): 119, 123, 108, (182,504,0): 118, 119, 105, (182,505,0): 117, 118, 104, (182,506,0): 119, 117, 104, (182,507,0): 122, 118, 106, (182,508,0): 126, 120, 108, (182,509,0): 126, 120, 108, (182,510,0): 124, 116, 105, (182,511,0): 122, 112, 103, (182,512,0): 116, 101, 96, (182,513,0): 104, 86, 84, (182,514,0): 92, 74, 70, (182,515,0): 88, 70, 66, (182,516,0): 85, 70, 63, (182,517,0): 84, 69, 62, (182,518,0): 87, 73, 64, (182,519,0): 91, 79, 67, (182,520,0): 96, 84, 72, (182,521,0): 102, 90, 76, (182,522,0): 107, 98, 81, (182,523,0): 111, 102, 85, (182,524,0): 114, 106, 87, (182,525,0): 116, 108, 89, (182,526,0): 117, 111, 89, (182,527,0): 119, 114, 92, (182,528,0): 119, 117, 94, (182,529,0): 118, 118, 94, (182,530,0): 117, 117, 93, (182,531,0): 117, 117, 93, (182,532,0): 114, 116, 94, (182,533,0): 113, 115, 93, (182,534,0): 111, 115, 92, (182,535,0): 111, 115, 92, (182,536,0): 114, 117, 96, (182,537,0): 113, 116, 95, (182,538,0): 112, 117, 97, (182,539,0): 112, 117, 97, (182,540,0): 111, 119, 98, (182,541,0): 113, 121, 100, (182,542,0): 115, 122, 104, (182,543,0): 115, 124, 105, (182,544,0): 113, 124, 107, (182,545,0): 110, 123, 105, (182,546,0): 108, 119, 102, (182,547,0): 104, 117, 99, (182,548,0): 102, 113, 97, (182,549,0): 99, 112, 95, (182,550,0): 100, 111, 95, (182,551,0): 99, 112, 95, (182,552,0): 98, 109, 95, (182,553,0): 99, 111, 97, (182,554,0): 101, 111, 100, (182,555,0): 102, 114, 102, (182,556,0): 104, 114, 103, (182,557,0): 104, 116, 104, (182,558,0): 104, 114, 105, (182,559,0): 103, 114, 106, (182,560,0): 101, 116, 111, (182,561,0): 101, 117, 116, (182,562,0): 103, 119, 118, (182,563,0): 104, 123, 121, (182,564,0): 106, 124, 124, (182,565,0): 109, 127, 129, (182,566,0): 111, 129, 131, (182,567,0): 111, 130, 134, (182,568,0): 117, 136, 142, (182,569,0): 117, 137, 144, (182,570,0): 118, 138, 145, (182,571,0): 119, 139, 148, (182,572,0): 120, 140, 149, (182,573,0): 119, 141, 152, (182,574,0): 120, 142, 153, (182,575,0): 122, 142, 153, (182,576,0): 124, 142, 156, (182,577,0): 126, 142, 157, (182,578,0): 129, 142, 158, (182,579,0): 127, 140, 156, (182,580,0): 124, 136, 150, (182,581,0): 117, 129, 141, (182,582,0): 112, 122, 134, (182,583,0): 108, 118, 128, (182,584,0): 105, 112, 122, (182,585,0): 101, 108, 116, (182,586,0): 98, 102, 111, (182,587,0): 95, 100, 106, (182,588,0): 93, 96, 101, (182,589,0): 90, 93, 98, (182,590,0): 87, 88, 93, (182,591,0): 83, 84, 88, (182,592,0): 77, 76, 81, (182,593,0): 75, 75, 77, (182,594,0): 73, 71, 74, (182,595,0): 71, 66, 70, (182,596,0): 69, 63, 67, (182,597,0): 68, 62, 66, (182,598,0): 69, 60, 65, (182,599,0): 68, 59, 64, (183,0,0): 42, 30, 40, (183,1,0): 42, 30, 40, (183,2,0): 42, 30, 40, (183,3,0): 42, 30, 40, (183,4,0): 42, 30, 40, (183,5,0): 42, 30, 40, (183,6,0): 42, 30, 40, (183,7,0): 42, 30, 40, (183,8,0): 42, 30, 40, (183,9,0): 42, 30, 40, (183,10,0): 41, 29, 39, (183,11,0): 41, 29, 39, (183,12,0): 40, 28, 38, (183,13,0): 40, 28, 38, (183,14,0): 39, 27, 37, (183,15,0): 39, 27, 37, (183,16,0): 41, 29, 39, (183,17,0): 41, 29, 39, (183,18,0): 41, 29, 39, (183,19,0): 41, 29, 39, (183,20,0): 41, 29, 39, (183,21,0): 41, 29, 39, (183,22,0): 41, 29, 39, (183,23,0): 41, 29, 39, (183,24,0): 42, 30, 40, (183,25,0): 42, 30, 40, (183,26,0): 43, 31, 41, (183,27,0): 43, 31, 41, (183,28,0): 43, 31, 41, (183,29,0): 42, 30, 40, (183,30,0): 41, 29, 39, (183,31,0): 41, 29, 41, (183,32,0): 40, 28, 42, (183,33,0): 40, 28, 42, (183,34,0): 42, 28, 43, (183,35,0): 43, 29, 44, (183,36,0): 44, 30, 45, (183,37,0): 44, 30, 43, (183,38,0): 45, 31, 44, (183,39,0): 47, 31, 44, (183,40,0): 47, 31, 44, (183,41,0): 48, 30, 42, (183,42,0): 49, 31, 43, (183,43,0): 49, 32, 42, (183,44,0): 51, 31, 42, (183,45,0): 51, 31, 42, (183,46,0): 52, 32, 43, (183,47,0): 54, 31, 41, (183,48,0): 67, 34, 45, (183,49,0): 71, 33, 44, (183,50,0): 74, 34, 43, (183,51,0): 75, 35, 44, (183,52,0): 77, 35, 45, (183,53,0): 79, 37, 47, (183,54,0): 81, 38, 47, (183,55,0): 81, 38, 47, (183,56,0): 83, 38, 45, (183,57,0): 85, 38, 46, (183,58,0): 87, 37, 46, (183,59,0): 88, 38, 47, (183,60,0): 90, 39, 46, (183,61,0): 91, 40, 47, (183,62,0): 92, 39, 47, (183,63,0): 92, 41, 48, (183,64,0): 90, 40, 51, (183,65,0): 88, 41, 51, (183,66,0): 87, 40, 50, (183,67,0): 86, 39, 49, (183,68,0): 84, 37, 47, (183,69,0): 83, 36, 44, (183,70,0): 84, 34, 43, (183,71,0): 83, 34, 40, (183,72,0): 88, 37, 44, (183,73,0): 88, 37, 44, (183,74,0): 89, 36, 42, (183,75,0): 90, 37, 43, (183,76,0): 91, 38, 44, (183,77,0): 91, 38, 44, (183,78,0): 91, 38, 44, (183,79,0): 92, 39, 45, (183,80,0): 89, 38, 45, (183,81,0): 89, 38, 45, (183,82,0): 88, 39, 45, (183,83,0): 87, 38, 44, (183,84,0): 87, 38, 44, (183,85,0): 86, 37, 43, (183,86,0): 84, 37, 43, (183,87,0): 83, 36, 42, (183,88,0): 83, 38, 43, (183,89,0): 83, 38, 43, (183,90,0): 82, 37, 42, (183,91,0): 80, 35, 40, (183,92,0): 77, 35, 39, (183,93,0): 75, 33, 37, (183,94,0): 74, 32, 36, (183,95,0): 73, 32, 38, (183,96,0): 73, 33, 41, (183,97,0): 73, 33, 42, (183,98,0): 72, 32, 41, (183,99,0): 68, 31, 39, (183,100,0): 67, 30, 38, (183,101,0): 65, 30, 37, (183,102,0): 64, 29, 36, (183,103,0): 61, 28, 35, (183,104,0): 60, 29, 35, (183,105,0): 58, 29, 34, (183,106,0): 55, 28, 33, (183,107,0): 52, 27, 31, (183,108,0): 49, 24, 28, (183,109,0): 45, 23, 26, (183,110,0): 44, 22, 25, (183,111,0): 41, 22, 26, (183,112,0): 32, 19, 26, (183,113,0): 28, 17, 25, (183,114,0): 25, 14, 22, (183,115,0): 21, 10, 18, (183,116,0): 20, 9, 17, (183,117,0): 21, 10, 18, (183,118,0): 22, 11, 19, (183,119,0): 24, 13, 21, (183,120,0): 24, 13, 21, (183,121,0): 24, 13, 21, (183,122,0): 24, 13, 21, (183,123,0): 24, 13, 21, (183,124,0): 24, 13, 21, (183,125,0): 24, 13, 21, (183,126,0): 24, 13, 21, (183,127,0): 25, 12, 19, (183,128,0): 32, 17, 24, (183,129,0): 33, 16, 22, (183,130,0): 32, 15, 21, (183,131,0): 31, 14, 20, (183,132,0): 30, 13, 19, (183,133,0): 30, 13, 19, (183,134,0): 29, 12, 18, (183,135,0): 29, 12, 18, (183,136,0): 31, 14, 20, (183,137,0): 31, 14, 20, (183,138,0): 31, 14, 20, (183,139,0): 31, 14, 20, (183,140,0): 31, 14, 20, (183,141,0): 31, 14, 20, (183,142,0): 31, 14, 20, (183,143,0): 31, 14, 20, (183,144,0): 35, 19, 22, (183,145,0): 35, 19, 22, (183,146,0): 35, 19, 20, (183,147,0): 35, 19, 20, (183,148,0): 38, 19, 21, (183,149,0): 38, 19, 21, (183,150,0): 38, 20, 20, (183,151,0): 38, 20, 20, (183,152,0): 41, 21, 20, (183,153,0): 44, 24, 23, (183,154,0): 48, 27, 26, (183,155,0): 50, 29, 28, (183,156,0): 51, 30, 27, (183,157,0): 49, 28, 25, (183,158,0): 49, 25, 23, (183,159,0): 47, 23, 21, (183,160,0): 47, 26, 23, (183,161,0): 47, 26, 23, (183,162,0): 47, 26, 23, (183,163,0): 47, 26, 23, (183,164,0): 47, 26, 23, (183,165,0): 47, 26, 23, (183,166,0): 47, 26, 23, (183,167,0): 47, 26, 23, (183,168,0): 48, 27, 24, (183,169,0): 48, 27, 24, (183,170,0): 48, 27, 24, (183,171,0): 47, 26, 23, (183,172,0): 47, 26, 23, (183,173,0): 46, 25, 22, (183,174,0): 46, 25, 22, (183,175,0): 45, 24, 21, (183,176,0): 43, 24, 20, (183,177,0): 43, 24, 20, (183,178,0): 43, 24, 20, (183,179,0): 43, 24, 20, (183,180,0): 43, 24, 20, (183,181,0): 43, 24, 20, (183,182,0): 43, 24, 20, (183,183,0): 43, 24, 20, (183,184,0): 44, 25, 21, (183,185,0): 44, 25, 21, (183,186,0): 43, 24, 20, (183,187,0): 43, 24, 20, (183,188,0): 43, 24, 20, (183,189,0): 45, 26, 22, (183,190,0): 46, 27, 23, (183,191,0): 48, 27, 24, (183,192,0): 53, 29, 25, (183,193,0): 54, 29, 24, (183,194,0): 54, 29, 24, (183,195,0): 53, 28, 23, (183,196,0): 53, 28, 23, (183,197,0): 53, 28, 23, (183,198,0): 52, 27, 22, (183,199,0): 52, 27, 22, (183,200,0): 56, 31, 26, (183,201,0): 56, 31, 26, (183,202,0): 55, 30, 25, (183,203,0): 55, 30, 25, (183,204,0): 54, 29, 24, (183,205,0): 54, 29, 24, (183,206,0): 53, 28, 23, (183,207,0): 53, 28, 23, (183,208,0): 51, 26, 22, (183,209,0): 51, 26, 22, (183,210,0): 51, 26, 21, (183,211,0): 50, 25, 20, (183,212,0): 50, 25, 20, (183,213,0): 49, 24, 19, (183,214,0): 49, 24, 17, (183,215,0): 49, 24, 17, (183,216,0): 49, 25, 15, (183,217,0): 49, 25, 15, (183,218,0): 49, 25, 15, (183,219,0): 50, 26, 16, (183,220,0): 50, 26, 14, (183,221,0): 51, 27, 15, (183,222,0): 51, 27, 15, (183,223,0): 51, 27, 15, (183,224,0): 55, 26, 20, (183,225,0): 56, 27, 21, (183,226,0): 57, 28, 22, (183,227,0): 58, 29, 23, (183,228,0): 59, 30, 22, (183,229,0): 59, 30, 22, (183,230,0): 58, 29, 21, (183,231,0): 58, 29, 21, (183,232,0): 58, 30, 19, (183,233,0): 58, 30, 19, (183,234,0): 59, 31, 19, (183,235,0): 59, 31, 19, (183,236,0): 59, 31, 19, (183,237,0): 57, 29, 17, (183,238,0): 56, 28, 14, (183,239,0): 55, 27, 13, (183,240,0): 57, 29, 15, (183,241,0): 57, 29, 15, (183,242,0): 57, 29, 17, (183,243,0): 57, 29, 17, (183,244,0): 56, 30, 17, (183,245,0): 56, 30, 17, (183,246,0): 54, 30, 18, (183,247,0): 54, 30, 18, (183,248,0): 51, 27, 17, (183,249,0): 51, 27, 17, (183,250,0): 50, 28, 17, (183,251,0): 49, 27, 16, (183,252,0): 47, 27, 18, (183,253,0): 47, 27, 18, (183,254,0): 47, 27, 18, (183,255,0): 46, 26, 17, (183,256,0): 46, 25, 20, (183,257,0): 47, 26, 21, (183,258,0): 48, 27, 22, (183,259,0): 49, 28, 23, (183,260,0): 53, 29, 25, (183,261,0): 54, 30, 26, (183,262,0): 56, 31, 27, (183,263,0): 56, 31, 27, (183,264,0): 58, 33, 29, (183,265,0): 58, 33, 29, (183,266,0): 60, 32, 29, (183,267,0): 61, 33, 30, (183,268,0): 62, 32, 30, (183,269,0): 63, 33, 31, (183,270,0): 63, 33, 31, (183,271,0): 63, 33, 31, (183,272,0): 68, 39, 35, (183,273,0): 66, 37, 31, (183,274,0): 65, 36, 30, (183,275,0): 65, 36, 28, (183,276,0): 67, 38, 30, (183,277,0): 71, 43, 32, (183,278,0): 75, 47, 36, (183,279,0): 78, 50, 38, (183,280,0): 80, 52, 38, (183,281,0): 80, 53, 36, (183,282,0): 80, 53, 36, (183,283,0): 80, 53, 34, (183,284,0): 79, 52, 33, (183,285,0): 79, 52, 31, (183,286,0): 79, 52, 31, (183,287,0): 78, 53, 31, (183,288,0): 80, 55, 33, (183,289,0): 77, 55, 34, (183,290,0): 75, 53, 32, (183,291,0): 73, 50, 32, (183,292,0): 71, 50, 33, (183,293,0): 71, 50, 33, (183,294,0): 71, 49, 35, (183,295,0): 71, 49, 35, (183,296,0): 73, 54, 39, (183,297,0): 74, 55, 40, (183,298,0): 75, 58, 40, (183,299,0): 78, 61, 43, (183,300,0): 81, 64, 44, (183,301,0): 83, 67, 44, (183,302,0): 84, 70, 44, (183,303,0): 85, 71, 45, (183,304,0): 93, 77, 52, (183,305,0): 93, 77, 52, (183,306,0): 93, 77, 51, (183,307,0): 93, 77, 51, (183,308,0): 96, 79, 51, (183,309,0): 98, 81, 53, (183,310,0): 101, 84, 54, (183,311,0): 102, 86, 53, (183,312,0): 104, 85, 52, (183,313,0): 109, 91, 55, (183,314,0): 116, 96, 61, (183,315,0): 119, 99, 62, (183,316,0): 120, 101, 61, (183,317,0): 121, 102, 60, (183,318,0): 125, 103, 64, (183,319,0): 129, 106, 62, (183,320,0): 130, 108, 51, (183,321,0): 138, 114, 52, (183,322,0): 146, 122, 58, (183,323,0): 151, 128, 60, (183,324,0): 153, 131, 58, (183,325,0): 155, 136, 59, (183,326,0): 164, 145, 66, (183,327,0): 171, 152, 73, (183,328,0): 182, 163, 84, (183,329,0): 183, 166, 86, (183,330,0): 185, 168, 90, (183,331,0): 183, 167, 90, (183,332,0): 181, 164, 92, (183,333,0): 181, 164, 94, (183,334,0): 183, 166, 97, (183,335,0): 186, 169, 100, (183,336,0): 178, 163, 94, (183,337,0): 179, 165, 94, (183,338,0): 180, 166, 95, (183,339,0): 177, 163, 92, (183,340,0): 174, 160, 89, (183,341,0): 174, 160, 89, (183,342,0): 177, 165, 93, (183,343,0): 182, 170, 98, (183,344,0): 178, 166, 94, (183,345,0): 177, 165, 93, (183,346,0): 176, 164, 92, (183,347,0): 175, 163, 91, (183,348,0): 174, 162, 90, (183,349,0): 174, 162, 90, (183,350,0): 174, 162, 90, (183,351,0): 175, 163, 89, (183,352,0): 186, 174, 98, (183,353,0): 186, 175, 96, (183,354,0): 185, 173, 97, (183,355,0): 182, 173, 96, (183,356,0): 181, 169, 97, (183,357,0): 176, 166, 94, (183,358,0): 173, 163, 92, (183,359,0): 170, 162, 90, (183,360,0): 170, 162, 90, (183,361,0): 168, 161, 89, (183,362,0): 167, 159, 86, (183,363,0): 167, 161, 85, (183,364,0): 170, 164, 88, (183,365,0): 174, 171, 92, (183,366,0): 182, 177, 96, (183,367,0): 184, 181, 100, (183,368,0): 188, 185, 104, (183,369,0): 186, 183, 102, (183,370,0): 184, 178, 100, (183,371,0): 181, 175, 99, (183,372,0): 181, 173, 100, (183,373,0): 182, 174, 102, (183,374,0): 184, 175, 106, (183,375,0): 185, 176, 107, (183,376,0): 180, 171, 104, (183,377,0): 175, 168, 100, (183,378,0): 170, 165, 97, (183,379,0): 169, 166, 97, (183,380,0): 170, 170, 98, (183,381,0): 171, 173, 100, (183,382,0): 169, 173, 97, (183,383,0): 167, 171, 94, (183,384,0): 174, 175, 95, (183,385,0): 182, 184, 101, (183,386,0): 191, 193, 109, (183,387,0): 195, 199, 112, (183,388,0): 197, 202, 110, (183,389,0): 203, 209, 113, (183,390,0): 213, 221, 122, (183,391,0): 223, 231, 128, (183,392,0): 221, 228, 125, (183,393,0): 217, 224, 120, (183,394,0): 213, 219, 113, (183,395,0): 211, 214, 109, (183,396,0): 209, 210, 106, (183,397,0): 212, 210, 107, (183,398,0): 214, 211, 108, (183,399,0): 216, 213, 110, (183,400,0): 221, 220, 114, (183,401,0): 221, 223, 114, (183,402,0): 225, 227, 120, (183,403,0): 228, 230, 121, (183,404,0): 232, 234, 125, (183,405,0): 234, 236, 126, (183,406,0): 235, 237, 127, (183,407,0): 236, 238, 128, (183,408,0): 240, 242, 132, (183,409,0): 240, 243, 130, (183,410,0): 240, 243, 130, (183,411,0): 240, 243, 128, (183,412,0): 240, 243, 128, (183,413,0): 240, 243, 128, (183,414,0): 240, 243, 128, (183,415,0): 240, 243, 130, (183,416,0): 240, 242, 132, (183,417,0): 240, 242, 133, (183,418,0): 241, 243, 134, (183,419,0): 242, 244, 134, (183,420,0): 243, 246, 133, (183,421,0): 244, 247, 132, (183,422,0): 244, 247, 130, (183,423,0): 245, 249, 129, (183,424,0): 241, 245, 125, (183,425,0): 241, 245, 124, (183,426,0): 243, 247, 124, (183,427,0): 247, 252, 126, (183,428,0): 254, 255, 129, (183,429,0): 255, 255, 131, (183,430,0): 255, 255, 129, (183,431,0): 250, 255, 126, (183,432,0): 248, 255, 127, (183,433,0): 244, 255, 125, (183,434,0): 239, 248, 119, (183,435,0): 234, 245, 117, (183,436,0): 238, 248, 123, (183,437,0): 243, 255, 131, (183,438,0): 240, 249, 130, (183,439,0): 230, 240, 125, (183,440,0): 218, 228, 116, (183,441,0): 211, 222, 117, (183,442,0): 206, 216, 117, (183,443,0): 204, 215, 121, (183,444,0): 206, 215, 126, (183,445,0): 200, 210, 124, (183,446,0): 190, 199, 118, (183,447,0): 182, 190, 113, (183,448,0): 173, 174, 106, (183,449,0): 170, 171, 105, (183,450,0): 168, 169, 103, (183,451,0): 167, 169, 104, (183,452,0): 164, 169, 103, (183,453,0): 158, 164, 100, (183,454,0): 150, 156, 94, (183,455,0): 141, 151, 88, (183,456,0): 154, 166, 104, (183,457,0): 156, 170, 108, (183,458,0): 161, 177, 115, (183,459,0): 166, 184, 122, (183,460,0): 173, 191, 131, (183,461,0): 178, 198, 137, (183,462,0): 182, 202, 143, (183,463,0): 184, 204, 145, (183,464,0): 178, 198, 139, (183,465,0): 178, 198, 139, (183,466,0): 180, 199, 143, (183,467,0): 184, 203, 147, (183,468,0): 186, 207, 151, (183,469,0): 187, 208, 152, (183,470,0): 182, 205, 151, (183,471,0): 179, 202, 148, (183,472,0): 171, 194, 142, (183,473,0): 166, 188, 139, (183,474,0): 157, 181, 133, (183,475,0): 150, 173, 127, (183,476,0): 145, 171, 124, (183,477,0): 146, 172, 127, (183,478,0): 149, 175, 130, (183,479,0): 152, 177, 135, (183,480,0): 152, 177, 137, (183,481,0): 151, 176, 137, (183,482,0): 150, 175, 136, (183,483,0): 153, 178, 139, (183,484,0): 156, 180, 144, (183,485,0): 157, 181, 147, (183,486,0): 153, 177, 143, (183,487,0): 150, 174, 142, (183,488,0): 141, 164, 135, (183,489,0): 141, 164, 136, (183,490,0): 141, 164, 136, (183,491,0): 139, 162, 136, (183,492,0): 136, 159, 133, (183,493,0): 132, 154, 131, (183,494,0): 128, 150, 127, (183,495,0): 128, 147, 125, (183,496,0): 126, 141, 122, (183,497,0): 124, 137, 119, (183,498,0): 120, 131, 114, (183,499,0): 116, 127, 110, (183,500,0): 115, 124, 107, (183,501,0): 114, 123, 106, (183,502,0): 116, 123, 107, (183,503,0): 119, 123, 108, (183,504,0): 118, 119, 105, (183,505,0): 119, 117, 104, (183,506,0): 119, 115, 103, (183,507,0): 120, 116, 104, (183,508,0): 125, 119, 107, (183,509,0): 126, 120, 108, (183,510,0): 125, 117, 106, (183,511,0): 124, 114, 105, (183,512,0): 118, 103, 98, (183,513,0): 106, 88, 86, (183,514,0): 93, 75, 71, (183,515,0): 89, 71, 67, (183,516,0): 86, 71, 64, (183,517,0): 84, 69, 62, (183,518,0): 87, 73, 64, (183,519,0): 91, 79, 67, (183,520,0): 95, 83, 71, (183,521,0): 101, 89, 75, (183,522,0): 106, 97, 80, (183,523,0): 111, 102, 85, (183,524,0): 113, 105, 86, (183,525,0): 115, 107, 88, (183,526,0): 117, 111, 89, (183,527,0): 118, 113, 91, (183,528,0): 119, 117, 94, (183,529,0): 118, 118, 94, (183,530,0): 117, 117, 93, (183,531,0): 115, 115, 91, (183,532,0): 112, 114, 92, (183,533,0): 111, 113, 91, (183,534,0): 109, 113, 90, (183,535,0): 108, 112, 89, (183,536,0): 114, 117, 96, (183,537,0): 114, 117, 96, (183,538,0): 113, 118, 98, (183,539,0): 113, 118, 98, (183,540,0): 112, 120, 99, (183,541,0): 114, 122, 101, (183,542,0): 116, 123, 105, (183,543,0): 116, 125, 106, (183,544,0): 114, 125, 108, (183,545,0): 111, 124, 106, (183,546,0): 107, 120, 102, (183,547,0): 104, 117, 99, (183,548,0): 101, 114, 97, (183,549,0): 100, 113, 96, (183,550,0): 99, 112, 95, (183,551,0): 99, 112, 95, (183,552,0): 97, 109, 95, (183,553,0): 98, 110, 96, (183,554,0): 100, 112, 100, (183,555,0): 102, 114, 102, (183,556,0): 103, 115, 103, (183,557,0): 103, 115, 103, (183,558,0): 103, 115, 105, (183,559,0): 102, 115, 106, (183,560,0): 102, 117, 114, (183,561,0): 102, 118, 118, (183,562,0): 102, 120, 120, (183,563,0): 104, 122, 124, (183,564,0): 107, 125, 127, (183,565,0): 110, 128, 132, (183,566,0): 111, 130, 134, (183,567,0): 112, 131, 137, (183,568,0): 119, 139, 146, (183,569,0): 119, 139, 148, (183,570,0): 119, 139, 148, (183,571,0): 120, 140, 151, (183,572,0): 118, 140, 151, (183,573,0): 119, 141, 154, (183,574,0): 119, 141, 154, (183,575,0): 121, 140, 154, (183,576,0): 123, 141, 155, (183,577,0): 125, 141, 156, (183,578,0): 128, 141, 157, (183,579,0): 127, 140, 156, (183,580,0): 123, 135, 149, (183,581,0): 117, 129, 141, (183,582,0): 112, 122, 134, (183,583,0): 107, 117, 127, (183,584,0): 105, 112, 122, (183,585,0): 101, 108, 116, (183,586,0): 98, 102, 111, (183,587,0): 95, 100, 106, (183,588,0): 94, 97, 102, (183,589,0): 90, 93, 98, (183,590,0): 87, 88, 93, (183,591,0): 83, 84, 89, (183,592,0): 78, 77, 82, (183,593,0): 76, 76, 78, (183,594,0): 74, 72, 75, (183,595,0): 70, 68, 71, (183,596,0): 69, 64, 68, (183,597,0): 68, 62, 66, (183,598,0): 69, 60, 65, (183,599,0): 69, 60, 65, (184,0,0): 42, 30, 40, (184,1,0): 42, 30, 40, (184,2,0): 42, 30, 40, (184,3,0): 42, 30, 40, (184,4,0): 42, 30, 40, (184,5,0): 42, 30, 40, (184,6,0): 42, 30, 40, (184,7,0): 42, 30, 40, (184,8,0): 40, 28, 38, (184,9,0): 40, 28, 38, (184,10,0): 41, 29, 39, (184,11,0): 42, 30, 40, (184,12,0): 42, 30, 40, (184,13,0): 43, 31, 41, (184,14,0): 44, 32, 42, (184,15,0): 44, 32, 42, (184,16,0): 42, 30, 40, (184,17,0): 42, 30, 40, (184,18,0): 42, 30, 40, (184,19,0): 42, 30, 40, (184,20,0): 42, 30, 40, (184,21,0): 42, 30, 40, (184,22,0): 42, 30, 40, (184,23,0): 42, 30, 40, (184,24,0): 44, 32, 42, (184,25,0): 44, 32, 42, (184,26,0): 44, 32, 42, (184,27,0): 43, 31, 41, (184,28,0): 42, 30, 40, (184,29,0): 41, 29, 39, (184,30,0): 40, 28, 38, (184,31,0): 40, 28, 40, (184,32,0): 43, 29, 44, (184,33,0): 43, 29, 46, (184,34,0): 45, 28, 46, (184,35,0): 45, 28, 44, (184,36,0): 45, 28, 44, (184,37,0): 45, 28, 44, (184,38,0): 45, 28, 44, (184,39,0): 46, 28, 42, (184,40,0): 45, 27, 41, (184,41,0): 48, 28, 40, (184,42,0): 49, 29, 41, (184,43,0): 50, 30, 42, (184,44,0): 53, 31, 44, (184,45,0): 54, 32, 44, (184,46,0): 55, 33, 45, (184,47,0): 58, 32, 43, (184,48,0): 64, 32, 43, (184,49,0): 69, 33, 43, (184,50,0): 73, 36, 44, (184,51,0): 76, 39, 47, (184,52,0): 80, 40, 49, (184,53,0): 81, 41, 50, (184,54,0): 81, 40, 48, (184,55,0): 82, 39, 48, (184,56,0): 85, 40, 47, (184,57,0): 86, 41, 48, (184,58,0): 87, 40, 48, (184,59,0): 88, 41, 49, (184,60,0): 90, 41, 47, (184,61,0): 91, 42, 48, (184,62,0): 92, 41, 48, (184,63,0): 92, 41, 48, (184,64,0): 91, 41, 52, (184,65,0): 88, 41, 51, (184,66,0): 90, 40, 49, (184,67,0): 89, 39, 48, (184,68,0): 88, 38, 47, (184,69,0): 87, 37, 46, (184,70,0): 88, 37, 46, (184,71,0): 87, 36, 43, (184,72,0): 89, 36, 44, (184,73,0): 89, 36, 42, (184,74,0): 89, 36, 42, (184,75,0): 89, 36, 42, (184,76,0): 91, 36, 41, (184,77,0): 91, 36, 41, (184,78,0): 91, 36, 41, (184,79,0): 89, 36, 42, (184,80,0): 88, 37, 44, (184,81,0): 88, 37, 44, (184,82,0): 86, 37, 43, (184,83,0): 86, 37, 43, (184,84,0): 85, 36, 42, (184,85,0): 85, 36, 42, (184,86,0): 82, 35, 41, (184,87,0): 82, 35, 41, (184,88,0): 82, 37, 42, (184,89,0): 82, 37, 42, (184,90,0): 81, 36, 41, (184,91,0): 80, 35, 40, (184,92,0): 77, 35, 39, (184,93,0): 76, 34, 38, (184,94,0): 75, 33, 37, (184,95,0): 74, 33, 39, (184,96,0): 69, 29, 37, (184,97,0): 67, 30, 38, (184,98,0): 67, 30, 38, (184,99,0): 65, 30, 37, (184,100,0): 65, 30, 37, (184,101,0): 62, 29, 36, (184,102,0): 61, 30, 36, (184,103,0): 60, 31, 36, (184,104,0): 62, 33, 38, (184,105,0): 59, 32, 37, (184,106,0): 59, 32, 37, (184,107,0): 56, 31, 35, (184,108,0): 54, 29, 33, (184,109,0): 50, 25, 29, (184,110,0): 48, 23, 27, (184,111,0): 43, 22, 27, (184,112,0): 35, 20, 27, (184,113,0): 28, 17, 25, (184,114,0): 23, 12, 20, (184,115,0): 21, 10, 18, (184,116,0): 22, 11, 19, (184,117,0): 23, 12, 20, (184,118,0): 22, 11, 19, (184,119,0): 21, 10, 18, (184,120,0): 20, 9, 17, (184,121,0): 21, 10, 18, (184,122,0): 22, 11, 19, (184,123,0): 23, 12, 20, (184,124,0): 25, 14, 22, (184,125,0): 26, 15, 23, (184,126,0): 28, 17, 25, (184,127,0): 29, 16, 23, (184,128,0): 35, 18, 26, (184,129,0): 37, 18, 24, (184,130,0): 37, 18, 24, (184,131,0): 36, 17, 23, (184,132,0): 36, 17, 23, (184,133,0): 36, 17, 23, (184,134,0): 36, 17, 23, (184,135,0): 35, 16, 22, (184,136,0): 31, 12, 18, (184,137,0): 32, 13, 19, (184,138,0): 32, 13, 19, (184,139,0): 33, 14, 20, (184,140,0): 34, 15, 21, (184,141,0): 34, 15, 21, (184,142,0): 35, 16, 22, (184,143,0): 35, 16, 22, (184,144,0): 33, 17, 20, (184,145,0): 34, 18, 21, (184,146,0): 34, 18, 19, (184,147,0): 34, 18, 19, (184,148,0): 36, 17, 19, (184,149,0): 37, 18, 20, (184,150,0): 37, 19, 19, (184,151,0): 37, 19, 19, (184,152,0): 43, 23, 22, (184,153,0): 44, 24, 23, (184,154,0): 46, 25, 24, (184,155,0): 47, 26, 25, (184,156,0): 48, 27, 24, (184,157,0): 49, 28, 25, (184,158,0): 51, 27, 25, (184,159,0): 52, 28, 26, (184,160,0): 49, 28, 25, (184,161,0): 49, 28, 25, (184,162,0): 49, 28, 25, (184,163,0): 49, 28, 25, (184,164,0): 49, 28, 25, (184,165,0): 49, 28, 25, (184,166,0): 49, 28, 25, (184,167,0): 49, 28, 25, (184,168,0): 47, 26, 23, (184,169,0): 47, 26, 23, (184,170,0): 46, 25, 22, (184,171,0): 46, 25, 22, (184,172,0): 45, 24, 21, (184,173,0): 45, 24, 21, (184,174,0): 44, 23, 20, (184,175,0): 44, 23, 20, (184,176,0): 42, 23, 19, (184,177,0): 42, 23, 19, (184,178,0): 42, 23, 19, (184,179,0): 42, 23, 19, (184,180,0): 42, 23, 19, (184,181,0): 42, 23, 19, (184,182,0): 42, 23, 19, (184,183,0): 42, 23, 19, (184,184,0): 44, 25, 21, (184,185,0): 45, 26, 22, (184,186,0): 45, 26, 22, (184,187,0): 46, 27, 23, (184,188,0): 46, 27, 23, (184,189,0): 47, 28, 24, (184,190,0): 47, 28, 24, (184,191,0): 48, 27, 24, (184,192,0): 51, 27, 23, (184,193,0): 52, 27, 23, (184,194,0): 52, 27, 23, (184,195,0): 52, 27, 23, (184,196,0): 52, 27, 23, (184,197,0): 52, 27, 23, (184,198,0): 52, 27, 23, (184,199,0): 52, 27, 23, (184,200,0): 50, 25, 21, (184,201,0): 51, 26, 22, (184,202,0): 52, 27, 23, (184,203,0): 53, 28, 24, (184,204,0): 53, 28, 24, (184,205,0): 52, 27, 23, (184,206,0): 51, 26, 22, (184,207,0): 50, 25, 21, (184,208,0): 51, 26, 22, (184,209,0): 51, 26, 22, (184,210,0): 51, 26, 21, (184,211,0): 50, 25, 20, (184,212,0): 50, 25, 20, (184,213,0): 49, 24, 19, (184,214,0): 49, 24, 17, (184,215,0): 49, 24, 17, (184,216,0): 50, 26, 16, (184,217,0): 50, 26, 16, (184,218,0): 50, 26, 16, (184,219,0): 50, 26, 16, (184,220,0): 50, 26, 14, (184,221,0): 50, 26, 14, (184,222,0): 50, 26, 14, (184,223,0): 50, 26, 14, (184,224,0): 53, 24, 18, (184,225,0): 54, 25, 19, (184,226,0): 55, 26, 20, (184,227,0): 56, 27, 21, (184,228,0): 56, 27, 19, (184,229,0): 55, 26, 18, (184,230,0): 54, 25, 17, (184,231,0): 53, 24, 16, (184,232,0): 56, 28, 17, (184,233,0): 58, 30, 19, (184,234,0): 61, 33, 21, (184,235,0): 62, 34, 22, (184,236,0): 62, 34, 22, (184,237,0): 60, 32, 20, (184,238,0): 57, 29, 15, (184,239,0): 55, 27, 13, (184,240,0): 54, 26, 12, (184,241,0): 55, 27, 13, (184,242,0): 57, 29, 17, (184,243,0): 59, 31, 19, (184,244,0): 59, 33, 20, (184,245,0): 59, 33, 20, (184,246,0): 56, 32, 20, (184,247,0): 56, 32, 20, (184,248,0): 52, 28, 18, (184,249,0): 51, 27, 17, (184,250,0): 50, 28, 17, (184,251,0): 49, 27, 16, (184,252,0): 47, 27, 18, (184,253,0): 46, 26, 17, (184,254,0): 46, 26, 17, (184,255,0): 46, 26, 17, (184,256,0): 49, 28, 23, (184,257,0): 49, 28, 23, (184,258,0): 49, 28, 23, (184,259,0): 50, 29, 24, (184,260,0): 52, 28, 24, (184,261,0): 53, 29, 25, (184,262,0): 54, 29, 25, (184,263,0): 54, 29, 25, (184,264,0): 56, 31, 27, (184,265,0): 57, 32, 28, (184,266,0): 59, 31, 28, (184,267,0): 60, 32, 29, (184,268,0): 63, 33, 31, (184,269,0): 64, 34, 32, (184,270,0): 64, 34, 32, (184,271,0): 65, 35, 33, (184,272,0): 65, 36, 32, (184,273,0): 66, 37, 31, (184,274,0): 67, 38, 32, (184,275,0): 68, 39, 31, (184,276,0): 71, 42, 34, (184,277,0): 75, 47, 36, (184,278,0): 78, 50, 39, (184,279,0): 79, 51, 39, (184,280,0): 80, 52, 38, (184,281,0): 80, 53, 36, (184,282,0): 80, 53, 36, (184,283,0): 80, 53, 34, (184,284,0): 80, 53, 34, (184,285,0): 80, 53, 32, (184,286,0): 80, 53, 32, (184,287,0): 79, 55, 31, (184,288,0): 80, 56, 32, (184,289,0): 77, 55, 32, (184,290,0): 76, 54, 33, (184,291,0): 75, 52, 34, (184,292,0): 73, 52, 35, (184,293,0): 71, 50, 33, (184,294,0): 70, 48, 34, (184,295,0): 70, 48, 34, (184,296,0): 74, 55, 40, (184,297,0): 75, 56, 41, (184,298,0): 76, 59, 41, (184,299,0): 79, 62, 44, (184,300,0): 82, 65, 45, (184,301,0): 85, 69, 46, (184,302,0): 86, 71, 48, (184,303,0): 87, 73, 47, (184,304,0): 90, 76, 50, (184,305,0): 91, 77, 50, (184,306,0): 92, 78, 51, (184,307,0): 94, 80, 53, (184,308,0): 96, 81, 52, (184,309,0): 98, 83, 54, (184,310,0): 100, 83, 53, (184,311,0): 101, 85, 52, (184,312,0): 104, 88, 54, (184,313,0): 106, 90, 54, (184,314,0): 111, 93, 57, (184,315,0): 115, 97, 59, (184,316,0): 119, 99, 62, (184,317,0): 121, 102, 62, (184,318,0): 122, 102, 65, (184,319,0): 124, 103, 60, (184,320,0): 125, 102, 48, (184,321,0): 139, 115, 53, (184,322,0): 153, 129, 65, (184,323,0): 159, 136, 68, (184,324,0): 157, 137, 64, (184,325,0): 160, 141, 64, (184,326,0): 170, 151, 72, (184,327,0): 179, 162, 80, (184,328,0): 183, 166, 84, (184,329,0): 186, 171, 90, (184,330,0): 190, 174, 96, (184,331,0): 189, 176, 98, (184,332,0): 188, 174, 101, (184,333,0): 186, 172, 101, (184,334,0): 186, 171, 104, (184,335,0): 186, 173, 105, (184,336,0): 180, 170, 99, (184,337,0): 177, 169, 97, (184,338,0): 174, 166, 94, (184,339,0): 171, 163, 91, (184,340,0): 171, 163, 91, (184,341,0): 172, 164, 92, (184,342,0): 175, 167, 95, (184,343,0): 176, 168, 96, (184,344,0): 179, 169, 98, (184,345,0): 179, 169, 98, (184,346,0): 180, 170, 99, (184,347,0): 180, 170, 99, (184,348,0): 181, 171, 100, (184,349,0): 183, 173, 102, (184,350,0): 184, 174, 103, (184,351,0): 185, 175, 103, (184,352,0): 188, 179, 102, (184,353,0): 188, 179, 100, (184,354,0): 187, 178, 101, (184,355,0): 185, 178, 100, (184,356,0): 184, 174, 102, (184,357,0): 181, 173, 100, (184,358,0): 178, 170, 98, (184,359,0): 176, 169, 97, (184,360,0): 172, 165, 93, (184,361,0): 164, 160, 87, (184,362,0): 166, 160, 86, (184,363,0): 170, 167, 90, (184,364,0): 175, 172, 95, (184,365,0): 176, 175, 95, (184,366,0): 185, 182, 101, (184,367,0): 193, 192, 110, (184,368,0): 196, 195, 113, (184,369,0): 194, 193, 113, (184,370,0): 187, 184, 107, (184,371,0): 175, 171, 97, (184,372,0): 174, 167, 95, (184,373,0): 179, 172, 102, (184,374,0): 183, 176, 106, (184,375,0): 182, 175, 107, (184,376,0): 181, 173, 108, (184,377,0): 178, 170, 105, (184,378,0): 172, 167, 99, (184,379,0): 168, 165, 96, (184,380,0): 165, 165, 93, (184,381,0): 166, 168, 95, (184,382,0): 169, 173, 97, (184,383,0): 171, 175, 98, (184,384,0): 178, 179, 99, (184,385,0): 184, 186, 102, (184,386,0): 194, 197, 110, (184,387,0): 201, 206, 116, (184,388,0): 206, 211, 117, (184,389,0): 211, 219, 120, (184,390,0): 217, 225, 122, (184,391,0): 221, 230, 123, (184,392,0): 223, 232, 125, (184,393,0): 223, 231, 122, (184,394,0): 222, 228, 118, (184,395,0): 221, 225, 115, (184,396,0): 219, 221, 114, (184,397,0): 218, 217, 111, (184,398,0): 217, 214, 109, (184,399,0): 215, 212, 107, (184,400,0): 222, 221, 113, (184,401,0): 221, 223, 113, (184,402,0): 224, 226, 117, (184,403,0): 228, 230, 120, (184,404,0): 232, 234, 124, (184,405,0): 236, 238, 128, (184,406,0): 239, 241, 131, (184,407,0): 241, 244, 131, (184,408,0): 243, 246, 133, (184,409,0): 243, 246, 131, (184,410,0): 243, 246, 131, (184,411,0): 244, 247, 130, (184,412,0): 244, 247, 130, (184,413,0): 245, 248, 131, (184,414,0): 245, 248, 131, (184,415,0): 246, 249, 134, (184,416,0): 249, 251, 141, (184,417,0): 251, 250, 142, (184,418,0): 251, 251, 141, (184,419,0): 251, 251, 141, (184,420,0): 249, 252, 139, (184,421,0): 249, 252, 137, (184,422,0): 249, 252, 135, (184,423,0): 249, 253, 133, (184,424,0): 250, 254, 134, (184,425,0): 251, 255, 134, (184,426,0): 252, 255, 133, (184,427,0): 253, 255, 132, (184,428,0): 253, 255, 130, (184,429,0): 252, 255, 128, (184,430,0): 251, 255, 127, (184,431,0): 249, 255, 126, (184,432,0): 243, 254, 124, (184,433,0): 242, 254, 126, (184,434,0): 242, 253, 125, (184,435,0): 240, 252, 124, (184,436,0): 239, 251, 125, (184,437,0): 235, 249, 126, (184,438,0): 236, 247, 129, (184,439,0): 234, 247, 133, (184,440,0): 218, 230, 120, (184,441,0): 211, 224, 119, (184,442,0): 203, 215, 117, (184,443,0): 199, 212, 120, (184,444,0): 201, 211, 124, (184,445,0): 198, 210, 126, (184,446,0): 193, 204, 125, (184,447,0): 187, 198, 122, (184,448,0): 184, 187, 120, (184,449,0): 176, 178, 113, (184,450,0): 167, 169, 104, (184,451,0): 160, 165, 101, (184,452,0): 158, 162, 101, (184,453,0): 153, 159, 97, (184,454,0): 144, 150, 90, (184,455,0): 135, 143, 84, (184,456,0): 140, 149, 92, (184,457,0): 149, 160, 102, (184,458,0): 159, 172, 116, (184,459,0): 165, 180, 125, (184,460,0): 167, 184, 130, (184,461,0): 171, 188, 134, (184,462,0): 177, 195, 143, (184,463,0): 184, 202, 150, (184,464,0): 187, 206, 151, (184,465,0): 183, 202, 147, (184,466,0): 179, 197, 145, (184,467,0): 179, 197, 145, (184,468,0): 180, 200, 149, (184,469,0): 181, 201, 150, (184,470,0): 178, 200, 151, (184,471,0): 176, 198, 149, (184,472,0): 166, 188, 141, (184,473,0): 159, 181, 135, (184,474,0): 148, 171, 125, (184,475,0): 142, 165, 121, (184,476,0): 140, 166, 121, (184,477,0): 143, 168, 126, (184,478,0): 145, 170, 128, (184,479,0): 146, 171, 131, (184,480,0): 150, 175, 136, (184,481,0): 150, 174, 138, (184,482,0): 151, 175, 139, (184,483,0): 154, 178, 142, (184,484,0): 157, 181, 147, (184,485,0): 156, 180, 146, (184,486,0): 153, 177, 145, (184,487,0): 150, 173, 144, (184,488,0): 144, 167, 138, (184,489,0): 143, 166, 138, (184,490,0): 142, 165, 139, (184,491,0): 140, 162, 139, (184,492,0): 137, 159, 136, (184,493,0): 133, 155, 134, (184,494,0): 130, 152, 131, (184,495,0): 130, 149, 129, (184,496,0): 128, 145, 127, (184,497,0): 125, 139, 122, (184,498,0): 119, 132, 115, (184,499,0): 115, 128, 111, (184,500,0): 114, 125, 109, (184,501,0): 115, 123, 108, (184,502,0): 114, 120, 106, (184,503,0): 114, 118, 104, (184,504,0): 118, 118, 106, (184,505,0): 121, 119, 107, (184,506,0): 122, 118, 107, (184,507,0): 124, 117, 107, (184,508,0): 123, 114, 105, (184,509,0): 122, 113, 104, (184,510,0): 122, 112, 103, (184,511,0): 124, 111, 103, (184,512,0): 102, 87, 82, (184,513,0): 96, 78, 76, (184,514,0): 85, 70, 65, (184,515,0): 81, 66, 61, (184,516,0): 83, 68, 61, (184,517,0): 87, 72, 65, (184,518,0): 89, 76, 67, (184,519,0): 90, 78, 66, (184,520,0): 102, 90, 78, (184,521,0): 104, 95, 80, (184,522,0): 110, 101, 84, (184,523,0): 114, 105, 88, (184,524,0): 114, 107, 88, (184,525,0): 116, 109, 90, (184,526,0): 119, 113, 91, (184,527,0): 120, 115, 93, (184,528,0): 118, 116, 95, (184,529,0): 117, 116, 95, (184,530,0): 117, 116, 95, (184,531,0): 116, 115, 94, (184,532,0): 114, 116, 95, (184,533,0): 113, 115, 94, (184,534,0): 112, 115, 94, (184,535,0): 112, 115, 94, (184,536,0): 113, 116, 97, (184,537,0): 112, 115, 96, (184,538,0): 109, 113, 96, (184,539,0): 109, 113, 96, (184,540,0): 108, 115, 97, (184,541,0): 111, 118, 100, (184,542,0): 113, 120, 104, (184,543,0): 114, 123, 106, (184,544,0): 110, 123, 106, (184,545,0): 105, 119, 102, (184,546,0): 101, 115, 98, (184,547,0): 100, 114, 97, (184,548,0): 102, 116, 99, (184,549,0): 104, 118, 101, (184,550,0): 103, 117, 102, (184,551,0): 102, 116, 101, (184,552,0): 102, 116, 103, (184,553,0): 100, 114, 101, (184,554,0): 98, 111, 101, (184,555,0): 96, 109, 99, (184,556,0): 97, 110, 100, (184,557,0): 99, 112, 102, (184,558,0): 103, 116, 106, (184,559,0): 105, 118, 111, (184,560,0): 101, 115, 115, (184,561,0): 101, 116, 119, (184,562,0): 102, 120, 122, (184,563,0): 105, 123, 127, (184,564,0): 109, 127, 131, (184,565,0): 113, 130, 137, (184,566,0): 114, 133, 139, (184,567,0): 116, 135, 142, (184,568,0): 113, 133, 142, (184,569,0): 115, 135, 146, (184,570,0): 117, 137, 148, (184,571,0): 119, 138, 152, (184,572,0): 119, 141, 154, (184,573,0): 120, 142, 156, (184,574,0): 120, 142, 156, (184,575,0): 122, 141, 156, (184,576,0): 121, 139, 153, (184,577,0): 120, 136, 151, (184,578,0): 120, 133, 149, (184,579,0): 117, 130, 146, (184,580,0): 115, 127, 141, (184,581,0): 112, 124, 136, (184,582,0): 111, 121, 133, (184,583,0): 110, 120, 130, (184,584,0): 108, 115, 125, (184,585,0): 105, 112, 120, (184,586,0): 102, 106, 115, (184,587,0): 96, 101, 107, (184,588,0): 90, 93, 98, (184,589,0): 85, 88, 93, (184,590,0): 83, 84, 89, (184,591,0): 81, 82, 87, (184,592,0): 79, 80, 84, (184,593,0): 77, 78, 82, (184,594,0): 76, 75, 80, (184,595,0): 73, 71, 76, (184,596,0): 72, 67, 73, (184,597,0): 69, 64, 70, (184,598,0): 67, 60, 67, (184,599,0): 66, 59, 66, (185,0,0): 42, 30, 40, (185,1,0): 42, 30, 40, (185,2,0): 42, 30, 40, (185,3,0): 42, 30, 40, (185,4,0): 42, 30, 40, (185,5,0): 42, 30, 40, (185,6,0): 42, 30, 40, (185,7,0): 42, 30, 40, (185,8,0): 40, 28, 38, (185,9,0): 40, 28, 38, (185,10,0): 41, 29, 39, (185,11,0): 42, 30, 40, (185,12,0): 42, 30, 40, (185,13,0): 43, 31, 41, (185,14,0): 44, 32, 42, (185,15,0): 44, 32, 42, (185,16,0): 42, 30, 40, (185,17,0): 42, 30, 40, (185,18,0): 42, 30, 40, (185,19,0): 42, 30, 40, (185,20,0): 42, 30, 40, (185,21,0): 42, 30, 40, (185,22,0): 42, 30, 40, (185,23,0): 42, 30, 40, (185,24,0): 45, 33, 43, (185,25,0): 45, 33, 43, (185,26,0): 44, 32, 42, (185,27,0): 44, 32, 42, (185,28,0): 43, 31, 41, (185,29,0): 42, 30, 40, (185,30,0): 42, 30, 40, (185,31,0): 42, 28, 41, (185,32,0): 46, 29, 45, (185,33,0): 46, 29, 47, (185,34,0): 46, 29, 47, (185,35,0): 46, 29, 47, (185,36,0): 46, 29, 45, (185,37,0): 46, 29, 45, (185,38,0): 47, 29, 45, (185,39,0): 47, 29, 43, (185,40,0): 50, 29, 44, (185,41,0): 51, 30, 45, (185,42,0): 52, 30, 43, (185,43,0): 54, 32, 45, (185,44,0): 55, 33, 46, (185,45,0): 56, 34, 47, (185,46,0): 57, 35, 47, (185,47,0): 60, 34, 45, (185,48,0): 67, 35, 46, (185,49,0): 71, 35, 45, (185,50,0): 72, 37, 44, (185,51,0): 75, 38, 46, (185,52,0): 76, 39, 47, (185,53,0): 78, 38, 47, (185,54,0): 78, 38, 46, (185,55,0): 79, 38, 46, (185,56,0): 83, 40, 47, (185,57,0): 85, 40, 47, (185,58,0): 86, 41, 48, (185,59,0): 87, 40, 48, (185,60,0): 88, 41, 47, (185,61,0): 90, 41, 47, (185,62,0): 91, 42, 48, (185,63,0): 91, 42, 48, (185,64,0): 88, 41, 49, (185,65,0): 88, 41, 51, (185,66,0): 89, 39, 48, (185,67,0): 89, 39, 48, (185,68,0): 88, 38, 47, (185,69,0): 87, 38, 44, (185,70,0): 88, 37, 44, (185,71,0): 87, 36, 43, (185,72,0): 89, 36, 42, (185,73,0): 89, 36, 42, (185,74,0): 89, 36, 42, (185,75,0): 89, 37, 41, (185,76,0): 91, 36, 41, (185,77,0): 91, 36, 41, (185,78,0): 91, 36, 41, (185,79,0): 89, 37, 41, (185,80,0): 89, 36, 42, (185,81,0): 88, 37, 44, (185,82,0): 86, 37, 43, (185,83,0): 86, 37, 43, (185,84,0): 85, 36, 42, (185,85,0): 85, 36, 42, (185,86,0): 82, 35, 41, (185,87,0): 82, 35, 41, (185,88,0): 82, 37, 42, (185,89,0): 82, 37, 42, (185,90,0): 81, 36, 41, (185,91,0): 80, 35, 40, (185,92,0): 77, 35, 39, (185,93,0): 76, 34, 38, (185,94,0): 75, 33, 37, (185,95,0): 73, 32, 38, (185,96,0): 69, 29, 37, (185,97,0): 66, 31, 38, (185,98,0): 66, 31, 38, (185,99,0): 63, 30, 37, (185,100,0): 63, 30, 37, (185,101,0): 61, 30, 36, (185,102,0): 60, 31, 36, (185,103,0): 58, 31, 36, (185,104,0): 59, 32, 37, (185,105,0): 58, 33, 37, (185,106,0): 57, 32, 36, (185,107,0): 56, 31, 35, (185,108,0): 54, 29, 33, (185,109,0): 51, 26, 30, (185,110,0): 48, 23, 27, (185,111,0): 43, 22, 27, (185,112,0): 35, 20, 27, (185,113,0): 28, 17, 25, (185,114,0): 23, 12, 20, (185,115,0): 21, 10, 18, (185,116,0): 21, 10, 18, (185,117,0): 22, 11, 19, (185,118,0): 22, 11, 19, (185,119,0): 20, 9, 17, (185,120,0): 20, 9, 17, (185,121,0): 21, 10, 18, (185,122,0): 22, 11, 19, (185,123,0): 23, 12, 20, (185,124,0): 25, 14, 22, (185,125,0): 27, 16, 24, (185,126,0): 28, 17, 25, (185,127,0): 29, 16, 23, (185,128,0): 35, 18, 24, (185,129,0): 37, 18, 24, (185,130,0): 37, 18, 24, (185,131,0): 37, 18, 24, (185,132,0): 37, 18, 24, (185,133,0): 36, 17, 23, (185,134,0): 36, 17, 23, (185,135,0): 36, 17, 23, (185,136,0): 33, 14, 20, (185,137,0): 33, 14, 20, (185,138,0): 34, 15, 21, (185,139,0): 34, 15, 21, (185,140,0): 34, 15, 21, (185,141,0): 34, 15, 21, (185,142,0): 35, 16, 22, (185,143,0): 35, 16, 22, (185,144,0): 33, 17, 20, (185,145,0): 33, 17, 20, (185,146,0): 34, 18, 19, (185,147,0): 34, 18, 19, (185,148,0): 37, 18, 20, (185,149,0): 38, 19, 21, (185,150,0): 38, 20, 20, (185,151,0): 39, 21, 21, (185,152,0): 44, 24, 23, (185,153,0): 44, 24, 23, (185,154,0): 46, 25, 24, (185,155,0): 47, 26, 25, (185,156,0): 48, 27, 24, (185,157,0): 49, 28, 25, (185,158,0): 52, 28, 26, (185,159,0): 52, 28, 26, (185,160,0): 49, 28, 25, (185,161,0): 49, 28, 25, (185,162,0): 49, 28, 25, (185,163,0): 49, 28, 25, (185,164,0): 49, 28, 25, (185,165,0): 49, 28, 25, (185,166,0): 49, 28, 25, (185,167,0): 49, 28, 25, (185,168,0): 47, 26, 23, (185,169,0): 47, 26, 23, (185,170,0): 46, 25, 22, (185,171,0): 46, 25, 22, (185,172,0): 45, 24, 21, (185,173,0): 45, 24, 21, (185,174,0): 44, 23, 20, (185,175,0): 44, 23, 20, (185,176,0): 42, 23, 19, (185,177,0): 42, 23, 19, (185,178,0): 42, 23, 19, (185,179,0): 42, 23, 19, (185,180,0): 42, 23, 19, (185,181,0): 42, 23, 19, (185,182,0): 42, 23, 19, (185,183,0): 42, 23, 19, (185,184,0): 44, 25, 21, (185,185,0): 44, 25, 21, (185,186,0): 44, 25, 21, (185,187,0): 45, 26, 22, (185,188,0): 45, 26, 22, (185,189,0): 46, 27, 23, (185,190,0): 46, 27, 23, (185,191,0): 47, 26, 23, (185,192,0): 51, 27, 23, (185,193,0): 52, 27, 23, (185,194,0): 52, 27, 23, (185,195,0): 52, 27, 23, (185,196,0): 52, 27, 23, (185,197,0): 52, 27, 23, (185,198,0): 52, 27, 23, (185,199,0): 52, 27, 23, (185,200,0): 50, 25, 21, (185,201,0): 51, 26, 22, (185,202,0): 52, 27, 23, (185,203,0): 53, 28, 24, (185,204,0): 53, 28, 24, (185,205,0): 52, 27, 23, (185,206,0): 51, 26, 22, (185,207,0): 50, 25, 21, (185,208,0): 51, 26, 22, (185,209,0): 51, 26, 22, (185,210,0): 51, 26, 21, (185,211,0): 50, 25, 20, (185,212,0): 50, 25, 20, (185,213,0): 49, 24, 19, (185,214,0): 49, 24, 17, (185,215,0): 49, 24, 17, (185,216,0): 50, 26, 16, (185,217,0): 50, 26, 16, (185,218,0): 50, 26, 16, (185,219,0): 50, 26, 16, (185,220,0): 50, 26, 14, (185,221,0): 50, 26, 14, (185,222,0): 50, 26, 14, (185,223,0): 50, 26, 14, (185,224,0): 54, 25, 19, (185,225,0): 54, 25, 19, (185,226,0): 55, 26, 20, (185,227,0): 56, 27, 21, (185,228,0): 56, 27, 19, (185,229,0): 55, 26, 18, (185,230,0): 54, 25, 17, (185,231,0): 54, 25, 17, (185,232,0): 56, 28, 17, (185,233,0): 57, 29, 18, (185,234,0): 60, 32, 20, (185,235,0): 61, 33, 21, (185,236,0): 61, 33, 21, (185,237,0): 59, 31, 19, (185,238,0): 57, 29, 15, (185,239,0): 55, 27, 13, (185,240,0): 55, 27, 13, (185,241,0): 56, 28, 14, (185,242,0): 58, 30, 18, (185,243,0): 59, 31, 19, (185,244,0): 59, 33, 20, (185,245,0): 59, 33, 20, (185,246,0): 56, 32, 20, (185,247,0): 56, 32, 20, (185,248,0): 52, 28, 18, (185,249,0): 52, 28, 18, (185,250,0): 50, 28, 17, (185,251,0): 50, 28, 17, (185,252,0): 47, 27, 18, (185,253,0): 47, 27, 18, (185,254,0): 46, 26, 17, (185,255,0): 46, 26, 17, (185,256,0): 49, 28, 23, (185,257,0): 49, 28, 23, (185,258,0): 49, 28, 23, (185,259,0): 50, 29, 24, (185,260,0): 52, 28, 24, (185,261,0): 53, 29, 25, (185,262,0): 54, 29, 25, (185,263,0): 54, 29, 25, (185,264,0): 56, 31, 27, (185,265,0): 57, 32, 28, (185,266,0): 59, 31, 28, (185,267,0): 60, 32, 29, (185,268,0): 63, 33, 31, (185,269,0): 64, 34, 32, (185,270,0): 64, 34, 32, (185,271,0): 65, 36, 32, (185,272,0): 66, 37, 31, (185,273,0): 66, 37, 31, (185,274,0): 67, 38, 30, (185,275,0): 69, 40, 32, (185,276,0): 71, 43, 32, (185,277,0): 75, 47, 36, (185,278,0): 78, 50, 38, (185,279,0): 80, 52, 38, (185,280,0): 80, 53, 36, (185,281,0): 80, 53, 36, (185,282,0): 80, 53, 34, (185,283,0): 80, 53, 32, (185,284,0): 80, 53, 32, (185,285,0): 80, 53, 32, (185,286,0): 80, 54, 31, (185,287,0): 79, 55, 31, (185,288,0): 81, 57, 33, (185,289,0): 78, 56, 32, (185,290,0): 77, 55, 32, (185,291,0): 76, 54, 33, (185,292,0): 74, 53, 34, (185,293,0): 73, 52, 35, (185,294,0): 72, 50, 36, (185,295,0): 71, 49, 35, (185,296,0): 73, 54, 39, (185,297,0): 74, 55, 40, (185,298,0): 75, 58, 42, (185,299,0): 78, 61, 43, (185,300,0): 81, 64, 46, (185,301,0): 84, 67, 47, (185,302,0): 85, 70, 49, (185,303,0): 86, 71, 48, (185,304,0): 90, 76, 50, (185,305,0): 91, 77, 50, (185,306,0): 92, 78, 51, (185,307,0): 94, 80, 53, (185,308,0): 96, 81, 52, (185,309,0): 98, 83, 54, (185,310,0): 100, 83, 53, (185,311,0): 101, 84, 54, (185,312,0): 103, 87, 54, (185,313,0): 105, 89, 55, (185,314,0): 110, 91, 58, (185,315,0): 114, 96, 60, (185,316,0): 118, 98, 63, (185,317,0): 120, 100, 63, (185,318,0): 121, 101, 66, (185,319,0): 123, 101, 60, (185,320,0): 126, 103, 51, (185,321,0): 141, 117, 57, (185,322,0): 155, 131, 69, (185,323,0): 160, 139, 72, (185,324,0): 161, 141, 70, (185,325,0): 162, 144, 68, (185,326,0): 169, 152, 72, (185,327,0): 175, 160, 77, (185,328,0): 181, 166, 83, (185,329,0): 183, 171, 87, (185,330,0): 187, 175, 93, (185,331,0): 188, 177, 98, (185,332,0): 184, 175, 100, (185,333,0): 183, 173, 102, (185,334,0): 183, 173, 104, (185,335,0): 183, 174, 107, (185,336,0): 176, 169, 99, (185,337,0): 173, 169, 96, (185,338,0): 171, 167, 94, (185,339,0): 170, 166, 93, (185,340,0): 171, 167, 94, (185,341,0): 174, 170, 97, (185,342,0): 177, 173, 100, (185,343,0): 179, 175, 102, (185,344,0): 183, 176, 104, (185,345,0): 183, 176, 104, (185,346,0): 184, 177, 105, (185,347,0): 184, 177, 105, (185,348,0): 185, 178, 106, (185,349,0): 187, 180, 108, (185,350,0): 189, 181, 109, (185,351,0): 189, 181, 108, (185,352,0): 188, 181, 103, (185,353,0): 189, 182, 102, (185,354,0): 190, 183, 105, (185,355,0): 189, 183, 107, (185,356,0): 189, 181, 108, (185,357,0): 186, 180, 106, (185,358,0): 184, 177, 105, (185,359,0): 180, 176, 103, (185,360,0): 176, 172, 99, (185,361,0): 169, 167, 93, (185,362,0): 168, 166, 92, (185,363,0): 172, 170, 95, (185,364,0): 175, 173, 96, (185,365,0): 174, 175, 95, (185,366,0): 182, 181, 101, (185,367,0): 188, 190, 107, (185,368,0): 192, 193, 113, (185,369,0): 191, 192, 114, (185,370,0): 184, 182, 107, (185,371,0): 172, 170, 95, (185,372,0): 169, 165, 94, (185,373,0): 173, 169, 98, (185,374,0): 178, 171, 103, (185,375,0): 176, 169, 101, (185,376,0): 173, 165, 100, (185,377,0): 172, 165, 97, (185,378,0): 167, 162, 94, (185,379,0): 164, 161, 90, (185,380,0): 162, 162, 90, (185,381,0): 163, 165, 90, (185,382,0): 166, 170, 94, (185,383,0): 168, 173, 93, (185,384,0): 177, 181, 97, (185,385,0): 184, 187, 100, (185,386,0): 192, 197, 107, (185,387,0): 201, 206, 112, (185,388,0): 206, 214, 115, (185,389,0): 213, 221, 118, (185,390,0): 219, 228, 121, (185,391,0): 224, 234, 122, (185,392,0): 228, 238, 126, (185,393,0): 227, 237, 124, (185,394,0): 228, 235, 121, (185,395,0): 228, 232, 121, (185,396,0): 226, 228, 118, (185,397,0): 226, 225, 117, (185,398,0): 226, 223, 116, (185,399,0): 224, 223, 115, (185,400,0): 227, 229, 119, (185,401,0): 229, 231, 121, (185,402,0): 231, 233, 123, (185,403,0): 234, 236, 126, (185,404,0): 238, 240, 130, (185,405,0): 241, 243, 133, (185,406,0): 243, 246, 133, (185,407,0): 245, 248, 135, (185,408,0): 246, 249, 134, (185,409,0): 246, 249, 134, (185,410,0): 247, 250, 133, (185,411,0): 247, 250, 133, (185,412,0): 248, 251, 134, (185,413,0): 248, 251, 134, (185,414,0): 249, 252, 135, (185,415,0): 249, 252, 137, (185,416,0): 252, 252, 142, (185,417,0): 252, 252, 142, (185,418,0): 252, 252, 142, (185,419,0): 252, 252, 140, (185,420,0): 252, 252, 138, (185,421,0): 250, 253, 138, (185,422,0): 250, 253, 136, (185,423,0): 250, 253, 136, (185,424,0): 250, 254, 134, (185,425,0): 251, 255, 134, (185,426,0): 252, 255, 133, (185,427,0): 253, 255, 132, (185,428,0): 253, 255, 130, (185,429,0): 251, 255, 128, (185,430,0): 250, 255, 128, (185,431,0): 247, 255, 127, (185,432,0): 245, 255, 129, (185,433,0): 243, 255, 131, (185,434,0): 243, 255, 129, (185,435,0): 239, 254, 129, (185,436,0): 237, 251, 128, (185,437,0): 234, 250, 128, (185,438,0): 233, 248, 131, (185,439,0): 232, 246, 133, (185,440,0): 217, 230, 122, (185,441,0): 209, 224, 121, (185,442,0): 201, 215, 118, (185,443,0): 199, 214, 121, (185,444,0): 201, 215, 128, (185,445,0): 201, 214, 132, (185,446,0): 198, 211, 132, (185,447,0): 194, 206, 132, (185,448,0): 187, 194, 127, (185,449,0): 180, 185, 121, (185,450,0): 170, 176, 112, (185,451,0): 164, 170, 108, (185,452,0): 160, 166, 106, (185,453,0): 155, 160, 102, (185,454,0): 146, 151, 93, (185,455,0): 137, 145, 88, (185,456,0): 139, 146, 92, (185,457,0): 146, 155, 102, (185,458,0): 156, 166, 114, (185,459,0): 160, 172, 122, (185,460,0): 162, 176, 127, (185,461,0): 165, 181, 132, (185,462,0): 173, 189, 142, (185,463,0): 179, 197, 149, (185,464,0): 179, 197, 147, (185,465,0): 177, 195, 145, (185,466,0): 175, 193, 145, (185,467,0): 175, 193, 145, (185,468,0): 177, 194, 149, (185,469,0): 176, 195, 149, (185,470,0): 172, 191, 146, (185,471,0): 167, 189, 143, (185,472,0): 161, 182, 139, (185,473,0): 154, 175, 132, (185,474,0): 145, 166, 123, (185,475,0): 139, 162, 120, (185,476,0): 139, 162, 120, (185,477,0): 140, 165, 125, (185,478,0): 143, 168, 128, (185,479,0): 144, 169, 130, (185,480,0): 146, 170, 134, (185,481,0): 146, 170, 134, (185,482,0): 149, 171, 135, (185,483,0): 151, 175, 141, (185,484,0): 156, 177, 144, (185,485,0): 154, 178, 146, (185,486,0): 153, 173, 145, (185,487,0): 148, 171, 143, (185,488,0): 145, 165, 138, (185,489,0): 142, 165, 139, (185,490,0): 143, 162, 140, (185,491,0): 139, 161, 138, (185,492,0): 138, 157, 137, (185,493,0): 133, 155, 134, (185,494,0): 132, 151, 131, (185,495,0): 130, 149, 130, (185,496,0): 128, 145, 127, (185,497,0): 125, 139, 122, (185,498,0): 119, 133, 116, (185,499,0): 116, 129, 112, (185,500,0): 116, 127, 111, (185,501,0): 116, 124, 109, (185,502,0): 115, 121, 107, (185,503,0): 114, 118, 104, (185,504,0): 114, 114, 102, (185,505,0): 116, 114, 102, (185,506,0): 116, 112, 101, (185,507,0): 118, 111, 101, (185,508,0): 119, 110, 101, (185,509,0): 119, 109, 100, (185,510,0): 116, 106, 97, (185,511,0): 116, 103, 97, (185,512,0): 93, 78, 75, (185,513,0): 89, 74, 71, (185,514,0): 84, 69, 64, (185,515,0): 81, 68, 62, (185,516,0): 84, 69, 62, (185,517,0): 87, 74, 66, (185,518,0): 91, 78, 69, (185,519,0): 91, 81, 69, (185,520,0): 101, 91, 79, (185,521,0): 105, 98, 82, (185,522,0): 113, 104, 87, (185,523,0): 117, 110, 92, (185,524,0): 118, 111, 92, (185,525,0): 118, 113, 93, (185,526,0): 121, 115, 93, (185,527,0): 122, 117, 95, (185,528,0): 119, 117, 96, (185,529,0): 118, 117, 96, (185,530,0): 117, 116, 95, (185,531,0): 117, 116, 95, (185,532,0): 114, 116, 95, (185,533,0): 113, 115, 94, (185,534,0): 112, 115, 94, (185,535,0): 111, 114, 93, (185,536,0): 110, 113, 94, (185,537,0): 109, 112, 93, (185,538,0): 107, 111, 94, (185,539,0): 106, 110, 93, (185,540,0): 105, 112, 94, (185,541,0): 108, 115, 97, (185,542,0): 111, 118, 102, (185,543,0): 112, 121, 104, (185,544,0): 109, 122, 105, (185,545,0): 105, 119, 102, (185,546,0): 101, 115, 98, (185,547,0): 101, 115, 98, (185,548,0): 103, 117, 100, (185,549,0): 104, 118, 101, (185,550,0): 103, 117, 102, (185,551,0): 102, 116, 101, (185,552,0): 101, 115, 102, (185,553,0): 99, 113, 100, (185,554,0): 97, 110, 100, (185,555,0): 96, 109, 99, (185,556,0): 96, 109, 99, (185,557,0): 98, 111, 101, (185,558,0): 101, 114, 104, (185,559,0): 103, 116, 109, (185,560,0): 101, 115, 115, (185,561,0): 102, 117, 120, (185,562,0): 104, 119, 124, (185,563,0): 105, 123, 127, (185,564,0): 109, 126, 133, (185,565,0): 112, 129, 136, (185,566,0): 115, 132, 140, (185,567,0): 115, 134, 141, (185,568,0): 114, 132, 144, (185,569,0): 115, 135, 146, (185,570,0): 117, 136, 150, (185,571,0): 119, 138, 152, (185,572,0): 120, 139, 154, (185,573,0): 119, 141, 155, (185,574,0): 119, 140, 157, (185,575,0): 121, 140, 155, (185,576,0): 119, 136, 152, (185,577,0): 119, 135, 150, (185,578,0): 119, 132, 148, (185,579,0): 117, 130, 146, (185,580,0): 115, 127, 141, (185,581,0): 112, 124, 136, (185,582,0): 112, 122, 134, (185,583,0): 111, 121, 131, (185,584,0): 110, 117, 127, (185,585,0): 107, 114, 122, (185,586,0): 104, 108, 117, (185,587,0): 98, 103, 109, (185,588,0): 92, 95, 100, (185,589,0): 86, 89, 94, (185,590,0): 84, 85, 90, (185,591,0): 81, 82, 87, (185,592,0): 80, 81, 85, (185,593,0): 79, 80, 84, (185,594,0): 77, 76, 81, (185,595,0): 74, 73, 78, (185,596,0): 71, 69, 74, (185,597,0): 70, 65, 71, (185,598,0): 68, 61, 68, (185,599,0): 67, 60, 67, (186,0,0): 43, 31, 41, (186,1,0): 43, 31, 41, (186,2,0): 43, 31, 41, (186,3,0): 43, 31, 41, (186,4,0): 43, 31, 41, (186,5,0): 43, 31, 41, (186,6,0): 43, 31, 41, (186,7,0): 43, 31, 41, (186,8,0): 41, 29, 39, (186,9,0): 41, 29, 39, (186,10,0): 41, 29, 39, (186,11,0): 42, 30, 40, (186,12,0): 42, 30, 40, (186,13,0): 43, 31, 41, (186,14,0): 43, 31, 41, (186,15,0): 43, 31, 41, (186,16,0): 43, 31, 41, (186,17,0): 43, 31, 41, (186,18,0): 43, 31, 41, (186,19,0): 43, 31, 41, (186,20,0): 43, 31, 41, (186,21,0): 43, 31, 41, (186,22,0): 43, 31, 41, (186,23,0): 43, 31, 41, (186,24,0): 46, 34, 44, (186,25,0): 46, 34, 44, (186,26,0): 45, 33, 43, (186,27,0): 45, 33, 43, (186,28,0): 45, 33, 43, (186,29,0): 44, 32, 42, (186,30,0): 44, 32, 42, (186,31,0): 45, 31, 44, (186,32,0): 46, 29, 45, (186,33,0): 47, 28, 47, (186,34,0): 47, 29, 45, (186,35,0): 47, 29, 45, (186,36,0): 47, 29, 45, (186,37,0): 47, 29, 45, (186,38,0): 49, 28, 43, (186,39,0): 49, 28, 43, (186,40,0): 54, 31, 47, (186,41,0): 54, 32, 45, (186,42,0): 56, 32, 46, (186,43,0): 57, 33, 47, (186,44,0): 58, 34, 47, (186,45,0): 59, 35, 48, (186,46,0): 59, 35, 48, (186,47,0): 62, 36, 47, (186,48,0): 69, 39, 49, (186,49,0): 71, 38, 47, (186,50,0): 70, 37, 44, (186,51,0): 72, 37, 44, (186,52,0): 72, 37, 44, (186,53,0): 73, 36, 44, (186,54,0): 76, 36, 44, (186,55,0): 78, 37, 45, (186,56,0): 81, 40, 46, (186,57,0): 82, 39, 46, (186,58,0): 83, 40, 47, (186,59,0): 85, 40, 47, (186,60,0): 87, 40, 46, (186,61,0): 87, 40, 46, (186,62,0): 88, 41, 47, (186,63,0): 88, 41, 47, (186,64,0): 87, 40, 48, (186,65,0): 87, 40, 48, (186,66,0): 86, 39, 47, (186,67,0): 86, 39, 47, (186,68,0): 88, 39, 45, (186,69,0): 87, 38, 44, (186,70,0): 87, 38, 44, (186,71,0): 87, 38, 42, (186,72,0): 88, 37, 42, (186,73,0): 88, 37, 42, (186,74,0): 89, 37, 41, (186,75,0): 89, 37, 41, (186,76,0): 89, 37, 41, (186,77,0): 89, 37, 39, (186,78,0): 91, 36, 39, (186,79,0): 89, 37, 41, (186,80,0): 89, 36, 42, (186,81,0): 88, 37, 44, (186,82,0): 86, 37, 43, (186,83,0): 86, 37, 43, (186,84,0): 85, 36, 42, (186,85,0): 85, 36, 42, (186,86,0): 82, 35, 41, (186,87,0): 82, 35, 41, (186,88,0): 82, 37, 42, (186,89,0): 81, 36, 41, (186,90,0): 80, 35, 40, (186,91,0): 79, 34, 39, (186,92,0): 76, 34, 38, (186,93,0): 75, 33, 37, (186,94,0): 74, 32, 36, (186,95,0): 73, 32, 38, (186,96,0): 67, 30, 37, (186,97,0): 66, 31, 38, (186,98,0): 66, 31, 38, (186,99,0): 63, 30, 37, (186,100,0): 62, 31, 37, (186,101,0): 60, 31, 36, (186,102,0): 58, 31, 36, (186,103,0): 57, 32, 36, (186,104,0): 58, 33, 37, (186,105,0): 58, 33, 37, (186,106,0): 57, 32, 36, (186,107,0): 56, 31, 35, (186,108,0): 55, 28, 33, (186,109,0): 52, 25, 30, (186,110,0): 49, 22, 27, (186,111,0): 45, 22, 28, (186,112,0): 35, 20, 27, (186,113,0): 27, 16, 24, (186,114,0): 22, 11, 19, (186,115,0): 20, 9, 17, (186,116,0): 21, 10, 18, (186,117,0): 22, 11, 19, (186,118,0): 21, 10, 18, (186,119,0): 20, 9, 17, (186,120,0): 21, 10, 18, (186,121,0): 21, 10, 18, (186,122,0): 22, 11, 19, (186,123,0): 24, 13, 21, (186,124,0): 26, 15, 23, (186,125,0): 27, 16, 24, (186,126,0): 28, 17, 25, (186,127,0): 30, 17, 24, (186,128,0): 35, 18, 24, (186,129,0): 37, 18, 22, (186,130,0): 37, 18, 22, (186,131,0): 37, 18, 22, (186,132,0): 37, 18, 22, (186,133,0): 38, 19, 23, (186,134,0): 38, 19, 23, (186,135,0): 38, 19, 23, (186,136,0): 36, 17, 21, (186,137,0): 36, 17, 21, (186,138,0): 36, 17, 21, (186,139,0): 35, 16, 20, (186,140,0): 35, 16, 20, (186,141,0): 35, 16, 20, (186,142,0): 34, 15, 19, (186,143,0): 34, 15, 19, (186,144,0): 32, 16, 19, (186,145,0): 32, 16, 19, (186,146,0): 33, 17, 18, (186,147,0): 35, 19, 20, (186,148,0): 38, 19, 21, (186,149,0): 39, 20, 22, (186,150,0): 40, 22, 22, (186,151,0): 41, 23, 23, (186,152,0): 44, 24, 23, (186,153,0): 44, 24, 23, (186,154,0): 46, 25, 24, (186,155,0): 47, 26, 25, (186,156,0): 48, 27, 24, (186,157,0): 49, 28, 25, (186,158,0): 52, 28, 26, (186,159,0): 52, 28, 26, (186,160,0): 49, 28, 25, (186,161,0): 49, 28, 25, (186,162,0): 49, 28, 25, (186,163,0): 49, 28, 25, (186,164,0): 49, 28, 25, (186,165,0): 49, 28, 25, (186,166,0): 49, 28, 25, (186,167,0): 49, 28, 25, (186,168,0): 47, 26, 23, (186,169,0): 47, 26, 23, (186,170,0): 46, 25, 22, (186,171,0): 46, 25, 22, (186,172,0): 45, 24, 21, (186,173,0): 45, 24, 21, (186,174,0): 44, 23, 20, (186,175,0): 44, 23, 20, (186,176,0): 42, 23, 19, (186,177,0): 42, 23, 19, (186,178,0): 42, 23, 19, (186,179,0): 42, 23, 19, (186,180,0): 42, 23, 19, (186,181,0): 42, 23, 19, (186,182,0): 42, 23, 19, (186,183,0): 42, 23, 19, (186,184,0): 43, 24, 20, (186,185,0): 43, 24, 20, (186,186,0): 43, 24, 20, (186,187,0): 44, 25, 21, (186,188,0): 44, 25, 21, (186,189,0): 45, 26, 22, (186,190,0): 45, 26, 22, (186,191,0): 46, 25, 22, (186,192,0): 51, 27, 25, (186,193,0): 52, 26, 25, (186,194,0): 52, 26, 25, (186,195,0): 52, 26, 25, (186,196,0): 52, 26, 25, (186,197,0): 52, 26, 25, (186,198,0): 52, 26, 25, (186,199,0): 52, 26, 25, (186,200,0): 50, 24, 23, (186,201,0): 51, 25, 24, (186,202,0): 52, 26, 25, (186,203,0): 53, 27, 26, (186,204,0): 53, 27, 26, (186,205,0): 52, 26, 25, (186,206,0): 51, 25, 24, (186,207,0): 50, 24, 23, (186,208,0): 51, 26, 22, (186,209,0): 51, 26, 22, (186,210,0): 51, 26, 21, (186,211,0): 50, 25, 20, (186,212,0): 50, 25, 20, (186,213,0): 49, 24, 19, (186,214,0): 49, 24, 17, (186,215,0): 49, 24, 17, (186,216,0): 50, 26, 16, (186,217,0): 50, 26, 16, (186,218,0): 50, 26, 16, (186,219,0): 50, 26, 16, (186,220,0): 50, 26, 14, (186,221,0): 50, 26, 14, (186,222,0): 50, 26, 14, (186,223,0): 50, 26, 14, (186,224,0): 54, 25, 19, (186,225,0): 55, 26, 20, (186,226,0): 56, 27, 21, (186,227,0): 57, 28, 22, (186,228,0): 57, 28, 20, (186,229,0): 56, 27, 19, (186,230,0): 55, 26, 18, (186,231,0): 54, 25, 17, (186,232,0): 55, 27, 16, (186,233,0): 57, 29, 18, (186,234,0): 59, 31, 19, (186,235,0): 60, 32, 20, (186,236,0): 60, 32, 20, (186,237,0): 59, 31, 19, (186,238,0): 57, 29, 15, (186,239,0): 55, 27, 13, (186,240,0): 57, 29, 15, (186,241,0): 58, 30, 16, (186,242,0): 60, 32, 20, (186,243,0): 61, 33, 21, (186,244,0): 60, 34, 21, (186,245,0): 60, 34, 21, (186,246,0): 57, 33, 21, (186,247,0): 57, 33, 21, (186,248,0): 53, 29, 19, (186,249,0): 53, 29, 19, (186,250,0): 51, 29, 18, (186,251,0): 51, 29, 18, (186,252,0): 48, 28, 19, (186,253,0): 48, 28, 19, (186,254,0): 47, 27, 18, (186,255,0): 47, 27, 18, (186,256,0): 49, 28, 23, (186,257,0): 49, 28, 23, (186,258,0): 49, 28, 23, (186,259,0): 50, 29, 24, (186,260,0): 52, 28, 24, (186,261,0): 53, 29, 25, (186,262,0): 54, 29, 25, (186,263,0): 54, 29, 25, (186,264,0): 56, 31, 27, (186,265,0): 57, 32, 28, (186,266,0): 59, 31, 28, (186,267,0): 60, 32, 29, (186,268,0): 63, 33, 31, (186,269,0): 64, 34, 32, (186,270,0): 64, 34, 32, (186,271,0): 65, 36, 32, (186,272,0): 66, 37, 31, (186,273,0): 66, 37, 29, (186,274,0): 67, 38, 30, (186,275,0): 69, 40, 32, (186,276,0): 72, 44, 33, (186,277,0): 75, 47, 36, (186,278,0): 78, 50, 38, (186,279,0): 80, 52, 38, (186,280,0): 81, 54, 37, (186,281,0): 81, 54, 37, (186,282,0): 81, 54, 35, (186,283,0): 81, 54, 33, (186,284,0): 81, 54, 33, (186,285,0): 81, 55, 32, (186,286,0): 81, 55, 32, (186,287,0): 80, 56, 32, (186,288,0): 82, 58, 32, (186,289,0): 80, 58, 34, (186,290,0): 79, 57, 34, (186,291,0): 78, 56, 35, (186,292,0): 76, 55, 36, (186,293,0): 75, 54, 37, (186,294,0): 74, 52, 38, (186,295,0): 74, 52, 38, (186,296,0): 73, 54, 40, (186,297,0): 74, 55, 40, (186,298,0): 75, 58, 42, (186,299,0): 77, 60, 42, (186,300,0): 80, 63, 45, (186,301,0): 82, 65, 45, (186,302,0): 83, 68, 47, (186,303,0): 84, 69, 46, (186,304,0): 88, 76, 50, (186,305,0): 89, 78, 50, (186,306,0): 92, 78, 49, (186,307,0): 94, 80, 51, (186,308,0): 95, 81, 52, (186,309,0): 97, 83, 54, (186,310,0): 99, 84, 53, (186,311,0): 100, 85, 54, (186,312,0): 103, 87, 54, (186,313,0): 105, 89, 56, (186,314,0): 108, 92, 59, (186,315,0): 111, 95, 61, (186,316,0): 116, 97, 64, (186,317,0): 117, 99, 63, (186,318,0): 118, 99, 66, (186,319,0): 119, 100, 60, (186,320,0): 126, 104, 55, (186,321,0): 139, 117, 60, (186,322,0): 154, 132, 72, (186,323,0): 162, 143, 77, (186,324,0): 165, 146, 77, (186,325,0): 165, 149, 72, (186,326,0): 167, 155, 73, (186,327,0): 171, 161, 76, (186,328,0): 178, 168, 81, (186,329,0): 180, 172, 87, (186,330,0): 185, 177, 94, (186,331,0): 186, 179, 99, (186,332,0): 183, 177, 101, (186,333,0): 182, 175, 103, (186,334,0): 182, 175, 105, (186,335,0): 181, 176, 108, (186,336,0): 171, 171, 99, (186,337,0): 169, 171, 98, (186,338,0): 169, 171, 98, (186,339,0): 170, 172, 99, (186,340,0): 173, 173, 101, (186,341,0): 177, 177, 105, (186,342,0): 183, 180, 109, (186,343,0): 185, 182, 111, (186,344,0): 187, 184, 113, (186,345,0): 187, 184, 113, (186,346,0): 189, 185, 114, (186,347,0): 190, 186, 115, (186,348,0): 191, 187, 116, (186,349,0): 192, 188, 117, (186,350,0): 195, 188, 118, (186,351,0): 195, 188, 116, (186,352,0): 189, 183, 107, (186,353,0): 191, 185, 107, (186,354,0): 193, 187, 111, (186,355,0): 193, 190, 113, (186,356,0): 195, 189, 115, (186,357,0): 191, 187, 114, (186,358,0): 188, 184, 113, (186,359,0): 185, 182, 111, (186,360,0): 180, 177, 106, (186,361,0): 172, 172, 98, (186,362,0): 170, 170, 96, (186,363,0): 173, 174, 98, (186,364,0): 175, 176, 98, (186,365,0): 173, 176, 95, (186,366,0): 178, 179, 99, (186,367,0): 184, 187, 106, (186,368,0): 189, 192, 113, (186,369,0): 188, 191, 112, (186,370,0): 180, 181, 105, (186,371,0): 168, 166, 91, (186,372,0): 164, 160, 89, (186,373,0): 166, 162, 91, (186,374,0): 170, 163, 95, (186,375,0): 167, 160, 92, (186,376,0): 166, 159, 91, (186,377,0): 166, 159, 91, (186,378,0): 164, 159, 91, (186,379,0): 163, 160, 89, (186,380,0): 163, 163, 89, (186,381,0): 164, 167, 90, (186,382,0): 167, 170, 93, (186,383,0): 168, 171, 90, (186,384,0): 177, 179, 95, (186,385,0): 184, 187, 98, (186,386,0): 192, 197, 105, (186,387,0): 201, 207, 111, (186,388,0): 208, 216, 115, (186,389,0): 213, 224, 119, (186,390,0): 221, 233, 121, (186,391,0): 226, 239, 123, (186,392,0): 235, 245, 130, (186,393,0): 235, 246, 128, (186,394,0): 236, 243, 127, (186,395,0): 237, 242, 126, (186,396,0): 237, 240, 127, (186,397,0): 236, 238, 128, (186,398,0): 237, 237, 127, (186,399,0): 236, 236, 126, (186,400,0): 238, 240, 130, (186,401,0): 239, 241, 131, (186,402,0): 240, 242, 132, (186,403,0): 243, 245, 135, (186,404,0): 245, 248, 135, (186,405,0): 247, 250, 137, (186,406,0): 249, 252, 139, (186,407,0): 249, 252, 139, (186,408,0): 250, 253, 138, (186,409,0): 250, 253, 138, (186,410,0): 250, 253, 136, (186,411,0): 251, 254, 137, (186,412,0): 251, 254, 137, (186,413,0): 252, 255, 138, (186,414,0): 252, 255, 136, (186,415,0): 252, 255, 138, (186,416,0): 253, 253, 141, (186,417,0): 254, 252, 141, (186,418,0): 254, 252, 141, (186,419,0): 253, 253, 141, (186,420,0): 253, 253, 139, (186,421,0): 253, 253, 139, (186,422,0): 253, 254, 137, (186,423,0): 253, 254, 137, (186,424,0): 250, 254, 134, (186,425,0): 251, 255, 134, (186,426,0): 251, 255, 133, (186,427,0): 252, 255, 132, (186,428,0): 252, 255, 132, (186,429,0): 251, 255, 129, (186,430,0): 250, 255, 130, (186,431,0): 246, 255, 129, (186,432,0): 246, 255, 136, (186,433,0): 244, 255, 136, (186,434,0): 243, 255, 136, (186,435,0): 240, 255, 134, (186,436,0): 237, 252, 133, (186,437,0): 233, 251, 133, (186,438,0): 231, 248, 133, (186,439,0): 231, 248, 136, (186,440,0): 217, 233, 126, (186,441,0): 209, 226, 124, (186,442,0): 202, 218, 120, (186,443,0): 199, 216, 124, (186,444,0): 203, 218, 133, (186,445,0): 205, 220, 137, (186,446,0): 204, 218, 139, (186,447,0): 201, 215, 140, (186,448,0): 191, 202, 134, (186,449,0): 185, 194, 131, (186,450,0): 175, 184, 121, (186,451,0): 168, 176, 116, (186,452,0): 163, 171, 111, (186,453,0): 157, 162, 104, (186,454,0): 148, 153, 97, (186,455,0): 140, 145, 91, (186,456,0): 139, 143, 93, (186,457,0): 142, 148, 100, (186,458,0): 148, 156, 109, (186,459,0): 152, 161, 114, (186,460,0): 153, 165, 119, (186,461,0): 157, 170, 124, (186,462,0): 166, 179, 135, (186,463,0): 171, 187, 142, (186,464,0): 169, 185, 140, (186,465,0): 169, 185, 140, (186,466,0): 171, 186, 143, (186,467,0): 172, 189, 145, (186,468,0): 172, 189, 145, (186,469,0): 169, 186, 142, (186,470,0): 164, 181, 139, (186,471,0): 158, 176, 134, (186,472,0): 154, 172, 132, (186,473,0): 146, 167, 126, (186,474,0): 139, 160, 119, (186,475,0): 135, 156, 117, (186,476,0): 137, 158, 119, (186,477,0): 140, 162, 124, (186,478,0): 143, 165, 127, (186,479,0): 144, 166, 128, (186,480,0): 144, 166, 130, (186,481,0): 144, 165, 132, (186,482,0): 147, 166, 134, (186,483,0): 150, 171, 140, (186,484,0): 154, 173, 143, (186,485,0): 154, 174, 146, (186,486,0): 152, 171, 143, (186,487,0): 148, 168, 141, (186,488,0): 144, 162, 138, (186,489,0): 143, 162, 140, (186,490,0): 143, 161, 139, (186,491,0): 140, 159, 139, (186,492,0): 138, 155, 137, (186,493,0): 134, 153, 134, (186,494,0): 132, 149, 131, (186,495,0): 129, 147, 131, (186,496,0): 128, 145, 129, (186,497,0): 124, 141, 125, (186,498,0): 121, 135, 120, (186,499,0): 118, 130, 116, (186,500,0): 118, 129, 115, (186,501,0): 118, 126, 113, (186,502,0): 115, 121, 109, (186,503,0): 114, 117, 106, (186,504,0): 111, 111, 101, (186,505,0): 110, 107, 98, (186,506,0): 108, 104, 95, (186,507,0): 111, 104, 96, (186,508,0): 114, 105, 98, (186,509,0): 113, 102, 96, (186,510,0): 110, 97, 91, (186,511,0): 105, 92, 86, (186,512,0): 84, 69, 66, (186,513,0): 82, 68, 65, (186,514,0): 81, 68, 62, (186,515,0): 79, 68, 62, (186,516,0): 82, 69, 61, (186,517,0): 85, 75, 66, (186,518,0): 91, 81, 71, (186,519,0): 95, 87, 74, (186,520,0): 102, 94, 81, (186,521,0): 108, 102, 86, (186,522,0): 117, 110, 92, (186,523,0): 122, 117, 98, (186,524,0): 123, 118, 98, (186,525,0): 121, 119, 98, (186,526,0): 123, 118, 96, (186,527,0): 122, 120, 97, (186,528,0): 120, 119, 98, (186,529,0): 119, 118, 97, (186,530,0): 118, 117, 97, (186,531,0): 117, 116, 96, (186,532,0): 114, 116, 95, (186,533,0): 113, 115, 94, (186,534,0): 111, 114, 95, (186,535,0): 111, 114, 95, (186,536,0): 108, 111, 94, (186,537,0): 107, 110, 93, (186,538,0): 104, 108, 91, (186,539,0): 104, 108, 91, (186,540,0): 103, 110, 94, (186,541,0): 105, 112, 96, (186,542,0): 108, 115, 99, (186,543,0): 109, 118, 101, (186,544,0): 110, 121, 105, (186,545,0): 106, 119, 102, (186,546,0): 103, 115, 101, (186,547,0): 102, 114, 100, (186,548,0): 104, 116, 102, (186,549,0): 105, 117, 103, (186,550,0): 104, 116, 104, (186,551,0): 102, 114, 102, (186,552,0): 99, 111, 101, (186,553,0): 98, 110, 100, (186,554,0): 96, 108, 98, (186,555,0): 95, 107, 97, (186,556,0): 96, 107, 99, (186,557,0): 98, 109, 101, (186,558,0): 100, 111, 103, (186,559,0): 101, 114, 107, (186,560,0): 102, 116, 116, (186,561,0): 103, 117, 120, (186,562,0): 105, 118, 124, (186,563,0): 107, 122, 127, (186,564,0): 110, 125, 132, (186,565,0): 111, 128, 135, (186,566,0): 113, 130, 138, (186,567,0): 114, 131, 139, (186,568,0): 116, 132, 145, (186,569,0): 116, 134, 146, (186,570,0): 118, 136, 150, (186,571,0): 118, 137, 151, (186,572,0): 119, 138, 153, (186,573,0): 120, 139, 154, (186,574,0): 119, 138, 155, (186,575,0): 119, 138, 153, (186,576,0): 116, 133, 149, (186,577,0): 117, 133, 148, (186,578,0): 117, 130, 146, (186,579,0): 116, 129, 145, (186,580,0): 115, 127, 141, (186,581,0): 113, 125, 137, (186,582,0): 114, 124, 136, (186,583,0): 113, 123, 133, (186,584,0): 112, 119, 129, (186,585,0): 110, 117, 125, (186,586,0): 107, 111, 120, (186,587,0): 101, 106, 112, (186,588,0): 95, 98, 103, (186,589,0): 89, 92, 97, (186,590,0): 86, 87, 92, (186,591,0): 83, 84, 89, (186,592,0): 80, 83, 88, (186,593,0): 80, 81, 86, (186,594,0): 78, 77, 83, (186,595,0): 75, 74, 80, (186,596,0): 72, 69, 76, (186,597,0): 70, 65, 72, (186,598,0): 68, 61, 69, (186,599,0): 67, 60, 68, (187,0,0): 43, 31, 41, (187,1,0): 43, 31, 41, (187,2,0): 43, 31, 41, (187,3,0): 43, 31, 41, (187,4,0): 43, 31, 41, (187,5,0): 43, 31, 41, (187,6,0): 43, 31, 41, (187,7,0): 43, 31, 41, (187,8,0): 42, 30, 40, (187,9,0): 42, 30, 40, (187,10,0): 42, 30, 40, (187,11,0): 42, 30, 40, (187,12,0): 42, 30, 40, (187,13,0): 42, 30, 40, (187,14,0): 42, 30, 40, (187,15,0): 42, 30, 40, (187,16,0): 43, 31, 41, (187,17,0): 43, 31, 41, (187,18,0): 43, 31, 41, (187,19,0): 43, 31, 41, (187,20,0): 43, 31, 41, (187,21,0): 43, 31, 41, (187,22,0): 43, 31, 41, (187,23,0): 43, 31, 41, (187,24,0): 46, 34, 44, (187,25,0): 46, 34, 44, (187,26,0): 46, 34, 44, (187,27,0): 46, 34, 44, (187,28,0): 46, 34, 44, (187,29,0): 46, 34, 44, (187,30,0): 46, 34, 44, (187,31,0): 47, 33, 46, (187,32,0): 47, 30, 46, (187,33,0): 47, 30, 46, (187,34,0): 48, 30, 46, (187,35,0): 48, 30, 46, (187,36,0): 48, 30, 46, (187,37,0): 48, 30, 44, (187,38,0): 50, 29, 44, (187,39,0): 50, 30, 42, (187,40,0): 53, 33, 45, (187,41,0): 54, 32, 45, (187,42,0): 55, 33, 46, (187,43,0): 57, 33, 46, (187,44,0): 57, 33, 46, (187,45,0): 58, 34, 47, (187,46,0): 58, 34, 47, (187,47,0): 61, 35, 46, (187,48,0): 68, 38, 48, (187,49,0): 68, 37, 45, (187,50,0): 67, 36, 42, (187,51,0): 67, 34, 41, (187,52,0): 68, 35, 42, (187,53,0): 71, 36, 43, (187,54,0): 75, 38, 45, (187,55,0): 78, 38, 46, (187,56,0): 79, 40, 45, (187,57,0): 80, 39, 45, (187,58,0): 81, 40, 46, (187,59,0): 82, 39, 46, (187,60,0): 85, 40, 45, (187,61,0): 85, 40, 45, (187,62,0): 86, 41, 46, (187,63,0): 87, 40, 46, (187,64,0): 86, 39, 47, (187,65,0): 86, 39, 47, (187,66,0): 86, 39, 47, (187,67,0): 85, 38, 46, (187,68,0): 85, 38, 44, (187,69,0): 87, 38, 44, (187,70,0): 87, 38, 42, (187,71,0): 87, 38, 42, (187,72,0): 88, 37, 42, (187,73,0): 88, 38, 41, (187,74,0): 89, 37, 41, (187,75,0): 89, 37, 41, (187,76,0): 89, 37, 39, (187,77,0): 89, 37, 39, (187,78,0): 89, 37, 39, (187,79,0): 89, 37, 41, (187,80,0): 88, 37, 42, (187,81,0): 88, 37, 44, (187,82,0): 86, 37, 43, (187,83,0): 86, 37, 43, (187,84,0): 85, 36, 42, (187,85,0): 85, 36, 42, (187,86,0): 82, 35, 41, (187,87,0): 82, 35, 41, (187,88,0): 81, 36, 41, (187,89,0): 81, 36, 41, (187,90,0): 80, 35, 40, (187,91,0): 79, 34, 39, (187,92,0): 76, 34, 38, (187,93,0): 75, 33, 37, (187,94,0): 74, 32, 36, (187,95,0): 73, 32, 38, (187,96,0): 67, 30, 37, (187,97,0): 66, 31, 38, (187,98,0): 64, 31, 38, (187,99,0): 62, 31, 37, (187,100,0): 61, 32, 37, (187,101,0): 58, 31, 36, (187,102,0): 57, 32, 36, (187,103,0): 55, 33, 36, (187,104,0): 55, 33, 36, (187,105,0): 55, 33, 36, (187,106,0): 57, 32, 36, (187,107,0): 56, 31, 35, (187,108,0): 55, 28, 33, (187,109,0): 52, 25, 30, (187,110,0): 50, 23, 28, (187,111,0): 46, 23, 29, (187,112,0): 34, 19, 26, (187,113,0): 27, 16, 24, (187,114,0): 22, 11, 19, (187,115,0): 20, 9, 17, (187,116,0): 21, 10, 18, (187,117,0): 21, 10, 18, (187,118,0): 21, 10, 18, (187,119,0): 19, 8, 16, (187,120,0): 21, 10, 18, (187,121,0): 22, 11, 19, (187,122,0): 23, 12, 20, (187,123,0): 24, 13, 21, (187,124,0): 26, 15, 23, (187,125,0): 28, 17, 25, (187,126,0): 29, 18, 26, (187,127,0): 30, 17, 24, (187,128,0): 35, 18, 24, (187,129,0): 38, 19, 23, (187,130,0): 38, 19, 23, (187,131,0): 38, 19, 23, (187,132,0): 39, 20, 24, (187,133,0): 39, 20, 24, (187,134,0): 39, 20, 24, (187,135,0): 39, 20, 24, (187,136,0): 39, 20, 24, (187,137,0): 38, 19, 23, (187,138,0): 38, 19, 23, (187,139,0): 37, 18, 22, (187,140,0): 36, 17, 21, (187,141,0): 36, 17, 21, (187,142,0): 35, 16, 20, (187,143,0): 35, 16, 20, (187,144,0): 32, 16, 19, (187,145,0): 32, 16, 19, (187,146,0): 34, 18, 19, (187,147,0): 35, 19, 20, (187,148,0): 39, 20, 22, (187,149,0): 41, 22, 24, (187,150,0): 43, 25, 25, (187,151,0): 43, 25, 25, (187,152,0): 44, 24, 23, (187,153,0): 45, 25, 24, (187,154,0): 47, 26, 25, (187,155,0): 48, 27, 26, (187,156,0): 49, 28, 25, (187,157,0): 50, 29, 26, (187,158,0): 53, 29, 27, (187,159,0): 53, 29, 27, (187,160,0): 50, 29, 26, (187,161,0): 50, 29, 26, (187,162,0): 50, 29, 26, (187,163,0): 50, 29, 26, (187,164,0): 50, 29, 26, (187,165,0): 50, 29, 26, (187,166,0): 50, 29, 26, (187,167,0): 50, 29, 26, (187,168,0): 47, 26, 23, (187,169,0): 47, 26, 23, (187,170,0): 46, 25, 22, (187,171,0): 46, 25, 22, (187,172,0): 45, 24, 21, (187,173,0): 45, 24, 21, (187,174,0): 44, 23, 20, (187,175,0): 44, 23, 20, (187,176,0): 43, 24, 20, (187,177,0): 43, 24, 20, (187,178,0): 43, 24, 20, (187,179,0): 43, 24, 20, (187,180,0): 43, 24, 20, (187,181,0): 43, 24, 20, (187,182,0): 43, 24, 20, (187,183,0): 43, 24, 20, (187,184,0): 42, 23, 19, (187,185,0): 42, 23, 19, (187,186,0): 42, 23, 19, (187,187,0): 43, 24, 20, (187,188,0): 43, 24, 20, (187,189,0): 44, 25, 21, (187,190,0): 44, 25, 21, (187,191,0): 46, 25, 22, (187,192,0): 51, 27, 25, (187,193,0): 52, 26, 25, (187,194,0): 52, 26, 25, (187,195,0): 52, 26, 25, (187,196,0): 52, 26, 25, (187,197,0): 52, 26, 25, (187,198,0): 52, 26, 25, (187,199,0): 52, 26, 25, (187,200,0): 50, 24, 23, (187,201,0): 51, 25, 24, (187,202,0): 52, 26, 25, (187,203,0): 53, 27, 26, (187,204,0): 53, 27, 26, (187,205,0): 52, 26, 25, (187,206,0): 51, 25, 24, (187,207,0): 50, 24, 23, (187,208,0): 51, 26, 22, (187,209,0): 51, 26, 22, (187,210,0): 51, 26, 21, (187,211,0): 50, 25, 20, (187,212,0): 50, 25, 20, (187,213,0): 49, 24, 19, (187,214,0): 49, 24, 17, (187,215,0): 49, 24, 17, (187,216,0): 50, 26, 16, (187,217,0): 50, 26, 16, (187,218,0): 50, 26, 16, (187,219,0): 50, 26, 16, (187,220,0): 50, 26, 14, (187,221,0): 50, 26, 14, (187,222,0): 50, 26, 14, (187,223,0): 50, 26, 14, (187,224,0): 54, 25, 19, (187,225,0): 55, 26, 20, (187,226,0): 56, 27, 21, (187,227,0): 57, 28, 22, (187,228,0): 57, 28, 20, (187,229,0): 56, 27, 19, (187,230,0): 55, 26, 18, (187,231,0): 54, 25, 17, (187,232,0): 55, 27, 16, (187,233,0): 56, 28, 17, (187,234,0): 58, 30, 18, (187,235,0): 59, 31, 19, (187,236,0): 59, 31, 19, (187,237,0): 59, 31, 19, (187,238,0): 58, 30, 16, (187,239,0): 57, 29, 15, (187,240,0): 59, 31, 17, (187,241,0): 60, 32, 18, (187,242,0): 61, 33, 21, (187,243,0): 62, 34, 22, (187,244,0): 62, 36, 23, (187,245,0): 61, 35, 22, (187,246,0): 58, 34, 22, (187,247,0): 57, 33, 21, (187,248,0): 54, 30, 20, (187,249,0): 54, 30, 20, (187,250,0): 52, 30, 19, (187,251,0): 52, 30, 19, (187,252,0): 49, 29, 20, (187,253,0): 49, 29, 20, (187,254,0): 48, 28, 19, (187,255,0): 48, 28, 19, (187,256,0): 49, 28, 23, (187,257,0): 49, 28, 23, (187,258,0): 49, 28, 23, (187,259,0): 50, 29, 24, (187,260,0): 52, 28, 24, (187,261,0): 53, 29, 25, (187,262,0): 54, 29, 25, (187,263,0): 54, 29, 25, (187,264,0): 56, 31, 27, (187,265,0): 57, 32, 28, (187,266,0): 59, 31, 28, (187,267,0): 60, 32, 29, (187,268,0): 63, 33, 31, (187,269,0): 64, 34, 32, (187,270,0): 64, 34, 32, (187,271,0): 65, 36, 32, (187,272,0): 67, 38, 32, (187,273,0): 67, 38, 30, (187,274,0): 68, 39, 31, (187,275,0): 70, 42, 31, (187,276,0): 72, 44, 33, (187,277,0): 76, 48, 36, (187,278,0): 79, 51, 37, (187,279,0): 80, 52, 38, (187,280,0): 81, 54, 37, (187,281,0): 81, 54, 35, (187,282,0): 81, 54, 33, (187,283,0): 81, 54, 33, (187,284,0): 81, 55, 32, (187,285,0): 81, 55, 32, (187,286,0): 81, 55, 32, (187,287,0): 80, 56, 30, (187,288,0): 83, 59, 33, (187,289,0): 81, 60, 33, (187,290,0): 80, 58, 34, (187,291,0): 80, 58, 35, (187,292,0): 78, 57, 36, (187,293,0): 77, 56, 37, (187,294,0): 77, 56, 39, (187,295,0): 76, 54, 40, (187,296,0): 73, 54, 40, (187,297,0): 74, 55, 41, (187,298,0): 74, 57, 41, (187,299,0): 76, 59, 43, (187,300,0): 79, 62, 44, (187,301,0): 81, 64, 46, (187,302,0): 82, 67, 48, (187,303,0): 83, 68, 45, (187,304,0): 88, 76, 50, (187,305,0): 89, 78, 50, (187,306,0): 92, 78, 49, (187,307,0): 94, 80, 51, (187,308,0): 95, 81, 52, (187,309,0): 97, 83, 54, (187,310,0): 99, 84, 53, (187,311,0): 100, 85, 54, (187,312,0): 103, 87, 54, (187,313,0): 105, 89, 56, (187,314,0): 107, 91, 58, (187,315,0): 110, 94, 61, (187,316,0): 115, 96, 64, (187,317,0): 116, 97, 64, (187,318,0): 117, 98, 65, (187,319,0): 118, 98, 61, (187,320,0): 123, 100, 56, (187,321,0): 135, 114, 61, (187,322,0): 150, 129, 72, (187,323,0): 161, 143, 81, (187,324,0): 168, 151, 82, (187,325,0): 169, 155, 80, (187,326,0): 171, 160, 80, (187,327,0): 171, 163, 78, (187,328,0): 179, 171, 86, (187,329,0): 182, 176, 90, (187,330,0): 186, 181, 97, (187,331,0): 188, 183, 102, (187,332,0): 185, 182, 105, (187,333,0): 183, 181, 107, (187,334,0): 184, 181, 110, (187,335,0): 183, 183, 113, (187,336,0): 172, 176, 102, (187,337,0): 170, 176, 102, (187,338,0): 171, 177, 103, (187,339,0): 172, 178, 104, (187,340,0): 176, 180, 106, (187,341,0): 180, 184, 110, (187,342,0): 184, 186, 113, (187,343,0): 186, 188, 115, (187,344,0): 187, 189, 116, (187,345,0): 189, 189, 117, (187,346,0): 191, 191, 119, (187,347,0): 194, 191, 120, (187,348,0): 195, 192, 121, (187,349,0): 196, 193, 122, (187,350,0): 197, 193, 122, (187,351,0): 197, 193, 120, (187,352,0): 189, 186, 109, (187,353,0): 191, 188, 109, (187,354,0): 194, 191, 114, (187,355,0): 196, 192, 118, (187,356,0): 195, 191, 118, (187,357,0): 192, 190, 116, (187,358,0): 188, 185, 114, (187,359,0): 184, 184, 112, (187,360,0): 177, 177, 105, (187,361,0): 171, 173, 100, (187,362,0): 169, 171, 98, (187,363,0): 172, 174, 99, (187,364,0): 173, 176, 99, (187,365,0): 171, 176, 96, (187,366,0): 175, 178, 99, (187,367,0): 181, 184, 103, (187,368,0): 187, 190, 111, (187,369,0): 185, 188, 109, (187,370,0): 177, 178, 102, (187,371,0): 163, 164, 88, (187,372,0): 160, 156, 83, (187,373,0): 161, 157, 86, (187,374,0): 163, 156, 88, (187,375,0): 160, 153, 85, (187,376,0): 162, 155, 87, (187,377,0): 163, 156, 86, (187,378,0): 165, 158, 88, (187,379,0): 165, 161, 88, (187,380,0): 167, 165, 90, (187,381,0): 168, 169, 91, (187,382,0): 171, 172, 94, (187,383,0): 171, 175, 91, (187,384,0): 178, 180, 96, (187,385,0): 184, 189, 99, (187,386,0): 193, 198, 104, (187,387,0): 201, 209, 110, (187,388,0): 207, 218, 113, (187,389,0): 216, 228, 118, (187,390,0): 225, 238, 124, (187,391,0): 231, 244, 126, (187,392,0): 240, 251, 131, (187,393,0): 240, 251, 129, (187,394,0): 241, 251, 129, (187,395,0): 242, 250, 131, (187,396,0): 244, 249, 133, (187,397,0): 245, 248, 135, (187,398,0): 246, 246, 134, (187,399,0): 246, 246, 136, (187,400,0): 246, 248, 138, (187,401,0): 246, 248, 138, (187,402,0): 247, 249, 139, (187,403,0): 248, 250, 140, (187,404,0): 249, 251, 141, (187,405,0): 250, 253, 140, (187,406,0): 251, 254, 141, (187,407,0): 252, 255, 142, (187,408,0): 251, 254, 139, (187,409,0): 251, 254, 139, (187,410,0): 251, 254, 139, (187,411,0): 252, 255, 138, (187,412,0): 252, 255, 138, (187,413,0): 253, 255, 139, (187,414,0): 253, 255, 137, (187,415,0): 255, 255, 139, (187,416,0): 255, 254, 141, (187,417,0): 255, 254, 143, (187,418,0): 255, 254, 143, (187,419,0): 255, 254, 143, (187,420,0): 255, 254, 141, (187,421,0): 255, 255, 141, (187,422,0): 255, 255, 139, (187,423,0): 255, 255, 139, (187,424,0): 250, 254, 134, (187,425,0): 251, 255, 135, (187,426,0): 251, 255, 135, (187,427,0): 252, 255, 136, (187,428,0): 252, 255, 134, (187,429,0): 249, 255, 133, (187,430,0): 248, 255, 132, (187,431,0): 246, 255, 133, (187,432,0): 245, 255, 138, (187,433,0): 241, 255, 141, (187,434,0): 242, 255, 140, (187,435,0): 238, 255, 138, (187,436,0): 236, 253, 138, (187,437,0): 234, 253, 138, (187,438,0): 232, 250, 138, (187,439,0): 232, 250, 142, (187,440,0): 220, 237, 133, (187,441,0): 212, 230, 130, (187,442,0): 204, 221, 125, (187,443,0): 200, 219, 129, (187,444,0): 203, 221, 135, (187,445,0): 205, 223, 141, (187,446,0): 204, 221, 141, (187,447,0): 201, 217, 142, (187,448,0): 191, 206, 139, (187,449,0): 187, 199, 135, (187,450,0): 178, 190, 128, (187,451,0): 171, 181, 120, (187,452,0): 164, 174, 114, (187,453,0): 156, 164, 107, (187,454,0): 147, 152, 98, (187,455,0): 140, 144, 93, (187,456,0): 137, 140, 93, (187,457,0): 140, 143, 98, (187,458,0): 142, 148, 104, (187,459,0): 143, 150, 108, (187,460,0): 144, 153, 110, (187,461,0): 148, 159, 117, (187,462,0): 156, 167, 125, (187,463,0): 162, 174, 134, (187,464,0): 162, 174, 134, (187,465,0): 163, 178, 137, (187,466,0): 169, 181, 143, (187,467,0): 170, 185, 146, (187,468,0): 169, 184, 145, (187,469,0): 163, 179, 140, (187,470,0): 156, 172, 133, (187,471,0): 150, 166, 129, (187,472,0): 147, 163, 126, (187,473,0): 141, 159, 121, (187,474,0): 135, 152, 116, (187,475,0): 132, 152, 115, (187,476,0): 135, 155, 118, (187,477,0): 140, 160, 123, (187,478,0): 143, 163, 126, (187,479,0): 145, 165, 130, (187,480,0): 144, 163, 131, (187,481,0): 144, 163, 131, (187,482,0): 146, 165, 135, (187,483,0): 150, 169, 139, (187,484,0): 154, 173, 145, (187,485,0): 155, 174, 146, (187,486,0): 152, 170, 144, (187,487,0): 149, 167, 143, (187,488,0): 141, 159, 137, (187,489,0): 141, 159, 137, (187,490,0): 141, 158, 139, (187,491,0): 139, 156, 137, (187,492,0): 137, 154, 136, (187,493,0): 134, 151, 133, (187,494,0): 131, 148, 132, (187,495,0): 130, 147, 131, (187,496,0): 126, 144, 128, (187,497,0): 123, 141, 125, (187,498,0): 120, 137, 121, (187,499,0): 120, 134, 119, (187,500,0): 119, 131, 117, (187,501,0): 117, 128, 114, (187,502,0): 114, 122, 109, (187,503,0): 113, 116, 105, (187,504,0): 109, 109, 99, (187,505,0): 107, 103, 94, (187,506,0): 104, 97, 89, (187,507,0): 106, 97, 90, (187,508,0): 110, 99, 93, (187,509,0): 110, 97, 91, (187,510,0): 104, 89, 84, (187,511,0): 97, 82, 77, (187,512,0): 81, 67, 64, (187,513,0): 79, 68, 64, (187,514,0): 79, 68, 62, (187,515,0): 76, 67, 60, (187,516,0): 76, 67, 58, (187,517,0): 82, 73, 64, (187,518,0): 91, 83, 72, (187,519,0): 98, 92, 78, (187,520,0): 103, 97, 83, (187,521,0): 109, 106, 89, (187,522,0): 118, 115, 96, (187,523,0): 124, 121, 102, (187,524,0): 126, 124, 103, (187,525,0): 124, 123, 102, (187,526,0): 123, 123, 99, (187,527,0): 123, 123, 99, (187,528,0): 122, 121, 100, (187,529,0): 121, 120, 99, (187,530,0): 120, 119, 99, (187,531,0): 118, 117, 97, (187,532,0): 114, 116, 95, (187,533,0): 113, 115, 94, (187,534,0): 110, 113, 94, (187,535,0): 110, 113, 94, (187,536,0): 108, 111, 94, (187,537,0): 107, 110, 93, (187,538,0): 104, 108, 91, (187,539,0): 104, 108, 91, (187,540,0): 103, 110, 94, (187,541,0): 105, 112, 96, (187,542,0): 108, 115, 99, (187,543,0): 109, 118, 101, (187,544,0): 108, 119, 103, (187,545,0): 105, 118, 101, (187,546,0): 102, 114, 100, (187,547,0): 102, 114, 100, (187,548,0): 104, 116, 102, (187,549,0): 105, 117, 103, (187,550,0): 103, 115, 103, (187,551,0): 101, 113, 101, (187,552,0): 97, 109, 99, (187,553,0): 96, 108, 98, (187,554,0): 95, 107, 97, (187,555,0): 94, 106, 96, (187,556,0): 95, 106, 98, (187,557,0): 96, 107, 99, (187,558,0): 98, 109, 101, (187,559,0): 99, 110, 106, (187,560,0): 104, 116, 116, (187,561,0): 103, 117, 120, (187,562,0): 105, 118, 124, (187,563,0): 108, 121, 127, (187,564,0): 111, 124, 132, (187,565,0): 112, 127, 134, (187,566,0): 114, 128, 137, (187,567,0): 114, 131, 139, (187,568,0): 116, 133, 143, (187,569,0): 117, 133, 146, (187,570,0): 119, 135, 150, (187,571,0): 119, 137, 151, (187,572,0): 119, 136, 152, (187,573,0): 118, 137, 152, (187,574,0): 118, 135, 153, (187,575,0): 117, 134, 150, (187,576,0): 114, 130, 145, (187,577,0): 114, 130, 145, (187,578,0): 115, 128, 144, (187,579,0): 114, 127, 143, (187,580,0): 114, 126, 140, (187,581,0): 113, 125, 137, (187,582,0): 114, 124, 136, (187,583,0): 114, 124, 134, (187,584,0): 114, 121, 131, (187,585,0): 112, 119, 127, (187,586,0): 110, 114, 123, (187,587,0): 104, 109, 115, (187,588,0): 99, 102, 107, (187,589,0): 92, 95, 100, (187,590,0): 89, 90, 95, (187,591,0): 86, 87, 92, (187,592,0): 79, 82, 87, (187,593,0): 78, 81, 86, (187,594,0): 77, 78, 83, (187,595,0): 74, 73, 79, (187,596,0): 71, 68, 75, (187,597,0): 67, 64, 71, (187,598,0): 66, 61, 68, (187,599,0): 65, 58, 66, (188,0,0): 44, 32, 42, (188,1,0): 44, 32, 42, (188,2,0): 44, 32, 42, (188,3,0): 44, 32, 42, (188,4,0): 44, 32, 42, (188,5,0): 44, 32, 42, (188,6,0): 44, 32, 42, (188,7,0): 44, 32, 42, (188,8,0): 42, 30, 40, (188,9,0): 42, 30, 40, (188,10,0): 42, 30, 40, (188,11,0): 42, 30, 40, (188,12,0): 42, 30, 40, (188,13,0): 42, 30, 40, (188,14,0): 42, 30, 40, (188,15,0): 42, 30, 40, (188,16,0): 44, 32, 42, (188,17,0): 44, 32, 42, (188,18,0): 44, 32, 42, (188,19,0): 44, 32, 42, (188,20,0): 44, 32, 42, (188,21,0): 44, 32, 42, (188,22,0): 44, 32, 42, (188,23,0): 44, 32, 42, (188,24,0): 46, 34, 44, (188,25,0): 46, 34, 44, (188,26,0): 46, 34, 44, (188,27,0): 47, 35, 45, (188,28,0): 47, 35, 45, (188,29,0): 47, 35, 45, (188,30,0): 47, 35, 45, (188,31,0): 47, 35, 45, (188,32,0): 47, 33, 46, (188,33,0): 47, 33, 46, (188,34,0): 49, 33, 46, (188,35,0): 49, 33, 46, (188,36,0): 49, 33, 46, (188,37,0): 49, 33, 44, (188,38,0): 50, 32, 44, (188,39,0): 50, 32, 44, (188,40,0): 50, 32, 44, (188,41,0): 52, 32, 43, (188,42,0): 53, 33, 44, (188,43,0): 54, 33, 42, (188,44,0): 54, 33, 42, (188,45,0): 55, 34, 43, (188,46,0): 55, 34, 43, (188,47,0): 56, 33, 41, (188,48,0): 62, 35, 42, (188,49,0): 64, 34, 42, (188,50,0): 63, 34, 39, (188,51,0): 64, 33, 39, (188,52,0): 66, 35, 41, (188,53,0): 70, 37, 44, (188,54,0): 73, 41, 46, (188,55,0): 77, 42, 48, (188,56,0): 76, 40, 44, (188,57,0): 78, 39, 44, (188,58,0): 79, 40, 45, (188,59,0): 80, 39, 45, (188,60,0): 81, 40, 44, (188,61,0): 82, 40, 44, (188,62,0): 83, 41, 45, (188,63,0): 85, 40, 45, (188,64,0): 83, 38, 43, (188,65,0): 83, 38, 43, (188,66,0): 83, 38, 43, (188,67,0): 84, 39, 44, (188,68,0): 84, 39, 44, (188,69,0): 85, 38, 44, (188,70,0): 85, 39, 42, (188,71,0): 85, 39, 42, (188,72,0): 87, 38, 41, (188,73,0): 87, 38, 41, (188,74,0): 88, 38, 41, (188,75,0): 88, 38, 39, (188,76,0): 88, 38, 39, (188,77,0): 88, 38, 39, (188,78,0): 88, 38, 39, (188,79,0): 88, 38, 41, (188,80,0): 88, 37, 42, (188,81,0): 88, 37, 44, (188,82,0): 86, 37, 43, (188,83,0): 86, 37, 43, (188,84,0): 85, 36, 42, (188,85,0): 85, 36, 42, (188,86,0): 82, 35, 41, (188,87,0): 82, 35, 41, (188,88,0): 80, 35, 40, (188,89,0): 80, 35, 40, (188,90,0): 79, 34, 39, (188,91,0): 78, 33, 38, (188,92,0): 75, 33, 37, (188,93,0): 74, 32, 36, (188,94,0): 73, 31, 35, (188,95,0): 72, 31, 37, (188,96,0): 67, 30, 37, (188,97,0): 66, 31, 38, (188,98,0): 64, 31, 38, (188,99,0): 62, 31, 37, (188,100,0): 59, 32, 37, (188,101,0): 57, 32, 36, (188,102,0): 55, 33, 36, (188,103,0): 54, 34, 36, (188,104,0): 53, 33, 35, (188,105,0): 53, 33, 35, (188,106,0): 54, 32, 35, (188,107,0): 56, 31, 35, (188,108,0): 55, 28, 33, (188,109,0): 53, 26, 31, (188,110,0): 53, 24, 29, (188,111,0): 48, 23, 29, (188,112,0): 34, 19, 26, (188,113,0): 26, 15, 23, (188,114,0): 21, 10, 18, (188,115,0): 19, 8, 16, (188,116,0): 20, 9, 17, (188,117,0): 21, 10, 18, (188,118,0): 20, 9, 17, (188,119,0): 19, 8, 16, (188,120,0): 22, 11, 19, (188,121,0): 22, 11, 19, (188,122,0): 23, 12, 20, (188,123,0): 25, 14, 22, (188,124,0): 27, 16, 24, (188,125,0): 28, 17, 25, (188,126,0): 29, 18, 26, (188,127,0): 31, 18, 25, (188,128,0): 38, 19, 23, (188,129,0): 39, 19, 21, (188,130,0): 40, 20, 22, (188,131,0): 40, 20, 22, (188,132,0): 41, 21, 23, (188,133,0): 42, 22, 24, (188,134,0): 42, 22, 24, (188,135,0): 42, 22, 24, (188,136,0): 41, 21, 23, (188,137,0): 41, 21, 23, (188,138,0): 40, 20, 22, (188,139,0): 40, 20, 22, (188,140,0): 39, 19, 21, (188,141,0): 38, 18, 20, (188,142,0): 38, 18, 20, (188,143,0): 36, 17, 19, (188,144,0): 33, 17, 20, (188,145,0): 33, 17, 20, (188,146,0): 35, 19, 20, (188,147,0): 37, 21, 22, (188,148,0): 41, 22, 24, (188,149,0): 42, 23, 25, (188,150,0): 44, 26, 26, (188,151,0): 44, 26, 26, (188,152,0): 45, 25, 24, (188,153,0): 45, 25, 24, (188,154,0): 47, 26, 25, (188,155,0): 48, 27, 26, (188,156,0): 49, 28, 25, (188,157,0): 50, 29, 26, (188,158,0): 53, 29, 27, (188,159,0): 54, 30, 28, (188,160,0): 50, 29, 26, (188,161,0): 50, 29, 26, (188,162,0): 50, 29, 26, (188,163,0): 50, 29, 26, (188,164,0): 50, 29, 26, (188,165,0): 50, 29, 26, (188,166,0): 50, 29, 26, (188,167,0): 50, 29, 26, (188,168,0): 47, 26, 23, (188,169,0): 47, 26, 23, (188,170,0): 46, 25, 22, (188,171,0): 46, 25, 22, (188,172,0): 45, 24, 21, (188,173,0): 45, 24, 21, (188,174,0): 44, 23, 20, (188,175,0): 44, 23, 20, (188,176,0): 43, 24, 20, (188,177,0): 43, 24, 20, (188,178,0): 43, 24, 20, (188,179,0): 43, 24, 20, (188,180,0): 43, 24, 20, (188,181,0): 43, 24, 20, (188,182,0): 43, 24, 20, (188,183,0): 43, 24, 20, (188,184,0): 42, 23, 19, (188,185,0): 42, 23, 19, (188,186,0): 42, 23, 19, (188,187,0): 43, 24, 20, (188,188,0): 43, 24, 20, (188,189,0): 44, 25, 21, (188,190,0): 44, 25, 21, (188,191,0): 46, 25, 22, (188,192,0): 51, 27, 25, (188,193,0): 52, 26, 25, (188,194,0): 52, 26, 25, (188,195,0): 52, 26, 25, (188,196,0): 52, 26, 25, (188,197,0): 52, 26, 25, (188,198,0): 52, 26, 25, (188,199,0): 52, 26, 25, (188,200,0): 50, 24, 23, (188,201,0): 51, 25, 24, (188,202,0): 52, 26, 25, (188,203,0): 53, 27, 26, (188,204,0): 53, 27, 26, (188,205,0): 52, 26, 25, (188,206,0): 51, 25, 24, (188,207,0): 50, 24, 23, (188,208,0): 51, 26, 22, (188,209,0): 51, 26, 22, (188,210,0): 51, 26, 21, (188,211,0): 50, 25, 20, (188,212,0): 50, 25, 20, (188,213,0): 49, 24, 19, (188,214,0): 49, 24, 17, (188,215,0): 49, 24, 17, (188,216,0): 50, 26, 16, (188,217,0): 50, 26, 16, (188,218,0): 50, 26, 16, (188,219,0): 50, 26, 16, (188,220,0): 50, 26, 14, (188,221,0): 50, 26, 14, (188,222,0): 50, 26, 14, (188,223,0): 50, 26, 14, (188,224,0): 55, 26, 20, (188,225,0): 56, 27, 21, (188,226,0): 57, 28, 22, (188,227,0): 58, 29, 23, (188,228,0): 58, 29, 21, (188,229,0): 57, 28, 20, (188,230,0): 56, 27, 19, (188,231,0): 55, 26, 18, (188,232,0): 55, 27, 16, (188,233,0): 56, 28, 17, (188,234,0): 57, 29, 17, (188,235,0): 59, 31, 19, (188,236,0): 59, 31, 19, (188,237,0): 59, 31, 19, (188,238,0): 59, 31, 17, (188,239,0): 59, 31, 17, (188,240,0): 62, 34, 20, (188,241,0): 63, 35, 21, (188,242,0): 64, 36, 24, (188,243,0): 64, 36, 24, (188,244,0): 63, 37, 24, (188,245,0): 62, 36, 23, (188,246,0): 59, 35, 23, (188,247,0): 58, 34, 22, (188,248,0): 55, 31, 21, (188,249,0): 55, 31, 21, (188,250,0): 53, 31, 20, (188,251,0): 53, 31, 20, (188,252,0): 50, 30, 21, (188,253,0): 50, 30, 21, (188,254,0): 49, 29, 20, (188,255,0): 49, 29, 20, (188,256,0): 49, 28, 23, (188,257,0): 49, 28, 23, (188,258,0): 49, 28, 23, (188,259,0): 50, 29, 24, (188,260,0): 52, 28, 24, (188,261,0): 53, 29, 25, (188,262,0): 54, 29, 25, (188,263,0): 54, 29, 25, (188,264,0): 56, 31, 27, (188,265,0): 57, 32, 28, (188,266,0): 59, 31, 28, (188,267,0): 60, 32, 29, (188,268,0): 63, 33, 31, (188,269,0): 64, 34, 32, (188,270,0): 64, 34, 32, (188,271,0): 65, 36, 32, (188,272,0): 67, 38, 32, (188,273,0): 67, 38, 30, (188,274,0): 68, 40, 29, (188,275,0): 70, 42, 31, (188,276,0): 73, 45, 34, (188,277,0): 76, 48, 36, (188,278,0): 79, 51, 37, (188,279,0): 81, 53, 39, (188,280,0): 82, 55, 38, (188,281,0): 82, 55, 36, (188,282,0): 82, 55, 34, (188,283,0): 82, 55, 34, (188,284,0): 82, 56, 33, (188,285,0): 82, 56, 33, (188,286,0): 82, 56, 31, (188,287,0): 81, 57, 31, (188,288,0): 83, 59, 33, (188,289,0): 81, 60, 33, (188,290,0): 81, 59, 35, (188,291,0): 81, 59, 36, (188,292,0): 79, 58, 37, (188,293,0): 79, 58, 39, (188,294,0): 79, 58, 41, (188,295,0): 78, 56, 42, (188,296,0): 74, 55, 41, (188,297,0): 74, 55, 41, (188,298,0): 75, 58, 42, (188,299,0): 77, 60, 44, (188,300,0): 79, 62, 46, (188,301,0): 81, 64, 46, (188,302,0): 81, 66, 47, (188,303,0): 82, 67, 46, (188,304,0): 88, 77, 49, (188,305,0): 89, 78, 48, (188,306,0): 90, 79, 49, (188,307,0): 92, 81, 51, (188,308,0): 95, 81, 52, (188,309,0): 97, 83, 54, (188,310,0): 98, 85, 53, (188,311,0): 99, 86, 54, (188,312,0): 103, 88, 57, (188,313,0): 104, 89, 58, (188,314,0): 108, 91, 61, (188,315,0): 110, 94, 61, (188,316,0): 113, 97, 64, (188,317,0): 114, 98, 65, (188,318,0): 116, 97, 65, (188,319,0): 117, 97, 62, (188,320,0): 118, 96, 55, (188,321,0): 128, 107, 60, (188,322,0): 142, 122, 71, (188,323,0): 155, 139, 80, (188,324,0): 166, 151, 86, (188,325,0): 172, 160, 88, (188,326,0): 175, 166, 87, (188,327,0): 176, 170, 86, (188,328,0): 181, 177, 90, (188,329,0): 183, 181, 94, (188,330,0): 187, 187, 101, (188,331,0): 189, 188, 106, (188,332,0): 187, 188, 110, (188,333,0): 186, 186, 112, (188,334,0): 186, 188, 115, (188,335,0): 186, 189, 118, (188,336,0): 175, 183, 108, (188,337,0): 173, 184, 108, (188,338,0): 176, 184, 109, (188,339,0): 176, 184, 109, (188,340,0): 179, 185, 111, (188,341,0): 180, 186, 112, (188,342,0): 184, 188, 114, (188,343,0): 185, 189, 115, (188,344,0): 186, 190, 116, (188,345,0): 189, 191, 118, (188,346,0): 191, 193, 120, (188,347,0): 194, 194, 122, (188,348,0): 195, 195, 123, (188,349,0): 195, 195, 123, (188,350,0): 197, 194, 123, (188,351,0): 196, 194, 120, (188,352,0): 190, 188, 113, (188,353,0): 191, 189, 112, (188,354,0): 193, 191, 116, (188,355,0): 193, 191, 116, (188,356,0): 191, 189, 115, (188,357,0): 186, 186, 114, (188,358,0): 182, 182, 112, (188,359,0): 179, 180, 110, (188,360,0): 171, 172, 102, (188,361,0): 166, 168, 95, (188,362,0): 166, 168, 95, (188,363,0): 169, 173, 97, (188,364,0): 171, 175, 98, (188,365,0): 168, 175, 95, (188,366,0): 173, 178, 98, (188,367,0): 179, 184, 104, (188,368,0): 183, 188, 108, (188,369,0): 183, 186, 107, (188,370,0): 175, 176, 100, (188,371,0): 162, 163, 87, (188,372,0): 158, 154, 81, (188,373,0): 159, 155, 82, (188,374,0): 161, 154, 84, (188,375,0): 157, 150, 80, (188,376,0): 157, 148, 79, (188,377,0): 158, 151, 81, (188,378,0): 160, 153, 81, (188,379,0): 162, 158, 84, (188,380,0): 165, 163, 86, (188,381,0): 167, 168, 88, (188,382,0): 170, 171, 91, (188,383,0): 172, 174, 90, (188,384,0): 179, 183, 96, (188,385,0): 185, 190, 98, (188,386,0): 194, 200, 104, (188,387,0): 202, 210, 109, (188,388,0): 209, 221, 113, (188,389,0): 218, 231, 117, (188,390,0): 227, 242, 123, (188,391,0): 234, 250, 126, (188,392,0): 239, 254, 129, (188,393,0): 242, 254, 130, (188,394,0): 243, 253, 130, (188,395,0): 245, 253, 132, (188,396,0): 247, 252, 134, (188,397,0): 249, 252, 137, (188,398,0): 251, 251, 139, (188,399,0): 251, 251, 141, (188,400,0): 249, 251, 141, (188,401,0): 249, 251, 142, (188,402,0): 249, 251, 142, (188,403,0): 250, 252, 142, (188,404,0): 250, 252, 142, (188,405,0): 251, 253, 143, (188,406,0): 251, 254, 141, (188,407,0): 251, 254, 141, (188,408,0): 249, 252, 139, (188,409,0): 250, 253, 138, (188,410,0): 250, 253, 138, (188,411,0): 250, 253, 138, (188,412,0): 251, 254, 137, (188,413,0): 251, 254, 137, (188,414,0): 252, 255, 138, (188,415,0): 254, 255, 138, (188,416,0): 255, 254, 141, (188,417,0): 255, 254, 141, (188,418,0): 255, 254, 141, (188,419,0): 255, 254, 141, (188,420,0): 255, 254, 141, (188,421,0): 255, 254, 141, (188,422,0): 255, 255, 139, (188,423,0): 255, 255, 139, (188,424,0): 250, 253, 136, (188,425,0): 251, 254, 137, (188,426,0): 251, 255, 136, (188,427,0): 252, 255, 137, (188,428,0): 250, 255, 137, (188,429,0): 249, 255, 136, (188,430,0): 248, 255, 135, (188,431,0): 245, 255, 136, (188,432,0): 240, 254, 140, (188,433,0): 237, 255, 143, (188,434,0): 237, 254, 142, (188,435,0): 236, 254, 142, (188,436,0): 235, 253, 141, (188,437,0): 233, 253, 142, (188,438,0): 232, 251, 143, (188,439,0): 232, 251, 144, (188,440,0): 222, 240, 138, (188,441,0): 213, 233, 134, (188,442,0): 205, 225, 130, (188,443,0): 201, 221, 132, (188,444,0): 202, 222, 137, (188,445,0): 203, 222, 140, (188,446,0): 200, 219, 138, (188,447,0): 194, 215, 138, (188,448,0): 187, 207, 138, (188,449,0): 184, 200, 135, (188,450,0): 177, 193, 130, (188,451,0): 170, 184, 122, (188,452,0): 164, 174, 114, (188,453,0): 155, 163, 106, (188,454,0): 147, 152, 98, (188,455,0): 141, 145, 94, (188,456,0): 139, 141, 94, (188,457,0): 139, 142, 97, (188,458,0): 139, 142, 99, (188,459,0): 137, 142, 101, (188,460,0): 138, 143, 103, (188,461,0): 141, 147, 109, (188,462,0): 148, 154, 116, (188,463,0): 152, 160, 123, (188,464,0): 155, 165, 128, (188,465,0): 158, 170, 132, (188,466,0): 164, 174, 139, (188,467,0): 165, 177, 141, (188,468,0): 163, 175, 139, (188,469,0): 155, 169, 133, (188,470,0): 148, 162, 126, (188,471,0): 144, 158, 123, (188,472,0): 140, 154, 119, (188,473,0): 135, 151, 115, (188,474,0): 131, 146, 113, (188,475,0): 130, 147, 113, (188,476,0): 135, 152, 118, (188,477,0): 141, 158, 124, (188,478,0): 145, 162, 128, (188,479,0): 147, 164, 130, (188,480,0): 148, 165, 133, (188,481,0): 148, 164, 135, (188,482,0): 149, 165, 138, (188,483,0): 153, 169, 142, (188,484,0): 156, 172, 146, (188,485,0): 157, 173, 147, (188,486,0): 154, 169, 146, (188,487,0): 150, 165, 142, (188,488,0): 141, 156, 135, (188,489,0): 141, 156, 137, (188,490,0): 141, 155, 138, (188,491,0): 140, 154, 137, (188,492,0): 137, 151, 136, (188,493,0): 135, 149, 134, (188,494,0): 132, 146, 133, (188,495,0): 129, 145, 132, (188,496,0): 125, 143, 127, (188,497,0): 122, 140, 124, (188,498,0): 121, 138, 122, (188,499,0): 121, 135, 120, (188,500,0): 121, 133, 119, (188,501,0): 118, 129, 115, (188,502,0): 114, 122, 109, (188,503,0): 112, 115, 104, (188,504,0): 110, 110, 100, (188,505,0): 106, 102, 93, (188,506,0): 101, 94, 86, (188,507,0): 101, 92, 85, (188,508,0): 104, 93, 87, (188,509,0): 104, 91, 85, (188,510,0): 99, 84, 79, (188,511,0): 92, 77, 72, (188,512,0): 84, 73, 69, (188,513,0): 82, 73, 68, (188,514,0): 79, 70, 63, (188,515,0): 74, 67, 59, (188,516,0): 74, 67, 57, (188,517,0): 80, 73, 63, (188,518,0): 91, 85, 73, (188,519,0): 98, 95, 80, (188,520,0): 102, 99, 84, (188,521,0): 109, 108, 90, (188,522,0): 118, 117, 97, (188,523,0): 124, 123, 103, (188,524,0): 126, 125, 104, (188,525,0): 123, 125, 103, (188,526,0): 122, 124, 100, (188,527,0): 122, 124, 100, (188,528,0): 124, 123, 102, (188,529,0): 123, 122, 102, (188,530,0): 121, 120, 100, (188,531,0): 119, 118, 98, (188,532,0): 115, 116, 98, (188,533,0): 112, 113, 95, (188,534,0): 109, 112, 93, (188,535,0): 108, 111, 92, (188,536,0): 109, 112, 95, (188,537,0): 108, 111, 94, (188,538,0): 105, 109, 94, (188,539,0): 105, 109, 94, (188,540,0): 104, 111, 95, (188,541,0): 107, 114, 98, (188,542,0): 110, 116, 102, (188,543,0): 111, 119, 104, (188,544,0): 106, 117, 103, (188,545,0): 104, 115, 101, (188,546,0): 102, 113, 99, (188,547,0): 102, 113, 99, (188,548,0): 104, 114, 103, (188,549,0): 104, 114, 103, (188,550,0): 102, 112, 101, (188,551,0): 99, 109, 98, (188,552,0): 96, 106, 97, (188,553,0): 95, 105, 96, (188,554,0): 95, 105, 97, (188,555,0): 95, 105, 97, (188,556,0): 96, 106, 98, (188,557,0): 97, 107, 99, (188,558,0): 98, 107, 102, (188,559,0): 97, 108, 104, (188,560,0): 104, 114, 115, (188,561,0): 104, 115, 117, (188,562,0): 106, 117, 121, (188,563,0): 109, 120, 124, (188,564,0): 112, 123, 129, (188,565,0): 113, 126, 132, (188,566,0): 116, 129, 137, (188,567,0): 116, 130, 139, (188,568,0): 119, 133, 144, (188,569,0): 120, 134, 145, (188,570,0): 120, 134, 147, (188,571,0): 119, 135, 148, (188,572,0): 119, 135, 150, (188,573,0): 116, 134, 148, (188,574,0): 116, 132, 148, (188,575,0): 115, 131, 147, (188,576,0): 111, 127, 142, (188,577,0): 111, 127, 142, (188,578,0): 112, 125, 141, (188,579,0): 112, 125, 141, (188,580,0): 112, 124, 138, (188,581,0): 111, 123, 135, (188,582,0): 113, 123, 135, (188,583,0): 112, 122, 132, (188,584,0): 114, 121, 131, (188,585,0): 112, 119, 127, (188,586,0): 112, 116, 125, (188,587,0): 107, 112, 118, (188,588,0): 102, 105, 110, (188,589,0): 96, 99, 104, (188,590,0): 92, 93, 98, (188,591,0): 89, 90, 95, (188,592,0): 80, 83, 88, (188,593,0): 78, 81, 86, (188,594,0): 77, 78, 83, (188,595,0): 73, 72, 78, (188,596,0): 70, 67, 74, (188,597,0): 65, 62, 69, (188,598,0): 64, 59, 66, (188,599,0): 63, 58, 65, (189,0,0): 44, 32, 42, (189,1,0): 44, 32, 42, (189,2,0): 44, 32, 42, (189,3,0): 44, 32, 42, (189,4,0): 44, 32, 42, (189,5,0): 44, 32, 42, (189,6,0): 44, 32, 42, (189,7,0): 44, 32, 42, (189,8,0): 43, 31, 41, (189,9,0): 43, 31, 41, (189,10,0): 43, 31, 41, (189,11,0): 42, 30, 40, (189,12,0): 42, 30, 40, (189,13,0): 41, 29, 39, (189,14,0): 41, 29, 39, (189,15,0): 41, 29, 39, (189,16,0): 44, 32, 42, (189,17,0): 44, 32, 42, (189,18,0): 44, 32, 42, (189,19,0): 44, 32, 42, (189,20,0): 44, 32, 42, (189,21,0): 44, 32, 42, (189,22,0): 44, 32, 42, (189,23,0): 44, 32, 42, (189,24,0): 45, 33, 43, (189,25,0): 45, 33, 43, (189,26,0): 46, 34, 44, (189,27,0): 46, 34, 44, (189,28,0): 47, 35, 45, (189,29,0): 47, 35, 45, (189,30,0): 47, 35, 45, (189,31,0): 48, 36, 46, (189,32,0): 47, 35, 47, (189,33,0): 47, 35, 47, (189,34,0): 48, 34, 47, (189,35,0): 48, 35, 45, (189,36,0): 48, 35, 45, (189,37,0): 50, 34, 45, (189,38,0): 50, 34, 45, (189,39,0): 50, 34, 44, (189,40,0): 50, 34, 44, (189,41,0): 51, 34, 42, (189,42,0): 51, 34, 42, (189,43,0): 53, 33, 42, (189,44,0): 53, 33, 42, (189,45,0): 53, 34, 40, (189,46,0): 53, 34, 40, (189,47,0): 54, 33, 40, (189,48,0): 58, 33, 39, (189,49,0): 59, 32, 39, (189,50,0): 60, 33, 38, (189,51,0): 63, 34, 39, (189,52,0): 66, 37, 42, (189,53,0): 69, 38, 44, (189,54,0): 71, 40, 45, (189,55,0): 74, 42, 47, (189,56,0): 74, 39, 43, (189,57,0): 75, 39, 43, (189,58,0): 76, 40, 44, (189,59,0): 78, 39, 44, (189,60,0): 80, 39, 43, (189,61,0): 80, 39, 43, (189,62,0): 81, 40, 44, (189,63,0): 82, 40, 44, (189,64,0): 80, 38, 42, (189,65,0): 82, 37, 42, (189,66,0): 83, 38, 43, (189,67,0): 83, 38, 43, (189,68,0): 83, 38, 43, (189,69,0): 84, 39, 44, (189,70,0): 85, 39, 42, (189,71,0): 85, 39, 42, (189,72,0): 87, 38, 41, (189,73,0): 87, 38, 41, (189,74,0): 88, 38, 39, (189,75,0): 88, 38, 39, (189,76,0): 88, 38, 39, (189,77,0): 88, 38, 39, (189,78,0): 88, 38, 39, (189,79,0): 88, 38, 41, (189,80,0): 88, 37, 42, (189,81,0): 88, 37, 44, (189,82,0): 86, 37, 43, (189,83,0): 86, 37, 43, (189,84,0): 85, 36, 42, (189,85,0): 85, 36, 42, (189,86,0): 82, 35, 41, (189,87,0): 82, 35, 41, (189,88,0): 80, 35, 40, (189,89,0): 80, 35, 40, (189,90,0): 79, 34, 39, (189,91,0): 78, 33, 38, (189,92,0): 75, 33, 37, (189,93,0): 74, 32, 36, (189,94,0): 73, 31, 35, (189,95,0): 71, 30, 36, (189,96,0): 67, 30, 37, (189,97,0): 64, 31, 38, (189,98,0): 63, 32, 38, (189,99,0): 61, 32, 37, (189,100,0): 59, 32, 37, (189,101,0): 55, 33, 36, (189,102,0): 55, 33, 36, (189,103,0): 54, 34, 36, (189,104,0): 52, 32, 34, (189,105,0): 52, 32, 34, (189,106,0): 54, 32, 35, (189,107,0): 55, 30, 34, (189,108,0): 55, 28, 33, (189,109,0): 55, 26, 31, (189,110,0): 54, 23, 29, (189,111,0): 49, 24, 30, (189,112,0): 34, 17, 25, (189,113,0): 26, 15, 23, (189,114,0): 21, 10, 18, (189,115,0): 19, 8, 16, (189,116,0): 19, 8, 16, (189,117,0): 20, 9, 17, (189,118,0): 20, 9, 17, (189,119,0): 18, 7, 15, (189,120,0): 22, 11, 19, (189,121,0): 23, 12, 20, (189,122,0): 24, 13, 21, (189,123,0): 25, 14, 22, (189,124,0): 27, 16, 24, (189,125,0): 29, 18, 26, (189,126,0): 30, 19, 27, (189,127,0): 31, 18, 25, (189,128,0): 38, 19, 23, (189,129,0): 39, 19, 21, (189,130,0): 40, 20, 22, (189,131,0): 41, 21, 23, (189,132,0): 42, 22, 24, (189,133,0): 43, 23, 25, (189,134,0): 44, 24, 26, (189,135,0): 44, 24, 26, (189,136,0): 42, 22, 24, (189,137,0): 42, 22, 24, (189,138,0): 41, 21, 23, (189,139,0): 41, 21, 23, (189,140,0): 41, 21, 23, (189,141,0): 40, 20, 22, (189,142,0): 40, 20, 22, (189,143,0): 39, 20, 22, (189,144,0): 37, 18, 22, (189,145,0): 36, 20, 23, (189,146,0): 37, 21, 22, (189,147,0): 38, 22, 23, (189,148,0): 41, 22, 24, (189,149,0): 43, 24, 26, (189,150,0): 44, 26, 26, (189,151,0): 44, 26, 26, (189,152,0): 46, 26, 25, (189,153,0): 46, 26, 25, (189,154,0): 48, 27, 26, (189,155,0): 49, 28, 27, (189,156,0): 50, 29, 26, (189,157,0): 51, 30, 27, (189,158,0): 54, 30, 28, (189,159,0): 54, 30, 28, (189,160,0): 51, 30, 27, (189,161,0): 51, 30, 27, (189,162,0): 51, 30, 27, (189,163,0): 51, 30, 27, (189,164,0): 51, 30, 27, (189,165,0): 51, 30, 27, (189,166,0): 51, 30, 27, (189,167,0): 51, 30, 27, (189,168,0): 47, 26, 23, (189,169,0): 47, 26, 23, (189,170,0): 46, 25, 22, (189,171,0): 46, 25, 22, (189,172,0): 45, 24, 21, (189,173,0): 45, 24, 21, (189,174,0): 44, 23, 20, (189,175,0): 44, 23, 20, (189,176,0): 44, 25, 21, (189,177,0): 44, 25, 21, (189,178,0): 44, 25, 21, (189,179,0): 44, 25, 21, (189,180,0): 44, 25, 21, (189,181,0): 44, 25, 21, (189,182,0): 44, 25, 21, (189,183,0): 44, 25, 21, (189,184,0): 43, 24, 20, (189,185,0): 43, 24, 20, (189,186,0): 43, 24, 20, (189,187,0): 44, 25, 21, (189,188,0): 44, 25, 21, (189,189,0): 45, 26, 22, (189,190,0): 45, 26, 22, (189,191,0): 46, 25, 22, (189,192,0): 51, 27, 25, (189,193,0): 52, 26, 25, (189,194,0): 52, 26, 25, (189,195,0): 52, 26, 25, (189,196,0): 52, 26, 25, (189,197,0): 52, 26, 25, (189,198,0): 52, 26, 25, (189,199,0): 52, 26, 25, (189,200,0): 50, 24, 23, (189,201,0): 51, 25, 24, (189,202,0): 52, 26, 25, (189,203,0): 53, 27, 26, (189,204,0): 53, 27, 26, (189,205,0): 52, 26, 25, (189,206,0): 51, 25, 24, (189,207,0): 50, 24, 23, (189,208,0): 51, 26, 22, (189,209,0): 51, 26, 22, (189,210,0): 51, 26, 21, (189,211,0): 50, 25, 20, (189,212,0): 50, 25, 20, (189,213,0): 49, 24, 19, (189,214,0): 49, 24, 17, (189,215,0): 49, 24, 17, (189,216,0): 50, 26, 16, (189,217,0): 50, 26, 16, (189,218,0): 50, 26, 16, (189,219,0): 50, 26, 16, (189,220,0): 50, 26, 14, (189,221,0): 50, 26, 14, (189,222,0): 50, 26, 14, (189,223,0): 50, 26, 14, (189,224,0): 55, 26, 20, (189,225,0): 56, 27, 21, (189,226,0): 57, 28, 22, (189,227,0): 58, 29, 23, (189,228,0): 58, 29, 21, (189,229,0): 57, 28, 20, (189,230,0): 56, 27, 19, (189,231,0): 55, 26, 18, (189,232,0): 56, 28, 17, (189,233,0): 57, 29, 18, (189,234,0): 58, 30, 18, (189,235,0): 59, 31, 19, (189,236,0): 60, 32, 20, (189,237,0): 61, 33, 21, (189,238,0): 61, 33, 19, (189,239,0): 62, 34, 20, (189,240,0): 64, 36, 22, (189,241,0): 65, 37, 23, (189,242,0): 66, 38, 26, (189,243,0): 66, 38, 26, (189,244,0): 64, 38, 25, (189,245,0): 63, 37, 24, (189,246,0): 60, 36, 24, (189,247,0): 59, 35, 23, (189,248,0): 56, 32, 22, (189,249,0): 56, 32, 22, (189,250,0): 54, 32, 21, (189,251,0): 54, 32, 21, (189,252,0): 51, 31, 22, (189,253,0): 51, 31, 22, (189,254,0): 50, 30, 21, (189,255,0): 50, 30, 21, (189,256,0): 49, 28, 23, (189,257,0): 49, 28, 23, (189,258,0): 49, 28, 23, (189,259,0): 50, 29, 24, (189,260,0): 52, 28, 24, (189,261,0): 53, 29, 25, (189,262,0): 54, 29, 25, (189,263,0): 54, 29, 25, (189,264,0): 56, 31, 27, (189,265,0): 57, 32, 28, (189,266,0): 59, 31, 28, (189,267,0): 60, 32, 29, (189,268,0): 63, 33, 31, (189,269,0): 64, 34, 32, (189,270,0): 64, 34, 32, (189,271,0): 65, 36, 32, (189,272,0): 68, 39, 33, (189,273,0): 68, 39, 31, (189,274,0): 69, 41, 30, (189,275,0): 71, 43, 32, (189,276,0): 73, 45, 33, (189,277,0): 77, 49, 37, (189,278,0): 80, 52, 38, (189,279,0): 82, 55, 38, (189,280,0): 82, 55, 36, (189,281,0): 82, 55, 36, (189,282,0): 82, 55, 34, (189,283,0): 82, 55, 34, (189,284,0): 82, 56, 33, (189,285,0): 82, 56, 33, (189,286,0): 82, 56, 31, (189,287,0): 81, 57, 31, (189,288,0): 83, 59, 31, (189,289,0): 81, 60, 31, (189,290,0): 81, 60, 33, (189,291,0): 81, 59, 35, (189,292,0): 80, 60, 36, (189,293,0): 80, 59, 40, (189,294,0): 79, 58, 41, (189,295,0): 79, 57, 43, (189,296,0): 75, 56, 42, (189,297,0): 76, 57, 43, (189,298,0): 76, 59, 43, (189,299,0): 78, 61, 45, (189,300,0): 79, 62, 46, (189,301,0): 81, 64, 48, (189,302,0): 81, 66, 47, (189,303,0): 82, 67, 46, (189,304,0): 88, 77, 49, (189,305,0): 89, 78, 48, (189,306,0): 90, 79, 49, (189,307,0): 92, 81, 51, (189,308,0): 95, 81, 52, (189,309,0): 97, 83, 54, (189,310,0): 98, 85, 53, (189,311,0): 99, 86, 54, (189,312,0): 104, 89, 58, (189,313,0): 106, 91, 60, (189,314,0): 109, 92, 62, (189,315,0): 111, 94, 64, (189,316,0): 113, 97, 64, (189,317,0): 114, 98, 65, (189,318,0): 116, 97, 65, (189,319,0): 116, 97, 64, (189,320,0): 116, 96, 59, (189,321,0): 121, 102, 59, (189,322,0): 132, 114, 66, (189,323,0): 146, 131, 76, (189,324,0): 161, 147, 84, (189,325,0): 171, 161, 90, (189,326,0): 178, 171, 93, (189,327,0): 180, 175, 93, (189,328,0): 180, 178, 93, (189,329,0): 184, 184, 96, (189,330,0): 187, 189, 105, (189,331,0): 188, 192, 108, (189,332,0): 188, 191, 112, (189,333,0): 187, 191, 115, (189,334,0): 188, 192, 118, (189,335,0): 186, 194, 121, (189,336,0): 178, 189, 113, (189,337,0): 177, 189, 113, (189,338,0): 177, 189, 113, (189,339,0): 178, 189, 113, (189,340,0): 179, 190, 114, (189,341,0): 181, 189, 114, (189,342,0): 181, 189, 114, (189,343,0): 183, 189, 115, (189,344,0): 184, 190, 116, (189,345,0): 187, 191, 117, (189,346,0): 191, 193, 120, (189,347,0): 194, 196, 123, (189,348,0): 196, 196, 124, (189,349,0): 195, 195, 123, (189,350,0): 194, 194, 122, (189,351,0): 193, 193, 119, (189,352,0): 191, 189, 114, (189,353,0): 191, 189, 112, (189,354,0): 190, 188, 113, (189,355,0): 186, 187, 111, (189,356,0): 184, 184, 112, (189,357,0): 181, 183, 110, (189,358,0): 178, 179, 109, (189,359,0): 177, 178, 108, (189,360,0): 168, 169, 99, (189,361,0): 163, 166, 95, (189,362,0): 163, 167, 93, (189,363,0): 167, 174, 97, (189,364,0): 169, 176, 99, (189,365,0): 168, 175, 97, (189,366,0): 171, 178, 98, (189,367,0): 177, 184, 104, (189,368,0): 180, 185, 105, (189,369,0): 180, 185, 105, (189,370,0): 174, 175, 99, (189,371,0): 162, 163, 87, (189,372,0): 160, 156, 83, (189,373,0): 161, 157, 84, (189,374,0): 163, 156, 86, (189,375,0): 159, 152, 82, (189,376,0): 154, 145, 76, (189,377,0): 155, 147, 75, (189,378,0): 156, 150, 76, (189,379,0): 159, 153, 77, (189,380,0): 161, 158, 79, (189,381,0): 166, 165, 83, (189,382,0): 170, 169, 87, (189,383,0): 171, 173, 89, (189,384,0): 182, 187, 97, (189,385,0): 188, 193, 99, (189,386,0): 195, 202, 106, (189,387,0): 204, 212, 109, (189,388,0): 210, 222, 112, (189,389,0): 220, 233, 117, (189,390,0): 229, 245, 123, (189,391,0): 236, 252, 127, (189,392,0): 240, 255, 128, (189,393,0): 240, 255, 128, (189,394,0): 244, 254, 129, (189,395,0): 245, 255, 132, (189,396,0): 248, 253, 133, (189,397,0): 249, 254, 136, (189,398,0): 253, 253, 139, (189,399,0): 253, 253, 141, (189,400,0): 250, 252, 143, (189,401,0): 250, 252, 143, (189,402,0): 250, 252, 143, (189,403,0): 250, 252, 143, (189,404,0): 251, 253, 143, (189,405,0): 251, 253, 143, (189,406,0): 251, 253, 143, (189,407,0): 251, 254, 141, (189,408,0): 249, 252, 139, (189,409,0): 249, 252, 139, (189,410,0): 249, 252, 137, (189,411,0): 250, 253, 138, (189,412,0): 250, 253, 138, (189,413,0): 251, 254, 137, (189,414,0): 251, 254, 137, (189,415,0): 253, 254, 137, (189,416,0): 255, 254, 141, (189,417,0): 255, 254, 141, (189,418,0): 255, 254, 141, (189,419,0): 255, 254, 141, (189,420,0): 255, 254, 141, (189,421,0): 255, 254, 141, (189,422,0): 255, 255, 139, (189,423,0): 255, 255, 139, (189,424,0): 250, 253, 136, (189,425,0): 250, 255, 137, (189,426,0): 251, 255, 140, (189,427,0): 250, 255, 139, (189,428,0): 250, 255, 141, (189,429,0): 249, 255, 140, (189,430,0): 247, 255, 139, (189,431,0): 245, 255, 140, (189,432,0): 237, 254, 142, (189,433,0): 235, 253, 145, (189,434,0): 234, 252, 144, (189,435,0): 233, 251, 143, (189,436,0): 231, 250, 142, (189,437,0): 230, 249, 141, (189,438,0): 229, 248, 141, (189,439,0): 226, 247, 142, (189,440,0): 220, 241, 140, (189,441,0): 212, 234, 136, (189,442,0): 205, 226, 133, (189,443,0): 202, 222, 133, (189,444,0): 202, 222, 137, (189,445,0): 200, 219, 137, (189,446,0): 193, 214, 135, (189,447,0): 187, 208, 131, (189,448,0): 183, 205, 133, (189,449,0): 180, 201, 134, (189,450,0): 176, 195, 131, (189,451,0): 171, 187, 124, (189,452,0): 165, 176, 116, (189,453,0): 156, 165, 108, (189,454,0): 148, 155, 101, (189,455,0): 144, 148, 98, (189,456,0): 143, 145, 98, (189,457,0): 141, 142, 100, (189,458,0): 139, 140, 100, (189,459,0): 136, 138, 99, (189,460,0): 136, 138, 101, (189,461,0): 136, 140, 103, (189,462,0): 139, 143, 108, (189,463,0): 141, 147, 113, (189,464,0): 147, 154, 120, (189,465,0): 149, 159, 125, (189,466,0): 152, 162, 128, (189,467,0): 152, 162, 128, (189,468,0): 148, 158, 124, (189,469,0): 142, 153, 119, (189,470,0): 138, 149, 115, (189,471,0): 134, 148, 113, (189,472,0): 130, 144, 111, (189,473,0): 127, 141, 108, (189,474,0): 125, 139, 106, (189,475,0): 126, 141, 108, (189,476,0): 133, 148, 115, (189,477,0): 139, 156, 122, (189,478,0): 144, 161, 127, (189,479,0): 145, 162, 130, (189,480,0): 149, 165, 136, (189,481,0): 149, 165, 136, (189,482,0): 151, 165, 139, (189,483,0): 152, 168, 141, (189,484,0): 156, 170, 145, (189,485,0): 155, 171, 145, (189,486,0): 152, 166, 143, (189,487,0): 148, 163, 142, (189,488,0): 140, 153, 135, (189,489,0): 139, 154, 135, (189,490,0): 140, 153, 136, (189,491,0): 138, 152, 135, (189,492,0): 137, 149, 135, (189,493,0): 134, 148, 133, (189,494,0): 132, 144, 132, (189,495,0): 130, 144, 131, (189,496,0): 122, 140, 124, (189,497,0): 119, 140, 123, (189,498,0): 119, 137, 121, (189,499,0): 120, 137, 121, (189,500,0): 120, 134, 119, (189,501,0): 118, 129, 115, (189,502,0): 112, 120, 107, (189,503,0): 109, 112, 101, (189,504,0): 109, 109, 99, (189,505,0): 106, 102, 93, (189,506,0): 99, 92, 84, (189,507,0): 97, 86, 80, (189,508,0): 98, 85, 79, (189,509,0): 97, 82, 77, (189,510,0): 95, 77, 73, (189,511,0): 90, 75, 70, (189,512,0): 87, 78, 73, (189,513,0): 83, 76, 70, (189,514,0): 79, 72, 64, (189,515,0): 75, 71, 62, (189,516,0): 76, 72, 61, (189,517,0): 82, 78, 67, (189,518,0): 91, 87, 75, (189,519,0): 97, 95, 80, (189,520,0): 101, 99, 84, (189,521,0): 106, 107, 89, (189,522,0): 114, 116, 95, (189,523,0): 120, 122, 101, (189,524,0): 121, 123, 101, (189,525,0): 120, 124, 101, (189,526,0): 121, 125, 100, (189,527,0): 121, 125, 100, (189,528,0): 124, 126, 105, (189,529,0): 125, 124, 104, (189,530,0): 123, 122, 102, (189,531,0): 120, 119, 99, (189,532,0): 115, 116, 98, (189,533,0): 112, 113, 95, (189,534,0): 108, 111, 92, (189,535,0): 107, 110, 91, (189,536,0): 109, 112, 95, (189,537,0): 108, 111, 94, (189,538,0): 105, 109, 94, (189,539,0): 105, 109, 94, (189,540,0): 104, 111, 95, (189,541,0): 106, 113, 97, (189,542,0): 109, 115, 101, (189,543,0): 111, 117, 103, (189,544,0): 105, 113, 100, (189,545,0): 101, 112, 98, (189,546,0): 100, 111, 97, (189,547,0): 101, 112, 98, (189,548,0): 103, 113, 102, (189,549,0): 102, 112, 101, (189,550,0): 99, 109, 98, (189,551,0): 96, 106, 95, (189,552,0): 95, 105, 96, (189,553,0): 95, 105, 96, (189,554,0): 95, 105, 97, (189,555,0): 95, 105, 97, (189,556,0): 96, 106, 98, (189,557,0): 97, 107, 99, (189,558,0): 97, 106, 101, (189,559,0): 97, 106, 103, (189,560,0): 102, 110, 112, (189,561,0): 103, 113, 115, (189,562,0): 105, 114, 119, (189,563,0): 108, 119, 123, (189,564,0): 112, 123, 129, (189,565,0): 116, 127, 133, (189,566,0): 119, 129, 138, (189,567,0): 118, 131, 139, (189,568,0): 121, 134, 143, (189,569,0): 120, 134, 145, (189,570,0): 120, 134, 147, (189,571,0): 120, 134, 147, (189,572,0): 119, 132, 148, (189,573,0): 116, 132, 147, (189,574,0): 114, 130, 146, (189,575,0): 113, 129, 145, (189,576,0): 108, 124, 139, (189,577,0): 108, 124, 139, (189,578,0): 110, 123, 139, (189,579,0): 109, 122, 138, (189,580,0): 109, 121, 135, (189,581,0): 108, 120, 132, (189,582,0): 110, 120, 132, (189,583,0): 109, 119, 129, (189,584,0): 112, 119, 129, (189,585,0): 111, 118, 126, (189,586,0): 112, 116, 125, (189,587,0): 109, 114, 120, (189,588,0): 105, 108, 113, (189,589,0): 99, 102, 107, (189,590,0): 95, 96, 101, (189,591,0): 92, 93, 98, (189,592,0): 82, 85, 90, (189,593,0): 81, 84, 89, (189,594,0): 79, 80, 85, (189,595,0): 75, 76, 81, (189,596,0): 72, 69, 76, (189,597,0): 67, 64, 71, (189,598,0): 66, 61, 68, (189,599,0): 64, 59, 66, (190,0,0): 45, 33, 43, (190,1,0): 45, 33, 43, (190,2,0): 45, 33, 43, (190,3,0): 45, 33, 43, (190,4,0): 45, 33, 43, (190,5,0): 45, 33, 43, (190,6,0): 45, 33, 43, (190,7,0): 45, 33, 43, (190,8,0): 44, 32, 42, (190,9,0): 44, 32, 42, (190,10,0): 43, 31, 41, (190,11,0): 42, 30, 40, (190,12,0): 42, 30, 40, (190,13,0): 41, 29, 39, (190,14,0): 40, 28, 38, (190,15,0): 40, 28, 38, (190,16,0): 45, 33, 43, (190,17,0): 45, 33, 43, (190,18,0): 45, 33, 43, (190,19,0): 45, 33, 43, (190,20,0): 45, 33, 43, (190,21,0): 45, 33, 43, (190,22,0): 45, 33, 43, (190,23,0): 45, 33, 43, (190,24,0): 44, 32, 42, (190,25,0): 44, 32, 42, (190,26,0): 45, 33, 43, (190,27,0): 45, 33, 43, (190,28,0): 46, 34, 44, (190,29,0): 47, 35, 45, (190,30,0): 47, 35, 45, (190,31,0): 47, 35, 45, (190,32,0): 47, 35, 45, (190,33,0): 46, 36, 45, (190,34,0): 47, 35, 45, (190,35,0): 47, 35, 45, (190,36,0): 47, 35, 45, (190,37,0): 48, 35, 44, (190,38,0): 48, 35, 44, (190,39,0): 48, 35, 44, (190,40,0): 50, 37, 46, (190,41,0): 52, 37, 44, (190,42,0): 52, 37, 44, (190,43,0): 53, 36, 42, (190,44,0): 53, 36, 42, (190,45,0): 53, 36, 42, (190,46,0): 52, 35, 41, (190,47,0): 54, 35, 39, (190,48,0): 55, 32, 38, (190,49,0): 58, 33, 39, (190,50,0): 60, 35, 39, (190,51,0): 63, 36, 41, (190,52,0): 64, 37, 42, (190,53,0): 67, 38, 43, (190,54,0): 68, 37, 42, (190,55,0): 69, 37, 42, (190,56,0): 71, 39, 42, (190,57,0): 73, 38, 42, (190,58,0): 75, 39, 43, (190,59,0): 75, 39, 43, (190,60,0): 78, 39, 42, (190,61,0): 78, 39, 42, (190,62,0): 79, 40, 43, (190,63,0): 80, 39, 43, (190,64,0): 79, 37, 41, (190,65,0): 79, 37, 41, (190,66,0): 80, 38, 42, (190,67,0): 80, 38, 42, (190,68,0): 81, 39, 41, (190,69,0): 82, 40, 42, (190,70,0): 84, 39, 42, (190,71,0): 85, 40, 43, (190,72,0): 85, 39, 41, (190,73,0): 85, 39, 41, (190,74,0): 87, 39, 39, (190,75,0): 87, 39, 39, (190,76,0): 87, 39, 39, (190,77,0): 87, 39, 39, (190,78,0): 87, 39, 37, (190,79,0): 87, 39, 39, (190,80,0): 88, 37, 42, (190,81,0): 88, 37, 44, (190,82,0): 86, 37, 43, (190,83,0): 86, 37, 43, (190,84,0): 85, 36, 42, (190,85,0): 85, 36, 42, (190,86,0): 82, 35, 41, (190,87,0): 82, 35, 41, (190,88,0): 80, 35, 40, (190,89,0): 79, 34, 39, (190,90,0): 78, 33, 38, (190,91,0): 77, 32, 37, (190,92,0): 74, 32, 36, (190,93,0): 73, 31, 35, (190,94,0): 72, 30, 34, (190,95,0): 71, 30, 36, (190,96,0): 66, 31, 37, (190,97,0): 64, 31, 38, (190,98,0): 63, 32, 38, (190,99,0): 61, 32, 37, (190,100,0): 59, 32, 37, (190,101,0): 55, 33, 36, (190,102,0): 55, 33, 36, (190,103,0): 54, 34, 36, (190,104,0): 51, 32, 34, (190,105,0): 52, 32, 34, (190,106,0): 53, 31, 34, (190,107,0): 55, 30, 34, (190,108,0): 55, 28, 33, (190,109,0): 56, 27, 32, (190,110,0): 55, 24, 30, (190,111,0): 50, 25, 31, (190,112,0): 34, 17, 25, (190,113,0): 26, 15, 23, (190,114,0): 21, 10, 18, (190,115,0): 18, 7, 15, (190,116,0): 19, 8, 16, (190,117,0): 20, 9, 17, (190,118,0): 19, 8, 16, (190,119,0): 18, 7, 15, (190,120,0): 23, 12, 20, (190,121,0): 23, 12, 20, (190,122,0): 24, 13, 21, (190,123,0): 26, 15, 23, (190,124,0): 28, 17, 25, (190,125,0): 29, 18, 26, (190,126,0): 30, 19, 27, (190,127,0): 32, 19, 26, (190,128,0): 38, 19, 23, (190,129,0): 40, 20, 22, (190,130,0): 41, 21, 23, (190,131,0): 42, 22, 24, (190,132,0): 43, 23, 25, (190,133,0): 44, 24, 26, (190,134,0): 45, 25, 27, (190,135,0): 46, 26, 28, (190,136,0): 41, 21, 23, (190,137,0): 41, 21, 23, (190,138,0): 42, 22, 24, (190,139,0): 42, 22, 24, (190,140,0): 42, 22, 24, (190,141,0): 42, 22, 24, (190,142,0): 43, 23, 25, (190,143,0): 42, 23, 25, (190,144,0): 39, 20, 24, (190,145,0): 38, 22, 25, (190,146,0): 38, 22, 23, (190,147,0): 39, 23, 24, (190,148,0): 42, 23, 25, (190,149,0): 42, 23, 25, (190,150,0): 43, 25, 25, (190,151,0): 43, 25, 25, (190,152,0): 46, 26, 25, (190,153,0): 46, 26, 25, (190,154,0): 48, 27, 26, (190,155,0): 49, 28, 27, (190,156,0): 50, 29, 26, (190,157,0): 51, 30, 27, (190,158,0): 54, 30, 28, (190,159,0): 54, 30, 28, (190,160,0): 51, 30, 27, (190,161,0): 51, 30, 27, (190,162,0): 51, 30, 27, (190,163,0): 51, 30, 27, (190,164,0): 51, 30, 27, (190,165,0): 51, 30, 27, (190,166,0): 51, 30, 27, (190,167,0): 51, 30, 27, (190,168,0): 47, 26, 23, (190,169,0): 47, 26, 23, (190,170,0): 46, 25, 22, (190,171,0): 46, 25, 22, (190,172,0): 45, 24, 21, (190,173,0): 45, 24, 21, (190,174,0): 44, 23, 20, (190,175,0): 44, 23, 20, (190,176,0): 44, 25, 21, (190,177,0): 44, 25, 21, (190,178,0): 44, 25, 21, (190,179,0): 44, 25, 21, (190,180,0): 44, 25, 21, (190,181,0): 44, 25, 21, (190,182,0): 44, 25, 21, (190,183,0): 44, 25, 21, (190,184,0): 44, 25, 21, (190,185,0): 44, 25, 21, (190,186,0): 44, 25, 21, (190,187,0): 45, 26, 22, (190,188,0): 45, 26, 22, (190,189,0): 46, 27, 23, (190,190,0): 46, 27, 23, (190,191,0): 47, 26, 23, (190,192,0): 51, 27, 25, (190,193,0): 52, 26, 25, (190,194,0): 52, 26, 25, (190,195,0): 52, 26, 25, (190,196,0): 52, 26, 25, (190,197,0): 52, 26, 25, (190,198,0): 52, 26, 25, (190,199,0): 52, 26, 25, (190,200,0): 50, 24, 23, (190,201,0): 51, 25, 24, (190,202,0): 52, 26, 25, (190,203,0): 53, 27, 26, (190,204,0): 53, 27, 26, (190,205,0): 52, 26, 25, (190,206,0): 51, 25, 24, (190,207,0): 50, 24, 23, (190,208,0): 51, 26, 22, (190,209,0): 51, 26, 22, (190,210,0): 51, 26, 21, (190,211,0): 50, 25, 20, (190,212,0): 50, 25, 20, (190,213,0): 49, 24, 19, (190,214,0): 49, 24, 17, (190,215,0): 49, 24, 17, (190,216,0): 50, 26, 16, (190,217,0): 50, 26, 16, (190,218,0): 50, 26, 16, (190,219,0): 50, 26, 16, (190,220,0): 50, 26, 14, (190,221,0): 50, 26, 14, (190,222,0): 50, 26, 14, (190,223,0): 50, 26, 14, (190,224,0): 56, 27, 21, (190,225,0): 57, 28, 22, (190,226,0): 58, 29, 23, (190,227,0): 58, 29, 23, (190,228,0): 58, 29, 21, (190,229,0): 58, 29, 21, (190,230,0): 57, 28, 20, (190,231,0): 56, 27, 19, (190,232,0): 58, 30, 19, (190,233,0): 58, 30, 19, (190,234,0): 59, 31, 19, (190,235,0): 60, 32, 20, (190,236,0): 61, 33, 21, (190,237,0): 62, 34, 22, (190,238,0): 64, 36, 22, (190,239,0): 64, 36, 22, (190,240,0): 66, 38, 24, (190,241,0): 67, 39, 25, (190,242,0): 67, 39, 27, (190,243,0): 67, 39, 27, (190,244,0): 65, 39, 26, (190,245,0): 64, 38, 25, (190,246,0): 60, 36, 24, (190,247,0): 59, 35, 23, (190,248,0): 57, 33, 23, (190,249,0): 57, 33, 23, (190,250,0): 55, 33, 22, (190,251,0): 55, 33, 22, (190,252,0): 52, 32, 23, (190,253,0): 52, 32, 23, (190,254,0): 51, 31, 22, (190,255,0): 51, 31, 22, (190,256,0): 49, 28, 23, (190,257,0): 49, 28, 23, (190,258,0): 49, 28, 23, (190,259,0): 50, 29, 24, (190,260,0): 52, 28, 24, (190,261,0): 53, 29, 25, (190,262,0): 54, 29, 25, (190,263,0): 54, 29, 25, (190,264,0): 56, 31, 27, (190,265,0): 57, 32, 28, (190,266,0): 59, 31, 28, (190,267,0): 60, 32, 29, (190,268,0): 63, 33, 31, (190,269,0): 64, 34, 32, (190,270,0): 64, 34, 32, (190,271,0): 65, 36, 32, (190,272,0): 68, 39, 33, (190,273,0): 68, 39, 31, (190,274,0): 69, 41, 30, (190,275,0): 71, 43, 32, (190,276,0): 74, 46, 34, (190,277,0): 77, 49, 37, (190,278,0): 80, 52, 38, (190,279,0): 82, 55, 38, (190,280,0): 83, 56, 37, (190,281,0): 83, 56, 37, (190,282,0): 83, 56, 35, (190,283,0): 83, 56, 35, (190,284,0): 83, 57, 34, (190,285,0): 83, 57, 32, (190,286,0): 83, 57, 32, (190,287,0): 82, 58, 32, (190,288,0): 82, 58, 30, (190,289,0): 80, 59, 30, (190,290,0): 80, 59, 32, (190,291,0): 80, 58, 34, (190,292,0): 79, 59, 35, (190,293,0): 80, 59, 40, (190,294,0): 80, 59, 42, (190,295,0): 80, 58, 44, (190,296,0): 77, 58, 44, (190,297,0): 77, 58, 44, (190,298,0): 77, 59, 45, (190,299,0): 79, 61, 47, (190,300,0): 80, 63, 47, (190,301,0): 82, 65, 49, (190,302,0): 82, 67, 48, (190,303,0): 82, 67, 46, (190,304,0): 88, 77, 49, (190,305,0): 89, 78, 48, (190,306,0): 90, 79, 49, (190,307,0): 92, 81, 51, (190,308,0): 93, 82, 52, (190,309,0): 95, 84, 54, (190,310,0): 98, 85, 53, (190,311,0): 99, 86, 54, (190,312,0): 106, 91, 60, (190,313,0): 107, 92, 61, (190,314,0): 110, 93, 63, (190,315,0): 113, 96, 66, (190,316,0): 114, 97, 67, (190,317,0): 115, 98, 68, (190,318,0): 115, 98, 68, (190,319,0): 116, 97, 65, (190,320,0): 118, 100, 64, (190,321,0): 119, 101, 61, (190,322,0): 125, 108, 64, (190,323,0): 138, 122, 70, (190,324,0): 153, 142, 80, (190,325,0): 167, 158, 89, (190,326,0): 176, 170, 92, (190,327,0): 179, 177, 94, (190,328,0): 177, 177, 91, (190,329,0): 180, 183, 94, (190,330,0): 184, 188, 103, (190,331,0): 186, 191, 107, (190,332,0): 186, 191, 111, (190,333,0): 184, 191, 114, (190,334,0): 185, 191, 117, (190,335,0): 184, 194, 121, (190,336,0): 177, 189, 115, (190,337,0): 177, 191, 116, (190,338,0): 178, 192, 117, (190,339,0): 179, 191, 117, (190,340,0): 180, 192, 118, (190,341,0): 181, 191, 118, (190,342,0): 181, 191, 118, (190,343,0): 183, 191, 118, (190,344,0): 184, 190, 118, (190,345,0): 186, 192, 120, (190,346,0): 191, 194, 123, (190,347,0): 194, 197, 126, (190,348,0): 196, 197, 127, (190,349,0): 195, 196, 126, (190,350,0): 194, 195, 125, (190,351,0): 192, 194, 121, (190,352,0): 188, 189, 113, (190,353,0): 186, 187, 109, (190,354,0): 184, 185, 109, (190,355,0): 182, 183, 107, (190,356,0): 181, 181, 109, (190,357,0): 180, 182, 109, (190,358,0): 180, 181, 111, (190,359,0): 179, 182, 111, (190,360,0): 169, 172, 101, (190,361,0): 165, 168, 97, (190,362,0): 166, 170, 96, (190,363,0): 169, 176, 99, (190,364,0): 171, 178, 101, (190,365,0): 168, 177, 98, (190,366,0): 171, 180, 99, (190,367,0): 177, 184, 104, (190,368,0): 178, 183, 101, (190,369,0): 178, 183, 101, (190,370,0): 174, 175, 97, (190,371,0): 164, 165, 87, (190,372,0): 163, 159, 85, (190,373,0): 165, 161, 87, (190,374,0): 167, 160, 88, (190,375,0): 164, 156, 84, (190,376,0): 160, 152, 80, (190,377,0): 160, 152, 80, (190,378,0): 160, 152, 79, (190,379,0): 162, 156, 80, (190,380,0): 164, 161, 82, (190,381,0): 170, 169, 87, (190,382,0): 176, 175, 92, (190,383,0): 178, 181, 94, (190,384,0): 186, 191, 101, (190,385,0): 191, 196, 102, (190,386,0): 197, 205, 106, (190,387,0): 205, 213, 110, (190,388,0): 211, 223, 113, (190,389,0): 221, 234, 118, (190,390,0): 230, 246, 122, (190,391,0): 237, 254, 126, (190,392,0): 242, 255, 128, (190,393,0): 242, 255, 128, (190,394,0): 245, 255, 128, (190,395,0): 246, 255, 131, (190,396,0): 249, 254, 134, (190,397,0): 250, 255, 137, (190,398,0): 253, 253, 139, (190,399,0): 254, 254, 142, (190,400,0): 250, 252, 143, (190,401,0): 251, 253, 146, (190,402,0): 251, 253, 144, (190,403,0): 251, 253, 144, (190,404,0): 252, 254, 145, (190,405,0): 252, 254, 144, (190,406,0): 253, 255, 145, (190,407,0): 253, 255, 145, (190,408,0): 250, 253, 140, (190,409,0): 250, 253, 140, (190,410,0): 251, 254, 141, (190,411,0): 251, 254, 139, (190,412,0): 252, 255, 140, (190,413,0): 252, 255, 140, (190,414,0): 253, 255, 141, (190,415,0): 255, 255, 141, (190,416,0): 255, 253, 138, (190,417,0): 255, 252, 138, (190,418,0): 255, 253, 138, (190,419,0): 255, 253, 138, (190,420,0): 255, 253, 140, (190,421,0): 255, 253, 140, (190,422,0): 254, 254, 140, (190,423,0): 254, 254, 140, (190,424,0): 250, 253, 138, (190,425,0): 250, 255, 139, (190,426,0): 251, 255, 142, (190,427,0): 250, 255, 141, (190,428,0): 250, 255, 143, (190,429,0): 248, 255, 142, (190,430,0): 247, 255, 141, (190,431,0): 245, 255, 143, (190,432,0): 238, 254, 147, (190,433,0): 235, 254, 147, (190,434,0): 233, 252, 145, (190,435,0): 230, 249, 142, (190,436,0): 227, 246, 139, (190,437,0): 224, 243, 138, (190,438,0): 220, 241, 136, (190,439,0): 219, 240, 137, (190,440,0): 215, 235, 136, (190,441,0): 208, 230, 132, (190,442,0): 203, 224, 131, (190,443,0): 199, 222, 132, (190,444,0): 199, 221, 136, (190,445,0): 196, 218, 135, (190,446,0): 189, 210, 131, (190,447,0): 181, 204, 126, (190,448,0): 180, 203, 131, (190,449,0): 177, 203, 132, (190,450,0): 176, 197, 130, (190,451,0): 172, 191, 127, (190,452,0): 166, 180, 119, (190,453,0): 160, 169, 112, (190,454,0): 153, 160, 106, (190,455,0): 150, 154, 104, (190,456,0): 147, 149, 102, (190,457,0): 146, 144, 103, (190,458,0): 143, 141, 102, (190,459,0): 138, 138, 100, (190,460,0): 136, 136, 100, (190,461,0): 134, 135, 101, (190,462,0): 132, 136, 103, (190,463,0): 132, 138, 104, (190,464,0): 134, 141, 108, (190,465,0): 136, 143, 112, (190,466,0): 137, 144, 113, (190,467,0): 133, 142, 111, (190,468,0): 128, 137, 106, (190,469,0): 124, 133, 102, (190,470,0): 123, 132, 101, (190,471,0): 123, 134, 102, (190,472,0): 122, 133, 103, (190,473,0): 118, 131, 101, (190,474,0): 117, 130, 100, (190,475,0): 121, 134, 104, (190,476,0): 128, 141, 111, (190,477,0): 135, 150, 119, (190,478,0): 140, 155, 124, (190,479,0): 142, 157, 126, (190,480,0): 150, 165, 136, (190,481,0): 149, 163, 137, (190,482,0): 150, 163, 137, (190,483,0): 151, 165, 139, (190,484,0): 154, 166, 142, (190,485,0): 152, 166, 141, (190,486,0): 149, 161, 139, (190,487,0): 144, 157, 137, (190,488,0): 139, 150, 133, (190,489,0): 138, 151, 133, (190,490,0): 139, 150, 134, (190,491,0): 138, 150, 136, (190,492,0): 137, 147, 136, (190,493,0): 134, 146, 134, (190,494,0): 133, 143, 132, (190,495,0): 129, 143, 130, (190,496,0): 120, 138, 122, (190,497,0): 117, 138, 121, (190,498,0): 119, 137, 121, (190,499,0): 120, 137, 121, (190,500,0): 120, 134, 119, (190,501,0): 117, 128, 114, (190,502,0): 111, 119, 106, (190,503,0): 107, 110, 99, (190,504,0): 107, 107, 97, (190,505,0): 104, 100, 91, (190,506,0): 97, 90, 82, (190,507,0): 91, 80, 74, (190,508,0): 88, 75, 69, (190,509,0): 88, 73, 68, (190,510,0): 90, 72, 68, (190,511,0): 88, 73, 68, (190,512,0): 85, 76, 71, (190,513,0): 80, 75, 69, (190,514,0): 79, 75, 66, (190,515,0): 80, 77, 68, (190,516,0): 84, 82, 70, (190,517,0): 89, 87, 75, (190,518,0): 93, 91, 78, (190,519,0): 93, 94, 78, (190,520,0): 99, 100, 84, (190,521,0): 103, 106, 87, (190,522,0): 110, 113, 92, (190,523,0): 114, 117, 96, (190,524,0): 116, 120, 97, (190,525,0): 116, 121, 98, (190,526,0): 118, 124, 98, (190,527,0): 121, 125, 100, (190,528,0): 126, 128, 107, (190,529,0): 127, 126, 106, (190,530,0): 124, 123, 105, (190,531,0): 121, 120, 102, (190,532,0): 115, 116, 98, (190,533,0): 111, 112, 94, (190,534,0): 108, 111, 94, (190,535,0): 106, 109, 92, (190,536,0): 106, 108, 94, (190,537,0): 105, 107, 93, (190,538,0): 103, 107, 92, (190,539,0): 102, 106, 91, (190,540,0): 102, 108, 94, (190,541,0): 104, 110, 96, (190,542,0): 107, 113, 99, (190,543,0): 109, 115, 101, (190,544,0): 102, 110, 97, (190,545,0): 100, 108, 95, (190,546,0): 100, 108, 95, (190,547,0): 101, 109, 96, (190,548,0): 103, 111, 100, (190,549,0): 102, 110, 99, (190,550,0): 99, 106, 98, (190,551,0): 96, 103, 95, (190,552,0): 96, 103, 95, (190,553,0): 97, 104, 96, (190,554,0): 98, 105, 98, (190,555,0): 98, 105, 98, (190,556,0): 99, 105, 101, (190,557,0): 99, 105, 101, (190,558,0): 99, 105, 101, (190,559,0): 97, 106, 103, (190,560,0): 99, 107, 109, (190,561,0): 101, 109, 112, (190,562,0): 105, 113, 116, (190,563,0): 108, 118, 120, (190,564,0): 113, 122, 127, (190,565,0): 117, 128, 134, (190,566,0): 120, 130, 139, (190,567,0): 122, 132, 141, (190,568,0): 123, 133, 143, (190,569,0): 121, 133, 145, (190,570,0): 121, 133, 147, (190,571,0): 120, 134, 147, (190,572,0): 118, 131, 147, (190,573,0): 116, 129, 145, (190,574,0): 114, 127, 143, (190,575,0): 113, 126, 142, (190,576,0): 107, 123, 138, (190,577,0): 106, 122, 137, (190,578,0): 108, 121, 137, (190,579,0): 106, 119, 135, (190,580,0): 106, 118, 132, (190,581,0): 105, 117, 129, (190,582,0): 106, 116, 128, (190,583,0): 106, 116, 126, (190,584,0): 108, 115, 125, (190,585,0): 109, 116, 124, (190,586,0): 111, 115, 124, (190,587,0): 109, 114, 120, (190,588,0): 106, 109, 114, (190,589,0): 101, 104, 109, (190,590,0): 98, 99, 104, (190,591,0): 95, 96, 101, (190,592,0): 88, 91, 98, (190,593,0): 86, 89, 96, (190,594,0): 85, 85, 93, (190,595,0): 80, 80, 88, (190,596,0): 77, 74, 83, (190,597,0): 72, 69, 78, (190,598,0): 70, 64, 74, (190,599,0): 68, 62, 72, (191,0,0): 45, 33, 43, (191,1,0): 45, 33, 43, (191,2,0): 45, 33, 43, (191,3,0): 45, 33, 43, (191,4,0): 45, 33, 43, (191,5,0): 45, 33, 43, (191,6,0): 45, 33, 43, (191,7,0): 45, 33, 43, (191,8,0): 44, 32, 42, (191,9,0): 44, 32, 42, (191,10,0): 43, 31, 41, (191,11,0): 42, 30, 40, (191,12,0): 42, 30, 40, (191,13,0): 41, 29, 39, (191,14,0): 40, 28, 38, (191,15,0): 40, 28, 38, (191,16,0): 45, 33, 43, (191,17,0): 44, 34, 43, (191,18,0): 45, 33, 43, (191,19,0): 45, 33, 43, (191,20,0): 45, 33, 43, (191,21,0): 45, 33, 43, (191,22,0): 45, 33, 43, (191,23,0): 45, 33, 43, (191,24,0): 43, 31, 41, (191,25,0): 43, 31, 41, (191,26,0): 44, 32, 42, (191,27,0): 45, 33, 43, (191,28,0): 46, 34, 44, (191,29,0): 46, 34, 44, (191,30,0): 47, 35, 45, (191,31,0): 47, 35, 45, (191,32,0): 48, 36, 46, (191,33,0): 48, 36, 46, (191,34,0): 48, 36, 46, (191,35,0): 48, 36, 46, (191,36,0): 48, 37, 45, (191,37,0): 49, 36, 45, (191,38,0): 49, 36, 45, (191,39,0): 49, 36, 45, (191,40,0): 55, 40, 47, (191,41,0): 55, 40, 47, (191,42,0): 55, 40, 47, (191,43,0): 55, 38, 44, (191,44,0): 55, 38, 46, (191,45,0): 55, 38, 44, (191,46,0): 54, 37, 43, (191,47,0): 56, 37, 43, (191,48,0): 57, 34, 42, (191,49,0): 58, 35, 43, (191,50,0): 60, 37, 43, (191,51,0): 63, 38, 44, (191,52,0): 63, 38, 44, (191,53,0): 63, 36, 41, (191,54,0): 64, 35, 40, (191,55,0): 63, 34, 39, (191,56,0): 70, 39, 44, (191,57,0): 70, 39, 44, (191,58,0): 71, 39, 44, (191,59,0): 74, 39, 43, (191,60,0): 74, 39, 43, (191,61,0): 75, 40, 44, (191,62,0): 76, 40, 44, (191,63,0): 77, 41, 45, (191,64,0): 76, 37, 42, (191,65,0): 77, 38, 41, (191,66,0): 78, 37, 41, (191,67,0): 78, 39, 42, (191,68,0): 80, 39, 43, (191,69,0): 81, 41, 42, (191,70,0): 81, 41, 42, (191,71,0): 83, 41, 43, (191,72,0): 82, 40, 42, (191,73,0): 84, 40, 41, (191,74,0): 84, 40, 41, (191,75,0): 84, 40, 39, (191,76,0): 85, 39, 39, (191,77,0): 84, 40, 39, (191,78,0): 85, 39, 39, (191,79,0): 85, 39, 39, (191,80,0): 85, 39, 42, (191,81,0): 87, 38, 44, (191,82,0): 84, 37, 43, (191,83,0): 84, 37, 43, (191,84,0): 85, 36, 40, (191,85,0): 85, 36, 40, (191,86,0): 82, 36, 39, (191,87,0): 82, 36, 39, (191,88,0): 80, 34, 37, (191,89,0): 79, 34, 37, (191,90,0): 78, 33, 36, (191,91,0): 75, 33, 35, (191,92,0): 74, 32, 36, (191,93,0): 72, 31, 35, (191,94,0): 71, 30, 34, (191,95,0): 70, 31, 36, (191,96,0): 66, 31, 37, (191,97,0): 64, 31, 38, (191,98,0): 63, 32, 38, (191,99,0): 61, 32, 37, (191,100,0): 59, 32, 37, (191,101,0): 58, 31, 36, (191,102,0): 57, 32, 36, (191,103,0): 55, 33, 36, (191,104,0): 52, 30, 33, (191,105,0): 53, 31, 34, (191,106,0): 53, 31, 34, (191,107,0): 55, 30, 34, (191,108,0): 55, 28, 33, (191,109,0): 56, 27, 32, (191,110,0): 54, 25, 30, (191,111,0): 50, 25, 31, (191,112,0): 34, 17, 25, (191,113,0): 25, 14, 22, (191,114,0): 20, 9, 17, (191,115,0): 18, 7, 15, (191,116,0): 19, 8, 16, (191,117,0): 20, 9, 17, (191,118,0): 19, 8, 16, (191,119,0): 18, 7, 15, (191,120,0): 23, 12, 20, (191,121,0): 23, 12, 20, (191,122,0): 25, 14, 22, (191,123,0): 26, 15, 23, (191,124,0): 28, 17, 25, (191,125,0): 29, 18, 26, (191,126,0): 30, 19, 27, (191,127,0): 32, 19, 26, (191,128,0): 38, 19, 23, (191,129,0): 40, 20, 22, (191,130,0): 41, 21, 23, (191,131,0): 42, 22, 24, (191,132,0): 43, 23, 25, (191,133,0): 45, 25, 27, (191,134,0): 46, 26, 28, (191,135,0): 46, 26, 28, (191,136,0): 41, 21, 23, (191,137,0): 41, 21, 23, (191,138,0): 42, 22, 24, (191,139,0): 42, 22, 24, (191,140,0): 43, 23, 25, (191,141,0): 44, 24, 26, (191,142,0): 44, 24, 26, (191,143,0): 45, 25, 27, (191,144,0): 41, 22, 26, (191,145,0): 41, 22, 26, (191,146,0): 41, 22, 24, (191,147,0): 42, 23, 25, (191,148,0): 42, 23, 25, (191,149,0): 42, 23, 25, (191,150,0): 43, 23, 24, (191,151,0): 44, 24, 25, (191,152,0): 46, 26, 25, (191,153,0): 47, 27, 26, (191,154,0): 48, 27, 26, (191,155,0): 49, 28, 27, (191,156,0): 50, 29, 26, (191,157,0): 51, 30, 27, (191,158,0): 54, 30, 28, (191,159,0): 55, 31, 29, (191,160,0): 51, 30, 27, (191,161,0): 51, 30, 27, (191,162,0): 51, 30, 27, (191,163,0): 51, 30, 27, (191,164,0): 51, 30, 27, (191,165,0): 51, 30, 27, (191,166,0): 51, 30, 27, (191,167,0): 51, 30, 27, (191,168,0): 47, 26, 23, (191,169,0): 47, 26, 23, (191,170,0): 46, 25, 22, (191,171,0): 46, 25, 22, (191,172,0): 45, 24, 21, (191,173,0): 45, 24, 21, (191,174,0): 44, 23, 20, (191,175,0): 44, 23, 20, (191,176,0): 44, 25, 21, (191,177,0): 44, 25, 21, (191,178,0): 44, 25, 21, (191,179,0): 44, 25, 21, (191,180,0): 44, 25, 21, (191,181,0): 44, 25, 21, (191,182,0): 44, 25, 21, (191,183,0): 44, 25, 21, (191,184,0): 44, 25, 21, (191,185,0): 45, 26, 22, (191,186,0): 45, 26, 22, (191,187,0): 46, 27, 23, (191,188,0): 46, 27, 23, (191,189,0): 47, 28, 24, (191,190,0): 47, 28, 24, (191,191,0): 47, 28, 24, (191,192,0): 51, 27, 25, (191,193,0): 51, 27, 25, (191,194,0): 52, 26, 25, (191,195,0): 51, 27, 25, (191,196,0): 52, 26, 25, (191,197,0): 51, 27, 25, (191,198,0): 52, 26, 25, (191,199,0): 51, 27, 25, (191,200,0): 50, 24, 23, (191,201,0): 50, 26, 24, (191,202,0): 52, 26, 25, (191,203,0): 52, 28, 26, (191,204,0): 53, 27, 26, (191,205,0): 51, 27, 25, (191,206,0): 51, 25, 24, (191,207,0): 50, 25, 21, (191,208,0): 51, 26, 22, (191,209,0): 51, 26, 21, (191,210,0): 51, 26, 21, (191,211,0): 50, 25, 20, (191,212,0): 50, 25, 20, (191,213,0): 49, 24, 19, (191,214,0): 49, 24, 17, (191,215,0): 49, 24, 17, (191,216,0): 50, 26, 16, (191,217,0): 50, 26, 16, (191,218,0): 50, 26, 16, (191,219,0): 50, 26, 16, (191,220,0): 50, 26, 16, (191,221,0): 50, 26, 14, (191,222,0): 50, 26, 16, (191,223,0): 50, 26, 16, (191,224,0): 55, 28, 21, (191,225,0): 57, 28, 24, (191,226,0): 58, 29, 25, (191,227,0): 59, 30, 24, (191,228,0): 59, 30, 22, (191,229,0): 58, 29, 21, (191,230,0): 57, 29, 18, (191,231,0): 56, 28, 17, (191,232,0): 59, 31, 20, (191,233,0): 59, 31, 19, (191,234,0): 60, 30, 19, (191,235,0): 61, 32, 18, (191,236,0): 63, 34, 20, (191,237,0): 64, 35, 21, (191,238,0): 66, 37, 23, (191,239,0): 67, 38, 24, (191,240,0): 68, 39, 25, (191,241,0): 67, 39, 25, (191,242,0): 68, 40, 28, (191,243,0): 68, 40, 28, (191,244,0): 67, 39, 27, (191,245,0): 64, 38, 25, (191,246,0): 63, 36, 25, (191,247,0): 60, 36, 24, (191,248,0): 57, 33, 23, (191,249,0): 57, 33, 23, (191,250,0): 57, 33, 23, (191,251,0): 55, 33, 22, (191,252,0): 55, 33, 22, (191,253,0): 52, 32, 21, (191,254,0): 54, 31, 23, (191,255,0): 51, 31, 22, (191,256,0): 49, 29, 22, (191,257,0): 49, 28, 23, (191,258,0): 49, 28, 23, (191,259,0): 50, 29, 24, (191,260,0): 52, 28, 24, (191,261,0): 53, 29, 25, (191,262,0): 54, 29, 25, (191,263,0): 54, 29, 25, (191,264,0): 56, 31, 27, (191,265,0): 57, 32, 28, (191,266,0): 59, 31, 28, (191,267,0): 60, 32, 29, (191,268,0): 63, 33, 31, (191,269,0): 64, 34, 32, (191,270,0): 64, 34, 32, (191,271,0): 65, 35, 33, (191,272,0): 68, 39, 33, (191,273,0): 68, 41, 32, (191,274,0): 69, 41, 30, (191,275,0): 70, 43, 32, (191,276,0): 74, 46, 34, (191,277,0): 76, 50, 35, (191,278,0): 80, 52, 38, (191,279,0): 81, 55, 38, (191,280,0): 83, 56, 37, (191,281,0): 82, 57, 35, (191,282,0): 83, 56, 35, (191,283,0): 82, 58, 34, (191,284,0): 83, 57, 32, (191,285,0): 82, 58, 30, (191,286,0): 83, 57, 30, (191,287,0): 82, 58, 30, (191,288,0): 79, 58, 29, (191,289,0): 79, 58, 29, (191,290,0): 80, 59, 32, (191,291,0): 80, 58, 34, (191,292,0): 79, 59, 35, (191,293,0): 79, 58, 37, (191,294,0): 80, 59, 40, (191,295,0): 80, 59, 42, (191,296,0): 78, 59, 44, (191,297,0): 78, 59, 44, (191,298,0): 78, 61, 45, (191,299,0): 80, 63, 47, (191,300,0): 81, 64, 48, (191,301,0): 82, 65, 47, (191,302,0): 82, 67, 48, (191,303,0): 83, 68, 47, (191,304,0): 90, 76, 49, (191,305,0): 89, 78, 48, (191,306,0): 92, 78, 49, (191,307,0): 92, 81, 51, (191,308,0): 95, 81, 52, (191,309,0): 97, 83, 54, (191,310,0): 98, 85, 53, (191,311,0): 99, 86, 54, (191,312,0): 107, 92, 61, (191,313,0): 108, 93, 62, (191,314,0): 111, 94, 64, (191,315,0): 113, 96, 66, (191,316,0): 115, 98, 68, (191,317,0): 115, 98, 68, (191,318,0): 115, 98, 68, (191,319,0): 115, 99, 66, (191,320,0): 119, 103, 69, (191,321,0): 118, 103, 64, (191,322,0): 120, 105, 62, (191,323,0): 131, 117, 68, (191,324,0): 147, 137, 78, (191,325,0): 164, 155, 88, (191,326,0): 175, 169, 93, (191,327,0): 178, 176, 93, (191,328,0): 175, 175, 87, (191,329,0): 177, 180, 93, (191,330,0): 182, 186, 101, (191,331,0): 184, 189, 107, (191,332,0): 182, 189, 111, (191,333,0): 181, 189, 114, (191,334,0): 182, 190, 117, (191,335,0): 182, 192, 119, (191,336,0): 175, 189, 114, (191,337,0): 176, 190, 115, (191,338,0): 178, 192, 117, (191,339,0): 179, 193, 118, (191,340,0): 181, 193, 119, (191,341,0): 182, 194, 120, (191,342,0): 183, 193, 120, (191,343,0): 183, 193, 120, (191,344,0): 184, 191, 121, (191,345,0): 186, 194, 121, (191,346,0): 190, 196, 124, (191,347,0): 193, 199, 127, (191,348,0): 197, 200, 129, (191,349,0): 196, 199, 128, (191,350,0): 194, 197, 126, (191,351,0): 192, 196, 122, (191,352,0): 186, 188, 113, (191,353,0): 184, 186, 111, (191,354,0): 181, 183, 108, (191,355,0): 179, 181, 108, (191,356,0): 178, 181, 110, (191,357,0): 180, 183, 112, (191,358,0): 182, 185, 114, (191,359,0): 182, 188, 116, (191,360,0): 173, 176, 105, (191,361,0): 167, 173, 101, (191,362,0): 167, 173, 99, (191,363,0): 172, 179, 102, (191,364,0): 172, 180, 103, (191,365,0): 170, 179, 100, (191,366,0): 171, 180, 99, (191,367,0): 176, 185, 104, (191,368,0): 174, 181, 101, (191,369,0): 177, 182, 102, (191,370,0): 173, 176, 97, (191,371,0): 164, 167, 88, (191,372,0): 162, 163, 85, (191,373,0): 167, 166, 86, (191,374,0): 168, 165, 86, (191,375,0): 165, 162, 83, (191,376,0): 167, 164, 83, (191,377,0): 166, 163, 82, (191,378,0): 165, 163, 80, (191,379,0): 167, 165, 80, (191,380,0): 170, 170, 82, (191,381,0): 175, 178, 87, (191,382,0): 183, 187, 93, (191,383,0): 186, 191, 97, (191,384,0): 188, 193, 99, (191,385,0): 192, 199, 103, (191,386,0): 199, 207, 106, (191,387,0): 204, 215, 110, (191,388,0): 210, 224, 111, (191,389,0): 220, 235, 118, (191,390,0): 228, 247, 122, (191,391,0): 235, 254, 128, (191,392,0): 242, 255, 131, (191,393,0): 244, 255, 130, (191,394,0): 246, 255, 132, (191,395,0): 247, 255, 134, (191,396,0): 249, 255, 136, (191,397,0): 251, 255, 138, (191,398,0): 252, 255, 140, (191,399,0): 252, 255, 142, (191,400,0): 251, 253, 144, (191,401,0): 251, 253, 146, (191,402,0): 252, 254, 145, (191,403,0): 253, 255, 146, (191,404,0): 253, 255, 148, (191,405,0): 254, 255, 149, (191,406,0): 255, 255, 150, (191,407,0): 255, 255, 148, (191,408,0): 252, 254, 145, (191,409,0): 252, 254, 145, (191,410,0): 252, 254, 145, (191,411,0): 253, 255, 146, (191,412,0): 253, 255, 145, (191,413,0): 254, 255, 146, (191,414,0): 254, 255, 146, (191,415,0): 255, 255, 145, (191,416,0): 255, 253, 140, (191,417,0): 255, 253, 140, (191,418,0): 255, 253, 140, (191,419,0): 255, 253, 140, (191,420,0): 255, 253, 142, (191,421,0): 255, 253, 142, (191,422,0): 254, 254, 142, (191,423,0): 254, 254, 142, (191,424,0): 250, 252, 142, (191,425,0): 250, 254, 143, (191,426,0): 251, 255, 144, (191,427,0): 250, 255, 145, (191,428,0): 249, 255, 145, (191,429,0): 248, 255, 144, (191,430,0): 247, 255, 144, (191,431,0): 243, 255, 147, (191,432,0): 240, 255, 153, (191,433,0): 235, 255, 155, (191,434,0): 231, 252, 151, (191,435,0): 227, 248, 147, (191,436,0): 222, 243, 142, (191,437,0): 217, 239, 139, (191,438,0): 213, 235, 135, (191,439,0): 210, 234, 136, (191,440,0): 207, 231, 137, (191,441,0): 203, 226, 135, (191,442,0): 198, 223, 132, (191,443,0): 198, 222, 136, (191,444,0): 199, 221, 139, (191,445,0): 195, 216, 137, (191,446,0): 187, 208, 131, (191,447,0): 178, 200, 127, (191,448,0): 177, 203, 132, (191,449,0): 176, 203, 136, (191,450,0): 175, 200, 134, (191,451,0): 173, 193, 130, (191,452,0): 168, 183, 124, (191,453,0): 160, 173, 117, (191,454,0): 156, 165, 112, (191,455,0): 153, 159, 111, (191,456,0): 148, 151, 106, (191,457,0): 147, 148, 106, (191,458,0): 143, 143, 105, (191,459,0): 139, 139, 103, (191,460,0): 136, 136, 102, (191,461,0): 134, 134, 100, (191,462,0): 131, 132, 100, (191,463,0): 128, 132, 99, (191,464,0): 126, 131, 99, (191,465,0): 127, 132, 102, (191,466,0): 126, 131, 101, (191,467,0): 121, 126, 96, (191,468,0): 115, 122, 91, (191,469,0): 112, 119, 88, (191,470,0): 114, 121, 90, (191,471,0): 115, 124, 93, (191,472,0): 116, 125, 96, (191,473,0): 113, 124, 94, (191,474,0): 113, 124, 94, (191,475,0): 118, 129, 99, (191,476,0): 126, 137, 107, (191,477,0): 134, 145, 115, (191,478,0): 138, 151, 121, (191,479,0): 139, 152, 124, (191,480,0): 150, 163, 137, (191,481,0): 148, 161, 135, (191,482,0): 148, 160, 136, (191,483,0): 149, 163, 138, (191,484,0): 150, 164, 139, (191,485,0): 148, 162, 139, (191,486,0): 144, 157, 137, (191,487,0): 139, 152, 132, (191,488,0): 137, 150, 132, (191,489,0): 137, 150, 132, (191,490,0): 137, 150, 133, (191,491,0): 137, 149, 135, (191,492,0): 135, 147, 135, (191,493,0): 134, 144, 133, (191,494,0): 132, 142, 131, (191,495,0): 130, 142, 130, (191,496,0): 122, 136, 123, (191,497,0): 119, 135, 122, (191,498,0): 119, 135, 122, (191,499,0): 122, 136, 123, (191,500,0): 121, 133, 121, (191,501,0): 118, 126, 115, (191,502,0): 111, 117, 107, (191,503,0): 107, 109, 98, (191,504,0): 105, 105, 95, (191,505,0): 102, 98, 89, (191,506,0): 94, 87, 79, (191,507,0): 85, 76, 69, (191,508,0): 81, 68, 62, (191,509,0): 80, 67, 61, (191,510,0): 84, 69, 64, (191,511,0): 86, 73, 67, (191,512,0): 81, 74, 68, (191,513,0): 78, 74, 65, (191,514,0): 80, 76, 67, (191,515,0): 85, 82, 73, (191,516,0): 92, 90, 78, (191,517,0): 96, 94, 82, (191,518,0): 95, 93, 80, (191,519,0): 91, 92, 76, (191,520,0): 98, 99, 81, (191,521,0): 102, 105, 86, (191,522,0): 108, 111, 90, (191,523,0): 111, 114, 93, (191,524,0): 113, 117, 94, (191,525,0): 114, 119, 96, (191,526,0): 116, 122, 96, (191,527,0): 119, 124, 101, (191,528,0): 126, 129, 108, (191,529,0): 124, 127, 106, (191,530,0): 121, 124, 105, (191,531,0): 118, 121, 102, (191,532,0): 114, 117, 98, (191,533,0): 110, 113, 94, (191,534,0): 107, 110, 93, (191,535,0): 106, 109, 92, (191,536,0): 104, 106, 92, (191,537,0): 103, 105, 91, (191,538,0): 100, 104, 89, (191,539,0): 100, 104, 89, (191,540,0): 101, 105, 91, (191,541,0): 103, 107, 93, (191,542,0): 106, 110, 96, (191,543,0): 108, 111, 100, (191,544,0): 101, 107, 95, (191,545,0): 99, 107, 96, (191,546,0): 99, 107, 96, (191,547,0): 100, 108, 97, (191,548,0): 102, 109, 101, (191,549,0): 101, 108, 100, (191,550,0): 97, 104, 96, (191,551,0): 94, 101, 94, (191,552,0): 96, 103, 96, (191,553,0): 97, 104, 97, (191,554,0): 98, 104, 100, (191,555,0): 97, 106, 101, (191,556,0): 100, 106, 102, (191,557,0): 98, 107, 104, (191,558,0): 97, 106, 103, (191,559,0): 97, 106, 105, (191,560,0): 98, 106, 108, (191,561,0): 99, 109, 111, (191,562,0): 104, 112, 115, (191,563,0): 108, 118, 120, (191,564,0): 113, 122, 127, (191,565,0): 118, 129, 135, (191,566,0): 121, 131, 140, (191,567,0): 122, 135, 144, (191,568,0): 121, 134, 143, (191,569,0): 121, 133, 145, (191,570,0): 120, 134, 147, (191,571,0): 119, 132, 148, (191,572,0): 116, 132, 147, (191,573,0): 113, 129, 145, (191,574,0): 111, 127, 143, (191,575,0): 110, 126, 141, (191,576,0): 108, 121, 137, (191,577,0): 109, 121, 135, (191,578,0): 107, 119, 133, (191,579,0): 106, 118, 132, (191,580,0): 106, 116, 128, (191,581,0): 105, 115, 127, (191,582,0): 105, 113, 124, (191,583,0): 104, 112, 123, (191,584,0): 106, 113, 123, (191,585,0): 107, 114, 124, (191,586,0): 110, 114, 123, (191,587,0): 109, 114, 120, (191,588,0): 107, 110, 117, (191,589,0): 102, 105, 112, (191,590,0): 98, 101, 108, (191,591,0): 94, 97, 104, (191,592,0): 93, 96, 103, (191,593,0): 91, 94, 101, (191,594,0): 89, 89, 97, (191,595,0): 84, 85, 90, (191,596,0): 81, 78, 85, (191,597,0): 76, 73, 80, (191,598,0): 74, 69, 76, (191,599,0): 72, 67, 74, (192,0,0): 42, 30, 40, (192,1,0): 42, 30, 40, (192,2,0): 43, 31, 41, (192,3,0): 43, 31, 41, (192,4,0): 44, 32, 42, (192,5,0): 44, 32, 42, (192,6,0): 45, 33, 43, (192,7,0): 45, 33, 43, (192,8,0): 42, 30, 40, (192,9,0): 42, 30, 40, (192,10,0): 43, 31, 41, (192,11,0): 43, 31, 41, (192,12,0): 44, 32, 42, (192,13,0): 44, 32, 42, (192,14,0): 45, 33, 43, (192,15,0): 45, 33, 43, (192,16,0): 44, 34, 43, (192,17,0): 42, 35, 43, (192,18,0): 44, 34, 43, (192,19,0): 44, 34, 43, (192,20,0): 44, 34, 43, (192,21,0): 44, 34, 43, (192,22,0): 44, 34, 43, (192,23,0): 44, 34, 43, (192,24,0): 45, 33, 43, (192,25,0): 45, 33, 43, (192,26,0): 47, 34, 44, (192,27,0): 47, 34, 44, (192,28,0): 48, 35, 45, (192,29,0): 48, 35, 45, (192,30,0): 49, 36, 46, (192,31,0): 49, 36, 46, (192,32,0): 49, 36, 45, (192,33,0): 49, 36, 45, (192,34,0): 49, 36, 45, (192,35,0): 49, 36, 45, (192,36,0): 49, 36, 45, (192,37,0): 51, 35, 45, (192,38,0): 51, 35, 45, (192,39,0): 51, 35, 45, (192,40,0): 52, 35, 45, (192,41,0): 52, 35, 45, (192,42,0): 53, 36, 46, (192,43,0): 55, 35, 44, (192,44,0): 56, 36, 47, (192,45,0): 56, 36, 45, (192,46,0): 57, 37, 46, (192,47,0): 58, 37, 46, (192,48,0): 58, 37, 46, (192,49,0): 58, 37, 46, (192,50,0): 58, 37, 46, (192,51,0): 59, 36, 46, (192,52,0): 59, 36, 44, (192,53,0): 59, 36, 44, (192,54,0): 61, 35, 44, (192,55,0): 61, 36, 42, (192,56,0): 61, 34, 41, (192,57,0): 63, 36, 43, (192,58,0): 65, 38, 43, (192,59,0): 69, 40, 45, (192,60,0): 69, 40, 45, (192,61,0): 69, 40, 44, (192,62,0): 68, 37, 42, (192,63,0): 67, 36, 41, (192,64,0): 67, 35, 40, (192,65,0): 68, 36, 39, (192,66,0): 70, 35, 39, (192,67,0): 69, 37, 40, (192,68,0): 71, 36, 40, (192,69,0): 72, 38, 39, (192,70,0): 72, 38, 39, (192,71,0): 73, 37, 37, (192,72,0): 75, 39, 39, (192,73,0): 77, 38, 39, (192,74,0): 77, 38, 39, (192,75,0): 77, 39, 38, (192,76,0): 78, 38, 38, (192,77,0): 77, 39, 38, (192,78,0): 78, 38, 38, (192,79,0): 78, 38, 38, (192,80,0): 79, 37, 39, (192,81,0): 80, 38, 42, (192,82,0): 84, 39, 42, (192,83,0): 85, 40, 43, (192,84,0): 85, 39, 41, (192,85,0): 84, 38, 40, (192,86,0): 84, 36, 36, (192,87,0): 81, 35, 35, (192,88,0): 80, 34, 34, (192,89,0): 79, 35, 34, (192,90,0): 80, 36, 37, (192,91,0): 78, 36, 37, (192,92,0): 76, 36, 37, (192,93,0): 74, 35, 36, (192,94,0): 72, 33, 36, (192,95,0): 69, 33, 37, (192,96,0): 66, 31, 37, (192,97,0): 64, 32, 37, (192,98,0): 63, 31, 36, (192,99,0): 61, 30, 35, (192,100,0): 60, 29, 34, (192,101,0): 59, 28, 33, (192,102,0): 57, 28, 32, (192,103,0): 55, 29, 32, (192,104,0): 57, 31, 34, (192,105,0): 57, 31, 34, (192,106,0): 57, 31, 34, (192,107,0): 56, 30, 33, (192,108,0): 55, 29, 32, (192,109,0): 52, 26, 29, (192,110,0): 50, 24, 27, (192,111,0): 48, 23, 27, (192,112,0): 32, 15, 23, (192,113,0): 27, 14, 23, (192,114,0): 25, 12, 21, (192,115,0): 23, 10, 19, (192,116,0): 22, 9, 18, (192,117,0): 21, 8, 17, (192,118,0): 21, 8, 17, (192,119,0): 21, 8, 17, (192,120,0): 20, 7, 16, (192,121,0): 21, 8, 17, (192,122,0): 23, 10, 19, (192,123,0): 27, 14, 23, (192,124,0): 30, 17, 26, (192,125,0): 33, 20, 29, (192,126,0): 35, 22, 31, (192,127,0): 39, 24, 31, (192,128,0): 40, 21, 23, (192,129,0): 42, 22, 23, (192,130,0): 44, 24, 25, (192,131,0): 45, 25, 26, (192,132,0): 45, 25, 26, (192,133,0): 44, 24, 25, (192,134,0): 42, 22, 23, (192,135,0): 41, 21, 22, (192,136,0): 43, 23, 24, (192,137,0): 43, 23, 24, (192,138,0): 43, 23, 24, (192,139,0): 43, 23, 24, (192,140,0): 43, 23, 24, (192,141,0): 43, 23, 24, (192,142,0): 43, 23, 24, (192,143,0): 43, 23, 25, (192,144,0): 45, 24, 29, (192,145,0): 45, 24, 29, (192,146,0): 45, 25, 27, (192,147,0): 45, 25, 27, (192,148,0): 45, 25, 27, (192,149,0): 45, 25, 27, (192,150,0): 46, 24, 26, (192,151,0): 46, 24, 26, (192,152,0): 47, 26, 25, (192,153,0): 47, 26, 25, (192,154,0): 48, 27, 26, (192,155,0): 48, 27, 26, (192,156,0): 49, 28, 25, (192,157,0): 49, 28, 25, (192,158,0): 50, 29, 26, (192,159,0): 50, 29, 26, (192,160,0): 51, 30, 27, (192,161,0): 51, 30, 27, (192,162,0): 51, 30, 27, (192,163,0): 51, 30, 27, (192,164,0): 51, 30, 27, (192,165,0): 51, 30, 27, (192,166,0): 51, 30, 27, (192,167,0): 51, 30, 27, (192,168,0): 49, 28, 25, (192,169,0): 48, 27, 24, (192,170,0): 46, 25, 22, (192,171,0): 44, 23, 20, (192,172,0): 42, 21, 18, (192,173,0): 42, 21, 18, (192,174,0): 42, 21, 18, (192,175,0): 42, 21, 18, (192,176,0): 45, 26, 22, (192,177,0): 44, 26, 22, (192,178,0): 44, 26, 22, (192,179,0): 44, 26, 22, (192,180,0): 44, 26, 22, (192,181,0): 44, 26, 22, (192,182,0): 44, 26, 22, (192,183,0): 44, 26, 22, (192,184,0): 45, 27, 23, (192,185,0): 45, 27, 23, (192,186,0): 45, 27, 23, (192,187,0): 45, 27, 23, (192,188,0): 45, 27, 23, (192,189,0): 45, 27, 23, (192,190,0): 45, 27, 23, (192,191,0): 46, 27, 23, (192,192,0): 50, 29, 24, (192,193,0): 50, 29, 24, (192,194,0): 52, 28, 24, (192,195,0): 50, 29, 24, (192,196,0): 52, 28, 24, (192,197,0): 50, 29, 24, (192,198,0): 52, 28, 24, (192,199,0): 50, 29, 24, (192,200,0): 51, 27, 23, (192,201,0): 49, 28, 23, (192,202,0): 51, 27, 23, (192,203,0): 49, 28, 23, (192,204,0): 51, 27, 23, (192,205,0): 49, 28, 23, (192,206,0): 51, 27, 23, (192,207,0): 51, 27, 23, (192,208,0): 51, 26, 21, (192,209,0): 51, 26, 19, (192,210,0): 49, 24, 17, (192,211,0): 49, 24, 17, (192,212,0): 49, 24, 17, (192,213,0): 49, 24, 17, (192,214,0): 51, 26, 19, (192,215,0): 51, 26, 19, (192,216,0): 52, 27, 20, (192,217,0): 52, 27, 20, (192,218,0): 52, 27, 20, (192,219,0): 52, 27, 20, (192,220,0): 52, 27, 20, (192,221,0): 52, 28, 18, (192,222,0): 52, 27, 20, (192,223,0): 52, 27, 20, (192,224,0): 50, 22, 19, (192,225,0): 51, 23, 20, (192,226,0): 54, 24, 22, (192,227,0): 56, 27, 23, (192,228,0): 58, 29, 23, (192,229,0): 59, 31, 20, (192,230,0): 60, 30, 19, (192,231,0): 61, 32, 18, (192,232,0): 68, 39, 25, (192,233,0): 68, 39, 23, (192,234,0): 70, 38, 23, (192,235,0): 70, 38, 23, (192,236,0): 70, 38, 23, (192,237,0): 70, 38, 25, (192,238,0): 70, 38, 25, (192,239,0): 70, 38, 25, (192,240,0): 68, 36, 25, (192,241,0): 66, 36, 25, (192,242,0): 66, 36, 25, (192,243,0): 66, 36, 25, (192,244,0): 66, 36, 25, (192,245,0): 66, 38, 26, (192,246,0): 66, 38, 26, (192,247,0): 65, 39, 26, (192,248,0): 60, 33, 22, (192,249,0): 60, 33, 22, (192,250,0): 59, 32, 21, (192,251,0): 57, 33, 21, (192,252,0): 56, 32, 20, (192,253,0): 54, 32, 19, (192,254,0): 54, 30, 20, (192,255,0): 53, 31, 20, (192,256,0): 53, 33, 26, (192,257,0): 52, 32, 25, (192,258,0): 52, 32, 25, (192,259,0): 51, 31, 24, (192,260,0): 54, 31, 25, (192,261,0): 55, 32, 26, (192,262,0): 58, 33, 28, (192,263,0): 59, 34, 29, (192,264,0): 54, 29, 24, (192,265,0): 56, 31, 26, (192,266,0): 58, 30, 27, (192,267,0): 57, 29, 26, (192,268,0): 58, 28, 28, (192,269,0): 60, 30, 30, (192,270,0): 65, 35, 35, (192,271,0): 69, 39, 37, (192,272,0): 67, 40, 33, (192,273,0): 66, 42, 32, (192,274,0): 70, 43, 32, (192,275,0): 70, 46, 34, (192,276,0): 74, 48, 35, (192,277,0): 75, 52, 36, (192,278,0): 79, 53, 38, (192,279,0): 78, 55, 37, (192,280,0): 82, 57, 37, (192,281,0): 80, 58, 35, (192,282,0): 83, 59, 35, (192,283,0): 81, 60, 33, (192,284,0): 84, 60, 32, (192,285,0): 82, 61, 30, (192,286,0): 85, 62, 31, (192,287,0): 83, 62, 31, (192,288,0): 80, 59, 32, (192,289,0): 80, 59, 32, (192,290,0): 79, 57, 33, (192,291,0): 79, 57, 33, (192,292,0): 78, 58, 34, (192,293,0): 77, 57, 33, (192,294,0): 77, 56, 35, (192,295,0): 77, 56, 35, (192,296,0): 79, 61, 41, (192,297,0): 79, 61, 41, (192,298,0): 79, 62, 44, (192,299,0): 80, 63, 45, (192,300,0): 81, 64, 46, (192,301,0): 82, 65, 47, (192,302,0): 82, 67, 48, (192,303,0): 82, 67, 46, (192,304,0): 90, 76, 49, (192,305,0): 90, 76, 47, (192,306,0): 92, 77, 48, (192,307,0): 92, 78, 49, (192,308,0): 95, 80, 51, (192,309,0): 98, 83, 54, (192,310,0): 101, 86, 57, (192,311,0): 102, 87, 58, (192,312,0): 106, 91, 62, (192,313,0): 107, 92, 63, (192,314,0): 108, 93, 64, (192,315,0): 109, 94, 65, (192,316,0): 111, 96, 67, (192,317,0): 113, 98, 69, (192,318,0): 114, 99, 70, (192,319,0): 114, 99, 68, (192,320,0): 117, 104, 69, (192,321,0): 120, 108, 68, (192,322,0): 121, 107, 68, (192,323,0): 124, 111, 66, (192,324,0): 139, 128, 72, (192,325,0): 164, 155, 90, (192,326,0): 181, 175, 97, (192,327,0): 184, 182, 97, (192,328,0): 179, 177, 90, (192,329,0): 179, 179, 93, (192,330,0): 179, 182, 101, (192,331,0): 182, 186, 109, (192,332,0): 183, 189, 117, (192,333,0): 184, 191, 121, (192,334,0): 186, 193, 123, (192,335,0): 184, 194, 121, (192,336,0): 184, 196, 120, (192,337,0): 183, 195, 119, (192,338,0): 180, 192, 116, (192,339,0): 179, 191, 117, (192,340,0): 178, 190, 116, (192,341,0): 179, 191, 119, (192,342,0): 180, 192, 120, (192,343,0): 181, 193, 121, (192,344,0): 185, 195, 126, (192,345,0): 185, 195, 124, (192,346,0): 186, 196, 125, (192,347,0): 186, 196, 123, (192,348,0): 186, 196, 123, (192,349,0): 185, 196, 120, (192,350,0): 184, 195, 119, (192,351,0): 186, 194, 119, (192,352,0): 182, 188, 118, (192,353,0): 179, 185, 115, (192,354,0): 176, 182, 112, (192,355,0): 175, 180, 113, (192,356,0): 176, 181, 114, (192,357,0): 177, 182, 115, (192,358,0): 176, 181, 114, (192,359,0): 173, 180, 110, (192,360,0): 174, 180, 110, (192,361,0): 171, 179, 106, (192,362,0): 169, 177, 102, (192,363,0): 171, 179, 102, (192,364,0): 175, 183, 106, (192,365,0): 178, 187, 108, (192,366,0): 176, 185, 104, (192,367,0): 174, 183, 102, (192,368,0): 175, 184, 103, (192,369,0): 178, 185, 105, (192,370,0): 177, 184, 104, (192,371,0): 171, 179, 96, (192,372,0): 166, 174, 88, (192,373,0): 168, 174, 86, (192,374,0): 176, 183, 90, (192,375,0): 184, 191, 95, (192,376,0): 175, 183, 84, (192,377,0): 175, 183, 82, (192,378,0): 176, 184, 81, (192,379,0): 181, 190, 85, (192,380,0): 187, 196, 91, (192,381,0): 188, 200, 92, (192,382,0): 187, 199, 91, (192,383,0): 185, 196, 91, (192,384,0): 191, 202, 98, (192,385,0): 192, 203, 99, (192,386,0): 194, 207, 101, (192,387,0): 199, 215, 106, (192,388,0): 206, 225, 110, (192,389,0): 216, 235, 117, (192,390,0): 222, 243, 122, (192,391,0): 226, 248, 124, (192,392,0): 232, 252, 127, (192,393,0): 234, 253, 128, (192,394,0): 237, 253, 129, (192,395,0): 239, 253, 130, (192,396,0): 244, 253, 134, (192,397,0): 247, 254, 138, (192,398,0): 250, 255, 139, (192,399,0): 251, 254, 141, (192,400,0): 253, 255, 146, (192,401,0): 253, 255, 146, (192,402,0): 253, 255, 148, (192,403,0): 253, 255, 148, (192,404,0): 253, 254, 150, (192,405,0): 253, 254, 152, (192,406,0): 253, 254, 152, (192,407,0): 253, 253, 153, (192,408,0): 255, 255, 155, (192,409,0): 255, 255, 155, (192,410,0): 255, 255, 155, (192,411,0): 255, 255, 155, (192,412,0): 255, 255, 154, (192,413,0): 255, 255, 152, (192,414,0): 255, 255, 152, (192,415,0): 255, 255, 150, (192,416,0): 255, 255, 145, (192,417,0): 255, 255, 143, (192,418,0): 255, 255, 143, (192,419,0): 255, 255, 143, (192,420,0): 255, 254, 145, (192,421,0): 255, 254, 145, (192,422,0): 255, 253, 146, (192,423,0): 255, 254, 146, (192,424,0): 255, 254, 146, (192,425,0): 253, 255, 146, (192,426,0): 251, 254, 147, (192,427,0): 249, 255, 147, (192,428,0): 247, 254, 148, (192,429,0): 246, 255, 148, (192,430,0): 245, 254, 147, (192,431,0): 242, 255, 150, (192,432,0): 237, 255, 158, (192,433,0): 233, 254, 159, (192,434,0): 228, 252, 156, (192,435,0): 225, 249, 155, (192,436,0): 221, 246, 152, (192,437,0): 214, 241, 148, (192,438,0): 206, 232, 141, (192,439,0): 199, 228, 138, (192,440,0): 198, 226, 139, (192,441,0): 196, 224, 139, (192,442,0): 197, 222, 139, (192,443,0): 196, 220, 142, (192,444,0): 197, 219, 144, (192,445,0): 193, 215, 142, (192,446,0): 188, 208, 136, (192,447,0): 182, 203, 134, (192,448,0): 174, 200, 137, (192,449,0): 172, 200, 139, (192,450,0): 173, 199, 138, (192,451,0): 171, 195, 137, (192,452,0): 167, 188, 131, (192,453,0): 161, 180, 125, (192,454,0): 158, 172, 121, (192,455,0): 157, 169, 121, (192,456,0): 150, 157, 113, (192,457,0): 149, 154, 113, (192,458,0): 145, 150, 110, (192,459,0): 141, 143, 106, (192,460,0): 135, 135, 101, (192,461,0): 128, 128, 94, (192,462,0): 123, 120, 87, (192,463,0): 117, 116, 85, (192,464,0): 113, 114, 83, (192,465,0): 110, 113, 82, (192,466,0): 109, 112, 81, (192,467,0): 109, 112, 81, (192,468,0): 109, 112, 81, (192,469,0): 111, 114, 83, (192,470,0): 112, 117, 87, (192,471,0): 113, 118, 88, (192,472,0): 108, 112, 85, (192,473,0): 110, 116, 88, (192,474,0): 113, 119, 93, (192,475,0): 114, 123, 96, (192,476,0): 117, 126, 99, (192,477,0): 122, 131, 104, (192,478,0): 130, 139, 112, (192,479,0): 134, 144, 117, (192,480,0): 147, 157, 133, (192,481,0): 147, 159, 135, (192,482,0): 149, 163, 140, (192,483,0): 149, 164, 141, (192,484,0): 148, 163, 140, (192,485,0): 142, 160, 138, (192,486,0): 137, 155, 133, (192,487,0): 132, 151, 131, (192,488,0): 134, 153, 133, (192,489,0): 134, 151, 132, (192,490,0): 133, 150, 132, (192,491,0): 133, 147, 130, (192,492,0): 131, 145, 130, (192,493,0): 130, 142, 128, (192,494,0): 130, 141, 127, (192,495,0): 129, 139, 128, (192,496,0): 132, 142, 133, (192,497,0): 131, 141, 133, (192,498,0): 128, 138, 129, (192,499,0): 126, 133, 125, (192,500,0): 121, 126, 119, (192,501,0): 116, 119, 112, (192,502,0): 111, 112, 106, (192,503,0): 109, 109, 101, (192,504,0): 112, 109, 102, (192,505,0): 105, 100, 94, (192,506,0): 94, 87, 81, (192,507,0): 83, 74, 69, (192,508,0): 76, 67, 60, (192,509,0): 76, 65, 59, (192,510,0): 79, 68, 62, (192,511,0): 81, 72, 65, (192,512,0): 86, 79, 71, (192,513,0): 85, 81, 72, (192,514,0): 88, 84, 75, (192,515,0): 92, 88, 77, (192,516,0): 96, 92, 81, (192,517,0): 98, 96, 84, (192,518,0): 100, 98, 85, (192,519,0): 98, 99, 83, (192,520,0): 102, 103, 85, (192,521,0): 106, 107, 89, (192,522,0): 110, 112, 91, (192,523,0): 111, 114, 93, (192,524,0): 111, 115, 92, (192,525,0): 112, 116, 93, (192,526,0): 115, 119, 94, (192,527,0): 116, 121, 98, (192,528,0): 118, 126, 103, (192,529,0): 116, 125, 104, (192,530,0): 115, 124, 103, (192,531,0): 114, 123, 102, (192,532,0): 111, 120, 101, (192,533,0): 110, 117, 99, (192,534,0): 108, 115, 99, (192,535,0): 108, 112, 97, (192,536,0): 107, 111, 96, (192,537,0): 106, 110, 95, (192,538,0): 105, 107, 94, (192,539,0): 104, 106, 93, (192,540,0): 103, 105, 94, (192,541,0): 102, 104, 93, (192,542,0): 103, 103, 93, (192,543,0): 102, 104, 93, (192,544,0): 98, 101, 94, (192,545,0): 97, 102, 95, (192,546,0): 98, 103, 96, (192,547,0): 98, 103, 96, (192,548,0): 96, 103, 96, (192,549,0): 95, 102, 95, (192,550,0): 94, 101, 94, (192,551,0): 93, 99, 95, (192,552,0): 89, 98, 93, (192,553,0): 91, 100, 95, (192,554,0): 94, 103, 100, (192,555,0): 96, 107, 103, (192,556,0): 99, 108, 105, (192,557,0): 100, 110, 109, (192,558,0): 101, 111, 110, (192,559,0): 101, 111, 112, (192,560,0): 96, 106, 108, (192,561,0): 97, 108, 110, (192,562,0): 101, 110, 115, (192,563,0): 104, 115, 119, (192,564,0): 109, 120, 126, (192,565,0): 112, 125, 131, (192,566,0): 115, 128, 136, (192,567,0): 116, 130, 139, (192,568,0): 116, 133, 143, (192,569,0): 115, 131, 144, (192,570,0): 112, 130, 144, (192,571,0): 110, 127, 143, (192,572,0): 108, 127, 144, (192,573,0): 108, 127, 144, (192,574,0): 108, 126, 146, (192,575,0): 110, 126, 142, (192,576,0): 114, 123, 138, (192,577,0): 115, 121, 133, (192,578,0): 114, 120, 132, (192,579,0): 113, 119, 131, (192,580,0): 112, 118, 130, (192,581,0): 111, 117, 129, (192,582,0): 111, 118, 128, (192,583,0): 112, 119, 129, (192,584,0): 113, 117, 128, (192,585,0): 112, 116, 127, (192,586,0): 111, 115, 126, (192,587,0): 109, 113, 122, (192,588,0): 106, 110, 119, (192,589,0): 102, 106, 115, (192,590,0): 99, 103, 112, (192,591,0): 98, 101, 110, (192,592,0): 95, 98, 105, (192,593,0): 92, 95, 100, (192,594,0): 91, 92, 97, (192,595,0): 89, 90, 94, (192,596,0): 88, 86, 89, (192,597,0): 84, 82, 85, (192,598,0): 79, 75, 76, (192,599,0): 74, 70, 71, (193,0,0): 42, 30, 40, (193,1,0): 42, 30, 40, (193,2,0): 42, 30, 40, (193,3,0): 43, 31, 41, (193,4,0): 43, 31, 41, (193,5,0): 44, 32, 42, (193,6,0): 44, 32, 42, (193,7,0): 45, 33, 43, (193,8,0): 42, 30, 40, (193,9,0): 42, 30, 40, (193,10,0): 43, 31, 41, (193,11,0): 43, 31, 41, (193,12,0): 44, 32, 42, (193,13,0): 44, 32, 42, (193,14,0): 45, 33, 43, (193,15,0): 44, 34, 43, (193,16,0): 44, 34, 43, (193,17,0): 42, 35, 43, (193,18,0): 42, 35, 43, (193,19,0): 42, 35, 43, (193,20,0): 44, 34, 43, (193,21,0): 44, 34, 43, (193,22,0): 44, 34, 43, (193,23,0): 44, 34, 43, (193,24,0): 45, 33, 43, (193,25,0): 45, 33, 43, (193,26,0): 47, 34, 44, (193,27,0): 47, 34, 44, (193,28,0): 48, 35, 45, (193,29,0): 48, 35, 45, (193,30,0): 51, 35, 46, (193,31,0): 51, 35, 46, (193,32,0): 49, 36, 45, (193,33,0): 49, 36, 45, (193,34,0): 51, 35, 45, (193,35,0): 51, 35, 45, (193,36,0): 51, 35, 45, (193,37,0): 51, 35, 45, (193,38,0): 52, 35, 45, (193,39,0): 52, 35, 45, (193,40,0): 54, 34, 45, (193,41,0): 54, 34, 45, (193,42,0): 55, 35, 46, (193,43,0): 55, 35, 46, (193,44,0): 57, 35, 47, (193,45,0): 57, 35, 47, (193,46,0): 58, 36, 48, (193,47,0): 58, 36, 48, (193,48,0): 57, 37, 48, (193,49,0): 57, 37, 48, (193,50,0): 58, 36, 48, (193,51,0): 58, 36, 48, (193,52,0): 58, 37, 46, (193,53,0): 58, 37, 46, (193,54,0): 59, 36, 44, (193,55,0): 59, 36, 44, (193,56,0): 61, 35, 44, (193,57,0): 62, 36, 45, (193,58,0): 64, 39, 45, (193,59,0): 65, 40, 46, (193,60,0): 67, 40, 45, (193,61,0): 66, 39, 44, (193,62,0): 65, 38, 43, (193,63,0): 64, 37, 42, (193,64,0): 65, 36, 40, (193,65,0): 67, 36, 41, (193,66,0): 67, 37, 39, (193,67,0): 67, 37, 39, (193,68,0): 68, 38, 40, (193,69,0): 68, 38, 40, (193,70,0): 70, 38, 39, (193,71,0): 70, 38, 39, (193,72,0): 73, 39, 40, (193,73,0): 73, 39, 38, (193,74,0): 74, 38, 38, (193,75,0): 74, 38, 38, (193,76,0): 74, 39, 37, (193,77,0): 74, 39, 37, (193,78,0): 74, 39, 37, (193,79,0): 74, 38, 38, (193,80,0): 77, 38, 41, (193,81,0): 79, 38, 42, (193,82,0): 81, 39, 41, (193,83,0): 82, 40, 42, (193,84,0): 84, 40, 41, (193,85,0): 84, 38, 38, (193,86,0): 84, 36, 34, (193,87,0): 83, 35, 33, (193,88,0): 82, 37, 34, (193,89,0): 82, 37, 34, (193,90,0): 81, 37, 36, (193,91,0): 79, 37, 38, (193,92,0): 76, 36, 37, (193,93,0): 73, 34, 35, (193,94,0): 71, 32, 35, (193,95,0): 68, 32, 36, (193,96,0): 67, 32, 38, (193,97,0): 66, 31, 37, (193,98,0): 63, 31, 36, (193,99,0): 62, 30, 35, (193,100,0): 61, 29, 34, (193,101,0): 60, 28, 33, (193,102,0): 58, 27, 32, (193,103,0): 58, 27, 32, (193,104,0): 58, 29, 33, (193,105,0): 59, 30, 34, (193,106,0): 58, 29, 33, (193,107,0): 58, 29, 33, (193,108,0): 54, 28, 31, (193,109,0): 52, 26, 29, (193,110,0): 49, 23, 26, (193,111,0): 45, 23, 26, (193,112,0): 32, 15, 23, (193,113,0): 27, 14, 23, (193,114,0): 25, 12, 21, (193,115,0): 23, 10, 19, (193,116,0): 22, 9, 18, (193,117,0): 22, 9, 18, (193,118,0): 22, 9, 18, (193,119,0): 22, 9, 18, (193,120,0): 22, 9, 18, (193,121,0): 23, 10, 19, (193,122,0): 25, 12, 21, (193,123,0): 27, 14, 23, (193,124,0): 30, 17, 26, (193,125,0): 33, 20, 29, (193,126,0): 34, 21, 30, (193,127,0): 38, 23, 30, (193,128,0): 41, 22, 24, (193,129,0): 43, 23, 24, (193,130,0): 44, 24, 25, (193,131,0): 45, 25, 26, (193,132,0): 45, 25, 26, (193,133,0): 44, 24, 25, (193,134,0): 43, 23, 24, (193,135,0): 42, 22, 23, (193,136,0): 43, 23, 24, (193,137,0): 43, 23, 24, (193,138,0): 43, 23, 24, (193,139,0): 43, 23, 24, (193,140,0): 43, 23, 24, (193,141,0): 43, 23, 24, (193,142,0): 43, 23, 24, (193,143,0): 43, 23, 24, (193,144,0): 46, 23, 29, (193,145,0): 46, 23, 29, (193,146,0): 46, 24, 27, (193,147,0): 46, 24, 27, (193,148,0): 46, 24, 27, (193,149,0): 46, 24, 27, (193,150,0): 46, 24, 26, (193,151,0): 46, 24, 26, (193,152,0): 47, 26, 25, (193,153,0): 47, 26, 25, (193,154,0): 48, 27, 26, (193,155,0): 48, 27, 26, (193,156,0): 49, 28, 25, (193,157,0): 49, 28, 25, (193,158,0): 50, 29, 26, (193,159,0): 50, 29, 26, (193,160,0): 51, 30, 27, (193,161,0): 51, 30, 27, (193,162,0): 51, 30, 27, (193,163,0): 51, 30, 27, (193,164,0): 51, 30, 27, (193,165,0): 51, 30, 27, (193,166,0): 51, 30, 27, (193,167,0): 51, 30, 27, (193,168,0): 49, 28, 25, (193,169,0): 48, 27, 24, (193,170,0): 46, 25, 22, (193,171,0): 44, 23, 20, (193,172,0): 42, 21, 18, (193,173,0): 42, 21, 18, (193,174,0): 42, 21, 18, (193,175,0): 42, 21, 18, (193,176,0): 45, 26, 22, (193,177,0): 44, 26, 22, (193,178,0): 44, 26, 22, (193,179,0): 44, 26, 22, (193,180,0): 44, 26, 22, (193,181,0): 44, 26, 22, (193,182,0): 44, 26, 22, (193,183,0): 44, 26, 22, (193,184,0): 45, 27, 23, (193,185,0): 45, 27, 23, (193,186,0): 45, 27, 23, (193,187,0): 45, 27, 23, (193,188,0): 45, 27, 23, (193,189,0): 45, 27, 23, (193,190,0): 45, 27, 23, (193,191,0): 46, 27, 23, (193,192,0): 50, 29, 24, (193,193,0): 50, 29, 24, (193,194,0): 50, 29, 24, (193,195,0): 50, 29, 24, (193,196,0): 50, 29, 24, (193,197,0): 50, 29, 24, (193,198,0): 50, 29, 24, (193,199,0): 50, 29, 24, (193,200,0): 49, 28, 23, (193,201,0): 49, 28, 23, (193,202,0): 49, 28, 23, (193,203,0): 49, 28, 23, (193,204,0): 49, 28, 23, (193,205,0): 49, 28, 23, (193,206,0): 49, 28, 23, (193,207,0): 49, 29, 22, (193,208,0): 51, 26, 21, (193,209,0): 51, 26, 19, (193,210,0): 49, 24, 17, (193,211,0): 49, 24, 17, (193,212,0): 49, 24, 17, (193,213,0): 49, 24, 17, (193,214,0): 51, 26, 19, (193,215,0): 51, 26, 19, (193,216,0): 52, 27, 20, (193,217,0): 52, 27, 20, (193,218,0): 52, 27, 20, (193,219,0): 52, 27, 20, (193,220,0): 52, 27, 20, (193,221,0): 52, 27, 20, (193,222,0): 52, 27, 20, (193,223,0): 52, 27, 22, (193,224,0): 51, 23, 20, (193,225,0): 52, 24, 21, (193,226,0): 54, 24, 22, (193,227,0): 56, 27, 23, (193,228,0): 58, 29, 21, (193,229,0): 59, 31, 20, (193,230,0): 61, 32, 18, (193,231,0): 61, 32, 16, (193,232,0): 71, 39, 24, (193,233,0): 71, 40, 22, (193,234,0): 71, 40, 22, (193,235,0): 71, 40, 22, (193,236,0): 72, 39, 24, (193,237,0): 72, 39, 24, (193,238,0): 72, 39, 24, (193,239,0): 72, 38, 26, (193,240,0): 69, 37, 24, (193,241,0): 69, 37, 24, (193,242,0): 67, 38, 24, (193,243,0): 66, 37, 23, (193,244,0): 66, 37, 23, (193,245,0): 66, 37, 23, (193,246,0): 65, 37, 23, (193,247,0): 65, 37, 25, (193,248,0): 61, 35, 22, (193,249,0): 60, 33, 22, (193,250,0): 60, 33, 22, (193,251,0): 59, 32, 21, (193,252,0): 56, 32, 20, (193,253,0): 55, 31, 19, (193,254,0): 54, 30, 18, (193,255,0): 53, 31, 20, (193,256,0): 55, 32, 24, (193,257,0): 52, 32, 25, (193,258,0): 51, 31, 24, (193,259,0): 51, 31, 24, (193,260,0): 54, 31, 25, (193,261,0): 55, 32, 26, (193,262,0): 57, 32, 25, (193,263,0): 58, 33, 26, (193,264,0): 55, 30, 25, (193,265,0): 56, 31, 26, (193,266,0): 58, 30, 27, (193,267,0): 58, 30, 27, (193,268,0): 58, 28, 28, (193,269,0): 60, 30, 30, (193,270,0): 65, 35, 37, (193,271,0): 68, 40, 37, (193,272,0): 68, 41, 34, (193,273,0): 67, 43, 31, (193,274,0): 68, 44, 32, (193,275,0): 70, 47, 33, (193,276,0): 73, 50, 36, (193,277,0): 75, 52, 36, (193,278,0): 77, 54, 36, (193,279,0): 78, 56, 35, (193,280,0): 79, 57, 34, (193,281,0): 80, 58, 34, (193,282,0): 80, 59, 32, (193,283,0): 81, 60, 31, (193,284,0): 81, 60, 31, (193,285,0): 82, 61, 30, (193,286,0): 82, 62, 29, (193,287,0): 82, 61, 30, (193,288,0): 80, 59, 32, (193,289,0): 80, 58, 34, (193,290,0): 80, 58, 34, (193,291,0): 80, 58, 34, (193,292,0): 78, 58, 34, (193,293,0): 78, 58, 34, (193,294,0): 78, 58, 34, (193,295,0): 78, 58, 34, (193,296,0): 79, 61, 39, (193,297,0): 80, 62, 40, (193,298,0): 80, 63, 43, (193,299,0): 81, 64, 44, (193,300,0): 82, 65, 45, (193,301,0): 83, 66, 46, (193,302,0): 83, 68, 49, (193,303,0): 83, 68, 47, (193,304,0): 91, 75, 49, (193,305,0): 91, 76, 47, (193,306,0): 92, 77, 48, (193,307,0): 93, 78, 49, (193,308,0): 95, 80, 51, (193,309,0): 98, 83, 54, (193,310,0): 100, 85, 56, (193,311,0): 102, 87, 58, (193,312,0): 106, 91, 62, (193,313,0): 106, 91, 62, (193,314,0): 107, 92, 63, (193,315,0): 109, 94, 65, (193,316,0): 111, 96, 67, (193,317,0): 112, 97, 68, (193,318,0): 113, 98, 69, (193,319,0): 113, 100, 68, (193,320,0): 116, 103, 68, (193,321,0): 118, 109, 70, (193,322,0): 121, 109, 69, (193,323,0): 123, 112, 67, (193,324,0): 137, 125, 73, (193,325,0): 161, 151, 89, (193,326,0): 180, 174, 98, (193,327,0): 189, 184, 100, (193,328,0): 180, 178, 91, (193,329,0): 180, 180, 94, (193,330,0): 179, 180, 100, (193,331,0): 179, 183, 107, (193,332,0): 179, 185, 115, (193,333,0): 181, 188, 120, (193,334,0): 181, 191, 122, (193,335,0): 182, 192, 121, (193,336,0): 181, 193, 117, (193,337,0): 180, 192, 116, (193,338,0): 178, 190, 114, (193,339,0): 176, 188, 114, (193,340,0): 176, 188, 116, (193,341,0): 176, 187, 118, (193,342,0): 177, 188, 119, (193,343,0): 178, 189, 120, (193,344,0): 181, 192, 124, (193,345,0): 182, 193, 124, (193,346,0): 182, 193, 124, (193,347,0): 182, 194, 122, (193,348,0): 182, 194, 120, (193,349,0): 181, 193, 117, (193,350,0): 181, 193, 117, (193,351,0): 181, 193, 119, (193,352,0): 178, 185, 117, (193,353,0): 175, 182, 115, (193,354,0): 172, 179, 112, (193,355,0): 173, 180, 113, (193,356,0): 175, 182, 115, (193,357,0): 177, 184, 116, (193,358,0): 177, 184, 116, (193,359,0): 175, 182, 112, (193,360,0): 174, 181, 111, (193,361,0): 172, 180, 107, (193,362,0): 171, 179, 104, (193,363,0): 172, 180, 103, (193,364,0): 176, 185, 106, (193,365,0): 177, 186, 105, (193,366,0): 176, 185, 102, (193,367,0): 174, 183, 100, (193,368,0): 179, 188, 107, (193,369,0): 181, 190, 109, (193,370,0): 180, 189, 106, (193,371,0): 177, 187, 100, (193,372,0): 174, 185, 93, (193,373,0): 177, 188, 92, (193,374,0): 187, 199, 99, (193,375,0): 196, 209, 104, (193,376,0): 198, 211, 105, (193,377,0): 196, 210, 99, (193,378,0): 195, 209, 96, (193,379,0): 196, 210, 97, (193,380,0): 199, 213, 99, (193,381,0): 199, 213, 99, (193,382,0): 197, 211, 97, (193,383,0): 194, 208, 95, (193,384,0): 195, 208, 100, (193,385,0): 195, 208, 100, (193,386,0): 194, 210, 101, (193,387,0): 197, 215, 103, (193,388,0): 203, 224, 107, (193,389,0): 212, 233, 114, (193,390,0): 218, 242, 120, (193,391,0): 223, 247, 125, (193,392,0): 231, 253, 129, (193,393,0): 233, 253, 130, (193,394,0): 235, 253, 131, (193,395,0): 240, 253, 135, (193,396,0): 243, 254, 136, (193,397,0): 246, 255, 140, (193,398,0): 250, 254, 141, (193,399,0): 251, 255, 144, (193,400,0): 253, 255, 146, (193,401,0): 253, 255, 148, (193,402,0): 253, 255, 148, (193,403,0): 253, 254, 150, (193,404,0): 253, 254, 152, (193,405,0): 253, 253, 153, (193,406,0): 253, 253, 155, (193,407,0): 253, 253, 157, (193,408,0): 255, 255, 159, (193,409,0): 255, 255, 159, (193,410,0): 255, 255, 159, (193,411,0): 255, 255, 159, (193,412,0): 255, 255, 157, (193,413,0): 255, 255, 155, (193,414,0): 255, 255, 155, (193,415,0): 255, 255, 154, (193,416,0): 253, 255, 148, (193,417,0): 253, 255, 146, (193,418,0): 253, 255, 146, (193,419,0): 253, 255, 146, (193,420,0): 255, 254, 148, (193,421,0): 255, 253, 148, (193,422,0): 255, 253, 150, (193,423,0): 255, 253, 150, (193,424,0): 255, 254, 151, (193,425,0): 253, 254, 150, (193,426,0): 252, 255, 152, (193,427,0): 249, 254, 151, (193,428,0): 248, 255, 152, (193,429,0): 244, 255, 151, (193,430,0): 244, 255, 151, (193,431,0): 241, 255, 155, (193,432,0): 237, 255, 162, (193,433,0): 231, 254, 163, (193,434,0): 227, 252, 160, (193,435,0): 223, 249, 158, (193,436,0): 218, 247, 157, (193,437,0): 212, 240, 153, (193,438,0): 204, 234, 148, (193,439,0): 198, 227, 143, (193,440,0): 196, 225, 143, (193,441,0): 194, 223, 143, (193,442,0): 194, 221, 144, (193,443,0): 194, 220, 146, (193,444,0): 196, 219, 147, (193,445,0): 194, 216, 144, (193,446,0): 189, 209, 140, (193,447,0): 182, 204, 139, (193,448,0): 175, 200, 142, (193,449,0): 171, 200, 142, (193,450,0): 170, 198, 140, (193,451,0): 167, 195, 137, (193,452,0): 167, 190, 136, (193,453,0): 164, 184, 133, (193,454,0): 158, 176, 128, (193,455,0): 155, 171, 124, (193,456,0): 152, 163, 120, (193,457,0): 151, 159, 118, (193,458,0): 146, 152, 114, (193,459,0): 139, 143, 106, (193,460,0): 132, 133, 99, (193,461,0): 125, 125, 91, (193,462,0): 121, 118, 85, (193,463,0): 118, 115, 84, (193,464,0): 116, 115, 85, (193,465,0): 115, 116, 85, (193,466,0): 115, 116, 85, (193,467,0): 115, 116, 85, (193,468,0): 114, 115, 84, (193,469,0): 112, 115, 84, (193,470,0): 112, 115, 86, (193,471,0): 112, 115, 86, (193,472,0): 108, 112, 85, (193,473,0): 111, 115, 88, (193,474,0): 114, 120, 94, (193,475,0): 117, 123, 97, (193,476,0): 119, 125, 99, (193,477,0): 124, 130, 104, (193,478,0): 130, 136, 110, (193,479,0): 133, 141, 117, (193,480,0): 143, 152, 131, (193,481,0): 142, 156, 133, (193,482,0): 144, 158, 135, (193,483,0): 145, 160, 137, (193,484,0): 142, 160, 138, (193,485,0): 138, 157, 135, (193,486,0): 135, 154, 134, (193,487,0): 131, 153, 132, (193,488,0): 131, 153, 132, (193,489,0): 130, 152, 131, (193,490,0): 132, 149, 131, (193,491,0): 131, 148, 130, (193,492,0): 131, 145, 130, (193,493,0): 130, 144, 129, (193,494,0): 131, 142, 128, (193,495,0): 130, 140, 129, (193,496,0): 133, 138, 132, (193,497,0): 132, 137, 133, (193,498,0): 130, 135, 129, (193,499,0): 126, 131, 125, (193,500,0): 123, 125, 120, (193,501,0): 117, 119, 114, (193,502,0): 114, 113, 108, (193,503,0): 111, 110, 105, (193,504,0): 109, 106, 99, (193,505,0): 102, 99, 92, (193,506,0): 94, 87, 81, (193,507,0): 83, 76, 70, (193,508,0): 79, 70, 63, (193,509,0): 78, 69, 62, (193,510,0): 81, 72, 65, (193,511,0): 84, 75, 68, (193,512,0): 87, 80, 72, (193,513,0): 89, 82, 74, (193,514,0): 89, 85, 74, (193,515,0): 93, 89, 78, (193,516,0): 96, 92, 81, (193,517,0): 98, 94, 82, (193,518,0): 99, 97, 82, (193,519,0): 100, 98, 83, (193,520,0): 99, 100, 82, (193,521,0): 103, 104, 86, (193,522,0): 107, 109, 88, (193,523,0): 109, 111, 90, (193,524,0): 108, 112, 89, (193,525,0): 109, 113, 90, (193,526,0): 111, 115, 90, (193,527,0): 112, 117, 94, (193,528,0): 111, 123, 101, (193,529,0): 110, 124, 101, (193,530,0): 110, 122, 100, (193,531,0): 110, 122, 100, (193,532,0): 109, 121, 101, (193,533,0): 111, 120, 101, (193,534,0): 111, 118, 102, (193,535,0): 110, 117, 101, (193,536,0): 108, 112, 97, (193,537,0): 107, 111, 96, (193,538,0): 107, 109, 96, (193,539,0): 105, 107, 94, (193,540,0): 104, 104, 94, (193,541,0): 103, 103, 93, (193,542,0): 104, 101, 92, (193,543,0): 102, 102, 94, (193,544,0): 98, 101, 94, (193,545,0): 97, 102, 96, (193,546,0): 98, 103, 97, (193,547,0): 98, 103, 97, (193,548,0): 97, 102, 98, (193,549,0): 95, 101, 97, (193,550,0): 93, 99, 95, (193,551,0): 92, 98, 94, (193,552,0): 92, 98, 96, (193,553,0): 92, 101, 98, (193,554,0): 95, 104, 103, (193,555,0): 97, 107, 106, (193,556,0): 100, 110, 109, (193,557,0): 101, 111, 110, (193,558,0): 102, 112, 113, (193,559,0): 101, 113, 113, (193,560,0): 98, 109, 111, (193,561,0): 99, 110, 112, (193,562,0): 102, 113, 117, (193,563,0): 106, 117, 121, (193,564,0): 110, 121, 127, (193,565,0): 111, 124, 130, (193,566,0): 114, 127, 136, (193,567,0): 115, 129, 138, (193,568,0): 115, 131, 144, (193,569,0): 113, 131, 143, (193,570,0): 111, 128, 144, (193,571,0): 108, 127, 142, (193,572,0): 107, 126, 143, (193,573,0): 105, 126, 145, (193,574,0): 107, 125, 147, (193,575,0): 110, 125, 144, (193,576,0): 114, 122, 135, (193,577,0): 117, 121, 132, (193,578,0): 116, 120, 131, (193,579,0): 115, 119, 130, (193,580,0): 114, 118, 129, (193,581,0): 114, 118, 129, (193,582,0): 114, 118, 129, (193,583,0): 114, 118, 129, (193,584,0): 113, 117, 128, (193,585,0): 113, 117, 128, (193,586,0): 112, 116, 127, (193,587,0): 110, 114, 125, (193,588,0): 107, 111, 122, (193,589,0): 104, 108, 119, (193,590,0): 100, 104, 115, (193,591,0): 99, 103, 112, (193,592,0): 95, 98, 105, (193,593,0): 92, 95, 100, (193,594,0): 91, 92, 97, (193,595,0): 89, 90, 94, (193,596,0): 88, 88, 90, (193,597,0): 85, 83, 84, (193,598,0): 81, 77, 78, (193,599,0): 77, 73, 72, (194,0,0): 41, 29, 39, (194,1,0): 42, 30, 40, (194,2,0): 42, 30, 40, (194,3,0): 43, 31, 41, (194,4,0): 43, 31, 41, (194,5,0): 44, 32, 42, (194,6,0): 44, 32, 42, (194,7,0): 44, 32, 42, (194,8,0): 42, 30, 40, (194,9,0): 42, 30, 40, (194,10,0): 43, 31, 41, (194,11,0): 43, 31, 41, (194,12,0): 44, 32, 42, (194,13,0): 44, 32, 42, (194,14,0): 45, 33, 43, (194,15,0): 44, 34, 43, (194,16,0): 44, 34, 43, (194,17,0): 42, 35, 43, (194,18,0): 42, 35, 43, (194,19,0): 42, 35, 43, (194,20,0): 44, 34, 43, (194,21,0): 44, 34, 43, (194,22,0): 44, 34, 43, (194,23,0): 44, 34, 43, (194,24,0): 45, 33, 43, (194,25,0): 45, 33, 43, (194,26,0): 47, 34, 44, (194,27,0): 47, 34, 44, (194,28,0): 48, 35, 45, (194,29,0): 48, 35, 45, (194,30,0): 51, 35, 46, (194,31,0): 51, 35, 46, (194,32,0): 49, 36, 45, (194,33,0): 49, 36, 45, (194,34,0): 51, 35, 45, (194,35,0): 51, 35, 45, (194,36,0): 51, 35, 45, (194,37,0): 51, 35, 45, (194,38,0): 52, 35, 45, (194,39,0): 52, 35, 45, (194,40,0): 54, 34, 45, (194,41,0): 54, 34, 45, (194,42,0): 55, 35, 46, (194,43,0): 55, 35, 46, (194,44,0): 57, 35, 47, (194,45,0): 57, 35, 47, (194,46,0): 58, 36, 48, (194,47,0): 58, 36, 48, (194,48,0): 57, 37, 48, (194,49,0): 57, 37, 48, (194,50,0): 58, 36, 48, (194,51,0): 58, 36, 48, (194,52,0): 58, 37, 46, (194,53,0): 58, 37, 46, (194,54,0): 59, 36, 44, (194,55,0): 59, 36, 44, (194,56,0): 61, 35, 44, (194,57,0): 62, 36, 45, (194,58,0): 63, 38, 44, (194,59,0): 64, 39, 45, (194,60,0): 66, 39, 44, (194,61,0): 66, 39, 44, (194,62,0): 65, 38, 43, (194,63,0): 65, 38, 43, (194,64,0): 65, 36, 40, (194,65,0): 65, 36, 40, (194,66,0): 66, 35, 40, (194,67,0): 67, 36, 41, (194,68,0): 68, 38, 40, (194,69,0): 68, 38, 40, (194,70,0): 69, 37, 40, (194,71,0): 70, 38, 39, (194,72,0): 73, 39, 40, (194,73,0): 73, 39, 40, (194,74,0): 73, 39, 38, (194,75,0): 73, 39, 38, (194,76,0): 74, 38, 38, (194,77,0): 74, 38, 38, (194,78,0): 74, 39, 37, (194,79,0): 74, 38, 38, (194,80,0): 76, 37, 40, (194,81,0): 77, 38, 41, (194,82,0): 79, 39, 40, (194,83,0): 81, 39, 41, (194,84,0): 83, 39, 40, (194,85,0): 83, 37, 37, (194,86,0): 84, 36, 34, (194,87,0): 84, 36, 34, (194,88,0): 86, 38, 36, (194,89,0): 84, 39, 36, (194,90,0): 84, 38, 38, (194,91,0): 82, 38, 39, (194,92,0): 78, 36, 38, (194,93,0): 74, 34, 35, (194,94,0): 72, 31, 35, (194,95,0): 69, 30, 35, (194,96,0): 68, 31, 38, (194,97,0): 67, 32, 38, (194,98,0): 64, 32, 37, (194,99,0): 63, 31, 36, (194,100,0): 62, 30, 35, (194,101,0): 61, 29, 34, (194,102,0): 59, 28, 33, (194,103,0): 58, 27, 32, (194,104,0): 57, 28, 32, (194,105,0): 57, 28, 32, (194,106,0): 57, 28, 32, (194,107,0): 57, 28, 32, (194,108,0): 53, 27, 30, (194,109,0): 51, 25, 28, (194,110,0): 48, 22, 25, (194,111,0): 44, 22, 25, (194,112,0): 32, 15, 23, (194,113,0): 30, 14, 24, (194,114,0): 28, 12, 22, (194,115,0): 26, 10, 20, (194,116,0): 25, 9, 19, (194,117,0): 25, 9, 19, (194,118,0): 25, 9, 19, (194,119,0): 26, 10, 20, (194,120,0): 27, 11, 21, (194,121,0): 28, 12, 22, (194,122,0): 29, 13, 23, (194,123,0): 31, 15, 25, (194,124,0): 32, 16, 26, (194,125,0): 34, 18, 28, (194,126,0): 35, 19, 29, (194,127,0): 37, 20, 28, (194,128,0): 42, 23, 25, (194,129,0): 43, 23, 24, (194,130,0): 44, 24, 25, (194,131,0): 45, 25, 26, (194,132,0): 45, 25, 26, (194,133,0): 44, 24, 25, (194,134,0): 43, 23, 24, (194,135,0): 43, 23, 24, (194,136,0): 44, 24, 25, (194,137,0): 44, 24, 25, (194,138,0): 44, 24, 25, (194,139,0): 44, 24, 25, (194,140,0): 44, 24, 25, (194,141,0): 44, 24, 25, (194,142,0): 44, 24, 25, (194,143,0): 44, 24, 25, (194,144,0): 46, 23, 29, (194,145,0): 46, 23, 29, (194,146,0): 46, 24, 27, (194,147,0): 46, 24, 27, (194,148,0): 46, 24, 27, (194,149,0): 46, 24, 27, (194,150,0): 46, 24, 26, (194,151,0): 46, 24, 26, (194,152,0): 47, 26, 25, (194,153,0): 47, 26, 25, (194,154,0): 48, 27, 26, (194,155,0): 48, 27, 26, (194,156,0): 49, 28, 25, (194,157,0): 49, 28, 25, (194,158,0): 50, 29, 26, (194,159,0): 50, 29, 26, (194,160,0): 51, 30, 27, (194,161,0): 51, 30, 27, (194,162,0): 51, 30, 27, (194,163,0): 51, 30, 27, (194,164,0): 51, 30, 27, (194,165,0): 51, 30, 27, (194,166,0): 51, 30, 27, (194,167,0): 51, 30, 27, (194,168,0): 49, 28, 25, (194,169,0): 47, 26, 23, (194,170,0): 46, 25, 22, (194,171,0): 44, 23, 20, (194,172,0): 43, 22, 19, (194,173,0): 43, 22, 19, (194,174,0): 43, 22, 19, (194,175,0): 43, 22, 19, (194,176,0): 45, 26, 22, (194,177,0): 45, 26, 22, (194,178,0): 45, 26, 22, (194,179,0): 45, 26, 22, (194,180,0): 45, 26, 22, (194,181,0): 45, 26, 22, (194,182,0): 45, 26, 22, (194,183,0): 45, 26, 22, (194,184,0): 46, 27, 23, (194,185,0): 46, 27, 23, (194,186,0): 46, 27, 23, (194,187,0): 46, 27, 23, (194,188,0): 46, 27, 23, (194,189,0): 46, 27, 23, (194,190,0): 46, 27, 23, (194,191,0): 46, 27, 23, (194,192,0): 49, 28, 23, (194,193,0): 49, 28, 23, (194,194,0): 49, 28, 23, (194,195,0): 49, 28, 23, (194,196,0): 49, 28, 23, (194,197,0): 49, 28, 23, (194,198,0): 49, 28, 23, (194,199,0): 49, 28, 23, (194,200,0): 49, 28, 23, (194,201,0): 49, 28, 23, (194,202,0): 49, 28, 23, (194,203,0): 49, 28, 23, (194,204,0): 49, 28, 23, (194,205,0): 49, 28, 23, (194,206,0): 49, 28, 23, (194,207,0): 49, 29, 22, (194,208,0): 51, 26, 21, (194,209,0): 51, 26, 19, (194,210,0): 49, 24, 17, (194,211,0): 49, 24, 17, (194,212,0): 49, 24, 17, (194,213,0): 49, 24, 17, (194,214,0): 51, 26, 19, (194,215,0): 51, 26, 19, (194,216,0): 52, 27, 20, (194,217,0): 52, 27, 20, (194,218,0): 52, 27, 20, (194,219,0): 52, 27, 20, (194,220,0): 52, 27, 20, (194,221,0): 52, 27, 20, (194,222,0): 52, 27, 20, (194,223,0): 52, 27, 22, (194,224,0): 52, 24, 21, (194,225,0): 53, 25, 22, (194,226,0): 55, 26, 22, (194,227,0): 56, 27, 21, (194,228,0): 58, 30, 19, (194,229,0): 60, 32, 20, (194,230,0): 62, 33, 19, (194,231,0): 63, 34, 18, (194,232,0): 72, 41, 23, (194,233,0): 72, 41, 21, (194,234,0): 72, 41, 21, (194,235,0): 72, 41, 21, (194,236,0): 73, 40, 23, (194,237,0): 73, 40, 23, (194,238,0): 73, 40, 23, (194,239,0): 73, 40, 23, (194,240,0): 71, 40, 22, (194,241,0): 71, 40, 22, (194,242,0): 68, 39, 23, (194,243,0): 67, 38, 22, (194,244,0): 66, 37, 21, (194,245,0): 66, 37, 21, (194,246,0): 64, 37, 20, (194,247,0): 64, 36, 22, (194,248,0): 62, 36, 21, (194,249,0): 61, 35, 22, (194,250,0): 60, 34, 21, (194,251,0): 59, 33, 20, (194,252,0): 56, 32, 20, (194,253,0): 55, 31, 19, (194,254,0): 54, 30, 18, (194,255,0): 53, 31, 20, (194,256,0): 54, 31, 23, (194,257,0): 52, 32, 25, (194,258,0): 51, 31, 24, (194,259,0): 51, 31, 24, (194,260,0): 53, 30, 24, (194,261,0): 55, 32, 26, (194,262,0): 57, 32, 27, (194,263,0): 58, 33, 28, (194,264,0): 55, 30, 25, (194,265,0): 56, 31, 26, (194,266,0): 59, 31, 28, (194,267,0): 58, 30, 27, (194,268,0): 58, 28, 28, (194,269,0): 60, 30, 30, (194,270,0): 65, 35, 35, (194,271,0): 69, 41, 38, (194,272,0): 69, 42, 35, (194,273,0): 68, 44, 32, (194,274,0): 69, 45, 33, (194,275,0): 71, 48, 34, (194,276,0): 74, 51, 37, (194,277,0): 75, 52, 36, (194,278,0): 77, 54, 36, (194,279,0): 78, 56, 35, (194,280,0): 79, 57, 34, (194,281,0): 79, 57, 33, (194,282,0): 79, 58, 31, (194,283,0): 80, 59, 30, (194,284,0): 80, 59, 30, (194,285,0): 81, 60, 29, (194,286,0): 81, 60, 29, (194,287,0): 82, 61, 30, (194,288,0): 80, 59, 32, (194,289,0): 81, 60, 33, (194,290,0): 81, 59, 35, (194,291,0): 81, 59, 35, (194,292,0): 80, 60, 35, (194,293,0): 80, 60, 35, (194,294,0): 80, 60, 36, (194,295,0): 80, 60, 36, (194,296,0): 80, 62, 40, (194,297,0): 81, 63, 41, (194,298,0): 80, 64, 41, (194,299,0): 81, 65, 42, (194,300,0): 82, 65, 45, (194,301,0): 84, 67, 47, (194,302,0): 83, 68, 47, (194,303,0): 84, 69, 46, (194,304,0): 91, 75, 50, (194,305,0): 91, 75, 49, (194,306,0): 91, 75, 49, (194,307,0): 92, 76, 50, (194,308,0): 95, 79, 53, (194,309,0): 97, 81, 55, (194,310,0): 100, 84, 58, (194,311,0): 102, 86, 60, (194,312,0): 105, 89, 63, (194,313,0): 106, 90, 64, (194,314,0): 107, 91, 65, (194,315,0): 108, 92, 66, (194,316,0): 110, 94, 68, (194,317,0): 111, 95, 69, (194,318,0): 113, 97, 71, (194,319,0): 112, 99, 67, (194,320,0): 115, 102, 67, (194,321,0): 118, 109, 68, (194,322,0): 123, 111, 73, (194,323,0): 124, 112, 70, (194,324,0): 134, 122, 72, (194,325,0): 156, 146, 85, (194,326,0): 178, 172, 98, (194,327,0): 191, 186, 104, (194,328,0): 184, 182, 97, (194,329,0): 182, 182, 96, (194,330,0): 179, 180, 100, (194,331,0): 177, 181, 105, (194,332,0): 176, 182, 112, (194,333,0): 178, 185, 117, (194,334,0): 178, 188, 119, (194,335,0): 180, 190, 121, (194,336,0): 178, 190, 116, (194,337,0): 177, 189, 115, (194,338,0): 176, 188, 114, (194,339,0): 175, 187, 115, (194,340,0): 174, 185, 116, (194,341,0): 174, 185, 117, (194,342,0): 175, 186, 118, (194,343,0): 175, 186, 118, (194,344,0): 177, 188, 122, (194,345,0): 177, 188, 120, (194,346,0): 177, 188, 120, (194,347,0): 177, 188, 119, (194,348,0): 177, 189, 117, (194,349,0): 177, 189, 115, (194,350,0): 178, 190, 116, (194,351,0): 178, 190, 116, (194,352,0): 175, 182, 114, (194,353,0): 173, 180, 112, (194,354,0): 171, 178, 110, (194,355,0): 172, 179, 111, (194,356,0): 175, 182, 114, (194,357,0): 178, 185, 117, (194,358,0): 178, 185, 117, (194,359,0): 177, 184, 114, (194,360,0): 176, 184, 111, (194,361,0): 174, 182, 107, (194,362,0): 173, 181, 104, (194,363,0): 174, 183, 104, (194,364,0): 176, 185, 106, (194,365,0): 177, 186, 105, (194,366,0): 176, 185, 102, (194,367,0): 175, 184, 101, (194,368,0): 183, 192, 109, (194,369,0): 185, 195, 109, (194,370,0): 187, 197, 110, (194,371,0): 186, 196, 107, (194,372,0): 187, 198, 104, (194,373,0): 193, 205, 107, (194,374,0): 203, 215, 113, (194,375,0): 212, 225, 119, (194,376,0): 215, 228, 120, (194,377,0): 213, 227, 116, (194,378,0): 211, 225, 112, (194,379,0): 210, 224, 111, (194,380,0): 211, 225, 112, (194,381,0): 211, 225, 112, (194,382,0): 210, 224, 111, (194,383,0): 208, 222, 111, (194,384,0): 205, 219, 108, (194,385,0): 202, 219, 107, (194,386,0): 200, 217, 103, (194,387,0): 199, 218, 102, (194,388,0): 202, 223, 104, (194,389,0): 210, 231, 110, (194,390,0): 217, 241, 119, (194,391,0): 224, 248, 124, (194,392,0): 232, 254, 130, (194,393,0): 234, 254, 131, (194,394,0): 236, 254, 134, (194,395,0): 241, 254, 136, (194,396,0): 244, 254, 139, (194,397,0): 247, 255, 143, (194,398,0): 251, 255, 144, (194,399,0): 252, 255, 146, (194,400,0): 254, 255, 147, (194,401,0): 254, 255, 149, (194,402,0): 254, 255, 151, (194,403,0): 254, 255, 153, (194,404,0): 254, 254, 154, (194,405,0): 254, 254, 156, (194,406,0): 254, 254, 158, (194,407,0): 254, 253, 160, (194,408,0): 255, 254, 161, (194,409,0): 255, 254, 161, (194,410,0): 255, 254, 161, (194,411,0): 255, 255, 159, (194,412,0): 255, 255, 159, (194,413,0): 255, 255, 157, (194,414,0): 255, 255, 157, (194,415,0): 255, 255, 155, (194,416,0): 253, 255, 153, (194,417,0): 253, 255, 153, (194,418,0): 254, 255, 153, (194,419,0): 254, 255, 153, (194,420,0): 255, 254, 154, (194,421,0): 255, 254, 154, (194,422,0): 255, 254, 154, (194,423,0): 255, 254, 154, (194,424,0): 255, 253, 156, (194,425,0): 254, 254, 156, (194,426,0): 253, 255, 158, (194,427,0): 249, 255, 157, (194,428,0): 248, 255, 157, (194,429,0): 245, 255, 156, (194,430,0): 244, 255, 158, (194,431,0): 240, 255, 158, (194,432,0): 236, 255, 164, (194,433,0): 231, 254, 164, (194,434,0): 227, 252, 161, (194,435,0): 223, 249, 158, (194,436,0): 218, 247, 157, (194,437,0): 212, 240, 153, (194,438,0): 203, 233, 147, (194,439,0): 196, 228, 143, (194,440,0): 192, 224, 141, (194,441,0): 192, 221, 141, (194,442,0): 192, 218, 144, (194,443,0): 193, 219, 146, (194,444,0): 196, 219, 147, (194,445,0): 194, 215, 146, (194,446,0): 190, 209, 143, (194,447,0): 184, 206, 141, (194,448,0): 176, 201, 143, (194,449,0): 169, 198, 142, (194,450,0): 168, 195, 140, (194,451,0): 167, 194, 139, (194,452,0): 171, 194, 142, (194,453,0): 169, 189, 138, (194,454,0): 163, 181, 133, (194,455,0): 158, 174, 129, (194,456,0): 158, 169, 127, (194,457,0): 155, 163, 122, (194,458,0): 147, 153, 115, (194,459,0): 138, 142, 107, (194,460,0): 131, 132, 100, (194,461,0): 124, 123, 92, (194,462,0): 119, 118, 87, (194,463,0): 117, 116, 85, (194,464,0): 120, 121, 90, (194,465,0): 121, 122, 91, (194,466,0): 121, 122, 91, (194,467,0): 121, 122, 91, (194,468,0): 118, 121, 92, (194,469,0): 115, 118, 89, (194,470,0): 112, 115, 88, (194,471,0): 109, 113, 86, (194,472,0): 109, 113, 86, (194,473,0): 113, 117, 90, (194,474,0): 115, 121, 95, (194,475,0): 118, 124, 98, (194,476,0): 118, 126, 102, (194,477,0): 121, 129, 105, (194,478,0): 127, 135, 111, (194,479,0): 131, 139, 115, (194,480,0): 139, 148, 127, (194,481,0): 137, 150, 130, (194,482,0): 139, 152, 132, (194,483,0): 139, 154, 133, (194,484,0): 138, 156, 134, (194,485,0): 136, 155, 133, (194,486,0): 135, 154, 134, (194,487,0): 132, 154, 133, (194,488,0): 129, 150, 131, (194,489,0): 129, 150, 131, (194,490,0): 131, 148, 132, (194,491,0): 130, 147, 131, (194,492,0): 132, 146, 131, (194,493,0): 131, 145, 130, (194,494,0): 132, 143, 129, (194,495,0): 132, 142, 131, (194,496,0): 133, 138, 132, (194,497,0): 132, 137, 133, (194,498,0): 129, 134, 128, (194,499,0): 125, 130, 124, (194,500,0): 123, 125, 120, (194,501,0): 118, 120, 115, (194,502,0): 115, 114, 109, (194,503,0): 113, 112, 107, (194,504,0): 106, 103, 96, (194,505,0): 100, 97, 90, (194,506,0): 94, 87, 81, (194,507,0): 86, 79, 73, (194,508,0): 82, 73, 66, (194,509,0): 83, 74, 67, (194,510,0): 86, 77, 70, (194,511,0): 89, 80, 73, (194,512,0): 90, 83, 75, (194,513,0): 91, 84, 76, (194,514,0): 91, 87, 76, (194,515,0): 93, 89, 78, (194,516,0): 95, 91, 79, (194,517,0): 98, 94, 82, (194,518,0): 99, 97, 82, (194,519,0): 100, 98, 83, (194,520,0): 96, 97, 79, (194,521,0): 100, 101, 83, (194,522,0): 104, 106, 85, (194,523,0): 106, 108, 87, (194,524,0): 105, 109, 86, (194,525,0): 105, 109, 86, (194,526,0): 107, 111, 88, (194,527,0): 109, 114, 91, (194,528,0): 109, 118, 97, (194,529,0): 107, 119, 99, (194,530,0): 107, 119, 99, (194,531,0): 108, 120, 100, (194,532,0): 111, 120, 101, (194,533,0): 112, 121, 102, (194,534,0): 113, 120, 104, (194,535,0): 114, 121, 105, (194,536,0): 111, 115, 101, (194,537,0): 110, 114, 100, (194,538,0): 109, 111, 100, (194,539,0): 107, 109, 98, (194,540,0): 105, 105, 95, (194,541,0): 103, 103, 93, (194,542,0): 101, 101, 91, (194,543,0): 100, 100, 92, (194,544,0): 98, 101, 94, (194,545,0): 98, 100, 95, (194,546,0): 99, 101, 96, (194,547,0): 99, 101, 96, (194,548,0): 99, 101, 98, (194,549,0): 96, 101, 97, (194,550,0): 94, 98, 97, (194,551,0): 92, 98, 96, (194,552,0): 94, 100, 98, (194,553,0): 93, 102, 99, (194,554,0): 96, 105, 104, (194,555,0): 100, 109, 108, (194,556,0): 103, 111, 113, (194,557,0): 105, 113, 115, (194,558,0): 105, 113, 115, (194,559,0): 105, 115, 116, (194,560,0): 103, 113, 115, (194,561,0): 104, 114, 116, (194,562,0): 106, 115, 120, (194,563,0): 108, 119, 123, (194,564,0): 111, 122, 128, (194,565,0): 111, 124, 130, (194,566,0): 113, 126, 135, (194,567,0): 113, 127, 136, (194,568,0): 116, 130, 143, (194,569,0): 113, 129, 142, (194,570,0): 111, 127, 143, (194,571,0): 108, 125, 141, (194,572,0): 107, 124, 142, (194,573,0): 106, 125, 142, (194,574,0): 107, 124, 144, (194,575,0): 108, 123, 142, (194,576,0): 113, 121, 134, (194,577,0): 114, 120, 132, (194,578,0): 114, 120, 132, (194,579,0): 113, 119, 131, (194,580,0): 113, 119, 131, (194,581,0): 112, 118, 130, (194,582,0): 112, 118, 130, (194,583,0): 112, 118, 130, (194,584,0): 112, 118, 130, (194,585,0): 112, 118, 130, (194,586,0): 111, 117, 129, (194,587,0): 109, 115, 127, (194,588,0): 107, 113, 125, (194,589,0): 103, 109, 121, (194,590,0): 100, 106, 118, (194,591,0): 99, 106, 116, (194,592,0): 95, 99, 108, (194,593,0): 92, 97, 101, (194,594,0): 90, 93, 98, (194,595,0): 90, 91, 95, (194,596,0): 90, 90, 92, (194,597,0): 87, 87, 87, (194,598,0): 83, 81, 82, (194,599,0): 79, 77, 78, (195,0,0): 41, 29, 39, (195,1,0): 41, 29, 39, (195,2,0): 41, 29, 39, (195,3,0): 42, 30, 40, (195,4,0): 43, 31, 41, (195,5,0): 43, 31, 41, (195,6,0): 43, 31, 41, (195,7,0): 44, 32, 42, (195,8,0): 42, 30, 40, (195,9,0): 42, 30, 40, (195,10,0): 43, 31, 41, (195,11,0): 43, 31, 41, (195,12,0): 44, 32, 42, (195,13,0): 44, 32, 42, (195,14,0): 45, 33, 43, (195,15,0): 44, 34, 43, (195,16,0): 44, 34, 43, (195,17,0): 42, 35, 43, (195,18,0): 42, 35, 43, (195,19,0): 42, 35, 43, (195,20,0): 44, 34, 43, (195,21,0): 44, 34, 43, (195,22,0): 44, 34, 43, (195,23,0): 44, 34, 43, (195,24,0): 45, 33, 43, (195,25,0): 45, 33, 43, (195,26,0): 47, 34, 44, (195,27,0): 47, 34, 44, (195,28,0): 48, 35, 45, (195,29,0): 48, 35, 45, (195,30,0): 51, 35, 46, (195,31,0): 51, 35, 46, (195,32,0): 49, 36, 45, (195,33,0): 49, 36, 45, (195,34,0): 51, 35, 45, (195,35,0): 51, 35, 45, (195,36,0): 51, 35, 45, (195,37,0): 51, 35, 45, (195,38,0): 52, 35, 45, (195,39,0): 52, 35, 45, (195,40,0): 54, 34, 45, (195,41,0): 54, 34, 45, (195,42,0): 55, 35, 46, (195,43,0): 55, 35, 46, (195,44,0): 57, 35, 47, (195,45,0): 57, 35, 47, (195,46,0): 58, 36, 48, (195,47,0): 58, 36, 48, (195,48,0): 57, 37, 48, (195,49,0): 57, 37, 48, (195,50,0): 58, 36, 48, (195,51,0): 58, 36, 48, (195,52,0): 58, 37, 46, (195,53,0): 58, 37, 46, (195,54,0): 59, 36, 44, (195,55,0): 59, 36, 44, (195,56,0): 61, 35, 44, (195,57,0): 61, 35, 44, (195,58,0): 62, 37, 43, (195,59,0): 63, 38, 44, (195,60,0): 64, 37, 42, (195,61,0): 65, 38, 43, (195,62,0): 65, 38, 43, (195,63,0): 65, 38, 43, (195,64,0): 64, 35, 39, (195,65,0): 65, 36, 40, (195,66,0): 66, 35, 40, (195,67,0): 67, 36, 41, (195,68,0): 67, 37, 39, (195,69,0): 68, 38, 40, (195,70,0): 69, 37, 40, (195,71,0): 69, 37, 40, (195,72,0): 72, 38, 39, (195,73,0): 72, 38, 39, (195,74,0): 72, 38, 37, (195,75,0): 72, 38, 37, (195,76,0): 73, 37, 37, (195,77,0): 73, 37, 37, (195,78,0): 73, 38, 36, (195,79,0): 73, 37, 37, (195,80,0): 74, 38, 40, (195,81,0): 76, 37, 42, (195,82,0): 77, 38, 41, (195,83,0): 78, 38, 39, (195,84,0): 80, 38, 39, (195,85,0): 82, 38, 39, (195,86,0): 85, 37, 37, (195,87,0): 85, 37, 35, (195,88,0): 88, 40, 38, (195,89,0): 88, 40, 40, (195,90,0): 87, 38, 41, (195,91,0): 84, 38, 40, (195,92,0): 81, 36, 39, (195,93,0): 77, 32, 37, (195,94,0): 73, 30, 37, (195,95,0): 70, 29, 35, (195,96,0): 68, 31, 38, (195,97,0): 67, 32, 38, (195,98,0): 64, 32, 37, (195,99,0): 63, 31, 36, (195,100,0): 62, 30, 35, (195,101,0): 61, 29, 34, (195,102,0): 59, 28, 33, (195,103,0): 59, 28, 33, (195,104,0): 57, 28, 32, (195,105,0): 57, 28, 32, (195,106,0): 57, 28, 32, (195,107,0): 56, 27, 31, (195,108,0): 52, 26, 29, (195,109,0): 50, 24, 27, (195,110,0): 48, 22, 25, (195,111,0): 43, 21, 24, (195,112,0): 34, 14, 23, (195,113,0): 30, 14, 24, (195,114,0): 28, 12, 22, (195,115,0): 27, 11, 21, (195,116,0): 26, 10, 20, (195,117,0): 26, 10, 20, (195,118,0): 27, 11, 21, (195,119,0): 27, 11, 21, (195,120,0): 30, 14, 24, (195,121,0): 30, 14, 24, (195,122,0): 31, 15, 25, (195,123,0): 32, 16, 26, (195,124,0): 33, 17, 27, (195,125,0): 34, 18, 28, (195,126,0): 35, 19, 29, (195,127,0): 36, 19, 27, (195,128,0): 43, 24, 26, (195,129,0): 44, 24, 25, (195,130,0): 44, 24, 25, (195,131,0): 45, 25, 26, (195,132,0): 45, 25, 26, (195,133,0): 44, 24, 25, (195,134,0): 44, 24, 25, (195,135,0): 44, 24, 25, (195,136,0): 44, 24, 25, (195,137,0): 44, 24, 25, (195,138,0): 44, 24, 25, (195,139,0): 44, 24, 25, (195,140,0): 44, 24, 25, (195,141,0): 44, 24, 25, (195,142,0): 44, 24, 25, (195,143,0): 44, 24, 25, (195,144,0): 47, 24, 30, (195,145,0): 47, 24, 30, (195,146,0): 47, 25, 28, (195,147,0): 47, 25, 28, (195,148,0): 47, 25, 28, (195,149,0): 47, 25, 28, (195,150,0): 47, 25, 27, (195,151,0): 47, 25, 27, (195,152,0): 47, 26, 25, (195,153,0): 47, 26, 25, (195,154,0): 48, 27, 26, (195,155,0): 48, 27, 26, (195,156,0): 49, 28, 25, (195,157,0): 49, 28, 25, (195,158,0): 50, 29, 26, (195,159,0): 50, 29, 26, (195,160,0): 50, 29, 26, (195,161,0): 50, 29, 26, (195,162,0): 50, 29, 26, (195,163,0): 50, 29, 26, (195,164,0): 50, 29, 26, (195,165,0): 50, 29, 26, (195,166,0): 50, 29, 26, (195,167,0): 50, 29, 26, (195,168,0): 48, 27, 24, (195,169,0): 47, 26, 23, (195,170,0): 46, 25, 22, (195,171,0): 44, 23, 20, (195,172,0): 44, 23, 20, (195,173,0): 44, 23, 20, (195,174,0): 44, 23, 20, (195,175,0): 45, 24, 21, (195,176,0): 45, 26, 22, (195,177,0): 45, 26, 22, (195,178,0): 45, 26, 22, (195,179,0): 45, 26, 22, (195,180,0): 45, 26, 22, (195,181,0): 45, 26, 22, (195,182,0): 45, 26, 22, (195,183,0): 45, 26, 22, (195,184,0): 46, 27, 23, (195,185,0): 46, 27, 23, (195,186,0): 46, 27, 23, (195,187,0): 46, 27, 23, (195,188,0): 46, 27, 23, (195,189,0): 46, 27, 23, (195,190,0): 46, 27, 23, (195,191,0): 46, 27, 23, (195,192,0): 49, 28, 23, (195,193,0): 49, 28, 23, (195,194,0): 49, 28, 23, (195,195,0): 49, 28, 23, (195,196,0): 49, 28, 23, (195,197,0): 49, 28, 23, (195,198,0): 49, 28, 23, (195,199,0): 49, 28, 23, (195,200,0): 49, 28, 23, (195,201,0): 49, 28, 23, (195,202,0): 49, 28, 23, (195,203,0): 49, 28, 23, (195,204,0): 49, 28, 23, (195,205,0): 49, 28, 23, (195,206,0): 49, 28, 23, (195,207,0): 49, 29, 22, (195,208,0): 51, 26, 21, (195,209,0): 51, 26, 19, (195,210,0): 49, 24, 17, (195,211,0): 49, 24, 17, (195,212,0): 49, 24, 17, (195,213,0): 49, 24, 17, (195,214,0): 51, 26, 19, (195,215,0): 51, 26, 19, (195,216,0): 53, 28, 21, (195,217,0): 53, 28, 21, (195,218,0): 53, 28, 21, (195,219,0): 53, 28, 21, (195,220,0): 53, 28, 21, (195,221,0): 53, 28, 21, (195,222,0): 53, 28, 21, (195,223,0): 53, 28, 21, (195,224,0): 54, 26, 22, (195,225,0): 54, 26, 22, (195,226,0): 56, 27, 21, (195,227,0): 57, 28, 20, (195,228,0): 58, 30, 18, (195,229,0): 60, 32, 18, (195,230,0): 63, 34, 18, (195,231,0): 64, 35, 17, (195,232,0): 74, 43, 23, (195,233,0): 74, 43, 22, (195,234,0): 74, 43, 23, (195,235,0): 74, 43, 23, (195,236,0): 75, 42, 23, (195,237,0): 75, 42, 23, (195,238,0): 75, 42, 23, (195,239,0): 75, 42, 23, (195,240,0): 74, 43, 22, (195,241,0): 73, 42, 21, (195,242,0): 70, 42, 21, (195,243,0): 69, 41, 20, (195,244,0): 67, 39, 18, (195,245,0): 66, 37, 19, (195,246,0): 64, 37, 18, (195,247,0): 64, 37, 20, (195,248,0): 63, 37, 20, (195,249,0): 62, 36, 21, (195,250,0): 61, 35, 22, (195,251,0): 60, 34, 21, (195,252,0): 56, 32, 20, (195,253,0): 55, 31, 19, (195,254,0): 54, 30, 18, (195,255,0): 52, 30, 19, (195,256,0): 54, 31, 23, (195,257,0): 51, 31, 24, (195,258,0): 50, 30, 23, (195,259,0): 50, 30, 23, (195,260,0): 53, 30, 24, (195,261,0): 54, 31, 25, (195,262,0): 56, 31, 26, (195,263,0): 57, 32, 27, (195,264,0): 55, 30, 25, (195,265,0): 57, 32, 27, (195,266,0): 59, 31, 28, (195,267,0): 58, 30, 27, (195,268,0): 59, 29, 27, (195,269,0): 61, 31, 29, (195,270,0): 66, 36, 36, (195,271,0): 70, 41, 37, (195,272,0): 71, 44, 35, (195,273,0): 70, 47, 33, (195,274,0): 71, 48, 34, (195,275,0): 73, 50, 34, (195,276,0): 74, 51, 35, (195,277,0): 76, 53, 35, (195,278,0): 77, 55, 34, (195,279,0): 78, 56, 33, (195,280,0): 79, 57, 34, (195,281,0): 79, 57, 33, (195,282,0): 79, 58, 31, (195,283,0): 80, 59, 32, (195,284,0): 80, 59, 30, (195,285,0): 81, 60, 29, (195,286,0): 81, 60, 29, (195,287,0): 81, 60, 29, (195,288,0): 81, 60, 33, (195,289,0): 81, 60, 33, (195,290,0): 82, 60, 36, (195,291,0): 82, 60, 36, (195,292,0): 81, 61, 36, (195,293,0): 82, 62, 37, (195,294,0): 82, 62, 38, (195,295,0): 82, 62, 38, (195,296,0): 81, 63, 41, (195,297,0): 82, 64, 42, (195,298,0): 81, 65, 42, (195,299,0): 82, 66, 43, (195,300,0): 83, 66, 46, (195,301,0): 85, 68, 48, (195,302,0): 84, 69, 48, (195,303,0): 85, 70, 47, (195,304,0): 90, 74, 49, (195,305,0): 90, 74, 48, (195,306,0): 91, 75, 49, (195,307,0): 92, 76, 50, (195,308,0): 94, 78, 52, (195,309,0): 97, 81, 55, (195,310,0): 100, 84, 58, (195,311,0): 101, 85, 59, (195,312,0): 104, 88, 62, (195,313,0): 105, 89, 63, (195,314,0): 106, 90, 64, (195,315,0): 107, 91, 65, (195,316,0): 109, 93, 67, (195,317,0): 110, 94, 68, (195,318,0): 112, 96, 70, (195,319,0): 111, 98, 66, (195,320,0): 114, 101, 66, (195,321,0): 117, 108, 67, (195,322,0): 123, 111, 73, (195,323,0): 123, 111, 71, (195,324,0): 130, 117, 72, (195,325,0): 148, 137, 81, (195,326,0): 172, 165, 95, (195,327,0): 191, 185, 107, (195,328,0): 189, 187, 104, (195,329,0): 186, 185, 102, (195,330,0): 181, 182, 102, (195,331,0): 177, 181, 104, (195,332,0): 176, 182, 110, (195,333,0): 177, 184, 116, (195,334,0): 178, 187, 120, (195,335,0): 180, 189, 122, (195,336,0): 177, 189, 117, (195,337,0): 177, 189, 117, (195,338,0): 176, 188, 116, (195,339,0): 175, 186, 117, (195,340,0): 175, 186, 118, (195,341,0): 174, 185, 119, (195,342,0): 174, 185, 119, (195,343,0): 174, 185, 119, (195,344,0): 173, 183, 120, (195,345,0): 173, 184, 118, (195,346,0): 172, 183, 117, (195,347,0): 172, 183, 115, (195,348,0): 173, 184, 115, (195,349,0): 173, 185, 113, (195,350,0): 174, 186, 114, (195,351,0): 175, 187, 115, (195,352,0): 174, 184, 113, (195,353,0): 173, 180, 112, (195,354,0): 171, 178, 110, (195,355,0): 172, 179, 109, (195,356,0): 175, 182, 112, (195,357,0): 177, 184, 114, (195,358,0): 177, 185, 112, (195,359,0): 175, 183, 110, (195,360,0): 178, 186, 111, (195,361,0): 177, 185, 108, (195,362,0): 177, 186, 107, (195,363,0): 177, 186, 105, (195,364,0): 178, 187, 106, (195,365,0): 178, 187, 104, (195,366,0): 178, 187, 104, (195,367,0): 177, 187, 101, (195,368,0): 183, 193, 106, (195,369,0): 185, 198, 108, (195,370,0): 192, 203, 111, (195,371,0): 193, 207, 112, (195,372,0): 198, 210, 112, (195,373,0): 201, 216, 113, (195,374,0): 211, 224, 119, (195,375,0): 215, 231, 124, (195,376,0): 211, 225, 114, (195,377,0): 208, 225, 113, (195,378,0): 209, 223, 110, (195,379,0): 207, 224, 110, (195,380,0): 211, 225, 112, (195,381,0): 212, 229, 115, (195,382,0): 216, 230, 119, (195,383,0): 215, 232, 120, (195,384,0): 215, 232, 118, (195,385,0): 212, 231, 116, (195,386,0): 209, 228, 112, (195,387,0): 205, 226, 107, (195,388,0): 206, 227, 106, (195,389,0): 212, 234, 110, (195,390,0): 220, 244, 120, (195,391,0): 227, 251, 127, (195,392,0): 233, 255, 131, (195,393,0): 235, 255, 132, (195,394,0): 239, 254, 135, (195,395,0): 242, 255, 139, (195,396,0): 245, 255, 142, (195,397,0): 248, 255, 145, (195,398,0): 252, 255, 146, (195,399,0): 253, 255, 149, (195,400,0): 254, 255, 151, (195,401,0): 254, 255, 151, (195,402,0): 254, 255, 153, (195,403,0): 254, 254, 154, (195,404,0): 254, 254, 156, (195,405,0): 254, 254, 158, (195,406,0): 254, 253, 160, (195,407,0): 254, 253, 161, (195,408,0): 255, 255, 165, (195,409,0): 255, 255, 163, (195,410,0): 255, 255, 163, (195,411,0): 255, 255, 162, (195,412,0): 255, 255, 162, (195,413,0): 255, 255, 160, (195,414,0): 255, 255, 160, (195,415,0): 255, 255, 160, (195,416,0): 253, 255, 158, (195,417,0): 253, 255, 156, (195,418,0): 254, 254, 158, (195,419,0): 254, 254, 158, (195,420,0): 255, 253, 158, (195,421,0): 255, 253, 158, (195,422,0): 255, 253, 160, (195,423,0): 254, 253, 160, (195,424,0): 254, 253, 160, (195,425,0): 253, 254, 161, (195,426,0): 251, 255, 161, (195,427,0): 249, 254, 160, (195,428,0): 246, 255, 162, (195,429,0): 244, 255, 161, (195,430,0): 242, 255, 161, (195,431,0): 240, 255, 163, (195,432,0): 235, 255, 166, (195,433,0): 229, 253, 165, (195,434,0): 225, 251, 162, (195,435,0): 220, 249, 159, (195,436,0): 217, 245, 158, (195,437,0): 210, 240, 154, (195,438,0): 201, 233, 148, (195,439,0): 195, 227, 144, (195,440,0): 190, 221, 141, (195,441,0): 189, 220, 142, (195,442,0): 190, 218, 144, (195,443,0): 192, 218, 147, (195,444,0): 193, 219, 148, (195,445,0): 193, 216, 148, (195,446,0): 190, 211, 146, (195,447,0): 184, 206, 142, (195,448,0): 174, 202, 144, (195,449,0): 169, 198, 142, (195,450,0): 166, 193, 138, (195,451,0): 168, 195, 142, (195,452,0): 173, 197, 145, (195,453,0): 172, 194, 145, (195,454,0): 167, 186, 140, (195,455,0): 161, 176, 133, (195,456,0): 161, 174, 131, (195,457,0): 156, 167, 127, (195,458,0): 149, 155, 119, (195,459,0): 139, 143, 108, (195,460,0): 130, 134, 101, (195,461,0): 126, 127, 95, (195,462,0): 124, 125, 93, (195,463,0): 123, 124, 93, (195,464,0): 127, 128, 97, (195,465,0): 128, 129, 98, (195,466,0): 130, 131, 100, (195,467,0): 127, 130, 99, (195,468,0): 124, 127, 98, (195,469,0): 118, 123, 93, (195,470,0): 112, 116, 89, (195,471,0): 108, 112, 85, (195,472,0): 113, 117, 90, (195,473,0): 115, 121, 93, (195,474,0): 118, 124, 98, (195,475,0): 118, 127, 100, (195,476,0): 119, 127, 103, (195,477,0): 122, 130, 106, (195,478,0): 126, 134, 110, (195,479,0): 129, 139, 115, (195,480,0): 134, 146, 126, (195,481,0): 134, 147, 127, (195,482,0): 135, 148, 128, (195,483,0): 136, 151, 130, (195,484,0): 136, 154, 132, (195,485,0): 136, 155, 135, (195,486,0): 137, 156, 136, (195,487,0): 135, 157, 136, (195,488,0): 128, 149, 130, (195,489,0): 128, 149, 130, (195,490,0): 130, 147, 131, (195,491,0): 130, 147, 131, (195,492,0): 132, 146, 131, (195,493,0): 132, 146, 131, (195,494,0): 133, 144, 130, (195,495,0): 133, 143, 132, (195,496,0): 134, 139, 133, (195,497,0): 132, 137, 133, (195,498,0): 129, 134, 128, (195,499,0): 124, 129, 123, (195,500,0): 121, 123, 118, (195,501,0): 116, 118, 113, (195,502,0): 114, 113, 108, (195,503,0): 111, 110, 105, (195,504,0): 104, 101, 94, (195,505,0): 99, 96, 89, (195,506,0): 95, 88, 82, (195,507,0): 89, 82, 76, (195,508,0): 87, 78, 71, (195,509,0): 88, 79, 72, (195,510,0): 91, 82, 75, (195,511,0): 93, 84, 77, (195,512,0): 93, 86, 78, (195,513,0): 94, 87, 79, (195,514,0): 92, 88, 77, (195,515,0): 94, 90, 79, (195,516,0): 96, 92, 80, (195,517,0): 98, 94, 82, (195,518,0): 99, 97, 82, (195,519,0): 100, 98, 83, (195,520,0): 97, 98, 82, (195,521,0): 101, 102, 84, (195,522,0): 105, 106, 88, (195,523,0): 107, 109, 88, (195,524,0): 105, 108, 87, (195,525,0): 105, 109, 86, (195,526,0): 107, 111, 88, (195,527,0): 108, 113, 91, (195,528,0): 108, 117, 98, (195,529,0): 106, 118, 98, (195,530,0): 106, 118, 98, (195,531,0): 106, 118, 98, (195,532,0): 109, 118, 99, (195,533,0): 110, 119, 102, (195,534,0): 113, 120, 104, (195,535,0): 114, 121, 105, (195,536,0): 113, 117, 103, (195,537,0): 112, 116, 102, (195,538,0): 112, 114, 103, (195,539,0): 109, 111, 100, (195,540,0): 107, 107, 97, (195,541,0): 103, 103, 93, (195,542,0): 100, 100, 90, (195,543,0): 97, 98, 90, (195,544,0): 98, 99, 94, (195,545,0): 98, 100, 95, (195,546,0): 100, 101, 96, (195,547,0): 99, 101, 96, (195,548,0): 98, 100, 97, (195,549,0): 97, 99, 96, (195,550,0): 96, 98, 97, (195,551,0): 93, 97, 96, (195,552,0): 96, 100, 99, (195,553,0): 97, 103, 101, (195,554,0): 100, 106, 106, (195,555,0): 101, 110, 109, (195,556,0): 107, 112, 115, (195,557,0): 107, 115, 117, (195,558,0): 108, 116, 118, (195,559,0): 108, 116, 118, (195,560,0): 108, 116, 119, (195,561,0): 108, 118, 120, (195,562,0): 110, 117, 123, (195,563,0): 111, 120, 125, (195,564,0): 112, 121, 128, (195,565,0): 113, 124, 130, (195,566,0): 114, 124, 134, (195,567,0): 113, 126, 135, (195,568,0): 115, 127, 139, (195,569,0): 113, 127, 140, (195,570,0): 111, 124, 140, (195,571,0): 108, 124, 140, (195,572,0): 106, 121, 140, (195,573,0): 106, 121, 140, (195,574,0): 107, 122, 141, (195,575,0): 109, 122, 139, (195,576,0): 112, 119, 135, (195,577,0): 113, 119, 131, (195,578,0): 114, 120, 132, (195,579,0): 114, 120, 132, (195,580,0): 114, 120, 132, (195,581,0): 113, 119, 131, (195,582,0): 112, 118, 130, (195,583,0): 112, 118, 130, (195,584,0): 113, 119, 131, (195,585,0): 113, 119, 131, (195,586,0): 112, 118, 130, (195,587,0): 111, 117, 129, (195,588,0): 108, 114, 126, (195,589,0): 105, 111, 123, (195,590,0): 102, 108, 120, (195,591,0): 101, 107, 119, (195,592,0): 96, 100, 109, (195,593,0): 93, 98, 104, (195,594,0): 91, 94, 101, (195,595,0): 89, 92, 97, (195,596,0): 90, 91, 95, (195,597,0): 89, 89, 91, (195,598,0): 86, 84, 87, (195,599,0): 82, 80, 81, (196,0,0): 40, 28, 38, (196,1,0): 41, 29, 39, (196,2,0): 41, 29, 39, (196,3,0): 41, 29, 39, (196,4,0): 42, 30, 40, (196,5,0): 43, 31, 41, (196,6,0): 43, 31, 41, (196,7,0): 43, 31, 41, (196,8,0): 42, 30, 40, (196,9,0): 42, 30, 40, (196,10,0): 43, 31, 41, (196,11,0): 43, 31, 41, (196,12,0): 44, 32, 42, (196,13,0): 44, 32, 42, (196,14,0): 45, 33, 43, (196,15,0): 44, 34, 43, (196,16,0): 44, 34, 43, (196,17,0): 42, 35, 43, (196,18,0): 42, 35, 43, (196,19,0): 42, 35, 43, (196,20,0): 44, 34, 43, (196,21,0): 44, 34, 43, (196,22,0): 44, 34, 43, (196,23,0): 44, 34, 43, (196,24,0): 45, 33, 43, (196,25,0): 45, 33, 43, (196,26,0): 47, 34, 44, (196,27,0): 47, 34, 44, (196,28,0): 48, 35, 45, (196,29,0): 48, 35, 45, (196,30,0): 51, 35, 46, (196,31,0): 51, 35, 46, (196,32,0): 49, 36, 45, (196,33,0): 49, 36, 45, (196,34,0): 51, 35, 45, (196,35,0): 51, 35, 45, (196,36,0): 51, 35, 45, (196,37,0): 51, 35, 45, (196,38,0): 52, 35, 45, (196,39,0): 52, 35, 45, (196,40,0): 54, 34, 45, (196,41,0): 54, 34, 45, (196,42,0): 55, 35, 46, (196,43,0): 55, 35, 46, (196,44,0): 57, 35, 47, (196,45,0): 57, 35, 47, (196,46,0): 58, 36, 48, (196,47,0): 58, 36, 48, (196,48,0): 57, 37, 48, (196,49,0): 57, 37, 48, (196,50,0): 58, 36, 48, (196,51,0): 58, 36, 48, (196,52,0): 58, 37, 46, (196,53,0): 58, 37, 46, (196,54,0): 59, 36, 44, (196,55,0): 59, 36, 44, (196,56,0): 61, 35, 44, (196,57,0): 61, 35, 44, (196,58,0): 61, 36, 42, (196,59,0): 62, 37, 43, (196,60,0): 63, 36, 41, (196,61,0): 64, 37, 42, (196,62,0): 65, 38, 43, (196,63,0): 65, 38, 43, (196,64,0): 64, 35, 40, (196,65,0): 64, 35, 40, (196,66,0): 64, 35, 39, (196,67,0): 65, 36, 40, (196,68,0): 66, 35, 40, (196,69,0): 67, 36, 41, (196,70,0): 67, 37, 39, (196,71,0): 68, 38, 40, (196,72,0): 68, 36, 37, (196,73,0): 68, 36, 37, (196,74,0): 70, 36, 37, (196,75,0): 70, 36, 37, (196,76,0): 70, 36, 35, (196,77,0): 70, 36, 35, (196,78,0): 71, 35, 35, (196,79,0): 71, 35, 35, (196,80,0): 73, 37, 39, (196,81,0): 73, 37, 41, (196,82,0): 76, 37, 40, (196,83,0): 77, 37, 38, (196,84,0): 79, 37, 38, (196,85,0): 82, 38, 39, (196,86,0): 85, 37, 37, (196,87,0): 86, 38, 38, (196,88,0): 90, 40, 41, (196,89,0): 90, 40, 41, (196,90,0): 90, 40, 43, (196,91,0): 87, 38, 41, (196,92,0): 85, 36, 40, (196,93,0): 80, 33, 39, (196,94,0): 77, 30, 38, (196,95,0): 72, 29, 36, (196,96,0): 71, 31, 39, (196,97,0): 68, 33, 39, (196,98,0): 65, 33, 38, (196,99,0): 64, 32, 37, (196,100,0): 63, 31, 36, (196,101,0): 62, 30, 35, (196,102,0): 60, 29, 34, (196,103,0): 60, 29, 34, (196,104,0): 57, 28, 32, (196,105,0): 57, 28, 32, (196,106,0): 57, 28, 32, (196,107,0): 56, 27, 31, (196,108,0): 52, 26, 29, (196,109,0): 50, 24, 27, (196,110,0): 48, 22, 25, (196,111,0): 43, 21, 24, (196,112,0): 34, 15, 21, (196,113,0): 30, 15, 22, (196,114,0): 29, 14, 21, (196,115,0): 28, 13, 20, (196,116,0): 28, 13, 20, (196,117,0): 28, 13, 20, (196,118,0): 29, 14, 21, (196,119,0): 29, 14, 21, (196,120,0): 32, 17, 24, (196,121,0): 32, 17, 24, (196,122,0): 33, 18, 25, (196,123,0): 33, 18, 25, (196,124,0): 34, 19, 26, (196,125,0): 35, 20, 27, (196,126,0): 35, 20, 27, (196,127,0): 36, 19, 25, (196,128,0): 44, 25, 27, (196,129,0): 45, 25, 26, (196,130,0): 45, 25, 26, (196,131,0): 44, 24, 25, (196,132,0): 44, 24, 25, (196,133,0): 45, 25, 26, (196,134,0): 45, 25, 26, (196,135,0): 45, 25, 26, (196,136,0): 45, 25, 26, (196,137,0): 45, 25, 26, (196,138,0): 45, 25, 26, (196,139,0): 45, 25, 26, (196,140,0): 45, 25, 26, (196,141,0): 45, 25, 26, (196,142,0): 45, 25, 26, (196,143,0): 45, 25, 26, (196,144,0): 47, 24, 30, (196,145,0): 47, 24, 30, (196,146,0): 47, 25, 28, (196,147,0): 47, 25, 28, (196,148,0): 47, 25, 28, (196,149,0): 47, 25, 28, (196,150,0): 47, 25, 27, (196,151,0): 47, 25, 27, (196,152,0): 47, 26, 25, (196,153,0): 47, 26, 25, (196,154,0): 48, 27, 26, (196,155,0): 48, 27, 26, (196,156,0): 49, 28, 25, (196,157,0): 49, 28, 25, (196,158,0): 50, 29, 26, (196,159,0): 50, 29, 26, (196,160,0): 50, 29, 26, (196,161,0): 50, 29, 26, (196,162,0): 50, 29, 26, (196,163,0): 50, 29, 26, (196,164,0): 50, 29, 26, (196,165,0): 50, 29, 26, (196,166,0): 50, 29, 26, (196,167,0): 50, 29, 26, (196,168,0): 48, 27, 24, (196,169,0): 47, 26, 23, (196,170,0): 46, 25, 22, (196,171,0): 45, 24, 21, (196,172,0): 44, 23, 20, (196,173,0): 45, 24, 21, (196,174,0): 46, 25, 22, (196,175,0): 46, 25, 22, (196,176,0): 45, 26, 22, (196,177,0): 45, 26, 22, (196,178,0): 45, 26, 22, (196,179,0): 45, 26, 22, (196,180,0): 45, 26, 22, (196,181,0): 45, 26, 22, (196,182,0): 45, 26, 22, (196,183,0): 45, 26, 22, (196,184,0): 46, 27, 23, (196,185,0): 46, 27, 23, (196,186,0): 46, 27, 23, (196,187,0): 46, 27, 23, (196,188,0): 46, 27, 23, (196,189,0): 46, 27, 23, (196,190,0): 46, 27, 23, (196,191,0): 46, 27, 23, (196,192,0): 48, 27, 22, (196,193,0): 48, 27, 22, (196,194,0): 48, 27, 22, (196,195,0): 48, 27, 22, (196,196,0): 48, 27, 22, (196,197,0): 48, 27, 22, (196,198,0): 48, 27, 22, (196,199,0): 48, 27, 22, (196,200,0): 49, 28, 23, (196,201,0): 49, 28, 23, (196,202,0): 49, 28, 23, (196,203,0): 49, 28, 23, (196,204,0): 49, 28, 23, (196,205,0): 49, 28, 23, (196,206,0): 49, 28, 23, (196,207,0): 49, 29, 22, (196,208,0): 51, 26, 21, (196,209,0): 51, 26, 19, (196,210,0): 49, 24, 17, (196,211,0): 49, 24, 17, (196,212,0): 49, 24, 17, (196,213,0): 49, 24, 17, (196,214,0): 51, 26, 19, (196,215,0): 51, 26, 19, (196,216,0): 53, 28, 21, (196,217,0): 53, 28, 21, (196,218,0): 53, 28, 21, (196,219,0): 53, 28, 21, (196,220,0): 53, 28, 21, (196,221,0): 53, 28, 21, (196,222,0): 53, 28, 21, (196,223,0): 53, 28, 21, (196,224,0): 56, 29, 22, (196,225,0): 56, 29, 22, (196,226,0): 56, 27, 19, (196,227,0): 57, 29, 18, (196,228,0): 59, 31, 17, (196,229,0): 61, 34, 17, (196,230,0): 65, 37, 16, (196,231,0): 66, 38, 16, (196,232,0): 77, 46, 25, (196,233,0): 77, 47, 23, (196,234,0): 77, 46, 25, (196,235,0): 77, 46, 25, (196,236,0): 78, 46, 25, (196,237,0): 78, 46, 25, (196,238,0): 78, 46, 25, (196,239,0): 78, 46, 25, (196,240,0): 76, 46, 20, (196,241,0): 75, 45, 17, (196,242,0): 72, 45, 18, (196,243,0): 71, 43, 19, (196,244,0): 70, 42, 18, (196,245,0): 68, 40, 18, (196,246,0): 66, 39, 18, (196,247,0): 66, 39, 20, (196,248,0): 64, 38, 21, (196,249,0): 64, 38, 21, (196,250,0): 62, 36, 21, (196,251,0): 61, 35, 22, (196,252,0): 57, 33, 21, (196,253,0): 55, 31, 19, (196,254,0): 54, 30, 20, (196,255,0): 52, 30, 19, (196,256,0): 53, 30, 22, (196,257,0): 51, 31, 24, (196,258,0): 50, 30, 23, (196,259,0): 50, 30, 23, (196,260,0): 52, 29, 23, (196,261,0): 53, 30, 24, (196,262,0): 56, 31, 26, (196,263,0): 57, 32, 27, (196,264,0): 56, 31, 26, (196,265,0): 57, 32, 27, (196,266,0): 60, 32, 28, (196,267,0): 59, 31, 27, (196,268,0): 59, 30, 26, (196,269,0): 61, 32, 28, (196,270,0): 66, 36, 34, (196,271,0): 71, 42, 36, (196,272,0): 73, 46, 35, (196,273,0): 73, 47, 34, (196,274,0): 74, 48, 35, (196,275,0): 76, 50, 35, (196,276,0): 77, 51, 36, (196,277,0): 79, 53, 36, (196,278,0): 80, 55, 35, (196,279,0): 80, 55, 33, (196,280,0): 81, 56, 34, (196,281,0): 81, 57, 33, (196,282,0): 82, 58, 32, (196,283,0): 82, 58, 32, (196,284,0): 83, 59, 31, (196,285,0): 83, 59, 31, (196,286,0): 84, 61, 30, (196,287,0): 84, 61, 30, (196,288,0): 82, 61, 34, (196,289,0): 82, 61, 34, (196,290,0): 83, 62, 35, (196,291,0): 83, 62, 35, (196,292,0): 83, 63, 38, (196,293,0): 84, 64, 39, (196,294,0): 84, 64, 39, (196,295,0): 85, 65, 40, (196,296,0): 82, 64, 40, (196,297,0): 83, 65, 41, (196,298,0): 82, 66, 43, (196,299,0): 84, 68, 45, (196,300,0): 85, 69, 46, (196,301,0): 86, 70, 47, (196,302,0): 85, 70, 49, (196,303,0): 86, 71, 48, (196,304,0): 89, 73, 48, (196,305,0): 90, 74, 48, (196,306,0): 90, 74, 48, (196,307,0): 91, 75, 49, (196,308,0): 94, 78, 52, (196,309,0): 96, 80, 54, (196,310,0): 99, 83, 57, (196,311,0): 101, 85, 59, (196,312,0): 103, 87, 61, (196,313,0): 103, 87, 61, (196,314,0): 105, 89, 63, (196,315,0): 106, 90, 64, (196,316,0): 108, 92, 66, (196,317,0): 109, 93, 67, (196,318,0): 110, 94, 68, (196,319,0): 110, 97, 65, (196,320,0): 112, 99, 64, (196,321,0): 114, 105, 64, (196,322,0): 121, 109, 71, (196,323,0): 122, 110, 72, (196,324,0): 126, 113, 71, (196,325,0): 140, 128, 78, (196,326,0): 163, 155, 92, (196,327,0): 184, 177, 105, (196,328,0): 193, 190, 109, (196,329,0): 189, 188, 105, (196,330,0): 184, 185, 105, (196,331,0): 180, 184, 107, (196,332,0): 177, 183, 111, (196,333,0): 177, 184, 116, (196,334,0): 178, 187, 120, (196,335,0): 180, 189, 122, (196,336,0): 178, 189, 120, (196,337,0): 177, 190, 120, (196,338,0): 177, 190, 120, (196,339,0): 176, 189, 120, (196,340,0): 176, 188, 122, (196,341,0): 175, 187, 123, (196,342,0): 174, 186, 122, (196,343,0): 174, 186, 122, (196,344,0): 169, 181, 119, (196,345,0): 169, 181, 117, (196,346,0): 168, 180, 116, (196,347,0): 167, 179, 113, (196,348,0): 168, 181, 112, (196,349,0): 170, 183, 113, (196,350,0): 172, 185, 115, (196,351,0): 174, 186, 114, (196,352,0): 178, 188, 117, (196,353,0): 174, 184, 113, (196,354,0): 171, 181, 110, (196,355,0): 171, 181, 108, (196,356,0): 173, 183, 110, (196,357,0): 174, 185, 109, (196,358,0): 173, 184, 106, (196,359,0): 171, 182, 104, (196,360,0): 177, 188, 109, (196,361,0): 178, 190, 108, (196,362,0): 179, 191, 109, (196,363,0): 179, 191, 107, (196,364,0): 179, 191, 107, (196,365,0): 179, 191, 105, (196,366,0): 180, 192, 106, (196,367,0): 180, 193, 105, (196,368,0): 181, 194, 102, (196,369,0): 186, 202, 104, (196,370,0): 194, 208, 111, (196,371,0): 199, 216, 114, (196,372,0): 204, 219, 116, (196,373,0): 205, 223, 115, (196,374,0): 208, 224, 115, (196,375,0): 209, 227, 115, (196,376,0): 205, 222, 110, (196,377,0): 203, 222, 107, (196,378,0): 203, 220, 106, (196,379,0): 201, 220, 105, (196,380,0): 203, 220, 108, (196,381,0): 205, 223, 111, (196,382,0): 210, 226, 117, (196,383,0): 212, 230, 118, (196,384,0): 221, 240, 124, (196,385,0): 220, 241, 122, (196,386,0): 218, 239, 118, (196,387,0): 215, 237, 113, (196,388,0): 214, 236, 112, (196,389,0): 216, 241, 114, (196,390,0): 226, 248, 122, (196,391,0): 233, 255, 129, (196,392,0): 235, 255, 132, (196,393,0): 236, 255, 135, (196,394,0): 240, 255, 138, (196,395,0): 243, 255, 142, (196,396,0): 246, 255, 144, (196,397,0): 249, 255, 148, (196,398,0): 253, 255, 151, (196,399,0): 254, 255, 154, (196,400,0): 255, 255, 155, (196,401,0): 255, 255, 155, (196,402,0): 255, 255, 157, (196,403,0): 255, 255, 159, (196,404,0): 255, 254, 161, (196,405,0): 255, 254, 162, (196,406,0): 255, 254, 164, (196,407,0): 255, 254, 164, (196,408,0): 255, 254, 167, (196,409,0): 255, 254, 167, (196,410,0): 255, 254, 167, (196,411,0): 255, 255, 165, (196,412,0): 255, 255, 165, (196,413,0): 255, 255, 163, (196,414,0): 255, 255, 163, (196,415,0): 255, 255, 163, (196,416,0): 254, 255, 162, (196,417,0): 254, 255, 162, (196,418,0): 254, 254, 164, (196,419,0): 254, 254, 164, (196,420,0): 255, 254, 164, (196,421,0): 255, 254, 164, (196,422,0): 255, 253, 166, (196,423,0): 255, 253, 166, (196,424,0): 253, 253, 165, (196,425,0): 251, 254, 167, (196,426,0): 249, 253, 166, (196,427,0): 248, 254, 166, (196,428,0): 244, 254, 167, (196,429,0): 242, 255, 167, (196,430,0): 240, 254, 166, (196,431,0): 237, 255, 167, (196,432,0): 231, 254, 166, (196,433,0): 227, 253, 166, (196,434,0): 223, 249, 162, (196,435,0): 219, 247, 162, (196,436,0): 215, 244, 160, (196,437,0): 207, 239, 156, (196,438,0): 199, 230, 150, (196,439,0): 192, 225, 146, (196,440,0): 188, 220, 144, (196,441,0): 188, 218, 144, (196,442,0): 188, 218, 146, (196,443,0): 191, 218, 149, (196,444,0): 193, 218, 152, (196,445,0): 193, 215, 150, (196,446,0): 188, 210, 146, (196,447,0): 182, 206, 146, (196,448,0): 173, 201, 143, (196,449,0): 168, 197, 143, (196,450,0): 166, 193, 140, (196,451,0): 169, 196, 145, (196,452,0): 174, 198, 148, (196,453,0): 174, 196, 149, (196,454,0): 169, 188, 142, (196,455,0): 164, 179, 136, (196,456,0): 162, 174, 134, (196,457,0): 157, 167, 130, (196,458,0): 150, 158, 121, (196,459,0): 141, 147, 113, (196,460,0): 135, 138, 107, (196,461,0): 132, 135, 104, (196,462,0): 131, 134, 103, (196,463,0): 131, 134, 105, (196,464,0): 133, 136, 107, (196,465,0): 135, 138, 109, (196,466,0): 136, 139, 110, (196,467,0): 135, 138, 109, (196,468,0): 131, 134, 107, (196,469,0): 123, 127, 100, (196,470,0): 116, 120, 95, (196,471,0): 111, 117, 91, (196,472,0): 117, 123, 97, (196,473,0): 120, 126, 100, (196,474,0): 124, 129, 106, (196,475,0): 123, 131, 107, (196,476,0): 123, 131, 108, (196,477,0): 123, 133, 109, (196,478,0): 126, 136, 112, (196,479,0): 129, 139, 115, (196,480,0): 132, 144, 124, (196,481,0): 133, 146, 128, (196,482,0): 135, 148, 130, (196,483,0): 136, 151, 132, (196,484,0): 136, 153, 134, (196,485,0): 137, 156, 137, (196,486,0): 138, 157, 138, (196,487,0): 137, 158, 139, (196,488,0): 128, 149, 132, (196,489,0): 128, 149, 132, (196,490,0): 130, 146, 133, (196,491,0): 130, 146, 133, (196,492,0): 132, 146, 133, (196,493,0): 132, 146, 133, (196,494,0): 133, 143, 132, (196,495,0): 133, 143, 134, (196,496,0): 135, 140, 134, (196,497,0): 133, 138, 134, (196,498,0): 128, 133, 127, (196,499,0): 122, 127, 121, (196,500,0): 118, 120, 115, (196,501,0): 112, 114, 109, (196,502,0): 110, 109, 104, (196,503,0): 108, 107, 102, (196,504,0): 104, 101, 94, (196,505,0): 101, 98, 91, (196,506,0): 98, 91, 85, (196,507,0): 93, 86, 80, (196,508,0): 92, 83, 76, (196,509,0): 92, 83, 76, (196,510,0): 94, 85, 78, (196,511,0): 95, 86, 79, (196,512,0): 95, 88, 78, (196,513,0): 95, 88, 78, (196,514,0): 93, 89, 78, (196,515,0): 94, 90, 79, (196,516,0): 96, 92, 80, (196,517,0): 99, 95, 83, (196,518,0): 100, 98, 85, (196,519,0): 102, 100, 85, (196,520,0): 102, 103, 87, (196,521,0): 105, 106, 88, (196,522,0): 109, 110, 92, (196,523,0): 110, 111, 93, (196,524,0): 108, 111, 92, (196,525,0): 108, 111, 90, (196,526,0): 110, 113, 92, (196,527,0): 111, 116, 94, (196,528,0): 111, 120, 101, (196,529,0): 108, 119, 102, (196,530,0): 108, 117, 100, (196,531,0): 107, 116, 99, (196,532,0): 107, 116, 99, (196,533,0): 107, 115, 100, (196,534,0): 109, 115, 101, (196,535,0): 110, 116, 102, (196,536,0): 114, 117, 106, (196,537,0): 114, 117, 106, (196,538,0): 113, 116, 107, (196,539,0): 110, 113, 104, (196,540,0): 107, 108, 100, (196,541,0): 103, 104, 96, (196,542,0): 99, 100, 92, (196,543,0): 96, 97, 91, (196,544,0): 98, 99, 94, (196,545,0): 98, 98, 96, (196,546,0): 100, 99, 97, (196,547,0): 99, 99, 97, (196,548,0): 99, 99, 97, (196,549,0): 97, 97, 95, (196,550,0): 96, 96, 96, (196,551,0): 94, 96, 95, (196,552,0): 98, 99, 101, (196,553,0): 98, 102, 103, (196,554,0): 101, 105, 108, (196,555,0): 104, 109, 112, (196,556,0): 109, 113, 116, (196,557,0): 110, 115, 118, (196,558,0): 112, 117, 120, (196,559,0): 112, 117, 120, (196,560,0): 112, 117, 121, (196,561,0): 111, 118, 124, (196,562,0): 114, 119, 125, (196,563,0): 113, 120, 126, (196,564,0): 114, 121, 129, (196,565,0): 114, 123, 130, (196,566,0): 114, 122, 133, (196,567,0): 114, 124, 134, (196,568,0): 116, 126, 138, (196,569,0): 115, 124, 139, (196,570,0): 113, 122, 139, (196,571,0): 109, 121, 137, (196,572,0): 108, 119, 137, (196,573,0): 107, 120, 137, (196,574,0): 107, 120, 137, (196,575,0): 108, 119, 137, (196,576,0): 110, 117, 133, (196,577,0): 111, 119, 132, (196,578,0): 112, 120, 133, (196,579,0): 114, 122, 135, (196,580,0): 114, 122, 135, (196,581,0): 113, 121, 134, (196,582,0): 112, 120, 133, (196,583,0): 111, 119, 132, (196,584,0): 111, 119, 132, (196,585,0): 111, 119, 132, (196,586,0): 111, 119, 132, (196,587,0): 110, 118, 131, (196,588,0): 108, 116, 129, (196,589,0): 105, 113, 126, (196,590,0): 103, 111, 124, (196,591,0): 101, 109, 120, (196,592,0): 96, 103, 113, (196,593,0): 93, 100, 108, (196,594,0): 90, 94, 103, (196,595,0): 89, 92, 99, (196,596,0): 91, 92, 97, (196,597,0): 89, 90, 94, (196,598,0): 86, 85, 90, (196,599,0): 83, 83, 85, (197,0,0): 40, 28, 38, (197,1,0): 40, 28, 38, (197,2,0): 40, 28, 38, (197,3,0): 41, 29, 39, (197,4,0): 41, 29, 39, (197,5,0): 42, 30, 40, (197,6,0): 42, 30, 40, (197,7,0): 43, 31, 41, (197,8,0): 42, 30, 40, (197,9,0): 42, 30, 40, (197,10,0): 43, 31, 41, (197,11,0): 43, 31, 41, (197,12,0): 44, 32, 42, (197,13,0): 44, 32, 42, (197,14,0): 45, 33, 43, (197,15,0): 44, 34, 43, (197,16,0): 44, 34, 43, (197,17,0): 42, 35, 43, (197,18,0): 42, 35, 43, (197,19,0): 42, 35, 43, (197,20,0): 44, 34, 43, (197,21,0): 44, 34, 43, (197,22,0): 44, 34, 43, (197,23,0): 44, 34, 43, (197,24,0): 45, 33, 43, (197,25,0): 45, 33, 43, (197,26,0): 47, 34, 44, (197,27,0): 47, 34, 44, (197,28,0): 48, 35, 45, (197,29,0): 48, 35, 45, (197,30,0): 51, 35, 46, (197,31,0): 51, 35, 46, (197,32,0): 49, 36, 45, (197,33,0): 49, 36, 45, (197,34,0): 51, 35, 45, (197,35,0): 51, 35, 45, (197,36,0): 51, 35, 45, (197,37,0): 51, 35, 45, (197,38,0): 52, 35, 45, (197,39,0): 52, 35, 45, (197,40,0): 54, 34, 45, (197,41,0): 54, 34, 45, (197,42,0): 55, 35, 46, (197,43,0): 55, 35, 46, (197,44,0): 57, 35, 47, (197,45,0): 57, 35, 47, (197,46,0): 58, 36, 48, (197,47,0): 58, 36, 48, (197,48,0): 57, 37, 48, (197,49,0): 57, 37, 48, (197,50,0): 58, 36, 48, (197,51,0): 58, 36, 48, (197,52,0): 58, 37, 46, (197,53,0): 58, 37, 46, (197,54,0): 59, 36, 44, (197,55,0): 59, 36, 44, (197,56,0): 61, 35, 44, (197,57,0): 61, 35, 44, (197,58,0): 60, 35, 41, (197,59,0): 60, 35, 41, (197,60,0): 62, 35, 40, (197,61,0): 63, 36, 41, (197,62,0): 64, 37, 42, (197,63,0): 65, 38, 43, (197,64,0): 63, 34, 39, (197,65,0): 64, 35, 40, (197,66,0): 64, 35, 39, (197,67,0): 64, 35, 39, (197,68,0): 66, 35, 40, (197,69,0): 67, 36, 41, (197,70,0): 67, 37, 39, (197,71,0): 67, 37, 39, (197,72,0): 67, 35, 38, (197,73,0): 67, 35, 36, (197,74,0): 69, 35, 36, (197,75,0): 69, 35, 36, (197,76,0): 69, 35, 34, (197,77,0): 69, 35, 34, (197,78,0): 70, 34, 34, (197,79,0): 69, 35, 36, (197,80,0): 72, 37, 41, (197,81,0): 71, 36, 40, (197,82,0): 72, 36, 40, (197,83,0): 75, 36, 39, (197,84,0): 78, 36, 38, (197,85,0): 81, 37, 38, (197,86,0): 84, 38, 40, (197,87,0): 87, 39, 39, (197,88,0): 90, 40, 41, (197,89,0): 90, 40, 41, (197,90,0): 90, 40, 43, (197,91,0): 89, 38, 43, (197,92,0): 87, 36, 43, (197,93,0): 83, 34, 40, (197,94,0): 81, 31, 40, (197,95,0): 76, 31, 38, (197,96,0): 72, 32, 40, (197,97,0): 68, 33, 39, (197,98,0): 65, 33, 38, (197,99,0): 64, 32, 37, (197,100,0): 63, 31, 36, (197,101,0): 62, 30, 35, (197,102,0): 60, 29, 34, (197,103,0): 60, 29, 34, (197,104,0): 57, 28, 32, (197,105,0): 57, 28, 32, (197,106,0): 57, 28, 32, (197,107,0): 57, 28, 32, (197,108,0): 53, 27, 30, (197,109,0): 51, 25, 28, (197,110,0): 48, 22, 25, (197,111,0): 46, 21, 25, (197,112,0): 35, 16, 22, (197,113,0): 31, 16, 23, (197,114,0): 30, 15, 22, (197,115,0): 29, 14, 21, (197,116,0): 29, 14, 21, (197,117,0): 29, 14, 21, (197,118,0): 30, 15, 22, (197,119,0): 31, 16, 23, (197,120,0): 32, 17, 24, (197,121,0): 33, 18, 25, (197,122,0): 33, 18, 25, (197,123,0): 34, 19, 26, (197,124,0): 35, 20, 27, (197,125,0): 36, 21, 28, (197,126,0): 36, 21, 28, (197,127,0): 38, 21, 27, (197,128,0): 45, 26, 28, (197,129,0): 46, 26, 27, (197,130,0): 45, 25, 26, (197,131,0): 44, 24, 25, (197,132,0): 44, 24, 25, (197,133,0): 45, 25, 26, (197,134,0): 46, 26, 27, (197,135,0): 46, 26, 27, (197,136,0): 45, 25, 26, (197,137,0): 45, 25, 26, (197,138,0): 45, 25, 26, (197,139,0): 45, 25, 26, (197,140,0): 45, 25, 26, (197,141,0): 45, 25, 26, (197,142,0): 45, 25, 26, (197,143,0): 45, 25, 26, (197,144,0): 48, 25, 31, (197,145,0): 48, 25, 31, (197,146,0): 48, 26, 29, (197,147,0): 48, 26, 29, (197,148,0): 48, 26, 29, (197,149,0): 48, 26, 29, (197,150,0): 48, 26, 28, (197,151,0): 48, 26, 28, (197,152,0): 47, 26, 25, (197,153,0): 47, 26, 25, (197,154,0): 48, 27, 26, (197,155,0): 48, 27, 26, (197,156,0): 49, 28, 25, (197,157,0): 49, 28, 25, (197,158,0): 50, 29, 26, (197,159,0): 50, 29, 26, (197,160,0): 49, 28, 25, (197,161,0): 49, 28, 25, (197,162,0): 49, 28, 25, (197,163,0): 49, 28, 25, (197,164,0): 49, 28, 25, (197,165,0): 49, 28, 25, (197,166,0): 49, 28, 25, (197,167,0): 49, 28, 25, (197,168,0): 48, 27, 24, (197,169,0): 47, 26, 23, (197,170,0): 46, 25, 22, (197,171,0): 45, 24, 21, (197,172,0): 45, 24, 21, (197,173,0): 46, 25, 22, (197,174,0): 47, 26, 23, (197,175,0): 47, 26, 23, (197,176,0): 45, 26, 22, (197,177,0): 45, 26, 22, (197,178,0): 45, 26, 22, (197,179,0): 45, 26, 22, (197,180,0): 45, 26, 22, (197,181,0): 45, 26, 22, (197,182,0): 45, 26, 22, (197,183,0): 45, 26, 22, (197,184,0): 46, 27, 23, (197,185,0): 46, 27, 23, (197,186,0): 46, 27, 23, (197,187,0): 46, 27, 23, (197,188,0): 46, 27, 23, (197,189,0): 46, 27, 23, (197,190,0): 46, 27, 23, (197,191,0): 46, 27, 23, (197,192,0): 48, 27, 22, (197,193,0): 48, 27, 22, (197,194,0): 48, 27, 22, (197,195,0): 48, 27, 22, (197,196,0): 48, 27, 22, (197,197,0): 48, 27, 22, (197,198,0): 48, 27, 22, (197,199,0): 48, 27, 22, (197,200,0): 49, 28, 23, (197,201,0): 49, 28, 23, (197,202,0): 49, 28, 23, (197,203,0): 49, 28, 23, (197,204,0): 49, 28, 23, (197,205,0): 49, 28, 23, (197,206,0): 49, 28, 23, (197,207,0): 49, 29, 22, (197,208,0): 51, 26, 21, (197,209,0): 51, 26, 19, (197,210,0): 49, 24, 17, (197,211,0): 49, 24, 17, (197,212,0): 49, 24, 17, (197,213,0): 49, 24, 17, (197,214,0): 51, 26, 19, (197,215,0): 51, 26, 19, (197,216,0): 54, 29, 22, (197,217,0): 54, 29, 22, (197,218,0): 54, 29, 22, (197,219,0): 54, 29, 22, (197,220,0): 54, 29, 22, (197,221,0): 54, 29, 22, (197,222,0): 54, 29, 22, (197,223,0): 54, 29, 22, (197,224,0): 58, 31, 24, (197,225,0): 57, 30, 21, (197,226,0): 57, 29, 18, (197,227,0): 57, 29, 17, (197,228,0): 59, 32, 15, (197,229,0): 62, 35, 16, (197,230,0): 66, 38, 16, (197,231,0): 68, 40, 16, (197,232,0): 79, 49, 25, (197,233,0): 79, 49, 23, (197,234,0): 79, 49, 25, (197,235,0): 79, 49, 23, (197,236,0): 80, 48, 25, (197,237,0): 80, 48, 25, (197,238,0): 80, 48, 25, (197,239,0): 80, 48, 23, (197,240,0): 77, 48, 18, (197,241,0): 77, 48, 16, (197,242,0): 74, 47, 17, (197,243,0): 74, 47, 18, (197,244,0): 73, 46, 19, (197,245,0): 72, 44, 20, (197,246,0): 70, 44, 21, (197,247,0): 70, 43, 22, (197,248,0): 66, 41, 21, (197,249,0): 65, 39, 22, (197,250,0): 63, 37, 22, (197,251,0): 61, 35, 20, (197,252,0): 57, 33, 21, (197,253,0): 55, 31, 19, (197,254,0): 54, 30, 20, (197,255,0): 52, 30, 19, (197,256,0): 53, 30, 22, (197,257,0): 50, 30, 23, (197,258,0): 49, 29, 22, (197,259,0): 49, 29, 22, (197,260,0): 52, 29, 23, (197,261,0): 53, 30, 24, (197,262,0): 55, 30, 25, (197,263,0): 56, 31, 26, (197,264,0): 56, 31, 26, (197,265,0): 58, 33, 28, (197,266,0): 60, 32, 28, (197,267,0): 60, 32, 28, (197,268,0): 60, 31, 27, (197,269,0): 62, 33, 27, (197,270,0): 67, 38, 32, (197,271,0): 71, 42, 34, (197,272,0): 75, 49, 36, (197,273,0): 75, 49, 34, (197,274,0): 76, 50, 35, (197,275,0): 77, 51, 34, (197,276,0): 78, 52, 35, (197,277,0): 79, 54, 34, (197,278,0): 80, 55, 35, (197,279,0): 81, 56, 34, (197,280,0): 82, 58, 34, (197,281,0): 83, 59, 35, (197,282,0): 83, 59, 33, (197,283,0): 83, 59, 33, (197,284,0): 84, 60, 32, (197,285,0): 85, 61, 33, (197,286,0): 85, 62, 31, (197,287,0): 85, 61, 33, (197,288,0): 83, 62, 33, (197,289,0): 83, 62, 35, (197,290,0): 84, 63, 36, (197,291,0): 85, 64, 37, (197,292,0): 85, 65, 40, (197,293,0): 86, 66, 41, (197,294,0): 87, 67, 42, (197,295,0): 87, 67, 42, (197,296,0): 83, 65, 41, (197,297,0): 84, 66, 42, (197,298,0): 83, 67, 44, (197,299,0): 85, 69, 46, (197,300,0): 86, 70, 47, (197,301,0): 87, 71, 48, (197,302,0): 86, 71, 50, (197,303,0): 87, 72, 49, (197,304,0): 89, 73, 48, (197,305,0): 89, 73, 47, (197,306,0): 90, 74, 48, (197,307,0): 91, 75, 49, (197,308,0): 93, 77, 51, (197,309,0): 96, 80, 54, (197,310,0): 98, 82, 56, (197,311,0): 100, 84, 58, (197,312,0): 102, 86, 60, (197,313,0): 102, 86, 60, (197,314,0): 104, 88, 62, (197,315,0): 105, 89, 63, (197,316,0): 107, 91, 65, (197,317,0): 108, 92, 66, (197,318,0): 109, 93, 67, (197,319,0): 109, 95, 66, (197,320,0): 111, 98, 63, (197,321,0): 111, 102, 63, (197,322,0): 117, 104, 69, (197,323,0): 120, 107, 72, (197,324,0): 123, 109, 72, (197,325,0): 132, 119, 74, (197,326,0): 152, 143, 86, (197,327,0): 172, 164, 99, (197,328,0): 191, 188, 111, (197,329,0): 189, 188, 106, (197,330,0): 185, 186, 106, (197,331,0): 181, 186, 106, (197,332,0): 178, 184, 110, (197,333,0): 177, 184, 114, (197,334,0): 177, 186, 119, (197,335,0): 177, 188, 122, (197,336,0): 177, 188, 120, (197,337,0): 176, 189, 120, (197,338,0): 177, 190, 121, (197,339,0): 177, 189, 123, (197,340,0): 176, 188, 124, (197,341,0): 175, 187, 125, (197,342,0): 174, 186, 124, (197,343,0): 173, 185, 123, (197,344,0): 168, 179, 119, (197,345,0): 167, 179, 117, (197,346,0): 166, 178, 116, (197,347,0): 166, 178, 114, (197,348,0): 167, 179, 113, (197,349,0): 169, 182, 113, (197,350,0): 172, 185, 116, (197,351,0): 174, 187, 117, (197,352,0): 179, 191, 119, (197,353,0): 176, 188, 114, (197,354,0): 173, 183, 110, (197,355,0): 171, 183, 107, (197,356,0): 174, 185, 109, (197,357,0): 173, 186, 107, (197,358,0): 173, 184, 105, (197,359,0): 170, 183, 101, (197,360,0): 178, 190, 106, (197,361,0): 179, 193, 108, (197,362,0): 182, 194, 108, (197,363,0): 182, 196, 109, (197,364,0): 182, 194, 108, (197,365,0): 182, 196, 108, (197,366,0): 185, 197, 111, (197,367,0): 186, 201, 110, (197,368,0): 185, 201, 103, (197,369,0): 189, 207, 105, (197,370,0): 197, 214, 110, (197,371,0): 203, 222, 115, (197,372,0): 208, 226, 118, (197,373,0): 208, 228, 117, (197,374,0): 209, 227, 115, (197,375,0): 207, 227, 112, (197,376,0): 211, 230, 115, (197,377,0): 208, 228, 113, (197,378,0): 205, 224, 109, (197,379,0): 199, 219, 106, (197,380,0): 197, 215, 103, (197,381,0): 197, 217, 106, (197,382,0): 202, 220, 110, (197,383,0): 205, 225, 112, (197,384,0): 220, 241, 122, (197,385,0): 221, 245, 121, (197,386,0): 223, 247, 123, (197,387,0): 222, 247, 120, (197,388,0): 220, 245, 118, (197,389,0): 221, 246, 119, (197,390,0): 229, 251, 125, (197,391,0): 235, 255, 131, (197,392,0): 236, 255, 133, (197,393,0): 238, 255, 136, (197,394,0): 241, 255, 141, (197,395,0): 244, 255, 144, (197,396,0): 248, 255, 147, (197,397,0): 250, 255, 151, (197,398,0): 252, 255, 155, (197,399,0): 255, 255, 156, (197,400,0): 255, 255, 159, (197,401,0): 255, 255, 159, (197,402,0): 255, 254, 161, (197,403,0): 255, 254, 162, (197,404,0): 255, 254, 164, (197,405,0): 255, 253, 166, (197,406,0): 255, 253, 168, (197,407,0): 255, 253, 168, (197,408,0): 255, 255, 172, (197,409,0): 255, 255, 172, (197,410,0): 255, 255, 170, (197,411,0): 255, 255, 170, (197,412,0): 255, 255, 168, (197,413,0): 255, 255, 168, (197,414,0): 255, 255, 166, (197,415,0): 255, 255, 168, (197,416,0): 254, 254, 168, (197,417,0): 254, 254, 168, (197,418,0): 254, 254, 168, (197,419,0): 254, 254, 168, (197,420,0): 255, 253, 170, (197,421,0): 255, 253, 170, (197,422,0): 255, 253, 170, (197,423,0): 254, 253, 170, (197,424,0): 250, 252, 169, (197,425,0): 248, 252, 168, (197,426,0): 247, 252, 170, (197,427,0): 244, 253, 170, (197,428,0): 241, 253, 169, (197,429,0): 239, 253, 168, (197,430,0): 238, 253, 170, (197,431,0): 235, 255, 170, (197,432,0): 228, 252, 168, (197,433,0): 222, 250, 165, (197,434,0): 219, 247, 163, (197,435,0): 215, 244, 160, (197,436,0): 210, 242, 159, (197,437,0): 203, 236, 155, (197,438,0): 196, 229, 150, (197,439,0): 189, 223, 146, (197,440,0): 189, 221, 146, (197,441,0): 188, 220, 147, (197,442,0): 187, 218, 150, (197,443,0): 189, 218, 151, (197,444,0): 191, 217, 152, (197,445,0): 190, 214, 152, (197,446,0): 185, 209, 149, (197,447,0): 180, 204, 146, (197,448,0): 172, 199, 144, (197,449,0): 168, 196, 145, (197,450,0): 168, 195, 144, (197,451,0): 170, 196, 148, (197,452,0): 174, 198, 150, (197,453,0): 173, 195, 149, (197,454,0): 170, 189, 144, (197,455,0): 165, 182, 140, (197,456,0): 161, 176, 137, (197,457,0): 159, 171, 135, (197,458,0): 152, 162, 127, (197,459,0): 146, 153, 120, (197,460,0): 142, 147, 115, (197,461,0): 139, 144, 114, (197,462,0): 139, 144, 114, (197,463,0): 140, 145, 115, (197,464,0): 142, 145, 118, (197,465,0): 142, 147, 117, (197,466,0): 143, 146, 119, (197,467,0): 141, 145, 118, (197,468,0): 136, 140, 113, (197,469,0): 128, 134, 106, (197,470,0): 121, 127, 101, (197,471,0): 117, 123, 97, (197,472,0): 123, 129, 103, (197,473,0): 124, 132, 108, (197,474,0): 128, 136, 112, (197,475,0): 128, 138, 114, (197,476,0): 127, 137, 113, (197,477,0): 126, 136, 112, (197,478,0): 128, 138, 114, (197,479,0): 130, 139, 118, (197,480,0): 130, 141, 124, (197,481,0): 131, 144, 126, (197,482,0): 134, 147, 129, (197,483,0): 136, 151, 132, (197,484,0): 136, 153, 135, (197,485,0): 137, 156, 137, (197,486,0): 137, 156, 137, (197,487,0): 135, 156, 139, (197,488,0): 129, 150, 133, (197,489,0): 129, 150, 133, (197,490,0): 131, 147, 134, (197,491,0): 130, 146, 133, (197,492,0): 132, 146, 133, (197,493,0): 131, 144, 134, (197,494,0): 132, 142, 133, (197,495,0): 132, 142, 134, (197,496,0): 133, 138, 134, (197,497,0): 130, 135, 131, (197,498,0): 125, 130, 124, (197,499,0): 119, 124, 118, (197,500,0): 115, 117, 112, (197,501,0): 110, 112, 107, (197,502,0): 109, 108, 103, (197,503,0): 108, 107, 102, (197,504,0): 107, 104, 97, (197,505,0): 104, 101, 94, (197,506,0): 102, 95, 89, (197,507,0): 98, 91, 85, (197,508,0): 95, 86, 79, (197,509,0): 94, 85, 78, (197,510,0): 94, 85, 78, (197,511,0): 95, 86, 79, (197,512,0): 96, 89, 79, (197,513,0): 95, 88, 78, (197,514,0): 93, 89, 78, (197,515,0): 94, 90, 79, (197,516,0): 96, 92, 80, (197,517,0): 100, 96, 84, (197,518,0): 103, 101, 88, (197,519,0): 105, 103, 90, (197,520,0): 106, 107, 91, (197,521,0): 109, 110, 94, (197,522,0): 113, 114, 98, (197,523,0): 114, 115, 97, (197,524,0): 112, 115, 98, (197,525,0): 111, 114, 95, (197,526,0): 113, 116, 97, (197,527,0): 113, 118, 98, (197,528,0): 113, 122, 105, (197,529,0): 111, 120, 103, (197,530,0): 108, 117, 100, (197,531,0): 106, 115, 98, (197,532,0): 104, 112, 97, (197,533,0): 105, 113, 98, (197,534,0): 107, 113, 99, (197,535,0): 108, 114, 102, (197,536,0): 114, 117, 106, (197,537,0): 114, 117, 106, (197,538,0): 114, 117, 108, (197,539,0): 112, 115, 106, (197,540,0): 109, 110, 102, (197,541,0): 104, 105, 99, (197,542,0): 100, 101, 95, (197,543,0): 97, 98, 93, (197,544,0): 98, 97, 95, (197,545,0): 99, 98, 96, (197,546,0): 100, 99, 97, (197,547,0): 100, 99, 97, (197,548,0): 99, 98, 96, (197,549,0): 97, 97, 95, (197,550,0): 96, 96, 96, (197,551,0): 95, 95, 95, (197,552,0): 98, 98, 100, (197,553,0): 99, 100, 102, (197,554,0): 103, 104, 108, (197,555,0): 106, 110, 113, (197,556,0): 109, 113, 116, (197,557,0): 112, 116, 119, (197,558,0): 114, 118, 121, (197,559,0): 113, 118, 122, (197,560,0): 113, 118, 124, (197,561,0): 113, 118, 124, (197,562,0): 114, 119, 125, (197,563,0): 114, 119, 125, (197,564,0): 113, 120, 128, (197,565,0): 114, 121, 129, (197,566,0): 115, 122, 132, (197,567,0): 114, 122, 133, (197,568,0): 116, 122, 136, (197,569,0): 114, 122, 135, (197,570,0): 112, 119, 135, (197,571,0): 109, 118, 135, (197,572,0): 108, 117, 134, (197,573,0): 108, 117, 134, (197,574,0): 108, 116, 135, (197,575,0): 109, 118, 135, (197,576,0): 108, 115, 131, (197,577,0): 110, 118, 131, (197,578,0): 112, 120, 133, (197,579,0): 114, 122, 135, (197,580,0): 115, 123, 136, (197,581,0): 114, 122, 135, (197,582,0): 112, 120, 133, (197,583,0): 111, 119, 132, (197,584,0): 110, 118, 131, (197,585,0): 110, 118, 131, (197,586,0): 110, 118, 131, (197,587,0): 109, 117, 130, (197,588,0): 108, 116, 129, (197,589,0): 105, 113, 126, (197,590,0): 103, 111, 124, (197,591,0): 102, 110, 123, (197,592,0): 98, 104, 116, (197,593,0): 94, 101, 111, (197,594,0): 91, 95, 106, (197,595,0): 88, 92, 101, (197,596,0): 88, 91, 98, (197,597,0): 88, 89, 94, (197,598,0): 86, 85, 91, (197,599,0): 83, 82, 87, (198,0,0): 39, 27, 37, (198,1,0): 40, 28, 38, (198,2,0): 40, 28, 38, (198,3,0): 41, 29, 39, (198,4,0): 41, 29, 39, (198,5,0): 42, 30, 40, (198,6,0): 42, 30, 40, (198,7,0): 42, 30, 40, (198,8,0): 42, 30, 40, (198,9,0): 42, 30, 40, (198,10,0): 43, 31, 41, (198,11,0): 43, 31, 41, (198,12,0): 44, 32, 42, (198,13,0): 44, 32, 42, (198,14,0): 45, 33, 43, (198,15,0): 44, 34, 43, (198,16,0): 44, 34, 43, (198,17,0): 42, 35, 43, (198,18,0): 42, 35, 43, (198,19,0): 42, 35, 43, (198,20,0): 44, 34, 43, (198,21,0): 44, 34, 43, (198,22,0): 44, 34, 43, (198,23,0): 44, 34, 43, (198,24,0): 45, 33, 43, (198,25,0): 45, 33, 43, (198,26,0): 47, 34, 44, (198,27,0): 47, 34, 44, (198,28,0): 48, 35, 45, (198,29,0): 48, 35, 45, (198,30,0): 51, 35, 46, (198,31,0): 51, 35, 46, (198,32,0): 49, 36, 45, (198,33,0): 49, 36, 45, (198,34,0): 51, 35, 45, (198,35,0): 51, 35, 45, (198,36,0): 51, 35, 45, (198,37,0): 51, 35, 45, (198,38,0): 52, 35, 45, (198,39,0): 52, 35, 45, (198,40,0): 54, 34, 45, (198,41,0): 54, 34, 45, (198,42,0): 55, 35, 46, (198,43,0): 55, 35, 46, (198,44,0): 57, 35, 47, (198,45,0): 57, 35, 47, (198,46,0): 58, 36, 48, (198,47,0): 58, 36, 48, (198,48,0): 57, 37, 48, (198,49,0): 57, 37, 48, (198,50,0): 58, 36, 48, (198,51,0): 58, 36, 48, (198,52,0): 58, 37, 46, (198,53,0): 58, 37, 46, (198,54,0): 59, 36, 44, (198,55,0): 59, 36, 44, (198,56,0): 62, 36, 45, (198,57,0): 61, 35, 44, (198,58,0): 60, 35, 41, (198,59,0): 59, 34, 40, (198,60,0): 61, 34, 39, (198,61,0): 62, 35, 40, (198,62,0): 64, 37, 42, (198,63,0): 65, 38, 43, (198,64,0): 61, 34, 39, (198,65,0): 61, 34, 39, (198,66,0): 62, 35, 40, (198,67,0): 62, 35, 40, (198,68,0): 65, 36, 40, (198,69,0): 65, 36, 40, (198,70,0): 66, 35, 40, (198,71,0): 67, 37, 39, (198,72,0): 66, 36, 38, (198,73,0): 66, 36, 38, (198,74,0): 67, 35, 36, (198,75,0): 67, 35, 36, (198,76,0): 69, 35, 36, (198,77,0): 69, 35, 36, (198,78,0): 69, 35, 34, (198,79,0): 69, 35, 36, (198,80,0): 69, 37, 40, (198,81,0): 69, 37, 40, (198,82,0): 70, 35, 39, (198,83,0): 71, 35, 37, (198,84,0): 76, 36, 37, (198,85,0): 79, 37, 38, (198,86,0): 84, 38, 40, (198,87,0): 88, 39, 42, (198,88,0): 89, 39, 42, (198,89,0): 91, 39, 43, (198,90,0): 91, 38, 44, (198,91,0): 90, 37, 43, (198,92,0): 89, 36, 44, (198,93,0): 86, 35, 44, (198,94,0): 84, 32, 44, (198,95,0): 80, 33, 43, (198,96,0): 72, 32, 40, (198,97,0): 69, 34, 40, (198,98,0): 66, 34, 39, (198,99,0): 65, 33, 38, (198,100,0): 64, 32, 37, (198,101,0): 63, 31, 36, (198,102,0): 61, 30, 35, (198,103,0): 60, 29, 34, (198,104,0): 58, 29, 33, (198,105,0): 59, 30, 34, (198,106,0): 58, 29, 33, (198,107,0): 58, 29, 33, (198,108,0): 54, 28, 31, (198,109,0): 52, 26, 29, (198,110,0): 49, 23, 26, (198,111,0): 47, 22, 26, (198,112,0): 35, 16, 20, (198,113,0): 32, 15, 21, (198,114,0): 31, 14, 20, (198,115,0): 30, 13, 19, (198,116,0): 31, 14, 20, (198,117,0): 32, 15, 21, (198,118,0): 33, 16, 22, (198,119,0): 34, 17, 23, (198,120,0): 33, 16, 22, (198,121,0): 34, 17, 23, (198,122,0): 35, 18, 24, (198,123,0): 36, 19, 25, (198,124,0): 37, 20, 26, (198,125,0): 38, 21, 27, (198,126,0): 39, 22, 28, (198,127,0): 40, 24, 27, (198,128,0): 46, 27, 29, (198,129,0): 46, 26, 27, (198,130,0): 45, 25, 26, (198,131,0): 44, 24, 25, (198,132,0): 44, 24, 25, (198,133,0): 45, 25, 26, (198,134,0): 46, 26, 27, (198,135,0): 47, 27, 28, (198,136,0): 46, 26, 27, (198,137,0): 46, 26, 27, (198,138,0): 46, 26, 27, (198,139,0): 46, 26, 27, (198,140,0): 46, 26, 27, (198,141,0): 46, 26, 27, (198,142,0): 46, 26, 27, (198,143,0): 46, 26, 27, (198,144,0): 48, 25, 31, (198,145,0): 48, 25, 31, (198,146,0): 48, 26, 29, (198,147,0): 48, 26, 29, (198,148,0): 48, 26, 29, (198,149,0): 48, 26, 29, (198,150,0): 48, 26, 28, (198,151,0): 48, 26, 28, (198,152,0): 47, 26, 25, (198,153,0): 47, 26, 25, (198,154,0): 48, 27, 26, (198,155,0): 48, 27, 26, (198,156,0): 49, 28, 25, (198,157,0): 49, 28, 25, (198,158,0): 50, 29, 26, (198,159,0): 50, 29, 26, (198,160,0): 49, 28, 25, (198,161,0): 49, 28, 25, (198,162,0): 49, 28, 25, (198,163,0): 49, 28, 25, (198,164,0): 49, 28, 25, (198,165,0): 49, 28, 25, (198,166,0): 49, 28, 25, (198,167,0): 49, 28, 25, (198,168,0): 48, 27, 24, (198,169,0): 47, 26, 23, (198,170,0): 46, 25, 22, (198,171,0): 45, 24, 21, (198,172,0): 45, 24, 21, (198,173,0): 46, 25, 22, (198,174,0): 48, 27, 24, (198,175,0): 48, 27, 24, (198,176,0): 46, 25, 22, (198,177,0): 46, 25, 22, (198,178,0): 46, 25, 22, (198,179,0): 46, 25, 22, (198,180,0): 46, 25, 22, (198,181,0): 46, 25, 22, (198,182,0): 46, 25, 22, (198,183,0): 46, 25, 22, (198,184,0): 47, 26, 23, (198,185,0): 47, 26, 23, (198,186,0): 47, 26, 23, (198,187,0): 47, 26, 23, (198,188,0): 47, 26, 23, (198,189,0): 47, 26, 23, (198,190,0): 47, 26, 23, (198,191,0): 47, 26, 23, (198,192,0): 47, 26, 21, (198,193,0): 47, 26, 21, (198,194,0): 47, 26, 21, (198,195,0): 47, 26, 21, (198,196,0): 47, 26, 21, (198,197,0): 47, 26, 21, (198,198,0): 47, 26, 21, (198,199,0): 47, 26, 21, (198,200,0): 49, 28, 23, (198,201,0): 49, 28, 23, (198,202,0): 49, 28, 23, (198,203,0): 49, 28, 23, (198,204,0): 49, 28, 23, (198,205,0): 49, 28, 23, (198,206,0): 49, 28, 23, (198,207,0): 49, 29, 22, (198,208,0): 51, 26, 21, (198,209,0): 51, 26, 19, (198,210,0): 49, 24, 17, (198,211,0): 49, 24, 17, (198,212,0): 49, 24, 17, (198,213,0): 49, 24, 17, (198,214,0): 51, 26, 19, (198,215,0): 51, 26, 19, (198,216,0): 54, 29, 22, (198,217,0): 54, 29, 22, (198,218,0): 54, 29, 22, (198,219,0): 54, 29, 22, (198,220,0): 54, 29, 22, (198,221,0): 54, 29, 22, (198,222,0): 54, 29, 22, (198,223,0): 54, 29, 22, (198,224,0): 59, 32, 23, (198,225,0): 58, 31, 20, (198,226,0): 58, 30, 18, (198,227,0): 57, 29, 15, (198,228,0): 59, 32, 13, (198,229,0): 62, 35, 14, (198,230,0): 67, 39, 15, (198,231,0): 70, 43, 16, (198,232,0): 80, 50, 24, (198,233,0): 80, 50, 22, (198,234,0): 80, 50, 24, (198,235,0): 80, 50, 22, (198,236,0): 81, 49, 24, (198,237,0): 81, 49, 24, (198,238,0): 81, 49, 24, (198,239,0): 81, 50, 22, (198,240,0): 78, 49, 17, (198,241,0): 78, 49, 15, (198,242,0): 76, 50, 17, (198,243,0): 76, 50, 17, (198,244,0): 76, 49, 19, (198,245,0): 75, 48, 19, (198,246,0): 74, 48, 21, (198,247,0): 74, 48, 23, (198,248,0): 67, 42, 20, (198,249,0): 66, 41, 21, (198,250,0): 64, 38, 21, (198,251,0): 62, 36, 21, (198,252,0): 57, 33, 21, (198,253,0): 55, 31, 19, (198,254,0): 54, 30, 20, (198,255,0): 52, 30, 19, (198,256,0): 52, 29, 21, (198,257,0): 50, 30, 21, (198,258,0): 49, 29, 22, (198,259,0): 49, 29, 22, (198,260,0): 51, 27, 23, (198,261,0): 53, 29, 25, (198,262,0): 55, 30, 26, (198,263,0): 56, 31, 27, (198,264,0): 57, 32, 28, (198,265,0): 58, 33, 28, (198,266,0): 61, 33, 29, (198,267,0): 60, 33, 26, (198,268,0): 60, 31, 25, (198,269,0): 62, 33, 25, (198,270,0): 67, 39, 28, (198,271,0): 72, 44, 32, (198,272,0): 76, 50, 35, (198,273,0): 76, 50, 33, (198,274,0): 77, 51, 34, (198,275,0): 78, 53, 33, (198,276,0): 79, 54, 34, (198,277,0): 80, 55, 35, (198,278,0): 80, 55, 35, (198,279,0): 81, 56, 34, (198,280,0): 84, 60, 36, (198,281,0): 84, 60, 36, (198,282,0): 84, 60, 34, (198,283,0): 85, 61, 35, (198,284,0): 85, 61, 33, (198,285,0): 86, 62, 34, (198,286,0): 86, 62, 34, (198,287,0): 87, 63, 35, (198,288,0): 83, 62, 33, (198,289,0): 84, 63, 34, (198,290,0): 85, 64, 37, (198,291,0): 86, 65, 38, (198,292,0): 86, 66, 39, (198,293,0): 87, 67, 40, (198,294,0): 88, 68, 43, (198,295,0): 89, 69, 44, (198,296,0): 84, 66, 42, (198,297,0): 84, 66, 42, (198,298,0): 84, 68, 43, (198,299,0): 85, 69, 44, (198,300,0): 86, 70, 47, (198,301,0): 87, 71, 48, (198,302,0): 87, 72, 49, (198,303,0): 88, 73, 50, (198,304,0): 89, 73, 48, (198,305,0): 89, 73, 48, (198,306,0): 89, 73, 48, (198,307,0): 90, 74, 49, (198,308,0): 93, 77, 52, (198,309,0): 95, 79, 54, (198,310,0): 98, 82, 57, (198,311,0): 100, 84, 59, (198,312,0): 101, 85, 60, (198,313,0): 102, 86, 61, (198,314,0): 103, 87, 62, (198,315,0): 104, 88, 63, (198,316,0): 106, 90, 65, (198,317,0): 108, 92, 67, (198,318,0): 109, 93, 68, (198,319,0): 108, 94, 65, (198,320,0): 109, 96, 61, (198,321,0): 107, 98, 59, (198,322,0): 112, 99, 65, (198,323,0): 118, 105, 71, (198,324,0): 121, 107, 72, (198,325,0): 127, 113, 74, (198,326,0): 142, 132, 81, (198,327,0): 160, 151, 92, (198,328,0): 186, 182, 111, (198,329,0): 185, 183, 106, (198,330,0): 182, 183, 103, (198,331,0): 179, 184, 104, (198,332,0): 176, 183, 106, (198,333,0): 175, 182, 112, (198,334,0): 173, 182, 115, (198,335,0): 172, 183, 117, (198,336,0): 174, 185, 119, (198,337,0): 174, 186, 120, (198,338,0): 175, 187, 121, (198,339,0): 175, 187, 123, (198,340,0): 175, 187, 125, (198,341,0): 173, 184, 124, (198,342,0): 171, 182, 122, (198,343,0): 170, 181, 121, (198,344,0): 169, 180, 122, (198,345,0): 167, 178, 118, (198,346,0): 166, 177, 117, (198,347,0): 165, 177, 115, (198,348,0): 166, 178, 114, (198,349,0): 169, 181, 115, (198,350,0): 173, 185, 119, (198,351,0): 175, 188, 119, (198,352,0): 177, 190, 118, (198,353,0): 174, 188, 113, (198,354,0): 172, 184, 108, (198,355,0): 171, 185, 106, (198,356,0): 174, 187, 107, (198,357,0): 175, 190, 107, (198,358,0): 175, 189, 104, (198,359,0): 173, 189, 101, (198,360,0): 178, 192, 104, (198,361,0): 180, 196, 107, (198,362,0): 184, 199, 108, (198,363,0): 184, 201, 109, (198,364,0): 185, 200, 109, (198,365,0): 185, 202, 110, (198,366,0): 189, 203, 115, (198,367,0): 191, 208, 114, (198,368,0): 194, 212, 110, (198,369,0): 194, 216, 108, (198,370,0): 201, 220, 112, (198,371,0): 204, 226, 115, (198,372,0): 210, 230, 117, (198,373,0): 212, 235, 119, (198,374,0): 215, 235, 120, (198,375,0): 214, 237, 120, (198,376,0): 216, 237, 120, (198,377,0): 211, 234, 118, (198,378,0): 207, 227, 112, (198,379,0): 197, 220, 106, (198,380,0): 193, 213, 102, (198,381,0): 190, 212, 103, (198,382,0): 196, 215, 107, (198,383,0): 198, 221, 107, (198,384,0): 211, 236, 116, (198,385,0): 218, 244, 117, (198,386,0): 225, 251, 124, (198,387,0): 227, 254, 125, (198,388,0): 224, 251, 122, (198,389,0): 224, 249, 121, (198,390,0): 229, 251, 125, (198,391,0): 233, 255, 131, (198,392,0): 237, 255, 136, (198,393,0): 239, 255, 139, (198,394,0): 242, 255, 143, (198,395,0): 245, 255, 147, (198,396,0): 249, 255, 152, (198,397,0): 251, 255, 155, (198,398,0): 253, 255, 160, (198,399,0): 254, 255, 161, (198,400,0): 255, 255, 163, (198,401,0): 255, 255, 163, (198,402,0): 255, 255, 165, (198,403,0): 255, 255, 167, (198,404,0): 255, 255, 169, (198,405,0): 255, 254, 171, (198,406,0): 255, 254, 172, (198,407,0): 255, 254, 172, (198,408,0): 255, 255, 175, (198,409,0): 255, 255, 175, (198,410,0): 255, 255, 175, (198,411,0): 255, 255, 173, (198,412,0): 255, 255, 172, (198,413,0): 255, 255, 172, (198,414,0): 255, 255, 172, (198,415,0): 255, 255, 172, (198,416,0): 255, 254, 172, (198,417,0): 253, 255, 172, (198,418,0): 253, 255, 172, (198,419,0): 253, 255, 172, (198,420,0): 255, 254, 172, (198,421,0): 255, 254, 172, (198,422,0): 255, 254, 174, (198,423,0): 253, 254, 174, (198,424,0): 247, 250, 171, (198,425,0): 246, 251, 171, (198,426,0): 243, 252, 173, (198,427,0): 240, 251, 172, (198,428,0): 239, 252, 172, (198,429,0): 235, 253, 171, (198,430,0): 234, 253, 171, (198,431,0): 231, 253, 171, (198,432,0): 225, 250, 169, (198,433,0): 219, 248, 166, (198,434,0): 216, 245, 165, (198,435,0): 211, 242, 162, (198,436,0): 207, 240, 161, (198,437,0): 200, 234, 157, (198,438,0): 193, 227, 151, (198,439,0): 185, 221, 147, (198,440,0): 189, 222, 151, (198,441,0): 188, 221, 152, (198,442,0): 186, 218, 153, (198,443,0): 188, 218, 154, (198,444,0): 188, 216, 155, (198,445,0): 187, 213, 152, (198,446,0): 182, 207, 149, (198,447,0): 177, 202, 145, (198,448,0): 170, 197, 144, (198,449,0): 169, 197, 148, (198,450,0): 169, 197, 148, (198,451,0): 171, 197, 150, (198,452,0): 172, 195, 149, (198,453,0): 170, 193, 149, (198,454,0): 166, 187, 144, (198,455,0): 165, 183, 143, (198,456,0): 164, 180, 143, (198,457,0): 161, 175, 140, (198,458,0): 157, 168, 134, (198,459,0): 151, 160, 129, (198,460,0): 146, 155, 124, (198,461,0): 145, 151, 123, (198,462,0): 144, 150, 122, (198,463,0): 144, 150, 122, (198,464,0): 148, 152, 127, (198,465,0): 147, 153, 125, (198,466,0): 148, 152, 127, (198,467,0): 144, 150, 124, (198,468,0): 140, 146, 120, (198,469,0): 134, 140, 114, (198,470,0): 127, 132, 109, (198,471,0): 122, 130, 106, (198,472,0): 127, 135, 111, (198,473,0): 129, 139, 115, (198,474,0): 133, 143, 119, (198,475,0): 131, 143, 121, (198,476,0): 129, 141, 119, (198,477,0): 128, 140, 118, (198,478,0): 129, 141, 119, (198,479,0): 130, 142, 120, (198,480,0): 125, 136, 119, (198,481,0): 127, 140, 123, (198,482,0): 132, 145, 128, (198,483,0): 135, 149, 132, (198,484,0): 135, 152, 136, (198,485,0): 134, 152, 136, (198,486,0): 133, 151, 135, (198,487,0): 129, 150, 135, (198,488,0): 131, 152, 137, (198,489,0): 130, 151, 136, (198,490,0): 132, 148, 137, (198,491,0): 131, 147, 136, (198,492,0): 131, 144, 134, (198,493,0): 130, 143, 134, (198,494,0): 131, 141, 133, (198,495,0): 130, 140, 132, (198,496,0): 127, 132, 128, (198,497,0): 124, 129, 125, (198,498,0): 120, 125, 119, (198,499,0): 115, 120, 114, (198,500,0): 113, 115, 110, (198,501,0): 110, 112, 107, (198,502,0): 111, 110, 105, (198,503,0): 110, 109, 104, (198,504,0): 111, 108, 101, (198,505,0): 108, 105, 98, (198,506,0): 106, 99, 93, (198,507,0): 101, 94, 88, (198,508,0): 98, 89, 82, (198,509,0): 95, 86, 79, (198,510,0): 93, 84, 77, (198,511,0): 93, 84, 77, (198,512,0): 96, 89, 79, (198,513,0): 95, 88, 78, (198,514,0): 93, 89, 78, (198,515,0): 94, 90, 79, (198,516,0): 97, 93, 81, (198,517,0): 101, 97, 85, (198,518,0): 105, 103, 90, (198,519,0): 108, 106, 93, (198,520,0): 108, 109, 95, (198,521,0): 111, 112, 98, (198,522,0): 115, 116, 102, (198,523,0): 115, 116, 100, (198,524,0): 113, 115, 101, (198,525,0): 112, 115, 98, (198,526,0): 113, 116, 99, (198,527,0): 114, 118, 101, (198,528,0): 113, 120, 104, (198,529,0): 111, 117, 103, (198,530,0): 108, 114, 100, (198,531,0): 105, 111, 97, (198,532,0): 104, 110, 98, (198,533,0): 105, 111, 99, (198,534,0): 107, 113, 101, (198,535,0): 108, 114, 104, (198,536,0): 113, 116, 107, (198,537,0): 114, 117, 108, (198,538,0): 114, 117, 110, (198,539,0): 113, 116, 109, (198,540,0): 110, 113, 106, (198,541,0): 105, 107, 102, (198,542,0): 100, 102, 97, (198,543,0): 98, 99, 94, (198,544,0): 98, 97, 95, (198,545,0): 100, 96, 95, (198,546,0): 101, 97, 98, (198,547,0): 101, 97, 98, (198,548,0): 101, 97, 98, (198,549,0): 98, 96, 97, (198,550,0): 96, 94, 97, (198,551,0): 94, 94, 96, (198,552,0): 97, 96, 101, (198,553,0): 99, 100, 104, (198,554,0): 103, 104, 108, (198,555,0): 107, 108, 112, (198,556,0): 111, 112, 117, (198,557,0): 114, 115, 120, (198,558,0): 116, 117, 122, (198,559,0): 115, 118, 123, (198,560,0): 112, 115, 122, (198,561,0): 113, 116, 123, (198,562,0): 113, 117, 126, (198,563,0): 114, 118, 127, (198,564,0): 115, 119, 128, (198,565,0): 116, 120, 129, (198,566,0): 116, 120, 131, (198,567,0): 115, 122, 132, (198,568,0): 117, 121, 133, (198,569,0): 114, 120, 134, (198,570,0): 112, 118, 132, (198,571,0): 110, 116, 132, (198,572,0): 109, 115, 131, (198,573,0): 108, 115, 131, (198,574,0): 108, 115, 133, (198,575,0): 109, 116, 132, (198,576,0): 107, 114, 130, (198,577,0): 108, 117, 132, (198,578,0): 111, 120, 135, (198,579,0): 114, 123, 138, (198,580,0): 114, 123, 138, (198,581,0): 113, 122, 137, (198,582,0): 111, 120, 135, (198,583,0): 110, 119, 134, (198,584,0): 108, 117, 132, (198,585,0): 108, 117, 132, (198,586,0): 108, 117, 132, (198,587,0): 108, 117, 132, (198,588,0): 106, 115, 130, (198,589,0): 104, 113, 128, (198,590,0): 102, 111, 126, (198,591,0): 101, 111, 123, (198,592,0): 99, 107, 118, (198,593,0): 96, 103, 113, (198,594,0): 91, 95, 106, (198,595,0): 88, 92, 101, (198,596,0): 87, 90, 97, (198,597,0): 87, 88, 93, (198,598,0): 85, 84, 90, (198,599,0): 82, 81, 87, (199,0,0): 39, 27, 37, (199,1,0): 39, 27, 37, (199,2,0): 40, 28, 38, (199,3,0): 40, 28, 38, (199,4,0): 41, 29, 39, (199,5,0): 41, 29, 39, (199,6,0): 42, 30, 40, (199,7,0): 42, 30, 40, (199,8,0): 42, 30, 40, (199,9,0): 42, 30, 40, (199,10,0): 43, 31, 41, (199,11,0): 43, 31, 41, (199,12,0): 44, 32, 42, (199,13,0): 44, 32, 42, (199,14,0): 45, 33, 43, (199,15,0): 44, 34, 43, (199,16,0): 44, 34, 43, (199,17,0): 42, 35, 43, (199,18,0): 42, 35, 43, (199,19,0): 42, 35, 43, (199,20,0): 44, 34, 43, (199,21,0): 44, 34, 43, (199,22,0): 44, 34, 43, (199,23,0): 44, 34, 43, (199,24,0): 45, 33, 43, (199,25,0): 45, 33, 43, (199,26,0): 47, 34, 44, (199,27,0): 47, 34, 44, (199,28,0): 48, 35, 45, (199,29,0): 48, 35, 45, (199,30,0): 51, 35, 46, (199,31,0): 51, 35, 46, (199,32,0): 49, 36, 45, (199,33,0): 49, 36, 45, (199,34,0): 51, 35, 45, (199,35,0): 51, 35, 45, (199,36,0): 51, 35, 45, (199,37,0): 51, 35, 45, (199,38,0): 52, 35, 45, (199,39,0): 52, 35, 45, (199,40,0): 54, 34, 45, (199,41,0): 54, 34, 45, (199,42,0): 55, 35, 46, (199,43,0): 55, 35, 46, (199,44,0): 57, 35, 47, (199,45,0): 57, 35, 47, (199,46,0): 58, 36, 48, (199,47,0): 58, 36, 48, (199,48,0): 57, 37, 48, (199,49,0): 57, 37, 48, (199,50,0): 58, 36, 48, (199,51,0): 58, 36, 48, (199,52,0): 58, 37, 46, (199,53,0): 58, 37, 46, (199,54,0): 59, 36, 44, (199,55,0): 59, 36, 44, (199,56,0): 62, 36, 45, (199,57,0): 61, 35, 44, (199,58,0): 59, 34, 40, (199,59,0): 59, 34, 40, (199,60,0): 60, 33, 38, (199,61,0): 62, 35, 40, (199,62,0): 64, 37, 42, (199,63,0): 66, 39, 44, (199,64,0): 61, 34, 39, (199,65,0): 61, 34, 39, (199,66,0): 61, 34, 39, (199,67,0): 62, 35, 40, (199,68,0): 64, 35, 40, (199,69,0): 65, 36, 40, (199,70,0): 66, 35, 40, (199,71,0): 67, 36, 41, (199,72,0): 65, 34, 39, (199,73,0): 65, 35, 37, (199,74,0): 66, 34, 37, (199,75,0): 66, 34, 35, (199,76,0): 68, 34, 35, (199,77,0): 68, 34, 35, (199,78,0): 68, 34, 35, (199,79,0): 66, 34, 35, (199,80,0): 68, 37, 42, (199,81,0): 67, 36, 41, (199,82,0): 68, 36, 39, (199,83,0): 70, 35, 39, (199,84,0): 74, 35, 38, (199,85,0): 78, 38, 39, (199,86,0): 83, 39, 40, (199,87,0): 86, 40, 42, (199,88,0): 89, 39, 42, (199,89,0): 90, 38, 42, (199,90,0): 91, 38, 44, (199,91,0): 91, 38, 46, (199,92,0): 90, 37, 47, (199,93,0): 87, 36, 45, (199,94,0): 85, 33, 45, (199,95,0): 81, 34, 44, (199,96,0): 72, 32, 40, (199,97,0): 69, 34, 40, (199,98,0): 66, 34, 39, (199,99,0): 65, 33, 38, (199,100,0): 64, 32, 37, (199,101,0): 63, 31, 36, (199,102,0): 61, 30, 35, (199,103,0): 61, 30, 35, (199,104,0): 59, 30, 34, (199,105,0): 59, 30, 34, (199,106,0): 59, 30, 34, (199,107,0): 58, 29, 33, (199,108,0): 55, 29, 32, (199,109,0): 52, 26, 29, (199,110,0): 50, 24, 27, (199,111,0): 48, 23, 27, (199,112,0): 35, 16, 20, (199,113,0): 32, 15, 21, (199,114,0): 31, 14, 20, (199,115,0): 31, 14, 20, (199,116,0): 31, 14, 20, (199,117,0): 32, 15, 21, (199,118,0): 33, 16, 22, (199,119,0): 34, 17, 23, (199,120,0): 33, 16, 22, (199,121,0): 33, 16, 22, (199,122,0): 34, 17, 23, (199,123,0): 36, 19, 25, (199,124,0): 38, 21, 27, (199,125,0): 39, 22, 28, (199,126,0): 40, 23, 29, (199,127,0): 43, 24, 28, (199,128,0): 48, 28, 30, (199,129,0): 47, 27, 28, (199,130,0): 45, 25, 26, (199,131,0): 44, 24, 25, (199,132,0): 44, 24, 25, (199,133,0): 45, 25, 26, (199,134,0): 47, 27, 28, (199,135,0): 48, 28, 29, (199,136,0): 46, 26, 27, (199,137,0): 46, 26, 27, (199,138,0): 46, 26, 27, (199,139,0): 46, 26, 27, (199,140,0): 46, 26, 27, (199,141,0): 46, 26, 27, (199,142,0): 46, 26, 27, (199,143,0): 46, 26, 27, (199,144,0): 48, 25, 31, (199,145,0): 48, 25, 31, (199,146,0): 48, 26, 29, (199,147,0): 48, 26, 29, (199,148,0): 48, 26, 29, (199,149,0): 48, 26, 29, (199,150,0): 48, 26, 28, (199,151,0): 48, 26, 28, (199,152,0): 47, 26, 25, (199,153,0): 47, 26, 25, (199,154,0): 48, 27, 26, (199,155,0): 48, 27, 26, (199,156,0): 49, 28, 25, (199,157,0): 49, 28, 25, (199,158,0): 50, 29, 26, (199,159,0): 50, 29, 26, (199,160,0): 49, 28, 25, (199,161,0): 49, 28, 25, (199,162,0): 49, 28, 25, (199,163,0): 49, 28, 25, (199,164,0): 49, 28, 25, (199,165,0): 49, 28, 25, (199,166,0): 49, 28, 25, (199,167,0): 49, 28, 25, (199,168,0): 47, 26, 23, (199,169,0): 47, 26, 23, (199,170,0): 46, 25, 22, (199,171,0): 45, 24, 21, (199,172,0): 46, 25, 22, (199,173,0): 47, 26, 23, (199,174,0): 48, 27, 24, (199,175,0): 49, 28, 25, (199,176,0): 46, 25, 22, (199,177,0): 46, 25, 22, (199,178,0): 46, 25, 22, (199,179,0): 46, 25, 22, (199,180,0): 46, 25, 22, (199,181,0): 46, 25, 22, (199,182,0): 46, 25, 22, (199,183,0): 46, 25, 22, (199,184,0): 47, 26, 23, (199,185,0): 47, 26, 23, (199,186,0): 47, 26, 23, (199,187,0): 47, 26, 23, (199,188,0): 47, 26, 23, (199,189,0): 47, 26, 23, (199,190,0): 47, 26, 23, (199,191,0): 47, 26, 23, (199,192,0): 47, 26, 21, (199,193,0): 47, 26, 21, (199,194,0): 47, 26, 21, (199,195,0): 47, 26, 21, (199,196,0): 47, 26, 21, (199,197,0): 47, 26, 21, (199,198,0): 47, 26, 21, (199,199,0): 47, 26, 21, (199,200,0): 49, 28, 23, (199,201,0): 49, 28, 23, (199,202,0): 49, 28, 23, (199,203,0): 49, 28, 23, (199,204,0): 49, 28, 23, (199,205,0): 49, 28, 23, (199,206,0): 49, 28, 23, (199,207,0): 49, 29, 22, (199,208,0): 51, 26, 21, (199,209,0): 51, 26, 19, (199,210,0): 49, 24, 17, (199,211,0): 49, 24, 17, (199,212,0): 49, 24, 17, (199,213,0): 49, 24, 17, (199,214,0): 51, 26, 19, (199,215,0): 51, 26, 19, (199,216,0): 54, 29, 22, (199,217,0): 54, 29, 22, (199,218,0): 54, 29, 22, (199,219,0): 54, 29, 22, (199,220,0): 54, 29, 22, (199,221,0): 54, 29, 22, (199,222,0): 54, 29, 22, (199,223,0): 54, 30, 20, (199,224,0): 60, 33, 22, (199,225,0): 59, 33, 20, (199,226,0): 58, 30, 16, (199,227,0): 58, 31, 14, (199,228,0): 59, 32, 13, (199,229,0): 63, 37, 14, (199,230,0): 68, 40, 16, (199,231,0): 70, 43, 16, (199,232,0): 81, 51, 23, (199,233,0): 81, 51, 23, (199,234,0): 81, 51, 23, (199,235,0): 81, 51, 23, (199,236,0): 82, 51, 23, (199,237,0): 82, 51, 23, (199,238,0): 82, 50, 25, (199,239,0): 82, 51, 22, (199,240,0): 79, 50, 16, (199,241,0): 79, 51, 14, (199,242,0): 77, 51, 16, (199,243,0): 77, 51, 16, (199,244,0): 77, 51, 18, (199,245,0): 78, 51, 21, (199,246,0): 77, 52, 22, (199,247,0): 77, 51, 24, (199,248,0): 67, 43, 19, (199,249,0): 66, 41, 19, (199,250,0): 64, 38, 21, (199,251,0): 62, 36, 21, (199,252,0): 58, 35, 21, (199,253,0): 55, 31, 19, (199,254,0): 54, 30, 20, (199,255,0): 52, 30, 19, (199,256,0): 52, 29, 21, (199,257,0): 49, 29, 20, (199,258,0): 49, 29, 22, (199,259,0): 49, 29, 22, (199,260,0): 51, 27, 23, (199,261,0): 52, 28, 24, (199,262,0): 55, 30, 26, (199,263,0): 56, 31, 27, (199,264,0): 57, 32, 28, (199,265,0): 58, 33, 28, (199,266,0): 61, 34, 27, (199,267,0): 60, 33, 24, (199,268,0): 60, 31, 23, (199,269,0): 63, 35, 24, (199,270,0): 68, 40, 28, (199,271,0): 72, 44, 30, (199,272,0): 77, 51, 34, (199,273,0): 77, 52, 32, (199,274,0): 78, 53, 33, (199,275,0): 78, 53, 31, (199,276,0): 79, 54, 34, (199,277,0): 80, 55, 33, (199,278,0): 80, 55, 33, (199,279,0): 81, 57, 33, (199,280,0): 85, 61, 37, (199,281,0): 85, 61, 37, (199,282,0): 85, 61, 35, (199,283,0): 86, 62, 36, (199,284,0): 86, 62, 34, (199,285,0): 87, 63, 35, (199,286,0): 87, 63, 35, (199,287,0): 88, 64, 36, (199,288,0): 84, 63, 34, (199,289,0): 84, 63, 34, (199,290,0): 85, 64, 37, (199,291,0): 86, 65, 38, (199,292,0): 87, 67, 40, (199,293,0): 88, 68, 41, (199,294,0): 89, 69, 44, (199,295,0): 90, 70, 45, (199,296,0): 85, 67, 43, (199,297,0): 85, 67, 43, (199,298,0): 85, 69, 44, (199,299,0): 86, 70, 45, (199,300,0): 87, 71, 48, (199,301,0): 88, 72, 49, (199,302,0): 88, 73, 50, (199,303,0): 88, 73, 50, (199,304,0): 88, 72, 47, (199,305,0): 88, 72, 47, (199,306,0): 89, 73, 48, (199,307,0): 90, 74, 49, (199,308,0): 92, 76, 51, (199,309,0): 95, 79, 54, (199,310,0): 98, 82, 57, (199,311,0): 99, 83, 58, (199,312,0): 101, 85, 60, (199,313,0): 101, 85, 60, (199,314,0): 102, 86, 61, (199,315,0): 104, 88, 63, (199,316,0): 106, 90, 65, (199,317,0): 107, 91, 66, (199,318,0): 108, 92, 67, (199,319,0): 108, 94, 67, (199,320,0): 108, 95, 60, (199,321,0): 104, 95, 56, (199,322,0): 110, 97, 63, (199,323,0): 116, 103, 71, (199,324,0): 120, 105, 74, (199,325,0): 123, 109, 74, (199,326,0): 136, 125, 80, (199,327,0): 152, 142, 89, (199,328,0): 181, 176, 110, (199,329,0): 180, 178, 103, (199,330,0): 179, 180, 102, (199,331,0): 177, 182, 102, (199,332,0): 175, 182, 105, (199,333,0): 173, 181, 108, (199,334,0): 170, 179, 114, (199,335,0): 168, 178, 115, (199,336,0): 170, 182, 116, (199,337,0): 171, 183, 117, (199,338,0): 172, 184, 120, (199,339,0): 173, 185, 123, (199,340,0): 172, 183, 123, (199,341,0): 171, 182, 122, (199,342,0): 168, 179, 121, (199,343,0): 167, 178, 120, (199,344,0): 169, 180, 122, (199,345,0): 168, 179, 121, (199,346,0): 166, 177, 119, (199,347,0): 165, 176, 116, (199,348,0): 167, 179, 117, (199,349,0): 170, 182, 118, (199,350,0): 174, 186, 122, (199,351,0): 176, 189, 120, (199,352,0): 176, 189, 117, (199,353,0): 173, 187, 110, (199,354,0): 171, 185, 106, (199,355,0): 172, 187, 106, (199,356,0): 175, 190, 107, (199,357,0): 178, 194, 106, (199,358,0): 178, 194, 105, (199,359,0): 176, 193, 101, (199,360,0): 177, 194, 100, (199,361,0): 181, 198, 104, (199,362,0): 185, 202, 106, (199,363,0): 186, 203, 107, (199,364,0): 186, 203, 109, (199,365,0): 187, 204, 110, (199,366,0): 192, 209, 115, (199,367,0): 193, 213, 116, (199,368,0): 200, 221, 116, (199,369,0): 199, 223, 111, (199,370,0): 202, 224, 113, (199,371,0): 205, 229, 115, (199,372,0): 211, 234, 118, (199,373,0): 216, 241, 124, (199,374,0): 221, 244, 127, (199,375,0): 222, 247, 129, (199,376,0): 212, 235, 118, (199,377,0): 208, 233, 116, (199,378,0): 203, 226, 112, (199,379,0): 194, 218, 106, (199,380,0): 188, 210, 101, (199,381,0): 186, 209, 101, (199,382,0): 192, 214, 106, (199,383,0): 196, 220, 108, (199,384,0): 203, 231, 108, (199,385,0): 211, 242, 113, (199,386,0): 222, 253, 123, (199,387,0): 227, 255, 127, (199,388,0): 224, 254, 124, (199,389,0): 224, 250, 123, (199,390,0): 226, 251, 124, (199,391,0): 231, 251, 128, (199,392,0): 239, 255, 139, (199,393,0): 241, 255, 141, (199,394,0): 243, 255, 145, (199,395,0): 245, 255, 151, (199,396,0): 250, 255, 156, (199,397,0): 251, 255, 159, (199,398,0): 253, 255, 162, (199,399,0): 254, 255, 164, (199,400,0): 255, 255, 167, (199,401,0): 255, 255, 167, (199,402,0): 255, 255, 169, (199,403,0): 255, 254, 171, (199,404,0): 255, 254, 172, (199,405,0): 255, 254, 174, (199,406,0): 255, 253, 176, (199,407,0): 255, 253, 176, (199,408,0): 255, 254, 179, (199,409,0): 255, 254, 179, (199,410,0): 255, 254, 179, (199,411,0): 255, 254, 179, (199,412,0): 255, 254, 177, (199,413,0): 255, 255, 175, (199,414,0): 255, 255, 175, (199,415,0): 254, 255, 175, (199,416,0): 253, 254, 174, (199,417,0): 253, 254, 174, (199,418,0): 253, 254, 176, (199,419,0): 253, 254, 176, (199,420,0): 253, 254, 176, (199,421,0): 253, 254, 176, (199,422,0): 253, 254, 176, (199,423,0): 252, 255, 178, (199,424,0): 245, 249, 172, (199,425,0): 242, 250, 173, (199,426,0): 240, 251, 173, (199,427,0): 237, 251, 172, (199,428,0): 235, 252, 174, (199,429,0): 231, 252, 173, (199,430,0): 231, 252, 173, (199,431,0): 228, 253, 172, (199,432,0): 221, 250, 170, (199,433,0): 216, 247, 169, (199,434,0): 212, 243, 167, (199,435,0): 209, 241, 165, (199,436,0): 205, 239, 163, (199,437,0): 197, 234, 157, (199,438,0): 189, 225, 153, (199,439,0): 182, 219, 149, (199,440,0): 187, 224, 155, (199,441,0): 187, 222, 156, (199,442,0): 185, 220, 156, (199,443,0): 187, 218, 158, (199,444,0): 187, 216, 158, (199,445,0): 184, 212, 154, (199,446,0): 179, 206, 151, (199,447,0): 174, 201, 148, (199,448,0): 168, 196, 147, (199,449,0): 169, 197, 149, (199,450,0): 171, 199, 151, (199,451,0): 170, 197, 152, (199,452,0): 169, 195, 150, (199,453,0): 167, 190, 148, (199,454,0): 165, 186, 145, (199,455,0): 164, 185, 146, (199,456,0): 167, 184, 148, (199,457,0): 164, 179, 146, (199,458,0): 159, 173, 140, (199,459,0): 154, 165, 135, (199,460,0): 149, 159, 132, (199,461,0): 145, 155, 128, (199,462,0): 144, 153, 126, (199,463,0): 144, 153, 126, (199,464,0): 151, 157, 131, (199,465,0): 151, 157, 131, (199,466,0): 149, 155, 129, (199,467,0): 147, 153, 127, (199,468,0): 142, 148, 122, (199,469,0): 135, 143, 119, (199,470,0): 129, 137, 113, (199,471,0): 125, 135, 111, (199,472,0): 129, 139, 115, (199,473,0): 131, 143, 119, (199,474,0): 134, 146, 124, (199,475,0): 135, 147, 125, (199,476,0): 132, 144, 122, (199,477,0): 129, 143, 120, (199,478,0): 131, 143, 123, (199,479,0): 132, 144, 124, (199,480,0): 121, 132, 116, (199,481,0): 124, 137, 120, (199,482,0): 129, 141, 127, (199,483,0): 133, 147, 132, (199,484,0): 133, 150, 134, (199,485,0): 131, 149, 133, (199,486,0): 129, 147, 133, (199,487,0): 125, 146, 131, (199,488,0): 132, 153, 138, (199,489,0): 131, 151, 139, (199,490,0): 133, 149, 138, (199,491,0): 131, 147, 137, (199,492,0): 131, 144, 135, (199,493,0): 129, 142, 133, (199,494,0): 130, 140, 132, (199,495,0): 129, 139, 131, (199,496,0): 122, 127, 123, (199,497,0): 119, 124, 120, (199,498,0): 116, 121, 115, (199,499,0): 113, 118, 112, (199,500,0): 112, 114, 109, (199,501,0): 111, 113, 108, (199,502,0): 113, 112, 107, (199,503,0): 114, 113, 108, (199,504,0): 113, 110, 103, (199,505,0): 110, 107, 100, (199,506,0): 109, 102, 96, (199,507,0): 103, 96, 90, (199,508,0): 99, 90, 83, (199,509,0): 95, 86, 79, (199,510,0): 92, 83, 76, (199,511,0): 91, 82, 75, (199,512,0): 95, 88, 78, (199,513,0): 95, 88, 78, (199,514,0): 92, 88, 77, (199,515,0): 94, 90, 79, (199,516,0): 97, 93, 81, (199,517,0): 102, 98, 86, (199,518,0): 107, 105, 92, (199,519,0): 110, 108, 95, (199,520,0): 108, 109, 95, (199,521,0): 111, 112, 98, (199,522,0): 115, 116, 102, (199,523,0): 115, 116, 102, (199,524,0): 113, 115, 101, (199,525,0): 112, 114, 100, (199,526,0): 113, 115, 101, (199,527,0): 115, 117, 103, (199,528,0): 114, 118, 104, (199,529,0): 110, 116, 102, (199,530,0): 106, 112, 100, (199,531,0): 104, 110, 98, (199,532,0): 104, 110, 98, (199,533,0): 105, 111, 99, (199,534,0): 108, 114, 104, (199,535,0): 109, 115, 105, (199,536,0): 112, 115, 106, (199,537,0): 113, 116, 109, (199,538,0): 114, 117, 110, (199,539,0): 114, 116, 111, (199,540,0): 111, 113, 108, (199,541,0): 106, 108, 103, (199,542,0): 101, 103, 98, (199,543,0): 99, 100, 95, (199,544,0): 98, 97, 95, (199,545,0): 100, 96, 95, (199,546,0): 101, 97, 98, (199,547,0): 101, 97, 98, (199,548,0): 101, 97, 98, (199,549,0): 99, 95, 96, (199,550,0): 96, 94, 97, (199,551,0): 95, 93, 96, (199,552,0): 97, 96, 101, (199,553,0): 99, 98, 103, (199,554,0): 102, 103, 107, (199,555,0): 107, 108, 112, (199,556,0): 111, 112, 117, (199,557,0): 114, 115, 120, (199,558,0): 116, 117, 122, (199,559,0): 117, 118, 123, (199,560,0): 111, 114, 121, (199,561,0): 112, 115, 122, (199,562,0): 112, 116, 125, (199,563,0): 113, 117, 126, (199,564,0): 114, 118, 127, (199,565,0): 115, 119, 128, (199,566,0): 116, 120, 131, (199,567,0): 117, 121, 132, (199,568,0): 116, 120, 132, (199,569,0): 115, 119, 131, (199,570,0): 113, 116, 131, (199,571,0): 112, 115, 130, (199,572,0): 110, 113, 128, (199,573,0): 108, 114, 128, (199,574,0): 111, 114, 131, (199,575,0): 109, 115, 131, (199,576,0): 106, 113, 129, (199,577,0): 108, 117, 132, (199,578,0): 111, 120, 135, (199,579,0): 114, 123, 138, (199,580,0): 115, 124, 139, (199,581,0): 114, 123, 138, (199,582,0): 111, 120, 135, (199,583,0): 110, 119, 134, (199,584,0): 107, 116, 131, (199,585,0): 107, 116, 131, (199,586,0): 108, 117, 132, (199,587,0): 107, 116, 131, (199,588,0): 106, 115, 130, (199,589,0): 104, 113, 128, (199,590,0): 102, 111, 126, (199,591,0): 100, 110, 122, (199,592,0): 101, 109, 120, (199,593,0): 96, 102, 114, (199,594,0): 92, 96, 107, (199,595,0): 87, 91, 100, (199,596,0): 86, 89, 98, (199,597,0): 86, 86, 94, (199,598,0): 83, 82, 88, (199,599,0): 80, 79, 85, (200,0,0): 41, 29, 39, (200,1,0): 41, 29, 39, (200,2,0): 41, 29, 39, (200,3,0): 41, 29, 39, (200,4,0): 41, 29, 39, (200,5,0): 41, 29, 39, (200,6,0): 41, 29, 39, (200,7,0): 41, 29, 39, (200,8,0): 41, 29, 39, (200,9,0): 41, 29, 39, (200,10,0): 41, 29, 39, (200,11,0): 42, 30, 40, (200,12,0): 42, 30, 40, (200,13,0): 43, 31, 41, (200,14,0): 43, 31, 41, (200,15,0): 42, 32, 41, (200,16,0): 43, 33, 42, (200,17,0): 41, 34, 42, (200,18,0): 41, 34, 42, (200,19,0): 42, 35, 43, (200,20,0): 44, 34, 43, (200,21,0): 45, 35, 44, (200,22,0): 45, 35, 44, (200,23,0): 45, 35, 44, (200,24,0): 45, 33, 43, (200,25,0): 45, 33, 43, (200,26,0): 47, 34, 44, (200,27,0): 47, 34, 44, (200,28,0): 48, 35, 45, (200,29,0): 48, 35, 45, (200,30,0): 51, 35, 46, (200,31,0): 51, 35, 46, (200,32,0): 49, 36, 45, (200,33,0): 49, 36, 45, (200,34,0): 51, 35, 45, (200,35,0): 51, 35, 45, (200,36,0): 51, 35, 45, (200,37,0): 51, 35, 45, (200,38,0): 52, 35, 45, (200,39,0): 52, 35, 45, (200,40,0): 56, 36, 47, (200,41,0): 56, 36, 47, (200,42,0): 56, 36, 47, (200,43,0): 56, 36, 47, (200,44,0): 57, 35, 47, (200,45,0): 57, 35, 47, (200,46,0): 57, 35, 47, (200,47,0): 57, 35, 47, (200,48,0): 56, 36, 47, (200,49,0): 56, 36, 47, (200,50,0): 57, 35, 47, (200,51,0): 57, 35, 47, (200,52,0): 57, 36, 45, (200,53,0): 57, 36, 45, (200,54,0): 58, 35, 43, (200,55,0): 58, 35, 43, (200,56,0): 61, 35, 44, (200,57,0): 61, 35, 44, (200,58,0): 61, 36, 42, (200,59,0): 61, 36, 42, (200,60,0): 62, 35, 40, (200,61,0): 62, 35, 40, (200,62,0): 62, 35, 40, (200,63,0): 62, 35, 40, (200,64,0): 61, 36, 42, (200,65,0): 61, 36, 42, (200,66,0): 62, 35, 42, (200,67,0): 62, 35, 40, (200,68,0): 62, 35, 40, (200,69,0): 62, 35, 40, (200,70,0): 64, 35, 40, (200,71,0): 64, 35, 39, (200,72,0): 65, 34, 39, (200,73,0): 65, 35, 37, (200,74,0): 65, 35, 37, (200,75,0): 65, 35, 37, (200,76,0): 66, 34, 37, (200,77,0): 66, 34, 35, (200,78,0): 66, 34, 35, (200,79,0): 66, 34, 35, (200,80,0): 61, 30, 35, (200,81,0): 61, 30, 35, (200,82,0): 64, 32, 35, (200,83,0): 67, 32, 36, (200,84,0): 72, 33, 36, (200,85,0): 74, 34, 35, (200,86,0): 79, 35, 36, (200,87,0): 80, 34, 36, (200,88,0): 87, 38, 41, (200,89,0): 87, 37, 40, (200,90,0): 87, 36, 41, (200,91,0): 86, 35, 42, (200,92,0): 83, 32, 41, (200,93,0): 80, 30, 39, (200,94,0): 77, 27, 38, (200,95,0): 72, 26, 37, (200,96,0): 71, 31, 39, (200,97,0): 68, 33, 39, (200,98,0): 66, 34, 39, (200,99,0): 66, 34, 39, (200,100,0): 66, 34, 39, (200,101,0): 66, 34, 39, (200,102,0): 65, 34, 39, (200,103,0): 65, 34, 39, (200,104,0): 57, 28, 32, (200,105,0): 58, 29, 33, (200,106,0): 60, 31, 35, (200,107,0): 60, 31, 35, (200,108,0): 58, 32, 35, (200,109,0): 56, 30, 33, (200,110,0): 54, 28, 31, (200,111,0): 52, 27, 31, (200,112,0): 39, 18, 23, (200,113,0): 37, 18, 24, (200,114,0): 36, 17, 23, (200,115,0): 35, 16, 22, (200,116,0): 35, 16, 22, (200,117,0): 35, 16, 22, (200,118,0): 36, 17, 23, (200,119,0): 37, 18, 24, (200,120,0): 36, 17, 23, (200,121,0): 37, 18, 24, (200,122,0): 37, 18, 24, (200,123,0): 38, 19, 25, (200,124,0): 40, 21, 27, (200,125,0): 41, 22, 28, (200,126,0): 41, 22, 28, (200,127,0): 42, 23, 27, (200,128,0): 43, 23, 25, (200,129,0): 43, 23, 24, (200,130,0): 44, 24, 25, (200,131,0): 44, 24, 25, (200,132,0): 45, 25, 26, (200,133,0): 45, 25, 26, (200,134,0): 46, 26, 27, (200,135,0): 46, 26, 27, (200,136,0): 45, 25, 26, (200,137,0): 45, 25, 26, (200,138,0): 45, 25, 26, (200,139,0): 45, 25, 26, (200,140,0): 45, 25, 26, (200,141,0): 45, 25, 26, (200,142,0): 45, 25, 26, (200,143,0): 45, 25, 26, (200,144,0): 47, 24, 30, (200,145,0): 47, 24, 30, (200,146,0): 47, 25, 28, (200,147,0): 47, 25, 28, (200,148,0): 47, 25, 28, (200,149,0): 47, 25, 28, (200,150,0): 47, 25, 27, (200,151,0): 47, 25, 27, (200,152,0): 45, 24, 23, (200,153,0): 45, 24, 23, (200,154,0): 46, 25, 24, (200,155,0): 47, 26, 25, (200,156,0): 48, 27, 24, (200,157,0): 48, 27, 24, (200,158,0): 49, 28, 25, (200,159,0): 49, 28, 25, (200,160,0): 49, 28, 25, (200,161,0): 49, 28, 25, (200,162,0): 49, 28, 25, (200,163,0): 49, 28, 25, (200,164,0): 49, 28, 25, (200,165,0): 49, 28, 25, (200,166,0): 49, 28, 25, (200,167,0): 49, 28, 25, (200,168,0): 51, 30, 27, (200,169,0): 50, 29, 26, (200,170,0): 50, 29, 26, (200,171,0): 49, 28, 25, (200,172,0): 48, 27, 24, (200,173,0): 47, 26, 23, (200,174,0): 47, 26, 23, (200,175,0): 46, 25, 22, (200,176,0): 48, 24, 22, (200,177,0): 48, 24, 22, (200,178,0): 48, 24, 22, (200,179,0): 49, 25, 23, (200,180,0): 49, 25, 23, (200,181,0): 50, 26, 24, (200,182,0): 50, 26, 24, (200,183,0): 50, 26, 24, (200,184,0): 51, 27, 25, (200,185,0): 51, 27, 25, (200,186,0): 51, 27, 25, (200,187,0): 51, 27, 25, (200,188,0): 51, 27, 25, (200,189,0): 51, 27, 25, (200,190,0): 51, 27, 25, (200,191,0): 51, 27, 25, (200,192,0): 45, 24, 19, (200,193,0): 45, 24, 19, (200,194,0): 46, 25, 20, (200,195,0): 47, 26, 21, (200,196,0): 48, 27, 22, (200,197,0): 48, 27, 22, (200,198,0): 49, 28, 23, (200,199,0): 49, 28, 23, (200,200,0): 49, 28, 23, (200,201,0): 49, 28, 23, (200,202,0): 49, 28, 23, (200,203,0): 49, 28, 23, (200,204,0): 49, 28, 23, (200,205,0): 49, 28, 23, (200,206,0): 49, 28, 23, (200,207,0): 49, 29, 22, (200,208,0): 52, 27, 22, (200,209,0): 52, 27, 20, (200,210,0): 52, 27, 20, (200,211,0): 52, 27, 20, (200,212,0): 52, 27, 20, (200,213,0): 52, 27, 20, (200,214,0): 52, 27, 20, (200,215,0): 52, 27, 20, (200,216,0): 55, 30, 23, (200,217,0): 55, 30, 23, (200,218,0): 55, 30, 23, (200,219,0): 55, 30, 23, (200,220,0): 54, 29, 22, (200,221,0): 54, 29, 22, (200,222,0): 54, 29, 22, (200,223,0): 54, 30, 20, (200,224,0): 57, 30, 19, (200,225,0): 59, 33, 20, (200,226,0): 61, 33, 19, (200,227,0): 62, 35, 16, (200,228,0): 63, 36, 15, (200,229,0): 67, 41, 18, (200,230,0): 74, 46, 22, (200,231,0): 79, 52, 25, (200,232,0): 83, 53, 25, (200,233,0): 82, 53, 23, (200,234,0): 80, 51, 21, (200,235,0): 79, 50, 20, (200,236,0): 80, 49, 21, (200,237,0): 82, 51, 23, (200,238,0): 84, 53, 25, (200,239,0): 85, 54, 25, (200,240,0): 85, 56, 22, (200,241,0): 81, 53, 14, (200,242,0): 76, 50, 13, (200,243,0): 76, 50, 15, (200,244,0): 79, 53, 20, (200,245,0): 81, 54, 24, (200,246,0): 79, 54, 24, (200,247,0): 76, 50, 23, (200,248,0): 66, 42, 18, (200,249,0): 65, 40, 18, (200,250,0): 63, 37, 20, (200,251,0): 61, 35, 20, (200,252,0): 56, 33, 19, (200,253,0): 54, 31, 17, (200,254,0): 52, 28, 16, (200,255,0): 50, 28, 15, (200,256,0): 50, 28, 17, (200,257,0): 48, 28, 19, (200,258,0): 48, 28, 21, (200,259,0): 48, 28, 21, (200,260,0): 52, 28, 24, (200,261,0): 54, 30, 26, (200,262,0): 57, 31, 30, (200,263,0): 58, 32, 31, (200,264,0): 57, 32, 28, (200,265,0): 58, 33, 28, (200,266,0): 61, 34, 27, (200,267,0): 63, 36, 27, (200,268,0): 66, 38, 26, (200,269,0): 69, 41, 27, (200,270,0): 71, 44, 27, (200,271,0): 72, 45, 26, (200,272,0): 78, 51, 32, (200,273,0): 78, 51, 30, (200,274,0): 79, 52, 31, (200,275,0): 80, 54, 31, (200,276,0): 81, 54, 33, (200,277,0): 82, 56, 33, (200,278,0): 82, 56, 33, (200,279,0): 82, 56, 33, (200,280,0): 88, 62, 39, (200,281,0): 88, 62, 37, (200,282,0): 88, 62, 37, (200,283,0): 89, 63, 38, (200,284,0): 89, 63, 36, (200,285,0): 90, 64, 37, (200,286,0): 90, 64, 37, (200,287,0): 90, 66, 38, (200,288,0): 87, 66, 35, (200,289,0): 87, 66, 35, (200,290,0): 88, 67, 38, (200,291,0): 89, 68, 39, (200,292,0): 89, 70, 40, (200,293,0): 90, 71, 41, (200,294,0): 91, 71, 44, (200,295,0): 91, 71, 44, (200,296,0): 91, 74, 48, (200,297,0): 90, 73, 47, (200,298,0): 88, 72, 46, (200,299,0): 87, 71, 45, (200,300,0): 87, 71, 46, (200,301,0): 88, 72, 47, (200,302,0): 88, 74, 48, (200,303,0): 89, 75, 49, (200,304,0): 88, 72, 49, (200,305,0): 88, 72, 49, (200,306,0): 88, 72, 49, (200,307,0): 89, 73, 50, (200,308,0): 91, 75, 52, (200,309,0): 93, 77, 54, (200,310,0): 95, 79, 56, (200,311,0): 97, 81, 58, (200,312,0): 100, 84, 61, (200,313,0): 100, 84, 61, (200,314,0): 101, 85, 62, (200,315,0): 102, 86, 63, (200,316,0): 103, 87, 64, (200,317,0): 104, 88, 65, (200,318,0): 105, 89, 66, (200,319,0): 104, 90, 63, (200,320,0): 105, 92, 58, (200,321,0): 108, 98, 62, (200,322,0): 115, 102, 70, (200,323,0): 116, 102, 73, (200,324,0): 117, 102, 73, (200,325,0): 122, 107, 76, (200,326,0): 132, 120, 82, (200,327,0): 141, 130, 84, (200,328,0): 163, 157, 97, (200,329,0): 178, 175, 106, (200,330,0): 187, 188, 112, (200,331,0): 181, 186, 106, (200,332,0): 173, 180, 103, (200,333,0): 172, 180, 107, (200,334,0): 172, 181, 116, (200,335,0): 170, 180, 117, (200,336,0): 167, 179, 115, (200,337,0): 166, 181, 116, (200,338,0): 166, 180, 118, (200,339,0): 167, 181, 119, (200,340,0): 167, 181, 120, (200,341,0): 166, 180, 121, (200,342,0): 164, 177, 121, (200,343,0): 164, 177, 121, (200,344,0): 162, 175, 119, (200,345,0): 163, 177, 118, (200,346,0): 165, 179, 120, (200,347,0): 167, 181, 120, (200,348,0): 168, 182, 120, (200,349,0): 169, 184, 119, (200,350,0): 169, 184, 119, (200,351,0): 169, 184, 115, (200,352,0): 172, 188, 113, (200,353,0): 176, 193, 113, (200,354,0): 182, 200, 118, (200,355,0): 184, 202, 118, (200,356,0): 184, 203, 114, (200,357,0): 184, 203, 111, (200,358,0): 185, 205, 110, (200,359,0): 186, 206, 109, (200,360,0): 186, 206, 107, (200,361,0): 188, 208, 109, (200,362,0): 191, 211, 112, (200,363,0): 193, 213, 114, (200,364,0): 194, 214, 117, (200,365,0): 193, 213, 116, (200,366,0): 192, 212, 115, (200,367,0): 190, 210, 111, (200,368,0): 190, 213, 105, (200,369,0): 191, 218, 105, (200,370,0): 198, 222, 110, (200,371,0): 205, 232, 117, (200,372,0): 215, 240, 123, (200,373,0): 218, 245, 128, (200,374,0): 220, 245, 127, (200,375,0): 216, 244, 125, (200,376,0): 215, 240, 123, (200,377,0): 207, 234, 117, (200,378,0): 200, 224, 110, (200,379,0): 191, 218, 105, (200,380,0): 190, 214, 104, (200,381,0): 190, 216, 107, (200,382,0): 197, 220, 114, (200,383,0): 198, 224, 114, (200,384,0): 202, 234, 111, (200,385,0): 208, 241, 111, (200,386,0): 216, 249, 119, (200,387,0): 225, 255, 127, (200,388,0): 230, 255, 131, (200,389,0): 232, 255, 133, (200,390,0): 230, 254, 130, (200,391,0): 231, 251, 130, (200,392,0): 235, 252, 137, (200,393,0): 239, 253, 140, (200,394,0): 243, 255, 147, (200,395,0): 247, 255, 154, (200,396,0): 252, 255, 160, (200,397,0): 253, 255, 164, (200,398,0): 254, 255, 167, (200,399,0): 253, 255, 168, (200,400,0): 252, 254, 170, (200,401,0): 252, 254, 170, (200,402,0): 252, 254, 171, (200,403,0): 253, 254, 174, (200,404,0): 253, 254, 176, (200,405,0): 254, 255, 179, (200,406,0): 254, 254, 180, (200,407,0): 255, 255, 183, (200,408,0): 255, 255, 185, (200,409,0): 255, 255, 185, (200,410,0): 255, 255, 183, (200,411,0): 255, 255, 183, (200,412,0): 255, 255, 181, (200,413,0): 255, 255, 181, (200,414,0): 255, 255, 180, (200,415,0): 255, 255, 180, (200,416,0): 255, 255, 180, (200,417,0): 253, 255, 177, (200,418,0): 253, 255, 179, (200,419,0): 252, 255, 178, (200,420,0): 252, 255, 178, (200,421,0): 251, 254, 177, (200,422,0): 251, 254, 177, (200,423,0): 250, 254, 178, (200,424,0): 244, 252, 175, (200,425,0): 242, 253, 177, (200,426,0): 240, 252, 176, (200,427,0): 236, 253, 175, (200,428,0): 233, 254, 177, (200,429,0): 230, 254, 176, (200,430,0): 229, 253, 175, (200,431,0): 226, 254, 177, (200,432,0): 218, 249, 173, (200,433,0): 215, 247, 172, (200,434,0): 211, 245, 169, (200,435,0): 207, 243, 169, (200,436,0): 205, 241, 169, (200,437,0): 200, 238, 165, (200,438,0): 192, 232, 162, (200,439,0): 187, 226, 159, (200,440,0): 189, 228, 163, (200,441,0): 187, 226, 163, (200,442,0): 189, 225, 164, (200,443,0): 190, 223, 166, (200,444,0): 188, 221, 166, (200,445,0): 186, 216, 162, (200,446,0): 179, 207, 156, (200,447,0): 173, 201, 152, (200,448,0): 171, 199, 151, (200,449,0): 170, 197, 152, (200,450,0): 168, 195, 150, (200,451,0): 166, 193, 150, (200,452,0): 166, 191, 149, (200,453,0): 165, 190, 150, (200,454,0): 167, 189, 151, (200,455,0): 169, 189, 154, (200,456,0): 167, 187, 152, (200,457,0): 165, 182, 150, (200,458,0): 160, 175, 146, (200,459,0): 157, 170, 142, (200,460,0): 156, 169, 143, (200,461,0): 155, 168, 142, (200,462,0): 154, 164, 139, (200,463,0): 152, 162, 137, (200,464,0): 148, 156, 132, (200,465,0): 146, 154, 130, (200,466,0): 145, 153, 129, (200,467,0): 144, 152, 128, (200,468,0): 144, 152, 128, (200,469,0): 140, 150, 126, (200,470,0): 135, 145, 121, (200,471,0): 129, 141, 119, (200,472,0): 138, 150, 128, (200,473,0): 139, 151, 129, (200,474,0): 140, 152, 132, (200,475,0): 140, 153, 133, (200,476,0): 140, 153, 133, (200,477,0): 139, 154, 133, (200,478,0): 139, 152, 134, (200,479,0): 138, 151, 133, (200,480,0): 134, 145, 131, (200,481,0): 131, 143, 129, (200,482,0): 129, 141, 129, (200,483,0): 129, 143, 130, (200,484,0): 130, 146, 133, (200,485,0): 130, 148, 134, (200,486,0): 128, 146, 134, (200,487,0): 124, 144, 132, (200,488,0): 128, 148, 136, (200,489,0): 128, 148, 137, (200,490,0): 130, 146, 136, (200,491,0): 129, 144, 137, (200,492,0): 128, 141, 134, (200,493,0): 125, 138, 131, (200,494,0): 125, 134, 129, (200,495,0): 123, 132, 127, (200,496,0): 126, 131, 127, (200,497,0): 117, 122, 118, (200,498,0): 106, 111, 105, (200,499,0): 103, 108, 102, (200,500,0): 108, 110, 105, (200,501,0): 113, 115, 110, (200,502,0): 115, 114, 109, (200,503,0): 114, 113, 108, (200,504,0): 112, 109, 102, (200,505,0): 115, 112, 105, (200,506,0): 118, 111, 105, (200,507,0): 111, 104, 98, (200,508,0): 101, 92, 85, (200,509,0): 94, 85, 78, (200,510,0): 94, 85, 78, (200,511,0): 97, 88, 81, (200,512,0): 96, 89, 79, (200,513,0): 96, 90, 78, (200,514,0): 96, 92, 80, (200,515,0): 98, 94, 82, (200,516,0): 100, 96, 85, (200,517,0): 101, 97, 86, (200,518,0): 102, 100, 88, (200,519,0): 103, 101, 89, (200,520,0): 102, 102, 90, (200,521,0): 106, 106, 94, (200,522,0): 110, 110, 98, (200,523,0): 111, 111, 99, (200,524,0): 108, 110, 97, (200,525,0): 107, 109, 96, (200,526,0): 109, 111, 98, (200,527,0): 111, 113, 102, (200,528,0): 111, 114, 103, (200,529,0): 112, 115, 104, (200,530,0): 111, 114, 105, (200,531,0): 109, 112, 103, (200,532,0): 105, 108, 99, (200,533,0): 104, 107, 98, (200,534,0): 106, 109, 102, (200,535,0): 109, 112, 105, (200,536,0): 113, 118, 111, (200,537,0): 113, 118, 112, (200,538,0): 112, 117, 111, (200,539,0): 110, 115, 111, (200,540,0): 107, 112, 108, (200,541,0): 104, 109, 105, (200,542,0): 100, 105, 101, (200,543,0): 100, 102, 99, (200,544,0): 103, 101, 102, (200,545,0): 104, 100, 101, (200,546,0): 104, 100, 101, (200,547,0): 103, 99, 100, (200,548,0): 102, 97, 101, (200,549,0): 102, 97, 101, (200,550,0): 99, 97, 102, (200,551,0): 99, 97, 102, (200,552,0): 101, 100, 105, (200,553,0): 102, 101, 106, (200,554,0): 103, 104, 109, (200,555,0): 105, 106, 111, (200,556,0): 107, 107, 115, (200,557,0): 109, 109, 117, (200,558,0): 111, 111, 119, (200,559,0): 112, 112, 120, (200,560,0): 110, 113, 122, (200,561,0): 107, 111, 120, (200,562,0): 106, 110, 119, (200,563,0): 107, 111, 120, (200,564,0): 111, 115, 124, (200,565,0): 113, 117, 126, (200,566,0): 113, 117, 128, (200,567,0): 111, 115, 126, (200,568,0): 113, 115, 127, (200,569,0): 113, 115, 127, (200,570,0): 113, 115, 128, (200,571,0): 112, 114, 127, (200,572,0): 111, 113, 126, (200,573,0): 109, 113, 125, (200,574,0): 109, 111, 126, (200,575,0): 107, 110, 125, (200,576,0): 104, 112, 125, (200,577,0): 105, 113, 126, (200,578,0): 105, 113, 126, (200,579,0): 106, 114, 127, (200,580,0): 108, 116, 129, (200,581,0): 109, 117, 130, (200,582,0): 110, 118, 131, (200,583,0): 110, 118, 131, (200,584,0): 107, 115, 128, (200,585,0): 107, 115, 128, (200,586,0): 106, 114, 127, (200,587,0): 106, 114, 127, (200,588,0): 105, 113, 126, (200,589,0): 104, 112, 125, (200,590,0): 104, 112, 125, (200,591,0): 103, 111, 124, (200,592,0): 96, 102, 114, (200,593,0): 95, 101, 113, (200,594,0): 95, 99, 110, (200,595,0): 91, 95, 104, (200,596,0): 87, 90, 99, (200,597,0): 84, 84, 92, (200,598,0): 81, 80, 86, (200,599,0): 78, 77, 83, (201,0,0): 41, 29, 39, (201,1,0): 41, 29, 39, (201,2,0): 41, 29, 39, (201,3,0): 41, 29, 39, (201,4,0): 41, 29, 39, (201,5,0): 41, 29, 39, (201,6,0): 41, 29, 39, (201,7,0): 41, 29, 39, (201,8,0): 41, 29, 39, (201,9,0): 41, 29, 39, (201,10,0): 41, 29, 39, (201,11,0): 42, 30, 40, (201,12,0): 42, 30, 40, (201,13,0): 43, 31, 41, (201,14,0): 43, 31, 41, (201,15,0): 42, 32, 41, (201,16,0): 43, 33, 42, (201,17,0): 41, 34, 42, (201,18,0): 41, 34, 42, (201,19,0): 42, 35, 43, (201,20,0): 44, 34, 43, (201,21,0): 45, 35, 44, (201,22,0): 45, 35, 44, (201,23,0): 45, 35, 44, (201,24,0): 45, 33, 43, (201,25,0): 45, 33, 43, (201,26,0): 47, 34, 44, (201,27,0): 47, 34, 44, (201,28,0): 48, 35, 45, (201,29,0): 48, 35, 45, (201,30,0): 51, 35, 46, (201,31,0): 51, 35, 46, (201,32,0): 49, 36, 45, (201,33,0): 49, 36, 45, (201,34,0): 51, 35, 45, (201,35,0): 51, 35, 45, (201,36,0): 51, 35, 45, (201,37,0): 51, 35, 45, (201,38,0): 52, 35, 45, (201,39,0): 52, 35, 45, (201,40,0): 56, 36, 47, (201,41,0): 56, 36, 47, (201,42,0): 56, 36, 47, (201,43,0): 56, 36, 47, (201,44,0): 57, 35, 47, (201,45,0): 57, 35, 47, (201,46,0): 57, 35, 47, (201,47,0): 57, 35, 47, (201,48,0): 56, 36, 47, (201,49,0): 56, 36, 47, (201,50,0): 57, 35, 47, (201,51,0): 57, 35, 47, (201,52,0): 57, 36, 45, (201,53,0): 57, 36, 45, (201,54,0): 58, 35, 43, (201,55,0): 58, 35, 43, (201,56,0): 61, 35, 44, (201,57,0): 61, 35, 44, (201,58,0): 61, 36, 42, (201,59,0): 61, 36, 42, (201,60,0): 62, 35, 40, (201,61,0): 62, 35, 40, (201,62,0): 62, 35, 40, (201,63,0): 62, 35, 40, (201,64,0): 61, 36, 42, (201,65,0): 61, 36, 42, (201,66,0): 62, 35, 42, (201,67,0): 62, 35, 42, (201,68,0): 62, 35, 40, (201,69,0): 62, 35, 40, (201,70,0): 64, 35, 40, (201,71,0): 64, 35, 40, (201,72,0): 65, 34, 39, (201,73,0): 65, 34, 39, (201,74,0): 65, 35, 37, (201,75,0): 65, 35, 37, (201,76,0): 66, 34, 37, (201,77,0): 66, 34, 37, (201,78,0): 66, 34, 35, (201,79,0): 65, 35, 37, (201,80,0): 61, 32, 36, (201,81,0): 62, 33, 38, (201,82,0): 63, 32, 37, (201,83,0): 65, 33, 36, (201,84,0): 70, 34, 36, (201,85,0): 73, 34, 37, (201,86,0): 75, 33, 35, (201,87,0): 78, 34, 35, (201,88,0): 83, 37, 39, (201,89,0): 83, 37, 40, (201,90,0): 85, 36, 42, (201,91,0): 84, 35, 41, (201,92,0): 80, 33, 41, (201,93,0): 78, 31, 41, (201,94,0): 76, 28, 40, (201,95,0): 71, 28, 38, (201,96,0): 69, 32, 39, (201,97,0): 68, 33, 39, (201,98,0): 66, 34, 39, (201,99,0): 66, 34, 39, (201,100,0): 66, 34, 39, (201,101,0): 66, 34, 39, (201,102,0): 65, 34, 39, (201,103,0): 65, 34, 39, (201,104,0): 58, 29, 33, (201,105,0): 58, 29, 33, (201,106,0): 59, 30, 34, (201,107,0): 60, 31, 35, (201,108,0): 57, 31, 34, (201,109,0): 56, 30, 33, (201,110,0): 54, 28, 31, (201,111,0): 52, 27, 31, (201,112,0): 39, 18, 23, (201,113,0): 37, 18, 24, (201,114,0): 36, 17, 23, (201,115,0): 35, 16, 22, (201,116,0): 35, 16, 22, (201,117,0): 35, 16, 22, (201,118,0): 36, 17, 23, (201,119,0): 36, 17, 23, (201,120,0): 36, 17, 23, (201,121,0): 37, 18, 24, (201,122,0): 37, 18, 24, (201,123,0): 38, 19, 25, (201,124,0): 40, 21, 27, (201,125,0): 41, 22, 28, (201,126,0): 41, 22, 28, (201,127,0): 42, 23, 27, (201,128,0): 43, 23, 25, (201,129,0): 43, 23, 24, (201,130,0): 44, 24, 25, (201,131,0): 44, 24, 25, (201,132,0): 45, 25, 26, (201,133,0): 45, 25, 26, (201,134,0): 46, 26, 27, (201,135,0): 46, 26, 27, (201,136,0): 45, 25, 26, (201,137,0): 45, 25, 26, (201,138,0): 45, 25, 26, (201,139,0): 45, 25, 26, (201,140,0): 45, 25, 26, (201,141,0): 45, 25, 26, (201,142,0): 45, 25, 26, (201,143,0): 45, 25, 26, (201,144,0): 47, 24, 30, (201,145,0): 47, 24, 30, (201,146,0): 47, 25, 28, (201,147,0): 47, 25, 28, (201,148,0): 47, 25, 28, (201,149,0): 47, 25, 28, (201,150,0): 47, 25, 27, (201,151,0): 47, 25, 27, (201,152,0): 45, 24, 23, (201,153,0): 46, 25, 24, (201,154,0): 46, 25, 24, (201,155,0): 47, 26, 25, (201,156,0): 48, 27, 24, (201,157,0): 48, 27, 24, (201,158,0): 49, 28, 25, (201,159,0): 49, 28, 25, (201,160,0): 49, 28, 25, (201,161,0): 49, 28, 25, (201,162,0): 49, 28, 25, (201,163,0): 49, 28, 25, (201,164,0): 49, 28, 25, (201,165,0): 49, 28, 25, (201,166,0): 49, 28, 25, (201,167,0): 49, 28, 25, (201,168,0): 50, 29, 26, (201,169,0): 50, 29, 26, (201,170,0): 50, 29, 26, (201,171,0): 49, 28, 25, (201,172,0): 48, 27, 24, (201,173,0): 47, 26, 23, (201,174,0): 47, 26, 23, (201,175,0): 47, 26, 23, (201,176,0): 47, 23, 21, (201,177,0): 48, 24, 22, (201,178,0): 48, 24, 22, (201,179,0): 48, 24, 22, (201,180,0): 49, 25, 23, (201,181,0): 49, 25, 23, (201,182,0): 50, 26, 24, (201,183,0): 50, 26, 24, (201,184,0): 51, 27, 25, (201,185,0): 51, 27, 25, (201,186,0): 51, 27, 25, (201,187,0): 51, 27, 25, (201,188,0): 51, 27, 25, (201,189,0): 51, 27, 25, (201,190,0): 51, 27, 25, (201,191,0): 51, 27, 25, (201,192,0): 45, 24, 19, (201,193,0): 46, 25, 20, (201,194,0): 46, 25, 20, (201,195,0): 47, 26, 21, (201,196,0): 48, 27, 22, (201,197,0): 48, 27, 22, (201,198,0): 49, 28, 23, (201,199,0): 49, 28, 23, (201,200,0): 49, 28, 23, (201,201,0): 49, 28, 23, (201,202,0): 49, 28, 23, (201,203,0): 49, 28, 23, (201,204,0): 49, 28, 23, (201,205,0): 49, 28, 23, (201,206,0): 49, 28, 23, (201,207,0): 49, 29, 22, (201,208,0): 52, 27, 22, (201,209,0): 52, 27, 20, (201,210,0): 52, 27, 20, (201,211,0): 52, 27, 20, (201,212,0): 52, 27, 20, (201,213,0): 52, 27, 20, (201,214,0): 52, 27, 20, (201,215,0): 52, 27, 20, (201,216,0): 54, 29, 22, (201,217,0): 54, 29, 22, (201,218,0): 54, 29, 22, (201,219,0): 54, 29, 22, (201,220,0): 54, 29, 22, (201,221,0): 54, 29, 22, (201,222,0): 54, 29, 22, (201,223,0): 53, 29, 19, (201,224,0): 58, 31, 20, (201,225,0): 59, 33, 20, (201,226,0): 61, 33, 19, (201,227,0): 61, 34, 15, (201,228,0): 62, 35, 14, (201,229,0): 67, 41, 18, (201,230,0): 74, 46, 22, (201,231,0): 80, 53, 26, (201,232,0): 82, 52, 24, (201,233,0): 82, 53, 23, (201,234,0): 80, 51, 21, (201,235,0): 79, 50, 20, (201,236,0): 81, 50, 22, (201,237,0): 82, 51, 23, (201,238,0): 83, 52, 24, (201,239,0): 84, 53, 24, (201,240,0): 84, 55, 21, (201,241,0): 80, 52, 15, (201,242,0): 75, 49, 12, (201,243,0): 75, 49, 14, (201,244,0): 77, 51, 18, (201,245,0): 79, 52, 22, (201,246,0): 77, 52, 22, (201,247,0): 75, 49, 22, (201,248,0): 66, 42, 16, (201,249,0): 65, 40, 18, (201,250,0): 64, 39, 19, (201,251,0): 61, 35, 18, (201,252,0): 57, 34, 18, (201,253,0): 55, 32, 18, (201,254,0): 53, 29, 17, (201,255,0): 51, 29, 16, (201,256,0): 51, 29, 18, (201,257,0): 48, 28, 17, (201,258,0): 48, 28, 19, (201,259,0): 49, 29, 22, (201,260,0): 52, 28, 24, (201,261,0): 54, 30, 26, (201,262,0): 57, 31, 30, (201,263,0): 58, 32, 31, (201,264,0): 57, 32, 28, (201,265,0): 58, 33, 28, (201,266,0): 60, 33, 26, (201,267,0): 62, 35, 24, (201,268,0): 66, 38, 24, (201,269,0): 70, 43, 26, (201,270,0): 74, 47, 28, (201,271,0): 76, 49, 28, (201,272,0): 82, 55, 34, (201,273,0): 82, 56, 33, (201,274,0): 82, 56, 33, (201,275,0): 83, 57, 34, (201,276,0): 84, 58, 35, (201,277,0): 85, 59, 36, (201,278,0): 85, 59, 36, (201,279,0): 85, 59, 36, (201,280,0): 88, 62, 37, (201,281,0): 88, 62, 37, (201,282,0): 89, 63, 38, (201,283,0): 89, 63, 38, (201,284,0): 90, 64, 37, (201,285,0): 90, 64, 37, (201,286,0): 91, 65, 38, (201,287,0): 91, 65, 38, (201,288,0): 90, 67, 36, (201,289,0): 88, 67, 36, (201,290,0): 89, 68, 39, (201,291,0): 90, 69, 40, (201,292,0): 90, 71, 41, (201,293,0): 91, 72, 42, (201,294,0): 92, 72, 45, (201,295,0): 92, 72, 45, (201,296,0): 91, 74, 48, (201,297,0): 91, 74, 48, (201,298,0): 88, 72, 46, (201,299,0): 88, 72, 46, (201,300,0): 88, 72, 47, (201,301,0): 88, 72, 47, (201,302,0): 89, 75, 49, (201,303,0): 89, 75, 49, (201,304,0): 89, 73, 50, (201,305,0): 89, 73, 50, (201,306,0): 89, 73, 50, (201,307,0): 89, 73, 50, (201,308,0): 91, 75, 52, (201,309,0): 93, 77, 54, (201,310,0): 95, 79, 56, (201,311,0): 96, 80, 57, (201,312,0): 99, 83, 60, (201,313,0): 99, 83, 60, (201,314,0): 100, 84, 61, (201,315,0): 101, 85, 62, (201,316,0): 102, 86, 63, (201,317,0): 103, 87, 64, (201,318,0): 104, 88, 65, (201,319,0): 103, 89, 63, (201,320,0): 105, 92, 60, (201,321,0): 107, 96, 64, (201,322,0): 114, 100, 71, (201,323,0): 115, 101, 72, (201,324,0): 116, 100, 74, (201,325,0): 120, 105, 76, (201,326,0): 129, 116, 82, (201,327,0): 137, 125, 83, (201,328,0): 156, 149, 95, (201,329,0): 173, 169, 106, (201,330,0): 186, 186, 114, (201,331,0): 183, 187, 110, (201,332,0): 175, 182, 105, (201,333,0): 173, 181, 108, (201,334,0): 172, 181, 114, (201,335,0): 170, 180, 117, (201,336,0): 167, 179, 115, (201,337,0): 165, 180, 115, (201,338,0): 166, 180, 118, (201,339,0): 167, 181, 119, (201,340,0): 166, 180, 119, (201,341,0): 165, 179, 120, (201,342,0): 164, 177, 121, (201,343,0): 163, 176, 120, (201,344,0): 164, 177, 121, (201,345,0): 164, 178, 119, (201,346,0): 166, 180, 121, (201,347,0): 167, 181, 120, (201,348,0): 169, 183, 121, (201,349,0): 170, 185, 120, (201,350,0): 171, 186, 121, (201,351,0): 171, 186, 117, (201,352,0): 172, 189, 111, (201,353,0): 176, 195, 113, (201,354,0): 183, 201, 117, (201,355,0): 185, 205, 116, (201,356,0): 186, 205, 113, (201,357,0): 185, 207, 109, (201,358,0): 188, 208, 109, (201,359,0): 189, 211, 110, (201,360,0): 190, 211, 108, (201,361,0): 191, 214, 110, (201,362,0): 195, 216, 113, (201,363,0): 196, 218, 117, (201,364,0): 197, 218, 117, (201,365,0): 194, 216, 116, (201,366,0): 192, 212, 113, (201,367,0): 189, 211, 110, (201,368,0): 186, 212, 103, (201,369,0): 187, 215, 102, (201,370,0): 194, 221, 108, (201,371,0): 203, 232, 116, (201,372,0): 213, 240, 125, (201,373,0): 217, 246, 128, (201,374,0): 217, 244, 127, (201,375,0): 214, 243, 124, (201,376,0): 210, 237, 120, (201,377,0): 204, 233, 117, (201,378,0): 197, 224, 111, (201,379,0): 190, 218, 107, (201,380,0): 189, 215, 106, (201,381,0): 191, 218, 111, (201,382,0): 197, 222, 118, (201,383,0): 199, 227, 116, (201,384,0): 202, 236, 115, (201,385,0): 206, 243, 114, (201,386,0): 215, 250, 122, (201,387,0): 224, 255, 129, (201,388,0): 229, 255, 135, (201,389,0): 232, 255, 135, (201,390,0): 231, 255, 135, (201,391,0): 232, 251, 135, (201,392,0): 235, 252, 138, (201,393,0): 239, 252, 144, (201,394,0): 243, 254, 150, (201,395,0): 249, 255, 158, (201,396,0): 252, 255, 163, (201,397,0): 253, 255, 166, (201,398,0): 253, 255, 170, (201,399,0): 253, 255, 172, (201,400,0): 252, 254, 171, (201,401,0): 252, 253, 173, (201,402,0): 253, 254, 178, (201,403,0): 253, 254, 178, (201,404,0): 254, 254, 182, (201,405,0): 254, 254, 182, (201,406,0): 254, 253, 186, (201,407,0): 255, 254, 187, (201,408,0): 255, 254, 189, (201,409,0): 255, 254, 189, (201,410,0): 255, 254, 187, (201,411,0): 255, 254, 187, (201,412,0): 255, 255, 185, (201,413,0): 255, 255, 185, (201,414,0): 255, 255, 183, (201,415,0): 254, 255, 183, (201,416,0): 254, 255, 181, (201,417,0): 253, 255, 180, (201,418,0): 253, 255, 180, (201,419,0): 253, 255, 180, (201,420,0): 252, 254, 181, (201,421,0): 251, 255, 181, (201,422,0): 250, 254, 180, (201,423,0): 248, 254, 180, (201,424,0): 242, 252, 179, (201,425,0): 240, 252, 178, (201,426,0): 237, 253, 180, (201,427,0): 233, 254, 179, (201,428,0): 230, 254, 178, (201,429,0): 227, 254, 177, (201,430,0): 225, 253, 178, (201,431,0): 223, 254, 178, (201,432,0): 215, 247, 174, (201,433,0): 212, 245, 174, (201,434,0): 207, 243, 171, (201,435,0): 205, 243, 170, (201,436,0): 204, 241, 172, (201,437,0): 199, 239, 169, (201,438,0): 192, 233, 167, (201,439,0): 187, 229, 163, (201,440,0): 190, 230, 168, (201,441,0): 188, 228, 168, (201,442,0): 188, 226, 169, (201,443,0): 189, 224, 170, (201,444,0): 188, 222, 171, (201,445,0): 184, 216, 166, (201,446,0): 179, 208, 160, (201,447,0): 174, 203, 157, (201,448,0): 172, 199, 156, (201,449,0): 171, 198, 155, (201,450,0): 168, 195, 154, (201,451,0): 166, 193, 152, (201,452,0): 166, 191, 151, (201,453,0): 165, 190, 151, (201,454,0): 167, 189, 153, (201,455,0): 167, 188, 155, (201,456,0): 168, 187, 155, (201,457,0): 163, 182, 152, (201,458,0): 159, 175, 148, (201,459,0): 156, 172, 146, (201,460,0): 155, 171, 145, (201,461,0): 155, 169, 144, (201,462,0): 152, 166, 143, (201,463,0): 150, 162, 138, (201,464,0): 146, 156, 132, (201,465,0): 146, 154, 130, (201,466,0): 145, 153, 129, (201,467,0): 146, 156, 132, (201,468,0): 148, 158, 134, (201,469,0): 146, 158, 134, (201,470,0): 142, 154, 132, (201,471,0): 139, 151, 129, (201,472,0): 142, 154, 132, (201,473,0): 142, 155, 135, (201,474,0): 143, 156, 136, (201,475,0): 142, 157, 136, (201,476,0): 142, 157, 138, (201,477,0): 141, 156, 137, (201,478,0): 140, 155, 136, (201,479,0): 139, 153, 136, (201,480,0): 133, 145, 133, (201,481,0): 131, 143, 131, (201,482,0): 129, 141, 129, (201,483,0): 129, 143, 130, (201,484,0): 129, 145, 132, (201,485,0): 129, 147, 135, (201,486,0): 127, 145, 133, (201,487,0): 123, 143, 132, (201,488,0): 127, 147, 136, (201,489,0): 127, 147, 136, (201,490,0): 129, 144, 137, (201,491,0): 127, 142, 135, (201,492,0): 127, 140, 133, (201,493,0): 124, 137, 130, (201,494,0): 123, 132, 129, (201,495,0): 121, 130, 125, (201,496,0): 121, 126, 122, (201,497,0): 113, 118, 114, (201,498,0): 105, 110, 104, (201,499,0): 102, 107, 101, (201,500,0): 108, 110, 105, (201,501,0): 112, 114, 109, (201,502,0): 114, 113, 108, (201,503,0): 112, 111, 106, (201,504,0): 111, 108, 101, (201,505,0): 114, 111, 104, (201,506,0): 117, 110, 104, (201,507,0): 110, 103, 97, (201,508,0): 101, 92, 85, (201,509,0): 95, 86, 79, (201,510,0): 94, 85, 78, (201,511,0): 97, 88, 79, (201,512,0): 98, 91, 81, (201,513,0): 98, 92, 80, (201,514,0): 98, 94, 82, (201,515,0): 99, 95, 83, (201,516,0): 101, 97, 86, (201,517,0): 103, 99, 88, (201,518,0): 103, 101, 89, (201,519,0): 104, 102, 90, (201,520,0): 101, 101, 89, (201,521,0): 104, 104, 92, (201,522,0): 108, 108, 96, (201,523,0): 109, 109, 97, (201,524,0): 106, 108, 97, (201,525,0): 106, 108, 97, (201,526,0): 107, 109, 98, (201,527,0): 109, 110, 102, (201,528,0): 109, 112, 103, (201,529,0): 110, 113, 104, (201,530,0): 110, 113, 104, (201,531,0): 107, 110, 101, (201,532,0): 104, 107, 98, (201,533,0): 103, 106, 99, (201,534,0): 105, 108, 101, (201,535,0): 107, 109, 104, (201,536,0): 111, 116, 110, (201,537,0): 111, 116, 110, (201,538,0): 112, 117, 113, (201,539,0): 112, 117, 113, (201,540,0): 109, 114, 110, (201,541,0): 106, 111, 107, (201,542,0): 101, 105, 104, (201,543,0): 101, 103, 102, (201,544,0): 105, 103, 104, (201,545,0): 106, 102, 103, (201,546,0): 106, 102, 103, (201,547,0): 106, 102, 103, (201,548,0): 106, 101, 105, (201,549,0): 103, 101, 104, (201,550,0): 103, 101, 106, (201,551,0): 102, 101, 106, (201,552,0): 103, 102, 107, (201,553,0): 103, 104, 108, (201,554,0): 104, 105, 110, (201,555,0): 106, 107, 112, (201,556,0): 108, 108, 116, (201,557,0): 110, 110, 118, (201,558,0): 111, 111, 119, (201,559,0): 110, 113, 120, (201,560,0): 108, 112, 121, (201,561,0): 104, 111, 119, (201,562,0): 104, 108, 117, (201,563,0): 105, 109, 118, (201,564,0): 107, 111, 120, (201,565,0): 108, 112, 121, (201,566,0): 107, 111, 122, (201,567,0): 105, 109, 120, (201,568,0): 105, 107, 119, (201,569,0): 105, 107, 119, (201,570,0): 105, 107, 119, (201,571,0): 105, 107, 119, (201,572,0): 105, 107, 120, (201,573,0): 104, 106, 118, (201,574,0): 104, 106, 119, (201,575,0): 103, 105, 118, (201,576,0): 101, 107, 119, (201,577,0): 100, 108, 119, (201,578,0): 102, 108, 122, (201,579,0): 101, 109, 120, (201,580,0): 103, 109, 123, (201,581,0): 102, 110, 121, (201,582,0): 104, 110, 124, (201,583,0): 103, 111, 122, (201,584,0): 105, 111, 125, (201,585,0): 104, 112, 123, (201,586,0): 104, 110, 124, (201,587,0): 102, 110, 121, (201,588,0): 102, 108, 122, (201,589,0): 100, 108, 119, (201,590,0): 101, 107, 121, (201,591,0): 100, 106, 118, (201,592,0): 95, 101, 113, (201,593,0): 96, 100, 111, (201,594,0): 93, 97, 108, (201,595,0): 91, 94, 103, (201,596,0): 88, 88, 96, (201,597,0): 84, 83, 89, (201,598,0): 80, 79, 85, (201,599,0): 78, 77, 83, (202,0,0): 41, 29, 39, (202,1,0): 41, 29, 39, (202,2,0): 41, 29, 39, (202,3,0): 41, 29, 39, (202,4,0): 41, 29, 39, (202,5,0): 41, 29, 39, (202,6,0): 41, 29, 39, (202,7,0): 41, 29, 39, (202,8,0): 41, 29, 39, (202,9,0): 41, 29, 39, (202,10,0): 41, 29, 39, (202,11,0): 42, 30, 40, (202,12,0): 42, 30, 40, (202,13,0): 43, 31, 41, (202,14,0): 43, 31, 41, (202,15,0): 42, 32, 41, (202,16,0): 43, 33, 42, (202,17,0): 41, 34, 42, (202,18,0): 41, 34, 42, (202,19,0): 42, 35, 43, (202,20,0): 44, 34, 43, (202,21,0): 45, 35, 44, (202,22,0): 45, 35, 44, (202,23,0): 45, 35, 44, (202,24,0): 45, 33, 43, (202,25,0): 45, 33, 43, (202,26,0): 47, 34, 44, (202,27,0): 47, 34, 44, (202,28,0): 48, 35, 45, (202,29,0): 48, 35, 45, (202,30,0): 51, 35, 46, (202,31,0): 51, 35, 46, (202,32,0): 49, 36, 45, (202,33,0): 49, 36, 45, (202,34,0): 51, 35, 45, (202,35,0): 51, 35, 45, (202,36,0): 51, 35, 45, (202,37,0): 51, 35, 45, (202,38,0): 52, 35, 45, (202,39,0): 52, 35, 45, (202,40,0): 56, 36, 47, (202,41,0): 56, 36, 47, (202,42,0): 56, 36, 47, (202,43,0): 56, 36, 47, (202,44,0): 57, 35, 47, (202,45,0): 57, 35, 47, (202,46,0): 57, 35, 47, (202,47,0): 57, 35, 47, (202,48,0): 56, 36, 47, (202,49,0): 56, 36, 47, (202,50,0): 57, 35, 47, (202,51,0): 57, 35, 47, (202,52,0): 57, 36, 45, (202,53,0): 57, 36, 45, (202,54,0): 58, 35, 43, (202,55,0): 58, 35, 43, (202,56,0): 61, 35, 44, (202,57,0): 61, 35, 44, (202,58,0): 61, 36, 42, (202,59,0): 61, 36, 42, (202,60,0): 62, 35, 40, (202,61,0): 62, 35, 40, (202,62,0): 62, 35, 40, (202,63,0): 62, 35, 40, (202,64,0): 61, 36, 42, (202,65,0): 61, 35, 44, (202,66,0): 61, 36, 42, (202,67,0): 61, 36, 42, (202,68,0): 61, 36, 42, (202,69,0): 61, 36, 42, (202,70,0): 62, 35, 40, (202,71,0): 62, 35, 40, (202,72,0): 64, 35, 39, (202,73,0): 64, 35, 39, (202,74,0): 65, 34, 39, (202,75,0): 65, 34, 39, (202,76,0): 65, 35, 37, (202,77,0): 65, 35, 37, (202,78,0): 65, 35, 37, (202,79,0): 65, 35, 37, (202,80,0): 64, 35, 39, (202,81,0): 64, 35, 40, (202,82,0): 65, 34, 39, (202,83,0): 66, 34, 37, (202,84,0): 68, 34, 35, (202,85,0): 69, 33, 35, (202,86,0): 72, 32, 33, (202,87,0): 73, 31, 33, (202,88,0): 77, 35, 37, (202,89,0): 79, 34, 37, (202,90,0): 80, 35, 40, (202,91,0): 80, 35, 40, (202,92,0): 77, 34, 41, (202,93,0): 76, 33, 42, (202,94,0): 73, 31, 41, (202,95,0): 71, 31, 40, (202,96,0): 68, 31, 38, (202,97,0): 67, 32, 38, (202,98,0): 65, 33, 38, (202,99,0): 65, 33, 38, (202,100,0): 65, 33, 38, (202,101,0): 65, 33, 38, (202,102,0): 64, 33, 38, (202,103,0): 64, 33, 38, (202,104,0): 58, 29, 33, (202,105,0): 59, 30, 34, (202,106,0): 59, 30, 34, (202,107,0): 59, 30, 34, (202,108,0): 57, 31, 34, (202,109,0): 56, 30, 33, (202,110,0): 54, 28, 31, (202,111,0): 52, 27, 31, (202,112,0): 40, 19, 24, (202,113,0): 38, 19, 23, (202,114,0): 36, 17, 21, (202,115,0): 35, 16, 20, (202,116,0): 34, 15, 19, (202,117,0): 35, 16, 20, (202,118,0): 35, 16, 20, (202,119,0): 36, 17, 21, (202,120,0): 36, 17, 21, (202,121,0): 37, 18, 22, (202,122,0): 37, 18, 22, (202,123,0): 38, 19, 23, (202,124,0): 40, 21, 25, (202,125,0): 41, 22, 26, (202,126,0): 41, 22, 26, (202,127,0): 42, 23, 27, (202,128,0): 43, 23, 25, (202,129,0): 43, 23, 24, (202,130,0): 44, 24, 25, (202,131,0): 44, 24, 25, (202,132,0): 45, 25, 26, (202,133,0): 45, 25, 26, (202,134,0): 46, 26, 27, (202,135,0): 46, 26, 27, (202,136,0): 45, 25, 26, (202,137,0): 45, 25, 26, (202,138,0): 45, 25, 26, (202,139,0): 45, 25, 26, (202,140,0): 45, 25, 26, (202,141,0): 45, 25, 26, (202,142,0): 45, 25, 26, (202,143,0): 45, 25, 26, (202,144,0): 48, 25, 31, (202,145,0): 48, 25, 31, (202,146,0): 48, 26, 29, (202,147,0): 48, 26, 29, (202,148,0): 48, 26, 29, (202,149,0): 48, 26, 29, (202,150,0): 48, 26, 28, (202,151,0): 48, 26, 28, (202,152,0): 47, 26, 25, (202,153,0): 47, 26, 25, (202,154,0): 47, 26, 25, (202,155,0): 47, 26, 25, (202,156,0): 48, 27, 24, (202,157,0): 48, 27, 24, (202,158,0): 49, 28, 25, (202,159,0): 49, 28, 25, (202,160,0): 49, 28, 25, (202,161,0): 49, 28, 25, (202,162,0): 49, 28, 25, (202,163,0): 49, 28, 25, (202,164,0): 49, 28, 25, (202,165,0): 49, 28, 25, (202,166,0): 49, 28, 25, (202,167,0): 49, 28, 25, (202,168,0): 50, 29, 26, (202,169,0): 50, 29, 26, (202,170,0): 49, 28, 25, (202,171,0): 49, 28, 25, (202,172,0): 48, 27, 24, (202,173,0): 48, 27, 24, (202,174,0): 47, 26, 23, (202,175,0): 47, 26, 23, (202,176,0): 47, 23, 21, (202,177,0): 47, 23, 21, (202,178,0): 48, 24, 22, (202,179,0): 48, 24, 22, (202,180,0): 49, 25, 23, (202,181,0): 49, 25, 23, (202,182,0): 50, 26, 24, (202,183,0): 50, 26, 24, (202,184,0): 51, 27, 25, (202,185,0): 51, 27, 25, (202,186,0): 51, 27, 25, (202,187,0): 51, 27, 25, (202,188,0): 51, 27, 25, (202,189,0): 51, 27, 25, (202,190,0): 51, 27, 25, (202,191,0): 51, 27, 25, (202,192,0): 47, 26, 21, (202,193,0): 47, 26, 21, (202,194,0): 47, 26, 21, (202,195,0): 47, 26, 21, (202,196,0): 48, 27, 22, (202,197,0): 48, 27, 22, (202,198,0): 49, 28, 23, (202,199,0): 49, 28, 23, (202,200,0): 49, 28, 23, (202,201,0): 49, 28, 23, (202,202,0): 49, 28, 23, (202,203,0): 49, 28, 23, (202,204,0): 49, 28, 23, (202,205,0): 49, 28, 23, (202,206,0): 49, 28, 23, (202,207,0): 49, 29, 22, (202,208,0): 52, 27, 22, (202,209,0): 52, 27, 20, (202,210,0): 52, 27, 20, (202,211,0): 52, 27, 20, (202,212,0): 52, 27, 20, (202,213,0): 52, 27, 20, (202,214,0): 52, 27, 20, (202,215,0): 52, 27, 20, (202,216,0): 53, 28, 21, (202,217,0): 53, 28, 21, (202,218,0): 53, 28, 21, (202,219,0): 53, 28, 21, (202,220,0): 53, 28, 21, (202,221,0): 53, 28, 21, (202,222,0): 53, 28, 21, (202,223,0): 53, 29, 19, (202,224,0): 59, 32, 21, (202,225,0): 60, 34, 21, (202,226,0): 61, 33, 19, (202,227,0): 61, 34, 17, (202,228,0): 62, 35, 16, (202,229,0): 66, 40, 17, (202,230,0): 75, 47, 23, (202,231,0): 81, 54, 27, (202,232,0): 82, 52, 24, (202,233,0): 81, 51, 23, (202,234,0): 80, 51, 21, (202,235,0): 80, 51, 21, (202,236,0): 81, 50, 22, (202,237,0): 81, 50, 22, (202,238,0): 82, 50, 25, (202,239,0): 83, 52, 24, (202,240,0): 81, 52, 20, (202,241,0): 79, 50, 16, (202,242,0): 74, 48, 13, (202,243,0): 73, 47, 14, (202,244,0): 75, 48, 18, (202,245,0): 75, 48, 19, (202,246,0): 74, 49, 19, (202,247,0): 73, 47, 20, (202,248,0): 66, 42, 16, (202,249,0): 65, 40, 18, (202,250,0): 64, 39, 19, (202,251,0): 62, 36, 19, (202,252,0): 58, 35, 19, (202,253,0): 56, 33, 17, (202,254,0): 54, 31, 17, (202,255,0): 53, 31, 18, (202,256,0): 52, 30, 19, (202,257,0): 50, 30, 19, (202,258,0): 49, 29, 20, (202,259,0): 50, 30, 23, (202,260,0): 53, 29, 25, (202,261,0): 54, 30, 28, (202,262,0): 57, 31, 30, (202,263,0): 58, 32, 31, (202,264,0): 58, 33, 29, (202,265,0): 58, 33, 28, (202,266,0): 60, 33, 24, (202,267,0): 62, 36, 23, (202,268,0): 67, 40, 23, (202,269,0): 73, 46, 27, (202,270,0): 79, 53, 30, (202,271,0): 83, 57, 34, (202,272,0): 87, 59, 37, (202,273,0): 87, 59, 35, (202,274,0): 87, 59, 35, (202,275,0): 88, 60, 36, (202,276,0): 88, 60, 36, (202,277,0): 89, 61, 37, (202,278,0): 89, 61, 37, (202,279,0): 89, 61, 37, (202,280,0): 90, 62, 38, (202,281,0): 90, 62, 38, (202,282,0): 91, 63, 39, (202,283,0): 91, 63, 39, (202,284,0): 92, 64, 40, (202,285,0): 92, 64, 40, (202,286,0): 93, 65, 41, (202,287,0): 92, 66, 39, (202,288,0): 92, 69, 38, (202,289,0): 90, 69, 38, (202,290,0): 91, 70, 39, (202,291,0): 92, 71, 40, (202,292,0): 92, 73, 43, (202,293,0): 93, 74, 44, (202,294,0): 94, 75, 45, (202,295,0): 94, 75, 45, (202,296,0): 92, 75, 47, (202,297,0): 92, 75, 47, (202,298,0): 90, 74, 48, (202,299,0): 89, 73, 47, (202,300,0): 89, 73, 47, (202,301,0): 90, 74, 48, (202,302,0): 90, 76, 50, (202,303,0): 90, 76, 50, (202,304,0): 91, 75, 52, (202,305,0): 90, 74, 51, (202,306,0): 90, 74, 51, (202,307,0): 90, 74, 51, (202,308,0): 91, 75, 52, (202,309,0): 93, 77, 54, (202,310,0): 94, 78, 55, (202,311,0): 95, 79, 56, (202,312,0): 97, 81, 58, (202,313,0): 98, 82, 59, (202,314,0): 99, 83, 60, (202,315,0): 100, 84, 61, (202,316,0): 101, 85, 62, (202,317,0): 102, 86, 63, (202,318,0): 103, 87, 64, (202,319,0): 102, 88, 62, (202,320,0): 104, 90, 63, (202,321,0): 106, 95, 65, (202,322,0): 112, 98, 71, (202,323,0): 113, 99, 72, (202,324,0): 114, 98, 73, (202,325,0): 117, 101, 75, (202,326,0): 124, 110, 81, (202,327,0): 131, 118, 83, (202,328,0): 145, 137, 90, (202,329,0): 164, 159, 101, (202,330,0): 182, 181, 114, (202,331,0): 185, 189, 113, (202,332,0): 178, 185, 108, (202,333,0): 173, 181, 108, (202,334,0): 171, 181, 112, (202,335,0): 170, 181, 115, (202,336,0): 165, 180, 113, (202,337,0): 165, 182, 114, (202,338,0): 165, 181, 116, (202,339,0): 165, 181, 118, (202,340,0): 165, 181, 119, (202,341,0): 164, 180, 118, (202,342,0): 162, 177, 118, (202,343,0): 161, 176, 117, (202,344,0): 163, 178, 119, (202,345,0): 163, 178, 119, (202,346,0): 164, 179, 120, (202,347,0): 166, 182, 120, (202,348,0): 168, 184, 121, (202,349,0): 169, 185, 120, (202,350,0): 171, 187, 122, (202,351,0): 171, 188, 117, (202,352,0): 172, 191, 110, (202,353,0): 175, 197, 112, (202,354,0): 184, 204, 115, (202,355,0): 186, 209, 118, (202,356,0): 189, 210, 115, (202,357,0): 188, 213, 112, (202,358,0): 192, 215, 111, (202,359,0): 192, 218, 111, (202,360,0): 195, 218, 110, (202,361,0): 195, 221, 112, (202,362,0): 200, 223, 117, (202,363,0): 200, 226, 119, (202,364,0): 201, 224, 120, (202,365,0): 195, 220, 118, (202,366,0): 193, 215, 115, (202,367,0): 188, 213, 111, (202,368,0): 181, 208, 101, (202,369,0): 183, 213, 101, (202,370,0): 191, 219, 108, (202,371,0): 200, 230, 116, (202,372,0): 211, 240, 124, (202,373,0): 214, 245, 126, (202,374,0): 215, 244, 126, (202,375,0): 212, 243, 124, (202,376,0): 205, 234, 118, (202,377,0): 200, 231, 114, (202,378,0): 196, 224, 111, (202,379,0): 191, 221, 109, (202,380,0): 191, 219, 109, (202,381,0): 193, 222, 114, (202,382,0): 199, 226, 121, (202,383,0): 199, 231, 120, (202,384,0): 202, 240, 119, (202,385,0): 206, 245, 120, (202,386,0): 215, 251, 127, (202,387,0): 222, 255, 133, (202,388,0): 229, 255, 139, (202,389,0): 231, 255, 140, (202,390,0): 232, 255, 139, (202,391,0): 234, 252, 140, (202,392,0): 236, 252, 143, (202,393,0): 240, 253, 148, (202,394,0): 243, 254, 152, (202,395,0): 248, 255, 159, (202,396,0): 251, 255, 164, (202,397,0): 253, 255, 170, (202,398,0): 253, 255, 173, (202,399,0): 253, 255, 175, (202,400,0): 251, 254, 175, (202,401,0): 252, 255, 178, (202,402,0): 252, 254, 181, (202,403,0): 252, 254, 181, (202,404,0): 253, 254, 186, (202,405,0): 254, 255, 187, (202,406,0): 254, 254, 190, (202,407,0): 254, 254, 190, (202,408,0): 254, 254, 192, (202,409,0): 254, 254, 192, (202,410,0): 254, 254, 190, (202,411,0): 254, 254, 190, (202,412,0): 254, 255, 189, (202,413,0): 254, 255, 189, (202,414,0): 254, 255, 187, (202,415,0): 254, 255, 187, (202,416,0): 254, 255, 185, (202,417,0): 253, 255, 183, (202,418,0): 253, 255, 185, (202,419,0): 252, 255, 184, (202,420,0): 251, 254, 183, (202,421,0): 251, 254, 183, (202,422,0): 249, 255, 185, (202,423,0): 247, 254, 184, (202,424,0): 241, 252, 183, (202,425,0): 239, 252, 182, (202,426,0): 235, 252, 181, (202,427,0): 231, 253, 180, (202,428,0): 227, 253, 180, (202,429,0): 223, 253, 179, (202,430,0): 221, 253, 178, (202,431,0): 220, 254, 180, (202,432,0): 210, 246, 176, (202,433,0): 206, 243, 173, (202,434,0): 204, 241, 172, (202,435,0): 201, 241, 171, (202,436,0): 201, 242, 176, (202,437,0): 198, 240, 174, (202,438,0): 193, 235, 172, (202,439,0): 188, 232, 169, (202,440,0): 192, 233, 175, (202,441,0): 190, 231, 175, (202,442,0): 187, 227, 174, (202,443,0): 187, 225, 174, (202,444,0): 187, 223, 175, (202,445,0): 184, 217, 170, (202,446,0): 178, 211, 166, (202,447,0): 174, 205, 161, (202,448,0): 172, 200, 159, (202,449,0): 170, 198, 157, (202,450,0): 169, 195, 156, (202,451,0): 167, 193, 154, (202,452,0): 165, 191, 152, (202,453,0): 164, 190, 153, (202,454,0): 165, 189, 155, (202,455,0): 165, 189, 157, (202,456,0): 167, 188, 157, (202,457,0): 163, 183, 155, (202,458,0): 159, 177, 151, (202,459,0): 156, 174, 150, (202,460,0): 155, 173, 149, (202,461,0): 156, 171, 148, (202,462,0): 153, 168, 147, (202,463,0): 151, 165, 142, (202,464,0): 143, 155, 131, (202,465,0): 144, 154, 130, (202,466,0): 145, 155, 131, (202,467,0): 147, 159, 137, (202,468,0): 152, 164, 142, (202,469,0): 154, 166, 144, (202,470,0): 153, 165, 145, (202,471,0): 151, 164, 144, (202,472,0): 147, 160, 140, (202,473,0): 147, 162, 143, (202,474,0): 147, 162, 143, (202,475,0): 147, 162, 143, (202,476,0): 146, 160, 143, (202,477,0): 143, 160, 142, (202,478,0): 141, 158, 140, (202,479,0): 142, 156, 139, (202,480,0): 134, 146, 134, (202,481,0): 131, 143, 133, (202,482,0): 129, 141, 131, (202,483,0): 128, 141, 131, (202,484,0): 128, 144, 133, (202,485,0): 127, 144, 134, (202,486,0): 125, 142, 132, (202,487,0): 121, 141, 132, (202,488,0): 125, 145, 136, (202,489,0): 125, 145, 136, (202,490,0): 127, 142, 137, (202,491,0): 125, 140, 135, (202,492,0): 124, 136, 132, (202,493,0): 121, 133, 129, (202,494,0): 120, 129, 128, (202,495,0): 118, 127, 124, (202,496,0): 114, 119, 115, (202,497,0): 108, 113, 109, (202,498,0): 103, 108, 102, (202,499,0): 103, 108, 102, (202,500,0): 108, 110, 105, (202,501,0): 112, 114, 109, (202,502,0): 113, 112, 107, (202,503,0): 111, 110, 105, (202,504,0): 111, 108, 101, (202,505,0): 113, 110, 103, (202,506,0): 115, 108, 102, (202,507,0): 109, 102, 96, (202,508,0): 101, 92, 85, (202,509,0): 95, 86, 79, (202,510,0): 95, 86, 79, (202,511,0): 97, 88, 79, (202,512,0): 99, 92, 82, (202,513,0): 100, 94, 82, (202,514,0): 99, 95, 83, (202,515,0): 100, 96, 84, (202,516,0): 102, 98, 87, (202,517,0): 104, 100, 89, (202,518,0): 104, 102, 90, (202,519,0): 104, 102, 90, (202,520,0): 99, 99, 89, (202,521,0): 101, 101, 91, (202,522,0): 104, 104, 94, (202,523,0): 105, 105, 95, (202,524,0): 104, 105, 97, (202,525,0): 103, 104, 96, (202,526,0): 104, 105, 97, (202,527,0): 106, 107, 101, (202,528,0): 108, 109, 103, (202,529,0): 109, 110, 104, (202,530,0): 109, 110, 104, (202,531,0): 106, 107, 101, (202,532,0): 102, 105, 98, (202,533,0): 101, 103, 98, (202,534,0): 102, 104, 99, (202,535,0): 105, 107, 104, (202,536,0): 107, 112, 108, (202,537,0): 109, 114, 110, (202,538,0): 111, 117, 115, (202,539,0): 113, 119, 117, (202,540,0): 111, 117, 115, (202,541,0): 107, 113, 111, (202,542,0): 102, 108, 108, (202,543,0): 100, 104, 105, (202,544,0): 105, 105, 107, (202,545,0): 106, 104, 107, (202,546,0): 106, 104, 107, (202,547,0): 107, 105, 108, (202,548,0): 107, 105, 110, (202,549,0): 106, 105, 110, (202,550,0): 107, 106, 111, (202,551,0): 107, 106, 111, (202,552,0): 105, 104, 110, (202,553,0): 105, 106, 111, (202,554,0): 106, 106, 114, (202,555,0): 105, 108, 115, (202,556,0): 107, 110, 117, (202,557,0): 108, 111, 118, (202,558,0): 109, 112, 121, (202,559,0): 109, 113, 122, (202,560,0): 104, 111, 119, (202,561,0): 101, 110, 117, (202,562,0): 99, 106, 114, (202,563,0): 99, 106, 114, (202,564,0): 100, 107, 115, (202,565,0): 100, 107, 115, (202,566,0): 99, 103, 112, (202,567,0): 97, 101, 110, (202,568,0): 93, 97, 106, (202,569,0): 93, 97, 106, (202,570,0): 94, 97, 106, (202,571,0): 95, 98, 107, (202,572,0): 97, 97, 109, (202,573,0): 98, 98, 108, (202,574,0): 98, 98, 110, (202,575,0): 97, 99, 111, (202,576,0): 97, 101, 112, (202,577,0): 95, 102, 112, (202,578,0): 98, 102, 114, (202,579,0): 96, 103, 113, (202,580,0): 98, 102, 114, (202,581,0): 97, 104, 114, (202,582,0): 99, 103, 115, (202,583,0): 97, 104, 114, (202,584,0): 103, 107, 119, (202,585,0): 101, 108, 118, (202,586,0): 102, 106, 118, (202,587,0): 99, 106, 116, (202,588,0): 100, 104, 116, (202,589,0): 97, 104, 114, (202,590,0): 98, 102, 114, (202,591,0): 97, 101, 112, (202,592,0): 94, 98, 109, (202,593,0): 94, 96, 108, (202,594,0): 92, 94, 106, (202,595,0): 91, 91, 101, (202,596,0): 87, 86, 94, (202,597,0): 84, 81, 88, (202,598,0): 80, 77, 84, (202,599,0): 77, 75, 80, (203,0,0): 41, 29, 39, (203,1,0): 41, 29, 39, (203,2,0): 41, 29, 39, (203,3,0): 41, 29, 39, (203,4,0): 41, 29, 39, (203,5,0): 41, 29, 39, (203,6,0): 41, 29, 39, (203,7,0): 41, 29, 39, (203,8,0): 41, 29, 39, (203,9,0): 41, 29, 39, (203,10,0): 41, 29, 39, (203,11,0): 42, 30, 40, (203,12,0): 42, 30, 40, (203,13,0): 43, 31, 41, (203,14,0): 43, 31, 41, (203,15,0): 42, 32, 41, (203,16,0): 43, 33, 42, (203,17,0): 41, 34, 42, (203,18,0): 41, 34, 42, (203,19,0): 42, 35, 43, (203,20,0): 44, 34, 43, (203,21,0): 45, 35, 44, (203,22,0): 45, 35, 44, (203,23,0): 45, 35, 44, (203,24,0): 45, 33, 43, (203,25,0): 45, 33, 43, (203,26,0): 47, 34, 44, (203,27,0): 47, 34, 44, (203,28,0): 48, 35, 45, (203,29,0): 48, 35, 45, (203,30,0): 51, 35, 46, (203,31,0): 51, 35, 46, (203,32,0): 49, 36, 45, (203,33,0): 49, 36, 45, (203,34,0): 51, 35, 45, (203,35,0): 51, 35, 45, (203,36,0): 51, 35, 45, (203,37,0): 51, 35, 45, (203,38,0): 52, 35, 45, (203,39,0): 52, 35, 45, (203,40,0): 56, 36, 47, (203,41,0): 56, 36, 47, (203,42,0): 56, 36, 47, (203,43,0): 56, 36, 47, (203,44,0): 57, 35, 47, (203,45,0): 57, 35, 47, (203,46,0): 57, 35, 47, (203,47,0): 57, 35, 47, (203,48,0): 56, 36, 47, (203,49,0): 56, 36, 47, (203,50,0): 57, 35, 47, (203,51,0): 57, 35, 47, (203,52,0): 57, 36, 45, (203,53,0): 57, 36, 45, (203,54,0): 58, 35, 43, (203,55,0): 58, 35, 43, (203,56,0): 61, 35, 44, (203,57,0): 61, 35, 44, (203,58,0): 61, 36, 42, (203,59,0): 61, 36, 42, (203,60,0): 62, 35, 40, (203,61,0): 62, 35, 40, (203,62,0): 62, 35, 40, (203,63,0): 62, 35, 40, (203,64,0): 61, 35, 44, (203,65,0): 61, 35, 44, (203,66,0): 61, 36, 42, (203,67,0): 61, 36, 42, (203,68,0): 61, 36, 42, (203,69,0): 61, 36, 42, (203,70,0): 62, 35, 40, (203,71,0): 62, 35, 40, (203,72,0): 64, 35, 40, (203,73,0): 64, 35, 39, (203,74,0): 65, 34, 39, (203,75,0): 65, 34, 39, (203,76,0): 65, 35, 37, (203,77,0): 65, 35, 37, (203,78,0): 65, 35, 37, (203,79,0): 64, 35, 39, (203,80,0): 66, 37, 42, (203,81,0): 63, 36, 41, (203,82,0): 65, 36, 41, (203,83,0): 65, 34, 39, (203,84,0): 66, 34, 37, (203,85,0): 67, 33, 34, (203,86,0): 70, 31, 34, (203,87,0): 69, 30, 31, (203,88,0): 73, 33, 34, (203,89,0): 73, 33, 34, (203,90,0): 74, 33, 37, (203,91,0): 75, 34, 40, (203,92,0): 74, 34, 42, (203,93,0): 72, 35, 42, (203,94,0): 71, 34, 42, (203,95,0): 70, 33, 41, (203,96,0): 67, 32, 38, (203,97,0): 67, 32, 38, (203,98,0): 65, 33, 38, (203,99,0): 65, 33, 38, (203,100,0): 65, 33, 38, (203,101,0): 65, 33, 38, (203,102,0): 64, 33, 38, (203,103,0): 64, 33, 38, (203,104,0): 59, 30, 34, (203,105,0): 59, 30, 34, (203,106,0): 59, 30, 34, (203,107,0): 59, 30, 34, (203,108,0): 56, 30, 33, (203,109,0): 55, 29, 32, (203,110,0): 55, 29, 32, (203,111,0): 53, 28, 31, (203,112,0): 42, 22, 24, (203,113,0): 39, 20, 24, (203,114,0): 38, 19, 23, (203,115,0): 36, 17, 21, (203,116,0): 35, 16, 20, (203,117,0): 35, 16, 20, (203,118,0): 35, 16, 20, (203,119,0): 36, 17, 21, (203,120,0): 36, 17, 21, (203,121,0): 37, 18, 22, (203,122,0): 37, 18, 22, (203,123,0): 38, 19, 23, (203,124,0): 40, 21, 25, (203,125,0): 41, 22, 26, (203,126,0): 41, 22, 26, (203,127,0): 42, 23, 25, (203,128,0): 43, 23, 24, (203,129,0): 43, 23, 24, (203,130,0): 44, 24, 25, (203,131,0): 44, 24, 25, (203,132,0): 45, 25, 26, (203,133,0): 45, 25, 26, (203,134,0): 46, 26, 27, (203,135,0): 46, 26, 27, (203,136,0): 46, 26, 27, (203,137,0): 46, 26, 27, (203,138,0): 46, 26, 27, (203,139,0): 46, 26, 27, (203,140,0): 46, 26, 27, (203,141,0): 46, 26, 27, (203,142,0): 46, 26, 27, (203,143,0): 46, 26, 27, (203,144,0): 48, 25, 31, (203,145,0): 48, 25, 31, (203,146,0): 48, 26, 29, (203,147,0): 48, 26, 29, (203,148,0): 48, 26, 29, (203,149,0): 48, 26, 29, (203,150,0): 48, 26, 28, (203,151,0): 48, 26, 28, (203,152,0): 48, 27, 26, (203,153,0): 48, 27, 26, (203,154,0): 48, 27, 26, (203,155,0): 48, 27, 26, (203,156,0): 48, 27, 24, (203,157,0): 48, 27, 24, (203,158,0): 49, 28, 25, (203,159,0): 49, 28, 25, (203,160,0): 49, 28, 25, (203,161,0): 49, 28, 25, (203,162,0): 49, 28, 25, (203,163,0): 49, 28, 25, (203,164,0): 49, 28, 25, (203,165,0): 49, 28, 25, (203,166,0): 49, 28, 25, (203,167,0): 49, 28, 25, (203,168,0): 49, 28, 25, (203,169,0): 49, 28, 25, (203,170,0): 49, 28, 25, (203,171,0): 49, 28, 25, (203,172,0): 48, 27, 24, (203,173,0): 48, 27, 24, (203,174,0): 48, 27, 24, (203,175,0): 48, 27, 24, (203,176,0): 47, 23, 21, (203,177,0): 47, 23, 21, (203,178,0): 48, 24, 22, (203,179,0): 48, 24, 22, (203,180,0): 49, 25, 23, (203,181,0): 49, 25, 23, (203,182,0): 50, 26, 24, (203,183,0): 50, 26, 24, (203,184,0): 52, 28, 26, (203,185,0): 52, 28, 26, (203,186,0): 52, 28, 26, (203,187,0): 52, 28, 26, (203,188,0): 52, 28, 26, (203,189,0): 52, 28, 26, (203,190,0): 52, 28, 26, (203,191,0): 52, 28, 26, (203,192,0): 48, 27, 22, (203,193,0): 48, 27, 22, (203,194,0): 48, 27, 22, (203,195,0): 48, 27, 22, (203,196,0): 48, 27, 22, (203,197,0): 48, 27, 22, (203,198,0): 49, 28, 23, (203,199,0): 49, 28, 23, (203,200,0): 49, 28, 23, (203,201,0): 49, 28, 23, (203,202,0): 49, 28, 23, (203,203,0): 49, 28, 23, (203,204,0): 49, 28, 23, (203,205,0): 49, 28, 23, (203,206,0): 49, 28, 23, (203,207,0): 49, 29, 22, (203,208,0): 53, 28, 23, (203,209,0): 53, 28, 21, (203,210,0): 53, 28, 21, (203,211,0): 53, 28, 21, (203,212,0): 53, 28, 21, (203,213,0): 53, 28, 21, (203,214,0): 53, 28, 21, (203,215,0): 53, 28, 21, (203,216,0): 52, 27, 20, (203,217,0): 52, 27, 20, (203,218,0): 52, 27, 20, (203,219,0): 53, 28, 21, (203,220,0): 53, 28, 21, (203,221,0): 53, 28, 21, (203,222,0): 54, 29, 22, (203,223,0): 54, 30, 20, (203,224,0): 60, 33, 22, (203,225,0): 61, 35, 22, (203,226,0): 61, 33, 21, (203,227,0): 61, 34, 17, (203,228,0): 62, 35, 16, (203,229,0): 67, 41, 18, (203,230,0): 76, 48, 24, (203,231,0): 82, 55, 28, (203,232,0): 82, 52, 26, (203,233,0): 81, 51, 23, (203,234,0): 81, 51, 23, (203,235,0): 80, 50, 22, (203,236,0): 81, 50, 22, (203,237,0): 81, 50, 22, (203,238,0): 81, 49, 24, (203,239,0): 81, 50, 22, (203,240,0): 79, 50, 20, (203,241,0): 77, 48, 16, (203,242,0): 73, 46, 16, (203,243,0): 72, 45, 15, (203,244,0): 72, 45, 16, (203,245,0): 72, 45, 18, (203,246,0): 71, 45, 18, (203,247,0): 71, 45, 20, (203,248,0): 67, 43, 19, (203,249,0): 66, 41, 19, (203,250,0): 65, 40, 20, (203,251,0): 63, 38, 18, (203,252,0): 59, 36, 18, (203,253,0): 57, 34, 18, (203,254,0): 56, 33, 17, (203,255,0): 54, 32, 18, (203,256,0): 54, 32, 19, (203,257,0): 51, 31, 20, (203,258,0): 51, 31, 22, (203,259,0): 51, 31, 24, (203,260,0): 53, 29, 25, (203,261,0): 55, 31, 29, (203,262,0): 58, 32, 31, (203,263,0): 59, 33, 32, (203,264,0): 59, 34, 30, (203,265,0): 59, 34, 29, (203,266,0): 60, 33, 24, (203,267,0): 63, 37, 24, (203,268,0): 69, 42, 25, (203,269,0): 77, 50, 29, (203,270,0): 85, 59, 34, (203,271,0): 90, 64, 37, (203,272,0): 89, 61, 37, (203,273,0): 89, 62, 35, (203,274,0): 90, 62, 38, (203,275,0): 90, 62, 38, (203,276,0): 90, 62, 38, (203,277,0): 90, 62, 38, (203,278,0): 90, 62, 38, (203,279,0): 90, 62, 38, (203,280,0): 91, 63, 39, (203,281,0): 91, 63, 39, (203,282,0): 92, 64, 40, (203,283,0): 92, 64, 40, (203,284,0): 93, 65, 41, (203,285,0): 93, 65, 41, (203,286,0): 94, 66, 42, (203,287,0): 93, 67, 40, (203,288,0): 93, 70, 39, (203,289,0): 92, 71, 40, (203,290,0): 93, 72, 41, (203,291,0): 94, 73, 42, (203,292,0): 94, 75, 45, (203,293,0): 95, 76, 46, (203,294,0): 96, 77, 47, (203,295,0): 96, 77, 47, (203,296,0): 94, 77, 49, (203,297,0): 93, 76, 48, (203,298,0): 91, 75, 49, (203,299,0): 90, 74, 48, (203,300,0): 90, 74, 48, (203,301,0): 91, 75, 49, (203,302,0): 91, 77, 51, (203,303,0): 92, 78, 52, (203,304,0): 93, 77, 54, (203,305,0): 92, 76, 53, (203,306,0): 91, 75, 52, (203,307,0): 91, 75, 52, (203,308,0): 91, 75, 52, (203,309,0): 92, 76, 53, (203,310,0): 93, 77, 54, (203,311,0): 94, 78, 55, (203,312,0): 96, 80, 57, (203,313,0): 97, 81, 58, (203,314,0): 97, 81, 58, (203,315,0): 98, 82, 59, (203,316,0): 100, 84, 61, (203,317,0): 101, 85, 62, (203,318,0): 101, 85, 62, (203,319,0): 101, 86, 63, (203,320,0): 104, 90, 64, (203,321,0): 105, 93, 67, (203,322,0): 110, 96, 69, (203,323,0): 110, 96, 69, (203,324,0): 112, 96, 71, (203,325,0): 115, 99, 74, (203,326,0): 119, 105, 78, (203,327,0): 124, 111, 79, (203,328,0): 133, 124, 81, (203,329,0): 154, 148, 96, (203,330,0): 176, 175, 111, (203,331,0): 185, 189, 115, (203,332,0): 181, 187, 113, (203,333,0): 175, 183, 108, (203,334,0): 171, 181, 110, (203,335,0): 171, 182, 114, (203,336,0): 166, 181, 112, (203,337,0): 166, 183, 115, (203,338,0): 166, 182, 117, (203,339,0): 166, 182, 117, (203,340,0): 165, 181, 118, (203,341,0): 163, 179, 117, (203,342,0): 162, 177, 118, (203,343,0): 161, 176, 117, (203,344,0): 161, 176, 117, (203,345,0): 162, 178, 116, (203,346,0): 162, 178, 116, (203,347,0): 164, 180, 117, (203,348,0): 166, 182, 117, (203,349,0): 168, 185, 117, (203,350,0): 170, 187, 119, (203,351,0): 172, 189, 118, (203,352,0): 173, 195, 113, (203,353,0): 178, 201, 113, (203,354,0): 185, 208, 118, (203,355,0): 190, 214, 120, (203,356,0): 192, 217, 116, (203,357,0): 194, 219, 115, (203,358,0): 197, 223, 114, (203,359,0): 199, 225, 115, (203,360,0): 200, 226, 116, (203,361,0): 203, 230, 117, (203,362,0): 205, 231, 121, (203,363,0): 207, 233, 124, (203,364,0): 204, 230, 123, (203,365,0): 199, 224, 120, (203,366,0): 194, 219, 117, (203,367,0): 189, 216, 113, (203,368,0): 179, 208, 100, (203,369,0): 180, 212, 101, (203,370,0): 189, 218, 108, (203,371,0): 196, 229, 116, (203,372,0): 208, 238, 124, (203,373,0): 210, 243, 126, (203,374,0): 212, 243, 126, (203,375,0): 208, 241, 124, (203,376,0): 201, 232, 115, (203,377,0): 196, 229, 114, (203,378,0): 195, 225, 113, (203,379,0): 191, 224, 111, (203,380,0): 194, 223, 115, (203,381,0): 196, 228, 119, (203,382,0): 202, 231, 125, (203,383,0): 202, 236, 126, (203,384,0): 205, 244, 127, (203,385,0): 207, 248, 126, (203,386,0): 214, 252, 131, (203,387,0): 221, 255, 136, (203,388,0): 228, 255, 142, (203,389,0): 231, 255, 143, (203,390,0): 234, 255, 145, (203,391,0): 236, 254, 146, (203,392,0): 238, 253, 148, (203,393,0): 242, 253, 151, (203,394,0): 246, 253, 157, (203,395,0): 247, 254, 161, (203,396,0): 250, 254, 167, (203,397,0): 252, 255, 171, (203,398,0): 253, 255, 175, (203,399,0): 253, 255, 177, (203,400,0): 252, 254, 179, (203,401,0): 252, 254, 181, (203,402,0): 252, 253, 183, (203,403,0): 253, 254, 186, (203,404,0): 253, 254, 188, (203,405,0): 254, 254, 190, (203,406,0): 254, 254, 192, (203,407,0): 255, 255, 195, (203,408,0): 255, 254, 197, (203,409,0): 255, 254, 197, (203,410,0): 255, 255, 195, (203,411,0): 255, 255, 195, (203,412,0): 255, 255, 193, (203,413,0): 255, 255, 191, (203,414,0): 255, 255, 191, (203,415,0): 255, 255, 190, (203,416,0): 254, 255, 190, (203,417,0): 253, 255, 189, (203,418,0): 253, 255, 189, (203,419,0): 252, 255, 188, (203,420,0): 252, 254, 189, (203,421,0): 249, 254, 188, (203,422,0): 248, 255, 188, (203,423,0): 246, 255, 190, (203,424,0): 240, 252, 186, (203,425,0): 237, 254, 186, (203,426,0): 234, 253, 187, (203,427,0): 228, 253, 185, (203,428,0): 226, 253, 184, (203,429,0): 221, 252, 182, (203,430,0): 219, 252, 183, (203,431,0): 217, 253, 183, (203,432,0): 207, 244, 175, (203,433,0): 203, 242, 175, (203,434,0): 200, 239, 174, (203,435,0): 199, 240, 174, (203,436,0): 200, 242, 178, (203,437,0): 197, 241, 178, (203,438,0): 194, 238, 177, (203,439,0): 191, 235, 176, (203,440,0): 194, 237, 181, (203,441,0): 191, 234, 180, (203,442,0): 189, 229, 177, (203,443,0): 187, 227, 177, (203,444,0): 186, 224, 177, (203,445,0): 183, 219, 175, (203,446,0): 180, 213, 170, (203,447,0): 176, 208, 167, (203,448,0): 171, 202, 161, (203,449,0): 172, 200, 160, (203,450,0): 170, 196, 157, (203,451,0): 167, 193, 156, (203,452,0): 165, 191, 154, (203,453,0): 164, 190, 155, (203,454,0): 165, 189, 157, (203,455,0): 165, 188, 159, (203,456,0): 165, 188, 159, (203,457,0): 164, 184, 157, (203,458,0): 160, 180, 155, (203,459,0): 158, 178, 153, (203,460,0): 157, 176, 154, (203,461,0): 156, 175, 153, (203,462,0): 153, 171, 149, (203,463,0): 150, 168, 146, (203,464,0): 144, 156, 134, (203,465,0): 143, 155, 133, (203,466,0): 144, 156, 134, (203,467,0): 149, 161, 139, (203,468,0): 155, 167, 145, (203,469,0): 158, 172, 149, (203,470,0): 158, 171, 151, (203,471,0): 156, 171, 150, (203,472,0): 153, 168, 149, (203,473,0): 153, 168, 149, (203,474,0): 153, 168, 149, (203,475,0): 151, 168, 150, (203,476,0): 149, 166, 148, (203,477,0): 147, 164, 146, (203,478,0): 145, 162, 144, (203,479,0): 146, 160, 145, (203,480,0): 136, 148, 138, (203,481,0): 133, 145, 135, (203,482,0): 131, 143, 133, (203,483,0): 129, 142, 132, (203,484,0): 128, 144, 134, (203,485,0): 127, 144, 134, (203,486,0): 124, 141, 133, (203,487,0): 120, 140, 131, (203,488,0): 123, 143, 134, (203,489,0): 122, 142, 133, (203,490,0): 124, 139, 134, (203,491,0): 122, 137, 132, (203,492,0): 121, 133, 131, (203,493,0): 117, 129, 127, (203,494,0): 116, 125, 124, (203,495,0): 114, 123, 122, (203,496,0): 107, 111, 110, (203,497,0): 104, 109, 105, (203,498,0): 102, 107, 101, (203,499,0): 103, 108, 102, (203,500,0): 109, 111, 106, (203,501,0): 111, 113, 108, (203,502,0): 112, 111, 106, (203,503,0): 110, 109, 104, (203,504,0): 111, 108, 101, (203,505,0): 112, 109, 102, (203,506,0): 114, 107, 101, (203,507,0): 109, 102, 96, (203,508,0): 102, 93, 86, (203,509,0): 97, 88, 81, (203,510,0): 96, 87, 80, (203,511,0): 97, 88, 79, (203,512,0): 99, 93, 81, (203,513,0): 99, 93, 81, (203,514,0): 98, 94, 82, (203,515,0): 99, 95, 83, (203,516,0): 101, 97, 86, (203,517,0): 102, 98, 87, (203,518,0): 102, 100, 88, (203,519,0): 102, 100, 88, (203,520,0): 96, 96, 86, (203,521,0): 98, 98, 88, (203,522,0): 100, 100, 92, (203,523,0): 102, 102, 94, (203,524,0): 101, 102, 94, (203,525,0): 101, 102, 96, (203,526,0): 101, 102, 96, (203,527,0): 101, 102, 96, (203,528,0): 105, 106, 100, (203,529,0): 106, 107, 101, (203,530,0): 106, 107, 101, (203,531,0): 103, 104, 98, (203,532,0): 100, 101, 96, (203,533,0): 97, 99, 94, (203,534,0): 99, 101, 98, (203,535,0): 102, 104, 101, (203,536,0): 103, 108, 104, (203,537,0): 106, 111, 107, (203,538,0): 110, 116, 114, (203,539,0): 114, 120, 118, (203,540,0): 114, 120, 120, (203,541,0): 110, 116, 116, (203,542,0): 103, 112, 111, (203,543,0): 101, 107, 107, (203,544,0): 104, 105, 107, (203,545,0): 105, 105, 107, (203,546,0): 107, 105, 108, (203,547,0): 107, 107, 109, (203,548,0): 107, 106, 111, (203,549,0): 108, 107, 112, (203,550,0): 109, 108, 113, (203,551,0): 108, 109, 113, (203,552,0): 107, 108, 113, (203,553,0): 105, 108, 113, (203,554,0): 106, 109, 116, (203,555,0): 105, 110, 116, (203,556,0): 107, 110, 117, (203,557,0): 107, 112, 118, (203,558,0): 108, 112, 121, (203,559,0): 106, 113, 121, (203,560,0): 101, 110, 117, (203,561,0): 98, 109, 115, (203,562,0): 96, 105, 112, (203,563,0): 96, 105, 112, (203,564,0): 96, 105, 112, (203,565,0): 95, 102, 110, (203,566,0): 91, 98, 106, (203,567,0): 90, 94, 103, (203,568,0): 84, 88, 97, (203,569,0): 84, 88, 97, (203,570,0): 85, 88, 97, (203,571,0): 85, 88, 97, (203,572,0): 88, 88, 98, (203,573,0): 89, 89, 99, (203,574,0): 91, 91, 101, (203,575,0): 91, 91, 101, (203,576,0): 93, 96, 105, (203,577,0): 93, 97, 106, (203,578,0): 95, 97, 109, (203,579,0): 95, 99, 108, (203,580,0): 97, 99, 111, (203,581,0): 98, 102, 111, (203,582,0): 100, 102, 114, (203,583,0): 99, 103, 112, (203,584,0): 102, 104, 116, (203,585,0): 100, 104, 113, (203,586,0): 100, 102, 114, (203,587,0): 98, 102, 111, (203,588,0): 97, 99, 111, (203,589,0): 95, 99, 108, (203,590,0): 95, 97, 109, (203,591,0): 94, 97, 106, (203,592,0): 91, 93, 105, (203,593,0): 92, 92, 102, (203,594,0): 90, 90, 100, (203,595,0): 88, 87, 95, (203,596,0): 85, 82, 89, (203,597,0): 83, 78, 84, (203,598,0): 79, 74, 80, (203,599,0): 78, 72, 76, (204,0,0): 41, 29, 39, (204,1,0): 41, 29, 39, (204,2,0): 41, 29, 39, (204,3,0): 41, 29, 39, (204,4,0): 41, 29, 39, (204,5,0): 41, 29, 39, (204,6,0): 41, 29, 39, (204,7,0): 41, 29, 39, (204,8,0): 41, 29, 39, (204,9,0): 41, 29, 39, (204,10,0): 41, 29, 39, (204,11,0): 42, 30, 40, (204,12,0): 42, 30, 40, (204,13,0): 43, 31, 41, (204,14,0): 43, 31, 41, (204,15,0): 42, 32, 41, (204,16,0): 43, 33, 42, (204,17,0): 41, 34, 42, (204,18,0): 41, 34, 42, (204,19,0): 42, 35, 43, (204,20,0): 44, 34, 43, (204,21,0): 45, 35, 44, (204,22,0): 45, 35, 44, (204,23,0): 45, 35, 44, (204,24,0): 45, 33, 43, (204,25,0): 45, 33, 43, (204,26,0): 47, 34, 44, (204,27,0): 47, 34, 44, (204,28,0): 48, 35, 45, (204,29,0): 48, 35, 45, (204,30,0): 51, 35, 46, (204,31,0): 51, 35, 46, (204,32,0): 49, 36, 45, (204,33,0): 49, 36, 45, (204,34,0): 51, 35, 45, (204,35,0): 51, 35, 45, (204,36,0): 51, 35, 45, (204,37,0): 51, 35, 45, (204,38,0): 52, 35, 45, (204,39,0): 52, 35, 45, (204,40,0): 56, 36, 47, (204,41,0): 56, 36, 47, (204,42,0): 56, 36, 47, (204,43,0): 56, 36, 47, (204,44,0): 57, 35, 47, (204,45,0): 57, 35, 47, (204,46,0): 57, 35, 47, (204,47,0): 57, 35, 47, (204,48,0): 56, 36, 47, (204,49,0): 56, 36, 47, (204,50,0): 57, 35, 47, (204,51,0): 57, 35, 47, (204,52,0): 57, 36, 45, (204,53,0): 57, 36, 45, (204,54,0): 58, 35, 43, (204,55,0): 58, 35, 43, (204,56,0): 61, 35, 44, (204,57,0): 61, 35, 44, (204,58,0): 61, 36, 42, (204,59,0): 61, 36, 42, (204,60,0): 62, 35, 40, (204,61,0): 62, 35, 40, (204,62,0): 62, 35, 40, (204,63,0): 62, 35, 40, (204,64,0): 61, 35, 44, (204,65,0): 59, 36, 44, (204,66,0): 59, 36, 44, (204,67,0): 59, 36, 44, (204,68,0): 61, 36, 42, (204,69,0): 61, 36, 42, (204,70,0): 62, 35, 42, (204,71,0): 62, 35, 40, (204,72,0): 62, 35, 40, (204,73,0): 62, 35, 40, (204,74,0): 64, 35, 39, (204,75,0): 64, 35, 39, (204,76,0): 65, 34, 39, (204,77,0): 65, 34, 39, (204,78,0): 65, 35, 37, (204,79,0): 64, 35, 39, (204,80,0): 66, 37, 42, (204,81,0): 64, 37, 42, (204,82,0): 65, 36, 41, (204,83,0): 65, 34, 39, (204,84,0): 66, 34, 37, (204,85,0): 67, 33, 34, (204,86,0): 66, 32, 33, (204,87,0): 67, 31, 33, (204,88,0): 70, 31, 34, (204,89,0): 70, 31, 34, (204,90,0): 70, 34, 38, (204,91,0): 71, 35, 39, (204,92,0): 70, 35, 41, (204,93,0): 68, 35, 42, (204,94,0): 67, 34, 43, (204,95,0): 67, 34, 41, (204,96,0): 66, 31, 37, (204,97,0): 66, 31, 37, (204,98,0): 64, 32, 37, (204,99,0): 64, 32, 37, (204,100,0): 64, 32, 37, (204,101,0): 64, 32, 37, (204,102,0): 63, 32, 37, (204,103,0): 63, 32, 37, (204,104,0): 60, 31, 35, (204,105,0): 59, 30, 34, (204,106,0): 59, 30, 34, (204,107,0): 58, 29, 33, (204,108,0): 55, 29, 32, (204,109,0): 55, 29, 32, (204,110,0): 55, 29, 32, (204,111,0): 54, 29, 32, (204,112,0): 45, 23, 26, (204,113,0): 43, 23, 25, (204,114,0): 41, 21, 23, (204,115,0): 39, 19, 21, (204,116,0): 38, 18, 20, (204,117,0): 37, 17, 19, (204,118,0): 37, 17, 19, (204,119,0): 38, 18, 20, (204,120,0): 37, 17, 19, (204,121,0): 38, 18, 20, (204,122,0): 38, 18, 20, (204,123,0): 39, 19, 21, (204,124,0): 41, 21, 23, (204,125,0): 42, 22, 24, (204,126,0): 42, 22, 24, (204,127,0): 43, 23, 25, (204,128,0): 43, 23, 24, (204,129,0): 43, 23, 24, (204,130,0): 44, 24, 25, (204,131,0): 44, 24, 25, (204,132,0): 45, 25, 26, (204,133,0): 45, 25, 26, (204,134,0): 46, 26, 27, (204,135,0): 46, 26, 27, (204,136,0): 46, 26, 27, (204,137,0): 46, 26, 27, (204,138,0): 46, 26, 27, (204,139,0): 46, 26, 27, (204,140,0): 46, 26, 27, (204,141,0): 46, 26, 27, (204,142,0): 46, 26, 27, (204,143,0): 46, 26, 27, (204,144,0): 49, 26, 32, (204,145,0): 49, 26, 32, (204,146,0): 49, 27, 30, (204,147,0): 49, 27, 30, (204,148,0): 49, 27, 30, (204,149,0): 49, 27, 30, (204,150,0): 49, 27, 29, (204,151,0): 49, 27, 29, (204,152,0): 49, 28, 27, (204,153,0): 49, 28, 27, (204,154,0): 49, 28, 27, (204,155,0): 49, 28, 27, (204,156,0): 49, 28, 25, (204,157,0): 49, 28, 25, (204,158,0): 48, 27, 24, (204,159,0): 48, 27, 24, (204,160,0): 49, 28, 25, (204,161,0): 49, 28, 25, (204,162,0): 49, 28, 25, (204,163,0): 49, 28, 25, (204,164,0): 49, 28, 25, (204,165,0): 49, 28, 25, (204,166,0): 49, 28, 25, (204,167,0): 49, 28, 25, (204,168,0): 48, 27, 24, (204,169,0): 48, 27, 24, (204,170,0): 48, 27, 24, (204,171,0): 48, 27, 24, (204,172,0): 49, 28, 25, (204,173,0): 49, 28, 25, (204,174,0): 49, 28, 25, (204,175,0): 49, 28, 25, (204,176,0): 48, 24, 22, (204,177,0): 50, 24, 23, (204,178,0): 50, 24, 23, (204,179,0): 50, 24, 23, (204,180,0): 51, 25, 24, (204,181,0): 52, 26, 25, (204,182,0): 52, 26, 25, (204,183,0): 52, 26, 25, (204,184,0): 53, 27, 26, (204,185,0): 53, 27, 26, (204,186,0): 53, 27, 26, (204,187,0): 53, 27, 26, (204,188,0): 53, 27, 26, (204,189,0): 53, 27, 26, (204,190,0): 53, 27, 26, (204,191,0): 52, 28, 26, (204,192,0): 49, 28, 23, (204,193,0): 49, 28, 23, (204,194,0): 49, 28, 23, (204,195,0): 49, 28, 23, (204,196,0): 49, 28, 23, (204,197,0): 49, 28, 23, (204,198,0): 48, 27, 22, (204,199,0): 48, 27, 22, (204,200,0): 49, 28, 23, (204,201,0): 49, 28, 23, (204,202,0): 49, 28, 23, (204,203,0): 49, 28, 23, (204,204,0): 49, 28, 23, (204,205,0): 49, 28, 23, (204,206,0): 49, 28, 23, (204,207,0): 49, 29, 22, (204,208,0): 53, 28, 23, (204,209,0): 53, 28, 21, (204,210,0): 53, 28, 21, (204,211,0): 53, 28, 21, (204,212,0): 53, 28, 21, (204,213,0): 53, 28, 21, (204,214,0): 53, 28, 21, (204,215,0): 53, 28, 21, (204,216,0): 52, 27, 20, (204,217,0): 52, 27, 20, (204,218,0): 52, 27, 20, (204,219,0): 53, 28, 21, (204,220,0): 54, 29, 22, (204,221,0): 55, 30, 23, (204,222,0): 55, 30, 23, (204,223,0): 55, 30, 23, (204,224,0): 60, 33, 24, (204,225,0): 61, 34, 23, (204,226,0): 62, 34, 22, (204,227,0): 62, 34, 20, (204,228,0): 63, 36, 19, (204,229,0): 68, 41, 20, (204,230,0): 76, 48, 26, (204,231,0): 82, 55, 28, (204,232,0): 81, 51, 25, (204,233,0): 81, 51, 25, (204,234,0): 81, 51, 25, (204,235,0): 80, 50, 24, (204,236,0): 81, 49, 24, (204,237,0): 80, 48, 23, (204,238,0): 79, 47, 24, (204,239,0): 78, 46, 21, (204,240,0): 77, 47, 19, (204,241,0): 77, 47, 19, (204,242,0): 73, 46, 17, (204,243,0): 71, 44, 17, (204,244,0): 69, 42, 15, (204,245,0): 68, 40, 16, (204,246,0): 68, 42, 17, (204,247,0): 69, 43, 20, (204,248,0): 67, 43, 19, (204,249,0): 66, 41, 19, (204,250,0): 65, 40, 20, (204,251,0): 64, 39, 19, (204,252,0): 60, 37, 19, (204,253,0): 59, 36, 18, (204,254,0): 58, 35, 17, (204,255,0): 56, 35, 18, (204,256,0): 56, 34, 21, (204,257,0): 53, 33, 22, (204,258,0): 52, 32, 23, (204,259,0): 52, 32, 25, (204,260,0): 54, 30, 26, (204,261,0): 56, 32, 30, (204,262,0): 58, 32, 33, (204,263,0): 59, 33, 32, (204,264,0): 60, 35, 31, (204,265,0): 60, 35, 30, (204,266,0): 62, 35, 26, (204,267,0): 65, 39, 26, (204,268,0): 72, 45, 26, (204,269,0): 81, 55, 32, (204,270,0): 89, 63, 36, (204,271,0): 94, 69, 39, (204,272,0): 91, 64, 37, (204,273,0): 91, 64, 35, (204,274,0): 90, 63, 36, (204,275,0): 90, 63, 36, (204,276,0): 90, 63, 36, (204,277,0): 90, 63, 36, (204,278,0): 90, 63, 36, (204,279,0): 90, 63, 36, (204,280,0): 92, 65, 38, (204,281,0): 92, 65, 38, (204,282,0): 93, 65, 41, (204,283,0): 93, 65, 41, (204,284,0): 94, 66, 42, (204,285,0): 94, 66, 42, (204,286,0): 95, 67, 43, (204,287,0): 94, 68, 41, (204,288,0): 95, 72, 41, (204,289,0): 93, 73, 40, (204,290,0): 94, 73, 42, (204,291,0): 95, 74, 43, (204,292,0): 95, 76, 44, (204,293,0): 96, 77, 45, (204,294,0): 97, 78, 48, (204,295,0): 97, 78, 48, (204,296,0): 96, 79, 51, (204,297,0): 95, 78, 50, (204,298,0): 93, 78, 49, (204,299,0): 92, 77, 48, (204,300,0): 92, 76, 50, (204,301,0): 93, 77, 51, (204,302,0): 93, 79, 52, (204,303,0): 94, 80, 54, (204,304,0): 95, 79, 56, (204,305,0): 94, 77, 57, (204,306,0): 93, 76, 56, (204,307,0): 92, 75, 55, (204,308,0): 91, 74, 54, (204,309,0): 92, 75, 55, (204,310,0): 93, 76, 56, (204,311,0): 93, 76, 56, (204,312,0): 96, 79, 59, (204,313,0): 96, 79, 59, (204,314,0): 97, 80, 60, (204,315,0): 98, 81, 61, (204,316,0): 99, 82, 62, (204,317,0): 100, 83, 63, (204,318,0): 101, 84, 64, (204,319,0): 100, 85, 64, (204,320,0): 102, 87, 64, (204,321,0): 103, 91, 67, (204,322,0): 107, 93, 67, (204,323,0): 109, 95, 69, (204,324,0): 111, 95, 70, (204,325,0): 113, 97, 72, (204,326,0): 116, 102, 76, (204,327,0): 120, 106, 77, (204,328,0): 125, 115, 79, (204,329,0): 143, 137, 89, (204,330,0): 166, 164, 105, (204,331,0): 181, 184, 115, (204,332,0): 182, 188, 114, (204,333,0): 177, 185, 110, (204,334,0): 172, 182, 109, (204,335,0): 173, 185, 113, (204,336,0): 168, 183, 114, (204,337,0): 167, 184, 114, (204,338,0): 168, 185, 117, (204,339,0): 167, 183, 118, (204,340,0): 166, 182, 119, (204,341,0): 164, 180, 117, (204,342,0): 162, 178, 116, (204,343,0): 161, 177, 115, (204,344,0): 160, 176, 114, (204,345,0): 160, 176, 114, (204,346,0): 160, 176, 114, (204,347,0): 161, 177, 114, (204,348,0): 164, 180, 115, (204,349,0): 167, 184, 116, (204,350,0): 170, 187, 119, (204,351,0): 172, 190, 116, (204,352,0): 177, 199, 116, (204,353,0): 181, 206, 115, (204,354,0): 189, 214, 122, (204,355,0): 194, 220, 123, (204,356,0): 196, 223, 120, (204,357,0): 198, 225, 118, (204,358,0): 201, 229, 118, (204,359,0): 204, 233, 117, (204,360,0): 207, 236, 120, (204,361,0): 208, 237, 121, (204,362,0): 210, 238, 125, (204,363,0): 210, 238, 125, (204,364,0): 207, 235, 125, (204,365,0): 202, 229, 122, (204,366,0): 196, 223, 118, (204,367,0): 193, 220, 115, (204,368,0): 181, 213, 106, (204,369,0): 182, 215, 108, (204,370,0): 187, 219, 112, (204,371,0): 193, 227, 117, (204,372,0): 202, 234, 123, (204,373,0): 205, 239, 126, (204,374,0): 206, 239, 124, (204,375,0): 204, 239, 123, (204,376,0): 197, 230, 115, (204,377,0): 195, 230, 114, (204,378,0): 195, 228, 115, (204,379,0): 194, 228, 115, (204,380,0): 197, 229, 120, (204,381,0): 199, 233, 123, (204,382,0): 204, 236, 129, (204,383,0): 204, 240, 130, (204,384,0): 208, 248, 134, (204,385,0): 208, 251, 135, (204,386,0): 215, 254, 139, (204,387,0): 222, 255, 143, (204,388,0): 228, 255, 146, (204,389,0): 232, 255, 148, (204,390,0): 235, 255, 149, (204,391,0): 238, 255, 151, (204,392,0): 242, 254, 154, (204,393,0): 243, 253, 156, (204,394,0): 246, 253, 160, (204,395,0): 247, 253, 163, (204,396,0): 249, 253, 168, (204,397,0): 251, 255, 171, (204,398,0): 251, 255, 174, (204,399,0): 252, 255, 179, (204,400,0): 252, 253, 183, (204,401,0): 253, 254, 186, (204,402,0): 253, 254, 188, (204,403,0): 254, 254, 190, (204,404,0): 254, 254, 192, (204,405,0): 255, 255, 195, (204,406,0): 255, 254, 197, (204,407,0): 255, 254, 197, (204,408,0): 255, 254, 198, (204,409,0): 255, 254, 198, (204,410,0): 255, 254, 198, (204,411,0): 255, 254, 198, (204,412,0): 255, 254, 197, (204,413,0): 255, 255, 195, (204,414,0): 255, 255, 195, (204,415,0): 255, 255, 193, (204,416,0): 254, 255, 193, (204,417,0): 252, 255, 195, (204,418,0): 252, 255, 195, (204,419,0): 251, 255, 194, (204,420,0): 251, 255, 196, (204,421,0): 250, 254, 195, (204,422,0): 249, 255, 195, (204,423,0): 245, 255, 195, (204,424,0): 240, 254, 193, (204,425,0): 236, 254, 192, (204,426,0): 234, 254, 193, (204,427,0): 228, 254, 191, (204,428,0): 224, 253, 189, (204,429,0): 220, 252, 187, (204,430,0): 216, 252, 188, (204,431,0): 215, 251, 187, (204,432,0): 205, 244, 179, (204,433,0): 203, 242, 177, (204,434,0): 200, 239, 176, (204,435,0): 199, 239, 177, (204,436,0): 200, 242, 179, (204,437,0): 199, 243, 182, (204,438,0): 197, 241, 182, (204,439,0): 194, 239, 182, (204,440,0): 197, 241, 188, (204,441,0): 193, 237, 186, (204,442,0): 188, 230, 182, (204,443,0): 186, 225, 180, (204,444,0): 185, 222, 178, (204,445,0): 182, 219, 176, (204,446,0): 179, 214, 172, (204,447,0): 177, 209, 170, (204,448,0): 173, 203, 165, (204,449,0): 173, 201, 163, (204,450,0): 170, 198, 160, (204,451,0): 167, 194, 159, (204,452,0): 166, 192, 157, (204,453,0): 164, 189, 157, (204,454,0): 164, 189, 157, (204,455,0): 164, 189, 159, (204,456,0): 165, 190, 161, (204,457,0): 163, 186, 160, (204,458,0): 160, 183, 157, (204,459,0): 159, 181, 158, (204,460,0): 158, 180, 159, (204,461,0): 157, 179, 158, (204,462,0): 155, 174, 154, (204,463,0): 151, 170, 150, (204,464,0): 146, 159, 139, (204,465,0): 145, 158, 138, (204,466,0): 145, 158, 138, (204,467,0): 148, 161, 141, (204,468,0): 154, 167, 147, (204,469,0): 157, 170, 150, (204,470,0): 158, 171, 153, (204,471,0): 157, 172, 153, (204,472,0): 157, 171, 154, (204,473,0): 155, 172, 154, (204,474,0): 155, 172, 154, (204,475,0): 154, 172, 156, (204,476,0): 152, 170, 154, (204,477,0): 150, 168, 152, (204,478,0): 148, 166, 150, (204,479,0): 148, 165, 149, (204,480,0): 140, 152, 142, (204,481,0): 137, 148, 140, (204,482,0): 134, 145, 137, (204,483,0): 132, 145, 136, (204,484,0): 130, 145, 138, (204,485,0): 128, 145, 137, (204,486,0): 125, 142, 136, (204,487,0): 120, 139, 133, (204,488,0): 122, 141, 135, (204,489,0): 121, 140, 134, (204,490,0): 123, 138, 135, (204,491,0): 120, 135, 132, (204,492,0): 119, 131, 131, (204,493,0): 115, 127, 127, (204,494,0): 113, 121, 123, (204,495,0): 111, 120, 119, (204,496,0): 105, 109, 108, (204,497,0): 104, 109, 105, (204,498,0): 103, 108, 102, (204,499,0): 104, 109, 103, (204,500,0): 109, 111, 106, (204,501,0): 111, 113, 108, (204,502,0): 112, 111, 106, (204,503,0): 111, 110, 105, (204,504,0): 113, 110, 103, (204,505,0): 113, 110, 103, (204,506,0): 114, 107, 101, (204,507,0): 109, 102, 96, (204,508,0): 104, 95, 88, (204,509,0): 100, 91, 84, (204,510,0): 98, 89, 82, (204,511,0): 98, 89, 80, (204,512,0): 98, 92, 80, (204,513,0): 98, 92, 78, (204,514,0): 97, 93, 81, (204,515,0): 98, 94, 82, (204,516,0): 99, 95, 84, (204,517,0): 100, 96, 85, (204,518,0): 99, 96, 87, (204,519,0): 100, 97, 88, (204,520,0): 94, 94, 86, (204,521,0): 95, 95, 87, (204,522,0): 96, 95, 90, (204,523,0): 98, 97, 92, (204,524,0): 99, 100, 94, (204,525,0): 99, 100, 95, (204,526,0): 99, 100, 95, (204,527,0): 98, 99, 94, (204,528,0): 103, 102, 98, (204,529,0): 104, 103, 99, (204,530,0): 103, 102, 98, (204,531,0): 100, 101, 96, (204,532,0): 96, 96, 94, (204,533,0): 95, 95, 93, (204,534,0): 96, 98, 97, (204,535,0): 99, 101, 100, (204,536,0): 99, 103, 102, (204,537,0): 103, 107, 106, (204,538,0): 108, 114, 114, (204,539,0): 112, 118, 118, (204,540,0): 112, 120, 122, (204,541,0): 109, 117, 119, (204,542,0): 105, 113, 115, (204,543,0): 104, 109, 112, (204,544,0): 104, 105, 107, (204,545,0): 104, 105, 107, (204,546,0): 106, 105, 110, (204,547,0): 106, 107, 111, (204,548,0): 106, 107, 111, (204,549,0): 107, 108, 112, (204,550,0): 108, 109, 114, (204,551,0): 106, 109, 114, (204,552,0): 106, 109, 116, (204,553,0): 105, 110, 116, (204,554,0): 106, 111, 117, (204,555,0): 104, 111, 117, (204,556,0): 106, 110, 119, (204,557,0): 104, 111, 119, (204,558,0): 104, 111, 119, (204,559,0): 104, 111, 119, (204,560,0): 99, 109, 118, (204,561,0): 95, 108, 116, (204,562,0): 95, 105, 114, (204,563,0): 95, 105, 114, (204,564,0): 95, 106, 112, (204,565,0): 94, 103, 110, (204,566,0): 90, 99, 106, (204,567,0): 87, 94, 102, (204,568,0): 80, 87, 95, (204,569,0): 79, 86, 94, (204,570,0): 80, 85, 91, (204,571,0): 79, 84, 90, (204,572,0): 80, 83, 90, (204,573,0): 82, 85, 92, (204,574,0): 85, 85, 93, (204,575,0): 86, 86, 94, (204,576,0): 92, 92, 100, (204,577,0): 91, 94, 101, (204,578,0): 94, 94, 104, (204,579,0): 95, 98, 105, (204,580,0): 99, 99, 109, (204,581,0): 99, 102, 109, (204,582,0): 103, 103, 113, (204,583,0): 102, 105, 112, (204,584,0): 101, 101, 111, (204,585,0): 99, 102, 109, (204,586,0): 99, 99, 109, (204,587,0): 96, 99, 106, (204,588,0): 96, 96, 106, (204,589,0): 92, 95, 102, (204,590,0): 93, 93, 103, (204,591,0): 92, 92, 100, (204,592,0): 88, 88, 98, (204,593,0): 88, 87, 95, (204,594,0): 87, 84, 93, (204,595,0): 87, 82, 89, (204,596,0): 83, 78, 84, (204,597,0): 80, 74, 78, (204,598,0): 78, 69, 74, (204,599,0): 76, 67, 70, (205,0,0): 41, 29, 39, (205,1,0): 41, 29, 39, (205,2,0): 41, 29, 39, (205,3,0): 41, 29, 39, (205,4,0): 41, 29, 39, (205,5,0): 41, 29, 39, (205,6,0): 41, 29, 39, (205,7,0): 41, 29, 39, (205,8,0): 41, 29, 39, (205,9,0): 41, 29, 39, (205,10,0): 41, 29, 39, (205,11,0): 42, 30, 40, (205,12,0): 42, 30, 40, (205,13,0): 43, 31, 41, (205,14,0): 43, 31, 41, (205,15,0): 42, 32, 41, (205,16,0): 43, 33, 42, (205,17,0): 41, 34, 42, (205,18,0): 41, 34, 42, (205,19,0): 42, 35, 43, (205,20,0): 44, 34, 43, (205,21,0): 45, 35, 44, (205,22,0): 45, 35, 44, (205,23,0): 45, 35, 44, (205,24,0): 45, 33, 43, (205,25,0): 45, 33, 43, (205,26,0): 47, 34, 44, (205,27,0): 47, 34, 44, (205,28,0): 48, 35, 45, (205,29,0): 48, 35, 45, (205,30,0): 51, 35, 46, (205,31,0): 51, 35, 46, (205,32,0): 49, 36, 45, (205,33,0): 49, 36, 45, (205,34,0): 51, 35, 45, (205,35,0): 51, 35, 45, (205,36,0): 51, 35, 45, (205,37,0): 51, 35, 45, (205,38,0): 52, 35, 45, (205,39,0): 52, 35, 45, (205,40,0): 56, 36, 47, (205,41,0): 56, 36, 47, (205,42,0): 56, 36, 47, (205,43,0): 56, 36, 47, (205,44,0): 57, 35, 47, (205,45,0): 57, 35, 47, (205,46,0): 57, 35, 47, (205,47,0): 57, 35, 47, (205,48,0): 56, 36, 47, (205,49,0): 56, 36, 47, (205,50,0): 57, 35, 47, (205,51,0): 57, 35, 47, (205,52,0): 57, 36, 45, (205,53,0): 57, 36, 45, (205,54,0): 58, 35, 43, (205,55,0): 58, 35, 43, (205,56,0): 61, 35, 44, (205,57,0): 61, 35, 44, (205,58,0): 61, 36, 42, (205,59,0): 61, 36, 42, (205,60,0): 62, 35, 40, (205,61,0): 62, 35, 40, (205,62,0): 62, 35, 40, (205,63,0): 61, 36, 42, (205,64,0): 61, 35, 44, (205,65,0): 59, 36, 44, (205,66,0): 59, 36, 44, (205,67,0): 59, 36, 44, (205,68,0): 61, 36, 42, (205,69,0): 61, 36, 42, (205,70,0): 62, 35, 42, (205,71,0): 62, 35, 42, (205,72,0): 62, 35, 40, (205,73,0): 62, 35, 40, (205,74,0): 64, 35, 39, (205,75,0): 64, 35, 39, (205,76,0): 65, 34, 39, (205,77,0): 65, 34, 39, (205,78,0): 65, 35, 37, (205,79,0): 64, 35, 39, (205,80,0): 66, 37, 42, (205,81,0): 64, 37, 44, (205,82,0): 65, 36, 41, (205,83,0): 64, 35, 39, (205,84,0): 65, 34, 39, (205,85,0): 65, 33, 36, (205,86,0): 66, 32, 33, (205,87,0): 66, 32, 33, (205,88,0): 66, 32, 33, (205,89,0): 67, 33, 34, (205,90,0): 68, 33, 37, (205,91,0): 67, 35, 38, (205,92,0): 66, 35, 41, (205,93,0): 65, 36, 41, (205,94,0): 62, 35, 42, (205,95,0): 63, 34, 39, (205,96,0): 64, 31, 38, (205,97,0): 66, 31, 37, (205,98,0): 64, 32, 37, (205,99,0): 64, 32, 37, (205,100,0): 64, 32, 37, (205,101,0): 64, 32, 37, (205,102,0): 63, 32, 37, (205,103,0): 63, 32, 37, (205,104,0): 61, 32, 36, (205,105,0): 60, 31, 35, (205,106,0): 58, 29, 33, (205,107,0): 57, 28, 32, (205,108,0): 55, 29, 32, (205,109,0): 55, 29, 32, (205,110,0): 55, 29, 32, (205,111,0): 55, 30, 33, (205,112,0): 48, 26, 29, (205,113,0): 46, 26, 28, (205,114,0): 44, 24, 26, (205,115,0): 41, 21, 23, (205,116,0): 40, 20, 22, (205,117,0): 39, 19, 21, (205,118,0): 39, 19, 21, (205,119,0): 39, 19, 21, (205,120,0): 37, 17, 19, (205,121,0): 38, 18, 20, (205,122,0): 38, 18, 20, (205,123,0): 39, 19, 21, (205,124,0): 41, 21, 23, (205,125,0): 42, 22, 24, (205,126,0): 42, 22, 24, (205,127,0): 43, 23, 25, (205,128,0): 43, 23, 24, (205,129,0): 43, 23, 24, (205,130,0): 44, 24, 25, (205,131,0): 44, 24, 25, (205,132,0): 45, 25, 26, (205,133,0): 45, 25, 26, (205,134,0): 46, 26, 27, (205,135,0): 46, 26, 27, (205,136,0): 47, 27, 28, (205,137,0): 47, 27, 28, (205,138,0): 47, 27, 28, (205,139,0): 47, 27, 28, (205,140,0): 47, 27, 28, (205,141,0): 47, 27, 28, (205,142,0): 47, 27, 28, (205,143,0): 47, 27, 28, (205,144,0): 49, 26, 32, (205,145,0): 49, 26, 32, (205,146,0): 49, 27, 30, (205,147,0): 49, 27, 30, (205,148,0): 49, 27, 30, (205,149,0): 49, 27, 30, (205,150,0): 49, 27, 29, (205,151,0): 49, 27, 29, (205,152,0): 50, 29, 28, (205,153,0): 50, 29, 28, (205,154,0): 50, 29, 28, (205,155,0): 50, 29, 28, (205,156,0): 49, 28, 25, (205,157,0): 49, 28, 25, (205,158,0): 48, 27, 24, (205,159,0): 48, 27, 24, (205,160,0): 49, 28, 25, (205,161,0): 49, 28, 25, (205,162,0): 49, 28, 25, (205,163,0): 49, 28, 25, (205,164,0): 49, 28, 25, (205,165,0): 49, 28, 25, (205,166,0): 49, 28, 25, (205,167,0): 49, 28, 25, (205,168,0): 47, 26, 23, (205,169,0): 47, 26, 23, (205,170,0): 48, 27, 24, (205,171,0): 48, 27, 24, (205,172,0): 49, 28, 25, (205,173,0): 49, 28, 25, (205,174,0): 50, 29, 26, (205,175,0): 50, 29, 26, (205,176,0): 51, 25, 24, (205,177,0): 51, 25, 24, (205,178,0): 52, 26, 25, (205,179,0): 52, 26, 25, (205,180,0): 53, 27, 26, (205,181,0): 53, 27, 26, (205,182,0): 54, 28, 27, (205,183,0): 54, 28, 27, (205,184,0): 54, 28, 27, (205,185,0): 54, 28, 27, (205,186,0): 54, 28, 27, (205,187,0): 54, 28, 27, (205,188,0): 54, 28, 27, (205,189,0): 54, 28, 27, (205,190,0): 54, 28, 27, (205,191,0): 53, 29, 27, (205,192,0): 52, 28, 24, (205,193,0): 50, 29, 24, (205,194,0): 50, 29, 24, (205,195,0): 50, 29, 24, (205,196,0): 49, 28, 23, (205,197,0): 49, 28, 23, (205,198,0): 48, 27, 22, (205,199,0): 48, 27, 22, (205,200,0): 49, 28, 23, (205,201,0): 49, 28, 23, (205,202,0): 49, 28, 23, (205,203,0): 49, 28, 23, (205,204,0): 49, 28, 23, (205,205,0): 49, 28, 23, (205,206,0): 49, 28, 23, (205,207,0): 49, 29, 22, (205,208,0): 54, 29, 24, (205,209,0): 54, 29, 22, (205,210,0): 54, 29, 22, (205,211,0): 54, 29, 22, (205,212,0): 54, 29, 22, (205,213,0): 54, 29, 22, (205,214,0): 54, 29, 22, (205,215,0): 54, 29, 22, (205,216,0): 52, 27, 20, (205,217,0): 53, 28, 21, (205,218,0): 53, 28, 21, (205,219,0): 54, 29, 22, (205,220,0): 55, 30, 23, (205,221,0): 56, 31, 24, (205,222,0): 57, 32, 25, (205,223,0): 57, 32, 25, (205,224,0): 59, 32, 23, (205,225,0): 61, 34, 25, (205,226,0): 64, 36, 25, (205,227,0): 64, 36, 22, (205,228,0): 65, 38, 21, (205,229,0): 69, 42, 21, (205,230,0): 76, 48, 26, (205,231,0): 81, 53, 29, (205,232,0): 81, 51, 27, (205,233,0): 81, 51, 25, (205,234,0): 81, 51, 25, (205,235,0): 81, 51, 25, (205,236,0): 81, 49, 24, (205,237,0): 79, 47, 22, (205,238,0): 78, 46, 23, (205,239,0): 76, 44, 21, (205,240,0): 77, 47, 23, (205,241,0): 77, 47, 23, (205,242,0): 74, 46, 22, (205,243,0): 71, 43, 19, (205,244,0): 68, 40, 16, (205,245,0): 66, 38, 16, (205,246,0): 66, 40, 17, (205,247,0): 68, 42, 19, (205,248,0): 67, 42, 20, (205,249,0): 67, 42, 20, (205,250,0): 66, 41, 21, (205,251,0): 65, 40, 20, (205,252,0): 61, 38, 20, (205,253,0): 60, 37, 19, (205,254,0): 60, 37, 19, (205,255,0): 58, 37, 20, (205,256,0): 58, 36, 22, (205,257,0): 55, 36, 22, (205,258,0): 54, 34, 25, (205,259,0): 53, 33, 26, (205,260,0): 55, 31, 27, (205,261,0): 56, 32, 30, (205,262,0): 58, 32, 33, (205,263,0): 59, 33, 32, (205,264,0): 61, 35, 34, (205,265,0): 62, 37, 32, (205,266,0): 65, 38, 29, (205,267,0): 69, 43, 28, (205,268,0): 76, 49, 28, (205,269,0): 84, 58, 33, (205,270,0): 91, 66, 36, (205,271,0): 96, 71, 41, (205,272,0): 93, 66, 37, (205,273,0): 93, 66, 37, (205,274,0): 93, 66, 37, (205,275,0): 92, 65, 36, (205,276,0): 92, 65, 38, (205,277,0): 91, 64, 37, (205,278,0): 91, 64, 37, (205,279,0): 91, 64, 37, (205,280,0): 93, 66, 39, (205,281,0): 93, 66, 39, (205,282,0): 94, 66, 42, (205,283,0): 94, 66, 42, (205,284,0): 95, 67, 43, (205,285,0): 95, 67, 43, (205,286,0): 96, 68, 44, (205,287,0): 95, 69, 42, (205,288,0): 95, 72, 41, (205,289,0): 93, 73, 40, (205,290,0): 94, 73, 42, (205,291,0): 95, 74, 43, (205,292,0): 95, 76, 44, (205,293,0): 96, 77, 45, (205,294,0): 97, 78, 48, (205,295,0): 97, 78, 48, (205,296,0): 97, 80, 52, (205,297,0): 96, 79, 51, (205,298,0): 94, 79, 50, (205,299,0): 94, 79, 50, (205,300,0): 94, 78, 52, (205,301,0): 94, 78, 52, (205,302,0): 94, 80, 53, (205,303,0): 95, 81, 55, (205,304,0): 97, 81, 58, (205,305,0): 96, 79, 59, (205,306,0): 94, 77, 57, (205,307,0): 92, 75, 55, (205,308,0): 91, 74, 54, (205,309,0): 91, 74, 54, (205,310,0): 92, 75, 55, (205,311,0): 92, 75, 55, (205,312,0): 96, 79, 59, (205,313,0): 96, 79, 59, (205,314,0): 97, 80, 60, (205,315,0): 98, 81, 61, (205,316,0): 99, 82, 62, (205,317,0): 100, 83, 63, (205,318,0): 101, 84, 64, (205,319,0): 100, 85, 64, (205,320,0): 101, 86, 67, (205,321,0): 101, 89, 67, (205,322,0): 105, 90, 67, (205,323,0): 107, 93, 67, (205,324,0): 111, 95, 70, (205,325,0): 114, 98, 73, (205,326,0): 115, 100, 77, (205,327,0): 117, 103, 77, (205,328,0): 122, 112, 77, (205,329,0): 133, 126, 82, (205,330,0): 154, 152, 95, (205,331,0): 174, 177, 110, (205,332,0): 181, 187, 113, (205,333,0): 179, 187, 110, (205,334,0): 175, 186, 110, (205,335,0): 176, 188, 114, (205,336,0): 171, 187, 116, (205,337,0): 170, 187, 117, (205,338,0): 170, 187, 119, (205,339,0): 169, 186, 118, (205,340,0): 168, 184, 119, (205,341,0): 165, 181, 118, (205,342,0): 163, 179, 117, (205,343,0): 162, 178, 116, (205,344,0): 162, 178, 116, (205,345,0): 161, 177, 114, (205,346,0): 161, 177, 114, (205,347,0): 162, 178, 113, (205,348,0): 165, 182, 114, (205,349,0): 169, 186, 116, (205,350,0): 173, 190, 120, (205,351,0): 173, 194, 119, (205,352,0): 181, 205, 121, (205,353,0): 186, 211, 120, (205,354,0): 194, 219, 127, (205,355,0): 199, 225, 126, (205,356,0): 201, 228, 123, (205,357,0): 203, 231, 121, (205,358,0): 206, 234, 121, (205,359,0): 208, 237, 119, (205,360,0): 213, 242, 124, (205,361,0): 213, 242, 124, (205,362,0): 213, 242, 124, (205,363,0): 212, 241, 125, (205,364,0): 209, 237, 126, (205,365,0): 205, 233, 123, (205,366,0): 201, 228, 121, (205,367,0): 197, 226, 120, (205,368,0): 189, 220, 116, (205,369,0): 187, 220, 115, (205,370,0): 188, 221, 116, (205,371,0): 192, 225, 118, (205,372,0): 197, 231, 121, (205,373,0): 201, 235, 123, (205,374,0): 202, 236, 123, (205,375,0): 201, 236, 120, (205,376,0): 197, 232, 116, (205,377,0): 197, 232, 116, (205,378,0): 197, 231, 118, (205,379,0): 199, 233, 121, (205,380,0): 201, 235, 125, (205,381,0): 204, 238, 128, (205,382,0): 207, 240, 133, (205,383,0): 206, 244, 135, (205,384,0): 209, 251, 139, (205,385,0): 210, 254, 141, (205,386,0): 215, 255, 143, (205,387,0): 220, 255, 146, (205,388,0): 228, 255, 149, (205,389,0): 232, 255, 151, (205,390,0): 237, 255, 153, (205,391,0): 241, 255, 156, (205,392,0): 243, 255, 157, (205,393,0): 244, 254, 158, (205,394,0): 246, 252, 162, (205,395,0): 246, 252, 164, (205,396,0): 248, 252, 168, (205,397,0): 250, 253, 172, (205,398,0): 251, 255, 176, (205,399,0): 252, 255, 180, (205,400,0): 253, 254, 186, (205,401,0): 253, 253, 189, (205,402,0): 253, 253, 189, (205,403,0): 254, 254, 192, (205,404,0): 255, 255, 195, (205,405,0): 255, 254, 197, (205,406,0): 255, 254, 198, (205,407,0): 255, 255, 201, (205,408,0): 255, 255, 201, (205,409,0): 255, 255, 201, (205,410,0): 255, 255, 201, (205,411,0): 255, 255, 201, (205,412,0): 255, 255, 199, (205,413,0): 255, 255, 198, (205,414,0): 255, 255, 198, (205,415,0): 255, 255, 198, (205,416,0): 255, 255, 199, (205,417,0): 252, 255, 198, (205,418,0): 252, 255, 200, (205,419,0): 252, 255, 200, (205,420,0): 251, 254, 199, (205,421,0): 249, 254, 198, (205,422,0): 247, 254, 200, (205,423,0): 246, 255, 200, (205,424,0): 242, 255, 201, (205,425,0): 238, 255, 200, (205,426,0): 234, 255, 198, (205,427,0): 229, 254, 196, (205,428,0): 224, 253, 195, (205,429,0): 219, 253, 193, (205,430,0): 215, 253, 192, (205,431,0): 214, 252, 191, (205,432,0): 207, 245, 184, (205,433,0): 203, 243, 180, (205,434,0): 200, 240, 178, (205,435,0): 199, 240, 180, (205,436,0): 199, 243, 182, (205,437,0): 200, 245, 186, (205,438,0): 199, 244, 187, (205,439,0): 197, 242, 187, (205,440,0): 200, 244, 193, (205,441,0): 194, 238, 189, (205,442,0): 188, 230, 184, (205,443,0): 183, 224, 180, (205,444,0): 183, 222, 178, (205,445,0): 181, 218, 177, (205,446,0): 179, 214, 174, (205,447,0): 178, 210, 171, (205,448,0): 174, 204, 166, (205,449,0): 174, 202, 164, (205,450,0): 171, 198, 163, (205,451,0): 168, 195, 160, (205,452,0): 166, 191, 159, (205,453,0): 164, 189, 157, (205,454,0): 164, 189, 159, (205,455,0): 163, 188, 159, (205,456,0): 165, 189, 163, (205,457,0): 163, 187, 161, (205,458,0): 162, 184, 161, (205,459,0): 161, 183, 160, (205,460,0): 161, 183, 162, (205,461,0): 159, 181, 160, (205,462,0): 155, 176, 157, (205,463,0): 154, 173, 154, (205,464,0): 149, 164, 145, (205,465,0): 148, 161, 141, (205,466,0): 147, 160, 140, (205,467,0): 149, 162, 142, (205,468,0): 154, 167, 147, (205,469,0): 157, 172, 151, (205,470,0): 157, 172, 153, (205,471,0): 157, 172, 153, (205,472,0): 155, 172, 154, (205,473,0): 156, 173, 155, (205,474,0): 155, 173, 157, (205,475,0): 155, 173, 157, (205,476,0): 154, 172, 156, (205,477,0): 153, 171, 155, (205,478,0): 151, 169, 153, (205,479,0): 151, 167, 154, (205,480,0): 145, 156, 148, (205,481,0): 142, 153, 145, (205,482,0): 138, 149, 141, (205,483,0): 136, 149, 140, (205,484,0): 133, 148, 141, (205,485,0): 131, 148, 140, (205,486,0): 127, 144, 138, (205,487,0): 122, 141, 135, (205,488,0): 121, 140, 134, (205,489,0): 120, 139, 133, (205,490,0): 122, 137, 134, (205,491,0): 119, 134, 131, (205,492,0): 117, 129, 129, (205,493,0): 113, 125, 125, (205,494,0): 111, 119, 121, (205,495,0): 109, 118, 117, (205,496,0): 106, 110, 109, (205,497,0): 106, 111, 107, (205,498,0): 105, 110, 104, (205,499,0): 106, 111, 105, (205,500,0): 110, 112, 107, (205,501,0): 111, 113, 108, (205,502,0): 114, 113, 108, (205,503,0): 114, 113, 108, (205,504,0): 114, 111, 104, (205,505,0): 114, 111, 104, (205,506,0): 114, 107, 101, (205,507,0): 110, 103, 97, (205,508,0): 107, 98, 91, (205,509,0): 103, 94, 87, (205,510,0): 101, 92, 85, (205,511,0): 100, 91, 82, (205,512,0): 99, 93, 81, (205,513,0): 99, 93, 79, (205,514,0): 98, 94, 82, (205,515,0): 98, 94, 82, (205,516,0): 99, 95, 84, (205,517,0): 100, 96, 85, (205,518,0): 99, 96, 87, (205,519,0): 99, 96, 87, (205,520,0): 93, 93, 85, (205,521,0): 93, 93, 85, (205,522,0): 93, 92, 87, (205,523,0): 96, 95, 90, (205,524,0): 98, 99, 94, (205,525,0): 99, 100, 95, (205,526,0): 97, 98, 93, (205,527,0): 95, 96, 91, (205,528,0): 100, 99, 95, (205,529,0): 101, 100, 96, (205,530,0): 100, 99, 95, (205,531,0): 98, 97, 93, (205,532,0): 93, 93, 91, (205,533,0): 92, 92, 90, (205,534,0): 93, 95, 94, (205,535,0): 96, 98, 97, (205,536,0): 96, 100, 99, (205,537,0): 99, 103, 102, (205,538,0): 104, 110, 110, (205,539,0): 109, 115, 115, (205,540,0): 110, 118, 120, (205,541,0): 109, 117, 119, (205,542,0): 107, 115, 117, (205,543,0): 105, 113, 115, (205,544,0): 104, 108, 109, (205,545,0): 106, 107, 109, (205,546,0): 107, 108, 112, (205,547,0): 107, 108, 112, (205,548,0): 107, 108, 112, (205,549,0): 106, 110, 113, (205,550,0): 106, 109, 114, (205,551,0): 105, 110, 114, (205,552,0): 106, 111, 117, (205,553,0): 104, 111, 117, (205,554,0): 104, 111, 117, (205,555,0): 103, 110, 116, (205,556,0): 103, 110, 118, (205,557,0): 102, 109, 117, (205,558,0): 102, 109, 117, (205,559,0): 101, 110, 117, (205,560,0): 96, 109, 117, (205,561,0): 95, 108, 116, (205,562,0): 95, 108, 116, (205,563,0): 96, 109, 117, (205,564,0): 99, 110, 116, (205,565,0): 97, 108, 114, (205,566,0): 94, 103, 110, (205,567,0): 90, 99, 106, (205,568,0): 85, 92, 100, (205,569,0): 83, 90, 98, (205,570,0): 82, 87, 93, (205,571,0): 80, 85, 91, (205,572,0): 79, 82, 89, (205,573,0): 79, 82, 89, (205,574,0): 82, 82, 90, (205,575,0): 83, 83, 91, (205,576,0): 88, 88, 96, (205,577,0): 89, 90, 95, (205,578,0): 91, 90, 98, (205,579,0): 93, 94, 99, (205,580,0): 96, 95, 103, (205,581,0): 97, 98, 103, (205,582,0): 100, 99, 107, (205,583,0): 100, 101, 106, (205,584,0): 98, 97, 105, (205,585,0): 96, 97, 102, (205,586,0): 96, 95, 103, (205,587,0): 93, 94, 99, (205,588,0): 92, 91, 99, (205,589,0): 89, 90, 95, (205,590,0): 88, 87, 95, (205,591,0): 87, 86, 94, (205,592,0): 83, 82, 90, (205,593,0): 83, 80, 87, (205,594,0): 84, 79, 86, (205,595,0): 83, 76, 83, (205,596,0): 79, 73, 77, (205,597,0): 77, 68, 71, (205,598,0): 75, 64, 68, (205,599,0): 73, 62, 66, (206,0,0): 41, 29, 39, (206,1,0): 41, 29, 39, (206,2,0): 41, 29, 39, (206,3,0): 41, 29, 39, (206,4,0): 41, 29, 39, (206,5,0): 41, 29, 39, (206,6,0): 41, 29, 39, (206,7,0): 41, 29, 39, (206,8,0): 41, 29, 39, (206,9,0): 41, 29, 39, (206,10,0): 41, 29, 39, (206,11,0): 42, 30, 40, (206,12,0): 42, 30, 40, (206,13,0): 43, 31, 41, (206,14,0): 43, 31, 41, (206,15,0): 42, 32, 41, (206,16,0): 43, 33, 42, (206,17,0): 41, 34, 42, (206,18,0): 41, 34, 42, (206,19,0): 42, 35, 43, (206,20,0): 44, 34, 43, (206,21,0): 45, 35, 44, (206,22,0): 45, 35, 44, (206,23,0): 45, 35, 44, (206,24,0): 45, 33, 43, (206,25,0): 45, 33, 43, (206,26,0): 47, 34, 44, (206,27,0): 47, 34, 44, (206,28,0): 48, 35, 45, (206,29,0): 48, 35, 45, (206,30,0): 51, 35, 46, (206,31,0): 51, 35, 46, (206,32,0): 49, 36, 45, (206,33,0): 49, 36, 45, (206,34,0): 51, 35, 45, (206,35,0): 51, 35, 45, (206,36,0): 51, 35, 45, (206,37,0): 51, 35, 45, (206,38,0): 52, 35, 45, (206,39,0): 52, 35, 45, (206,40,0): 56, 36, 47, (206,41,0): 56, 36, 47, (206,42,0): 56, 36, 47, (206,43,0): 56, 36, 47, (206,44,0): 57, 35, 47, (206,45,0): 57, 35, 47, (206,46,0): 57, 35, 47, (206,47,0): 57, 35, 47, (206,48,0): 56, 36, 47, (206,49,0): 56, 36, 47, (206,50,0): 57, 35, 47, (206,51,0): 57, 35, 47, (206,52,0): 57, 36, 45, (206,53,0): 57, 36, 45, (206,54,0): 58, 35, 43, (206,55,0): 58, 35, 43, (206,56,0): 61, 35, 44, (206,57,0): 61, 35, 44, (206,58,0): 61, 36, 42, (206,59,0): 61, 36, 42, (206,60,0): 62, 35, 40, (206,61,0): 62, 35, 40, (206,62,0): 62, 35, 40, (206,63,0): 61, 36, 42, (206,64,0): 61, 35, 44, (206,65,0): 59, 36, 46, (206,66,0): 59, 36, 44, (206,67,0): 59, 36, 44, (206,68,0): 61, 35, 44, (206,69,0): 61, 35, 44, (206,70,0): 61, 36, 42, (206,71,0): 61, 36, 42, (206,72,0): 62, 35, 40, (206,73,0): 62, 35, 40, (206,74,0): 64, 35, 40, (206,75,0): 64, 35, 40, (206,76,0): 64, 35, 39, (206,77,0): 64, 35, 39, (206,78,0): 65, 34, 39, (206,79,0): 64, 35, 39, (206,80,0): 65, 36, 41, (206,81,0): 63, 36, 43, (206,82,0): 65, 36, 41, (206,83,0): 64, 35, 39, (206,84,0): 65, 34, 39, (206,85,0): 64, 34, 36, (206,86,0): 65, 33, 34, (206,87,0): 65, 33, 34, (206,88,0): 64, 32, 33, (206,89,0): 64, 34, 34, (206,90,0): 65, 35, 37, (206,91,0): 65, 36, 38, (206,92,0): 62, 35, 40, (206,93,0): 60, 35, 39, (206,94,0): 57, 34, 40, (206,95,0): 58, 33, 37, (206,96,0): 63, 30, 37, (206,97,0): 65, 30, 36, (206,98,0): 63, 31, 36, (206,99,0): 63, 31, 36, (206,100,0): 63, 31, 36, (206,101,0): 63, 31, 36, (206,102,0): 62, 31, 36, (206,103,0): 62, 31, 36, (206,104,0): 61, 32, 36, (206,105,0): 60, 31, 35, (206,106,0): 58, 29, 33, (206,107,0): 57, 28, 32, (206,108,0): 54, 28, 31, (206,109,0): 55, 29, 32, (206,110,0): 56, 30, 33, (206,111,0): 55, 30, 33, (206,112,0): 51, 29, 32, (206,113,0): 48, 28, 30, (206,114,0): 46, 26, 28, (206,115,0): 44, 24, 26, (206,116,0): 42, 22, 24, (206,117,0): 41, 21, 23, (206,118,0): 41, 21, 23, (206,119,0): 41, 21, 23, (206,120,0): 37, 17, 19, (206,121,0): 38, 18, 20, (206,122,0): 38, 18, 20, (206,123,0): 39, 19, 21, (206,124,0): 41, 21, 23, (206,125,0): 42, 22, 24, (206,126,0): 42, 22, 24, (206,127,0): 43, 23, 25, (206,128,0): 43, 23, 24, (206,129,0): 43, 23, 24, (206,130,0): 44, 24, 25, (206,131,0): 44, 24, 25, (206,132,0): 45, 25, 26, (206,133,0): 45, 25, 26, (206,134,0): 46, 26, 27, (206,135,0): 46, 26, 27, (206,136,0): 47, 27, 28, (206,137,0): 47, 27, 28, (206,138,0): 47, 27, 28, (206,139,0): 47, 27, 28, (206,140,0): 47, 27, 28, (206,141,0): 47, 27, 28, (206,142,0): 47, 27, 28, (206,143,0): 47, 27, 28, (206,144,0): 50, 27, 33, (206,145,0): 50, 27, 33, (206,146,0): 50, 28, 31, (206,147,0): 50, 28, 31, (206,148,0): 50, 28, 31, (206,149,0): 50, 28, 31, (206,150,0): 50, 28, 30, (206,151,0): 50, 28, 30, (206,152,0): 52, 31, 30, (206,153,0): 51, 30, 29, (206,154,0): 51, 30, 29, (206,155,0): 50, 29, 28, (206,156,0): 49, 28, 25, (206,157,0): 49, 28, 25, (206,158,0): 48, 27, 24, (206,159,0): 48, 27, 24, (206,160,0): 49, 28, 25, (206,161,0): 49, 28, 25, (206,162,0): 49, 28, 25, (206,163,0): 49, 28, 25, (206,164,0): 49, 28, 25, (206,165,0): 49, 28, 25, (206,166,0): 49, 28, 25, (206,167,0): 49, 28, 25, (206,168,0): 47, 26, 23, (206,169,0): 47, 26, 23, (206,170,0): 47, 26, 23, (206,171,0): 48, 27, 24, (206,172,0): 49, 28, 25, (206,173,0): 50, 29, 26, (206,174,0): 50, 29, 26, (206,175,0): 50, 29, 26, (206,176,0): 53, 27, 26, (206,177,0): 53, 27, 26, (206,178,0): 54, 28, 27, (206,179,0): 54, 28, 27, (206,180,0): 55, 29, 28, (206,181,0): 55, 29, 28, (206,182,0): 56, 30, 29, (206,183,0): 56, 30, 29, (206,184,0): 54, 28, 27, (206,185,0): 54, 28, 27, (206,186,0): 54, 28, 27, (206,187,0): 54, 28, 27, (206,188,0): 54, 28, 27, (206,189,0): 54, 28, 27, (206,190,0): 54, 28, 27, (206,191,0): 53, 29, 27, (206,192,0): 54, 30, 26, (206,193,0): 51, 30, 25, (206,194,0): 51, 30, 25, (206,195,0): 50, 29, 24, (206,196,0): 49, 28, 23, (206,197,0): 49, 28, 23, (206,198,0): 48, 27, 22, (206,199,0): 48, 27, 22, (206,200,0): 49, 28, 23, (206,201,0): 49, 28, 23, (206,202,0): 49, 28, 23, (206,203,0): 49, 28, 23, (206,204,0): 49, 28, 23, (206,205,0): 49, 28, 23, (206,206,0): 49, 28, 23, (206,207,0): 49, 29, 22, (206,208,0): 54, 29, 24, (206,209,0): 54, 29, 22, (206,210,0): 54, 29, 22, (206,211,0): 54, 29, 22, (206,212,0): 54, 29, 22, (206,213,0): 54, 29, 22, (206,214,0): 54, 29, 22, (206,215,0): 54, 29, 22, (206,216,0): 53, 28, 21, (206,217,0): 53, 28, 21, (206,218,0): 54, 29, 22, (206,219,0): 56, 31, 24, (206,220,0): 57, 32, 25, (206,221,0): 58, 33, 26, (206,222,0): 59, 34, 27, (206,223,0): 59, 34, 27, (206,224,0): 57, 30, 23, (206,225,0): 60, 33, 24, (206,226,0): 65, 37, 26, (206,227,0): 67, 39, 27, (206,228,0): 68, 40, 26, (206,229,0): 70, 43, 24, (206,230,0): 75, 47, 26, (206,231,0): 79, 51, 27, (206,232,0): 80, 50, 26, (206,233,0): 81, 51, 27, (206,234,0): 81, 51, 27, (206,235,0): 81, 51, 27, (206,236,0): 81, 49, 26, (206,237,0): 79, 47, 24, (206,238,0): 76, 44, 23, (206,239,0): 75, 43, 22, (206,240,0): 76, 45, 24, (206,241,0): 77, 46, 25, (206,242,0): 75, 47, 25, (206,243,0): 71, 43, 21, (206,244,0): 67, 39, 17, (206,245,0): 65, 37, 16, (206,246,0): 66, 39, 18, (206,247,0): 68, 41, 20, (206,248,0): 67, 42, 22, (206,249,0): 67, 42, 22, (206,250,0): 66, 41, 21, (206,251,0): 65, 40, 20, (206,252,0): 62, 40, 19, (206,253,0): 62, 40, 19, (206,254,0): 61, 39, 18, (206,255,0): 60, 39, 20, (206,256,0): 59, 37, 23, (206,257,0): 56, 37, 23, (206,258,0): 55, 35, 26, (206,259,0): 54, 34, 27, (206,260,0): 56, 32, 28, (206,261,0): 57, 33, 31, (206,262,0): 59, 33, 34, (206,263,0): 59, 33, 32, (206,264,0): 62, 36, 35, (206,265,0): 63, 38, 33, (206,266,0): 68, 41, 30, (206,267,0): 73, 47, 32, (206,268,0): 80, 53, 32, (206,269,0): 86, 60, 33, (206,270,0): 92, 67, 36, (206,271,0): 95, 70, 39, (206,272,0): 97, 70, 40, (206,273,0): 99, 70, 40, (206,274,0): 99, 69, 41, (206,275,0): 98, 68, 40, (206,276,0): 97, 67, 39, (206,277,0): 96, 66, 38, (206,278,0): 96, 66, 40, (206,279,0): 96, 66, 40, (206,280,0): 96, 66, 40, (206,281,0): 96, 66, 40, (206,282,0): 97, 67, 43, (206,283,0): 97, 67, 43, (206,284,0): 98, 68, 44, (206,285,0): 98, 68, 44, (206,286,0): 99, 69, 45, (206,287,0): 97, 70, 43, (206,288,0): 95, 72, 41, (206,289,0): 93, 73, 40, (206,290,0): 94, 74, 41, (206,291,0): 95, 75, 42, (206,292,0): 95, 76, 44, (206,293,0): 96, 77, 45, (206,294,0): 97, 78, 46, (206,295,0): 97, 78, 46, (206,296,0): 98, 81, 51, (206,297,0): 98, 81, 51, (206,298,0): 95, 80, 51, (206,299,0): 95, 80, 51, (206,300,0): 95, 80, 51, (206,301,0): 95, 80, 51, (206,302,0): 96, 82, 55, (206,303,0): 96, 82, 56, (206,304,0): 99, 83, 60, (206,305,0): 97, 80, 60, (206,306,0): 95, 78, 58, (206,307,0): 93, 76, 56, (206,308,0): 92, 75, 55, (206,309,0): 91, 74, 54, (206,310,0): 91, 74, 54, (206,311,0): 91, 74, 54, (206,312,0): 97, 80, 60, (206,313,0): 97, 80, 60, (206,314,0): 98, 81, 61, (206,315,0): 99, 82, 62, (206,316,0): 100, 83, 63, (206,317,0): 101, 84, 64, (206,318,0): 102, 85, 65, (206,319,0): 101, 86, 67, (206,320,0): 99, 83, 67, (206,321,0): 99, 86, 67, (206,322,0): 103, 88, 65, (206,323,0): 107, 93, 67, (206,324,0): 112, 96, 70, (206,325,0): 115, 99, 74, (206,326,0): 116, 101, 78, (206,327,0): 117, 103, 77, (206,328,0): 121, 110, 80, (206,329,0): 126, 119, 77, (206,330,0): 143, 140, 85, (206,331,0): 166, 168, 103, (206,332,0): 180, 186, 114, (206,333,0): 181, 189, 112, (206,334,0): 178, 189, 111, (206,335,0): 179, 191, 115, (206,336,0): 172, 190, 116, (206,337,0): 170, 190, 118, (206,338,0): 170, 190, 119, (206,339,0): 169, 189, 120, (206,340,0): 167, 186, 120, (206,341,0): 165, 184, 118, (206,342,0): 162, 181, 117, (206,343,0): 161, 180, 116, (206,344,0): 164, 183, 119, (206,345,0): 164, 183, 119, (206,346,0): 163, 182, 118, (206,347,0): 164, 183, 117, (206,348,0): 167, 187, 118, (206,349,0): 171, 191, 120, (206,350,0): 176, 196, 125, (206,351,0): 179, 200, 123, (206,352,0): 186, 210, 124, (206,353,0): 191, 216, 124, (206,354,0): 198, 223, 129, (206,355,0): 202, 228, 129, (206,356,0): 204, 231, 126, (206,357,0): 206, 234, 123, (206,358,0): 208, 237, 121, (206,359,0): 210, 239, 121, (206,360,0): 218, 247, 128, (206,361,0): 216, 245, 126, (206,362,0): 214, 243, 125, (206,363,0): 212, 241, 125, (206,364,0): 209, 237, 126, (206,365,0): 207, 235, 125, (206,366,0): 205, 232, 125, (206,367,0): 203, 231, 128, (206,368,0): 197, 230, 126, (206,369,0): 192, 227, 125, (206,370,0): 188, 223, 119, (206,371,0): 188, 224, 118, (206,372,0): 191, 227, 119, (206,373,0): 195, 231, 121, (206,374,0): 196, 233, 120, (206,375,0): 196, 233, 119, (206,376,0): 197, 234, 120, (206,377,0): 197, 234, 120, (206,378,0): 199, 236, 123, (206,379,0): 201, 238, 125, (206,380,0): 203, 239, 129, (206,381,0): 206, 242, 132, (206,382,0): 208, 244, 136, (206,383,0): 208, 246, 137, (206,384,0): 212, 254, 146, (206,385,0): 212, 255, 147, (206,386,0): 216, 255, 146, (206,387,0): 219, 255, 148, (206,388,0): 225, 255, 150, (206,389,0): 231, 255, 153, (206,390,0): 238, 255, 156, (206,391,0): 242, 255, 159, (206,392,0): 244, 255, 159, (206,393,0): 245, 254, 161, (206,394,0): 246, 252, 162, (206,395,0): 247, 251, 164, (206,396,0): 247, 252, 168, (206,397,0): 249, 254, 172, (206,398,0): 251, 255, 176, (206,399,0): 252, 255, 180, (206,400,0): 253, 254, 186, (206,401,0): 254, 254, 190, (206,402,0): 254, 254, 192, (206,403,0): 254, 254, 194, (206,404,0): 255, 254, 197, (206,405,0): 255, 254, 198, (206,406,0): 255, 255, 201, (206,407,0): 255, 254, 203, (206,408,0): 255, 254, 203, (206,409,0): 255, 254, 203, (206,410,0): 255, 254, 203, (206,411,0): 255, 255, 201, (206,412,0): 255, 255, 201, (206,413,0): 255, 255, 199, (206,414,0): 255, 255, 199, (206,415,0): 255, 255, 199, (206,416,0): 255, 255, 203, (206,417,0): 253, 255, 205, (206,418,0): 252, 254, 205, (206,419,0): 252, 254, 205, (206,420,0): 250, 254, 204, (206,421,0): 250, 254, 204, (206,422,0): 248, 254, 206, (206,423,0): 245, 255, 205, (206,424,0): 243, 255, 208, (206,425,0): 239, 255, 207, (206,426,0): 234, 255, 205, (206,427,0): 229, 255, 203, (206,428,0): 225, 255, 203, (206,429,0): 219, 254, 200, (206,430,0): 216, 253, 199, (206,431,0): 214, 253, 196, (206,432,0): 209, 249, 189, (206,433,0): 206, 246, 184, (206,434,0): 202, 242, 182, (206,435,0): 201, 242, 182, (206,436,0): 201, 245, 186, (206,437,0): 201, 246, 189, (206,438,0): 200, 245, 190, (206,439,0): 197, 244, 190, (206,440,0): 199, 246, 194, (206,441,0): 193, 239, 190, (206,442,0): 187, 230, 184, (206,443,0): 182, 223, 179, (206,444,0): 181, 219, 178, (206,445,0): 179, 217, 178, (206,446,0): 178, 214, 176, (206,447,0): 177, 211, 174, (206,448,0): 175, 205, 169, (206,449,0): 175, 202, 167, (206,450,0): 172, 199, 166, (206,451,0): 168, 195, 162, (206,452,0): 165, 192, 161, (206,453,0): 163, 190, 159, (206,454,0): 163, 188, 159, (206,455,0): 163, 188, 159, (206,456,0): 166, 190, 164, (206,457,0): 164, 188, 164, (206,458,0): 162, 186, 164, (206,459,0): 162, 186, 164, (206,460,0): 163, 186, 166, (206,461,0): 161, 184, 164, (206,462,0): 156, 179, 161, (206,463,0): 153, 174, 155, (206,464,0): 152, 167, 148, (206,465,0): 151, 164, 144, (206,466,0): 150, 163, 143, (206,467,0): 152, 165, 145, (206,468,0): 155, 170, 151, (206,469,0): 159, 174, 155, (206,470,0): 160, 174, 157, (206,471,0): 158, 175, 157, (206,472,0): 154, 171, 153, (206,473,0): 155, 172, 154, (206,474,0): 155, 173, 157, (206,475,0): 156, 174, 158, (206,476,0): 153, 174, 159, (206,477,0): 152, 173, 158, (206,478,0): 151, 172, 157, (206,479,0): 152, 170, 156, (206,480,0): 150, 161, 153, (206,481,0): 147, 158, 152, (206,482,0): 143, 154, 148, (206,483,0): 140, 153, 146, (206,484,0): 137, 152, 145, (206,485,0): 134, 151, 143, (206,486,0): 130, 147, 141, (206,487,0): 125, 144, 138, (206,488,0): 121, 140, 136, (206,489,0): 120, 139, 135, (206,490,0): 122, 136, 136, (206,491,0): 119, 133, 133, (206,492,0): 117, 129, 129, (206,493,0): 112, 124, 124, (206,494,0): 110, 118, 120, (206,495,0): 108, 117, 116, (206,496,0): 110, 114, 113, (206,497,0): 110, 115, 111, (206,498,0): 108, 113, 107, (206,499,0): 108, 113, 107, (206,500,0): 110, 112, 107, (206,501,0): 111, 113, 108, (206,502,0): 115, 114, 109, (206,503,0): 116, 115, 110, (206,504,0): 116, 113, 106, (206,505,0): 115, 112, 105, (206,506,0): 115, 108, 102, (206,507,0): 112, 105, 99, (206,508,0): 109, 100, 93, (206,509,0): 106, 97, 90, (206,510,0): 103, 94, 87, (206,511,0): 101, 92, 83, (206,512,0): 103, 97, 85, (206,513,0): 103, 97, 83, (206,514,0): 101, 97, 85, (206,515,0): 102, 98, 86, (206,516,0): 102, 98, 86, (206,517,0): 102, 98, 87, (206,518,0): 102, 99, 90, (206,519,0): 102, 99, 90, (206,520,0): 93, 93, 85, (206,521,0): 92, 92, 84, (206,522,0): 92, 91, 86, (206,523,0): 95, 94, 89, (206,524,0): 97, 98, 93, (206,525,0): 99, 100, 95, (206,526,0): 96, 96, 94, (206,527,0): 94, 94, 92, (206,528,0): 97, 96, 94, (206,529,0): 100, 96, 95, (206,530,0): 98, 97, 95, (206,531,0): 95, 94, 92, (206,532,0): 91, 91, 89, (206,533,0): 90, 90, 88, (206,534,0): 91, 93, 92, (206,535,0): 93, 95, 94, (206,536,0): 94, 98, 99, (206,537,0): 97, 101, 102, (206,538,0): 101, 106, 109, (206,539,0): 104, 112, 114, (206,540,0): 107, 115, 117, (206,541,0): 108, 116, 118, (206,542,0): 107, 117, 118, (206,543,0): 108, 116, 118, (206,544,0): 109, 113, 116, (206,545,0): 109, 113, 116, (206,546,0): 109, 113, 116, (206,547,0): 108, 112, 115, (206,548,0): 108, 112, 115, (206,549,0): 107, 112, 115, (206,550,0): 107, 112, 116, (206,551,0): 106, 111, 115, (206,552,0): 106, 111, 117, (206,553,0): 104, 111, 117, (206,554,0): 103, 110, 118, (206,555,0): 101, 110, 117, (206,556,0): 101, 110, 117, (206,557,0): 100, 109, 116, (206,558,0): 99, 108, 115, (206,559,0): 98, 109, 115, (206,560,0): 96, 109, 117, (206,561,0): 95, 110, 117, (206,562,0): 96, 111, 118, (206,563,0): 99, 114, 121, (206,564,0): 102, 115, 121, (206,565,0): 102, 115, 121, (206,566,0): 99, 110, 116, (206,567,0): 97, 106, 113, (206,568,0): 94, 101, 107, (206,569,0): 91, 98, 104, (206,570,0): 88, 93, 99, (206,571,0): 83, 88, 94, (206,572,0): 81, 84, 89, (206,573,0): 80, 83, 88, (206,574,0): 80, 83, 88, (206,575,0): 83, 84, 89, (206,576,0): 84, 83, 89, (206,577,0): 84, 83, 88, (206,578,0): 86, 83, 90, (206,579,0): 86, 85, 90, (206,580,0): 88, 85, 92, (206,581,0): 88, 87, 92, (206,582,0): 90, 87, 94, (206,583,0): 89, 88, 93, (206,584,0): 93, 90, 97, (206,585,0): 91, 90, 95, (206,586,0): 91, 88, 95, (206,587,0): 87, 86, 91, (206,588,0): 86, 83, 90, (206,589,0): 83, 82, 87, (206,590,0): 82, 79, 86, (206,591,0): 81, 78, 85, (206,592,0): 79, 76, 83, (206,593,0): 81, 76, 83, (206,594,0): 80, 75, 82, (206,595,0): 78, 71, 78, (206,596,0): 77, 68, 73, (206,597,0): 75, 64, 68, (206,598,0): 71, 60, 64, (206,599,0): 70, 58, 60, (207,0,0): 41, 29, 41, (207,1,0): 41, 29, 39, (207,2,0): 41, 29, 41, (207,3,0): 41, 29, 39, (207,4,0): 41, 29, 41, (207,5,0): 41, 29, 39, (207,6,0): 41, 29, 41, (207,7,0): 41, 29, 39, (207,8,0): 41, 29, 41, (207,9,0): 41, 29, 39, (207,10,0): 41, 29, 41, (207,11,0): 42, 30, 40, (207,12,0): 42, 30, 42, (207,13,0): 43, 31, 41, (207,14,0): 43, 31, 43, (207,15,0): 43, 31, 41, (207,16,0): 43, 33, 42, (207,17,0): 41, 34, 42, (207,18,0): 43, 33, 42, (207,19,0): 44, 34, 43, (207,20,0): 44, 34, 43, (207,21,0): 45, 35, 44, (207,22,0): 45, 35, 44, (207,23,0): 46, 34, 44, (207,24,0): 45, 33, 43, (207,25,0): 46, 33, 43, (207,26,0): 47, 34, 44, (207,27,0): 47, 34, 44, (207,28,0): 50, 34, 45, (207,29,0): 50, 34, 45, (207,30,0): 51, 35, 46, (207,31,0): 51, 35, 46, (207,32,0): 51, 35, 45, (207,33,0): 51, 35, 45, (207,34,0): 51, 35, 45, (207,35,0): 51, 35, 45, (207,36,0): 51, 35, 45, (207,37,0): 51, 35, 45, (207,38,0): 52, 35, 45, (207,39,0): 52, 35, 45, (207,40,0): 56, 36, 47, (207,41,0): 56, 36, 47, (207,42,0): 56, 36, 47, (207,43,0): 56, 36, 47, (207,44,0): 56, 36, 47, (207,45,0): 56, 36, 47, (207,46,0): 57, 35, 47, (207,47,0): 56, 36, 47, (207,48,0): 56, 36, 47, (207,49,0): 56, 36, 47, (207,50,0): 56, 36, 47, (207,51,0): 57, 35, 47, (207,52,0): 57, 36, 45, (207,53,0): 57, 36, 45, (207,54,0): 57, 36, 43, (207,55,0): 58, 35, 43, (207,56,0): 59, 36, 44, (207,57,0): 61, 35, 44, (207,58,0): 61, 36, 42, (207,59,0): 61, 36, 42, (207,60,0): 61, 36, 40, (207,61,0): 62, 35, 40, (207,62,0): 62, 35, 40, (207,63,0): 61, 36, 42, (207,64,0): 59, 36, 44, (207,65,0): 58, 37, 44, (207,66,0): 59, 36, 44, (207,67,0): 59, 36, 42, (207,68,0): 59, 36, 44, (207,69,0): 61, 36, 42, (207,70,0): 61, 36, 42, (207,71,0): 61, 36, 40, (207,72,0): 61, 36, 40, (207,73,0): 62, 36, 39, (207,74,0): 62, 35, 40, (207,75,0): 64, 35, 39, (207,76,0): 64, 35, 39, (207,77,0): 64, 35, 37, (207,78,0): 64, 35, 39, (207,79,0): 64, 35, 39, (207,80,0): 64, 35, 40, (207,81,0): 64, 35, 40, (207,82,0): 64, 35, 40, (207,83,0): 64, 35, 39, (207,84,0): 65, 34, 39, (207,85,0): 65, 35, 37, (207,86,0): 66, 34, 37, (207,87,0): 66, 34, 35, (207,88,0): 64, 34, 36, (207,89,0): 64, 34, 36, (207,90,0): 64, 35, 37, (207,91,0): 64, 35, 39, (207,92,0): 62, 36, 39, (207,93,0): 60, 35, 39, (207,94,0): 58, 33, 37, (207,95,0): 57, 32, 36, (207,96,0): 62, 31, 36, (207,97,0): 63, 31, 36, (207,98,0): 62, 31, 36, (207,99,0): 62, 31, 36, (207,100,0): 62, 31, 36, (207,101,0): 62, 31, 36, (207,102,0): 62, 31, 36, (207,103,0): 61, 32, 36, (207,104,0): 61, 32, 36, (207,105,0): 60, 31, 35, (207,106,0): 58, 29, 33, (207,107,0): 56, 27, 31, (207,108,0): 54, 28, 31, (207,109,0): 54, 28, 31, (207,110,0): 56, 30, 33, (207,111,0): 56, 31, 34, (207,112,0): 53, 31, 34, (207,113,0): 50, 30, 32, (207,114,0): 48, 28, 30, (207,115,0): 45, 25, 27, (207,116,0): 43, 23, 25, (207,117,0): 42, 22, 24, (207,118,0): 42, 22, 24, (207,119,0): 42, 22, 24, (207,120,0): 37, 17, 19, (207,121,0): 38, 18, 20, (207,122,0): 38, 18, 20, (207,123,0): 38, 19, 21, (207,124,0): 41, 21, 23, (207,125,0): 41, 22, 24, (207,126,0): 42, 22, 24, (207,127,0): 43, 23, 25, (207,128,0): 43, 23, 24, (207,129,0): 43, 23, 24, (207,130,0): 44, 24, 25, (207,131,0): 44, 24, 25, (207,132,0): 45, 25, 26, (207,133,0): 45, 25, 26, (207,134,0): 46, 26, 27, (207,135,0): 46, 26, 27, (207,136,0): 47, 27, 28, (207,137,0): 47, 27, 26, (207,138,0): 47, 27, 26, (207,139,0): 47, 27, 26, (207,140,0): 47, 27, 26, (207,141,0): 47, 27, 26, (207,142,0): 47, 27, 26, (207,143,0): 47, 27, 26, (207,144,0): 50, 28, 31, (207,145,0): 50, 28, 31, (207,146,0): 50, 28, 30, (207,147,0): 50, 28, 30, (207,148,0): 50, 28, 30, (207,149,0): 50, 28, 30, (207,150,0): 50, 28, 30, (207,151,0): 50, 29, 28, (207,152,0): 52, 31, 30, (207,153,0): 52, 31, 30, (207,154,0): 51, 30, 29, (207,155,0): 50, 29, 28, (207,156,0): 49, 28, 25, (207,157,0): 49, 28, 25, (207,158,0): 48, 27, 24, (207,159,0): 48, 27, 24, (207,160,0): 49, 28, 25, (207,161,0): 49, 28, 25, (207,162,0): 51, 27, 25, (207,163,0): 49, 28, 25, (207,164,0): 51, 27, 25, (207,165,0): 49, 28, 25, (207,166,0): 51, 27, 25, (207,167,0): 49, 28, 25, (207,168,0): 48, 24, 22, (207,169,0): 47, 26, 23, (207,170,0): 49, 25, 23, (207,171,0): 48, 27, 24, (207,172,0): 51, 27, 25, (207,173,0): 50, 29, 26, (207,174,0): 52, 28, 26, (207,175,0): 53, 29, 27, (207,176,0): 54, 29, 25, (207,177,0): 54, 29, 25, (207,178,0): 55, 30, 26, (207,179,0): 55, 30, 26, (207,180,0): 56, 31, 27, (207,181,0): 56, 31, 27, (207,182,0): 57, 32, 28, (207,183,0): 57, 32, 28, (207,184,0): 54, 29, 25, (207,185,0): 54, 29, 25, (207,186,0): 54, 29, 25, (207,187,0): 54, 29, 25, (207,188,0): 54, 29, 25, (207,189,0): 54, 29, 25, (207,190,0): 54, 29, 25, (207,191,0): 54, 29, 25, (207,192,0): 54, 30, 26, (207,193,0): 52, 32, 25, (207,194,0): 53, 29, 25, (207,195,0): 50, 30, 23, (207,196,0): 51, 27, 23, (207,197,0): 49, 29, 22, (207,198,0): 50, 26, 22, (207,199,0): 48, 28, 21, (207,200,0): 51, 27, 23, (207,201,0): 49, 29, 22, (207,202,0): 51, 27, 23, (207,203,0): 49, 29, 22, (207,204,0): 51, 27, 23, (207,205,0): 49, 29, 22, (207,206,0): 51, 27, 23, (207,207,0): 51, 28, 22, (207,208,0): 54, 29, 22, (207,209,0): 54, 29, 22, (207,210,0): 56, 29, 22, (207,211,0): 54, 29, 22, (207,212,0): 56, 29, 22, (207,213,0): 54, 29, 22, (207,214,0): 56, 29, 22, (207,215,0): 54, 29, 22, (207,216,0): 56, 29, 22, (207,217,0): 54, 30, 20, (207,218,0): 57, 30, 21, (207,219,0): 56, 32, 22, (207,220,0): 60, 33, 24, (207,221,0): 59, 35, 25, (207,222,0): 62, 35, 26, (207,223,0): 63, 36, 27, (207,224,0): 56, 27, 21, (207,225,0): 61, 32, 24, (207,226,0): 67, 37, 29, (207,227,0): 70, 40, 29, (207,228,0): 71, 42, 28, (207,229,0): 72, 43, 25, (207,230,0): 75, 47, 26, (207,231,0): 79, 49, 25, (207,232,0): 80, 50, 26, (207,233,0): 81, 51, 25, (207,234,0): 81, 51, 25, (207,235,0): 81, 51, 25, (207,236,0): 81, 49, 24, (207,237,0): 78, 46, 23, (207,238,0): 76, 44, 21, (207,239,0): 74, 42, 21, (207,240,0): 77, 46, 25, (207,241,0): 78, 47, 26, (207,242,0): 76, 48, 27, (207,243,0): 72, 44, 22, (207,244,0): 67, 39, 18, (207,245,0): 65, 37, 16, (207,246,0): 65, 38, 17, (207,247,0): 68, 41, 20, (207,248,0): 67, 42, 20, (207,249,0): 67, 42, 22, (207,250,0): 66, 41, 21, (207,251,0): 66, 41, 21, (207,252,0): 63, 41, 20, (207,253,0): 62, 40, 19, (207,254,0): 62, 40, 19, (207,255,0): 61, 38, 20, (207,256,0): 60, 39, 22, (207,257,0): 57, 38, 23, (207,258,0): 58, 36, 23, (207,259,0): 57, 34, 26, (207,260,0): 56, 33, 27, (207,261,0): 58, 33, 29, (207,262,0): 59, 33, 32, (207,263,0): 59, 33, 32, (207,264,0): 62, 37, 33, (207,265,0): 66, 39, 32, (207,266,0): 70, 43, 32, (207,267,0): 76, 49, 32, (207,268,0): 82, 56, 33, (207,269,0): 88, 63, 33, (207,270,0): 92, 67, 36, (207,271,0): 96, 70, 37, (207,272,0): 103, 74, 42, (207,273,0): 103, 74, 42, (207,274,0): 102, 73, 43, (207,275,0): 101, 72, 42, (207,276,0): 100, 71, 41, (207,277,0): 99, 70, 40, (207,278,0): 99, 69, 41, (207,279,0): 99, 69, 41, (207,280,0): 96, 66, 38, (207,281,0): 97, 67, 39, (207,282,0): 97, 67, 41, (207,283,0): 96, 69, 42, (207,284,0): 98, 68, 42, (207,285,0): 97, 70, 43, (207,286,0): 97, 70, 43, (207,287,0): 96, 70, 43, (207,288,0): 94, 71, 40, (207,289,0): 93, 73, 40, (207,290,0): 93, 73, 40, (207,291,0): 94, 74, 41, (207,292,0): 95, 76, 44, (207,293,0): 96, 77, 45, (207,294,0): 96, 77, 45, (207,295,0): 97, 78, 46, (207,296,0): 99, 82, 52, (207,297,0): 98, 81, 51, (207,298,0): 96, 81, 50, (207,299,0): 95, 80, 49, (207,300,0): 95, 80, 51, (207,301,0): 96, 81, 52, (207,302,0): 96, 82, 53, (207,303,0): 97, 83, 56, (207,304,0): 100, 84, 59, (207,305,0): 98, 82, 59, (207,306,0): 96, 80, 57, (207,307,0): 93, 77, 54, (207,308,0): 92, 76, 53, (207,309,0): 91, 75, 52, (207,310,0): 91, 75, 52, (207,311,0): 91, 74, 54, (207,312,0): 97, 80, 60, (207,313,0): 98, 81, 61, (207,314,0): 98, 81, 61, (207,315,0): 99, 82, 62, (207,316,0): 100, 83, 63, (207,317,0): 101, 84, 64, (207,318,0): 102, 85, 65, (207,319,0): 103, 86, 66, (207,320,0): 98, 83, 64, (207,321,0): 100, 85, 64, (207,322,0): 103, 89, 63, (207,323,0): 108, 92, 66, (207,324,0): 112, 96, 70, (207,325,0): 115, 101, 75, (207,326,0): 116, 101, 78, (207,327,0): 115, 103, 79, (207,328,0): 122, 111, 83, (207,329,0): 123, 115, 78, (207,330,0): 136, 134, 85, (207,331,0): 161, 162, 102, (207,332,0): 179, 185, 115, (207,333,0): 182, 190, 113, (207,334,0): 180, 191, 112, (207,335,0): 181, 194, 115, (207,336,0): 175, 192, 114, (207,337,0): 172, 193, 116, (207,338,0): 171, 192, 117, (207,339,0): 170, 190, 118, (207,340,0): 168, 188, 117, (207,341,0): 166, 186, 117, (207,342,0): 162, 183, 114, (207,343,0): 161, 182, 115, (207,344,0): 167, 188, 121, (207,345,0): 167, 188, 119, (207,346,0): 166, 187, 118, (207,347,0): 168, 188, 117, (207,348,0): 171, 191, 119, (207,349,0): 176, 197, 122, (207,350,0): 181, 202, 125, (207,351,0): 184, 206, 124, (207,352,0): 188, 213, 122, (207,353,0): 193, 219, 122, (207,354,0): 200, 226, 127, (207,355,0): 204, 230, 129, (207,356,0): 206, 233, 126, (207,357,0): 206, 236, 124, (207,358,0): 209, 237, 124, (207,359,0): 210, 241, 124, (207,360,0): 219, 250, 131, (207,361,0): 217, 248, 129, (207,362,0): 214, 245, 128, (207,363,0): 210, 240, 126, (207,364,0): 208, 238, 126, (207,365,0): 206, 235, 125, (207,366,0): 206, 235, 127, (207,367,0): 204, 235, 131, (207,368,0): 203, 235, 134, (207,369,0): 196, 231, 129, (207,370,0): 190, 225, 123, (207,371,0): 187, 222, 118, (207,372,0): 189, 225, 119, (207,373,0): 192, 228, 120, (207,374,0): 194, 230, 122, (207,375,0): 194, 232, 121, (207,376,0): 197, 235, 124, (207,377,0): 198, 236, 125, (207,378,0): 200, 238, 127, (207,379,0): 202, 240, 129, (207,380,0): 205, 243, 134, (207,381,0): 206, 245, 136, (207,382,0): 207, 246, 139, (207,383,0): 208, 247, 140, (207,384,0): 214, 255, 149, (207,385,0): 214, 255, 149, (207,386,0): 217, 255, 150, (207,387,0): 220, 255, 153, (207,388,0): 225, 255, 155, (207,389,0): 232, 255, 161, (207,390,0): 237, 255, 163, (207,391,0): 242, 255, 165, (207,392,0): 243, 255, 166, (207,393,0): 244, 254, 165, (207,394,0): 244, 252, 166, (207,395,0): 244, 252, 169, (207,396,0): 244, 251, 171, (207,397,0): 246, 253, 176, (207,398,0): 249, 255, 181, (207,399,0): 252, 255, 186, (207,400,0): 252, 254, 189, (207,401,0): 254, 254, 192, (207,402,0): 254, 253, 196, (207,403,0): 255, 254, 197, (207,404,0): 255, 254, 200, (207,405,0): 255, 255, 201, (207,406,0): 255, 254, 205, (207,407,0): 255, 254, 205, (207,408,0): 255, 254, 206, (207,409,0): 255, 254, 206, (207,410,0): 255, 254, 205, (207,411,0): 255, 255, 205, (207,412,0): 255, 255, 203, (207,413,0): 255, 255, 203, (207,414,0): 255, 255, 201, (207,415,0): 253, 255, 203, (207,416,0): 253, 255, 206, (207,417,0): 252, 255, 208, (207,418,0): 253, 254, 210, (207,419,0): 251, 254, 211, (207,420,0): 251, 254, 211, (207,421,0): 248, 253, 212, (207,422,0): 247, 254, 213, (207,423,0): 243, 254, 212, (207,424,0): 242, 255, 216, (207,425,0): 239, 255, 215, (207,426,0): 234, 255, 213, (207,427,0): 229, 255, 211, (207,428,0): 222, 255, 208, (207,429,0): 217, 255, 204, (207,430,0): 215, 253, 202, (207,431,0): 213, 253, 200, (207,432,0): 211, 250, 193, (207,433,0): 207, 248, 188, (207,434,0): 203, 244, 186, (207,435,0): 200, 243, 187, (207,436,0): 200, 245, 190, (207,437,0): 200, 247, 193, (207,438,0): 199, 246, 194, (207,439,0): 198, 244, 195, (207,440,0): 202, 245, 199, (207,441,0): 195, 238, 193, (207,442,0): 187, 228, 186, (207,443,0): 183, 221, 182, (207,444,0): 181, 217, 179, (207,445,0): 179, 215, 179, (207,446,0): 178, 212, 177, (207,447,0): 177, 211, 176, (207,448,0): 174, 205, 171, (207,449,0): 173, 203, 167, (207,450,0): 170, 200, 166, (207,451,0): 169, 196, 165, (207,452,0): 166, 193, 162, (207,453,0): 163, 189, 160, (207,454,0): 163, 187, 161, (207,455,0): 163, 187, 163, (207,456,0): 166, 190, 168, (207,457,0): 164, 187, 167, (207,458,0): 163, 186, 166, (207,459,0): 162, 187, 168, (207,460,0): 163, 187, 171, (207,461,0): 161, 185, 169, (207,462,0): 154, 181, 166, (207,463,0): 152, 176, 160, (207,464,0): 149, 170, 153, (207,465,0): 149, 168, 149, (207,466,0): 148, 166, 150, (207,467,0): 150, 168, 152, (207,468,0): 153, 174, 157, (207,469,0): 157, 178, 161, (207,470,0): 159, 180, 165, (207,471,0): 159, 180, 165, (207,472,0): 150, 171, 156, (207,473,0): 151, 172, 157, (207,474,0): 152, 173, 158, (207,475,0): 153, 174, 159, (207,476,0): 154, 174, 162, (207,477,0): 152, 174, 161, (207,478,0): 152, 172, 160, (207,479,0): 151, 171, 159, (207,480,0): 150, 165, 158, (207,481,0): 146, 161, 156, (207,482,0): 141, 158, 152, (207,483,0): 137, 156, 150, (207,484,0): 136, 155, 149, (207,485,0): 133, 154, 147, (207,486,0): 129, 150, 145, (207,487,0): 124, 147, 141, (207,488,0): 120, 140, 138, (207,489,0): 120, 140, 138, (207,490,0): 119, 137, 137, (207,491,0): 118, 134, 134, (207,492,0): 114, 128, 129, (207,493,0): 112, 123, 125, (207,494,0): 109, 119, 121, (207,495,0): 107, 115, 117, (207,496,0): 112, 118, 116, (207,497,0): 111, 117, 113, (207,498,0): 110, 115, 111, (207,499,0): 109, 114, 110, (207,500,0): 108, 113, 109, (207,501,0): 112, 114, 109, (207,502,0): 115, 116, 111, (207,503,0): 117, 118, 112, (207,504,0): 116, 115, 110, (207,505,0): 114, 114, 106, (207,506,0): 113, 110, 103, (207,507,0): 111, 107, 98, (207,508,0): 108, 104, 95, (207,509,0): 107, 100, 92, (207,510,0): 104, 97, 89, (207,511,0): 100, 96, 85, (207,512,0): 104, 100, 88, (207,513,0): 103, 101, 88, (207,514,0): 104, 102, 89, (207,515,0): 104, 102, 89, (207,516,0): 104, 102, 90, (207,517,0): 104, 102, 90, (207,518,0): 102, 102, 92, (207,519,0): 103, 103, 93, (207,520,0): 92, 93, 85, (207,521,0): 90, 91, 83, (207,522,0): 90, 91, 85, (207,523,0): 93, 94, 88, (207,524,0): 97, 98, 93, (207,525,0): 98, 100, 95, (207,526,0): 96, 96, 94, (207,527,0): 93, 93, 91, (207,528,0): 96, 95, 93, (207,529,0): 97, 96, 94, (207,530,0): 97, 96, 94, (207,531,0): 93, 93, 91, (207,532,0): 90, 90, 88, (207,533,0): 87, 89, 86, (207,534,0): 89, 91, 90, (207,535,0): 90, 94, 93, (207,536,0): 92, 96, 97, (207,537,0): 94, 100, 100, (207,538,0): 96, 104, 106, (207,539,0): 101, 109, 111, (207,540,0): 105, 113, 115, (207,541,0): 108, 116, 118, (207,542,0): 108, 118, 119, (207,543,0): 109, 119, 120, (207,544,0): 112, 117, 120, (207,545,0): 112, 117, 120, (207,546,0): 111, 116, 119, (207,547,0): 111, 116, 119, (207,548,0): 108, 116, 118, (207,549,0): 107, 115, 117, (207,550,0): 107, 115, 118, (207,551,0): 106, 114, 117, (207,552,0): 104, 111, 117, (207,553,0): 103, 112, 117, (207,554,0): 102, 111, 118, (207,555,0): 101, 110, 117, (207,556,0): 100, 109, 116, (207,557,0): 99, 108, 115, (207,558,0): 97, 108, 114, (207,559,0): 94, 107, 115, (207,560,0): 96, 110, 119, (207,561,0): 94, 111, 119, (207,562,0): 96, 113, 121, (207,563,0): 99, 116, 124, (207,564,0): 105, 119, 128, (207,565,0): 105, 120, 127, (207,566,0): 102, 115, 124, (207,567,0): 100, 110, 119, (207,568,0): 99, 108, 117, (207,569,0): 96, 105, 112, (207,570,0): 91, 98, 106, (207,571,0): 85, 92, 98, (207,572,0): 82, 87, 93, (207,573,0): 80, 85, 89, (207,574,0): 80, 85, 89, (207,575,0): 81, 84, 89, (207,576,0): 81, 80, 86, (207,577,0): 81, 80, 85, (207,578,0): 80, 79, 84, (207,579,0): 80, 79, 84, (207,580,0): 79, 78, 83, (207,581,0): 78, 77, 82, (207,582,0): 78, 77, 82, (207,583,0): 79, 77, 82, (207,584,0): 88, 86, 91, (207,585,0): 87, 85, 90, (207,586,0): 86, 84, 89, (207,587,0): 83, 81, 86, (207,588,0): 81, 79, 84, (207,589,0): 78, 76, 79, (207,590,0): 77, 75, 80, (207,591,0): 76, 74, 79, (207,592,0): 78, 73, 79, (207,593,0): 79, 72, 79, (207,594,0): 78, 71, 78, (207,595,0): 78, 69, 74, (207,596,0): 75, 66, 69, (207,597,0): 72, 61, 65, (207,598,0): 69, 59, 60, (207,599,0): 67, 57, 58, (208,0,0): 39, 27, 41, (208,1,0): 39, 27, 39, (208,2,0): 40, 28, 42, (208,3,0): 40, 28, 40, (208,4,0): 41, 29, 43, (208,5,0): 41, 29, 41, (208,6,0): 42, 30, 44, (208,7,0): 42, 30, 42, (208,8,0): 41, 29, 43, (208,9,0): 41, 29, 41, (208,10,0): 41, 29, 43, (208,11,0): 42, 30, 42, (208,12,0): 42, 30, 44, (208,13,0): 43, 31, 43, (208,14,0): 43, 31, 45, (208,15,0): 43, 31, 43, (208,16,0): 45, 33, 43, (208,17,0): 44, 34, 43, (208,18,0): 45, 33, 43, (208,19,0): 45, 33, 43, (208,20,0): 45, 33, 43, (208,21,0): 45, 33, 43, (208,22,0): 45, 33, 43, (208,23,0): 46, 33, 43, (208,24,0): 48, 35, 45, (208,25,0): 50, 34, 45, (208,26,0): 50, 34, 45, (208,27,0): 51, 35, 46, (208,28,0): 52, 34, 46, (208,29,0): 53, 35, 47, (208,30,0): 53, 35, 47, (208,31,0): 53, 35, 47, (208,32,0): 54, 37, 47, (208,33,0): 54, 37, 47, (208,34,0): 54, 37, 47, (208,35,0): 54, 37, 47, (208,36,0): 54, 37, 47, (208,37,0): 54, 37, 47, (208,38,0): 54, 37, 47, (208,39,0): 54, 37, 47, (208,40,0): 54, 37, 47, (208,41,0): 54, 37, 47, (208,42,0): 54, 37, 47, (208,43,0): 54, 37, 47, (208,44,0): 54, 37, 47, (208,45,0): 54, 37, 47, (208,46,0): 56, 36, 47, (208,47,0): 54, 37, 47, (208,48,0): 55, 38, 48, (208,49,0): 55, 38, 48, (208,50,0): 55, 38, 48, (208,51,0): 57, 37, 48, (208,52,0): 57, 37, 46, (208,53,0): 57, 37, 46, (208,54,0): 57, 38, 44, (208,55,0): 58, 37, 44, (208,56,0): 58, 37, 44, (208,57,0): 59, 36, 44, (208,58,0): 59, 36, 42, (208,59,0): 59, 36, 42, (208,60,0): 59, 37, 40, (208,61,0): 61, 36, 40, (208,62,0): 61, 36, 40, (208,63,0): 61, 36, 40, (208,64,0): 61, 40, 45, (208,65,0): 60, 41, 45, (208,66,0): 61, 40, 45, (208,67,0): 61, 41, 43, (208,68,0): 61, 40, 45, (208,69,0): 62, 40, 43, (208,70,0): 62, 40, 43, (208,71,0): 62, 40, 42, (208,72,0): 59, 37, 39, (208,73,0): 61, 37, 37, (208,74,0): 61, 36, 39, (208,75,0): 62, 36, 37, (208,76,0): 62, 36, 37, (208,77,0): 62, 36, 35, (208,78,0): 62, 36, 37, (208,79,0): 64, 35, 37, (208,80,0): 64, 35, 39, (208,81,0): 65, 34, 39, (208,82,0): 65, 34, 39, (208,83,0): 65, 34, 39, (208,84,0): 65, 34, 39, (208,85,0): 65, 34, 39, (208,86,0): 65, 34, 39, (208,87,0): 65, 35, 37, (208,88,0): 62, 31, 36, (208,89,0): 63, 32, 37, (208,90,0): 63, 32, 37, (208,91,0): 64, 33, 38, (208,92,0): 62, 33, 37, (208,93,0): 61, 32, 36, (208,94,0): 59, 30, 34, (208,95,0): 58, 29, 33, (208,96,0): 60, 31, 35, (208,97,0): 60, 31, 35, (208,98,0): 61, 32, 36, (208,99,0): 61, 32, 36, (208,100,0): 61, 32, 36, (208,101,0): 61, 32, 36, (208,102,0): 62, 33, 37, (208,103,0): 60, 34, 37, (208,104,0): 57, 31, 34, (208,105,0): 57, 31, 34, (208,106,0): 57, 31, 34, (208,107,0): 56, 30, 33, (208,108,0): 56, 30, 33, (208,109,0): 55, 29, 32, (208,110,0): 55, 29, 32, (208,111,0): 54, 29, 32, (208,112,0): 52, 30, 33, (208,113,0): 52, 29, 35, (208,114,0): 51, 28, 34, (208,115,0): 50, 27, 33, (208,116,0): 47, 24, 30, (208,117,0): 44, 21, 27, (208,118,0): 40, 19, 24, (208,119,0): 39, 18, 23, (208,120,0): 39, 20, 24, (208,121,0): 39, 20, 24, (208,122,0): 40, 21, 25, (208,123,0): 38, 22, 25, (208,124,0): 41, 22, 26, (208,125,0): 39, 23, 26, (208,126,0): 42, 23, 27, (208,127,0): 42, 23, 25, (208,128,0): 43, 23, 24, (208,129,0): 44, 22, 24, (208,130,0): 44, 22, 24, (208,131,0): 44, 22, 24, (208,132,0): 44, 23, 22, (208,133,0): 44, 23, 22, (208,134,0): 44, 23, 22, (208,135,0): 44, 23, 22, (208,136,0): 47, 26, 25, (208,137,0): 47, 26, 23, (208,138,0): 48, 27, 24, (208,139,0): 48, 27, 24, (208,140,0): 49, 28, 25, (208,141,0): 49, 28, 25, (208,142,0): 50, 29, 24, (208,143,0): 50, 29, 24, (208,144,0): 49, 28, 27, (208,145,0): 49, 28, 27, (208,146,0): 49, 28, 27, (208,147,0): 49, 28, 27, (208,148,0): 49, 28, 27, (208,149,0): 49, 28, 27, (208,150,0): 49, 28, 27, (208,151,0): 49, 28, 25, (208,152,0): 50, 29, 26, (208,153,0): 50, 29, 26, (208,154,0): 50, 29, 26, (208,155,0): 50, 29, 26, (208,156,0): 50, 29, 26, (208,157,0): 50, 29, 26, (208,158,0): 50, 29, 26, (208,159,0): 50, 29, 26, (208,160,0): 51, 27, 23, (208,161,0): 51, 27, 23, (208,162,0): 52, 27, 23, (208,163,0): 51, 27, 23, (208,164,0): 52, 27, 23, (208,165,0): 51, 27, 23, (208,166,0): 52, 27, 23, (208,167,0): 51, 27, 23, (208,168,0): 52, 27, 23, (208,169,0): 50, 26, 22, (208,170,0): 50, 25, 21, (208,171,0): 49, 25, 21, (208,172,0): 51, 26, 22, (208,173,0): 51, 27, 23, (208,174,0): 53, 28, 24, (208,175,0): 54, 29, 25, (208,176,0): 56, 31, 26, (208,177,0): 56, 31, 26, (208,178,0): 55, 30, 25, (208,179,0): 55, 30, 25, (208,180,0): 54, 29, 24, (208,181,0): 54, 29, 24, (208,182,0): 53, 28, 23, (208,183,0): 53, 28, 23, (208,184,0): 55, 30, 25, (208,185,0): 55, 30, 25, (208,186,0): 55, 30, 25, (208,187,0): 55, 30, 25, (208,188,0): 55, 30, 25, (208,189,0): 55, 30, 25, (208,190,0): 55, 30, 25, (208,191,0): 55, 30, 25, (208,192,0): 55, 30, 25, (208,193,0): 54, 31, 23, (208,194,0): 54, 29, 24, (208,195,0): 52, 29, 21, (208,196,0): 53, 28, 23, (208,197,0): 51, 28, 20, (208,198,0): 51, 26, 21, (208,199,0): 50, 27, 19, (208,200,0): 53, 28, 23, (208,201,0): 52, 29, 21, (208,202,0): 54, 29, 24, (208,203,0): 53, 30, 22, (208,204,0): 55, 30, 25, (208,205,0): 54, 31, 23, (208,206,0): 56, 31, 26, (208,207,0): 56, 31, 24, (208,208,0): 58, 31, 24, (208,209,0): 58, 31, 24, (208,210,0): 59, 30, 24, (208,211,0): 58, 31, 24, (208,212,0): 59, 30, 24, (208,213,0): 58, 31, 24, (208,214,0): 59, 30, 22, (208,215,0): 58, 31, 22, (208,216,0): 60, 31, 23, (208,217,0): 59, 32, 21, (208,218,0): 59, 31, 20, (208,219,0): 58, 31, 20, (208,220,0): 60, 32, 21, (208,221,0): 60, 33, 22, (208,222,0): 63, 35, 24, (208,223,0): 64, 36, 25, (208,224,0): 64, 34, 26, (208,225,0): 66, 33, 26, (208,226,0): 68, 35, 28, (208,227,0): 69, 37, 26, (208,228,0): 71, 39, 24, (208,229,0): 72, 41, 21, (208,230,0): 73, 42, 21, (208,231,0): 75, 43, 20, (208,232,0): 84, 52, 27, (208,233,0): 81, 50, 22, (208,234,0): 77, 46, 18, (208,235,0): 74, 43, 15, (208,236,0): 74, 43, 15, (208,237,0): 76, 44, 19, (208,238,0): 79, 47, 22, (208,239,0): 81, 49, 24, (208,240,0): 75, 45, 21, (208,241,0): 75, 45, 21, (208,242,0): 72, 44, 22, (208,243,0): 71, 43, 19, (208,244,0): 70, 42, 20, (208,245,0): 69, 41, 19, (208,246,0): 67, 41, 18, (208,247,0): 67, 41, 18, (208,248,0): 68, 44, 20, (208,249,0): 68, 43, 21, (208,250,0): 69, 44, 22, (208,251,0): 69, 44, 22, (208,252,0): 67, 45, 22, (208,253,0): 67, 45, 22, (208,254,0): 67, 45, 24, (208,255,0): 68, 46, 25, (208,256,0): 70, 48, 27, (208,257,0): 68, 47, 26, (208,258,0): 66, 43, 27, (208,259,0): 64, 41, 27, (208,260,0): 62, 38, 28, (208,261,0): 62, 34, 30, (208,262,0): 62, 34, 31, (208,263,0): 62, 34, 31, (208,264,0): 65, 37, 33, (208,265,0): 68, 39, 31, (208,266,0): 72, 44, 32, (208,267,0): 79, 50, 32, (208,268,0): 84, 56, 32, (208,269,0): 89, 62, 32, (208,270,0): 93, 67, 34, (208,271,0): 98, 70, 33, (208,272,0): 104, 76, 39, (208,273,0): 105, 75, 39, (208,274,0): 105, 75, 39, (208,275,0): 105, 75, 39, (208,276,0): 104, 75, 41, (208,277,0): 103, 74, 40, (208,278,0): 102, 73, 41, (208,279,0): 101, 72, 40, (208,280,0): 99, 73, 40, (208,281,0): 98, 72, 39, (208,282,0): 95, 68, 38, (208,283,0): 93, 68, 37, (208,284,0): 94, 67, 38, (208,285,0): 94, 69, 39, (208,286,0): 97, 72, 42, (208,287,0): 97, 74, 43, (208,288,0): 95, 75, 42, (208,289,0): 96, 76, 43, (208,290,0): 97, 77, 44, (208,291,0): 98, 78, 45, (208,292,0): 98, 79, 47, (208,293,0): 99, 80, 48, (208,294,0): 100, 81, 49, (208,295,0): 100, 81, 49, (208,296,0): 94, 78, 45, (208,297,0): 94, 78, 45, (208,298,0): 94, 79, 46, (208,299,0): 95, 80, 47, (208,300,0): 96, 81, 50, (208,301,0): 97, 82, 51, (208,302,0): 97, 84, 52, (208,303,0): 97, 84, 52, (208,304,0): 98, 83, 54, (208,305,0): 98, 82, 56, (208,306,0): 97, 81, 56, (208,307,0): 96, 80, 55, (208,308,0): 95, 79, 54, (208,309,0): 94, 78, 53, (208,310,0): 93, 77, 52, (208,311,0): 93, 77, 54, (208,312,0): 96, 80, 57, (208,313,0): 95, 79, 56, (208,314,0): 95, 79, 56, (208,315,0): 95, 79, 56, (208,316,0): 96, 79, 59, (208,317,0): 98, 81, 61, (208,318,0): 100, 83, 63, (208,319,0): 101, 85, 62, (208,320,0): 101, 83, 59, (208,321,0): 103, 86, 60, (208,322,0): 105, 88, 62, (208,323,0): 105, 89, 63, (208,324,0): 106, 90, 64, (208,325,0): 108, 94, 68, (208,326,0): 112, 100, 76, (208,327,0): 115, 105, 80, (208,328,0): 119, 112, 84, (208,329,0): 122, 118, 83, (208,330,0): 127, 126, 82, (208,331,0): 136, 139, 84, (208,332,0): 157, 163, 99, (208,333,0): 181, 189, 114, (208,334,0): 188, 200, 118, (208,335,0): 184, 198, 113, (208,336,0): 180, 198, 114, (208,337,0): 178, 198, 113, (208,338,0): 176, 195, 113, (208,339,0): 172, 194, 112, (208,340,0): 170, 191, 114, (208,341,0): 168, 190, 115, (208,342,0): 166, 190, 116, (208,343,0): 166, 190, 116, (208,344,0): 168, 192, 118, (208,345,0): 172, 196, 120, (208,346,0): 176, 200, 124, (208,347,0): 179, 202, 124, (208,348,0): 181, 203, 121, (208,349,0): 183, 205, 122, (208,350,0): 190, 210, 125, (208,351,0): 192, 215, 125, (208,352,0): 195, 221, 122, (208,353,0): 195, 223, 120, (208,354,0): 198, 227, 121, (208,355,0): 200, 229, 123, (208,356,0): 203, 232, 124, (208,357,0): 203, 235, 124, (208,358,0): 206, 235, 125, (208,359,0): 205, 237, 126, (208,360,0): 210, 243, 130, (208,361,0): 210, 243, 130, (208,362,0): 207, 241, 129, (208,363,0): 202, 236, 124, (208,364,0): 198, 232, 120, (208,365,0): 198, 232, 122, (208,366,0): 199, 235, 125, (208,367,0): 203, 239, 131, (208,368,0): 202, 235, 131, (208,369,0): 200, 232, 131, (208,370,0): 193, 228, 126, (208,371,0): 187, 222, 120, (208,372,0): 182, 219, 114, (208,373,0): 183, 220, 115, (208,374,0): 189, 226, 121, (208,375,0): 194, 233, 127, (208,376,0): 195, 236, 130, (208,377,0): 198, 239, 133, (208,378,0): 201, 244, 137, (208,379,0): 204, 247, 140, (208,380,0): 207, 250, 143, (208,381,0): 206, 252, 144, (208,382,0): 205, 251, 143, (208,383,0): 207, 250, 143, (208,384,0): 215, 253, 150, (208,385,0): 217, 254, 151, (208,386,0): 219, 255, 157, (208,387,0): 222, 255, 161, (208,388,0): 227, 255, 166, (208,389,0): 231, 255, 170, (208,390,0): 234, 255, 172, (208,391,0): 237, 255, 172, (208,392,0): 239, 255, 173, (208,393,0): 242, 255, 174, (208,394,0): 243, 255, 176, (208,395,0): 245, 255, 178, (208,396,0): 246, 255, 183, (208,397,0): 249, 255, 188, (208,398,0): 250, 255, 192, (208,399,0): 252, 255, 195, (208,400,0): 251, 255, 196, (208,401,0): 253, 254, 196, (208,402,0): 253, 253, 199, (208,403,0): 254, 254, 200, (208,404,0): 255, 253, 204, (208,405,0): 255, 254, 205, (208,406,0): 255, 253, 208, (208,407,0): 255, 254, 209, (208,408,0): 255, 253, 210, (208,409,0): 255, 253, 210, (208,410,0): 254, 253, 207, (208,411,0): 252, 254, 207, (208,412,0): 251, 255, 205, (208,413,0): 249, 255, 205, (208,414,0): 248, 255, 203, (208,415,0): 248, 255, 204, (208,416,0): 246, 252, 204, (208,417,0): 248, 254, 210, (208,418,0): 251, 253, 214, (208,419,0): 251, 255, 218, (208,420,0): 251, 255, 222, (208,421,0): 249, 254, 224, (208,422,0): 245, 254, 225, (208,423,0): 243, 253, 226, (208,424,0): 238, 252, 226, (208,425,0): 235, 254, 224, (208,426,0): 231, 255, 224, (208,427,0): 227, 255, 221, (208,428,0): 222, 255, 216, (208,429,0): 216, 255, 212, (208,430,0): 214, 255, 208, (208,431,0): 213, 255, 203, (208,432,0): 209, 249, 196, (208,433,0): 207, 248, 192, (208,434,0): 202, 247, 192, (208,435,0): 199, 246, 192, (208,436,0): 198, 246, 196, (208,437,0): 198, 248, 199, (208,438,0): 201, 248, 204, (208,439,0): 204, 249, 208, (208,440,0): 205, 245, 208, (208,441,0): 199, 235, 199, (208,442,0): 189, 223, 190, (208,443,0): 186, 217, 185, (208,444,0): 186, 215, 184, (208,445,0): 184, 213, 182, (208,446,0): 179, 210, 178, (208,447,0): 175, 206, 172, (208,448,0): 165, 199, 164, (208,449,0): 165, 199, 164, (208,450,0): 166, 197, 165, (208,451,0): 164, 193, 162, (208,452,0): 161, 187, 158, (208,453,0): 159, 185, 158, (208,454,0): 161, 185, 161, (208,455,0): 164, 185, 166, (208,456,0): 158, 181, 163, (208,457,0): 159, 182, 166, (208,458,0): 158, 182, 169, (208,459,0): 156, 182, 171, (208,460,0): 154, 181, 172, (208,461,0): 151, 181, 171, (208,462,0): 148, 179, 171, (208,463,0): 147, 178, 170, (208,464,0): 140, 172, 161, (208,465,0): 139, 171, 158, (208,466,0): 140, 172, 161, (208,467,0): 145, 177, 164, (208,468,0): 152, 182, 170, (208,469,0): 156, 186, 174, (208,470,0): 160, 188, 176, (208,471,0): 159, 187, 175, (208,472,0): 154, 180, 169, (208,473,0): 153, 179, 166, (208,474,0): 152, 176, 163, (208,475,0): 151, 175, 162, (208,476,0): 150, 174, 161, (208,477,0): 150, 174, 161, (208,478,0): 152, 174, 162, (208,479,0): 152, 176, 163, (208,480,0): 146, 169, 161, (208,481,0): 143, 168, 162, (208,482,0): 140, 165, 159, (208,483,0): 136, 163, 156, (208,484,0): 132, 159, 154, (208,485,0): 127, 156, 151, (208,486,0): 124, 153, 149, (208,487,0): 123, 152, 148, (208,488,0): 121, 147, 144, (208,489,0): 119, 144, 141, (208,490,0): 115, 136, 137, (208,491,0): 111, 131, 132, (208,492,0): 109, 127, 131, (208,493,0): 110, 125, 130, (208,494,0): 113, 126, 132, (208,495,0): 116, 127, 131, (208,496,0): 112, 120, 122, (208,497,0): 111, 120, 117, (208,498,0): 111, 117, 115, (208,499,0): 110, 116, 114, (208,500,0): 110, 116, 114, (208,501,0): 113, 118, 114, (208,502,0): 114, 119, 113, (208,503,0): 115, 120, 113, (208,504,0): 116, 119, 112, (208,505,0): 115, 118, 109, (208,506,0): 113, 114, 106, (208,507,0): 110, 112, 101, (208,508,0): 106, 108, 97, (208,509,0): 103, 103, 91, (208,510,0): 100, 100, 88, (208,511,0): 99, 99, 87, (208,512,0): 95, 97, 84, (208,513,0): 96, 100, 86, (208,514,0): 98, 102, 88, (208,515,0): 100, 104, 90, (208,516,0): 101, 104, 93, (208,517,0): 101, 104, 93, (208,518,0): 100, 103, 92, (208,519,0): 99, 102, 93, (208,520,0): 91, 94, 87, (208,521,0): 90, 93, 86, (208,522,0): 90, 93, 86, (208,523,0): 89, 92, 85, (208,524,0): 90, 92, 87, (208,525,0): 89, 94, 88, (208,526,0): 93, 95, 90, (208,527,0): 94, 96, 93, (208,528,0): 90, 92, 89, (208,529,0): 89, 91, 90, (208,530,0): 88, 90, 89, (208,531,0): 87, 89, 88, (208,532,0): 87, 89, 88, (208,533,0): 85, 89, 88, (208,534,0): 86, 90, 91, (208,535,0): 86, 92, 92, (208,536,0): 88, 93, 96, (208,537,0): 89, 97, 99, (208,538,0): 94, 102, 105, (208,539,0): 99, 107, 110, (208,540,0): 103, 113, 115, (208,541,0): 106, 116, 118, (208,542,0): 107, 117, 119, (208,543,0): 108, 118, 120, (208,544,0): 111, 121, 122, (208,545,0): 110, 120, 121, (208,546,0): 109, 119, 121, (208,547,0): 109, 119, 121, (208,548,0): 108, 118, 120, (208,549,0): 108, 118, 120, (208,550,0): 109, 118, 123, (208,551,0): 109, 118, 123, (208,552,0): 107, 116, 123, (208,553,0): 104, 115, 121, (208,554,0): 100, 111, 117, (208,555,0): 97, 108, 114, (208,556,0): 97, 107, 116, (208,557,0): 98, 108, 117, (208,558,0): 101, 111, 120, (208,559,0): 101, 114, 123, (208,560,0): 99, 117, 127, (208,561,0): 99, 119, 130, (208,562,0): 101, 121, 132, (208,563,0): 103, 123, 134, (208,564,0): 103, 121, 133, (208,565,0): 102, 120, 132, (208,566,0): 100, 116, 131, (208,567,0): 101, 115, 128, (208,568,0): 102, 114, 126, (208,569,0): 97, 110, 119, (208,570,0): 93, 103, 113, (208,571,0): 90, 99, 108, (208,572,0): 88, 95, 101, (208,573,0): 85, 93, 96, (208,574,0): 80, 88, 91, (208,575,0): 77, 85, 88, (208,576,0): 81, 84, 89, (208,577,0): 82, 83, 88, (208,578,0): 81, 82, 87, (208,579,0): 80, 81, 86, (208,580,0): 78, 79, 84, (208,581,0): 76, 77, 82, (208,582,0): 75, 76, 80, (208,583,0): 76, 75, 80, (208,584,0): 81, 81, 83, (208,585,0): 80, 80, 82, (208,586,0): 81, 79, 82, (208,587,0): 80, 78, 81, (208,588,0): 79, 77, 80, (208,589,0): 78, 76, 77, (208,590,0): 78, 76, 79, (208,591,0): 79, 74, 78, (208,592,0): 75, 69, 73, (208,593,0): 77, 68, 73, (208,594,0): 75, 66, 71, (208,595,0): 74, 65, 68, (208,596,0): 72, 63, 66, (208,597,0): 70, 61, 64, (208,598,0): 69, 60, 63, (208,599,0): 68, 59, 62, (209,0,0): 39, 27, 41, (209,1,0): 39, 27, 41, (209,2,0): 40, 28, 42, (209,3,0): 40, 28, 42, (209,4,0): 41, 29, 43, (209,5,0): 41, 29, 43, (209,6,0): 42, 30, 44, (209,7,0): 42, 30, 44, (209,8,0): 41, 29, 43, (209,9,0): 41, 29, 43, (209,10,0): 41, 29, 43, (209,11,0): 42, 30, 44, (209,12,0): 42, 30, 44, (209,13,0): 43, 31, 45, (209,14,0): 43, 31, 45, (209,15,0): 43, 31, 43, (209,16,0): 45, 33, 45, (209,17,0): 45, 33, 43, (209,18,0): 45, 33, 43, (209,19,0): 45, 33, 43, (209,20,0): 45, 33, 43, (209,21,0): 45, 33, 43, (209,22,0): 46, 33, 43, (209,23,0): 46, 33, 43, (209,24,0): 50, 34, 45, (209,25,0): 50, 34, 45, (209,26,0): 51, 33, 45, (209,27,0): 52, 34, 46, (209,28,0): 52, 34, 46, (209,29,0): 53, 35, 47, (209,30,0): 53, 35, 47, (209,31,0): 53, 35, 47, (209,32,0): 54, 37, 47, (209,33,0): 54, 37, 47, (209,34,0): 54, 37, 47, (209,35,0): 54, 37, 47, (209,36,0): 54, 37, 47, (209,37,0): 54, 37, 47, (209,38,0): 54, 37, 47, (209,39,0): 54, 37, 47, (209,40,0): 54, 37, 47, (209,41,0): 54, 37, 47, (209,42,0): 54, 37, 47, (209,43,0): 54, 37, 47, (209,44,0): 54, 37, 47, (209,45,0): 54, 37, 47, (209,46,0): 54, 37, 47, (209,47,0): 54, 37, 47, (209,48,0): 55, 38, 48, (209,49,0): 55, 38, 48, (209,50,0): 55, 38, 48, (209,51,0): 55, 38, 48, (209,52,0): 57, 37, 46, (209,53,0): 57, 37, 46, (209,54,0): 57, 38, 44, (209,55,0): 57, 38, 44, (209,56,0): 58, 37, 44, (209,57,0): 58, 37, 44, (209,58,0): 59, 36, 42, (209,59,0): 59, 36, 42, (209,60,0): 59, 37, 40, (209,61,0): 59, 37, 40, (209,62,0): 61, 36, 40, (209,63,0): 59, 37, 40, (209,64,0): 60, 39, 44, (209,65,0): 59, 40, 44, (209,66,0): 59, 40, 42, (209,67,0): 59, 40, 42, (209,68,0): 60, 40, 42, (209,69,0): 60, 40, 42, (209,70,0): 61, 39, 41, (209,71,0): 61, 39, 41, (209,72,0): 59, 38, 37, (209,73,0): 59, 38, 37, (209,74,0): 61, 37, 37, (209,75,0): 61, 37, 37, (209,76,0): 62, 36, 35, (209,77,0): 62, 36, 35, (209,78,0): 62, 36, 35, (209,79,0): 62, 36, 35, (209,80,0): 65, 34, 39, (209,81,0): 65, 34, 39, (209,82,0): 65, 34, 39, (209,83,0): 65, 34, 39, (209,84,0): 65, 34, 39, (209,85,0): 65, 34, 39, (209,86,0): 65, 34, 39, (209,87,0): 65, 34, 39, (209,88,0): 62, 31, 36, (209,89,0): 63, 32, 37, (209,90,0): 64, 33, 38, (209,91,0): 64, 33, 38, (209,92,0): 63, 32, 37, (209,93,0): 62, 31, 36, (209,94,0): 61, 30, 35, (209,95,0): 59, 30, 34, (209,96,0): 61, 32, 36, (209,97,0): 59, 33, 36, (209,98,0): 59, 33, 36, (209,99,0): 59, 33, 36, (209,100,0): 59, 33, 36, (209,101,0): 59, 33, 36, (209,102,0): 59, 33, 36, (209,103,0): 59, 33, 36, (209,104,0): 57, 31, 34, (209,105,0): 57, 31, 34, (209,106,0): 57, 31, 34, (209,107,0): 56, 30, 33, (209,108,0): 56, 30, 33, (209,109,0): 55, 29, 32, (209,110,0): 55, 29, 32, (209,111,0): 55, 29, 32, (209,112,0): 54, 29, 33, (209,113,0): 52, 29, 35, (209,114,0): 52, 29, 35, (209,115,0): 50, 27, 33, (209,116,0): 48, 25, 31, (209,117,0): 45, 22, 28, (209,118,0): 41, 20, 25, (209,119,0): 39, 18, 23, (209,120,0): 39, 20, 24, (209,121,0): 40, 21, 25, (209,122,0): 38, 22, 25, (209,123,0): 39, 23, 26, (209,124,0): 39, 23, 26, (209,125,0): 40, 24, 27, (209,126,0): 40, 24, 27, (209,127,0): 42, 23, 25, (209,128,0): 43, 23, 24, (209,129,0): 44, 22, 24, (209,130,0): 44, 22, 24, (209,131,0): 44, 22, 24, (209,132,0): 44, 23, 22, (209,133,0): 44, 23, 22, (209,134,0): 44, 23, 22, (209,135,0): 44, 23, 22, (209,136,0): 47, 26, 23, (209,137,0): 48, 27, 24, (209,138,0): 48, 27, 22, (209,139,0): 49, 28, 23, (209,140,0): 49, 28, 23, (209,141,0): 50, 29, 24, (209,142,0): 50, 30, 23, (209,143,0): 50, 30, 23, (209,144,0): 49, 28, 25, (209,145,0): 49, 28, 25, (209,146,0): 49, 28, 25, (209,147,0): 49, 28, 25, (209,148,0): 49, 28, 25, (209,149,0): 49, 28, 25, (209,150,0): 49, 28, 25, (209,151,0): 49, 28, 25, (209,152,0): 50, 29, 26, (209,153,0): 50, 29, 26, (209,154,0): 50, 29, 26, (209,155,0): 50, 29, 26, (209,156,0): 50, 29, 26, (209,157,0): 50, 29, 26, (209,158,0): 50, 29, 26, (209,159,0): 50, 29, 26, (209,160,0): 52, 27, 23, (209,161,0): 52, 27, 23, (209,162,0): 52, 27, 23, (209,163,0): 52, 27, 23, (209,164,0): 52, 27, 23, (209,165,0): 52, 27, 23, (209,166,0): 52, 27, 23, (209,167,0): 52, 27, 23, (209,168,0): 52, 27, 23, (209,169,0): 51, 26, 22, (209,170,0): 50, 25, 21, (209,171,0): 50, 25, 21, (209,172,0): 51, 26, 22, (209,173,0): 52, 27, 23, (209,174,0): 54, 29, 25, (209,175,0): 55, 30, 25, (209,176,0): 56, 31, 26, (209,177,0): 56, 31, 24, (209,178,0): 56, 31, 24, (209,179,0): 55, 30, 23, (209,180,0): 55, 30, 23, (209,181,0): 54, 29, 22, (209,182,0): 54, 29, 22, (209,183,0): 53, 28, 21, (209,184,0): 55, 30, 23, (209,185,0): 55, 30, 23, (209,186,0): 55, 30, 23, (209,187,0): 55, 30, 23, (209,188,0): 55, 30, 23, (209,189,0): 55, 30, 23, (209,190,0): 55, 30, 23, (209,191,0): 55, 30, 23, (209,192,0): 55, 30, 23, (209,193,0): 55, 30, 23, (209,194,0): 54, 29, 22, (209,195,0): 53, 28, 21, (209,196,0): 53, 28, 21, (209,197,0): 52, 27, 20, (209,198,0): 51, 26, 19, (209,199,0): 51, 26, 19, (209,200,0): 53, 28, 21, (209,201,0): 53, 28, 21, (209,202,0): 54, 29, 22, (209,203,0): 54, 29, 22, (209,204,0): 55, 30, 23, (209,205,0): 55, 30, 23, (209,206,0): 56, 31, 24, (209,207,0): 56, 31, 24, (209,208,0): 59, 30, 24, (209,209,0): 59, 30, 24, (209,210,0): 59, 30, 24, (209,211,0): 59, 30, 24, (209,212,0): 59, 30, 24, (209,213,0): 59, 30, 24, (209,214,0): 59, 30, 22, (209,215,0): 59, 30, 22, (209,216,0): 60, 32, 21, (209,217,0): 60, 32, 21, (209,218,0): 59, 31, 19, (209,219,0): 59, 31, 19, (209,220,0): 60, 32, 20, (209,221,0): 62, 34, 22, (209,222,0): 64, 36, 24, (209,223,0): 66, 36, 25, (209,224,0): 67, 34, 27, (209,225,0): 68, 33, 27, (209,226,0): 69, 35, 26, (209,227,0): 71, 37, 27, (209,228,0): 73, 40, 25, (209,229,0): 74, 41, 22, (209,230,0): 75, 43, 22, (209,231,0): 76, 44, 19, (209,232,0): 83, 52, 24, (209,233,0): 81, 50, 21, (209,234,0): 79, 48, 19, (209,235,0): 77, 46, 17, (209,236,0): 76, 45, 17, (209,237,0): 77, 46, 18, (209,238,0): 79, 48, 20, (209,239,0): 80, 49, 21, (209,240,0): 75, 45, 19, (209,241,0): 75, 45, 21, (209,242,0): 72, 44, 20, (209,243,0): 71, 43, 19, (209,244,0): 70, 42, 18, (209,245,0): 69, 41, 17, (209,246,0): 67, 41, 18, (209,247,0): 67, 41, 18, (209,248,0): 65, 41, 17, (209,249,0): 66, 42, 18, (209,250,0): 67, 42, 20, (209,251,0): 69, 44, 22, (209,252,0): 69, 47, 24, (209,253,0): 70, 48, 25, (209,254,0): 71, 49, 28, (209,255,0): 72, 50, 27, (209,256,0): 73, 51, 28, (209,257,0): 72, 50, 27, (209,258,0): 69, 47, 26, (209,259,0): 67, 44, 28, (209,260,0): 67, 40, 29, (209,261,0): 66, 39, 30, (209,262,0): 65, 38, 31, (209,263,0): 65, 37, 33, (209,264,0): 68, 39, 33, (209,265,0): 71, 43, 32, (209,266,0): 77, 48, 34, (209,267,0): 83, 55, 34, (209,268,0): 88, 61, 34, (209,269,0): 93, 66, 36, (209,270,0): 98, 69, 35, (209,271,0): 100, 72, 35, (209,272,0): 105, 75, 37, (209,273,0): 106, 76, 38, (209,274,0): 106, 76, 38, (209,275,0): 107, 77, 39, (209,276,0): 106, 78, 41, (209,277,0): 106, 78, 41, (209,278,0): 105, 76, 42, (209,279,0): 104, 75, 41, (209,280,0): 100, 74, 39, (209,281,0): 98, 72, 37, (209,282,0): 95, 71, 37, (209,283,0): 93, 69, 35, (209,284,0): 93, 68, 37, (209,285,0): 95, 70, 39, (209,286,0): 96, 73, 41, (209,287,0): 98, 75, 43, (209,288,0): 97, 77, 44, (209,289,0): 97, 77, 44, (209,290,0): 98, 78, 45, (209,291,0): 99, 79, 46, (209,292,0): 99, 80, 48, (209,293,0): 100, 81, 49, (209,294,0): 100, 81, 49, (209,295,0): 101, 82, 50, (209,296,0): 94, 78, 45, (209,297,0): 94, 78, 45, (209,298,0): 94, 79, 46, (209,299,0): 95, 80, 47, (209,300,0): 96, 81, 48, (209,301,0): 97, 82, 49, (209,302,0): 97, 84, 50, (209,303,0): 98, 85, 51, (209,304,0): 99, 84, 55, (209,305,0): 98, 83, 54, (209,306,0): 97, 81, 55, (209,307,0): 96, 80, 54, (209,308,0): 95, 79, 53, (209,309,0): 94, 78, 52, (209,310,0): 93, 77, 52, (209,311,0): 93, 77, 52, (209,312,0): 97, 81, 58, (209,313,0): 96, 80, 57, (209,314,0): 96, 80, 57, (209,315,0): 96, 80, 57, (209,316,0): 96, 79, 59, (209,317,0): 98, 81, 61, (209,318,0): 99, 82, 62, (209,319,0): 100, 84, 61, (209,320,0): 103, 86, 60, (209,321,0): 107, 87, 60, (209,322,0): 107, 90, 62, (209,323,0): 107, 92, 63, (209,324,0): 107, 91, 65, (209,325,0): 107, 95, 69, (209,326,0): 112, 100, 76, (209,327,0): 115, 105, 80, (209,328,0): 115, 108, 82, (209,329,0): 118, 113, 83, (209,330,0): 122, 120, 81, (209,331,0): 130, 132, 83, (209,332,0): 150, 156, 96, (209,333,0): 174, 181, 111, (209,334,0): 184, 196, 114, (209,335,0): 182, 196, 109, (209,336,0): 182, 198, 110, (209,337,0): 179, 199, 112, (209,338,0): 178, 198, 113, (209,339,0): 175, 197, 114, (209,340,0): 173, 196, 116, (209,341,0): 170, 194, 116, (209,342,0): 167, 194, 117, (209,343,0): 166, 193, 116, (209,344,0): 171, 198, 119, (209,345,0): 174, 201, 122, (209,346,0): 180, 205, 124, (209,347,0): 182, 207, 124, (209,348,0): 184, 208, 124, (209,349,0): 186, 209, 121, (209,350,0): 190, 213, 123, (209,351,0): 194, 218, 124, (209,352,0): 195, 222, 119, (209,353,0): 196, 225, 117, (209,354,0): 199, 228, 122, (209,355,0): 201, 233, 124, (209,356,0): 203, 235, 128, (209,357,0): 205, 237, 128, (209,358,0): 205, 237, 130, (209,359,0): 205, 239, 129, (209,360,0): 205, 238, 131, (209,361,0): 203, 239, 129, (209,362,0): 201, 237, 129, (209,363,0): 197, 233, 123, (209,364,0): 193, 229, 121, (209,365,0): 191, 229, 118, (209,366,0): 194, 232, 123, (209,367,0): 197, 235, 126, (209,368,0): 199, 234, 130, (209,369,0): 197, 232, 130, (209,370,0): 193, 228, 126, (209,371,0): 186, 223, 120, (209,372,0): 182, 219, 116, (209,373,0): 182, 220, 117, (209,374,0): 187, 225, 122, (209,375,0): 191, 232, 128, (209,376,0): 195, 238, 133, (209,377,0): 195, 240, 135, (209,378,0): 199, 244, 139, (209,379,0): 202, 249, 143, (209,380,0): 205, 252, 146, (209,381,0): 204, 253, 146, (209,382,0): 204, 253, 146, (209,383,0): 205, 252, 146, (209,384,0): 215, 253, 152, (209,385,0): 218, 252, 155, (209,386,0): 220, 254, 160, (209,387,0): 222, 255, 166, (209,388,0): 226, 255, 171, (209,389,0): 229, 255, 175, (209,390,0): 232, 255, 178, (209,391,0): 234, 255, 177, (209,392,0): 236, 255, 178, (209,393,0): 238, 255, 178, (209,394,0): 240, 255, 181, (209,395,0): 243, 255, 184, (209,396,0): 245, 255, 188, (209,397,0): 247, 255, 193, (209,398,0): 250, 255, 197, (209,399,0): 250, 255, 199, (209,400,0): 251, 254, 199, (209,401,0): 251, 254, 199, (209,402,0): 254, 254, 202, (209,403,0): 254, 254, 204, (209,404,0): 255, 254, 206, (209,405,0): 255, 253, 208, (209,406,0): 255, 253, 210, (209,407,0): 255, 254, 213, (209,408,0): 255, 252, 214, (209,409,0): 255, 253, 214, (209,410,0): 253, 254, 212, (209,411,0): 251, 254, 211, (209,412,0): 249, 255, 209, (209,413,0): 247, 255, 206, (209,414,0): 246, 255, 206, (209,415,0): 246, 255, 208, (209,416,0): 246, 253, 209, (209,417,0): 247, 254, 213, (209,418,0): 248, 254, 218, (209,419,0): 250, 255, 223, (209,420,0): 250, 254, 227, (209,421,0): 249, 254, 231, (209,422,0): 244, 253, 232, (209,423,0): 242, 254, 234, (209,424,0): 237, 252, 233, (209,425,0): 234, 253, 231, (209,426,0): 230, 255, 229, (209,427,0): 226, 255, 226, (209,428,0): 221, 255, 222, (209,429,0): 216, 255, 215, (209,430,0): 213, 255, 211, (209,431,0): 212, 255, 207, (209,432,0): 206, 248, 198, (209,433,0): 207, 250, 197, (209,434,0): 204, 251, 199, (209,435,0): 203, 251, 201, (209,436,0): 200, 252, 204, (209,437,0): 200, 252, 206, (209,438,0): 202, 250, 210, (209,439,0): 203, 247, 211, (209,440,0): 202, 242, 208, (209,441,0): 197, 230, 199, (209,442,0): 189, 218, 190, (209,443,0): 185, 211, 182, (209,444,0): 183, 209, 182, (209,445,0): 182, 208, 179, (209,446,0): 176, 205, 175, (209,447,0): 171, 202, 170, (209,448,0): 165, 199, 166, (209,449,0): 165, 199, 164, (209,450,0): 166, 197, 165, (209,451,0): 162, 191, 161, (209,452,0): 159, 185, 158, (209,453,0): 158, 182, 158, (209,454,0): 158, 181, 161, (209,455,0): 160, 183, 165, (209,456,0): 157, 179, 166, (209,457,0): 156, 180, 167, (209,458,0): 155, 181, 172, (209,459,0): 154, 181, 174, (209,460,0): 152, 181, 176, (209,461,0): 148, 181, 174, (209,462,0): 145, 180, 174, (209,463,0): 144, 179, 173, (209,464,0): 137, 174, 167, (209,465,0): 137, 174, 166, (209,466,0): 137, 174, 167, (209,467,0): 142, 179, 171, (209,468,0): 149, 184, 177, (209,469,0): 153, 189, 179, (209,470,0): 157, 188, 182, (209,471,0): 156, 187, 179, (209,472,0): 154, 184, 176, (209,473,0): 153, 183, 173, (209,474,0): 154, 180, 171, (209,475,0): 152, 178, 167, (209,476,0): 152, 175, 167, (209,477,0): 151, 174, 164, (209,478,0): 151, 174, 164, (209,479,0): 149, 175, 164, (209,480,0): 144, 171, 164, (209,481,0): 141, 170, 165, (209,482,0): 137, 168, 162, (209,483,0): 133, 164, 158, (209,484,0): 128, 160, 155, (209,485,0): 125, 157, 152, (209,486,0): 122, 154, 151, (209,487,0): 121, 153, 150, (209,488,0): 120, 150, 148, (209,489,0): 118, 147, 145, (209,490,0): 116, 142, 143, (209,491,0): 114, 135, 138, (209,492,0): 112, 131, 137, (209,493,0): 111, 128, 135, (209,494,0): 113, 128, 135, (209,495,0): 114, 127, 133, (209,496,0): 111, 121, 123, (209,497,0): 111, 120, 119, (209,498,0): 110, 119, 118, (209,499,0): 108, 117, 116, (209,500,0): 110, 116, 116, (209,501,0): 111, 117, 115, (209,502,0): 112, 118, 114, (209,503,0): 113, 120, 113, (209,504,0): 114, 119, 113, (209,505,0): 113, 118, 111, (209,506,0): 112, 115, 106, (209,507,0): 109, 112, 101, (209,508,0): 106, 109, 98, (209,509,0): 103, 107, 93, (209,510,0): 102, 104, 91, (209,511,0): 99, 103, 89, (209,512,0): 99, 103, 89, (209,513,0): 98, 104, 90, (209,514,0): 99, 105, 93, (209,515,0): 99, 105, 93, (209,516,0): 99, 105, 93, (209,517,0): 98, 104, 92, (209,518,0): 96, 102, 92, (209,519,0): 95, 101, 91, (209,520,0): 90, 95, 88, (209,521,0): 90, 95, 88, (209,522,0): 89, 94, 87, (209,523,0): 88, 93, 86, (209,524,0): 88, 93, 87, (209,525,0): 88, 93, 87, (209,526,0): 89, 94, 88, (209,527,0): 90, 95, 91, (209,528,0): 90, 92, 89, (209,529,0): 89, 91, 90, (209,530,0): 86, 90, 89, (209,531,0): 85, 89, 88, (209,532,0): 85, 89, 88, (209,533,0): 86, 90, 89, (209,534,0): 86, 90, 91, (209,535,0): 86, 92, 92, (209,536,0): 88, 93, 96, (209,537,0): 89, 97, 99, (209,538,0): 92, 100, 103, (209,539,0): 96, 104, 107, (209,540,0): 99, 109, 111, (209,541,0): 101, 111, 113, (209,542,0): 102, 112, 114, (209,543,0): 102, 112, 114, (209,544,0): 107, 119, 119, (209,545,0): 107, 119, 119, (209,546,0): 107, 118, 120, (209,547,0): 107, 118, 120, (209,548,0): 108, 119, 121, (209,549,0): 108, 119, 121, (209,550,0): 109, 120, 124, (209,551,0): 109, 120, 124, (209,552,0): 106, 117, 123, (209,553,0): 104, 115, 121, (209,554,0): 100, 111, 117, (209,555,0): 97, 108, 114, (209,556,0): 97, 107, 116, (209,557,0): 98, 108, 117, (209,558,0): 101, 111, 120, (209,559,0): 100, 114, 123, (209,560,0): 99, 119, 130, (209,561,0): 99, 121, 134, (209,562,0): 100, 122, 135, (209,563,0): 102, 124, 137, (209,564,0): 103, 122, 137, (209,565,0): 102, 119, 135, (209,566,0): 101, 117, 133, (209,567,0): 99, 115, 131, (209,568,0): 101, 114, 130, (209,569,0): 99, 111, 125, (209,570,0): 96, 106, 118, (209,571,0): 93, 103, 112, (209,572,0): 91, 100, 107, (209,573,0): 88, 97, 102, (209,574,0): 82, 92, 94, (209,575,0): 79, 87, 90, (209,576,0): 82, 87, 93, (209,577,0): 82, 85, 92, (209,578,0): 81, 84, 89, (209,579,0): 79, 82, 87, (209,580,0): 78, 81, 86, (209,581,0): 76, 79, 84, (209,582,0): 77, 78, 82, (209,583,0): 76, 77, 81, (209,584,0): 80, 80, 82, (209,585,0): 79, 79, 81, (209,586,0): 80, 78, 81, (209,587,0): 79, 77, 80, (209,588,0): 79, 77, 78, (209,589,0): 78, 76, 77, (209,590,0): 77, 75, 76, (209,591,0): 79, 75, 76, (209,592,0): 78, 69, 72, (209,593,0): 77, 68, 71, (209,594,0): 77, 66, 70, (209,595,0): 74, 65, 68, (209,596,0): 73, 62, 66, (209,597,0): 70, 61, 64, (209,598,0): 70, 59, 63, (209,599,0): 68, 59, 62, (210,0,0): 39, 27, 41, (210,1,0): 39, 27, 41, (210,2,0): 40, 28, 42, (210,3,0): 40, 28, 42, (210,4,0): 41, 29, 43, (210,5,0): 41, 29, 43, (210,6,0): 42, 30, 44, (210,7,0): 42, 30, 44, (210,8,0): 41, 29, 43, (210,9,0): 41, 29, 43, (210,10,0): 41, 29, 43, (210,11,0): 42, 30, 44, (210,12,0): 42, 30, 44, (210,13,0): 43, 31, 45, (210,14,0): 43, 31, 45, (210,15,0): 43, 31, 43, (210,16,0): 45, 33, 45, (210,17,0): 45, 33, 43, (210,18,0): 45, 33, 43, (210,19,0): 45, 33, 43, (210,20,0): 45, 33, 43, (210,21,0): 45, 33, 43, (210,22,0): 46, 33, 43, (210,23,0): 46, 33, 43, (210,24,0): 50, 34, 45, (210,25,0): 50, 34, 45, (210,26,0): 51, 33, 45, (210,27,0): 52, 34, 46, (210,28,0): 52, 34, 46, (210,29,0): 53, 35, 47, (210,30,0): 53, 35, 47, (210,31,0): 53, 35, 47, (210,32,0): 54, 37, 47, (210,33,0): 54, 37, 47, (210,34,0): 54, 37, 47, (210,35,0): 54, 37, 47, (210,36,0): 54, 37, 47, (210,37,0): 54, 37, 47, (210,38,0): 54, 37, 47, (210,39,0): 54, 37, 47, (210,40,0): 54, 37, 47, (210,41,0): 54, 37, 47, (210,42,0): 54, 37, 47, (210,43,0): 54, 37, 47, (210,44,0): 54, 37, 47, (210,45,0): 54, 37, 47, (210,46,0): 54, 37, 47, (210,47,0): 54, 37, 47, (210,48,0): 55, 38, 48, (210,49,0): 55, 38, 48, (210,50,0): 55, 38, 48, (210,51,0): 55, 38, 48, (210,52,0): 57, 37, 46, (210,53,0): 57, 37, 46, (210,54,0): 57, 38, 44, (210,55,0): 57, 38, 44, (210,56,0): 58, 37, 44, (210,57,0): 58, 37, 44, (210,58,0): 59, 36, 42, (210,59,0): 59, 36, 42, (210,60,0): 59, 37, 40, (210,61,0): 59, 37, 40, (210,62,0): 61, 36, 40, (210,63,0): 59, 37, 40, (210,64,0): 59, 38, 43, (210,65,0): 58, 39, 43, (210,66,0): 59, 39, 41, (210,67,0): 59, 39, 41, (210,68,0): 59, 39, 41, (210,69,0): 59, 39, 41, (210,70,0): 60, 38, 40, (210,71,0): 60, 38, 40, (210,72,0): 62, 38, 38, (210,73,0): 62, 38, 38, (210,74,0): 62, 38, 38, (210,75,0): 62, 38, 38, (210,76,0): 63, 37, 36, (210,77,0): 63, 37, 36, (210,78,0): 63, 37, 36, (210,79,0): 63, 37, 36, (210,80,0): 66, 35, 40, (210,81,0): 66, 35, 40, (210,82,0): 66, 35, 40, (210,83,0): 66, 35, 40, (210,84,0): 66, 35, 40, (210,85,0): 66, 35, 40, (210,86,0): 66, 35, 40, (210,87,0): 66, 35, 40, (210,88,0): 63, 32, 37, (210,89,0): 63, 32, 37, (210,90,0): 64, 33, 38, (210,91,0): 64, 33, 38, (210,92,0): 64, 33, 38, (210,93,0): 62, 31, 36, (210,94,0): 61, 30, 35, (210,95,0): 59, 30, 34, (210,96,0): 61, 32, 36, (210,97,0): 59, 33, 36, (210,98,0): 59, 33, 36, (210,99,0): 59, 33, 36, (210,100,0): 59, 33, 36, (210,101,0): 59, 33, 36, (210,102,0): 59, 33, 36, (210,103,0): 59, 33, 36, (210,104,0): 57, 31, 34, (210,105,0): 57, 31, 34, (210,106,0): 57, 31, 34, (210,107,0): 56, 30, 33, (210,108,0): 56, 30, 33, (210,109,0): 55, 29, 32, (210,110,0): 55, 29, 32, (210,111,0): 55, 29, 32, (210,112,0): 55, 30, 34, (210,113,0): 54, 29, 33, (210,114,0): 52, 30, 33, (210,115,0): 51, 29, 32, (210,116,0): 49, 27, 30, (210,117,0): 46, 24, 27, (210,118,0): 42, 22, 24, (210,119,0): 41, 21, 23, (210,120,0): 40, 21, 23, (210,121,0): 40, 21, 23, (210,122,0): 40, 21, 23, (210,123,0): 41, 22, 24, (210,124,0): 39, 23, 24, (210,125,0): 40, 24, 25, (210,126,0): 40, 24, 25, (210,127,0): 43, 24, 26, (210,128,0): 44, 24, 25, (210,129,0): 45, 23, 25, (210,130,0): 45, 23, 25, (210,131,0): 45, 23, 25, (210,132,0): 45, 24, 23, (210,133,0): 45, 24, 23, (210,134,0): 45, 24, 23, (210,135,0): 45, 24, 23, (210,136,0): 48, 27, 24, (210,137,0): 48, 27, 24, (210,138,0): 48, 27, 22, (210,139,0): 49, 28, 23, (210,140,0): 49, 28, 23, (210,141,0): 50, 29, 24, (210,142,0): 50, 30, 23, (210,143,0): 51, 31, 24, (210,144,0): 49, 28, 25, (210,145,0): 49, 28, 25, (210,146,0): 49, 28, 25, (210,147,0): 49, 28, 25, (210,148,0): 49, 28, 25, (210,149,0): 49, 28, 25, (210,150,0): 49, 28, 25, (210,151,0): 49, 28, 25, (210,152,0): 50, 29, 26, (210,153,0): 50, 29, 26, (210,154,0): 50, 29, 26, (210,155,0): 50, 29, 26, (210,156,0): 50, 29, 26, (210,157,0): 50, 29, 26, (210,158,0): 50, 29, 26, (210,159,0): 50, 29, 26, (210,160,0): 52, 27, 23, (210,161,0): 52, 27, 23, (210,162,0): 52, 27, 23, (210,163,0): 52, 27, 23, (210,164,0): 52, 27, 23, (210,165,0): 52, 27, 23, (210,166,0): 52, 27, 23, (210,167,0): 52, 27, 23, (210,168,0): 52, 27, 23, (210,169,0): 52, 27, 23, (210,170,0): 51, 26, 22, (210,171,0): 51, 26, 22, (210,172,0): 51, 26, 22, (210,173,0): 52, 27, 23, (210,174,0): 54, 29, 25, (210,175,0): 55, 30, 25, (210,176,0): 57, 32, 27, (210,177,0): 56, 31, 24, (210,178,0): 56, 31, 24, (210,179,0): 55, 30, 23, (210,180,0): 55, 30, 23, (210,181,0): 54, 29, 22, (210,182,0): 54, 29, 22, (210,183,0): 54, 29, 22, (210,184,0): 55, 30, 23, (210,185,0): 55, 30, 23, (210,186,0): 55, 30, 23, (210,187,0): 55, 30, 23, (210,188,0): 55, 30, 23, (210,189,0): 55, 30, 23, (210,190,0): 55, 30, 23, (210,191,0): 55, 30, 23, (210,192,0): 54, 29, 22, (210,193,0): 54, 29, 22, (210,194,0): 54, 29, 22, (210,195,0): 53, 28, 21, (210,196,0): 53, 28, 21, (210,197,0): 52, 27, 20, (210,198,0): 52, 27, 20, (210,199,0): 52, 27, 20, (210,200,0): 53, 28, 21, (210,201,0): 53, 28, 21, (210,202,0): 54, 29, 22, (210,203,0): 54, 29, 22, (210,204,0): 55, 30, 23, (210,205,0): 55, 30, 23, (210,206,0): 56, 31, 24, (210,207,0): 56, 31, 24, (210,208,0): 60, 31, 25, (210,209,0): 60, 31, 25, (210,210,0): 60, 31, 25, (210,211,0): 60, 31, 25, (210,212,0): 60, 31, 23, (210,213,0): 60, 31, 23, (210,214,0): 60, 31, 23, (210,215,0): 60, 31, 23, (210,216,0): 60, 32, 21, (210,217,0): 60, 32, 21, (210,218,0): 60, 32, 20, (210,219,0): 60, 32, 20, (210,220,0): 61, 33, 21, (210,221,0): 63, 35, 23, (210,222,0): 65, 37, 23, (210,223,0): 67, 37, 26, (210,224,0): 68, 35, 26, (210,225,0): 70, 36, 27, (210,226,0): 71, 37, 27, (210,227,0): 73, 39, 27, (210,228,0): 74, 41, 24, (210,229,0): 76, 44, 23, (210,230,0): 77, 45, 22, (210,231,0): 78, 46, 21, (210,232,0): 82, 51, 23, (210,233,0): 81, 50, 21, (210,234,0): 81, 50, 21, (210,235,0): 80, 49, 18, (210,236,0): 80, 49, 20, (210,237,0): 79, 48, 19, (210,238,0): 79, 48, 19, (210,239,0): 79, 48, 20, (210,240,0): 75, 45, 19, (210,241,0): 75, 45, 21, (210,242,0): 72, 44, 20, (210,243,0): 71, 43, 19, (210,244,0): 70, 42, 18, (210,245,0): 69, 41, 17, (210,246,0): 67, 41, 18, (210,247,0): 67, 41, 18, (210,248,0): 64, 40, 16, (210,249,0): 65, 41, 17, (210,250,0): 67, 43, 19, (210,251,0): 70, 46, 22, (210,252,0): 71, 49, 26, (210,253,0): 74, 52, 29, (210,254,0): 76, 54, 31, (210,255,0): 77, 55, 32, (210,256,0): 76, 54, 31, (210,257,0): 75, 53, 30, (210,258,0): 73, 51, 30, (210,259,0): 70, 47, 31, (210,260,0): 71, 45, 32, (210,261,0): 70, 43, 32, (210,262,0): 70, 43, 34, (210,263,0): 70, 43, 34, (210,264,0): 71, 43, 32, (210,265,0): 74, 46, 34, (210,266,0): 81, 52, 36, (210,267,0): 87, 59, 37, (210,268,0): 93, 66, 39, (210,269,0): 97, 70, 40, (210,270,0): 101, 72, 38, (210,271,0): 102, 74, 37, (210,272,0): 105, 75, 37, (210,273,0): 106, 77, 37, (210,274,0): 108, 78, 40, (210,275,0): 110, 80, 42, (210,276,0): 110, 82, 43, (210,277,0): 110, 82, 43, (210,278,0): 110, 82, 45, (210,279,0): 109, 81, 44, (210,280,0): 101, 75, 40, (210,281,0): 99, 73, 38, (210,282,0): 96, 72, 36, (210,283,0): 95, 71, 35, (210,284,0): 95, 71, 37, (210,285,0): 96, 72, 38, (210,286,0): 97, 74, 40, (210,287,0): 99, 76, 42, (210,288,0): 100, 80, 47, (210,289,0): 100, 80, 47, (210,290,0): 100, 80, 47, (210,291,0): 101, 81, 48, (210,292,0): 100, 81, 48, (210,293,0): 100, 81, 48, (210,294,0): 101, 82, 49, (210,295,0): 101, 82, 49, (210,296,0): 94, 78, 45, (210,297,0): 95, 79, 46, (210,298,0): 95, 80, 47, (210,299,0): 96, 81, 48, (210,300,0): 97, 82, 49, (210,301,0): 98, 83, 50, (210,302,0): 98, 85, 51, (210,303,0): 98, 85, 51, (210,304,0): 99, 84, 55, (210,305,0): 99, 84, 55, (210,306,0): 98, 82, 56, (210,307,0): 97, 81, 55, (210,308,0): 96, 80, 54, (210,309,0): 95, 79, 53, (210,310,0): 94, 78, 53, (210,311,0): 93, 77, 52, (210,312,0): 98, 82, 59, (210,313,0): 98, 82, 59, (210,314,0): 97, 81, 58, (210,315,0): 96, 80, 57, (210,316,0): 97, 80, 60, (210,317,0): 98, 81, 61, (210,318,0): 99, 82, 62, (210,319,0): 100, 84, 61, (210,320,0): 105, 88, 62, (210,321,0): 107, 90, 62, (210,322,0): 109, 92, 64, (210,323,0): 109, 94, 65, (210,324,0): 108, 92, 66, (210,325,0): 107, 95, 69, (210,326,0): 111, 99, 75, (210,327,0): 114, 103, 81, (210,328,0): 111, 103, 80, (210,329,0): 112, 107, 78, (210,330,0): 115, 112, 77, (210,331,0): 123, 124, 80, (210,332,0): 141, 146, 90, (210,333,0): 164, 171, 104, (210,334,0): 178, 186, 109, (210,335,0): 180, 192, 110, (210,336,0): 178, 196, 112, (210,337,0): 179, 199, 114, (210,338,0): 180, 199, 117, (210,339,0): 179, 201, 119, (210,340,0): 178, 201, 121, (210,341,0): 175, 199, 121, (210,342,0): 171, 198, 121, (210,343,0): 169, 197, 120, (210,344,0): 176, 205, 125, (210,345,0): 178, 207, 127, (210,346,0): 182, 209, 128, (210,347,0): 186, 211, 127, (210,348,0): 187, 213, 126, (210,349,0): 189, 213, 125, (210,350,0): 193, 216, 126, (210,351,0): 195, 220, 126, (210,352,0): 193, 221, 119, (210,353,0): 194, 226, 119, (210,354,0): 199, 230, 126, (210,355,0): 204, 236, 129, (210,356,0): 207, 238, 134, (210,357,0): 206, 239, 132, (210,358,0): 206, 239, 134, (210,359,0): 205, 238, 131, (210,360,0): 200, 233, 128, (210,361,0): 198, 234, 126, (210,362,0): 197, 233, 127, (210,363,0): 192, 230, 121, (210,364,0): 188, 225, 119, (210,365,0): 187, 225, 116, (210,366,0): 190, 227, 121, (210,367,0): 193, 230, 124, (210,368,0): 196, 233, 130, (210,369,0): 195, 231, 131, (210,370,0): 191, 227, 127, (210,371,0): 185, 223, 122, (210,372,0): 181, 219, 118, (210,373,0): 180, 221, 119, (210,374,0): 184, 225, 123, (210,375,0): 188, 230, 128, (210,376,0): 193, 238, 135, (210,377,0): 194, 241, 137, (210,378,0): 198, 245, 141, (210,379,0): 202, 251, 146, (210,380,0): 204, 253, 148, (210,381,0): 203, 254, 149, (210,382,0): 203, 254, 149, (210,383,0): 205, 254, 149, (210,384,0): 213, 253, 154, (210,385,0): 217, 253, 157, (210,386,0): 218, 253, 161, (210,387,0): 221, 254, 167, (210,388,0): 225, 254, 172, (210,389,0): 228, 255, 176, (210,390,0): 232, 255, 180, (210,391,0): 234, 255, 181, (210,392,0): 236, 255, 182, (210,393,0): 238, 255, 182, (210,394,0): 240, 255, 185, (210,395,0): 243, 255, 187, (210,396,0): 245, 255, 192, (210,397,0): 246, 255, 196, (210,398,0): 248, 255, 201, (210,399,0): 248, 255, 203, (210,400,0): 250, 254, 203, (210,401,0): 251, 255, 204, (210,402,0): 252, 254, 205, (210,403,0): 252, 254, 207, (210,404,0): 255, 254, 210, (210,405,0): 255, 254, 213, (210,406,0): 255, 253, 215, (210,407,0): 255, 253, 215, (210,408,0): 255, 254, 216, (210,409,0): 255, 253, 215, (210,410,0): 253, 253, 215, (210,411,0): 251, 253, 214, (210,412,0): 249, 254, 213, (210,413,0): 247, 254, 210, (210,414,0): 246, 255, 210, (210,415,0): 243, 255, 209, (210,416,0): 245, 253, 212, (210,417,0): 246, 254, 217, (210,418,0): 247, 254, 220, (210,419,0): 246, 255, 224, (210,420,0): 247, 255, 229, (210,421,0): 246, 255, 232, (210,422,0): 245, 254, 235, (210,423,0): 242, 255, 237, (210,424,0): 236, 253, 235, (210,425,0): 233, 254, 235, (210,426,0): 231, 255, 232, (210,427,0): 227, 255, 229, (210,428,0): 222, 255, 224, (210,429,0): 217, 255, 218, (210,430,0): 214, 255, 214, (210,431,0): 212, 255, 209, (210,432,0): 206, 248, 200, (210,433,0): 207, 251, 202, (210,434,0): 206, 254, 206, (210,435,0): 207, 255, 209, (210,436,0): 205, 255, 213, (210,437,0): 203, 254, 213, (210,438,0): 201, 251, 214, (210,439,0): 202, 247, 214, (210,440,0): 198, 239, 207, (210,441,0): 192, 227, 197, (210,442,0): 183, 213, 187, (210,443,0): 177, 206, 178, (210,444,0): 176, 204, 179, (210,445,0): 175, 204, 176, (210,446,0): 172, 201, 173, (210,447,0): 168, 197, 167, (210,448,0): 166, 197, 165, (210,449,0): 166, 197, 165, (210,450,0): 164, 195, 164, (210,451,0): 160, 189, 159, (210,452,0): 156, 182, 155, (210,453,0): 154, 178, 154, (210,454,0): 154, 177, 157, (210,455,0): 155, 178, 160, (210,456,0): 154, 176, 163, (210,457,0): 154, 178, 165, (210,458,0): 153, 179, 170, (210,459,0): 151, 181, 173, (210,460,0): 150, 181, 175, (210,461,0): 148, 180, 175, (210,462,0): 145, 180, 176, (210,463,0): 144, 180, 176, (210,464,0): 140, 176, 172, (210,465,0): 139, 176, 169, (210,466,0): 140, 176, 172, (210,467,0): 143, 180, 173, (210,468,0): 150, 185, 179, (210,469,0): 154, 189, 182, (210,470,0): 157, 188, 183, (210,471,0): 157, 188, 182, (210,472,0): 157, 186, 181, (210,473,0): 156, 186, 178, (210,474,0): 158, 183, 177, (210,475,0): 156, 182, 173, (210,476,0): 156, 179, 173, (210,477,0): 153, 176, 168, (210,478,0): 150, 173, 165, (210,479,0): 146, 172, 163, (210,480,0): 145, 172, 167, (210,481,0): 141, 170, 166, (210,482,0): 137, 168, 163, (210,483,0): 134, 165, 160, (210,484,0): 130, 160, 158, (210,485,0): 126, 156, 154, (210,486,0): 122, 154, 153, (210,487,0): 120, 152, 151, (210,488,0): 122, 152, 152, (210,489,0): 122, 150, 151, (210,490,0): 121, 146, 150, (210,491,0): 121, 142, 147, (210,492,0): 118, 137, 144, (210,493,0): 116, 133, 141, (210,494,0): 116, 130, 139, (210,495,0): 116, 129, 135, (210,496,0): 112, 122, 124, (210,497,0): 111, 121, 122, (210,498,0): 110, 120, 121, (210,499,0): 108, 118, 117, (210,500,0): 109, 118, 117, (210,501,0): 109, 118, 115, (210,502,0): 109, 118, 113, (210,503,0): 110, 120, 112, (210,504,0): 113, 120, 113, (210,505,0): 112, 119, 111, (210,506,0): 111, 117, 107, (210,507,0): 109, 115, 103, (210,508,0): 106, 112, 100, (210,509,0): 104, 110, 98, (210,510,0): 105, 108, 97, (210,511,0): 104, 107, 96, (210,512,0): 104, 107, 96, (210,513,0): 104, 107, 96, (210,514,0): 104, 107, 96, (210,515,0): 103, 106, 95, (210,516,0): 101, 104, 95, (210,517,0): 99, 102, 93, (210,518,0): 97, 100, 91, (210,519,0): 95, 98, 89, (210,520,0): 95, 98, 91, (210,521,0): 94, 97, 90, (210,522,0): 92, 94, 89, (210,523,0): 90, 92, 87, (210,524,0): 89, 91, 86, (210,525,0): 89, 91, 86, (210,526,0): 90, 92, 89, (210,527,0): 90, 92, 89, (210,528,0): 90, 92, 89, (210,529,0): 89, 91, 88, (210,530,0): 88, 90, 87, (210,531,0): 87, 89, 86, (210,532,0): 87, 89, 88, (210,533,0): 86, 90, 89, (210,534,0): 87, 91, 92, (210,535,0): 87, 93, 93, (210,536,0): 89, 95, 95, (210,537,0): 90, 96, 96, (210,538,0): 91, 99, 101, (210,539,0): 93, 101, 103, (210,540,0): 95, 103, 106, (210,541,0): 97, 105, 108, (210,542,0): 97, 105, 108, (210,543,0): 97, 107, 109, (210,544,0): 104, 115, 117, (210,545,0): 103, 117, 118, (210,546,0): 104, 118, 119, (210,547,0): 105, 119, 120, (210,548,0): 107, 121, 124, (210,549,0): 108, 122, 125, (210,550,0): 109, 122, 128, (210,551,0): 110, 123, 129, (210,552,0): 105, 118, 124, (210,553,0): 102, 115, 121, (210,554,0): 98, 111, 119, (210,555,0): 96, 109, 117, (210,556,0): 95, 108, 117, (210,557,0): 97, 110, 119, (210,558,0): 100, 113, 122, (210,559,0): 101, 115, 126, (210,560,0): 101, 120, 134, (210,561,0): 100, 122, 136, (210,562,0): 104, 123, 138, (210,563,0): 105, 124, 139, (210,564,0): 106, 123, 141, (210,565,0): 103, 120, 138, (210,566,0): 102, 117, 136, (210,567,0): 100, 116, 132, (210,568,0): 101, 114, 130, (210,569,0): 99, 111, 125, (210,570,0): 98, 108, 120, (210,571,0): 97, 107, 117, (210,572,0): 96, 105, 114, (210,573,0): 91, 100, 105, (210,574,0): 86, 94, 97, (210,575,0): 81, 89, 92, (210,576,0): 83, 88, 94, (210,577,0): 83, 86, 93, (210,578,0): 82, 85, 90, (210,579,0): 81, 84, 89, (210,580,0): 81, 82, 87, (210,581,0): 80, 81, 86, (210,582,0): 79, 78, 83, (210,583,0): 79, 78, 83, (210,584,0): 78, 78, 80, (210,585,0): 78, 78, 80, (210,586,0): 79, 77, 80, (210,587,0): 78, 76, 79, (210,588,0): 80, 76, 77, (210,589,0): 79, 75, 76, (210,590,0): 79, 75, 76, (210,591,0): 80, 74, 76, (210,592,0): 81, 70, 74, (210,593,0): 80, 69, 73, (210,594,0): 79, 67, 71, (210,595,0): 76, 65, 69, (210,596,0): 75, 63, 67, (210,597,0): 72, 61, 65, (210,598,0): 71, 59, 63, (210,599,0): 69, 58, 62, (211,0,0): 39, 27, 41, (211,1,0): 39, 27, 41, (211,2,0): 40, 28, 42, (211,3,0): 40, 28, 42, (211,4,0): 41, 29, 43, (211,5,0): 41, 29, 43, (211,6,0): 42, 30, 44, (211,7,0): 42, 30, 44, (211,8,0): 41, 29, 43, (211,9,0): 41, 29, 43, (211,10,0): 41, 29, 43, (211,11,0): 42, 30, 44, (211,12,0): 42, 30, 44, (211,13,0): 43, 31, 45, (211,14,0): 43, 31, 45, (211,15,0): 43, 31, 43, (211,16,0): 45, 33, 45, (211,17,0): 45, 33, 43, (211,18,0): 45, 33, 43, (211,19,0): 45, 33, 43, (211,20,0): 45, 33, 43, (211,21,0): 45, 33, 43, (211,22,0): 46, 33, 43, (211,23,0): 46, 33, 43, (211,24,0): 50, 34, 45, (211,25,0): 50, 34, 45, (211,26,0): 51, 33, 45, (211,27,0): 52, 34, 46, (211,28,0): 52, 34, 46, (211,29,0): 53, 35, 47, (211,30,0): 53, 35, 47, (211,31,0): 53, 35, 47, (211,32,0): 54, 37, 47, (211,33,0): 54, 37, 47, (211,34,0): 54, 37, 47, (211,35,0): 54, 37, 47, (211,36,0): 54, 37, 47, (211,37,0): 54, 37, 47, (211,38,0): 54, 37, 47, (211,39,0): 54, 37, 47, (211,40,0): 54, 37, 47, (211,41,0): 54, 37, 47, (211,42,0): 54, 37, 47, (211,43,0): 54, 37, 47, (211,44,0): 54, 37, 47, (211,45,0): 54, 37, 47, (211,46,0): 54, 37, 47, (211,47,0): 54, 37, 47, (211,48,0): 55, 38, 48, (211,49,0): 55, 38, 48, (211,50,0): 55, 38, 48, (211,51,0): 55, 38, 48, (211,52,0): 57, 37, 46, (211,53,0): 57, 37, 46, (211,54,0): 57, 38, 44, (211,55,0): 57, 38, 44, (211,56,0): 58, 37, 44, (211,57,0): 58, 37, 44, (211,58,0): 59, 36, 42, (211,59,0): 59, 36, 42, (211,60,0): 59, 37, 40, (211,61,0): 59, 37, 40, (211,62,0): 61, 36, 40, (211,63,0): 59, 37, 40, (211,64,0): 58, 37, 42, (211,65,0): 57, 38, 42, (211,66,0): 58, 38, 40, (211,67,0): 58, 38, 40, (211,68,0): 58, 38, 40, (211,69,0): 58, 38, 40, (211,70,0): 59, 37, 39, (211,71,0): 59, 37, 39, (211,72,0): 62, 38, 38, (211,73,0): 62, 38, 38, (211,74,0): 62, 38, 38, (211,75,0): 62, 38, 38, (211,76,0): 63, 37, 36, (211,77,0): 63, 37, 36, (211,78,0): 63, 37, 36, (211,79,0): 65, 37, 36, (211,80,0): 66, 35, 40, (211,81,0): 66, 35, 40, (211,82,0): 66, 35, 40, (211,83,0): 66, 35, 40, (211,84,0): 66, 35, 40, (211,85,0): 66, 35, 40, (211,86,0): 66, 35, 40, (211,87,0): 66, 35, 40, (211,88,0): 63, 32, 37, (211,89,0): 64, 33, 38, (211,90,0): 65, 34, 39, (211,91,0): 65, 34, 39, (211,92,0): 64, 33, 38, (211,93,0): 63, 32, 37, (211,94,0): 62, 31, 36, (211,95,0): 60, 31, 35, (211,96,0): 62, 33, 37, (211,97,0): 60, 34, 37, (211,98,0): 60, 34, 37, (211,99,0): 59, 33, 36, (211,100,0): 59, 33, 36, (211,101,0): 58, 32, 35, (211,102,0): 58, 32, 35, (211,103,0): 58, 32, 35, (211,104,0): 57, 31, 34, (211,105,0): 57, 31, 34, (211,106,0): 57, 31, 34, (211,107,0): 56, 30, 33, (211,108,0): 56, 30, 33, (211,109,0): 55, 29, 32, (211,110,0): 55, 29, 32, (211,111,0): 55, 29, 32, (211,112,0): 55, 30, 34, (211,113,0): 55, 30, 34, (211,114,0): 53, 31, 34, (211,115,0): 52, 30, 33, (211,116,0): 50, 28, 31, (211,117,0): 47, 25, 28, (211,118,0): 44, 24, 26, (211,119,0): 43, 23, 25, (211,120,0): 41, 21, 23, (211,121,0): 41, 22, 24, (211,122,0): 41, 22, 24, (211,123,0): 41, 22, 24, (211,124,0): 40, 24, 25, (211,125,0): 41, 25, 26, (211,126,0): 41, 25, 26, (211,127,0): 43, 24, 26, (211,128,0): 44, 24, 25, (211,129,0): 45, 23, 25, (211,130,0): 45, 23, 25, (211,131,0): 45, 23, 25, (211,132,0): 45, 24, 23, (211,133,0): 45, 24, 23, (211,134,0): 45, 24, 23, (211,135,0): 45, 24, 23, (211,136,0): 48, 27, 24, (211,137,0): 49, 28, 25, (211,138,0): 49, 28, 23, (211,139,0): 49, 28, 23, (211,140,0): 50, 29, 24, (211,141,0): 51, 30, 25, (211,142,0): 51, 31, 24, (211,143,0): 51, 31, 24, (211,144,0): 50, 29, 26, (211,145,0): 50, 29, 26, (211,146,0): 50, 29, 26, (211,147,0): 50, 29, 26, (211,148,0): 50, 29, 26, (211,149,0): 50, 29, 26, (211,150,0): 50, 29, 26, (211,151,0): 50, 29, 26, (211,152,0): 50, 29, 26, (211,153,0): 50, 29, 26, (211,154,0): 50, 29, 26, (211,155,0): 50, 29, 26, (211,156,0): 50, 29, 26, (211,157,0): 50, 29, 26, (211,158,0): 50, 29, 26, (211,159,0): 50, 29, 26, (211,160,0): 53, 28, 24, (211,161,0): 53, 28, 24, (211,162,0): 53, 28, 24, (211,163,0): 53, 28, 24, (211,164,0): 53, 28, 24, (211,165,0): 53, 28, 24, (211,166,0): 53, 28, 24, (211,167,0): 53, 28, 24, (211,168,0): 53, 28, 24, (211,169,0): 52, 27, 23, (211,170,0): 51, 26, 22, (211,171,0): 51, 26, 22, (211,172,0): 52, 27, 23, (211,173,0): 53, 28, 24, (211,174,0): 54, 29, 25, (211,175,0): 55, 30, 25, (211,176,0): 57, 32, 27, (211,177,0): 57, 32, 25, (211,178,0): 57, 32, 25, (211,179,0): 56, 31, 24, (211,180,0): 55, 30, 23, (211,181,0): 55, 30, 23, (211,182,0): 55, 30, 23, (211,183,0): 54, 29, 22, (211,184,0): 55, 30, 23, (211,185,0): 55, 30, 23, (211,186,0): 55, 30, 23, (211,187,0): 55, 30, 23, (211,188,0): 55, 30, 23, (211,189,0): 55, 30, 23, (211,190,0): 55, 30, 23, (211,191,0): 55, 30, 23, (211,192,0): 53, 28, 21, (211,193,0): 53, 28, 21, (211,194,0): 53, 28, 21, (211,195,0): 53, 28, 21, (211,196,0): 53, 28, 21, (211,197,0): 53, 28, 21, (211,198,0): 53, 28, 21, (211,199,0): 53, 28, 21, (211,200,0): 53, 28, 21, (211,201,0): 53, 28, 21, (211,202,0): 54, 29, 22, (211,203,0): 54, 29, 22, (211,204,0): 55, 30, 23, (211,205,0): 55, 30, 23, (211,206,0): 56, 31, 24, (211,207,0): 56, 31, 24, (211,208,0): 60, 31, 25, (211,209,0): 60, 31, 25, (211,210,0): 60, 31, 25, (211,211,0): 60, 31, 25, (211,212,0): 60, 31, 23, (211,213,0): 60, 31, 23, (211,214,0): 60, 31, 23, (211,215,0): 60, 32, 21, (211,216,0): 61, 33, 22, (211,217,0): 60, 32, 21, (211,218,0): 60, 32, 20, (211,219,0): 61, 33, 21, (211,220,0): 62, 34, 22, (211,221,0): 65, 37, 25, (211,222,0): 67, 39, 25, (211,223,0): 69, 40, 26, (211,224,0): 70, 38, 27, (211,225,0): 72, 38, 28, (211,226,0): 73, 39, 27, (211,227,0): 75, 42, 27, (211,228,0): 76, 43, 24, (211,229,0): 78, 46, 25, (211,230,0): 79, 47, 22, (211,231,0): 80, 49, 21, (211,232,0): 81, 50, 21, (211,233,0): 82, 51, 20, (211,234,0): 83, 52, 21, (211,235,0): 84, 53, 22, (211,236,0): 83, 52, 23, (211,237,0): 82, 51, 22, (211,238,0): 80, 49, 20, (211,239,0): 79, 48, 20, (211,240,0): 76, 46, 20, (211,241,0): 76, 46, 22, (211,242,0): 73, 45, 21, (211,243,0): 72, 44, 20, (211,244,0): 71, 43, 19, (211,245,0): 70, 42, 18, (211,246,0): 68, 42, 19, (211,247,0): 68, 42, 19, (211,248,0): 67, 43, 19, (211,249,0): 68, 44, 20, (211,250,0): 70, 46, 22, (211,251,0): 72, 48, 24, (211,252,0): 73, 51, 27, (211,253,0): 75, 53, 29, (211,254,0): 77, 55, 32, (211,255,0): 78, 56, 33, (211,256,0): 77, 55, 32, (211,257,0): 76, 54, 33, (211,258,0): 74, 52, 31, (211,259,0): 72, 49, 31, (211,260,0): 73, 47, 32, (211,261,0): 73, 47, 32, (211,262,0): 74, 48, 33, (211,263,0): 74, 48, 33, (211,264,0): 74, 46, 32, (211,265,0): 78, 51, 32, (211,266,0): 84, 56, 35, (211,267,0): 91, 63, 39, (211,268,0): 96, 69, 40, (211,269,0): 99, 73, 40, (211,270,0): 103, 74, 40, (211,271,0): 103, 75, 38, (211,272,0): 106, 76, 38, (211,273,0): 108, 79, 39, (211,274,0): 111, 82, 42, (211,275,0): 114, 84, 46, (211,276,0): 115, 87, 48, (211,277,0): 115, 87, 48, (211,278,0): 114, 86, 47, (211,279,0): 114, 86, 49, (211,280,0): 103, 77, 40, (211,281,0): 102, 76, 41, (211,282,0): 98, 74, 38, (211,283,0): 97, 73, 37, (211,284,0): 97, 73, 37, (211,285,0): 98, 74, 40, (211,286,0): 100, 77, 43, (211,287,0): 101, 78, 44, (211,288,0): 103, 83, 48, (211,289,0): 103, 83, 48, (211,290,0): 103, 83, 50, (211,291,0): 103, 83, 50, (211,292,0): 102, 83, 50, (211,293,0): 102, 83, 50, (211,294,0): 101, 82, 49, (211,295,0): 101, 82, 49, (211,296,0): 95, 79, 46, (211,297,0): 95, 79, 46, (211,298,0): 95, 80, 47, (211,299,0): 96, 81, 48, (211,300,0): 97, 82, 49, (211,301,0): 98, 83, 50, (211,302,0): 98, 85, 51, (211,303,0): 98, 85, 53, (211,304,0): 99, 84, 55, (211,305,0): 99, 84, 55, (211,306,0): 98, 82, 56, (211,307,0): 97, 81, 55, (211,308,0): 96, 80, 54, (211,309,0): 95, 79, 53, (211,310,0): 94, 78, 53, (211,311,0): 94, 78, 53, (211,312,0): 99, 83, 60, (211,313,0): 99, 83, 60, (211,314,0): 98, 82, 59, (211,315,0): 97, 81, 58, (211,316,0): 97, 80, 60, (211,317,0): 98, 81, 61, (211,318,0): 99, 82, 62, (211,319,0): 100, 84, 61, (211,320,0): 107, 90, 64, (211,321,0): 110, 93, 65, (211,322,0): 112, 95, 67, (211,323,0): 111, 96, 67, (211,324,0): 108, 94, 67, (211,325,0): 109, 95, 69, (211,326,0): 109, 97, 75, (211,327,0): 111, 100, 78, (211,328,0): 109, 101, 78, (211,329,0): 110, 103, 77, (211,330,0): 112, 107, 75, (211,331,0): 119, 117, 78, (211,332,0): 134, 136, 86, (211,333,0): 153, 159, 97, (211,334,0): 170, 177, 107, (211,335,0): 177, 188, 110, (211,336,0): 176, 193, 113, (211,337,0): 177, 196, 114, (211,338,0): 179, 201, 119, (211,339,0): 181, 204, 124, (211,340,0): 181, 205, 127, (211,341,0): 177, 204, 125, (211,342,0): 174, 202, 125, (211,343,0): 173, 201, 124, (211,344,0): 179, 208, 128, (211,345,0): 181, 210, 128, (211,346,0): 182, 211, 127, (211,347,0): 185, 213, 128, (211,348,0): 186, 214, 127, (211,349,0): 190, 216, 125, (211,350,0): 193, 218, 127, (211,351,0): 194, 219, 125, (211,352,0): 190, 220, 120, (211,353,0): 193, 226, 122, (211,354,0): 200, 231, 128, (211,355,0): 204, 237, 133, (211,356,0): 207, 240, 136, (211,357,0): 205, 240, 136, (211,358,0): 205, 238, 134, (211,359,0): 201, 236, 132, (211,360,0): 196, 231, 127, (211,361,0): 195, 232, 127, (211,362,0): 194, 231, 126, (211,363,0): 190, 229, 123, (211,364,0): 187, 224, 119, (211,365,0): 184, 223, 117, (211,366,0): 186, 225, 119, (211,367,0): 189, 228, 122, (211,368,0): 193, 231, 130, (211,369,0): 192, 230, 131, (211,370,0): 190, 228, 129, (211,371,0): 184, 224, 125, (211,372,0): 180, 220, 121, (211,373,0): 178, 220, 120, (211,374,0): 182, 224, 124, (211,375,0): 183, 228, 127, (211,376,0): 191, 238, 136, (211,377,0): 193, 241, 139, (211,378,0): 197, 245, 143, (211,379,0): 200, 251, 148, (211,380,0): 203, 254, 151, (211,381,0): 203, 255, 152, (211,382,0): 203, 255, 152, (211,383,0): 204, 255, 152, (211,384,0): 211, 253, 155, (211,385,0): 215, 252, 159, (211,386,0): 217, 253, 165, (211,387,0): 220, 254, 170, (211,388,0): 223, 254, 176, (211,389,0): 227, 255, 180, (211,390,0): 229, 255, 182, (211,391,0): 232, 255, 183, (211,392,0): 234, 255, 184, (211,393,0): 235, 255, 184, (211,394,0): 238, 255, 187, (211,395,0): 240, 255, 190, (211,396,0): 243, 254, 194, (211,397,0): 245, 254, 199, (211,398,0): 246, 254, 205, (211,399,0): 248, 254, 206, (211,400,0): 249, 255, 209, (211,401,0): 251, 254, 209, (211,402,0): 252, 253, 209, (211,403,0): 253, 254, 212, (211,404,0): 255, 253, 214, (211,405,0): 255, 254, 216, (211,406,0): 255, 253, 218, (211,407,0): 255, 254, 221, (211,408,0): 255, 253, 220, (211,409,0): 254, 254, 220, (211,410,0): 252, 253, 221, (211,411,0): 249, 253, 218, (211,412,0): 248, 254, 216, (211,413,0): 246, 254, 213, (211,414,0): 243, 254, 212, (211,415,0): 242, 254, 214, (211,416,0): 242, 254, 218, (211,417,0): 242, 253, 219, (211,418,0): 243, 254, 224, (211,419,0): 244, 254, 227, (211,420,0): 243, 255, 231, (211,421,0): 244, 255, 236, (211,422,0): 243, 255, 239, (211,423,0): 242, 255, 241, (211,424,0): 236, 252, 239, (211,425,0): 233, 254, 237, (211,426,0): 231, 255, 235, (211,427,0): 227, 255, 231, (211,428,0): 223, 255, 228, (211,429,0): 219, 255, 223, (211,430,0): 215, 255, 218, (211,431,0): 213, 255, 215, (211,432,0): 206, 249, 204, (211,433,0): 205, 251, 205, (211,434,0): 204, 253, 208, (211,435,0): 203, 254, 211, (211,436,0): 202, 254, 215, (211,437,0): 201, 253, 215, (211,438,0): 200, 251, 218, (211,439,0): 202, 249, 217, (211,440,0): 196, 239, 211, (211,441,0): 190, 226, 200, (211,442,0): 178, 210, 186, (211,443,0): 173, 201, 178, (211,444,0): 171, 199, 176, (211,445,0): 171, 199, 174, (211,446,0): 169, 197, 172, (211,447,0): 167, 196, 168, (211,448,0): 166, 195, 165, (211,449,0): 165, 194, 164, (211,450,0): 163, 192, 162, (211,451,0): 159, 185, 158, (211,452,0): 153, 177, 153, (211,453,0): 149, 173, 151, (211,454,0): 148, 171, 153, (211,455,0): 149, 173, 157, (211,456,0): 150, 174, 161, (211,457,0): 149, 175, 164, (211,458,0): 150, 177, 170, (211,459,0): 148, 179, 173, (211,460,0): 149, 181, 176, (211,461,0): 147, 182, 178, (211,462,0): 146, 182, 178, (211,463,0): 145, 181, 179, (211,464,0): 143, 179, 177, (211,465,0): 142, 178, 176, (211,466,0): 142, 178, 176, (211,467,0): 145, 181, 179, (211,468,0): 151, 186, 182, (211,469,0): 154, 189, 185, (211,470,0): 157, 187, 185, (211,471,0): 156, 187, 182, (211,472,0): 159, 188, 184, (211,473,0): 159, 188, 184, (211,474,0): 161, 186, 182, (211,475,0): 159, 184, 180, (211,476,0): 157, 179, 176, (211,477,0): 152, 174, 171, (211,478,0): 148, 171, 165, (211,479,0): 143, 168, 164, (211,480,0): 144, 170, 167, (211,481,0): 141, 170, 166, (211,482,0): 138, 167, 165, (211,483,0): 133, 163, 161, (211,484,0): 129, 159, 157, (211,485,0): 126, 156, 154, (211,486,0): 122, 154, 153, (211,487,0): 121, 153, 152, (211,488,0): 124, 154, 154, (211,489,0): 125, 153, 156, (211,490,0): 126, 151, 155, (211,491,0): 125, 148, 154, (211,492,0): 123, 143, 150, (211,493,0): 120, 139, 146, (211,494,0): 117, 134, 142, (211,495,0): 117, 132, 139, (211,496,0): 113, 124, 128, (211,497,0): 114, 124, 125, (211,498,0): 112, 122, 123, (211,499,0): 111, 121, 122, (211,500,0): 110, 120, 121, (211,501,0): 110, 119, 118, (211,502,0): 109, 118, 115, (211,503,0): 109, 118, 113, (211,504,0): 113, 119, 115, (211,505,0): 112, 119, 112, (211,506,0): 111, 118, 110, (211,507,0): 111, 117, 107, (211,508,0): 109, 115, 105, (211,509,0): 108, 114, 102, (211,510,0): 107, 113, 101, (211,511,0): 108, 111, 100, (211,512,0): 107, 110, 99, (211,513,0): 106, 109, 98, (211,514,0): 105, 108, 97, (211,515,0): 104, 107, 96, (211,516,0): 102, 105, 96, (211,517,0): 100, 103, 94, (211,518,0): 98, 101, 92, (211,519,0): 97, 100, 91, (211,520,0): 97, 100, 93, (211,521,0): 95, 98, 91, (211,522,0): 93, 95, 90, (211,523,0): 91, 93, 88, (211,524,0): 89, 91, 86, (211,525,0): 88, 90, 85, (211,526,0): 88, 90, 87, (211,527,0): 88, 90, 87, (211,528,0): 90, 92, 89, (211,529,0): 89, 91, 88, (211,530,0): 88, 90, 87, (211,531,0): 88, 90, 87, (211,532,0): 88, 90, 89, (211,533,0): 89, 91, 90, (211,534,0): 89, 93, 94, (211,535,0): 89, 93, 94, (211,536,0): 90, 94, 95, (211,537,0): 90, 96, 96, (211,538,0): 92, 97, 100, (211,539,0): 92, 100, 102, (211,540,0): 94, 102, 105, (211,541,0): 96, 104, 107, (211,542,0): 98, 106, 109, (211,543,0): 97, 107, 109, (211,544,0): 101, 112, 114, (211,545,0): 101, 115, 116, (211,546,0): 103, 117, 118, (211,547,0): 106, 120, 121, (211,548,0): 109, 123, 126, (211,549,0): 111, 125, 128, (211,550,0): 112, 125, 131, (211,551,0): 113, 126, 132, (211,552,0): 106, 119, 125, (211,553,0): 103, 116, 122, (211,554,0): 100, 113, 121, (211,555,0): 97, 110, 118, (211,556,0): 96, 109, 118, (211,557,0): 98, 111, 120, (211,558,0): 101, 114, 123, (211,559,0): 102, 116, 127, (211,560,0): 103, 122, 136, (211,561,0): 102, 124, 138, (211,562,0): 106, 125, 140, (211,563,0): 107, 126, 141, (211,564,0): 107, 124, 142, (211,565,0): 104, 121, 139, (211,566,0): 102, 117, 136, (211,567,0): 103, 116, 135, (211,568,0): 99, 110, 128, (211,569,0): 98, 110, 126, (211,570,0): 98, 107, 122, (211,571,0): 98, 108, 118, (211,572,0): 97, 106, 115, (211,573,0): 93, 102, 109, (211,574,0): 87, 94, 100, (211,575,0): 83, 88, 92, (211,576,0): 83, 86, 93, (211,577,0): 83, 86, 93, (211,578,0): 82, 85, 90, (211,579,0): 80, 83, 88, (211,580,0): 80, 81, 86, (211,581,0): 79, 80, 85, (211,582,0): 79, 78, 83, (211,583,0): 78, 77, 82, (211,584,0): 77, 77, 79, (211,585,0): 77, 77, 79, (211,586,0): 78, 76, 79, (211,587,0): 78, 76, 79, (211,588,0): 80, 76, 77, (211,589,0): 80, 76, 77, (211,590,0): 80, 76, 77, (211,591,0): 80, 74, 76, (211,592,0): 82, 71, 75, (211,593,0): 82, 70, 74, (211,594,0): 81, 69, 73, (211,595,0): 78, 66, 70, (211,596,0): 76, 64, 68, (211,597,0): 73, 61, 65, (211,598,0): 71, 59, 63, (211,599,0): 70, 58, 62, (212,0,0): 39, 27, 41, (212,1,0): 39, 27, 41, (212,2,0): 40, 28, 42, (212,3,0): 40, 28, 42, (212,4,0): 41, 29, 43, (212,5,0): 41, 29, 43, (212,6,0): 42, 30, 44, (212,7,0): 42, 30, 44, (212,8,0): 41, 29, 43, (212,9,0): 41, 29, 43, (212,10,0): 41, 29, 43, (212,11,0): 42, 30, 44, (212,12,0): 42, 30, 44, (212,13,0): 43, 31, 45, (212,14,0): 43, 31, 45, (212,15,0): 43, 31, 43, (212,16,0): 45, 33, 45, (212,17,0): 45, 33, 43, (212,18,0): 45, 33, 43, (212,19,0): 45, 33, 43, (212,20,0): 45, 33, 43, (212,21,0): 45, 33, 43, (212,22,0): 46, 33, 43, (212,23,0): 46, 33, 43, (212,24,0): 50, 34, 45, (212,25,0): 50, 34, 45, (212,26,0): 51, 33, 45, (212,27,0): 52, 34, 46, (212,28,0): 52, 34, 46, (212,29,0): 53, 35, 47, (212,30,0): 53, 35, 47, (212,31,0): 53, 35, 47, (212,32,0): 54, 37, 47, (212,33,0): 54, 37, 47, (212,34,0): 54, 37, 47, (212,35,0): 54, 37, 47, (212,36,0): 54, 37, 47, (212,37,0): 54, 37, 47, (212,38,0): 54, 37, 47, (212,39,0): 54, 37, 47, (212,40,0): 54, 37, 47, (212,41,0): 54, 37, 47, (212,42,0): 54, 37, 47, (212,43,0): 54, 37, 47, (212,44,0): 54, 37, 47, (212,45,0): 54, 37, 47, (212,46,0): 54, 37, 47, (212,47,0): 54, 37, 47, (212,48,0): 55, 38, 48, (212,49,0): 55, 38, 48, (212,50,0): 55, 38, 48, (212,51,0): 55, 38, 48, (212,52,0): 57, 37, 46, (212,53,0): 57, 37, 46, (212,54,0): 57, 38, 44, (212,55,0): 57, 38, 44, (212,56,0): 58, 37, 44, (212,57,0): 58, 37, 44, (212,58,0): 59, 36, 42, (212,59,0): 59, 36, 42, (212,60,0): 59, 37, 40, (212,61,0): 59, 37, 40, (212,62,0): 61, 36, 40, (212,63,0): 59, 37, 40, (212,64,0): 58, 37, 42, (212,65,0): 58, 37, 42, (212,66,0): 58, 38, 40, (212,67,0): 58, 38, 40, (212,68,0): 59, 37, 40, (212,69,0): 59, 37, 40, (212,70,0): 61, 36, 39, (212,71,0): 61, 36, 39, (212,72,0): 63, 39, 39, (212,73,0): 63, 39, 39, (212,74,0): 64, 38, 39, (212,75,0): 64, 38, 39, (212,76,0): 66, 38, 37, (212,77,0): 66, 38, 37, (212,78,0): 66, 38, 37, (212,79,0): 66, 38, 37, (212,80,0): 67, 36, 41, (212,81,0): 67, 36, 41, (212,82,0): 67, 36, 41, (212,83,0): 67, 36, 41, (212,84,0): 67, 36, 41, (212,85,0): 67, 36, 41, (212,86,0): 67, 36, 41, (212,87,0): 67, 36, 41, (212,88,0): 64, 33, 38, (212,89,0): 64, 33, 38, (212,90,0): 65, 34, 39, (212,91,0): 65, 34, 39, (212,92,0): 65, 34, 39, (212,93,0): 64, 33, 38, (212,94,0): 62, 31, 36, (212,95,0): 60, 31, 35, (212,96,0): 63, 34, 38, (212,97,0): 61, 35, 38, (212,98,0): 60, 34, 37, (212,99,0): 59, 33, 36, (212,100,0): 59, 33, 36, (212,101,0): 58, 32, 35, (212,102,0): 57, 31, 34, (212,103,0): 57, 31, 34, (212,104,0): 57, 31, 34, (212,105,0): 57, 31, 34, (212,106,0): 57, 31, 34, (212,107,0): 56, 30, 33, (212,108,0): 56, 30, 33, (212,109,0): 55, 29, 32, (212,110,0): 55, 29, 32, (212,111,0): 55, 29, 32, (212,112,0): 55, 30, 34, (212,113,0): 55, 30, 34, (212,114,0): 55, 30, 34, (212,115,0): 55, 30, 34, (212,116,0): 51, 29, 32, (212,117,0): 49, 27, 30, (212,118,0): 47, 25, 28, (212,119,0): 45, 25, 27, (212,120,0): 42, 22, 24, (212,121,0): 42, 22, 24, (212,122,0): 41, 22, 24, (212,123,0): 42, 23, 25, (212,124,0): 43, 24, 26, (212,125,0): 43, 24, 26, (212,126,0): 41, 25, 26, (212,127,0): 44, 25, 27, (212,128,0): 45, 25, 26, (212,129,0): 46, 24, 26, (212,130,0): 46, 24, 26, (212,131,0): 46, 24, 26, (212,132,0): 46, 25, 24, (212,133,0): 46, 25, 24, (212,134,0): 46, 25, 24, (212,135,0): 46, 25, 24, (212,136,0): 49, 28, 25, (212,137,0): 49, 28, 25, (212,138,0): 49, 28, 23, (212,139,0): 50, 29, 24, (212,140,0): 51, 30, 25, (212,141,0): 51, 30, 25, (212,142,0): 51, 31, 24, (212,143,0): 52, 32, 25, (212,144,0): 50, 29, 26, (212,145,0): 50, 29, 26, (212,146,0): 50, 29, 26, (212,147,0): 50, 29, 26, (212,148,0): 50, 29, 26, (212,149,0): 50, 29, 26, (212,150,0): 50, 29, 26, (212,151,0): 50, 29, 26, (212,152,0): 50, 29, 26, (212,153,0): 50, 29, 26, (212,154,0): 50, 29, 26, (212,155,0): 50, 29, 26, (212,156,0): 50, 29, 26, (212,157,0): 50, 29, 26, (212,158,0): 50, 29, 26, (212,159,0): 50, 29, 26, (212,160,0): 53, 28, 24, (212,161,0): 53, 28, 24, (212,162,0): 53, 28, 24, (212,163,0): 53, 28, 24, (212,164,0): 53, 28, 24, (212,165,0): 53, 28, 24, (212,166,0): 53, 28, 24, (212,167,0): 53, 28, 24, (212,168,0): 53, 28, 24, (212,169,0): 53, 28, 24, (212,170,0): 52, 27, 23, (212,171,0): 52, 27, 23, (212,172,0): 52, 27, 23, (212,173,0): 54, 29, 25, (212,174,0): 55, 30, 26, (212,175,0): 56, 31, 26, (212,176,0): 58, 33, 28, (212,177,0): 57, 32, 25, (212,178,0): 57, 32, 25, (212,179,0): 57, 32, 25, (212,180,0): 56, 31, 24, (212,181,0): 55, 30, 23, (212,182,0): 55, 30, 23, (212,183,0): 55, 30, 23, (212,184,0): 55, 30, 23, (212,185,0): 55, 30, 23, (212,186,0): 55, 30, 23, (212,187,0): 55, 30, 23, (212,188,0): 55, 30, 23, (212,189,0): 55, 30, 23, (212,190,0): 55, 30, 23, (212,191,0): 55, 30, 23, (212,192,0): 53, 28, 21, (212,193,0): 53, 28, 21, (212,194,0): 53, 28, 21, (212,195,0): 53, 28, 21, (212,196,0): 53, 28, 21, (212,197,0): 53, 28, 21, (212,198,0): 53, 28, 21, (212,199,0): 53, 28, 21, (212,200,0): 53, 28, 21, (212,201,0): 53, 28, 21, (212,202,0): 54, 29, 22, (212,203,0): 54, 29, 22, (212,204,0): 55, 30, 23, (212,205,0): 55, 30, 23, (212,206,0): 56, 31, 24, (212,207,0): 56, 31, 24, (212,208,0): 61, 32, 26, (212,209,0): 61, 32, 26, (212,210,0): 61, 32, 24, (212,211,0): 61, 32, 24, (212,212,0): 61, 32, 24, (212,213,0): 61, 32, 24, (212,214,0): 61, 33, 22, (212,215,0): 61, 33, 22, (212,216,0): 61, 33, 22, (212,217,0): 61, 33, 21, (212,218,0): 61, 33, 21, (212,219,0): 62, 34, 22, (212,220,0): 64, 36, 22, (212,221,0): 66, 38, 24, (212,222,0): 68, 40, 26, (212,223,0): 71, 42, 28, (212,224,0): 72, 40, 27, (212,225,0): 74, 41, 26, (212,226,0): 75, 42, 25, (212,227,0): 77, 44, 25, (212,228,0): 78, 46, 25, (212,229,0): 80, 48, 25, (212,230,0): 81, 50, 22, (212,231,0): 82, 51, 22, (212,232,0): 82, 51, 20, (212,233,0): 83, 53, 19, (212,234,0): 85, 55, 21, (212,235,0): 86, 56, 22, (212,236,0): 86, 55, 24, (212,237,0): 84, 53, 22, (212,238,0): 81, 50, 21, (212,239,0): 79, 48, 20, (212,240,0): 78, 48, 22, (212,241,0): 77, 47, 23, (212,242,0): 75, 47, 23, (212,243,0): 74, 46, 22, (212,244,0): 72, 44, 20, (212,245,0): 71, 43, 19, (212,246,0): 70, 44, 19, (212,247,0): 69, 43, 18, (212,248,0): 73, 49, 23, (212,249,0): 73, 49, 23, (212,250,0): 74, 50, 24, (212,251,0): 75, 51, 25, (212,252,0): 74, 53, 26, (212,253,0): 75, 54, 27, (212,254,0): 76, 54, 30, (212,255,0): 76, 54, 30, (212,256,0): 75, 53, 30, (212,257,0): 75, 53, 32, (212,258,0): 74, 52, 31, (212,259,0): 74, 52, 31, (212,260,0): 76, 51, 31, (212,261,0): 77, 52, 32, (212,262,0): 79, 54, 34, (212,263,0): 80, 55, 33, (212,264,0): 80, 54, 31, (212,265,0): 82, 56, 31, (212,266,0): 88, 61, 34, (212,267,0): 92, 65, 36, (212,268,0): 97, 70, 40, (212,269,0): 99, 73, 40, (212,270,0): 103, 74, 40, (212,271,0): 103, 75, 38, (212,272,0): 107, 78, 38, (212,273,0): 109, 80, 38, (212,274,0): 113, 84, 42, (212,275,0): 117, 88, 48, (212,276,0): 118, 90, 50, (212,277,0): 118, 90, 50, (212,278,0): 117, 89, 49, (212,279,0): 116, 88, 49, (212,280,0): 106, 81, 41, (212,281,0): 105, 79, 42, (212,282,0): 102, 78, 40, (212,283,0): 100, 76, 38, (212,284,0): 100, 76, 38, (212,285,0): 102, 78, 42, (212,286,0): 103, 81, 44, (212,287,0): 104, 82, 45, (212,288,0): 107, 87, 50, (212,289,0): 107, 87, 50, (212,290,0): 106, 86, 51, (212,291,0): 106, 86, 51, (212,292,0): 104, 86, 50, (212,293,0): 103, 85, 49, (212,294,0): 102, 83, 50, (212,295,0): 102, 83, 50, (212,296,0): 96, 80, 46, (212,297,0): 96, 80, 46, (212,298,0): 96, 81, 48, (212,299,0): 97, 82, 49, (212,300,0): 98, 83, 52, (212,301,0): 99, 84, 53, (212,302,0): 99, 86, 54, (212,303,0): 99, 86, 54, (212,304,0): 100, 85, 56, (212,305,0): 100, 85, 56, (212,306,0): 99, 83, 57, (212,307,0): 98, 82, 56, (212,308,0): 97, 81, 55, (212,309,0): 96, 80, 54, (212,310,0): 95, 79, 54, (212,311,0): 95, 79, 54, (212,312,0): 99, 83, 60, (212,313,0): 98, 82, 59, (212,314,0): 98, 82, 59, (212,315,0): 97, 81, 58, (212,316,0): 98, 81, 61, (212,317,0): 99, 82, 62, (212,318,0): 100, 83, 63, (212,319,0): 101, 85, 62, (212,320,0): 109, 92, 66, (212,321,0): 111, 94, 66, (212,322,0): 113, 98, 69, (212,323,0): 112, 97, 68, (212,324,0): 109, 95, 68, (212,325,0): 107, 93, 67, (212,326,0): 107, 95, 73, (212,327,0): 108, 97, 77, (212,328,0): 107, 99, 78, (212,329,0): 107, 99, 76, (212,330,0): 110, 105, 76, (212,331,0): 117, 114, 79, (212,332,0): 129, 128, 84, (212,333,0): 144, 147, 94, (212,334,0): 162, 166, 105, (212,335,0): 172, 182, 113, (212,336,0): 172, 188, 113, (212,337,0): 174, 193, 114, (212,338,0): 176, 197, 118, (212,339,0): 179, 202, 124, (212,340,0): 181, 205, 127, (212,341,0): 179, 206, 129, (212,342,0): 177, 205, 128, (212,343,0): 174, 205, 127, (212,344,0): 178, 209, 129, (212,345,0): 178, 210, 127, (212,346,0): 179, 211, 126, (212,347,0): 183, 213, 127, (212,348,0): 185, 215, 127, (212,349,0): 188, 217, 125, (212,350,0): 189, 218, 126, (212,351,0): 189, 219, 123, (212,352,0): 190, 222, 123, (212,353,0): 192, 227, 125, (212,354,0): 199, 231, 130, (212,355,0): 202, 237, 135, (212,356,0): 204, 239, 137, (212,357,0): 202, 239, 136, (212,358,0): 201, 236, 134, (212,359,0): 198, 235, 132, (212,360,0): 194, 231, 128, (212,361,0): 194, 232, 129, (212,362,0): 194, 232, 129, (212,363,0): 189, 230, 126, (212,364,0): 187, 225, 122, (212,365,0): 183, 224, 120, (212,366,0): 184, 225, 121, (212,367,0): 186, 227, 125, (212,368,0): 188, 228, 131, (212,369,0): 189, 229, 132, (212,370,0): 188, 228, 131, (212,371,0): 183, 225, 127, (212,372,0): 179, 221, 123, (212,373,0): 176, 220, 122, (212,374,0): 178, 222, 124, (212,375,0): 179, 225, 126, (212,376,0): 189, 237, 137, (212,377,0): 190, 241, 140, (212,378,0): 194, 245, 144, (212,379,0): 198, 250, 149, (212,380,0): 201, 253, 152, (212,381,0): 201, 255, 154, (212,382,0): 201, 255, 154, (212,383,0): 203, 255, 155, (212,384,0): 209, 253, 158, (212,385,0): 213, 252, 163, (212,386,0): 214, 252, 167, (212,387,0): 218, 253, 173, (212,388,0): 221, 253, 178, (212,389,0): 224, 254, 182, (212,390,0): 228, 255, 186, (212,391,0): 230, 255, 189, (212,392,0): 232, 254, 189, (212,393,0): 234, 255, 190, (212,394,0): 236, 255, 191, (212,395,0): 239, 254, 195, (212,396,0): 241, 254, 200, (212,397,0): 244, 254, 204, (212,398,0): 245, 254, 211, (212,399,0): 246, 253, 211, (212,400,0): 249, 254, 214, (212,401,0): 250, 255, 215, (212,402,0): 252, 254, 215, (212,403,0): 253, 255, 218, (212,404,0): 254, 253, 222, (212,405,0): 255, 254, 224, (212,406,0): 255, 254, 224, (212,407,0): 255, 254, 226, (212,408,0): 255, 254, 226, (212,409,0): 255, 254, 226, (212,410,0): 253, 253, 227, (212,411,0): 250, 253, 224, (212,412,0): 246, 253, 220, (212,413,0): 243, 253, 218, (212,414,0): 242, 252, 217, (212,415,0): 239, 253, 218, (212,416,0): 236, 253, 221, (212,417,0): 237, 253, 224, (212,418,0): 237, 253, 226, (212,419,0): 238, 253, 230, (212,420,0): 239, 254, 235, (212,421,0): 241, 255, 240, (212,422,0): 242, 255, 243, (212,423,0): 241, 255, 246, (212,424,0): 236, 253, 243, (212,425,0): 233, 255, 242, (212,426,0): 232, 255, 240, (212,427,0): 228, 255, 237, (212,428,0): 224, 255, 233, (212,429,0): 220, 255, 228, (212,430,0): 216, 255, 224, (212,431,0): 213, 254, 220, (212,432,0): 205, 249, 213, (212,433,0): 203, 249, 212, (212,434,0): 199, 249, 211, (212,435,0): 197, 249, 211, (212,436,0): 194, 250, 215, (212,437,0): 195, 250, 218, (212,438,0): 197, 250, 220, (212,439,0): 201, 249, 223, (212,440,0): 197, 239, 215, (212,441,0): 188, 226, 203, (212,442,0): 176, 209, 188, (212,443,0): 169, 198, 178, (212,444,0): 168, 196, 174, (212,445,0): 169, 197, 175, (212,446,0): 167, 196, 174, (212,447,0): 166, 194, 171, (212,448,0): 165, 191, 164, (212,449,0): 164, 190, 163, (212,450,0): 162, 188, 161, (212,451,0): 156, 180, 156, (212,452,0): 149, 172, 152, (212,453,0): 145, 168, 150, (212,454,0): 143, 167, 151, (212,455,0): 144, 168, 154, (212,456,0): 145, 171, 160, (212,457,0): 146, 173, 164, (212,458,0): 145, 176, 170, (212,459,0): 147, 179, 174, (212,460,0): 147, 182, 178, (212,461,0): 145, 184, 181, (212,462,0): 146, 185, 184, (212,463,0): 146, 185, 184, (212,464,0): 145, 180, 182, (212,465,0): 144, 179, 181, (212,466,0): 143, 179, 179, (212,467,0): 146, 182, 182, (212,468,0): 151, 185, 186, (212,469,0): 154, 188, 189, (212,470,0): 156, 186, 186, (212,471,0): 155, 185, 185, (212,472,0): 159, 187, 188, (212,473,0): 159, 188, 186, (212,474,0): 160, 184, 184, (212,475,0): 157, 181, 181, (212,476,0): 155, 177, 175, (212,477,0): 150, 172, 170, (212,478,0): 145, 167, 165, (212,479,0): 140, 165, 162, (212,480,0): 141, 167, 166, (212,481,0): 138, 167, 165, (212,482,0): 136, 164, 165, (212,483,0): 133, 161, 162, (212,484,0): 129, 159, 159, (212,485,0): 126, 156, 156, (212,486,0): 122, 153, 155, (212,487,0): 121, 152, 154, (212,488,0): 124, 154, 156, (212,489,0): 126, 154, 158, (212,490,0): 128, 153, 158, (212,491,0): 128, 151, 159, (212,492,0): 127, 147, 156, (212,493,0): 124, 142, 152, (212,494,0): 120, 138, 148, (212,495,0): 119, 136, 144, (212,496,0): 116, 129, 135, (212,497,0): 117, 128, 130, (212,498,0): 116, 127, 129, (212,499,0): 114, 126, 126, (212,500,0): 112, 124, 124, (212,501,0): 111, 121, 120, (212,502,0): 110, 120, 119, (212,503,0): 109, 120, 116, (212,504,0): 113, 122, 117, (212,505,0): 112, 122, 114, (212,506,0): 112, 122, 114, (212,507,0): 112, 119, 111, (212,508,0): 111, 118, 110, (212,509,0): 110, 118, 107, (212,510,0): 109, 117, 106, (212,511,0): 110, 116, 106, (212,512,0): 108, 111, 102, (212,513,0): 108, 109, 101, (212,514,0): 107, 108, 100, (212,515,0): 105, 106, 98, (212,516,0): 104, 105, 99, (212,517,0): 103, 104, 98, (212,518,0): 102, 103, 97, (212,519,0): 102, 103, 97, (212,520,0): 99, 100, 95, (212,521,0): 97, 98, 93, (212,522,0): 94, 94, 92, (212,523,0): 92, 92, 90, (212,524,0): 90, 90, 88, (212,525,0): 88, 88, 86, (212,526,0): 88, 88, 88, (212,527,0): 88, 88, 86, (212,528,0): 90, 90, 88, (212,529,0): 90, 91, 86, (212,530,0): 89, 89, 87, (212,531,0): 89, 89, 87, (212,532,0): 89, 91, 88, (212,533,0): 90, 92, 89, (212,534,0): 92, 94, 93, (212,535,0): 91, 95, 94, (212,536,0): 90, 94, 95, (212,537,0): 90, 96, 96, (212,538,0): 92, 98, 98, (212,539,0): 95, 101, 101, (212,540,0): 98, 103, 106, (212,541,0): 101, 106, 109, (212,542,0): 102, 110, 112, (212,543,0): 102, 112, 114, (212,544,0): 98, 112, 113, (212,545,0): 100, 115, 118, (212,546,0): 103, 118, 121, (212,547,0): 108, 123, 126, (212,548,0): 111, 126, 131, (212,549,0): 113, 128, 133, (212,550,0): 114, 129, 136, (212,551,0): 114, 129, 136, (212,552,0): 107, 122, 129, (212,553,0): 105, 120, 127, (212,554,0): 101, 115, 124, (212,555,0): 98, 112, 121, (212,556,0): 98, 112, 123, (212,557,0): 99, 113, 124, (212,558,0): 102, 116, 127, (212,559,0): 102, 118, 131, (212,560,0): 106, 123, 139, (212,561,0): 106, 125, 142, (212,562,0): 107, 126, 143, (212,563,0): 107, 126, 143, (212,564,0): 107, 124, 144, (212,565,0): 104, 121, 141, (212,566,0): 102, 117, 138, (212,567,0): 102, 115, 134, (212,568,0): 96, 107, 125, (212,569,0): 95, 107, 123, (212,570,0): 96, 105, 120, (212,571,0): 97, 105, 118, (212,572,0): 98, 104, 116, (212,573,0): 94, 101, 109, (212,574,0): 87, 94, 100, (212,575,0): 84, 89, 95, (212,576,0): 82, 85, 92, (212,577,0): 84, 84, 92, (212,578,0): 82, 83, 88, (212,579,0): 81, 82, 87, (212,580,0): 80, 79, 85, (212,581,0): 79, 78, 84, (212,582,0): 79, 77, 82, (212,583,0): 78, 76, 81, (212,584,0): 78, 76, 79, (212,585,0): 78, 76, 79, (212,586,0): 80, 75, 79, (212,587,0): 80, 75, 79, (212,588,0): 82, 76, 78, (212,589,0): 82, 76, 78, (212,590,0): 82, 76, 78, (212,591,0): 84, 75, 78, (212,592,0): 85, 73, 77, (212,593,0): 86, 71, 76, (212,594,0): 84, 69, 74, (212,595,0): 82, 67, 72, (212,596,0): 79, 64, 69, (212,597,0): 76, 61, 66, (212,598,0): 74, 59, 64, (212,599,0): 73, 58, 63, (213,0,0): 39, 27, 41, (213,1,0): 39, 27, 41, (213,2,0): 40, 28, 42, (213,3,0): 40, 28, 42, (213,4,0): 41, 29, 43, (213,5,0): 41, 29, 43, (213,6,0): 42, 30, 44, (213,7,0): 42, 30, 44, (213,8,0): 41, 29, 43, (213,9,0): 41, 29, 43, (213,10,0): 41, 29, 43, (213,11,0): 42, 30, 44, (213,12,0): 42, 30, 44, (213,13,0): 43, 31, 45, (213,14,0): 43, 31, 45, (213,15,0): 43, 31, 43, (213,16,0): 45, 33, 45, (213,17,0): 45, 33, 43, (213,18,0): 45, 33, 43, (213,19,0): 45, 33, 43, (213,20,0): 45, 33, 43, (213,21,0): 45, 33, 43, (213,22,0): 46, 33, 43, (213,23,0): 46, 33, 43, (213,24,0): 50, 34, 45, (213,25,0): 50, 34, 45, (213,26,0): 51, 33, 45, (213,27,0): 52, 34, 46, (213,28,0): 52, 34, 46, (213,29,0): 53, 35, 47, (213,30,0): 53, 35, 47, (213,31,0): 53, 35, 47, (213,32,0): 54, 37, 47, (213,33,0): 54, 37, 47, (213,34,0): 54, 37, 47, (213,35,0): 54, 37, 47, (213,36,0): 54, 37, 47, (213,37,0): 54, 37, 47, (213,38,0): 54, 37, 47, (213,39,0): 54, 37, 47, (213,40,0): 54, 37, 47, (213,41,0): 54, 37, 47, (213,42,0): 54, 37, 47, (213,43,0): 54, 37, 47, (213,44,0): 54, 37, 47, (213,45,0): 54, 37, 47, (213,46,0): 54, 37, 47, (213,47,0): 54, 37, 47, (213,48,0): 55, 38, 48, (213,49,0): 55, 38, 48, (213,50,0): 55, 38, 48, (213,51,0): 55, 38, 48, (213,52,0): 57, 37, 46, (213,53,0): 57, 37, 46, (213,54,0): 57, 38, 44, (213,55,0): 57, 38, 44, (213,56,0): 58, 37, 44, (213,57,0): 58, 37, 44, (213,58,0): 59, 36, 42, (213,59,0): 59, 36, 42, (213,60,0): 59, 37, 40, (213,61,0): 59, 37, 40, (213,62,0): 61, 36, 40, (213,63,0): 61, 36, 40, (213,64,0): 60, 37, 43, (213,65,0): 59, 38, 43, (213,66,0): 59, 39, 41, (213,67,0): 59, 39, 41, (213,68,0): 60, 38, 41, (213,69,0): 60, 38, 41, (213,70,0): 62, 37, 40, (213,71,0): 62, 37, 40, (213,72,0): 63, 39, 39, (213,73,0): 63, 39, 39, (213,74,0): 64, 38, 39, (213,75,0): 64, 38, 39, (213,76,0): 66, 38, 37, (213,77,0): 66, 38, 37, (213,78,0): 66, 38, 37, (213,79,0): 66, 38, 37, (213,80,0): 67, 36, 41, (213,81,0): 67, 36, 41, (213,82,0): 67, 36, 41, (213,83,0): 67, 36, 41, (213,84,0): 67, 36, 41, (213,85,0): 67, 36, 41, (213,86,0): 67, 36, 41, (213,87,0): 67, 36, 41, (213,88,0): 64, 33, 38, (213,89,0): 65, 34, 39, (213,90,0): 66, 35, 40, (213,91,0): 66, 35, 40, (213,92,0): 65, 34, 39, (213,93,0): 64, 33, 38, (213,94,0): 63, 32, 37, (213,95,0): 61, 32, 36, (213,96,0): 64, 35, 39, (213,97,0): 61, 35, 38, (213,98,0): 60, 34, 37, (213,99,0): 60, 34, 37, (213,100,0): 58, 32, 35, (213,101,0): 58, 32, 35, (213,102,0): 57, 31, 34, (213,103,0): 56, 30, 33, (213,104,0): 57, 31, 34, (213,105,0): 57, 31, 34, (213,106,0): 57, 31, 34, (213,107,0): 56, 30, 33, (213,108,0): 56, 30, 33, (213,109,0): 55, 29, 32, (213,110,0): 55, 29, 32, (213,111,0): 55, 29, 32, (213,112,0): 55, 30, 34, (213,113,0): 56, 31, 35, (213,114,0): 56, 31, 35, (213,115,0): 55, 30, 34, (213,116,0): 54, 29, 33, (213,117,0): 50, 28, 31, (213,118,0): 49, 27, 30, (213,119,0): 47, 25, 28, (213,120,0): 42, 22, 24, (213,121,0): 43, 23, 25, (213,122,0): 43, 23, 25, (213,123,0): 43, 24, 26, (213,124,0): 43, 24, 26, (213,125,0): 44, 25, 27, (213,126,0): 42, 26, 27, (213,127,0): 44, 25, 27, (213,128,0): 45, 25, 26, (213,129,0): 46, 24, 26, (213,130,0): 46, 24, 26, (213,131,0): 46, 24, 26, (213,132,0): 46, 25, 24, (213,133,0): 46, 25, 24, (213,134,0): 46, 25, 24, (213,135,0): 46, 25, 24, (213,136,0): 49, 28, 25, (213,137,0): 50, 29, 26, (213,138,0): 50, 29, 24, (213,139,0): 51, 30, 25, (213,140,0): 51, 30, 25, (213,141,0): 52, 31, 26, (213,142,0): 52, 32, 25, (213,143,0): 52, 32, 25, (213,144,0): 51, 30, 27, (213,145,0): 51, 30, 27, (213,146,0): 51, 30, 27, (213,147,0): 51, 30, 27, (213,148,0): 51, 30, 27, (213,149,0): 51, 30, 27, (213,150,0): 51, 30, 27, (213,151,0): 51, 30, 27, (213,152,0): 50, 29, 26, (213,153,0): 50, 29, 26, (213,154,0): 50, 29, 26, (213,155,0): 50, 29, 26, (213,156,0): 50, 29, 26, (213,157,0): 50, 29, 26, (213,158,0): 50, 29, 26, (213,159,0): 50, 29, 26, (213,160,0): 54, 29, 25, (213,161,0): 54, 29, 25, (213,162,0): 54, 29, 25, (213,163,0): 54, 29, 25, (213,164,0): 54, 29, 25, (213,165,0): 54, 29, 25, (213,166,0): 54, 29, 25, (213,167,0): 54, 29, 25, (213,168,0): 54, 29, 25, (213,169,0): 53, 28, 24, (213,170,0): 52, 27, 23, (213,171,0): 52, 27, 23, (213,172,0): 53, 28, 24, (213,173,0): 54, 29, 25, (213,174,0): 55, 30, 26, (213,175,0): 56, 31, 26, (213,176,0): 58, 33, 28, (213,177,0): 58, 33, 26, (213,178,0): 58, 33, 26, (213,179,0): 57, 32, 25, (213,180,0): 57, 32, 25, (213,181,0): 56, 31, 24, (213,182,0): 56, 31, 24, (213,183,0): 55, 30, 23, (213,184,0): 55, 30, 23, (213,185,0): 55, 30, 23, (213,186,0): 55, 30, 23, (213,187,0): 55, 30, 23, (213,188,0): 55, 30, 23, (213,189,0): 55, 30, 23, (213,190,0): 55, 30, 23, (213,191,0): 55, 30, 23, (213,192,0): 52, 27, 20, (213,193,0): 52, 27, 20, (213,194,0): 52, 27, 20, (213,195,0): 53, 28, 21, (213,196,0): 53, 28, 21, (213,197,0): 54, 29, 22, (213,198,0): 54, 29, 22, (213,199,0): 54, 29, 22, (213,200,0): 53, 28, 21, (213,201,0): 53, 28, 21, (213,202,0): 54, 29, 22, (213,203,0): 54, 29, 22, (213,204,0): 55, 30, 23, (213,205,0): 55, 30, 23, (213,206,0): 56, 31, 24, (213,207,0): 56, 31, 24, (213,208,0): 61, 32, 26, (213,209,0): 61, 32, 26, (213,210,0): 61, 32, 24, (213,211,0): 61, 32, 24, (213,212,0): 61, 32, 24, (213,213,0): 61, 33, 22, (213,214,0): 61, 33, 22, (213,215,0): 61, 33, 22, (213,216,0): 61, 33, 21, (213,217,0): 61, 33, 21, (213,218,0): 61, 33, 21, (213,219,0): 63, 35, 21, (213,220,0): 65, 37, 23, (213,221,0): 68, 40, 26, (213,222,0): 70, 42, 28, (213,223,0): 73, 44, 28, (213,224,0): 74, 42, 27, (213,225,0): 76, 43, 26, (213,226,0): 77, 44, 25, (213,227,0): 79, 47, 26, (213,228,0): 80, 48, 25, (213,229,0): 82, 50, 25, (213,230,0): 83, 52, 23, (213,231,0): 84, 53, 22, (213,232,0): 84, 54, 20, (213,233,0): 85, 55, 21, (213,234,0): 86, 56, 22, (213,235,0): 87, 57, 23, (213,236,0): 87, 56, 25, (213,237,0): 85, 54, 23, (213,238,0): 83, 52, 23, (213,239,0): 81, 50, 22, (213,240,0): 80, 50, 24, (213,241,0): 80, 50, 26, (213,242,0): 77, 49, 25, (213,243,0): 76, 48, 24, (213,244,0): 75, 47, 23, (213,245,0): 74, 46, 22, (213,246,0): 72, 46, 21, (213,247,0): 72, 46, 21, (213,248,0): 78, 54, 28, (213,249,0): 78, 54, 28, (213,250,0): 78, 54, 28, (213,251,0): 78, 54, 28, (213,252,0): 76, 55, 28, (213,253,0): 76, 55, 26, (213,254,0): 75, 54, 27, (213,255,0): 75, 54, 27, (213,256,0): 75, 53, 30, (213,257,0): 75, 53, 32, (213,258,0): 76, 54, 31, (213,259,0): 77, 55, 32, (213,260,0): 81, 57, 33, (213,261,0): 84, 60, 34, (213,262,0): 86, 62, 36, (213,263,0): 88, 64, 36, (213,264,0): 89, 64, 34, (213,265,0): 90, 65, 34, (213,266,0): 93, 66, 36, (213,267,0): 95, 69, 36, (213,268,0): 98, 72, 39, (213,269,0): 100, 74, 39, (213,270,0): 105, 76, 42, (213,271,0): 106, 78, 41, (213,272,0): 108, 79, 39, (213,273,0): 111, 82, 38, (213,274,0): 116, 87, 45, (213,275,0): 120, 91, 49, (213,276,0): 121, 94, 51, (213,277,0): 120, 93, 50, (213,278,0): 119, 92, 49, (213,279,0): 117, 89, 49, (213,280,0): 110, 85, 44, (213,281,0): 109, 84, 44, (213,282,0): 106, 83, 42, (213,283,0): 104, 81, 40, (213,284,0): 104, 80, 42, (213,285,0): 106, 82, 44, (213,286,0): 107, 85, 46, (213,287,0): 108, 86, 47, (213,288,0): 111, 92, 52, (213,289,0): 110, 90, 53, (213,290,0): 109, 89, 52, (213,291,0): 108, 88, 51, (213,292,0): 105, 87, 49, (213,293,0): 104, 86, 50, (213,294,0): 103, 85, 49, (213,295,0): 102, 83, 50, (213,296,0): 96, 80, 46, (213,297,0): 96, 80, 46, (213,298,0): 96, 81, 48, (213,299,0): 97, 82, 49, (213,300,0): 98, 83, 52, (213,301,0): 99, 84, 53, (213,302,0): 99, 86, 54, (213,303,0): 100, 87, 55, (213,304,0): 101, 86, 57, (213,305,0): 100, 85, 56, (213,306,0): 99, 83, 57, (213,307,0): 98, 82, 56, (213,308,0): 97, 81, 55, (213,309,0): 96, 80, 54, (213,310,0): 95, 79, 54, (213,311,0): 95, 79, 54, (213,312,0): 97, 81, 58, (213,313,0): 97, 81, 58, (213,314,0): 97, 81, 58, (213,315,0): 97, 81, 58, (213,316,0): 99, 82, 62, (213,317,0): 101, 84, 64, (213,318,0): 103, 86, 66, (213,319,0): 104, 88, 65, (213,320,0): 110, 93, 67, (213,321,0): 112, 95, 67, (213,322,0): 113, 98, 69, (213,323,0): 112, 96, 70, (213,324,0): 108, 94, 68, (213,325,0): 106, 91, 68, (213,326,0): 104, 92, 70, (213,327,0): 105, 92, 75, (213,328,0): 107, 96, 78, (213,329,0): 105, 97, 78, (213,330,0): 109, 101, 78, (213,331,0): 115, 110, 80, (213,332,0): 124, 120, 82, (213,333,0): 135, 134, 88, (213,334,0): 153, 153, 99, (213,335,0): 166, 172, 110, (213,336,0): 169, 182, 112, (213,337,0): 169, 187, 111, (213,338,0): 171, 192, 117, (213,339,0): 175, 197, 122, (213,340,0): 177, 201, 125, (213,341,0): 177, 204, 127, (213,342,0): 177, 205, 128, (213,343,0): 175, 206, 126, (213,344,0): 177, 209, 126, (213,345,0): 176, 208, 123, (213,346,0): 177, 209, 124, (213,347,0): 180, 213, 124, (213,348,0): 186, 216, 128, (213,349,0): 189, 219, 129, (213,350,0): 190, 219, 127, (213,351,0): 189, 220, 126, (213,352,0): 189, 223, 126, (213,353,0): 192, 226, 129, (213,354,0): 196, 230, 133, (213,355,0): 198, 234, 136, (213,356,0): 199, 235, 137, (213,357,0): 197, 233, 135, (213,358,0): 195, 231, 133, (213,359,0): 193, 231, 132, (213,360,0): 192, 230, 131, (213,361,0): 191, 231, 132, (213,362,0): 192, 232, 133, (213,363,0): 189, 229, 130, (213,364,0): 185, 225, 126, (213,365,0): 182, 224, 124, (213,366,0): 183, 225, 125, (213,367,0): 184, 226, 128, (213,368,0): 185, 226, 130, (213,369,0): 186, 227, 133, (213,370,0): 186, 227, 133, (213,371,0): 182, 226, 131, (213,372,0): 178, 222, 127, (213,373,0): 174, 219, 124, (213,374,0): 175, 220, 125, (213,375,0): 176, 223, 127, (213,376,0): 185, 235, 138, (213,377,0): 187, 239, 141, (213,378,0): 191, 243, 145, (213,379,0): 194, 248, 150, (213,380,0): 198, 252, 154, (213,381,0): 199, 255, 156, (213,382,0): 200, 255, 157, (213,383,0): 201, 255, 159, (213,384,0): 207, 252, 161, (213,385,0): 209, 251, 165, (213,386,0): 213, 252, 171, (213,387,0): 216, 253, 176, (213,388,0): 220, 253, 182, (213,389,0): 223, 254, 187, (213,390,0): 225, 254, 190, (213,391,0): 228, 254, 191, (213,392,0): 230, 254, 192, (213,393,0): 232, 253, 194, (213,394,0): 234, 254, 195, (213,395,0): 236, 253, 199, (213,396,0): 239, 253, 204, (213,397,0): 240, 253, 209, (213,398,0): 242, 252, 215, (213,399,0): 244, 251, 217, (213,400,0): 249, 255, 221, (213,401,0): 249, 255, 221, (213,402,0): 250, 253, 222, (213,403,0): 251, 254, 223, (213,404,0): 254, 254, 228, (213,405,0): 254, 254, 230, (213,406,0): 254, 254, 230, (213,407,0): 255, 254, 233, (213,408,0): 255, 254, 234, (213,409,0): 254, 253, 233, (213,410,0): 251, 253, 232, (213,411,0): 248, 253, 230, (213,412,0): 244, 253, 226, (213,413,0): 242, 252, 225, (213,414,0): 241, 251, 224, (213,415,0): 237, 252, 223, (213,416,0): 232, 252, 225, (213,417,0): 230, 253, 227, (213,418,0): 230, 252, 229, (213,419,0): 233, 252, 232, (213,420,0): 234, 252, 236, (213,421,0): 236, 254, 242, (213,422,0): 238, 255, 245, (213,423,0): 240, 255, 249, (213,424,0): 234, 253, 247, (213,425,0): 233, 254, 247, (213,426,0): 230, 255, 245, (213,427,0): 228, 255, 242, (213,428,0): 225, 255, 238, (213,429,0): 220, 255, 233, (213,430,0): 218, 253, 229, (213,431,0): 214, 254, 227, (213,432,0): 205, 250, 219, (213,433,0): 200, 249, 217, (213,434,0): 197, 248, 217, (213,435,0): 193, 247, 215, (213,436,0): 191, 247, 218, (213,437,0): 193, 249, 222, (213,438,0): 196, 250, 226, (213,439,0): 201, 250, 228, (213,440,0): 196, 239, 219, (213,441,0): 187, 224, 206, (213,442,0): 173, 206, 189, (213,443,0): 163, 194, 176, (213,444,0): 163, 192, 174, (213,445,0): 165, 192, 173, (213,446,0): 164, 193, 173, (213,447,0): 164, 192, 170, (213,448,0): 162, 186, 162, (213,449,0): 161, 185, 161, (213,450,0): 159, 183, 161, (213,451,0): 153, 177, 155, (213,452,0): 146, 169, 151, (213,453,0): 141, 164, 148, (213,454,0): 140, 164, 150, (213,455,0): 139, 165, 152, (213,456,0): 142, 169, 160, (213,457,0): 142, 172, 164, (213,458,0): 144, 176, 171, (213,459,0): 145, 180, 176, (213,460,0): 145, 184, 181, (213,461,0): 146, 186, 185, (213,462,0): 148, 188, 188, (213,463,0): 148, 188, 190, (213,464,0): 144, 182, 185, (213,465,0): 145, 180, 186, (213,466,0): 144, 179, 183, (213,467,0): 146, 181, 185, (213,468,0): 151, 184, 189, (213,469,0): 153, 186, 191, (213,470,0): 155, 184, 188, (213,471,0): 153, 182, 186, (213,472,0): 157, 185, 188, (213,473,0): 156, 184, 187, (213,474,0): 156, 180, 184, (213,475,0): 152, 176, 180, (213,476,0): 150, 171, 174, (213,477,0): 145, 166, 169, (213,478,0): 141, 162, 165, (213,479,0): 137, 161, 163, (213,480,0): 138, 162, 164, (213,481,0): 136, 162, 163, (213,482,0): 132, 160, 163, (213,483,0): 131, 159, 162, (213,484,0): 127, 157, 159, (213,485,0): 125, 155, 157, (213,486,0): 123, 154, 156, (213,487,0): 122, 153, 156, (213,488,0): 123, 152, 156, (213,489,0): 123, 152, 158, (213,490,0): 125, 152, 159, (213,491,0): 127, 152, 159, (213,492,0): 126, 148, 159, (213,493,0): 126, 146, 157, (213,494,0): 123, 143, 154, (213,495,0): 122, 140, 150, (213,496,0): 120, 135, 142, (213,497,0): 121, 135, 138, (213,498,0): 120, 134, 137, (213,499,0): 118, 132, 133, (213,500,0): 115, 129, 130, (213,501,0): 114, 126, 126, (213,502,0): 112, 124, 124, (213,503,0): 111, 121, 120, (213,504,0): 115, 126, 122, (213,505,0): 114, 125, 119, (213,506,0): 113, 124, 118, (213,507,0): 113, 123, 115, (213,508,0): 112, 122, 114, (213,509,0): 110, 120, 111, (213,510,0): 111, 118, 110, (213,511,0): 111, 119, 108, (213,512,0): 110, 113, 104, (213,513,0): 110, 111, 103, (213,514,0): 108, 109, 101, (213,515,0): 106, 107, 101, (213,516,0): 104, 105, 99, (213,517,0): 104, 105, 99, (213,518,0): 103, 104, 98, (213,519,0): 103, 104, 99, (213,520,0): 98, 99, 94, (213,521,0): 97, 97, 95, (213,522,0): 94, 94, 92, (213,523,0): 92, 92, 90, (213,524,0): 90, 90, 88, (213,525,0): 89, 89, 89, (213,526,0): 88, 88, 88, (213,527,0): 88, 88, 88, (213,528,0): 90, 90, 88, (213,529,0): 90, 91, 86, (213,530,0): 89, 89, 87, (213,531,0): 89, 89, 87, (213,532,0): 89, 91, 88, (213,533,0): 91, 93, 90, (213,534,0): 93, 95, 94, (213,535,0): 94, 96, 95, (213,536,0): 92, 96, 97, (213,537,0): 92, 96, 97, (213,538,0): 93, 99, 99, (213,539,0): 95, 101, 101, (213,540,0): 98, 103, 106, (213,541,0): 102, 107, 110, (213,542,0): 103, 111, 113, (213,543,0): 104, 114, 116, (213,544,0): 100, 114, 117, (213,545,0): 101, 116, 119, (213,546,0): 106, 121, 124, (213,547,0): 111, 126, 131, (213,548,0): 114, 129, 134, (213,549,0): 116, 131, 136, (213,550,0): 116, 131, 138, (213,551,0): 116, 131, 138, (213,552,0): 110, 125, 132, (213,553,0): 107, 121, 130, (213,554,0): 104, 118, 127, (213,555,0): 101, 115, 124, (213,556,0): 100, 114, 125, (213,557,0): 102, 116, 127, (213,558,0): 105, 119, 130, (213,559,0): 105, 121, 134, (213,560,0): 106, 123, 139, (213,561,0): 106, 125, 142, (213,562,0): 107, 126, 143, (213,563,0): 107, 126, 143, (213,564,0): 107, 124, 144, (213,565,0): 105, 120, 141, (213,566,0): 103, 115, 137, (213,567,0): 101, 113, 135, (213,568,0): 96, 107, 127, (213,569,0): 96, 104, 123, (213,570,0): 96, 103, 121, (213,571,0): 96, 104, 117, (213,572,0): 97, 103, 115, (213,573,0): 94, 101, 111, (213,574,0): 89, 96, 104, (213,575,0): 87, 92, 98, (213,576,0): 85, 85, 93, (213,577,0): 84, 84, 92, (213,578,0): 84, 83, 89, (213,579,0): 83, 82, 88, (213,580,0): 81, 80, 86, (213,581,0): 80, 79, 85, (213,582,0): 79, 77, 82, (213,583,0): 79, 77, 82, (213,584,0): 79, 77, 80, (213,585,0): 81, 76, 80, (213,586,0): 81, 76, 80, (213,587,0): 83, 77, 81, (213,588,0): 83, 77, 79, (213,589,0): 83, 77, 79, (213,590,0): 84, 78, 80, (213,591,0): 86, 77, 80, (213,592,0): 87, 75, 79, (213,593,0): 88, 73, 78, (213,594,0): 87, 70, 76, (213,595,0): 83, 68, 73, (213,596,0): 80, 63, 69, (213,597,0): 76, 61, 66, (213,598,0): 75, 58, 64, (213,599,0): 73, 58, 63, (214,0,0): 39, 27, 41, (214,1,0): 39, 27, 41, (214,2,0): 40, 28, 42, (214,3,0): 40, 28, 42, (214,4,0): 41, 29, 43, (214,5,0): 41, 29, 43, (214,6,0): 42, 30, 44, (214,7,0): 42, 30, 44, (214,8,0): 41, 29, 43, (214,9,0): 41, 29, 43, (214,10,0): 41, 29, 43, (214,11,0): 42, 30, 44, (214,12,0): 42, 30, 44, (214,13,0): 43, 31, 45, (214,14,0): 43, 31, 45, (214,15,0): 43, 31, 43, (214,16,0): 45, 33, 45, (214,17,0): 45, 33, 43, (214,18,0): 45, 33, 43, (214,19,0): 45, 33, 43, (214,20,0): 45, 33, 43, (214,21,0): 45, 33, 43, (214,22,0): 46, 33, 43, (214,23,0): 46, 33, 43, (214,24,0): 50, 34, 45, (214,25,0): 50, 34, 45, (214,26,0): 51, 33, 45, (214,27,0): 52, 34, 46, (214,28,0): 52, 34, 46, (214,29,0): 53, 35, 47, (214,30,0): 53, 35, 47, (214,31,0): 53, 35, 47, (214,32,0): 54, 37, 47, (214,33,0): 54, 37, 47, (214,34,0): 54, 37, 47, (214,35,0): 54, 37, 47, (214,36,0): 54, 37, 47, (214,37,0): 54, 37, 47, (214,38,0): 54, 37, 47, (214,39,0): 54, 37, 47, (214,40,0): 54, 37, 47, (214,41,0): 54, 37, 47, (214,42,0): 54, 37, 47, (214,43,0): 54, 37, 47, (214,44,0): 54, 37, 47, (214,45,0): 54, 37, 47, (214,46,0): 54, 37, 47, (214,47,0): 54, 37, 47, (214,48,0): 55, 38, 48, (214,49,0): 55, 38, 48, (214,50,0): 55, 38, 48, (214,51,0): 55, 38, 48, (214,52,0): 57, 37, 46, (214,53,0): 57, 37, 46, (214,54,0): 57, 38, 44, (214,55,0): 57, 38, 44, (214,56,0): 58, 37, 44, (214,57,0): 58, 37, 44, (214,58,0): 59, 36, 42, (214,59,0): 59, 36, 42, (214,60,0): 59, 37, 40, (214,61,0): 59, 37, 40, (214,62,0): 61, 36, 40, (214,63,0): 61, 36, 40, (214,64,0): 61, 38, 44, (214,65,0): 61, 38, 44, (214,66,0): 61, 39, 42, (214,67,0): 61, 39, 42, (214,68,0): 63, 38, 42, (214,69,0): 63, 38, 42, (214,70,0): 63, 38, 41, (214,71,0): 63, 38, 41, (214,72,0): 65, 39, 40, (214,73,0): 65, 39, 40, (214,74,0): 67, 38, 40, (214,75,0): 67, 38, 40, (214,76,0): 67, 39, 38, (214,77,0): 67, 39, 38, (214,78,0): 68, 38, 38, (214,79,0): 68, 38, 38, (214,80,0): 68, 37, 42, (214,81,0): 68, 37, 42, (214,82,0): 68, 37, 42, (214,83,0): 68, 37, 42, (214,84,0): 68, 37, 42, (214,85,0): 68, 37, 42, (214,86,0): 68, 37, 42, (214,87,0): 68, 37, 42, (214,88,0): 65, 34, 39, (214,89,0): 65, 34, 39, (214,90,0): 66, 35, 40, (214,91,0): 66, 35, 40, (214,92,0): 66, 35, 40, (214,93,0): 64, 33, 38, (214,94,0): 63, 32, 37, (214,95,0): 61, 32, 36, (214,96,0): 64, 35, 39, (214,97,0): 62, 36, 39, (214,98,0): 61, 35, 38, (214,99,0): 60, 34, 37, (214,100,0): 58, 32, 35, (214,101,0): 57, 31, 34, (214,102,0): 56, 30, 33, (214,103,0): 56, 30, 33, (214,104,0): 57, 31, 34, (214,105,0): 57, 31, 34, (214,106,0): 57, 31, 34, (214,107,0): 56, 30, 33, (214,108,0): 56, 30, 33, (214,109,0): 55, 29, 32, (214,110,0): 55, 29, 32, (214,111,0): 55, 29, 32, (214,112,0): 56, 30, 33, (214,113,0): 57, 31, 34, (214,114,0): 57, 31, 34, (214,115,0): 56, 31, 34, (214,116,0): 55, 30, 33, (214,117,0): 54, 29, 32, (214,118,0): 50, 28, 30, (214,119,0): 49, 27, 29, (214,120,0): 44, 22, 24, (214,121,0): 43, 23, 24, (214,122,0): 43, 23, 24, (214,123,0): 44, 24, 25, (214,124,0): 43, 25, 25, (214,125,0): 44, 26, 26, (214,126,0): 44, 26, 26, (214,127,0): 45, 27, 27, (214,128,0): 46, 26, 27, (214,129,0): 47, 25, 27, (214,130,0): 47, 25, 27, (214,131,0): 47, 25, 27, (214,132,0): 47, 26, 25, (214,133,0): 47, 26, 25, (214,134,0): 47, 26, 25, (214,135,0): 47, 26, 25, (214,136,0): 50, 29, 26, (214,137,0): 50, 29, 26, (214,138,0): 50, 29, 24, (214,139,0): 51, 30, 25, (214,140,0): 51, 30, 25, (214,141,0): 52, 31, 26, (214,142,0): 52, 32, 25, (214,143,0): 53, 33, 26, (214,144,0): 51, 30, 27, (214,145,0): 51, 30, 27, (214,146,0): 51, 30, 27, (214,147,0): 51, 30, 27, (214,148,0): 51, 30, 27, (214,149,0): 51, 30, 27, (214,150,0): 51, 30, 27, (214,151,0): 51, 30, 27, (214,152,0): 50, 29, 26, (214,153,0): 50, 29, 26, (214,154,0): 50, 29, 26, (214,155,0): 50, 29, 26, (214,156,0): 50, 29, 26, (214,157,0): 50, 29, 26, (214,158,0): 50, 29, 26, (214,159,0): 50, 29, 26, (214,160,0): 54, 29, 25, (214,161,0): 54, 29, 25, (214,162,0): 54, 29, 25, (214,163,0): 54, 29, 25, (214,164,0): 54, 29, 25, (214,165,0): 54, 29, 25, (214,166,0): 54, 29, 25, (214,167,0): 54, 29, 25, (214,168,0): 54, 29, 25, (214,169,0): 54, 29, 25, (214,170,0): 53, 28, 24, (214,171,0): 53, 28, 24, (214,172,0): 53, 28, 24, (214,173,0): 54, 29, 25, (214,174,0): 56, 31, 27, (214,175,0): 57, 32, 27, (214,176,0): 59, 34, 29, (214,177,0): 58, 33, 26, (214,178,0): 58, 33, 26, (214,179,0): 57, 32, 25, (214,180,0): 57, 32, 25, (214,181,0): 56, 31, 24, (214,182,0): 56, 31, 24, (214,183,0): 56, 31, 24, (214,184,0): 55, 30, 23, (214,185,0): 55, 30, 23, (214,186,0): 55, 30, 23, (214,187,0): 55, 30, 23, (214,188,0): 55, 30, 23, (214,189,0): 55, 30, 23, (214,190,0): 55, 30, 23, (214,191,0): 55, 30, 23, (214,192,0): 51, 26, 19, (214,193,0): 51, 26, 19, (214,194,0): 52, 27, 20, (214,195,0): 53, 28, 21, (214,196,0): 53, 28, 21, (214,197,0): 54, 29, 22, (214,198,0): 55, 30, 23, (214,199,0): 55, 30, 23, (214,200,0): 53, 28, 21, (214,201,0): 53, 28, 21, (214,202,0): 54, 29, 22, (214,203,0): 54, 29, 22, (214,204,0): 55, 30, 23, (214,205,0): 55, 30, 23, (214,206,0): 56, 31, 24, (214,207,0): 56, 31, 24, (214,208,0): 62, 33, 25, (214,209,0): 62, 33, 25, (214,210,0): 62, 33, 25, (214,211,0): 62, 33, 25, (214,212,0): 62, 34, 23, (214,213,0): 62, 34, 23, (214,214,0): 62, 34, 23, (214,215,0): 62, 34, 22, (214,216,0): 61, 33, 21, (214,217,0): 61, 33, 21, (214,218,0): 62, 34, 20, (214,219,0): 63, 35, 21, (214,220,0): 66, 38, 24, (214,221,0): 69, 42, 25, (214,222,0): 71, 44, 27, (214,223,0): 74, 45, 29, (214,224,0): 76, 45, 27, (214,225,0): 78, 45, 26, (214,226,0): 79, 47, 26, (214,227,0): 80, 48, 25, (214,228,0): 82, 50, 25, (214,229,0): 84, 53, 25, (214,230,0): 85, 54, 23, (214,231,0): 85, 55, 21, (214,232,0): 87, 57, 23, (214,233,0): 87, 57, 21, (214,234,0): 87, 57, 23, (214,235,0): 87, 57, 23, (214,236,0): 87, 56, 25, (214,237,0): 86, 55, 24, (214,238,0): 85, 54, 25, (214,239,0): 84, 53, 25, (214,240,0): 82, 52, 28, (214,241,0): 82, 51, 30, (214,242,0): 79, 51, 29, (214,243,0): 78, 50, 28, (214,244,0): 77, 49, 25, (214,245,0): 76, 48, 24, (214,246,0): 74, 48, 23, (214,247,0): 74, 48, 23, (214,248,0): 80, 56, 28, (214,249,0): 80, 56, 28, (214,250,0): 79, 55, 27, (214,251,0): 79, 55, 27, (214,252,0): 77, 56, 27, (214,253,0): 77, 56, 25, (214,254,0): 77, 56, 27, (214,255,0): 77, 56, 27, (214,256,0): 77, 55, 31, (214,257,0): 77, 55, 32, (214,258,0): 79, 57, 33, (214,259,0): 82, 61, 34, (214,260,0): 88, 64, 36, (214,261,0): 92, 69, 38, (214,262,0): 96, 73, 41, (214,263,0): 98, 75, 41, (214,264,0): 101, 77, 41, (214,265,0): 100, 76, 38, (214,266,0): 100, 74, 37, (214,267,0): 99, 73, 36, (214,268,0): 101, 75, 38, (214,269,0): 103, 77, 42, (214,270,0): 108, 79, 45, (214,271,0): 111, 83, 46, (214,272,0): 110, 81, 39, (214,273,0): 113, 85, 38, (214,274,0): 117, 88, 44, (214,275,0): 121, 92, 48, (214,276,0): 122, 95, 50, (214,277,0): 121, 94, 49, (214,278,0): 118, 91, 46, (214,279,0): 116, 89, 46, (214,280,0): 114, 90, 46, (214,281,0): 112, 87, 46, (214,282,0): 109, 86, 44, (214,283,0): 107, 84, 42, (214,284,0): 107, 84, 43, (214,285,0): 109, 86, 45, (214,286,0): 110, 88, 47, (214,287,0): 112, 90, 49, (214,288,0): 114, 95, 53, (214,289,0): 113, 94, 54, (214,290,0): 112, 93, 53, (214,291,0): 110, 91, 51, (214,292,0): 107, 89, 49, (214,293,0): 105, 87, 49, (214,294,0): 103, 85, 49, (214,295,0): 103, 85, 49, (214,296,0): 96, 80, 46, (214,297,0): 97, 81, 47, (214,298,0): 97, 82, 49, (214,299,0): 98, 83, 50, (214,300,0): 99, 84, 53, (214,301,0): 100, 85, 54, (214,302,0): 100, 87, 55, (214,303,0): 100, 87, 55, (214,304,0): 101, 86, 57, (214,305,0): 101, 86, 57, (214,306,0): 100, 84, 58, (214,307,0): 99, 83, 57, (214,308,0): 98, 82, 56, (214,309,0): 97, 81, 55, (214,310,0): 96, 80, 55, (214,311,0): 95, 79, 54, (214,312,0): 96, 80, 57, (214,313,0): 96, 80, 57, (214,314,0): 96, 80, 57, (214,315,0): 97, 81, 58, (214,316,0): 99, 82, 62, (214,317,0): 102, 85, 65, (214,318,0): 105, 88, 68, (214,319,0): 106, 90, 67, (214,320,0): 109, 93, 68, (214,321,0): 112, 96, 70, (214,322,0): 114, 98, 72, (214,323,0): 112, 96, 70, (214,324,0): 107, 93, 67, (214,325,0): 104, 89, 66, (214,326,0): 101, 88, 69, (214,327,0): 101, 88, 71, (214,328,0): 102, 90, 74, (214,329,0): 100, 91, 74, (214,330,0): 105, 97, 78, (214,331,0): 113, 106, 80, (214,332,0): 119, 113, 81, (214,333,0): 125, 121, 83, (214,334,0): 143, 140, 95, (214,335,0): 157, 160, 105, (214,336,0): 165, 177, 111, (214,337,0): 164, 182, 108, (214,338,0): 165, 185, 113, (214,339,0): 169, 191, 116, (214,340,0): 172, 196, 120, (214,341,0): 174, 201, 124, (214,342,0): 176, 205, 125, (214,343,0): 176, 207, 127, (214,344,0): 177, 211, 127, (214,345,0): 176, 210, 124, (214,346,0): 176, 210, 124, (214,347,0): 180, 215, 125, (214,348,0): 186, 219, 130, (214,349,0): 190, 223, 132, (214,350,0): 193, 224, 131, (214,351,0): 191, 222, 129, (214,352,0): 191, 225, 131, (214,353,0): 191, 226, 132, (214,354,0): 192, 227, 133, (214,355,0): 193, 228, 134, (214,356,0): 193, 228, 134, (214,357,0): 191, 228, 133, (214,358,0): 190, 227, 132, (214,359,0): 189, 226, 131, (214,360,0): 189, 226, 131, (214,361,0): 189, 229, 133, (214,362,0): 190, 230, 134, (214,363,0): 187, 228, 132, (214,364,0): 183, 224, 128, (214,365,0): 180, 221, 125, (214,366,0): 180, 221, 125, (214,367,0): 179, 223, 128, (214,368,0): 181, 224, 132, (214,369,0): 183, 226, 134, (214,370,0): 184, 227, 135, (214,371,0): 181, 226, 133, (214,372,0): 177, 222, 129, (214,373,0): 173, 220, 126, (214,374,0): 173, 220, 126, (214,375,0): 172, 222, 127, (214,376,0): 182, 233, 138, (214,377,0): 183, 237, 141, (214,378,0): 188, 242, 146, (214,379,0): 192, 248, 151, (214,380,0): 196, 252, 155, (214,381,0): 197, 254, 157, (214,382,0): 198, 255, 158, (214,383,0): 199, 254, 160, (214,384,0): 204, 253, 164, (214,385,0): 208, 251, 169, (214,386,0): 210, 251, 173, (214,387,0): 212, 252, 179, (214,388,0): 216, 253, 186, (214,389,0): 219, 254, 190, (214,390,0): 223, 254, 194, (214,391,0): 225, 254, 196, (214,392,0): 227, 255, 197, (214,393,0): 229, 254, 197, (214,394,0): 231, 254, 200, (214,395,0): 234, 254, 205, (214,396,0): 236, 253, 209, (214,397,0): 238, 253, 214, (214,398,0): 241, 252, 220, (214,399,0): 241, 252, 222, (214,400,0): 246, 255, 226, (214,401,0): 249, 255, 227, (214,402,0): 250, 254, 229, (214,403,0): 250, 254, 231, (214,404,0): 252, 254, 233, (214,405,0): 252, 253, 235, (214,406,0): 253, 254, 238, (214,407,0): 253, 254, 238, (214,408,0): 254, 255, 241, (214,409,0): 252, 254, 240, (214,410,0): 250, 254, 239, (214,411,0): 246, 253, 237, (214,412,0): 243, 252, 233, (214,413,0): 238, 252, 229, (214,414,0): 237, 251, 228, (214,415,0): 233, 251, 227, (214,416,0): 226, 251, 229, (214,417,0): 223, 251, 229, (214,418,0): 223, 250, 231, (214,419,0): 226, 250, 234, (214,420,0): 229, 251, 239, (214,421,0): 231, 252, 243, (214,422,0): 234, 255, 248, (214,423,0): 236, 255, 252, (214,424,0): 234, 254, 252, (214,425,0): 233, 255, 252, (214,426,0): 231, 255, 250, (214,427,0): 229, 255, 247, (214,428,0): 225, 255, 243, (214,429,0): 221, 255, 239, (214,430,0): 219, 253, 237, (214,431,0): 214, 253, 234, (214,432,0): 204, 249, 226, (214,433,0): 200, 250, 223, (214,434,0): 198, 251, 225, (214,435,0): 196, 252, 227, (214,436,0): 194, 252, 228, (214,437,0): 194, 252, 230, (214,438,0): 197, 250, 230, (214,439,0): 201, 249, 233, (214,440,0): 193, 235, 221, (214,441,0): 182, 220, 205, (214,442,0): 168, 200, 187, (214,443,0): 158, 189, 174, (214,444,0): 157, 185, 170, (214,445,0): 159, 188, 170, (214,446,0): 160, 189, 171, (214,447,0): 160, 187, 168, (214,448,0): 158, 181, 161, (214,449,0): 159, 181, 160, (214,450,0): 156, 177, 158, (214,451,0): 151, 172, 155, (214,452,0): 143, 166, 150, (214,453,0): 139, 161, 148, (214,454,0): 138, 161, 151, (214,455,0): 137, 163, 154, (214,456,0): 140, 169, 164, (214,457,0): 141, 172, 167, (214,458,0): 142, 176, 175, (214,459,0): 145, 181, 181, (214,460,0): 147, 185, 186, (214,461,0): 149, 189, 191, (214,462,0): 149, 190, 192, (214,463,0): 150, 191, 195, (214,464,0): 145, 182, 190, (214,465,0): 145, 179, 188, (214,466,0): 144, 178, 187, (214,467,0): 146, 180, 189, (214,468,0): 150, 183, 190, (214,469,0): 151, 184, 191, (214,470,0): 153, 182, 190, (214,471,0): 151, 180, 188, (214,472,0): 154, 181, 188, (214,473,0): 152, 179, 186, (214,474,0): 151, 174, 180, (214,475,0): 146, 169, 175, (214,476,0): 144, 164, 171, (214,477,0): 140, 160, 167, (214,478,0): 138, 159, 164, (214,479,0): 135, 159, 163, (214,480,0): 133, 157, 161, (214,481,0): 132, 157, 161, (214,482,0): 129, 157, 161, (214,483,0): 128, 156, 160, (214,484,0): 126, 155, 159, (214,485,0): 125, 154, 158, (214,486,0): 124, 155, 158, (214,487,0): 121, 154, 159, (214,488,0): 120, 151, 156, (214,489,0): 121, 150, 158, (214,490,0): 122, 151, 159, (214,491,0): 123, 150, 159, (214,492,0): 124, 148, 160, (214,493,0): 125, 147, 160, (214,494,0): 126, 145, 159, (214,495,0): 126, 144, 156, (214,496,0): 123, 140, 148, (214,497,0): 125, 140, 145, (214,498,0): 124, 139, 144, (214,499,0): 122, 137, 140, (214,500,0): 119, 134, 137, (214,501,0): 116, 130, 131, (214,502,0): 113, 127, 128, (214,503,0): 113, 125, 125, (214,504,0): 117, 129, 127, (214,505,0): 116, 128, 124, (214,506,0): 115, 127, 123, (214,507,0): 114, 125, 119, (214,508,0): 112, 123, 117, (214,509,0): 111, 122, 114, (214,510,0): 111, 121, 113, (214,511,0): 112, 119, 111, (214,512,0): 116, 119, 112, (214,513,0): 114, 115, 109, (214,514,0): 111, 112, 106, (214,515,0): 107, 108, 103, (214,516,0): 104, 105, 100, (214,517,0): 103, 104, 99, (214,518,0): 102, 103, 98, (214,519,0): 102, 102, 100, (214,520,0): 97, 97, 95, (214,521,0): 96, 96, 96, (214,522,0): 94, 94, 94, (214,523,0): 91, 91, 91, (214,524,0): 90, 90, 90, (214,525,0): 89, 89, 91, (214,526,0): 89, 89, 91, (214,527,0): 90, 90, 90, (214,528,0): 90, 90, 88, (214,529,0): 90, 91, 86, (214,530,0): 89, 89, 87, (214,531,0): 90, 90, 88, (214,532,0): 90, 92, 89, (214,533,0): 92, 94, 91, (214,534,0): 92, 96, 95, (214,535,0): 93, 97, 96, (214,536,0): 94, 98, 99, (214,537,0): 94, 98, 99, (214,538,0): 93, 99, 99, (214,539,0): 94, 100, 100, (214,540,0): 94, 102, 104, (214,541,0): 97, 105, 107, (214,542,0): 100, 108, 110, (214,543,0): 101, 111, 113, (214,544,0): 101, 116, 119, (214,545,0): 102, 120, 124, (214,546,0): 107, 125, 129, (214,547,0): 111, 128, 135, (214,548,0): 115, 132, 139, (214,549,0): 116, 133, 140, (214,550,0): 116, 133, 141, (214,551,0): 115, 132, 140, (214,552,0): 111, 128, 136, (214,553,0): 108, 125, 135, (214,554,0): 104, 121, 131, (214,555,0): 102, 119, 129, (214,556,0): 101, 117, 130, (214,557,0): 103, 119, 132, (214,558,0): 106, 122, 135, (214,559,0): 108, 124, 139, (214,560,0): 106, 123, 139, (214,561,0): 106, 125, 142, (214,562,0): 108, 125, 145, (214,563,0): 108, 125, 145, (214,564,0): 107, 122, 145, (214,565,0): 104, 119, 142, (214,566,0): 102, 114, 138, (214,567,0): 100, 112, 134, (214,568,0): 99, 110, 130, (214,569,0): 98, 106, 125, (214,570,0): 97, 104, 122, (214,571,0): 96, 104, 117, (214,572,0): 98, 104, 116, (214,573,0): 97, 104, 114, (214,574,0): 95, 99, 108, (214,575,0): 93, 96, 105, (214,576,0): 90, 89, 97, (214,577,0): 89, 88, 96, (214,578,0): 89, 86, 93, (214,579,0): 87, 84, 91, (214,580,0): 86, 83, 90, (214,581,0): 84, 81, 88, (214,582,0): 85, 80, 86, (214,583,0): 84, 79, 85, (214,584,0): 81, 76, 80, (214,585,0): 83, 77, 81, (214,586,0): 83, 77, 81, (214,587,0): 86, 77, 82, (214,588,0): 87, 78, 81, (214,589,0): 87, 78, 81, (214,590,0): 88, 79, 82, (214,591,0): 89, 78, 82, (214,592,0): 91, 76, 81, (214,593,0): 90, 73, 79, (214,594,0): 90, 71, 77, (214,595,0): 85, 68, 74, (214,596,0): 83, 64, 70, (214,597,0): 78, 61, 67, (214,598,0): 77, 58, 64, (214,599,0): 74, 57, 63, (215,0,0): 39, 27, 41, (215,1,0): 39, 27, 41, (215,2,0): 40, 28, 42, (215,3,0): 40, 28, 42, (215,4,0): 41, 29, 43, (215,5,0): 41, 29, 43, (215,6,0): 42, 30, 44, (215,7,0): 42, 30, 44, (215,8,0): 41, 29, 43, (215,9,0): 41, 29, 43, (215,10,0): 41, 29, 43, (215,11,0): 42, 30, 44, (215,12,0): 42, 30, 44, (215,13,0): 43, 31, 45, (215,14,0): 43, 31, 45, (215,15,0): 43, 31, 43, (215,16,0): 45, 33, 45, (215,17,0): 45, 33, 43, (215,18,0): 45, 33, 43, (215,19,0): 45, 33, 43, (215,20,0): 45, 33, 43, (215,21,0): 45, 33, 43, (215,22,0): 46, 33, 43, (215,23,0): 46, 33, 43, (215,24,0): 50, 34, 45, (215,25,0): 50, 34, 45, (215,26,0): 51, 33, 45, (215,27,0): 52, 34, 46, (215,28,0): 52, 34, 46, (215,29,0): 53, 35, 47, (215,30,0): 53, 35, 47, (215,31,0): 53, 35, 47, (215,32,0): 54, 37, 47, (215,33,0): 54, 37, 47, (215,34,0): 54, 37, 47, (215,35,0): 54, 37, 47, (215,36,0): 54, 37, 47, (215,37,0): 54, 37, 47, (215,38,0): 54, 37, 47, (215,39,0): 54, 37, 47, (215,40,0): 54, 37, 47, (215,41,0): 54, 37, 47, (215,42,0): 54, 37, 47, (215,43,0): 54, 37, 47, (215,44,0): 54, 37, 47, (215,45,0): 54, 37, 47, (215,46,0): 54, 37, 47, (215,47,0): 54, 37, 47, (215,48,0): 55, 38, 48, (215,49,0): 55, 38, 48, (215,50,0): 55, 38, 48, (215,51,0): 55, 38, 48, (215,52,0): 57, 37, 46, (215,53,0): 57, 37, 46, (215,54,0): 57, 38, 44, (215,55,0): 57, 38, 44, (215,56,0): 58, 37, 44, (215,57,0): 58, 37, 44, (215,58,0): 59, 36, 42, (215,59,0): 59, 36, 42, (215,60,0): 59, 37, 40, (215,61,0): 59, 37, 40, (215,62,0): 61, 36, 40, (215,63,0): 61, 36, 40, (215,64,0): 62, 39, 45, (215,65,0): 62, 39, 45, (215,66,0): 62, 40, 43, (215,67,0): 62, 40, 43, (215,68,0): 64, 39, 43, (215,69,0): 64, 39, 43, (215,70,0): 64, 39, 42, (215,71,0): 64, 39, 42, (215,72,0): 65, 39, 40, (215,73,0): 65, 39, 40, (215,74,0): 67, 38, 40, (215,75,0): 67, 38, 40, (215,76,0): 67, 39, 38, (215,77,0): 67, 39, 38, (215,78,0): 68, 38, 38, (215,79,0): 68, 38, 38, (215,80,0): 68, 37, 42, (215,81,0): 68, 37, 42, (215,82,0): 68, 37, 42, (215,83,0): 68, 37, 42, (215,84,0): 68, 37, 42, (215,85,0): 68, 37, 42, (215,86,0): 68, 37, 42, (215,87,0): 68, 37, 42, (215,88,0): 65, 34, 39, (215,89,0): 66, 35, 40, (215,90,0): 66, 35, 40, (215,91,0): 66, 35, 40, (215,92,0): 66, 35, 40, (215,93,0): 65, 34, 39, (215,94,0): 63, 32, 37, (215,95,0): 61, 32, 36, (215,96,0): 65, 36, 40, (215,97,0): 62, 36, 39, (215,98,0): 61, 35, 38, (215,99,0): 60, 34, 37, (215,100,0): 58, 32, 35, (215,101,0): 57, 31, 34, (215,102,0): 56, 30, 33, (215,103,0): 55, 29, 32, (215,104,0): 57, 31, 34, (215,105,0): 57, 31, 34, (215,106,0): 57, 31, 34, (215,107,0): 56, 30, 33, (215,108,0): 56, 30, 33, (215,109,0): 55, 29, 32, (215,110,0): 55, 29, 32, (215,111,0): 55, 29, 32, (215,112,0): 56, 30, 33, (215,113,0): 57, 31, 34, (215,114,0): 57, 31, 34, (215,115,0): 57, 31, 34, (215,116,0): 56, 31, 34, (215,117,0): 54, 29, 32, (215,118,0): 53, 28, 31, (215,119,0): 49, 27, 29, (215,120,0): 44, 22, 24, (215,121,0): 44, 22, 24, (215,122,0): 44, 24, 25, (215,123,0): 44, 24, 25, (215,124,0): 45, 25, 26, (215,125,0): 44, 26, 26, (215,126,0): 45, 27, 27, (215,127,0): 46, 26, 27, (215,128,0): 47, 25, 27, (215,129,0): 47, 25, 27, (215,130,0): 47, 25, 27, (215,131,0): 47, 25, 27, (215,132,0): 47, 26, 25, (215,133,0): 47, 26, 25, (215,134,0): 47, 26, 25, (215,135,0): 47, 26, 25, (215,136,0): 50, 29, 26, (215,137,0): 50, 29, 26, (215,138,0): 51, 30, 25, (215,139,0): 51, 30, 25, (215,140,0): 52, 31, 26, (215,141,0): 52, 31, 26, (215,142,0): 53, 33, 26, (215,143,0): 53, 33, 26, (215,144,0): 51, 30, 27, (215,145,0): 51, 30, 27, (215,146,0): 51, 30, 27, (215,147,0): 51, 30, 27, (215,148,0): 51, 30, 27, (215,149,0): 51, 30, 27, (215,150,0): 51, 30, 27, (215,151,0): 51, 30, 27, (215,152,0): 50, 29, 26, (215,153,0): 50, 29, 26, (215,154,0): 50, 29, 26, (215,155,0): 50, 29, 26, (215,156,0): 50, 29, 26, (215,157,0): 50, 29, 26, (215,158,0): 50, 29, 26, (215,159,0): 50, 29, 26, (215,160,0): 54, 29, 25, (215,161,0): 54, 29, 25, (215,162,0): 54, 29, 25, (215,163,0): 54, 29, 25, (215,164,0): 54, 29, 25, (215,165,0): 54, 29, 25, (215,166,0): 54, 29, 25, (215,167,0): 54, 29, 25, (215,168,0): 54, 29, 25, (215,169,0): 54, 29, 25, (215,170,0): 53, 28, 24, (215,171,0): 53, 28, 24, (215,172,0): 53, 28, 24, (215,173,0): 55, 30, 26, (215,174,0): 56, 31, 27, (215,175,0): 57, 32, 27, (215,176,0): 59, 34, 29, (215,177,0): 59, 34, 27, (215,178,0): 58, 33, 26, (215,179,0): 58, 33, 26, (215,180,0): 57, 32, 25, (215,181,0): 57, 32, 25, (215,182,0): 56, 31, 24, (215,183,0): 56, 31, 24, (215,184,0): 55, 30, 23, (215,185,0): 55, 30, 23, (215,186,0): 55, 30, 23, (215,187,0): 55, 30, 23, (215,188,0): 55, 30, 23, (215,189,0): 55, 30, 23, (215,190,0): 55, 30, 23, (215,191,0): 55, 30, 23, (215,192,0): 51, 26, 19, (215,193,0): 51, 26, 19, (215,194,0): 52, 27, 20, (215,195,0): 53, 28, 21, (215,196,0): 53, 28, 21, (215,197,0): 54, 29, 22, (215,198,0): 55, 30, 23, (215,199,0): 55, 30, 23, (215,200,0): 53, 28, 21, (215,201,0): 53, 28, 21, (215,202,0): 54, 29, 22, (215,203,0): 54, 29, 22, (215,204,0): 55, 30, 23, (215,205,0): 55, 30, 23, (215,206,0): 56, 31, 24, (215,207,0): 56, 31, 24, (215,208,0): 62, 33, 25, (215,209,0): 62, 33, 25, (215,210,0): 62, 33, 25, (215,211,0): 62, 34, 23, (215,212,0): 62, 34, 23, (215,213,0): 62, 34, 23, (215,214,0): 62, 34, 22, (215,215,0): 62, 34, 22, (215,216,0): 61, 33, 21, (215,217,0): 61, 33, 19, (215,218,0): 62, 34, 20, (215,219,0): 64, 36, 22, (215,220,0): 66, 39, 22, (215,221,0): 69, 42, 25, (215,222,0): 72, 45, 28, (215,223,0): 75, 46, 28, (215,224,0): 77, 46, 26, (215,225,0): 79, 47, 26, (215,226,0): 80, 48, 25, (215,227,0): 81, 49, 24, (215,228,0): 83, 52, 24, (215,229,0): 84, 53, 24, (215,230,0): 86, 55, 24, (215,231,0): 86, 56, 22, (215,232,0): 88, 58, 22, (215,233,0): 88, 58, 22, (215,234,0): 87, 57, 23, (215,235,0): 87, 57, 23, (215,236,0): 86, 55, 24, (215,237,0): 86, 55, 24, (215,238,0): 86, 55, 26, (215,239,0): 85, 54, 26, (215,240,0): 84, 54, 30, (215,241,0): 83, 52, 31, (215,242,0): 81, 53, 31, (215,243,0): 80, 52, 30, (215,244,0): 78, 50, 26, (215,245,0): 77, 49, 25, (215,246,0): 76, 50, 25, (215,247,0): 75, 49, 22, (215,248,0): 79, 55, 27, (215,249,0): 79, 55, 27, (215,250,0): 80, 56, 28, (215,251,0): 80, 57, 26, (215,252,0): 78, 57, 26, (215,253,0): 79, 58, 27, (215,254,0): 79, 58, 27, (215,255,0): 79, 58, 27, (215,256,0): 79, 57, 33, (215,257,0): 80, 58, 34, (215,258,0): 82, 61, 34, (215,259,0): 86, 65, 34, (215,260,0): 93, 70, 38, (215,261,0): 98, 76, 39, (215,262,0): 102, 80, 41, (215,263,0): 105, 83, 42, (215,264,0): 109, 86, 44, (215,265,0): 107, 84, 42, (215,266,0): 105, 80, 39, (215,267,0): 103, 78, 37, (215,268,0): 103, 78, 38, (215,269,0): 106, 81, 41, (215,270,0): 112, 84, 47, (215,271,0): 114, 86, 47, (215,272,0): 111, 82, 38, (215,273,0): 114, 86, 38, (215,274,0): 118, 90, 42, (215,275,0): 122, 94, 46, (215,276,0): 122, 95, 48, (215,277,0): 121, 94, 47, (215,278,0): 118, 91, 44, (215,279,0): 115, 88, 43, (215,280,0): 116, 92, 46, (215,281,0): 114, 90, 46, (215,282,0): 111, 88, 44, (215,283,0): 110, 87, 43, (215,284,0): 110, 87, 43, (215,285,0): 111, 88, 44, (215,286,0): 112, 91, 48, (215,287,0): 114, 93, 50, (215,288,0): 115, 96, 53, (215,289,0): 114, 95, 53, (215,290,0): 113, 94, 52, (215,291,0): 111, 92, 52, (215,292,0): 107, 89, 49, (215,293,0): 105, 87, 47, (215,294,0): 104, 86, 48, (215,295,0): 103, 85, 49, (215,296,0): 97, 81, 47, (215,297,0): 97, 81, 47, (215,298,0): 97, 82, 49, (215,299,0): 98, 83, 50, (215,300,0): 99, 84, 53, (215,301,0): 100, 85, 54, (215,302,0): 100, 87, 55, (215,303,0): 100, 87, 55, (215,304,0): 101, 86, 57, (215,305,0): 101, 86, 57, (215,306,0): 100, 84, 58, (215,307,0): 99, 83, 57, (215,308,0): 98, 82, 56, (215,309,0): 97, 81, 55, (215,310,0): 96, 80, 55, (215,311,0): 96, 80, 55, (215,312,0): 94, 78, 55, (215,313,0): 94, 78, 55, (215,314,0): 95, 79, 56, (215,315,0): 97, 81, 58, (215,316,0): 100, 83, 63, (215,317,0): 103, 86, 66, (215,318,0): 106, 89, 69, (215,319,0): 108, 92, 69, (215,320,0): 109, 93, 68, (215,321,0): 112, 96, 70, (215,322,0): 114, 98, 72, (215,323,0): 112, 96, 70, (215,324,0): 107, 93, 67, (215,325,0): 103, 88, 65, (215,326,0): 99, 86, 67, (215,327,0): 99, 86, 70, (215,328,0): 100, 86, 73, (215,329,0): 99, 87, 73, (215,330,0): 105, 93, 77, (215,331,0): 111, 103, 82, (215,332,0): 114, 107, 79, (215,333,0): 119, 113, 79, (215,334,0): 136, 131, 91, (215,335,0): 152, 152, 102, (215,336,0): 163, 173, 110, (215,337,0): 162, 178, 107, (215,338,0): 164, 181, 110, (215,339,0): 166, 186, 114, (215,340,0): 170, 192, 117, (215,341,0): 172, 199, 122, (215,342,0): 175, 204, 124, (215,343,0): 176, 207, 127, (215,344,0): 178, 212, 128, (215,345,0): 176, 210, 126, (215,346,0): 177, 211, 125, (215,347,0): 181, 215, 128, (215,348,0): 189, 222, 133, (215,349,0): 193, 226, 137, (215,350,0): 196, 226, 136, (215,351,0): 192, 225, 134, (215,352,0): 191, 226, 136, (215,353,0): 191, 226, 136, (215,354,0): 191, 226, 136, (215,355,0): 191, 226, 136, (215,356,0): 189, 225, 135, (215,357,0): 188, 224, 134, (215,358,0): 187, 223, 133, (215,359,0): 186, 222, 132, (215,360,0): 185, 224, 133, (215,361,0): 187, 226, 135, (215,362,0): 187, 228, 136, (215,363,0): 185, 226, 134, (215,364,0): 181, 222, 130, (215,365,0): 178, 219, 127, (215,366,0): 176, 219, 127, (215,367,0): 177, 220, 130, (215,368,0): 180, 223, 134, (215,369,0): 181, 225, 136, (215,370,0): 183, 227, 138, (215,371,0): 180, 226, 136, (215,372,0): 176, 222, 132, (215,373,0): 171, 220, 129, (215,374,0): 170, 219, 128, (215,375,0): 170, 221, 129, (215,376,0): 178, 231, 139, (215,377,0): 180, 235, 142, (215,378,0): 185, 240, 147, (215,379,0): 190, 247, 153, (215,380,0): 194, 251, 157, (215,381,0): 194, 253, 159, (215,382,0): 195, 254, 160, (215,383,0): 197, 253, 162, (215,384,0): 203, 253, 168, (215,385,0): 204, 251, 171, (215,386,0): 208, 252, 177, (215,387,0): 211, 252, 182, (215,388,0): 214, 253, 190, (215,389,0): 218, 254, 193, (215,390,0): 221, 254, 199, (215,391,0): 224, 254, 200, (215,392,0): 225, 254, 200, (215,393,0): 227, 254, 203, (215,394,0): 230, 254, 206, (215,395,0): 232, 253, 210, (215,396,0): 235, 253, 215, (215,397,0): 236, 253, 219, (215,398,0): 237, 251, 225, (215,399,0): 239, 251, 227, (215,400,0): 243, 255, 231, (215,401,0): 246, 255, 234, (215,402,0): 247, 255, 234, (215,403,0): 248, 255, 237, (215,404,0): 250, 254, 239, (215,405,0): 251, 255, 241, (215,406,0): 251, 254, 243, (215,407,0): 251, 254, 245, (215,408,0): 252, 255, 246, (215,409,0): 249, 255, 245, (215,410,0): 247, 254, 246, (215,411,0): 243, 253, 242, (215,412,0): 240, 252, 238, (215,413,0): 237, 251, 234, (215,414,0): 234, 251, 233, (215,415,0): 230, 251, 232, (215,416,0): 222, 251, 233, (215,417,0): 218, 251, 234, (215,418,0): 219, 250, 235, (215,419,0): 219, 249, 237, (215,420,0): 224, 250, 241, (215,421,0): 227, 252, 246, (215,422,0): 230, 255, 252, (215,423,0): 232, 255, 254, (215,424,0): 231, 255, 255, (215,425,0): 231, 255, 255, (215,426,0): 230, 255, 253, (215,427,0): 227, 255, 252, (215,428,0): 224, 255, 249, (215,429,0): 221, 254, 245, (215,430,0): 217, 253, 243, (215,431,0): 212, 253, 239, (215,432,0): 201, 248, 230, (215,433,0): 200, 251, 232, (215,434,0): 201, 254, 234, (215,435,0): 199, 255, 237, (215,436,0): 198, 255, 239, (215,437,0): 198, 255, 238, (215,438,0): 198, 252, 238, (215,439,0): 198, 248, 236, (215,440,0): 190, 232, 222, (215,441,0): 179, 217, 206, (215,442,0): 165, 197, 186, (215,443,0): 153, 183, 171, (215,444,0): 153, 181, 167, (215,445,0): 155, 183, 168, (215,446,0): 156, 184, 169, (215,447,0): 157, 184, 167, (215,448,0): 157, 178, 161, (215,449,0): 159, 177, 161, (215,450,0): 154, 175, 160, (215,451,0): 149, 170, 155, (215,452,0): 142, 164, 151, (215,453,0): 137, 161, 148, (215,454,0): 135, 161, 152, (215,455,0): 136, 163, 156, (215,456,0): 138, 169, 164, (215,457,0): 140, 172, 169, (215,458,0): 141, 177, 177, (215,459,0): 143, 181, 182, (215,460,0): 147, 187, 189, (215,461,0): 149, 190, 194, (215,462,0): 151, 192, 198, (215,463,0): 152, 193, 199, (215,464,0): 145, 182, 191, (215,465,0): 145, 179, 189, (215,466,0): 144, 178, 190, (215,467,0): 145, 179, 189, (215,468,0): 149, 181, 192, (215,469,0): 150, 183, 192, (215,470,0): 152, 180, 192, (215,471,0): 150, 178, 189, (215,472,0): 152, 179, 190, (215,473,0): 149, 176, 185, (215,474,0): 147, 169, 180, (215,475,0): 142, 165, 173, (215,476,0): 140, 160, 171, (215,477,0): 137, 157, 166, (215,478,0): 136, 156, 165, (215,479,0): 135, 155, 162, (215,480,0): 130, 153, 161, (215,481,0): 129, 154, 159, (215,482,0): 127, 154, 161, (215,483,0): 127, 154, 161, (215,484,0): 125, 154, 160, (215,485,0): 124, 155, 160, (215,486,0): 122, 155, 162, (215,487,0): 122, 155, 162, (215,488,0): 119, 149, 157, (215,489,0): 119, 149, 159, (215,490,0): 120, 148, 159, (215,491,0): 120, 148, 159, (215,492,0): 121, 147, 160, (215,493,0): 124, 147, 161, (215,494,0): 125, 147, 161, (215,495,0): 127, 146, 160, (215,496,0): 125, 143, 153, (215,497,0): 125, 144, 150, (215,498,0): 126, 143, 150, (215,499,0): 124, 142, 146, (215,500,0): 120, 138, 142, (215,501,0): 118, 133, 136, (215,502,0): 114, 129, 132, (215,503,0): 111, 127, 127, (215,504,0): 116, 132, 131, (215,505,0): 116, 131, 128, (215,506,0): 115, 130, 127, (215,507,0): 115, 127, 123, (215,508,0): 112, 124, 120, (215,509,0): 110, 123, 116, (215,510,0): 109, 122, 115, (215,511,0): 110, 120, 112, (215,512,0): 118, 123, 117, (215,513,0): 117, 119, 114, (215,514,0): 113, 114, 109, (215,515,0): 107, 109, 104, (215,516,0): 104, 105, 100, (215,517,0): 100, 102, 99, (215,518,0): 100, 100, 98, (215,519,0): 98, 100, 97, (215,520,0): 96, 96, 96, (215,521,0): 94, 96, 95, (215,522,0): 93, 93, 93, (215,523,0): 90, 91, 93, (215,524,0): 90, 90, 92, (215,525,0): 89, 90, 92, (215,526,0): 90, 90, 92, (215,527,0): 89, 90, 92, (215,528,0): 90, 90, 88, (215,529,0): 88, 90, 87, (215,530,0): 89, 89, 87, (215,531,0): 89, 91, 88, (215,532,0): 90, 92, 89, (215,533,0): 90, 94, 93, (215,534,0): 92, 96, 95, (215,535,0): 94, 98, 97, (215,536,0): 96, 100, 101, (215,537,0): 94, 100, 100, (215,538,0): 93, 99, 99, (215,539,0): 91, 99, 101, (215,540,0): 92, 100, 102, (215,541,0): 94, 102, 104, (215,542,0): 96, 104, 106, (215,543,0): 96, 107, 109, (215,544,0): 102, 117, 122, (215,545,0): 103, 120, 127, (215,546,0): 108, 125, 132, (215,547,0): 113, 130, 137, (215,548,0): 116, 133, 140, (215,549,0): 117, 134, 142, (215,550,0): 117, 134, 142, (215,551,0): 116, 133, 141, (215,552,0): 112, 129, 139, (215,553,0): 110, 127, 137, (215,554,0): 106, 123, 133, (215,555,0): 103, 119, 132, (215,556,0): 103, 119, 132, (215,557,0): 104, 120, 133, (215,558,0): 107, 123, 136, (215,559,0): 108, 126, 140, (215,560,0): 106, 123, 139, (215,561,0): 106, 125, 142, (215,562,0): 107, 124, 144, (215,563,0): 107, 124, 144, (215,564,0): 106, 121, 144, (215,565,0): 103, 118, 141, (215,566,0): 101, 113, 137, (215,567,0): 100, 111, 133, (215,568,0): 104, 112, 133, (215,569,0): 101, 109, 128, (215,570,0): 98, 105, 123, (215,571,0): 97, 105, 118, (215,572,0): 99, 105, 117, (215,573,0): 99, 106, 116, (215,574,0): 99, 103, 112, (215,575,0): 98, 101, 110, (215,576,0): 93, 92, 100, (215,577,0): 93, 90, 99, (215,578,0): 92, 89, 96, (215,579,0): 91, 88, 95, (215,580,0): 89, 86, 93, (215,581,0): 89, 84, 91, (215,582,0): 88, 83, 89, (215,583,0): 89, 82, 89, (215,584,0): 83, 77, 81, (215,585,0): 83, 77, 81, (215,586,0): 86, 77, 82, (215,587,0): 87, 78, 83, (215,588,0): 88, 79, 82, (215,589,0): 88, 79, 82, (215,590,0): 90, 79, 83, (215,591,0): 91, 79, 83, (215,592,0): 92, 75, 81, (215,593,0): 93, 74, 80, (215,594,0): 90, 71, 77, (215,595,0): 87, 68, 74, (215,596,0): 83, 64, 70, (215,597,0): 80, 61, 67, (215,598,0): 78, 59, 65, (215,599,0): 76, 57, 63, (216,0,0): 42, 30, 44, (216,1,0): 42, 30, 44, (216,2,0): 42, 30, 44, (216,3,0): 42, 30, 44, (216,4,0): 42, 30, 44, (216,5,0): 42, 30, 44, (216,6,0): 42, 30, 44, (216,7,0): 42, 30, 44, (216,8,0): 44, 32, 46, (216,9,0): 44, 32, 46, (216,10,0): 44, 32, 46, (216,11,0): 45, 33, 47, (216,12,0): 45, 33, 47, (216,13,0): 46, 34, 48, (216,14,0): 46, 34, 48, (216,15,0): 46, 34, 46, (216,16,0): 48, 36, 48, (216,17,0): 48, 36, 46, (216,18,0): 48, 36, 46, (216,19,0): 48, 36, 46, (216,20,0): 48, 36, 46, (216,21,0): 48, 36, 46, (216,22,0): 49, 36, 46, (216,23,0): 49, 36, 46, (216,24,0): 50, 34, 45, (216,25,0): 50, 34, 45, (216,26,0): 51, 33, 45, (216,27,0): 52, 34, 46, (216,28,0): 52, 34, 46, (216,29,0): 53, 35, 47, (216,30,0): 53, 35, 47, (216,31,0): 53, 35, 47, (216,32,0): 53, 36, 46, (216,33,0): 53, 36, 46, (216,34,0): 54, 37, 47, (216,35,0): 55, 38, 48, (216,36,0): 55, 38, 48, (216,37,0): 56, 39, 49, (216,38,0): 57, 40, 50, (216,39,0): 57, 40, 50, (216,40,0): 55, 38, 48, (216,41,0): 55, 38, 48, (216,42,0): 55, 38, 48, (216,43,0): 55, 38, 48, (216,44,0): 55, 38, 48, (216,45,0): 55, 38, 48, (216,46,0): 55, 38, 48, (216,47,0): 55, 38, 48, (216,48,0): 55, 38, 48, (216,49,0): 55, 38, 48, (216,50,0): 55, 38, 48, (216,51,0): 55, 38, 48, (216,52,0): 57, 37, 46, (216,53,0): 57, 37, 46, (216,54,0): 57, 38, 44, (216,55,0): 57, 38, 44, (216,56,0): 57, 36, 43, (216,57,0): 57, 36, 43, (216,58,0): 58, 35, 41, (216,59,0): 59, 36, 42, (216,60,0): 59, 37, 40, (216,61,0): 60, 38, 41, (216,62,0): 62, 37, 41, (216,63,0): 63, 38, 42, (216,64,0): 59, 36, 42, (216,65,0): 60, 37, 43, (216,66,0): 62, 37, 41, (216,67,0): 62, 37, 41, (216,68,0): 63, 38, 42, (216,69,0): 64, 39, 43, (216,70,0): 65, 39, 42, (216,71,0): 65, 39, 42, (216,72,0): 66, 37, 39, (216,73,0): 67, 38, 40, (216,74,0): 67, 38, 40, (216,75,0): 68, 39, 41, (216,76,0): 70, 40, 40, (216,77,0): 71, 41, 41, (216,78,0): 71, 41, 41, (216,79,0): 72, 42, 42, (216,80,0): 68, 37, 42, (216,81,0): 68, 37, 42, (216,82,0): 67, 36, 41, (216,83,0): 67, 36, 41, (216,84,0): 66, 35, 40, (216,85,0): 66, 35, 40, (216,86,0): 65, 34, 39, (216,87,0): 65, 34, 39, (216,88,0): 66, 35, 40, (216,89,0): 66, 35, 40, (216,90,0): 66, 35, 40, (216,91,0): 65, 34, 39, (216,92,0): 65, 34, 39, (216,93,0): 64, 33, 38, (216,94,0): 64, 33, 38, (216,95,0): 63, 34, 38, (216,96,0): 61, 32, 36, (216,97,0): 59, 33, 36, (216,98,0): 58, 32, 35, (216,99,0): 58, 32, 35, (216,100,0): 57, 31, 34, (216,101,0): 57, 31, 34, (216,102,0): 56, 30, 33, (216,103,0): 56, 30, 33, (216,104,0): 57, 31, 34, (216,105,0): 57, 31, 34, (216,106,0): 57, 31, 34, (216,107,0): 57, 31, 34, (216,108,0): 57, 31, 34, (216,109,0): 57, 31, 34, (216,110,0): 57, 31, 34, (216,111,0): 57, 31, 34, (216,112,0): 58, 29, 31, (216,113,0): 58, 29, 31, (216,114,0): 56, 30, 31, (216,115,0): 56, 30, 31, (216,116,0): 56, 30, 31, (216,117,0): 55, 31, 31, (216,118,0): 55, 31, 31, (216,119,0): 55, 31, 31, (216,120,0): 50, 29, 28, (216,121,0): 47, 26, 25, (216,122,0): 43, 22, 21, (216,123,0): 39, 19, 18, (216,124,0): 38, 18, 17, (216,125,0): 41, 21, 20, (216,126,0): 45, 25, 24, (216,127,0): 47, 27, 26, (216,128,0): 47, 25, 27, (216,129,0): 47, 25, 27, (216,130,0): 47, 25, 27, (216,131,0): 47, 25, 27, (216,132,0): 47, 26, 25, (216,133,0): 47, 26, 25, (216,134,0): 47, 26, 25, (216,135,0): 47, 26, 25, (216,136,0): 50, 29, 26, (216,137,0): 50, 29, 26, (216,138,0): 51, 30, 25, (216,139,0): 51, 30, 25, (216,140,0): 52, 31, 26, (216,141,0): 52, 31, 26, (216,142,0): 52, 32, 25, (216,143,0): 53, 33, 26, (216,144,0): 50, 29, 26, (216,145,0): 50, 29, 26, (216,146,0): 50, 29, 26, (216,147,0): 50, 29, 26, (216,148,0): 50, 29, 26, (216,149,0): 50, 29, 26, (216,150,0): 50, 29, 26, (216,151,0): 50, 29, 26, (216,152,0): 50, 29, 26, (216,153,0): 50, 29, 26, (216,154,0): 50, 29, 26, (216,155,0): 50, 29, 26, (216,156,0): 50, 29, 26, (216,157,0): 50, 29, 26, (216,158,0): 50, 29, 26, (216,159,0): 50, 29, 26, (216,160,0): 55, 30, 26, (216,161,0): 55, 30, 26, (216,162,0): 55, 30, 26, (216,163,0): 55, 30, 26, (216,164,0): 55, 30, 26, (216,165,0): 55, 30, 26, (216,166,0): 55, 30, 26, (216,167,0): 55, 30, 26, (216,168,0): 55, 30, 26, (216,169,0): 55, 30, 26, (216,170,0): 55, 30, 26, (216,171,0): 55, 30, 26, (216,172,0): 55, 30, 26, (216,173,0): 55, 30, 26, (216,174,0): 55, 30, 26, (216,175,0): 55, 30, 25, (216,176,0): 55, 30, 25, (216,177,0): 55, 30, 23, (216,178,0): 55, 30, 23, (216,179,0): 55, 30, 23, (216,180,0): 55, 30, 23, (216,181,0): 55, 30, 23, (216,182,0): 55, 30, 23, (216,183,0): 55, 30, 23, (216,184,0): 57, 32, 25, (216,185,0): 57, 32, 25, (216,186,0): 57, 32, 25, (216,187,0): 56, 31, 24, (216,188,0): 56, 31, 24, (216,189,0): 55, 30, 23, (216,190,0): 55, 30, 23, (216,191,0): 55, 30, 23, (216,192,0): 55, 30, 23, (216,193,0): 55, 30, 23, (216,194,0): 55, 30, 23, (216,195,0): 55, 30, 23, (216,196,0): 55, 30, 23, (216,197,0): 55, 30, 23, (216,198,0): 55, 30, 23, (216,199,0): 55, 30, 23, (216,200,0): 55, 30, 23, (216,201,0): 55, 30, 23, (216,202,0): 55, 30, 23, (216,203,0): 55, 30, 23, (216,204,0): 55, 30, 23, (216,205,0): 55, 30, 23, (216,206,0): 55, 30, 23, (216,207,0): 55, 30, 23, (216,208,0): 59, 30, 22, (216,209,0): 59, 31, 20, (216,210,0): 60, 32, 21, (216,211,0): 60, 32, 21, (216,212,0): 61, 33, 22, (216,213,0): 61, 33, 21, (216,214,0): 62, 34, 22, (216,215,0): 62, 34, 22, (216,216,0): 66, 38, 24, (216,217,0): 66, 38, 24, (216,218,0): 65, 37, 23, (216,219,0): 65, 38, 21, (216,220,0): 67, 40, 23, (216,221,0): 70, 43, 26, (216,222,0): 73, 46, 27, (216,223,0): 76, 47, 29, (216,224,0): 75, 44, 23, (216,225,0): 77, 45, 22, (216,226,0): 80, 48, 25, (216,227,0): 82, 50, 25, (216,228,0): 85, 54, 26, (216,229,0): 88, 57, 28, (216,230,0): 90, 59, 28, (216,231,0): 92, 62, 28, (216,232,0): 89, 59, 25, (216,233,0): 89, 59, 25, (216,234,0): 88, 58, 24, (216,235,0): 87, 57, 23, (216,236,0): 86, 55, 24, (216,237,0): 85, 54, 25, (216,238,0): 84, 53, 25, (216,239,0): 84, 52, 27, (216,240,0): 82, 52, 28, (216,241,0): 82, 51, 30, (216,242,0): 80, 52, 30, (216,243,0): 81, 53, 31, (216,244,0): 81, 53, 29, (216,245,0): 81, 53, 29, (216,246,0): 80, 54, 27, (216,247,0): 80, 54, 27, (216,248,0): 83, 59, 31, (216,249,0): 83, 60, 29, (216,250,0): 84, 61, 30, (216,251,0): 84, 61, 29, (216,252,0): 82, 62, 29, (216,253,0): 82, 62, 29, (216,254,0): 81, 61, 28, (216,255,0): 81, 61, 28, (216,256,0): 81, 60, 33, (216,257,0): 83, 62, 35, (216,258,0): 86, 65, 34, (216,259,0): 91, 71, 38, (216,260,0): 98, 76, 39, (216,261,0): 104, 82, 41, (216,262,0): 109, 88, 43, (216,263,0): 111, 90, 43, (216,264,0): 118, 96, 49, (216,265,0): 120, 98, 49, (216,266,0): 121, 97, 51, (216,267,0): 118, 94, 48, (216,268,0): 112, 88, 44, (216,269,0): 109, 84, 43, (216,270,0): 112, 84, 45, (216,271,0): 114, 87, 44, (216,272,0): 115, 87, 39, (216,273,0): 118, 90, 40, (216,274,0): 120, 92, 42, (216,275,0): 120, 92, 42, (216,276,0): 115, 89, 40, (216,277,0): 114, 88, 39, (216,278,0): 115, 89, 40, (216,279,0): 117, 90, 43, (216,280,0): 116, 92, 44, (216,281,0): 116, 92, 46, (216,282,0): 115, 93, 46, (216,283,0): 115, 93, 46, (216,284,0): 117, 95, 48, (216,285,0): 120, 98, 51, (216,286,0): 122, 101, 56, (216,287,0): 124, 103, 58, (216,288,0): 116, 98, 52, (216,289,0): 116, 97, 54, (216,290,0): 116, 97, 54, (216,291,0): 114, 95, 53, (216,292,0): 111, 94, 51, (216,293,0): 108, 90, 50, (216,294,0): 106, 88, 50, (216,295,0): 104, 86, 48, (216,296,0): 98, 82, 46, (216,297,0): 99, 83, 49, (216,298,0): 98, 83, 50, (216,299,0): 99, 84, 51, (216,300,0): 99, 84, 53, (216,301,0): 100, 85, 54, (216,302,0): 99, 85, 56, (216,303,0): 99, 85, 56, (216,304,0): 99, 84, 55, (216,305,0): 98, 83, 54, (216,306,0): 98, 82, 56, (216,307,0): 98, 82, 56, (216,308,0): 97, 81, 55, (216,309,0): 97, 81, 55, (216,310,0): 96, 80, 55, (216,311,0): 96, 80, 55, (216,312,0): 97, 81, 58, (216,313,0): 96, 80, 57, (216,314,0): 95, 79, 56, (216,315,0): 95, 79, 56, (216,316,0): 98, 81, 61, (216,317,0): 102, 85, 65, (216,318,0): 107, 90, 70, (216,319,0): 110, 94, 71, (216,320,0): 113, 97, 72, (216,321,0): 112, 96, 71, (216,322,0): 110, 94, 69, (216,323,0): 107, 91, 66, (216,324,0): 103, 89, 63, (216,325,0): 101, 86, 63, (216,326,0): 99, 84, 65, (216,327,0): 96, 83, 67, (216,328,0): 96, 82, 69, (216,329,0): 98, 84, 71, (216,330,0): 100, 86, 73, (216,331,0): 102, 91, 73, (216,332,0): 109, 98, 76, (216,333,0): 119, 110, 81, (216,334,0): 133, 125, 89, (216,335,0): 139, 136, 91, (216,336,0): 158, 166, 106, (216,337,0): 168, 181, 112, (216,338,0): 172, 188, 117, (216,339,0): 166, 183, 112, (216,340,0): 159, 181, 106, (216,341,0): 165, 189, 113, (216,342,0): 174, 201, 122, (216,343,0): 177, 208, 128, (216,344,0): 178, 212, 128, (216,345,0): 176, 210, 126, (216,346,0): 176, 210, 124, (216,347,0): 180, 214, 128, (216,348,0): 186, 220, 133, (216,349,0): 189, 223, 136, (216,350,0): 190, 223, 136, (216,351,0): 188, 221, 134, (216,352,0): 187, 221, 135, (216,353,0): 189, 223, 139, (216,354,0): 190, 224, 140, (216,355,0): 187, 221, 137, (216,356,0): 182, 217, 133, (216,357,0): 181, 216, 132, (216,358,0): 184, 219, 135, (216,359,0): 188, 223, 139, (216,360,0): 179, 217, 132, (216,361,0): 179, 217, 132, (216,362,0): 179, 219, 133, (216,363,0): 179, 219, 133, (216,364,0): 178, 218, 132, (216,365,0): 176, 216, 130, (216,366,0): 173, 215, 129, (216,367,0): 171, 213, 127, (216,368,0): 176, 220, 135, (216,369,0): 176, 220, 135, (216,370,0): 176, 220, 135, (216,371,0): 175, 220, 135, (216,372,0): 175, 220, 135, (216,373,0): 172, 220, 134, (216,374,0): 172, 220, 134, (216,375,0): 170, 220, 133, (216,376,0): 176, 229, 141, (216,377,0): 181, 235, 147, (216,378,0): 188, 242, 154, (216,379,0): 192, 248, 159, (216,380,0): 192, 248, 159, (216,381,0): 190, 249, 159, (216,382,0): 191, 250, 160, (216,383,0): 192, 250, 163, (216,384,0): 197, 249, 166, (216,385,0): 201, 250, 171, (216,386,0): 205, 251, 179, (216,387,0): 209, 254, 187, (216,388,0): 214, 255, 195, (216,389,0): 217, 255, 199, (216,390,0): 219, 255, 204, (216,391,0): 221, 255, 204, (216,392,0): 222, 254, 205, (216,393,0): 225, 254, 206, (216,394,0): 228, 255, 212, (216,395,0): 230, 255, 216, (216,396,0): 233, 254, 221, (216,397,0): 234, 253, 225, (216,398,0): 235, 250, 229, (216,399,0): 235, 250, 231, (216,400,0): 241, 255, 237, (216,401,0): 241, 255, 238, (216,402,0): 242, 255, 238, (216,403,0): 242, 254, 240, (216,404,0): 243, 253, 242, (216,405,0): 243, 253, 244, (216,406,0): 245, 252, 245, (216,407,0): 245, 251, 247, (216,408,0): 243, 252, 247, (216,409,0): 242, 251, 246, (216,410,0): 241, 252, 248, (216,411,0): 240, 253, 246, (216,412,0): 238, 254, 244, (216,413,0): 236, 254, 242, (216,414,0): 234, 254, 242, (216,415,0): 230, 255, 242, (216,416,0): 224, 255, 243, (216,417,0): 221, 255, 245, (216,418,0): 223, 255, 245, (216,419,0): 223, 255, 247, (216,420,0): 225, 254, 249, (216,421,0): 225, 254, 250, (216,422,0): 227, 253, 254, (216,423,0): 227, 253, 254, (216,424,0): 230, 255, 255, (216,425,0): 228, 255, 255, (216,426,0): 228, 255, 255, (216,427,0): 226, 255, 255, (216,428,0): 223, 255, 252, (216,429,0): 219, 254, 250, (216,430,0): 216, 251, 247, (216,431,0): 212, 252, 244, (216,432,0): 199, 245, 235, (216,433,0): 202, 254, 241, (216,434,0): 203, 255, 243, (216,435,0): 198, 254, 241, (216,436,0): 196, 254, 240, (216,437,0): 199, 255, 244, (216,438,0): 198, 251, 241, (216,439,0): 195, 245, 236, (216,440,0): 187, 228, 220, (216,441,0): 172, 209, 202, (216,442,0): 157, 188, 180, (216,443,0): 151, 178, 169, (216,444,0): 148, 174, 163, (216,445,0): 144, 170, 157, (216,446,0): 144, 171, 156, (216,447,0): 149, 173, 159, (216,448,0): 147, 165, 151, (216,449,0): 147, 165, 151, (216,450,0): 142, 162, 150, (216,451,0): 137, 157, 146, (216,452,0): 133, 154, 145, (216,453,0): 135, 158, 150, (216,454,0): 139, 166, 161, (216,455,0): 144, 173, 169, (216,456,0): 143, 175, 174, (216,457,0): 146, 180, 181, (216,458,0): 151, 186, 190, (216,459,0): 155, 192, 198, (216,460,0): 156, 195, 202, (216,461,0): 154, 195, 201, (216,462,0): 150, 190, 198, (216,463,0): 149, 187, 198, (216,464,0): 142, 178, 190, (216,465,0): 143, 177, 189, (216,466,0): 142, 175, 190, (216,467,0): 144, 178, 190, (216,468,0): 148, 180, 193, (216,469,0): 149, 181, 192, (216,470,0): 149, 177, 191, (216,471,0): 146, 174, 186, (216,472,0): 144, 170, 183, (216,473,0): 138, 165, 176, (216,474,0): 135, 157, 170, (216,475,0): 131, 153, 164, (216,476,0): 131, 150, 164, (216,477,0): 130, 150, 161, (216,478,0): 128, 148, 159, (216,479,0): 126, 146, 155, (216,480,0): 125, 147, 158, (216,481,0): 125, 150, 157, (216,482,0): 125, 152, 161, (216,483,0): 126, 153, 162, (216,484,0): 125, 154, 162, (216,485,0): 123, 153, 161, (216,486,0): 119, 152, 161, (216,487,0): 118, 151, 160, (216,488,0): 115, 148, 157, (216,489,0): 115, 147, 158, (216,490,0): 118, 148, 159, (216,491,0): 120, 148, 160, (216,492,0): 122, 150, 164, (216,493,0): 124, 150, 165, (216,494,0): 125, 151, 166, (216,495,0): 128, 151, 165, (216,496,0): 136, 156, 167, (216,497,0): 135, 155, 162, (216,498,0): 135, 154, 161, (216,499,0): 133, 152, 159, (216,500,0): 129, 148, 155, (216,501,0): 126, 143, 150, (216,502,0): 122, 140, 144, (216,503,0): 119, 137, 139, (216,504,0): 119, 137, 139, (216,505,0): 120, 136, 136, (216,506,0): 118, 134, 133, (216,507,0): 116, 131, 128, (216,508,0): 114, 129, 126, (216,509,0): 113, 128, 123, (216,510,0): 113, 128, 123, (216,511,0): 116, 127, 123, (216,512,0): 124, 130, 126, (216,513,0): 121, 126, 122, (216,514,0): 118, 120, 117, (216,515,0): 109, 114, 110, (216,516,0): 104, 106, 103, (216,517,0): 97, 101, 100, (216,518,0): 95, 97, 96, (216,519,0): 91, 95, 94, (216,520,0): 90, 91, 93, (216,521,0): 89, 93, 94, (216,522,0): 91, 92, 94, (216,523,0): 90, 94, 97, (216,524,0): 92, 93, 97, (216,525,0): 91, 95, 98, (216,526,0): 93, 94, 98, (216,527,0): 91, 95, 98, (216,528,0): 95, 97, 96, (216,529,0): 91, 95, 94, (216,530,0): 92, 94, 93, (216,531,0): 89, 93, 92, (216,532,0): 89, 93, 92, (216,533,0): 90, 94, 95, (216,534,0): 91, 95, 96, (216,535,0): 92, 98, 98, (216,536,0): 94, 99, 102, (216,537,0): 93, 101, 103, (216,538,0): 92, 100, 102, (216,539,0): 89, 99, 101, (216,540,0): 87, 97, 99, (216,541,0): 88, 98, 100, (216,542,0): 93, 103, 105, (216,543,0): 96, 107, 111, (216,544,0): 99, 114, 121, (216,545,0): 101, 120, 127, (216,546,0): 109, 128, 135, (216,547,0): 117, 136, 143, (216,548,0): 121, 140, 147, (216,549,0): 123, 141, 151, (216,550,0): 122, 140, 150, (216,551,0): 120, 138, 148, (216,552,0): 119, 137, 149, (216,553,0): 114, 132, 144, (216,554,0): 108, 126, 138, (216,555,0): 106, 124, 138, (216,556,0): 107, 125, 139, (216,557,0): 109, 127, 141, (216,558,0): 110, 128, 142, (216,559,0): 110, 127, 143, (216,560,0): 113, 130, 148, (216,561,0): 111, 128, 146, (216,562,0): 109, 124, 143, (216,563,0): 106, 121, 140, (216,564,0): 104, 116, 138, (216,565,0): 102, 114, 136, (216,566,0): 101, 112, 134, (216,567,0): 100, 111, 133, (216,568,0): 101, 109, 130, (216,569,0): 101, 108, 127, (216,570,0): 100, 105, 124, (216,571,0): 98, 104, 118, (216,572,0): 98, 102, 114, (216,573,0): 95, 99, 110, (216,574,0): 94, 97, 106, (216,575,0): 95, 95, 103, (216,576,0): 92, 89, 98, (216,577,0): 91, 85, 95, (216,578,0): 88, 83, 90, (216,579,0): 88, 83, 90, (216,580,0): 90, 85, 92, (216,581,0): 92, 85, 93, (216,582,0): 91, 84, 91, (216,583,0): 91, 81, 89, (216,584,0): 89, 80, 85, (216,585,0): 88, 79, 84, (216,586,0): 89, 78, 84, (216,587,0): 88, 77, 83, (216,588,0): 88, 77, 81, (216,589,0): 89, 78, 82, (216,590,0): 92, 80, 84, (216,591,0): 93, 81, 85, (216,592,0): 97, 80, 86, (216,593,0): 98, 79, 85, (216,594,0): 96, 77, 83, (216,595,0): 93, 74, 80, (216,596,0): 89, 70, 76, (216,597,0): 84, 65, 71, (216,598,0): 80, 61, 67, (216,599,0): 78, 59, 65, (217,0,0): 42, 30, 44, (217,1,0): 42, 30, 44, (217,2,0): 42, 30, 44, (217,3,0): 42, 30, 44, (217,4,0): 42, 30, 44, (217,5,0): 42, 30, 44, (217,6,0): 42, 30, 44, (217,7,0): 42, 30, 44, (217,8,0): 44, 32, 46, (217,9,0): 44, 32, 46, (217,10,0): 44, 32, 46, (217,11,0): 45, 33, 47, (217,12,0): 45, 33, 47, (217,13,0): 46, 34, 48, (217,14,0): 46, 34, 48, (217,15,0): 46, 34, 46, (217,16,0): 47, 35, 47, (217,17,0): 47, 35, 45, (217,18,0): 47, 35, 45, (217,19,0): 47, 35, 45, (217,20,0): 47, 35, 45, (217,21,0): 47, 35, 45, (217,22,0): 48, 35, 45, (217,23,0): 48, 35, 45, (217,24,0): 50, 34, 45, (217,25,0): 50, 34, 45, (217,26,0): 51, 33, 45, (217,27,0): 52, 34, 46, (217,28,0): 52, 34, 46, (217,29,0): 53, 35, 47, (217,30,0): 53, 35, 47, (217,31,0): 53, 35, 47, (217,32,0): 54, 37, 47, (217,33,0): 54, 37, 47, (217,34,0): 55, 38, 48, (217,35,0): 55, 38, 48, (217,36,0): 55, 38, 48, (217,37,0): 55, 38, 48, (217,38,0): 56, 39, 49, (217,39,0): 56, 39, 49, (217,40,0): 55, 38, 48, (217,41,0): 55, 38, 48, (217,42,0): 55, 38, 48, (217,43,0): 55, 38, 48, (217,44,0): 55, 38, 48, (217,45,0): 55, 38, 48, (217,46,0): 55, 38, 48, (217,47,0): 55, 38, 48, (217,48,0): 55, 38, 48, (217,49,0): 55, 38, 48, (217,50,0): 55, 38, 48, (217,51,0): 55, 38, 48, (217,52,0): 57, 37, 46, (217,53,0): 57, 37, 46, (217,54,0): 57, 38, 44, (217,55,0): 57, 38, 44, (217,56,0): 57, 36, 43, (217,57,0): 57, 36, 43, (217,58,0): 59, 36, 42, (217,59,0): 59, 36, 42, (217,60,0): 60, 38, 41, (217,61,0): 60, 38, 41, (217,62,0): 62, 37, 41, (217,63,0): 63, 38, 42, (217,64,0): 60, 37, 43, (217,65,0): 60, 37, 43, (217,66,0): 62, 37, 41, (217,67,0): 63, 38, 42, (217,68,0): 63, 38, 42, (217,69,0): 64, 39, 43, (217,70,0): 65, 39, 42, (217,71,0): 66, 40, 43, (217,72,0): 67, 38, 40, (217,73,0): 67, 38, 40, (217,74,0): 68, 39, 41, (217,75,0): 68, 39, 41, (217,76,0): 70, 40, 40, (217,77,0): 71, 41, 41, (217,78,0): 71, 41, 41, (217,79,0): 72, 42, 42, (217,80,0): 68, 37, 42, (217,81,0): 68, 37, 42, (217,82,0): 68, 37, 42, (217,83,0): 67, 36, 41, (217,84,0): 67, 36, 41, (217,85,0): 66, 35, 40, (217,86,0): 66, 35, 40, (217,87,0): 65, 34, 39, (217,88,0): 66, 35, 40, (217,89,0): 66, 35, 40, (217,90,0): 66, 35, 40, (217,91,0): 65, 34, 39, (217,92,0): 65, 34, 39, (217,93,0): 64, 33, 38, (217,94,0): 64, 33, 38, (217,95,0): 63, 34, 38, (217,96,0): 61, 32, 36, (217,97,0): 59, 33, 36, (217,98,0): 59, 33, 36, (217,99,0): 58, 32, 35, (217,100,0): 58, 32, 35, (217,101,0): 57, 31, 34, (217,102,0): 57, 31, 34, (217,103,0): 56, 30, 33, (217,104,0): 57, 31, 34, (217,105,0): 57, 31, 34, (217,106,0): 57, 31, 34, (217,107,0): 57, 31, 34, (217,108,0): 57, 31, 34, (217,109,0): 57, 31, 34, (217,110,0): 57, 31, 34, (217,111,0): 57, 31, 34, (217,112,0): 58, 29, 31, (217,113,0): 58, 29, 31, (217,114,0): 56, 30, 31, (217,115,0): 56, 30, 31, (217,116,0): 56, 30, 31, (217,117,0): 56, 30, 31, (217,118,0): 56, 30, 31, (217,119,0): 55, 31, 31, (217,120,0): 53, 29, 29, (217,121,0): 48, 27, 26, (217,122,0): 44, 23, 22, (217,123,0): 40, 19, 18, (217,124,0): 39, 19, 18, (217,125,0): 40, 20, 19, (217,126,0): 43, 23, 22, (217,127,0): 46, 26, 25, (217,128,0): 46, 24, 26, (217,129,0): 46, 24, 26, (217,130,0): 46, 24, 26, (217,131,0): 46, 24, 26, (217,132,0): 46, 25, 24, (217,133,0): 46, 25, 24, (217,134,0): 46, 25, 24, (217,135,0): 46, 25, 24, (217,136,0): 49, 28, 25, (217,137,0): 49, 28, 25, (217,138,0): 50, 29, 24, (217,139,0): 50, 29, 24, (217,140,0): 51, 30, 25, (217,141,0): 51, 30, 25, (217,142,0): 52, 32, 25, (217,143,0): 52, 32, 25, (217,144,0): 50, 29, 26, (217,145,0): 50, 29, 26, (217,146,0): 50, 29, 26, (217,147,0): 50, 29, 26, (217,148,0): 50, 29, 26, (217,149,0): 50, 29, 26, (217,150,0): 50, 29, 26, (217,151,0): 50, 29, 26, (217,152,0): 52, 31, 28, (217,153,0): 52, 31, 28, (217,154,0): 52, 31, 28, (217,155,0): 52, 31, 28, (217,156,0): 52, 31, 28, (217,157,0): 52, 31, 28, (217,158,0): 52, 31, 28, (217,159,0): 52, 31, 28, (217,160,0): 55, 30, 26, (217,161,0): 55, 30, 26, (217,162,0): 55, 30, 26, (217,163,0): 55, 30, 26, (217,164,0): 55, 30, 26, (217,165,0): 55, 30, 26, (217,166,0): 55, 30, 26, (217,167,0): 55, 30, 26, (217,168,0): 54, 29, 25, (217,169,0): 54, 29, 25, (217,170,0): 54, 29, 25, (217,171,0): 54, 29, 25, (217,172,0): 54, 29, 25, (217,173,0): 54, 29, 25, (217,174,0): 54, 29, 25, (217,175,0): 54, 29, 24, (217,176,0): 55, 30, 25, (217,177,0): 55, 30, 23, (217,178,0): 55, 30, 23, (217,179,0): 55, 30, 23, (217,180,0): 55, 30, 23, (217,181,0): 55, 30, 23, (217,182,0): 55, 30, 23, (217,183,0): 55, 30, 23, (217,184,0): 57, 32, 25, (217,185,0): 57, 32, 25, (217,186,0): 56, 31, 24, (217,187,0): 56, 31, 24, (217,188,0): 55, 30, 23, (217,189,0): 55, 30, 23, (217,190,0): 54, 29, 22, (217,191,0): 54, 29, 22, (217,192,0): 55, 30, 23, (217,193,0): 55, 30, 23, (217,194,0): 55, 30, 23, (217,195,0): 55, 30, 23, (217,196,0): 55, 30, 23, (217,197,0): 55, 30, 23, (217,198,0): 55, 30, 23, (217,199,0): 55, 30, 23, (217,200,0): 55, 30, 23, (217,201,0): 55, 30, 23, (217,202,0): 55, 30, 23, (217,203,0): 55, 30, 23, (217,204,0): 55, 30, 23, (217,205,0): 55, 30, 23, (217,206,0): 55, 30, 23, (217,207,0): 55, 31, 21, (217,208,0): 59, 31, 20, (217,209,0): 60, 32, 21, (217,210,0): 60, 32, 21, (217,211,0): 61, 33, 22, (217,212,0): 61, 33, 21, (217,213,0): 62, 34, 22, (217,214,0): 62, 34, 22, (217,215,0): 62, 34, 20, (217,216,0): 66, 38, 24, (217,217,0): 66, 39, 22, (217,218,0): 67, 40, 23, (217,219,0): 68, 41, 24, (217,220,0): 69, 42, 25, (217,221,0): 71, 44, 27, (217,222,0): 73, 46, 27, (217,223,0): 75, 47, 26, (217,224,0): 75, 44, 23, (217,225,0): 77, 45, 22, (217,226,0): 80, 48, 23, (217,227,0): 82, 51, 23, (217,228,0): 85, 54, 26, (217,229,0): 88, 57, 28, (217,230,0): 90, 59, 28, (217,231,0): 91, 61, 27, (217,232,0): 91, 61, 27, (217,233,0): 91, 61, 27, (217,234,0): 90, 60, 26, (217,235,0): 88, 57, 26, (217,236,0): 87, 56, 27, (217,237,0): 85, 54, 26, (217,238,0): 84, 53, 25, (217,239,0): 84, 52, 27, (217,240,0): 83, 52, 31, (217,241,0): 83, 52, 31, (217,242,0): 82, 54, 32, (217,243,0): 83, 55, 33, (217,244,0): 83, 55, 31, (217,245,0): 84, 56, 32, (217,246,0): 84, 58, 31, (217,247,0): 84, 58, 31, (217,248,0): 80, 57, 26, (217,249,0): 81, 58, 26, (217,250,0): 83, 60, 28, (217,251,0): 86, 63, 31, (217,252,0): 86, 66, 33, (217,253,0): 88, 68, 33, (217,254,0): 89, 69, 34, (217,255,0): 90, 70, 35, (217,256,0): 87, 66, 35, (217,257,0): 89, 68, 37, (217,258,0): 92, 72, 39, (217,259,0): 96, 76, 39, (217,260,0): 103, 81, 40, (217,261,0): 108, 87, 42, (217,262,0): 112, 92, 42, (217,263,0): 114, 94, 43, (217,264,0): 118, 96, 46, (217,265,0): 120, 99, 46, (217,266,0): 122, 99, 49, (217,267,0): 121, 98, 48, (217,268,0): 118, 94, 48, (217,269,0): 115, 91, 45, (217,270,0): 115, 88, 45, (217,271,0): 114, 87, 42, (217,272,0): 116, 88, 38, (217,273,0): 119, 92, 39, (217,274,0): 121, 94, 41, (217,275,0): 121, 94, 41, (217,276,0): 118, 92, 41, (217,277,0): 117, 91, 40, (217,278,0): 119, 93, 42, (217,279,0): 121, 95, 46, (217,280,0): 119, 96, 46, (217,281,0): 118, 95, 45, (217,282,0): 117, 95, 46, (217,283,0): 117, 95, 46, (217,284,0): 119, 97, 48, (217,285,0): 121, 99, 50, (217,286,0): 123, 102, 55, (217,287,0): 124, 103, 56, (217,288,0): 118, 100, 52, (217,289,0): 118, 100, 54, (217,290,0): 117, 99, 53, (217,291,0): 116, 97, 54, (217,292,0): 112, 95, 51, (217,293,0): 109, 92, 49, (217,294,0): 106, 88, 48, (217,295,0): 104, 86, 48, (217,296,0): 100, 84, 48, (217,297,0): 100, 84, 48, (217,298,0): 99, 84, 51, (217,299,0): 99, 84, 51, (217,300,0): 100, 85, 54, (217,301,0): 100, 85, 54, (217,302,0): 99, 85, 56, (217,303,0): 99, 85, 56, (217,304,0): 100, 85, 56, (217,305,0): 99, 84, 55, (217,306,0): 99, 83, 57, (217,307,0): 99, 83, 57, (217,308,0): 98, 82, 56, (217,309,0): 97, 81, 55, (217,310,0): 97, 81, 56, (217,311,0): 97, 81, 56, (217,312,0): 97, 81, 58, (217,313,0): 96, 80, 57, (217,314,0): 95, 79, 56, (217,315,0): 96, 80, 57, (217,316,0): 98, 81, 61, (217,317,0): 102, 85, 65, (217,318,0): 106, 89, 69, (217,319,0): 109, 92, 72, (217,320,0): 113, 97, 74, (217,321,0): 112, 96, 71, (217,322,0): 110, 94, 69, (217,323,0): 107, 91, 66, (217,324,0): 103, 89, 63, (217,325,0): 100, 85, 62, (217,326,0): 98, 83, 64, (217,327,0): 96, 80, 64, (217,328,0): 95, 81, 68, (217,329,0): 96, 82, 69, (217,330,0): 99, 85, 72, (217,331,0): 102, 89, 73, (217,332,0): 108, 96, 74, (217,333,0): 117, 107, 80, (217,334,0): 132, 121, 89, (217,335,0): 138, 133, 91, (217,336,0): 155, 161, 101, (217,337,0): 164, 175, 106, (217,338,0): 171, 184, 114, (217,339,0): 165, 181, 108, (217,340,0): 161, 179, 105, (217,341,0): 165, 188, 110, (217,342,0): 171, 198, 119, (217,343,0): 175, 204, 122, (217,344,0): 180, 212, 129, (217,345,0): 179, 213, 129, (217,346,0): 180, 214, 130, (217,347,0): 184, 218, 134, (217,348,0): 189, 223, 139, (217,349,0): 191, 225, 141, (217,350,0): 191, 223, 140, (217,351,0): 188, 219, 139, (217,352,0): 187, 218, 140, (217,353,0): 186, 219, 140, (217,354,0): 184, 217, 138, (217,355,0): 181, 214, 135, (217,356,0): 178, 211, 132, (217,357,0): 176, 211, 131, (217,358,0): 177, 212, 132, (217,359,0): 178, 213, 133, (217,360,0): 176, 211, 131, (217,361,0): 174, 211, 131, (217,362,0): 175, 212, 132, (217,363,0): 175, 214, 133, (217,364,0): 175, 214, 133, (217,365,0): 174, 213, 132, (217,366,0): 173, 212, 131, (217,367,0): 170, 212, 130, (217,368,0): 176, 217, 138, (217,369,0): 175, 218, 138, (217,370,0): 176, 219, 139, (217,371,0): 175, 220, 139, (217,372,0): 175, 220, 139, (217,373,0): 172, 219, 138, (217,374,0): 171, 218, 137, (217,375,0): 170, 219, 137, (217,376,0): 174, 226, 143, (217,377,0): 179, 233, 149, (217,378,0): 186, 240, 156, (217,379,0): 190, 245, 161, (217,380,0): 191, 246, 162, (217,381,0): 189, 247, 162, (217,382,0): 189, 247, 162, (217,383,0): 191, 249, 165, (217,384,0): 197, 250, 170, (217,385,0): 200, 251, 176, (217,386,0): 203, 253, 182, (217,387,0): 209, 255, 191, (217,388,0): 212, 255, 197, (217,389,0): 216, 255, 203, (217,390,0): 218, 255, 205, (217,391,0): 219, 255, 207, (217,392,0): 221, 254, 209, (217,393,0): 223, 254, 210, (217,394,0): 227, 255, 215, (217,395,0): 229, 255, 220, (217,396,0): 231, 254, 226, (217,397,0): 231, 253, 230, (217,398,0): 233, 252, 233, (217,399,0): 233, 251, 235, (217,400,0): 238, 255, 242, (217,401,0): 238, 255, 242, (217,402,0): 239, 255, 244, (217,403,0): 239, 255, 245, (217,404,0): 241, 254, 247, (217,405,0): 241, 253, 249, (217,406,0): 241, 253, 251, (217,407,0): 241, 253, 251, (217,408,0): 241, 253, 253, (217,409,0): 239, 253, 253, (217,410,0): 237, 253, 252, (217,411,0): 235, 254, 252, (217,412,0): 233, 254, 249, (217,413,0): 231, 254, 246, (217,414,0): 229, 255, 246, (217,415,0): 225, 255, 245, (217,416,0): 221, 255, 247, (217,417,0): 220, 255, 249, (217,418,0): 220, 255, 250, (217,419,0): 221, 255, 250, (217,420,0): 223, 255, 252, (217,421,0): 223, 255, 254, (217,422,0): 224, 254, 255, (217,423,0): 224, 254, 255, (217,424,0): 227, 255, 255, (217,425,0): 227, 255, 255, (217,426,0): 226, 255, 255, (217,427,0): 225, 255, 255, (217,428,0): 221, 255, 255, (217,429,0): 217, 253, 253, (217,430,0): 213, 252, 251, (217,431,0): 210, 250, 249, (217,432,0): 200, 247, 241, (217,433,0): 203, 254, 247, (217,434,0): 204, 255, 249, (217,435,0): 199, 255, 246, (217,436,0): 197, 254, 247, (217,437,0): 200, 255, 249, (217,438,0): 199, 252, 246, (217,439,0): 196, 243, 237, (217,440,0): 184, 225, 221, (217,441,0): 170, 205, 201, (217,442,0): 155, 184, 179, (217,443,0): 149, 174, 168, (217,444,0): 144, 170, 161, (217,445,0): 140, 164, 151, (217,446,0): 138, 162, 149, (217,447,0): 141, 163, 150, (217,448,0): 140, 157, 147, (217,449,0): 139, 156, 146, (217,450,0): 136, 156, 147, (217,451,0): 134, 155, 146, (217,452,0): 135, 158, 150, (217,453,0): 138, 163, 157, (217,454,0): 143, 172, 168, (217,455,0): 147, 177, 175, (217,456,0): 147, 181, 182, (217,457,0): 149, 184, 186, (217,458,0): 151, 188, 194, (217,459,0): 154, 191, 199, (217,460,0): 153, 191, 200, (217,461,0): 149, 189, 199, (217,462,0): 146, 184, 197, (217,463,0): 143, 181, 194, (217,464,0): 138, 174, 188, (217,465,0): 139, 172, 187, (217,466,0): 138, 171, 186, (217,467,0): 141, 174, 189, (217,468,0): 145, 177, 192, (217,469,0): 145, 177, 190, (217,470,0): 146, 174, 188, (217,471,0): 143, 171, 185, (217,472,0): 139, 165, 180, (217,473,0): 134, 160, 173, (217,474,0): 130, 152, 166, (217,475,0): 126, 148, 161, (217,476,0): 126, 145, 159, (217,477,0): 125, 144, 158, (217,478,0): 123, 142, 156, (217,479,0): 121, 141, 152, (217,480,0): 120, 142, 153, (217,481,0): 121, 143, 154, (217,482,0): 122, 146, 158, (217,483,0): 122, 149, 160, (217,484,0): 122, 150, 161, (217,485,0): 120, 150, 161, (217,486,0): 118, 150, 161, (217,487,0): 117, 149, 160, (217,488,0): 116, 148, 159, (217,489,0): 117, 149, 162, (217,490,0): 118, 150, 163, (217,491,0): 121, 150, 166, (217,492,0): 123, 152, 168, (217,493,0): 125, 152, 169, (217,494,0): 126, 153, 170, (217,495,0): 128, 154, 169, (217,496,0): 136, 158, 171, (217,497,0): 135, 158, 166, (217,498,0): 137, 157, 168, (217,499,0): 135, 155, 164, (217,500,0): 132, 152, 161, (217,501,0): 128, 148, 155, (217,502,0): 126, 145, 151, (217,503,0): 124, 143, 147, (217,504,0): 120, 139, 143, (217,505,0): 119, 137, 139, (217,506,0): 117, 135, 135, (217,507,0): 115, 134, 132, (217,508,0): 115, 131, 130, (217,509,0): 115, 131, 128, (217,510,0): 114, 130, 129, (217,511,0): 118, 130, 128, (217,512,0): 122, 131, 128, (217,513,0): 121, 127, 123, (217,514,0): 115, 121, 117, (217,515,0): 108, 114, 112, (217,516,0): 102, 108, 106, (217,517,0): 97, 103, 101, (217,518,0): 95, 101, 99, (217,519,0): 94, 100, 100, (217,520,0): 92, 98, 98, (217,521,0): 92, 97, 100, (217,522,0): 93, 98, 101, (217,523,0): 93, 98, 101, (217,524,0): 94, 99, 102, (217,525,0): 94, 99, 103, (217,526,0): 95, 100, 104, (217,527,0): 95, 100, 104, (217,528,0): 95, 101, 101, (217,529,0): 94, 100, 100, (217,530,0): 92, 98, 98, (217,531,0): 91, 97, 97, (217,532,0): 91, 97, 97, (217,533,0): 92, 97, 100, (217,534,0): 94, 99, 102, (217,535,0): 93, 101, 103, (217,536,0): 96, 104, 107, (217,537,0): 95, 105, 107, (217,538,0): 93, 102, 107, (217,539,0): 89, 100, 104, (217,540,0): 87, 98, 102, (217,541,0): 90, 101, 105, (217,542,0): 95, 106, 110, (217,543,0): 98, 111, 117, (217,544,0): 101, 118, 126, (217,545,0): 103, 123, 130, (217,546,0): 110, 129, 136, (217,547,0): 115, 135, 144, (217,548,0): 121, 139, 149, (217,549,0): 122, 142, 151, (217,550,0): 122, 140, 150, (217,551,0): 121, 141, 152, (217,552,0): 121, 139, 151, (217,553,0): 116, 135, 149, (217,554,0): 112, 130, 144, (217,555,0): 109, 128, 142, (217,556,0): 110, 128, 142, (217,557,0): 110, 129, 144, (217,558,0): 110, 127, 143, (217,559,0): 109, 126, 142, (217,560,0): 111, 128, 144, (217,561,0): 110, 127, 143, (217,562,0): 109, 124, 143, (217,563,0): 107, 122, 141, (217,564,0): 106, 119, 138, (217,565,0): 104, 117, 136, (217,566,0): 102, 113, 135, (217,567,0): 103, 111, 132, (217,568,0): 105, 112, 131, (217,569,0): 104, 111, 129, (217,570,0): 103, 109, 125, (217,571,0): 101, 107, 121, (217,572,0): 100, 104, 115, (217,573,0): 98, 102, 111, (217,574,0): 97, 100, 107, (217,575,0): 99, 99, 107, (217,576,0): 95, 92, 101, (217,577,0): 93, 87, 97, (217,578,0): 90, 85, 92, (217,579,0): 91, 84, 92, (217,580,0): 92, 85, 93, (217,581,0): 93, 86, 94, (217,582,0): 94, 84, 92, (217,583,0): 92, 82, 90, (217,584,0): 89, 80, 85, (217,585,0): 89, 78, 84, (217,586,0): 88, 77, 83, (217,587,0): 87, 76, 82, (217,588,0): 88, 76, 80, (217,589,0): 89, 77, 81, (217,590,0): 91, 79, 83, (217,591,0): 93, 78, 83, (217,592,0): 94, 77, 83, (217,593,0): 94, 77, 83, (217,594,0): 94, 75, 81, (217,595,0): 90, 73, 79, (217,596,0): 88, 69, 75, (217,597,0): 82, 65, 71, (217,598,0): 81, 62, 68, (217,599,0): 77, 60, 66, (218,0,0): 42, 30, 44, (218,1,0): 42, 30, 44, (218,2,0): 42, 30, 44, (218,3,0): 42, 30, 44, (218,4,0): 42, 30, 44, (218,5,0): 42, 30, 44, (218,6,0): 42, 30, 44, (218,7,0): 42, 30, 44, (218,8,0): 44, 32, 46, (218,9,0): 44, 32, 46, (218,10,0): 44, 32, 46, (218,11,0): 45, 33, 47, (218,12,0): 45, 33, 47, (218,13,0): 46, 34, 48, (218,14,0): 46, 34, 48, (218,15,0): 46, 34, 46, (218,16,0): 46, 34, 46, (218,17,0): 46, 34, 44, (218,18,0): 46, 34, 44, (218,19,0): 46, 34, 44, (218,20,0): 46, 34, 44, (218,21,0): 46, 34, 44, (218,22,0): 47, 34, 44, (218,23,0): 47, 34, 44, (218,24,0): 50, 34, 45, (218,25,0): 50, 34, 45, (218,26,0): 51, 33, 45, (218,27,0): 52, 34, 46, (218,28,0): 52, 34, 46, (218,29,0): 53, 35, 47, (218,30,0): 53, 35, 47, (218,31,0): 53, 35, 47, (218,32,0): 56, 39, 49, (218,33,0): 56, 39, 49, (218,34,0): 55, 38, 48, (218,35,0): 55, 38, 48, (218,36,0): 55, 38, 48, (218,37,0): 55, 38, 48, (218,38,0): 54, 37, 47, (218,39,0): 54, 37, 47, (218,40,0): 55, 38, 48, (218,41,0): 55, 38, 48, (218,42,0): 55, 38, 48, (218,43,0): 55, 38, 48, (218,44,0): 55, 38, 48, (218,45,0): 55, 38, 48, (218,46,0): 55, 38, 48, (218,47,0): 55, 38, 48, (218,48,0): 55, 38, 48, (218,49,0): 55, 38, 48, (218,50,0): 55, 38, 48, (218,51,0): 55, 38, 48, (218,52,0): 57, 37, 46, (218,53,0): 57, 37, 46, (218,54,0): 57, 38, 44, (218,55,0): 57, 38, 44, (218,56,0): 57, 36, 43, (218,57,0): 58, 37, 44, (218,58,0): 59, 36, 42, (218,59,0): 59, 36, 42, (218,60,0): 60, 38, 41, (218,61,0): 61, 39, 42, (218,62,0): 63, 38, 42, (218,63,0): 63, 38, 42, (218,64,0): 63, 38, 44, (218,65,0): 63, 38, 44, (218,66,0): 63, 38, 42, (218,67,0): 64, 39, 43, (218,68,0): 65, 38, 43, (218,69,0): 66, 39, 44, (218,70,0): 68, 39, 43, (218,71,0): 68, 39, 43, (218,72,0): 68, 39, 41, (218,73,0): 68, 39, 41, (218,74,0): 70, 40, 42, (218,75,0): 70, 40, 42, (218,76,0): 71, 39, 40, (218,77,0): 72, 40, 41, (218,78,0): 72, 40, 41, (218,79,0): 72, 40, 41, (218,80,0): 69, 38, 43, (218,81,0): 68, 37, 42, (218,82,0): 68, 37, 42, (218,83,0): 67, 36, 41, (218,84,0): 67, 36, 41, (218,85,0): 66, 35, 40, (218,86,0): 66, 35, 40, (218,87,0): 66, 35, 40, (218,88,0): 66, 35, 40, (218,89,0): 66, 35, 40, (218,90,0): 66, 35, 40, (218,91,0): 65, 34, 39, (218,92,0): 65, 34, 39, (218,93,0): 64, 33, 38, (218,94,0): 64, 33, 38, (218,95,0): 63, 34, 38, (218,96,0): 62, 33, 37, (218,97,0): 59, 33, 36, (218,98,0): 59, 33, 36, (218,99,0): 58, 32, 35, (218,100,0): 58, 32, 35, (218,101,0): 57, 31, 34, (218,102,0): 57, 31, 34, (218,103,0): 57, 31, 34, (218,104,0): 56, 30, 33, (218,105,0): 56, 30, 33, (218,106,0): 56, 30, 33, (218,107,0): 56, 30, 33, (218,108,0): 56, 30, 33, (218,109,0): 56, 30, 33, (218,110,0): 56, 30, 33, (218,111,0): 56, 30, 33, (218,112,0): 59, 30, 32, (218,113,0): 59, 30, 32, (218,114,0): 59, 30, 32, (218,115,0): 59, 30, 32, (218,116,0): 59, 30, 32, (218,117,0): 57, 31, 32, (218,118,0): 57, 31, 32, (218,119,0): 56, 32, 32, (218,120,0): 54, 30, 30, (218,121,0): 51, 27, 27, (218,122,0): 45, 24, 23, (218,123,0): 42, 21, 20, (218,124,0): 40, 19, 18, (218,125,0): 41, 20, 19, (218,126,0): 43, 22, 21, (218,127,0): 45, 24, 23, (218,128,0): 46, 24, 26, (218,129,0): 46, 24, 26, (218,130,0): 46, 24, 26, (218,131,0): 46, 24, 26, (218,132,0): 46, 25, 24, (218,133,0): 46, 25, 24, (218,134,0): 46, 25, 24, (218,135,0): 46, 25, 24, (218,136,0): 48, 27, 24, (218,137,0): 48, 27, 24, (218,138,0): 49, 28, 23, (218,139,0): 49, 28, 23, (218,140,0): 50, 29, 24, (218,141,0): 50, 29, 24, (218,142,0): 51, 31, 24, (218,143,0): 51, 31, 24, (218,144,0): 51, 30, 27, (218,145,0): 51, 30, 27, (218,146,0): 51, 30, 27, (218,147,0): 51, 30, 27, (218,148,0): 51, 30, 27, (218,149,0): 51, 30, 27, (218,150,0): 51, 30, 27, (218,151,0): 51, 30, 27, (218,152,0): 54, 33, 30, (218,153,0): 54, 33, 30, (218,154,0): 54, 33, 30, (218,155,0): 54, 33, 30, (218,156,0): 54, 33, 30, (218,157,0): 54, 33, 30, (218,158,0): 54, 33, 30, (218,159,0): 54, 33, 30, (218,160,0): 55, 30, 26, (218,161,0): 55, 30, 26, (218,162,0): 55, 30, 26, (218,163,0): 55, 30, 26, (218,164,0): 55, 30, 26, (218,165,0): 55, 30, 26, (218,166,0): 55, 30, 26, (218,167,0): 55, 30, 26, (218,168,0): 54, 29, 25, (218,169,0): 54, 29, 25, (218,170,0): 54, 29, 25, (218,171,0): 54, 29, 25, (218,172,0): 54, 29, 25, (218,173,0): 54, 29, 25, (218,174,0): 54, 29, 25, (218,175,0): 54, 29, 24, (218,176,0): 55, 30, 25, (218,177,0): 55, 30, 23, (218,178,0): 55, 30, 23, (218,179,0): 55, 30, 23, (218,180,0): 55, 30, 23, (218,181,0): 55, 30, 23, (218,182,0): 55, 30, 23, (218,183,0): 55, 30, 23, (218,184,0): 56, 31, 24, (218,185,0): 56, 31, 24, (218,186,0): 55, 30, 23, (218,187,0): 55, 30, 23, (218,188,0): 54, 29, 22, (218,189,0): 54, 29, 22, (218,190,0): 54, 29, 22, (218,191,0): 53, 28, 21, (218,192,0): 55, 30, 23, (218,193,0): 55, 30, 23, (218,194,0): 55, 30, 23, (218,195,0): 55, 30, 23, (218,196,0): 55, 30, 23, (218,197,0): 55, 30, 23, (218,198,0): 55, 30, 23, (218,199,0): 55, 30, 23, (218,200,0): 55, 30, 23, (218,201,0): 55, 30, 23, (218,202,0): 55, 30, 23, (218,203,0): 55, 30, 23, (218,204,0): 55, 30, 23, (218,205,0): 55, 30, 23, (218,206,0): 55, 30, 23, (218,207,0): 55, 31, 21, (218,208,0): 60, 32, 21, (218,209,0): 60, 32, 20, (218,210,0): 60, 32, 20, (218,211,0): 61, 33, 21, (218,212,0): 61, 33, 21, (218,213,0): 62, 34, 22, (218,214,0): 62, 34, 20, (218,215,0): 63, 35, 21, (218,216,0): 66, 38, 24, (218,217,0): 67, 40, 23, (218,218,0): 69, 42, 25, (218,219,0): 71, 44, 25, (218,220,0): 72, 45, 26, (218,221,0): 73, 46, 27, (218,222,0): 74, 47, 28, (218,223,0): 75, 47, 26, (218,224,0): 76, 45, 24, (218,225,0): 78, 46, 23, (218,226,0): 79, 47, 22, (218,227,0): 82, 51, 23, (218,228,0): 85, 54, 26, (218,229,0): 87, 56, 27, (218,230,0): 89, 58, 27, (218,231,0): 90, 59, 28, (218,232,0): 93, 62, 31, (218,233,0): 92, 61, 30, (218,234,0): 91, 60, 29, (218,235,0): 89, 58, 29, (218,236,0): 87, 56, 28, (218,237,0): 85, 53, 28, (218,238,0): 84, 52, 27, (218,239,0): 83, 51, 28, (218,240,0): 83, 52, 31, (218,241,0): 84, 53, 33, (218,242,0): 83, 55, 33, (218,243,0): 84, 56, 34, (218,244,0): 85, 57, 33, (218,245,0): 87, 59, 35, (218,246,0): 87, 61, 34, (218,247,0): 87, 61, 34, (218,248,0): 82, 59, 28, (218,249,0): 83, 60, 28, (218,250,0): 85, 62, 30, (218,251,0): 88, 65, 31, (218,252,0): 88, 68, 33, (218,253,0): 91, 71, 34, (218,254,0): 93, 73, 36, (218,255,0): 94, 74, 37, (218,256,0): 95, 75, 40, (218,257,0): 97, 77, 42, (218,258,0): 100, 80, 43, (218,259,0): 104, 85, 43, (218,260,0): 110, 89, 46, (218,261,0): 113, 92, 45, (218,262,0): 116, 96, 45, (218,263,0): 117, 97, 44, (218,264,0): 120, 99, 44, (218,265,0): 121, 100, 45, (218,266,0): 124, 101, 47, (218,267,0): 126, 103, 49, (218,268,0): 126, 103, 53, (218,269,0): 123, 100, 50, (218,270,0): 120, 93, 46, (218,271,0): 117, 91, 42, (218,272,0): 118, 91, 38, (218,273,0): 120, 93, 38, (218,274,0): 122, 95, 40, (218,275,0): 122, 95, 40, (218,276,0): 121, 96, 42, (218,277,0): 121, 96, 42, (218,278,0): 123, 98, 44, (218,279,0): 125, 99, 48, (218,280,0): 123, 100, 48, (218,281,0): 122, 99, 47, (218,282,0): 121, 99, 49, (218,283,0): 121, 99, 49, (218,284,0): 122, 100, 50, (218,285,0): 123, 101, 51, (218,286,0): 124, 104, 54, (218,287,0): 125, 105, 55, (218,288,0): 121, 103, 53, (218,289,0): 121, 103, 55, (218,290,0): 120, 102, 54, (218,291,0): 118, 100, 54, (218,292,0): 114, 97, 53, (218,293,0): 110, 93, 50, (218,294,0): 107, 89, 49, (218,295,0): 105, 87, 49, (218,296,0): 102, 86, 50, (218,297,0): 102, 86, 50, (218,298,0): 101, 86, 53, (218,299,0): 101, 86, 53, (218,300,0): 101, 86, 55, (218,301,0): 100, 85, 56, (218,302,0): 99, 85, 58, (218,303,0): 99, 85, 58, (218,304,0): 101, 86, 57, (218,305,0): 101, 86, 57, (218,306,0): 101, 85, 59, (218,307,0): 100, 84, 58, (218,308,0): 99, 83, 57, (218,309,0): 99, 83, 57, (218,310,0): 99, 83, 58, (218,311,0): 98, 82, 57, (218,312,0): 97, 81, 58, (218,313,0): 96, 80, 57, (218,314,0): 96, 80, 57, (218,315,0): 96, 80, 57, (218,316,0): 99, 82, 62, (218,317,0): 102, 85, 65, (218,318,0): 106, 89, 69, (218,319,0): 108, 91, 71, (218,320,0): 113, 98, 77, (218,321,0): 111, 96, 73, (218,322,0): 109, 94, 71, (218,323,0): 105, 90, 67, (218,324,0): 102, 88, 62, (218,325,0): 98, 83, 60, (218,326,0): 96, 81, 60, (218,327,0): 95, 79, 63, (218,328,0): 95, 79, 66, (218,329,0): 96, 80, 67, (218,330,0): 98, 82, 69, (218,331,0): 101, 85, 69, (218,332,0): 107, 92, 71, (218,333,0): 116, 104, 78, (218,334,0): 131, 118, 86, (218,335,0): 137, 130, 88, (218,336,0): 152, 153, 95, (218,337,0): 162, 169, 101, (218,338,0): 169, 179, 110, (218,339,0): 166, 179, 107, (218,340,0): 163, 179, 104, (218,341,0): 166, 187, 108, (218,342,0): 171, 196, 115, (218,343,0): 172, 199, 118, (218,344,0): 178, 207, 125, (218,345,0): 178, 210, 127, (218,346,0): 181, 213, 130, (218,347,0): 186, 217, 137, (218,348,0): 190, 221, 143, (218,349,0): 191, 222, 144, (218,350,0): 191, 219, 144, (218,351,0): 186, 217, 141, (218,352,0): 185, 215, 141, (218,353,0): 182, 212, 138, (218,354,0): 178, 208, 134, (218,355,0): 174, 206, 131, (218,356,0): 172, 204, 129, (218,357,0): 171, 203, 128, (218,358,0): 169, 201, 126, (218,359,0): 166, 200, 124, (218,360,0): 169, 203, 127, (218,361,0): 168, 205, 128, (218,362,0): 170, 207, 130, (218,363,0): 171, 208, 131, (218,364,0): 172, 209, 132, (218,365,0): 172, 210, 133, (218,366,0): 171, 209, 132, (218,367,0): 169, 210, 132, (218,368,0): 173, 214, 138, (218,369,0): 173, 215, 139, (218,370,0): 174, 216, 140, (218,371,0): 174, 218, 141, (218,372,0): 174, 218, 141, (218,373,0): 171, 218, 140, (218,374,0): 170, 217, 139, (218,375,0): 168, 217, 138, (218,376,0): 171, 222, 143, (218,377,0): 176, 229, 149, (218,378,0): 183, 236, 156, (218,379,0): 187, 242, 161, (218,380,0): 188, 243, 162, (218,381,0): 186, 243, 162, (218,382,0): 186, 243, 162, (218,383,0): 187, 244, 163, (218,384,0): 197, 251, 173, (218,385,0): 200, 252, 178, (218,386,0): 203, 254, 185, (218,387,0): 206, 255, 191, (218,388,0): 210, 255, 200, (218,389,0): 213, 255, 204, (218,390,0): 215, 255, 209, (218,391,0): 217, 255, 209, (218,392,0): 218, 255, 211, (218,393,0): 220, 255, 213, (218,394,0): 225, 255, 219, (218,395,0): 229, 255, 225, (218,396,0): 230, 255, 231, (218,397,0): 232, 255, 235, (218,398,0): 232, 253, 238, (218,399,0): 231, 253, 240, (218,400,0): 234, 255, 244, (218,401,0): 233, 255, 244, (218,402,0): 234, 255, 246, (218,403,0): 234, 255, 248, (218,404,0): 235, 254, 250, (218,405,0): 235, 254, 252, (218,406,0): 235, 253, 253, (218,407,0): 235, 253, 255, (218,408,0): 237, 255, 255, (218,409,0): 237, 255, 255, (218,410,0): 235, 255, 255, (218,411,0): 232, 253, 254, (218,412,0): 228, 254, 251, (218,413,0): 225, 254, 249, (218,414,0): 224, 253, 248, (218,415,0): 221, 254, 247, (218,416,0): 219, 255, 249, (218,417,0): 217, 255, 251, (218,418,0): 217, 255, 253, (218,419,0): 219, 255, 253, (218,420,0): 219, 255, 253, (218,421,0): 220, 254, 255, (218,422,0): 222, 253, 255, (218,423,0): 222, 253, 255, (218,424,0): 224, 255, 255, (218,425,0): 222, 255, 255, (218,426,0): 222, 255, 255, (218,427,0): 221, 255, 255, (218,428,0): 217, 255, 255, (218,429,0): 214, 254, 255, (218,430,0): 211, 252, 254, (218,431,0): 207, 251, 252, (218,432,0): 202, 248, 246, (218,433,0): 204, 254, 251, (218,434,0): 206, 255, 255, (218,435,0): 201, 255, 253, (218,436,0): 199, 255, 252, (218,437,0): 201, 255, 253, (218,438,0): 199, 249, 246, (218,439,0): 195, 241, 239, (218,440,0): 181, 220, 219, (218,441,0): 168, 200, 199, (218,442,0): 154, 180, 177, (218,443,0): 147, 170, 164, (218,444,0): 141, 162, 155, (218,445,0): 133, 155, 143, (218,446,0): 128, 150, 138, (218,447,0): 129, 149, 138, (218,448,0): 128, 148, 139, (218,449,0): 127, 147, 138, (218,450,0): 127, 148, 141, (218,451,0): 131, 154, 148, (218,452,0): 135, 162, 157, (218,453,0): 142, 171, 167, (218,454,0): 148, 178, 178, (218,455,0): 150, 181, 183, (218,456,0): 152, 187, 191, (218,457,0): 151, 188, 194, (218,458,0): 152, 189, 198, (218,459,0): 151, 187, 199, (218,460,0): 149, 185, 199, (218,461,0): 144, 182, 195, (218,462,0): 141, 177, 193, (218,463,0): 138, 174, 190, (218,464,0): 135, 168, 185, (218,465,0): 134, 167, 184, (218,466,0): 134, 167, 184, (218,467,0): 136, 169, 184, (218,468,0): 140, 172, 187, (218,469,0): 141, 173, 188, (218,470,0): 142, 169, 186, (218,471,0): 139, 167, 181, (218,472,0): 133, 159, 174, (218,473,0): 127, 153, 166, (218,474,0): 124, 146, 160, (218,475,0): 120, 142, 156, (218,476,0): 120, 139, 154, (218,477,0): 119, 138, 152, (218,478,0): 117, 136, 150, (218,479,0): 115, 134, 148, (218,480,0): 113, 135, 148, (218,481,0): 114, 136, 149, (218,482,0): 116, 139, 153, (218,483,0): 117, 143, 156, (218,484,0): 118, 146, 158, (218,485,0): 118, 147, 161, (218,486,0): 117, 149, 162, (218,487,0): 117, 149, 162, (218,488,0): 118, 152, 164, (218,489,0): 118, 151, 166, (218,490,0): 120, 153, 168, (218,491,0): 122, 153, 171, (218,492,0): 126, 155, 173, (218,493,0): 127, 156, 174, (218,494,0): 129, 158, 176, (218,495,0): 130, 157, 174, (218,496,0): 138, 161, 175, (218,497,0): 138, 162, 172, (218,498,0): 138, 160, 173, (218,499,0): 136, 158, 169, (218,500,0): 134, 156, 167, (218,501,0): 131, 154, 162, (218,502,0): 130, 150, 157, (218,503,0): 128, 149, 154, (218,504,0): 120, 141, 146, (218,505,0): 120, 139, 143, (218,506,0): 118, 138, 139, (218,507,0): 116, 136, 135, (218,508,0): 115, 133, 133, (218,509,0): 115, 134, 132, (218,510,0): 115, 133, 133, (218,511,0): 118, 132, 132, (218,512,0): 121, 132, 128, (218,513,0): 118, 127, 124, (218,514,0): 112, 121, 118, (218,515,0): 105, 114, 113, (218,516,0): 100, 109, 108, (218,517,0): 97, 106, 105, (218,518,0): 96, 105, 104, (218,519,0): 96, 104, 106, (218,520,0): 96, 104, 106, (218,521,0): 96, 104, 107, (218,522,0): 97, 105, 108, (218,523,0): 97, 105, 108, (218,524,0): 98, 106, 109, (218,525,0): 98, 105, 111, (218,526,0): 99, 106, 112, (218,527,0): 99, 107, 110, (218,528,0): 98, 106, 109, (218,529,0): 97, 105, 107, (218,530,0): 96, 104, 106, (218,531,0): 95, 103, 105, (218,532,0): 95, 103, 105, (218,533,0): 95, 105, 107, (218,534,0): 96, 106, 108, (218,535,0): 96, 107, 109, (218,536,0): 99, 110, 114, (218,537,0): 99, 110, 114, (218,538,0): 97, 108, 114, (218,539,0): 92, 105, 111, (218,540,0): 91, 104, 110, (218,541,0): 93, 106, 112, (218,542,0): 98, 111, 117, (218,543,0): 102, 117, 124, (218,544,0): 104, 123, 130, (218,545,0): 103, 126, 134, (218,546,0): 109, 129, 138, (218,547,0): 112, 134, 145, (218,548,0): 117, 137, 148, (218,549,0): 118, 140, 151, (218,550,0): 121, 141, 152, (218,551,0): 120, 142, 155, (218,552,0): 121, 140, 154, (218,553,0): 116, 138, 152, (218,554,0): 114, 133, 148, (218,555,0): 111, 133, 147, (218,556,0): 112, 131, 146, (218,557,0): 109, 130, 147, (218,558,0): 108, 127, 144, (218,559,0): 105, 124, 139, (218,560,0): 105, 122, 138, (218,561,0): 107, 123, 138, (218,562,0): 107, 123, 139, (218,563,0): 107, 123, 139, (218,564,0): 107, 120, 137, (218,565,0): 104, 117, 134, (218,566,0): 102, 113, 133, (218,567,0): 102, 110, 129, (218,568,0): 105, 112, 130, (218,569,0): 104, 111, 127, (218,570,0): 103, 109, 123, (218,571,0): 103, 107, 119, (218,572,0): 102, 105, 114, (218,573,0): 100, 103, 110, (218,574,0): 99, 102, 107, (218,575,0): 100, 101, 106, (218,576,0): 99, 93, 103, (218,577,0): 96, 88, 99, (218,578,0): 93, 86, 94, (218,579,0): 94, 84, 93, (218,580,0): 95, 85, 94, (218,581,0): 95, 85, 94, (218,582,0): 95, 84, 92, (218,583,0): 93, 82, 90, (218,584,0): 89, 78, 84, (218,585,0): 89, 76, 83, (218,586,0): 88, 75, 82, (218,587,0): 87, 74, 81, (218,588,0): 89, 74, 79, (218,589,0): 90, 75, 80, (218,590,0): 91, 76, 81, (218,591,0): 91, 76, 81, (218,592,0): 89, 74, 79, (218,593,0): 89, 74, 79, (218,594,0): 89, 72, 78, (218,595,0): 87, 72, 77, (218,596,0): 85, 68, 74, (218,597,0): 81, 66, 71, (218,598,0): 80, 63, 69, (218,599,0): 77, 62, 67, (219,0,0): 42, 30, 44, (219,1,0): 42, 30, 44, (219,2,0): 42, 30, 44, (219,3,0): 42, 30, 44, (219,4,0): 42, 30, 44, (219,5,0): 42, 30, 44, (219,6,0): 42, 30, 44, (219,7,0): 42, 30, 44, (219,8,0): 44, 32, 46, (219,9,0): 44, 32, 46, (219,10,0): 44, 32, 46, (219,11,0): 45, 33, 47, (219,12,0): 45, 33, 47, (219,13,0): 46, 34, 48, (219,14,0): 46, 34, 48, (219,15,0): 46, 34, 46, (219,16,0): 45, 33, 45, (219,17,0): 45, 33, 43, (219,18,0): 45, 33, 43, (219,19,0): 45, 33, 43, (219,20,0): 45, 33, 43, (219,21,0): 45, 33, 43, (219,22,0): 46, 33, 43, (219,23,0): 46, 33, 43, (219,24,0): 50, 34, 45, (219,25,0): 50, 34, 45, (219,26,0): 51, 33, 45, (219,27,0): 52, 34, 46, (219,28,0): 52, 34, 46, (219,29,0): 53, 35, 47, (219,30,0): 53, 35, 47, (219,31,0): 53, 35, 47, (219,32,0): 57, 40, 50, (219,33,0): 57, 40, 50, (219,34,0): 56, 39, 49, (219,35,0): 55, 38, 48, (219,36,0): 55, 38, 48, (219,37,0): 54, 37, 47, (219,38,0): 53, 36, 46, (219,39,0): 53, 36, 46, (219,40,0): 55, 38, 48, (219,41,0): 55, 38, 48, (219,42,0): 55, 38, 48, (219,43,0): 55, 38, 48, (219,44,0): 55, 38, 48, (219,45,0): 55, 38, 48, (219,46,0): 55, 38, 48, (219,47,0): 55, 38, 48, (219,48,0): 55, 38, 48, (219,49,0): 55, 38, 48, (219,50,0): 55, 38, 48, (219,51,0): 55, 38, 48, (219,52,0): 57, 37, 46, (219,53,0): 57, 37, 46, (219,54,0): 57, 38, 44, (219,55,0): 57, 38, 44, (219,56,0): 58, 37, 44, (219,57,0): 58, 37, 44, (219,58,0): 59, 36, 42, (219,59,0): 60, 37, 43, (219,60,0): 60, 38, 41, (219,61,0): 61, 39, 42, (219,62,0): 63, 38, 42, (219,63,0): 64, 39, 43, (219,64,0): 64, 39, 45, (219,65,0): 64, 39, 45, (219,66,0): 64, 39, 43, (219,67,0): 65, 40, 44, (219,68,0): 66, 39, 44, (219,69,0): 67, 40, 45, (219,70,0): 69, 40, 44, (219,71,0): 69, 40, 44, (219,72,0): 69, 40, 42, (219,73,0): 69, 40, 42, (219,74,0): 70, 40, 42, (219,75,0): 71, 41, 43, (219,76,0): 72, 40, 41, (219,77,0): 72, 40, 41, (219,78,0): 72, 40, 41, (219,79,0): 72, 40, 41, (219,80,0): 69, 38, 43, (219,81,0): 69, 38, 43, (219,82,0): 69, 38, 43, (219,83,0): 68, 37, 42, (219,84,0): 67, 36, 41, (219,85,0): 67, 36, 41, (219,86,0): 67, 36, 41, (219,87,0): 66, 35, 40, (219,88,0): 66, 35, 40, (219,89,0): 66, 35, 40, (219,90,0): 66, 35, 40, (219,91,0): 65, 34, 39, (219,92,0): 65, 34, 39, (219,93,0): 64, 33, 38, (219,94,0): 64, 33, 38, (219,95,0): 63, 34, 38, (219,96,0): 62, 33, 37, (219,97,0): 60, 34, 37, (219,98,0): 60, 34, 37, (219,99,0): 59, 33, 36, (219,100,0): 58, 32, 35, (219,101,0): 58, 32, 35, (219,102,0): 58, 32, 35, (219,103,0): 57, 31, 34, (219,104,0): 56, 30, 33, (219,105,0): 56, 30, 33, (219,106,0): 56, 30, 33, (219,107,0): 56, 30, 33, (219,108,0): 56, 30, 33, (219,109,0): 56, 30, 33, (219,110,0): 56, 30, 33, (219,111,0): 56, 30, 33, (219,112,0): 59, 30, 32, (219,113,0): 59, 30, 32, (219,114,0): 59, 30, 32, (219,115,0): 59, 30, 32, (219,116,0): 59, 30, 32, (219,117,0): 59, 30, 32, (219,118,0): 57, 31, 32, (219,119,0): 57, 31, 32, (219,120,0): 56, 32, 32, (219,121,0): 53, 29, 29, (219,122,0): 50, 26, 26, (219,123,0): 44, 23, 22, (219,124,0): 42, 21, 20, (219,125,0): 42, 21, 20, (219,126,0): 43, 22, 21, (219,127,0): 44, 23, 22, (219,128,0): 45, 23, 25, (219,129,0): 45, 23, 25, (219,130,0): 45, 23, 25, (219,131,0): 45, 23, 25, (219,132,0): 45, 24, 23, (219,133,0): 45, 24, 23, (219,134,0): 45, 24, 23, (219,135,0): 45, 24, 23, (219,136,0): 47, 26, 23, (219,137,0): 48, 27, 24, (219,138,0): 48, 27, 22, (219,139,0): 48, 27, 22, (219,140,0): 49, 28, 23, (219,141,0): 49, 28, 23, (219,142,0): 50, 30, 23, (219,143,0): 50, 30, 23, (219,144,0): 51, 30, 27, (219,145,0): 51, 30, 27, (219,146,0): 51, 30, 27, (219,147,0): 51, 30, 27, (219,148,0): 51, 30, 27, (219,149,0): 51, 30, 27, (219,150,0): 51, 30, 27, (219,151,0): 51, 30, 27, (219,152,0): 54, 33, 30, (219,153,0): 54, 33, 30, (219,154,0): 54, 33, 30, (219,155,0): 54, 33, 30, (219,156,0): 54, 33, 30, (219,157,0): 54, 33, 30, (219,158,0): 54, 33, 30, (219,159,0): 54, 33, 30, (219,160,0): 56, 31, 27, (219,161,0): 56, 31, 27, (219,162,0): 56, 31, 27, (219,163,0): 56, 31, 27, (219,164,0): 56, 31, 27, (219,165,0): 56, 31, 27, (219,166,0): 56, 31, 27, (219,167,0): 56, 31, 27, (219,168,0): 54, 29, 25, (219,169,0): 54, 29, 25, (219,170,0): 54, 29, 25, (219,171,0): 54, 29, 25, (219,172,0): 54, 29, 25, (219,173,0): 54, 29, 25, (219,174,0): 54, 29, 25, (219,175,0): 54, 29, 24, (219,176,0): 56, 31, 26, (219,177,0): 56, 31, 24, (219,178,0): 56, 31, 24, (219,179,0): 56, 31, 24, (219,180,0): 56, 31, 24, (219,181,0): 56, 31, 24, (219,182,0): 56, 31, 24, (219,183,0): 56, 31, 24, (219,184,0): 56, 31, 24, (219,185,0): 56, 31, 24, (219,186,0): 55, 30, 23, (219,187,0): 55, 30, 23, (219,188,0): 54, 29, 22, (219,189,0): 54, 29, 22, (219,190,0): 53, 28, 21, (219,191,0): 53, 28, 21, (219,192,0): 55, 30, 23, (219,193,0): 55, 30, 23, (219,194,0): 55, 30, 23, (219,195,0): 55, 30, 23, (219,196,0): 55, 30, 23, (219,197,0): 55, 30, 23, (219,198,0): 55, 30, 23, (219,199,0): 55, 30, 23, (219,200,0): 56, 31, 24, (219,201,0): 56, 31, 24, (219,202,0): 56, 31, 24, (219,203,0): 56, 31, 24, (219,204,0): 56, 31, 24, (219,205,0): 56, 31, 24, (219,206,0): 56, 31, 24, (219,207,0): 56, 32, 22, (219,208,0): 60, 32, 21, (219,209,0): 61, 33, 21, (219,210,0): 61, 33, 21, (219,211,0): 61, 33, 21, (219,212,0): 62, 34, 22, (219,213,0): 63, 35, 21, (219,214,0): 63, 35, 21, (219,215,0): 63, 35, 21, (219,216,0): 66, 39, 22, (219,217,0): 68, 41, 24, (219,218,0): 71, 44, 25, (219,219,0): 73, 46, 27, (219,220,0): 75, 48, 29, (219,221,0): 75, 48, 29, (219,222,0): 75, 48, 29, (219,223,0): 75, 47, 26, (219,224,0): 76, 45, 24, (219,225,0): 78, 46, 23, (219,226,0): 79, 47, 24, (219,227,0): 82, 50, 25, (219,228,0): 84, 53, 25, (219,229,0): 86, 55, 26, (219,230,0): 88, 57, 28, (219,231,0): 89, 58, 27, (219,232,0): 91, 60, 31, (219,233,0): 90, 59, 30, (219,234,0): 89, 58, 29, (219,235,0): 87, 56, 28, (219,236,0): 85, 53, 28, (219,237,0): 83, 51, 28, (219,238,0): 81, 49, 28, (219,239,0): 80, 48, 27, (219,240,0): 81, 50, 30, (219,241,0): 82, 51, 31, (219,242,0): 81, 53, 31, (219,243,0): 83, 55, 33, (219,244,0): 85, 57, 33, (219,245,0): 86, 58, 34, (219,246,0): 87, 61, 34, (219,247,0): 87, 62, 32, (219,248,0): 87, 64, 32, (219,249,0): 87, 64, 32, (219,250,0): 88, 65, 31, (219,251,0): 88, 66, 29, (219,252,0): 88, 68, 31, (219,253,0): 89, 70, 30, (219,254,0): 91, 72, 32, (219,255,0): 92, 73, 33, (219,256,0): 101, 81, 44, (219,257,0): 103, 84, 44, (219,258,0): 106, 87, 45, (219,259,0): 109, 90, 47, (219,260,0): 115, 94, 47, (219,261,0): 117, 97, 47, (219,262,0): 118, 98, 45, (219,263,0): 119, 100, 44, (219,264,0): 122, 101, 44, (219,265,0): 122, 101, 44, (219,266,0): 125, 103, 46, (219,267,0): 130, 108, 51, (219,268,0): 133, 110, 56, (219,269,0): 132, 109, 55, (219,270,0): 128, 102, 51, (219,271,0): 122, 97, 43, (219,272,0): 122, 95, 40, (219,273,0): 122, 96, 39, (219,274,0): 123, 97, 40, (219,275,0): 123, 97, 40, (219,276,0): 122, 97, 41, (219,277,0): 123, 98, 42, (219,278,0): 125, 100, 44, (219,279,0): 127, 102, 48, (219,280,0): 126, 103, 49, (219,281,0): 126, 103, 51, (219,282,0): 125, 104, 51, (219,283,0): 125, 104, 51, (219,284,0): 125, 104, 51, (219,285,0): 125, 104, 51, (219,286,0): 125, 105, 54, (219,287,0): 125, 105, 54, (219,288,0): 124, 107, 55, (219,289,0): 124, 106, 56, (219,290,0): 123, 105, 57, (219,291,0): 121, 103, 55, (219,292,0): 116, 99, 53, (219,293,0): 113, 96, 52, (219,294,0): 109, 92, 49, (219,295,0): 107, 89, 49, (219,296,0): 105, 90, 51, (219,297,0): 105, 89, 53, (219,298,0): 103, 88, 55, (219,299,0): 103, 88, 55, (219,300,0): 102, 87, 58, (219,301,0): 101, 86, 57, (219,302,0): 100, 86, 59, (219,303,0): 99, 85, 58, (219,304,0): 102, 87, 58, (219,305,0): 102, 87, 58, (219,306,0): 102, 86, 60, (219,307,0): 101, 85, 59, (219,308,0): 101, 85, 59, (219,309,0): 100, 84, 58, (219,310,0): 100, 84, 59, (219,311,0): 100, 84, 59, (219,312,0): 97, 81, 58, (219,313,0): 97, 81, 58, (219,314,0): 97, 81, 58, (219,315,0): 97, 81, 58, (219,316,0): 99, 82, 62, (219,317,0): 102, 85, 65, (219,318,0): 105, 88, 68, (219,319,0): 106, 89, 69, (219,320,0): 112, 97, 76, (219,321,0): 111, 96, 75, (219,322,0): 108, 93, 72, (219,323,0): 104, 89, 66, (219,324,0): 101, 87, 61, (219,325,0): 97, 82, 59, (219,326,0): 95, 80, 59, (219,327,0): 93, 78, 59, (219,328,0): 94, 78, 63, (219,329,0): 95, 79, 64, (219,330,0): 97, 81, 66, (219,331,0): 99, 84, 65, (219,332,0): 105, 90, 69, (219,333,0): 115, 101, 74, (219,334,0): 129, 114, 83, (219,335,0): 135, 126, 83, (219,336,0): 150, 150, 90, (219,337,0): 160, 166, 96, (219,338,0): 169, 176, 106, (219,339,0): 168, 178, 105, (219,340,0): 168, 180, 104, (219,341,0): 171, 188, 108, (219,342,0): 173, 195, 113, (219,343,0): 172, 197, 114, (219,344,0): 172, 199, 118, (219,345,0): 175, 204, 122, (219,346,0): 180, 209, 129, (219,347,0): 184, 215, 137, (219,348,0): 189, 217, 142, (219,349,0): 189, 217, 143, (219,350,0): 186, 213, 142, (219,351,0): 184, 211, 140, (219,352,0): 185, 212, 143, (219,353,0): 178, 208, 138, (219,354,0): 174, 201, 132, (219,355,0): 170, 200, 130, (219,356,0): 169, 199, 129, (219,357,0): 167, 198, 128, (219,358,0): 164, 194, 124, (219,359,0): 160, 191, 121, (219,360,0): 164, 195, 125, (219,361,0): 165, 198, 127, (219,362,0): 167, 200, 129, (219,363,0): 168, 204, 132, (219,364,0): 172, 205, 134, (219,365,0): 171, 207, 135, (219,366,0): 172, 208, 136, (219,367,0): 171, 209, 136, (219,368,0): 171, 209, 136, (219,369,0): 171, 211, 138, (219,370,0): 173, 213, 142, (219,371,0): 173, 215, 141, (219,372,0): 174, 216, 144, (219,373,0): 172, 216, 141, (219,374,0): 170, 213, 141, (219,375,0): 167, 213, 138, (219,376,0): 169, 217, 143, (219,377,0): 173, 224, 147, (219,378,0): 180, 231, 156, (219,379,0): 184, 237, 159, (219,380,0): 185, 237, 162, (219,381,0): 183, 237, 159, (219,382,0): 184, 238, 162, (219,383,0): 183, 240, 163, (219,384,0): 195, 252, 175, (219,385,0): 196, 252, 177, (219,386,0): 199, 255, 184, (219,387,0): 205, 255, 193, (219,388,0): 208, 255, 201, (219,389,0): 211, 255, 206, (219,390,0): 214, 255, 211, (219,391,0): 215, 255, 212, (219,392,0): 217, 255, 212, (219,393,0): 219, 255, 215, (219,394,0): 224, 255, 221, (219,395,0): 227, 255, 226, (219,396,0): 229, 255, 234, (219,397,0): 231, 255, 239, (219,398,0): 231, 255, 242, (219,399,0): 231, 254, 244, (219,400,0): 229, 255, 247, (219,401,0): 229, 255, 247, (219,402,0): 230, 255, 249, (219,403,0): 230, 255, 251, (219,404,0): 232, 254, 252, (219,405,0): 232, 253, 254, (219,406,0): 232, 253, 255, (219,407,0): 232, 253, 255, (219,408,0): 235, 255, 255, (219,409,0): 233, 255, 255, (219,410,0): 230, 255, 255, (219,411,0): 227, 255, 255, (219,412,0): 224, 254, 254, (219,413,0): 219, 254, 250, (219,414,0): 217, 252, 248, (219,415,0): 216, 252, 248, (219,416,0): 217, 255, 253, (219,417,0): 216, 255, 255, (219,418,0): 217, 255, 255, (219,419,0): 217, 255, 255, (219,420,0): 219, 255, 255, (219,421,0): 219, 255, 255, (219,422,0): 219, 254, 255, (219,423,0): 219, 254, 255, (219,424,0): 220, 253, 255, (219,425,0): 220, 255, 255, (219,426,0): 220, 255, 255, (219,427,0): 218, 255, 255, (219,428,0): 215, 254, 255, (219,429,0): 212, 253, 255, (219,430,0): 208, 251, 255, (219,431,0): 206, 251, 254, (219,432,0): 204, 249, 252, (219,433,0): 206, 255, 255, (219,434,0): 207, 255, 255, (219,435,0): 202, 255, 255, (219,436,0): 202, 255, 255, (219,437,0): 202, 255, 255, (219,438,0): 199, 249, 250, (219,439,0): 193, 237, 238, (219,440,0): 181, 216, 218, (219,441,0): 167, 197, 197, (219,442,0): 153, 178, 175, (219,443,0): 145, 166, 161, (219,444,0): 138, 157, 151, (219,445,0): 127, 147, 136, (219,446,0): 122, 140, 128, (219,447,0): 119, 139, 128, (219,448,0): 121, 140, 134, (219,449,0): 120, 141, 136, (219,450,0): 122, 145, 139, (219,451,0): 128, 153, 149, (219,452,0): 137, 166, 162, (219,453,0): 146, 176, 174, (219,454,0): 150, 181, 183, (219,455,0): 149, 183, 185, (219,456,0): 153, 188, 194, (219,457,0): 150, 187, 195, (219,458,0): 150, 186, 198, (219,459,0): 148, 184, 198, (219,460,0): 145, 181, 197, (219,461,0): 143, 176, 195, (219,462,0): 139, 172, 191, (219,463,0): 137, 170, 189, (219,464,0): 133, 166, 183, (219,465,0): 132, 165, 182, (219,466,0): 131, 164, 181, (219,467,0): 134, 167, 184, (219,468,0): 138, 170, 185, (219,469,0): 138, 170, 185, (219,470,0): 139, 166, 183, (219,471,0): 136, 163, 180, (219,472,0): 128, 154, 169, (219,473,0): 123, 149, 164, (219,474,0): 119, 141, 155, (219,475,0): 115, 137, 151, (219,476,0): 116, 135, 150, (219,477,0): 114, 133, 148, (219,478,0): 112, 131, 145, (219,479,0): 110, 129, 143, (219,480,0): 108, 130, 144, (219,481,0): 110, 132, 146, (219,482,0): 112, 135, 151, (219,483,0): 113, 139, 154, (219,484,0): 116, 144, 158, (219,485,0): 118, 147, 163, (219,486,0): 118, 150, 165, (219,487,0): 118, 151, 166, (219,488,0): 119, 152, 167, (219,489,0): 120, 153, 170, (219,490,0): 122, 155, 172, (219,491,0): 124, 157, 176, (219,492,0): 127, 158, 178, (219,493,0): 130, 158, 179, (219,494,0): 132, 160, 181, (219,495,0): 133, 162, 180, (219,496,0): 140, 166, 181, (219,497,0): 139, 166, 177, (219,498,0): 139, 163, 175, (219,499,0): 136, 160, 172, (219,500,0): 133, 157, 169, (219,501,0): 131, 153, 164, (219,502,0): 128, 151, 159, (219,503,0): 127, 150, 156, (219,504,0): 119, 142, 148, (219,505,0): 120, 141, 146, (219,506,0): 118, 139, 142, (219,507,0): 116, 136, 137, (219,508,0): 115, 135, 136, (219,509,0): 114, 134, 133, (219,510,0): 114, 134, 133, (219,511,0): 115, 134, 132, (219,512,0): 118, 130, 128, (219,513,0): 114, 126, 122, (219,514,0): 109, 119, 118, (219,515,0): 102, 114, 112, (219,516,0): 99, 109, 108, (219,517,0): 96, 108, 106, (219,518,0): 97, 107, 108, (219,519,0): 97, 109, 109, (219,520,0): 99, 109, 111, (219,521,0): 98, 109, 111, (219,522,0): 99, 109, 111, (219,523,0): 99, 110, 112, (219,524,0): 101, 110, 115, (219,525,0): 100, 111, 115, (219,526,0): 101, 110, 115, (219,527,0): 102, 111, 116, (219,528,0): 103, 112, 117, (219,529,0): 103, 112, 117, (219,530,0): 102, 111, 116, (219,531,0): 101, 112, 116, (219,532,0): 101, 112, 116, (219,533,0): 101, 112, 116, (219,534,0): 102, 113, 119, (219,535,0): 100, 113, 119, (219,536,0): 100, 113, 121, (219,537,0): 101, 116, 123, (219,538,0): 102, 117, 124, (219,539,0): 101, 115, 124, (219,540,0): 99, 113, 122, (219,541,0): 98, 115, 123, (219,542,0): 101, 118, 126, (219,543,0): 103, 122, 129, (219,544,0): 106, 126, 135, (219,545,0): 105, 128, 136, (219,546,0): 106, 128, 139, (219,547,0): 109, 131, 142, (219,548,0): 111, 133, 144, (219,549,0): 114, 136, 147, (219,550,0): 116, 138, 151, (219,551,0): 118, 140, 153, (219,552,0): 118, 140, 154, (219,553,0): 116, 138, 152, (219,554,0): 113, 135, 149, (219,555,0): 112, 134, 148, (219,556,0): 111, 132, 149, (219,557,0): 107, 128, 145, (219,558,0): 102, 123, 140, (219,559,0): 99, 118, 133, (219,560,0): 98, 116, 130, (219,561,0): 100, 116, 129, (219,562,0): 103, 119, 132, (219,563,0): 104, 120, 135, (219,564,0): 105, 118, 134, (219,565,0): 103, 115, 131, (219,566,0): 101, 109, 128, (219,567,0): 99, 108, 125, (219,568,0): 99, 106, 122, (219,569,0): 100, 106, 120, (219,570,0): 100, 104, 116, (219,571,0): 99, 103, 114, (219,572,0): 98, 101, 108, (219,573,0): 96, 99, 104, (219,574,0): 95, 99, 102, (219,575,0): 97, 96, 101, (219,576,0): 98, 93, 100, (219,577,0): 97, 87, 98, (219,578,0): 93, 83, 92, (219,579,0): 91, 81, 90, (219,580,0): 92, 82, 91, (219,581,0): 92, 82, 91, (219,582,0): 91, 80, 88, (219,583,0): 89, 78, 86, (219,584,0): 88, 75, 82, (219,585,0): 87, 74, 81, (219,586,0): 86, 73, 80, (219,587,0): 87, 72, 79, (219,588,0): 87, 72, 77, (219,589,0): 87, 72, 77, (219,590,0): 88, 73, 78, (219,591,0): 88, 73, 78, (219,592,0): 84, 69, 74, (219,593,0): 84, 69, 74, (219,594,0): 84, 69, 74, (219,595,0): 84, 69, 74, (219,596,0): 83, 68, 73, (219,597,0): 81, 66, 71, (219,598,0): 79, 64, 69, (219,599,0): 78, 63, 68, (220,0,0): 42, 30, 44, (220,1,0): 42, 30, 44, (220,2,0): 42, 30, 44, (220,3,0): 42, 30, 44, (220,4,0): 42, 30, 44, (220,5,0): 42, 30, 44, (220,6,0): 42, 30, 44, (220,7,0): 42, 30, 44, (220,8,0): 44, 32, 46, (220,9,0): 44, 32, 46, (220,10,0): 44, 32, 46, (220,11,0): 45, 33, 47, (220,12,0): 45, 33, 47, (220,13,0): 46, 34, 48, (220,14,0): 46, 34, 48, (220,15,0): 46, 34, 46, (220,16,0): 45, 33, 45, (220,17,0): 45, 33, 43, (220,18,0): 45, 33, 43, (220,19,0): 45, 33, 43, (220,20,0): 45, 33, 43, (220,21,0): 45, 33, 43, (220,22,0): 46, 33, 43, (220,23,0): 46, 33, 43, (220,24,0): 50, 34, 45, (220,25,0): 50, 34, 45, (220,26,0): 51, 33, 45, (220,27,0): 52, 34, 46, (220,28,0): 52, 34, 46, (220,29,0): 53, 35, 47, (220,30,0): 53, 35, 47, (220,31,0): 53, 35, 47, (220,32,0): 57, 40, 50, (220,33,0): 57, 40, 50, (220,34,0): 56, 39, 49, (220,35,0): 55, 38, 48, (220,36,0): 55, 38, 48, (220,37,0): 54, 37, 47, (220,38,0): 53, 36, 46, (220,39,0): 53, 36, 46, (220,40,0): 55, 38, 48, (220,41,0): 55, 38, 48, (220,42,0): 55, 38, 48, (220,43,0): 55, 38, 48, (220,44,0): 55, 38, 48, (220,45,0): 55, 38, 48, (220,46,0): 55, 38, 48, (220,47,0): 55, 38, 48, (220,48,0): 55, 38, 48, (220,49,0): 55, 38, 48, (220,50,0): 55, 38, 48, (220,51,0): 55, 38, 48, (220,52,0): 57, 37, 46, (220,53,0): 57, 37, 46, (220,54,0): 57, 38, 44, (220,55,0): 57, 38, 44, (220,56,0): 58, 37, 44, (220,57,0): 59, 38, 45, (220,58,0): 60, 37, 43, (220,59,0): 61, 38, 44, (220,60,0): 61, 39, 42, (220,61,0): 62, 40, 43, (220,62,0): 64, 39, 43, (220,63,0): 64, 39, 43, (220,64,0): 66, 39, 46, (220,65,0): 66, 39, 46, (220,66,0): 66, 39, 44, (220,67,0): 67, 40, 45, (220,68,0): 69, 40, 45, (220,69,0): 70, 41, 46, (220,70,0): 70, 41, 45, (220,71,0): 70, 41, 45, (220,72,0): 72, 42, 44, (220,73,0): 72, 42, 44, (220,74,0): 73, 41, 44, (220,75,0): 72, 40, 43, (220,76,0): 72, 40, 41, (220,77,0): 72, 40, 41, (220,78,0): 74, 40, 41, (220,79,0): 72, 40, 41, (220,80,0): 70, 39, 44, (220,81,0): 69, 38, 43, (220,82,0): 69, 38, 43, (220,83,0): 69, 38, 43, (220,84,0): 68, 37, 42, (220,85,0): 67, 36, 41, (220,86,0): 67, 36, 41, (220,87,0): 67, 36, 41, (220,88,0): 66, 35, 40, (220,89,0): 66, 35, 40, (220,90,0): 66, 35, 40, (220,91,0): 65, 34, 39, (220,92,0): 65, 34, 39, (220,93,0): 64, 33, 38, (220,94,0): 64, 33, 38, (220,95,0): 63, 34, 38, (220,96,0): 63, 34, 38, (220,97,0): 60, 34, 37, (220,98,0): 60, 34, 37, (220,99,0): 60, 34, 37, (220,100,0): 59, 33, 36, (220,101,0): 58, 32, 35, (220,102,0): 58, 32, 35, (220,103,0): 58, 32, 35, (220,104,0): 56, 30, 33, (220,105,0): 56, 30, 33, (220,106,0): 56, 30, 33, (220,107,0): 56, 30, 33, (220,108,0): 56, 30, 33, (220,109,0): 56, 30, 33, (220,110,0): 56, 30, 33, (220,111,0): 56, 30, 33, (220,112,0): 60, 31, 33, (220,113,0): 61, 31, 31, (220,114,0): 61, 31, 31, (220,115,0): 61, 31, 31, (220,116,0): 60, 32, 31, (220,117,0): 60, 32, 31, (220,118,0): 58, 32, 31, (220,119,0): 58, 32, 31, (220,120,0): 58, 32, 31, (220,121,0): 55, 31, 29, (220,122,0): 52, 28, 26, (220,123,0): 49, 25, 23, (220,124,0): 45, 24, 21, (220,125,0): 45, 24, 21, (220,126,0): 45, 24, 21, (220,127,0): 46, 25, 24, (220,128,0): 46, 24, 26, (220,129,0): 46, 24, 26, (220,130,0): 46, 24, 26, (220,131,0): 46, 24, 26, (220,132,0): 46, 25, 24, (220,133,0): 46, 25, 24, (220,134,0): 46, 25, 24, (220,135,0): 46, 25, 24, (220,136,0): 47, 26, 23, (220,137,0): 48, 27, 24, (220,138,0): 48, 27, 22, (220,139,0): 48, 27, 22, (220,140,0): 49, 28, 23, (220,141,0): 49, 28, 23, (220,142,0): 50, 30, 23, (220,143,0): 50, 30, 23, (220,144,0): 52, 31, 28, (220,145,0): 52, 31, 28, (220,146,0): 52, 31, 28, (220,147,0): 52, 31, 28, (220,148,0): 52, 31, 28, (220,149,0): 52, 31, 28, (220,150,0): 52, 31, 28, (220,151,0): 52, 31, 28, (220,152,0): 52, 31, 28, (220,153,0): 52, 31, 28, (220,154,0): 52, 31, 28, (220,155,0): 52, 31, 28, (220,156,0): 52, 31, 28, (220,157,0): 52, 31, 28, (220,158,0): 52, 31, 28, (220,159,0): 52, 31, 28, (220,160,0): 56, 31, 27, (220,161,0): 56, 31, 27, (220,162,0): 56, 31, 27, (220,163,0): 56, 31, 27, (220,164,0): 56, 31, 27, (220,165,0): 56, 31, 27, (220,166,0): 56, 31, 27, (220,167,0): 56, 31, 27, (220,168,0): 55, 30, 26, (220,169,0): 55, 30, 26, (220,170,0): 55, 30, 26, (220,171,0): 55, 30, 26, (220,172,0): 55, 30, 26, (220,173,0): 55, 30, 26, (220,174,0): 55, 30, 26, (220,175,0): 55, 30, 25, (220,176,0): 56, 31, 26, (220,177,0): 56, 31, 24, (220,178,0): 56, 31, 24, (220,179,0): 56, 31, 24, (220,180,0): 56, 31, 24, (220,181,0): 56, 31, 24, (220,182,0): 56, 31, 24, (220,183,0): 56, 31, 24, (220,184,0): 56, 31, 24, (220,185,0): 56, 31, 24, (220,186,0): 56, 31, 24, (220,187,0): 55, 30, 23, (220,188,0): 55, 30, 23, (220,189,0): 54, 29, 22, (220,190,0): 54, 29, 22, (220,191,0): 54, 29, 22, (220,192,0): 55, 30, 23, (220,193,0): 55, 30, 23, (220,194,0): 55, 30, 23, (220,195,0): 55, 30, 23, (220,196,0): 55, 30, 23, (220,197,0): 55, 30, 23, (220,198,0): 55, 30, 23, (220,199,0): 55, 30, 23, (220,200,0): 56, 31, 24, (220,201,0): 56, 31, 24, (220,202,0): 56, 31, 24, (220,203,0): 56, 31, 24, (220,204,0): 56, 31, 24, (220,205,0): 56, 31, 24, (220,206,0): 56, 31, 24, (220,207,0): 56, 32, 22, (220,208,0): 61, 33, 22, (220,209,0): 61, 33, 21, (220,210,0): 61, 33, 21, (220,211,0): 62, 34, 22, (220,212,0): 63, 35, 21, (220,213,0): 63, 35, 21, (220,214,0): 63, 35, 21, (220,215,0): 64, 37, 20, (220,216,0): 66, 39, 22, (220,217,0): 68, 41, 24, (220,218,0): 71, 44, 25, (220,219,0): 74, 47, 28, (220,220,0): 76, 49, 28, (220,221,0): 76, 49, 28, (220,222,0): 75, 48, 27, (220,223,0): 76, 48, 27, (220,224,0): 76, 45, 24, (220,225,0): 78, 46, 23, (220,226,0): 79, 47, 24, (220,227,0): 81, 49, 24, (220,228,0): 83, 51, 26, (220,229,0): 85, 54, 26, (220,230,0): 87, 56, 28, (220,231,0): 87, 56, 27, (220,232,0): 87, 56, 28, (220,233,0): 86, 55, 27, (220,234,0): 85, 53, 28, (220,235,0): 84, 52, 29, (220,236,0): 82, 50, 29, (220,237,0): 80, 48, 27, (220,238,0): 79, 46, 27, (220,239,0): 78, 45, 26, (220,240,0): 79, 48, 28, (220,241,0): 79, 48, 28, (220,242,0): 79, 51, 30, (220,243,0): 80, 52, 30, (220,244,0): 82, 54, 30, (220,245,0): 84, 56, 32, (220,246,0): 84, 58, 31, (220,247,0): 85, 60, 30, (220,248,0): 86, 63, 31, (220,249,0): 85, 62, 30, (220,250,0): 85, 62, 28, (220,251,0): 86, 64, 27, (220,252,0): 86, 67, 27, (220,253,0): 89, 70, 28, (220,254,0): 92, 73, 31, (220,255,0): 94, 75, 33, (220,256,0): 104, 85, 43, (220,257,0): 106, 87, 44, (220,258,0): 109, 91, 45, (220,259,0): 113, 95, 47, (220,260,0): 118, 98, 48, (220,261,0): 119, 99, 48, (220,262,0): 120, 101, 45, (220,263,0): 120, 101, 43, (220,264,0): 124, 103, 46, (220,265,0): 124, 104, 45, (220,266,0): 127, 105, 47, (220,267,0): 132, 110, 52, (220,268,0): 137, 115, 57, (220,269,0): 138, 116, 59, (220,270,0): 136, 111, 55, (220,271,0): 132, 107, 51, (220,272,0): 128, 102, 45, (220,273,0): 127, 101, 42, (220,274,0): 125, 99, 40, (220,275,0): 124, 98, 39, (220,276,0): 123, 98, 41, (220,277,0): 125, 100, 43, (220,278,0): 126, 101, 44, (220,279,0): 126, 101, 45, (220,280,0): 127, 105, 48, (220,281,0): 128, 105, 51, (220,282,0): 127, 106, 51, (220,283,0): 128, 107, 52, (220,284,0): 128, 107, 52, (220,285,0): 128, 107, 52, (220,286,0): 127, 107, 54, (220,287,0): 127, 107, 54, (220,288,0): 126, 109, 57, (220,289,0): 126, 109, 57, (220,290,0): 125, 107, 57, (220,291,0): 123, 105, 57, (220,292,0): 119, 103, 54, (220,293,0): 116, 99, 53, (220,294,0): 113, 96, 53, (220,295,0): 111, 93, 53, (220,296,0): 108, 93, 54, (220,297,0): 108, 92, 56, (220,298,0): 106, 91, 58, (220,299,0): 105, 90, 57, (220,300,0): 103, 88, 59, (220,301,0): 102, 87, 58, (220,302,0): 100, 86, 59, (220,303,0): 99, 85, 58, (220,304,0): 103, 88, 59, (220,305,0): 103, 88, 59, (220,306,0): 102, 86, 60, (220,307,0): 102, 86, 60, (220,308,0): 101, 85, 59, (220,309,0): 101, 85, 59, (220,310,0): 100, 84, 59, (220,311,0): 100, 84, 59, (220,312,0): 97, 81, 58, (220,313,0): 97, 81, 58, (220,314,0): 98, 82, 59, (220,315,0): 98, 82, 59, (220,316,0): 100, 83, 63, (220,317,0): 102, 85, 65, (220,318,0): 104, 87, 67, (220,319,0): 105, 88, 68, (220,320,0): 110, 95, 76, (220,321,0): 109, 94, 75, (220,322,0): 106, 91, 70, (220,323,0): 103, 88, 65, (220,324,0): 100, 86, 60, (220,325,0): 97, 82, 59, (220,326,0): 95, 78, 58, (220,327,0): 94, 77, 59, (220,328,0): 95, 78, 62, (220,329,0): 96, 79, 63, (220,330,0): 98, 81, 65, (220,331,0): 100, 83, 63, (220,332,0): 105, 89, 66, (220,333,0): 115, 100, 71, (220,334,0): 129, 113, 80, (220,335,0): 135, 124, 79, (220,336,0): 154, 150, 89, (220,337,0): 163, 165, 92, (220,338,0): 172, 176, 102, (220,339,0): 171, 179, 102, (220,340,0): 171, 182, 104, (220,341,0): 175, 190, 109, (220,342,0): 175, 194, 112, (220,343,0): 173, 195, 113, (220,344,0): 172, 197, 116, (220,345,0): 174, 201, 122, (220,346,0): 180, 207, 130, (220,347,0): 183, 211, 136, (220,348,0): 186, 212, 141, (220,349,0): 185, 210, 142, (220,350,0): 183, 208, 142, (220,351,0): 182, 207, 142, (220,352,0): 179, 204, 138, (220,353,0): 173, 200, 133, (220,354,0): 169, 194, 128, (220,355,0): 166, 193, 126, (220,356,0): 167, 194, 127, (220,357,0): 165, 194, 127, (220,358,0): 164, 191, 124, (220,359,0): 159, 188, 121, (220,360,0): 161, 190, 123, (220,361,0): 161, 192, 124, (220,362,0): 165, 196, 128, (220,363,0): 167, 200, 131, (220,364,0): 171, 202, 134, (220,365,0): 172, 205, 136, (220,366,0): 172, 205, 136, (220,367,0): 171, 207, 137, (220,368,0): 166, 203, 133, (220,369,0): 166, 206, 135, (220,370,0): 169, 209, 139, (220,371,0): 171, 213, 141, (220,372,0): 172, 213, 143, (220,373,0): 169, 212, 140, (220,374,0): 167, 210, 139, (220,375,0): 164, 210, 137, (220,376,0): 165, 212, 140, (220,377,0): 169, 220, 145, (220,378,0): 176, 226, 153, (220,379,0): 179, 231, 156, (220,380,0): 180, 232, 158, (220,381,0): 179, 233, 157, (220,382,0): 180, 234, 159, (220,383,0): 179, 236, 159, (220,384,0): 190, 248, 171, (220,385,0): 192, 250, 174, (220,386,0): 195, 252, 183, (220,387,0): 200, 255, 190, (220,388,0): 206, 255, 200, (220,389,0): 209, 255, 205, (220,390,0): 211, 255, 210, (220,391,0): 214, 255, 212, (220,392,0): 213, 254, 212, (220,393,0): 217, 255, 216, (220,394,0): 220, 255, 222, (220,395,0): 223, 255, 227, (220,396,0): 227, 255, 234, (220,397,0): 229, 255, 241, (220,398,0): 229, 255, 244, (220,399,0): 228, 255, 246, (220,400,0): 225, 255, 248, (220,401,0): 224, 255, 250, (220,402,0): 225, 255, 250, (220,403,0): 225, 255, 251, (220,404,0): 226, 255, 253, (220,405,0): 226, 254, 255, (220,406,0): 226, 254, 255, (220,407,0): 226, 254, 255, (220,408,0): 229, 255, 255, (220,409,0): 229, 255, 255, (220,410,0): 226, 255, 255, (220,411,0): 221, 255, 255, (220,412,0): 218, 254, 254, (220,413,0): 215, 254, 251, (220,414,0): 213, 252, 249, (220,415,0): 212, 253, 249, (220,416,0): 215, 255, 254, (220,417,0): 214, 255, 255, (220,418,0): 215, 255, 255, (220,419,0): 215, 255, 255, (220,420,0): 216, 254, 255, (220,421,0): 216, 254, 255, (220,422,0): 216, 254, 255, (220,423,0): 216, 254, 255, (220,424,0): 217, 252, 255, (220,425,0): 216, 253, 255, (220,426,0): 215, 254, 255, (220,427,0): 214, 255, 255, (220,428,0): 211, 254, 255, (220,429,0): 209, 254, 255, (220,430,0): 205, 252, 255, (220,431,0): 204, 252, 255, (220,432,0): 206, 251, 255, (220,433,0): 208, 255, 255, (220,434,0): 208, 255, 255, (220,435,0): 203, 255, 255, (220,436,0): 203, 255, 255, (220,437,0): 205, 255, 255, (220,438,0): 198, 246, 248, (220,439,0): 192, 233, 235, (220,440,0): 181, 215, 217, (220,441,0): 167, 195, 196, (220,442,0): 153, 175, 173, (220,443,0): 143, 162, 158, (220,444,0): 136, 153, 145, (220,445,0): 125, 142, 132, (220,446,0): 118, 134, 123, (220,447,0): 116, 133, 123, (220,448,0): 118, 139, 132, (220,449,0): 118, 140, 137, (220,450,0): 121, 146, 142, (220,451,0): 130, 156, 153, (220,452,0): 138, 168, 166, (220,453,0): 145, 177, 176, (220,454,0): 146, 180, 182, (220,455,0): 145, 180, 184, (220,456,0): 146, 183, 191, (220,457,0): 146, 183, 192, (220,458,0): 146, 182, 196, (220,459,0): 145, 181, 197, (220,460,0): 144, 177, 196, (220,461,0): 142, 173, 194, (220,462,0): 139, 170, 191, (220,463,0): 137, 168, 189, (220,464,0): 133, 166, 185, (220,465,0): 131, 164, 181, (220,466,0): 131, 164, 181, (220,467,0): 132, 165, 182, (220,468,0): 136, 168, 183, (220,469,0): 136, 168, 183, (220,470,0): 136, 164, 178, (220,471,0): 133, 161, 175, (220,472,0): 125, 151, 166, (220,473,0): 120, 146, 161, (220,474,0): 117, 139, 153, (220,475,0): 113, 135, 149, (220,476,0): 113, 132, 146, (220,477,0): 112, 131, 145, (220,478,0): 110, 129, 143, (220,479,0): 108, 127, 142, (220,480,0): 107, 126, 143, (220,481,0): 107, 128, 145, (220,482,0): 109, 132, 150, (220,483,0): 111, 137, 154, (220,484,0): 114, 141, 158, (220,485,0): 118, 147, 165, (220,486,0): 120, 151, 169, (220,487,0): 121, 154, 171, (220,488,0): 120, 153, 170, (220,489,0): 119, 154, 173, (220,490,0): 120, 155, 174, (220,491,0): 124, 156, 177, (220,492,0): 127, 159, 180, (220,493,0): 130, 161, 182, (220,494,0): 132, 163, 184, (220,495,0): 135, 163, 184, (220,496,0): 141, 168, 185, (220,497,0): 139, 167, 179, (220,498,0): 137, 163, 176, (220,499,0): 133, 160, 171, (220,500,0): 129, 156, 167, (220,501,0): 128, 152, 162, (220,502,0): 125, 149, 159, (220,503,0): 124, 149, 156, (220,504,0): 121, 146, 151, (220,505,0): 120, 144, 148, (220,506,0): 118, 142, 146, (220,507,0): 117, 138, 141, (220,508,0): 114, 135, 138, (220,509,0): 113, 134, 135, (220,510,0): 113, 134, 135, (220,511,0): 113, 133, 132, (220,512,0): 116, 130, 130, (220,513,0): 112, 127, 124, (220,514,0): 109, 121, 121, (220,515,0): 102, 116, 116, (220,516,0): 100, 112, 112, (220,517,0): 96, 110, 110, (220,518,0): 97, 108, 110, (220,519,0): 96, 110, 111, (220,520,0): 100, 111, 115, (220,521,0): 98, 112, 115, (220,522,0): 101, 112, 116, (220,523,0): 99, 113, 116, (220,524,0): 102, 113, 119, (220,525,0): 100, 113, 119, (220,526,0): 103, 114, 120, (220,527,0): 103, 114, 120, (220,528,0): 108, 119, 125, (220,529,0): 108, 119, 125, (220,530,0): 108, 119, 125, (220,531,0): 107, 120, 126, (220,532,0): 107, 120, 126, (220,533,0): 105, 120, 125, (220,534,0): 105, 120, 127, (220,535,0): 105, 120, 127, (220,536,0): 103, 117, 126, (220,537,0): 105, 122, 130, (220,538,0): 109, 126, 134, (220,539,0): 109, 127, 137, (220,540,0): 107, 125, 135, (220,541,0): 105, 123, 133, (220,542,0): 105, 123, 133, (220,543,0): 105, 125, 134, (220,544,0): 106, 128, 139, (220,545,0): 105, 129, 139, (220,546,0): 105, 129, 141, (220,547,0): 106, 130, 142, (220,548,0): 108, 132, 144, (220,549,0): 110, 134, 146, (220,550,0): 112, 135, 149, (220,551,0): 114, 137, 151, (220,552,0): 114, 137, 153, (220,553,0): 112, 135, 151, (220,554,0): 110, 133, 149, (220,555,0): 109, 132, 148, (220,556,0): 107, 130, 148, (220,557,0): 103, 126, 144, (220,558,0): 97, 120, 138, (220,559,0): 93, 115, 129, (220,560,0): 92, 110, 122, (220,561,0): 95, 112, 122, (220,562,0): 99, 113, 124, (220,563,0): 100, 114, 127, (220,564,0): 101, 113, 127, (220,565,0): 98, 110, 124, (220,566,0): 97, 106, 123, (220,567,0): 95, 104, 119, (220,568,0): 91, 99, 112, (220,569,0): 92, 98, 110, (220,570,0): 93, 97, 106, (220,571,0): 91, 96, 102, (220,572,0): 91, 94, 99, (220,573,0): 90, 94, 97, (220,574,0): 91, 92, 94, (220,575,0): 91, 91, 93, (220,576,0): 95, 88, 96, (220,577,0): 94, 82, 94, (220,578,0): 90, 78, 88, (220,579,0): 88, 76, 86, (220,580,0): 87, 75, 85, (220,581,0): 87, 75, 85, (220,582,0): 85, 72, 81, (220,583,0): 83, 70, 79, (220,584,0): 89, 74, 81, (220,585,0): 88, 73, 80, (220,586,0): 86, 71, 78, (220,587,0): 86, 69, 77, (220,588,0): 85, 68, 74, (220,589,0): 85, 68, 74, (220,590,0): 86, 69, 75, (220,591,0): 85, 70, 75, (220,592,0): 80, 65, 70, (220,593,0): 78, 66, 70, (220,594,0): 79, 67, 71, (220,595,0): 79, 67, 71, (220,596,0): 79, 67, 71, (220,597,0): 78, 66, 70, (220,598,0): 76, 64, 68, (220,599,0): 75, 63, 67, (221,0,0): 42, 30, 44, (221,1,0): 42, 30, 44, (221,2,0): 42, 30, 44, (221,3,0): 42, 30, 44, (221,4,0): 42, 30, 44, (221,5,0): 42, 30, 44, (221,6,0): 42, 30, 44, (221,7,0): 42, 30, 44, (221,8,0): 44, 32, 46, (221,9,0): 44, 32, 46, (221,10,0): 44, 32, 46, (221,11,0): 45, 33, 47, (221,12,0): 45, 33, 47, (221,13,0): 46, 34, 48, (221,14,0): 46, 34, 48, (221,15,0): 46, 34, 46, (221,16,0): 46, 34, 46, (221,17,0): 46, 34, 44, (221,18,0): 46, 34, 44, (221,19,0): 46, 34, 44, (221,20,0): 46, 34, 44, (221,21,0): 46, 34, 44, (221,22,0): 47, 34, 44, (221,23,0): 47, 34, 44, (221,24,0): 50, 34, 45, (221,25,0): 50, 34, 45, (221,26,0): 51, 33, 45, (221,27,0): 52, 34, 46, (221,28,0): 52, 34, 46, (221,29,0): 53, 35, 47, (221,30,0): 53, 35, 47, (221,31,0): 53, 35, 47, (221,32,0): 56, 39, 49, (221,33,0): 56, 39, 49, (221,34,0): 55, 38, 48, (221,35,0): 55, 38, 48, (221,36,0): 55, 38, 48, (221,37,0): 55, 38, 48, (221,38,0): 54, 37, 47, (221,39,0): 54, 37, 47, (221,40,0): 55, 38, 48, (221,41,0): 55, 38, 48, (221,42,0): 55, 38, 48, (221,43,0): 55, 38, 48, (221,44,0): 55, 38, 48, (221,45,0): 55, 38, 48, (221,46,0): 55, 38, 48, (221,47,0): 55, 38, 48, (221,48,0): 55, 38, 48, (221,49,0): 55, 38, 48, (221,50,0): 55, 38, 48, (221,51,0): 55, 38, 48, (221,52,0): 57, 37, 46, (221,53,0): 57, 37, 46, (221,54,0): 57, 38, 44, (221,55,0): 57, 38, 44, (221,56,0): 59, 38, 45, (221,57,0): 59, 38, 45, (221,58,0): 60, 37, 43, (221,59,0): 61, 38, 44, (221,60,0): 62, 40, 43, (221,61,0): 62, 40, 43, (221,62,0): 64, 39, 43, (221,63,0): 65, 40, 44, (221,64,0): 67, 40, 47, (221,65,0): 67, 40, 47, (221,66,0): 67, 40, 45, (221,67,0): 68, 41, 46, (221,68,0): 70, 41, 46, (221,69,0): 71, 42, 47, (221,70,0): 71, 42, 46, (221,71,0): 71, 42, 46, (221,72,0): 73, 43, 45, (221,73,0): 73, 43, 45, (221,74,0): 73, 41, 44, (221,75,0): 73, 41, 44, (221,76,0): 73, 41, 42, (221,77,0): 72, 40, 41, (221,78,0): 74, 40, 41, (221,79,0): 72, 40, 41, (221,80,0): 71, 39, 44, (221,81,0): 70, 39, 44, (221,82,0): 70, 39, 44, (221,83,0): 69, 38, 43, (221,84,0): 69, 38, 43, (221,85,0): 68, 37, 42, (221,86,0): 68, 37, 42, (221,87,0): 67, 36, 41, (221,88,0): 66, 35, 40, (221,89,0): 66, 35, 40, (221,90,0): 66, 35, 40, (221,91,0): 65, 34, 39, (221,92,0): 65, 34, 39, (221,93,0): 64, 33, 38, (221,94,0): 64, 33, 38, (221,95,0): 63, 34, 38, (221,96,0): 63, 34, 38, (221,97,0): 61, 35, 38, (221,98,0): 61, 35, 38, (221,99,0): 60, 34, 37, (221,100,0): 60, 34, 37, (221,101,0): 59, 33, 36, (221,102,0): 59, 33, 36, (221,103,0): 58, 32, 35, (221,104,0): 58, 32, 35, (221,105,0): 58, 32, 35, (221,106,0): 58, 32, 35, (221,107,0): 58, 32, 35, (221,108,0): 58, 32, 35, (221,109,0): 58, 32, 35, (221,110,0): 58, 32, 35, (221,111,0): 58, 32, 33, (221,112,0): 61, 31, 33, (221,113,0): 61, 31, 31, (221,114,0): 61, 31, 31, (221,115,0): 61, 31, 31, (221,116,0): 60, 32, 31, (221,117,0): 60, 32, 31, (221,118,0): 58, 32, 31, (221,119,0): 58, 32, 31, (221,120,0): 59, 33, 32, (221,121,0): 58, 32, 31, (221,122,0): 55, 31, 29, (221,123,0): 52, 28, 26, (221,124,0): 49, 28, 25, (221,125,0): 48, 27, 24, (221,126,0): 49, 28, 25, (221,127,0): 49, 28, 25, (221,128,0): 47, 25, 27, (221,129,0): 47, 25, 27, (221,130,0): 47, 25, 27, (221,131,0): 47, 25, 27, (221,132,0): 47, 26, 25, (221,133,0): 47, 26, 25, (221,134,0): 47, 26, 25, (221,135,0): 47, 26, 25, (221,136,0): 48, 27, 24, (221,137,0): 48, 27, 24, (221,138,0): 49, 28, 23, (221,139,0): 49, 28, 23, (221,140,0): 50, 29, 24, (221,141,0): 50, 29, 24, (221,142,0): 51, 31, 24, (221,143,0): 51, 31, 24, (221,144,0): 52, 31, 28, (221,145,0): 52, 31, 28, (221,146,0): 52, 31, 28, (221,147,0): 52, 31, 28, (221,148,0): 52, 31, 28, (221,149,0): 52, 31, 28, (221,150,0): 52, 31, 28, (221,151,0): 52, 31, 28, (221,152,0): 52, 31, 28, (221,153,0): 52, 31, 28, (221,154,0): 52, 31, 28, (221,155,0): 52, 31, 28, (221,156,0): 52, 31, 28, (221,157,0): 52, 31, 28, (221,158,0): 52, 31, 28, (221,159,0): 52, 31, 28, (221,160,0): 57, 32, 28, (221,161,0): 57, 32, 28, (221,162,0): 57, 32, 28, (221,163,0): 57, 32, 28, (221,164,0): 57, 32, 28, (221,165,0): 57, 32, 28, (221,166,0): 57, 32, 28, (221,167,0): 57, 32, 28, (221,168,0): 57, 32, 28, (221,169,0): 57, 32, 28, (221,170,0): 57, 32, 28, (221,171,0): 57, 32, 28, (221,172,0): 57, 32, 28, (221,173,0): 57, 32, 28, (221,174,0): 57, 32, 28, (221,175,0): 57, 32, 27, (221,176,0): 57, 32, 27, (221,177,0): 57, 32, 25, (221,178,0): 57, 32, 25, (221,179,0): 57, 32, 25, (221,180,0): 57, 32, 25, (221,181,0): 57, 32, 25, (221,182,0): 57, 32, 25, (221,183,0): 57, 32, 25, (221,184,0): 58, 33, 26, (221,185,0): 57, 32, 25, (221,186,0): 57, 32, 25, (221,187,0): 57, 32, 25, (221,188,0): 56, 31, 24, (221,189,0): 55, 30, 23, (221,190,0): 55, 30, 23, (221,191,0): 55, 30, 23, (221,192,0): 55, 30, 23, (221,193,0): 55, 30, 23, (221,194,0): 55, 30, 23, (221,195,0): 55, 30, 23, (221,196,0): 55, 30, 23, (221,197,0): 55, 30, 23, (221,198,0): 55, 30, 23, (221,199,0): 55, 30, 23, (221,200,0): 57, 32, 25, (221,201,0): 57, 32, 25, (221,202,0): 57, 32, 25, (221,203,0): 57, 32, 25, (221,204,0): 57, 32, 25, (221,205,0): 57, 32, 25, (221,206,0): 57, 32, 25, (221,207,0): 57, 33, 23, (221,208,0): 61, 33, 22, (221,209,0): 62, 34, 22, (221,210,0): 62, 34, 22, (221,211,0): 63, 35, 23, (221,212,0): 63, 35, 21, (221,213,0): 64, 36, 22, (221,214,0): 64, 37, 20, (221,215,0): 64, 37, 20, (221,216,0): 67, 40, 23, (221,217,0): 68, 41, 24, (221,218,0): 70, 43, 24, (221,219,0): 72, 45, 26, (221,220,0): 74, 47, 26, (221,221,0): 75, 48, 27, (221,222,0): 75, 48, 27, (221,223,0): 77, 49, 28, (221,224,0): 76, 45, 24, (221,225,0): 78, 46, 25, (221,226,0): 79, 47, 26, (221,227,0): 81, 49, 26, (221,228,0): 83, 51, 28, (221,229,0): 84, 52, 27, (221,230,0): 85, 53, 28, (221,231,0): 86, 55, 27, (221,232,0): 84, 53, 25, (221,233,0): 84, 52, 27, (221,234,0): 83, 51, 28, (221,235,0): 83, 51, 30, (221,236,0): 82, 49, 30, (221,237,0): 81, 48, 31, (221,238,0): 80, 47, 30, (221,239,0): 80, 47, 30, (221,240,0): 79, 48, 30, (221,241,0): 79, 48, 28, (221,242,0): 78, 50, 29, (221,243,0): 80, 52, 30, (221,244,0): 81, 53, 31, (221,245,0): 82, 55, 28, (221,246,0): 82, 56, 29, (221,247,0): 83, 58, 28, (221,248,0): 80, 57, 25, (221,249,0): 81, 58, 24, (221,250,0): 82, 60, 23, (221,251,0): 85, 63, 24, (221,252,0): 88, 69, 27, (221,253,0): 94, 75, 33, (221,254,0): 99, 80, 38, (221,255,0): 102, 83, 40, (221,256,0): 105, 87, 41, (221,257,0): 108, 90, 42, (221,258,0): 112, 94, 46, (221,259,0): 116, 98, 48, (221,260,0): 121, 101, 50, (221,261,0): 123, 103, 50, (221,262,0): 123, 104, 48, (221,263,0): 123, 104, 46, (221,264,0): 127, 107, 48, (221,265,0): 127, 107, 48, (221,266,0): 129, 107, 47, (221,267,0): 132, 110, 50, (221,268,0): 136, 114, 54, (221,269,0): 140, 118, 58, (221,270,0): 143, 119, 59, (221,271,0): 144, 120, 60, (221,272,0): 139, 113, 54, (221,273,0): 135, 109, 50, (221,274,0): 131, 105, 46, (221,275,0): 128, 102, 43, (221,276,0): 127, 103, 43, (221,277,0): 127, 103, 43, (221,278,0): 127, 102, 45, (221,279,0): 126, 101, 44, (221,280,0): 127, 105, 48, (221,281,0): 128, 106, 49, (221,282,0): 128, 107, 52, (221,283,0): 129, 108, 53, (221,284,0): 130, 109, 54, (221,285,0): 130, 109, 54, (221,286,0): 129, 110, 54, (221,287,0): 128, 109, 53, (221,288,0): 127, 110, 56, (221,289,0): 127, 110, 58, (221,290,0): 126, 108, 58, (221,291,0): 125, 107, 57, (221,292,0): 122, 106, 57, (221,293,0): 120, 103, 57, (221,294,0): 117, 100, 56, (221,295,0): 115, 97, 57, (221,296,0): 112, 97, 58, (221,297,0): 111, 95, 59, (221,298,0): 108, 94, 59, (221,299,0): 106, 91, 58, (221,300,0): 104, 89, 60, (221,301,0): 102, 87, 58, (221,302,0): 100, 86, 59, (221,303,0): 99, 85, 58, (221,304,0): 103, 88, 59, (221,305,0): 102, 87, 58, (221,306,0): 102, 86, 60, (221,307,0): 102, 86, 60, (221,308,0): 101, 85, 59, (221,309,0): 101, 85, 59, (221,310,0): 100, 84, 59, (221,311,0): 100, 84, 59, (221,312,0): 97, 81, 58, (221,313,0): 98, 82, 59, (221,314,0): 98, 82, 59, (221,315,0): 99, 83, 60, (221,316,0): 100, 83, 63, (221,317,0): 102, 85, 65, (221,318,0): 103, 86, 66, (221,319,0): 103, 86, 68, (221,320,0): 107, 91, 75, (221,321,0): 106, 90, 74, (221,322,0): 104, 89, 70, (221,323,0): 102, 87, 64, (221,324,0): 99, 84, 61, (221,325,0): 97, 83, 57, (221,326,0): 96, 80, 57, (221,327,0): 95, 78, 58, (221,328,0): 97, 80, 62, (221,329,0): 98, 81, 63, (221,330,0): 99, 82, 64, (221,331,0): 101, 84, 64, (221,332,0): 107, 89, 65, (221,333,0): 117, 100, 70, (221,334,0): 129, 113, 80, (221,335,0): 137, 124, 80, (221,336,0): 157, 151, 89, (221,337,0): 165, 165, 91, (221,338,0): 172, 174, 99, (221,339,0): 173, 177, 100, (221,340,0): 172, 181, 102, (221,341,0): 175, 188, 108, (221,342,0): 175, 193, 111, (221,343,0): 173, 192, 110, (221,344,0): 173, 196, 116, (221,345,0): 176, 200, 122, (221,346,0): 180, 204, 130, (221,347,0): 179, 205, 132, (221,348,0): 177, 202, 136, (221,349,0): 173, 198, 133, (221,350,0): 171, 195, 133, (221,351,0): 171, 195, 133, (221,352,0): 162, 186, 124, (221,353,0): 160, 185, 120, (221,354,0): 158, 182, 120, (221,355,0): 158, 183, 118, (221,356,0): 159, 183, 121, (221,357,0): 159, 185, 120, (221,358,0): 159, 185, 122, (221,359,0): 159, 185, 120, (221,360,0): 158, 184, 121, (221,361,0): 158, 187, 121, (221,362,0): 161, 190, 126, (221,363,0): 163, 194, 127, (221,364,0): 166, 196, 132, (221,365,0): 168, 199, 132, (221,366,0): 169, 199, 135, (221,367,0): 169, 201, 134, (221,368,0): 162, 197, 131, (221,369,0): 164, 201, 132, (221,370,0): 167, 204, 137, (221,371,0): 169, 209, 139, (221,372,0): 170, 209, 142, (221,373,0): 167, 208, 138, (221,374,0): 165, 206, 138, (221,375,0): 162, 205, 134, (221,376,0): 162, 207, 138, (221,377,0): 166, 213, 141, (221,378,0): 174, 221, 151, (221,379,0): 176, 226, 153, (221,380,0): 177, 227, 156, (221,381,0): 176, 228, 154, (221,382,0): 177, 229, 157, (221,383,0): 175, 231, 156, (221,384,0): 183, 241, 164, (221,385,0): 184, 245, 168, (221,386,0): 190, 247, 178, (221,387,0): 195, 251, 186, (221,388,0): 200, 253, 197, (221,389,0): 206, 255, 205, (221,390,0): 209, 255, 209, (221,391,0): 211, 255, 213, (221,392,0): 210, 252, 212, (221,393,0): 213, 253, 216, (221,394,0): 217, 254, 221, (221,395,0): 221, 255, 228, (221,396,0): 224, 255, 235, (221,397,0): 227, 255, 240, (221,398,0): 229, 255, 246, (221,399,0): 226, 255, 248, (221,400,0): 223, 255, 249, (221,401,0): 220, 255, 249, (221,402,0): 221, 255, 250, (221,403,0): 221, 255, 252, (221,404,0): 223, 255, 254, (221,405,0): 223, 254, 255, (221,406,0): 223, 254, 255, (221,407,0): 223, 254, 255, (221,408,0): 225, 255, 255, (221,409,0): 224, 255, 255, (221,410,0): 221, 254, 255, (221,411,0): 217, 255, 255, (221,412,0): 215, 255, 255, (221,413,0): 212, 254, 252, (221,414,0): 211, 253, 251, (221,415,0): 209, 254, 251, (221,416,0): 214, 255, 255, (221,417,0): 214, 255, 255, (221,418,0): 215, 255, 255, (221,419,0): 215, 255, 255, (221,420,0): 216, 254, 255, (221,421,0): 216, 254, 255, (221,422,0): 216, 254, 255, (221,423,0): 216, 254, 255, (221,424,0): 214, 251, 255, (221,425,0): 213, 252, 255, (221,426,0): 213, 254, 255, (221,427,0): 211, 254, 255, (221,428,0): 207, 254, 255, (221,429,0): 205, 254, 255, (221,430,0): 204, 253, 255, (221,431,0): 203, 252, 255, (221,432,0): 207, 252, 255, (221,433,0): 208, 255, 255, (221,434,0): 207, 255, 255, (221,435,0): 204, 255, 255, (221,436,0): 205, 255, 255, (221,437,0): 204, 255, 255, (221,438,0): 196, 244, 248, (221,439,0): 188, 229, 231, (221,440,0): 178, 212, 214, (221,441,0): 165, 191, 192, (221,442,0): 149, 169, 168, (221,443,0): 141, 157, 154, (221,444,0): 133, 148, 141, (221,445,0): 122, 138, 127, (221,446,0): 118, 132, 119, (221,447,0): 114, 132, 120, (221,448,0): 118, 139, 134, (221,449,0): 118, 143, 139, (221,450,0): 125, 151, 148, (221,451,0): 132, 161, 159, (221,452,0): 139, 171, 170, (221,453,0): 142, 176, 177, (221,454,0): 143, 178, 182, (221,455,0): 140, 177, 183, (221,456,0): 139, 176, 185, (221,457,0): 140, 176, 188, (221,458,0): 142, 178, 194, (221,459,0): 145, 178, 197, (221,460,0): 144, 175, 196, (221,461,0): 144, 172, 196, (221,462,0): 140, 168, 192, (221,463,0): 138, 166, 190, (221,464,0): 134, 165, 185, (221,465,0): 131, 164, 181, (221,466,0): 130, 163, 180, (221,467,0): 130, 163, 180, (221,468,0): 132, 164, 179, (221,469,0): 132, 164, 179, (221,470,0): 131, 159, 173, (221,471,0): 128, 156, 170, (221,472,0): 123, 149, 164, (221,473,0): 117, 143, 158, (221,474,0): 114, 136, 150, (221,475,0): 110, 132, 146, (221,476,0): 110, 129, 143, (221,477,0): 109, 128, 142, (221,478,0): 107, 126, 140, (221,479,0): 105, 124, 139, (221,480,0): 105, 124, 141, (221,481,0): 104, 125, 144, (221,482,0): 107, 128, 147, (221,483,0): 108, 134, 151, (221,484,0): 112, 139, 158, (221,485,0): 116, 145, 163, (221,486,0): 119, 150, 168, (221,487,0): 120, 153, 170, (221,488,0): 116, 151, 170, (221,489,0): 117, 152, 171, (221,490,0): 119, 154, 174, (221,491,0): 122, 157, 177, (221,492,0): 127, 159, 180, (221,493,0): 129, 161, 182, (221,494,0): 132, 162, 186, (221,495,0): 133, 164, 185, (221,496,0): 140, 169, 185, (221,497,0): 139, 167, 181, (221,498,0): 135, 163, 177, (221,499,0): 131, 159, 171, (221,500,0): 128, 154, 167, (221,501,0): 126, 153, 164, (221,502,0): 126, 150, 162, (221,503,0): 125, 149, 159, (221,504,0): 127, 152, 159, (221,505,0): 125, 150, 155, (221,506,0): 123, 146, 152, (221,507,0): 119, 143, 147, (221,508,0): 118, 139, 144, (221,509,0): 115, 136, 139, (221,510,0): 114, 135, 138, (221,511,0): 114, 134, 133, (221,512,0): 117, 133, 132, (221,513,0): 115, 131, 128, (221,514,0): 112, 126, 126, (221,515,0): 107, 123, 122, (221,516,0): 104, 118, 118, (221,517,0): 100, 116, 115, (221,518,0): 99, 113, 114, (221,519,0): 97, 113, 113, (221,520,0): 100, 114, 117, (221,521,0): 100, 115, 118, (221,522,0): 101, 115, 118, (221,523,0): 100, 115, 118, (221,524,0): 102, 115, 121, (221,525,0): 102, 117, 122, (221,526,0): 103, 116, 122, (221,527,0): 102, 117, 122, (221,528,0): 110, 123, 129, (221,529,0): 110, 125, 132, (221,530,0): 112, 125, 133, (221,531,0): 112, 127, 134, (221,532,0): 112, 126, 135, (221,533,0): 109, 126, 134, (221,534,0): 108, 125, 133, (221,535,0): 107, 124, 134, (221,536,0): 107, 124, 134, (221,537,0): 110, 128, 138, (221,538,0): 115, 133, 145, (221,539,0): 116, 136, 147, (221,540,0): 114, 134, 145, (221,541,0): 111, 131, 142, (221,542,0): 111, 130, 144, (221,543,0): 109, 131, 142, (221,544,0): 109, 133, 143, (221,545,0): 109, 133, 143, (221,546,0): 109, 133, 145, (221,547,0): 109, 133, 145, (221,548,0): 110, 134, 146, (221,549,0): 111, 135, 147, (221,550,0): 112, 135, 149, (221,551,0): 113, 136, 150, (221,552,0): 113, 136, 152, (221,553,0): 111, 134, 150, (221,554,0): 108, 131, 147, (221,555,0): 107, 130, 146, (221,556,0): 106, 129, 147, (221,557,0): 102, 125, 143, (221,558,0): 96, 119, 137, (221,559,0): 92, 113, 130, (221,560,0): 91, 109, 119, (221,561,0): 93, 110, 118, (221,562,0): 96, 110, 119, (221,563,0): 97, 111, 122, (221,564,0): 97, 109, 121, (221,565,0): 95, 107, 119, (221,566,0): 94, 103, 118, (221,567,0): 94, 102, 115, (221,568,0): 89, 95, 107, (221,569,0): 88, 95, 105, (221,570,0): 89, 94, 100, (221,571,0): 88, 93, 97, (221,572,0): 88, 92, 95, (221,573,0): 87, 91, 92, (221,574,0): 88, 90, 89, (221,575,0): 89, 89, 91, (221,576,0): 95, 85, 94, (221,577,0): 91, 79, 91, (221,578,0): 86, 74, 84, (221,579,0): 84, 72, 82, (221,580,0): 83, 71, 81, (221,581,0): 82, 70, 80, (221,582,0): 80, 67, 76, (221,583,0): 77, 64, 73, (221,584,0): 88, 73, 80, (221,585,0): 87, 72, 79, (221,586,0): 86, 69, 77, (221,587,0): 84, 67, 75, (221,588,0): 83, 66, 72, (221,589,0): 83, 66, 72, (221,590,0): 83, 66, 72, (221,591,0): 84, 67, 73, (221,592,0): 75, 63, 67, (221,593,0): 75, 64, 68, (221,594,0): 77, 65, 69, (221,595,0): 76, 65, 69, (221,596,0): 77, 65, 69, (221,597,0): 75, 64, 68, (221,598,0): 75, 63, 67, (221,599,0): 73, 62, 66, (222,0,0): 42, 30, 44, (222,1,0): 42, 30, 44, (222,2,0): 42, 30, 44, (222,3,0): 42, 30, 44, (222,4,0): 42, 30, 44, (222,5,0): 42, 30, 44, (222,6,0): 42, 30, 44, (222,7,0): 42, 30, 44, (222,8,0): 44, 32, 46, (222,9,0): 44, 32, 46, (222,10,0): 44, 32, 46, (222,11,0): 45, 33, 47, (222,12,0): 45, 33, 47, (222,13,0): 46, 34, 48, (222,14,0): 46, 34, 48, (222,15,0): 46, 34, 46, (222,16,0): 47, 35, 47, (222,17,0): 47, 35, 45, (222,18,0): 47, 35, 45, (222,19,0): 47, 35, 45, (222,20,0): 47, 35, 45, (222,21,0): 47, 35, 45, (222,22,0): 48, 35, 45, (222,23,0): 48, 35, 45, (222,24,0): 50, 34, 45, (222,25,0): 50, 34, 45, (222,26,0): 51, 33, 45, (222,27,0): 52, 34, 46, (222,28,0): 52, 34, 46, (222,29,0): 53, 35, 47, (222,30,0): 53, 35, 47, (222,31,0): 53, 35, 47, (222,32,0): 54, 37, 47, (222,33,0): 54, 37, 47, (222,34,0): 55, 38, 48, (222,35,0): 55, 38, 48, (222,36,0): 55, 38, 48, (222,37,0): 55, 38, 48, (222,38,0): 56, 39, 49, (222,39,0): 56, 39, 49, (222,40,0): 55, 38, 48, (222,41,0): 55, 38, 48, (222,42,0): 55, 38, 48, (222,43,0): 55, 38, 48, (222,44,0): 55, 38, 48, (222,45,0): 55, 38, 48, (222,46,0): 55, 38, 48, (222,47,0): 55, 38, 48, (222,48,0): 55, 38, 48, (222,49,0): 55, 38, 48, (222,50,0): 55, 38, 48, (222,51,0): 55, 38, 48, (222,52,0): 57, 37, 46, (222,53,0): 57, 37, 46, (222,54,0): 57, 38, 44, (222,55,0): 57, 38, 44, (222,56,0): 59, 38, 45, (222,57,0): 60, 39, 46, (222,58,0): 61, 38, 44, (222,59,0): 61, 38, 44, (222,60,0): 62, 40, 43, (222,61,0): 62, 40, 43, (222,62,0): 65, 40, 44, (222,63,0): 65, 40, 44, (222,64,0): 67, 40, 47, (222,65,0): 68, 41, 48, (222,66,0): 68, 41, 46, (222,67,0): 69, 42, 47, (222,68,0): 71, 42, 47, (222,69,0): 72, 43, 48, (222,70,0): 73, 42, 47, (222,71,0): 73, 42, 47, (222,72,0): 74, 44, 46, (222,73,0): 74, 44, 46, (222,74,0): 74, 42, 45, (222,75,0): 74, 42, 45, (222,76,0): 75, 41, 42, (222,77,0): 74, 40, 41, (222,78,0): 74, 40, 41, (222,79,0): 71, 39, 40, (222,80,0): 72, 40, 45, (222,81,0): 70, 39, 44, (222,82,0): 70, 39, 44, (222,83,0): 69, 38, 43, (222,84,0): 69, 38, 43, (222,85,0): 68, 37, 42, (222,86,0): 68, 37, 42, (222,87,0): 68, 37, 42, (222,88,0): 66, 35, 40, (222,89,0): 66, 35, 40, (222,90,0): 66, 35, 40, (222,91,0): 65, 34, 39, (222,92,0): 65, 34, 39, (222,93,0): 64, 33, 38, (222,94,0): 64, 33, 38, (222,95,0): 63, 34, 38, (222,96,0): 64, 35, 39, (222,97,0): 61, 35, 38, (222,98,0): 61, 35, 38, (222,99,0): 60, 34, 37, (222,100,0): 60, 34, 37, (222,101,0): 59, 33, 36, (222,102,0): 59, 33, 36, (222,103,0): 59, 33, 36, (222,104,0): 59, 33, 36, (222,105,0): 59, 33, 36, (222,106,0): 59, 33, 36, (222,107,0): 59, 33, 36, (222,108,0): 59, 33, 36, (222,109,0): 59, 33, 36, (222,110,0): 59, 33, 36, (222,111,0): 59, 33, 34, (222,112,0): 62, 32, 34, (222,113,0): 62, 32, 32, (222,114,0): 62, 32, 32, (222,115,0): 62, 32, 32, (222,116,0): 61, 33, 32, (222,117,0): 61, 33, 32, (222,118,0): 61, 33, 32, (222,119,0): 61, 33, 32, (222,120,0): 60, 34, 33, (222,121,0): 59, 33, 32, (222,122,0): 56, 32, 30, (222,123,0): 55, 31, 29, (222,124,0): 54, 30, 28, (222,125,0): 54, 30, 28, (222,126,0): 52, 31, 28, (222,127,0): 53, 32, 29, (222,128,0): 49, 27, 29, (222,129,0): 49, 27, 29, (222,130,0): 49, 27, 29, (222,131,0): 49, 27, 29, (222,132,0): 49, 28, 27, (222,133,0): 49, 28, 27, (222,134,0): 49, 28, 27, (222,135,0): 49, 28, 27, (222,136,0): 49, 28, 25, (222,137,0): 49, 28, 25, (222,138,0): 50, 29, 24, (222,139,0): 50, 29, 24, (222,140,0): 51, 30, 25, (222,141,0): 51, 30, 25, (222,142,0): 52, 32, 25, (222,143,0): 52, 32, 25, (222,144,0): 53, 32, 29, (222,145,0): 53, 32, 29, (222,146,0): 53, 32, 29, (222,147,0): 53, 32, 29, (222,148,0): 53, 32, 29, (222,149,0): 53, 32, 29, (222,150,0): 53, 32, 29, (222,151,0): 53, 32, 29, (222,152,0): 54, 33, 30, (222,153,0): 54, 33, 30, (222,154,0): 54, 33, 30, (222,155,0): 54, 33, 30, (222,156,0): 54, 33, 30, (222,157,0): 54, 33, 30, (222,158,0): 54, 33, 30, (222,159,0): 54, 33, 30, (222,160,0): 57, 32, 28, (222,161,0): 57, 32, 28, (222,162,0): 57, 32, 28, (222,163,0): 57, 32, 28, (222,164,0): 57, 32, 28, (222,165,0): 57, 32, 28, (222,166,0): 57, 32, 28, (222,167,0): 57, 32, 28, (222,168,0): 59, 34, 30, (222,169,0): 59, 34, 30, (222,170,0): 59, 34, 30, (222,171,0): 59, 34, 30, (222,172,0): 59, 34, 30, (222,173,0): 59, 34, 30, (222,174,0): 59, 34, 30, (222,175,0): 59, 34, 29, (222,176,0): 57, 32, 27, (222,177,0): 57, 32, 25, (222,178,0): 57, 32, 25, (222,179,0): 57, 32, 25, (222,180,0): 57, 32, 25, (222,181,0): 57, 32, 25, (222,182,0): 57, 32, 25, (222,183,0): 57, 32, 25, (222,184,0): 59, 34, 27, (222,185,0): 59, 34, 27, (222,186,0): 59, 34, 27, (222,187,0): 58, 33, 26, (222,188,0): 57, 32, 25, (222,189,0): 57, 32, 25, (222,190,0): 57, 32, 25, (222,191,0): 56, 31, 24, (222,192,0): 55, 30, 23, (222,193,0): 55, 30, 23, (222,194,0): 55, 30, 23, (222,195,0): 55, 30, 23, (222,196,0): 55, 30, 23, (222,197,0): 55, 30, 23, (222,198,0): 55, 30, 23, (222,199,0): 55, 30, 23, (222,200,0): 57, 32, 25, (222,201,0): 57, 32, 25, (222,202,0): 57, 32, 25, (222,203,0): 57, 32, 25, (222,204,0): 57, 32, 25, (222,205,0): 57, 32, 25, (222,206,0): 57, 32, 25, (222,207,0): 57, 33, 23, (222,208,0): 62, 34, 23, (222,209,0): 62, 34, 22, (222,210,0): 62, 34, 20, (222,211,0): 63, 35, 21, (222,212,0): 63, 35, 21, (222,213,0): 64, 36, 22, (222,214,0): 64, 37, 20, (222,215,0): 65, 38, 21, (222,216,0): 68, 41, 22, (222,217,0): 68, 41, 22, (222,218,0): 69, 42, 23, (222,219,0): 70, 43, 24, (222,220,0): 72, 45, 24, (222,221,0): 74, 47, 26, (222,222,0): 76, 49, 28, (222,223,0): 78, 50, 29, (222,224,0): 77, 46, 26, (222,225,0): 78, 46, 25, (222,226,0): 79, 47, 26, (222,227,0): 81, 49, 26, (222,228,0): 82, 50, 27, (222,229,0): 83, 51, 26, (222,230,0): 84, 52, 27, (222,231,0): 85, 53, 28, (222,232,0): 85, 53, 28, (222,233,0): 85, 53, 28, (222,234,0): 84, 52, 29, (222,235,0): 84, 52, 31, (222,236,0): 84, 51, 32, (222,237,0): 84, 51, 34, (222,238,0): 84, 51, 36, (222,239,0): 84, 51, 36, (222,240,0): 82, 51, 33, (222,241,0): 82, 51, 33, (222,242,0): 81, 53, 32, (222,243,0): 82, 54, 32, (222,244,0): 82, 54, 32, (222,245,0): 83, 56, 29, (222,246,0): 83, 57, 30, (222,247,0): 83, 58, 28, (222,248,0): 82, 59, 27, (222,249,0): 83, 60, 26, (222,250,0): 84, 62, 25, (222,251,0): 87, 65, 26, (222,252,0): 90, 71, 29, (222,253,0): 97, 78, 36, (222,254,0): 103, 84, 41, (222,255,0): 107, 88, 45, (222,256,0): 108, 90, 42, (222,257,0): 111, 93, 43, (222,258,0): 116, 98, 48, (222,259,0): 121, 104, 52, (222,260,0): 126, 106, 55, (222,261,0): 128, 108, 55, (222,262,0): 128, 109, 53, (222,263,0): 127, 108, 50, (222,264,0): 130, 110, 51, (222,265,0): 129, 109, 50, (222,266,0): 130, 108, 48, (222,267,0): 130, 109, 46, (222,268,0): 133, 112, 49, (222,269,0): 139, 118, 55, (222,270,0): 149, 125, 63, (222,271,0): 155, 131, 69, (222,272,0): 152, 126, 65, (222,273,0): 147, 121, 60, (222,274,0): 140, 114, 53, (222,275,0): 135, 109, 48, (222,276,0): 133, 109, 49, (222,277,0): 132, 108, 48, (222,278,0): 130, 106, 46, (222,279,0): 128, 104, 44, (222,280,0): 125, 103, 45, (222,281,0): 126, 104, 46, (222,282,0): 128, 107, 50, (222,283,0): 130, 109, 52, (222,284,0): 132, 111, 54, (222,285,0): 132, 111, 54, (222,286,0): 130, 111, 55, (222,287,0): 130, 111, 55, (222,288,0): 126, 109, 55, (222,289,0): 127, 110, 56, (222,290,0): 127, 110, 58, (222,291,0): 127, 109, 59, (222,292,0): 125, 109, 60, (222,293,0): 123, 106, 60, (222,294,0): 121, 104, 60, (222,295,0): 120, 102, 62, (222,296,0): 114, 99, 60, (222,297,0): 113, 97, 61, (222,298,0): 110, 96, 61, (222,299,0): 108, 93, 60, (222,300,0): 105, 90, 61, (222,301,0): 103, 88, 59, (222,302,0): 100, 86, 59, (222,303,0): 99, 85, 58, (222,304,0): 102, 87, 58, (222,305,0): 102, 87, 58, (222,306,0): 101, 85, 59, (222,307,0): 101, 85, 59, (222,308,0): 100, 84, 58, (222,309,0): 100, 84, 58, (222,310,0): 99, 83, 58, (222,311,0): 99, 83, 58, (222,312,0): 97, 81, 58, (222,313,0): 98, 82, 59, (222,314,0): 99, 83, 60, (222,315,0): 100, 84, 61, (222,316,0): 101, 84, 64, (222,317,0): 101, 84, 64, (222,318,0): 102, 85, 65, (222,319,0): 102, 85, 67, (222,320,0): 104, 88, 72, (222,321,0): 103, 87, 71, (222,322,0): 102, 87, 68, (222,323,0): 101, 86, 63, (222,324,0): 99, 84, 61, (222,325,0): 97, 83, 57, (222,326,0): 97, 81, 58, (222,327,0): 96, 79, 59, (222,328,0): 99, 82, 62, (222,329,0): 100, 83, 63, (222,330,0): 102, 84, 64, (222,331,0): 104, 86, 64, (222,332,0): 109, 92, 66, (222,333,0): 118, 102, 69, (222,334,0): 132, 113, 80, (222,335,0): 139, 125, 80, (222,336,0): 159, 151, 88, (222,337,0): 166, 164, 90, (222,338,0): 170, 170, 96, (222,339,0): 170, 173, 96, (222,340,0): 169, 176, 98, (222,341,0): 173, 185, 103, (222,342,0): 174, 189, 108, (222,343,0): 169, 188, 106, (222,344,0): 169, 190, 111, (222,345,0): 170, 193, 115, (222,346,0): 169, 193, 119, (222,347,0): 165, 188, 118, (222,348,0): 158, 180, 116, (222,349,0): 152, 174, 112, (222,350,0): 149, 170, 113, (222,351,0): 149, 170, 113, (222,352,0): 142, 163, 104, (222,353,0): 144, 166, 104, (222,354,0): 146, 167, 108, (222,355,0): 145, 169, 107, (222,356,0): 146, 170, 110, (222,357,0): 149, 173, 111, (222,358,0): 153, 177, 117, (222,359,0): 155, 181, 118, (222,360,0): 152, 178, 117, (222,361,0): 152, 181, 117, (222,362,0): 155, 183, 122, (222,363,0): 158, 187, 123, (222,364,0): 161, 189, 128, (222,365,0): 162, 192, 128, (222,366,0): 163, 193, 131, (222,367,0): 162, 194, 129, (222,368,0): 157, 192, 128, (222,369,0): 159, 196, 129, (222,370,0): 164, 200, 136, (222,371,0): 166, 205, 138, (222,372,0): 167, 206, 141, (222,373,0): 165, 206, 138, (222,374,0): 162, 203, 137, (222,375,0): 159, 202, 133, (222,376,0): 159, 204, 137, (222,377,0): 163, 210, 140, (222,378,0): 171, 218, 150, (222,379,0): 173, 223, 152, (222,380,0): 174, 224, 155, (222,381,0): 173, 225, 153, (222,382,0): 174, 225, 156, (222,383,0): 174, 227, 155, (222,384,0): 175, 236, 159, (222,385,0): 177, 239, 162, (222,386,0): 183, 243, 173, (222,387,0): 191, 247, 182, (222,388,0): 197, 250, 194, (222,389,0): 204, 254, 203, (222,390,0): 208, 255, 209, (222,391,0): 210, 255, 212, (222,392,0): 208, 250, 210, (222,393,0): 211, 251, 214, (222,394,0): 215, 252, 219, (222,395,0): 219, 253, 226, (222,396,0): 223, 255, 234, (222,397,0): 224, 255, 240, (222,398,0): 227, 254, 247, (222,399,0): 225, 254, 249, (222,400,0): 219, 255, 249, (222,401,0): 217, 255, 249, (222,402,0): 219, 255, 251, (222,403,0): 219, 255, 251, (222,404,0): 220, 254, 253, (222,405,0): 220, 254, 255, (222,406,0): 220, 254, 255, (222,407,0): 220, 253, 255, (222,408,0): 221, 254, 255, (222,409,0): 219, 254, 255, (222,410,0): 217, 254, 255, (222,411,0): 215, 255, 255, (222,412,0): 213, 255, 254, (222,413,0): 210, 255, 253, (222,414,0): 209, 255, 252, (222,415,0): 209, 255, 252, (222,416,0): 211, 255, 254, (222,417,0): 213, 254, 255, (222,418,0): 214, 254, 255, (222,419,0): 214, 254, 255, (222,420,0): 215, 253, 255, (222,421,0): 215, 253, 255, (222,422,0): 215, 253, 255, (222,423,0): 215, 253, 255, (222,424,0): 211, 250, 255, (222,425,0): 211, 252, 255, (222,426,0): 210, 253, 255, (222,427,0): 209, 254, 255, (222,428,0): 206, 255, 255, (222,429,0): 204, 255, 255, (222,430,0): 200, 253, 255, (222,431,0): 201, 251, 255, (222,432,0): 207, 251, 255, (222,433,0): 210, 254, 255, (222,434,0): 207, 254, 255, (222,435,0): 204, 254, 255, (222,436,0): 205, 255, 255, (222,437,0): 205, 254, 255, (222,438,0): 196, 241, 246, (222,439,0): 185, 224, 229, (222,440,0): 175, 206, 209, (222,441,0): 159, 185, 186, (222,442,0): 143, 163, 162, (222,443,0): 134, 150, 147, (222,444,0): 129, 142, 135, (222,445,0): 120, 133, 123, (222,446,0): 117, 129, 117, (222,447,0): 115, 131, 120, (222,448,0): 115, 138, 132, (222,449,0): 119, 145, 142, (222,450,0): 127, 156, 154, (222,451,0): 135, 165, 163, (222,452,0): 140, 171, 173, (222,453,0): 141, 175, 177, (222,454,0): 140, 178, 181, (222,455,0): 139, 178, 183, (222,456,0): 134, 172, 181, (222,457,0): 137, 173, 185, (222,458,0): 140, 176, 192, (222,459,0): 144, 177, 196, (222,460,0): 144, 175, 196, (222,461,0): 143, 171, 195, (222,462,0): 139, 165, 192, (222,463,0): 136, 162, 187, (222,464,0): 133, 164, 184, (222,465,0): 129, 162, 179, (222,466,0): 127, 160, 175, (222,467,0): 126, 159, 174, (222,468,0): 128, 160, 175, (222,469,0): 125, 157, 172, (222,470,0): 124, 152, 166, (222,471,0): 120, 148, 162, (222,472,0): 118, 144, 157, (222,473,0): 113, 139, 152, (222,474,0): 110, 132, 146, (222,475,0): 106, 128, 142, (222,476,0): 106, 125, 139, (222,477,0): 105, 124, 138, (222,478,0): 103, 122, 136, (222,479,0): 101, 120, 135, (222,480,0): 101, 119, 139, (222,481,0): 100, 121, 142, (222,482,0): 102, 123, 144, (222,483,0): 103, 128, 148, (222,484,0): 107, 134, 153, (222,485,0): 112, 141, 159, (222,486,0): 115, 146, 166, (222,487,0): 117, 150, 169, (222,488,0): 114, 149, 169, (222,489,0): 116, 151, 171, (222,490,0): 118, 153, 175, (222,491,0): 120, 155, 177, (222,492,0): 123, 158, 180, (222,493,0): 126, 161, 183, (222,494,0): 130, 162, 185, (222,495,0): 132, 163, 184, (222,496,0): 138, 167, 185, (222,497,0): 136, 165, 179, (222,498,0): 134, 162, 176, (222,499,0): 131, 159, 171, (222,500,0): 129, 157, 169, (222,501,0): 129, 157, 168, (222,502,0): 130, 157, 168, (222,503,0): 130, 157, 166, (222,504,0): 136, 161, 168, (222,505,0): 134, 159, 164, (222,506,0): 130, 155, 160, (222,507,0): 125, 150, 154, (222,508,0): 121, 145, 149, (222,509,0): 118, 142, 144, (222,510,0): 116, 140, 142, (222,511,0): 117, 138, 139, (222,512,0): 121, 139, 139, (222,513,0): 120, 139, 137, (222,514,0): 120, 136, 135, (222,515,0): 115, 134, 132, (222,516,0): 112, 128, 128, (222,517,0): 105, 123, 123, (222,518,0): 103, 119, 119, (222,519,0): 98, 116, 116, (222,520,0): 103, 118, 121, (222,521,0): 101, 119, 121, (222,522,0): 104, 119, 124, (222,523,0): 102, 120, 124, (222,524,0): 105, 120, 125, (222,525,0): 103, 121, 125, (222,526,0): 106, 121, 128, (222,527,0): 104, 121, 128, (222,528,0): 112, 127, 134, (222,529,0): 111, 128, 136, (222,530,0): 115, 129, 138, (222,531,0): 114, 131, 139, (222,532,0): 114, 131, 141, (222,533,0): 112, 130, 140, (222,534,0): 110, 128, 138, (222,535,0): 109, 127, 139, (222,536,0): 114, 132, 144, (222,537,0): 115, 135, 146, (222,538,0): 118, 137, 151, (222,539,0): 115, 137, 150, (222,540,0): 113, 135, 148, (222,541,0): 113, 135, 148, (222,542,0): 115, 137, 151, (222,543,0): 116, 140, 152, (222,544,0): 114, 138, 150, (222,545,0): 112, 139, 150, (222,546,0): 113, 140, 151, (222,547,0): 113, 140, 151, (222,548,0): 113, 139, 152, (222,549,0): 113, 139, 152, (222,550,0): 112, 138, 153, (222,551,0): 112, 138, 153, (222,552,0): 112, 138, 153, (222,553,0): 109, 135, 150, (222,554,0): 106, 132, 149, (222,555,0): 105, 131, 148, (222,556,0): 104, 129, 149, (222,557,0): 101, 126, 146, (222,558,0): 97, 122, 142, (222,559,0): 96, 117, 134, (222,560,0): 95, 113, 123, (222,561,0): 97, 112, 119, (222,562,0): 97, 112, 119, (222,563,0): 96, 110, 119, (222,564,0): 96, 109, 118, (222,565,0): 94, 107, 116, (222,566,0): 95, 105, 117, (222,567,0): 95, 103, 114, (222,568,0): 91, 98, 108, (222,569,0): 90, 97, 105, (222,570,0): 92, 97, 103, (222,571,0): 92, 95, 100, (222,572,0): 93, 94, 96, (222,573,0): 92, 94, 93, (222,574,0): 92, 94, 91, (222,575,0): 92, 92, 92, (222,576,0): 94, 84, 93, (222,577,0): 91, 79, 91, (222,578,0): 86, 74, 84, (222,579,0): 83, 71, 81, (222,580,0): 82, 69, 79, (222,581,0): 80, 67, 77, (222,582,0): 79, 63, 73, (222,583,0): 76, 60, 70, (222,584,0): 87, 72, 79, (222,585,0): 86, 71, 78, (222,586,0): 85, 68, 76, (222,587,0): 83, 66, 74, (222,588,0): 83, 64, 70, (222,589,0): 83, 64, 70, (222,590,0): 83, 64, 70, (222,591,0): 81, 64, 70, (222,592,0): 74, 62, 66, (222,593,0): 73, 64, 67, (222,594,0): 75, 64, 68, (222,595,0): 74, 65, 68, (222,596,0): 74, 63, 67, (222,597,0): 72, 63, 66, (222,598,0): 72, 61, 65, (222,599,0): 70, 61, 64, (223,0,0): 43, 29, 44, (223,1,0): 42, 30, 42, (223,2,0): 43, 29, 44, (223,3,0): 42, 30, 42, (223,4,0): 43, 29, 44, (223,5,0): 42, 30, 42, (223,6,0): 43, 29, 44, (223,7,0): 42, 30, 42, (223,8,0): 45, 31, 46, (223,9,0): 44, 32, 44, (223,10,0): 45, 31, 46, (223,11,0): 45, 33, 45, (223,12,0): 46, 32, 47, (223,13,0): 46, 34, 46, (223,14,0): 47, 33, 48, (223,15,0): 46, 34, 46, (223,16,0): 49, 36, 46, (223,17,0): 48, 36, 46, (223,18,0): 49, 36, 46, (223,19,0): 48, 36, 46, (223,20,0): 49, 36, 46, (223,21,0): 49, 36, 46, (223,22,0): 49, 36, 46, (223,23,0): 49, 36, 46, (223,24,0): 50, 34, 45, (223,25,0): 50, 34, 45, (223,26,0): 51, 33, 45, (223,27,0): 52, 34, 46, (223,28,0): 52, 34, 46, (223,29,0): 53, 35, 47, (223,30,0): 53, 35, 47, (223,31,0): 53, 35, 47, (223,32,0): 53, 35, 47, (223,33,0): 52, 36, 46, (223,34,0): 54, 36, 48, (223,35,0): 54, 38, 48, (223,36,0): 55, 37, 49, (223,37,0): 55, 39, 49, (223,38,0): 57, 39, 51, (223,39,0): 56, 40, 50, (223,40,0): 55, 37, 49, (223,41,0): 54, 38, 48, (223,42,0): 55, 37, 49, (223,43,0): 54, 38, 48, (223,44,0): 55, 37, 49, (223,45,0): 54, 38, 48, (223,46,0): 55, 37, 49, (223,47,0): 54, 38, 48, (223,48,0): 55, 38, 48, (223,49,0): 54, 38, 48, (223,50,0): 55, 38, 48, (223,51,0): 55, 38, 48, (223,52,0): 55, 38, 46, (223,53,0): 57, 37, 46, (223,54,0): 57, 38, 44, (223,55,0): 57, 38, 44, (223,56,0): 59, 38, 45, (223,57,0): 60, 39, 46, (223,58,0): 61, 38, 44, (223,59,0): 62, 39, 45, (223,60,0): 62, 40, 43, (223,61,0): 65, 40, 44, (223,62,0): 65, 40, 44, (223,63,0): 66, 39, 44, (223,64,0): 68, 41, 48, (223,65,0): 70, 40, 48, (223,66,0): 70, 41, 46, (223,67,0): 71, 42, 47, (223,68,0): 72, 43, 48, (223,69,0): 73, 42, 48, (223,70,0): 73, 42, 47, (223,71,0): 74, 43, 48, (223,72,0): 75, 45, 47, (223,73,0): 74, 44, 46, (223,74,0): 75, 43, 46, (223,75,0): 74, 42, 45, (223,76,0): 75, 41, 42, (223,77,0): 74, 40, 41, (223,78,0): 74, 40, 41, (223,79,0): 71, 39, 42, (223,80,0): 71, 40, 45, (223,81,0): 71, 40, 45, (223,82,0): 70, 39, 45, (223,83,0): 70, 39, 44, (223,84,0): 69, 38, 44, (223,85,0): 69, 38, 43, (223,86,0): 68, 37, 43, (223,87,0): 68, 37, 42, (223,88,0): 66, 35, 41, (223,89,0): 66, 35, 40, (223,90,0): 66, 35, 41, (223,91,0): 65, 34, 39, (223,92,0): 65, 34, 40, (223,93,0): 64, 33, 38, (223,94,0): 64, 33, 39, (223,95,0): 63, 34, 38, (223,96,0): 64, 35, 39, (223,97,0): 64, 35, 37, (223,98,0): 63, 34, 36, (223,99,0): 63, 34, 36, (223,100,0): 62, 33, 35, (223,101,0): 62, 33, 35, (223,102,0): 61, 32, 36, (223,103,0): 61, 32, 36, (223,104,0): 62, 33, 37, (223,105,0): 62, 33, 37, (223,106,0): 62, 33, 37, (223,107,0): 62, 33, 37, (223,108,0): 62, 33, 37, (223,109,0): 62, 33, 37, (223,110,0): 62, 33, 37, (223,111,0): 62, 33, 35, (223,112,0): 61, 33, 32, (223,113,0): 61, 33, 30, (223,114,0): 61, 33, 30, (223,115,0): 61, 33, 30, (223,116,0): 61, 33, 30, (223,117,0): 61, 33, 32, (223,118,0): 61, 33, 32, (223,119,0): 61, 33, 32, (223,120,0): 60, 34, 33, (223,121,0): 59, 33, 32, (223,122,0): 59, 33, 32, (223,123,0): 58, 32, 31, (223,124,0): 58, 32, 31, (223,125,0): 58, 32, 31, (223,126,0): 57, 33, 31, (223,127,0): 57, 33, 31, (223,128,0): 50, 29, 28, (223,129,0): 50, 29, 28, (223,130,0): 50, 29, 28, (223,131,0): 50, 29, 28, (223,132,0): 50, 29, 28, (223,133,0): 50, 29, 26, (223,134,0): 50, 29, 28, (223,135,0): 50, 29, 26, (223,136,0): 50, 29, 26, (223,137,0): 50, 29, 26, (223,138,0): 51, 30, 25, (223,139,0): 51, 30, 25, (223,140,0): 52, 31, 26, (223,141,0): 52, 31, 26, (223,142,0): 52, 32, 25, (223,143,0): 53, 32, 27, (223,144,0): 53, 32, 27, (223,145,0): 53, 32, 29, (223,146,0): 55, 31, 29, (223,147,0): 53, 32, 29, (223,148,0): 55, 31, 29, (223,149,0): 53, 32, 29, (223,150,0): 55, 31, 29, (223,151,0): 53, 32, 29, (223,152,0): 58, 34, 32, (223,153,0): 56, 35, 32, (223,154,0): 58, 34, 32, (223,155,0): 56, 35, 32, (223,156,0): 58, 34, 32, (223,157,0): 56, 35, 32, (223,158,0): 58, 34, 32, (223,159,0): 58, 34, 30, (223,160,0): 57, 32, 28, (223,161,0): 57, 32, 27, (223,162,0): 57, 32, 28, (223,163,0): 57, 32, 27, (223,164,0): 57, 32, 28, (223,165,0): 57, 32, 27, (223,166,0): 57, 32, 28, (223,167,0): 57, 32, 27, (223,168,0): 60, 35, 31, (223,169,0): 60, 35, 30, (223,170,0): 60, 35, 31, (223,171,0): 60, 35, 30, (223,172,0): 60, 35, 31, (223,173,0): 60, 35, 30, (223,174,0): 60, 35, 31, (223,175,0): 60, 35, 30, (223,176,0): 57, 32, 25, (223,177,0): 57, 33, 23, (223,178,0): 59, 32, 25, (223,179,0): 57, 33, 23, (223,180,0): 59, 32, 25, (223,181,0): 57, 33, 23, (223,182,0): 59, 32, 25, (223,183,0): 57, 33, 23, (223,184,0): 62, 35, 28, (223,185,0): 60, 36, 26, (223,186,0): 61, 34, 27, (223,187,0): 59, 35, 25, (223,188,0): 60, 33, 26, (223,189,0): 58, 34, 24, (223,190,0): 60, 33, 26, (223,191,0): 57, 32, 25, (223,192,0): 55, 30, 23, (223,193,0): 55, 30, 23, (223,194,0): 55, 30, 23, (223,195,0): 55, 30, 23, (223,196,0): 55, 30, 23, (223,197,0): 55, 30, 23, (223,198,0): 55, 30, 23, (223,199,0): 55, 30, 23, (223,200,0): 57, 32, 25, (223,201,0): 57, 32, 25, (223,202,0): 57, 32, 25, (223,203,0): 57, 32, 25, (223,204,0): 57, 32, 25, (223,205,0): 57, 32, 25, (223,206,0): 57, 32, 25, (223,207,0): 57, 33, 23, (223,208,0): 61, 34, 23, (223,209,0): 61, 35, 22, (223,210,0): 62, 36, 23, (223,211,0): 62, 36, 21, (223,212,0): 64, 36, 22, (223,213,0): 64, 36, 22, (223,214,0): 65, 37, 23, (223,215,0): 65, 38, 21, (223,216,0): 69, 42, 25, (223,217,0): 68, 41, 22, (223,218,0): 68, 41, 22, (223,219,0): 68, 41, 22, (223,220,0): 70, 43, 22, (223,221,0): 73, 46, 25, (223,222,0): 76, 49, 28, (223,223,0): 78, 50, 29, (223,224,0): 77, 46, 26, (223,225,0): 78, 45, 26, (223,226,0): 79, 47, 26, (223,227,0): 80, 48, 27, (223,228,0): 82, 50, 27, (223,229,0): 83, 51, 28, (223,230,0): 84, 52, 27, (223,231,0): 85, 53, 28, (223,232,0): 86, 54, 29, (223,233,0): 86, 54, 29, (223,234,0): 86, 54, 31, (223,235,0): 87, 55, 32, (223,236,0): 87, 55, 34, (223,237,0): 88, 55, 36, (223,238,0): 88, 55, 36, (223,239,0): 89, 56, 39, (223,240,0): 87, 54, 37, (223,241,0): 86, 55, 35, (223,242,0): 86, 55, 35, (223,243,0): 84, 56, 34, (223,244,0): 84, 56, 32, (223,245,0): 84, 58, 31, (223,246,0): 84, 59, 29, (223,247,0): 83, 60, 28, (223,248,0): 90, 67, 33, (223,249,0): 89, 67, 30, (223,250,0): 89, 67, 28, (223,251,0): 90, 68, 29, (223,252,0): 92, 73, 31, (223,253,0): 97, 78, 36, (223,254,0): 101, 84, 41, (223,255,0): 104, 87, 43, (223,256,0): 110, 92, 46, (223,257,0): 113, 95, 47, (223,258,0): 119, 101, 51, (223,259,0): 124, 106, 56, (223,260,0): 128, 111, 59, (223,261,0): 130, 113, 59, (223,262,0): 132, 113, 57, (223,263,0): 131, 112, 54, (223,264,0): 130, 111, 52, (223,265,0): 130, 112, 50, (223,266,0): 128, 110, 46, (223,267,0): 126, 108, 42, (223,268,0): 129, 110, 44, (223,269,0): 137, 118, 52, (223,270,0): 149, 130, 62, (223,271,0): 159, 138, 71, (223,272,0): 161, 137, 73, (223,273,0): 155, 130, 66, (223,274,0): 147, 122, 58, (223,275,0): 141, 115, 54, (223,276,0): 138, 112, 53, (223,277,0): 137, 111, 54, (223,278,0): 133, 108, 52, (223,279,0): 130, 105, 49, (223,280,0): 123, 100, 46, (223,281,0): 124, 103, 48, (223,282,0): 127, 106, 51, (223,283,0): 129, 110, 54, (223,284,0): 132, 111, 56, (223,285,0): 133, 112, 55, (223,286,0): 132, 111, 56, (223,287,0): 132, 111, 56, (223,288,0): 128, 109, 53, (223,289,0): 129, 110, 54, (223,290,0): 129, 109, 56, (223,291,0): 130, 110, 57, (223,292,0): 127, 109, 59, (223,293,0): 126, 108, 60, (223,294,0): 124, 106, 60, (223,295,0): 122, 105, 62, (223,296,0): 117, 99, 59, (223,297,0): 116, 98, 60, (223,298,0): 112, 96, 62, (223,299,0): 110, 94, 61, (223,300,0): 107, 90, 60, (223,301,0): 104, 87, 59, (223,302,0): 101, 85, 59, (223,303,0): 100, 84, 58, (223,304,0): 101, 85, 59, (223,305,0): 101, 85, 59, (223,306,0): 101, 85, 60, (223,307,0): 100, 84, 59, (223,308,0): 100, 84, 59, (223,309,0): 99, 83, 58, (223,310,0): 99, 83, 58, (223,311,0): 99, 83, 60, (223,312,0): 97, 81, 58, (223,313,0): 98, 82, 59, (223,314,0): 99, 83, 60, (223,315,0): 100, 83, 63, (223,316,0): 101, 84, 64, (223,317,0): 100, 85, 64, (223,318,0): 101, 84, 64, (223,319,0): 100, 85, 66, (223,320,0): 103, 86, 70, (223,321,0): 102, 86, 70, (223,322,0): 102, 85, 67, (223,323,0): 100, 85, 64, (223,324,0): 100, 83, 63, (223,325,0): 99, 83, 60, (223,326,0): 98, 81, 61, (223,327,0): 97, 80, 60, (223,328,0): 101, 84, 64, (223,329,0): 103, 85, 65, (223,330,0): 104, 86, 66, (223,331,0): 105, 87, 65, (223,332,0): 110, 93, 65, (223,333,0): 119, 103, 70, (223,334,0): 133, 115, 79, (223,335,0): 140, 126, 81, (223,336,0): 159, 151, 88, (223,337,0): 164, 162, 88, (223,338,0): 169, 167, 93, (223,339,0): 166, 168, 93, (223,340,0): 167, 171, 95, (223,341,0): 171, 179, 102, (223,342,0): 171, 183, 107, (223,343,0): 168, 182, 107, (223,344,0): 164, 180, 107, (223,345,0): 163, 180, 110, (223,346,0): 159, 178, 112, (223,347,0): 151, 169, 107, (223,348,0): 140, 158, 100, (223,349,0): 130, 149, 93, (223,350,0): 128, 145, 93, (223,351,0): 126, 144, 92, (223,352,0): 127, 146, 91, (223,353,0): 131, 150, 95, (223,354,0): 135, 154, 99, (223,355,0): 136, 157, 101, (223,356,0): 138, 159, 103, (223,357,0): 142, 163, 107, (223,358,0): 148, 169, 113, (223,359,0): 151, 175, 117, (223,360,0): 149, 172, 116, (223,361,0): 149, 174, 116, (223,362,0): 150, 178, 119, (223,363,0): 153, 181, 122, (223,364,0): 155, 185, 125, (223,365,0): 157, 187, 127, (223,366,0): 156, 187, 127, (223,367,0): 157, 188, 128, (223,368,0): 155, 190, 126, (223,369,0): 158, 193, 129, (223,370,0): 163, 198, 134, (223,371,0): 166, 202, 138, (223,372,0): 167, 203, 141, (223,373,0): 164, 203, 140, (223,374,0): 161, 200, 137, (223,375,0): 158, 198, 135, (223,376,0): 159, 201, 137, (223,377,0): 163, 208, 143, (223,378,0): 170, 215, 150, (223,379,0): 173, 219, 154, (223,380,0): 174, 220, 155, (223,381,0): 172, 221, 155, (223,382,0): 173, 222, 156, (223,383,0): 172, 225, 157, (223,384,0): 172, 229, 160, (223,385,0): 174, 234, 164, (223,386,0): 179, 238, 172, (223,387,0): 186, 244, 183, (223,388,0): 194, 249, 192, (223,389,0): 200, 253, 201, (223,390,0): 204, 255, 208, (223,391,0): 208, 255, 214, (223,392,0): 204, 250, 211, (223,393,0): 206, 250, 214, (223,394,0): 211, 252, 220, (223,395,0): 215, 254, 227, (223,396,0): 220, 255, 235, (223,397,0): 222, 254, 241, (223,398,0): 224, 254, 246, (223,399,0): 222, 254, 249, (223,400,0): 217, 255, 251, (223,401,0): 215, 255, 251, (223,402,0): 216, 255, 253, (223,403,0): 216, 255, 253, (223,404,0): 216, 255, 255, (223,405,0): 216, 255, 255, (223,406,0): 217, 255, 255, (223,407,0): 216, 255, 255, (223,408,0): 216, 253, 255, (223,409,0): 215, 254, 255, (223,410,0): 214, 255, 255, (223,411,0): 211, 255, 255, (223,412,0): 210, 255, 255, (223,413,0): 210, 255, 254, (223,414,0): 208, 255, 254, (223,415,0): 207, 255, 253, (223,416,0): 210, 255, 254, (223,417,0): 211, 255, 254, (223,418,0): 211, 255, 254, (223,419,0): 213, 254, 255, (223,420,0): 213, 254, 255, (223,421,0): 213, 254, 255, (223,422,0): 213, 254, 255, (223,423,0): 213, 254, 255, (223,424,0): 208, 252, 255, (223,425,0): 207, 252, 255, (223,426,0): 206, 254, 255, (223,427,0): 206, 255, 255, (223,428,0): 204, 255, 255, (223,429,0): 201, 254, 255, (223,430,0): 199, 254, 255, (223,431,0): 199, 252, 255, (223,432,0): 205, 252, 255, (223,433,0): 207, 254, 255, (223,434,0): 206, 254, 255, (223,435,0): 204, 252, 255, (223,436,0): 206, 255, 255, (223,437,0): 205, 252, 255, (223,438,0): 195, 238, 244, (223,439,0): 184, 221, 227, (223,440,0): 171, 202, 205, (223,441,0): 155, 181, 182, (223,442,0): 138, 158, 157, (223,443,0): 129, 145, 142, (223,444,0): 124, 137, 130, (223,445,0): 118, 129, 121, (223,446,0): 115, 127, 115, (223,447,0): 114, 130, 120, (223,448,0): 114, 137, 131, (223,449,0): 120, 146, 145, (223,450,0): 130, 159, 157, (223,451,0): 138, 168, 168, (223,452,0): 141, 172, 175, (223,453,0): 141, 174, 179, (223,454,0): 140, 177, 185, (223,455,0): 141, 179, 188, (223,456,0): 132, 170, 183, (223,457,0): 135, 172, 188, (223,458,0): 140, 175, 194, (223,459,0): 145, 177, 198, (223,460,0): 144, 174, 198, (223,461,0): 142, 169, 196, (223,462,0): 137, 163, 190, (223,463,0): 132, 159, 186, (223,464,0): 133, 161, 182, (223,465,0): 128, 159, 177, (223,466,0): 125, 156, 174, (223,467,0): 124, 156, 171, (223,468,0): 125, 154, 172, (223,469,0): 123, 152, 168, (223,470,0): 119, 146, 163, (223,471,0): 116, 142, 157, (223,472,0): 115, 141, 156, (223,473,0): 112, 135, 149, (223,474,0): 106, 128, 142, (223,475,0): 102, 124, 138, (223,476,0): 103, 122, 137, (223,477,0): 102, 121, 135, (223,478,0): 99, 118, 133, (223,479,0): 97, 116, 131, (223,480,0): 98, 116, 136, (223,481,0): 99, 117, 139, (223,482,0): 99, 120, 141, (223,483,0): 101, 123, 144, (223,484,0): 104, 129, 149, (223,485,0): 109, 136, 155, (223,486,0): 114, 142, 163, (223,487,0): 115, 146, 167, (223,488,0): 116, 147, 168, (223,489,0): 116, 148, 171, (223,490,0): 118, 150, 173, (223,491,0): 121, 153, 178, (223,492,0): 124, 156, 181, (223,493,0): 127, 159, 184, (223,494,0): 129, 161, 186, (223,495,0): 130, 162, 185, (223,496,0): 134, 165, 185, (223,497,0): 132, 163, 181, (223,498,0): 133, 162, 180, (223,499,0): 131, 160, 176, (223,500,0): 131, 160, 176, (223,501,0): 132, 161, 175, (223,502,0): 135, 163, 177, (223,503,0): 136, 164, 176, (223,504,0): 141, 168, 179, (223,505,0): 139, 166, 175, (223,506,0): 136, 160, 170, (223,507,0): 130, 155, 162, (223,508,0): 126, 149, 155, (223,509,0): 122, 146, 150, (223,510,0): 119, 143, 147, (223,511,0): 118, 142, 144, (223,512,0): 124, 145, 146, (223,513,0): 125, 145, 146, (223,514,0): 124, 144, 145, (223,515,0): 122, 140, 142, (223,516,0): 117, 135, 137, (223,517,0): 111, 129, 131, (223,518,0): 105, 123, 127, (223,519,0): 102, 120, 124, (223,520,0): 104, 122, 126, (223,521,0): 104, 122, 126, (223,522,0): 105, 123, 127, (223,523,0): 105, 123, 127, (223,524,0): 106, 123, 130, (223,525,0): 105, 124, 130, (223,526,0): 106, 125, 131, (223,527,0): 106, 125, 131, (223,528,0): 111, 130, 137, (223,529,0): 112, 130, 140, (223,530,0): 115, 132, 142, (223,531,0): 115, 133, 143, (223,532,0): 115, 133, 143, (223,533,0): 114, 132, 142, (223,534,0): 112, 130, 142, (223,535,0): 111, 129, 141, (223,536,0): 120, 139, 153, (223,537,0): 120, 139, 153, (223,538,0): 117, 139, 152, (223,539,0): 114, 136, 149, (223,540,0): 112, 134, 148, (223,541,0): 114, 136, 150, (223,542,0): 118, 141, 155, (223,543,0): 123, 146, 160, (223,544,0): 116, 142, 155, (223,545,0): 117, 143, 156, (223,546,0): 118, 144, 159, (223,547,0): 118, 144, 159, (223,548,0): 118, 144, 159, (223,549,0): 117, 143, 158, (223,550,0): 115, 141, 158, (223,551,0): 114, 140, 157, (223,552,0): 114, 140, 157, (223,553,0): 111, 137, 154, (223,554,0): 107, 132, 152, (223,555,0): 106, 131, 151, (223,556,0): 105, 130, 150, (223,557,0): 103, 128, 148, (223,558,0): 100, 125, 147, (223,559,0): 99, 122, 140, (223,560,0): 97, 116, 130, (223,561,0): 97, 115, 127, (223,562,0): 96, 114, 126, (223,563,0): 95, 111, 124, (223,564,0): 93, 109, 122, (223,565,0): 94, 108, 121, (223,566,0): 95, 107, 119, (223,567,0): 96, 106, 118, (223,568,0): 94, 102, 113, (223,569,0): 94, 101, 111, (223,570,0): 96, 100, 109, (223,571,0): 96, 99, 106, (223,572,0): 95, 99, 102, (223,573,0): 97, 98, 100, (223,574,0): 96, 98, 97, (223,575,0): 97, 97, 99, (223,576,0): 93, 86, 94, (223,577,0): 91, 81, 92, (223,578,0): 86, 76, 87, (223,579,0): 82, 72, 83, (223,580,0): 81, 69, 81, (223,581,0): 79, 67, 77, (223,582,0): 77, 64, 74, (223,583,0): 74, 61, 70, (223,584,0): 84, 71, 80, (223,585,0): 83, 70, 79, (223,586,0): 83, 67, 77, (223,587,0): 81, 66, 73, (223,588,0): 80, 63, 71, (223,589,0): 80, 63, 71, (223,590,0): 80, 63, 71, (223,591,0): 79, 64, 71, (223,592,0): 73, 62, 68, (223,593,0): 72, 63, 68, (223,594,0): 73, 64, 69, (223,595,0): 73, 64, 67, (223,596,0): 72, 63, 66, (223,597,0): 72, 61, 65, (223,598,0): 70, 59, 63, (223,599,0): 69, 58, 62, (224,0,0): 46, 30, 43, (224,1,0): 43, 30, 40, (224,2,0): 43, 27, 40, (224,3,0): 41, 28, 38, (224,4,0): 43, 27, 40, (224,5,0): 43, 30, 40, (224,6,0): 47, 31, 44, (224,7,0): 47, 34, 44, (224,8,0): 45, 29, 42, (224,9,0): 43, 30, 40, (224,10,0): 46, 30, 43, (224,11,0): 45, 32, 42, (224,12,0): 49, 33, 46, (224,13,0): 48, 35, 45, (224,14,0): 51, 35, 48, (224,15,0): 50, 37, 47, (224,16,0): 50, 34, 45, (224,17,0): 48, 35, 45, (224,18,0): 50, 34, 45, (224,19,0): 48, 35, 45, (224,20,0): 50, 34, 45, (224,21,0): 50, 34, 45, (224,22,0): 50, 34, 45, (224,23,0): 50, 34, 45, (224,24,0): 50, 34, 45, (224,25,0): 50, 34, 45, (224,26,0): 50, 34, 45, (224,27,0): 51, 35, 46, (224,28,0): 51, 35, 46, (224,29,0): 52, 36, 47, (224,30,0): 52, 36, 47, (224,31,0): 53, 37, 48, (224,32,0): 54, 38, 49, (224,33,0): 52, 39, 49, (224,34,0): 54, 38, 51, (224,35,0): 52, 39, 49, (224,36,0): 54, 38, 51, (224,37,0): 52, 39, 49, (224,38,0): 54, 38, 51, (224,39,0): 52, 39, 49, (224,40,0): 56, 40, 53, (224,41,0): 54, 41, 51, (224,42,0): 56, 40, 53, (224,43,0): 54, 41, 51, (224,44,0): 56, 40, 53, (224,45,0): 54, 41, 51, (224,46,0): 56, 40, 53, (224,47,0): 54, 41, 51, (224,48,0): 56, 40, 50, (224,49,0): 54, 41, 50, (224,50,0): 56, 40, 50, (224,51,0): 57, 41, 51, (224,52,0): 57, 42, 49, (224,53,0): 59, 42, 50, (224,54,0): 61, 41, 50, (224,55,0): 61, 41, 50, (224,56,0): 61, 40, 47, (224,57,0): 62, 41, 48, (224,58,0): 63, 40, 46, (224,59,0): 65, 40, 46, (224,60,0): 66, 41, 47, (224,61,0): 68, 41, 48, (224,62,0): 68, 41, 46, (224,63,0): 68, 41, 46, (224,64,0): 74, 43, 51, (224,65,0): 74, 43, 51, (224,66,0): 74, 43, 51, (224,67,0): 74, 43, 51, (224,68,0): 74, 43, 49, (224,69,0): 75, 42, 49, (224,70,0): 75, 43, 48, (224,71,0): 75, 43, 48, (224,72,0): 75, 43, 48, (224,73,0): 75, 43, 48, (224,74,0): 74, 42, 45, (224,75,0): 74, 42, 45, (224,76,0): 73, 41, 42, (224,77,0): 73, 41, 42, (224,78,0): 72, 40, 41, (224,79,0): 72, 40, 43, (224,80,0): 73, 42, 48, (224,81,0): 72, 43, 48, (224,82,0): 71, 41, 49, (224,83,0): 70, 41, 46, (224,84,0): 70, 40, 48, (224,85,0): 69, 40, 45, (224,86,0): 68, 38, 46, (224,87,0): 68, 39, 44, (224,88,0): 66, 36, 44, (224,89,0): 66, 37, 42, (224,90,0): 66, 36, 44, (224,91,0): 66, 37, 42, (224,92,0): 66, 36, 44, (224,93,0): 66, 37, 42, (224,94,0): 66, 36, 44, (224,95,0): 66, 37, 42, (224,96,0): 67, 37, 39, (224,97,0): 67, 37, 37, (224,98,0): 66, 36, 36, (224,99,0): 66, 36, 36, (224,100,0): 65, 35, 35, (224,101,0): 65, 35, 35, (224,102,0): 64, 34, 36, (224,103,0): 64, 34, 36, (224,104,0): 64, 34, 36, (224,105,0): 64, 34, 36, (224,106,0): 64, 33, 38, (224,107,0): 64, 33, 38, (224,108,0): 64, 33, 38, (224,109,0): 64, 33, 38, (224,110,0): 64, 33, 38, (224,111,0): 64, 34, 36, (224,112,0): 57, 32, 28, (224,113,0): 57, 32, 27, (224,114,0): 58, 33, 28, (224,115,0): 59, 34, 29, (224,116,0): 60, 35, 30, (224,117,0): 60, 35, 31, (224,118,0): 63, 35, 32, (224,119,0): 63, 35, 32, (224,120,0): 61, 33, 30, (224,121,0): 62, 34, 31, (224,122,0): 63, 35, 34, (224,123,0): 63, 35, 34, (224,124,0): 62, 33, 35, (224,125,0): 61, 32, 34, (224,126,0): 60, 31, 33, (224,127,0): 57, 31, 30, (224,128,0): 57, 33, 31, (224,129,0): 55, 34, 31, (224,130,0): 54, 33, 30, (224,131,0): 54, 33, 30, (224,132,0): 53, 32, 29, (224,133,0): 52, 31, 26, (224,134,0): 51, 30, 27, (224,135,0): 51, 30, 25, (224,136,0): 53, 32, 27, (224,137,0): 54, 33, 28, (224,138,0): 54, 33, 28, (224,139,0): 54, 33, 28, (224,140,0): 55, 34, 29, (224,141,0): 56, 35, 30, (224,142,0): 56, 35, 30, (224,143,0): 56, 35, 30, (224,144,0): 57, 33, 29, (224,145,0): 57, 33, 29, (224,146,0): 59, 34, 30, (224,147,0): 58, 34, 30, (224,148,0): 60, 35, 31, (224,149,0): 59, 35, 31, (224,150,0): 61, 36, 32, (224,151,0): 60, 36, 32, (224,152,0): 61, 36, 32, (224,153,0): 59, 35, 31, (224,154,0): 60, 35, 31, (224,155,0): 58, 34, 30, (224,156,0): 59, 34, 30, (224,157,0): 57, 33, 29, (224,158,0): 58, 33, 29, (224,159,0): 58, 33, 29, (224,160,0): 56, 31, 26, (224,161,0): 59, 32, 25, (224,162,0): 61, 33, 29, (224,163,0): 62, 35, 28, (224,164,0): 62, 34, 30, (224,165,0): 61, 34, 27, (224,166,0): 59, 31, 27, (224,167,0): 58, 31, 24, (224,168,0): 61, 33, 29, (224,169,0): 61, 34, 27, (224,170,0): 61, 33, 29, (224,171,0): 61, 34, 27, (224,172,0): 61, 33, 29, (224,173,0): 61, 34, 27, (224,174,0): 61, 33, 29, (224,175,0): 61, 34, 27, (224,176,0): 64, 37, 28, (224,177,0): 64, 37, 26, (224,178,0): 64, 35, 27, (224,179,0): 62, 35, 24, (224,180,0): 62, 33, 25, (224,181,0): 60, 33, 22, (224,182,0): 60, 31, 23, (224,183,0): 58, 31, 20, (224,184,0): 61, 32, 24, (224,185,0): 60, 33, 22, (224,186,0): 61, 32, 24, (224,187,0): 59, 32, 21, (224,188,0): 60, 31, 23, (224,189,0): 59, 32, 21, (224,190,0): 60, 31, 23, (224,191,0): 59, 32, 23, (224,192,0): 55, 30, 23, (224,193,0): 55, 30, 23, (224,194,0): 55, 30, 23, (224,195,0): 55, 30, 23, (224,196,0): 55, 30, 23, (224,197,0): 55, 30, 23, (224,198,0): 55, 30, 23, (224,199,0): 55, 30, 23, (224,200,0): 56, 31, 24, (224,201,0): 56, 31, 24, (224,202,0): 57, 32, 25, (224,203,0): 57, 32, 25, (224,204,0): 58, 33, 26, (224,205,0): 58, 33, 26, (224,206,0): 59, 34, 27, (224,207,0): 59, 35, 25, (224,208,0): 55, 31, 19, (224,209,0): 56, 33, 19, (224,210,0): 57, 34, 20, (224,211,0): 58, 35, 21, (224,212,0): 62, 36, 23, (224,213,0): 63, 37, 22, (224,214,0): 64, 38, 23, (224,215,0): 65, 39, 22, (224,216,0): 66, 39, 22, (224,217,0): 64, 37, 20, (224,218,0): 63, 36, 17, (224,219,0): 66, 39, 20, (224,220,0): 73, 45, 24, (224,221,0): 79, 51, 30, (224,222,0): 81, 53, 32, (224,223,0): 82, 54, 33, (224,224,0): 80, 49, 28, (224,225,0): 83, 51, 30, (224,226,0): 85, 53, 32, (224,227,0): 84, 52, 31, (224,228,0): 81, 49, 26, (224,229,0): 81, 49, 26, (224,230,0): 83, 51, 26, (224,231,0): 86, 54, 29, (224,232,0): 87, 56, 28, (224,233,0): 88, 57, 29, (224,234,0): 91, 60, 32, (224,235,0): 92, 61, 32, (224,236,0): 92, 61, 33, (224,237,0): 90, 59, 31, (224,238,0): 88, 57, 29, (224,239,0): 86, 54, 29, (224,240,0): 95, 60, 40, (224,241,0): 94, 59, 40, (224,242,0): 89, 58, 37, (224,243,0): 85, 57, 33, (224,244,0): 85, 60, 30, (224,245,0): 85, 62, 30, (224,246,0): 88, 65, 31, (224,247,0): 89, 67, 30, (224,248,0): 93, 71, 32, (224,249,0): 97, 73, 35, (224,250,0): 99, 76, 35, (224,251,0): 99, 77, 36, (224,252,0): 97, 78, 36, (224,253,0): 99, 82, 39, (224,254,0): 103, 88, 45, (224,255,0): 108, 93, 50, (224,256,0): 109, 92, 49, (224,257,0): 112, 93, 50, (224,258,0): 115, 97, 51, (224,259,0): 120, 102, 56, (224,260,0): 125, 107, 59, (224,261,0): 128, 112, 61, (224,262,0): 132, 115, 61, (224,263,0): 133, 118, 61, (224,264,0): 131, 117, 56, (224,265,0): 130, 116, 53, (224,266,0): 128, 115, 47, (224,267,0): 125, 115, 44, (224,268,0): 130, 118, 46, (224,269,0): 137, 127, 55, (224,270,0): 149, 140, 65, (224,271,0): 162, 148, 73, (224,272,0): 167, 147, 76, (224,273,0): 164, 139, 72, (224,274,0): 154, 129, 63, (224,275,0): 147, 118, 58, (224,276,0): 140, 111, 55, (224,277,0): 138, 108, 56, (224,278,0): 135, 107, 59, (224,279,0): 132, 108, 60, (224,280,0): 122, 100, 53, (224,281,0): 123, 102, 55, (224,282,0): 124, 106, 56, (224,283,0): 127, 110, 58, (224,284,0): 132, 112, 59, (224,285,0): 134, 113, 58, (224,286,0): 138, 113, 57, (224,287,0): 138, 113, 56, (224,288,0): 133, 111, 53, (224,289,0): 133, 111, 53, (224,290,0): 131, 110, 53, (224,291,0): 131, 110, 53, (224,292,0): 130, 109, 56, (224,293,0): 129, 107, 57, (224,294,0): 128, 108, 58, (224,295,0): 127, 106, 61, (224,296,0): 123, 101, 60, (224,297,0): 118, 99, 59, (224,298,0): 114, 94, 59, (224,299,0): 112, 92, 59, (224,300,0): 111, 92, 62, (224,301,0): 109, 90, 60, (224,302,0): 105, 85, 58, (224,303,0): 102, 82, 57, (224,304,0): 107, 87, 63, (224,305,0): 106, 88, 66, (224,306,0): 105, 87, 65, (224,307,0): 105, 87, 65, (224,308,0): 103, 85, 63, (224,309,0): 101, 83, 61, (224,310,0): 98, 82, 59, (224,311,0): 96, 79, 59, (224,312,0): 97, 82, 61, (224,313,0): 97, 82, 61, (224,314,0): 98, 83, 62, (224,315,0): 100, 85, 66, (224,316,0): 101, 86, 67, (224,317,0): 100, 87, 68, (224,318,0): 103, 88, 69, (224,319,0): 104, 89, 70, (224,320,0): 101, 84, 66, (224,321,0): 101, 84, 66, (224,322,0): 103, 84, 67, (224,323,0): 102, 85, 67, (224,324,0): 102, 83, 68, (224,325,0): 100, 81, 66, (224,326,0): 98, 79, 65, (224,327,0): 97, 78, 63, (224,328,0): 104, 85, 70, (224,329,0): 106, 85, 68, (224,330,0): 106, 85, 66, (224,331,0): 106, 86, 62, (224,332,0): 110, 90, 65, (224,333,0): 121, 102, 72, (224,334,0): 135, 116, 83, (224,335,0): 143, 128, 85, (224,336,0): 159, 153, 91, (224,337,0): 155, 152, 81, (224,338,0): 153, 150, 81, (224,339,0): 154, 154, 84, (224,340,0): 160, 161, 93, (224,341,0): 166, 169, 102, (224,342,0): 168, 173, 107, (224,343,0): 168, 174, 110, (224,344,0): 165, 171, 111, (224,345,0): 154, 162, 105, (224,346,0): 142, 151, 98, (224,347,0): 132, 142, 90, (224,348,0): 128, 137, 90, (224,349,0): 124, 136, 90, (224,350,0): 124, 133, 88, (224,351,0): 121, 132, 89, (224,352,0): 126, 139, 95, (224,353,0): 127, 143, 98, (224,354,0): 130, 146, 101, (224,355,0): 131, 147, 102, (224,356,0): 131, 147, 100, (224,357,0): 131, 149, 101, (224,358,0): 135, 153, 105, (224,359,0): 138, 158, 107, (224,360,0): 135, 157, 108, (224,361,0): 136, 160, 108, (224,362,0): 138, 165, 112, (224,363,0): 141, 170, 116, (224,364,0): 143, 174, 117, (224,365,0): 144, 177, 120, (224,366,0): 144, 179, 121, (224,367,0): 145, 181, 120, (224,368,0): 144, 178, 117, (224,369,0): 149, 183, 122, (224,370,0): 155, 189, 128, (224,371,0): 157, 193, 131, (224,372,0): 157, 193, 132, (224,373,0): 155, 193, 132, (224,374,0): 155, 193, 132, (224,375,0): 156, 196, 134, (224,376,0): 158, 199, 139, (224,377,0): 159, 203, 142, (224,378,0): 164, 208, 147, (224,379,0): 169, 215, 153, (224,380,0): 173, 218, 159, (224,381,0): 172, 220, 160, (224,382,0): 171, 219, 159, (224,383,0): 168, 218, 159, (224,384,0): 168, 221, 165, (224,385,0): 166, 223, 168, (224,386,0): 171, 228, 173, (224,387,0): 181, 238, 183, (224,388,0): 191, 248, 195, (224,389,0): 197, 254, 203, (224,390,0): 198, 254, 205, (224,391,0): 198, 251, 207, (224,392,0): 198, 250, 211, (224,393,0): 201, 251, 216, (224,394,0): 206, 252, 223, (224,395,0): 210, 254, 229, (224,396,0): 216, 255, 237, (224,397,0): 219, 255, 243, (224,398,0): 223, 255, 249, (224,399,0): 221, 255, 253, (224,400,0): 214, 255, 254, (224,401,0): 210, 255, 254, (224,402,0): 210, 255, 254, (224,403,0): 209, 255, 253, (224,404,0): 208, 254, 252, (224,405,0): 207, 253, 253, (224,406,0): 208, 252, 253, (224,407,0): 206, 252, 252, (224,408,0): 211, 255, 255, (224,409,0): 210, 255, 255, (224,410,0): 210, 255, 255, (224,411,0): 210, 255, 255, (224,412,0): 208, 255, 255, (224,413,0): 208, 255, 255, (224,414,0): 208, 255, 255, (224,415,0): 208, 255, 254, (224,416,0): 210, 255, 255, (224,417,0): 205, 255, 249, (224,418,0): 204, 255, 250, (224,419,0): 208, 255, 255, (224,420,0): 207, 255, 255, (224,421,0): 204, 254, 253, (224,422,0): 204, 254, 255, (224,423,0): 209, 255, 255, (224,424,0): 197, 248, 251, (224,425,0): 202, 253, 255, (224,426,0): 204, 255, 255, (224,427,0): 204, 255, 255, (224,428,0): 200, 255, 255, (224,429,0): 197, 253, 252, (224,430,0): 196, 255, 253, (224,431,0): 199, 254, 255, (224,432,0): 202, 252, 255, (224,433,0): 203, 252, 255, (224,434,0): 207, 255, 255, (224,435,0): 207, 255, 255, (224,436,0): 205, 249, 255, (224,437,0): 194, 237, 246, (224,438,0): 181, 220, 227, (224,439,0): 173, 208, 212, (224,440,0): 161, 190, 194, (224,441,0): 145, 171, 172, (224,442,0): 128, 150, 148, (224,443,0): 121, 140, 136, (224,444,0): 119, 134, 129, (224,445,0): 117, 130, 123, (224,446,0): 118, 129, 121, (224,447,0): 119, 134, 127, (224,448,0): 121, 141, 139, (224,449,0): 121, 145, 145, (224,450,0): 127, 153, 154, (224,451,0): 133, 161, 164, (224,452,0): 137, 168, 173, (224,453,0): 140, 173, 182, (224,454,0): 141, 175, 187, (224,455,0): 140, 176, 190, (224,456,0): 141, 178, 196, (224,457,0): 139, 176, 195, (224,458,0): 136, 172, 194, (224,459,0): 136, 170, 195, (224,460,0): 137, 171, 196, (224,461,0): 138, 170, 195, (224,462,0): 136, 166, 192, (224,463,0): 133, 163, 187, (224,464,0): 130, 156, 179, (224,465,0): 132, 159, 180, (224,466,0): 131, 158, 179, (224,467,0): 127, 154, 173, (224,468,0): 122, 147, 169, (224,469,0): 118, 143, 163, (224,470,0): 117, 142, 162, (224,471,0): 121, 144, 162, (224,472,0): 111, 134, 152, (224,473,0): 109, 130, 147, (224,474,0): 105, 126, 143, (224,475,0): 103, 122, 139, (224,476,0): 100, 119, 136, (224,477,0): 100, 119, 134, (224,478,0): 102, 119, 137, (224,479,0): 103, 120, 138, (224,480,0): 103, 120, 140, (224,481,0): 104, 121, 141, (224,482,0): 104, 122, 144, (224,483,0): 103, 121, 143, (224,484,0): 102, 122, 146, (224,485,0): 105, 127, 150, (224,486,0): 110, 134, 158, (224,487,0): 114, 140, 163, (224,488,0): 116, 142, 167, (224,489,0): 116, 143, 170, (224,490,0): 119, 146, 173, (224,491,0): 121, 151, 179, (224,492,0): 124, 154, 182, (224,493,0): 128, 158, 186, (224,494,0): 131, 160, 190, (224,495,0): 131, 162, 190, (224,496,0): 134, 169, 191, (224,497,0): 134, 169, 189, (224,498,0): 135, 167, 188, (224,499,0): 134, 166, 187, (224,500,0): 135, 166, 187, (224,501,0): 135, 166, 187, (224,502,0): 137, 165, 187, (224,503,0): 138, 166, 187, (224,504,0): 139, 166, 185, (224,505,0): 137, 164, 181, (224,506,0): 136, 162, 175, (224,507,0): 132, 159, 170, (224,508,0): 130, 154, 164, (224,509,0): 126, 151, 158, (224,510,0): 123, 148, 153, (224,511,0): 121, 146, 151, (224,512,0): 125, 148, 156, (224,513,0): 122, 145, 153, (224,514,0): 120, 140, 149, (224,515,0): 118, 136, 146, (224,516,0): 116, 133, 143, (224,517,0): 111, 128, 136, (224,518,0): 106, 120, 131, (224,519,0): 101, 115, 124, (224,520,0): 103, 117, 126, (224,521,0): 104, 118, 127, (224,522,0): 103, 120, 128, (224,523,0): 105, 122, 129, (224,524,0): 107, 126, 133, (224,525,0): 109, 130, 135, (224,526,0): 113, 134, 139, (224,527,0): 115, 135, 142, (224,528,0): 114, 134, 143, (224,529,0): 115, 135, 146, (224,530,0): 116, 134, 146, (224,531,0): 116, 136, 147, (224,532,0): 117, 137, 148, (224,533,0): 118, 138, 149, (224,534,0): 118, 138, 149, (224,535,0): 118, 138, 149, (224,536,0): 120, 139, 153, (224,537,0): 122, 141, 155, (224,538,0): 121, 143, 156, (224,539,0): 120, 142, 155, (224,540,0): 118, 140, 153, (224,541,0): 119, 141, 154, (224,542,0): 123, 145, 158, (224,543,0): 125, 148, 162, (224,544,0): 121, 147, 164, (224,545,0): 120, 147, 166, (224,546,0): 120, 147, 168, (224,547,0): 122, 149, 170, (224,548,0): 123, 150, 171, (224,549,0): 121, 148, 169, (224,550,0): 116, 143, 164, (224,551,0): 111, 138, 159, (224,552,0): 114, 141, 162, (224,553,0): 113, 140, 161, (224,554,0): 112, 139, 160, (224,555,0): 110, 137, 158, (224,556,0): 107, 134, 155, (224,557,0): 104, 131, 152, (224,558,0): 100, 126, 149, (224,559,0): 99, 124, 146, (224,560,0): 92, 117, 139, (224,561,0): 94, 116, 137, (224,562,0): 95, 117, 138, (224,563,0): 96, 117, 136, (224,564,0): 98, 116, 136, (224,565,0): 99, 116, 134, (224,566,0): 99, 115, 131, (224,567,0): 101, 114, 130, (224,568,0): 104, 116, 130, (224,569,0): 105, 115, 127, (224,570,0): 105, 111, 123, (224,571,0): 104, 108, 119, (224,572,0): 101, 103, 115, (224,573,0): 98, 101, 110, (224,574,0): 98, 98, 106, (224,575,0): 98, 97, 105, (224,576,0): 92, 89, 100, (224,577,0): 93, 87, 99, (224,578,0): 92, 86, 98, (224,579,0): 90, 84, 96, (224,580,0): 88, 80, 93, (224,581,0): 86, 78, 89, (224,582,0): 85, 77, 88, (224,583,0): 84, 76, 87, (224,584,0): 88, 78, 89, (224,585,0): 86, 76, 85, (224,586,0): 84, 72, 82, (224,587,0): 81, 70, 78, (224,588,0): 79, 68, 76, (224,589,0): 78, 67, 75, (224,590,0): 80, 67, 76, (224,591,0): 79, 68, 76, (224,592,0): 74, 64, 72, (224,593,0): 73, 66, 73, (224,594,0): 75, 65, 73, (224,595,0): 75, 66, 71, (224,596,0): 75, 64, 68, (224,597,0): 75, 63, 67, (224,598,0): 73, 61, 63, (224,599,0): 72, 60, 62, (225,0,0): 46, 30, 41, (225,1,0): 45, 29, 40, (225,2,0): 44, 28, 39, (225,3,0): 43, 27, 38, (225,4,0): 44, 28, 39, (225,5,0): 45, 29, 40, (225,6,0): 47, 31, 42, (225,7,0): 48, 32, 43, (225,8,0): 46, 30, 41, (225,9,0): 46, 30, 41, (225,10,0): 47, 31, 42, (225,11,0): 48, 32, 43, (225,12,0): 49, 33, 44, (225,13,0): 50, 34, 45, (225,14,0): 50, 34, 45, (225,15,0): 51, 35, 46, (225,16,0): 50, 34, 45, (225,17,0): 50, 34, 45, (225,18,0): 50, 34, 45, (225,19,0): 50, 34, 45, (225,20,0): 50, 34, 45, (225,21,0): 50, 34, 45, (225,22,0): 50, 34, 45, (225,23,0): 50, 34, 45, (225,24,0): 50, 34, 45, (225,25,0): 50, 34, 45, (225,26,0): 51, 35, 46, (225,27,0): 51, 35, 46, (225,28,0): 52, 36, 47, (225,29,0): 52, 36, 47, (225,30,0): 52, 36, 47, (225,31,0): 53, 37, 48, (225,32,0): 52, 38, 51, (225,33,0): 52, 38, 51, (225,34,0): 52, 38, 51, (225,35,0): 52, 38, 51, (225,36,0): 52, 38, 51, (225,37,0): 52, 38, 51, (225,38,0): 52, 38, 51, (225,39,0): 52, 38, 51, (225,40,0): 54, 40, 53, (225,41,0): 54, 40, 53, (225,42,0): 54, 40, 53, (225,43,0): 54, 40, 53, (225,44,0): 54, 40, 53, (225,45,0): 54, 40, 53, (225,46,0): 54, 40, 53, (225,47,0): 54, 41, 51, (225,48,0): 54, 41, 50, (225,49,0): 54, 41, 50, (225,50,0): 54, 41, 50, (225,51,0): 55, 42, 51, (225,52,0): 57, 42, 49, (225,53,0): 59, 42, 50, (225,54,0): 61, 41, 50, (225,55,0): 61, 41, 50, (225,56,0): 62, 41, 48, (225,57,0): 63, 40, 48, (225,58,0): 65, 40, 46, (225,59,0): 66, 41, 47, (225,60,0): 67, 40, 47, (225,61,0): 68, 41, 48, (225,62,0): 68, 41, 46, (225,63,0): 71, 42, 47, (225,64,0): 74, 43, 51, (225,65,0): 75, 42, 51, (225,66,0): 75, 42, 51, (225,67,0): 75, 42, 51, (225,68,0): 75, 42, 49, (225,69,0): 75, 42, 49, (225,70,0): 75, 43, 48, (225,71,0): 75, 43, 48, (225,72,0): 75, 43, 48, (225,73,0): 75, 43, 48, (225,74,0): 75, 43, 46, (225,75,0): 74, 42, 45, (225,76,0): 74, 42, 43, (225,77,0): 73, 41, 42, (225,78,0): 73, 41, 42, (225,79,0): 72, 40, 43, (225,80,0): 73, 42, 48, (225,81,0): 71, 41, 49, (225,82,0): 71, 41, 49, (225,83,0): 70, 40, 48, (225,84,0): 69, 39, 47, (225,85,0): 69, 39, 47, (225,86,0): 68, 38, 46, (225,87,0): 68, 38, 46, (225,88,0): 68, 38, 46, (225,89,0): 68, 38, 46, (225,90,0): 68, 38, 46, (225,91,0): 68, 38, 46, (225,92,0): 68, 38, 46, (225,93,0): 68, 38, 46, (225,94,0): 68, 38, 46, (225,95,0): 69, 38, 44, (225,96,0): 70, 38, 39, (225,97,0): 69, 38, 36, (225,98,0): 69, 38, 36, (225,99,0): 68, 37, 35, (225,100,0): 67, 35, 36, (225,101,0): 66, 34, 35, (225,102,0): 65, 33, 34, (225,103,0): 65, 33, 34, (225,104,0): 65, 33, 36, (225,105,0): 65, 33, 36, (225,106,0): 65, 33, 38, (225,107,0): 65, 33, 38, (225,108,0): 65, 33, 38, (225,109,0): 65, 33, 38, (225,110,0): 65, 33, 38, (225,111,0): 64, 34, 36, (225,112,0): 58, 33, 28, (225,113,0): 58, 33, 26, (225,114,0): 58, 33, 26, (225,115,0): 59, 34, 27, (225,116,0): 62, 34, 30, (225,117,0): 62, 34, 30, (225,118,0): 63, 35, 32, (225,119,0): 63, 35, 32, (225,120,0): 62, 34, 31, (225,121,0): 64, 34, 32, (225,122,0): 64, 34, 34, (225,123,0): 65, 35, 35, (225,124,0): 64, 34, 36, (225,125,0): 63, 33, 35, (225,126,0): 61, 31, 33, (225,127,0): 59, 31, 30, (225,128,0): 57, 33, 29, (225,129,0): 55, 34, 29, (225,130,0): 55, 34, 29, (225,131,0): 54, 33, 28, (225,132,0): 53, 32, 27, (225,133,0): 53, 32, 27, (225,134,0): 52, 31, 26, (225,135,0): 52, 31, 26, (225,136,0): 54, 33, 28, (225,137,0): 54, 33, 28, (225,138,0): 54, 33, 28, (225,139,0): 55, 34, 29, (225,140,0): 55, 34, 29, (225,141,0): 56, 35, 30, (225,142,0): 56, 35, 30, (225,143,0): 57, 36, 31, (225,144,0): 59, 34, 30, (225,145,0): 59, 34, 30, (225,146,0): 59, 34, 30, (225,147,0): 60, 35, 31, (225,148,0): 60, 35, 31, (225,149,0): 61, 36, 32, (225,150,0): 61, 36, 32, (225,151,0): 61, 36, 32, (225,152,0): 61, 36, 32, (225,153,0): 61, 36, 32, (225,154,0): 60, 35, 31, (225,155,0): 60, 35, 31, (225,156,0): 59, 34, 30, (225,157,0): 59, 34, 30, (225,158,0): 58, 33, 29, (225,159,0): 58, 33, 28, (225,160,0): 59, 31, 27, (225,161,0): 60, 33, 26, (225,162,0): 61, 34, 27, (225,163,0): 61, 34, 27, (225,164,0): 61, 34, 27, (225,165,0): 61, 34, 27, (225,166,0): 60, 33, 26, (225,167,0): 59, 32, 25, (225,168,0): 62, 35, 28, (225,169,0): 62, 35, 28, (225,170,0): 62, 35, 28, (225,171,0): 62, 35, 28, (225,172,0): 62, 35, 28, (225,173,0): 62, 35, 28, (225,174,0): 62, 35, 28, (225,175,0): 62, 35, 26, (225,176,0): 65, 36, 28, (225,177,0): 65, 37, 26, (225,178,0): 64, 36, 25, (225,179,0): 63, 35, 24, (225,180,0): 62, 34, 23, (225,181,0): 61, 33, 22, (225,182,0): 60, 32, 21, (225,183,0): 60, 32, 21, (225,184,0): 61, 33, 22, (225,185,0): 61, 33, 22, (225,186,0): 61, 33, 22, (225,187,0): 60, 32, 21, (225,188,0): 59, 31, 20, (225,189,0): 58, 30, 19, (225,190,0): 58, 30, 19, (225,191,0): 57, 30, 19, (225,192,0): 57, 30, 23, (225,193,0): 55, 30, 23, (225,194,0): 55, 30, 23, (225,195,0): 55, 30, 23, (225,196,0): 55, 30, 23, (225,197,0): 55, 30, 23, (225,198,0): 55, 30, 23, (225,199,0): 55, 30, 23, (225,200,0): 56, 31, 24, (225,201,0): 56, 31, 24, (225,202,0): 56, 31, 24, (225,203,0): 57, 32, 25, (225,204,0): 57, 32, 25, (225,205,0): 58, 33, 26, (225,206,0): 58, 33, 26, (225,207,0): 59, 34, 27, (225,208,0): 57, 35, 24, (225,209,0): 57, 35, 22, (225,210,0): 59, 35, 23, (225,211,0): 59, 36, 22, (225,212,0): 59, 36, 22, (225,213,0): 59, 36, 22, (225,214,0): 62, 36, 21, (225,215,0): 62, 36, 21, (225,216,0): 66, 39, 22, (225,217,0): 65, 38, 19, (225,218,0): 64, 37, 18, (225,219,0): 68, 41, 20, (225,220,0): 75, 47, 26, (225,221,0): 80, 52, 30, (225,222,0): 82, 54, 33, (225,223,0): 85, 54, 33, (225,224,0): 83, 51, 28, (225,225,0): 84, 52, 29, (225,226,0): 85, 53, 30, (225,227,0): 83, 51, 28, (225,228,0): 81, 49, 24, (225,229,0): 81, 49, 24, (225,230,0): 85, 54, 26, (225,231,0): 88, 57, 29, (225,232,0): 88, 57, 29, (225,233,0): 90, 59, 30, (225,234,0): 92, 61, 30, (225,235,0): 94, 63, 32, (225,236,0): 94, 63, 32, (225,237,0): 93, 63, 29, (225,238,0): 92, 62, 28, (225,239,0): 91, 60, 29, (225,240,0): 95, 59, 37, (225,241,0): 93, 58, 38, (225,242,0): 90, 58, 35, (225,243,0): 87, 60, 33, (225,244,0): 86, 63, 31, (225,245,0): 87, 67, 32, (225,246,0): 91, 71, 34, (225,247,0): 95, 73, 34, (225,248,0): 100, 77, 36, (225,249,0): 102, 79, 37, (225,250,0): 104, 81, 39, (225,251,0): 103, 82, 39, (225,252,0): 101, 82, 39, (225,253,0): 100, 86, 41, (225,254,0): 104, 91, 47, (225,255,0): 108, 95, 51, (225,256,0): 110, 93, 50, (225,257,0): 113, 94, 52, (225,258,0): 116, 97, 54, (225,259,0): 120, 102, 56, (225,260,0): 123, 107, 58, (225,261,0): 127, 111, 60, (225,262,0): 130, 114, 62, (225,263,0): 132, 117, 60, (225,264,0): 130, 119, 57, (225,265,0): 130, 119, 53, (225,266,0): 129, 120, 51, (225,267,0): 128, 120, 47, (225,268,0): 130, 122, 49, (225,269,0): 138, 130, 55, (225,270,0): 148, 142, 64, (225,271,0): 158, 149, 70, (225,272,0): 169, 151, 75, (225,273,0): 167, 145, 72, (225,274,0): 159, 134, 67, (225,275,0): 152, 124, 61, (225,276,0): 146, 115, 60, (225,277,0): 141, 111, 59, (225,278,0): 138, 110, 62, (225,279,0): 135, 111, 63, (225,280,0): 127, 104, 60, (225,281,0): 127, 106, 59, (225,282,0): 126, 108, 60, (225,283,0): 127, 110, 58, (225,284,0): 131, 111, 58, (225,285,0): 134, 112, 55, (225,286,0): 137, 112, 55, (225,287,0): 139, 113, 54, (225,288,0): 137, 113, 51, (225,289,0): 137, 113, 51, (225,290,0): 134, 112, 54, (225,291,0): 134, 112, 54, (225,292,0): 133, 110, 56, (225,293,0): 132, 109, 57, (225,294,0): 130, 108, 58, (225,295,0): 130, 108, 61, (225,296,0): 124, 103, 60, (225,297,0): 120, 98, 59, (225,298,0): 117, 95, 58, (225,299,0): 115, 92, 60, (225,300,0): 112, 91, 60, (225,301,0): 110, 89, 60, (225,302,0): 106, 85, 58, (225,303,0): 103, 81, 57, (225,304,0): 107, 86, 65, (225,305,0): 107, 86, 67, (225,306,0): 105, 87, 67, (225,307,0): 105, 87, 67, (225,308,0): 103, 85, 65, (225,309,0): 102, 84, 64, (225,310,0): 99, 82, 62, (225,311,0): 97, 80, 60, (225,312,0): 98, 83, 62, (225,313,0): 98, 83, 62, (225,314,0): 99, 84, 65, (225,315,0): 99, 84, 65, (225,316,0): 98, 85, 66, (225,317,0): 99, 86, 67, (225,318,0): 100, 87, 68, (225,319,0): 102, 87, 68, (225,320,0): 100, 83, 63, (225,321,0): 101, 84, 64, (225,322,0): 102, 83, 66, (225,323,0): 102, 83, 66, (225,324,0): 102, 83, 69, (225,325,0): 100, 81, 67, (225,326,0): 99, 79, 68, (225,327,0): 98, 79, 65, (225,328,0): 104, 82, 68, (225,329,0): 105, 84, 67, (225,330,0): 105, 84, 65, (225,331,0): 106, 86, 62, (225,332,0): 110, 90, 65, (225,333,0): 120, 101, 71, (225,334,0): 134, 113, 82, (225,335,0): 141, 126, 85, (225,336,0): 157, 148, 91, (225,337,0): 152, 147, 83, (225,338,0): 150, 144, 82, (225,339,0): 151, 145, 83, (225,340,0): 155, 150, 92, (225,341,0): 159, 154, 98, (225,342,0): 158, 155, 100, (225,343,0): 157, 156, 102, (225,344,0): 148, 148, 98, (225,345,0): 141, 140, 94, (225,346,0): 129, 130, 86, (225,347,0): 121, 123, 83, (225,348,0): 118, 120, 81, (225,349,0): 116, 121, 81, (225,350,0): 115, 119, 82, (225,351,0): 113, 119, 81, (225,352,0): 115, 126, 86, (225,353,0): 118, 130, 90, (225,354,0): 121, 133, 93, (225,355,0): 123, 135, 95, (225,356,0): 124, 137, 94, (225,357,0): 125, 140, 97, (225,358,0): 129, 144, 101, (225,359,0): 132, 149, 104, (225,360,0): 132, 151, 105, (225,361,0): 132, 154, 107, (225,362,0): 132, 159, 108, (225,363,0): 134, 162, 111, (225,364,0): 136, 166, 112, (225,365,0): 136, 169, 114, (225,366,0): 136, 171, 115, (225,367,0): 136, 171, 115, (225,368,0): 135, 166, 109, (225,369,0): 141, 172, 113, (225,370,0): 146, 179, 122, (225,371,0): 152, 185, 128, (225,372,0): 154, 187, 130, (225,373,0): 154, 189, 131, (225,374,0): 154, 192, 135, (225,375,0): 157, 195, 138, (225,376,0): 156, 195, 140, (225,377,0): 158, 199, 143, (225,378,0): 161, 204, 148, (225,379,0): 167, 210, 154, (225,380,0): 169, 214, 159, (225,381,0): 170, 215, 160, (225,382,0): 168, 215, 160, (225,383,0): 166, 215, 160, (225,384,0): 167, 219, 170, (225,385,0): 169, 223, 174, (225,386,0): 174, 228, 178, (225,387,0): 180, 237, 186, (225,388,0): 187, 245, 194, (225,389,0): 192, 250, 200, (225,390,0): 194, 252, 204, (225,391,0): 194, 251, 206, (225,392,0): 196, 253, 212, (225,393,0): 198, 252, 216, (225,394,0): 203, 253, 224, (225,395,0): 207, 255, 231, (225,396,0): 212, 255, 238, (225,397,0): 215, 255, 244, (225,398,0): 218, 255, 248, (225,399,0): 216, 255, 253, (225,400,0): 211, 255, 254, (225,401,0): 208, 255, 255, (225,402,0): 207, 255, 255, (225,403,0): 207, 255, 255, (225,404,0): 206, 254, 254, (225,405,0): 205, 253, 253, (225,406,0): 205, 253, 253, (225,407,0): 204, 252, 252, (225,408,0): 208, 255, 255, (225,409,0): 208, 255, 255, (225,410,0): 208, 255, 255, (225,411,0): 208, 255, 255, (225,412,0): 208, 255, 255, (225,413,0): 208, 255, 255, (225,414,0): 208, 255, 255, (225,415,0): 207, 255, 254, (225,416,0): 210, 255, 255, (225,417,0): 205, 255, 250, (225,418,0): 203, 255, 250, (225,419,0): 205, 255, 253, (225,420,0): 200, 255, 252, (225,421,0): 192, 246, 246, (225,422,0): 189, 242, 246, (225,423,0): 192, 245, 249, (225,424,0): 194, 249, 254, (225,425,0): 197, 252, 255, (225,426,0): 199, 254, 255, (225,427,0): 198, 253, 255, (225,428,0): 194, 252, 253, (225,429,0): 193, 251, 252, (225,430,0): 194, 253, 251, (225,431,0): 196, 254, 255, (225,432,0): 203, 255, 255, (225,433,0): 202, 254, 255, (225,434,0): 202, 249, 255, (225,435,0): 200, 246, 255, (225,436,0): 194, 238, 251, (225,437,0): 184, 224, 234, (225,438,0): 171, 208, 216, (225,439,0): 164, 197, 202, (225,440,0): 152, 181, 185, (225,441,0): 138, 164, 165, (225,442,0): 124, 146, 144, (225,443,0): 120, 139, 137, (225,444,0): 120, 136, 133, (225,445,0): 118, 133, 128, (225,446,0): 120, 133, 126, (225,447,0): 121, 136, 131, (225,448,0): 120, 140, 139, (225,449,0): 121, 145, 145, (225,450,0): 127, 151, 155, (225,451,0): 132, 160, 164, (225,452,0): 138, 167, 175, (225,453,0): 141, 171, 182, (225,454,0): 142, 174, 189, (225,455,0): 142, 175, 194, (225,456,0): 141, 176, 196, (225,457,0): 137, 173, 195, (225,458,0): 133, 169, 193, (225,459,0): 132, 168, 192, (225,460,0): 133, 167, 194, (225,461,0): 131, 165, 192, (225,462,0): 130, 162, 187, (225,463,0): 127, 157, 181, (225,464,0): 125, 151, 174, (225,465,0): 127, 152, 174, (225,466,0): 127, 152, 174, (225,467,0): 122, 147, 169, (225,468,0): 119, 141, 164, (225,469,0): 115, 137, 158, (225,470,0): 114, 136, 157, (225,471,0): 115, 137, 158, (225,472,0): 110, 131, 150, (225,473,0): 107, 128, 147, (225,474,0): 105, 124, 141, (225,475,0): 102, 121, 138, (225,476,0): 100, 119, 136, (225,477,0): 99, 118, 135, (225,478,0): 102, 119, 137, (225,479,0): 103, 120, 138, (225,480,0): 104, 121, 141, (225,481,0): 105, 122, 142, (225,482,0): 104, 120, 143, (225,483,0): 102, 118, 141, (225,484,0): 100, 118, 142, (225,485,0): 102, 120, 144, (225,486,0): 106, 126, 151, (225,487,0): 110, 132, 156, (225,488,0): 114, 138, 164, (225,489,0): 116, 140, 168, (225,490,0): 118, 143, 173, (225,491,0): 120, 147, 176, (225,492,0): 124, 151, 181, (225,493,0): 126, 155, 185, (225,494,0): 129, 158, 190, (225,495,0): 129, 160, 189, (225,496,0): 133, 167, 192, (225,497,0): 132, 168, 190, (225,498,0): 134, 168, 193, (225,499,0): 134, 168, 193, (225,500,0): 137, 169, 194, (225,501,0): 137, 169, 194, (225,502,0): 138, 168, 194, (225,503,0): 138, 168, 192, (225,504,0): 140, 168, 190, (225,505,0): 138, 166, 187, (225,506,0): 137, 164, 181, (225,507,0): 134, 160, 175, (225,508,0): 132, 156, 168, (225,509,0): 127, 151, 161, (225,510,0): 123, 148, 155, (225,511,0): 120, 145, 152, (225,512,0): 124, 148, 158, (225,513,0): 121, 145, 157, (225,514,0): 121, 140, 154, (225,515,0): 119, 138, 152, (225,516,0): 119, 135, 148, (225,517,0): 113, 129, 142, (225,518,0): 107, 121, 134, (225,519,0): 101, 115, 128, (225,520,0): 103, 117, 128, (225,521,0): 104, 118, 129, (225,522,0): 105, 119, 128, (225,523,0): 105, 122, 130, (225,524,0): 107, 126, 133, (225,525,0): 109, 129, 136, (225,526,0): 112, 133, 138, (225,527,0): 112, 135, 141, (225,528,0): 115, 135, 144, (225,529,0): 116, 136, 147, (225,530,0): 116, 136, 147, (225,531,0): 117, 137, 148, (225,532,0): 118, 138, 149, (225,533,0): 119, 139, 150, (225,534,0): 120, 140, 151, (225,535,0): 120, 140, 151, (225,536,0): 121, 140, 154, (225,537,0): 123, 142, 156, (225,538,0): 123, 145, 158, (225,539,0): 123, 145, 158, (225,540,0): 121, 143, 156, (225,541,0): 121, 143, 156, (225,542,0): 123, 145, 158, (225,543,0): 125, 148, 164, (225,544,0): 123, 148, 170, (225,545,0): 121, 147, 170, (225,546,0): 122, 148, 171, (225,547,0): 124, 150, 173, (225,548,0): 126, 152, 175, (225,549,0): 124, 150, 173, (225,550,0): 120, 146, 169, (225,551,0): 116, 142, 165, (225,552,0): 116, 142, 165, (225,553,0): 115, 141, 164, (225,554,0): 114, 140, 163, (225,555,0): 111, 137, 160, (225,556,0): 108, 134, 157, (225,557,0): 104, 130, 153, (225,558,0): 100, 126, 149, (225,559,0): 98, 124, 147, (225,560,0): 93, 119, 144, (225,561,0): 94, 120, 143, (225,562,0): 95, 119, 143, (225,563,0): 96, 121, 143, (225,564,0): 99, 120, 141, (225,565,0): 100, 118, 138, (225,566,0): 101, 118, 138, (225,567,0): 101, 117, 133, (225,568,0): 105, 118, 135, (225,569,0): 107, 116, 133, (225,570,0): 106, 113, 129, (225,571,0): 104, 110, 124, (225,572,0): 103, 105, 118, (225,573,0): 100, 102, 115, (225,574,0): 100, 100, 112, (225,575,0): 99, 99, 111, (225,576,0): 94, 92, 105, (225,577,0): 93, 91, 104, (225,578,0): 92, 88, 102, (225,579,0): 90, 86, 100, (225,580,0): 88, 84, 98, (225,581,0): 86, 83, 94, (225,582,0): 86, 80, 92, (225,583,0): 85, 79, 91, (225,584,0): 87, 81, 91, (225,585,0): 86, 78, 89, (225,586,0): 83, 75, 86, (225,587,0): 80, 73, 81, (225,588,0): 81, 71, 80, (225,589,0): 80, 70, 79, (225,590,0): 80, 70, 78, (225,591,0): 80, 70, 78, (225,592,0): 74, 67, 75, (225,593,0): 75, 68, 76, (225,594,0): 77, 67, 76, (225,595,0): 77, 67, 75, (225,596,0): 78, 65, 72, (225,597,0): 77, 65, 69, (225,598,0): 77, 62, 67, (225,599,0): 76, 61, 64, (226,0,0): 45, 29, 40, (226,1,0): 45, 29, 40, (226,2,0): 44, 28, 39, (226,3,0): 44, 28, 39, (226,4,0): 45, 29, 40, (226,5,0): 46, 30, 41, (226,6,0): 47, 31, 42, (226,7,0): 48, 32, 43, (226,8,0): 48, 32, 43, (226,9,0): 48, 32, 43, (226,10,0): 48, 32, 43, (226,11,0): 49, 33, 44, (226,12,0): 49, 33, 44, (226,13,0): 49, 33, 44, (226,14,0): 49, 33, 44, (226,15,0): 49, 33, 44, (226,16,0): 50, 34, 45, (226,17,0): 50, 34, 45, (226,18,0): 50, 34, 45, (226,19,0): 50, 34, 45, (226,20,0): 50, 34, 45, (226,21,0): 50, 34, 45, (226,22,0): 50, 34, 45, (226,23,0): 50, 34, 45, (226,24,0): 50, 34, 45, (226,25,0): 51, 35, 46, (226,26,0): 51, 35, 46, (226,27,0): 51, 35, 46, (226,28,0): 52, 36, 47, (226,29,0): 53, 37, 48, (226,30,0): 53, 37, 48, (226,31,0): 53, 37, 48, (226,32,0): 54, 38, 49, (226,33,0): 54, 38, 49, (226,34,0): 54, 38, 49, (226,35,0): 54, 38, 49, (226,36,0): 54, 38, 49, (226,37,0): 54, 38, 49, (226,38,0): 54, 38, 49, (226,39,0): 54, 38, 49, (226,40,0): 56, 40, 51, (226,41,0): 56, 40, 51, (226,42,0): 56, 40, 51, (226,43,0): 56, 40, 51, (226,44,0): 56, 40, 51, (226,45,0): 56, 40, 51, (226,46,0): 56, 40, 51, (226,47,0): 56, 40, 51, (226,48,0): 54, 41, 50, (226,49,0): 54, 41, 50, (226,50,0): 56, 40, 50, (226,51,0): 57, 41, 51, (226,52,0): 58, 41, 49, (226,53,0): 59, 42, 50, (226,54,0): 61, 42, 48, (226,55,0): 61, 42, 48, (226,56,0): 63, 42, 49, (226,57,0): 64, 41, 49, (226,58,0): 66, 41, 47, (226,59,0): 67, 42, 48, (226,60,0): 68, 41, 46, (226,61,0): 69, 42, 47, (226,62,0): 71, 42, 47, (226,63,0): 71, 42, 47, (226,64,0): 75, 44, 52, (226,65,0): 76, 43, 52, (226,66,0): 76, 43, 50, (226,67,0): 76, 43, 50, (226,68,0): 76, 43, 50, (226,69,0): 76, 43, 50, (226,70,0): 76, 44, 49, (226,71,0): 76, 44, 49, (226,72,0): 76, 44, 47, (226,73,0): 75, 43, 46, (226,74,0): 75, 43, 46, (226,75,0): 74, 42, 45, (226,76,0): 74, 42, 43, (226,77,0): 73, 41, 42, (226,78,0): 73, 41, 42, (226,79,0): 73, 41, 44, (226,80,0): 72, 41, 46, (226,81,0): 71, 40, 46, (226,82,0): 71, 40, 46, (226,83,0): 71, 40, 46, (226,84,0): 70, 39, 45, (226,85,0): 70, 39, 45, (226,86,0): 69, 38, 44, (226,87,0): 69, 38, 44, (226,88,0): 72, 41, 47, (226,89,0): 72, 41, 47, (226,90,0): 72, 41, 47, (226,91,0): 72, 41, 47, (226,92,0): 72, 41, 47, (226,93,0): 72, 41, 47, (226,94,0): 72, 41, 47, (226,95,0): 72, 41, 46, (226,96,0): 72, 40, 41, (226,97,0): 72, 41, 39, (226,98,0): 71, 40, 38, (226,99,0): 70, 39, 37, (226,100,0): 68, 36, 37, (226,101,0): 67, 35, 36, (226,102,0): 66, 34, 35, (226,103,0): 65, 33, 34, (226,104,0): 65, 33, 34, (226,105,0): 65, 33, 34, (226,106,0): 65, 33, 36, (226,107,0): 65, 33, 36, (226,108,0): 65, 33, 36, (226,109,0): 65, 33, 36, (226,110,0): 65, 33, 36, (226,111,0): 64, 34, 34, (226,112,0): 61, 33, 29, (226,113,0): 61, 34, 27, (226,114,0): 61, 34, 27, (226,115,0): 62, 35, 28, (226,116,0): 63, 34, 28, (226,117,0): 64, 35, 29, (226,118,0): 64, 35, 31, (226,119,0): 64, 35, 31, (226,120,0): 64, 34, 32, (226,121,0): 66, 35, 33, (226,122,0): 66, 34, 35, (226,123,0): 67, 35, 36, (226,124,0): 66, 34, 35, (226,125,0): 65, 33, 34, (226,126,0): 63, 31, 32, (226,127,0): 61, 31, 31, (226,128,0): 58, 34, 30, (226,129,0): 55, 34, 29, (226,130,0): 55, 34, 29, (226,131,0): 55, 34, 29, (226,132,0): 54, 33, 28, (226,133,0): 54, 33, 28, (226,134,0): 53, 32, 27, (226,135,0): 53, 32, 27, (226,136,0): 55, 34, 29, (226,137,0): 55, 34, 29, (226,138,0): 55, 34, 29, (226,139,0): 56, 35, 30, (226,140,0): 56, 35, 30, (226,141,0): 57, 36, 31, (226,142,0): 57, 36, 31, (226,143,0): 57, 36, 31, (226,144,0): 60, 35, 31, (226,145,0): 60, 35, 31, (226,146,0): 60, 35, 31, (226,147,0): 61, 36, 32, (226,148,0): 61, 36, 32, (226,149,0): 62, 37, 33, (226,150,0): 62, 37, 33, (226,151,0): 63, 38, 34, (226,152,0): 62, 37, 33, (226,153,0): 62, 37, 33, (226,154,0): 61, 36, 32, (226,155,0): 61, 36, 32, (226,156,0): 60, 35, 31, (226,157,0): 60, 35, 31, (226,158,0): 59, 34, 30, (226,159,0): 59, 34, 29, (226,160,0): 62, 34, 30, (226,161,0): 62, 33, 27, (226,162,0): 62, 33, 27, (226,163,0): 61, 32, 26, (226,164,0): 61, 32, 26, (226,165,0): 62, 33, 27, (226,166,0): 62, 33, 27, (226,167,0): 63, 34, 28, (226,168,0): 63, 34, 28, (226,169,0): 63, 34, 28, (226,170,0): 63, 34, 28, (226,171,0): 63, 34, 28, (226,172,0): 63, 34, 28, (226,173,0): 63, 34, 28, (226,174,0): 63, 34, 28, (226,175,0): 63, 34, 26, (226,176,0): 66, 37, 29, (226,177,0): 66, 38, 27, (226,178,0): 65, 37, 26, (226,179,0): 64, 36, 25, (226,180,0): 63, 35, 24, (226,181,0): 62, 34, 23, (226,182,0): 61, 33, 22, (226,183,0): 61, 33, 22, (226,184,0): 62, 34, 23, (226,185,0): 62, 34, 23, (226,186,0): 61, 33, 22, (226,187,0): 59, 31, 20, (226,188,0): 58, 30, 19, (226,189,0): 56, 28, 17, (226,190,0): 55, 27, 16, (226,191,0): 54, 27, 16, (226,192,0): 57, 30, 23, (226,193,0): 55, 30, 23, (226,194,0): 55, 30, 23, (226,195,0): 55, 30, 23, (226,196,0): 55, 30, 23, (226,197,0): 55, 30, 23, (226,198,0): 55, 30, 23, (226,199,0): 55, 30, 23, (226,200,0): 55, 30, 23, (226,201,0): 56, 31, 24, (226,202,0): 56, 31, 24, (226,203,0): 57, 32, 25, (226,204,0): 57, 32, 25, (226,205,0): 58, 33, 26, (226,206,0): 58, 33, 26, (226,207,0): 58, 33, 26, (226,208,0): 60, 36, 26, (226,209,0): 60, 36, 26, (226,210,0): 60, 36, 26, (226,211,0): 59, 35, 23, (226,212,0): 61, 34, 23, (226,213,0): 60, 34, 21, (226,214,0): 60, 34, 19, (226,215,0): 60, 34, 19, (226,216,0): 67, 40, 23, (226,217,0): 66, 39, 20, (226,218,0): 67, 39, 18, (226,219,0): 71, 43, 21, (226,220,0): 77, 49, 27, (226,221,0): 82, 54, 30, (226,222,0): 86, 55, 34, (226,223,0): 86, 56, 32, (226,224,0): 86, 54, 29, (226,225,0): 86, 55, 27, (226,226,0): 85, 54, 25, (226,227,0): 83, 52, 23, (226,228,0): 81, 50, 21, (226,229,0): 83, 52, 23, (226,230,0): 88, 57, 28, (226,231,0): 92, 61, 30, (226,232,0): 93, 62, 31, (226,233,0): 93, 62, 31, (226,234,0): 95, 65, 31, (226,235,0): 96, 66, 32, (226,236,0): 97, 67, 33, (226,237,0): 97, 67, 31, (226,238,0): 97, 67, 31, (226,239,0): 96, 65, 34, (226,240,0): 96, 60, 36, (226,241,0): 94, 59, 37, (226,242,0): 91, 61, 35, (226,243,0): 89, 64, 34, (226,244,0): 91, 68, 34, (226,245,0): 93, 73, 36, (226,246,0): 99, 77, 36, (226,247,0): 102, 81, 38, (226,248,0): 107, 84, 40, (226,249,0): 110, 86, 42, (226,250,0): 111, 87, 43, (226,251,0): 110, 87, 43, (226,252,0): 108, 87, 42, (226,253,0): 106, 89, 43, (226,254,0): 106, 93, 48, (226,255,0): 109, 96, 51, (226,256,0): 112, 95, 51, (226,257,0): 114, 95, 52, (226,258,0): 117, 98, 55, (226,259,0): 120, 102, 56, (226,260,0): 123, 107, 58, (226,261,0): 126, 110, 58, (226,262,0): 129, 114, 59, (226,263,0): 130, 115, 56, (226,264,0): 131, 120, 58, (226,265,0): 133, 122, 56, (226,266,0): 134, 125, 56, (226,267,0): 135, 127, 54, (226,268,0): 137, 129, 56, (226,269,0): 143, 135, 60, (226,270,0): 151, 145, 67, (226,271,0): 159, 150, 71, (226,272,0): 174, 158, 80, (226,273,0): 171, 152, 75, (226,274,0): 167, 143, 71, (226,275,0): 158, 133, 66, (226,276,0): 152, 123, 63, (226,277,0): 147, 118, 62, (226,278,0): 143, 116, 63, (226,279,0): 140, 117, 65, (226,280,0): 134, 112, 63, (226,281,0): 132, 112, 61, (226,282,0): 128, 111, 59, (226,283,0): 127, 110, 54, (226,284,0): 130, 111, 53, (226,285,0): 134, 112, 54, (226,286,0): 138, 114, 54, (226,287,0): 141, 115, 54, (226,288,0): 141, 117, 55, (226,289,0): 141, 117, 55, (226,290,0): 138, 116, 58, (226,291,0): 137, 115, 57, (226,292,0): 136, 113, 59, (226,293,0): 134, 111, 59, (226,294,0): 133, 111, 61, (226,295,0): 132, 110, 63, (226,296,0): 125, 104, 61, (226,297,0): 122, 100, 61, (226,298,0): 118, 96, 59, (226,299,0): 116, 93, 61, (226,300,0): 113, 92, 61, (226,301,0): 110, 89, 60, (226,302,0): 106, 85, 58, (226,303,0): 103, 81, 57, (226,304,0): 106, 86, 62, (226,305,0): 106, 85, 64, (226,306,0): 105, 87, 65, (226,307,0): 105, 87, 65, (226,308,0): 104, 86, 64, (226,309,0): 103, 85, 63, (226,310,0): 100, 83, 63, (226,311,0): 99, 82, 62, (226,312,0): 98, 83, 62, (226,313,0): 99, 84, 63, (226,314,0): 99, 84, 65, (226,315,0): 99, 84, 65, (226,316,0): 97, 84, 65, (226,317,0): 97, 84, 65, (226,318,0): 98, 85, 66, (226,319,0): 98, 85, 66, (226,320,0): 98, 83, 62, (226,321,0): 99, 84, 63, (226,322,0): 101, 84, 66, (226,323,0): 101, 84, 66, (226,324,0): 100, 82, 68, (226,325,0): 99, 81, 67, (226,326,0): 99, 80, 66, (226,327,0): 98, 79, 65, (226,328,0): 102, 80, 66, (226,329,0): 102, 81, 64, (226,330,0): 104, 81, 63, (226,331,0): 106, 84, 61, (226,332,0): 110, 88, 64, (226,333,0): 119, 98, 69, (226,334,0): 131, 108, 77, (226,335,0): 137, 117, 80, (226,336,0): 149, 135, 86, (226,337,0): 146, 133, 80, (226,338,0): 143, 131, 79, (226,339,0): 142, 130, 78, (226,340,0): 141, 131, 82, (226,341,0): 140, 129, 83, (226,342,0): 137, 129, 83, (226,343,0): 134, 127, 83, (226,344,0): 120, 115, 75, (226,345,0): 115, 110, 72, (226,346,0): 107, 103, 66, (226,347,0): 101, 98, 63, (226,348,0): 101, 98, 65, (226,349,0): 102, 99, 66, (226,350,0): 102, 101, 70, (226,351,0): 101, 102, 68, (226,352,0): 103, 109, 73, (226,353,0): 104, 115, 75, (226,354,0): 109, 120, 80, (226,355,0): 113, 124, 84, (226,356,0): 116, 127, 87, (226,357,0): 119, 132, 89, (226,358,0): 122, 137, 94, (226,359,0): 125, 142, 98, (226,360,0): 127, 144, 99, (226,361,0): 127, 146, 100, (226,362,0): 128, 150, 101, (226,363,0): 129, 153, 103, (226,364,0): 129, 156, 105, (226,365,0): 129, 157, 106, (226,366,0): 128, 158, 106, (226,367,0): 128, 158, 106, (226,368,0): 124, 154, 100, (226,369,0): 130, 160, 106, (226,370,0): 138, 168, 114, (226,371,0): 143, 176, 121, (226,372,0): 147, 180, 127, (226,373,0): 150, 185, 131, (226,374,0): 152, 189, 137, (226,375,0): 156, 193, 141, (226,376,0): 153, 192, 139, (226,377,0): 155, 195, 142, (226,378,0): 158, 201, 148, (226,379,0): 162, 205, 152, (226,380,0): 164, 208, 157, (226,381,0): 165, 209, 158, (226,382,0): 166, 210, 159, (226,383,0): 165, 211, 162, (226,384,0): 168, 218, 169, (226,385,0): 169, 223, 174, (226,386,0): 175, 229, 180, (226,387,0): 178, 234, 185, (226,388,0): 182, 240, 190, (226,389,0): 186, 244, 194, (226,390,0): 189, 248, 200, (226,391,0): 192, 251, 207, (226,392,0): 195, 253, 213, (226,393,0): 197, 253, 218, (226,394,0): 201, 254, 226, (226,395,0): 205, 254, 232, (226,396,0): 208, 255, 239, (226,397,0): 211, 254, 244, (226,398,0): 212, 253, 245, (226,399,0): 211, 253, 249, (226,400,0): 209, 255, 253, (226,401,0): 207, 255, 255, (226,402,0): 206, 254, 254, (226,403,0): 206, 254, 254, (226,404,0): 206, 254, 254, (226,405,0): 205, 253, 253, (226,406,0): 205, 253, 253, (226,407,0): 205, 253, 253, (226,408,0): 207, 255, 255, (226,409,0): 207, 255, 255, (226,410,0): 207, 255, 255, (226,411,0): 207, 255, 255, (226,412,0): 207, 255, 255, (226,413,0): 207, 255, 255, (226,414,0): 207, 255, 255, (226,415,0): 206, 255, 255, (226,416,0): 210, 255, 255, (226,417,0): 203, 255, 253, (226,418,0): 202, 255, 254, (226,419,0): 202, 255, 255, (226,420,0): 195, 249, 251, (226,421,0): 183, 236, 240, (226,422,0): 175, 228, 236, (226,423,0): 174, 227, 235, (226,424,0): 193, 248, 255, (226,425,0): 195, 250, 255, (226,426,0): 196, 251, 255, (226,427,0): 196, 251, 255, (226,428,0): 195, 250, 255, (226,429,0): 195, 250, 255, (226,430,0): 196, 254, 255, (226,431,0): 198, 255, 255, (226,432,0): 204, 255, 255, (226,433,0): 199, 251, 255, (226,434,0): 193, 240, 255, (226,435,0): 185, 231, 244, (226,436,0): 177, 221, 234, (226,437,0): 167, 207, 217, (226,438,0): 156, 193, 202, (226,439,0): 150, 183, 190, (226,440,0): 140, 169, 173, (226,441,0): 129, 155, 156, (226,442,0): 120, 141, 142, (226,443,0): 121, 140, 138, (226,444,0): 123, 139, 136, (226,445,0): 122, 137, 132, (226,446,0): 123, 135, 131, (226,447,0): 123, 138, 135, (226,448,0): 118, 138, 137, (226,449,0): 119, 143, 143, (226,450,0): 126, 150, 154, (226,451,0): 131, 159, 163, (226,452,0): 137, 166, 174, (226,453,0): 141, 171, 182, (226,454,0): 142, 174, 189, (226,455,0): 142, 175, 194, (226,456,0): 140, 175, 195, (226,457,0): 136, 171, 193, (226,458,0): 132, 166, 191, (226,459,0): 129, 163, 188, (226,460,0): 130, 162, 187, (226,461,0): 127, 159, 184, (226,462,0): 123, 153, 179, (226,463,0): 122, 150, 174, (226,464,0): 120, 144, 168, (226,465,0): 122, 144, 167, (226,466,0): 121, 143, 166, (226,467,0): 117, 139, 162, (226,468,0): 113, 134, 155, (226,469,0): 109, 130, 151, (226,470,0): 108, 129, 150, (226,471,0): 109, 130, 149, (226,472,0): 107, 125, 145, (226,473,0): 105, 123, 143, (226,474,0): 103, 120, 138, (226,475,0): 100, 117, 135, (226,476,0): 99, 116, 132, (226,477,0): 99, 116, 132, (226,478,0): 101, 117, 133, (226,479,0): 102, 118, 134, (226,480,0): 104, 119, 138, (226,481,0): 104, 119, 138, (226,482,0): 101, 118, 138, (226,483,0): 98, 115, 135, (226,484,0): 94, 112, 134, (226,485,0): 95, 113, 135, (226,486,0): 98, 118, 142, (226,487,0): 101, 123, 147, (226,488,0): 109, 133, 159, (226,489,0): 111, 135, 161, (226,490,0): 113, 139, 166, (226,491,0): 116, 143, 170, (226,492,0): 121, 148, 177, (226,493,0): 125, 152, 181, (226,494,0): 126, 155, 185, (226,495,0): 127, 158, 187, (226,496,0): 130, 164, 189, (226,497,0): 132, 166, 191, (226,498,0): 135, 169, 196, (226,499,0): 137, 171, 198, (226,500,0): 141, 172, 200, (226,501,0): 141, 173, 198, (226,502,0): 141, 171, 197, (226,503,0): 141, 171, 195, (226,504,0): 143, 171, 195, (226,505,0): 142, 170, 192, (226,506,0): 140, 167, 186, (226,507,0): 136, 163, 180, (226,508,0): 132, 158, 171, (226,509,0): 126, 153, 162, (226,510,0): 123, 148, 155, (226,511,0): 121, 146, 153, (226,512,0): 123, 147, 157, (226,513,0): 122, 146, 158, (226,514,0): 124, 143, 157, (226,515,0): 123, 142, 156, (226,516,0): 123, 139, 152, (226,517,0): 116, 132, 145, (226,518,0): 109, 123, 136, (226,519,0): 102, 116, 129, (226,520,0): 105, 117, 129, (226,521,0): 104, 118, 129, (226,522,0): 105, 119, 128, (226,523,0): 105, 122, 130, (226,524,0): 107, 126, 133, (226,525,0): 109, 129, 136, (226,526,0): 112, 133, 138, (226,527,0): 114, 134, 141, (226,528,0): 118, 136, 146, (226,529,0): 118, 136, 148, (226,530,0): 118, 138, 149, (226,531,0): 119, 139, 150, (226,532,0): 120, 140, 151, (226,533,0): 121, 141, 152, (226,534,0): 122, 141, 155, (226,535,0): 122, 141, 155, (226,536,0): 120, 142, 155, (226,537,0): 123, 145, 158, (226,538,0): 127, 149, 162, (226,539,0): 128, 150, 163, (226,540,0): 126, 148, 162, (226,541,0): 124, 146, 160, (226,542,0): 125, 147, 161, (226,543,0): 125, 148, 164, (226,544,0): 124, 149, 171, (226,545,0): 122, 148, 171, (226,546,0): 123, 149, 172, (226,547,0): 126, 152, 175, (226,548,0): 128, 154, 177, (226,549,0): 128, 154, 177, (226,550,0): 125, 151, 174, (226,551,0): 121, 147, 170, (226,552,0): 119, 145, 168, (226,553,0): 118, 144, 167, (226,554,0): 116, 142, 165, (226,555,0): 113, 139, 162, (226,556,0): 109, 135, 158, (226,557,0): 104, 130, 153, (226,558,0): 100, 126, 149, (226,559,0): 98, 124, 147, (226,560,0): 97, 123, 146, (226,561,0): 98, 124, 147, (226,562,0): 100, 124, 148, (226,563,0): 101, 126, 148, (226,564,0): 104, 125, 146, (226,565,0): 105, 123, 143, (226,566,0): 105, 122, 142, (226,567,0): 105, 121, 137, (226,568,0): 108, 121, 138, (226,569,0): 110, 119, 136, (226,570,0): 109, 116, 132, (226,571,0): 107, 113, 127, (226,572,0): 106, 108, 121, (226,573,0): 103, 105, 118, (226,574,0): 103, 102, 116, (226,575,0): 102, 101, 115, (226,576,0): 97, 96, 110, (226,577,0): 96, 95, 109, (226,578,0): 95, 93, 107, (226,579,0): 93, 91, 104, (226,580,0): 91, 89, 102, (226,581,0): 89, 87, 100, (226,582,0): 88, 85, 96, (226,583,0): 88, 85, 96, (226,584,0): 87, 84, 95, (226,585,0): 88, 82, 92, (226,586,0): 86, 80, 90, (226,587,0): 84, 78, 88, (226,588,0): 83, 76, 84, (226,589,0): 82, 75, 83, (226,590,0): 82, 75, 83, (226,591,0): 82, 75, 83, (226,592,0): 78, 70, 81, (226,593,0): 79, 72, 80, (226,594,0): 81, 71, 80, (226,595,0): 81, 71, 79, (226,596,0): 82, 69, 76, (226,597,0): 80, 68, 72, (226,598,0): 80, 65, 70, (226,599,0): 79, 64, 69, (227,0,0): 45, 29, 40, (227,1,0): 45, 29, 40, (227,2,0): 45, 29, 40, (227,3,0): 46, 30, 41, (227,4,0): 46, 30, 41, (227,5,0): 47, 31, 42, (227,6,0): 48, 32, 43, (227,7,0): 48, 32, 43, (227,8,0): 50, 34, 45, (227,9,0): 50, 34, 45, (227,10,0): 50, 34, 45, (227,11,0): 49, 33, 44, (227,12,0): 49, 33, 44, (227,13,0): 49, 33, 44, (227,14,0): 49, 33, 44, (227,15,0): 49, 33, 44, (227,16,0): 50, 34, 45, (227,17,0): 50, 34, 45, (227,18,0): 50, 34, 45, (227,19,0): 50, 34, 45, (227,20,0): 50, 34, 45, (227,21,0): 50, 34, 45, (227,22,0): 50, 34, 45, (227,23,0): 50, 34, 45, (227,24,0): 51, 35, 46, (227,25,0): 51, 35, 46, (227,26,0): 51, 35, 46, (227,27,0): 52, 36, 47, (227,28,0): 52, 36, 47, (227,29,0): 53, 37, 48, (227,30,0): 53, 37, 48, (227,31,0): 54, 38, 49, (227,32,0): 54, 38, 49, (227,33,0): 54, 38, 49, (227,34,0): 54, 38, 49, (227,35,0): 54, 38, 49, (227,36,0): 54, 38, 49, (227,37,0): 54, 38, 49, (227,38,0): 54, 38, 49, (227,39,0): 54, 38, 49, (227,40,0): 56, 40, 51, (227,41,0): 56, 40, 51, (227,42,0): 56, 40, 51, (227,43,0): 56, 40, 51, (227,44,0): 56, 40, 51, (227,45,0): 56, 40, 51, (227,46,0): 56, 40, 51, (227,47,0): 56, 40, 51, (227,48,0): 54, 41, 50, (227,49,0): 54, 41, 50, (227,50,0): 56, 40, 50, (227,51,0): 57, 41, 51, (227,52,0): 58, 41, 49, (227,53,0): 59, 42, 50, (227,54,0): 61, 42, 48, (227,55,0): 62, 41, 48, (227,56,0): 65, 42, 50, (227,57,0): 65, 42, 48, (227,58,0): 67, 42, 48, (227,59,0): 68, 43, 49, (227,60,0): 69, 42, 47, (227,61,0): 70, 43, 48, (227,62,0): 72, 43, 48, (227,63,0): 72, 43, 48, (227,64,0): 76, 43, 52, (227,65,0): 76, 43, 52, (227,66,0): 76, 43, 50, (227,67,0): 76, 43, 50, (227,68,0): 76, 43, 50, (227,69,0): 76, 43, 50, (227,70,0): 76, 44, 49, (227,71,0): 76, 44, 49, (227,72,0): 76, 44, 47, (227,73,0): 76, 44, 47, (227,74,0): 76, 44, 47, (227,75,0): 75, 43, 46, (227,76,0): 74, 42, 43, (227,77,0): 74, 42, 43, (227,78,0): 74, 42, 43, (227,79,0): 73, 41, 42, (227,80,0): 71, 40, 45, (227,81,0): 71, 40, 46, (227,82,0): 71, 40, 46, (227,83,0): 71, 40, 46, (227,84,0): 71, 40, 46, (227,85,0): 70, 39, 45, (227,86,0): 70, 39, 45, (227,87,0): 70, 39, 45, (227,88,0): 73, 42, 48, (227,89,0): 73, 42, 48, (227,90,0): 73, 42, 48, (227,91,0): 73, 42, 48, (227,92,0): 73, 42, 48, (227,93,0): 73, 42, 48, (227,94,0): 73, 42, 48, (227,95,0): 73, 42, 47, (227,96,0): 75, 43, 44, (227,97,0): 74, 43, 41, (227,98,0): 73, 42, 40, (227,99,0): 72, 41, 39, (227,100,0): 70, 38, 39, (227,101,0): 69, 37, 38, (227,102,0): 68, 36, 37, (227,103,0): 67, 35, 36, (227,104,0): 67, 35, 36, (227,105,0): 67, 35, 36, (227,106,0): 67, 35, 36, (227,107,0): 67, 35, 36, (227,108,0): 67, 35, 38, (227,109,0): 67, 35, 36, (227,110,0): 67, 35, 38, (227,111,0): 67, 36, 34, (227,112,0): 64, 35, 31, (227,113,0): 64, 35, 29, (227,114,0): 65, 34, 29, (227,115,0): 65, 34, 29, (227,116,0): 65, 34, 29, (227,117,0): 65, 34, 29, (227,118,0): 65, 34, 31, (227,119,0): 66, 35, 32, (227,120,0): 67, 36, 34, (227,121,0): 67, 36, 34, (227,122,0): 70, 36, 35, (227,123,0): 68, 36, 37, (227,124,0): 70, 36, 37, (227,125,0): 66, 34, 35, (227,126,0): 67, 33, 34, (227,127,0): 63, 33, 31, (227,128,0): 59, 34, 30, (227,129,0): 56, 35, 30, (227,130,0): 56, 35, 30, (227,131,0): 56, 35, 30, (227,132,0): 55, 34, 29, (227,133,0): 55, 34, 29, (227,134,0): 55, 34, 29, (227,135,0): 55, 34, 29, (227,136,0): 56, 35, 30, (227,137,0): 56, 35, 30, (227,138,0): 56, 35, 30, (227,139,0): 57, 36, 31, (227,140,0): 57, 36, 31, (227,141,0): 58, 37, 32, (227,142,0): 58, 37, 32, (227,143,0): 60, 36, 32, (227,144,0): 61, 36, 32, (227,145,0): 62, 37, 33, (227,146,0): 62, 37, 33, (227,147,0): 62, 37, 33, (227,148,0): 63, 38, 34, (227,149,0): 63, 38, 34, (227,150,0): 64, 39, 35, (227,151,0): 64, 39, 35, (227,152,0): 63, 38, 34, (227,153,0): 63, 38, 34, (227,154,0): 62, 37, 33, (227,155,0): 62, 37, 33, (227,156,0): 61, 36, 32, (227,157,0): 61, 36, 32, (227,158,0): 60, 35, 31, (227,159,0): 62, 34, 30, (227,160,0): 65, 36, 30, (227,161,0): 64, 35, 29, (227,162,0): 62, 33, 27, (227,163,0): 61, 32, 26, (227,164,0): 61, 32, 26, (227,165,0): 62, 33, 27, (227,166,0): 64, 35, 29, (227,167,0): 65, 36, 30, (227,168,0): 64, 35, 29, (227,169,0): 64, 35, 29, (227,170,0): 64, 35, 29, (227,171,0): 64, 35, 29, (227,172,0): 64, 35, 29, (227,173,0): 64, 35, 29, (227,174,0): 64, 35, 29, (227,175,0): 64, 35, 27, (227,176,0): 67, 39, 28, (227,177,0): 67, 39, 28, (227,178,0): 66, 38, 27, (227,179,0): 65, 37, 26, (227,180,0): 64, 36, 25, (227,181,0): 63, 35, 24, (227,182,0): 62, 34, 23, (227,183,0): 62, 34, 23, (227,184,0): 62, 34, 23, (227,185,0): 62, 34, 23, (227,186,0): 60, 32, 21, (227,187,0): 59, 31, 20, (227,188,0): 57, 29, 18, (227,189,0): 55, 27, 16, (227,190,0): 54, 26, 15, (227,191,0): 52, 25, 14, (227,192,0): 57, 30, 23, (227,193,0): 55, 30, 23, (227,194,0): 55, 30, 23, (227,195,0): 55, 30, 23, (227,196,0): 55, 30, 23, (227,197,0): 55, 30, 23, (227,198,0): 55, 30, 23, (227,199,0): 55, 30, 23, (227,200,0): 55, 30, 23, (227,201,0): 55, 30, 23, (227,202,0): 55, 30, 23, (227,203,0): 56, 31, 24, (227,204,0): 57, 32, 25, (227,205,0): 57, 32, 25, (227,206,0): 57, 32, 25, (227,207,0): 58, 33, 26, (227,208,0): 59, 34, 27, (227,209,0): 59, 35, 25, (227,210,0): 59, 35, 25, (227,211,0): 59, 35, 25, (227,212,0): 61, 34, 23, (227,213,0): 61, 35, 22, (227,214,0): 61, 35, 22, (227,215,0): 61, 35, 18, (227,216,0): 67, 40, 21, (227,217,0): 67, 40, 19, (227,218,0): 69, 41, 19, (227,219,0): 73, 45, 21, (227,220,0): 80, 52, 28, (227,221,0): 85, 58, 31, (227,222,0): 89, 59, 33, (227,223,0): 88, 58, 30, (227,224,0): 90, 59, 30, (227,225,0): 88, 57, 26, (227,226,0): 85, 55, 21, (227,227,0): 83, 53, 19, (227,228,0): 84, 54, 20, (227,229,0): 87, 57, 23, (227,230,0): 92, 62, 28, (227,231,0): 96, 66, 32, (227,232,0): 100, 70, 36, (227,233,0): 100, 70, 36, (227,234,0): 99, 69, 35, (227,235,0): 99, 69, 35, (227,236,0): 98, 68, 32, (227,237,0): 99, 69, 33, (227,238,0): 99, 69, 33, (227,239,0): 99, 69, 35, (227,240,0): 99, 65, 38, (227,241,0): 99, 65, 40, (227,242,0): 96, 66, 38, (227,243,0): 94, 70, 36, (227,244,0): 96, 74, 37, (227,245,0): 98, 79, 37, (227,246,0): 105, 84, 41, (227,247,0): 107, 86, 41, (227,248,0): 115, 91, 45, (227,249,0): 117, 93, 45, (227,250,0): 118, 94, 46, (227,251,0): 116, 94, 45, (227,252,0): 113, 93, 43, (227,253,0): 109, 93, 42, (227,254,0): 108, 96, 46, (227,255,0): 111, 99, 49, (227,256,0): 116, 99, 53, (227,257,0): 118, 100, 54, (227,258,0): 120, 102, 56, (227,259,0): 122, 104, 56, (227,260,0): 124, 108, 57, (227,261,0): 127, 111, 59, (227,262,0): 129, 114, 57, (227,263,0): 130, 115, 56, (227,264,0): 130, 119, 57, (227,265,0): 133, 122, 56, (227,266,0): 137, 128, 59, (227,267,0): 141, 133, 61, (227,268,0): 145, 137, 64, (227,269,0): 150, 142, 67, (227,270,0): 157, 151, 75, (227,271,0): 163, 156, 76, (227,272,0): 177, 165, 83, (227,273,0): 177, 160, 80, (227,274,0): 174, 152, 77, (227,275,0): 166, 142, 70, (227,276,0): 159, 131, 66, (227,277,0): 153, 124, 64, (227,278,0): 148, 122, 65, (227,279,0): 145, 123, 66, (227,280,0): 137, 116, 63, (227,281,0): 134, 114, 61, (227,282,0): 129, 112, 56, (227,283,0): 128, 112, 53, (227,284,0): 132, 112, 53, (227,285,0): 136, 114, 54, (227,286,0): 143, 119, 55, (227,287,0): 147, 122, 58, (227,288,0): 145, 121, 59, (227,289,0): 145, 121, 61, (227,290,0): 142, 120, 62, (227,291,0): 140, 118, 60, (227,292,0): 139, 116, 62, (227,293,0): 137, 114, 62, (227,294,0): 135, 113, 63, (227,295,0): 135, 113, 66, (227,296,0): 128, 107, 64, (227,297,0): 124, 102, 61, (227,298,0): 120, 98, 61, (227,299,0): 117, 94, 60, (227,300,0): 114, 94, 61, (227,301,0): 112, 91, 60, (227,302,0): 107, 86, 57, (227,303,0): 104, 83, 56, (227,304,0): 106, 86, 62, (227,305,0): 107, 86, 65, (227,306,0): 105, 87, 65, (227,307,0): 105, 87, 65, (227,308,0): 105, 87, 65, (227,309,0): 103, 85, 63, (227,310,0): 101, 84, 64, (227,311,0): 100, 83, 63, (227,312,0): 99, 84, 63, (227,313,0): 99, 84, 63, (227,314,0): 98, 83, 64, (227,315,0): 98, 83, 64, (227,316,0): 96, 83, 64, (227,317,0): 96, 83, 64, (227,318,0): 96, 83, 64, (227,319,0): 95, 82, 63, (227,320,0): 95, 83, 61, (227,321,0): 96, 84, 62, (227,322,0): 97, 84, 65, (227,323,0): 99, 84, 65, (227,324,0): 99, 83, 67, (227,325,0): 99, 81, 67, (227,326,0): 98, 80, 66, (227,327,0): 98, 79, 65, (227,328,0): 100, 78, 64, (227,329,0): 100, 79, 62, (227,330,0): 102, 79, 61, (227,331,0): 106, 81, 61, (227,332,0): 110, 86, 62, (227,333,0): 116, 92, 66, (227,334,0): 124, 98, 71, (227,335,0): 128, 105, 73, (227,336,0): 134, 115, 75, (227,337,0): 133, 114, 72, (227,338,0): 129, 111, 71, (227,339,0): 125, 107, 67, (227,340,0): 120, 105, 66, (227,341,0): 115, 99, 63, (227,342,0): 110, 96, 61, (227,343,0): 106, 93, 59, (227,344,0): 97, 84, 52, (227,345,0): 92, 81, 51, (227,346,0): 87, 78, 49, (227,347,0): 86, 76, 49, (227,348,0): 85, 78, 50, (227,349,0): 88, 81, 53, (227,350,0): 91, 85, 59, (227,351,0): 90, 89, 59, (227,352,0): 94, 98, 63, (227,353,0): 97, 105, 66, (227,354,0): 102, 113, 73, (227,355,0): 108, 119, 79, (227,356,0): 112, 123, 83, (227,357,0): 117, 128, 88, (227,358,0): 122, 134, 94, (227,359,0): 124, 139, 96, (227,360,0): 125, 140, 97, (227,361,0): 125, 142, 97, (227,362,0): 126, 145, 99, (227,363,0): 125, 147, 98, (227,364,0): 125, 149, 99, (227,365,0): 124, 148, 98, (227,366,0): 122, 149, 98, (227,367,0): 121, 148, 97, (227,368,0): 119, 147, 98, (227,369,0): 124, 154, 104, (227,370,0): 132, 162, 112, (227,371,0): 139, 169, 119, (227,372,0): 144, 173, 125, (227,373,0): 147, 179, 130, (227,374,0): 151, 184, 137, (227,375,0): 153, 189, 141, (227,376,0): 152, 188, 140, (227,377,0): 155, 193, 144, (227,378,0): 158, 197, 150, (227,379,0): 159, 201, 153, (227,380,0): 160, 202, 156, (227,381,0): 161, 204, 158, (227,382,0): 164, 207, 161, (227,383,0): 165, 211, 164, (227,384,0): 167, 216, 169, (227,385,0): 169, 221, 173, (227,386,0): 174, 226, 178, (227,387,0): 176, 230, 181, (227,388,0): 176, 232, 183, (227,389,0): 179, 237, 189, (227,390,0): 184, 243, 197, (227,391,0): 189, 247, 206, (227,392,0): 194, 252, 214, (227,393,0): 195, 252, 219, (227,394,0): 199, 254, 225, (227,395,0): 202, 255, 233, (227,396,0): 204, 255, 238, (227,397,0): 206, 254, 242, (227,398,0): 206, 251, 244, (227,399,0): 205, 252, 246, (227,400,0): 206, 255, 252, (227,401,0): 205, 255, 254, (227,402,0): 206, 254, 254, (227,403,0): 204, 254, 253, (227,404,0): 205, 253, 253, (227,405,0): 204, 254, 253, (227,406,0): 205, 253, 253, (227,407,0): 204, 254, 253, (227,408,0): 207, 255, 255, (227,409,0): 206, 255, 255, (227,410,0): 207, 255, 255, (227,411,0): 206, 255, 255, (227,412,0): 207, 255, 255, (227,413,0): 206, 255, 255, (227,414,0): 207, 255, 255, (227,415,0): 206, 255, 255, (227,416,0): 207, 255, 255, (227,417,0): 203, 255, 255, (227,418,0): 202, 255, 255, (227,419,0): 203, 255, 255, (227,420,0): 194, 247, 253, (227,421,0): 178, 231, 239, (227,422,0): 166, 218, 229, (227,423,0): 164, 216, 229, (227,424,0): 185, 239, 251, (227,425,0): 187, 241, 253, (227,426,0): 190, 244, 255, (227,427,0): 193, 247, 255, (227,428,0): 195, 249, 255, (227,429,0): 196, 251, 255, (227,430,0): 196, 253, 255, (227,431,0): 199, 253, 255, (227,432,0): 197, 249, 255, (227,433,0): 192, 241, 255, (227,434,0): 181, 228, 244, (227,435,0): 170, 216, 231, (227,436,0): 161, 205, 218, (227,437,0): 153, 193, 203, (227,438,0): 145, 182, 191, (227,439,0): 141, 174, 181, (227,440,0): 133, 162, 166, (227,441,0): 125, 150, 154, (227,442,0): 120, 141, 142, (227,443,0): 122, 142, 141, (227,444,0): 127, 143, 142, (227,445,0): 124, 139, 136, (227,446,0): 121, 136, 133, (227,447,0): 122, 137, 134, (227,448,0): 118, 138, 137, (227,449,0): 119, 143, 145, (227,450,0): 126, 150, 154, (227,451,0): 130, 158, 162, (227,452,0): 137, 164, 173, (227,453,0): 140, 170, 181, (227,454,0): 140, 172, 187, (227,455,0): 140, 173, 190, (227,456,0): 142, 175, 194, (227,457,0): 136, 171, 191, (227,458,0): 131, 166, 188, (227,459,0): 129, 161, 186, (227,460,0): 126, 158, 183, (227,461,0): 124, 154, 178, (227,462,0): 119, 149, 175, (227,463,0): 117, 145, 169, (227,464,0): 116, 141, 163, (227,465,0): 117, 139, 162, (227,466,0): 115, 137, 160, (227,467,0): 113, 134, 155, (227,468,0): 109, 130, 151, (227,469,0): 106, 127, 146, (227,470,0): 104, 125, 144, (227,471,0): 105, 123, 143, (227,472,0): 102, 120, 140, (227,473,0): 102, 119, 137, (227,474,0): 100, 117, 135, (227,475,0): 98, 115, 131, (227,476,0): 97, 114, 130, (227,477,0): 98, 114, 130, (227,478,0): 99, 115, 131, (227,479,0): 100, 116, 132, (227,480,0): 99, 114, 133, (227,481,0): 99, 114, 133, (227,482,0): 97, 112, 133, (227,483,0): 93, 110, 130, (227,484,0): 90, 106, 129, (227,485,0): 90, 108, 130, (227,486,0): 95, 113, 137, (227,487,0): 97, 117, 141, (227,488,0): 105, 127, 151, (227,489,0): 105, 129, 155, (227,490,0): 109, 133, 161, (227,491,0): 113, 139, 166, (227,492,0): 118, 143, 173, (227,493,0): 121, 148, 177, (227,494,0): 125, 152, 182, (227,495,0): 125, 155, 183, (227,496,0): 129, 160, 188, (227,497,0): 130, 164, 189, (227,498,0): 134, 168, 195, (227,499,0): 139, 173, 200, (227,500,0): 144, 175, 203, (227,501,0): 144, 175, 203, (227,502,0): 144, 174, 202, (227,503,0): 143, 173, 199, (227,504,0): 147, 174, 201, (227,505,0): 146, 174, 198, (227,506,0): 144, 171, 192, (227,507,0): 140, 167, 186, (227,508,0): 136, 162, 177, (227,509,0): 129, 156, 167, (227,510,0): 125, 149, 159, (227,511,0): 122, 146, 156, (227,512,0): 124, 148, 160, (227,513,0): 123, 147, 159, (227,514,0): 124, 146, 159, (227,515,0): 127, 146, 160, (227,516,0): 125, 143, 155, (227,517,0): 120, 136, 149, (227,518,0): 112, 126, 139, (227,519,0): 104, 118, 131, (227,520,0): 106, 118, 130, (227,521,0): 106, 118, 130, (227,522,0): 106, 120, 129, (227,523,0): 107, 121, 130, (227,524,0): 107, 124, 132, (227,525,0): 109, 128, 135, (227,526,0): 112, 131, 137, (227,527,0): 114, 133, 140, (227,528,0): 119, 137, 147, (227,529,0): 119, 137, 149, (227,530,0): 120, 138, 150, (227,531,0): 121, 141, 152, (227,532,0): 122, 142, 153, (227,533,0): 123, 143, 154, (227,534,0): 124, 143, 157, (227,535,0): 125, 144, 158, (227,536,0): 121, 143, 156, (227,537,0): 126, 148, 161, (227,538,0): 131, 153, 166, (227,539,0): 133, 155, 168, (227,540,0): 131, 153, 167, (227,541,0): 128, 150, 164, (227,542,0): 126, 148, 162, (227,543,0): 125, 148, 164, (227,544,0): 123, 148, 170, (227,545,0): 121, 147, 170, (227,546,0): 121, 147, 170, (227,547,0): 124, 150, 173, (227,548,0): 128, 154, 177, (227,549,0): 129, 155, 178, (227,550,0): 127, 153, 176, (227,551,0): 124, 150, 173, (227,552,0): 121, 147, 170, (227,553,0): 120, 146, 169, (227,554,0): 118, 144, 167, (227,555,0): 115, 141, 164, (227,556,0): 110, 136, 159, (227,557,0): 105, 131, 154, (227,558,0): 101, 127, 150, (227,559,0): 98, 124, 147, (227,560,0): 100, 126, 149, (227,561,0): 101, 127, 150, (227,562,0): 104, 129, 151, (227,563,0): 107, 129, 152, (227,564,0): 108, 129, 150, (227,565,0): 109, 127, 147, (227,566,0): 108, 125, 145, (227,567,0): 108, 123, 142, (227,568,0): 112, 123, 141, (227,569,0): 113, 122, 139, (227,570,0): 111, 118, 134, (227,571,0): 109, 115, 131, (227,572,0): 108, 111, 126, (227,573,0): 106, 108, 121, (227,574,0): 106, 105, 119, (227,575,0): 104, 103, 117, (227,576,0): 99, 101, 114, (227,577,0): 98, 100, 113, (227,578,0): 96, 98, 111, (227,579,0): 94, 96, 109, (227,580,0): 94, 93, 107, (227,581,0): 92, 92, 104, (227,582,0): 91, 91, 103, (227,583,0): 91, 89, 100, (227,584,0): 89, 87, 98, (227,585,0): 88, 86, 97, (227,586,0): 88, 85, 96, (227,587,0): 87, 84, 93, (227,588,0): 85, 82, 91, (227,589,0): 86, 81, 88, (227,590,0): 86, 81, 88, (227,591,0): 86, 81, 88, (227,592,0): 83, 75, 86, (227,593,0): 83, 75, 86, (227,594,0): 85, 75, 84, (227,595,0): 85, 75, 83, (227,596,0): 84, 73, 81, (227,597,0): 83, 70, 77, (227,598,0): 83, 68, 73, (227,599,0): 82, 67, 72, (228,0,0): 45, 29, 40, (228,1,0): 45, 29, 40, (228,2,0): 46, 30, 41, (228,3,0): 47, 31, 42, (228,4,0): 47, 31, 42, (228,5,0): 48, 32, 43, (228,6,0): 48, 32, 43, (228,7,0): 48, 32, 43, (228,8,0): 50, 34, 45, (228,9,0): 50, 34, 45, (228,10,0): 50, 34, 45, (228,11,0): 50, 34, 45, (228,12,0): 50, 34, 45, (228,13,0): 49, 33, 44, (228,14,0): 49, 33, 44, (228,15,0): 49, 33, 44, (228,16,0): 50, 34, 45, (228,17,0): 50, 34, 45, (228,18,0): 50, 34, 45, (228,19,0): 50, 34, 45, (228,20,0): 50, 34, 45, (228,21,0): 50, 34, 45, (228,22,0): 50, 34, 45, (228,23,0): 50, 34, 45, (228,24,0): 51, 35, 46, (228,25,0): 52, 36, 47, (228,26,0): 52, 36, 47, (228,27,0): 53, 37, 48, (228,28,0): 53, 37, 48, (228,29,0): 54, 38, 49, (228,30,0): 54, 38, 49, (228,31,0): 54, 38, 49, (228,32,0): 54, 38, 49, (228,33,0): 54, 38, 49, (228,34,0): 54, 38, 49, (228,35,0): 54, 38, 49, (228,36,0): 54, 38, 49, (228,37,0): 54, 38, 49, (228,38,0): 54, 38, 49, (228,39,0): 54, 38, 49, (228,40,0): 56, 40, 51, (228,41,0): 56, 40, 51, (228,42,0): 56, 40, 51, (228,43,0): 56, 40, 51, (228,44,0): 56, 40, 51, (228,45,0): 56, 40, 51, (228,46,0): 56, 40, 51, (228,47,0): 56, 40, 51, (228,48,0): 54, 41, 50, (228,49,0): 54, 41, 48, (228,50,0): 56, 41, 48, (228,51,0): 57, 42, 49, (228,52,0): 58, 41, 49, (228,53,0): 59, 42, 50, (228,54,0): 61, 42, 48, (228,55,0): 62, 41, 48, (228,56,0): 66, 43, 49, (228,57,0): 66, 43, 49, (228,58,0): 68, 43, 49, (228,59,0): 69, 44, 48, (228,60,0): 70, 43, 48, (228,61,0): 73, 44, 49, (228,62,0): 73, 44, 49, (228,63,0): 73, 44, 49, (228,64,0): 77, 44, 51, (228,65,0): 77, 44, 51, (228,66,0): 77, 44, 51, (228,67,0): 77, 44, 51, (228,68,0): 77, 45, 50, (228,69,0): 77, 45, 50, (228,70,0): 77, 45, 50, (228,71,0): 77, 45, 50, (228,72,0): 77, 45, 48, (228,73,0): 76, 44, 47, (228,74,0): 76, 44, 45, (228,75,0): 76, 44, 45, (228,76,0): 75, 43, 44, (228,77,0): 74, 42, 43, (228,78,0): 74, 43, 41, (228,79,0): 74, 42, 43, (228,80,0): 71, 40, 45, (228,81,0): 71, 40, 45, (228,82,0): 72, 41, 46, (228,83,0): 72, 41, 46, (228,84,0): 72, 41, 46, (228,85,0): 72, 41, 46, (228,86,0): 72, 41, 46, (228,87,0): 72, 41, 46, (228,88,0): 72, 41, 46, (228,89,0): 72, 41, 46, (228,90,0): 72, 41, 46, (228,91,0): 72, 41, 46, (228,92,0): 72, 41, 46, (228,93,0): 72, 41, 46, (228,94,0): 72, 41, 46, (228,95,0): 72, 42, 44, (228,96,0): 76, 44, 45, (228,97,0): 78, 44, 43, (228,98,0): 77, 43, 42, (228,99,0): 76, 42, 41, (228,100,0): 74, 40, 39, (228,101,0): 73, 39, 38, (228,102,0): 73, 39, 38, (228,103,0): 72, 38, 37, (228,104,0): 71, 37, 36, (228,105,0): 71, 37, 36, (228,106,0): 71, 37, 36, (228,107,0): 71, 37, 36, (228,108,0): 71, 37, 38, (228,109,0): 71, 37, 36, (228,110,0): 71, 37, 38, (228,111,0): 71, 37, 35, (228,112,0): 70, 37, 32, (228,113,0): 70, 37, 30, (228,114,0): 70, 37, 30, (228,115,0): 69, 36, 29, (228,116,0): 69, 36, 29, (228,117,0): 69, 36, 29, (228,118,0): 69, 36, 31, (228,119,0): 69, 36, 31, (228,120,0): 70, 36, 34, (228,121,0): 71, 37, 35, (228,122,0): 73, 38, 36, (228,123,0): 72, 38, 37, (228,124,0): 72, 36, 36, (228,125,0): 70, 36, 35, (228,126,0): 70, 34, 34, (228,127,0): 66, 35, 33, (228,128,0): 59, 34, 30, (228,129,0): 58, 35, 29, (228,130,0): 58, 35, 29, (228,131,0): 58, 35, 29, (228,132,0): 59, 36, 30, (228,133,0): 59, 36, 30, (228,134,0): 59, 36, 30, (228,135,0): 59, 36, 30, (228,136,0): 59, 36, 30, (228,137,0): 59, 36, 30, (228,138,0): 59, 36, 30, (228,139,0): 60, 37, 31, (228,140,0): 60, 37, 31, (228,141,0): 61, 38, 32, (228,142,0): 61, 38, 32, (228,143,0): 61, 38, 32, (228,144,0): 63, 38, 33, (228,145,0): 65, 37, 33, (228,146,0): 66, 38, 34, (228,147,0): 66, 38, 34, (228,148,0): 67, 39, 35, (228,149,0): 67, 39, 35, (228,150,0): 67, 39, 35, (228,151,0): 68, 40, 36, (228,152,0): 66, 38, 34, (228,153,0): 66, 38, 34, (228,154,0): 65, 37, 33, (228,155,0): 65, 37, 33, (228,156,0): 64, 36, 32, (228,157,0): 64, 36, 32, (228,158,0): 63, 35, 31, (228,159,0): 63, 35, 31, (228,160,0): 66, 37, 31, (228,161,0): 65, 36, 28, (228,162,0): 63, 34, 26, (228,163,0): 62, 33, 25, (228,164,0): 62, 33, 25, (228,165,0): 63, 34, 26, (228,166,0): 65, 36, 28, (228,167,0): 66, 37, 29, (228,168,0): 66, 37, 29, (228,169,0): 66, 37, 29, (228,170,0): 66, 37, 29, (228,171,0): 66, 37, 29, (228,172,0): 66, 37, 29, (228,173,0): 66, 37, 29, (228,174,0): 66, 37, 29, (228,175,0): 66, 37, 29, (228,176,0): 68, 40, 29, (228,177,0): 68, 40, 29, (228,178,0): 67, 39, 28, (228,179,0): 66, 38, 27, (228,180,0): 65, 37, 26, (228,181,0): 64, 36, 25, (228,182,0): 63, 35, 24, (228,183,0): 63, 35, 24, (228,184,0): 62, 34, 23, (228,185,0): 62, 34, 23, (228,186,0): 60, 32, 21, (228,187,0): 59, 31, 20, (228,188,0): 57, 29, 18, (228,189,0): 55, 27, 16, (228,190,0): 54, 26, 15, (228,191,0): 52, 25, 14, (228,192,0): 57, 30, 23, (228,193,0): 55, 30, 23, (228,194,0): 55, 30, 23, (228,195,0): 55, 30, 23, (228,196,0): 55, 30, 23, (228,197,0): 55, 30, 23, (228,198,0): 55, 30, 23, (228,199,0): 55, 30, 23, (228,200,0): 54, 29, 22, (228,201,0): 55, 30, 23, (228,202,0): 55, 30, 23, (228,203,0): 55, 30, 23, (228,204,0): 56, 31, 24, (228,205,0): 57, 32, 25, (228,206,0): 57, 32, 25, (228,207,0): 57, 32, 25, (228,208,0): 56, 31, 24, (228,209,0): 57, 32, 25, (228,210,0): 59, 32, 25, (228,211,0): 60, 33, 24, (228,212,0): 62, 35, 24, (228,213,0): 63, 37, 24, (228,214,0): 64, 36, 24, (228,215,0): 65, 38, 21, (228,216,0): 69, 40, 22, (228,217,0): 69, 41, 20, (228,218,0): 71, 43, 19, (228,219,0): 76, 49, 22, (228,220,0): 85, 55, 29, (228,221,0): 90, 60, 32, (228,222,0): 91, 62, 32, (228,223,0): 90, 61, 29, (228,224,0): 94, 64, 28, (228,225,0): 91, 61, 23, (228,226,0): 88, 58, 20, (228,227,0): 86, 56, 18, (228,228,0): 88, 58, 20, (228,229,0): 93, 63, 25, (228,230,0): 97, 67, 31, (228,231,0): 100, 70, 34, (228,232,0): 107, 77, 41, (228,233,0): 105, 75, 39, (228,234,0): 102, 72, 36, (228,235,0): 100, 70, 34, (228,236,0): 98, 68, 32, (228,237,0): 98, 68, 32, (228,238,0): 99, 69, 33, (228,239,0): 100, 70, 36, (228,240,0): 106, 72, 44, (228,241,0): 104, 73, 44, (228,242,0): 102, 73, 41, (228,243,0): 100, 76, 40, (228,244,0): 101, 79, 40, (228,245,0): 103, 84, 41, (228,246,0): 109, 88, 43, (228,247,0): 112, 92, 42, (228,248,0): 121, 98, 48, (228,249,0): 123, 100, 48, (228,250,0): 127, 102, 48, (228,251,0): 123, 100, 46, (228,252,0): 119, 98, 45, (228,253,0): 115, 98, 44, (228,254,0): 113, 100, 45, (228,255,0): 114, 101, 48, (228,256,0): 122, 106, 55, (228,257,0): 123, 105, 55, (228,258,0): 125, 107, 57, (228,259,0): 126, 109, 57, (228,260,0): 127, 111, 59, (228,261,0): 128, 113, 58, (228,262,0): 130, 115, 58, (228,263,0): 130, 116, 55, (228,264,0): 128, 117, 53, (228,265,0): 133, 122, 56, (228,266,0): 140, 131, 62, (228,267,0): 146, 138, 66, (228,268,0): 151, 143, 70, (228,269,0): 157, 149, 74, (228,270,0): 163, 157, 81, (228,271,0): 169, 162, 82, (228,272,0): 178, 168, 83, (228,273,0): 181, 166, 81, (228,274,0): 179, 160, 81, (228,275,0): 172, 150, 75, (228,276,0): 162, 138, 68, (228,277,0): 156, 128, 63, (228,278,0): 151, 125, 64, (228,279,0): 150, 126, 66, (228,280,0): 138, 117, 60, (228,281,0): 135, 116, 58, (228,282,0): 130, 114, 54, (228,283,0): 129, 113, 51, (228,284,0): 134, 114, 51, (228,285,0): 140, 119, 54, (228,286,0): 148, 125, 58, (228,287,0): 153, 128, 62, (228,288,0): 149, 125, 63, (228,289,0): 148, 124, 64, (228,290,0): 145, 123, 65, (228,291,0): 143, 121, 63, (228,292,0): 141, 118, 64, (228,293,0): 140, 117, 65, (228,294,0): 137, 115, 65, (228,295,0): 137, 115, 68, (228,296,0): 131, 110, 65, (228,297,0): 128, 106, 65, (228,298,0): 123, 101, 64, (228,299,0): 120, 97, 63, (228,300,0): 117, 97, 64, (228,301,0): 114, 93, 62, (228,302,0): 109, 88, 57, (228,303,0): 106, 85, 56, (228,304,0): 108, 88, 63, (228,305,0): 108, 88, 64, (228,306,0): 106, 88, 64, (228,307,0): 106, 88, 64, (228,308,0): 105, 87, 63, (228,309,0): 103, 85, 61, (228,310,0): 101, 85, 62, (228,311,0): 99, 83, 60, (228,312,0): 98, 83, 62, (228,313,0): 97, 82, 61, (228,314,0): 97, 82, 63, (228,315,0): 97, 82, 63, (228,316,0): 95, 82, 63, (228,317,0): 95, 82, 63, (228,318,0): 94, 81, 62, (228,319,0): 94, 81, 62, (228,320,0): 92, 81, 61, (228,321,0): 93, 82, 62, (228,322,0): 95, 84, 64, (228,323,0): 96, 83, 64, (228,324,0): 97, 84, 67, (228,325,0): 98, 82, 66, (228,326,0): 98, 80, 66, (228,327,0): 98, 79, 65, (228,328,0): 100, 78, 64, (228,329,0): 99, 78, 61, (228,330,0): 100, 77, 59, (228,331,0): 103, 78, 58, (228,332,0): 107, 80, 59, (228,333,0): 110, 84, 61, (228,334,0): 113, 85, 63, (228,335,0): 113, 87, 62, (228,336,0): 116, 90, 63, (228,337,0): 115, 89, 62, (228,338,0): 111, 87, 59, (228,339,0): 106, 82, 56, (228,340,0): 98, 77, 50, (228,341,0): 93, 71, 47, (228,342,0): 87, 67, 42, (228,343,0): 83, 65, 41, (228,344,0): 79, 61, 39, (228,345,0): 78, 61, 41, (228,346,0): 76, 61, 40, (228,347,0): 76, 61, 42, (228,348,0): 76, 63, 44, (228,349,0): 81, 68, 49, (228,350,0): 85, 74, 56, (228,351,0): 86, 80, 56, (228,352,0): 90, 93, 62, (228,353,0): 94, 102, 65, (228,354,0): 103, 111, 74, (228,355,0): 110, 118, 81, (228,356,0): 114, 124, 87, (228,357,0): 120, 131, 91, (228,358,0): 125, 137, 97, (228,359,0): 127, 142, 99, (228,360,0): 125, 140, 97, (228,361,0): 125, 142, 98, (228,362,0): 126, 143, 99, (228,363,0): 126, 145, 99, (228,364,0): 126, 145, 99, (228,365,0): 123, 145, 98, (228,366,0): 122, 144, 97, (228,367,0): 120, 144, 96, (228,368,0): 122, 148, 101, (228,369,0): 126, 153, 108, (228,370,0): 133, 160, 115, (228,371,0): 137, 166, 120, (228,372,0): 141, 170, 126, (228,373,0): 143, 174, 130, (228,374,0): 147, 180, 137, (228,375,0): 149, 185, 141, (228,376,0): 151, 187, 143, (228,377,0): 154, 191, 147, (228,378,0): 156, 195, 151, (228,379,0): 156, 197, 153, (228,380,0): 156, 197, 155, (228,381,0): 159, 200, 158, (228,382,0): 164, 205, 163, (228,383,0): 167, 210, 167, (228,384,0): 165, 212, 168, (228,385,0): 168, 217, 172, (228,386,0): 169, 221, 175, (228,387,0): 170, 223, 177, (228,388,0): 169, 225, 178, (228,389,0): 173, 230, 185, (228,390,0): 179, 237, 196, (228,391,0): 183, 244, 203, (228,392,0): 189, 249, 213, (228,393,0): 191, 250, 218, (228,394,0): 195, 254, 226, (228,395,0): 198, 255, 234, (228,396,0): 201, 255, 239, (228,397,0): 201, 255, 241, (228,398,0): 200, 251, 242, (228,399,0): 199, 250, 245, (228,400,0): 203, 253, 252, (228,401,0): 202, 253, 254, (228,402,0): 203, 253, 254, (228,403,0): 203, 254, 255, (228,404,0): 204, 254, 255, (228,405,0): 203, 254, 255, (228,406,0): 204, 254, 255, (228,407,0): 203, 254, 255, (228,408,0): 205, 255, 255, (228,409,0): 204, 255, 255, (228,410,0): 205, 255, 255, (228,411,0): 204, 255, 255, (228,412,0): 205, 255, 255, (228,413,0): 204, 255, 255, (228,414,0): 205, 255, 255, (228,415,0): 204, 255, 255, (228,416,0): 204, 255, 255, (228,417,0): 201, 255, 255, (228,418,0): 201, 255, 255, (228,419,0): 203, 255, 255, (228,420,0): 194, 248, 255, (228,421,0): 177, 231, 243, (228,422,0): 165, 218, 232, (228,423,0): 161, 214, 228, (228,424,0): 166, 219, 235, (228,425,0): 169, 222, 238, (228,426,0): 175, 228, 242, (228,427,0): 180, 233, 247, (228,428,0): 185, 238, 252, (228,429,0): 187, 241, 253, (228,430,0): 187, 241, 253, (228,431,0): 186, 240, 252, (228,432,0): 184, 236, 250, (228,433,0): 178, 227, 244, (228,434,0): 168, 215, 231, (228,435,0): 158, 204, 219, (228,436,0): 151, 195, 208, (228,437,0): 147, 187, 199, (228,438,0): 140, 178, 189, (228,439,0): 138, 172, 181, (228,440,0): 133, 164, 169, (228,441,0): 125, 153, 157, (228,442,0): 122, 146, 148, (228,443,0): 127, 147, 148, (228,444,0): 129, 147, 147, (228,445,0): 126, 142, 141, (228,446,0): 121, 135, 135, (228,447,0): 119, 135, 134, (228,448,0): 118, 138, 139, (228,449,0): 119, 143, 145, (228,450,0): 125, 149, 153, (228,451,0): 130, 157, 164, (228,452,0): 136, 163, 172, (228,453,0): 138, 168, 179, (228,454,0): 138, 170, 183, (228,455,0): 137, 170, 187, (228,456,0): 140, 173, 192, (228,457,0): 136, 168, 189, (228,458,0): 131, 163, 186, (228,459,0): 129, 159, 183, (228,460,0): 126, 156, 180, (228,461,0): 124, 152, 174, (228,462,0): 119, 147, 171, (228,463,0): 116, 142, 165, (228,464,0): 117, 139, 162, (228,465,0): 116, 137, 158, (228,466,0): 113, 134, 155, (228,467,0): 112, 130, 152, (228,468,0): 109, 127, 149, (228,469,0): 107, 125, 145, (228,470,0): 104, 122, 142, (228,471,0): 103, 120, 138, (228,472,0): 99, 116, 134, (228,473,0): 99, 114, 133, (228,474,0): 98, 113, 132, (228,475,0): 96, 112, 128, (228,476,0): 96, 112, 128, (228,477,0): 97, 110, 126, (228,478,0): 97, 110, 126, (228,479,0): 98, 111, 127, (228,480,0): 94, 107, 124, (228,481,0): 93, 109, 125, (228,482,0): 92, 107, 126, (228,483,0): 88, 105, 123, (228,484,0): 87, 104, 124, (228,485,0): 88, 106, 126, (228,486,0): 94, 112, 134, (228,487,0): 96, 116, 140, (228,488,0): 100, 122, 146, (228,489,0): 100, 124, 148, (228,490,0): 104, 128, 154, (228,491,0): 108, 134, 159, (228,492,0): 114, 140, 167, (228,493,0): 119, 146, 173, (228,494,0): 123, 150, 179, (228,495,0): 123, 153, 181, (228,496,0): 126, 157, 185, (228,497,0): 130, 161, 189, (228,498,0): 135, 166, 194, (228,499,0): 140, 171, 199, (228,500,0): 144, 173, 203, (228,501,0): 146, 175, 205, (228,502,0): 145, 174, 204, (228,503,0): 144, 174, 202, (228,504,0): 149, 176, 203, (228,505,0): 149, 177, 201, (228,506,0): 148, 174, 197, (228,507,0): 145, 172, 193, (228,508,0): 139, 166, 183, (228,509,0): 132, 160, 174, (228,510,0): 126, 152, 165, (228,511,0): 122, 149, 160, (228,512,0): 125, 149, 161, (228,513,0): 124, 148, 160, (228,514,0): 126, 148, 161, (228,515,0): 128, 147, 161, (228,516,0): 127, 145, 157, (228,517,0): 122, 138, 151, (228,518,0): 114, 128, 141, (228,519,0): 108, 120, 134, (228,520,0): 107, 119, 131, (228,521,0): 107, 119, 131, (228,522,0): 107, 120, 129, (228,523,0): 107, 121, 130, (228,524,0): 109, 123, 132, (228,525,0): 110, 127, 135, (228,526,0): 112, 129, 136, (228,527,0): 114, 131, 139, (228,528,0): 120, 137, 147, (228,529,0): 119, 137, 147, (228,530,0): 121, 139, 151, (228,531,0): 122, 140, 152, (228,532,0): 124, 142, 154, (228,533,0): 126, 144, 156, (228,534,0): 126, 145, 159, (228,535,0): 127, 146, 160, (228,536,0): 123, 145, 159, (228,537,0): 129, 151, 165, (228,538,0): 134, 156, 170, (228,539,0): 136, 158, 172, (228,540,0): 133, 156, 172, (228,541,0): 129, 152, 168, (228,542,0): 126, 149, 165, (228,543,0): 125, 148, 166, (228,544,0): 120, 145, 167, (228,545,0): 118, 144, 167, (228,546,0): 118, 144, 167, (228,547,0): 121, 147, 170, (228,548,0): 125, 151, 174, (228,549,0): 127, 153, 176, (228,550,0): 125, 151, 174, (228,551,0): 123, 149, 172, (228,552,0): 122, 148, 171, (228,553,0): 121, 147, 170, (228,554,0): 119, 145, 168, (228,555,0): 115, 141, 164, (228,556,0): 111, 137, 160, (228,557,0): 105, 131, 154, (228,558,0): 101, 127, 150, (228,559,0): 99, 125, 148, (228,560,0): 103, 128, 150, (228,561,0): 105, 130, 152, (228,562,0): 109, 131, 154, (228,563,0): 111, 133, 156, (228,564,0): 112, 133, 154, (228,565,0): 112, 130, 150, (228,566,0): 111, 128, 148, (228,567,0): 110, 125, 144, (228,568,0): 113, 124, 142, (228,569,0): 114, 123, 140, (228,570,0): 112, 119, 135, (228,571,0): 110, 116, 132, (228,572,0): 109, 112, 127, (228,573,0): 106, 109, 124, (228,574,0): 105, 107, 122, (228,575,0): 103, 105, 120, (228,576,0): 101, 104, 119, (228,577,0): 100, 103, 118, (228,578,0): 98, 101, 116, (228,579,0): 96, 100, 112, (228,580,0): 95, 97, 110, (228,581,0): 93, 95, 107, (228,582,0): 91, 93, 105, (228,583,0): 92, 92, 104, (228,584,0): 90, 90, 102, (228,585,0): 90, 90, 100, (228,586,0): 91, 89, 100, (228,587,0): 90, 89, 97, (228,588,0): 89, 88, 96, (228,589,0): 89, 86, 95, (228,590,0): 88, 85, 94, (228,591,0): 88, 85, 94, (228,592,0): 86, 80, 90, (228,593,0): 86, 80, 90, (228,594,0): 87, 80, 88, (228,595,0): 88, 78, 86, (228,596,0): 87, 76, 84, (228,597,0): 85, 74, 80, (228,598,0): 84, 72, 76, (228,599,0): 82, 70, 74, (229,0,0): 45, 29, 40, (229,1,0): 46, 30, 41, (229,2,0): 47, 31, 42, (229,3,0): 48, 32, 43, (229,4,0): 49, 33, 44, (229,5,0): 49, 33, 44, (229,6,0): 48, 32, 43, (229,7,0): 48, 32, 43, (229,8,0): 50, 34, 45, (229,9,0): 50, 34, 45, (229,10,0): 50, 34, 45, (229,11,0): 50, 34, 45, (229,12,0): 50, 34, 45, (229,13,0): 51, 35, 46, (229,14,0): 51, 35, 46, (229,15,0): 51, 35, 46, (229,16,0): 50, 34, 45, (229,17,0): 50, 34, 45, (229,18,0): 50, 34, 45, (229,19,0): 50, 34, 45, (229,20,0): 50, 34, 45, (229,21,0): 50, 34, 45, (229,22,0): 50, 34, 45, (229,23,0): 50, 34, 45, (229,24,0): 52, 36, 47, (229,25,0): 52, 36, 47, (229,26,0): 52, 36, 47, (229,27,0): 53, 37, 48, (229,28,0): 54, 38, 49, (229,29,0): 54, 38, 49, (229,30,0): 54, 38, 49, (229,31,0): 55, 39, 50, (229,32,0): 54, 38, 49, (229,33,0): 54, 38, 49, (229,34,0): 54, 38, 49, (229,35,0): 54, 38, 49, (229,36,0): 54, 38, 49, (229,37,0): 54, 38, 49, (229,38,0): 54, 38, 49, (229,39,0): 54, 38, 49, (229,40,0): 56, 40, 51, (229,41,0): 56, 40, 51, (229,42,0): 56, 40, 51, (229,43,0): 56, 40, 51, (229,44,0): 56, 40, 51, (229,45,0): 56, 40, 51, (229,46,0): 56, 40, 51, (229,47,0): 56, 40, 50, (229,48,0): 56, 41, 48, (229,49,0): 54, 41, 48, (229,50,0): 56, 41, 48, (229,51,0): 57, 42, 49, (229,52,0): 58, 41, 49, (229,53,0): 61, 42, 48, (229,54,0): 62, 41, 48, (229,55,0): 62, 41, 46, (229,56,0): 67, 44, 50, (229,57,0): 67, 44, 50, (229,58,0): 69, 44, 48, (229,59,0): 71, 44, 49, (229,60,0): 73, 44, 49, (229,61,0): 74, 45, 50, (229,62,0): 74, 45, 50, (229,63,0): 75, 44, 50, (229,64,0): 77, 44, 51, (229,65,0): 77, 44, 51, (229,66,0): 77, 44, 51, (229,67,0): 77, 44, 51, (229,68,0): 77, 45, 50, (229,69,0): 77, 45, 50, (229,70,0): 77, 45, 50, (229,71,0): 77, 45, 48, (229,72,0): 77, 45, 48, (229,73,0): 77, 45, 46, (229,74,0): 77, 45, 46, (229,75,0): 76, 44, 45, (229,76,0): 76, 44, 45, (229,77,0): 75, 43, 44, (229,78,0): 75, 44, 42, (229,79,0): 74, 42, 43, (229,80,0): 72, 42, 44, (229,81,0): 73, 42, 47, (229,82,0): 73, 42, 47, (229,83,0): 73, 42, 47, (229,84,0): 74, 43, 48, (229,85,0): 74, 43, 48, (229,86,0): 75, 44, 49, (229,87,0): 75, 44, 49, (229,88,0): 73, 42, 47, (229,89,0): 73, 42, 47, (229,90,0): 73, 42, 47, (229,91,0): 73, 42, 47, (229,92,0): 73, 42, 47, (229,93,0): 73, 42, 47, (229,94,0): 73, 42, 47, (229,95,0): 74, 42, 45, (229,96,0): 78, 44, 45, (229,97,0): 78, 44, 43, (229,98,0): 79, 43, 43, (229,99,0): 77, 43, 42, (229,100,0): 78, 42, 42, (229,101,0): 77, 43, 42, (229,102,0): 77, 41, 41, (229,103,0): 76, 42, 41, (229,104,0): 75, 39, 39, (229,105,0): 74, 40, 38, (229,106,0): 75, 39, 39, (229,107,0): 74, 40, 38, (229,108,0): 75, 39, 39, (229,109,0): 74, 40, 38, (229,110,0): 75, 40, 38, (229,111,0): 75, 40, 36, (229,112,0): 74, 39, 33, (229,113,0): 76, 39, 31, (229,114,0): 76, 39, 31, (229,115,0): 75, 38, 32, (229,116,0): 75, 38, 32, (229,117,0): 72, 37, 31, (229,118,0): 74, 36, 33, (229,119,0): 72, 37, 33, (229,120,0): 73, 38, 34, (229,121,0): 73, 38, 36, (229,122,0): 74, 39, 37, (229,123,0): 74, 39, 37, (229,124,0): 74, 38, 38, (229,125,0): 73, 37, 37, (229,126,0): 71, 35, 35, (229,127,0): 69, 35, 33, (229,128,0): 61, 33, 29, (229,129,0): 59, 36, 30, (229,130,0): 59, 36, 30, (229,131,0): 59, 36, 30, (229,132,0): 60, 37, 31, (229,133,0): 60, 37, 31, (229,134,0): 61, 38, 32, (229,135,0): 61, 38, 32, (229,136,0): 60, 37, 31, (229,137,0): 60, 37, 31, (229,138,0): 60, 37, 31, (229,139,0): 61, 38, 32, (229,140,0): 61, 38, 32, (229,141,0): 62, 39, 33, (229,142,0): 62, 39, 33, (229,143,0): 63, 38, 33, (229,144,0): 66, 38, 34, (229,145,0): 67, 39, 35, (229,146,0): 67, 39, 35, (229,147,0): 68, 40, 36, (229,148,0): 68, 40, 36, (229,149,0): 69, 41, 37, (229,150,0): 69, 41, 37, (229,151,0): 69, 41, 37, (229,152,0): 67, 39, 35, (229,153,0): 67, 39, 35, (229,154,0): 66, 38, 34, (229,155,0): 66, 38, 34, (229,156,0): 65, 37, 33, (229,157,0): 65, 37, 33, (229,158,0): 64, 36, 32, (229,159,0): 64, 37, 30, (229,160,0): 66, 37, 29, (229,161,0): 65, 36, 28, (229,162,0): 65, 36, 28, (229,163,0): 64, 35, 27, (229,164,0): 64, 35, 27, (229,165,0): 65, 36, 28, (229,166,0): 65, 36, 28, (229,167,0): 66, 37, 29, (229,168,0): 67, 38, 30, (229,169,0): 67, 38, 30, (229,170,0): 67, 38, 30, (229,171,0): 67, 38, 30, (229,172,0): 67, 38, 30, (229,173,0): 67, 38, 30, (229,174,0): 67, 38, 30, (229,175,0): 67, 38, 30, (229,176,0): 69, 41, 30, (229,177,0): 69, 41, 30, (229,178,0): 68, 40, 29, (229,179,0): 67, 39, 28, (229,180,0): 66, 38, 27, (229,181,0): 65, 37, 26, (229,182,0): 64, 36, 25, (229,183,0): 64, 36, 25, (229,184,0): 62, 34, 23, (229,185,0): 62, 34, 23, (229,186,0): 61, 33, 22, (229,187,0): 59, 31, 20, (229,188,0): 58, 30, 19, (229,189,0): 56, 28, 17, (229,190,0): 55, 27, 16, (229,191,0): 54, 27, 16, (229,192,0): 57, 30, 23, (229,193,0): 55, 30, 23, (229,194,0): 55, 30, 23, (229,195,0): 55, 30, 23, (229,196,0): 55, 30, 23, (229,197,0): 55, 30, 23, (229,198,0): 55, 30, 23, (229,199,0): 55, 30, 23, (229,200,0): 54, 29, 22, (229,201,0): 54, 29, 22, (229,202,0): 54, 29, 22, (229,203,0): 55, 30, 23, (229,204,0): 55, 30, 23, (229,205,0): 56, 31, 24, (229,206,0): 56, 31, 24, (229,207,0): 57, 32, 25, (229,208,0): 55, 30, 25, (229,209,0): 56, 31, 26, (229,210,0): 59, 31, 27, (229,211,0): 60, 33, 26, (229,212,0): 62, 35, 26, (229,213,0): 63, 36, 25, (229,214,0): 65, 37, 25, (229,215,0): 66, 39, 22, (229,216,0): 69, 40, 22, (229,217,0): 70, 42, 20, (229,218,0): 73, 45, 21, (229,219,0): 79, 52, 23, (229,220,0): 88, 58, 30, (229,221,0): 93, 64, 34, (229,222,0): 94, 65, 33, (229,223,0): 93, 64, 30, (229,224,0): 97, 67, 29, (229,225,0): 94, 65, 25, (229,226,0): 91, 62, 22, (229,227,0): 91, 62, 22, (229,228,0): 95, 66, 26, (229,229,0): 99, 70, 30, (229,230,0): 102, 72, 34, (229,231,0): 103, 73, 35, (229,232,0): 109, 79, 41, (229,233,0): 106, 76, 40, (229,234,0): 102, 72, 36, (229,235,0): 99, 69, 35, (229,236,0): 97, 67, 33, (229,237,0): 98, 68, 34, (229,238,0): 100, 70, 36, (229,239,0): 102, 72, 38, (229,240,0): 111, 78, 47, (229,241,0): 108, 77, 46, (229,242,0): 107, 78, 44, (229,243,0): 105, 82, 41, (229,244,0): 107, 86, 43, (229,245,0): 109, 91, 43, (229,246,0): 115, 95, 45, (229,247,0): 118, 97, 44, (229,248,0): 128, 105, 51, (229,249,0): 131, 109, 52, (229,250,0): 135, 110, 53, (229,251,0): 134, 109, 52, (229,252,0): 128, 108, 49, (229,253,0): 125, 106, 48, (229,254,0): 122, 107, 48, (229,255,0): 123, 108, 51, (229,256,0): 130, 113, 59, (229,257,0): 130, 113, 61, (229,258,0): 131, 114, 60, (229,259,0): 131, 114, 60, (229,260,0): 131, 116, 61, (229,261,0): 132, 117, 60, (229,262,0): 132, 117, 58, (229,263,0): 132, 118, 57, (229,264,0): 130, 119, 53, (229,265,0): 135, 125, 56, (229,266,0): 142, 134, 62, (229,267,0): 149, 141, 69, (229,268,0): 154, 146, 73, (229,269,0): 161, 153, 80, (229,270,0): 166, 160, 84, (229,271,0): 172, 165, 85, (229,272,0): 176, 168, 83, (229,273,0): 181, 169, 83, (229,274,0): 182, 165, 83, (229,275,0): 174, 155, 78, (229,276,0): 165, 141, 69, (229,277,0): 157, 130, 63, (229,278,0): 151, 126, 62, (229,279,0): 150, 126, 64, (229,280,0): 139, 119, 58, (229,281,0): 136, 118, 56, (229,282,0): 134, 116, 54, (229,283,0): 134, 116, 52, (229,284,0): 138, 119, 53, (229,285,0): 144, 123, 58, (229,286,0): 152, 129, 62, (229,287,0): 156, 131, 65, (229,288,0): 151, 127, 65, (229,289,0): 151, 127, 67, (229,290,0): 147, 125, 67, (229,291,0): 145, 123, 65, (229,292,0): 143, 120, 66, (229,293,0): 141, 118, 66, (229,294,0): 138, 116, 66, (229,295,0): 138, 116, 67, (229,296,0): 136, 115, 70, (229,297,0): 132, 111, 68, (229,298,0): 127, 105, 66, (229,299,0): 124, 102, 65, (229,300,0): 120, 100, 65, (229,301,0): 117, 97, 64, (229,302,0): 112, 92, 59, (229,303,0): 108, 87, 56, (229,304,0): 110, 90, 65, (229,305,0): 110, 90, 65, (229,306,0): 108, 90, 66, (229,307,0): 107, 89, 65, (229,308,0): 105, 87, 63, (229,309,0): 103, 85, 61, (229,310,0): 99, 83, 60, (229,311,0): 98, 82, 59, (229,312,0): 95, 80, 59, (229,313,0): 95, 80, 59, (229,314,0): 96, 81, 62, (229,315,0): 96, 81, 62, (229,316,0): 94, 81, 62, (229,317,0): 94, 81, 62, (229,318,0): 94, 81, 62, (229,319,0): 94, 83, 63, (229,320,0): 89, 81, 60, (229,321,0): 90, 82, 61, (229,322,0): 92, 84, 63, (229,323,0): 95, 84, 64, (229,324,0): 95, 84, 66, (229,325,0): 96, 83, 66, (229,326,0): 97, 81, 66, (229,327,0): 99, 80, 66, (229,328,0): 102, 80, 66, (229,329,0): 101, 78, 64, (229,330,0): 101, 75, 60, (229,331,0): 102, 75, 58, (229,332,0): 103, 74, 56, (229,333,0): 102, 74, 53, (229,334,0): 99, 71, 50, (229,335,0): 96, 68, 47, (229,336,0): 97, 68, 50, (229,337,0): 96, 67, 51, (229,338,0): 93, 66, 49, (229,339,0): 88, 61, 44, (229,340,0): 81, 55, 38, (229,341,0): 76, 50, 35, (229,342,0): 73, 50, 34, (229,343,0): 72, 51, 34, (229,344,0): 71, 49, 35, (229,345,0): 71, 52, 37, (229,346,0): 71, 54, 38, (229,347,0): 72, 55, 39, (229,348,0): 73, 57, 42, (229,349,0): 77, 61, 46, (229,350,0): 82, 69, 53, (229,351,0): 83, 75, 56, (229,352,0): 88, 91, 62, (229,353,0): 93, 100, 66, (229,354,0): 103, 110, 76, (229,355,0): 109, 119, 82, (229,356,0): 116, 126, 89, (229,357,0): 121, 133, 95, (229,358,0): 127, 139, 101, (229,359,0): 129, 144, 103, (229,360,0): 126, 141, 100, (229,361,0): 126, 143, 99, (229,362,0): 127, 144, 100, (229,363,0): 127, 144, 100, (229,364,0): 126, 145, 100, (229,365,0): 125, 144, 98, (229,366,0): 124, 143, 97, (229,367,0): 121, 143, 97, (229,368,0): 125, 150, 108, (229,369,0): 128, 155, 112, (229,370,0): 133, 160, 117, (229,371,0): 136, 163, 120, (229,372,0): 138, 165, 124, (229,373,0): 141, 169, 128, (229,374,0): 144, 175, 134, (229,375,0): 146, 178, 137, (229,376,0): 150, 182, 141, (229,377,0): 151, 186, 144, (229,378,0): 154, 191, 150, (229,379,0): 153, 191, 150, (229,380,0): 152, 190, 151, (229,381,0): 153, 194, 154, (229,382,0): 160, 201, 161, (229,383,0): 167, 208, 168, (229,384,0): 163, 208, 167, (229,385,0): 163, 210, 166, (229,386,0): 163, 212, 167, (229,387,0): 163, 214, 171, (229,388,0): 166, 219, 175, (229,389,0): 169, 226, 183, (229,390,0): 175, 233, 193, (229,391,0): 178, 238, 202, (229,392,0): 185, 246, 213, (229,393,0): 186, 249, 220, (229,394,0): 190, 252, 227, (229,395,0): 194, 255, 235, (229,396,0): 198, 255, 241, (229,397,0): 197, 255, 241, (229,398,0): 197, 253, 244, (229,399,0): 195, 250, 244, (229,400,0): 199, 254, 251, (229,401,0): 199, 253, 253, (229,402,0): 202, 253, 254, (229,403,0): 200, 254, 254, (229,404,0): 202, 253, 254, (229,405,0): 201, 255, 255, (229,406,0): 203, 254, 255, (229,407,0): 201, 255, 255, (229,408,0): 204, 255, 255, (229,409,0): 202, 255, 255, (229,410,0): 204, 255, 255, (229,411,0): 202, 255, 255, (229,412,0): 204, 255, 255, (229,413,0): 202, 255, 255, (229,414,0): 204, 255, 255, (229,415,0): 202, 255, 255, (229,416,0): 201, 255, 255, (229,417,0): 198, 253, 255, (229,418,0): 200, 255, 255, (229,419,0): 202, 255, 255, (229,420,0): 195, 249, 255, (229,421,0): 179, 233, 245, (229,422,0): 167, 220, 236, (229,423,0): 163, 216, 232, (229,424,0): 149, 202, 220, (229,425,0): 151, 204, 222, (229,426,0): 154, 207, 223, (229,427,0): 160, 213, 229, (229,428,0): 166, 219, 233, (229,429,0): 168, 221, 235, (229,430,0): 168, 222, 234, (229,431,0): 167, 219, 232, (229,432,0): 171, 220, 237, (229,433,0): 165, 214, 231, (229,434,0): 158, 205, 221, (229,435,0): 152, 198, 213, (229,436,0): 148, 191, 207, (229,437,0): 146, 186, 198, (229,438,0): 141, 179, 190, (229,439,0): 140, 174, 183, (229,440,0): 139, 169, 177, (229,441,0): 131, 158, 165, (229,442,0): 128, 152, 156, (229,443,0): 132, 153, 156, (229,444,0): 133, 153, 154, (229,445,0): 128, 146, 146, (229,446,0): 123, 139, 139, (229,447,0): 121, 137, 137, (229,448,0): 120, 140, 141, (229,449,0): 122, 143, 146, (229,450,0): 126, 149, 155, (229,451,0): 131, 156, 163, (229,452,0): 134, 161, 170, (229,453,0): 136, 164, 176, (229,454,0): 136, 165, 179, (229,455,0): 135, 166, 184, (229,456,0): 136, 167, 187, (229,457,0): 133, 164, 185, (229,458,0): 128, 159, 180, (229,459,0): 127, 155, 177, (229,460,0): 126, 154, 176, (229,461,0): 124, 150, 173, (229,462,0): 121, 145, 169, (229,463,0): 117, 142, 164, (229,464,0): 117, 138, 159, (229,465,0): 116, 134, 154, (229,466,0): 112, 130, 152, (229,467,0): 110, 128, 148, (229,468,0): 109, 126, 146, (229,469,0): 107, 124, 142, (229,470,0): 103, 120, 138, (229,471,0): 102, 117, 136, (229,472,0): 97, 112, 131, (229,473,0): 97, 113, 129, (229,474,0): 98, 111, 128, (229,475,0): 96, 109, 125, (229,476,0): 95, 108, 124, (229,477,0): 94, 107, 123, (229,478,0): 94, 106, 122, (229,479,0): 93, 106, 122, (229,480,0): 90, 103, 120, (229,481,0): 91, 104, 121, (229,482,0): 90, 103, 122, (229,483,0): 87, 102, 121, (229,484,0): 86, 101, 122, (229,485,0): 88, 105, 125, (229,486,0): 95, 111, 134, (229,487,0): 99, 117, 139, (229,488,0): 96, 116, 140, (229,489,0): 98, 120, 144, (229,490,0): 102, 123, 150, (229,491,0): 106, 130, 156, (229,492,0): 113, 137, 165, (229,493,0): 118, 144, 171, (229,494,0): 122, 147, 177, (229,495,0): 124, 151, 180, (229,496,0): 126, 156, 184, (229,497,0): 128, 159, 187, (229,498,0): 132, 163, 191, (229,499,0): 137, 168, 196, (229,500,0): 141, 170, 200, (229,501,0): 143, 172, 202, (229,502,0): 144, 173, 203, (229,503,0): 144, 173, 203, (229,504,0): 150, 177, 206, (229,505,0): 150, 177, 204, (229,506,0): 151, 177, 202, (229,507,0): 148, 174, 197, (229,508,0): 143, 170, 189, (229,509,0): 136, 163, 180, (229,510,0): 129, 157, 171, (229,511,0): 126, 152, 165, (229,512,0): 124, 151, 162, (229,513,0): 125, 149, 161, (229,514,0): 125, 147, 160, (229,515,0): 128, 147, 161, (229,516,0): 127, 145, 157, (229,517,0): 122, 138, 151, (229,518,0): 117, 129, 143, (229,519,0): 110, 122, 136, (229,520,0): 107, 119, 131, (229,521,0): 107, 119, 131, (229,522,0): 108, 121, 130, (229,523,0): 108, 121, 130, (229,524,0): 110, 123, 132, (229,525,0): 111, 125, 134, (229,526,0): 114, 129, 136, (229,527,0): 113, 130, 137, (229,528,0): 119, 136, 146, (229,529,0): 120, 137, 147, (229,530,0): 122, 138, 151, (229,531,0): 123, 141, 153, (229,532,0): 125, 143, 155, (229,533,0): 127, 145, 157, (229,534,0): 127, 146, 160, (229,535,0): 128, 147, 161, (229,536,0): 126, 148, 162, (229,537,0): 131, 153, 167, (229,538,0): 136, 158, 172, (229,539,0): 136, 159, 175, (229,540,0): 133, 156, 172, (229,541,0): 129, 152, 168, (229,542,0): 127, 150, 168, (229,543,0): 124, 150, 167, (229,544,0): 119, 146, 167, (229,545,0): 117, 143, 166, (229,546,0): 116, 142, 165, (229,547,0): 119, 145, 168, (229,548,0): 123, 149, 172, (229,549,0): 125, 151, 174, (229,550,0): 124, 150, 173, (229,551,0): 122, 148, 171, (229,552,0): 121, 147, 170, (229,553,0): 120, 146, 169, (229,554,0): 118, 144, 167, (229,555,0): 115, 141, 164, (229,556,0): 111, 137, 160, (229,557,0): 106, 132, 155, (229,558,0): 102, 128, 151, (229,559,0): 99, 125, 148, (229,560,0): 103, 128, 150, (229,561,0): 105, 130, 152, (229,562,0): 111, 133, 156, (229,563,0): 114, 135, 156, (229,564,0): 116, 134, 156, (229,565,0): 114, 132, 152, (229,566,0): 112, 127, 146, (229,567,0): 110, 125, 144, (229,568,0): 112, 123, 141, (229,569,0): 111, 122, 140, (229,570,0): 111, 120, 137, (229,571,0): 109, 116, 132, (229,572,0): 107, 113, 129, (229,573,0): 105, 108, 123, (229,574,0): 103, 106, 121, (229,575,0): 102, 105, 120, (229,576,0): 100, 106, 120, (229,577,0): 98, 106, 119, (229,578,0): 96, 104, 117, (229,579,0): 95, 101, 115, (229,580,0): 93, 99, 113, (229,581,0): 91, 97, 109, (229,582,0): 91, 95, 107, (229,583,0): 90, 94, 105, (229,584,0): 88, 92, 103, (229,585,0): 90, 92, 104, (229,586,0): 90, 92, 104, (229,587,0): 90, 93, 102, (229,588,0): 92, 92, 102, (229,589,0): 91, 91, 99, (229,590,0): 89, 89, 97, (229,591,0): 89, 88, 96, (229,592,0): 87, 84, 93, (229,593,0): 89, 83, 93, (229,594,0): 90, 82, 93, (229,595,0): 89, 82, 90, (229,596,0): 89, 78, 86, (229,597,0): 87, 76, 82, (229,598,0): 85, 72, 79, (229,599,0): 84, 72, 76, (230,0,0): 45, 29, 40, (230,1,0): 46, 30, 41, (230,2,0): 48, 32, 43, (230,3,0): 49, 33, 44, (230,4,0): 50, 34, 45, (230,5,0): 49, 33, 44, (230,6,0): 48, 32, 43, (230,7,0): 47, 31, 42, (230,8,0): 48, 32, 43, (230,9,0): 49, 33, 44, (230,10,0): 49, 33, 44, (230,11,0): 50, 34, 45, (230,12,0): 51, 35, 46, (230,13,0): 52, 36, 47, (230,14,0): 53, 37, 48, (230,15,0): 53, 37, 48, (230,16,0): 50, 34, 45, (230,17,0): 50, 34, 45, (230,18,0): 50, 34, 45, (230,19,0): 50, 34, 45, (230,20,0): 50, 34, 45, (230,21,0): 50, 34, 45, (230,22,0): 50, 34, 45, (230,23,0): 50, 34, 45, (230,24,0): 52, 36, 47, (230,25,0): 53, 37, 48, (230,26,0): 53, 37, 48, (230,27,0): 53, 37, 48, (230,28,0): 54, 38, 49, (230,29,0): 54, 38, 49, (230,30,0): 55, 39, 50, (230,31,0): 55, 39, 50, (230,32,0): 55, 38, 48, (230,33,0): 55, 38, 48, (230,34,0): 55, 38, 48, (230,35,0): 55, 38, 48, (230,36,0): 55, 38, 48, (230,37,0): 55, 38, 48, (230,38,0): 55, 38, 48, (230,39,0): 55, 38, 48, (230,40,0): 57, 40, 50, (230,41,0): 57, 40, 50, (230,42,0): 57, 40, 50, (230,43,0): 57, 40, 50, (230,44,0): 57, 40, 50, (230,45,0): 57, 40, 50, (230,46,0): 57, 40, 50, (230,47,0): 56, 40, 50, (230,48,0): 56, 41, 48, (230,49,0): 56, 41, 48, (230,50,0): 57, 40, 46, (230,51,0): 58, 41, 47, (230,52,0): 60, 41, 47, (230,53,0): 61, 42, 48, (230,54,0): 62, 41, 48, (230,55,0): 62, 41, 46, (230,56,0): 67, 44, 50, (230,57,0): 70, 45, 49, (230,58,0): 71, 44, 49, (230,59,0): 72, 45, 50, (230,60,0): 74, 45, 49, (230,61,0): 75, 46, 50, (230,62,0): 76, 45, 50, (230,63,0): 76, 45, 50, (230,64,0): 78, 46, 51, (230,65,0): 78, 46, 51, (230,66,0): 78, 46, 51, (230,67,0): 78, 46, 51, (230,68,0): 78, 46, 51, (230,69,0): 78, 46, 51, (230,70,0): 78, 46, 49, (230,71,0): 78, 46, 49, (230,72,0): 78, 46, 49, (230,73,0): 77, 45, 46, (230,74,0): 77, 45, 46, (230,75,0): 76, 45, 43, (230,76,0): 76, 45, 43, (230,77,0): 75, 44, 42, (230,78,0): 75, 44, 42, (230,79,0): 75, 43, 44, (230,80,0): 75, 43, 46, (230,81,0): 75, 43, 46, (230,82,0): 75, 43, 46, (230,83,0): 76, 44, 47, (230,84,0): 77, 45, 48, (230,85,0): 77, 45, 48, (230,86,0): 78, 46, 49, (230,87,0): 78, 46, 49, (230,88,0): 77, 45, 48, (230,89,0): 77, 45, 48, (230,90,0): 77, 45, 48, (230,91,0): 77, 45, 48, (230,92,0): 77, 45, 48, (230,93,0): 77, 45, 48, (230,94,0): 77, 45, 48, (230,95,0): 77, 45, 48, (230,96,0): 78, 42, 44, (230,97,0): 79, 43, 43, (230,98,0): 81, 42, 43, (230,99,0): 79, 43, 43, (230,100,0): 82, 44, 43, (230,101,0): 80, 45, 43, (230,102,0): 83, 45, 44, (230,103,0): 81, 46, 44, (230,104,0): 79, 41, 40, (230,105,0): 77, 42, 38, (230,106,0): 79, 41, 40, (230,107,0): 77, 42, 38, (230,108,0): 79, 41, 40, (230,109,0): 77, 42, 38, (230,110,0): 79, 41, 38, (230,111,0): 79, 42, 36, (230,112,0): 81, 42, 35, (230,113,0): 80, 42, 33, (230,114,0): 80, 42, 33, (230,115,0): 79, 40, 33, (230,116,0): 78, 39, 32, (230,117,0): 77, 40, 32, (230,118,0): 77, 38, 33, (230,119,0): 76, 39, 33, (230,120,0): 76, 39, 33, (230,121,0): 77, 39, 36, (230,122,0): 77, 39, 36, (230,123,0): 78, 40, 37, (230,124,0): 77, 39, 38, (230,125,0): 76, 38, 37, (230,126,0): 72, 37, 35, (230,127,0): 70, 36, 34, (230,128,0): 62, 34, 30, (230,129,0): 60, 35, 28, (230,130,0): 60, 35, 28, (230,131,0): 61, 36, 29, (230,132,0): 62, 37, 30, (230,133,0): 62, 37, 30, (230,134,0): 63, 38, 31, (230,135,0): 63, 38, 31, (230,136,0): 61, 36, 29, (230,137,0): 62, 37, 30, (230,138,0): 62, 37, 30, (230,139,0): 63, 38, 31, (230,140,0): 63, 38, 31, (230,141,0): 64, 39, 32, (230,142,0): 64, 39, 32, (230,143,0): 64, 39, 32, (230,144,0): 68, 41, 34, (230,145,0): 68, 41, 34, (230,146,0): 68, 41, 34, (230,147,0): 69, 42, 35, (230,148,0): 69, 42, 35, (230,149,0): 70, 43, 36, (230,150,0): 70, 43, 36, (230,151,0): 70, 43, 36, (230,152,0): 68, 41, 34, (230,153,0): 68, 41, 34, (230,154,0): 67, 40, 33, (230,155,0): 67, 40, 33, (230,156,0): 66, 39, 32, (230,157,0): 66, 39, 32, (230,158,0): 65, 38, 31, (230,159,0): 65, 38, 31, (230,160,0): 65, 36, 28, (230,161,0): 66, 36, 28, (230,162,0): 67, 37, 29, (230,163,0): 68, 38, 30, (230,164,0): 68, 38, 30, (230,165,0): 67, 37, 29, (230,166,0): 66, 36, 28, (230,167,0): 66, 36, 28, (230,168,0): 68, 38, 30, (230,169,0): 68, 38, 30, (230,170,0): 68, 38, 30, (230,171,0): 68, 38, 30, (230,172,0): 68, 38, 30, (230,173,0): 68, 38, 30, (230,174,0): 68, 38, 30, (230,175,0): 68, 38, 30, (230,176,0): 70, 42, 31, (230,177,0): 70, 42, 31, (230,178,0): 69, 41, 30, (230,179,0): 68, 40, 29, (230,180,0): 67, 39, 28, (230,181,0): 66, 38, 27, (230,182,0): 65, 37, 26, (230,183,0): 65, 37, 26, (230,184,0): 61, 33, 22, (230,185,0): 61, 33, 22, (230,186,0): 61, 33, 22, (230,187,0): 60, 32, 21, (230,188,0): 59, 31, 20, (230,189,0): 58, 30, 19, (230,190,0): 58, 30, 19, (230,191,0): 57, 30, 19, (230,192,0): 57, 30, 23, (230,193,0): 55, 30, 23, (230,194,0): 55, 30, 23, (230,195,0): 55, 30, 23, (230,196,0): 55, 30, 23, (230,197,0): 55, 30, 23, (230,198,0): 55, 30, 23, (230,199,0): 55, 30, 23, (230,200,0): 53, 28, 21, (230,201,0): 54, 29, 22, (230,202,0): 54, 29, 22, (230,203,0): 55, 30, 23, (230,204,0): 55, 30, 23, (230,205,0): 56, 31, 24, (230,206,0): 56, 31, 24, (230,207,0): 56, 31, 26, (230,208,0): 59, 31, 28, (230,209,0): 59, 31, 28, (230,210,0): 60, 32, 28, (230,211,0): 61, 34, 27, (230,212,0): 62, 33, 25, (230,213,0): 63, 35, 24, (230,214,0): 64, 36, 24, (230,215,0): 64, 37, 20, (230,216,0): 70, 42, 21, (230,217,0): 71, 43, 19, (230,218,0): 76, 46, 20, (230,219,0): 83, 53, 25, (230,220,0): 90, 61, 29, (230,221,0): 95, 66, 32, (230,222,0): 96, 66, 32, (230,223,0): 95, 65, 29, (230,224,0): 99, 70, 30, (230,225,0): 97, 68, 26, (230,226,0): 95, 66, 26, (230,227,0): 96, 67, 27, (230,228,0): 101, 71, 33, (230,229,0): 104, 74, 36, (230,230,0): 105, 75, 39, (230,231,0): 105, 75, 39, (230,232,0): 106, 76, 40, (230,233,0): 103, 73, 39, (230,234,0): 99, 69, 35, (230,235,0): 96, 65, 34, (230,236,0): 96, 65, 34, (230,237,0): 99, 68, 37, (230,238,0): 103, 72, 41, (230,239,0): 106, 75, 44, (230,240,0): 111, 78, 47, (230,241,0): 109, 79, 45, (230,242,0): 109, 81, 42, (230,243,0): 108, 85, 43, (230,244,0): 111, 90, 45, (230,245,0): 114, 96, 46, (230,246,0): 121, 101, 48, (230,247,0): 125, 104, 47, (230,248,0): 137, 115, 57, (230,249,0): 142, 118, 58, (230,250,0): 145, 119, 58, (230,251,0): 144, 120, 58, (230,252,0): 139, 118, 55, (230,253,0): 135, 115, 52, (230,254,0): 132, 117, 52, (230,255,0): 133, 117, 55, (230,256,0): 136, 120, 61, (230,257,0): 136, 119, 63, (230,258,0): 136, 119, 63, (230,259,0): 136, 120, 61, (230,260,0): 135, 120, 61, (230,261,0): 135, 121, 60, (230,262,0): 135, 121, 60, (230,263,0): 135, 121, 58, (230,264,0): 135, 124, 58, (230,265,0): 140, 130, 61, (230,266,0): 145, 137, 65, (230,267,0): 150, 142, 70, (230,268,0): 155, 147, 74, (230,269,0): 160, 152, 79, (230,270,0): 166, 160, 86, (230,271,0): 170, 164, 86, (230,272,0): 174, 168, 84, (230,273,0): 180, 170, 83, (230,274,0): 182, 167, 84, (230,275,0): 175, 158, 80, (230,276,0): 164, 142, 69, (230,277,0): 154, 129, 62, (230,278,0): 150, 125, 59, (230,279,0): 149, 125, 63, (230,280,0): 143, 122, 59, (230,281,0): 139, 121, 57, (230,282,0): 138, 120, 56, (230,283,0): 137, 119, 55, (230,284,0): 140, 121, 55, (230,285,0): 145, 124, 59, (230,286,0): 151, 128, 61, (230,287,0): 154, 130, 66, (230,288,0): 153, 129, 67, (230,289,0): 152, 128, 68, (230,290,0): 148, 126, 68, (230,291,0): 146, 124, 66, (230,292,0): 144, 121, 67, (230,293,0): 141, 118, 66, (230,294,0): 139, 117, 67, (230,295,0): 138, 116, 67, (230,296,0): 139, 118, 73, (230,297,0): 135, 114, 71, (230,298,0): 130, 108, 67, (230,299,0): 127, 105, 66, (230,300,0): 123, 103, 66, (230,301,0): 119, 99, 64, (230,302,0): 115, 95, 60, (230,303,0): 111, 91, 58, (230,304,0): 113, 93, 66, (230,305,0): 112, 92, 65, (230,306,0): 110, 93, 67, (230,307,0): 108, 91, 65, (230,308,0): 105, 88, 62, (230,309,0): 102, 85, 59, (230,310,0): 98, 82, 57, (230,311,0): 96, 80, 55, (230,312,0): 93, 78, 55, (230,313,0): 93, 78, 57, (230,314,0): 94, 79, 60, (230,315,0): 95, 80, 61, (230,316,0): 94, 81, 62, (230,317,0): 94, 81, 62, (230,318,0): 95, 82, 65, (230,319,0): 94, 83, 65, (230,320,0): 87, 81, 59, (230,321,0): 88, 82, 60, (230,322,0): 90, 83, 64, (230,323,0): 92, 84, 65, (230,324,0): 95, 84, 66, (230,325,0): 96, 83, 66, (230,326,0): 97, 81, 65, (230,327,0): 99, 80, 65, (230,328,0): 104, 82, 68, (230,329,0): 102, 79, 65, (230,330,0): 101, 75, 60, (230,331,0): 100, 73, 56, (230,332,0): 99, 70, 54, (230,333,0): 96, 65, 47, (230,334,0): 88, 57, 39, (230,335,0): 82, 50, 35, (230,336,0): 83, 53, 42, (230,337,0): 83, 53, 43, (230,338,0): 80, 52, 41, (230,339,0): 76, 48, 37, (230,340,0): 70, 43, 32, (230,341,0): 68, 41, 30, (230,342,0): 68, 44, 32, (230,343,0): 69, 47, 34, (230,344,0): 68, 46, 33, (230,345,0): 68, 49, 35, (230,346,0): 70, 52, 38, (230,347,0): 71, 53, 39, (230,348,0): 71, 55, 42, (230,349,0): 75, 59, 46, (230,350,0): 79, 65, 52, (230,351,0): 81, 73, 54, (230,352,0): 84, 87, 58, (230,353,0): 90, 97, 64, (230,354,0): 98, 108, 74, (230,355,0): 108, 118, 83, (230,356,0): 114, 126, 90, (230,357,0): 117, 132, 93, (230,358,0): 122, 138, 99, (230,359,0): 126, 142, 103, (230,360,0): 125, 141, 102, (230,361,0): 124, 142, 100, (230,362,0): 125, 143, 101, (230,363,0): 126, 145, 100, (230,364,0): 126, 145, 100, (230,365,0): 125, 144, 99, (230,366,0): 125, 142, 98, (230,367,0): 123, 142, 97, (230,368,0): 126, 149, 107, (230,369,0): 127, 152, 112, (230,370,0): 132, 157, 117, (230,371,0): 133, 160, 119, (230,372,0): 135, 161, 122, (230,373,0): 137, 165, 125, (230,374,0): 142, 170, 130, (230,375,0): 144, 175, 134, (230,376,0): 144, 176, 137, (230,377,0): 146, 181, 141, (230,378,0): 149, 183, 146, (230,379,0): 147, 183, 145, (230,380,0): 146, 182, 144, (230,381,0): 148, 186, 147, (230,382,0): 157, 195, 158, (230,383,0): 162, 203, 163, (230,384,0): 163, 205, 165, (230,385,0): 159, 204, 163, (230,386,0): 156, 203, 161, (230,387,0): 158, 206, 166, (230,388,0): 161, 213, 174, (230,389,0): 166, 222, 183, (230,390,0): 172, 229, 194, (230,391,0): 173, 234, 200, (230,392,0): 179, 242, 211, (230,393,0): 182, 246, 219, (230,394,0): 187, 251, 227, (230,395,0): 192, 255, 236, (230,396,0): 195, 255, 242, (230,397,0): 194, 255, 243, (230,398,0): 193, 255, 244, (230,399,0): 192, 251, 245, (230,400,0): 197, 253, 250, (230,401,0): 197, 253, 252, (230,402,0): 199, 253, 253, (230,403,0): 198, 254, 253, (230,404,0): 200, 254, 254, (230,405,0): 200, 255, 255, (230,406,0): 201, 255, 255, (230,407,0): 201, 255, 255, (230,408,0): 201, 255, 255, (230,409,0): 200, 255, 255, (230,410,0): 201, 255, 255, (230,411,0): 200, 255, 255, (230,412,0): 201, 255, 255, (230,413,0): 200, 255, 255, (230,414,0): 201, 255, 255, (230,415,0): 200, 255, 255, (230,416,0): 199, 254, 255, (230,417,0): 194, 252, 254, (230,418,0): 196, 253, 255, (230,419,0): 198, 255, 255, (230,420,0): 193, 247, 255, (230,421,0): 178, 232, 244, (230,422,0): 166, 219, 235, (230,423,0): 163, 216, 232, (230,424,0): 149, 200, 219, (230,425,0): 146, 197, 216, (230,426,0): 144, 195, 212, (230,427,0): 145, 196, 213, (230,428,0): 150, 202, 216, (230,429,0): 154, 206, 220, (230,430,0): 155, 207, 220, (230,431,0): 157, 206, 220, (230,432,0): 160, 209, 226, (230,433,0): 156, 205, 222, (230,434,0): 153, 200, 216, (230,435,0): 150, 196, 211, (230,436,0): 150, 193, 209, (230,437,0): 148, 188, 200, (230,438,0): 143, 181, 192, (230,439,0): 142, 176, 186, (230,440,0): 142, 175, 184, (230,441,0): 135, 164, 170, (230,442,0): 131, 156, 161, (230,443,0): 135, 159, 163, (230,444,0): 138, 157, 161, (230,445,0): 132, 150, 152, (230,446,0): 126, 144, 146, (230,447,0): 124, 142, 144, (230,448,0): 122, 141, 145, (230,449,0): 124, 145, 148, (230,450,0): 127, 150, 156, (230,451,0): 131, 156, 163, (230,452,0): 133, 160, 169, (230,453,0): 134, 162, 174, (230,454,0): 133, 162, 176, (230,455,0): 133, 162, 180, (230,456,0): 131, 159, 180, (230,457,0): 127, 155, 176, (230,458,0): 124, 152, 173, (230,459,0): 123, 150, 171, (230,460,0): 124, 149, 171, (230,461,0): 123, 148, 170, (230,462,0): 121, 143, 166, (230,463,0): 119, 140, 161, (230,464,0): 117, 135, 155, (230,465,0): 114, 131, 149, (230,466,0): 110, 127, 147, (230,467,0): 108, 125, 143, (230,468,0): 108, 123, 142, (230,469,0): 106, 121, 140, (230,470,0): 102, 117, 136, (230,471,0): 100, 113, 130, (230,472,0): 98, 111, 128, (230,473,0): 97, 110, 126, (230,474,0): 97, 109, 125, (230,475,0): 96, 108, 122, (230,476,0): 94, 106, 120, (230,477,0): 92, 104, 118, (230,478,0): 92, 101, 116, (230,479,0): 89, 101, 115, (230,480,0): 91, 103, 119, (230,481,0): 91, 103, 119, (230,482,0): 91, 102, 120, (230,483,0): 88, 101, 118, (230,484,0): 88, 101, 120, (230,485,0): 88, 103, 122, (230,486,0): 94, 111, 131, (230,487,0): 98, 116, 138, (230,488,0): 95, 113, 137, (230,489,0): 96, 116, 140, (230,490,0): 100, 122, 146, (230,491,0): 104, 128, 152, (230,492,0): 111, 135, 161, (230,493,0): 118, 142, 168, (230,494,0): 123, 147, 175, (230,495,0): 124, 150, 177, (230,496,0): 126, 156, 184, (230,497,0): 127, 157, 185, (230,498,0): 130, 159, 189, (230,499,0): 133, 162, 192, (230,500,0): 137, 166, 198, (230,501,0): 140, 169, 201, (230,502,0): 144, 170, 203, (230,503,0): 145, 172, 202, (230,504,0): 150, 177, 207, (230,505,0): 151, 178, 207, (230,506,0): 151, 178, 205, (230,507,0): 150, 178, 202, (230,508,0): 145, 173, 194, (230,509,0): 138, 167, 185, (230,510,0): 131, 160, 178, (230,511,0): 128, 156, 170, (230,512,0): 125, 151, 164, (230,513,0): 125, 149, 161, (230,514,0): 124, 146, 159, (230,515,0): 126, 145, 159, (230,516,0): 125, 143, 155, (230,517,0): 122, 138, 151, (230,518,0): 118, 130, 144, (230,519,0): 113, 125, 139, (230,520,0): 110, 120, 132, (230,521,0): 110, 120, 132, (230,522,0): 110, 120, 130, (230,523,0): 108, 121, 130, (230,524,0): 110, 123, 132, (230,525,0): 112, 125, 134, (230,526,0): 114, 127, 135, (230,527,0): 115, 130, 137, (230,528,0): 120, 134, 145, (230,529,0): 119, 136, 146, (230,530,0): 121, 138, 148, (230,531,0): 123, 140, 150, (230,532,0): 125, 143, 155, (230,533,0): 127, 145, 157, (230,534,0): 127, 146, 160, (230,535,0): 128, 147, 161, (230,536,0): 128, 150, 164, (230,537,0): 132, 153, 170, (230,538,0): 135, 158, 174, (230,539,0): 136, 159, 177, (230,540,0): 133, 156, 174, (230,541,0): 127, 153, 170, (230,542,0): 125, 150, 170, (230,543,0): 124, 151, 170, (230,544,0): 121, 148, 169, (230,545,0): 119, 145, 168, (230,546,0): 117, 143, 166, (230,547,0): 119, 145, 168, (230,548,0): 122, 148, 171, (230,549,0): 124, 150, 173, (230,550,0): 124, 150, 173, (230,551,0): 122, 148, 171, (230,552,0): 118, 144, 167, (230,553,0): 118, 144, 167, (230,554,0): 116, 142, 165, (230,555,0): 114, 140, 163, (230,556,0): 110, 136, 159, (230,557,0): 106, 132, 155, (230,558,0): 103, 129, 152, (230,559,0): 100, 126, 149, (230,560,0): 102, 127, 149, (230,561,0): 107, 129, 150, (230,562,0): 112, 133, 154, (230,563,0): 114, 135, 156, (230,564,0): 116, 134, 156, (230,565,0): 114, 132, 152, (230,566,0): 112, 127, 146, (230,567,0): 109, 124, 143, (230,568,0): 111, 122, 140, (230,569,0): 110, 121, 139, (230,570,0): 109, 118, 135, (230,571,0): 107, 114, 130, (230,572,0): 105, 111, 127, (230,573,0): 102, 108, 124, (230,574,0): 100, 106, 122, (230,575,0): 98, 104, 120, (230,576,0): 97, 106, 121, (230,577,0): 97, 106, 121, (230,578,0): 95, 104, 119, (230,579,0): 94, 102, 115, (230,580,0): 92, 100, 113, (230,581,0): 90, 98, 111, (230,582,0): 89, 95, 109, (230,583,0): 88, 94, 106, (230,584,0): 87, 93, 105, (230,585,0): 90, 94, 105, (230,586,0): 91, 95, 106, (230,587,0): 92, 96, 107, (230,588,0): 92, 94, 106, (230,589,0): 91, 94, 103, (230,590,0): 89, 92, 101, (230,591,0): 90, 90, 100, (230,592,0): 89, 86, 97, (230,593,0): 91, 85, 95, (230,594,0): 91, 83, 94, (230,595,0): 90, 83, 91, (230,596,0): 91, 80, 88, (230,597,0): 88, 77, 83, (230,598,0): 86, 73, 80, (230,599,0): 84, 71, 78, (231,0,0): 44, 28, 39, (231,1,0): 46, 30, 41, (231,2,0): 48, 32, 43, (231,3,0): 50, 34, 45, (231,4,0): 50, 34, 45, (231,5,0): 50, 34, 45, (231,6,0): 48, 32, 43, (231,7,0): 47, 31, 42, (231,8,0): 47, 31, 42, (231,9,0): 48, 32, 43, (231,10,0): 49, 33, 44, (231,11,0): 50, 34, 45, (231,12,0): 52, 36, 47, (231,13,0): 53, 37, 48, (231,14,0): 54, 38, 49, (231,15,0): 54, 38, 49, (231,16,0): 50, 34, 45, (231,17,0): 50, 34, 45, (231,18,0): 50, 34, 45, (231,19,0): 50, 34, 45, (231,20,0): 50, 34, 45, (231,21,0): 50, 34, 45, (231,22,0): 50, 34, 45, (231,23,0): 50, 34, 45, (231,24,0): 52, 36, 47, (231,25,0): 53, 37, 48, (231,26,0): 53, 37, 48, (231,27,0): 54, 38, 49, (231,28,0): 54, 38, 49, (231,29,0): 55, 39, 50, (231,30,0): 55, 39, 50, (231,31,0): 55, 39, 50, (231,32,0): 55, 38, 48, (231,33,0): 55, 38, 48, (231,34,0): 55, 38, 48, (231,35,0): 55, 38, 48, (231,36,0): 55, 38, 48, (231,37,0): 55, 38, 48, (231,38,0): 55, 38, 48, (231,39,0): 55, 38, 48, (231,40,0): 57, 40, 50, (231,41,0): 57, 40, 50, (231,42,0): 57, 40, 50, (231,43,0): 57, 40, 50, (231,44,0): 57, 40, 50, (231,45,0): 57, 40, 50, (231,46,0): 57, 40, 50, (231,47,0): 57, 40, 48, (231,48,0): 57, 40, 48, (231,49,0): 56, 41, 48, (231,50,0): 57, 40, 46, (231,51,0): 58, 41, 47, (231,52,0): 60, 41, 47, (231,53,0): 61, 42, 46, (231,54,0): 62, 41, 46, (231,55,0): 63, 40, 46, (231,56,0): 70, 45, 49, (231,57,0): 70, 45, 49, (231,58,0): 71, 44, 49, (231,59,0): 72, 46, 49, (231,60,0): 75, 46, 50, (231,61,0): 75, 46, 50, (231,62,0): 76, 45, 50, (231,63,0): 77, 46, 51, (231,64,0): 78, 46, 51, (231,65,0): 78, 46, 51, (231,66,0): 78, 46, 51, (231,67,0): 78, 46, 51, (231,68,0): 78, 46, 51, (231,69,0): 78, 46, 49, (231,70,0): 78, 46, 49, (231,71,0): 78, 46, 47, (231,72,0): 78, 46, 47, (231,73,0): 78, 46, 47, (231,74,0): 77, 46, 44, (231,75,0): 77, 46, 44, (231,76,0): 76, 45, 43, (231,77,0): 76, 45, 43, (231,78,0): 75, 44, 42, (231,79,0): 75, 44, 42, (231,80,0): 75, 43, 44, (231,81,0): 76, 44, 45, (231,82,0): 76, 44, 47, (231,83,0): 77, 45, 46, (231,84,0): 78, 46, 49, (231,85,0): 79, 47, 48, (231,86,0): 79, 47, 50, (231,87,0): 80, 48, 49, (231,88,0): 79, 47, 50, (231,89,0): 79, 47, 48, (231,90,0): 79, 47, 50, (231,91,0): 79, 47, 48, (231,92,0): 79, 47, 50, (231,93,0): 79, 47, 48, (231,94,0): 79, 47, 50, (231,95,0): 81, 47, 48, (231,96,0): 80, 41, 42, (231,97,0): 80, 41, 42, (231,98,0): 81, 42, 43, (231,99,0): 82, 43, 44, (231,100,0): 83, 45, 44, (231,101,0): 84, 46, 45, (231,102,0): 85, 47, 46, (231,103,0): 85, 47, 44, (231,104,0): 81, 43, 40, (231,105,0): 81, 43, 40, (231,106,0): 81, 43, 40, (231,107,0): 81, 44, 38, (231,108,0): 81, 44, 38, (231,109,0): 81, 44, 38, (231,110,0): 81, 44, 38, (231,111,0): 82, 43, 36, (231,112,0): 84, 44, 36, (231,113,0): 83, 43, 35, (231,114,0): 85, 42, 35, (231,115,0): 82, 42, 34, (231,116,0): 81, 41, 33, (231,117,0): 79, 40, 33, (231,118,0): 79, 40, 33, (231,119,0): 78, 39, 34, (231,120,0): 78, 39, 34, (231,121,0): 77, 40, 34, (231,122,0): 78, 40, 37, (231,123,0): 78, 40, 37, (231,124,0): 78, 40, 37, (231,125,0): 76, 38, 35, (231,126,0): 73, 38, 36, (231,127,0): 71, 38, 33, (231,128,0): 62, 35, 28, (231,129,0): 60, 35, 28, (231,130,0): 61, 36, 29, (231,131,0): 61, 36, 29, (231,132,0): 62, 37, 30, (231,133,0): 63, 38, 31, (231,134,0): 64, 39, 32, (231,135,0): 64, 39, 32, (231,136,0): 62, 37, 30, (231,137,0): 62, 37, 30, (231,138,0): 62, 37, 30, (231,139,0): 63, 38, 31, (231,140,0): 64, 39, 32, (231,141,0): 64, 39, 32, (231,142,0): 64, 39, 32, (231,143,0): 65, 40, 33, (231,144,0): 68, 41, 34, (231,145,0): 68, 41, 34, (231,146,0): 69, 42, 35, (231,147,0): 69, 42, 35, (231,148,0): 70, 43, 36, (231,149,0): 70, 43, 36, (231,150,0): 71, 44, 37, (231,151,0): 71, 44, 37, (231,152,0): 68, 41, 34, (231,153,0): 68, 41, 34, (231,154,0): 68, 41, 34, (231,155,0): 67, 40, 33, (231,156,0): 67, 40, 33, (231,157,0): 66, 39, 32, (231,158,0): 66, 39, 32, (231,159,0): 66, 37, 31, (231,160,0): 65, 35, 27, (231,161,0): 66, 36, 28, (231,162,0): 68, 38, 30, (231,163,0): 69, 39, 31, (231,164,0): 69, 39, 31, (231,165,0): 68, 38, 30, (231,166,0): 66, 36, 28, (231,167,0): 65, 35, 27, (231,168,0): 69, 39, 31, (231,169,0): 69, 39, 31, (231,170,0): 69, 39, 31, (231,171,0): 69, 39, 31, (231,172,0): 69, 39, 31, (231,173,0): 69, 39, 31, (231,174,0): 69, 39, 31, (231,175,0): 69, 39, 31, (231,176,0): 71, 43, 32, (231,177,0): 70, 42, 31, (231,178,0): 69, 41, 30, (231,179,0): 68, 40, 29, (231,180,0): 67, 39, 28, (231,181,0): 66, 38, 27, (231,182,0): 65, 37, 26, (231,183,0): 65, 37, 26, (231,184,0): 61, 33, 22, (231,185,0): 61, 33, 22, (231,186,0): 61, 33, 22, (231,187,0): 60, 32, 21, (231,188,0): 60, 32, 21, (231,189,0): 60, 32, 21, (231,190,0): 60, 32, 21, (231,191,0): 59, 32, 21, (231,192,0): 57, 30, 23, (231,193,0): 55, 30, 23, (231,194,0): 55, 30, 23, (231,195,0): 55, 30, 23, (231,196,0): 55, 30, 23, (231,197,0): 55, 30, 23, (231,198,0): 55, 30, 23, (231,199,0): 55, 30, 23, (231,200,0): 53, 28, 21, (231,201,0): 53, 28, 21, (231,202,0): 54, 29, 22, (231,203,0): 54, 29, 22, (231,204,0): 55, 30, 23, (231,205,0): 55, 30, 23, (231,206,0): 56, 31, 24, (231,207,0): 56, 31, 26, (231,208,0): 62, 34, 31, (231,209,0): 62, 34, 31, (231,210,0): 61, 33, 29, (231,211,0): 61, 34, 27, (231,212,0): 62, 33, 25, (231,213,0): 62, 34, 23, (231,214,0): 61, 33, 21, (231,215,0): 61, 34, 17, (231,216,0): 70, 42, 21, (231,217,0): 71, 43, 19, (231,218,0): 77, 47, 21, (231,219,0): 84, 55, 25, (231,220,0): 91, 62, 30, (231,221,0): 96, 68, 31, (231,222,0): 97, 67, 31, (231,223,0): 96, 66, 28, (231,224,0): 100, 71, 31, (231,225,0): 98, 69, 29, (231,226,0): 97, 67, 29, (231,227,0): 100, 70, 32, (231,228,0): 105, 75, 39, (231,229,0): 108, 78, 42, (231,230,0): 107, 77, 43, (231,231,0): 106, 76, 42, (231,232,0): 102, 71, 40, (231,233,0): 99, 68, 37, (231,234,0): 96, 65, 36, (231,235,0): 94, 63, 34, (231,236,0): 96, 65, 37, (231,237,0): 101, 70, 42, (231,238,0): 106, 75, 47, (231,239,0): 110, 79, 50, (231,240,0): 110, 77, 44, (231,241,0): 108, 78, 42, (231,242,0): 109, 81, 41, (231,243,0): 110, 87, 43, (231,244,0): 114, 94, 44, (231,245,0): 118, 101, 47, (231,246,0): 126, 107, 49, (231,247,0): 131, 111, 50, (231,248,0): 144, 120, 58, (231,249,0): 149, 124, 60, (231,250,0): 152, 127, 61, (231,251,0): 152, 127, 61, (231,252,0): 148, 125, 57, (231,253,0): 144, 124, 55, (231,254,0): 141, 124, 55, (231,255,0): 140, 125, 58, (231,256,0): 140, 124, 62, (231,257,0): 140, 124, 64, (231,258,0): 139, 123, 63, (231,259,0): 139, 123, 63, (231,260,0): 138, 124, 61, (231,261,0): 137, 123, 60, (231,262,0): 137, 123, 60, (231,263,0): 137, 123, 58, (231,264,0): 140, 130, 61, (231,265,0): 144, 134, 65, (231,266,0): 148, 140, 68, (231,267,0): 151, 143, 71, (231,268,0): 154, 146, 73, (231,269,0): 158, 150, 77, (231,270,0): 163, 157, 83, (231,271,0): 168, 162, 86, (231,272,0): 172, 167, 83, (231,273,0): 176, 170, 84, (231,274,0): 179, 168, 86, (231,275,0): 175, 157, 81, (231,276,0): 164, 142, 69, (231,277,0): 153, 128, 61, (231,278,0): 149, 124, 58, (231,279,0): 148, 124, 60, (231,280,0): 146, 125, 62, (231,281,0): 143, 123, 60, (231,282,0): 141, 123, 59, (231,283,0): 140, 122, 58, (231,284,0): 142, 122, 59, (231,285,0): 144, 125, 59, (231,286,0): 148, 127, 62, (231,287,0): 151, 127, 63, (231,288,0): 153, 129, 69, (231,289,0): 152, 128, 68, (231,290,0): 149, 127, 69, (231,291,0): 146, 124, 67, (231,292,0): 144, 121, 67, (231,293,0): 142, 119, 65, (231,294,0): 139, 117, 67, (231,295,0): 138, 116, 67, (231,296,0): 141, 120, 73, (231,297,0): 137, 116, 71, (231,298,0): 132, 111, 68, (231,299,0): 129, 107, 66, (231,300,0): 125, 106, 66, (231,301,0): 121, 101, 64, (231,302,0): 116, 96, 59, (231,303,0): 112, 92, 57, (231,304,0): 114, 95, 65, (231,305,0): 114, 95, 65, (231,306,0): 111, 94, 66, (231,307,0): 108, 91, 63, (231,308,0): 105, 88, 60, (231,309,0): 101, 84, 58, (231,310,0): 97, 81, 55, (231,311,0): 95, 79, 54, (231,312,0): 91, 76, 53, (231,313,0): 92, 77, 54, (231,314,0): 93, 78, 59, (231,315,0): 94, 79, 60, (231,316,0): 93, 80, 61, (231,317,0): 95, 82, 63, (231,318,0): 96, 83, 66, (231,319,0): 95, 84, 66, (231,320,0): 87, 81, 59, (231,321,0): 87, 82, 60, (231,322,0): 89, 82, 63, (231,323,0): 91, 84, 65, (231,324,0): 95, 84, 66, (231,325,0): 96, 83, 66, (231,326,0): 97, 81, 65, (231,327,0): 99, 80, 65, (231,328,0): 105, 83, 69, (231,329,0): 103, 80, 66, (231,330,0): 102, 74, 60, (231,331,0): 99, 71, 57, (231,332,0): 98, 66, 53, (231,333,0): 91, 59, 46, (231,334,0): 82, 48, 36, (231,335,0): 73, 41, 30, (231,336,0): 77, 47, 39, (231,337,0): 76, 47, 41, (231,338,0): 75, 46, 40, (231,339,0): 70, 43, 36, (231,340,0): 66, 39, 32, (231,341,0): 63, 38, 31, (231,342,0): 67, 45, 34, (231,343,0): 71, 49, 38, (231,344,0): 64, 44, 33, (231,345,0): 66, 48, 36, (231,346,0): 69, 51, 39, (231,347,0): 69, 53, 40, (231,348,0): 68, 54, 41, (231,349,0): 71, 57, 44, (231,350,0): 76, 64, 50, (231,351,0): 79, 72, 53, (231,352,0): 81, 84, 57, (231,353,0): 86, 93, 60, (231,354,0): 95, 105, 71, (231,355,0): 104, 115, 81, (231,356,0): 109, 123, 88, (231,357,0): 114, 130, 93, (231,358,0): 118, 136, 98, (231,359,0): 120, 141, 100, (231,360,0): 120, 141, 100, (231,361,0): 121, 142, 101, (231,362,0): 123, 144, 103, (231,363,0): 123, 144, 101, (231,364,0): 124, 145, 102, (231,365,0): 125, 144, 99, (231,366,0): 124, 142, 100, (231,367,0): 123, 141, 99, (231,368,0): 125, 146, 105, (231,369,0): 127, 149, 110, (231,370,0): 131, 153, 114, (231,371,0): 132, 157, 117, (231,372,0): 133, 158, 119, (231,373,0): 136, 162, 123, (231,374,0): 141, 167, 128, (231,375,0): 144, 172, 132, (231,376,0): 141, 171, 133, (231,377,0): 144, 176, 137, (231,378,0): 147, 179, 142, (231,379,0): 143, 177, 140, (231,380,0): 141, 175, 138, (231,381,0): 144, 180, 142, (231,382,0): 153, 189, 153, (231,383,0): 161, 199, 162, (231,384,0): 162, 203, 163, (231,385,0): 157, 199, 161, (231,386,0): 152, 197, 158, (231,387,0): 154, 202, 164, (231,388,0): 159, 211, 173, (231,389,0): 166, 222, 187, (231,390,0): 171, 228, 195, (231,391,0): 170, 231, 200, (231,392,0): 177, 240, 213, (231,393,0): 180, 244, 220, (231,394,0): 185, 250, 230, (231,395,0): 190, 254, 237, (231,396,0): 194, 255, 244, (231,397,0): 194, 255, 246, (231,398,0): 192, 255, 246, (231,399,0): 190, 253, 245, (231,400,0): 194, 253, 251, (231,401,0): 195, 254, 252, (231,402,0): 197, 253, 252, (231,403,0): 196, 255, 253, (231,404,0): 199, 255, 254, (231,405,0): 198, 255, 255, (231,406,0): 200, 255, 255, (231,407,0): 199, 255, 255, (231,408,0): 200, 255, 255, (231,409,0): 198, 255, 255, (231,410,0): 200, 255, 255, (231,411,0): 198, 255, 255, (231,412,0): 200, 255, 255, (231,413,0): 198, 255, 255, (231,414,0): 200, 255, 255, (231,415,0): 198, 255, 255, (231,416,0): 196, 254, 255, (231,417,0): 193, 251, 253, (231,418,0): 194, 252, 255, (231,419,0): 196, 253, 255, (231,420,0): 191, 245, 255, (231,421,0): 176, 230, 242, (231,422,0): 165, 218, 232, (231,423,0): 162, 215, 231, (231,424,0): 157, 208, 225, (231,425,0): 150, 201, 218, (231,426,0): 143, 194, 211, (231,427,0): 140, 192, 206, (231,428,0): 143, 195, 209, (231,429,0): 150, 199, 213, (231,430,0): 153, 202, 216, (231,431,0): 154, 203, 217, (231,432,0): 154, 203, 218, (231,433,0): 152, 201, 218, (231,434,0): 151, 198, 214, (231,435,0): 151, 197, 213, (231,436,0): 152, 195, 211, (231,437,0): 150, 189, 204, (231,438,0): 145, 183, 196, (231,439,0): 140, 176, 188, (231,440,0): 144, 177, 186, (231,441,0): 136, 166, 174, (231,442,0): 132, 159, 166, (231,443,0): 136, 161, 166, (231,444,0): 140, 161, 166, (231,445,0): 135, 154, 158, (231,446,0): 129, 148, 152, (231,447,0): 127, 146, 150, (231,448,0): 123, 144, 147, (231,449,0): 125, 146, 151, (231,450,0): 128, 151, 157, (231,451,0): 132, 155, 163, (231,452,0): 134, 158, 168, (231,453,0): 133, 159, 172, (231,454,0): 132, 160, 174, (231,455,0): 131, 160, 176, (231,456,0): 125, 154, 172, (231,457,0): 123, 150, 171, (231,458,0): 120, 147, 168, (231,459,0): 120, 145, 167, (231,460,0): 123, 145, 168, (231,461,0): 123, 144, 165, (231,462,0): 120, 141, 162, (231,463,0): 120, 138, 158, (231,464,0): 116, 133, 151, (231,465,0): 113, 128, 147, (231,466,0): 108, 123, 142, (231,467,0): 108, 121, 140, (231,468,0): 108, 121, 140, (231,469,0): 106, 119, 136, (231,470,0): 102, 115, 132, (231,471,0): 99, 111, 127, (231,472,0): 99, 111, 127, (231,473,0): 100, 109, 124, (231,474,0): 99, 108, 123, (231,475,0): 97, 106, 121, (231,476,0): 95, 104, 119, (231,477,0): 93, 101, 114, (231,478,0): 91, 98, 114, (231,479,0): 88, 97, 112, (231,480,0): 95, 104, 119, (231,481,0): 93, 105, 121, (231,482,0): 92, 104, 120, (231,483,0): 90, 101, 119, (231,484,0): 88, 99, 117, (231,485,0): 90, 103, 122, (231,486,0): 93, 108, 127, (231,487,0): 97, 114, 134, (231,488,0): 95, 111, 134, (231,489,0): 97, 115, 139, (231,490,0): 100, 120, 144, (231,491,0): 105, 127, 151, (231,492,0): 113, 135, 159, (231,493,0): 117, 141, 167, (231,494,0): 123, 147, 173, (231,495,0): 124, 150, 177, (231,496,0): 128, 155, 182, (231,497,0): 127, 157, 185, (231,498,0): 128, 157, 187, (231,499,0): 131, 160, 190, (231,500,0): 134, 163, 195, (231,501,0): 137, 166, 198, (231,502,0): 142, 168, 201, (231,503,0): 144, 170, 203, (231,504,0): 150, 177, 207, (231,505,0): 151, 178, 208, (231,506,0): 152, 179, 208, (231,507,0): 151, 179, 203, (231,508,0): 147, 175, 197, (231,509,0): 140, 168, 189, (231,510,0): 134, 162, 183, (231,511,0): 129, 158, 174, (231,512,0): 125, 153, 165, (231,513,0): 123, 150, 161, (231,514,0): 124, 146, 159, (231,515,0): 124, 143, 157, (231,516,0): 124, 142, 154, (231,517,0): 122, 138, 151, (231,518,0): 119, 131, 145, (231,519,0): 114, 126, 140, (231,520,0): 110, 120, 132, (231,521,0): 110, 120, 132, (231,522,0): 110, 120, 130, (231,523,0): 111, 121, 131, (231,524,0): 112, 122, 132, (231,525,0): 112, 125, 134, (231,526,0): 116, 126, 135, (231,527,0): 115, 128, 136, (231,528,0): 121, 134, 143, (231,529,0): 121, 135, 146, (231,530,0): 122, 136, 147, (231,531,0): 123, 140, 150, (231,532,0): 125, 141, 154, (231,533,0): 127, 145, 157, (231,534,0): 128, 146, 160, (231,535,0): 128, 147, 162, (231,536,0): 130, 151, 168, (231,537,0): 133, 154, 171, (231,538,0): 135, 158, 176, (231,539,0): 133, 158, 178, (231,540,0): 130, 155, 175, (231,541,0): 125, 152, 171, (231,542,0): 124, 151, 172, (231,543,0): 125, 152, 173, (231,544,0): 123, 149, 172, (231,545,0): 121, 147, 170, (231,546,0): 119, 145, 168, (231,547,0): 120, 146, 169, (231,548,0): 123, 149, 172, (231,549,0): 125, 151, 174, (231,550,0): 124, 150, 173, (231,551,0): 123, 149, 172, (231,552,0): 116, 142, 165, (231,553,0): 116, 142, 165, (231,554,0): 115, 141, 164, (231,555,0): 113, 139, 162, (231,556,0): 110, 136, 159, (231,557,0): 106, 132, 155, (231,558,0): 103, 129, 152, (231,559,0): 102, 127, 149, (231,560,0): 104, 126, 147, (231,561,0): 107, 128, 149, (231,562,0): 111, 132, 153, (231,563,0): 114, 135, 154, (231,564,0): 116, 134, 154, (231,565,0): 114, 131, 151, (231,566,0): 111, 126, 145, (231,567,0): 109, 124, 143, (231,568,0): 110, 121, 139, (231,569,0): 109, 120, 138, (231,570,0): 108, 117, 134, (231,571,0): 105, 114, 131, (231,572,0): 103, 110, 128, (231,573,0): 101, 107, 123, (231,574,0): 99, 105, 121, (231,575,0): 96, 103, 119, (231,576,0): 97, 106, 121, (231,577,0): 94, 106, 120, (231,578,0): 92, 104, 118, (231,579,0): 92, 101, 116, (231,580,0): 90, 99, 114, (231,581,0): 88, 98, 110, (231,582,0): 87, 97, 109, (231,583,0): 87, 95, 108, (231,584,0): 86, 94, 107, (231,585,0): 88, 94, 106, (231,586,0): 90, 96, 108, (231,587,0): 91, 98, 108, (231,588,0): 90, 97, 107, (231,589,0): 91, 95, 106, (231,590,0): 89, 93, 104, (231,591,0): 89, 92, 101, (231,592,0): 90, 87, 98, (231,593,0): 92, 86, 98, (231,594,0): 92, 84, 97, (231,595,0): 91, 83, 94, (231,596,0): 90, 80, 89, (231,597,0): 88, 77, 85, (231,598,0): 86, 73, 82, (231,599,0): 84, 71, 78, (232,0,0): 46, 30, 41, (232,1,0): 46, 30, 41, (232,2,0): 45, 29, 40, (232,3,0): 45, 29, 40, (232,4,0): 45, 29, 40, (232,5,0): 47, 31, 42, (232,6,0): 48, 32, 43, (232,7,0): 49, 33, 44, (232,8,0): 48, 32, 43, (232,9,0): 48, 32, 43, (232,10,0): 49, 33, 44, (232,11,0): 49, 33, 44, (232,12,0): 50, 34, 45, (232,13,0): 50, 34, 45, (232,14,0): 51, 35, 46, (232,15,0): 51, 35, 46, (232,16,0): 50, 34, 45, (232,17,0): 50, 34, 45, (232,18,0): 50, 34, 45, (232,19,0): 51, 35, 46, (232,20,0): 51, 35, 46, (232,21,0): 52, 36, 47, (232,22,0): 52, 36, 47, (232,23,0): 52, 36, 47, (232,24,0): 50, 34, 45, (232,25,0): 51, 35, 46, (232,26,0): 52, 36, 47, (232,27,0): 54, 38, 49, (232,28,0): 54, 38, 49, (232,29,0): 54, 38, 49, (232,30,0): 53, 37, 48, (232,31,0): 53, 37, 48, (232,32,0): 57, 40, 50, (232,33,0): 59, 39, 48, (232,34,0): 59, 39, 48, (232,35,0): 60, 40, 49, (232,36,0): 60, 40, 49, (232,37,0): 61, 41, 50, (232,38,0): 61, 41, 50, (232,39,0): 61, 41, 50, (232,40,0): 59, 39, 48, (232,41,0): 59, 39, 48, (232,42,0): 59, 39, 48, (232,43,0): 60, 40, 49, (232,44,0): 60, 40, 49, (232,45,0): 61, 41, 50, (232,46,0): 61, 41, 50, (232,47,0): 59, 42, 50, (232,48,0): 58, 41, 49, (232,49,0): 59, 42, 48, (232,50,0): 62, 43, 49, (232,51,0): 63, 44, 50, (232,52,0): 65, 44, 49, (232,53,0): 66, 45, 50, (232,54,0): 68, 45, 51, (232,55,0): 68, 46, 49, (232,56,0): 70, 45, 49, (232,57,0): 72, 45, 50, (232,58,0): 75, 46, 50, (232,59,0): 77, 48, 52, (232,60,0): 79, 48, 53, (232,61,0): 79, 49, 51, (232,62,0): 79, 47, 50, (232,63,0): 79, 47, 50, (232,64,0): 80, 48, 53, (232,65,0): 80, 48, 53, (232,66,0): 80, 48, 51, (232,67,0): 80, 48, 51, (232,68,0): 80, 48, 51, (232,69,0): 80, 48, 51, (232,70,0): 80, 48, 51, (232,71,0): 80, 48, 49, (232,72,0): 80, 48, 49, (232,73,0): 80, 49, 47, (232,74,0): 80, 49, 47, (232,75,0): 81, 50, 48, (232,76,0): 81, 50, 47, (232,77,0): 82, 51, 48, (232,78,0): 82, 51, 48, (232,79,0): 82, 51, 49, (232,80,0): 80, 46, 45, (232,81,0): 82, 48, 47, (232,82,0): 85, 51, 52, (232,83,0): 87, 53, 52, (232,84,0): 87, 53, 54, (232,85,0): 85, 51, 50, (232,86,0): 82, 48, 49, (232,87,0): 80, 46, 45, (232,88,0): 82, 48, 49, (232,89,0): 81, 47, 46, (232,90,0): 81, 47, 48, (232,91,0): 80, 46, 45, (232,92,0): 80, 46, 47, (232,93,0): 79, 45, 44, (232,94,0): 79, 45, 46, (232,95,0): 79, 45, 44, (232,96,0): 83, 44, 45, (232,97,0): 85, 45, 46, (232,98,0): 85, 45, 45, (232,99,0): 85, 45, 45, (232,100,0): 86, 46, 46, (232,101,0): 86, 46, 46, (232,102,0): 87, 47, 45, (232,103,0): 87, 47, 45, (232,104,0): 86, 46, 44, (232,105,0): 86, 47, 42, (232,106,0): 87, 48, 43, (232,107,0): 87, 48, 41, (232,108,0): 88, 49, 42, (232,109,0): 88, 49, 42, (232,110,0): 89, 50, 43, (232,111,0): 89, 51, 42, (232,112,0): 91, 48, 41, (232,113,0): 91, 48, 39, (232,114,0): 91, 47, 38, (232,115,0): 89, 46, 37, (232,116,0): 88, 45, 36, (232,117,0): 85, 45, 37, (232,118,0): 84, 44, 36, (232,119,0): 83, 44, 37, (232,120,0): 81, 42, 35, (232,121,0): 81, 42, 35, (232,122,0): 79, 42, 36, (232,123,0): 78, 41, 35, (232,124,0): 75, 40, 34, (232,125,0): 74, 39, 33, (232,126,0): 73, 38, 34, (232,127,0): 72, 39, 34, (232,128,0): 71, 44, 37, (232,129,0): 69, 44, 37, (232,130,0): 69, 44, 37, (232,131,0): 68, 43, 36, (232,132,0): 68, 43, 36, (232,133,0): 67, 42, 35, (232,134,0): 67, 42, 35, (232,135,0): 67, 42, 35, (232,136,0): 65, 40, 33, (232,137,0): 65, 40, 33, (232,138,0): 65, 40, 33, (232,139,0): 65, 40, 33, (232,140,0): 65, 40, 33, (232,141,0): 65, 40, 33, (232,142,0): 65, 40, 33, (232,143,0): 65, 40, 33, (232,144,0): 67, 40, 33, (232,145,0): 68, 39, 33, (232,146,0): 69, 40, 34, (232,147,0): 69, 40, 34, (232,148,0): 70, 41, 35, (232,149,0): 70, 41, 35, (232,150,0): 71, 42, 36, (232,151,0): 71, 42, 36, (232,152,0): 73, 44, 38, (232,153,0): 72, 43, 37, (232,154,0): 72, 43, 37, (232,155,0): 71, 42, 36, (232,156,0): 71, 42, 36, (232,157,0): 70, 41, 35, (232,158,0): 70, 41, 35, (232,159,0): 70, 41, 35, (232,160,0): 71, 41, 33, (232,161,0): 72, 39, 30, (232,162,0): 72, 39, 30, (232,163,0): 71, 38, 29, (232,164,0): 71, 38, 29, (232,165,0): 70, 37, 28, (232,166,0): 70, 37, 28, (232,167,0): 70, 37, 28, (232,168,0): 71, 38, 29, (232,169,0): 71, 38, 29, (232,170,0): 71, 38, 29, (232,171,0): 71, 38, 29, (232,172,0): 71, 38, 29, (232,173,0): 71, 38, 29, (232,174,0): 71, 38, 29, (232,175,0): 69, 39, 29, (232,176,0): 66, 38, 27, (232,177,0): 67, 39, 28, (232,178,0): 68, 40, 29, (232,179,0): 69, 41, 30, (232,180,0): 68, 40, 29, (232,181,0): 67, 39, 28, (232,182,0): 64, 36, 25, (232,183,0): 63, 35, 24, (232,184,0): 63, 35, 24, (232,185,0): 63, 35, 24, (232,186,0): 62, 34, 23, (232,187,0): 61, 33, 22, (232,188,0): 60, 32, 21, (232,189,0): 59, 31, 20, (232,190,0): 58, 30, 19, (232,191,0): 57, 30, 19, (232,192,0): 59, 32, 25, (232,193,0): 56, 31, 24, (232,194,0): 55, 30, 23, (232,195,0): 54, 29, 22, (232,196,0): 53, 28, 21, (232,197,0): 53, 28, 21, (232,198,0): 54, 29, 22, (232,199,0): 55, 30, 23, (232,200,0): 55, 30, 23, (232,201,0): 56, 31, 24, (232,202,0): 56, 31, 24, (232,203,0): 56, 31, 24, (232,204,0): 56, 31, 24, (232,205,0): 56, 31, 24, (232,206,0): 57, 32, 25, (232,207,0): 57, 32, 27, (232,208,0): 60, 32, 29, (232,209,0): 62, 32, 30, (232,210,0): 63, 34, 30, (232,211,0): 65, 36, 30, (232,212,0): 67, 37, 29, (232,213,0): 69, 39, 28, (232,214,0): 70, 41, 27, (232,215,0): 70, 41, 23, (232,216,0): 76, 45, 24, (232,217,0): 79, 49, 23, (232,218,0): 84, 53, 25, (232,219,0): 88, 57, 26, (232,220,0): 92, 62, 28, (232,221,0): 95, 65, 29, (232,222,0): 98, 65, 30, (232,223,0): 99, 67, 29, (232,224,0): 93, 63, 25, (232,225,0): 94, 64, 26, (232,226,0): 96, 66, 30, (232,227,0): 99, 69, 33, (232,228,0): 101, 71, 37, (232,229,0): 102, 72, 38, (232,230,0): 102, 71, 40, (232,231,0): 102, 71, 40, (232,232,0): 96, 65, 36, (232,233,0): 93, 62, 33, (232,234,0): 91, 60, 32, (232,235,0): 93, 62, 34, (232,236,0): 98, 66, 41, (232,237,0): 102, 70, 45, (232,238,0): 103, 71, 48, (232,239,0): 102, 71, 43, (232,240,0): 110, 80, 46, (232,241,0): 110, 80, 42, (232,242,0): 110, 83, 40, (232,243,0): 112, 90, 43, (232,244,0): 119, 99, 48, (232,245,0): 129, 112, 56, (232,246,0): 142, 123, 64, (232,247,0): 150, 130, 67, (232,248,0): 154, 130, 66, (232,249,0): 159, 134, 67, (232,250,0): 165, 138, 69, (232,251,0): 167, 140, 71, (232,252,0): 164, 140, 68, (232,253,0): 161, 139, 66, (232,254,0): 158, 140, 66, (232,255,0): 158, 141, 69, (232,256,0): 155, 140, 73, (232,257,0): 149, 134, 69, (232,258,0): 142, 127, 62, (232,259,0): 143, 128, 63, (232,260,0): 147, 133, 68, (232,261,0): 152, 138, 73, (232,262,0): 151, 137, 72, (232,263,0): 148, 135, 67, (232,264,0): 149, 139, 70, (232,265,0): 150, 140, 69, (232,266,0): 151, 143, 71, (232,267,0): 150, 142, 70, (232,268,0): 150, 142, 70, (232,269,0): 153, 145, 73, (232,270,0): 157, 150, 78, (232,271,0): 162, 156, 80, (232,272,0): 173, 170, 89, (232,273,0): 177, 172, 90, (232,274,0): 178, 169, 90, (232,275,0): 176, 160, 85, (232,276,0): 167, 147, 76, (232,277,0): 158, 135, 67, (232,278,0): 151, 126, 60, (232,279,0): 146, 122, 58, (232,280,0): 144, 123, 60, (232,281,0): 144, 124, 63, (232,282,0): 144, 126, 64, (232,283,0): 146, 128, 66, (232,284,0): 148, 128, 67, (232,285,0): 150, 130, 67, (232,286,0): 152, 131, 68, (232,287,0): 153, 131, 71, (232,288,0): 154, 130, 70, (232,289,0): 153, 128, 71, (232,290,0): 150, 128, 71, (232,291,0): 148, 126, 69, (232,292,0): 147, 124, 70, (232,293,0): 145, 122, 68, (232,294,0): 143, 121, 71, (232,295,0): 142, 120, 71, (232,296,0): 137, 116, 69, (232,297,0): 138, 117, 72, (232,298,0): 138, 117, 74, (232,299,0): 138, 116, 75, (232,300,0): 133, 114, 72, (232,301,0): 128, 109, 69, (232,302,0): 124, 105, 65, (232,303,0): 121, 101, 64, (232,304,0): 121, 102, 70, (232,305,0): 120, 101, 69, (232,306,0): 116, 99, 69, (232,307,0): 113, 96, 66, (232,308,0): 110, 93, 63, (232,309,0): 105, 88, 60, (232,310,0): 101, 85, 59, (232,311,0): 98, 82, 57, (232,312,0): 96, 81, 58, (232,313,0): 95, 80, 57, (232,314,0): 94, 79, 60, (232,315,0): 93, 78, 59, (232,316,0): 91, 78, 61, (232,317,0): 92, 79, 62, (232,318,0): 93, 80, 63, (232,319,0): 93, 82, 64, (232,320,0): 91, 84, 65, (232,321,0): 90, 85, 65, (232,322,0): 92, 85, 66, (232,323,0): 92, 85, 66, (232,324,0): 94, 83, 63, (232,325,0): 93, 80, 61, (232,326,0): 94, 79, 60, (232,327,0): 95, 76, 59, (232,328,0): 101, 79, 65, (232,329,0): 99, 76, 62, (232,330,0): 97, 69, 57, (232,331,0): 91, 63, 51, (232,332,0): 86, 54, 43, (232,333,0): 80, 48, 37, (232,334,0): 76, 42, 32, (232,335,0): 72, 39, 30, (232,336,0): 70, 41, 35, (232,337,0): 66, 41, 36, (232,338,0): 64, 39, 34, (232,339,0): 62, 39, 33, (232,340,0): 62, 39, 31, (232,341,0): 61, 41, 32, (232,342,0): 62, 44, 34, (232,343,0): 63, 45, 35, (232,344,0): 62, 46, 33, (232,345,0): 60, 46, 33, (232,346,0): 61, 48, 32, (232,347,0): 61, 49, 33, (232,348,0): 63, 54, 37, (232,349,0): 68, 59, 42, (232,350,0): 73, 64, 47, (232,351,0): 73, 68, 48, (232,352,0): 76, 79, 52, (232,353,0): 80, 87, 56, (232,354,0): 89, 98, 67, (232,355,0): 100, 111, 79, (232,356,0): 109, 124, 91, (232,357,0): 117, 134, 98, (232,358,0): 121, 141, 104, (232,359,0): 122, 144, 105, (232,360,0): 120, 145, 105, (232,361,0): 123, 148, 106, (232,362,0): 127, 150, 108, (232,363,0): 126, 149, 107, (232,364,0): 122, 145, 103, (232,365,0): 120, 141, 98, (232,366,0): 120, 141, 100, (232,367,0): 121, 142, 101, (232,368,0): 127, 148, 107, (232,369,0): 129, 150, 109, (232,370,0): 132, 153, 112, (232,371,0): 134, 157, 115, (232,372,0): 136, 158, 119, (232,373,0): 135, 160, 120, (232,374,0): 134, 160, 121, (232,375,0): 133, 161, 121, (232,376,0): 141, 169, 129, (232,377,0): 141, 172, 131, (232,378,0): 141, 173, 134, (232,379,0): 140, 175, 135, (232,380,0): 140, 174, 137, (232,381,0): 144, 178, 141, (232,382,0): 150, 184, 147, (232,383,0): 154, 190, 152, (232,384,0): 147, 187, 150, (232,385,0): 150, 192, 154, (232,386,0): 154, 198, 162, (232,387,0): 158, 204, 168, (232,388,0): 160, 209, 177, (232,389,0): 163, 217, 185, (232,390,0): 169, 225, 196, (232,391,0): 171, 231, 205, (232,392,0): 176, 238, 213, (232,393,0): 180, 243, 222, (232,394,0): 186, 250, 233, (232,395,0): 188, 254, 240, (232,396,0): 189, 255, 243, (232,397,0): 189, 255, 245, (232,398,0): 190, 255, 246, (232,399,0): 193, 255, 248, (232,400,0): 192, 252, 250, (232,401,0): 193, 253, 253, (232,402,0): 194, 252, 253, (232,403,0): 194, 254, 254, (232,404,0): 195, 253, 254, (232,405,0): 195, 255, 255, (232,406,0): 196, 254, 255, (232,407,0): 195, 255, 255, (232,408,0): 196, 254, 255, (232,409,0): 195, 255, 255, (232,410,0): 196, 254, 255, (232,411,0): 195, 255, 255, (232,412,0): 196, 254, 255, (232,413,0): 195, 255, 255, (232,414,0): 196, 254, 255, (232,415,0): 195, 255, 255, (232,416,0): 193, 253, 253, (232,417,0): 193, 253, 254, (232,418,0): 193, 253, 254, (232,419,0): 190, 249, 253, (232,420,0): 185, 242, 251, (232,421,0): 176, 233, 244, (232,422,0): 170, 223, 237, (232,423,0): 165, 218, 232, (232,424,0): 153, 205, 219, (232,425,0): 151, 203, 217, (232,426,0): 151, 200, 215, (232,427,0): 149, 198, 213, (232,428,0): 149, 198, 213, (232,429,0): 153, 201, 215, (232,430,0): 156, 204, 218, (232,431,0): 158, 206, 220, (232,432,0): 157, 204, 220, (232,433,0): 155, 202, 220, (232,434,0): 153, 199, 215, (232,435,0): 152, 198, 214, (232,436,0): 153, 196, 212, (232,437,0): 152, 191, 206, (232,438,0): 147, 185, 198, (232,439,0): 143, 179, 191, (232,440,0): 143, 175, 186, (232,441,0): 144, 174, 184, (232,442,0): 145, 172, 181, (232,443,0): 144, 169, 176, (232,444,0): 140, 163, 171, (232,445,0): 136, 156, 163, (232,446,0): 130, 150, 157, (232,447,0): 127, 148, 153, (232,448,0): 128, 149, 154, (232,449,0): 127, 148, 153, (232,450,0): 125, 148, 154, (232,451,0): 128, 151, 159, (232,452,0): 131, 155, 165, (232,453,0): 131, 157, 170, (232,454,0): 129, 157, 171, (232,455,0): 127, 154, 171, (232,456,0): 120, 147, 166, (232,457,0): 119, 144, 164, (232,458,0): 116, 141, 161, (232,459,0): 118, 140, 161, (232,460,0): 119, 140, 161, (232,461,0): 119, 137, 157, (232,462,0): 117, 134, 154, (232,463,0): 114, 129, 148, (232,464,0): 115, 128, 147, (232,465,0): 110, 123, 140, (232,466,0): 104, 117, 134, (232,467,0): 101, 112, 130, (232,468,0): 100, 111, 129, (232,469,0): 98, 110, 126, (232,470,0): 95, 107, 123, (232,471,0): 95, 104, 119, (232,472,0): 93, 102, 117, (232,473,0): 94, 101, 117, (232,474,0): 93, 100, 116, (232,475,0): 91, 99, 112, (232,476,0): 90, 98, 111, (232,477,0): 90, 96, 108, (232,478,0): 89, 95, 109, (232,479,0): 88, 94, 108, (232,480,0): 91, 99, 112, (232,481,0): 88, 97, 112, (232,482,0): 86, 95, 110, (232,483,0): 84, 96, 112, (232,484,0): 87, 99, 115, (232,485,0): 92, 105, 122, (232,486,0): 98, 111, 128, (232,487,0): 100, 115, 134, (232,488,0): 96, 113, 133, (232,489,0): 97, 115, 137, (232,490,0): 101, 119, 141, (232,491,0): 105, 125, 149, (232,492,0): 111, 131, 155, (232,493,0): 115, 137, 161, (232,494,0): 120, 142, 166, (232,495,0): 120, 144, 170, (232,496,0): 124, 150, 177, (232,497,0): 127, 154, 181, (232,498,0): 132, 159, 188, (232,499,0): 135, 162, 191, (232,500,0): 136, 163, 193, (232,501,0): 137, 164, 194, (232,502,0): 140, 166, 199, (232,503,0): 143, 169, 202, (232,504,0): 142, 169, 199, (232,505,0): 148, 175, 205, (232,506,0): 150, 180, 208, (232,507,0): 150, 180, 206, (232,508,0): 150, 180, 204, (232,509,0): 148, 179, 199, (232,510,0): 137, 168, 188, (232,511,0): 127, 156, 174, (232,512,0): 124, 152, 164, (232,513,0): 120, 147, 158, (232,514,0): 117, 139, 152, (232,515,0): 118, 137, 151, (232,516,0): 121, 139, 151, (232,517,0): 121, 137, 150, (232,518,0): 118, 130, 144, (232,519,0): 113, 125, 139, (232,520,0): 110, 120, 132, (232,521,0): 109, 117, 130, (232,522,0): 111, 119, 130, (232,523,0): 115, 123, 134, (232,524,0): 113, 121, 132, (232,525,0): 108, 118, 128, (232,526,0): 113, 122, 131, (232,527,0): 121, 131, 140, (232,528,0): 119, 132, 141, (232,529,0): 120, 134, 143, (232,530,0): 122, 136, 147, (232,531,0): 120, 137, 147, (232,532,0): 119, 135, 148, (232,533,0): 119, 137, 149, (232,534,0): 123, 141, 155, (232,535,0): 126, 145, 160, (232,536,0): 126, 147, 164, (232,537,0): 131, 152, 171, (232,538,0): 137, 159, 180, (232,539,0): 138, 163, 183, (232,540,0): 135, 160, 182, (232,541,0): 130, 157, 178, (232,542,0): 127, 153, 176, (232,543,0): 124, 152, 174, (232,544,0): 121, 147, 170, (232,545,0): 120, 146, 169, (232,546,0): 119, 145, 168, (232,547,0): 118, 144, 167, (232,548,0): 117, 143, 166, (232,549,0): 118, 144, 167, (232,550,0): 118, 144, 167, (232,551,0): 119, 145, 168, (232,552,0): 115, 141, 164, (232,553,0): 114, 140, 163, (232,554,0): 113, 139, 162, (232,555,0): 111, 137, 160, (232,556,0): 109, 135, 158, (232,557,0): 107, 133, 156, (232,558,0): 106, 132, 155, (232,559,0): 106, 131, 153, (232,560,0): 103, 124, 145, (232,561,0): 109, 127, 147, (232,562,0): 113, 131, 151, (232,563,0): 115, 134, 151, (232,564,0): 115, 132, 150, (232,565,0): 111, 128, 146, (232,566,0): 106, 121, 140, (232,567,0): 102, 117, 136, (232,568,0): 108, 119, 137, (232,569,0): 107, 118, 136, (232,570,0): 108, 116, 135, (232,571,0): 106, 115, 132, (232,572,0): 105, 112, 130, (232,573,0): 103, 110, 128, (232,574,0): 102, 109, 127, (232,575,0): 100, 109, 126, (232,576,0): 93, 105, 121, (232,577,0): 91, 104, 120, (232,578,0): 91, 104, 120, (232,579,0): 91, 103, 119, (232,580,0): 91, 103, 119, (232,581,0): 90, 102, 116, (232,582,0): 90, 102, 116, (232,583,0): 92, 102, 114, (232,584,0): 92, 102, 114, (232,585,0): 93, 101, 114, (232,586,0): 93, 101, 114, (232,587,0): 93, 101, 112, (232,588,0): 92, 100, 111, (232,589,0): 91, 97, 109, (232,590,0): 89, 95, 107, (232,591,0): 90, 94, 105, (232,592,0): 91, 89, 102, (232,593,0): 91, 88, 99, (232,594,0): 93, 87, 99, (232,595,0): 95, 87, 98, (232,596,0): 97, 87, 96, (232,597,0): 94, 84, 92, (232,598,0): 89, 78, 86, (232,599,0): 84, 73, 81, (233,0,0): 46, 30, 41, (233,1,0): 46, 30, 41, (233,2,0): 45, 29, 40, (233,3,0): 45, 29, 40, (233,4,0): 45, 29, 40, (233,5,0): 47, 31, 42, (233,6,0): 48, 32, 43, (233,7,0): 49, 33, 44, (233,8,0): 48, 32, 43, (233,9,0): 48, 32, 43, (233,10,0): 49, 33, 44, (233,11,0): 49, 33, 44, (233,12,0): 50, 34, 45, (233,13,0): 50, 34, 45, (233,14,0): 51, 35, 46, (233,15,0): 51, 35, 46, (233,16,0): 50, 34, 45, (233,17,0): 50, 34, 45, (233,18,0): 50, 34, 45, (233,19,0): 51, 35, 46, (233,20,0): 51, 35, 46, (233,21,0): 52, 36, 47, (233,22,0): 52, 36, 47, (233,23,0): 52, 36, 47, (233,24,0): 50, 34, 45, (233,25,0): 51, 35, 46, (233,26,0): 53, 37, 48, (233,27,0): 54, 38, 49, (233,28,0): 54, 38, 49, (233,29,0): 54, 38, 49, (233,30,0): 53, 37, 48, (233,31,0): 53, 37, 47, (233,32,0): 58, 38, 49, (233,33,0): 58, 38, 47, (233,34,0): 59, 39, 48, (233,35,0): 59, 39, 48, (233,36,0): 60, 40, 49, (233,37,0): 60, 40, 49, (233,38,0): 61, 41, 50, (233,39,0): 61, 41, 50, (233,40,0): 58, 38, 47, (233,41,0): 59, 39, 48, (233,42,0): 59, 39, 48, (233,43,0): 59, 39, 48, (233,44,0): 60, 40, 49, (233,45,0): 60, 40, 49, (233,46,0): 61, 41, 50, (233,47,0): 61, 41, 50, (233,48,0): 58, 41, 47, (233,49,0): 59, 42, 48, (233,50,0): 61, 42, 48, (233,51,0): 62, 43, 47, (233,52,0): 65, 44, 49, (233,53,0): 66, 45, 50, (233,54,0): 67, 45, 48, (233,55,0): 70, 45, 49, (233,56,0): 71, 44, 49, (233,57,0): 72, 46, 49, (233,58,0): 76, 47, 51, (233,59,0): 77, 48, 52, (233,60,0): 79, 49, 51, (233,61,0): 79, 49, 51, (233,62,0): 79, 47, 50, (233,63,0): 79, 47, 50, (233,64,0): 80, 48, 53, (233,65,0): 80, 48, 53, (233,66,0): 80, 48, 51, (233,67,0): 80, 48, 51, (233,68,0): 80, 48, 51, (233,69,0): 80, 48, 49, (233,70,0): 80, 48, 49, (233,71,0): 80, 48, 49, (233,72,0): 79, 48, 46, (233,73,0): 80, 49, 47, (233,74,0): 80, 49, 47, (233,75,0): 80, 49, 46, (233,76,0): 81, 50, 47, (233,77,0): 81, 50, 47, (233,78,0): 82, 51, 48, (233,79,0): 82, 51, 48, (233,80,0): 81, 47, 46, (233,81,0): 82, 48, 47, (233,82,0): 85, 51, 50, (233,83,0): 87, 53, 52, (233,84,0): 87, 53, 52, (233,85,0): 85, 51, 50, (233,86,0): 82, 48, 47, (233,87,0): 81, 47, 46, (233,88,0): 82, 48, 47, (233,89,0): 82, 48, 47, (233,90,0): 81, 47, 46, (233,91,0): 81, 47, 46, (233,92,0): 80, 46, 45, (233,93,0): 80, 46, 45, (233,94,0): 79, 45, 44, (233,95,0): 80, 44, 44, (233,96,0): 86, 46, 47, (233,97,0): 86, 46, 47, (233,98,0): 87, 45, 46, (233,99,0): 86, 46, 46, (233,100,0): 87, 45, 46, (233,101,0): 86, 46, 44, (233,102,0): 87, 46, 44, (233,103,0): 87, 48, 43, (233,104,0): 88, 47, 43, (233,105,0): 87, 48, 41, (233,106,0): 88, 47, 41, (233,107,0): 88, 50, 41, (233,108,0): 89, 49, 41, (233,109,0): 89, 51, 40, (233,110,0): 90, 50, 40, (233,111,0): 90, 50, 40, (233,112,0): 93, 49, 40, (233,113,0): 93, 49, 38, (233,114,0): 92, 48, 39, (233,115,0): 91, 47, 38, (233,116,0): 89, 46, 37, (233,117,0): 88, 45, 36, (233,118,0): 85, 45, 37, (233,119,0): 84, 44, 36, (233,120,0): 82, 44, 35, (233,121,0): 80, 43, 35, (233,122,0): 80, 43, 35, (233,123,0): 77, 42, 36, (233,124,0): 75, 40, 34, (233,125,0): 74, 39, 33, (233,126,0): 74, 39, 33, (233,127,0): 70, 40, 32, (233,128,0): 71, 44, 37, (233,129,0): 69, 44, 37, (233,130,0): 68, 43, 36, (233,131,0): 68, 43, 36, (233,132,0): 67, 42, 35, (233,133,0): 67, 42, 35, (233,134,0): 67, 42, 35, (233,135,0): 66, 41, 34, (233,136,0): 66, 41, 34, (233,137,0): 66, 41, 34, (233,138,0): 66, 41, 34, (233,139,0): 66, 41, 34, (233,140,0): 66, 41, 34, (233,141,0): 66, 41, 34, (233,142,0): 66, 41, 34, (233,143,0): 68, 41, 34, (233,144,0): 68, 39, 33, (233,145,0): 69, 40, 34, (233,146,0): 69, 40, 34, (233,147,0): 70, 41, 35, (233,148,0): 70, 41, 35, (233,149,0): 71, 42, 36, (233,150,0): 71, 42, 36, (233,151,0): 71, 42, 36, (233,152,0): 73, 44, 38, (233,153,0): 72, 43, 37, (233,154,0): 72, 43, 37, (233,155,0): 72, 43, 37, (233,156,0): 71, 42, 36, (233,157,0): 71, 42, 36, (233,158,0): 70, 41, 35, (233,159,0): 71, 41, 33, (233,160,0): 73, 40, 31, (233,161,0): 73, 40, 31, (233,162,0): 72, 39, 30, (233,163,0): 72, 39, 30, (233,164,0): 71, 38, 29, (233,165,0): 71, 38, 29, (233,166,0): 70, 37, 28, (233,167,0): 70, 37, 28, (233,168,0): 71, 38, 29, (233,169,0): 71, 38, 29, (233,170,0): 71, 38, 29, (233,171,0): 71, 38, 29, (233,172,0): 71, 38, 29, (233,173,0): 71, 38, 29, (233,174,0): 71, 38, 29, (233,175,0): 69, 39, 29, (233,176,0): 67, 37, 27, (233,177,0): 67, 39, 28, (233,178,0): 68, 40, 29, (233,179,0): 68, 40, 29, (233,180,0): 68, 40, 29, (233,181,0): 66, 38, 27, (233,182,0): 65, 37, 26, (233,183,0): 63, 35, 24, (233,184,0): 64, 36, 25, (233,185,0): 63, 35, 24, (233,186,0): 62, 34, 23, (233,187,0): 61, 33, 22, (233,188,0): 60, 32, 21, (233,189,0): 59, 31, 20, (233,190,0): 58, 30, 19, (233,191,0): 57, 30, 19, (233,192,0): 60, 33, 26, (233,193,0): 57, 32, 25, (233,194,0): 55, 30, 23, (233,195,0): 54, 29, 22, (233,196,0): 53, 28, 21, (233,197,0): 53, 28, 21, (233,198,0): 54, 29, 22, (233,199,0): 55, 30, 23, (233,200,0): 55, 30, 23, (233,201,0): 55, 30, 23, (233,202,0): 55, 30, 23, (233,203,0): 55, 30, 23, (233,204,0): 56, 31, 24, (233,205,0): 56, 31, 24, (233,206,0): 56, 31, 24, (233,207,0): 57, 32, 25, (233,208,0): 62, 33, 29, (233,209,0): 62, 33, 29, (233,210,0): 63, 34, 30, (233,211,0): 64, 35, 29, (233,212,0): 67, 37, 27, (233,213,0): 69, 39, 28, (233,214,0): 71, 42, 26, (233,215,0): 72, 43, 25, (233,216,0): 77, 46, 25, (233,217,0): 79, 49, 23, (233,218,0): 84, 53, 25, (233,219,0): 88, 57, 26, (233,220,0): 92, 62, 28, (233,221,0): 95, 65, 29, (233,222,0): 98, 65, 30, (233,223,0): 99, 66, 31, (233,224,0): 92, 62, 26, (233,225,0): 94, 64, 30, (233,226,0): 97, 66, 35, (233,227,0): 99, 68, 37, (233,228,0): 101, 70, 39, (233,229,0): 101, 70, 41, (233,230,0): 100, 69, 40, (233,231,0): 99, 68, 39, (233,232,0): 96, 65, 37, (233,233,0): 94, 63, 35, (233,234,0): 92, 60, 35, (233,235,0): 94, 62, 37, (233,236,0): 98, 66, 43, (233,237,0): 102, 70, 47, (233,238,0): 103, 71, 50, (233,239,0): 102, 70, 45, (233,240,0): 113, 83, 49, (233,241,0): 112, 84, 44, (233,242,0): 111, 87, 43, (233,243,0): 115, 93, 44, (233,244,0): 122, 102, 49, (233,245,0): 131, 115, 56, (233,246,0): 145, 125, 64, (233,247,0): 152, 131, 66, (233,248,0): 166, 143, 75, (233,249,0): 173, 146, 77, (233,250,0): 179, 150, 80, (233,251,0): 180, 152, 79, (233,252,0): 178, 152, 78, (233,253,0): 174, 151, 75, (233,254,0): 171, 152, 76, (233,255,0): 171, 153, 79, (233,256,0): 171, 154, 84, (233,257,0): 162, 147, 78, (233,258,0): 156, 141, 72, (233,259,0): 155, 140, 71, (233,260,0): 158, 145, 75, (233,261,0): 161, 148, 78, (233,262,0): 160, 147, 77, (233,263,0): 157, 144, 74, (233,264,0): 149, 139, 68, (233,265,0): 151, 141, 70, (233,266,0): 150, 142, 70, (233,267,0): 149, 141, 69, (233,268,0): 149, 141, 69, (233,269,0): 152, 144, 72, (233,270,0): 156, 149, 77, (233,271,0): 159, 155, 81, (233,272,0): 166, 165, 85, (233,273,0): 170, 169, 87, (233,274,0): 175, 168, 90, (233,275,0): 174, 160, 85, (233,276,0): 166, 148, 76, (233,277,0): 157, 134, 66, (233,278,0): 151, 126, 60, (233,279,0): 148, 123, 59, (233,280,0): 150, 126, 64, (233,281,0): 148, 126, 66, (233,282,0): 148, 128, 67, (233,283,0): 148, 130, 68, (233,284,0): 150, 130, 69, (233,285,0): 151, 131, 70, (233,286,0): 153, 131, 71, (233,287,0): 154, 132, 72, (233,288,0): 155, 130, 73, (233,289,0): 154, 129, 72, (233,290,0): 150, 128, 71, (233,291,0): 148, 126, 69, (233,292,0): 146, 123, 69, (233,293,0): 144, 121, 67, (233,294,0): 142, 120, 70, (233,295,0): 141, 119, 69, (233,296,0): 139, 119, 69, (233,297,0): 140, 119, 72, (233,298,0): 140, 119, 74, (233,299,0): 139, 118, 75, (233,300,0): 135, 116, 73, (233,301,0): 130, 111, 69, (233,302,0): 126, 107, 65, (233,303,0): 123, 104, 64, (233,304,0): 119, 100, 67, (233,305,0): 119, 100, 67, (233,306,0): 116, 100, 67, (233,307,0): 113, 97, 64, (233,308,0): 110, 94, 61, (233,309,0): 106, 89, 59, (233,310,0): 101, 86, 57, (233,311,0): 99, 83, 57, (233,312,0): 95, 81, 55, (233,313,0): 95, 80, 57, (233,314,0): 94, 79, 58, (233,315,0): 93, 78, 59, (233,316,0): 91, 78, 61, (233,317,0): 92, 79, 62, (233,318,0): 93, 80, 63, (233,319,0): 92, 81, 63, (233,320,0): 90, 83, 64, (233,321,0): 91, 84, 65, (233,322,0): 92, 85, 66, (233,323,0): 93, 85, 66, (233,324,0): 94, 83, 63, (233,325,0): 94, 81, 62, (233,326,0): 95, 80, 61, (233,327,0): 96, 77, 60, (233,328,0): 100, 78, 64, (233,329,0): 98, 75, 61, (233,330,0): 95, 69, 56, (233,331,0): 90, 62, 51, (233,332,0): 84, 54, 44, (233,333,0): 80, 47, 40, (233,334,0): 75, 42, 35, (233,335,0): 70, 40, 32, (233,336,0): 68, 41, 34, (233,337,0): 64, 41, 35, (233,338,0): 63, 40, 34, (233,339,0): 60, 40, 31, (233,340,0): 60, 40, 31, (233,341,0): 60, 42, 32, (233,342,0): 60, 43, 33, (233,343,0): 59, 45, 32, (233,344,0): 61, 47, 34, (233,345,0): 59, 47, 33, (233,346,0): 60, 48, 32, (233,347,0): 59, 50, 33, (233,348,0): 62, 55, 37, (233,349,0): 66, 61, 42, (233,350,0): 70, 65, 45, (233,351,0): 71, 69, 46, (233,352,0): 72, 72, 46, (233,353,0): 74, 77, 48, (233,354,0): 82, 86, 59, (233,355,0): 91, 100, 69, (233,356,0): 100, 114, 81, (233,357,0): 108, 125, 91, (233,358,0): 114, 134, 99, (233,359,0): 117, 139, 101, (233,360,0): 120, 145, 106, (233,361,0): 121, 148, 107, (233,362,0): 124, 149, 109, (233,363,0): 123, 148, 106, (233,364,0): 122, 145, 103, (233,365,0): 119, 142, 100, (233,366,0): 120, 141, 100, (233,367,0): 121, 142, 101, (233,368,0): 124, 145, 104, (233,369,0): 126, 147, 106, (233,370,0): 129, 150, 109, (233,371,0): 132, 153, 112, (233,372,0): 135, 156, 117, (233,373,0): 135, 157, 118, (233,374,0): 134, 159, 120, (233,375,0): 133, 159, 120, (233,376,0): 133, 159, 120, (233,377,0): 134, 162, 122, (233,378,0): 134, 164, 126, (233,379,0): 133, 165, 126, (233,380,0): 134, 166, 129, (233,381,0): 136, 170, 133, (233,382,0): 142, 176, 139, (233,383,0): 146, 182, 144, (233,384,0): 149, 187, 150, (233,385,0): 151, 191, 156, (233,386,0): 157, 198, 164, (233,387,0): 159, 204, 171, (233,388,0): 161, 210, 180, (233,389,0): 164, 217, 189, (233,390,0): 169, 225, 200, (233,391,0): 171, 230, 208, (233,392,0): 177, 239, 218, (233,393,0): 182, 245, 228, (233,394,0): 187, 251, 237, (233,395,0): 188, 254, 242, (233,396,0): 191, 254, 245, (233,397,0): 189, 255, 245, (233,398,0): 192, 255, 247, (233,399,0): 194, 255, 251, (233,400,0): 191, 253, 252, (233,401,0): 192, 254, 253, (233,402,0): 193, 253, 253, (233,403,0): 192, 254, 253, (233,404,0): 194, 254, 254, (233,405,0): 193, 255, 254, (233,406,0): 195, 255, 255, (233,407,0): 194, 255, 255, (233,408,0): 195, 255, 255, (233,409,0): 194, 255, 255, (233,410,0): 195, 255, 255, (233,411,0): 194, 255, 255, (233,412,0): 195, 255, 255, (233,413,0): 194, 255, 255, (233,414,0): 195, 255, 255, (233,415,0): 195, 255, 255, (233,416,0): 192, 252, 252, (233,417,0): 192, 252, 252, (233,418,0): 192, 252, 253, (233,419,0): 189, 248, 252, (233,420,0): 183, 240, 247, (233,421,0): 174, 231, 240, (233,422,0): 167, 220, 234, (233,423,0): 161, 214, 228, (233,424,0): 151, 203, 217, (233,425,0): 150, 202, 216, (233,426,0): 150, 199, 214, (233,427,0): 148, 197, 212, (233,428,0): 150, 198, 212, (233,429,0): 152, 200, 214, (233,430,0): 155, 203, 215, (233,431,0): 157, 205, 219, (233,432,0): 159, 206, 222, (233,433,0): 156, 203, 221, (233,434,0): 154, 200, 216, (233,435,0): 153, 199, 215, (233,436,0): 154, 195, 213, (233,437,0): 150, 192, 208, (233,438,0): 148, 185, 201, (233,439,0): 144, 180, 194, (233,440,0): 143, 177, 189, (233,441,0): 143, 175, 186, (233,442,0): 145, 173, 184, (233,443,0): 143, 170, 179, (233,444,0): 140, 164, 174, (233,445,0): 135, 158, 166, (233,446,0): 129, 152, 160, (233,447,0): 128, 148, 155, (233,448,0): 127, 148, 153, (233,449,0): 126, 147, 152, (233,450,0): 124, 147, 153, (233,451,0): 127, 150, 158, (233,452,0): 130, 154, 164, (233,453,0): 132, 156, 168, (233,454,0): 129, 155, 170, (233,455,0): 127, 153, 168, (233,456,0): 123, 149, 166, (233,457,0): 122, 144, 165, (233,458,0): 119, 141, 162, (233,459,0): 119, 140, 159, (233,460,0): 121, 139, 159, (233,461,0): 120, 137, 155, (233,462,0): 117, 132, 151, (233,463,0): 116, 129, 146, (233,464,0): 113, 124, 142, (233,465,0): 109, 120, 138, (233,466,0): 106, 114, 133, (233,467,0): 104, 113, 130, (233,468,0): 103, 112, 129, (233,469,0): 101, 110, 125, (233,470,0): 99, 106, 122, (233,471,0): 96, 103, 119, (233,472,0): 93, 100, 116, (233,473,0): 94, 100, 114, (233,474,0): 93, 99, 113, (233,475,0): 92, 98, 110, (233,476,0): 92, 96, 108, (233,477,0): 91, 95, 107, (233,478,0): 90, 94, 106, (233,479,0): 90, 94, 106, (233,480,0): 92, 98, 112, (233,481,0): 89, 97, 110, (233,482,0): 87, 94, 110, (233,483,0): 86, 95, 110, (233,484,0): 89, 98, 115, (233,485,0): 92, 104, 120, (233,486,0): 97, 108, 126, (233,487,0): 99, 112, 129, (233,488,0): 97, 112, 131, (233,489,0): 98, 115, 135, (233,490,0): 102, 118, 141, (233,491,0): 107, 125, 147, (233,492,0): 112, 130, 154, (233,493,0): 115, 135, 159, (233,494,0): 119, 139, 164, (233,495,0): 121, 143, 167, (233,496,0): 125, 151, 176, (233,497,0): 128, 156, 180, (233,498,0): 133, 160, 187, (233,499,0): 136, 163, 192, (233,500,0): 137, 164, 193, (233,501,0): 139, 166, 196, (233,502,0): 142, 169, 199, (233,503,0): 144, 171, 201, (233,504,0): 143, 170, 200, (233,505,0): 149, 176, 205, (233,506,0): 150, 180, 208, (233,507,0): 150, 180, 206, (233,508,0): 149, 179, 203, (233,509,0): 147, 178, 199, (233,510,0): 137, 168, 188, (233,511,0): 125, 156, 174, (233,512,0): 123, 151, 163, (233,513,0): 119, 146, 157, (233,514,0): 116, 140, 152, (233,515,0): 118, 137, 151, (233,516,0): 121, 139, 151, (233,517,0): 122, 136, 149, (233,518,0): 117, 129, 143, (233,519,0): 113, 122, 137, (233,520,0): 109, 117, 130, (233,521,0): 107, 115, 128, (233,522,0): 111, 117, 129, (233,523,0): 115, 121, 133, (233,524,0): 114, 120, 132, (233,525,0): 109, 117, 128, (233,526,0): 114, 121, 131, (233,527,0): 120, 129, 138, (233,528,0): 122, 132, 142, (233,529,0): 122, 135, 144, (233,530,0): 123, 135, 147, (233,531,0): 122, 136, 147, (233,532,0): 121, 135, 148, (233,533,0): 120, 136, 149, (233,534,0): 122, 139, 155, (233,535,0): 125, 144, 161, (233,536,0): 126, 147, 166, (233,537,0): 131, 153, 174, (233,538,0): 135, 160, 180, (233,539,0): 137, 164, 185, (233,540,0): 134, 160, 183, (233,541,0): 129, 157, 179, (233,542,0): 126, 154, 176, (233,543,0): 125, 153, 175, (233,544,0): 122, 148, 171, (233,545,0): 120, 146, 169, (233,546,0): 119, 145, 168, (233,547,0): 117, 143, 166, (233,548,0): 117, 143, 166, (233,549,0): 117, 143, 166, (233,550,0): 117, 143, 166, (233,551,0): 118, 144, 167, (233,552,0): 114, 140, 163, (233,553,0): 114, 140, 163, (233,554,0): 112, 138, 161, (233,555,0): 111, 137, 160, (233,556,0): 109, 135, 158, (233,557,0): 107, 133, 156, (233,558,0): 106, 132, 155, (233,559,0): 106, 131, 153, (233,560,0): 104, 125, 144, (233,561,0): 109, 128, 145, (233,562,0): 113, 132, 149, (233,563,0): 115, 134, 151, (233,564,0): 115, 132, 150, (233,565,0): 111, 128, 146, (233,566,0): 106, 121, 140, (233,567,0): 102, 117, 136, (233,568,0): 107, 120, 137, (233,569,0): 107, 118, 136, (233,570,0): 108, 116, 135, (233,571,0): 106, 114, 133, (233,572,0): 104, 113, 130, (233,573,0): 103, 110, 128, (233,574,0): 102, 109, 127, (233,575,0): 100, 109, 126, (233,576,0): 93, 104, 122, (233,577,0): 91, 104, 121, (233,578,0): 91, 104, 121, (233,579,0): 91, 104, 120, (233,580,0): 91, 103, 119, (233,581,0): 91, 103, 119, (233,582,0): 90, 102, 118, (233,583,0): 90, 102, 116, (233,584,0): 92, 101, 116, (233,585,0): 92, 102, 114, (233,586,0): 94, 102, 115, (233,587,0): 94, 102, 115, (233,588,0): 92, 100, 113, (233,589,0): 91, 99, 110, (233,590,0): 90, 96, 108, (233,591,0): 91, 95, 107, (233,592,0): 93, 91, 104, (233,593,0): 93, 89, 103, (233,594,0): 94, 88, 100, (233,595,0): 94, 88, 98, (233,596,0): 95, 87, 98, (233,597,0): 94, 84, 93, (233,598,0): 89, 78, 86, (233,599,0): 84, 73, 81, (234,0,0): 46, 30, 41, (234,1,0): 46, 30, 41, (234,2,0): 45, 29, 40, (234,3,0): 45, 29, 40, (234,4,0): 45, 29, 40, (234,5,0): 47, 31, 42, (234,6,0): 48, 32, 43, (234,7,0): 49, 33, 44, (234,8,0): 48, 32, 43, (234,9,0): 48, 32, 43, (234,10,0): 49, 33, 44, (234,11,0): 49, 33, 44, (234,12,0): 50, 34, 45, (234,13,0): 50, 34, 45, (234,14,0): 51, 35, 46, (234,15,0): 51, 35, 46, (234,16,0): 50, 34, 45, (234,17,0): 50, 34, 45, (234,18,0): 50, 34, 45, (234,19,0): 51, 35, 46, (234,20,0): 51, 35, 46, (234,21,0): 52, 36, 47, (234,22,0): 52, 36, 47, (234,23,0): 52, 36, 47, (234,24,0): 51, 35, 46, (234,25,0): 52, 36, 47, (234,26,0): 53, 37, 48, (234,27,0): 54, 38, 49, (234,28,0): 55, 39, 50, (234,29,0): 55, 39, 50, (234,30,0): 54, 38, 49, (234,31,0): 53, 37, 47, (234,32,0): 57, 37, 48, (234,33,0): 58, 38, 47, (234,34,0): 58, 38, 47, (234,35,0): 58, 38, 47, (234,36,0): 59, 39, 48, (234,37,0): 59, 39, 48, (234,38,0): 60, 40, 49, (234,39,0): 60, 40, 49, (234,40,0): 58, 38, 47, (234,41,0): 58, 38, 47, (234,42,0): 59, 39, 48, (234,43,0): 59, 39, 48, (234,44,0): 60, 40, 49, (234,45,0): 60, 40, 49, (234,46,0): 61, 41, 50, (234,47,0): 61, 41, 50, (234,48,0): 60, 41, 47, (234,49,0): 61, 42, 46, (234,50,0): 62, 43, 47, (234,51,0): 63, 44, 48, (234,52,0): 65, 44, 49, (234,53,0): 66, 46, 48, (234,54,0): 67, 45, 48, (234,55,0): 70, 45, 49, (234,56,0): 72, 46, 49, (234,57,0): 73, 47, 50, (234,58,0): 77, 48, 52, (234,59,0): 79, 49, 51, (234,60,0): 80, 48, 51, (234,61,0): 80, 48, 51, (234,62,0): 79, 47, 48, (234,63,0): 79, 47, 48, (234,64,0): 80, 48, 51, (234,65,0): 80, 48, 51, (234,66,0): 80, 48, 51, (234,67,0): 80, 48, 51, (234,68,0): 80, 48, 49, (234,69,0): 80, 48, 49, (234,70,0): 80, 48, 49, (234,71,0): 80, 49, 47, (234,72,0): 79, 48, 46, (234,73,0): 79, 48, 46, (234,74,0): 80, 49, 46, (234,75,0): 80, 49, 46, (234,76,0): 81, 50, 47, (234,77,0): 81, 50, 45, (234,78,0): 82, 51, 46, (234,79,0): 82, 51, 46, (234,80,0): 82, 48, 46, (234,81,0): 83, 49, 47, (234,82,0): 85, 51, 49, (234,83,0): 87, 53, 51, (234,84,0): 87, 53, 51, (234,85,0): 85, 51, 49, (234,86,0): 83, 49, 47, (234,87,0): 82, 48, 46, (234,88,0): 83, 49, 47, (234,89,0): 83, 49, 47, (234,90,0): 82, 48, 46, (234,91,0): 82, 48, 46, (234,92,0): 81, 47, 45, (234,93,0): 81, 47, 45, (234,94,0): 80, 46, 44, (234,95,0): 81, 46, 44, (234,96,0): 88, 48, 49, (234,97,0): 89, 47, 49, (234,98,0): 90, 46, 47, (234,99,0): 88, 46, 47, (234,100,0): 90, 46, 45, (234,101,0): 88, 47, 45, (234,102,0): 89, 45, 42, (234,103,0): 87, 46, 40, (234,104,0): 91, 48, 42, (234,105,0): 89, 49, 41, (234,106,0): 91, 48, 41, (234,107,0): 90, 50, 40, (234,108,0): 92, 50, 38, (234,109,0): 91, 51, 39, (234,110,0): 93, 51, 39, (234,111,0): 94, 52, 40, (234,112,0): 94, 50, 39, (234,113,0): 95, 49, 36, (234,114,0): 93, 49, 38, (234,115,0): 91, 47, 36, (234,116,0): 89, 47, 35, (234,117,0): 88, 46, 34, (234,118,0): 86, 46, 36, (234,119,0): 85, 45, 35, (234,120,0): 83, 45, 34, (234,121,0): 82, 45, 36, (234,122,0): 81, 44, 35, (234,123,0): 78, 44, 35, (234,124,0): 77, 43, 34, (234,125,0): 75, 42, 33, (234,126,0): 74, 41, 32, (234,127,0): 71, 41, 31, (234,128,0): 71, 44, 35, (234,129,0): 71, 44, 35, (234,130,0): 70, 43, 34, (234,131,0): 70, 43, 34, (234,132,0): 69, 42, 33, (234,133,0): 69, 42, 33, (234,134,0): 68, 41, 32, (234,135,0): 68, 41, 32, (234,136,0): 68, 41, 32, (234,137,0): 68, 41, 32, (234,138,0): 68, 41, 32, (234,139,0): 68, 41, 32, (234,140,0): 68, 41, 32, (234,141,0): 68, 41, 32, (234,142,0): 68, 41, 32, (234,143,0): 68, 41, 32, (234,144,0): 69, 40, 32, (234,145,0): 70, 40, 32, (234,146,0): 70, 40, 32, (234,147,0): 71, 41, 33, (234,148,0): 71, 41, 33, (234,149,0): 72, 42, 34, (234,150,0): 72, 42, 34, (234,151,0): 73, 43, 35, (234,152,0): 74, 44, 36, (234,153,0): 74, 44, 36, (234,154,0): 74, 44, 36, (234,155,0): 73, 43, 35, (234,156,0): 72, 42, 34, (234,157,0): 72, 42, 34, (234,158,0): 72, 42, 34, (234,159,0): 71, 41, 33, (234,160,0): 74, 41, 32, (234,161,0): 74, 42, 31, (234,162,0): 73, 41, 30, (234,163,0): 73, 41, 30, (234,164,0): 72, 40, 29, (234,165,0): 72, 40, 29, (234,166,0): 71, 39, 28, (234,167,0): 71, 39, 28, (234,168,0): 71, 39, 28, (234,169,0): 71, 39, 28, (234,170,0): 71, 39, 28, (234,171,0): 71, 39, 28, (234,172,0): 71, 39, 28, (234,173,0): 71, 39, 28, (234,174,0): 71, 39, 28, (234,175,0): 69, 39, 28, (234,176,0): 68, 38, 28, (234,177,0): 67, 39, 28, (234,178,0): 68, 40, 29, (234,179,0): 68, 40, 29, (234,180,0): 67, 39, 28, (234,181,0): 66, 38, 27, (234,182,0): 65, 37, 26, (234,183,0): 64, 36, 25, (234,184,0): 64, 36, 25, (234,185,0): 64, 36, 25, (234,186,0): 63, 35, 24, (234,187,0): 62, 34, 23, (234,188,0): 61, 33, 22, (234,189,0): 60, 32, 21, (234,190,0): 59, 31, 20, (234,191,0): 57, 30, 19, (234,192,0): 60, 33, 26, (234,193,0): 57, 32, 25, (234,194,0): 55, 30, 23, (234,195,0): 54, 29, 22, (234,196,0): 54, 29, 22, (234,197,0): 54, 29, 22, (234,198,0): 55, 30, 23, (234,199,0): 55, 30, 23, (234,200,0): 54, 29, 22, (234,201,0): 54, 29, 22, (234,202,0): 54, 29, 22, (234,203,0): 55, 30, 23, (234,204,0): 56, 31, 24, (234,205,0): 56, 31, 24, (234,206,0): 57, 32, 25, (234,207,0): 57, 32, 25, (234,208,0): 64, 35, 29, (234,209,0): 64, 35, 27, (234,210,0): 64, 34, 26, (234,211,0): 65, 35, 25, (234,212,0): 66, 36, 25, (234,213,0): 69, 40, 26, (234,214,0): 74, 42, 27, (234,215,0): 76, 45, 25, (234,216,0): 80, 48, 27, (234,217,0): 82, 50, 25, (234,218,0): 85, 54, 26, (234,219,0): 89, 58, 27, (234,220,0): 94, 61, 28, (234,221,0): 96, 63, 28, (234,222,0): 97, 64, 29, (234,223,0): 98, 65, 30, (234,224,0): 92, 61, 30, (234,225,0): 94, 63, 32, (234,226,0): 97, 66, 37, (234,227,0): 100, 69, 40, (234,228,0): 101, 70, 41, (234,229,0): 99, 68, 40, (234,230,0): 97, 66, 38, (234,231,0): 95, 64, 36, (234,232,0): 94, 62, 37, (234,233,0): 93, 61, 36, (234,234,0): 92, 60, 35, (234,235,0): 94, 62, 37, (234,236,0): 98, 66, 43, (234,237,0): 101, 69, 46, (234,238,0): 102, 70, 47, (234,239,0): 102, 71, 43, (234,240,0): 115, 85, 51, (234,241,0): 114, 86, 46, (234,242,0): 114, 90, 46, (234,243,0): 118, 96, 47, (234,244,0): 125, 106, 50, (234,245,0): 134, 118, 58, (234,246,0): 147, 127, 64, (234,247,0): 154, 133, 66, (234,248,0): 166, 142, 72, (234,249,0): 172, 145, 74, (234,250,0): 178, 150, 77, (234,251,0): 179, 151, 77, (234,252,0): 178, 150, 76, (234,253,0): 175, 149, 72, (234,254,0): 172, 150, 74, (234,255,0): 171, 152, 75, (234,256,0): 170, 154, 79, (234,257,0): 162, 148, 75, (234,258,0): 156, 142, 69, (234,259,0): 155, 141, 68, (234,260,0): 156, 144, 72, (234,261,0): 158, 146, 74, (234,262,0): 156, 144, 72, (234,263,0): 153, 141, 69, (234,264,0): 152, 142, 70, (234,265,0): 152, 142, 70, (234,266,0): 150, 142, 70, (234,267,0): 148, 140, 68, (234,268,0): 147, 138, 69, (234,269,0): 150, 141, 72, (234,270,0): 156, 149, 79, (234,271,0): 159, 155, 81, (234,272,0): 158, 161, 80, (234,273,0): 164, 168, 84, (234,274,0): 173, 170, 91, (234,275,0): 172, 163, 86, (234,276,0): 166, 148, 76, (234,277,0): 157, 134, 66, (234,278,0): 151, 126, 60, (234,279,0): 149, 124, 60, (234,280,0): 153, 129, 65, (234,281,0): 151, 130, 67, (234,282,0): 151, 131, 70, (234,283,0): 152, 132, 71, (234,284,0): 152, 132, 71, (234,285,0): 153, 133, 72, (234,286,0): 155, 133, 75, (234,287,0): 155, 133, 75, (234,288,0): 156, 131, 74, (234,289,0): 155, 130, 73, (234,290,0): 151, 129, 72, (234,291,0): 149, 127, 70, (234,292,0): 147, 124, 70, (234,293,0): 144, 121, 67, (234,294,0): 142, 120, 70, (234,295,0): 141, 119, 69, (234,296,0): 141, 121, 71, (234,297,0): 142, 121, 74, (234,298,0): 142, 121, 74, (234,299,0): 141, 120, 75, (234,300,0): 136, 117, 74, (234,301,0): 132, 113, 70, (234,302,0): 128, 109, 66, (234,303,0): 125, 106, 64, (234,304,0): 119, 101, 65, (234,305,0): 118, 100, 64, (234,306,0): 115, 99, 65, (234,307,0): 113, 97, 63, (234,308,0): 110, 94, 61, (234,309,0): 106, 89, 59, (234,310,0): 102, 87, 58, (234,311,0): 100, 84, 58, (234,312,0): 95, 81, 55, (234,313,0): 94, 79, 56, (234,314,0): 93, 78, 57, (234,315,0): 93, 78, 59, (234,316,0): 91, 78, 61, (234,317,0): 91, 78, 61, (234,318,0): 92, 79, 63, (234,319,0): 92, 80, 64, (234,320,0): 91, 82, 65, (234,321,0): 92, 83, 66, (234,322,0): 93, 85, 66, (234,323,0): 95, 84, 66, (234,324,0): 95, 84, 64, (234,325,0): 95, 82, 63, (234,326,0): 95, 80, 61, (234,327,0): 96, 77, 60, (234,328,0): 98, 77, 60, (234,329,0): 96, 73, 59, (234,330,0): 94, 68, 55, (234,331,0): 89, 61, 50, (234,332,0): 83, 53, 45, (234,333,0): 77, 46, 41, (234,334,0): 72, 41, 36, (234,335,0): 69, 40, 34, (234,336,0): 64, 41, 33, (234,337,0): 60, 42, 32, (234,338,0): 59, 41, 31, (234,339,0): 57, 41, 28, (234,340,0): 57, 41, 28, (234,341,0): 56, 42, 29, (234,342,0): 57, 43, 30, (234,343,0): 57, 45, 31, (234,344,0): 58, 49, 34, (234,345,0): 56, 49, 31, (234,346,0): 56, 49, 31, (234,347,0): 57, 52, 33, (234,348,0): 60, 55, 35, (234,349,0): 63, 61, 40, (234,350,0): 67, 65, 44, (234,351,0): 70, 68, 47, (234,352,0): 77, 72, 50, (234,353,0): 79, 77, 52, (234,354,0): 86, 86, 62, (234,355,0): 94, 98, 71, (234,356,0): 101, 112, 82, (234,357,0): 110, 125, 92, (234,358,0): 118, 135, 101, (234,359,0): 120, 142, 106, (234,360,0): 117, 141, 105, (234,361,0): 119, 145, 106, (234,362,0): 122, 148, 109, (234,363,0): 122, 147, 107, (234,364,0): 121, 143, 104, (234,365,0): 119, 141, 102, (234,366,0): 121, 142, 103, (234,367,0): 122, 143, 104, (234,368,0): 123, 141, 103, (234,369,0): 124, 142, 104, (234,370,0): 127, 145, 107, (234,371,0): 129, 150, 111, (234,372,0): 132, 152, 115, (234,373,0): 133, 155, 117, (234,374,0): 134, 156, 118, (234,375,0): 133, 158, 119, (234,376,0): 134, 160, 123, (234,377,0): 135, 163, 125, (234,378,0): 137, 164, 129, (234,379,0): 136, 166, 130, (234,380,0): 137, 167, 131, (234,381,0): 139, 171, 134, (234,382,0): 146, 177, 143, (234,383,0): 149, 183, 148, (234,384,0): 150, 185, 152, (234,385,0): 152, 192, 157, (234,386,0): 158, 199, 165, (234,387,0): 162, 205, 175, (234,388,0): 164, 210, 182, (234,389,0): 167, 217, 192, (234,390,0): 171, 225, 202, (234,391,0): 172, 229, 210, (234,392,0): 181, 239, 224, (234,393,0): 183, 245, 232, (234,394,0): 188, 250, 239, (234,395,0): 191, 254, 245, (234,396,0): 192, 253, 245, (234,397,0): 191, 254, 246, (234,398,0): 194, 255, 250, (234,399,0): 194, 255, 251, (234,400,0): 191, 253, 252, (234,401,0): 189, 253, 253, (234,402,0): 191, 252, 253, (234,403,0): 190, 254, 254, (234,404,0): 193, 254, 255, (234,405,0): 191, 255, 255, (234,406,0): 193, 254, 255, (234,407,0): 192, 255, 255, (234,408,0): 194, 255, 255, (234,409,0): 192, 255, 255, (234,410,0): 194, 255, 255, (234,411,0): 192, 255, 255, (234,412,0): 194, 255, 255, (234,413,0): 192, 255, 255, (234,414,0): 194, 255, 255, (234,415,0): 194, 255, 255, (234,416,0): 191, 253, 252, (234,417,0): 192, 254, 253, (234,418,0): 191, 252, 253, (234,419,0): 188, 249, 252, (234,420,0): 181, 240, 246, (234,421,0): 172, 229, 238, (234,422,0): 163, 216, 230, (234,423,0): 157, 210, 224, (234,424,0): 150, 201, 218, (234,425,0): 149, 200, 217, (234,426,0): 150, 199, 214, (234,427,0): 150, 197, 213, (234,428,0): 152, 198, 213, (234,429,0): 154, 200, 215, (234,430,0): 156, 202, 215, (234,431,0): 158, 204, 219, (234,432,0): 160, 207, 223, (234,433,0): 157, 204, 222, (234,434,0): 155, 200, 219, (234,435,0): 153, 199, 215, (234,436,0): 154, 195, 213, (234,437,0): 150, 192, 208, (234,438,0): 148, 185, 201, (234,439,0): 144, 180, 194, (234,440,0): 144, 177, 192, (234,441,0): 145, 177, 190, (234,442,0): 145, 175, 186, (234,443,0): 143, 171, 182, (234,444,0): 139, 166, 177, (234,445,0): 135, 159, 169, (234,446,0): 129, 153, 163, (234,447,0): 127, 150, 158, (234,448,0): 126, 146, 153, (234,449,0): 125, 146, 151, (234,450,0): 124, 147, 153, (234,451,0): 127, 150, 158, (234,452,0): 130, 154, 164, (234,453,0): 132, 156, 168, (234,454,0): 130, 153, 169, (234,455,0): 127, 150, 166, (234,456,0): 126, 149, 167, (234,457,0): 122, 145, 163, (234,458,0): 120, 141, 160, (234,459,0): 120, 139, 156, (234,460,0): 121, 136, 155, (234,461,0): 122, 135, 152, (234,462,0): 118, 131, 148, (234,463,0): 116, 128, 144, (234,464,0): 112, 121, 138, (234,465,0): 109, 118, 135, (234,466,0): 107, 114, 132, (234,467,0): 105, 112, 128, (234,468,0): 104, 111, 127, (234,469,0): 102, 109, 125, (234,470,0): 98, 104, 120, (234,471,0): 94, 100, 114, (234,472,0): 92, 98, 112, (234,473,0): 94, 98, 110, (234,474,0): 93, 97, 109, (234,475,0): 92, 96, 108, (234,476,0): 92, 94, 107, (234,477,0): 91, 93, 105, (234,478,0): 91, 93, 105, (234,479,0): 90, 92, 104, (234,480,0): 91, 97, 109, (234,481,0): 90, 96, 108, (234,482,0): 88, 94, 108, (234,483,0): 86, 94, 107, (234,484,0): 88, 95, 111, (234,485,0): 91, 100, 115, (234,486,0): 94, 106, 122, (234,487,0): 96, 109, 126, (234,488,0): 99, 112, 131, (234,489,0): 99, 114, 133, (234,490,0): 102, 119, 139, (234,491,0): 106, 124, 144, (234,492,0): 111, 129, 151, (234,493,0): 116, 134, 156, (234,494,0): 120, 138, 162, (234,495,0): 120, 140, 164, (234,496,0): 127, 151, 175, (234,497,0): 130, 156, 179, (234,498,0): 135, 161, 186, (234,499,0): 138, 164, 189, (234,500,0): 139, 165, 192, (234,501,0): 140, 165, 195, (234,502,0): 142, 169, 198, (234,503,0): 145, 172, 201, (234,504,0): 143, 173, 201, (234,505,0): 149, 179, 207, (234,506,0): 151, 181, 209, (234,507,0): 150, 180, 206, (234,508,0): 148, 180, 203, (234,509,0): 146, 178, 199, (234,510,0): 136, 169, 188, (234,511,0): 125, 156, 174, (234,512,0): 122, 150, 162, (234,513,0): 118, 145, 156, (234,514,0): 116, 140, 152, (234,515,0): 117, 139, 152, (234,516,0): 121, 139, 151, (234,517,0): 122, 136, 149, (234,518,0): 115, 127, 141, (234,519,0): 111, 120, 135, (234,520,0): 105, 113, 126, (234,521,0): 105, 111, 125, (234,522,0): 110, 114, 126, (234,523,0): 116, 120, 132, (234,524,0): 116, 120, 132, (234,525,0): 110, 116, 128, (234,526,0): 114, 118, 129, (234,527,0): 118, 125, 135, (234,528,0): 123, 133, 143, (234,529,0): 122, 135, 144, (234,530,0): 124, 136, 148, (234,531,0): 122, 136, 147, (234,532,0): 120, 134, 147, (234,533,0): 119, 135, 148, (234,534,0): 121, 138, 154, (234,535,0): 123, 142, 159, (234,536,0): 127, 148, 167, (234,537,0): 131, 153, 174, (234,538,0): 135, 160, 182, (234,539,0): 136, 162, 185, (234,540,0): 134, 160, 183, (234,541,0): 129, 157, 181, (234,542,0): 127, 155, 179, (234,543,0): 126, 154, 178, (234,544,0): 122, 148, 171, (234,545,0): 121, 147, 170, (234,546,0): 119, 145, 168, (234,547,0): 117, 143, 166, (234,548,0): 116, 142, 165, (234,549,0): 115, 141, 164, (234,550,0): 115, 141, 164, (234,551,0): 116, 142, 165, (234,552,0): 113, 139, 162, (234,553,0): 113, 139, 162, (234,554,0): 112, 138, 161, (234,555,0): 110, 136, 159, (234,556,0): 108, 134, 157, (234,557,0): 107, 133, 156, (234,558,0): 106, 132, 155, (234,559,0): 106, 131, 153, (234,560,0): 107, 125, 145, (234,561,0): 110, 127, 143, (234,562,0): 114, 131, 147, (234,563,0): 116, 133, 149, (234,564,0): 116, 132, 148, (234,565,0): 112, 128, 144, (234,566,0): 107, 123, 139, (234,567,0): 103, 119, 135, (234,568,0): 108, 121, 138, (234,569,0): 107, 120, 137, (234,570,0): 106, 117, 135, (234,571,0): 104, 115, 133, (234,572,0): 102, 113, 131, (234,573,0): 102, 110, 129, (234,574,0): 100, 108, 127, (234,575,0): 99, 107, 126, (234,576,0): 93, 104, 124, (234,577,0): 92, 105, 124, (234,578,0): 92, 105, 124, (234,579,0): 91, 104, 121, (234,580,0): 91, 102, 120, (234,581,0): 91, 102, 120, (234,582,0): 91, 102, 120, (234,583,0): 90, 102, 118, (234,584,0): 93, 102, 119, (234,585,0): 93, 102, 117, (234,586,0): 95, 102, 118, (234,587,0): 94, 101, 117, (234,588,0): 93, 100, 116, (234,589,0): 91, 99, 112, (234,590,0): 91, 97, 111, (234,591,0): 91, 95, 107, (234,592,0): 94, 94, 106, (234,593,0): 93, 91, 104, (234,594,0): 93, 90, 101, (234,595,0): 94, 88, 98, (234,596,0): 95, 87, 98, (234,597,0): 92, 85, 93, (234,598,0): 88, 78, 86, (234,599,0): 83, 73, 81, (235,0,0): 46, 30, 41, (235,1,0): 46, 30, 41, (235,2,0): 45, 29, 40, (235,3,0): 45, 29, 40, (235,4,0): 45, 29, 40, (235,5,0): 47, 31, 42, (235,6,0): 48, 32, 43, (235,7,0): 49, 33, 44, (235,8,0): 48, 32, 43, (235,9,0): 48, 32, 43, (235,10,0): 49, 33, 44, (235,11,0): 49, 33, 44, (235,12,0): 50, 34, 45, (235,13,0): 50, 34, 45, (235,14,0): 51, 35, 46, (235,15,0): 51, 35, 46, (235,16,0): 50, 34, 45, (235,17,0): 50, 34, 45, (235,18,0): 50, 34, 45, (235,19,0): 51, 35, 46, (235,20,0): 51, 35, 46, (235,21,0): 52, 36, 47, (235,22,0): 52, 36, 47, (235,23,0): 52, 36, 47, (235,24,0): 51, 35, 46, (235,25,0): 52, 36, 47, (235,26,0): 53, 37, 48, (235,27,0): 55, 39, 50, (235,28,0): 55, 39, 50, (235,29,0): 55, 39, 50, (235,30,0): 54, 38, 49, (235,31,0): 55, 38, 48, (235,32,0): 57, 37, 46, (235,33,0): 57, 37, 46, (235,34,0): 58, 38, 47, (235,35,0): 58, 38, 47, (235,36,0): 59, 39, 48, (235,37,0): 59, 39, 48, (235,38,0): 60, 40, 49, (235,39,0): 60, 40, 49, (235,40,0): 58, 38, 47, (235,41,0): 58, 38, 47, (235,42,0): 59, 39, 48, (235,43,0): 59, 39, 48, (235,44,0): 60, 40, 49, (235,45,0): 60, 40, 49, (235,46,0): 61, 41, 50, (235,47,0): 61, 42, 48, (235,48,0): 61, 42, 46, (235,49,0): 62, 43, 47, (235,50,0): 62, 43, 47, (235,51,0): 63, 44, 48, (235,52,0): 65, 45, 47, (235,53,0): 67, 45, 48, (235,54,0): 70, 45, 49, (235,55,0): 71, 46, 49, (235,56,0): 73, 47, 50, (235,57,0): 76, 47, 51, (235,58,0): 79, 49, 51, (235,59,0): 79, 49, 51, (235,60,0): 81, 49, 52, (235,61,0): 80, 48, 51, (235,62,0): 79, 47, 48, (235,63,0): 78, 46, 47, (235,64,0): 80, 48, 51, (235,65,0): 80, 48, 51, (235,66,0): 80, 48, 51, (235,67,0): 80, 48, 51, (235,68,0): 80, 48, 49, (235,69,0): 80, 48, 49, (235,70,0): 80, 49, 47, (235,71,0): 80, 49, 47, (235,72,0): 79, 48, 46, (235,73,0): 79, 48, 45, (235,74,0): 80, 49, 46, (235,75,0): 80, 49, 46, (235,76,0): 81, 50, 45, (235,77,0): 81, 50, 45, (235,78,0): 82, 51, 46, (235,79,0): 82, 51, 46, (235,80,0): 84, 50, 48, (235,81,0): 85, 51, 49, (235,82,0): 86, 52, 50, (235,83,0): 87, 53, 51, (235,84,0): 87, 53, 51, (235,85,0): 86, 52, 50, (235,86,0): 85, 51, 49, (235,87,0): 84, 50, 48, (235,88,0): 84, 50, 48, (235,89,0): 84, 50, 48, (235,90,0): 83, 49, 47, (235,91,0): 83, 49, 47, (235,92,0): 82, 48, 46, (235,93,0): 82, 48, 46, (235,94,0): 81, 47, 45, (235,95,0): 82, 47, 45, (235,96,0): 90, 48, 50, (235,97,0): 92, 47, 50, (235,98,0): 92, 48, 49, (235,99,0): 91, 47, 48, (235,100,0): 91, 47, 46, (235,101,0): 90, 46, 43, (235,102,0): 90, 47, 41, (235,103,0): 90, 47, 41, (235,104,0): 92, 49, 42, (235,105,0): 93, 50, 41, (235,106,0): 93, 50, 41, (235,107,0): 93, 51, 39, (235,108,0): 94, 52, 38, (235,109,0): 94, 52, 38, (235,110,0): 95, 53, 39, (235,111,0): 96, 52, 39, (235,112,0): 95, 51, 38, (235,113,0): 96, 50, 37, (235,114,0): 94, 50, 37, (235,115,0): 92, 48, 35, (235,116,0): 90, 48, 36, (235,117,0): 87, 47, 35, (235,118,0): 87, 47, 37, (235,119,0): 85, 47, 36, (235,120,0): 83, 47, 35, (235,121,0): 81, 47, 35, (235,122,0): 80, 46, 36, (235,123,0): 78, 46, 35, (235,124,0): 77, 44, 35, (235,125,0): 74, 44, 34, (235,126,0): 73, 43, 33, (235,127,0): 72, 44, 33, (235,128,0): 72, 43, 35, (235,129,0): 71, 44, 35, (235,130,0): 70, 43, 34, (235,131,0): 70, 43, 34, (235,132,0): 69, 42, 33, (235,133,0): 69, 42, 33, (235,134,0): 68, 41, 32, (235,135,0): 68, 41, 32, (235,136,0): 69, 42, 33, (235,137,0): 69, 42, 33, (235,138,0): 69, 42, 33, (235,139,0): 69, 42, 33, (235,140,0): 69, 42, 33, (235,141,0): 69, 42, 33, (235,142,0): 69, 42, 33, (235,143,0): 70, 41, 33, (235,144,0): 70, 40, 32, (235,145,0): 71, 41, 33, (235,146,0): 71, 41, 33, (235,147,0): 71, 41, 33, (235,148,0): 72, 42, 34, (235,149,0): 73, 43, 35, (235,150,0): 73, 43, 35, (235,151,0): 73, 43, 35, (235,152,0): 75, 45, 37, (235,153,0): 74, 44, 36, (235,154,0): 74, 44, 36, (235,155,0): 73, 43, 35, (235,156,0): 73, 43, 35, (235,157,0): 72, 42, 34, (235,158,0): 72, 42, 34, (235,159,0): 72, 42, 32, (235,160,0): 75, 43, 32, (235,161,0): 75, 43, 32, (235,162,0): 74, 42, 31, (235,163,0): 74, 42, 31, (235,164,0): 73, 41, 30, (235,165,0): 73, 41, 30, (235,166,0): 72, 40, 29, (235,167,0): 72, 40, 29, (235,168,0): 71, 39, 28, (235,169,0): 71, 39, 28, (235,170,0): 71, 39, 28, (235,171,0): 71, 39, 28, (235,172,0): 71, 39, 28, (235,173,0): 71, 39, 28, (235,174,0): 71, 39, 28, (235,175,0): 71, 39, 28, (235,176,0): 68, 38, 28, (235,177,0): 68, 40, 29, (235,178,0): 67, 39, 28, (235,179,0): 67, 39, 28, (235,180,0): 67, 39, 28, (235,181,0): 66, 38, 27, (235,182,0): 65, 37, 26, (235,183,0): 65, 37, 26, (235,184,0): 64, 36, 25, (235,185,0): 64, 36, 25, (235,186,0): 63, 35, 24, (235,187,0): 62, 34, 23, (235,188,0): 61, 33, 22, (235,189,0): 60, 32, 21, (235,190,0): 59, 31, 20, (235,191,0): 58, 31, 20, (235,192,0): 60, 33, 26, (235,193,0): 57, 32, 25, (235,194,0): 56, 31, 24, (235,195,0): 55, 30, 23, (235,196,0): 54, 29, 22, (235,197,0): 54, 29, 22, (235,198,0): 55, 30, 23, (235,199,0): 56, 31, 24, (235,200,0): 53, 28, 21, (235,201,0): 54, 29, 22, (235,202,0): 54, 29, 22, (235,203,0): 55, 30, 23, (235,204,0): 56, 31, 24, (235,205,0): 57, 32, 25, (235,206,0): 58, 33, 26, (235,207,0): 60, 33, 26, (235,208,0): 67, 38, 30, (235,209,0): 66, 38, 27, (235,210,0): 66, 36, 26, (235,211,0): 66, 36, 25, (235,212,0): 68, 39, 25, (235,213,0): 71, 42, 26, (235,214,0): 76, 45, 27, (235,215,0): 78, 47, 27, (235,216,0): 82, 50, 29, (235,217,0): 84, 52, 27, (235,218,0): 87, 56, 28, (235,219,0): 90, 59, 30, (235,220,0): 94, 61, 30, (235,221,0): 96, 63, 30, (235,222,0): 97, 64, 31, (235,223,0): 97, 64, 31, (235,224,0): 91, 60, 31, (235,225,0): 93, 62, 33, (235,226,0): 96, 65, 37, (235,227,0): 99, 68, 40, (235,228,0): 99, 68, 40, (235,229,0): 97, 66, 38, (235,230,0): 94, 63, 35, (235,231,0): 92, 61, 33, (235,232,0): 91, 60, 32, (235,233,0): 91, 60, 32, (235,234,0): 92, 61, 33, (235,235,0): 94, 63, 35, (235,236,0): 97, 65, 40, (235,237,0): 100, 68, 43, (235,238,0): 102, 70, 45, (235,239,0): 103, 72, 43, (235,240,0): 113, 83, 47, (235,241,0): 113, 85, 45, (235,242,0): 114, 90, 46, (235,243,0): 118, 98, 48, (235,244,0): 127, 108, 52, (235,245,0): 138, 119, 60, (235,246,0): 149, 129, 66, (235,247,0): 156, 135, 68, (235,248,0): 162, 138, 68, (235,249,0): 169, 141, 68, (235,250,0): 175, 145, 72, (235,251,0): 177, 148, 72, (235,252,0): 176, 147, 71, (235,253,0): 173, 147, 70, (235,254,0): 171, 148, 70, (235,255,0): 170, 151, 72, (235,256,0): 166, 150, 73, (235,257,0): 160, 147, 69, (235,258,0): 155, 142, 64, (235,259,0): 154, 140, 65, (235,260,0): 155, 143, 67, (235,261,0): 156, 144, 70, (235,262,0): 155, 143, 69, (235,263,0): 153, 141, 69, (235,264,0): 156, 146, 74, (235,265,0): 155, 145, 73, (235,266,0): 151, 143, 71, (235,267,0): 148, 140, 68, (235,268,0): 147, 138, 69, (235,269,0): 150, 141, 72, (235,270,0): 156, 149, 79, (235,271,0): 159, 157, 83, (235,272,0): 156, 161, 79, (235,273,0): 164, 169, 85, (235,274,0): 175, 174, 92, (235,275,0): 176, 169, 89, (235,276,0): 169, 153, 78, (235,277,0): 157, 137, 66, (235,278,0): 151, 128, 60, (235,279,0): 150, 125, 58, (235,280,0): 151, 128, 61, (235,281,0): 150, 129, 62, (235,282,0): 151, 130, 67, (235,283,0): 152, 132, 69, (235,284,0): 154, 134, 71, (235,285,0): 156, 136, 73, (235,286,0): 158, 136, 76, (235,287,0): 159, 137, 77, (235,288,0): 159, 134, 77, (235,289,0): 158, 133, 76, (235,290,0): 154, 132, 75, (235,291,0): 151, 129, 72, (235,292,0): 149, 126, 72, (235,293,0): 146, 123, 69, (235,294,0): 143, 122, 69, (235,295,0): 142, 120, 70, (235,296,0): 143, 123, 73, (235,297,0): 143, 123, 73, (235,298,0): 142, 121, 74, (235,299,0): 141, 120, 73, (235,300,0): 136, 118, 72, (235,301,0): 132, 113, 70, (235,302,0): 129, 110, 67, (235,303,0): 127, 108, 66, (235,304,0): 120, 102, 64, (235,305,0): 119, 101, 65, (235,306,0): 116, 100, 64, (235,307,0): 114, 98, 62, (235,308,0): 112, 96, 62, (235,309,0): 108, 92, 59, (235,310,0): 104, 89, 58, (235,311,0): 102, 87, 58, (235,312,0): 95, 81, 54, (235,313,0): 95, 80, 57, (235,314,0): 94, 79, 58, (235,315,0): 93, 78, 59, (235,316,0): 91, 78, 61, (235,317,0): 92, 79, 62, (235,318,0): 93, 80, 64, (235,319,0): 93, 80, 64, (235,320,0): 93, 81, 65, (235,321,0): 94, 82, 66, (235,322,0): 95, 84, 66, (235,323,0): 96, 83, 66, (235,324,0): 95, 82, 63, (235,325,0): 96, 81, 62, (235,326,0): 96, 79, 61, (235,327,0): 96, 77, 60, (235,328,0): 94, 73, 56, (235,329,0): 91, 69, 55, (235,330,0): 88, 64, 52, (235,331,0): 85, 58, 49, (235,332,0): 80, 51, 45, (235,333,0): 75, 46, 42, (235,334,0): 71, 40, 37, (235,335,0): 67, 39, 35, (235,336,0): 62, 39, 31, (235,337,0): 59, 41, 31, (235,338,0): 58, 40, 28, (235,339,0): 57, 41, 28, (235,340,0): 57, 41, 28, (235,341,0): 55, 41, 28, (235,342,0): 55, 43, 29, (235,343,0): 55, 43, 29, (235,344,0): 57, 48, 31, (235,345,0): 56, 49, 31, (235,346,0): 56, 49, 31, (235,347,0): 56, 51, 32, (235,348,0): 57, 54, 35, (235,349,0): 61, 58, 39, (235,350,0): 64, 63, 43, (235,351,0): 70, 65, 45, (235,352,0): 80, 72, 53, (235,353,0): 86, 75, 55, (235,354,0): 91, 85, 63, (235,355,0): 99, 97, 74, (235,356,0): 106, 110, 85, (235,357,0): 114, 123, 94, (235,358,0): 118, 133, 102, (235,359,0): 119, 139, 104, (235,360,0): 115, 137, 101, (235,361,0): 116, 140, 104, (235,362,0): 119, 143, 107, (235,363,0): 119, 144, 105, (235,364,0): 119, 141, 103, (235,365,0): 119, 140, 101, (235,366,0): 119, 140, 101, (235,367,0): 123, 141, 103, (235,368,0): 122, 138, 102, (235,369,0): 124, 140, 104, (235,370,0): 126, 142, 106, (235,371,0): 128, 145, 109, (235,372,0): 132, 149, 115, (235,373,0): 132, 152, 117, (235,374,0): 134, 154, 119, (235,375,0): 134, 156, 120, (235,376,0): 135, 159, 125, (235,377,0): 136, 162, 127, (235,378,0): 138, 163, 131, (235,379,0): 138, 165, 132, (235,380,0): 139, 166, 133, (235,381,0): 141, 171, 137, (235,382,0): 148, 177, 146, (235,383,0): 150, 184, 151, (235,384,0): 149, 184, 151, (235,385,0): 152, 192, 158, (235,386,0): 159, 198, 167, (235,387,0): 163, 206, 176, (235,388,0): 165, 211, 183, (235,389,0): 168, 217, 195, (235,390,0): 171, 224, 204, (235,391,0): 174, 228, 212, (235,392,0): 182, 240, 228, (235,393,0): 184, 244, 234, (235,394,0): 189, 249, 241, (235,395,0): 191, 250, 244, (235,396,0): 191, 250, 244, (235,397,0): 192, 251, 247, (235,398,0): 194, 253, 249, (235,399,0): 195, 255, 253, (235,400,0): 188, 252, 251, (235,401,0): 188, 254, 253, (235,402,0): 189, 253, 253, (235,403,0): 189, 255, 254, (235,404,0): 190, 254, 254, (235,405,0): 190, 255, 255, (235,406,0): 191, 255, 255, (235,407,0): 190, 255, 255, (235,408,0): 191, 255, 255, (235,409,0): 190, 255, 255, (235,410,0): 191, 255, 255, (235,411,0): 190, 255, 255, (235,412,0): 191, 255, 255, (235,413,0): 190, 255, 255, (235,414,0): 191, 255, 255, (235,415,0): 191, 255, 255, (235,416,0): 191, 255, 255, (235,417,0): 193, 254, 255, (235,418,0): 192, 253, 255, (235,419,0): 188, 249, 254, (235,420,0): 180, 239, 247, (235,421,0): 169, 227, 238, (235,422,0): 160, 216, 229, (235,423,0): 155, 208, 224, (235,424,0): 152, 203, 222, (235,425,0): 151, 202, 219, (235,426,0): 153, 200, 218, (235,427,0): 153, 200, 216, (235,428,0): 154, 200, 216, (235,429,0): 156, 202, 217, (235,430,0): 158, 204, 219, (235,431,0): 159, 205, 220, (235,432,0): 161, 207, 223, (235,433,0): 156, 203, 221, (235,434,0): 153, 198, 217, (235,435,0): 151, 196, 215, (235,436,0): 152, 193, 211, (235,437,0): 149, 190, 208, (235,438,0): 147, 184, 202, (235,439,0): 143, 180, 196, (235,440,0): 143, 179, 195, (235,441,0): 144, 177, 192, (235,442,0): 144, 176, 189, (235,443,0): 143, 173, 184, (235,444,0): 139, 167, 179, (235,445,0): 134, 161, 172, (235,446,0): 128, 154, 167, (235,447,0): 127, 151, 161, (235,448,0): 125, 148, 154, (235,449,0): 126, 146, 153, (235,450,0): 126, 149, 157, (235,451,0): 129, 152, 160, (235,452,0): 133, 155, 168, (235,453,0): 133, 157, 169, (235,454,0): 131, 154, 170, (235,455,0): 128, 151, 167, (235,456,0): 126, 149, 167, (235,457,0): 123, 144, 161, (235,458,0): 120, 139, 156, (235,459,0): 118, 135, 151, (235,460,0): 120, 133, 150, (235,461,0): 119, 131, 147, (235,462,0): 116, 128, 144, (235,463,0): 115, 124, 141, (235,464,0): 111, 118, 136, (235,465,0): 109, 116, 132, (235,466,0): 106, 113, 129, (235,467,0): 105, 111, 127, (235,468,0): 104, 110, 126, (235,469,0): 100, 106, 120, (235,470,0): 93, 99, 113, (235,471,0): 90, 94, 106, (235,472,0): 91, 95, 107, (235,473,0): 92, 94, 107, (235,474,0): 92, 94, 107, (235,475,0): 91, 93, 105, (235,476,0): 90, 92, 104, (235,477,0): 91, 91, 103, (235,478,0): 91, 91, 103, (235,479,0): 89, 91, 103, (235,480,0): 92, 96, 108, (235,481,0): 88, 94, 106, (235,482,0): 87, 93, 107, (235,483,0): 86, 92, 106, (235,484,0): 88, 94, 110, (235,485,0): 90, 97, 113, (235,486,0): 92, 101, 118, (235,487,0): 93, 105, 121, (235,488,0): 100, 111, 129, (235,489,0): 101, 114, 133, (235,490,0): 102, 117, 138, (235,491,0): 106, 123, 143, (235,492,0): 111, 127, 150, (235,493,0): 115, 133, 155, (235,494,0): 118, 136, 160, (235,495,0): 118, 138, 162, (235,496,0): 127, 149, 170, (235,497,0): 129, 154, 176, (235,498,0): 134, 159, 181, (235,499,0): 136, 162, 185, (235,500,0): 137, 163, 188, (235,501,0): 139, 165, 192, (235,502,0): 140, 167, 194, (235,503,0): 143, 170, 199, (235,504,0): 145, 175, 203, (235,505,0): 150, 180, 206, (235,506,0): 152, 182, 208, (235,507,0): 148, 180, 203, (235,508,0): 148, 180, 201, (235,509,0): 146, 179, 198, (235,510,0): 136, 169, 188, (235,511,0): 125, 156, 174, (235,512,0): 121, 151, 162, (235,513,0): 117, 145, 156, (235,514,0): 117, 141, 153, (235,515,0): 117, 139, 152, (235,516,0): 121, 139, 151, (235,517,0): 121, 135, 148, (235,518,0): 114, 126, 140, (235,519,0): 110, 117, 133, (235,520,0): 104, 110, 124, (235,521,0): 101, 107, 121, (235,522,0): 106, 110, 122, (235,523,0): 113, 117, 129, (235,524,0): 114, 118, 130, (235,525,0): 111, 115, 127, (235,526,0): 112, 116, 127, (235,527,0): 115, 122, 132, (235,528,0): 123, 131, 142, (235,529,0): 123, 133, 143, (235,530,0): 124, 134, 146, (235,531,0): 121, 133, 145, (235,532,0): 119, 133, 146, (235,533,0): 117, 133, 148, (235,534,0): 120, 136, 152, (235,535,0): 122, 141, 158, (235,536,0): 128, 149, 168, (235,537,0): 129, 154, 176, (235,538,0): 135, 159, 183, (235,539,0): 135, 161, 186, (235,540,0): 132, 160, 184, (235,541,0): 127, 157, 183, (235,542,0): 125, 155, 181, (235,543,0): 124, 154, 180, (235,544,0): 122, 150, 174, (235,545,0): 121, 147, 170, (235,546,0): 119, 145, 168, (235,547,0): 116, 142, 165, (235,548,0): 114, 140, 163, (235,549,0): 113, 139, 162, (235,550,0): 113, 139, 162, (235,551,0): 113, 139, 162, (235,552,0): 112, 138, 161, (235,553,0): 112, 138, 161, (235,554,0): 111, 137, 160, (235,555,0): 109, 135, 158, (235,556,0): 108, 134, 157, (235,557,0): 107, 133, 156, (235,558,0): 106, 132, 155, (235,559,0): 107, 132, 154, (235,560,0): 108, 127, 144, (235,561,0): 111, 128, 144, (235,562,0): 114, 131, 147, (235,563,0): 116, 133, 149, (235,564,0): 115, 131, 147, (235,565,0): 112, 128, 144, (235,566,0): 108, 124, 140, (235,567,0): 105, 121, 137, (235,568,0): 109, 122, 139, (235,569,0): 108, 121, 138, (235,570,0): 107, 118, 136, (235,571,0): 104, 115, 133, (235,572,0): 102, 113, 131, (235,573,0): 99, 110, 128, (235,574,0): 99, 107, 126, (235,575,0): 96, 107, 125, (235,576,0): 93, 106, 125, (235,577,0): 92, 105, 124, (235,578,0): 92, 105, 124, (235,579,0): 91, 104, 123, (235,580,0): 92, 103, 123, (235,581,0): 91, 102, 120, (235,582,0): 91, 102, 120, (235,583,0): 91, 102, 120, (235,584,0): 94, 102, 121, (235,585,0): 94, 103, 120, (235,586,0): 96, 103, 121, (235,587,0): 95, 102, 118, (235,588,0): 94, 101, 117, (235,589,0): 92, 99, 115, (235,590,0): 92, 98, 114, (235,591,0): 92, 95, 110, (235,592,0): 96, 95, 109, (235,593,0): 95, 93, 106, (235,594,0): 93, 89, 103, (235,595,0): 92, 89, 100, (235,596,0): 93, 85, 96, (235,597,0): 90, 83, 91, (235,598,0): 86, 76, 85, (235,599,0): 82, 72, 80, (236,0,0): 46, 30, 41, (236,1,0): 46, 30, 41, (236,2,0): 45, 29, 40, (236,3,0): 45, 29, 40, (236,4,0): 45, 29, 40, (236,5,0): 47, 31, 42, (236,6,0): 48, 32, 43, (236,7,0): 49, 33, 44, (236,8,0): 48, 32, 43, (236,9,0): 48, 32, 43, (236,10,0): 49, 33, 44, (236,11,0): 49, 33, 44, (236,12,0): 50, 34, 45, (236,13,0): 50, 34, 45, (236,14,0): 51, 35, 46, (236,15,0): 51, 35, 46, (236,16,0): 50, 34, 45, (236,17,0): 50, 34, 45, (236,18,0): 50, 34, 45, (236,19,0): 51, 35, 46, (236,20,0): 51, 35, 46, (236,21,0): 52, 36, 47, (236,22,0): 52, 36, 47, (236,23,0): 52, 36, 47, (236,24,0): 52, 36, 47, (236,25,0): 53, 37, 48, (236,26,0): 54, 38, 49, (236,27,0): 55, 39, 50, (236,28,0): 56, 40, 51, (236,29,0): 56, 40, 51, (236,30,0): 55, 39, 50, (236,31,0): 55, 38, 48, (236,32,0): 58, 38, 47, (236,33,0): 59, 38, 45, (236,34,0): 59, 38, 45, (236,35,0): 60, 39, 46, (236,36,0): 60, 39, 46, (236,37,0): 61, 40, 47, (236,38,0): 61, 40, 47, (236,39,0): 61, 40, 47, (236,40,0): 60, 39, 46, (236,41,0): 61, 40, 47, (236,42,0): 61, 40, 47, (236,43,0): 61, 40, 47, (236,44,0): 62, 41, 48, (236,45,0): 63, 42, 49, (236,46,0): 63, 42, 49, (236,47,0): 63, 42, 49, (236,48,0): 63, 44, 48, (236,49,0): 63, 44, 48, (236,50,0): 65, 45, 47, (236,51,0): 66, 46, 48, (236,52,0): 68, 46, 49, (236,53,0): 69, 47, 50, (236,54,0): 72, 47, 50, (236,55,0): 72, 47, 50, (236,56,0): 75, 49, 52, (236,57,0): 78, 49, 51, (236,58,0): 80, 50, 52, (236,59,0): 80, 50, 52, (236,60,0): 81, 49, 50, (236,61,0): 80, 48, 49, (236,62,0): 81, 47, 48, (236,63,0): 80, 46, 47, (236,64,0): 80, 48, 49, (236,65,0): 80, 48, 49, (236,66,0): 80, 48, 49, (236,67,0): 80, 48, 49, (236,68,0): 80, 48, 49, (236,69,0): 80, 48, 49, (236,70,0): 80, 49, 47, (236,71,0): 80, 49, 47, (236,72,0): 80, 49, 46, (236,73,0): 81, 50, 47, (236,74,0): 81, 50, 47, (236,75,0): 81, 50, 45, (236,76,0): 82, 51, 46, (236,77,0): 83, 52, 47, (236,78,0): 83, 52, 47, (236,79,0): 83, 52, 47, (236,80,0): 86, 53, 48, (236,81,0): 87, 52, 48, (236,82,0): 88, 53, 49, (236,83,0): 88, 53, 49, (236,84,0): 88, 53, 49, (236,85,0): 88, 53, 49, (236,86,0): 87, 52, 48, (236,87,0): 87, 52, 48, (236,88,0): 86, 51, 47, (236,89,0): 86, 51, 47, (236,90,0): 85, 50, 46, (236,91,0): 85, 50, 46, (236,92,0): 84, 49, 45, (236,93,0): 84, 49, 45, (236,94,0): 83, 48, 44, (236,95,0): 85, 47, 44, (236,96,0): 92, 48, 49, (236,97,0): 93, 47, 49, (236,98,0): 93, 47, 49, (236,99,0): 93, 47, 49, (236,100,0): 93, 47, 47, (236,101,0): 93, 48, 45, (236,102,0): 93, 48, 43, (236,103,0): 93, 48, 43, (236,104,0): 95, 50, 44, (236,105,0): 95, 51, 42, (236,106,0): 96, 52, 41, (236,107,0): 96, 52, 39, (236,108,0): 97, 53, 40, (236,109,0): 97, 54, 38, (236,110,0): 97, 54, 38, (236,111,0): 98, 55, 39, (236,112,0): 96, 53, 37, (236,113,0): 95, 52, 36, (236,114,0): 95, 52, 36, (236,115,0): 94, 51, 35, (236,116,0): 92, 50, 36, (236,117,0): 88, 49, 34, (236,118,0): 88, 48, 36, (236,119,0): 86, 48, 35, (236,120,0): 85, 49, 35, (236,121,0): 83, 50, 35, (236,122,0): 81, 49, 36, (236,123,0): 78, 49, 35, (236,124,0): 77, 47, 36, (236,125,0): 75, 47, 35, (236,126,0): 74, 46, 34, (236,127,0): 74, 46, 34, (236,128,0): 73, 45, 34, (236,129,0): 73, 45, 34, (236,130,0): 73, 45, 34, (236,131,0): 72, 44, 33, (236,132,0): 71, 43, 32, (236,133,0): 71, 43, 32, (236,134,0): 71, 43, 32, (236,135,0): 70, 42, 31, (236,136,0): 72, 44, 33, (236,137,0): 72, 44, 33, (236,138,0): 72, 44, 33, (236,139,0): 72, 44, 33, (236,140,0): 72, 44, 33, (236,141,0): 72, 44, 33, (236,142,0): 72, 44, 33, (236,143,0): 72, 44, 33, (236,144,0): 71, 41, 31, (236,145,0): 71, 41, 31, (236,146,0): 71, 41, 31, (236,147,0): 72, 42, 32, (236,148,0): 73, 43, 33, (236,149,0): 73, 43, 33, (236,150,0): 73, 43, 33, (236,151,0): 74, 44, 34, (236,152,0): 75, 45, 35, (236,153,0): 75, 45, 35, (236,154,0): 75, 45, 35, (236,155,0): 74, 44, 34, (236,156,0): 74, 44, 34, (236,157,0): 73, 43, 33, (236,158,0): 73, 43, 33, (236,159,0): 72, 42, 32, (236,160,0): 76, 44, 33, (236,161,0): 77, 43, 33, (236,162,0): 76, 42, 32, (236,163,0): 76, 42, 32, (236,164,0): 75, 41, 31, (236,165,0): 75, 41, 31, (236,166,0): 74, 40, 30, (236,167,0): 74, 40, 30, (236,168,0): 72, 38, 28, (236,169,0): 72, 38, 28, (236,170,0): 72, 38, 28, (236,171,0): 72, 38, 28, (236,172,0): 72, 38, 28, (236,173,0): 72, 38, 28, (236,174,0): 72, 38, 28, (236,175,0): 71, 39, 28, (236,176,0): 69, 39, 29, (236,177,0): 68, 40, 29, (236,178,0): 67, 39, 28, (236,179,0): 66, 38, 27, (236,180,0): 66, 38, 27, (236,181,0): 66, 38, 27, (236,182,0): 65, 37, 26, (236,183,0): 66, 38, 27, (236,184,0): 65, 37, 26, (236,185,0): 65, 37, 26, (236,186,0): 64, 36, 25, (236,187,0): 63, 35, 24, (236,188,0): 62, 34, 23, (236,189,0): 61, 33, 22, (236,190,0): 60, 32, 21, (236,191,0): 59, 32, 21, (236,192,0): 61, 34, 27, (236,193,0): 58, 33, 26, (236,194,0): 57, 32, 25, (236,195,0): 55, 30, 23, (236,196,0): 55, 30, 23, (236,197,0): 55, 30, 23, (236,198,0): 56, 31, 24, (236,199,0): 56, 31, 24, (236,200,0): 54, 29, 22, (236,201,0): 54, 29, 22, (236,202,0): 55, 30, 23, (236,203,0): 56, 31, 24, (236,204,0): 57, 32, 25, (236,205,0): 59, 34, 27, (236,206,0): 59, 34, 27, (236,207,0): 62, 35, 26, (236,208,0): 69, 41, 30, (236,209,0): 69, 40, 26, (236,210,0): 69, 40, 26, (236,211,0): 70, 41, 25, (236,212,0): 73, 41, 26, (236,213,0): 76, 45, 27, (236,214,0): 78, 47, 29, (236,215,0): 80, 49, 29, (236,216,0): 84, 52, 31, (236,217,0): 86, 54, 29, (236,218,0): 90, 56, 29, (236,219,0): 93, 59, 31, (236,220,0): 95, 61, 33, (236,221,0): 95, 62, 31, (236,222,0): 97, 62, 32, (236,223,0): 96, 63, 32, (236,224,0): 90, 59, 30, (236,225,0): 92, 61, 33, (236,226,0): 95, 64, 36, (236,227,0): 97, 66, 38, (236,228,0): 97, 66, 37, (236,229,0): 95, 64, 35, (236,230,0): 93, 62, 33, (236,231,0): 91, 60, 31, (236,232,0): 87, 56, 27, (236,233,0): 90, 59, 30, (236,234,0): 93, 62, 33, (236,235,0): 96, 65, 36, (236,236,0): 99, 68, 37, (236,237,0): 102, 71, 40, (236,238,0): 105, 74, 43, (236,239,0): 106, 76, 42, (236,240,0): 111, 83, 46, (236,241,0): 112, 84, 44, (236,242,0): 114, 90, 46, (236,243,0): 119, 99, 49, (236,244,0): 129, 109, 56, (236,245,0): 140, 121, 62, (236,246,0): 150, 130, 67, (236,247,0): 159, 136, 68, (236,248,0): 171, 144, 73, (236,249,0): 177, 149, 76, (236,250,0): 183, 153, 80, (236,251,0): 186, 157, 81, (236,252,0): 186, 157, 81, (236,253,0): 185, 158, 79, (236,254,0): 185, 160, 80, (236,255,0): 184, 163, 82, (236,256,0): 175, 160, 79, (236,257,0): 170, 157, 78, (236,258,0): 168, 155, 76, (236,259,0): 169, 156, 78, (236,260,0): 169, 158, 79, (236,261,0): 171, 159, 83, (236,262,0): 170, 158, 82, (236,263,0): 169, 157, 83, (236,264,0): 162, 152, 80, (236,265,0): 160, 150, 78, (236,266,0): 155, 147, 75, (236,267,0): 150, 142, 70, (236,268,0): 147, 138, 69, (236,269,0): 151, 142, 73, (236,270,0): 158, 151, 83, (236,271,0): 161, 159, 85, (236,272,0): 159, 167, 82, (236,273,0): 168, 176, 90, (236,274,0): 182, 181, 98, (236,275,0): 185, 178, 97, (236,276,0): 179, 163, 86, (236,277,0): 166, 147, 71, (236,278,0): 157, 135, 62, (236,279,0): 153, 129, 57, (236,280,0): 150, 127, 57, (236,281,0): 149, 129, 58, (236,282,0): 151, 130, 63, (236,283,0): 153, 134, 66, (236,284,0): 155, 137, 71, (236,285,0): 158, 140, 74, (236,286,0): 161, 141, 78, (236,287,0): 163, 142, 79, (236,288,0): 162, 137, 80, (236,289,0): 161, 136, 80, (236,290,0): 157, 135, 78, (236,291,0): 155, 133, 76, (236,292,0): 153, 130, 76, (236,293,0): 151, 128, 74, (236,294,0): 148, 127, 74, (236,295,0): 147, 126, 73, (236,296,0): 144, 124, 73, (236,297,0): 144, 124, 73, (236,298,0): 143, 123, 73, (236,299,0): 141, 120, 73, (236,300,0): 136, 118, 70, (236,301,0): 133, 115, 69, (236,302,0): 130, 112, 66, (236,303,0): 129, 110, 67, (236,304,0): 124, 106, 66, (236,305,0): 123, 105, 67, (236,306,0): 120, 105, 66, (236,307,0): 118, 102, 66, (236,308,0): 115, 99, 65, (236,309,0): 111, 95, 62, (236,310,0): 107, 92, 61, (236,311,0): 105, 90, 61, (236,312,0): 97, 83, 56, (236,313,0): 96, 81, 58, (236,314,0): 95, 80, 59, (236,315,0): 94, 79, 60, (236,316,0): 92, 79, 62, (236,317,0): 93, 80, 63, (236,318,0): 94, 81, 65, (236,319,0): 95, 82, 66, (236,320,0): 95, 82, 66, (236,321,0): 95, 82, 66, (236,322,0): 95, 82, 65, (236,323,0): 97, 81, 65, (236,324,0): 96, 81, 62, (236,325,0): 95, 78, 60, (236,326,0): 93, 76, 56, (236,327,0): 93, 75, 55, (236,328,0): 89, 68, 51, (236,329,0): 87, 65, 51, (236,330,0): 84, 60, 48, (236,331,0): 81, 54, 45, (236,332,0): 76, 48, 44, (236,333,0): 71, 43, 40, (236,334,0): 69, 39, 39, (236,335,0): 66, 38, 35, (236,336,0): 60, 37, 29, (236,337,0): 57, 39, 27, (236,338,0): 58, 40, 28, (236,339,0): 57, 41, 28, (236,340,0): 57, 41, 28, (236,341,0): 55, 41, 28, (236,342,0): 53, 41, 27, (236,343,0): 53, 41, 27, (236,344,0): 56, 47, 32, (236,345,0): 54, 47, 31, (236,346,0): 54, 47, 31, (236,347,0): 54, 48, 32, (236,348,0): 54, 51, 34, (236,349,0): 58, 55, 38, (236,350,0): 62, 59, 42, (236,351,0): 68, 61, 45, (236,352,0): 80, 63, 47, (236,353,0): 88, 66, 52, (236,354,0): 93, 76, 60, (236,355,0): 98, 87, 67, (236,356,0): 104, 99, 77, (236,357,0): 107, 110, 83, (236,358,0): 109, 118, 89, (236,359,0): 107, 122, 91, (236,360,0): 112, 129, 97, (236,361,0): 113, 133, 98, (236,362,0): 116, 138, 102, (236,363,0): 117, 137, 100, (236,364,0): 116, 136, 99, (236,365,0): 117, 134, 98, (236,366,0): 118, 135, 99, (236,367,0): 121, 137, 101, (236,368,0): 122, 137, 104, (236,369,0): 123, 138, 107, (236,370,0): 124, 139, 108, (236,371,0): 126, 143, 111, (236,372,0): 129, 145, 116, (236,373,0): 129, 148, 118, (236,374,0): 132, 151, 121, (236,375,0): 132, 153, 122, (236,376,0): 125, 148, 119, (236,377,0): 126, 151, 121, (236,378,0): 128, 153, 124, (236,379,0): 129, 155, 126, (236,380,0): 130, 156, 127, (236,381,0): 133, 162, 132, (236,382,0): 139, 168, 140, (236,383,0): 144, 175, 144, (236,384,0): 148, 183, 151, (236,385,0): 151, 191, 157, (236,386,0): 159, 198, 167, (236,387,0): 163, 206, 178, (236,388,0): 167, 211, 186, (236,389,0): 168, 215, 195, (236,390,0): 171, 222, 205, (236,391,0): 173, 227, 213, (236,392,0): 183, 239, 230, (236,393,0): 185, 242, 235, (236,394,0): 189, 246, 240, (236,395,0): 191, 247, 244, (236,396,0): 190, 246, 243, (236,397,0): 191, 247, 244, (236,398,0): 193, 249, 246, (236,399,0): 193, 252, 250, (236,400,0): 188, 252, 251, (236,401,0): 185, 253, 252, (236,402,0): 187, 253, 252, (236,403,0): 186, 254, 253, (236,404,0): 188, 254, 253, (236,405,0): 187, 255, 254, (236,406,0): 189, 255, 254, (236,407,0): 188, 255, 255, (236,408,0): 190, 255, 255, (236,409,0): 188, 255, 255, (236,410,0): 190, 255, 255, (236,411,0): 188, 255, 255, (236,412,0): 190, 255, 255, (236,413,0): 188, 255, 255, (236,414,0): 190, 255, 255, (236,415,0): 190, 255, 255, (236,416,0): 193, 255, 255, (236,417,0): 192, 255, 255, (236,418,0): 189, 252, 255, (236,419,0): 186, 246, 255, (236,420,0): 178, 236, 248, (236,421,0): 168, 226, 240, (236,422,0): 159, 215, 232, (236,423,0): 156, 209, 227, (236,424,0): 155, 206, 227, (236,425,0): 154, 205, 226, (236,426,0): 156, 202, 225, (236,427,0): 156, 203, 223, (236,428,0): 157, 202, 223, (236,429,0): 157, 202, 221, (236,430,0): 160, 203, 222, (236,431,0): 158, 204, 220, (236,432,0): 156, 201, 220, (236,433,0): 152, 197, 216, (236,434,0): 148, 193, 212, (236,435,0): 146, 191, 210, (236,436,0): 148, 189, 207, (236,437,0): 146, 187, 205, (236,438,0): 145, 182, 200, (236,439,0): 142, 179, 195, (236,440,0): 141, 177, 193, (236,441,0): 143, 176, 191, (236,442,0): 143, 175, 190, (236,443,0): 142, 171, 185, (236,444,0): 138, 166, 180, (236,445,0): 132, 160, 172, (236,446,0): 126, 154, 168, (236,447,0): 123, 150, 161, (236,448,0): 126, 149, 157, (236,449,0): 128, 148, 155, (236,450,0): 130, 150, 159, (236,451,0): 133, 156, 164, (236,452,0): 137, 159, 172, (236,453,0): 137, 159, 172, (236,454,0): 134, 155, 172, (236,455,0): 131, 152, 169, (236,456,0): 126, 147, 164, (236,457,0): 123, 142, 159, (236,458,0): 118, 135, 153, (236,459,0): 115, 131, 147, (236,460,0): 116, 127, 145, (236,461,0): 116, 125, 142, (236,462,0): 113, 122, 139, (236,463,0): 111, 118, 134, (236,464,0): 111, 118, 134, (236,465,0): 109, 115, 129, (236,466,0): 105, 111, 125, (236,467,0): 105, 108, 123, (236,468,0): 102, 105, 120, (236,469,0): 97, 100, 115, (236,470,0): 89, 92, 107, (236,471,0): 85, 87, 100, (236,472,0): 88, 90, 103, (236,473,0): 90, 90, 102, (236,474,0): 90, 90, 102, (236,475,0): 89, 89, 99, (236,476,0): 89, 89, 99, (236,477,0): 90, 88, 99, (236,478,0): 89, 87, 98, (236,479,0): 88, 88, 98, (236,480,0): 90, 92, 104, (236,481,0): 88, 92, 103, (236,482,0): 87, 91, 103, (236,483,0): 85, 91, 103, (236,484,0): 86, 92, 106, (236,485,0): 88, 96, 109, (236,486,0): 90, 99, 114, (236,487,0): 90, 102, 118, (236,488,0): 98, 109, 127, (236,489,0): 99, 112, 129, (236,490,0): 101, 116, 135, (236,491,0): 105, 122, 140, (236,492,0): 110, 127, 147, (236,493,0): 115, 132, 152, (236,494,0): 119, 135, 158, (236,495,0): 120, 138, 160, (236,496,0): 126, 147, 166, (236,497,0): 127, 153, 170, (236,498,0): 132, 157, 177, (236,499,0): 135, 160, 182, (236,500,0): 135, 161, 184, (236,501,0): 136, 162, 187, (236,502,0): 138, 166, 190, (236,503,0): 141, 168, 195, (236,504,0): 145, 175, 201, (236,505,0): 150, 180, 206, (236,506,0): 150, 182, 207, (236,507,0): 148, 180, 203, (236,508,0): 148, 180, 201, (236,509,0): 144, 179, 198, (236,510,0): 136, 171, 190, (236,511,0): 127, 160, 175, (236,512,0): 123, 153, 164, (236,513,0): 119, 147, 158, (236,514,0): 117, 141, 153, (236,515,0): 117, 139, 152, (236,516,0): 121, 139, 151, (236,517,0): 121, 135, 148, (236,518,0): 114, 126, 140, (236,519,0): 111, 118, 134, (236,520,0): 103, 109, 123, (236,521,0): 102, 105, 120, (236,522,0): 104, 106, 119, (236,523,0): 110, 112, 125, (236,524,0): 112, 114, 127, (236,525,0): 110, 112, 125, (236,526,0): 110, 112, 124, (236,527,0): 113, 117, 128, (236,528,0): 121, 128, 138, (236,529,0): 120, 130, 139, (236,530,0): 122, 132, 142, (236,531,0): 119, 131, 143, (236,532,0): 117, 131, 144, (236,533,0): 116, 132, 147, (236,534,0): 119, 135, 151, (236,535,0): 120, 139, 156, (236,536,0): 127, 148, 167, (236,537,0): 129, 154, 176, (236,538,0): 133, 157, 181, (236,539,0): 133, 159, 184, (236,540,0): 130, 157, 184, (236,541,0): 125, 155, 183, (236,542,0): 124, 154, 182, (236,543,0): 124, 154, 182, (236,544,0): 122, 150, 174, (236,545,0): 121, 147, 170, (236,546,0): 119, 145, 168, (236,547,0): 115, 141, 164, (236,548,0): 113, 139, 162, (236,549,0): 111, 137, 160, (236,550,0): 111, 137, 160, (236,551,0): 110, 136, 159, (236,552,0): 111, 137, 160, (236,553,0): 110, 136, 159, (236,554,0): 110, 136, 159, (236,555,0): 109, 135, 158, (236,556,0): 108, 134, 157, (236,557,0): 107, 133, 156, (236,558,0): 106, 132, 155, (236,559,0): 107, 132, 154, (236,560,0): 110, 129, 146, (236,561,0): 113, 129, 144, (236,562,0): 115, 131, 147, (236,563,0): 116, 132, 148, (236,564,0): 115, 131, 147, (236,565,0): 112, 128, 144, (236,566,0): 110, 123, 140, (236,567,0): 108, 121, 138, (236,568,0): 109, 122, 141, (236,569,0): 108, 121, 140, (236,570,0): 106, 119, 138, (236,571,0): 103, 116, 135, (236,572,0): 102, 113, 133, (236,573,0): 99, 110, 130, (236,574,0): 97, 108, 128, (236,575,0): 96, 107, 127, (236,576,0): 93, 105, 127, (236,577,0): 93, 105, 127, (236,578,0): 94, 105, 127, (236,579,0): 93, 104, 124, (236,580,0): 93, 104, 124, (236,581,0): 92, 103, 123, (236,582,0): 94, 102, 123, (236,583,0): 93, 101, 120, (236,584,0): 96, 103, 122, (236,585,0): 96, 103, 121, (236,586,0): 97, 104, 122, (236,587,0): 96, 103, 121, (236,588,0): 96, 101, 120, (236,589,0): 95, 101, 117, (236,590,0): 93, 99, 115, (236,591,0): 93, 96, 111, (236,592,0): 96, 95, 109, (236,593,0): 94, 92, 105, (236,594,0): 91, 87, 101, (236,595,0): 89, 86, 97, (236,596,0): 90, 82, 93, (236,597,0): 86, 79, 87, (236,598,0): 83, 73, 82, (236,599,0): 79, 69, 78, (237,0,0): 46, 30, 41, (237,1,0): 46, 30, 41, (237,2,0): 45, 29, 40, (237,3,0): 45, 29, 40, (237,4,0): 45, 29, 40, (237,5,0): 47, 31, 42, (237,6,0): 48, 32, 43, (237,7,0): 49, 33, 44, (237,8,0): 48, 32, 43, (237,9,0): 48, 32, 43, (237,10,0): 49, 33, 44, (237,11,0): 49, 33, 44, (237,12,0): 50, 34, 45, (237,13,0): 50, 34, 45, (237,14,0): 51, 35, 46, (237,15,0): 51, 35, 46, (237,16,0): 50, 34, 45, (237,17,0): 50, 34, 45, (237,18,0): 50, 34, 45, (237,19,0): 51, 35, 46, (237,20,0): 51, 35, 46, (237,21,0): 52, 36, 47, (237,22,0): 52, 36, 47, (237,23,0): 52, 36, 47, (237,24,0): 52, 36, 47, (237,25,0): 53, 37, 48, (237,26,0): 55, 39, 50, (237,27,0): 56, 40, 51, (237,28,0): 56, 40, 51, (237,29,0): 56, 40, 51, (237,30,0): 55, 39, 50, (237,31,0): 56, 39, 49, (237,32,0): 59, 39, 48, (237,33,0): 60, 39, 46, (237,34,0): 60, 39, 46, (237,35,0): 61, 40, 47, (237,36,0): 62, 41, 48, (237,37,0): 62, 41, 48, (237,38,0): 62, 41, 48, (237,39,0): 63, 42, 49, (237,40,0): 62, 41, 48, (237,41,0): 62, 41, 48, (237,42,0): 63, 42, 49, (237,43,0): 63, 42, 49, (237,44,0): 64, 43, 50, (237,45,0): 64, 43, 50, (237,46,0): 65, 44, 51, (237,47,0): 65, 44, 51, (237,48,0): 65, 46, 50, (237,49,0): 65, 46, 50, (237,50,0): 67, 47, 49, (237,51,0): 68, 48, 50, (237,52,0): 70, 48, 51, (237,53,0): 71, 49, 52, (237,54,0): 74, 49, 52, (237,55,0): 76, 50, 53, (237,56,0): 78, 49, 51, (237,57,0): 79, 50, 52, (237,58,0): 81, 51, 53, (237,59,0): 81, 51, 53, (237,60,0): 81, 49, 50, (237,61,0): 80, 48, 49, (237,62,0): 81, 47, 48, (237,63,0): 80, 46, 47, (237,64,0): 80, 48, 49, (237,65,0): 80, 48, 49, (237,66,0): 80, 48, 49, (237,67,0): 80, 48, 49, (237,68,0): 80, 48, 49, (237,69,0): 80, 48, 49, (237,70,0): 80, 49, 47, (237,71,0): 80, 49, 47, (237,72,0): 82, 51, 48, (237,73,0): 82, 51, 48, (237,74,0): 83, 52, 47, (237,75,0): 83, 52, 47, (237,76,0): 84, 53, 48, (237,77,0): 84, 53, 48, (237,78,0): 85, 54, 49, (237,79,0): 85, 54, 49, (237,80,0): 88, 53, 49, (237,81,0): 88, 53, 49, (237,82,0): 89, 54, 50, (237,83,0): 89, 54, 50, (237,84,0): 89, 54, 50, (237,85,0): 89, 54, 50, (237,86,0): 88, 53, 49, (237,87,0): 88, 53, 49, (237,88,0): 87, 52, 48, (237,89,0): 87, 52, 48, (237,90,0): 86, 51, 47, (237,91,0): 86, 51, 47, (237,92,0): 85, 50, 46, (237,93,0): 85, 50, 46, (237,94,0): 84, 49, 45, (237,95,0): 86, 48, 45, (237,96,0): 91, 47, 48, (237,97,0): 93, 47, 49, (237,98,0): 93, 47, 49, (237,99,0): 94, 48, 48, (237,100,0): 94, 48, 48, (237,101,0): 95, 50, 47, (237,102,0): 96, 51, 46, (237,103,0): 96, 51, 45, (237,104,0): 96, 52, 43, (237,105,0): 97, 53, 42, (237,106,0): 97, 53, 40, (237,107,0): 98, 55, 39, (237,108,0): 98, 55, 39, (237,109,0): 99, 56, 39, (237,110,0): 99, 56, 39, (237,111,0): 99, 56, 39, (237,112,0): 97, 54, 38, (237,113,0): 96, 53, 37, (237,114,0): 96, 53, 37, (237,115,0): 94, 52, 36, (237,116,0): 91, 52, 37, (237,117,0): 89, 50, 35, (237,118,0): 88, 50, 37, (237,119,0): 86, 50, 36, (237,120,0): 85, 52, 37, (237,121,0): 83, 51, 36, (237,122,0): 80, 51, 37, (237,123,0): 78, 50, 36, (237,124,0): 77, 49, 37, (237,125,0): 75, 49, 36, (237,126,0): 74, 48, 35, (237,127,0): 74, 48, 35, (237,128,0): 75, 47, 36, (237,129,0): 75, 47, 36, (237,130,0): 74, 46, 35, (237,131,0): 74, 46, 35, (237,132,0): 73, 45, 34, (237,133,0): 73, 45, 34, (237,134,0): 72, 44, 33, (237,135,0): 72, 44, 33, (237,136,0): 73, 45, 34, (237,137,0): 73, 45, 34, (237,138,0): 73, 45, 34, (237,139,0): 73, 45, 34, (237,140,0): 73, 45, 34, (237,141,0): 73, 45, 34, (237,142,0): 73, 45, 34, (237,143,0): 73, 45, 34, (237,144,0): 71, 41, 31, (237,145,0): 72, 42, 32, (237,146,0): 72, 42, 32, (237,147,0): 73, 43, 33, (237,148,0): 73, 43, 33, (237,149,0): 74, 44, 34, (237,150,0): 74, 44, 34, (237,151,0): 74, 44, 34, (237,152,0): 76, 46, 36, (237,153,0): 75, 45, 35, (237,154,0): 75, 45, 35, (237,155,0): 75, 45, 35, (237,156,0): 74, 44, 34, (237,157,0): 73, 43, 33, (237,158,0): 73, 43, 33, (237,159,0): 75, 42, 33, (237,160,0): 78, 44, 34, (237,161,0): 78, 44, 34, (237,162,0): 77, 43, 33, (237,163,0): 77, 43, 33, (237,164,0): 76, 42, 32, (237,165,0): 76, 42, 32, (237,166,0): 75, 41, 31, (237,167,0): 75, 41, 31, (237,168,0): 72, 38, 28, (237,169,0): 72, 38, 28, (237,170,0): 72, 38, 28, (237,171,0): 72, 38, 28, (237,172,0): 72, 38, 28, (237,173,0): 72, 38, 28, (237,174,0): 72, 38, 28, (237,175,0): 71, 39, 28, (237,176,0): 70, 40, 30, (237,177,0): 68, 40, 29, (237,178,0): 67, 39, 28, (237,179,0): 66, 38, 27, (237,180,0): 65, 37, 26, (237,181,0): 65, 37, 26, (237,182,0): 66, 38, 27, (237,183,0): 66, 38, 27, (237,184,0): 66, 38, 27, (237,185,0): 65, 37, 26, (237,186,0): 64, 36, 25, (237,187,0): 63, 35, 24, (237,188,0): 62, 34, 23, (237,189,0): 61, 33, 22, (237,190,0): 60, 32, 21, (237,191,0): 59, 32, 21, (237,192,0): 61, 34, 27, (237,193,0): 58, 33, 26, (237,194,0): 57, 32, 25, (237,195,0): 56, 31, 24, (237,196,0): 55, 30, 23, (237,197,0): 55, 30, 23, (237,198,0): 56, 31, 24, (237,199,0): 57, 32, 25, (237,200,0): 55, 30, 23, (237,201,0): 55, 30, 23, (237,202,0): 56, 31, 24, (237,203,0): 58, 33, 26, (237,204,0): 59, 34, 27, (237,205,0): 61, 36, 29, (237,206,0): 62, 37, 30, (237,207,0): 65, 38, 29, (237,208,0): 70, 42, 30, (237,209,0): 72, 43, 27, (237,210,0): 73, 44, 28, (237,211,0): 75, 46, 28, (237,212,0): 78, 47, 29, (237,213,0): 80, 49, 29, (237,214,0): 81, 50, 30, (237,215,0): 81, 50, 29, (237,216,0): 86, 54, 31, (237,217,0): 88, 56, 33, (237,218,0): 92, 58, 33, (237,219,0): 93, 59, 32, (237,220,0): 95, 61, 34, (237,221,0): 95, 61, 33, (237,222,0): 96, 61, 33, (237,223,0): 95, 61, 33, (237,224,0): 91, 57, 29, (237,225,0): 90, 59, 31, (237,226,0): 91, 60, 32, (237,227,0): 93, 62, 33, (237,228,0): 94, 63, 34, (237,229,0): 94, 63, 32, (237,230,0): 93, 62, 31, (237,231,0): 93, 62, 31, (237,232,0): 88, 57, 26, (237,233,0): 92, 62, 28, (237,234,0): 97, 67, 33, (237,235,0): 102, 72, 38, (237,236,0): 105, 75, 39, (237,237,0): 109, 79, 43, (237,238,0): 112, 82, 46, (237,239,0): 115, 85, 49, (237,240,0): 115, 87, 48, (237,241,0): 115, 90, 49, (237,242,0): 119, 95, 51, (237,243,0): 123, 103, 53, (237,244,0): 131, 111, 58, (237,245,0): 141, 122, 64, (237,246,0): 150, 130, 67, (237,247,0): 158, 135, 67, (237,248,0): 171, 144, 73, (237,249,0): 179, 149, 76, (237,250,0): 187, 155, 82, (237,251,0): 191, 159, 84, (237,252,0): 193, 161, 84, (237,253,0): 191, 164, 85, (237,254,0): 192, 167, 85, (237,255,0): 191, 170, 87, (237,256,0): 182, 167, 84, (237,257,0): 179, 167, 85, (237,258,0): 179, 167, 85, (237,259,0): 180, 167, 88, (237,260,0): 180, 169, 89, (237,261,0): 181, 170, 91, (237,262,0): 181, 169, 93, (237,263,0): 180, 168, 92, (237,264,0): 169, 160, 85, (237,265,0): 166, 156, 84, (237,266,0): 159, 151, 79, (237,267,0): 152, 144, 72, (237,268,0): 150, 141, 72, (237,269,0): 153, 144, 75, (237,270,0): 161, 154, 86, (237,271,0): 165, 163, 89, (237,272,0): 167, 175, 89, (237,273,0): 174, 185, 93, (237,274,0): 187, 190, 101, (237,275,0): 195, 189, 103, (237,276,0): 191, 179, 97, (237,277,0): 181, 162, 83, (237,278,0): 168, 146, 70, (237,279,0): 161, 138, 62, (237,280,0): 155, 131, 57, (237,281,0): 155, 133, 58, (237,282,0): 155, 135, 64, (237,283,0): 157, 139, 67, (237,284,0): 159, 142, 72, (237,285,0): 162, 145, 75, (237,286,0): 165, 146, 78, (237,287,0): 167, 148, 82, (237,288,0): 165, 140, 83, (237,289,0): 164, 139, 83, (237,290,0): 161, 139, 82, (237,291,0): 160, 138, 81, (237,292,0): 158, 135, 81, (237,293,0): 157, 134, 80, (237,294,0): 155, 134, 81, (237,295,0): 154, 133, 80, (237,296,0): 149, 129, 78, (237,297,0): 148, 128, 77, (237,298,0): 146, 126, 76, (237,299,0): 144, 124, 74, (237,300,0): 139, 121, 73, (237,301,0): 136, 118, 70, (237,302,0): 134, 116, 70, (237,303,0): 133, 115, 69, (237,304,0): 130, 113, 70, (237,305,0): 130, 112, 72, (237,306,0): 126, 111, 72, (237,307,0): 123, 108, 69, (237,308,0): 119, 103, 67, (237,309,0): 114, 98, 64, (237,310,0): 110, 95, 62, (237,311,0): 107, 92, 63, (237,312,0): 98, 84, 57, (237,313,0): 98, 83, 60, (237,314,0): 96, 81, 60, (237,315,0): 96, 81, 62, (237,316,0): 94, 81, 64, (237,317,0): 94, 81, 64, (237,318,0): 96, 83, 67, (237,319,0): 96, 83, 67, (237,320,0): 98, 82, 67, (237,321,0): 98, 82, 67, (237,322,0): 98, 81, 65, (237,323,0): 97, 80, 64, (237,324,0): 95, 78, 60, (237,325,0): 92, 75, 57, (237,326,0): 90, 72, 52, (237,327,0): 88, 70, 50, (237,328,0): 83, 62, 45, (237,329,0): 81, 59, 45, (237,330,0): 79, 55, 43, (237,331,0): 75, 50, 43, (237,332,0): 71, 46, 41, (237,333,0): 66, 40, 39, (237,334,0): 65, 36, 38, (237,335,0): 61, 35, 34, (237,336,0): 58, 35, 27, (237,337,0): 57, 37, 26, (237,338,0): 58, 38, 27, (237,339,0): 58, 40, 28, (237,340,0): 58, 40, 28, (237,341,0): 56, 40, 27, (237,342,0): 53, 39, 26, (237,343,0): 51, 39, 25, (237,344,0): 56, 44, 30, (237,345,0): 53, 43, 31, (237,346,0): 53, 43, 31, (237,347,0): 52, 44, 31, (237,348,0): 53, 47, 33, (237,349,0): 55, 52, 37, (237,350,0): 61, 55, 41, (237,351,0): 67, 55, 43, (237,352,0): 91, 64, 53, (237,353,0): 96, 66, 55, (237,354,0): 99, 73, 60, (237,355,0): 100, 81, 66, (237,356,0): 102, 91, 71, (237,357,0): 105, 100, 78, (237,358,0): 104, 108, 83, (237,359,0): 103, 114, 84, (237,360,0): 107, 120, 90, (237,361,0): 108, 125, 93, (237,362,0): 112, 129, 95, (237,363,0): 113, 130, 96, (237,364,0): 114, 130, 94, (237,365,0): 113, 129, 93, (237,366,0): 116, 130, 95, (237,367,0): 118, 132, 99, (237,368,0): 121, 134, 106, (237,369,0): 121, 134, 108, (237,370,0): 120, 134, 108, (237,371,0): 122, 136, 110, (237,372,0): 124, 138, 113, (237,373,0): 125, 141, 115, (237,374,0): 126, 144, 118, (237,375,0): 127, 145, 119, (237,376,0): 123, 143, 118, (237,377,0): 124, 147, 121, (237,378,0): 125, 149, 125, (237,379,0): 127, 151, 127, (237,380,0): 128, 154, 129, (237,381,0): 132, 158, 133, (237,382,0): 137, 165, 142, (237,383,0): 142, 172, 146, (237,384,0): 146, 181, 149, (237,385,0): 149, 189, 155, (237,386,0): 158, 197, 168, (237,387,0): 162, 205, 177, (237,388,0): 166, 210, 187, (237,389,0): 167, 214, 196, (237,390,0): 169, 220, 205, (237,391,0): 172, 224, 212, (237,392,0): 183, 236, 230, (237,393,0): 184, 239, 234, (237,394,0): 189, 241, 239, (237,395,0): 187, 242, 239, (237,396,0): 189, 240, 241, (237,397,0): 189, 240, 241, (237,398,0): 192, 244, 242, (237,399,0): 192, 248, 247, (237,400,0): 187, 251, 251, (237,401,0): 185, 253, 252, (237,402,0): 185, 253, 252, (237,403,0): 185, 253, 252, (237,404,0): 186, 254, 253, (237,405,0): 187, 255, 254, (237,406,0): 187, 255, 254, (237,407,0): 187, 255, 254, (237,408,0): 187, 255, 254, (237,409,0): 187, 255, 254, (237,410,0): 187, 255, 254, (237,411,0): 187, 255, 254, (237,412,0): 187, 255, 254, (237,413,0): 187, 255, 254, (237,414,0): 187, 255, 254, (237,415,0): 187, 255, 255, (237,416,0): 192, 255, 255, (237,417,0): 190, 253, 255, (237,418,0): 185, 248, 255, (237,419,0): 178, 240, 251, (237,420,0): 171, 230, 244, (237,421,0): 164, 221, 238, (237,422,0): 158, 213, 234, (237,423,0): 154, 209, 230, (237,424,0): 156, 206, 231, (237,425,0): 155, 205, 230, (237,426,0): 157, 203, 227, (237,427,0): 156, 202, 226, (237,428,0): 156, 201, 224, (237,429,0): 155, 200, 223, (237,430,0): 156, 198, 220, (237,431,0): 156, 198, 220, (237,432,0): 148, 193, 212, (237,433,0): 144, 189, 208, (237,434,0): 140, 185, 204, (237,435,0): 140, 183, 202, (237,436,0): 142, 183, 201, (237,437,0): 141, 182, 200, (237,438,0): 141, 179, 198, (237,439,0): 140, 177, 195, (237,440,0): 139, 174, 193, (237,441,0): 139, 175, 191, (237,442,0): 140, 171, 189, (237,443,0): 137, 169, 184, (237,444,0): 134, 163, 179, (237,445,0): 129, 157, 171, (237,446,0): 123, 151, 165, (237,447,0): 121, 147, 160, (237,448,0): 125, 148, 156, (237,449,0): 128, 148, 155, (237,450,0): 131, 151, 160, (237,451,0): 135, 155, 164, (237,452,0): 137, 159, 172, (237,453,0): 138, 160, 173, (237,454,0): 134, 155, 172, (237,455,0): 130, 151, 168, (237,456,0): 125, 144, 161, (237,457,0): 121, 138, 156, (237,458,0): 114, 130, 146, (237,459,0): 111, 124, 141, (237,460,0): 112, 121, 138, (237,461,0): 110, 119, 134, (237,462,0): 108, 115, 131, (237,463,0): 105, 112, 128, (237,464,0): 109, 115, 129, (237,465,0): 106, 112, 126, (237,466,0): 103, 106, 121, (237,467,0): 100, 103, 118, (237,468,0): 97, 100, 115, (237,469,0): 92, 96, 108, (237,470,0): 87, 89, 102, (237,471,0): 82, 84, 97, (237,472,0): 85, 85, 97, (237,473,0): 85, 85, 97, (237,474,0): 85, 85, 95, (237,475,0): 85, 85, 95, (237,476,0): 86, 84, 95, (237,477,0): 86, 84, 95, (237,478,0): 86, 84, 95, (237,479,0): 85, 85, 95, (237,480,0): 86, 88, 100, (237,481,0): 84, 88, 99, (237,482,0): 85, 89, 101, (237,483,0): 85, 89, 101, (237,484,0): 85, 91, 105, (237,485,0): 88, 94, 108, (237,486,0): 89, 96, 112, (237,487,0): 90, 99, 114, (237,488,0): 95, 107, 123, (237,489,0): 97, 108, 126, (237,490,0): 101, 114, 133, (237,491,0): 104, 119, 138, (237,492,0): 111, 126, 147, (237,493,0): 115, 132, 152, (237,494,0): 120, 136, 159, (237,495,0): 121, 139, 159, (237,496,0): 125, 146, 163, (237,497,0): 129, 152, 168, (237,498,0): 132, 158, 175, (237,499,0): 135, 160, 180, (237,500,0): 136, 161, 183, (237,501,0): 136, 162, 185, (237,502,0): 138, 166, 188, (237,503,0): 141, 169, 193, (237,504,0): 145, 175, 201, (237,505,0): 149, 179, 203, (237,506,0): 149, 181, 204, (237,507,0): 147, 179, 200, (237,508,0): 146, 181, 200, (237,509,0): 146, 182, 198, (237,510,0): 138, 174, 190, (237,511,0): 130, 163, 178, (237,512,0): 127, 157, 168, (237,513,0): 122, 150, 161, (237,514,0): 116, 143, 154, (237,515,0): 117, 139, 152, (237,516,0): 120, 138, 150, (237,517,0): 121, 135, 148, (237,518,0): 116, 128, 142, (237,519,0): 113, 120, 136, (237,520,0): 106, 112, 126, (237,521,0): 101, 104, 119, (237,522,0): 100, 102, 115, (237,523,0): 105, 107, 120, (237,524,0): 108, 110, 123, (237,525,0): 106, 108, 121, (237,526,0): 107, 109, 121, (237,527,0): 110, 114, 125, (237,528,0): 116, 123, 133, (237,529,0): 117, 126, 135, (237,530,0): 119, 127, 138, (237,531,0): 118, 128, 138, (237,532,0): 115, 127, 141, (237,533,0): 116, 129, 145, (237,534,0): 118, 134, 150, (237,535,0): 120, 138, 158, (237,536,0): 126, 147, 168, (237,537,0): 127, 152, 174, (237,538,0): 131, 155, 179, (237,539,0): 130, 158, 182, (237,540,0): 128, 155, 184, (237,541,0): 123, 153, 181, (237,542,0): 121, 152, 181, (237,543,0): 123, 153, 181, (237,544,0): 123, 151, 175, (237,545,0): 122, 148, 171, (237,546,0): 118, 144, 167, (237,547,0): 115, 141, 164, (237,548,0): 112, 138, 161, (237,549,0): 109, 135, 158, (237,550,0): 108, 134, 157, (237,551,0): 108, 134, 157, (237,552,0): 109, 135, 158, (237,553,0): 109, 135, 158, (237,554,0): 109, 135, 158, (237,555,0): 108, 134, 157, (237,556,0): 107, 133, 156, (237,557,0): 107, 133, 156, (237,558,0): 106, 132, 155, (237,559,0): 107, 132, 152, (237,560,0): 112, 129, 147, (237,561,0): 114, 130, 145, (237,562,0): 116, 132, 148, (237,563,0): 116, 132, 148, (237,564,0): 115, 131, 147, (237,565,0): 112, 128, 144, (237,566,0): 111, 124, 141, (237,567,0): 109, 122, 139, (237,568,0): 110, 123, 142, (237,569,0): 109, 122, 141, (237,570,0): 107, 120, 139, (237,571,0): 104, 117, 136, (237,572,0): 101, 112, 132, (237,573,0): 98, 109, 129, (237,574,0): 96, 107, 127, (237,575,0): 95, 106, 126, (237,576,0): 94, 106, 128, (237,577,0): 93, 105, 127, (237,578,0): 94, 105, 127, (237,579,0): 94, 105, 127, (237,580,0): 93, 104, 126, (237,581,0): 92, 103, 123, (237,582,0): 94, 102, 123, (237,583,0): 94, 102, 123, (237,584,0): 97, 104, 123, (237,585,0): 97, 104, 123, (237,586,0): 98, 105, 124, (237,587,0): 97, 104, 122, (237,588,0): 97, 102, 121, (237,589,0): 96, 101, 120, (237,590,0): 94, 100, 116, (237,591,0): 94, 97, 114, (237,592,0): 95, 94, 110, (237,593,0): 92, 90, 104, (237,594,0): 88, 84, 98, (237,595,0): 85, 82, 93, (237,596,0): 84, 78, 90, (237,597,0): 82, 74, 85, (237,598,0): 78, 68, 77, (237,599,0): 74, 64, 73, (238,0,0): 46, 30, 41, (238,1,0): 46, 30, 41, (238,2,0): 45, 29, 40, (238,3,0): 45, 29, 40, (238,4,0): 45, 29, 40, (238,5,0): 47, 31, 42, (238,6,0): 48, 32, 43, (238,7,0): 49, 33, 44, (238,8,0): 48, 32, 43, (238,9,0): 48, 32, 43, (238,10,0): 49, 33, 44, (238,11,0): 49, 33, 44, (238,12,0): 50, 34, 45, (238,13,0): 50, 34, 45, (238,14,0): 51, 35, 46, (238,15,0): 51, 35, 46, (238,16,0): 50, 34, 45, (238,17,0): 50, 34, 45, (238,18,0): 50, 34, 45, (238,19,0): 51, 35, 46, (238,20,0): 51, 35, 46, (238,21,0): 52, 36, 47, (238,22,0): 52, 36, 47, (238,23,0): 52, 36, 47, (238,24,0): 52, 36, 47, (238,25,0): 53, 37, 48, (238,26,0): 55, 39, 50, (238,27,0): 56, 40, 51, (238,28,0): 57, 41, 52, (238,29,0): 57, 41, 52, (238,30,0): 56, 40, 51, (238,31,0): 56, 39, 49, (238,32,0): 60, 40, 49, (238,33,0): 62, 41, 48, (238,34,0): 62, 41, 48, (238,35,0): 62, 41, 48, (238,36,0): 63, 42, 49, (238,37,0): 64, 43, 50, (238,38,0): 64, 43, 50, (238,39,0): 64, 43, 50, (238,40,0): 64, 43, 50, (238,41,0): 64, 43, 50, (238,42,0): 65, 44, 51, (238,43,0): 65, 44, 51, (238,44,0): 66, 45, 52, (238,45,0): 66, 45, 52, (238,46,0): 67, 46, 53, (238,47,0): 67, 46, 53, (238,48,0): 67, 48, 52, (238,49,0): 68, 49, 51, (238,50,0): 69, 49, 51, (238,51,0): 71, 51, 53, (238,52,0): 73, 51, 54, (238,53,0): 74, 52, 55, (238,54,0): 76, 51, 54, (238,55,0): 78, 52, 55, (238,56,0): 79, 50, 52, (238,57,0): 80, 51, 53, (238,58,0): 81, 51, 51, (238,59,0): 81, 51, 51, (238,60,0): 82, 50, 51, (238,61,0): 82, 48, 49, (238,62,0): 81, 47, 48, (238,63,0): 80, 46, 47, (238,64,0): 80, 48, 49, (238,65,0): 80, 48, 49, (238,66,0): 80, 48, 49, (238,67,0): 80, 48, 49, (238,68,0): 80, 49, 47, (238,69,0): 80, 49, 47, (238,70,0): 80, 49, 47, (238,71,0): 80, 49, 47, (238,72,0): 84, 53, 50, (238,73,0): 84, 53, 50, (238,74,0): 85, 54, 49, (238,75,0): 85, 54, 49, (238,76,0): 86, 55, 50, (238,77,0): 86, 55, 50, (238,78,0): 87, 57, 49, (238,79,0): 87, 57, 49, (238,80,0): 90, 55, 49, (238,81,0): 90, 55, 49, (238,82,0): 89, 54, 48, (238,83,0): 89, 54, 48, (238,84,0): 89, 54, 48, (238,85,0): 89, 54, 48, (238,86,0): 90, 55, 49, (238,87,0): 90, 55, 49, (238,88,0): 88, 53, 47, (238,89,0): 88, 53, 47, (238,90,0): 87, 52, 46, (238,91,0): 87, 52, 46, (238,92,0): 86, 51, 45, (238,93,0): 86, 51, 45, (238,94,0): 85, 50, 44, (238,95,0): 87, 49, 46, (238,96,0): 90, 46, 47, (238,97,0): 91, 45, 47, (238,98,0): 93, 47, 49, (238,99,0): 94, 48, 48, (238,100,0): 96, 50, 50, (238,101,0): 97, 52, 49, (238,102,0): 98, 53, 48, (238,103,0): 99, 54, 48, (238,104,0): 98, 54, 45, (238,105,0): 98, 54, 43, (238,106,0): 98, 54, 41, (238,107,0): 99, 56, 40, (238,108,0): 99, 56, 40, (238,109,0): 100, 57, 40, (238,110,0): 100, 57, 40, (238,111,0): 100, 57, 40, (238,112,0): 98, 55, 39, (238,113,0): 97, 54, 38, (238,114,0): 95, 53, 37, (238,115,0): 94, 52, 36, (238,116,0): 91, 52, 35, (238,117,0): 90, 51, 34, (238,118,0): 88, 51, 35, (238,119,0): 87, 51, 35, (238,120,0): 86, 53, 38, (238,121,0): 84, 52, 37, (238,122,0): 82, 53, 39, (238,123,0): 80, 52, 38, (238,124,0): 77, 51, 36, (238,125,0): 74, 51, 35, (238,126,0): 74, 51, 35, (238,127,0): 73, 50, 36, (238,128,0): 76, 49, 38, (238,129,0): 77, 49, 38, (238,130,0): 76, 48, 37, (238,131,0): 76, 48, 37, (238,132,0): 75, 47, 36, (238,133,0): 75, 47, 36, (238,134,0): 74, 46, 35, (238,135,0): 74, 46, 35, (238,136,0): 73, 45, 34, (238,137,0): 73, 45, 34, (238,138,0): 73, 45, 34, (238,139,0): 73, 45, 34, (238,140,0): 73, 45, 34, (238,141,0): 73, 45, 34, (238,142,0): 73, 45, 34, (238,143,0): 73, 45, 34, (238,144,0): 72, 42, 32, (238,145,0): 74, 41, 32, (238,146,0): 74, 41, 32, (238,147,0): 75, 42, 33, (238,148,0): 75, 42, 33, (238,149,0): 76, 43, 34, (238,150,0): 76, 43, 34, (238,151,0): 77, 44, 35, (238,152,0): 78, 45, 36, (238,153,0): 78, 45, 36, (238,154,0): 77, 44, 35, (238,155,0): 77, 44, 35, (238,156,0): 76, 43, 34, (238,157,0): 76, 43, 34, (238,158,0): 76, 43, 34, (238,159,0): 75, 42, 33, (238,160,0): 79, 45, 35, (238,161,0): 79, 45, 33, (238,162,0): 78, 44, 32, (238,163,0): 78, 44, 32, (238,164,0): 77, 43, 31, (238,165,0): 77, 43, 31, (238,166,0): 76, 42, 30, (238,167,0): 76, 42, 30, (238,168,0): 72, 38, 26, (238,169,0): 72, 38, 26, (238,170,0): 72, 38, 26, (238,171,0): 72, 38, 26, (238,172,0): 72, 38, 26, (238,173,0): 72, 38, 26, (238,174,0): 72, 38, 26, (238,175,0): 71, 39, 28, (238,176,0): 71, 41, 31, (238,177,0): 68, 40, 29, (238,178,0): 67, 39, 28, (238,179,0): 65, 37, 26, (238,180,0): 65, 37, 26, (238,181,0): 65, 37, 26, (238,182,0): 66, 38, 27, (238,183,0): 67, 39, 28, (238,184,0): 66, 38, 27, (238,185,0): 66, 38, 27, (238,186,0): 65, 37, 26, (238,187,0): 64, 36, 25, (238,188,0): 63, 35, 24, (238,189,0): 62, 34, 23, (238,190,0): 61, 33, 22, (238,191,0): 59, 32, 21, (238,192,0): 62, 35, 28, (238,193,0): 59, 34, 27, (238,194,0): 57, 32, 25, (238,195,0): 56, 31, 24, (238,196,0): 56, 31, 24, (238,197,0): 56, 31, 24, (238,198,0): 57, 32, 25, (238,199,0): 57, 32, 25, (238,200,0): 56, 31, 24, (238,201,0): 57, 32, 25, (238,202,0): 58, 33, 26, (238,203,0): 59, 34, 27, (238,204,0): 61, 36, 29, (238,205,0): 63, 38, 31, (238,206,0): 64, 39, 32, (238,207,0): 67, 40, 31, (238,208,0): 71, 43, 29, (238,209,0): 74, 45, 27, (238,210,0): 79, 48, 30, (238,211,0): 82, 51, 33, (238,212,0): 84, 53, 35, (238,213,0): 84, 53, 33, (238,214,0): 84, 51, 32, (238,215,0): 83, 51, 30, (238,216,0): 90, 55, 33, (238,217,0): 91, 56, 34, (238,218,0): 93, 59, 34, (238,219,0): 94, 60, 33, (238,220,0): 96, 60, 34, (238,221,0): 96, 60, 34, (238,222,0): 95, 59, 33, (238,223,0): 94, 60, 32, (238,224,0): 91, 57, 29, (238,225,0): 88, 57, 28, (238,226,0): 88, 57, 28, (238,227,0): 89, 58, 27, (238,228,0): 90, 59, 28, (238,229,0): 92, 62, 28, (238,230,0): 95, 65, 31, (238,231,0): 96, 66, 30, (238,232,0): 91, 61, 25, (238,233,0): 97, 67, 31, (238,234,0): 105, 75, 37, (238,235,0): 111, 81, 43, (238,236,0): 114, 85, 45, (238,237,0): 118, 89, 49, (238,238,0): 123, 94, 52, (238,239,0): 127, 98, 58, (238,240,0): 126, 98, 59, (238,241,0): 125, 100, 60, (238,242,0): 127, 102, 61, (238,243,0): 129, 108, 61, (238,244,0): 135, 115, 62, (238,245,0): 142, 123, 65, (238,246,0): 149, 129, 66, (238,247,0): 155, 132, 65, (238,248,0): 165, 138, 67, (238,249,0): 173, 143, 70, (238,250,0): 182, 150, 77, (238,251,0): 188, 156, 81, (238,252,0): 191, 159, 82, (238,253,0): 191, 162, 82, (238,254,0): 193, 166, 85, (238,255,0): 192, 171, 88, (238,256,0): 186, 171, 88, (238,257,0): 184, 172, 88, (238,258,0): 184, 172, 88, (238,259,0): 184, 172, 90, (238,260,0): 182, 171, 91, (238,261,0): 182, 171, 91, (238,262,0): 181, 170, 91, (238,263,0): 181, 169, 93, (238,264,0): 176, 167, 92, (238,265,0): 171, 161, 89, (238,266,0): 163, 155, 83, (238,267,0): 156, 148, 76, (238,268,0): 152, 143, 74, (238,269,0): 156, 147, 80, (238,270,0): 165, 158, 90, (238,271,0): 169, 167, 92, (238,272,0): 171, 181, 92, (238,273,0): 178, 189, 95, (238,274,0): 192, 195, 104, (238,275,0): 203, 199, 110, (238,276,0): 206, 194, 108, (238,277,0): 198, 180, 96, (238,278,0): 184, 161, 81, (238,279,0): 172, 149, 69, (238,280,0): 166, 143, 65, (238,281,0): 165, 144, 65, (238,282,0): 164, 145, 69, (238,283,0): 165, 147, 71, (238,284,0): 165, 149, 74, (238,285,0): 167, 150, 78, (238,286,0): 169, 150, 81, (238,287,0): 169, 150, 82, (238,288,0): 167, 143, 83, (238,289,0): 167, 142, 86, (238,290,0): 165, 143, 86, (238,291,0): 164, 142, 85, (238,292,0): 164, 141, 87, (238,293,0): 163, 140, 86, (238,294,0): 162, 141, 88, (238,295,0): 161, 140, 87, (238,296,0): 156, 136, 85, (238,297,0): 154, 134, 83, (238,298,0): 152, 132, 82, (238,299,0): 149, 129, 79, (238,300,0): 144, 126, 76, (238,301,0): 142, 124, 74, (238,302,0): 141, 123, 75, (238,303,0): 140, 122, 76, (238,304,0): 137, 120, 77, (238,305,0): 136, 119, 76, (238,306,0): 132, 117, 76, (238,307,0): 128, 113, 74, (238,308,0): 123, 107, 71, (238,309,0): 118, 102, 68, (238,310,0): 112, 97, 64, (238,311,0): 109, 94, 65, (238,312,0): 100, 86, 59, (238,313,0): 99, 84, 61, (238,314,0): 98, 83, 62, (238,315,0): 98, 83, 64, (238,316,0): 96, 83, 66, (238,317,0): 96, 83, 67, (238,318,0): 97, 83, 70, (238,319,0): 100, 84, 71, (238,320,0): 100, 82, 68, (238,321,0): 99, 81, 67, (238,322,0): 99, 80, 65, (238,323,0): 97, 78, 63, (238,324,0): 93, 74, 57, (238,325,0): 89, 71, 51, (238,326,0): 86, 68, 48, (238,327,0): 84, 66, 46, (238,328,0): 79, 58, 41, (238,329,0): 77, 55, 41, (238,330,0): 74, 52, 39, (238,331,0): 70, 47, 39, (238,332,0): 66, 42, 38, (238,333,0): 63, 39, 37, (238,334,0): 61, 35, 36, (238,335,0): 58, 34, 32, (238,336,0): 57, 34, 26, (238,337,0): 58, 36, 25, (238,338,0): 59, 37, 26, (238,339,0): 58, 38, 27, (238,340,0): 58, 38, 29, (238,341,0): 56, 38, 28, (238,342,0): 54, 37, 27, (238,343,0): 51, 37, 26, (238,344,0): 55, 41, 30, (238,345,0): 53, 40, 31, (238,346,0): 50, 40, 30, (238,347,0): 50, 42, 31, (238,348,0): 52, 44, 33, (238,349,0): 54, 48, 36, (238,350,0): 59, 51, 40, (238,351,0): 67, 50, 40, (238,352,0): 104, 71, 62, (238,353,0): 106, 68, 59, (238,354,0): 101, 69, 58, (238,355,0): 99, 73, 60, (238,356,0): 97, 80, 64, (238,357,0): 100, 89, 69, (238,358,0): 102, 100, 77, (238,359,0): 102, 106, 81, (238,360,0): 102, 113, 83, (238,361,0): 104, 117, 87, (238,362,0): 108, 122, 89, (238,363,0): 109, 124, 91, (238,364,0): 110, 124, 91, (238,365,0): 110, 124, 91, (238,366,0): 114, 125, 93, (238,367,0): 116, 127, 97, (238,368,0): 117, 129, 105, (238,369,0): 116, 128, 106, (238,370,0): 116, 128, 106, (238,371,0): 115, 129, 106, (238,372,0): 116, 130, 107, (238,373,0): 117, 132, 109, (238,374,0): 117, 135, 113, (238,375,0): 119, 137, 115, (238,376,0): 120, 139, 119, (238,377,0): 120, 142, 121, (238,378,0): 122, 145, 125, (238,379,0): 124, 147, 127, (238,380,0): 125, 150, 129, (238,381,0): 130, 155, 134, (238,382,0): 137, 162, 141, (238,383,0): 140, 168, 145, (238,384,0): 144, 179, 149, (238,385,0): 148, 188, 154, (238,386,0): 157, 196, 167, (238,387,0): 161, 204, 177, (238,388,0): 165, 208, 188, (238,389,0): 166, 213, 195, (238,390,0): 169, 217, 205, (238,391,0): 170, 221, 212, (238,392,0): 181, 231, 228, (238,393,0): 183, 235, 233, (238,394,0): 186, 236, 235, (238,395,0): 185, 236, 237, (238,396,0): 185, 235, 236, (238,397,0): 186, 236, 237, (238,398,0): 189, 239, 240, (238,399,0): 189, 243, 243, (238,400,0): 187, 251, 251, (238,401,0): 183, 253, 253, (238,402,0): 184, 254, 254, (238,403,0): 184, 254, 254, (238,404,0): 185, 255, 255, (238,405,0): 185, 255, 255, (238,406,0): 185, 255, 255, (238,407,0): 186, 255, 255, (238,408,0): 186, 255, 255, (238,409,0): 186, 255, 255, (238,410,0): 186, 255, 255, (238,411,0): 186, 255, 255, (238,412,0): 186, 255, 255, (238,413,0): 186, 255, 255, (238,414,0): 186, 255, 255, (238,415,0): 187, 255, 255, (238,416,0): 188, 252, 255, (238,417,0): 183, 247, 255, (238,418,0): 177, 239, 252, (238,419,0): 169, 231, 246, (238,420,0): 163, 222, 240, (238,421,0): 157, 214, 234, (238,422,0): 154, 208, 234, (238,423,0): 152, 206, 232, (238,424,0): 154, 204, 231, (238,425,0): 153, 203, 230, (238,426,0): 155, 200, 229, (238,427,0): 153, 198, 227, (238,428,0): 151, 195, 222, (238,429,0): 151, 192, 220, (238,430,0): 150, 190, 216, (238,431,0): 148, 190, 214, (238,432,0): 140, 185, 206, (238,433,0): 136, 181, 202, (238,434,0): 134, 177, 196, (238,435,0): 133, 176, 195, (238,436,0): 136, 177, 197, (238,437,0): 137, 178, 196, (238,438,0): 138, 176, 195, (238,439,0): 137, 174, 192, (238,440,0): 136, 171, 190, (238,441,0): 136, 172, 188, (238,442,0): 137, 168, 186, (238,443,0): 134, 166, 181, (238,444,0): 131, 160, 176, (238,445,0): 125, 154, 170, (238,446,0): 119, 148, 164, (238,447,0): 118, 144, 157, (238,448,0): 122, 145, 153, (238,449,0): 126, 145, 152, (238,450,0): 128, 148, 157, (238,451,0): 133, 153, 162, (238,452,0): 135, 157, 170, (238,453,0): 135, 157, 170, (238,454,0): 131, 152, 169, (238,455,0): 127, 148, 165, (238,456,0): 122, 141, 158, (238,457,0): 117, 134, 152, (238,458,0): 110, 126, 142, (238,459,0): 106, 119, 136, (238,460,0): 106, 115, 132, (238,461,0): 105, 112, 128, (238,462,0): 103, 109, 125, (238,463,0): 101, 107, 121, (238,464,0): 106, 109, 124, (238,465,0): 102, 105, 120, (238,466,0): 98, 100, 115, (238,467,0): 95, 97, 112, (238,468,0): 93, 95, 108, (238,469,0): 91, 93, 106, (238,470,0): 90, 89, 103, (238,471,0): 87, 87, 99, (238,472,0): 82, 80, 93, (238,473,0): 83, 81, 94, (238,474,0): 83, 81, 92, (238,475,0): 83, 81, 92, (238,476,0): 84, 81, 90, (238,477,0): 84, 81, 90, (238,478,0): 84, 81, 90, (238,479,0): 83, 82, 90, (238,480,0): 84, 84, 94, (238,481,0): 82, 85, 94, (238,482,0): 82, 86, 97, (238,483,0): 84, 88, 99, (238,484,0): 85, 91, 103, (238,485,0): 88, 94, 106, (238,486,0): 89, 97, 110, (238,487,0): 90, 99, 114, (238,488,0): 92, 104, 120, (238,489,0): 94, 106, 122, (238,490,0): 98, 111, 128, (238,491,0): 103, 119, 135, (238,492,0): 110, 125, 144, (238,493,0): 117, 132, 151, (238,494,0): 121, 138, 158, (238,495,0): 123, 141, 161, (238,496,0): 128, 149, 166, (238,497,0): 131, 154, 170, (238,498,0): 137, 160, 176, (238,499,0): 137, 163, 180, (238,500,0): 138, 163, 183, (238,501,0): 139, 166, 187, (238,502,0): 141, 169, 191, (238,503,0): 143, 171, 193, (238,504,0): 143, 173, 197, (238,505,0): 148, 178, 202, (238,506,0): 148, 180, 203, (238,507,0): 147, 179, 200, (238,508,0): 146, 181, 200, (238,509,0): 147, 183, 199, (238,510,0): 140, 177, 193, (238,511,0): 131, 167, 179, (238,512,0): 129, 161, 172, (238,513,0): 125, 153, 164, (238,514,0): 117, 144, 155, (238,515,0): 116, 138, 151, (238,516,0): 119, 137, 149, (238,517,0): 121, 135, 148, (238,518,0): 118, 130, 144, (238,519,0): 116, 123, 139, (238,520,0): 109, 115, 129, (238,521,0): 102, 105, 120, (238,522,0): 98, 100, 113, (238,523,0): 103, 102, 116, (238,524,0): 106, 105, 119, (238,525,0): 105, 104, 118, (238,526,0): 106, 106, 118, (238,527,0): 108, 110, 122, (238,528,0): 113, 117, 128, (238,529,0): 112, 121, 130, (238,530,0): 115, 123, 134, (238,531,0): 115, 125, 135, (238,532,0): 113, 125, 139, (238,533,0): 115, 128, 144, (238,534,0): 117, 133, 149, (238,535,0): 119, 137, 157, (238,536,0): 125, 146, 167, (238,537,0): 126, 151, 173, (238,538,0): 129, 153, 177, (238,539,0): 127, 155, 179, (238,540,0): 125, 152, 181, (238,541,0): 121, 151, 179, (238,542,0): 120, 151, 180, (238,543,0): 121, 152, 180, (238,544,0): 123, 151, 175, (238,545,0): 122, 148, 171, (238,546,0): 118, 144, 167, (238,547,0): 114, 140, 163, (238,548,0): 111, 137, 160, (238,549,0): 108, 134, 157, (238,550,0): 106, 132, 155, (238,551,0): 106, 132, 155, (238,552,0): 108, 134, 157, (238,553,0): 108, 134, 157, (238,554,0): 108, 134, 157, (238,555,0): 108, 134, 157, (238,556,0): 107, 133, 156, (238,557,0): 107, 133, 156, (238,558,0): 107, 133, 156, (238,559,0): 107, 132, 152, (238,560,0): 113, 130, 148, (238,561,0): 115, 131, 146, (238,562,0): 118, 131, 147, (238,563,0): 118, 131, 147, (238,564,0): 117, 130, 147, (238,565,0): 115, 128, 145, (238,566,0): 112, 125, 142, (238,567,0): 110, 123, 140, (238,568,0): 111, 124, 143, (238,569,0): 109, 122, 141, (238,570,0): 107, 120, 139, (238,571,0): 104, 117, 136, (238,572,0): 100, 112, 134, (238,573,0): 97, 109, 131, (238,574,0): 95, 107, 129, (238,575,0): 93, 105, 127, (238,576,0): 95, 105, 130, (238,577,0): 95, 105, 130, (238,578,0): 94, 104, 129, (238,579,0): 94, 105, 127, (238,580,0): 95, 103, 126, (238,581,0): 95, 103, 126, (238,582,0): 96, 102, 124, (238,583,0): 95, 101, 123, (238,584,0): 98, 104, 126, (238,585,0): 98, 105, 124, (238,586,0): 99, 104, 124, (238,587,0): 99, 104, 124, (238,588,0): 100, 103, 122, (238,589,0): 98, 101, 120, (238,590,0): 96, 99, 118, (238,591,0): 95, 98, 115, (238,592,0): 93, 92, 108, (238,593,0): 89, 88, 102, (238,594,0): 84, 82, 95, (238,595,0): 81, 78, 89, (238,596,0): 80, 74, 86, (238,597,0): 76, 70, 80, (238,598,0): 72, 65, 73, (238,599,0): 68, 61, 69, (239,0,0): 46, 30, 41, (239,1,0): 44, 31, 41, (239,2,0): 45, 29, 40, (239,3,0): 43, 30, 40, (239,4,0): 45, 29, 40, (239,5,0): 47, 31, 42, (239,6,0): 48, 32, 43, (239,7,0): 49, 33, 44, (239,8,0): 48, 32, 43, (239,9,0): 48, 32, 43, (239,10,0): 49, 33, 44, (239,11,0): 49, 33, 44, (239,12,0): 50, 34, 45, (239,13,0): 50, 34, 45, (239,14,0): 51, 35, 46, (239,15,0): 51, 35, 46, (239,16,0): 50, 34, 44, (239,17,0): 50, 34, 44, (239,18,0): 50, 34, 44, (239,19,0): 51, 35, 45, (239,20,0): 51, 35, 45, (239,21,0): 52, 36, 46, (239,22,0): 52, 36, 47, (239,23,0): 52, 36, 47, (239,24,0): 53, 37, 48, (239,25,0): 54, 38, 49, (239,26,0): 55, 39, 50, (239,27,0): 56, 40, 51, (239,28,0): 57, 41, 52, (239,29,0): 57, 41, 52, (239,30,0): 56, 40, 51, (239,31,0): 56, 39, 49, (239,32,0): 61, 41, 50, (239,33,0): 62, 43, 49, (239,34,0): 63, 42, 49, (239,35,0): 62, 43, 49, (239,36,0): 64, 43, 50, (239,37,0): 64, 43, 50, (239,38,0): 65, 44, 51, (239,39,0): 65, 44, 51, (239,40,0): 65, 44, 51, (239,41,0): 65, 44, 49, (239,42,0): 66, 45, 50, (239,43,0): 66, 45, 50, (239,44,0): 67, 46, 51, (239,45,0): 67, 46, 51, (239,46,0): 68, 47, 52, (239,47,0): 68, 47, 52, (239,48,0): 71, 49, 52, (239,49,0): 71, 49, 52, (239,50,0): 72, 50, 53, (239,51,0): 75, 50, 54, (239,52,0): 76, 51, 55, (239,53,0): 78, 51, 56, (239,54,0): 79, 53, 56, (239,55,0): 81, 52, 56, (239,56,0): 80, 51, 53, (239,57,0): 81, 51, 53, (239,58,0): 82, 52, 54, (239,59,0): 83, 51, 52, (239,60,0): 82, 50, 53, (239,61,0): 82, 48, 49, (239,62,0): 80, 45, 49, (239,63,0): 77, 45, 48, (239,64,0): 80, 48, 51, (239,65,0): 79, 49, 51, (239,66,0): 80, 48, 51, (239,67,0): 80, 48, 49, (239,68,0): 80, 49, 47, (239,69,0): 80, 49, 47, (239,70,0): 80, 49, 46, (239,71,0): 80, 49, 46, (239,72,0): 85, 54, 51, (239,73,0): 85, 54, 49, (239,74,0): 86, 55, 50, (239,75,0): 86, 56, 48, (239,76,0): 87, 57, 49, (239,77,0): 87, 57, 49, (239,78,0): 88, 58, 50, (239,79,0): 90, 57, 50, (239,80,0): 91, 56, 50, (239,81,0): 92, 55, 49, (239,82,0): 91, 54, 48, (239,83,0): 91, 54, 48, (239,84,0): 91, 54, 48, (239,85,0): 91, 54, 48, (239,86,0): 92, 55, 49, (239,87,0): 93, 56, 50, (239,88,0): 90, 53, 47, (239,89,0): 90, 53, 47, (239,90,0): 90, 53, 47, (239,91,0): 89, 52, 46, (239,92,0): 89, 52, 46, (239,93,0): 88, 51, 45, (239,94,0): 88, 51, 45, (239,95,0): 88, 49, 44, (239,96,0): 89, 45, 42, (239,97,0): 90, 46, 43, (239,98,0): 92, 46, 46, (239,99,0): 93, 49, 46, (239,100,0): 96, 51, 46, (239,101,0): 97, 54, 48, (239,102,0): 100, 55, 49, (239,103,0): 100, 57, 48, (239,104,0): 98, 54, 43, (239,105,0): 97, 55, 43, (239,106,0): 99, 55, 42, (239,107,0): 98, 56, 40, (239,108,0): 100, 57, 41, (239,109,0): 99, 57, 41, (239,110,0): 101, 58, 41, (239,111,0): 101, 58, 41, (239,112,0): 98, 55, 39, (239,113,0): 97, 55, 39, (239,114,0): 96, 54, 38, (239,115,0): 95, 53, 37, (239,116,0): 92, 53, 36, (239,117,0): 91, 52, 35, (239,118,0): 89, 52, 36, (239,119,0): 88, 52, 36, (239,120,0): 86, 53, 36, (239,121,0): 85, 53, 38, (239,122,0): 82, 53, 37, (239,123,0): 81, 52, 36, (239,124,0): 79, 52, 35, (239,125,0): 77, 51, 34, (239,126,0): 76, 50, 33, (239,127,0): 76, 50, 35, (239,128,0): 78, 50, 38, (239,129,0): 78, 50, 39, (239,130,0): 77, 49, 38, (239,131,0): 77, 49, 38, (239,132,0): 76, 48, 37, (239,133,0): 76, 48, 37, (239,134,0): 75, 47, 36, (239,135,0): 75, 47, 36, (239,136,0): 74, 46, 35, (239,137,0): 74, 46, 35, (239,138,0): 74, 46, 35, (239,139,0): 74, 46, 35, (239,140,0): 74, 46, 35, (239,141,0): 74, 46, 35, (239,142,0): 74, 46, 35, (239,143,0): 74, 46, 35, (239,144,0): 72, 42, 32, (239,145,0): 72, 42, 32, (239,146,0): 73, 43, 33, (239,147,0): 73, 43, 33, (239,148,0): 74, 44, 34, (239,149,0): 76, 43, 34, (239,150,0): 77, 44, 35, (239,151,0): 77, 44, 35, (239,152,0): 78, 45, 36, (239,153,0): 78, 45, 36, (239,154,0): 78, 45, 36, (239,155,0): 77, 44, 35, (239,156,0): 77, 44, 35, (239,157,0): 76, 43, 34, (239,158,0): 76, 43, 34, (239,159,0): 75, 43, 32, (239,160,0): 78, 46, 35, (239,161,0): 78, 46, 33, (239,162,0): 79, 45, 33, (239,163,0): 77, 45, 32, (239,164,0): 78, 44, 32, (239,165,0): 76, 44, 31, (239,166,0): 77, 43, 31, (239,167,0): 75, 43, 30, (239,168,0): 72, 38, 26, (239,169,0): 71, 39, 26, (239,170,0): 72, 38, 26, (239,171,0): 71, 39, 26, (239,172,0): 72, 38, 26, (239,173,0): 71, 39, 26, (239,174,0): 72, 38, 26, (239,175,0): 71, 39, 28, (239,176,0): 70, 42, 30, (239,177,0): 69, 41, 29, (239,178,0): 66, 38, 27, (239,179,0): 65, 37, 25, (239,180,0): 64, 36, 25, (239,181,0): 65, 37, 25, (239,182,0): 66, 38, 27, (239,183,0): 67, 39, 27, (239,184,0): 66, 38, 27, (239,185,0): 66, 38, 26, (239,186,0): 65, 37, 26, (239,187,0): 64, 36, 24, (239,188,0): 63, 35, 24, (239,189,0): 62, 34, 22, (239,190,0): 61, 33, 22, (239,191,0): 60, 33, 22, (239,192,0): 62, 35, 28, (239,193,0): 59, 34, 27, (239,194,0): 60, 33, 26, (239,195,0): 56, 31, 24, (239,196,0): 58, 31, 24, (239,197,0): 56, 31, 24, (239,198,0): 57, 32, 25, (239,199,0): 57, 32, 25, (239,200,0): 57, 32, 25, (239,201,0): 57, 33, 23, (239,202,0): 59, 34, 27, (239,203,0): 61, 37, 27, (239,204,0): 63, 39, 29, (239,205,0): 64, 40, 30, (239,206,0): 66, 42, 32, (239,207,0): 69, 42, 31, (239,208,0): 72, 43, 29, (239,209,0): 77, 46, 28, (239,210,0): 82, 51, 33, (239,211,0): 86, 55, 37, (239,212,0): 87, 56, 36, (239,213,0): 86, 55, 34, (239,214,0): 85, 53, 32, (239,215,0): 83, 51, 28, (239,216,0): 89, 57, 34, (239,217,0): 90, 58, 33, (239,218,0): 91, 59, 34, (239,219,0): 92, 61, 33, (239,220,0): 95, 61, 34, (239,221,0): 95, 61, 34, (239,222,0): 94, 60, 33, (239,223,0): 91, 60, 32, (239,224,0): 88, 57, 29, (239,225,0): 86, 56, 28, (239,226,0): 86, 55, 26, (239,227,0): 86, 57, 27, (239,228,0): 88, 57, 26, (239,229,0): 91, 62, 28, (239,230,0): 96, 66, 30, (239,231,0): 97, 69, 30, (239,232,0): 95, 66, 26, (239,233,0): 101, 73, 33, (239,234,0): 110, 81, 39, (239,235,0): 116, 89, 44, (239,236,0): 121, 93, 46, (239,237,0): 125, 99, 50, (239,238,0): 131, 103, 55, (239,239,0): 135, 108, 61, (239,240,0): 136, 109, 64, (239,241,0): 136, 109, 66, (239,242,0): 135, 111, 63, (239,243,0): 136, 115, 62, (239,244,0): 138, 119, 61, (239,245,0): 144, 124, 63, (239,246,0): 149, 128, 63, (239,247,0): 153, 130, 62, (239,248,0): 163, 139, 67, (239,249,0): 172, 144, 70, (239,250,0): 181, 152, 76, (239,251,0): 187, 158, 82, (239,252,0): 191, 162, 84, (239,253,0): 193, 166, 87, (239,254,0): 196, 171, 91, (239,255,0): 196, 175, 94, (239,256,0): 194, 179, 94, (239,257,0): 192, 180, 94, (239,258,0): 192, 180, 96, (239,259,0): 191, 179, 95, (239,260,0): 189, 176, 97, (239,261,0): 186, 175, 96, (239,262,0): 186, 172, 97, (239,263,0): 184, 172, 98, (239,264,0): 181, 169, 97, (239,265,0): 175, 165, 94, (239,266,0): 167, 157, 86, (239,267,0): 158, 149, 80, (239,268,0): 154, 145, 76, (239,269,0): 157, 150, 80, (239,270,0): 167, 160, 90, (239,271,0): 170, 171, 93, (239,272,0): 173, 183, 94, (239,273,0): 179, 190, 96, (239,274,0): 193, 198, 106, (239,275,0): 206, 205, 113, (239,276,0): 214, 204, 117, (239,277,0): 207, 192, 107, (239,278,0): 192, 174, 90, (239,279,0): 178, 160, 76, (239,280,0): 171, 154, 72, (239,281,0): 170, 155, 72, (239,282,0): 168, 156, 74, (239,283,0): 168, 156, 74, (239,284,0): 168, 155, 76, (239,285,0): 168, 155, 77, (239,286,0): 169, 153, 76, (239,287,0): 170, 152, 78, (239,288,0): 169, 146, 78, (239,289,0): 169, 145, 81, (239,290,0): 169, 145, 81, (239,291,0): 169, 145, 81, (239,292,0): 170, 144, 83, (239,293,0): 170, 144, 85, (239,294,0): 170, 144, 87, (239,295,0): 170, 143, 88, (239,296,0): 165, 140, 86, (239,297,0): 161, 138, 84, (239,298,0): 159, 136, 84, (239,299,0): 155, 133, 83, (239,300,0): 151, 131, 80, (239,301,0): 147, 130, 78, (239,302,0): 146, 128, 78, (239,303,0): 145, 127, 79, (239,304,0): 143, 125, 79, (239,305,0): 141, 122, 79, (239,306,0): 138, 119, 77, (239,307,0): 133, 116, 73, (239,308,0): 127, 109, 69, (239,309,0): 122, 104, 66, (239,310,0): 115, 99, 65, (239,311,0): 111, 96, 63, (239,312,0): 102, 87, 58, (239,313,0): 101, 87, 60, (239,314,0): 100, 85, 62, (239,315,0): 99, 84, 63, (239,316,0): 97, 84, 65, (239,317,0): 98, 85, 68, (239,318,0): 99, 86, 70, (239,319,0): 101, 85, 70, (239,320,0): 101, 83, 71, (239,321,0): 101, 81, 70, (239,322,0): 99, 80, 66, (239,323,0): 96, 77, 62, (239,324,0): 92, 73, 58, (239,325,0): 87, 68, 51, (239,326,0): 83, 64, 47, (239,327,0): 81, 62, 45, (239,328,0): 76, 55, 38, (239,329,0): 74, 52, 38, (239,330,0): 72, 50, 37, (239,331,0): 68, 45, 37, (239,332,0): 64, 40, 36, (239,333,0): 61, 37, 35, (239,334,0): 58, 34, 34, (239,335,0): 57, 33, 33, (239,336,0): 56, 33, 27, (239,337,0): 55, 35, 26, (239,338,0): 59, 36, 28, (239,339,0): 58, 38, 29, (239,340,0): 58, 38, 31, (239,341,0): 56, 37, 30, (239,342,0): 53, 36, 28, (239,343,0): 52, 35, 27, (239,344,0): 54, 40, 31, (239,345,0): 53, 38, 31, (239,346,0): 51, 38, 30, (239,347,0): 49, 39, 30, (239,348,0): 51, 41, 32, (239,349,0): 53, 44, 35, (239,350,0): 57, 48, 39, (239,351,0): 65, 48, 40, (239,352,0): 99, 69, 61, (239,353,0): 99, 62, 54, (239,354,0): 90, 57, 48, (239,355,0): 83, 56, 45, (239,356,0): 81, 62, 48, (239,357,0): 85, 73, 57, (239,358,0): 91, 86, 66, (239,359,0): 93, 95, 73, (239,360,0): 101, 107, 81, (239,361,0): 103, 112, 85, (239,362,0): 107, 117, 90, (239,363,0): 109, 120, 90, (239,364,0): 109, 119, 92, (239,365,0): 110, 119, 90, (239,366,0): 112, 121, 94, (239,367,0): 114, 123, 96, (239,368,0): 115, 125, 101, (239,369,0): 114, 123, 102, (239,370,0): 113, 122, 101, (239,371,0): 112, 121, 100, (239,372,0): 111, 123, 101, (239,373,0): 112, 124, 104, (239,374,0): 114, 127, 107, (239,375,0): 114, 129, 110, (239,376,0): 111, 126, 107, (239,377,0): 111, 128, 110, (239,378,0): 111, 132, 113, (239,379,0): 112, 135, 117, (239,380,0): 115, 138, 120, (239,381,0): 119, 144, 125, (239,382,0): 126, 151, 132, (239,383,0): 128, 157, 135, (239,384,0): 142, 178, 150, (239,385,0): 146, 187, 157, (239,386,0): 153, 196, 169, (239,387,0): 160, 204, 181, (239,388,0): 164, 208, 191, (239,389,0): 164, 212, 200, (239,390,0): 165, 216, 207, (239,391,0): 167, 220, 214, (239,392,0): 178, 230, 228, (239,393,0): 179, 234, 231, (239,394,0): 181, 235, 235, (239,395,0): 181, 235, 235, (239,396,0): 180, 234, 236, (239,397,0): 180, 234, 236, (239,398,0): 186, 237, 240, (239,399,0): 186, 241, 244, (239,400,0): 186, 252, 251, (239,401,0): 183, 253, 253, (239,402,0): 183, 253, 253, (239,403,0): 184, 254, 252, (239,404,0): 184, 254, 252, (239,405,0): 185, 255, 253, (239,406,0): 185, 255, 253, (239,407,0): 186, 255, 254, (239,408,0): 186, 255, 254, (239,409,0): 186, 255, 254, (239,410,0): 186, 255, 255, (239,411,0): 186, 255, 255, (239,412,0): 187, 255, 255, (239,413,0): 187, 255, 255, (239,414,0): 187, 255, 255, (239,415,0): 187, 254, 255, (239,416,0): 184, 248, 255, (239,417,0): 180, 242, 255, (239,418,0): 171, 233, 248, (239,419,0): 164, 223, 241, (239,420,0): 156, 214, 236, (239,421,0): 152, 208, 233, (239,422,0): 151, 205, 233, (239,423,0): 152, 203, 234, (239,424,0): 151, 200, 232, (239,425,0): 153, 199, 232, (239,426,0): 152, 197, 230, (239,427,0): 151, 194, 226, (239,428,0): 149, 190, 222, (239,429,0): 147, 186, 217, (239,430,0): 144, 183, 212, (239,431,0): 143, 183, 209, (239,432,0): 134, 179, 202, (239,433,0): 131, 176, 197, (239,434,0): 129, 171, 193, (239,435,0): 129, 172, 191, (239,436,0): 132, 173, 193, (239,437,0): 136, 174, 195, (239,438,0): 136, 174, 193, (239,439,0): 136, 173, 192, (239,440,0): 136, 169, 188, (239,441,0): 137, 168, 186, (239,442,0): 137, 166, 184, (239,443,0): 135, 162, 179, (239,444,0): 131, 157, 174, (239,445,0): 125, 151, 168, (239,446,0): 119, 145, 162, (239,447,0): 118, 141, 155, (239,448,0): 121, 141, 152, (239,449,0): 123, 141, 151, (239,450,0): 125, 145, 154, (239,451,0): 131, 151, 162, (239,452,0): 135, 154, 168, (239,453,0): 134, 153, 167, (239,454,0): 130, 149, 164, (239,455,0): 126, 145, 160, (239,456,0): 121, 138, 154, (239,457,0): 116, 132, 148, (239,458,0): 109, 122, 138, (239,459,0): 104, 116, 132, (239,460,0): 104, 111, 127, (239,461,0): 101, 109, 122, (239,462,0): 100, 106, 120, (239,463,0): 97, 103, 117, (239,464,0): 101, 105, 117, (239,465,0): 97, 101, 113, (239,466,0): 92, 96, 108, (239,467,0): 91, 93, 106, (239,468,0): 91, 93, 106, (239,469,0): 91, 93, 105, (239,470,0): 90, 92, 104, (239,471,0): 90, 90, 100, (239,472,0): 79, 79, 89, (239,473,0): 80, 78, 89, (239,474,0): 80, 78, 89, (239,475,0): 81, 80, 88, (239,476,0): 81, 80, 88, (239,477,0): 82, 79, 86, (239,478,0): 83, 80, 87, (239,479,0): 82, 81, 89, (239,480,0): 79, 82, 91, (239,481,0): 79, 83, 94, (239,482,0): 81, 85, 96, (239,483,0): 83, 87, 98, (239,484,0): 86, 90, 102, (239,485,0): 87, 93, 105, (239,486,0): 90, 96, 110, (239,487,0): 91, 99, 112, (239,488,0): 92, 101, 116, (239,489,0): 93, 105, 121, (239,490,0): 98, 109, 127, (239,491,0): 104, 117, 134, (239,492,0): 110, 126, 142, (239,493,0): 116, 133, 151, (239,494,0): 122, 139, 157, (239,495,0): 124, 143, 160, (239,496,0): 131, 152, 171, (239,497,0): 134, 157, 175, (239,498,0): 140, 161, 180, (239,499,0): 142, 165, 183, (239,500,0): 143, 165, 186, (239,501,0): 143, 168, 188, (239,502,0): 145, 172, 193, (239,503,0): 146, 174, 195, (239,504,0): 142, 173, 194, (239,505,0): 147, 178, 199, (239,506,0): 148, 180, 201, (239,507,0): 144, 179, 199, (239,508,0): 146, 181, 201, (239,509,0): 147, 184, 203, (239,510,0): 141, 178, 197, (239,511,0): 133, 169, 185, (239,512,0): 134, 164, 175, (239,513,0): 128, 155, 166, (239,514,0): 120, 144, 156, (239,515,0): 116, 138, 151, (239,516,0): 119, 137, 149, (239,517,0): 119, 135, 148, (239,518,0): 119, 131, 145, (239,519,0): 117, 127, 139, (239,520,0): 110, 118, 131, (239,521,0): 101, 107, 121, (239,522,0): 96, 100, 112, (239,523,0): 99, 101, 114, (239,524,0): 101, 103, 116, (239,525,0): 101, 103, 116, (239,526,0): 103, 105, 117, (239,527,0): 107, 109, 121, (239,528,0): 110, 114, 125, (239,529,0): 111, 118, 128, (239,530,0): 112, 121, 130, (239,531,0): 114, 122, 133, (239,532,0): 114, 124, 136, (239,533,0): 115, 127, 141, (239,534,0): 117, 133, 149, (239,535,0): 120, 137, 155, (239,536,0): 124, 145, 166, (239,537,0): 127, 149, 172, (239,538,0): 128, 152, 176, (239,539,0): 127, 153, 178, (239,540,0): 124, 151, 178, (239,541,0): 122, 149, 178, (239,542,0): 120, 149, 179, (239,543,0): 121, 151, 179, (239,544,0): 124, 150, 177, (239,545,0): 122, 148, 173, (239,546,0): 118, 144, 169, (239,547,0): 114, 140, 165, (239,548,0): 110, 136, 161, (239,549,0): 107, 133, 158, (239,550,0): 106, 130, 156, (239,551,0): 106, 130, 154, (239,552,0): 109, 133, 157, (239,553,0): 109, 133, 157, (239,554,0): 108, 132, 156, (239,555,0): 108, 132, 156, (239,556,0): 108, 132, 156, (239,557,0): 108, 133, 155, (239,558,0): 108, 133, 155, (239,559,0): 110, 132, 153, (239,560,0): 113, 130, 146, (239,561,0): 115, 131, 146, (239,562,0): 118, 131, 147, (239,563,0): 118, 131, 147, (239,564,0): 117, 130, 147, (239,565,0): 115, 128, 145, (239,566,0): 112, 125, 142, (239,567,0): 109, 125, 141, (239,568,0): 109, 124, 143, (239,569,0): 108, 123, 142, (239,570,0): 105, 120, 139, (239,571,0): 102, 117, 136, (239,572,0): 98, 113, 134, (239,573,0): 95, 110, 131, (239,574,0): 92, 107, 128, (239,575,0): 91, 106, 127, (239,576,0): 94, 106, 128, (239,577,0): 94, 106, 128, (239,578,0): 94, 106, 128, (239,579,0): 93, 105, 127, (239,580,0): 94, 105, 127, (239,581,0): 93, 104, 124, (239,582,0): 95, 103, 124, (239,583,0): 94, 102, 123, (239,584,0): 97, 105, 126, (239,585,0): 98, 106, 127, (239,586,0): 99, 106, 125, (239,587,0): 99, 106, 125, (239,588,0): 99, 104, 123, (239,589,0): 97, 102, 121, (239,590,0): 95, 100, 119, (239,591,0): 96, 99, 116, (239,592,0): 92, 91, 105, (239,593,0): 87, 87, 99, (239,594,0): 82, 80, 93, (239,595,0): 78, 75, 86, (239,596,0): 77, 71, 81, (239,597,0): 73, 68, 75, (239,598,0): 69, 62, 70, (239,599,0): 65, 58, 65, (240,0,0): 45, 32, 42, (240,1,0): 44, 32, 42, (240,2,0): 45, 32, 42, (240,3,0): 45, 33, 43, (240,4,0): 46, 33, 43, (240,5,0): 47, 34, 44, (240,6,0): 47, 34, 44, (240,7,0): 48, 35, 45, (240,8,0): 50, 34, 45, (240,9,0): 50, 34, 45, (240,10,0): 51, 33, 45, (240,11,0): 51, 33, 45, (240,12,0): 51, 33, 45, (240,13,0): 51, 33, 45, (240,14,0): 51, 33, 45, (240,15,0): 51, 34, 44, (240,16,0): 51, 34, 42, (240,17,0): 51, 34, 42, (240,18,0): 51, 34, 42, (240,19,0): 52, 35, 43, (240,20,0): 52, 35, 43, (240,21,0): 53, 36, 44, (240,22,0): 53, 36, 46, (240,23,0): 54, 37, 47, (240,24,0): 55, 38, 48, (240,25,0): 55, 38, 48, (240,26,0): 56, 39, 49, (240,27,0): 56, 39, 49, (240,28,0): 57, 39, 51, (240,29,0): 57, 39, 51, (240,30,0): 58, 40, 52, (240,31,0): 58, 41, 51, (240,32,0): 60, 43, 51, (240,33,0): 61, 44, 50, (240,34,0): 65, 46, 52, (240,35,0): 64, 47, 53, (240,36,0): 67, 48, 52, (240,37,0): 66, 47, 51, (240,38,0): 64, 45, 49, (240,39,0): 63, 44, 48, (240,40,0): 67, 46, 51, (240,41,0): 67, 47, 49, (240,42,0): 69, 47, 50, (240,43,0): 69, 47, 50, (240,44,0): 70, 48, 51, (240,45,0): 70, 48, 51, (240,46,0): 71, 49, 51, (240,47,0): 73, 48, 51, (240,48,0): 76, 50, 53, (240,49,0): 78, 49, 53, (240,50,0): 78, 49, 53, (240,51,0): 79, 48, 53, (240,52,0): 79, 48, 53, (240,53,0): 79, 48, 53, (240,54,0): 79, 48, 53, (240,55,0): 79, 48, 53, (240,56,0): 80, 49, 54, (240,57,0): 81, 49, 54, (240,58,0): 81, 49, 54, (240,59,0): 81, 49, 52, (240,60,0): 81, 49, 54, (240,61,0): 81, 49, 52, (240,62,0): 81, 49, 54, (240,63,0): 81, 49, 54, (240,64,0): 80, 49, 54, (240,65,0): 79, 50, 54, (240,66,0): 80, 49, 54, (240,67,0): 80, 50, 52, (240,68,0): 80, 50, 50, (240,69,0): 81, 52, 48, (240,70,0): 81, 52, 46, (240,71,0): 81, 52, 44, (240,72,0): 85, 55, 47, (240,73,0): 85, 55, 45, (240,74,0): 88, 55, 46, (240,75,0): 88, 55, 46, (240,76,0): 89, 56, 47, (240,77,0): 90, 57, 50, (240,78,0): 91, 58, 51, (240,79,0): 92, 57, 51, (240,80,0): 92, 53, 48, (240,81,0): 92, 53, 48, (240,82,0): 92, 53, 48, (240,83,0): 92, 53, 48, (240,84,0): 91, 52, 47, (240,85,0): 91, 52, 47, (240,86,0): 91, 52, 47, (240,87,0): 91, 52, 47, (240,88,0): 95, 56, 51, (240,89,0): 94, 55, 50, (240,90,0): 91, 52, 47, (240,91,0): 89, 50, 45, (240,92,0): 88, 49, 44, (240,93,0): 88, 49, 44, (240,94,0): 89, 50, 45, (240,95,0): 91, 50, 44, (240,96,0): 91, 51, 43, (240,97,0): 91, 51, 41, (240,98,0): 94, 51, 44, (240,99,0): 94, 54, 44, (240,100,0): 97, 54, 45, (240,101,0): 96, 56, 46, (240,102,0): 99, 56, 47, (240,103,0): 98, 58, 46, (240,104,0): 102, 60, 48, (240,105,0): 100, 60, 48, (240,106,0): 101, 59, 47, (240,107,0): 99, 60, 45, (240,108,0): 100, 58, 44, (240,109,0): 98, 59, 44, (240,110,0): 99, 57, 43, (240,111,0): 99, 57, 43, (240,112,0): 96, 54, 38, (240,113,0): 96, 54, 38, (240,114,0): 95, 53, 37, (240,115,0): 93, 54, 37, (240,116,0): 92, 53, 36, (240,117,0): 92, 53, 36, (240,118,0): 91, 54, 36, (240,119,0): 89, 54, 35, (240,120,0): 90, 55, 36, (240,121,0): 87, 54, 37, (240,122,0): 86, 53, 36, (240,123,0): 85, 52, 35, (240,124,0): 82, 51, 33, (240,125,0): 81, 50, 32, (240,126,0): 80, 49, 31, (240,127,0): 77, 48, 32, (240,128,0): 78, 49, 35, (240,129,0): 78, 48, 37, (240,130,0): 78, 48, 37, (240,131,0): 78, 48, 37, (240,132,0): 78, 48, 37, (240,133,0): 78, 48, 37, (240,134,0): 78, 48, 37, (240,135,0): 78, 48, 37, (240,136,0): 75, 45, 34, (240,137,0): 75, 45, 34, (240,138,0): 75, 45, 34, (240,139,0): 74, 44, 33, (240,140,0): 74, 44, 33, (240,141,0): 73, 43, 32, (240,142,0): 73, 43, 32, (240,143,0): 71, 43, 31, (240,144,0): 74, 46, 34, (240,145,0): 74, 46, 34, (240,146,0): 74, 46, 34, (240,147,0): 74, 46, 34, (240,148,0): 74, 46, 34, (240,149,0): 75, 45, 34, (240,150,0): 75, 45, 34, (240,151,0): 75, 45, 34, (240,152,0): 74, 44, 33, (240,153,0): 75, 45, 34, (240,154,0): 78, 46, 35, (240,155,0): 80, 48, 37, (240,156,0): 81, 47, 37, (240,157,0): 81, 47, 37, (240,158,0): 80, 46, 36, (240,159,0): 79, 47, 36, (240,160,0): 77, 45, 34, (240,161,0): 75, 45, 34, (240,162,0): 77, 45, 34, (240,163,0): 75, 45, 34, (240,164,0): 77, 45, 34, (240,165,0): 75, 45, 34, (240,166,0): 77, 45, 34, (240,167,0): 75, 45, 34, (240,168,0): 73, 41, 30, (240,169,0): 71, 41, 30, (240,170,0): 74, 42, 31, (240,171,0): 72, 42, 31, (240,172,0): 74, 42, 31, (240,173,0): 70, 40, 29, (240,174,0): 71, 39, 28, (240,175,0): 68, 38, 27, (240,176,0): 66, 38, 26, (240,177,0): 65, 39, 24, (240,178,0): 65, 39, 26, (240,179,0): 65, 39, 24, (240,180,0): 66, 40, 27, (240,181,0): 66, 40, 25, (240,182,0): 66, 40, 27, (240,183,0): 66, 40, 25, (240,184,0): 67, 41, 28, (240,185,0): 67, 41, 26, (240,186,0): 65, 39, 26, (240,187,0): 63, 37, 22, (240,188,0): 61, 35, 22, (240,189,0): 60, 34, 19, (240,190,0): 58, 32, 19, (240,191,0): 57, 30, 19, (240,192,0): 61, 34, 27, (240,193,0): 61, 33, 29, (240,194,0): 60, 31, 25, (240,195,0): 58, 31, 24, (240,196,0): 59, 30, 24, (240,197,0): 58, 31, 24, (240,198,0): 59, 32, 23, (240,199,0): 60, 33, 24, (240,200,0): 62, 35, 26, (240,201,0): 62, 35, 24, (240,202,0): 61, 37, 27, (240,203,0): 62, 38, 26, (240,204,0): 64, 40, 28, (240,205,0): 66, 42, 30, (240,206,0): 68, 44, 32, (240,207,0): 72, 46, 33, (240,208,0): 71, 42, 28, (240,209,0): 76, 43, 28, (240,210,0): 79, 46, 29, (240,211,0): 83, 50, 33, (240,212,0): 84, 53, 33, (240,213,0): 84, 53, 32, (240,214,0): 83, 53, 29, (240,215,0): 82, 52, 26, (240,216,0): 84, 54, 26, (240,217,0): 87, 57, 29, (240,218,0): 87, 60, 31, (240,219,0): 87, 60, 30, (240,220,0): 85, 58, 28, (240,221,0): 84, 57, 27, (240,222,0): 85, 58, 28, (240,223,0): 87, 60, 31, (240,224,0): 84, 56, 32, (240,225,0): 86, 58, 34, (240,226,0): 90, 60, 34, (240,227,0): 89, 62, 33, (240,228,0): 91, 62, 32, (240,229,0): 92, 66, 33, (240,230,0): 100, 72, 35, (240,231,0): 102, 77, 36, (240,232,0): 105, 78, 35, (240,233,0): 107, 83, 35, (240,234,0): 116, 90, 41, (240,235,0): 122, 99, 45, (240,236,0): 132, 107, 51, (240,237,0): 136, 114, 56, (240,238,0): 141, 116, 59, (240,239,0): 143, 118, 61, (240,240,0): 143, 118, 62, (240,241,0): 147, 120, 65, (240,242,0): 150, 125, 68, (240,243,0): 151, 127, 67, (240,244,0): 148, 127, 62, (240,245,0): 147, 126, 59, (240,246,0): 150, 127, 57, (240,247,0): 151, 129, 56, (240,248,0): 165, 143, 67, (240,249,0): 168, 147, 68, (240,250,0): 175, 152, 74, (240,251,0): 181, 160, 81, (240,252,0): 189, 168, 89, (240,253,0): 195, 174, 95, (240,254,0): 198, 179, 102, (240,255,0): 200, 183, 103, (240,256,0): 200, 189, 100, (240,257,0): 195, 185, 96, (240,258,0): 191, 179, 93, (240,259,0): 187, 175, 91, (240,260,0): 186, 173, 95, (240,261,0): 185, 171, 98, (240,262,0): 184, 167, 98, (240,263,0): 179, 164, 97, (240,264,0): 178, 163, 98, (240,265,0): 170, 156, 91, (240,266,0): 164, 153, 87, (240,267,0): 164, 155, 86, (240,268,0): 160, 153, 81, (240,269,0): 157, 153, 79, (240,270,0): 166, 163, 86, (240,271,0): 176, 178, 95, (240,272,0): 175, 185, 96, (240,273,0): 181, 192, 100, (240,274,0): 193, 199, 109, (240,275,0): 204, 204, 114, (240,276,0): 206, 202, 115, (240,277,0): 201, 194, 106, (240,278,0): 191, 184, 96, (240,279,0): 184, 177, 89, (240,280,0): 179, 173, 85, (240,281,0): 178, 174, 85, (240,282,0): 176, 175, 85, (240,283,0): 178, 174, 85, (240,284,0): 178, 172, 84, (240,285,0): 177, 169, 84, (240,286,0): 179, 167, 83, (240,287,0): 181, 165, 80, (240,288,0): 176, 155, 72, (240,289,0): 178, 156, 73, (240,290,0): 181, 156, 76, (240,291,0): 181, 154, 77, (240,292,0): 182, 150, 77, (240,293,0): 185, 151, 80, (240,294,0): 190, 152, 87, (240,295,0): 194, 156, 94, (240,296,0): 187, 151, 91, (240,297,0): 181, 149, 92, (240,298,0): 174, 145, 89, (240,299,0): 165, 140, 84, (240,300,0): 157, 136, 81, (240,301,0): 151, 134, 80, (240,302,0): 149, 133, 81, (240,303,0): 149, 132, 80, (240,304,0): 152, 130, 81, (240,305,0): 148, 126, 79, (240,306,0): 144, 122, 75, (240,307,0): 140, 117, 73, (240,308,0): 135, 114, 69, (240,309,0): 130, 109, 66, (240,310,0): 120, 101, 59, (240,311,0): 114, 96, 56, (240,312,0): 110, 94, 58, (240,313,0): 104, 89, 56, (240,314,0): 98, 84, 55, (240,315,0): 97, 83, 56, (240,316,0): 96, 84, 60, (240,317,0): 99, 87, 65, (240,318,0): 98, 87, 67, (240,319,0): 99, 86, 69, (240,320,0): 100, 82, 72, (240,321,0): 99, 79, 72, (240,322,0): 97, 77, 68, (240,323,0): 93, 73, 62, (240,324,0): 89, 69, 58, (240,325,0): 84, 65, 51, (240,326,0): 81, 62, 47, (240,327,0): 78, 59, 44, (240,328,0): 72, 53, 38, (240,329,0): 71, 52, 37, (240,330,0): 68, 49, 35, (240,331,0): 65, 45, 36, (240,332,0): 62, 42, 35, (240,333,0): 61, 40, 37, (240,334,0): 60, 39, 38, (240,335,0): 60, 39, 38, (240,336,0): 55, 34, 31, (240,337,0): 54, 35, 29, (240,338,0): 55, 34, 29, (240,339,0): 54, 35, 29, (240,340,0): 54, 35, 29, (240,341,0): 52, 35, 28, (240,342,0): 51, 34, 27, (240,343,0): 50, 33, 26, (240,344,0): 51, 36, 29, (240,345,0): 51, 36, 31, (240,346,0): 49, 36, 30, (240,347,0): 50, 37, 31, (240,348,0): 51, 38, 32, (240,349,0): 52, 41, 35, (240,350,0): 55, 44, 38, (240,351,0): 60, 45, 38, (240,352,0): 75, 55, 46, (240,353,0): 78, 54, 44, (240,354,0): 78, 56, 45, (240,355,0): 78, 60, 48, (240,356,0): 81, 67, 54, (240,357,0): 85, 76, 61, (240,358,0): 89, 83, 67, (240,359,0): 91, 88, 71, (240,360,0): 102, 103, 85, (240,361,0): 104, 107, 88, (240,362,0): 107, 112, 92, (240,363,0): 110, 115, 93, (240,364,0): 112, 117, 97, (240,365,0): 112, 117, 95, (240,366,0): 111, 116, 96, (240,367,0): 110, 115, 93, (240,368,0): 112, 120, 96, (240,369,0): 112, 121, 94, (240,370,0): 114, 119, 96, (240,371,0): 112, 117, 94, (240,372,0): 111, 116, 94, (240,373,0): 107, 115, 92, (240,374,0): 105, 113, 92, (240,375,0): 103, 112, 93, (240,376,0): 107, 119, 99, (240,377,0): 109, 122, 104, (240,378,0): 110, 127, 108, (240,379,0): 112, 131, 112, (240,380,0): 113, 136, 118, (240,381,0): 119, 144, 125, (240,382,0): 128, 153, 134, (240,383,0): 130, 162, 141, (240,384,0): 139, 179, 155, (240,385,0): 143, 187, 164, (240,386,0): 151, 196, 176, (240,387,0): 156, 204, 188, (240,388,0): 160, 210, 199, (240,389,0): 163, 216, 210, (240,390,0): 165, 221, 218, (240,391,0): 167, 226, 224, (240,392,0): 168, 228, 226, (240,393,0): 174, 234, 232, (240,394,0): 178, 240, 237, (240,395,0): 177, 239, 238, (240,396,0): 174, 235, 236, (240,397,0): 174, 235, 238, (240,398,0): 180, 239, 243, (240,399,0): 185, 246, 249, (240,400,0): 188, 253, 255, (240,401,0): 186, 254, 253, (240,402,0): 186, 254, 253, (240,403,0): 185, 254, 251, (240,404,0): 185, 254, 249, (240,405,0): 184, 253, 248, (240,406,0): 184, 254, 246, (240,407,0): 184, 254, 246, (240,408,0): 180, 249, 244, (240,409,0): 186, 255, 252, (240,410,0): 192, 255, 255, (240,411,0): 192, 255, 255, (240,412,0): 190, 255, 255, (240,413,0): 187, 252, 255, (240,414,0): 188, 253, 255, (240,415,0): 192, 255, 255, (240,416,0): 178, 240, 253, (240,417,0): 168, 227, 245, (240,418,0): 159, 217, 237, (240,419,0): 158, 214, 237, (240,420,0): 155, 209, 237, (240,421,0): 149, 200, 231, (240,422,0): 147, 196, 229, (240,423,0): 152, 198, 232, (240,424,0): 153, 197, 232, (240,425,0): 152, 195, 230, (240,426,0): 151, 191, 227, (240,427,0): 147, 185, 221, (240,428,0): 142, 181, 214, (240,429,0): 140, 176, 208, (240,430,0): 139, 176, 205, (240,431,0): 137, 177, 203, (240,432,0): 126, 171, 194, (240,433,0): 123, 170, 190, (240,434,0): 123, 168, 189, (240,435,0): 123, 165, 187, (240,436,0): 124, 165, 185, (240,437,0): 126, 164, 185, (240,438,0): 130, 165, 185, (240,439,0): 133, 165, 186, (240,440,0): 136, 164, 185, (240,441,0): 136, 163, 182, (240,442,0): 136, 158, 179, (240,443,0): 133, 154, 173, (240,444,0): 130, 148, 168, (240,445,0): 127, 144, 162, (240,446,0): 125, 140, 159, (240,447,0): 123, 140, 156, (240,448,0): 118, 136, 150, (240,449,0): 117, 136, 150, (240,450,0): 118, 137, 151, (240,451,0): 123, 142, 156, (240,452,0): 128, 147, 161, (240,453,0): 130, 148, 162, (240,454,0): 129, 145, 160, (240,455,0): 125, 141, 156, (240,456,0): 113, 127, 140, (240,457,0): 112, 124, 138, (240,458,0): 110, 119, 134, (240,459,0): 105, 113, 126, (240,460,0): 99, 107, 120, (240,461,0): 95, 101, 113, (240,462,0): 91, 97, 109, (240,463,0): 89, 95, 107, (240,464,0): 93, 100, 110, (240,465,0): 93, 100, 110, (240,466,0): 92, 99, 109, (240,467,0): 91, 95, 104, (240,468,0): 88, 92, 101, (240,469,0): 84, 88, 97, (240,470,0): 81, 85, 94, (240,471,0): 80, 83, 90, (240,472,0): 75, 78, 85, (240,473,0): 77, 78, 83, (240,474,0): 77, 78, 83, (240,475,0): 77, 78, 83, (240,476,0): 77, 78, 83, (240,477,0): 77, 76, 81, (240,478,0): 77, 76, 81, (240,479,0): 76, 77, 82, (240,480,0): 75, 79, 88, (240,481,0): 75, 79, 91, (240,482,0): 76, 80, 92, (240,483,0): 77, 81, 93, (240,484,0): 80, 83, 98, (240,485,0): 84, 87, 102, (240,486,0): 88, 91, 106, (240,487,0): 88, 94, 108, (240,488,0): 92, 98, 114, (240,489,0): 96, 103, 119, (240,490,0): 100, 112, 128, (240,491,0): 106, 119, 135, (240,492,0): 109, 125, 140, (240,493,0): 114, 131, 147, (240,494,0): 121, 138, 154, (240,495,0): 125, 144, 161, (240,496,0): 137, 155, 179, (240,497,0): 137, 157, 181, (240,498,0): 142, 160, 184, (240,499,0): 144, 165, 186, (240,500,0): 146, 168, 189, (240,501,0): 147, 172, 192, (240,502,0): 147, 174, 193, (240,503,0): 147, 176, 194, (240,504,0): 142, 173, 193, (240,505,0): 145, 176, 196, (240,506,0): 148, 180, 201, (240,507,0): 150, 185, 207, (240,508,0): 150, 184, 211, (240,509,0): 145, 180, 208, (240,510,0): 141, 176, 204, (240,511,0): 138, 172, 197, (240,512,0): 134, 161, 178, (240,513,0): 130, 154, 166, (240,514,0): 122, 144, 155, (240,515,0): 118, 138, 149, (240,516,0): 117, 135, 147, (240,517,0): 115, 131, 144, (240,518,0): 112, 129, 139, (240,519,0): 111, 125, 136, (240,520,0): 101, 113, 125, (240,521,0): 98, 108, 118, (240,522,0): 92, 100, 111, (240,523,0): 89, 97, 108, (240,524,0): 92, 99, 109, (240,525,0): 94, 101, 111, (240,526,0): 98, 102, 113, (240,527,0): 98, 102, 113, (240,528,0): 103, 110, 118, (240,529,0): 106, 113, 121, (240,530,0): 109, 116, 126, (240,531,0): 110, 118, 129, (240,532,0): 110, 120, 132, (240,533,0): 111, 123, 137, (240,534,0): 116, 129, 145, (240,535,0): 118, 134, 150, (240,536,0): 125, 142, 162, (240,537,0): 125, 143, 165, (240,538,0): 124, 144, 169, (240,539,0): 125, 146, 173, (240,540,0): 124, 148, 176, (240,541,0): 125, 149, 177, (240,542,0): 124, 149, 179, (240,543,0): 125, 150, 180, (240,544,0): 125, 148, 180, (240,545,0): 124, 147, 179, (240,546,0): 121, 144, 175, (240,547,0): 117, 140, 171, (240,548,0): 113, 137, 165, (240,549,0): 110, 134, 162, (240,550,0): 109, 130, 159, (240,551,0): 108, 129, 156, (240,552,0): 107, 129, 153, (240,553,0): 107, 129, 153, (240,554,0): 110, 130, 154, (240,555,0): 111, 131, 155, (240,556,0): 112, 132, 156, (240,557,0): 112, 133, 154, (240,558,0): 114, 132, 154, (240,559,0): 114, 132, 152, (240,560,0): 114, 130, 146, (240,561,0): 115, 128, 144, (240,562,0): 113, 129, 144, (240,563,0): 113, 129, 144, (240,564,0): 113, 129, 145, (240,565,0): 112, 128, 144, (240,566,0): 112, 128, 144, (240,567,0): 111, 128, 144, (240,568,0): 108, 125, 143, (240,569,0): 107, 124, 142, (240,570,0): 106, 123, 143, (240,571,0): 105, 122, 142, (240,572,0): 101, 119, 139, (240,573,0): 98, 116, 136, (240,574,0): 95, 113, 135, (240,575,0): 93, 111, 131, (240,576,0): 99, 116, 134, (240,577,0): 99, 114, 133, (240,578,0): 97, 112, 131, (240,579,0): 95, 110, 129, (240,580,0): 96, 109, 128, (240,581,0): 95, 108, 125, (240,582,0): 96, 109, 126, (240,583,0): 96, 109, 126, (240,584,0): 98, 109, 127, (240,585,0): 98, 109, 127, (240,586,0): 101, 109, 128, (240,587,0): 103, 111, 130, (240,588,0): 104, 112, 131, (240,589,0): 101, 109, 128, (240,590,0): 96, 103, 122, (240,591,0): 91, 97, 113, (240,592,0): 91, 90, 104, (240,593,0): 86, 84, 95, (240,594,0): 80, 77, 88, (240,595,0): 75, 72, 81, (240,596,0): 75, 70, 77, (240,597,0): 72, 65, 72, (240,598,0): 69, 59, 67, (240,599,0): 65, 56, 61, (241,0,0): 44, 32, 42, (241,1,0): 44, 32, 42, (241,2,0): 45, 33, 43, (241,3,0): 45, 33, 43, (241,4,0): 46, 34, 44, (241,5,0): 46, 34, 44, (241,6,0): 47, 34, 44, (241,7,0): 48, 35, 45, (241,8,0): 50, 34, 45, (241,9,0): 50, 34, 45, (241,10,0): 51, 33, 45, (241,11,0): 51, 33, 45, (241,12,0): 51, 33, 45, (241,13,0): 51, 33, 45, (241,14,0): 51, 33, 45, (241,15,0): 51, 34, 44, (241,16,0): 51, 34, 42, (241,17,0): 51, 34, 40, (241,18,0): 52, 35, 41, (241,19,0): 52, 35, 41, (241,20,0): 53, 36, 44, (241,21,0): 53, 36, 44, (241,22,0): 53, 36, 44, (241,23,0): 54, 37, 45, (241,24,0): 55, 38, 48, (241,25,0): 55, 38, 48, (241,26,0): 55, 38, 48, (241,27,0): 56, 39, 49, (241,28,0): 56, 38, 50, (241,29,0): 57, 39, 51, (241,30,0): 57, 39, 51, (241,31,0): 58, 41, 51, (241,32,0): 59, 42, 50, (241,33,0): 60, 43, 49, (241,34,0): 62, 45, 51, (241,35,0): 64, 47, 53, (241,36,0): 65, 49, 52, (241,37,0): 64, 48, 51, (241,38,0): 65, 46, 50, (241,39,0): 65, 46, 50, (241,40,0): 67, 47, 49, (241,41,0): 68, 48, 50, (241,42,0): 69, 47, 49, (241,43,0): 70, 48, 50, (241,44,0): 70, 48, 50, (241,45,0): 71, 49, 51, (241,46,0): 71, 50, 49, (241,47,0): 73, 49, 49, (241,48,0): 79, 48, 53, (241,49,0): 80, 48, 53, (241,50,0): 80, 48, 53, (241,51,0): 80, 48, 53, (241,52,0): 80, 48, 53, (241,53,0): 80, 48, 53, (241,54,0): 80, 48, 53, (241,55,0): 80, 48, 53, (241,56,0): 81, 49, 54, (241,57,0): 81, 49, 54, (241,58,0): 81, 49, 54, (241,59,0): 81, 49, 54, (241,60,0): 81, 49, 54, (241,61,0): 81, 49, 54, (241,62,0): 81, 49, 54, (241,63,0): 81, 49, 54, (241,64,0): 80, 49, 55, (241,65,0): 79, 50, 55, (241,66,0): 79, 50, 54, (241,67,0): 80, 51, 53, (241,68,0): 81, 51, 51, (241,69,0): 82, 53, 49, (241,70,0): 82, 53, 47, (241,71,0): 83, 53, 43, (241,72,0): 87, 57, 47, (241,73,0): 87, 57, 47, (241,74,0): 90, 58, 47, (241,75,0): 91, 59, 48, (241,76,0): 91, 58, 49, (241,77,0): 93, 59, 50, (241,78,0): 93, 58, 52, (241,79,0): 96, 59, 53, (241,80,0): 94, 55, 50, (241,81,0): 95, 54, 50, (241,82,0): 95, 54, 50, (241,83,0): 95, 54, 50, (241,84,0): 95, 54, 50, (241,85,0): 95, 54, 50, (241,86,0): 94, 53, 49, (241,87,0): 94, 53, 49, (241,88,0): 98, 57, 53, (241,89,0): 96, 55, 51, (241,90,0): 94, 53, 49, (241,91,0): 92, 51, 47, (241,92,0): 91, 50, 46, (241,93,0): 91, 50, 46, (241,94,0): 92, 51, 47, (241,95,0): 92, 51, 45, (241,96,0): 92, 52, 42, (241,97,0): 93, 53, 41, (241,98,0): 93, 53, 41, (241,99,0): 94, 54, 42, (241,100,0): 95, 55, 43, (241,101,0): 96, 56, 44, (241,102,0): 97, 57, 45, (241,103,0): 97, 57, 45, (241,104,0): 100, 60, 48, (241,105,0): 100, 60, 48, (241,106,0): 99, 59, 47, (241,107,0): 99, 59, 47, (241,108,0): 98, 58, 46, (241,109,0): 98, 58, 46, (241,110,0): 97, 57, 45, (241,111,0): 97, 58, 43, (241,112,0): 97, 55, 41, (241,113,0): 97, 55, 39, (241,114,0): 94, 55, 38, (241,115,0): 94, 55, 38, (241,116,0): 93, 54, 37, (241,117,0): 93, 54, 37, (241,118,0): 91, 54, 36, (241,119,0): 91, 54, 36, (241,120,0): 92, 57, 38, (241,121,0): 91, 56, 37, (241,122,0): 90, 55, 36, (241,123,0): 89, 54, 35, (241,124,0): 86, 53, 34, (241,125,0): 85, 52, 33, (241,126,0): 84, 51, 32, (241,127,0): 82, 51, 33, (241,128,0): 81, 49, 36, (241,129,0): 79, 49, 38, (241,130,0): 79, 49, 38, (241,131,0): 79, 49, 38, (241,132,0): 79, 49, 38, (241,133,0): 79, 49, 38, (241,134,0): 79, 49, 38, (241,135,0): 79, 49, 38, (241,136,0): 76, 46, 35, (241,137,0): 76, 46, 35, (241,138,0): 75, 45, 34, (241,139,0): 75, 45, 34, (241,140,0): 74, 44, 33, (241,141,0): 74, 44, 33, (241,142,0): 73, 43, 32, (241,143,0): 72, 44, 32, (241,144,0): 74, 46, 34, (241,145,0): 73, 47, 34, (241,146,0): 73, 47, 34, (241,147,0): 73, 47, 34, (241,148,0): 74, 46, 34, (241,149,0): 74, 46, 34, (241,150,0): 75, 45, 34, (241,151,0): 75, 45, 34, (241,152,0): 74, 44, 33, (241,153,0): 75, 45, 34, (241,154,0): 79, 47, 36, (241,155,0): 80, 48, 37, (241,156,0): 81, 47, 37, (241,157,0): 81, 47, 37, (241,158,0): 80, 46, 36, (241,159,0): 79, 47, 36, (241,160,0): 77, 45, 34, (241,161,0): 75, 45, 34, (241,162,0): 75, 45, 34, (241,163,0): 75, 45, 34, (241,164,0): 75, 45, 34, (241,165,0): 75, 45, 34, (241,166,0): 75, 45, 34, (241,167,0): 75, 45, 34, (241,168,0): 71, 41, 30, (241,169,0): 72, 42, 31, (241,170,0): 72, 42, 31, (241,171,0): 73, 43, 32, (241,172,0): 72, 42, 31, (241,173,0): 71, 41, 30, (241,174,0): 69, 39, 28, (241,175,0): 68, 38, 27, (241,176,0): 66, 38, 24, (241,177,0): 65, 39, 24, (241,178,0): 66, 40, 25, (241,179,0): 66, 40, 25, (241,180,0): 66, 40, 25, (241,181,0): 66, 40, 25, (241,182,0): 66, 40, 25, (241,183,0): 66, 40, 25, (241,184,0): 67, 41, 26, (241,185,0): 66, 40, 25, (241,186,0): 65, 39, 24, (241,187,0): 63, 37, 22, (241,188,0): 61, 35, 20, (241,189,0): 60, 34, 19, (241,190,0): 58, 32, 17, (241,191,0): 58, 32, 19, (241,192,0): 62, 33, 27, (241,193,0): 61, 32, 28, (241,194,0): 60, 31, 25, (241,195,0): 59, 30, 24, (241,196,0): 58, 29, 23, (241,197,0): 59, 30, 24, (241,198,0): 59, 32, 23, (241,199,0): 60, 33, 24, (241,200,0): 62, 35, 24, (241,201,0): 63, 36, 25, (241,202,0): 64, 37, 26, (241,203,0): 63, 39, 27, (241,204,0): 67, 41, 28, (241,205,0): 67, 44, 30, (241,206,0): 71, 45, 32, (241,207,0): 72, 44, 30, (241,208,0): 74, 42, 27, (241,209,0): 77, 44, 27, (241,210,0): 80, 47, 30, (241,211,0): 83, 50, 31, (241,212,0): 83, 52, 31, (241,213,0): 83, 52, 31, (241,214,0): 82, 52, 28, (241,215,0): 81, 51, 25, (241,216,0): 82, 55, 26, (241,217,0): 84, 57, 27, (241,218,0): 85, 60, 29, (241,219,0): 85, 60, 29, (241,220,0): 82, 57, 26, (241,221,0): 81, 56, 25, (241,222,0): 81, 58, 26, (241,223,0): 83, 60, 29, (241,224,0): 84, 56, 32, (241,225,0): 86, 58, 34, (241,226,0): 90, 63, 36, (241,227,0): 92, 65, 36, (241,228,0): 94, 67, 37, (241,229,0): 98, 72, 37, (241,230,0): 105, 80, 40, (241,231,0): 110, 86, 42, (241,232,0): 116, 92, 44, (241,233,0): 119, 96, 44, (241,234,0): 126, 104, 47, (241,235,0): 133, 111, 51, (241,236,0): 140, 119, 56, (241,237,0): 146, 125, 60, (241,238,0): 149, 128, 63, (241,239,0): 151, 130, 65, (241,240,0): 152, 128, 66, (241,241,0): 155, 129, 68, (241,242,0): 157, 132, 68, (241,243,0): 157, 132, 66, (241,244,0): 155, 132, 64, (241,245,0): 157, 135, 62, (241,246,0): 161, 139, 64, (241,247,0): 165, 143, 67, (241,248,0): 170, 151, 72, (241,249,0): 173, 155, 73, (241,250,0): 178, 160, 78, (241,251,0): 185, 167, 85, (241,252,0): 191, 174, 94, (241,253,0): 196, 179, 99, (241,254,0): 200, 183, 105, (241,255,0): 201, 186, 105, (241,256,0): 201, 190, 101, (241,257,0): 197, 186, 96, (241,258,0): 191, 179, 93, (241,259,0): 188, 176, 94, (241,260,0): 188, 172, 97, (241,261,0): 185, 168, 98, (241,262,0): 180, 162, 96, (241,263,0): 177, 159, 97, (241,264,0): 174, 158, 98, (241,265,0): 166, 152, 91, (241,266,0): 161, 150, 86, (241,267,0): 161, 152, 83, (241,268,0): 162, 155, 83, (241,269,0): 161, 159, 84, (241,270,0): 170, 169, 89, (241,271,0): 179, 183, 99, (241,272,0): 179, 187, 101, (241,273,0): 183, 193, 104, (241,274,0): 194, 200, 112, (241,275,0): 200, 203, 114, (241,276,0): 202, 200, 113, (241,277,0): 197, 193, 106, (241,278,0): 189, 185, 98, (241,279,0): 181, 180, 90, (241,280,0): 175, 178, 89, (241,281,0): 176, 181, 89, (241,282,0): 180, 183, 92, (241,283,0): 184, 188, 94, (241,284,0): 191, 190, 100, (241,285,0): 196, 192, 101, (241,286,0): 200, 193, 105, (241,287,0): 205, 194, 104, (241,288,0): 202, 187, 92, (241,289,0): 206, 187, 92, (241,290,0): 207, 186, 93, (241,291,0): 206, 181, 91, (241,292,0): 203, 171, 86, (241,293,0): 198, 163, 82, (241,294,0): 197, 158, 81, (241,295,0): 196, 156, 84, (241,296,0): 197, 157, 88, (241,297,0): 193, 155, 92, (241,298,0): 186, 152, 91, (241,299,0): 176, 147, 89, (241,300,0): 166, 144, 87, (241,301,0): 159, 140, 84, (241,302,0): 153, 136, 82, (241,303,0): 151, 134, 82, (241,304,0): 157, 135, 86, (241,305,0): 155, 131, 83, (241,306,0): 151, 127, 79, (241,307,0): 147, 125, 78, (241,308,0): 144, 121, 77, (241,309,0): 136, 115, 72, (241,310,0): 126, 107, 65, (241,311,0): 119, 101, 61, (241,312,0): 115, 99, 63, (241,313,0): 109, 95, 60, (241,314,0): 104, 89, 58, (241,315,0): 100, 86, 57, (241,316,0): 99, 87, 61, (241,317,0): 100, 88, 64, (241,318,0): 99, 88, 66, (241,319,0): 99, 86, 69, (241,320,0): 100, 81, 74, (241,321,0): 99, 78, 73, (241,322,0): 96, 76, 69, (241,323,0): 92, 72, 63, (241,324,0): 87, 67, 56, (241,325,0): 82, 63, 49, (241,326,0): 78, 59, 44, (241,327,0): 76, 57, 42, (241,328,0): 72, 53, 38, (241,329,0): 70, 51, 36, (241,330,0): 67, 47, 36, (241,331,0): 64, 44, 35, (241,332,0): 61, 41, 34, (241,333,0): 60, 39, 34, (241,334,0): 59, 38, 37, (241,335,0): 59, 38, 37, (241,336,0): 53, 34, 30, (241,337,0): 53, 34, 30, (241,338,0): 52, 33, 29, (241,339,0): 51, 32, 28, (241,340,0): 50, 32, 28, (241,341,0): 50, 32, 28, (241,342,0): 50, 32, 28, (241,343,0): 50, 32, 28, (241,344,0): 51, 36, 31, (241,345,0): 51, 36, 31, (241,346,0): 49, 36, 30, (241,347,0): 50, 37, 31, (241,348,0): 52, 39, 33, (241,349,0): 54, 41, 35, (241,350,0): 55, 44, 38, (241,351,0): 58, 45, 37, (241,352,0): 71, 54, 46, (241,353,0): 73, 55, 45, (241,354,0): 73, 56, 46, (241,355,0): 73, 59, 48, (241,356,0): 77, 65, 53, (241,357,0): 81, 73, 60, (241,358,0): 87, 79, 66, (241,359,0): 87, 84, 69, (241,360,0): 95, 93, 78, (241,361,0): 98, 99, 83, (241,362,0): 104, 107, 90, (241,363,0): 111, 114, 97, (241,364,0): 113, 117, 100, (241,365,0): 114, 118, 101, (241,366,0): 112, 116, 99, (241,367,0): 110, 115, 95, (241,368,0): 114, 120, 94, (241,369,0): 113, 119, 91, (241,370,0): 113, 117, 92, (241,371,0): 111, 115, 90, (241,372,0): 108, 112, 89, (241,373,0): 105, 110, 88, (241,374,0): 103, 108, 88, (241,375,0): 100, 108, 87, (241,376,0): 107, 116, 97, (241,377,0): 108, 120, 100, (241,378,0): 110, 125, 106, (241,379,0): 111, 130, 111, (241,380,0): 114, 135, 118, (241,381,0): 120, 145, 126, (241,382,0): 127, 154, 135, (241,383,0): 130, 163, 144, (241,384,0): 137, 179, 157, (241,385,0): 140, 187, 167, (241,386,0): 148, 196, 180, (241,387,0): 155, 205, 194, (241,388,0): 159, 212, 206, (241,389,0): 162, 217, 214, (241,390,0): 165, 223, 224, (241,391,0): 167, 229, 228, (241,392,0): 171, 235, 234, (241,393,0): 175, 241, 237, (241,394,0): 180, 246, 242, (241,395,0): 180, 246, 244, (241,396,0): 177, 243, 242, (241,397,0): 176, 241, 243, (241,398,0): 181, 246, 250, (241,399,0): 186, 251, 255, (241,400,0): 188, 253, 255, (241,401,0): 186, 254, 253, (241,402,0): 186, 254, 253, (241,403,0): 185, 254, 251, (241,404,0): 185, 254, 249, (241,405,0): 183, 254, 246, (241,406,0): 183, 255, 244, (241,407,0): 183, 255, 244, (241,408,0): 185, 255, 248, (241,409,0): 185, 254, 249, (241,410,0): 187, 253, 252, (241,411,0): 188, 253, 255, (241,412,0): 189, 252, 255, (241,413,0): 185, 248, 255, (241,414,0): 180, 240, 251, (241,415,0): 175, 234, 248, (241,416,0): 164, 223, 241, (241,417,0): 156, 213, 233, (241,418,0): 151, 207, 230, (241,419,0): 153, 207, 233, (241,420,0): 154, 205, 234, (241,421,0): 148, 197, 229, (241,422,0): 147, 193, 229, (241,423,0): 149, 193, 230, (241,424,0): 147, 189, 227, (241,425,0): 147, 187, 223, (241,426,0): 144, 182, 219, (241,427,0): 141, 179, 215, (241,428,0): 141, 177, 211, (241,429,0): 139, 175, 207, (241,430,0): 139, 174, 204, (241,431,0): 136, 173, 200, (241,432,0): 128, 170, 194, (241,433,0): 125, 170, 193, (241,434,0): 124, 166, 188, (241,435,0): 121, 163, 185, (241,436,0): 122, 160, 181, (241,437,0): 122, 158, 180, (241,438,0): 126, 158, 179, (241,439,0): 127, 158, 178, (241,440,0): 128, 153, 173, (241,441,0): 129, 151, 172, (241,442,0): 130, 148, 168, (241,443,0): 128, 145, 163, (241,444,0): 129, 142, 161, (241,445,0): 127, 138, 158, (241,446,0): 125, 136, 154, (241,447,0): 123, 136, 153, (241,448,0): 115, 132, 148, (241,449,0): 114, 133, 148, (241,450,0): 115, 134, 148, (241,451,0): 120, 138, 152, (241,452,0): 124, 142, 156, (241,453,0): 126, 142, 155, (241,454,0): 126, 140, 153, (241,455,0): 123, 135, 149, (241,456,0): 113, 125, 137, (241,457,0): 113, 123, 135, (241,458,0): 109, 117, 130, (241,459,0): 104, 112, 123, (241,460,0): 100, 106, 118, (241,461,0): 94, 100, 112, (241,462,0): 90, 96, 108, (241,463,0): 88, 95, 105, (241,464,0): 90, 97, 105, (241,465,0): 90, 97, 105, (241,466,0): 89, 96, 104, (241,467,0): 88, 92, 101, (241,468,0): 85, 90, 96, (241,469,0): 81, 86, 92, (241,470,0): 78, 83, 89, (241,471,0): 77, 80, 87, (241,472,0): 76, 79, 84, (241,473,0): 77, 78, 83, (241,474,0): 77, 78, 82, (241,475,0): 75, 76, 80, (241,476,0): 74, 75, 79, (241,477,0): 74, 73, 78, (241,478,0): 74, 74, 76, (241,479,0): 72, 73, 77, (241,480,0): 73, 77, 86, (241,481,0): 71, 77, 89, (241,482,0): 74, 78, 90, (241,483,0): 76, 80, 92, (241,484,0): 80, 82, 97, (241,485,0): 84, 86, 101, (241,486,0): 87, 90, 105, (241,487,0): 89, 92, 107, (241,488,0): 95, 98, 115, (241,489,0): 97, 104, 120, (241,490,0): 103, 112, 129, (241,491,0): 106, 119, 135, (241,492,0): 110, 126, 141, (241,493,0): 115, 133, 147, (241,494,0): 121, 140, 155, (241,495,0): 126, 145, 162, (241,496,0): 135, 153, 177, (241,497,0): 137, 154, 180, (241,498,0): 142, 159, 185, (241,499,0): 146, 164, 188, (241,500,0): 147, 167, 191, (241,501,0): 148, 170, 191, (241,502,0): 147, 172, 192, (241,503,0): 146, 173, 192, (241,504,0): 145, 174, 192, (241,505,0): 144, 175, 195, (241,506,0): 146, 178, 199, (241,507,0): 145, 179, 204, (241,508,0): 144, 178, 205, (241,509,0): 142, 175, 206, (241,510,0): 137, 172, 204, (241,511,0): 138, 169, 197, (241,512,0): 133, 159, 176, (241,513,0): 129, 151, 164, (241,514,0): 123, 143, 154, (241,515,0): 116, 136, 147, (241,516,0): 115, 133, 145, (241,517,0): 113, 131, 143, (241,518,0): 112, 129, 139, (241,519,0): 109, 126, 136, (241,520,0): 103, 115, 127, (241,521,0): 98, 111, 120, (241,522,0): 94, 104, 114, (241,523,0): 91, 101, 111, (241,524,0): 93, 102, 111, (241,525,0): 95, 104, 113, (241,526,0): 97, 104, 114, (241,527,0): 96, 103, 113, (241,528,0): 101, 108, 116, (241,529,0): 104, 111, 119, (241,530,0): 107, 114, 124, (241,531,0): 109, 116, 126, (241,532,0): 110, 118, 131, (241,533,0): 112, 122, 134, (241,534,0): 116, 128, 144, (241,535,0): 119, 132, 149, (241,536,0): 125, 140, 159, (241,537,0): 125, 141, 164, (241,538,0): 126, 144, 168, (241,539,0): 126, 146, 171, (241,540,0): 127, 147, 174, (241,541,0): 127, 148, 177, (241,542,0): 127, 148, 179, (241,543,0): 125, 148, 179, (241,544,0): 125, 148, 180, (241,545,0): 124, 147, 179, (241,546,0): 121, 144, 176, (241,547,0): 117, 140, 171, (241,548,0): 116, 137, 168, (241,549,0): 112, 133, 162, (241,550,0): 109, 130, 159, (241,551,0): 108, 129, 156, (241,552,0): 105, 125, 150, (241,553,0): 105, 125, 149, (241,554,0): 108, 126, 150, (241,555,0): 109, 127, 149, (241,556,0): 110, 128, 150, (241,557,0): 110, 128, 148, (241,558,0): 112, 129, 149, (241,559,0): 113, 128, 147, (241,560,0): 114, 127, 144, (241,561,0): 114, 127, 143, (241,562,0): 112, 128, 143, (241,563,0): 112, 128, 143, (241,564,0): 111, 127, 143, (241,565,0): 111, 127, 143, (241,566,0): 110, 127, 143, (241,567,0): 110, 127, 143, (241,568,0): 106, 123, 141, (241,569,0): 105, 124, 141, (241,570,0): 105, 123, 143, (241,571,0): 103, 121, 141, (241,572,0): 99, 120, 139, (241,573,0): 96, 117, 136, (241,574,0): 94, 115, 136, (241,575,0): 92, 113, 132, (241,576,0): 100, 117, 135, (241,577,0): 99, 116, 132, (241,578,0): 96, 113, 129, (241,579,0): 94, 111, 127, (241,580,0): 94, 110, 126, (241,581,0): 93, 109, 125, (241,582,0): 93, 109, 125, (241,583,0): 93, 109, 125, (241,584,0): 96, 109, 126, (241,585,0): 96, 109, 126, (241,586,0): 98, 109, 127, (241,587,0): 101, 112, 130, (241,588,0): 102, 113, 131, (241,589,0): 100, 111, 129, (241,590,0): 96, 104, 123, (241,591,0): 92, 99, 115, (241,592,0): 92, 91, 105, (241,593,0): 88, 86, 97, (241,594,0): 83, 80, 89, (241,595,0): 76, 73, 80, (241,596,0): 74, 67, 75, (241,597,0): 69, 62, 69, (241,598,0): 67, 58, 63, (241,599,0): 64, 55, 60, (242,0,0): 44, 32, 42, (242,1,0): 45, 33, 43, (242,2,0): 45, 33, 43, (242,3,0): 45, 33, 43, (242,4,0): 46, 34, 44, (242,5,0): 47, 35, 45, (242,6,0): 48, 35, 45, (242,7,0): 48, 35, 45, (242,8,0): 50, 34, 45, (242,9,0): 50, 34, 45, (242,10,0): 51, 33, 45, (242,11,0): 51, 33, 45, (242,12,0): 51, 33, 45, (242,13,0): 51, 33, 45, (242,14,0): 51, 33, 45, (242,15,0): 51, 34, 44, (242,16,0): 51, 34, 42, (242,17,0): 52, 35, 43, (242,18,0): 52, 35, 43, (242,19,0): 52, 35, 43, (242,20,0): 53, 36, 44, (242,21,0): 54, 37, 45, (242,22,0): 54, 37, 45, (242,23,0): 54, 37, 45, (242,24,0): 54, 37, 47, (242,25,0): 55, 38, 48, (242,26,0): 55, 38, 48, (242,27,0): 56, 39, 49, (242,28,0): 56, 39, 49, (242,29,0): 57, 40, 50, (242,30,0): 57, 39, 51, (242,31,0): 57, 40, 50, (242,32,0): 58, 41, 49, (242,33,0): 59, 42, 48, (242,34,0): 61, 44, 50, (242,35,0): 63, 46, 52, (242,36,0): 66, 47, 51, (242,37,0): 67, 48, 52, (242,38,0): 67, 48, 52, (242,39,0): 67, 48, 52, (242,40,0): 68, 48, 50, (242,41,0): 68, 48, 50, (242,42,0): 69, 47, 49, (242,43,0): 70, 48, 50, (242,44,0): 70, 48, 50, (242,45,0): 71, 49, 51, (242,46,0): 73, 49, 49, (242,47,0): 75, 49, 50, (242,48,0): 79, 48, 53, (242,49,0): 80, 48, 53, (242,50,0): 80, 48, 53, (242,51,0): 80, 48, 53, (242,52,0): 80, 48, 53, (242,53,0): 80, 48, 53, (242,54,0): 80, 48, 53, (242,55,0): 80, 48, 53, (242,56,0): 81, 49, 54, (242,57,0): 81, 49, 54, (242,58,0): 81, 49, 54, (242,59,0): 81, 49, 54, (242,60,0): 81, 49, 54, (242,61,0): 81, 49, 54, (242,62,0): 81, 49, 54, (242,63,0): 81, 49, 54, (242,64,0): 81, 50, 56, (242,65,0): 81, 50, 56, (242,66,0): 81, 50, 55, (242,67,0): 82, 52, 52, (242,68,0): 83, 52, 50, (242,69,0): 84, 53, 48, (242,70,0): 84, 54, 46, (242,71,0): 87, 54, 45, (242,72,0): 91, 58, 49, (242,73,0): 92, 60, 49, (242,74,0): 93, 59, 49, (242,75,0): 93, 59, 49, (242,76,0): 94, 60, 50, (242,77,0): 96, 59, 50, (242,78,0): 97, 60, 52, (242,79,0): 97, 60, 52, (242,80,0): 96, 57, 50, (242,81,0): 97, 56, 50, (242,82,0): 97, 56, 50, (242,83,0): 97, 56, 50, (242,84,0): 97, 56, 50, (242,85,0): 97, 56, 50, (242,86,0): 97, 56, 50, (242,87,0): 97, 56, 50, (242,88,0): 100, 59, 53, (242,89,0): 99, 58, 52, (242,90,0): 97, 56, 50, (242,91,0): 95, 54, 48, (242,92,0): 94, 53, 47, (242,93,0): 94, 53, 47, (242,94,0): 94, 53, 47, (242,95,0): 94, 54, 46, (242,96,0): 95, 55, 45, (242,97,0): 95, 55, 43, (242,98,0): 95, 55, 43, (242,99,0): 95, 55, 43, (242,100,0): 96, 56, 44, (242,101,0): 96, 56, 44, (242,102,0): 96, 56, 44, (242,103,0): 96, 56, 44, (242,104,0): 100, 60, 48, (242,105,0): 100, 60, 48, (242,106,0): 99, 59, 47, (242,107,0): 99, 59, 47, (242,108,0): 98, 58, 46, (242,109,0): 98, 58, 46, (242,110,0): 97, 57, 45, (242,111,0): 97, 58, 43, (242,112,0): 96, 57, 42, (242,113,0): 96, 57, 40, (242,114,0): 95, 56, 39, (242,115,0): 95, 56, 39, (242,116,0): 94, 55, 38, (242,117,0): 94, 55, 38, (242,118,0): 92, 55, 37, (242,119,0): 92, 55, 37, (242,120,0): 94, 59, 40, (242,121,0): 93, 58, 39, (242,122,0): 90, 57, 38, (242,123,0): 90, 57, 38, (242,124,0): 88, 55, 36, (242,125,0): 88, 55, 36, (242,126,0): 87, 54, 35, (242,127,0): 85, 54, 36, (242,128,0): 81, 49, 36, (242,129,0): 79, 49, 38, (242,130,0): 79, 49, 38, (242,131,0): 79, 49, 38, (242,132,0): 79, 49, 38, (242,133,0): 79, 49, 38, (242,134,0): 79, 49, 38, (242,135,0): 79, 49, 38, (242,136,0): 77, 47, 36, (242,137,0): 77, 47, 36, (242,138,0): 76, 46, 35, (242,139,0): 76, 46, 35, (242,140,0): 75, 45, 34, (242,141,0): 75, 45, 34, (242,142,0): 74, 44, 33, (242,143,0): 73, 45, 33, (242,144,0): 75, 47, 35, (242,145,0): 74, 48, 35, (242,146,0): 75, 47, 35, (242,147,0): 75, 47, 35, (242,148,0): 75, 47, 35, (242,149,0): 75, 47, 35, (242,150,0): 76, 46, 35, (242,151,0): 76, 46, 35, (242,152,0): 77, 45, 34, (242,153,0): 78, 46, 35, (242,154,0): 79, 47, 36, (242,155,0): 80, 48, 37, (242,156,0): 82, 48, 38, (242,157,0): 82, 48, 38, (242,158,0): 81, 47, 37, (242,159,0): 79, 47, 36, (242,160,0): 78, 46, 35, (242,161,0): 76, 46, 35, (242,162,0): 76, 46, 35, (242,163,0): 76, 46, 35, (242,164,0): 76, 46, 35, (242,165,0): 76, 46, 35, (242,166,0): 76, 46, 35, (242,167,0): 76, 46, 35, (242,168,0): 72, 42, 31, (242,169,0): 73, 43, 32, (242,170,0): 73, 43, 32, (242,171,0): 74, 44, 33, (242,172,0): 73, 43, 32, (242,173,0): 72, 42, 31, (242,174,0): 70, 40, 29, (242,175,0): 69, 39, 28, (242,176,0): 67, 39, 27, (242,177,0): 67, 39, 27, (242,178,0): 67, 39, 27, (242,179,0): 67, 39, 27, (242,180,0): 67, 39, 27, (242,181,0): 67, 39, 27, (242,182,0): 67, 39, 27, (242,183,0): 67, 39, 27, (242,184,0): 67, 39, 27, (242,185,0): 66, 38, 26, (242,186,0): 65, 37, 25, (242,187,0): 64, 36, 24, (242,188,0): 62, 34, 22, (242,189,0): 61, 33, 21, (242,190,0): 59, 31, 19, (242,191,0): 59, 31, 20, (242,192,0): 59, 32, 23, (242,193,0): 59, 32, 25, (242,194,0): 58, 31, 24, (242,195,0): 57, 30, 23, (242,196,0): 57, 30, 21, (242,197,0): 58, 31, 22, (242,198,0): 60, 31, 23, (242,199,0): 61, 32, 24, (242,200,0): 65, 37, 26, (242,201,0): 65, 37, 26, (242,202,0): 66, 38, 26, (242,203,0): 67, 41, 28, (242,204,0): 70, 42, 30, (242,205,0): 70, 44, 31, (242,206,0): 72, 44, 30, (242,207,0): 72, 44, 30, (242,208,0): 75, 43, 28, (242,209,0): 78, 45, 28, (242,210,0): 81, 48, 31, (242,211,0): 83, 50, 31, (242,212,0): 83, 52, 31, (242,213,0): 82, 51, 30, (242,214,0): 81, 51, 27, (242,215,0): 79, 49, 23, (242,216,0): 81, 54, 27, (242,217,0): 83, 56, 27, (242,218,0): 83, 58, 28, (242,219,0): 82, 57, 27, (242,220,0): 80, 55, 25, (242,221,0): 79, 54, 24, (242,222,0): 79, 56, 25, (242,223,0): 82, 59, 28, (242,224,0): 84, 57, 28, (242,225,0): 88, 61, 32, (242,226,0): 93, 66, 36, (242,227,0): 97, 71, 38, (242,228,0): 101, 75, 40, (242,229,0): 107, 82, 42, (242,230,0): 114, 90, 46, (242,231,0): 119, 95, 47, (242,232,0): 127, 104, 52, (242,233,0): 130, 108, 51, (242,234,0): 135, 113, 55, (242,235,0): 142, 121, 58, (242,236,0): 149, 128, 63, (242,237,0): 154, 134, 65, (242,238,0): 158, 138, 69, (242,239,0): 159, 139, 70, (242,240,0): 164, 141, 74, (242,241,0): 165, 142, 75, (242,242,0): 165, 142, 74, (242,243,0): 165, 142, 72, (242,244,0): 166, 144, 71, (242,245,0): 170, 148, 72, (242,246,0): 176, 157, 78, (242,247,0): 182, 164, 82, (242,248,0): 182, 164, 80, (242,249,0): 185, 167, 83, (242,250,0): 190, 172, 88, (242,251,0): 195, 177, 93, (242,252,0): 199, 182, 100, (242,253,0): 203, 186, 104, (242,254,0): 205, 188, 106, (242,255,0): 206, 190, 105, (242,256,0): 205, 191, 103, (242,257,0): 201, 187, 99, (242,258,0): 196, 181, 98, (242,259,0): 192, 176, 98, (242,260,0): 189, 171, 97, (242,261,0): 184, 165, 97, (242,262,0): 176, 158, 94, (242,263,0): 171, 153, 91, (242,264,0): 168, 152, 92, (242,265,0): 161, 147, 86, (242,266,0): 155, 144, 80, (242,267,0): 157, 150, 82, (242,268,0): 162, 158, 87, (242,269,0): 169, 167, 92, (242,270,0): 176, 177, 99, (242,271,0): 184, 187, 106, (242,272,0): 185, 193, 107, (242,273,0): 188, 196, 110, (242,274,0): 194, 200, 114, (242,275,0): 198, 201, 114, (242,276,0): 198, 198, 112, (242,277,0): 193, 191, 106, (242,278,0): 186, 184, 99, (242,279,0): 180, 180, 92, (242,280,0): 178, 182, 95, (242,281,0): 179, 185, 95, (242,282,0): 185, 190, 100, (242,283,0): 190, 195, 103, (242,284,0): 197, 200, 111, (242,285,0): 206, 205, 115, (242,286,0): 213, 209, 122, (242,287,0): 216, 211, 119, (242,288,0): 223, 218, 118, (242,289,0): 229, 222, 118, (242,290,0): 235, 223, 121, (242,291,0): 236, 218, 118, (242,292,0): 230, 206, 110, (242,293,0): 221, 192, 100, (242,294,0): 213, 179, 90, (242,295,0): 210, 172, 89, (242,296,0): 209, 170, 91, (242,297,0): 206, 168, 95, (242,298,0): 200, 165, 99, (242,299,0): 192, 160, 99, (242,300,0): 182, 156, 99, (242,301,0): 174, 151, 97, (242,302,0): 168, 146, 96, (242,303,0): 165, 145, 95, (242,304,0): 162, 140, 91, (242,305,0): 161, 139, 90, (242,306,0): 159, 137, 90, (242,307,0): 157, 134, 90, (242,308,0): 153, 130, 88, (242,309,0): 144, 122, 83, (242,310,0): 132, 112, 77, (242,311,0): 124, 105, 72, (242,312,0): 120, 104, 71, (242,313,0): 114, 99, 68, (242,314,0): 109, 93, 67, (242,315,0): 105, 91, 65, (242,316,0): 103, 91, 65, (242,317,0): 103, 91, 67, (242,318,0): 101, 89, 67, (242,319,0): 101, 85, 69, (242,320,0): 101, 83, 73, (242,321,0): 100, 79, 74, (242,322,0): 95, 75, 68, (242,323,0): 90, 70, 61, (242,324,0): 84, 64, 53, (242,325,0): 79, 60, 46, (242,326,0): 75, 56, 41, (242,327,0): 72, 53, 38, (242,328,0): 71, 52, 37, (242,329,0): 70, 51, 36, (242,330,0): 66, 46, 35, (242,331,0): 63, 43, 34, (242,332,0): 60, 40, 33, (242,333,0): 58, 37, 32, (242,334,0): 57, 36, 35, (242,335,0): 57, 36, 35, (242,336,0): 53, 34, 30, (242,337,0): 51, 32, 28, (242,338,0): 49, 30, 26, (242,339,0): 47, 28, 24, (242,340,0): 46, 28, 24, (242,341,0): 47, 29, 25, (242,342,0): 48, 30, 26, (242,343,0): 49, 31, 27, (242,344,0): 50, 35, 30, (242,345,0): 50, 35, 30, (242,346,0): 50, 37, 31, (242,347,0): 51, 38, 32, (242,348,0): 52, 39, 33, (242,349,0): 54, 41, 35, (242,350,0): 55, 44, 38, (242,351,0): 58, 45, 37, (242,352,0): 69, 52, 44, (242,353,0): 71, 53, 43, (242,354,0): 70, 53, 43, (242,355,0): 71, 57, 46, (242,356,0): 74, 62, 50, (242,357,0): 76, 68, 55, (242,358,0): 81, 73, 60, (242,359,0): 81, 78, 63, (242,360,0): 83, 81, 66, (242,361,0): 88, 89, 73, (242,362,0): 97, 100, 83, (242,363,0): 107, 110, 93, (242,364,0): 112, 116, 99, (242,365,0): 115, 119, 102, (242,366,0): 113, 120, 102, (242,367,0): 111, 119, 98, (242,368,0): 115, 120, 97, (242,369,0): 113, 119, 93, (242,370,0): 111, 116, 93, (242,371,0): 108, 113, 90, (242,372,0): 104, 109, 87, (242,373,0): 102, 107, 85, (242,374,0): 99, 104, 84, (242,375,0): 96, 104, 83, (242,376,0): 104, 113, 94, (242,377,0): 105, 118, 100, (242,378,0): 109, 123, 106, (242,379,0): 111, 130, 111, (242,380,0): 114, 137, 119, (242,381,0): 121, 146, 127, (242,382,0): 129, 156, 139, (242,383,0): 131, 164, 145, (242,384,0): 137, 178, 160, (242,385,0): 140, 187, 169, (242,386,0): 149, 197, 183, (242,387,0): 155, 206, 197, (242,388,0): 159, 214, 209, (242,389,0): 164, 220, 219, (242,390,0): 167, 227, 227, (242,391,0): 170, 232, 231, (242,392,0): 179, 243, 242, (242,393,0): 182, 248, 246, (242,394,0): 186, 252, 248, (242,395,0): 184, 253, 250, (242,396,0): 181, 249, 248, (242,397,0): 181, 249, 250, (242,398,0): 185, 253, 255, (242,399,0): 192, 255, 255, (242,400,0): 188, 253, 255, (242,401,0): 188, 253, 255, (242,402,0): 186, 254, 253, (242,403,0): 185, 254, 251, (242,404,0): 184, 255, 249, (242,405,0): 182, 255, 246, (242,406,0): 182, 255, 244, (242,407,0): 182, 255, 244, (242,408,0): 186, 255, 250, (242,409,0): 181, 252, 246, (242,410,0): 178, 246, 245, (242,411,0): 184, 247, 252, (242,412,0): 189, 249, 255, (242,413,0): 185, 243, 255, (242,414,0): 170, 226, 243, (242,415,0): 156, 211, 231, (242,416,0): 145, 200, 221, (242,417,0): 142, 196, 220, (242,418,0): 142, 196, 220, (242,419,0): 149, 200, 227, (242,420,0): 151, 202, 231, (242,421,0): 147, 196, 228, (242,422,0): 145, 191, 227, (242,423,0): 144, 188, 225, (242,424,0): 140, 183, 218, (242,425,0): 137, 177, 213, (242,426,0): 134, 172, 209, (242,427,0): 133, 171, 207, (242,428,0): 137, 173, 205, (242,429,0): 138, 173, 203, (242,430,0): 136, 171, 199, (242,431,0): 132, 169, 195, (242,432,0): 128, 168, 193, (242,433,0): 125, 167, 189, (242,434,0): 122, 163, 185, (242,435,0): 120, 158, 181, (242,436,0): 118, 154, 176, (242,437,0): 117, 152, 174, (242,438,0): 118, 149, 170, (242,439,0): 119, 147, 168, (242,440,0): 118, 140, 161, (242,441,0): 119, 140, 161, (242,442,0): 120, 137, 157, (242,443,0): 120, 135, 154, (242,444,0): 120, 133, 152, (242,445,0): 120, 131, 149, (242,446,0): 121, 129, 148, (242,447,0): 118, 129, 147, (242,448,0): 112, 128, 143, (242,449,0): 111, 129, 143, (242,450,0): 113, 131, 145, (242,451,0): 117, 133, 148, (242,452,0): 119, 135, 148, (242,453,0): 121, 135, 148, (242,454,0): 119, 133, 146, (242,455,0): 117, 129, 141, (242,456,0): 112, 122, 134, (242,457,0): 111, 119, 132, (242,458,0): 107, 115, 126, (242,459,0): 103, 109, 121, (242,460,0): 100, 104, 116, (242,461,0): 95, 99, 110, (242,462,0): 91, 95, 106, (242,463,0): 89, 93, 104, (242,464,0): 87, 91, 100, (242,465,0): 87, 91, 100, (242,466,0): 86, 90, 99, (242,467,0): 84, 87, 96, (242,468,0): 81, 84, 91, (242,469,0): 77, 80, 87, (242,470,0): 74, 77, 84, (242,471,0): 74, 74, 82, (242,472,0): 76, 77, 82, (242,473,0): 76, 75, 81, (242,474,0): 75, 74, 79, (242,475,0): 74, 73, 78, (242,476,0): 72, 71, 76, (242,477,0): 72, 70, 75, (242,478,0): 71, 69, 72, (242,479,0): 69, 68, 73, (242,480,0): 72, 75, 84, (242,481,0): 72, 76, 87, (242,482,0): 74, 76, 88, (242,483,0): 76, 78, 90, (242,484,0): 80, 82, 95, (242,485,0): 84, 86, 99, (242,486,0): 87, 89, 104, (242,487,0): 88, 91, 106, (242,488,0): 96, 99, 114, (242,489,0): 99, 105, 119, (242,490,0): 105, 112, 128, (242,491,0): 108, 120, 134, (242,492,0): 113, 126, 142, (242,493,0): 116, 134, 148, (242,494,0): 122, 141, 155, (242,495,0): 127, 146, 163, (242,496,0): 133, 151, 175, (242,497,0): 137, 154, 180, (242,498,0): 142, 159, 185, (242,499,0): 147, 165, 189, (242,500,0): 148, 168, 192, (242,501,0): 148, 170, 193, (242,502,0): 148, 170, 193, (242,503,0): 145, 170, 192, (242,504,0): 147, 174, 195, (242,505,0): 146, 174, 195, (242,506,0): 146, 174, 196, (242,507,0): 144, 174, 198, (242,508,0): 142, 172, 198, (242,509,0): 138, 169, 197, (242,510,0): 135, 166, 195, (242,511,0): 134, 164, 188, (242,512,0): 132, 155, 173, (242,513,0): 127, 149, 162, (242,514,0): 121, 140, 154, (242,515,0): 114, 133, 147, (242,516,0): 112, 130, 142, (242,517,0): 111, 129, 141, (242,518,0): 111, 127, 140, (242,519,0): 110, 127, 137, (242,520,0): 107, 119, 131, (242,521,0): 102, 114, 126, (242,522,0): 98, 108, 118, (242,523,0): 95, 105, 115, (242,524,0): 96, 104, 115, (242,525,0): 97, 105, 116, (242,526,0): 98, 105, 115, (242,527,0): 98, 105, 115, (242,528,0): 101, 105, 114, (242,529,0): 104, 108, 117, (242,530,0): 107, 111, 122, (242,531,0): 107, 114, 124, (242,532,0): 108, 116, 129, (242,533,0): 111, 121, 133, (242,534,0): 116, 125, 142, (242,535,0): 119, 130, 148, (242,536,0): 125, 138, 157, (242,537,0): 124, 139, 162, (242,538,0): 126, 142, 167, (242,539,0): 127, 144, 170, (242,540,0): 129, 146, 174, (242,541,0): 128, 148, 175, (242,542,0): 128, 147, 177, (242,543,0): 126, 147, 178, (242,544,0): 127, 147, 180, (242,545,0): 126, 146, 179, (242,546,0): 123, 143, 176, (242,547,0): 119, 140, 171, (242,548,0): 116, 135, 167, (242,549,0): 113, 132, 162, (242,550,0): 110, 129, 159, (242,551,0): 109, 129, 156, (242,552,0): 104, 121, 147, (242,553,0): 104, 122, 146, (242,554,0): 105, 121, 146, (242,555,0): 106, 122, 145, (242,556,0): 106, 122, 145, (242,557,0): 107, 124, 144, (242,558,0): 108, 123, 144, (242,559,0): 109, 125, 141, (242,560,0): 111, 124, 140, (242,561,0): 111, 125, 138, (242,562,0): 111, 124, 140, (242,563,0): 111, 124, 140, (242,564,0): 109, 125, 140, (242,565,0): 109, 125, 140, (242,566,0): 109, 125, 141, (242,567,0): 108, 125, 141, (242,568,0): 104, 121, 139, (242,569,0): 104, 121, 139, (242,570,0): 103, 122, 139, (242,571,0): 103, 122, 139, (242,572,0): 102, 120, 140, (242,573,0): 100, 118, 138, (242,574,0): 96, 117, 136, (242,575,0): 95, 116, 135, (242,576,0): 101, 118, 136, (242,577,0): 100, 117, 133, (242,578,0): 97, 114, 130, (242,579,0): 95, 112, 128, (242,580,0): 94, 110, 126, (242,581,0): 93, 109, 125, (242,582,0): 93, 109, 125, (242,583,0): 93, 109, 125, (242,584,0): 95, 108, 125, (242,585,0): 95, 108, 125, (242,586,0): 98, 109, 127, (242,587,0): 100, 111, 129, (242,588,0): 103, 114, 132, (242,589,0): 101, 112, 130, (242,590,0): 98, 106, 125, (242,591,0): 95, 102, 118, (242,592,0): 93, 92, 106, (242,593,0): 92, 90, 101, (242,594,0): 87, 84, 93, (242,595,0): 78, 75, 82, (242,596,0): 72, 65, 73, (242,597,0): 65, 58, 65, (242,598,0): 64, 55, 60, (242,599,0): 63, 54, 59, (243,0,0): 45, 33, 43, (243,1,0): 45, 33, 43, (243,2,0): 45, 33, 43, (243,3,0): 46, 34, 44, (243,4,0): 46, 34, 44, (243,5,0): 47, 35, 45, (243,6,0): 48, 35, 45, (243,7,0): 49, 36, 46, (243,8,0): 51, 35, 46, (243,9,0): 51, 35, 46, (243,10,0): 52, 34, 46, (243,11,0): 52, 34, 46, (243,12,0): 52, 34, 46, (243,13,0): 52, 34, 46, (243,14,0): 52, 34, 46, (243,15,0): 52, 34, 46, (243,16,0): 52, 35, 45, (243,17,0): 52, 35, 43, (243,18,0): 52, 35, 43, (243,19,0): 53, 36, 44, (243,20,0): 53, 36, 44, (243,21,0): 54, 37, 45, (243,22,0): 54, 37, 45, (243,23,0): 55, 38, 46, (243,24,0): 55, 38, 48, (243,25,0): 55, 38, 48, (243,26,0): 55, 38, 48, (243,27,0): 56, 39, 49, (243,28,0): 56, 39, 49, (243,29,0): 57, 40, 50, (243,30,0): 57, 39, 51, (243,31,0): 58, 41, 51, (243,32,0): 57, 40, 48, (243,33,0): 58, 41, 47, (243,34,0): 60, 43, 49, (243,35,0): 62, 45, 51, (243,36,0): 66, 47, 51, (243,37,0): 67, 48, 52, (243,38,0): 68, 49, 53, (243,39,0): 69, 50, 54, (243,40,0): 68, 48, 50, (243,41,0): 69, 49, 51, (243,42,0): 70, 48, 50, (243,43,0): 70, 48, 50, (243,44,0): 71, 49, 51, (243,45,0): 72, 50, 52, (243,46,0): 74, 50, 50, (243,47,0): 75, 49, 50, (243,48,0): 80, 49, 54, (243,49,0): 81, 49, 54, (243,50,0): 81, 49, 54, (243,51,0): 81, 49, 54, (243,52,0): 81, 49, 54, (243,53,0): 81, 49, 54, (243,54,0): 81, 49, 54, (243,55,0): 81, 49, 54, (243,56,0): 81, 49, 54, (243,57,0): 81, 49, 54, (243,58,0): 81, 49, 54, (243,59,0): 81, 49, 54, (243,60,0): 81, 49, 54, (243,61,0): 81, 49, 54, (243,62,0): 81, 49, 54, (243,63,0): 81, 49, 54, (243,64,0): 82, 49, 56, (243,65,0): 82, 51, 56, (243,66,0): 83, 51, 54, (243,67,0): 84, 52, 53, (243,68,0): 85, 54, 52, (243,69,0): 88, 55, 50, (243,70,0): 89, 56, 49, (243,71,0): 89, 57, 46, (243,72,0): 92, 60, 49, (243,73,0): 93, 59, 49, (243,74,0): 93, 59, 49, (243,75,0): 95, 58, 49, (243,76,0): 96, 59, 50, (243,77,0): 96, 59, 50, (243,78,0): 96, 59, 51, (243,79,0): 97, 58, 51, (243,80,0): 96, 56, 48, (243,81,0): 96, 56, 48, (243,82,0): 97, 57, 49, (243,83,0): 97, 57, 49, (243,84,0): 97, 57, 49, (243,85,0): 98, 58, 50, (243,86,0): 98, 58, 50, (243,87,0): 98, 58, 50, (243,88,0): 102, 62, 54, (243,89,0): 101, 61, 53, (243,90,0): 100, 60, 52, (243,91,0): 99, 59, 51, (243,92,0): 98, 58, 50, (243,93,0): 97, 57, 49, (243,94,0): 97, 57, 49, (243,95,0): 96, 56, 48, (243,96,0): 97, 57, 47, (243,97,0): 97, 57, 45, (243,98,0): 97, 57, 45, (243,99,0): 97, 57, 45, (243,100,0): 96, 56, 44, (243,101,0): 96, 56, 44, (243,102,0): 96, 56, 44, (243,103,0): 96, 56, 44, (243,104,0): 100, 60, 48, (243,105,0): 100, 60, 48, (243,106,0): 99, 59, 47, (243,107,0): 99, 59, 47, (243,108,0): 98, 58, 46, (243,109,0): 98, 58, 46, (243,110,0): 97, 57, 45, (243,111,0): 97, 58, 43, (243,112,0): 97, 58, 43, (243,113,0): 96, 57, 40, (243,114,0): 96, 57, 40, (243,115,0): 96, 57, 40, (243,116,0): 95, 56, 39, (243,117,0): 94, 57, 39, (243,118,0): 93, 56, 38, (243,119,0): 93, 56, 38, (243,120,0): 93, 58, 39, (243,121,0): 93, 58, 39, (243,122,0): 90, 57, 38, (243,123,0): 89, 56, 37, (243,124,0): 89, 56, 37, (243,125,0): 88, 55, 36, (243,126,0): 88, 55, 36, (243,127,0): 86, 55, 37, (243,128,0): 80, 51, 37, (243,129,0): 80, 50, 39, (243,130,0): 80, 50, 39, (243,131,0): 80, 50, 39, (243,132,0): 80, 50, 39, (243,133,0): 80, 50, 39, (243,134,0): 80, 50, 39, (243,135,0): 80, 50, 39, (243,136,0): 79, 49, 38, (243,137,0): 78, 48, 37, (243,138,0): 78, 48, 37, (243,139,0): 77, 47, 36, (243,140,0): 77, 47, 36, (243,141,0): 76, 46, 35, (243,142,0): 76, 46, 35, (243,143,0): 76, 46, 35, (243,144,0): 75, 47, 35, (243,145,0): 74, 48, 35, (243,146,0): 75, 47, 35, (243,147,0): 75, 47, 35, (243,148,0): 75, 47, 35, (243,149,0): 75, 47, 35, (243,150,0): 76, 46, 35, (243,151,0): 76, 46, 35, (243,152,0): 77, 45, 34, (243,153,0): 78, 46, 35, (243,154,0): 79, 47, 36, (243,155,0): 81, 49, 38, (243,156,0): 82, 48, 38, (243,157,0): 82, 48, 38, (243,158,0): 81, 47, 37, (243,159,0): 81, 47, 37, (243,160,0): 78, 46, 35, (243,161,0): 76, 46, 35, (243,162,0): 76, 46, 35, (243,163,0): 76, 46, 35, (243,164,0): 76, 46, 35, (243,165,0): 76, 46, 35, (243,166,0): 76, 46, 35, (243,167,0): 76, 46, 35, (243,168,0): 73, 43, 32, (243,169,0): 74, 44, 33, (243,170,0): 74, 44, 33, (243,171,0): 75, 45, 34, (243,172,0): 74, 44, 33, (243,173,0): 73, 43, 32, (243,174,0): 71, 41, 30, (243,175,0): 70, 40, 29, (243,176,0): 69, 41, 29, (243,177,0): 69, 41, 29, (243,178,0): 68, 40, 29, (243,179,0): 68, 40, 28, (243,180,0): 68, 40, 29, (243,181,0): 67, 39, 27, (243,182,0): 67, 39, 28, (243,183,0): 67, 39, 27, (243,184,0): 65, 37, 26, (243,185,0): 65, 37, 25, (243,186,0): 64, 36, 25, (243,187,0): 63, 35, 23, (243,188,0): 62, 34, 23, (243,189,0): 60, 32, 20, (243,190,0): 60, 32, 21, (243,191,0): 59, 31, 20, (243,192,0): 58, 31, 22, (243,193,0): 58, 31, 24, (243,194,0): 57, 30, 23, (243,195,0): 56, 29, 20, (243,196,0): 57, 30, 21, (243,197,0): 58, 31, 22, (243,198,0): 60, 31, 23, (243,199,0): 61, 33, 22, (243,200,0): 66, 38, 27, (243,201,0): 67, 39, 27, (243,202,0): 70, 40, 29, (243,203,0): 71, 41, 30, (243,204,0): 73, 43, 32, (243,205,0): 73, 44, 30, (243,206,0): 74, 45, 31, (243,207,0): 73, 44, 28, (243,208,0): 78, 45, 28, (243,209,0): 79, 46, 27, (243,210,0): 82, 49, 30, (243,211,0): 83, 50, 31, (243,212,0): 83, 52, 31, (243,213,0): 81, 50, 29, (243,214,0): 80, 50, 26, (243,215,0): 78, 48, 24, (243,216,0): 80, 52, 28, (243,217,0): 82, 55, 28, (243,218,0): 82, 56, 29, (243,219,0): 80, 55, 25, (243,220,0): 78, 52, 25, (243,221,0): 78, 53, 23, (243,222,0): 79, 55, 27, (243,223,0): 82, 59, 28, (243,224,0): 86, 60, 27, (243,225,0): 91, 65, 30, (243,226,0): 97, 71, 34, (243,227,0): 103, 78, 38, (243,228,0): 107, 82, 41, (243,229,0): 113, 89, 45, (243,230,0): 120, 96, 48, (243,231,0): 125, 102, 50, (243,232,0): 130, 108, 51, (243,233,0): 133, 111, 51, (243,234,0): 138, 117, 54, (243,235,0): 144, 123, 56, (243,236,0): 151, 131, 62, (243,237,0): 157, 137, 66, (243,238,0): 161, 141, 70, (243,239,0): 163, 143, 72, (243,240,0): 172, 149, 81, (243,241,0): 173, 150, 82, (243,242,0): 175, 152, 82, (243,243,0): 177, 155, 82, (243,244,0): 179, 157, 81, (243,245,0): 185, 164, 85, (243,246,0): 191, 173, 91, (243,247,0): 197, 179, 95, (243,248,0): 195, 177, 91, (243,249,0): 198, 181, 93, (243,250,0): 202, 185, 97, (243,251,0): 206, 189, 101, (243,252,0): 208, 192, 105, (243,253,0): 210, 194, 107, (243,254,0): 210, 194, 107, (243,255,0): 210, 194, 107, (243,256,0): 211, 195, 108, (243,257,0): 205, 191, 103, (243,258,0): 200, 183, 101, (243,259,0): 195, 178, 100, (243,260,0): 189, 171, 99, (243,261,0): 182, 163, 95, (243,262,0): 174, 154, 91, (243,263,0): 167, 149, 87, (243,264,0): 162, 146, 86, (243,265,0): 156, 142, 81, (243,266,0): 150, 140, 78, (243,267,0): 155, 147, 82, (243,268,0): 163, 160, 89, (243,269,0): 174, 174, 100, (243,270,0): 183, 186, 109, (243,271,0): 188, 193, 113, (243,272,0): 189, 197, 112, (243,273,0): 190, 198, 112, (243,274,0): 194, 199, 115, (243,275,0): 195, 197, 113, (243,276,0): 194, 193, 110, (243,277,0): 190, 189, 106, (243,278,0): 184, 183, 100, (243,279,0): 179, 181, 97, (243,280,0): 180, 186, 100, (243,281,0): 179, 187, 101, (243,282,0): 181, 190, 101, (243,283,0): 186, 192, 104, (243,284,0): 191, 195, 108, (243,285,0): 196, 199, 112, (243,286,0): 201, 201, 115, (243,287,0): 203, 204, 111, (243,288,0): 224, 227, 124, (243,289,0): 232, 236, 126, (243,290,0): 245, 244, 136, (243,291,0): 253, 246, 139, (243,292,0): 253, 239, 134, (243,293,0): 247, 225, 123, (243,294,0): 240, 212, 113, (243,295,0): 235, 205, 109, (243,296,0): 224, 190, 100, (243,297,0): 221, 186, 102, (243,298,0): 213, 179, 105, (243,299,0): 204, 174, 104, (243,300,0): 196, 168, 105, (243,301,0): 189, 162, 107, (243,302,0): 182, 159, 107, (243,303,0): 179, 157, 107, (243,304,0): 166, 144, 94, (243,305,0): 165, 143, 94, (243,306,0): 164, 142, 95, (243,307,0): 162, 141, 96, (243,308,0): 158, 136, 95, (243,309,0): 148, 128, 91, (243,310,0): 136, 117, 84, (243,311,0): 128, 109, 79, (243,312,0): 122, 105, 77, (243,313,0): 118, 101, 75, (243,314,0): 112, 96, 71, (243,315,0): 108, 94, 68, (243,316,0): 108, 93, 70, (243,317,0): 105, 93, 69, (243,318,0): 105, 90, 69, (243,319,0): 103, 88, 69, (243,320,0): 103, 85, 75, (243,321,0): 101, 81, 74, (243,322,0): 95, 75, 66, (243,323,0): 89, 69, 58, (243,324,0): 82, 63, 49, (243,325,0): 76, 57, 43, (243,326,0): 72, 53, 38, (243,327,0): 70, 51, 36, (243,328,0): 71, 52, 37, (243,329,0): 69, 50, 36, (243,330,0): 66, 46, 35, (243,331,0): 62, 42, 33, (243,332,0): 59, 39, 32, (243,333,0): 57, 36, 31, (243,334,0): 56, 35, 32, (243,335,0): 56, 35, 34, (243,336,0): 53, 34, 30, (243,337,0): 50, 31, 27, (243,338,0): 47, 28, 24, (243,339,0): 45, 26, 22, (243,340,0): 43, 25, 21, (243,341,0): 45, 27, 23, (243,342,0): 47, 29, 25, (243,343,0): 49, 31, 27, (243,344,0): 50, 35, 30, (243,345,0): 50, 35, 30, (243,346,0): 50, 37, 31, (243,347,0): 51, 38, 32, (243,348,0): 53, 40, 34, (243,349,0): 55, 42, 36, (243,350,0): 54, 43, 37, (243,351,0): 57, 44, 36, (243,352,0): 67, 50, 42, (243,353,0): 67, 50, 40, (243,354,0): 66, 52, 41, (243,355,0): 67, 55, 43, (243,356,0): 68, 58, 46, (243,357,0): 71, 63, 50, (243,358,0): 75, 67, 54, (243,359,0): 74, 71, 56, (243,360,0): 76, 73, 58, (243,361,0): 79, 80, 64, (243,362,0): 89, 90, 74, (243,363,0): 99, 102, 85, (243,364,0): 107, 111, 94, (243,365,0): 112, 119, 101, (243,366,0): 115, 122, 104, (243,367,0): 117, 125, 104, (243,368,0): 117, 122, 99, (243,369,0): 116, 122, 96, (243,370,0): 112, 117, 94, (243,371,0): 108, 113, 90, (243,372,0): 105, 110, 88, (243,373,0): 100, 108, 85, (243,374,0): 98, 106, 85, (243,375,0): 96, 105, 86, (243,376,0): 101, 112, 95, (243,377,0): 105, 118, 100, (243,378,0): 110, 124, 107, (243,379,0): 113, 132, 113, (243,380,0): 117, 140, 122, (243,381,0): 122, 149, 130, (243,382,0): 131, 160, 142, (243,383,0): 133, 167, 150, (243,384,0): 137, 180, 163, (243,385,0): 141, 189, 175, (243,386,0): 149, 199, 188, (243,387,0): 158, 209, 202, (243,388,0): 162, 217, 214, (243,389,0): 165, 223, 224, (243,390,0): 170, 231, 232, (243,391,0): 172, 236, 236, (243,392,0): 183, 249, 248, (243,393,0): 184, 253, 250, (243,394,0): 187, 255, 251, (243,395,0): 186, 255, 251, (243,396,0): 185, 254, 251, (243,397,0): 185, 253, 252, (243,398,0): 188, 255, 255, (243,399,0): 191, 255, 255, (243,400,0): 188, 253, 255, (243,401,0): 188, 253, 255, (243,402,0): 186, 254, 255, (243,403,0): 184, 254, 252, (243,404,0): 183, 255, 251, (243,405,0): 180, 255, 248, (243,406,0): 180, 255, 246, (243,407,0): 180, 255, 246, (243,408,0): 181, 254, 247, (243,409,0): 179, 249, 247, (243,410,0): 182, 247, 249, (243,411,0): 185, 248, 255, (243,412,0): 188, 246, 255, (243,413,0): 181, 233, 254, (243,414,0): 164, 214, 237, (243,415,0): 150, 197, 223, (243,416,0): 136, 187, 214, (243,417,0): 137, 188, 215, (243,418,0): 141, 192, 219, (243,419,0): 148, 197, 227, (243,420,0): 151, 200, 232, (243,421,0): 150, 196, 230, (243,422,0): 144, 188, 223, (243,423,0): 141, 184, 219, (243,424,0): 138, 178, 214, (243,425,0): 132, 172, 207, (243,426,0): 127, 165, 201, (243,427,0): 129, 165, 199, (243,428,0): 134, 169, 199, (243,429,0): 136, 171, 199, (243,430,0): 132, 168, 194, (243,431,0): 127, 163, 187, (243,432,0): 125, 163, 186, (243,433,0): 123, 161, 184, (243,434,0): 121, 157, 181, (243,435,0): 117, 153, 175, (243,436,0): 116, 148, 171, (243,437,0): 114, 145, 166, (243,438,0): 114, 142, 163, (243,439,0): 114, 139, 159, (243,440,0): 112, 133, 154, (243,441,0): 114, 132, 152, (243,442,0): 115, 130, 149, (243,443,0): 115, 128, 145, (243,444,0): 115, 126, 144, (243,445,0): 116, 124, 143, (243,446,0): 116, 123, 142, (243,447,0): 114, 123, 140, (243,448,0): 112, 125, 141, (243,449,0): 111, 127, 142, (243,450,0): 114, 127, 143, (243,451,0): 116, 130, 143, (243,452,0): 118, 130, 144, (243,453,0): 116, 128, 140, (243,454,0): 116, 126, 138, (243,455,0): 114, 124, 136, (243,456,0): 109, 117, 130, (243,457,0): 108, 114, 126, (243,458,0): 106, 110, 122, (243,459,0): 102, 106, 117, (243,460,0): 97, 99, 111, (243,461,0): 93, 95, 107, (243,462,0): 91, 91, 103, (243,463,0): 87, 89, 101, (243,464,0): 83, 86, 95, (243,465,0): 83, 86, 95, (243,466,0): 82, 85, 94, (243,467,0): 79, 82, 91, (243,468,0): 78, 78, 86, (243,469,0): 74, 74, 82, (243,470,0): 71, 71, 79, (243,471,0): 70, 69, 77, (243,472,0): 71, 70, 76, (243,473,0): 71, 68, 75, (243,474,0): 71, 69, 74, (243,475,0): 71, 69, 74, (243,476,0): 70, 68, 73, (243,477,0): 70, 68, 73, (243,478,0): 72, 67, 71, (243,479,0): 69, 68, 73, (243,480,0): 72, 75, 84, (243,481,0): 72, 76, 87, (243,482,0): 75, 77, 89, (243,483,0): 78, 80, 92, (243,484,0): 82, 84, 97, (243,485,0): 85, 87, 100, (243,486,0): 88, 90, 105, (243,487,0): 90, 92, 107, (243,488,0): 98, 100, 115, (243,489,0): 100, 106, 120, (243,490,0): 106, 113, 129, (243,491,0): 109, 121, 135, (243,492,0): 113, 126, 142, (243,493,0): 118, 134, 149, (243,494,0): 124, 142, 156, (243,495,0): 128, 147, 162, (243,496,0): 134, 152, 174, (243,497,0): 138, 155, 181, (243,498,0): 143, 160, 186, (243,499,0): 149, 166, 192, (243,500,0): 150, 170, 194, (243,501,0): 151, 171, 195, (243,502,0): 150, 170, 194, (243,503,0): 148, 170, 193, (243,504,0): 148, 173, 195, (243,505,0): 149, 174, 196, (243,506,0): 147, 173, 196, (243,507,0): 146, 172, 195, (243,508,0): 142, 168, 193, (243,509,0): 136, 164, 188, (243,510,0): 132, 160, 184, (243,511,0): 130, 156, 179, (243,512,0): 128, 151, 167, (243,513,0): 124, 146, 159, (243,514,0): 119, 138, 152, (243,515,0): 113, 132, 146, (243,516,0): 110, 128, 140, (243,517,0): 109, 127, 139, (243,518,0): 110, 126, 139, (243,519,0): 110, 126, 139, (243,520,0): 110, 122, 134, (243,521,0): 105, 117, 129, (243,522,0): 102, 112, 122, (243,523,0): 99, 109, 119, (243,524,0): 100, 108, 119, (243,525,0): 101, 109, 120, (243,526,0): 101, 108, 118, (243,527,0): 100, 107, 117, (243,528,0): 99, 103, 112, (243,529,0): 102, 106, 115, (243,530,0): 106, 110, 121, (243,531,0): 108, 112, 123, (243,532,0): 107, 113, 127, (243,533,0): 110, 118, 131, (243,534,0): 115, 122, 140, (243,535,0): 119, 127, 146, (243,536,0): 123, 134, 154, (243,537,0): 124, 136, 158, (243,538,0): 126, 141, 164, (243,539,0): 128, 144, 169, (243,540,0): 130, 146, 172, (243,541,0): 129, 146, 174, (243,542,0): 129, 146, 176, (243,543,0): 126, 145, 175, (243,544,0): 127, 146, 178, (243,545,0): 125, 146, 177, (243,546,0): 122, 143, 174, (243,547,0): 120, 139, 169, (243,548,0): 116, 135, 165, (243,549,0): 112, 132, 159, (243,550,0): 109, 129, 156, (243,551,0): 110, 127, 153, (243,552,0): 103, 121, 145, (243,553,0): 104, 120, 143, (243,554,0): 103, 119, 142, (243,555,0): 103, 120, 140, (243,556,0): 103, 120, 140, (243,557,0): 105, 120, 139, (243,558,0): 106, 121, 140, (243,559,0): 106, 122, 138, (243,560,0): 107, 120, 136, (243,561,0): 107, 121, 134, (243,562,0): 108, 121, 137, (243,563,0): 108, 121, 137, (243,564,0): 108, 121, 137, (243,565,0): 107, 123, 138, (243,566,0): 107, 123, 139, (243,567,0): 107, 123, 139, (243,568,0): 103, 118, 137, (243,569,0): 102, 119, 137, (243,570,0): 103, 120, 138, (243,571,0): 103, 122, 139, (243,572,0): 102, 120, 140, (243,573,0): 101, 119, 139, (243,574,0): 99, 117, 137, (243,575,0): 99, 118, 135, (243,576,0): 102, 119, 137, (243,577,0): 101, 118, 134, (243,578,0): 98, 115, 131, (243,579,0): 95, 112, 128, (243,580,0): 94, 110, 126, (243,581,0): 93, 109, 125, (243,582,0): 93, 109, 125, (243,583,0): 93, 109, 125, (243,584,0): 95, 108, 125, (243,585,0): 95, 108, 125, (243,586,0): 97, 108, 126, (243,587,0): 100, 111, 129, (243,588,0): 103, 114, 132, (243,589,0): 102, 113, 131, (243,590,0): 100, 108, 127, (243,591,0): 97, 104, 122, (243,592,0): 93, 95, 108, (243,593,0): 95, 93, 104, (243,594,0): 91, 88, 99, (243,595,0): 81, 78, 87, (243,596,0): 71, 66, 73, (243,597,0): 63, 56, 63, (243,598,0): 62, 52, 60, (243,599,0): 62, 53, 58, (244,0,0): 45, 33, 43, (244,1,0): 46, 34, 44, (244,2,0): 46, 34, 44, (244,3,0): 47, 35, 45, (244,4,0): 47, 35, 45, (244,5,0): 48, 36, 46, (244,6,0): 49, 36, 46, (244,7,0): 49, 36, 46, (244,8,0): 51, 35, 46, (244,9,0): 51, 35, 46, (244,10,0): 52, 34, 46, (244,11,0): 52, 34, 46, (244,12,0): 52, 34, 46, (244,13,0): 52, 34, 46, (244,14,0): 52, 34, 46, (244,15,0): 52, 34, 46, (244,16,0): 52, 35, 45, (244,17,0): 53, 36, 46, (244,18,0): 53, 36, 46, (244,19,0): 54, 37, 47, (244,20,0): 54, 37, 47, (244,21,0): 55, 38, 48, (244,22,0): 55, 38, 48, (244,23,0): 55, 38, 48, (244,24,0): 56, 39, 49, (244,25,0): 56, 39, 49, (244,26,0): 56, 39, 49, (244,27,0): 57, 40, 50, (244,28,0): 58, 41, 51, (244,29,0): 58, 41, 51, (244,30,0): 58, 41, 51, (244,31,0): 59, 42, 52, (244,32,0): 58, 41, 49, (244,33,0): 59, 42, 48, (244,34,0): 62, 43, 49, (244,35,0): 63, 44, 50, (244,36,0): 65, 46, 50, (244,37,0): 67, 48, 52, (244,38,0): 70, 49, 54, (244,39,0): 71, 50, 55, (244,40,0): 70, 48, 51, (244,41,0): 70, 48, 51, (244,42,0): 70, 48, 50, (244,43,0): 71, 49, 51, (244,44,0): 74, 49, 52, (244,45,0): 74, 49, 52, (244,46,0): 74, 50, 50, (244,47,0): 76, 50, 51, (244,48,0): 80, 49, 54, (244,49,0): 81, 49, 54, (244,50,0): 81, 49, 54, (244,51,0): 81, 49, 54, (244,52,0): 81, 49, 54, (244,53,0): 81, 49, 54, (244,54,0): 81, 49, 54, (244,55,0): 81, 49, 54, (244,56,0): 81, 49, 54, (244,57,0): 81, 49, 54, (244,58,0): 81, 49, 54, (244,59,0): 81, 49, 54, (244,60,0): 81, 49, 54, (244,61,0): 81, 49, 54, (244,62,0): 81, 49, 54, (244,63,0): 81, 49, 54, (244,64,0): 83, 51, 56, (244,65,0): 84, 52, 57, (244,66,0): 86, 51, 55, (244,67,0): 88, 54, 53, (244,68,0): 89, 55, 53, (244,69,0): 91, 56, 50, (244,70,0): 92, 58, 49, (244,71,0): 93, 59, 49, (244,72,0): 93, 59, 49, (244,73,0): 95, 59, 47, (244,74,0): 95, 59, 47, (244,75,0): 96, 58, 47, (244,76,0): 96, 58, 47, (244,77,0): 96, 58, 47, (244,78,0): 95, 57, 48, (244,79,0): 96, 56, 48, (244,80,0): 95, 55, 45, (244,81,0): 96, 56, 46, (244,82,0): 96, 56, 46, (244,83,0): 97, 57, 47, (244,84,0): 97, 57, 47, (244,85,0): 98, 58, 48, (244,86,0): 99, 59, 49, (244,87,0): 99, 59, 49, (244,88,0): 103, 63, 53, (244,89,0): 103, 63, 53, (244,90,0): 103, 63, 53, (244,91,0): 102, 62, 52, (244,92,0): 101, 61, 51, (244,93,0): 100, 60, 50, (244,94,0): 98, 58, 48, (244,95,0): 98, 58, 48, (244,96,0): 98, 58, 46, (244,97,0): 98, 58, 46, (244,98,0): 98, 58, 46, (244,99,0): 98, 58, 46, (244,100,0): 97, 57, 45, (244,101,0): 97, 57, 45, (244,102,0): 97, 57, 45, (244,103,0): 97, 57, 45, (244,104,0): 100, 60, 48, (244,105,0): 100, 60, 48, (244,106,0): 99, 59, 47, (244,107,0): 99, 59, 47, (244,108,0): 98, 58, 46, (244,109,0): 98, 58, 46, (244,110,0): 97, 57, 45, (244,111,0): 97, 58, 43, (244,112,0): 97, 58, 43, (244,113,0): 96, 57, 40, (244,114,0): 96, 57, 40, (244,115,0): 96, 57, 40, (244,116,0): 94, 57, 39, (244,117,0): 94, 57, 39, (244,118,0): 93, 56, 38, (244,119,0): 92, 57, 38, (244,120,0): 91, 56, 37, (244,121,0): 91, 56, 37, (244,122,0): 88, 55, 36, (244,123,0): 88, 55, 36, (244,124,0): 87, 56, 36, (244,125,0): 86, 55, 35, (244,126,0): 86, 55, 35, (244,127,0): 86, 55, 37, (244,128,0): 82, 53, 37, (244,129,0): 82, 53, 39, (244,130,0): 82, 53, 39, (244,131,0): 82, 53, 39, (244,132,0): 82, 53, 39, (244,133,0): 82, 53, 39, (244,134,0): 82, 53, 39, (244,135,0): 82, 53, 39, (244,136,0): 80, 51, 37, (244,137,0): 80, 51, 37, (244,138,0): 80, 51, 37, (244,139,0): 79, 50, 36, (244,140,0): 79, 50, 36, (244,141,0): 78, 49, 35, (244,142,0): 78, 49, 35, (244,143,0): 77, 48, 34, (244,144,0): 76, 48, 34, (244,145,0): 76, 48, 34, (244,146,0): 76, 48, 34, (244,147,0): 76, 48, 34, (244,148,0): 77, 48, 34, (244,149,0): 77, 48, 34, (244,150,0): 77, 48, 34, (244,151,0): 77, 48, 34, (244,152,0): 78, 46, 33, (244,153,0): 79, 47, 34, (244,154,0): 81, 47, 35, (244,155,0): 82, 48, 36, (244,156,0): 83, 49, 37, (244,157,0): 83, 49, 37, (244,158,0): 84, 48, 36, (244,159,0): 81, 47, 35, (244,160,0): 79, 47, 34, (244,161,0): 79, 47, 34, (244,162,0): 79, 47, 34, (244,163,0): 79, 47, 34, (244,164,0): 79, 47, 34, (244,165,0): 79, 47, 34, (244,166,0): 79, 47, 34, (244,167,0): 79, 47, 34, (244,168,0): 76, 44, 31, (244,169,0): 77, 45, 32, (244,170,0): 77, 45, 32, (244,171,0): 78, 46, 33, (244,172,0): 77, 45, 32, (244,173,0): 76, 44, 31, (244,174,0): 74, 42, 29, (244,175,0): 71, 41, 30, (244,176,0): 70, 42, 31, (244,177,0): 70, 42, 31, (244,178,0): 69, 40, 32, (244,179,0): 69, 41, 30, (244,180,0): 68, 39, 31, (244,181,0): 67, 39, 28, (244,182,0): 67, 38, 30, (244,183,0): 66, 38, 27, (244,184,0): 64, 35, 27, (244,185,0): 64, 36, 25, (244,186,0): 63, 34, 26, (244,187,0): 62, 34, 23, (244,188,0): 61, 32, 24, (244,189,0): 60, 32, 21, (244,190,0): 60, 31, 23, (244,191,0): 59, 30, 22, (244,192,0): 58, 31, 22, (244,193,0): 55, 31, 21, (244,194,0): 55, 31, 21, (244,195,0): 55, 31, 21, (244,196,0): 58, 31, 22, (244,197,0): 59, 32, 21, (244,198,0): 62, 34, 23, (244,199,0): 63, 35, 24, (244,200,0): 69, 39, 29, (244,201,0): 70, 40, 29, (244,202,0): 74, 42, 31, (244,203,0): 76, 44, 31, (244,204,0): 77, 45, 32, (244,205,0): 77, 45, 32, (244,206,0): 77, 43, 31, (244,207,0): 76, 43, 28, (244,208,0): 78, 45, 26, (244,209,0): 79, 47, 26, (244,210,0): 82, 50, 29, (244,211,0): 83, 51, 30, (244,212,0): 83, 52, 31, (244,213,0): 81, 50, 29, (244,214,0): 80, 49, 28, (244,215,0): 78, 47, 26, (244,216,0): 80, 52, 30, (244,217,0): 81, 53, 29, (244,218,0): 81, 55, 30, (244,219,0): 80, 54, 27, (244,220,0): 78, 52, 27, (244,221,0): 79, 53, 26, (244,222,0): 81, 57, 31, (244,223,0): 85, 62, 31, (244,224,0): 91, 65, 28, (244,225,0): 96, 72, 28, (244,226,0): 103, 79, 35, (244,227,0): 109, 85, 39, (244,228,0): 114, 90, 42, (244,229,0): 120, 97, 47, (244,230,0): 126, 103, 49, (244,231,0): 131, 109, 51, (244,232,0): 135, 113, 53, (244,233,0): 137, 116, 51, (244,234,0): 141, 120, 53, (244,235,0): 147, 127, 56, (244,236,0): 153, 133, 60, (244,237,0): 160, 141, 65, (244,238,0): 165, 146, 70, (244,239,0): 167, 148, 72, (244,240,0): 172, 152, 79, (244,241,0): 176, 156, 83, (244,242,0): 180, 160, 87, (244,243,0): 184, 165, 89, (244,244,0): 187, 168, 89, (244,245,0): 192, 174, 92, (244,246,0): 199, 181, 95, (244,247,0): 204, 187, 99, (244,248,0): 206, 189, 101, (244,249,0): 208, 191, 101, (244,250,0): 212, 195, 105, (244,251,0): 215, 198, 108, (244,252,0): 217, 200, 112, (244,253,0): 217, 200, 112, (244,254,0): 216, 199, 111, (244,255,0): 215, 197, 111, (244,256,0): 216, 198, 112, (244,257,0): 209, 193, 108, (244,258,0): 202, 183, 104, (244,259,0): 195, 176, 100, (244,260,0): 188, 168, 97, (244,261,0): 179, 160, 92, (244,262,0): 171, 151, 88, (244,263,0): 164, 146, 84, (244,264,0): 158, 142, 82, (244,265,0): 153, 142, 80, (244,266,0): 149, 141, 78, (244,267,0): 151, 146, 80, (244,268,0): 161, 161, 91, (244,269,0): 176, 178, 105, (244,270,0): 184, 191, 114, (244,271,0): 189, 196, 118, (244,272,0): 192, 200, 117, (244,273,0): 192, 200, 115, (244,274,0): 193, 198, 116, (244,275,0): 193, 197, 113, (244,276,0): 191, 193, 110, (244,277,0): 186, 188, 105, (244,278,0): 182, 184, 101, (244,279,0): 179, 183, 99, (244,280,0): 178, 186, 101, (244,281,0): 176, 186, 100, (244,282,0): 176, 186, 100, (244,283,0): 176, 186, 100, (244,284,0): 179, 187, 102, (244,285,0): 183, 188, 104, (244,286,0): 186, 190, 106, (244,287,0): 187, 193, 103, (244,288,0): 210, 222, 120, (244,289,0): 221, 234, 126, (244,290,0): 239, 249, 137, (244,291,0): 253, 255, 146, (244,292,0): 255, 255, 143, (244,293,0): 255, 249, 136, (244,294,0): 255, 240, 129, (244,295,0): 255, 232, 126, (244,296,0): 239, 214, 113, (244,297,0): 235, 207, 110, (244,298,0): 225, 195, 109, (244,299,0): 212, 183, 105, (244,300,0): 200, 173, 102, (244,301,0): 191, 166, 102, (244,302,0): 186, 161, 104, (244,303,0): 182, 159, 105, (244,304,0): 170, 149, 94, (244,305,0): 168, 148, 95, (244,306,0): 167, 147, 97, (244,307,0): 164, 146, 98, (244,308,0): 160, 141, 98, (244,309,0): 152, 133, 93, (244,310,0): 140, 121, 88, (244,311,0): 132, 113, 83, (244,312,0): 124, 107, 81, (244,313,0): 120, 102, 78, (244,314,0): 116, 98, 74, (244,315,0): 113, 97, 74, (244,316,0): 113, 96, 76, (244,317,0): 111, 96, 75, (244,318,0): 110, 94, 71, (244,319,0): 107, 90, 72, (244,320,0): 106, 87, 73, (244,321,0): 102, 82, 71, (244,322,0): 96, 76, 65, (244,323,0): 88, 69, 55, (244,324,0): 81, 62, 48, (244,325,0): 76, 57, 43, (244,326,0): 72, 53, 38, (244,327,0): 71, 52, 37, (244,328,0): 72, 53, 39, (244,329,0): 70, 51, 37, (244,330,0): 67, 47, 36, (244,331,0): 63, 43, 34, (244,332,0): 59, 39, 32, (244,333,0): 57, 36, 31, (244,334,0): 55, 34, 31, (244,335,0): 55, 34, 31, (244,336,0): 53, 34, 30, (244,337,0): 50, 31, 27, (244,338,0): 47, 28, 24, (244,339,0): 45, 26, 22, (244,340,0): 43, 25, 21, (244,341,0): 45, 27, 23, (244,342,0): 47, 29, 25, (244,343,0): 49, 31, 27, (244,344,0): 49, 34, 29, (244,345,0): 50, 35, 30, (244,346,0): 50, 37, 31, (244,347,0): 52, 39, 33, (244,348,0): 54, 41, 35, (244,349,0): 55, 42, 36, (244,350,0): 54, 43, 37, (244,351,0): 56, 43, 35, (244,352,0): 63, 49, 40, (244,353,0): 64, 50, 39, (244,354,0): 65, 51, 40, (244,355,0): 66, 54, 42, (244,356,0): 67, 57, 45, (244,357,0): 69, 61, 48, (244,358,0): 72, 64, 51, (244,359,0): 70, 67, 52, (244,360,0): 74, 71, 56, (244,361,0): 75, 76, 60, (244,362,0): 82, 83, 67, (244,363,0): 90, 93, 76, (244,364,0): 100, 104, 87, (244,365,0): 109, 116, 98, (244,366,0): 117, 124, 106, (244,367,0): 121, 130, 109, (244,368,0): 118, 126, 103, (244,369,0): 116, 124, 100, (244,370,0): 112, 120, 97, (244,371,0): 109, 117, 94, (244,372,0): 106, 114, 93, (244,373,0): 104, 112, 91, (244,374,0): 103, 110, 92, (244,375,0): 102, 111, 92, (244,376,0): 104, 115, 98, (244,377,0): 107, 121, 104, (244,378,0): 112, 129, 113, (244,379,0): 116, 137, 120, (244,380,0): 121, 145, 129, (244,381,0): 128, 155, 138, (244,382,0): 135, 163, 148, (244,383,0): 138, 172, 156, (244,384,0): 140, 184, 171, (244,385,0): 142, 192, 181, (244,386,0): 152, 203, 196, (244,387,0): 161, 213, 209, (244,388,0): 165, 221, 222, (244,389,0): 168, 227, 231, (244,390,0): 172, 236, 238, (244,391,0): 175, 240, 242, (244,392,0): 182, 250, 249, (244,393,0): 183, 254, 250, (244,394,0): 185, 255, 250, (244,395,0): 184, 255, 250, (244,396,0): 184, 255, 251, (244,397,0): 185, 255, 253, (244,398,0): 187, 255, 255, (244,399,0): 190, 255, 255, (244,400,0): 188, 253, 255, (244,401,0): 188, 253, 255, (244,402,0): 186, 254, 255, (244,403,0): 184, 254, 252, (244,404,0): 183, 255, 251, (244,405,0): 180, 255, 250, (244,406,0): 180, 255, 248, (244,407,0): 180, 255, 250, (244,408,0): 181, 253, 250, (244,409,0): 185, 255, 255, (244,410,0): 190, 255, 255, (244,411,0): 191, 249, 255, (244,412,0): 182, 234, 255, (244,413,0): 168, 215, 241, (244,414,0): 153, 197, 226, (244,415,0): 143, 186, 218, (244,416,0): 139, 186, 216, (244,417,0): 140, 189, 219, (244,418,0): 144, 193, 223, (244,419,0): 150, 196, 229, (244,420,0): 152, 198, 231, (244,421,0): 151, 195, 230, (244,422,0): 143, 187, 222, (244,423,0): 136, 179, 214, (244,424,0): 136, 176, 211, (244,425,0): 130, 169, 202, (244,426,0): 126, 162, 194, (244,427,0): 126, 163, 192, (244,428,0): 130, 165, 193, (244,429,0): 131, 167, 193, (244,430,0): 128, 162, 187, (244,431,0): 123, 158, 180, (244,432,0): 122, 157, 179, (244,433,0): 121, 156, 178, (244,434,0): 121, 153, 176, (244,435,0): 117, 149, 172, (244,436,0): 116, 144, 168, (244,437,0): 114, 140, 163, (244,438,0): 112, 137, 159, (244,439,0): 113, 134, 155, (244,440,0): 112, 130, 152, (244,441,0): 114, 129, 150, (244,442,0): 115, 126, 146, (244,443,0): 115, 123, 142, (244,444,0): 115, 122, 141, (244,445,0): 114, 119, 138, (244,446,0): 112, 117, 136, (244,447,0): 111, 118, 136, (244,448,0): 112, 124, 140, (244,449,0): 112, 126, 139, (244,450,0): 115, 127, 141, (244,451,0): 116, 128, 142, (244,452,0): 116, 125, 140, (244,453,0): 113, 123, 135, (244,454,0): 112, 120, 133, (244,455,0): 111, 117, 129, (244,456,0): 107, 111, 123, (244,457,0): 105, 109, 121, (244,458,0): 102, 104, 117, (244,459,0): 98, 100, 112, (244,460,0): 95, 95, 107, (244,461,0): 91, 91, 101, (244,462,0): 88, 86, 97, (244,463,0): 87, 85, 96, (244,464,0): 82, 80, 91, (244,465,0): 81, 81, 91, (244,466,0): 80, 80, 90, (244,467,0): 77, 77, 87, (244,468,0): 75, 74, 82, (244,469,0): 71, 70, 78, (244,470,0): 68, 67, 75, (244,471,0): 67, 64, 73, (244,472,0): 64, 61, 68, (244,473,0): 67, 62, 69, (244,474,0): 68, 63, 69, (244,475,0): 69, 64, 70, (244,476,0): 71, 66, 72, (244,477,0): 72, 67, 73, (244,478,0): 74, 68, 72, (244,479,0): 72, 70, 75, (244,480,0): 74, 74, 82, (244,481,0): 73, 76, 85, (244,482,0): 79, 79, 89, (244,483,0): 83, 83, 93, (244,484,0): 87, 87, 99, (244,485,0): 90, 90, 102, (244,486,0): 93, 92, 106, (244,487,0): 92, 94, 107, (244,488,0): 98, 100, 113, (244,489,0): 102, 106, 118, (244,490,0): 107, 113, 127, (244,491,0): 111, 121, 133, (244,492,0): 114, 126, 140, (244,493,0): 118, 134, 147, (244,494,0): 124, 142, 154, (244,495,0): 129, 146, 162, (244,496,0): 137, 153, 176, (244,497,0): 140, 156, 181, (244,498,0): 144, 161, 187, (244,499,0): 149, 166, 192, (244,500,0): 152, 169, 195, (244,501,0): 154, 171, 197, (244,502,0): 154, 171, 197, (244,503,0): 151, 171, 196, (244,504,0): 151, 171, 196, (244,505,0): 152, 172, 197, (244,506,0): 151, 171, 195, (244,507,0): 148, 170, 193, (244,508,0): 143, 165, 188, (244,509,0): 135, 157, 180, (244,510,0): 128, 150, 173, (244,511,0): 124, 146, 167, (244,512,0): 123, 144, 161, (244,513,0): 121, 143, 157, (244,514,0): 119, 138, 152, (244,515,0): 114, 133, 147, (244,516,0): 110, 128, 142, (244,517,0): 109, 127, 141, (244,518,0): 110, 126, 139, (244,519,0): 110, 126, 139, (244,520,0): 111, 123, 135, (244,521,0): 107, 119, 131, (244,522,0): 104, 114, 126, (244,523,0): 102, 112, 124, (244,524,0): 104, 112, 123, (244,525,0): 104, 112, 123, (244,526,0): 104, 110, 122, (244,527,0): 105, 109, 120, (244,528,0): 101, 104, 113, (244,529,0): 104, 107, 116, (244,530,0): 107, 109, 121, (244,531,0): 107, 111, 122, (244,532,0): 108, 111, 126, (244,533,0): 109, 115, 129, (244,534,0): 114, 119, 138, (244,535,0): 117, 124, 143, (244,536,0): 122, 130, 151, (244,537,0): 123, 134, 156, (244,538,0): 127, 137, 162, (244,539,0): 130, 142, 168, (244,540,0): 133, 144, 172, (244,541,0): 131, 145, 172, (244,542,0): 130, 144, 173, (244,543,0): 128, 143, 174, (244,544,0): 126, 145, 175, (244,545,0): 124, 143, 173, (244,546,0): 121, 140, 170, (244,547,0): 120, 137, 167, (244,548,0): 116, 133, 163, (244,549,0): 112, 129, 157, (244,550,0): 110, 127, 153, (244,551,0): 109, 125, 150, (244,552,0): 105, 121, 146, (244,553,0): 105, 120, 143, (244,554,0): 104, 119, 140, (244,555,0): 102, 117, 136, (244,556,0): 102, 117, 136, (244,557,0): 105, 118, 135, (244,558,0): 106, 119, 136, (244,559,0): 107, 120, 137, (244,560,0): 104, 116, 132, (244,561,0): 104, 116, 130, (244,562,0): 105, 117, 131, (244,563,0): 104, 118, 131, (244,564,0): 105, 118, 134, (244,565,0): 106, 119, 135, (244,566,0): 106, 119, 135, (244,567,0): 105, 121, 136, (244,568,0): 102, 118, 134, (244,569,0): 102, 119, 135, (244,570,0): 103, 120, 138, (244,571,0): 103, 120, 138, (244,572,0): 103, 120, 138, (244,573,0): 101, 120, 137, (244,574,0): 100, 118, 138, (244,575,0): 99, 118, 135, (244,576,0): 102, 119, 137, (244,577,0): 101, 118, 134, (244,578,0): 99, 115, 131, (244,579,0): 97, 113, 129, (244,580,0): 95, 111, 127, (244,581,0): 94, 110, 126, (244,582,0): 96, 109, 126, (244,583,0): 96, 109, 126, (244,584,0): 98, 109, 127, (244,585,0): 97, 108, 126, (244,586,0): 97, 108, 126, (244,587,0): 100, 111, 129, (244,588,0): 104, 112, 131, (244,589,0): 104, 112, 131, (244,590,0): 101, 109, 128, (244,591,0): 98, 105, 123, (244,592,0): 95, 97, 110, (244,593,0): 95, 95, 105, (244,594,0): 91, 89, 100, (244,595,0): 82, 79, 88, (244,596,0): 72, 67, 74, (244,597,0): 64, 59, 65, (244,598,0): 62, 55, 62, (244,599,0): 62, 55, 62, (245,0,0): 46, 34, 44, (245,1,0): 46, 34, 44, (245,2,0): 46, 34, 44, (245,3,0): 47, 35, 45, (245,4,0): 48, 36, 46, (245,5,0): 48, 36, 46, (245,6,0): 49, 36, 46, (245,7,0): 50, 37, 47, (245,8,0): 52, 36, 47, (245,9,0): 52, 36, 47, (245,10,0): 53, 35, 47, (245,11,0): 53, 35, 47, (245,12,0): 53, 35, 47, (245,13,0): 53, 35, 47, (245,14,0): 53, 35, 47, (245,15,0): 53, 35, 47, (245,16,0): 53, 36, 46, (245,17,0): 53, 36, 46, (245,18,0): 53, 36, 46, (245,19,0): 54, 37, 47, (245,20,0): 55, 38, 48, (245,21,0): 55, 38, 48, (245,22,0): 55, 38, 48, (245,23,0): 56, 39, 49, (245,24,0): 58, 41, 51, (245,25,0): 58, 41, 51, (245,26,0): 58, 41, 51, (245,27,0): 59, 42, 52, (245,28,0): 59, 42, 52, (245,29,0): 60, 43, 53, (245,30,0): 60, 43, 53, (245,31,0): 60, 43, 51, (245,32,0): 60, 43, 49, (245,33,0): 60, 43, 49, (245,34,0): 62, 43, 49, (245,35,0): 63, 44, 50, (245,36,0): 64, 45, 49, (245,37,0): 66, 47, 51, (245,38,0): 69, 48, 53, (245,39,0): 70, 49, 54, (245,40,0): 70, 48, 51, (245,41,0): 71, 49, 52, (245,42,0): 71, 49, 51, (245,43,0): 72, 50, 52, (245,44,0): 74, 49, 52, (245,45,0): 75, 50, 53, (245,46,0): 75, 51, 51, (245,47,0): 76, 50, 51, (245,48,0): 81, 50, 55, (245,49,0): 82, 50, 55, (245,50,0): 82, 50, 55, (245,51,0): 82, 50, 55, (245,52,0): 82, 50, 55, (245,53,0): 82, 50, 55, (245,54,0): 82, 50, 55, (245,55,0): 82, 50, 55, (245,56,0): 81, 49, 54, (245,57,0): 81, 49, 54, (245,58,0): 81, 49, 54, (245,59,0): 81, 49, 54, (245,60,0): 81, 49, 54, (245,61,0): 81, 49, 54, (245,62,0): 81, 49, 54, (245,63,0): 81, 49, 54, (245,64,0): 86, 51, 57, (245,65,0): 86, 51, 55, (245,66,0): 88, 54, 55, (245,67,0): 89, 55, 54, (245,68,0): 92, 57, 53, (245,69,0): 93, 58, 52, (245,70,0): 94, 60, 51, (245,71,0): 97, 61, 49, (245,72,0): 97, 61, 49, (245,73,0): 97, 61, 47, (245,74,0): 98, 60, 49, (245,75,0): 97, 59, 48, (245,76,0): 97, 59, 48, (245,77,0): 98, 58, 48, (245,78,0): 97, 57, 49, (245,79,0): 97, 57, 47, (245,80,0): 96, 56, 44, (245,81,0): 97, 58, 43, (245,82,0): 98, 58, 46, (245,83,0): 99, 60, 45, (245,84,0): 100, 60, 48, (245,85,0): 101, 62, 47, (245,86,0): 101, 61, 49, (245,87,0): 102, 63, 48, (245,88,0): 104, 64, 52, (245,89,0): 104, 65, 50, (245,90,0): 104, 64, 52, (245,91,0): 104, 65, 50, (245,92,0): 103, 63, 51, (245,93,0): 101, 62, 47, (245,94,0): 99, 59, 47, (245,95,0): 98, 58, 46, (245,96,0): 98, 58, 46, (245,97,0): 98, 58, 46, (245,98,0): 98, 58, 46, (245,99,0): 98, 58, 46, (245,100,0): 99, 59, 47, (245,101,0): 99, 59, 47, (245,102,0): 99, 59, 47, (245,103,0): 99, 59, 47, (245,104,0): 100, 60, 48, (245,105,0): 100, 60, 48, (245,106,0): 99, 59, 47, (245,107,0): 99, 59, 47, (245,108,0): 98, 58, 46, (245,109,0): 98, 58, 46, (245,110,0): 97, 57, 45, (245,111,0): 97, 58, 43, (245,112,0): 96, 57, 42, (245,113,0): 96, 57, 40, (245,114,0): 95, 56, 39, (245,115,0): 94, 57, 39, (245,116,0): 93, 56, 38, (245,117,0): 93, 56, 38, (245,118,0): 91, 56, 37, (245,119,0): 91, 56, 37, (245,120,0): 90, 55, 36, (245,121,0): 88, 55, 36, (245,122,0): 88, 55, 36, (245,123,0): 88, 55, 36, (245,124,0): 87, 56, 36, (245,125,0): 87, 56, 36, (245,126,0): 87, 56, 36, (245,127,0): 87, 56, 38, (245,128,0): 83, 54, 38, (245,129,0): 83, 54, 40, (245,130,0): 83, 54, 40, (245,131,0): 83, 54, 40, (245,132,0): 83, 54, 40, (245,133,0): 83, 54, 40, (245,134,0): 83, 54, 40, (245,135,0): 83, 54, 40, (245,136,0): 82, 53, 39, (245,137,0): 82, 53, 39, (245,138,0): 81, 52, 38, (245,139,0): 81, 52, 38, (245,140,0): 80, 51, 37, (245,141,0): 80, 51, 37, (245,142,0): 79, 50, 36, (245,143,0): 79, 50, 36, (245,144,0): 76, 48, 34, (245,145,0): 76, 48, 34, (245,146,0): 76, 48, 34, (245,147,0): 76, 48, 34, (245,148,0): 77, 48, 34, (245,149,0): 77, 48, 34, (245,150,0): 77, 48, 34, (245,151,0): 77, 48, 34, (245,152,0): 78, 46, 33, (245,153,0): 79, 47, 34, (245,154,0): 82, 48, 36, (245,155,0): 83, 49, 37, (245,156,0): 83, 49, 37, (245,157,0): 83, 49, 37, (245,158,0): 84, 48, 36, (245,159,0): 84, 48, 36, (245,160,0): 80, 46, 34, (245,161,0): 79, 47, 34, (245,162,0): 79, 47, 34, (245,163,0): 79, 47, 34, (245,164,0): 79, 47, 34, (245,165,0): 79, 47, 34, (245,166,0): 79, 47, 34, (245,167,0): 79, 47, 34, (245,168,0): 77, 45, 32, (245,169,0): 78, 46, 33, (245,170,0): 78, 46, 33, (245,171,0): 79, 47, 34, (245,172,0): 78, 46, 33, (245,173,0): 77, 45, 32, (245,174,0): 75, 43, 30, (245,175,0): 74, 42, 31, (245,176,0): 72, 42, 32, (245,177,0): 71, 42, 34, (245,178,0): 70, 41, 33, (245,179,0): 69, 40, 32, (245,180,0): 68, 39, 31, (245,181,0): 67, 38, 30, (245,182,0): 67, 38, 30, (245,183,0): 66, 37, 29, (245,184,0): 63, 34, 26, (245,185,0): 63, 34, 26, (245,186,0): 62, 33, 25, (245,187,0): 62, 33, 25, (245,188,0): 61, 32, 24, (245,189,0): 60, 31, 23, (245,190,0): 60, 31, 23, (245,191,0): 60, 31, 23, (245,192,0): 56, 32, 22, (245,193,0): 56, 32, 22, (245,194,0): 56, 32, 22, (245,195,0): 56, 32, 20, (245,196,0): 59, 32, 21, (245,197,0): 61, 34, 23, (245,198,0): 63, 35, 24, (245,199,0): 66, 36, 25, (245,200,0): 70, 40, 29, (245,201,0): 74, 42, 29, (245,202,0): 77, 43, 31, (245,203,0): 81, 45, 33, (245,204,0): 82, 46, 34, (245,205,0): 81, 45, 31, (245,206,0): 81, 43, 30, (245,207,0): 78, 42, 26, (245,208,0): 76, 44, 23, (245,209,0): 78, 46, 25, (245,210,0): 81, 49, 28, (245,211,0): 83, 51, 30, (245,212,0): 83, 52, 31, (245,213,0): 82, 51, 30, (245,214,0): 81, 50, 29, (245,215,0): 79, 48, 27, (245,216,0): 80, 52, 30, (245,217,0): 81, 53, 31, (245,218,0): 81, 55, 32, (245,219,0): 81, 55, 30, (245,220,0): 80, 54, 29, (245,221,0): 82, 56, 31, (245,222,0): 86, 62, 36, (245,223,0): 90, 67, 35, (245,224,0): 96, 71, 30, (245,225,0): 102, 78, 30, (245,226,0): 111, 88, 38, (245,227,0): 118, 95, 45, (245,228,0): 124, 101, 49, (245,229,0): 130, 107, 53, (245,230,0): 136, 114, 56, (245,231,0): 141, 119, 59, (245,232,0): 147, 126, 61, (245,233,0): 148, 127, 60, (245,234,0): 150, 130, 61, (245,235,0): 154, 134, 63, (245,236,0): 159, 139, 66, (245,237,0): 164, 145, 69, (245,238,0): 168, 149, 73, (245,239,0): 170, 151, 75, (245,240,0): 172, 152, 79, (245,241,0): 175, 157, 83, (245,242,0): 181, 162, 86, (245,243,0): 184, 167, 89, (245,244,0): 189, 170, 91, (245,245,0): 194, 176, 92, (245,246,0): 201, 183, 97, (245,247,0): 206, 189, 101, (245,248,0): 212, 195, 105, (245,249,0): 214, 197, 107, (245,250,0): 218, 201, 109, (245,251,0): 221, 204, 112, (245,252,0): 222, 205, 115, (245,253,0): 221, 204, 114, (245,254,0): 219, 202, 114, (245,255,0): 217, 199, 113, (245,256,0): 216, 198, 114, (245,257,0): 209, 191, 109, (245,258,0): 201, 179, 103, (245,259,0): 190, 171, 95, (245,260,0): 182, 162, 91, (245,261,0): 174, 153, 86, (245,262,0): 166, 146, 83, (245,263,0): 160, 142, 80, (245,264,0): 157, 141, 81, (245,265,0): 155, 143, 83, (245,266,0): 152, 144, 81, (245,267,0): 151, 147, 83, (245,268,0): 159, 160, 92, (245,269,0): 175, 178, 107, (245,270,0): 184, 192, 117, (245,271,0): 188, 196, 119, (245,272,0): 192, 199, 119, (245,273,0): 194, 199, 117, (245,274,0): 193, 198, 116, (245,275,0): 193, 196, 115, (245,276,0): 190, 193, 112, (245,277,0): 186, 189, 108, (245,278,0): 182, 185, 106, (245,279,0): 178, 183, 103, (245,280,0): 174, 183, 102, (245,281,0): 172, 184, 102, (245,282,0): 171, 183, 101, (245,283,0): 172, 184, 102, (245,284,0): 174, 186, 104, (245,285,0): 179, 188, 107, (245,286,0): 182, 191, 110, (245,287,0): 183, 195, 109, (245,288,0): 197, 217, 118, (245,289,0): 208, 229, 124, (245,290,0): 226, 244, 136, (245,291,0): 241, 253, 143, (245,292,0): 250, 255, 143, (245,293,0): 254, 255, 138, (245,294,0): 255, 251, 134, (245,295,0): 255, 248, 133, (245,296,0): 252, 236, 125, (245,297,0): 246, 227, 122, (245,298,0): 237, 214, 118, (245,299,0): 220, 199, 110, (245,300,0): 207, 184, 104, (245,301,0): 194, 172, 99, (245,302,0): 187, 164, 96, (245,303,0): 181, 160, 95, (245,304,0): 178, 160, 98, (245,305,0): 176, 157, 98, (245,306,0): 172, 155, 99, (245,307,0): 171, 154, 100, (245,308,0): 167, 149, 99, (245,309,0): 159, 141, 95, (245,310,0): 148, 130, 90, (245,311,0): 141, 123, 87, (245,312,0): 133, 114, 82, (245,313,0): 130, 110, 83, (245,314,0): 125, 105, 80, (245,315,0): 123, 103, 79, (245,316,0): 120, 102, 80, (245,317,0): 118, 100, 78, (245,318,0): 114, 96, 74, (245,319,0): 111, 93, 73, (245,320,0): 109, 90, 75, (245,321,0): 104, 85, 71, (245,322,0): 98, 79, 65, (245,323,0): 90, 71, 57, (245,324,0): 83, 64, 50, (245,325,0): 78, 59, 45, (245,326,0): 75, 56, 41, (245,327,0): 74, 55, 40, (245,328,0): 74, 55, 41, (245,329,0): 72, 52, 41, (245,330,0): 68, 48, 39, (245,331,0): 64, 44, 35, (245,332,0): 60, 39, 34, (245,333,0): 57, 36, 31, (245,334,0): 55, 34, 31, (245,335,0): 55, 34, 31, (245,336,0): 53, 34, 30, (245,337,0): 51, 32, 28, (245,338,0): 49, 30, 26, (245,339,0): 47, 28, 24, (245,340,0): 46, 28, 24, (245,341,0): 47, 29, 25, (245,342,0): 48, 30, 26, (245,343,0): 49, 31, 27, (245,344,0): 48, 33, 28, (245,345,0): 49, 34, 29, (245,346,0): 51, 38, 32, (245,347,0): 53, 40, 34, (245,348,0): 54, 41, 35, (245,349,0): 55, 42, 36, (245,350,0): 54, 43, 37, (245,351,0): 54, 44, 35, (245,352,0): 60, 47, 38, (245,353,0): 61, 49, 37, (245,354,0): 63, 51, 39, (245,355,0): 66, 54, 42, (245,356,0): 67, 57, 45, (245,357,0): 70, 60, 48, (245,358,0): 71, 63, 50, (245,359,0): 72, 66, 52, (245,360,0): 75, 72, 57, (245,361,0): 74, 75, 59, (245,362,0): 77, 80, 63, (245,363,0): 84, 88, 71, (245,364,0): 93, 100, 82, (245,365,0): 104, 113, 94, (245,366,0): 115, 124, 105, (245,367,0): 121, 130, 109, (245,368,0): 116, 126, 102, (245,369,0): 116, 124, 101, (245,370,0): 113, 121, 98, (245,371,0): 110, 118, 95, (245,372,0): 109, 117, 96, (245,373,0): 108, 117, 98, (245,374,0): 109, 118, 99, (245,375,0): 108, 119, 102, (245,376,0): 109, 122, 105, (245,377,0): 113, 127, 112, (245,378,0): 118, 136, 120, (245,379,0): 124, 145, 130, (245,380,0): 128, 152, 136, (245,381,0): 133, 161, 146, (245,382,0): 139, 170, 154, (245,383,0): 141, 177, 163, (245,384,0): 144, 190, 179, (245,385,0): 147, 198, 191, (245,386,0): 156, 208, 204, (245,387,0): 163, 217, 217, (245,388,0): 167, 225, 229, (245,389,0): 172, 231, 237, (245,390,0): 175, 238, 243, (245,391,0): 176, 244, 247, (245,392,0): 182, 252, 252, (245,393,0): 181, 253, 250, (245,394,0): 182, 254, 250, (245,395,0): 183, 255, 249, (245,396,0): 183, 255, 251, (245,397,0): 183, 255, 252, (245,398,0): 184, 255, 255, (245,399,0): 186, 255, 255, (245,400,0): 188, 253, 255, (245,401,0): 188, 253, 255, (245,402,0): 186, 254, 255, (245,403,0): 184, 254, 254, (245,404,0): 183, 255, 252, (245,405,0): 180, 255, 251, (245,406,0): 180, 255, 251, (245,407,0): 182, 254, 253, (245,408,0): 185, 255, 255, (245,409,0): 189, 255, 255, (245,410,0): 193, 253, 255, (245,411,0): 182, 238, 255, (245,412,0): 166, 214, 237, (245,413,0): 148, 192, 221, (245,414,0): 140, 181, 213, (245,415,0): 136, 176, 211, (245,416,0): 143, 188, 221, (245,417,0): 145, 191, 224, (245,418,0): 148, 192, 227, (245,419,0): 147, 191, 226, (245,420,0): 149, 192, 227, (245,421,0): 148, 191, 226, (245,422,0): 142, 182, 218, (245,423,0): 133, 173, 208, (245,424,0): 130, 169, 202, (245,425,0): 128, 164, 196, (245,426,0): 123, 160, 189, (245,427,0): 123, 158, 186, (245,428,0): 125, 161, 187, (245,429,0): 126, 160, 185, (245,430,0): 123, 158, 180, (245,431,0): 122, 154, 177, (245,432,0): 124, 154, 178, (245,433,0): 123, 153, 177, (245,434,0): 122, 150, 174, (245,435,0): 119, 147, 169, (245,436,0): 117, 141, 165, (245,437,0): 114, 136, 159, (245,438,0): 111, 132, 153, (245,439,0): 112, 129, 149, (245,440,0): 112, 127, 148, (245,441,0): 113, 126, 145, (245,442,0): 115, 123, 142, (245,443,0): 114, 121, 139, (245,444,0): 114, 119, 138, (245,445,0): 114, 117, 136, (245,446,0): 113, 116, 135, (245,447,0): 112, 115, 132, (245,448,0): 113, 120, 136, (245,449,0): 114, 123, 138, (245,450,0): 117, 124, 140, (245,451,0): 116, 124, 137, (245,452,0): 113, 119, 133, (245,453,0): 109, 115, 127, (245,454,0): 109, 113, 125, (245,455,0): 108, 112, 124, (245,456,0): 102, 104, 117, (245,457,0): 102, 102, 114, (245,458,0): 100, 98, 111, (245,459,0): 96, 94, 105, (245,460,0): 93, 90, 101, (245,461,0): 88, 85, 96, (245,462,0): 87, 81, 93, (245,463,0): 83, 80, 91, (245,464,0): 81, 78, 89, (245,465,0): 80, 78, 89, (245,466,0): 79, 77, 88, (245,467,0): 76, 74, 85, (245,468,0): 74, 71, 80, (245,469,0): 70, 67, 76, (245,470,0): 67, 64, 73, (245,471,0): 67, 61, 71, (245,472,0): 62, 57, 64, (245,473,0): 64, 57, 65, (245,474,0): 65, 58, 65, (245,475,0): 68, 61, 68, (245,476,0): 70, 63, 70, (245,477,0): 73, 66, 73, (245,478,0): 77, 68, 73, (245,479,0): 75, 70, 76, (245,480,0): 73, 72, 80, (245,481,0): 72, 75, 84, (245,482,0): 78, 78, 88, (245,483,0): 83, 83, 93, (245,484,0): 87, 87, 99, (245,485,0): 91, 91, 103, (245,486,0): 94, 92, 105, (245,487,0): 94, 93, 107, (245,488,0): 99, 98, 112, (245,489,0): 101, 105, 117, (245,490,0): 106, 112, 126, (245,491,0): 111, 119, 132, (245,492,0): 114, 126, 138, (245,493,0): 119, 133, 146, (245,494,0): 124, 140, 153, (245,495,0): 128, 146, 160, (245,496,0): 138, 155, 175, (245,497,0): 140, 156, 181, (245,498,0): 143, 159, 185, (245,499,0): 145, 162, 188, (245,500,0): 150, 166, 192, (245,501,0): 151, 168, 194, (245,502,0): 154, 169, 198, (245,503,0): 154, 169, 198, (245,504,0): 154, 170, 196, (245,505,0): 153, 169, 195, (245,506,0): 150, 166, 191, (245,507,0): 145, 161, 184, (245,508,0): 138, 156, 176, (245,509,0): 130, 148, 168, (245,510,0): 123, 142, 159, (245,511,0): 118, 137, 154, (245,512,0): 118, 140, 154, (245,513,0): 118, 140, 154, (245,514,0): 120, 139, 153, (245,515,0): 116, 135, 149, (245,516,0): 113, 131, 145, (245,517,0): 109, 127, 141, (245,518,0): 109, 125, 138, (245,519,0): 110, 126, 139, (245,520,0): 110, 122, 136, (245,521,0): 107, 119, 131, (245,522,0): 105, 115, 127, (245,523,0): 104, 114, 126, (245,524,0): 107, 115, 126, (245,525,0): 108, 116, 127, (245,526,0): 107, 113, 125, (245,527,0): 108, 112, 124, (245,528,0): 104, 106, 118, (245,529,0): 108, 108, 118, (245,530,0): 108, 110, 122, (245,531,0): 108, 110, 122, (245,532,0): 108, 110, 125, (245,533,0): 109, 112, 127, (245,534,0): 113, 116, 133, (245,535,0): 115, 120, 139, (245,536,0): 121, 128, 147, (245,537,0): 123, 131, 152, (245,538,0): 128, 136, 159, (245,539,0): 131, 141, 166, (245,540,0): 134, 144, 171, (245,541,0): 133, 144, 172, (245,542,0): 132, 143, 171, (245,543,0): 128, 142, 171, (245,544,0): 125, 142, 170, (245,545,0): 124, 141, 169, (245,546,0): 121, 138, 168, (245,547,0): 118, 135, 163, (245,548,0): 115, 130, 159, (245,549,0): 111, 127, 153, (245,550,0): 108, 124, 149, (245,551,0): 108, 123, 146, (245,552,0): 106, 121, 144, (245,553,0): 104, 119, 140, (245,554,0): 104, 117, 136, (245,555,0): 102, 115, 132, (245,556,0): 101, 114, 131, (245,557,0): 102, 115, 131, (245,558,0): 105, 116, 134, (245,559,0): 106, 118, 134, (245,560,0): 100, 112, 126, (245,561,0): 101, 113, 127, (245,562,0): 101, 113, 127, (245,563,0): 102, 114, 128, (245,564,0): 103, 115, 131, (245,565,0): 103, 116, 132, (245,566,0): 104, 117, 133, (245,567,0): 104, 117, 133, (245,568,0): 104, 117, 134, (245,569,0): 103, 119, 135, (245,570,0): 104, 119, 138, (245,571,0): 103, 120, 138, (245,572,0): 103, 120, 138, (245,573,0): 102, 119, 137, (245,574,0): 101, 118, 138, (245,575,0): 100, 117, 135, (245,576,0): 100, 117, 133, (245,577,0): 99, 116, 132, (245,578,0): 99, 115, 131, (245,579,0): 97, 113, 129, (245,580,0): 96, 112, 128, (245,581,0): 96, 112, 128, (245,582,0): 98, 111, 128, (245,583,0): 99, 112, 129, (245,584,0): 100, 111, 129, (245,585,0): 99, 110, 128, (245,586,0): 98, 109, 127, (245,587,0): 100, 111, 129, (245,588,0): 104, 112, 131, (245,589,0): 104, 112, 131, (245,590,0): 101, 109, 128, (245,591,0): 98, 105, 123, (245,592,0): 96, 98, 111, (245,593,0): 95, 95, 107, (245,594,0): 91, 89, 100, (245,595,0): 82, 80, 91, (245,596,0): 74, 71, 80, (245,597,0): 69, 64, 71, (245,598,0): 66, 59, 66, (245,599,0): 65, 58, 65, (246,0,0): 46, 34, 44, (246,1,0): 47, 35, 45, (246,2,0): 47, 35, 45, (246,3,0): 47, 35, 45, (246,4,0): 48, 36, 46, (246,5,0): 48, 36, 46, (246,6,0): 50, 37, 47, (246,7,0): 50, 37, 47, (246,8,0): 52, 36, 47, (246,9,0): 52, 36, 47, (246,10,0): 53, 35, 47, (246,11,0): 53, 35, 47, (246,12,0): 53, 35, 47, (246,13,0): 53, 35, 47, (246,14,0): 53, 35, 47, (246,15,0): 53, 35, 47, (246,16,0): 53, 35, 47, (246,17,0): 54, 36, 48, (246,18,0): 54, 36, 48, (246,19,0): 54, 36, 48, (246,20,0): 55, 38, 48, (246,21,0): 55, 38, 48, (246,22,0): 56, 39, 49, (246,23,0): 56, 39, 49, (246,24,0): 60, 43, 51, (246,25,0): 60, 43, 51, (246,26,0): 60, 43, 51, (246,27,0): 61, 44, 52, (246,28,0): 61, 44, 52, (246,29,0): 62, 45, 53, (246,30,0): 62, 45, 53, (246,31,0): 62, 45, 51, (246,32,0): 64, 45, 51, (246,33,0): 64, 45, 51, (246,34,0): 63, 44, 50, (246,35,0): 62, 43, 49, (246,36,0): 64, 43, 48, (246,37,0): 66, 45, 50, (246,38,0): 69, 46, 52, (246,39,0): 70, 47, 53, (246,40,0): 71, 49, 52, (246,41,0): 71, 49, 52, (246,42,0): 73, 48, 51, (246,43,0): 74, 49, 52, (246,44,0): 75, 49, 52, (246,45,0): 76, 50, 53, (246,46,0): 76, 50, 51, (246,47,0): 79, 50, 52, (246,48,0): 81, 50, 55, (246,49,0): 82, 50, 55, (246,50,0): 82, 50, 55, (246,51,0): 82, 50, 55, (246,52,0): 82, 50, 55, (246,53,0): 82, 50, 55, (246,54,0): 82, 50, 55, (246,55,0): 82, 50, 55, (246,56,0): 81, 49, 54, (246,57,0): 81, 49, 54, (246,58,0): 81, 49, 54, (246,59,0): 81, 49, 54, (246,60,0): 81, 49, 54, (246,61,0): 81, 49, 54, (246,62,0): 81, 49, 54, (246,63,0): 81, 49, 54, (246,64,0): 86, 51, 55, (246,65,0): 88, 52, 54, (246,66,0): 89, 53, 53, (246,67,0): 91, 56, 54, (246,68,0): 95, 57, 54, (246,69,0): 97, 60, 52, (246,70,0): 98, 61, 52, (246,71,0): 100, 62, 51, (246,72,0): 103, 65, 52, (246,73,0): 103, 66, 50, (246,74,0): 103, 63, 51, (246,75,0): 103, 63, 51, (246,76,0): 102, 62, 50, (246,77,0): 103, 61, 49, (246,78,0): 103, 60, 51, (246,79,0): 100, 60, 50, (246,80,0): 100, 61, 46, (246,81,0): 100, 63, 45, (246,82,0): 101, 64, 48, (246,83,0): 102, 65, 47, (246,84,0): 103, 66, 50, (246,85,0): 104, 67, 49, (246,86,0): 105, 68, 52, (246,87,0): 106, 69, 51, (246,88,0): 103, 66, 50, (246,89,0): 103, 66, 48, (246,90,0): 104, 67, 51, (246,91,0): 104, 67, 49, (246,92,0): 103, 66, 50, (246,93,0): 101, 64, 46, (246,94,0): 99, 62, 46, (246,95,0): 97, 60, 44, (246,96,0): 96, 58, 45, (246,97,0): 96, 58, 45, (246,98,0): 97, 59, 46, (246,99,0): 98, 60, 47, (246,100,0): 99, 61, 48, (246,101,0): 100, 62, 49, (246,102,0): 100, 62, 49, (246,103,0): 101, 63, 50, (246,104,0): 99, 61, 48, (246,105,0): 99, 61, 48, (246,106,0): 98, 60, 47, (246,107,0): 98, 60, 47, (246,108,0): 97, 59, 46, (246,109,0): 97, 59, 46, (246,110,0): 96, 58, 45, (246,111,0): 96, 59, 43, (246,112,0): 94, 57, 41, (246,113,0): 94, 57, 39, (246,114,0): 93, 56, 38, (246,115,0): 93, 56, 38, (246,116,0): 92, 55, 37, (246,117,0): 91, 56, 37, (246,118,0): 90, 55, 36, (246,119,0): 90, 55, 36, (246,120,0): 90, 57, 38, (246,121,0): 90, 57, 38, (246,122,0): 90, 57, 38, (246,123,0): 89, 58, 38, (246,124,0): 90, 59, 39, (246,125,0): 90, 59, 39, (246,126,0): 88, 60, 39, (246,127,0): 88, 59, 41, (246,128,0): 83, 54, 38, (246,129,0): 83, 54, 38, (246,130,0): 83, 54, 38, (246,131,0): 83, 54, 38, (246,132,0): 83, 54, 38, (246,133,0): 83, 54, 38, (246,134,0): 83, 54, 38, (246,135,0): 83, 54, 38, (246,136,0): 83, 54, 38, (246,137,0): 83, 54, 38, (246,138,0): 82, 53, 37, (246,139,0): 82, 53, 37, (246,140,0): 81, 52, 36, (246,141,0): 81, 52, 36, (246,142,0): 80, 51, 35, (246,143,0): 80, 51, 35, (246,144,0): 78, 49, 33, (246,145,0): 78, 49, 33, (246,146,0): 78, 49, 33, (246,147,0): 78, 49, 33, (246,148,0): 78, 49, 33, (246,149,0): 78, 49, 33, (246,150,0): 80, 48, 33, (246,151,0): 80, 48, 33, (246,152,0): 79, 46, 31, (246,153,0): 80, 47, 32, (246,154,0): 84, 48, 34, (246,155,0): 85, 49, 35, (246,156,0): 86, 50, 36, (246,157,0): 86, 50, 36, (246,158,0): 85, 49, 35, (246,159,0): 84, 48, 34, (246,160,0): 81, 48, 33, (246,161,0): 81, 48, 33, (246,162,0): 81, 48, 33, (246,163,0): 81, 48, 33, (246,164,0): 81, 48, 33, (246,165,0): 81, 48, 33, (246,166,0): 81, 48, 33, (246,167,0): 81, 48, 33, (246,168,0): 79, 46, 31, (246,169,0): 79, 46, 31, (246,170,0): 80, 47, 32, (246,171,0): 80, 47, 32, (246,172,0): 80, 47, 32, (246,173,0): 79, 46, 31, (246,174,0): 77, 44, 29, (246,175,0): 75, 43, 30, (246,176,0): 73, 43, 33, (246,177,0): 73, 43, 35, (246,178,0): 72, 42, 34, (246,179,0): 71, 41, 33, (246,180,0): 70, 40, 32, (246,181,0): 68, 38, 30, (246,182,0): 67, 37, 29, (246,183,0): 67, 37, 29, (246,184,0): 63, 33, 25, (246,185,0): 63, 33, 25, (246,186,0): 62, 32, 24, (246,187,0): 62, 32, 24, (246,188,0): 62, 32, 24, (246,189,0): 61, 31, 23, (246,190,0): 61, 31, 23, (246,191,0): 60, 31, 23, (246,192,0): 57, 33, 21, (246,193,0): 56, 34, 21, (246,194,0): 57, 33, 21, (246,195,0): 57, 34, 20, (246,196,0): 61, 35, 22, (246,197,0): 62, 36, 23, (246,198,0): 65, 37, 25, (246,199,0): 68, 39, 25, (246,200,0): 74, 42, 29, (246,201,0): 76, 43, 28, (246,202,0): 81, 45, 31, (246,203,0): 84, 46, 33, (246,204,0): 85, 47, 34, (246,205,0): 83, 46, 30, (246,206,0): 82, 43, 28, (246,207,0): 79, 42, 24, (246,208,0): 77, 42, 20, (246,209,0): 77, 45, 22, (246,210,0): 80, 48, 25, (246,211,0): 83, 51, 28, (246,212,0): 83, 52, 31, (246,213,0): 83, 52, 31, (246,214,0): 82, 51, 31, (246,215,0): 81, 50, 30, (246,216,0): 80, 52, 31, (246,217,0): 82, 54, 32, (246,218,0): 82, 56, 33, (246,219,0): 82, 56, 33, (246,220,0): 82, 56, 31, (246,221,0): 86, 60, 35, (246,222,0): 91, 67, 39, (246,223,0): 96, 73, 39, (246,224,0): 101, 77, 31, (246,225,0): 108, 85, 33, (246,226,0): 118, 95, 43, (246,227,0): 127, 104, 50, (246,228,0): 135, 113, 56, (246,229,0): 142, 120, 62, (246,230,0): 149, 127, 67, (246,231,0): 154, 133, 70, (246,232,0): 158, 137, 72, (246,233,0): 157, 136, 69, (246,234,0): 157, 137, 68, (246,235,0): 158, 138, 67, (246,236,0): 159, 139, 66, (246,237,0): 162, 143, 67, (246,238,0): 164, 145, 69, (246,239,0): 166, 147, 71, (246,240,0): 171, 153, 79, (246,241,0): 172, 156, 81, (246,242,0): 176, 158, 82, (246,243,0): 178, 162, 84, (246,244,0): 183, 166, 86, (246,245,0): 190, 174, 89, (246,246,0): 199, 183, 96, (246,247,0): 206, 190, 102, (246,248,0): 213, 198, 107, (246,249,0): 216, 201, 110, (246,250,0): 221, 204, 114, (246,251,0): 224, 207, 117, (246,252,0): 225, 208, 120, (246,253,0): 223, 206, 118, (246,254,0): 220, 203, 115, (246,255,0): 218, 200, 114, (246,256,0): 214, 193, 112, (246,257,0): 206, 185, 106, (246,258,0): 194, 171, 95, (246,259,0): 182, 160, 87, (246,260,0): 175, 152, 82, (246,261,0): 166, 145, 78, (246,262,0): 159, 140, 74, (246,263,0): 155, 137, 75, (246,264,0): 157, 141, 81, (246,265,0): 159, 148, 86, (246,266,0): 155, 150, 86, (246,267,0): 151, 150, 85, (246,268,0): 156, 159, 90, (246,269,0): 170, 176, 104, (246,270,0): 181, 191, 118, (246,271,0): 185, 196, 120, (246,272,0): 190, 197, 119, (246,273,0): 192, 197, 117, (246,274,0): 193, 198, 118, (246,275,0): 192, 197, 117, (246,276,0): 189, 194, 114, (246,277,0): 185, 190, 110, (246,278,0): 179, 186, 108, (246,279,0): 176, 185, 106, (246,280,0): 173, 182, 103, (246,281,0): 171, 182, 103, (246,282,0): 169, 182, 102, (246,283,0): 170, 183, 103, (246,284,0): 173, 186, 106, (246,285,0): 178, 191, 111, (246,286,0): 182, 195, 116, (246,287,0): 184, 199, 118, (246,288,0): 189, 214, 123, (246,289,0): 196, 223, 128, (246,290,0): 210, 234, 136, (246,291,0): 223, 244, 141, (246,292,0): 233, 249, 142, (246,293,0): 239, 251, 139, (246,294,0): 246, 253, 137, (246,295,0): 251, 254, 137, (246,296,0): 254, 251, 136, (246,297,0): 254, 246, 135, (246,298,0): 249, 238, 132, (246,299,0): 238, 226, 126, (246,300,0): 226, 213, 119, (246,301,0): 215, 199, 112, (246,302,0): 204, 187, 105, (246,303,0): 197, 181, 103, (246,304,0): 192, 176, 101, (246,305,0): 187, 173, 102, (246,306,0): 183, 168, 99, (246,307,0): 180, 165, 100, (246,308,0): 177, 161, 101, (246,309,0): 170, 153, 97, (246,310,0): 162, 144, 94, (246,311,0): 156, 138, 92, (246,312,0): 147, 128, 86, (246,313,0): 143, 123, 86, (246,314,0): 138, 117, 86, (246,315,0): 133, 112, 83, (246,316,0): 130, 109, 82, (246,317,0): 126, 104, 80, (246,318,0): 120, 98, 75, (246,319,0): 114, 93, 72, (246,320,0): 113, 92, 75, (246,321,0): 106, 87, 72, (246,322,0): 99, 80, 65, (246,323,0): 91, 72, 57, (246,324,0): 85, 66, 51, (246,325,0): 81, 62, 47, (246,326,0): 79, 60, 45, (246,327,0): 78, 59, 44, (246,328,0): 75, 56, 42, (246,329,0): 73, 53, 42, (246,330,0): 69, 49, 40, (246,331,0): 65, 45, 36, (246,332,0): 61, 40, 35, (246,333,0): 58, 37, 32, (246,334,0): 56, 35, 30, (246,335,0): 55, 34, 29, (246,336,0): 53, 34, 28, (246,337,0): 53, 34, 28, (246,338,0): 52, 33, 27, (246,339,0): 51, 32, 26, (246,340,0): 50, 33, 26, (246,341,0): 50, 33, 26, (246,342,0): 50, 33, 26, (246,343,0): 50, 33, 26, (246,344,0): 48, 33, 26, (246,345,0): 49, 34, 27, (246,346,0): 51, 38, 30, (246,347,0): 53, 40, 32, (246,348,0): 55, 42, 34, (246,349,0): 56, 43, 35, (246,350,0): 53, 43, 34, (246,351,0): 53, 43, 34, (246,352,0): 57, 47, 37, (246,353,0): 59, 49, 37, (246,354,0): 62, 52, 40, (246,355,0): 65, 55, 43, (246,356,0): 69, 59, 47, (246,357,0): 71, 61, 49, (246,358,0): 73, 65, 52, (246,359,0): 73, 67, 53, (246,360,0): 75, 72, 57, (246,361,0): 75, 76, 60, (246,362,0): 78, 81, 64, (246,363,0): 84, 88, 71, (246,364,0): 92, 99, 81, (246,365,0): 102, 111, 92, (246,366,0): 109, 121, 101, (246,367,0): 114, 126, 106, (246,368,0): 111, 123, 101, (246,369,0): 111, 120, 99, (246,370,0): 109, 118, 97, (246,371,0): 108, 117, 96, (246,372,0): 108, 117, 98, (246,373,0): 110, 119, 100, (246,374,0): 113, 122, 105, (246,375,0): 113, 124, 108, (246,376,0): 116, 129, 112, (246,377,0): 118, 135, 119, (246,378,0): 123, 144, 129, (246,379,0): 130, 152, 139, (246,380,0): 133, 160, 145, (246,381,0): 139, 167, 153, (246,382,0): 144, 175, 160, (246,383,0): 146, 182, 170, (246,384,0): 149, 194, 187, (246,385,0): 152, 202, 199, (246,386,0): 161, 212, 213, (246,387,0): 166, 221, 224, (246,388,0): 169, 228, 234, (246,389,0): 174, 234, 242, (246,390,0): 176, 241, 247, (246,391,0): 178, 245, 251, (246,392,0): 183, 253, 255, (246,393,0): 182, 254, 253, (246,394,0): 182, 254, 250, (246,395,0): 180, 255, 250, (246,396,0): 181, 255, 252, (246,397,0): 181, 255, 252, (246,398,0): 181, 255, 254, (246,399,0): 183, 254, 255, (246,400,0): 185, 255, 255, (246,401,0): 186, 254, 255, (246,402,0): 185, 255, 255, (246,403,0): 184, 254, 255, (246,404,0): 184, 254, 255, (246,405,0): 183, 253, 255, (246,406,0): 183, 252, 255, (246,407,0): 184, 251, 255, (246,408,0): 187, 251, 255, (246,409,0): 185, 244, 255, (246,410,0): 176, 231, 251, (246,411,0): 160, 210, 233, (246,412,0): 143, 188, 217, (246,413,0): 134, 175, 207, (246,414,0): 133, 171, 207, (246,415,0): 135, 173, 209, (246,416,0): 145, 185, 221, (246,417,0): 145, 188, 223, (246,418,0): 144, 186, 224, (246,419,0): 139, 182, 217, (246,420,0): 141, 181, 217, (246,421,0): 142, 182, 218, (246,422,0): 138, 176, 212, (246,423,0): 130, 166, 200, (246,424,0): 121, 157, 189, (246,425,0): 120, 155, 185, (246,426,0): 118, 153, 181, (246,427,0): 118, 152, 179, (246,428,0): 119, 153, 178, (246,429,0): 122, 154, 177, (246,430,0): 122, 154, 177, (246,431,0): 122, 153, 174, (246,432,0): 129, 155, 178, (246,433,0): 129, 153, 177, (246,434,0): 126, 150, 174, (246,435,0): 122, 147, 169, (246,436,0): 119, 139, 163, (246,437,0): 115, 133, 155, (246,438,0): 110, 126, 149, (246,439,0): 110, 122, 144, (246,440,0): 109, 120, 140, (246,441,0): 111, 119, 138, (246,442,0): 112, 119, 138, (246,443,0): 112, 117, 136, (246,444,0): 114, 117, 136, (246,445,0): 115, 116, 134, (246,446,0): 114, 115, 133, (246,447,0): 114, 116, 131, (246,448,0): 110, 116, 130, (246,449,0): 112, 120, 133, (246,450,0): 115, 121, 135, (246,451,0): 113, 119, 131, (246,452,0): 109, 113, 125, (246,453,0): 104, 108, 120, (246,454,0): 103, 105, 118, (246,455,0): 105, 105, 117, (246,456,0): 100, 98, 111, (246,457,0): 99, 97, 108, (246,458,0): 97, 94, 105, (246,459,0): 93, 90, 101, (246,460,0): 90, 84, 96, (246,461,0): 87, 81, 91, (246,462,0): 85, 77, 88, (246,463,0): 83, 75, 86, (246,464,0): 81, 78, 89, (246,465,0): 80, 77, 88, (246,466,0): 79, 76, 87, (246,467,0): 77, 74, 85, (246,468,0): 75, 69, 79, (246,469,0): 72, 66, 76, (246,470,0): 68, 62, 72, (246,471,0): 67, 59, 70, (246,472,0): 63, 56, 64, (246,473,0): 65, 55, 64, (246,474,0): 67, 57, 65, (246,475,0): 69, 59, 67, (246,476,0): 71, 61, 69, (246,477,0): 73, 63, 71, (246,478,0): 76, 65, 71, (246,479,0): 74, 67, 74, (246,480,0): 68, 67, 73, (246,481,0): 70, 70, 78, (246,482,0): 76, 75, 83, (246,483,0): 81, 80, 88, (246,484,0): 86, 84, 95, (246,485,0): 89, 87, 98, (246,486,0): 92, 89, 100, (246,487,0): 92, 90, 103, (246,488,0): 98, 98, 110, (246,489,0): 101, 103, 115, (246,490,0): 107, 111, 123, (246,491,0): 110, 118, 129, (246,492,0): 115, 125, 135, (246,493,0): 119, 131, 143, (246,494,0): 125, 139, 150, (246,495,0): 128, 144, 159, (246,496,0): 135, 152, 172, (246,497,0): 136, 152, 175, (246,498,0): 137, 153, 178, (246,499,0): 140, 156, 182, (246,500,0): 144, 158, 185, (246,501,0): 147, 162, 191, (246,502,0): 151, 165, 194, (246,503,0): 153, 167, 196, (246,504,0): 155, 169, 196, (246,505,0): 151, 165, 191, (246,506,0): 143, 158, 181, (246,507,0): 134, 149, 170, (246,508,0): 128, 141, 160, (246,509,0): 122, 135, 152, (246,510,0): 118, 131, 147, (246,511,0): 115, 131, 146, (246,512,0): 115, 134, 149, (246,513,0): 116, 138, 152, (246,514,0): 121, 140, 155, (246,515,0): 120, 139, 154, (246,516,0): 116, 134, 148, (246,517,0): 111, 129, 143, (246,518,0): 109, 125, 140, (246,519,0): 109, 125, 138, (246,520,0): 108, 120, 134, (246,521,0): 105, 117, 131, (246,522,0): 105, 115, 127, (246,523,0): 105, 115, 127, (246,524,0): 109, 117, 130, (246,525,0): 110, 118, 131, (246,526,0): 110, 116, 128, (246,527,0): 110, 114, 126, (246,528,0): 107, 109, 121, (246,529,0): 111, 111, 123, (246,530,0): 112, 112, 124, (246,531,0): 109, 111, 123, (246,532,0): 108, 110, 125, (246,533,0): 107, 110, 125, (246,534,0): 111, 114, 131, (246,535,0): 112, 117, 136, (246,536,0): 120, 125, 145, (246,537,0): 123, 129, 151, (246,538,0): 128, 134, 158, (246,539,0): 133, 140, 166, (246,540,0): 135, 142, 168, (246,541,0): 136, 143, 171, (246,542,0): 134, 141, 169, (246,543,0): 130, 141, 169, (246,544,0): 124, 140, 166, (246,545,0): 123, 139, 165, (246,546,0): 120, 135, 164, (246,547,0): 116, 132, 158, (246,548,0): 114, 128, 155, (246,549,0): 110, 124, 150, (246,550,0): 107, 122, 145, (246,551,0): 108, 120, 142, (246,552,0): 105, 117, 139, (246,553,0): 103, 116, 135, (246,554,0): 101, 112, 130, (246,555,0): 98, 110, 126, (246,556,0): 97, 109, 125, (246,557,0): 99, 111, 125, (246,558,0): 103, 112, 129, (246,559,0): 104, 113, 128, (246,560,0): 99, 108, 123, (246,561,0): 100, 110, 122, (246,562,0): 101, 110, 125, (246,563,0): 102, 111, 126, (246,564,0): 103, 112, 127, (246,565,0): 102, 114, 128, (246,566,0): 103, 115, 131, (246,567,0): 103, 116, 132, (246,568,0): 105, 118, 135, (246,569,0): 106, 119, 136, (246,570,0): 107, 120, 137, (246,571,0): 105, 121, 137, (246,572,0): 104, 119, 138, (246,573,0): 103, 118, 137, (246,574,0): 101, 116, 135, (246,575,0): 100, 115, 134, (246,576,0): 100, 116, 132, (246,577,0): 99, 115, 131, (246,578,0): 100, 113, 130, (246,579,0): 99, 112, 129, (246,580,0): 99, 112, 129, (246,581,0): 100, 113, 130, (246,582,0): 102, 113, 131, (246,583,0): 102, 113, 131, (246,584,0): 105, 113, 132, (246,585,0): 103, 111, 130, (246,586,0): 101, 109, 128, (246,587,0): 102, 110, 129, (246,588,0): 104, 111, 130, (246,589,0): 104, 111, 130, (246,590,0): 101, 108, 127, (246,591,0): 99, 104, 123, (246,592,0): 96, 99, 114, (246,593,0): 92, 94, 106, (246,594,0): 88, 88, 98, (246,595,0): 82, 80, 91, (246,596,0): 78, 75, 84, (246,597,0): 73, 70, 77, (246,598,0): 71, 66, 72, (246,599,0): 68, 63, 69, (247,0,0): 46, 34, 44, (247,1,0): 47, 35, 45, (247,2,0): 47, 35, 45, (247,3,0): 48, 36, 46, (247,4,0): 48, 36, 46, (247,5,0): 49, 37, 47, (247,6,0): 50, 37, 47, (247,7,0): 50, 37, 47, (247,8,0): 52, 36, 47, (247,9,0): 52, 36, 47, (247,10,0): 53, 35, 47, (247,11,0): 53, 35, 47, (247,12,0): 53, 35, 47, (247,13,0): 53, 35, 47, (247,14,0): 53, 35, 47, (247,15,0): 53, 35, 47, (247,16,0): 53, 35, 47, (247,17,0): 54, 36, 48, (247,18,0): 54, 36, 48, (247,19,0): 55, 37, 49, (247,20,0): 55, 37, 49, (247,21,0): 56, 39, 49, (247,22,0): 56, 39, 49, (247,23,0): 56, 39, 49, (247,24,0): 61, 44, 52, (247,25,0): 61, 44, 52, (247,26,0): 61, 44, 52, (247,27,0): 62, 45, 53, (247,28,0): 62, 45, 53, (247,29,0): 63, 46, 52, (247,30,0): 63, 46, 52, (247,31,0): 63, 46, 52, (247,32,0): 66, 47, 53, (247,33,0): 65, 46, 52, (247,34,0): 63, 44, 50, (247,35,0): 62, 43, 49, (247,36,0): 64, 43, 48, (247,37,0): 65, 44, 49, (247,38,0): 68, 45, 51, (247,39,0): 69, 46, 52, (247,40,0): 71, 49, 52, (247,41,0): 71, 49, 52, (247,42,0): 74, 49, 52, (247,43,0): 74, 49, 52, (247,44,0): 76, 50, 53, (247,45,0): 76, 50, 53, (247,46,0): 77, 51, 52, (247,47,0): 79, 50, 52, (247,48,0): 81, 50, 55, (247,49,0): 82, 50, 55, (247,50,0): 82, 50, 55, (247,51,0): 82, 50, 55, (247,52,0): 82, 50, 55, (247,53,0): 82, 50, 55, (247,54,0): 82, 50, 55, (247,55,0): 82, 50, 55, (247,56,0): 81, 49, 54, (247,57,0): 81, 49, 54, (247,58,0): 81, 49, 54, (247,59,0): 81, 49, 54, (247,60,0): 81, 49, 54, (247,61,0): 81, 49, 54, (247,62,0): 81, 49, 54, (247,63,0): 81, 49, 52, (247,64,0): 88, 52, 54, (247,65,0): 88, 52, 52, (247,66,0): 90, 55, 53, (247,67,0): 92, 57, 53, (247,68,0): 96, 59, 53, (247,69,0): 97, 60, 52, (247,70,0): 100, 62, 51, (247,71,0): 101, 63, 50, (247,72,0): 107, 70, 54, (247,73,0): 107, 70, 54, (247,74,0): 107, 68, 53, (247,75,0): 106, 67, 52, (247,76,0): 107, 65, 53, (247,77,0): 106, 64, 52, (247,78,0): 106, 64, 52, (247,79,0): 104, 64, 52, (247,80,0): 103, 66, 50, (247,81,0): 103, 66, 48, (247,82,0): 104, 67, 49, (247,83,0): 105, 68, 50, (247,84,0): 107, 70, 52, (247,85,0): 108, 71, 53, (247,86,0): 109, 72, 54, (247,87,0): 110, 73, 55, (247,88,0): 102, 65, 47, (247,89,0): 103, 66, 48, (247,90,0): 104, 67, 49, (247,91,0): 104, 67, 49, (247,92,0): 103, 66, 48, (247,93,0): 101, 64, 46, (247,94,0): 99, 62, 44, (247,95,0): 97, 60, 42, (247,96,0): 95, 57, 44, (247,97,0): 96, 58, 45, (247,98,0): 97, 59, 46, (247,99,0): 98, 60, 47, (247,100,0): 99, 61, 48, (247,101,0): 101, 63, 50, (247,102,0): 102, 64, 51, (247,103,0): 102, 64, 51, (247,104,0): 99, 61, 48, (247,105,0): 99, 61, 48, (247,106,0): 98, 60, 47, (247,107,0): 98, 60, 47, (247,108,0): 97, 59, 46, (247,109,0): 97, 59, 46, (247,110,0): 96, 58, 45, (247,111,0): 96, 59, 43, (247,112,0): 93, 56, 40, (247,113,0): 93, 56, 38, (247,114,0): 92, 55, 37, (247,115,0): 92, 55, 37, (247,116,0): 90, 55, 36, (247,117,0): 90, 55, 36, (247,118,0): 90, 55, 36, (247,119,0): 87, 54, 35, (247,120,0): 92, 59, 40, (247,121,0): 91, 60, 40, (247,122,0): 92, 61, 41, (247,123,0): 92, 61, 41, (247,124,0): 92, 61, 41, (247,125,0): 92, 61, 41, (247,126,0): 91, 63, 42, (247,127,0): 91, 63, 42, (247,128,0): 84, 55, 39, (247,129,0): 84, 55, 39, (247,130,0): 84, 55, 39, (247,131,0): 84, 55, 39, (247,132,0): 84, 55, 39, (247,133,0): 84, 55, 39, (247,134,0): 84, 55, 39, (247,135,0): 84, 55, 39, (247,136,0): 84, 55, 39, (247,137,0): 83, 54, 38, (247,138,0): 83, 54, 38, (247,139,0): 82, 53, 37, (247,140,0): 82, 53, 37, (247,141,0): 81, 52, 36, (247,142,0): 81, 52, 36, (247,143,0): 81, 52, 36, (247,144,0): 78, 49, 33, (247,145,0): 78, 49, 33, (247,146,0): 78, 49, 33, (247,147,0): 78, 49, 33, (247,148,0): 78, 49, 33, (247,149,0): 78, 49, 33, (247,150,0): 80, 48, 33, (247,151,0): 80, 48, 33, (247,152,0): 80, 47, 32, (247,153,0): 81, 48, 33, (247,154,0): 84, 48, 34, (247,155,0): 85, 49, 35, (247,156,0): 86, 50, 36, (247,157,0): 86, 50, 36, (247,158,0): 85, 49, 35, (247,159,0): 84, 48, 34, (247,160,0): 81, 48, 33, (247,161,0): 81, 48, 33, (247,162,0): 81, 48, 33, (247,163,0): 81, 48, 33, (247,164,0): 81, 48, 33, (247,165,0): 81, 48, 33, (247,166,0): 81, 48, 33, (247,167,0): 81, 48, 33, (247,168,0): 79, 46, 31, (247,169,0): 80, 47, 32, (247,170,0): 81, 48, 33, (247,171,0): 81, 48, 33, (247,172,0): 80, 47, 32, (247,173,0): 79, 46, 31, (247,174,0): 78, 45, 30, (247,175,0): 77, 43, 31, (247,176,0): 76, 43, 34, (247,177,0): 73, 43, 35, (247,178,0): 72, 42, 34, (247,179,0): 71, 41, 33, (247,180,0): 70, 40, 32, (247,181,0): 68, 38, 30, (247,182,0): 67, 37, 29, (247,183,0): 67, 37, 29, (247,184,0): 62, 32, 24, (247,185,0): 62, 32, 24, (247,186,0): 62, 32, 24, (247,187,0): 62, 32, 24, (247,188,0): 62, 32, 24, (247,189,0): 61, 31, 23, (247,190,0): 61, 31, 23, (247,191,0): 60, 32, 21, (247,192,0): 58, 34, 22, (247,193,0): 58, 35, 21, (247,194,0): 58, 35, 21, (247,195,0): 60, 34, 21, (247,196,0): 62, 36, 23, (247,197,0): 65, 37, 23, (247,198,0): 68, 39, 25, (247,199,0): 71, 39, 24, (247,200,0): 75, 42, 27, (247,201,0): 79, 43, 29, (247,202,0): 83, 45, 32, (247,203,0): 86, 47, 32, (247,204,0): 87, 48, 33, (247,205,0): 87, 45, 31, (247,206,0): 84, 42, 28, (247,207,0): 80, 42, 23, (247,208,0): 76, 41, 19, (247,209,0): 76, 44, 19, (247,210,0): 79, 47, 22, (247,211,0): 83, 51, 28, (247,212,0): 84, 53, 32, (247,213,0): 84, 53, 32, (247,214,0): 83, 52, 32, (247,215,0): 82, 51, 31, (247,216,0): 80, 52, 31, (247,217,0): 82, 54, 32, (247,218,0): 83, 57, 34, (247,219,0): 83, 57, 32, (247,220,0): 84, 58, 33, (247,221,0): 89, 63, 36, (247,222,0): 95, 72, 41, (247,223,0): 100, 78, 41, (247,224,0): 103, 79, 31, (247,225,0): 111, 89, 32, (247,226,0): 123, 101, 44, (247,227,0): 134, 112, 55, (247,228,0): 143, 121, 63, (247,229,0): 151, 129, 69, (247,230,0): 159, 138, 75, (247,231,0): 165, 144, 81, (247,232,0): 163, 142, 77, (247,233,0): 161, 140, 73, (247,234,0): 159, 139, 70, (247,235,0): 156, 136, 65, (247,236,0): 155, 135, 64, (247,237,0): 156, 136, 63, (247,238,0): 157, 137, 64, (247,239,0): 156, 138, 64, (247,240,0): 170, 153, 81, (247,241,0): 169, 155, 82, (247,242,0): 171, 155, 80, (247,243,0): 172, 156, 79, (247,244,0): 176, 161, 80, (247,245,0): 185, 170, 87, (247,246,0): 198, 182, 97, (247,247,0): 206, 190, 103, (247,248,0): 214, 198, 110, (247,249,0): 217, 202, 111, (247,250,0): 222, 205, 117, (247,251,0): 225, 208, 120, (247,252,0): 226, 209, 121, (247,253,0): 224, 206, 120, (247,254,0): 221, 203, 117, (247,255,0): 220, 199, 116, (247,256,0): 211, 188, 108, (247,257,0): 202, 179, 101, (247,258,0): 188, 164, 90, (247,259,0): 176, 152, 80, (247,260,0): 167, 144, 74, (247,261,0): 160, 140, 71, (247,262,0): 155, 134, 69, (247,263,0): 151, 133, 69, (247,264,0): 158, 142, 80, (247,265,0): 161, 150, 88, (247,266,0): 159, 154, 90, (247,267,0): 152, 151, 84, (247,268,0): 154, 157, 88, (247,269,0): 167, 174, 104, (247,270,0): 179, 189, 116, (247,271,0): 184, 195, 119, (247,272,0): 188, 195, 117, (247,273,0): 191, 196, 116, (247,274,0): 193, 198, 118, (247,275,0): 192, 197, 117, (247,276,0): 190, 194, 117, (247,277,0): 184, 191, 113, (247,278,0): 179, 188, 109, (247,279,0): 174, 185, 106, (247,280,0): 172, 183, 105, (247,281,0): 170, 183, 104, (247,282,0): 169, 182, 103, (247,283,0): 168, 182, 105, (247,284,0): 171, 185, 108, (247,285,0): 175, 189, 112, (247,286,0): 180, 194, 117, (247,287,0): 180, 199, 120, (247,288,0): 183, 208, 125, (247,289,0): 188, 216, 131, (247,290,0): 200, 226, 137, (247,291,0): 210, 235, 141, (247,292,0): 220, 242, 142, (247,293,0): 228, 250, 142, (247,294,0): 237, 255, 145, (247,295,0): 245, 255, 146, (247,296,0): 249, 255, 146, (247,297,0): 252, 255, 147, (247,298,0): 254, 255, 147, (247,299,0): 253, 252, 146, (247,300,0): 246, 242, 142, (247,301,0): 235, 229, 131, (247,302,0): 224, 218, 124, (247,303,0): 219, 209, 120, (247,304,0): 199, 189, 104, (247,305,0): 196, 185, 103, (247,306,0): 191, 180, 100, (247,307,0): 187, 176, 97, (247,308,0): 184, 172, 98, (247,309,0): 179, 164, 95, (247,310,0): 172, 157, 92, (247,311,0): 166, 150, 90, (247,312,0): 157, 140, 86, (247,313,0): 153, 135, 87, (247,314,0): 148, 126, 85, (247,315,0): 143, 121, 84, (247,316,0): 137, 114, 82, (247,317,0): 131, 107, 79, (247,318,0): 123, 99, 73, (247,319,0): 118, 93, 71, (247,320,0): 114, 93, 72, (247,321,0): 107, 89, 69, (247,322,0): 100, 82, 62, (247,323,0): 93, 74, 57, (247,324,0): 87, 68, 51, (247,325,0): 83, 64, 49, (247,326,0): 81, 62, 47, (247,327,0): 81, 62, 48, (247,328,0): 77, 57, 46, (247,329,0): 74, 54, 43, (247,330,0): 70, 50, 41, (247,331,0): 66, 46, 39, (247,332,0): 61, 41, 34, (247,333,0): 58, 37, 32, (247,334,0): 56, 35, 30, (247,335,0): 56, 35, 30, (247,336,0): 54, 35, 29, (247,337,0): 54, 35, 29, (247,338,0): 54, 35, 29, (247,339,0): 54, 35, 29, (247,340,0): 53, 36, 29, (247,341,0): 52, 35, 28, (247,342,0): 51, 34, 27, (247,343,0): 50, 33, 26, (247,344,0): 47, 32, 25, (247,345,0): 49, 34, 27, (247,346,0): 51, 38, 30, (247,347,0): 54, 41, 33, (247,348,0): 55, 42, 34, (247,349,0): 56, 43, 35, (247,350,0): 53, 43, 34, (247,351,0): 53, 43, 33, (247,352,0): 57, 47, 35, (247,353,0): 59, 49, 37, (247,354,0): 62, 52, 40, (247,355,0): 66, 56, 44, (247,356,0): 70, 60, 48, (247,357,0): 73, 63, 51, (247,358,0): 74, 66, 53, (247,359,0): 74, 68, 54, (247,360,0): 75, 72, 57, (247,361,0): 75, 76, 60, (247,362,0): 80, 83, 66, (247,363,0): 85, 92, 74, (247,364,0): 92, 101, 82, (247,365,0): 99, 111, 91, (247,366,0): 104, 117, 97, (247,367,0): 108, 121, 101, (247,368,0): 106, 120, 97, (247,369,0): 106, 118, 96, (247,370,0): 104, 116, 94, (247,371,0): 104, 116, 96, (247,372,0): 107, 116, 97, (247,373,0): 109, 120, 103, (247,374,0): 113, 124, 108, (247,375,0): 114, 126, 112, (247,376,0): 119, 133, 118, (247,377,0): 123, 139, 126, (247,378,0): 128, 148, 136, (247,379,0): 133, 157, 143, (247,380,0): 136, 164, 150, (247,381,0): 141, 172, 157, (247,382,0): 147, 179, 164, (247,383,0): 147, 185, 174, (247,384,0): 151, 198, 192, (247,385,0): 154, 206, 204, (247,386,0): 164, 215, 219, (247,387,0): 169, 224, 229, (247,388,0): 171, 229, 240, (247,389,0): 173, 235, 246, (247,390,0): 178, 242, 252, (247,391,0): 178, 247, 254, (247,392,0): 184, 253, 255, (247,393,0): 183, 254, 255, (247,394,0): 180, 255, 251, (247,395,0): 181, 255, 252, (247,396,0): 182, 255, 253, (247,397,0): 182, 255, 255, (247,398,0): 182, 255, 255, (247,399,0): 182, 255, 255, (247,400,0): 184, 255, 255, (247,401,0): 185, 255, 255, (247,402,0): 185, 255, 255, (247,403,0): 185, 252, 255, (247,404,0): 185, 252, 255, (247,405,0): 186, 250, 255, (247,406,0): 187, 249, 255, (247,407,0): 189, 248, 255, (247,408,0): 186, 241, 255, (247,409,0): 176, 228, 250, (247,410,0): 160, 207, 233, (247,411,0): 141, 186, 215, (247,412,0): 131, 172, 202, (247,413,0): 129, 168, 201, (247,414,0): 134, 173, 206, (247,415,0): 139, 177, 213, (247,416,0): 142, 180, 217, (247,417,0): 144, 182, 221, (247,418,0): 141, 179, 218, (247,419,0): 134, 172, 209, (247,420,0): 136, 171, 209, (247,421,0): 139, 175, 211, (247,422,0): 135, 171, 205, (247,423,0): 127, 162, 194, (247,424,0): 113, 148, 178, (247,425,0): 114, 148, 176, (247,426,0): 114, 148, 175, (247,427,0): 114, 148, 173, (247,428,0): 116, 148, 171, (247,429,0): 118, 150, 173, (247,430,0): 120, 152, 173, (247,431,0): 125, 153, 175, (247,432,0): 134, 158, 182, (247,433,0): 135, 155, 179, (247,434,0): 132, 152, 176, (247,435,0): 126, 147, 168, (247,436,0): 121, 139, 161, (247,437,0): 114, 131, 151, (247,438,0): 110, 122, 144, (247,439,0): 107, 118, 138, (247,440,0): 106, 114, 133, (247,441,0): 107, 114, 132, (247,442,0): 109, 114, 133, (247,443,0): 112, 115, 132, (247,444,0): 114, 115, 133, (247,445,0): 115, 117, 132, (247,446,0): 117, 116, 132, (247,447,0): 116, 118, 133, (247,448,0): 108, 111, 126, (247,449,0): 109, 115, 127, (247,450,0): 113, 117, 129, (247,451,0): 111, 115, 127, (247,452,0): 106, 108, 121, (247,453,0): 100, 102, 114, (247,454,0): 100, 100, 112, (247,455,0): 101, 99, 110, (247,456,0): 98, 95, 106, (247,457,0): 97, 94, 105, (247,458,0): 96, 90, 102, (247,459,0): 92, 86, 96, (247,460,0): 89, 81, 92, (247,461,0): 85, 77, 88, (247,462,0): 84, 74, 85, (247,463,0): 81, 73, 84, (247,464,0): 83, 77, 89, (247,465,0): 80, 77, 88, (247,466,0): 81, 75, 87, (247,467,0): 79, 73, 85, (247,468,0): 76, 70, 80, (247,469,0): 72, 66, 76, (247,470,0): 69, 61, 72, (247,471,0): 67, 59, 70, (247,472,0): 66, 56, 65, (247,473,0): 67, 57, 66, (247,474,0): 68, 58, 66, (247,475,0): 69, 59, 67, (247,476,0): 72, 61, 69, (247,477,0): 73, 62, 70, (247,478,0): 74, 63, 69, (247,479,0): 73, 63, 71, (247,480,0): 66, 63, 70, (247,481,0): 68, 67, 75, (247,482,0): 73, 72, 80, (247,483,0): 78, 77, 85, (247,484,0): 84, 81, 90, (247,485,0): 87, 84, 95, (247,486,0): 89, 86, 97, (247,487,0): 89, 86, 97, (247,488,0): 98, 96, 109, (247,489,0): 102, 102, 114, (247,490,0): 106, 110, 121, (247,491,0): 111, 117, 129, (247,492,0): 115, 123, 134, (247,493,0): 120, 130, 140, (247,494,0): 125, 138, 147, (247,495,0): 129, 143, 156, (247,496,0): 134, 149, 168, (247,497,0): 133, 148, 171, (247,498,0): 133, 148, 171, (247,499,0): 135, 149, 175, (247,500,0): 138, 152, 179, (247,501,0): 143, 157, 186, (247,502,0): 148, 162, 191, (247,503,0): 153, 164, 192, (247,504,0): 158, 169, 197, (247,505,0): 150, 162, 188, (247,506,0): 138, 150, 174, (247,507,0): 127, 138, 158, (247,508,0): 118, 130, 146, (247,509,0): 114, 126, 140, (247,510,0): 114, 126, 138, (247,511,0): 114, 128, 139, (247,512,0): 113, 132, 146, (247,513,0): 116, 138, 152, (247,514,0): 122, 141, 156, (247,515,0): 122, 141, 156, (247,516,0): 118, 135, 151, (247,517,0): 112, 130, 144, (247,518,0): 109, 125, 140, (247,519,0): 108, 124, 139, (247,520,0): 107, 119, 135, (247,521,0): 104, 116, 130, (247,522,0): 104, 113, 128, (247,523,0): 106, 116, 128, (247,524,0): 110, 118, 131, (247,525,0): 111, 119, 132, (247,526,0): 111, 117, 131, (247,527,0): 112, 116, 128, (247,528,0): 109, 111, 123, (247,529,0): 113, 113, 125, (247,530,0): 113, 113, 125, (247,531,0): 112, 111, 125, (247,532,0): 108, 110, 125, (247,533,0): 108, 110, 125, (247,534,0): 110, 113, 130, (247,535,0): 113, 116, 133, (247,536,0): 121, 124, 143, (247,537,0): 123, 128, 148, (247,538,0): 129, 134, 156, (247,539,0): 133, 139, 163, (247,540,0): 137, 141, 166, (247,541,0): 137, 143, 169, (247,542,0): 135, 141, 167, (247,543,0): 132, 139, 167, (247,544,0): 126, 138, 164, (247,545,0): 122, 136, 162, (247,546,0): 120, 134, 160, (247,547,0): 118, 130, 156, (247,548,0): 114, 126, 152, (247,549,0): 111, 123, 147, (247,550,0): 108, 120, 142, (247,551,0): 107, 118, 138, (247,552,0): 103, 114, 134, (247,553,0): 103, 111, 130, (247,554,0): 99, 108, 125, (247,555,0): 96, 105, 120, (247,556,0): 96, 105, 120, (247,557,0): 98, 106, 119, (247,558,0): 100, 108, 121, (247,559,0): 102, 110, 123, (247,560,0): 99, 107, 120, (247,561,0): 99, 107, 120, (247,562,0): 100, 107, 123, (247,563,0): 100, 109, 124, (247,564,0): 102, 111, 126, (247,565,0): 103, 112, 127, (247,566,0): 104, 113, 130, (247,567,0): 103, 115, 131, (247,568,0): 107, 118, 136, (247,569,0): 107, 120, 137, (247,570,0): 107, 120, 137, (247,571,0): 107, 120, 137, (247,572,0): 106, 119, 138, (247,573,0): 102, 117, 136, (247,574,0): 100, 115, 134, (247,575,0): 99, 114, 133, (247,576,0): 98, 114, 130, (247,577,0): 98, 114, 130, (247,578,0): 99, 112, 129, (247,579,0): 99, 112, 129, (247,580,0): 99, 112, 129, (247,581,0): 101, 114, 131, (247,582,0): 103, 114, 132, (247,583,0): 104, 115, 133, (247,584,0): 106, 114, 133, (247,585,0): 104, 112, 131, (247,586,0): 102, 110, 129, (247,587,0): 102, 110, 129, (247,588,0): 104, 111, 130, (247,589,0): 103, 110, 129, (247,590,0): 100, 107, 126, (247,591,0): 98, 103, 122, (247,592,0): 96, 99, 114, (247,593,0): 91, 93, 106, (247,594,0): 86, 86, 98, (247,595,0): 81, 81, 91, (247,596,0): 81, 78, 87, (247,597,0): 78, 75, 84, (247,598,0): 75, 70, 77, (247,599,0): 71, 66, 72, (248,0,0): 48, 36, 46, (248,1,0): 48, 36, 46, (248,2,0): 49, 37, 47, (248,3,0): 49, 37, 47, (248,4,0): 50, 38, 48, (248,5,0): 50, 38, 48, (248,6,0): 52, 39, 49, (248,7,0): 52, 39, 49, (248,8,0): 53, 37, 48, (248,9,0): 53, 37, 48, (248,10,0): 54, 36, 48, (248,11,0): 54, 36, 48, (248,12,0): 54, 36, 48, (248,13,0): 54, 36, 48, (248,14,0): 54, 36, 48, (248,15,0): 54, 36, 48, (248,16,0): 54, 36, 50, (248,17,0): 54, 36, 50, (248,18,0): 55, 37, 51, (248,19,0): 56, 38, 50, (248,20,0): 57, 39, 51, (248,21,0): 58, 40, 52, (248,22,0): 59, 42, 52, (248,23,0): 59, 42, 52, (248,24,0): 60, 43, 51, (248,25,0): 61, 44, 52, (248,26,0): 62, 45, 51, (248,27,0): 64, 47, 53, (248,28,0): 64, 47, 53, (248,29,0): 64, 48, 51, (248,30,0): 63, 47, 50, (248,31,0): 63, 47, 50, (248,32,0): 66, 47, 53, (248,33,0): 67, 46, 53, (248,34,0): 67, 46, 53, (248,35,0): 67, 46, 53, (248,36,0): 68, 45, 51, (248,37,0): 68, 45, 51, (248,38,0): 68, 45, 51, (248,39,0): 68, 45, 51, (248,40,0): 73, 48, 52, (248,41,0): 73, 48, 52, (248,42,0): 75, 49, 52, (248,43,0): 75, 49, 52, (248,44,0): 76, 50, 53, (248,45,0): 76, 50, 53, (248,46,0): 79, 50, 52, (248,47,0): 79, 50, 52, (248,48,0): 82, 51, 56, (248,49,0): 83, 51, 56, (248,50,0): 83, 51, 56, (248,51,0): 83, 51, 56, (248,52,0): 83, 51, 56, (248,53,0): 83, 51, 56, (248,54,0): 83, 51, 56, (248,55,0): 83, 51, 56, (248,56,0): 82, 50, 55, (248,57,0): 81, 49, 54, (248,58,0): 80, 48, 53, (248,59,0): 80, 48, 53, (248,60,0): 81, 49, 54, (248,61,0): 83, 51, 56, (248,62,0): 86, 54, 59, (248,63,0): 88, 56, 59, (248,64,0): 91, 55, 57, (248,65,0): 91, 55, 55, (248,66,0): 92, 57, 55, (248,67,0): 94, 59, 55, (248,68,0): 98, 61, 53, (248,69,0): 99, 62, 53, (248,70,0): 101, 63, 52, (248,71,0): 102, 64, 51, (248,72,0): 102, 65, 49, (248,73,0): 104, 67, 49, (248,74,0): 108, 69, 52, (248,75,0): 109, 70, 53, (248,76,0): 111, 69, 55, (248,77,0): 110, 68, 54, (248,78,0): 107, 65, 51, (248,79,0): 103, 64, 49, (248,80,0): 107, 70, 52, (248,81,0): 106, 71, 52, (248,82,0): 106, 71, 52, (248,83,0): 106, 71, 52, (248,84,0): 106, 71, 52, (248,85,0): 106, 71, 52, (248,86,0): 106, 71, 52, (248,87,0): 106, 71, 52, (248,88,0): 103, 68, 49, (248,89,0): 104, 69, 50, (248,90,0): 104, 69, 50, (248,91,0): 103, 68, 49, (248,92,0): 102, 67, 48, (248,93,0): 100, 65, 46, (248,94,0): 98, 63, 44, (248,95,0): 96, 61, 42, (248,96,0): 99, 63, 49, (248,97,0): 99, 63, 49, (248,98,0): 99, 63, 49, (248,99,0): 99, 63, 49, (248,100,0): 100, 64, 50, (248,101,0): 100, 64, 50, (248,102,0): 100, 64, 50, (248,103,0): 100, 64, 50, (248,104,0): 99, 63, 49, (248,105,0): 98, 62, 48, (248,106,0): 98, 62, 48, (248,107,0): 97, 61, 47, (248,108,0): 96, 60, 46, (248,109,0): 95, 59, 45, (248,110,0): 95, 59, 45, (248,111,0): 94, 58, 42, (248,112,0): 92, 56, 40, (248,113,0): 92, 57, 38, (248,114,0): 92, 57, 38, (248,115,0): 92, 57, 38, (248,116,0): 92, 57, 38, (248,117,0): 92, 57, 38, (248,118,0): 90, 57, 38, (248,119,0): 90, 57, 38, (248,120,0): 93, 60, 41, (248,121,0): 92, 61, 41, (248,122,0): 92, 61, 41, (248,123,0): 89, 61, 40, (248,124,0): 88, 60, 39, (248,125,0): 88, 60, 39, (248,126,0): 88, 60, 39, (248,127,0): 87, 59, 38, (248,128,0): 86, 57, 41, (248,129,0): 86, 57, 41, (248,130,0): 86, 57, 41, (248,131,0): 86, 57, 41, (248,132,0): 86, 57, 41, (248,133,0): 86, 57, 41, (248,134,0): 86, 57, 41, (248,135,0): 86, 57, 41, (248,136,0): 86, 57, 41, (248,137,0): 86, 57, 41, (248,138,0): 85, 56, 40, (248,139,0): 83, 54, 38, (248,140,0): 82, 53, 37, (248,141,0): 81, 52, 36, (248,142,0): 80, 51, 35, (248,143,0): 79, 50, 34, (248,144,0): 81, 52, 36, (248,145,0): 81, 52, 36, (248,146,0): 83, 51, 36, (248,147,0): 83, 51, 36, (248,148,0): 83, 51, 36, (248,149,0): 83, 51, 36, (248,150,0): 84, 51, 36, (248,151,0): 84, 51, 36, (248,152,0): 91, 55, 41, (248,153,0): 91, 55, 41, (248,154,0): 90, 54, 40, (248,155,0): 88, 52, 38, (248,156,0): 88, 50, 37, (248,157,0): 87, 49, 36, (248,158,0): 86, 48, 35, (248,159,0): 84, 48, 34, (248,160,0): 83, 50, 35, (248,161,0): 83, 50, 35, (248,162,0): 82, 49, 34, (248,163,0): 82, 49, 34, (248,164,0): 81, 48, 33, (248,165,0): 81, 48, 33, (248,166,0): 80, 47, 32, (248,167,0): 80, 47, 32, (248,168,0): 86, 53, 38, (248,169,0): 85, 52, 37, (248,170,0): 84, 51, 36, (248,171,0): 82, 49, 34, (248,172,0): 80, 47, 32, (248,173,0): 78, 45, 30, (248,174,0): 77, 44, 29, (248,175,0): 76, 42, 30, (248,176,0): 78, 46, 35, (248,177,0): 77, 44, 35, (248,178,0): 76, 43, 34, (248,179,0): 74, 41, 32, (248,180,0): 72, 39, 30, (248,181,0): 70, 37, 28, (248,182,0): 69, 36, 27, (248,183,0): 68, 35, 26, (248,184,0): 69, 36, 27, (248,185,0): 69, 36, 27, (248,186,0): 68, 35, 26, (248,187,0): 68, 35, 26, (248,188,0): 67, 34, 25, (248,189,0): 66, 33, 24, (248,190,0): 65, 32, 23, (248,191,0): 63, 33, 23, (248,192,0): 62, 36, 23, (248,193,0): 62, 36, 21, (248,194,0): 62, 36, 21, (248,195,0): 63, 37, 22, (248,196,0): 67, 39, 25, (248,197,0): 71, 42, 26, (248,198,0): 77, 45, 30, (248,199,0): 80, 47, 32, (248,200,0): 86, 50, 36, (248,201,0): 88, 51, 35, (248,202,0): 90, 53, 37, (248,203,0): 91, 52, 35, (248,204,0): 91, 49, 33, (248,205,0): 89, 46, 30, (248,206,0): 85, 42, 26, (248,207,0): 81, 40, 20, (248,208,0): 76, 42, 17, (248,209,0): 80, 49, 21, (248,210,0): 86, 54, 29, (248,211,0): 89, 57, 34, (248,212,0): 87, 56, 35, (248,213,0): 85, 54, 33, (248,214,0): 85, 54, 34, (248,215,0): 85, 54, 34, (248,216,0): 83, 55, 33, (248,217,0): 83, 55, 33, (248,218,0): 83, 57, 32, (248,219,0): 87, 61, 34, (248,220,0): 92, 67, 37, (248,221,0): 98, 73, 42, (248,222,0): 102, 79, 45, (248,223,0): 104, 82, 41, (248,224,0): 109, 86, 34, (248,225,0): 118, 96, 38, (248,226,0): 131, 109, 51, (248,227,0): 143, 121, 63, (248,228,0): 151, 129, 69, (248,229,0): 158, 136, 76, (248,230,0): 163, 142, 79, (248,231,0): 167, 146, 83, (248,232,0): 167, 146, 81, (248,233,0): 162, 141, 74, (248,234,0): 154, 133, 66, (248,235,0): 148, 128, 59, (248,236,0): 147, 127, 58, (248,237,0): 150, 130, 59, (248,238,0): 156, 136, 65, (248,239,0): 159, 140, 71, (248,240,0): 154, 140, 69, (248,241,0): 155, 143, 71, (248,242,0): 160, 146, 73, (248,243,0): 167, 153, 78, (248,244,0): 175, 162, 84, (248,245,0): 183, 170, 91, (248,246,0): 193, 178, 95, (248,247,0): 197, 182, 97, (248,248,0): 204, 188, 101, (248,249,0): 209, 193, 105, (248,250,0): 217, 199, 113, (248,251,0): 222, 204, 118, (248,252,0): 222, 204, 118, (248,253,0): 216, 198, 114, (248,254,0): 211, 190, 107, (248,255,0): 205, 184, 103, (248,256,0): 198, 175, 97, (248,257,0): 192, 169, 91, (248,258,0): 181, 157, 83, (248,259,0): 170, 146, 74, (248,260,0): 161, 138, 68, (248,261,0): 156, 136, 67, (248,262,0): 156, 135, 70, (248,263,0): 155, 137, 73, (248,264,0): 160, 145, 80, (248,265,0): 161, 150, 86, (248,266,0): 160, 155, 89, (248,267,0): 158, 157, 90, (248,268,0): 157, 160, 91, (248,269,0): 161, 169, 96, (248,270,0): 172, 182, 109, (248,271,0): 183, 194, 118, (248,272,0): 192, 199, 121, (248,273,0): 195, 200, 120, (248,274,0): 195, 202, 124, (248,275,0): 196, 203, 125, (248,276,0): 194, 201, 123, (248,277,0): 188, 197, 118, (248,278,0): 184, 192, 115, (248,279,0): 179, 190, 112, (248,280,0): 175, 186, 110, (248,281,0): 172, 184, 108, (248,282,0): 169, 181, 105, (248,283,0): 166, 180, 105, (248,284,0): 167, 181, 106, (248,285,0): 169, 185, 110, (248,286,0): 175, 191, 116, (248,287,0): 176, 197, 122, (248,288,0): 184, 206, 133, (248,289,0): 180, 207, 130, (248,290,0): 185, 210, 129, (248,291,0): 193, 218, 134, (248,292,0): 205, 231, 140, (248,293,0): 215, 242, 145, (248,294,0): 222, 248, 147, (248,295,0): 225, 251, 144, (248,296,0): 236, 255, 151, (248,297,0): 237, 255, 148, (248,298,0): 239, 255, 146, (248,299,0): 243, 255, 148, (248,300,0): 250, 255, 153, (248,301,0): 250, 255, 152, (248,302,0): 246, 248, 147, (248,303,0): 241, 241, 143, (248,304,0): 236, 233, 138, (248,305,0): 232, 227, 135, (248,306,0): 227, 220, 129, (248,307,0): 221, 214, 124, (248,308,0): 215, 208, 118, (248,309,0): 207, 197, 110, (248,310,0): 195, 184, 102, (248,311,0): 186, 175, 96, (248,312,0): 175, 161, 90, (248,313,0): 165, 149, 87, (248,314,0): 159, 140, 84, (248,315,0): 156, 135, 88, (248,316,0): 149, 126, 85, (248,317,0): 134, 110, 76, (248,318,0): 125, 100, 70, (248,319,0): 123, 99, 73, (248,320,0): 118, 98, 74, (248,321,0): 109, 91, 69, (248,322,0): 98, 80, 58, (248,323,0): 90, 72, 52, (248,324,0): 86, 67, 50, (248,325,0): 83, 64, 49, (248,326,0): 80, 61, 46, (248,327,0): 78, 59, 45, (248,328,0): 83, 63, 52, (248,329,0): 77, 57, 46, (248,330,0): 69, 49, 40, (248,331,0): 64, 44, 37, (248,332,0): 62, 42, 35, (248,333,0): 61, 41, 34, (248,334,0): 60, 39, 34, (248,335,0): 58, 37, 32, (248,336,0): 62, 43, 36, (248,337,0): 62, 43, 36, (248,338,0): 62, 43, 36, (248,339,0): 63, 44, 37, (248,340,0): 63, 46, 38, (248,341,0): 60, 43, 35, (248,342,0): 54, 37, 29, (248,343,0): 49, 32, 24, (248,344,0): 51, 37, 28, (248,345,0): 49, 35, 26, (248,346,0): 49, 36, 27, (248,347,0): 53, 40, 31, (248,348,0): 59, 46, 37, (248,349,0): 64, 51, 42, (248,350,0): 61, 51, 41, (248,351,0): 60, 50, 40, (248,352,0): 57, 49, 36, (248,353,0): 61, 53, 40, (248,354,0): 65, 57, 44, (248,355,0): 67, 59, 46, (248,356,0): 69, 59, 47, (248,357,0): 72, 62, 50, (248,358,0): 75, 67, 54, (248,359,0): 78, 72, 58, (248,360,0): 76, 73, 58, (248,361,0): 79, 77, 62, (248,362,0): 84, 87, 70, (248,363,0): 90, 97, 79, (248,364,0): 98, 110, 90, (248,365,0): 107, 120, 100, (248,366,0): 113, 128, 107, (248,367,0): 117, 132, 111, (248,368,0): 116, 129, 109, (248,369,0): 113, 126, 106, (248,370,0): 109, 122, 102, (248,371,0): 107, 120, 102, (248,372,0): 108, 119, 102, (248,373,0): 109, 122, 105, (248,374,0): 113, 126, 109, (248,375,0): 115, 129, 114, (248,376,0): 123, 139, 126, (248,377,0): 127, 145, 133, (248,378,0): 130, 152, 139, (248,379,0): 133, 159, 146, (248,380,0): 134, 164, 152, (248,381,0): 139, 171, 158, (248,382,0): 144, 178, 164, (248,383,0): 144, 184, 175, (248,384,0): 156, 202, 199, (248,385,0): 158, 209, 210, (248,386,0): 166, 216, 223, (248,387,0): 170, 225, 232, (248,388,0): 173, 231, 243, (248,389,0): 176, 238, 251, (248,390,0): 182, 246, 255, (248,391,0): 184, 252, 255, (248,392,0): 181, 250, 255, (248,393,0): 181, 252, 255, (248,394,0): 181, 255, 255, (248,395,0): 182, 255, 255, (248,396,0): 182, 255, 255, (248,397,0): 181, 255, 255, (248,398,0): 179, 253, 255, (248,399,0): 178, 252, 255, (248,400,0): 178, 249, 251, (248,401,0): 182, 252, 254, (248,402,0): 185, 253, 255, (248,403,0): 186, 250, 255, (248,404,0): 184, 244, 255, (248,405,0): 178, 235, 252, (248,406,0): 176, 228, 249, (248,407,0): 175, 225, 248, (248,408,0): 166, 212, 238, (248,409,0): 155, 199, 228, (248,410,0): 140, 181, 211, (248,411,0): 130, 169, 200, (248,412,0): 128, 167, 198, (248,413,0): 131, 170, 201, (248,414,0): 135, 174, 205, (248,415,0): 137, 176, 209, (248,416,0): 145, 180, 218, (248,417,0): 142, 177, 217, (248,418,0): 138, 172, 210, (248,419,0): 135, 169, 207, (248,420,0): 133, 167, 204, (248,421,0): 127, 161, 196, (248,422,0): 120, 155, 187, (248,423,0): 114, 147, 178, (248,424,0): 104, 138, 166, (248,425,0): 108, 139, 167, (248,426,0): 112, 143, 171, (248,427,0): 116, 148, 173, (248,428,0): 120, 150, 174, (248,429,0): 123, 153, 177, (248,430,0): 124, 155, 176, (248,431,0): 127, 155, 177, (248,432,0): 138, 158, 182, (248,433,0): 137, 155, 177, (248,434,0): 133, 149, 172, (248,435,0): 127, 143, 166, (248,436,0): 121, 136, 159, (248,437,0): 117, 129, 151, (248,438,0): 114, 125, 145, (248,439,0): 113, 121, 140, (248,440,0): 112, 119, 138, (248,441,0): 109, 114, 133, (248,442,0): 108, 111, 128, (248,443,0): 109, 111, 126, (248,444,0): 113, 115, 130, (248,445,0): 118, 117, 131, (248,446,0): 119, 117, 131, (248,447,0): 116, 115, 129, (248,448,0): 112, 114, 127, (248,449,0): 110, 114, 125, (248,450,0): 110, 112, 124, (248,451,0): 108, 110, 122, (248,452,0): 107, 107, 119, (248,453,0): 103, 103, 113, (248,454,0): 101, 99, 110, (248,455,0): 99, 97, 108, (248,456,0): 95, 92, 103, (248,457,0): 96, 90, 100, (248,458,0): 94, 86, 97, (248,459,0): 91, 84, 92, (248,460,0): 91, 81, 90, (248,461,0): 90, 80, 89, (248,462,0): 90, 78, 88, (248,463,0): 89, 79, 88, (248,464,0): 84, 76, 87, (248,465,0): 83, 77, 89, (248,466,0): 83, 75, 88, (248,467,0): 82, 74, 87, (248,468,0): 80, 72, 83, (248,469,0): 78, 70, 81, (248,470,0): 78, 68, 79, (248,471,0): 77, 67, 78, (248,472,0): 70, 58, 68, (248,473,0): 69, 57, 67, (248,474,0): 68, 57, 65, (248,475,0): 68, 57, 65, (248,476,0): 69, 56, 65, (248,477,0): 70, 57, 66, (248,478,0): 71, 58, 65, (248,479,0): 70, 61, 66, (248,480,0): 72, 67, 73, (248,481,0): 72, 69, 76, (248,482,0): 74, 71, 78, (248,483,0): 77, 74, 81, (248,484,0): 83, 78, 85, (248,485,0): 86, 80, 90, (248,486,0): 88, 82, 92, (248,487,0): 87, 84, 93, (248,488,0): 95, 93, 104, (248,489,0): 99, 99, 109, (248,490,0): 104, 107, 116, (248,491,0): 108, 112, 123, (248,492,0): 110, 119, 128, (248,493,0): 113, 123, 132, (248,494,0): 117, 130, 138, (248,495,0): 120, 134, 145, (248,496,0): 127, 140, 157, (248,497,0): 129, 141, 163, (248,498,0): 132, 144, 168, (248,499,0): 136, 148, 174, (248,500,0): 140, 152, 178, (248,501,0): 143, 154, 182, (248,502,0): 146, 157, 185, (248,503,0): 148, 157, 186, (248,504,0): 146, 155, 184, (248,505,0): 137, 147, 172, (248,506,0): 124, 135, 157, (248,507,0): 118, 126, 145, (248,508,0): 117, 126, 141, (248,509,0): 119, 129, 141, (248,510,0): 121, 131, 141, (248,511,0): 119, 133, 144, (248,512,0): 115, 134, 148, (248,513,0): 120, 141, 158, (248,514,0): 123, 142, 159, (248,515,0): 117, 136, 151, (248,516,0): 116, 133, 149, (248,517,0): 117, 134, 150, (248,518,0): 113, 129, 145, (248,519,0): 105, 121, 136, (248,520,0): 108, 120, 136, (248,521,0): 105, 117, 131, (248,522,0): 104, 113, 128, (248,523,0): 105, 114, 129, (248,524,0): 110, 117, 133, (248,525,0): 112, 120, 133, (248,526,0): 113, 119, 133, (248,527,0): 113, 117, 129, (248,528,0): 116, 118, 130, (248,529,0): 117, 117, 129, (248,530,0): 116, 115, 129, (248,531,0): 115, 114, 128, (248,532,0): 111, 113, 128, (248,533,0): 109, 111, 126, (248,534,0): 108, 109, 127, (248,535,0): 107, 110, 127, (248,536,0): 113, 116, 135, (248,537,0): 119, 121, 142, (248,538,0): 128, 130, 151, (248,539,0): 134, 139, 161, (248,540,0): 141, 143, 166, (248,541,0): 140, 144, 169, (248,542,0): 137, 141, 166, (248,543,0): 134, 140, 166, (248,544,0): 125, 135, 160, (248,545,0): 120, 132, 156, (248,546,0): 115, 127, 151, (248,547,0): 113, 124, 146, (248,548,0): 113, 124, 146, (248,549,0): 112, 123, 143, (248,550,0): 108, 119, 139, (248,551,0): 107, 115, 134, (248,552,0): 104, 113, 130, (248,553,0): 99, 106, 122, (248,554,0): 90, 97, 113, (248,555,0): 82, 90, 103, (248,556,0): 81, 89, 102, (248,557,0): 85, 91, 103, (248,558,0): 92, 98, 110, (248,559,0): 96, 102, 114, (248,560,0): 95, 101, 113, (248,561,0): 95, 101, 113, (248,562,0): 95, 101, 115, (248,563,0): 95, 103, 116, (248,564,0): 98, 106, 119, (248,565,0): 100, 108, 121, (248,566,0): 103, 110, 126, (248,567,0): 104, 113, 128, (248,568,0): 108, 117, 134, (248,569,0): 106, 118, 134, (248,570,0): 106, 118, 134, (248,571,0): 107, 119, 135, (248,572,0): 106, 117, 135, (248,573,0): 105, 118, 135, (248,574,0): 104, 117, 134, (248,575,0): 103, 116, 133, (248,576,0): 101, 114, 131, (248,577,0): 101, 114, 131, (248,578,0): 101, 114, 131, (248,579,0): 101, 114, 131, (248,580,0): 102, 113, 131, (248,581,0): 102, 113, 131, (248,582,0): 102, 113, 131, (248,583,0): 102, 113, 131, (248,584,0): 104, 112, 131, (248,585,0): 103, 111, 130, (248,586,0): 101, 108, 127, (248,587,0): 99, 106, 125, (248,588,0): 97, 104, 123, (248,589,0): 95, 102, 121, (248,590,0): 95, 100, 120, (248,591,0): 95, 100, 119, (248,592,0): 96, 99, 114, (248,593,0): 93, 95, 108, (248,594,0): 88, 88, 100, (248,595,0): 84, 84, 94, (248,596,0): 83, 80, 89, (248,597,0): 80, 77, 86, (248,598,0): 78, 73, 80, (248,599,0): 75, 70, 77, (249,0,0): 48, 36, 46, (249,1,0): 48, 36, 46, (249,2,0): 49, 37, 47, (249,3,0): 49, 37, 47, (249,4,0): 50, 38, 48, (249,5,0): 50, 38, 48, (249,6,0): 52, 39, 49, (249,7,0): 52, 39, 49, (249,8,0): 53, 37, 48, (249,9,0): 53, 37, 48, (249,10,0): 54, 36, 48, (249,11,0): 54, 36, 48, (249,12,0): 54, 36, 48, (249,13,0): 54, 36, 48, (249,14,0): 54, 36, 48, (249,15,0): 54, 36, 48, (249,16,0): 54, 36, 50, (249,17,0): 54, 36, 50, (249,18,0): 55, 37, 51, (249,19,0): 56, 38, 52, (249,20,0): 57, 39, 53, (249,21,0): 58, 40, 52, (249,22,0): 59, 42, 52, (249,23,0): 60, 43, 53, (249,24,0): 60, 43, 51, (249,25,0): 61, 44, 52, (249,26,0): 63, 46, 52, (249,27,0): 64, 48, 51, (249,28,0): 64, 48, 51, (249,29,0): 64, 48, 51, (249,30,0): 63, 47, 50, (249,31,0): 65, 46, 50, (249,32,0): 67, 46, 53, (249,33,0): 67, 46, 53, (249,34,0): 67, 46, 53, (249,35,0): 67, 46, 53, (249,36,0): 68, 45, 51, (249,37,0): 68, 45, 51, (249,38,0): 68, 45, 51, (249,39,0): 68, 45, 51, (249,40,0): 73, 48, 52, (249,41,0): 73, 48, 52, (249,42,0): 75, 49, 52, (249,43,0): 75, 49, 52, (249,44,0): 76, 50, 53, (249,45,0): 76, 50, 53, (249,46,0): 79, 50, 52, (249,47,0): 79, 50, 52, (249,48,0): 83, 51, 56, (249,49,0): 83, 51, 56, (249,50,0): 83, 51, 56, (249,51,0): 83, 51, 56, (249,52,0): 83, 51, 56, (249,53,0): 83, 51, 56, (249,54,0): 83, 51, 56, (249,55,0): 83, 51, 56, (249,56,0): 82, 50, 55, (249,57,0): 82, 50, 55, (249,58,0): 81, 49, 54, (249,59,0): 81, 49, 54, (249,60,0): 82, 50, 55, (249,61,0): 84, 52, 57, (249,62,0): 86, 54, 59, (249,63,0): 88, 56, 59, (249,64,0): 90, 56, 55, (249,65,0): 92, 57, 55, (249,66,0): 93, 58, 54, (249,67,0): 94, 59, 53, (249,68,0): 98, 61, 53, (249,69,0): 100, 64, 52, (249,70,0): 101, 65, 51, (249,71,0): 102, 65, 49, (249,72,0): 102, 65, 47, (249,73,0): 104, 67, 49, (249,74,0): 108, 69, 52, (249,75,0): 109, 70, 53, (249,76,0): 109, 70, 53, (249,77,0): 110, 68, 54, (249,78,0): 107, 65, 51, (249,79,0): 103, 64, 49, (249,80,0): 107, 70, 52, (249,81,0): 106, 71, 52, (249,82,0): 106, 71, 52, (249,83,0): 106, 71, 52, (249,84,0): 106, 71, 52, (249,85,0): 106, 71, 52, (249,86,0): 106, 71, 52, (249,87,0): 106, 71, 52, (249,88,0): 104, 69, 50, (249,89,0): 104, 69, 50, (249,90,0): 104, 69, 50, (249,91,0): 104, 69, 50, (249,92,0): 102, 67, 48, (249,93,0): 100, 65, 46, (249,94,0): 98, 63, 44, (249,95,0): 97, 62, 43, (249,96,0): 99, 63, 49, (249,97,0): 99, 63, 49, (249,98,0): 99, 63, 49, (249,99,0): 99, 63, 49, (249,100,0): 99, 63, 49, (249,101,0): 99, 63, 49, (249,102,0): 100, 64, 50, (249,103,0): 100, 64, 50, (249,104,0): 99, 63, 49, (249,105,0): 98, 62, 48, (249,106,0): 98, 62, 48, (249,107,0): 97, 61, 47, (249,108,0): 96, 60, 46, (249,109,0): 96, 60, 46, (249,110,0): 95, 59, 45, (249,111,0): 95, 59, 43, (249,112,0): 93, 57, 41, (249,113,0): 93, 58, 39, (249,114,0): 93, 58, 39, (249,115,0): 93, 58, 39, (249,116,0): 93, 58, 39, (249,117,0): 91, 58, 39, (249,118,0): 91, 58, 39, (249,119,0): 90, 59, 39, (249,120,0): 93, 62, 42, (249,121,0): 92, 61, 41, (249,122,0): 90, 62, 41, (249,123,0): 89, 61, 40, (249,124,0): 89, 61, 40, (249,125,0): 88, 60, 39, (249,126,0): 88, 60, 39, (249,127,0): 88, 60, 39, (249,128,0): 86, 57, 39, (249,129,0): 86, 57, 41, (249,130,0): 86, 57, 41, (249,131,0): 86, 57, 41, (249,132,0): 86, 57, 41, (249,133,0): 86, 57, 41, (249,134,0): 86, 57, 41, (249,135,0): 86, 57, 41, (249,136,0): 86, 57, 41, (249,137,0): 85, 56, 40, (249,138,0): 84, 55, 39, (249,139,0): 83, 54, 38, (249,140,0): 82, 53, 37, (249,141,0): 81, 52, 36, (249,142,0): 80, 51, 35, (249,143,0): 79, 50, 34, (249,144,0): 82, 53, 37, (249,145,0): 82, 53, 37, (249,146,0): 84, 52, 37, (249,147,0): 84, 52, 37, (249,148,0): 84, 52, 37, (249,149,0): 84, 52, 37, (249,150,0): 85, 52, 37, (249,151,0): 85, 52, 37, (249,152,0): 91, 55, 41, (249,153,0): 90, 54, 40, (249,154,0): 89, 53, 39, (249,155,0): 88, 52, 38, (249,156,0): 88, 50, 37, (249,157,0): 87, 49, 36, (249,158,0): 86, 48, 35, (249,159,0): 85, 47, 34, (249,160,0): 86, 50, 36, (249,161,0): 83, 50, 35, (249,162,0): 83, 50, 35, (249,163,0): 83, 50, 35, (249,164,0): 82, 49, 34, (249,165,0): 81, 48, 33, (249,166,0): 81, 48, 33, (249,167,0): 81, 48, 33, (249,168,0): 86, 53, 38, (249,169,0): 85, 52, 37, (249,170,0): 84, 51, 36, (249,171,0): 82, 49, 34, (249,172,0): 80, 47, 32, (249,173,0): 79, 46, 31, (249,174,0): 77, 44, 29, (249,175,0): 77, 44, 29, (249,176,0): 78, 46, 35, (249,177,0): 77, 45, 34, (249,178,0): 76, 43, 34, (249,179,0): 74, 42, 31, (249,180,0): 73, 40, 31, (249,181,0): 71, 39, 28, (249,182,0): 70, 37, 28, (249,183,0): 69, 37, 26, (249,184,0): 70, 37, 28, (249,185,0): 69, 37, 26, (249,186,0): 69, 36, 27, (249,187,0): 68, 36, 25, (249,188,0): 67, 34, 25, (249,189,0): 67, 35, 24, (249,190,0): 66, 33, 24, (249,191,0): 64, 34, 23, (249,192,0): 65, 37, 23, (249,193,0): 65, 37, 23, (249,194,0): 66, 38, 24, (249,195,0): 67, 40, 23, (249,196,0): 70, 41, 25, (249,197,0): 75, 43, 28, (249,198,0): 80, 47, 32, (249,199,0): 83, 47, 31, (249,200,0): 88, 51, 35, (249,201,0): 89, 52, 34, (249,202,0): 91, 52, 35, (249,203,0): 94, 52, 36, (249,204,0): 93, 50, 34, (249,205,0): 90, 47, 30, (249,206,0): 88, 42, 26, (249,207,0): 83, 42, 22, (249,208,0): 78, 44, 17, (249,209,0): 81, 50, 21, (249,210,0): 86, 55, 27, (249,211,0): 88, 56, 31, (249,212,0): 86, 56, 32, (249,213,0): 84, 53, 32, (249,214,0): 84, 53, 33, (249,215,0): 85, 54, 33, (249,216,0): 81, 53, 31, (249,217,0): 83, 55, 31, (249,218,0): 84, 58, 31, (249,219,0): 88, 63, 32, (249,220,0): 92, 68, 34, (249,221,0): 99, 75, 39, (249,222,0): 105, 83, 44, (249,223,0): 109, 88, 43, (249,224,0): 120, 97, 43, (249,225,0): 128, 106, 46, (249,226,0): 139, 118, 55, (249,227,0): 148, 127, 64, (249,228,0): 154, 133, 70, (249,229,0): 158, 137, 74, (249,230,0): 161, 140, 77, (249,231,0): 164, 143, 78, (249,232,0): 164, 143, 78, (249,233,0): 160, 139, 74, (249,234,0): 154, 133, 66, (249,235,0): 149, 128, 61, (249,236,0): 149, 129, 60, (249,237,0): 152, 132, 63, (249,238,0): 157, 137, 68, (249,239,0): 159, 140, 71, (249,240,0): 161, 146, 77, (249,241,0): 159, 149, 78, (249,242,0): 165, 153, 81, (249,243,0): 169, 157, 83, (249,244,0): 176, 164, 88, (249,245,0): 184, 171, 92, (249,246,0): 190, 178, 96, (249,247,0): 195, 180, 97, (249,248,0): 203, 187, 102, (249,249,0): 205, 189, 102, (249,250,0): 209, 191, 105, (249,251,0): 211, 193, 107, (249,252,0): 211, 193, 109, (249,253,0): 207, 189, 105, (249,254,0): 205, 184, 103, (249,255,0): 202, 181, 100, (249,256,0): 194, 173, 94, (249,257,0): 190, 169, 90, (249,258,0): 184, 161, 85, (249,259,0): 175, 153, 78, (249,260,0): 168, 146, 73, (249,261,0): 161, 141, 70, (249,262,0): 157, 138, 69, (249,263,0): 154, 137, 68, (249,264,0): 158, 143, 76, (249,265,0): 159, 149, 80, (249,266,0): 158, 153, 85, (249,267,0): 156, 156, 86, (249,268,0): 156, 159, 88, (249,269,0): 161, 167, 95, (249,270,0): 171, 181, 108, (249,271,0): 181, 192, 116, (249,272,0): 190, 197, 119, (249,273,0): 194, 199, 119, (249,274,0): 195, 202, 124, (249,275,0): 195, 204, 125, (249,276,0): 194, 203, 124, (249,277,0): 189, 200, 121, (249,278,0): 185, 196, 118, (249,279,0): 183, 194, 116, (249,280,0): 178, 189, 113, (249,281,0): 174, 186, 110, (249,282,0): 170, 180, 107, (249,283,0): 164, 176, 102, (249,284,0): 162, 175, 103, (249,285,0): 162, 178, 105, (249,286,0): 165, 181, 108, (249,287,0): 167, 184, 113, (249,288,0): 175, 195, 124, (249,289,0): 175, 197, 125, (249,290,0): 178, 202, 128, (249,291,0): 184, 211, 134, (249,292,0): 193, 222, 140, (249,293,0): 202, 232, 146, (249,294,0): 207, 241, 147, (249,295,0): 212, 244, 147, (249,296,0): 222, 254, 153, (249,297,0): 226, 254, 152, (249,298,0): 229, 255, 153, (249,299,0): 235, 255, 154, (249,300,0): 241, 255, 156, (249,301,0): 241, 255, 153, (249,302,0): 240, 252, 150, (249,303,0): 240, 248, 147, (249,304,0): 250, 255, 155, (249,305,0): 249, 251, 152, (249,306,0): 246, 246, 148, (249,307,0): 243, 243, 143, (249,308,0): 242, 240, 140, (249,309,0): 236, 233, 136, (249,310,0): 229, 224, 130, (249,311,0): 224, 217, 127, (249,312,0): 208, 200, 115, (249,313,0): 192, 180, 104, (249,314,0): 173, 158, 91, (249,315,0): 159, 143, 84, (249,316,0): 147, 127, 77, (249,317,0): 135, 113, 72, (249,318,0): 130, 106, 70, (249,319,0): 131, 108, 77, (249,320,0): 122, 102, 75, (249,321,0): 112, 94, 70, (249,322,0): 101, 83, 59, (249,323,0): 92, 74, 52, (249,324,0): 87, 69, 49, (249,325,0): 84, 65, 48, (249,326,0): 81, 62, 47, (249,327,0): 79, 60, 46, (249,328,0): 83, 63, 52, (249,329,0): 77, 57, 48, (249,330,0): 69, 49, 42, (249,331,0): 64, 44, 37, (249,332,0): 62, 42, 35, (249,333,0): 62, 42, 35, (249,334,0): 60, 39, 34, (249,335,0): 59, 39, 32, (249,336,0): 62, 43, 36, (249,337,0): 62, 43, 36, (249,338,0): 63, 44, 37, (249,339,0): 65, 46, 39, (249,340,0): 65, 48, 40, (249,341,0): 62, 45, 37, (249,342,0): 55, 38, 30, (249,343,0): 50, 33, 25, (249,344,0): 53, 39, 30, (249,345,0): 51, 37, 28, (249,346,0): 50, 37, 28, (249,347,0): 52, 39, 30, (249,348,0): 57, 44, 35, (249,349,0): 62, 49, 40, (249,350,0): 63, 53, 43, (249,351,0): 63, 55, 44, (249,352,0): 63, 57, 43, (249,353,0): 67, 61, 47, (249,354,0): 71, 65, 51, (249,355,0): 73, 65, 52, (249,356,0): 75, 65, 53, (249,357,0): 76, 66, 54, (249,358,0): 78, 70, 57, (249,359,0): 81, 73, 60, (249,360,0): 84, 78, 64, (249,361,0): 84, 82, 67, (249,362,0): 89, 92, 75, (249,363,0): 95, 102, 84, (249,364,0): 103, 115, 95, (249,365,0): 110, 125, 104, (249,366,0): 115, 133, 111, (249,367,0): 119, 137, 115, (249,368,0): 120, 135, 114, (249,369,0): 118, 131, 111, (249,370,0): 115, 128, 110, (249,371,0): 112, 125, 107, (249,372,0): 112, 125, 108, (249,373,0): 114, 128, 113, (249,374,0): 117, 131, 116, (249,375,0): 118, 134, 121, (249,376,0): 120, 138, 126, (249,377,0): 123, 143, 131, (249,378,0): 128, 152, 139, (249,379,0): 133, 159, 148, (249,380,0): 135, 165, 153, (249,381,0): 139, 172, 161, (249,382,0): 144, 180, 168, (249,383,0): 147, 187, 178, (249,384,0): 154, 200, 198, (249,385,0): 157, 206, 210, (249,386,0): 164, 214, 221, (249,387,0): 169, 223, 233, (249,388,0): 172, 230, 242, (249,389,0): 178, 237, 251, (249,390,0): 182, 245, 255, (249,391,0): 186, 252, 255, (249,392,0): 183, 251, 255, (249,393,0): 182, 253, 255, (249,394,0): 183, 254, 255, (249,395,0): 181, 255, 255, (249,396,0): 180, 254, 255, (249,397,0): 179, 253, 255, (249,398,0): 178, 251, 255, (249,399,0): 179, 250, 255, (249,400,0): 181, 250, 255, (249,401,0): 181, 249, 252, (249,402,0): 182, 247, 253, (249,403,0): 185, 245, 255, (249,404,0): 187, 240, 255, (249,405,0): 181, 229, 251, (249,406,0): 170, 214, 239, (249,407,0): 162, 203, 231, (249,408,0): 153, 189, 221, (249,409,0): 145, 179, 214, (249,410,0): 134, 168, 203, (249,411,0): 127, 162, 194, (249,412,0): 127, 162, 194, (249,413,0): 131, 168, 197, (249,414,0): 135, 172, 201, (249,415,0): 137, 173, 205, (249,416,0): 140, 174, 211, (249,417,0): 139, 171, 210, (249,418,0): 137, 166, 206, (249,419,0): 133, 163, 201, (249,420,0): 129, 159, 195, (249,421,0): 123, 153, 187, (249,422,0): 117, 148, 179, (249,423,0): 112, 143, 172, (249,424,0): 103, 134, 162, (249,425,0): 105, 137, 162, (249,426,0): 111, 141, 167, (249,427,0): 116, 146, 172, (249,428,0): 121, 151, 175, (249,429,0): 125, 155, 179, (249,430,0): 127, 157, 181, (249,431,0): 131, 157, 180, (249,432,0): 140, 158, 182, (249,433,0): 138, 153, 176, (249,434,0): 132, 147, 170, (249,435,0): 127, 139, 161, (249,436,0): 120, 132, 154, (249,437,0): 115, 126, 146, (249,438,0): 114, 122, 141, (249,439,0): 113, 120, 138, (249,440,0): 112, 117, 136, (249,441,0): 111, 114, 131, (249,442,0): 109, 111, 126, (249,443,0): 109, 111, 124, (249,444,0): 114, 113, 127, (249,445,0): 116, 115, 129, (249,446,0): 117, 115, 129, (249,447,0): 115, 115, 127, (249,448,0): 112, 114, 126, (249,449,0): 110, 114, 125, (249,450,0): 110, 112, 124, (249,451,0): 107, 110, 119, (249,452,0): 106, 106, 116, (249,453,0): 102, 102, 112, (249,454,0): 99, 97, 108, (249,455,0): 98, 95, 104, (249,456,0): 95, 89, 99, (249,457,0): 94, 89, 96, (249,458,0): 92, 85, 93, (249,459,0): 90, 83, 91, (249,460,0): 90, 80, 89, (249,461,0): 90, 80, 88, (249,462,0): 91, 80, 88, (249,463,0): 90, 80, 89, (249,464,0): 86, 78, 89, (249,465,0): 85, 79, 91, (249,466,0): 85, 77, 90, (249,467,0): 83, 75, 88, (249,468,0): 81, 73, 84, (249,469,0): 78, 70, 81, (249,470,0): 78, 68, 79, (249,471,0): 76, 66, 77, (249,472,0): 70, 58, 68, (249,473,0): 69, 57, 67, (249,474,0): 68, 57, 65, (249,475,0): 68, 57, 65, (249,476,0): 69, 56, 65, (249,477,0): 70, 57, 66, (249,478,0): 71, 58, 65, (249,479,0): 71, 60, 66, (249,480,0): 71, 66, 72, (249,481,0): 71, 69, 74, (249,482,0): 73, 71, 76, (249,483,0): 78, 73, 80, (249,484,0): 81, 76, 83, (249,485,0): 84, 79, 86, (249,486,0): 86, 81, 88, (249,487,0): 87, 81, 91, (249,488,0): 90, 87, 96, (249,489,0): 94, 92, 103, (249,490,0): 100, 100, 110, (249,491,0): 103, 107, 116, (249,492,0): 106, 113, 121, (249,493,0): 111, 120, 129, (249,494,0): 116, 126, 135, (249,495,0): 119, 132, 141, (249,496,0): 127, 139, 155, (249,497,0): 128, 141, 160, (249,498,0): 133, 144, 166, (249,499,0): 136, 148, 170, (249,500,0): 141, 151, 176, (249,501,0): 143, 153, 178, (249,502,0): 144, 154, 181, (249,503,0): 144, 154, 181, (249,504,0): 138, 148, 173, (249,505,0): 130, 140, 165, (249,506,0): 122, 130, 151, (249,507,0): 115, 123, 142, (249,508,0): 115, 124, 139, (249,509,0): 118, 128, 140, (249,510,0): 120, 130, 140, (249,511,0): 118, 132, 143, (249,512,0): 119, 138, 153, (249,513,0): 122, 143, 160, (249,514,0): 124, 143, 160, (249,515,0): 119, 138, 155, (249,516,0): 117, 134, 150, (249,517,0): 117, 134, 150, (249,518,0): 113, 129, 145, (249,519,0): 106, 122, 138, (249,520,0): 108, 120, 136, (249,521,0): 107, 119, 135, (249,522,0): 107, 116, 131, (249,523,0): 107, 116, 131, (249,524,0): 109, 116, 132, (249,525,0): 111, 118, 134, (249,526,0): 113, 119, 133, (249,527,0): 114, 117, 132, (249,528,0): 117, 119, 132, (249,529,0): 116, 118, 130, (249,530,0): 117, 116, 130, (249,531,0): 113, 115, 128, (249,532,0): 112, 114, 129, (249,533,0): 110, 112, 127, (249,534,0): 109, 110, 128, (249,535,0): 108, 109, 127, (249,536,0): 114, 117, 136, (249,537,0): 119, 122, 141, (249,538,0): 127, 129, 150, (249,539,0): 134, 136, 157, (249,540,0): 138, 140, 161, (249,541,0): 138, 140, 163, (249,542,0): 134, 139, 161, (249,543,0): 132, 136, 161, (249,544,0): 124, 132, 155, (249,545,0): 119, 130, 152, (249,546,0): 117, 125, 148, (249,547,0): 116, 124, 145, (249,548,0): 115, 123, 144, (249,549,0): 113, 121, 140, (249,550,0): 110, 117, 136, (249,551,0): 106, 113, 131, (249,552,0): 97, 104, 120, (249,553,0): 92, 98, 112, (249,554,0): 83, 89, 103, (249,555,0): 76, 82, 94, (249,556,0): 76, 80, 92, (249,557,0): 79, 83, 94, (249,558,0): 85, 89, 100, (249,559,0): 89, 93, 104, (249,560,0): 93, 97, 109, (249,561,0): 92, 98, 110, (249,562,0): 94, 100, 114, (249,563,0): 97, 103, 117, (249,564,0): 100, 106, 120, (249,565,0): 102, 110, 123, (249,566,0): 104, 111, 127, (249,567,0): 105, 112, 128, (249,568,0): 108, 115, 133, (249,569,0): 107, 116, 133, (249,570,0): 107, 116, 133, (249,571,0): 106, 118, 134, (249,572,0): 105, 116, 134, (249,573,0): 105, 116, 134, (249,574,0): 104, 115, 133, (249,575,0): 103, 116, 133, (249,576,0): 101, 114, 131, (249,577,0): 101, 114, 131, (249,578,0): 101, 114, 131, (249,579,0): 101, 114, 131, (249,580,0): 102, 113, 131, (249,581,0): 102, 113, 131, (249,582,0): 102, 113, 131, (249,583,0): 102, 113, 131, (249,584,0): 103, 111, 130, (249,585,0): 102, 110, 129, (249,586,0): 101, 108, 127, (249,587,0): 99, 106, 125, (249,588,0): 97, 104, 123, (249,589,0): 95, 102, 121, (249,590,0): 95, 100, 120, (249,591,0): 96, 99, 118, (249,592,0): 96, 99, 114, (249,593,0): 92, 94, 107, (249,594,0): 88, 87, 101, (249,595,0): 84, 84, 96, (249,596,0): 83, 81, 92, (249,597,0): 82, 79, 88, (249,598,0): 80, 74, 84, (249,599,0): 77, 72, 79, (250,0,0): 48, 36, 46, (250,1,0): 48, 36, 46, (250,2,0): 49, 37, 47, (250,3,0): 49, 37, 47, (250,4,0): 50, 38, 48, (250,5,0): 50, 38, 48, (250,6,0): 52, 39, 49, (250,7,0): 52, 39, 49, (250,8,0): 53, 37, 48, (250,9,0): 53, 37, 48, (250,10,0): 54, 36, 48, (250,11,0): 54, 36, 48, (250,12,0): 54, 36, 48, (250,13,0): 54, 36, 48, (250,14,0): 54, 36, 48, (250,15,0): 54, 36, 48, (250,16,0): 54, 36, 50, (250,17,0): 55, 37, 53, (250,18,0): 56, 38, 54, (250,19,0): 57, 39, 53, (250,20,0): 58, 40, 54, (250,21,0): 59, 41, 53, (250,22,0): 60, 43, 53, (250,23,0): 60, 43, 53, (250,24,0): 61, 44, 52, (250,25,0): 62, 45, 53, (250,26,0): 63, 46, 52, (250,27,0): 64, 48, 51, (250,28,0): 65, 49, 52, (250,29,0): 65, 49, 50, (250,30,0): 64, 48, 49, (250,31,0): 65, 46, 50, (250,32,0): 67, 46, 53, (250,33,0): 68, 45, 53, (250,34,0): 68, 45, 53, (250,35,0): 68, 45, 53, (250,36,0): 68, 45, 51, (250,37,0): 68, 45, 51, (250,38,0): 70, 45, 51, (250,39,0): 70, 45, 51, (250,40,0): 74, 47, 52, (250,41,0): 74, 47, 52, (250,42,0): 77, 48, 52, (250,43,0): 77, 48, 52, (250,44,0): 78, 49, 53, (250,45,0): 78, 49, 53, (250,46,0): 79, 50, 52, (250,47,0): 79, 50, 52, (250,48,0): 83, 51, 56, (250,49,0): 83, 51, 56, (250,50,0): 83, 51, 56, (250,51,0): 83, 51, 56, (250,52,0): 83, 51, 56, (250,53,0): 83, 51, 56, (250,54,0): 83, 51, 56, (250,55,0): 83, 51, 56, (250,56,0): 82, 50, 55, (250,57,0): 82, 50, 55, (250,58,0): 82, 50, 55, (250,59,0): 82, 50, 55, (250,60,0): 83, 51, 56, (250,61,0): 85, 53, 58, (250,62,0): 87, 55, 60, (250,63,0): 88, 56, 59, (250,64,0): 91, 57, 56, (250,65,0): 91, 58, 53, (250,66,0): 93, 60, 55, (250,67,0): 94, 61, 52, (250,68,0): 97, 63, 53, (250,69,0): 98, 64, 52, (250,70,0): 99, 66, 49, (250,71,0): 102, 67, 48, (250,72,0): 102, 67, 48, (250,73,0): 104, 69, 49, (250,74,0): 107, 70, 51, (250,75,0): 108, 71, 52, (250,76,0): 108, 71, 52, (250,77,0): 108, 69, 52, (250,78,0): 106, 67, 50, (250,79,0): 103, 66, 48, (250,80,0): 106, 71, 52, (250,81,0): 104, 71, 52, (250,82,0): 104, 71, 52, (250,83,0): 104, 71, 52, (250,84,0): 104, 71, 52, (250,85,0): 104, 71, 52, (250,86,0): 104, 71, 52, (250,87,0): 104, 71, 52, (250,88,0): 102, 69, 50, (250,89,0): 102, 69, 50, (250,90,0): 102, 69, 50, (250,91,0): 102, 69, 50, (250,92,0): 101, 68, 49, (250,93,0): 100, 67, 48, (250,94,0): 98, 65, 46, (250,95,0): 97, 64, 45, (250,96,0): 97, 64, 49, (250,97,0): 97, 64, 49, (250,98,0): 97, 64, 49, (250,99,0): 97, 64, 49, (250,100,0): 97, 64, 49, (250,101,0): 97, 64, 49, (250,102,0): 97, 64, 49, (250,103,0): 97, 64, 49, (250,104,0): 96, 63, 48, (250,105,0): 96, 63, 48, (250,106,0): 96, 63, 48, (250,107,0): 95, 62, 47, (250,108,0): 95, 62, 47, (250,109,0): 95, 62, 47, (250,110,0): 94, 61, 46, (250,111,0): 94, 61, 44, (250,112,0): 94, 58, 42, (250,113,0): 94, 59, 40, (250,114,0): 92, 59, 40, (250,115,0): 92, 59, 40, (250,116,0): 92, 59, 40, (250,117,0): 92, 59, 40, (250,118,0): 92, 59, 40, (250,119,0): 91, 60, 40, (250,120,0): 93, 62, 42, (250,121,0): 91, 63, 42, (250,122,0): 91, 63, 42, (250,123,0): 90, 62, 41, (250,124,0): 89, 62, 41, (250,125,0): 88, 61, 40, (250,126,0): 88, 61, 40, (250,127,0): 88, 61, 40, (250,128,0): 87, 58, 40, (250,129,0): 87, 58, 40, (250,130,0): 87, 58, 40, (250,131,0): 87, 58, 40, (250,132,0): 87, 58, 40, (250,133,0): 87, 58, 40, (250,134,0): 87, 58, 40, (250,135,0): 87, 58, 40, (250,136,0): 85, 56, 38, (250,137,0): 85, 56, 38, (250,138,0): 84, 55, 37, (250,139,0): 83, 54, 36, (250,140,0): 82, 53, 35, (250,141,0): 81, 52, 34, (250,142,0): 80, 51, 33, (250,143,0): 80, 51, 33, (250,144,0): 85, 54, 36, (250,145,0): 85, 54, 36, (250,146,0): 85, 54, 36, (250,147,0): 85, 54, 36, (250,148,0): 86, 53, 36, (250,149,0): 86, 53, 36, (250,150,0): 88, 52, 36, (250,151,0): 88, 52, 36, (250,152,0): 90, 54, 38, (250,153,0): 90, 54, 38, (250,154,0): 90, 53, 37, (250,155,0): 89, 52, 36, (250,156,0): 89, 50, 35, (250,157,0): 88, 49, 34, (250,158,0): 87, 48, 33, (250,159,0): 86, 49, 33, (250,160,0): 87, 51, 35, (250,161,0): 87, 51, 35, (250,162,0): 87, 51, 35, (250,163,0): 86, 50, 34, (250,164,0): 86, 50, 34, (250,165,0): 85, 49, 33, (250,166,0): 85, 49, 33, (250,167,0): 84, 48, 32, (250,168,0): 88, 52, 36, (250,169,0): 87, 51, 35, (250,170,0): 86, 50, 34, (250,171,0): 85, 49, 33, (250,172,0): 83, 47, 31, (250,173,0): 81, 45, 29, (250,174,0): 80, 44, 28, (250,175,0): 78, 45, 30, (250,176,0): 79, 47, 34, (250,177,0): 78, 46, 33, (250,178,0): 77, 45, 34, (250,179,0): 75, 43, 30, (250,180,0): 74, 42, 31, (250,181,0): 72, 40, 27, (250,182,0): 71, 39, 28, (250,183,0): 71, 39, 26, (250,184,0): 71, 39, 28, (250,185,0): 70, 38, 25, (250,186,0): 70, 38, 27, (250,187,0): 70, 38, 25, (250,188,0): 69, 37, 26, (250,189,0): 69, 37, 24, (250,190,0): 68, 36, 25, (250,191,0): 68, 36, 23, (250,192,0): 70, 41, 27, (250,193,0): 70, 41, 25, (250,194,0): 71, 42, 26, (250,195,0): 74, 43, 25, (250,196,0): 76, 45, 27, (250,197,0): 80, 47, 30, (250,198,0): 83, 50, 33, (250,199,0): 86, 51, 32, (250,200,0): 90, 53, 35, (250,201,0): 92, 54, 35, (250,202,0): 95, 54, 36, (250,203,0): 95, 54, 36, (250,204,0): 94, 51, 34, (250,205,0): 91, 48, 29, (250,206,0): 88, 45, 26, (250,207,0): 85, 44, 22, (250,208,0): 81, 47, 20, (250,209,0): 82, 51, 22, (250,210,0): 87, 56, 28, (250,211,0): 88, 56, 31, (250,212,0): 85, 55, 31, (250,213,0): 84, 54, 30, (250,214,0): 84, 53, 32, (250,215,0): 85, 54, 33, (250,216,0): 81, 53, 29, (250,217,0): 85, 58, 31, (250,218,0): 89, 64, 33, (250,219,0): 93, 69, 33, (250,220,0): 96, 73, 32, (250,221,0): 103, 80, 38, (250,222,0): 113, 92, 45, (250,223,0): 121, 101, 50, (250,224,0): 136, 114, 54, (250,225,0): 142, 121, 56, (250,226,0): 150, 129, 64, (250,227,0): 156, 135, 70, (250,228,0): 158, 137, 72, (250,229,0): 159, 138, 73, (250,230,0): 161, 140, 75, (250,231,0): 162, 141, 74, (250,232,0): 160, 139, 72, (250,233,0): 158, 137, 70, (250,234,0): 155, 134, 67, (250,235,0): 153, 132, 65, (250,236,0): 153, 132, 65, (250,237,0): 156, 135, 68, (250,238,0): 160, 139, 72, (250,239,0): 162, 143, 75, (250,240,0): 168, 155, 87, (250,241,0): 167, 159, 87, (250,242,0): 170, 160, 88, (250,243,0): 174, 165, 90, (250,244,0): 178, 169, 92, (250,245,0): 185, 174, 94, (250,246,0): 190, 178, 96, (250,247,0): 193, 181, 97, (250,248,0): 201, 186, 101, (250,249,0): 202, 186, 101, (250,250,0): 202, 184, 100, (250,251,0): 201, 183, 99, (250,252,0): 201, 180, 97, (250,253,0): 200, 179, 96, (250,254,0): 199, 178, 97, (250,255,0): 198, 177, 96, (250,256,0): 191, 170, 91, (250,257,0): 188, 169, 90, (250,258,0): 188, 167, 88, (250,259,0): 182, 163, 86, (250,260,0): 176, 157, 81, (250,261,0): 170, 150, 77, (250,262,0): 163, 145, 73, (250,263,0): 158, 141, 69, (250,264,0): 159, 145, 74, (250,265,0): 159, 149, 78, (250,266,0): 160, 153, 83, (250,267,0): 158, 155, 84, (250,268,0): 158, 160, 87, (250,269,0): 164, 168, 94, (250,270,0): 173, 181, 106, (250,271,0): 182, 190, 113, (250,272,0): 189, 196, 116, (250,273,0): 194, 199, 117, (250,274,0): 195, 202, 122, (250,275,0): 196, 205, 124, (250,276,0): 194, 205, 126, (250,277,0): 191, 204, 124, (250,278,0): 187, 200, 121, (250,279,0): 186, 197, 119, (250,280,0): 182, 193, 117, (250,281,0): 177, 187, 114, (250,282,0): 171, 178, 108, (250,283,0): 162, 172, 101, (250,284,0): 158, 168, 99, (250,285,0): 157, 168, 99, (250,286,0): 154, 170, 99, (250,287,0): 155, 170, 101, (250,288,0): 162, 179, 109, (250,289,0): 163, 183, 112, (250,290,0): 168, 190, 118, (250,291,0): 174, 198, 124, (250,292,0): 179, 205, 131, (250,293,0): 184, 215, 137, (250,294,0): 191, 224, 143, (250,295,0): 196, 230, 144, (250,296,0): 207, 241, 154, (250,297,0): 212, 245, 154, (250,298,0): 219, 250, 157, (250,299,0): 226, 253, 160, (250,300,0): 228, 253, 159, (250,301,0): 232, 253, 158, (250,302,0): 234, 254, 157, (250,303,0): 238, 255, 157, (250,304,0): 247, 255, 161, (250,305,0): 246, 255, 155, (250,306,0): 246, 254, 151, (250,307,0): 246, 255, 150, (250,308,0): 248, 255, 149, (250,309,0): 247, 254, 148, (250,310,0): 245, 250, 147, (250,311,0): 245, 247, 146, (250,312,0): 240, 237, 142, (250,313,0): 222, 216, 128, (250,314,0): 198, 189, 112, (250,315,0): 177, 167, 98, (250,316,0): 161, 146, 89, (250,317,0): 146, 130, 79, (250,318,0): 138, 119, 76, (250,319,0): 135, 117, 79, (250,320,0): 128, 109, 77, (250,321,0): 117, 100, 72, (250,322,0): 105, 88, 62, (250,323,0): 95, 77, 53, (250,324,0): 89, 71, 51, (250,325,0): 85, 66, 49, (250,326,0): 82, 63, 48, (250,327,0): 80, 61, 47, (250,328,0): 82, 62, 51, (250,329,0): 77, 57, 48, (250,330,0): 69, 49, 42, (250,331,0): 64, 44, 37, (250,332,0): 63, 43, 36, (250,333,0): 62, 42, 35, (250,334,0): 61, 41, 34, (250,335,0): 60, 40, 33, (250,336,0): 61, 42, 35, (250,337,0): 62, 44, 34, (250,338,0): 65, 47, 37, (250,339,0): 68, 50, 40, (250,340,0): 69, 52, 42, (250,341,0): 65, 48, 38, (250,342,0): 58, 41, 31, (250,343,0): 52, 35, 25, (250,344,0): 54, 40, 29, (250,345,0): 54, 40, 29, (250,346,0): 53, 41, 29, (250,347,0): 53, 41, 29, (250,348,0): 55, 43, 31, (250,349,0): 60, 48, 36, (250,350,0): 65, 55, 43, (250,351,0): 69, 61, 48, (250,352,0): 71, 68, 53, (250,353,0): 74, 71, 56, (250,354,0): 81, 75, 61, (250,355,0): 82, 76, 62, (250,356,0): 83, 75, 62, (250,357,0): 82, 74, 61, (250,358,0): 85, 75, 63, (250,359,0): 86, 78, 65, (250,360,0): 91, 85, 71, (250,361,0): 91, 89, 74, (250,362,0): 95, 98, 81, (250,363,0): 101, 108, 90, (250,364,0): 107, 120, 100, (250,365,0): 115, 130, 109, (250,366,0): 119, 138, 116, (250,367,0): 123, 142, 120, (250,368,0): 124, 141, 122, (250,369,0): 124, 139, 120, (250,370,0): 121, 135, 118, (250,371,0): 118, 132, 115, (250,372,0): 118, 132, 117, (250,373,0): 121, 135, 120, (250,374,0): 124, 138, 125, (250,375,0): 124, 140, 129, (250,376,0): 120, 138, 126, (250,377,0): 122, 144, 132, (250,378,0): 126, 152, 141, (250,379,0): 132, 160, 148, (250,380,0): 135, 167, 156, (250,381,0): 140, 173, 164, (250,382,0): 146, 182, 172, (250,383,0): 148, 188, 180, (250,384,0): 152, 198, 196, (250,385,0): 154, 203, 207, (250,386,0): 161, 211, 220, (250,387,0): 167, 219, 232, (250,388,0): 171, 227, 242, (250,389,0): 177, 234, 251, (250,390,0): 182, 243, 255, (250,391,0): 185, 251, 255, (250,392,0): 185, 253, 255, (250,393,0): 183, 253, 255, (250,394,0): 181, 251, 255, (250,395,0): 179, 250, 255, (250,396,0): 178, 248, 255, (250,397,0): 177, 247, 255, (250,398,0): 176, 246, 255, (250,399,0): 177, 245, 255, (250,400,0): 182, 249, 255, (250,401,0): 181, 244, 253, (250,402,0): 182, 240, 252, (250,403,0): 185, 238, 254, (250,404,0): 187, 234, 254, (250,405,0): 176, 218, 242, (250,406,0): 157, 194, 221, (250,407,0): 142, 175, 206, (250,408,0): 135, 164, 198, (250,409,0): 131, 160, 194, (250,410,0): 126, 156, 190, (250,411,0): 125, 156, 187, (250,412,0): 126, 160, 188, (250,413,0): 129, 165, 191, (250,414,0): 132, 169, 195, (250,415,0): 135, 170, 198, (250,416,0): 134, 164, 202, (250,417,0): 135, 163, 203, (250,418,0): 133, 161, 200, (250,419,0): 128, 156, 193, (250,420,0): 121, 150, 184, (250,421,0): 114, 143, 175, (250,422,0): 110, 139, 169, (250,423,0): 109, 139, 167, (250,424,0): 101, 131, 159, (250,425,0): 104, 134, 160, (250,426,0): 111, 138, 165, (250,427,0): 117, 145, 169, (250,428,0): 123, 150, 177, (250,429,0): 127, 154, 181, (250,430,0): 130, 157, 184, (250,431,0): 133, 157, 183, (250,432,0): 139, 155, 180, (250,433,0): 138, 150, 172, (250,434,0): 130, 142, 164, (250,435,0): 123, 134, 154, (250,436,0): 116, 127, 147, (250,437,0): 114, 122, 141, (250,438,0): 112, 120, 139, (250,439,0): 112, 119, 137, (250,440,0): 111, 117, 133, (250,441,0): 111, 114, 129, (250,442,0): 110, 112, 127, (250,443,0): 110, 112, 125, (250,444,0): 113, 112, 126, (250,445,0): 115, 115, 127, (250,446,0): 115, 113, 126, (250,447,0): 113, 113, 123, (250,448,0): 112, 115, 124, (250,449,0): 111, 114, 123, (250,450,0): 109, 112, 121, (250,451,0): 106, 109, 116, (250,452,0): 104, 104, 112, (250,453,0): 99, 99, 107, (250,454,0): 96, 95, 103, (250,455,0): 95, 92, 99, (250,456,0): 92, 87, 94, (250,457,0): 91, 86, 92, (250,458,0): 90, 83, 90, (250,459,0): 91, 81, 89, (250,460,0): 91, 80, 88, (250,461,0): 91, 80, 86, (250,462,0): 92, 81, 87, (250,463,0): 91, 81, 89, (250,464,0): 89, 81, 92, (250,465,0): 88, 82, 94, (250,466,0): 87, 81, 93, (250,467,0): 85, 79, 91, (250,468,0): 83, 75, 86, (250,469,0): 79, 71, 82, (250,470,0): 76, 68, 79, (250,471,0): 74, 66, 77, (250,472,0): 70, 60, 69, (250,473,0): 69, 59, 68, (250,474,0): 69, 58, 66, (250,475,0): 68, 57, 65, (250,476,0): 68, 57, 65, (250,477,0): 68, 57, 65, (250,478,0): 70, 57, 64, (250,479,0): 70, 59, 65, (250,480,0): 71, 65, 69, (250,481,0): 71, 66, 70, (250,482,0): 73, 68, 72, (250,483,0): 76, 69, 76, (250,484,0): 79, 72, 79, (250,485,0): 81, 74, 81, (250,486,0): 83, 76, 83, (250,487,0): 83, 78, 85, (250,488,0): 85, 80, 87, (250,489,0): 88, 85, 94, (250,490,0): 93, 93, 101, (250,491,0): 98, 101, 108, (250,492,0): 103, 108, 114, (250,493,0): 106, 115, 122, (250,494,0): 114, 123, 130, (250,495,0): 118, 128, 138, (250,496,0): 127, 136, 153, (250,497,0): 128, 139, 157, (250,498,0): 135, 143, 164, (250,499,0): 137, 148, 168, (250,500,0): 141, 149, 172, (250,501,0): 140, 151, 173, (250,502,0): 139, 150, 172, (250,503,0): 137, 148, 170, (250,504,0): 128, 139, 161, (250,505,0): 122, 133, 153, (250,506,0): 115, 126, 146, (250,507,0): 111, 122, 140, (250,508,0): 112, 124, 138, (250,509,0): 116, 128, 140, (250,510,0): 119, 131, 143, (250,511,0): 119, 133, 146, (250,512,0): 125, 144, 159, (250,513,0): 126, 147, 166, (250,514,0): 127, 146, 163, (250,515,0): 122, 141, 158, (250,516,0): 120, 137, 155, (250,517,0): 118, 135, 153, (250,518,0): 114, 130, 146, (250,519,0): 108, 124, 140, (250,520,0): 109, 121, 137, (250,521,0): 109, 121, 137, (250,522,0): 111, 120, 137, (250,523,0): 110, 119, 136, (250,524,0): 109, 116, 132, (250,525,0): 109, 116, 132, (250,526,0): 112, 118, 134, (250,527,0): 114, 120, 134, (250,528,0): 117, 121, 133, (250,529,0): 116, 120, 132, (250,530,0): 116, 118, 131, (250,531,0): 113, 117, 129, (250,532,0): 112, 115, 130, (250,533,0): 110, 113, 128, (250,534,0): 109, 112, 127, (250,535,0): 108, 111, 126, (250,536,0): 114, 117, 134, (250,537,0): 118, 121, 138, (250,538,0): 124, 127, 146, (250,539,0): 129, 132, 151, (250,540,0): 132, 135, 154, (250,541,0): 132, 134, 155, (250,542,0): 130, 132, 153, (250,543,0): 126, 131, 153, (250,544,0): 121, 127, 149, (250,545,0): 118, 126, 147, (250,546,0): 118, 124, 146, (250,547,0): 117, 124, 143, (250,548,0): 115, 122, 141, (250,549,0): 112, 119, 137, (250,550,0): 107, 112, 131, (250,551,0): 103, 109, 125, (250,552,0): 87, 93, 107, (250,553,0): 83, 87, 99, (250,554,0): 75, 79, 91, (250,555,0): 69, 73, 84, (250,556,0): 68, 70, 82, (250,557,0): 70, 73, 82, (250,558,0): 75, 78, 87, (250,559,0): 78, 81, 90, (250,560,0): 87, 89, 101, (250,561,0): 89, 93, 105, (250,562,0): 94, 98, 110, (250,563,0): 99, 103, 115, (250,564,0): 104, 107, 122, (250,565,0): 104, 110, 124, (250,566,0): 106, 112, 126, (250,567,0): 105, 113, 126, (250,568,0): 107, 114, 130, (250,569,0): 107, 114, 130, (250,570,0): 107, 114, 132, (250,571,0): 106, 115, 132, (250,572,0): 106, 115, 132, (250,573,0): 106, 115, 132, (250,574,0): 106, 114, 133, (250,575,0): 104, 115, 133, (250,576,0): 102, 113, 131, (250,577,0): 102, 113, 131, (250,578,0): 102, 113, 131, (250,579,0): 102, 113, 131, (250,580,0): 104, 112, 131, (250,581,0): 104, 112, 131, (250,582,0): 104, 112, 131, (250,583,0): 104, 112, 131, (250,584,0): 104, 111, 130, (250,585,0): 103, 110, 129, (250,586,0): 103, 108, 128, (250,587,0): 101, 106, 126, (250,588,0): 99, 104, 124, (250,589,0): 97, 102, 122, (250,590,0): 97, 99, 120, (250,591,0): 96, 99, 118, (250,592,0): 94, 97, 114, (250,593,0): 90, 94, 106, (250,594,0): 86, 88, 101, (250,595,0): 85, 85, 97, (250,596,0): 85, 83, 94, (250,597,0): 83, 82, 90, (250,598,0): 81, 78, 87, (250,599,0): 78, 75, 84, (251,0,0): 48, 36, 46, (251,1,0): 48, 36, 46, (251,2,0): 49, 37, 47, (251,3,0): 49, 37, 47, (251,4,0): 50, 38, 48, (251,5,0): 50, 38, 48, (251,6,0): 52, 39, 49, (251,7,0): 52, 39, 49, (251,8,0): 53, 37, 48, (251,9,0): 53, 37, 48, (251,10,0): 54, 36, 48, (251,11,0): 54, 36, 48, (251,12,0): 54, 36, 48, (251,13,0): 54, 36, 48, (251,14,0): 54, 36, 48, (251,15,0): 54, 36, 50, (251,16,0): 55, 37, 53, (251,17,0): 55, 37, 53, (251,18,0): 56, 38, 54, (251,19,0): 57, 39, 55, (251,20,0): 58, 40, 54, (251,21,0): 59, 41, 55, (251,22,0): 60, 42, 54, (251,23,0): 60, 43, 53, (251,24,0): 61, 44, 52, (251,25,0): 62, 45, 51, (251,26,0): 63, 46, 52, (251,27,0): 65, 49, 52, (251,28,0): 65, 49, 50, (251,29,0): 65, 49, 50, (251,30,0): 64, 48, 49, (251,31,0): 66, 47, 49, (251,32,0): 67, 46, 51, (251,33,0): 68, 45, 53, (251,34,0): 68, 45, 53, (251,35,0): 68, 45, 53, (251,36,0): 68, 45, 51, (251,37,0): 68, 45, 51, (251,38,0): 70, 45, 51, (251,39,0): 70, 45, 51, (251,40,0): 74, 47, 52, (251,41,0): 74, 47, 52, (251,42,0): 77, 48, 52, (251,43,0): 77, 48, 52, (251,44,0): 78, 49, 53, (251,45,0): 78, 49, 53, (251,46,0): 79, 50, 52, (251,47,0): 80, 50, 52, (251,48,0): 83, 51, 56, (251,49,0): 83, 51, 56, (251,50,0): 83, 51, 56, (251,51,0): 83, 51, 56, (251,52,0): 83, 51, 56, (251,53,0): 83, 51, 56, (251,54,0): 83, 51, 56, (251,55,0): 83, 51, 56, (251,56,0): 83, 51, 56, (251,57,0): 83, 51, 56, (251,58,0): 83, 51, 56, (251,59,0): 84, 52, 57, (251,60,0): 85, 53, 58, (251,61,0): 86, 54, 59, (251,62,0): 87, 55, 60, (251,63,0): 88, 56, 59, (251,64,0): 90, 59, 56, (251,65,0): 90, 60, 52, (251,66,0): 94, 61, 54, (251,67,0): 95, 62, 53, (251,68,0): 97, 65, 54, (251,69,0): 99, 66, 51, (251,70,0): 100, 67, 50, (251,71,0): 101, 69, 48, (251,72,0): 102, 70, 49, (251,73,0): 105, 70, 48, (251,74,0): 106, 71, 49, (251,75,0): 108, 72, 50, (251,76,0): 108, 71, 52, (251,77,0): 107, 70, 51, (251,78,0): 106, 69, 51, (251,79,0): 105, 68, 50, (251,80,0): 107, 72, 53, (251,81,0): 105, 72, 53, (251,82,0): 105, 72, 53, (251,83,0): 105, 72, 53, (251,84,0): 105, 72, 53, (251,85,0): 105, 72, 53, (251,86,0): 105, 72, 53, (251,87,0): 105, 72, 53, (251,88,0): 102, 69, 50, (251,89,0): 102, 69, 50, (251,90,0): 103, 70, 51, (251,91,0): 103, 70, 51, (251,92,0): 102, 69, 50, (251,93,0): 101, 68, 49, (251,94,0): 99, 66, 47, (251,95,0): 98, 65, 48, (251,96,0): 98, 65, 50, (251,97,0): 98, 65, 50, (251,98,0): 98, 65, 50, (251,99,0): 97, 64, 49, (251,100,0): 97, 64, 49, (251,101,0): 97, 64, 49, (251,102,0): 96, 63, 48, (251,103,0): 96, 63, 48, (251,104,0): 96, 63, 48, (251,105,0): 96, 63, 48, (251,106,0): 96, 63, 48, (251,107,0): 96, 63, 48, (251,108,0): 96, 63, 48, (251,109,0): 95, 62, 47, (251,110,0): 95, 62, 47, (251,111,0): 95, 62, 45, (251,112,0): 96, 60, 44, (251,113,0): 96, 61, 42, (251,114,0): 94, 61, 42, (251,115,0): 94, 61, 42, (251,116,0): 94, 61, 42, (251,117,0): 94, 61, 42, (251,118,0): 93, 62, 42, (251,119,0): 93, 62, 42, (251,120,0): 92, 64, 43, (251,121,0): 92, 64, 43, (251,122,0): 92, 64, 43, (251,123,0): 91, 63, 42, (251,124,0): 90, 63, 42, (251,125,0): 89, 62, 41, (251,126,0): 89, 62, 41, (251,127,0): 89, 62, 41, (251,128,0): 88, 59, 41, (251,129,0): 88, 59, 41, (251,130,0): 88, 59, 41, (251,131,0): 88, 59, 41, (251,132,0): 88, 59, 41, (251,133,0): 88, 59, 41, (251,134,0): 88, 59, 41, (251,135,0): 88, 59, 41, (251,136,0): 85, 56, 38, (251,137,0): 85, 56, 38, (251,138,0): 84, 55, 37, (251,139,0): 84, 55, 37, (251,140,0): 83, 54, 36, (251,141,0): 82, 53, 35, (251,142,0): 82, 53, 35, (251,143,0): 82, 53, 35, (251,144,0): 87, 56, 38, (251,145,0): 87, 56, 38, (251,146,0): 87, 56, 38, (251,147,0): 87, 56, 38, (251,148,0): 88, 55, 38, (251,149,0): 88, 55, 38, (251,150,0): 90, 54, 38, (251,151,0): 90, 54, 38, (251,152,0): 90, 54, 38, (251,153,0): 90, 54, 38, (251,154,0): 90, 53, 37, (251,155,0): 90, 53, 37, (251,156,0): 90, 51, 36, (251,157,0): 89, 50, 35, (251,158,0): 89, 50, 35, (251,159,0): 89, 50, 35, (251,160,0): 90, 53, 37, (251,161,0): 89, 53, 37, (251,162,0): 89, 53, 37, (251,163,0): 88, 52, 36, (251,164,0): 88, 52, 36, (251,165,0): 87, 51, 35, (251,166,0): 87, 51, 35, (251,167,0): 87, 51, 35, (251,168,0): 87, 51, 35, (251,169,0): 87, 51, 35, (251,170,0): 86, 50, 34, (251,171,0): 85, 49, 33, (251,172,0): 84, 48, 32, (251,173,0): 82, 46, 30, (251,174,0): 81, 45, 29, (251,175,0): 81, 45, 29, (251,176,0): 80, 47, 32, (251,177,0): 79, 47, 32, (251,178,0): 78, 46, 33, (251,179,0): 77, 45, 30, (251,180,0): 76, 44, 31, (251,181,0): 74, 42, 27, (251,182,0): 73, 41, 28, (251,183,0): 73, 41, 26, (251,184,0): 73, 41, 28, (251,185,0): 73, 41, 26, (251,186,0): 72, 40, 27, (251,187,0): 72, 40, 25, (251,188,0): 72, 40, 27, (251,189,0): 72, 40, 25, (251,190,0): 72, 40, 27, (251,191,0): 72, 40, 25, (251,192,0): 78, 45, 30, (251,193,0): 78, 45, 28, (251,194,0): 79, 46, 29, (251,195,0): 81, 48, 31, (251,196,0): 84, 48, 32, (251,197,0): 86, 51, 32, (251,198,0): 88, 53, 34, (251,199,0): 90, 53, 34, (251,200,0): 93, 55, 36, (251,201,0): 93, 55, 36, (251,202,0): 96, 55, 37, (251,203,0): 95, 54, 34, (251,204,0): 94, 51, 32, (251,205,0): 92, 49, 30, (251,206,0): 89, 46, 27, (251,207,0): 87, 46, 24, (251,208,0): 84, 50, 23, (251,209,0): 85, 54, 25, (251,210,0): 88, 57, 29, (251,211,0): 88, 57, 29, (251,212,0): 85, 55, 31, (251,213,0): 84, 54, 30, (251,214,0): 86, 55, 34, (251,215,0): 88, 58, 34, (251,216,0): 86, 59, 32, (251,217,0): 93, 66, 36, (251,218,0): 99, 75, 39, (251,219,0): 104, 81, 40, (251,220,0): 107, 84, 40, (251,221,0): 114, 92, 43, (251,222,0): 126, 106, 53, (251,223,0): 136, 117, 58, (251,224,0): 149, 128, 61, (251,225,0): 154, 134, 63, (251,226,0): 160, 140, 69, (251,227,0): 163, 143, 72, (251,228,0): 163, 143, 74, (251,229,0): 163, 143, 74, (251,230,0): 164, 144, 75, (251,231,0): 165, 145, 76, (251,232,0): 161, 141, 72, (251,233,0): 160, 140, 71, (251,234,0): 160, 140, 71, (251,235,0): 160, 140, 71, (251,236,0): 161, 141, 72, (251,237,0): 164, 144, 75, (251,238,0): 167, 147, 78, (251,239,0): 167, 150, 80, (251,240,0): 172, 162, 91, (251,241,0): 172, 164, 92, (251,242,0): 175, 167, 94, (251,243,0): 179, 172, 94, (251,244,0): 184, 175, 96, (251,245,0): 188, 180, 99, (251,246,0): 194, 184, 99, (251,247,0): 196, 184, 98, (251,248,0): 204, 189, 104, (251,249,0): 202, 188, 100, (251,250,0): 203, 185, 99, (251,251,0): 200, 182, 96, (251,252,0): 200, 180, 94, (251,253,0): 199, 178, 95, (251,254,0): 198, 177, 94, (251,255,0): 198, 177, 96, (251,256,0): 192, 174, 92, (251,257,0): 191, 174, 94, (251,258,0): 192, 173, 94, (251,259,0): 190, 171, 92, (251,260,0): 186, 167, 90, (251,261,0): 179, 162, 84, (251,262,0): 173, 155, 79, (251,263,0): 169, 153, 78, (251,264,0): 166, 152, 79, (251,265,0): 166, 157, 82, (251,266,0): 166, 160, 86, (251,267,0): 165, 161, 88, (251,268,0): 165, 165, 91, (251,269,0): 170, 172, 99, (251,270,0): 177, 183, 109, (251,271,0): 184, 191, 114, (251,272,0): 193, 198, 118, (251,273,0): 193, 201, 118, (251,274,0): 195, 204, 121, (251,275,0): 195, 207, 125, (251,276,0): 193, 206, 124, (251,277,0): 191, 204, 124, (251,278,0): 187, 200, 121, (251,279,0): 185, 196, 118, (251,280,0): 185, 193, 118, (251,281,0): 180, 186, 114, (251,282,0): 170, 176, 106, (251,283,0): 162, 168, 98, (251,284,0): 158, 165, 97, (251,285,0): 154, 164, 95, (251,286,0): 152, 163, 95, (251,287,0): 151, 164, 95, (251,288,0): 149, 164, 95, (251,289,0): 155, 170, 101, (251,290,0): 158, 178, 107, (251,291,0): 163, 185, 113, (251,292,0): 166, 189, 117, (251,293,0): 170, 196, 123, (251,294,0): 174, 204, 130, (251,295,0): 180, 211, 135, (251,296,0): 188, 220, 144, (251,297,0): 196, 229, 148, (251,298,0): 206, 238, 155, (251,299,0): 212, 241, 157, (251,300,0): 214, 242, 157, (251,301,0): 218, 244, 157, (251,302,0): 224, 250, 161, (251,303,0): 231, 255, 164, (251,304,0): 230, 251, 156, (251,305,0): 230, 250, 151, (251,306,0): 232, 250, 148, (251,307,0): 232, 251, 146, (251,308,0): 234, 251, 145, (251,309,0): 237, 253, 146, (251,310,0): 239, 252, 146, (251,311,0): 241, 252, 147, (251,312,0): 242, 248, 148, (251,313,0): 232, 236, 142, (251,314,0): 218, 217, 134, (251,315,0): 205, 201, 127, (251,316,0): 190, 182, 117, (251,317,0): 171, 162, 103, (251,318,0): 153, 141, 89, (251,319,0): 141, 128, 83, (251,320,0): 133, 117, 81, (251,321,0): 123, 106, 76, (251,322,0): 110, 93, 65, (251,323,0): 97, 80, 54, (251,324,0): 90, 72, 50, (251,325,0): 85, 66, 49, (251,326,0): 81, 62, 47, (251,327,0): 79, 59, 48, (251,328,0): 82, 62, 53, (251,329,0): 76, 56, 47, (251,330,0): 69, 49, 42, (251,331,0): 64, 44, 37, (251,332,0): 63, 43, 36, (251,333,0): 63, 43, 36, (251,334,0): 62, 42, 35, (251,335,0): 61, 41, 34, (251,336,0): 61, 43, 33, (251,337,0): 62, 44, 34, (251,338,0): 66, 48, 38, (251,339,0): 70, 52, 42, (251,340,0): 71, 54, 44, (251,341,0): 68, 51, 41, (251,342,0): 61, 44, 34, (251,343,0): 55, 38, 28, (251,344,0): 53, 39, 28, (251,345,0): 56, 42, 31, (251,346,0): 58, 46, 34, (251,347,0): 58, 46, 34, (251,348,0): 59, 47, 35, (251,349,0): 62, 50, 38, (251,350,0): 66, 56, 44, (251,351,0): 70, 62, 49, (251,352,0): 76, 73, 58, (251,353,0): 80, 78, 63, (251,354,0): 87, 84, 69, (251,355,0): 92, 86, 72, (251,356,0): 92, 84, 71, (251,357,0): 92, 84, 71, (251,358,0): 93, 83, 71, (251,359,0): 94, 86, 73, (251,360,0): 95, 89, 75, (251,361,0): 96, 94, 79, (251,362,0): 99, 102, 85, (251,363,0): 105, 112, 94, (251,364,0): 110, 123, 103, (251,365,0): 115, 133, 111, (251,366,0): 119, 141, 118, (251,367,0): 122, 144, 121, (251,368,0): 126, 145, 125, (251,369,0): 125, 142, 124, (251,370,0): 124, 138, 121, (251,371,0): 122, 136, 119, (251,372,0): 122, 136, 121, (251,373,0): 122, 138, 125, (251,374,0): 125, 141, 130, (251,375,0): 126, 144, 132, (251,376,0): 121, 141, 130, (251,377,0): 125, 146, 137, (251,378,0): 128, 154, 143, (251,379,0): 131, 161, 151, (251,380,0): 135, 166, 158, (251,381,0): 137, 173, 163, (251,382,0): 143, 181, 170, (251,383,0): 145, 186, 178, (251,384,0): 150, 194, 193, (251,385,0): 152, 200, 204, (251,386,0): 159, 207, 217, (251,387,0): 165, 214, 228, (251,388,0): 169, 222, 238, (251,389,0): 174, 231, 250, (251,390,0): 180, 241, 255, (251,391,0): 185, 248, 255, (251,392,0): 186, 252, 255, (251,393,0): 183, 251, 255, (251,394,0): 179, 247, 255, (251,395,0): 175, 245, 255, (251,396,0): 174, 242, 255, (251,397,0): 173, 241, 254, (251,398,0): 173, 240, 255, (251,399,0): 174, 240, 255, (251,400,0): 181, 240, 255, (251,401,0): 182, 238, 255, (251,402,0): 184, 235, 254, (251,403,0): 184, 231, 251, (251,404,0): 178, 218, 243, (251,405,0): 163, 199, 225, (251,406,0): 143, 174, 203, (251,407,0): 129, 156, 186, (251,408,0): 124, 149, 180, (251,409,0): 124, 149, 180, (251,410,0): 125, 152, 182, (251,411,0): 127, 157, 185, (251,412,0): 129, 160, 188, (251,413,0): 130, 164, 191, (251,414,0): 131, 167, 191, (251,415,0): 133, 167, 195, (251,416,0): 128, 156, 193, (251,417,0): 131, 156, 196, (251,418,0): 131, 155, 193, (251,419,0): 124, 150, 185, (251,420,0): 117, 141, 175, (251,421,0): 110, 137, 167, (251,422,0): 109, 134, 164, (251,423,0): 109, 136, 163, (251,424,0): 104, 131, 158, (251,425,0): 107, 134, 161, (251,426,0): 111, 139, 163, (251,427,0): 116, 143, 170, (251,428,0): 121, 148, 175, (251,429,0): 125, 152, 181, (251,430,0): 127, 154, 183, (251,431,0): 130, 154, 182, (251,432,0): 136, 152, 177, (251,433,0): 134, 147, 166, (251,434,0): 127, 138, 158, (251,435,0): 118, 129, 147, (251,436,0): 114, 122, 141, (251,437,0): 111, 120, 137, (251,438,0): 111, 118, 136, (251,439,0): 111, 118, 134, (251,440,0): 111, 117, 131, (251,441,0): 112, 116, 128, (251,442,0): 112, 114, 127, (251,443,0): 111, 113, 125, (251,444,0): 113, 113, 125, (251,445,0): 113, 113, 123, (251,446,0): 113, 111, 122, (251,447,0): 111, 111, 121, (251,448,0): 112, 115, 124, (251,449,0): 111, 114, 121, (251,450,0): 109, 112, 119, (251,451,0): 105, 108, 115, (251,452,0): 102, 102, 110, (251,453,0): 97, 98, 103, (251,454,0): 94, 93, 99, (251,455,0): 92, 90, 95, (251,456,0): 89, 84, 90, (251,457,0): 88, 83, 89, (251,458,0): 88, 81, 88, (251,459,0): 89, 80, 85, (251,460,0): 90, 79, 85, (251,461,0): 91, 80, 86, (251,462,0): 92, 81, 87, (251,463,0): 92, 82, 90, (251,464,0): 91, 85, 95, (251,465,0): 91, 85, 97, (251,466,0): 91, 85, 97, (251,467,0): 89, 83, 95, (251,468,0): 85, 79, 89, (251,469,0): 81, 73, 84, (251,470,0): 77, 69, 80, (251,471,0): 74, 66, 77, (251,472,0): 71, 61, 70, (251,473,0): 70, 60, 69, (251,474,0): 69, 59, 67, (251,475,0): 69, 58, 66, (251,476,0): 68, 57, 65, (251,477,0): 69, 58, 66, (251,478,0): 70, 59, 65, (251,479,0): 70, 59, 65, (251,480,0): 70, 64, 68, (251,481,0): 70, 65, 69, (251,482,0): 72, 66, 70, (251,483,0): 74, 68, 72, (251,484,0): 78, 68, 76, (251,485,0): 80, 70, 78, (251,486,0): 81, 71, 79, (251,487,0): 80, 73, 80, (251,488,0): 81, 74, 82, (251,489,0): 83, 80, 87, (251,490,0): 89, 88, 96, (251,491,0): 93, 96, 103, (251,492,0): 99, 104, 110, (251,493,0): 105, 112, 118, (251,494,0): 113, 120, 128, (251,495,0): 119, 128, 137, (251,496,0): 127, 134, 150, (251,497,0): 129, 137, 156, (251,498,0): 134, 142, 161, (251,499,0): 138, 146, 165, (251,500,0): 139, 147, 166, (251,501,0): 137, 145, 164, (251,502,0): 132, 143, 161, (251,503,0): 130, 141, 159, (251,504,0): 120, 131, 149, (251,505,0): 117, 128, 146, (251,506,0): 115, 126, 144, (251,507,0): 113, 126, 142, (251,508,0): 115, 128, 144, (251,509,0): 119, 133, 146, (251,510,0): 123, 137, 150, (251,511,0): 123, 139, 154, (251,512,0): 130, 149, 166, (251,513,0): 129, 150, 169, (251,514,0): 129, 148, 165, (251,515,0): 125, 144, 161, (251,516,0): 122, 139, 157, (251,517,0): 119, 136, 154, (251,518,0): 115, 131, 147, (251,519,0): 112, 128, 144, (251,520,0): 111, 122, 140, (251,521,0): 112, 124, 140, (251,522,0): 115, 124, 141, (251,523,0): 112, 121, 138, (251,524,0): 109, 116, 132, (251,525,0): 108, 115, 131, (251,526,0): 112, 118, 134, (251,527,0): 115, 121, 135, (251,528,0): 115, 121, 135, (251,529,0): 115, 121, 133, (251,530,0): 116, 120, 132, (251,531,0): 112, 118, 130, (251,532,0): 112, 115, 130, (251,533,0): 111, 114, 129, (251,534,0): 110, 113, 128, (251,535,0): 109, 112, 127, (251,536,0): 114, 117, 134, (251,537,0): 116, 119, 136, (251,538,0): 121, 124, 143, (251,539,0): 124, 127, 146, (251,540,0): 126, 129, 148, (251,541,0): 126, 129, 148, (251,542,0): 124, 127, 146, (251,543,0): 123, 125, 146, (251,544,0): 117, 122, 142, (251,545,0): 116, 123, 142, (251,546,0): 116, 123, 142, (251,547,0): 116, 121, 140, (251,548,0): 113, 118, 137, (251,549,0): 108, 114, 130, (251,550,0): 102, 108, 124, (251,551,0): 100, 103, 118, (251,552,0): 80, 84, 96, (251,553,0): 77, 79, 91, (251,554,0): 70, 72, 84, (251,555,0): 64, 67, 76, (251,556,0): 61, 64, 73, (251,557,0): 65, 65, 73, (251,558,0): 68, 68, 76, (251,559,0): 70, 70, 78, (251,560,0): 81, 81, 93, (251,561,0): 84, 86, 99, (251,562,0): 91, 93, 106, (251,563,0): 98, 102, 114, (251,564,0): 104, 107, 122, (251,565,0): 107, 110, 125, (251,566,0): 108, 111, 126, (251,567,0): 105, 111, 125, (251,568,0): 106, 112, 128, (251,569,0): 105, 112, 128, (251,570,0): 104, 111, 129, (251,571,0): 104, 111, 129, (251,572,0): 105, 112, 130, (251,573,0): 104, 113, 130, (251,574,0): 105, 113, 132, (251,575,0): 106, 114, 133, (251,576,0): 103, 114, 132, (251,577,0): 103, 114, 132, (251,578,0): 103, 114, 132, (251,579,0): 103, 114, 132, (251,580,0): 105, 113, 132, (251,581,0): 105, 113, 132, (251,582,0): 105, 113, 132, (251,583,0): 105, 113, 132, (251,584,0): 104, 111, 130, (251,585,0): 104, 111, 130, (251,586,0): 104, 109, 129, (251,587,0): 102, 107, 127, (251,588,0): 100, 105, 125, (251,589,0): 98, 103, 123, (251,590,0): 97, 99, 120, (251,591,0): 96, 99, 118, (251,592,0): 94, 97, 114, (251,593,0): 90, 93, 108, (251,594,0): 86, 88, 101, (251,595,0): 84, 86, 99, (251,596,0): 86, 86, 98, (251,597,0): 86, 84, 95, (251,598,0): 84, 81, 90, (251,599,0): 82, 79, 88, (252,0,0): 48, 36, 46, (252,1,0): 48, 36, 46, (252,2,0): 49, 37, 47, (252,3,0): 49, 37, 47, (252,4,0): 50, 38, 48, (252,5,0): 50, 38, 48, (252,6,0): 52, 39, 49, (252,7,0): 52, 39, 49, (252,8,0): 53, 37, 48, (252,9,0): 53, 37, 48, (252,10,0): 54, 36, 48, (252,11,0): 54, 36, 48, (252,12,0): 54, 36, 48, (252,13,0): 54, 36, 48, (252,14,0): 54, 36, 48, (252,15,0): 54, 36, 50, (252,16,0): 56, 38, 54, (252,17,0): 56, 37, 56, (252,18,0): 57, 38, 57, (252,19,0): 58, 40, 56, (252,20,0): 59, 41, 55, (252,21,0): 60, 42, 56, (252,22,0): 61, 43, 55, (252,23,0): 61, 44, 54, (252,24,0): 62, 45, 53, (252,25,0): 63, 46, 52, (252,26,0): 64, 47, 53, (252,27,0): 65, 49, 52, (252,28,0): 66, 50, 51, (252,29,0): 66, 50, 51, (252,30,0): 65, 49, 49, (252,31,0): 66, 47, 49, (252,32,0): 67, 46, 51, (252,33,0): 68, 45, 53, (252,34,0): 68, 45, 53, (252,35,0): 68, 45, 53, (252,36,0): 70, 45, 51, (252,37,0): 70, 45, 51, (252,38,0): 71, 44, 51, (252,39,0): 71, 44, 51, (252,40,0): 74, 47, 52, (252,41,0): 74, 47, 52, (252,42,0): 77, 48, 52, (252,43,0): 77, 48, 52, (252,44,0): 79, 48, 53, (252,45,0): 79, 48, 53, (252,46,0): 80, 50, 52, (252,47,0): 80, 50, 52, (252,48,0): 83, 51, 56, (252,49,0): 83, 51, 56, (252,50,0): 83, 51, 56, (252,51,0): 83, 51, 56, (252,52,0): 83, 51, 56, (252,53,0): 83, 51, 56, (252,54,0): 83, 51, 56, (252,55,0): 83, 51, 56, (252,56,0): 83, 51, 56, (252,57,0): 84, 52, 57, (252,58,0): 85, 53, 58, (252,59,0): 86, 54, 59, (252,60,0): 87, 55, 60, (252,61,0): 88, 56, 61, (252,62,0): 88, 56, 61, (252,63,0): 88, 56, 59, (252,64,0): 91, 60, 57, (252,65,0): 91, 62, 54, (252,66,0): 93, 63, 55, (252,67,0): 94, 64, 53, (252,68,0): 96, 67, 53, (252,69,0): 99, 68, 50, (252,70,0): 101, 70, 50, (252,71,0): 101, 70, 49, (252,72,0): 102, 71, 50, (252,73,0): 103, 71, 48, (252,74,0): 104, 72, 49, (252,75,0): 107, 73, 48, (252,76,0): 107, 72, 50, (252,77,0): 106, 71, 49, (252,78,0): 105, 70, 50, (252,79,0): 105, 70, 51, (252,80,0): 105, 72, 53, (252,81,0): 105, 72, 55, (252,82,0): 105, 72, 55, (252,83,0): 105, 72, 55, (252,84,0): 105, 72, 55, (252,85,0): 105, 72, 55, (252,86,0): 105, 72, 55, (252,87,0): 105, 72, 55, (252,88,0): 102, 69, 52, (252,89,0): 103, 70, 53, (252,90,0): 104, 71, 54, (252,91,0): 104, 71, 54, (252,92,0): 104, 71, 54, (252,93,0): 103, 70, 53, (252,94,0): 101, 68, 51, (252,95,0): 100, 67, 50, (252,96,0): 100, 67, 52, (252,97,0): 100, 67, 52, (252,98,0): 99, 66, 51, (252,99,0): 99, 66, 51, (252,100,0): 98, 65, 50, (252,101,0): 97, 64, 49, (252,102,0): 97, 64, 49, (252,103,0): 96, 63, 48, (252,104,0): 96, 63, 48, (252,105,0): 96, 63, 48, (252,106,0): 96, 63, 48, (252,107,0): 96, 63, 48, (252,108,0): 96, 63, 48, (252,109,0): 97, 64, 49, (252,110,0): 97, 64, 49, (252,111,0): 97, 64, 47, (252,112,0): 95, 62, 45, (252,113,0): 95, 62, 43, (252,114,0): 95, 62, 43, (252,115,0): 95, 62, 43, (252,116,0): 94, 63, 43, (252,117,0): 94, 63, 43, (252,118,0): 94, 63, 43, (252,119,0): 94, 63, 43, (252,120,0): 93, 65, 44, (252,121,0): 93, 65, 44, (252,122,0): 92, 65, 44, (252,123,0): 91, 64, 43, (252,124,0): 91, 64, 43, (252,125,0): 90, 63, 42, (252,126,0): 89, 64, 42, (252,127,0): 90, 63, 42, (252,128,0): 89, 61, 40, (252,129,0): 89, 61, 40, (252,130,0): 89, 61, 40, (252,131,0): 89, 61, 40, (252,132,0): 89, 61, 40, (252,133,0): 89, 61, 40, (252,134,0): 89, 61, 40, (252,135,0): 89, 61, 40, (252,136,0): 86, 58, 37, (252,137,0): 86, 58, 37, (252,138,0): 86, 58, 37, (252,139,0): 85, 57, 36, (252,140,0): 85, 57, 36, (252,141,0): 84, 56, 35, (252,142,0): 84, 56, 35, (252,143,0): 84, 56, 35, (252,144,0): 88, 57, 37, (252,145,0): 89, 56, 37, (252,146,0): 89, 56, 37, (252,147,0): 89, 56, 37, (252,148,0): 89, 56, 37, (252,149,0): 89, 56, 37, (252,150,0): 91, 56, 37, (252,151,0): 91, 56, 37, (252,152,0): 92, 55, 37, (252,153,0): 92, 55, 37, (252,154,0): 93, 54, 37, (252,155,0): 92, 53, 36, (252,156,0): 92, 53, 36, (252,157,0): 91, 52, 35, (252,158,0): 91, 52, 35, (252,159,0): 91, 52, 35, (252,160,0): 92, 55, 37, (252,161,0): 92, 55, 37, (252,162,0): 92, 55, 37, (252,163,0): 91, 54, 36, (252,164,0): 91, 54, 36, (252,165,0): 90, 53, 35, (252,166,0): 90, 53, 35, (252,167,0): 90, 53, 35, (252,168,0): 88, 51, 33, (252,169,0): 88, 51, 33, (252,170,0): 87, 50, 32, (252,171,0): 86, 49, 31, (252,172,0): 85, 48, 30, (252,173,0): 84, 47, 29, (252,174,0): 84, 47, 29, (252,175,0): 82, 46, 30, (252,176,0): 81, 48, 31, (252,177,0): 81, 48, 31, (252,178,0): 80, 47, 32, (252,179,0): 79, 46, 29, (252,180,0): 78, 45, 30, (252,181,0): 77, 44, 27, (252,182,0): 77, 44, 29, (252,183,0): 76, 43, 26, (252,184,0): 77, 44, 29, (252,185,0): 77, 44, 27, (252,186,0): 77, 44, 29, (252,187,0): 77, 44, 27, (252,188,0): 77, 44, 29, (252,189,0): 77, 44, 27, (252,190,0): 77, 44, 29, (252,191,0): 78, 45, 28, (252,192,0): 84, 48, 32, (252,193,0): 84, 48, 32, (252,194,0): 87, 50, 34, (252,195,0): 88, 51, 33, (252,196,0): 90, 53, 35, (252,197,0): 91, 54, 36, (252,198,0): 92, 55, 37, (252,199,0): 93, 55, 36, (252,200,0): 94, 56, 37, (252,201,0): 94, 56, 35, (252,202,0): 94, 56, 35, (252,203,0): 93, 55, 34, (252,204,0): 93, 52, 32, (252,205,0): 91, 50, 28, (252,206,0): 89, 48, 26, (252,207,0): 86, 48, 25, (252,208,0): 87, 53, 26, (252,209,0): 87, 56, 27, (252,210,0): 89, 58, 30, (252,211,0): 88, 57, 29, (252,212,0): 86, 56, 32, (252,213,0): 86, 56, 32, (252,214,0): 89, 59, 35, (252,215,0): 92, 62, 38, (252,216,0): 95, 68, 39, (252,217,0): 103, 77, 44, (252,218,0): 112, 89, 48, (252,219,0): 118, 95, 51, (252,220,0): 122, 100, 50, (252,221,0): 130, 109, 54, (252,222,0): 140, 121, 62, (252,223,0): 150, 132, 66, (252,224,0): 157, 137, 64, (252,225,0): 161, 142, 65, (252,226,0): 166, 147, 70, (252,227,0): 169, 150, 73, (252,228,0): 168, 149, 73, (252,229,0): 168, 149, 73, (252,230,0): 169, 150, 74, (252,231,0): 171, 152, 76, (252,232,0): 166, 146, 73, (252,233,0): 166, 146, 73, (252,234,0): 166, 146, 73, (252,235,0): 168, 148, 75, (252,236,0): 170, 150, 79, (252,237,0): 173, 153, 82, (252,238,0): 176, 156, 85, (252,239,0): 175, 158, 86, (252,240,0): 173, 165, 92, (252,241,0): 174, 168, 92, (252,242,0): 178, 172, 94, (252,243,0): 183, 178, 97, (252,244,0): 189, 182, 101, (252,245,0): 195, 187, 102, (252,246,0): 200, 190, 103, (252,247,0): 203, 192, 103, (252,248,0): 208, 194, 105, (252,249,0): 208, 194, 105, (252,250,0): 210, 193, 105, (252,251,0): 209, 192, 104, (252,252,0): 209, 189, 102, (252,253,0): 206, 186, 100, (252,254,0): 205, 183, 98, (252,255,0): 202, 182, 96, (252,256,0): 199, 183, 98, (252,257,0): 197, 182, 99, (252,258,0): 197, 180, 98, (252,259,0): 196, 179, 97, (252,260,0): 193, 176, 96, (252,261,0): 190, 173, 93, (252,262,0): 188, 171, 93, (252,263,0): 185, 169, 91, (252,264,0): 181, 168, 90, (252,265,0): 181, 169, 93, (252,266,0): 179, 171, 96, (252,267,0): 178, 172, 96, (252,268,0): 177, 175, 100, (252,269,0): 179, 179, 105, (252,270,0): 185, 187, 112, (252,271,0): 189, 193, 116, (252,272,0): 195, 200, 118, (252,273,0): 195, 203, 118, (252,274,0): 196, 206, 120, (252,275,0): 194, 206, 122, (252,276,0): 192, 205, 123, (252,277,0): 188, 201, 119, (252,278,0): 183, 196, 116, (252,279,0): 181, 192, 114, (252,280,0): 184, 190, 116, (252,281,0): 178, 181, 110, (252,282,0): 169, 170, 102, (252,283,0): 163, 164, 96, (252,284,0): 160, 163, 96, (252,285,0): 157, 164, 96, (252,286,0): 154, 163, 96, (252,287,0): 151, 162, 94, (252,288,0): 145, 158, 88, (252,289,0): 148, 164, 93, (252,290,0): 154, 169, 100, (252,291,0): 156, 173, 103, (252,292,0): 156, 176, 107, (252,293,0): 158, 179, 112, (252,294,0): 163, 184, 117, (252,295,0): 167, 190, 122, (252,296,0): 170, 195, 127, (252,297,0): 178, 205, 134, (252,298,0): 189, 217, 143, (252,299,0): 195, 223, 148, (252,300,0): 197, 225, 148, (252,301,0): 201, 230, 150, (252,302,0): 211, 240, 160, (252,303,0): 219, 248, 164, (252,304,0): 223, 253, 165, (252,305,0): 223, 254, 161, (252,306,0): 224, 254, 158, (252,307,0): 223, 253, 155, (252,308,0): 225, 253, 151, (252,309,0): 227, 254, 151, (252,310,0): 231, 254, 150, (252,311,0): 233, 254, 151, (252,312,0): 229, 245, 146, (252,313,0): 227, 241, 146, (252,314,0): 225, 233, 147, (252,315,0): 220, 225, 145, (252,316,0): 212, 214, 141, (252,317,0): 195, 196, 128, (252,318,0): 173, 172, 108, (252,319,0): 157, 152, 97, (252,320,0): 143, 130, 88, (252,321,0): 133, 117, 83, (252,322,0): 116, 99, 69, (252,323,0): 102, 85, 57, (252,324,0): 91, 73, 49, (252,325,0): 85, 67, 47, (252,326,0): 80, 61, 46, (252,327,0): 77, 57, 46, (252,328,0): 82, 62, 53, (252,329,0): 76, 56, 49, (252,330,0): 69, 48, 43, (252,331,0): 65, 44, 39, (252,332,0): 64, 44, 37, (252,333,0): 64, 44, 37, (252,334,0): 64, 44, 37, (252,335,0): 63, 43, 36, (252,336,0): 61, 43, 33, (252,337,0): 62, 44, 34, (252,338,0): 66, 48, 38, (252,339,0): 70, 52, 42, (252,340,0): 72, 55, 45, (252,341,0): 70, 53, 43, (252,342,0): 64, 47, 37, (252,343,0): 58, 41, 31, (252,344,0): 51, 37, 26, (252,345,0): 56, 42, 31, (252,346,0): 61, 49, 37, (252,347,0): 64, 52, 40, (252,348,0): 65, 53, 41, (252,349,0): 65, 53, 41, (252,350,0): 66, 56, 44, (252,351,0): 68, 60, 47, (252,352,0): 76, 74, 59, (252,353,0): 82, 80, 65, (252,354,0): 91, 88, 73, (252,355,0): 98, 92, 78, (252,356,0): 100, 92, 79, (252,357,0): 100, 92, 79, (252,358,0): 101, 91, 79, (252,359,0): 100, 92, 79, (252,360,0): 97, 91, 77, (252,361,0): 99, 96, 81, (252,362,0): 101, 104, 87, (252,363,0): 106, 113, 95, (252,364,0): 110, 123, 103, (252,365,0): 114, 133, 111, (252,366,0): 117, 141, 117, (252,367,0): 120, 144, 122, (252,368,0): 125, 144, 125, (252,369,0): 123, 141, 125, (252,370,0): 122, 139, 123, (252,371,0): 121, 138, 122, (252,372,0): 121, 137, 124, (252,373,0): 122, 138, 125, (252,374,0): 124, 140, 129, (252,375,0): 125, 142, 132, (252,376,0): 126, 146, 137, (252,377,0): 128, 151, 141, (252,378,0): 131, 158, 149, (252,379,0): 131, 162, 154, (252,380,0): 133, 166, 157, (252,381,0): 135, 170, 163, (252,382,0): 139, 176, 168, (252,383,0): 140, 181, 173, (252,384,0): 147, 191, 190, (252,385,0): 151, 196, 199, (252,386,0): 155, 202, 210, (252,387,0): 161, 209, 223, (252,388,0): 164, 215, 232, (252,389,0): 169, 224, 244, (252,390,0): 177, 235, 255, (252,391,0): 181, 242, 255, (252,392,0): 184, 247, 255, (252,393,0): 180, 246, 255, (252,394,0): 176, 242, 255, (252,395,0): 172, 239, 255, (252,396,0): 170, 235, 253, (252,397,0): 169, 234, 252, (252,398,0): 169, 234, 255, (252,399,0): 172, 232, 255, (252,400,0): 177, 227, 254, (252,401,0): 183, 228, 255, (252,402,0): 186, 227, 255, (252,403,0): 177, 217, 243, (252,404,0): 162, 196, 223, (252,405,0): 144, 174, 202, (252,406,0): 130, 157, 184, (252,407,0): 124, 150, 175, (252,408,0): 122, 146, 172, (252,409,0): 126, 150, 176, (252,410,0): 132, 156, 182, (252,411,0): 135, 161, 186, (252,412,0): 136, 163, 190, (252,413,0): 133, 163, 189, (252,414,0): 131, 162, 190, (252,415,0): 130, 161, 190, (252,416,0): 126, 152, 187, (252,417,0): 128, 152, 190, (252,418,0): 128, 150, 187, (252,419,0): 121, 145, 179, (252,420,0): 115, 138, 170, (252,421,0): 109, 134, 164, (252,422,0): 110, 134, 162, (252,423,0): 110, 136, 161, (252,424,0): 109, 135, 160, (252,425,0): 110, 136, 161, (252,426,0): 113, 139, 166, (252,427,0): 116, 142, 169, (252,428,0): 119, 144, 174, (252,429,0): 120, 145, 176, (252,430,0): 120, 146, 179, (252,431,0): 122, 145, 176, (252,432,0): 132, 146, 172, (252,433,0): 130, 141, 161, (252,434,0): 122, 133, 153, (252,435,0): 115, 126, 144, (252,436,0): 111, 119, 138, (252,437,0): 109, 118, 135, (252,438,0): 111, 118, 136, (252,439,0): 111, 118, 134, (252,440,0): 112, 118, 132, (252,441,0): 112, 118, 130, (252,442,0): 114, 118, 130, (252,443,0): 112, 116, 127, (252,444,0): 111, 113, 125, (252,445,0): 110, 113, 122, (252,446,0): 111, 111, 121, (252,447,0): 110, 110, 118, (252,448,0): 111, 114, 121, (252,449,0): 109, 114, 120, (252,450,0): 107, 112, 118, (252,451,0): 105, 108, 113, (252,452,0): 102, 103, 108, (252,453,0): 97, 98, 103, (252,454,0): 93, 92, 98, (252,455,0): 91, 90, 95, (252,456,0): 86, 84, 89, (252,457,0): 87, 82, 86, (252,458,0): 88, 82, 86, (252,459,0): 87, 81, 85, (252,460,0): 90, 81, 86, (252,461,0): 91, 82, 85, (252,462,0): 93, 82, 86, (252,463,0): 93, 84, 89, (252,464,0): 93, 87, 97, (252,465,0): 92, 89, 100, (252,466,0): 92, 89, 100, (252,467,0): 90, 87, 98, (252,468,0): 87, 84, 93, (252,469,0): 84, 78, 88, (252,470,0): 79, 73, 83, (252,471,0): 75, 69, 79, (252,472,0): 72, 65, 73, (252,473,0): 71, 64, 72, (252,474,0): 69, 62, 69, (252,475,0): 70, 60, 68, (252,476,0): 69, 59, 67, (252,477,0): 69, 59, 67, (252,478,0): 70, 61, 66, (252,479,0): 70, 61, 66, (252,480,0): 69, 63, 65, (252,481,0): 70, 64, 66, (252,482,0): 73, 64, 67, (252,483,0): 74, 65, 68, (252,484,0): 76, 65, 71, (252,485,0): 76, 67, 72, (252,486,0): 77, 68, 73, (252,487,0): 76, 70, 74, (252,488,0): 80, 73, 80, (252,489,0): 83, 78, 84, (252,490,0): 88, 85, 92, (252,491,0): 93, 94, 99, (252,492,0): 98, 101, 106, (252,493,0): 103, 111, 114, (252,494,0): 113, 120, 126, (252,495,0): 120, 127, 137, (252,496,0): 128, 134, 150, (252,497,0): 130, 137, 155, (252,498,0): 134, 141, 159, (252,499,0): 136, 143, 161, (252,500,0): 135, 144, 161, (252,501,0): 132, 141, 158, (252,502,0): 126, 138, 152, (252,503,0): 123, 135, 149, (252,504,0): 115, 128, 144, (252,505,0): 116, 129, 145, (252,506,0): 118, 131, 147, (252,507,0): 118, 134, 149, (252,508,0): 121, 137, 152, (252,509,0): 125, 141, 157, (252,510,0): 128, 145, 161, (252,511,0): 130, 149, 164, (252,512,0): 134, 152, 172, (252,513,0): 130, 151, 170, (252,514,0): 130, 148, 168, (252,515,0): 128, 146, 166, (252,516,0): 125, 142, 160, (252,517,0): 119, 136, 154, (252,518,0): 117, 132, 151, (252,519,0): 116, 132, 148, (252,520,0): 114, 125, 143, (252,521,0): 115, 126, 144, (252,522,0): 118, 127, 144, (252,523,0): 114, 123, 140, (252,524,0): 111, 118, 136, (252,525,0): 109, 116, 134, (252,526,0): 112, 118, 134, (252,527,0): 115, 121, 135, (252,528,0): 115, 121, 135, (252,529,0): 114, 122, 133, (252,530,0): 114, 120, 132, (252,531,0): 111, 119, 130, (252,532,0): 110, 116, 130, (252,533,0): 109, 115, 129, (252,534,0): 108, 114, 128, (252,535,0): 107, 113, 127, (252,536,0): 111, 117, 131, (252,537,0): 113, 119, 133, (252,538,0): 115, 121, 137, (252,539,0): 117, 123, 139, (252,540,0): 120, 123, 140, (252,541,0): 120, 123, 140, (252,542,0): 119, 122, 139, (252,543,0): 119, 122, 141, (252,544,0): 114, 119, 138, (252,545,0): 114, 119, 138, (252,546,0): 114, 119, 138, (252,547,0): 114, 117, 136, (252,548,0): 109, 112, 131, (252,549,0): 102, 105, 122, (252,550,0): 96, 99, 114, (252,551,0): 94, 96, 109, (252,552,0): 78, 80, 93, (252,553,0): 76, 76, 88, (252,554,0): 71, 71, 81, (252,555,0): 65, 65, 73, (252,556,0): 62, 62, 70, (252,557,0): 63, 62, 68, (252,558,0): 65, 64, 70, (252,559,0): 65, 65, 73, (252,560,0): 74, 74, 86, (252,561,0): 78, 80, 92, (252,562,0): 87, 89, 102, (252,563,0): 96, 98, 111, (252,564,0): 103, 105, 118, (252,565,0): 106, 110, 122, (252,566,0): 106, 109, 124, (252,567,0): 104, 110, 124, (252,568,0): 105, 111, 127, (252,569,0): 104, 110, 126, (252,570,0): 103, 109, 125, (252,571,0): 102, 109, 125, (252,572,0): 102, 109, 127, (252,573,0): 104, 111, 129, (252,574,0): 106, 113, 131, (252,575,0): 106, 115, 132, (252,576,0): 103, 114, 132, (252,577,0): 103, 114, 132, (252,578,0): 105, 113, 132, (252,579,0): 105, 113, 132, (252,580,0): 105, 113, 132, (252,581,0): 105, 113, 132, (252,582,0): 106, 113, 132, (252,583,0): 106, 113, 132, (252,584,0): 106, 111, 131, (252,585,0): 106, 111, 131, (252,586,0): 106, 111, 131, (252,587,0): 105, 110, 130, (252,588,0): 105, 107, 128, (252,589,0): 102, 104, 125, (252,590,0): 99, 101, 122, (252,591,0): 97, 100, 119, (252,592,0): 93, 99, 115, (252,593,0): 89, 95, 109, (252,594,0): 87, 91, 103, (252,595,0): 85, 87, 100, (252,596,0): 88, 88, 100, (252,597,0): 87, 87, 97, (252,598,0): 86, 85, 93, (252,599,0): 84, 83, 91, (253,0,0): 48, 36, 46, (253,1,0): 48, 36, 46, (253,2,0): 49, 37, 47, (253,3,0): 49, 37, 47, (253,4,0): 50, 38, 48, (253,5,0): 50, 38, 48, (253,6,0): 52, 39, 49, (253,7,0): 52, 39, 49, (253,8,0): 53, 37, 48, (253,9,0): 53, 37, 48, (253,10,0): 54, 36, 48, (253,11,0): 54, 36, 48, (253,12,0): 54, 36, 48, (253,13,0): 54, 36, 48, (253,14,0): 54, 36, 48, (253,15,0): 54, 36, 50, (253,16,0): 56, 38, 54, (253,17,0): 56, 37, 56, (253,18,0): 57, 38, 57, (253,19,0): 58, 39, 58, (253,20,0): 59, 41, 57, (253,21,0): 60, 42, 56, (253,22,0): 61, 43, 55, (253,23,0): 62, 45, 55, (253,24,0): 62, 45, 55, (253,25,0): 63, 46, 52, (253,26,0): 65, 48, 54, (253,27,0): 66, 50, 53, (253,28,0): 66, 50, 51, (253,29,0): 66, 50, 50, (253,30,0): 65, 49, 49, (253,31,0): 67, 48, 50, (253,32,0): 67, 46, 51, (253,33,0): 68, 45, 53, (253,34,0): 68, 45, 53, (253,35,0): 68, 45, 53, (253,36,0): 70, 45, 51, (253,37,0): 70, 45, 51, (253,38,0): 71, 44, 51, (253,39,0): 71, 44, 51, (253,40,0): 74, 47, 52, (253,41,0): 74, 47, 52, (253,42,0): 77, 48, 52, (253,43,0): 77, 48, 52, (253,44,0): 79, 48, 53, (253,45,0): 79, 48, 53, (253,46,0): 80, 50, 52, (253,47,0): 80, 50, 52, (253,48,0): 83, 51, 56, (253,49,0): 83, 51, 56, (253,50,0): 83, 51, 56, (253,51,0): 83, 51, 56, (253,52,0): 83, 51, 56, (253,53,0): 83, 51, 56, (253,54,0): 83, 51, 56, (253,55,0): 83, 51, 56, (253,56,0): 83, 51, 56, (253,57,0): 84, 52, 57, (253,58,0): 86, 54, 59, (253,59,0): 88, 56, 61, (253,60,0): 89, 57, 62, (253,61,0): 89, 57, 62, (253,62,0): 89, 57, 62, (253,63,0): 89, 57, 58, (253,64,0): 91, 62, 58, (253,65,0): 92, 63, 55, (253,66,0): 93, 65, 54, (253,67,0): 94, 66, 54, (253,68,0): 97, 68, 54, (253,69,0): 98, 69, 51, (253,70,0): 100, 72, 51, (253,71,0): 102, 72, 48, (253,72,0): 103, 73, 49, (253,73,0): 103, 73, 49, (253,74,0): 104, 72, 47, (253,75,0): 104, 72, 47, (253,76,0): 104, 72, 49, (253,77,0): 106, 71, 49, (253,78,0): 106, 71, 51, (253,79,0): 106, 71, 51, (253,80,0): 106, 73, 56, (253,81,0): 106, 73, 56, (253,82,0): 106, 73, 56, (253,83,0): 106, 73, 56, (253,84,0): 106, 73, 56, (253,85,0): 106, 73, 56, (253,86,0): 106, 73, 56, (253,87,0): 106, 73, 56, (253,88,0): 102, 69, 52, (253,89,0): 103, 70, 53, (253,90,0): 104, 71, 54, (253,91,0): 105, 72, 55, (253,92,0): 105, 72, 55, (253,93,0): 104, 71, 54, (253,94,0): 103, 70, 53, (253,95,0): 102, 69, 52, (253,96,0): 103, 70, 55, (253,97,0): 102, 69, 54, (253,98,0): 102, 69, 54, (253,99,0): 101, 68, 53, (253,100,0): 100, 67, 52, (253,101,0): 99, 66, 51, (253,102,0): 98, 65, 50, (253,103,0): 97, 64, 49, (253,104,0): 96, 63, 48, (253,105,0): 96, 63, 48, (253,106,0): 96, 63, 48, (253,107,0): 97, 64, 49, (253,108,0): 97, 64, 49, (253,109,0): 97, 64, 49, (253,110,0): 98, 65, 50, (253,111,0): 98, 65, 48, (253,112,0): 97, 64, 47, (253,113,0): 97, 64, 45, (253,114,0): 97, 64, 45, (253,115,0): 97, 64, 45, (253,116,0): 96, 65, 45, (253,117,0): 96, 65, 45, (253,118,0): 96, 65, 45, (253,119,0): 96, 65, 45, (253,120,0): 94, 66, 45, (253,121,0): 94, 66, 45, (253,122,0): 93, 66, 45, (253,123,0): 92, 65, 44, (253,124,0): 92, 65, 44, (253,125,0): 91, 64, 43, (253,126,0): 90, 65, 43, (253,127,0): 90, 65, 43, (253,128,0): 90, 62, 41, (253,129,0): 90, 62, 41, (253,130,0): 90, 62, 41, (253,131,0): 90, 62, 41, (253,132,0): 90, 62, 41, (253,133,0): 90, 62, 41, (253,134,0): 90, 62, 41, (253,135,0): 90, 62, 41, (253,136,0): 87, 59, 38, (253,137,0): 87, 59, 38, (253,138,0): 87, 59, 38, (253,139,0): 87, 59, 38, (253,140,0): 87, 59, 38, (253,141,0): 87, 59, 38, (253,142,0): 87, 59, 38, (253,143,0): 87, 59, 38, (253,144,0): 91, 58, 39, (253,145,0): 91, 58, 39, (253,146,0): 91, 58, 39, (253,147,0): 91, 58, 39, (253,148,0): 91, 58, 39, (253,149,0): 91, 58, 39, (253,150,0): 93, 58, 39, (253,151,0): 93, 58, 39, (253,152,0): 93, 56, 38, (253,153,0): 93, 56, 38, (253,154,0): 94, 55, 38, (253,155,0): 94, 55, 38, (253,156,0): 94, 55, 38, (253,157,0): 94, 55, 38, (253,158,0): 94, 55, 38, (253,159,0): 94, 55, 38, (253,160,0): 95, 58, 40, (253,161,0): 94, 57, 39, (253,162,0): 94, 57, 39, (253,163,0): 93, 56, 38, (253,164,0): 93, 56, 38, (253,165,0): 92, 55, 37, (253,166,0): 92, 55, 37, (253,167,0): 92, 55, 37, (253,168,0): 88, 51, 33, (253,169,0): 88, 51, 33, (253,170,0): 87, 50, 32, (253,171,0): 87, 50, 32, (253,172,0): 86, 49, 31, (253,173,0): 85, 48, 30, (253,174,0): 85, 48, 30, (253,175,0): 84, 49, 30, (253,176,0): 84, 48, 32, (253,177,0): 82, 49, 32, (253,178,0): 81, 48, 31, (253,179,0): 81, 48, 31, (253,180,0): 80, 47, 30, (253,181,0): 79, 46, 29, (253,182,0): 79, 46, 29, (253,183,0): 79, 46, 29, (253,184,0): 80, 47, 30, (253,185,0): 80, 47, 30, (253,186,0): 81, 48, 31, (253,187,0): 81, 48, 31, (253,188,0): 82, 49, 32, (253,189,0): 82, 49, 32, (253,190,0): 82, 49, 32, (253,191,0): 85, 49, 33, (253,192,0): 87, 50, 34, (253,193,0): 90, 51, 36, (253,194,0): 91, 52, 35, (253,195,0): 93, 54, 37, (253,196,0): 94, 55, 38, (253,197,0): 95, 56, 39, (253,198,0): 95, 57, 38, (253,199,0): 94, 56, 37, (253,200,0): 95, 57, 36, (253,201,0): 94, 56, 35, (253,202,0): 93, 55, 34, (253,203,0): 92, 54, 33, (253,204,0): 92, 51, 29, (253,205,0): 91, 50, 28, (253,206,0): 89, 48, 26, (253,207,0): 86, 49, 23, (253,208,0): 89, 55, 27, (253,209,0): 89, 58, 29, (253,210,0): 90, 59, 31, (253,211,0): 89, 58, 30, (253,212,0): 87, 57, 33, (253,213,0): 90, 60, 36, (253,214,0): 95, 65, 41, (253,215,0): 99, 69, 43, (253,216,0): 105, 78, 48, (253,217,0): 113, 87, 52, (253,218,0): 123, 100, 58, (253,219,0): 131, 109, 60, (253,220,0): 138, 117, 62, (253,221,0): 145, 125, 64, (253,222,0): 152, 134, 68, (253,223,0): 159, 142, 70, (253,224,0): 162, 143, 64, (253,225,0): 166, 148, 64, (253,226,0): 170, 152, 70, (253,227,0): 172, 154, 72, (253,228,0): 171, 153, 71, (253,229,0): 171, 153, 71, (253,230,0): 173, 154, 75, (253,231,0): 175, 156, 77, (253,232,0): 171, 152, 75, (253,233,0): 171, 152, 75, (253,234,0): 171, 152, 75, (253,235,0): 173, 154, 77, (253,236,0): 175, 156, 80, (253,237,0): 178, 159, 83, (253,238,0): 182, 163, 87, (253,239,0): 182, 166, 89, (253,240,0): 175, 168, 90, (253,241,0): 174, 171, 92, (253,242,0): 181, 176, 95, (253,243,0): 187, 182, 98, (253,244,0): 194, 188, 102, (253,245,0): 199, 193, 105, (253,246,0): 205, 195, 106, (253,247,0): 206, 197, 106, (253,248,0): 211, 198, 106, (253,249,0): 213, 200, 106, (253,250,0): 216, 199, 107, (253,251,0): 217, 200, 108, (253,252,0): 217, 197, 108, (253,253,0): 214, 194, 105, (253,254,0): 211, 190, 101, (253,255,0): 208, 188, 101, (253,256,0): 207, 191, 104, (253,257,0): 205, 190, 105, (253,258,0): 204, 189, 104, (253,259,0): 203, 188, 103, (253,260,0): 203, 186, 104, (253,261,0): 203, 186, 104, (253,262,0): 201, 186, 103, (253,263,0): 202, 187, 106, (253,264,0): 198, 185, 106, (253,265,0): 196, 185, 106, (253,266,0): 193, 184, 105, (253,267,0): 189, 183, 105, (253,268,0): 187, 184, 107, (253,269,0): 188, 186, 111, (253,270,0): 189, 189, 115, (253,271,0): 191, 194, 117, (253,272,0): 193, 198, 116, (253,273,0): 193, 201, 116, (253,274,0): 194, 204, 118, (253,275,0): 191, 205, 118, (253,276,0): 188, 203, 118, (253,277,0): 184, 199, 116, (253,278,0): 180, 193, 113, (253,279,0): 180, 189, 110, (253,280,0): 180, 184, 110, (253,281,0): 173, 175, 102, (253,282,0): 164, 163, 96, (253,283,0): 160, 159, 92, (253,284,0): 160, 161, 95, (253,285,0): 160, 163, 96, (253,286,0): 158, 163, 97, (253,287,0): 153, 162, 95, (253,288,0): 147, 158, 89, (253,289,0): 149, 162, 92, (253,290,0): 152, 165, 96, (253,291,0): 152, 167, 100, (253,292,0): 154, 166, 102, (253,293,0): 153, 168, 103, (253,294,0): 154, 168, 106, (253,295,0): 154, 170, 107, (253,296,0): 154, 170, 108, (253,297,0): 159, 179, 116, (253,298,0): 169, 191, 126, (253,299,0): 174, 199, 131, (253,300,0): 178, 205, 134, (253,301,0): 183, 213, 141, (253,302,0): 192, 224, 149, (253,303,0): 200, 234, 157, (253,304,0): 211, 249, 166, (253,305,0): 212, 252, 166, (253,306,0): 215, 254, 165, (253,307,0): 215, 254, 163, (253,308,0): 215, 252, 157, (253,309,0): 217, 251, 154, (253,310,0): 220, 252, 153, (253,311,0): 224, 251, 154, (253,312,0): 218, 244, 147, (253,313,0): 220, 241, 148, (253,314,0): 217, 236, 147, (253,315,0): 216, 230, 145, (253,316,0): 215, 226, 147, (253,317,0): 208, 219, 143, (253,318,0): 192, 200, 127, (253,319,0): 178, 180, 117, (253,320,0): 156, 145, 100, (253,321,0): 146, 130, 94, (253,322,0): 127, 111, 78, (253,323,0): 109, 92, 64, (253,324,0): 96, 78, 54, (253,325,0): 88, 70, 50, (253,326,0): 82, 63, 48, (253,327,0): 78, 58, 47, (253,328,0): 82, 62, 53, (253,329,0): 76, 56, 49, (253,330,0): 69, 48, 43, (253,331,0): 65, 44, 39, (253,332,0): 65, 45, 38, (253,333,0): 65, 45, 38, (253,334,0): 65, 45, 38, (253,335,0): 64, 44, 37, (253,336,0): 62, 44, 34, (253,337,0): 62, 44, 34, (253,338,0): 64, 46, 36, (253,339,0): 68, 50, 40, (253,340,0): 70, 53, 43, (253,341,0): 70, 53, 43, (253,342,0): 66, 49, 39, (253,343,0): 62, 45, 35, (253,344,0): 52, 38, 27, (253,345,0): 57, 43, 32, (253,346,0): 63, 51, 39, (253,347,0): 68, 56, 44, (253,348,0): 70, 58, 46, (253,349,0): 70, 58, 46, (253,350,0): 68, 58, 46, (253,351,0): 67, 59, 46, (253,352,0): 75, 73, 58, (253,353,0): 81, 82, 66, (253,354,0): 92, 90, 75, (253,355,0): 100, 97, 82, (253,356,0): 103, 97, 83, (253,357,0): 103, 95, 82, (253,358,0): 103, 93, 81, (253,359,0): 102, 94, 81, (253,360,0): 100, 92, 79, (253,361,0): 100, 97, 82, (253,362,0): 102, 105, 88, (253,363,0): 105, 114, 95, (253,364,0): 110, 123, 103, (253,365,0): 113, 132, 110, (253,366,0): 116, 140, 116, (253,367,0): 119, 143, 121, (253,368,0): 121, 142, 123, (253,369,0): 122, 140, 124, (253,370,0): 122, 139, 123, (253,371,0): 121, 138, 122, (253,372,0): 121, 137, 124, (253,373,0): 121, 139, 127, (253,374,0): 122, 139, 129, (253,375,0): 121, 141, 130, (253,376,0): 128, 149, 140, (253,377,0): 131, 154, 146, (253,378,0): 133, 160, 153, (253,379,0): 132, 163, 155, (253,380,0): 133, 166, 159, (253,381,0): 133, 170, 162, (253,382,0): 135, 175, 166, (253,383,0): 138, 179, 173, (253,384,0): 147, 189, 187, (253,385,0): 149, 193, 196, (253,386,0): 153, 197, 206, (253,387,0): 155, 203, 215, (253,388,0): 158, 209, 226, (253,389,0): 165, 217, 238, (253,390,0): 172, 229, 249, (253,391,0): 177, 235, 255, (253,392,0): 179, 240, 255, (253,393,0): 176, 239, 255, (253,394,0): 174, 237, 255, (253,395,0): 169, 234, 252, (253,396,0): 167, 232, 252, (253,397,0): 165, 230, 252, (253,398,0): 164, 228, 253, (253,399,0): 169, 224, 254, (253,400,0): 172, 215, 250, (253,401,0): 178, 213, 251, (253,402,0): 174, 208, 243, (253,403,0): 159, 192, 225, (253,404,0): 140, 169, 199, (253,405,0): 125, 152, 179, (253,406,0): 120, 146, 169, (253,407,0): 122, 147, 167, (253,408,0): 125, 147, 168, (253,409,0): 131, 153, 174, (253,410,0): 136, 161, 183, (253,411,0): 139, 163, 187, (253,412,0): 137, 163, 188, (253,413,0): 131, 158, 185, (253,414,0): 125, 155, 183, (253,415,0): 125, 152, 182, (253,416,0): 124, 146, 183, (253,417,0): 123, 145, 182, (253,418,0): 121, 144, 178, (253,419,0): 118, 141, 173, (253,420,0): 114, 137, 168, (253,421,0): 111, 135, 163, (253,422,0): 111, 135, 161, (253,423,0): 112, 136, 162, (253,424,0): 112, 136, 162, (253,425,0): 112, 138, 163, (253,426,0): 113, 139, 166, (253,427,0): 114, 139, 169, (253,428,0): 115, 140, 171, (253,429,0): 115, 139, 173, (253,430,0): 113, 139, 174, (253,431,0): 115, 138, 170, (253,432,0): 125, 140, 163, (253,433,0): 125, 136, 156, (253,434,0): 119, 130, 148, (253,435,0): 113, 124, 142, (253,436,0): 112, 121, 138, (253,437,0): 110, 119, 136, (253,438,0): 111, 118, 134, (253,439,0): 112, 120, 133, (253,440,0): 113, 119, 131, (253,441,0): 115, 121, 133, (253,442,0): 117, 121, 132, (253,443,0): 115, 119, 128, (253,444,0): 112, 115, 124, (253,445,0): 109, 112, 121, (253,446,0): 110, 110, 118, (253,447,0): 108, 111, 118, (253,448,0): 109, 114, 120, (253,449,0): 109, 114, 120, (253,450,0): 107, 112, 116, (253,451,0): 104, 109, 113, (253,452,0): 100, 103, 108, (253,453,0): 98, 99, 103, (253,454,0): 95, 94, 99, (253,455,0): 92, 91, 96, (253,456,0): 87, 85, 88, (253,457,0): 86, 84, 87, (253,458,0): 88, 83, 87, (253,459,0): 88, 82, 84, (253,460,0): 90, 81, 84, (253,461,0): 91, 82, 85, (253,462,0): 94, 83, 87, (253,463,0): 91, 85, 89, (253,464,0): 92, 89, 98, (253,465,0): 92, 90, 101, (253,466,0): 94, 91, 102, (253,467,0): 93, 90, 101, (253,468,0): 90, 87, 96, (253,469,0): 85, 82, 91, (253,470,0): 82, 76, 86, (253,471,0): 78, 72, 82, (253,472,0): 75, 68, 76, (253,473,0): 74, 67, 75, (253,474,0): 72, 65, 72, (253,475,0): 70, 63, 70, (253,476,0): 71, 61, 69, (253,477,0): 71, 61, 69, (253,478,0): 71, 62, 67, (253,479,0): 72, 63, 68, (253,480,0): 70, 64, 66, (253,481,0): 70, 64, 66, (253,482,0): 72, 63, 66, (253,483,0): 73, 64, 67, (253,484,0): 75, 64, 70, (253,485,0): 75, 64, 70, (253,486,0): 75, 66, 71, (253,487,0): 75, 66, 71, (253,488,0): 81, 71, 79, (253,489,0): 82, 77, 83, (253,490,0): 86, 83, 90, (253,491,0): 90, 91, 96, (253,492,0): 95, 98, 103, (253,493,0): 103, 108, 112, (253,494,0): 111, 118, 124, (253,495,0): 118, 125, 133, (253,496,0): 129, 135, 149, (253,497,0): 131, 137, 153, (253,498,0): 133, 139, 155, (253,499,0): 132, 139, 155, (253,500,0): 131, 139, 152, (253,501,0): 127, 137, 149, (253,502,0): 121, 133, 145, (253,503,0): 118, 130, 142, (253,504,0): 114, 128, 139, (253,505,0): 116, 132, 145, (253,506,0): 122, 138, 153, (253,507,0): 125, 143, 157, (253,508,0): 128, 145, 161, (253,509,0): 131, 150, 167, (253,510,0): 135, 154, 171, (253,511,0): 136, 157, 176, (253,512,0): 134, 155, 174, (253,513,0): 130, 151, 170, (253,514,0): 129, 147, 167, (253,515,0): 129, 147, 167, (253,516,0): 127, 144, 162, (253,517,0): 120, 137, 155, (253,518,0): 118, 133, 152, (253,519,0): 120, 135, 154, (253,520,0): 118, 129, 147, (253,521,0): 118, 129, 147, (253,522,0): 118, 127, 144, (253,523,0): 115, 124, 141, (253,524,0): 113, 120, 138, (253,525,0): 111, 118, 136, (253,526,0): 113, 119, 135, (253,527,0): 114, 120, 136, (253,528,0): 114, 122, 135, (253,529,0): 113, 121, 132, (253,530,0): 112, 120, 131, (253,531,0): 110, 118, 129, (253,532,0): 109, 117, 130, (253,533,0): 107, 115, 128, (253,534,0): 107, 113, 127, (253,535,0): 106, 112, 126, (253,536,0): 110, 116, 130, (253,537,0): 111, 117, 131, (253,538,0): 112, 118, 134, (253,539,0): 113, 119, 135, (253,540,0): 116, 119, 136, (253,541,0): 116, 119, 136, (253,542,0): 117, 120, 137, (253,543,0): 117, 120, 137, (253,544,0): 112, 117, 136, (253,545,0): 113, 118, 137, (253,546,0): 114, 117, 136, (253,547,0): 109, 112, 129, (253,548,0): 101, 104, 121, (253,549,0): 93, 96, 111, (253,550,0): 89, 91, 104, (253,551,0): 87, 89, 101, (253,552,0): 79, 79, 91, (253,553,0): 76, 76, 86, (253,554,0): 72, 72, 80, (253,555,0): 67, 68, 73, (253,556,0): 65, 64, 70, (253,557,0): 63, 62, 68, (253,558,0): 64, 63, 69, (253,559,0): 64, 63, 71, (253,560,0): 70, 70, 80, (253,561,0): 75, 75, 87, (253,562,0): 82, 84, 97, (253,563,0): 92, 94, 107, (253,564,0): 99, 101, 114, (253,565,0): 103, 105, 118, (253,566,0): 103, 106, 121, (253,567,0): 104, 107, 122, (253,568,0): 105, 108, 125, (253,569,0): 102, 108, 124, (253,570,0): 101, 107, 123, (253,571,0): 100, 106, 122, (253,572,0): 100, 107, 125, (253,573,0): 103, 110, 128, (253,574,0): 105, 112, 130, (253,575,0): 106, 115, 132, (253,576,0): 106, 114, 133, (253,577,0): 104, 115, 133, (253,578,0): 106, 114, 133, (253,579,0): 106, 114, 133, (253,580,0): 106, 114, 133, (253,581,0): 106, 114, 133, (253,582,0): 107, 114, 133, (253,583,0): 107, 114, 133, (253,584,0): 107, 112, 132, (253,585,0): 108, 113, 133, (253,586,0): 108, 113, 133, (253,587,0): 108, 113, 133, (253,588,0): 108, 110, 131, (253,589,0): 104, 106, 127, (253,590,0): 101, 103, 124, (253,591,0): 98, 101, 120, (253,592,0): 95, 100, 119, (253,593,0): 91, 97, 113, (253,594,0): 88, 91, 106, (253,595,0): 86, 90, 102, (253,596,0): 89, 89, 101, (253,597,0): 88, 88, 100, (253,598,0): 87, 85, 96, (253,599,0): 85, 84, 92, (254,0,0): 48, 36, 46, (254,1,0): 48, 36, 46, (254,2,0): 49, 37, 47, (254,3,0): 49, 37, 47, (254,4,0): 50, 38, 48, (254,5,0): 50, 38, 48, (254,6,0): 52, 39, 49, (254,7,0): 52, 39, 49, (254,8,0): 53, 37, 48, (254,9,0): 53, 37, 48, (254,10,0): 54, 36, 48, (254,11,0): 54, 36, 48, (254,12,0): 54, 36, 48, (254,13,0): 54, 36, 48, (254,14,0): 54, 36, 48, (254,15,0): 54, 36, 50, (254,16,0): 56, 37, 56, (254,17,0): 57, 38, 58, (254,18,0): 58, 39, 58, (254,19,0): 59, 40, 59, (254,20,0): 60, 42, 58, (254,21,0): 61, 43, 57, (254,22,0): 62, 44, 56, (254,23,0): 62, 45, 55, (254,24,0): 62, 45, 55, (254,25,0): 63, 46, 52, (254,26,0): 65, 48, 54, (254,27,0): 66, 50, 53, (254,28,0): 67, 51, 52, (254,29,0): 67, 51, 51, (254,30,0): 66, 50, 50, (254,31,0): 67, 49, 49, (254,32,0): 67, 46, 51, (254,33,0): 68, 45, 53, (254,34,0): 70, 44, 53, (254,35,0): 70, 44, 53, (254,36,0): 70, 45, 51, (254,37,0): 70, 45, 51, (254,38,0): 71, 44, 51, (254,39,0): 71, 44, 51, (254,40,0): 76, 47, 52, (254,41,0): 76, 47, 52, (254,42,0): 77, 48, 52, (254,43,0): 77, 48, 52, (254,44,0): 79, 48, 53, (254,45,0): 79, 48, 53, (254,46,0): 80, 50, 52, (254,47,0): 80, 50, 52, (254,48,0): 83, 51, 56, (254,49,0): 83, 51, 56, (254,50,0): 83, 51, 56, (254,51,0): 83, 51, 56, (254,52,0): 83, 51, 56, (254,53,0): 83, 51, 56, (254,54,0): 83, 51, 56, (254,55,0): 83, 51, 56, (254,56,0): 83, 51, 56, (254,57,0): 85, 53, 58, (254,58,0): 87, 55, 60, (254,59,0): 89, 57, 62, (254,60,0): 90, 58, 63, (254,61,0): 90, 58, 63, (254,62,0): 89, 57, 62, (254,63,0): 89, 57, 58, (254,64,0): 92, 63, 59, (254,65,0): 91, 64, 55, (254,66,0): 92, 65, 54, (254,67,0): 94, 68, 53, (254,68,0): 97, 70, 53, (254,69,0): 98, 71, 50, (254,70,0): 99, 73, 50, (254,71,0): 101, 73, 49, (254,72,0): 102, 74, 50, (254,73,0): 102, 75, 48, (254,74,0): 104, 74, 48, (254,75,0): 103, 73, 47, (254,76,0): 103, 73, 47, (254,77,0): 105, 73, 48, (254,78,0): 105, 73, 50, (254,79,0): 105, 73, 52, (254,80,0): 106, 73, 56, (254,81,0): 106, 73, 58, (254,82,0): 106, 73, 58, (254,83,0): 106, 73, 58, (254,84,0): 106, 73, 58, (254,85,0): 106, 73, 58, (254,86,0): 106, 73, 58, (254,87,0): 106, 73, 58, (254,88,0): 103, 70, 55, (254,89,0): 103, 70, 55, (254,90,0): 105, 72, 57, (254,91,0): 106, 73, 58, (254,92,0): 106, 73, 58, (254,93,0): 105, 72, 57, (254,94,0): 104, 71, 56, (254,95,0): 103, 70, 55, (254,96,0): 105, 72, 57, (254,97,0): 105, 72, 57, (254,98,0): 104, 71, 56, (254,99,0): 103, 70, 55, (254,100,0): 101, 68, 53, (254,101,0): 100, 67, 52, (254,102,0): 99, 66, 51, (254,103,0): 99, 66, 51, (254,104,0): 95, 62, 47, (254,105,0): 96, 63, 48, (254,106,0): 96, 63, 48, (254,107,0): 97, 64, 49, (254,108,0): 98, 65, 50, (254,109,0): 98, 65, 50, (254,110,0): 99, 66, 51, (254,111,0): 99, 66, 49, (254,112,0): 98, 65, 48, (254,113,0): 98, 65, 46, (254,114,0): 98, 65, 46, (254,115,0): 98, 65, 46, (254,116,0): 97, 66, 46, (254,117,0): 97, 66, 46, (254,118,0): 95, 67, 46, (254,119,0): 95, 67, 46, (254,120,0): 95, 67, 46, (254,121,0): 95, 67, 46, (254,122,0): 94, 67, 46, (254,123,0): 93, 66, 45, (254,124,0): 92, 67, 45, (254,125,0): 91, 66, 44, (254,126,0): 91, 66, 44, (254,127,0): 90, 65, 43, (254,128,0): 91, 63, 42, (254,129,0): 91, 63, 42, (254,130,0): 91, 63, 42, (254,131,0): 91, 63, 42, (254,132,0): 91, 63, 42, (254,133,0): 91, 63, 42, (254,134,0): 91, 63, 42, (254,135,0): 91, 63, 42, (254,136,0): 89, 61, 40, (254,137,0): 89, 61, 40, (254,138,0): 89, 61, 40, (254,139,0): 89, 61, 40, (254,140,0): 90, 62, 41, (254,141,0): 90, 62, 41, (254,142,0): 90, 62, 41, (254,143,0): 90, 62, 41, (254,144,0): 92, 59, 40, (254,145,0): 92, 59, 40, (254,146,0): 92, 59, 40, (254,147,0): 92, 59, 40, (254,148,0): 94, 59, 40, (254,149,0): 94, 59, 40, (254,150,0): 94, 59, 40, (254,151,0): 94, 59, 40, (254,152,0): 95, 58, 40, (254,153,0): 95, 58, 40, (254,154,0): 96, 57, 40, (254,155,0): 96, 57, 40, (254,156,0): 97, 58, 41, (254,157,0): 97, 58, 41, (254,158,0): 99, 57, 41, (254,159,0): 97, 58, 41, (254,160,0): 96, 59, 41, (254,161,0): 96, 59, 41, (254,162,0): 96, 59, 41, (254,163,0): 95, 58, 40, (254,164,0): 94, 57, 39, (254,165,0): 94, 57, 39, (254,166,0): 94, 57, 39, (254,167,0): 93, 56, 38, (254,168,0): 88, 51, 33, (254,169,0): 87, 50, 32, (254,170,0): 87, 50, 32, (254,171,0): 87, 50, 32, (254,172,0): 86, 49, 31, (254,173,0): 86, 49, 31, (254,174,0): 86, 49, 31, (254,175,0): 85, 50, 31, (254,176,0): 84, 49, 30, (254,177,0): 82, 49, 30, (254,178,0): 82, 49, 30, (254,179,0): 82, 49, 30, (254,180,0): 81, 48, 29, (254,181,0): 81, 48, 29, (254,182,0): 81, 48, 29, (254,183,0): 81, 48, 29, (254,184,0): 83, 50, 31, (254,185,0): 84, 51, 32, (254,186,0): 84, 51, 32, (254,187,0): 85, 52, 33, (254,188,0): 86, 53, 34, (254,189,0): 86, 53, 34, (254,190,0): 87, 54, 35, (254,191,0): 89, 54, 35, (254,192,0): 90, 51, 34, (254,193,0): 93, 51, 35, (254,194,0): 96, 54, 38, (254,195,0): 97, 55, 39, (254,196,0): 98, 57, 39, (254,197,0): 98, 57, 39, (254,198,0): 97, 56, 38, (254,199,0): 97, 56, 38, (254,200,0): 95, 57, 36, (254,201,0): 94, 56, 35, (254,202,0): 92, 54, 31, (254,203,0): 91, 53, 30, (254,204,0): 89, 51, 28, (254,205,0): 88, 50, 27, (254,206,0): 87, 50, 24, (254,207,0): 85, 49, 23, (254,208,0): 91, 57, 29, (254,209,0): 90, 59, 30, (254,210,0): 91, 60, 32, (254,211,0): 90, 59, 31, (254,212,0): 89, 59, 35, (254,213,0): 93, 63, 39, (254,214,0): 100, 70, 44, (254,215,0): 105, 75, 47, (254,216,0): 111, 85, 52, (254,217,0): 118, 92, 55, (254,218,0): 129, 107, 60, (254,219,0): 140, 119, 66, (254,220,0): 149, 129, 70, (254,221,0): 156, 137, 71, (254,222,0): 159, 142, 70, (254,223,0): 161, 145, 67, (254,224,0): 167, 149, 63, (254,225,0): 170, 153, 63, (254,226,0): 173, 156, 68, (254,227,0): 174, 157, 69, (254,228,0): 173, 155, 69, (254,229,0): 172, 154, 68, (254,230,0): 174, 156, 72, (254,231,0): 176, 158, 74, (254,232,0): 175, 157, 75, (254,233,0): 174, 156, 74, (254,234,0): 173, 154, 75, (254,235,0): 173, 154, 75, (254,236,0): 176, 157, 80, (254,237,0): 179, 160, 83, (254,238,0): 184, 165, 88, (254,239,0): 184, 168, 90, (254,240,0): 176, 171, 90, (254,241,0): 176, 175, 92, (254,242,0): 183, 181, 96, (254,243,0): 191, 187, 100, (254,244,0): 197, 191, 103, (254,245,0): 201, 196, 104, (254,246,0): 206, 197, 104, (254,247,0): 207, 198, 103, (254,248,0): 213, 200, 104, (254,249,0): 214, 201, 105, (254,250,0): 217, 201, 106, (254,251,0): 218, 202, 107, (254,252,0): 219, 200, 108, (254,253,0): 217, 198, 106, (254,254,0): 215, 194, 103, (254,255,0): 213, 193, 104, (254,256,0): 211, 197, 108, (254,257,0): 209, 198, 109, (254,258,0): 210, 199, 110, (254,259,0): 210, 199, 110, (254,260,0): 213, 198, 113, (254,261,0): 213, 198, 113, (254,262,0): 213, 198, 113, (254,263,0): 213, 198, 115, (254,264,0): 212, 200, 118, (254,265,0): 209, 198, 118, (254,266,0): 203, 194, 115, (254,267,0): 199, 192, 114, (254,268,0): 196, 190, 114, (254,269,0): 192, 190, 113, (254,270,0): 192, 190, 115, (254,271,0): 190, 191, 113, (254,272,0): 188, 193, 109, (254,273,0): 187, 197, 110, (254,274,0): 188, 201, 113, (254,275,0): 188, 202, 115, (254,276,0): 185, 200, 115, (254,277,0): 182, 197, 114, (254,278,0): 179, 192, 112, (254,279,0): 179, 188, 109, (254,280,0): 174, 178, 104, (254,281,0): 167, 167, 95, (254,282,0): 161, 156, 90, (254,283,0): 158, 153, 87, (254,284,0): 159, 155, 91, (254,285,0): 159, 160, 94, (254,286,0): 157, 159, 94, (254,287,0): 152, 159, 92, (254,288,0): 154, 165, 97, (254,289,0): 152, 165, 96, (254,290,0): 152, 165, 96, (254,291,0): 153, 164, 98, (254,292,0): 154, 163, 100, (254,293,0): 154, 160, 98, (254,294,0): 151, 157, 97, (254,295,0): 146, 154, 95, (254,296,0): 140, 148, 91, (254,297,0): 145, 156, 98, (254,298,0): 152, 168, 106, (254,299,0): 158, 178, 115, (254,300,0): 162, 187, 121, (254,301,0): 168, 197, 130, (254,302,0): 177, 208, 140, (254,303,0): 181, 219, 146, (254,304,0): 189, 233, 158, (254,305,0): 190, 239, 160, (254,306,0): 197, 244, 164, (254,307,0): 201, 246, 163, (254,308,0): 202, 246, 159, (254,309,0): 202, 245, 156, (254,310,0): 207, 246, 155, (254,311,0): 212, 247, 155, (254,312,0): 212, 245, 154, (254,313,0): 213, 242, 152, (254,314,0): 209, 235, 146, (254,315,0): 206, 228, 143, (254,316,0): 210, 230, 145, (254,317,0): 210, 228, 146, (254,318,0): 200, 214, 135, (254,319,0): 189, 196, 128, (254,320,0): 170, 162, 115, (254,321,0): 160, 144, 108, (254,322,0): 139, 123, 90, (254,323,0): 119, 102, 72, (254,324,0): 104, 86, 62, (254,325,0): 93, 75, 55, (254,326,0): 86, 67, 52, (254,327,0): 82, 62, 51, (254,328,0): 81, 61, 52, (254,329,0): 76, 56, 49, (254,330,0): 69, 48, 43, (254,331,0): 65, 44, 39, (254,332,0): 65, 45, 38, (254,333,0): 66, 46, 39, (254,334,0): 66, 46, 37, (254,335,0): 65, 45, 36, (254,336,0): 63, 45, 35, (254,337,0): 62, 44, 34, (254,338,0): 62, 44, 34, (254,339,0): 65, 47, 37, (254,340,0): 68, 51, 41, (254,341,0): 70, 53, 43, (254,342,0): 68, 51, 41, (254,343,0): 65, 48, 38, (254,344,0): 58, 44, 33, (254,345,0): 59, 45, 34, (254,346,0): 61, 49, 37, (254,347,0): 66, 54, 42, (254,348,0): 71, 59, 47, (254,349,0): 73, 61, 49, (254,350,0): 71, 61, 49, (254,351,0): 68, 60, 47, (254,352,0): 76, 74, 59, (254,353,0): 82, 83, 67, (254,354,0): 94, 92, 77, (254,355,0): 101, 98, 83, (254,356,0): 103, 97, 83, (254,357,0): 102, 94, 81, (254,358,0): 100, 90, 78, (254,359,0): 98, 90, 77, (254,360,0): 103, 95, 82, (254,361,0): 103, 100, 85, (254,362,0): 104, 107, 90, (254,363,0): 107, 116, 97, (254,364,0): 111, 124, 104, (254,365,0): 114, 133, 111, (254,366,0): 116, 140, 116, (254,367,0): 119, 143, 121, (254,368,0): 120, 141, 122, (254,369,0): 122, 140, 124, (254,370,0): 121, 139, 125, (254,371,0): 120, 138, 124, (254,372,0): 120, 138, 126, (254,373,0): 121, 139, 127, (254,374,0): 122, 139, 129, (254,375,0): 120, 140, 129, (254,376,0): 128, 149, 140, (254,377,0): 129, 155, 146, (254,378,0): 133, 160, 153, (254,379,0): 133, 164, 156, (254,380,0): 132, 167, 160, (254,381,0): 134, 171, 163, (254,382,0): 137, 177, 169, (254,383,0): 140, 181, 175, (254,384,0): 146, 188, 186, (254,385,0): 147, 191, 192, (254,386,0): 150, 195, 201, (254,387,0): 152, 198, 211, (254,388,0): 155, 204, 221, (254,389,0): 160, 211, 232, (254,390,0): 167, 222, 243, (254,391,0): 171, 229, 251, (254,392,0): 172, 233, 254, (254,393,0): 171, 234, 252, (254,394,0): 170, 232, 253, (254,395,0): 168, 230, 251, (254,396,0): 166, 228, 251, (254,397,0): 164, 226, 251, (254,398,0): 162, 223, 252, (254,399,0): 166, 219, 253, (254,400,0): 171, 205, 250, (254,401,0): 168, 195, 240, (254,402,0): 154, 182, 222, (254,403,0): 136, 162, 199, (254,404,0): 119, 146, 175, (254,405,0): 112, 138, 161, (254,406,0): 114, 139, 159, (254,407,0): 118, 144, 159, (254,408,0): 121, 147, 160, (254,409,0): 128, 154, 167, (254,410,0): 135, 161, 176, (254,411,0): 137, 162, 182, (254,412,0): 133, 157, 181, (254,413,0): 125, 151, 178, (254,414,0): 120, 145, 176, (254,415,0): 118, 141, 175, (254,416,0): 122, 142, 177, (254,417,0): 119, 139, 174, (254,418,0): 116, 136, 169, (254,419,0): 114, 135, 166, (254,420,0): 114, 135, 164, (254,421,0): 114, 135, 162, (254,422,0): 114, 135, 162, (254,423,0): 111, 135, 159, (254,424,0): 110, 134, 158, (254,425,0): 111, 135, 161, (254,426,0): 111, 137, 164, (254,427,0): 112, 137, 167, (254,428,0): 112, 136, 170, (254,429,0): 111, 135, 171, (254,430,0): 110, 134, 172, (254,431,0): 112, 132, 165, (254,432,0): 119, 134, 157, (254,433,0): 120, 131, 149, (254,434,0): 117, 128, 146, (254,435,0): 114, 125, 143, (254,436,0): 113, 122, 139, (254,437,0): 112, 121, 138, (254,438,0): 113, 120, 136, (254,439,0): 113, 121, 134, (254,440,0): 115, 121, 133, (254,441,0): 117, 123, 135, (254,442,0): 120, 124, 135, (254,443,0): 118, 122, 131, (254,444,0): 113, 117, 126, (254,445,0): 109, 114, 120, (254,446,0): 108, 111, 118, (254,447,0): 108, 111, 118, (254,448,0): 108, 113, 117, (254,449,0): 106, 114, 117, (254,450,0): 106, 111, 115, (254,451,0): 104, 109, 113, (254,452,0): 101, 105, 108, (254,453,0): 97, 101, 104, (254,454,0): 96, 97, 101, (254,455,0): 95, 95, 97, (254,456,0): 89, 87, 90, (254,457,0): 88, 86, 89, (254,458,0): 89, 85, 86, (254,459,0): 88, 84, 85, (254,460,0): 89, 83, 85, (254,461,0): 90, 84, 84, (254,462,0): 93, 84, 85, (254,463,0): 91, 85, 89, (254,464,0): 92, 89, 98, (254,465,0): 91, 91, 101, (254,466,0): 94, 92, 103, (254,467,0): 94, 92, 103, (254,468,0): 92, 91, 99, (254,469,0): 87, 86, 94, (254,470,0): 83, 80, 89, (254,471,0): 79, 76, 85, (254,472,0): 77, 72, 79, (254,473,0): 75, 70, 77, (254,474,0): 73, 68, 74, (254,475,0): 71, 66, 72, (254,476,0): 71, 64, 71, (254,477,0): 71, 64, 71, (254,478,0): 71, 65, 69, (254,479,0): 71, 65, 69, (254,480,0): 72, 63, 66, (254,481,0): 72, 63, 64, (254,482,0): 74, 64, 65, (254,483,0): 74, 64, 65, (254,484,0): 74, 63, 67, (254,485,0): 74, 63, 67, (254,486,0): 74, 63, 69, (254,487,0): 73, 64, 69, (254,488,0): 79, 70, 75, (254,489,0): 81, 75, 79, (254,490,0): 85, 80, 86, (254,491,0): 88, 87, 92, (254,492,0): 93, 94, 99, (254,493,0): 99, 104, 108, (254,494,0): 107, 115, 118, (254,495,0): 114, 121, 129, (254,496,0): 133, 136, 151, (254,497,0): 131, 137, 153, (254,498,0): 131, 137, 153, (254,499,0): 129, 137, 150, (254,500,0): 126, 134, 145, (254,501,0): 122, 132, 142, (254,502,0): 117, 130, 139, (254,503,0): 115, 128, 137, (254,504,0): 114, 128, 137, (254,505,0): 118, 135, 145, (254,506,0): 125, 143, 155, (254,507,0): 129, 148, 163, (254,508,0): 133, 152, 169, (254,509,0): 133, 154, 173, (254,510,0): 137, 158, 179, (254,511,0): 140, 161, 182, (254,512,0): 134, 155, 176, (254,513,0): 128, 149, 170, (254,514,0): 128, 146, 166, (254,515,0): 129, 147, 167, (254,516,0): 127, 144, 164, (254,517,0): 121, 138, 158, (254,518,0): 120, 135, 154, (254,519,0): 123, 138, 157, (254,520,0): 123, 134, 152, (254,521,0): 120, 131, 149, (254,522,0): 118, 126, 145, (254,523,0): 115, 123, 142, (254,524,0): 115, 122, 140, (254,525,0): 114, 121, 139, (254,526,0): 113, 118, 137, (254,527,0): 111, 118, 134, (254,528,0): 112, 122, 134, (254,529,0): 111, 121, 131, (254,530,0): 110, 120, 130, (254,531,0): 108, 118, 128, (254,532,0): 107, 117, 129, (254,533,0): 105, 115, 127, (254,534,0): 105, 113, 126, (254,535,0): 104, 112, 125, (254,536,0): 108, 116, 129, (254,537,0): 108, 116, 129, (254,538,0): 109, 115, 129, (254,539,0): 110, 116, 130, (254,540,0): 111, 117, 131, (254,541,0): 113, 119, 133, (254,542,0): 114, 120, 134, (254,543,0): 115, 121, 135, (254,544,0): 114, 117, 134, (254,545,0): 114, 117, 134, (254,546,0): 112, 113, 131, (254,547,0): 104, 105, 123, (254,548,0): 94, 95, 113, (254,549,0): 86, 88, 103, (254,550,0): 84, 83, 97, (254,551,0): 84, 84, 96, (254,552,0): 80, 78, 91, (254,553,0): 78, 76, 87, (254,554,0): 74, 73, 81, (254,555,0): 70, 69, 75, (254,556,0): 67, 64, 71, (254,557,0): 65, 63, 68, (254,558,0): 64, 62, 67, (254,559,0): 63, 62, 68, (254,560,0): 67, 67, 77, (254,561,0): 72, 72, 84, (254,562,0): 80, 80, 92, (254,563,0): 89, 89, 101, (254,564,0): 95, 97, 110, (254,565,0): 99, 101, 114, (254,566,0): 102, 104, 117, (254,567,0): 101, 105, 117, (254,568,0): 104, 107, 122, (254,569,0): 103, 106, 121, (254,570,0): 99, 105, 121, (254,571,0): 98, 104, 120, (254,572,0): 100, 106, 122, (254,573,0): 103, 109, 125, (254,574,0): 105, 112, 130, (254,575,0): 106, 115, 132, (254,576,0): 106, 114, 133, (254,577,0): 104, 115, 133, (254,578,0): 106, 114, 133, (254,579,0): 106, 114, 133, (254,580,0): 106, 114, 133, (254,581,0): 106, 114, 133, (254,582,0): 107, 114, 133, (254,583,0): 107, 114, 133, (254,584,0): 109, 114, 134, (254,585,0): 110, 115, 135, (254,586,0): 111, 116, 136, (254,587,0): 111, 116, 136, (254,588,0): 110, 112, 133, (254,589,0): 107, 109, 130, (254,590,0): 103, 105, 126, (254,591,0): 100, 103, 122, (254,592,0): 97, 102, 121, (254,593,0): 93, 99, 115, (254,594,0): 90, 93, 108, (254,595,0): 88, 92, 104, (254,596,0): 90, 90, 102, (254,597,0): 89, 89, 101, (254,598,0): 87, 85, 96, (254,599,0): 85, 83, 94, (255,0,0): 48, 36, 46, (255,1,0): 48, 36, 46, (255,2,0): 49, 37, 47, (255,3,0): 49, 37, 47, (255,4,0): 50, 38, 48, (255,5,0): 50, 38, 48, (255,6,0): 52, 39, 49, (255,7,0): 52, 39, 49, (255,8,0): 51, 38, 48, (255,9,0): 53, 37, 48, (255,10,0): 53, 37, 48, (255,11,0): 53, 37, 48, (255,12,0): 53, 37, 50, (255,13,0): 53, 37, 48, (255,14,0): 53, 37, 50, (255,15,0): 53, 37, 50, (255,16,0): 57, 38, 57, (255,17,0): 57, 38, 57, (255,18,0): 58, 39, 58, (255,19,0): 59, 41, 57, (255,20,0): 60, 42, 58, (255,21,0): 61, 43, 57, (255,22,0): 62, 44, 56, (255,23,0): 62, 45, 55, (255,24,0): 63, 46, 56, (255,25,0): 66, 46, 55, (255,26,0): 67, 48, 54, (255,27,0): 68, 49, 53, (255,28,0): 69, 50, 52, (255,29,0): 69, 51, 51, (255,30,0): 68, 50, 50, (255,31,0): 67, 49, 49, (255,32,0): 68, 45, 51, (255,33,0): 68, 45, 51, (255,34,0): 70, 44, 53, (255,35,0): 70, 45, 51, (255,36,0): 70, 45, 51, (255,37,0): 70, 45, 51, (255,38,0): 71, 44, 51, (255,39,0): 71, 44, 51, (255,40,0): 76, 47, 52, (255,41,0): 76, 47, 52, (255,42,0): 77, 48, 52, (255,43,0): 77, 48, 52, (255,44,0): 79, 48, 53, (255,45,0): 79, 48, 53, (255,46,0): 80, 49, 54, (255,47,0): 80, 50, 52, (255,48,0): 83, 51, 54, (255,49,0): 83, 51, 54, (255,50,0): 83, 51, 54, (255,51,0): 83, 51, 54, (255,52,0): 83, 51, 54, (255,53,0): 83, 51, 54, (255,54,0): 83, 51, 56, (255,55,0): 83, 51, 56, (255,56,0): 83, 51, 56, (255,57,0): 85, 53, 58, (255,58,0): 88, 56, 61, (255,59,0): 90, 58, 63, (255,60,0): 91, 59, 64, (255,61,0): 91, 59, 64, (255,62,0): 90, 58, 63, (255,63,0): 88, 58, 58, (255,64,0): 92, 63, 57, (255,65,0): 92, 65, 54, (255,66,0): 93, 67, 54, (255,67,0): 94, 68, 53, (255,68,0): 97, 70, 53, (255,69,0): 99, 72, 53, (255,70,0): 100, 73, 52, (255,71,0): 100, 74, 51, (255,72,0): 103, 75, 53, (255,73,0): 102, 74, 50, (255,74,0): 102, 74, 50, (255,75,0): 101, 73, 49, (255,76,0): 103, 73, 49, (255,77,0): 104, 74, 50, (255,78,0): 104, 74, 50, (255,79,0): 105, 74, 53, (255,80,0): 106, 73, 56, (255,81,0): 106, 73, 56, (255,82,0): 106, 73, 56, (255,83,0): 106, 73, 56, (255,84,0): 106, 73, 56, (255,85,0): 106, 73, 56, (255,86,0): 106, 73, 56, (255,87,0): 106, 73, 56, (255,88,0): 103, 70, 53, (255,89,0): 104, 71, 54, (255,90,0): 105, 72, 55, (255,91,0): 106, 73, 56, (255,92,0): 106, 73, 56, (255,93,0): 106, 73, 56, (255,94,0): 105, 72, 55, (255,95,0): 104, 71, 54, (255,96,0): 107, 74, 57, (255,97,0): 106, 73, 56, (255,98,0): 107, 71, 55, (255,99,0): 104, 71, 54, (255,100,0): 104, 68, 52, (255,101,0): 101, 68, 51, (255,102,0): 102, 66, 50, (255,103,0): 100, 67, 50, (255,104,0): 97, 61, 45, (255,105,0): 96, 63, 46, (255,106,0): 98, 62, 46, (255,107,0): 97, 64, 49, (255,108,0): 100, 64, 50, (255,109,0): 99, 66, 51, (255,110,0): 101, 65, 51, (255,111,0): 100, 67, 50, (255,112,0): 99, 66, 49, (255,113,0): 98, 67, 47, (255,114,0): 99, 66, 47, (255,115,0): 98, 67, 47, (255,116,0): 98, 67, 47, (255,117,0): 98, 67, 47, (255,118,0): 96, 68, 47, (255,119,0): 96, 68, 47, (255,120,0): 96, 68, 47, (255,121,0): 95, 67, 46, (255,122,0): 94, 67, 46, (255,123,0): 94, 67, 46, (255,124,0): 93, 66, 45, (255,125,0): 91, 66, 44, (255,126,0): 92, 65, 44, (255,127,0): 92, 65, 44, (255,128,0): 91, 63, 42, (255,129,0): 91, 63, 42, (255,130,0): 93, 62, 42, (255,131,0): 91, 63, 42, (255,132,0): 93, 62, 42, (255,133,0): 91, 63, 42, (255,134,0): 93, 62, 42, (255,135,0): 91, 63, 42, (255,136,0): 92, 61, 41, (255,137,0): 90, 62, 41, (255,138,0): 93, 62, 42, (255,139,0): 91, 63, 42, (255,140,0): 93, 62, 42, (255,141,0): 91, 63, 42, (255,142,0): 94, 63, 43, (255,143,0): 94, 63, 42, (255,144,0): 93, 61, 40, (255,145,0): 93, 61, 38, (255,146,0): 95, 60, 40, (255,147,0): 95, 60, 38, (255,148,0): 95, 60, 40, (255,149,0): 95, 60, 40, (255,150,0): 95, 60, 40, (255,151,0): 95, 60, 40, (255,152,0): 96, 59, 40, (255,153,0): 96, 59, 40, (255,154,0): 98, 60, 41, (255,155,0): 98, 60, 41, (255,156,0): 98, 60, 41, (255,157,0): 98, 60, 41, (255,158,0): 99, 61, 42, (255,159,0): 99, 61, 42, (255,160,0): 98, 60, 41, (255,161,0): 97, 61, 39, (255,162,0): 96, 60, 38, (255,163,0): 96, 60, 38, (255,164,0): 95, 59, 37, (255,165,0): 95, 58, 39, (255,166,0): 94, 57, 38, (255,167,0): 94, 57, 38, (255,168,0): 87, 50, 31, (255,169,0): 87, 50, 31, (255,170,0): 87, 50, 31, (255,171,0): 87, 50, 31, (255,172,0): 87, 50, 31, (255,173,0): 86, 51, 31, (255,174,0): 86, 49, 31, (255,175,0): 85, 50, 31, (255,176,0): 85, 50, 31, (255,177,0): 83, 50, 31, (255,178,0): 85, 50, 31, (255,179,0): 82, 49, 30, (255,180,0): 84, 49, 30, (255,181,0): 82, 49, 30, (255,182,0): 84, 49, 30, (255,183,0): 82, 50, 29, (255,184,0): 87, 52, 33, (255,185,0): 86, 54, 33, (255,186,0): 88, 53, 33, (255,187,0): 89, 54, 34, (255,188,0): 90, 55, 35, (255,189,0): 91, 56, 36, (255,190,0): 91, 56, 36, (255,191,0): 93, 56, 37, (255,192,0): 93, 51, 35, (255,193,0): 95, 52, 36, (255,194,0): 98, 55, 39, (255,195,0): 100, 57, 41, (255,196,0): 100, 57, 41, (255,197,0): 99, 58, 40, (255,198,0): 98, 57, 39, (255,199,0): 97, 56, 38, (255,200,0): 94, 56, 35, (255,201,0): 93, 55, 34, (255,202,0): 92, 54, 33, (255,203,0): 89, 53, 31, (255,204,0): 87, 51, 29, (255,205,0): 86, 50, 28, (255,206,0): 85, 49, 25, (255,207,0): 84, 50, 25, (255,208,0): 89, 58, 30, (255,209,0): 90, 59, 31, (255,210,0): 91, 60, 32, (255,211,0): 91, 60, 32, (255,212,0): 91, 61, 35, (255,213,0): 95, 65, 37, (255,214,0): 103, 73, 45, (255,215,0): 109, 80, 48, (255,216,0): 113, 87, 50, (255,217,0): 120, 96, 52, (255,218,0): 131, 109, 59, (255,219,0): 144, 123, 66, (255,220,0): 155, 135, 72, (255,221,0): 161, 142, 73, (255,222,0): 161, 145, 70, (255,223,0): 162, 145, 65, (255,224,0): 170, 153, 65, (255,225,0): 175, 155, 66, (255,226,0): 177, 157, 68, (255,227,0): 177, 157, 70, (255,228,0): 175, 155, 69, (255,229,0): 172, 154, 68, (255,230,0): 173, 155, 71, (255,231,0): 175, 157, 75, (255,232,0): 176, 158, 76, (255,233,0): 175, 156, 77, (255,234,0): 172, 155, 75, (255,235,0): 171, 154, 74, (255,236,0): 173, 156, 76, (255,237,0): 177, 160, 80, (255,238,0): 182, 165, 85, (255,239,0): 182, 170, 88, (255,240,0): 181, 173, 90, (255,241,0): 182, 177, 93, (255,242,0): 188, 182, 96, (255,243,0): 193, 187, 99, (255,244,0): 199, 192, 102, (255,245,0): 204, 195, 104, (255,246,0): 207, 196, 104, (255,247,0): 207, 197, 102, (255,248,0): 213, 200, 104, (255,249,0): 214, 199, 104, (255,250,0): 215, 199, 104, (255,251,0): 215, 199, 104, (255,252,0): 217, 198, 104, (255,253,0): 216, 197, 103, (255,254,0): 216, 197, 103, (255,255,0): 213, 196, 104, (255,256,0): 213, 199, 110, (255,257,0): 213, 202, 113, (255,258,0): 215, 204, 115, (255,259,0): 219, 205, 117, (255,260,0): 220, 206, 118, (255,261,0): 220, 206, 118, (255,262,0): 219, 205, 117, (255,263,0): 218, 203, 118, (255,264,0): 219, 207, 121, (255,265,0): 215, 205, 120, (255,266,0): 210, 199, 117, (255,267,0): 204, 196, 115, (255,268,0): 198, 193, 112, (255,269,0): 194, 191, 112, (255,270,0): 192, 189, 110, (255,271,0): 190, 189, 109, (255,272,0): 185, 189, 105, (255,273,0): 186, 192, 106, (255,274,0): 186, 196, 110, (255,275,0): 186, 198, 112, (255,276,0): 185, 199, 114, (255,277,0): 182, 195, 113, (255,278,0): 180, 191, 112, (255,279,0): 181, 188, 111, (255,280,0): 171, 172, 102, (255,281,0): 165, 162, 93, (255,282,0): 157, 152, 88, (255,283,0): 154, 149, 85, (255,284,0): 156, 152, 89, (255,285,0): 156, 156, 92, (255,286,0): 154, 156, 93, (255,287,0): 149, 155, 91, (255,288,0): 158, 170, 104, (255,289,0): 153, 168, 101, (255,290,0): 150, 165, 100, (255,291,0): 152, 164, 100, (255,292,0): 152, 162, 101, (255,293,0): 150, 158, 98, (255,294,0): 146, 151, 93, (255,295,0): 141, 146, 90, (255,296,0): 132, 137, 83, (255,297,0): 136, 143, 89, (255,298,0): 143, 154, 98, (255,299,0): 149, 164, 107, (255,300,0): 155, 175, 116, (255,301,0): 162, 186, 124, (255,302,0): 169, 197, 136, (255,303,0): 172, 207, 141, (255,304,0): 177, 222, 153, (255,305,0): 180, 230, 157, (255,306,0): 188, 239, 164, (255,307,0): 193, 244, 167, (255,308,0): 196, 245, 166, (255,309,0): 198, 245, 164, (255,310,0): 202, 247, 164, (255,311,0): 205, 249, 164, (255,312,0): 206, 246, 160, (255,313,0): 206, 244, 159, (255,314,0): 203, 237, 153, (255,315,0): 199, 231, 146, (255,316,0): 204, 231, 150, (255,317,0): 207, 232, 151, (255,318,0): 195, 220, 139, (255,319,0): 185, 198, 128, (255,320,0): 177, 174, 121, (255,321,0): 169, 156, 112, (255,322,0): 148, 133, 94, (255,323,0): 126, 110, 76, (255,324,0): 112, 92, 65, (255,325,0): 100, 80, 56, (255,326,0): 92, 71, 52, (255,327,0): 88, 66, 52, (255,328,0): 81, 61, 50, (255,329,0): 76, 56, 47, (255,330,0): 69, 49, 42, (255,331,0): 66, 46, 39, (255,332,0): 65, 45, 38, (255,333,0): 66, 46, 39, (255,334,0): 66, 46, 37, (255,335,0): 65, 45, 36, (255,336,0): 63, 45, 35, (255,337,0): 60, 44, 31, (255,338,0): 60, 43, 33, (255,339,0): 62, 45, 35, (255,340,0): 66, 49, 39, (255,341,0): 67, 53, 42, (255,342,0): 69, 52, 42, (255,343,0): 65, 51, 40, (255,344,0): 62, 48, 37, (255,345,0): 60, 48, 36, (255,346,0): 59, 47, 35, (255,347,0): 64, 52, 40, (255,348,0): 70, 58, 46, (255,349,0): 74, 62, 50, (255,350,0): 73, 63, 51, (255,351,0): 69, 63, 49, (255,352,0): 77, 75, 60, (255,353,0): 82, 85, 68, (255,354,0): 92, 93, 77, (255,355,0): 100, 98, 83, (255,356,0): 102, 96, 82, (255,357,0): 99, 93, 77, (255,358,0): 96, 88, 75, (255,359,0): 94, 86, 73, (255,360,0): 104, 98, 84, (255,361,0): 104, 102, 87, (255,362,0): 106, 108, 94, (255,363,0): 110, 117, 101, (255,364,0): 113, 126, 108, (255,365,0): 116, 133, 114, (255,366,0): 120, 139, 120, (255,367,0): 121, 142, 123, (255,368,0): 123, 140, 124, (255,369,0): 123, 140, 124, (255,370,0): 123, 139, 126, (255,371,0): 122, 138, 125, (255,372,0): 122, 138, 127, (255,373,0): 122, 140, 128, (255,374,0): 122, 139, 129, (255,375,0): 120, 140, 131, (255,376,0): 126, 147, 140, (255,377,0): 129, 152, 144, (255,378,0): 131, 158, 151, (255,379,0): 133, 163, 155, (255,380,0): 134, 167, 160, (255,381,0): 136, 171, 164, (255,382,0): 141, 178, 171, (255,383,0): 143, 182, 177, (255,384,0): 147, 185, 186, (255,385,0): 149, 188, 195, (255,386,0): 151, 191, 201, (255,387,0): 153, 195, 209, (255,388,0): 154, 199, 218, (255,389,0): 159, 207, 229, (255,390,0): 165, 217, 241, (255,391,0): 169, 225, 250, (255,392,0): 169, 226, 253, (255,393,0): 167, 229, 254, (255,394,0): 167, 229, 254, (255,395,0): 167, 228, 255, (255,396,0): 166, 225, 255, (255,397,0): 164, 223, 253, (255,398,0): 163, 219, 254, (255,399,0): 168, 213, 252, (255,400,0): 173, 200, 243, (255,401,0): 163, 182, 224, (255,402,0): 140, 159, 199, (255,403,0): 120, 140, 173, (255,404,0): 110, 131, 158, (255,405,0): 109, 131, 152, (255,406,0): 113, 135, 149, (255,407,0): 117, 139, 152, (255,408,0): 121, 143, 154, (255,409,0): 128, 150, 161, (255,410,0): 135, 157, 171, (255,411,0): 137, 158, 175, (255,412,0): 132, 153, 174, (255,413,0): 124, 144, 169, (255,414,0): 118, 137, 167, (255,415,0): 115, 134, 166, (255,416,0): 120, 139, 172, (255,417,0): 116, 135, 168, (255,418,0): 110, 131, 162, (255,419,0): 110, 131, 160, (255,420,0): 113, 134, 161, (255,421,0): 115, 136, 163, (255,422,0): 114, 135, 162, (255,423,0): 112, 133, 160, (255,424,0): 110, 131, 158, (255,425,0): 109, 133, 159, (255,426,0): 110, 133, 164, (255,427,0): 111, 134, 166, (255,428,0): 112, 135, 169, (255,429,0): 111, 133, 170, (255,430,0): 110, 132, 171, (255,431,0): 112, 131, 164, (255,432,0): 115, 130, 153, (255,433,0): 117, 128, 146, (255,434,0): 116, 127, 145, (255,435,0): 116, 124, 143, (255,436,0): 115, 123, 142, (255,437,0): 113, 122, 139, (255,438,0): 114, 121, 137, (255,439,0): 113, 121, 134, (255,440,0): 116, 122, 136, (255,441,0): 118, 124, 136, (255,442,0): 122, 126, 137, (255,443,0): 120, 124, 135, (255,444,0): 114, 118, 127, (255,445,0): 110, 113, 122, (255,446,0): 108, 111, 120, (255,447,0): 109, 112, 119, (255,448,0): 106, 113, 119, (255,449,0): 105, 112, 118, (255,450,0): 106, 111, 117, (255,451,0): 104, 109, 115, (255,452,0): 102, 105, 110, (255,453,0): 99, 102, 107, (255,454,0): 97, 98, 102, (255,455,0): 95, 96, 100, (255,456,0): 91, 89, 94, (255,457,0): 90, 88, 93, (255,458,0): 90, 85, 89, (255,459,0): 89, 84, 88, (255,460,0): 90, 84, 86, (255,461,0): 90, 84, 86, (255,462,0): 93, 84, 87, (255,463,0): 91, 85, 89, (255,464,0): 91, 88, 97, (255,465,0): 91, 91, 101, (255,466,0): 95, 93, 104, (255,467,0): 96, 94, 105, (255,468,0): 94, 93, 101, (255,469,0): 90, 87, 94, (255,470,0): 85, 82, 89, (255,471,0): 83, 78, 85, (255,472,0): 78, 73, 79, (255,473,0): 78, 71, 78, (255,474,0): 76, 70, 74, (255,475,0): 74, 68, 72, (255,476,0): 74, 65, 70, (255,477,0): 74, 65, 70, (255,478,0): 74, 65, 70, (255,479,0): 74, 65, 68, (255,480,0): 74, 63, 67, (255,481,0): 74, 64, 65, (255,482,0): 74, 64, 65, (255,483,0): 74, 64, 65, (255,484,0): 74, 63, 67, (255,485,0): 74, 63, 67, (255,486,0): 74, 63, 69, (255,487,0): 73, 64, 69, (255,488,0): 77, 68, 73, (255,489,0): 79, 73, 77, (255,490,0): 83, 78, 82, (255,491,0): 85, 84, 89, (255,492,0): 89, 90, 94, (255,493,0): 96, 100, 103, (255,494,0): 106, 111, 114, (255,495,0): 113, 118, 124, (255,496,0): 135, 137, 150, (255,497,0): 135, 137, 152, (255,498,0): 132, 136, 148, (255,499,0): 130, 134, 146, (255,500,0): 125, 132, 142, (255,501,0): 121, 130, 137, (255,502,0): 117, 128, 134, (255,503,0): 114, 127, 135, (255,504,0): 113, 128, 135, (255,505,0): 118, 135, 145, (255,506,0): 126, 144, 156, (255,507,0): 132, 151, 166, (255,508,0): 133, 154, 171, (255,509,0): 135, 156, 177, (255,510,0): 137, 159, 182, (255,511,0): 140, 162, 185, (255,512,0): 134, 154, 178, (255,513,0): 129, 147, 169, (255,514,0): 127, 145, 167, (255,515,0): 127, 148, 169, (255,516,0): 127, 145, 167, (255,517,0): 120, 138, 160, (255,518,0): 119, 137, 157, (255,519,0): 124, 141, 161, (255,520,0): 124, 137, 156, (255,521,0): 121, 132, 152, (255,522,0): 117, 125, 144, (255,523,0): 115, 123, 142, (255,524,0): 116, 123, 141, (255,525,0): 116, 123, 141, (255,526,0): 113, 120, 136, (255,527,0): 110, 117, 133, (255,528,0): 109, 121, 135, (255,529,0): 108, 120, 132, (255,530,0): 107, 119, 131, (255,531,0): 106, 118, 130, (255,532,0): 106, 116, 128, (255,533,0): 104, 114, 126, (255,534,0): 103, 113, 125, (255,535,0): 104, 112, 125, (255,536,0): 108, 116, 129, (255,537,0): 107, 115, 128, (255,538,0): 108, 114, 128, (255,539,0): 108, 114, 128, (255,540,0): 110, 116, 132, (255,541,0): 112, 118, 134, (255,542,0): 114, 120, 136, (255,543,0): 115, 121, 137, (255,544,0): 115, 118, 135, (255,545,0): 114, 117, 134, (255,546,0): 110, 111, 129, (255,547,0): 101, 102, 120, (255,548,0): 92, 91, 107, (255,549,0): 83, 82, 96, (255,550,0): 81, 79, 93, (255,551,0): 81, 79, 92, (255,552,0): 81, 78, 89, (255,553,0): 78, 75, 84, (255,554,0): 75, 72, 79, (255,555,0): 71, 69, 74, (255,556,0): 69, 64, 70, (255,557,0): 67, 62, 66, (255,558,0): 65, 60, 66, (255,559,0): 62, 59, 66, (255,560,0): 68, 66, 77, (255,561,0): 71, 71, 83, (255,562,0): 78, 78, 90, (255,563,0): 86, 86, 98, (255,564,0): 92, 94, 106, (255,565,0): 97, 99, 112, (255,566,0): 100, 102, 115, (255,567,0): 101, 103, 116, (255,568,0): 103, 106, 121, (255,569,0): 102, 105, 120, (255,570,0): 98, 104, 120, (255,571,0): 97, 103, 119, (255,572,0): 99, 105, 121, (255,573,0): 102, 108, 124, (255,574,0): 105, 112, 128, (255,575,0): 106, 115, 132, (255,576,0): 104, 116, 132, (255,577,0): 104, 116, 132, (255,578,0): 104, 116, 132, (255,579,0): 104, 116, 132, (255,580,0): 106, 114, 133, (255,581,0): 106, 114, 133, (255,582,0): 106, 114, 133, (255,583,0): 106, 114, 133, (255,584,0): 109, 116, 135, (255,585,0): 110, 117, 136, (255,586,0): 111, 118, 137, (255,587,0): 111, 117, 139, (255,588,0): 110, 115, 137, (255,589,0): 106, 111, 133, (255,590,0): 102, 107, 129, (255,591,0): 99, 104, 124, (255,592,0): 97, 104, 122, (255,593,0): 93, 100, 116, (255,594,0): 89, 95, 111, (255,595,0): 88, 91, 106, (255,596,0): 88, 90, 103, (255,597,0): 87, 89, 101, (255,598,0): 86, 86, 98, (255,599,0): 84, 84, 94, (256,0,0): 54, 43, 51, (256,1,0): 53, 42, 50, (256,2,0): 51, 40, 48, (256,3,0): 50, 39, 47, (256,4,0): 49, 38, 46, (256,5,0): 50, 39, 47, (256,6,0): 50, 38, 48, (256,7,0): 51, 39, 49, (256,8,0): 51, 39, 51, (256,9,0): 52, 38, 51, (256,10,0): 51, 37, 50, (256,11,0): 51, 37, 50, (256,12,0): 50, 36, 51, (256,13,0): 50, 36, 49, (256,14,0): 49, 35, 50, (256,15,0): 49, 35, 50, (256,16,0): 54, 37, 55, (256,17,0): 56, 37, 56, (256,18,0): 56, 37, 56, (256,19,0): 57, 39, 55, (256,20,0): 60, 39, 56, (256,21,0): 61, 40, 55, (256,22,0): 62, 42, 54, (256,23,0): 63, 43, 54, (256,24,0): 64, 44, 55, (256,25,0): 66, 45, 54, (256,26,0): 68, 47, 54, (256,27,0): 69, 48, 53, (256,28,0): 70, 49, 54, (256,29,0): 71, 51, 53, (256,30,0): 71, 49, 52, (256,31,0): 71, 49, 52, (256,32,0): 71, 49, 52, (256,33,0): 71, 49, 52, (256,34,0): 72, 47, 53, (256,35,0): 72, 47, 51, (256,36,0): 71, 46, 50, (256,37,0): 71, 46, 50, (256,38,0): 71, 44, 49, (256,39,0): 71, 44, 49, (256,40,0): 76, 47, 52, (256,41,0): 76, 47, 52, (256,42,0): 77, 48, 53, (256,43,0): 77, 48, 53, (256,44,0): 79, 48, 54, (256,45,0): 79, 48, 54, (256,46,0): 80, 49, 55, (256,47,0): 80, 49, 54, (256,48,0): 79, 49, 49, (256,49,0): 79, 49, 49, (256,50,0): 80, 50, 50, (256,51,0): 80, 50, 50, (256,52,0): 81, 51, 51, (256,53,0): 81, 51, 51, (256,54,0): 81, 51, 53, (256,55,0): 82, 52, 54, (256,56,0): 82, 52, 54, (256,57,0): 83, 53, 55, (256,58,0): 84, 54, 56, (256,59,0): 86, 56, 58, (256,60,0): 87, 56, 61, (256,61,0): 89, 58, 63, (256,62,0): 90, 59, 64, (256,63,0): 91, 61, 61, (256,64,0): 92, 63, 55, (256,65,0): 92, 64, 52, (256,66,0): 94, 66, 54, (256,67,0): 96, 68, 56, (256,68,0): 98, 70, 56, (256,69,0): 99, 72, 55, (256,70,0): 101, 74, 57, (256,71,0): 102, 75, 56, (256,72,0): 101, 74, 55, (256,73,0): 101, 74, 55, (256,74,0): 101, 74, 53, (256,75,0): 101, 74, 53, (256,76,0): 102, 74, 53, (256,77,0): 102, 74, 53, (256,78,0): 102, 74, 53, (256,79,0): 102, 74, 53, (256,80,0): 106, 75, 55, (256,81,0): 107, 74, 55, (256,82,0): 107, 74, 55, (256,83,0): 107, 74, 55, (256,84,0): 107, 74, 55, (256,85,0): 107, 74, 55, (256,86,0): 107, 74, 55, (256,87,0): 107, 74, 55, (256,88,0): 105, 72, 53, (256,89,0): 106, 73, 54, (256,90,0): 107, 74, 55, (256,91,0): 108, 75, 56, (256,92,0): 109, 76, 57, (256,93,0): 110, 77, 58, (256,94,0): 111, 78, 59, (256,95,0): 111, 79, 58, (256,96,0): 110, 75, 55, (256,97,0): 111, 76, 54, (256,98,0): 112, 76, 54, (256,99,0): 111, 76, 54, (256,100,0): 111, 74, 55, (256,101,0): 108, 73, 53, (256,102,0): 107, 70, 52, (256,103,0): 105, 70, 51, (256,104,0): 103, 66, 48, (256,105,0): 102, 67, 48, (256,106,0): 103, 66, 48, (256,107,0): 101, 65, 49, (256,108,0): 102, 65, 49, (256,109,0): 100, 64, 48, (256,110,0): 101, 64, 48, (256,111,0): 100, 64, 48, (256,112,0): 97, 66, 48, (256,113,0): 96, 67, 49, (256,114,0): 100, 69, 51, (256,115,0): 100, 71, 53, (256,116,0): 101, 72, 54, (256,117,0): 101, 72, 54, (256,118,0): 100, 71, 53, (256,119,0): 100, 71, 53, (256,120,0): 98, 69, 51, (256,121,0): 98, 69, 51, (256,122,0): 98, 69, 51, (256,123,0): 98, 69, 51, (256,124,0): 96, 67, 49, (256,125,0): 93, 66, 47, (256,126,0): 92, 63, 45, (256,127,0): 91, 63, 42, (256,128,0): 95, 64, 44, (256,129,0): 95, 64, 43, (256,130,0): 96, 64, 43, (256,131,0): 95, 64, 43, (256,132,0): 96, 64, 43, (256,133,0): 95, 64, 43, (256,134,0): 96, 64, 43, (256,135,0): 95, 64, 43, (256,136,0): 93, 61, 40, (256,137,0): 92, 61, 40, (256,138,0): 94, 62, 41, (256,139,0): 93, 62, 41, (256,140,0): 95, 63, 42, (256,141,0): 94, 63, 42, (256,142,0): 96, 64, 43, (256,143,0): 96, 64, 41, (256,144,0): 92, 58, 31, (256,145,0): 93, 59, 31, (256,146,0): 95, 59, 33, (256,147,0): 96, 61, 33, (256,148,0): 96, 60, 34, (256,149,0): 95, 59, 33, (256,150,0): 94, 58, 32, (256,151,0): 93, 57, 31, (256,152,0): 98, 62, 38, (256,153,0): 99, 63, 39, (256,154,0): 100, 64, 42, (256,155,0): 100, 64, 42, (256,156,0): 100, 64, 42, (256,157,0): 100, 64, 42, (256,158,0): 99, 63, 41, (256,159,0): 99, 61, 38, (256,160,0): 99, 62, 36, (256,161,0): 100, 63, 36, (256,162,0): 100, 63, 36, (256,163,0): 100, 63, 36, (256,164,0): 98, 63, 35, (256,165,0): 95, 59, 33, (256,166,0): 93, 57, 31, (256,167,0): 91, 55, 29, (256,168,0): 91, 57, 32, (256,169,0): 90, 56, 31, (256,170,0): 89, 54, 32, (256,171,0): 88, 53, 31, (256,172,0): 88, 53, 31, (256,173,0): 87, 55, 32, (256,174,0): 90, 55, 35, (256,175,0): 90, 55, 35, (256,176,0): 88, 53, 33, (256,177,0): 87, 52, 32, (256,178,0): 87, 50, 31, (256,179,0): 86, 51, 31, (256,180,0): 87, 50, 31, (256,181,0): 88, 53, 33, (256,182,0): 92, 55, 36, (256,183,0): 92, 57, 35, (256,184,0): 99, 62, 43, (256,185,0): 95, 60, 38, (256,186,0): 95, 59, 37, (256,187,0): 96, 60, 38, (256,188,0): 99, 63, 41, (256,189,0): 102, 66, 44, (256,190,0): 101, 65, 41, (256,191,0): 101, 63, 42, (256,192,0): 101, 58, 42, (256,193,0): 104, 58, 45, (256,194,0): 105, 59, 46, (256,195,0): 104, 61, 45, (256,196,0): 103, 60, 44, (256,197,0): 101, 58, 42, (256,198,0): 98, 57, 39, (256,199,0): 96, 55, 37, (256,200,0): 96, 58, 39, (256,201,0): 93, 56, 37, (256,202,0): 91, 54, 35, (256,203,0): 87, 52, 32, (256,204,0): 85, 50, 30, (256,205,0): 83, 48, 28, (256,206,0): 83, 48, 29, (256,207,0): 81, 49, 28, (256,208,0): 85, 53, 30, (256,209,0): 89, 57, 34, (256,210,0): 94, 62, 37, (256,211,0): 97, 66, 38, (256,212,0): 98, 69, 39, (256,213,0): 102, 73, 41, (256,214,0): 106, 80, 43, (256,215,0): 110, 85, 44, (256,216,0): 117, 93, 45, (256,217,0): 129, 106, 54, (256,218,0): 146, 126, 67, (256,219,0): 161, 141, 78, (256,220,0): 168, 151, 81, (256,221,0): 171, 155, 80, (256,222,0): 172, 156, 79, (256,223,0): 173, 156, 76, (256,224,0): 177, 155, 69, (256,225,0): 183, 159, 71, (256,226,0): 186, 162, 76, (256,227,0): 186, 161, 77, (256,228,0): 182, 160, 77, (256,229,0): 179, 158, 79, (256,230,0): 180, 158, 82, (256,231,0): 180, 161, 85, (256,232,0): 176, 157, 81, (256,233,0): 173, 155, 79, (256,234,0): 169, 153, 76, (256,235,0): 168, 152, 74, (256,236,0): 168, 156, 74, (256,237,0): 174, 162, 80, (256,238,0): 180, 170, 85, (256,239,0): 186, 174, 90, (256,240,0): 186, 174, 88, (256,241,0): 192, 177, 92, (256,242,0): 198, 183, 98, (256,243,0): 201, 187, 99, (256,244,0): 203, 189, 100, (256,245,0): 206, 190, 102, (256,246,0): 209, 194, 103, (256,247,0): 212, 197, 106, (256,248,0): 211, 196, 103, (256,249,0): 214, 197, 105, (256,250,0): 216, 199, 107, (256,251,0): 217, 201, 106, (256,252,0): 216, 200, 105, (256,253,0): 218, 202, 107, (256,254,0): 222, 206, 111, (256,255,0): 226, 209, 117, (256,256,0): 226, 210, 123, (256,257,0): 226, 210, 125, (256,258,0): 227, 211, 124, (256,259,0): 227, 213, 125, (256,260,0): 227, 213, 124, (256,261,0): 227, 213, 124, (256,262,0): 226, 212, 123, (256,263,0): 226, 212, 123, (256,264,0): 223, 212, 122, (256,265,0): 221, 211, 122, (256,266,0): 218, 208, 119, (256,267,0): 211, 204, 116, (256,268,0): 205, 197, 112, (256,269,0): 197, 191, 107, (256,270,0): 192, 186, 102, (256,271,0): 187, 182, 100, (256,272,0): 183, 180, 99, (256,273,0): 182, 181, 101, (256,274,0): 181, 184, 105, (256,275,0): 184, 189, 109, (256,276,0): 184, 193, 114, (256,277,0): 184, 192, 115, (256,278,0): 181, 187, 113, (256,279,0): 179, 182, 111, (256,280,0): 163, 164, 98, (256,281,0): 155, 154, 89, (256,282,0): 148, 144, 83, (256,283,0): 145, 141, 80, (256,284,0): 147, 147, 87, (256,285,0): 152, 153, 95, (256,286,0): 151, 155, 96, (256,287,0): 146, 156, 95, (256,288,0): 149, 163, 102, (256,289,0): 145, 163, 101, (256,290,0): 145, 163, 103, (256,291,0): 146, 164, 104, (256,292,0): 148, 163, 104, (256,293,0): 146, 160, 101, (256,294,0): 142, 153, 97, (256,295,0): 138, 147, 92, (256,296,0): 130, 137, 85, (256,297,0): 130, 134, 83, (256,298,0): 133, 137, 87, (256,299,0): 137, 145, 94, (256,300,0): 140, 153, 100, (256,301,0): 143, 160, 106, (256,302,0): 155, 175, 122, (256,303,0): 163, 192, 134, (256,304,0): 162, 203, 137, (256,305,0): 166, 216, 145, (256,306,0): 179, 229, 158, (256,307,0): 186, 236, 163, (256,308,0): 186, 238, 164, (256,309,0): 186, 238, 163, (256,310,0): 188, 241, 163, (256,311,0): 193, 244, 167, (256,312,0): 198, 247, 168, (256,313,0): 197, 244, 166, (256,314,0): 198, 242, 165, (256,315,0): 199, 240, 162, (256,316,0): 200, 236, 162, (256,317,0): 195, 229, 155, (256,318,0): 186, 218, 145, (256,319,0): 186, 207, 138, (256,320,0): 184, 185, 125, (256,321,0): 178, 169, 114, (256,322,0): 159, 147, 97, (256,323,0): 139, 124, 81, (256,324,0): 122, 102, 67, (256,325,0): 108, 87, 56, (256,326,0): 100, 78, 54, (256,327,0): 96, 73, 55, (256,328,0): 89, 67, 53, (256,329,0): 82, 63, 49, (256,330,0): 75, 57, 45, (256,331,0): 71, 53, 43, (256,332,0): 70, 50, 41, (256,333,0): 68, 48, 39, (256,334,0): 66, 43, 35, (256,335,0): 61, 41, 32, (256,336,0): 60, 44, 31, (256,337,0): 59, 46, 30, (256,338,0): 61, 47, 34, (256,339,0): 64, 50, 37, (256,340,0): 66, 52, 39, (256,341,0): 66, 54, 40, (256,342,0): 68, 54, 41, (256,343,0): 67, 55, 41, (256,344,0): 63, 51, 39, (256,345,0): 61, 51, 39, (256,346,0): 61, 51, 41, (256,347,0): 62, 52, 42, (256,348,0): 65, 55, 45, (256,349,0): 69, 59, 49, (256,350,0): 72, 62, 52, (256,351,0): 71, 65, 53, (256,352,0): 76, 74, 59, (256,353,0): 79, 82, 65, (256,354,0): 89, 90, 72, (256,355,0): 99, 98, 80, (256,356,0): 102, 101, 83, (256,357,0): 101, 98, 79, (256,358,0): 98, 92, 76, (256,359,0): 92, 89, 72, (256,360,0): 102, 99, 84, (256,361,0): 104, 102, 89, (256,362,0): 107, 109, 96, (256,363,0): 112, 115, 104, (256,364,0): 116, 124, 111, (256,365,0): 121, 131, 120, (256,366,0): 126, 138, 128, (256,367,0): 130, 142, 132, (256,368,0): 127, 139, 127, (256,369,0): 128, 138, 127, (256,370,0): 126, 138, 126, (256,371,0): 126, 138, 126, (256,372,0): 125, 138, 128, (256,373,0): 125, 138, 128, (256,374,0): 124, 140, 130, (256,375,0): 124, 141, 133, (256,376,0): 121, 140, 134, (256,377,0): 124, 145, 138, (256,378,0): 129, 152, 146, (256,379,0): 131, 156, 152, (256,380,0): 131, 160, 156, (256,381,0): 135, 164, 160, (256,382,0): 140, 171, 166, (256,383,0): 144, 174, 174, (256,384,0): 151, 180, 188, (256,385,0): 155, 184, 198, (256,386,0): 158, 189, 207, (256,387,0): 161, 193, 214, (256,388,0): 161, 197, 221, (256,389,0): 160, 201, 229, (256,390,0): 160, 207, 237, (256,391,0): 159, 212, 244, (256,392,0): 160, 216, 249, (256,393,0): 162, 222, 255, (256,394,0): 164, 224, 255, (256,395,0): 162, 222, 255, (256,396,0): 166, 221, 255, (256,397,0): 169, 222, 255, (256,398,0): 168, 217, 255, (256,399,0): 168, 206, 245, (256,400,0): 165, 185, 218, (256,401,0): 147, 158, 186, (256,402,0): 119, 131, 157, (256,403,0): 108, 120, 144, (256,404,0): 107, 122, 141, (256,405,0): 110, 126, 141, (256,406,0): 116, 132, 145, (256,407,0): 121, 137, 150, (256,408,0): 122, 139, 149, (256,409,0): 121, 137, 150, (256,410,0): 119, 135, 148, (256,411,0): 118, 134, 149, (256,412,0): 117, 132, 151, (256,413,0): 118, 133, 154, (256,414,0): 118, 133, 156, (256,415,0): 118, 134, 160, (256,416,0): 115, 132, 160, (256,417,0): 114, 133, 163, (256,418,0): 115, 134, 164, (256,419,0): 115, 135, 162, (256,420,0): 115, 135, 162, (256,421,0): 114, 134, 161, (256,422,0): 113, 133, 160, (256,423,0): 112, 131, 161, (256,424,0): 111, 130, 160, (256,425,0): 112, 133, 164, (256,426,0): 116, 137, 168, (256,427,0): 118, 138, 171, (256,428,0): 119, 139, 172, (256,429,0): 117, 137, 172, (256,430,0): 114, 134, 169, (256,431,0): 115, 131, 164, (256,432,0): 116, 128, 152, (256,433,0): 120, 128, 149, (256,434,0): 120, 128, 149, (256,435,0): 119, 126, 145, (256,436,0): 115, 122, 141, (256,437,0): 113, 120, 138, (256,438,0): 116, 121, 140, (256,439,0): 119, 125, 141, (256,440,0): 123, 126, 143, (256,441,0): 124, 127, 142, (256,442,0): 125, 127, 142, (256,443,0): 124, 126, 139, (256,444,0): 121, 123, 136, (256,445,0): 118, 117, 131, (256,446,0): 113, 113, 125, (256,447,0): 107, 109, 121, (256,448,0): 104, 111, 121, (256,449,0): 104, 113, 120, (256,450,0): 105, 112, 120, (256,451,0): 105, 112, 120, (256,452,0): 105, 109, 118, (256,453,0): 103, 106, 115, (256,454,0): 102, 102, 110, (256,455,0): 99, 99, 107, (256,456,0): 98, 95, 104, (256,457,0): 95, 92, 101, (256,458,0): 93, 88, 95, (256,459,0): 91, 84, 92, (256,460,0): 91, 81, 90, (256,461,0): 92, 82, 91, (256,462,0): 94, 83, 91, (256,463,0): 93, 86, 94, (256,464,0): 89, 86, 97, (256,465,0): 89, 87, 100, (256,466,0): 91, 89, 100, (256,467,0): 92, 91, 99, (256,468,0): 91, 88, 95, (256,469,0): 88, 86, 91, (256,470,0): 88, 83, 87, (256,471,0): 87, 81, 85, (256,472,0): 83, 77, 79, (256,473,0): 83, 74, 75, (256,474,0): 82, 72, 73, (256,475,0): 80, 70, 71, (256,476,0): 78, 66, 70, (256,477,0): 77, 65, 69, (256,478,0): 76, 64, 68, (256,479,0): 75, 63, 67, (256,480,0): 76, 64, 68, (256,481,0): 76, 64, 68, (256,482,0): 76, 64, 68, (256,483,0): 75, 63, 67, (256,484,0): 75, 63, 67, (256,485,0): 72, 61, 65, (256,486,0): 71, 60, 64, (256,487,0): 70, 61, 64, (256,488,0): 69, 60, 63, (256,489,0): 73, 67, 69, (256,490,0): 80, 76, 77, (256,491,0): 85, 83, 86, (256,492,0): 91, 91, 93, (256,493,0): 98, 99, 101, (256,494,0): 107, 108, 110, (256,495,0): 114, 115, 119, (256,496,0): 130, 128, 139, (256,497,0): 127, 125, 138, (256,498,0): 122, 122, 132, (256,499,0): 119, 119, 129, (256,500,0): 117, 120, 127, (256,501,0): 117, 122, 128, (256,502,0): 116, 125, 130, (256,503,0): 115, 126, 132, (256,504,0): 116, 131, 138, (256,505,0): 119, 136, 144, (256,506,0): 124, 142, 154, (256,507,0): 129, 148, 163, (256,508,0): 131, 152, 171, (256,509,0): 136, 157, 178, (256,510,0): 140, 162, 186, (256,511,0): 146, 166, 191, (256,512,0): 141, 159, 183, (256,513,0): 139, 155, 180, (256,514,0): 132, 152, 176, (256,515,0): 130, 152, 175, (256,516,0): 127, 152, 174, (256,517,0): 125, 150, 172, (256,518,0): 123, 145, 168, (256,519,0): 120, 140, 164, (256,520,0): 122, 138, 161, (256,521,0): 122, 134, 156, (256,522,0): 117, 128, 148, (256,523,0): 115, 123, 142, (256,524,0): 113, 120, 138, (256,525,0): 112, 119, 135, (256,526,0): 113, 121, 134, (256,527,0): 113, 123, 135, (256,528,0): 110, 122, 138, (256,529,0): 108, 121, 138, (256,530,0): 106, 119, 135, (256,531,0): 104, 117, 133, (256,532,0): 103, 115, 129, (256,533,0): 102, 114, 128, (256,534,0): 102, 114, 126, (256,535,0): 103, 113, 125, (256,536,0): 100, 110, 122, (256,537,0): 100, 110, 122, (256,538,0): 102, 109, 125, (256,539,0): 103, 110, 126, (256,540,0): 105, 112, 130, (256,541,0): 107, 114, 132, (256,542,0): 108, 115, 134, (256,543,0): 109, 116, 135, (256,544,0): 110, 115, 134, (256,545,0): 111, 114, 133, (256,546,0): 107, 108, 126, (256,547,0): 100, 99, 117, (256,548,0): 90, 87, 104, (256,549,0): 81, 77, 92, (256,550,0): 77, 70, 86, (256,551,0): 76, 70, 84, (256,552,0): 78, 70, 83, (256,553,0): 82, 72, 83, (256,554,0): 83, 73, 82, (256,555,0): 81, 71, 79, (256,556,0): 76, 70, 74, (256,557,0): 73, 67, 69, (256,558,0): 73, 67, 71, (256,559,0): 73, 68, 74, (256,560,0): 69, 68, 76, (256,561,0): 70, 70, 80, (256,562,0): 72, 72, 82, (256,563,0): 77, 77, 87, (256,564,0): 82, 85, 94, (256,565,0): 89, 91, 103, (256,566,0): 94, 98, 109, (256,567,0): 98, 102, 113, (256,568,0): 96, 100, 112, (256,569,0): 97, 101, 113, (256,570,0): 96, 102, 116, (256,571,0): 97, 103, 117, (256,572,0): 97, 105, 118, (256,573,0): 98, 106, 119, (256,574,0): 98, 106, 119, (256,575,0): 96, 105, 120, (256,576,0): 100, 112, 126, (256,577,0): 100, 114, 127, (256,578,0): 101, 115, 128, (256,579,0): 102, 116, 129, (256,580,0): 103, 115, 131, (256,581,0): 103, 115, 131, (256,582,0): 102, 113, 131, (256,583,0): 101, 112, 130, (256,584,0): 106, 117, 137, (256,585,0): 107, 118, 138, (256,586,0): 109, 120, 140, (256,587,0): 109, 120, 142, (256,588,0): 109, 120, 142, (256,589,0): 108, 119, 141, (256,590,0): 106, 116, 141, (256,591,0): 105, 116, 138, (256,592,0): 98, 106, 125, (256,593,0): 95, 104, 119, (256,594,0): 93, 100, 116, (256,595,0): 91, 99, 112, (256,596,0): 91, 97, 109, (256,597,0): 90, 94, 105, (256,598,0): 85, 87, 99, (256,599,0): 81, 83, 95, (257,0,0): 53, 42, 50, (257,1,0): 52, 41, 49, (257,2,0): 51, 40, 48, (257,3,0): 50, 39, 47, (257,4,0): 49, 38, 46, (257,5,0): 49, 38, 46, (257,6,0): 50, 38, 48, (257,7,0): 51, 39, 49, (257,8,0): 51, 39, 51, (257,9,0): 51, 39, 51, (257,10,0): 51, 39, 53, (257,11,0): 50, 38, 52, (257,12,0): 50, 38, 52, (257,13,0): 49, 37, 51, (257,14,0): 49, 37, 51, (257,15,0): 49, 35, 50, (257,16,0): 54, 37, 55, (257,17,0): 55, 36, 55, (257,18,0): 56, 38, 54, (257,19,0): 57, 39, 55, (257,20,0): 60, 39, 54, (257,21,0): 61, 40, 55, (257,22,0): 62, 42, 54, (257,23,0): 62, 42, 53, (257,24,0): 65, 44, 53, (257,25,0): 66, 45, 54, (257,26,0): 69, 46, 54, (257,27,0): 71, 48, 54, (257,28,0): 72, 49, 55, (257,29,0): 72, 49, 55, (257,30,0): 74, 49, 53, (257,31,0): 73, 48, 52, (257,32,0): 71, 49, 52, (257,33,0): 71, 49, 52, (257,34,0): 72, 47, 51, (257,35,0): 72, 47, 51, (257,36,0): 71, 46, 50, (257,37,0): 71, 46, 50, (257,38,0): 71, 44, 49, (257,39,0): 71, 44, 49, (257,40,0): 76, 47, 52, (257,41,0): 76, 47, 52, (257,42,0): 77, 48, 53, (257,43,0): 77, 48, 53, (257,44,0): 79, 48, 54, (257,45,0): 79, 48, 54, (257,46,0): 80, 49, 55, (257,47,0): 80, 49, 54, (257,48,0): 80, 50, 50, (257,49,0): 80, 50, 48, (257,50,0): 80, 50, 48, (257,51,0): 81, 51, 49, (257,52,0): 82, 52, 52, (257,53,0): 82, 52, 52, (257,54,0): 82, 52, 52, (257,55,0): 83, 53, 53, (257,56,0): 83, 53, 55, (257,57,0): 84, 54, 56, (257,58,0): 85, 55, 57, (257,59,0): 87, 57, 59, (257,60,0): 88, 57, 62, (257,61,0): 90, 59, 64, (257,62,0): 91, 60, 65, (257,63,0): 92, 62, 62, (257,64,0): 92, 63, 55, (257,65,0): 93, 65, 53, (257,66,0): 94, 66, 54, (257,67,0): 96, 68, 56, (257,68,0): 98, 70, 56, (257,69,0): 99, 71, 57, (257,70,0): 101, 73, 59, (257,71,0): 101, 73, 59, (257,72,0): 101, 74, 57, (257,73,0): 101, 74, 57, (257,74,0): 101, 74, 55, (257,75,0): 101, 74, 55, (257,76,0): 101, 74, 55, (257,77,0): 101, 74, 55, (257,78,0): 101, 74, 53, (257,79,0): 102, 74, 53, (257,80,0): 105, 74, 53, (257,81,0): 106, 74, 53, (257,82,0): 106, 74, 53, (257,83,0): 106, 74, 53, (257,84,0): 106, 74, 53, (257,85,0): 106, 74, 53, (257,86,0): 106, 74, 53, (257,87,0): 106, 74, 53, (257,88,0): 106, 74, 53, (257,89,0): 106, 74, 53, (257,90,0): 107, 75, 54, (257,91,0): 108, 76, 55, (257,92,0): 109, 77, 56, (257,93,0): 110, 78, 57, (257,94,0): 111, 79, 58, (257,95,0): 111, 79, 56, (257,96,0): 113, 77, 55, (257,97,0): 113, 77, 53, (257,98,0): 114, 78, 54, (257,99,0): 113, 77, 53, (257,100,0): 112, 76, 54, (257,101,0): 110, 74, 52, (257,102,0): 109, 72, 53, (257,103,0): 107, 70, 51, (257,104,0): 106, 69, 50, (257,105,0): 106, 69, 50, (257,106,0): 105, 68, 50, (257,107,0): 105, 68, 50, (257,108,0): 104, 67, 51, (257,109,0): 104, 67, 51, (257,110,0): 103, 66, 50, (257,111,0): 102, 66, 50, (257,112,0): 97, 66, 48, (257,113,0): 96, 67, 49, (257,114,0): 98, 69, 51, (257,115,0): 99, 70, 52, (257,116,0): 100, 71, 53, (257,117,0): 100, 71, 53, (257,118,0): 99, 70, 52, (257,119,0): 99, 70, 52, (257,120,0): 97, 68, 50, (257,121,0): 97, 68, 50, (257,122,0): 97, 68, 50, (257,123,0): 97, 68, 50, (257,124,0): 96, 67, 49, (257,125,0): 94, 65, 47, (257,126,0): 92, 63, 45, (257,127,0): 91, 63, 42, (257,128,0): 95, 63, 42, (257,129,0): 95, 63, 42, (257,130,0): 95, 63, 42, (257,131,0): 95, 63, 42, (257,132,0): 95, 63, 42, (257,133,0): 95, 63, 42, (257,134,0): 95, 63, 42, (257,135,0): 95, 63, 42, (257,136,0): 92, 60, 39, (257,137,0): 93, 61, 40, (257,138,0): 93, 61, 40, (257,139,0): 94, 62, 41, (257,140,0): 94, 62, 41, (257,141,0): 95, 63, 42, (257,142,0): 95, 63, 42, (257,143,0): 95, 63, 40, (257,144,0): 96, 61, 33, (257,145,0): 97, 62, 32, (257,146,0): 98, 63, 33, (257,147,0): 98, 63, 33, (257,148,0): 98, 63, 33, (257,149,0): 98, 63, 33, (257,150,0): 97, 62, 34, (257,151,0): 96, 61, 33, (257,152,0): 99, 63, 37, (257,153,0): 99, 63, 37, (257,154,0): 101, 65, 41, (257,155,0): 101, 65, 41, (257,156,0): 101, 65, 41, (257,157,0): 101, 65, 41, (257,158,0): 99, 63, 39, (257,159,0): 99, 63, 37, (257,160,0): 100, 63, 34, (257,161,0): 101, 65, 33, (257,162,0): 101, 65, 33, (257,163,0): 101, 64, 35, (257,164,0): 99, 64, 34, (257,165,0): 97, 62, 32, (257,166,0): 94, 59, 31, (257,167,0): 93, 58, 30, (257,168,0): 94, 60, 33, (257,169,0): 93, 59, 32, (257,170,0): 91, 57, 32, (257,171,0): 89, 55, 30, (257,172,0): 87, 55, 32, (257,173,0): 87, 55, 32, (257,174,0): 87, 55, 32, (257,175,0): 90, 55, 33, (257,176,0): 90, 53, 34, (257,177,0): 90, 53, 34, (257,178,0): 89, 52, 33, (257,179,0): 89, 52, 33, (257,180,0): 91, 54, 35, (257,181,0): 93, 57, 35, (257,182,0): 95, 59, 37, (257,183,0): 97, 61, 39, (257,184,0): 103, 65, 44, (257,185,0): 101, 63, 42, (257,186,0): 99, 61, 38, (257,187,0): 100, 62, 39, (257,188,0): 103, 65, 42, (257,189,0): 104, 66, 43, (257,190,0): 105, 65, 40, (257,191,0): 103, 62, 40, (257,192,0): 107, 61, 45, (257,193,0): 108, 60, 46, (257,194,0): 107, 61, 46, (257,195,0): 106, 60, 45, (257,196,0): 102, 59, 43, (257,197,0): 99, 56, 40, (257,198,0): 96, 55, 37, (257,199,0): 94, 53, 35, (257,200,0): 90, 52, 33, (257,201,0): 88, 51, 33, (257,202,0): 86, 49, 31, (257,203,0): 83, 48, 29, (257,204,0): 81, 46, 27, (257,205,0): 79, 46, 27, (257,206,0): 79, 46, 29, (257,207,0): 79, 46, 27, (257,208,0): 86, 53, 34, (257,209,0): 89, 57, 36, (257,210,0): 93, 61, 38, (257,211,0): 95, 64, 36, (257,212,0): 96, 67, 37, (257,213,0): 100, 72, 35, (257,214,0): 105, 80, 39, (257,215,0): 110, 86, 38, (257,216,0): 129, 106, 54, (257,217,0): 140, 118, 60, (257,218,0): 155, 135, 72, (257,219,0): 168, 149, 80, (257,220,0): 175, 159, 84, (257,221,0): 177, 161, 84, (257,222,0): 178, 162, 84, (257,223,0): 180, 163, 81, (257,224,0): 181, 159, 73, (257,225,0): 187, 161, 74, (257,226,0): 190, 164, 80, (257,227,0): 188, 163, 81, (257,228,0): 183, 160, 80, (257,229,0): 181, 158, 82, (257,230,0): 181, 159, 84, (257,231,0): 182, 160, 87, (257,232,0): 178, 158, 87, (257,233,0): 175, 157, 83, (257,234,0): 171, 155, 78, (257,235,0): 168, 155, 76, (257,236,0): 170, 157, 78, (257,237,0): 175, 164, 82, (257,238,0): 181, 171, 86, (257,239,0): 186, 174, 88, (257,240,0): 189, 173, 86, (257,241,0): 195, 178, 90, (257,242,0): 200, 183, 95, (257,243,0): 204, 187, 99, (257,244,0): 206, 189, 101, (257,245,0): 208, 191, 101, (257,246,0): 211, 194, 104, (257,247,0): 214, 197, 105, (257,248,0): 213, 196, 104, (257,249,0): 215, 198, 106, (257,250,0): 217, 200, 108, (257,251,0): 217, 201, 106, (257,252,0): 217, 201, 106, (257,253,0): 218, 202, 106, (257,254,0): 222, 206, 111, (257,255,0): 226, 209, 117, (257,256,0): 227, 210, 122, (257,257,0): 228, 210, 124, (257,258,0): 228, 210, 124, (257,259,0): 227, 211, 123, (257,260,0): 227, 211, 123, (257,261,0): 225, 212, 120, (257,262,0): 225, 212, 120, (257,263,0): 223, 212, 120, (257,264,0): 223, 212, 120, (257,265,0): 223, 214, 121, (257,266,0): 222, 213, 122, (257,267,0): 217, 210, 119, (257,268,0): 211, 204, 116, (257,269,0): 202, 196, 108, (257,270,0): 195, 189, 103, (257,271,0): 190, 184, 100, (257,272,0): 185, 180, 99, (257,273,0): 183, 180, 103, (257,274,0): 183, 181, 104, (257,275,0): 183, 186, 109, (257,276,0): 185, 189, 112, (257,277,0): 183, 190, 113, (257,278,0): 181, 184, 113, (257,279,0): 177, 180, 111, (257,280,0): 163, 162, 97, (257,281,0): 154, 153, 89, (257,282,0): 146, 142, 81, (257,283,0): 141, 139, 80, (257,284,0): 144, 143, 86, (257,285,0): 146, 149, 92, (257,286,0): 148, 153, 95, (257,287,0): 144, 154, 94, (257,288,0): 146, 162, 100, (257,289,0): 144, 162, 102, (257,290,0): 146, 164, 104, (257,291,0): 148, 168, 109, (257,292,0): 149, 169, 110, (257,293,0): 146, 164, 106, (257,294,0): 143, 156, 102, (257,295,0): 139, 149, 96, (257,296,0): 131, 138, 87, (257,297,0): 129, 133, 83, (257,298,0): 130, 132, 85, (257,299,0): 133, 136, 89, (257,300,0): 133, 141, 94, (257,301,0): 134, 146, 98, (257,302,0): 143, 159, 110, (257,303,0): 151, 176, 121, (257,304,0): 155, 193, 132, (257,305,0): 162, 207, 140, (257,306,0): 174, 219, 152, (257,307,0): 181, 228, 160, (257,308,0): 181, 231, 162, (257,309,0): 182, 233, 164, (257,310,0): 184, 237, 165, (257,311,0): 188, 241, 169, (257,312,0): 190, 242, 170, (257,313,0): 190, 240, 169, (257,314,0): 192, 239, 167, (257,315,0): 195, 238, 167, (257,316,0): 195, 236, 166, (257,317,0): 192, 229, 160, (257,318,0): 185, 220, 152, (257,319,0): 184, 211, 144, (257,320,0): 187, 196, 133, (257,321,0): 182, 180, 121, (257,322,0): 166, 159, 105, (257,323,0): 146, 134, 86, (257,324,0): 129, 111, 71, (257,325,0): 114, 94, 61, (257,326,0): 107, 83, 57, (257,327,0): 100, 78, 55, (257,328,0): 94, 73, 56, (257,329,0): 87, 68, 53, (257,330,0): 79, 61, 47, (257,331,0): 75, 57, 45, (257,332,0): 74, 54, 43, (257,333,0): 72, 52, 41, (257,334,0): 71, 48, 40, (257,335,0): 66, 46, 35, (257,336,0): 63, 47, 32, (257,337,0): 61, 49, 33, (257,338,0): 63, 51, 35, (257,339,0): 65, 53, 37, (257,340,0): 67, 55, 41, (257,341,0): 69, 57, 43, (257,342,0): 70, 58, 44, (257,343,0): 71, 59, 45, (257,344,0): 67, 57, 45, (257,345,0): 66, 56, 44, (257,346,0): 65, 55, 45, (257,347,0): 65, 55, 45, (257,348,0): 67, 57, 47, (257,349,0): 70, 60, 50, (257,350,0): 74, 64, 55, (257,351,0): 74, 68, 56, (257,352,0): 80, 78, 65, (257,353,0): 81, 84, 67, (257,354,0): 88, 89, 71, (257,355,0): 94, 95, 77, (257,356,0): 99, 98, 78, (257,357,0): 99, 98, 78, (257,358,0): 98, 95, 76, (257,359,0): 96, 93, 76, (257,360,0): 101, 99, 84, (257,361,0): 102, 103, 89, (257,362,0): 107, 109, 96, (257,363,0): 113, 116, 107, (257,364,0): 117, 122, 115, (257,365,0): 122, 129, 122, (257,366,0): 124, 133, 128, (257,367,0): 126, 136, 128, (257,368,0): 131, 138, 130, (257,369,0): 130, 138, 127, (257,370,0): 127, 137, 126, (257,371,0): 127, 137, 126, (257,372,0): 125, 137, 127, (257,373,0): 124, 137, 128, (257,374,0): 124, 137, 130, (257,375,0): 121, 138, 130, (257,376,0): 122, 139, 133, (257,377,0): 123, 144, 139, (257,378,0): 128, 148, 146, (257,379,0): 131, 153, 150, (257,380,0): 132, 157, 154, (257,381,0): 135, 161, 158, (257,382,0): 141, 167, 164, (257,383,0): 145, 170, 174, (257,384,0): 147, 174, 185, (257,385,0): 151, 178, 195, (257,386,0): 156, 183, 204, (257,387,0): 159, 187, 211, (257,388,0): 157, 191, 218, (257,389,0): 158, 195, 224, (257,390,0): 157, 202, 235, (257,391,0): 157, 207, 242, (257,392,0): 153, 209, 244, (257,393,0): 154, 212, 249, (257,394,0): 154, 214, 251, (257,395,0): 153, 211, 251, (257,396,0): 158, 211, 253, (257,397,0): 163, 212, 255, (257,398,0): 161, 204, 249, (257,399,0): 157, 191, 229, (257,400,0): 152, 168, 194, (257,401,0): 136, 144, 163, (257,402,0): 115, 123, 142, (257,403,0): 109, 118, 135, (257,404,0): 109, 121, 135, (257,405,0): 112, 124, 136, (257,406,0): 115, 127, 139, (257,407,0): 119, 131, 143, (257,408,0): 118, 130, 142, (257,409,0): 118, 130, 142, (257,410,0): 116, 128, 142, (257,411,0): 116, 128, 142, (257,412,0): 116, 127, 145, (257,413,0): 117, 128, 146, (257,414,0): 118, 129, 151, (257,415,0): 117, 129, 153, (257,416,0): 116, 133, 159, (257,417,0): 115, 135, 162, (257,418,0): 115, 135, 162, (257,419,0): 116, 136, 163, (257,420,0): 115, 135, 162, (257,421,0): 114, 134, 161, (257,422,0): 113, 132, 162, (257,423,0): 112, 131, 161, (257,424,0): 111, 130, 162, (257,425,0): 113, 132, 164, (257,426,0): 117, 136, 169, (257,427,0): 120, 139, 172, (257,428,0): 121, 140, 173, (257,429,0): 119, 138, 171, (257,430,0): 116, 135, 168, (257,431,0): 117, 132, 163, (257,432,0): 119, 131, 155, (257,433,0): 122, 130, 151, (257,434,0): 123, 129, 151, (257,435,0): 119, 125, 147, (257,436,0): 116, 122, 144, (257,437,0): 115, 122, 141, (257,438,0): 119, 124, 144, (257,439,0): 122, 127, 146, (257,440,0): 123, 126, 145, (257,441,0): 124, 127, 144, (257,442,0): 125, 126, 144, (257,443,0): 124, 126, 141, (257,444,0): 123, 122, 138, (257,445,0): 118, 117, 133, (257,446,0): 114, 113, 127, (257,447,0): 109, 111, 124, (257,448,0): 105, 112, 122, (257,449,0): 105, 114, 123, (257,450,0): 107, 114, 124, (257,451,0): 107, 114, 124, (257,452,0): 107, 111, 122, (257,453,0): 105, 107, 119, (257,454,0): 104, 104, 114, (257,455,0): 102, 102, 112, (257,456,0): 98, 95, 106, (257,457,0): 95, 92, 103, (257,458,0): 94, 88, 98, (257,459,0): 91, 83, 94, (257,460,0): 92, 82, 93, (257,461,0): 92, 82, 93, (257,462,0): 94, 82, 92, (257,463,0): 93, 85, 96, (257,464,0): 89, 85, 99, (257,465,0): 88, 86, 100, (257,466,0): 89, 87, 100, (257,467,0): 91, 90, 98, (257,468,0): 93, 90, 97, (257,469,0): 92, 90, 95, (257,470,0): 91, 86, 90, (257,471,0): 89, 83, 85, (257,472,0): 87, 78, 79, (257,473,0): 87, 79, 77, (257,474,0): 86, 76, 75, (257,475,0): 85, 73, 73, (257,476,0): 84, 69, 72, (257,477,0): 82, 67, 70, (257,478,0): 79, 64, 67, (257,479,0): 78, 63, 66, (257,480,0): 80, 65, 70, (257,481,0): 80, 65, 70, (257,482,0): 79, 64, 69, (257,483,0): 77, 65, 69, (257,484,0): 76, 64, 68, (257,485,0): 74, 63, 67, (257,486,0): 72, 63, 66, (257,487,0): 71, 62, 65, (257,488,0): 69, 63, 65, (257,489,0): 74, 70, 71, (257,490,0): 79, 77, 78, (257,491,0): 86, 84, 85, (257,492,0): 91, 91, 91, (257,493,0): 98, 98, 98, (257,494,0): 106, 106, 106, (257,495,0): 112, 112, 114, (257,496,0): 120, 117, 126, (257,497,0): 117, 116, 124, (257,498,0): 115, 114, 122, (257,499,0): 114, 114, 122, (257,500,0): 113, 116, 121, (257,501,0): 115, 120, 124, (257,502,0): 116, 123, 129, (257,503,0): 116, 127, 133, (257,504,0): 121, 134, 142, (257,505,0): 123, 140, 148, (257,506,0): 131, 147, 160, (257,507,0): 135, 154, 169, (257,508,0): 138, 156, 176, (257,509,0): 140, 160, 184, (257,510,0): 143, 164, 191, (257,511,0): 148, 168, 195, (257,512,0): 142, 158, 184, (257,513,0): 139, 155, 180, (257,514,0): 133, 153, 177, (257,515,0): 129, 154, 176, (257,516,0): 128, 154, 177, (257,517,0): 125, 153, 175, (257,518,0): 123, 147, 171, (257,519,0): 121, 143, 166, (257,520,0): 121, 139, 163, (257,521,0): 119, 134, 155, (257,522,0): 116, 127, 149, (257,523,0): 112, 120, 139, (257,524,0): 110, 117, 135, (257,525,0): 111, 119, 132, (257,526,0): 112, 122, 134, (257,527,0): 112, 124, 136, (257,528,0): 112, 123, 141, (257,529,0): 110, 123, 142, (257,530,0): 108, 121, 138, (257,531,0): 106, 119, 135, (257,532,0): 104, 117, 133, (257,533,0): 102, 116, 129, (257,534,0): 102, 114, 126, (257,535,0): 101, 113, 125, (257,536,0): 100, 110, 122, (257,537,0): 100, 110, 122, (257,538,0): 102, 109, 125, (257,539,0): 103, 110, 126, (257,540,0): 105, 112, 131, (257,541,0): 106, 113, 132, (257,542,0): 107, 113, 135, (257,543,0): 108, 115, 134, (257,544,0): 110, 115, 135, (257,545,0): 111, 114, 133, (257,546,0): 107, 108, 126, (257,547,0): 100, 99, 117, (257,548,0): 89, 86, 103, (257,549,0): 81, 77, 92, (257,550,0): 78, 69, 86, (257,551,0): 77, 69, 82, (257,552,0): 79, 68, 82, (257,553,0): 82, 70, 80, (257,554,0): 83, 71, 81, (257,555,0): 81, 71, 79, (257,556,0): 78, 69, 74, (257,557,0): 74, 68, 70, (257,558,0): 74, 68, 70, (257,559,0): 75, 70, 74, (257,560,0): 71, 70, 78, (257,561,0): 71, 71, 81, (257,562,0): 74, 74, 84, (257,563,0): 78, 78, 88, (257,564,0): 82, 85, 94, (257,565,0): 89, 92, 101, (257,566,0): 94, 98, 109, (257,567,0): 97, 101, 112, (257,568,0): 96, 100, 112, (257,569,0): 96, 100, 112, (257,570,0): 95, 101, 115, (257,571,0): 96, 102, 116, (257,572,0): 96, 104, 117, (257,573,0): 97, 105, 118, (257,574,0): 97, 105, 118, (257,575,0): 96, 106, 118, (257,576,0): 101, 113, 125, (257,577,0): 101, 115, 126, (257,578,0): 102, 116, 129, (257,579,0): 103, 117, 130, (257,580,0): 104, 118, 131, (257,581,0): 103, 116, 132, (257,582,0): 102, 115, 132, (257,583,0): 102, 115, 132, (257,584,0): 106, 119, 138, (257,585,0): 107, 120, 139, (257,586,0): 108, 120, 142, (257,587,0): 108, 120, 142, (257,588,0): 107, 119, 143, (257,589,0): 105, 117, 141, (257,590,0): 103, 115, 141, (257,591,0): 102, 114, 138, (257,592,0): 98, 109, 127, (257,593,0): 95, 107, 123, (257,594,0): 94, 103, 118, (257,595,0): 92, 102, 114, (257,596,0): 93, 99, 113, (257,597,0): 89, 95, 107, (257,598,0): 86, 90, 101, (257,599,0): 82, 86, 97, (258,0,0): 53, 42, 48, (258,1,0): 52, 41, 47, (258,2,0): 51, 40, 48, (258,3,0): 49, 38, 46, (258,4,0): 49, 38, 46, (258,5,0): 49, 38, 46, (258,6,0): 50, 38, 48, (258,7,0): 50, 38, 48, (258,8,0): 52, 40, 52, (258,9,0): 51, 39, 51, (258,10,0): 51, 39, 51, (258,11,0): 50, 38, 50, (258,12,0): 50, 38, 52, (258,13,0): 49, 37, 51, (258,14,0): 49, 37, 51, (258,15,0): 50, 36, 51, (258,16,0): 53, 36, 52, (258,17,0): 54, 36, 52, (258,18,0): 55, 37, 53, (258,19,0): 56, 38, 54, (258,20,0): 59, 38, 53, (258,21,0): 60, 39, 54, (258,22,0): 61, 41, 53, (258,23,0): 61, 41, 52, (258,24,0): 65, 44, 53, (258,25,0): 66, 45, 54, (258,26,0): 69, 46, 54, (258,27,0): 71, 48, 54, (258,28,0): 72, 49, 55, (258,29,0): 72, 50, 53, (258,30,0): 74, 49, 53, (258,31,0): 74, 49, 53, (258,32,0): 71, 49, 52, (258,33,0): 71, 49, 52, (258,34,0): 70, 48, 51, (258,35,0): 70, 48, 51, (258,36,0): 71, 46, 50, (258,37,0): 71, 46, 50, (258,38,0): 71, 44, 49, (258,39,0): 71, 44, 49, (258,40,0): 74, 47, 52, (258,41,0): 74, 47, 52, (258,42,0): 77, 48, 53, (258,43,0): 77, 48, 53, (258,44,0): 79, 48, 54, (258,45,0): 79, 48, 54, (258,46,0): 80, 49, 55, (258,47,0): 80, 49, 54, (258,48,0): 81, 51, 51, (258,49,0): 82, 52, 50, (258,50,0): 82, 52, 50, (258,51,0): 82, 52, 50, (258,52,0): 83, 53, 53, (258,53,0): 84, 54, 54, (258,54,0): 84, 54, 54, (258,55,0): 84, 54, 54, (258,56,0): 85, 55, 55, (258,57,0): 86, 56, 56, (258,58,0): 87, 57, 59, (258,59,0): 89, 59, 61, (258,60,0): 90, 60, 62, (258,61,0): 92, 62, 64, (258,62,0): 93, 63, 65, (258,63,0): 94, 64, 62, (258,64,0): 93, 64, 56, (258,65,0): 94, 66, 54, (258,66,0): 95, 67, 55, (258,67,0): 96, 68, 56, (258,68,0): 98, 70, 56, (258,69,0): 99, 71, 57, (258,70,0): 101, 74, 57, (258,71,0): 101, 74, 57, (258,72,0): 102, 75, 58, (258,73,0): 102, 75, 58, (258,74,0): 102, 75, 56, (258,75,0): 102, 75, 56, (258,76,0): 102, 75, 54, (258,77,0): 102, 75, 54, (258,78,0): 102, 75, 54, (258,79,0): 103, 75, 54, (258,80,0): 105, 74, 53, (258,81,0): 106, 74, 53, (258,82,0): 106, 74, 53, (258,83,0): 106, 74, 53, (258,84,0): 106, 74, 53, (258,85,0): 106, 74, 53, (258,86,0): 106, 74, 53, (258,87,0): 106, 74, 53, (258,88,0): 107, 75, 54, (258,89,0): 107, 75, 54, (258,90,0): 108, 76, 55, (258,91,0): 109, 77, 56, (258,92,0): 110, 78, 57, (258,93,0): 111, 79, 58, (258,94,0): 112, 80, 59, (258,95,0): 112, 80, 57, (258,96,0): 115, 79, 57, (258,97,0): 115, 79, 55, (258,98,0): 116, 80, 56, (258,99,0): 116, 80, 56, (258,100,0): 114, 78, 56, (258,101,0): 113, 77, 55, (258,102,0): 111, 75, 53, (258,103,0): 110, 74, 52, (258,104,0): 108, 71, 52, (258,105,0): 108, 71, 52, (258,106,0): 108, 71, 53, (258,107,0): 107, 70, 52, (258,108,0): 107, 70, 52, (258,109,0): 106, 69, 51, (258,110,0): 106, 69, 53, (258,111,0): 105, 69, 53, (258,112,0): 96, 65, 45, (258,113,0): 95, 67, 46, (258,114,0): 97, 69, 48, (258,115,0): 98, 70, 49, (258,116,0): 99, 71, 50, (258,117,0): 98, 70, 49, (258,118,0): 97, 69, 48, (258,119,0): 97, 69, 48, (258,120,0): 95, 67, 46, (258,121,0): 96, 68, 47, (258,122,0): 96, 68, 47, (258,123,0): 96, 68, 47, (258,124,0): 95, 67, 46, (258,125,0): 93, 65, 44, (258,126,0): 91, 63, 42, (258,127,0): 90, 62, 41, (258,128,0): 95, 63, 42, (258,129,0): 95, 63, 42, (258,130,0): 95, 63, 42, (258,131,0): 95, 63, 42, (258,132,0): 95, 63, 42, (258,133,0): 95, 63, 42, (258,134,0): 95, 63, 42, (258,135,0): 95, 63, 42, (258,136,0): 92, 60, 39, (258,137,0): 92, 60, 39, (258,138,0): 92, 60, 39, (258,139,0): 93, 61, 40, (258,140,0): 93, 61, 40, (258,141,0): 94, 62, 41, (258,142,0): 94, 62, 41, (258,143,0): 95, 63, 40, (258,144,0): 98, 63, 35, (258,145,0): 99, 64, 34, (258,146,0): 100, 65, 35, (258,147,0): 101, 66, 36, (258,148,0): 101, 66, 36, (258,149,0): 100, 65, 35, (258,150,0): 99, 64, 36, (258,151,0): 98, 63, 35, (258,152,0): 100, 64, 38, (258,153,0): 100, 64, 38, (258,154,0): 102, 66, 42, (258,155,0): 102, 66, 42, (258,156,0): 102, 66, 42, (258,157,0): 102, 66, 42, (258,158,0): 100, 64, 40, (258,159,0): 100, 64, 38, (258,160,0): 102, 67, 39, (258,161,0): 102, 67, 37, (258,162,0): 102, 67, 37, (258,163,0): 102, 67, 39, (258,164,0): 101, 66, 38, (258,165,0): 99, 64, 36, (258,166,0): 97, 61, 35, (258,167,0): 96, 60, 34, (258,168,0): 97, 63, 38, (258,169,0): 96, 62, 37, (258,170,0): 94, 60, 35, (258,171,0): 91, 57, 32, (258,172,0): 90, 55, 33, (258,173,0): 89, 54, 32, (258,174,0): 89, 54, 32, (258,175,0): 89, 54, 32, (258,176,0): 91, 55, 33, (258,177,0): 91, 55, 33, (258,178,0): 93, 55, 34, (258,179,0): 94, 56, 35, (258,180,0): 96, 58, 37, (258,181,0): 98, 60, 39, (258,182,0): 101, 63, 42, (258,183,0): 102, 64, 41, (258,184,0): 110, 69, 47, (258,185,0): 108, 67, 45, (258,186,0): 106, 65, 43, (258,187,0): 107, 66, 44, (258,188,0): 109, 69, 44, (258,189,0): 109, 69, 44, (258,190,0): 108, 66, 42, (258,191,0): 106, 64, 40, (258,192,0): 111, 66, 47, (258,193,0): 110, 65, 46, (258,194,0): 109, 63, 47, (258,195,0): 106, 60, 44, (258,196,0): 101, 58, 41, (258,197,0): 97, 54, 37, (258,198,0): 92, 50, 34, (258,199,0): 90, 48, 32, (258,200,0): 86, 47, 30, (258,201,0): 84, 47, 31, (258,202,0): 83, 46, 30, (258,203,0): 81, 45, 29, (258,204,0): 80, 45, 26, (258,205,0): 81, 46, 27, (258,206,0): 80, 47, 28, (258,207,0): 80, 47, 28, (258,208,0): 89, 56, 37, (258,209,0): 91, 59, 38, (258,210,0): 94, 62, 39, (258,211,0): 97, 66, 38, (258,212,0): 99, 70, 38, (258,213,0): 105, 77, 40, (258,214,0): 114, 86, 46, (258,215,0): 121, 94, 47, (258,216,0): 144, 121, 67, (258,217,0): 153, 131, 71, (258,218,0): 166, 147, 79, (258,219,0): 177, 159, 87, (258,220,0): 183, 165, 89, (258,221,0): 185, 168, 88, (258,222,0): 186, 171, 88, (258,223,0): 188, 172, 87, (258,224,0): 187, 165, 79, (258,225,0): 190, 166, 78, (258,226,0): 192, 167, 83, (258,227,0): 188, 166, 83, (258,228,0): 185, 162, 82, (258,229,0): 182, 159, 83, (258,230,0): 180, 158, 83, (258,231,0): 180, 158, 83, (258,232,0): 180, 160, 87, (258,233,0): 177, 159, 85, (258,234,0): 174, 156, 80, (258,235,0): 172, 156, 78, (258,236,0): 174, 158, 80, (258,237,0): 177, 165, 83, (258,238,0): 182, 170, 86, (258,239,0): 188, 173, 88, (258,240,0): 192, 175, 87, (258,241,0): 198, 178, 89, (258,242,0): 204, 184, 95, (258,243,0): 207, 187, 98, (258,244,0): 209, 189, 100, (258,245,0): 211, 192, 100, (258,246,0): 214, 195, 103, (258,247,0): 217, 198, 104, (258,248,0): 217, 198, 104, (258,249,0): 219, 200, 106, (258,250,0): 221, 202, 108, (258,251,0): 220, 201, 106, (258,252,0): 219, 200, 105, (258,253,0): 220, 202, 104, (258,254,0): 224, 205, 110, (258,255,0): 227, 208, 114, (258,256,0): 229, 209, 122, (258,257,0): 229, 209, 123, (258,258,0): 229, 209, 123, (258,259,0): 227, 210, 122, (258,260,0): 227, 210, 120, (258,261,0): 226, 211, 118, (258,262,0): 225, 212, 118, (258,263,0): 223, 213, 118, (258,264,0): 224, 214, 119, (258,265,0): 225, 216, 123, (258,266,0): 224, 217, 126, (258,267,0): 222, 217, 125, (258,268,0): 217, 211, 123, (258,269,0): 207, 203, 114, (258,270,0): 198, 194, 107, (258,271,0): 192, 187, 103, (258,272,0): 186, 181, 100, (258,273,0): 183, 180, 101, (258,274,0): 183, 182, 102, (258,275,0): 182, 185, 106, (258,276,0): 183, 187, 110, (258,277,0): 180, 187, 110, (258,278,0): 178, 182, 108, (258,279,0): 175, 178, 107, (258,280,0): 163, 162, 95, (258,281,0): 153, 152, 87, (258,282,0): 145, 141, 78, (258,283,0): 138, 136, 75, (258,284,0): 140, 140, 80, (258,285,0): 142, 146, 87, (258,286,0): 145, 151, 91, (258,287,0): 142, 152, 91, (258,288,0): 142, 156, 94, (258,289,0): 141, 159, 97, (258,290,0): 146, 164, 102, (258,291,0): 151, 169, 109, (258,292,0): 153, 171, 111, (258,293,0): 150, 168, 110, (258,294,0): 145, 158, 104, (258,295,0): 142, 151, 98, (258,296,0): 135, 139, 89, (258,297,0): 129, 131, 84, (258,298,0): 126, 125, 81, (258,299,0): 124, 125, 81, (258,300,0): 121, 127, 83, (258,301,0): 120, 129, 84, (258,302,0): 127, 140, 94, (258,303,0): 134, 154, 103, (258,304,0): 144, 177, 120, (258,305,0): 151, 191, 128, (258,306,0): 164, 204, 141, (258,307,0): 172, 214, 150, (258,308,0): 174, 219, 154, (258,309,0): 176, 222, 157, (258,310,0): 179, 228, 162, (258,311,0): 184, 233, 167, (258,312,0): 186, 233, 165, (258,313,0): 188, 233, 166, (258,314,0): 191, 233, 167, (258,315,0): 194, 235, 169, (258,316,0): 194, 233, 168, (258,317,0): 191, 227, 163, (258,318,0): 185, 220, 156, (258,319,0): 186, 212, 149, (258,320,0): 193, 204, 144, (258,321,0): 189, 192, 135, (258,322,0): 175, 174, 120, (258,323,0): 157, 149, 103, (258,324,0): 138, 124, 85, (258,325,0): 123, 104, 72, (258,326,0): 112, 91, 64, (258,327,0): 106, 84, 63, (258,328,0): 99, 78, 59, (258,329,0): 92, 73, 58, (258,330,0): 83, 65, 51, (258,331,0): 78, 60, 46, (258,332,0): 77, 58, 44, (258,333,0): 76, 57, 43, (258,334,0): 76, 54, 43, (258,335,0): 72, 53, 39, (258,336,0): 65, 49, 34, (258,337,0): 64, 51, 35, (258,338,0): 65, 52, 36, (258,339,0): 68, 55, 39, (258,340,0): 69, 57, 43, (258,341,0): 71, 59, 45, (258,342,0): 73, 61, 47, (258,343,0): 74, 62, 48, (258,344,0): 75, 65, 53, (258,345,0): 73, 63, 51, (258,346,0): 70, 60, 50, (258,347,0): 67, 57, 47, (258,348,0): 66, 58, 47, (258,349,0): 69, 61, 50, (258,350,0): 74, 65, 56, (258,351,0): 77, 71, 59, (258,352,0): 82, 80, 67, (258,353,0): 83, 84, 68, (258,354,0): 89, 88, 70, (258,355,0): 94, 93, 75, (258,356,0): 97, 96, 76, (258,357,0): 99, 98, 78, (258,358,0): 101, 98, 81, (258,359,0): 100, 97, 80, (258,360,0): 100, 98, 83, (258,361,0): 102, 103, 89, (258,362,0): 107, 109, 96, (258,363,0): 114, 117, 108, (258,364,0): 118, 123, 116, (258,365,0): 120, 127, 120, (258,366,0): 118, 127, 122, (258,367,0): 117, 127, 119, (258,368,0): 129, 136, 128, (258,369,0): 129, 137, 126, (258,370,0): 126, 136, 127, (258,371,0): 126, 136, 127, (258,372,0): 124, 135, 127, (258,373,0): 122, 135, 126, (258,374,0): 122, 135, 128, (258,375,0): 118, 135, 127, (258,376,0): 120, 137, 131, (258,377,0): 121, 142, 137, (258,378,0): 126, 146, 144, (258,379,0): 129, 151, 148, (258,380,0): 129, 154, 151, (258,381,0): 133, 158, 155, (258,382,0): 137, 163, 162, (258,383,0): 141, 166, 170, (258,384,0): 141, 168, 179, (258,385,0): 144, 172, 186, (258,386,0): 149, 176, 195, (258,387,0): 150, 181, 202, (258,388,0): 152, 183, 211, (258,389,0): 152, 189, 218, (258,390,0): 152, 195, 229, (258,391,0): 153, 201, 237, (258,392,0): 146, 198, 235, (258,393,0): 145, 201, 238, (258,394,0): 144, 199, 238, (258,395,0): 144, 197, 237, (258,396,0): 150, 199, 240, (258,397,0): 154, 199, 240, (258,398,0): 147, 186, 229, (258,399,0): 140, 170, 208, (258,400,0): 129, 145, 170, (258,401,0): 119, 127, 146, (258,402,0): 106, 114, 133, (258,403,0): 105, 114, 131, (258,404,0): 110, 119, 134, (258,405,0): 111, 121, 133, (258,406,0): 113, 123, 135, (258,407,0): 115, 125, 135, (258,408,0): 110, 122, 134, (258,409,0): 110, 122, 134, (258,410,0): 109, 121, 135, (258,411,0): 110, 122, 136, (258,412,0): 111, 122, 140, (258,413,0): 112, 123, 141, (258,414,0): 114, 125, 147, (258,415,0): 114, 126, 150, (258,416,0): 118, 134, 159, (258,417,0): 117, 134, 160, (258,418,0): 118, 135, 161, (258,419,0): 118, 135, 161, (258,420,0): 118, 135, 163, (258,421,0): 116, 133, 161, (258,422,0): 115, 132, 160, (258,423,0): 114, 131, 159, (258,424,0): 112, 129, 159, (258,425,0): 115, 132, 162, (258,426,0): 119, 135, 168, (258,427,0): 123, 139, 172, (258,428,0): 124, 140, 173, (258,429,0): 123, 139, 172, (258,430,0): 121, 137, 171, (258,431,0): 120, 135, 166, (258,432,0): 122, 134, 160, (258,433,0): 122, 133, 155, (258,434,0): 122, 130, 153, (258,435,0): 118, 126, 147, (258,436,0): 115, 123, 144, (258,437,0): 115, 123, 142, (258,438,0): 120, 127, 146, (258,439,0): 124, 129, 148, (258,440,0): 123, 126, 145, (258,441,0): 124, 127, 144, (258,442,0): 125, 126, 144, (258,443,0): 124, 125, 143, (258,444,0): 121, 123, 138, (258,445,0): 118, 120, 135, (258,446,0): 116, 115, 131, (258,447,0): 111, 113, 126, (258,448,0): 109, 113, 124, (258,449,0): 108, 115, 125, (258,450,0): 111, 115, 126, (258,451,0): 111, 115, 126, (258,452,0): 111, 114, 123, (258,453,0): 108, 111, 120, (258,454,0): 107, 107, 117, (258,455,0): 105, 105, 115, (258,456,0): 98, 95, 106, (258,457,0): 96, 93, 104, (258,458,0): 95, 89, 99, (258,459,0): 92, 86, 96, (258,460,0): 91, 83, 94, (258,461,0): 91, 83, 94, (258,462,0): 94, 84, 95, (258,463,0): 93, 85, 98, (258,464,0): 89, 85, 100, (258,465,0): 86, 85, 99, (258,466,0): 87, 85, 98, (258,467,0): 91, 89, 100, (258,468,0): 97, 94, 103, (258,469,0): 98, 96, 101, (258,470,0): 96, 91, 95, (258,471,0): 93, 87, 89, (258,472,0): 92, 83, 84, (258,473,0): 92, 83, 84, (258,474,0): 92, 82, 83, (258,475,0): 91, 81, 82, (258,476,0): 89, 77, 79, (258,477,0): 85, 73, 75, (258,478,0): 83, 68, 73, (258,479,0): 80, 65, 70, (258,480,0): 82, 67, 72, (258,481,0): 81, 66, 71, (258,482,0): 78, 66, 70, (258,483,0): 77, 65, 69, (258,484,0): 76, 64, 68, (258,485,0): 74, 63, 67, (258,486,0): 72, 63, 66, (258,487,0): 72, 63, 66, (258,488,0): 71, 65, 67, (258,489,0): 75, 71, 72, (258,490,0): 80, 78, 79, (258,491,0): 86, 84, 85, (258,492,0): 90, 90, 90, (258,493,0): 95, 95, 95, (258,494,0): 101, 103, 102, (258,495,0): 106, 107, 109, (258,496,0): 105, 104, 110, (258,497,0): 106, 105, 113, (258,498,0): 107, 106, 114, (258,499,0): 108, 109, 114, (258,500,0): 109, 112, 117, (258,501,0): 113, 118, 122, (258,502,0): 116, 123, 129, (258,503,0): 118, 129, 135, (258,504,0): 126, 139, 147, (258,505,0): 130, 147, 157, (258,506,0): 138, 154, 169, (258,507,0): 142, 161, 178, (258,508,0): 145, 163, 185, (258,509,0): 145, 165, 189, (258,510,0): 147, 168, 195, (258,511,0): 150, 170, 197, (258,512,0): 142, 158, 184, (258,513,0): 140, 156, 181, (258,514,0): 135, 155, 179, (258,515,0): 132, 157, 179, (258,516,0): 132, 158, 181, (258,517,0): 129, 157, 179, (258,518,0): 127, 151, 175, (258,519,0): 125, 147, 170, (258,520,0): 122, 140, 164, (258,521,0): 119, 134, 155, (258,522,0): 113, 124, 146, (258,523,0): 109, 117, 136, (258,524,0): 107, 114, 132, (258,525,0): 109, 117, 130, (258,526,0): 113, 123, 135, (258,527,0): 114, 126, 138, (258,528,0): 114, 125, 143, (258,529,0): 112, 125, 144, (258,530,0): 111, 124, 141, (258,531,0): 108, 121, 137, (258,532,0): 106, 119, 135, (258,533,0): 104, 118, 131, (258,534,0): 103, 115, 127, (258,535,0): 102, 114, 126, (258,536,0): 100, 110, 122, (258,537,0): 101, 111, 123, (258,538,0): 102, 109, 125, (258,539,0): 103, 110, 126, (258,540,0): 104, 111, 130, (258,541,0): 105, 112, 131, (258,542,0): 106, 112, 134, (258,543,0): 106, 113, 132, (258,544,0): 109, 114, 134, (258,545,0): 110, 113, 132, (258,546,0): 106, 107, 125, (258,547,0): 99, 98, 116, (258,548,0): 88, 85, 102, (258,549,0): 80, 76, 91, (258,550,0): 79, 70, 87, (258,551,0): 78, 70, 83, (258,552,0): 78, 67, 81, (258,553,0): 80, 70, 79, (258,554,0): 82, 72, 81, (258,555,0): 80, 70, 78, (258,556,0): 78, 69, 74, (258,557,0): 75, 69, 73, (258,558,0): 76, 70, 72, (258,559,0): 76, 74, 77, (258,560,0): 73, 72, 80, (258,561,0): 73, 73, 83, (258,562,0): 74, 77, 86, (258,563,0): 78, 81, 90, (258,564,0): 84, 87, 96, (258,565,0): 89, 92, 101, (258,566,0): 93, 97, 108, (258,567,0): 96, 100, 111, (258,568,0): 94, 100, 112, (258,569,0): 95, 101, 113, (258,570,0): 95, 101, 115, (258,571,0): 96, 102, 116, (258,572,0): 96, 104, 117, (258,573,0): 98, 106, 119, (258,574,0): 99, 107, 120, (258,575,0): 98, 108, 120, (258,576,0): 102, 114, 128, (258,577,0): 102, 116, 129, (258,578,0): 104, 118, 131, (258,579,0): 105, 119, 132, (258,580,0): 106, 119, 135, (258,581,0): 105, 118, 134, (258,582,0): 105, 118, 135, (258,583,0): 104, 117, 134, (258,584,0): 108, 121, 140, (258,585,0): 108, 121, 140, (258,586,0): 108, 120, 142, (258,587,0): 107, 119, 141, (258,588,0): 105, 117, 141, (258,589,0): 103, 115, 139, (258,590,0): 102, 114, 138, (258,591,0): 100, 112, 134, (258,592,0): 100, 111, 129, (258,593,0): 97, 109, 125, (258,594,0): 95, 104, 119, (258,595,0): 93, 103, 115, (258,596,0): 94, 100, 114, (258,597,0): 90, 96, 108, (258,598,0): 87, 91, 102, (258,599,0): 82, 86, 97, (259,0,0): 53, 42, 48, (259,1,0): 52, 41, 47, (259,2,0): 51, 40, 48, (259,3,0): 50, 39, 47, (259,4,0): 49, 38, 46, (259,5,0): 49, 38, 46, (259,6,0): 50, 38, 48, (259,7,0): 51, 39, 49, (259,8,0): 52, 40, 52, (259,9,0): 52, 40, 52, (259,10,0): 52, 40, 52, (259,11,0): 51, 39, 51, (259,12,0): 50, 38, 52, (259,13,0): 50, 38, 52, (259,14,0): 50, 38, 52, (259,15,0): 50, 36, 51, (259,16,0): 53, 36, 52, (259,17,0): 54, 36, 52, (259,18,0): 55, 37, 53, (259,19,0): 56, 38, 52, (259,20,0): 59, 38, 53, (259,21,0): 60, 40, 52, (259,22,0): 61, 41, 52, (259,23,0): 61, 41, 52, (259,24,0): 66, 45, 54, (259,25,0): 67, 46, 53, (259,26,0): 70, 47, 53, (259,27,0): 71, 48, 54, (259,28,0): 73, 51, 54, (259,29,0): 73, 51, 54, (259,30,0): 75, 50, 54, (259,31,0): 74, 49, 53, (259,32,0): 71, 49, 52, (259,33,0): 71, 49, 52, (259,34,0): 70, 48, 51, (259,35,0): 70, 48, 51, (259,36,0): 71, 46, 50, (259,37,0): 71, 46, 50, (259,38,0): 71, 44, 49, (259,39,0): 71, 44, 49, (259,40,0): 74, 47, 52, (259,41,0): 74, 47, 52, (259,42,0): 77, 48, 53, (259,43,0): 77, 48, 53, (259,44,0): 79, 48, 54, (259,45,0): 79, 48, 54, (259,46,0): 80, 49, 55, (259,47,0): 80, 49, 54, (259,48,0): 83, 53, 53, (259,49,0): 83, 53, 51, (259,50,0): 83, 53, 51, (259,51,0): 84, 54, 52, (259,52,0): 84, 54, 54, (259,53,0): 85, 55, 55, (259,54,0): 85, 55, 55, (259,55,0): 85, 55, 55, (259,56,0): 87, 57, 57, (259,57,0): 88, 58, 58, (259,58,0): 89, 59, 61, (259,59,0): 90, 60, 62, (259,60,0): 92, 62, 64, (259,61,0): 94, 64, 66, (259,62,0): 95, 65, 67, (259,63,0): 95, 65, 63, (259,64,0): 95, 66, 58, (259,65,0): 95, 67, 55, (259,66,0): 96, 68, 56, (259,67,0): 97, 69, 57, (259,68,0): 98, 70, 56, (259,69,0): 100, 72, 58, (259,70,0): 100, 73, 56, (259,71,0): 101, 74, 57, (259,72,0): 102, 75, 58, (259,73,0): 102, 75, 56, (259,74,0): 102, 75, 56, (259,75,0): 102, 75, 56, (259,76,0): 102, 75, 54, (259,77,0): 102, 75, 54, (259,78,0): 102, 75, 54, (259,79,0): 103, 75, 54, (259,80,0): 105, 74, 53, (259,81,0): 106, 74, 53, (259,82,0): 106, 74, 53, (259,83,0): 106, 74, 53, (259,84,0): 106, 74, 53, (259,85,0): 106, 74, 53, (259,86,0): 106, 74, 53, (259,87,0): 106, 74, 53, (259,88,0): 108, 76, 55, (259,89,0): 108, 76, 55, (259,90,0): 109, 77, 56, (259,91,0): 110, 78, 57, (259,92,0): 111, 79, 58, (259,93,0): 112, 80, 59, (259,94,0): 113, 81, 60, (259,95,0): 113, 81, 58, (259,96,0): 116, 82, 57, (259,97,0): 118, 82, 58, (259,98,0): 118, 82, 58, (259,99,0): 118, 82, 58, (259,100,0): 117, 81, 59, (259,101,0): 115, 79, 57, (259,102,0): 113, 77, 55, (259,103,0): 112, 76, 54, (259,104,0): 109, 72, 53, (259,105,0): 108, 71, 52, (259,106,0): 108, 71, 53, (259,107,0): 107, 70, 52, (259,108,0): 107, 70, 52, (259,109,0): 106, 69, 51, (259,110,0): 106, 69, 53, (259,111,0): 105, 69, 53, (259,112,0): 96, 65, 45, (259,113,0): 95, 67, 46, (259,114,0): 96, 68, 47, (259,115,0): 97, 69, 48, (259,116,0): 98, 70, 49, (259,117,0): 97, 69, 48, (259,118,0): 96, 68, 47, (259,119,0): 95, 67, 46, (259,120,0): 94, 66, 45, (259,121,0): 94, 66, 45, (259,122,0): 95, 67, 46, (259,123,0): 95, 67, 46, (259,124,0): 94, 66, 45, (259,125,0): 93, 65, 44, (259,126,0): 91, 63, 42, (259,127,0): 92, 61, 41, (259,128,0): 94, 62, 41, (259,129,0): 94, 62, 41, (259,130,0): 94, 62, 41, (259,131,0): 94, 62, 41, (259,132,0): 94, 62, 41, (259,133,0): 94, 62, 41, (259,134,0): 94, 62, 41, (259,135,0): 94, 62, 41, (259,136,0): 92, 60, 39, (259,137,0): 92, 60, 39, (259,138,0): 92, 60, 39, (259,139,0): 93, 61, 40, (259,140,0): 93, 61, 40, (259,141,0): 94, 62, 41, (259,142,0): 94, 62, 41, (259,143,0): 94, 62, 39, (259,144,0): 98, 63, 35, (259,145,0): 99, 64, 34, (259,146,0): 100, 65, 35, (259,147,0): 101, 66, 36, (259,148,0): 101, 66, 36, (259,149,0): 100, 65, 35, (259,150,0): 99, 64, 36, (259,151,0): 98, 63, 35, (259,152,0): 101, 65, 39, (259,153,0): 101, 65, 39, (259,154,0): 102, 66, 42, (259,155,0): 103, 67, 43, (259,156,0): 103, 67, 43, (259,157,0): 102, 66, 42, (259,158,0): 101, 65, 41, (259,159,0): 101, 65, 39, (259,160,0): 103, 68, 40, (259,161,0): 103, 68, 40, (259,162,0): 103, 68, 40, (259,163,0): 102, 67, 39, (259,164,0): 102, 66, 40, (259,165,0): 101, 65, 39, (259,166,0): 100, 64, 38, (259,167,0): 99, 63, 37, (259,168,0): 100, 66, 41, (259,169,0): 99, 65, 40, (259,170,0): 96, 62, 37, (259,171,0): 94, 60, 35, (259,172,0): 92, 57, 35, (259,173,0): 91, 56, 34, (259,174,0): 90, 55, 33, (259,175,0): 90, 55, 33, (259,176,0): 92, 56, 34, (259,177,0): 93, 57, 33, (259,178,0): 95, 57, 36, (259,179,0): 97, 59, 36, (259,180,0): 100, 62, 41, (259,181,0): 104, 63, 41, (259,182,0): 106, 65, 43, (259,183,0): 108, 66, 44, (259,184,0): 113, 71, 49, (259,185,0): 111, 69, 47, (259,186,0): 113, 68, 47, (259,187,0): 114, 69, 48, (259,188,0): 117, 72, 49, (259,189,0): 118, 73, 50, (259,190,0): 116, 71, 48, (259,191,0): 113, 68, 45, (259,192,0): 114, 69, 46, (259,193,0): 113, 68, 45, (259,194,0): 110, 65, 44, (259,195,0): 103, 60, 41, (259,196,0): 99, 56, 37, (259,197,0): 94, 51, 34, (259,198,0): 89, 47, 31, (259,199,0): 87, 45, 29, (259,200,0): 85, 46, 31, (259,201,0): 85, 46, 31, (259,202,0): 83, 46, 30, (259,203,0): 82, 45, 27, (259,204,0): 81, 46, 27, (259,205,0): 82, 47, 27, (259,206,0): 83, 48, 28, (259,207,0): 82, 50, 29, (259,208,0): 89, 57, 36, (259,209,0): 92, 60, 37, (259,210,0): 96, 64, 39, (259,211,0): 101, 70, 41, (259,212,0): 107, 78, 44, (259,213,0): 118, 90, 50, (259,214,0): 130, 103, 58, (259,215,0): 139, 113, 62, (259,216,0): 156, 134, 76, (259,217,0): 163, 142, 77, (259,218,0): 173, 155, 83, (259,219,0): 182, 164, 88, (259,220,0): 186, 169, 89, (259,221,0): 189, 173, 88, (259,222,0): 190, 176, 88, (259,223,0): 193, 177, 89, (259,224,0): 191, 171, 82, (259,225,0): 192, 171, 82, (259,226,0): 192, 170, 85, (259,227,0): 190, 168, 85, (259,228,0): 186, 163, 83, (259,229,0): 183, 160, 82, (259,230,0): 179, 157, 81, (259,231,0): 178, 156, 81, (259,232,0): 182, 160, 85, (259,233,0): 178, 159, 83, (259,234,0): 176, 157, 81, (259,235,0): 175, 156, 79, (259,236,0): 176, 159, 79, (259,237,0): 180, 163, 83, (259,238,0): 185, 168, 86, (259,239,0): 189, 171, 87, (259,240,0): 196, 176, 89, (259,241,0): 201, 182, 90, (259,242,0): 207, 186, 95, (259,243,0): 209, 190, 98, (259,244,0): 211, 190, 99, (259,245,0): 212, 193, 99, (259,246,0): 216, 195, 102, (259,247,0): 218, 199, 104, (259,248,0): 219, 199, 104, (259,249,0): 220, 201, 106, (259,250,0): 223, 203, 108, (259,251,0): 221, 203, 105, (259,252,0): 221, 201, 104, (259,253,0): 221, 203, 105, (259,254,0): 226, 206, 109, (259,255,0): 229, 209, 114, (259,256,0): 228, 207, 118, (259,257,0): 228, 206, 120, (259,258,0): 228, 206, 120, (259,259,0): 228, 208, 119, (259,260,0): 229, 210, 118, (259,261,0): 229, 213, 118, (259,262,0): 229, 214, 121, (259,263,0): 227, 217, 122, (259,264,0): 226, 216, 121, (259,265,0): 225, 219, 123, (259,266,0): 225, 220, 126, (259,267,0): 223, 220, 127, (259,268,0): 218, 214, 123, (259,269,0): 208, 207, 117, (259,270,0): 200, 198, 111, (259,271,0): 195, 193, 106, (259,272,0): 190, 185, 103, (259,273,0): 186, 183, 102, (259,274,0): 184, 183, 101, (259,275,0): 182, 185, 104, (259,276,0): 182, 187, 107, (259,277,0): 179, 186, 108, (259,278,0): 177, 181, 105, (259,279,0): 173, 177, 103, (259,280,0): 162, 163, 93, (259,281,0): 155, 154, 87, (259,282,0): 146, 142, 78, (259,283,0): 138, 137, 73, (259,284,0): 138, 138, 76, (259,285,0): 140, 144, 83, (259,286,0): 143, 149, 87, (259,287,0): 142, 152, 89, (259,288,0): 136, 151, 86, (259,289,0): 139, 155, 90, (259,290,0): 146, 162, 99, (259,291,0): 152, 170, 108, (259,292,0): 157, 173, 111, (259,293,0): 153, 168, 109, (259,294,0): 147, 158, 102, (259,295,0): 141, 150, 97, (259,296,0): 136, 138, 89, (259,297,0): 129, 128, 82, (259,298,0): 121, 120, 76, (259,299,0): 117, 118, 76, (259,300,0): 114, 117, 74, (259,301,0): 111, 118, 76, (259,302,0): 115, 126, 83, (259,303,0): 121, 138, 93, (259,304,0): 132, 159, 106, (259,305,0): 141, 172, 115, (259,306,0): 153, 186, 129, (259,307,0): 161, 196, 138, (259,308,0): 164, 202, 143, (259,309,0): 168, 208, 148, (259,310,0): 174, 215, 155, (259,311,0): 177, 221, 160, (259,312,0): 183, 224, 164, (259,313,0): 185, 227, 164, (259,314,0): 189, 229, 169, (259,315,0): 191, 231, 169, (259,316,0): 191, 229, 170, (259,317,0): 189, 225, 164, (259,318,0): 184, 217, 160, (259,319,0): 183, 212, 154, (259,320,0): 188, 208, 149, (259,321,0): 189, 200, 144, (259,322,0): 182, 186, 136, (259,323,0): 167, 164, 119, (259,324,0): 148, 138, 102, (259,325,0): 130, 115, 84, (259,326,0): 117, 97, 72, (259,327,0): 109, 88, 67, (259,328,0): 99, 81, 61, (259,329,0): 93, 74, 57, (259,330,0): 84, 67, 51, (259,331,0): 78, 61, 45, (259,332,0): 77, 58, 44, (259,333,0): 76, 57, 42, (259,334,0): 77, 55, 41, (259,335,0): 73, 54, 39, (259,336,0): 66, 50, 35, (259,337,0): 65, 52, 36, (259,338,0): 66, 53, 37, (259,339,0): 67, 54, 38, (259,340,0): 69, 55, 42, (259,341,0): 71, 59, 45, (259,342,0): 73, 61, 47, (259,343,0): 75, 63, 49, (259,344,0): 78, 68, 56, (259,345,0): 76, 66, 54, (259,346,0): 72, 62, 52, (259,347,0): 66, 58, 47, (259,348,0): 64, 56, 45, (259,349,0): 66, 58, 47, (259,350,0): 72, 63, 54, (259,351,0): 76, 70, 58, (259,352,0): 82, 80, 67, (259,353,0): 83, 84, 68, (259,354,0): 89, 88, 70, (259,355,0): 95, 94, 76, (259,356,0): 98, 97, 79, (259,357,0): 100, 99, 79, (259,358,0): 101, 98, 81, (259,359,0): 101, 98, 81, (259,360,0): 100, 98, 83, (259,361,0): 101, 102, 88, (259,362,0): 107, 109, 96, (259,363,0): 112, 118, 108, (259,364,0): 117, 124, 116, (259,365,0): 116, 126, 118, (259,366,0): 113, 124, 118, (259,367,0): 109, 120, 112, (259,368,0): 122, 132, 123, (259,369,0): 122, 132, 121, (259,370,0): 123, 133, 124, (259,371,0): 123, 135, 125, (259,372,0): 123, 134, 126, (259,373,0): 122, 135, 126, (259,374,0): 119, 134, 127, (259,375,0): 118, 135, 129, (259,376,0): 117, 133, 130, (259,377,0): 119, 138, 134, (259,378,0): 123, 143, 141, (259,379,0): 125, 147, 144, (259,380,0): 127, 149, 147, (259,381,0): 128, 153, 150, (259,382,0): 132, 156, 156, (259,383,0): 135, 160, 164, (259,384,0): 135, 164, 172, (259,385,0): 138, 168, 179, (259,386,0): 142, 171, 189, (259,387,0): 144, 175, 196, (259,388,0): 145, 177, 202, (259,389,0): 146, 181, 211, (259,390,0): 148, 188, 223, (259,391,0): 150, 194, 229, (259,392,0): 143, 193, 230, (259,393,0): 140, 192, 231, (259,394,0): 137, 189, 228, (259,395,0): 139, 187, 227, (259,396,0): 145, 189, 228, (259,397,0): 147, 186, 225, (259,398,0): 137, 170, 211, (259,399,0): 126, 152, 187, (259,400,0): 116, 131, 154, (259,401,0): 108, 117, 134, (259,402,0): 99, 106, 124, (259,403,0): 100, 109, 124, (259,404,0): 106, 116, 128, (259,405,0): 107, 117, 129, (259,406,0): 109, 119, 129, (259,407,0): 112, 122, 132, (259,408,0): 106, 118, 130, (259,409,0): 106, 118, 130, (259,410,0): 106, 118, 132, (259,411,0): 107, 119, 135, (259,412,0): 109, 120, 138, (259,413,0): 111, 122, 142, (259,414,0): 113, 124, 146, (259,415,0): 114, 126, 150, (259,416,0): 118, 134, 159, (259,417,0): 118, 135, 161, (259,418,0): 118, 135, 161, (259,419,0): 118, 135, 161, (259,420,0): 117, 134, 162, (259,421,0): 116, 133, 161, (259,422,0): 114, 131, 159, (259,423,0): 113, 130, 158, (259,424,0): 112, 129, 159, (259,425,0): 115, 132, 162, (259,426,0): 119, 135, 168, (259,427,0): 123, 139, 172, (259,428,0): 125, 141, 174, (259,429,0): 125, 141, 174, (259,430,0): 123, 139, 173, (259,431,0): 122, 137, 168, (259,432,0): 122, 134, 160, (259,433,0): 121, 131, 156, (259,434,0): 118, 128, 153, (259,435,0): 116, 124, 147, (259,436,0): 115, 123, 146, (259,437,0): 116, 124, 145, (259,438,0): 119, 125, 147, (259,439,0): 122, 129, 148, (259,440,0): 121, 126, 146, (259,441,0): 123, 126, 145, (259,442,0): 124, 125, 145, (259,443,0): 123, 124, 142, (259,444,0): 121, 123, 138, (259,445,0): 118, 120, 135, (259,446,0): 118, 117, 133, (259,447,0): 114, 116, 129, (259,448,0): 112, 116, 127, (259,449,0): 113, 117, 128, (259,450,0): 114, 118, 129, (259,451,0): 114, 118, 129, (259,452,0): 113, 116, 125, (259,453,0): 110, 113, 122, (259,454,0): 109, 109, 119, (259,455,0): 108, 106, 117, (259,456,0): 98, 96, 107, (259,457,0): 98, 95, 106, (259,458,0): 97, 91, 101, (259,459,0): 94, 88, 98, (259,460,0): 94, 86, 97, (259,461,0): 93, 85, 96, (259,462,0): 93, 85, 96, (259,463,0): 93, 87, 99, (259,464,0): 90, 88, 102, (259,465,0): 86, 85, 101, (259,466,0): 87, 85, 99, (259,467,0): 92, 90, 101, (259,468,0): 101, 98, 107, (259,469,0): 104, 102, 107, (259,470,0): 101, 96, 100, (259,471,0): 95, 91, 92, (259,472,0): 94, 88, 90, (259,473,0): 97, 88, 89, (259,474,0): 98, 88, 89, (259,475,0): 97, 87, 88, (259,476,0): 95, 83, 85, (259,477,0): 90, 78, 80, (259,478,0): 87, 72, 77, (259,479,0): 84, 69, 74, (259,480,0): 83, 68, 73, (259,481,0): 82, 67, 72, (259,482,0): 78, 66, 70, (259,483,0): 76, 64, 68, (259,484,0): 74, 63, 67, (259,485,0): 73, 62, 66, (259,486,0): 72, 63, 66, (259,487,0): 70, 64, 66, (259,488,0): 70, 66, 67, (259,489,0): 75, 71, 72, (259,490,0): 80, 78, 79, (259,491,0): 85, 83, 84, (259,492,0): 87, 87, 87, (259,493,0): 91, 91, 91, (259,494,0): 95, 97, 96, (259,495,0): 99, 100, 102, (259,496,0): 99, 98, 104, (259,497,0): 100, 101, 106, (259,498,0): 104, 105, 110, (259,499,0): 105, 108, 113, (259,500,0): 108, 113, 117, (259,501,0): 112, 120, 123, (259,502,0): 117, 126, 131, (259,503,0): 121, 132, 138, (259,504,0): 131, 144, 153, (259,505,0): 135, 152, 162, (259,506,0): 143, 159, 174, (259,507,0): 147, 166, 183, (259,508,0): 149, 167, 189, (259,509,0): 148, 168, 193, (259,510,0): 148, 169, 198, (259,511,0): 150, 170, 197, (259,512,0): 144, 160, 186, (259,513,0): 142, 158, 183, (259,514,0): 138, 158, 182, (259,515,0): 136, 161, 183, (259,516,0): 136, 162, 185, (259,517,0): 134, 162, 184, (259,518,0): 131, 155, 179, (259,519,0): 129, 151, 174, (259,520,0): 124, 142, 166, (259,521,0): 119, 134, 155, (259,522,0): 112, 123, 145, (259,523,0): 106, 114, 133, (259,524,0): 104, 111, 129, (259,525,0): 107, 115, 128, (259,526,0): 112, 122, 134, (259,527,0): 115, 127, 139, (259,528,0): 115, 126, 144, (259,529,0): 114, 127, 144, (259,530,0): 113, 126, 143, (259,531,0): 111, 124, 140, (259,532,0): 108, 122, 135, (259,533,0): 105, 119, 130, (259,534,0): 104, 116, 128, (259,535,0): 102, 114, 126, (259,536,0): 101, 111, 123, (259,537,0): 101, 111, 123, (259,538,0): 103, 110, 126, (259,539,0): 104, 111, 127, (259,540,0): 104, 111, 129, (259,541,0): 104, 111, 130, (259,542,0): 104, 110, 132, (259,543,0): 103, 110, 129, (259,544,0): 109, 112, 131, (259,545,0): 108, 111, 128, (259,546,0): 104, 105, 123, (259,547,0): 97, 96, 112, (259,548,0): 88, 85, 102, (259,549,0): 81, 77, 92, (259,550,0): 80, 72, 87, (259,551,0): 80, 72, 85, (259,552,0): 79, 68, 82, (259,553,0): 81, 71, 82, (259,554,0): 82, 72, 81, (259,555,0): 79, 72, 79, (259,556,0): 77, 70, 77, (259,557,0): 76, 71, 75, (259,558,0): 78, 73, 77, (259,559,0): 79, 77, 80, (259,560,0): 77, 76, 84, (259,561,0): 77, 77, 87, (259,562,0): 78, 81, 90, (259,563,0): 82, 85, 94, (259,564,0): 86, 89, 98, (259,565,0): 91, 94, 103, (259,566,0): 93, 97, 108, (259,567,0): 95, 99, 110, (259,568,0): 97, 103, 115, (259,569,0): 97, 103, 115, (259,570,0): 97, 103, 117, (259,571,0): 98, 104, 118, (259,572,0): 98, 106, 119, (259,573,0): 100, 108, 121, (259,574,0): 102, 110, 123, (259,575,0): 102, 112, 124, (259,576,0): 103, 115, 129, (259,577,0): 103, 117, 130, (259,578,0): 105, 119, 132, (259,579,0): 107, 121, 134, (259,580,0): 108, 121, 137, (259,581,0): 108, 121, 137, (259,582,0): 107, 120, 137, (259,583,0): 107, 120, 137, (259,584,0): 108, 121, 140, (259,585,0): 108, 121, 140, (259,586,0): 107, 119, 141, (259,587,0): 105, 117, 139, (259,588,0): 104, 116, 140, (259,589,0): 102, 114, 138, (259,590,0): 100, 112, 136, (259,591,0): 99, 111, 133, (259,592,0): 99, 110, 128, (259,593,0): 96, 108, 124, (259,594,0): 94, 103, 118, (259,595,0): 93, 101, 114, (259,596,0): 92, 98, 112, (259,597,0): 89, 95, 107, (259,598,0): 85, 89, 100, (259,599,0): 80, 84, 95, (260,0,0): 54, 43, 49, (260,1,0): 53, 42, 48, (260,2,0): 52, 41, 47, (260,3,0): 51, 40, 46, (260,4,0): 50, 39, 47, (260,5,0): 50, 39, 47, (260,6,0): 51, 40, 48, (260,7,0): 52, 41, 49, (260,8,0): 53, 41, 51, (260,9,0): 52, 40, 50, (260,10,0): 52, 40, 52, (260,11,0): 52, 40, 52, (260,12,0): 51, 39, 51, (260,13,0): 50, 38, 50, (260,14,0): 50, 38, 52, (260,15,0): 51, 37, 52, (260,16,0): 53, 36, 52, (260,17,0): 55, 37, 53, (260,18,0): 55, 37, 51, (260,19,0): 56, 38, 52, (260,20,0): 60, 39, 54, (260,21,0): 61, 41, 53, (260,22,0): 61, 41, 52, (260,23,0): 62, 42, 53, (260,24,0): 66, 45, 54, (260,25,0): 67, 46, 53, (260,26,0): 70, 47, 53, (260,27,0): 72, 49, 55, (260,28,0): 73, 51, 54, (260,29,0): 73, 51, 54, (260,30,0): 75, 50, 53, (260,31,0): 75, 50, 53, (260,32,0): 71, 49, 52, (260,33,0): 71, 49, 52, (260,34,0): 70, 48, 51, (260,35,0): 70, 48, 51, (260,36,0): 69, 47, 50, (260,37,0): 69, 47, 50, (260,38,0): 70, 45, 49, (260,39,0): 70, 45, 49, (260,40,0): 74, 47, 52, (260,41,0): 74, 47, 52, (260,42,0): 77, 48, 53, (260,43,0): 77, 48, 53, (260,44,0): 78, 49, 54, (260,45,0): 78, 49, 54, (260,46,0): 79, 50, 55, (260,47,0): 79, 50, 54, (260,48,0): 82, 53, 55, (260,49,0): 82, 54, 53, (260,50,0): 83, 55, 54, (260,51,0): 83, 55, 54, (260,52,0): 84, 56, 55, (260,53,0): 84, 56, 55, (260,54,0): 85, 57, 56, (260,55,0): 85, 57, 56, (260,56,0): 87, 59, 58, (260,57,0): 88, 60, 59, (260,58,0): 89, 61, 60, (260,59,0): 91, 63, 62, (260,60,0): 92, 64, 63, (260,61,0): 94, 66, 65, (260,62,0): 95, 67, 66, (260,63,0): 96, 68, 64, (260,64,0): 96, 68, 57, (260,65,0): 96, 68, 54, (260,66,0): 97, 69, 55, (260,67,0): 98, 70, 56, (260,68,0): 99, 71, 57, (260,69,0): 100, 72, 58, (260,70,0): 100, 73, 56, (260,71,0): 101, 74, 57, (260,72,0): 103, 76, 57, (260,73,0): 103, 76, 57, (260,74,0): 103, 76, 57, (260,75,0): 103, 76, 55, (260,76,0): 103, 76, 55, (260,77,0): 103, 76, 55, (260,78,0): 103, 76, 55, (260,79,0): 104, 76, 55, (260,80,0): 106, 75, 54, (260,81,0): 107, 75, 52, (260,82,0): 107, 75, 52, (260,83,0): 107, 75, 52, (260,84,0): 107, 75, 52, (260,85,0): 107, 75, 52, (260,86,0): 107, 75, 52, (260,87,0): 107, 75, 52, (260,88,0): 109, 77, 54, (260,89,0): 109, 77, 54, (260,90,0): 110, 78, 55, (260,91,0): 111, 79, 56, (260,92,0): 112, 80, 57, (260,93,0): 113, 81, 58, (260,94,0): 114, 82, 59, (260,95,0): 114, 82, 59, (260,96,0): 118, 84, 59, (260,97,0): 118, 84, 57, (260,98,0): 119, 85, 60, (260,99,0): 118, 84, 59, (260,100,0): 117, 83, 58, (260,101,0): 116, 82, 57, (260,102,0): 114, 79, 57, (260,103,0): 113, 78, 56, (260,104,0): 106, 71, 51, (260,105,0): 106, 71, 51, (260,106,0): 106, 71, 51, (260,107,0): 105, 70, 50, (260,108,0): 105, 70, 51, (260,109,0): 104, 69, 50, (260,110,0): 104, 69, 50, (260,111,0): 103, 68, 49, (260,112,0): 97, 66, 46, (260,113,0): 98, 67, 47, (260,114,0): 99, 68, 48, (260,115,0): 100, 69, 49, (260,116,0): 99, 68, 48, (260,117,0): 98, 67, 47, (260,118,0): 97, 66, 46, (260,119,0): 96, 65, 45, (260,120,0): 95, 64, 44, (260,121,0): 95, 64, 44, (260,122,0): 96, 65, 45, (260,123,0): 97, 66, 46, (260,124,0): 96, 65, 45, (260,125,0): 95, 64, 44, (260,126,0): 94, 63, 43, (260,127,0): 93, 62, 42, (260,128,0): 95, 63, 42, (260,129,0): 95, 63, 40, (260,130,0): 95, 63, 40, (260,131,0): 95, 63, 40, (260,132,0): 95, 63, 40, (260,133,0): 95, 63, 40, (260,134,0): 95, 63, 40, (260,135,0): 95, 63, 40, (260,136,0): 92, 60, 37, (260,137,0): 92, 60, 37, (260,138,0): 93, 61, 38, (260,139,0): 93, 61, 38, (260,140,0): 94, 62, 39, (260,141,0): 94, 62, 39, (260,142,0): 95, 63, 40, (260,143,0): 95, 63, 38, (260,144,0): 97, 62, 34, (260,145,0): 98, 63, 33, (260,146,0): 99, 64, 34, (260,147,0): 100, 65, 35, (260,148,0): 100, 65, 35, (260,149,0): 99, 64, 34, (260,150,0): 98, 63, 35, (260,151,0): 97, 62, 34, (260,152,0): 101, 65, 39, (260,153,0): 101, 65, 39, (260,154,0): 102, 66, 42, (260,155,0): 103, 67, 43, (260,156,0): 103, 67, 43, (260,157,0): 102, 66, 42, (260,158,0): 101, 65, 41, (260,159,0): 101, 65, 41, (260,160,0): 103, 67, 41, (260,161,0): 103, 67, 41, (260,162,0): 102, 66, 40, (260,163,0): 101, 65, 39, (260,164,0): 101, 65, 41, (260,165,0): 101, 65, 41, (260,166,0): 101, 65, 41, (260,167,0): 101, 65, 41, (260,168,0): 102, 66, 42, (260,169,0): 100, 64, 40, (260,170,0): 98, 62, 38, (260,171,0): 96, 60, 36, (260,172,0): 95, 59, 35, (260,173,0): 95, 59, 35, (260,174,0): 95, 59, 35, (260,175,0): 95, 59, 35, (260,176,0): 95, 57, 34, (260,177,0): 97, 60, 34, (260,178,0): 99, 61, 38, (260,179,0): 101, 64, 38, (260,180,0): 106, 65, 43, (260,181,0): 108, 68, 43, (260,182,0): 110, 68, 44, (260,183,0): 113, 68, 45, (260,184,0): 116, 71, 48, (260,185,0): 115, 70, 47, (260,186,0): 117, 71, 48, (260,187,0): 120, 74, 51, (260,188,0): 124, 76, 54, (260,189,0): 125, 77, 55, (260,190,0): 123, 75, 53, (260,191,0): 119, 73, 49, (260,192,0): 114, 70, 45, (260,193,0): 110, 69, 41, (260,194,0): 106, 64, 39, (260,195,0): 101, 59, 35, (260,196,0): 96, 53, 34, (260,197,0): 91, 50, 32, (260,198,0): 87, 45, 29, (260,199,0): 86, 44, 28, (260,200,0): 82, 43, 28, (260,201,0): 82, 43, 28, (260,202,0): 81, 44, 26, (260,203,0): 81, 44, 26, (260,204,0): 82, 46, 24, (260,205,0): 82, 47, 25, (260,206,0): 84, 50, 25, (260,207,0): 85, 51, 26, (260,208,0): 88, 54, 27, (260,209,0): 93, 59, 31, (260,210,0): 98, 67, 36, (260,211,0): 106, 76, 40, (260,212,0): 117, 88, 48, (260,213,0): 131, 102, 58, (260,214,0): 145, 119, 70, (260,215,0): 155, 130, 74, (260,216,0): 164, 143, 80, (260,217,0): 170, 150, 81, (260,218,0): 178, 159, 83, (260,219,0): 184, 166, 84, (260,220,0): 186, 170, 83, (260,221,0): 189, 173, 85, (260,222,0): 193, 178, 87, (260,223,0): 196, 181, 88, (260,224,0): 194, 177, 87, (260,225,0): 195, 175, 86, (260,226,0): 193, 173, 87, (260,227,0): 191, 170, 87, (260,228,0): 188, 167, 86, (260,229,0): 185, 164, 85, (260,230,0): 181, 160, 81, (260,231,0): 178, 156, 80, (260,232,0): 181, 159, 83, (260,233,0): 180, 158, 82, (260,234,0): 178, 156, 80, (260,235,0): 178, 156, 80, (260,236,0): 180, 159, 80, (260,237,0): 184, 163, 84, (260,238,0): 190, 167, 87, (260,239,0): 192, 170, 87, (260,240,0): 201, 180, 91, (260,241,0): 205, 184, 91, (260,242,0): 212, 189, 96, (260,243,0): 212, 191, 98, (260,244,0): 214, 191, 98, (260,245,0): 213, 193, 98, (260,246,0): 217, 194, 100, (260,247,0): 218, 198, 103, (260,248,0): 222, 199, 105, (260,249,0): 222, 202, 105, (260,250,0): 225, 202, 106, (260,251,0): 223, 203, 104, (260,252,0): 224, 202, 103, (260,253,0): 224, 204, 105, (260,254,0): 230, 208, 109, (260,255,0): 233, 210, 114, (260,256,0): 229, 206, 113, (260,257,0): 229, 205, 117, (260,258,0): 230, 206, 118, (260,259,0): 229, 208, 117, (260,260,0): 231, 212, 118, (260,261,0): 233, 217, 121, (260,262,0): 235, 220, 125, (260,263,0): 234, 224, 127, (260,264,0): 230, 220, 123, (260,265,0): 227, 221, 125, (260,266,0): 225, 221, 124, (260,267,0): 222, 219, 124, (260,268,0): 216, 215, 123, (260,269,0): 210, 211, 118, (260,270,0): 205, 205, 115, (260,271,0): 202, 202, 114, (260,272,0): 194, 192, 107, (260,273,0): 191, 189, 106, (260,274,0): 186, 188, 104, (260,275,0): 184, 188, 104, (260,276,0): 183, 188, 106, (260,277,0): 180, 187, 107, (260,278,0): 176, 183, 105, (260,279,0): 174, 178, 102, (260,280,0): 165, 167, 94, (260,281,0): 159, 159, 89, (260,282,0): 149, 148, 81, (260,283,0): 141, 142, 76, (260,284,0): 140, 142, 77, (260,285,0): 140, 146, 82, (260,286,0): 141, 150, 85, (260,287,0): 143, 154, 88, (260,288,0): 137, 149, 83, (260,289,0): 139, 154, 87, (260,290,0): 147, 162, 97, (260,291,0): 154, 170, 105, (260,292,0): 158, 172, 110, (260,293,0): 154, 168, 107, (260,294,0): 147, 156, 101, (260,295,0): 141, 148, 96, (260,296,0): 136, 135, 87, (260,297,0): 126, 123, 78, (260,298,0): 118, 115, 72, (260,299,0): 115, 113, 72, (260,300,0): 112, 113, 73, (260,301,0): 109, 114, 74, (260,302,0): 112, 120, 79, (260,303,0): 117, 130, 87, (260,304,0): 122, 141, 95, (260,305,0): 130, 152, 105, (260,306,0): 143, 167, 119, (260,307,0): 150, 176, 128, (260,308,0): 154, 184, 134, (260,309,0): 157, 189, 139, (260,310,0): 162, 199, 147, (260,311,0): 168, 205, 153, (260,312,0): 176, 215, 162, (260,313,0): 179, 218, 163, (260,314,0): 184, 223, 170, (260,315,0): 187, 226, 171, (260,316,0): 187, 226, 173, (260,317,0): 185, 222, 168, (260,318,0): 181, 218, 166, (260,319,0): 182, 215, 162, (260,320,0): 179, 206, 153, (260,321,0): 183, 203, 152, (260,322,0): 182, 196, 147, (260,323,0): 172, 177, 136, (260,324,0): 154, 150, 113, (260,325,0): 134, 123, 93, (260,326,0): 117, 101, 76, (260,327,0): 108, 90, 68, (260,328,0): 98, 80, 60, (260,329,0): 92, 73, 56, (260,330,0): 84, 67, 49, (260,331,0): 79, 62, 44, (260,332,0): 77, 60, 44, (260,333,0): 75, 58, 40, (260,334,0): 74, 55, 38, (260,335,0): 72, 53, 36, (260,336,0): 69, 52, 36, (260,337,0): 67, 51, 36, (260,338,0): 67, 51, 36, (260,339,0): 65, 52, 36, (260,340,0): 67, 53, 40, (260,341,0): 69, 55, 42, (260,342,0): 71, 59, 45, (260,343,0): 73, 61, 47, (260,344,0): 77, 67, 55, (260,345,0): 76, 66, 54, (260,346,0): 71, 63, 52, (260,347,0): 65, 57, 46, (260,348,0): 61, 53, 42, (260,349,0): 62, 56, 44, (260,350,0): 68, 61, 51, (260,351,0): 72, 68, 56, (260,352,0): 78, 76, 63, (260,353,0): 82, 80, 65, (260,354,0): 89, 87, 72, (260,355,0): 96, 95, 77, (260,356,0): 101, 98, 81, (260,357,0): 102, 99, 82, (260,358,0): 101, 98, 81, (260,359,0): 99, 96, 79, (260,360,0): 99, 97, 82, (260,361,0): 99, 100, 86, (260,362,0): 105, 107, 94, (260,363,0): 111, 117, 107, (260,364,0): 117, 124, 116, (260,365,0): 117, 127, 119, (260,366,0): 111, 122, 116, (260,367,0): 107, 118, 112, (260,368,0): 116, 126, 118, (260,369,0): 117, 127, 118, (260,370,0): 120, 130, 122, (260,371,0): 121, 132, 124, (260,372,0): 122, 133, 127, (260,373,0): 122, 135, 128, (260,374,0): 119, 134, 129, (260,375,0): 118, 135, 129, (260,376,0): 115, 131, 128, (260,377,0): 116, 135, 133, (260,378,0): 119, 139, 138, (260,379,0): 121, 143, 141, (260,380,0): 122, 143, 144, (260,381,0): 122, 146, 146, (260,382,0): 126, 150, 152, (260,383,0): 129, 154, 158, (260,384,0): 132, 161, 167, (260,385,0): 134, 164, 174, (260,386,0): 137, 166, 182, (260,387,0): 139, 167, 188, (260,388,0): 139, 169, 195, (260,389,0): 140, 174, 202, (260,390,0): 144, 180, 214, (260,391,0): 146, 186, 222, (260,392,0): 143, 187, 224, (260,393,0): 142, 188, 224, (260,394,0): 139, 185, 221, (260,395,0): 138, 180, 218, (260,396,0): 145, 180, 218, (260,397,0): 143, 175, 213, (260,398,0): 130, 156, 193, (260,399,0): 116, 135, 167, (260,400,0): 112, 123, 145, (260,401,0): 103, 110, 126, (260,402,0): 95, 101, 117, (260,403,0): 97, 105, 118, (260,404,0): 101, 109, 122, (260,405,0): 104, 112, 123, (260,406,0): 106, 116, 126, (260,407,0): 111, 121, 131, (260,408,0): 108, 118, 128, (260,409,0): 108, 118, 130, (260,410,0): 107, 119, 133, (260,411,0): 108, 120, 136, (260,412,0): 109, 122, 139, (260,413,0): 112, 125, 144, (260,414,0): 114, 126, 148, (260,415,0): 116, 128, 152, (260,416,0): 118, 134, 159, (260,417,0): 118, 134, 159, (260,418,0): 119, 135, 160, (260,419,0): 118, 134, 159, (260,420,0): 117, 133, 159, (260,421,0): 115, 131, 157, (260,422,0): 113, 129, 155, (260,423,0): 112, 128, 154, (260,424,0): 113, 128, 157, (260,425,0): 116, 131, 160, (260,426,0): 120, 135, 166, (260,427,0): 124, 139, 170, (260,428,0): 126, 141, 172, (260,429,0): 126, 141, 172, (260,430,0): 124, 139, 172, (260,431,0): 122, 137, 168, (260,432,0): 121, 132, 160, (260,433,0): 119, 131, 157, (260,434,0): 115, 127, 153, (260,435,0): 113, 123, 148, (260,436,0): 113, 123, 148, (260,437,0): 116, 124, 147, (260,438,0): 118, 124, 146, (260,439,0): 119, 126, 145, (260,440,0): 119, 124, 144, (260,441,0): 121, 124, 143, (260,442,0): 122, 123, 143, (260,443,0): 122, 123, 141, (260,444,0): 122, 121, 137, (260,445,0): 121, 120, 136, (260,446,0): 119, 118, 134, (260,447,0): 118, 117, 131, (260,448,0): 117, 119, 131, (260,449,0): 118, 121, 130, (260,450,0): 118, 121, 130, (260,451,0): 118, 121, 130, (260,452,0): 117, 117, 127, (260,453,0): 114, 114, 124, (260,454,0): 111, 109, 120, (260,455,0): 109, 107, 118, (260,456,0): 100, 98, 109, (260,457,0): 99, 97, 108, (260,458,0): 98, 95, 106, (260,459,0): 96, 93, 104, (260,460,0): 96, 90, 102, (260,461,0): 95, 89, 101, (260,462,0): 95, 89, 101, (260,463,0): 95, 89, 103, (260,464,0): 92, 89, 106, (260,465,0): 89, 88, 104, (260,466,0): 89, 88, 102, (260,467,0): 95, 93, 106, (260,468,0): 104, 101, 112, (260,469,0): 106, 103, 110, (260,470,0): 104, 99, 105, (260,471,0): 98, 94, 95, (260,472,0): 97, 91, 93, (260,473,0): 100, 91, 94, (260,474,0): 102, 91, 95, (260,475,0): 101, 90, 94, (260,476,0): 99, 87, 91, (260,477,0): 94, 82, 86, (260,478,0): 92, 77, 84, (260,479,0): 88, 73, 80, (260,480,0): 85, 70, 77, (260,481,0): 83, 68, 75, (260,482,0): 78, 65, 72, (260,483,0): 76, 63, 70, (260,484,0): 73, 62, 68, (260,485,0): 72, 61, 67, (260,486,0): 71, 62, 67, (260,487,0): 69, 63, 67, (260,488,0): 70, 65, 69, (260,489,0): 75, 70, 74, (260,490,0): 80, 78, 81, (260,491,0): 84, 82, 85, (260,492,0): 86, 86, 88, (260,493,0): 87, 88, 90, (260,494,0): 91, 92, 94, (260,495,0): 94, 95, 97, (260,496,0): 98, 99, 103, (260,497,0): 103, 104, 108, (260,498,0): 108, 109, 113, (260,499,0): 110, 114, 117, (260,500,0): 112, 117, 120, (260,501,0): 115, 123, 126, (260,502,0): 121, 130, 135, (260,503,0): 126, 137, 143, (260,504,0): 135, 148, 157, (260,505,0): 138, 154, 167, (260,506,0): 146, 162, 178, (260,507,0): 149, 167, 187, (260,508,0): 150, 168, 192, (260,509,0): 148, 168, 193, (260,510,0): 147, 168, 197, (260,511,0): 148, 167, 197, (260,512,0): 147, 163, 189, (260,513,0): 146, 162, 187, (260,514,0): 143, 163, 187, (260,515,0): 141, 166, 188, (260,516,0): 141, 167, 190, (260,517,0): 138, 166, 188, (260,518,0): 135, 159, 183, (260,519,0): 132, 154, 177, (260,520,0): 126, 144, 168, (260,521,0): 121, 136, 157, (260,522,0): 113, 124, 146, (260,523,0): 106, 114, 133, (260,524,0): 103, 110, 128, (260,525,0): 106, 114, 127, (260,526,0): 111, 121, 133, (260,527,0): 114, 126, 138, (260,528,0): 115, 127, 143, (260,529,0): 114, 127, 144, (260,530,0): 114, 127, 144, (260,531,0): 113, 126, 142, (260,532,0): 110, 124, 137, (260,533,0): 107, 121, 132, (260,534,0): 105, 117, 129, (260,535,0): 103, 116, 125, (260,536,0): 101, 111, 121, (260,537,0): 102, 112, 122, (260,538,0): 104, 112, 125, (260,539,0): 105, 112, 128, (260,540,0): 104, 111, 129, (260,541,0): 103, 110, 128, (260,542,0): 101, 108, 127, (260,543,0): 100, 107, 126, (260,544,0): 106, 109, 128, (260,545,0): 105, 108, 125, (260,546,0): 101, 102, 120, (260,547,0): 95, 94, 110, (260,548,0): 87, 84, 101, (260,549,0): 82, 78, 93, (260,550,0): 83, 75, 90, (260,551,0): 84, 76, 89, (260,552,0): 82, 71, 85, (260,553,0): 83, 73, 84, (260,554,0): 82, 75, 83, (260,555,0): 80, 73, 80, (260,556,0): 78, 71, 78, (260,557,0): 77, 72, 76, (260,558,0): 81, 76, 80, (260,559,0): 81, 80, 85, (260,560,0): 81, 81, 89, (260,561,0): 81, 84, 93, (260,562,0): 83, 86, 95, (260,563,0): 87, 90, 99, (260,564,0): 89, 93, 102, (260,565,0): 92, 96, 105, (260,566,0): 94, 98, 109, (260,567,0): 95, 99, 110, (260,568,0): 99, 105, 117, (260,569,0): 99, 105, 117, (260,570,0): 97, 105, 118, (260,571,0): 98, 106, 119, (260,572,0): 100, 108, 121, (260,573,0): 103, 111, 124, (260,574,0): 104, 114, 126, (260,575,0): 106, 116, 128, (260,576,0): 103, 115, 129, (260,577,0): 104, 118, 131, (260,578,0): 106, 119, 135, (260,579,0): 108, 121, 137, (260,580,0): 109, 122, 138, (260,581,0): 109, 122, 138, (260,582,0): 109, 122, 139, (260,583,0): 109, 122, 139, (260,584,0): 108, 121, 140, (260,585,0): 107, 120, 139, (260,586,0): 105, 118, 137, (260,587,0): 103, 116, 135, (260,588,0): 102, 114, 136, (260,589,0): 100, 112, 134, (260,590,0): 99, 111, 133, (260,591,0): 99, 112, 131, (260,592,0): 97, 108, 126, (260,593,0): 96, 105, 122, (260,594,0): 93, 100, 116, (260,595,0): 90, 98, 111, (260,596,0): 89, 95, 109, (260,597,0): 87, 91, 103, (260,598,0): 82, 84, 96, (260,599,0): 77, 79, 91, (261,0,0): 56, 45, 51, (261,1,0): 55, 44, 50, (261,2,0): 54, 43, 49, (261,3,0): 53, 42, 48, (261,4,0): 52, 41, 49, (261,5,0): 52, 41, 49, (261,6,0): 53, 42, 50, (261,7,0): 53, 42, 50, (261,8,0): 53, 41, 51, (261,9,0): 53, 41, 51, (261,10,0): 53, 41, 53, (261,11,0): 52, 40, 52, (261,12,0): 52, 40, 52, (261,13,0): 51, 39, 51, (261,14,0): 51, 39, 53, (261,15,0): 51, 37, 52, (261,16,0): 54, 37, 53, (261,17,0): 56, 38, 54, (261,18,0): 57, 39, 53, (261,19,0): 58, 40, 54, (261,20,0): 61, 41, 53, (261,21,0): 62, 42, 54, (261,22,0): 63, 43, 54, (261,23,0): 63, 43, 52, (261,24,0): 67, 46, 53, (261,25,0): 68, 47, 54, (261,26,0): 71, 48, 54, (261,27,0): 73, 51, 54, (261,28,0): 74, 52, 55, (261,29,0): 74, 52, 55, (261,30,0): 76, 51, 54, (261,31,0): 75, 50, 53, (261,32,0): 71, 49, 52, (261,33,0): 71, 49, 52, (261,34,0): 70, 48, 51, (261,35,0): 70, 48, 51, (261,36,0): 69, 47, 50, (261,37,0): 69, 47, 50, (261,38,0): 70, 45, 49, (261,39,0): 70, 45, 49, (261,40,0): 74, 47, 52, (261,41,0): 74, 47, 52, (261,42,0): 77, 48, 53, (261,43,0): 77, 48, 53, (261,44,0): 78, 49, 54, (261,45,0): 78, 49, 54, (261,46,0): 79, 50, 55, (261,47,0): 79, 50, 54, (261,48,0): 82, 53, 55, (261,49,0): 82, 54, 53, (261,50,0): 83, 55, 54, (261,51,0): 83, 55, 54, (261,52,0): 84, 56, 55, (261,53,0): 84, 56, 55, (261,54,0): 84, 56, 55, (261,55,0): 85, 57, 56, (261,56,0): 87, 59, 58, (261,57,0): 88, 60, 59, (261,58,0): 89, 61, 60, (261,59,0): 91, 63, 60, (261,60,0): 92, 64, 63, (261,61,0): 94, 66, 63, (261,62,0): 95, 67, 66, (261,63,0): 96, 68, 64, (261,64,0): 97, 69, 58, (261,65,0): 97, 69, 55, (261,66,0): 98, 70, 56, (261,67,0): 98, 70, 56, (261,68,0): 99, 71, 57, (261,69,0): 100, 73, 56, (261,70,0): 100, 73, 56, (261,71,0): 100, 73, 54, (261,72,0): 103, 76, 57, (261,73,0): 103, 76, 57, (261,74,0): 103, 76, 55, (261,75,0): 103, 76, 55, (261,76,0): 103, 76, 55, (261,77,0): 103, 76, 55, (261,78,0): 103, 76, 55, (261,79,0): 104, 76, 54, (261,80,0): 108, 78, 54, (261,81,0): 109, 77, 54, (261,82,0): 109, 77, 54, (261,83,0): 109, 77, 54, (261,84,0): 109, 77, 54, (261,85,0): 109, 77, 54, (261,86,0): 109, 77, 54, (261,87,0): 109, 77, 54, (261,88,0): 110, 78, 55, (261,89,0): 110, 78, 55, (261,90,0): 111, 79, 56, (261,91,0): 112, 80, 57, (261,92,0): 113, 81, 58, (261,93,0): 114, 82, 59, (261,94,0): 115, 83, 60, (261,95,0): 115, 83, 58, (261,96,0): 119, 85, 60, (261,97,0): 119, 85, 58, (261,98,0): 120, 86, 61, (261,99,0): 119, 85, 60, (261,100,0): 118, 84, 59, (261,101,0): 116, 82, 57, (261,102,0): 115, 80, 58, (261,103,0): 113, 78, 56, (261,104,0): 106, 71, 51, (261,105,0): 106, 71, 51, (261,106,0): 106, 71, 51, (261,107,0): 105, 70, 50, (261,108,0): 105, 70, 51, (261,109,0): 104, 69, 50, (261,110,0): 104, 69, 50, (261,111,0): 102, 69, 50, (261,112,0): 100, 67, 48, (261,113,0): 99, 68, 48, (261,114,0): 100, 69, 49, (261,115,0): 101, 70, 50, (261,116,0): 100, 69, 49, (261,117,0): 99, 68, 48, (261,118,0): 97, 66, 46, (261,119,0): 96, 65, 45, (261,120,0): 95, 64, 44, (261,121,0): 96, 65, 45, (261,122,0): 97, 66, 46, (261,123,0): 97, 66, 46, (261,124,0): 97, 66, 46, (261,125,0): 96, 65, 45, (261,126,0): 95, 64, 44, (261,127,0): 94, 63, 42, (261,128,0): 96, 64, 41, (261,129,0): 96, 64, 41, (261,130,0): 96, 64, 41, (261,131,0): 96, 64, 41, (261,132,0): 96, 64, 41, (261,133,0): 96, 64, 41, (261,134,0): 96, 64, 41, (261,135,0): 96, 64, 41, (261,136,0): 93, 61, 38, (261,137,0): 94, 62, 39, (261,138,0): 94, 62, 39, (261,139,0): 94, 62, 39, (261,140,0): 95, 63, 40, (261,141,0): 96, 64, 41, (261,142,0): 96, 64, 41, (261,143,0): 98, 64, 39, (261,144,0): 97, 62, 34, (261,145,0): 98, 63, 33, (261,146,0): 99, 64, 34, (261,147,0): 100, 65, 35, (261,148,0): 100, 65, 35, (261,149,0): 99, 64, 34, (261,150,0): 98, 63, 35, (261,151,0): 97, 62, 34, (261,152,0): 100, 64, 38, (261,153,0): 100, 64, 38, (261,154,0): 102, 66, 42, (261,155,0): 102, 66, 42, (261,156,0): 102, 66, 42, (261,157,0): 102, 66, 42, (261,158,0): 100, 64, 40, (261,159,0): 100, 64, 40, (261,160,0): 101, 65, 41, (261,161,0): 100, 66, 41, (261,162,0): 100, 64, 42, (261,163,0): 99, 63, 39, (261,164,0): 99, 63, 39, (261,165,0): 100, 64, 40, (261,166,0): 100, 64, 40, (261,167,0): 101, 65, 41, (261,168,0): 100, 64, 40, (261,169,0): 99, 63, 39, (261,170,0): 98, 62, 38, (261,171,0): 98, 62, 36, (261,172,0): 98, 62, 38, (261,173,0): 99, 63, 37, (261,174,0): 100, 64, 38, (261,175,0): 101, 65, 39, (261,176,0): 102, 65, 38, (261,177,0): 103, 66, 39, (261,178,0): 105, 68, 41, (261,179,0): 110, 70, 44, (261,180,0): 112, 72, 46, (261,181,0): 114, 72, 47, (261,182,0): 116, 72, 47, (261,183,0): 118, 72, 48, (261,184,0): 120, 74, 50, (261,185,0): 120, 72, 49, (261,186,0): 121, 73, 51, (261,187,0): 126, 76, 53, (261,188,0): 130, 79, 58, (261,189,0): 131, 79, 58, (261,190,0): 128, 76, 55, (261,191,0): 122, 74, 51, (261,192,0): 111, 67, 40, (261,193,0): 107, 66, 36, (261,194,0): 103, 62, 34, (261,195,0): 97, 57, 32, (261,196,0): 92, 51, 29, (261,197,0): 89, 48, 28, (261,198,0): 87, 45, 29, (261,199,0): 86, 44, 28, (261,200,0): 79, 40, 23, (261,201,0): 80, 41, 24, (261,202,0): 80, 43, 24, (261,203,0): 82, 46, 24, (261,204,0): 86, 50, 24, (261,205,0): 90, 55, 27, (261,206,0): 93, 58, 28, (261,207,0): 94, 61, 28, (261,208,0): 95, 62, 27, (261,209,0): 101, 69, 31, (261,210,0): 107, 78, 36, (261,211,0): 117, 88, 44, (261,212,0): 129, 101, 53, (261,213,0): 143, 116, 63, (261,214,0): 157, 131, 74, (261,215,0): 166, 142, 78, (261,216,0): 174, 151, 81, (261,217,0): 176, 157, 81, (261,218,0): 182, 164, 82, (261,219,0): 186, 168, 82, (261,220,0): 188, 173, 82, (261,221,0): 192, 177, 82, (261,222,0): 197, 182, 87, (261,223,0): 201, 186, 91, (261,224,0): 200, 185, 92, (261,225,0): 199, 182, 92, (261,226,0): 196, 179, 91, (261,227,0): 195, 177, 91, (261,228,0): 195, 174, 91, (261,229,0): 191, 170, 87, (261,230,0): 187, 166, 85, (261,231,0): 184, 161, 81, (261,232,0): 182, 159, 81, (261,233,0): 184, 158, 81, (261,234,0): 183, 157, 80, (261,235,0): 185, 159, 82, (261,236,0): 187, 161, 84, (261,237,0): 192, 167, 87, (261,238,0): 197, 170, 91, (261,239,0): 200, 174, 90, (261,240,0): 209, 185, 97, (261,241,0): 212, 189, 96, (261,242,0): 215, 192, 99, (261,243,0): 216, 193, 100, (261,244,0): 215, 192, 99, (261,245,0): 214, 191, 97, (261,246,0): 216, 193, 99, (261,247,0): 218, 195, 101, (261,248,0): 221, 198, 104, (261,249,0): 223, 200, 104, (261,250,0): 225, 202, 106, (261,251,0): 226, 204, 105, (261,252,0): 226, 204, 105, (261,253,0): 228, 206, 107, (261,254,0): 232, 210, 111, (261,255,0): 237, 213, 115, (261,256,0): 234, 209, 116, (261,257,0): 234, 209, 117, (261,258,0): 234, 209, 117, (261,259,0): 234, 211, 118, (261,260,0): 235, 215, 120, (261,261,0): 236, 220, 122, (261,262,0): 239, 225, 126, (261,263,0): 241, 229, 131, (261,264,0): 233, 225, 126, (261,265,0): 231, 225, 127, (261,266,0): 228, 224, 125, (261,267,0): 223, 223, 125, (261,268,0): 218, 219, 125, (261,269,0): 213, 217, 123, (261,270,0): 209, 212, 121, (261,271,0): 207, 210, 119, (261,272,0): 202, 200, 113, (261,273,0): 198, 196, 111, (261,274,0): 192, 195, 108, (261,275,0): 188, 194, 108, (261,276,0): 185, 193, 108, (261,277,0): 183, 191, 108, (261,278,0): 179, 186, 106, (261,279,0): 176, 183, 105, (261,280,0): 169, 171, 96, (261,281,0): 165, 165, 93, (261,282,0): 157, 157, 87, (261,283,0): 150, 151, 83, (261,284,0): 146, 149, 82, (261,285,0): 144, 151, 84, (261,286,0): 145, 154, 87, (261,287,0): 145, 156, 88, (261,288,0): 142, 155, 86, (261,289,0): 145, 158, 89, (261,290,0): 152, 165, 96, (261,291,0): 157, 172, 105, (261,292,0): 159, 174, 109, (261,293,0): 157, 169, 107, (261,294,0): 149, 157, 100, (261,295,0): 143, 148, 94, (261,296,0): 132, 132, 82, (261,297,0): 123, 120, 75, (261,298,0): 117, 112, 70, (261,299,0): 116, 112, 74, (261,300,0): 113, 113, 75, (261,301,0): 109, 114, 74, (261,302,0): 110, 118, 79, (261,303,0): 114, 125, 85, (261,304,0): 115, 127, 87, (261,305,0): 122, 137, 96, (261,306,0): 134, 151, 109, (261,307,0): 141, 159, 117, (261,308,0): 143, 166, 122, (261,309,0): 146, 172, 127, (261,310,0): 152, 181, 135, (261,311,0): 156, 188, 141, (261,312,0): 167, 200, 153, (261,313,0): 171, 207, 159, (261,314,0): 178, 216, 167, (261,315,0): 182, 222, 172, (261,316,0): 184, 224, 174, (261,317,0): 183, 223, 173, (261,318,0): 182, 222, 172, (261,319,0): 183, 221, 172, (261,320,0): 177, 211, 161, (261,321,0): 181, 210, 162, (261,322,0): 182, 204, 158, (261,323,0): 173, 184, 144, (261,324,0): 155, 155, 121, (261,325,0): 132, 125, 96, (261,326,0): 118, 103, 80, (261,327,0): 110, 92, 72, (261,328,0): 99, 81, 61, (261,329,0): 94, 77, 59, (261,330,0): 88, 71, 53, (261,331,0): 85, 68, 50, (261,332,0): 82, 65, 47, (261,333,0): 80, 63, 43, (261,334,0): 76, 59, 39, (261,335,0): 73, 56, 38, (261,336,0): 72, 55, 39, (261,337,0): 71, 53, 39, (261,338,0): 68, 52, 37, (261,339,0): 67, 51, 36, (261,340,0): 68, 52, 39, (261,341,0): 68, 54, 41, (261,342,0): 69, 57, 43, (261,343,0): 71, 59, 45, (261,344,0): 74, 64, 52, (261,345,0): 75, 65, 53, (261,346,0): 72, 64, 53, (261,347,0): 65, 59, 47, (261,348,0): 60, 54, 42, (261,349,0): 60, 54, 42, (261,350,0): 64, 60, 49, (261,351,0): 70, 66, 55, (261,352,0): 75, 73, 60, (261,353,0): 80, 78, 63, (261,354,0): 88, 86, 71, (261,355,0): 95, 93, 78, (261,356,0): 100, 97, 80, (261,357,0): 101, 98, 81, (261,358,0): 100, 97, 80, (261,359,0): 97, 95, 80, (261,360,0): 97, 95, 82, (261,361,0): 96, 98, 85, (261,362,0): 101, 104, 93, (261,363,0): 109, 115, 105, (261,364,0): 118, 125, 118, (261,365,0): 118, 129, 123, (261,366,0): 113, 125, 121, (261,367,0): 107, 119, 115, (261,368,0): 112, 123, 115, (261,369,0): 114, 125, 117, (261,370,0): 117, 128, 120, (261,371,0): 119, 132, 123, (261,372,0): 120, 133, 126, (261,373,0): 118, 133, 128, (261,374,0): 117, 132, 127, (261,375,0): 115, 131, 128, (261,376,0): 110, 129, 127, (261,377,0): 113, 131, 131, (261,378,0): 116, 136, 135, (261,379,0): 118, 138, 139, (261,380,0): 117, 138, 139, (261,381,0): 119, 140, 143, (261,382,0): 123, 144, 147, (261,383,0): 123, 148, 152, (261,384,0): 127, 158, 163, (261,385,0): 127, 160, 169, (261,386,0): 131, 160, 174, (261,387,0): 131, 160, 178, (261,388,0): 132, 160, 184, (261,389,0): 134, 163, 193, (261,390,0): 137, 170, 203, (261,391,0): 140, 176, 212, (261,392,0): 140, 178, 215, (261,393,0): 141, 181, 217, (261,394,0): 140, 178, 214, (261,395,0): 138, 174, 208, (261,396,0): 141, 170, 204, (261,397,0): 136, 160, 194, (261,398,0): 122, 141, 174, (261,399,0): 107, 121, 150, (261,400,0): 108, 115, 134, (261,401,0): 98, 104, 118, (261,402,0): 91, 97, 111, (261,403,0): 94, 100, 112, (261,404,0): 99, 105, 117, (261,405,0): 100, 108, 119, (261,406,0): 106, 114, 125, (261,407,0): 111, 121, 131, (261,408,0): 111, 121, 131, (261,409,0): 111, 121, 131, (261,410,0): 109, 121, 135, (261,411,0): 110, 122, 138, (261,412,0): 111, 124, 141, (261,413,0): 114, 127, 146, (261,414,0): 116, 128, 150, (261,415,0): 118, 130, 154, (261,416,0): 118, 133, 156, (261,417,0): 117, 133, 158, (261,418,0): 117, 133, 158, (261,419,0): 117, 133, 158, (261,420,0): 115, 131, 156, (261,421,0): 113, 129, 155, (261,422,0): 111, 127, 153, (261,423,0): 109, 125, 151, (261,424,0): 113, 128, 157, (261,425,0): 116, 131, 160, (261,426,0): 120, 135, 164, (261,427,0): 124, 139, 170, (261,428,0): 125, 140, 171, (261,429,0): 124, 139, 170, (261,430,0): 122, 137, 168, (261,431,0): 121, 134, 166, (261,432,0): 119, 133, 162, (261,433,0): 118, 129, 157, (261,434,0): 116, 127, 155, (261,435,0): 115, 127, 153, (261,436,0): 116, 126, 153, (261,437,0): 116, 126, 151, (261,438,0): 117, 125, 148, (261,439,0): 117, 123, 145, (261,440,0): 117, 122, 142, (261,441,0): 119, 121, 142, (261,442,0): 120, 121, 141, (261,443,0): 119, 120, 138, (261,444,0): 121, 120, 136, (261,445,0): 120, 119, 135, (261,446,0): 119, 118, 134, (261,447,0): 119, 118, 132, (261,448,0): 123, 123, 135, (261,449,0): 123, 123, 133, (261,450,0): 123, 123, 133, (261,451,0): 121, 121, 131, (261,452,0): 118, 118, 128, (261,453,0): 113, 113, 123, (261,454,0): 110, 108, 119, (261,455,0): 107, 105, 116, (261,456,0): 103, 101, 112, (261,457,0): 102, 100, 111, (261,458,0): 102, 99, 110, (261,459,0): 100, 97, 108, (261,460,0): 98, 95, 106, (261,461,0): 97, 94, 105, (261,462,0): 96, 93, 104, (261,463,0): 95, 91, 105, (261,464,0): 95, 94, 110, (261,465,0): 94, 93, 111, (261,466,0): 94, 93, 109, (261,467,0): 98, 98, 110, (261,468,0): 104, 102, 113, (261,469,0): 106, 103, 112, (261,470,0): 104, 99, 105, (261,471,0): 100, 95, 99, (261,472,0): 98, 92, 96, (261,473,0): 99, 93, 95, (261,474,0): 101, 92, 95, (261,475,0): 101, 90, 94, (261,476,0): 100, 88, 92, (261,477,0): 97, 84, 91, (261,478,0): 96, 81, 88, (261,479,0): 94, 79, 86, (261,480,0): 89, 74, 81, (261,481,0): 85, 72, 79, (261,482,0): 81, 68, 75, (261,483,0): 77, 66, 72, (261,484,0): 74, 63, 69, (261,485,0): 73, 64, 69, (261,486,0): 71, 65, 69, (261,487,0): 72, 66, 70, (261,488,0): 73, 68, 72, (261,489,0): 76, 74, 77, (261,490,0): 83, 81, 84, (261,491,0): 86, 86, 88, (261,492,0): 87, 88, 90, (261,493,0): 89, 90, 92, (261,494,0): 91, 92, 94, (261,495,0): 94, 95, 97, (261,496,0): 100, 101, 103, (261,497,0): 104, 108, 109, (261,498,0): 112, 116, 117, (261,499,0): 115, 121, 121, (261,500,0): 116, 124, 126, (261,501,0): 119, 129, 131, (261,502,0): 126, 137, 141, (261,503,0): 131, 144, 152, (261,504,0): 140, 154, 165, (261,505,0): 143, 159, 172, (261,506,0): 148, 165, 181, (261,507,0): 150, 168, 188, (261,508,0): 150, 168, 192, (261,509,0): 148, 168, 195, (261,510,0): 147, 168, 197, (261,511,0): 149, 168, 198, (261,512,0): 151, 167, 193, (261,513,0): 150, 166, 191, (261,514,0): 147, 167, 191, (261,515,0): 146, 171, 193, (261,516,0): 145, 171, 194, (261,517,0): 141, 169, 191, (261,518,0): 137, 161, 185, (261,519,0): 134, 156, 179, (261,520,0): 129, 147, 171, (261,521,0): 124, 139, 160, (261,522,0): 115, 126, 148, (261,523,0): 107, 115, 134, (261,524,0): 104, 111, 129, (261,525,0): 105, 113, 126, (261,526,0): 109, 119, 131, (261,527,0): 112, 124, 136, (261,528,0): 112, 124, 140, (261,529,0): 112, 125, 142, (261,530,0): 113, 126, 142, (261,531,0): 113, 127, 140, (261,532,0): 112, 126, 137, (261,533,0): 109, 123, 134, (261,534,0): 107, 120, 129, (261,535,0): 105, 118, 127, (261,536,0): 101, 111, 121, (261,537,0): 102, 112, 122, (261,538,0): 105, 113, 126, (261,539,0): 105, 113, 126, (261,540,0): 104, 111, 127, (261,541,0): 102, 109, 127, (261,542,0): 99, 106, 125, (261,543,0): 98, 103, 122, (261,544,0): 102, 105, 122, (261,545,0): 102, 104, 119, (261,546,0): 100, 99, 115, (261,547,0): 93, 92, 106, (261,548,0): 88, 84, 99, (261,549,0): 84, 80, 94, (261,550,0): 86, 80, 94, (261,551,0): 88, 80, 93, (261,552,0): 87, 77, 88, (261,553,0): 85, 77, 88, (261,554,0): 85, 78, 86, (261,555,0): 81, 76, 83, (261,556,0): 79, 74, 80, (261,557,0): 77, 75, 80, (261,558,0): 81, 79, 84, (261,559,0): 83, 82, 87, (261,560,0): 85, 88, 95, (261,561,0): 86, 89, 98, (261,562,0): 89, 92, 101, (261,563,0): 92, 95, 104, (261,564,0): 93, 97, 106, (261,565,0): 95, 99, 108, (261,566,0): 95, 99, 110, (261,567,0): 94, 101, 111, (261,568,0): 98, 104, 116, (261,569,0): 97, 105, 116, (261,570,0): 96, 104, 117, (261,571,0): 97, 105, 118, (261,572,0): 99, 107, 120, (261,573,0): 102, 110, 123, (261,574,0): 105, 115, 127, (261,575,0): 105, 117, 129, (261,576,0): 103, 115, 129, (261,577,0): 103, 116, 132, (261,578,0): 105, 118, 134, (261,579,0): 108, 121, 137, (261,580,0): 109, 122, 138, (261,581,0): 110, 123, 139, (261,582,0): 110, 123, 140, (261,583,0): 110, 123, 140, (261,584,0): 107, 120, 139, (261,585,0): 105, 118, 137, (261,586,0): 104, 117, 136, (261,587,0): 102, 115, 134, (261,588,0): 100, 112, 134, (261,589,0): 99, 111, 133, (261,590,0): 99, 111, 133, (261,591,0): 99, 112, 131, (261,592,0): 98, 106, 125, (261,593,0): 95, 104, 121, (261,594,0): 92, 99, 115, (261,595,0): 89, 97, 110, (261,596,0): 90, 93, 108, (261,597,0): 85, 89, 101, (261,598,0): 80, 82, 94, (261,599,0): 75, 77, 89, (262,0,0): 59, 47, 51, (262,1,0): 58, 46, 50, (262,2,0): 57, 45, 49, (262,3,0): 55, 43, 47, (262,4,0): 55, 42, 49, (262,5,0): 55, 42, 49, (262,6,0): 56, 43, 52, (262,7,0): 56, 43, 52, (262,8,0): 55, 42, 51, (262,9,0): 54, 41, 50, (262,10,0): 54, 41, 51, (262,11,0): 53, 40, 50, (262,12,0): 53, 39, 52, (262,13,0): 52, 38, 51, (262,14,0): 52, 38, 51, (262,15,0): 52, 38, 51, (262,16,0): 56, 40, 53, (262,17,0): 57, 39, 53, (262,18,0): 58, 40, 54, (262,19,0): 59, 41, 55, (262,20,0): 62, 42, 54, (262,21,0): 63, 43, 55, (262,22,0): 64, 44, 55, (262,23,0): 64, 44, 53, (262,24,0): 67, 46, 53, (262,25,0): 68, 47, 54, (262,26,0): 71, 48, 54, (262,27,0): 73, 51, 54, (262,28,0): 74, 52, 55, (262,29,0): 74, 52, 54, (262,30,0): 76, 51, 54, (262,31,0): 76, 51, 54, (262,32,0): 71, 49, 52, (262,33,0): 70, 50, 52, (262,34,0): 69, 49, 51, (262,35,0): 69, 49, 51, (262,36,0): 69, 47, 50, (262,37,0): 69, 47, 50, (262,38,0): 68, 46, 49, (262,39,0): 68, 46, 49, (262,40,0): 73, 48, 52, (262,41,0): 73, 48, 52, (262,42,0): 75, 48, 53, (262,43,0): 75, 48, 53, (262,44,0): 76, 49, 54, (262,45,0): 76, 49, 54, (262,46,0): 79, 50, 55, (262,47,0): 79, 50, 54, (262,48,0): 79, 53, 54, (262,49,0): 79, 53, 52, (262,50,0): 80, 54, 53, (262,51,0): 80, 54, 53, (262,52,0): 81, 55, 54, (262,53,0): 81, 55, 54, (262,54,0): 82, 57, 53, (262,55,0): 82, 57, 53, (262,56,0): 85, 60, 56, (262,57,0): 86, 61, 57, (262,58,0): 87, 62, 58, (262,59,0): 88, 63, 58, (262,60,0): 90, 65, 61, (262,61,0): 92, 67, 62, (262,62,0): 93, 68, 64, (262,63,0): 95, 68, 61, (262,64,0): 98, 70, 58, (262,65,0): 98, 70, 56, (262,66,0): 99, 72, 55, (262,67,0): 99, 72, 55, (262,68,0): 99, 72, 55, (262,69,0): 100, 73, 56, (262,70,0): 100, 73, 56, (262,71,0): 100, 73, 54, (262,72,0): 104, 77, 58, (262,73,0): 104, 77, 56, (262,74,0): 104, 77, 56, (262,75,0): 104, 77, 56, (262,76,0): 104, 78, 55, (262,77,0): 104, 78, 55, (262,78,0): 104, 78, 55, (262,79,0): 105, 77, 55, (262,80,0): 110, 80, 56, (262,81,0): 111, 79, 56, (262,82,0): 111, 79, 56, (262,83,0): 111, 79, 56, (262,84,0): 111, 79, 56, (262,85,0): 111, 79, 56, (262,86,0): 111, 79, 56, (262,87,0): 111, 79, 56, (262,88,0): 111, 79, 56, (262,89,0): 111, 79, 56, (262,90,0): 112, 80, 57, (262,91,0): 113, 81, 58, (262,92,0): 114, 82, 59, (262,93,0): 115, 83, 60, (262,94,0): 116, 84, 61, (262,95,0): 116, 84, 59, (262,96,0): 117, 85, 60, (262,97,0): 117, 86, 58, (262,98,0): 118, 87, 59, (262,99,0): 117, 86, 58, (262,100,0): 116, 85, 57, (262,101,0): 114, 83, 55, (262,102,0): 113, 81, 56, (262,103,0): 111, 79, 54, (262,104,0): 107, 75, 52, (262,105,0): 107, 75, 52, (262,106,0): 106, 74, 53, (262,107,0): 106, 74, 53, (262,108,0): 105, 73, 52, (262,109,0): 105, 73, 52, (262,110,0): 104, 72, 51, (262,111,0): 104, 72, 51, (262,112,0): 102, 70, 49, (262,113,0): 102, 70, 49, (262,114,0): 103, 71, 50, (262,115,0): 103, 71, 50, (262,116,0): 102, 70, 49, (262,117,0): 101, 69, 48, (262,118,0): 99, 67, 46, (262,119,0): 98, 66, 45, (262,120,0): 96, 64, 43, (262,121,0): 97, 65, 44, (262,122,0): 98, 66, 45, (262,123,0): 99, 67, 46, (262,124,0): 99, 67, 46, (262,125,0): 99, 67, 46, (262,126,0): 98, 66, 45, (262,127,0): 97, 65, 44, (262,128,0): 100, 65, 43, (262,129,0): 100, 65, 43, (262,130,0): 100, 65, 43, (262,131,0): 100, 65, 43, (262,132,0): 100, 65, 43, (262,133,0): 100, 65, 43, (262,134,0): 100, 65, 43, (262,135,0): 100, 65, 43, (262,136,0): 97, 62, 40, (262,137,0): 97, 62, 40, (262,138,0): 97, 62, 40, (262,139,0): 98, 63, 41, (262,140,0): 98, 63, 41, (262,141,0): 99, 64, 42, (262,142,0): 99, 64, 42, (262,143,0): 100, 66, 41, (262,144,0): 100, 65, 37, (262,145,0): 100, 65, 35, (262,146,0): 101, 66, 36, (262,147,0): 102, 67, 37, (262,148,0): 102, 67, 37, (262,149,0): 101, 66, 36, (262,150,0): 100, 65, 37, (262,151,0): 100, 65, 37, (262,152,0): 99, 63, 37, (262,153,0): 99, 63, 37, (262,154,0): 101, 65, 41, (262,155,0): 101, 65, 41, (262,156,0): 101, 65, 41, (262,157,0): 101, 65, 41, (262,158,0): 99, 63, 39, (262,159,0): 99, 63, 39, (262,160,0): 98, 63, 41, (262,161,0): 95, 63, 40, (262,162,0): 96, 61, 41, (262,163,0): 95, 60, 38, (262,164,0): 95, 60, 38, (262,165,0): 96, 61, 39, (262,166,0): 98, 64, 39, (262,167,0): 99, 65, 40, (262,168,0): 97, 61, 35, (262,169,0): 97, 61, 35, (262,170,0): 97, 61, 35, (262,171,0): 98, 63, 35, (262,172,0): 101, 64, 38, (262,173,0): 104, 67, 40, (262,174,0): 107, 70, 43, (262,175,0): 108, 71, 42, (262,176,0): 112, 73, 42, (262,177,0): 114, 75, 44, (262,178,0): 116, 77, 46, (262,179,0): 119, 78, 48, (262,180,0): 121, 80, 52, (262,181,0): 123, 79, 52, (262,182,0): 123, 79, 52, (262,183,0): 123, 77, 51, (262,184,0): 126, 79, 53, (262,185,0): 127, 77, 52, (262,186,0): 128, 78, 55, (262,187,0): 130, 78, 54, (262,188,0): 132, 80, 58, (262,189,0): 132, 77, 56, (262,190,0): 128, 73, 52, (262,191,0): 120, 70, 45, (262,192,0): 107, 63, 34, (262,193,0): 101, 62, 31, (262,194,0): 98, 59, 30, (262,195,0): 93, 53, 28, (262,196,0): 90, 49, 27, (262,197,0): 86, 48, 27, (262,198,0): 85, 46, 29, (262,199,0): 85, 46, 29, (262,200,0): 84, 46, 27, (262,201,0): 86, 48, 27, (262,202,0): 89, 52, 26, (262,203,0): 95, 58, 29, (262,204,0): 102, 66, 32, (262,205,0): 109, 75, 37, (262,206,0): 115, 82, 41, (262,207,0): 118, 85, 40, (262,208,0): 119, 89, 39, (262,209,0): 125, 95, 43, (262,210,0): 133, 103, 49, (262,211,0): 141, 112, 56, (262,212,0): 150, 121, 61, (262,213,0): 159, 134, 70, (262,214,0): 170, 145, 78, (262,215,0): 176, 154, 79, (262,216,0): 183, 162, 83, (262,217,0): 187, 166, 83, (262,218,0): 189, 172, 84, (262,219,0): 192, 175, 83, (262,220,0): 195, 179, 84, (262,221,0): 200, 184, 86, (262,222,0): 207, 191, 93, (262,223,0): 210, 196, 97, (262,224,0): 209, 194, 99, (262,225,0): 206, 191, 100, (262,226,0): 203, 188, 97, (262,227,0): 201, 185, 97, (262,228,0): 202, 185, 97, (262,229,0): 201, 181, 95, (262,230,0): 196, 175, 92, (262,231,0): 192, 170, 87, (262,232,0): 187, 162, 82, (262,233,0): 188, 161, 82, (262,234,0): 189, 162, 83, (262,235,0): 191, 164, 85, (262,236,0): 196, 167, 89, (262,237,0): 201, 172, 92, (262,238,0): 208, 177, 97, (262,239,0): 208, 180, 97, (262,240,0): 214, 188, 101, (262,241,0): 217, 192, 102, (262,242,0): 220, 195, 105, (262,243,0): 219, 194, 102, (262,244,0): 217, 192, 100, (262,245,0): 215, 190, 98, (262,246,0): 215, 190, 98, (262,247,0): 216, 191, 98, (262,248,0): 220, 195, 102, (262,249,0): 223, 199, 103, (262,250,0): 226, 202, 106, (262,251,0): 227, 203, 107, (262,252,0): 228, 204, 108, (262,253,0): 231, 207, 109, (262,254,0): 236, 212, 114, (262,255,0): 240, 216, 118, (262,256,0): 243, 217, 122, (262,257,0): 241, 215, 122, (262,258,0): 240, 214, 119, (262,259,0): 239, 215, 119, (262,260,0): 238, 218, 119, (262,261,0): 240, 222, 122, (262,262,0): 242, 227, 126, (262,263,0): 242, 230, 128, (262,264,0): 236, 228, 127, (262,265,0): 234, 230, 130, (262,266,0): 234, 232, 132, (262,267,0): 231, 231, 133, (262,268,0): 225, 229, 134, (262,269,0): 219, 225, 129, (262,270,0): 215, 220, 126, (262,271,0): 211, 216, 124, (262,272,0): 208, 208, 118, (262,273,0): 204, 204, 116, (262,274,0): 198, 201, 112, (262,275,0): 193, 199, 111, (262,276,0): 189, 197, 111, (262,277,0): 186, 196, 110, (262,278,0): 182, 191, 108, (262,279,0): 179, 186, 106, (262,280,0): 174, 177, 100, (262,281,0): 171, 173, 98, (262,282,0): 165, 167, 94, (262,283,0): 159, 160, 90, (262,284,0): 154, 157, 88, (262,285,0): 150, 157, 89, (262,286,0): 148, 159, 90, (262,287,0): 148, 161, 91, (262,288,0): 152, 164, 92, (262,289,0): 154, 167, 95, (262,290,0): 158, 171, 101, (262,291,0): 163, 176, 107, (262,292,0): 164, 176, 110, (262,293,0): 159, 171, 107, (262,294,0): 151, 159, 100, (262,295,0): 147, 150, 97, (262,296,0): 130, 128, 79, (262,297,0): 122, 118, 73, (262,298,0): 118, 111, 69, (262,299,0): 117, 112, 74, (262,300,0): 116, 114, 76, (262,301,0): 111, 113, 76, (262,302,0): 109, 115, 79, (262,303,0): 111, 119, 82, (262,304,0): 112, 118, 82, (262,305,0): 119, 127, 90, (262,306,0): 128, 138, 101, (262,307,0): 135, 147, 109, (262,308,0): 135, 151, 114, (262,309,0): 137, 158, 119, (262,310,0): 141, 166, 126, (262,311,0): 146, 174, 133, (262,312,0): 155, 186, 144, (262,313,0): 160, 196, 152, (262,314,0): 169, 208, 164, (262,315,0): 176, 217, 173, (262,316,0): 180, 223, 178, (262,317,0): 181, 227, 181, (262,318,0): 184, 230, 184, (262,319,0): 186, 232, 186, (262,320,0): 183, 225, 179, (262,321,0): 186, 222, 178, (262,322,0): 183, 210, 169, (262,323,0): 170, 186, 150, (262,324,0): 149, 154, 122, (262,325,0): 130, 124, 98, (262,326,0): 116, 104, 80, (262,327,0): 112, 95, 75, (262,328,0): 105, 88, 68, (262,329,0): 102, 85, 65, (262,330,0): 98, 81, 61, (262,331,0): 94, 79, 58, (262,332,0): 92, 77, 56, (262,333,0): 88, 73, 50, (262,334,0): 83, 68, 45, (262,335,0): 78, 63, 42, (262,336,0): 78, 61, 45, (262,337,0): 76, 58, 44, (262,338,0): 73, 55, 41, (262,339,0): 70, 54, 39, (262,340,0): 69, 53, 40, (262,341,0): 68, 54, 41, (262,342,0): 69, 57, 43, (262,343,0): 71, 59, 45, (262,344,0): 72, 62, 50, (262,345,0): 75, 65, 53, (262,346,0): 74, 66, 55, (262,347,0): 68, 62, 50, (262,348,0): 62, 56, 44, (262,349,0): 59, 55, 43, (262,350,0): 64, 60, 49, (262,351,0): 70, 66, 55, (262,352,0): 77, 73, 61, (262,353,0): 80, 76, 64, (262,354,0): 86, 83, 68, (262,355,0): 92, 89, 74, (262,356,0): 98, 92, 78, (262,357,0): 101, 95, 81, (262,358,0): 100, 97, 82, (262,359,0): 99, 97, 82, (262,360,0): 96, 94, 81, (262,361,0): 94, 96, 83, (262,362,0): 98, 101, 90, (262,363,0): 106, 114, 103, (262,364,0): 116, 126, 118, (262,365,0): 120, 131, 125, (262,366,0): 116, 128, 124, (262,367,0): 112, 124, 120, (262,368,0): 113, 126, 119, (262,369,0): 114, 127, 120, (262,370,0): 117, 130, 123, (262,371,0): 118, 131, 124, (262,372,0): 118, 130, 126, (262,373,0): 114, 129, 124, (262,374,0): 112, 127, 124, (262,375,0): 109, 125, 124, (262,376,0): 108, 127, 125, (262,377,0): 111, 129, 129, (262,378,0): 114, 134, 135, (262,379,0): 115, 134, 138, (262,380,0): 115, 134, 138, (262,381,0): 115, 136, 141, (262,382,0): 119, 140, 145, (262,383,0): 119, 144, 148, (262,384,0): 122, 153, 158, (262,385,0): 121, 154, 161, (262,386,0): 124, 154, 165, (262,387,0): 123, 152, 168, (262,388,0): 123, 151, 173, (262,389,0): 125, 152, 181, (262,390,0): 129, 158, 190, (262,391,0): 133, 163, 199, (262,392,0): 134, 167, 202, (262,393,0): 138, 171, 206, (262,394,0): 140, 170, 204, (262,395,0): 135, 164, 196, (262,396,0): 135, 156, 187, (262,397,0): 128, 145, 175, (262,398,0): 113, 124, 152, (262,399,0): 98, 105, 131, (262,400,0): 98, 103, 122, (262,401,0): 92, 96, 108, (262,402,0): 88, 92, 104, (262,403,0): 93, 97, 109, (262,404,0): 99, 103, 115, (262,405,0): 100, 107, 117, (262,406,0): 104, 113, 122, (262,407,0): 111, 120, 129, (262,408,0): 113, 123, 133, (262,409,0): 113, 123, 133, (262,410,0): 111, 123, 137, (262,411,0): 111, 123, 139, (262,412,0): 112, 125, 142, (262,413,0): 114, 127, 146, (262,414,0): 116, 128, 150, (262,415,0): 117, 129, 153, (262,416,0): 117, 132, 155, (262,417,0): 117, 132, 155, (262,418,0): 117, 132, 155, (262,419,0): 116, 131, 154, (262,420,0): 114, 129, 152, (262,421,0): 112, 126, 152, (262,422,0): 109, 123, 149, (262,423,0): 108, 122, 148, (262,424,0): 115, 129, 156, (262,425,0): 117, 131, 158, (262,426,0): 121, 135, 162, (262,427,0): 124, 138, 167, (262,428,0): 125, 139, 168, (262,429,0): 123, 137, 166, (262,430,0): 120, 134, 163, (262,431,0): 118, 132, 161, (262,432,0): 121, 135, 164, (262,433,0): 119, 133, 162, (262,434,0): 117, 131, 160, (262,435,0): 120, 131, 159, (262,436,0): 123, 133, 160, (262,437,0): 122, 132, 157, (262,438,0): 120, 128, 151, (262,439,0): 117, 123, 145, (262,440,0): 115, 120, 140, (262,441,0): 117, 119, 140, (262,442,0): 117, 118, 138, (262,443,0): 117, 118, 136, (262,444,0): 119, 118, 134, (262,445,0): 120, 117, 134, (262,446,0): 120, 118, 132, (262,447,0): 120, 118, 131, (262,448,0): 127, 125, 136, (262,449,0): 127, 126, 134, (262,450,0): 126, 125, 133, (262,451,0): 124, 123, 131, (262,452,0): 119, 118, 126, (262,453,0): 113, 112, 120, (262,454,0): 108, 106, 117, (262,455,0): 105, 103, 114, (262,456,0): 105, 103, 114, (262,457,0): 105, 103, 114, (262,458,0): 104, 102, 115, (262,459,0): 103, 101, 114, (262,460,0): 101, 99, 112, (262,461,0): 99, 97, 110, (262,462,0): 98, 96, 109, (262,463,0): 96, 95, 109, (262,464,0): 98, 97, 115, (262,465,0): 97, 98, 116, (262,466,0): 100, 99, 115, (262,467,0): 102, 101, 115, (262,468,0): 104, 102, 115, (262,469,0): 103, 102, 110, (262,470,0): 101, 98, 105, (262,471,0): 100, 95, 101, (262,472,0): 98, 92, 96, (262,473,0): 98, 92, 96, (262,474,0): 99, 90, 95, (262,475,0): 99, 90, 95, (262,476,0): 98, 87, 93, (262,477,0): 97, 86, 94, (262,478,0): 97, 84, 93, (262,479,0): 96, 83, 92, (262,480,0): 93, 80, 87, (262,481,0): 91, 78, 85, (262,482,0): 87, 74, 81, (262,483,0): 82, 71, 77, (262,484,0): 79, 68, 74, (262,485,0): 78, 69, 74, (262,486,0): 77, 71, 75, (262,487,0): 77, 71, 75, (262,488,0): 78, 73, 77, (262,489,0): 81, 79, 82, (262,490,0): 88, 86, 89, (262,491,0): 92, 92, 94, (262,492,0): 93, 94, 96, (262,493,0): 94, 95, 97, (262,494,0): 94, 98, 99, (262,495,0): 96, 100, 101, (262,496,0): 97, 101, 100, (262,497,0): 103, 109, 107, (262,498,0): 113, 119, 117, (262,499,0): 117, 126, 125, (262,500,0): 120, 128, 130, (262,501,0): 124, 134, 136, (262,502,0): 132, 143, 149, (262,503,0): 137, 150, 158, (262,504,0): 147, 161, 172, (262,505,0): 148, 164, 179, (262,506,0): 152, 169, 187, (262,507,0): 152, 170, 192, (262,508,0): 152, 170, 194, (262,509,0): 149, 169, 196, (262,510,0): 151, 170, 200, (262,511,0): 155, 172, 200, (262,512,0): 155, 171, 197, (262,513,0): 154, 170, 195, (262,514,0): 151, 171, 195, (262,515,0): 149, 174, 196, (262,516,0): 148, 174, 197, (262,517,0): 143, 171, 193, (262,518,0): 138, 162, 186, (262,519,0): 134, 156, 179, (262,520,0): 132, 150, 174, (262,521,0): 127, 142, 163, (262,522,0): 118, 129, 151, (262,523,0): 110, 118, 137, (262,524,0): 106, 113, 131, (262,525,0): 105, 113, 126, (262,526,0): 108, 118, 130, (262,527,0): 109, 121, 133, (262,528,0): 109, 121, 137, (262,529,0): 110, 123, 140, (262,530,0): 112, 125, 141, (262,531,0): 113, 127, 140, (262,532,0): 113, 127, 138, (262,533,0): 110, 124, 135, (262,534,0): 108, 121, 130, (262,535,0): 106, 119, 127, (262,536,0): 101, 111, 120, (262,537,0): 103, 113, 123, (262,538,0): 105, 113, 126, (262,539,0): 106, 114, 127, (262,540,0): 104, 111, 127, (262,541,0): 101, 108, 126, (262,542,0): 97, 104, 123, (262,543,0): 96, 101, 120, (262,544,0): 98, 101, 116, (262,545,0): 98, 100, 113, (262,546,0): 97, 96, 110, (262,547,0): 91, 90, 104, (262,548,0): 87, 83, 98, (262,549,0): 85, 81, 95, (262,550,0): 89, 83, 97, (262,551,0): 92, 86, 98, (262,552,0): 90, 82, 93, (262,553,0): 90, 82, 93, (262,554,0): 88, 81, 89, (262,555,0): 84, 79, 86, (262,556,0): 79, 76, 83, (262,557,0): 78, 77, 82, (262,558,0): 81, 80, 85, (262,559,0): 84, 85, 90, (262,560,0): 89, 92, 99, (262,561,0): 90, 94, 103, (262,562,0): 92, 96, 105, (262,563,0): 95, 99, 108, (262,564,0): 97, 101, 110, (262,565,0): 97, 101, 110, (262,566,0): 95, 102, 112, (262,567,0): 95, 102, 112, (262,568,0): 94, 100, 112, (262,569,0): 93, 101, 112, (262,570,0): 92, 100, 113, (262,571,0): 91, 101, 113, (262,572,0): 94, 104, 116, (262,573,0): 97, 107, 119, (262,574,0): 102, 112, 124, (262,575,0): 102, 114, 128, (262,576,0): 102, 114, 130, (262,577,0): 102, 115, 132, (262,578,0): 105, 118, 135, (262,579,0): 107, 120, 137, (262,580,0): 109, 122, 139, (262,581,0): 110, 123, 140, (262,582,0): 110, 123, 140, (262,583,0): 110, 123, 140, (262,584,0): 105, 118, 137, (262,585,0): 104, 117, 136, (262,586,0): 102, 115, 134, (262,587,0): 100, 113, 132, (262,588,0): 99, 112, 131, (262,589,0): 99, 112, 131, (262,590,0): 100, 113, 132, (262,591,0): 101, 114, 133, (262,592,0): 100, 108, 127, (262,593,0): 97, 106, 123, (262,594,0): 94, 101, 117, (262,595,0): 91, 99, 112, (262,596,0): 91, 94, 109, (262,597,0): 86, 90, 102, (262,598,0): 81, 83, 95, (262,599,0): 76, 78, 90, (263,0,0): 60, 48, 52, (263,1,0): 59, 47, 51, (263,2,0): 58, 46, 50, (263,3,0): 57, 45, 49, (263,4,0): 56, 43, 50, (263,5,0): 56, 43, 50, (263,6,0): 57, 44, 53, (263,7,0): 58, 45, 54, (263,8,0): 55, 42, 51, (263,9,0): 55, 42, 51, (263,10,0): 54, 41, 51, (263,11,0): 54, 41, 51, (263,12,0): 53, 39, 52, (263,13,0): 53, 39, 52, (263,14,0): 52, 38, 51, (263,15,0): 54, 38, 51, (263,16,0): 58, 40, 54, (263,17,0): 58, 40, 54, (263,18,0): 59, 41, 55, (263,19,0): 60, 42, 54, (263,20,0): 63, 43, 55, (263,21,0): 64, 44, 55, (263,22,0): 65, 45, 54, (263,23,0): 65, 46, 52, (263,24,0): 67, 46, 53, (263,25,0): 68, 47, 52, (263,26,0): 71, 49, 52, (263,27,0): 73, 51, 53, (263,28,0): 74, 52, 54, (263,29,0): 74, 52, 54, (263,30,0): 76, 51, 54, (263,31,0): 74, 52, 54, (263,32,0): 70, 50, 52, (263,33,0): 70, 50, 52, (263,34,0): 69, 49, 51, (263,35,0): 69, 49, 51, (263,36,0): 69, 47, 50, (263,37,0): 69, 47, 50, (263,38,0): 68, 46, 49, (263,39,0): 68, 46, 49, (263,40,0): 73, 48, 52, (263,41,0): 73, 48, 52, (263,42,0): 75, 48, 53, (263,43,0): 75, 48, 53, (263,44,0): 76, 49, 54, (263,45,0): 76, 49, 54, (263,46,0): 79, 50, 55, (263,47,0): 79, 50, 54, (263,48,0): 79, 53, 54, (263,49,0): 79, 53, 52, (263,50,0): 79, 53, 52, (263,51,0): 80, 54, 53, (263,52,0): 80, 54, 53, (263,53,0): 81, 55, 54, (263,54,0): 81, 56, 52, (263,55,0): 81, 56, 52, (263,56,0): 85, 60, 56, (263,57,0): 85, 60, 55, (263,58,0): 87, 62, 57, (263,59,0): 88, 63, 58, (263,60,0): 90, 65, 60, (263,61,0): 91, 66, 59, (263,62,0): 92, 67, 62, (263,63,0): 93, 69, 59, (263,64,0): 99, 71, 59, (263,65,0): 99, 71, 57, (263,66,0): 99, 72, 55, (263,67,0): 99, 72, 55, (263,68,0): 99, 72, 55, (263,69,0): 100, 73, 54, (263,70,0): 100, 73, 54, (263,71,0): 100, 73, 54, (263,72,0): 104, 77, 56, (263,73,0): 104, 77, 56, (263,74,0): 104, 77, 56, (263,75,0): 104, 78, 55, (263,76,0): 104, 78, 55, (263,77,0): 104, 78, 55, (263,78,0): 104, 78, 55, (263,79,0): 105, 77, 53, (263,80,0): 111, 81, 57, (263,81,0): 112, 80, 57, (263,82,0): 112, 80, 57, (263,83,0): 112, 80, 57, (263,84,0): 112, 80, 57, (263,85,0): 112, 80, 57, (263,86,0): 112, 80, 57, (263,87,0): 112, 80, 57, (263,88,0): 111, 79, 56, (263,89,0): 111, 79, 56, (263,90,0): 112, 80, 57, (263,91,0): 113, 81, 58, (263,92,0): 114, 82, 59, (263,93,0): 115, 83, 60, (263,94,0): 116, 84, 61, (263,95,0): 117, 85, 60, (263,96,0): 117, 86, 58, (263,97,0): 117, 86, 58, (263,98,0): 117, 86, 58, (263,99,0): 117, 86, 58, (263,100,0): 116, 85, 57, (263,101,0): 114, 83, 55, (263,102,0): 112, 80, 55, (263,103,0): 111, 79, 54, (263,104,0): 109, 77, 54, (263,105,0): 109, 77, 54, (263,106,0): 109, 77, 56, (263,107,0): 108, 76, 55, (263,108,0): 108, 76, 55, (263,109,0): 107, 75, 54, (263,110,0): 107, 75, 54, (263,111,0): 107, 75, 54, (263,112,0): 103, 71, 50, (263,113,0): 103, 71, 50, (263,114,0): 104, 72, 51, (263,115,0): 104, 72, 51, (263,116,0): 103, 71, 50, (263,117,0): 101, 69, 48, (263,118,0): 99, 67, 46, (263,119,0): 98, 66, 45, (263,120,0): 97, 65, 44, (263,121,0): 98, 66, 45, (263,122,0): 99, 67, 46, (263,123,0): 100, 68, 47, (263,124,0): 100, 68, 47, (263,125,0): 100, 68, 47, (263,126,0): 99, 67, 46, (263,127,0): 98, 66, 43, (263,128,0): 101, 66, 44, (263,129,0): 101, 66, 44, (263,130,0): 101, 66, 44, (263,131,0): 101, 66, 44, (263,132,0): 101, 66, 44, (263,133,0): 101, 66, 44, (263,134,0): 101, 66, 44, (263,135,0): 101, 66, 44, (263,136,0): 98, 63, 41, (263,137,0): 98, 63, 41, (263,138,0): 98, 63, 41, (263,139,0): 99, 64, 42, (263,140,0): 99, 64, 42, (263,141,0): 100, 65, 43, (263,142,0): 100, 65, 43, (263,143,0): 101, 67, 42, (263,144,0): 102, 67, 39, (263,145,0): 103, 68, 38, (263,146,0): 104, 69, 39, (263,147,0): 105, 70, 40, (263,148,0): 105, 70, 40, (263,149,0): 104, 69, 39, (263,150,0): 103, 68, 40, (263,151,0): 102, 67, 39, (263,152,0): 98, 62, 36, (263,153,0): 99, 63, 37, (263,154,0): 100, 64, 40, (263,155,0): 100, 64, 40, (263,156,0): 100, 64, 40, (263,157,0): 100, 64, 40, (263,158,0): 99, 63, 39, (263,159,0): 97, 62, 40, (263,160,0): 95, 63, 42, (263,161,0): 94, 62, 41, (263,162,0): 92, 60, 39, (263,163,0): 91, 59, 38, (263,164,0): 93, 58, 36, (263,165,0): 95, 60, 38, (263,166,0): 97, 63, 38, (263,167,0): 98, 64, 37, (263,168,0): 94, 58, 32, (263,169,0): 95, 60, 32, (263,170,0): 96, 61, 33, (263,171,0): 99, 64, 34, (263,172,0): 103, 66, 37, (263,173,0): 107, 70, 41, (263,174,0): 110, 74, 42, (263,175,0): 114, 75, 44, (263,176,0): 119, 80, 47, (263,177,0): 122, 82, 47, (263,178,0): 124, 84, 49, (263,179,0): 128, 85, 51, (263,180,0): 129, 86, 54, (263,181,0): 128, 85, 53, (263,182,0): 128, 83, 52, (263,183,0): 128, 81, 53, (263,184,0): 133, 83, 56, (263,185,0): 132, 82, 57, (263,186,0): 132, 80, 56, (263,187,0): 132, 80, 56, (263,188,0): 134, 80, 56, (263,189,0): 131, 77, 53, (263,190,0): 125, 68, 48, (263,191,0): 117, 65, 41, (263,192,0): 103, 59, 30, (263,193,0): 98, 59, 28, (263,194,0): 95, 55, 29, (263,195,0): 91, 51, 26, (263,196,0): 87, 49, 26, (263,197,0): 86, 48, 27, (263,198,0): 85, 47, 28, (263,199,0): 86, 48, 27, (263,200,0): 92, 54, 31, (263,201,0): 95, 58, 31, (263,202,0): 101, 65, 33, (263,203,0): 109, 74, 36, (263,204,0): 119, 85, 40, (263,205,0): 129, 95, 47, (263,206,0): 137, 104, 51, (263,207,0): 141, 111, 51, (263,208,0): 145, 115, 51, (263,209,0): 149, 122, 53, (263,210,0): 156, 129, 60, (263,211,0): 163, 136, 65, (263,212,0): 168, 142, 68, (263,213,0): 175, 149, 74, (263,214,0): 181, 158, 78, (263,215,0): 186, 164, 81, (263,216,0): 191, 169, 83, (263,217,0): 193, 173, 84, (263,218,0): 197, 178, 86, (263,219,0): 198, 182, 86, (263,220,0): 201, 185, 87, (263,221,0): 206, 191, 90, (263,222,0): 214, 199, 96, (263,223,0): 218, 205, 103, (263,224,0): 215, 201, 104, (263,225,0): 211, 198, 104, (263,226,0): 208, 193, 100, (263,227,0): 208, 193, 100, (263,228,0): 208, 191, 101, (263,229,0): 208, 188, 99, (263,230,0): 203, 181, 95, (263,231,0): 201, 177, 91, (263,232,0): 191, 165, 81, (263,233,0): 193, 165, 82, (263,234,0): 194, 166, 83, (263,235,0): 199, 168, 86, (263,236,0): 205, 172, 91, (263,237,0): 210, 177, 96, (263,238,0): 217, 182, 101, (263,239,0): 217, 184, 103, (263,240,0): 218, 191, 104, (263,241,0): 220, 195, 105, (263,242,0): 221, 195, 108, (263,243,0): 220, 195, 105, (263,244,0): 217, 192, 102, (263,245,0): 214, 189, 97, (263,246,0): 214, 189, 97, (263,247,0): 215, 190, 98, (263,248,0): 219, 194, 102, (263,249,0): 222, 197, 104, (263,250,0): 225, 200, 107, (263,251,0): 227, 203, 107, (263,252,0): 229, 205, 109, (263,253,0): 232, 208, 112, (263,254,0): 238, 214, 118, (263,255,0): 242, 218, 120, (263,256,0): 251, 223, 126, (263,257,0): 249, 221, 124, (263,258,0): 244, 218, 121, (263,259,0): 242, 218, 118, (263,260,0): 241, 219, 118, (263,261,0): 240, 223, 119, (263,262,0): 241, 227, 122, (263,263,0): 241, 230, 125, (263,264,0): 238, 231, 127, (263,265,0): 237, 234, 131, (263,266,0): 239, 237, 136, (263,267,0): 238, 240, 139, (263,268,0): 233, 237, 140, (263,269,0): 226, 232, 136, (263,270,0): 218, 225, 130, (263,271,0): 214, 219, 125, (263,272,0): 213, 213, 123, (263,273,0): 209, 209, 119, (263,274,0): 201, 204, 115, (263,275,0): 196, 202, 112, (263,276,0): 192, 201, 112, (263,277,0): 189, 199, 112, (263,278,0): 185, 195, 109, (263,279,0): 182, 190, 107, (263,280,0): 176, 181, 101, (263,281,0): 175, 178, 101, (263,282,0): 170, 172, 97, (263,283,0): 164, 168, 94, (263,284,0): 158, 164, 92, (263,285,0): 154, 161, 91, (263,286,0): 151, 162, 93, (263,287,0): 150, 163, 91, (263,288,0): 160, 172, 98, (263,289,0): 162, 174, 100, (263,290,0): 164, 177, 105, (263,291,0): 167, 180, 110, (263,292,0): 167, 180, 111, (263,293,0): 163, 173, 110, (263,294,0): 154, 162, 103, (263,295,0): 150, 153, 98, (263,296,0): 128, 126, 77, (263,297,0): 120, 116, 71, (263,298,0): 117, 110, 68, (263,299,0): 117, 112, 74, (263,300,0): 117, 115, 77, (263,301,0): 110, 112, 75, (263,302,0): 107, 111, 76, (263,303,0): 108, 114, 78, (263,304,0): 111, 112, 80, (263,305,0): 118, 122, 89, (263,306,0): 128, 132, 99, (263,307,0): 132, 139, 105, (263,308,0): 133, 143, 109, (263,309,0): 133, 149, 113, (263,310,0): 137, 157, 120, (263,311,0): 140, 164, 128, (263,312,0): 145, 175, 137, (263,313,0): 152, 187, 147, (263,314,0): 164, 202, 163, (263,315,0): 173, 215, 175, (263,316,0): 177, 224, 182, (263,317,0): 182, 230, 188, (263,318,0): 185, 236, 193, (263,319,0): 191, 239, 197, (263,320,0): 191, 236, 195, (263,321,0): 192, 230, 191, (263,322,0): 186, 213, 178, (263,323,0): 166, 185, 153, (263,324,0): 145, 151, 123, (263,325,0): 124, 122, 97, (263,326,0): 116, 105, 83, (263,327,0): 114, 99, 78, (263,328,0): 110, 95, 74, (263,329,0): 108, 93, 72, (263,330,0): 105, 90, 69, (263,331,0): 102, 90, 68, (263,332,0): 100, 88, 64, (263,333,0): 94, 84, 59, (263,334,0): 87, 77, 52, (263,335,0): 82, 70, 48, (263,336,0): 82, 66, 50, (263,337,0): 80, 62, 48, (263,338,0): 77, 59, 45, (263,339,0): 72, 56, 41, (263,340,0): 71, 55, 42, (263,341,0): 70, 56, 43, (263,342,0): 70, 58, 44, (263,343,0): 72, 60, 46, (263,344,0): 72, 62, 50, (263,345,0): 75, 65, 53, (263,346,0): 76, 68, 57, (263,347,0): 71, 65, 53, (263,348,0): 65, 59, 47, (263,349,0): 61, 57, 45, (263,350,0): 66, 62, 51, (263,351,0): 71, 67, 56, (263,352,0): 79, 75, 63, (263,353,0): 80, 76, 64, (263,354,0): 83, 79, 67, (263,355,0): 90, 84, 70, (263,356,0): 94, 88, 74, (263,357,0): 99, 93, 79, (263,358,0): 101, 98, 83, (263,359,0): 102, 100, 85, (263,360,0): 95, 93, 80, (263,361,0): 93, 95, 82, (263,362,0): 96, 99, 90, (263,363,0): 105, 112, 104, (263,364,0): 116, 125, 120, (263,365,0): 121, 133, 129, (263,366,0): 117, 132, 129, (263,367,0): 113, 128, 125, (263,368,0): 115, 127, 123, (263,369,0): 117, 130, 123, (263,370,0): 118, 131, 124, (263,371,0): 119, 131, 127, (263,372,0): 115, 130, 125, (263,373,0): 111, 126, 123, (263,374,0): 106, 122, 121, (263,375,0): 104, 120, 120, (263,376,0): 107, 125, 125, (263,377,0): 110, 128, 130, (263,378,0): 113, 131, 135, (263,379,0): 114, 133, 137, (263,380,0): 113, 132, 138, (263,381,0): 114, 133, 139, (263,382,0): 118, 137, 143, (263,383,0): 118, 141, 147, (263,384,0): 119, 148, 154, (263,385,0): 119, 149, 157, (263,386,0): 118, 148, 158, (263,387,0): 118, 146, 160, (263,388,0): 118, 143, 165, (263,389,0): 120, 144, 170, (263,390,0): 125, 148, 180, (263,391,0): 129, 153, 187, (263,392,0): 131, 157, 190, (263,393,0): 136, 162, 195, (263,394,0): 139, 164, 195, (263,395,0): 135, 156, 185, (263,396,0): 130, 145, 174, (263,397,0): 122, 132, 159, (263,398,0): 107, 111, 136, (263,399,0): 93, 95, 116, (263,400,0): 92, 94, 109, (263,401,0): 86, 88, 100, (263,402,0): 86, 88, 101, (263,403,0): 92, 96, 107, (263,404,0): 99, 103, 114, (263,405,0): 101, 105, 116, (263,406,0): 104, 111, 121, (263,407,0): 109, 118, 127, (263,408,0): 114, 122, 133, (263,409,0): 113, 123, 133, (263,410,0): 111, 123, 137, (263,411,0): 111, 123, 139, (263,412,0): 111, 124, 141, (263,413,0): 113, 126, 145, (263,414,0): 115, 127, 151, (263,415,0): 116, 128, 152, (263,416,0): 118, 130, 152, (263,417,0): 116, 131, 152, (263,418,0): 118, 130, 152, (263,419,0): 115, 130, 153, (263,420,0): 115, 127, 151, (263,421,0): 110, 125, 148, (263,422,0): 110, 122, 146, (263,423,0): 106, 120, 146, (263,424,0): 117, 129, 155, (263,425,0): 117, 131, 158, (263,426,0): 123, 134, 162, (263,427,0): 123, 137, 164, (263,428,0): 126, 137, 165, (263,429,0): 122, 136, 165, (263,430,0): 121, 132, 162, (263,431,0): 117, 131, 160, (263,432,0): 123, 137, 166, (263,433,0): 120, 135, 164, (263,434,0): 121, 135, 164, (263,435,0): 125, 136, 164, (263,436,0): 128, 137, 166, (263,437,0): 126, 136, 161, (263,438,0): 123, 130, 156, (263,439,0): 119, 125, 147, (263,440,0): 116, 118, 139, (263,441,0): 116, 117, 137, (263,442,0): 116, 117, 135, (263,443,0): 118, 117, 133, (263,444,0): 119, 116, 133, (263,445,0): 120, 116, 131, (263,446,0): 121, 117, 132, (263,447,0): 121, 117, 131, (263,448,0): 132, 126, 136, (263,449,0): 130, 127, 136, (263,450,0): 128, 125, 134, (263,451,0): 125, 122, 131, (263,452,0): 120, 117, 126, (263,453,0): 112, 111, 119, (263,454,0): 106, 104, 115, (263,455,0): 103, 101, 112, (263,456,0): 107, 105, 116, (263,457,0): 106, 104, 115, (263,458,0): 106, 104, 117, (263,459,0): 104, 104, 116, (263,460,0): 102, 102, 114, (263,461,0): 100, 100, 112, (263,462,0): 98, 98, 110, (263,463,0): 95, 97, 110, (263,464,0): 98, 99, 117, (263,465,0): 100, 101, 121, (263,466,0): 104, 103, 121, (263,467,0): 104, 103, 119, (263,468,0): 104, 102, 115, (263,469,0): 101, 99, 110, (263,470,0): 99, 96, 105, (263,471,0): 98, 95, 102, (263,472,0): 97, 92, 98, (263,473,0): 97, 91, 95, (263,474,0): 98, 88, 96, (263,475,0): 97, 87, 95, (263,476,0): 98, 87, 95, (263,477,0): 97, 86, 94, (263,478,0): 99, 86, 95, (263,479,0): 99, 86, 95, (263,480,0): 99, 86, 95, (263,481,0): 95, 84, 90, (263,482,0): 90, 79, 85, (263,483,0): 85, 76, 81, (263,484,0): 82, 73, 78, (263,485,0): 80, 74, 78, (263,486,0): 81, 75, 79, (263,487,0): 81, 76, 80, (263,488,0): 80, 78, 81, (263,489,0): 84, 84, 86, (263,490,0): 92, 92, 94, (263,491,0): 96, 97, 99, (263,492,0): 98, 99, 101, (263,493,0): 97, 101, 102, (263,494,0): 99, 103, 104, (263,495,0): 100, 106, 106, (263,496,0): 93, 99, 97, (263,497,0): 100, 109, 104, (263,498,0): 111, 120, 117, (263,499,0): 117, 127, 126, (263,500,0): 121, 131, 132, (263,501,0): 126, 137, 139, (263,502,0): 134, 147, 153, (263,503,0): 141, 155, 164, (263,504,0): 150, 166, 179, (263,505,0): 153, 169, 184, (263,506,0): 155, 172, 190, (263,507,0): 155, 171, 194, (263,508,0): 153, 171, 195, (263,509,0): 151, 171, 196, (263,510,0): 153, 173, 200, (263,511,0): 158, 175, 203, (263,512,0): 157, 173, 199, (263,513,0): 156, 172, 197, (263,514,0): 153, 173, 197, (263,515,0): 151, 176, 198, (263,516,0): 150, 176, 199, (263,517,0): 144, 172, 194, (263,518,0): 138, 162, 186, (263,519,0): 134, 156, 179, (263,520,0): 134, 152, 176, (263,521,0): 129, 144, 165, (263,522,0): 121, 132, 154, (263,523,0): 112, 120, 139, (263,524,0): 107, 114, 132, (263,525,0): 105, 113, 126, (263,526,0): 106, 116, 128, (263,527,0): 106, 118, 130, (263,528,0): 107, 119, 135, (263,529,0): 108, 121, 137, (263,530,0): 111, 125, 138, (263,531,0): 113, 127, 140, (263,532,0): 113, 127, 138, (263,533,0): 111, 125, 134, (263,534,0): 109, 122, 130, (263,535,0): 107, 120, 128, (263,536,0): 102, 112, 121, (263,537,0): 103, 113, 122, (263,538,0): 105, 113, 124, (263,539,0): 106, 114, 127, (263,540,0): 104, 111, 127, (263,541,0): 101, 108, 124, (263,542,0): 97, 104, 122, (263,543,0): 95, 100, 119, (263,544,0): 96, 99, 114, (263,545,0): 96, 98, 111, (263,546,0): 95, 94, 108, (263,547,0): 90, 89, 103, (263,548,0): 87, 83, 97, (263,549,0): 86, 82, 96, (263,550,0): 91, 85, 97, (263,551,0): 94, 88, 100, (263,552,0): 93, 85, 96, (263,553,0): 92, 86, 96, (263,554,0): 89, 83, 93, (263,555,0): 83, 80, 87, (263,556,0): 79, 78, 84, (263,557,0): 77, 78, 83, (263,558,0): 81, 82, 87, (263,559,0): 83, 86, 91, (263,560,0): 91, 96, 102, (263,561,0): 93, 97, 106, (263,562,0): 95, 99, 108, (263,563,0): 98, 102, 111, (263,564,0): 99, 103, 112, (263,565,0): 97, 104, 112, (263,566,0): 96, 103, 113, (263,567,0): 94, 103, 112, (263,568,0): 90, 98, 109, (263,569,0): 89, 97, 108, (263,570,0): 87, 97, 109, (263,571,0): 87, 97, 109, (263,572,0): 90, 100, 112, (263,573,0): 94, 104, 116, (263,574,0): 98, 108, 120, (263,575,0): 99, 111, 125, (263,576,0): 100, 113, 129, (263,577,0): 102, 115, 132, (263,578,0): 104, 117, 134, (263,579,0): 107, 120, 137, (263,580,0): 109, 122, 139, (263,581,0): 110, 123, 140, (263,582,0): 110, 123, 140, (263,583,0): 110, 123, 140, (263,584,0): 103, 116, 135, (263,585,0): 102, 115, 134, (263,586,0): 100, 113, 132, (263,587,0): 99, 112, 131, (263,588,0): 99, 112, 131, (263,589,0): 99, 112, 131, (263,590,0): 101, 114, 133, (263,591,0): 103, 114, 132, (263,592,0): 103, 112, 129, (263,593,0): 99, 108, 125, (263,594,0): 96, 103, 119, (263,595,0): 94, 100, 114, (263,596,0): 93, 96, 111, (263,597,0): 88, 92, 104, (263,598,0): 83, 85, 97, (263,599,0): 78, 80, 92, (264,0,0): 63, 48, 51, (264,1,0): 64, 49, 52, (264,2,0): 64, 49, 54, (264,3,0): 65, 50, 55, (264,4,0): 64, 49, 54, (264,5,0): 63, 48, 53, (264,6,0): 61, 46, 53, (264,7,0): 60, 45, 52, (264,8,0): 57, 41, 51, (264,9,0): 57, 41, 51, (264,10,0): 56, 40, 50, (264,11,0): 56, 40, 50, (264,12,0): 55, 39, 50, (264,13,0): 55, 39, 50, (264,14,0): 54, 38, 49, (264,15,0): 54, 38, 49, (264,16,0): 54, 36, 48, (264,17,0): 55, 37, 49, (264,18,0): 56, 38, 50, (264,19,0): 59, 41, 53, (264,20,0): 63, 43, 55, (264,21,0): 65, 45, 56, (264,22,0): 66, 46, 55, (264,23,0): 67, 48, 54, (264,24,0): 68, 47, 54, (264,25,0): 69, 48, 53, (264,26,0): 72, 50, 53, (264,27,0): 74, 52, 54, (264,28,0): 74, 52, 54, (264,29,0): 74, 53, 52, (264,30,0): 76, 52, 52, (264,31,0): 73, 51, 53, (264,32,0): 72, 52, 54, (264,33,0): 70, 51, 53, (264,34,0): 70, 51, 53, (264,35,0): 69, 50, 52, (264,36,0): 70, 50, 52, (264,37,0): 69, 49, 51, (264,38,0): 70, 48, 51, (264,39,0): 70, 48, 51, (264,40,0): 68, 46, 49, (264,41,0): 69, 47, 50, (264,42,0): 72, 47, 51, (264,43,0): 73, 48, 52, (264,44,0): 75, 48, 53, (264,45,0): 76, 49, 54, (264,46,0): 76, 49, 54, (264,47,0): 77, 51, 54, (264,48,0): 79, 53, 54, (264,49,0): 79, 53, 54, (264,50,0): 80, 54, 53, (264,51,0): 81, 55, 54, (264,52,0): 82, 56, 55, (264,53,0): 83, 57, 56, (264,54,0): 84, 59, 55, (264,55,0): 84, 59, 55, (264,56,0): 85, 60, 55, (264,57,0): 86, 61, 56, (264,58,0): 87, 62, 57, (264,59,0): 88, 63, 56, (264,60,0): 90, 65, 58, (264,61,0): 92, 68, 58, (264,62,0): 93, 68, 61, (264,63,0): 93, 69, 57, (264,64,0): 98, 70, 56, (264,65,0): 99, 72, 55, (264,66,0): 100, 73, 56, (264,67,0): 101, 74, 57, (264,68,0): 101, 74, 55, (264,69,0): 100, 73, 54, (264,70,0): 99, 72, 53, (264,71,0): 98, 71, 50, (264,72,0): 101, 74, 53, (264,73,0): 102, 75, 54, (264,74,0): 103, 77, 54, (264,75,0): 104, 78, 55, (264,76,0): 105, 79, 56, (264,77,0): 106, 80, 55, (264,78,0): 107, 81, 56, (264,79,0): 108, 80, 56, (264,80,0): 110, 80, 56, (264,81,0): 111, 79, 54, (264,82,0): 112, 80, 55, (264,83,0): 112, 80, 55, (264,84,0): 113, 81, 56, (264,85,0): 113, 81, 56, (264,86,0): 114, 82, 57, (264,87,0): 114, 82, 57, (264,88,0): 114, 82, 57, (264,89,0): 114, 82, 57, (264,90,0): 114, 82, 57, (264,91,0): 114, 82, 57, (264,92,0): 114, 82, 57, (264,93,0): 114, 82, 57, (264,94,0): 114, 82, 57, (264,95,0): 114, 82, 57, (264,96,0): 117, 86, 58, (264,97,0): 117, 86, 57, (264,98,0): 117, 86, 57, (264,99,0): 117, 86, 57, (264,100,0): 117, 86, 58, (264,101,0): 117, 86, 58, (264,102,0): 117, 86, 58, (264,103,0): 117, 86, 58, (264,104,0): 113, 81, 56, (264,105,0): 113, 81, 56, (264,106,0): 112, 80, 57, (264,107,0): 112, 80, 57, (264,108,0): 111, 79, 56, (264,109,0): 111, 79, 56, (264,110,0): 110, 78, 57, (264,111,0): 110, 78, 57, (264,112,0): 106, 74, 51, (264,113,0): 106, 74, 51, (264,114,0): 105, 73, 50, (264,115,0): 104, 72, 49, (264,116,0): 103, 71, 48, (264,117,0): 103, 71, 48, (264,118,0): 102, 70, 47, (264,119,0): 102, 70, 47, (264,120,0): 98, 66, 43, (264,121,0): 98, 66, 43, (264,122,0): 99, 67, 44, (264,123,0): 99, 67, 44, (264,124,0): 100, 68, 45, (264,125,0): 100, 68, 45, (264,126,0): 101, 69, 46, (264,127,0): 101, 69, 46, (264,128,0): 103, 68, 46, (264,129,0): 104, 68, 44, (264,130,0): 103, 67, 43, (264,131,0): 103, 67, 43, (264,132,0): 102, 66, 42, (264,133,0): 102, 66, 42, (264,134,0): 101, 65, 41, (264,135,0): 101, 65, 41, (264,136,0): 101, 65, 41, (264,137,0): 103, 67, 43, (264,138,0): 105, 69, 45, (264,139,0): 107, 71, 47, (264,140,0): 107, 71, 47, (264,141,0): 106, 70, 46, (264,142,0): 105, 69, 45, (264,143,0): 104, 68, 42, (264,144,0): 103, 68, 40, (264,145,0): 105, 70, 40, (264,146,0): 108, 73, 43, (264,147,0): 111, 76, 46, (264,148,0): 111, 76, 46, (264,149,0): 110, 75, 45, (264,150,0): 108, 73, 45, (264,151,0): 106, 71, 43, (264,152,0): 104, 68, 42, (264,153,0): 103, 67, 41, (264,154,0): 101, 65, 41, (264,155,0): 99, 63, 39, (264,156,0): 98, 62, 38, (264,157,0): 98, 62, 38, (264,158,0): 98, 62, 38, (264,159,0): 98, 63, 41, (264,160,0): 94, 62, 41, (264,161,0): 91, 60, 40, (264,162,0): 89, 58, 38, (264,163,0): 87, 56, 35, (264,164,0): 87, 55, 32, (264,165,0): 89, 57, 34, (264,166,0): 93, 59, 34, (264,167,0): 94, 60, 33, (264,168,0): 98, 63, 35, (264,169,0): 99, 64, 34, (264,170,0): 101, 65, 33, (264,171,0): 105, 69, 37, (264,172,0): 112, 73, 40, (264,173,0): 118, 79, 46, (264,174,0): 123, 85, 49, (264,175,0): 126, 88, 52, (264,176,0): 133, 93, 57, (264,177,0): 138, 95, 60, (264,178,0): 140, 97, 62, (264,179,0): 139, 95, 60, (264,180,0): 136, 91, 58, (264,181,0): 134, 89, 56, (264,182,0): 137, 91, 58, (264,183,0): 139, 92, 62, (264,184,0): 145, 96, 66, (264,185,0): 142, 92, 65, (264,186,0): 138, 87, 60, (264,187,0): 132, 81, 54, (264,188,0): 128, 74, 48, (264,189,0): 122, 68, 42, (264,190,0): 118, 64, 40, (264,191,0): 113, 63, 38, (264,192,0): 99, 58, 30, (264,193,0): 90, 53, 26, (264,194,0): 84, 47, 20, (264,195,0): 82, 45, 19, (264,196,0): 85, 47, 24, (264,197,0): 88, 50, 27, (264,198,0): 90, 52, 29, (264,199,0): 90, 53, 27, (264,200,0): 98, 61, 32, (264,201,0): 104, 68, 32, (264,202,0): 112, 77, 35, (264,203,0): 123, 89, 41, (264,204,0): 138, 103, 49, (264,205,0): 155, 121, 60, (264,206,0): 172, 139, 72, (264,207,0): 181, 151, 78, (264,208,0): 186, 159, 78, (264,209,0): 185, 159, 74, (264,210,0): 184, 158, 73, (264,211,0): 184, 158, 73, (264,212,0): 187, 163, 75, (264,213,0): 192, 168, 80, (264,214,0): 196, 172, 82, (264,215,0): 197, 176, 83, (264,216,0): 200, 180, 85, (264,217,0): 201, 182, 87, (264,218,0): 206, 188, 90, (264,219,0): 211, 193, 95, (264,220,0): 215, 197, 97, (264,221,0): 218, 200, 98, (264,222,0): 217, 202, 99, (264,223,0): 217, 204, 102, (264,224,0): 216, 202, 105, (264,225,0): 213, 201, 103, (264,226,0): 211, 197, 100, (264,227,0): 209, 195, 98, (264,228,0): 208, 192, 97, (264,229,0): 210, 191, 97, (264,230,0): 212, 191, 98, (264,231,0): 214, 191, 98, (264,232,0): 207, 182, 92, (264,233,0): 205, 178, 89, (264,234,0): 205, 173, 88, (264,235,0): 206, 174, 89, (264,236,0): 213, 178, 96, (264,237,0): 218, 183, 101, (264,238,0): 223, 186, 105, (264,239,0): 222, 187, 105, (264,240,0): 220, 192, 108, (264,241,0): 221, 195, 108, (264,242,0): 222, 196, 111, (264,243,0): 221, 195, 108, (264,244,0): 217, 191, 104, (264,245,0): 214, 189, 99, (264,246,0): 214, 189, 99, (264,247,0): 216, 191, 101, (264,248,0): 215, 190, 100, (264,249,0): 220, 195, 103, (264,250,0): 226, 201, 109, (264,251,0): 230, 205, 112, (264,252,0): 231, 206, 113, (264,253,0): 233, 208, 115, (264,254,0): 236, 211, 118, (264,255,0): 240, 216, 120, (264,256,0): 248, 220, 121, (264,257,0): 251, 223, 123, (264,258,0): 252, 227, 126, (264,259,0): 251, 228, 124, (264,260,0): 246, 225, 120, (264,261,0): 241, 224, 118, (264,262,0): 240, 226, 119, (264,263,0): 240, 229, 123, (264,264,0): 245, 238, 132, (264,265,0): 241, 238, 133, (264,266,0): 239, 237, 136, (264,267,0): 236, 238, 137, (264,268,0): 233, 237, 140, (264,269,0): 228, 234, 136, (264,270,0): 220, 227, 131, (264,271,0): 215, 221, 125, (264,272,0): 206, 210, 116, (264,273,0): 204, 208, 114, (264,274,0): 200, 205, 113, (264,275,0): 196, 205, 114, (264,276,0): 195, 205, 116, (264,277,0): 190, 203, 115, (264,278,0): 188, 198, 112, (264,279,0): 185, 193, 110, (264,280,0): 176, 181, 101, (264,281,0): 174, 178, 101, (264,282,0): 171, 173, 98, (264,283,0): 166, 170, 96, (264,284,0): 162, 168, 96, (264,285,0): 158, 168, 95, (264,286,0): 157, 169, 97, (264,287,0): 157, 170, 98, (264,288,0): 169, 181, 107, (264,289,0): 173, 185, 111, (264,290,0): 172, 185, 113, (264,291,0): 168, 181, 111, (264,292,0): 166, 179, 110, (264,293,0): 166, 176, 113, (264,294,0): 158, 166, 106, (264,295,0): 150, 153, 98, (264,296,0): 131, 129, 80, (264,297,0): 123, 119, 72, (264,298,0): 118, 111, 69, (264,299,0): 116, 111, 73, (264,300,0): 121, 119, 81, (264,301,0): 120, 122, 85, (264,302,0): 113, 117, 82, (264,303,0): 107, 111, 76, (264,304,0): 118, 117, 86, (264,305,0): 120, 119, 89, (264,306,0): 124, 123, 93, (264,307,0): 127, 130, 99, (264,308,0): 131, 138, 107, (264,309,0): 134, 145, 113, (264,310,0): 136, 151, 118, (264,311,0): 135, 156, 123, (264,312,0): 134, 161, 126, (264,313,0): 144, 178, 141, (264,314,0): 158, 196, 159, (264,315,0): 163, 208, 169, (264,316,0): 171, 219, 181, (264,317,0): 179, 231, 192, (264,318,0): 183, 238, 198, (264,319,0): 184, 236, 197, (264,320,0): 190, 236, 200, (264,321,0): 186, 226, 192, (264,322,0): 176, 205, 174, (264,323,0): 158, 177, 149, (264,324,0): 137, 146, 119, (264,325,0): 121, 121, 97, (264,326,0): 112, 104, 83, (264,327,0): 110, 97, 78, (264,328,0): 108, 96, 74, (264,329,0): 112, 100, 78, (264,330,0): 116, 106, 81, (264,331,0): 113, 106, 80, (264,332,0): 107, 100, 74, (264,333,0): 99, 92, 66, (264,334,0): 92, 85, 59, (264,335,0): 91, 80, 58, (264,336,0): 93, 80, 63, (264,337,0): 88, 72, 57, (264,338,0): 78, 62, 47, (264,339,0): 73, 57, 42, (264,340,0): 73, 57, 44, (264,341,0): 72, 58, 45, (264,342,0): 70, 58, 44, (264,343,0): 69, 57, 43, (264,344,0): 71, 61, 49, (264,345,0): 72, 62, 50, (264,346,0): 73, 65, 54, (264,347,0): 73, 67, 55, (264,348,0): 72, 66, 54, (264,349,0): 70, 64, 52, (264,350,0): 67, 60, 50, (264,351,0): 65, 58, 48, (264,352,0): 79, 72, 62, (264,353,0): 81, 75, 63, (264,354,0): 86, 80, 68, (264,355,0): 90, 84, 72, (264,356,0): 94, 88, 74, (264,357,0): 97, 91, 77, (264,358,0): 96, 92, 80, (264,359,0): 95, 93, 80, (264,360,0): 94, 92, 80, (264,361,0): 93, 95, 82, (264,362,0): 95, 101, 91, (264,363,0): 100, 110, 101, (264,364,0): 107, 118, 112, (264,365,0): 112, 124, 120, (264,366,0): 114, 129, 126, (264,367,0): 115, 131, 128, (264,368,0): 117, 132, 127, (264,369,0): 115, 130, 125, (264,370,0): 114, 129, 124, (264,371,0): 112, 127, 124, (264,372,0): 111, 126, 123, (264,373,0): 110, 124, 124, (264,374,0): 110, 126, 125, (264,375,0): 110, 126, 126, (264,376,0): 113, 128, 131, (264,377,0): 115, 133, 137, (264,378,0): 118, 136, 140, (264,379,0): 118, 135, 142, (264,380,0): 116, 133, 141, (264,381,0): 115, 132, 140, (264,382,0): 116, 133, 141, (264,383,0): 117, 137, 146, (264,384,0): 115, 144, 150, (264,385,0): 120, 150, 158, (264,386,0): 126, 153, 164, (264,387,0): 126, 149, 163, (264,388,0): 121, 142, 163, (264,389,0): 119, 136, 162, (264,390,0): 121, 138, 166, (264,391,0): 123, 142, 172, (264,392,0): 131, 150, 180, (264,393,0): 129, 148, 178, (264,394,0): 127, 144, 172, (264,395,0): 121, 135, 161, (264,396,0): 116, 123, 149, (264,397,0): 106, 111, 133, (264,398,0): 100, 98, 120, (264,399,0): 94, 91, 110, (264,400,0): 87, 85, 99, (264,401,0): 88, 88, 98, (264,402,0): 92, 92, 104, (264,403,0): 91, 94, 103, (264,404,0): 94, 97, 106, (264,405,0): 97, 101, 110, (264,406,0): 102, 109, 117, (264,407,0): 106, 115, 124, (264,408,0): 103, 111, 122, (264,409,0): 103, 113, 123, (264,410,0): 102, 114, 128, (264,411,0): 104, 116, 132, (264,412,0): 105, 118, 135, (264,413,0): 108, 121, 140, (264,414,0): 108, 123, 146, (264,415,0): 112, 124, 148, (264,416,0): 114, 126, 148, (264,417,0): 114, 127, 146, (264,418,0): 115, 126, 146, (264,419,0): 114, 126, 148, (264,420,0): 114, 125, 147, (264,421,0): 111, 123, 145, (264,422,0): 111, 122, 144, (264,423,0): 109, 121, 145, (264,424,0): 120, 130, 155, (264,425,0): 121, 133, 159, (264,426,0): 127, 137, 164, (264,427,0): 130, 142, 168, (264,428,0): 133, 143, 170, (264,429,0): 132, 143, 171, (264,430,0): 132, 141, 170, (264,431,0): 130, 141, 171, (264,432,0): 127, 141, 170, (264,433,0): 126, 139, 171, (264,434,0): 128, 139, 169, (264,435,0): 129, 140, 168, (264,436,0): 130, 139, 168, (264,437,0): 128, 135, 161, (264,438,0): 123, 129, 155, (264,439,0): 118, 123, 145, (264,440,0): 117, 119, 140, (264,441,0): 112, 113, 133, (264,442,0): 110, 107, 126, (264,443,0): 109, 105, 122, (264,444,0): 113, 109, 124, (264,445,0): 121, 115, 129, (264,446,0): 125, 119, 133, (264,447,0): 127, 121, 133, (264,448,0): 133, 126, 134, (264,449,0): 131, 126, 133, (264,450,0): 128, 123, 130, (264,451,0): 124, 119, 126, (264,452,0): 120, 115, 122, (264,453,0): 113, 110, 117, (264,454,0): 109, 106, 115, (264,455,0): 106, 105, 113, (264,456,0): 110, 108, 119, (264,457,0): 111, 111, 121, (264,458,0): 113, 113, 125, (264,459,0): 110, 112, 124, (264,460,0): 106, 108, 121, (264,461,0): 103, 105, 118, (264,462,0): 103, 105, 118, (264,463,0): 103, 106, 121, (264,464,0): 101, 104, 123, (264,465,0): 103, 105, 126, (264,466,0): 107, 108, 128, (264,467,0): 108, 109, 127, (264,468,0): 108, 107, 121, (264,469,0): 103, 103, 115, (264,470,0): 99, 98, 106, (264,471,0): 96, 93, 100, (264,472,0): 95, 90, 97, (264,473,0): 95, 90, 96, (264,474,0): 95, 88, 96, (264,475,0): 95, 88, 96, (264,476,0): 97, 87, 96, (264,477,0): 97, 87, 96, (264,478,0): 99, 87, 97, (264,479,0): 99, 87, 97, (264,480,0): 99, 88, 96, (264,481,0): 96, 85, 93, (264,482,0): 93, 82, 90, (264,483,0): 88, 78, 86, (264,484,0): 86, 76, 84, (264,485,0): 83, 76, 83, (264,486,0): 84, 77, 84, (264,487,0): 84, 79, 85, (264,488,0): 86, 84, 89, (264,489,0): 89, 88, 93, (264,490,0): 95, 94, 99, (264,491,0): 97, 98, 102, (264,492,0): 99, 100, 104, (264,493,0): 100, 104, 107, (264,494,0): 104, 108, 111, (264,495,0): 107, 113, 113, (264,496,0): 106, 115, 112, (264,497,0): 110, 121, 115, (264,498,0): 116, 127, 123, (264,499,0): 120, 132, 130, (264,500,0): 125, 136, 138, (264,501,0): 130, 144, 147, (264,502,0): 138, 151, 159, (264,503,0): 143, 157, 166, (264,504,0): 152, 168, 181, (264,505,0): 153, 169, 185, (264,506,0): 155, 172, 190, (264,507,0): 158, 174, 197, (264,508,0): 159, 177, 201, (264,509,0): 159, 176, 202, (264,510,0): 157, 177, 202, (264,511,0): 158, 175, 201, (264,512,0): 164, 180, 205, (264,513,0): 160, 176, 201, (264,514,0): 154, 174, 198, (264,515,0): 150, 175, 197, (264,516,0): 148, 174, 197, (264,517,0): 145, 173, 195, (264,518,0): 141, 165, 189, (264,519,0): 138, 160, 183, (264,520,0): 140, 158, 182, (264,521,0): 135, 150, 171, (264,522,0): 127, 138, 160, (264,523,0): 118, 126, 145, (264,524,0): 112, 119, 137, (264,525,0): 109, 117, 130, (264,526,0): 108, 118, 130, (264,527,0): 107, 119, 131, (264,528,0): 108, 120, 134, (264,529,0): 107, 120, 136, (264,530,0): 107, 121, 134, (264,531,0): 107, 121, 134, (264,532,0): 106, 120, 131, (264,533,0): 106, 120, 129, (264,534,0): 107, 120, 128, (264,535,0): 107, 120, 128, (264,536,0): 102, 112, 121, (264,537,0): 102, 112, 121, (264,538,0): 104, 112, 123, (264,539,0): 103, 111, 124, (264,540,0): 102, 109, 125, (264,541,0): 101, 108, 124, (264,542,0): 99, 106, 124, (264,543,0): 98, 104, 120, (264,544,0): 96, 100, 112, (264,545,0): 94, 96, 108, (264,546,0): 91, 91, 103, (264,547,0): 87, 87, 99, (264,548,0): 86, 82, 96, (264,549,0): 86, 82, 96, (264,550,0): 89, 83, 95, (264,551,0): 90, 84, 96, (264,552,0): 91, 85, 97, (264,553,0): 91, 85, 95, (264,554,0): 88, 85, 94, (264,555,0): 87, 86, 94, (264,556,0): 85, 85, 93, (264,557,0): 83, 86, 93, (264,558,0): 82, 85, 92, (264,559,0): 81, 86, 92, (264,560,0): 91, 95, 104, (264,561,0): 92, 96, 105, (264,562,0): 91, 98, 106, (264,563,0): 92, 99, 107, (264,564,0): 93, 100, 108, (264,565,0): 95, 102, 110, (264,566,0): 96, 103, 113, (264,567,0): 95, 104, 113, (264,568,0): 90, 98, 109, (264,569,0): 88, 98, 108, (264,570,0): 86, 96, 108, (264,571,0): 86, 96, 108, (264,572,0): 85, 97, 109, (264,573,0): 87, 99, 111, (264,574,0): 90, 102, 114, (264,575,0): 92, 104, 118, (264,576,0): 100, 113, 130, (264,577,0): 101, 114, 133, (264,578,0): 103, 116, 135, (264,579,0): 105, 118, 137, (264,580,0): 105, 118, 137, (264,581,0): 105, 118, 137, (264,582,0): 105, 118, 137, (264,583,0): 104, 117, 136, (264,584,0): 108, 121, 138, (264,585,0): 103, 116, 133, (264,586,0): 99, 112, 129, (264,587,0): 98, 111, 128, (264,588,0): 100, 113, 130, (264,589,0): 101, 114, 131, (264,590,0): 100, 113, 130, (264,591,0): 99, 110, 128, (264,592,0): 105, 114, 131, (264,593,0): 104, 111, 129, (264,594,0): 101, 107, 123, (264,595,0): 99, 105, 119, (264,596,0): 98, 101, 116, (264,597,0): 93, 95, 108, (264,598,0): 88, 88, 100, (264,599,0): 82, 82, 94, (265,0,0): 63, 48, 51, (265,1,0): 64, 49, 52, (265,2,0): 64, 49, 54, (265,3,0): 65, 50, 55, (265,4,0): 64, 49, 54, (265,5,0): 63, 48, 53, (265,6,0): 61, 46, 53, (265,7,0): 60, 45, 52, (265,8,0): 57, 41, 51, (265,9,0): 57, 41, 51, (265,10,0): 56, 40, 50, (265,11,0): 56, 40, 50, (265,12,0): 55, 39, 50, (265,13,0): 55, 39, 50, (265,14,0): 54, 38, 49, (265,15,0): 54, 38, 49, (265,16,0): 54, 36, 48, (265,17,0): 55, 37, 49, (265,18,0): 57, 39, 51, (265,19,0): 59, 42, 52, (265,20,0): 63, 43, 54, (265,21,0): 65, 45, 54, (265,22,0): 67, 48, 54, (265,23,0): 67, 48, 54, (265,24,0): 69, 48, 53, (265,25,0): 70, 50, 52, (265,26,0): 72, 50, 52, (265,27,0): 74, 52, 54, (265,28,0): 74, 53, 52, (265,29,0): 74, 53, 52, (265,30,0): 76, 52, 52, (265,31,0): 73, 52, 51, (265,32,0): 72, 52, 53, (265,33,0): 70, 51, 53, (265,34,0): 70, 51, 53, (265,35,0): 70, 51, 53, (265,36,0): 70, 50, 52, (265,37,0): 70, 50, 52, (265,38,0): 70, 48, 51, (265,39,0): 70, 48, 51, (265,40,0): 69, 47, 50, (265,41,0): 69, 47, 50, (265,42,0): 72, 47, 51, (265,43,0): 73, 48, 52, (265,44,0): 75, 48, 53, (265,45,0): 76, 49, 54, (265,46,0): 77, 50, 55, (265,47,0): 77, 51, 54, (265,48,0): 79, 53, 56, (265,49,0): 79, 53, 54, (265,50,0): 80, 54, 53, (265,51,0): 81, 55, 54, (265,52,0): 82, 56, 55, (265,53,0): 83, 57, 56, (265,54,0): 84, 59, 55, (265,55,0): 85, 60, 55, (265,56,0): 85, 60, 55, (265,57,0): 86, 61, 54, (265,58,0): 87, 62, 55, (265,59,0): 89, 65, 55, (265,60,0): 90, 66, 56, (265,61,0): 92, 68, 56, (265,62,0): 93, 69, 59, (265,63,0): 94, 70, 58, (265,64,0): 98, 72, 57, (265,65,0): 100, 73, 56, (265,66,0): 101, 74, 57, (265,67,0): 101, 74, 55, (265,68,0): 101, 74, 55, (265,69,0): 101, 74, 55, (265,70,0): 100, 73, 52, (265,71,0): 99, 72, 51, (265,72,0): 102, 75, 54, (265,73,0): 102, 76, 53, (265,74,0): 103, 77, 54, (265,75,0): 104, 78, 55, (265,76,0): 105, 79, 54, (265,77,0): 106, 80, 55, (265,78,0): 107, 81, 56, (265,79,0): 108, 81, 54, (265,80,0): 110, 80, 54, (265,81,0): 112, 80, 55, (265,82,0): 112, 80, 55, (265,83,0): 113, 81, 56, (265,84,0): 113, 81, 56, (265,85,0): 114, 82, 57, (265,86,0): 114, 82, 57, (265,87,0): 114, 82, 57, (265,88,0): 114, 82, 57, (265,89,0): 114, 82, 57, (265,90,0): 114, 82, 57, (265,91,0): 114, 82, 57, (265,92,0): 114, 82, 57, (265,93,0): 114, 82, 57, (265,94,0): 114, 82, 57, (265,95,0): 114, 83, 55, (265,96,0): 117, 86, 57, (265,97,0): 117, 86, 57, (265,98,0): 117, 86, 57, (265,99,0): 117, 86, 57, (265,100,0): 117, 86, 58, (265,101,0): 117, 86, 58, (265,102,0): 117, 86, 58, (265,103,0): 117, 86, 58, (265,104,0): 114, 82, 57, (265,105,0): 114, 82, 57, (265,106,0): 113, 81, 58, (265,107,0): 113, 81, 58, (265,108,0): 112, 80, 57, (265,109,0): 112, 80, 57, (265,110,0): 111, 79, 58, (265,111,0): 111, 79, 58, (265,112,0): 108, 76, 53, (265,113,0): 108, 76, 53, (265,114,0): 107, 75, 52, (265,115,0): 106, 74, 51, (265,116,0): 104, 72, 49, (265,117,0): 103, 71, 48, (265,118,0): 102, 70, 47, (265,119,0): 102, 70, 47, (265,120,0): 100, 68, 45, (265,121,0): 100, 68, 45, (265,122,0): 100, 68, 45, (265,123,0): 101, 69, 46, (265,124,0): 101, 69, 46, (265,125,0): 102, 70, 47, (265,126,0): 102, 70, 47, (265,127,0): 104, 69, 47, (265,128,0): 105, 69, 45, (265,129,0): 104, 68, 44, (265,130,0): 104, 68, 44, (265,131,0): 104, 68, 44, (265,132,0): 103, 67, 43, (265,133,0): 102, 66, 42, (265,134,0): 102, 66, 42, (265,135,0): 102, 66, 42, (265,136,0): 102, 66, 42, (265,137,0): 104, 68, 44, (265,138,0): 106, 70, 46, (265,139,0): 108, 72, 48, (265,140,0): 109, 73, 49, (265,141,0): 109, 73, 49, (265,142,0): 108, 72, 48, (265,143,0): 107, 71, 45, (265,144,0): 108, 73, 45, (265,145,0): 109, 74, 44, (265,146,0): 112, 77, 47, (265,147,0): 114, 79, 49, (265,148,0): 114, 79, 49, (265,149,0): 112, 77, 47, (265,150,0): 109, 74, 46, (265,151,0): 107, 72, 44, (265,152,0): 103, 67, 41, (265,153,0): 101, 65, 39, (265,154,0): 100, 64, 40, (265,155,0): 98, 62, 38, (265,156,0): 97, 61, 37, (265,157,0): 96, 60, 36, (265,158,0): 97, 61, 37, (265,159,0): 96, 61, 39, (265,160,0): 91, 59, 38, (265,161,0): 89, 58, 38, (265,162,0): 87, 56, 36, (265,163,0): 86, 55, 34, (265,164,0): 87, 55, 32, (265,165,0): 89, 57, 32, (265,166,0): 94, 60, 33, (265,167,0): 95, 61, 33, (265,168,0): 100, 65, 35, (265,169,0): 101, 66, 34, (265,170,0): 105, 69, 35, (265,171,0): 109, 73, 37, (265,172,0): 116, 78, 41, (265,173,0): 123, 85, 46, (265,174,0): 128, 90, 51, (265,175,0): 132, 93, 54, (265,176,0): 140, 98, 58, (265,177,0): 143, 99, 60, (265,178,0): 143, 99, 60, (265,179,0): 141, 97, 58, (265,180,0): 139, 93, 57, (265,181,0): 138, 92, 56, (265,182,0): 140, 94, 60, (265,183,0): 142, 96, 63, (265,184,0): 146, 97, 65, (265,185,0): 143, 94, 64, (265,186,0): 137, 88, 58, (265,187,0): 130, 79, 52, (265,188,0): 124, 73, 46, (265,189,0): 119, 68, 41, (265,190,0): 115, 63, 39, (265,191,0): 111, 64, 38, (265,192,0): 99, 59, 33, (265,193,0): 92, 57, 29, (265,194,0): 88, 51, 25, (265,195,0): 87, 50, 24, (265,196,0): 90, 53, 27, (265,197,0): 95, 58, 32, (265,198,0): 97, 60, 33, (265,199,0): 97, 61, 29, (265,200,0): 106, 71, 33, (265,201,0): 113, 79, 34, (265,202,0): 125, 92, 39, (265,203,0): 138, 106, 47, (265,204,0): 155, 122, 55, (265,205,0): 171, 139, 66, (265,206,0): 188, 156, 79, (265,207,0): 198, 167, 84, (265,208,0): 204, 178, 85, (265,209,0): 202, 178, 80, (265,210,0): 201, 177, 79, (265,211,0): 201, 177, 79, (265,212,0): 202, 178, 80, (265,213,0): 204, 182, 83, (265,214,0): 206, 184, 85, (265,215,0): 208, 186, 87, (265,216,0): 208, 188, 89, (265,217,0): 210, 190, 91, (265,218,0): 214, 194, 95, (265,219,0): 216, 198, 98, (265,220,0): 219, 201, 99, (265,221,0): 221, 203, 101, (265,222,0): 220, 205, 102, (265,223,0): 220, 205, 104, (265,224,0): 218, 204, 105, (265,225,0): 217, 203, 104, (265,226,0): 215, 202, 100, (265,227,0): 214, 199, 98, (265,228,0): 215, 197, 97, (265,229,0): 217, 197, 98, (265,230,0): 220, 197, 101, (265,231,0): 221, 197, 101, (265,232,0): 225, 199, 104, (265,233,0): 220, 191, 99, (265,234,0): 214, 180, 90, (265,235,0): 210, 176, 87, (265,236,0): 211, 175, 87, (265,237,0): 214, 178, 92, (265,238,0): 218, 180, 95, (265,239,0): 218, 182, 98, (265,240,0): 215, 188, 101, (265,241,0): 216, 190, 103, (265,242,0): 218, 192, 107, (265,243,0): 217, 191, 104, (265,244,0): 214, 188, 101, (265,245,0): 213, 188, 98, (265,246,0): 214, 189, 99, (265,247,0): 216, 191, 101, (265,248,0): 219, 194, 104, (265,249,0): 223, 198, 106, (265,250,0): 228, 203, 111, (265,251,0): 231, 206, 113, (265,252,0): 232, 207, 114, (265,253,0): 233, 208, 115, (265,254,0): 236, 211, 118, (265,255,0): 239, 215, 119, (265,256,0): 245, 220, 119, (265,257,0): 248, 223, 120, (265,258,0): 251, 227, 121, (265,259,0): 250, 227, 121, (265,260,0): 245, 227, 119, (265,261,0): 242, 225, 117, (265,262,0): 241, 227, 118, (265,263,0): 241, 230, 122, (265,264,0): 244, 237, 130, (265,265,0): 240, 237, 130, (265,266,0): 238, 236, 133, (265,267,0): 236, 237, 135, (265,268,0): 232, 237, 137, (265,269,0): 226, 232, 134, (265,270,0): 219, 225, 129, (265,271,0): 213, 219, 123, (265,272,0): 204, 208, 114, (265,273,0): 201, 205, 111, (265,274,0): 198, 203, 111, (265,275,0): 195, 204, 113, (265,276,0): 194, 204, 115, (265,277,0): 190, 203, 115, (265,278,0): 188, 198, 112, (265,279,0): 184, 193, 110, (265,280,0): 177, 184, 104, (265,281,0): 176, 180, 103, (265,282,0): 174, 176, 101, (265,283,0): 170, 174, 100, (265,284,0): 166, 172, 100, (265,285,0): 163, 173, 100, (265,286,0): 163, 175, 103, (265,287,0): 163, 176, 104, (265,288,0): 172, 184, 110, (265,289,0): 175, 189, 114, (265,290,0): 175, 188, 116, (265,291,0): 171, 184, 114, (265,292,0): 170, 183, 114, (265,293,0): 168, 180, 116, (265,294,0): 162, 170, 110, (265,295,0): 154, 157, 102, (265,296,0): 137, 135, 84, (265,297,0): 129, 125, 78, (265,298,0): 122, 115, 73, (265,299,0): 120, 115, 75, (265,300,0): 123, 121, 82, (265,301,0): 124, 126, 87, (265,302,0): 117, 123, 85, (265,303,0): 112, 116, 81, (265,304,0): 119, 118, 87, (265,305,0): 122, 118, 89, (265,306,0): 124, 123, 93, (265,307,0): 128, 129, 98, (265,308,0): 131, 136, 106, (265,309,0): 134, 143, 112, (265,310,0): 136, 149, 119, (265,311,0): 137, 154, 122, (265,312,0): 137, 161, 129, (265,313,0): 146, 176, 142, (265,314,0): 154, 189, 156, (265,315,0): 157, 199, 163, (265,316,0): 164, 210, 174, (265,317,0): 174, 224, 187, (265,318,0): 179, 234, 195, (265,319,0): 182, 234, 198, (265,320,0): 188, 232, 199, (265,321,0): 185, 220, 190, (265,322,0): 173, 199, 172, (265,323,0): 155, 173, 147, (265,324,0): 137, 145, 122, (265,325,0): 123, 122, 101, (265,326,0): 113, 107, 85, (265,327,0): 110, 99, 79, (265,328,0): 110, 99, 77, (265,329,0): 112, 104, 81, (265,330,0): 114, 108, 82, (265,331,0): 113, 109, 82, (265,332,0): 107, 103, 76, (265,333,0): 100, 96, 69, (265,334,0): 95, 91, 64, (265,335,0): 94, 88, 64, (265,336,0): 98, 87, 69, (265,337,0): 92, 79, 63, (265,338,0): 83, 70, 54, (265,339,0): 77, 64, 48, (265,340,0): 74, 60, 47, (265,341,0): 73, 61, 47, (265,342,0): 72, 60, 46, (265,343,0): 70, 58, 44, (265,344,0): 70, 60, 48, (265,345,0): 71, 61, 49, (265,346,0): 73, 63, 53, (265,347,0): 73, 65, 54, (265,348,0): 73, 65, 54, (265,349,0): 71, 63, 52, (265,350,0): 69, 60, 51, (265,351,0): 68, 59, 50, (265,352,0): 78, 69, 60, (265,353,0): 81, 72, 63, (265,354,0): 86, 77, 68, (265,355,0): 90, 82, 71, (265,356,0): 95, 87, 76, (265,357,0): 97, 91, 77, (265,358,0): 98, 92, 80, (265,359,0): 97, 93, 81, (265,360,0): 97, 95, 83, (265,361,0): 97, 99, 88, (265,362,0): 100, 105, 98, (265,363,0): 102, 112, 104, (265,364,0): 106, 117, 111, (265,365,0): 109, 124, 119, (265,366,0): 112, 128, 125, (265,367,0): 116, 132, 129, (265,368,0): 115, 131, 128, (265,369,0): 115, 130, 127, (265,370,0): 114, 129, 126, (265,371,0): 113, 128, 125, (265,372,0): 112, 126, 126, (265,373,0): 113, 127, 128, (265,374,0): 113, 129, 129, (265,375,0): 113, 128, 131, (265,376,0): 116, 131, 136, (265,377,0): 120, 135, 142, (265,378,0): 123, 140, 147, (265,379,0): 123, 140, 148, (265,380,0): 119, 136, 144, (265,381,0): 115, 132, 142, (265,382,0): 113, 130, 140, (265,383,0): 112, 130, 140, (265,384,0): 113, 140, 147, (265,385,0): 118, 145, 154, (265,386,0): 123, 147, 159, (265,387,0): 124, 143, 158, (265,388,0): 118, 135, 153, (265,389,0): 115, 130, 153, (265,390,0): 116, 130, 156, (265,391,0): 120, 134, 160, (265,392,0): 124, 138, 164, (265,393,0): 123, 137, 163, (265,394,0): 123, 133, 158, (265,395,0): 119, 127, 150, (265,396,0): 114, 116, 137, (265,397,0): 106, 104, 125, (265,398,0): 101, 93, 114, (265,399,0): 95, 88, 104, (265,400,0): 89, 86, 97, (265,401,0): 91, 90, 98, (265,402,0): 94, 92, 103, (265,403,0): 95, 95, 103, (265,404,0): 96, 96, 104, (265,405,0): 96, 99, 106, (265,406,0): 100, 104, 113, (265,407,0): 102, 109, 117, (265,408,0): 98, 107, 116, (265,409,0): 98, 108, 118, (265,410,0): 100, 110, 122, (265,411,0): 101, 113, 129, (265,412,0): 103, 116, 133, (265,413,0): 104, 119, 140, (265,414,0): 106, 121, 144, (265,415,0): 107, 122, 145, (265,416,0): 114, 125, 145, (265,417,0): 114, 125, 145, (265,418,0): 114, 125, 145, (265,419,0): 113, 124, 144, (265,420,0): 113, 124, 144, (265,421,0): 113, 124, 146, (265,422,0): 113, 124, 146, (265,423,0): 114, 125, 147, (265,424,0): 124, 134, 159, (265,425,0): 126, 136, 161, (265,426,0): 129, 139, 166, (265,427,0): 132, 142, 169, (265,428,0): 133, 143, 170, (265,429,0): 132, 142, 169, (265,430,0): 130, 140, 167, (265,431,0): 128, 137, 166, (265,432,0): 131, 142, 172, (265,433,0): 128, 142, 171, (265,434,0): 129, 140, 170, (265,435,0): 130, 139, 168, (265,436,0): 129, 139, 166, (265,437,0): 126, 133, 159, (265,438,0): 121, 125, 150, (265,439,0): 117, 119, 142, (265,440,0): 116, 117, 137, (265,441,0): 113, 112, 130, (265,442,0): 109, 105, 122, (265,443,0): 110, 103, 119, (265,444,0): 115, 107, 122, (265,445,0): 120, 112, 125, (265,446,0): 126, 115, 129, (265,447,0): 128, 118, 129, (265,448,0): 133, 123, 131, (265,449,0): 131, 121, 129, (265,450,0): 129, 119, 128, (265,451,0): 123, 116, 124, (265,452,0): 119, 112, 120, (265,453,0): 115, 110, 117, (265,454,0): 109, 106, 115, (265,455,0): 107, 106, 114, (265,456,0): 112, 110, 121, (265,457,0): 114, 114, 124, (265,458,0): 114, 116, 128, (265,459,0): 112, 116, 127, (265,460,0): 108, 112, 124, (265,461,0): 104, 110, 122, (265,462,0): 104, 110, 122, (265,463,0): 105, 111, 127, (265,464,0): 107, 109, 130, (265,465,0): 108, 110, 133, (265,466,0): 111, 112, 133, (265,467,0): 110, 111, 129, (265,468,0): 109, 108, 124, (265,469,0): 104, 103, 117, (265,470,0): 99, 97, 108, (265,471,0): 96, 95, 103, (265,472,0): 94, 91, 100, (265,473,0): 96, 91, 98, (265,474,0): 96, 89, 97, (265,475,0): 96, 89, 97, (265,476,0): 98, 88, 97, (265,477,0): 99, 89, 100, (265,478,0): 101, 89, 101, (265,479,0): 102, 90, 102, (265,480,0): 100, 88, 98, (265,481,0): 98, 87, 95, (265,482,0): 93, 83, 91, (265,483,0): 90, 80, 88, (265,484,0): 86, 79, 86, (265,485,0): 85, 78, 85, (265,486,0): 85, 80, 86, (265,487,0): 83, 81, 86, (265,488,0): 88, 87, 92, (265,489,0): 92, 91, 96, (265,490,0): 97, 98, 102, (265,491,0): 99, 103, 106, (265,492,0): 102, 106, 109, (265,493,0): 105, 109, 112, (265,494,0): 109, 114, 117, (265,495,0): 111, 119, 121, (265,496,0): 112, 123, 119, (265,497,0): 113, 125, 121, (265,498,0): 117, 129, 127, (265,499,0): 118, 132, 132, (265,500,0): 123, 137, 140, (265,501,0): 129, 144, 149, (265,502,0): 138, 152, 161, (265,503,0): 143, 160, 170, (265,504,0): 150, 166, 181, (265,505,0): 152, 168, 184, (265,506,0): 154, 171, 189, (265,507,0): 157, 174, 194, (265,508,0): 158, 176, 198, (265,509,0): 159, 177, 199, (265,510,0): 157, 177, 201, (265,511,0): 158, 176, 200, (265,512,0): 161, 177, 202, (265,513,0): 158, 174, 199, (265,514,0): 153, 173, 197, (265,515,0): 149, 174, 196, (265,516,0): 148, 174, 197, (265,517,0): 145, 173, 195, (265,518,0): 142, 166, 190, (265,519,0): 140, 162, 185, (265,520,0): 139, 157, 181, (265,521,0): 135, 150, 171, (265,522,0): 128, 139, 161, (265,523,0): 121, 129, 148, (265,524,0): 115, 122, 140, (265,525,0): 112, 120, 133, (265,526,0): 111, 121, 133, (265,527,0): 110, 122, 134, (265,528,0): 111, 123, 137, (265,529,0): 109, 123, 136, (265,530,0): 108, 122, 135, (265,531,0): 107, 121, 132, (265,532,0): 105, 119, 128, (265,533,0): 104, 119, 126, (265,534,0): 104, 117, 125, (265,535,0): 103, 116, 124, (265,536,0): 102, 112, 121, (265,537,0): 102, 112, 121, (265,538,0): 103, 111, 122, (265,539,0): 103, 111, 122, (265,540,0): 102, 110, 123, (265,541,0): 100, 107, 123, (265,542,0): 98, 105, 123, (265,543,0): 98, 104, 120, (265,544,0): 96, 100, 112, (265,545,0): 95, 97, 109, (265,546,0): 93, 93, 105, (265,547,0): 91, 89, 102, (265,548,0): 90, 86, 100, (265,549,0): 89, 85, 99, (265,550,0): 91, 85, 97, (265,551,0): 91, 85, 97, (265,552,0): 93, 87, 99, (265,553,0): 91, 88, 99, (265,554,0): 90, 89, 97, (265,555,0): 89, 89, 97, (265,556,0): 88, 91, 98, (265,557,0): 87, 92, 98, (265,558,0): 87, 92, 98, (265,559,0): 87, 92, 98, (265,560,0): 90, 94, 103, (265,561,0): 90, 94, 103, (265,562,0): 89, 96, 104, (265,563,0): 90, 97, 105, (265,564,0): 91, 98, 106, (265,565,0): 92, 101, 108, (265,566,0): 92, 101, 110, (265,567,0): 93, 102, 111, (265,568,0): 89, 99, 109, (265,569,0): 88, 98, 108, (265,570,0): 87, 97, 109, (265,571,0): 84, 96, 108, (265,572,0): 85, 97, 109, (265,573,0): 88, 100, 112, (265,574,0): 91, 103, 115, (265,575,0): 93, 105, 119, (265,576,0): 101, 114, 131, (265,577,0): 102, 115, 134, (265,578,0): 104, 117, 136, (265,579,0): 105, 118, 137, (265,580,0): 105, 118, 137, (265,581,0): 105, 118, 137, (265,582,0): 104, 117, 136, (265,583,0): 103, 116, 135, (265,584,0): 106, 119, 136, (265,585,0): 104, 117, 134, (265,586,0): 102, 115, 132, (265,587,0): 100, 113, 130, (265,588,0): 101, 114, 131, (265,589,0): 101, 114, 131, (265,590,0): 100, 113, 130, (265,591,0): 100, 112, 128, (265,592,0): 104, 113, 130, (265,593,0): 102, 109, 127, (265,594,0): 100, 106, 122, (265,595,0): 100, 103, 118, (265,596,0): 98, 100, 115, (265,597,0): 93, 95, 108, (265,598,0): 87, 87, 99, (265,599,0): 82, 82, 94, (266,0,0): 64, 48, 51, (266,1,0): 65, 49, 52, (266,2,0): 65, 49, 52, (266,3,0): 66, 50, 53, (266,4,0): 65, 49, 52, (266,5,0): 64, 48, 51, (266,6,0): 62, 45, 51, (266,7,0): 61, 44, 50, (266,8,0): 58, 41, 49, (266,9,0): 58, 41, 49, (266,10,0): 57, 40, 50, (266,11,0): 57, 40, 50, (266,12,0): 56, 39, 49, (266,13,0): 56, 39, 49, (266,14,0): 55, 38, 48, (266,15,0): 55, 38, 48, (266,16,0): 55, 37, 49, (266,17,0): 56, 38, 50, (266,18,0): 57, 40, 50, (266,19,0): 59, 42, 52, (266,20,0): 63, 43, 54, (266,21,0): 65, 45, 54, (266,22,0): 67, 48, 54, (266,23,0): 68, 49, 55, (266,24,0): 70, 49, 54, (266,25,0): 71, 51, 53, (266,26,0): 73, 51, 53, (266,27,0): 74, 52, 54, (266,28,0): 75, 54, 53, (266,29,0): 74, 53, 52, (266,30,0): 76, 52, 50, (266,31,0): 73, 52, 51, (266,32,0): 71, 53, 53, (266,33,0): 69, 53, 54, (266,34,0): 71, 52, 54, (266,35,0): 70, 51, 53, (266,36,0): 69, 50, 52, (266,37,0): 69, 50, 52, (266,38,0): 70, 50, 52, (266,39,0): 69, 49, 51, (266,40,0): 69, 47, 50, (266,41,0): 69, 47, 50, (266,42,0): 70, 48, 51, (266,43,0): 71, 49, 52, (266,44,0): 74, 49, 53, (266,45,0): 75, 50, 54, (266,46,0): 76, 51, 55, (266,47,0): 76, 51, 54, (266,48,0): 78, 53, 56, (266,49,0): 79, 55, 55, (266,50,0): 80, 56, 56, (266,51,0): 81, 57, 57, (266,52,0): 82, 58, 56, (266,53,0): 83, 59, 57, (266,54,0): 84, 60, 56, (266,55,0): 84, 61, 55, (266,56,0): 85, 62, 56, (266,57,0): 86, 63, 55, (266,58,0): 87, 65, 54, (266,59,0): 89, 67, 54, (266,60,0): 90, 68, 55, (266,61,0): 92, 70, 56, (266,62,0): 93, 71, 58, (266,63,0): 95, 72, 58, (266,64,0): 99, 73, 56, (266,65,0): 100, 73, 54, (266,66,0): 101, 74, 55, (266,67,0): 102, 75, 56, (266,68,0): 102, 75, 56, (266,69,0): 101, 74, 53, (266,70,0): 100, 73, 52, (266,71,0): 100, 73, 52, (266,72,0): 103, 77, 54, (266,73,0): 103, 77, 54, (266,74,0): 104, 78, 55, (266,75,0): 105, 79, 54, (266,76,0): 106, 80, 55, (266,77,0): 107, 81, 56, (266,78,0): 108, 82, 55, (266,79,0): 109, 82, 55, (266,80,0): 111, 81, 55, (266,81,0): 112, 81, 53, (266,82,0): 112, 81, 53, (266,83,0): 113, 82, 54, (266,84,0): 113, 82, 54, (266,85,0): 114, 83, 55, (266,86,0): 114, 83, 55, (266,87,0): 115, 84, 56, (266,88,0): 115, 84, 56, (266,89,0): 115, 84, 56, (266,90,0): 115, 84, 56, (266,91,0): 115, 84, 56, (266,92,0): 115, 84, 56, (266,93,0): 115, 84, 56, (266,94,0): 115, 84, 56, (266,95,0): 115, 84, 56, (266,96,0): 116, 87, 57, (266,97,0): 116, 87, 55, (266,98,0): 116, 87, 55, (266,99,0): 116, 87, 55, (266,100,0): 116, 87, 57, (266,101,0): 116, 87, 57, (266,102,0): 116, 86, 58, (266,103,0): 116, 86, 58, (266,104,0): 115, 85, 57, (266,105,0): 115, 85, 57, (266,106,0): 114, 84, 58, (266,107,0): 114, 84, 58, (266,108,0): 113, 83, 59, (266,109,0): 113, 83, 59, (266,110,0): 112, 82, 58, (266,111,0): 113, 81, 58, (266,112,0): 112, 80, 57, (266,113,0): 113, 78, 56, (266,114,0): 112, 77, 55, (266,115,0): 110, 75, 53, (266,116,0): 108, 73, 51, (266,117,0): 106, 71, 49, (266,118,0): 105, 70, 48, (266,119,0): 104, 69, 47, (266,120,0): 104, 69, 47, (266,121,0): 104, 69, 47, (266,122,0): 104, 69, 47, (266,123,0): 105, 70, 48, (266,124,0): 105, 70, 48, (266,125,0): 106, 71, 49, (266,126,0): 106, 71, 49, (266,127,0): 107, 72, 50, (266,128,0): 106, 70, 46, (266,129,0): 107, 70, 44, (266,130,0): 107, 70, 44, (266,131,0): 106, 69, 43, (266,132,0): 106, 69, 43, (266,133,0): 105, 68, 42, (266,134,0): 105, 68, 42, (266,135,0): 104, 67, 41, (266,136,0): 104, 67, 41, (266,137,0): 106, 69, 43, (266,138,0): 107, 70, 44, (266,139,0): 109, 72, 46, (266,140,0): 111, 74, 48, (266,141,0): 111, 74, 48, (266,142,0): 111, 74, 48, (266,143,0): 111, 74, 48, (266,144,0): 113, 78, 50, (266,145,0): 114, 79, 49, (266,146,0): 115, 80, 50, (266,147,0): 116, 81, 51, (266,148,0): 115, 80, 50, (266,149,0): 113, 78, 48, (266,150,0): 110, 75, 47, (266,151,0): 108, 73, 45, (266,152,0): 100, 64, 38, (266,153,0): 99, 63, 37, (266,154,0): 97, 61, 37, (266,155,0): 96, 60, 36, (266,156,0): 95, 59, 35, (266,157,0): 94, 58, 34, (266,158,0): 95, 59, 35, (266,159,0): 94, 59, 37, (266,160,0): 87, 56, 35, (266,161,0): 84, 56, 35, (266,162,0): 83, 55, 33, (266,163,0): 83, 55, 33, (266,164,0): 87, 57, 33, (266,165,0): 91, 59, 34, (266,166,0): 96, 62, 34, (266,167,0): 98, 65, 34, (266,168,0): 104, 70, 35, (266,169,0): 106, 72, 35, (266,170,0): 111, 76, 38, (266,171,0): 118, 80, 41, (266,172,0): 125, 86, 45, (266,173,0): 132, 93, 50, (266,174,0): 138, 99, 56, (266,175,0): 143, 102, 58, (266,176,0): 150, 107, 64, (266,177,0): 151, 106, 64, (266,178,0): 149, 104, 63, (266,179,0): 146, 101, 60, (266,180,0): 145, 97, 59, (266,181,0): 143, 98, 59, (266,182,0): 145, 99, 63, (266,183,0): 147, 101, 65, (266,184,0): 146, 100, 66, (266,185,0): 141, 95, 62, (266,186,0): 133, 87, 54, (266,187,0): 127, 78, 48, (266,188,0): 120, 71, 41, (266,189,0): 116, 67, 37, (266,190,0): 114, 64, 37, (266,191,0): 110, 64, 38, (266,192,0): 98, 61, 34, (266,193,0): 94, 60, 33, (266,194,0): 92, 57, 29, (266,195,0): 93, 58, 30, (266,196,0): 98, 63, 33, (266,197,0): 103, 68, 36, (266,198,0): 108, 72, 38, (266,199,0): 110, 75, 35, (266,200,0): 123, 86, 41, (266,201,0): 132, 97, 43, (266,202,0): 146, 112, 49, (266,203,0): 161, 128, 59, (266,204,0): 177, 144, 67, (266,205,0): 192, 160, 77, (266,206,0): 206, 174, 87, (266,207,0): 214, 185, 91, (266,208,0): 217, 192, 91, (266,209,0): 217, 193, 87, (266,210,0): 217, 193, 87, (266,211,0): 215, 192, 86, (266,212,0): 214, 191, 87, (266,213,0): 214, 191, 87, (266,214,0): 213, 192, 87, (266,215,0): 214, 192, 90, (266,216,0): 221, 199, 97, (266,217,0): 220, 201, 99, (266,218,0): 222, 203, 101, (266,219,0): 224, 205, 103, (266,220,0): 224, 206, 106, (266,221,0): 225, 207, 107, (266,222,0): 225, 207, 107, (266,223,0): 225, 207, 107, (266,224,0): 221, 206, 103, (266,225,0): 221, 206, 103, (266,226,0): 220, 206, 101, (266,227,0): 222, 205, 101, (266,228,0): 224, 205, 102, (266,229,0): 227, 206, 101, (266,230,0): 229, 206, 104, (266,231,0): 231, 206, 105, (266,232,0): 239, 211, 111, (266,233,0): 230, 200, 102, (266,234,0): 219, 186, 89, (266,235,0): 211, 176, 82, (266,236,0): 210, 173, 82, (266,237,0): 212, 175, 86, (266,238,0): 218, 178, 90, (266,239,0): 216, 180, 92, (266,240,0): 209, 182, 93, (266,241,0): 210, 186, 96, (266,242,0): 212, 188, 100, (266,243,0): 212, 188, 98, (266,244,0): 211, 187, 97, (266,245,0): 211, 187, 97, (266,246,0): 214, 190, 100, (266,247,0): 217, 194, 101, (266,248,0): 223, 200, 107, (266,249,0): 227, 204, 110, (266,250,0): 230, 207, 113, (266,251,0): 232, 209, 113, (266,252,0): 233, 210, 114, (266,253,0): 233, 210, 114, (266,254,0): 235, 212, 116, (266,255,0): 238, 214, 116, (266,256,0): 243, 220, 116, (266,257,0): 246, 224, 115, (266,258,0): 249, 227, 118, (266,259,0): 248, 227, 118, (266,260,0): 246, 228, 118, (266,261,0): 242, 229, 117, (266,262,0): 242, 230, 118, (266,263,0): 242, 232, 119, (266,264,0): 243, 237, 127, (266,265,0): 239, 235, 127, (266,266,0): 237, 234, 129, (266,267,0): 233, 234, 130, (266,268,0): 231, 233, 132, (266,269,0): 224, 229, 129, (266,270,0): 216, 220, 123, (266,271,0): 210, 214, 119, (266,272,0): 200, 204, 110, (266,273,0): 197, 202, 110, (266,274,0): 195, 201, 111, (266,275,0): 192, 203, 111, (266,276,0): 191, 204, 114, (266,277,0): 189, 203, 115, (266,278,0): 186, 198, 112, (266,279,0): 185, 194, 111, (266,280,0): 178, 185, 105, (266,281,0): 177, 184, 106, (266,282,0): 176, 180, 104, (266,283,0): 172, 178, 104, (266,284,0): 170, 178, 105, (266,285,0): 168, 180, 108, (266,286,0): 169, 182, 110, (266,287,0): 168, 184, 111, (266,288,0): 174, 187, 115, (266,289,0): 178, 191, 119, (266,290,0): 179, 192, 122, (266,291,0): 173, 189, 118, (266,292,0): 173, 188, 119, (266,293,0): 174, 186, 122, (266,294,0): 168, 176, 116, (266,295,0): 159, 164, 108, (266,296,0): 145, 145, 93, (266,297,0): 136, 134, 85, (266,298,0): 128, 124, 79, (266,299,0): 125, 122, 79, (266,300,0): 126, 127, 85, (266,301,0): 127, 132, 91, (266,302,0): 123, 132, 89, (266,303,0): 120, 127, 86, (266,304,0): 119, 120, 86, (266,305,0): 121, 120, 89, (266,306,0): 124, 123, 92, (266,307,0): 127, 128, 96, (266,308,0): 130, 133, 102, (266,309,0): 135, 140, 108, (266,310,0): 137, 146, 115, (266,311,0): 137, 150, 120, (266,312,0): 145, 164, 134, (266,313,0): 151, 176, 144, (266,314,0): 156, 185, 154, (266,315,0): 157, 192, 159, (266,316,0): 163, 203, 169, (266,317,0): 174, 218, 183, (266,318,0): 183, 228, 195, (266,319,0): 186, 230, 197, (266,320,0): 188, 224, 198, (266,321,0): 181, 211, 187, (266,322,0): 168, 190, 169, (266,323,0): 153, 166, 146, (266,324,0): 139, 144, 122, (266,325,0): 126, 125, 104, (266,326,0): 116, 110, 88, (266,327,0): 109, 103, 81, (266,328,0): 111, 105, 81, (266,329,0): 112, 108, 83, (266,330,0): 113, 111, 86, (266,331,0): 111, 111, 85, (266,332,0): 106, 106, 80, (266,333,0): 99, 102, 75, (266,334,0): 99, 99, 73, (266,335,0): 99, 97, 74, (266,336,0): 105, 97, 78, (266,337,0): 101, 89, 73, (266,338,0): 92, 80, 64, (266,339,0): 85, 73, 57, (266,340,0): 80, 68, 54, (266,341,0): 75, 66, 51, (266,342,0): 73, 64, 49, (266,343,0): 71, 62, 47, (266,344,0): 72, 60, 48, (266,345,0): 72, 60, 48, (266,346,0): 74, 61, 52, (266,347,0): 72, 62, 52, (266,348,0): 73, 63, 53, (266,349,0): 72, 62, 52, (266,350,0): 72, 62, 53, (266,351,0): 71, 61, 52, (266,352,0): 78, 67, 61, (266,353,0): 81, 71, 62, (266,354,0): 85, 75, 66, (266,355,0): 89, 81, 70, (266,356,0): 94, 86, 75, (266,357,0): 96, 90, 78, (266,358,0): 99, 93, 81, (266,359,0): 98, 94, 82, (266,360,0): 99, 97, 85, (266,361,0): 101, 103, 92, (266,362,0): 105, 110, 103, (266,363,0): 106, 116, 108, (266,364,0): 106, 119, 112, (266,365,0): 107, 122, 117, (266,366,0): 111, 130, 126, (266,367,0): 117, 136, 134, (266,368,0): 117, 133, 132, (266,369,0): 116, 132, 131, (266,370,0): 115, 131, 130, (266,371,0): 114, 130, 129, (266,372,0): 114, 130, 130, (266,373,0): 114, 130, 130, (266,374,0): 115, 130, 133, (266,375,0): 116, 131, 136, (266,376,0): 120, 135, 140, (266,377,0): 123, 138, 145, (266,378,0): 127, 141, 150, (266,379,0): 127, 141, 152, (266,380,0): 123, 137, 148, (266,381,0): 117, 131, 144, (266,382,0): 112, 126, 139, (266,383,0): 107, 125, 137, (266,384,0): 111, 133, 144, (266,385,0): 113, 137, 149, (266,386,0): 118, 137, 151, (266,387,0): 117, 133, 148, (266,388,0): 113, 124, 142, (266,389,0): 111, 119, 140, (266,390,0): 111, 119, 140, (266,391,0): 112, 120, 141, (266,392,0): 113, 121, 142, (266,393,0): 114, 121, 140, (266,394,0): 113, 120, 139, (266,395,0): 113, 116, 135, (266,396,0): 111, 108, 127, (266,397,0): 106, 99, 117, (266,398,0): 101, 90, 107, (266,399,0): 96, 85, 101, (266,400,0): 93, 87, 97, (266,401,0): 94, 91, 98, (266,402,0): 97, 94, 103, (266,403,0): 97, 96, 102, (266,404,0): 95, 96, 101, (266,405,0): 93, 96, 101, (266,406,0): 94, 99, 105, (266,407,0): 94, 101, 109, (266,408,0): 93, 102, 111, (266,409,0): 93, 103, 113, (266,410,0): 96, 106, 118, (266,411,0): 97, 109, 125, (266,412,0): 100, 113, 132, (266,413,0): 101, 116, 137, (266,414,0): 104, 119, 142, (266,415,0): 105, 120, 143, (266,416,0): 113, 124, 144, (266,417,0): 114, 122, 141, (266,418,0): 113, 121, 140, (266,419,0): 113, 121, 140, (266,420,0): 114, 122, 141, (266,421,0): 116, 124, 145, (266,422,0): 119, 127, 148, (266,423,0): 121, 129, 150, (266,424,0): 130, 138, 161, (266,425,0): 131, 139, 162, (266,426,0): 133, 140, 166, (266,427,0): 134, 141, 167, (266,428,0): 134, 141, 167, (266,429,0): 133, 140, 166, (266,430,0): 130, 137, 163, (266,431,0): 127, 137, 164, (266,432,0): 134, 145, 175, (266,433,0): 132, 143, 173, (266,434,0): 132, 141, 172, (266,435,0): 131, 140, 169, (266,436,0): 131, 138, 166, (266,437,0): 126, 132, 158, (266,438,0): 121, 123, 146, (266,439,0): 116, 117, 138, (266,440,0): 118, 115, 134, (266,441,0): 114, 110, 127, (266,442,0): 112, 104, 119, (266,443,0): 113, 102, 116, (266,444,0): 117, 105, 117, (266,445,0): 122, 110, 120, (266,446,0): 126, 113, 123, (266,447,0): 128, 115, 124, (266,448,0): 130, 119, 127, (266,449,0): 128, 117, 123, (266,450,0): 126, 115, 123, (266,451,0): 122, 112, 120, (266,452,0): 117, 110, 118, (266,453,0): 113, 108, 115, (266,454,0): 109, 106, 115, (266,455,0): 107, 106, 114, (266,456,0): 116, 114, 125, (266,457,0): 117, 117, 129, (266,458,0): 118, 120, 133, (266,459,0): 116, 120, 132, (266,460,0): 112, 118, 132, (266,461,0): 108, 116, 129, (266,462,0): 109, 117, 130, (266,463,0): 110, 117, 135, (266,464,0): 113, 118, 140, (266,465,0): 116, 118, 141, (266,466,0): 116, 118, 139, (266,467,0): 114, 117, 136, (266,468,0): 110, 111, 129, (266,469,0): 106, 105, 119, (266,470,0): 100, 98, 111, (266,471,0): 96, 94, 105, (266,472,0): 97, 94, 103, (266,473,0): 98, 92, 102, (266,474,0): 98, 90, 101, (266,475,0): 98, 90, 101, (266,476,0): 101, 91, 102, (266,477,0): 103, 92, 106, (266,478,0): 105, 94, 108, (266,479,0): 106, 96, 107, (266,480,0): 102, 92, 101, (266,481,0): 100, 90, 99, (266,482,0): 96, 86, 95, (266,483,0): 92, 82, 91, (266,484,0): 88, 81, 89, (266,485,0): 88, 81, 89, (266,486,0): 87, 82, 89, (266,487,0): 86, 83, 90, (266,488,0): 91, 90, 96, (266,489,0): 96, 95, 101, (266,490,0): 100, 101, 106, (266,491,0): 103, 106, 111, (266,492,0): 106, 109, 114, (266,493,0): 110, 115, 119, (266,494,0): 116, 121, 125, (266,495,0): 119, 127, 129, (266,496,0): 119, 131, 129, (266,497,0): 118, 133, 130, (266,498,0): 119, 133, 133, (266,499,0): 120, 136, 136, (266,500,0): 123, 138, 143, (266,501,0): 130, 145, 152, (266,502,0): 140, 154, 165, (266,503,0): 145, 161, 174, (266,504,0): 148, 164, 179, (266,505,0): 148, 165, 181, (266,506,0): 151, 168, 186, (266,507,0): 154, 171, 189, (266,508,0): 155, 173, 193, (266,509,0): 157, 175, 195, (266,510,0): 158, 177, 194, (266,511,0): 158, 176, 196, (266,512,0): 156, 172, 195, (266,513,0): 155, 171, 196, (266,514,0): 151, 171, 195, (266,515,0): 148, 173, 195, (266,516,0): 148, 174, 197, (266,517,0): 146, 174, 196, (266,518,0): 144, 168, 192, (266,519,0): 144, 166, 189, (266,520,0): 141, 159, 183, (266,521,0): 138, 153, 174, (266,522,0): 132, 143, 165, (266,523,0): 125, 133, 152, (266,524,0): 120, 127, 145, (266,525,0): 117, 125, 138, (266,526,0): 116, 126, 138, (266,527,0): 114, 126, 138, (266,528,0): 113, 125, 139, (266,529,0): 111, 125, 138, (266,530,0): 109, 123, 136, (266,531,0): 107, 121, 132, (266,532,0): 104, 118, 127, (266,533,0): 101, 116, 123, (266,534,0): 100, 113, 121, (266,535,0): 99, 112, 118, (266,536,0): 101, 112, 118, (266,537,0): 102, 113, 119, (266,538,0): 103, 112, 121, (266,539,0): 103, 111, 122, (266,540,0): 102, 110, 123, (266,541,0): 100, 108, 121, (266,542,0): 98, 105, 121, (266,543,0): 98, 104, 118, (266,544,0): 98, 100, 112, (266,545,0): 99, 99, 109, (266,546,0): 98, 96, 107, (266,547,0): 96, 94, 105, (266,548,0): 95, 92, 103, (266,549,0): 93, 90, 101, (266,550,0): 92, 89, 100, (266,551,0): 91, 88, 99, (266,552,0): 94, 91, 102, (266,553,0): 94, 91, 102, (266,554,0): 94, 92, 103, (266,555,0): 94, 94, 104, (266,556,0): 92, 96, 105, (266,557,0): 91, 98, 106, (266,558,0): 91, 98, 106, (266,559,0): 92, 99, 107, (266,560,0): 87, 94, 102, (266,561,0): 88, 95, 103, (266,562,0): 88, 95, 103, (266,563,0): 89, 96, 104, (266,564,0): 89, 98, 105, (266,565,0): 90, 99, 106, (266,566,0): 91, 100, 109, (266,567,0): 91, 101, 110, (266,568,0): 91, 101, 111, (266,569,0): 89, 99, 109, (266,570,0): 86, 98, 110, (266,571,0): 86, 98, 110, (266,572,0): 87, 99, 111, (266,573,0): 88, 102, 113, (266,574,0): 91, 105, 116, (266,575,0): 93, 107, 120, (266,576,0): 103, 116, 135, (266,577,0): 104, 116, 138, (266,578,0): 105, 117, 139, (266,579,0): 105, 117, 139, (266,580,0): 105, 118, 137, (266,581,0): 104, 117, 136, (266,582,0): 102, 115, 134, (266,583,0): 101, 114, 133, (266,584,0): 103, 116, 133, (266,585,0): 105, 118, 135, (266,586,0): 106, 119, 135, (266,587,0): 105, 118, 134, (266,588,0): 102, 115, 131, (266,589,0): 100, 113, 129, (266,590,0): 100, 113, 129, (266,591,0): 101, 113, 129, (266,592,0): 103, 110, 128, (266,593,0): 102, 107, 126, (266,594,0): 101, 104, 121, (266,595,0): 99, 102, 117, (266,596,0): 97, 99, 114, (266,597,0): 94, 93, 107, (266,598,0): 88, 86, 99, (266,599,0): 82, 80, 93, (267,0,0): 64, 48, 51, (267,1,0): 65, 49, 52, (267,2,0): 65, 49, 52, (267,3,0): 66, 50, 53, (267,4,0): 65, 49, 52, (267,5,0): 64, 48, 51, (267,6,0): 62, 45, 51, (267,7,0): 61, 44, 50, (267,8,0): 58, 41, 49, (267,9,0): 58, 41, 49, (267,10,0): 57, 40, 50, (267,11,0): 57, 40, 50, (267,12,0): 56, 39, 49, (267,13,0): 56, 39, 49, (267,14,0): 55, 38, 48, (267,15,0): 55, 38, 48, (267,16,0): 55, 37, 49, (267,17,0): 56, 38, 50, (267,18,0): 58, 41, 51, (267,19,0): 60, 43, 53, (267,20,0): 64, 44, 53, (267,21,0): 66, 46, 55, (267,22,0): 67, 48, 54, (267,23,0): 68, 49, 53, (267,24,0): 71, 51, 53, (267,25,0): 72, 52, 54, (267,26,0): 74, 52, 54, (267,27,0): 75, 54, 53, (267,28,0): 75, 54, 53, (267,29,0): 75, 54, 53, (267,30,0): 76, 52, 50, (267,31,0): 73, 52, 51, (267,32,0): 72, 54, 54, (267,33,0): 69, 53, 54, (267,34,0): 71, 52, 54, (267,35,0): 70, 51, 53, (267,36,0): 70, 51, 53, (267,37,0): 69, 50, 52, (267,38,0): 70, 50, 52, (267,39,0): 70, 50, 52, (267,40,0): 69, 47, 50, (267,41,0): 70, 48, 51, (267,42,0): 71, 49, 52, (267,43,0): 72, 50, 53, (267,44,0): 75, 50, 54, (267,45,0): 76, 51, 55, (267,46,0): 77, 52, 56, (267,47,0): 77, 52, 56, (267,48,0): 79, 54, 57, (267,49,0): 79, 55, 55, (267,50,0): 80, 56, 56, (267,51,0): 81, 57, 57, (267,52,0): 82, 58, 56, (267,53,0): 83, 59, 55, (267,54,0): 84, 60, 56, (267,55,0): 84, 61, 55, (267,56,0): 86, 63, 55, (267,57,0): 87, 65, 54, (267,58,0): 88, 66, 53, (267,59,0): 90, 68, 54, (267,60,0): 91, 69, 55, (267,61,0): 93, 71, 57, (267,62,0): 94, 72, 58, (267,63,0): 96, 73, 57, (267,64,0): 100, 74, 57, (267,65,0): 101, 74, 55, (267,66,0): 102, 75, 56, (267,67,0): 103, 76, 57, (267,68,0): 103, 76, 55, (267,69,0): 102, 75, 54, (267,70,0): 101, 74, 53, (267,71,0): 101, 75, 52, (267,72,0): 104, 78, 55, (267,73,0): 104, 78, 55, (267,74,0): 105, 79, 54, (267,75,0): 106, 80, 55, (267,76,0): 107, 81, 56, (267,77,0): 108, 82, 57, (267,78,0): 109, 83, 56, (267,79,0): 110, 83, 56, (267,80,0): 111, 81, 53, (267,81,0): 113, 82, 54, (267,82,0): 113, 82, 54, (267,83,0): 113, 82, 54, (267,84,0): 114, 83, 55, (267,85,0): 115, 84, 56, (267,86,0): 115, 84, 56, (267,87,0): 115, 84, 56, (267,88,0): 115, 84, 56, (267,89,0): 115, 84, 56, (267,90,0): 115, 84, 56, (267,91,0): 115, 84, 56, (267,92,0): 115, 84, 56, (267,93,0): 115, 84, 56, (267,94,0): 115, 84, 56, (267,95,0): 115, 84, 55, (267,96,0): 116, 87, 57, (267,97,0): 116, 87, 55, (267,98,0): 116, 87, 55, (267,99,0): 116, 87, 55, (267,100,0): 116, 87, 57, (267,101,0): 116, 87, 57, (267,102,0): 116, 86, 58, (267,103,0): 116, 86, 58, (267,104,0): 117, 87, 59, (267,105,0): 116, 86, 58, (267,106,0): 116, 86, 60, (267,107,0): 116, 86, 60, (267,108,0): 115, 85, 61, (267,109,0): 114, 84, 60, (267,110,0): 114, 84, 60, (267,111,0): 114, 84, 60, (267,112,0): 117, 82, 60, (267,113,0): 116, 81, 59, (267,114,0): 114, 79, 57, (267,115,0): 112, 77, 55, (267,116,0): 110, 75, 53, (267,117,0): 107, 72, 50, (267,118,0): 105, 70, 48, (267,119,0): 105, 70, 48, (267,120,0): 106, 71, 49, (267,121,0): 106, 71, 49, (267,122,0): 107, 72, 50, (267,123,0): 107, 72, 50, (267,124,0): 108, 73, 51, (267,125,0): 108, 73, 51, (267,126,0): 109, 74, 52, (267,127,0): 110, 74, 50, (267,128,0): 109, 72, 46, (267,129,0): 109, 72, 46, (267,130,0): 109, 72, 46, (267,131,0): 108, 71, 45, (267,132,0): 108, 71, 45, (267,133,0): 107, 70, 44, (267,134,0): 107, 70, 44, (267,135,0): 107, 70, 44, (267,136,0): 104, 67, 41, (267,137,0): 105, 68, 42, (267,138,0): 106, 69, 43, (267,139,0): 108, 71, 45, (267,140,0): 109, 72, 46, (267,141,0): 111, 74, 48, (267,142,0): 111, 74, 48, (267,143,0): 112, 75, 48, (267,144,0): 115, 80, 52, (267,145,0): 115, 80, 50, (267,146,0): 115, 80, 50, (267,147,0): 115, 80, 50, (267,148,0): 113, 78, 48, (267,149,0): 110, 75, 45, (267,150,0): 108, 73, 45, (267,151,0): 106, 71, 43, (267,152,0): 99, 63, 37, (267,153,0): 98, 62, 36, (267,154,0): 96, 60, 36, (267,155,0): 94, 58, 34, (267,156,0): 93, 57, 33, (267,157,0): 93, 57, 33, (267,158,0): 93, 57, 33, (267,159,0): 92, 57, 35, (267,160,0): 85, 54, 33, (267,161,0): 83, 55, 33, (267,162,0): 83, 55, 33, (267,163,0): 84, 56, 32, (267,164,0): 88, 58, 32, (267,165,0): 92, 62, 34, (267,166,0): 99, 66, 35, (267,167,0): 102, 69, 36, (267,168,0): 110, 76, 39, (267,169,0): 112, 79, 38, (267,170,0): 120, 83, 41, (267,171,0): 127, 90, 45, (267,172,0): 135, 97, 52, (267,173,0): 142, 104, 57, (267,174,0): 147, 109, 60, (267,175,0): 152, 112, 63, (267,176,0): 159, 115, 68, (267,177,0): 160, 113, 69, (267,178,0): 158, 109, 66, (267,179,0): 153, 106, 64, (267,180,0): 151, 104, 62, (267,181,0): 150, 102, 62, (267,182,0): 149, 104, 63, (267,183,0): 151, 106, 67, (267,184,0): 146, 100, 64, (267,185,0): 139, 95, 60, (267,186,0): 131, 87, 52, (267,187,0): 122, 77, 44, (267,188,0): 115, 70, 39, (267,189,0): 112, 67, 36, (267,190,0): 111, 66, 37, (267,191,0): 108, 67, 37, (267,192,0): 97, 62, 34, (267,193,0): 96, 62, 34, (267,194,0): 98, 63, 33, (267,195,0): 101, 66, 34, (267,196,0): 107, 73, 38, (267,197,0): 114, 80, 42, (267,198,0): 121, 86, 44, (267,199,0): 124, 90, 42, (267,200,0): 143, 108, 54, (267,201,0): 152, 118, 55, (267,202,0): 166, 133, 62, (267,203,0): 179, 147, 70, (267,204,0): 192, 160, 75, (267,205,0): 203, 172, 82, (267,206,0): 212, 182, 86, (267,207,0): 218, 189, 89, (267,208,0): 218, 191, 86, (267,209,0): 218, 194, 84, (267,210,0): 220, 196, 86, (267,211,0): 219, 195, 87, (267,212,0): 216, 194, 85, (267,213,0): 215, 192, 86, (267,214,0): 215, 192, 86, (267,215,0): 215, 194, 89, (267,216,0): 227, 205, 103, (267,217,0): 228, 206, 105, (267,218,0): 226, 207, 105, (267,219,0): 227, 207, 108, (267,220,0): 226, 208, 108, (267,221,0): 226, 208, 110, (267,222,0): 226, 208, 110, (267,223,0): 225, 207, 107, (267,224,0): 225, 208, 104, (267,225,0): 226, 207, 102, (267,226,0): 227, 209, 101, (267,227,0): 228, 210, 102, (267,228,0): 232, 211, 102, (267,229,0): 234, 212, 103, (267,230,0): 237, 213, 105, (267,231,0): 240, 213, 106, (267,232,0): 236, 208, 101, (267,233,0): 228, 199, 95, (267,234,0): 220, 186, 86, (267,235,0): 212, 178, 78, (267,236,0): 212, 176, 80, (267,237,0): 214, 178, 82, (267,238,0): 219, 180, 89, (267,239,0): 218, 183, 91, (267,240,0): 209, 183, 90, (267,241,0): 207, 186, 93, (267,242,0): 212, 189, 96, (267,243,0): 211, 190, 97, (267,244,0): 213, 190, 97, (267,245,0): 213, 193, 98, (267,246,0): 219, 196, 102, (267,247,0): 221, 201, 104, (267,248,0): 230, 207, 111, (267,249,0): 230, 210, 111, (267,250,0): 234, 212, 113, (267,251,0): 234, 214, 115, (267,252,0): 237, 215, 116, (267,253,0): 235, 215, 116, (267,254,0): 238, 216, 117, (267,255,0): 238, 216, 114, (267,256,0): 243, 222, 113, (267,257,0): 245, 225, 112, (267,258,0): 247, 227, 114, (267,259,0): 247, 230, 116, (267,260,0): 247, 232, 117, (267,261,0): 245, 232, 117, (267,262,0): 244, 233, 118, (267,263,0): 242, 235, 119, (267,264,0): 243, 235, 124, (267,265,0): 238, 234, 124, (267,266,0): 236, 233, 126, (267,267,0): 234, 232, 129, (267,268,0): 229, 230, 128, (267,269,0): 223, 225, 126, (267,270,0): 215, 217, 120, (267,271,0): 208, 209, 115, (267,272,0): 197, 200, 109, (267,273,0): 194, 199, 107, (267,274,0): 192, 198, 108, (267,275,0): 190, 200, 111, (267,276,0): 190, 203, 113, (267,277,0): 189, 203, 115, (267,278,0): 187, 199, 115, (267,279,0): 184, 196, 114, (267,280,0): 177, 186, 107, (267,281,0): 177, 184, 107, (267,282,0): 177, 181, 107, (267,283,0): 174, 180, 108, (267,284,0): 173, 180, 110, (267,285,0): 172, 184, 112, (267,286,0): 174, 187, 115, (267,287,0): 173, 189, 116, (267,288,0): 175, 191, 120, (267,289,0): 179, 195, 124, (267,290,0): 180, 196, 125, (267,291,0): 177, 194, 124, (267,292,0): 177, 192, 125, (267,293,0): 177, 192, 127, (267,294,0): 172, 182, 121, (267,295,0): 163, 171, 112, (267,296,0): 153, 153, 99, (267,297,0): 145, 143, 92, (267,298,0): 135, 133, 85, (267,299,0): 130, 129, 83, (267,300,0): 132, 133, 89, (267,301,0): 132, 138, 92, (267,302,0): 130, 139, 94, (267,303,0): 128, 137, 94, (267,304,0): 120, 124, 87, (267,305,0): 122, 124, 87, (267,306,0): 124, 125, 91, (267,307,0): 125, 129, 96, (267,308,0): 129, 133, 100, (267,309,0): 134, 137, 106, (267,310,0): 138, 143, 111, (267,311,0): 138, 147, 116, (267,312,0): 152, 165, 135, (267,313,0): 159, 175, 146, (267,314,0): 163, 184, 153, (267,315,0): 166, 191, 161, (267,316,0): 173, 202, 172, (267,317,0): 184, 217, 186, (267,318,0): 192, 225, 196, (267,319,0): 193, 226, 199, (267,320,0): 189, 217, 194, (267,321,0): 181, 202, 183, (267,322,0): 167, 182, 163, (267,323,0): 153, 162, 143, (267,324,0): 142, 143, 125, (267,325,0): 130, 127, 108, (267,326,0): 119, 114, 94, (267,327,0): 111, 106, 84, (267,328,0): 110, 108, 83, (267,329,0): 111, 111, 85, (267,330,0): 110, 113, 86, (267,331,0): 108, 112, 85, (267,332,0): 103, 109, 81, (267,333,0): 100, 106, 80, (267,334,0): 101, 105, 80, (267,335,0): 103, 105, 83, (267,336,0): 111, 106, 87, (267,337,0): 108, 101, 83, (267,338,0): 100, 93, 75, (267,339,0): 92, 85, 67, (267,340,0): 85, 78, 62, (267,341,0): 81, 72, 57, (267,342,0): 77, 68, 53, (267,343,0): 75, 66, 51, (267,344,0): 73, 61, 49, (267,345,0): 73, 61, 49, (267,346,0): 73, 60, 51, (267,347,0): 74, 60, 51, (267,348,0): 75, 61, 52, (267,349,0): 76, 62, 53, (267,350,0): 77, 62, 55, (267,351,0): 77, 64, 56, (267,352,0): 80, 67, 61, (267,353,0): 80, 69, 63, (267,354,0): 84, 74, 65, (267,355,0): 89, 79, 70, (267,356,0): 93, 85, 74, (267,357,0): 97, 89, 78, (267,358,0): 99, 93, 81, (267,359,0): 99, 95, 84, (267,360,0): 99, 96, 87, (267,361,0): 103, 104, 96, (267,362,0): 107, 112, 105, (267,363,0): 108, 117, 112, (267,364,0): 107, 119, 115, (267,365,0): 108, 124, 121, (267,366,0): 115, 134, 132, (267,367,0): 122, 142, 140, (267,368,0): 121, 140, 138, (267,369,0): 122, 138, 137, (267,370,0): 119, 135, 134, (267,371,0): 117, 133, 132, (267,372,0): 115, 131, 131, (267,373,0): 115, 130, 133, (267,374,0): 114, 129, 134, (267,375,0): 115, 130, 135, (267,376,0): 120, 135, 142, (267,377,0): 122, 136, 145, (267,378,0): 123, 137, 148, (267,379,0): 122, 136, 147, (267,380,0): 119, 133, 146, (267,381,0): 115, 129, 142, (267,382,0): 111, 125, 138, (267,383,0): 106, 122, 137, (267,384,0): 108, 127, 141, (267,385,0): 110, 129, 143, (267,386,0): 112, 128, 143, (267,387,0): 111, 123, 139, (267,388,0): 108, 115, 133, (267,389,0): 103, 108, 127, (267,390,0): 104, 107, 126, (267,391,0): 104, 107, 124, (267,392,0): 103, 106, 123, (267,393,0): 105, 108, 123, (267,394,0): 106, 108, 123, (267,395,0): 108, 107, 121, (267,396,0): 106, 102, 117, (267,397,0): 104, 96, 111, (267,398,0): 103, 89, 106, (267,399,0): 98, 86, 100, (267,400,0): 95, 87, 98, (267,401,0): 97, 92, 99, (267,402,0): 101, 96, 103, (267,403,0): 99, 96, 103, (267,404,0): 95, 94, 100, (267,405,0): 92, 93, 98, (267,406,0): 90, 93, 100, (267,407,0): 90, 95, 101, (267,408,0): 91, 98, 106, (267,409,0): 91, 101, 111, (267,410,0): 95, 105, 117, (267,411,0): 96, 109, 125, (267,412,0): 100, 113, 132, (267,413,0): 101, 116, 137, (267,414,0): 102, 118, 143, (267,415,0): 105, 120, 143, (267,416,0): 111, 122, 142, (267,417,0): 111, 119, 138, (267,418,0): 110, 118, 137, (267,419,0): 110, 118, 137, (267,420,0): 112, 120, 139, (267,421,0): 116, 124, 143, (267,422,0): 121, 129, 150, (267,423,0): 124, 132, 153, (267,424,0): 128, 136, 159, (267,425,0): 130, 138, 161, (267,426,0): 131, 139, 162, (267,427,0): 133, 140, 166, (267,428,0): 133, 140, 166, (267,429,0): 133, 140, 166, (267,430,0): 132, 139, 165, (267,431,0): 131, 138, 164, (267,432,0): 136, 145, 174, (267,433,0): 135, 144, 173, (267,434,0): 134, 143, 172, (267,435,0): 135, 142, 170, (267,436,0): 135, 141, 167, (267,437,0): 131, 135, 160, (267,438,0): 126, 127, 148, (267,439,0): 122, 120, 141, (267,440,0): 120, 116, 133, (267,441,0): 118, 111, 127, (267,442,0): 116, 105, 119, (267,443,0): 116, 104, 116, (267,444,0): 120, 107, 117, (267,445,0): 126, 110, 120, (267,446,0): 130, 113, 123, (267,447,0): 130, 113, 121, (267,448,0): 128, 113, 120, (267,449,0): 125, 112, 119, (267,450,0): 123, 110, 119, (267,451,0): 120, 109, 117, (267,452,0): 117, 107, 116, (267,453,0): 114, 107, 115, (267,454,0): 112, 106, 116, (267,455,0): 110, 107, 116, (267,456,0): 118, 118, 130, (267,457,0): 119, 121, 133, (267,458,0): 121, 125, 137, (267,459,0): 119, 125, 137, (267,460,0): 116, 124, 137, (267,461,0): 113, 123, 135, (267,462,0): 114, 123, 138, (267,463,0): 116, 125, 142, (267,464,0): 121, 126, 148, (267,465,0): 123, 125, 150, (267,466,0): 121, 123, 146, (267,467,0): 118, 121, 140, (267,468,0): 113, 114, 132, (267,469,0): 106, 108, 123, (267,470,0): 101, 100, 114, (267,471,0): 98, 96, 109, (267,472,0): 100, 97, 108, (267,473,0): 100, 97, 106, (267,474,0): 101, 95, 105, (267,475,0): 102, 94, 105, (267,476,0): 105, 94, 108, (267,477,0): 107, 96, 110, (267,478,0): 109, 98, 112, (267,479,0): 110, 99, 113, (267,480,0): 105, 95, 106, (267,481,0): 102, 92, 101, (267,482,0): 99, 89, 98, (267,483,0): 93, 86, 94, (267,484,0): 91, 84, 92, (267,485,0): 89, 84, 91, (267,486,0): 88, 85, 92, (267,487,0): 89, 86, 93, (267,488,0): 92, 91, 97, (267,489,0): 95, 96, 101, (267,490,0): 99, 102, 107, (267,491,0): 104, 107, 112, (267,492,0): 107, 112, 116, (267,493,0): 113, 118, 122, (267,494,0): 120, 125, 129, (267,495,0): 123, 131, 134, (267,496,0): 123, 135, 135, (267,497,0): 122, 138, 137, (267,498,0): 124, 140, 140, (267,499,0): 126, 141, 144, (267,500,0): 128, 143, 150, (267,501,0): 131, 148, 156, (267,502,0): 139, 155, 168, (267,503,0): 144, 160, 175, (267,504,0): 144, 161, 177, (267,505,0): 146, 163, 179, (267,506,0): 148, 165, 181, (267,507,0): 150, 167, 183, (267,508,0): 152, 171, 186, (267,509,0): 154, 173, 188, (267,510,0): 156, 175, 189, (267,511,0): 157, 176, 191, (267,512,0): 151, 166, 189, (267,513,0): 151, 167, 192, (267,514,0): 149, 169, 193, (267,515,0): 147, 172, 194, (267,516,0): 147, 173, 196, (267,517,0): 146, 174, 196, (267,518,0): 146, 170, 194, (267,519,0): 147, 169, 192, (267,520,0): 146, 164, 188, (267,521,0): 144, 159, 180, (267,522,0): 139, 150, 172, (267,523,0): 132, 140, 159, (267,524,0): 126, 133, 151, (267,525,0): 122, 130, 143, (267,526,0): 119, 129, 141, (267,527,0): 116, 129, 138, (267,528,0): 114, 126, 140, (267,529,0): 112, 126, 139, (267,530,0): 110, 124, 135, (267,531,0): 107, 121, 130, (267,532,0): 104, 119, 126, (267,533,0): 101, 116, 123, (267,534,0): 100, 113, 119, (267,535,0): 99, 112, 118, (267,536,0): 102, 113, 119, (267,537,0): 102, 113, 119, (267,538,0): 103, 112, 121, (267,539,0): 103, 112, 121, (267,540,0): 102, 110, 121, (267,541,0): 100, 108, 121, (267,542,0): 98, 105, 121, (267,543,0): 98, 104, 118, (267,544,0): 100, 102, 114, (267,545,0): 102, 102, 112, (267,546,0): 102, 100, 111, (267,547,0): 101, 99, 110, (267,548,0): 100, 97, 108, (267,549,0): 98, 95, 106, (267,550,0): 96, 93, 104, (267,551,0): 95, 92, 103, (267,552,0): 95, 92, 103, (267,553,0): 95, 93, 104, (267,554,0): 95, 95, 105, (267,555,0): 95, 98, 107, (267,556,0): 95, 99, 108, (267,557,0): 94, 103, 110, (267,558,0): 95, 104, 111, (267,559,0): 96, 105, 112, (267,560,0): 90, 99, 106, (267,561,0): 91, 98, 106, (267,562,0): 92, 99, 107, (267,563,0): 92, 99, 107, (267,564,0): 92, 101, 108, (267,565,0): 93, 102, 109, (267,566,0): 92, 102, 111, (267,567,0): 92, 102, 111, (267,568,0): 93, 103, 113, (267,569,0): 90, 103, 112, (267,570,0): 88, 100, 112, (267,571,0): 88, 100, 112, (267,572,0): 88, 102, 113, (267,573,0): 91, 105, 116, (267,574,0): 93, 107, 118, (267,575,0): 95, 109, 122, (267,576,0): 105, 118, 137, (267,577,0): 106, 118, 140, (267,578,0): 106, 118, 140, (267,579,0): 106, 118, 140, (267,580,0): 105, 117, 139, (267,581,0): 104, 117, 136, (267,582,0): 102, 115, 134, (267,583,0): 101, 114, 133, (267,584,0): 102, 115, 132, (267,585,0): 105, 118, 135, (267,586,0): 108, 121, 137, (267,587,0): 108, 121, 137, (267,588,0): 103, 116, 132, (267,589,0): 100, 113, 129, (267,590,0): 100, 114, 127, (267,591,0): 102, 114, 128, (267,592,0): 102, 109, 127, (267,593,0): 100, 105, 124, (267,594,0): 100, 103, 120, (267,595,0): 98, 101, 116, (267,596,0): 99, 98, 114, (267,597,0): 94, 93, 107, (267,598,0): 88, 86, 99, (267,599,0): 82, 80, 93, (268,0,0): 64, 48, 49, (268,1,0): 65, 49, 50, (268,2,0): 65, 49, 50, (268,3,0): 66, 50, 51, (268,4,0): 65, 49, 52, (268,5,0): 64, 48, 51, (268,6,0): 62, 45, 51, (268,7,0): 61, 44, 50, (268,8,0): 58, 41, 47, (268,9,0): 58, 41, 47, (268,10,0): 57, 40, 48, (268,11,0): 57, 40, 48, (268,12,0): 56, 39, 49, (268,13,0): 56, 39, 49, (268,14,0): 55, 38, 48, (268,15,0): 55, 38, 48, (268,16,0): 56, 39, 49, (268,17,0): 57, 40, 50, (268,18,0): 58, 41, 51, (268,19,0): 60, 43, 53, (268,20,0): 64, 44, 53, (268,21,0): 66, 46, 55, (268,22,0): 68, 49, 55, (268,23,0): 69, 50, 54, (268,24,0): 72, 52, 54, (268,25,0): 73, 53, 55, (268,26,0): 75, 53, 55, (268,27,0): 76, 55, 54, (268,28,0): 76, 55, 54, (268,29,0): 75, 54, 51, (268,30,0): 75, 51, 49, (268,31,0): 73, 52, 51, (268,32,0): 72, 54, 54, (268,33,0): 70, 54, 55, (268,34,0): 70, 54, 55, (268,35,0): 69, 53, 54, (268,36,0): 71, 52, 54, (268,37,0): 70, 51, 53, (268,38,0): 70, 51, 53, (268,39,0): 69, 50, 52, (268,40,0): 69, 49, 51, (268,41,0): 69, 49, 51, (268,42,0): 71, 49, 52, (268,43,0): 72, 50, 53, (268,44,0): 73, 51, 54, (268,45,0): 74, 52, 55, (268,46,0): 77, 52, 56, (268,47,0): 78, 53, 57, (268,48,0): 78, 56, 58, (268,49,0): 78, 56, 58, (268,50,0): 79, 58, 57, (268,51,0): 80, 59, 58, (268,52,0): 81, 60, 57, (268,53,0): 82, 61, 56, (268,54,0): 83, 62, 57, (268,55,0): 83, 63, 56, (268,56,0): 85, 65, 56, (268,57,0): 86, 66, 55, (268,58,0): 87, 68, 54, (268,59,0): 89, 70, 55, (268,60,0): 90, 71, 56, (268,61,0): 92, 73, 56, (268,62,0): 93, 74, 57, (268,63,0): 96, 75, 56, (268,64,0): 101, 76, 56, (268,65,0): 103, 76, 57, (268,66,0): 104, 77, 56, (268,67,0): 104, 77, 56, (268,68,0): 104, 77, 56, (268,69,0): 104, 77, 56, (268,70,0): 103, 77, 54, (268,71,0): 102, 76, 53, (268,72,0): 105, 79, 56, (268,73,0): 105, 79, 54, (268,74,0): 106, 80, 55, (268,75,0): 107, 81, 56, (268,76,0): 108, 82, 55, (268,77,0): 109, 83, 56, (268,78,0): 110, 84, 57, (268,79,0): 111, 84, 57, (268,80,0): 112, 82, 54, (268,81,0): 113, 82, 54, (268,82,0): 113, 82, 54, (268,83,0): 114, 83, 55, (268,84,0): 115, 84, 56, (268,85,0): 115, 84, 56, (268,86,0): 115, 84, 56, (268,87,0): 116, 85, 57, (268,88,0): 116, 85, 57, (268,89,0): 116, 85, 57, (268,90,0): 116, 85, 57, (268,91,0): 116, 85, 57, (268,92,0): 116, 85, 57, (268,93,0): 116, 85, 57, (268,94,0): 116, 85, 57, (268,95,0): 116, 85, 56, (268,96,0): 116, 87, 57, (268,97,0): 114, 88, 55, (268,98,0): 114, 88, 55, (268,99,0): 114, 88, 55, (268,100,0): 114, 88, 55, (268,101,0): 114, 88, 55, (268,102,0): 114, 87, 57, (268,103,0): 114, 87, 57, (268,104,0): 116, 89, 60, (268,105,0): 116, 89, 60, (268,106,0): 115, 88, 61, (268,107,0): 115, 88, 61, (268,108,0): 114, 87, 60, (268,109,0): 114, 87, 60, (268,110,0): 113, 86, 59, (268,111,0): 115, 85, 59, (268,112,0): 118, 84, 59, (268,113,0): 118, 82, 58, (268,114,0): 116, 80, 56, (268,115,0): 114, 78, 54, (268,116,0): 112, 76, 52, (268,117,0): 109, 73, 49, (268,118,0): 108, 72, 48, (268,119,0): 107, 71, 47, (268,120,0): 109, 73, 49, (268,121,0): 109, 73, 49, (268,122,0): 109, 73, 49, (268,123,0): 110, 74, 50, (268,124,0): 110, 74, 50, (268,125,0): 111, 75, 51, (268,126,0): 111, 75, 51, (268,127,0): 112, 76, 52, (268,128,0): 111, 74, 48, (268,129,0): 111, 74, 48, (268,130,0): 111, 74, 48, (268,131,0): 110, 73, 47, (268,132,0): 110, 73, 47, (268,133,0): 109, 72, 46, (268,134,0): 109, 72, 46, (268,135,0): 109, 72, 46, (268,136,0): 104, 67, 41, (268,137,0): 105, 68, 42, (268,138,0): 105, 68, 42, (268,139,0): 106, 69, 43, (268,140,0): 107, 70, 44, (268,141,0): 109, 72, 46, (268,142,0): 110, 73, 47, (268,143,0): 110, 73, 46, (268,144,0): 114, 79, 51, (268,145,0): 113, 78, 48, (268,146,0): 113, 78, 48, (268,147,0): 111, 76, 46, (268,148,0): 109, 74, 44, (268,149,0): 107, 72, 42, (268,150,0): 105, 70, 42, (268,151,0): 103, 68, 40, (268,152,0): 99, 63, 37, (268,153,0): 98, 62, 36, (268,154,0): 96, 60, 36, (268,155,0): 94, 58, 34, (268,156,0): 93, 57, 33, (268,157,0): 93, 57, 33, (268,158,0): 93, 57, 33, (268,159,0): 92, 57, 35, (268,160,0): 84, 56, 34, (268,161,0): 83, 57, 34, (268,162,0): 83, 57, 34, (268,163,0): 86, 58, 34, (268,164,0): 91, 61, 33, (268,165,0): 96, 67, 37, (268,166,0): 104, 71, 38, (268,167,0): 106, 73, 38, (268,168,0): 116, 82, 44, (268,169,0): 120, 87, 44, (268,170,0): 128, 91, 46, (268,171,0): 136, 100, 50, (268,172,0): 144, 106, 57, (268,173,0): 153, 113, 62, (268,174,0): 158, 118, 66, (268,175,0): 162, 121, 69, (268,176,0): 167, 121, 72, (268,177,0): 166, 118, 72, (268,178,0): 164, 113, 68, (268,179,0): 159, 111, 65, (268,180,0): 156, 109, 65, (268,181,0): 155, 108, 66, (268,182,0): 152, 107, 65, (268,183,0): 152, 107, 66, (268,184,0): 142, 98, 59, (268,185,0): 136, 94, 56, (268,186,0): 127, 84, 49, (268,187,0): 119, 76, 41, (268,188,0): 111, 71, 36, (268,189,0): 108, 68, 33, (268,190,0): 107, 68, 35, (268,191,0): 106, 70, 38, (268,192,0): 96, 63, 30, (268,193,0): 97, 67, 33, (268,194,0): 103, 70, 35, (268,195,0): 109, 77, 39, (268,196,0): 117, 84, 43, (268,197,0): 126, 93, 48, (268,198,0): 135, 102, 51, (268,199,0): 139, 107, 50, (268,200,0): 163, 129, 66, (268,201,0): 170, 137, 66, (268,202,0): 183, 150, 73, (268,203,0): 192, 160, 77, (268,204,0): 200, 166, 77, (268,205,0): 205, 172, 77, (268,206,0): 209, 176, 79, (268,207,0): 210, 181, 79, (268,208,0): 213, 186, 81, (268,209,0): 215, 191, 83, (268,210,0): 218, 194, 86, (268,211,0): 218, 194, 88, (268,212,0): 216, 192, 86, (268,213,0): 214, 191, 87, (268,214,0): 217, 194, 90, (268,215,0): 219, 196, 94, (268,216,0): 228, 206, 105, (268,217,0): 228, 206, 107, (268,218,0): 226, 206, 107, (268,219,0): 225, 205, 108, (268,220,0): 225, 205, 108, (268,221,0): 225, 205, 110, (268,222,0): 225, 205, 110, (268,223,0): 226, 206, 107, (268,224,0): 227, 208, 103, (268,225,0): 230, 209, 100, (268,226,0): 232, 212, 100, (268,227,0): 235, 213, 102, (268,228,0): 237, 215, 103, (268,229,0): 240, 217, 103, (268,230,0): 241, 218, 104, (268,231,0): 244, 218, 105, (268,232,0): 233, 206, 93, (268,233,0): 227, 199, 89, (268,234,0): 223, 190, 83, (268,235,0): 219, 186, 81, (268,236,0): 219, 184, 84, (268,237,0): 220, 185, 85, (268,238,0): 219, 183, 87, (268,239,0): 216, 183, 86, (268,240,0): 214, 190, 92, (268,241,0): 212, 194, 94, (268,242,0): 215, 195, 96, (268,243,0): 215, 197, 97, (268,244,0): 217, 197, 98, (268,245,0): 219, 201, 101, (268,246,0): 225, 205, 106, (268,247,0): 228, 210, 108, (268,248,0): 233, 214, 112, (268,249,0): 233, 216, 112, (268,250,0): 236, 217, 114, (268,251,0): 237, 220, 114, (268,252,0): 241, 222, 117, (268,253,0): 241, 224, 118, (268,254,0): 242, 223, 118, (268,255,0): 241, 223, 115, (268,256,0): 245, 227, 115, (268,257,0): 246, 229, 113, (268,258,0): 248, 231, 115, (268,259,0): 249, 234, 117, (268,260,0): 251, 236, 119, (268,261,0): 250, 238, 120, (268,262,0): 248, 237, 121, (268,263,0): 244, 237, 121, (268,264,0): 244, 237, 123, (268,265,0): 239, 236, 123, (268,266,0): 236, 234, 125, (268,267,0): 234, 233, 127, (268,268,0): 231, 229, 128, (268,269,0): 222, 222, 124, (268,270,0): 214, 214, 118, (268,271,0): 207, 206, 113, (268,272,0): 197, 197, 107, (268,273,0): 193, 198, 108, (268,274,0): 191, 197, 109, (268,275,0): 190, 200, 111, (268,276,0): 190, 203, 115, (268,277,0): 189, 203, 116, (268,278,0): 186, 200, 115, (268,279,0): 184, 196, 114, (268,280,0): 176, 185, 106, (268,281,0): 176, 183, 106, (268,282,0): 174, 180, 106, (268,283,0): 174, 180, 108, (268,284,0): 174, 181, 111, (268,285,0): 174, 185, 116, (268,286,0): 174, 190, 119, (268,287,0): 175, 192, 121, (268,288,0): 175, 192, 122, (268,289,0): 179, 196, 126, (268,290,0): 180, 197, 127, (268,291,0): 176, 196, 127, (268,292,0): 179, 196, 128, (268,293,0): 179, 195, 130, (268,294,0): 175, 187, 125, (268,295,0): 166, 176, 116, (268,296,0): 157, 160, 105, (268,297,0): 151, 151, 99, (268,298,0): 141, 141, 91, (268,299,0): 135, 137, 88, (268,300,0): 136, 140, 90, (268,301,0): 135, 143, 94, (268,302,0): 133, 145, 97, (268,303,0): 132, 144, 96, (268,304,0): 122, 131, 88, (268,305,0): 123, 130, 89, (268,306,0): 122, 128, 90, (268,307,0): 125, 129, 92, (268,308,0): 128, 132, 97, (268,309,0): 135, 136, 104, (268,310,0): 140, 141, 109, (268,311,0): 141, 144, 113, (268,312,0): 152, 155, 126, (268,313,0): 161, 165, 138, (268,314,0): 169, 178, 151, (268,315,0): 177, 187, 160, (268,316,0): 187, 200, 174, (268,317,0): 198, 214, 187, (268,318,0): 202, 218, 192, (268,319,0): 198, 216, 192, (268,320,0): 197, 211, 194, (268,321,0): 186, 199, 182, (268,322,0): 170, 179, 162, (268,323,0): 156, 159, 142, (268,324,0): 144, 143, 125, (268,325,0): 134, 129, 110, (268,326,0): 122, 117, 97, (268,327,0): 113, 111, 88, (268,328,0): 111, 111, 85, (268,329,0): 110, 114, 87, (268,330,0): 110, 116, 90, (268,331,0): 106, 115, 88, (268,332,0): 101, 111, 84, (268,333,0): 99, 109, 84, (268,334,0): 101, 109, 85, (268,335,0): 104, 109, 87, (268,336,0): 113, 112, 92, (268,337,0): 112, 109, 90, (268,338,0): 108, 103, 84, (268,339,0): 100, 95, 76, (268,340,0): 92, 86, 70, (268,341,0): 86, 79, 63, (268,342,0): 82, 73, 58, (268,343,0): 80, 71, 56, (268,344,0): 76, 64, 52, (268,345,0): 75, 63, 51, (268,346,0): 75, 61, 52, (268,347,0): 77, 60, 52, (268,348,0): 77, 60, 52, (268,349,0): 79, 62, 54, (268,350,0): 83, 64, 58, (268,351,0): 83, 66, 59, (268,352,0): 83, 70, 64, (268,353,0): 82, 71, 65, (268,354,0): 85, 75, 66, (268,355,0): 89, 79, 70, (268,356,0): 93, 83, 74, (268,357,0): 97, 88, 79, (268,358,0): 99, 92, 82, (268,359,0): 99, 95, 84, (268,360,0): 95, 95, 85, (268,361,0): 100, 103, 94, (268,362,0): 105, 112, 104, (268,363,0): 107, 118, 112, (268,364,0): 106, 121, 116, (268,365,0): 109, 128, 124, (268,366,0): 119, 139, 137, (268,367,0): 128, 148, 147, (268,368,0): 128, 146, 146, (268,369,0): 126, 144, 144, (268,370,0): 122, 140, 140, (268,371,0): 118, 136, 136, (268,372,0): 114, 132, 134, (268,373,0): 111, 129, 131, (268,374,0): 111, 126, 131, (268,375,0): 111, 126, 133, (268,376,0): 118, 132, 141, (268,377,0): 116, 130, 139, (268,378,0): 115, 129, 140, (268,379,0): 113, 127, 140, (268,380,0): 113, 125, 141, (268,381,0): 113, 125, 141, (268,382,0): 112, 124, 140, (268,383,0): 110, 123, 139, (268,384,0): 106, 122, 138, (268,385,0): 107, 123, 139, (268,386,0): 109, 120, 138, (268,387,0): 108, 115, 133, (268,388,0): 105, 108, 125, (268,389,0): 100, 102, 117, (268,390,0): 99, 98, 112, (268,391,0): 100, 98, 111, (268,392,0): 98, 98, 110, (268,393,0): 100, 100, 110, (268,394,0): 103, 101, 112, (268,395,0): 106, 103, 114, (268,396,0): 107, 99, 112, (268,397,0): 106, 95, 109, (268,398,0): 106, 89, 105, (268,399,0): 101, 87, 100, (268,400,0): 97, 87, 96, (268,401,0): 97, 92, 98, (268,402,0): 100, 95, 101, (268,403,0): 97, 95, 100, (268,404,0): 94, 92, 97, (268,405,0): 90, 89, 94, (268,406,0): 87, 90, 95, (268,407,0): 86, 91, 97, (268,408,0): 91, 98, 106, (268,409,0): 92, 102, 112, (268,410,0): 96, 106, 118, (268,411,0): 98, 111, 127, (268,412,0): 102, 115, 134, (268,413,0): 103, 118, 139, (268,414,0): 103, 119, 144, (268,415,0): 105, 120, 143, (268,416,0): 111, 119, 138, (268,417,0): 111, 118, 136, (268,418,0): 109, 116, 134, (268,419,0): 109, 116, 134, (268,420,0): 112, 119, 137, (268,421,0): 116, 123, 141, (268,422,0): 120, 127, 146, (268,423,0): 123, 130, 149, (268,424,0): 123, 129, 151, (268,425,0): 125, 131, 153, (268,426,0): 127, 133, 155, (268,427,0): 130, 136, 160, (268,428,0): 132, 138, 162, (268,429,0): 134, 140, 164, (268,430,0): 135, 141, 165, (268,431,0): 134, 141, 167, (268,432,0): 137, 144, 173, (268,433,0): 137, 144, 173, (268,434,0): 136, 143, 172, (268,435,0): 138, 143, 172, (268,436,0): 141, 143, 168, (268,437,0): 138, 138, 162, (268,438,0): 134, 131, 152, (268,439,0): 129, 124, 144, (268,440,0): 125, 116, 133, (268,441,0): 123, 112, 128, (268,442,0): 121, 107, 120, (268,443,0): 122, 106, 116, (268,444,0): 126, 109, 117, (268,445,0): 131, 112, 118, (268,446,0): 133, 112, 119, (268,447,0): 132, 113, 119, (268,448,0): 125, 108, 114, (268,449,0): 122, 107, 112, (268,450,0): 119, 106, 113, (268,451,0): 116, 105, 111, (268,452,0): 115, 105, 113, (268,453,0): 114, 107, 115, (268,454,0): 114, 108, 118, (268,455,0): 113, 110, 119, (268,456,0): 120, 120, 132, (268,457,0): 121, 123, 135, (268,458,0): 124, 128, 140, (268,459,0): 123, 129, 143, (268,460,0): 120, 127, 143, (268,461,0): 118, 127, 142, (268,462,0): 117, 129, 145, (268,463,0): 119, 130, 148, (268,464,0): 125, 131, 155, (268,465,0): 125, 129, 154, (268,466,0): 124, 126, 149, (268,467,0): 120, 122, 143, (268,468,0): 115, 116, 136, (268,469,0): 108, 110, 125, (268,470,0): 103, 102, 116, (268,471,0): 101, 99, 112, (268,472,0): 104, 101, 112, (268,473,0): 104, 101, 112, (268,474,0): 107, 101, 113, (268,475,0): 107, 101, 113, (268,476,0): 109, 101, 116, (268,477,0): 110, 102, 117, (268,478,0): 112, 101, 117, (268,479,0): 112, 101, 115, (268,480,0): 107, 97, 108, (268,481,0): 105, 95, 104, (268,482,0): 99, 92, 100, (268,483,0): 95, 88, 96, (268,484,0): 93, 86, 94, (268,485,0): 92, 87, 94, (268,486,0): 90, 87, 94, (268,487,0): 91, 88, 95, (268,488,0): 91, 90, 96, (268,489,0): 94, 95, 100, (268,490,0): 98, 101, 106, (268,491,0): 102, 105, 110, (268,492,0): 106, 111, 115, (268,493,0): 113, 118, 122, (268,494,0): 119, 127, 130, (268,495,0): 123, 133, 135, (268,496,0): 122, 136, 137, (268,497,0): 123, 141, 143, (268,498,0): 128, 146, 150, (268,499,0): 131, 148, 155, (268,500,0): 133, 150, 158, (268,501,0): 135, 152, 162, (268,502,0): 139, 155, 170, (268,503,0): 141, 158, 174, (268,504,0): 143, 160, 176, (268,505,0): 144, 161, 177, (268,506,0): 145, 162, 178, (268,507,0): 147, 165, 179, (268,508,0): 148, 168, 179, (268,509,0): 151, 171, 182, (268,510,0): 153, 173, 182, (268,511,0): 154, 173, 187, (268,512,0): 147, 162, 183, (268,513,0): 148, 164, 189, (268,514,0): 147, 167, 191, (268,515,0): 146, 171, 193, (268,516,0): 146, 172, 195, (268,517,0): 145, 173, 195, (268,518,0): 147, 171, 195, (268,519,0): 149, 171, 194, (268,520,0): 152, 170, 194, (268,521,0): 150, 165, 186, (268,522,0): 146, 157, 179, (268,523,0): 140, 148, 167, (268,524,0): 133, 140, 158, (268,525,0): 127, 135, 148, (268,526,0): 122, 132, 144, (268,527,0): 118, 131, 140, (268,528,0): 115, 127, 141, (268,529,0): 113, 127, 140, (268,530,0): 112, 126, 137, (268,531,0): 109, 123, 132, (268,532,0): 107, 122, 129, (268,533,0): 104, 119, 126, (268,534,0): 104, 117, 123, (268,535,0): 103, 117, 120, (268,536,0): 103, 114, 118, (268,537,0): 103, 114, 120, (268,538,0): 104, 113, 122, (268,539,0): 104, 113, 122, (268,540,0): 103, 111, 122, (268,541,0): 101, 109, 122, (268,542,0): 99, 106, 122, (268,543,0): 99, 105, 119, (268,544,0): 102, 105, 114, (268,545,0): 104, 104, 112, (268,546,0): 105, 104, 112, (268,547,0): 104, 103, 111, (268,548,0): 104, 101, 110, (268,549,0): 102, 99, 108, (268,550,0): 100, 97, 108, (268,551,0): 99, 96, 107, (268,552,0): 95, 93, 104, (268,553,0): 96, 94, 105, (268,554,0): 97, 97, 107, (268,555,0): 95, 99, 108, (268,556,0): 96, 103, 113, (268,557,0): 97, 106, 115, (268,558,0): 97, 107, 116, (268,559,0): 98, 108, 117, (268,560,0): 96, 105, 112, (268,561,0): 96, 105, 112, (268,562,0): 96, 105, 112, (268,563,0): 97, 106, 113, (268,564,0): 97, 106, 113, (268,565,0): 97, 106, 113, (268,566,0): 97, 107, 116, (268,567,0): 97, 107, 116, (268,568,0): 94, 107, 116, (268,569,0): 93, 106, 115, (268,570,0): 92, 104, 116, (268,571,0): 90, 104, 115, (268,572,0): 91, 105, 116, (268,573,0): 94, 108, 119, (268,574,0): 97, 111, 122, (268,575,0): 99, 113, 126, (268,576,0): 107, 120, 139, (268,577,0): 107, 119, 143, (268,578,0): 108, 120, 144, (268,579,0): 108, 120, 142, (268,580,0): 107, 119, 141, (268,581,0): 105, 117, 139, (268,582,0): 104, 117, 136, (268,583,0): 103, 116, 135, (268,584,0): 102, 115, 132, (268,585,0): 105, 118, 135, (268,586,0): 108, 121, 137, (268,587,0): 108, 121, 137, (268,588,0): 103, 117, 130, (268,589,0): 100, 114, 127, (268,590,0): 100, 114, 127, (268,591,0): 102, 114, 128, (268,592,0): 101, 108, 126, (268,593,0): 100, 105, 124, (268,594,0): 99, 102, 119, (268,595,0): 98, 101, 116, (268,596,0): 99, 98, 114, (268,597,0): 94, 93, 107, (268,598,0): 88, 86, 99, (268,599,0): 83, 81, 94, (269,0,0): 64, 48, 49, (269,1,0): 65, 49, 50, (269,2,0): 65, 49, 50, (269,3,0): 66, 50, 51, (269,4,0): 65, 49, 52, (269,5,0): 64, 48, 51, (269,6,0): 62, 45, 51, (269,7,0): 61, 44, 50, (269,8,0): 58, 41, 47, (269,9,0): 58, 41, 47, (269,10,0): 57, 40, 48, (269,11,0): 57, 40, 48, (269,12,0): 56, 39, 49, (269,13,0): 56, 39, 49, (269,14,0): 55, 38, 48, (269,15,0): 55, 38, 48, (269,16,0): 56, 39, 49, (269,17,0): 57, 40, 50, (269,18,0): 59, 42, 52, (269,19,0): 61, 44, 52, (269,20,0): 65, 45, 54, (269,21,0): 67, 48, 54, (269,22,0): 68, 49, 53, (269,23,0): 69, 50, 54, (269,24,0): 74, 54, 56, (269,25,0): 74, 54, 55, (269,26,0): 76, 55, 54, (269,27,0): 76, 55, 54, (269,28,0): 76, 55, 52, (269,29,0): 75, 54, 51, (269,30,0): 75, 51, 49, (269,31,0): 72, 51, 50, (269,32,0): 73, 55, 55, (269,33,0): 70, 54, 55, (269,34,0): 70, 54, 55, (269,35,0): 70, 54, 55, (269,36,0): 71, 52, 54, (269,37,0): 70, 51, 53, (269,38,0): 70, 51, 53, (269,39,0): 70, 51, 53, (269,40,0): 70, 50, 52, (269,41,0): 70, 50, 52, (269,42,0): 72, 50, 53, (269,43,0): 73, 51, 54, (269,44,0): 74, 52, 55, (269,45,0): 75, 53, 56, (269,46,0): 78, 53, 57, (269,47,0): 78, 53, 57, (269,48,0): 78, 56, 58, (269,49,0): 78, 56, 58, (269,50,0): 79, 58, 57, (269,51,0): 80, 59, 58, (269,52,0): 81, 60, 57, (269,53,0): 82, 61, 56, (269,54,0): 83, 62, 57, (269,55,0): 84, 64, 55, (269,56,0): 86, 66, 57, (269,57,0): 87, 68, 54, (269,58,0): 88, 69, 55, (269,59,0): 90, 71, 56, (269,60,0): 91, 72, 55, (269,61,0): 93, 75, 55, (269,62,0): 94, 76, 56, (269,63,0): 97, 76, 55, (269,64,0): 102, 77, 57, (269,65,0): 104, 77, 58, (269,66,0): 105, 78, 57, (269,67,0): 105, 78, 57, (269,68,0): 105, 78, 57, (269,69,0): 105, 78, 57, (269,70,0): 104, 78, 55, (269,71,0): 103, 77, 54, (269,72,0): 106, 80, 55, (269,73,0): 106, 80, 55, (269,74,0): 107, 81, 56, (269,75,0): 108, 82, 57, (269,76,0): 109, 83, 56, (269,77,0): 110, 84, 57, (269,78,0): 111, 85, 58, (269,79,0): 112, 85, 58, (269,80,0): 112, 82, 54, (269,81,0): 114, 83, 55, (269,82,0): 114, 83, 55, (269,83,0): 115, 84, 56, (269,84,0): 115, 84, 56, (269,85,0): 116, 85, 57, (269,86,0): 116, 85, 57, (269,87,0): 116, 85, 57, (269,88,0): 116, 85, 57, (269,89,0): 116, 85, 57, (269,90,0): 116, 85, 57, (269,91,0): 116, 85, 57, (269,92,0): 116, 85, 57, (269,93,0): 116, 85, 57, (269,94,0): 116, 85, 57, (269,95,0): 115, 86, 56, (269,96,0): 116, 87, 55, (269,97,0): 114, 88, 55, (269,98,0): 114, 88, 55, (269,99,0): 114, 88, 55, (269,100,0): 114, 88, 55, (269,101,0): 114, 88, 55, (269,102,0): 114, 87, 57, (269,103,0): 114, 87, 57, (269,104,0): 116, 89, 60, (269,105,0): 116, 89, 60, (269,106,0): 115, 88, 61, (269,107,0): 115, 88, 61, (269,108,0): 114, 87, 60, (269,109,0): 114, 87, 60, (269,110,0): 113, 86, 59, (269,111,0): 115, 85, 59, (269,112,0): 117, 83, 58, (269,113,0): 117, 81, 57, (269,114,0): 116, 80, 56, (269,115,0): 114, 78, 54, (269,116,0): 112, 76, 52, (269,117,0): 110, 74, 50, (269,118,0): 109, 73, 49, (269,119,0): 108, 72, 48, (269,120,0): 110, 74, 50, (269,121,0): 110, 74, 50, (269,122,0): 110, 74, 50, (269,123,0): 111, 75, 51, (269,124,0): 111, 75, 51, (269,125,0): 112, 76, 52, (269,126,0): 112, 76, 52, (269,127,0): 112, 76, 52, (269,128,0): 114, 77, 51, (269,129,0): 113, 76, 50, (269,130,0): 113, 76, 50, (269,131,0): 112, 75, 49, (269,132,0): 112, 75, 49, (269,133,0): 111, 74, 48, (269,134,0): 111, 74, 48, (269,135,0): 111, 74, 48, (269,136,0): 108, 71, 45, (269,137,0): 108, 71, 45, (269,138,0): 107, 70, 44, (269,139,0): 107, 70, 44, (269,140,0): 107, 70, 44, (269,141,0): 108, 71, 45, (269,142,0): 109, 72, 46, (269,143,0): 110, 73, 46, (269,144,0): 112, 77, 47, (269,145,0): 111, 76, 46, (269,146,0): 110, 75, 45, (269,147,0): 108, 73, 43, (269,148,0): 106, 71, 41, (269,149,0): 105, 70, 40, (269,150,0): 103, 68, 40, (269,151,0): 102, 67, 39, (269,152,0): 100, 64, 38, (269,153,0): 99, 63, 37, (269,154,0): 97, 61, 37, (269,155,0): 96, 60, 36, (269,156,0): 95, 59, 35, (269,157,0): 94, 58, 34, (269,158,0): 95, 59, 35, (269,159,0): 94, 60, 35, (269,160,0): 88, 60, 36, (269,161,0): 87, 61, 36, (269,162,0): 87, 61, 36, (269,163,0): 89, 63, 36, (269,164,0): 95, 65, 37, (269,165,0): 100, 71, 39, (269,166,0): 106, 76, 40, (269,167,0): 111, 79, 40, (269,168,0): 123, 90, 49, (269,169,0): 127, 93, 47, (269,170,0): 136, 100, 52, (269,171,0): 143, 107, 55, (269,172,0): 154, 114, 62, (269,173,0): 160, 121, 66, (269,174,0): 164, 125, 68, (269,175,0): 168, 125, 70, (269,176,0): 171, 123, 74, (269,177,0): 171, 120, 73, (269,178,0): 168, 117, 70, (269,179,0): 165, 114, 67, (269,180,0): 162, 114, 68, (269,181,0): 158, 111, 67, (269,182,0): 153, 108, 66, (269,183,0): 149, 106, 63, (269,184,0): 136, 94, 52, (269,185,0): 130, 91, 50, (269,186,0): 123, 83, 47, (269,187,0): 116, 78, 41, (269,188,0): 111, 73, 37, (269,189,0): 107, 71, 35, (269,190,0): 106, 70, 36, (269,191,0): 105, 71, 36, (269,192,0): 99, 66, 31, (269,193,0): 102, 72, 34, (269,194,0): 111, 79, 40, (269,195,0): 120, 88, 47, (269,196,0): 129, 96, 51, (269,197,0): 139, 107, 56, (269,198,0): 150, 118, 61, (269,199,0): 157, 126, 62, (269,200,0): 178, 145, 76, (269,201,0): 184, 152, 77, (269,202,0): 194, 161, 80, (269,203,0): 199, 167, 80, (269,204,0): 203, 170, 77, (269,205,0): 204, 171, 74, (269,206,0): 205, 173, 74, (269,207,0): 204, 175, 73, (269,208,0): 213, 186, 83, (269,209,0): 216, 191, 88, (269,210,0): 219, 194, 91, (269,211,0): 219, 194, 91, (269,212,0): 217, 192, 91, (269,213,0): 217, 192, 91, (269,214,0): 221, 197, 97, (269,215,0): 226, 202, 102, (269,216,0): 226, 204, 105, (269,217,0): 225, 202, 106, (269,218,0): 223, 203, 106, (269,219,0): 223, 203, 108, (269,220,0): 223, 203, 108, (269,221,0): 224, 203, 110, (269,222,0): 225, 204, 111, (269,223,0): 226, 206, 109, (269,224,0): 232, 211, 104, (269,225,0): 235, 213, 101, (269,226,0): 238, 216, 104, (269,227,0): 241, 218, 104, (269,228,0): 244, 221, 105, (269,229,0): 245, 223, 104, (269,230,0): 248, 223, 105, (269,231,0): 248, 223, 105, (269,232,0): 241, 214, 97, (269,233,0): 240, 210, 96, (269,234,0): 236, 204, 95, (269,235,0): 233, 200, 93, (269,236,0): 232, 197, 93, (269,237,0): 229, 194, 92, (269,238,0): 224, 189, 89, (269,239,0): 216, 187, 87, (269,240,0): 222, 200, 98, (269,241,0): 221, 204, 100, (269,242,0): 222, 205, 101, (269,243,0): 222, 205, 101, (269,244,0): 221, 204, 100, (269,245,0): 224, 207, 101, (269,246,0): 229, 212, 106, (269,247,0): 234, 217, 109, (269,248,0): 235, 218, 110, (269,249,0): 235, 218, 110, (269,250,0): 237, 221, 110, (269,251,0): 241, 225, 114, (269,252,0): 246, 230, 119, (269,253,0): 249, 233, 122, (269,254,0): 249, 233, 122, (269,255,0): 248, 232, 119, (269,256,0): 251, 236, 119, (269,257,0): 250, 235, 116, (269,258,0): 251, 236, 117, (269,259,0): 251, 239, 119, (269,260,0): 254, 242, 122, (269,261,0): 253, 243, 122, (269,262,0): 251, 242, 123, (269,263,0): 247, 240, 123, (269,264,0): 247, 240, 124, (269,265,0): 244, 238, 126, (269,266,0): 239, 235, 127, (269,267,0): 236, 233, 128, (269,268,0): 232, 228, 128, (269,269,0): 224, 222, 122, (269,270,0): 215, 212, 115, (269,271,0): 206, 205, 112, (269,272,0): 198, 198, 108, (269,273,0): 193, 198, 108, (269,274,0): 192, 198, 110, (269,275,0): 190, 200, 113, (269,276,0): 190, 202, 116, (269,277,0): 189, 203, 118, (269,278,0): 186, 199, 117, (269,279,0): 184, 195, 116, (269,280,0): 176, 184, 107, (269,281,0): 176, 182, 108, (269,282,0): 175, 181, 109, (269,283,0): 174, 181, 111, (269,284,0): 173, 183, 114, (269,285,0): 175, 186, 117, (269,286,0): 175, 190, 121, (269,287,0): 176, 193, 123, (269,288,0): 173, 190, 120, (269,289,0): 175, 195, 126, (269,290,0): 177, 197, 128, (269,291,0): 176, 196, 127, (269,292,0): 177, 196, 130, (269,293,0): 178, 197, 131, (269,294,0): 174, 188, 126, (269,295,0): 167, 177, 117, (269,296,0): 157, 162, 106, (269,297,0): 152, 155, 100, (269,298,0): 146, 146, 94, (269,299,0): 139, 141, 91, (269,300,0): 137, 144, 92, (269,301,0): 136, 146, 94, (269,302,0): 133, 147, 94, (269,303,0): 132, 146, 95, (269,304,0): 123, 136, 90, (269,305,0): 123, 134, 91, (269,306,0): 124, 133, 90, (269,307,0): 125, 132, 91, (269,308,0): 128, 132, 95, (269,309,0): 135, 136, 102, (269,310,0): 142, 139, 106, (269,311,0): 146, 143, 112, (269,312,0): 150, 145, 116, (269,313,0): 161, 155, 129, (269,314,0): 174, 170, 145, (269,315,0): 184, 182, 159, (269,316,0): 199, 197, 176, (269,317,0): 211, 210, 189, (269,318,0): 211, 213, 192, (269,319,0): 205, 208, 189, (269,320,0): 204, 210, 196, (269,321,0): 193, 199, 187, (269,322,0): 178, 180, 167, (269,323,0): 161, 159, 146, (269,324,0): 147, 141, 125, (269,325,0): 134, 129, 110, (269,326,0): 124, 119, 99, (269,327,0): 117, 115, 92, (269,328,0): 113, 116, 89, (269,329,0): 113, 119, 91, (269,330,0): 111, 121, 94, (269,331,0): 107, 120, 94, (269,332,0): 103, 116, 90, (269,333,0): 101, 113, 89, (269,334,0): 101, 113, 89, (269,335,0): 105, 113, 90, (269,336,0): 111, 114, 93, (269,337,0): 113, 112, 92, (269,338,0): 110, 109, 89, (269,339,0): 104, 101, 82, (269,340,0): 96, 93, 76, (269,341,0): 90, 84, 68, (269,342,0): 86, 79, 63, (269,343,0): 85, 76, 61, (269,344,0): 81, 69, 57, (269,345,0): 80, 66, 55, (269,346,0): 79, 62, 54, (269,347,0): 79, 60, 53, (269,348,0): 79, 60, 53, (269,349,0): 82, 62, 55, (269,350,0): 86, 65, 60, (269,351,0): 87, 68, 62, (269,352,0): 88, 73, 68, (269,353,0): 85, 74, 68, (269,354,0): 87, 77, 68, (269,355,0): 90, 80, 71, (269,356,0): 93, 83, 74, (269,357,0): 97, 88, 79, (269,358,0): 100, 91, 82, (269,359,0): 99, 95, 84, (269,360,0): 96, 96, 86, (269,361,0): 100, 103, 94, (269,362,0): 103, 110, 102, (269,363,0): 105, 116, 110, (269,364,0): 107, 122, 117, (269,365,0): 113, 132, 128, (269,366,0): 122, 142, 141, (269,367,0): 129, 151, 149, (269,368,0): 131, 151, 150, (269,369,0): 130, 148, 148, (269,370,0): 125, 143, 143, (269,371,0): 119, 137, 137, (269,372,0): 114, 132, 134, (269,373,0): 110, 128, 132, (269,374,0): 109, 124, 131, (269,375,0): 108, 123, 130, (269,376,0): 116, 130, 139, (269,377,0): 113, 127, 138, (269,378,0): 109, 123, 136, (269,379,0): 108, 122, 135, (269,380,0): 110, 122, 138, (269,381,0): 112, 124, 140, (269,382,0): 113, 125, 141, (269,383,0): 112, 123, 141, (269,384,0): 107, 120, 139, (269,385,0): 107, 120, 139, (269,386,0): 109, 116, 135, (269,387,0): 108, 111, 130, (269,388,0): 106, 105, 121, (269,389,0): 102, 100, 114, (269,390,0): 99, 96, 107, (269,391,0): 97, 94, 103, (269,392,0): 96, 93, 100, (269,393,0): 98, 95, 102, (269,394,0): 101, 98, 105, (269,395,0): 105, 100, 107, (269,396,0): 108, 98, 109, (269,397,0): 106, 94, 106, (269,398,0): 106, 89, 105, (269,399,0): 104, 88, 101, (269,400,0): 97, 85, 95, (269,401,0): 96, 89, 96, (269,402,0): 98, 91, 98, (269,403,0): 97, 92, 98, (269,404,0): 92, 90, 95, (269,405,0): 89, 88, 93, (269,406,0): 88, 89, 94, (269,407,0): 87, 92, 98, (269,408,0): 92, 99, 107, (269,409,0): 94, 102, 113, (269,410,0): 98, 108, 120, (269,411,0): 100, 113, 129, (269,412,0): 103, 116, 135, (269,413,0): 103, 118, 141, (269,414,0): 103, 119, 144, (269,415,0): 104, 119, 142, (269,416,0): 110, 118, 137, (269,417,0): 110, 117, 133, (269,418,0): 109, 116, 134, (269,419,0): 109, 116, 134, (269,420,0): 110, 117, 135, (269,421,0): 113, 120, 138, (269,422,0): 115, 122, 141, (269,423,0): 117, 124, 143, (269,424,0): 116, 122, 144, (269,425,0): 118, 124, 146, (269,426,0): 121, 127, 149, (269,427,0): 125, 131, 153, (269,428,0): 129, 135, 159, (269,429,0): 132, 138, 162, (269,430,0): 135, 141, 165, (269,431,0): 136, 142, 168, (269,432,0): 137, 142, 171, (269,433,0): 136, 141, 170, (269,434,0): 136, 141, 170, (269,435,0): 138, 142, 169, (269,436,0): 141, 141, 165, (269,437,0): 140, 138, 160, (269,438,0): 135, 130, 152, (269,439,0): 132, 125, 143, (269,440,0): 127, 116, 132, (269,441,0): 124, 112, 126, (269,442,0): 123, 107, 118, (269,443,0): 123, 106, 114, (269,444,0): 129, 108, 115, (269,445,0): 132, 109, 115, (269,446,0): 133, 110, 116, (269,447,0): 133, 110, 116, (269,448,0): 123, 104, 110, (269,449,0): 120, 103, 109, (269,450,0): 118, 103, 110, (269,451,0): 115, 102, 109, (269,452,0): 115, 104, 112, (269,453,0): 116, 106, 114, (269,454,0): 117, 109, 120, (269,455,0): 116, 113, 122, (269,456,0): 121, 121, 133, (269,457,0): 121, 125, 136, (269,458,0): 123, 129, 143, (269,459,0): 123, 131, 144, (269,460,0): 121, 130, 145, (269,461,0): 119, 131, 145, (269,462,0): 120, 133, 149, (269,463,0): 123, 134, 152, (269,464,0): 125, 131, 155, (269,465,0): 125, 129, 156, (269,466,0): 124, 126, 151, (269,467,0): 120, 122, 143, (269,468,0): 115, 116, 136, (269,469,0): 109, 110, 128, (269,470,0): 106, 105, 121, (269,471,0): 103, 102, 116, (269,472,0): 106, 104, 117, (269,473,0): 109, 106, 117, (269,474,0): 113, 107, 119, (269,475,0): 115, 109, 121, (269,476,0): 115, 107, 122, (269,477,0): 114, 106, 121, (269,478,0): 113, 102, 118, (269,479,0): 112, 101, 115, (269,480,0): 108, 98, 109, (269,481,0): 106, 96, 105, (269,482,0): 100, 93, 101, (269,483,0): 97, 90, 98, (269,484,0): 93, 88, 95, (269,485,0): 93, 88, 95, (269,486,0): 92, 89, 96, (269,487,0): 91, 90, 96, (269,488,0): 91, 92, 97, (269,489,0): 94, 95, 100, (269,490,0): 97, 100, 105, (269,491,0): 101, 104, 109, (269,492,0): 104, 109, 113, (269,493,0): 111, 116, 120, (269,494,0): 118, 126, 129, (269,495,0): 123, 132, 137, (269,496,0): 122, 137, 140, (269,497,0): 125, 143, 147, (269,498,0): 132, 149, 156, (269,499,0): 136, 153, 161, (269,500,0): 137, 154, 164, (269,501,0): 138, 154, 167, (269,502,0): 139, 157, 171, (269,503,0): 141, 158, 174, (269,504,0): 143, 160, 176, (269,505,0): 143, 160, 176, (269,506,0): 143, 161, 175, (269,507,0): 144, 162, 174, (269,508,0): 145, 165, 174, (269,509,0): 147, 167, 174, (269,510,0): 149, 169, 176, (269,511,0): 151, 169, 179, (269,512,0): 144, 159, 180, (269,513,0): 146, 162, 187, (269,514,0): 146, 166, 190, (269,515,0): 145, 170, 192, (269,516,0): 144, 170, 193, (269,517,0): 144, 172, 194, (269,518,0): 147, 171, 195, (269,519,0): 150, 172, 195, (269,520,0): 155, 173, 197, (269,521,0): 154, 169, 190, (269,522,0): 151, 162, 184, (269,523,0): 146, 154, 173, (269,524,0): 140, 147, 165, (269,525,0): 133, 141, 154, (269,526,0): 127, 137, 149, (269,527,0): 122, 135, 144, (269,528,0): 119, 131, 143, (269,529,0): 117, 131, 142, (269,530,0): 115, 129, 138, (269,531,0): 113, 127, 136, (269,532,0): 110, 125, 132, (269,533,0): 108, 123, 128, (269,534,0): 107, 121, 124, (269,535,0): 106, 120, 123, (269,536,0): 104, 115, 119, (269,537,0): 105, 116, 120, (269,538,0): 106, 115, 122, (269,539,0): 106, 115, 124, (269,540,0): 105, 113, 124, (269,541,0): 103, 111, 122, (269,542,0): 101, 109, 122, (269,543,0): 101, 107, 119, (269,544,0): 105, 108, 117, (269,545,0): 106, 106, 114, (269,546,0): 106, 105, 113, (269,547,0): 105, 104, 112, (269,548,0): 105, 102, 111, (269,549,0): 104, 101, 110, (269,550,0): 103, 100, 111, (269,551,0): 103, 100, 111, (269,552,0): 99, 97, 108, (269,553,0): 99, 99, 109, (269,554,0): 98, 101, 110, (269,555,0): 99, 103, 112, (269,556,0): 99, 106, 116, (269,557,0): 98, 108, 117, (269,558,0): 98, 111, 119, (269,559,0): 99, 112, 120, (269,560,0): 101, 110, 117, (269,561,0): 101, 110, 117, (269,562,0): 101, 110, 117, (269,563,0): 101, 110, 117, (269,564,0): 101, 110, 117, (269,565,0): 101, 110, 117, (269,566,0): 100, 110, 119, (269,567,0): 100, 110, 119, (269,568,0): 98, 111, 120, (269,569,0): 97, 110, 119, (269,570,0): 95, 109, 120, (269,571,0): 94, 108, 119, (269,572,0): 95, 109, 120, (269,573,0): 98, 112, 123, (269,574,0): 101, 115, 126, (269,575,0): 103, 116, 132, (269,576,0): 108, 120, 142, (269,577,0): 108, 120, 144, (269,578,0): 109, 121, 145, (269,579,0): 110, 122, 146, (269,580,0): 109, 121, 143, (269,581,0): 108, 120, 142, (269,582,0): 107, 120, 139, (269,583,0): 106, 119, 138, (269,584,0): 103, 116, 133, (269,585,0): 105, 118, 135, (269,586,0): 106, 119, 135, (269,587,0): 105, 118, 134, (269,588,0): 102, 116, 129, (269,589,0): 100, 114, 127, (269,590,0): 100, 114, 127, (269,591,0): 101, 113, 127, (269,592,0): 101, 108, 126, (269,593,0): 100, 105, 124, (269,594,0): 100, 103, 120, (269,595,0): 99, 101, 116, (269,596,0): 100, 99, 115, (269,597,0): 96, 95, 109, (269,598,0): 90, 88, 101, (269,599,0): 85, 83, 96, (270,0,0): 64, 48, 49, (270,1,0): 65, 49, 50, (270,2,0): 65, 49, 50, (270,3,0): 66, 50, 51, (270,4,0): 65, 49, 52, (270,5,0): 64, 48, 51, (270,6,0): 62, 46, 49, (270,7,0): 61, 45, 48, (270,8,0): 58, 41, 47, (270,9,0): 58, 41, 47, (270,10,0): 57, 40, 48, (270,11,0): 57, 40, 48, (270,12,0): 56, 39, 47, (270,13,0): 56, 39, 47, (270,14,0): 55, 38, 48, (270,15,0): 55, 38, 48, (270,16,0): 57, 40, 50, (270,17,0): 57, 40, 50, (270,18,0): 59, 42, 50, (270,19,0): 61, 44, 52, (270,20,0): 65, 45, 54, (270,21,0): 67, 48, 54, (270,22,0): 69, 50, 54, (270,23,0): 70, 51, 55, (270,24,0): 75, 55, 57, (270,25,0): 75, 55, 56, (270,26,0): 77, 56, 55, (270,27,0): 77, 56, 55, (270,28,0): 76, 55, 52, (270,29,0): 75, 54, 51, (270,30,0): 75, 51, 47, (270,31,0): 72, 51, 48, (270,32,0): 73, 55, 55, (270,33,0): 71, 55, 56, (270,34,0): 70, 54, 55, (270,35,0): 70, 54, 55, (270,36,0): 69, 53, 54, (270,37,0): 69, 53, 54, (270,38,0): 71, 52, 54, (270,39,0): 70, 51, 53, (270,40,0): 70, 50, 52, (270,41,0): 70, 50, 52, (270,42,0): 72, 50, 53, (270,43,0): 73, 51, 54, (270,44,0): 74, 52, 55, (270,45,0): 75, 53, 56, (270,46,0): 76, 54, 57, (270,47,0): 76, 54, 57, (270,48,0): 78, 56, 58, (270,49,0): 79, 57, 59, (270,50,0): 80, 59, 58, (270,51,0): 81, 60, 59, (270,52,0): 82, 61, 58, (270,53,0): 83, 62, 57, (270,54,0): 84, 63, 58, (270,55,0): 84, 64, 55, (270,56,0): 87, 67, 58, (270,57,0): 88, 69, 55, (270,58,0): 89, 70, 56, (270,59,0): 91, 72, 57, (270,60,0): 92, 73, 56, (270,61,0): 94, 76, 56, (270,62,0): 95, 77, 57, (270,63,0): 98, 77, 56, (270,64,0): 103, 78, 58, (270,65,0): 104, 77, 56, (270,66,0): 105, 78, 57, (270,67,0): 106, 79, 58, (270,68,0): 106, 79, 58, (270,69,0): 105, 78, 57, (270,70,0): 104, 78, 55, (270,71,0): 104, 78, 55, (270,72,0): 107, 81, 56, (270,73,0): 107, 81, 56, (270,74,0): 108, 82, 55, (270,75,0): 109, 83, 56, (270,76,0): 110, 84, 57, (270,77,0): 111, 85, 58, (270,78,0): 112, 86, 59, (270,79,0): 113, 86, 59, (270,80,0): 113, 83, 55, (270,81,0): 114, 83, 54, (270,82,0): 114, 83, 54, (270,83,0): 115, 84, 55, (270,84,0): 115, 84, 55, (270,85,0): 116, 85, 56, (270,86,0): 116, 85, 56, (270,87,0): 117, 86, 57, (270,88,0): 117, 86, 57, (270,89,0): 117, 86, 57, (270,90,0): 117, 86, 57, (270,91,0): 117, 86, 57, (270,92,0): 117, 86, 57, (270,93,0): 117, 86, 57, (270,94,0): 117, 86, 57, (270,95,0): 116, 87, 57, (270,96,0): 116, 87, 55, (270,97,0): 114, 88, 53, (270,98,0): 114, 88, 55, (270,99,0): 114, 88, 55, (270,100,0): 114, 88, 55, (270,101,0): 114, 88, 55, (270,102,0): 114, 87, 57, (270,103,0): 114, 87, 57, (270,104,0): 116, 89, 60, (270,105,0): 115, 88, 59, (270,106,0): 115, 88, 59, (270,107,0): 115, 88, 59, (270,108,0): 114, 87, 60, (270,109,0): 114, 87, 60, (270,110,0): 113, 86, 59, (270,111,0): 115, 85, 59, (270,112,0): 115, 81, 56, (270,113,0): 116, 80, 56, (270,114,0): 115, 79, 55, (270,115,0): 113, 77, 53, (270,116,0): 112, 76, 52, (270,117,0): 111, 75, 51, (270,118,0): 110, 74, 50, (270,119,0): 109, 73, 49, (270,120,0): 110, 74, 50, (270,121,0): 110, 74, 50, (270,122,0): 110, 74, 50, (270,123,0): 111, 75, 51, (270,124,0): 111, 75, 51, (270,125,0): 112, 76, 52, (270,126,0): 112, 76, 52, (270,127,0): 112, 76, 52, (270,128,0): 115, 78, 52, (270,129,0): 115, 78, 51, (270,130,0): 115, 78, 51, (270,131,0): 114, 77, 50, (270,132,0): 113, 76, 49, (270,133,0): 113, 76, 49, (270,134,0): 113, 76, 49, (270,135,0): 112, 75, 48, (270,136,0): 114, 77, 50, (270,137,0): 113, 76, 49, (270,138,0): 111, 74, 47, (270,139,0): 110, 73, 46, (270,140,0): 109, 72, 45, (270,141,0): 110, 73, 46, (270,142,0): 111, 74, 47, (270,143,0): 112, 75, 48, (270,144,0): 112, 77, 47, (270,145,0): 111, 76, 46, (270,146,0): 109, 74, 44, (270,147,0): 108, 73, 43, (270,148,0): 106, 71, 41, (270,149,0): 105, 70, 40, (270,150,0): 104, 69, 41, (270,151,0): 104, 69, 41, (270,152,0): 103, 67, 41, (270,153,0): 101, 65, 39, (270,154,0): 100, 64, 40, (270,155,0): 98, 62, 38, (270,156,0): 97, 61, 37, (270,157,0): 96, 60, 36, (270,158,0): 97, 61, 37, (270,159,0): 96, 62, 37, (270,160,0): 93, 65, 41, (270,161,0): 90, 66, 40, (270,162,0): 92, 66, 41, (270,163,0): 93, 68, 38, (270,164,0): 100, 71, 41, (270,165,0): 104, 75, 41, (270,166,0): 110, 80, 42, (270,167,0): 114, 82, 41, (270,168,0): 128, 95, 52, (270,169,0): 133, 99, 51, (270,170,0): 141, 105, 55, (270,171,0): 149, 114, 60, (270,172,0): 159, 120, 63, (270,173,0): 164, 125, 66, (270,174,0): 169, 129, 68, (270,175,0): 172, 130, 72, (270,176,0): 174, 124, 73, (270,177,0): 173, 121, 73, (270,178,0): 170, 118, 70, (270,179,0): 168, 117, 70, (270,180,0): 165, 117, 71, (270,181,0): 160, 113, 67, (270,182,0): 152, 108, 63, (270,183,0): 146, 103, 60, (270,184,0): 130, 88, 46, (270,185,0): 126, 87, 46, (270,186,0): 119, 84, 46, (270,187,0): 113, 79, 41, (270,188,0): 110, 76, 39, (270,189,0): 106, 74, 36, (270,190,0): 105, 72, 37, (270,191,0): 105, 73, 35, (270,192,0): 103, 73, 35, (270,193,0): 109, 80, 38, (270,194,0): 119, 90, 46, (270,195,0): 129, 101, 53, (270,196,0): 141, 111, 59, (270,197,0): 152, 123, 67, (270,198,0): 165, 135, 73, (270,199,0): 173, 142, 75, (270,200,0): 187, 155, 82, (270,201,0): 192, 161, 81, (270,202,0): 200, 168, 83, (270,203,0): 205, 174, 84, (270,204,0): 208, 175, 80, (270,205,0): 207, 174, 77, (270,206,0): 209, 175, 77, (270,207,0): 209, 177, 78, (270,208,0): 217, 187, 89, (270,209,0): 220, 192, 95, (270,210,0): 220, 194, 97, (270,211,0): 219, 193, 96, (270,212,0): 215, 189, 94, (270,213,0): 216, 190, 95, (270,214,0): 222, 198, 102, (270,215,0): 228, 204, 108, (270,216,0): 223, 200, 106, (270,217,0): 223, 200, 106, (270,218,0): 223, 200, 106, (270,219,0): 223, 200, 107, (270,220,0): 223, 202, 109, (270,221,0): 225, 204, 113, (270,222,0): 228, 207, 116, (270,223,0): 231, 208, 112, (270,224,0): 239, 217, 108, (270,225,0): 242, 219, 105, (270,226,0): 245, 222, 108, (270,227,0): 250, 225, 109, (270,228,0): 252, 227, 109, (270,229,0): 253, 228, 109, (270,230,0): 255, 229, 108, (270,231,0): 254, 228, 107, (270,232,0): 255, 229, 111, (270,233,0): 254, 225, 107, (270,234,0): 251, 219, 106, (270,235,0): 249, 217, 106, (270,236,0): 247, 214, 107, (270,237,0): 243, 210, 105, (270,238,0): 237, 204, 101, (270,239,0): 230, 201, 97, (270,240,0): 230, 209, 102, (270,241,0): 225, 211, 102, (270,242,0): 225, 212, 100, (270,243,0): 224, 211, 99, (270,244,0): 223, 210, 98, (270,245,0): 225, 212, 100, (270,246,0): 230, 217, 105, (270,247,0): 234, 221, 107, (270,248,0): 234, 221, 107, (270,249,0): 234, 221, 106, (270,250,0): 237, 224, 109, (270,251,0): 243, 230, 115, (270,252,0): 250, 238, 120, (270,253,0): 255, 243, 125, (270,254,0): 255, 243, 125, (270,255,0): 254, 242, 124, (270,256,0): 255, 244, 124, (270,257,0): 254, 242, 120, (270,258,0): 254, 242, 120, (270,259,0): 255, 245, 122, (270,260,0): 255, 247, 124, (270,261,0): 255, 248, 127, (270,262,0): 254, 245, 126, (270,263,0): 249, 242, 125, (270,264,0): 250, 243, 127, (270,265,0): 247, 241, 129, (270,266,0): 244, 238, 128, (270,267,0): 239, 235, 128, (270,268,0): 235, 230, 128, (270,269,0): 226, 222, 123, (270,270,0): 217, 213, 116, (270,271,0): 209, 206, 113, (270,272,0): 200, 200, 112, (270,273,0): 195, 199, 112, (270,274,0): 191, 199, 113, (270,275,0): 191, 201, 114, (270,276,0): 191, 203, 117, (270,277,0): 189, 203, 118, (270,278,0): 186, 199, 117, (270,279,0): 184, 195, 116, (270,280,0): 179, 187, 110, (270,281,0): 179, 185, 111, (270,282,0): 178, 184, 112, (270,283,0): 176, 183, 113, (270,284,0): 175, 185, 116, (270,285,0): 176, 189, 120, (270,286,0): 177, 192, 125, (270,287,0): 178, 195, 127, (270,288,0): 168, 188, 119, (270,289,0): 173, 192, 126, (270,290,0): 175, 194, 128, (270,291,0): 173, 194, 127, (270,292,0): 175, 196, 131, (270,293,0): 177, 196, 132, (270,294,0): 173, 187, 126, (270,295,0): 166, 177, 117, (270,296,0): 154, 162, 105, (270,297,0): 151, 156, 100, (270,298,0): 146, 149, 96, (270,299,0): 141, 146, 92, (270,300,0): 138, 147, 92, (270,301,0): 135, 148, 94, (270,302,0): 131, 148, 93, (270,303,0): 128, 147, 92, (270,304,0): 124, 142, 92, (270,305,0): 123, 139, 92, (270,306,0): 123, 136, 90, (270,307,0): 125, 134, 91, (270,308,0): 129, 134, 94, (270,309,0): 136, 136, 100, (270,310,0): 144, 139, 107, (270,311,0): 150, 141, 112, (270,312,0): 155, 143, 117, (270,313,0): 168, 153, 130, (270,314,0): 183, 168, 147, (270,315,0): 197, 182, 161, (270,316,0): 215, 200, 181, (270,317,0): 228, 215, 196, (270,318,0): 230, 217, 200, (270,319,0): 222, 213, 198, (270,320,0): 212, 210, 198, (270,321,0): 201, 201, 191, (270,322,0): 187, 183, 172, (270,323,0): 168, 162, 150, (270,324,0): 149, 142, 126, (270,325,0): 134, 127, 109, (270,326,0): 125, 120, 100, (270,327,0): 120, 118, 95, (270,328,0): 118, 122, 95, (270,329,0): 117, 126, 97, (270,330,0): 116, 129, 101, (270,331,0): 113, 127, 101, (270,332,0): 109, 123, 98, (270,333,0): 106, 120, 97, (270,334,0): 105, 119, 96, (270,335,0): 108, 117, 96, (270,336,0): 108, 113, 91, (270,337,0): 111, 113, 92, (270,338,0): 110, 112, 91, (270,339,0): 107, 106, 86, (270,340,0): 99, 96, 79, (270,341,0): 93, 87, 71, (270,342,0): 90, 83, 67, (270,343,0): 90, 81, 66, (270,344,0): 86, 74, 62, (270,345,0): 84, 70, 59, (270,346,0): 82, 65, 57, (270,347,0): 80, 61, 54, (270,348,0): 81, 61, 54, (270,349,0): 85, 62, 56, (270,350,0): 89, 65, 61, (270,351,0): 90, 69, 64, (270,352,0): 92, 77, 72, (270,353,0): 91, 78, 72, (270,354,0): 92, 79, 73, (270,355,0): 93, 80, 74, (270,356,0): 94, 84, 75, (270,357,0): 96, 87, 78, (270,358,0): 100, 91, 82, (270,359,0): 99, 95, 84, (270,360,0): 100, 100, 90, (270,361,0): 101, 104, 95, (270,362,0): 102, 109, 101, (270,363,0): 104, 115, 109, (270,364,0): 107, 124, 118, (270,365,0): 114, 133, 129, (270,366,0): 122, 142, 141, (270,367,0): 127, 149, 147, (270,368,0): 131, 151, 150, (270,369,0): 129, 149, 148, (270,370,0): 125, 143, 145, (270,371,0): 119, 137, 139, (270,372,0): 114, 132, 136, (270,373,0): 110, 128, 132, (270,374,0): 110, 125, 132, (270,375,0): 108, 123, 130, (270,376,0): 116, 130, 139, (270,377,0): 113, 127, 138, (270,378,0): 111, 123, 137, (270,379,0): 111, 123, 137, (270,380,0): 113, 125, 141, (270,381,0): 114, 126, 142, (270,382,0): 112, 123, 141, (270,383,0): 110, 121, 139, (270,384,0): 108, 119, 141, (270,385,0): 107, 118, 140, (270,386,0): 109, 114, 136, (270,387,0): 109, 110, 130, (270,388,0): 107, 104, 121, (270,389,0): 106, 100, 114, (270,390,0): 102, 94, 105, (270,391,0): 100, 93, 100, (270,392,0): 96, 90, 94, (270,393,0): 97, 92, 96, (270,394,0): 101, 96, 102, (270,395,0): 104, 97, 104, (270,396,0): 107, 95, 105, (270,397,0): 105, 92, 102, (270,398,0): 105, 87, 101, (270,399,0): 101, 85, 96, (270,400,0): 95, 84, 92, (270,401,0): 94, 88, 92, (270,402,0): 95, 89, 93, (270,403,0): 93, 88, 92, (270,404,0): 89, 87, 90, (270,405,0): 88, 87, 92, (270,406,0): 90, 91, 96, (270,407,0): 89, 94, 100, (270,408,0): 92, 99, 107, (270,409,0): 94, 102, 113, (270,410,0): 98, 108, 120, (270,411,0): 99, 112, 128, (270,412,0): 102, 115, 134, (270,413,0): 101, 116, 139, (270,414,0): 100, 116, 141, (270,415,0): 100, 115, 138, (270,416,0): 109, 117, 136, (270,417,0): 111, 117, 133, (270,418,0): 110, 116, 132, (270,419,0): 110, 116, 132, (270,420,0): 110, 115, 134, (270,421,0): 110, 115, 134, (270,422,0): 110, 115, 134, (270,423,0): 111, 116, 135, (270,424,0): 114, 119, 139, (270,425,0): 115, 120, 140, (270,426,0): 118, 123, 145, (270,427,0): 121, 126, 148, (270,428,0): 125, 130, 152, (270,429,0): 130, 135, 157, (270,430,0): 133, 137, 162, (270,431,0): 134, 140, 166, (270,432,0): 135, 140, 169, (270,433,0): 134, 139, 168, (270,434,0): 134, 138, 165, (270,435,0): 137, 139, 164, (270,436,0): 137, 137, 161, (270,437,0): 136, 133, 154, (270,438,0): 132, 124, 145, (270,439,0): 127, 118, 135, (270,440,0): 125, 113, 127, (270,441,0): 122, 108, 121, (270,442,0): 121, 104, 114, (270,443,0): 123, 103, 112, (270,444,0): 127, 104, 110, (270,445,0): 131, 106, 110, (270,446,0): 131, 106, 110, (270,447,0): 130, 105, 109, (270,448,0): 122, 101, 106, (270,449,0): 118, 101, 107, (270,450,0): 116, 101, 106, (270,451,0): 114, 101, 108, (270,452,0): 115, 104, 112, (270,453,0): 117, 107, 115, (270,454,0): 119, 111, 122, (270,455,0): 119, 116, 125, (270,456,0): 120, 120, 132, (270,457,0): 121, 125, 136, (270,458,0): 123, 129, 143, (270,459,0): 124, 132, 145, (270,460,0): 122, 131, 146, (270,461,0): 120, 132, 146, (270,462,0): 122, 135, 151, (270,463,0): 124, 137, 154, (270,464,0): 123, 129, 155, (270,465,0): 122, 126, 153, (270,466,0): 120, 124, 149, (270,467,0): 118, 120, 143, (270,468,0): 115, 116, 137, (270,469,0): 110, 111, 129, (270,470,0): 108, 107, 123, (270,471,0): 106, 105, 119, (270,472,0): 109, 107, 120, (270,473,0): 113, 109, 123, (270,474,0): 119, 113, 127, (270,475,0): 121, 115, 129, (270,476,0): 121, 113, 128, (270,477,0): 117, 109, 124, (270,478,0): 113, 102, 119, (270,479,0): 110, 99, 115, (270,480,0): 109, 98, 112, (270,481,0): 106, 96, 107, (270,482,0): 101, 93, 104, (270,483,0): 97, 89, 100, (270,484,0): 94, 88, 98, (270,485,0): 93, 87, 97, (270,486,0): 92, 89, 98, (270,487,0): 92, 91, 99, (270,488,0): 93, 93, 101, (270,489,0): 96, 96, 104, (270,490,0): 98, 101, 108, (270,491,0): 101, 104, 111, (270,492,0): 104, 109, 115, (270,493,0): 109, 116, 122, (270,494,0): 118, 125, 131, (270,495,0): 123, 132, 137, (270,496,0): 125, 140, 145, (270,497,0): 126, 145, 151, (270,498,0): 131, 150, 157, (270,499,0): 134, 152, 162, (270,500,0): 136, 154, 166, (270,501,0): 138, 156, 170, (270,502,0): 141, 158, 174, (270,503,0): 144, 161, 177, (270,504,0): 144, 161, 177, (270,505,0): 144, 161, 177, (270,506,0): 143, 161, 175, (270,507,0): 142, 160, 172, (270,508,0): 143, 162, 169, (270,509,0): 144, 163, 169, (270,510,0): 146, 165, 169, (270,511,0): 147, 166, 173, (270,512,0): 142, 157, 176, (270,513,0): 145, 161, 186, (270,514,0): 146, 166, 190, (270,515,0): 145, 170, 192, (270,516,0): 143, 169, 192, (270,517,0): 142, 170, 192, (270,518,0): 146, 170, 194, (270,519,0): 150, 172, 195, (270,520,0): 153, 171, 195, (270,521,0): 154, 169, 190, (270,522,0): 153, 164, 186, (270,523,0): 150, 158, 177, (270,524,0): 146, 153, 171, (270,525,0): 140, 148, 161, (270,526,0): 134, 144, 156, (270,527,0): 129, 142, 151, (270,528,0): 126, 138, 150, (270,529,0): 124, 138, 149, (270,530,0): 121, 135, 144, (270,531,0): 117, 131, 140, (270,532,0): 113, 128, 135, (270,533,0): 110, 125, 130, (270,534,0): 108, 122, 125, (270,535,0): 106, 120, 123, (270,536,0): 106, 117, 121, (270,537,0): 107, 118, 122, (270,538,0): 108, 117, 124, (270,539,0): 108, 117, 126, (270,540,0): 107, 115, 126, (270,541,0): 105, 113, 124, (270,542,0): 103, 111, 124, (270,543,0): 103, 109, 121, (270,544,0): 108, 111, 120, (270,545,0): 108, 109, 114, (270,546,0): 106, 105, 113, (270,547,0): 104, 103, 111, (270,548,0): 104, 101, 110, (270,549,0): 105, 102, 111, (270,550,0): 106, 103, 114, (270,551,0): 107, 104, 115, (270,552,0): 105, 103, 114, (270,553,0): 104, 104, 114, (270,554,0): 103, 105, 117, (270,555,0): 102, 109, 119, (270,556,0): 102, 111, 120, (270,557,0): 103, 113, 122, (270,558,0): 102, 115, 123, (270,559,0): 102, 115, 123, (270,560,0): 103, 112, 119, (270,561,0): 103, 112, 119, (270,562,0): 103, 112, 119, (270,563,0): 102, 111, 118, (270,564,0): 101, 112, 118, (270,565,0): 101, 112, 118, (270,566,0): 101, 111, 120, (270,567,0): 101, 111, 120, (270,568,0): 101, 114, 123, (270,569,0): 100, 113, 122, (270,570,0): 98, 112, 123, (270,571,0): 97, 111, 122, (270,572,0): 99, 113, 124, (270,573,0): 101, 115, 126, (270,574,0): 102, 119, 129, (270,575,0): 104, 120, 135, (270,576,0): 108, 120, 142, (270,577,0): 109, 121, 147, (270,578,0): 111, 123, 147, (270,579,0): 112, 124, 148, (270,580,0): 112, 124, 146, (270,581,0): 112, 124, 146, (270,582,0): 111, 124, 143, (270,583,0): 110, 123, 142, (270,584,0): 106, 119, 136, (270,585,0): 104, 117, 134, (270,586,0): 102, 115, 131, (270,587,0): 100, 114, 127, (270,588,0): 101, 115, 128, (270,589,0): 101, 115, 128, (270,590,0): 100, 114, 125, (270,591,0): 100, 112, 126, (270,592,0): 102, 107, 126, (270,593,0): 102, 105, 124, (270,594,0): 101, 102, 120, (270,595,0): 100, 102, 117, (270,596,0): 101, 100, 116, (270,597,0): 98, 96, 110, (270,598,0): 92, 88, 102, (270,599,0): 87, 83, 97, (271,0,0): 63, 48, 51, (271,1,0): 64, 49, 52, (271,2,0): 64, 49, 52, (271,3,0): 65, 50, 53, (271,4,0): 64, 49, 54, (271,5,0): 63, 48, 53, (271,6,0): 61, 46, 51, (271,7,0): 61, 44, 50, (271,8,0): 58, 41, 47, (271,9,0): 58, 41, 49, (271,10,0): 57, 40, 48, (271,11,0): 57, 40, 48, (271,12,0): 56, 39, 47, (271,13,0): 56, 39, 47, (271,14,0): 55, 38, 48, (271,15,0): 55, 38, 48, (271,16,0): 57, 39, 51, (271,17,0): 58, 40, 52, (271,18,0): 59, 42, 52, (271,19,0): 63, 43, 54, (271,20,0): 65, 45, 54, (271,21,0): 69, 48, 55, (271,22,0): 70, 49, 56, (271,23,0): 72, 49, 55, (271,24,0): 76, 54, 57, (271,25,0): 79, 54, 57, (271,26,0): 79, 54, 57, (271,27,0): 79, 55, 55, (271,28,0): 78, 54, 54, (271,29,0): 77, 53, 51, (271,30,0): 75, 51, 49, (271,31,0): 74, 50, 48, (271,32,0): 74, 54, 55, (271,33,0): 73, 54, 56, (271,34,0): 73, 54, 56, (271,35,0): 72, 53, 55, (271,36,0): 72, 53, 55, (271,37,0): 71, 52, 54, (271,38,0): 71, 52, 54, (271,39,0): 71, 51, 53, (271,40,0): 70, 50, 52, (271,41,0): 71, 51, 52, (271,42,0): 72, 50, 53, (271,43,0): 73, 51, 53, (271,44,0): 74, 52, 54, (271,45,0): 75, 53, 55, (271,46,0): 76, 54, 56, (271,47,0): 77, 55, 57, (271,48,0): 79, 58, 57, (271,49,0): 78, 58, 57, (271,50,0): 80, 59, 56, (271,51,0): 81, 60, 57, (271,52,0): 82, 61, 58, (271,53,0): 83, 62, 57, (271,54,0): 84, 64, 57, (271,55,0): 84, 64, 55, (271,56,0): 88, 68, 57, (271,57,0): 88, 69, 55, (271,58,0): 89, 70, 55, (271,59,0): 91, 72, 57, (271,60,0): 93, 74, 57, (271,61,0): 94, 76, 56, (271,62,0): 95, 77, 57, (271,63,0): 98, 77, 56, (271,64,0): 103, 78, 56, (271,65,0): 105, 78, 57, (271,66,0): 106, 79, 58, (271,67,0): 107, 80, 59, (271,68,0): 107, 80, 59, (271,69,0): 106, 80, 57, (271,70,0): 105, 79, 56, (271,71,0): 104, 78, 55, (271,72,0): 107, 81, 56, (271,73,0): 107, 81, 56, (271,74,0): 108, 82, 55, (271,75,0): 109, 83, 56, (271,76,0): 111, 84, 57, (271,77,0): 112, 85, 58, (271,78,0): 113, 86, 59, (271,79,0): 114, 87, 58, (271,80,0): 114, 83, 54, (271,81,0): 114, 83, 54, (271,82,0): 115, 84, 55, (271,83,0): 115, 84, 55, (271,84,0): 116, 85, 56, (271,85,0): 116, 85, 56, (271,86,0): 117, 86, 57, (271,87,0): 117, 86, 57, (271,88,0): 117, 86, 57, (271,89,0): 117, 86, 57, (271,90,0): 117, 86, 57, (271,91,0): 117, 86, 57, (271,92,0): 117, 86, 57, (271,93,0): 117, 86, 57, (271,94,0): 117, 86, 57, (271,95,0): 117, 86, 55, (271,96,0): 114, 88, 55, (271,97,0): 114, 88, 55, (271,98,0): 114, 88, 55, (271,99,0): 114, 87, 57, (271,100,0): 114, 87, 57, (271,101,0): 114, 87, 57, (271,102,0): 114, 87, 57, (271,103,0): 114, 87, 58, (271,104,0): 115, 88, 59, (271,105,0): 115, 88, 61, (271,106,0): 115, 88, 61, (271,107,0): 114, 87, 60, (271,108,0): 114, 87, 60, (271,109,0): 113, 85, 61, (271,110,0): 113, 85, 61, (271,111,0): 115, 85, 61, (271,112,0): 114, 79, 57, (271,113,0): 113, 78, 56, (271,114,0): 114, 78, 56, (271,115,0): 112, 78, 53, (271,116,0): 112, 76, 54, (271,117,0): 110, 76, 51, (271,118,0): 111, 75, 51, (271,119,0): 109, 75, 50, (271,120,0): 109, 73, 49, (271,121,0): 109, 75, 50, (271,122,0): 110, 74, 50, (271,123,0): 110, 76, 51, (271,124,0): 111, 75, 51, (271,125,0): 111, 77, 52, (271,126,0): 112, 76, 52, (271,127,0): 112, 76, 50, (271,128,0): 116, 79, 53, (271,129,0): 116, 79, 52, (271,130,0): 115, 78, 51, (271,131,0): 115, 78, 51, (271,132,0): 114, 77, 50, (271,133,0): 114, 77, 50, (271,134,0): 113, 76, 49, (271,135,0): 113, 76, 49, (271,136,0): 120, 83, 56, (271,137,0): 118, 81, 54, (271,138,0): 116, 79, 52, (271,139,0): 113, 76, 47, (271,140,0): 112, 75, 48, (271,141,0): 112, 75, 46, (271,142,0): 113, 76, 49, (271,143,0): 114, 77, 48, (271,144,0): 112, 77, 47, (271,145,0): 111, 76, 46, (271,146,0): 110, 75, 45, (271,147,0): 108, 73, 43, (271,148,0): 107, 72, 42, (271,149,0): 107, 72, 42, (271,150,0): 106, 71, 43, (271,151,0): 106, 71, 43, (271,152,0): 104, 68, 42, (271,153,0): 103, 67, 41, (271,154,0): 101, 65, 39, (271,155,0): 99, 63, 37, (271,156,0): 98, 62, 38, (271,157,0): 98, 62, 36, (271,158,0): 98, 62, 38, (271,159,0): 98, 64, 39, (271,160,0): 96, 69, 42, (271,161,0): 94, 68, 41, (271,162,0): 96, 69, 42, (271,163,0): 97, 70, 40, (271,164,0): 102, 73, 41, (271,165,0): 107, 77, 41, (271,166,0): 114, 82, 43, (271,167,0): 118, 85, 42, (271,168,0): 132, 98, 52, (271,169,0): 138, 102, 52, (271,170,0): 145, 108, 55, (271,171,0): 153, 116, 61, (271,172,0): 161, 122, 65, (271,173,0): 167, 127, 68, (271,174,0): 171, 129, 69, (271,175,0): 175, 130, 71, (271,176,0): 173, 124, 68, (271,177,0): 173, 122, 69, (271,178,0): 170, 120, 67, (271,179,0): 170, 120, 69, (271,180,0): 167, 119, 70, (271,181,0): 161, 115, 66, (271,182,0): 150, 108, 60, (271,183,0): 142, 101, 55, (271,184,0): 125, 86, 43, (271,185,0): 122, 85, 43, (271,186,0): 118, 83, 43, (271,187,0): 114, 80, 42, (271,188,0): 111, 77, 39, (271,189,0): 107, 75, 37, (271,190,0): 106, 74, 36, (271,191,0): 103, 74, 34, (271,192,0): 108, 79, 35, (271,193,0): 115, 87, 39, (271,194,0): 126, 98, 48, (271,195,0): 137, 110, 55, (271,196,0): 150, 121, 63, (271,197,0): 161, 133, 68, (271,198,0): 175, 146, 78, (271,199,0): 184, 154, 81, (271,200,0): 190, 159, 79, (271,201,0): 197, 165, 82, (271,202,0): 204, 172, 85, (271,203,0): 210, 176, 86, (271,204,0): 212, 179, 84, (271,205,0): 213, 179, 82, (271,206,0): 215, 181, 84, (271,207,0): 217, 183, 86, (271,208,0): 217, 187, 91, (271,209,0): 219, 190, 96, (271,210,0): 221, 192, 98, (271,211,0): 216, 190, 95, (271,212,0): 211, 185, 90, (271,213,0): 212, 186, 91, (271,214,0): 219, 194, 101, (271,215,0): 226, 201, 108, (271,216,0): 222, 199, 105, (271,217,0): 222, 199, 105, (271,218,0): 220, 200, 105, (271,219,0): 221, 201, 106, (271,220,0): 223, 202, 109, (271,221,0): 226, 207, 113, (271,222,0): 229, 210, 116, (271,223,0): 231, 213, 113, (271,224,0): 241, 223, 111, (271,225,0): 245, 226, 108, (271,226,0): 248, 229, 111, (271,227,0): 251, 232, 112, (271,228,0): 254, 233, 114, (271,229,0): 255, 235, 114, (271,230,0): 254, 234, 111, (271,231,0): 254, 234, 111, (271,232,0): 255, 239, 117, (271,233,0): 255, 236, 116, (271,234,0): 255, 231, 113, (271,235,0): 255, 230, 114, (271,236,0): 254, 228, 115, (271,237,0): 253, 227, 116, (271,238,0): 249, 223, 113, (271,239,0): 243, 221, 110, (271,240,0): 231, 215, 102, (271,241,0): 228, 217, 102, (271,242,0): 227, 216, 100, (271,243,0): 226, 213, 98, (271,244,0): 224, 211, 96, (271,245,0): 227, 212, 97, (271,246,0): 232, 217, 100, (271,247,0): 236, 221, 104, (271,248,0): 236, 221, 104, (271,249,0): 236, 221, 102, (271,250,0): 237, 225, 107, (271,251,0): 245, 233, 113, (271,252,0): 252, 242, 121, (271,253,0): 255, 248, 127, (271,254,0): 255, 249, 128, (271,255,0): 255, 249, 125, (271,256,0): 255, 250, 126, (271,257,0): 254, 248, 124, (271,258,0): 253, 247, 123, (271,259,0): 254, 248, 124, (271,260,0): 255, 251, 127, (271,261,0): 255, 251, 127, (271,262,0): 254, 248, 126, (271,263,0): 250, 244, 124, (271,264,0): 251, 246, 129, (271,265,0): 248, 242, 128, (271,266,0): 245, 239, 129, (271,267,0): 242, 235, 128, (271,268,0): 236, 231, 127, (271,269,0): 227, 224, 121, (271,270,0): 218, 214, 115, (271,271,0): 210, 207, 112, (271,272,0): 201, 201, 111, (271,273,0): 196, 201, 111, (271,274,0): 192, 201, 112, (271,275,0): 192, 202, 113, (271,276,0): 191, 203, 117, (271,277,0): 189, 203, 116, (271,278,0): 186, 199, 117, (271,279,0): 182, 195, 115, (271,280,0): 180, 191, 113, (271,281,0): 181, 189, 114, (271,282,0): 180, 188, 115, (271,283,0): 177, 187, 116, (271,284,0): 177, 188, 119, (271,285,0): 178, 191, 121, (271,286,0): 179, 194, 125, (271,287,0): 180, 197, 127, (271,288,0): 166, 186, 115, (271,289,0): 170, 192, 120, (271,290,0): 172, 194, 122, (271,291,0): 170, 193, 123, (271,292,0): 173, 194, 127, (271,293,0): 175, 196, 131, (271,294,0): 169, 187, 125, (271,295,0): 163, 177, 118, (271,296,0): 151, 162, 106, (271,297,0): 149, 156, 102, (271,298,0): 144, 151, 99, (271,299,0): 141, 148, 96, (271,300,0): 138, 147, 94, (271,301,0): 134, 147, 94, (271,302,0): 131, 145, 92, (271,303,0): 128, 145, 93, (271,304,0): 130, 143, 97, (271,305,0): 127, 140, 94, (271,306,0): 125, 136, 93, (271,307,0): 126, 135, 92, (271,308,0): 129, 134, 94, (271,309,0): 135, 137, 100, (271,310,0): 143, 140, 107, (271,311,0): 148, 141, 112, (271,312,0): 162, 150, 124, (271,313,0): 176, 160, 137, (271,314,0): 191, 172, 155, (271,315,0): 206, 187, 172, (271,316,0): 225, 206, 192, (271,317,0): 242, 223, 209, (271,318,0): 247, 227, 216, (271,319,0): 240, 223, 213, (271,320,0): 222, 209, 200, (271,321,0): 211, 201, 192, (271,322,0): 195, 185, 175, (271,323,0): 172, 162, 150, (271,324,0): 150, 141, 126, (271,325,0): 133, 126, 108, (271,326,0): 123, 121, 100, (271,327,0): 119, 121, 99, (271,328,0): 119, 127, 103, (271,329,0): 119, 132, 106, (271,330,0): 119, 135, 109, (271,331,0): 116, 134, 110, (271,332,0): 112, 130, 108, (271,333,0): 109, 124, 105, (271,334,0): 107, 122, 103, (271,335,0): 109, 120, 103, (271,336,0): 104, 111, 93, (271,337,0): 108, 113, 93, (271,338,0): 110, 113, 94, (271,339,0): 106, 107, 89, (271,340,0): 100, 98, 83, (271,341,0): 93, 90, 75, (271,342,0): 92, 86, 72, (271,343,0): 92, 84, 71, (271,344,0): 89, 76, 67, (271,345,0): 87, 73, 64, (271,346,0): 84, 67, 59, (271,347,0): 81, 62, 55, (271,348,0): 81, 60, 55, (271,349,0): 86, 62, 58, (271,350,0): 89, 65, 61, (271,351,0): 90, 69, 64, (271,352,0): 95, 80, 75, (271,353,0): 93, 80, 74, (271,354,0): 93, 80, 74, (271,355,0): 92, 81, 75, (271,356,0): 94, 83, 77, (271,357,0): 96, 87, 78, (271,358,0): 99, 92, 82, (271,359,0): 99, 95, 86, (271,360,0): 104, 104, 96, (271,361,0): 102, 105, 98, (271,362,0): 101, 108, 101, (271,363,0): 103, 114, 108, (271,364,0): 108, 123, 120, (271,365,0): 114, 133, 131, (271,366,0): 120, 140, 139, (271,367,0): 124, 144, 143, (271,368,0): 129, 149, 150, (271,369,0): 127, 147, 148, (271,370,0): 124, 142, 146, (271,371,0): 119, 137, 141, (271,372,0): 114, 131, 138, (271,373,0): 111, 128, 135, (271,374,0): 111, 125, 134, (271,375,0): 110, 124, 133, (271,376,0): 117, 131, 142, (271,377,0): 115, 127, 141, (271,378,0): 114, 126, 140, (271,379,0): 115, 127, 143, (271,380,0): 117, 129, 145, (271,381,0): 116, 128, 144, (271,382,0): 113, 121, 140, (271,383,0): 109, 117, 138, (271,384,0): 111, 119, 140, (271,385,0): 110, 116, 138, (271,386,0): 109, 114, 134, (271,387,0): 109, 110, 128, (271,388,0): 108, 106, 120, (271,389,0): 107, 101, 113, (271,390,0): 104, 96, 107, (271,391,0): 101, 94, 102, (271,392,0): 95, 88, 95, (271,393,0): 97, 90, 97, (271,394,0): 100, 93, 100, (271,395,0): 104, 94, 102, (271,396,0): 106, 93, 103, (271,397,0): 105, 89, 102, (271,398,0): 102, 84, 98, (271,399,0): 99, 83, 94, (271,400,0): 94, 83, 89, (271,401,0): 93, 87, 89, (271,402,0): 93, 87, 91, (271,403,0): 91, 86, 90, (271,404,0): 88, 86, 91, (271,405,0): 87, 88, 92, (271,406,0): 89, 92, 97, (271,407,0): 92, 96, 105, (271,408,0): 91, 98, 108, (271,409,0): 93, 101, 114, (271,410,0): 97, 106, 121, (271,411,0): 99, 111, 127, (271,412,0): 100, 113, 132, (271,413,0): 99, 114, 135, (271,414,0): 98, 113, 136, (271,415,0): 99, 111, 135, (271,416,0): 110, 117, 136, (271,417,0): 113, 116, 135, (271,418,0): 113, 116, 135, (271,419,0): 112, 115, 134, (271,420,0): 111, 114, 133, (271,421,0): 110, 113, 132, (271,422,0): 108, 110, 131, (271,423,0): 108, 110, 131, (271,424,0): 114, 116, 137, (271,425,0): 115, 117, 138, (271,426,0): 118, 120, 141, (271,427,0): 121, 123, 144, (271,428,0): 123, 128, 150, (271,429,0): 127, 132, 154, (271,430,0): 130, 135, 157, (271,431,0): 132, 137, 159, (271,432,0): 138, 138, 166, (271,433,0): 139, 136, 165, (271,434,0): 138, 134, 161, (271,435,0): 138, 132, 158, (271,436,0): 137, 132, 155, (271,437,0): 134, 125, 146, (271,438,0): 128, 116, 136, (271,439,0): 124, 110, 127, (271,440,0): 124, 108, 121, (271,441,0): 122, 105, 115, (271,442,0): 121, 101, 110, (271,443,0): 121, 100, 107, (271,444,0): 124, 102, 105, (271,445,0): 128, 103, 106, (271,446,0): 129, 103, 106, (271,447,0): 126, 101, 104, (271,448,0): 122, 101, 106, (271,449,0): 118, 101, 107, (271,450,0): 115, 100, 105, (271,451,0): 114, 102, 106, (271,452,0): 116, 103, 112, (271,453,0): 118, 108, 116, (271,454,0): 121, 113, 124, (271,455,0): 120, 117, 128, (271,456,0): 119, 119, 131, (271,457,0): 120, 124, 136, (271,458,0): 122, 128, 142, (271,459,0): 123, 130, 146, (271,460,0): 122, 131, 146, (271,461,0): 121, 133, 149, (271,462,0): 122, 135, 152, (271,463,0): 125, 136, 156, (271,464,0): 120, 126, 152, (271,465,0): 120, 124, 151, (271,466,0): 118, 122, 147, (271,467,0): 115, 120, 142, (271,468,0): 114, 116, 137, (271,469,0): 111, 112, 132, (271,470,0): 110, 109, 127, (271,471,0): 108, 107, 123, (271,472,0): 110, 108, 122, (271,473,0): 114, 112, 126, (271,474,0): 120, 116, 131, (271,475,0): 125, 118, 134, (271,476,0): 124, 115, 132, (271,477,0): 118, 109, 126, (271,478,0): 113, 102, 119, (271,479,0): 108, 97, 114, (271,480,0): 109, 98, 112, (271,481,0): 107, 97, 108, (271,482,0): 101, 93, 104, (271,483,0): 97, 89, 100, (271,484,0): 94, 88, 98, (271,485,0): 92, 89, 98, (271,486,0): 92, 89, 98, (271,487,0): 92, 91, 99, (271,488,0): 96, 96, 104, (271,489,0): 98, 98, 106, (271,490,0): 99, 102, 109, (271,491,0): 101, 106, 110, (271,492,0): 105, 110, 116, (271,493,0): 110, 118, 121, (271,494,0): 118, 125, 131, (271,495,0): 124, 133, 138, (271,496,0): 127, 142, 149, (271,497,0): 128, 145, 153, (271,498,0): 131, 148, 158, (271,499,0): 133, 149, 162, (271,500,0): 135, 151, 166, (271,501,0): 139, 155, 170, (271,502,0): 144, 160, 176, (271,503,0): 148, 165, 181, (271,504,0): 145, 162, 178, (271,505,0): 144, 162, 176, (271,506,0): 142, 160, 172, (271,507,0): 141, 159, 169, (271,508,0): 141, 160, 167, (271,509,0): 142, 161, 167, (271,510,0): 144, 163, 167, (271,511,0): 145, 164, 171, (271,512,0): 142, 158, 174, (271,513,0): 145, 162, 182, (271,514,0): 148, 166, 188, (271,515,0): 147, 169, 190, (271,516,0): 143, 168, 188, (271,517,0): 143, 168, 188, (271,518,0): 145, 170, 190, (271,519,0): 150, 172, 193, (271,520,0): 151, 169, 189, (271,521,0): 151, 168, 188, (271,522,0): 152, 165, 184, (271,523,0): 149, 162, 179, (271,524,0): 146, 158, 174, (271,525,0): 142, 154, 168, (271,526,0): 137, 151, 162, (271,527,0): 134, 148, 159, (271,528,0): 132, 144, 158, (271,529,0): 130, 142, 156, (271,530,0): 126, 138, 150, (271,531,0): 121, 133, 145, (271,532,0): 115, 129, 138, (271,533,0): 110, 125, 132, (271,534,0): 106, 121, 128, (271,535,0): 105, 118, 126, (271,536,0): 106, 119, 125, (271,537,0): 106, 119, 125, (271,538,0): 108, 119, 125, (271,539,0): 108, 119, 125, (271,540,0): 107, 117, 126, (271,541,0): 105, 115, 124, (271,542,0): 103, 113, 122, (271,543,0): 103, 112, 121, (271,544,0): 108, 112, 121, (271,545,0): 107, 110, 117, (271,546,0): 105, 105, 115, (271,547,0): 102, 102, 112, (271,548,0): 103, 102, 110, (271,549,0): 104, 103, 111, (271,550,0): 106, 104, 115, (271,551,0): 108, 106, 117, (271,552,0): 109, 107, 118, (271,553,0): 109, 109, 119, (271,554,0): 107, 111, 122, (271,555,0): 106, 113, 123, (271,556,0): 105, 115, 124, (271,557,0): 104, 117, 125, (271,558,0): 105, 118, 126, (271,559,0): 105, 118, 126, (271,560,0): 100, 113, 121, (271,561,0): 100, 113, 119, (271,562,0): 101, 111, 120, (271,563,0): 99, 112, 118, (271,564,0): 99, 112, 120, (271,565,0): 99, 112, 120, (271,566,0): 98, 111, 119, (271,567,0): 98, 111, 119, (271,568,0): 103, 116, 125, (271,569,0): 102, 115, 124, (271,570,0): 101, 113, 125, (271,571,0): 100, 112, 124, (271,572,0): 102, 114, 126, (271,573,0): 104, 116, 128, (271,574,0): 106, 120, 131, (271,575,0): 108, 122, 135, (271,576,0): 107, 122, 143, (271,577,0): 108, 122, 148, (271,578,0): 109, 124, 147, (271,579,0): 111, 126, 149, (271,580,0): 112, 127, 148, (271,581,0): 114, 126, 148, (271,582,0): 113, 126, 145, (271,583,0): 113, 126, 145, (271,584,0): 108, 121, 138, (271,585,0): 104, 115, 133, (271,586,0): 100, 112, 128, (271,587,0): 99, 111, 125, (271,588,0): 101, 113, 127, (271,589,0): 102, 114, 128, (271,590,0): 101, 113, 127, (271,591,0): 101, 111, 123, (271,592,0): 105, 108, 125, (271,593,0): 104, 105, 123, (271,594,0): 104, 103, 119, (271,595,0): 103, 102, 118, (271,596,0): 104, 100, 115, (271,597,0): 100, 96, 110, (271,598,0): 96, 90, 104, (271,599,0): 91, 85, 99, (272,0,0): 61, 48, 55, (272,1,0): 61, 48, 55, (272,2,0): 60, 47, 54, (272,3,0): 60, 47, 54, (272,4,0): 59, 46, 53, (272,5,0): 59, 46, 53, (272,6,0): 58, 45, 52, (272,7,0): 60, 45, 52, (272,8,0): 57, 42, 49, (272,9,0): 57, 41, 51, (272,10,0): 57, 40, 50, (272,11,0): 57, 40, 50, (272,12,0): 56, 39, 49, (272,13,0): 56, 39, 49, (272,14,0): 55, 38, 48, (272,15,0): 55, 37, 49, (272,16,0): 58, 40, 54, (272,17,0): 58, 40, 56, (272,18,0): 60, 39, 54, (272,19,0): 61, 40, 55, (272,20,0): 65, 41, 55, (272,21,0): 69, 43, 56, (272,22,0): 72, 44, 56, (272,23,0): 76, 46, 56, (272,24,0): 80, 50, 58, (272,25,0): 82, 51, 57, (272,26,0): 83, 52, 57, (272,27,0): 84, 54, 56, (272,28,0): 82, 53, 55, (272,29,0): 81, 53, 52, (272,30,0): 78, 50, 49, (272,31,0): 75, 49, 50, (272,32,0): 73, 51, 54, (272,33,0): 72, 51, 56, (272,34,0): 72, 52, 54, (272,35,0): 73, 53, 55, (272,36,0): 73, 53, 55, (272,37,0): 74, 54, 56, (272,38,0): 74, 54, 55, (272,39,0): 75, 53, 55, (272,40,0): 74, 52, 54, (272,41,0): 74, 53, 52, (272,42,0): 75, 53, 55, (272,43,0): 75, 54, 53, (272,44,0): 76, 55, 54, (272,45,0): 76, 55, 54, (272,46,0): 77, 56, 55, (272,47,0): 77, 56, 53, (272,48,0): 75, 56, 50, (272,49,0): 75, 58, 51, (272,50,0): 77, 58, 52, (272,51,0): 80, 61, 54, (272,52,0): 82, 63, 56, (272,53,0): 84, 66, 56, (272,54,0): 85, 67, 57, (272,55,0): 86, 68, 56, (272,56,0): 88, 68, 57, (272,57,0): 89, 70, 56, (272,58,0): 92, 70, 56, (272,59,0): 94, 72, 58, (272,60,0): 95, 73, 59, (272,61,0): 97, 76, 59, (272,62,0): 98, 77, 60, (272,63,0): 100, 77, 59, (272,64,0): 105, 80, 60, (272,65,0): 105, 80, 58, (272,66,0): 105, 80, 58, (272,67,0): 106, 81, 59, (272,68,0): 107, 81, 58, (272,69,0): 108, 82, 59, (272,70,0): 108, 82, 59, (272,71,0): 109, 83, 58, (272,72,0): 110, 82, 58, (272,73,0): 110, 82, 58, (272,74,0): 111, 84, 57, (272,75,0): 111, 84, 57, (272,76,0): 114, 84, 56, (272,77,0): 114, 84, 56, (272,78,0): 115, 85, 57, (272,79,0): 116, 85, 57, (272,80,0): 116, 85, 56, (272,81,0): 118, 85, 54, (272,82,0): 119, 86, 55, (272,83,0): 119, 86, 55, (272,84,0): 120, 87, 56, (272,85,0): 120, 87, 56, (272,86,0): 121, 88, 57, (272,87,0): 121, 88, 57, (272,88,0): 121, 88, 57, (272,89,0): 121, 88, 57, (272,90,0): 121, 88, 57, (272,91,0): 121, 88, 57, (272,92,0): 121, 88, 57, (272,93,0): 121, 88, 57, (272,94,0): 121, 88, 57, (272,95,0): 119, 88, 57, (272,96,0): 113, 86, 56, (272,97,0): 113, 88, 57, (272,98,0): 114, 89, 58, (272,99,0): 115, 90, 60, (272,100,0): 114, 89, 59, (272,101,0): 113, 88, 58, (272,102,0): 112, 87, 57, (272,103,0): 111, 85, 58, (272,104,0): 114, 88, 61, (272,105,0): 115, 89, 64, (272,106,0): 115, 89, 64, (272,107,0): 115, 89, 64, (272,108,0): 114, 88, 63, (272,109,0): 111, 85, 62, (272,110,0): 109, 83, 60, (272,111,0): 108, 80, 58, (272,112,0): 111, 79, 58, (272,113,0): 110, 78, 57, (272,114,0): 110, 75, 55, (272,115,0): 107, 75, 52, (272,116,0): 108, 73, 53, (272,117,0): 107, 75, 52, (272,118,0): 109, 74, 52, (272,119,0): 108, 76, 53, (272,120,0): 110, 76, 51, (272,121,0): 108, 76, 51, (272,122,0): 111, 77, 52, (272,123,0): 109, 77, 52, (272,124,0): 112, 78, 51, (272,125,0): 111, 80, 52, (272,126,0): 114, 80, 53, (272,127,0): 114, 80, 53, (272,128,0): 117, 81, 55, (272,129,0): 118, 81, 55, (272,130,0): 118, 81, 55, (272,131,0): 118, 81, 55, (272,132,0): 118, 81, 55, (272,133,0): 118, 81, 55, (272,134,0): 118, 81, 54, (272,135,0): 118, 81, 54, (272,136,0): 117, 80, 51, (272,137,0): 117, 80, 51, (272,138,0): 117, 80, 51, (272,139,0): 117, 81, 49, (272,140,0): 116, 79, 50, (272,141,0): 114, 78, 46, (272,142,0): 112, 75, 46, (272,143,0): 111, 74, 45, (272,144,0): 111, 74, 45, (272,145,0): 112, 75, 48, (272,146,0): 112, 75, 48, (272,147,0): 112, 75, 48, (272,148,0): 111, 74, 47, (272,149,0): 110, 73, 46, (272,150,0): 108, 71, 44, (272,151,0): 107, 70, 43, (272,152,0): 112, 75, 48, (272,153,0): 111, 74, 47, (272,154,0): 108, 71, 44, (272,155,0): 106, 69, 42, (272,156,0): 104, 67, 41, (272,157,0): 103, 66, 39, (272,158,0): 103, 66, 40, (272,159,0): 102, 66, 40, (272,160,0): 103, 73, 47, (272,161,0): 103, 76, 49, (272,162,0): 107, 78, 48, (272,163,0): 110, 79, 48, (272,164,0): 113, 80, 45, (272,165,0): 118, 84, 46, (272,166,0): 126, 92, 47, (272,167,0): 133, 97, 49, (272,168,0): 141, 103, 54, (272,169,0): 147, 107, 55, (272,170,0): 155, 114, 60, (272,171,0): 163, 122, 66, (272,172,0): 170, 128, 70, (272,173,0): 173, 131, 73, (272,174,0): 174, 129, 70, (272,175,0): 173, 129, 68, (272,176,0): 166, 120, 60, (272,177,0): 169, 123, 63, (272,178,0): 167, 122, 63, (272,179,0): 161, 116, 59, (272,180,0): 158, 115, 60, (272,181,0): 158, 117, 65, (272,182,0): 151, 109, 59, (272,183,0): 140, 100, 51, (272,184,0): 129, 91, 46, (272,185,0): 124, 87, 43, (272,186,0): 115, 80, 38, (272,187,0): 109, 76, 35, (272,188,0): 108, 75, 34, (272,189,0): 110, 78, 39, (272,190,0): 114, 82, 43, (272,191,0): 115, 86, 42, (272,192,0): 124, 97, 44, (272,193,0): 133, 108, 51, (272,194,0): 147, 121, 62, (272,195,0): 157, 132, 68, (272,196,0): 165, 138, 69, (272,197,0): 172, 146, 72, (272,198,0): 183, 156, 79, (272,199,0): 192, 163, 83, (272,200,0): 198, 168, 82, (272,201,0): 202, 170, 83, (272,202,0): 209, 175, 85, (272,203,0): 216, 181, 89, (272,204,0): 221, 186, 92, (272,205,0): 225, 189, 95, (272,206,0): 226, 190, 96, (272,207,0): 227, 191, 97, (272,208,0): 221, 188, 93, (272,209,0): 220, 190, 94, (272,210,0): 222, 192, 96, (272,211,0): 223, 195, 98, (272,212,0): 225, 197, 100, (272,213,0): 224, 198, 101, (272,214,0): 224, 200, 104, (272,215,0): 225, 201, 105, (272,216,0): 231, 208, 112, (272,217,0): 231, 211, 114, (272,218,0): 233, 215, 117, (272,219,0): 230, 214, 116, (272,220,0): 229, 213, 115, (272,221,0): 230, 214, 116, (272,222,0): 233, 219, 120, (272,223,0): 237, 224, 119, (272,224,0): 239, 230, 113, (272,225,0): 242, 234, 110, (272,226,0): 246, 238, 114, (272,227,0): 250, 242, 118, (272,228,0): 253, 243, 120, (272,229,0): 253, 243, 120, (272,230,0): 251, 241, 117, (272,231,0): 250, 240, 116, (272,232,0): 255, 248, 124, (272,233,0): 255, 249, 126, (272,234,0): 255, 250, 127, (272,235,0): 255, 250, 127, (272,236,0): 255, 248, 127, (272,237,0): 254, 244, 123, (272,238,0): 250, 240, 119, (272,239,0): 246, 237, 116, (272,240,0): 237, 231, 109, (272,241,0): 236, 230, 108, (272,242,0): 236, 227, 106, (272,243,0): 235, 225, 104, (272,244,0): 235, 220, 101, (272,245,0): 233, 216, 98, (272,246,0): 233, 214, 96, (272,247,0): 233, 212, 95, (272,248,0): 231, 212, 94, (272,249,0): 233, 217, 96, (272,250,0): 239, 224, 105, (272,251,0): 247, 235, 113, (272,252,0): 255, 247, 123, (272,253,0): 255, 253, 128, (272,254,0): 255, 254, 128, (272,255,0): 253, 254, 127, (272,256,0): 253, 255, 128, (272,257,0): 253, 255, 127, (272,258,0): 254, 255, 128, (272,259,0): 255, 255, 128, (272,260,0): 255, 254, 127, (272,261,0): 253, 252, 126, (272,262,0): 254, 250, 127, (272,263,0): 252, 247, 127, (272,264,0): 252, 247, 129, (272,265,0): 246, 241, 124, (272,266,0): 239, 233, 119, (272,267,0): 238, 232, 120, (272,268,0): 237, 233, 125, (272,269,0): 233, 230, 123, (272,270,0): 225, 222, 117, (272,271,0): 215, 216, 114, (272,272,0): 206, 210, 113, (272,273,0): 203, 208, 114, (272,274,0): 198, 205, 112, (272,275,0): 193, 202, 109, (272,276,0): 189, 199, 110, (272,277,0): 186, 199, 109, (272,278,0): 185, 199, 112, (272,279,0): 185, 199, 114, (272,280,0): 184, 199, 116, (272,281,0): 183, 198, 117, (272,282,0): 182, 196, 117, (272,283,0): 181, 195, 118, (272,284,0): 178, 194, 119, (272,285,0): 178, 194, 121, (272,286,0): 178, 194, 123, (272,287,0): 178, 196, 122, (272,288,0): 176, 199, 121, (272,289,0): 175, 200, 119, (272,290,0): 172, 196, 118, (272,291,0): 167, 194, 117, (272,292,0): 173, 196, 126, (272,293,0): 178, 201, 133, (272,294,0): 174, 194, 131, (272,295,0): 165, 185, 126, (272,296,0): 153, 170, 115, (272,297,0): 151, 165, 112, (272,298,0): 148, 160, 110, (272,299,0): 146, 155, 108, (272,300,0): 142, 151, 104, (272,301,0): 138, 147, 102, (272,302,0): 134, 143, 98, (272,303,0): 131, 138, 94, (272,304,0): 136, 136, 98, (272,305,0): 137, 137, 101, (272,306,0): 135, 137, 100, (272,307,0): 129, 135, 97, (272,308,0): 127, 133, 97, (272,309,0): 130, 136, 102, (272,310,0): 137, 141, 108, (272,311,0): 146, 145, 115, (272,312,0): 174, 168, 144, (272,313,0): 174, 163, 143, (272,314,0): 188, 172, 157, (272,315,0): 219, 201, 191, (272,316,0): 252, 233, 226, (272,317,0): 255, 250, 243, (272,318,0): 255, 245, 241, (272,319,0): 254, 235, 229, (272,320,0): 239, 217, 206, (272,321,0): 221, 199, 186, (272,322,0): 192, 174, 160, (272,323,0): 166, 153, 137, (272,324,0): 148, 139, 122, (272,325,0): 137, 134, 115, (272,326,0): 130, 133, 114, (272,327,0): 125, 134, 113, (272,328,0): 126, 139, 119, (272,329,0): 120, 137, 118, (272,330,0): 117, 136, 117, (272,331,0): 114, 135, 118, (272,332,0): 115, 133, 117, (272,333,0): 112, 130, 116, (272,334,0): 107, 123, 110, (272,335,0): 106, 118, 106, (272,336,0): 108, 116, 101, (272,337,0): 106, 112, 98, (272,338,0): 106, 110, 96, (272,339,0): 104, 108, 94, (272,340,0): 103, 105, 92, (272,341,0): 99, 99, 87, (272,342,0): 95, 91, 80, (272,343,0): 92, 85, 75, (272,344,0): 96, 86, 77, (272,345,0): 93, 80, 72, (272,346,0): 87, 72, 65, (272,347,0): 82, 65, 58, (272,348,0): 80, 61, 57, (272,349,0): 81, 60, 57, (272,350,0): 85, 61, 59, (272,351,0): 85, 64, 61, (272,352,0): 88, 74, 71, (272,353,0): 90, 79, 75, (272,354,0): 93, 82, 78, (272,355,0): 91, 80, 74, (272,356,0): 88, 77, 71, (272,357,0): 88, 79, 72, (272,358,0): 95, 88, 80, (272,359,0): 100, 96, 87, (272,360,0): 97, 94, 87, (272,361,0): 97, 98, 92, (272,362,0): 100, 105, 99, (272,363,0): 105, 114, 109, (272,364,0): 111, 123, 121, (272,365,0): 115, 131, 130, (272,366,0): 118, 136, 136, (272,367,0): 121, 139, 141, (272,368,0): 131, 148, 155, (272,369,0): 130, 147, 155, (272,370,0): 131, 145, 154, (272,371,0): 128, 142, 151, (272,372,0): 122, 136, 147, (272,373,0): 115, 129, 140, (272,374,0): 109, 121, 133, (272,375,0): 105, 117, 131, (272,376,0): 111, 123, 137, (272,377,0): 114, 123, 140, (272,378,0): 116, 125, 142, (272,379,0): 119, 127, 146, (272,380,0): 121, 129, 148, (272,381,0): 119, 127, 146, (272,382,0): 115, 121, 143, (272,383,0): 110, 117, 136, (272,384,0): 112, 117, 136, (272,385,0): 112, 118, 134, (272,386,0): 114, 117, 134, (272,387,0): 113, 115, 130, (272,388,0): 112, 111, 125, (272,389,0): 108, 106, 119, (272,390,0): 105, 101, 115, (272,391,0): 104, 98, 110, (272,392,0): 99, 91, 104, (272,393,0): 99, 91, 102, (272,394,0): 99, 89, 100, (272,395,0): 99, 87, 99, (272,396,0): 98, 84, 97, (272,397,0): 98, 82, 95, (272,398,0): 97, 81, 94, (272,399,0): 94, 81, 91, (272,400,0): 96, 87, 90, (272,401,0): 93, 87, 87, (272,402,0): 92, 88, 89, (272,403,0): 91, 89, 92, (272,404,0): 91, 92, 97, (272,405,0): 93, 96, 103, (272,406,0): 95, 99, 108, (272,407,0): 94, 102, 113, (272,408,0): 91, 101, 113, (272,409,0): 93, 102, 117, (272,410,0): 94, 106, 122, (272,411,0): 97, 108, 126, (272,412,0): 98, 109, 127, (272,413,0): 98, 109, 129, (272,414,0): 98, 109, 129, (272,415,0): 99, 107, 128, (272,416,0): 105, 110, 132, (272,417,0): 107, 107, 131, (272,418,0): 105, 105, 129, (272,419,0): 104, 104, 128, (272,420,0): 105, 103, 127, (272,421,0): 106, 104, 126, (272,422,0): 109, 105, 130, (272,423,0): 110, 106, 129, (272,424,0): 110, 108, 130, (272,425,0): 113, 111, 133, (272,426,0): 115, 116, 137, (272,427,0): 121, 122, 142, (272,428,0): 124, 126, 147, (272,429,0): 126, 131, 150, (272,430,0): 127, 134, 152, (272,431,0): 132, 133, 153, (272,432,0): 143, 130, 158, (272,433,0): 144, 128, 157, (272,434,0): 143, 124, 152, (272,435,0): 138, 120, 146, (272,436,0): 132, 114, 138, (272,437,0): 126, 107, 127, (272,438,0): 122, 101, 120, (272,439,0): 119, 98, 113, (272,440,0): 117, 95, 108, (272,441,0): 114, 93, 102, (272,442,0): 113, 90, 98, (272,443,0): 115, 93, 96, (272,444,0): 121, 96, 99, (272,445,0): 122, 98, 98, (272,446,0): 120, 96, 94, (272,447,0): 116, 95, 94, (272,448,0): 119, 100, 102, (272,449,0): 117, 101, 104, (272,450,0): 117, 102, 107, (272,451,0): 116, 104, 108, (272,452,0): 119, 106, 115, (272,453,0): 121, 111, 119, (272,454,0): 122, 114, 125, (272,455,0): 121, 118, 129, (272,456,0): 120, 118, 131, (272,457,0): 121, 123, 136, (272,458,0): 125, 128, 145, (272,459,0): 126, 133, 151, (272,460,0): 128, 136, 155, (272,461,0): 125, 136, 154, (272,462,0): 124, 135, 155, (272,463,0): 122, 133, 155, (272,464,0): 124, 130, 154, (272,465,0): 123, 127, 152, (272,466,0): 120, 124, 149, (272,467,0): 117, 122, 144, (272,468,0): 117, 119, 142, (272,469,0): 115, 117, 138, (272,470,0): 115, 116, 136, (272,471,0): 117, 115, 136, (272,472,0): 114, 111, 130, (272,473,0): 117, 114, 133, (272,474,0): 122, 117, 137, (272,475,0): 123, 118, 138, (272,476,0): 123, 116, 134, (272,477,0): 116, 109, 127, (272,478,0): 110, 101, 120, (272,479,0): 105, 96, 115, (272,480,0): 112, 101, 117, (272,481,0): 110, 99, 113, (272,482,0): 105, 97, 108, (272,483,0): 102, 94, 105, (272,484,0): 99, 93, 103, (272,485,0): 95, 92, 101, (272,486,0): 94, 91, 100, (272,487,0): 93, 92, 100, (272,488,0): 98, 99, 104, (272,489,0): 101, 102, 107, (272,490,0): 103, 106, 111, (272,491,0): 105, 110, 113, (272,492,0): 110, 115, 119, (272,493,0): 115, 123, 125, (272,494,0): 124, 132, 135, (272,495,0): 130, 139, 144, (272,496,0): 135, 145, 155, (272,497,0): 132, 144, 156, (272,498,0): 132, 146, 159, (272,499,0): 133, 147, 160, (272,500,0): 137, 150, 166, (272,501,0): 142, 155, 171, (272,502,0): 147, 160, 176, (272,503,0): 148, 164, 179, (272,504,0): 148, 164, 179, (272,505,0): 149, 165, 178, (272,506,0): 148, 164, 177, (272,507,0): 145, 162, 172, (272,508,0): 140, 159, 166, (272,509,0): 139, 158, 164, (272,510,0): 142, 161, 167, (272,511,0): 145, 164, 171, (272,512,0): 147, 163, 176, (272,513,0): 150, 166, 181, (272,514,0): 152, 169, 185, (272,515,0): 155, 172, 188, (272,516,0): 155, 174, 189, (272,517,0): 151, 173, 187, (272,518,0): 149, 171, 185, (272,519,0): 148, 170, 184, (272,520,0): 143, 165, 179, (272,521,0): 147, 166, 181, (272,522,0): 150, 169, 184, (272,523,0): 148, 167, 182, (272,524,0): 142, 164, 178, (272,525,0): 139, 161, 174, (272,526,0): 138, 160, 173, (272,527,0): 141, 159, 173, (272,528,0): 142, 154, 170, (272,529,0): 143, 150, 168, (272,530,0): 138, 147, 164, (272,531,0): 133, 142, 159, (272,532,0): 124, 136, 152, (272,533,0): 116, 130, 143, (272,534,0): 110, 124, 137, (272,535,0): 105, 121, 134, (272,536,0): 107, 124, 134, (272,537,0): 109, 126, 134, (272,538,0): 112, 127, 134, (272,539,0): 113, 128, 133, (272,540,0): 114, 128, 131, (272,541,0): 113, 127, 128, (272,542,0): 112, 126, 126, (272,543,0): 113, 124, 126, (272,544,0): 104, 113, 122, (272,545,0): 105, 111, 123, (272,546,0): 107, 111, 122, (272,547,0): 107, 111, 122, (272,548,0): 108, 111, 120, (272,549,0): 108, 111, 120, (272,550,0): 110, 110, 118, (272,551,0): 108, 111, 118, (272,552,0): 112, 115, 122, (272,553,0): 112, 117, 123, (272,554,0): 113, 120, 128, (272,555,0): 114, 123, 132, (272,556,0): 114, 124, 133, (272,557,0): 112, 125, 134, (272,558,0): 110, 124, 133, (272,559,0): 108, 125, 133, (272,560,0): 103, 120, 128, (272,561,0): 103, 122, 128, (272,562,0): 104, 121, 129, (272,563,0): 104, 121, 128, (272,564,0): 102, 119, 127, (272,565,0): 100, 117, 125, (272,566,0): 99, 113, 122, (272,567,0): 98, 111, 120, (272,568,0): 100, 113, 122, (272,569,0): 100, 113, 122, (272,570,0): 100, 113, 122, (272,571,0): 102, 112, 122, (272,572,0): 104, 114, 124, (272,573,0): 106, 116, 126, (272,574,0): 108, 118, 128, (272,575,0): 107, 119, 133, (272,576,0): 104, 121, 141, (272,577,0): 104, 122, 144, (272,578,0): 108, 124, 147, (272,579,0): 111, 127, 150, (272,580,0): 112, 129, 149, (272,581,0): 113, 128, 149, (272,582,0): 114, 127, 146, (272,583,0): 114, 127, 146, (272,584,0): 111, 122, 140, (272,585,0): 112, 120, 139, (272,586,0): 110, 119, 136, (272,587,0): 107, 116, 133, (272,588,0): 105, 112, 130, (272,589,0): 104, 111, 127, (272,590,0): 106, 112, 128, (272,591,0): 109, 112, 127, (272,592,0): 109, 111, 124, (272,593,0): 107, 105, 118, (272,594,0): 103, 99, 113, (272,595,0): 102, 98, 112, (272,596,0): 106, 98, 113, (272,597,0): 103, 95, 108, (272,598,0): 96, 85, 99, (272,599,0): 88, 76, 90, (273,0,0): 60, 49, 57, (273,1,0): 60, 49, 57, (273,2,0): 59, 48, 56, (273,3,0): 59, 48, 56, (273,4,0): 58, 47, 55, (273,5,0): 58, 47, 55, (273,6,0): 58, 45, 54, (273,7,0): 58, 45, 54, (273,8,0): 57, 41, 51, (273,9,0): 57, 41, 51, (273,10,0): 58, 41, 51, (273,11,0): 57, 40, 50, (273,12,0): 57, 40, 50, (273,13,0): 56, 39, 49, (273,14,0): 56, 39, 49, (273,15,0): 55, 37, 49, (273,16,0): 58, 40, 56, (273,17,0): 58, 40, 56, (273,18,0): 60, 39, 56, (273,19,0): 62, 39, 55, (273,20,0): 65, 41, 55, (273,21,0): 70, 42, 56, (273,22,0): 74, 43, 58, (273,23,0): 77, 45, 56, (273,24,0): 82, 49, 60, (273,25,0): 83, 50, 57, (273,26,0): 84, 51, 58, (273,27,0): 83, 52, 57, (273,28,0): 83, 53, 55, (273,29,0): 80, 51, 53, (273,30,0): 79, 51, 50, (273,31,0): 75, 49, 50, (273,32,0): 75, 50, 54, (273,33,0): 73, 50, 56, (273,34,0): 73, 51, 54, (273,35,0): 74, 52, 55, (273,36,0): 74, 52, 55, (273,37,0): 75, 53, 56, (273,38,0): 75, 53, 55, (273,39,0): 75, 53, 55, (273,40,0): 74, 53, 52, (273,41,0): 75, 54, 53, (273,42,0): 75, 54, 53, (273,43,0): 76, 55, 54, (273,44,0): 76, 55, 52, (273,45,0): 77, 56, 53, (273,46,0): 77, 56, 53, (273,47,0): 76, 57, 51, (273,48,0): 75, 56, 50, (273,49,0): 75, 58, 50, (273,50,0): 77, 60, 52, (273,51,0): 79, 62, 54, (273,52,0): 82, 64, 54, (273,53,0): 84, 66, 56, (273,54,0): 86, 68, 56, (273,55,0): 86, 68, 56, (273,56,0): 89, 70, 56, (273,57,0): 89, 70, 56, (273,58,0): 93, 71, 57, (273,59,0): 94, 72, 58, (273,60,0): 96, 74, 60, (273,61,0): 97, 76, 59, (273,62,0): 99, 76, 60, (273,63,0): 100, 77, 59, (273,64,0): 105, 80, 60, (273,65,0): 105, 80, 58, (273,66,0): 106, 81, 59, (273,67,0): 106, 82, 58, (273,68,0): 108, 82, 59, (273,69,0): 108, 82, 57, (273,70,0): 109, 83, 58, (273,71,0): 109, 83, 58, (273,72,0): 111, 83, 59, (273,73,0): 111, 84, 57, (273,74,0): 113, 83, 57, (273,75,0): 114, 84, 56, (273,76,0): 114, 84, 56, (273,77,0): 115, 85, 57, (273,78,0): 116, 85, 57, (273,79,0): 116, 85, 56, (273,80,0): 119, 86, 55, (273,81,0): 119, 86, 55, (273,82,0): 119, 86, 55, (273,83,0): 120, 87, 56, (273,84,0): 120, 87, 56, (273,85,0): 121, 88, 57, (273,86,0): 121, 88, 57, (273,87,0): 121, 88, 57, (273,88,0): 121, 88, 57, (273,89,0): 121, 88, 57, (273,90,0): 121, 88, 57, (273,91,0): 121, 88, 57, (273,92,0): 121, 88, 57, (273,93,0): 121, 88, 57, (273,94,0): 121, 88, 57, (273,95,0): 119, 88, 57, (273,96,0): 114, 87, 57, (273,97,0): 113, 88, 58, (273,98,0): 115, 88, 59, (273,99,0): 114, 89, 59, (273,100,0): 115, 88, 61, (273,101,0): 113, 87, 60, (273,102,0): 113, 86, 59, (273,103,0): 111, 85, 58, (273,104,0): 113, 85, 61, (273,105,0): 113, 87, 62, (273,106,0): 114, 86, 64, (273,107,0): 114, 88, 65, (273,108,0): 114, 86, 64, (273,109,0): 111, 85, 62, (273,110,0): 110, 82, 61, (273,111,0): 108, 80, 59, (273,112,0): 109, 78, 58, (273,113,0): 109, 76, 57, (273,114,0): 108, 76, 55, (273,115,0): 106, 74, 53, (273,116,0): 106, 74, 53, (273,117,0): 106, 74, 51, (273,118,0): 107, 75, 52, (273,119,0): 107, 75, 52, (273,120,0): 107, 75, 50, (273,121,0): 108, 76, 51, (273,122,0): 109, 77, 52, (273,123,0): 110, 79, 51, (273,124,0): 111, 80, 52, (273,125,0): 112, 81, 53, (273,126,0): 113, 82, 54, (273,127,0): 116, 82, 55, (273,128,0): 119, 83, 57, (273,129,0): 120, 83, 57, (273,130,0): 120, 83, 57, (273,131,0): 120, 83, 57, (273,132,0): 120, 83, 57, (273,133,0): 120, 83, 56, (273,134,0): 120, 83, 56, (273,135,0): 120, 83, 54, (273,136,0): 119, 82, 53, (273,137,0): 120, 83, 54, (273,138,0): 120, 84, 52, (273,139,0): 120, 84, 52, (273,140,0): 119, 83, 51, (273,141,0): 117, 81, 49, (273,142,0): 115, 79, 47, (273,143,0): 114, 78, 46, (273,144,0): 114, 77, 48, (273,145,0): 115, 78, 51, (273,146,0): 115, 78, 51, (273,147,0): 115, 78, 51, (273,148,0): 114, 77, 50, (273,149,0): 112, 75, 48, (273,150,0): 111, 74, 47, (273,151,0): 109, 72, 45, (273,152,0): 110, 73, 46, (273,153,0): 109, 72, 45, (273,154,0): 108, 71, 44, (273,155,0): 106, 69, 42, (273,156,0): 105, 68, 41, (273,157,0): 105, 68, 41, (273,158,0): 106, 69, 42, (273,159,0): 105, 70, 42, (273,160,0): 105, 74, 46, (273,161,0): 106, 77, 47, (273,162,0): 110, 79, 48, (273,163,0): 113, 80, 45, (273,164,0): 117, 83, 45, (273,165,0): 123, 90, 47, (273,166,0): 134, 97, 52, (273,167,0): 140, 104, 54, (273,168,0): 150, 110, 58, (273,169,0): 155, 116, 61, (273,170,0): 162, 122, 63, (273,171,0): 169, 127, 69, (273,172,0): 173, 128, 71, (273,173,0): 173, 128, 69, (273,174,0): 174, 128, 69, (273,175,0): 174, 128, 68, (273,176,0): 169, 125, 62, (273,177,0): 171, 127, 62, (273,178,0): 167, 126, 62, (273,179,0): 160, 118, 58, (273,180,0): 158, 116, 58, (273,181,0): 156, 115, 61, (273,182,0): 147, 107, 55, (273,183,0): 137, 97, 48, (273,184,0): 130, 92, 47, (273,185,0): 125, 88, 44, (273,186,0): 117, 83, 38, (273,187,0): 113, 78, 36, (273,188,0): 112, 79, 36, (273,189,0): 116, 83, 40, (273,190,0): 121, 90, 46, (273,191,0): 126, 95, 48, (273,192,0): 134, 108, 51, (273,193,0): 143, 118, 54, (273,194,0): 155, 130, 64, (273,195,0): 163, 139, 69, (273,196,0): 169, 143, 69, (273,197,0): 176, 149, 70, (273,198,0): 185, 156, 76, (273,199,0): 192, 165, 78, (273,200,0): 201, 171, 83, (273,201,0): 207, 176, 85, (273,202,0): 216, 183, 90, (273,203,0): 223, 190, 95, (273,204,0): 229, 194, 100, (273,205,0): 231, 196, 102, (273,206,0): 231, 195, 101, (273,207,0): 229, 194, 100, (273,208,0): 223, 190, 93, (273,209,0): 221, 191, 93, (273,210,0): 221, 193, 94, (273,211,0): 223, 195, 96, (273,212,0): 227, 199, 100, (273,213,0): 230, 205, 105, (273,214,0): 233, 209, 109, (273,215,0): 235, 213, 112, (273,216,0): 238, 219, 117, (273,217,0): 239, 221, 119, (273,218,0): 238, 223, 120, (273,219,0): 236, 223, 119, (273,220,0): 234, 221, 117, (273,221,0): 234, 221, 117, (273,222,0): 237, 226, 121, (273,223,0): 238, 230, 121, (273,224,0): 242, 237, 117, (273,225,0): 244, 240, 115, (273,226,0): 248, 244, 119, (273,227,0): 251, 247, 122, (273,228,0): 253, 249, 124, (273,229,0): 253, 249, 124, (273,230,0): 252, 248, 123, (273,231,0): 251, 247, 122, (273,232,0): 254, 250, 125, (273,233,0): 255, 251, 126, (273,234,0): 255, 253, 128, (273,235,0): 255, 253, 128, (273,236,0): 255, 251, 126, (273,237,0): 252, 248, 123, (273,238,0): 248, 244, 119, (273,239,0): 244, 243, 117, (273,240,0): 241, 240, 114, (273,241,0): 240, 239, 113, (273,242,0): 241, 235, 111, (273,243,0): 241, 233, 109, (273,244,0): 242, 228, 106, (273,245,0): 241, 225, 104, (273,246,0): 242, 221, 102, (273,247,0): 241, 220, 101, (273,248,0): 240, 219, 100, (273,249,0): 240, 221, 101, (273,250,0): 242, 226, 105, (273,251,0): 248, 236, 114, (273,252,0): 253, 247, 123, (273,253,0): 255, 254, 128, (273,254,0): 254, 255, 128, (273,255,0): 248, 253, 125, (273,256,0): 251, 255, 129, (273,257,0): 251, 255, 128, (273,258,0): 252, 255, 128, (273,259,0): 254, 255, 128, (273,260,0): 254, 255, 127, (273,261,0): 253, 252, 125, (273,262,0): 253, 249, 124, (273,263,0): 252, 248, 125, (273,264,0): 249, 244, 124, (273,265,0): 243, 238, 120, (273,266,0): 236, 231, 114, (273,267,0): 233, 230, 115, (273,268,0): 234, 231, 118, (273,269,0): 232, 230, 119, (273,270,0): 225, 225, 115, (273,271,0): 217, 219, 110, (273,272,0): 209, 214, 111, (273,273,0): 206, 214, 111, (273,274,0): 205, 213, 112, (273,275,0): 201, 211, 112, (273,276,0): 198, 210, 112, (273,277,0): 195, 209, 112, (273,278,0): 195, 209, 114, (273,279,0): 194, 209, 118, (273,280,0): 192, 208, 119, (273,281,0): 190, 208, 122, (273,282,0): 190, 208, 124, (273,283,0): 189, 207, 125, (273,284,0): 186, 205, 124, (273,285,0): 183, 202, 123, (273,286,0): 181, 198, 120, (273,287,0): 178, 197, 118, (273,288,0): 174, 199, 115, (273,289,0): 172, 200, 115, (273,290,0): 169, 197, 113, (273,291,0): 167, 194, 115, (273,292,0): 171, 197, 123, (273,293,0): 177, 203, 132, (273,294,0): 176, 198, 134, (273,295,0): 167, 189, 127, (273,296,0): 158, 177, 122, (273,297,0): 153, 171, 119, (273,298,0): 149, 163, 114, (273,299,0): 145, 158, 112, (273,300,0): 144, 156, 110, (273,301,0): 142, 151, 106, (273,302,0): 137, 144, 100, (273,303,0): 132, 137, 96, (273,304,0): 140, 135, 103, (273,305,0): 140, 135, 105, (273,306,0): 136, 135, 104, (273,307,0): 131, 135, 102, (273,308,0): 129, 135, 101, (273,309,0): 131, 138, 104, (273,310,0): 139, 144, 112, (273,311,0): 145, 148, 119, (273,312,0): 161, 159, 134, (273,313,0): 170, 163, 144, (273,314,0): 190, 176, 163, (273,315,0): 219, 205, 196, (273,316,0): 253, 235, 231, (273,317,0): 255, 251, 248, (273,318,0): 255, 250, 250, (273,319,0): 255, 239, 235, (273,320,0): 232, 208, 198, (273,321,0): 219, 193, 180, (273,322,0): 191, 172, 157, (273,323,0): 165, 152, 135, (273,324,0): 147, 140, 122, (273,325,0): 134, 135, 117, (273,326,0): 129, 136, 118, (273,327,0): 126, 139, 121, (273,328,0): 125, 142, 124, (273,329,0): 122, 140, 124, (273,330,0): 117, 138, 123, (273,331,0): 116, 137, 122, (273,332,0): 114, 134, 122, (273,333,0): 113, 131, 119, (273,334,0): 109, 125, 115, (273,335,0): 106, 119, 109, (273,336,0): 104, 114, 103, (273,337,0): 104, 112, 99, (273,338,0): 103, 109, 97, (273,339,0): 102, 108, 96, (273,340,0): 103, 106, 95, (273,341,0): 99, 101, 90, (273,342,0): 96, 93, 84, (273,343,0): 92, 88, 79, (273,344,0): 97, 88, 81, (273,345,0): 94, 83, 77, (273,346,0): 89, 76, 70, (273,347,0): 84, 69, 64, (273,348,0): 81, 63, 59, (273,349,0): 80, 61, 57, (273,350,0): 81, 60, 57, (273,351,0): 81, 62, 58, (273,352,0): 87, 73, 70, (273,353,0): 88, 79, 74, (273,354,0): 93, 82, 78, (273,355,0): 92, 81, 77, (273,356,0): 88, 79, 72, (273,357,0): 89, 80, 73, (273,358,0): 94, 87, 79, (273,359,0): 98, 94, 85, (273,360,0): 97, 94, 89, (273,361,0): 97, 98, 93, (273,362,0): 101, 106, 102, (273,363,0): 105, 114, 111, (273,364,0): 111, 123, 121, (273,365,0): 115, 131, 130, (273,366,0): 120, 135, 138, (273,367,0): 120, 138, 142, (273,368,0): 126, 143, 151, (273,369,0): 127, 144, 154, (273,370,0): 129, 143, 154, (273,371,0): 127, 141, 152, (273,372,0): 123, 137, 150, (273,373,0): 118, 132, 145, (273,374,0): 114, 126, 140, (273,375,0): 111, 123, 137, (273,376,0): 115, 124, 141, (273,377,0): 115, 124, 141, (273,378,0): 116, 124, 143, (273,379,0): 119, 127, 146, (273,380,0): 122, 129, 148, (273,381,0): 120, 127, 146, (273,382,0): 115, 121, 143, (273,383,0): 110, 117, 136, (273,384,0): 111, 117, 133, (273,385,0): 114, 117, 132, (273,386,0): 116, 118, 133, (273,387,0): 115, 117, 132, (273,388,0): 114, 113, 127, (273,389,0): 109, 108, 122, (273,390,0): 105, 103, 117, (273,391,0): 102, 98, 113, (273,392,0): 100, 94, 108, (273,393,0): 100, 92, 107, (273,394,0): 101, 90, 104, (273,395,0): 99, 87, 101, (273,396,0): 98, 84, 99, (273,397,0): 97, 80, 96, (273,398,0): 95, 79, 92, (273,399,0): 92, 79, 89, (273,400,0): 92, 83, 86, (273,401,0): 89, 85, 84, (273,402,0): 88, 86, 87, (273,403,0): 89, 89, 91, (273,404,0): 91, 92, 97, (273,405,0): 92, 96, 105, (273,406,0): 93, 99, 111, (273,407,0): 95, 103, 116, (273,408,0): 93, 102, 117, (273,409,0): 92, 104, 120, (273,410,0): 95, 106, 124, (273,411,0): 99, 107, 126, (273,412,0): 100, 108, 127, (273,413,0): 100, 109, 126, (273,414,0): 100, 107, 126, (273,415,0): 100, 105, 125, (273,416,0): 105, 107, 130, (273,417,0): 105, 105, 129, (273,418,0): 105, 102, 129, (273,419,0): 104, 102, 126, (273,420,0): 105, 101, 126, (273,421,0): 107, 102, 125, (273,422,0): 108, 103, 126, (273,423,0): 109, 104, 127, (273,424,0): 112, 107, 130, (273,425,0): 112, 109, 130, (273,426,0): 116, 113, 134, (273,427,0): 120, 119, 137, (273,428,0): 123, 124, 142, (273,429,0): 127, 130, 147, (273,430,0): 128, 134, 150, (273,431,0): 136, 133, 152, (273,432,0): 144, 126, 152, (273,433,0): 145, 120, 149, (273,434,0): 141, 115, 142, (273,435,0): 133, 109, 133, (273,436,0): 126, 101, 123, (273,437,0): 119, 94, 115, (273,438,0): 114, 90, 106, (273,439,0): 111, 87, 101, (273,440,0): 110, 87, 97, (273,441,0): 108, 85, 93, (273,442,0): 109, 84, 90, (273,443,0): 112, 87, 90, (273,444,0): 116, 92, 92, (273,445,0): 119, 95, 95, (273,446,0): 118, 94, 92, (273,447,0): 114, 93, 90, (273,448,0): 118, 99, 101, (273,449,0): 116, 100, 103, (273,450,0): 116, 101, 106, (273,451,0): 116, 104, 108, (273,452,0): 119, 106, 113, (273,453,0): 121, 111, 119, (273,454,0): 123, 116, 124, (273,455,0): 122, 119, 130, (273,456,0): 122, 120, 133, (273,457,0): 123, 122, 136, (273,458,0): 123, 126, 143, (273,459,0): 124, 129, 148, (273,460,0): 124, 131, 150, (273,461,0): 122, 130, 151, (273,462,0): 121, 129, 152, (273,463,0): 120, 128, 151, (273,464,0): 123, 127, 152, (273,465,0): 121, 126, 148, (273,466,0): 118, 123, 145, (273,467,0): 117, 119, 142, (273,468,0): 114, 116, 139, (273,469,0): 112, 114, 135, (273,470,0): 113, 114, 135, (273,471,0): 114, 112, 133, (273,472,0): 115, 112, 133, (273,473,0): 117, 114, 135, (273,474,0): 121, 116, 138, (273,475,0): 121, 116, 136, (273,476,0): 120, 112, 133, (273,477,0): 115, 107, 128, (273,478,0): 109, 100, 121, (273,479,0): 105, 96, 115, (273,480,0): 112, 101, 117, (273,481,0): 110, 99, 113, (273,482,0): 106, 98, 109, (273,483,0): 103, 95, 106, (273,484,0): 99, 93, 103, (273,485,0): 98, 92, 102, (273,486,0): 95, 92, 101, (273,487,0): 94, 93, 101, (273,488,0): 100, 101, 106, (273,489,0): 102, 103, 108, (273,490,0): 104, 108, 111, (273,491,0): 107, 111, 114, (273,492,0): 110, 115, 118, (273,493,0): 115, 123, 125, (273,494,0): 124, 132, 134, (273,495,0): 129, 138, 143, (273,496,0): 132, 140, 151, (273,497,0): 131, 140, 155, (273,498,0): 130, 142, 156, (273,499,0): 132, 144, 158, (273,500,0): 135, 147, 163, (273,501,0): 140, 152, 168, (273,502,0): 143, 156, 172, (273,503,0): 145, 158, 174, (273,504,0): 145, 161, 174, (273,505,0): 146, 162, 175, (273,506,0): 146, 163, 173, (273,507,0): 144, 161, 171, (273,508,0): 141, 160, 167, (273,509,0): 140, 159, 166, (273,510,0): 143, 162, 168, (273,511,0): 146, 165, 172, (273,512,0): 151, 168, 178, (273,513,0): 153, 169, 182, (273,514,0): 155, 171, 184, (273,515,0): 156, 172, 185, (273,516,0): 155, 173, 185, (273,517,0): 152, 170, 182, (273,518,0): 148, 168, 179, (273,519,0): 146, 166, 177, (273,520,0): 147, 166, 180, (273,521,0): 148, 170, 183, (273,522,0): 150, 172, 185, (273,523,0): 147, 171, 183, (273,524,0): 143, 167, 179, (273,525,0): 138, 165, 176, (273,526,0): 139, 163, 175, (273,527,0): 142, 161, 175, (273,528,0): 146, 158, 174, (273,529,0): 147, 154, 173, (273,530,0): 144, 151, 170, (273,531,0): 137, 145, 164, (273,532,0): 128, 139, 157, (273,533,0): 120, 133, 150, (273,534,0): 112, 128, 144, (273,535,0): 109, 125, 141, (273,536,0): 106, 124, 138, (273,537,0): 109, 127, 137, (273,538,0): 113, 130, 138, (273,539,0): 116, 134, 138, (273,540,0): 118, 133, 136, (273,541,0): 116, 132, 131, (273,542,0): 114, 129, 126, (273,543,0): 112, 126, 127, (273,544,0): 108, 117, 126, (273,545,0): 108, 116, 129, (273,546,0): 108, 114, 126, (273,547,0): 108, 114, 126, (273,548,0): 109, 113, 124, (273,549,0): 109, 113, 122, (273,550,0): 109, 112, 119, (273,551,0): 109, 112, 119, (273,552,0): 112, 117, 123, (273,553,0): 112, 119, 125, (273,554,0): 114, 121, 129, (273,555,0): 115, 125, 134, (273,556,0): 116, 126, 136, (273,557,0): 113, 127, 136, (273,558,0): 113, 127, 138, (273,559,0): 111, 128, 138, (273,560,0): 107, 125, 135, (273,561,0): 107, 127, 136, (273,562,0): 109, 127, 137, (273,563,0): 109, 127, 137, (273,564,0): 108, 126, 136, (273,565,0): 107, 124, 134, (273,566,0): 106, 120, 131, (273,567,0): 105, 119, 130, (273,568,0): 104, 116, 128, (273,569,0): 103, 115, 127, (273,570,0): 105, 115, 127, (273,571,0): 104, 114, 126, (273,572,0): 105, 115, 127, (273,573,0): 107, 117, 129, (273,574,0): 109, 117, 130, (273,575,0): 107, 119, 133, (273,576,0): 103, 121, 141, (273,577,0): 102, 123, 144, (273,578,0): 106, 124, 146, (273,579,0): 109, 127, 149, (273,580,0): 111, 127, 150, (273,581,0): 111, 128, 148, (273,582,0): 114, 127, 146, (273,583,0): 114, 125, 145, (273,584,0): 112, 120, 139, (273,585,0): 112, 119, 137, (273,586,0): 110, 117, 135, (273,587,0): 108, 113, 132, (273,588,0): 106, 111, 130, (273,589,0): 108, 111, 128, (273,590,0): 109, 110, 128, (273,591,0): 109, 111, 126, (273,592,0): 110, 108, 121, (273,593,0): 106, 103, 114, (273,594,0): 103, 97, 109, (273,595,0): 102, 96, 108, (273,596,0): 105, 94, 108, (273,597,0): 101, 90, 104, (273,598,0): 94, 80, 95, (273,599,0): 86, 72, 87, (274,0,0): 60, 49, 57, (274,1,0): 60, 49, 57, (274,2,0): 59, 48, 56, (274,3,0): 59, 48, 56, (274,4,0): 58, 47, 55, (274,5,0): 58, 47, 55, (274,6,0): 58, 45, 54, (274,7,0): 58, 45, 54, (274,8,0): 58, 42, 52, (274,9,0): 57, 41, 51, (274,10,0): 58, 41, 51, (274,11,0): 57, 40, 50, (274,12,0): 57, 40, 50, (274,13,0): 56, 39, 49, (274,14,0): 56, 39, 49, (274,15,0): 56, 38, 50, (274,16,0): 58, 42, 55, (274,17,0): 59, 41, 57, (274,18,0): 61, 40, 57, (274,19,0): 63, 40, 56, (274,20,0): 65, 41, 55, (274,21,0): 71, 43, 57, (274,22,0): 75, 44, 59, (274,23,0): 76, 46, 56, (274,24,0): 82, 50, 61, (274,25,0): 82, 51, 57, (274,26,0): 83, 52, 58, (274,27,0): 83, 52, 57, (274,28,0): 82, 52, 54, (274,29,0): 80, 51, 53, (274,30,0): 79, 51, 50, (274,31,0): 76, 50, 51, (274,32,0): 75, 50, 54, (274,33,0): 73, 50, 56, (274,34,0): 73, 51, 54, (274,35,0): 74, 52, 55, (274,36,0): 74, 52, 55, (274,37,0): 75, 53, 56, (274,38,0): 75, 53, 55, (274,39,0): 75, 53, 55, (274,40,0): 75, 54, 53, (274,41,0): 75, 54, 53, (274,42,0): 75, 54, 53, (274,43,0): 76, 55, 54, (274,44,0): 76, 55, 52, (274,45,0): 77, 56, 53, (274,46,0): 77, 56, 53, (274,47,0): 77, 58, 52, (274,48,0): 76, 57, 51, (274,49,0): 76, 59, 51, (274,50,0): 78, 59, 52, (274,51,0): 80, 61, 54, (274,52,0): 82, 64, 54, (274,53,0): 84, 66, 56, (274,54,0): 87, 67, 56, (274,55,0): 88, 68, 57, (274,56,0): 92, 70, 57, (274,57,0): 93, 71, 58, (274,58,0): 94, 72, 58, (274,59,0): 95, 73, 59, (274,60,0): 98, 75, 59, (274,61,0): 100, 77, 61, (274,62,0): 101, 78, 62, (274,63,0): 101, 79, 58, (274,64,0): 106, 81, 59, (274,65,0): 106, 82, 58, (274,66,0): 108, 82, 59, (274,67,0): 108, 82, 59, (274,68,0): 109, 83, 60, (274,69,0): 109, 83, 58, (274,70,0): 111, 83, 59, (274,71,0): 111, 84, 57, (274,72,0): 114, 84, 58, (274,73,0): 114, 84, 58, (274,74,0): 114, 84, 58, (274,75,0): 115, 85, 57, (274,76,0): 116, 85, 57, (274,77,0): 117, 86, 57, (274,78,0): 117, 86, 57, (274,79,0): 118, 87, 58, (274,80,0): 120, 87, 56, (274,81,0): 121, 86, 56, (274,82,0): 121, 86, 56, (274,83,0): 122, 87, 57, (274,84,0): 122, 87, 57, (274,85,0): 123, 88, 58, (274,86,0): 123, 88, 58, (274,87,0): 124, 89, 59, (274,88,0): 124, 89, 59, (274,89,0): 124, 89, 59, (274,90,0): 124, 89, 59, (274,91,0): 124, 89, 59, (274,92,0): 124, 89, 59, (274,93,0): 124, 89, 59, (274,94,0): 124, 89, 59, (274,95,0): 123, 90, 59, (274,96,0): 116, 87, 57, (274,97,0): 115, 88, 58, (274,98,0): 118, 89, 59, (274,99,0): 116, 89, 59, (274,100,0): 117, 87, 59, (274,101,0): 114, 87, 58, (274,102,0): 114, 84, 58, (274,103,0): 111, 84, 57, (274,104,0): 112, 82, 56, (274,105,0): 111, 84, 57, (274,106,0): 113, 83, 59, (274,107,0): 112, 84, 60, (274,108,0): 114, 83, 62, (274,109,0): 111, 83, 61, (274,110,0): 112, 81, 60, (274,111,0): 111, 80, 59, (274,112,0): 109, 77, 56, (274,113,0): 108, 76, 55, (274,114,0): 107, 75, 54, (274,115,0): 106, 74, 53, (274,116,0): 105, 73, 50, (274,117,0): 105, 73, 50, (274,118,0): 106, 74, 51, (274,119,0): 107, 75, 50, (274,120,0): 107, 75, 50, (274,121,0): 107, 75, 50, (274,122,0): 109, 78, 50, (274,123,0): 111, 80, 52, (274,124,0): 113, 82, 54, (274,125,0): 114, 83, 54, (274,126,0): 116, 85, 56, (274,127,0): 119, 85, 57, (274,128,0): 120, 84, 58, (274,129,0): 121, 84, 58, (274,130,0): 121, 84, 57, (274,131,0): 121, 84, 57, (274,132,0): 121, 84, 57, (274,133,0): 121, 84, 57, (274,134,0): 121, 84, 57, (274,135,0): 121, 84, 55, (274,136,0): 122, 85, 56, (274,137,0): 123, 87, 55, (274,138,0): 123, 87, 55, (274,139,0): 123, 87, 55, (274,140,0): 121, 85, 51, (274,141,0): 120, 84, 50, (274,142,0): 118, 82, 48, (274,143,0): 117, 81, 49, (274,144,0): 117, 80, 51, (274,145,0): 117, 80, 51, (274,146,0): 118, 81, 52, (274,147,0): 117, 80, 51, (274,148,0): 116, 79, 50, (274,149,0): 114, 77, 48, (274,150,0): 112, 75, 46, (274,151,0): 111, 74, 45, (274,152,0): 108, 71, 42, (274,153,0): 108, 71, 42, (274,154,0): 107, 70, 41, (274,155,0): 107, 70, 41, (274,156,0): 107, 70, 41, (274,157,0): 108, 71, 42, (274,158,0): 110, 73, 44, (274,159,0): 110, 75, 45, (274,160,0): 110, 76, 48, (274,161,0): 110, 79, 48, (274,162,0): 115, 82, 49, (274,163,0): 118, 86, 48, (274,164,0): 123, 90, 49, (274,165,0): 131, 98, 53, (274,166,0): 145, 109, 61, (274,167,0): 152, 116, 64, (274,168,0): 161, 122, 67, (274,169,0): 167, 128, 71, (274,170,0): 174, 134, 75, (274,171,0): 176, 134, 74, (274,172,0): 175, 130, 71, (274,173,0): 172, 128, 67, (274,174,0): 173, 127, 67, (274,175,0): 174, 128, 66, (274,176,0): 174, 130, 65, (274,177,0): 174, 130, 65, (274,178,0): 170, 126, 63, (274,179,0): 162, 121, 59, (274,180,0): 158, 116, 58, (274,181,0): 154, 113, 59, (274,182,0): 145, 105, 54, (274,183,0): 136, 96, 47, (274,184,0): 131, 93, 48, (274,185,0): 126, 89, 45, (274,186,0): 119, 85, 40, (274,187,0): 116, 82, 37, (274,188,0): 118, 85, 40, (274,189,0): 125, 92, 47, (274,190,0): 134, 102, 55, (274,191,0): 139, 109, 57, (274,192,0): 151, 122, 62, (274,193,0): 158, 130, 65, (274,194,0): 167, 140, 71, (274,195,0): 173, 146, 75, (274,196,0): 177, 149, 75, (274,197,0): 181, 154, 73, (274,198,0): 190, 162, 79, (274,199,0): 195, 168, 79, (274,200,0): 205, 175, 85, (274,201,0): 211, 182, 88, (274,202,0): 221, 191, 95, (274,203,0): 230, 200, 102, (274,204,0): 237, 204, 107, (274,205,0): 237, 204, 107, (274,206,0): 236, 203, 106, (274,207,0): 232, 202, 104, (274,208,0): 226, 198, 98, (274,209,0): 224, 199, 96, (274,210,0): 225, 200, 97, (274,211,0): 226, 203, 99, (274,212,0): 232, 209, 105, (274,213,0): 238, 217, 112, (274,214,0): 245, 224, 119, (274,215,0): 248, 229, 124, (274,216,0): 249, 232, 126, (274,217,0): 248, 234, 127, (274,218,0): 248, 234, 127, (274,219,0): 245, 233, 125, (274,220,0): 242, 230, 122, (274,221,0): 241, 230, 122, (274,222,0): 242, 231, 123, (274,223,0): 243, 236, 122, (274,224,0): 248, 243, 123, (274,225,0): 248, 246, 123, (274,226,0): 251, 249, 126, (274,227,0): 254, 252, 129, (274,228,0): 255, 254, 131, (274,229,0): 255, 254, 131, (274,230,0): 255, 253, 130, (274,231,0): 254, 252, 129, (274,232,0): 252, 250, 127, (274,233,0): 253, 251, 128, (274,234,0): 255, 253, 130, (274,235,0): 255, 254, 131, (274,236,0): 255, 253, 130, (274,237,0): 253, 251, 128, (274,238,0): 250, 248, 125, (274,239,0): 249, 247, 124, (274,240,0): 249, 249, 125, (274,241,0): 248, 248, 124, (274,242,0): 249, 245, 122, (274,243,0): 248, 242, 120, (274,244,0): 250, 238, 118, (274,245,0): 250, 235, 116, (274,246,0): 252, 233, 115, (274,247,0): 252, 231, 114, (274,248,0): 250, 229, 112, (274,249,0): 246, 227, 109, (274,250,0): 244, 227, 109, (274,251,0): 247, 235, 115, (274,252,0): 255, 246, 125, (274,253,0): 255, 254, 131, (274,254,0): 255, 253, 130, (274,255,0): 249, 251, 124, (274,256,0): 252, 255, 129, (274,257,0): 251, 255, 129, (274,258,0): 252, 255, 128, (274,259,0): 254, 255, 128, (274,260,0): 254, 255, 127, (274,261,0): 253, 252, 125, (274,262,0): 253, 249, 123, (274,263,0): 251, 247, 122, (274,264,0): 247, 241, 117, (274,265,0): 241, 235, 113, (274,266,0): 234, 229, 111, (274,267,0): 230, 227, 110, (274,268,0): 232, 229, 114, (274,269,0): 232, 230, 117, (274,270,0): 228, 228, 114, (274,271,0): 223, 226, 113, (274,272,0): 216, 225, 110, (274,273,0): 216, 226, 111, (274,274,0): 216, 226, 113, (274,275,0): 214, 226, 114, (274,276,0): 212, 226, 115, (274,277,0): 209, 225, 118, (274,278,0): 208, 223, 118, (274,279,0): 206, 223, 121, (274,280,0): 202, 220, 121, (274,281,0): 203, 220, 126, (274,282,0): 202, 221, 129, (274,283,0): 202, 221, 131, (274,284,0): 197, 217, 130, (274,285,0): 192, 212, 127, (274,286,0): 186, 206, 121, (274,287,0): 180, 202, 117, (274,288,0): 177, 203, 116, (274,289,0): 175, 203, 116, (274,290,0): 171, 199, 115, (274,291,0): 169, 196, 115, (274,292,0): 174, 201, 124, (274,293,0): 180, 206, 133, (274,294,0): 180, 202, 137, (274,295,0): 172, 194, 130, (274,296,0): 164, 183, 127, (274,297,0): 156, 175, 120, (274,298,0): 151, 165, 114, (274,299,0): 148, 162, 113, (274,300,0): 149, 161, 113, (274,301,0): 146, 158, 110, (274,302,0): 139, 148, 101, (274,303,0): 134, 139, 98, (274,304,0): 139, 136, 103, (274,305,0): 139, 135, 106, (274,306,0): 136, 137, 106, (274,307,0): 132, 137, 105, (274,308,0): 131, 138, 105, (274,309,0): 132, 142, 108, (274,310,0): 140, 147, 116, (274,311,0): 146, 151, 121, (274,312,0): 155, 155, 129, (274,313,0): 174, 169, 149, (274,314,0): 198, 186, 172, (274,315,0): 218, 205, 196, (274,316,0): 245, 230, 223, (274,317,0): 255, 249, 246, (274,318,0): 255, 247, 246, (274,319,0): 249, 234, 229, (274,320,0): 219, 199, 190, (274,321,0): 210, 188, 175, (274,322,0): 189, 171, 159, (274,323,0): 166, 154, 140, (274,324,0): 147, 141, 125, (274,325,0): 135, 138, 121, (274,326,0): 131, 140, 123, (274,327,0): 130, 144, 127, (274,328,0): 128, 145, 127, (274,329,0): 124, 142, 126, (274,330,0): 118, 139, 124, (274,331,0): 116, 137, 122, (274,332,0): 117, 135, 123, (274,333,0): 114, 130, 119, (274,334,0): 109, 125, 114, (274,335,0): 106, 119, 109, (274,336,0): 103, 113, 102, (274,337,0): 101, 112, 98, (274,338,0): 102, 110, 97, (274,339,0): 102, 108, 96, (274,340,0): 104, 107, 96, (274,341,0): 101, 103, 92, (274,342,0): 97, 97, 87, (274,343,0): 94, 91, 82, (274,344,0): 98, 91, 83, (274,345,0): 96, 87, 80, (274,346,0): 92, 81, 75, (274,347,0): 88, 75, 69, (274,348,0): 83, 68, 63, (274,349,0): 81, 63, 59, (274,350,0): 79, 61, 57, (274,351,0): 78, 60, 56, (274,352,0): 82, 71, 67, (274,353,0): 86, 76, 74, (274,354,0): 92, 83, 78, (274,355,0): 93, 84, 79, (274,356,0): 91, 82, 75, (274,357,0): 91, 82, 75, (274,358,0): 93, 86, 78, (274,359,0): 96, 92, 83, (274,360,0): 97, 94, 89, (274,361,0): 98, 99, 94, (274,362,0): 101, 106, 102, (274,363,0): 106, 115, 112, (274,364,0): 112, 124, 122, (274,365,0): 115, 131, 130, (274,366,0): 119, 134, 137, (274,367,0): 119, 137, 141, (274,368,0): 123, 137, 146, (274,369,0): 124, 138, 149, (274,370,0): 125, 139, 150, (274,371,0): 126, 140, 151, (274,372,0): 125, 139, 152, (274,373,0): 122, 136, 149, (274,374,0): 120, 132, 146, (274,375,0): 119, 131, 145, (274,376,0): 117, 126, 143, (274,377,0): 116, 125, 142, (274,378,0): 118, 125, 144, (274,379,0): 121, 128, 147, (274,380,0): 123, 130, 149, (274,381,0): 121, 128, 147, (274,382,0): 115, 121, 143, (274,383,0): 111, 118, 137, (274,384,0): 110, 116, 132, (274,385,0): 112, 118, 132, (274,386,0): 116, 119, 134, (274,387,0): 116, 119, 134, (274,388,0): 115, 117, 132, (274,389,0): 111, 110, 126, (274,390,0): 107, 105, 119, (274,391,0): 104, 100, 115, (274,392,0): 104, 98, 112, (274,393,0): 103, 95, 110, (274,394,0): 103, 92, 106, (274,395,0): 100, 88, 102, (274,396,0): 96, 84, 98, (274,397,0): 94, 80, 95, (274,398,0): 91, 77, 92, (274,399,0): 89, 77, 87, (274,400,0): 84, 78, 82, (274,401,0): 82, 80, 81, (274,402,0): 84, 82, 85, (274,403,0): 86, 87, 91, (274,404,0): 88, 91, 98, (274,405,0): 92, 96, 105, (274,406,0): 94, 100, 112, (274,407,0): 96, 104, 117, (274,408,0): 95, 104, 119, (274,409,0): 96, 105, 120, (274,410,0): 97, 106, 123, (274,411,0): 99, 106, 124, (274,412,0): 100, 107, 125, (274,413,0): 99, 106, 122, (274,414,0): 100, 105, 124, (274,415,0): 101, 104, 123, (274,416,0): 103, 104, 125, (274,417,0): 103, 104, 125, (274,418,0): 104, 102, 126, (274,419,0): 103, 101, 123, (274,420,0): 104, 100, 123, (274,421,0): 106, 101, 123, (274,422,0): 109, 101, 124, (274,423,0): 110, 102, 125, (274,424,0): 114, 106, 129, (274,425,0): 115, 107, 128, (274,426,0): 118, 110, 131, (274,427,0): 120, 116, 133, (274,428,0): 123, 120, 137, (274,429,0): 127, 126, 142, (274,430,0): 128, 130, 145, (274,431,0): 134, 130, 147, (274,432,0): 136, 117, 139, (274,433,0): 136, 110, 135, (274,434,0): 130, 102, 125, (274,435,0): 118, 93, 114, (274,436,0): 112, 85, 104, (274,437,0): 103, 79, 95, (274,438,0): 99, 75, 89, (274,439,0): 97, 73, 86, (274,440,0): 99, 76, 86, (274,441,0): 98, 75, 81, (274,442,0): 100, 78, 81, (274,443,0): 104, 82, 84, (274,444,0): 109, 88, 87, (274,445,0): 113, 92, 91, (274,446,0): 114, 93, 90, (274,447,0): 113, 93, 92, (274,448,0): 116, 98, 98, (274,449,0): 115, 99, 100, (274,450,0): 115, 100, 103, (274,451,0): 116, 104, 108, (274,452,0): 119, 106, 113, (274,453,0): 121, 111, 119, (274,454,0): 123, 116, 124, (274,455,0): 124, 118, 130, (274,456,0): 125, 121, 135, (274,457,0): 123, 122, 136, (274,458,0): 121, 122, 140, (274,459,0): 121, 124, 143, (274,460,0): 119, 124, 144, (274,461,0): 117, 124, 143, (274,462,0): 117, 123, 145, (274,463,0): 117, 123, 145, (274,464,0): 121, 126, 148, (274,465,0): 121, 123, 146, (274,466,0): 118, 120, 143, (274,467,0): 115, 116, 137, (274,468,0): 112, 113, 134, (274,469,0): 111, 112, 133, (274,470,0): 112, 110, 132, (274,471,0): 111, 109, 130, (274,472,0): 117, 114, 135, (274,473,0): 118, 113, 133, (274,474,0): 121, 113, 134, (274,475,0): 120, 112, 133, (274,476,0): 117, 109, 130, (274,477,0): 112, 105, 123, (274,478,0): 109, 100, 119, (274,479,0): 106, 97, 114, (274,480,0): 112, 101, 115, (274,481,0): 111, 101, 112, (274,482,0): 106, 98, 109, (274,483,0): 103, 95, 106, (274,484,0): 100, 94, 104, (274,485,0): 99, 93, 103, (274,486,0): 96, 93, 100, (274,487,0): 95, 94, 100, (274,488,0): 101, 102, 107, (274,489,0): 104, 105, 110, (274,490,0): 106, 109, 114, (274,491,0): 109, 112, 117, (274,492,0): 112, 117, 120, (274,493,0): 118, 123, 126, (274,494,0): 124, 132, 134, (274,495,0): 129, 138, 143, (274,496,0): 128, 136, 147, (274,497,0): 127, 136, 151, (274,498,0): 127, 139, 153, (274,499,0): 129, 141, 155, (274,500,0): 133, 145, 159, (274,501,0): 136, 148, 162, (274,502,0): 138, 152, 165, (274,503,0): 140, 154, 167, (274,504,0): 141, 157, 170, (274,505,0): 143, 159, 172, (274,506,0): 144, 161, 171, (274,507,0): 144, 161, 171, (274,508,0): 142, 161, 168, (274,509,0): 142, 161, 168, (274,510,0): 146, 165, 172, (274,511,0): 149, 168, 175, (274,512,0): 156, 173, 183, (274,513,0): 156, 172, 185, (274,514,0): 157, 173, 186, (274,515,0): 156, 174, 186, (274,516,0): 154, 172, 184, (274,517,0): 151, 169, 181, (274,518,0): 147, 165, 177, (274,519,0): 144, 164, 173, (274,520,0): 149, 169, 180, (274,521,0): 152, 172, 183, (274,522,0): 153, 173, 184, (274,523,0): 149, 171, 182, (274,524,0): 145, 167, 178, (274,525,0): 141, 165, 175, (274,526,0): 142, 164, 175, (274,527,0): 145, 165, 176, (274,528,0): 151, 163, 177, (274,529,0): 152, 159, 177, (274,530,0): 149, 156, 174, (274,531,0): 142, 151, 168, (274,532,0): 133, 144, 162, (274,533,0): 125, 138, 155, (274,534,0): 118, 134, 150, (274,535,0): 113, 130, 146, (274,536,0): 107, 125, 139, (274,537,0): 111, 129, 141, (274,538,0): 115, 133, 143, (274,539,0): 120, 137, 144, (274,540,0): 123, 138, 143, (274,541,0): 121, 136, 139, (274,542,0): 118, 132, 133, (274,543,0): 116, 130, 133, (274,544,0): 115, 123, 134, (274,545,0): 114, 122, 135, (274,546,0): 114, 120, 132, (274,547,0): 113, 119, 131, (274,548,0): 113, 117, 128, (274,549,0): 112, 116, 125, (274,550,0): 112, 115, 122, (274,551,0): 111, 114, 121, (274,552,0): 115, 120, 126, (274,553,0): 114, 121, 127, (274,554,0): 116, 123, 131, (274,555,0): 117, 127, 136, (274,556,0): 119, 129, 139, (274,557,0): 117, 131, 140, (274,558,0): 117, 131, 142, (274,559,0): 115, 131, 144, (274,560,0): 115, 131, 144, (274,561,0): 114, 132, 144, (274,562,0): 116, 132, 145, (274,563,0): 117, 133, 146, (274,564,0): 116, 132, 145, (274,565,0): 116, 132, 145, (274,566,0): 117, 131, 144, (274,567,0): 116, 130, 143, (274,568,0): 109, 123, 136, (274,569,0): 108, 122, 135, (274,570,0): 107, 119, 133, (274,571,0): 106, 118, 132, (274,572,0): 106, 118, 132, (274,573,0): 106, 118, 132, (274,574,0): 109, 118, 133, (274,575,0): 106, 119, 136, (274,576,0): 103, 121, 143, (274,577,0): 101, 123, 146, (274,578,0): 103, 123, 147, (274,579,0): 107, 125, 147, (274,580,0): 109, 125, 148, (274,581,0): 109, 126, 146, (274,582,0): 112, 125, 144, (274,583,0): 113, 124, 144, (274,584,0): 110, 118, 137, (274,585,0): 109, 116, 134, (274,586,0): 108, 113, 132, (274,587,0): 109, 112, 129, (274,588,0): 109, 110, 128, (274,589,0): 108, 110, 125, (274,590,0): 109, 108, 124, (274,591,0): 110, 108, 122, (274,592,0): 107, 105, 118, (274,593,0): 104, 101, 112, (274,594,0): 102, 96, 108, (274,595,0): 100, 94, 106, (274,596,0): 102, 91, 105, (274,597,0): 97, 86, 100, (274,598,0): 90, 76, 91, (274,599,0): 83, 69, 84, (275,0,0): 60, 49, 57, (275,1,0): 60, 49, 57, (275,2,0): 59, 48, 56, (275,3,0): 59, 48, 56, (275,4,0): 58, 47, 55, (275,5,0): 58, 47, 55, (275,6,0): 58, 45, 54, (275,7,0): 58, 45, 54, (275,8,0): 58, 42, 52, (275,9,0): 58, 42, 52, (275,10,0): 59, 42, 52, (275,11,0): 58, 41, 51, (275,12,0): 57, 40, 50, (275,13,0): 57, 40, 50, (275,14,0): 57, 40, 50, (275,15,0): 56, 38, 50, (275,16,0): 58, 42, 55, (275,17,0): 58, 42, 55, (275,18,0): 61, 40, 55, (275,19,0): 63, 41, 54, (275,20,0): 66, 42, 56, (275,21,0): 70, 44, 57, (275,22,0): 73, 45, 57, (275,23,0): 77, 47, 57, (275,24,0): 82, 51, 59, (275,25,0): 83, 52, 58, (275,26,0): 82, 51, 57, (275,27,0): 81, 52, 56, (275,28,0): 81, 52, 54, (275,29,0): 78, 52, 53, (275,30,0): 77, 51, 50, (275,31,0): 76, 52, 52, (275,32,0): 75, 50, 54, (275,33,0): 73, 50, 56, (275,34,0): 73, 51, 54, (275,35,0): 74, 52, 55, (275,36,0): 74, 52, 55, (275,37,0): 75, 53, 56, (275,38,0): 75, 53, 55, (275,39,0): 75, 53, 55, (275,40,0): 75, 54, 53, (275,41,0): 76, 55, 54, (275,42,0): 76, 55, 54, (275,43,0): 76, 55, 54, (275,44,0): 77, 56, 53, (275,45,0): 78, 57, 54, (275,46,0): 78, 57, 54, (275,47,0): 78, 57, 52, (275,48,0): 76, 57, 51, (275,49,0): 77, 58, 51, (275,50,0): 79, 60, 53, (275,51,0): 81, 63, 53, (275,52,0): 83, 65, 55, (275,53,0): 85, 67, 55, (275,54,0): 87, 67, 56, (275,55,0): 88, 69, 55, (275,56,0): 94, 72, 59, (275,57,0): 94, 72, 58, (275,58,0): 95, 73, 59, (275,59,0): 98, 75, 59, (275,60,0): 100, 77, 61, (275,61,0): 101, 78, 60, (275,62,0): 102, 79, 61, (275,63,0): 103, 81, 60, (275,64,0): 107, 83, 59, (275,65,0): 107, 83, 57, (275,66,0): 109, 83, 60, (275,67,0): 109, 83, 58, (275,68,0): 110, 84, 59, (275,69,0): 110, 84, 57, (275,70,0): 112, 85, 58, (275,71,0): 112, 85, 58, (275,72,0): 115, 85, 59, (275,73,0): 116, 86, 58, (275,74,0): 116, 86, 58, (275,75,0): 116, 87, 57, (275,76,0): 118, 87, 58, (275,77,0): 118, 87, 58, (275,78,0): 119, 88, 59, (275,79,0): 121, 88, 57, (275,80,0): 122, 87, 57, (275,81,0): 123, 88, 58, (275,82,0): 123, 88, 58, (275,83,0): 123, 88, 58, (275,84,0): 124, 89, 59, (275,85,0): 124, 89, 59, (275,86,0): 125, 90, 60, (275,87,0): 125, 90, 60, (275,88,0): 125, 90, 60, (275,89,0): 125, 90, 60, (275,90,0): 125, 90, 60, (275,91,0): 125, 90, 60, (275,92,0): 125, 90, 60, (275,93,0): 125, 90, 60, (275,94,0): 125, 90, 60, (275,95,0): 124, 91, 60, (275,96,0): 119, 88, 59, (275,97,0): 118, 89, 59, (275,98,0): 120, 89, 60, (275,99,0): 119, 90, 60, (275,100,0): 119, 88, 60, (275,101,0): 116, 86, 58, (275,102,0): 115, 83, 58, (275,103,0): 113, 83, 57, (275,104,0): 111, 79, 54, (275,105,0): 110, 80, 54, (275,106,0): 112, 80, 57, (275,107,0): 111, 81, 57, (275,108,0): 112, 80, 59, (275,109,0): 111, 80, 59, (275,110,0): 112, 80, 59, (275,111,0): 112, 80, 59, (275,112,0): 109, 77, 56, (275,113,0): 108, 76, 55, (275,114,0): 107, 75, 54, (275,115,0): 105, 73, 50, (275,116,0): 105, 73, 50, (275,117,0): 105, 73, 48, (275,118,0): 106, 74, 49, (275,119,0): 106, 74, 49, (275,120,0): 107, 75, 50, (275,121,0): 108, 77, 49, (275,122,0): 110, 79, 51, (275,123,0): 112, 81, 52, (275,124,0): 114, 83, 54, (275,125,0): 117, 86, 57, (275,126,0): 118, 87, 58, (275,127,0): 121, 87, 59, (275,128,0): 122, 86, 60, (275,129,0): 123, 86, 59, (275,130,0): 123, 86, 59, (275,131,0): 123, 86, 59, (275,132,0): 123, 86, 59, (275,133,0): 123, 86, 57, (275,134,0): 123, 86, 57, (275,135,0): 123, 87, 55, (275,136,0): 123, 87, 55, (275,137,0): 123, 87, 55, (275,138,0): 123, 87, 55, (275,139,0): 123, 87, 53, (275,140,0): 122, 86, 52, (275,141,0): 120, 84, 50, (275,142,0): 118, 82, 48, (275,143,0): 117, 81, 47, (275,144,0): 118, 82, 50, (275,145,0): 118, 82, 50, (275,146,0): 118, 81, 52, (275,147,0): 118, 82, 50, (275,148,0): 116, 79, 50, (275,149,0): 114, 78, 46, (275,150,0): 112, 75, 46, (275,151,0): 111, 75, 43, (275,152,0): 107, 70, 41, (275,153,0): 107, 71, 39, (275,154,0): 107, 70, 41, (275,155,0): 108, 72, 40, (275,156,0): 110, 73, 44, (275,157,0): 113, 77, 45, (275,158,0): 115, 78, 49, (275,159,0): 116, 81, 49, (275,160,0): 115, 82, 49, (275,161,0): 115, 85, 49, (275,162,0): 121, 89, 51, (275,163,0): 124, 92, 51, (275,164,0): 131, 98, 53, (275,165,0): 142, 108, 60, (275,166,0): 156, 120, 68, (275,167,0): 165, 130, 74, (275,168,0): 174, 135, 78, (275,169,0): 180, 141, 82, (275,170,0): 186, 146, 85, (275,171,0): 183, 143, 81, (275,172,0): 176, 135, 73, (275,173,0): 172, 128, 65, (275,174,0): 173, 127, 65, (275,175,0): 176, 130, 68, (275,176,0): 177, 134, 66, (275,177,0): 174, 131, 63, (275,178,0): 169, 125, 60, (275,179,0): 164, 120, 59, (275,180,0): 158, 116, 58, (275,181,0): 154, 111, 58, (275,182,0): 145, 103, 53, (275,183,0): 137, 96, 50, (275,184,0): 131, 93, 48, (275,185,0): 127, 88, 45, (275,186,0): 123, 86, 42, (275,187,0): 120, 86, 40, (275,188,0): 125, 91, 43, (275,189,0): 134, 102, 53, (275,190,0): 145, 113, 62, (275,191,0): 153, 122, 67, (275,192,0): 163, 133, 71, (275,193,0): 167, 140, 71, (275,194,0): 175, 146, 76, (275,195,0): 181, 153, 79, (275,196,0): 184, 157, 78, (275,197,0): 189, 163, 79, (275,198,0): 197, 170, 83, (275,199,0): 202, 175, 84, (275,200,0): 208, 182, 87, (275,201,0): 213, 187, 90, (275,202,0): 221, 196, 96, (275,203,0): 228, 203, 102, (275,204,0): 236, 208, 108, (275,205,0): 238, 210, 110, (275,206,0): 238, 210, 110, (275,207,0): 235, 210, 107, (275,208,0): 234, 211, 105, (275,209,0): 234, 213, 104, (275,210,0): 236, 215, 106, (275,211,0): 240, 219, 110, (275,212,0): 243, 225, 115, (275,213,0): 249, 231, 121, (275,214,0): 253, 237, 126, (275,215,0): 255, 241, 130, (275,216,0): 255, 244, 132, (275,217,0): 255, 243, 131, (275,218,0): 253, 241, 129, (275,219,0): 250, 238, 126, (275,220,0): 247, 237, 124, (275,221,0): 246, 236, 123, (275,222,0): 247, 237, 124, (275,223,0): 245, 238, 122, (275,224,0): 252, 247, 127, (275,225,0): 252, 250, 127, (275,226,0): 254, 252, 131, (275,227,0): 255, 254, 131, (275,228,0): 255, 255, 135, (275,229,0): 255, 255, 133, (275,230,0): 255, 255, 134, (275,231,0): 255, 255, 132, (275,232,0): 253, 251, 130, (275,233,0): 254, 252, 129, (275,234,0): 255, 253, 132, (275,235,0): 255, 254, 131, (275,236,0): 255, 255, 134, (275,237,0): 255, 254, 131, (275,238,0): 254, 252, 131, (275,239,0): 252, 252, 128, (275,240,0): 253, 255, 132, (275,241,0): 253, 255, 130, (275,242,0): 254, 252, 131, (275,243,0): 254, 250, 127, (275,244,0): 255, 247, 128, (275,245,0): 255, 245, 125, (275,246,0): 255, 242, 126, (275,247,0): 255, 241, 123, (275,248,0): 255, 235, 120, (275,249,0): 250, 231, 113, (275,250,0): 244, 227, 111, (275,251,0): 245, 233, 113, (275,252,0): 253, 244, 125, (275,253,0): 255, 252, 130, (275,254,0): 255, 253, 132, (275,255,0): 251, 251, 127, (275,256,0): 252, 255, 131, (275,257,0): 252, 255, 129, (275,258,0): 254, 255, 129, (275,259,0): 255, 255, 128, (275,260,0): 255, 254, 127, (275,261,0): 253, 252, 125, (275,262,0): 253, 249, 123, (275,263,0): 252, 248, 122, (275,264,0): 248, 243, 117, (275,265,0): 243, 237, 113, (275,266,0): 236, 232, 109, (275,267,0): 233, 231, 112, (275,268,0): 235, 232, 115, (275,269,0): 236, 235, 117, (275,270,0): 235, 236, 119, (275,271,0): 232, 235, 118, (275,272,0): 229, 239, 116, (275,273,0): 229, 241, 117, (275,274,0): 228, 242, 119, (275,275,0): 228, 242, 121, (275,276,0): 226, 241, 122, (275,277,0): 224, 238, 124, (275,278,0): 219, 236, 124, (275,279,0): 217, 235, 127, (275,280,0): 212, 231, 126, (275,281,0): 213, 231, 131, (275,282,0): 210, 230, 131, (275,283,0): 208, 229, 134, (275,284,0): 204, 225, 132, (275,285,0): 199, 220, 129, (275,286,0): 194, 214, 125, (275,287,0): 189, 212, 122, (275,288,0): 186, 212, 123, (275,289,0): 183, 212, 122, (275,290,0): 179, 207, 122, (275,291,0): 176, 204, 120, (275,292,0): 180, 207, 130, (275,293,0): 185, 211, 137, (275,294,0): 184, 207, 139, (275,295,0): 175, 197, 132, (275,296,0): 164, 184, 123, (275,297,0): 155, 174, 118, (275,298,0): 148, 165, 111, (275,299,0): 148, 162, 109, (275,300,0): 152, 166, 113, (275,301,0): 152, 165, 112, (275,302,0): 143, 156, 103, (275,303,0): 137, 144, 100, (275,304,0): 138, 137, 106, (275,305,0): 137, 136, 108, (275,306,0): 134, 137, 108, (275,307,0): 133, 138, 106, (275,308,0): 131, 141, 107, (275,309,0): 135, 145, 111, (275,310,0): 139, 148, 117, (275,311,0): 144, 150, 122, (275,312,0): 155, 157, 133, (275,313,0): 179, 177, 156, (275,314,0): 200, 193, 177, (275,315,0): 210, 200, 190, (275,316,0): 224, 214, 205, (275,317,0): 241, 230, 226, (275,318,0): 239, 229, 227, (275,319,0): 228, 217, 213, (275,320,0): 212, 195, 188, (275,321,0): 205, 188, 178, (275,322,0): 188, 175, 166, (275,323,0): 167, 159, 148, (275,324,0): 148, 146, 133, (275,325,0): 137, 141, 126, (275,326,0): 134, 145, 129, (275,327,0): 135, 149, 134, (275,328,0): 129, 146, 130, (275,329,0): 124, 142, 128, (275,330,0): 120, 138, 124, (275,331,0): 117, 135, 121, (275,332,0): 115, 131, 120, (275,333,0): 114, 127, 117, (275,334,0): 108, 121, 111, (275,335,0): 105, 117, 107, (275,336,0): 101, 113, 101, (275,337,0): 100, 111, 97, (275,338,0): 99, 110, 96, (275,339,0): 102, 110, 97, (275,340,0): 103, 109, 97, (275,341,0): 103, 106, 95, (275,342,0): 98, 100, 89, (275,343,0): 95, 95, 85, (275,344,0): 96, 92, 83, (275,345,0): 96, 89, 81, (275,346,0): 94, 85, 78, (275,347,0): 91, 80, 74, (275,348,0): 88, 75, 69, (275,349,0): 83, 70, 64, (275,350,0): 80, 65, 60, (275,351,0): 77, 63, 60, (275,352,0): 79, 69, 67, (275,353,0): 83, 75, 72, (275,354,0): 90, 81, 76, (275,355,0): 93, 84, 79, (275,356,0): 93, 84, 79, (275,357,0): 92, 85, 77, (275,358,0): 91, 87, 78, (275,359,0): 92, 89, 82, (275,360,0): 95, 94, 89, (275,361,0): 98, 99, 94, (275,362,0): 102, 107, 103, (275,363,0): 107, 116, 115, (275,364,0): 112, 124, 124, (275,365,0): 116, 130, 131, (275,366,0): 118, 133, 136, (275,367,0): 118, 136, 140, (275,368,0): 121, 135, 144, (275,369,0): 122, 136, 147, (275,370,0): 124, 138, 149, (275,371,0): 125, 139, 150, (275,372,0): 125, 139, 152, (275,373,0): 124, 138, 151, (275,374,0): 124, 136, 150, (275,375,0): 123, 135, 149, (275,376,0): 119, 128, 145, (275,377,0): 118, 127, 144, (275,378,0): 119, 126, 145, (275,379,0): 121, 128, 147, (275,380,0): 123, 130, 149, (275,381,0): 121, 128, 147, (275,382,0): 116, 122, 144, (275,383,0): 112, 119, 138, (275,384,0): 109, 115, 131, (275,385,0): 112, 118, 132, (275,386,0): 117, 120, 135, (275,387,0): 118, 121, 136, (275,388,0): 117, 119, 134, (275,389,0): 112, 114, 129, (275,390,0): 108, 107, 121, (275,391,0): 105, 103, 117, (275,392,0): 106, 102, 116, (275,393,0): 106, 100, 114, (275,394,0): 104, 96, 111, (275,395,0): 99, 91, 104, (275,396,0): 96, 85, 99, (275,397,0): 92, 81, 95, (275,398,0): 89, 77, 91, (275,399,0): 86, 76, 87, (275,400,0): 79, 74, 80, (275,401,0): 78, 78, 80, (275,402,0): 81, 80, 85, (275,403,0): 85, 86, 91, (275,404,0): 87, 91, 100, (275,405,0): 91, 98, 108, (275,406,0): 94, 102, 115, (275,407,0): 96, 104, 117, (275,408,0): 97, 106, 121, (275,409,0): 98, 105, 121, (275,410,0): 98, 105, 121, (275,411,0): 98, 104, 120, (275,412,0): 98, 104, 120, (275,413,0): 99, 102, 117, (275,414,0): 99, 101, 116, (275,415,0): 99, 101, 116, (275,416,0): 101, 102, 122, (275,417,0): 103, 101, 122, (275,418,0): 103, 101, 122, (275,419,0): 104, 101, 122, (275,420,0): 105, 100, 120, (275,421,0): 108, 100, 121, (275,422,0): 109, 100, 119, (275,423,0): 112, 100, 120, (275,424,0): 117, 105, 125, (275,425,0): 119, 107, 127, (275,426,0): 120, 111, 128, (275,427,0): 123, 114, 131, (275,428,0): 124, 118, 132, (275,429,0): 123, 119, 133, (275,430,0): 123, 119, 133, (275,431,0): 128, 117, 133, (275,432,0): 124, 101, 121, (275,433,0): 122, 93, 113, (275,434,0): 114, 85, 105, (275,435,0): 104, 75, 93, (275,436,0): 97, 69, 84, (275,437,0): 91, 65, 78, (275,438,0): 90, 64, 77, (275,439,0): 87, 64, 74, (275,440,0): 91, 68, 76, (275,441,0): 92, 69, 75, (275,442,0): 95, 73, 76, (275,443,0): 100, 78, 80, (275,444,0): 106, 85, 84, (275,445,0): 110, 90, 89, (275,446,0): 114, 93, 90, (275,447,0): 115, 95, 94, (275,448,0): 114, 96, 96, (275,449,0): 113, 97, 98, (275,450,0): 116, 100, 103, (275,451,0): 118, 103, 106, (275,452,0): 120, 108, 112, (275,453,0): 122, 111, 117, (275,454,0): 124, 114, 123, (275,455,0): 124, 116, 127, (275,456,0): 123, 120, 131, (275,457,0): 121, 119, 132, (275,458,0): 119, 118, 134, (275,459,0): 116, 117, 135, (275,460,0): 115, 118, 137, (275,461,0): 114, 119, 138, (275,462,0): 116, 121, 141, (275,463,0): 117, 122, 142, (275,464,0): 121, 123, 144, (275,465,0): 120, 121, 142, (275,466,0): 117, 118, 139, (275,467,0): 116, 114, 135, (275,468,0): 113, 111, 133, (275,469,0): 111, 109, 130, (275,470,0): 110, 108, 129, (275,471,0): 111, 108, 127, (275,472,0): 118, 113, 133, (275,473,0): 117, 113, 130, (275,474,0): 118, 111, 129, (275,475,0): 116, 109, 127, (275,476,0): 113, 106, 124, (275,477,0): 110, 103, 119, (275,478,0): 108, 99, 118, (275,479,0): 107, 98, 115, (275,480,0): 112, 101, 115, (275,481,0): 111, 101, 112, (275,482,0): 106, 98, 109, (275,483,0): 104, 96, 107, (275,484,0): 102, 94, 105, (275,485,0): 100, 94, 104, (275,486,0): 98, 95, 102, (275,487,0): 98, 95, 102, (275,488,0): 104, 103, 109, (275,489,0): 106, 107, 112, (275,490,0): 108, 111, 116, (275,491,0): 111, 114, 119, (275,492,0): 113, 118, 121, (275,493,0): 118, 123, 126, (275,494,0): 123, 131, 133, (275,495,0): 128, 135, 141, (275,496,0): 126, 134, 145, (275,497,0): 127, 136, 151, (275,498,0): 127, 139, 153, (275,499,0): 130, 142, 156, (275,500,0): 133, 145, 159, (275,501,0): 135, 147, 159, (275,502,0): 136, 150, 163, (275,503,0): 137, 151, 162, (275,504,0): 139, 153, 166, (275,505,0): 140, 157, 167, (275,506,0): 143, 160, 170, (275,507,0): 144, 161, 171, (275,508,0): 143, 162, 169, (275,509,0): 145, 164, 171, (275,510,0): 149, 168, 175, (275,511,0): 152, 170, 180, (275,512,0): 156, 174, 186, (275,513,0): 156, 174, 186, (275,514,0): 157, 175, 187, (275,515,0): 156, 174, 186, (275,516,0): 155, 173, 185, (275,517,0): 152, 170, 180, (275,518,0): 150, 168, 178, (275,519,0): 148, 166, 176, (275,520,0): 150, 170, 179, (275,521,0): 152, 172, 179, (275,522,0): 153, 173, 180, (275,523,0): 150, 170, 177, (275,524,0): 146, 166, 173, (275,525,0): 144, 164, 171, (275,526,0): 144, 164, 171, (275,527,0): 146, 165, 172, (275,528,0): 154, 166, 178, (275,529,0): 154, 163, 178, (275,530,0): 151, 160, 177, (275,531,0): 144, 156, 172, (275,532,0): 136, 149, 166, (275,533,0): 128, 144, 160, (275,534,0): 121, 138, 154, (275,535,0): 118, 135, 151, (275,536,0): 112, 130, 144, (275,537,0): 113, 131, 145, (275,538,0): 116, 134, 144, (275,539,0): 118, 137, 144, (275,540,0): 122, 137, 144, (275,541,0): 122, 137, 142, (275,542,0): 122, 136, 139, (275,543,0): 121, 134, 140, (275,544,0): 121, 131, 143, (275,545,0): 121, 128, 144, (275,546,0): 121, 127, 141, (275,547,0): 119, 125, 137, (275,548,0): 118, 122, 133, (275,549,0): 116, 120, 131, (275,550,0): 116, 119, 128, (275,551,0): 114, 119, 125, (275,552,0): 118, 123, 129, (275,553,0): 117, 124, 132, (275,554,0): 118, 127, 136, (275,555,0): 119, 129, 138, (275,556,0): 119, 132, 141, (275,557,0): 120, 134, 145, (275,558,0): 119, 135, 148, (275,559,0): 120, 136, 149, (275,560,0): 119, 135, 150, (275,561,0): 119, 135, 151, (275,562,0): 120, 136, 152, (275,563,0): 121, 137, 153, (275,564,0): 122, 138, 154, (275,565,0): 122, 138, 154, (275,566,0): 124, 137, 154, (275,567,0): 124, 137, 154, (275,568,0): 116, 129, 146, (275,569,0): 114, 127, 144, (275,570,0): 112, 125, 142, (275,571,0): 110, 123, 140, (275,572,0): 108, 121, 138, (275,573,0): 108, 121, 138, (275,574,0): 107, 120, 137, (275,575,0): 106, 121, 140, (275,576,0): 101, 121, 145, (275,577,0): 101, 123, 147, (275,578,0): 103, 123, 148, (275,579,0): 104, 124, 148, (275,580,0): 107, 123, 146, (275,581,0): 109, 124, 145, (275,582,0): 111, 123, 145, (275,583,0): 112, 123, 141, (275,584,0): 109, 116, 134, (275,585,0): 107, 113, 129, (275,586,0): 106, 109, 126, (275,587,0): 105, 107, 122, (275,588,0): 107, 106, 120, (275,589,0): 108, 106, 120, (275,590,0): 108, 104, 118, (275,591,0): 106, 102, 116, (275,592,0): 106, 103, 114, (275,593,0): 103, 100, 111, (275,594,0): 101, 95, 107, (275,595,0): 100, 92, 105, (275,596,0): 100, 89, 103, (275,597,0): 95, 83, 97, (275,598,0): 88, 74, 89, (275,599,0): 82, 68, 83, (276,0,0): 60, 49, 57, (276,1,0): 60, 49, 57, (276,2,0): 59, 48, 56, (276,3,0): 59, 48, 56, (276,4,0): 58, 47, 55, (276,5,0): 58, 47, 55, (276,6,0): 58, 45, 54, (276,7,0): 58, 45, 54, (276,8,0): 59, 43, 53, (276,9,0): 58, 42, 52, (276,10,0): 59, 42, 52, (276,11,0): 59, 42, 52, (276,12,0): 58, 41, 51, (276,13,0): 57, 40, 50, (276,14,0): 57, 40, 50, (276,15,0): 57, 40, 50, (276,16,0): 59, 43, 54, (276,17,0): 59, 43, 54, (276,18,0): 62, 42, 54, (276,19,0): 64, 42, 55, (276,20,0): 66, 42, 56, (276,21,0): 71, 45, 58, (276,22,0): 74, 46, 58, (276,23,0): 75, 48, 57, (276,24,0): 82, 52, 60, (276,25,0): 82, 53, 58, (276,26,0): 81, 52, 57, (276,27,0): 78, 52, 55, (276,28,0): 78, 52, 53, (276,29,0): 77, 53, 53, (276,30,0): 76, 52, 52, (276,31,0): 77, 52, 55, (276,32,0): 75, 50, 54, (276,33,0): 75, 50, 56, (276,34,0): 75, 50, 54, (276,35,0): 76, 51, 55, (276,36,0): 76, 51, 55, (276,37,0): 77, 52, 56, (276,38,0): 77, 52, 55, (276,39,0): 77, 52, 55, (276,40,0): 78, 54, 54, (276,41,0): 78, 54, 54, (276,42,0): 78, 54, 54, (276,43,0): 79, 55, 55, (276,44,0): 80, 56, 54, (276,45,0): 80, 56, 54, (276,46,0): 80, 56, 54, (276,47,0): 79, 58, 53, (276,48,0): 78, 57, 52, (276,49,0): 79, 59, 52, (276,50,0): 80, 60, 51, (276,51,0): 82, 62, 53, (276,52,0): 84, 64, 55, (276,53,0): 86, 66, 55, (276,54,0): 90, 68, 57, (276,55,0): 91, 69, 56, (276,56,0): 96, 73, 59, (276,57,0): 97, 74, 58, (276,58,0): 98, 75, 59, (276,59,0): 101, 75, 58, (276,60,0): 103, 77, 60, (276,61,0): 105, 80, 60, (276,62,0): 106, 81, 61, (276,63,0): 106, 81, 59, (276,64,0): 109, 83, 58, (276,65,0): 109, 83, 56, (276,66,0): 111, 83, 59, (276,67,0): 111, 84, 57, (276,68,0): 112, 85, 58, (276,69,0): 112, 85, 58, (276,70,0): 115, 85, 59, (276,71,0): 115, 85, 57, (276,72,0): 118, 87, 59, (276,73,0): 118, 87, 58, (276,74,0): 119, 88, 59, (276,75,0): 119, 88, 57, (276,76,0): 122, 89, 58, (276,77,0): 122, 89, 58, (276,78,0): 122, 89, 58, (276,79,0): 123, 90, 59, (276,80,0): 124, 89, 59, (276,81,0): 124, 89, 57, (276,82,0): 125, 90, 58, (276,83,0): 125, 90, 58, (276,84,0): 126, 91, 59, (276,85,0): 126, 91, 59, (276,86,0): 126, 91, 59, (276,87,0): 127, 92, 60, (276,88,0): 127, 92, 60, (276,89,0): 127, 92, 60, (276,90,0): 127, 92, 60, (276,91,0): 127, 92, 60, (276,92,0): 127, 92, 60, (276,93,0): 127, 92, 60, (276,94,0): 127, 92, 60, (276,95,0): 127, 92, 60, (276,96,0): 123, 90, 59, (276,97,0): 122, 91, 60, (276,98,0): 124, 91, 60, (276,99,0): 121, 90, 59, (276,100,0): 122, 88, 60, (276,101,0): 118, 87, 58, (276,102,0): 118, 84, 57, (276,103,0): 115, 84, 56, (276,104,0): 112, 78, 51, (276,105,0): 110, 79, 51, (276,106,0): 112, 78, 53, (276,107,0): 110, 78, 53, (276,108,0): 112, 77, 55, (276,109,0): 111, 79, 56, (276,110,0): 113, 78, 56, (276,111,0): 112, 80, 57, (276,112,0): 110, 78, 55, (276,113,0): 109, 77, 54, (276,114,0): 107, 75, 52, (276,115,0): 106, 74, 51, (276,116,0): 105, 73, 50, (276,117,0): 106, 74, 49, (276,118,0): 106, 74, 49, (276,119,0): 107, 76, 48, (276,120,0): 109, 78, 50, (276,121,0): 110, 79, 51, (276,122,0): 111, 80, 52, (276,123,0): 114, 83, 54, (276,124,0): 116, 85, 56, (276,125,0): 118, 87, 56, (276,126,0): 120, 89, 58, (276,127,0): 123, 90, 59, (276,128,0): 123, 88, 60, (276,129,0): 124, 87, 60, (276,130,0): 124, 87, 60, (276,131,0): 124, 87, 58, (276,132,0): 124, 87, 58, (276,133,0): 124, 87, 58, (276,134,0): 124, 87, 58, (276,135,0): 124, 88, 56, (276,136,0): 122, 86, 54, (276,137,0): 122, 86, 52, (276,138,0): 123, 87, 53, (276,139,0): 123, 87, 53, (276,140,0): 121, 85, 51, (276,141,0): 120, 84, 48, (276,142,0): 118, 82, 46, (276,143,0): 117, 81, 47, (276,144,0): 118, 82, 48, (276,145,0): 118, 82, 48, (276,146,0): 118, 82, 50, (276,147,0): 117, 81, 47, (276,148,0): 115, 79, 47, (276,149,0): 112, 76, 42, (276,150,0): 110, 74, 42, (276,151,0): 108, 72, 38, (276,152,0): 108, 72, 40, (276,153,0): 108, 72, 38, (276,154,0): 109, 73, 41, (276,155,0): 111, 75, 41, (276,156,0): 114, 78, 46, (276,157,0): 118, 82, 48, (276,158,0): 121, 85, 53, (276,159,0): 122, 88, 53, (276,160,0): 121, 89, 51, (276,161,0): 124, 92, 53, (276,162,0): 130, 97, 56, (276,163,0): 135, 102, 57, (276,164,0): 142, 108, 60, (276,165,0): 153, 120, 67, (276,166,0): 166, 131, 75, (276,167,0): 174, 140, 79, (276,168,0): 184, 146, 84, (276,169,0): 189, 151, 88, (276,170,0): 193, 154, 89, (276,171,0): 189, 150, 83, (276,172,0): 181, 140, 74, (276,173,0): 174, 133, 67, (276,174,0): 176, 132, 67, (276,175,0): 178, 135, 67, (276,176,0): 179, 134, 66, (276,177,0): 174, 129, 61, (276,178,0): 168, 124, 59, (276,179,0): 165, 121, 60, (276,180,0): 159, 117, 59, (276,181,0): 153, 110, 59, (276,182,0): 146, 104, 56, (276,183,0): 141, 100, 56, (276,184,0): 130, 91, 48, (276,185,0): 128, 89, 46, (276,186,0): 126, 89, 44, (276,187,0): 126, 92, 44, (276,188,0): 134, 101, 50, (276,189,0): 145, 112, 58, (276,190,0): 157, 126, 69, (276,191,0): 164, 134, 72, (276,192,0): 171, 142, 74, (276,193,0): 175, 147, 74, (276,194,0): 182, 152, 79, (276,195,0): 187, 160, 81, (276,196,0): 193, 167, 83, (276,197,0): 199, 173, 86, (276,198,0): 205, 180, 88, (276,199,0): 210, 186, 90, (276,200,0): 213, 189, 91, (276,201,0): 216, 193, 91, (276,202,0): 221, 198, 96, (276,203,0): 226, 203, 99, (276,204,0): 231, 210, 105, (276,205,0): 236, 215, 110, (276,206,0): 239, 218, 113, (276,207,0): 239, 221, 113, (276,208,0): 243, 227, 116, (276,209,0): 243, 230, 116, (276,210,0): 247, 234, 120, (276,211,0): 252, 239, 125, (276,212,0): 255, 242, 128, (276,213,0): 255, 244, 130, (276,214,0): 255, 246, 131, (276,215,0): 255, 246, 131, (276,216,0): 255, 248, 133, (276,217,0): 255, 246, 131, (276,218,0): 253, 243, 128, (276,219,0): 251, 241, 126, (276,220,0): 250, 240, 125, (276,221,0): 250, 240, 125, (276,222,0): 249, 239, 124, (276,223,0): 247, 240, 123, (276,224,0): 254, 249, 131, (276,225,0): 253, 251, 130, (276,226,0): 254, 252, 133, (276,227,0): 255, 253, 132, (276,228,0): 255, 254, 135, (276,229,0): 255, 255, 134, (276,230,0): 255, 255, 136, (276,231,0): 255, 254, 133, (276,232,0): 254, 252, 133, (276,233,0): 255, 253, 132, (276,234,0): 255, 254, 135, (276,235,0): 255, 255, 134, (276,236,0): 255, 255, 136, (276,237,0): 255, 255, 134, (276,238,0): 255, 254, 135, (276,239,0): 255, 255, 133, (276,240,0): 253, 255, 136, (276,241,0): 251, 255, 133, (276,242,0): 254, 255, 135, (276,243,0): 255, 253, 132, (276,244,0): 255, 250, 133, (276,245,0): 255, 249, 131, (276,246,0): 255, 247, 132, (276,247,0): 255, 246, 130, (276,248,0): 255, 239, 125, (276,249,0): 250, 233, 117, (276,250,0): 242, 227, 112, (276,251,0): 241, 229, 111, (276,252,0): 248, 237, 121, (276,253,0): 254, 245, 126, (276,254,0): 255, 248, 131, (276,255,0): 252, 250, 129, (276,256,0): 252, 254, 131, (276,257,0): 252, 254, 129, (276,258,0): 253, 255, 130, (276,259,0): 255, 255, 129, (276,260,0): 255, 254, 127, (276,261,0): 255, 252, 126, (276,262,0): 255, 250, 122, (276,263,0): 255, 250, 122, (276,264,0): 252, 247, 119, (276,265,0): 248, 243, 117, (276,266,0): 243, 239, 114, (276,267,0): 240, 238, 115, (276,268,0): 242, 240, 119, (276,269,0): 244, 244, 124, (276,270,0): 245, 246, 127, (276,271,0): 243, 247, 126, (276,272,0): 241, 252, 124, (276,273,0): 239, 255, 123, (276,274,0): 239, 255, 123, (276,275,0): 238, 253, 126, (276,276,0): 235, 251, 126, (276,277,0): 231, 247, 125, (276,278,0): 226, 244, 126, (276,279,0): 223, 242, 127, (276,280,0): 220, 240, 129, (276,281,0): 219, 238, 131, (276,282,0): 214, 235, 132, (276,283,0): 210, 232, 132, (276,284,0): 207, 229, 131, (276,285,0): 203, 227, 131, (276,286,0): 201, 225, 131, (276,287,0): 199, 224, 132, (276,288,0): 194, 223, 131, (276,289,0): 193, 223, 133, (276,290,0): 190, 218, 131, (276,291,0): 186, 214, 129, (276,292,0): 190, 214, 136, (276,293,0): 193, 217, 141, (276,294,0): 187, 208, 139, (276,295,0): 177, 198, 131, (276,296,0): 161, 181, 118, (276,297,0): 153, 173, 112, (276,298,0): 146, 164, 106, (276,299,0): 147, 164, 109, (276,300,0): 153, 170, 115, (276,301,0): 156, 171, 116, (276,302,0): 149, 164, 109, (276,303,0): 142, 154, 106, (276,304,0): 138, 142, 109, (276,305,0): 139, 139, 111, (276,306,0): 135, 140, 110, (276,307,0): 134, 141, 110, (276,308,0): 134, 145, 113, (276,309,0): 137, 148, 116, (276,310,0): 139, 150, 120, (276,311,0): 142, 151, 122, (276,312,0): 154, 160, 134, (276,313,0): 176, 178, 157, (276,314,0): 192, 191, 173, (276,315,0): 194, 190, 178, (276,316,0): 202, 195, 187, (276,317,0): 216, 209, 203, (276,318,0): 216, 211, 207, (276,319,0): 209, 201, 198, (276,320,0): 206, 195, 191, (276,321,0): 201, 190, 184, (276,322,0): 188, 181, 173, (276,323,0): 170, 167, 158, (276,324,0): 152, 154, 143, (276,325,0): 142, 148, 136, (276,326,0): 137, 149, 135, (276,327,0): 139, 153, 140, (276,328,0): 130, 146, 133, (276,329,0): 124, 142, 130, (276,330,0): 119, 137, 125, (276,331,0): 115, 131, 120, (276,332,0): 114, 127, 117, (276,333,0): 112, 124, 114, (276,334,0): 107, 119, 109, (276,335,0): 103, 115, 105, (276,336,0): 101, 113, 101, (276,337,0): 100, 112, 100, (276,338,0): 99, 111, 99, (276,339,0): 101, 111, 100, (276,340,0): 101, 111, 100, (276,341,0): 101, 109, 98, (276,342,0): 99, 102, 93, (276,343,0): 96, 97, 89, (276,344,0): 93, 93, 85, (276,345,0): 94, 91, 84, (276,346,0): 93, 88, 82, (276,347,0): 92, 85, 79, (276,348,0): 89, 80, 75, (276,349,0): 86, 75, 71, (276,350,0): 83, 72, 68, (276,351,0): 79, 70, 65, (276,352,0): 76, 68, 65, (276,353,0): 79, 74, 70, (276,354,0): 88, 80, 77, (276,355,0): 92, 85, 79, (276,356,0): 93, 86, 80, (276,357,0): 93, 86, 80, (276,358,0): 91, 86, 80, (276,359,0): 91, 88, 81, (276,360,0): 95, 94, 89, (276,361,0): 97, 99, 94, (276,362,0): 103, 108, 104, (276,363,0): 108, 117, 116, (276,364,0): 114, 124, 125, (276,365,0): 116, 130, 131, (276,366,0): 117, 132, 135, (276,367,0): 118, 133, 140, (276,368,0): 121, 135, 144, (276,369,0): 121, 135, 146, (276,370,0): 122, 136, 147, (276,371,0): 123, 137, 148, (276,372,0): 125, 137, 151, (276,373,0): 124, 136, 150, (276,374,0): 126, 135, 150, (276,375,0): 125, 134, 149, (276,376,0): 122, 131, 148, (276,377,0): 120, 129, 146, (276,378,0): 121, 128, 147, (276,379,0): 122, 129, 148, (276,380,0): 124, 129, 149, (276,381,0): 122, 127, 147, (276,382,0): 118, 123, 145, (276,383,0): 114, 119, 139, (276,384,0): 108, 115, 133, (276,385,0): 110, 117, 133, (276,386,0): 114, 120, 136, (276,387,0): 115, 121, 137, (276,388,0): 116, 119, 134, (276,389,0): 113, 115, 130, (276,390,0): 109, 111, 124, (276,391,0): 107, 106, 120, (276,392,0): 109, 107, 121, (276,393,0): 108, 104, 118, (276,394,0): 104, 100, 114, (276,395,0): 101, 95, 109, (276,396,0): 96, 88, 101, (276,397,0): 91, 83, 96, (276,398,0): 89, 78, 92, (276,399,0): 84, 78, 88, (276,400,0): 75, 74, 82, (276,401,0): 75, 78, 83, (276,402,0): 79, 82, 89, (276,403,0): 83, 87, 96, (276,404,0): 89, 93, 104, (276,405,0): 92, 98, 110, (276,406,0): 94, 102, 115, (276,407,0): 96, 103, 119, (276,408,0): 98, 105, 121, (276,409,0): 97, 104, 120, (276,410,0): 97, 103, 119, (276,411,0): 97, 100, 115, (276,412,0): 96, 98, 111, (276,413,0): 97, 96, 110, (276,414,0): 97, 95, 108, (276,415,0): 97, 95, 108, (276,416,0): 99, 98, 114, (276,417,0): 100, 99, 115, (276,418,0): 102, 99, 116, (276,419,0): 103, 99, 116, (276,420,0): 107, 98, 115, (276,421,0): 110, 99, 116, (276,422,0): 111, 98, 115, (276,423,0): 111, 98, 115, (276,424,0): 117, 103, 120, (276,425,0): 120, 106, 123, (276,426,0): 123, 109, 124, (276,427,0): 125, 111, 126, (276,428,0): 123, 111, 123, (276,429,0): 119, 107, 119, (276,430,0): 114, 102, 114, (276,431,0): 114, 98, 111, (276,432,0): 109, 82, 97, (276,433,0): 107, 76, 91, (276,434,0): 100, 69, 84, (276,435,0): 92, 62, 74, (276,436,0): 88, 58, 70, (276,437,0): 85, 58, 67, (276,438,0): 86, 59, 68, (276,439,0): 86, 61, 67, (276,440,0): 88, 65, 71, (276,441,0): 90, 68, 71, (276,442,0): 94, 74, 75, (276,443,0): 99, 79, 80, (276,444,0): 104, 84, 83, (276,445,0): 108, 90, 88, (276,446,0): 114, 94, 93, (276,447,0): 116, 98, 96, (276,448,0): 115, 95, 96, (276,449,0): 115, 96, 98, (276,450,0): 118, 99, 101, (276,451,0): 119, 103, 106, (276,452,0): 122, 107, 112, (276,453,0): 123, 110, 117, (276,454,0): 124, 113, 121, (276,455,0): 124, 114, 123, (276,456,0): 120, 112, 123, (276,457,0): 118, 112, 124, (276,458,0): 115, 111, 125, (276,459,0): 113, 111, 125, (276,460,0): 113, 112, 128, (276,461,0): 113, 114, 132, (276,462,0): 116, 117, 137, (276,463,0): 118, 119, 139, (276,464,0): 120, 118, 139, (276,465,0): 119, 117, 138, (276,466,0): 116, 114, 135, (276,467,0): 114, 111, 130, (276,468,0): 112, 109, 130, (276,469,0): 111, 108, 127, (276,470,0): 111, 108, 127, (276,471,0): 112, 108, 125, (276,472,0): 115, 111, 128, (276,473,0): 117, 110, 126, (276,474,0): 116, 107, 124, (276,475,0): 114, 105, 122, (276,476,0): 112, 103, 120, (276,477,0): 110, 102, 117, (276,478,0): 111, 100, 117, (276,479,0): 110, 99, 115, (276,480,0): 113, 103, 114, (276,481,0): 111, 101, 110, (276,482,0): 109, 99, 108, (276,483,0): 105, 98, 106, (276,484,0): 104, 97, 105, (276,485,0): 102, 97, 104, (276,486,0): 100, 97, 104, (276,487,0): 100, 97, 104, (276,488,0): 105, 104, 110, (276,489,0): 107, 108, 113, (276,490,0): 109, 112, 117, (276,491,0): 112, 115, 120, (276,492,0): 114, 119, 123, (276,493,0): 117, 122, 126, (276,494,0): 123, 128, 132, (276,495,0): 126, 133, 139, (276,496,0): 127, 135, 146, (276,497,0): 128, 138, 150, (276,498,0): 132, 142, 154, (276,499,0): 135, 145, 157, (276,500,0): 136, 148, 160, (276,501,0): 137, 150, 159, (276,502,0): 137, 149, 161, (276,503,0): 136, 150, 159, (276,504,0): 137, 151, 162, (276,505,0): 140, 154, 163, (276,506,0): 143, 160, 168, (276,507,0): 146, 163, 171, (276,508,0): 147, 164, 174, (276,509,0): 149, 166, 176, (276,510,0): 152, 170, 180, (276,511,0): 155, 173, 183, (276,512,0): 155, 173, 185, (276,513,0): 155, 174, 188, (276,514,0): 155, 175, 186, (276,515,0): 156, 176, 187, (276,516,0): 156, 176, 185, (276,517,0): 155, 175, 184, (276,518,0): 155, 173, 183, (276,519,0): 155, 174, 181, (276,520,0): 151, 170, 177, (276,521,0): 152, 171, 177, (276,522,0): 153, 172, 178, (276,523,0): 150, 169, 175, (276,524,0): 146, 165, 169, (276,525,0): 144, 163, 167, (276,526,0): 145, 165, 166, (276,527,0): 147, 165, 169, (276,528,0): 154, 167, 176, (276,529,0): 152, 164, 176, (276,530,0): 150, 162, 176, (276,531,0): 145, 159, 172, (276,532,0): 137, 153, 168, (276,533,0): 131, 149, 163, (276,534,0): 126, 143, 159, (276,535,0): 122, 141, 156, (276,536,0): 118, 137, 152, (276,537,0): 117, 136, 150, (276,538,0): 116, 134, 148, (276,539,0): 115, 133, 145, (276,540,0): 119, 133, 144, (276,541,0): 121, 135, 144, (276,542,0): 124, 137, 145, (276,543,0): 126, 139, 147, (276,544,0): 128, 138, 150, (276,545,0): 127, 136, 151, (276,546,0): 126, 134, 147, (276,547,0): 125, 131, 143, (276,548,0): 124, 128, 139, (276,549,0): 122, 126, 137, (276,550,0): 120, 124, 133, (276,551,0): 119, 123, 132, (276,552,0): 123, 127, 136, (276,553,0): 121, 128, 136, (276,554,0): 121, 130, 139, (276,555,0): 121, 131, 140, (276,556,0): 121, 134, 143, (276,557,0): 122, 136, 147, (276,558,0): 122, 138, 151, (276,559,0): 122, 138, 153, (276,560,0): 123, 136, 153, (276,561,0): 123, 136, 155, (276,562,0): 123, 136, 155, (276,563,0): 124, 137, 156, (276,564,0): 125, 138, 157, (276,565,0): 126, 139, 158, (276,566,0): 127, 140, 159, (276,567,0): 128, 141, 160, (276,568,0): 120, 135, 154, (276,569,0): 118, 133, 152, (276,570,0): 115, 130, 149, (276,571,0): 113, 128, 147, (276,572,0): 110, 125, 144, (276,573,0): 109, 124, 143, (276,574,0): 108, 123, 142, (276,575,0): 107, 124, 144, (276,576,0): 102, 124, 148, (276,577,0): 102, 124, 148, (276,578,0): 103, 123, 148, (276,579,0): 103, 123, 147, (276,580,0): 106, 122, 145, (276,581,0): 108, 123, 144, (276,582,0): 111, 123, 145, (276,583,0): 114, 122, 141, (276,584,0): 108, 113, 132, (276,585,0): 105, 108, 125, (276,586,0): 102, 101, 115, (276,587,0): 101, 99, 112, (276,588,0): 103, 100, 111, (276,589,0): 105, 99, 111, (276,590,0): 105, 97, 108, (276,591,0): 102, 94, 105, (276,592,0): 106, 100, 110, (276,593,0): 104, 98, 108, (276,594,0): 102, 94, 105, (276,595,0): 100, 92, 103, (276,596,0): 98, 88, 99, (276,597,0): 94, 82, 94, (276,598,0): 88, 74, 87, (276,599,0): 83, 69, 82, (277,0,0): 60, 49, 57, (277,1,0): 60, 49, 57, (277,2,0): 59, 48, 56, (277,3,0): 59, 48, 56, (277,4,0): 58, 47, 55, (277,5,0): 58, 47, 55, (277,6,0): 58, 45, 54, (277,7,0): 58, 45, 54, (277,8,0): 59, 43, 53, (277,9,0): 59, 43, 53, (277,10,0): 60, 43, 53, (277,11,0): 59, 42, 52, (277,12,0): 59, 42, 52, (277,13,0): 58, 41, 51, (277,14,0): 58, 41, 51, (277,15,0): 57, 40, 50, (277,16,0): 59, 43, 53, (277,17,0): 60, 43, 53, (277,18,0): 62, 42, 54, (277,19,0): 63, 43, 54, (277,20,0): 67, 43, 56, (277,21,0): 69, 46, 56, (277,22,0): 73, 47, 56, (277,23,0): 76, 49, 56, (277,24,0): 83, 53, 61, (277,25,0): 80, 53, 58, (277,26,0): 79, 53, 56, (277,27,0): 77, 52, 55, (277,28,0): 76, 52, 52, (277,29,0): 74, 53, 52, (277,30,0): 75, 54, 53, (277,31,0): 75, 53, 55, (277,32,0): 75, 50, 54, (277,33,0): 75, 50, 56, (277,34,0): 75, 50, 54, (277,35,0): 76, 51, 55, (277,36,0): 76, 51, 55, (277,37,0): 77, 52, 56, (277,38,0): 77, 52, 55, (277,39,0): 77, 52, 55, (277,40,0): 78, 54, 54, (277,41,0): 79, 55, 55, (277,42,0): 79, 55, 55, (277,43,0): 80, 56, 56, (277,44,0): 80, 56, 54, (277,45,0): 81, 57, 55, (277,46,0): 81, 57, 55, (277,47,0): 81, 57, 53, (277,48,0): 80, 56, 52, (277,49,0): 79, 59, 52, (277,50,0): 81, 61, 52, (277,51,0): 83, 63, 54, (277,52,0): 85, 65, 54, (277,53,0): 89, 67, 56, (277,54,0): 90, 68, 55, (277,55,0): 91, 69, 55, (277,56,0): 98, 75, 59, (277,57,0): 98, 75, 57, (277,58,0): 101, 75, 58, (277,59,0): 103, 78, 58, (277,60,0): 105, 80, 60, (277,61,0): 106, 81, 59, (277,62,0): 107, 82, 60, (277,63,0): 109, 83, 60, (277,64,0): 110, 84, 57, (277,65,0): 111, 84, 55, (277,66,0): 112, 85, 58, (277,67,0): 112, 85, 56, (277,68,0): 113, 86, 57, (277,69,0): 115, 85, 57, (277,70,0): 116, 86, 58, (277,71,0): 116, 87, 57, (277,72,0): 119, 88, 59, (277,73,0): 120, 89, 58, (277,74,0): 120, 89, 58, (277,75,0): 123, 90, 57, (277,76,0): 123, 90, 59, (277,77,0): 124, 91, 58, (277,78,0): 124, 91, 58, (277,79,0): 125, 90, 58, (277,80,0): 125, 90, 58, (277,81,0): 126, 92, 57, (277,82,0): 126, 91, 59, (277,83,0): 127, 93, 58, (277,84,0): 127, 92, 60, (277,85,0): 128, 94, 59, (277,86,0): 128, 93, 61, (277,87,0): 128, 94, 59, (277,88,0): 128, 93, 61, (277,89,0): 128, 94, 59, (277,90,0): 128, 93, 61, (277,91,0): 128, 94, 59, (277,92,0): 128, 93, 61, (277,93,0): 128, 94, 59, (277,94,0): 128, 93, 61, (277,95,0): 128, 93, 61, (277,96,0): 127, 92, 60, (277,97,0): 127, 94, 63, (277,98,0): 128, 93, 63, (277,99,0): 126, 93, 62, (277,100,0): 125, 90, 62, (277,101,0): 122, 88, 60, (277,102,0): 121, 86, 58, (277,103,0): 119, 85, 58, (277,104,0): 115, 79, 53, (277,105,0): 113, 79, 52, (277,106,0): 113, 77, 53, (277,107,0): 111, 77, 52, (277,108,0): 112, 76, 52, (277,109,0): 112, 77, 55, (277,110,0): 113, 77, 55, (277,111,0): 113, 78, 56, (277,112,0): 113, 78, 56, (277,113,0): 110, 78, 55, (277,114,0): 108, 76, 53, (277,115,0): 107, 75, 50, (277,116,0): 107, 75, 50, (277,117,0): 107, 76, 48, (277,118,0): 108, 77, 49, (277,119,0): 108, 77, 49, (277,120,0): 111, 80, 52, (277,121,0): 112, 81, 52, (277,122,0): 114, 83, 54, (277,123,0): 115, 84, 53, (277,124,0): 117, 86, 55, (277,125,0): 119, 88, 57, (277,126,0): 121, 90, 59, (277,127,0): 123, 90, 59, (277,128,0): 124, 89, 59, (277,129,0): 125, 88, 59, (277,130,0): 125, 88, 59, (277,131,0): 125, 88, 59, (277,132,0): 125, 88, 59, (277,133,0): 125, 89, 57, (277,134,0): 125, 89, 57, (277,135,0): 125, 89, 55, (277,136,0): 123, 87, 53, (277,137,0): 123, 87, 53, (277,138,0): 123, 87, 53, (277,139,0): 123, 87, 51, (277,140,0): 122, 86, 50, (277,141,0): 120, 84, 48, (277,142,0): 118, 82, 46, (277,143,0): 117, 81, 45, (277,144,0): 119, 83, 47, (277,145,0): 119, 83, 47, (277,146,0): 118, 82, 48, (277,147,0): 117, 81, 45, (277,148,0): 115, 79, 45, (277,149,0): 112, 76, 40, (277,150,0): 109, 73, 39, (277,151,0): 108, 72, 36, (277,152,0): 110, 74, 40, (277,153,0): 111, 75, 39, (277,154,0): 112, 76, 42, (277,155,0): 115, 79, 43, (277,156,0): 118, 82, 48, (277,157,0): 122, 86, 50, (277,158,0): 126, 90, 56, (277,159,0): 128, 92, 56, (277,160,0): 129, 96, 55, (277,161,0): 132, 101, 57, (277,162,0): 139, 106, 61, (277,163,0): 145, 113, 64, (277,164,0): 152, 119, 66, (277,165,0): 161, 129, 72, (277,166,0): 173, 139, 78, (277,167,0): 180, 146, 82, (277,168,0): 189, 154, 88, (277,169,0): 194, 157, 89, (277,170,0): 196, 157, 90, (277,171,0): 192, 153, 84, (277,172,0): 186, 146, 77, (277,173,0): 181, 141, 71, (277,174,0): 179, 139, 70, (277,175,0): 183, 140, 71, (277,176,0): 181, 137, 66, (277,177,0): 174, 130, 59, (277,178,0): 167, 124, 56, (277,179,0): 166, 122, 59, (277,180,0): 160, 117, 62, (277,181,0): 152, 109, 58, (277,182,0): 145, 102, 57, (277,183,0): 143, 102, 58, (277,184,0): 135, 93, 51, (277,185,0): 133, 95, 50, (277,186,0): 133, 97, 49, (277,187,0): 138, 102, 52, (277,188,0): 145, 112, 58, (277,189,0): 158, 126, 67, (277,190,0): 168, 138, 74, (277,191,0): 175, 146, 78, (277,192,0): 183, 153, 81, (277,193,0): 185, 156, 80, (277,194,0): 190, 161, 83, (277,195,0): 196, 168, 85, (277,196,0): 202, 176, 89, (277,197,0): 209, 184, 92, (277,198,0): 216, 192, 96, (277,199,0): 219, 197, 96, (277,200,0): 220, 198, 96, (277,201,0): 220, 201, 96, (277,202,0): 223, 204, 99, (277,203,0): 228, 210, 102, (277,204,0): 233, 216, 108, (277,205,0): 239, 223, 112, (277,206,0): 245, 228, 120, (277,207,0): 246, 233, 121, (277,208,0): 251, 240, 125, (277,209,0): 253, 244, 127, (277,210,0): 255, 248, 131, (277,211,0): 255, 252, 135, (277,212,0): 255, 253, 136, (277,213,0): 255, 252, 135, (277,214,0): 255, 250, 133, (277,215,0): 255, 248, 131, (277,216,0): 255, 249, 132, (277,217,0): 253, 246, 129, (277,218,0): 253, 244, 127, (277,219,0): 252, 243, 126, (277,220,0): 253, 244, 127, (277,221,0): 254, 245, 128, (277,222,0): 253, 244, 127, (277,223,0): 250, 243, 126, (277,224,0): 255, 250, 132, (277,225,0): 253, 251, 132, (277,226,0): 254, 251, 134, (277,227,0): 255, 253, 134, (277,228,0): 255, 252, 135, (277,229,0): 255, 254, 135, (277,230,0): 255, 253, 136, (277,231,0): 255, 254, 135, (277,232,0): 255, 252, 135, (277,233,0): 255, 253, 134, (277,234,0): 255, 253, 136, (277,235,0): 255, 254, 135, (277,236,0): 255, 253, 136, (277,237,0): 255, 255, 136, (277,238,0): 255, 254, 137, (277,239,0): 255, 255, 137, (277,240,0): 251, 255, 136, (277,241,0): 249, 255, 136, (277,242,0): 252, 255, 136, (277,243,0): 254, 255, 136, (277,244,0): 255, 253, 136, (277,245,0): 255, 252, 136, (277,246,0): 255, 251, 136, (277,247,0): 255, 249, 136, (277,248,0): 255, 241, 128, (277,249,0): 251, 235, 122, (277,250,0): 243, 227, 114, (277,251,0): 237, 224, 110, (277,252,0): 239, 228, 113, (277,253,0): 245, 234, 119, (277,254,0): 250, 240, 125, (277,255,0): 251, 246, 128, (277,256,0): 250, 250, 130, (277,257,0): 250, 252, 129, (277,258,0): 253, 253, 131, (277,259,0): 255, 253, 130, (277,260,0): 255, 254, 129, (277,261,0): 255, 253, 127, (277,262,0): 255, 253, 125, (277,263,0): 255, 252, 122, (277,264,0): 255, 251, 121, (277,265,0): 254, 249, 121, (277,266,0): 251, 248, 119, (277,267,0): 249, 248, 121, (277,268,0): 249, 249, 125, (277,269,0): 250, 252, 129, (277,270,0): 252, 253, 133, (277,271,0): 250, 255, 132, (277,272,0): 247, 255, 129, (277,273,0): 244, 255, 129, (277,274,0): 244, 255, 128, (277,275,0): 241, 255, 128, (277,276,0): 238, 254, 129, (277,277,0): 235, 251, 129, (277,278,0): 230, 248, 130, (277,279,0): 229, 246, 132, (277,280,0): 228, 246, 136, (277,281,0): 225, 244, 136, (277,282,0): 219, 240, 135, (277,283,0): 214, 236, 135, (277,284,0): 209, 233, 135, (277,285,0): 206, 232, 135, (277,286,0): 205, 230, 136, (277,287,0): 204, 231, 136, (277,288,0): 199, 228, 136, (277,289,0): 199, 230, 137, (277,290,0): 197, 225, 138, (277,291,0): 194, 222, 137, (277,292,0): 197, 222, 141, (277,293,0): 197, 221, 145, (277,294,0): 189, 211, 139, (277,295,0): 176, 197, 128, (277,296,0): 160, 181, 116, (277,297,0): 154, 174, 111, (277,298,0): 150, 168, 108, (277,299,0): 152, 170, 110, (277,300,0): 157, 175, 117, (277,301,0): 157, 177, 116, (277,302,0): 153, 173, 114, (277,303,0): 150, 164, 113, (277,304,0): 144, 150, 114, (277,305,0): 142, 147, 117, (277,306,0): 140, 147, 114, (277,307,0): 138, 148, 114, (277,308,0): 138, 152, 117, (277,309,0): 139, 154, 121, (277,310,0): 140, 155, 122, (277,311,0): 141, 154, 124, (277,312,0): 149, 159, 134, (277,313,0): 166, 174, 151, (277,314,0): 181, 184, 167, (277,315,0): 184, 185, 171, (277,316,0): 187, 187, 179, (277,317,0): 196, 195, 190, (277,318,0): 200, 199, 195, (277,319,0): 196, 195, 191, (277,320,0): 200, 195, 191, (277,321,0): 194, 191, 186, (277,322,0): 183, 182, 177, (277,323,0): 170, 171, 165, (277,324,0): 156, 161, 154, (277,325,0): 146, 156, 147, (277,326,0): 141, 154, 144, (277,327,0): 139, 155, 144, (277,328,0): 132, 150, 138, (277,329,0): 126, 144, 132, (277,330,0): 121, 137, 126, (277,331,0): 117, 130, 120, (277,332,0): 115, 127, 117, (277,333,0): 111, 123, 113, (277,334,0): 107, 117, 108, (277,335,0): 103, 113, 104, (277,336,0): 102, 115, 105, (277,337,0): 100, 114, 101, (277,338,0): 99, 112, 102, (277,339,0): 101, 113, 101, (277,340,0): 101, 113, 103, (277,341,0): 100, 110, 99, (277,342,0): 98, 103, 96, (277,343,0): 95, 98, 89, (277,344,0): 94, 95, 89, (277,345,0): 94, 94, 86, (277,346,0): 94, 91, 86, (277,347,0): 93, 88, 82, (277,348,0): 91, 83, 80, (277,349,0): 88, 81, 75, (277,350,0): 85, 77, 74, (277,351,0): 83, 75, 72, (277,352,0): 74, 69, 65, (277,353,0): 78, 73, 69, (277,354,0): 84, 79, 75, (277,355,0): 88, 83, 79, (277,356,0): 91, 86, 80, (277,357,0): 92, 87, 81, (277,358,0): 92, 87, 81, (277,359,0): 90, 87, 82, (277,360,0): 95, 94, 90, (277,361,0): 98, 100, 97, (277,362,0): 104, 108, 107, (277,363,0): 109, 118, 117, (277,364,0): 115, 125, 127, (277,365,0): 116, 130, 133, (277,366,0): 117, 130, 136, (277,367,0): 117, 132, 139, (277,368,0): 119, 133, 142, (277,369,0): 120, 134, 145, (277,370,0): 120, 134, 145, (277,371,0): 121, 135, 146, (277,372,0): 123, 135, 149, (277,373,0): 123, 135, 149, (277,374,0): 126, 135, 150, (277,375,0): 126, 135, 150, (277,376,0): 124, 133, 150, (277,377,0): 122, 131, 148, (277,378,0): 122, 129, 148, (277,379,0): 122, 129, 148, (277,380,0): 124, 129, 149, (277,381,0): 122, 127, 147, (277,382,0): 118, 123, 145, (277,383,0): 115, 120, 140, (277,384,0): 108, 115, 133, (277,385,0): 109, 116, 132, (277,386,0): 112, 118, 134, (277,387,0): 112, 118, 134, (277,388,0): 114, 117, 132, (277,389,0): 112, 115, 130, (277,390,0): 110, 112, 127, (277,391,0): 109, 111, 124, (277,392,0): 111, 110, 124, (277,393,0): 110, 108, 122, (277,394,0): 106, 104, 117, (277,395,0): 101, 97, 111, (277,396,0): 96, 92, 106, (277,397,0): 92, 86, 98, (277,398,0): 88, 82, 94, (277,399,0): 84, 81, 92, (277,400,0): 78, 78, 88, (277,401,0): 78, 82, 91, (277,402,0): 82, 86, 97, (277,403,0): 85, 92, 102, (277,404,0): 89, 95, 107, (277,405,0): 93, 99, 113, (277,406,0): 94, 101, 117, (277,407,0): 95, 102, 118, (277,408,0): 96, 103, 119, (277,409,0): 96, 102, 116, (277,410,0): 95, 98, 113, (277,411,0): 93, 95, 108, (277,412,0): 92, 92, 104, (277,413,0): 92, 90, 101, (277,414,0): 94, 88, 100, (277,415,0): 92, 89, 100, (277,416,0): 93, 91, 104, (277,417,0): 94, 92, 105, (277,418,0): 97, 93, 107, (277,419,0): 101, 95, 109, (277,420,0): 105, 94, 108, (277,421,0): 106, 94, 108, (277,422,0): 107, 93, 106, (277,423,0): 108, 92, 105, (277,424,0): 114, 96, 110, (277,425,0): 115, 97, 111, (277,426,0): 117, 99, 111, (277,427,0): 117, 99, 111, (277,428,0): 113, 96, 106, (277,429,0): 107, 90, 100, (277,430,0): 101, 84, 94, (277,431,0): 99, 78, 87, (277,432,0): 97, 67, 77, (277,433,0): 96, 63, 72, (277,434,0): 91, 58, 67, (277,435,0): 85, 54, 62, (277,436,0): 84, 53, 59, (277,437,0): 84, 55, 60, (277,438,0): 87, 58, 63, (277,439,0): 87, 60, 65, (277,440,0): 89, 64, 67, (277,441,0): 91, 69, 71, (277,442,0): 95, 75, 76, (277,443,0): 100, 80, 81, (277,444,0): 102, 84, 82, (277,445,0): 107, 89, 87, (277,446,0): 112, 94, 92, (277,447,0): 116, 98, 96, (277,448,0): 116, 96, 97, (277,449,0): 117, 97, 99, (277,450,0): 120, 100, 102, (277,451,0): 122, 103, 105, (277,452,0): 123, 107, 110, (277,453,0): 123, 108, 113, (277,454,0): 122, 109, 116, (277,455,0): 122, 111, 119, (277,456,0): 113, 103, 112, (277,457,0): 110, 102, 113, (277,458,0): 109, 103, 115, (277,459,0): 106, 102, 116, (277,460,0): 107, 105, 119, (277,461,0): 109, 107, 121, (277,462,0): 110, 109, 125, (277,463,0): 112, 111, 127, (277,464,0): 114, 111, 128, (277,465,0): 114, 110, 127, (277,466,0): 112, 108, 125, (277,467,0): 110, 106, 123, (277,468,0): 109, 105, 122, (277,469,0): 111, 104, 122, (277,470,0): 111, 104, 122, (277,471,0): 112, 105, 121, (277,472,0): 113, 106, 122, (277,473,0): 114, 106, 121, (277,474,0): 113, 105, 120, (277,475,0): 113, 105, 118, (277,476,0): 112, 104, 117, (277,477,0): 110, 102, 115, (277,478,0): 111, 100, 114, (277,479,0): 111, 100, 114, (277,480,0): 113, 103, 112, (277,481,0): 112, 102, 111, (277,482,0): 110, 100, 109, (277,483,0): 108, 98, 107, (277,484,0): 105, 98, 106, (277,485,0): 104, 97, 105, (277,486,0): 104, 99, 106, (277,487,0): 102, 99, 106, (277,488,0): 105, 104, 110, (277,489,0): 109, 108, 114, (277,490,0): 112, 113, 118, (277,491,0): 113, 116, 121, (277,492,0): 114, 117, 122, (277,493,0): 116, 121, 125, (277,494,0): 121, 126, 130, (277,495,0): 122, 129, 137, (277,496,0): 127, 135, 146, (277,497,0): 129, 139, 151, (277,498,0): 133, 143, 155, (277,499,0): 137, 147, 157, (277,500,0): 140, 150, 160, (277,501,0): 138, 151, 160, (277,502,0): 136, 149, 158, (277,503,0): 135, 148, 157, (277,504,0): 138, 151, 160, (277,505,0): 141, 155, 164, (277,506,0): 146, 160, 169, (277,507,0): 148, 165, 173, (277,508,0): 149, 166, 176, (277,509,0): 152, 169, 179, (277,510,0): 155, 172, 182, (277,511,0): 157, 175, 187, (277,512,0): 154, 173, 187, (277,513,0): 153, 175, 188, (277,514,0): 156, 175, 189, (277,515,0): 157, 177, 188, (277,516,0): 158, 178, 189, (277,517,0): 159, 179, 188, (277,518,0): 161, 180, 187, (277,519,0): 161, 180, 187, (277,520,0): 153, 172, 178, (277,521,0): 154, 173, 177, (277,522,0): 155, 173, 177, (277,523,0): 152, 170, 172, (277,524,0): 148, 166, 168, (277,525,0): 146, 164, 164, (277,526,0): 149, 165, 165, (277,527,0): 151, 166, 169, (277,528,0): 153, 168, 175, (277,529,0): 152, 166, 177, (277,530,0): 151, 165, 178, (277,531,0): 146, 162, 175, (277,532,0): 141, 159, 173, (277,533,0): 136, 155, 169, (277,534,0): 132, 151, 166, (277,535,0): 130, 149, 164, (277,536,0): 126, 145, 160, (277,537,0): 123, 142, 157, (277,538,0): 120, 137, 153, (277,539,0): 116, 134, 148, (277,540,0): 117, 133, 146, (277,541,0): 122, 136, 147, (277,542,0): 127, 140, 149, (277,543,0): 130, 142, 154, (277,544,0): 133, 142, 157, (277,545,0): 132, 141, 156, (277,546,0): 132, 139, 155, (277,547,0): 129, 137, 150, (277,548,0): 128, 134, 146, (277,549,0): 128, 132, 143, (277,550,0): 126, 130, 141, (277,551,0): 125, 129, 138, (277,552,0): 125, 132, 140, (277,553,0): 124, 133, 140, (277,554,0): 124, 133, 142, (277,555,0): 121, 134, 143, (277,556,0): 121, 135, 146, (277,557,0): 120, 137, 147, (277,558,0): 122, 138, 151, (277,559,0): 123, 139, 154, (277,560,0): 126, 137, 157, (277,561,0): 126, 137, 159, (277,562,0): 125, 136, 158, (277,563,0): 124, 136, 158, (277,564,0): 125, 137, 159, (277,565,0): 127, 139, 161, (277,566,0): 128, 140, 162, (277,567,0): 127, 142, 163, (277,568,0): 124, 139, 160, (277,569,0): 122, 137, 158, (277,570,0): 120, 135, 156, (277,571,0): 116, 133, 153, (277,572,0): 113, 130, 150, (277,573,0): 111, 129, 149, (277,574,0): 110, 128, 148, (277,575,0): 108, 129, 150, (277,576,0): 104, 126, 150, (277,577,0): 102, 126, 152, (277,578,0): 104, 124, 149, (277,579,0): 105, 123, 147, (277,580,0): 106, 122, 147, (277,581,0): 108, 123, 144, (277,582,0): 112, 123, 143, (277,583,0): 115, 123, 142, (277,584,0): 110, 113, 130, (277,585,0): 103, 105, 120, (277,586,0): 96, 94, 107, (277,587,0): 93, 90, 101, (277,588,0): 96, 88, 99, (277,589,0): 100, 90, 99, (277,590,0): 100, 88, 98, (277,591,0): 97, 87, 96, (277,592,0): 101, 93, 104, (277,593,0): 100, 92, 103, (277,594,0): 99, 91, 102, (277,595,0): 99, 89, 100, (277,596,0): 96, 84, 96, (277,597,0): 91, 79, 91, (277,598,0): 86, 72, 85, (277,599,0): 83, 69, 82, (278,0,0): 60, 49, 57, (278,1,0): 60, 49, 57, (278,2,0): 59, 48, 56, (278,3,0): 59, 48, 56, (278,4,0): 58, 47, 55, (278,5,0): 58, 47, 55, (278,6,0): 58, 45, 54, (278,7,0): 58, 45, 54, (278,8,0): 60, 44, 54, (278,9,0): 59, 43, 53, (278,10,0): 60, 43, 53, (278,11,0): 59, 42, 52, (278,12,0): 59, 42, 52, (278,13,0): 58, 41, 51, (278,14,0): 58, 41, 51, (278,15,0): 58, 41, 51, (278,16,0): 61, 44, 54, (278,17,0): 61, 44, 52, (278,18,0): 63, 43, 54, (278,19,0): 64, 44, 53, (278,20,0): 67, 44, 54, (278,21,0): 70, 47, 55, (278,22,0): 74, 48, 57, (278,23,0): 75, 50, 56, (278,24,0): 82, 55, 62, (278,25,0): 80, 53, 58, (278,26,0): 79, 53, 56, (278,27,0): 76, 51, 54, (278,28,0): 74, 52, 54, (278,29,0): 73, 53, 54, (278,30,0): 74, 54, 53, (278,31,0): 75, 55, 56, (278,32,0): 75, 50, 54, (278,33,0): 76, 49, 56, (278,34,0): 76, 49, 54, (278,35,0): 77, 50, 55, (278,36,0): 77, 50, 55, (278,37,0): 78, 51, 56, (278,38,0): 78, 52, 55, (278,39,0): 78, 52, 55, (278,40,0): 80, 54, 55, (278,41,0): 80, 54, 55, (278,42,0): 80, 54, 55, (278,43,0): 81, 55, 56, (278,44,0): 81, 55, 54, (278,45,0): 82, 56, 55, (278,46,0): 82, 56, 55, (278,47,0): 82, 58, 54, (278,48,0): 81, 57, 53, (278,49,0): 81, 58, 52, (278,50,0): 83, 60, 52, (278,51,0): 85, 62, 54, (278,52,0): 87, 65, 54, (278,53,0): 90, 66, 56, (278,54,0): 92, 68, 56, (278,55,0): 93, 70, 56, (278,56,0): 101, 75, 60, (278,57,0): 102, 76, 59, (278,58,0): 104, 77, 58, (278,59,0): 105, 78, 57, (278,60,0): 107, 81, 58, (278,61,0): 108, 82, 59, (278,62,0): 110, 84, 61, (278,63,0): 111, 83, 59, (278,64,0): 112, 85, 56, (278,65,0): 114, 85, 55, (278,66,0): 115, 85, 57, (278,67,0): 115, 86, 56, (278,68,0): 116, 87, 57, (278,69,0): 117, 86, 57, (278,70,0): 118, 87, 58, (278,71,0): 118, 87, 56, (278,72,0): 123, 90, 59, (278,73,0): 123, 90, 57, (278,74,0): 123, 90, 57, (278,75,0): 125, 91, 56, (278,76,0): 125, 90, 58, (278,77,0): 126, 92, 57, (278,78,0): 126, 92, 57, (278,79,0): 127, 91, 57, (278,80,0): 128, 92, 58, (278,81,0): 128, 92, 56, (278,82,0): 128, 92, 58, (278,83,0): 129, 93, 57, (278,84,0): 129, 93, 59, (278,85,0): 130, 94, 58, (278,86,0): 130, 94, 60, (278,87,0): 130, 94, 58, (278,88,0): 131, 95, 61, (278,89,0): 131, 95, 59, (278,90,0): 131, 95, 61, (278,91,0): 131, 95, 59, (278,92,0): 131, 95, 61, (278,93,0): 131, 95, 59, (278,94,0): 131, 95, 61, (278,95,0): 131, 95, 61, (278,96,0): 131, 95, 63, (278,97,0): 130, 95, 63, (278,98,0): 131, 95, 63, (278,99,0): 129, 94, 62, (278,100,0): 128, 91, 62, (278,101,0): 125, 90, 60, (278,102,0): 124, 87, 58, (278,103,0): 121, 86, 58, (278,104,0): 119, 82, 55, (278,105,0): 116, 81, 53, (278,106,0): 115, 78, 52, (278,107,0): 112, 76, 50, (278,108,0): 113, 76, 50, (278,109,0): 112, 76, 52, (278,110,0): 114, 76, 53, (278,111,0): 113, 77, 53, (278,112,0): 114, 80, 55, (278,113,0): 113, 79, 54, (278,114,0): 112, 78, 53, (278,115,0): 111, 77, 50, (278,116,0): 110, 76, 49, (278,117,0): 110, 76, 49, (278,118,0): 111, 77, 50, (278,119,0): 112, 78, 50, (278,120,0): 116, 82, 54, (278,121,0): 117, 84, 53, (278,122,0): 118, 85, 54, (278,123,0): 119, 86, 55, (278,124,0): 120, 87, 56, (278,125,0): 121, 88, 55, (278,126,0): 122, 89, 56, (278,127,0): 123, 90, 57, (278,128,0): 123, 88, 56, (278,129,0): 124, 88, 56, (278,130,0): 124, 88, 56, (278,131,0): 124, 88, 56, (278,132,0): 124, 88, 56, (278,133,0): 124, 88, 54, (278,134,0): 124, 88, 54, (278,135,0): 124, 88, 54, (278,136,0): 126, 90, 56, (278,137,0): 126, 90, 54, (278,138,0): 126, 90, 54, (278,139,0): 126, 91, 53, (278,140,0): 125, 90, 52, (278,141,0): 123, 88, 50, (278,142,0): 121, 86, 48, (278,143,0): 120, 85, 47, (278,144,0): 122, 87, 49, (278,145,0): 121, 86, 48, (278,146,0): 121, 85, 49, (278,147,0): 119, 84, 46, (278,148,0): 117, 81, 45, (278,149,0): 114, 79, 41, (278,150,0): 111, 75, 39, (278,151,0): 110, 75, 37, (278,152,0): 114, 78, 42, (278,153,0): 114, 79, 41, (278,154,0): 116, 80, 44, (278,155,0): 118, 83, 45, (278,156,0): 122, 86, 50, (278,157,0): 126, 91, 53, (278,158,0): 129, 93, 57, (278,159,0): 131, 96, 56, (278,160,0): 135, 102, 57, (278,161,0): 140, 108, 61, (278,162,0): 149, 115, 67, (278,163,0): 155, 122, 69, (278,164,0): 161, 129, 72, (278,165,0): 167, 135, 74, (278,166,0): 176, 142, 79, (278,167,0): 182, 149, 82, (278,168,0): 192, 157, 89, (278,169,0): 192, 158, 86, (278,170,0): 194, 157, 86, (278,171,0): 192, 155, 84, (278,172,0): 190, 152, 81, (278,173,0): 186, 148, 75, (278,174,0): 185, 147, 76, (278,175,0): 185, 145, 73, (278,176,0): 186, 144, 70, (278,177,0): 177, 133, 62, (278,178,0): 169, 126, 58, (278,179,0): 167, 123, 60, (278,180,0): 160, 117, 62, (278,181,0): 150, 107, 56, (278,182,0): 142, 99, 54, (278,183,0): 141, 100, 56, (278,184,0): 140, 99, 55, (278,185,0): 140, 102, 57, (278,186,0): 143, 107, 57, (278,187,0): 150, 115, 61, (278,188,0): 158, 126, 67, (278,189,0): 170, 139, 74, (278,190,0): 180, 151, 81, (278,191,0): 186, 158, 84, (278,192,0): 196, 167, 89, (278,193,0): 199, 168, 88, (278,194,0): 200, 172, 89, (278,195,0): 206, 179, 92, (278,196,0): 212, 187, 95, (278,197,0): 219, 195, 99, (278,198,0): 224, 202, 103, (278,199,0): 226, 207, 104, (278,200,0): 226, 209, 103, (278,201,0): 229, 213, 102, (278,202,0): 231, 218, 106, (278,203,0): 237, 224, 112, (278,204,0): 243, 231, 119, (278,205,0): 248, 237, 122, (278,206,0): 251, 241, 128, (278,207,0): 252, 245, 129, (278,208,0): 253, 248, 131, (278,209,0): 253, 250, 133, (278,210,0): 255, 252, 135, (278,211,0): 255, 254, 137, (278,212,0): 255, 254, 137, (278,213,0): 255, 253, 136, (278,214,0): 255, 251, 134, (278,215,0): 255, 250, 133, (278,216,0): 254, 249, 132, (278,217,0): 251, 246, 129, (278,218,0): 250, 243, 127, (278,219,0): 251, 244, 128, (278,220,0): 254, 247, 131, (278,221,0): 255, 249, 133, (278,222,0): 255, 249, 133, (278,223,0): 254, 249, 132, (278,224,0): 255, 252, 135, (278,225,0): 254, 253, 135, (278,226,0): 254, 253, 137, (278,227,0): 254, 253, 135, (278,228,0): 255, 254, 138, (278,229,0): 255, 254, 136, (278,230,0): 255, 255, 139, (278,231,0): 255, 255, 137, (278,232,0): 255, 255, 139, (278,233,0): 255, 254, 136, (278,234,0): 255, 254, 138, (278,235,0): 254, 253, 135, (278,236,0): 254, 253, 137, (278,237,0): 254, 253, 135, (278,238,0): 255, 254, 138, (278,239,0): 254, 255, 138, (278,240,0): 249, 255, 138, (278,241,0): 248, 255, 138, (278,242,0): 252, 255, 139, (278,243,0): 253, 255, 139, (278,244,0): 255, 255, 139, (278,245,0): 255, 254, 140, (278,246,0): 255, 253, 140, (278,247,0): 255, 252, 140, (278,248,0): 255, 245, 133, (278,249,0): 252, 239, 127, (278,250,0): 242, 229, 117, (278,251,0): 233, 220, 108, (278,252,0): 229, 217, 105, (278,253,0): 232, 220, 108, (278,254,0): 240, 230, 117, (278,255,0): 245, 238, 124, (278,256,0): 248, 245, 130, (278,257,0): 249, 248, 130, (278,258,0): 252, 250, 131, (278,259,0): 254, 252, 131, (278,260,0): 255, 254, 129, (278,261,0): 255, 255, 129, (278,262,0): 255, 255, 127, (278,263,0): 255, 255, 125, (278,264,0): 255, 252, 122, (278,265,0): 255, 252, 122, (278,266,0): 255, 254, 125, (278,267,0): 255, 254, 127, (278,268,0): 254, 254, 130, (278,269,0): 254, 255, 133, (278,270,0): 255, 255, 136, (278,271,0): 253, 255, 137, (278,272,0): 246, 255, 134, (278,273,0): 242, 255, 133, (278,274,0): 242, 255, 133, (278,275,0): 240, 255, 132, (278,276,0): 238, 254, 132, (278,277,0): 237, 252, 135, (278,278,0): 234, 251, 136, (278,279,0): 234, 251, 139, (278,280,0): 234, 252, 144, (278,281,0): 232, 251, 144, (278,282,0): 227, 248, 145, (278,283,0): 223, 245, 144, (278,284,0): 216, 240, 142, (278,285,0): 210, 236, 139, (278,286,0): 206, 233, 138, (278,287,0): 201, 231, 135, (278,288,0): 195, 226, 133, (278,289,0): 197, 228, 135, (278,290,0): 199, 227, 140, (278,291,0): 197, 225, 140, (278,292,0): 200, 225, 144, (278,293,0): 199, 223, 147, (278,294,0): 189, 211, 138, (278,295,0): 175, 196, 127, (278,296,0): 165, 184, 120, (278,297,0): 161, 179, 117, (278,298,0): 157, 177, 114, (278,299,0): 158, 178, 115, (278,300,0): 160, 180, 119, (278,301,0): 160, 182, 118, (278,302,0): 157, 179, 117, (278,303,0): 154, 173, 117, (278,304,0): 152, 163, 121, (278,305,0): 149, 159, 124, (278,306,0): 145, 157, 121, (278,307,0): 144, 158, 122, (278,308,0): 146, 162, 125, (278,309,0): 146, 163, 127, (278,310,0): 145, 162, 128, (278,311,0): 143, 160, 128, (278,312,0): 149, 163, 137, (278,313,0): 161, 173, 151, (278,314,0): 176, 185, 168, (278,315,0): 183, 189, 175, (278,316,0): 185, 190, 183, (278,317,0): 188, 190, 185, (278,318,0): 189, 191, 190, (278,319,0): 189, 191, 190, (278,320,0): 189, 191, 188, (278,321,0): 184, 186, 183, (278,322,0): 173, 178, 174, (278,323,0): 164, 170, 166, (278,324,0): 156, 166, 158, (278,325,0): 149, 162, 153, (278,326,0): 143, 159, 149, (278,327,0): 140, 157, 147, (278,328,0): 136, 153, 143, (278,329,0): 131, 148, 138, (278,330,0): 124, 140, 130, (278,331,0): 120, 133, 124, (278,332,0): 117, 129, 119, (278,333,0): 114, 124, 115, (278,334,0): 111, 118, 110, (278,335,0): 106, 116, 107, (278,336,0): 103, 116, 106, (278,337,0): 100, 116, 105, (278,338,0): 99, 115, 105, (278,339,0): 101, 114, 104, (278,340,0): 101, 114, 105, (278,341,0): 99, 111, 101, (278,342,0): 95, 105, 97, (278,343,0): 92, 99, 91, (278,344,0): 97, 102, 96, (278,345,0): 97, 100, 93, (278,346,0): 94, 95, 90, (278,347,0): 91, 90, 85, (278,348,0): 89, 85, 82, (278,349,0): 85, 82, 77, (278,350,0): 83, 79, 76, (278,351,0): 81, 77, 74, (278,352,0): 74, 70, 67, (278,353,0): 76, 72, 69, (278,354,0): 81, 78, 73, (278,355,0): 85, 82, 77, (278,356,0): 89, 86, 81, (278,357,0): 91, 88, 83, (278,358,0): 91, 88, 83, (278,359,0): 91, 88, 83, (278,360,0): 95, 94, 90, (278,361,0): 98, 100, 97, (278,362,0): 104, 108, 107, (278,363,0): 110, 119, 118, (278,364,0): 115, 125, 127, (278,365,0): 115, 129, 132, (278,366,0): 116, 129, 135, (278,367,0): 115, 130, 137, (278,368,0): 117, 130, 139, (278,369,0): 117, 129, 141, (278,370,0): 118, 130, 142, (278,371,0): 119, 131, 143, (278,372,0): 123, 132, 147, (278,373,0): 125, 134, 149, (278,374,0): 127, 136, 151, (278,375,0): 128, 137, 152, (278,376,0): 127, 134, 152, (278,377,0): 125, 132, 150, (278,378,0): 124, 129, 149, (278,379,0): 123, 128, 148, (278,380,0): 124, 129, 149, (278,381,0): 123, 128, 148, (278,382,0): 121, 123, 146, (278,383,0): 116, 121, 141, (278,384,0): 109, 116, 134, (278,385,0): 109, 116, 134, (278,386,0): 109, 115, 131, (278,387,0): 109, 115, 131, (278,388,0): 109, 115, 131, (278,389,0): 109, 115, 129, (278,390,0): 111, 114, 129, (278,391,0): 112, 114, 129, (278,392,0): 111, 113, 126, (278,393,0): 111, 110, 124, (278,394,0): 107, 106, 120, (278,395,0): 103, 101, 114, (278,396,0): 97, 95, 108, (278,397,0): 93, 89, 103, (278,398,0): 89, 85, 99, (278,399,0): 86, 84, 97, (278,400,0): 82, 84, 96, (278,401,0): 81, 88, 98, (278,402,0): 84, 90, 102, (278,403,0): 87, 95, 108, (278,404,0): 91, 99, 112, (278,405,0): 93, 100, 116, (278,406,0): 93, 100, 116, (278,407,0): 94, 101, 117, (278,408,0): 95, 101, 115, (278,409,0): 95, 98, 113, (278,410,0): 94, 93, 107, (278,411,0): 91, 89, 102, (278,412,0): 89, 86, 95, (278,413,0): 89, 84, 91, (278,414,0): 91, 81, 90, (278,415,0): 89, 82, 90, (278,416,0): 87, 81, 91, (278,417,0): 88, 82, 92, (278,418,0): 92, 84, 95, (278,419,0): 96, 86, 97, (278,420,0): 99, 86, 96, (278,421,0): 101, 85, 96, (278,422,0): 102, 85, 95, (278,423,0): 103, 83, 94, (278,424,0): 107, 85, 97, (278,425,0): 107, 83, 96, (278,426,0): 105, 82, 92, (278,427,0): 102, 79, 89, (278,428,0): 98, 75, 83, (278,429,0): 94, 71, 79, (278,430,0): 90, 67, 75, (278,431,0): 90, 65, 71, (278,432,0): 91, 59, 64, (278,433,0): 91, 56, 60, (278,434,0): 88, 53, 57, (278,435,0): 84, 52, 55, (278,436,0): 83, 53, 55, (278,437,0): 84, 55, 57, (278,438,0): 87, 58, 60, (278,439,0): 87, 61, 62, (278,440,0): 90, 66, 66, (278,441,0): 92, 71, 70, (278,442,0): 96, 76, 75, (278,443,0): 99, 79, 78, (278,444,0): 100, 82, 80, (278,445,0): 102, 87, 84, (278,446,0): 107, 92, 89, (278,447,0): 113, 95, 93, (278,448,0): 117, 97, 98, (278,449,0): 119, 99, 100, (278,450,0): 121, 101, 102, (278,451,0): 123, 104, 106, (278,452,0): 124, 105, 109, (278,453,0): 123, 106, 112, (278,454,0): 122, 107, 112, (278,455,0): 119, 106, 113, (278,456,0): 107, 94, 103, (278,457,0): 105, 93, 103, (278,458,0): 104, 94, 105, (278,459,0): 101, 93, 106, (278,460,0): 100, 94, 106, (278,461,0): 101, 95, 109, (278,462,0): 99, 95, 110, (278,463,0): 100, 96, 111, (278,464,0): 107, 100, 116, (278,465,0): 106, 99, 115, (278,466,0): 105, 98, 114, (278,467,0): 105, 98, 114, (278,468,0): 105, 98, 114, (278,469,0): 107, 99, 114, (278,470,0): 108, 100, 115, (278,471,0): 109, 101, 114, (278,472,0): 108, 100, 113, (278,473,0): 111, 100, 114, (278,474,0): 113, 102, 116, (278,475,0): 114, 104, 115, (278,476,0): 114, 104, 115, (278,477,0): 113, 103, 114, (278,478,0): 112, 102, 113, (278,479,0): 111, 101, 110, (278,480,0): 114, 102, 112, (278,481,0): 113, 102, 110, (278,482,0): 110, 100, 108, (278,483,0): 109, 99, 107, (278,484,0): 106, 99, 107, (278,485,0): 105, 98, 106, (278,486,0): 105, 100, 107, (278,487,0): 103, 100, 107, (278,488,0): 104, 103, 111, (278,489,0): 108, 107, 115, (278,490,0): 112, 112, 120, (278,491,0): 112, 115, 122, (278,492,0): 113, 116, 123, (278,493,0): 116, 119, 126, (278,494,0): 118, 123, 129, (278,495,0): 120, 127, 135, (278,496,0): 125, 133, 144, (278,497,0): 128, 136, 147, (278,498,0): 134, 142, 153, (278,499,0): 137, 147, 156, (278,500,0): 139, 149, 158, (278,501,0): 138, 148, 157, (278,502,0): 136, 146, 155, (278,503,0): 132, 145, 153, (278,504,0): 139, 152, 160, (278,505,0): 142, 157, 164, (278,506,0): 148, 162, 171, (278,507,0): 152, 166, 175, (278,508,0): 154, 168, 179, (278,509,0): 154, 170, 183, (278,510,0): 157, 173, 186, (278,511,0): 159, 177, 191, (278,512,0): 155, 177, 190, (278,513,0): 155, 179, 191, (278,514,0): 156, 178, 191, (278,515,0): 157, 179, 190, (278,516,0): 158, 180, 191, (278,517,0): 160, 183, 191, (278,518,0): 163, 183, 190, (278,519,0): 165, 184, 191, (278,520,0): 158, 177, 183, (278,521,0): 159, 177, 181, (278,522,0): 160, 175, 178, (278,523,0): 157, 173, 173, (278,524,0): 153, 169, 169, (278,525,0): 152, 168, 167, (278,526,0): 154, 168, 168, (278,527,0): 156, 172, 172, (278,528,0): 153, 170, 177, (278,529,0): 151, 169, 179, (278,530,0): 151, 169, 181, (278,531,0): 148, 168, 179, (278,532,0): 146, 165, 179, (278,533,0): 141, 163, 177, (278,534,0): 138, 159, 176, (278,535,0): 136, 157, 174, (278,536,0): 131, 152, 169, (278,537,0): 128, 149, 166, (278,538,0): 126, 145, 162, (278,539,0): 123, 140, 156, (278,540,0): 123, 139, 155, (278,541,0): 127, 140, 156, (278,542,0): 130, 142, 156, (278,543,0): 132, 144, 158, (278,544,0): 137, 146, 163, (278,545,0): 136, 145, 160, (278,546,0): 135, 142, 158, (278,547,0): 133, 141, 154, (278,548,0): 132, 138, 150, (278,549,0): 131, 138, 148, (278,550,0): 129, 136, 146, (278,551,0): 128, 135, 145, (278,552,0): 129, 136, 146, (278,553,0): 127, 136, 145, (278,554,0): 126, 134, 145, (278,555,0): 122, 135, 144, (278,556,0): 121, 135, 146, (278,557,0): 120, 136, 149, (278,558,0): 121, 137, 152, (278,559,0): 122, 138, 154, (278,560,0): 129, 140, 160, (278,561,0): 128, 139, 161, (278,562,0): 127, 138, 160, (278,563,0): 126, 137, 159, (278,564,0): 126, 138, 160, (278,565,0): 127, 139, 161, (278,566,0): 127, 142, 163, (278,567,0): 128, 143, 164, (278,568,0): 127, 142, 163, (278,569,0): 124, 141, 161, (278,570,0): 122, 139, 159, (278,571,0): 118, 136, 156, (278,572,0): 115, 133, 153, (278,573,0): 112, 133, 152, (278,574,0): 112, 133, 152, (278,575,0): 111, 133, 154, (278,576,0): 105, 129, 155, (278,577,0): 104, 128, 154, (278,578,0): 105, 125, 150, (278,579,0): 106, 124, 148, (278,580,0): 107, 123, 148, (278,581,0): 111, 123, 145, (278,582,0): 115, 123, 144, (278,583,0): 117, 124, 142, (278,584,0): 112, 114, 129, (278,585,0): 102, 101, 115, (278,586,0): 91, 88, 99, (278,587,0): 87, 79, 90, (278,588,0): 90, 79, 87, (278,589,0): 94, 81, 88, (278,590,0): 96, 81, 88, (278,591,0): 92, 79, 88, (278,592,0): 95, 85, 94, (278,593,0): 95, 85, 96, (278,594,0): 95, 85, 96, (278,595,0): 94, 84, 95, (278,596,0): 91, 79, 91, (278,597,0): 86, 74, 86, (278,598,0): 82, 70, 82, (278,599,0): 79, 67, 79, (279,0,0): 60, 49, 57, (279,1,0): 60, 49, 57, (279,2,0): 59, 48, 56, (279,3,0): 59, 48, 56, (279,4,0): 58, 47, 55, (279,5,0): 58, 47, 55, (279,6,0): 58, 45, 54, (279,7,0): 58, 45, 54, (279,8,0): 60, 44, 54, (279,9,0): 60, 44, 54, (279,10,0): 60, 43, 53, (279,11,0): 60, 43, 53, (279,12,0): 59, 42, 52, (279,13,0): 59, 42, 52, (279,14,0): 58, 41, 51, (279,15,0): 58, 41, 51, (279,16,0): 61, 44, 52, (279,17,0): 63, 44, 50, (279,18,0): 63, 43, 52, (279,19,0): 65, 44, 51, (279,20,0): 67, 44, 52, (279,21,0): 72, 47, 53, (279,22,0): 74, 49, 55, (279,23,0): 76, 49, 56, (279,24,0): 82, 55, 60, (279,25,0): 81, 54, 59, (279,26,0): 77, 52, 55, (279,27,0): 74, 52, 54, (279,28,0): 73, 51, 53, (279,29,0): 73, 53, 54, (279,30,0): 73, 55, 53, (279,31,0): 75, 55, 56, (279,32,0): 75, 50, 54, (279,33,0): 76, 49, 56, (279,34,0): 76, 49, 54, (279,35,0): 77, 50, 55, (279,36,0): 77, 50, 55, (279,37,0): 78, 51, 56, (279,38,0): 78, 52, 55, (279,39,0): 78, 52, 55, (279,40,0): 80, 54, 55, (279,41,0): 80, 54, 55, (279,42,0): 81, 55, 56, (279,43,0): 81, 55, 56, (279,44,0): 82, 56, 55, (279,45,0): 82, 56, 55, (279,46,0): 83, 57, 56, (279,47,0): 83, 58, 54, (279,48,0): 81, 57, 53, (279,49,0): 82, 59, 53, (279,50,0): 83, 60, 52, (279,51,0): 86, 61, 54, (279,52,0): 88, 64, 54, (279,53,0): 91, 67, 55, (279,54,0): 92, 69, 55, (279,55,0): 95, 69, 54, (279,56,0): 101, 75, 58, (279,57,0): 103, 76, 57, (279,58,0): 104, 77, 56, (279,59,0): 106, 80, 57, (279,60,0): 107, 81, 56, (279,61,0): 110, 83, 56, (279,62,0): 111, 84, 57, (279,63,0): 112, 85, 58, (279,64,0): 114, 85, 55, (279,65,0): 115, 86, 54, (279,66,0): 115, 86, 56, (279,67,0): 117, 86, 55, (279,68,0): 117, 86, 55, (279,69,0): 118, 88, 54, (279,70,0): 118, 87, 56, (279,71,0): 120, 87, 54, (279,72,0): 123, 90, 57, (279,73,0): 124, 90, 55, (279,74,0): 125, 91, 56, (279,75,0): 125, 91, 54, (279,76,0): 126, 92, 57, (279,77,0): 127, 91, 55, (279,78,0): 128, 92, 56, (279,79,0): 128, 92, 56, (279,80,0): 128, 92, 56, (279,81,0): 128, 92, 56, (279,82,0): 129, 93, 57, (279,83,0): 129, 93, 57, (279,84,0): 130, 94, 58, (279,85,0): 130, 94, 58, (279,86,0): 131, 95, 59, (279,87,0): 131, 95, 59, (279,88,0): 131, 95, 59, (279,89,0): 131, 95, 59, (279,90,0): 131, 95, 59, (279,91,0): 131, 95, 59, (279,92,0): 131, 95, 59, (279,93,0): 131, 95, 59, (279,94,0): 131, 95, 59, (279,95,0): 131, 95, 59, (279,96,0): 133, 97, 63, (279,97,0): 133, 97, 65, (279,98,0): 133, 97, 65, (279,99,0): 132, 96, 64, (279,100,0): 130, 94, 62, (279,101,0): 127, 90, 61, (279,102,0): 125, 88, 59, (279,103,0): 123, 86, 57, (279,104,0): 120, 83, 56, (279,105,0): 119, 82, 55, (279,106,0): 116, 79, 52, (279,107,0): 114, 77, 51, (279,108,0): 112, 75, 49, (279,109,0): 112, 75, 49, (279,110,0): 113, 76, 50, (279,111,0): 114, 77, 51, (279,112,0): 116, 80, 56, (279,113,0): 114, 80, 53, (279,114,0): 113, 79, 52, (279,115,0): 112, 78, 51, (279,116,0): 111, 77, 50, (279,117,0): 111, 77, 49, (279,118,0): 112, 78, 50, (279,119,0): 113, 80, 49, (279,120,0): 118, 85, 54, (279,121,0): 118, 85, 54, (279,122,0): 119, 86, 55, (279,123,0): 120, 87, 54, (279,124,0): 121, 88, 55, (279,125,0): 121, 88, 55, (279,126,0): 122, 89, 56, (279,127,0): 123, 88, 56, (279,128,0): 124, 88, 56, (279,129,0): 124, 88, 56, (279,130,0): 124, 88, 56, (279,131,0): 124, 88, 54, (279,132,0): 124, 88, 54, (279,133,0): 124, 88, 54, (279,134,0): 124, 88, 54, (279,135,0): 124, 88, 52, (279,136,0): 128, 92, 56, (279,137,0): 129, 94, 56, (279,138,0): 129, 94, 56, (279,139,0): 129, 94, 56, (279,140,0): 128, 93, 55, (279,141,0): 126, 91, 51, (279,142,0): 124, 89, 49, (279,143,0): 123, 88, 48, (279,144,0): 125, 90, 50, (279,145,0): 124, 89, 49, (279,146,0): 124, 89, 51, (279,147,0): 122, 87, 47, (279,148,0): 120, 85, 47, (279,149,0): 116, 81, 41, (279,150,0): 114, 79, 41, (279,151,0): 112, 77, 37, (279,152,0): 116, 81, 43, (279,153,0): 116, 81, 41, (279,154,0): 118, 83, 45, (279,155,0): 120, 85, 45, (279,156,0): 124, 89, 51, (279,157,0): 127, 92, 52, (279,158,0): 131, 96, 58, (279,159,0): 133, 98, 56, (279,160,0): 139, 107, 60, (279,161,0): 144, 112, 61, (279,162,0): 154, 121, 68, (279,163,0): 160, 128, 71, (279,164,0): 165, 133, 72, (279,165,0): 170, 139, 74, (279,166,0): 178, 145, 78, (279,167,0): 182, 149, 80, (279,168,0): 193, 159, 87, (279,169,0): 192, 158, 84, (279,170,0): 193, 157, 83, (279,171,0): 192, 156, 82, (279,172,0): 192, 154, 81, (279,173,0): 191, 153, 80, (279,174,0): 188, 150, 77, (279,175,0): 187, 149, 74, (279,176,0): 190, 148, 74, (279,177,0): 179, 137, 63, (279,178,0): 170, 127, 59, (279,179,0): 166, 125, 61, (279,180,0): 160, 118, 60, (279,181,0): 147, 106, 54, (279,182,0): 139, 97, 49, (279,183,0): 139, 98, 52, (279,184,0): 142, 104, 57, (279,185,0): 144, 108, 58, (279,186,0): 150, 114, 62, (279,187,0): 156, 124, 65, (279,188,0): 167, 136, 71, (279,189,0): 177, 148, 78, (279,190,0): 187, 159, 85, (279,191,0): 192, 165, 86, (279,192,0): 206, 178, 95, (279,193,0): 206, 179, 92, (279,194,0): 208, 181, 94, (279,195,0): 212, 187, 95, (279,196,0): 218, 194, 98, (279,197,0): 224, 202, 101, (279,198,0): 227, 208, 105, (279,199,0): 229, 212, 106, (279,200,0): 230, 217, 105, (279,201,0): 233, 222, 107, (279,202,0): 240, 229, 114, (279,203,0): 247, 237, 122, (279,204,0): 251, 244, 128, (279,205,0): 255, 248, 132, (279,206,0): 255, 251, 134, (279,207,0): 255, 252, 135, (279,208,0): 252, 251, 135, (279,209,0): 252, 251, 135, (279,210,0): 252, 251, 135, (279,211,0): 252, 251, 135, (279,212,0): 254, 251, 136, (279,213,0): 254, 251, 136, (279,214,0): 255, 252, 137, (279,215,0): 255, 252, 137, (279,216,0): 252, 249, 134, (279,217,0): 251, 245, 131, (279,218,0): 249, 243, 129, (279,219,0): 251, 245, 131, (279,220,0): 255, 249, 135, (279,221,0): 255, 253, 139, (279,222,0): 255, 253, 139, (279,223,0): 255, 251, 137, (279,224,0): 255, 255, 139, (279,225,0): 255, 255, 139, (279,226,0): 255, 254, 141, (279,227,0): 255, 254, 138, (279,228,0): 255, 254, 141, (279,229,0): 255, 255, 139, (279,230,0): 255, 255, 142, (279,231,0): 255, 255, 141, (279,232,0): 255, 254, 141, (279,233,0): 255, 255, 139, (279,234,0): 255, 253, 140, (279,235,0): 254, 253, 137, (279,236,0): 253, 251, 138, (279,237,0): 253, 252, 136, (279,238,0): 254, 252, 139, (279,239,0): 251, 254, 139, (279,240,0): 249, 255, 141, (279,241,0): 249, 255, 143, (279,242,0): 251, 255, 144, (279,243,0): 253, 255, 144, (279,244,0): 255, 255, 145, (279,245,0): 255, 255, 145, (279,246,0): 255, 255, 146, (279,247,0): 255, 254, 146, (279,248,0): 255, 247, 139, (279,249,0): 254, 242, 134, (279,250,0): 243, 231, 123, (279,251,0): 231, 219, 111, (279,252,0): 222, 210, 102, (279,253,0): 223, 211, 103, (279,254,0): 232, 221, 113, (279,255,0): 239, 231, 122, (279,256,0): 246, 243, 130, (279,257,0): 247, 245, 132, (279,258,0): 251, 248, 131, (279,259,0): 254, 252, 133, (279,260,0): 255, 255, 132, (279,261,0): 255, 255, 131, (279,262,0): 255, 255, 129, (279,263,0): 255, 255, 127, (279,264,0): 255, 252, 122, (279,265,0): 255, 254, 123, (279,266,0): 255, 255, 127, (279,267,0): 255, 255, 130, (279,268,0): 255, 255, 133, (279,269,0): 254, 255, 135, (279,270,0): 254, 255, 137, (279,271,0): 251, 255, 138, (279,272,0): 244, 255, 138, (279,273,0): 240, 255, 136, (279,274,0): 238, 255, 136, (279,275,0): 236, 254, 136, (279,276,0): 237, 251, 137, (279,277,0): 238, 252, 139, (279,278,0): 237, 254, 142, (279,279,0): 238, 254, 147, (279,280,0): 239, 255, 150, (279,281,0): 238, 255, 152, (279,282,0): 234, 255, 152, (279,283,0): 228, 253, 152, (279,284,0): 221, 247, 148, (279,285,0): 213, 240, 143, (279,286,0): 203, 233, 135, (279,287,0): 198, 230, 133, (279,288,0): 190, 221, 128, (279,289,0): 194, 224, 134, (279,290,0): 197, 225, 138, (279,291,0): 197, 225, 141, (279,292,0): 202, 226, 148, (279,293,0): 200, 224, 148, (279,294,0): 189, 211, 139, (279,295,0): 174, 195, 126, (279,296,0): 170, 189, 125, (279,297,0): 168, 187, 123, (279,298,0): 165, 185, 122, (279,299,0): 163, 185, 121, (279,300,0): 163, 185, 121, (279,301,0): 160, 185, 120, (279,302,0): 157, 182, 117, (279,303,0): 155, 179, 119, (279,304,0): 157, 173, 126, (279,305,0): 153, 168, 127, (279,306,0): 150, 165, 124, (279,307,0): 149, 166, 124, (279,308,0): 151, 169, 129, (279,309,0): 150, 171, 132, (279,310,0): 148, 168, 131, (279,311,0): 144, 165, 132, (279,312,0): 153, 172, 144, (279,313,0): 161, 179, 155, (279,314,0): 176, 191, 172, (279,315,0): 186, 198, 184, (279,316,0): 186, 198, 188, (279,317,0): 181, 190, 185, (279,318,0): 178, 187, 186, (279,319,0): 179, 188, 187, (279,320,0): 178, 187, 186, (279,321,0): 171, 182, 178, (279,322,0): 164, 175, 171, (279,323,0): 158, 170, 166, (279,324,0): 153, 168, 161, (279,325,0): 151, 166, 159, (279,326,0): 145, 162, 154, (279,327,0): 141, 158, 150, (279,328,0): 141, 158, 150, (279,329,0): 135, 152, 142, (279,330,0): 128, 144, 134, (279,331,0): 123, 136, 127, (279,332,0): 120, 131, 123, (279,333,0): 117, 127, 118, (279,334,0): 114, 121, 113, (279,335,0): 108, 118, 109, (279,336,0): 105, 118, 109, (279,337,0): 101, 117, 107, (279,338,0): 100, 116, 106, (279,339,0): 100, 116, 106, (279,340,0): 101, 114, 105, (279,341,0): 98, 111, 102, (279,342,0): 93, 104, 96, (279,343,0): 90, 100, 92, (279,344,0): 101, 108, 101, (279,345,0): 99, 104, 98, (279,346,0): 96, 98, 93, (279,347,0): 90, 92, 87, (279,348,0): 86, 87, 82, (279,349,0): 82, 83, 78, (279,350,0): 79, 80, 75, (279,351,0): 78, 79, 74, (279,352,0): 73, 72, 68, (279,353,0): 74, 73, 69, (279,354,0): 77, 76, 72, (279,355,0): 84, 81, 76, (279,356,0): 88, 85, 80, (279,357,0): 91, 88, 83, (279,358,0): 92, 89, 84, (279,359,0): 90, 89, 84, (279,360,0): 94, 95, 90, (279,361,0): 98, 100, 97, (279,362,0): 104, 108, 109, (279,363,0): 110, 118, 120, (279,364,0): 115, 125, 127, (279,365,0): 117, 128, 132, (279,366,0): 116, 129, 137, (279,367,0): 115, 130, 137, (279,368,0): 113, 125, 137, (279,369,0): 114, 126, 138, (279,370,0): 115, 127, 139, (279,371,0): 118, 130, 142, (279,372,0): 123, 132, 147, (279,373,0): 126, 135, 150, (279,374,0): 128, 137, 152, (279,375,0): 130, 139, 154, (279,376,0): 128, 135, 153, (279,377,0): 126, 133, 151, (279,378,0): 124, 129, 149, (279,379,0): 124, 129, 149, (279,380,0): 124, 129, 149, (279,381,0): 123, 128, 148, (279,382,0): 121, 123, 146, (279,383,0): 118, 120, 141, (279,384,0): 110, 115, 135, (279,385,0): 109, 114, 133, (279,386,0): 108, 114, 130, (279,387,0): 107, 113, 129, (279,388,0): 107, 113, 129, (279,389,0): 108, 114, 130, (279,390,0): 111, 114, 131, (279,391,0): 112, 115, 130, (279,392,0): 112, 114, 129, (279,393,0): 110, 112, 125, (279,394,0): 108, 107, 121, (279,395,0): 104, 103, 117, (279,396,0): 99, 97, 110, (279,397,0): 94, 92, 105, (279,398,0): 90, 88, 101, (279,399,0): 87, 87, 99, (279,400,0): 84, 88, 100, (279,401,0): 84, 90, 102, (279,402,0): 87, 95, 108, (279,403,0): 90, 98, 111, (279,404,0): 92, 99, 115, (279,405,0): 93, 100, 116, (279,406,0): 93, 100, 116, (279,407,0): 94, 100, 116, (279,408,0): 96, 99, 114, (279,409,0): 94, 96, 109, (279,410,0): 93, 91, 104, (279,411,0): 89, 86, 97, (279,412,0): 89, 81, 92, (279,413,0): 88, 78, 86, (279,414,0): 89, 78, 86, (279,415,0): 88, 77, 85, (279,416,0): 81, 74, 81, (279,417,0): 83, 76, 83, (279,418,0): 88, 78, 86, (279,419,0): 91, 80, 88, (279,420,0): 95, 79, 89, (279,421,0): 97, 80, 88, (279,422,0): 99, 78, 87, (279,423,0): 99, 76, 84, (279,424,0): 103, 77, 86, (279,425,0): 101, 74, 83, (279,426,0): 96, 69, 78, (279,427,0): 91, 64, 71, (279,428,0): 87, 60, 67, (279,429,0): 85, 58, 63, (279,430,0): 85, 58, 63, (279,431,0): 88, 59, 63, (279,432,0): 90, 56, 57, (279,433,0): 90, 54, 54, (279,434,0): 87, 53, 52, (279,435,0): 86, 52, 51, (279,436,0): 85, 54, 52, (279,437,0): 86, 56, 54, (279,438,0): 87, 59, 58, (279,439,0): 87, 61, 60, (279,440,0): 90, 64, 63, (279,441,0): 93, 69, 67, (279,442,0): 96, 75, 74, (279,443,0): 98, 78, 77, (279,444,0): 98, 80, 78, (279,445,0): 98, 83, 80, (279,446,0): 103, 88, 85, (279,447,0): 110, 92, 90, (279,448,0): 119, 97, 99, (279,449,0): 120, 98, 100, (279,450,0): 123, 101, 103, (279,451,0): 124, 104, 105, (279,452,0): 125, 105, 107, (279,453,0): 124, 105, 109, (279,454,0): 121, 105, 108, (279,455,0): 119, 104, 109, (279,456,0): 104, 89, 96, (279,457,0): 101, 88, 97, (279,458,0): 100, 88, 98, (279,459,0): 98, 86, 96, (279,460,0): 96, 86, 97, (279,461,0): 95, 85, 96, (279,462,0): 92, 84, 97, (279,463,0): 92, 84, 97, (279,464,0): 103, 92, 108, (279,465,0): 102, 91, 107, (279,466,0): 102, 91, 107, (279,467,0): 102, 91, 105, (279,468,0): 103, 92, 106, (279,469,0): 104, 93, 107, (279,470,0): 106, 95, 109, (279,471,0): 107, 97, 108, (279,472,0): 108, 96, 108, (279,473,0): 109, 99, 108, (279,474,0): 113, 101, 111, (279,475,0): 114, 104, 113, (279,476,0): 115, 105, 114, (279,477,0): 114, 104, 112, (279,478,0): 113, 103, 111, (279,479,0): 111, 101, 109, (279,480,0): 114, 103, 111, (279,481,0): 113, 102, 110, (279,482,0): 111, 100, 108, (279,483,0): 109, 99, 107, (279,484,0): 108, 98, 107, (279,485,0): 106, 99, 107, (279,486,0): 107, 100, 108, (279,487,0): 106, 101, 108, (279,488,0): 105, 102, 111, (279,489,0): 108, 107, 115, (279,490,0): 112, 111, 119, (279,491,0): 114, 114, 122, (279,492,0): 115, 115, 123, (279,493,0): 115, 118, 125, (279,494,0): 118, 121, 130, (279,495,0): 120, 124, 135, (279,496,0): 124, 131, 141, (279,497,0): 127, 136, 145, (279,498,0): 132, 141, 150, (279,499,0): 137, 146, 155, (279,500,0): 138, 148, 157, (279,501,0): 137, 148, 154, (279,502,0): 134, 145, 151, (279,503,0): 131, 142, 148, (279,504,0): 140, 153, 159, (279,505,0): 145, 158, 166, (279,506,0): 150, 165, 172, (279,507,0): 154, 168, 177, (279,508,0): 155, 169, 180, (279,509,0): 157, 171, 184, (279,510,0): 158, 174, 189, (279,511,0): 159, 176, 192, (279,512,0): 159, 181, 195, (279,513,0): 157, 180, 194, (279,514,0): 157, 180, 194, (279,515,0): 158, 182, 194, (279,516,0): 159, 181, 194, (279,517,0): 161, 183, 194, (279,518,0): 164, 184, 193, (279,519,0): 165, 185, 192, (279,520,0): 162, 181, 187, (279,521,0): 163, 181, 185, (279,522,0): 162, 180, 182, (279,523,0): 160, 176, 176, (279,524,0): 156, 172, 172, (279,525,0): 156, 170, 170, (279,526,0): 158, 172, 172, (279,527,0): 160, 176, 176, (279,528,0): 153, 172, 178, (279,529,0): 153, 173, 182, (279,530,0): 153, 173, 184, (279,531,0): 150, 172, 185, (279,532,0): 148, 170, 184, (279,533,0): 145, 168, 184, (279,534,0): 143, 166, 182, (279,535,0): 141, 164, 182, (279,536,0): 133, 156, 174, (279,537,0): 133, 154, 173, (279,538,0): 130, 151, 170, (279,539,0): 129, 148, 165, (279,540,0): 129, 146, 164, (279,541,0): 129, 145, 161, (279,542,0): 132, 143, 161, (279,543,0): 133, 145, 161, (279,544,0): 138, 147, 164, (279,545,0): 137, 146, 163, (279,546,0): 137, 144, 160, (279,547,0): 136, 143, 159, (279,548,0): 135, 141, 155, (279,549,0): 133, 139, 151, (279,550,0): 132, 139, 149, (279,551,0): 131, 138, 148, (279,552,0): 131, 138, 148, (279,553,0): 129, 138, 147, (279,554,0): 126, 136, 146, (279,555,0): 122, 134, 146, (279,556,0): 120, 134, 147, (279,557,0): 119, 135, 148, (279,558,0): 119, 137, 151, (279,559,0): 121, 137, 153, (279,560,0): 132, 143, 163, (279,561,0): 133, 141, 162, (279,562,0): 129, 140, 160, (279,563,0): 128, 139, 159, (279,564,0): 127, 140, 159, (279,565,0): 128, 141, 160, (279,566,0): 128, 143, 162, (279,567,0): 129, 144, 163, (279,568,0): 127, 144, 162, (279,569,0): 124, 143, 160, (279,570,0): 122, 141, 158, (279,571,0): 117, 138, 155, (279,572,0): 115, 136, 153, (279,573,0): 114, 135, 152, (279,574,0): 113, 136, 152, (279,575,0): 113, 135, 156, (279,576,0): 108, 130, 154, (279,577,0): 107, 128, 155, (279,578,0): 106, 126, 151, (279,579,0): 106, 124, 148, (279,580,0): 108, 123, 146, (279,581,0): 111, 123, 145, (279,582,0): 116, 123, 142, (279,583,0): 121, 124, 143, (279,584,0): 114, 113, 129, (279,585,0): 103, 99, 113, (279,586,0): 90, 82, 93, (279,587,0): 83, 73, 82, (279,588,0): 85, 72, 79, (279,589,0): 91, 76, 81, (279,590,0): 92, 75, 81, (279,591,0): 90, 75, 82, (279,592,0): 91, 78, 88, (279,593,0): 90, 80, 91, (279,594,0): 92, 80, 92, (279,595,0): 90, 78, 90, (279,596,0): 87, 75, 87, (279,597,0): 83, 71, 83, (279,598,0): 79, 67, 79, (279,599,0): 77, 65, 77, (280,0,0): 60, 49, 57, (280,1,0): 59, 48, 56, (280,2,0): 57, 46, 54, (280,3,0): 56, 45, 53, (280,4,0): 56, 45, 53, (280,5,0): 56, 45, 53, (280,6,0): 57, 44, 53, (280,7,0): 58, 45, 54, (280,8,0): 57, 41, 51, (280,9,0): 58, 42, 52, (280,10,0): 59, 42, 52, (280,11,0): 59, 42, 52, (280,12,0): 60, 43, 53, (280,13,0): 61, 44, 54, (280,14,0): 61, 44, 54, (280,15,0): 61, 44, 52, (280,16,0): 64, 45, 51, (280,17,0): 66, 45, 50, (280,18,0): 68, 47, 54, (280,19,0): 71, 48, 54, (280,20,0): 72, 49, 55, (280,21,0): 74, 49, 55, (280,22,0): 75, 48, 55, (280,23,0): 74, 47, 52, (280,24,0): 77, 50, 55, (280,25,0): 77, 50, 55, (280,26,0): 76, 51, 54, (280,27,0): 74, 52, 54, (280,28,0): 74, 52, 54, (280,29,0): 73, 53, 54, (280,30,0): 72, 54, 54, (280,31,0): 72, 54, 54, (280,32,0): 76, 51, 55, (280,33,0): 77, 50, 57, (280,34,0): 77, 50, 55, (280,35,0): 77, 50, 55, (280,36,0): 77, 50, 55, (280,37,0): 77, 50, 55, (280,38,0): 77, 51, 54, (280,39,0): 77, 51, 54, (280,40,0): 77, 51, 52, (280,41,0): 78, 52, 53, (280,42,0): 79, 53, 54, (280,43,0): 80, 54, 55, (280,44,0): 81, 55, 54, (280,45,0): 82, 56, 55, (280,46,0): 82, 56, 55, (280,47,0): 83, 58, 54, (280,48,0): 82, 57, 53, (280,49,0): 84, 59, 54, (280,50,0): 86, 61, 54, (280,51,0): 88, 61, 54, (280,52,0): 88, 61, 52, (280,53,0): 90, 63, 52, (280,54,0): 95, 69, 56, (280,55,0): 99, 71, 57, (280,56,0): 106, 79, 60, (280,57,0): 107, 79, 58, (280,58,0): 109, 81, 59, (280,59,0): 110, 82, 58, (280,60,0): 112, 85, 58, (280,61,0): 116, 86, 58, (280,62,0): 117, 87, 59, (280,63,0): 118, 89, 59, (280,64,0): 119, 88, 57, (280,65,0): 119, 89, 55, (280,66,0): 120, 89, 58, (280,67,0): 122, 89, 56, (280,68,0): 123, 90, 57, (280,69,0): 124, 91, 56, (280,70,0): 124, 91, 58, (280,71,0): 126, 92, 57, (280,72,0): 126, 92, 57, (280,73,0): 127, 91, 55, (280,74,0): 128, 92, 56, (280,75,0): 129, 94, 56, (280,76,0): 129, 93, 57, (280,77,0): 132, 94, 57, (280,78,0): 133, 95, 58, (280,79,0): 133, 95, 58, (280,80,0): 132, 94, 57, (280,81,0): 131, 93, 56, (280,82,0): 130, 92, 55, (280,83,0): 130, 92, 55, (280,84,0): 131, 93, 56, (280,85,0): 133, 95, 58, (280,86,0): 136, 98, 61, (280,87,0): 137, 99, 62, (280,88,0): 136, 98, 61, (280,89,0): 137, 99, 62, (280,90,0): 138, 100, 63, (280,91,0): 139, 101, 64, (280,92,0): 140, 102, 65, (280,93,0): 139, 101, 64, (280,94,0): 138, 100, 63, (280,95,0): 138, 100, 64, (280,96,0): 131, 93, 57, (280,97,0): 132, 93, 60, (280,98,0): 133, 94, 61, (280,99,0): 133, 94, 61, (280,100,0): 133, 94, 61, (280,101,0): 130, 91, 60, (280,102,0): 128, 89, 58, (280,103,0): 127, 88, 57, (280,104,0): 125, 86, 57, (280,105,0): 124, 85, 56, (280,106,0): 122, 83, 54, (280,107,0): 120, 80, 54, (280,108,0): 119, 79, 53, (280,109,0): 119, 79, 53, (280,110,0): 119, 79, 53, (280,111,0): 117, 80, 53, (280,112,0): 118, 82, 56, (280,113,0): 118, 83, 55, (280,114,0): 118, 83, 55, (280,115,0): 119, 84, 56, (280,116,0): 119, 84, 56, (280,117,0): 119, 84, 54, (280,118,0): 120, 85, 55, (280,119,0): 120, 85, 55, (280,120,0): 123, 88, 58, (280,121,0): 123, 88, 56, (280,122,0): 124, 89, 57, (280,123,0): 125, 91, 56, (280,124,0): 124, 90, 55, (280,125,0): 123, 89, 54, (280,126,0): 122, 88, 53, (280,127,0): 121, 87, 52, (280,128,0): 127, 91, 57, (280,129,0): 124, 88, 54, (280,130,0): 121, 85, 51, (280,131,0): 121, 85, 49, (280,132,0): 125, 89, 53, (280,133,0): 127, 91, 55, (280,134,0): 126, 90, 54, (280,135,0): 124, 89, 51, (280,136,0): 129, 94, 56, (280,137,0): 128, 93, 53, (280,138,0): 127, 92, 52, (280,139,0): 126, 91, 51, (280,140,0): 124, 89, 49, (280,141,0): 123, 88, 46, (280,142,0): 122, 87, 45, (280,143,0): 122, 87, 45, (280,144,0): 122, 87, 45, (280,145,0): 123, 88, 46, (280,146,0): 124, 89, 49, (280,147,0): 125, 90, 48, (280,148,0): 124, 89, 49, (280,149,0): 122, 87, 45, (280,150,0): 120, 85, 45, (280,151,0): 118, 83, 41, (280,152,0): 118, 83, 43, (280,153,0): 120, 85, 43, (280,154,0): 122, 87, 47, (280,155,0): 123, 88, 46, (280,156,0): 124, 89, 49, (280,157,0): 128, 93, 51, (280,158,0): 133, 98, 58, (280,159,0): 138, 104, 59, (280,160,0): 142, 109, 58, (280,161,0): 148, 115, 61, (280,162,0): 157, 122, 66, (280,163,0): 164, 129, 71, (280,164,0): 169, 135, 72, (280,165,0): 175, 142, 75, (280,166,0): 182, 149, 80, (280,167,0): 187, 155, 82, (280,168,0): 192, 158, 84, (280,169,0): 193, 160, 83, (280,170,0): 193, 160, 83, (280,171,0): 193, 160, 83, (280,172,0): 194, 158, 82, (280,173,0): 193, 157, 81, (280,174,0): 191, 155, 79, (280,175,0): 191, 153, 78, (280,176,0): 185, 146, 71, (280,177,0): 183, 143, 71, (280,178,0): 178, 138, 69, (280,179,0): 169, 128, 64, (280,180,0): 158, 116, 58, (280,181,0): 150, 109, 55, (280,182,0): 145, 105, 54, (280,183,0): 143, 105, 56, (280,184,0): 153, 115, 66, (280,185,0): 151, 115, 63, (280,186,0): 151, 119, 62, (280,187,0): 159, 129, 65, (280,188,0): 174, 145, 75, (280,189,0): 187, 161, 84, (280,190,0): 197, 172, 90, (280,191,0): 203, 177, 92, (280,192,0): 204, 177, 90, (280,193,0): 207, 180, 89, (280,194,0): 213, 186, 95, (280,195,0): 220, 196, 100, (280,196,0): 227, 205, 106, (280,197,0): 231, 212, 109, (280,198,0): 233, 216, 110, (280,199,0): 232, 219, 107, (280,200,0): 246, 235, 120, (280,201,0): 248, 239, 122, (280,202,0): 251, 244, 127, (280,203,0): 255, 250, 132, (280,204,0): 255, 254, 135, (280,205,0): 255, 255, 136, (280,206,0): 255, 255, 136, (280,207,0): 255, 254, 136, (280,208,0): 255, 255, 143, (280,209,0): 255, 255, 144, (280,210,0): 255, 255, 143, (280,211,0): 254, 254, 142, (280,212,0): 254, 252, 141, (280,213,0): 252, 250, 139, (280,214,0): 251, 249, 138, (280,215,0): 251, 249, 138, (280,216,0): 247, 245, 134, (280,217,0): 249, 245, 135, (280,218,0): 252, 248, 138, (280,219,0): 254, 250, 140, (280,220,0): 255, 252, 142, (280,221,0): 255, 253, 143, (280,222,0): 255, 254, 144, (280,223,0): 255, 254, 144, (280,224,0): 255, 254, 143, (280,225,0): 255, 255, 141, (280,226,0): 255, 255, 143, (280,227,0): 255, 255, 141, (280,228,0): 255, 255, 143, (280,229,0): 255, 255, 141, (280,230,0): 255, 255, 143, (280,231,0): 255, 255, 141, (280,232,0): 254, 254, 142, (280,233,0): 254, 254, 140, (280,234,0): 254, 254, 142, (280,235,0): 254, 254, 140, (280,236,0): 254, 254, 142, (280,237,0): 254, 254, 140, (280,238,0): 254, 254, 142, (280,239,0): 252, 255, 142, (280,240,0): 249, 255, 145, (280,241,0): 249, 255, 145, (280,242,0): 250, 255, 145, (280,243,0): 252, 255, 145, (280,244,0): 253, 255, 145, (280,245,0): 255, 255, 145, (280,246,0): 255, 253, 145, (280,247,0): 255, 252, 145, (280,248,0): 255, 252, 145, (280,249,0): 255, 251, 145, (280,250,0): 255, 244, 138, (280,251,0): 240, 229, 123, (280,252,0): 224, 213, 107, (280,253,0): 218, 207, 101, (280,254,0): 223, 212, 106, (280,255,0): 229, 221, 114, (280,256,0): 239, 235, 128, (280,257,0): 238, 236, 127, (280,258,0): 241, 238, 125, (280,259,0): 246, 243, 126, (280,260,0): 255, 250, 130, (280,261,0): 255, 255, 132, (280,262,0): 255, 255, 130, (280,263,0): 255, 255, 127, (280,264,0): 254, 251, 122, (280,265,0): 253, 253, 123, (280,266,0): 254, 255, 128, (280,267,0): 255, 255, 132, (280,268,0): 252, 255, 136, (280,269,0): 249, 255, 136, (280,270,0): 248, 255, 137, (280,271,0): 245, 255, 140, (280,272,0): 240, 255, 142, (280,273,0): 238, 255, 142, (280,274,0): 236, 254, 142, (280,275,0): 235, 253, 143, (280,276,0): 236, 252, 143, (280,277,0): 237, 253, 146, (280,278,0): 239, 254, 149, (280,279,0): 240, 255, 150, (280,280,0): 242, 255, 155, (280,281,0): 243, 255, 159, (280,282,0): 237, 255, 157, (280,283,0): 228, 253, 151, (280,284,0): 225, 251, 150, (280,285,0): 223, 251, 151, (280,286,0): 209, 241, 140, (280,287,0): 192, 226, 129, (280,288,0): 182, 215, 124, (280,289,0): 183, 213, 127, (280,290,0): 185, 213, 129, (280,291,0): 188, 215, 134, (280,292,0): 192, 216, 140, (280,293,0): 190, 212, 139, (280,294,0): 184, 204, 135, (280,295,0): 178, 197, 131, (280,296,0): 171, 190, 126, (280,297,0): 171, 189, 127, (280,298,0): 171, 191, 130, (280,299,0): 171, 193, 131, (280,300,0): 168, 194, 129, (280,301,0): 164, 193, 127, (280,302,0): 162, 191, 125, (280,303,0): 161, 187, 126, (280,304,0): 156, 179, 125, (280,305,0): 158, 178, 129, (280,306,0): 157, 177, 128, (280,307,0): 155, 177, 130, (280,308,0): 154, 177, 131, (280,309,0): 151, 177, 132, (280,310,0): 149, 174, 134, (280,311,0): 148, 172, 136, (280,312,0): 149, 174, 142, (280,313,0): 154, 178, 152, (280,314,0): 168, 190, 169, (280,315,0): 179, 200, 185, (280,316,0): 178, 195, 185, (280,317,0): 167, 182, 177, (280,318,0): 165, 177, 177, (280,319,0): 169, 181, 181, (280,320,0): 169, 184, 181, (280,321,0): 164, 180, 177, (280,322,0): 159, 176, 170, (280,323,0): 154, 171, 165, (280,324,0): 148, 167, 161, (280,325,0): 147, 166, 160, (280,326,0): 147, 166, 160, (280,327,0): 148, 168, 159, (280,328,0): 146, 166, 157, (280,329,0): 142, 159, 151, (280,330,0): 136, 151, 144, (280,331,0): 131, 144, 135, (280,332,0): 127, 138, 130, (280,333,0): 121, 132, 124, (280,334,0): 116, 126, 118, (280,335,0): 111, 122, 114, (280,336,0): 103, 118, 111, (280,337,0): 100, 117, 109, (280,338,0): 100, 115, 108, (280,339,0): 100, 115, 108, (280,340,0): 103, 116, 109, (280,341,0): 101, 114, 107, (280,342,0): 98, 109, 103, (280,343,0): 95, 104, 99, (280,344,0): 93, 102, 97, (280,345,0): 92, 98, 94, (280,346,0): 89, 95, 91, (280,347,0): 88, 93, 89, (280,348,0): 89, 91, 88, (280,349,0): 85, 87, 84, (280,350,0): 80, 82, 79, (280,351,0): 75, 77, 74, (280,352,0): 70, 70, 68, (280,353,0): 71, 72, 67, (280,354,0): 73, 74, 69, (280,355,0): 78, 77, 73, (280,356,0): 83, 82, 77, (280,357,0): 89, 88, 83, (280,358,0): 95, 94, 89, (280,359,0): 98, 97, 92, (280,360,0): 101, 102, 97, (280,361,0): 104, 106, 103, (280,362,0): 108, 112, 113, (280,363,0): 112, 120, 122, (280,364,0): 116, 126, 128, (280,365,0): 116, 127, 131, (280,366,0): 114, 127, 135, (280,367,0): 112, 125, 133, (280,368,0): 114, 124, 136, (280,369,0): 115, 125, 137, (280,370,0): 115, 125, 137, (280,371,0): 117, 127, 139, (280,372,0): 120, 129, 144, (280,373,0): 123, 132, 147, (280,374,0): 127, 134, 150, (280,375,0): 129, 136, 152, (280,376,0): 125, 130, 149, (280,377,0): 126, 131, 150, (280,378,0): 128, 130, 151, (280,379,0): 128, 130, 151, (280,380,0): 125, 127, 148, (280,381,0): 122, 124, 145, (280,382,0): 118, 120, 143, (280,383,0): 116, 118, 139, (280,384,0): 115, 117, 138, (280,385,0): 114, 117, 136, (280,386,0): 114, 117, 136, (280,387,0): 114, 117, 136, (280,388,0): 113, 116, 135, (280,389,0): 112, 115, 132, (280,390,0): 113, 114, 132, (280,391,0): 113, 115, 130, (280,392,0): 114, 116, 131, (280,393,0): 112, 114, 129, (280,394,0): 111, 110, 124, (280,395,0): 106, 105, 119, (280,396,0): 100, 99, 113, (280,397,0): 93, 92, 106, (280,398,0): 88, 87, 101, (280,399,0): 83, 85, 98, (280,400,0): 77, 83, 97, (280,401,0): 81, 89, 102, (280,402,0): 88, 95, 111, (280,403,0): 94, 101, 117, (280,404,0): 96, 103, 121, (280,405,0): 95, 102, 120, (280,406,0): 91, 98, 114, (280,407,0): 89, 95, 111, (280,408,0): 88, 91, 106, (280,409,0): 88, 90, 103, (280,410,0): 89, 87, 100, (280,411,0): 90, 84, 94, (280,412,0): 90, 80, 89, (280,413,0): 89, 78, 86, (280,414,0): 88, 75, 84, (280,415,0): 87, 74, 81, (280,416,0): 86, 75, 81, (280,417,0): 86, 75, 81, (280,418,0): 87, 74, 81, (280,419,0): 90, 75, 80, (280,420,0): 94, 75, 81, (280,421,0): 97, 76, 81, (280,422,0): 101, 76, 82, (280,423,0): 103, 76, 83, (280,424,0): 100, 70, 78, (280,425,0): 97, 68, 73, (280,426,0): 92, 61, 67, (280,427,0): 86, 55, 60, (280,428,0): 83, 54, 58, (280,429,0): 83, 54, 58, (280,430,0): 85, 56, 60, (280,431,0): 87, 57, 59, (280,432,0): 91, 57, 56, (280,433,0): 91, 56, 54, (280,434,0): 89, 54, 52, (280,435,0): 87, 53, 51, (280,436,0): 85, 54, 51, (280,437,0): 85, 56, 52, (280,438,0): 86, 58, 55, (280,439,0): 85, 60, 56, (280,440,0): 91, 66, 62, (280,441,0): 92, 68, 64, (280,442,0): 94, 73, 70, (280,443,0): 98, 79, 75, (280,444,0): 101, 83, 81, (280,445,0): 103, 85, 83, (280,446,0): 101, 86, 83, (280,447,0): 104, 86, 84, (280,448,0): 115, 94, 93, (280,449,0): 121, 97, 97, (280,450,0): 127, 103, 103, (280,451,0): 129, 107, 109, (280,452,0): 129, 107, 109, (280,453,0): 124, 104, 106, (280,454,0): 118, 98, 100, (280,455,0): 113, 94, 98, (280,456,0): 107, 88, 94, (280,457,0): 101, 84, 92, (280,458,0): 96, 81, 88, (280,459,0): 95, 79, 89, (280,460,0): 94, 81, 91, (280,461,0): 95, 82, 92, (280,462,0): 94, 82, 92, (280,463,0): 92, 80, 90, (280,464,0): 95, 81, 94, (280,465,0): 95, 81, 94, (280,466,0): 95, 81, 94, (280,467,0): 96, 82, 95, (280,468,0): 96, 84, 96, (280,469,0): 98, 86, 96, (280,470,0): 101, 89, 99, (280,471,0): 102, 91, 99, (280,472,0): 109, 96, 105, (280,473,0): 110, 99, 107, (280,474,0): 115, 102, 111, (280,475,0): 117, 106, 112, (280,476,0): 118, 107, 113, (280,477,0): 116, 105, 111, (280,478,0): 113, 102, 108, (280,479,0): 111, 100, 106, (280,480,0): 112, 99, 106, (280,481,0): 113, 102, 108, (280,482,0): 114, 103, 109, (280,483,0): 111, 102, 107, (280,484,0): 109, 99, 107, (280,485,0): 107, 100, 107, (280,486,0): 110, 103, 111, (280,487,0): 112, 107, 114, (280,488,0): 111, 108, 117, (280,489,0): 111, 110, 118, (280,490,0): 113, 111, 122, (280,491,0): 111, 111, 121, (280,492,0): 111, 111, 121, (280,493,0): 111, 114, 123, (280,494,0): 116, 118, 130, (280,495,0): 119, 123, 134, (280,496,0): 123, 130, 140, (280,497,0): 124, 131, 141, (280,498,0): 125, 134, 143, (280,499,0): 127, 136, 143, (280,500,0): 129, 138, 145, (280,501,0): 130, 139, 144, (280,502,0): 130, 141, 145, (280,503,0): 131, 142, 146, (280,504,0): 135, 149, 152, (280,505,0): 142, 155, 161, (280,506,0): 150, 163, 171, (280,507,0): 155, 168, 177, (280,508,0): 154, 168, 179, (280,509,0): 153, 167, 180, (280,510,0): 152, 165, 181, (280,511,0): 149, 166, 182, (280,512,0): 148, 171, 187, (280,513,0): 150, 176, 191, (280,514,0): 155, 181, 196, (280,515,0): 157, 183, 198, (280,516,0): 159, 182, 196, (280,517,0): 159, 183, 195, (280,518,0): 162, 184, 195, (280,519,0): 165, 185, 194, (280,520,0): 164, 184, 191, (280,521,0): 163, 182, 188, (280,522,0): 162, 181, 185, (280,523,0): 161, 179, 181, (280,524,0): 160, 178, 180, (280,525,0): 162, 178, 178, (280,526,0): 162, 178, 178, (280,527,0): 161, 179, 181, (280,528,0): 154, 174, 181, (280,529,0): 151, 173, 184, (280,530,0): 150, 172, 183, (280,531,0): 147, 171, 183, (280,532,0): 145, 168, 182, (280,533,0): 142, 168, 183, (280,534,0): 140, 166, 183, (280,535,0): 139, 164, 184, (280,536,0): 136, 161, 181, (280,537,0): 134, 156, 177, (280,538,0): 131, 152, 173, (280,539,0): 131, 149, 169, (280,540,0): 131, 148, 166, (280,541,0): 132, 148, 164, (280,542,0): 132, 143, 161, (280,543,0): 130, 141, 159, (280,544,0): 136, 147, 165, (280,545,0): 135, 147, 163, (280,546,0): 136, 145, 160, (280,547,0): 135, 144, 159, (280,548,0): 135, 143, 156, (280,549,0): 135, 143, 154, (280,550,0): 136, 143, 153, (280,551,0): 136, 143, 153, (280,552,0): 133, 142, 151, (280,553,0): 131, 140, 149, (280,554,0): 129, 139, 149, (280,555,0): 126, 138, 150, (280,556,0): 125, 139, 152, (280,557,0): 124, 140, 153, (280,558,0): 125, 143, 157, (280,559,0): 127, 144, 160, (280,560,0): 129, 142, 159, (280,561,0): 129, 140, 158, (280,562,0): 129, 140, 158, (280,563,0): 129, 140, 158, (280,564,0): 128, 141, 158, (280,565,0): 129, 142, 159, (280,566,0): 127, 143, 159, (280,567,0): 128, 144, 160, (280,568,0): 122, 139, 155, (280,569,0): 124, 143, 158, (280,570,0): 125, 144, 159, (280,571,0): 120, 142, 156, (280,572,0): 115, 137, 151, (280,573,0): 112, 135, 149, (280,574,0): 113, 136, 150, (280,575,0): 115, 138, 154, (280,576,0): 112, 132, 156, (280,577,0): 114, 131, 157, (280,578,0): 114, 131, 157, (280,579,0): 116, 132, 157, (280,580,0): 117, 129, 151, (280,581,0): 113, 124, 144, (280,582,0): 110, 115, 134, (280,583,0): 108, 109, 127, (280,584,0): 103, 101, 115, (280,585,0): 98, 92, 104, (280,586,0): 90, 80, 89, (280,587,0): 85, 72, 81, (280,588,0): 86, 69, 77, (280,589,0): 89, 70, 76, (280,590,0): 90, 71, 75, (280,591,0): 88, 71, 77, (280,592,0): 89, 73, 83, (280,593,0): 90, 78, 88, (280,594,0): 93, 80, 90, (280,595,0): 90, 78, 88, (280,596,0): 85, 73, 83, (280,597,0): 80, 68, 78, (280,598,0): 78, 66, 76, (280,599,0): 78, 66, 76, (281,0,0): 60, 49, 57, (281,1,0): 59, 48, 56, (281,2,0): 58, 47, 55, (281,3,0): 56, 45, 53, (281,4,0): 56, 45, 53, (281,5,0): 56, 45, 53, (281,6,0): 58, 45, 54, (281,7,0): 58, 45, 54, (281,8,0): 58, 42, 52, (281,9,0): 58, 42, 52, (281,10,0): 59, 42, 52, (281,11,0): 60, 43, 53, (281,12,0): 60, 43, 53, (281,13,0): 61, 44, 54, (281,14,0): 61, 44, 54, (281,15,0): 64, 44, 53, (281,16,0): 66, 45, 50, (281,17,0): 68, 46, 49, (281,18,0): 72, 47, 53, (281,19,0): 74, 49, 53, (281,20,0): 76, 49, 56, (281,21,0): 76, 49, 54, (281,22,0): 78, 49, 54, (281,23,0): 78, 49, 54, (281,24,0): 79, 50, 55, (281,25,0): 77, 50, 55, (281,26,0): 77, 51, 54, (281,27,0): 76, 51, 54, (281,28,0): 74, 52, 54, (281,29,0): 73, 53, 54, (281,30,0): 72, 54, 54, (281,31,0): 72, 54, 54, (281,32,0): 76, 51, 57, (281,33,0): 77, 50, 57, (281,34,0): 77, 50, 55, (281,35,0): 77, 50, 55, (281,36,0): 77, 50, 55, (281,37,0): 77, 50, 55, (281,38,0): 77, 51, 54, (281,39,0): 77, 51, 54, (281,40,0): 78, 52, 53, (281,41,0): 78, 52, 53, (281,42,0): 79, 53, 54, (281,43,0): 80, 54, 55, (281,44,0): 81, 55, 54, (281,45,0): 82, 56, 55, (281,46,0): 83, 57, 56, (281,47,0): 83, 58, 54, (281,48,0): 82, 57, 52, (281,49,0): 86, 59, 52, (281,50,0): 89, 62, 55, (281,51,0): 89, 62, 53, (281,52,0): 89, 62, 51, (281,53,0): 92, 64, 52, (281,54,0): 96, 68, 54, (281,55,0): 100, 73, 56, (281,56,0): 107, 79, 58, (281,57,0): 108, 80, 58, (281,58,0): 109, 81, 57, (281,59,0): 113, 83, 57, (281,60,0): 115, 85, 57, (281,61,0): 117, 88, 58, (281,62,0): 118, 89, 59, (281,63,0): 120, 89, 58, (281,64,0): 122, 92, 58, (281,65,0): 124, 91, 56, (281,66,0): 124, 91, 58, (281,67,0): 124, 91, 56, (281,68,0): 125, 92, 57, (281,69,0): 126, 92, 55, (281,70,0): 126, 92, 55, (281,71,0): 126, 92, 55, (281,72,0): 129, 93, 57, (281,73,0): 129, 94, 56, (281,74,0): 129, 94, 56, (281,75,0): 132, 94, 55, (281,76,0): 132, 94, 55, (281,77,0): 132, 94, 55, (281,78,0): 132, 94, 55, (281,79,0): 133, 95, 56, (281,80,0): 133, 95, 56, (281,81,0): 132, 94, 55, (281,82,0): 131, 93, 56, (281,83,0): 131, 93, 54, (281,84,0): 132, 94, 57, (281,85,0): 134, 96, 57, (281,86,0): 137, 99, 62, (281,87,0): 138, 100, 61, (281,88,0): 138, 100, 63, (281,89,0): 138, 100, 61, (281,90,0): 140, 102, 65, (281,91,0): 141, 103, 64, (281,92,0): 141, 103, 66, (281,93,0): 140, 102, 63, (281,94,0): 139, 101, 64, (281,95,0): 138, 100, 63, (281,96,0): 132, 94, 57, (281,97,0): 133, 95, 59, (281,98,0): 133, 95, 59, (281,99,0): 133, 94, 61, (281,100,0): 132, 93, 60, (281,101,0): 131, 92, 59, (281,102,0): 130, 91, 58, (281,103,0): 129, 90, 59, (281,104,0): 127, 88, 57, (281,105,0): 126, 87, 58, (281,106,0): 124, 85, 56, (281,107,0): 122, 83, 54, (281,108,0): 121, 82, 53, (281,109,0): 121, 81, 55, (281,110,0): 121, 81, 55, (281,111,0): 119, 82, 55, (281,112,0): 120, 83, 56, (281,113,0): 119, 84, 56, (281,114,0): 119, 84, 56, (281,115,0): 119, 84, 54, (281,116,0): 120, 85, 55, (281,117,0): 120, 85, 55, (281,118,0): 120, 85, 55, (281,119,0): 120, 85, 53, (281,120,0): 122, 87, 55, (281,121,0): 123, 89, 54, (281,122,0): 124, 90, 55, (281,123,0): 124, 90, 55, (281,124,0): 124, 90, 55, (281,125,0): 123, 89, 52, (281,126,0): 122, 88, 51, (281,127,0): 121, 87, 50, (281,128,0): 126, 90, 54, (281,129,0): 123, 87, 51, (281,130,0): 121, 85, 49, (281,131,0): 122, 86, 50, (281,132,0): 125, 89, 53, (281,133,0): 127, 92, 54, (281,134,0): 127, 92, 54, (281,135,0): 126, 91, 51, (281,136,0): 130, 95, 55, (281,137,0): 130, 95, 55, (281,138,0): 129, 94, 54, (281,139,0): 129, 94, 52, (281,140,0): 128, 93, 51, (281,141,0): 127, 92, 50, (281,142,0): 127, 92, 50, (281,143,0): 126, 91, 49, (281,144,0): 127, 92, 50, (281,145,0): 128, 94, 49, (281,146,0): 128, 93, 51, (281,147,0): 128, 94, 49, (281,148,0): 127, 92, 50, (281,149,0): 124, 90, 45, (281,150,0): 122, 87, 45, (281,151,0): 120, 86, 41, (281,152,0): 121, 86, 44, (281,153,0): 123, 89, 44, (281,154,0): 125, 90, 48, (281,155,0): 126, 92, 47, (281,156,0): 127, 92, 50, (281,157,0): 130, 96, 51, (281,158,0): 136, 101, 59, (281,159,0): 141, 107, 61, (281,160,0): 145, 112, 59, (281,161,0): 153, 118, 62, (281,162,0): 161, 126, 68, (281,163,0): 168, 134, 73, (281,164,0): 173, 139, 75, (281,165,0): 179, 146, 77, (281,166,0): 184, 151, 80, (281,167,0): 188, 156, 81, (281,168,0): 192, 159, 82, (281,169,0): 192, 159, 82, (281,170,0): 193, 160, 83, (281,171,0): 193, 160, 83, (281,172,0): 195, 159, 83, (281,173,0): 193, 157, 81, (281,174,0): 192, 156, 80, (281,175,0): 191, 155, 79, (281,176,0): 185, 147, 72, (281,177,0): 183, 145, 72, (281,178,0): 178, 139, 70, (281,179,0): 168, 129, 64, (281,180,0): 159, 119, 60, (281,181,0): 152, 113, 58, (281,182,0): 148, 111, 58, (281,183,0): 148, 112, 60, (281,184,0): 158, 123, 69, (281,185,0): 155, 123, 66, (281,186,0): 157, 127, 65, (281,187,0): 164, 137, 68, (281,188,0): 178, 152, 77, (281,189,0): 190, 168, 85, (281,190,0): 199, 177, 91, (281,191,0): 206, 182, 94, (281,192,0): 207, 182, 90, (281,193,0): 211, 186, 93, (281,194,0): 218, 194, 98, (281,195,0): 224, 202, 103, (281,196,0): 230, 211, 108, (281,197,0): 235, 218, 112, (281,198,0): 237, 223, 114, (281,199,0): 237, 226, 111, (281,200,0): 252, 243, 126, (281,201,0): 252, 245, 128, (281,202,0): 253, 248, 128, (281,203,0): 254, 252, 131, (281,204,0): 255, 255, 135, (281,205,0): 254, 255, 135, (281,206,0): 253, 254, 134, (281,207,0): 252, 253, 136, (281,208,0): 255, 255, 145, (281,209,0): 255, 255, 148, (281,210,0): 255, 255, 147, (281,211,0): 254, 253, 145, (281,212,0): 252, 251, 143, (281,213,0): 251, 250, 142, (281,214,0): 251, 248, 141, (281,215,0): 250, 247, 140, (281,216,0): 247, 244, 137, (281,217,0): 249, 246, 139, (281,218,0): 252, 248, 141, (281,219,0): 255, 251, 144, (281,220,0): 255, 253, 146, (281,221,0): 255, 253, 146, (281,222,0): 255, 254, 147, (281,223,0): 255, 255, 146, (281,224,0): 255, 255, 145, (281,225,0): 255, 255, 143, (281,226,0): 255, 255, 145, (281,227,0): 255, 255, 143, (281,228,0): 255, 255, 145, (281,229,0): 255, 255, 143, (281,230,0): 255, 255, 145, (281,231,0): 255, 255, 143, (281,232,0): 254, 254, 144, (281,233,0): 254, 254, 142, (281,234,0): 254, 254, 144, (281,235,0): 254, 254, 142, (281,236,0): 254, 254, 144, (281,237,0): 254, 254, 142, (281,238,0): 254, 254, 144, (281,239,0): 252, 254, 144, (281,240,0): 250, 255, 146, (281,241,0): 249, 255, 148, (281,242,0): 250, 255, 148, (281,243,0): 250, 255, 148, (281,244,0): 253, 255, 148, (281,245,0): 255, 254, 148, (281,246,0): 255, 253, 148, (281,247,0): 255, 252, 148, (281,248,0): 255, 254, 150, (281,249,0): 255, 253, 149, (281,250,0): 254, 245, 142, (281,251,0): 237, 228, 125, (281,252,0): 219, 210, 107, (281,253,0): 211, 202, 99, (281,254,0): 218, 206, 104, (281,255,0): 225, 216, 113, (281,256,0): 232, 227, 125, (281,257,0): 232, 229, 124, (281,258,0): 235, 233, 124, (281,259,0): 243, 240, 127, (281,260,0): 251, 248, 131, (281,261,0): 255, 254, 133, (281,262,0): 255, 255, 133, (281,263,0): 255, 255, 130, (281,264,0): 253, 252, 125, (281,265,0): 253, 254, 127, (281,266,0): 254, 255, 133, (281,267,0): 251, 255, 135, (281,268,0): 249, 255, 138, (281,269,0): 247, 255, 141, (281,270,0): 244, 254, 141, (281,271,0): 241, 253, 143, (281,272,0): 238, 255, 148, (281,273,0): 237, 255, 149, (281,274,0): 237, 255, 149, (281,275,0): 239, 255, 150, (281,276,0): 241, 255, 153, (281,277,0): 243, 255, 155, (281,278,0): 245, 255, 159, (281,279,0): 246, 255, 160, (281,280,0): 243, 255, 160, (281,281,0): 239, 255, 157, (281,282,0): 230, 251, 150, (281,283,0): 222, 247, 146, (281,284,0): 222, 250, 148, (281,285,0): 224, 255, 152, (281,286,0): 215, 250, 148, (281,287,0): 204, 238, 141, (281,288,0): 191, 224, 135, (281,289,0): 188, 220, 137, (281,290,0): 186, 215, 135, (281,291,0): 183, 210, 133, (281,292,0): 182, 206, 132, (281,293,0): 177, 198, 129, (281,294,0): 169, 188, 122, (281,295,0): 163, 182, 118, (281,296,0): 169, 187, 127, (281,297,0): 170, 190, 129, (281,298,0): 173, 194, 135, (281,299,0): 174, 198, 136, (281,300,0): 171, 200, 136, (281,301,0): 167, 197, 133, (281,302,0): 163, 193, 129, (281,303,0): 160, 190, 128, (281,304,0): 158, 186, 128, (281,305,0): 160, 185, 130, (281,306,0): 160, 184, 132, (281,307,0): 159, 183, 131, (281,308,0): 156, 183, 132, (281,309,0): 154, 182, 133, (281,310,0): 151, 180, 134, (281,311,0): 151, 179, 138, (281,312,0): 152, 182, 146, (281,313,0): 155, 186, 155, (281,314,0): 164, 192, 169, (281,315,0): 168, 195, 176, (281,316,0): 164, 188, 175, (281,317,0): 155, 176, 169, (281,318,0): 155, 174, 172, (281,319,0): 162, 181, 179, (281,320,0): 160, 179, 175, (281,321,0): 157, 178, 171, (281,322,0): 152, 173, 166, (281,323,0): 148, 169, 160, (281,324,0): 145, 166, 159, (281,325,0): 144, 165, 158, (281,326,0): 145, 166, 159, (281,327,0): 146, 167, 160, (281,328,0): 145, 165, 156, (281,329,0): 141, 161, 152, (281,330,0): 137, 154, 146, (281,331,0): 134, 149, 142, (281,332,0): 131, 144, 135, (281,333,0): 126, 137, 129, (281,334,0): 119, 130, 122, (281,335,0): 114, 125, 119, (281,336,0): 103, 118, 111, (281,337,0): 100, 117, 109, (281,338,0): 100, 115, 110, (281,339,0): 100, 115, 108, (281,340,0): 103, 115, 111, (281,341,0): 101, 114, 107, (281,342,0): 98, 109, 105, (281,343,0): 94, 105, 99, (281,344,0): 94, 103, 100, (281,345,0): 91, 100, 95, (281,346,0): 90, 96, 94, (281,347,0): 88, 94, 90, (281,348,0): 87, 91, 90, (281,349,0): 84, 89, 85, (281,350,0): 78, 82, 81, (281,351,0): 74, 79, 75, (281,352,0): 70, 72, 69, (281,353,0): 71, 73, 70, (281,354,0): 73, 75, 70, (281,355,0): 78, 79, 74, (281,356,0): 83, 84, 79, (281,357,0): 89, 88, 83, (281,358,0): 94, 93, 88, (281,359,0): 96, 97, 92, (281,360,0): 104, 106, 103, (281,361,0): 105, 109, 108, (281,362,0): 110, 114, 115, (281,363,0): 111, 119, 122, (281,364,0): 112, 121, 126, (281,365,0): 113, 124, 130, (281,366,0): 113, 126, 134, (281,367,0): 115, 128, 137, (281,368,0): 113, 123, 135, (281,369,0): 113, 123, 135, (281,370,0): 113, 123, 135, (281,371,0): 115, 125, 137, (281,372,0): 117, 126, 141, (281,373,0): 120, 129, 144, (281,374,0): 123, 130, 146, (281,375,0): 125, 132, 148, (281,376,0): 125, 130, 149, (281,377,0): 126, 131, 150, (281,378,0): 129, 131, 152, (281,379,0): 128, 130, 151, (281,380,0): 126, 128, 149, (281,381,0): 122, 124, 145, (281,382,0): 119, 121, 144, (281,383,0): 116, 118, 141, (281,384,0): 114, 116, 137, (281,385,0): 114, 117, 136, (281,386,0): 115, 116, 136, (281,387,0): 113, 116, 135, (281,388,0): 114, 115, 135, (281,389,0): 113, 114, 134, (281,390,0): 113, 114, 132, (281,391,0): 112, 113, 131, (281,392,0): 113, 114, 132, (281,393,0): 111, 113, 128, (281,394,0): 110, 109, 125, (281,395,0): 106, 105, 119, (281,396,0): 101, 100, 114, (281,397,0): 95, 94, 108, (281,398,0): 90, 89, 103, (281,399,0): 85, 87, 100, (281,400,0): 82, 88, 102, (281,401,0): 85, 93, 106, (281,402,0): 91, 98, 114, (281,403,0): 96, 103, 119, (281,404,0): 98, 105, 123, (281,405,0): 96, 103, 121, (281,406,0): 92, 99, 115, (281,407,0): 90, 96, 112, (281,408,0): 88, 91, 106, (281,409,0): 90, 89, 103, (281,410,0): 90, 88, 101, (281,411,0): 91, 85, 95, (281,412,0): 92, 82, 91, (281,413,0): 92, 81, 89, (281,414,0): 93, 78, 85, (281,415,0): 93, 78, 85, (281,416,0): 89, 77, 81, (281,417,0): 89, 77, 79, (281,418,0): 92, 77, 82, (281,419,0): 93, 77, 80, (281,420,0): 96, 75, 80, (281,421,0): 97, 75, 78, (281,422,0): 100, 73, 78, (281,423,0): 102, 73, 78, (281,424,0): 97, 66, 72, (281,425,0): 93, 62, 67, (281,426,0): 89, 57, 62, (281,427,0): 85, 53, 56, (281,428,0): 82, 52, 54, (281,429,0): 83, 53, 55, (281,430,0): 85, 55, 57, (281,431,0): 87, 57, 57, (281,432,0): 89, 55, 53, (281,433,0): 89, 54, 50, (281,434,0): 88, 53, 49, (281,435,0): 86, 53, 48, (281,436,0): 85, 54, 51, (281,437,0): 86, 55, 52, (281,438,0): 87, 58, 54, (281,439,0): 87, 59, 55, (281,440,0): 89, 64, 60, (281,441,0): 91, 67, 63, (281,442,0): 94, 70, 68, (281,443,0): 96, 75, 72, (281,444,0): 98, 78, 77, (281,445,0): 99, 81, 79, (281,446,0): 100, 82, 80, (281,447,0): 101, 81, 80, (281,448,0): 106, 82, 82, (281,449,0): 111, 85, 86, (281,450,0): 117, 91, 92, (281,451,0): 121, 97, 97, (281,452,0): 122, 97, 100, (281,453,0): 116, 94, 96, (281,454,0): 111, 89, 91, (281,455,0): 106, 86, 88, (281,456,0): 105, 84, 89, (281,457,0): 100, 81, 85, (281,458,0): 96, 77, 83, (281,459,0): 95, 76, 82, (281,460,0): 94, 77, 85, (281,461,0): 95, 78, 86, (281,462,0): 92, 77, 84, (281,463,0): 91, 75, 85, (281,464,0): 91, 73, 85, (281,465,0): 91, 73, 85, (281,466,0): 91, 73, 85, (281,467,0): 91, 75, 85, (281,468,0): 93, 77, 87, (281,469,0): 96, 80, 90, (281,470,0): 99, 83, 93, (281,471,0): 100, 85, 92, (281,472,0): 103, 88, 95, (281,473,0): 104, 92, 96, (281,474,0): 108, 96, 100, (281,475,0): 111, 99, 103, (281,476,0): 113, 101, 105, (281,477,0): 111, 101, 102, (281,478,0): 109, 99, 100, (281,479,0): 108, 97, 101, (281,480,0): 112, 100, 104, (281,481,0): 113, 100, 107, (281,482,0): 113, 100, 107, (281,483,0): 110, 99, 105, (281,484,0): 108, 97, 105, (281,485,0): 108, 98, 106, (281,486,0): 110, 103, 111, (281,487,0): 113, 106, 114, (281,488,0): 113, 107, 117, (281,489,0): 114, 111, 120, (281,490,0): 116, 113, 124, (281,491,0): 115, 113, 124, (281,492,0): 114, 114, 124, (281,493,0): 116, 116, 126, (281,494,0): 117, 119, 131, (281,495,0): 121, 123, 135, (281,496,0): 120, 124, 135, (281,497,0): 119, 126, 136, (281,498,0): 120, 127, 135, (281,499,0): 121, 130, 135, (281,500,0): 124, 133, 138, (281,501,0): 125, 135, 137, (281,502,0): 126, 136, 138, (281,503,0): 126, 137, 139, (281,504,0): 138, 149, 151, (281,505,0): 141, 155, 158, (281,506,0): 147, 160, 166, (281,507,0): 151, 164, 173, (281,508,0): 151, 163, 175, (281,509,0): 148, 161, 177, (281,510,0): 148, 161, 178, (281,511,0): 146, 163, 181, (281,512,0): 144, 167, 185, (281,513,0): 146, 173, 192, (281,514,0): 153, 178, 198, (281,515,0): 157, 183, 200, (281,516,0): 159, 185, 200, (281,517,0): 162, 185, 199, (281,518,0): 166, 189, 203, (281,519,0): 168, 192, 204, (281,520,0): 161, 183, 194, (281,521,0): 160, 183, 191, (281,522,0): 160, 180, 187, (281,523,0): 158, 179, 184, (281,524,0): 159, 178, 184, (281,525,0): 160, 179, 183, (281,526,0): 163, 181, 185, (281,527,0): 163, 182, 188, (281,528,0): 155, 177, 188, (281,529,0): 151, 178, 189, (281,530,0): 150, 176, 189, (281,531,0): 148, 174, 187, (281,532,0): 146, 172, 187, (281,533,0): 143, 170, 187, (281,534,0): 142, 169, 188, (281,535,0): 141, 168, 187, (281,536,0): 138, 163, 185, (281,537,0): 134, 159, 179, (281,538,0): 132, 154, 175, (281,539,0): 133, 151, 171, (281,540,0): 134, 151, 171, (281,541,0): 134, 149, 168, (281,542,0): 134, 147, 164, (281,543,0): 133, 144, 162, (281,544,0): 137, 148, 166, (281,545,0): 136, 147, 165, (281,546,0): 137, 146, 163, (281,547,0): 136, 145, 160, (281,548,0): 136, 144, 157, (281,549,0): 135, 143, 156, (281,550,0): 136, 142, 154, (281,551,0): 135, 144, 153, (281,552,0): 134, 143, 152, (281,553,0): 133, 143, 153, (281,554,0): 130, 142, 154, (281,555,0): 129, 143, 154, (281,556,0): 127, 143, 156, (281,557,0): 127, 145, 159, (281,558,0): 127, 146, 161, (281,559,0): 129, 146, 162, (281,560,0): 128, 144, 159, (281,561,0): 130, 143, 159, (281,562,0): 131, 144, 160, (281,563,0): 131, 144, 160, (281,564,0): 132, 145, 161, (281,565,0): 130, 146, 161, (281,566,0): 130, 146, 161, (281,567,0): 129, 147, 161, (281,568,0): 124, 143, 157, (281,569,0): 125, 144, 158, (281,570,0): 123, 145, 158, (281,571,0): 121, 143, 156, (281,572,0): 117, 141, 153, (281,573,0): 115, 139, 151, (281,574,0): 115, 139, 151, (281,575,0): 117, 139, 153, (281,576,0): 114, 132, 154, (281,577,0): 115, 131, 156, (281,578,0): 117, 131, 157, (281,579,0): 120, 132, 156, (281,580,0): 120, 131, 151, (281,581,0): 118, 125, 144, (281,582,0): 113, 116, 133, (281,583,0): 109, 108, 124, (281,584,0): 100, 96, 110, (281,585,0): 95, 87, 100, (281,586,0): 87, 75, 85, (281,587,0): 83, 68, 75, (281,588,0): 82, 65, 73, (281,589,0): 85, 66, 72, (281,590,0): 87, 66, 71, (281,591,0): 86, 67, 71, (281,592,0): 83, 67, 77, (281,593,0): 85, 72, 82, (281,594,0): 88, 75, 85, (281,595,0): 88, 75, 85, (281,596,0): 82, 70, 80, (281,597,0): 78, 66, 76, (281,598,0): 75, 63, 73, (281,599,0): 75, 63, 73, (282,0,0): 60, 49, 57, (282,1,0): 59, 48, 56, (282,2,0): 58, 47, 55, (282,3,0): 57, 46, 54, (282,4,0): 56, 45, 53, (282,5,0): 56, 45, 53, (282,6,0): 58, 45, 54, (282,7,0): 59, 46, 55, (282,8,0): 59, 43, 53, (282,9,0): 59, 43, 53, (282,10,0): 60, 43, 53, (282,11,0): 61, 44, 54, (282,12,0): 61, 44, 54, (282,13,0): 62, 45, 55, (282,14,0): 62, 45, 55, (282,15,0): 64, 44, 53, (282,16,0): 69, 46, 52, (282,17,0): 72, 47, 50, (282,18,0): 75, 48, 53, (282,19,0): 77, 51, 54, (282,20,0): 80, 51, 56, (282,21,0): 81, 50, 55, (282,22,0): 81, 50, 55, (282,23,0): 80, 49, 54, (282,24,0): 81, 50, 55, (282,25,0): 80, 51, 55, (282,26,0): 78, 52, 55, (282,27,0): 77, 52, 55, (282,28,0): 75, 53, 55, (282,29,0): 74, 54, 55, (282,30,0): 73, 55, 55, (282,31,0): 74, 54, 55, (282,32,0): 78, 51, 58, (282,33,0): 80, 50, 58, (282,34,0): 80, 51, 56, (282,35,0): 80, 51, 56, (282,36,0): 80, 51, 56, (282,37,0): 80, 51, 56, (282,38,0): 80, 51, 55, (282,39,0): 80, 51, 55, (282,40,0): 80, 51, 53, (282,41,0): 80, 51, 53, (282,42,0): 81, 52, 54, (282,43,0): 82, 53, 55, (282,44,0): 83, 55, 54, (282,45,0): 84, 56, 55, (282,46,0): 85, 57, 56, (282,47,0): 85, 57, 54, (282,48,0): 85, 57, 53, (282,49,0): 88, 59, 53, (282,50,0): 90, 61, 55, (282,51,0): 91, 62, 54, (282,52,0): 91, 63, 52, (282,53,0): 93, 63, 52, (282,54,0): 98, 69, 53, (282,55,0): 102, 73, 55, (282,56,0): 109, 78, 57, (282,57,0): 110, 80, 56, (282,58,0): 112, 82, 56, (282,59,0): 115, 84, 56, (282,60,0): 117, 86, 55, (282,61,0): 119, 89, 55, (282,62,0): 121, 91, 57, (282,63,0): 124, 91, 56, (282,64,0): 128, 95, 60, (282,65,0): 129, 95, 58, (282,66,0): 129, 95, 60, (282,67,0): 129, 95, 58, (282,68,0): 128, 94, 57, (282,69,0): 129, 94, 56, (282,70,0): 129, 94, 56, (282,71,0): 129, 94, 56, (282,72,0): 134, 96, 59, (282,73,0): 134, 96, 57, (282,74,0): 134, 96, 57, (282,75,0): 135, 96, 55, (282,76,0): 134, 95, 54, (282,77,0): 134, 95, 54, (282,78,0): 134, 95, 54, (282,79,0): 134, 95, 54, (282,80,0): 134, 97, 55, (282,81,0): 134, 97, 55, (282,82,0): 134, 96, 57, (282,83,0): 134, 97, 55, (282,84,0): 135, 97, 58, (282,85,0): 137, 100, 58, (282,86,0): 138, 100, 61, (282,87,0): 139, 102, 60, (282,88,0): 140, 102, 63, (282,89,0): 140, 103, 61, (282,90,0): 141, 103, 64, (282,91,0): 142, 105, 63, (282,92,0): 142, 104, 65, (282,93,0): 141, 104, 62, (282,94,0): 140, 102, 63, (282,95,0): 139, 101, 62, (282,96,0): 133, 98, 60, (282,97,0): 132, 97, 59, (282,98,0): 131, 96, 58, (282,99,0): 130, 94, 58, (282,100,0): 130, 94, 58, (282,101,0): 130, 94, 58, (282,102,0): 130, 94, 58, (282,103,0): 130, 94, 60, (282,104,0): 128, 92, 58, (282,105,0): 127, 91, 59, (282,106,0): 125, 89, 57, (282,107,0): 124, 88, 56, (282,108,0): 122, 86, 54, (282,109,0): 122, 85, 56, (282,110,0): 123, 86, 57, (282,111,0): 123, 86, 57, (282,112,0): 122, 85, 56, (282,113,0): 122, 85, 56, (282,114,0): 122, 85, 56, (282,115,0): 122, 86, 54, (282,116,0): 122, 86, 54, (282,117,0): 122, 86, 54, (282,118,0): 122, 86, 54, (282,119,0): 121, 85, 51, (282,120,0): 123, 87, 53, (282,121,0): 123, 87, 51, (282,122,0): 125, 89, 53, (282,123,0): 125, 89, 53, (282,124,0): 125, 89, 53, (282,125,0): 125, 90, 52, (282,126,0): 124, 89, 51, (282,127,0): 123, 88, 50, (282,128,0): 125, 90, 52, (282,129,0): 123, 88, 50, (282,130,0): 121, 86, 48, (282,131,0): 123, 88, 50, (282,132,0): 126, 91, 53, (282,133,0): 129, 94, 56, (282,134,0): 129, 94, 56, (282,135,0): 129, 94, 54, (282,136,0): 132, 97, 57, (282,137,0): 132, 97, 55, (282,138,0): 132, 97, 55, (282,139,0): 133, 99, 54, (282,140,0): 133, 99, 54, (282,141,0): 134, 100, 55, (282,142,0): 134, 100, 55, (282,143,0): 134, 100, 55, (282,144,0): 135, 101, 56, (282,145,0): 135, 101, 55, (282,146,0): 134, 100, 55, (282,147,0): 133, 99, 53, (282,148,0): 131, 97, 52, (282,149,0): 128, 94, 48, (282,150,0): 126, 92, 47, (282,151,0): 125, 91, 45, (282,152,0): 125, 91, 46, (282,153,0): 127, 93, 47, (282,154,0): 128, 94, 49, (282,155,0): 129, 95, 49, (282,156,0): 130, 96, 51, (282,157,0): 134, 100, 54, (282,158,0): 140, 106, 61, (282,159,0): 145, 111, 63, (282,160,0): 151, 116, 60, (282,161,0): 159, 123, 63, (282,162,0): 169, 133, 73, (282,163,0): 176, 140, 78, (282,164,0): 181, 146, 80, (282,165,0): 185, 151, 80, (282,166,0): 188, 154, 82, (282,167,0): 191, 157, 83, (282,168,0): 191, 158, 81, (282,169,0): 192, 159, 82, (282,170,0): 193, 160, 81, (282,171,0): 193, 160, 81, (282,172,0): 193, 160, 83, (282,173,0): 192, 159, 82, (282,174,0): 190, 156, 82, (282,175,0): 191, 155, 81, (282,176,0): 186, 150, 76, (282,177,0): 183, 146, 75, (282,178,0): 177, 140, 70, (282,179,0): 166, 131, 65, (282,180,0): 158, 122, 60, (282,181,0): 154, 119, 61, (282,182,0): 156, 121, 65, (282,183,0): 157, 125, 68, (282,184,0): 164, 134, 74, (282,185,0): 163, 135, 72, (282,186,0): 166, 139, 70, (282,187,0): 172, 148, 74, (282,188,0): 184, 161, 81, (282,189,0): 195, 175, 89, (282,190,0): 204, 184, 95, (282,191,0): 208, 189, 95, (282,192,0): 213, 193, 98, (282,193,0): 217, 197, 100, (282,194,0): 223, 203, 104, (282,195,0): 230, 212, 110, (282,196,0): 236, 219, 115, (282,197,0): 240, 226, 117, (282,198,0): 244, 232, 120, (282,199,0): 246, 236, 121, (282,200,0): 255, 251, 134, (282,201,0): 255, 252, 132, (282,202,0): 255, 253, 132, (282,203,0): 254, 254, 132, (282,204,0): 254, 254, 134, (282,205,0): 252, 253, 133, (282,206,0): 252, 253, 134, (282,207,0): 251, 252, 135, (282,208,0): 255, 255, 148, (282,209,0): 255, 255, 150, (282,210,0): 255, 253, 148, (282,211,0): 255, 252, 147, (282,212,0): 253, 250, 145, (282,213,0): 251, 248, 143, (282,214,0): 250, 247, 142, (282,215,0): 249, 246, 141, (282,216,0): 248, 245, 140, (282,217,0): 250, 247, 142, (282,218,0): 252, 249, 144, (282,219,0): 254, 251, 146, (282,220,0): 255, 253, 148, (282,221,0): 255, 255, 149, (282,222,0): 255, 254, 149, (282,223,0): 255, 254, 148, (282,224,0): 255, 254, 146, (282,225,0): 255, 255, 145, (282,226,0): 255, 254, 146, (282,227,0): 255, 255, 145, (282,228,0): 255, 254, 146, (282,229,0): 255, 255, 145, (282,230,0): 255, 254, 146, (282,231,0): 255, 255, 145, (282,232,0): 254, 253, 145, (282,233,0): 254, 254, 144, (282,234,0): 254, 253, 145, (282,235,0): 254, 254, 144, (282,236,0): 254, 253, 145, (282,237,0): 254, 254, 144, (282,238,0): 254, 253, 145, (282,239,0): 252, 254, 145, (282,240,0): 251, 255, 151, (282,241,0): 251, 255, 151, (282,242,0): 251, 255, 151, (282,243,0): 251, 255, 151, (282,244,0): 254, 255, 151, (282,245,0): 254, 255, 151, (282,246,0): 255, 254, 151, (282,247,0): 255, 254, 151, (282,248,0): 255, 255, 152, (282,249,0): 255, 255, 153, (282,250,0): 255, 247, 146, (282,251,0): 237, 229, 128, (282,252,0): 216, 208, 107, (282,253,0): 205, 197, 96, (282,254,0): 210, 201, 100, (282,255,0): 217, 209, 110, (282,256,0): 221, 217, 118, (282,257,0): 222, 220, 119, (282,258,0): 227, 225, 122, (282,259,0): 237, 234, 127, (282,260,0): 247, 245, 132, (282,261,0): 254, 253, 135, (282,262,0): 255, 255, 136, (282,263,0): 255, 255, 134, (282,264,0): 254, 255, 133, (282,265,0): 252, 255, 135, (282,266,0): 251, 255, 138, (282,267,0): 248, 255, 141, (282,268,0): 246, 254, 143, (282,269,0): 241, 253, 145, (282,270,0): 238, 251, 145, (282,271,0): 234, 249, 146, (282,272,0): 229, 247, 145, (282,273,0): 229, 250, 149, (282,274,0): 233, 251, 151, (282,275,0): 237, 253, 154, (282,276,0): 240, 254, 156, (282,277,0): 242, 255, 158, (282,278,0): 245, 255, 159, (282,279,0): 243, 255, 159, (282,280,0): 233, 249, 151, (282,281,0): 225, 243, 144, (282,282,0): 213, 233, 134, (282,283,0): 207, 231, 133, (282,284,0): 214, 242, 142, (282,285,0): 223, 255, 154, (282,286,0): 222, 255, 155, (282,287,0): 216, 252, 156, (282,288,0): 197, 231, 145, (282,289,0): 192, 223, 145, (282,290,0): 184, 212, 137, (282,291,0): 175, 201, 128, (282,292,0): 168, 191, 121, (282,293,0): 161, 182, 117, (282,294,0): 154, 172, 110, (282,295,0): 152, 167, 108, (282,296,0): 163, 180, 125, (282,297,0): 167, 186, 130, (282,298,0): 173, 194, 137, (282,299,0): 175, 200, 142, (282,300,0): 173, 203, 143, (282,301,0): 170, 202, 139, (282,302,0): 164, 199, 135, (282,303,0): 161, 196, 132, (282,304,0): 164, 195, 136, (282,305,0): 165, 194, 136, (282,306,0): 166, 193, 138, (282,307,0): 163, 192, 136, (282,308,0): 161, 190, 136, (282,309,0): 159, 189, 137, (282,310,0): 157, 189, 140, (282,311,0): 154, 190, 144, (282,312,0): 157, 194, 153, (282,313,0): 163, 201, 164, (282,314,0): 172, 207, 177, (282,315,0): 173, 207, 183, (282,316,0): 165, 193, 178, (282,317,0): 153, 179, 166, (282,318,0): 152, 175, 167, (282,319,0): 157, 180, 172, (282,320,0): 153, 176, 166, (282,321,0): 149, 175, 164, (282,322,0): 147, 170, 160, (282,323,0): 143, 167, 154, (282,324,0): 141, 164, 154, (282,325,0): 140, 163, 153, (282,326,0): 141, 164, 154, (282,327,0): 142, 163, 154, (282,328,0): 143, 163, 154, (282,329,0): 141, 161, 152, (282,330,0): 141, 158, 150, (282,331,0): 140, 155, 148, (282,332,0): 136, 151, 144, (282,333,0): 132, 145, 138, (282,334,0): 123, 136, 129, (282,335,0): 117, 130, 123, (282,336,0): 104, 119, 114, (282,337,0): 102, 117, 112, (282,338,0): 102, 114, 112, (282,339,0): 102, 114, 110, (282,340,0): 103, 115, 113, (282,341,0): 101, 113, 109, (282,342,0): 99, 109, 108, (282,343,0): 95, 106, 102, (282,344,0): 95, 104, 103, (282,345,0): 92, 101, 98, (282,346,0): 88, 97, 96, (282,347,0): 86, 95, 92, (282,348,0): 87, 93, 93, (282,349,0): 84, 90, 88, (282,350,0): 78, 84, 84, (282,351,0): 74, 80, 78, (282,352,0): 70, 75, 71, (282,353,0): 71, 76, 72, (282,354,0): 73, 78, 74, (282,355,0): 78, 80, 75, (282,356,0): 82, 84, 79, (282,357,0): 88, 89, 84, (282,358,0): 92, 93, 88, (282,359,0): 94, 95, 90, (282,360,0): 106, 108, 105, (282,361,0): 108, 112, 111, (282,362,0): 113, 117, 118, (282,363,0): 111, 119, 122, (282,364,0): 109, 118, 123, (282,365,0): 109, 120, 126, (282,366,0): 112, 125, 133, (282,367,0): 116, 129, 138, (282,368,0): 112, 122, 134, (282,369,0): 112, 122, 134, (282,370,0): 113, 121, 134, (282,371,0): 113, 121, 134, (282,372,0): 115, 122, 138, (282,373,0): 117, 124, 140, (282,374,0): 120, 126, 142, (282,375,0): 121, 127, 143, (282,376,0): 128, 131, 150, (282,377,0): 128, 131, 150, (282,378,0): 129, 131, 152, (282,379,0): 128, 130, 151, (282,380,0): 127, 128, 149, (282,381,0): 124, 125, 146, (282,382,0): 120, 120, 144, (282,383,0): 117, 117, 141, (282,384,0): 114, 115, 136, (282,385,0): 114, 115, 136, (282,386,0): 116, 114, 136, (282,387,0): 113, 114, 135, (282,388,0): 115, 113, 134, (282,389,0): 114, 112, 133, (282,390,0): 114, 112, 133, (282,391,0): 114, 113, 131, (282,392,0): 113, 112, 130, (282,393,0): 112, 111, 127, (282,394,0): 110, 109, 125, (282,395,0): 106, 105, 121, (282,396,0): 102, 101, 117, (282,397,0): 97, 96, 112, (282,398,0): 93, 92, 106, (282,399,0): 88, 90, 103, (282,400,0): 89, 92, 107, (282,401,0): 91, 97, 111, (282,402,0): 96, 102, 116, (282,403,0): 100, 106, 120, (282,404,0): 101, 107, 123, (282,405,0): 100, 106, 122, (282,406,0): 97, 103, 119, (282,407,0): 95, 101, 117, (282,408,0): 90, 93, 108, (282,409,0): 93, 92, 106, (282,410,0): 93, 91, 104, (282,411,0): 95, 89, 101, (282,412,0): 96, 86, 97, (282,413,0): 96, 85, 93, (282,414,0): 98, 83, 90, (282,415,0): 97, 82, 87, (282,416,0): 94, 79, 82, (282,417,0): 96, 80, 81, (282,418,0): 99, 80, 84, (282,419,0): 99, 79, 81, (282,420,0): 98, 76, 79, (282,421,0): 98, 73, 77, (282,422,0): 97, 68, 73, (282,423,0): 96, 65, 70, (282,424,0): 89, 58, 63, (282,425,0): 87, 55, 58, (282,426,0): 84, 52, 55, (282,427,0): 81, 49, 50, (282,428,0): 80, 50, 50, (282,429,0): 81, 51, 51, (282,430,0): 83, 55, 54, (282,431,0): 86, 56, 54, (282,432,0): 87, 53, 51, (282,433,0): 87, 54, 49, (282,434,0): 86, 52, 50, (282,435,0): 86, 52, 50, (282,436,0): 85, 54, 51, (282,437,0): 86, 55, 52, (282,438,0): 87, 58, 54, (282,439,0): 87, 59, 55, (282,440,0): 88, 63, 59, (282,441,0): 88, 64, 60, (282,442,0): 91, 67, 63, (282,443,0): 92, 71, 66, (282,444,0): 94, 73, 70, (282,445,0): 95, 76, 72, (282,446,0): 96, 77, 73, (282,447,0): 97, 76, 73, (282,448,0): 99, 73, 72, (282,449,0): 105, 77, 76, (282,450,0): 111, 83, 82, (282,451,0): 115, 89, 88, (282,452,0): 116, 90, 91, (282,453,0): 114, 88, 89, (282,454,0): 109, 83, 84, (282,455,0): 105, 80, 83, (282,456,0): 103, 78, 81, (282,457,0): 98, 76, 79, (282,458,0): 95, 72, 78, (282,459,0): 93, 72, 77, (282,460,0): 94, 73, 78, (282,461,0): 95, 74, 79, (282,462,0): 93, 72, 79, (282,463,0): 92, 71, 78, (282,464,0): 87, 67, 76, (282,465,0): 87, 67, 78, (282,466,0): 87, 67, 78, (282,467,0): 87, 67, 76, (282,468,0): 89, 69, 78, (282,469,0): 89, 72, 78, (282,470,0): 92, 75, 81, (282,471,0): 93, 76, 82, (282,472,0): 93, 76, 82, (282,473,0): 94, 79, 82, (282,474,0): 98, 83, 86, (282,475,0): 102, 88, 88, (282,476,0): 105, 91, 91, (282,477,0): 104, 92, 92, (282,478,0): 104, 92, 92, (282,479,0): 104, 92, 92, (282,480,0): 111, 96, 99, (282,481,0): 109, 97, 101, (282,482,0): 109, 97, 101, (282,483,0): 105, 94, 98, (282,484,0): 104, 93, 99, (282,485,0): 104, 95, 100, (282,486,0): 107, 100, 107, (282,487,0): 112, 105, 113, (282,488,0): 112, 106, 116, (282,489,0): 114, 111, 120, (282,490,0): 118, 115, 126, (282,491,0): 118, 116, 127, (282,492,0): 117, 117, 129, (282,493,0): 118, 118, 130, (282,494,0): 120, 119, 133, (282,495,0): 121, 123, 136, (282,496,0): 118, 122, 133, (282,497,0): 117, 124, 134, (282,498,0): 118, 125, 133, (282,499,0): 120, 127, 133, (282,500,0): 123, 131, 134, (282,501,0): 124, 134, 135, (282,502,0): 126, 136, 137, (282,503,0): 126, 138, 138, (282,504,0): 137, 149, 149, (282,505,0): 141, 152, 154, (282,506,0): 145, 156, 162, (282,507,0): 144, 157, 166, (282,508,0): 143, 155, 169, (282,509,0): 142, 154, 170, (282,510,0): 143, 154, 174, (282,511,0): 142, 157, 178, (282,512,0): 137, 162, 184, (282,513,0): 140, 168, 189, (282,514,0): 148, 175, 196, (282,515,0): 154, 181, 202, (282,516,0): 157, 184, 203, (282,517,0): 162, 188, 205, (282,518,0): 167, 193, 210, (282,519,0): 171, 197, 212, (282,520,0): 162, 185, 199, (282,521,0): 160, 184, 196, (282,522,0): 157, 181, 193, (282,523,0): 155, 179, 189, (282,524,0): 157, 179, 190, (282,525,0): 159, 182, 190, (282,526,0): 162, 185, 193, (282,527,0): 164, 186, 197, (282,528,0): 156, 182, 195, (282,529,0): 154, 182, 194, (282,530,0): 152, 180, 194, (282,531,0): 149, 178, 194, (282,532,0): 147, 176, 194, (282,533,0): 145, 173, 194, (282,534,0): 143, 171, 192, (282,535,0): 142, 170, 191, (282,536,0): 140, 166, 189, (282,537,0): 138, 163, 185, (282,538,0): 135, 157, 178, (282,539,0): 137, 155, 175, (282,540,0): 138, 155, 175, (282,541,0): 138, 153, 172, (282,542,0): 138, 151, 168, (282,543,0): 136, 149, 166, (282,544,0): 137, 150, 167, (282,545,0): 137, 150, 167, (282,546,0): 137, 149, 165, (282,547,0): 136, 148, 162, (282,548,0): 137, 147, 159, (282,549,0): 136, 146, 158, (282,550,0): 136, 144, 155, (282,551,0): 135, 143, 154, (282,552,0): 137, 145, 156, (282,553,0): 136, 146, 156, (282,554,0): 135, 147, 159, (282,555,0): 136, 150, 161, (282,556,0): 134, 150, 163, (282,557,0): 133, 151, 165, (282,558,0): 132, 151, 166, (282,559,0): 132, 151, 166, (282,560,0): 128, 146, 160, (282,561,0): 131, 147, 162, (282,562,0): 133, 149, 164, (282,563,0): 135, 151, 166, (282,564,0): 136, 152, 167, (282,565,0): 134, 152, 166, (282,566,0): 133, 151, 165, (282,567,0): 131, 150, 164, (282,568,0): 129, 148, 162, (282,569,0): 128, 147, 161, (282,570,0): 124, 146, 159, (282,571,0): 123, 145, 158, (282,572,0): 123, 145, 158, (282,573,0): 122, 144, 157, (282,574,0): 120, 142, 155, (282,575,0): 120, 139, 154, (282,576,0): 116, 131, 152, (282,577,0): 118, 130, 152, (282,578,0): 119, 130, 152, (282,579,0): 123, 131, 152, (282,580,0): 123, 130, 149, (282,581,0): 121, 124, 143, (282,582,0): 113, 115, 130, (282,583,0): 109, 107, 121, (282,584,0): 95, 89, 103, (282,585,0): 90, 80, 91, (282,586,0): 82, 69, 79, (282,587,0): 77, 62, 69, (282,588,0): 76, 59, 67, (282,589,0): 79, 60, 66, (282,590,0): 80, 59, 64, (282,591,0): 80, 59, 66, (282,592,0): 76, 59, 67, (282,593,0): 79, 63, 73, (282,594,0): 84, 68, 78, (282,595,0): 83, 70, 79, (282,596,0): 80, 69, 77, (282,597,0): 76, 65, 73, (282,598,0): 72, 62, 70, (282,599,0): 70, 60, 68, (283,0,0): 61, 50, 58, (283,1,0): 60, 49, 57, (283,2,0): 58, 47, 55, (283,3,0): 57, 46, 54, (283,4,0): 57, 46, 54, (283,5,0): 57, 46, 54, (283,6,0): 59, 46, 55, (283,7,0): 59, 46, 55, (283,8,0): 60, 44, 54, (283,9,0): 60, 44, 54, (283,10,0): 61, 44, 54, (283,11,0): 62, 45, 55, (283,12,0): 62, 45, 55, (283,13,0): 63, 46, 56, (283,14,0): 63, 46, 56, (283,15,0): 65, 45, 54, (283,16,0): 73, 48, 52, (283,17,0): 77, 48, 52, (283,18,0): 80, 49, 54, (283,19,0): 82, 51, 56, (283,20,0): 84, 52, 57, (283,21,0): 84, 52, 57, (283,22,0): 84, 52, 57, (283,23,0): 83, 51, 56, (283,24,0): 82, 50, 55, (283,25,0): 81, 50, 55, (283,26,0): 80, 51, 55, (283,27,0): 78, 52, 55, (283,28,0): 77, 52, 55, (283,29,0): 75, 53, 55, (283,30,0): 74, 54, 55, (283,31,0): 75, 53, 56, (283,32,0): 78, 51, 58, (283,33,0): 80, 50, 58, (283,34,0): 80, 51, 56, (283,35,0): 80, 51, 56, (283,36,0): 80, 51, 56, (283,37,0): 80, 51, 56, (283,38,0): 80, 51, 55, (283,39,0): 80, 51, 55, (283,40,0): 80, 51, 53, (283,41,0): 81, 52, 54, (283,42,0): 82, 53, 55, (283,43,0): 83, 54, 56, (283,44,0): 84, 56, 55, (283,45,0): 85, 57, 56, (283,46,0): 86, 58, 57, (283,47,0): 86, 58, 55, (283,48,0): 87, 58, 54, (283,49,0): 89, 60, 54, (283,50,0): 91, 62, 54, (283,51,0): 92, 64, 53, (283,52,0): 93, 63, 53, (283,53,0): 94, 65, 51, (283,54,0): 99, 70, 54, (283,55,0): 103, 75, 54, (283,56,0): 110, 79, 58, (283,57,0): 111, 81, 55, (283,58,0): 114, 83, 55, (283,59,0): 116, 85, 56, (283,60,0): 119, 89, 55, (283,61,0): 121, 91, 55, (283,62,0): 125, 92, 57, (283,63,0): 126, 94, 56, (283,64,0): 134, 100, 63, (283,65,0): 134, 100, 62, (283,66,0): 133, 99, 62, (283,67,0): 132, 98, 60, (283,68,0): 133, 98, 60, (283,69,0): 132, 97, 57, (283,70,0): 131, 96, 56, (283,71,0): 131, 96, 56, (283,72,0): 137, 99, 60, (283,73,0): 137, 100, 58, (283,74,0): 138, 99, 58, (283,75,0): 137, 98, 55, (283,76,0): 136, 97, 54, (283,77,0): 135, 96, 53, (283,78,0): 137, 95, 53, (283,79,0): 136, 94, 52, (283,80,0): 137, 98, 55, (283,81,0): 136, 99, 57, (283,82,0): 136, 99, 57, (283,83,0): 137, 100, 58, (283,84,0): 138, 101, 59, (283,85,0): 140, 103, 61, (283,86,0): 141, 104, 62, (283,87,0): 141, 104, 62, (283,88,0): 142, 105, 63, (283,89,0): 142, 105, 63, (283,90,0): 143, 106, 64, (283,91,0): 144, 107, 65, (283,92,0): 143, 106, 64, (283,93,0): 142, 105, 63, (283,94,0): 141, 104, 62, (283,95,0): 140, 103, 61, (283,96,0): 135, 100, 60, (283,97,0): 133, 98, 60, (283,98,0): 132, 97, 59, (283,99,0): 130, 95, 57, (283,100,0): 130, 94, 58, (283,101,0): 131, 95, 59, (283,102,0): 133, 97, 61, (283,103,0): 134, 98, 62, (283,104,0): 132, 96, 62, (283,105,0): 131, 95, 61, (283,106,0): 129, 93, 61, (283,107,0): 127, 91, 59, (283,108,0): 126, 90, 58, (283,109,0): 126, 90, 58, (283,110,0): 126, 89, 60, (283,111,0): 127, 90, 61, (283,112,0): 124, 87, 58, (283,113,0): 124, 88, 56, (283,114,0): 124, 88, 56, (283,115,0): 123, 87, 55, (283,116,0): 123, 87, 55, (283,117,0): 123, 87, 53, (283,118,0): 122, 86, 52, (283,119,0): 122, 86, 50, (283,120,0): 123, 87, 51, (283,121,0): 124, 88, 52, (283,122,0): 125, 89, 53, (283,123,0): 126, 91, 53, (283,124,0): 126, 91, 53, (283,125,0): 126, 91, 53, (283,126,0): 125, 90, 52, (283,127,0): 125, 90, 52, (283,128,0): 124, 89, 51, (283,129,0): 124, 89, 51, (283,130,0): 124, 89, 51, (283,131,0): 125, 90, 52, (283,132,0): 127, 92, 54, (283,133,0): 130, 95, 55, (283,134,0): 132, 97, 57, (283,135,0): 133, 98, 56, (283,136,0): 134, 99, 57, (283,137,0): 135, 101, 56, (283,138,0): 136, 102, 57, (283,139,0): 137, 103, 58, (283,140,0): 139, 105, 60, (283,141,0): 140, 106, 61, (283,142,0): 142, 108, 63, (283,143,0): 142, 108, 62, (283,144,0): 142, 108, 62, (283,145,0): 141, 107, 59, (283,146,0): 140, 106, 60, (283,147,0): 138, 104, 56, (283,148,0): 136, 102, 56, (283,149,0): 133, 99, 51, (283,150,0): 131, 97, 51, (283,151,0): 130, 96, 48, (283,152,0): 127, 93, 47, (283,153,0): 129, 95, 47, (283,154,0): 130, 96, 50, (283,155,0): 130, 96, 48, (283,156,0): 131, 97, 51, (283,157,0): 135, 101, 53, (283,158,0): 142, 108, 62, (283,159,0): 150, 114, 64, (283,160,0): 158, 121, 66, (283,161,0): 165, 129, 69, (283,162,0): 175, 139, 77, (283,163,0): 183, 148, 84, (283,164,0): 187, 152, 86, (283,165,0): 189, 155, 84, (283,166,0): 191, 157, 85, (283,167,0): 193, 159, 85, (283,168,0): 191, 158, 81, (283,169,0): 192, 159, 82, (283,170,0): 193, 160, 81, (283,171,0): 193, 160, 81, (283,172,0): 193, 160, 83, (283,173,0): 191, 158, 81, (283,174,0): 190, 156, 82, (283,175,0): 189, 155, 83, (283,176,0): 184, 150, 78, (283,177,0): 181, 147, 76, (283,178,0): 175, 140, 72, (283,179,0): 165, 132, 65, (283,180,0): 160, 126, 63, (283,181,0): 158, 126, 65, (283,182,0): 163, 131, 72, (283,183,0): 167, 137, 75, (283,184,0): 171, 143, 80, (283,185,0): 170, 145, 78, (283,186,0): 174, 150, 76, (283,187,0): 180, 159, 80, (283,188,0): 190, 169, 86, (283,189,0): 198, 181, 93, (283,190,0): 207, 190, 98, (283,191,0): 212, 196, 100, (283,192,0): 221, 203, 105, (283,193,0): 226, 208, 108, (283,194,0): 232, 214, 112, (283,195,0): 236, 222, 117, (283,196,0): 241, 227, 120, (283,197,0): 245, 233, 123, (283,198,0): 250, 240, 127, (283,199,0): 252, 245, 129, (283,200,0): 255, 255, 138, (283,201,0): 255, 255, 135, (283,202,0): 255, 255, 134, (283,203,0): 254, 255, 133, (283,204,0): 253, 254, 134, (283,205,0): 253, 254, 134, (283,206,0): 251, 255, 135, (283,207,0): 253, 253, 139, (283,208,0): 255, 255, 148, (283,209,0): 255, 253, 151, (283,210,0): 255, 252, 150, (283,211,0): 255, 250, 148, (283,212,0): 253, 248, 146, (283,213,0): 251, 248, 145, (283,214,0): 250, 247, 144, (283,215,0): 249, 246, 143, (283,216,0): 250, 247, 144, (283,217,0): 251, 248, 145, (283,218,0): 253, 250, 147, (283,219,0): 254, 252, 149, (283,220,0): 255, 253, 150, (283,221,0): 255, 254, 151, (283,222,0): 255, 253, 150, (283,223,0): 255, 253, 150, (283,224,0): 255, 254, 148, (283,225,0): 255, 254, 146, (283,226,0): 255, 254, 148, (283,227,0): 255, 254, 146, (283,228,0): 255, 254, 148, (283,229,0): 255, 254, 146, (283,230,0): 255, 254, 148, (283,231,0): 255, 254, 146, (283,232,0): 255, 254, 148, (283,233,0): 255, 254, 146, (283,234,0): 255, 254, 148, (283,235,0): 255, 254, 146, (283,236,0): 255, 254, 148, (283,237,0): 255, 254, 146, (283,238,0): 255, 254, 148, (283,239,0): 253, 255, 148, (283,240,0): 253, 255, 153, (283,241,0): 251, 255, 153, (283,242,0): 253, 255, 154, (283,243,0): 253, 255, 153, (283,244,0): 254, 254, 154, (283,245,0): 254, 255, 153, (283,246,0): 254, 254, 154, (283,247,0): 255, 254, 153, (283,248,0): 255, 253, 153, (283,249,0): 255, 255, 155, (283,250,0): 255, 251, 152, (283,251,0): 239, 235, 135, (283,252,0): 219, 213, 115, (283,253,0): 205, 200, 100, (283,254,0): 205, 199, 101, (283,255,0): 209, 203, 105, (283,256,0): 213, 210, 113, (283,257,0): 213, 213, 115, (283,258,0): 221, 219, 119, (283,259,0): 231, 229, 126, (283,260,0): 243, 243, 133, (283,261,0): 251, 251, 137, (283,262,0): 254, 255, 138, (283,263,0): 255, 255, 137, (283,264,0): 253, 255, 137, (283,265,0): 251, 255, 138, (283,266,0): 248, 255, 141, (283,267,0): 243, 252, 143, (283,268,0): 238, 249, 145, (283,269,0): 232, 247, 146, (283,270,0): 230, 244, 146, (283,271,0): 226, 243, 147, (283,272,0): 217, 237, 140, (283,273,0): 218, 239, 144, (283,274,0): 222, 242, 147, (283,275,0): 227, 244, 150, (283,276,0): 229, 244, 151, (283,277,0): 231, 244, 152, (283,278,0): 232, 243, 151, (283,279,0): 232, 243, 151, (283,280,0): 214, 227, 137, (283,281,0): 202, 219, 127, (283,282,0): 191, 210, 118, (283,283,0): 190, 214, 120, (283,284,0): 201, 230, 137, (283,285,0): 215, 249, 154, (283,286,0): 221, 255, 161, (283,287,0): 220, 255, 163, (283,288,0): 200, 233, 154, (283,289,0): 191, 223, 150, (283,290,0): 180, 207, 138, (283,291,0): 166, 191, 125, (283,292,0): 156, 178, 114, (283,293,0): 149, 169, 108, (283,294,0): 147, 162, 107, (283,295,0): 145, 159, 106, (283,296,0): 154, 171, 119, (283,297,0): 159, 177, 125, (283,298,0): 166, 186, 133, (283,299,0): 169, 194, 139, (283,300,0): 169, 198, 140, (283,301,0): 167, 201, 141, (283,302,0): 167, 203, 141, (283,303,0): 167, 203, 141, (283,304,0): 170, 204, 144, (283,305,0): 173, 204, 145, (283,306,0): 172, 203, 146, (283,307,0): 170, 201, 144, (283,308,0): 167, 197, 143, (283,309,0): 164, 197, 144, (283,310,0): 162, 199, 147, (283,311,0): 163, 201, 152, (283,312,0): 166, 208, 162, (283,313,0): 178, 221, 178, (283,314,0): 191, 233, 197, (283,315,0): 193, 232, 203, (283,316,0): 180, 215, 191, (283,317,0): 164, 195, 177, (283,318,0): 155, 183, 168, (283,319,0): 154, 180, 167, (283,320,0): 150, 178, 163, (283,321,0): 148, 176, 161, (283,322,0): 144, 172, 157, (283,323,0): 141, 168, 153, (283,324,0): 137, 164, 149, (283,325,0): 135, 161, 148, (283,326,0): 136, 160, 147, (283,327,0): 136, 159, 149, (283,328,0): 138, 159, 150, (283,329,0): 139, 159, 150, (283,330,0): 140, 160, 151, (283,331,0): 142, 159, 151, (283,332,0): 140, 157, 149, (283,333,0): 134, 149, 142, (283,334,0): 124, 139, 132, (283,335,0): 116, 131, 126, (283,336,0): 105, 120, 117, (283,337,0): 105, 117, 115, (283,338,0): 102, 114, 112, (283,339,0): 102, 114, 112, (283,340,0): 102, 114, 112, (283,341,0): 102, 114, 112, (283,342,0): 99, 109, 108, (283,343,0): 96, 106, 105, (283,344,0): 96, 105, 104, (283,345,0): 93, 102, 101, (283,346,0): 89, 98, 97, (283,347,0): 87, 96, 95, (283,348,0): 88, 94, 94, (283,349,0): 85, 91, 91, (283,350,0): 79, 85, 85, (283,351,0): 75, 81, 81, (283,352,0): 71, 77, 75, (283,353,0): 72, 78, 74, (283,354,0): 75, 80, 76, (283,355,0): 78, 83, 79, (283,356,0): 83, 85, 80, (283,357,0): 86, 88, 83, (283,358,0): 90, 91, 86, (283,359,0): 91, 91, 89, (283,360,0): 103, 105, 104, (283,361,0): 108, 112, 113, (283,362,0): 115, 119, 122, (283,363,0): 114, 122, 125, (283,364,0): 111, 118, 126, (283,365,0): 109, 118, 127, (283,366,0): 112, 122, 132, (283,367,0): 115, 128, 137, (283,368,0): 114, 124, 136, (283,369,0): 113, 123, 135, (283,370,0): 113, 121, 134, (283,371,0): 113, 121, 134, (283,372,0): 114, 121, 137, (283,373,0): 115, 122, 138, (283,374,0): 117, 123, 139, (283,375,0): 118, 124, 140, (283,376,0): 127, 130, 149, (283,377,0): 128, 131, 150, (283,378,0): 129, 131, 152, (283,379,0): 128, 130, 151, (283,380,0): 127, 128, 149, (283,381,0): 123, 124, 145, (283,382,0): 120, 120, 144, (283,383,0): 119, 117, 141, (283,384,0): 115, 113, 135, (283,385,0): 116, 112, 135, (283,386,0): 116, 112, 135, (283,387,0): 115, 111, 134, (283,388,0): 115, 112, 133, (283,389,0): 113, 111, 132, (283,390,0): 114, 111, 132, (283,391,0): 113, 111, 132, (283,392,0): 112, 109, 128, (283,393,0): 111, 110, 128, (283,394,0): 109, 108, 124, (283,395,0): 106, 105, 121, (283,396,0): 103, 102, 118, (283,397,0): 98, 97, 113, (283,398,0): 95, 94, 108, (283,399,0): 92, 91, 105, (283,400,0): 90, 94, 106, (283,401,0): 93, 96, 111, (283,402,0): 98, 101, 116, (283,403,0): 100, 106, 120, (283,404,0): 102, 108, 124, (283,405,0): 103, 109, 125, (283,406,0): 102, 108, 124, (283,407,0): 102, 105, 122, (283,408,0): 97, 99, 114, (283,409,0): 98, 97, 111, (283,410,0): 98, 96, 110, (283,411,0): 99, 93, 105, (283,412,0): 100, 90, 101, (283,413,0): 99, 87, 97, (283,414,0): 98, 85, 94, (283,415,0): 100, 85, 92, (283,416,0): 99, 83, 86, (283,417,0): 102, 83, 85, (283,418,0): 103, 83, 85, (283,419,0): 102, 80, 83, (283,420,0): 100, 75, 79, (283,421,0): 96, 70, 73, (283,422,0): 93, 62, 67, (283,423,0): 90, 59, 64, (283,424,0): 82, 50, 53, (283,425,0): 80, 48, 51, (283,426,0): 79, 47, 48, (283,427,0): 77, 47, 47, (283,428,0): 77, 47, 47, (283,429,0): 79, 51, 50, (283,430,0): 82, 54, 53, (283,431,0): 84, 56, 53, (283,432,0): 86, 55, 52, (283,433,0): 86, 55, 52, (283,434,0): 88, 54, 52, (283,435,0): 85, 54, 51, (283,436,0): 85, 54, 52, (283,437,0): 85, 54, 51, (283,438,0): 84, 55, 51, (283,439,0): 84, 55, 51, (283,440,0): 88, 60, 57, (283,441,0): 87, 62, 58, (283,442,0): 89, 64, 60, (283,443,0): 90, 66, 62, (283,444,0): 92, 68, 66, (283,445,0): 94, 70, 68, (283,446,0): 95, 71, 69, (283,447,0): 95, 71, 69, (283,448,0): 101, 73, 72, (283,449,0): 105, 77, 76, (283,450,0): 112, 84, 83, (283,451,0): 117, 89, 88, (283,452,0): 119, 90, 92, (283,453,0): 118, 89, 91, (283,454,0): 115, 86, 88, (283,455,0): 111, 85, 86, (283,456,0): 101, 75, 76, (283,457,0): 98, 73, 76, (283,458,0): 96, 71, 74, (283,459,0): 97, 72, 75, (283,460,0): 99, 74, 78, (283,461,0): 100, 75, 79, (283,462,0): 99, 74, 78, (283,463,0): 95, 72, 78, (283,464,0): 89, 66, 74, (283,465,0): 88, 65, 73, (283,466,0): 87, 64, 72, (283,467,0): 86, 65, 72, (283,468,0): 86, 65, 72, (283,469,0): 86, 67, 71, (283,470,0): 87, 68, 72, (283,471,0): 88, 69, 71, (283,472,0): 85, 66, 68, (283,473,0): 85, 69, 70, (283,474,0): 88, 72, 73, (283,475,0): 91, 77, 76, (283,476,0): 95, 81, 80, (283,477,0): 98, 84, 81, (283,478,0): 98, 87, 85, (283,479,0): 99, 88, 86, (283,480,0): 105, 91, 91, (283,481,0): 105, 90, 93, (283,482,0): 102, 90, 94, (283,483,0): 100, 88, 92, (283,484,0): 98, 87, 93, (283,485,0): 100, 89, 95, (283,486,0): 104, 94, 102, (283,487,0): 107, 100, 107, (283,488,0): 109, 103, 113, (283,489,0): 113, 107, 117, (283,490,0): 116, 113, 124, (283,491,0): 119, 116, 127, (283,492,0): 118, 116, 129, (283,493,0): 117, 117, 129, (283,494,0): 119, 118, 132, (283,495,0): 119, 121, 134, (283,496,0): 123, 125, 137, (283,497,0): 122, 126, 135, (283,498,0): 121, 128, 134, (283,499,0): 123, 131, 134, (283,500,0): 126, 134, 136, (283,501,0): 129, 138, 137, (283,502,0): 130, 140, 139, (283,503,0): 132, 142, 141, (283,504,0): 136, 146, 145, (283,505,0): 137, 148, 150, (283,506,0): 139, 150, 156, (283,507,0): 138, 148, 158, (283,508,0): 134, 146, 160, (283,509,0): 134, 145, 163, (283,510,0): 136, 147, 169, (283,511,0): 136, 151, 174, (283,512,0): 134, 158, 182, (283,513,0): 137, 165, 189, (283,514,0): 145, 171, 196, (283,515,0): 150, 176, 199, (283,516,0): 154, 180, 203, (283,517,0): 158, 185, 206, (283,518,0): 164, 191, 212, (283,519,0): 168, 195, 214, (283,520,0): 163, 190, 209, (283,521,0): 160, 187, 204, (283,522,0): 157, 184, 201, (283,523,0): 154, 182, 196, (283,524,0): 155, 181, 196, (283,525,0): 157, 183, 198, (283,526,0): 160, 186, 201, (283,527,0): 161, 189, 203, (283,528,0): 157, 184, 201, (283,529,0): 155, 184, 200, (283,530,0): 153, 182, 200, (283,531,0): 149, 180, 198, (283,532,0): 146, 177, 197, (283,533,0): 144, 175, 196, (283,534,0): 142, 173, 194, (283,535,0): 143, 171, 193, (283,536,0): 142, 170, 192, (283,537,0): 140, 167, 188, (283,538,0): 138, 160, 183, (283,539,0): 138, 159, 178, (283,540,0): 141, 158, 176, (283,541,0): 142, 158, 174, (283,542,0): 143, 156, 173, (283,543,0): 140, 153, 170, (283,544,0): 139, 152, 169, (283,545,0): 138, 151, 168, (283,546,0): 139, 150, 168, (283,547,0): 138, 150, 166, (283,548,0): 139, 148, 163, (283,549,0): 137, 147, 159, (283,550,0): 136, 144, 157, (283,551,0): 135, 143, 154, (283,552,0): 138, 148, 158, (283,553,0): 137, 150, 159, (283,554,0): 140, 152, 164, (283,555,0): 139, 155, 168, (283,556,0): 139, 157, 171, (283,557,0): 138, 157, 171, (283,558,0): 134, 156, 170, (283,559,0): 134, 156, 170, (283,560,0): 130, 149, 164, (283,561,0): 133, 152, 166, (283,562,0): 136, 155, 170, (283,563,0): 139, 158, 172, (283,564,0): 141, 158, 174, (283,565,0): 139, 158, 172, (283,566,0): 137, 156, 171, (283,567,0): 135, 154, 168, (283,568,0): 135, 154, 169, (283,569,0): 132, 151, 165, (283,570,0): 126, 148, 162, (283,571,0): 125, 147, 160, (283,572,0): 126, 148, 162, (283,573,0): 126, 148, 161, (283,574,0): 124, 143, 158, (283,575,0): 122, 139, 155, (283,576,0): 119, 130, 150, (283,577,0): 119, 127, 148, (283,578,0): 119, 126, 145, (283,579,0): 122, 127, 147, (283,580,0): 124, 127, 146, (283,581,0): 120, 121, 139, (283,582,0): 113, 111, 125, (283,583,0): 106, 102, 116, (283,584,0): 89, 81, 94, (283,585,0): 84, 74, 85, (283,586,0): 76, 63, 73, (283,587,0): 72, 56, 66, (283,588,0): 73, 53, 62, (283,589,0): 73, 54, 60, (283,590,0): 74, 53, 60, (283,591,0): 73, 52, 59, (283,592,0): 72, 52, 61, (283,593,0): 74, 57, 67, (283,594,0): 79, 62, 72, (283,595,0): 81, 65, 75, (283,596,0): 79, 66, 75, (283,597,0): 75, 64, 72, (283,598,0): 71, 61, 69, (283,599,0): 68, 58, 66, (284,0,0): 61, 50, 58, (284,1,0): 60, 49, 57, (284,2,0): 59, 48, 56, (284,3,0): 58, 47, 55, (284,4,0): 57, 46, 54, (284,5,0): 57, 46, 54, (284,6,0): 59, 46, 55, (284,7,0): 60, 47, 56, (284,8,0): 61, 45, 55, (284,9,0): 61, 45, 55, (284,10,0): 62, 45, 55, (284,11,0): 63, 46, 56, (284,12,0): 63, 46, 56, (284,13,0): 64, 47, 57, (284,14,0): 64, 47, 57, (284,15,0): 67, 46, 55, (284,16,0): 75, 48, 53, (284,17,0): 79, 49, 51, (284,18,0): 82, 50, 53, (284,19,0): 84, 52, 55, (284,20,0): 87, 52, 56, (284,21,0): 87, 52, 56, (284,22,0): 87, 52, 58, (284,23,0): 86, 51, 57, (284,24,0): 85, 50, 56, (284,25,0): 83, 51, 56, (284,26,0): 82, 51, 56, (284,27,0): 81, 52, 56, (284,28,0): 78, 53, 57, (284,29,0): 76, 54, 57, (284,30,0): 76, 54, 57, (284,31,0): 78, 53, 57, (284,32,0): 81, 51, 59, (284,33,0): 82, 51, 59, (284,34,0): 82, 51, 57, (284,35,0): 82, 51, 57, (284,36,0): 82, 51, 57, (284,37,0): 82, 51, 57, (284,38,0): 82, 51, 56, (284,39,0): 82, 51, 56, (284,40,0): 82, 52, 54, (284,41,0): 82, 52, 54, (284,42,0): 83, 53, 55, (284,43,0): 84, 54, 56, (284,44,0): 85, 55, 55, (284,45,0): 86, 56, 56, (284,46,0): 87, 57, 57, (284,47,0): 88, 58, 56, (284,48,0): 89, 58, 55, (284,49,0): 91, 60, 55, (284,50,0): 93, 63, 55, (284,51,0): 94, 64, 54, (284,52,0): 96, 63, 54, (284,53,0): 98, 66, 53, (284,54,0): 102, 71, 53, (284,55,0): 106, 75, 54, (284,56,0): 112, 80, 57, (284,57,0): 113, 81, 56, (284,58,0): 117, 83, 55, (284,59,0): 120, 87, 56, (284,60,0): 123, 90, 57, (284,61,0): 125, 92, 57, (284,62,0): 129, 95, 58, (284,63,0): 130, 96, 58, (284,64,0): 138, 103, 65, (284,65,0): 137, 102, 62, (284,66,0): 137, 102, 64, (284,67,0): 136, 101, 61, (284,68,0): 137, 99, 60, (284,69,0): 137, 100, 58, (284,70,0): 136, 99, 57, (284,71,0): 136, 99, 57, (284,72,0): 141, 102, 61, (284,73,0): 140, 101, 58, (284,74,0): 142, 100, 58, (284,75,0): 141, 100, 56, (284,76,0): 140, 99, 55, (284,77,0): 139, 98, 54, (284,78,0): 140, 97, 54, (284,79,0): 139, 98, 54, (284,80,0): 139, 100, 57, (284,81,0): 139, 100, 57, (284,82,0): 140, 101, 58, (284,83,0): 142, 103, 60, (284,84,0): 143, 104, 61, (284,85,0): 144, 105, 62, (284,86,0): 144, 105, 62, (284,87,0): 144, 105, 62, (284,88,0): 144, 105, 62, (284,89,0): 145, 106, 63, (284,90,0): 145, 106, 63, (284,91,0): 145, 106, 63, (284,92,0): 145, 106, 63, (284,93,0): 143, 104, 61, (284,94,0): 142, 103, 60, (284,95,0): 139, 102, 60, (284,96,0): 136, 101, 61, (284,97,0): 133, 100, 59, (284,98,0): 132, 99, 58, (284,99,0): 131, 98, 57, (284,100,0): 131, 97, 59, (284,101,0): 132, 98, 60, (284,102,0): 134, 100, 62, (284,103,0): 135, 101, 63, (284,104,0): 135, 101, 64, (284,105,0): 133, 99, 62, (284,106,0): 131, 97, 62, (284,107,0): 130, 96, 61, (284,108,0): 129, 95, 60, (284,109,0): 128, 94, 59, (284,110,0): 129, 94, 62, (284,111,0): 129, 94, 62, (284,112,0): 127, 91, 59, (284,113,0): 126, 90, 58, (284,114,0): 126, 90, 58, (284,115,0): 125, 89, 55, (284,116,0): 124, 88, 54, (284,117,0): 124, 88, 54, (284,118,0): 123, 87, 53, (284,119,0): 123, 87, 51, (284,120,0): 123, 87, 51, (284,121,0): 124, 89, 51, (284,122,0): 126, 91, 53, (284,123,0): 127, 92, 54, (284,124,0): 128, 93, 55, (284,125,0): 128, 93, 53, (284,126,0): 128, 93, 53, (284,127,0): 127, 92, 52, (284,128,0): 126, 91, 51, (284,129,0): 127, 92, 52, (284,130,0): 127, 92, 52, (284,131,0): 128, 93, 53, (284,132,0): 129, 94, 54, (284,133,0): 132, 97, 55, (284,134,0): 135, 100, 58, (284,135,0): 137, 102, 60, (284,136,0): 136, 101, 59, (284,137,0): 137, 103, 58, (284,138,0): 139, 105, 60, (284,139,0): 141, 107, 61, (284,140,0): 143, 109, 63, (284,141,0): 145, 111, 65, (284,142,0): 147, 113, 67, (284,143,0): 148, 114, 66, (284,144,0): 147, 113, 65, (284,145,0): 146, 113, 62, (284,146,0): 144, 110, 62, (284,147,0): 142, 109, 58, (284,148,0): 139, 105, 57, (284,149,0): 137, 104, 53, (284,150,0): 136, 102, 54, (284,151,0): 135, 102, 51, (284,152,0): 130, 96, 48, (284,153,0): 131, 98, 47, (284,154,0): 131, 97, 49, (284,155,0): 131, 98, 47, (284,156,0): 132, 98, 50, (284,157,0): 136, 103, 52, (284,158,0): 144, 110, 62, (284,159,0): 152, 116, 64, (284,160,0): 163, 127, 69, (284,161,0): 172, 133, 74, (284,162,0): 182, 144, 82, (284,163,0): 189, 151, 86, (284,164,0): 190, 155, 87, (284,165,0): 192, 158, 87, (284,166,0): 194, 160, 88, (284,167,0): 195, 161, 87, (284,168,0): 193, 160, 83, (284,169,0): 193, 160, 83, (284,170,0): 193, 161, 84, (284,171,0): 192, 160, 83, (284,172,0): 191, 159, 84, (284,173,0): 189, 157, 82, (284,174,0): 187, 155, 82, (284,175,0): 186, 154, 81, (284,176,0): 180, 147, 76, (284,177,0): 175, 145, 75, (284,178,0): 170, 140, 70, (284,179,0): 163, 134, 66, (284,180,0): 159, 130, 64, (284,181,0): 161, 133, 68, (284,182,0): 168, 140, 75, (284,183,0): 173, 148, 81, (284,184,0): 174, 151, 83, (284,185,0): 174, 154, 81, (284,186,0): 179, 160, 83, (284,187,0): 185, 168, 86, (284,188,0): 193, 177, 90, (284,189,0): 202, 189, 97, (284,190,0): 210, 197, 101, (284,191,0): 215, 203, 105, (284,192,0): 226, 212, 113, (284,193,0): 231, 218, 116, (284,194,0): 237, 224, 120, (284,195,0): 240, 229, 123, (284,196,0): 243, 232, 124, (284,197,0): 245, 237, 126, (284,198,0): 252, 245, 131, (284,199,0): 255, 251, 134, (284,200,0): 255, 255, 137, (284,201,0): 255, 255, 136, (284,202,0): 255, 255, 136, (284,203,0): 254, 255, 135, (284,204,0): 255, 255, 137, (284,205,0): 253, 255, 137, (284,206,0): 254, 255, 140, (284,207,0): 255, 255, 143, (284,208,0): 255, 251, 145, (284,209,0): 255, 250, 149, (284,210,0): 255, 249, 148, (284,211,0): 255, 248, 147, (284,212,0): 255, 247, 146, (284,213,0): 252, 247, 145, (284,214,0): 252, 247, 145, (284,215,0): 251, 246, 144, (284,216,0): 251, 248, 145, (284,217,0): 252, 249, 146, (284,218,0): 253, 251, 148, (284,219,0): 255, 253, 150, (284,220,0): 255, 254, 151, (284,221,0): 254, 255, 151, (284,222,0): 253, 254, 150, (284,223,0): 253, 254, 150, (284,224,0): 253, 254, 150, (284,225,0): 253, 255, 148, (284,226,0): 253, 254, 150, (284,227,0): 253, 255, 148, (284,228,0): 253, 254, 150, (284,229,0): 253, 255, 148, (284,230,0): 253, 254, 150, (284,231,0): 253, 255, 148, (284,232,0): 253, 254, 150, (284,233,0): 253, 255, 148, (284,234,0): 253, 254, 150, (284,235,0): 253, 255, 148, (284,236,0): 253, 254, 150, (284,237,0): 253, 255, 148, (284,238,0): 253, 254, 150, (284,239,0): 253, 254, 150, (284,240,0): 255, 255, 155, (284,241,0): 254, 255, 155, (284,242,0): 255, 255, 157, (284,243,0): 255, 255, 155, (284,244,0): 255, 255, 157, (284,245,0): 255, 255, 155, (284,246,0): 255, 255, 157, (284,247,0): 255, 255, 155, (284,248,0): 251, 251, 153, (284,249,0): 255, 255, 155, (284,250,0): 255, 254, 157, (284,251,0): 247, 245, 145, (284,252,0): 230, 226, 129, (284,253,0): 216, 212, 113, (284,254,0): 210, 206, 109, (284,255,0): 209, 206, 109, (284,256,0): 211, 210, 117, (284,257,0): 211, 212, 118, (284,258,0): 217, 217, 119, (284,259,0): 226, 227, 125, (284,260,0): 237, 239, 132, (284,261,0): 247, 249, 139, (284,262,0): 251, 254, 141, (284,263,0): 252, 255, 141, (284,264,0): 250, 255, 143, (284,265,0): 247, 255, 143, (284,266,0): 243, 252, 143, (284,267,0): 235, 248, 143, (284,268,0): 228, 242, 144, (284,269,0): 222, 239, 145, (284,270,0): 219, 235, 146, (284,271,0): 216, 235, 146, (284,272,0): 210, 230, 141, (284,273,0): 211, 231, 142, (284,274,0): 214, 232, 146, (284,275,0): 217, 232, 147, (284,276,0): 218, 232, 147, (284,277,0): 218, 230, 146, (284,278,0): 218, 227, 146, (284,279,0): 216, 225, 144, (284,280,0): 197, 208, 129, (284,281,0): 186, 199, 119, (284,282,0): 176, 194, 112, (284,283,0): 180, 202, 119, (284,284,0): 192, 220, 136, (284,285,0): 205, 237, 152, (284,286,0): 213, 249, 162, (284,287,0): 217, 252, 170, (284,288,0): 203, 235, 162, (284,289,0): 192, 223, 155, (284,290,0): 177, 203, 138, (284,291,0): 159, 183, 121, (284,292,0): 146, 167, 110, (284,293,0): 138, 157, 102, (284,294,0): 138, 152, 101, (284,295,0): 138, 152, 103, (284,296,0): 143, 159, 112, (284,297,0): 148, 166, 118, (284,298,0): 153, 175, 126, (284,299,0): 156, 183, 132, (284,300,0): 159, 189, 135, (284,301,0): 161, 196, 140, (284,302,0): 165, 205, 145, (284,303,0): 170, 210, 150, (284,304,0): 171, 209, 150, (284,305,0): 175, 210, 152, (284,306,0): 176, 209, 154, (284,307,0): 173, 206, 151, (284,308,0): 170, 203, 148, (284,309,0): 168, 203, 147, (284,310,0): 169, 208, 153, (284,311,0): 171, 211, 158, (284,312,0): 180, 224, 173, (284,313,0): 191, 239, 191, (284,314,0): 202, 249, 205, (284,315,0): 200, 246, 209, (284,316,0): 188, 229, 197, (284,317,0): 174, 210, 182, (284,318,0): 164, 196, 172, (284,319,0): 160, 189, 167, (284,320,0): 154, 186, 165, (284,321,0): 152, 184, 163, (284,322,0): 147, 178, 160, (284,323,0): 144, 173, 155, (284,324,0): 138, 167, 149, (284,325,0): 135, 162, 147, (284,326,0): 134, 158, 144, (284,327,0): 133, 157, 144, (284,328,0): 135, 157, 145, (284,329,0): 137, 159, 147, (284,330,0): 139, 160, 151, (284,331,0): 142, 162, 153, (284,332,0): 141, 160, 154, (284,333,0): 135, 152, 146, (284,334,0): 124, 141, 135, (284,335,0): 116, 132, 129, (284,336,0): 109, 121, 119, (284,337,0): 107, 117, 118, (284,338,0): 103, 113, 114, (284,339,0): 103, 113, 114, (284,340,0): 103, 113, 114, (284,341,0): 103, 113, 114, (284,342,0): 101, 109, 111, (284,343,0): 99, 107, 109, (284,344,0): 97, 105, 107, (284,345,0): 94, 102, 104, (284,346,0): 93, 98, 101, (284,347,0): 91, 96, 99, (284,348,0): 89, 94, 97, (284,349,0): 86, 91, 94, (284,350,0): 80, 85, 88, (284,351,0): 76, 82, 82, (284,352,0): 71, 80, 77, (284,353,0): 72, 81, 78, (284,354,0): 76, 82, 78, (284,355,0): 79, 85, 81, (284,356,0): 82, 87, 83, (284,357,0): 84, 89, 85, (284,358,0): 87, 89, 86, (284,359,0): 88, 90, 87, (284,360,0): 96, 98, 97, (284,361,0): 104, 108, 109, (284,362,0): 115, 119, 122, (284,363,0): 116, 124, 127, (284,364,0): 114, 121, 129, (284,365,0): 110, 119, 128, (284,366,0): 111, 121, 131, (284,367,0): 113, 123, 135, (284,368,0): 116, 124, 137, (284,369,0): 116, 124, 137, (284,370,0): 115, 123, 136, (284,371,0): 114, 122, 135, (284,372,0): 115, 121, 137, (284,373,0): 116, 122, 138, (284,374,0): 117, 123, 139, (284,375,0): 118, 124, 140, (284,376,0): 126, 129, 148, (284,377,0): 127, 130, 149, (284,378,0): 128, 129, 150, (284,379,0): 128, 129, 150, (284,380,0): 126, 127, 148, (284,381,0): 122, 123, 144, (284,382,0): 120, 118, 142, (284,383,0): 118, 116, 140, (284,384,0): 116, 110, 136, (284,385,0): 116, 110, 136, (284,386,0): 116, 111, 134, (284,387,0): 115, 110, 133, (284,388,0): 115, 110, 133, (284,389,0): 113, 109, 132, (284,390,0): 114, 109, 131, (284,391,0): 113, 110, 131, (284,392,0): 112, 107, 127, (284,393,0): 110, 107, 126, (284,394,0): 109, 106, 125, (284,395,0): 107, 104, 123, (284,396,0): 103, 100, 117, (284,397,0): 99, 96, 113, (284,398,0): 96, 93, 110, (284,399,0): 93, 92, 106, (284,400,0): 91, 90, 104, (284,401,0): 91, 93, 106, (284,402,0): 95, 97, 110, (284,403,0): 99, 103, 115, (284,404,0): 102, 105, 120, (284,405,0): 105, 108, 123, (284,406,0): 106, 109, 126, (284,407,0): 106, 109, 126, (284,408,0): 102, 104, 119, (284,409,0): 103, 102, 116, (284,410,0): 102, 100, 114, (284,411,0): 102, 96, 108, (284,412,0): 101, 93, 104, (284,413,0): 101, 89, 99, (284,414,0): 100, 87, 97, (284,415,0): 101, 86, 93, (284,416,0): 104, 85, 89, (284,417,0): 106, 84, 87, (284,418,0): 105, 83, 86, (284,419,0): 104, 79, 83, (284,420,0): 99, 73, 76, (284,421,0): 94, 65, 69, (284,422,0): 89, 58, 63, (284,423,0): 85, 53, 56, (284,424,0): 76, 44, 47, (284,425,0): 76, 44, 47, (284,426,0): 74, 44, 44, (284,427,0): 75, 45, 45, (284,428,0): 76, 48, 45, (284,429,0): 77, 52, 48, (284,430,0): 80, 55, 51, (284,431,0): 82, 57, 53, (284,432,0): 88, 58, 56, (284,433,0): 88, 58, 56, (284,434,0): 88, 57, 55, (284,435,0): 86, 56, 54, (284,436,0): 85, 55, 55, (284,437,0): 83, 53, 51, (284,438,0): 82, 52, 50, (284,439,0): 81, 51, 49, (284,440,0): 89, 59, 57, (284,441,0): 89, 61, 58, (284,442,0): 90, 62, 59, (284,443,0): 89, 64, 60, (284,444,0): 91, 66, 62, (284,445,0): 93, 68, 64, (284,446,0): 95, 70, 66, (284,447,0): 98, 70, 67, (284,448,0): 104, 74, 72, (284,449,0): 108, 78, 76, (284,450,0): 114, 84, 82, (284,451,0): 119, 89, 87, (284,452,0): 121, 91, 91, (284,453,0): 121, 91, 91, (284,454,0): 119, 89, 89, (284,455,0): 116, 88, 87, (284,456,0): 105, 77, 76, (284,457,0): 101, 75, 76, (284,458,0): 101, 75, 76, (284,459,0): 103, 77, 78, (284,460,0): 106, 80, 83, (284,461,0): 107, 81, 84, (284,462,0): 106, 80, 83, (284,463,0): 104, 78, 81, (284,464,0): 97, 70, 77, (284,465,0): 95, 70, 76, (284,466,0): 93, 68, 74, (284,467,0): 88, 65, 71, (284,468,0): 86, 63, 69, (284,469,0): 85, 65, 67, (284,470,0): 84, 64, 66, (284,471,0): 84, 66, 66, (284,472,0): 81, 63, 63, (284,473,0): 80, 64, 64, (284,474,0): 82, 66, 66, (284,475,0): 85, 70, 67, (284,476,0): 88, 74, 71, (284,477,0): 92, 79, 73, (284,478,0): 95, 81, 78, (284,479,0): 97, 83, 80, (284,480,0): 98, 84, 84, (284,481,0): 99, 85, 85, (284,482,0): 97, 85, 87, (284,483,0): 96, 84, 88, (284,484,0): 93, 82, 88, (284,485,0): 96, 85, 91, (284,486,0): 100, 90, 98, (284,487,0): 102, 95, 102, (284,488,0): 105, 99, 109, (284,489,0): 109, 103, 113, (284,490,0): 113, 110, 121, (284,491,0): 116, 112, 126, (284,492,0): 115, 113, 127, (284,493,0): 116, 114, 128, (284,494,0): 117, 116, 132, (284,495,0): 117, 119, 132, (284,496,0): 124, 126, 138, (284,497,0): 123, 127, 136, (284,498,0): 124, 129, 135, (284,499,0): 125, 130, 134, (284,500,0): 126, 135, 134, (284,501,0): 130, 139, 136, (284,502,0): 134, 143, 140, (284,503,0): 135, 146, 142, (284,504,0): 135, 145, 144, (284,505,0): 136, 146, 147, (284,506,0): 136, 147, 153, (284,507,0): 135, 145, 155, (284,508,0): 132, 141, 158, (284,509,0): 132, 140, 159, (284,510,0): 133, 144, 166, (284,511,0): 133, 147, 173, (284,512,0): 135, 159, 185, (284,513,0): 137, 164, 191, (284,514,0): 141, 168, 195, (284,515,0): 145, 173, 197, (284,516,0): 147, 175, 199, (284,517,0): 151, 179, 203, (284,518,0): 156, 184, 208, (284,519,0): 160, 188, 212, (284,520,0): 166, 194, 218, (284,521,0): 164, 192, 214, (284,522,0): 159, 190, 211, (284,523,0): 156, 187, 208, (284,524,0): 155, 186, 207, (284,525,0): 155, 186, 206, (284,526,0): 157, 188, 208, (284,527,0): 158, 189, 209, (284,528,0): 156, 187, 207, (284,529,0): 154, 185, 205, (284,530,0): 152, 183, 203, (284,531,0): 149, 181, 202, (284,532,0): 146, 178, 199, (284,533,0): 143, 175, 198, (284,534,0): 141, 173, 196, (284,535,0): 141, 171, 195, (284,536,0): 144, 172, 194, (284,537,0): 141, 168, 189, (284,538,0): 140, 162, 185, (284,539,0): 140, 161, 180, (284,540,0): 144, 161, 179, (284,541,0): 145, 161, 177, (284,542,0): 146, 159, 175, (284,543,0): 144, 157, 173, (284,544,0): 140, 153, 170, (284,545,0): 140, 153, 170, (284,546,0): 142, 153, 171, (284,547,0): 141, 153, 169, (284,548,0): 141, 150, 165, (284,549,0): 138, 148, 160, (284,550,0): 136, 146, 158, (284,551,0): 134, 144, 156, (284,552,0): 139, 149, 161, (284,553,0): 139, 151, 163, (284,554,0): 142, 154, 168, (284,555,0): 141, 157, 170, (284,556,0): 141, 159, 173, (284,557,0): 140, 159, 174, (284,558,0): 137, 158, 175, (284,559,0): 137, 158, 175, (284,560,0): 132, 153, 170, (284,561,0): 134, 156, 170, (284,562,0): 138, 159, 176, (284,563,0): 141, 163, 177, (284,564,0): 145, 164, 181, (284,565,0): 142, 164, 178, (284,566,0): 140, 161, 178, (284,567,0): 138, 160, 174, (284,568,0): 141, 160, 177, (284,569,0): 137, 156, 171, (284,570,0): 132, 151, 168, (284,571,0): 131, 150, 165, (284,572,0): 131, 150, 167, (284,573,0): 129, 148, 163, (284,574,0): 126, 143, 161, (284,575,0): 123, 139, 155, (284,576,0): 121, 130, 147, (284,577,0): 119, 124, 143, (284,578,0): 117, 120, 139, (284,579,0): 118, 119, 137, (284,580,0): 121, 120, 136, (284,581,0): 117, 115, 129, (284,582,0): 108, 104, 119, (284,583,0): 101, 95, 109, (284,584,0): 84, 76, 89, (284,585,0): 80, 68, 80, (284,586,0): 72, 59, 69, (284,587,0): 68, 52, 62, (284,588,0): 69, 49, 58, (284,589,0): 69, 50, 56, (284,590,0): 69, 48, 55, (284,591,0): 68, 47, 54, (284,592,0): 70, 50, 59, (284,593,0): 71, 54, 64, (284,594,0): 75, 58, 68, (284,595,0): 77, 61, 71, (284,596,0): 77, 64, 73, (284,597,0): 75, 64, 72, (284,598,0): 71, 61, 69, (284,599,0): 68, 58, 66, (285,0,0): 62, 51, 59, (285,1,0): 61, 50, 58, (285,2,0): 60, 49, 57, (285,3,0): 58, 47, 55, (285,4,0): 58, 47, 55, (285,5,0): 58, 47, 55, (285,6,0): 60, 47, 56, (285,7,0): 60, 47, 56, (285,8,0): 62, 46, 56, (285,9,0): 62, 46, 56, (285,10,0): 63, 46, 56, (285,11,0): 64, 47, 57, (285,12,0): 64, 47, 57, (285,13,0): 65, 48, 58, (285,14,0): 65, 48, 58, (285,15,0): 68, 47, 54, (285,16,0): 77, 48, 52, (285,17,0): 82, 47, 51, (285,18,0): 84, 49, 53, (285,19,0): 87, 51, 55, (285,20,0): 88, 52, 56, (285,21,0): 88, 52, 56, (285,22,0): 90, 50, 58, (285,23,0): 88, 51, 58, (285,24,0): 86, 49, 56, (285,25,0): 85, 50, 56, (285,26,0): 83, 51, 56, (285,27,0): 81, 52, 56, (285,28,0): 79, 52, 57, (285,29,0): 78, 53, 57, (285,30,0): 78, 53, 57, (285,31,0): 78, 53, 57, (285,32,0): 81, 51, 59, (285,33,0): 82, 51, 59, (285,34,0): 82, 51, 57, (285,35,0): 82, 51, 57, (285,36,0): 82, 51, 57, (285,37,0): 82, 51, 57, (285,38,0): 82, 51, 56, (285,39,0): 82, 51, 56, (285,40,0): 83, 53, 55, (285,41,0): 83, 53, 55, (285,42,0): 84, 54, 56, (285,43,0): 85, 55, 57, (285,44,0): 86, 56, 56, (285,45,0): 87, 57, 57, (285,46,0): 88, 58, 58, (285,47,0): 88, 58, 56, (285,48,0): 90, 59, 56, (285,49,0): 92, 61, 56, (285,50,0): 94, 64, 56, (285,51,0): 95, 65, 55, (285,52,0): 97, 65, 54, (285,53,0): 99, 67, 54, (285,54,0): 103, 72, 54, (285,55,0): 107, 76, 55, (285,56,0): 113, 81, 58, (285,57,0): 114, 83, 55, (285,58,0): 118, 84, 56, (285,59,0): 121, 88, 55, (285,60,0): 124, 91, 56, (285,61,0): 127, 95, 57, (285,62,0): 131, 97, 59, (285,63,0): 132, 99, 58, (285,64,0): 138, 103, 63, (285,65,0): 138, 103, 63, (285,66,0): 138, 103, 63, (285,67,0): 138, 103, 63, (285,68,0): 139, 102, 60, (285,69,0): 139, 102, 60, (285,70,0): 139, 102, 60, (285,71,0): 139, 102, 58, (285,72,0): 141, 102, 59, (285,73,0): 141, 103, 58, (285,74,0): 143, 102, 58, (285,75,0): 143, 102, 58, (285,76,0): 142, 101, 57, (285,77,0): 142, 101, 57, (285,78,0): 143, 100, 55, (285,79,0): 142, 101, 55, (285,80,0): 143, 101, 59, (285,81,0): 142, 103, 60, (285,82,0): 143, 104, 61, (285,83,0): 145, 106, 63, (285,84,0): 146, 107, 64, (285,85,0): 146, 107, 64, (285,86,0): 146, 107, 64, (285,87,0): 146, 107, 64, (285,88,0): 145, 106, 63, (285,89,0): 145, 106, 63, (285,90,0): 145, 106, 63, (285,91,0): 145, 106, 63, (285,92,0): 144, 105, 62, (285,93,0): 142, 103, 60, (285,94,0): 141, 102, 59, (285,95,0): 138, 101, 57, (285,96,0): 135, 100, 58, (285,97,0): 134, 101, 60, (285,98,0): 133, 100, 59, (285,99,0): 133, 100, 59, (285,100,0): 134, 100, 62, (285,101,0): 135, 101, 63, (285,102,0): 136, 102, 64, (285,103,0): 136, 102, 64, (285,104,0): 137, 103, 66, (285,105,0): 136, 102, 65, (285,106,0): 134, 100, 65, (285,107,0): 132, 98, 63, (285,108,0): 131, 97, 62, (285,109,0): 131, 97, 62, (285,110,0): 131, 96, 64, (285,111,0): 131, 96, 64, (285,112,0): 129, 93, 61, (285,113,0): 129, 93, 61, (285,114,0): 128, 92, 58, (285,115,0): 127, 91, 57, (285,116,0): 126, 90, 56, (285,117,0): 125, 89, 53, (285,118,0): 124, 88, 52, (285,119,0): 124, 88, 52, (285,120,0): 125, 90, 52, (285,121,0): 126, 91, 53, (285,122,0): 128, 93, 55, (285,123,0): 130, 95, 55, (285,124,0): 131, 96, 56, (285,125,0): 131, 96, 56, (285,126,0): 130, 95, 55, (285,127,0): 130, 95, 55, (285,128,0): 130, 95, 55, (285,129,0): 131, 96, 56, (285,130,0): 132, 97, 57, (285,131,0): 132, 97, 57, (285,132,0): 132, 97, 55, (285,133,0): 133, 98, 56, (285,134,0): 137, 102, 60, (285,135,0): 140, 106, 61, (285,136,0): 138, 104, 59, (285,137,0): 139, 105, 60, (285,138,0): 141, 107, 61, (285,139,0): 143, 109, 63, (285,140,0): 145, 111, 65, (285,141,0): 148, 114, 68, (285,142,0): 149, 115, 67, (285,143,0): 150, 116, 68, (285,144,0): 150, 117, 66, (285,145,0): 148, 115, 64, (285,146,0): 146, 113, 62, (285,147,0): 143, 110, 59, (285,148,0): 141, 108, 57, (285,149,0): 140, 107, 56, (285,150,0): 140, 107, 56, (285,151,0): 140, 107, 56, (285,152,0): 134, 101, 50, (285,153,0): 134, 101, 50, (285,154,0): 134, 101, 50, (285,155,0): 133, 100, 49, (285,156,0): 134, 101, 50, (285,157,0): 139, 106, 55, (285,158,0): 148, 115, 64, (285,159,0): 156, 121, 67, (285,160,0): 168, 132, 74, (285,161,0): 176, 138, 76, (285,162,0): 184, 146, 83, (285,163,0): 190, 152, 87, (285,164,0): 191, 156, 88, (285,165,0): 193, 159, 87, (285,166,0): 195, 161, 89, (285,167,0): 197, 163, 89, (285,168,0): 196, 163, 86, (285,169,0): 196, 163, 86, (285,170,0): 194, 162, 85, (285,171,0): 193, 161, 84, (285,172,0): 191, 159, 84, (285,173,0): 188, 156, 81, (285,174,0): 185, 153, 80, (285,175,0): 181, 151, 79, (285,176,0): 173, 143, 73, (285,177,0): 170, 141, 73, (285,178,0): 167, 138, 70, (285,179,0): 162, 135, 66, (285,180,0): 160, 133, 66, (285,181,0): 163, 138, 71, (285,182,0): 171, 146, 79, (285,183,0): 177, 154, 84, (285,184,0): 177, 157, 84, (285,185,0): 180, 163, 85, (285,186,0): 186, 169, 87, (285,187,0): 192, 177, 92, (285,188,0): 200, 186, 97, (285,189,0): 206, 196, 101, (285,190,0): 215, 205, 108, (285,191,0): 221, 212, 111, (285,192,0): 231, 219, 119, (285,193,0): 235, 223, 121, (285,194,0): 240, 229, 124, (285,195,0): 240, 232, 125, (285,196,0): 241, 233, 124, (285,197,0): 243, 237, 123, (285,198,0): 250, 244, 130, (285,199,0): 254, 251, 134, (285,200,0): 255, 253, 134, (285,201,0): 255, 255, 135, (285,202,0): 255, 255, 136, (285,203,0): 255, 255, 137, (285,204,0): 254, 255, 138, (285,205,0): 255, 255, 139, (285,206,0): 255, 255, 141, (285,207,0): 255, 255, 145, (285,208,0): 255, 247, 142, (285,209,0): 255, 246, 144, (285,210,0): 255, 246, 146, (285,211,0): 255, 247, 144, (285,212,0): 255, 247, 146, (285,213,0): 255, 248, 144, (285,214,0): 255, 247, 146, (285,215,0): 253, 248, 144, (285,216,0): 252, 249, 146, (285,217,0): 253, 250, 145, (285,218,0): 254, 252, 149, (285,219,0): 253, 255, 148, (285,220,0): 254, 255, 151, (285,221,0): 253, 255, 149, (285,222,0): 252, 255, 150, (285,223,0): 252, 255, 150, (285,224,0): 253, 254, 150, (285,225,0): 253, 254, 150, (285,226,0): 253, 254, 150, (285,227,0): 253, 254, 150, (285,228,0): 253, 254, 150, (285,229,0): 253, 254, 150, (285,230,0): 253, 254, 150, (285,231,0): 253, 254, 150, (285,232,0): 254, 255, 151, (285,233,0): 254, 255, 151, (285,234,0): 254, 255, 151, (285,235,0): 254, 255, 151, (285,236,0): 254, 255, 151, (285,237,0): 254, 255, 151, (285,238,0): 254, 255, 151, (285,239,0): 254, 255, 153, (285,240,0): 255, 255, 157, (285,241,0): 255, 255, 157, (285,242,0): 255, 255, 157, (285,243,0): 255, 255, 157, (285,244,0): 255, 255, 157, (285,245,0): 255, 255, 157, (285,246,0): 254, 255, 157, (285,247,0): 254, 255, 157, (285,248,0): 251, 253, 154, (285,249,0): 254, 255, 157, (285,250,0): 255, 255, 158, (285,251,0): 252, 252, 154, (285,252,0): 241, 241, 143, (285,253,0): 230, 230, 132, (285,254,0): 224, 221, 124, (285,255,0): 218, 218, 122, (285,256,0): 217, 218, 125, (285,257,0): 216, 216, 126, (285,258,0): 217, 218, 124, (285,259,0): 224, 226, 127, (285,260,0): 234, 237, 134, (285,261,0): 243, 246, 139, (285,262,0): 249, 253, 142, (285,263,0): 250, 255, 145, (285,264,0): 248, 255, 145, (285,265,0): 244, 253, 144, (285,266,0): 235, 248, 143, (285,267,0): 227, 241, 143, (285,268,0): 219, 236, 144, (285,269,0): 212, 231, 142, (285,270,0): 207, 226, 144, (285,271,0): 203, 225, 143, (285,272,0): 205, 227, 145, (285,273,0): 205, 227, 145, (285,274,0): 206, 225, 146, (285,275,0): 208, 222, 145, (285,276,0): 207, 219, 143, (285,277,0): 206, 216, 143, (285,278,0): 206, 214, 141, (285,279,0): 205, 212, 142, (285,280,0): 190, 200, 131, (285,281,0): 179, 190, 121, (285,282,0): 169, 184, 115, (285,283,0): 171, 191, 120, (285,284,0): 179, 205, 132, (285,285,0): 188, 218, 146, (285,286,0): 197, 231, 157, (285,287,0): 203, 239, 167, (285,288,0): 202, 234, 167, (285,289,0): 192, 222, 158, (285,290,0): 175, 200, 142, (285,291,0): 153, 176, 120, (285,292,0): 136, 156, 103, (285,293,0): 127, 143, 94, (285,294,0): 127, 140, 94, (285,295,0): 128, 141, 97, (285,296,0): 136, 151, 108, (285,297,0): 141, 158, 114, (285,298,0): 146, 168, 122, (285,299,0): 148, 174, 126, (285,300,0): 149, 181, 131, (285,301,0): 153, 190, 136, (285,302,0): 162, 201, 146, (285,303,0): 169, 210, 154, (285,304,0): 171, 210, 155, (285,305,0): 174, 211, 157, (285,306,0): 177, 212, 158, (285,307,0): 175, 210, 156, (285,308,0): 172, 207, 151, (285,309,0): 170, 208, 151, (285,310,0): 174, 213, 158, (285,311,0): 177, 220, 166, (285,312,0): 192, 241, 186, (285,313,0): 199, 249, 196, (285,314,0): 200, 252, 203, (285,315,0): 193, 245, 199, (285,316,0): 184, 231, 189, (285,317,0): 178, 220, 184, (285,318,0): 173, 210, 177, (285,319,0): 169, 202, 173, (285,320,0): 162, 194, 170, (285,321,0): 160, 192, 168, (285,322,0): 155, 187, 164, (285,323,0): 149, 181, 160, (285,324,0): 145, 174, 154, (285,325,0): 139, 168, 150, (285,326,0): 137, 161, 145, (285,327,0): 135, 159, 145, (285,328,0): 136, 158, 146, (285,329,0): 138, 160, 148, (285,330,0): 140, 161, 152, (285,331,0): 143, 164, 155, (285,332,0): 142, 163, 156, (285,333,0): 134, 155, 148, (285,334,0): 123, 144, 139, (285,335,0): 115, 134, 130, (285,336,0): 110, 122, 122, (285,337,0): 107, 117, 118, (285,338,0): 104, 114, 115, (285,339,0): 102, 112, 113, (285,340,0): 103, 113, 114, (285,341,0): 103, 113, 114, (285,342,0): 102, 110, 112, (285,343,0): 100, 108, 110, (285,344,0): 98, 106, 108, (285,345,0): 95, 103, 105, (285,346,0): 94, 99, 102, (285,347,0): 92, 97, 100, (285,348,0): 90, 95, 98, (285,349,0): 87, 92, 95, (285,350,0): 81, 86, 89, (285,351,0): 77, 83, 83, (285,352,0): 73, 82, 81, (285,353,0): 75, 84, 81, (285,354,0): 78, 84, 80, (285,355,0): 80, 86, 82, (285,356,0): 83, 88, 84, (285,357,0): 83, 88, 84, (285,358,0): 85, 87, 84, (285,359,0): 85, 87, 84, (285,360,0): 90, 92, 91, (285,361,0): 98, 102, 103, (285,362,0): 110, 114, 117, (285,363,0): 115, 122, 128, (285,364,0): 116, 123, 131, (285,365,0): 113, 122, 131, (285,366,0): 112, 122, 134, (285,367,0): 112, 122, 134, (285,368,0): 115, 123, 136, (285,369,0): 115, 123, 136, (285,370,0): 114, 122, 135, (285,371,0): 113, 121, 134, (285,372,0): 115, 121, 137, (285,373,0): 116, 122, 138, (285,374,0): 117, 123, 139, (285,375,0): 118, 124, 140, (285,376,0): 124, 127, 146, (285,377,0): 125, 128, 147, (285,378,0): 127, 128, 149, (285,379,0): 126, 127, 148, (285,380,0): 124, 125, 146, (285,381,0): 120, 121, 142, (285,382,0): 119, 117, 141, (285,383,0): 117, 113, 138, (285,384,0): 117, 108, 135, (285,385,0): 117, 108, 135, (285,386,0): 117, 109, 133, (285,387,0): 116, 108, 132, (285,388,0): 116, 108, 132, (285,389,0): 113, 108, 131, (285,390,0): 113, 108, 130, (285,391,0): 113, 108, 130, (285,392,0): 111, 106, 126, (285,393,0): 110, 105, 125, (285,394,0): 109, 104, 124, (285,395,0): 105, 102, 121, (285,396,0): 102, 99, 116, (285,397,0): 98, 95, 112, (285,398,0): 94, 91, 108, (285,399,0): 92, 90, 104, (285,400,0): 89, 87, 100, (285,401,0): 90, 90, 102, (285,402,0): 93, 92, 106, (285,403,0): 94, 96, 109, (285,404,0): 98, 100, 115, (285,405,0): 100, 103, 118, (285,406,0): 102, 105, 122, (285,407,0): 104, 105, 123, (285,408,0): 106, 105, 121, (285,409,0): 105, 104, 120, (285,410,0): 105, 101, 116, (285,411,0): 105, 99, 113, (285,412,0): 103, 95, 108, (285,413,0): 103, 93, 104, (285,414,0): 102, 90, 102, (285,415,0): 104, 88, 98, (285,416,0): 107, 86, 91, (285,417,0): 109, 84, 88, (285,418,0): 106, 81, 85, (285,419,0): 102, 75, 80, (285,420,0): 98, 69, 73, (285,421,0): 91, 60, 65, (285,422,0): 86, 54, 57, (285,423,0): 82, 50, 53, (285,424,0): 74, 42, 45, (285,425,0): 73, 43, 45, (285,426,0): 73, 43, 43, (285,427,0): 74, 46, 45, (285,428,0): 74, 49, 45, (285,429,0): 76, 52, 48, (285,430,0): 79, 55, 51, (285,431,0): 81, 57, 53, (285,432,0): 88, 60, 59, (285,433,0): 89, 59, 59, (285,434,0): 89, 59, 59, (285,435,0): 88, 58, 58, (285,436,0): 87, 57, 57, (285,437,0): 85, 55, 55, (285,438,0): 83, 53, 53, (285,439,0): 82, 52, 50, (285,440,0): 90, 60, 58, (285,441,0): 90, 60, 58, (285,442,0): 91, 61, 59, (285,443,0): 91, 63, 60, (285,444,0): 95, 65, 63, (285,445,0): 97, 69, 66, (285,446,0): 100, 70, 68, (285,447,0): 102, 72, 70, (285,448,0): 105, 74, 72, (285,449,0): 109, 78, 76, (285,450,0): 113, 83, 81, (285,451,0): 117, 87, 85, (285,452,0): 120, 90, 90, (285,453,0): 120, 90, 90, (285,454,0): 118, 88, 88, (285,455,0): 117, 87, 87, (285,456,0): 112, 82, 82, (285,457,0): 110, 82, 81, (285,458,0): 110, 80, 82, (285,459,0): 111, 82, 84, (285,460,0): 113, 84, 86, (285,461,0): 114, 85, 87, (285,462,0): 111, 82, 84, (285,463,0): 109, 80, 82, (285,464,0): 103, 74, 79, (285,465,0): 100, 73, 78, (285,466,0): 97, 70, 75, (285,467,0): 93, 68, 72, (285,468,0): 91, 66, 70, (285,469,0): 87, 65, 67, (285,470,0): 87, 65, 67, (285,471,0): 85, 65, 64, (285,472,0): 85, 65, 64, (285,473,0): 83, 65, 63, (285,474,0): 83, 65, 63, (285,475,0): 83, 68, 63, (285,476,0): 86, 71, 66, (285,477,0): 89, 76, 70, (285,478,0): 93, 80, 74, (285,479,0): 95, 81, 78, (285,480,0): 94, 80, 79, (285,481,0): 96, 82, 82, (285,482,0): 96, 84, 86, (285,483,0): 96, 84, 86, (285,484,0): 95, 83, 87, (285,485,0): 96, 85, 91, (285,486,0): 98, 88, 96, (285,487,0): 102, 92, 100, (285,488,0): 105, 97, 108, (285,489,0): 108, 102, 112, (285,490,0): 110, 106, 120, (285,491,0): 113, 109, 123, (285,492,0): 113, 111, 125, (285,493,0): 115, 113, 127, (285,494,0): 117, 116, 132, (285,495,0): 120, 119, 133, (285,496,0): 122, 124, 136, (285,497,0): 121, 126, 132, (285,498,0): 121, 126, 130, (285,499,0): 123, 128, 131, (285,500,0): 124, 133, 132, (285,501,0): 128, 137, 132, (285,502,0): 133, 142, 137, (285,503,0): 135, 144, 139, (285,504,0): 137, 148, 144, (285,505,0): 139, 149, 150, (285,506,0): 139, 150, 156, (285,507,0): 138, 148, 158, (285,508,0): 136, 145, 162, (285,509,0): 136, 144, 165, (285,510,0): 136, 147, 169, (285,511,0): 136, 150, 176, (285,512,0): 138, 162, 190, (285,513,0): 139, 166, 195, (285,514,0): 142, 169, 198, (285,515,0): 143, 170, 199, (285,516,0): 144, 171, 200, (285,517,0): 144, 174, 202, (285,518,0): 149, 179, 207, (285,519,0): 153, 183, 211, (285,520,0): 164, 195, 223, (285,521,0): 164, 195, 223, (285,522,0): 162, 193, 221, (285,523,0): 159, 193, 220, (285,524,0): 158, 192, 217, (285,525,0): 157, 191, 216, (285,526,0): 158, 192, 217, (285,527,0): 158, 192, 217, (285,528,0): 158, 190, 213, (285,529,0): 157, 189, 212, (285,530,0): 155, 187, 210, (285,531,0): 152, 184, 207, (285,532,0): 148, 180, 203, (285,533,0): 145, 177, 200, (285,534,0): 143, 175, 198, (285,535,0): 142, 174, 197, (285,536,0): 143, 171, 193, (285,537,0): 141, 168, 189, (285,538,0): 138, 163, 183, (285,539,0): 140, 161, 180, (285,540,0): 144, 163, 180, (285,541,0): 145, 163, 177, (285,542,0): 147, 161, 174, (285,543,0): 145, 158, 174, (285,544,0): 142, 155, 172, (285,545,0): 142, 155, 174, (285,546,0): 144, 155, 173, (285,547,0): 143, 155, 171, (285,548,0): 143, 152, 169, (285,549,0): 140, 149, 164, (285,550,0): 136, 146, 158, (285,551,0): 134, 144, 156, (285,552,0): 139, 149, 161, (285,553,0): 139, 151, 163, (285,554,0): 139, 153, 166, (285,555,0): 139, 155, 168, (285,556,0): 140, 157, 173, (285,557,0): 140, 159, 174, (285,558,0): 138, 159, 176, (285,559,0): 138, 159, 176, (285,560,0): 135, 158, 176, (285,561,0): 137, 160, 178, (285,562,0): 139, 162, 180, (285,563,0): 143, 164, 183, (285,564,0): 145, 166, 185, (285,565,0): 145, 166, 185, (285,566,0): 144, 165, 184, (285,567,0): 144, 165, 184, (285,568,0): 145, 163, 183, (285,569,0): 142, 160, 180, (285,570,0): 138, 156, 176, (285,571,0): 134, 152, 172, (285,572,0): 132, 149, 169, (285,573,0): 128, 145, 165, (285,574,0): 124, 141, 161, (285,575,0): 124, 137, 156, (285,576,0): 123, 128, 147, (285,577,0): 119, 121, 136, (285,578,0): 111, 113, 128, (285,579,0): 111, 110, 126, (285,580,0): 112, 110, 124, (285,581,0): 109, 105, 119, (285,582,0): 101, 95, 109, (285,583,0): 93, 85, 98, (285,584,0): 83, 73, 84, (285,585,0): 78, 66, 78, (285,586,0): 71, 58, 68, (285,587,0): 67, 51, 61, (285,588,0): 66, 49, 59, (285,589,0): 67, 47, 56, (285,590,0): 67, 46, 55, (285,591,0): 65, 44, 53, (285,592,0): 69, 49, 58, (285,593,0): 70, 50, 61, (285,594,0): 69, 52, 62, (285,595,0): 72, 56, 66, (285,596,0): 73, 60, 69, (285,597,0): 72, 61, 69, (285,598,0): 69, 59, 67, (285,599,0): 66, 56, 64, (286,0,0): 62, 51, 59, (286,1,0): 61, 50, 58, (286,2,0): 60, 49, 57, (286,3,0): 59, 48, 56, (286,4,0): 58, 47, 55, (286,5,0): 58, 47, 55, (286,6,0): 60, 47, 56, (286,7,0): 61, 48, 57, (286,8,0): 62, 46, 56, (286,9,0): 63, 47, 57, (286,10,0): 64, 47, 57, (286,11,0): 65, 48, 58, (286,12,0): 65, 48, 58, (286,13,0): 66, 49, 59, (286,14,0): 66, 49, 59, (286,15,0): 69, 48, 55, (286,16,0): 78, 47, 52, (286,17,0): 83, 47, 49, (286,18,0): 85, 49, 51, (286,19,0): 89, 50, 53, (286,20,0): 90, 51, 56, (286,21,0): 90, 51, 56, (286,22,0): 91, 50, 56, (286,23,0): 89, 50, 55, (286,24,0): 87, 50, 57, (286,25,0): 86, 51, 57, (286,26,0): 84, 52, 57, (286,27,0): 83, 52, 57, (286,28,0): 82, 53, 58, (286,29,0): 79, 54, 58, (286,30,0): 79, 54, 58, (286,31,0): 80, 53, 58, (286,32,0): 82, 52, 60, (286,33,0): 83, 52, 60, (286,34,0): 83, 52, 58, (286,35,0): 83, 52, 58, (286,36,0): 83, 52, 58, (286,37,0): 83, 52, 58, (286,38,0): 83, 52, 57, (286,39,0): 83, 52, 57, (286,40,0): 83, 53, 55, (286,41,0): 83, 53, 55, (286,42,0): 84, 54, 56, (286,43,0): 85, 55, 57, (286,44,0): 86, 56, 56, (286,45,0): 87, 57, 57, (286,46,0): 88, 58, 58, (286,47,0): 88, 58, 56, (286,48,0): 91, 60, 57, (286,49,0): 95, 62, 57, (286,50,0): 97, 64, 57, (286,51,0): 98, 65, 56, (286,52,0): 97, 65, 54, (286,53,0): 99, 67, 52, (286,54,0): 105, 72, 55, (286,55,0): 108, 76, 55, (286,56,0): 115, 81, 56, (286,57,0): 117, 83, 55, (286,58,0): 120, 85, 55, (286,59,0): 123, 88, 56, (286,60,0): 127, 93, 56, (286,61,0): 130, 96, 58, (286,62,0): 132, 98, 60, (286,63,0): 134, 101, 60, (286,64,0): 138, 103, 63, (286,65,0): 138, 103, 61, (286,66,0): 140, 103, 61, (286,67,0): 140, 103, 61, (286,68,0): 141, 104, 62, (286,69,0): 141, 104, 62, (286,70,0): 142, 103, 60, (286,71,0): 142, 103, 60, (286,72,0): 143, 101, 59, (286,73,0): 144, 103, 59, (286,74,0): 144, 103, 59, (286,75,0): 144, 103, 57, (286,76,0): 145, 102, 57, (286,77,0): 146, 103, 58, (286,78,0): 146, 103, 58, (286,79,0): 145, 104, 58, (286,80,0): 144, 102, 60, (286,81,0): 143, 104, 61, (286,82,0): 146, 107, 64, (286,83,0): 148, 109, 66, (286,84,0): 149, 110, 67, (286,85,0): 149, 110, 67, (286,86,0): 148, 109, 66, (286,87,0): 147, 108, 65, (286,88,0): 145, 106, 63, (286,89,0): 145, 106, 63, (286,90,0): 145, 106, 63, (286,91,0): 145, 106, 63, (286,92,0): 143, 104, 61, (286,93,0): 141, 102, 59, (286,94,0): 139, 100, 57, (286,95,0): 137, 100, 56, (286,96,0): 133, 100, 57, (286,97,0): 133, 102, 58, (286,98,0): 134, 103, 59, (286,99,0): 135, 104, 60, (286,100,0): 136, 104, 63, (286,101,0): 136, 104, 63, (286,102,0): 136, 104, 65, (286,103,0): 135, 103, 64, (286,104,0): 137, 105, 66, (286,105,0): 136, 104, 65, (286,106,0): 134, 102, 64, (286,107,0): 132, 100, 62, (286,108,0): 131, 98, 63, (286,109,0): 131, 98, 63, (286,110,0): 131, 98, 63, (286,111,0): 133, 99, 64, (286,112,0): 131, 95, 61, (286,113,0): 130, 94, 60, (286,114,0): 129, 93, 59, (286,115,0): 128, 92, 58, (286,116,0): 127, 91, 55, (286,117,0): 126, 90, 54, (286,118,0): 125, 89, 53, (286,119,0): 124, 89, 51, (286,120,0): 127, 92, 54, (286,121,0): 128, 93, 55, (286,122,0): 130, 95, 55, (286,123,0): 132, 97, 57, (286,124,0): 133, 98, 58, (286,125,0): 133, 98, 56, (286,126,0): 133, 98, 56, (286,127,0): 133, 98, 56, (286,128,0): 134, 99, 59, (286,129,0): 136, 101, 61, (286,130,0): 137, 102, 60, (286,131,0): 136, 101, 59, (286,132,0): 134, 99, 57, (286,133,0): 135, 100, 58, (286,134,0): 138, 104, 59, (286,135,0): 142, 108, 63, (286,136,0): 139, 105, 60, (286,137,0): 140, 106, 60, (286,138,0): 141, 107, 61, (286,139,0): 144, 110, 64, (286,140,0): 146, 112, 64, (286,141,0): 148, 114, 66, (286,142,0): 149, 115, 67, (286,143,0): 150, 116, 68, (286,144,0): 149, 116, 65, (286,145,0): 148, 115, 62, (286,146,0): 145, 112, 59, (286,147,0): 143, 110, 57, (286,148,0): 142, 109, 56, (286,149,0): 142, 109, 56, (286,150,0): 142, 109, 56, (286,151,0): 143, 110, 57, (286,152,0): 140, 107, 54, (286,153,0): 140, 107, 54, (286,154,0): 139, 106, 53, (286,155,0): 138, 105, 52, (286,156,0): 139, 106, 53, (286,157,0): 145, 112, 59, (286,158,0): 153, 120, 67, (286,159,0): 162, 127, 73, (286,160,0): 172, 136, 78, (286,161,0): 179, 141, 79, (286,162,0): 185, 147, 84, (286,163,0): 189, 151, 86, (286,164,0): 191, 154, 86, (286,165,0): 194, 157, 86, (286,166,0): 195, 161, 89, (286,167,0): 198, 164, 90, (286,168,0): 198, 166, 89, (286,169,0): 197, 165, 88, (286,170,0): 196, 164, 89, (286,171,0): 194, 162, 87, (286,172,0): 190, 158, 85, (286,173,0): 186, 154, 81, (286,174,0): 181, 151, 79, (286,175,0): 179, 149, 77, (286,176,0): 166, 137, 69, (286,177,0): 164, 137, 70, (286,178,0): 163, 136, 69, (286,179,0): 159, 134, 67, (286,180,0): 160, 136, 66, (286,181,0): 164, 141, 71, (286,182,0): 173, 150, 80, (286,183,0): 178, 158, 85, (286,184,0): 181, 164, 86, (286,185,0): 186, 171, 90, (286,186,0): 194, 179, 94, (286,187,0): 199, 188, 99, (286,188,0): 206, 195, 103, (286,189,0): 213, 204, 109, (286,190,0): 223, 215, 117, (286,191,0): 229, 221, 120, (286,192,0): 232, 223, 122, (286,193,0): 236, 227, 124, (286,194,0): 240, 231, 126, (286,195,0): 239, 232, 125, (286,196,0): 237, 231, 121, (286,197,0): 239, 233, 119, (286,198,0): 246, 240, 126, (286,199,0): 251, 248, 131, (286,200,0): 254, 252, 133, (286,201,0): 255, 255, 135, (286,202,0): 255, 255, 138, (286,203,0): 255, 255, 139, (286,204,0): 255, 255, 142, (286,205,0): 255, 255, 141, (286,206,0): 253, 255, 141, (286,207,0): 255, 253, 142, (286,208,0): 255, 244, 139, (286,209,0): 255, 243, 139, (286,210,0): 255, 244, 142, (286,211,0): 255, 245, 141, (286,212,0): 255, 246, 144, (286,213,0): 255, 249, 144, (286,214,0): 255, 250, 146, (286,215,0): 255, 252, 145, (286,216,0): 253, 250, 145, (286,217,0): 254, 251, 144, (286,218,0): 255, 254, 148, (286,219,0): 254, 255, 147, (286,220,0): 254, 255, 149, (286,221,0): 253, 255, 147, (286,222,0): 252, 255, 148, (286,223,0): 251, 254, 147, (286,224,0): 253, 254, 150, (286,225,0): 253, 254, 152, (286,226,0): 253, 254, 152, (286,227,0): 253, 254, 152, (286,228,0): 253, 254, 152, (286,229,0): 253, 254, 152, (286,230,0): 253, 254, 152, (286,231,0): 253, 254, 152, (286,232,0): 254, 255, 153, (286,233,0): 254, 255, 153, (286,234,0): 254, 255, 153, (286,235,0): 254, 255, 153, (286,236,0): 254, 255, 153, (286,237,0): 254, 255, 153, (286,238,0): 254, 255, 153, (286,239,0): 254, 255, 153, (286,240,0): 255, 255, 158, (286,241,0): 255, 255, 160, (286,242,0): 255, 255, 160, (286,243,0): 255, 255, 160, (286,244,0): 255, 255, 160, (286,245,0): 255, 255, 160, (286,246,0): 255, 255, 160, (286,247,0): 255, 255, 160, (286,248,0): 255, 255, 162, (286,249,0): 254, 255, 161, (286,250,0): 255, 255, 160, (286,251,0): 254, 255, 159, (286,252,0): 251, 253, 156, (286,253,0): 246, 248, 151, (286,254,0): 240, 240, 144, (286,255,0): 234, 235, 141, (286,256,0): 225, 228, 137, (286,257,0): 222, 225, 136, (286,258,0): 219, 223, 129, (286,259,0): 222, 226, 129, (286,260,0): 230, 235, 133, (286,261,0): 239, 245, 139, (286,262,0): 246, 252, 144, (286,263,0): 249, 255, 148, (286,264,0): 245, 254, 147, (286,265,0): 239, 250, 145, (286,266,0): 229, 244, 143, (286,267,0): 220, 235, 140, (286,268,0): 210, 229, 140, (286,269,0): 203, 222, 140, (286,270,0): 197, 218, 141, (286,271,0): 194, 216, 143, (286,272,0): 195, 217, 144, (286,273,0): 194, 214, 143, (286,274,0): 194, 211, 141, (286,275,0): 195, 208, 139, (286,276,0): 194, 205, 139, (286,277,0): 193, 202, 139, (286,278,0): 195, 201, 141, (286,279,0): 194, 199, 141, (286,280,0): 186, 194, 137, (286,281,0): 173, 182, 125, (286,282,0): 160, 173, 117, (286,283,0): 157, 174, 119, (286,284,0): 157, 181, 123, (286,285,0): 159, 188, 130, (286,286,0): 169, 203, 143, (286,287,0): 181, 215, 155, (286,288,0): 192, 223, 163, (286,289,0): 183, 213, 153, (286,290,0): 167, 192, 137, (286,291,0): 145, 168, 116, (286,292,0): 129, 147, 99, (286,293,0): 121, 137, 92, (286,294,0): 122, 135, 92, (286,295,0): 125, 138, 95, (286,296,0): 133, 148, 107, (286,297,0): 139, 156, 114, (286,298,0): 145, 166, 123, (286,299,0): 148, 174, 129, (286,300,0): 146, 178, 131, (286,301,0): 148, 185, 134, (286,302,0): 155, 195, 143, (286,303,0): 162, 202, 149, (286,304,0): 169, 207, 156, (286,305,0): 173, 210, 159, (286,306,0): 175, 212, 160, (286,307,0): 173, 210, 158, (286,308,0): 170, 207, 153, (286,309,0): 171, 210, 155, (286,310,0): 177, 218, 162, (286,311,0): 181, 226, 169, (286,312,0): 197, 248, 191, (286,313,0): 200, 255, 197, (286,314,0): 200, 255, 200, (286,315,0): 193, 247, 195, (286,316,0): 188, 238, 189, (286,317,0): 186, 232, 186, (286,318,0): 180, 221, 179, (286,319,0): 174, 210, 174, (286,320,0): 167, 202, 172, (286,321,0): 165, 199, 172, (286,322,0): 162, 194, 170, (286,323,0): 156, 188, 164, (286,324,0): 152, 181, 159, (286,325,0): 146, 175, 155, (286,326,0): 145, 169, 153, (286,327,0): 142, 166, 152, (286,328,0): 140, 164, 151, (286,329,0): 141, 165, 152, (286,330,0): 143, 166, 156, (286,331,0): 145, 168, 158, (286,332,0): 144, 167, 159, (286,333,0): 136, 159, 153, (286,334,0): 125, 147, 144, (286,335,0): 118, 138, 136, (286,336,0): 111, 123, 123, (286,337,0): 109, 117, 119, (286,338,0): 105, 113, 115, (286,339,0): 103, 111, 113, (286,340,0): 104, 112, 114, (286,341,0): 104, 112, 114, (286,342,0): 105, 110, 113, (286,343,0): 103, 108, 111, (286,344,0): 101, 106, 109, (286,345,0): 98, 103, 106, (286,346,0): 94, 99, 102, (286,347,0): 92, 97, 100, (286,348,0): 91, 96, 99, (286,349,0): 87, 92, 95, (286,350,0): 82, 87, 90, (286,351,0): 78, 84, 84, (286,352,0): 75, 84, 83, (286,353,0): 75, 86, 82, (286,354,0): 78, 87, 84, (286,355,0): 82, 88, 86, (286,356,0): 83, 88, 84, (286,357,0): 83, 88, 84, (286,358,0): 84, 86, 83, (286,359,0): 83, 85, 82, (286,360,0): 87, 89, 88, (286,361,0): 92, 96, 97, (286,362,0): 103, 107, 110, (286,363,0): 109, 116, 122, (286,364,0): 115, 122, 130, (286,365,0): 116, 125, 134, (286,366,0): 115, 125, 137, (286,367,0): 115, 125, 137, (286,368,0): 111, 119, 132, (286,369,0): 111, 119, 132, (286,370,0): 110, 118, 131, (286,371,0): 110, 118, 131, (286,372,0): 112, 118, 134, (286,373,0): 113, 119, 135, (286,374,0): 117, 120, 137, (286,375,0): 118, 121, 138, (286,376,0): 123, 126, 145, (286,377,0): 123, 126, 145, (286,378,0): 125, 126, 147, (286,379,0): 124, 125, 146, (286,380,0): 124, 122, 144, (286,381,0): 121, 119, 141, (286,382,0): 117, 115, 139, (286,383,0): 115, 111, 136, (286,384,0): 117, 108, 135, (286,385,0): 117, 107, 134, (286,386,0): 117, 107, 134, (286,387,0): 116, 106, 133, (286,388,0): 116, 106, 131, (286,389,0): 114, 106, 130, (286,390,0): 114, 106, 129, (286,391,0): 114, 106, 129, (286,392,0): 113, 105, 128, (286,393,0): 110, 105, 127, (286,394,0): 108, 103, 123, (286,395,0): 105, 100, 120, (286,396,0): 101, 97, 114, (286,397,0): 97, 93, 110, (286,398,0): 93, 89, 106, (286,399,0): 89, 87, 101, (286,400,0): 89, 87, 100, (286,401,0): 88, 88, 98, (286,402,0): 89, 89, 101, (286,403,0): 89, 91, 104, (286,404,0): 91, 93, 108, (286,405,0): 93, 95, 110, (286,406,0): 95, 96, 114, (286,407,0): 97, 98, 116, (286,408,0): 102, 101, 119, (286,409,0): 102, 101, 117, (286,410,0): 104, 100, 115, (286,411,0): 105, 99, 113, (286,412,0): 105, 97, 110, (286,413,0): 106, 96, 107, (286,414,0): 107, 95, 107, (286,415,0): 110, 94, 104, (286,416,0): 110, 87, 93, (286,417,0): 110, 83, 88, (286,418,0): 105, 78, 83, (286,419,0): 101, 72, 77, (286,420,0): 94, 65, 69, (286,421,0): 88, 57, 62, (286,422,0): 84, 52, 57, (286,423,0): 81, 49, 54, (286,424,0): 73, 43, 45, (286,425,0): 73, 43, 45, (286,426,0): 74, 44, 44, (286,427,0): 75, 47, 46, (286,428,0): 75, 49, 48, (286,429,0): 77, 53, 51, (286,430,0): 77, 56, 51, (286,431,0): 79, 58, 55, (286,432,0): 83, 57, 58, (286,433,0): 86, 57, 59, (286,434,0): 87, 58, 60, (286,435,0): 88, 59, 61, (286,436,0): 88, 59, 61, (286,437,0): 88, 60, 59, (286,438,0): 87, 57, 57, (286,439,0): 86, 56, 56, (286,440,0): 91, 61, 61, (286,441,0): 91, 61, 61, (286,442,0): 92, 62, 60, (286,443,0): 94, 64, 62, (286,444,0): 98, 67, 65, (286,445,0): 101, 71, 69, (286,446,0): 106, 75, 72, (286,447,0): 108, 77, 74, (286,448,0): 109, 78, 76, (286,449,0): 112, 81, 79, (286,450,0): 116, 85, 83, (286,451,0): 120, 89, 87, (286,452,0): 122, 91, 89, (286,453,0): 122, 91, 89, (286,454,0): 121, 90, 88, (286,455,0): 119, 88, 86, (286,456,0): 122, 91, 89, (286,457,0): 119, 89, 87, (286,458,0): 118, 86, 87, (286,459,0): 117, 87, 87, (286,460,0): 117, 87, 87, (286,461,0): 115, 85, 85, (286,462,0): 110, 80, 80, (286,463,0): 105, 76, 78, (286,464,0): 102, 73, 78, (286,465,0): 99, 72, 77, (286,466,0): 97, 70, 75, (286,467,0): 95, 69, 72, (286,468,0): 94, 68, 71, (286,469,0): 92, 67, 70, (286,470,0): 90, 68, 70, (286,471,0): 90, 70, 69, (286,472,0): 91, 71, 70, (286,473,0): 88, 70, 66, (286,474,0): 86, 68, 64, (286,475,0): 84, 69, 64, (286,476,0): 85, 70, 65, (286,477,0): 89, 74, 67, (286,478,0): 92, 79, 71, (286,479,0): 94, 81, 75, (286,480,0): 94, 80, 79, (286,481,0): 98, 84, 84, (286,482,0): 102, 87, 90, (286,483,0): 101, 89, 91, (286,484,0): 101, 89, 93, (286,485,0): 100, 89, 95, (286,486,0): 101, 91, 99, (286,487,0): 103, 93, 101, (286,488,0): 107, 99, 110, (286,489,0): 109, 103, 113, (286,490,0): 111, 107, 121, (286,491,0): 112, 108, 122, (286,492,0): 113, 111, 125, (286,493,0): 115, 112, 129, (286,494,0): 120, 117, 136, (286,495,0): 123, 122, 138, (286,496,0): 125, 127, 139, (286,497,0): 124, 129, 135, (286,498,0): 124, 129, 133, (286,499,0): 125, 131, 131, (286,500,0): 127, 136, 133, (286,501,0): 132, 141, 136, (286,502,0): 136, 145, 140, (286,503,0): 140, 149, 144, (286,504,0): 143, 154, 150, (286,505,0): 145, 155, 154, (286,506,0): 147, 158, 162, (286,507,0): 147, 157, 167, (286,508,0): 145, 154, 171, (286,509,0): 145, 153, 174, (286,510,0): 145, 155, 180, (286,511,0): 144, 158, 185, (286,512,0): 142, 165, 196, (286,513,0): 142, 169, 199, (286,514,0): 144, 171, 201, (286,515,0): 144, 171, 201, (286,516,0): 142, 171, 201, (286,517,0): 145, 174, 204, (286,518,0): 149, 178, 208, (286,519,0): 152, 183, 212, (286,520,0): 159, 192, 223, (286,521,0): 159, 194, 224, (286,522,0): 161, 196, 226, (286,523,0): 162, 197, 227, (286,524,0): 162, 199, 228, (286,525,0): 162, 199, 228, (286,526,0): 162, 199, 228, (286,527,0): 162, 197, 225, (286,528,0): 162, 196, 223, (286,529,0): 163, 195, 220, (286,530,0): 160, 192, 217, (286,531,0): 155, 189, 214, (286,532,0): 151, 185, 210, (286,533,0): 148, 182, 207, (286,534,0): 148, 180, 205, (286,535,0): 146, 178, 201, (286,536,0): 142, 170, 192, (286,537,0): 140, 167, 188, (286,538,0): 137, 162, 182, (286,539,0): 140, 161, 178, (286,540,0): 143, 162, 177, (286,541,0): 145, 163, 177, (286,542,0): 147, 161, 174, (286,543,0): 145, 159, 172, (286,544,0): 141, 157, 173, (286,545,0): 142, 157, 176, (286,546,0): 145, 158, 175, (286,547,0): 145, 157, 173, (286,548,0): 145, 154, 171, (286,549,0): 141, 150, 165, (286,550,0): 137, 147, 159, (286,551,0): 134, 144, 156, (286,552,0): 137, 149, 161, (286,553,0): 137, 149, 161, (286,554,0): 137, 151, 164, (286,555,0): 136, 152, 165, (286,556,0): 137, 154, 170, (286,557,0): 138, 157, 172, (286,558,0): 138, 159, 176, (286,559,0): 138, 161, 179, (286,560,0): 136, 161, 181, (286,561,0): 137, 162, 184, (286,562,0): 138, 163, 185, (286,563,0): 142, 164, 187, (286,564,0): 144, 166, 189, (286,565,0): 146, 168, 191, (286,566,0): 148, 168, 192, (286,567,0): 148, 168, 192, (286,568,0): 147, 165, 189, (286,569,0): 146, 164, 188, (286,570,0): 144, 160, 185, (286,571,0): 138, 154, 179, (286,572,0): 132, 146, 172, (286,573,0): 126, 140, 166, (286,574,0): 123, 137, 163, (286,575,0): 125, 136, 158, (286,576,0): 126, 129, 146, (286,577,0): 118, 117, 131, (286,578,0): 106, 105, 119, (286,579,0): 102, 100, 114, (286,580,0): 103, 99, 113, (286,581,0): 102, 96, 110, (286,582,0): 93, 87, 101, (286,583,0): 85, 77, 90, (286,584,0): 83, 73, 84, (286,585,0): 78, 66, 78, (286,586,0): 71, 58, 68, (286,587,0): 68, 52, 62, (286,588,0): 67, 50, 60, (286,589,0): 66, 49, 59, (286,590,0): 66, 46, 57, (286,591,0): 64, 44, 53, (286,592,0): 69, 48, 57, (286,593,0): 66, 46, 55, (286,594,0): 63, 46, 54, (286,595,0): 64, 49, 56, (286,596,0): 66, 53, 60, (286,597,0): 67, 56, 62, (286,598,0): 65, 56, 61, (286,599,0): 63, 54, 59, (287,0,0): 63, 52, 60, (287,1,0): 62, 51, 57, (287,2,0): 60, 49, 57, (287,3,0): 59, 48, 54, (287,4,0): 59, 46, 55, (287,5,0): 60, 47, 54, (287,6,0): 60, 47, 56, (287,7,0): 63, 48, 55, (287,8,0): 63, 47, 57, (287,9,0): 64, 47, 55, (287,10,0): 64, 47, 57, (287,11,0): 65, 48, 56, (287,12,0): 66, 49, 59, (287,13,0): 66, 49, 57, (287,14,0): 68, 48, 59, (287,15,0): 71, 48, 56, (287,16,0): 78, 46, 51, (287,17,0): 85, 46, 49, (287,18,0): 86, 47, 50, (287,19,0): 88, 49, 52, (287,20,0): 90, 49, 55, (287,21,0): 91, 50, 56, (287,22,0): 89, 50, 55, (287,23,0): 89, 50, 55, (287,24,0): 87, 50, 57, (287,25,0): 86, 51, 57, (287,26,0): 84, 52, 57, (287,27,0): 83, 52, 57, (287,28,0): 82, 53, 57, (287,29,0): 80, 54, 57, (287,30,0): 80, 53, 58, (287,31,0): 80, 53, 58, (287,32,0): 82, 52, 60, (287,33,0): 83, 52, 60, (287,34,0): 83, 52, 58, (287,35,0): 83, 52, 58, (287,36,0): 83, 52, 58, (287,37,0): 83, 52, 58, (287,38,0): 83, 52, 57, (287,39,0): 83, 53, 55, (287,40,0): 83, 53, 55, (287,41,0): 84, 54, 56, (287,42,0): 84, 54, 54, (287,43,0): 86, 54, 55, (287,44,0): 87, 55, 56, (287,45,0): 88, 57, 55, (287,46,0): 89, 58, 56, (287,47,0): 90, 59, 56, (287,48,0): 93, 60, 55, (287,49,0): 96, 63, 56, (287,50,0): 99, 65, 56, (287,51,0): 99, 65, 55, (287,52,0): 99, 65, 53, (287,53,0): 103, 67, 51, (287,54,0): 107, 72, 53, (287,55,0): 112, 76, 54, (287,56,0): 117, 81, 55, (287,57,0): 119, 82, 55, (287,58,0): 121, 85, 53, (287,59,0): 125, 89, 55, (287,60,0): 128, 93, 55, (287,61,0): 132, 97, 57, (287,62,0): 134, 99, 59, (287,63,0): 136, 101, 61, (287,64,0): 137, 102, 60, (287,65,0): 139, 102, 60, (287,66,0): 139, 102, 60, (287,67,0): 140, 103, 61, (287,68,0): 142, 103, 62, (287,69,0): 143, 104, 61, (287,70,0): 143, 104, 61, (287,71,0): 144, 106, 61, (287,72,0): 141, 103, 58, (287,73,0): 141, 103, 58, (287,74,0): 142, 104, 57, (287,75,0): 143, 105, 58, (287,76,0): 145, 104, 58, (287,77,0): 146, 105, 59, (287,78,0): 147, 106, 60, (287,79,0): 147, 106, 60, (287,80,0): 145, 104, 60, (287,81,0): 144, 106, 61, (287,82,0): 147, 109, 64, (287,83,0): 149, 111, 66, (287,84,0): 150, 112, 67, (287,85,0): 150, 112, 67, (287,86,0): 149, 111, 66, (287,87,0): 148, 110, 65, (287,88,0): 144, 106, 61, (287,89,0): 145, 107, 62, (287,90,0): 145, 107, 62, (287,91,0): 144, 106, 61, (287,92,0): 143, 105, 60, (287,93,0): 140, 103, 58, (287,94,0): 139, 101, 56, (287,95,0): 134, 100, 55, (287,96,0): 132, 99, 56, (287,97,0): 130, 101, 57, (287,98,0): 135, 104, 60, (287,99,0): 137, 106, 62, (287,100,0): 138, 106, 65, (287,101,0): 137, 105, 64, (287,102,0): 136, 104, 65, (287,103,0): 135, 103, 64, (287,104,0): 138, 106, 67, (287,105,0): 136, 104, 65, (287,106,0): 135, 103, 64, (287,107,0): 133, 101, 62, (287,108,0): 132, 100, 62, (287,109,0): 131, 99, 61, (287,110,0): 132, 100, 62, (287,111,0): 133, 99, 62, (287,112,0): 132, 96, 60, (287,113,0): 131, 95, 59, (287,114,0): 130, 94, 60, (287,115,0): 129, 93, 59, (287,116,0): 127, 91, 57, (287,117,0): 126, 90, 56, (287,118,0): 125, 89, 53, (287,119,0): 125, 89, 53, (287,120,0): 128, 93, 55, (287,121,0): 129, 94, 56, (287,122,0): 131, 96, 56, (287,123,0): 133, 98, 56, (287,124,0): 134, 99, 57, (287,125,0): 135, 100, 58, (287,126,0): 135, 100, 58, (287,127,0): 135, 100, 58, (287,128,0): 139, 102, 60, (287,129,0): 141, 104, 62, (287,130,0): 142, 105, 63, (287,131,0): 140, 103, 59, (287,132,0): 138, 101, 59, (287,133,0): 137, 100, 56, (287,134,0): 141, 104, 60, (287,135,0): 145, 108, 63, (287,136,0): 142, 105, 60, (287,137,0): 142, 105, 60, (287,138,0): 144, 107, 62, (287,139,0): 146, 110, 62, (287,140,0): 148, 112, 64, (287,141,0): 149, 113, 65, (287,142,0): 151, 115, 67, (287,143,0): 152, 116, 66, (287,144,0): 151, 115, 65, (287,145,0): 149, 113, 61, (287,146,0): 147, 111, 61, (287,147,0): 145, 109, 57, (287,148,0): 144, 108, 56, (287,149,0): 144, 108, 56, (287,150,0): 146, 110, 58, (287,151,0): 146, 110, 58, (287,152,0): 147, 111, 59, (287,153,0): 147, 111, 59, (287,154,0): 146, 110, 58, (287,155,0): 144, 108, 56, (287,156,0): 145, 109, 57, (287,157,0): 151, 115, 63, (287,158,0): 160, 124, 72, (287,159,0): 167, 132, 76, (287,160,0): 173, 137, 77, (287,161,0): 180, 142, 79, (287,162,0): 185, 147, 84, (287,163,0): 188, 150, 85, (287,164,0): 190, 153, 83, (287,165,0): 191, 157, 85, (287,166,0): 195, 161, 87, (287,167,0): 198, 166, 91, (287,168,0): 200, 168, 91, (287,169,0): 197, 168, 92, (287,170,0): 195, 166, 90, (287,171,0): 192, 162, 89, (287,172,0): 188, 158, 86, (287,173,0): 183, 153, 81, (287,174,0): 178, 149, 79, (287,175,0): 175, 148, 79, (287,176,0): 159, 134, 67, (287,177,0): 159, 134, 68, (287,178,0): 158, 135, 68, (287,179,0): 158, 135, 67, (287,180,0): 158, 138, 67, (287,181,0): 163, 143, 72, (287,182,0): 172, 152, 79, (287,183,0): 177, 160, 82, (287,184,0): 184, 169, 88, (287,185,0): 191, 176, 91, (287,186,0): 197, 186, 97, (287,187,0): 205, 194, 102, (287,188,0): 212, 202, 107, (287,189,0): 219, 211, 112, (287,190,0): 229, 221, 122, (287,191,0): 236, 228, 127, (287,192,0): 235, 223, 125, (287,193,0): 239, 227, 129, (287,194,0): 243, 231, 131, (287,195,0): 240, 231, 128, (287,196,0): 236, 227, 122, (287,197,0): 238, 230, 121, (287,198,0): 244, 238, 126, (287,199,0): 249, 246, 131, (287,200,0): 255, 252, 137, (287,201,0): 255, 254, 138, (287,202,0): 255, 255, 141, (287,203,0): 255, 255, 145, (287,204,0): 255, 255, 144, (287,205,0): 254, 255, 144, (287,206,0): 251, 254, 141, (287,207,0): 251, 251, 141, (287,208,0): 250, 243, 139, (287,209,0): 253, 241, 139, (287,210,0): 255, 243, 141, (287,211,0): 255, 245, 143, (287,212,0): 255, 248, 145, (287,213,0): 255, 250, 146, (287,214,0): 255, 252, 148, (287,215,0): 255, 253, 149, (287,216,0): 254, 251, 146, (287,217,0): 254, 253, 147, (287,218,0): 253, 255, 148, (287,219,0): 254, 255, 149, (287,220,0): 253, 255, 149, (287,221,0): 253, 255, 149, (287,222,0): 252, 255, 148, (287,223,0): 251, 254, 149, (287,224,0): 253, 254, 150, (287,225,0): 253, 254, 150, (287,226,0): 253, 254, 152, (287,227,0): 253, 254, 152, (287,228,0): 253, 254, 152, (287,229,0): 253, 254, 152, (287,230,0): 253, 254, 152, (287,231,0): 253, 254, 152, (287,232,0): 254, 255, 153, (287,233,0): 254, 255, 153, (287,234,0): 254, 255, 153, (287,235,0): 254, 255, 153, (287,236,0): 254, 255, 153, (287,237,0): 254, 255, 153, (287,238,0): 254, 255, 153, (287,239,0): 254, 254, 154, (287,240,0): 255, 255, 158, (287,241,0): 255, 255, 160, (287,242,0): 255, 255, 160, (287,243,0): 255, 255, 160, (287,244,0): 255, 255, 160, (287,245,0): 255, 255, 160, (287,246,0): 255, 255, 160, (287,247,0): 255, 255, 162, (287,248,0): 255, 255, 168, (287,249,0): 255, 255, 164, (287,250,0): 251, 255, 160, (287,251,0): 252, 255, 161, (287,252,0): 255, 255, 163, (287,253,0): 255, 255, 164, (287,254,0): 252, 253, 160, (287,255,0): 245, 248, 157, (287,256,0): 231, 236, 146, (287,257,0): 225, 231, 141, (287,258,0): 220, 227, 134, (287,259,0): 220, 227, 131, (287,260,0): 227, 235, 134, (287,261,0): 234, 245, 141, (287,262,0): 242, 253, 148, (287,263,0): 245, 255, 152, (287,264,0): 238, 253, 148, (287,265,0): 233, 250, 148, (287,266,0): 225, 242, 148, (287,267,0): 214, 233, 144, (287,268,0): 206, 224, 142, (287,269,0): 198, 216, 140, (287,270,0): 192, 212, 141, (287,271,0): 190, 209, 143, (287,272,0): 185, 204, 140, (287,273,0): 183, 202, 138, (287,274,0): 182, 198, 135, (287,275,0): 180, 194, 132, (287,276,0): 180, 191, 131, (287,277,0): 181, 190, 133, (287,278,0): 183, 190, 136, (287,279,0): 183, 190, 138, (287,280,0): 182, 189, 138, (287,281,0): 167, 175, 126, (287,282,0): 151, 163, 115, (287,283,0): 144, 157, 111, (287,284,0): 138, 157, 111, (287,285,0): 138, 162, 114, (287,286,0): 150, 176, 129, (287,287,0): 164, 192, 143, (287,288,0): 181, 208, 157, (287,289,0): 174, 198, 146, (287,290,0): 159, 181, 132, (287,291,0): 141, 160, 114, (287,292,0): 125, 142, 98, (287,293,0): 122, 135, 92, (287,294,0): 124, 136, 98, (287,295,0): 128, 140, 102, (287,296,0): 132, 146, 110, (287,297,0): 140, 156, 119, (287,298,0): 148, 169, 130, (287,299,0): 150, 175, 135, (287,300,0): 149, 177, 136, (287,301,0): 148, 181, 138, (287,302,0): 151, 189, 142, (287,303,0): 157, 195, 148, (287,304,0): 168, 204, 158, (287,305,0): 172, 208, 162, (287,306,0): 175, 211, 165, (287,307,0): 173, 209, 161, (287,308,0): 169, 207, 158, (287,309,0): 170, 210, 158, (287,310,0): 176, 220, 169, (287,311,0): 181, 230, 175, (287,312,0): 194, 249, 194, (287,313,0): 200, 255, 202, (287,314,0): 202, 255, 207, (287,315,0): 199, 255, 205, (287,316,0): 198, 250, 201, (287,317,0): 195, 244, 197, (287,318,0): 184, 229, 186, (287,319,0): 172, 213, 173, (287,320,0): 166, 206, 172, (287,321,0): 166, 203, 172, (287,322,0): 164, 198, 171, (287,323,0): 160, 194, 167, (287,324,0): 156, 188, 164, (287,325,0): 152, 181, 159, (287,326,0): 148, 177, 157, (287,327,0): 147, 174, 159, (287,328,0): 141, 169, 155, (287,329,0): 142, 170, 158, (287,330,0): 143, 171, 159, (287,331,0): 145, 172, 163, (287,332,0): 144, 169, 163, (287,333,0): 137, 162, 158, (287,334,0): 126, 151, 148, (287,335,0): 122, 142, 141, (287,336,0): 109, 123, 124, (287,337,0): 108, 118, 120, (287,338,0): 104, 114, 116, (287,339,0): 102, 112, 114, (287,340,0): 103, 113, 115, (287,341,0): 104, 112, 115, (287,342,0): 103, 111, 114, (287,343,0): 101, 109, 112, (287,344,0): 99, 107, 110, (287,345,0): 98, 103, 107, (287,346,0): 95, 100, 104, (287,347,0): 93, 98, 102, (287,348,0): 91, 96, 100, (287,349,0): 88, 93, 97, (287,350,0): 82, 87, 91, (287,351,0): 78, 83, 86, (287,352,0): 76, 85, 84, (287,353,0): 77, 86, 85, (287,354,0): 79, 88, 87, (287,355,0): 82, 88, 88, (287,356,0): 83, 89, 87, (287,357,0): 82, 86, 85, (287,358,0): 81, 85, 84, (287,359,0): 80, 84, 83, (287,360,0): 85, 89, 90, (287,361,0): 89, 93, 96, (287,362,0): 96, 101, 104, (287,363,0): 104, 112, 115, (287,364,0): 111, 120, 125, (287,365,0): 116, 127, 133, (287,366,0): 118, 128, 137, (287,367,0): 118, 128, 138, (287,368,0): 108, 116, 129, (287,369,0): 107, 115, 128, (287,370,0): 107, 114, 130, (287,371,0): 107, 114, 130, (287,372,0): 109, 115, 131, (287,373,0): 111, 117, 133, (287,374,0): 115, 118, 135, (287,375,0): 116, 119, 136, (287,376,0): 121, 124, 141, (287,377,0): 123, 124, 144, (287,378,0): 124, 125, 145, (287,379,0): 125, 123, 144, (287,380,0): 123, 121, 142, (287,381,0): 120, 117, 138, (287,382,0): 117, 113, 136, (287,383,0): 115, 110, 133, (287,384,0): 117, 107, 132, (287,385,0): 119, 106, 132, (287,386,0): 119, 106, 132, (287,387,0): 116, 106, 131, (287,388,0): 115, 105, 130, (287,389,0): 114, 106, 130, (287,390,0): 114, 106, 129, (287,391,0): 113, 105, 128, (287,392,0): 112, 104, 127, (287,393,0): 112, 104, 127, (287,394,0): 108, 103, 123, (287,395,0): 104, 100, 117, (287,396,0): 102, 95, 113, (287,397,0): 97, 90, 106, (287,398,0): 93, 86, 102, (287,399,0): 91, 84, 100, (287,400,0): 93, 87, 99, (287,401,0): 93, 87, 99, (287,402,0): 90, 87, 98, (287,403,0): 88, 86, 99, (287,404,0): 88, 87, 101, (287,405,0): 89, 88, 102, (287,406,0): 89, 91, 106, (287,407,0): 90, 92, 107, (287,408,0): 99, 98, 114, (287,409,0): 100, 98, 112, (287,410,0): 102, 98, 113, (287,411,0): 105, 99, 113, (287,412,0): 108, 97, 111, (287,413,0): 110, 98, 112, (287,414,0): 112, 98, 111, (287,415,0): 115, 98, 108, (287,416,0): 112, 87, 93, (287,417,0): 112, 83, 88, (287,418,0): 106, 77, 82, (287,419,0): 99, 70, 74, (287,420,0): 92, 61, 66, (287,421,0): 86, 55, 60, (287,422,0): 83, 51, 56, (287,423,0): 80, 48, 51, (287,424,0): 73, 43, 45, (287,425,0): 74, 44, 44, (287,426,0): 74, 46, 45, (287,427,0): 76, 48, 47, (287,428,0): 76, 50, 49, (287,429,0): 78, 54, 50, (287,430,0): 80, 56, 52, (287,431,0): 81, 57, 53, (287,432,0): 79, 53, 54, (287,433,0): 83, 54, 56, (287,434,0): 86, 58, 57, (287,435,0): 89, 61, 60, (287,436,0): 91, 63, 62, (287,437,0): 92, 62, 60, (287,438,0): 92, 61, 59, (287,439,0): 92, 61, 58, (287,440,0): 93, 62, 59, (287,441,0): 95, 61, 59, (287,442,0): 96, 62, 60, (287,443,0): 98, 64, 62, (287,444,0): 103, 68, 66, (287,445,0): 106, 72, 70, (287,446,0): 111, 77, 75, (287,447,0): 113, 79, 77, (287,448,0): 117, 83, 82, (287,449,0): 120, 86, 85, (287,450,0): 125, 89, 89, (287,451,0): 128, 92, 92, (287,452,0): 130, 94, 94, (287,453,0): 128, 94, 93, (287,454,0): 127, 93, 92, (287,455,0): 124, 93, 91, (287,456,0): 128, 97, 95, (287,457,0): 126, 95, 93, (287,458,0): 122, 90, 91, (287,459,0): 120, 88, 89, (287,460,0): 118, 86, 89, (287,461,0): 114, 82, 85, (287,462,0): 106, 75, 80, (287,463,0): 101, 70, 75, (287,464,0): 99, 70, 74, (287,465,0): 98, 69, 73, (287,466,0): 95, 69, 72, (287,467,0): 94, 69, 72, (287,468,0): 93, 68, 71, (287,469,0): 92, 70, 72, (287,470,0): 93, 71, 73, (287,471,0): 93, 73, 72, (287,472,0): 95, 76, 72, (287,473,0): 93, 74, 68, (287,474,0): 90, 71, 65, (287,475,0): 87, 70, 63, (287,476,0): 88, 71, 64, (287,477,0): 89, 74, 67, (287,478,0): 92, 79, 71, (287,479,0): 94, 81, 75, (287,480,0): 96, 82, 79, (287,481,0): 98, 87, 85, (287,482,0): 106, 92, 91, (287,483,0): 106, 94, 94, (287,484,0): 106, 94, 94, (287,485,0): 104, 94, 95, (287,486,0): 104, 95, 98, (287,487,0): 103, 97, 101, (287,488,0): 110, 103, 110, (287,489,0): 111, 105, 115, (287,490,0): 112, 109, 120, (287,491,0): 112, 110, 123, (287,492,0): 112, 111, 125, (287,493,0): 116, 115, 131, (287,494,0): 122, 121, 137, (287,495,0): 125, 127, 142, (287,496,0): 130, 134, 145, (287,497,0): 130, 134, 143, (287,498,0): 129, 134, 140, (287,499,0): 131, 136, 139, (287,500,0): 132, 141, 140, (287,501,0): 138, 147, 144, (287,502,0): 143, 152, 149, (287,503,0): 146, 155, 152, (287,504,0): 147, 157, 156, (287,505,0): 150, 161, 163, (287,506,0): 153, 163, 172, (287,507,0): 152, 164, 176, (287,508,0): 150, 163, 182, (287,509,0): 149, 161, 185, (287,510,0): 148, 162, 189, (287,511,0): 148, 165, 195, (287,512,0): 145, 168, 200, (287,513,0): 145, 171, 206, (287,514,0): 146, 172, 207, (287,515,0): 146, 172, 207, (287,516,0): 144, 172, 209, (287,517,0): 147, 175, 212, (287,518,0): 151, 181, 217, (287,519,0): 153, 186, 221, (287,520,0): 155, 187, 225, (287,521,0): 157, 191, 228, (287,522,0): 160, 196, 232, (287,523,0): 164, 200, 236, (287,524,0): 165, 204, 237, (287,525,0): 165, 204, 237, (287,526,0): 165, 203, 239, (287,527,0): 164, 203, 236, (287,528,0): 165, 202, 231, (287,529,0): 164, 199, 227, (287,530,0): 162, 197, 227, (287,531,0): 158, 193, 223, (287,532,0): 155, 190, 222, (287,533,0): 152, 185, 218, (287,534,0): 152, 183, 214, (287,535,0): 151, 180, 210, (287,536,0): 141, 168, 195, (287,537,0): 140, 164, 188, (287,538,0): 138, 160, 181, (287,539,0): 141, 160, 177, (287,540,0): 144, 160, 176, (287,541,0): 147, 160, 176, (287,542,0): 147, 159, 173, (287,543,0): 145, 157, 171, (287,544,0): 145, 156, 174, (287,545,0): 146, 157, 175, (287,546,0): 147, 158, 176, (287,547,0): 148, 157, 174, (287,548,0): 147, 154, 170, (287,549,0): 143, 149, 165, (287,550,0): 139, 145, 159, (287,551,0): 136, 142, 156, (287,552,0): 139, 147, 160, (287,553,0): 139, 147, 160, (287,554,0): 137, 147, 159, (287,555,0): 136, 148, 162, (287,556,0): 137, 151, 164, (287,557,0): 138, 154, 169, (287,558,0): 141, 157, 172, (287,559,0): 142, 159, 177, (287,560,0): 141, 162, 183, (287,561,0): 140, 162, 185, (287,562,0): 141, 163, 186, (287,563,0): 142, 164, 188, (287,564,0): 144, 166, 190, (287,565,0): 146, 168, 192, (287,566,0): 148, 170, 194, (287,567,0): 151, 171, 196, (287,568,0): 146, 166, 191, (287,569,0): 148, 165, 191, (287,570,0): 147, 163, 189, (287,571,0): 141, 155, 182, (287,572,0): 133, 144, 172, (287,573,0): 126, 136, 163, (287,574,0): 126, 133, 161, (287,575,0): 128, 132, 157, (287,576,0): 129, 128, 144, (287,577,0): 119, 115, 129, (287,578,0): 104, 101, 112, (287,579,0): 97, 94, 105, (287,580,0): 99, 93, 105, (287,581,0): 97, 89, 100, (287,582,0): 89, 81, 92, (287,583,0): 82, 72, 83, (287,584,0): 84, 72, 82, (287,585,0): 78, 66, 76, (287,586,0): 72, 59, 68, (287,587,0): 69, 53, 63, (287,588,0): 67, 52, 59, (287,589,0): 66, 49, 57, (287,590,0): 64, 47, 55, (287,591,0): 64, 44, 53, (287,592,0): 67, 48, 54, (287,593,0): 63, 44, 50, (287,594,0): 59, 42, 48, (287,595,0): 59, 44, 49, (287,596,0): 61, 49, 53, (287,597,0): 63, 51, 55, (287,598,0): 62, 51, 55, (287,599,0): 61, 50, 54, (288,0,0): 61, 48, 55, (288,1,0): 61, 49, 53, (288,2,0): 61, 48, 55, (288,3,0): 61, 49, 53, (288,4,0): 63, 48, 55, (288,5,0): 63, 48, 53, (288,6,0): 63, 48, 55, (288,7,0): 64, 47, 53, (288,8,0): 62, 45, 53, (288,9,0): 64, 45, 51, (288,10,0): 63, 43, 52, (288,11,0): 64, 45, 51, (288,12,0): 65, 45, 54, (288,13,0): 67, 48, 54, (288,14,0): 71, 50, 59, (288,15,0): 75, 50, 56, (288,16,0): 78, 43, 49, (288,17,0): 83, 42, 48, (288,18,0): 84, 43, 49, (288,19,0): 85, 44, 50, (288,20,0): 85, 46, 51, (288,21,0): 87, 48, 53, (288,22,0): 86, 50, 54, (288,23,0): 85, 50, 54, (288,24,0): 84, 49, 53, (288,25,0): 82, 50, 53, (288,26,0): 81, 49, 52, (288,27,0): 80, 50, 52, (288,28,0): 79, 50, 52, (288,29,0): 79, 53, 54, (288,30,0): 80, 54, 57, (288,31,0): 81, 55, 58, (288,32,0): 79, 50, 55, (288,33,0): 79, 49, 57, (288,34,0): 80, 50, 58, (288,35,0): 80, 50, 58, (288,36,0): 82, 51, 57, (288,37,0): 82, 51, 57, (288,38,0): 84, 52, 57, (288,39,0): 84, 52, 55, (288,40,0): 84, 52, 55, (288,41,0): 84, 52, 53, (288,42,0): 85, 54, 52, (288,43,0): 88, 54, 52, (288,44,0): 90, 56, 54, (288,45,0): 91, 57, 55, (288,46,0): 92, 58, 56, (288,47,0): 93, 60, 55, (288,48,0): 98, 64, 55, (288,49,0): 98, 64, 54, (288,50,0): 100, 64, 52, (288,51,0): 102, 64, 51, (288,52,0): 104, 67, 51, (288,53,0): 109, 70, 53, (288,54,0): 114, 73, 55, (288,55,0): 117, 75, 53, (288,56,0): 120, 78, 53, (288,57,0): 122, 81, 53, (288,58,0): 126, 85, 53, (288,59,0): 130, 90, 55, (288,60,0): 132, 94, 57, (288,61,0): 135, 97, 58, (288,62,0): 136, 98, 59, (288,63,0): 137, 100, 58, (288,64,0): 138, 99, 58, (288,65,0): 138, 99, 58, (288,66,0): 139, 100, 57, (288,67,0): 140, 101, 58, (288,68,0): 143, 101, 59, (288,69,0): 142, 103, 60, (288,70,0): 143, 104, 61, (288,71,0): 143, 105, 60, (288,72,0): 141, 103, 58, (288,73,0): 140, 104, 56, (288,74,0): 141, 105, 57, (288,75,0): 142, 106, 58, (288,76,0): 143, 107, 57, (288,77,0): 144, 108, 58, (288,78,0): 145, 109, 59, (288,79,0): 146, 108, 59, (288,80,0): 149, 108, 62, (288,81,0): 150, 109, 63, (288,82,0): 150, 109, 63, (288,83,0): 151, 110, 64, (288,84,0): 152, 111, 65, (288,85,0): 152, 111, 65, (288,86,0): 151, 113, 66, (288,87,0): 151, 113, 66, (288,88,0): 146, 110, 62, (288,89,0): 145, 109, 61, (288,90,0): 144, 108, 60, (288,91,0): 142, 106, 58, (288,92,0): 140, 104, 56, (288,93,0): 137, 103, 55, (288,94,0): 138, 102, 54, (288,95,0): 134, 102, 55, (288,96,0): 135, 104, 60, (288,97,0): 132, 105, 62, (288,98,0): 134, 105, 63, (288,99,0): 135, 106, 64, (288,100,0): 136, 107, 65, (288,101,0): 137, 108, 66, (288,102,0): 138, 109, 67, (288,103,0): 138, 109, 67, (288,104,0): 138, 106, 65, (288,105,0): 137, 105, 64, (288,106,0): 138, 105, 64, (288,107,0): 137, 104, 63, (288,108,0): 134, 101, 60, (288,109,0): 131, 98, 57, (288,110,0): 129, 96, 55, (288,111,0): 128, 93, 53, (288,112,0): 129, 94, 54, (288,113,0): 132, 97, 59, (288,114,0): 135, 99, 63, (288,115,0): 131, 95, 61, (288,116,0): 126, 89, 60, (288,117,0): 124, 87, 58, (288,118,0): 130, 94, 62, (288,119,0): 135, 99, 65, (288,120,0): 130, 94, 58, (288,121,0): 133, 98, 60, (288,122,0): 136, 101, 59, (288,123,0): 137, 103, 58, (288,124,0): 135, 101, 56, (288,125,0): 135, 100, 58, (288,126,0): 136, 101, 59, (288,127,0): 140, 103, 61, (288,128,0): 149, 110, 67, (288,129,0): 148, 109, 66, (288,130,0): 147, 108, 65, (288,131,0): 145, 107, 62, (288,132,0): 144, 105, 62, (288,133,0): 143, 105, 60, (288,134,0): 143, 105, 60, (288,135,0): 143, 105, 58, (288,136,0): 145, 107, 60, (288,137,0): 147, 109, 62, (288,138,0): 149, 111, 64, (288,139,0): 150, 112, 63, (288,140,0): 152, 114, 65, (288,141,0): 152, 114, 65, (288,142,0): 152, 114, 65, (288,143,0): 151, 113, 64, (288,144,0): 148, 110, 61, (288,145,0): 147, 109, 60, (288,146,0): 147, 109, 62, (288,147,0): 148, 110, 61, (288,148,0): 149, 111, 62, (288,149,0): 151, 113, 64, (288,150,0): 153, 115, 66, (288,151,0): 154, 116, 67, (288,152,0): 150, 113, 61, (288,153,0): 153, 116, 64, (288,154,0): 156, 119, 66, (288,155,0): 157, 120, 67, (288,156,0): 159, 122, 69, (288,157,0): 162, 125, 72, (288,158,0): 167, 130, 77, (288,159,0): 171, 135, 77, (288,160,0): 180, 142, 80, (288,161,0): 182, 144, 79, (288,162,0): 184, 149, 83, (288,163,0): 189, 154, 86, (288,164,0): 194, 160, 89, (288,165,0): 196, 164, 91, (288,166,0): 198, 166, 91, (288,167,0): 197, 168, 90, (288,168,0): 198, 169, 93, (288,169,0): 196, 169, 92, (288,170,0): 194, 168, 93, (288,171,0): 190, 164, 90, (288,172,0): 182, 158, 86, (288,173,0): 176, 152, 82, (288,174,0): 169, 144, 77, (288,175,0): 164, 141, 74, (288,176,0): 156, 135, 70, (288,177,0): 155, 136, 70, (288,178,0): 155, 136, 70, (288,179,0): 155, 136, 68, (288,180,0): 159, 140, 71, (288,181,0): 168, 150, 76, (288,182,0): 180, 162, 86, (288,183,0): 188, 173, 92, (288,184,0): 194, 179, 94, (288,185,0): 202, 188, 99, (288,186,0): 213, 200, 108, (288,187,0): 223, 210, 114, (288,188,0): 229, 217, 119, (288,189,0): 231, 222, 119, (288,190,0): 235, 226, 123, (288,191,0): 240, 228, 128, (288,192,0): 244, 227, 135, (288,193,0): 245, 225, 138, (288,194,0): 243, 223, 134, (288,195,0): 240, 224, 129, (288,196,0): 242, 228, 131, (288,197,0): 247, 233, 134, (288,198,0): 251, 239, 137, (288,199,0): 253, 244, 139, (288,200,0): 255, 254, 148, (288,201,0): 255, 252, 144, (288,202,0): 253, 251, 142, (288,203,0): 253, 252, 144, (288,204,0): 255, 255, 147, (288,205,0): 255, 255, 151, (288,206,0): 254, 255, 149, (288,207,0): 252, 254, 147, (288,208,0): 252, 250, 149, (288,209,0): 253, 249, 150, (288,210,0): 254, 250, 151, (288,211,0): 254, 250, 151, (288,212,0): 255, 251, 152, (288,213,0): 255, 253, 153, (288,214,0): 255, 254, 154, (288,215,0): 255, 254, 154, (288,216,0): 252, 250, 150, (288,217,0): 251, 251, 151, (288,218,0): 253, 253, 153, (288,219,0): 254, 254, 154, (288,220,0): 255, 255, 155, (288,221,0): 254, 254, 154, (288,222,0): 254, 254, 154, (288,223,0): 253, 254, 152, (288,224,0): 255, 255, 152, (288,225,0): 255, 255, 150, (288,226,0): 255, 255, 152, (288,227,0): 255, 255, 152, (288,228,0): 255, 255, 152, (288,229,0): 255, 255, 152, (288,230,0): 255, 255, 152, (288,231,0): 255, 255, 152, (288,232,0): 255, 255, 154, (288,233,0): 255, 255, 154, (288,234,0): 255, 255, 155, (288,235,0): 255, 255, 155, (288,236,0): 255, 255, 155, (288,237,0): 255, 255, 155, (288,238,0): 255, 255, 155, (288,239,0): 255, 255, 157, (288,240,0): 255, 255, 157, (288,241,0): 255, 255, 157, (288,242,0): 255, 255, 159, (288,243,0): 254, 255, 159, (288,244,0): 254, 255, 161, (288,245,0): 254, 255, 161, (288,246,0): 254, 255, 161, (288,247,0): 254, 255, 162, (288,248,0): 254, 254, 164, (288,249,0): 254, 254, 164, (288,250,0): 254, 254, 166, (288,251,0): 255, 255, 167, (288,252,0): 255, 255, 167, (288,253,0): 255, 255, 170, (288,254,0): 255, 255, 170, (288,255,0): 254, 255, 170, (288,256,0): 237, 246, 157, (288,257,0): 229, 240, 148, (288,258,0): 219, 233, 138, (288,259,0): 216, 232, 134, (288,260,0): 220, 238, 138, (288,261,0): 226, 247, 144, (288,262,0): 231, 254, 150, (288,263,0): 232, 255, 153, (288,264,0): 236, 255, 160, (288,265,0): 226, 250, 154, (288,266,0): 213, 236, 148, (288,267,0): 203, 222, 141, (288,268,0): 196, 214, 140, (288,269,0): 191, 206, 139, (288,270,0): 185, 199, 138, (288,271,0): 181, 195, 136, (288,272,0): 178, 193, 134, (288,273,0): 176, 192, 130, (288,274,0): 172, 188, 126, (288,275,0): 167, 182, 123, (288,276,0): 162, 175, 119, (288,277,0): 157, 170, 116, (288,278,0): 155, 165, 113, (288,279,0): 153, 163, 113, (288,280,0): 151, 160, 113, (288,281,0): 147, 156, 111, (288,282,0): 140, 149, 106, (288,283,0): 132, 141, 98, (288,284,0): 126, 137, 95, (288,285,0): 128, 141, 98, (288,286,0): 137, 149, 109, (288,287,0): 143, 158, 117, (288,288,0): 154, 171, 129, (288,289,0): 150, 169, 124, (288,290,0): 144, 161, 119, (288,291,0): 134, 151, 109, (288,292,0): 127, 142, 103, (288,293,0): 125, 137, 99, (288,294,0): 126, 137, 103, (288,295,0): 127, 141, 106, (288,296,0): 133, 147, 114, (288,297,0): 141, 158, 124, (288,298,0): 151, 170, 138, (288,299,0): 154, 178, 146, (288,300,0): 151, 178, 145, (288,301,0): 149, 179, 145, (288,302,0): 151, 182, 148, (288,303,0): 155, 187, 150, (288,304,0): 161, 191, 155, (288,305,0): 164, 194, 156, (288,306,0): 170, 202, 163, (288,307,0): 172, 209, 168, (288,308,0): 166, 207, 165, (288,309,0): 160, 207, 163, (288,310,0): 167, 218, 175, (288,311,0): 179, 235, 188, (288,312,0): 189, 248, 202, (288,313,0): 191, 253, 206, (288,314,0): 199, 255, 212, (288,315,0): 201, 255, 216, (288,316,0): 200, 255, 213, (288,317,0): 192, 245, 203, (288,318,0): 183, 231, 193, (288,319,0): 176, 222, 185, (288,320,0): 172, 218, 182, (288,321,0): 166, 210, 175, (288,322,0): 160, 201, 169, (288,323,0): 157, 193, 165, (288,324,0): 155, 189, 164, (288,325,0): 154, 188, 164, (288,326,0): 152, 185, 164, (288,327,0): 150, 183, 166, (288,328,0): 151, 185, 169, (288,329,0): 149, 183, 169, (288,330,0): 147, 180, 171, (288,331,0): 145, 178, 171, (288,332,0): 141, 172, 167, (288,333,0): 134, 163, 161, (288,334,0): 126, 150, 152, (288,335,0): 120, 141, 144, (288,336,0): 110, 125, 128, (288,337,0): 110, 121, 125, (288,338,0): 106, 117, 121, (288,339,0): 105, 116, 120, (288,340,0): 106, 117, 121, (288,341,0): 107, 116, 121, (288,342,0): 104, 113, 118, (288,343,0): 102, 111, 116, (288,344,0): 95, 104, 109, (288,345,0): 94, 101, 107, (288,346,0): 90, 97, 103, (288,347,0): 86, 93, 99, (288,348,0): 83, 90, 96, (288,349,0): 80, 87, 93, (288,350,0): 81, 86, 92, (288,351,0): 80, 85, 91, (288,352,0): 77, 82, 86, (288,353,0): 77, 82, 86, (288,354,0): 78, 83, 87, (288,355,0): 79, 84, 88, (288,356,0): 80, 85, 89, (288,357,0): 80, 85, 89, (288,358,0): 81, 86, 89, (288,359,0): 81, 86, 89, (288,360,0): 79, 87, 89, (288,361,0): 82, 90, 92, (288,362,0): 88, 98, 99, (288,363,0): 101, 111, 112, (288,364,0): 112, 124, 124, (288,365,0): 120, 132, 132, (288,366,0): 121, 132, 134, (288,367,0): 118, 132, 135, (288,368,0): 114, 124, 136, (288,369,0): 113, 122, 137, (288,370,0): 111, 118, 136, (288,371,0): 109, 116, 132, (288,372,0): 108, 114, 130, (288,373,0): 107, 113, 129, (288,374,0): 109, 112, 129, (288,375,0): 109, 112, 129, (288,376,0): 117, 118, 136, (288,377,0): 121, 120, 136, (288,378,0): 124, 123, 139, (288,379,0): 126, 123, 140, (288,380,0): 124, 121, 138, (288,381,0): 121, 117, 134, (288,382,0): 116, 112, 129, (288,383,0): 114, 107, 125, (288,384,0): 118, 106, 128, (288,385,0): 118, 106, 128, (288,386,0): 117, 105, 129, (288,387,0): 114, 104, 128, (288,388,0): 112, 102, 127, (288,389,0): 109, 101, 125, (288,390,0): 107, 99, 123, (288,391,0): 104, 99, 122, (288,392,0): 106, 101, 123, (288,393,0): 105, 100, 122, (288,394,0): 105, 97, 118, (288,395,0): 103, 96, 114, (288,396,0): 100, 91, 108, (288,397,0): 95, 87, 102, (288,398,0): 94, 83, 99, (288,399,0): 91, 80, 94, (288,400,0): 94, 80, 95, (288,401,0): 94, 82, 94, (288,402,0): 94, 84, 95, (288,403,0): 92, 84, 97, (288,404,0): 90, 87, 98, (288,405,0): 89, 87, 98, (288,406,0): 88, 88, 98, (288,407,0): 87, 87, 97, (288,408,0): 94, 94, 104, (288,409,0): 98, 96, 107, (288,410,0): 105, 99, 111, (288,411,0): 111, 100, 114, (288,412,0): 113, 99, 112, (288,413,0): 115, 97, 111, (288,414,0): 114, 93, 108, (288,415,0): 114, 90, 103, (288,416,0): 117, 90, 97, (288,417,0): 115, 84, 89, (288,418,0): 107, 76, 81, (288,419,0): 97, 66, 71, (288,420,0): 88, 57, 62, (288,421,0): 82, 52, 54, (288,422,0): 80, 50, 52, (288,423,0): 80, 50, 52, (288,424,0): 76, 46, 48, (288,425,0): 76, 46, 46, (288,426,0): 78, 48, 48, (288,427,0): 80, 50, 48, (288,428,0): 80, 52, 49, (288,429,0): 82, 54, 51, (288,430,0): 84, 56, 53, (288,431,0): 82, 57, 53, (288,432,0): 85, 60, 56, (288,433,0): 86, 61, 57, (288,434,0): 87, 62, 57, (288,435,0): 90, 62, 58, (288,436,0): 93, 64, 58, (288,437,0): 96, 66, 58, (288,438,0): 99, 66, 57, (288,439,0): 100, 66, 57, (288,440,0): 104, 67, 58, (288,441,0): 108, 70, 61, (288,442,0): 110, 71, 64, (288,443,0): 111, 72, 67, (288,444,0): 112, 71, 67, (288,445,0): 114, 74, 72, (288,446,0): 119, 79, 79, (288,447,0): 123, 83, 83, (288,448,0): 121, 82, 83, (288,449,0): 123, 83, 84, (288,450,0): 127, 85, 87, (288,451,0): 133, 88, 91, (288,452,0): 133, 91, 92, (288,453,0): 131, 91, 91, (288,454,0): 127, 92, 90, (288,455,0): 124, 93, 90, (288,456,0): 130, 101, 97, (288,457,0): 128, 98, 96, (288,458,0): 125, 93, 94, (288,459,0): 122, 87, 91, (288,460,0): 116, 81, 87, (288,461,0): 112, 76, 86, (288,462,0): 106, 73, 84, (288,463,0): 104, 73, 81, (288,464,0): 106, 75, 80, (288,465,0): 104, 75, 77, (288,466,0): 100, 75, 78, (288,467,0): 96, 74, 76, (288,468,0): 94, 74, 76, (288,469,0): 93, 74, 76, (288,470,0): 94, 76, 76, (288,471,0): 94, 76, 74, (288,472,0): 96, 77, 71, (288,473,0): 95, 76, 69, (288,474,0): 95, 77, 67, (288,475,0): 95, 77, 67, (288,476,0): 96, 79, 69, (288,477,0): 96, 82, 73, (288,478,0): 98, 85, 77, (288,479,0): 100, 87, 81, (288,480,0): 107, 97, 88, (288,481,0): 109, 100, 91, (288,482,0): 113, 103, 94, (288,483,0): 113, 104, 97, (288,484,0): 111, 102, 97, (288,485,0): 109, 101, 98, (288,486,0): 111, 103, 101, (288,487,0): 110, 104, 104, (288,488,0): 107, 103, 104, (288,489,0): 110, 108, 113, (288,490,0): 113, 114, 119, (288,491,0): 115, 118, 125, (288,492,0): 116, 120, 131, (288,493,0): 120, 124, 136, (288,494,0): 124, 130, 142, (288,495,0): 128, 136, 147, (288,496,0): 137, 143, 155, (288,497,0): 137, 143, 155, (288,498,0): 136, 143, 153, (288,499,0): 136, 143, 149, (288,500,0): 141, 146, 150, (288,501,0): 146, 151, 155, (288,502,0): 150, 155, 159, (288,503,0): 152, 160, 163, (288,504,0): 145, 154, 161, (288,505,0): 152, 162, 172, (288,506,0): 157, 170, 186, (288,507,0): 157, 172, 191, (288,508,0): 151, 168, 194, (288,509,0): 147, 166, 196, (288,510,0): 148, 168, 203, (288,511,0): 150, 172, 209, (288,512,0): 151, 174, 215, (288,513,0): 152, 175, 217, (288,514,0): 152, 177, 218, (288,515,0): 151, 175, 219, (288,516,0): 149, 176, 221, (288,517,0): 153, 180, 225, (288,518,0): 158, 186, 233, (288,519,0): 161, 192, 238, (288,520,0): 158, 189, 235, (288,521,0): 158, 191, 236, (288,522,0): 161, 196, 238, (288,523,0): 167, 202, 244, (288,524,0): 171, 209, 248, (288,525,0): 174, 212, 251, (288,526,0): 171, 211, 247, (288,527,0): 168, 208, 244, (288,528,0): 161, 204, 238, (288,529,0): 157, 200, 234, (288,530,0): 153, 196, 231, (288,531,0): 152, 191, 230, (288,532,0): 151, 188, 230, (288,533,0): 150, 183, 226, (288,534,0): 146, 178, 219, (288,535,0): 145, 173, 212, (288,536,0): 140, 164, 198, (288,537,0): 142, 163, 192, (288,538,0): 145, 161, 186, (288,539,0): 144, 159, 180, (288,540,0): 145, 156, 174, (288,541,0): 148, 157, 174, (288,542,0): 150, 157, 173, (288,543,0): 153, 159, 175, (288,544,0): 147, 152, 171, (288,545,0): 146, 151, 170, (288,546,0): 147, 152, 171, (288,547,0): 151, 154, 171, (288,548,0): 153, 154, 172, (288,549,0): 152, 151, 169, (288,550,0): 146, 145, 161, (288,551,0): 141, 140, 156, (288,552,0): 142, 141, 155, (288,553,0): 138, 137, 151, (288,554,0): 130, 132, 145, (288,555,0): 125, 129, 141, (288,556,0): 125, 129, 141, (288,557,0): 129, 135, 147, (288,558,0): 137, 143, 155, (288,559,0): 141, 148, 164, (288,560,0): 139, 150, 170, (288,561,0): 136, 151, 174, (288,562,0): 137, 153, 176, (288,563,0): 140, 158, 182, (288,564,0): 143, 163, 188, (288,565,0): 147, 169, 193, (288,566,0): 151, 172, 199, (288,567,0): 152, 173, 200, (288,568,0): 152, 172, 199, (288,569,0): 148, 165, 193, (288,570,0): 144, 158, 185, (288,571,0): 144, 155, 183, (288,572,0): 148, 153, 182, (288,573,0): 145, 149, 176, (288,574,0): 139, 139, 167, (288,575,0): 134, 130, 153, (288,576,0): 126, 122, 136, (288,577,0): 114, 109, 116, (288,578,0): 96, 91, 98, (288,579,0): 88, 81, 89, (288,580,0): 89, 82, 89, (288,581,0): 91, 81, 89, (288,582,0): 87, 77, 85, (288,583,0): 82, 73, 78, (288,584,0): 80, 69, 75, (288,585,0): 77, 66, 72, (288,586,0): 73, 61, 65, (288,587,0): 68, 56, 60, (288,588,0): 64, 52, 54, (288,589,0): 64, 49, 52, (288,590,0): 63, 48, 51, (288,591,0): 64, 48, 51, (288,592,0): 57, 41, 44, (288,593,0): 57, 41, 44, (288,594,0): 57, 41, 44, (288,595,0): 57, 41, 44, (288,596,0): 57, 42, 45, (288,597,0): 59, 44, 47, (288,598,0): 61, 46, 49, (288,599,0): 62, 47, 50, (289,0,0): 61, 49, 53, (289,1,0): 61, 49, 53, (289,2,0): 63, 48, 53, (289,3,0): 63, 48, 53, (289,4,0): 63, 48, 53, (289,5,0): 63, 48, 53, (289,6,0): 64, 47, 53, (289,7,0): 64, 47, 53, (289,8,0): 64, 45, 51, (289,9,0): 64, 45, 51, (289,10,0): 64, 45, 51, (289,11,0): 64, 45, 51, (289,12,0): 66, 45, 52, (289,13,0): 68, 47, 54, (289,14,0): 70, 49, 56, (289,15,0): 75, 50, 56, (289,16,0): 79, 44, 50, (289,17,0): 83, 42, 48, (289,18,0): 84, 43, 49, (289,19,0): 84, 45, 50, (289,20,0): 86, 47, 52, (289,21,0): 85, 49, 53, (289,22,0): 85, 50, 54, (289,23,0): 85, 50, 54, (289,24,0): 82, 50, 53, (289,25,0): 81, 49, 52, (289,26,0): 80, 50, 52, (289,27,0): 79, 49, 51, (289,28,0): 79, 50, 52, (289,29,0): 80, 51, 53, (289,30,0): 80, 54, 55, (289,31,0): 81, 55, 58, (289,32,0): 79, 50, 55, (289,33,0): 79, 49, 57, (289,34,0): 80, 50, 58, (289,35,0): 80, 51, 56, (289,36,0): 82, 51, 57, (289,37,0): 82, 51, 56, (289,38,0): 84, 52, 55, (289,39,0): 84, 52, 55, (289,40,0): 84, 52, 53, (289,41,0): 85, 54, 52, (289,42,0): 87, 53, 51, (289,43,0): 89, 55, 53, (289,44,0): 91, 56, 52, (289,45,0): 92, 57, 53, (289,46,0): 93, 58, 54, (289,47,0): 94, 59, 53, (289,48,0): 98, 64, 54, (289,49,0): 100, 64, 52, (289,50,0): 101, 63, 50, (289,51,0): 103, 64, 49, (289,52,0): 108, 66, 52, (289,53,0): 112, 69, 52, (289,54,0): 118, 73, 54, (289,55,0): 120, 75, 52, (289,56,0): 123, 77, 53, (289,57,0): 125, 80, 51, (289,58,0): 128, 85, 53, (289,59,0): 132, 89, 54, (289,60,0): 133, 93, 57, (289,61,0): 136, 97, 58, (289,62,0): 136, 99, 57, (289,63,0): 138, 99, 58, (289,64,0): 141, 99, 59, (289,65,0): 141, 99, 59, (289,66,0): 141, 99, 57, (289,67,0): 142, 100, 58, (289,68,0): 143, 101, 59, (289,69,0): 144, 102, 60, (289,70,0): 142, 104, 59, (289,71,0): 142, 104, 59, (289,72,0): 140, 104, 56, (289,73,0): 140, 104, 56, (289,74,0): 139, 105, 57, (289,75,0): 140, 106, 58, (289,76,0): 141, 108, 57, (289,77,0): 142, 109, 58, (289,78,0): 143, 110, 59, (289,79,0): 146, 110, 60, (289,80,0): 150, 110, 61, (289,81,0): 151, 109, 61, (289,82,0): 150, 110, 61, (289,83,0): 151, 111, 62, (289,84,0): 151, 111, 62, (289,85,0): 151, 111, 62, (289,86,0): 150, 112, 63, (289,87,0): 150, 112, 63, (289,88,0): 144, 108, 58, (289,89,0): 143, 107, 57, (289,90,0): 143, 107, 57, (289,91,0): 143, 107, 57, (289,92,0): 140, 107, 56, (289,93,0): 140, 107, 56, (289,94,0): 139, 106, 55, (289,95,0): 138, 106, 57, (289,96,0): 135, 106, 62, (289,97,0): 134, 107, 64, (289,98,0): 134, 107, 64, (289,99,0): 136, 107, 65, (289,100,0): 137, 108, 66, (289,101,0): 137, 108, 66, (289,102,0): 138, 109, 67, (289,103,0): 140, 109, 65, (289,104,0): 140, 109, 65, (289,105,0): 141, 108, 65, (289,106,0): 141, 108, 65, (289,107,0): 140, 107, 64, (289,108,0): 138, 105, 62, (289,109,0): 136, 101, 59, (289,110,0): 134, 99, 57, (289,111,0): 132, 98, 53, (289,112,0): 129, 94, 52, (289,113,0): 132, 97, 55, (289,114,0): 133, 97, 61, (289,115,0): 130, 94, 60, (289,116,0): 125, 88, 59, (289,117,0): 124, 87, 58, (289,118,0): 129, 92, 63, (289,119,0): 134, 98, 66, (289,120,0): 132, 96, 60, (289,121,0): 135, 100, 62, (289,122,0): 139, 104, 62, (289,123,0): 140, 106, 61, (289,124,0): 139, 105, 60, (289,125,0): 138, 104, 59, (289,126,0): 140, 105, 63, (289,127,0): 144, 107, 65, (289,128,0): 151, 113, 68, (289,129,0): 152, 111, 67, (289,130,0): 151, 110, 66, (289,131,0): 150, 109, 65, (289,132,0): 149, 108, 64, (289,133,0): 148, 107, 61, (289,134,0): 148, 107, 61, (289,135,0): 148, 107, 61, (289,136,0): 151, 110, 64, (289,137,0): 152, 111, 65, (289,138,0): 154, 114, 65, (289,139,0): 156, 116, 67, (289,140,0): 156, 116, 67, (289,141,0): 157, 117, 68, (289,142,0): 156, 116, 65, (289,143,0): 156, 116, 65, (289,144,0): 151, 111, 62, (289,145,0): 150, 109, 63, (289,146,0): 150, 109, 63, (289,147,0): 150, 110, 61, (289,148,0): 151, 111, 62, (289,149,0): 152, 112, 63, (289,150,0): 154, 114, 65, (289,151,0): 155, 115, 64, (289,152,0): 152, 112, 61, (289,153,0): 155, 115, 63, (289,154,0): 159, 119, 67, (289,155,0): 161, 121, 69, (289,156,0): 162, 122, 70, (289,157,0): 166, 127, 72, (289,158,0): 172, 133, 78, (289,159,0): 176, 137, 80, (289,160,0): 183, 145, 82, (289,161,0): 185, 147, 82, (289,162,0): 188, 151, 83, (289,163,0): 190, 156, 85, (289,164,0): 194, 160, 89, (289,165,0): 196, 164, 89, (289,166,0): 197, 165, 90, (289,167,0): 196, 167, 89, (289,168,0): 198, 169, 93, (289,169,0): 196, 169, 92, (289,170,0): 191, 165, 91, (289,171,0): 184, 160, 88, (289,172,0): 178, 154, 84, (289,173,0): 171, 148, 80, (289,174,0): 167, 142, 76, (289,175,0): 163, 139, 75, (289,176,0): 158, 139, 73, (289,177,0): 158, 140, 74, (289,178,0): 159, 142, 73, (289,179,0): 160, 143, 73, (289,180,0): 163, 146, 74, (289,181,0): 170, 154, 77, (289,182,0): 180, 165, 84, (289,183,0): 187, 172, 89, (289,184,0): 200, 186, 98, (289,185,0): 208, 195, 103, (289,186,0): 218, 205, 111, (289,187,0): 227, 215, 117, (289,188,0): 232, 220, 120, (289,189,0): 235, 223, 121, (289,190,0): 238, 227, 122, (289,191,0): 242, 228, 129, (289,192,0): 248, 227, 138, (289,193,0): 248, 223, 139, (289,194,0): 244, 222, 136, (289,195,0): 243, 223, 134, (289,196,0): 245, 226, 134, (289,197,0): 247, 233, 136, (289,198,0): 252, 238, 139, (289,199,0): 253, 244, 143, (289,200,0): 255, 252, 149, (289,201,0): 255, 251, 147, (289,202,0): 254, 249, 145, (289,203,0): 253, 252, 146, (289,204,0): 255, 254, 151, (289,205,0): 255, 255, 153, (289,206,0): 253, 255, 151, (289,207,0): 251, 254, 151, (289,208,0): 251, 251, 151, (289,209,0): 251, 251, 153, (289,210,0): 252, 252, 154, (289,211,0): 252, 252, 154, (289,212,0): 253, 253, 155, (289,213,0): 254, 254, 156, (289,214,0): 254, 254, 156, (289,215,0): 255, 255, 157, (289,216,0): 250, 250, 152, (289,217,0): 251, 251, 153, (289,218,0): 253, 253, 155, (289,219,0): 254, 254, 156, (289,220,0): 255, 255, 157, (289,221,0): 254, 254, 156, (289,222,0): 254, 254, 156, (289,223,0): 253, 253, 153, (289,224,0): 255, 255, 152, (289,225,0): 255, 255, 150, (289,226,0): 255, 255, 150, (289,227,0): 255, 255, 150, (289,228,0): 255, 255, 152, (289,229,0): 255, 255, 152, (289,230,0): 255, 255, 152, (289,231,0): 255, 255, 152, (289,232,0): 255, 255, 154, (289,233,0): 255, 255, 154, (289,234,0): 255, 255, 155, (289,235,0): 255, 255, 155, (289,236,0): 255, 255, 155, (289,237,0): 255, 255, 155, (289,238,0): 255, 255, 157, (289,239,0): 255, 255, 157, (289,240,0): 254, 255, 157, (289,241,0): 254, 255, 159, (289,242,0): 254, 255, 159, (289,243,0): 254, 255, 161, (289,244,0): 254, 255, 161, (289,245,0): 254, 255, 162, (289,246,0): 254, 255, 162, (289,247,0): 254, 254, 164, (289,248,0): 254, 254, 166, (289,249,0): 254, 254, 168, (289,250,0): 254, 254, 168, (289,251,0): 255, 254, 171, (289,252,0): 255, 254, 171, (289,253,0): 255, 255, 173, (289,254,0): 255, 255, 173, (289,255,0): 253, 255, 173, (289,256,0): 242, 250, 165, (289,257,0): 233, 246, 158, (289,258,0): 225, 240, 149, (289,259,0): 218, 238, 143, (289,260,0): 219, 241, 143, (289,261,0): 222, 247, 146, (289,262,0): 227, 253, 152, (289,263,0): 229, 255, 157, (289,264,0): 227, 254, 159, (289,265,0): 219, 245, 154, (289,266,0): 208, 233, 149, (289,267,0): 198, 221, 143, (289,268,0): 193, 210, 142, (289,269,0): 188, 202, 141, (289,270,0): 184, 197, 141, (289,271,0): 181, 194, 140, (289,272,0): 177, 190, 134, (289,273,0): 172, 187, 130, (289,274,0): 168, 181, 125, (289,275,0): 161, 176, 119, (289,276,0): 157, 170, 116, (289,277,0): 152, 165, 112, (289,278,0): 146, 158, 108, (289,279,0): 144, 153, 106, (289,280,0): 143, 152, 107, (289,281,0): 142, 149, 107, (289,282,0): 137, 144, 103, (289,283,0): 129, 135, 97, (289,284,0): 124, 128, 91, (289,285,0): 122, 128, 92, (289,286,0): 126, 130, 95, (289,287,0): 128, 136, 99, (289,288,0): 143, 155, 117, (289,289,0): 139, 155, 116, (289,290,0): 138, 153, 114, (289,291,0): 132, 147, 108, (289,292,0): 129, 141, 105, (289,293,0): 128, 140, 104, (289,294,0): 128, 142, 109, (289,295,0): 131, 145, 112, (289,296,0): 134, 147, 117, (289,297,0): 140, 157, 125, (289,298,0): 147, 166, 136, (289,299,0): 150, 173, 144, (289,300,0): 149, 174, 145, (289,301,0): 148, 174, 145, (289,302,0): 148, 177, 147, (289,303,0): 150, 179, 149, (289,304,0): 157, 184, 153, (289,305,0): 161, 188, 157, (289,306,0): 165, 196, 164, (289,307,0): 167, 204, 170, (289,308,0): 162, 203, 169, (289,309,0): 157, 204, 168, (289,310,0): 162, 217, 178, (289,311,0): 174, 232, 192, (289,312,0): 185, 245, 207, (289,313,0): 190, 252, 213, (289,314,0): 197, 255, 221, (289,315,0): 201, 255, 223, (289,316,0): 197, 253, 218, (289,317,0): 189, 243, 209, (289,318,0): 182, 231, 199, (289,319,0): 176, 225, 193, (289,320,0): 169, 219, 184, (289,321,0): 164, 211, 177, (289,322,0): 158, 201, 171, (289,323,0): 155, 194, 165, (289,324,0): 155, 191, 165, (289,325,0): 156, 190, 166, (289,326,0): 155, 190, 170, (289,327,0): 154, 188, 171, (289,328,0): 152, 189, 172, (289,329,0): 148, 186, 173, (289,330,0): 146, 184, 173, (289,331,0): 143, 178, 171, (289,332,0): 141, 172, 167, (289,333,0): 132, 161, 159, (289,334,0): 124, 148, 150, (289,335,0): 117, 138, 141, (289,336,0): 110, 125, 130, (289,337,0): 107, 120, 126, (289,338,0): 104, 117, 123, (289,339,0): 102, 115, 121, (289,340,0): 105, 116, 122, (289,341,0): 105, 116, 122, (289,342,0): 103, 114, 120, (289,343,0): 101, 112, 118, (289,344,0): 95, 104, 111, (289,345,0): 93, 102, 109, (289,346,0): 90, 97, 105, (289,347,0): 86, 93, 101, (289,348,0): 83, 90, 98, (289,349,0): 80, 87, 95, (289,350,0): 81, 85, 94, (289,351,0): 80, 84, 93, (289,352,0): 78, 83, 89, (289,353,0): 79, 84, 90, (289,354,0): 79, 84, 90, (289,355,0): 79, 84, 90, (289,356,0): 77, 84, 90, (289,357,0): 78, 85, 91, (289,358,0): 78, 86, 89, (289,359,0): 78, 86, 89, (289,360,0): 79, 89, 90, (289,361,0): 84, 94, 95, (289,362,0): 93, 105, 105, (289,363,0): 104, 116, 116, (289,364,0): 115, 127, 127, (289,365,0): 121, 133, 131, (289,366,0): 121, 136, 133, (289,367,0): 120, 134, 135, (289,368,0): 117, 127, 137, (289,369,0): 115, 124, 139, (289,370,0): 112, 119, 137, (289,371,0): 109, 116, 132, (289,372,0): 108, 114, 130, (289,373,0): 107, 113, 129, (289,374,0): 110, 113, 130, (289,375,0): 111, 112, 130, (289,376,0): 118, 117, 133, (289,377,0): 120, 119, 135, (289,378,0): 124, 122, 136, (289,379,0): 125, 123, 137, (289,380,0): 124, 120, 135, (289,381,0): 120, 116, 131, (289,382,0): 117, 110, 126, (289,383,0): 115, 106, 123, (289,384,0): 116, 104, 124, (289,385,0): 117, 104, 124, (289,386,0): 115, 103, 125, (289,387,0): 112, 103, 124, (289,388,0): 111, 101, 125, (289,389,0): 108, 100, 124, (289,390,0): 105, 100, 123, (289,391,0): 104, 99, 122, (289,392,0): 106, 101, 123, (289,393,0): 105, 100, 120, (289,394,0): 105, 97, 118, (289,395,0): 102, 95, 111, (289,396,0): 102, 91, 108, (289,397,0): 97, 86, 102, (289,398,0): 94, 82, 96, (289,399,0): 93, 79, 92, (289,400,0): 95, 79, 92, (289,401,0): 96, 80, 93, (289,402,0): 95, 81, 94, (289,403,0): 95, 85, 96, (289,404,0): 93, 87, 97, (289,405,0): 92, 89, 98, (289,406,0): 92, 91, 99, (289,407,0): 91, 91, 99, (289,408,0): 96, 96, 104, (289,409,0): 99, 98, 106, (289,410,0): 104, 98, 108, (289,411,0): 110, 100, 111, (289,412,0): 114, 98, 111, (289,413,0): 116, 95, 110, (289,414,0): 116, 92, 108, (289,415,0): 117, 89, 103, (289,416,0): 116, 86, 94, (289,417,0): 110, 79, 84, (289,418,0): 100, 69, 74, (289,419,0): 91, 60, 65, (289,420,0): 84, 54, 56, (289,421,0): 81, 51, 53, (289,422,0): 78, 48, 50, (289,423,0): 77, 47, 49, (289,424,0): 74, 44, 44, (289,425,0): 75, 45, 45, (289,426,0): 76, 46, 44, (289,427,0): 78, 48, 46, (289,428,0): 80, 50, 48, (289,429,0): 81, 51, 49, (289,430,0): 83, 54, 50, (289,431,0): 82, 54, 50, (289,432,0): 85, 60, 56, (289,433,0): 86, 61, 57, (289,434,0): 87, 62, 57, (289,435,0): 91, 64, 57, (289,436,0): 95, 65, 57, (289,437,0): 99, 66, 57, (289,438,0): 101, 67, 57, (289,439,0): 104, 68, 56, (289,440,0): 112, 72, 62, (289,441,0): 114, 74, 64, (289,442,0): 119, 76, 67, (289,443,0): 121, 76, 70, (289,444,0): 123, 75, 71, (289,445,0): 124, 76, 74, (289,446,0): 128, 80, 80, (289,447,0): 129, 83, 83, (289,448,0): 123, 82, 80, (289,449,0): 123, 81, 82, (289,450,0): 126, 82, 83, (289,451,0): 128, 83, 86, (289,452,0): 131, 86, 89, (289,453,0): 130, 90, 91, (289,454,0): 129, 93, 93, (289,455,0): 127, 96, 94, (289,456,0): 131, 102, 98, (289,457,0): 128, 98, 96, (289,458,0): 124, 93, 91, (289,459,0): 120, 86, 87, (289,460,0): 115, 80, 86, (289,461,0): 110, 77, 86, (289,462,0): 107, 75, 88, (289,463,0): 105, 75, 85, (289,464,0): 107, 76, 81, (289,465,0): 105, 77, 76, (289,466,0): 100, 75, 78, (289,467,0): 96, 76, 77, (289,468,0): 94, 75, 79, (289,469,0): 92, 76, 77, (289,470,0): 92, 76, 77, (289,471,0): 95, 77, 75, (289,472,0): 96, 77, 71, (289,473,0): 96, 78, 68, (289,474,0): 98, 78, 67, (289,475,0): 99, 79, 68, (289,476,0): 101, 83, 73, (289,477,0): 104, 87, 77, (289,478,0): 105, 90, 83, (289,479,0): 104, 94, 85, (289,480,0): 112, 103, 94, (289,481,0): 115, 107, 96, (289,482,0): 119, 111, 100, (289,483,0): 119, 112, 102, (289,484,0): 117, 110, 102, (289,485,0): 113, 108, 102, (289,486,0): 114, 109, 105, (289,487,0): 114, 110, 107, (289,488,0): 107, 105, 106, (289,489,0): 110, 110, 112, (289,490,0): 114, 115, 120, (289,491,0): 116, 121, 127, (289,492,0): 121, 125, 134, (289,493,0): 124, 131, 141, (289,494,0): 129, 137, 148, (289,495,0): 131, 141, 151, (289,496,0): 136, 144, 157, (289,497,0): 136, 144, 157, (289,498,0): 137, 143, 155, (289,499,0): 138, 145, 155, (289,500,0): 144, 148, 157, (289,501,0): 149, 154, 160, (289,502,0): 154, 158, 167, (289,503,0): 155, 162, 170, (289,504,0): 151, 159, 170, (289,505,0): 155, 167, 181, (289,506,0): 161, 174, 193, (289,507,0): 159, 175, 200, (289,508,0): 152, 173, 202, (289,509,0): 147, 171, 205, (289,510,0): 149, 175, 212, (289,511,0): 152, 177, 218, (289,512,0): 154, 177, 221, (289,513,0): 155, 178, 222, (289,514,0): 154, 178, 224, (289,515,0): 153, 177, 223, (289,516,0): 151, 177, 226, (289,517,0): 154, 180, 229, (289,518,0): 158, 186, 236, (289,519,0): 161, 191, 241, (289,520,0): 160, 192, 241, (289,521,0): 160, 192, 241, (289,522,0): 162, 196, 242, (289,523,0): 165, 202, 246, (289,524,0): 171, 208, 252, (289,525,0): 174, 211, 253, (289,526,0): 172, 211, 250, (289,527,0): 168, 210, 248, (289,528,0): 163, 209, 245, (289,529,0): 160, 206, 242, (289,530,0): 157, 200, 242, (289,531,0): 155, 196, 240, (289,532,0): 155, 193, 242, (289,533,0): 153, 187, 235, (289,534,0): 149, 180, 227, (289,535,0): 147, 174, 217, (289,536,0): 147, 169, 208, (289,537,0): 147, 166, 198, (289,538,0): 147, 161, 188, (289,539,0): 146, 157, 179, (289,540,0): 146, 154, 173, (289,541,0): 147, 152, 171, (289,542,0): 150, 153, 172, (289,543,0): 152, 155, 172, (289,544,0): 151, 154, 171, (289,545,0): 151, 154, 171, (289,546,0): 150, 153, 170, (289,547,0): 151, 153, 168, (289,548,0): 151, 150, 168, (289,549,0): 149, 146, 163, (289,550,0): 145, 141, 158, (289,551,0): 141, 137, 152, (289,552,0): 139, 135, 150, (289,553,0): 136, 132, 146, (289,554,0): 131, 127, 141, (289,555,0): 126, 124, 137, (289,556,0): 126, 124, 137, (289,557,0): 129, 129, 139, (289,558,0): 134, 134, 146, (289,559,0): 136, 138, 151, (289,560,0): 128, 133, 152, (289,561,0): 127, 135, 156, (289,562,0): 126, 138, 160, (289,563,0): 128, 143, 166, (289,564,0): 134, 150, 175, (289,565,0): 138, 158, 182, (289,566,0): 143, 165, 189, (289,567,0): 147, 169, 193, (289,568,0): 147, 167, 192, (289,569,0): 145, 162, 188, (289,570,0): 145, 157, 183, (289,571,0): 147, 154, 182, (289,572,0): 149, 153, 180, (289,573,0): 147, 147, 173, (289,574,0): 139, 135, 160, (289,575,0): 134, 126, 147, (289,576,0): 121, 113, 126, (289,577,0): 108, 101, 108, (289,578,0): 93, 86, 93, (289,579,0): 86, 79, 86, (289,580,0): 88, 79, 84, (289,581,0): 88, 79, 84, (289,582,0): 84, 75, 78, (289,583,0): 78, 69, 72, (289,584,0): 78, 67, 71, (289,585,0): 76, 65, 69, (289,586,0): 74, 62, 64, (289,587,0): 69, 57, 59, (289,588,0): 66, 54, 54, (289,589,0): 63, 51, 51, (289,590,0): 64, 50, 50, (289,591,0): 63, 49, 49, (289,592,0): 57, 41, 42, (289,593,0): 56, 40, 41, (289,594,0): 56, 40, 41, (289,595,0): 56, 40, 41, (289,596,0): 57, 41, 42, (289,597,0): 58, 42, 43, (289,598,0): 60, 44, 45, (289,599,0): 61, 45, 46, (290,0,0): 61, 49, 53, (290,1,0): 61, 49, 53, (290,2,0): 63, 48, 53, (290,3,0): 63, 48, 53, (290,4,0): 63, 48, 53, (290,5,0): 63, 48, 53, (290,6,0): 64, 47, 53, (290,7,0): 64, 47, 53, (290,8,0): 65, 46, 52, (290,9,0): 64, 45, 51, (290,10,0): 64, 45, 51, (290,11,0): 64, 45, 51, (290,12,0): 66, 45, 52, (290,13,0): 68, 47, 54, (290,14,0): 70, 49, 56, (290,15,0): 74, 49, 55, (290,16,0): 80, 45, 52, (290,17,0): 84, 44, 52, (290,18,0): 84, 44, 52, (290,19,0): 85, 45, 53, (290,20,0): 86, 46, 54, (290,21,0): 85, 48, 55, (290,22,0): 85, 50, 56, (290,23,0): 85, 50, 56, (290,24,0): 81, 49, 54, (290,25,0): 80, 48, 53, (290,26,0): 79, 48, 53, (290,27,0): 78, 47, 52, (290,28,0): 78, 49, 53, (290,29,0): 79, 50, 54, (290,30,0): 79, 53, 56, (290,31,0): 80, 54, 57, (290,32,0): 79, 50, 55, (290,33,0): 79, 49, 57, (290,34,0): 81, 50, 56, (290,35,0): 81, 50, 56, (290,36,0): 82, 51, 57, (290,37,0): 82, 51, 56, (290,38,0): 84, 52, 55, (290,39,0): 84, 52, 55, (290,40,0): 87, 53, 54, (290,41,0): 88, 54, 53, (290,42,0): 88, 54, 52, (290,43,0): 89, 55, 53, (290,44,0): 91, 56, 52, (290,45,0): 92, 57, 53, (290,46,0): 93, 58, 52, (290,47,0): 93, 59, 50, (290,48,0): 99, 62, 53, (290,49,0): 99, 63, 51, (290,50,0): 101, 63, 50, (290,51,0): 104, 65, 50, (290,52,0): 109, 67, 53, (290,53,0): 113, 70, 53, (290,54,0): 118, 73, 54, (290,55,0): 120, 75, 52, (290,56,0): 124, 78, 54, (290,57,0): 126, 81, 52, (290,58,0): 130, 85, 54, (290,59,0): 132, 89, 54, (290,60,0): 134, 94, 58, (290,61,0): 136, 97, 58, (290,62,0): 137, 98, 57, (290,63,0): 138, 99, 58, (290,64,0): 142, 100, 60, (290,65,0): 143, 99, 60, (290,66,0): 142, 100, 58, (290,67,0): 142, 100, 58, (290,68,0): 143, 101, 59, (290,69,0): 143, 101, 59, (290,70,0): 141, 103, 58, (290,71,0): 141, 103, 58, (290,72,0): 140, 104, 56, (290,73,0): 141, 105, 57, (290,74,0): 142, 106, 58, (290,75,0): 143, 107, 59, (290,76,0): 142, 109, 58, (290,77,0): 143, 110, 59, (290,78,0): 144, 111, 60, (290,79,0): 146, 110, 60, (290,80,0): 151, 111, 62, (290,81,0): 152, 110, 62, (290,82,0): 151, 111, 62, (290,83,0): 150, 110, 61, (290,84,0): 150, 110, 61, (290,85,0): 150, 110, 61, (290,86,0): 147, 109, 60, (290,87,0): 147, 109, 60, (290,88,0): 142, 106, 56, (290,89,0): 143, 107, 57, (290,90,0): 143, 107, 57, (290,91,0): 143, 107, 57, (290,92,0): 142, 109, 58, (290,93,0): 143, 110, 59, (290,94,0): 143, 110, 59, (290,95,0): 142, 110, 61, (290,96,0): 139, 108, 62, (290,97,0): 137, 108, 64, (290,98,0): 137, 108, 64, (290,99,0): 140, 109, 65, (290,100,0): 140, 109, 65, (290,101,0): 140, 109, 65, (290,102,0): 140, 109, 65, (290,103,0): 142, 109, 66, (290,104,0): 145, 112, 69, (290,105,0): 146, 112, 67, (290,106,0): 146, 112, 67, (290,107,0): 145, 111, 66, (290,108,0): 144, 110, 65, (290,109,0): 144, 107, 63, (290,110,0): 141, 104, 60, (290,111,0): 140, 103, 58, (290,112,0): 130, 96, 51, (290,113,0): 132, 98, 53, (290,114,0): 132, 97, 59, (290,115,0): 128, 92, 56, (290,116,0): 124, 88, 56, (290,117,0): 123, 86, 57, (290,118,0): 128, 91, 62, (290,119,0): 133, 97, 63, (290,120,0): 134, 99, 61, (290,121,0): 137, 102, 62, (290,122,0): 142, 108, 63, (290,123,0): 143, 109, 63, (290,124,0): 143, 109, 63, (290,125,0): 143, 109, 64, (290,126,0): 145, 111, 66, (290,127,0): 149, 112, 68, (290,128,0): 154, 116, 71, (290,129,0): 155, 114, 68, (290,130,0): 155, 114, 68, (290,131,0): 154, 113, 67, (290,132,0): 153, 112, 66, (290,133,0): 151, 110, 64, (290,134,0): 151, 110, 64, (290,135,0): 150, 110, 61, (290,136,0): 156, 116, 67, (290,137,0): 156, 116, 67, (290,138,0): 158, 118, 69, (290,139,0): 159, 119, 70, (290,140,0): 159, 119, 68, (290,141,0): 159, 119, 68, (290,142,0): 158, 118, 67, (290,143,0): 158, 118, 67, (290,144,0): 152, 112, 63, (290,145,0): 152, 112, 63, (290,146,0): 151, 111, 62, (290,147,0): 150, 110, 59, (290,148,0): 150, 110, 59, (290,149,0): 151, 111, 60, (290,150,0): 153, 113, 62, (290,151,0): 153, 113, 61, (290,152,0): 153, 113, 61, (290,153,0): 156, 117, 62, (290,154,0): 160, 121, 66, (290,155,0): 163, 124, 69, (290,156,0): 165, 126, 71, (290,157,0): 170, 131, 74, (290,158,0): 176, 137, 80, (290,159,0): 180, 141, 82, (290,160,0): 188, 148, 86, (290,161,0): 189, 151, 86, (290,162,0): 191, 154, 86, (290,163,0): 192, 158, 87, (290,164,0): 194, 160, 89, (290,165,0): 195, 163, 88, (290,166,0): 195, 163, 88, (290,167,0): 193, 164, 86, (290,168,0): 196, 167, 91, (290,169,0): 192, 165, 88, (290,170,0): 188, 160, 87, (290,171,0): 181, 154, 83, (290,172,0): 175, 148, 79, (290,173,0): 168, 143, 76, (290,174,0): 167, 139, 74, (290,175,0): 164, 139, 73, (290,176,0): 164, 144, 75, (290,177,0): 165, 146, 77, (290,178,0): 168, 150, 78, (290,179,0): 170, 152, 78, (290,180,0): 173, 155, 79, (290,181,0): 179, 162, 84, (290,182,0): 187, 170, 88, (290,183,0): 193, 177, 92, (290,184,0): 212, 196, 108, (290,185,0): 219, 204, 113, (290,186,0): 227, 212, 119, (290,187,0): 234, 220, 123, (290,188,0): 237, 223, 124, (290,189,0): 239, 226, 124, (290,190,0): 241, 228, 126, (290,191,0): 244, 228, 130, (290,192,0): 248, 227, 138, (290,193,0): 249, 225, 139, (290,194,0): 245, 223, 137, (290,195,0): 244, 225, 133, (290,196,0): 246, 227, 133, (290,197,0): 247, 233, 136, (290,198,0): 252, 238, 139, (290,199,0): 252, 243, 142, (290,200,0): 255, 251, 148, (290,201,0): 255, 250, 146, (290,202,0): 255, 250, 148, (290,203,0): 254, 252, 149, (290,204,0): 255, 254, 153, (290,205,0): 255, 255, 154, (290,206,0): 254, 255, 154, (290,207,0): 252, 254, 153, (290,208,0): 253, 253, 155, (290,209,0): 253, 253, 155, (290,210,0): 254, 254, 156, (290,211,0): 254, 254, 156, (290,212,0): 254, 254, 156, (290,213,0): 255, 255, 157, (290,214,0): 255, 255, 157, (290,215,0): 255, 255, 157, (290,216,0): 250, 250, 152, (290,217,0): 251, 251, 153, (290,218,0): 253, 253, 155, (290,219,0): 254, 254, 156, (290,220,0): 255, 255, 157, (290,221,0): 254, 254, 156, (290,222,0): 254, 254, 156, (290,223,0): 253, 253, 153, (290,224,0): 255, 255, 154, (290,225,0): 255, 255, 152, (290,226,0): 255, 255, 152, (290,227,0): 255, 255, 152, (290,228,0): 255, 255, 154, (290,229,0): 255, 255, 154, (290,230,0): 255, 255, 154, (290,231,0): 255, 255, 154, (290,232,0): 255, 255, 155, (290,233,0): 255, 255, 155, (290,234,0): 255, 255, 157, (290,235,0): 255, 255, 157, (290,236,0): 255, 255, 157, (290,237,0): 255, 255, 157, (290,238,0): 255, 255, 159, (290,239,0): 255, 255, 159, (290,240,0): 254, 255, 159, (290,241,0): 252, 255, 161, (290,242,0): 252, 255, 161, (290,243,0): 252, 255, 162, (290,244,0): 252, 255, 162, (290,245,0): 252, 255, 164, (290,246,0): 252, 255, 164, (290,247,0): 252, 255, 166, (290,248,0): 252, 255, 168, (290,249,0): 252, 254, 170, (290,250,0): 252, 254, 170, (290,251,0): 253, 255, 172, (290,252,0): 253, 255, 172, (290,253,0): 254, 255, 175, (290,254,0): 254, 255, 175, (290,255,0): 253, 255, 177, (290,256,0): 247, 254, 174, (290,257,0): 241, 253, 169, (290,258,0): 234, 248, 161, (290,259,0): 227, 243, 154, (290,260,0): 221, 240, 148, (290,261,0): 219, 243, 149, (290,262,0): 223, 248, 154, (290,263,0): 226, 253, 160, (290,264,0): 216, 242, 151, (290,265,0): 212, 238, 151, (290,266,0): 204, 229, 148, (290,267,0): 195, 217, 144, (290,268,0): 186, 205, 139, (290,269,0): 182, 197, 138, (290,270,0): 181, 196, 141, (290,271,0): 182, 195, 142, (290,272,0): 175, 188, 134, (290,273,0): 170, 183, 129, (290,274,0): 164, 174, 121, (290,275,0): 156, 169, 116, (290,276,0): 153, 163, 113, (290,277,0): 148, 157, 110, (290,278,0): 140, 149, 102, (290,279,0): 135, 142, 98, (290,280,0): 133, 140, 98, (290,281,0): 134, 139, 99, (290,282,0): 132, 136, 99, (290,283,0): 128, 132, 97, (290,284,0): 124, 125, 91, (290,285,0): 118, 122, 89, (290,286,0): 119, 120, 88, (290,287,0): 116, 122, 88, (290,288,0): 125, 137, 99, (290,289,0): 125, 140, 99, (290,290,0): 130, 142, 104, (290,291,0): 130, 142, 104, (290,292,0): 129, 141, 105, (290,293,0): 130, 142, 106, (290,294,0): 133, 144, 112, (290,295,0): 134, 148, 115, (290,296,0): 134, 147, 117, (290,297,0): 138, 153, 122, (290,298,0): 143, 159, 130, (290,299,0): 145, 165, 137, (290,300,0): 145, 168, 140, (290,301,0): 144, 170, 141, (290,302,0): 142, 171, 141, (290,303,0): 142, 171, 141, (290,304,0): 148, 174, 145, (290,305,0): 150, 179, 149, (290,306,0): 157, 187, 159, (290,307,0): 161, 198, 167, (290,308,0): 158, 199, 169, (290,309,0): 154, 201, 169, (290,310,0): 158, 212, 180, (290,311,0): 169, 226, 193, (290,312,0): 182, 241, 209, (290,313,0): 189, 248, 216, (290,314,0): 199, 255, 226, (290,315,0): 200, 255, 227, (290,316,0): 195, 249, 223, (290,317,0): 186, 239, 213, (290,318,0): 182, 230, 206, (290,319,0): 179, 227, 201, (290,320,0): 171, 217, 188, (290,321,0): 165, 210, 179, (290,322,0): 157, 200, 172, (290,323,0): 154, 192, 167, (290,324,0): 155, 190, 168, (290,325,0): 157, 190, 171, (290,326,0): 158, 191, 172, (290,327,0): 157, 191, 174, (290,328,0): 153, 190, 173, (290,329,0): 151, 187, 175, (290,330,0): 147, 183, 173, (290,331,0): 143, 178, 171, (290,332,0): 140, 171, 166, (290,333,0): 130, 159, 157, (290,334,0): 121, 145, 145, (290,335,0): 116, 135, 139, (290,336,0): 110, 125, 130, (290,337,0): 107, 120, 126, (290,338,0): 105, 116, 122, (290,339,0): 103, 114, 120, (290,340,0): 104, 115, 121, (290,341,0): 104, 115, 121, (290,342,0): 104, 113, 120, (290,343,0): 102, 111, 118, (290,344,0): 95, 102, 110, (290,345,0): 93, 100, 108, (290,346,0): 89, 96, 104, (290,347,0): 86, 93, 101, (290,348,0): 84, 88, 97, (290,349,0): 82, 86, 95, (290,350,0): 81, 85, 94, (290,351,0): 80, 84, 93, (290,352,0): 81, 86, 92, (290,353,0): 80, 85, 91, (290,354,0): 80, 85, 91, (290,355,0): 80, 85, 91, (290,356,0): 78, 85, 91, (290,357,0): 77, 84, 90, (290,358,0): 77, 85, 88, (290,359,0): 77, 85, 88, (290,360,0): 80, 90, 92, (290,361,0): 88, 98, 100, (290,362,0): 99, 110, 112, (290,363,0): 110, 122, 122, (290,364,0): 117, 129, 129, (290,365,0): 121, 133, 133, (290,366,0): 121, 135, 135, (290,367,0): 123, 137, 138, (290,368,0): 120, 130, 140, (290,369,0): 119, 127, 140, (290,370,0): 114, 121, 137, (290,371,0): 110, 118, 131, (290,372,0): 108, 114, 128, (290,373,0): 108, 114, 128, (290,374,0): 111, 114, 129, (290,375,0): 113, 115, 130, (290,376,0): 118, 117, 133, (290,377,0): 119, 118, 134, (290,378,0): 122, 119, 136, (290,379,0): 124, 120, 137, (290,380,0): 124, 117, 135, (290,381,0): 121, 114, 132, (290,382,0): 116, 109, 127, (290,383,0): 115, 106, 125, (290,384,0): 113, 101, 121, (290,385,0): 114, 101, 121, (290,386,0): 112, 100, 122, (290,387,0): 109, 100, 121, (290,388,0): 108, 98, 122, (290,389,0): 107, 99, 122, (290,390,0): 104, 99, 122, (290,391,0): 104, 99, 122, (290,392,0): 105, 100, 122, (290,393,0): 104, 99, 119, (290,394,0): 105, 97, 118, (290,395,0): 102, 95, 111, (290,396,0): 101, 90, 107, (290,397,0): 97, 86, 102, (290,398,0): 94, 82, 96, (290,399,0): 93, 79, 92, (290,400,0): 94, 78, 91, (290,401,0): 95, 79, 90, (290,402,0): 95, 82, 92, (290,403,0): 95, 85, 94, (290,404,0): 96, 89, 97, (290,405,0): 96, 93, 100, (290,406,0): 97, 96, 102, (290,407,0): 98, 97, 103, (290,408,0): 99, 98, 104, (290,409,0): 101, 98, 105, (290,410,0): 106, 99, 107, (290,411,0): 110, 98, 108, (290,412,0): 114, 96, 108, (290,413,0): 116, 94, 107, (290,414,0): 115, 91, 105, (290,415,0): 117, 89, 103, (290,416,0): 112, 82, 90, (290,417,0): 103, 72, 77, (290,418,0): 91, 60, 65, (290,419,0): 83, 52, 57, (290,420,0): 81, 51, 53, (290,421,0): 80, 50, 52, (290,422,0): 78, 48, 50, (290,423,0): 75, 45, 47, (290,424,0): 74, 44, 44, (290,425,0): 74, 44, 44, (290,426,0): 76, 46, 44, (290,427,0): 77, 47, 45, (290,428,0): 79, 49, 47, (290,429,0): 80, 50, 48, (290,430,0): 81, 52, 48, (290,431,0): 81, 53, 49, (290,432,0): 85, 60, 56, (290,433,0): 86, 61, 57, (290,434,0): 89, 61, 57, (290,435,0): 93, 64, 58, (290,436,0): 96, 66, 58, (290,437,0): 101, 68, 59, (290,438,0): 103, 69, 60, (290,439,0): 106, 69, 60, (290,440,0): 116, 76, 68, (290,441,0): 122, 79, 70, (290,442,0): 126, 82, 73, (290,443,0): 130, 81, 76, (290,444,0): 132, 79, 75, (290,445,0): 135, 77, 76, (290,446,0): 139, 79, 79, (290,447,0): 138, 82, 81, (290,448,0): 134, 86, 82, (290,449,0): 129, 88, 82, (290,450,0): 128, 87, 85, (290,451,0): 125, 85, 86, (290,452,0): 124, 88, 90, (290,453,0): 127, 92, 96, (290,454,0): 130, 96, 97, (290,455,0): 129, 97, 98, (290,456,0): 130, 99, 97, (290,457,0): 126, 95, 93, (290,458,0): 122, 88, 87, (290,459,0): 114, 83, 81, (290,460,0): 110, 78, 81, (290,461,0): 106, 77, 81, (290,462,0): 104, 77, 84, (290,463,0): 105, 78, 85, (290,464,0): 106, 77, 79, (290,465,0): 105, 77, 76, (290,466,0): 102, 76, 79, (290,467,0): 98, 76, 78, (290,468,0): 96, 75, 80, (290,469,0): 96, 77, 79, (290,470,0): 96, 77, 79, (290,471,0): 97, 79, 77, (290,472,0): 98, 79, 72, (290,473,0): 100, 80, 71, (290,474,0): 103, 81, 70, (290,475,0): 104, 85, 71, (290,476,0): 107, 89, 77, (290,477,0): 110, 93, 83, (290,478,0): 112, 97, 90, (290,479,0): 111, 101, 92, (290,480,0): 119, 110, 101, (290,481,0): 122, 115, 105, (290,482,0): 127, 120, 110, (290,483,0): 128, 121, 113, (290,484,0): 126, 119, 111, (290,485,0): 122, 117, 111, (290,486,0): 120, 117, 112, (290,487,0): 118, 117, 113, (290,488,0): 113, 111, 112, (290,489,0): 113, 113, 115, (290,490,0): 117, 118, 123, (290,491,0): 121, 126, 132, (290,492,0): 129, 133, 142, (290,493,0): 134, 141, 151, (290,494,0): 138, 146, 157, (290,495,0): 139, 147, 158, (290,496,0): 139, 147, 160, (290,497,0): 139, 147, 160, (290,498,0): 140, 146, 160, (290,499,0): 142, 148, 160, (290,500,0): 146, 153, 163, (290,501,0): 151, 158, 166, (290,502,0): 155, 162, 172, (290,503,0): 157, 166, 175, (290,504,0): 156, 166, 178, (290,505,0): 159, 172, 188, (290,506,0): 163, 178, 197, (290,507,0): 163, 181, 205, (290,508,0): 157, 178, 209, (290,509,0): 153, 177, 213, (290,510,0): 154, 179, 219, (290,511,0): 154, 182, 222, (290,512,0): 156, 180, 224, (290,513,0): 158, 182, 226, (290,514,0): 158, 182, 228, (290,515,0): 157, 181, 227, (290,516,0): 154, 180, 229, (290,517,0): 156, 182, 231, (290,518,0): 159, 187, 237, (290,519,0): 162, 192, 242, (290,520,0): 164, 196, 245, (290,521,0): 163, 195, 244, (290,522,0): 163, 197, 243, (290,523,0): 165, 202, 246, (290,524,0): 171, 208, 252, (290,525,0): 173, 212, 253, (290,526,0): 173, 212, 251, (290,527,0): 170, 212, 250, (290,528,0): 168, 212, 251, (290,529,0): 164, 209, 250, (290,530,0): 163, 206, 249, (290,531,0): 162, 203, 249, (290,532,0): 161, 199, 248, (290,533,0): 156, 192, 242, (290,534,0): 151, 183, 230, (290,535,0): 148, 177, 219, (290,536,0): 151, 175, 213, (290,537,0): 150, 171, 202, (290,538,0): 148, 164, 190, (290,539,0): 146, 158, 180, (290,540,0): 146, 152, 174, (290,541,0): 146, 151, 171, (290,542,0): 148, 149, 170, (290,543,0): 147, 148, 168, (290,544,0): 148, 154, 170, (290,545,0): 148, 156, 169, (290,546,0): 149, 155, 169, (290,547,0): 148, 152, 164, (290,548,0): 147, 146, 162, (290,549,0): 144, 142, 156, (290,550,0): 141, 137, 152, (290,551,0): 139, 135, 149, (290,552,0): 136, 130, 144, (290,553,0): 133, 127, 139, (290,554,0): 128, 122, 134, (290,555,0): 125, 119, 131, (290,556,0): 124, 118, 130, (290,557,0): 124, 121, 130, (290,558,0): 126, 123, 134, (290,559,0): 126, 126, 138, (290,560,0): 116, 119, 136, (290,561,0): 114, 121, 139, (290,562,0): 115, 123, 142, (290,563,0): 116, 129, 148, (290,564,0): 120, 135, 156, (290,565,0): 129, 146, 166, (290,566,0): 138, 156, 178, (290,567,0): 144, 162, 186, (290,568,0): 141, 159, 183, (290,569,0): 140, 156, 179, (290,570,0): 143, 154, 176, (290,571,0): 147, 153, 177, (290,572,0): 148, 150, 173, (290,573,0): 144, 142, 164, (290,574,0): 133, 128, 150, (290,575,0): 125, 118, 136, (290,576,0): 110, 102, 113, (290,577,0): 99, 92, 99, (290,578,0): 87, 80, 87, (290,579,0): 82, 75, 82, (290,580,0): 85, 76, 81, (290,581,0): 85, 76, 81, (290,582,0): 80, 71, 74, (290,583,0): 74, 65, 68, (290,584,0): 75, 64, 68, (290,585,0): 75, 64, 68, (290,586,0): 74, 62, 64, (290,587,0): 72, 60, 62, (290,588,0): 69, 57, 57, (290,589,0): 65, 53, 53, (290,590,0): 64, 50, 50, (290,591,0): 62, 48, 48, (290,592,0): 56, 40, 41, (290,593,0): 55, 39, 40, (290,594,0): 54, 38, 39, (290,595,0): 54, 38, 39, (290,596,0): 54, 38, 39, (290,597,0): 55, 39, 40, (290,598,0): 57, 41, 42, (290,599,0): 58, 42, 43, (291,0,0): 61, 49, 53, (291,1,0): 61, 49, 53, (291,2,0): 63, 48, 53, (291,3,0): 63, 48, 53, (291,4,0): 63, 48, 53, (291,5,0): 63, 48, 53, (291,6,0): 64, 47, 53, (291,7,0): 64, 47, 53, (291,8,0): 65, 46, 52, (291,9,0): 65, 46, 52, (291,10,0): 64, 45, 51, (291,11,0): 64, 45, 51, (291,12,0): 66, 45, 52, (291,13,0): 67, 46, 53, (291,14,0): 69, 48, 55, (291,15,0): 73, 48, 54, (291,16,0): 79, 46, 53, (291,17,0): 83, 46, 53, (291,18,0): 85, 45, 53, (291,19,0): 84, 47, 54, (291,20,0): 84, 47, 54, (291,21,0): 84, 49, 55, (291,22,0): 85, 50, 56, (291,23,0): 83, 51, 56, (291,24,0): 80, 48, 53, (291,25,0): 78, 47, 52, (291,26,0): 78, 47, 52, (291,27,0): 77, 46, 51, (291,28,0): 77, 48, 52, (291,29,0): 78, 49, 53, (291,30,0): 78, 52, 55, (291,31,0): 79, 53, 56, (291,32,0): 79, 50, 55, (291,33,0): 79, 49, 57, (291,34,0): 81, 50, 56, (291,35,0): 81, 50, 56, (291,36,0): 82, 51, 56, (291,37,0): 82, 51, 56, (291,38,0): 84, 52, 55, (291,39,0): 84, 52, 53, (291,40,0): 88, 54, 53, (291,41,0): 89, 55, 54, (291,42,0): 89, 55, 53, (291,43,0): 90, 57, 52, (291,44,0): 92, 57, 53, (291,45,0): 92, 57, 53, (291,46,0): 93, 58, 52, (291,47,0): 93, 59, 50, (291,48,0): 98, 61, 52, (291,49,0): 99, 63, 51, (291,50,0): 102, 64, 51, (291,51,0): 105, 66, 51, (291,52,0): 110, 68, 54, (291,53,0): 115, 72, 55, (291,54,0): 119, 74, 55, (291,55,0): 121, 76, 53, (291,56,0): 126, 80, 56, (291,57,0): 127, 82, 53, (291,58,0): 131, 86, 55, (291,59,0): 134, 90, 55, (291,60,0): 136, 93, 58, (291,61,0): 136, 97, 58, (291,62,0): 137, 98, 57, (291,63,0): 137, 98, 57, (291,64,0): 143, 99, 60, (291,65,0): 143, 99, 60, (291,66,0): 142, 100, 58, (291,67,0): 142, 100, 58, (291,68,0): 143, 101, 59, (291,69,0): 143, 101, 59, (291,70,0): 141, 103, 58, (291,71,0): 141, 103, 58, (291,72,0): 142, 104, 57, (291,73,0): 141, 105, 57, (291,74,0): 142, 106, 58, (291,75,0): 143, 107, 59, (291,76,0): 142, 109, 58, (291,77,0): 143, 110, 59, (291,78,0): 144, 111, 60, (291,79,0): 146, 110, 60, (291,80,0): 151, 111, 62, (291,81,0): 152, 110, 62, (291,82,0): 150, 110, 61, (291,83,0): 149, 109, 60, (291,84,0): 149, 109, 60, (291,85,0): 148, 108, 59, (291,86,0): 145, 107, 58, (291,87,0): 145, 107, 58, (291,88,0): 144, 108, 58, (291,89,0): 144, 108, 58, (291,90,0): 144, 108, 58, (291,91,0): 145, 109, 59, (291,92,0): 143, 110, 59, (291,93,0): 144, 111, 60, (291,94,0): 144, 111, 60, (291,95,0): 143, 111, 62, (291,96,0): 142, 111, 65, (291,97,0): 142, 111, 67, (291,98,0): 142, 111, 67, (291,99,0): 142, 111, 67, (291,100,0): 143, 110, 67, (291,101,0): 143, 110, 65, (291,102,0): 143, 110, 67, (291,103,0): 144, 110, 65, (291,104,0): 148, 114, 69, (291,105,0): 150, 113, 68, (291,106,0): 150, 113, 68, (291,107,0): 150, 113, 68, (291,108,0): 149, 112, 67, (291,109,0): 148, 111, 66, (291,110,0): 147, 109, 64, (291,111,0): 145, 109, 61, (291,112,0): 136, 100, 52, (291,113,0): 134, 100, 54, (291,114,0): 133, 98, 58, (291,115,0): 129, 94, 56, (291,116,0): 125, 89, 55, (291,117,0): 125, 89, 57, (291,118,0): 129, 93, 61, (291,119,0): 134, 98, 62, (291,120,0): 135, 100, 60, (291,121,0): 139, 105, 60, (291,122,0): 143, 109, 63, (291,123,0): 145, 111, 63, (291,124,0): 146, 112, 64, (291,125,0): 146, 112, 66, (291,126,0): 148, 114, 68, (291,127,0): 153, 116, 71, (291,128,0): 155, 117, 70, (291,129,0): 157, 117, 68, (291,130,0): 157, 116, 70, (291,131,0): 157, 117, 68, (291,132,0): 155, 114, 68, (291,133,0): 154, 114, 65, (291,134,0): 152, 112, 63, (291,135,0): 151, 111, 62, (291,136,0): 158, 118, 69, (291,137,0): 159, 119, 70, (291,138,0): 160, 120, 71, (291,139,0): 160, 120, 71, (291,140,0): 160, 120, 69, (291,141,0): 159, 119, 68, (291,142,0): 158, 118, 67, (291,143,0): 157, 117, 66, (291,144,0): 154, 114, 63, (291,145,0): 153, 113, 62, (291,146,0): 152, 112, 61, (291,147,0): 151, 111, 59, (291,148,0): 151, 111, 60, (291,149,0): 151, 111, 59, (291,150,0): 152, 112, 60, (291,151,0): 153, 114, 59, (291,152,0): 155, 116, 61, (291,153,0): 159, 120, 63, (291,154,0): 163, 124, 67, (291,155,0): 166, 127, 70, (291,156,0): 169, 130, 73, (291,157,0): 174, 135, 76, (291,158,0): 180, 141, 84, (291,159,0): 185, 146, 87, (291,160,0): 192, 152, 90, (291,161,0): 194, 155, 90, (291,162,0): 195, 156, 89, (291,163,0): 196, 159, 89, (291,164,0): 197, 160, 90, (291,165,0): 195, 161, 89, (291,166,0): 194, 160, 86, (291,167,0): 193, 161, 84, (291,168,0): 193, 161, 86, (291,169,0): 188, 159, 83, (291,170,0): 183, 153, 80, (291,171,0): 177, 147, 75, (291,172,0): 173, 144, 74, (291,173,0): 171, 142, 74, (291,174,0): 171, 142, 76, (291,175,0): 170, 143, 76, (291,176,0): 173, 151, 78, (291,177,0): 174, 155, 79, (291,178,0): 177, 158, 82, (291,179,0): 181, 162, 85, (291,180,0): 185, 166, 87, (291,181,0): 192, 174, 92, (291,182,0): 201, 183, 99, (291,183,0): 208, 190, 104, (291,184,0): 225, 208, 118, (291,185,0): 231, 214, 122, (291,186,0): 237, 221, 126, (291,187,0): 241, 225, 130, (291,188,0): 242, 226, 130, (291,189,0): 243, 227, 129, (291,190,0): 244, 228, 130, (291,191,0): 248, 229, 134, (291,192,0): 249, 228, 137, (291,193,0): 250, 226, 138, (291,194,0): 246, 225, 136, (291,195,0): 245, 226, 134, (291,196,0): 247, 228, 134, (291,197,0): 248, 234, 137, (291,198,0): 251, 237, 138, (291,199,0): 251, 242, 141, (291,200,0): 255, 248, 145, (291,201,0): 255, 250, 148, (291,202,0): 255, 251, 149, (291,203,0): 255, 253, 152, (291,204,0): 255, 255, 154, (291,205,0): 255, 255, 155, (291,206,0): 254, 255, 157, (291,207,0): 253, 255, 156, (291,208,0): 255, 255, 157, (291,209,0): 255, 255, 157, (291,210,0): 255, 255, 157, (291,211,0): 255, 255, 157, (291,212,0): 255, 255, 158, (291,213,0): 255, 255, 158, (291,214,0): 255, 255, 158, (291,215,0): 255, 255, 158, (291,216,0): 250, 250, 152, (291,217,0): 251, 251, 153, (291,218,0): 253, 253, 155, (291,219,0): 254, 254, 156, (291,220,0): 255, 255, 157, (291,221,0): 254, 254, 156, (291,222,0): 254, 254, 156, (291,223,0): 253, 253, 153, (291,224,0): 255, 255, 154, (291,225,0): 255, 255, 152, (291,226,0): 255, 255, 152, (291,227,0): 255, 255, 154, (291,228,0): 255, 255, 154, (291,229,0): 255, 255, 154, (291,230,0): 255, 255, 154, (291,231,0): 255, 255, 155, (291,232,0): 255, 255, 155, (291,233,0): 255, 255, 157, (291,234,0): 255, 255, 157, (291,235,0): 255, 255, 157, (291,236,0): 255, 255, 157, (291,237,0): 255, 255, 159, (291,238,0): 255, 255, 159, (291,239,0): 254, 255, 161, (291,240,0): 252, 255, 161, (291,241,0): 252, 255, 162, (291,242,0): 252, 255, 164, (291,243,0): 252, 255, 164, (291,244,0): 252, 255, 166, (291,245,0): 252, 255, 166, (291,246,0): 252, 255, 168, (291,247,0): 252, 255, 168, (291,248,0): 252, 254, 170, (291,249,0): 252, 254, 171, (291,250,0): 252, 253, 173, (291,251,0): 253, 254, 174, (291,252,0): 253, 254, 176, (291,253,0): 254, 255, 177, (291,254,0): 254, 255, 179, (291,255,0): 253, 255, 179, (291,256,0): 249, 255, 179, (291,257,0): 247, 255, 178, (291,258,0): 241, 252, 173, (291,259,0): 233, 246, 164, (291,260,0): 222, 240, 154, (291,261,0): 219, 239, 150, (291,262,0): 219, 242, 154, (291,263,0): 221, 245, 157, (291,264,0): 208, 234, 147, (291,265,0): 206, 231, 148, (291,266,0): 201, 225, 149, (291,267,0): 192, 215, 143, (291,268,0): 183, 204, 139, (291,269,0): 177, 197, 136, (291,270,0): 178, 195, 140, (291,271,0): 182, 196, 143, (291,272,0): 176, 188, 138, (291,273,0): 172, 182, 132, (291,274,0): 163, 173, 123, (291,275,0): 156, 166, 116, (291,276,0): 151, 160, 113, (291,277,0): 144, 153, 108, (291,278,0): 137, 144, 100, (291,279,0): 130, 137, 95, (291,280,0): 127, 132, 92, (291,281,0): 128, 132, 95, (291,282,0): 130, 131, 97, (291,283,0): 129, 130, 98, (291,284,0): 126, 127, 95, (291,285,0): 123, 124, 93, (291,286,0): 121, 122, 91, (291,287,0): 117, 121, 88, (291,288,0): 113, 123, 86, (291,289,0): 115, 130, 89, (291,290,0): 123, 135, 97, (291,291,0): 128, 140, 102, (291,292,0): 129, 141, 105, (291,293,0): 130, 142, 106, (291,294,0): 132, 143, 109, (291,295,0): 135, 146, 114, (291,296,0): 134, 147, 117, (291,297,0): 135, 150, 119, (291,298,0): 137, 153, 124, (291,299,0): 138, 159, 128, (291,300,0): 139, 162, 133, (291,301,0): 140, 165, 136, (291,302,0): 138, 164, 135, (291,303,0): 135, 164, 134, (291,304,0): 140, 166, 139, (291,305,0): 141, 169, 144, (291,306,0): 149, 179, 155, (291,307,0): 153, 189, 163, (291,308,0): 151, 194, 167, (291,309,0): 150, 196, 170, (291,310,0): 155, 208, 180, (291,311,0): 167, 221, 195, (291,312,0): 181, 237, 212, (291,313,0): 187, 245, 221, (291,314,0): 198, 253, 232, (291,315,0): 198, 253, 232, (291,316,0): 192, 243, 226, (291,317,0): 183, 234, 217, (291,318,0): 181, 229, 215, (291,319,0): 182, 229, 211, (291,320,0): 171, 216, 193, (291,321,0): 164, 208, 183, (291,322,0): 155, 197, 173, (291,323,0): 151, 189, 168, (291,324,0): 152, 186, 169, (291,325,0): 153, 186, 169, (291,326,0): 154, 186, 171, (291,327,0): 154, 186, 171, (291,328,0): 152, 186, 172, (291,329,0): 148, 184, 172, (291,330,0): 144, 180, 168, (291,331,0): 143, 176, 167, (291,332,0): 139, 168, 163, (291,333,0): 131, 157, 154, (291,334,0): 122, 144, 142, (291,335,0): 115, 135, 136, (291,336,0): 109, 124, 129, (291,337,0): 106, 119, 125, (291,338,0): 104, 115, 121, (291,339,0): 102, 113, 119, (291,340,0): 103, 114, 120, (291,341,0): 103, 114, 120, (291,342,0): 103, 112, 119, (291,343,0): 101, 110, 117, (291,344,0): 93, 100, 108, (291,345,0): 92, 99, 107, (291,346,0): 88, 95, 103, (291,347,0): 85, 92, 100, (291,348,0): 84, 88, 97, (291,349,0): 82, 86, 95, (291,350,0): 81, 85, 94, (291,351,0): 81, 85, 94, (291,352,0): 82, 87, 93, (291,353,0): 82, 87, 93, (291,354,0): 81, 86, 92, (291,355,0): 81, 86, 92, (291,356,0): 78, 85, 91, (291,357,0): 77, 84, 90, (291,358,0): 76, 84, 87, (291,359,0): 76, 84, 87, (291,360,0): 79, 89, 91, (291,361,0): 89, 99, 101, (291,362,0): 101, 112, 114, (291,363,0): 111, 122, 124, (291,364,0): 116, 127, 129, (291,365,0): 119, 131, 131, (291,366,0): 119, 133, 134, (291,367,0): 122, 136, 139, (291,368,0): 124, 133, 142, (291,369,0): 121, 129, 140, (291,370,0): 116, 124, 137, (291,371,0): 111, 119, 132, (291,372,0): 110, 116, 130, (291,373,0): 112, 115, 130, (291,374,0): 114, 116, 131, (291,375,0): 115, 117, 132, (291,376,0): 118, 117, 133, (291,377,0): 120, 117, 134, (291,378,0): 122, 118, 135, (291,379,0): 123, 119, 136, (291,380,0): 123, 116, 134, (291,381,0): 120, 113, 131, (291,382,0): 116, 109, 127, (291,383,0): 115, 106, 125, (291,384,0): 112, 99, 119, (291,385,0): 111, 98, 118, (291,386,0): 110, 96, 119, (291,387,0): 108, 96, 118, (291,388,0): 106, 96, 120, (291,389,0): 105, 97, 120, (291,390,0): 106, 98, 122, (291,391,0): 104, 99, 121, (291,392,0): 105, 100, 122, (291,393,0): 104, 99, 119, (291,394,0): 104, 97, 115, (291,395,0): 103, 94, 111, (291,396,0): 101, 90, 106, (291,397,0): 96, 85, 99, (291,398,0): 94, 82, 94, (291,399,0): 92, 79, 89, (291,400,0): 93, 77, 88, (291,401,0): 94, 78, 89, (291,402,0): 94, 81, 91, (291,403,0): 96, 86, 95, (291,404,0): 98, 91, 99, (291,405,0): 101, 96, 103, (291,406,0): 103, 100, 107, (291,407,0): 104, 103, 109, (291,408,0): 103, 100, 107, (291,409,0): 104, 101, 108, (291,410,0): 107, 100, 108, (291,411,0): 110, 98, 108, (291,412,0): 113, 95, 107, (291,413,0): 114, 92, 105, (291,414,0): 113, 89, 103, (291,415,0): 115, 87, 99, (291,416,0): 108, 79, 84, (291,417,0): 98, 67, 72, (291,418,0): 85, 54, 59, (291,419,0): 79, 48, 53, (291,420,0): 80, 50, 52, (291,421,0): 82, 52, 54, (291,422,0): 80, 50, 52, (291,423,0): 77, 47, 49, (291,424,0): 77, 47, 47, (291,425,0): 77, 47, 47, (291,426,0): 78, 48, 46, (291,427,0): 79, 49, 47, (291,428,0): 80, 50, 48, (291,429,0): 82, 52, 50, (291,430,0): 83, 54, 50, (291,431,0): 82, 54, 50, (291,432,0): 87, 59, 56, (291,433,0): 88, 60, 57, (291,434,0): 91, 62, 58, (291,435,0): 94, 63, 60, (291,436,0): 99, 66, 61, (291,437,0): 103, 68, 62, (291,438,0): 106, 69, 63, (291,439,0): 107, 70, 62, (291,440,0): 114, 75, 68, (291,441,0): 121, 78, 71, (291,442,0): 129, 80, 73, (291,443,0): 134, 81, 75, (291,444,0): 138, 77, 74, (291,445,0): 144, 76, 75, (291,446,0): 150, 76, 77, (291,447,0): 150, 79, 77, (291,448,0): 152, 89, 82, (291,449,0): 148, 94, 84, (291,450,0): 144, 93, 90, (291,451,0): 135, 89, 89, (291,452,0): 132, 90, 94, (291,453,0): 134, 95, 100, (291,454,0): 133, 97, 101, (291,455,0): 129, 94, 98, (291,456,0): 127, 93, 94, (291,457,0): 123, 89, 88, (291,458,0): 117, 83, 82, (291,459,0): 109, 78, 76, (291,460,0): 105, 75, 77, (291,461,0): 101, 74, 79, (291,462,0): 102, 77, 83, (291,463,0): 103, 78, 84, (291,464,0): 108, 79, 83, (291,465,0): 107, 78, 80, (291,466,0): 104, 78, 81, (291,467,0): 100, 78, 81, (291,468,0): 99, 78, 83, (291,469,0): 98, 79, 81, (291,470,0): 99, 80, 82, (291,471,0): 101, 81, 80, (291,472,0): 102, 82, 75, (291,473,0): 106, 84, 73, (291,474,0): 108, 86, 73, (291,475,0): 111, 89, 76, (291,476,0): 113, 93, 82, (291,477,0): 115, 99, 86, (291,478,0): 115, 101, 92, (291,479,0): 114, 104, 95, (291,480,0): 124, 115, 106, (291,481,0): 128, 121, 113, (291,482,0): 133, 126, 118, (291,483,0): 133, 128, 122, (291,484,0): 131, 126, 120, (291,485,0): 127, 124, 119, (291,486,0): 124, 123, 119, (291,487,0): 123, 123, 121, (291,488,0): 120, 120, 122, (291,489,0): 119, 120, 124, (291,490,0): 120, 123, 130, (291,491,0): 128, 132, 141, (291,492,0): 137, 144, 154, (291,493,0): 145, 152, 162, (291,494,0): 147, 155, 166, (291,495,0): 148, 156, 169, (291,496,0): 147, 154, 170, (291,497,0): 147, 154, 170, (291,498,0): 148, 154, 170, (291,499,0): 149, 155, 169, (291,500,0): 151, 157, 169, (291,501,0): 154, 160, 172, (291,502,0): 157, 163, 175, (291,503,0): 158, 166, 177, (291,504,0): 160, 172, 186, (291,505,0): 163, 176, 193, (291,506,0): 164, 180, 203, (291,507,0): 164, 181, 207, (291,508,0): 160, 180, 213, (291,509,0): 156, 180, 216, (291,510,0): 156, 181, 221, (291,511,0): 157, 185, 225, (291,512,0): 160, 184, 228, (291,513,0): 162, 186, 230, (291,514,0): 163, 187, 233, (291,515,0): 160, 187, 232, (291,516,0): 158, 184, 233, (291,517,0): 158, 186, 234, (291,518,0): 160, 190, 240, (291,519,0): 163, 193, 243, (291,520,0): 168, 200, 249, (291,521,0): 165, 199, 247, (291,522,0): 163, 200, 245, (291,523,0): 166, 203, 247, (291,524,0): 170, 209, 252, (291,525,0): 174, 213, 254, (291,526,0): 175, 214, 253, (291,527,0): 173, 215, 255, (291,528,0): 169, 212, 254, (291,529,0): 167, 212, 254, (291,530,0): 166, 209, 254, (291,531,0): 165, 207, 255, (291,532,0): 163, 203, 254, (291,533,0): 159, 195, 245, (291,534,0): 153, 185, 232, (291,535,0): 149, 178, 220, (291,536,0): 149, 175, 212, (291,537,0): 150, 171, 202, (291,538,0): 149, 165, 191, (291,539,0): 149, 161, 183, (291,540,0): 150, 156, 178, (291,541,0): 149, 151, 172, (291,542,0): 147, 145, 167, (291,543,0): 141, 142, 162, (291,544,0): 139, 147, 160, (291,545,0): 141, 151, 161, (291,546,0): 146, 152, 164, (291,547,0): 147, 151, 162, (291,548,0): 145, 147, 159, (291,549,0): 142, 140, 153, (291,550,0): 139, 135, 149, (291,551,0): 138, 132, 144, (291,552,0): 134, 126, 139, (291,553,0): 132, 122, 133, (291,554,0): 127, 117, 128, (291,555,0): 123, 115, 126, (291,556,0): 122, 114, 125, (291,557,0): 122, 115, 123, (291,558,0): 120, 115, 122, (291,559,0): 117, 114, 123, (291,560,0): 111, 113, 126, (291,561,0): 108, 114, 128, (291,562,0): 108, 114, 130, (291,563,0): 108, 117, 134, (291,564,0): 112, 124, 140, (291,565,0): 119, 135, 151, (291,566,0): 131, 146, 165, (291,567,0): 138, 155, 173, (291,568,0): 136, 151, 172, (291,569,0): 138, 151, 170, (291,570,0): 141, 149, 168, (291,571,0): 142, 147, 166, (291,572,0): 141, 142, 162, (291,573,0): 134, 131, 150, (291,574,0): 123, 116, 134, (291,575,0): 112, 106, 120, (291,576,0): 100, 93, 101, (291,577,0): 92, 85, 92, (291,578,0): 83, 76, 83, (291,579,0): 80, 73, 80, (291,580,0): 83, 74, 79, (291,581,0): 82, 73, 78, (291,582,0): 77, 68, 71, (291,583,0): 72, 63, 66, (291,584,0): 71, 60, 64, (291,585,0): 72, 61, 65, (291,586,0): 74, 62, 64, (291,587,0): 73, 61, 63, (291,588,0): 71, 59, 59, (291,589,0): 66, 54, 54, (291,590,0): 64, 50, 50, (291,591,0): 61, 47, 47, (291,592,0): 55, 39, 40, (291,593,0): 54, 38, 39, (291,594,0): 53, 37, 38, (291,595,0): 52, 36, 37, (291,596,0): 52, 36, 37, (291,597,0): 52, 36, 37, (291,598,0): 53, 37, 38, (291,599,0): 54, 38, 39, (292,0,0): 61, 49, 53, (292,1,0): 61, 49, 53, (292,2,0): 61, 49, 53, (292,3,0): 61, 49, 53, (292,4,0): 63, 48, 53, (292,5,0): 63, 48, 53, (292,6,0): 63, 48, 53, (292,7,0): 63, 48, 53, (292,8,0): 64, 47, 53, (292,9,0): 64, 47, 53, (292,10,0): 65, 46, 52, (292,11,0): 65, 46, 52, (292,12,0): 65, 46, 52, (292,13,0): 66, 47, 53, (292,14,0): 68, 47, 54, (292,15,0): 72, 47, 53, (292,16,0): 80, 47, 54, (292,17,0): 82, 47, 53, (292,18,0): 83, 46, 53, (292,19,0): 82, 47, 53, (292,20,0): 83, 48, 54, (292,21,0): 81, 49, 54, (292,22,0): 81, 49, 54, (292,23,0): 81, 49, 54, (292,24,0): 79, 47, 52, (292,25,0): 77, 46, 51, (292,26,0): 77, 46, 51, (292,27,0): 75, 46, 50, (292,28,0): 76, 47, 51, (292,29,0): 77, 48, 52, (292,30,0): 77, 51, 54, (292,31,0): 78, 52, 55, (292,32,0): 79, 50, 55, (292,33,0): 80, 49, 55, (292,34,0): 81, 50, 56, (292,35,0): 81, 50, 56, (292,36,0): 83, 51, 56, (292,37,0): 83, 51, 56, (292,38,0): 84, 52, 55, (292,39,0): 84, 52, 53, (292,40,0): 90, 56, 55, (292,41,0): 90, 56, 55, (292,42,0): 91, 56, 54, (292,43,0): 92, 57, 53, (292,44,0): 92, 57, 53, (292,45,0): 92, 57, 51, (292,46,0): 95, 58, 52, (292,47,0): 95, 58, 50, (292,48,0): 97, 60, 51, (292,49,0): 98, 62, 50, (292,50,0): 102, 64, 51, (292,51,0): 106, 67, 52, (292,52,0): 112, 70, 56, (292,53,0): 116, 73, 56, (292,54,0): 120, 75, 56, (292,55,0): 122, 76, 53, (292,56,0): 128, 80, 57, (292,57,0): 130, 83, 55, (292,58,0): 132, 87, 56, (292,59,0): 135, 91, 56, (292,60,0): 136, 93, 58, (292,61,0): 138, 96, 58, (292,62,0): 137, 98, 57, (292,63,0): 137, 98, 57, (292,64,0): 142, 98, 59, (292,65,0): 143, 99, 60, (292,66,0): 143, 100, 58, (292,67,0): 143, 100, 58, (292,68,0): 143, 101, 59, (292,69,0): 143, 101, 59, (292,70,0): 143, 102, 58, (292,71,0): 142, 104, 59, (292,72,0): 143, 105, 58, (292,73,0): 143, 105, 58, (292,74,0): 143, 107, 59, (292,75,0): 144, 108, 60, (292,76,0): 145, 109, 59, (292,77,0): 146, 110, 60, (292,78,0): 145, 112, 61, (292,79,0): 147, 111, 61, (292,80,0): 150, 109, 63, (292,81,0): 151, 108, 63, (292,82,0): 149, 108, 62, (292,83,0): 148, 107, 61, (292,84,0): 148, 107, 61, (292,85,0): 147, 106, 60, (292,86,0): 144, 106, 59, (292,87,0): 144, 106, 59, (292,88,0): 147, 111, 63, (292,89,0): 147, 111, 63, (292,90,0): 146, 110, 62, (292,91,0): 146, 110, 62, (292,92,0): 143, 109, 61, (292,93,0): 143, 109, 61, (292,94,0): 143, 109, 61, (292,95,0): 143, 109, 61, (292,96,0): 144, 111, 66, (292,97,0): 144, 111, 66, (292,98,0): 144, 111, 66, (292,99,0): 145, 112, 67, (292,100,0): 146, 112, 67, (292,101,0): 147, 113, 67, (292,102,0): 147, 113, 68, (292,103,0): 149, 112, 67, (292,104,0): 151, 114, 69, (292,105,0): 153, 115, 68, (292,106,0): 154, 116, 69, (292,107,0): 154, 116, 69, (292,108,0): 154, 116, 69, (292,109,0): 153, 115, 66, (292,110,0): 154, 114, 65, (292,111,0): 151, 113, 64, (292,112,0): 142, 106, 56, (292,113,0): 141, 105, 57, (292,114,0): 138, 101, 59, (292,115,0): 133, 95, 56, (292,116,0): 130, 92, 56, (292,117,0): 131, 93, 57, (292,118,0): 135, 97, 61, (292,119,0): 138, 100, 63, (292,120,0): 139, 102, 60, (292,121,0): 143, 106, 61, (292,122,0): 147, 111, 63, (292,123,0): 149, 113, 63, (292,124,0): 150, 114, 64, (292,125,0): 150, 114, 64, (292,126,0): 153, 117, 69, (292,127,0): 155, 119, 71, (292,128,0): 157, 119, 70, (292,129,0): 159, 119, 68, (292,130,0): 160, 120, 71, (292,131,0): 160, 120, 69, (292,132,0): 159, 119, 70, (292,133,0): 157, 117, 66, (292,134,0): 155, 115, 64, (292,135,0): 153, 113, 62, (292,136,0): 160, 120, 69, (292,137,0): 160, 120, 69, (292,138,0): 161, 121, 70, (292,139,0): 161, 121, 70, (292,140,0): 160, 120, 69, (292,141,0): 158, 118, 67, (292,142,0): 156, 116, 65, (292,143,0): 155, 115, 64, (292,144,0): 156, 116, 64, (292,145,0): 155, 115, 63, (292,146,0): 154, 114, 62, (292,147,0): 153, 114, 59, (292,148,0): 153, 113, 61, (292,149,0): 153, 114, 59, (292,150,0): 154, 115, 60, (292,151,0): 155, 116, 59, (292,152,0): 159, 120, 63, (292,153,0): 163, 124, 65, (292,154,0): 167, 128, 69, (292,155,0): 170, 131, 72, (292,156,0): 173, 134, 75, (292,157,0): 178, 140, 78, (292,158,0): 184, 145, 86, (292,159,0): 189, 151, 89, (292,160,0): 195, 155, 93, (292,161,0): 197, 156, 92, (292,162,0): 198, 157, 91, (292,163,0): 197, 158, 89, (292,164,0): 197, 158, 89, (292,165,0): 195, 158, 87, (292,166,0): 194, 158, 84, (292,167,0): 193, 157, 83, (292,168,0): 189, 153, 79, (292,169,0): 185, 151, 77, (292,170,0): 181, 147, 75, (292,171,0): 177, 144, 73, (292,172,0): 176, 143, 74, (292,173,0): 178, 145, 78, (292,174,0): 179, 148, 81, (292,175,0): 180, 151, 81, (292,176,0): 182, 159, 81, (292,177,0): 184, 163, 82, (292,178,0): 189, 168, 87, (292,179,0): 194, 173, 90, (292,180,0): 200, 179, 96, (292,181,0): 210, 190, 104, (292,182,0): 221, 201, 114, (292,183,0): 228, 208, 119, (292,184,0): 238, 218, 129, (292,185,0): 242, 223, 131, (292,186,0): 246, 227, 133, (292,187,0): 248, 229, 135, (292,188,0): 247, 228, 133, (292,189,0): 247, 228, 133, (292,190,0): 248, 229, 134, (292,191,0): 250, 230, 135, (292,192,0): 251, 227, 137, (292,193,0): 251, 227, 137, (292,194,0): 248, 227, 136, (292,195,0): 247, 228, 134, (292,196,0): 248, 229, 134, (292,197,0): 248, 234, 137, (292,198,0): 251, 237, 138, (292,199,0): 250, 241, 140, (292,200,0): 255, 246, 145, (292,201,0): 254, 249, 147, (292,202,0): 255, 251, 151, (292,203,0): 255, 254, 154, (292,204,0): 255, 254, 157, (292,205,0): 255, 255, 159, (292,206,0): 254, 255, 161, (292,207,0): 254, 255, 161, (292,208,0): 255, 255, 161, (292,209,0): 255, 255, 160, (292,210,0): 255, 255, 160, (292,211,0): 255, 255, 160, (292,212,0): 255, 255, 160, (292,213,0): 255, 255, 160, (292,214,0): 255, 255, 160, (292,215,0): 255, 255, 160, (292,216,0): 250, 250, 154, (292,217,0): 251, 251, 155, (292,218,0): 253, 253, 157, (292,219,0): 254, 254, 158, (292,220,0): 255, 255, 159, (292,221,0): 254, 254, 158, (292,222,0): 254, 254, 158, (292,223,0): 253, 253, 155, (292,224,0): 255, 255, 155, (292,225,0): 255, 255, 154, (292,226,0): 255, 255, 154, (292,227,0): 255, 255, 155, (292,228,0): 255, 255, 155, (292,229,0): 255, 255, 155, (292,230,0): 255, 255, 155, (292,231,0): 255, 255, 157, (292,232,0): 255, 255, 157, (292,233,0): 255, 255, 159, (292,234,0): 255, 255, 159, (292,235,0): 255, 255, 159, (292,236,0): 255, 255, 159, (292,237,0): 255, 254, 161, (292,238,0): 255, 254, 161, (292,239,0): 254, 255, 161, (292,240,0): 252, 255, 164, (292,241,0): 251, 255, 164, (292,242,0): 251, 255, 166, (292,243,0): 251, 255, 166, (292,244,0): 251, 255, 168, (292,245,0): 251, 255, 168, (292,246,0): 251, 255, 170, (292,247,0): 251, 255, 171, (292,248,0): 251, 254, 173, (292,249,0): 251, 254, 173, (292,250,0): 251, 254, 175, (292,251,0): 252, 255, 176, (292,252,0): 252, 255, 178, (292,253,0): 253, 255, 179, (292,254,0): 253, 255, 180, (292,255,0): 253, 255, 182, (292,256,0): 251, 254, 185, (292,257,0): 249, 255, 185, (292,258,0): 246, 254, 181, (292,259,0): 237, 248, 172, (292,260,0): 227, 241, 162, (292,261,0): 220, 238, 156, (292,262,0): 217, 239, 157, (292,263,0): 218, 241, 159, (292,264,0): 204, 229, 148, (292,265,0): 204, 228, 150, (292,266,0): 198, 224, 150, (292,267,0): 190, 215, 147, (292,268,0): 183, 205, 141, (292,269,0): 178, 199, 140, (292,270,0): 178, 199, 143, (292,271,0): 181, 199, 147, (292,272,0): 180, 192, 144, (292,273,0): 176, 185, 138, (292,274,0): 168, 176, 129, (292,275,0): 160, 167, 123, (292,276,0): 153, 160, 116, (292,277,0): 146, 153, 111, (292,278,0): 138, 143, 103, (292,279,0): 132, 136, 99, (292,280,0): 131, 133, 96, (292,281,0): 130, 131, 97, (292,282,0): 128, 129, 97, (292,283,0): 126, 127, 96, (292,284,0): 125, 124, 94, (292,285,0): 123, 122, 94, (292,286,0): 121, 120, 92, (292,287,0): 116, 119, 88, (292,288,0): 109, 119, 82, (292,289,0): 114, 126, 86, (292,290,0): 122, 134, 96, (292,291,0): 127, 139, 101, (292,292,0): 129, 139, 104, (292,293,0): 129, 139, 104, (292,294,0): 130, 140, 106, (292,295,0): 130, 141, 109, (292,296,0): 133, 146, 116, (292,297,0): 132, 147, 116, (292,298,0): 133, 149, 120, (292,299,0): 133, 152, 122, (292,300,0): 135, 155, 127, (292,301,0): 135, 160, 130, (292,302,0): 134, 160, 131, (292,303,0): 134, 160, 133, (292,304,0): 137, 163, 138, (292,305,0): 137, 165, 143, (292,306,0): 140, 172, 151, (292,307,0): 147, 182, 160, (292,308,0): 146, 188, 166, (292,309,0): 148, 193, 172, (292,310,0): 156, 205, 184, (292,311,0): 165, 218, 198, (292,312,0): 180, 234, 218, (292,313,0): 187, 241, 227, (292,314,0): 194, 248, 235, (292,315,0): 193, 247, 234, (292,316,0): 187, 237, 228, (292,317,0): 179, 228, 222, (292,318,0): 179, 225, 222, (292,319,0): 181, 226, 219, (292,320,0): 170, 214, 199, (292,321,0): 163, 206, 187, (292,322,0): 154, 195, 177, (292,323,0): 149, 186, 169, (292,324,0): 148, 182, 168, (292,325,0): 148, 180, 167, (292,326,0): 148, 178, 166, (292,327,0): 145, 177, 164, (292,328,0): 145, 178, 167, (292,329,0): 143, 176, 165, (292,330,0): 141, 174, 163, (292,331,0): 139, 170, 162, (292,332,0): 138, 165, 158, (292,333,0): 130, 155, 151, (292,334,0): 122, 142, 140, (292,335,0): 115, 133, 133, (292,336,0): 107, 121, 124, (292,337,0): 106, 117, 123, (292,338,0): 103, 114, 120, (292,339,0): 103, 114, 120, (292,340,0): 104, 113, 120, (292,341,0): 104, 113, 120, (292,342,0): 101, 110, 117, (292,343,0): 98, 107, 114, (292,344,0): 92, 99, 107, (292,345,0): 90, 97, 105, (292,346,0): 89, 93, 102, (292,347,0): 86, 90, 99, (292,348,0): 84, 88, 97, (292,349,0): 82, 86, 95, (292,350,0): 82, 85, 94, (292,351,0): 82, 85, 94, (292,352,0): 83, 88, 94, (292,353,0): 83, 88, 94, (292,354,0): 82, 87, 93, (292,355,0): 81, 86, 92, (292,356,0): 78, 85, 91, (292,357,0): 78, 85, 91, (292,358,0): 77, 84, 90, (292,359,0): 77, 84, 90, (292,360,0): 80, 89, 94, (292,361,0): 89, 98, 103, (292,362,0): 100, 111, 115, (292,363,0): 109, 120, 124, (292,364,0): 113, 124, 128, (292,365,0): 115, 126, 128, (292,366,0): 116, 130, 133, (292,367,0): 118, 132, 135, (292,368,0): 125, 134, 143, (292,369,0): 122, 131, 140, (292,370,0): 119, 125, 137, (292,371,0): 115, 121, 133, (292,372,0): 115, 119, 131, (292,373,0): 115, 119, 131, (292,374,0): 116, 118, 131, (292,375,0): 117, 119, 132, (292,376,0): 119, 118, 134, (292,377,0): 120, 117, 134, (292,378,0): 122, 118, 135, (292,379,0): 122, 118, 135, (292,380,0): 122, 114, 135, (292,381,0): 119, 111, 132, (292,382,0): 117, 108, 129, (292,383,0): 115, 106, 125, (292,384,0): 112, 99, 119, (292,385,0): 110, 97, 115, (292,386,0): 109, 96, 116, (292,387,0): 107, 95, 115, (292,388,0): 104, 95, 116, (292,389,0): 104, 96, 117, (292,390,0): 105, 97, 120, (292,391,0): 106, 98, 121, (292,392,0): 106, 98, 121, (292,393,0): 105, 97, 118, (292,394,0): 105, 96, 115, (292,395,0): 102, 93, 110, (292,396,0): 100, 89, 105, (292,397,0): 97, 85, 99, (292,398,0): 94, 80, 93, (292,399,0): 92, 79, 89, (292,400,0): 93, 77, 88, (292,401,0): 93, 77, 87, (292,402,0): 94, 81, 90, (292,403,0): 97, 86, 94, (292,404,0): 101, 91, 99, (292,405,0): 104, 99, 105, (292,406,0): 109, 104, 110, (292,407,0): 110, 108, 113, (292,408,0): 109, 104, 110, (292,409,0): 109, 104, 110, (292,410,0): 112, 102, 110, (292,411,0): 113, 100, 109, (292,412,0): 113, 96, 106, (292,413,0): 112, 90, 102, (292,414,0): 109, 85, 98, (292,415,0): 110, 82, 94, (292,416,0): 103, 74, 79, (292,417,0): 93, 64, 68, (292,418,0): 82, 53, 57, (292,419,0): 78, 49, 53, (292,420,0): 81, 52, 54, (292,421,0): 83, 54, 56, (292,422,0): 82, 53, 55, (292,423,0): 79, 50, 52, (292,424,0): 80, 52, 51, (292,425,0): 80, 52, 51, (292,426,0): 81, 53, 50, (292,427,0): 82, 54, 51, (292,428,0): 83, 55, 52, (292,429,0): 84, 56, 53, (292,430,0): 84, 56, 52, (292,431,0): 85, 57, 53, (292,432,0): 89, 59, 57, (292,433,0): 91, 60, 58, (292,434,0): 95, 61, 60, (292,435,0): 98, 63, 61, (292,436,0): 102, 64, 63, (292,437,0): 104, 66, 63, (292,438,0): 106, 68, 65, (292,439,0): 107, 70, 64, (292,440,0): 109, 70, 63, (292,441,0): 115, 72, 65, (292,442,0): 125, 75, 68, (292,443,0): 135, 76, 70, (292,444,0): 143, 74, 69, (292,445,0): 153, 73, 72, (292,446,0): 163, 75, 74, (292,447,0): 169, 78, 75, (292,448,0): 169, 81, 71, (292,449,0): 171, 89, 78, (292,450,0): 165, 90, 85, (292,451,0): 155, 87, 88, (292,452,0): 146, 89, 95, (292,453,0): 144, 95, 101, (292,454,0): 138, 95, 102, (292,455,0): 129, 90, 95, (292,456,0): 121, 85, 89, (292,457,0): 118, 82, 84, (292,458,0): 111, 77, 78, (292,459,0): 104, 72, 73, (292,460,0): 101, 70, 75, (292,461,0): 99, 72, 79, (292,462,0): 100, 74, 87, (292,463,0): 102, 76, 87, (292,464,0): 110, 81, 86, (292,465,0): 110, 81, 83, (292,466,0): 107, 81, 84, (292,467,0): 103, 81, 84, (292,468,0): 102, 81, 86, (292,469,0): 103, 83, 85, (292,470,0): 104, 84, 86, (292,471,0): 105, 85, 84, (292,472,0): 109, 86, 80, (292,473,0): 112, 88, 78, (292,474,0): 114, 90, 78, (292,475,0): 116, 94, 80, (292,476,0): 117, 98, 84, (292,477,0): 117, 101, 88, (292,478,0): 117, 103, 94, (292,479,0): 115, 105, 96, (292,480,0): 126, 119, 111, (292,481,0): 129, 124, 118, (292,482,0): 134, 129, 123, (292,483,0): 135, 132, 127, (292,484,0): 131, 130, 126, (292,485,0): 129, 129, 127, (292,486,0): 129, 129, 129, (292,487,0): 129, 130, 132, (292,488,0): 126, 130, 133, (292,489,0): 125, 130, 134, (292,490,0): 128, 133, 139, (292,491,0): 135, 142, 150, (292,492,0): 145, 152, 162, (292,493,0): 152, 161, 170, (292,494,0): 155, 163, 174, (292,495,0): 155, 163, 176, (292,496,0): 158, 165, 183, (292,497,0): 158, 165, 183, (292,498,0): 157, 164, 182, (292,499,0): 157, 164, 180, (292,500,0): 157, 165, 178, (292,501,0): 157, 165, 178, (292,502,0): 158, 166, 179, (292,503,0): 157, 166, 181, (292,504,0): 162, 175, 192, (292,505,0): 163, 178, 197, (292,506,0): 163, 181, 205, (292,507,0): 162, 181, 211, (292,508,0): 158, 181, 215, (292,509,0): 157, 181, 219, (292,510,0): 157, 182, 223, (292,511,0): 157, 184, 227, (292,512,0): 163, 187, 231, (292,513,0): 165, 189, 233, (292,514,0): 165, 192, 237, (292,515,0): 164, 191, 236, (292,516,0): 163, 189, 238, (292,517,0): 162, 190, 238, (292,518,0): 163, 193, 243, (292,519,0): 166, 196, 246, (292,520,0): 171, 203, 252, (292,521,0): 168, 202, 250, (292,522,0): 165, 202, 247, (292,523,0): 168, 205, 249, (292,524,0): 172, 211, 254, (292,525,0): 176, 215, 255, (292,526,0): 175, 217, 255, (292,527,0): 174, 216, 255, (292,528,0): 169, 212, 255, (292,529,0): 166, 210, 255, (292,530,0): 165, 209, 255, (292,531,0): 165, 207, 255, (292,532,0): 163, 203, 254, (292,533,0): 159, 196, 248, (292,534,0): 153, 187, 235, (292,535,0): 148, 179, 223, (292,536,0): 145, 173, 212, (292,537,0): 147, 170, 202, (292,538,0): 149, 166, 194, (292,539,0): 152, 164, 188, (292,540,0): 154, 160, 184, (292,541,0): 152, 152, 176, (292,542,0): 146, 142, 167, (292,543,0): 138, 136, 157, (292,544,0): 128, 134, 146, (292,545,0): 130, 140, 149, (292,546,0): 138, 145, 155, (292,547,0): 144, 148, 157, (292,548,0): 147, 147, 157, (292,549,0): 143, 142, 150, (292,550,0): 140, 134, 144, (292,551,0): 136, 128, 139, (292,552,0): 134, 124, 135, (292,553,0): 131, 119, 129, (292,554,0): 125, 113, 123, (292,555,0): 123, 112, 120, (292,556,0): 123, 112, 120, (292,557,0): 122, 112, 120, (292,558,0): 119, 109, 117, (292,559,0): 114, 107, 115, (292,560,0): 108, 107, 115, (292,561,0): 105, 107, 119, (292,562,0): 104, 106, 118, (292,563,0): 100, 106, 118, (292,564,0): 101, 109, 122, (292,565,0): 106, 118, 132, (292,566,0): 118, 130, 144, (292,567,0): 126, 140, 153, (292,568,0): 132, 144, 160, (292,569,0): 134, 143, 158, (292,570,0): 133, 140, 156, (292,571,0): 133, 136, 151, (292,572,0): 129, 128, 142, (292,573,0): 119, 115, 129, (292,574,0): 107, 101, 115, (292,575,0): 99, 91, 102, (292,576,0): 93, 86, 94, (292,577,0): 87, 80, 87, (292,578,0): 81, 74, 81, (292,579,0): 78, 71, 78, (292,580,0): 80, 71, 76, (292,581,0): 79, 70, 75, (292,582,0): 75, 66, 69, (292,583,0): 70, 61, 64, (292,584,0): 68, 57, 61, (292,585,0): 69, 58, 62, (292,586,0): 72, 60, 62, (292,587,0): 73, 61, 63, (292,588,0): 71, 59, 59, (292,589,0): 67, 55, 55, (292,590,0): 64, 50, 50, (292,591,0): 61, 47, 47, (292,592,0): 55, 39, 40, (292,593,0): 54, 38, 39, (292,594,0): 52, 36, 37, (292,595,0): 51, 35, 36, (292,596,0): 50, 34, 35, (292,597,0): 50, 34, 35, (292,598,0): 50, 34, 35, (292,599,0): 50, 34, 35, (293,0,0): 61, 49, 53, (293,1,0): 61, 49, 53, (293,2,0): 61, 49, 53, (293,3,0): 61, 49, 53, (293,4,0): 63, 48, 53, (293,5,0): 63, 48, 53, (293,6,0): 63, 48, 53, (293,7,0): 63, 48, 53, (293,8,0): 65, 48, 54, (293,9,0): 64, 47, 53, (293,10,0): 65, 46, 52, (293,11,0): 65, 46, 52, (293,12,0): 65, 46, 52, (293,13,0): 66, 47, 53, (293,14,0): 68, 47, 54, (293,15,0): 69, 46, 52, (293,16,0): 78, 47, 53, (293,17,0): 79, 47, 52, (293,18,0): 79, 47, 52, (293,19,0): 79, 47, 52, (293,20,0): 79, 47, 52, (293,21,0): 78, 47, 52, (293,22,0): 79, 47, 52, (293,23,0): 78, 47, 52, (293,24,0): 77, 46, 51, (293,25,0): 75, 46, 50, (293,26,0): 75, 46, 50, (293,27,0): 74, 45, 49, (293,28,0): 75, 46, 50, (293,29,0): 76, 47, 51, (293,30,0): 76, 50, 53, (293,31,0): 79, 50, 54, (293,32,0): 80, 49, 55, (293,33,0): 80, 49, 55, (293,34,0): 81, 50, 56, (293,35,0): 81, 50, 55, (293,36,0): 83, 51, 56, (293,37,0): 83, 51, 54, (293,38,0): 84, 52, 53, (293,39,0): 84, 52, 53, (293,40,0): 91, 57, 56, (293,41,0): 91, 57, 55, (293,42,0): 92, 57, 53, (293,43,0): 92, 57, 53, (293,44,0): 92, 57, 51, (293,45,0): 92, 57, 51, (293,46,0): 94, 57, 51, (293,47,0): 94, 57, 49, (293,48,0): 96, 59, 50, (293,49,0): 99, 61, 50, (293,50,0): 103, 63, 51, (293,51,0): 110, 68, 54, (293,52,0): 114, 70, 57, (293,53,0): 119, 73, 57, (293,54,0): 122, 75, 57, (293,55,0): 123, 77, 54, (293,56,0): 129, 81, 58, (293,57,0): 131, 84, 56, (293,58,0): 134, 87, 57, (293,59,0): 135, 91, 56, (293,60,0): 138, 94, 59, (293,61,0): 138, 96, 58, (293,62,0): 139, 97, 57, (293,63,0): 139, 97, 57, (293,64,0): 140, 96, 57, (293,65,0): 141, 97, 58, (293,66,0): 142, 99, 57, (293,67,0): 143, 100, 58, (293,68,0): 144, 101, 59, (293,69,0): 144, 102, 60, (293,70,0): 145, 104, 60, (293,71,0): 146, 105, 61, (293,72,0): 143, 105, 58, (293,73,0): 143, 105, 58, (293,74,0): 144, 106, 59, (293,75,0): 144, 108, 60, (293,76,0): 145, 109, 59, (293,77,0): 146, 110, 60, (293,78,0): 145, 112, 61, (293,79,0): 148, 112, 62, (293,80,0): 148, 107, 61, (293,81,0): 149, 106, 61, (293,82,0): 147, 106, 60, (293,83,0): 147, 106, 60, (293,84,0): 147, 106, 60, (293,85,0): 146, 105, 59, (293,86,0): 144, 106, 59, (293,87,0): 144, 106, 59, (293,88,0): 147, 111, 63, (293,89,0): 147, 111, 63, (293,90,0): 146, 110, 62, (293,91,0): 146, 110, 62, (293,92,0): 143, 109, 61, (293,93,0): 143, 109, 61, (293,94,0): 142, 108, 60, (293,95,0): 142, 108, 60, (293,96,0): 145, 111, 65, (293,97,0): 145, 111, 66, (293,98,0): 148, 111, 67, (293,99,0): 148, 114, 68, (293,100,0): 151, 114, 69, (293,101,0): 152, 116, 68, (293,102,0): 153, 117, 69, (293,103,0): 154, 116, 69, (293,104,0): 155, 117, 70, (293,105,0): 158, 118, 69, (293,106,0): 160, 120, 71, (293,107,0): 161, 121, 70, (293,108,0): 162, 120, 70, (293,109,0): 161, 121, 70, (293,110,0): 161, 120, 68, (293,111,0): 160, 120, 68, (293,112,0): 151, 114, 62, (293,113,0): 147, 111, 61, (293,114,0): 143, 106, 61, (293,115,0): 138, 101, 59, (293,116,0): 136, 98, 59, (293,117,0): 137, 99, 62, (293,118,0): 140, 102, 65, (293,119,0): 143, 106, 64, (293,120,0): 144, 107, 62, (293,121,0): 148, 112, 62, (293,122,0): 152, 116, 64, (293,123,0): 154, 119, 65, (293,124,0): 153, 118, 64, (293,125,0): 153, 117, 65, (293,126,0): 155, 119, 69, (293,127,0): 158, 122, 70, (293,128,0): 163, 123, 72, (293,129,0): 164, 124, 72, (293,130,0): 165, 125, 73, (293,131,0): 166, 126, 74, (293,132,0): 165, 125, 73, (293,133,0): 162, 122, 70, (293,134,0): 160, 120, 68, (293,135,0): 158, 118, 66, (293,136,0): 163, 123, 71, (293,137,0): 163, 123, 71, (293,138,0): 163, 123, 72, (293,139,0): 162, 122, 70, (293,140,0): 161, 121, 70, (293,141,0): 158, 118, 67, (293,142,0): 156, 116, 65, (293,143,0): 155, 115, 63, (293,144,0): 157, 118, 63, (293,145,0): 156, 117, 60, (293,146,0): 155, 116, 61, (293,147,0): 155, 116, 59, (293,148,0): 155, 116, 61, (293,149,0): 156, 117, 60, (293,150,0): 157, 118, 61, (293,151,0): 158, 119, 60, (293,152,0): 164, 125, 66, (293,153,0): 167, 129, 67, (293,154,0): 171, 133, 71, (293,155,0): 174, 136, 73, (293,156,0): 176, 138, 76, (293,157,0): 181, 143, 80, (293,158,0): 187, 149, 87, (293,159,0): 192, 152, 90, (293,160,0): 196, 155, 91, (293,161,0): 197, 156, 90, (293,162,0): 198, 157, 91, (293,163,0): 198, 158, 89, (293,164,0): 197, 157, 88, (293,165,0): 195, 157, 86, (293,166,0): 193, 155, 84, (293,167,0): 192, 154, 81, (293,168,0): 187, 149, 76, (293,169,0): 185, 149, 75, (293,170,0): 183, 146, 75, (293,171,0): 182, 145, 74, (293,172,0): 183, 146, 76, (293,173,0): 184, 150, 79, (293,174,0): 188, 153, 85, (293,175,0): 189, 157, 84, (293,176,0): 192, 166, 82, (293,177,0): 196, 172, 84, (293,178,0): 204, 180, 94, (293,179,0): 212, 188, 100, (293,180,0): 220, 196, 108, (293,181,0): 229, 205, 117, (293,182,0): 239, 215, 125, (293,183,0): 246, 222, 132, (293,184,0): 247, 223, 133, (293,185,0): 250, 226, 136, (293,186,0): 254, 231, 138, (293,187,0): 254, 231, 138, (293,188,0): 252, 229, 136, (293,189,0): 251, 228, 134, (293,190,0): 252, 229, 136, (293,191,0): 253, 230, 137, (293,192,0): 252, 229, 136, (293,193,0): 251, 228, 135, (293,194,0): 249, 228, 135, (293,195,0): 248, 229, 134, (293,196,0): 249, 230, 135, (293,197,0): 248, 234, 137, (293,198,0): 250, 236, 137, (293,199,0): 249, 240, 139, (293,200,0): 252, 243, 142, (293,201,0): 253, 248, 148, (293,202,0): 255, 251, 153, (293,203,0): 255, 255, 158, (293,204,0): 255, 254, 159, (293,205,0): 255, 254, 161, (293,206,0): 254, 255, 162, (293,207,0): 255, 255, 163, (293,208,0): 255, 255, 163, (293,209,0): 255, 255, 161, (293,210,0): 255, 255, 161, (293,211,0): 255, 255, 160, (293,212,0): 255, 255, 160, (293,213,0): 255, 255, 159, (293,214,0): 255, 255, 159, (293,215,0): 255, 255, 159, (293,216,0): 250, 250, 154, (293,217,0): 251, 251, 155, (293,218,0): 253, 253, 157, (293,219,0): 254, 254, 158, (293,220,0): 255, 255, 159, (293,221,0): 254, 254, 158, (293,222,0): 254, 254, 158, (293,223,0): 253, 253, 157, (293,224,0): 255, 255, 155, (293,225,0): 255, 255, 155, (293,226,0): 255, 255, 155, (293,227,0): 255, 255, 155, (293,228,0): 255, 255, 157, (293,229,0): 255, 255, 157, (293,230,0): 255, 255, 157, (293,231,0): 255, 255, 159, (293,232,0): 255, 255, 159, (293,233,0): 255, 255, 159, (293,234,0): 255, 254, 161, (293,235,0): 255, 254, 161, (293,236,0): 255, 254, 161, (293,237,0): 255, 254, 161, (293,238,0): 255, 254, 162, (293,239,0): 254, 255, 162, (293,240,0): 252, 255, 166, (293,241,0): 251, 255, 168, (293,242,0): 251, 255, 170, (293,243,0): 251, 255, 170, (293,244,0): 251, 255, 171, (293,245,0): 251, 255, 171, (293,246,0): 251, 254, 173, (293,247,0): 251, 254, 173, (293,248,0): 251, 254, 175, (293,249,0): 251, 254, 177, (293,250,0): 251, 253, 178, (293,251,0): 252, 254, 179, (293,252,0): 252, 254, 181, (293,253,0): 253, 255, 182, (293,254,0): 253, 254, 184, (293,255,0): 253, 254, 186, (293,256,0): 251, 253, 188, (293,257,0): 251, 253, 188, (293,258,0): 247, 252, 185, (293,259,0): 240, 250, 179, (293,260,0): 234, 246, 174, (293,261,0): 228, 242, 167, (293,262,0): 222, 240, 164, (293,263,0): 219, 240, 163, (293,264,0): 208, 230, 155, (293,265,0): 205, 229, 155, (293,266,0): 199, 225, 154, (293,267,0): 193, 218, 152, (293,268,0): 186, 210, 148, (293,269,0): 180, 205, 147, (293,270,0): 179, 204, 147, (293,271,0): 182, 202, 149, (293,272,0): 181, 194, 148, (293,273,0): 178, 190, 144, (293,274,0): 174, 183, 138, (293,275,0): 165, 174, 129, (293,276,0): 155, 164, 121, (293,277,0): 146, 154, 113, (293,278,0): 140, 146, 108, (293,279,0): 137, 143, 105, (293,280,0): 136, 140, 105, (293,281,0): 132, 136, 101, (293,282,0): 127, 131, 98, (293,283,0): 123, 126, 95, (293,284,0): 122, 123, 92, (293,285,0): 118, 118, 90, (293,286,0): 114, 114, 86, (293,287,0): 109, 112, 81, (293,288,0): 113, 123, 86, (293,289,0): 117, 129, 89, (293,290,0): 124, 136, 98, (293,291,0): 128, 140, 102, (293,292,0): 129, 139, 104, (293,293,0): 128, 138, 103, (293,294,0): 127, 137, 103, (293,295,0): 127, 138, 106, (293,296,0): 132, 143, 113, (293,297,0): 131, 146, 115, (293,298,0): 131, 147, 118, (293,299,0): 131, 150, 120, (293,300,0): 131, 151, 123, (293,301,0): 131, 156, 126, (293,302,0): 134, 159, 130, (293,303,0): 135, 161, 134, (293,304,0): 139, 164, 142, (293,305,0): 136, 163, 144, (293,306,0): 137, 168, 150, (293,307,0): 142, 176, 159, (293,308,0): 143, 184, 166, (293,309,0): 146, 190, 173, (293,310,0): 156, 204, 188, (293,311,0): 167, 217, 205, (293,312,0): 182, 234, 222, (293,313,0): 185, 238, 230, (293,314,0): 189, 242, 236, (293,315,0): 189, 239, 236, (293,316,0): 182, 232, 231, (293,317,0): 176, 224, 226, (293,318,0): 175, 220, 225, (293,319,0): 175, 221, 221, (293,320,0): 165, 211, 201, (293,321,0): 162, 204, 192, (293,322,0): 153, 193, 182, (293,323,0): 149, 185, 175, (293,324,0): 148, 179, 171, (293,325,0): 145, 176, 168, (293,326,0): 143, 173, 165, (293,327,0): 140, 170, 162, (293,328,0): 140, 172, 161, (293,329,0): 137, 170, 159, (293,330,0): 136, 168, 157, (293,331,0): 134, 166, 155, (293,332,0): 134, 160, 151, (293,333,0): 127, 150, 142, (293,334,0): 119, 138, 132, (293,335,0): 113, 129, 126, (293,336,0): 103, 117, 120, (293,337,0): 104, 115, 121, (293,338,0): 103, 114, 120, (293,339,0): 104, 115, 121, (293,340,0): 106, 115, 122, (293,341,0): 104, 113, 120, (293,342,0): 99, 108, 115, (293,343,0): 94, 103, 110, (293,344,0): 91, 98, 106, (293,345,0): 89, 96, 104, (293,346,0): 88, 92, 101, (293,347,0): 86, 90, 99, (293,348,0): 83, 87, 96, (293,349,0): 82, 86, 95, (293,350,0): 82, 85, 94, (293,351,0): 82, 85, 94, (293,352,0): 82, 87, 93, (293,353,0): 82, 87, 93, (293,354,0): 82, 87, 93, (293,355,0): 81, 86, 92, (293,356,0): 79, 86, 92, (293,357,0): 79, 86, 92, (293,358,0): 79, 86, 92, (293,359,0): 78, 85, 91, (293,360,0): 83, 92, 97, (293,361,0): 89, 98, 103, (293,362,0): 96, 107, 113, (293,363,0): 104, 115, 121, (293,364,0): 110, 121, 127, (293,365,0): 113, 124, 130, (293,366,0): 114, 127, 133, (293,367,0): 118, 129, 135, (293,368,0): 123, 132, 141, (293,369,0): 122, 131, 140, (293,370,0): 121, 128, 138, (293,371,0): 119, 126, 136, (293,372,0): 119, 123, 135, (293,373,0): 119, 123, 135, (293,374,0): 119, 121, 134, (293,375,0): 121, 120, 134, (293,376,0): 121, 118, 135, (293,377,0): 121, 118, 135, (293,378,0): 122, 118, 135, (293,379,0): 122, 118, 135, (293,380,0): 122, 114, 135, (293,381,0): 120, 112, 133, (293,382,0): 118, 109, 130, (293,383,0): 119, 107, 127, (293,384,0): 113, 100, 118, (293,385,0): 113, 98, 117, (293,386,0): 109, 96, 114, (293,387,0): 107, 94, 114, (293,388,0): 105, 93, 113, (293,389,0): 104, 95, 116, (293,390,0): 104, 96, 117, (293,391,0): 105, 97, 118, (293,392,0): 106, 98, 119, (293,393,0): 105, 98, 116, (293,394,0): 104, 95, 112, (293,395,0): 103, 92, 108, (293,396,0): 101, 89, 103, (293,397,0): 96, 84, 96, (293,398,0): 93, 80, 90, (293,399,0): 93, 77, 87, (293,400,0): 93, 76, 86, (293,401,0): 94, 77, 87, (293,402,0): 95, 79, 89, (293,403,0): 97, 84, 93, (293,404,0): 101, 91, 99, (293,405,0): 105, 98, 105, (293,406,0): 111, 104, 111, (293,407,0): 115, 108, 115, (293,408,0): 113, 106, 113, (293,409,0): 114, 107, 114, (293,410,0): 117, 106, 114, (293,411,0): 116, 103, 112, (293,412,0): 114, 97, 107, (293,413,0): 110, 88, 100, (293,414,0): 104, 80, 93, (293,415,0): 102, 76, 87, (293,416,0): 93, 66, 71, (293,417,0): 89, 60, 64, (293,418,0): 82, 53, 57, (293,419,0): 80, 51, 55, (293,420,0): 82, 53, 55, (293,421,0): 85, 56, 58, (293,422,0): 84, 55, 57, (293,423,0): 82, 53, 55, (293,424,0): 83, 55, 54, (293,425,0): 83, 55, 54, (293,426,0): 83, 55, 52, (293,427,0): 84, 56, 53, (293,428,0): 84, 56, 53, (293,429,0): 85, 57, 54, (293,430,0): 85, 57, 53, (293,431,0): 86, 58, 54, (293,432,0): 91, 60, 58, (293,433,0): 94, 60, 59, (293,434,0): 96, 60, 60, (293,435,0): 99, 60, 61, (293,436,0): 102, 62, 62, (293,437,0): 103, 63, 63, (293,438,0): 103, 65, 64, (293,439,0): 104, 66, 63, (293,440,0): 104, 65, 60, (293,441,0): 111, 68, 61, (293,442,0): 122, 72, 65, (293,443,0): 136, 73, 66, (293,444,0): 151, 73, 69, (293,445,0): 166, 76, 75, (293,446,0): 183, 80, 81, (293,447,0): 193, 85, 83, (293,448,0): 185, 81, 72, (293,449,0): 191, 90, 80, (293,450,0): 186, 92, 90, (293,451,0): 172, 86, 89, (293,452,0): 162, 87, 94, (293,453,0): 157, 94, 103, (293,454,0): 145, 94, 101, (293,455,0): 129, 86, 93, (293,456,0): 119, 80, 85, (293,457,0): 113, 78, 82, (293,458,0): 109, 74, 78, (293,459,0): 104, 72, 75, (293,460,0): 103, 70, 79, (293,461,0): 102, 72, 84, (293,462,0): 101, 74, 89, (293,463,0): 102, 76, 89, (293,464,0): 113, 84, 89, (293,465,0): 113, 84, 88, (293,466,0): 110, 83, 88, (293,467,0): 107, 84, 90, (293,468,0): 106, 85, 90, (293,469,0): 107, 86, 91, (293,470,0): 109, 89, 91, (293,471,0): 111, 90, 89, (293,472,0): 115, 90, 86, (293,473,0): 117, 93, 83, (293,474,0): 120, 96, 84, (293,475,0): 122, 100, 86, (293,476,0): 123, 104, 90, (293,477,0): 123, 107, 94, (293,478,0): 121, 109, 97, (293,479,0): 118, 109, 100, (293,480,0): 127, 122, 116, (293,481,0): 129, 126, 121, (293,482,0): 133, 130, 125, (293,483,0): 133, 132, 128, (293,484,0): 132, 132, 130, (293,485,0): 132, 134, 133, (293,486,0): 132, 136, 137, (293,487,0): 135, 139, 142, (293,488,0): 135, 140, 144, (293,489,0): 134, 141, 147, (293,490,0): 138, 145, 153, (293,491,0): 143, 152, 161, (293,492,0): 151, 160, 169, (293,493,0): 157, 166, 175, (293,494,0): 161, 169, 180, (293,495,0): 162, 170, 183, (293,496,0): 168, 175, 193, (293,497,0): 167, 174, 193, (293,498,0): 166, 173, 191, (293,499,0): 165, 172, 190, (293,500,0): 164, 171, 187, (293,501,0): 161, 170, 185, (293,502,0): 160, 169, 186, (293,503,0): 158, 170, 186, (293,504,0): 164, 179, 198, (293,505,0): 164, 180, 203, (293,506,0): 162, 182, 209, (293,507,0): 161, 182, 213, (293,508,0): 158, 182, 218, (293,509,0): 158, 183, 223, (293,510,0): 156, 183, 226, (293,511,0): 157, 184, 227, (293,512,0): 165, 189, 233, (293,513,0): 166, 193, 236, (293,514,0): 168, 195, 240, (293,515,0): 167, 196, 240, (293,516,0): 166, 194, 242, (293,517,0): 165, 196, 243, (293,518,0): 167, 197, 247, (293,519,0): 169, 201, 250, (293,520,0): 171, 205, 253, (293,521,0): 168, 204, 252, (293,522,0): 169, 206, 251, (293,523,0): 171, 210, 253, (293,524,0): 175, 214, 255, (293,525,0): 176, 218, 255, (293,526,0): 176, 218, 255, (293,527,0): 173, 217, 255, (293,528,0): 168, 213, 255, (293,529,0): 166, 210, 255, (293,530,0): 164, 208, 255, (293,531,0): 163, 206, 255, (293,532,0): 163, 203, 255, (293,533,0): 160, 197, 250, (293,534,0): 154, 190, 240, (293,535,0): 151, 184, 229, (293,536,0): 147, 175, 215, (293,537,0): 148, 171, 205, (293,538,0): 151, 166, 195, (293,539,0): 154, 164, 189, (293,540,0): 156, 161, 183, (293,541,0): 154, 152, 174, (293,542,0): 145, 140, 163, (293,543,0): 135, 132, 151, (293,544,0): 122, 126, 137, (293,545,0): 123, 130, 136, (293,546,0): 130, 135, 141, (293,547,0): 138, 141, 148, (293,548,0): 145, 144, 152, (293,549,0): 145, 142, 149, (293,550,0): 141, 134, 142, (293,551,0): 136, 126, 134, (293,552,0): 134, 123, 131, (293,553,0): 128, 117, 125, (293,554,0): 122, 109, 118, (293,555,0): 120, 107, 114, (293,556,0): 120, 109, 115, (293,557,0): 120, 109, 113, (293,558,0): 116, 105, 109, (293,559,0): 112, 103, 108, (293,560,0): 104, 99, 105, (293,561,0): 102, 101, 107, (293,562,0): 99, 99, 107, (293,563,0): 94, 97, 104, (293,564,0): 91, 95, 106, (293,565,0): 95, 102, 112, (293,566,0): 104, 112, 123, (293,567,0): 112, 122, 132, (293,568,0): 126, 134, 145, (293,569,0): 125, 131, 143, (293,570,0): 124, 128, 139, (293,571,0): 121, 121, 131, (293,572,0): 114, 111, 122, (293,573,0): 105, 99, 109, (293,574,0): 95, 88, 96, (293,575,0): 88, 81, 89, (293,576,0): 89, 82, 89, (293,577,0): 83, 76, 83, (293,578,0): 77, 70, 77, (293,579,0): 74, 67, 74, (293,580,0): 75, 66, 71, (293,581,0): 74, 65, 70, (293,582,0): 71, 62, 65, (293,583,0): 68, 59, 62, (293,584,0): 65, 54, 58, (293,585,0): 66, 55, 59, (293,586,0): 69, 57, 59, (293,587,0): 70, 58, 60, (293,588,0): 69, 57, 57, (293,589,0): 66, 54, 54, (293,590,0): 64, 50, 50, (293,591,0): 62, 48, 48, (293,592,0): 56, 40, 41, (293,593,0): 54, 38, 39, (293,594,0): 52, 36, 37, (293,595,0): 50, 34, 35, (293,596,0): 49, 33, 34, (293,597,0): 48, 32, 33, (293,598,0): 48, 32, 33, (293,599,0): 48, 32, 33, (294,0,0): 60, 49, 53, (294,1,0): 60, 49, 53, (294,2,0): 60, 49, 53, (294,3,0): 60, 49, 53, (294,4,0): 61, 49, 53, (294,5,0): 61, 49, 53, (294,6,0): 61, 49, 53, (294,7,0): 61, 49, 53, (294,8,0): 65, 50, 55, (294,9,0): 64, 49, 54, (294,10,0): 64, 47, 53, (294,11,0): 63, 46, 52, (294,12,0): 63, 46, 52, (294,13,0): 63, 46, 52, (294,14,0): 66, 47, 53, (294,15,0): 69, 46, 52, (294,16,0): 74, 47, 52, (294,17,0): 77, 46, 52, (294,18,0): 77, 46, 52, (294,19,0): 77, 46, 52, (294,20,0): 77, 46, 52, (294,21,0): 76, 47, 52, (294,22,0): 76, 45, 51, (294,23,0): 75, 46, 51, (294,24,0): 75, 46, 51, (294,25,0): 75, 46, 51, (294,26,0): 74, 45, 50, (294,27,0): 72, 45, 50, (294,28,0): 72, 45, 50, (294,29,0): 73, 46, 51, (294,30,0): 75, 48, 53, (294,31,0): 78, 49, 54, (294,32,0): 80, 49, 55, (294,33,0): 81, 48, 55, (294,34,0): 82, 50, 55, (294,35,0): 82, 50, 55, (294,36,0): 83, 51, 56, (294,37,0): 83, 51, 54, (294,38,0): 86, 52, 53, (294,39,0): 86, 52, 53, (294,40,0): 93, 57, 57, (294,41,0): 93, 58, 56, (294,42,0): 95, 57, 54, (294,43,0): 95, 57, 54, (294,44,0): 95, 58, 52, (294,45,0): 94, 57, 51, (294,46,0): 94, 57, 49, (294,47,0): 94, 57, 49, (294,48,0): 96, 58, 49, (294,49,0): 98, 60, 49, (294,50,0): 104, 64, 52, (294,51,0): 110, 68, 54, (294,52,0): 115, 71, 58, (294,53,0): 120, 74, 58, (294,54,0): 123, 76, 58, (294,55,0): 124, 76, 54, (294,56,0): 132, 82, 59, (294,57,0): 132, 85, 57, (294,58,0): 134, 87, 57, (294,59,0): 136, 92, 57, (294,60,0): 138, 94, 59, (294,61,0): 138, 96, 58, (294,62,0): 138, 96, 56, (294,63,0): 138, 96, 56, (294,64,0): 138, 94, 55, (294,65,0): 140, 95, 56, (294,66,0): 141, 96, 55, (294,67,0): 142, 99, 57, (294,68,0): 145, 102, 60, (294,69,0): 147, 104, 62, (294,70,0): 147, 106, 62, (294,71,0): 148, 107, 63, (294,72,0): 145, 104, 58, (294,73,0): 144, 106, 59, (294,74,0): 145, 107, 60, (294,75,0): 146, 108, 61, (294,76,0): 146, 110, 60, (294,77,0): 147, 111, 61, (294,78,0): 148, 112, 62, (294,79,0): 149, 111, 62, (294,80,0): 145, 104, 58, (294,81,0): 146, 103, 58, (294,82,0): 146, 105, 59, (294,83,0): 146, 105, 59, (294,84,0): 146, 105, 59, (294,85,0): 147, 106, 60, (294,86,0): 145, 107, 60, (294,87,0): 145, 107, 60, (294,88,0): 143, 107, 59, (294,89,0): 144, 108, 60, (294,90,0): 144, 108, 60, (294,91,0): 144, 108, 60, (294,92,0): 143, 109, 61, (294,93,0): 143, 109, 61, (294,94,0): 144, 110, 62, (294,95,0): 144, 110, 62, (294,96,0): 146, 109, 64, (294,97,0): 147, 110, 65, (294,98,0): 150, 112, 67, (294,99,0): 151, 115, 67, (294,100,0): 154, 116, 69, (294,101,0): 156, 118, 69, (294,102,0): 157, 119, 70, (294,103,0): 160, 120, 69, (294,104,0): 163, 123, 72, (294,105,0): 165, 124, 72, (294,106,0): 167, 126, 74, (294,107,0): 168, 127, 75, (294,108,0): 170, 127, 74, (294,109,0): 169, 128, 74, (294,110,0): 170, 127, 72, (294,111,0): 168, 127, 71, (294,112,0): 159, 122, 67, (294,113,0): 154, 119, 65, (294,114,0): 148, 112, 62, (294,115,0): 143, 106, 61, (294,116,0): 141, 104, 62, (294,117,0): 143, 106, 64, (294,118,0): 146, 109, 67, (294,119,0): 149, 112, 68, (294,120,0): 152, 116, 68, (294,121,0): 155, 119, 67, (294,122,0): 159, 124, 70, (294,123,0): 160, 125, 69, (294,124,0): 159, 124, 68, (294,125,0): 158, 123, 67, (294,126,0): 160, 125, 71, (294,127,0): 162, 127, 71, (294,128,0): 170, 131, 76, (294,129,0): 171, 132, 75, (294,130,0): 173, 134, 77, (294,131,0): 174, 135, 78, (294,132,0): 173, 134, 79, (294,133,0): 170, 131, 76, (294,134,0): 167, 128, 73, (294,135,0): 164, 125, 70, (294,136,0): 167, 128, 73, (294,137,0): 167, 128, 73, (294,138,0): 167, 127, 75, (294,139,0): 166, 127, 72, (294,140,0): 164, 124, 72, (294,141,0): 161, 121, 69, (294,142,0): 158, 118, 66, (294,143,0): 157, 117, 65, (294,144,0): 158, 119, 62, (294,145,0): 157, 118, 59, (294,146,0): 157, 118, 61, (294,147,0): 157, 118, 59, (294,148,0): 158, 119, 62, (294,149,0): 159, 120, 61, (294,150,0): 161, 122, 63, (294,151,0): 162, 124, 62, (294,152,0): 168, 130, 68, (294,153,0): 171, 133, 70, (294,154,0): 175, 137, 74, (294,155,0): 177, 139, 74, (294,156,0): 179, 141, 78, (294,157,0): 182, 144, 79, (294,158,0): 188, 150, 87, (294,159,0): 194, 155, 90, (294,160,0): 196, 155, 91, (294,161,0): 198, 154, 89, (294,162,0): 199, 155, 90, (294,163,0): 197, 157, 88, (294,164,0): 196, 156, 87, (294,165,0): 194, 154, 84, (294,166,0): 193, 153, 83, (294,167,0): 192, 152, 82, (294,168,0): 189, 149, 77, (294,169,0): 187, 149, 76, (294,170,0): 187, 149, 76, (294,171,0): 187, 149, 76, (294,172,0): 189, 151, 80, (294,173,0): 192, 154, 83, (294,174,0): 195, 157, 86, (294,175,0): 193, 160, 83, (294,176,0): 199, 172, 85, (294,177,0): 206, 181, 88, (294,178,0): 219, 194, 102, (294,179,0): 229, 204, 111, (294,180,0): 237, 212, 119, (294,181,0): 243, 218, 125, (294,182,0): 249, 224, 132, (294,183,0): 252, 227, 135, (294,184,0): 251, 226, 134, (294,185,0): 254, 229, 137, (294,186,0): 255, 231, 141, (294,187,0): 255, 231, 141, (294,188,0): 254, 229, 139, (294,189,0): 252, 227, 135, (294,190,0): 253, 228, 138, (294,191,0): 255, 230, 138, (294,192,0): 252, 229, 136, (294,193,0): 252, 229, 136, (294,194,0): 250, 229, 136, (294,195,0): 249, 230, 135, (294,196,0): 250, 231, 136, (294,197,0): 249, 235, 136, (294,198,0): 250, 236, 137, (294,199,0): 248, 239, 138, (294,200,0): 250, 240, 142, (294,201,0): 252, 247, 147, (294,202,0): 255, 252, 156, (294,203,0): 255, 255, 160, (294,204,0): 255, 255, 162, (294,205,0): 255, 254, 162, (294,206,0): 254, 254, 164, (294,207,0): 255, 255, 165, (294,208,0): 255, 255, 163, (294,209,0): 255, 255, 163, (294,210,0): 255, 255, 162, (294,211,0): 254, 255, 161, (294,212,0): 254, 255, 161, (294,213,0): 253, 254, 160, (294,214,0): 253, 254, 160, (294,215,0): 252, 253, 159, (294,216,0): 249, 250, 156, (294,217,0): 250, 251, 157, (294,218,0): 252, 253, 159, (294,219,0): 253, 254, 160, (294,220,0): 254, 255, 161, (294,221,0): 253, 254, 160, (294,222,0): 253, 254, 160, (294,223,0): 252, 254, 157, (294,224,0): 254, 255, 157, (294,225,0): 254, 255, 157, (294,226,0): 254, 255, 157, (294,227,0): 254, 255, 157, (294,228,0): 254, 255, 159, (294,229,0): 254, 255, 159, (294,230,0): 254, 255, 159, (294,231,0): 254, 255, 161, (294,232,0): 254, 255, 161, (294,233,0): 254, 255, 161, (294,234,0): 254, 255, 162, (294,235,0): 254, 255, 162, (294,236,0): 254, 255, 162, (294,237,0): 254, 255, 162, (294,238,0): 254, 254, 164, (294,239,0): 252, 255, 166, (294,240,0): 251, 255, 170, (294,241,0): 250, 255, 171, (294,242,0): 250, 255, 171, (294,243,0): 250, 255, 171, (294,244,0): 250, 255, 173, (294,245,0): 250, 255, 175, (294,246,0): 250, 254, 177, (294,247,0): 250, 254, 177, (294,248,0): 250, 254, 178, (294,249,0): 250, 254, 180, (294,250,0): 250, 253, 182, (294,251,0): 251, 254, 183, (294,252,0): 251, 254, 185, (294,253,0): 252, 255, 186, (294,254,0): 252, 255, 186, (294,255,0): 252, 255, 188, (294,256,0): 252, 254, 191, (294,257,0): 251, 252, 192, (294,258,0): 248, 253, 189, (294,259,0): 247, 254, 187, (294,260,0): 243, 252, 185, (294,261,0): 238, 251, 181, (294,262,0): 231, 247, 176, (294,263,0): 226, 243, 172, (294,264,0): 213, 235, 163, (294,265,0): 209, 232, 162, (294,266,0): 201, 226, 158, (294,267,0): 196, 221, 155, (294,268,0): 191, 217, 154, (294,269,0): 185, 213, 154, (294,270,0): 181, 209, 151, (294,271,0): 181, 206, 151, (294,272,0): 177, 195, 147, (294,273,0): 180, 193, 149, (294,274,0): 176, 189, 145, (294,275,0): 166, 179, 135, (294,276,0): 154, 165, 123, (294,277,0): 144, 155, 113, (294,278,0): 140, 151, 111, (294,279,0): 140, 151, 111, (294,280,0): 140, 148, 111, (294,281,0): 136, 144, 107, (294,282,0): 132, 138, 104, (294,283,0): 129, 135, 101, (294,284,0): 126, 132, 98, (294,285,0): 122, 127, 95, (294,286,0): 117, 120, 89, (294,287,0): 111, 116, 84, (294,288,0): 117, 129, 91, (294,289,0): 120, 135, 96, (294,290,0): 127, 139, 103, (294,291,0): 130, 142, 106, (294,292,0): 130, 140, 106, (294,293,0): 128, 138, 104, (294,294,0): 127, 136, 105, (294,295,0): 126, 137, 105, (294,296,0): 130, 141, 111, (294,297,0): 130, 145, 116, (294,298,0): 132, 148, 121, (294,299,0): 130, 149, 121, (294,300,0): 128, 148, 121, (294,301,0): 128, 153, 124, (294,302,0): 134, 158, 132, (294,303,0): 139, 165, 140, (294,304,0): 142, 170, 148, (294,305,0): 137, 166, 146, (294,306,0): 135, 166, 148, (294,307,0): 140, 174, 157, (294,308,0): 143, 182, 164, (294,309,0): 147, 189, 175, (294,310,0): 158, 204, 191, (294,311,0): 170, 220, 209, (294,312,0): 183, 234, 227, (294,313,0): 185, 235, 232, (294,314,0): 185, 235, 236, (294,315,0): 184, 233, 237, (294,316,0): 179, 228, 235, (294,317,0): 173, 221, 231, (294,318,0): 170, 217, 227, (294,319,0): 170, 215, 221, (294,320,0): 162, 206, 205, (294,321,0): 160, 201, 195, (294,322,0): 156, 192, 188, (294,323,0): 152, 187, 181, (294,324,0): 151, 182, 177, (294,325,0): 148, 177, 173, (294,326,0): 145, 172, 167, (294,327,0): 140, 169, 164, (294,328,0): 138, 168, 160, (294,329,0): 135, 166, 158, (294,330,0): 133, 163, 153, (294,331,0): 130, 160, 150, (294,332,0): 130, 153, 145, (294,333,0): 122, 143, 134, (294,334,0): 114, 131, 123, (294,335,0): 107, 122, 117, (294,336,0): 101, 112, 114, (294,337,0): 102, 113, 119, (294,338,0): 105, 114, 121, (294,339,0): 107, 116, 123, (294,340,0): 108, 117, 124, (294,341,0): 104, 113, 120, (294,342,0): 98, 105, 113, (294,343,0): 92, 99, 107, (294,344,0): 92, 96, 105, (294,345,0): 90, 94, 103, (294,346,0): 88, 92, 101, (294,347,0): 85, 89, 98, (294,348,0): 84, 87, 96, (294,349,0): 83, 86, 95, (294,350,0): 83, 86, 95, (294,351,0): 83, 86, 95, (294,352,0): 81, 86, 92, (294,353,0): 81, 86, 92, (294,354,0): 81, 85, 94, (294,355,0): 82, 86, 95, (294,356,0): 80, 87, 95, (294,357,0): 80, 87, 95, (294,358,0): 80, 87, 95, (294,359,0): 81, 88, 96, (294,360,0): 89, 98, 105, (294,361,0): 91, 100, 107, (294,362,0): 95, 105, 114, (294,363,0): 102, 112, 121, (294,364,0): 109, 119, 128, (294,365,0): 115, 125, 134, (294,366,0): 115, 128, 136, (294,367,0): 118, 128, 137, (294,368,0): 120, 129, 138, (294,369,0): 121, 128, 136, (294,370,0): 122, 129, 137, (294,371,0): 122, 129, 137, (294,372,0): 124, 128, 139, (294,373,0): 122, 126, 137, (294,374,0): 122, 124, 136, (294,375,0): 123, 123, 135, (294,376,0): 123, 121, 135, (294,377,0): 123, 121, 135, (294,378,0): 123, 119, 136, (294,379,0): 124, 117, 135, (294,380,0): 124, 115, 136, (294,381,0): 122, 113, 134, (294,382,0): 120, 111, 132, (294,383,0): 120, 108, 128, (294,384,0): 117, 103, 120, (294,385,0): 114, 100, 117, (294,386,0): 110, 97, 114, (294,387,0): 107, 94, 112, (294,388,0): 104, 92, 112, (294,389,0): 103, 94, 113, (294,390,0): 103, 96, 114, (294,391,0): 105, 98, 116, (294,392,0): 105, 98, 116, (294,393,0): 105, 98, 114, (294,394,0): 104, 96, 111, (294,395,0): 103, 92, 106, (294,396,0): 100, 88, 100, (294,397,0): 96, 84, 94, (294,398,0): 93, 80, 90, (294,399,0): 93, 77, 87, (294,400,0): 93, 76, 86, (294,401,0): 94, 77, 85, (294,402,0): 94, 79, 86, (294,403,0): 96, 83, 90, (294,404,0): 101, 90, 96, (294,405,0): 107, 98, 103, (294,406,0): 113, 104, 109, (294,407,0): 117, 108, 113, (294,408,0): 117, 108, 113, (294,409,0): 120, 109, 115, (294,410,0): 121, 108, 115, (294,411,0): 121, 106, 113, (294,412,0): 117, 97, 106, (294,413,0): 108, 87, 96, (294,414,0): 99, 76, 86, (294,415,0): 95, 69, 78, (294,416,0): 83, 56, 61, (294,417,0): 82, 56, 59, (294,418,0): 80, 54, 57, (294,419,0): 79, 53, 56, (294,420,0): 80, 54, 55, (294,421,0): 81, 55, 56, (294,422,0): 81, 55, 56, (294,423,0): 81, 55, 56, (294,424,0): 80, 54, 53, (294,425,0): 80, 54, 53, (294,426,0): 81, 56, 52, (294,427,0): 81, 56, 52, (294,428,0): 81, 56, 52, (294,429,0): 82, 57, 53, (294,430,0): 82, 57, 52, (294,431,0): 84, 56, 52, (294,432,0): 92, 61, 58, (294,433,0): 95, 61, 59, (294,434,0): 98, 59, 60, (294,435,0): 100, 60, 61, (294,436,0): 100, 60, 61, (294,437,0): 101, 61, 61, (294,438,0): 100, 62, 61, (294,439,0): 100, 62, 59, (294,440,0): 104, 67, 61, (294,441,0): 112, 69, 63, (294,442,0): 123, 73, 64, (294,443,0): 140, 76, 67, (294,444,0): 161, 78, 74, (294,445,0): 183, 85, 82, (294,446,0): 206, 92, 92, (294,447,0): 216, 101, 98, (294,448,0): 219, 110, 103, (294,449,0): 222, 117, 111, (294,450,0): 216, 110, 110, (294,451,0): 198, 95, 99, (294,452,0): 180, 89, 98, (294,453,0): 171, 94, 102, (294,454,0): 152, 93, 99, (294,455,0): 130, 85, 88, (294,456,0): 116, 80, 82, (294,457,0): 112, 80, 83, (294,458,0): 112, 77, 81, (294,459,0): 110, 75, 81, (294,460,0): 110, 74, 86, (294,461,0): 108, 74, 88, (294,462,0): 105, 77, 92, (294,463,0): 105, 79, 92, (294,464,0): 116, 86, 94, (294,465,0): 114, 87, 92, (294,466,0): 112, 87, 93, (294,467,0): 110, 87, 95, (294,468,0): 110, 89, 96, (294,469,0): 111, 90, 97, (294,470,0): 114, 92, 95, (294,471,0): 115, 94, 93, (294,472,0): 119, 94, 90, (294,473,0): 124, 97, 90, (294,474,0): 126, 102, 90, (294,475,0): 129, 107, 93, (294,476,0): 130, 112, 98, (294,477,0): 130, 116, 103, (294,478,0): 128, 118, 106, (294,479,0): 126, 119, 109, (294,480,0): 129, 126, 119, (294,481,0): 129, 130, 125, (294,482,0): 132, 133, 128, (294,483,0): 132, 134, 131, (294,484,0): 131, 135, 136, (294,485,0): 133, 138, 141, (294,486,0): 136, 144, 147, (294,487,0): 141, 148, 154, (294,488,0): 141, 150, 157, (294,489,0): 144, 153, 162, (294,490,0): 148, 157, 166, (294,491,0): 152, 160, 171, (294,492,0): 155, 163, 174, (294,493,0): 159, 167, 178, (294,494,0): 163, 171, 182, (294,495,0): 166, 174, 187, (294,496,0): 172, 181, 198, (294,497,0): 172, 180, 199, (294,498,0): 171, 179, 198, (294,499,0): 170, 178, 197, (294,500,0): 169, 178, 195, (294,501,0): 165, 177, 193, (294,502,0): 163, 176, 193, (294,503,0): 160, 175, 194, (294,504,0): 168, 184, 207, (294,505,0): 166, 184, 208, (294,506,0): 163, 184, 213, (294,507,0): 161, 184, 216, (294,508,0): 161, 185, 223, (294,509,0): 161, 186, 226, (294,510,0): 159, 186, 229, (294,511,0): 159, 186, 231, (294,512,0): 164, 191, 234, (294,513,0): 167, 194, 237, (294,514,0): 170, 197, 242, (294,515,0): 170, 199, 243, (294,516,0): 170, 198, 246, (294,517,0): 169, 200, 247, (294,518,0): 171, 201, 251, (294,519,0): 173, 205, 254, (294,520,0): 172, 206, 254, (294,521,0): 170, 206, 254, (294,522,0): 171, 208, 253, (294,523,0): 174, 213, 255, (294,524,0): 179, 218, 255, (294,525,0): 178, 220, 255, (294,526,0): 176, 218, 255, (294,527,0): 172, 216, 255, (294,528,0): 170, 215, 255, (294,529,0): 167, 211, 255, (294,530,0): 165, 209, 255, (294,531,0): 164, 207, 255, (294,532,0): 165, 204, 255, (294,533,0): 163, 200, 255, (294,534,0): 159, 194, 248, (294,535,0): 158, 190, 239, (294,536,0): 156, 183, 226, (294,537,0): 153, 175, 212, (294,538,0): 151, 166, 197, (294,539,0): 151, 161, 186, (294,540,0): 154, 156, 179, (294,541,0): 152, 149, 170, (294,542,0): 145, 137, 158, (294,543,0): 137, 130, 146, (294,544,0): 126, 126, 134, (294,545,0): 121, 124, 129, (294,546,0): 123, 124, 129, (294,547,0): 131, 130, 135, (294,548,0): 142, 137, 143, (294,549,0): 146, 139, 146, (294,550,0): 142, 132, 140, (294,551,0): 136, 125, 131, (294,552,0): 130, 119, 125, (294,553,0): 124, 112, 116, (294,554,0): 116, 104, 108, (294,555,0): 114, 102, 106, (294,556,0): 115, 104, 108, (294,557,0): 116, 106, 107, (294,558,0): 112, 103, 104, (294,559,0): 108, 99, 100, (294,560,0): 103, 97, 99, (294,561,0): 104, 99, 103, (294,562,0): 101, 99, 104, (294,563,0): 96, 95, 100, (294,564,0): 91, 91, 99, (294,565,0): 92, 95, 102, (294,566,0): 101, 105, 114, (294,567,0): 109, 113, 122, (294,568,0): 119, 123, 132, (294,569,0): 117, 120, 129, (294,570,0): 113, 113, 121, (294,571,0): 106, 105, 111, (294,572,0): 101, 96, 103, (294,573,0): 94, 87, 94, (294,574,0): 87, 81, 85, (294,575,0): 86, 77, 82, (294,576,0): 84, 77, 84, (294,577,0): 79, 72, 79, (294,578,0): 72, 65, 72, (294,579,0): 67, 60, 67, (294,580,0): 68, 59, 64, (294,581,0): 67, 58, 63, (294,582,0): 65, 56, 59, (294,583,0): 63, 54, 57, (294,584,0): 63, 52, 56, (294,585,0): 64, 53, 57, (294,586,0): 66, 54, 56, (294,587,0): 67, 55, 57, (294,588,0): 66, 54, 54, (294,589,0): 64, 52, 52, (294,590,0): 64, 50, 50, (294,591,0): 62, 48, 48, (294,592,0): 57, 41, 42, (294,593,0): 55, 39, 40, (294,594,0): 53, 37, 38, (294,595,0): 50, 34, 35, (294,596,0): 48, 32, 33, (294,597,0): 47, 31, 32, (294,598,0): 47, 31, 32, (294,599,0): 47, 31, 32, (295,0,0): 60, 49, 53, (295,1,0): 60, 49, 53, (295,2,0): 60, 49, 53, (295,3,0): 60, 49, 53, (295,4,0): 61, 49, 53, (295,5,0): 61, 49, 53, (295,6,0): 61, 49, 53, (295,7,0): 61, 49, 53, (295,8,0): 65, 50, 55, (295,9,0): 64, 49, 54, (295,10,0): 64, 47, 53, (295,11,0): 63, 46, 52, (295,12,0): 63, 46, 52, (295,13,0): 63, 46, 52, (295,14,0): 66, 47, 53, (295,15,0): 68, 47, 54, (295,16,0): 73, 48, 54, (295,17,0): 73, 46, 51, (295,18,0): 75, 46, 51, (295,19,0): 73, 46, 51, (295,20,0): 75, 46, 51, (295,21,0): 72, 45, 50, (295,22,0): 74, 45, 50, (295,23,0): 72, 45, 50, (295,24,0): 75, 46, 51, (295,25,0): 72, 45, 50, (295,26,0): 71, 44, 49, (295,27,0): 71, 44, 49, (295,28,0): 72, 45, 50, (295,29,0): 73, 46, 51, (295,30,0): 74, 47, 52, (295,31,0): 77, 48, 53, (295,32,0): 80, 49, 55, (295,33,0): 81, 49, 54, (295,34,0): 82, 50, 55, (295,35,0): 82, 50, 53, (295,36,0): 83, 51, 54, (295,37,0): 83, 51, 52, (295,38,0): 86, 52, 53, (295,39,0): 86, 52, 51, (295,40,0): 94, 59, 57, (295,41,0): 94, 59, 55, (295,42,0): 95, 57, 54, (295,43,0): 95, 58, 52, (295,44,0): 95, 58, 52, (295,45,0): 94, 57, 49, (295,46,0): 94, 57, 49, (295,47,0): 94, 57, 48, (295,48,0): 95, 57, 46, (295,49,0): 99, 59, 49, (295,50,0): 106, 64, 52, (295,51,0): 112, 68, 55, (295,52,0): 118, 72, 59, (295,53,0): 122, 75, 59, (295,54,0): 124, 75, 58, (295,55,0): 124, 76, 54, (295,56,0): 133, 83, 60, (295,57,0): 134, 84, 57, (295,58,0): 135, 88, 58, (295,59,0): 137, 91, 57, (295,60,0): 138, 94, 59, (295,61,0): 139, 95, 58, (295,62,0): 138, 96, 56, (295,63,0): 139, 95, 56, (295,64,0): 138, 93, 54, (295,65,0): 139, 94, 55, (295,66,0): 141, 96, 55, (295,67,0): 143, 98, 57, (295,68,0): 145, 102, 60, (295,69,0): 147, 104, 62, (295,70,0): 149, 106, 63, (295,71,0): 149, 108, 64, (295,72,0): 146, 105, 59, (295,73,0): 146, 105, 59, (295,74,0): 145, 107, 60, (295,75,0): 146, 108, 61, (295,76,0): 147, 109, 60, (295,77,0): 147, 111, 61, (295,78,0): 148, 112, 62, (295,79,0): 149, 111, 62, (295,80,0): 144, 103, 57, (295,81,0): 145, 102, 57, (295,82,0): 145, 104, 58, (295,83,0): 145, 104, 58, (295,84,0): 146, 105, 59, (295,85,0): 147, 106, 60, (295,86,0): 145, 107, 60, (295,87,0): 146, 108, 61, (295,88,0): 140, 104, 56, (295,89,0): 140, 104, 56, (295,90,0): 142, 106, 58, (295,91,0): 143, 107, 59, (295,92,0): 143, 109, 61, (295,93,0): 145, 111, 63, (295,94,0): 146, 112, 64, (295,95,0): 147, 113, 65, (295,96,0): 147, 109, 62, (295,97,0): 148, 110, 63, (295,98,0): 150, 112, 65, (295,99,0): 152, 114, 65, (295,100,0): 155, 117, 68, (295,101,0): 158, 121, 69, (295,102,0): 161, 121, 70, (295,103,0): 163, 123, 71, (295,104,0): 168, 127, 73, (295,105,0): 169, 128, 74, (295,106,0): 172, 129, 74, (295,107,0): 174, 131, 76, (295,108,0): 175, 133, 75, (295,109,0): 176, 134, 76, (295,110,0): 175, 133, 73, (295,111,0): 174, 134, 73, (295,112,0): 164, 128, 68, (295,113,0): 158, 123, 65, (295,114,0): 151, 116, 62, (295,115,0): 146, 110, 60, (295,116,0): 145, 108, 63, (295,117,0): 147, 110, 66, (295,118,0): 150, 113, 68, (295,119,0): 152, 116, 68, (295,120,0): 157, 121, 69, (295,121,0): 161, 126, 70, (295,122,0): 164, 129, 71, (295,123,0): 165, 131, 70, (295,124,0): 163, 129, 68, (295,125,0): 162, 128, 67, (295,126,0): 164, 129, 71, (295,127,0): 166, 130, 72, (295,128,0): 175, 136, 77, (295,129,0): 177, 139, 77, (295,130,0): 179, 141, 79, (295,131,0): 180, 142, 80, (295,132,0): 179, 140, 81, (295,133,0): 176, 137, 78, (295,134,0): 172, 133, 74, (295,135,0): 170, 131, 74, (295,136,0): 171, 132, 75, (295,137,0): 171, 132, 77, (295,138,0): 170, 131, 76, (295,139,0): 169, 130, 75, (295,140,0): 166, 127, 72, (295,141,0): 164, 125, 70, (295,142,0): 161, 121, 69, (295,143,0): 159, 120, 65, (295,144,0): 158, 119, 62, (295,145,0): 158, 119, 60, (295,146,0): 157, 118, 59, (295,147,0): 158, 119, 60, (295,148,0): 159, 120, 61, (295,149,0): 161, 123, 61, (295,150,0): 163, 125, 63, (295,151,0): 165, 127, 64, (295,152,0): 171, 133, 70, (295,153,0): 174, 136, 73, (295,154,0): 177, 139, 74, (295,155,0): 179, 141, 76, (295,156,0): 180, 142, 77, (295,157,0): 183, 145, 80, (295,158,0): 189, 151, 86, (295,159,0): 194, 155, 88, (295,160,0): 195, 154, 88, (295,161,0): 197, 153, 88, (295,162,0): 198, 155, 87, (295,163,0): 198, 155, 87, (295,164,0): 195, 155, 86, (295,165,0): 194, 154, 85, (295,166,0): 192, 152, 82, (295,167,0): 191, 151, 81, (295,168,0): 192, 152, 80, (295,169,0): 191, 151, 79, (295,170,0): 191, 151, 79, (295,171,0): 192, 152, 80, (295,172,0): 193, 153, 81, (295,173,0): 195, 156, 81, (295,174,0): 196, 157, 82, (295,175,0): 197, 160, 80, (295,176,0): 204, 175, 83, (295,177,0): 213, 187, 90, (295,178,0): 229, 203, 106, (295,179,0): 242, 216, 119, (295,180,0): 249, 223, 126, (295,181,0): 252, 226, 131, (295,182,0): 252, 226, 131, (295,183,0): 253, 227, 134, (295,184,0): 254, 227, 136, (295,185,0): 255, 229, 138, (295,186,0): 255, 231, 142, (295,187,0): 255, 230, 141, (295,188,0): 255, 228, 139, (295,189,0): 253, 226, 137, (295,190,0): 254, 227, 140, (295,191,0): 255, 229, 140, (295,192,0): 253, 228, 138, (295,193,0): 252, 229, 136, (295,194,0): 251, 230, 137, (295,195,0): 250, 231, 136, (295,196,0): 251, 232, 137, (295,197,0): 249, 235, 136, (295,198,0): 250, 236, 137, (295,199,0): 247, 238, 137, (295,200,0): 249, 239, 141, (295,201,0): 252, 246, 148, (295,202,0): 255, 252, 158, (295,203,0): 255, 255, 163, (295,204,0): 255, 254, 163, (295,205,0): 255, 254, 164, (295,206,0): 254, 254, 166, (295,207,0): 255, 255, 166, (295,208,0): 255, 255, 164, (295,209,0): 255, 255, 162, (295,210,0): 255, 255, 162, (295,211,0): 254, 255, 161, (295,212,0): 253, 254, 160, (295,213,0): 252, 253, 159, (295,214,0): 252, 253, 159, (295,215,0): 251, 252, 158, (295,216,0): 249, 250, 156, (295,217,0): 250, 251, 157, (295,218,0): 252, 253, 159, (295,219,0): 253, 254, 160, (295,220,0): 254, 255, 161, (295,221,0): 253, 254, 160, (295,222,0): 253, 254, 160, (295,223,0): 252, 253, 159, (295,224,0): 254, 255, 159, (295,225,0): 254, 255, 159, (295,226,0): 254, 255, 159, (295,227,0): 254, 255, 161, (295,228,0): 254, 255, 161, (295,229,0): 254, 255, 161, (295,230,0): 254, 255, 161, (295,231,0): 254, 255, 162, (295,232,0): 254, 255, 162, (295,233,0): 254, 254, 164, (295,234,0): 254, 254, 164, (295,235,0): 254, 254, 164, (295,236,0): 254, 254, 164, (295,237,0): 254, 254, 166, (295,238,0): 254, 254, 166, (295,239,0): 252, 255, 168, (295,240,0): 251, 255, 171, (295,241,0): 250, 255, 175, (295,242,0): 250, 255, 175, (295,243,0): 250, 255, 175, (295,244,0): 250, 254, 177, (295,245,0): 250, 254, 177, (295,246,0): 250, 254, 178, (295,247,0): 250, 254, 180, (295,248,0): 250, 254, 180, (295,249,0): 250, 253, 182, (295,250,0): 250, 253, 184, (295,251,0): 251, 254, 187, (295,252,0): 251, 254, 187, (295,253,0): 252, 254, 189, (295,254,0): 252, 254, 189, (295,255,0): 252, 254, 191, (295,256,0): 253, 254, 194, (295,257,0): 250, 254, 195, (295,258,0): 249, 253, 194, (295,259,0): 250, 255, 194, (295,260,0): 250, 255, 194, (295,261,0): 247, 255, 192, (295,262,0): 239, 251, 185, (295,263,0): 231, 248, 180, (295,264,0): 219, 238, 172, (295,265,0): 212, 233, 166, (295,266,0): 205, 227, 162, (295,267,0): 198, 224, 159, (295,268,0): 195, 221, 160, (295,269,0): 190, 218, 159, (295,270,0): 183, 212, 154, (295,271,0): 180, 207, 152, (295,272,0): 173, 195, 146, (295,273,0): 178, 195, 150, (295,274,0): 176, 193, 148, (295,275,0): 165, 182, 137, (295,276,0): 150, 167, 123, (295,277,0): 140, 155, 112, (295,278,0): 138, 153, 112, (295,279,0): 140, 155, 114, (295,280,0): 138, 150, 110, (295,281,0): 136, 148, 110, (295,282,0): 134, 146, 108, (295,283,0): 135, 145, 108, (295,284,0): 135, 145, 110, (295,285,0): 132, 142, 107, (295,286,0): 125, 135, 100, (295,287,0): 119, 129, 94, (295,288,0): 118, 132, 96, (295,289,0): 122, 136, 100, (295,290,0): 129, 141, 105, (295,291,0): 131, 142, 108, (295,292,0): 129, 140, 106, (295,293,0): 127, 138, 106, (295,294,0): 128, 137, 106, (295,295,0): 127, 138, 108, (295,296,0): 126, 139, 111, (295,297,0): 130, 144, 118, (295,298,0): 133, 149, 122, (295,299,0): 129, 149, 122, (295,300,0): 125, 148, 120, (295,301,0): 127, 151, 125, (295,302,0): 134, 160, 133, (295,303,0): 140, 168, 143, (295,304,0): 144, 173, 151, (295,305,0): 137, 169, 148, (295,306,0): 134, 167, 148, (295,307,0): 139, 173, 156, (295,308,0): 142, 181, 163, (295,309,0): 147, 189, 175, (295,310,0): 160, 206, 195, (295,311,0): 174, 221, 213, (295,312,0): 186, 235, 231, (295,313,0): 184, 234, 233, (295,314,0): 182, 231, 235, (295,315,0): 180, 229, 236, (295,316,0): 177, 225, 237, (295,317,0): 172, 220, 234, (295,318,0): 168, 214, 229, (295,319,0): 166, 210, 221, (295,320,0): 160, 204, 207, (295,321,0): 159, 199, 199, (295,322,0): 157, 192, 194, (295,323,0): 156, 187, 189, (295,324,0): 155, 185, 185, (295,325,0): 152, 180, 181, (295,326,0): 148, 174, 173, (295,327,0): 144, 170, 167, (295,328,0): 140, 167, 162, (295,329,0): 135, 165, 157, (295,330,0): 134, 161, 154, (295,331,0): 131, 157, 148, (295,332,0): 128, 149, 140, (295,333,0): 121, 138, 130, (295,334,0): 112, 125, 116, (295,335,0): 103, 115, 111, (295,336,0): 99, 110, 112, (295,337,0): 101, 112, 118, (295,338,0): 105, 114, 121, (295,339,0): 109, 118, 125, (295,340,0): 110, 119, 126, (295,341,0): 105, 114, 121, (295,342,0): 96, 103, 111, (295,343,0): 89, 96, 104, (295,344,0): 91, 95, 104, (295,345,0): 90, 94, 103, (295,346,0): 87, 91, 100, (295,347,0): 85, 89, 98, (295,348,0): 84, 87, 96, (295,349,0): 83, 86, 95, (295,350,0): 83, 86, 95, (295,351,0): 83, 86, 95, (295,352,0): 80, 85, 91, (295,353,0): 80, 85, 91, (295,354,0): 81, 85, 94, (295,355,0): 81, 85, 94, (295,356,0): 80, 87, 95, (295,357,0): 81, 88, 96, (295,358,0): 82, 89, 97, (295,359,0): 82, 89, 99, (295,360,0): 94, 103, 112, (295,361,0): 93, 101, 112, (295,362,0): 94, 104, 114, (295,363,0): 101, 111, 121, (295,364,0): 110, 120, 130, (295,365,0): 117, 127, 139, (295,366,0): 117, 129, 141, (295,367,0): 118, 128, 138, (295,368,0): 118, 127, 136, (295,369,0): 120, 127, 135, (295,370,0): 123, 130, 138, (295,371,0): 124, 131, 139, (295,372,0): 126, 130, 141, (295,373,0): 126, 128, 140, (295,374,0): 125, 125, 137, (295,375,0): 124, 124, 136, (295,376,0): 124, 122, 136, (295,377,0): 125, 121, 136, (295,378,0): 126, 119, 135, (295,379,0): 125, 118, 136, (295,380,0): 124, 115, 134, (295,381,0): 122, 113, 132, (295,382,0): 121, 112, 133, (295,383,0): 122, 110, 130, (295,384,0): 119, 105, 122, (295,385,0): 118, 101, 117, (295,386,0): 112, 98, 115, (295,387,0): 107, 94, 111, (295,388,0): 104, 93, 110, (295,389,0): 104, 92, 112, (295,390,0): 104, 95, 114, (295,391,0): 104, 97, 113, (295,392,0): 105, 98, 114, (295,393,0): 105, 97, 112, (295,394,0): 106, 95, 109, (295,395,0): 103, 93, 104, (295,396,0): 100, 88, 98, (295,397,0): 97, 84, 93, (295,398,0): 95, 79, 89, (295,399,0): 93, 78, 85, (295,400,0): 94, 77, 85, (295,401,0): 94, 77, 83, (295,402,0): 94, 79, 86, (295,403,0): 97, 82, 87, (295,404,0): 101, 88, 95, (295,405,0): 107, 96, 100, (295,406,0): 114, 103, 109, (295,407,0): 118, 107, 111, (295,408,0): 121, 108, 115, (295,409,0): 122, 110, 114, (295,410,0): 126, 111, 118, (295,411,0): 124, 107, 113, (295,412,0): 119, 98, 107, (295,413,0): 108, 85, 93, (295,414,0): 98, 72, 83, (295,415,0): 90, 64, 73, (295,416,0): 77, 50, 55, (295,417,0): 78, 52, 55, (295,418,0): 79, 53, 56, (295,419,0): 79, 53, 56, (295,420,0): 79, 53, 54, (295,421,0): 79, 53, 54, (295,422,0): 79, 53, 54, (295,423,0): 80, 54, 55, (295,424,0): 79, 53, 52, (295,425,0): 79, 53, 52, (295,426,0): 79, 54, 50, (295,427,0): 79, 54, 50, (295,428,0): 80, 55, 51, (295,429,0): 80, 55, 51, (295,430,0): 80, 55, 50, (295,431,0): 82, 54, 50, (295,432,0): 93, 62, 59, (295,433,0): 95, 61, 59, (295,434,0): 98, 59, 60, (295,435,0): 99, 59, 60, (295,436,0): 100, 58, 60, (295,437,0): 99, 59, 60, (295,438,0): 98, 60, 59, (295,439,0): 98, 60, 57, (295,440,0): 106, 69, 63, (295,441,0): 112, 71, 65, (295,442,0): 127, 74, 66, (295,443,0): 145, 78, 70, (295,444,0): 168, 83, 78, (295,445,0): 194, 92, 88, (295,446,0): 221, 103, 103, (295,447,0): 229, 114, 111, (295,448,0): 247, 148, 143, (295,449,0): 246, 151, 147, (295,450,0): 239, 134, 138, (295,451,0): 215, 108, 116, (295,452,0): 195, 93, 104, (295,453,0): 182, 95, 104, (295,454,0): 158, 93, 97, (295,455,0): 130, 84, 86, (295,456,0): 116, 82, 81, (295,457,0): 111, 83, 82, (295,458,0): 113, 81, 84, (295,459,0): 114, 79, 86, (295,460,0): 114, 78, 88, (295,461,0): 112, 78, 92, (295,462,0): 108, 82, 95, (295,463,0): 106, 83, 93, (295,464,0): 116, 89, 98, (295,465,0): 115, 88, 95, (295,466,0): 112, 89, 97, (295,467,0): 111, 90, 99, (295,468,0): 112, 90, 102, (295,469,0): 113, 92, 101, (295,470,0): 116, 93, 99, (295,471,0): 119, 94, 97, (295,472,0): 121, 95, 94, (295,473,0): 124, 99, 92, (295,474,0): 129, 105, 95, (295,475,0): 134, 112, 99, (295,476,0): 136, 118, 104, (295,477,0): 136, 124, 110, (295,478,0): 136, 126, 114, (295,479,0): 133, 129, 118, (295,480,0): 129, 128, 123, (295,481,0): 130, 132, 129, (295,482,0): 132, 134, 131, (295,483,0): 131, 135, 134, (295,484,0): 132, 137, 140, (295,485,0): 135, 143, 146, (295,486,0): 141, 150, 155, (295,487,0): 145, 156, 162, (295,488,0): 144, 154, 163, (295,489,0): 147, 160, 169, (295,490,0): 151, 164, 173, (295,491,0): 155, 165, 175, (295,492,0): 156, 166, 176, (295,493,0): 159, 167, 178, (295,494,0): 164, 172, 183, (295,495,0): 168, 176, 189, (295,496,0): 173, 182, 199, (295,497,0): 173, 181, 200, (295,498,0): 174, 182, 201, (295,499,0): 171, 182, 200, (295,500,0): 171, 182, 200, (295,501,0): 169, 182, 201, (295,502,0): 166, 181, 200, (295,503,0): 164, 181, 201, (295,504,0): 170, 188, 212, (295,505,0): 167, 187, 214, (295,506,0): 164, 187, 218, (295,507,0): 163, 187, 221, (295,508,0): 162, 188, 225, (295,509,0): 163, 188, 229, (295,510,0): 162, 189, 232, (295,511,0): 162, 189, 234, (295,512,0): 164, 191, 234, (295,513,0): 167, 194, 237, (295,514,0): 170, 199, 243, (295,515,0): 172, 201, 245, (295,516,0): 170, 201, 248, (295,517,0): 171, 202, 249, (295,518,0): 173, 205, 254, (295,519,0): 174, 208, 255, (295,520,0): 170, 206, 254, (295,521,0): 170, 206, 254, (295,522,0): 172, 210, 255, (295,523,0): 174, 216, 255, (295,524,0): 179, 221, 255, (295,525,0): 179, 221, 255, (295,526,0): 175, 219, 255, (295,527,0): 172, 216, 255, (295,528,0): 172, 217, 255, (295,529,0): 169, 214, 255, (295,530,0): 166, 210, 255, (295,531,0): 166, 207, 255, (295,532,0): 166, 205, 255, (295,533,0): 166, 202, 255, (295,534,0): 165, 197, 254, (295,535,0): 164, 194, 248, (295,536,0): 166, 190, 238, (295,537,0): 161, 179, 219, (295,538,0): 153, 166, 198, (295,539,0): 151, 157, 183, (295,540,0): 151, 152, 173, (295,541,0): 149, 144, 164, (295,542,0): 144, 135, 152, (295,543,0): 139, 128, 142, (295,544,0): 134, 129, 136, (295,545,0): 125, 123, 128, (295,546,0): 122, 117, 123, (295,547,0): 127, 121, 125, (295,548,0): 140, 131, 136, (295,549,0): 146, 135, 141, (295,550,0): 143, 130, 137, (295,551,0): 136, 124, 128, (295,552,0): 129, 117, 121, (295,553,0): 120, 108, 110, (295,554,0): 111, 99, 101, (295,555,0): 108, 98, 99, (295,556,0): 111, 101, 102, (295,557,0): 112, 104, 102, (295,558,0): 109, 101, 99, (295,559,0): 104, 99, 96, (295,560,0): 105, 99, 99, (295,561,0): 108, 102, 104, (295,562,0): 108, 102, 104, (295,563,0): 103, 98, 102, (295,564,0): 97, 95, 100, (295,565,0): 98, 97, 103, (295,566,0): 106, 107, 112, (295,567,0): 114, 115, 120, (295,568,0): 114, 114, 122, (295,569,0): 110, 111, 116, (295,570,0): 105, 104, 110, (295,571,0): 97, 95, 100, (295,572,0): 92, 87, 91, (295,573,0): 87, 81, 83, (295,574,0): 86, 77, 80, (295,575,0): 86, 77, 80, (295,576,0): 81, 75, 79, (295,577,0): 75, 68, 75, (295,578,0): 68, 61, 68, (295,579,0): 63, 56, 63, (295,580,0): 62, 53, 58, (295,581,0): 61, 52, 57, (295,582,0): 61, 52, 55, (295,583,0): 60, 51, 54, (295,584,0): 62, 51, 55, (295,585,0): 62, 51, 55, (295,586,0): 64, 52, 54, (295,587,0): 64, 52, 54, (295,588,0): 64, 52, 52, (295,589,0): 63, 51, 51, (295,590,0): 63, 49, 49, (295,591,0): 62, 48, 48, (295,592,0): 58, 42, 43, (295,593,0): 56, 40, 41, (295,594,0): 53, 37, 38, (295,595,0): 50, 34, 35, (295,596,0): 48, 32, 33, (295,597,0): 47, 31, 32, (295,598,0): 46, 30, 31, (295,599,0): 46, 30, 31, (296,0,0): 56, 47, 50, (296,1,0): 56, 47, 50, (296,2,0): 57, 46, 50, (296,3,0): 57, 46, 50, (296,4,0): 57, 46, 50, (296,5,0): 57, 46, 50, (296,6,0): 58, 46, 50, (296,7,0): 58, 46, 50, (296,8,0): 60, 45, 50, (296,9,0): 60, 45, 50, (296,10,0): 61, 46, 51, (296,11,0): 61, 46, 51, (296,12,0): 63, 46, 52, (296,13,0): 63, 46, 52, (296,14,0): 64, 47, 53, (296,15,0): 66, 47, 53, (296,16,0): 69, 46, 52, (296,17,0): 71, 46, 52, (296,18,0): 72, 45, 52, (296,19,0): 70, 45, 51, (296,20,0): 71, 44, 51, (296,21,0): 69, 44, 50, (296,22,0): 70, 43, 50, (296,23,0): 68, 43, 49, (296,24,0): 72, 45, 52, (296,25,0): 72, 45, 52, (296,26,0): 72, 45, 52, (296,27,0): 72, 45, 52, (296,28,0): 73, 46, 53, (296,29,0): 75, 48, 55, (296,30,0): 77, 50, 57, (296,31,0): 80, 51, 56, (296,32,0): 80, 49, 55, (296,33,0): 82, 50, 55, (296,34,0): 85, 50, 56, (296,35,0): 86, 51, 55, (296,36,0): 87, 52, 56, (296,37,0): 88, 54, 55, (296,38,0): 89, 53, 55, (296,39,0): 90, 54, 54, (296,40,0): 94, 56, 55, (296,41,0): 94, 56, 53, (296,42,0): 94, 56, 53, (296,43,0): 95, 58, 52, (296,44,0): 96, 57, 52, (296,45,0): 97, 58, 51, (296,46,0): 97, 58, 51, (296,47,0): 98, 60, 51, (296,48,0): 102, 62, 52, (296,49,0): 103, 63, 53, (296,50,0): 107, 65, 53, (296,51,0): 112, 68, 55, (296,52,0): 117, 71, 58, (296,53,0): 122, 75, 59, (296,54,0): 125, 76, 59, (296,55,0): 127, 79, 57, (296,56,0): 132, 82, 59, (296,57,0): 133, 83, 56, (296,58,0): 134, 85, 55, (296,59,0): 134, 88, 54, (296,60,0): 135, 91, 56, (296,61,0): 137, 93, 56, (296,62,0): 139, 95, 56, (296,63,0): 140, 96, 57, (296,64,0): 139, 94, 55, (296,65,0): 142, 94, 56, (296,66,0): 142, 97, 56, (296,67,0): 144, 99, 58, (296,68,0): 147, 102, 61, (296,69,0): 149, 106, 64, (296,70,0): 151, 108, 65, (296,71,0): 152, 109, 66, (296,72,0): 149, 108, 62, (296,73,0): 149, 108, 62, (296,74,0): 149, 108, 62, (296,75,0): 147, 109, 62, (296,76,0): 148, 110, 61, (296,77,0): 148, 110, 61, (296,78,0): 148, 110, 61, (296,79,0): 148, 110, 61, (296,80,0): 145, 104, 58, (296,81,0): 146, 103, 60, (296,82,0): 145, 104, 60, (296,83,0): 145, 104, 60, (296,84,0): 145, 104, 60, (296,85,0): 145, 104, 60, (296,86,0): 143, 105, 60, (296,87,0): 143, 105, 60, (296,88,0): 139, 102, 57, (296,89,0): 140, 103, 58, (296,90,0): 140, 103, 58, (296,91,0): 141, 104, 59, (296,92,0): 140, 106, 60, (296,93,0): 140, 106, 60, (296,94,0): 141, 107, 61, (296,95,0): 141, 107, 59, (296,96,0): 146, 108, 61, (296,97,0): 147, 109, 60, (296,98,0): 152, 112, 63, (296,99,0): 155, 115, 64, (296,100,0): 158, 118, 67, (296,101,0): 161, 121, 69, (296,102,0): 164, 123, 69, (296,103,0): 166, 125, 69, (296,104,0): 168, 126, 68, (296,105,0): 170, 128, 70, (296,106,0): 172, 130, 70, (296,107,0): 175, 133, 73, (296,108,0): 179, 135, 74, (296,109,0): 181, 137, 76, (296,110,0): 181, 137, 74, (296,111,0): 179, 138, 74, (296,112,0): 172, 134, 71, (296,113,0): 167, 131, 69, (296,114,0): 163, 127, 69, (296,115,0): 160, 123, 70, (296,116,0): 158, 120, 71, (296,117,0): 158, 120, 73, (296,118,0): 159, 121, 72, (296,119,0): 160, 123, 71, (296,120,0): 168, 131, 76, (296,121,0): 169, 133, 73, (296,122,0): 169, 133, 71, (296,123,0): 168, 133, 69, (296,124,0): 166, 131, 67, (296,125,0): 166, 131, 67, (296,126,0): 170, 134, 72, (296,127,0): 173, 137, 75, (296,128,0): 178, 140, 77, (296,129,0): 178, 140, 77, (296,130,0): 180, 142, 79, (296,131,0): 183, 145, 82, (296,132,0): 186, 148, 86, (296,133,0): 184, 146, 84, (296,134,0): 178, 140, 78, (296,135,0): 173, 134, 75, (296,136,0): 175, 136, 77, (296,137,0): 175, 136, 79, (296,138,0): 174, 135, 78, (296,139,0): 173, 134, 77, (296,140,0): 171, 132, 75, (296,141,0): 168, 129, 72, (296,142,0): 166, 127, 72, (296,143,0): 165, 126, 71, (296,144,0): 165, 126, 69, (296,145,0): 165, 126, 67, (296,146,0): 164, 126, 64, (296,147,0): 161, 123, 61, (296,148,0): 159, 121, 59, (296,149,0): 161, 123, 61, (296,150,0): 166, 128, 66, (296,151,0): 171, 133, 70, (296,152,0): 179, 141, 78, (296,153,0): 177, 139, 74, (296,154,0): 174, 136, 71, (296,155,0): 174, 136, 71, (296,156,0): 175, 138, 70, (296,157,0): 178, 141, 73, (296,158,0): 180, 143, 75, (296,159,0): 182, 143, 76, (296,160,0): 192, 151, 85, (296,161,0): 193, 153, 84, (296,162,0): 194, 154, 85, (296,163,0): 194, 154, 85, (296,164,0): 196, 153, 85, (296,165,0): 195, 152, 84, (296,166,0): 194, 151, 82, (296,167,0): 193, 150, 81, (296,168,0): 192, 150, 78, (296,169,0): 196, 154, 82, (296,170,0): 199, 157, 83, (296,171,0): 200, 158, 84, (296,172,0): 200, 158, 84, (296,173,0): 201, 159, 83, (296,174,0): 203, 161, 85, (296,175,0): 204, 166, 83, (296,176,0): 208, 178, 82, (296,177,0): 222, 194, 94, (296,178,0): 240, 212, 113, (296,179,0): 252, 224, 125, (296,180,0): 255, 227, 128, (296,181,0): 255, 227, 130, (296,182,0): 255, 228, 134, (296,183,0): 255, 230, 138, (296,184,0): 255, 226, 136, (296,185,0): 255, 227, 137, (296,186,0): 255, 227, 139, (296,187,0): 255, 227, 139, (296,188,0): 255, 228, 142, (296,189,0): 255, 229, 143, (296,190,0): 255, 228, 145, (296,191,0): 255, 230, 143, (296,192,0): 254, 229, 139, (296,193,0): 255, 232, 139, (296,194,0): 255, 234, 141, (296,195,0): 255, 238, 143, (296,196,0): 255, 239, 144, (296,197,0): 255, 241, 144, (296,198,0): 254, 240, 143, (296,199,0): 251, 241, 143, (296,200,0): 255, 247, 150, (296,201,0): 255, 249, 151, (296,202,0): 255, 251, 157, (296,203,0): 255, 253, 160, (296,204,0): 255, 253, 162, (296,205,0): 254, 253, 163, (296,206,0): 253, 253, 165, (296,207,0): 252, 252, 164, (296,208,0): 254, 255, 164, (296,209,0): 253, 255, 162, (296,210,0): 252, 255, 161, (296,211,0): 250, 254, 159, (296,212,0): 250, 254, 159, (296,213,0): 250, 254, 159, (296,214,0): 251, 255, 160, (296,215,0): 251, 255, 160, (296,216,0): 249, 253, 158, (296,217,0): 249, 253, 158, (296,218,0): 249, 253, 158, (296,219,0): 250, 254, 159, (296,220,0): 250, 254, 159, (296,221,0): 251, 255, 160, (296,222,0): 251, 255, 160, (296,223,0): 251, 255, 160, (296,224,0): 252, 255, 161, (296,225,0): 252, 255, 161, (296,226,0): 252, 255, 161, (296,227,0): 252, 255, 162, (296,228,0): 252, 255, 162, (296,229,0): 252, 255, 162, (296,230,0): 252, 255, 162, (296,231,0): 252, 255, 164, (296,232,0): 254, 255, 166, (296,233,0): 254, 255, 168, (296,234,0): 254, 255, 168, (296,235,0): 254, 255, 168, (296,236,0): 254, 255, 168, (296,237,0): 254, 255, 170, (296,238,0): 254, 255, 170, (296,239,0): 253, 255, 172, (296,240,0): 252, 255, 175, (296,241,0): 249, 255, 178, (296,242,0): 248, 255, 177, (296,243,0): 246, 253, 175, (296,244,0): 246, 253, 176, (296,245,0): 246, 252, 178, (296,246,0): 247, 253, 179, (296,247,0): 247, 253, 181, (296,248,0): 246, 252, 182, (296,249,0): 247, 252, 185, (296,250,0): 249, 254, 187, (296,251,0): 250, 255, 189, (296,252,0): 251, 255, 190, (296,253,0): 250, 255, 191, (296,254,0): 250, 255, 191, (296,255,0): 249, 253, 192, (296,256,0): 251, 255, 196, (296,257,0): 252, 255, 197, (296,258,0): 252, 255, 197, (296,259,0): 251, 255, 197, (296,260,0): 247, 255, 193, (296,261,0): 244, 254, 191, (296,262,0): 240, 252, 188, (296,263,0): 236, 251, 186, (296,264,0): 229, 245, 182, (296,265,0): 220, 240, 177, (296,266,0): 211, 233, 171, (296,267,0): 201, 227, 166, (296,268,0): 198, 223, 165, (296,269,0): 194, 222, 164, (296,270,0): 190, 219, 161, (296,271,0): 188, 217, 163, (296,272,0): 176, 203, 152, (296,273,0): 175, 199, 151, (296,274,0): 169, 193, 145, (296,275,0): 161, 185, 137, (296,276,0): 151, 175, 127, (296,277,0): 144, 166, 119, (296,278,0): 139, 161, 115, (296,279,0): 136, 158, 112, (296,280,0): 142, 161, 116, (296,281,0): 135, 153, 111, (296,282,0): 129, 147, 105, (296,283,0): 130, 147, 105, (296,284,0): 133, 149, 110, (296,285,0): 133, 149, 110, (296,286,0): 128, 144, 105, (296,287,0): 123, 139, 100, (296,288,0): 126, 142, 105, (296,289,0): 128, 144, 108, (296,290,0): 132, 146, 111, (296,291,0): 131, 145, 112, (296,292,0): 129, 143, 110, (296,293,0): 128, 141, 111, (296,294,0): 131, 142, 112, (296,295,0): 130, 143, 115, (296,296,0): 129, 142, 116, (296,297,0): 129, 145, 119, (296,298,0): 130, 148, 122, (296,299,0): 129, 149, 124, (296,300,0): 128, 152, 126, (296,301,0): 131, 157, 132, (296,302,0): 137, 165, 140, (296,303,0): 143, 173, 149, (296,304,0): 146, 175, 153, (296,305,0): 145, 177, 156, (296,306,0): 144, 177, 158, (296,307,0): 142, 179, 161, (296,308,0): 145, 184, 166, (296,309,0): 151, 193, 179, (296,310,0): 162, 205, 195, (296,311,0): 169, 214, 207, (296,312,0): 176, 225, 222, (296,313,0): 176, 224, 226, (296,314,0): 175, 224, 229, (296,315,0): 174, 223, 230, (296,316,0): 171, 219, 231, (296,317,0): 168, 216, 230, (296,318,0): 164, 211, 227, (296,319,0): 163, 209, 224, (296,320,0): 159, 202, 209, (296,321,0): 158, 197, 202, (296,322,0): 156, 191, 197, (296,323,0): 155, 186, 191, (296,324,0): 153, 181, 185, (296,325,0): 149, 174, 179, (296,326,0): 143, 167, 171, (296,327,0): 136, 162, 163, (296,328,0): 138, 164, 161, (296,329,0): 135, 162, 157, (296,330,0): 131, 156, 150, (296,331,0): 126, 149, 141, (296,332,0): 120, 140, 131, (296,333,0): 114, 129, 122, (296,334,0): 111, 122, 114, (296,335,0): 107, 118, 114, (296,336,0): 97, 107, 109, (296,337,0): 100, 109, 116, (296,338,0): 105, 112, 120, (296,339,0): 107, 114, 122, (296,340,0): 105, 112, 120, (296,341,0): 101, 108, 116, (296,342,0): 96, 100, 109, (296,343,0): 92, 96, 105, (296,344,0): 90, 93, 102, (296,345,0): 89, 92, 101, (296,346,0): 86, 89, 98, (296,347,0): 84, 87, 96, (296,348,0): 84, 84, 94, (296,349,0): 82, 82, 92, (296,350,0): 82, 82, 92, (296,351,0): 80, 83, 92, (296,352,0): 81, 85, 94, (296,353,0): 80, 84, 93, (296,354,0): 79, 83, 92, (296,355,0): 79, 83, 92, (296,356,0): 78, 85, 95, (296,357,0): 81, 88, 98, (296,358,0): 84, 91, 101, (296,359,0): 86, 92, 104, (296,360,0): 92, 100, 111, (296,361,0): 94, 102, 115, (296,362,0): 98, 108, 120, (296,363,0): 103, 113, 125, (296,364,0): 109, 119, 131, (296,365,0): 115, 124, 139, (296,366,0): 117, 129, 143, (296,367,0): 122, 132, 144, (296,368,0): 124, 130, 142, (296,369,0): 126, 130, 141, (296,370,0): 127, 131, 142, (296,371,0): 127, 131, 142, (296,372,0): 127, 129, 141, (296,373,0): 126, 128, 140, (296,374,0): 127, 127, 139, (296,375,0): 127, 125, 138, (296,376,0): 129, 125, 139, (296,377,0): 128, 124, 138, (296,378,0): 128, 122, 136, (296,379,0): 127, 118, 135, (296,380,0): 127, 116, 133, (296,381,0): 125, 114, 131, (296,382,0): 124, 112, 132, (296,383,0): 125, 112, 130, (296,384,0): 122, 108, 123, (296,385,0): 125, 109, 122, (296,386,0): 121, 107, 122, (296,387,0): 115, 102, 119, (296,388,0): 107, 96, 112, (296,389,0): 104, 93, 110, (296,390,0): 102, 93, 110, (296,391,0): 104, 95, 112, (296,392,0): 107, 98, 115, (296,393,0): 107, 99, 114, (296,394,0): 108, 97, 111, (296,395,0): 106, 96, 107, (296,396,0): 104, 92, 102, (296,397,0): 101, 88, 97, (296,398,0): 98, 83, 90, (296,399,0): 96, 81, 86, (296,400,0): 102, 85, 91, (296,401,0): 99, 83, 86, (296,402,0): 96, 79, 85, (296,403,0): 96, 81, 84, (296,404,0): 102, 87, 92, (296,405,0): 107, 95, 97, (296,406,0): 111, 99, 103, (296,407,0): 113, 101, 103, (296,408,0): 124, 109, 114, (296,409,0): 123, 107, 110, (296,410,0): 118, 101, 107, (296,411,0): 113, 94, 98, (296,412,0): 105, 84, 91, (296,413,0): 97, 74, 80, (296,414,0): 91, 65, 74, (296,415,0): 86, 61, 67, (296,416,0): 82, 55, 60, (296,417,0): 82, 56, 59, (296,418,0): 81, 55, 58, (296,419,0): 79, 53, 56, (296,420,0): 78, 52, 53, (296,421,0): 77, 51, 52, (296,422,0): 76, 50, 51, (296,423,0): 75, 49, 50, (296,424,0): 77, 51, 50, (296,425,0): 79, 53, 52, (296,426,0): 81, 56, 52, (296,427,0): 81, 56, 52, (296,428,0): 79, 54, 50, (296,429,0): 78, 53, 49, (296,430,0): 80, 55, 50, (296,431,0): 84, 56, 52, (296,432,0): 86, 57, 51, (296,433,0): 92, 59, 54, (296,434,0): 99, 61, 60, (296,435,0): 100, 62, 61, (296,436,0): 101, 61, 61, (296,437,0): 102, 62, 62, (296,438,0): 105, 67, 66, (296,439,0): 106, 71, 67, (296,440,0): 102, 65, 59, (296,441,0): 106, 66, 58, (296,442,0): 126, 73, 65, (296,443,0): 160, 93, 85, (296,444,0): 187, 102, 95, (296,445,0): 195, 93, 88, (296,446,0): 223, 105, 103, (296,447,0): 254, 146, 144, (296,448,0): 255, 208, 208, (296,449,0): 255, 228, 229, (296,450,0): 255, 188, 197, (296,451,0): 235, 133, 144, (296,452,0): 218, 114, 125, (296,453,0): 194, 103, 112, (296,454,0): 157, 93, 94, (296,455,0): 140, 96, 93, (296,456,0): 129, 101, 97, (296,457,0): 123, 99, 97, (296,458,0): 120, 91, 93, (296,459,0): 117, 85, 90, (296,460,0): 116, 81, 88, (296,461,0): 113, 82, 90, (296,462,0): 107, 86, 91, (296,463,0): 107, 88, 92, (296,464,0): 106, 83, 91, (296,465,0): 110, 87, 97, (296,466,0): 112, 90, 102, (296,467,0): 112, 92, 103, (296,468,0): 112, 92, 104, (296,469,0): 114, 92, 104, (296,470,0): 118, 95, 103, (296,471,0): 123, 98, 102, (296,472,0): 129, 103, 104, (296,473,0): 131, 106, 101, (296,474,0): 137, 112, 105, (296,475,0): 145, 125, 114, (296,476,0): 153, 137, 124, (296,477,0): 155, 146, 131, (296,478,0): 155, 147, 134, (296,479,0): 149, 147, 135, (296,480,0): 144, 145, 140, (296,481,0): 139, 143, 142, (296,482,0): 136, 142, 142, (296,483,0): 134, 142, 144, (296,484,0): 134, 143, 148, (296,485,0): 137, 148, 154, (296,486,0): 139, 152, 160, (296,487,0): 141, 155, 164, (296,488,0): 147, 161, 172, (296,489,0): 152, 166, 177, (296,490,0): 158, 172, 183, (296,491,0): 162, 174, 186, (296,492,0): 166, 176, 188, (296,493,0): 168, 178, 188, (296,494,0): 174, 182, 193, (296,495,0): 178, 186, 197, (296,496,0): 178, 187, 204, (296,497,0): 176, 184, 203, (296,498,0): 174, 185, 203, (296,499,0): 176, 187, 205, (296,500,0): 178, 191, 210, (296,501,0): 176, 191, 210, (296,502,0): 170, 188, 208, (296,503,0): 164, 185, 206, (296,504,0): 170, 192, 216, (296,505,0): 169, 193, 221, (296,506,0): 169, 194, 225, (296,507,0): 169, 195, 230, (296,508,0): 169, 195, 232, (296,509,0): 165, 193, 233, (296,510,0): 163, 190, 233, (296,511,0): 162, 189, 232, (296,512,0): 161, 190, 232, (296,513,0): 171, 200, 242, (296,514,0): 180, 209, 253, (296,515,0): 183, 212, 255, (296,516,0): 176, 207, 254, (296,517,0): 172, 203, 250, (296,518,0): 173, 205, 254, (296,519,0): 175, 209, 255, (296,520,0): 169, 205, 253, (296,521,0): 167, 203, 251, (296,522,0): 167, 205, 250, (296,523,0): 169, 211, 253, (296,524,0): 175, 217, 255, (296,525,0): 179, 223, 255, (296,526,0): 180, 224, 255, (296,527,0): 179, 223, 255, (296,528,0): 173, 218, 255, (296,529,0): 172, 217, 255, (296,530,0): 172, 214, 255, (296,531,0): 172, 213, 255, (296,532,0): 173, 209, 255, (296,533,0): 170, 204, 255, (296,534,0): 168, 198, 255, (296,535,0): 167, 192, 249, (296,536,0): 170, 190, 241, (296,537,0): 162, 177, 220, (296,538,0): 149, 157, 193, (296,539,0): 141, 142, 170, (296,540,0): 135, 132, 153, (296,541,0): 128, 121, 137, (296,542,0): 119, 108, 122, (296,543,0): 112, 100, 110, (296,544,0): 113, 102, 110, (296,545,0): 116, 105, 111, (296,546,0): 121, 110, 116, (296,547,0): 126, 114, 118, (296,548,0): 128, 116, 120, (296,549,0): 130, 115, 120, (296,550,0): 129, 112, 118, (296,551,0): 128, 112, 115, (296,552,0): 120, 104, 107, (296,553,0): 114, 100, 100, (296,554,0): 107, 95, 95, (296,555,0): 102, 92, 91, (296,556,0): 102, 94, 92, (296,557,0): 103, 98, 94, (296,558,0): 106, 103, 98, (296,559,0): 109, 106, 101, (296,560,0): 116, 108, 106, (296,561,0): 113, 105, 103, (296,562,0): 109, 100, 101, (296,563,0): 104, 98, 100, (296,564,0): 102, 98, 99, (296,565,0): 105, 100, 104, (296,566,0): 106, 104, 109, (296,567,0): 109, 107, 112, (296,568,0): 105, 102, 109, (296,569,0): 98, 96, 101, (296,570,0): 88, 86, 89, (296,571,0): 84, 80, 81, (296,572,0): 84, 78, 80, (296,573,0): 84, 78, 78, (296,574,0): 85, 77, 75, (296,575,0): 84, 75, 76, (296,576,0): 73, 67, 71, (296,577,0): 68, 61, 68, (296,578,0): 61, 54, 61, (296,579,0): 57, 50, 57, (296,580,0): 58, 49, 54, (296,581,0): 57, 48, 53, (296,582,0): 54, 45, 48, (296,583,0): 51, 42, 45, (296,584,0): 59, 48, 52, (296,585,0): 58, 47, 51, (296,586,0): 59, 47, 49, (296,587,0): 58, 46, 48, (296,588,0): 58, 46, 46, (296,589,0): 59, 47, 47, (296,590,0): 61, 47, 47, (296,591,0): 62, 48, 48, (296,592,0): 57, 41, 42, (296,593,0): 54, 38, 39, (296,594,0): 51, 35, 36, (296,595,0): 51, 35, 36, (296,596,0): 51, 35, 36, (296,597,0): 50, 34, 35, (296,598,0): 47, 31, 32, (296,599,0): 44, 28, 29, (297,0,0): 56, 47, 50, (297,1,0): 56, 47, 50, (297,2,0): 57, 46, 50, (297,3,0): 57, 46, 50, (297,4,0): 57, 46, 50, (297,5,0): 57, 46, 50, (297,6,0): 58, 46, 50, (297,7,0): 58, 46, 50, (297,8,0): 60, 45, 50, (297,9,0): 60, 45, 50, (297,10,0): 61, 46, 51, (297,11,0): 61, 46, 51, (297,12,0): 63, 46, 52, (297,13,0): 63, 46, 52, (297,14,0): 64, 47, 53, (297,15,0): 66, 47, 53, (297,16,0): 68, 47, 52, (297,17,0): 69, 46, 52, (297,18,0): 68, 45, 51, (297,19,0): 68, 45, 51, (297,20,0): 67, 44, 50, (297,21,0): 67, 44, 50, (297,22,0): 69, 44, 50, (297,23,0): 68, 43, 49, (297,24,0): 71, 46, 52, (297,25,0): 71, 46, 52, (297,26,0): 72, 45, 52, (297,27,0): 72, 45, 52, (297,28,0): 73, 46, 53, (297,29,0): 75, 48, 55, (297,30,0): 77, 50, 57, (297,31,0): 80, 51, 56, (297,32,0): 81, 50, 55, (297,33,0): 82, 50, 55, (297,34,0): 85, 50, 54, (297,35,0): 86, 51, 55, (297,36,0): 87, 53, 54, (297,37,0): 88, 54, 55, (297,38,0): 90, 54, 54, (297,39,0): 90, 55, 53, (297,40,0): 94, 56, 53, (297,41,0): 94, 56, 53, (297,42,0): 95, 58, 52, (297,43,0): 95, 58, 50, (297,44,0): 97, 58, 51, (297,45,0): 97, 58, 51, (297,46,0): 97, 59, 50, (297,47,0): 98, 60, 51, (297,48,0): 102, 62, 52, (297,49,0): 103, 63, 53, (297,50,0): 108, 66, 54, (297,51,0): 112, 68, 55, (297,52,0): 118, 72, 59, (297,53,0): 122, 75, 59, (297,54,0): 125, 76, 59, (297,55,0): 127, 79, 57, (297,56,0): 131, 81, 58, (297,57,0): 132, 82, 55, (297,58,0): 133, 84, 54, (297,59,0): 135, 86, 53, (297,60,0): 136, 90, 56, (297,61,0): 137, 93, 56, (297,62,0): 138, 94, 55, (297,63,0): 139, 95, 56, (297,64,0): 142, 94, 56, (297,65,0): 143, 95, 57, (297,66,0): 143, 98, 57, (297,67,0): 145, 100, 59, (297,68,0): 147, 102, 61, (297,69,0): 149, 104, 63, (297,70,0): 150, 105, 63, (297,71,0): 150, 107, 64, (297,72,0): 149, 106, 61, (297,73,0): 148, 107, 61, (297,74,0): 148, 107, 61, (297,75,0): 148, 107, 61, (297,76,0): 146, 108, 59, (297,77,0): 147, 109, 60, (297,78,0): 147, 109, 60, (297,79,0): 149, 108, 62, (297,80,0): 146, 103, 60, (297,81,0): 146, 103, 60, (297,82,0): 145, 104, 60, (297,83,0): 145, 104, 60, (297,84,0): 145, 104, 60, (297,85,0): 145, 104, 60, (297,86,0): 143, 105, 60, (297,87,0): 143, 105, 60, (297,88,0): 139, 102, 57, (297,89,0): 139, 102, 57, (297,90,0): 140, 103, 58, (297,91,0): 141, 104, 59, (297,92,0): 140, 106, 60, (297,93,0): 141, 107, 61, (297,94,0): 141, 107, 61, (297,95,0): 142, 108, 62, (297,96,0): 149, 111, 62, (297,97,0): 150, 113, 61, (297,98,0): 154, 114, 63, (297,99,0): 157, 117, 65, (297,100,0): 161, 121, 69, (297,101,0): 164, 125, 70, (297,102,0): 167, 126, 70, (297,103,0): 168, 128, 69, (297,104,0): 172, 130, 70, (297,105,0): 173, 132, 70, (297,106,0): 176, 135, 71, (297,107,0): 179, 138, 74, (297,108,0): 183, 139, 74, (297,109,0): 184, 140, 75, (297,110,0): 185, 142, 74, (297,111,0): 183, 143, 74, (297,112,0): 178, 141, 73, (297,113,0): 172, 137, 71, (297,114,0): 167, 131, 69, (297,115,0): 161, 125, 67, (297,116,0): 158, 121, 68, (297,117,0): 158, 121, 69, (297,118,0): 160, 123, 70, (297,119,0): 161, 124, 69, (297,120,0): 169, 133, 73, (297,121,0): 171, 136, 72, (297,122,0): 172, 137, 71, (297,123,0): 172, 137, 69, (297,124,0): 170, 135, 67, (297,125,0): 170, 135, 67, (297,126,0): 173, 138, 72, (297,127,0): 176, 141, 75, (297,128,0): 183, 146, 78, (297,129,0): 182, 145, 77, (297,130,0): 183, 146, 78, (297,131,0): 186, 149, 81, (297,132,0): 188, 150, 85, (297,133,0): 185, 147, 82, (297,134,0): 179, 141, 78, (297,135,0): 174, 136, 74, (297,136,0): 173, 135, 73, (297,137,0): 173, 134, 75, (297,138,0): 172, 133, 74, (297,139,0): 171, 132, 75, (297,140,0): 170, 131, 74, (297,141,0): 168, 129, 72, (297,142,0): 167, 128, 73, (297,143,0): 166, 127, 70, (297,144,0): 166, 127, 68, (297,145,0): 166, 127, 68, (297,146,0): 165, 127, 65, (297,147,0): 162, 124, 62, (297,148,0): 160, 122, 60, (297,149,0): 162, 124, 62, (297,150,0): 167, 129, 66, (297,151,0): 172, 134, 71, (297,152,0): 177, 139, 76, (297,153,0): 177, 139, 74, (297,154,0): 177, 139, 74, (297,155,0): 176, 138, 73, (297,156,0): 176, 139, 71, (297,157,0): 177, 140, 72, (297,158,0): 179, 142, 74, (297,159,0): 182, 145, 77, (297,160,0): 189, 150, 81, (297,161,0): 191, 151, 82, (297,162,0): 192, 152, 83, (297,163,0): 193, 153, 84, (297,164,0): 194, 154, 85, (297,165,0): 195, 152, 84, (297,166,0): 194, 151, 83, (297,167,0): 193, 150, 81, (297,168,0): 194, 151, 82, (297,169,0): 198, 156, 84, (297,170,0): 203, 161, 87, (297,171,0): 205, 163, 87, (297,172,0): 205, 163, 87, (297,173,0): 205, 164, 85, (297,174,0): 207, 164, 86, (297,175,0): 208, 168, 83, (297,176,0): 220, 187, 90, (297,177,0): 228, 201, 98, (297,178,0): 243, 215, 115, (297,179,0): 252, 224, 124, (297,180,0): 254, 226, 127, (297,181,0): 253, 225, 126, (297,182,0): 255, 226, 132, (297,183,0): 255, 228, 134, (297,184,0): 255, 226, 136, (297,185,0): 255, 226, 136, (297,186,0): 255, 227, 139, (297,187,0): 255, 227, 141, (297,188,0): 255, 227, 144, (297,189,0): 255, 227, 144, (297,190,0): 255, 228, 145, (297,191,0): 255, 229, 145, (297,192,0): 255, 229, 142, (297,193,0): 255, 231, 141, (297,194,0): 254, 233, 142, (297,195,0): 255, 236, 142, (297,196,0): 255, 238, 144, (297,197,0): 255, 241, 144, (297,198,0): 255, 241, 144, (297,199,0): 252, 242, 144, (297,200,0): 255, 248, 151, (297,201,0): 255, 250, 154, (297,202,0): 255, 251, 157, (297,203,0): 255, 254, 161, (297,204,0): 255, 253, 162, (297,205,0): 255, 254, 164, (297,206,0): 253, 253, 165, (297,207,0): 253, 253, 165, (297,208,0): 254, 255, 164, (297,209,0): 253, 255, 162, (297,210,0): 251, 255, 160, (297,211,0): 250, 254, 159, (297,212,0): 250, 254, 159, (297,213,0): 250, 254, 159, (297,214,0): 251, 255, 160, (297,215,0): 251, 255, 160, (297,216,0): 249, 253, 158, (297,217,0): 249, 253, 158, (297,218,0): 249, 253, 158, (297,219,0): 250, 254, 159, (297,220,0): 250, 254, 159, (297,221,0): 251, 255, 160, (297,222,0): 251, 255, 160, (297,223,0): 251, 255, 161, (297,224,0): 252, 255, 162, (297,225,0): 252, 255, 162, (297,226,0): 252, 255, 164, (297,227,0): 252, 255, 164, (297,228,0): 252, 255, 164, (297,229,0): 252, 255, 164, (297,230,0): 252, 255, 166, (297,231,0): 252, 255, 166, (297,232,0): 254, 255, 168, (297,233,0): 254, 255, 170, (297,234,0): 254, 255, 170, (297,235,0): 254, 255, 170, (297,236,0): 254, 255, 172, (297,237,0): 254, 255, 172, (297,238,0): 254, 255, 172, (297,239,0): 253, 255, 173, (297,240,0): 250, 255, 177, (297,241,0): 248, 255, 178, (297,242,0): 247, 254, 177, (297,243,0): 245, 253, 176, (297,244,0): 246, 252, 178, (297,245,0): 245, 253, 178, (297,246,0): 247, 253, 181, (297,247,0): 246, 253, 183, (297,248,0): 247, 252, 185, (297,249,0): 247, 254, 186, (297,250,0): 249, 254, 188, (297,251,0): 250, 255, 190, (297,252,0): 251, 255, 192, (297,253,0): 250, 255, 192, (297,254,0): 250, 254, 193, (297,255,0): 249, 255, 195, (297,256,0): 250, 255, 197, (297,257,0): 251, 255, 198, (297,258,0): 251, 255, 198, (297,259,0): 249, 255, 198, (297,260,0): 248, 255, 197, (297,261,0): 245, 255, 195, (297,262,0): 243, 253, 193, (297,263,0): 241, 252, 194, (297,264,0): 235, 250, 191, (297,265,0): 228, 246, 188, (297,266,0): 218, 239, 182, (297,267,0): 211, 234, 178, (297,268,0): 207, 232, 177, (297,269,0): 204, 231, 178, (297,270,0): 200, 229, 175, (297,271,0): 197, 227, 175, (297,272,0): 184, 214, 164, (297,273,0): 181, 210, 162, (297,274,0): 176, 204, 156, (297,275,0): 168, 196, 148, (297,276,0): 159, 187, 139, (297,277,0): 150, 178, 130, (297,278,0): 145, 171, 124, (297,279,0): 141, 167, 120, (297,280,0): 139, 162, 118, (297,281,0): 135, 158, 114, (297,282,0): 132, 155, 111, (297,283,0): 133, 156, 112, (297,284,0): 136, 157, 114, (297,285,0): 137, 158, 115, (297,286,0): 134, 155, 112, (297,287,0): 130, 151, 110, (297,288,0): 133, 150, 114, (297,289,0): 134, 151, 117, (297,290,0): 136, 151, 120, (297,291,0): 134, 149, 118, (297,292,0): 132, 147, 118, (297,293,0): 130, 145, 116, (297,294,0): 132, 146, 120, (297,295,0): 134, 148, 122, (297,296,0): 134, 148, 123, (297,297,0): 132, 150, 126, (297,298,0): 132, 151, 129, (297,299,0): 130, 154, 130, (297,300,0): 131, 156, 134, (297,301,0): 134, 162, 139, (297,302,0): 139, 168, 146, (297,303,0): 141, 173, 150, (297,304,0): 144, 176, 153, (297,305,0): 144, 177, 156, (297,306,0): 143, 178, 158, (297,307,0): 142, 179, 161, (297,308,0): 144, 182, 167, (297,309,0): 150, 191, 177, (297,310,0): 159, 200, 192, (297,311,0): 164, 209, 204, (297,312,0): 169, 215, 213, (297,313,0): 168, 216, 218, (297,314,0): 169, 218, 223, (297,315,0): 169, 217, 227, (297,316,0): 169, 217, 231, (297,317,0): 168, 215, 231, (297,318,0): 166, 213, 231, (297,319,0): 166, 212, 228, (297,320,0): 161, 203, 215, (297,321,0): 159, 197, 206, (297,322,0): 155, 189, 199, (297,323,0): 152, 182, 192, (297,324,0): 150, 177, 186, (297,325,0): 146, 171, 178, (297,326,0): 141, 164, 170, (297,327,0): 137, 161, 165, (297,328,0): 139, 163, 163, (297,329,0): 136, 161, 158, (297,330,0): 131, 153, 150, (297,331,0): 124, 145, 140, (297,332,0): 119, 134, 129, (297,333,0): 112, 125, 118, (297,334,0): 107, 116, 111, (297,335,0): 103, 112, 109, (297,336,0): 97, 105, 108, (297,337,0): 98, 107, 114, (297,338,0): 103, 110, 118, (297,339,0): 105, 112, 120, (297,340,0): 104, 111, 119, (297,341,0): 99, 106, 114, (297,342,0): 95, 99, 108, (297,343,0): 91, 95, 104, (297,344,0): 90, 93, 102, (297,345,0): 88, 91, 100, (297,346,0): 86, 89, 98, (297,347,0): 83, 86, 95, (297,348,0): 83, 83, 93, (297,349,0): 81, 81, 91, (297,350,0): 81, 81, 91, (297,351,0): 81, 81, 91, (297,352,0): 80, 83, 92, (297,353,0): 78, 82, 91, (297,354,0): 77, 81, 90, (297,355,0): 78, 82, 91, (297,356,0): 78, 85, 95, (297,357,0): 81, 88, 98, (297,358,0): 85, 91, 103, (297,359,0): 87, 93, 105, (297,360,0): 92, 100, 113, (297,361,0): 95, 102, 118, (297,362,0): 98, 107, 122, (297,363,0): 103, 112, 129, (297,364,0): 109, 118, 135, (297,365,0): 115, 124, 141, (297,366,0): 117, 129, 145, (297,367,0): 121, 130, 145, (297,368,0): 123, 129, 143, (297,369,0): 124, 128, 139, (297,370,0): 124, 128, 140, (297,371,0): 123, 127, 138, (297,372,0): 123, 125, 137, (297,373,0): 125, 125, 137, (297,374,0): 126, 124, 137, (297,375,0): 126, 124, 137, (297,376,0): 132, 128, 142, (297,377,0): 133, 127, 141, (297,378,0): 132, 124, 139, (297,379,0): 129, 121, 136, (297,380,0): 128, 117, 133, (297,381,0): 126, 115, 131, (297,382,0): 125, 114, 130, (297,383,0): 125, 113, 127, (297,384,0): 125, 109, 122, (297,385,0): 125, 109, 122, (297,386,0): 123, 107, 120, (297,387,0): 116, 102, 117, (297,388,0): 109, 97, 111, (297,389,0): 105, 94, 110, (297,390,0): 105, 94, 110, (297,391,0): 105, 97, 112, (297,392,0): 107, 99, 114, (297,393,0): 106, 98, 111, (297,394,0): 106, 96, 107, (297,395,0): 105, 93, 103, (297,396,0): 102, 89, 98, (297,397,0): 99, 86, 93, (297,398,0): 98, 83, 88, (297,399,0): 96, 81, 84, (297,400,0): 102, 86, 89, (297,401,0): 98, 82, 85, (297,402,0): 95, 79, 82, (297,403,0): 96, 80, 83, (297,404,0): 101, 85, 88, (297,405,0): 108, 92, 95, (297,406,0): 112, 96, 99, (297,407,0): 113, 97, 100, (297,408,0): 116, 100, 103, (297,409,0): 116, 97, 101, (297,410,0): 112, 93, 97, (297,411,0): 107, 86, 91, (297,412,0): 101, 78, 84, (297,413,0): 93, 70, 76, (297,414,0): 88, 63, 69, (297,415,0): 84, 59, 63, (297,416,0): 83, 57, 60, (297,417,0): 82, 56, 59, (297,418,0): 81, 55, 58, (297,419,0): 80, 54, 57, (297,420,0): 79, 53, 54, (297,421,0): 78, 52, 53, (297,422,0): 77, 51, 52, (297,423,0): 76, 50, 51, (297,424,0): 78, 52, 51, (297,425,0): 80, 54, 53, (297,426,0): 82, 57, 53, (297,427,0): 82, 57, 53, (297,428,0): 80, 55, 51, (297,429,0): 79, 54, 50, (297,430,0): 81, 56, 51, (297,431,0): 83, 58, 53, (297,432,0): 88, 59, 53, (297,433,0): 93, 62, 57, (297,434,0): 99, 64, 60, (297,435,0): 103, 65, 62, (297,436,0): 103, 65, 64, (297,437,0): 105, 67, 64, (297,438,0): 107, 72, 68, (297,439,0): 110, 75, 71, (297,440,0): 113, 76, 68, (297,441,0): 115, 75, 67, (297,442,0): 125, 75, 66, (297,443,0): 150, 87, 78, (297,444,0): 180, 100, 93, (297,445,0): 198, 103, 97, (297,446,0): 231, 122, 117, (297,447,0): 255, 160, 160, (297,448,0): 255, 212, 213, (297,449,0): 255, 227, 233, (297,450,0): 255, 188, 199, (297,451,0): 238, 137, 151, (297,452,0): 226, 120, 132, (297,453,0): 206, 111, 119, (297,454,0): 167, 102, 100, (297,455,0): 149, 106, 100, (297,456,0): 128, 105, 99, (297,457,0): 122, 104, 100, (297,458,0): 121, 96, 99, (297,459,0): 117, 90, 95, (297,460,0): 116, 86, 94, (297,461,0): 113, 88, 94, (297,462,0): 106, 92, 92, (297,463,0): 105, 93, 95, (297,464,0): 109, 89, 98, (297,465,0): 112, 90, 103, (297,466,0): 114, 93, 108, (297,467,0): 113, 95, 109, (297,468,0): 113, 95, 111, (297,469,0): 117, 96, 111, (297,470,0): 122, 100, 112, (297,471,0): 126, 103, 111, (297,472,0): 135, 110, 113, (297,473,0): 137, 113, 111, (297,474,0): 144, 121, 115, (297,475,0): 151, 133, 123, (297,476,0): 158, 144, 133, (297,477,0): 160, 152, 139, (297,478,0): 157, 153, 141, (297,479,0): 153, 153, 143, (297,480,0): 147, 149, 146, (297,481,0): 143, 149, 149, (297,482,0): 139, 147, 149, (297,483,0): 137, 146, 151, (297,484,0): 138, 149, 155, (297,485,0): 139, 153, 162, (297,486,0): 143, 157, 168, (297,487,0): 144, 160, 173, (297,488,0): 148, 166, 180, (297,489,0): 153, 169, 184, (297,490,0): 159, 175, 190, (297,491,0): 164, 178, 191, (297,492,0): 167, 179, 191, (297,493,0): 173, 183, 193, (297,494,0): 178, 186, 197, (297,495,0): 182, 190, 201, (297,496,0): 183, 192, 207, (297,497,0): 181, 189, 208, (297,498,0): 178, 189, 207, (297,499,0): 178, 191, 208, (297,500,0): 179, 194, 213, (297,501,0): 178, 195, 215, (297,502,0): 173, 194, 215, (297,503,0): 169, 191, 214, (297,504,0): 170, 194, 220, (297,505,0): 170, 196, 223, (297,506,0): 170, 197, 227, (297,507,0): 168, 197, 231, (297,508,0): 168, 196, 233, (297,509,0): 167, 195, 234, (297,510,0): 166, 194, 234, (297,511,0): 166, 193, 236, (297,512,0): 165, 194, 236, (297,513,0): 172, 201, 243, (297,514,0): 180, 209, 253, (297,515,0): 181, 212, 255, (297,516,0): 178, 209, 255, (297,517,0): 173, 205, 252, (297,518,0): 171, 205, 253, (297,519,0): 172, 206, 254, (297,520,0): 168, 204, 252, (297,521,0): 166, 204, 251, (297,522,0): 164, 205, 249, (297,523,0): 168, 210, 252, (297,524,0): 173, 216, 255, (297,525,0): 178, 222, 255, (297,526,0): 180, 224, 255, (297,527,0): 179, 225, 255, (297,528,0): 180, 226, 255, (297,529,0): 175, 220, 255, (297,530,0): 172, 215, 255, (297,531,0): 171, 211, 255, (297,532,0): 175, 209, 255, (297,533,0): 176, 206, 255, (297,534,0): 174, 199, 255, (297,535,0): 173, 193, 252, (297,536,0): 164, 180, 232, (297,537,0): 157, 165, 211, (297,538,0): 144, 148, 183, (297,539,0): 135, 132, 159, (297,540,0): 126, 121, 141, (297,541,0): 121, 110, 124, (297,542,0): 112, 99, 109, (297,543,0): 106, 91, 98, (297,544,0): 102, 87, 94, (297,545,0): 103, 88, 95, (297,546,0): 106, 89, 95, (297,547,0): 109, 92, 98, (297,548,0): 113, 94, 100, (297,549,0): 115, 96, 102, (297,550,0): 116, 97, 101, (297,551,0): 116, 97, 101, (297,552,0): 118, 99, 101, (297,553,0): 112, 98, 98, (297,554,0): 104, 92, 92, (297,555,0): 98, 88, 87, (297,556,0): 96, 88, 85, (297,557,0): 95, 92, 87, (297,558,0): 101, 98, 93, (297,559,0): 105, 102, 97, (297,560,0): 115, 107, 104, (297,561,0): 113, 103, 102, (297,562,0): 110, 100, 101, (297,563,0): 107, 98, 99, (297,564,0): 107, 98, 101, (297,565,0): 108, 102, 106, (297,566,0): 112, 105, 112, (297,567,0): 113, 108, 114, (297,568,0): 107, 102, 108, (297,569,0): 99, 94, 100, (297,570,0): 88, 83, 87, (297,571,0): 81, 77, 78, (297,572,0): 79, 73, 73, (297,573,0): 79, 73, 73, (297,574,0): 80, 72, 70, (297,575,0): 79, 71, 69, (297,576,0): 70, 64, 68, (297,577,0): 65, 58, 65, (297,578,0): 58, 51, 58, (297,579,0): 55, 48, 55, (297,580,0): 56, 47, 52, (297,581,0): 55, 46, 51, (297,582,0): 53, 44, 47, (297,583,0): 51, 42, 45, (297,584,0): 56, 45, 49, (297,585,0): 56, 45, 49, (297,586,0): 57, 45, 47, (297,587,0): 57, 45, 47, (297,588,0): 57, 45, 45, (297,589,0): 57, 45, 45, (297,590,0): 59, 45, 45, (297,591,0): 59, 45, 45, (297,592,0): 58, 42, 43, (297,593,0): 55, 39, 40, (297,594,0): 52, 36, 37, (297,595,0): 51, 35, 36, (297,596,0): 51, 35, 36, (297,597,0): 51, 35, 36, (297,598,0): 48, 32, 33, (297,599,0): 45, 29, 30, (298,0,0): 54, 48, 50, (298,1,0): 54, 48, 50, (298,2,0): 56, 47, 50, (298,3,0): 56, 47, 50, (298,4,0): 56, 47, 50, (298,5,0): 56, 47, 50, (298,6,0): 57, 46, 50, (298,7,0): 57, 46, 50, (298,8,0): 58, 46, 50, (298,9,0): 58, 46, 50, (298,10,0): 59, 47, 51, (298,11,0): 59, 47, 51, (298,12,0): 62, 47, 52, (298,13,0): 62, 47, 52, (298,14,0): 63, 48, 53, (298,15,0): 64, 47, 53, (298,16,0): 67, 48, 52, (298,17,0): 67, 46, 51, (298,18,0): 67, 46, 51, (298,19,0): 67, 46, 51, (298,20,0): 66, 45, 50, (298,21,0): 65, 44, 49, (298,22,0): 66, 43, 49, (298,23,0): 66, 43, 49, (298,24,0): 69, 46, 52, (298,25,0): 68, 45, 51, (298,26,0): 70, 45, 51, (298,27,0): 70, 45, 51, (298,28,0): 72, 47, 53, (298,29,0): 73, 48, 54, (298,30,0): 76, 49, 56, (298,31,0): 79, 50, 55, (298,32,0): 82, 50, 55, (298,33,0): 84, 49, 53, (298,34,0): 85, 50, 54, (298,35,0): 86, 51, 55, (298,36,0): 88, 52, 54, (298,37,0): 89, 53, 55, (298,38,0): 92, 53, 54, (298,39,0): 92, 54, 53, (298,40,0): 94, 56, 53, (298,41,0): 95, 57, 54, (298,42,0): 96, 57, 52, (298,43,0): 96, 57, 50, (298,44,0): 98, 57, 51, (298,45,0): 99, 59, 51, (298,46,0): 99, 59, 51, (298,47,0): 99, 59, 51, (298,48,0): 103, 63, 53, (298,49,0): 104, 64, 54, (298,50,0): 109, 67, 55, (298,51,0): 113, 69, 56, (298,52,0): 118, 72, 59, (298,53,0): 122, 75, 59, (298,54,0): 125, 76, 59, (298,55,0): 128, 77, 56, (298,56,0): 131, 79, 57, (298,57,0): 132, 81, 54, (298,58,0): 132, 83, 53, (298,59,0): 134, 85, 52, (298,60,0): 135, 89, 55, (298,61,0): 137, 91, 55, (298,62,0): 137, 93, 54, (298,63,0): 138, 94, 55, (298,64,0): 144, 96, 58, (298,65,0): 145, 97, 59, (298,66,0): 145, 97, 57, (298,67,0): 147, 99, 59, (298,68,0): 148, 100, 60, (298,69,0): 147, 102, 61, (298,70,0): 148, 103, 61, (298,71,0): 147, 104, 61, (298,72,0): 148, 105, 60, (298,73,0): 148, 105, 60, (298,74,0): 147, 106, 60, (298,75,0): 147, 106, 60, (298,76,0): 146, 106, 57, (298,77,0): 146, 106, 57, (298,78,0): 146, 106, 57, (298,79,0): 146, 105, 59, (298,80,0): 144, 101, 58, (298,81,0): 144, 101, 59, (298,82,0): 143, 101, 59, (298,83,0): 143, 101, 59, (298,84,0): 143, 101, 59, (298,85,0): 143, 101, 59, (298,86,0): 141, 102, 59, (298,87,0): 141, 102, 59, (298,88,0): 139, 102, 58, (298,89,0): 139, 102, 58, (298,90,0): 140, 103, 59, (298,91,0): 141, 104, 60, (298,92,0): 140, 106, 61, (298,93,0): 141, 107, 62, (298,94,0): 142, 108, 63, (298,95,0): 143, 109, 63, (298,96,0): 151, 113, 64, (298,97,0): 153, 116, 63, (298,98,0): 155, 118, 65, (298,99,0): 158, 121, 66, (298,100,0): 163, 124, 69, (298,101,0): 167, 128, 71, (298,102,0): 169, 130, 71, (298,103,0): 170, 132, 70, (298,104,0): 175, 136, 71, (298,105,0): 177, 138, 71, (298,106,0): 180, 140, 71, (298,107,0): 183, 143, 74, (298,108,0): 186, 146, 76, (298,109,0): 187, 147, 77, (298,110,0): 189, 147, 75, (298,111,0): 187, 147, 75, (298,112,0): 185, 147, 76, (298,113,0): 179, 142, 74, (298,114,0): 172, 134, 71, (298,115,0): 164, 125, 66, (298,116,0): 161, 122, 65, (298,117,0): 161, 122, 67, (298,118,0): 163, 124, 69, (298,119,0): 165, 126, 69, (298,120,0): 172, 134, 72, (298,121,0): 176, 138, 73, (298,122,0): 179, 142, 72, (298,123,0): 180, 143, 72, (298,124,0): 179, 142, 71, (298,125,0): 179, 142, 71, (298,126,0): 181, 144, 74, (298,127,0): 183, 146, 76, (298,128,0): 188, 151, 80, (298,129,0): 188, 151, 80, (298,130,0): 188, 151, 81, (298,131,0): 189, 152, 82, (298,132,0): 189, 152, 84, (298,133,0): 185, 148, 80, (298,134,0): 179, 141, 76, (298,135,0): 175, 137, 72, (298,136,0): 171, 133, 70, (298,137,0): 171, 133, 71, (298,138,0): 170, 132, 70, (298,139,0): 169, 130, 71, (298,140,0): 168, 129, 70, (298,141,0): 168, 129, 70, (298,142,0): 167, 128, 71, (298,143,0): 167, 128, 71, (298,144,0): 168, 129, 70, (298,145,0): 168, 129, 70, (298,146,0): 167, 128, 69, (298,147,0): 164, 125, 66, (298,148,0): 162, 124, 62, (298,149,0): 164, 126, 64, (298,150,0): 169, 131, 69, (298,151,0): 174, 136, 73, (298,152,0): 175, 137, 74, (298,153,0): 179, 141, 78, (298,154,0): 181, 143, 78, (298,155,0): 180, 142, 77, (298,156,0): 176, 138, 73, (298,157,0): 175, 137, 72, (298,158,0): 179, 142, 74, (298,159,0): 183, 146, 78, (298,160,0): 186, 149, 79, (298,161,0): 189, 150, 81, (298,162,0): 190, 151, 82, (298,163,0): 192, 153, 84, (298,164,0): 193, 154, 87, (298,165,0): 194, 154, 85, (298,166,0): 193, 153, 84, (298,167,0): 193, 153, 83, (298,168,0): 197, 154, 85, (298,169,0): 201, 159, 87, (298,170,0): 206, 164, 90, (298,171,0): 209, 167, 91, (298,172,0): 210, 167, 89, (298,173,0): 211, 168, 89, (298,174,0): 213, 171, 89, (298,175,0): 214, 174, 87, (298,176,0): 232, 199, 102, (298,177,0): 239, 210, 108, (298,178,0): 249, 220, 120, (298,179,0): 254, 225, 125, (298,180,0): 253, 223, 125, (298,181,0): 252, 222, 124, (298,182,0): 253, 222, 129, (298,183,0): 255, 224, 131, (298,184,0): 255, 226, 136, (298,185,0): 255, 226, 136, (298,186,0): 255, 225, 138, (298,187,0): 255, 226, 141, (298,188,0): 255, 226, 143, (298,189,0): 255, 226, 145, (298,190,0): 255, 226, 145, (298,191,0): 255, 228, 145, (298,192,0): 255, 229, 144, (298,193,0): 254, 230, 142, (298,194,0): 253, 232, 143, (298,195,0): 253, 234, 142, (298,196,0): 255, 236, 144, (298,197,0): 254, 239, 144, (298,198,0): 255, 241, 146, (298,199,0): 254, 244, 147, (298,200,0): 255, 249, 152, (298,201,0): 255, 251, 155, (298,202,0): 255, 252, 158, (298,203,0): 255, 254, 161, (298,204,0): 255, 254, 163, (298,205,0): 255, 255, 165, (298,206,0): 254, 254, 166, (298,207,0): 253, 253, 165, (298,208,0): 253, 255, 163, (298,209,0): 251, 255, 162, (298,210,0): 250, 255, 161, (298,211,0): 249, 254, 160, (298,212,0): 248, 253, 159, (298,213,0): 248, 253, 159, (298,214,0): 249, 254, 160, (298,215,0): 250, 255, 161, (298,216,0): 248, 253, 159, (298,217,0): 248, 253, 159, (298,218,0): 248, 253, 159, (298,219,0): 249, 254, 160, (298,220,0): 249, 254, 160, (298,221,0): 250, 255, 161, (298,222,0): 250, 255, 161, (298,223,0): 250, 255, 161, (298,224,0): 251, 255, 164, (298,225,0): 251, 255, 164, (298,226,0): 251, 255, 166, (298,227,0): 251, 255, 166, (298,228,0): 251, 255, 166, (298,229,0): 251, 255, 166, (298,230,0): 251, 255, 168, (298,231,0): 251, 255, 168, (298,232,0): 253, 255, 170, (298,233,0): 253, 255, 172, (298,234,0): 253, 255, 172, (298,235,0): 253, 255, 172, (298,236,0): 253, 255, 173, (298,237,0): 253, 255, 173, (298,238,0): 253, 255, 173, (298,239,0): 252, 255, 175, (298,240,0): 248, 255, 178, (298,241,0): 245, 255, 178, (298,242,0): 246, 254, 179, (298,243,0): 243, 254, 178, (298,244,0): 244, 252, 179, (298,245,0): 242, 252, 179, (298,246,0): 245, 252, 182, (298,247,0): 244, 254, 183, (298,248,0): 247, 254, 186, (298,249,0): 246, 255, 188, (298,250,0): 249, 255, 191, (298,251,0): 248, 255, 192, (298,252,0): 251, 255, 195, (298,253,0): 249, 255, 195, (298,254,0): 250, 255, 196, (298,255,0): 247, 255, 195, (298,256,0): 247, 255, 198, (298,257,0): 248, 255, 199, (298,258,0): 249, 255, 200, (298,259,0): 248, 255, 200, (298,260,0): 248, 255, 202, (298,261,0): 247, 255, 201, (298,262,0): 246, 255, 202, (298,263,0): 244, 254, 202, (298,264,0): 244, 255, 204, (298,265,0): 238, 252, 201, (298,266,0): 229, 247, 197, (298,267,0): 224, 244, 195, (298,268,0): 220, 244, 196, (298,269,0): 218, 244, 197, (298,270,0): 215, 243, 195, (298,271,0): 212, 241, 195, (298,272,0): 198, 230, 183, (298,273,0): 195, 227, 180, (298,274,0): 191, 220, 174, (298,275,0): 183, 212, 166, (298,276,0): 174, 203, 157, (298,277,0): 164, 193, 147, (298,278,0): 156, 183, 138, (298,279,0): 151, 178, 133, (298,280,0): 141, 166, 124, (298,281,0): 140, 165, 123, (298,282,0): 140, 165, 123, (298,283,0): 141, 166, 124, (298,284,0): 145, 168, 126, (298,285,0): 145, 168, 126, (298,286,0): 144, 167, 125, (298,287,0): 143, 165, 126, (298,288,0): 142, 161, 129, (298,289,0): 142, 161, 131, (298,290,0): 143, 159, 130, (298,291,0): 139, 155, 126, (298,292,0): 136, 152, 125, (298,293,0): 135, 151, 125, (298,294,0): 137, 152, 129, (298,295,0): 138, 156, 132, (298,296,0): 138, 156, 134, (298,297,0): 136, 155, 135, (298,298,0): 134, 155, 136, (298,299,0): 134, 159, 138, (298,300,0): 137, 164, 145, (298,301,0): 140, 172, 151, (298,302,0): 143, 175, 154, (298,303,0): 144, 177, 156, (298,304,0): 145, 178, 157, (298,305,0): 146, 179, 160, (298,306,0): 146, 180, 163, (298,307,0): 144, 181, 164, (298,308,0): 144, 182, 169, (298,309,0): 148, 188, 177, (298,310,0): 155, 196, 190, (298,311,0): 160, 202, 200, (298,312,0): 161, 205, 206, (298,313,0): 159, 207, 211, (298,314,0): 161, 210, 217, (298,315,0): 164, 212, 222, (298,316,0): 165, 214, 228, (298,317,0): 167, 216, 231, (298,318,0): 167, 216, 233, (298,319,0): 169, 216, 234, (298,320,0): 163, 205, 219, (298,321,0): 159, 197, 210, (298,322,0): 151, 185, 197, (298,323,0): 146, 176, 187, (298,324,0): 145, 169, 181, (298,325,0): 142, 164, 175, (298,326,0): 141, 161, 170, (298,327,0): 138, 158, 165, (298,328,0): 140, 161, 164, (298,329,0): 136, 157, 158, (298,330,0): 130, 150, 149, (298,331,0): 121, 140, 138, (298,332,0): 115, 127, 125, (298,333,0): 106, 117, 113, (298,334,0): 102, 108, 104, (298,335,0): 99, 103, 102, (298,336,0): 95, 103, 106, (298,337,0): 97, 104, 112, (298,338,0): 100, 107, 115, (298,339,0): 102, 109, 117, (298,340,0): 102, 106, 115, (298,341,0): 98, 102, 111, (298,342,0): 93, 97, 106, (298,343,0): 89, 93, 102, (298,344,0): 89, 92, 101, (298,345,0): 87, 90, 99, (298,346,0): 86, 86, 96, (298,347,0): 83, 83, 93, (298,348,0): 81, 81, 91, (298,349,0): 80, 80, 90, (298,350,0): 80, 78, 89, (298,351,0): 79, 79, 89, (298,352,0): 76, 79, 88, (298,353,0): 75, 79, 88, (298,354,0): 75, 79, 88, (298,355,0): 76, 80, 89, (298,356,0): 78, 85, 95, (298,357,0): 82, 89, 99, (298,358,0): 87, 93, 105, (298,359,0): 89, 95, 109, (298,360,0): 93, 100, 116, (298,361,0): 95, 102, 118, (298,362,0): 98, 107, 124, (298,363,0): 103, 111, 130, (298,364,0): 108, 116, 135, (298,365,0): 113, 121, 140, (298,366,0): 115, 126, 144, (298,367,0): 119, 128, 145, (298,368,0): 122, 128, 144, (298,369,0): 123, 127, 139, (298,370,0): 121, 123, 138, (298,371,0): 120, 122, 135, (298,372,0): 121, 120, 134, (298,373,0): 122, 121, 135, (298,374,0): 124, 122, 135, (298,375,0): 125, 123, 136, (298,376,0): 135, 132, 143, (298,377,0): 136, 130, 142, (298,378,0): 135, 127, 140, (298,379,0): 132, 124, 135, (298,380,0): 131, 121, 132, (298,381,0): 128, 118, 129, (298,382,0): 126, 114, 126, (298,383,0): 125, 113, 125, (298,384,0): 127, 111, 122, (298,385,0): 126, 110, 121, (298,386,0): 124, 108, 119, (298,387,0): 118, 104, 117, (298,388,0): 112, 100, 114, (298,389,0): 108, 97, 111, (298,390,0): 108, 97, 111, (298,391,0): 109, 98, 112, (298,392,0): 109, 98, 112, (298,393,0): 107, 97, 108, (298,394,0): 105, 93, 105, (298,395,0): 102, 90, 100, (298,396,0): 99, 86, 93, (298,397,0): 99, 84, 89, (298,398,0): 98, 81, 87, (298,399,0): 97, 81, 84, (298,400,0): 102, 83, 87, (298,401,0): 98, 79, 81, (298,402,0): 95, 76, 78, (298,403,0): 95, 76, 78, (298,404,0): 100, 81, 83, (298,405,0): 104, 85, 87, (298,406,0): 107, 88, 90, (298,407,0): 108, 89, 91, (298,408,0): 104, 85, 87, (298,409,0): 104, 84, 86, (298,410,0): 101, 81, 83, (298,411,0): 98, 76, 79, (298,412,0): 93, 71, 74, (298,413,0): 90, 65, 69, (298,414,0): 86, 59, 64, (298,415,0): 83, 56, 61, (298,416,0): 82, 57, 60, (298,417,0): 82, 57, 60, (298,418,0): 81, 56, 59, (298,419,0): 80, 55, 58, (298,420,0): 79, 55, 55, (298,421,0): 78, 54, 54, (298,422,0): 77, 53, 53, (298,423,0): 77, 53, 53, (298,424,0): 77, 53, 51, (298,425,0): 79, 55, 53, (298,426,0): 81, 57, 53, (298,427,0): 81, 57, 53, (298,428,0): 79, 55, 51, (298,429,0): 79, 55, 51, (298,430,0): 81, 58, 52, (298,431,0): 84, 59, 54, (298,432,0): 89, 62, 55, (298,433,0): 94, 65, 57, (298,434,0): 99, 69, 61, (298,435,0): 103, 70, 63, (298,436,0): 105, 70, 66, (298,437,0): 108, 73, 67, (298,438,0): 112, 77, 71, (298,439,0): 114, 81, 72, (298,440,0): 117, 83, 73, (298,441,0): 122, 84, 73, (298,442,0): 126, 80, 67, (298,443,0): 142, 84, 73, (298,444,0): 171, 98, 89, (298,445,0): 194, 109, 102, (298,446,0): 223, 126, 120, (298,447,0): 243, 153, 152, (298,448,0): 254, 192, 197, (298,449,0): 255, 204, 215, (298,450,0): 255, 173, 188, (298,451,0): 240, 135, 150, (298,452,0): 235, 125, 138, (298,453,0): 218, 121, 128, (298,454,0): 182, 114, 113, (298,455,0): 158, 117, 111, (298,456,0): 130, 109, 104, (298,457,0): 121, 110, 108, (298,458,0): 120, 104, 107, (298,459,0): 119, 99, 108, (298,460,0): 117, 96, 105, (298,461,0): 113, 96, 104, (298,462,0): 105, 99, 101, (298,463,0): 105, 99, 103, (298,464,0): 109, 96, 106, (298,465,0): 114, 96, 112, (298,466,0): 115, 98, 116, (298,467,0): 116, 99, 118, (298,468,0): 117, 100, 119, (298,469,0): 120, 101, 120, (298,470,0): 128, 105, 121, (298,471,0): 134, 110, 123, (298,472,0): 142, 117, 123, (298,473,0): 145, 121, 121, (298,474,0): 151, 130, 125, (298,475,0): 158, 141, 133, (298,476,0): 162, 152, 142, (298,477,0): 165, 158, 148, (298,478,0): 160, 160, 148, (298,479,0): 157, 160, 151, (298,480,0): 149, 155, 153, (298,481,0): 146, 154, 156, (298,482,0): 142, 153, 157, (298,483,0): 140, 153, 159, (298,484,0): 141, 155, 164, (298,485,0): 143, 161, 173, (298,486,0): 148, 166, 180, (298,487,0): 150, 169, 184, (298,488,0): 153, 172, 187, (298,489,0): 157, 176, 191, (298,490,0): 162, 179, 195, (298,491,0): 166, 182, 197, (298,492,0): 172, 184, 198, (298,493,0): 178, 188, 198, (298,494,0): 183, 191, 202, (298,495,0): 187, 195, 206, (298,496,0): 188, 197, 212, (298,497,0): 186, 195, 212, (298,498,0): 182, 194, 210, (298,499,0): 182, 195, 212, (298,500,0): 180, 197, 215, (298,501,0): 180, 198, 218, (298,502,0): 177, 199, 220, (298,503,0): 174, 199, 221, (298,504,0): 174, 200, 225, (298,505,0): 173, 200, 229, (298,506,0): 170, 199, 229, (298,507,0): 169, 199, 233, (298,508,0): 169, 199, 235, (298,509,0): 169, 199, 237, (298,510,0): 171, 199, 239, (298,511,0): 172, 200, 240, (298,512,0): 170, 199, 241, (298,513,0): 174, 203, 245, (298,514,0): 177, 208, 252, (298,515,0): 180, 211, 255, (298,516,0): 180, 211, 255, (298,517,0): 176, 208, 255, (298,518,0): 170, 204, 252, (298,519,0): 167, 201, 249, (298,520,0): 166, 202, 250, (298,521,0): 163, 201, 248, (298,522,0): 161, 202, 246, (298,523,0): 165, 207, 249, (298,524,0): 170, 213, 255, (298,525,0): 176, 220, 255, (298,526,0): 177, 223, 255, (298,527,0): 177, 223, 255, (298,528,0): 180, 226, 255, (298,529,0): 174, 219, 255, (298,530,0): 168, 211, 255, (298,531,0): 170, 207, 255, (298,532,0): 175, 205, 255, (298,533,0): 176, 201, 255, (298,534,0): 173, 193, 255, (298,535,0): 169, 184, 243, (298,536,0): 153, 160, 214, (298,537,0): 145, 148, 193, (298,538,0): 133, 132, 166, (298,539,0): 122, 117, 140, (298,540,0): 114, 105, 122, (298,541,0): 107, 95, 105, (298,542,0): 99, 84, 91, (298,543,0): 93, 76, 82, (298,544,0): 89, 69, 78, (298,545,0): 89, 68, 77, (298,546,0): 90, 67, 75, (298,547,0): 91, 68, 76, (298,548,0): 94, 71, 79, (298,549,0): 99, 76, 84, (298,550,0): 104, 81, 87, (298,551,0): 106, 85, 90, (298,552,0): 112, 93, 95, (298,553,0): 109, 93, 94, (298,554,0): 103, 89, 89, (298,555,0): 93, 83, 82, (298,556,0): 87, 79, 76, (298,557,0): 86, 83, 78, (298,558,0): 93, 90, 85, (298,559,0): 100, 97, 92, (298,560,0): 110, 100, 99, (298,561,0): 109, 97, 97, (298,562,0): 106, 94, 96, (298,563,0): 104, 94, 95, (298,564,0): 105, 94, 98, (298,565,0): 107, 98, 103, (298,566,0): 110, 100, 108, (298,567,0): 111, 104, 111, (298,568,0): 106, 99, 106, (298,569,0): 98, 91, 98, (298,570,0): 87, 81, 85, (298,571,0): 78, 72, 74, (298,572,0): 73, 67, 67, (298,573,0): 73, 67, 67, (298,574,0): 73, 68, 65, (298,575,0): 74, 68, 68, (298,576,0): 67, 61, 65, (298,577,0): 63, 56, 63, (298,578,0): 57, 50, 57, (298,579,0): 54, 47, 54, (298,580,0): 54, 45, 50, (298,581,0): 53, 44, 49, (298,582,0): 52, 43, 46, (298,583,0): 51, 42, 45, (298,584,0): 53, 42, 46, (298,585,0): 53, 42, 46, (298,586,0): 54, 42, 44, (298,587,0): 54, 42, 44, (298,588,0): 54, 42, 42, (298,589,0): 54, 42, 42, (298,590,0): 56, 42, 42, (298,591,0): 56, 42, 42, (298,592,0): 58, 42, 43, (298,593,0): 55, 39, 40, (298,594,0): 52, 36, 37, (298,595,0): 52, 36, 37, (298,596,0): 52, 36, 37, (298,597,0): 52, 36, 37, (298,598,0): 49, 33, 34, (298,599,0): 46, 30, 31, (299,0,0): 54, 48, 50, (299,1,0): 54, 48, 50, (299,2,0): 56, 47, 50, (299,3,0): 56, 47, 50, (299,4,0): 56, 47, 50, (299,5,0): 56, 47, 50, (299,6,0): 57, 46, 50, (299,7,0): 57, 46, 50, (299,8,0): 58, 46, 50, (299,9,0): 58, 46, 50, (299,10,0): 59, 47, 51, (299,11,0): 59, 47, 51, (299,12,0): 62, 47, 52, (299,13,0): 62, 47, 52, (299,14,0): 63, 48, 53, (299,15,0): 63, 48, 53, (299,16,0): 64, 48, 51, (299,17,0): 64, 48, 51, (299,18,0): 66, 47, 51, (299,19,0): 65, 46, 50, (299,20,0): 65, 46, 50, (299,21,0): 65, 44, 49, (299,22,0): 65, 44, 49, (299,23,0): 64, 43, 48, (299,24,0): 68, 45, 51, (299,25,0): 68, 45, 51, (299,26,0): 70, 45, 51, (299,27,0): 70, 45, 51, (299,28,0): 71, 46, 52, (299,29,0): 73, 48, 54, (299,30,0): 76, 49, 56, (299,31,0): 79, 50, 55, (299,32,0): 82, 50, 55, (299,33,0): 85, 50, 54, (299,34,0): 86, 51, 55, (299,35,0): 87, 53, 54, (299,36,0): 89, 53, 55, (299,37,0): 90, 54, 54, (299,38,0): 93, 55, 54, (299,39,0): 93, 55, 54, (299,40,0): 95, 57, 54, (299,41,0): 95, 58, 52, (299,42,0): 96, 57, 50, (299,43,0): 97, 58, 51, (299,44,0): 98, 58, 50, (299,45,0): 99, 59, 51, (299,46,0): 99, 59, 51, (299,47,0): 100, 60, 52, (299,48,0): 104, 64, 54, (299,49,0): 107, 64, 55, (299,50,0): 111, 67, 56, (299,51,0): 115, 69, 56, (299,52,0): 119, 71, 59, (299,53,0): 123, 74, 59, (299,54,0): 127, 76, 59, (299,55,0): 128, 77, 56, (299,56,0): 130, 78, 56, (299,57,0): 131, 80, 53, (299,58,0): 133, 82, 53, (299,59,0): 134, 85, 52, (299,60,0): 136, 87, 54, (299,61,0): 136, 90, 54, (299,62,0): 137, 92, 53, (299,63,0): 138, 93, 54, (299,64,0): 146, 98, 60, (299,65,0): 146, 98, 60, (299,66,0): 146, 98, 58, (299,67,0): 147, 99, 59, (299,68,0): 147, 99, 59, (299,69,0): 147, 99, 59, (299,70,0): 146, 101, 59, (299,71,0): 146, 101, 59, (299,72,0): 147, 104, 59, (299,73,0): 147, 104, 59, (299,74,0): 146, 103, 58, (299,75,0): 145, 104, 58, (299,76,0): 145, 105, 56, (299,77,0): 144, 104, 55, (299,78,0): 144, 104, 55, (299,79,0): 144, 103, 57, (299,80,0): 144, 101, 58, (299,81,0): 144, 101, 59, (299,82,0): 143, 101, 59, (299,83,0): 143, 101, 59, (299,84,0): 143, 101, 59, (299,85,0): 143, 101, 59, (299,86,0): 141, 102, 59, (299,87,0): 141, 102, 59, (299,88,0): 139, 102, 58, (299,89,0): 140, 103, 59, (299,90,0): 141, 104, 60, (299,91,0): 142, 105, 61, (299,92,0): 142, 108, 63, (299,93,0): 143, 109, 64, (299,94,0): 144, 110, 65, (299,95,0): 145, 111, 65, (299,96,0): 152, 116, 64, (299,97,0): 154, 117, 62, (299,98,0): 157, 120, 65, (299,99,0): 160, 124, 66, (299,100,0): 163, 127, 69, (299,101,0): 168, 129, 70, (299,102,0): 170, 132, 70, (299,103,0): 172, 134, 71, (299,104,0): 178, 139, 72, (299,105,0): 180, 141, 72, (299,106,0): 183, 143, 73, (299,107,0): 186, 146, 74, (299,108,0): 188, 148, 76, (299,109,0): 189, 150, 75, (299,110,0): 190, 151, 76, (299,111,0): 190, 151, 76, (299,112,0): 187, 149, 76, (299,113,0): 181, 144, 73, (299,114,0): 172, 135, 67, (299,115,0): 165, 127, 64, (299,116,0): 161, 122, 63, (299,117,0): 163, 124, 65, (299,118,0): 166, 127, 68, (299,119,0): 169, 131, 69, (299,120,0): 175, 137, 72, (299,121,0): 179, 142, 72, (299,122,0): 184, 148, 74, (299,123,0): 186, 150, 74, (299,124,0): 186, 150, 76, (299,125,0): 185, 149, 75, (299,126,0): 186, 149, 78, (299,127,0): 188, 151, 80, (299,128,0): 191, 155, 81, (299,129,0): 191, 155, 81, (299,130,0): 190, 154, 80, (299,131,0): 189, 152, 81, (299,132,0): 187, 150, 79, (299,133,0): 182, 145, 75, (299,134,0): 177, 140, 70, (299,135,0): 174, 137, 69, (299,136,0): 170, 132, 67, (299,137,0): 169, 131, 68, (299,138,0): 168, 130, 67, (299,139,0): 167, 129, 67, (299,140,0): 167, 128, 69, (299,141,0): 167, 128, 69, (299,142,0): 168, 129, 72, (299,143,0): 168, 129, 72, (299,144,0): 170, 131, 72, (299,145,0): 170, 131, 72, (299,146,0): 168, 129, 70, (299,147,0): 166, 127, 68, (299,148,0): 164, 125, 66, (299,149,0): 166, 128, 66, (299,150,0): 171, 133, 71, (299,151,0): 176, 138, 76, (299,152,0): 174, 136, 74, (299,153,0): 179, 141, 78, (299,154,0): 184, 146, 83, (299,155,0): 182, 144, 79, (299,156,0): 177, 139, 74, (299,157,0): 175, 137, 72, (299,158,0): 180, 142, 77, (299,159,0): 185, 148, 80, (299,160,0): 186, 149, 79, (299,161,0): 188, 151, 81, (299,162,0): 190, 153, 83, (299,163,0): 193, 154, 85, (299,164,0): 194, 155, 88, (299,165,0): 194, 155, 88, (299,166,0): 195, 155, 86, (299,167,0): 195, 155, 86, (299,168,0): 201, 158, 89, (299,169,0): 204, 162, 90, (299,170,0): 207, 165, 91, (299,171,0): 208, 167, 88, (299,172,0): 211, 168, 89, (299,173,0): 215, 173, 91, (299,174,0): 220, 178, 94, (299,175,0): 224, 184, 96, (299,176,0): 242, 209, 112, (299,177,0): 245, 216, 116, (299,178,0): 251, 222, 122, (299,179,0): 253, 223, 125, (299,180,0): 253, 223, 125, (299,181,0): 252, 222, 126, (299,182,0): 254, 223, 130, (299,183,0): 255, 225, 134, (299,184,0): 255, 225, 135, (299,185,0): 255, 224, 137, (299,186,0): 255, 224, 139, (299,187,0): 255, 225, 142, (299,188,0): 255, 224, 143, (299,189,0): 255, 225, 144, (299,190,0): 255, 225, 144, (299,191,0): 255, 226, 144, (299,192,0): 255, 229, 145, (299,193,0): 254, 230, 144, (299,194,0): 252, 230, 144, (299,195,0): 251, 231, 142, (299,196,0): 253, 233, 144, (299,197,0): 253, 238, 145, (299,198,0): 255, 241, 148, (299,199,0): 255, 246, 149, (299,200,0): 255, 249, 152, (299,201,0): 255, 251, 153, (299,202,0): 255, 252, 156, (299,203,0): 255, 255, 160, (299,204,0): 255, 255, 162, (299,205,0): 255, 255, 163, (299,206,0): 254, 254, 164, (299,207,0): 252, 255, 164, (299,208,0): 253, 255, 165, (299,209,0): 251, 255, 162, (299,210,0): 250, 255, 161, (299,211,0): 248, 253, 159, (299,212,0): 248, 253, 159, (299,213,0): 248, 253, 159, (299,214,0): 249, 254, 160, (299,215,0): 249, 254, 160, (299,216,0): 248, 253, 159, (299,217,0): 248, 253, 159, (299,218,0): 248, 253, 159, (299,219,0): 249, 254, 160, (299,220,0): 249, 254, 160, (299,221,0): 250, 255, 161, (299,222,0): 250, 255, 161, (299,223,0): 250, 255, 163, (299,224,0): 251, 255, 166, (299,225,0): 251, 255, 166, (299,226,0): 251, 255, 166, (299,227,0): 251, 255, 168, (299,228,0): 251, 255, 168, (299,229,0): 251, 255, 168, (299,230,0): 251, 255, 168, (299,231,0): 251, 255, 170, (299,232,0): 252, 255, 171, (299,233,0): 252, 255, 172, (299,234,0): 252, 255, 172, (299,235,0): 252, 255, 172, (299,236,0): 252, 255, 172, (299,237,0): 252, 255, 174, (299,238,0): 252, 255, 174, (299,239,0): 251, 255, 176, (299,240,0): 248, 255, 178, (299,241,0): 245, 255, 178, (299,242,0): 244, 255, 179, (299,243,0): 242, 253, 177, (299,244,0): 242, 252, 179, (299,245,0): 242, 252, 179, (299,246,0): 243, 253, 182, (299,247,0): 243, 253, 182, (299,248,0): 245, 255, 186, (299,249,0): 246, 255, 188, (299,250,0): 247, 255, 191, (299,251,0): 249, 255, 193, (299,252,0): 249, 255, 195, (299,253,0): 249, 255, 195, (299,254,0): 248, 255, 196, (299,255,0): 247, 255, 197, (299,256,0): 246, 255, 200, (299,257,0): 245, 255, 202, (299,258,0): 246, 255, 203, (299,259,0): 248, 255, 205, (299,260,0): 249, 255, 206, (299,261,0): 249, 255, 208, (299,262,0): 249, 255, 210, (299,263,0): 249, 255, 212, (299,264,0): 251, 255, 217, (299,265,0): 244, 255, 214, (299,266,0): 237, 252, 211, (299,267,0): 234, 250, 211, (299,268,0): 232, 253, 214, (299,269,0): 231, 253, 214, (299,270,0): 227, 252, 213, (299,271,0): 225, 251, 212, (299,272,0): 216, 247, 206, (299,273,0): 210, 242, 201, (299,274,0): 205, 236, 195, (299,275,0): 197, 228, 187, (299,276,0): 187, 218, 177, (299,277,0): 175, 206, 164, (299,278,0): 165, 193, 153, (299,279,0): 158, 186, 145, (299,280,0): 149, 175, 136, (299,281,0): 149, 176, 135, (299,282,0): 150, 177, 136, (299,283,0): 149, 176, 135, (299,284,0): 149, 174, 134, (299,285,0): 148, 173, 133, (299,286,0): 148, 173, 133, (299,287,0): 149, 173, 137, (299,288,0): 148, 172, 140, (299,289,0): 147, 170, 142, (299,290,0): 146, 166, 139, (299,291,0): 141, 161, 134, (299,292,0): 138, 156, 132, (299,293,0): 137, 155, 131, (299,294,0): 139, 157, 135, (299,295,0): 142, 161, 141, (299,296,0): 140, 159, 140, (299,297,0): 135, 158, 138, (299,298,0): 134, 159, 140, (299,299,0): 137, 164, 147, (299,300,0): 142, 173, 157, (299,301,0): 148, 181, 164, (299,302,0): 151, 184, 167, (299,303,0): 150, 184, 167, (299,304,0): 150, 183, 166, (299,305,0): 150, 184, 168, (299,306,0): 150, 184, 170, (299,307,0): 148, 184, 172, (299,308,0): 146, 184, 173, (299,309,0): 149, 186, 179, (299,310,0): 153, 192, 189, (299,311,0): 156, 198, 197, (299,312,0): 156, 200, 203, (299,313,0): 157, 202, 208, (299,314,0): 157, 204, 214, (299,315,0): 160, 208, 220, (299,316,0): 163, 212, 227, (299,317,0): 166, 215, 232, (299,318,0): 166, 217, 236, (299,319,0): 169, 218, 235, (299,320,0): 164, 206, 222, (299,321,0): 158, 195, 211, (299,322,0): 147, 180, 195, (299,323,0): 139, 168, 182, (299,324,0): 138, 161, 175, (299,325,0): 137, 159, 172, (299,326,0): 137, 157, 168, (299,327,0): 137, 157, 166, (299,328,0): 139, 160, 165, (299,329,0): 135, 154, 158, (299,330,0): 127, 145, 147, (299,331,0): 118, 134, 134, (299,332,0): 109, 121, 121, (299,333,0): 101, 110, 109, (299,334,0): 99, 101, 100, (299,335,0): 95, 96, 98, (299,336,0): 95, 100, 106, (299,337,0): 95, 102, 110, (299,338,0): 97, 104, 112, (299,339,0): 98, 105, 113, (299,340,0): 98, 102, 111, (299,341,0): 93, 97, 106, (299,342,0): 88, 92, 101, (299,343,0): 85, 89, 98, (299,344,0): 86, 89, 98, (299,345,0): 84, 87, 96, (299,346,0): 83, 83, 93, (299,347,0): 81, 81, 91, (299,348,0): 78, 78, 88, (299,349,0): 77, 77, 87, (299,350,0): 77, 75, 86, (299,351,0): 76, 76, 86, (299,352,0): 73, 76, 85, (299,353,0): 72, 76, 85, (299,354,0): 73, 77, 86, (299,355,0): 76, 80, 89, (299,356,0): 78, 85, 95, (299,357,0): 83, 89, 101, (299,358,0): 89, 95, 109, (299,359,0): 92, 98, 114, (299,360,0): 94, 101, 117, (299,361,0): 96, 103, 121, (299,362,0): 99, 107, 126, (299,363,0): 103, 111, 132, (299,364,0): 108, 116, 137, (299,365,0): 112, 120, 141, (299,366,0): 113, 124, 146, (299,367,0): 117, 125, 146, (299,368,0): 123, 128, 147, (299,369,0): 123, 126, 143, (299,370,0): 121, 122, 140, (299,371,0): 118, 120, 135, (299,372,0): 120, 119, 135, (299,373,0): 121, 120, 134, (299,374,0): 125, 123, 136, (299,375,0): 127, 123, 137, (299,376,0): 139, 133, 145, (299,377,0): 138, 132, 142, (299,378,0): 137, 129, 140, (299,379,0): 135, 128, 136, (299,380,0): 134, 124, 133, (299,381,0): 130, 120, 128, (299,382,0): 128, 117, 125, (299,383,0): 127, 114, 123, (299,384,0): 129, 113, 123, (299,385,0): 128, 110, 122, (299,386,0): 125, 109, 120, (299,387,0): 121, 105, 116, (299,388,0): 115, 101, 114, (299,389,0): 112, 100, 114, (299,390,0): 111, 100, 114, (299,391,0): 111, 101, 112, (299,392,0): 110, 100, 111, (299,393,0): 107, 97, 106, (299,394,0): 104, 92, 102, (299,395,0): 101, 88, 97, (299,396,0): 100, 85, 90, (299,397,0): 98, 83, 86, (299,398,0): 98, 82, 85, (299,399,0): 98, 82, 83, (299,400,0): 98, 79, 81, (299,401,0): 94, 75, 77, (299,402,0): 91, 72, 74, (299,403,0): 90, 71, 73, (299,404,0): 93, 74, 76, (299,405,0): 98, 78, 80, (299,406,0): 99, 79, 81, (299,407,0): 99, 79, 81, (299,408,0): 95, 73, 76, (299,409,0): 94, 72, 75, (299,410,0): 93, 71, 74, (299,411,0): 92, 67, 71, (299,412,0): 89, 64, 68, (299,413,0): 86, 61, 65, (299,414,0): 85, 58, 63, (299,415,0): 83, 56, 61, (299,416,0): 82, 57, 60, (299,417,0): 82, 57, 60, (299,418,0): 81, 56, 59, (299,419,0): 81, 56, 59, (299,420,0): 80, 56, 56, (299,421,0): 79, 55, 55, (299,422,0): 79, 55, 55, (299,423,0): 78, 54, 54, (299,424,0): 74, 50, 48, (299,425,0): 77, 53, 51, (299,426,0): 79, 55, 51, (299,427,0): 79, 55, 51, (299,428,0): 78, 54, 50, (299,429,0): 78, 54, 50, (299,430,0): 80, 57, 51, (299,431,0): 83, 60, 52, (299,432,0): 87, 62, 55, (299,433,0): 91, 67, 57, (299,434,0): 99, 70, 62, (299,435,0): 102, 73, 65, (299,436,0): 107, 74, 65, (299,437,0): 110, 77, 68, (299,438,0): 115, 83, 72, (299,439,0): 119, 87, 76, (299,440,0): 115, 81, 69, (299,441,0): 125, 89, 75, (299,442,0): 130, 86, 73, (299,443,0): 140, 88, 75, (299,444,0): 164, 102, 91, (299,445,0): 183, 110, 101, (299,446,0): 197, 114, 108, (299,447,0): 206, 125, 122, (299,448,0): 224, 154, 162, (299,449,0): 239, 167, 178, (299,450,0): 244, 152, 165, (299,451,0): 235, 130, 144, (299,452,0): 235, 129, 139, (299,453,0): 222, 130, 135, (299,454,0): 189, 123, 124, (299,455,0): 163, 122, 118, (299,456,0): 133, 114, 110, (299,457,0): 124, 115, 116, (299,458,0): 122, 111, 119, (299,459,0): 119, 107, 119, (299,460,0): 117, 103, 116, (299,461,0): 114, 104, 113, (299,462,0): 108, 106, 111, (299,463,0): 108, 105, 112, (299,464,0): 110, 99, 115, (299,465,0): 114, 99, 118, (299,466,0): 114, 100, 123, (299,467,0): 115, 101, 124, (299,468,0): 117, 102, 125, (299,469,0): 123, 105, 127, (299,470,0): 133, 112, 131, (299,471,0): 139, 117, 130, (299,472,0): 144, 121, 129, (299,473,0): 149, 127, 130, (299,474,0): 156, 136, 135, (299,475,0): 162, 147, 140, (299,476,0): 165, 156, 149, (299,477,0): 164, 161, 152, (299,478,0): 160, 163, 152, (299,479,0): 156, 163, 155, (299,480,0): 152, 161, 160, (299,481,0): 150, 160, 162, (299,482,0): 145, 158, 164, (299,483,0): 145, 160, 167, (299,484,0): 145, 163, 175, (299,485,0): 149, 168, 182, (299,486,0): 152, 173, 190, (299,487,0): 155, 178, 196, (299,488,0): 157, 180, 198, (299,489,0): 160, 181, 198, (299,490,0): 164, 183, 200, (299,491,0): 169, 185, 200, (299,492,0): 175, 189, 202, (299,493,0): 182, 192, 204, (299,494,0): 187, 195, 206, (299,495,0): 189, 197, 208, (299,496,0): 193, 201, 214, (299,497,0): 188, 200, 214, (299,498,0): 185, 199, 212, (299,499,0): 182, 198, 213, (299,500,0): 182, 199, 215, (299,501,0): 180, 201, 218, (299,502,0): 178, 203, 223, (299,503,0): 178, 205, 226, (299,504,0): 178, 206, 230, (299,505,0): 175, 205, 231, (299,506,0): 173, 204, 233, (299,507,0): 172, 203, 234, (299,508,0): 172, 202, 236, (299,509,0): 174, 204, 240, (299,510,0): 177, 205, 244, (299,511,0): 177, 206, 246, (299,512,0): 176, 205, 247, (299,513,0): 174, 206, 247, (299,514,0): 176, 207, 251, (299,515,0): 178, 211, 254, (299,516,0): 180, 212, 255, (299,517,0): 177, 211, 255, (299,518,0): 171, 205, 253, (299,519,0): 163, 199, 247, (299,520,0): 161, 199, 246, (299,521,0): 157, 198, 244, (299,522,0): 157, 198, 242, (299,523,0): 159, 202, 244, (299,524,0): 165, 208, 250, (299,525,0): 170, 215, 254, (299,526,0): 173, 219, 255, (299,527,0): 172, 220, 255, (299,528,0): 171, 219, 255, (299,529,0): 167, 212, 251, (299,530,0): 163, 206, 251, (299,531,0): 168, 204, 255, (299,532,0): 174, 203, 255, (299,533,0): 173, 193, 254, (299,534,0): 161, 175, 236, (299,535,0): 151, 160, 217, (299,536,0): 136, 138, 187, (299,537,0): 130, 128, 168, (299,538,0): 119, 112, 145, (299,539,0): 108, 98, 122, (299,540,0): 100, 87, 104, (299,541,0): 91, 78, 88, (299,542,0): 86, 69, 77, (299,543,0): 82, 63, 69, (299,544,0): 81, 60, 69, (299,545,0): 80, 57, 67, (299,546,0): 80, 54, 63, (299,547,0): 81, 55, 64, (299,548,0): 86, 60, 69, (299,549,0): 94, 68, 77, (299,550,0): 102, 77, 83, (299,551,0): 106, 83, 89, (299,552,0): 107, 86, 91, (299,553,0): 106, 87, 89, (299,554,0): 100, 86, 86, (299,555,0): 90, 78, 78, (299,556,0): 82, 72, 70, (299,557,0): 79, 74, 70, (299,558,0): 86, 83, 78, (299,559,0): 96, 91, 87, (299,560,0): 102, 92, 91, (299,561,0): 101, 89, 91, (299,562,0): 99, 87, 89, (299,563,0): 97, 85, 89, (299,564,0): 96, 85, 91, (299,565,0): 98, 87, 95, (299,566,0): 101, 90, 98, (299,567,0): 102, 92, 100, (299,568,0): 104, 94, 103, (299,569,0): 95, 88, 95, (299,570,0): 85, 78, 85, (299,571,0): 76, 70, 74, (299,572,0): 71, 65, 67, (299,573,0): 70, 66, 65, (299,574,0): 73, 67, 67, (299,575,0): 75, 69, 69, (299,576,0): 69, 63, 67, (299,577,0): 66, 59, 66, (299,578,0): 60, 53, 60, (299,579,0): 55, 48, 55, (299,580,0): 54, 45, 50, (299,581,0): 52, 43, 48, (299,582,0): 51, 42, 45, (299,583,0): 50, 41, 44, (299,584,0): 50, 39, 43, (299,585,0): 51, 40, 44, (299,586,0): 53, 41, 43, (299,587,0): 53, 41, 43, (299,588,0): 53, 41, 41, (299,589,0): 53, 41, 41, (299,590,0): 54, 40, 40, (299,591,0): 53, 39, 39, (299,592,0): 58, 42, 43, (299,593,0): 55, 39, 40, (299,594,0): 53, 37, 38, (299,595,0): 52, 36, 37, (299,596,0): 53, 37, 38, (299,597,0): 53, 37, 38, (299,598,0): 51, 35, 36, (299,599,0): 48, 32, 33, (300,0,0): 54, 48, 50, (300,1,0): 54, 48, 50, (300,2,0): 54, 48, 50, (300,3,0): 54, 48, 50, (300,4,0): 56, 47, 50, (300,5,0): 56, 47, 50, (300,6,0): 56, 47, 50, (300,7,0): 56, 47, 50, (300,8,0): 57, 46, 50, (300,9,0): 57, 46, 50, (300,10,0): 59, 47, 51, (300,11,0): 59, 47, 51, (300,12,0): 60, 48, 52, (300,13,0): 60, 48, 52, (300,14,0): 63, 48, 53, (300,15,0): 63, 48, 53, (300,16,0): 63, 48, 53, (300,17,0): 62, 47, 52, (300,18,0): 63, 46, 52, (300,19,0): 62, 45, 51, (300,20,0): 62, 45, 51, (300,21,0): 63, 44, 50, (300,22,0): 63, 44, 50, (300,23,0): 63, 44, 50, (300,24,0): 67, 46, 53, (300,25,0): 66, 45, 52, (300,26,0): 67, 44, 52, (300,27,0): 67, 44, 52, (300,28,0): 70, 44, 53, (300,29,0): 72, 46, 55, (300,30,0): 75, 48, 57, (300,31,0): 78, 48, 56, (300,32,0): 85, 50, 56, (300,33,0): 86, 50, 54, (300,34,0): 87, 51, 53, (300,35,0): 88, 52, 54, (300,36,0): 89, 53, 55, (300,37,0): 90, 54, 54, (300,38,0): 93, 55, 54, (300,39,0): 94, 56, 55, (300,40,0): 96, 56, 54, (300,41,0): 97, 58, 53, (300,42,0): 98, 57, 51, (300,43,0): 99, 58, 52, (300,44,0): 99, 59, 51, (300,45,0): 100, 60, 52, (300,46,0): 100, 60, 50, (300,47,0): 100, 60, 50, (300,48,0): 108, 65, 56, (300,49,0): 109, 66, 57, (300,50,0): 112, 68, 57, (300,51,0): 116, 70, 57, (300,52,0): 120, 72, 60, (300,53,0): 123, 74, 59, (300,54,0): 127, 76, 59, (300,55,0): 129, 77, 56, (300,56,0): 132, 77, 56, (300,57,0): 131, 80, 53, (300,58,0): 133, 82, 53, (300,59,0): 134, 85, 52, (300,60,0): 136, 87, 54, (300,61,0): 136, 90, 54, (300,62,0): 137, 92, 53, (300,63,0): 138, 93, 54, (300,64,0): 146, 98, 60, (300,65,0): 147, 97, 60, (300,66,0): 147, 98, 58, (300,67,0): 147, 98, 58, (300,68,0): 146, 98, 58, (300,69,0): 146, 98, 58, (300,70,0): 144, 99, 57, (300,71,0): 145, 100, 58, (300,72,0): 147, 103, 58, (300,73,0): 146, 103, 58, (300,74,0): 146, 103, 58, (300,75,0): 145, 102, 57, (300,76,0): 143, 103, 54, (300,77,0): 143, 103, 54, (300,78,0): 142, 102, 53, (300,79,0): 142, 101, 55, (300,80,0): 144, 101, 58, (300,81,0): 144, 101, 59, (300,82,0): 143, 101, 59, (300,83,0): 143, 101, 59, (300,84,0): 143, 101, 59, (300,85,0): 143, 101, 59, (300,86,0): 141, 102, 59, (300,87,0): 141, 102, 59, (300,88,0): 141, 104, 60, (300,89,0): 141, 104, 60, (300,90,0): 143, 106, 62, (300,91,0): 144, 107, 63, (300,92,0): 144, 110, 65, (300,93,0): 146, 112, 67, (300,94,0): 147, 113, 68, (300,95,0): 148, 114, 68, (300,96,0): 153, 117, 65, (300,97,0): 154, 119, 63, (300,98,0): 156, 121, 65, (300,99,0): 160, 125, 67, (300,100,0): 163, 129, 68, (300,101,0): 167, 131, 69, (300,102,0): 169, 134, 70, (300,103,0): 170, 135, 69, (300,104,0): 178, 141, 71, (300,105,0): 180, 143, 72, (300,106,0): 184, 146, 73, (300,107,0): 186, 148, 73, (300,108,0): 189, 152, 74, (300,109,0): 190, 153, 73, (300,110,0): 190, 153, 73, (300,111,0): 190, 153, 73, (300,112,0): 185, 149, 71, (300,113,0): 180, 144, 70, (300,114,0): 172, 135, 65, (300,115,0): 166, 128, 63, (300,116,0): 164, 126, 64, (300,117,0): 166, 128, 66, (300,118,0): 171, 133, 71, (300,119,0): 174, 136, 73, (300,120,0): 179, 142, 74, (300,121,0): 183, 146, 75, (300,122,0): 188, 152, 76, (300,123,0): 190, 154, 76, (300,124,0): 189, 153, 77, (300,125,0): 189, 153, 77, (300,126,0): 190, 154, 78, (300,127,0): 192, 156, 80, (300,128,0): 191, 155, 79, (300,129,0): 191, 155, 79, (300,130,0): 191, 155, 79, (300,131,0): 188, 152, 76, (300,132,0): 184, 148, 74, (300,133,0): 179, 142, 71, (300,134,0): 175, 138, 67, (300,135,0): 172, 135, 65, (300,136,0): 171, 134, 66, (300,137,0): 170, 132, 67, (300,138,0): 168, 130, 67, (300,139,0): 167, 129, 66, (300,140,0): 166, 128, 66, (300,141,0): 167, 129, 67, (300,142,0): 168, 129, 70, (300,143,0): 169, 130, 71, (300,144,0): 171, 132, 75, (300,145,0): 171, 132, 75, (300,146,0): 170, 131, 74, (300,147,0): 167, 128, 71, (300,148,0): 165, 126, 69, (300,149,0): 167, 128, 69, (300,150,0): 172, 133, 74, (300,151,0): 177, 139, 77, (300,152,0): 174, 136, 74, (300,153,0): 179, 141, 78, (300,154,0): 183, 145, 82, (300,155,0): 182, 144, 81, (300,156,0): 178, 140, 77, (300,157,0): 177, 139, 76, (300,158,0): 183, 145, 82, (300,159,0): 189, 151, 86, (300,160,0): 187, 153, 82, (300,161,0): 188, 154, 82, (300,162,0): 190, 156, 85, (300,163,0): 194, 157, 87, (300,164,0): 196, 159, 91, (300,165,0): 196, 159, 91, (300,166,0): 197, 158, 91, (300,167,0): 197, 158, 89, (300,168,0): 203, 163, 93, (300,169,0): 204, 164, 92, (300,170,0): 207, 165, 91, (300,171,0): 208, 167, 88, (300,172,0): 212, 170, 88, (300,173,0): 220, 178, 94, (300,174,0): 230, 188, 102, (300,175,0): 236, 197, 106, (300,176,0): 248, 215, 120, (300,177,0): 247, 219, 120, (300,178,0): 251, 223, 124, (300,179,0): 252, 224, 127, (300,180,0): 252, 224, 127, (300,181,0): 252, 223, 129, (300,182,0): 254, 225, 133, (300,183,0): 255, 226, 136, (300,184,0): 252, 222, 132, (300,185,0): 253, 223, 135, (300,186,0): 253, 223, 137, (300,187,0): 253, 222, 139, (300,188,0): 254, 223, 141, (300,189,0): 254, 223, 141, (300,190,0): 255, 224, 144, (300,191,0): 253, 224, 144, (300,192,0): 254, 227, 146, (300,193,0): 253, 228, 146, (300,194,0): 250, 228, 145, (300,195,0): 250, 230, 144, (300,196,0): 253, 233, 146, (300,197,0): 253, 238, 147, (300,198,0): 255, 242, 149, (300,199,0): 255, 246, 151, (300,200,0): 255, 248, 151, (300,201,0): 255, 250, 152, (300,202,0): 255, 252, 156, (300,203,0): 255, 254, 159, (300,204,0): 255, 255, 162, (300,205,0): 255, 254, 162, (300,206,0): 254, 255, 162, (300,207,0): 251, 254, 163, (300,208,0): 252, 255, 164, (300,209,0): 250, 255, 163, (300,210,0): 249, 254, 162, (300,211,0): 248, 253, 161, (300,212,0): 247, 252, 160, (300,213,0): 247, 252, 160, (300,214,0): 248, 253, 161, (300,215,0): 249, 254, 162, (300,216,0): 248, 253, 161, (300,217,0): 248, 253, 161, (300,218,0): 248, 253, 161, (300,219,0): 249, 254, 162, (300,220,0): 249, 254, 162, (300,221,0): 250, 255, 163, (300,222,0): 250, 255, 163, (300,223,0): 250, 255, 163, (300,224,0): 251, 255, 166, (300,225,0): 251, 255, 168, (300,226,0): 251, 255, 168, (300,227,0): 251, 255, 170, (300,228,0): 251, 255, 170, (300,229,0): 251, 255, 170, (300,230,0): 251, 255, 170, (300,231,0): 251, 255, 171, (300,232,0): 252, 255, 172, (300,233,0): 252, 255, 174, (300,234,0): 252, 255, 174, (300,235,0): 252, 255, 174, (300,236,0): 252, 255, 174, (300,237,0): 252, 255, 176, (300,238,0): 252, 255, 176, (300,239,0): 251, 255, 176, (300,240,0): 245, 255, 177, (300,241,0): 243, 255, 177, (300,242,0): 242, 255, 176, (300,243,0): 241, 254, 175, (300,244,0): 240, 252, 176, (300,245,0): 240, 252, 178, (300,246,0): 241, 253, 181, (300,247,0): 242, 254, 182, (300,248,0): 243, 254, 185, (300,249,0): 244, 255, 187, (300,250,0): 246, 255, 191, (300,251,0): 247, 255, 192, (300,252,0): 248, 255, 195, (300,253,0): 247, 255, 194, (300,254,0): 247, 255, 194, (300,255,0): 246, 255, 196, (300,256,0): 243, 255, 202, (300,257,0): 243, 255, 205, (300,258,0): 243, 255, 207, (300,259,0): 246, 255, 208, (300,260,0): 247, 255, 213, (300,261,0): 248, 255, 215, (300,262,0): 250, 255, 218, (300,263,0): 251, 255, 223, (300,264,0): 252, 255, 226, (300,265,0): 246, 255, 224, (300,266,0): 242, 253, 223, (300,267,0): 239, 254, 225, (300,268,0): 239, 255, 226, (300,269,0): 238, 255, 229, (300,270,0): 236, 255, 229, (300,271,0): 232, 255, 226, (300,272,0): 230, 255, 226, (300,273,0): 224, 254, 220, (300,274,0): 217, 247, 213, (300,275,0): 210, 240, 206, (300,276,0): 202, 229, 196, (300,277,0): 189, 216, 181, (300,278,0): 175, 202, 169, (300,279,0): 164, 191, 156, (300,280,0): 160, 185, 153, (300,281,0): 159, 185, 150, (300,282,0): 158, 182, 148, (300,283,0): 154, 178, 144, (300,284,0): 150, 174, 140, (300,285,0): 148, 172, 138, (300,286,0): 149, 170, 137, (300,287,0): 148, 172, 140, (300,288,0): 149, 174, 145, (300,289,0): 148, 172, 146, (300,290,0): 146, 168, 145, (300,291,0): 140, 162, 139, (300,292,0): 137, 156, 136, (300,293,0): 136, 155, 135, (300,294,0): 139, 158, 139, (300,295,0): 140, 161, 144, (300,296,0): 137, 160, 144, (300,297,0): 135, 159, 143, (300,298,0): 134, 161, 146, (300,299,0): 138, 169, 153, (300,300,0): 147, 179, 164, (300,301,0): 154, 188, 172, (300,302,0): 155, 191, 177, (300,303,0): 155, 191, 177, (300,304,0): 155, 188, 177, (300,305,0): 155, 188, 177, (300,306,0): 155, 188, 179, (300,307,0): 151, 186, 179, (300,308,0): 148, 185, 178, (300,309,0): 150, 186, 184, (300,310,0): 152, 191, 190, (300,311,0): 156, 196, 198, (300,312,0): 158, 199, 205, (300,313,0): 156, 200, 209, (300,314,0): 156, 202, 215, (300,315,0): 157, 205, 219, (300,316,0): 159, 208, 225, (300,317,0): 162, 210, 230, (300,318,0): 163, 214, 233, (300,319,0): 166, 214, 234, (300,320,0): 163, 205, 221, (300,321,0): 155, 192, 208, (300,322,0): 142, 175, 190, (300,323,0): 133, 162, 176, (300,324,0): 131, 154, 170, (300,325,0): 132, 154, 168, (300,326,0): 135, 155, 166, (300,327,0): 136, 154, 164, (300,328,0): 137, 156, 163, (300,329,0): 132, 151, 157, (300,330,0): 123, 141, 145, (300,331,0): 115, 129, 132, (300,332,0): 106, 116, 118, (300,333,0): 100, 105, 108, (300,334,0): 97, 96, 101, (300,335,0): 92, 93, 97, (300,336,0): 95, 100, 106, (300,337,0): 94, 101, 109, (300,338,0): 96, 100, 109, (300,339,0): 96, 100, 109, (300,340,0): 93, 97, 106, (300,341,0): 88, 92, 101, (300,342,0): 84, 87, 96, (300,343,0): 80, 83, 92, (300,344,0): 82, 82, 92, (300,345,0): 81, 81, 91, (300,346,0): 79, 79, 89, (300,347,0): 76, 76, 86, (300,348,0): 76, 74, 85, (300,349,0): 75, 73, 84, (300,350,0): 75, 73, 84, (300,351,0): 74, 74, 84, (300,352,0): 72, 75, 84, (300,353,0): 71, 75, 84, (300,354,0): 73, 77, 88, (300,355,0): 76, 80, 91, (300,356,0): 79, 85, 97, (300,357,0): 85, 91, 103, (300,358,0): 91, 97, 111, (300,359,0): 94, 100, 116, (300,360,0): 95, 102, 120, (300,361,0): 97, 104, 123, (300,362,0): 99, 107, 126, (300,363,0): 103, 111, 132, (300,364,0): 107, 115, 138, (300,365,0): 111, 119, 142, (300,366,0): 111, 121, 146, (300,367,0): 115, 123, 146, (300,368,0): 126, 128, 149, (300,369,0): 125, 126, 146, (300,370,0): 122, 123, 143, (300,371,0): 119, 120, 138, (300,372,0): 121, 120, 136, (300,373,0): 122, 121, 135, (300,374,0): 126, 124, 137, (300,375,0): 129, 125, 139, (300,376,0): 137, 131, 143, (300,377,0): 137, 131, 141, (300,378,0): 138, 131, 138, (300,379,0): 139, 130, 135, (300,380,0): 138, 127, 133, (300,381,0): 135, 124, 130, (300,382,0): 132, 121, 125, (300,383,0): 131, 119, 123, (300,384,0): 132, 115, 123, (300,385,0): 130, 113, 123, (300,386,0): 125, 109, 119, (300,387,0): 122, 106, 117, (300,388,0): 118, 104, 117, (300,389,0): 116, 104, 116, (300,390,0): 114, 104, 115, (300,391,0): 113, 103, 114, (300,392,0): 111, 101, 112, (300,393,0): 108, 98, 107, (300,394,0): 105, 94, 102, (300,395,0): 102, 89, 96, (300,396,0): 101, 86, 91, (300,397,0): 99, 84, 87, (300,398,0): 99, 83, 86, (300,399,0): 101, 82, 84, (300,400,0): 95, 76, 78, (300,401,0): 91, 73, 73, (300,402,0): 87, 69, 69, (300,403,0): 86, 68, 68, (300,404,0): 89, 69, 70, (300,405,0): 91, 69, 71, (300,406,0): 91, 69, 71, (300,407,0): 90, 68, 70, (300,408,0): 91, 66, 69, (300,409,0): 90, 65, 68, (300,410,0): 89, 64, 67, (300,411,0): 88, 62, 65, (300,412,0): 86, 60, 63, (300,413,0): 85, 59, 62, (300,414,0): 84, 58, 61, (300,415,0): 84, 58, 61, (300,416,0): 81, 56, 59, (300,417,0): 79, 57, 59, (300,418,0): 79, 57, 59, (300,419,0): 79, 57, 59, (300,420,0): 78, 57, 56, (300,421,0): 78, 57, 56, (300,422,0): 78, 57, 56, (300,423,0): 77, 56, 55, (300,424,0): 70, 49, 46, (300,425,0): 73, 52, 49, (300,426,0): 76, 55, 50, (300,427,0): 76, 55, 50, (300,428,0): 75, 54, 49, (300,429,0): 75, 54, 49, (300,430,0): 78, 58, 51, (300,431,0): 80, 60, 51, (300,432,0): 84, 64, 55, (300,433,0): 88, 68, 57, (300,434,0): 96, 72, 60, (300,435,0): 101, 77, 65, (300,436,0): 107, 79, 67, (300,437,0): 111, 83, 69, (300,438,0): 117, 88, 72, (300,439,0): 124, 92, 77, (300,440,0): 118, 85, 68, (300,441,0): 131, 95, 79, (300,442,0): 134, 95, 78, (300,443,0): 141, 95, 80, (300,444,0): 161, 109, 96, (300,445,0): 173, 115, 104, (300,446,0): 177, 113, 104, (300,447,0): 185, 114, 110, (300,448,0): 209, 130, 135, (300,449,0): 229, 144, 151, (300,450,0): 235, 142, 150, (300,451,0): 230, 135, 141, (300,452,0): 228, 136, 141, (300,453,0): 216, 136, 139, (300,454,0): 186, 127, 129, (300,455,0): 160, 121, 122, (300,456,0): 138, 118, 120, (300,457,0): 128, 119, 124, (300,458,0): 122, 114, 127, (300,459,0): 118, 111, 127, (300,460,0): 116, 109, 125, (300,461,0): 116, 109, 125, (300,462,0): 114, 110, 124, (300,463,0): 114, 110, 125, (300,464,0): 111, 102, 121, (300,465,0): 114, 102, 124, (300,466,0): 114, 101, 127, (300,467,0): 115, 102, 128, (300,468,0): 118, 104, 130, (300,469,0): 124, 108, 134, (300,470,0): 136, 117, 137, (300,471,0): 144, 123, 140, (300,472,0): 145, 123, 135, (300,473,0): 152, 131, 136, (300,474,0): 160, 142, 142, (300,475,0): 165, 152, 146, (300,476,0): 164, 159, 153, (300,477,0): 162, 163, 155, (300,478,0): 158, 165, 157, (300,479,0): 155, 164, 159, (300,480,0): 155, 165, 166, (300,481,0): 153, 164, 168, (300,482,0): 149, 164, 171, (300,483,0): 148, 165, 173, (300,484,0): 150, 169, 183, (300,485,0): 154, 176, 190, (300,486,0): 157, 183, 200, (300,487,0): 160, 185, 205, (300,488,0): 163, 188, 208, (300,489,0): 165, 187, 208, (300,490,0): 168, 187, 204, (300,491,0): 171, 188, 204, (300,492,0): 178, 191, 207, (300,493,0): 185, 195, 207, (300,494,0): 189, 197, 208, (300,495,0): 191, 200, 209, (300,496,0): 194, 202, 213, (300,497,0): 191, 203, 215, (300,498,0): 188, 202, 215, (300,499,0): 184, 202, 216, (300,500,0): 182, 201, 216, (300,501,0): 180, 203, 219, (300,502,0): 179, 206, 225, (300,503,0): 180, 208, 229, (300,504,0): 180, 210, 234, (300,505,0): 178, 210, 235, (300,506,0): 177, 208, 237, (300,507,0): 174, 207, 238, (300,508,0): 177, 207, 241, (300,509,0): 179, 209, 243, (300,510,0): 181, 211, 247, (300,511,0): 183, 213, 251, (300,512,0): 182, 211, 251, (300,513,0): 177, 209, 250, (300,514,0): 176, 207, 251, (300,515,0): 176, 209, 252, (300,516,0): 179, 211, 255, (300,517,0): 177, 211, 255, (300,518,0): 172, 206, 254, (300,519,0): 165, 201, 249, (300,520,0): 161, 199, 246, (300,521,0): 156, 197, 243, (300,522,0): 154, 195, 239, (300,523,0): 155, 198, 240, (300,524,0): 161, 204, 246, (300,525,0): 165, 210, 249, (300,526,0): 168, 214, 250, (300,527,0): 167, 215, 251, (300,528,0): 166, 214, 254, (300,529,0): 163, 210, 252, (300,530,0): 166, 207, 253, (300,531,0): 173, 206, 255, (300,532,0): 175, 200, 255, (300,533,0): 165, 181, 240, (300,534,0): 145, 154, 211, (300,535,0): 131, 133, 184, (300,536,0): 120, 114, 158, (300,537,0): 113, 105, 142, (300,538,0): 106, 93, 121, (300,539,0): 94, 81, 101, (300,540,0): 88, 71, 87, (300,541,0): 81, 63, 75, (300,542,0): 75, 58, 66, (300,543,0): 73, 53, 62, (300,544,0): 74, 53, 62, (300,545,0): 73, 50, 60, (300,546,0): 73, 47, 58, (300,547,0): 74, 48, 59, (300,548,0): 80, 53, 62, (300,549,0): 90, 63, 72, (300,550,0): 100, 73, 82, (300,551,0): 105, 80, 86, (300,552,0): 101, 78, 84, (300,553,0): 101, 80, 85, (300,554,0): 98, 79, 81, (300,555,0): 89, 75, 75, (300,556,0): 79, 67, 67, (300,557,0): 77, 67, 66, (300,558,0): 83, 75, 72, (300,559,0): 91, 83, 81, (300,560,0): 97, 87, 88, (300,561,0): 97, 85, 89, (300,562,0): 94, 82, 86, (300,563,0): 92, 79, 86, (300,564,0): 92, 79, 88, (300,565,0): 91, 79, 89, (300,566,0): 93, 81, 91, (300,567,0): 93, 83, 92, (300,568,0): 99, 89, 100, (300,569,0): 94, 84, 93, (300,570,0): 84, 77, 85, (300,571,0): 76, 69, 76, (300,572,0): 71, 66, 70, (300,573,0): 69, 67, 68, (300,574,0): 75, 71, 72, (300,575,0): 78, 74, 75, (300,576,0): 73, 67, 71, (300,577,0): 70, 63, 70, (300,578,0): 64, 57, 64, (300,579,0): 58, 51, 58, (300,580,0): 54, 45, 50, (300,581,0): 50, 41, 46, (300,582,0): 49, 40, 43, (300,583,0): 49, 40, 43, (300,584,0): 50, 39, 43, (300,585,0): 51, 40, 44, (300,586,0): 54, 42, 44, (300,587,0): 55, 43, 45, (300,588,0): 55, 43, 43, (300,589,0): 54, 42, 42, (300,590,0): 54, 40, 40, (300,591,0): 53, 39, 39, (300,592,0): 58, 42, 43, (300,593,0): 56, 40, 41, (300,594,0): 53, 37, 38, (300,595,0): 53, 37, 38, (300,596,0): 55, 39, 40, (300,597,0): 55, 39, 40, (300,598,0): 52, 36, 37, (300,599,0): 50, 34, 35, (301,0,0): 54, 48, 50, (301,1,0): 54, 48, 50, (301,2,0): 54, 48, 50, (301,3,0): 54, 48, 50, (301,4,0): 56, 47, 50, (301,5,0): 56, 47, 50, (301,6,0): 56, 47, 50, (301,7,0): 56, 47, 50, (301,8,0): 57, 46, 50, (301,9,0): 57, 46, 50, (301,10,0): 59, 47, 51, (301,11,0): 59, 47, 51, (301,12,0): 60, 48, 52, (301,13,0): 60, 48, 52, (301,14,0): 63, 48, 53, (301,15,0): 63, 48, 53, (301,16,0): 62, 47, 52, (301,17,0): 62, 47, 52, (301,18,0): 62, 47, 52, (301,19,0): 61, 46, 51, (301,20,0): 61, 44, 50, (301,21,0): 61, 44, 50, (301,22,0): 63, 44, 50, (301,23,0): 62, 43, 49, (301,24,0): 66, 45, 52, (301,25,0): 66, 45, 52, (301,26,0): 67, 44, 52, (301,27,0): 67, 44, 52, (301,28,0): 70, 44, 53, (301,29,0): 72, 46, 55, (301,30,0): 75, 48, 57, (301,31,0): 78, 48, 56, (301,32,0): 86, 51, 57, (301,33,0): 87, 51, 55, (301,34,0): 88, 52, 54, (301,35,0): 89, 53, 55, (301,36,0): 90, 54, 54, (301,37,0): 91, 55, 55, (301,38,0): 94, 56, 55, (301,39,0): 94, 56, 53, (301,40,0): 97, 58, 53, (301,41,0): 97, 58, 53, (301,42,0): 98, 57, 51, (301,43,0): 99, 59, 51, (301,44,0): 100, 60, 52, (301,45,0): 100, 60, 52, (301,46,0): 100, 60, 50, (301,47,0): 101, 61, 51, (301,48,0): 109, 66, 57, (301,49,0): 110, 67, 58, (301,50,0): 115, 68, 58, (301,51,0): 117, 71, 58, (301,52,0): 121, 71, 60, (301,53,0): 123, 74, 59, (301,54,0): 128, 75, 59, (301,55,0): 129, 77, 56, (301,56,0): 133, 78, 57, (301,57,0): 134, 80, 54, (301,58,0): 133, 82, 53, (301,59,0): 135, 85, 52, (301,60,0): 137, 88, 55, (301,61,0): 139, 91, 55, (301,62,0): 138, 93, 54, (301,63,0): 139, 94, 55, (301,64,0): 146, 96, 59, (301,65,0): 146, 96, 59, (301,66,0): 146, 97, 57, (301,67,0): 147, 98, 58, (301,68,0): 146, 98, 58, (301,69,0): 146, 98, 58, (301,70,0): 144, 99, 57, (301,71,0): 144, 99, 57, (301,72,0): 148, 104, 59, (301,73,0): 148, 104, 59, (301,74,0): 146, 103, 58, (301,75,0): 145, 102, 57, (301,76,0): 143, 103, 54, (301,77,0): 142, 102, 53, (301,78,0): 141, 101, 52, (301,79,0): 141, 100, 54, (301,80,0): 144, 101, 58, (301,81,0): 144, 101, 59, (301,82,0): 143, 101, 59, (301,83,0): 143, 101, 59, (301,84,0): 143, 101, 59, (301,85,0): 143, 101, 59, (301,86,0): 141, 102, 59, (301,87,0): 141, 102, 59, (301,88,0): 143, 106, 62, (301,89,0): 144, 107, 63, (301,90,0): 145, 108, 64, (301,91,0): 147, 110, 66, (301,92,0): 147, 113, 68, (301,93,0): 149, 115, 70, (301,94,0): 151, 117, 72, (301,95,0): 151, 117, 71, (301,96,0): 156, 121, 67, (301,97,0): 157, 122, 64, (301,98,0): 159, 124, 66, (301,99,0): 162, 128, 67, (301,100,0): 166, 132, 69, (301,101,0): 169, 135, 71, (301,102,0): 172, 137, 71, (301,103,0): 173, 138, 70, (301,104,0): 181, 144, 74, (301,105,0): 183, 147, 73, (301,106,0): 186, 148, 73, (301,107,0): 189, 152, 74, (301,108,0): 191, 154, 74, (301,109,0): 193, 156, 75, (301,110,0): 193, 156, 75, (301,111,0): 193, 156, 75, (301,112,0): 188, 153, 72, (301,113,0): 183, 147, 71, (301,114,0): 177, 140, 69, (301,115,0): 172, 135, 67, (301,116,0): 170, 132, 69, (301,117,0): 172, 134, 71, (301,118,0): 176, 138, 75, (301,119,0): 179, 141, 76, (301,120,0): 183, 146, 76, (301,121,0): 187, 151, 77, (301,122,0): 190, 154, 76, (301,123,0): 191, 156, 75, (301,124,0): 190, 154, 76, (301,125,0): 190, 154, 76, (301,126,0): 192, 156, 78, (301,127,0): 194, 158, 80, (301,128,0): 191, 155, 77, (301,129,0): 192, 156, 78, (301,130,0): 192, 156, 78, (301,131,0): 188, 152, 74, (301,132,0): 183, 147, 71, (301,133,0): 177, 141, 67, (301,134,0): 174, 137, 66, (301,135,0): 174, 137, 66, (301,136,0): 173, 136, 66, (301,137,0): 172, 135, 67, (301,138,0): 169, 131, 68, (301,139,0): 167, 129, 66, (301,140,0): 166, 128, 66, (301,141,0): 167, 129, 67, (301,142,0): 168, 129, 70, (301,143,0): 169, 130, 71, (301,144,0): 171, 132, 75, (301,145,0): 171, 132, 75, (301,146,0): 170, 131, 74, (301,147,0): 167, 128, 71, (301,148,0): 165, 126, 69, (301,149,0): 167, 128, 71, (301,150,0): 173, 134, 77, (301,151,0): 177, 138, 79, (301,152,0): 176, 137, 78, (301,153,0): 179, 141, 79, (301,154,0): 180, 142, 80, (301,155,0): 179, 141, 78, (301,156,0): 178, 140, 77, (301,157,0): 180, 142, 79, (301,158,0): 187, 149, 86, (301,159,0): 191, 156, 90, (301,160,0): 191, 158, 87, (301,161,0): 192, 160, 87, (301,162,0): 194, 161, 90, (301,163,0): 197, 163, 92, (301,164,0): 198, 163, 95, (301,165,0): 200, 163, 95, (301,166,0): 199, 162, 94, (301,167,0): 200, 161, 92, (301,168,0): 204, 165, 96, (301,169,0): 206, 166, 94, (301,170,0): 210, 168, 94, (301,171,0): 213, 172, 93, (301,172,0): 219, 177, 95, (301,173,0): 229, 187, 101, (301,174,0): 241, 200, 112, (301,175,0): 247, 210, 119, (301,176,0): 249, 219, 123, (301,177,0): 250, 222, 125, (301,178,0): 251, 223, 126, (301,179,0): 252, 224, 127, (301,180,0): 253, 224, 130, (301,181,0): 253, 224, 132, (301,182,0): 254, 224, 134, (301,183,0): 254, 224, 134, (301,184,0): 250, 220, 132, (301,185,0): 250, 220, 134, (301,186,0): 250, 219, 136, (301,187,0): 251, 220, 137, (301,188,0): 251, 220, 138, (301,189,0): 252, 221, 139, (301,190,0): 252, 221, 141, (301,191,0): 250, 221, 141, (301,192,0): 251, 224, 145, (301,193,0): 251, 226, 146, (301,194,0): 250, 227, 147, (301,195,0): 251, 230, 147, (301,196,0): 254, 234, 148, (301,197,0): 254, 238, 150, (301,198,0): 255, 241, 150, (301,199,0): 255, 245, 150, (301,200,0): 255, 247, 150, (301,201,0): 255, 249, 151, (301,202,0): 255, 251, 155, (301,203,0): 255, 253, 156, (301,204,0): 255, 253, 158, (301,205,0): 254, 253, 160, (301,206,0): 252, 253, 159, (301,207,0): 250, 254, 160, (301,208,0): 252, 255, 164, (301,209,0): 250, 255, 163, (301,210,0): 248, 253, 161, (301,211,0): 247, 252, 160, (301,212,0): 247, 252, 160, (301,213,0): 247, 252, 160, (301,214,0): 248, 253, 161, (301,215,0): 248, 253, 161, (301,216,0): 248, 253, 161, (301,217,0): 248, 253, 161, (301,218,0): 248, 253, 161, (301,219,0): 249, 254, 162, (301,220,0): 249, 254, 162, (301,221,0): 250, 255, 163, (301,222,0): 250, 255, 163, (301,223,0): 250, 255, 165, (301,224,0): 251, 255, 168, (301,225,0): 251, 255, 168, (301,226,0): 251, 255, 170, (301,227,0): 251, 255, 170, (301,228,0): 251, 255, 170, (301,229,0): 251, 255, 170, (301,230,0): 251, 255, 171, (301,231,0): 251, 255, 171, (301,232,0): 251, 254, 173, (301,233,0): 251, 254, 173, (301,234,0): 251, 254, 173, (301,235,0): 251, 254, 173, (301,236,0): 251, 254, 175, (301,237,0): 251, 254, 175, (301,238,0): 251, 254, 175, (301,239,0): 250, 254, 177, (301,240,0): 245, 255, 177, (301,241,0): 243, 255, 177, (301,242,0): 241, 254, 175, (301,243,0): 240, 253, 174, (301,244,0): 240, 252, 176, (301,245,0): 240, 252, 176, (301,246,0): 241, 253, 179, (301,247,0): 241, 253, 181, (301,248,0): 242, 253, 184, (301,249,0): 243, 254, 185, (301,250,0): 245, 255, 188, (301,251,0): 246, 255, 191, (301,252,0): 246, 255, 193, (301,253,0): 246, 255, 193, (301,254,0): 245, 255, 192, (301,255,0): 244, 255, 195, (301,256,0): 242, 255, 205, (301,257,0): 242, 255, 209, (301,258,0): 241, 254, 210, (301,259,0): 242, 253, 211, (301,260,0): 243, 253, 216, (301,261,0): 247, 254, 220, (301,262,0): 249, 254, 224, (301,263,0): 250, 254, 227, (301,264,0): 251, 255, 233, (301,265,0): 249, 254, 232, (301,266,0): 244, 253, 232, (301,267,0): 242, 254, 234, (301,268,0): 243, 255, 238, (301,269,0): 242, 255, 238, (301,270,0): 239, 255, 238, (301,271,0): 233, 255, 234, (301,272,0): 236, 255, 237, (301,273,0): 230, 255, 231, (301,274,0): 226, 252, 225, (301,275,0): 221, 247, 220, (301,276,0): 214, 240, 213, (301,277,0): 202, 228, 199, (301,278,0): 187, 212, 183, (301,279,0): 176, 201, 172, (301,280,0): 170, 195, 166, (301,281,0): 166, 189, 161, (301,282,0): 158, 181, 153, (301,283,0): 150, 173, 144, (301,284,0): 148, 168, 140, (301,285,0): 145, 165, 137, (301,286,0): 144, 164, 136, (301,287,0): 143, 163, 136, (301,288,0): 143, 167, 143, (301,289,0): 142, 167, 145, (301,290,0): 141, 166, 144, (301,291,0): 137, 160, 140, (301,292,0): 132, 155, 135, (301,293,0): 130, 153, 135, (301,294,0): 133, 154, 137, (301,295,0): 135, 158, 142, (301,296,0): 134, 158, 144, (301,297,0): 133, 159, 146, (301,298,0): 134, 165, 150, (301,299,0): 140, 172, 159, (301,300,0): 147, 181, 167, (301,301,0): 152, 188, 176, (301,302,0): 155, 193, 180, (301,303,0): 157, 195, 184, (301,304,0): 156, 191, 184, (301,305,0): 158, 191, 184, (301,306,0): 154, 189, 183, (301,307,0): 150, 185, 181, (301,308,0): 147, 183, 181, (301,309,0): 148, 183, 185, (301,310,0): 151, 189, 192, (301,311,0): 155, 194, 201, (301,312,0): 157, 197, 207, (301,313,0): 155, 197, 209, (301,314,0): 155, 198, 214, (301,315,0): 153, 200, 216, (301,316,0): 155, 202, 222, (301,317,0): 157, 205, 227, (301,318,0): 158, 209, 230, (301,319,0): 161, 209, 229, (301,320,0): 158, 201, 217, (301,321,0): 151, 188, 204, (301,322,0): 138, 171, 186, (301,323,0): 128, 157, 173, (301,324,0): 127, 150, 166, (301,325,0): 130, 149, 164, (301,326,0): 133, 151, 165, (301,327,0): 135, 153, 165, (301,328,0): 134, 152, 162, (301,329,0): 130, 147, 155, (301,330,0): 122, 137, 144, (301,331,0): 112, 125, 131, (301,332,0): 105, 112, 118, (301,333,0): 100, 103, 108, (301,334,0): 98, 97, 103, (301,335,0): 95, 94, 100, (301,336,0): 96, 99, 106, (301,337,0): 93, 100, 108, (301,338,0): 94, 98, 107, (301,339,0): 92, 96, 105, (301,340,0): 88, 92, 101, (301,341,0): 82, 86, 95, (301,342,0): 77, 80, 89, (301,343,0): 74, 77, 86, (301,344,0): 75, 75, 85, (301,345,0): 74, 74, 84, (301,346,0): 73, 73, 83, (301,347,0): 71, 71, 81, (301,348,0): 72, 70, 81, (301,349,0): 72, 70, 81, (301,350,0): 73, 71, 82, (301,351,0): 73, 73, 83, (301,352,0): 73, 76, 85, (301,353,0): 72, 76, 85, (301,354,0): 74, 78, 89, (301,355,0): 77, 81, 92, (301,356,0): 80, 86, 98, (301,357,0): 87, 93, 105, (301,358,0): 92, 98, 114, (301,359,0): 96, 102, 118, (301,360,0): 97, 104, 123, (301,361,0): 98, 105, 124, (301,362,0): 99, 107, 128, (301,363,0): 103, 111, 134, (301,364,0): 106, 113, 139, (301,365,0): 109, 116, 142, (301,366,0): 110, 120, 145, (301,367,0): 113, 120, 146, (301,368,0): 125, 127, 150, (301,369,0): 125, 126, 147, (301,370,0): 122, 123, 144, (301,371,0): 121, 122, 142, (301,372,0): 122, 121, 139, (301,373,0): 124, 121, 138, (301,374,0): 126, 122, 137, (301,375,0): 127, 124, 135, (301,376,0): 132, 126, 136, (301,377,0): 135, 128, 136, (301,378,0): 138, 128, 136, (301,379,0): 140, 131, 134, (301,380,0): 140, 129, 133, (301,381,0): 138, 128, 129, (301,382,0): 136, 126, 127, (301,383,0): 136, 124, 126, (301,384,0): 134, 117, 123, (301,385,0): 133, 113, 122, (301,386,0): 127, 110, 120, (301,387,0): 124, 108, 118, (301,388,0): 121, 108, 118, (301,389,0): 120, 106, 119, (301,390,0): 118, 106, 118, (301,391,0): 115, 105, 116, (301,392,0): 112, 102, 111, (301,393,0): 111, 100, 108, (301,394,0): 109, 96, 105, (301,395,0): 106, 94, 98, (301,396,0): 104, 89, 94, (301,397,0): 103, 87, 90, (301,398,0): 103, 84, 86, (301,399,0): 103, 85, 85, (301,400,0): 96, 78, 78, (301,401,0): 92, 74, 74, (301,402,0): 88, 70, 70, (301,403,0): 87, 67, 68, (301,404,0): 88, 66, 68, (301,405,0): 88, 66, 68, (301,406,0): 88, 63, 66, (301,407,0): 86, 61, 64, (301,408,0): 88, 63, 66, (301,409,0): 86, 61, 64, (301,410,0): 86, 60, 63, (301,411,0): 84, 58, 61, (301,412,0): 83, 57, 60, (301,413,0): 82, 56, 59, (301,414,0): 82, 56, 59, (301,415,0): 81, 56, 59, (301,416,0): 80, 55, 58, (301,417,0): 78, 56, 58, (301,418,0): 78, 56, 58, (301,419,0): 78, 56, 58, (301,420,0): 77, 56, 55, (301,421,0): 77, 56, 55, (301,422,0): 77, 56, 55, (301,423,0): 77, 56, 55, (301,424,0): 71, 50, 47, (301,425,0): 74, 53, 50, (301,426,0): 77, 56, 51, (301,427,0): 77, 56, 51, (301,428,0): 77, 56, 51, (301,429,0): 77, 56, 51, (301,430,0): 80, 60, 53, (301,431,0): 83, 63, 54, (301,432,0): 84, 66, 54, (301,433,0): 89, 71, 57, (301,434,0): 96, 77, 63, (301,435,0): 103, 81, 67, (301,436,0): 108, 85, 69, (301,437,0): 115, 89, 72, (301,438,0): 122, 95, 76, (301,439,0): 128, 100, 79, (301,440,0): 132, 101, 81, (301,441,0): 140, 107, 88, (301,442,0): 140, 103, 85, (301,443,0): 142, 103, 86, (301,444,0): 159, 116, 100, (301,445,0): 170, 122, 110, (301,446,0): 174, 124, 113, (301,447,0): 190, 129, 124, (301,448,0): 209, 133, 133, (301,449,0): 226, 144, 146, (301,450,0): 231, 151, 152, (301,451,0): 222, 148, 147, (301,452,0): 213, 145, 144, (301,453,0): 200, 140, 140, (301,454,0): 178, 129, 132, (301,455,0): 156, 121, 125, (301,456,0): 142, 119, 127, (301,457,0): 132, 119, 129, (301,458,0): 123, 116, 132, (301,459,0): 116, 113, 130, (301,460,0): 114, 111, 130, (301,461,0): 115, 112, 131, (301,462,0): 120, 113, 131, (301,463,0): 122, 114, 135, (301,464,0): 114, 104, 128, (301,465,0): 114, 106, 130, (301,466,0): 115, 105, 132, (301,467,0): 115, 105, 132, (301,468,0): 117, 106, 136, (301,469,0): 127, 113, 139, (301,470,0): 140, 122, 146, (301,471,0): 149, 130, 149, (301,472,0): 150, 130, 142, (301,473,0): 157, 138, 144, (301,474,0): 165, 149, 150, (301,475,0): 170, 159, 155, (301,476,0): 169, 166, 161, (301,477,0): 165, 168, 161, (301,478,0): 159, 169, 161, (301,479,0): 157, 169, 165, (301,480,0): 160, 171, 173, (301,481,0): 157, 170, 176, (301,482,0): 156, 170, 179, (301,483,0): 155, 173, 183, (301,484,0): 156, 178, 191, (301,485,0): 161, 184, 200, (301,486,0): 164, 191, 210, (301,487,0): 168, 195, 216, (301,488,0): 173, 200, 221, (301,489,0): 171, 196, 216, (301,490,0): 172, 193, 212, (301,491,0): 176, 193, 209, (301,492,0): 182, 195, 211, (301,493,0): 189, 199, 211, (301,494,0): 192, 200, 211, (301,495,0): 192, 201, 210, (301,496,0): 195, 203, 214, (301,497,0): 193, 206, 215, (301,498,0): 193, 207, 218, (301,499,0): 189, 207, 219, (301,500,0): 186, 205, 219, (301,501,0): 183, 206, 222, (301,502,0): 182, 209, 226, (301,503,0): 181, 212, 232, (301,504,0): 182, 214, 235, (301,505,0): 180, 214, 239, (301,506,0): 180, 214, 241, (301,507,0): 180, 214, 242, (301,508,0): 183, 214, 245, (301,509,0): 185, 215, 249, (301,510,0): 186, 216, 250, (301,511,0): 187, 217, 253, (301,512,0): 183, 215, 254, (301,513,0): 179, 211, 252, (301,514,0): 175, 208, 251, (301,515,0): 174, 207, 250, (301,516,0): 175, 209, 255, (301,517,0): 177, 211, 255, (301,518,0): 173, 209, 255, (301,519,0): 170, 208, 255, (301,520,0): 164, 202, 249, (301,521,0): 159, 200, 246, (301,522,0): 155, 198, 241, (301,523,0): 155, 198, 240, (301,524,0): 159, 204, 245, (301,525,0): 164, 209, 248, (301,526,0): 165, 213, 249, (301,527,0): 166, 214, 252, (301,528,0): 167, 216, 255, (301,529,0): 166, 213, 255, (301,530,0): 168, 208, 255, (301,531,0): 171, 203, 254, (301,532,0): 167, 190, 244, (301,533,0): 152, 165, 220, (301,534,0): 130, 133, 186, (301,535,0): 114, 111, 158, (301,536,0): 102, 94, 133, (301,537,0): 101, 88, 118, (301,538,0): 93, 78, 101, (301,539,0): 85, 68, 86, (301,540,0): 79, 61, 75, (301,541,0): 75, 55, 67, (301,542,0): 72, 52, 63, (301,543,0): 71, 51, 62, (301,544,0): 68, 47, 56, (301,545,0): 67, 44, 54, (301,546,0): 66, 43, 53, (301,547,0): 69, 43, 54, (301,548,0): 73, 47, 58, (301,549,0): 81, 54, 63, (301,550,0): 89, 62, 71, (301,551,0): 94, 67, 76, (301,552,0): 93, 68, 74, (301,553,0): 93, 70, 76, (301,554,0): 91, 70, 75, (301,555,0): 86, 67, 69, (301,556,0): 78, 64, 64, (301,557,0): 75, 63, 63, (301,558,0): 77, 67, 65, (301,559,0): 82, 72, 71, (301,560,0): 92, 80, 84, (301,561,0): 91, 78, 85, (301,562,0): 89, 76, 83, (301,563,0): 88, 75, 84, (301,564,0): 88, 75, 85, (301,565,0): 88, 74, 87, (301,566,0): 88, 76, 88, (301,567,0): 89, 77, 89, (301,568,0): 92, 81, 95, (301,569,0): 90, 80, 91, (301,570,0): 83, 75, 86, (301,571,0): 76, 71, 78, (301,572,0): 69, 67, 72, (301,573,0): 68, 66, 69, (301,574,0): 72, 70, 73, (301,575,0): 75, 73, 76, (301,576,0): 70, 65, 71, (301,577,0): 69, 62, 69, (301,578,0): 64, 57, 64, (301,579,0): 57, 50, 57, (301,580,0): 52, 43, 48, (301,581,0): 48, 39, 44, (301,582,0): 48, 39, 42, (301,583,0): 49, 40, 43, (301,584,0): 52, 41, 45, (301,585,0): 54, 43, 47, (301,586,0): 57, 45, 47, (301,587,0): 58, 46, 48, (301,588,0): 58, 46, 46, (301,589,0): 57, 45, 45, (301,590,0): 57, 43, 43, (301,591,0): 55, 41, 41, (301,592,0): 58, 42, 43, (301,593,0): 56, 40, 41, (301,594,0): 54, 38, 39, (301,595,0): 54, 38, 39, (301,596,0): 56, 40, 41, (301,597,0): 56, 40, 41, (301,598,0): 54, 38, 39, (301,599,0): 52, 36, 37, (302,0,0): 54, 48, 50, (302,1,0): 54, 48, 50, (302,2,0): 54, 48, 50, (302,3,0): 54, 48, 50, (302,4,0): 56, 47, 50, (302,5,0): 56, 47, 50, (302,6,0): 56, 47, 50, (302,7,0): 56, 47, 50, (302,8,0): 57, 46, 50, (302,9,0): 57, 46, 50, (302,10,0): 59, 47, 51, (302,11,0): 59, 47, 51, (302,12,0): 60, 48, 52, (302,13,0): 60, 48, 52, (302,14,0): 63, 48, 53, (302,15,0): 63, 48, 53, (302,16,0): 60, 48, 52, (302,17,0): 59, 47, 51, (302,18,0): 59, 47, 51, (302,19,0): 59, 47, 51, (302,20,0): 60, 45, 50, (302,21,0): 61, 44, 50, (302,22,0): 62, 43, 49, (302,23,0): 62, 43, 49, (302,24,0): 66, 45, 52, (302,25,0): 66, 45, 52, (302,26,0): 66, 43, 51, (302,27,0): 66, 43, 51, (302,28,0): 70, 44, 53, (302,29,0): 71, 45, 54, (302,30,0): 74, 47, 56, (302,31,0): 77, 47, 55, (302,32,0): 86, 51, 55, (302,33,0): 87, 51, 53, (302,34,0): 88, 52, 54, (302,35,0): 89, 53, 55, (302,36,0): 92, 53, 54, (302,37,0): 93, 54, 55, (302,38,0): 94, 56, 55, (302,39,0): 94, 56, 53, (302,40,0): 97, 58, 53, (302,41,0): 98, 59, 54, (302,42,0): 99, 58, 52, (302,43,0): 99, 59, 51, (302,44,0): 100, 60, 52, (302,45,0): 100, 60, 50, (302,46,0): 103, 60, 51, (302,47,0): 103, 60, 51, (302,48,0): 110, 67, 58, (302,49,0): 111, 68, 59, (302,50,0): 115, 68, 58, (302,51,0): 117, 71, 58, (302,52,0): 121, 71, 60, (302,53,0): 123, 74, 59, (302,54,0): 128, 75, 59, (302,55,0): 128, 76, 55, (302,56,0): 134, 79, 58, (302,57,0): 135, 81, 55, (302,58,0): 134, 83, 54, (302,59,0): 136, 86, 53, (302,60,0): 138, 89, 56, (302,61,0): 140, 92, 56, (302,62,0): 139, 94, 55, (302,63,0): 140, 95, 56, (302,64,0): 145, 95, 58, (302,65,0): 145, 95, 58, (302,66,0): 145, 96, 56, (302,67,0): 146, 97, 57, (302,68,0): 146, 98, 58, (302,69,0): 146, 98, 58, (302,70,0): 147, 100, 58, (302,71,0): 147, 100, 58, (302,72,0): 149, 105, 60, (302,73,0): 148, 104, 59, (302,74,0): 147, 104, 59, (302,75,0): 145, 102, 57, (302,76,0): 144, 102, 54, (302,77,0): 143, 101, 53, (302,78,0): 141, 101, 52, (302,79,0): 140, 99, 53, (302,80,0): 146, 103, 61, (302,81,0): 146, 102, 63, (302,82,0): 145, 103, 63, (302,83,0): 145, 103, 63, (302,84,0): 145, 103, 63, (302,85,0): 145, 103, 63, (302,86,0): 143, 104, 63, (302,87,0): 143, 104, 63, (302,88,0): 145, 108, 66, (302,89,0): 146, 109, 67, (302,90,0): 147, 110, 68, (302,91,0): 150, 113, 71, (302,92,0): 150, 115, 73, (302,93,0): 152, 117, 75, (302,94,0): 154, 119, 77, (302,95,0): 155, 121, 75, (302,96,0): 159, 126, 72, (302,97,0): 160, 128, 69, (302,98,0): 162, 130, 71, (302,99,0): 166, 134, 73, (302,100,0): 169, 138, 74, (302,101,0): 172, 141, 76, (302,102,0): 176, 143, 76, (302,103,0): 178, 145, 74, (302,104,0): 183, 149, 77, (302,105,0): 185, 151, 77, (302,106,0): 190, 154, 76, (302,107,0): 193, 158, 77, (302,108,0): 195, 160, 78, (302,109,0): 196, 161, 77, (302,110,0): 196, 161, 77, (302,111,0): 197, 162, 78, (302,112,0): 196, 159, 79, (302,113,0): 192, 155, 77, (302,114,0): 187, 149, 76, (302,115,0): 182, 143, 74, (302,116,0): 179, 140, 75, (302,117,0): 180, 141, 76, (302,118,0): 181, 142, 77, (302,119,0): 183, 144, 77, (302,120,0): 188, 150, 79, (302,121,0): 190, 152, 77, (302,122,0): 192, 155, 75, (302,123,0): 191, 154, 73, (302,124,0): 189, 152, 72, (302,125,0): 190, 153, 73, (302,126,0): 193, 156, 78, (302,127,0): 196, 159, 81, (302,128,0): 193, 158, 77, (302,129,0): 195, 160, 79, (302,130,0): 195, 160, 79, (302,131,0): 191, 155, 77, (302,132,0): 184, 148, 72, (302,133,0): 179, 143, 67, (302,134,0): 177, 141, 67, (302,135,0): 178, 141, 70, (302,136,0): 177, 140, 70, (302,137,0): 174, 137, 69, (302,138,0): 171, 133, 70, (302,139,0): 168, 130, 67, (302,140,0): 166, 128, 66, (302,141,0): 167, 129, 67, (302,142,0): 168, 129, 70, (302,143,0): 169, 130, 71, (302,144,0): 171, 132, 75, (302,145,0): 171, 132, 77, (302,146,0): 169, 130, 75, (302,147,0): 167, 128, 73, (302,148,0): 165, 126, 71, (302,149,0): 167, 128, 71, (302,150,0): 172, 133, 76, (302,151,0): 177, 138, 79, (302,152,0): 178, 139, 80, (302,153,0): 177, 139, 77, (302,154,0): 176, 138, 76, (302,155,0): 176, 138, 76, (302,156,0): 178, 140, 78, (302,157,0): 184, 146, 84, (302,158,0): 192, 154, 92, (302,159,0): 195, 160, 96, (302,160,0): 197, 164, 93, (302,161,0): 196, 166, 93, (302,162,0): 197, 167, 95, (302,163,0): 200, 167, 96, (302,164,0): 200, 167, 98, (302,165,0): 201, 166, 98, (302,166,0): 200, 165, 97, (302,167,0): 201, 164, 94, (302,168,0): 204, 165, 96, (302,169,0): 209, 171, 98, (302,170,0): 216, 177, 100, (302,171,0): 222, 184, 103, (302,172,0): 231, 191, 106, (302,173,0): 241, 201, 114, (302,174,0): 252, 211, 121, (302,175,0): 255, 221, 127, (302,176,0): 253, 222, 129, (302,177,0): 250, 224, 129, (302,178,0): 251, 225, 130, (302,179,0): 251, 225, 130, (302,180,0): 251, 225, 132, (302,181,0): 250, 224, 131, (302,182,0): 249, 222, 131, (302,183,0): 248, 221, 132, (302,184,0): 245, 218, 131, (302,185,0): 245, 218, 131, (302,186,0): 245, 217, 133, (302,187,0): 246, 218, 134, (302,188,0): 247, 219, 136, (302,189,0): 247, 219, 136, (302,190,0): 247, 218, 138, (302,191,0): 248, 219, 141, (302,192,0): 249, 222, 145, (302,193,0): 249, 223, 146, (302,194,0): 250, 227, 149, (302,195,0): 252, 231, 150, (302,196,0): 255, 235, 149, (302,197,0): 254, 238, 150, (302,198,0): 255, 241, 150, (302,199,0): 253, 243, 148, (302,200,0): 255, 246, 149, (302,201,0): 254, 248, 150, (302,202,0): 255, 249, 151, (302,203,0): 254, 251, 154, (302,204,0): 255, 252, 155, (302,205,0): 253, 253, 157, (302,206,0): 251, 253, 156, (302,207,0): 248, 252, 157, (302,208,0): 252, 255, 162, (302,209,0): 250, 255, 163, (302,210,0): 248, 253, 161, (302,211,0): 247, 252, 160, (302,212,0): 246, 251, 159, (302,213,0): 246, 251, 159, (302,214,0): 247, 252, 160, (302,215,0): 248, 253, 161, (302,216,0): 248, 253, 161, (302,217,0): 248, 253, 161, (302,218,0): 248, 253, 161, (302,219,0): 249, 254, 162, (302,220,0): 249, 254, 162, (302,221,0): 250, 255, 163, (302,222,0): 250, 255, 163, (302,223,0): 250, 255, 165, (302,224,0): 251, 255, 168, (302,225,0): 251, 255, 170, (302,226,0): 251, 255, 171, (302,227,0): 251, 255, 171, (302,228,0): 251, 255, 171, (302,229,0): 251, 255, 171, (302,230,0): 251, 254, 173, (302,231,0): 251, 254, 173, (302,232,0): 251, 254, 175, (302,233,0): 251, 254, 175, (302,234,0): 251, 254, 175, (302,235,0): 251, 254, 175, (302,236,0): 251, 254, 177, (302,237,0): 251, 254, 177, (302,238,0): 251, 254, 177, (302,239,0): 250, 254, 177, (302,240,0): 245, 255, 177, (302,241,0): 242, 255, 176, (302,242,0): 240, 254, 175, (302,243,0): 239, 253, 174, (302,244,0): 238, 252, 175, (302,245,0): 238, 252, 175, (302,246,0): 239, 253, 178, (302,247,0): 240, 253, 181, (302,248,0): 240, 253, 183, (302,249,0): 241, 254, 184, (302,250,0): 242, 255, 186, (302,251,0): 243, 255, 187, (302,252,0): 244, 255, 190, (302,253,0): 244, 255, 190, (302,254,0): 243, 255, 191, (302,255,0): 240, 254, 195, (302,256,0): 241, 255, 208, (302,257,0): 239, 255, 212, (302,258,0): 239, 254, 213, (302,259,0): 240, 252, 214, (302,260,0): 241, 251, 217, (302,261,0): 245, 251, 223, (302,262,0): 248, 252, 229, (302,263,0): 249, 252, 231, (302,264,0): 252, 255, 238, (302,265,0): 249, 253, 239, (302,266,0): 246, 252, 240, (302,267,0): 245, 253, 242, (302,268,0): 244, 255, 246, (302,269,0): 244, 255, 247, (302,270,0): 240, 255, 246, (302,271,0): 236, 254, 242, (302,272,0): 237, 255, 242, (302,273,0): 233, 255, 237, (302,274,0): 231, 254, 234, (302,275,0): 230, 253, 233, (302,276,0): 227, 250, 230, (302,277,0): 217, 241, 219, (302,278,0): 203, 225, 204, (302,279,0): 191, 213, 192, (302,280,0): 176, 198, 177, (302,281,0): 168, 187, 165, (302,282,0): 155, 174, 152, (302,283,0): 145, 164, 142, (302,284,0): 143, 161, 139, (302,285,0): 142, 160, 138, (302,286,0): 140, 158, 134, (302,287,0): 137, 156, 134, (302,288,0): 135, 159, 137, (302,289,0): 133, 161, 139, (302,290,0): 133, 161, 139, (302,291,0): 132, 157, 138, (302,292,0): 127, 152, 133, (302,293,0): 125, 149, 133, (302,294,0): 126, 149, 133, (302,295,0): 127, 151, 137, (302,296,0): 132, 158, 145, (302,297,0): 135, 163, 151, (302,298,0): 138, 168, 156, (302,299,0): 142, 174, 163, (302,300,0): 143, 179, 167, (302,301,0): 147, 185, 174, (302,302,0): 149, 189, 178, (302,303,0): 152, 192, 183, (302,304,0): 156, 191, 185, (302,305,0): 156, 188, 185, (302,306,0): 150, 184, 183, (302,307,0): 146, 180, 181, (302,308,0): 143, 177, 179, (302,309,0): 144, 179, 185, (302,310,0): 149, 186, 194, (302,311,0): 153, 191, 200, (302,312,0): 152, 192, 204, (302,313,0): 149, 191, 207, (302,314,0): 149, 192, 209, (302,315,0): 147, 194, 212, (302,316,0): 149, 195, 218, (302,317,0): 151, 199, 222, (302,318,0): 152, 202, 225, (302,319,0): 156, 204, 226, (302,320,0): 154, 197, 214, (302,321,0): 146, 183, 199, (302,322,0): 135, 166, 184, (302,323,0): 126, 153, 170, (302,324,0): 125, 148, 164, (302,325,0): 129, 148, 163, (302,326,0): 132, 150, 164, (302,327,0): 135, 151, 164, (302,328,0): 132, 149, 159, (302,329,0): 127, 144, 152, (302,330,0): 120, 135, 142, (302,331,0): 113, 124, 130, (302,332,0): 107, 112, 118, (302,333,0): 104, 104, 112, (302,334,0): 102, 99, 108, (302,335,0): 99, 98, 106, (302,336,0): 98, 101, 110, (302,337,0): 96, 100, 109, (302,338,0): 93, 97, 106, (302,339,0): 89, 93, 102, (302,340,0): 85, 88, 97, (302,341,0): 78, 81, 90, (302,342,0): 72, 75, 84, (302,343,0): 68, 71, 80, (302,344,0): 68, 68, 78, (302,345,0): 68, 68, 78, (302,346,0): 68, 66, 77, (302,347,0): 68, 66, 77, (302,348,0): 69, 67, 78, (302,349,0): 70, 68, 79, (302,350,0): 73, 70, 81, (302,351,0): 73, 71, 82, (302,352,0): 75, 78, 87, (302,353,0): 74, 78, 87, (302,354,0): 76, 80, 91, (302,355,0): 79, 83, 94, (302,356,0): 82, 88, 100, (302,357,0): 88, 94, 106, (302,358,0): 93, 99, 115, (302,359,0): 97, 103, 119, (302,360,0): 97, 104, 123, (302,361,0): 99, 106, 125, (302,362,0): 100, 108, 129, (302,363,0): 102, 110, 133, (302,364,0): 105, 112, 138, (302,365,0): 108, 115, 143, (302,366,0): 108, 118, 145, (302,367,0): 111, 118, 146, (302,368,0): 121, 123, 148, (302,369,0): 121, 121, 145, (302,370,0): 123, 121, 145, (302,371,0): 122, 120, 142, (302,372,0): 122, 119, 138, (302,373,0): 122, 119, 136, (302,374,0): 123, 119, 134, (302,375,0): 123, 120, 131, (302,376,0): 127, 121, 131, (302,377,0): 130, 123, 130, (302,378,0): 136, 127, 132, (302,379,0): 139, 130, 133, (302,380,0): 142, 132, 131, (302,381,0): 142, 132, 130, (302,382,0): 141, 130, 128, (302,383,0): 142, 128, 128, (302,384,0): 136, 119, 125, (302,385,0): 134, 114, 123, (302,386,0): 127, 110, 120, (302,387,0): 125, 109, 119, (302,388,0): 123, 110, 120, (302,389,0): 123, 110, 120, (302,390,0): 120, 108, 120, (302,391,0): 117, 105, 117, (302,392,0): 114, 102, 112, (302,393,0): 114, 103, 111, (302,394,0): 113, 100, 109, (302,395,0): 110, 98, 102, (302,396,0): 109, 94, 99, (302,397,0): 107, 91, 94, (302,398,0): 106, 87, 89, (302,399,0): 104, 86, 86, (302,400,0): 100, 82, 82, (302,401,0): 96, 78, 76, (302,402,0): 93, 73, 72, (302,403,0): 91, 71, 70, (302,404,0): 91, 70, 69, (302,405,0): 90, 69, 68, (302,406,0): 89, 65, 65, (302,407,0): 87, 61, 62, (302,408,0): 86, 60, 61, (302,409,0): 85, 59, 60, (302,410,0): 82, 56, 57, (302,411,0): 80, 54, 55, (302,412,0): 78, 52, 53, (302,413,0): 78, 52, 53, (302,414,0): 78, 52, 53, (302,415,0): 77, 53, 53, (302,416,0): 78, 53, 56, (302,417,0): 76, 54, 56, (302,418,0): 76, 54, 56, (302,419,0): 76, 54, 56, (302,420,0): 77, 56, 55, (302,421,0): 77, 56, 55, (302,422,0): 77, 56, 55, (302,423,0): 77, 56, 55, (302,424,0): 75, 54, 51, (302,425,0): 78, 57, 54, (302,426,0): 81, 60, 55, (302,427,0): 82, 61, 56, (302,428,0): 81, 60, 55, (302,429,0): 82, 61, 56, (302,430,0): 85, 65, 58, (302,431,0): 87, 69, 59, (302,432,0): 87, 71, 58, (302,433,0): 92, 76, 61, (302,434,0): 99, 83, 68, (302,435,0): 106, 89, 73, (302,436,0): 113, 92, 73, (302,437,0): 120, 98, 77, (302,438,0): 130, 103, 82, (302,439,0): 136, 108, 86, (302,440,0): 145, 114, 93, (302,441,0): 150, 118, 97, (302,442,0): 146, 113, 94, (302,443,0): 150, 115, 96, (302,444,0): 161, 124, 108, (302,445,0): 163, 125, 112, (302,446,0): 168, 128, 118, (302,447,0): 186, 139, 131, (302,448,0): 205, 145, 137, (302,449,0): 217, 154, 147, (302,450,0): 213, 163, 154, (302,451,0): 200, 160, 150, (302,452,0): 185, 151, 142, (302,453,0): 174, 143, 138, (302,454,0): 166, 134, 137, (302,455,0): 156, 126, 134, (302,456,0): 147, 121, 134, (302,457,0): 137, 119, 135, (302,458,0): 123, 114, 131, (302,459,0): 114, 111, 128, (302,460,0): 113, 110, 129, (302,461,0): 116, 111, 131, (302,462,0): 125, 113, 133, (302,463,0): 129, 117, 139, (302,464,0): 119, 109, 134, (302,465,0): 116, 110, 138, (302,466,0): 118, 109, 138, (302,467,0): 117, 108, 137, (302,468,0): 121, 110, 142, (302,469,0): 132, 119, 147, (302,470,0): 145, 129, 155, (302,471,0): 156, 138, 160, (302,472,0): 160, 139, 154, (302,473,0): 168, 148, 157, (302,474,0): 176, 161, 164, (302,475,0): 180, 170, 168, (302,476,0): 176, 175, 171, (302,477,0): 171, 176, 170, (302,478,0): 166, 177, 169, (302,479,0): 164, 179, 174, (302,480,0): 165, 179, 180, (302,481,0): 164, 179, 184, (302,482,0): 162, 179, 187, (302,483,0): 162, 182, 193, (302,484,0): 164, 187, 201, (302,485,0): 168, 194, 211, (302,486,0): 174, 201, 222, (302,487,0): 177, 205, 227, (302,488,0): 183, 211, 233, (302,489,0): 180, 207, 228, (302,490,0): 179, 201, 222, (302,491,0): 182, 201, 218, (302,492,0): 188, 201, 217, (302,493,0): 194, 204, 216, (302,494,0): 196, 204, 215, (302,495,0): 196, 205, 214, (302,496,0): 198, 207, 216, (302,497,0): 198, 211, 220, (302,498,0): 199, 213, 222, (302,499,0): 196, 214, 224, (302,500,0): 190, 212, 225, (302,501,0): 186, 212, 227, (302,502,0): 185, 214, 230, (302,503,0): 185, 216, 236, (302,504,0): 181, 216, 236, (302,505,0): 181, 217, 241, (302,506,0): 183, 219, 245, (302,507,0): 184, 219, 247, (302,508,0): 187, 221, 249, (302,509,0): 187, 220, 251, (302,510,0): 189, 220, 251, (302,511,0): 189, 219, 253, (302,512,0): 185, 217, 255, (302,513,0): 181, 213, 254, (302,514,0): 175, 208, 251, (302,515,0): 172, 205, 248, (302,516,0): 172, 206, 252, (302,517,0): 175, 209, 255, (302,518,0): 176, 212, 255, (302,519,0): 176, 214, 255, (302,520,0): 172, 210, 255, (302,521,0): 166, 207, 253, (302,522,0): 160, 203, 246, (302,523,0): 159, 202, 244, (302,524,0): 162, 207, 248, (302,525,0): 166, 211, 250, (302,526,0): 167, 215, 251, (302,527,0): 167, 215, 253, (302,528,0): 170, 218, 255, (302,529,0): 166, 212, 255, (302,530,0): 160, 200, 251, (302,531,0): 154, 186, 237, (302,532,0): 143, 164, 217, (302,533,0): 127, 139, 191, (302,534,0): 109, 111, 159, (302,535,0): 99, 92, 134, (302,536,0): 90, 79, 113, (302,537,0): 90, 74, 101, (302,538,0): 86, 67, 87, (302,539,0): 81, 60, 75, (302,540,0): 75, 54, 69, (302,541,0): 72, 52, 64, (302,542,0): 72, 52, 64, (302,543,0): 73, 53, 65, (302,544,0): 68, 48, 59, (302,545,0): 68, 46, 58, (302,546,0): 66, 44, 56, (302,547,0): 67, 44, 54, (302,548,0): 70, 44, 55, (302,549,0): 73, 47, 58, (302,550,0): 77, 50, 59, (302,551,0): 79, 52, 61, (302,552,0): 84, 57, 66, (302,553,0): 84, 59, 65, (302,554,0): 82, 59, 65, (302,555,0): 80, 59, 64, (302,556,0): 77, 58, 60, (302,557,0): 74, 58, 59, (302,558,0): 73, 59, 59, (302,559,0): 73, 59, 59, (302,560,0): 76, 64, 68, (302,561,0): 76, 63, 70, (302,562,0): 76, 63, 72, (302,563,0): 77, 64, 74, (302,564,0): 79, 66, 76, (302,565,0): 80, 66, 79, (302,566,0): 81, 69, 83, (302,567,0): 82, 70, 84, (302,568,0): 87, 76, 92, (302,569,0): 86, 75, 89, (302,570,0): 82, 74, 85, (302,571,0): 75, 70, 77, (302,572,0): 67, 64, 71, (302,573,0): 63, 62, 67, (302,574,0): 65, 65, 67, (302,575,0): 67, 67, 69, (302,576,0): 62, 57, 63, (302,577,0): 63, 56, 63, (302,578,0): 60, 53, 60, (302,579,0): 54, 47, 54, (302,580,0): 49, 40, 45, (302,581,0): 46, 37, 42, (302,582,0): 48, 39, 42, (302,583,0): 50, 41, 44, (302,584,0): 55, 44, 48, (302,585,0): 57, 46, 50, (302,586,0): 61, 49, 51, (302,587,0): 62, 50, 52, (302,588,0): 62, 50, 50, (302,589,0): 61, 49, 49, (302,590,0): 60, 46, 46, (302,591,0): 58, 44, 44, (302,592,0): 59, 43, 44, (302,593,0): 56, 40, 41, (302,594,0): 54, 38, 39, (302,595,0): 55, 39, 40, (302,596,0): 57, 41, 42, (302,597,0): 57, 41, 42, (302,598,0): 55, 39, 40, (302,599,0): 53, 37, 38, (303,0,0): 56, 47, 52, (303,1,0): 54, 48, 50, (303,2,0): 56, 47, 52, (303,3,0): 56, 47, 50, (303,4,0): 56, 47, 52, (303,5,0): 56, 47, 50, (303,6,0): 56, 47, 52, (303,7,0): 56, 47, 50, (303,8,0): 57, 46, 52, (303,9,0): 57, 46, 50, (303,10,0): 59, 46, 53, (303,11,0): 59, 47, 51, (303,12,0): 60, 47, 54, (303,13,0): 60, 48, 52, (303,14,0): 61, 48, 55, (303,15,0): 61, 49, 53, (303,16,0): 60, 47, 54, (303,17,0): 59, 47, 51, (303,18,0): 59, 46, 53, (303,19,0): 58, 46, 50, (303,20,0): 60, 45, 52, (303,21,0): 59, 44, 49, (303,22,0): 60, 43, 51, (303,23,0): 62, 43, 49, (303,24,0): 66, 45, 54, (303,25,0): 65, 44, 51, (303,26,0): 65, 44, 53, (303,27,0): 66, 43, 51, (303,28,0): 67, 44, 54, (303,29,0): 71, 45, 54, (303,30,0): 73, 47, 58, (303,31,0): 77, 47, 55, (303,32,0): 84, 52, 57, (303,33,0): 88, 52, 54, (303,34,0): 88, 52, 54, (303,35,0): 89, 53, 55, (303,36,0): 92, 53, 54, (303,37,0): 94, 54, 54, (303,38,0): 95, 55, 53, (303,39,0): 96, 57, 52, (303,40,0): 98, 57, 53, (303,41,0): 99, 58, 52, (303,42,0): 99, 58, 52, (303,43,0): 100, 60, 52, (303,44,0): 100, 60, 52, (303,45,0): 101, 61, 53, (303,46,0): 103, 60, 53, (303,47,0): 103, 60, 53, (303,48,0): 111, 68, 59, (303,49,0): 111, 69, 57, (303,50,0): 114, 70, 59, (303,51,0): 117, 71, 58, (303,52,0): 120, 72, 58, (303,53,0): 123, 74, 59, (303,54,0): 126, 75, 56, (303,55,0): 127, 76, 55, (303,56,0): 133, 81, 57, (303,57,0): 134, 83, 56, (303,58,0): 135, 84, 53, (303,59,0): 137, 87, 54, (303,60,0): 139, 89, 54, (303,61,0): 140, 92, 54, (303,62,0): 142, 94, 56, (303,63,0): 143, 95, 55, (303,64,0): 143, 94, 54, (303,65,0): 144, 95, 54, (303,66,0): 145, 96, 55, (303,67,0): 146, 97, 56, (303,68,0): 147, 98, 57, (303,69,0): 147, 100, 58, (303,70,0): 147, 100, 58, (303,71,0): 148, 101, 57, (303,72,0): 152, 105, 61, (303,73,0): 149, 105, 60, (303,74,0): 148, 104, 59, (303,75,0): 146, 103, 58, (303,76,0): 144, 102, 54, (303,77,0): 143, 101, 53, (303,78,0): 142, 100, 52, (303,79,0): 141, 98, 53, (303,80,0): 146, 103, 61, (303,81,0): 146, 103, 61, (303,82,0): 146, 103, 61, (303,83,0): 145, 103, 61, (303,84,0): 145, 103, 61, (303,85,0): 143, 104, 61, (303,86,0): 143, 104, 61, (303,87,0): 142, 105, 61, (303,88,0): 146, 109, 64, (303,89,0): 147, 110, 65, (303,90,0): 149, 112, 67, (303,91,0): 151, 114, 69, (303,92,0): 152, 118, 72, (303,93,0): 154, 120, 74, (303,94,0): 156, 122, 76, (303,95,0): 157, 124, 73, (303,96,0): 165, 130, 72, (303,97,0): 164, 133, 69, (303,98,0): 169, 135, 71, (303,99,0): 170, 139, 74, (303,100,0): 175, 142, 75, (303,101,0): 178, 145, 76, (303,102,0): 180, 147, 76, (303,103,0): 182, 150, 77, (303,104,0): 187, 153, 79, (303,105,0): 189, 156, 77, (303,106,0): 193, 158, 77, (303,107,0): 196, 161, 79, (303,108,0): 198, 163, 79, (303,109,0): 198, 166, 81, (303,110,0): 200, 166, 79, (303,111,0): 200, 166, 79, (303,112,0): 202, 167, 83, (303,113,0): 199, 164, 82, (303,114,0): 194, 157, 79, (303,115,0): 189, 151, 78, (303,116,0): 186, 148, 77, (303,117,0): 184, 145, 76, (303,118,0): 184, 145, 76, (303,119,0): 184, 146, 75, (303,120,0): 191, 153, 82, (303,121,0): 192, 154, 79, (303,122,0): 192, 155, 77, (303,123,0): 190, 153, 73, (303,124,0): 188, 151, 71, (303,125,0): 189, 152, 72, (303,126,0): 192, 155, 75, (303,127,0): 196, 159, 79, (303,128,0): 196, 159, 78, (303,129,0): 198, 161, 80, (303,130,0): 198, 161, 80, (303,131,0): 194, 157, 77, (303,132,0): 187, 150, 72, (303,133,0): 182, 144, 69, (303,134,0): 181, 143, 70, (303,135,0): 182, 144, 73, (303,136,0): 180, 141, 74, (303,137,0): 176, 138, 73, (303,138,0): 172, 134, 71, (303,139,0): 168, 130, 67, (303,140,0): 167, 129, 66, (303,141,0): 167, 129, 67, (303,142,0): 168, 130, 68, (303,143,0): 169, 130, 71, (303,144,0): 168, 132, 74, (303,145,0): 168, 132, 74, (303,146,0): 167, 130, 75, (303,147,0): 164, 128, 70, (303,148,0): 163, 127, 69, (303,149,0): 165, 129, 71, (303,150,0): 170, 134, 76, (303,151,0): 175, 139, 79, (303,152,0): 178, 142, 82, (303,153,0): 175, 139, 77, (303,154,0): 171, 135, 73, (303,155,0): 172, 137, 73, (303,156,0): 176, 140, 78, (303,157,0): 185, 150, 86, (303,158,0): 193, 158, 94, (303,159,0): 197, 164, 97, (303,160,0): 201, 168, 97, (303,161,0): 200, 170, 97, (303,162,0): 200, 170, 97, (303,163,0): 201, 171, 99, (303,164,0): 203, 170, 99, (303,165,0): 202, 169, 98, (303,166,0): 201, 167, 95, (303,167,0): 201, 167, 93, (303,168,0): 203, 167, 93, (303,169,0): 211, 174, 96, (303,170,0): 221, 184, 103, (303,171,0): 231, 193, 108, (303,172,0): 240, 203, 115, (303,173,0): 250, 211, 120, (303,174,0): 255, 219, 126, (303,175,0): 255, 226, 132, (303,176,0): 255, 224, 131, (303,177,0): 254, 225, 131, (303,178,0): 254, 225, 133, (303,179,0): 254, 225, 133, (303,180,0): 253, 224, 132, (303,181,0): 251, 221, 131, (303,182,0): 248, 218, 130, (303,183,0): 243, 216, 129, (303,184,0): 245, 215, 129, (303,185,0): 243, 215, 131, (303,186,0): 244, 216, 132, (303,187,0): 244, 216, 133, (303,188,0): 245, 217, 134, (303,189,0): 245, 216, 136, (303,190,0): 246, 217, 137, (303,191,0): 245, 218, 139, (303,192,0): 246, 220, 143, (303,193,0): 246, 223, 145, (303,194,0): 250, 227, 149, (303,195,0): 253, 232, 151, (303,196,0): 255, 235, 152, (303,197,0): 255, 238, 152, (303,198,0): 255, 239, 151, (303,199,0): 254, 240, 151, (303,200,0): 255, 244, 152, (303,201,0): 255, 246, 151, (303,202,0): 255, 247, 154, (303,203,0): 255, 249, 155, (303,204,0): 255, 250, 156, (303,205,0): 254, 251, 156, (303,206,0): 253, 250, 157, (303,207,0): 250, 249, 156, (303,208,0): 253, 254, 161, (303,209,0): 252, 252, 162, (303,210,0): 251, 251, 161, (303,211,0): 248, 251, 160, (303,212,0): 247, 250, 159, (303,213,0): 247, 250, 159, (303,214,0): 248, 251, 160, (303,215,0): 249, 252, 161, (303,216,0): 249, 252, 161, (303,217,0): 248, 253, 161, (303,218,0): 248, 253, 161, (303,219,0): 249, 254, 162, (303,220,0): 249, 254, 164, (303,221,0): 250, 255, 165, (303,222,0): 250, 255, 165, (303,223,0): 250, 255, 165, (303,224,0): 250, 255, 170, (303,225,0): 250, 255, 171, (303,226,0): 250, 255, 171, (303,227,0): 250, 255, 173, (303,228,0): 250, 255, 173, (303,229,0): 250, 255, 173, (303,230,0): 250, 255, 173, (303,231,0): 250, 255, 175, (303,232,0): 250, 255, 175, (303,233,0): 250, 254, 177, (303,234,0): 250, 254, 177, (303,235,0): 250, 254, 177, (303,236,0): 250, 254, 177, (303,237,0): 250, 254, 178, (303,238,0): 250, 254, 178, (303,239,0): 248, 255, 178, (303,240,0): 243, 255, 177, (303,241,0): 241, 255, 176, (303,242,0): 240, 254, 175, (303,243,0): 239, 253, 176, (303,244,0): 238, 252, 175, (303,245,0): 238, 252, 177, (303,246,0): 237, 253, 180, (303,247,0): 238, 254, 183, (303,248,0): 237, 252, 183, (303,249,0): 238, 253, 186, (303,250,0): 239, 254, 189, (303,251,0): 239, 255, 190, (303,252,0): 240, 255, 193, (303,253,0): 240, 255, 193, (303,254,0): 239, 255, 193, (303,255,0): 236, 254, 196, (303,256,0): 240, 255, 210, (303,257,0): 238, 255, 214, (303,258,0): 237, 253, 214, (303,259,0): 237, 251, 215, (303,260,0): 239, 250, 218, (303,261,0): 240, 250, 223, (303,262,0): 243, 251, 228, (303,263,0): 246, 250, 233, (303,264,0): 252, 255, 244, (303,265,0): 248, 254, 244, (303,266,0): 247, 252, 245, (303,267,0): 247, 254, 247, (303,268,0): 247, 255, 253, (303,269,0): 246, 255, 253, (303,270,0): 242, 254, 252, (303,271,0): 237, 252, 247, (303,272,0): 235, 255, 245, (303,273,0): 232, 255, 240, (303,274,0): 231, 255, 239, (303,275,0): 234, 255, 241, (303,276,0): 234, 255, 241, (303,277,0): 227, 250, 232, (303,278,0): 214, 235, 218, (303,279,0): 202, 223, 204, (303,280,0): 179, 198, 179, (303,281,0): 166, 185, 166, (303,282,0): 151, 168, 149, (303,283,0): 141, 158, 139, (303,284,0): 139, 156, 137, (303,285,0): 139, 157, 135, (303,286,0): 139, 154, 133, (303,287,0): 133, 152, 130, (303,288,0): 129, 153, 131, (303,289,0): 128, 156, 134, (303,290,0): 131, 156, 135, (303,291,0): 129, 154, 135, (303,292,0): 125, 150, 131, (303,293,0): 122, 146, 130, (303,294,0): 122, 146, 130, (303,295,0): 123, 147, 133, (303,296,0): 133, 159, 146, (303,297,0): 137, 165, 153, (303,298,0): 140, 172, 161, (303,299,0): 142, 175, 166, (303,300,0): 141, 176, 169, (303,301,0): 140, 180, 172, (303,302,0): 144, 185, 177, (303,303,0): 148, 189, 183, (303,304,0): 153, 189, 187, (303,305,0): 152, 186, 187, (303,306,0): 146, 181, 183, (303,307,0): 140, 175, 177, (303,308,0): 138, 173, 179, (303,309,0): 141, 175, 184, (303,310,0): 146, 183, 192, (303,311,0): 151, 189, 200, (303,312,0): 146, 185, 200, (303,313,0): 144, 186, 202, (303,314,0): 143, 186, 203, (303,315,0): 142, 187, 206, (303,316,0): 145, 190, 211, (303,317,0): 148, 194, 217, (303,318,0): 150, 198, 221, (303,319,0): 154, 201, 221, (303,320,0): 154, 192, 211, (303,321,0): 147, 180, 197, (303,322,0): 135, 164, 180, (303,323,0): 126, 152, 167, (303,324,0): 125, 147, 161, (303,325,0): 128, 147, 161, (303,326,0): 132, 148, 161, (303,327,0): 136, 150, 161, (303,328,0): 133, 147, 158, (303,329,0): 127, 141, 150, (303,330,0): 120, 133, 142, (303,331,0): 112, 122, 131, (303,332,0): 106, 113, 121, (303,333,0): 103, 106, 115, (303,334,0): 102, 102, 110, (303,335,0): 101, 101, 109, (303,336,0): 101, 101, 109, (303,337,0): 97, 100, 107, (303,338,0): 94, 97, 106, (303,339,0): 89, 92, 99, (303,340,0): 84, 84, 94, (303,341,0): 77, 77, 85, (303,342,0): 71, 71, 81, (303,343,0): 67, 67, 75, (303,344,0): 64, 64, 74, (303,345,0): 65, 64, 72, (303,346,0): 65, 63, 74, (303,347,0): 65, 64, 72, (303,348,0): 67, 65, 76, (303,349,0): 69, 68, 76, (303,350,0): 72, 69, 80, (303,351,0): 72, 70, 81, (303,352,0): 76, 79, 88, (303,353,0): 76, 80, 89, (303,354,0): 77, 81, 92, (303,355,0): 80, 84, 95, (303,356,0): 82, 88, 100, (303,357,0): 88, 94, 108, (303,358,0): 94, 100, 116, (303,359,0): 96, 103, 121, (303,360,0): 98, 105, 124, (303,361,0): 99, 105, 127, (303,362,0): 100, 108, 131, (303,363,0): 102, 110, 133, (303,364,0): 105, 112, 138, (303,365,0): 107, 114, 140, (303,366,0): 107, 117, 144, (303,367,0): 110, 117, 143, (303,368,0): 117, 119, 144, (303,369,0): 118, 118, 142, (303,370,0): 121, 119, 143, (303,371,0): 121, 119, 141, (303,372,0): 121, 118, 137, (303,373,0): 120, 117, 134, (303,374,0): 120, 116, 130, (303,375,0): 119, 116, 127, (303,376,0): 123, 118, 125, (303,377,0): 127, 120, 127, (303,378,0): 134, 125, 130, (303,379,0): 139, 130, 131, (303,380,0): 143, 133, 132, (303,381,0): 144, 134, 132, (303,382,0): 144, 133, 129, (303,383,0): 145, 131, 130, (303,384,0): 136, 120, 123, (303,385,0): 134, 115, 121, (303,386,0): 130, 110, 119, (303,387,0): 126, 109, 117, (303,388,0): 126, 110, 120, (303,389,0): 124, 111, 120, (303,390,0): 122, 109, 119, (303,391,0): 119, 106, 116, (303,392,0): 116, 103, 113, (303,393,0): 116, 103, 112, (303,394,0): 115, 102, 109, (303,395,0): 116, 101, 106, (303,396,0): 112, 97, 102, (303,397,0): 109, 93, 96, (303,398,0): 105, 89, 90, (303,399,0): 104, 86, 86, (303,400,0): 104, 86, 86, (303,401,0): 101, 83, 81, (303,402,0): 97, 77, 76, (303,403,0): 94, 74, 73, (303,404,0): 94, 73, 72, (303,405,0): 92, 71, 70, (303,406,0): 91, 67, 67, (303,407,0): 89, 63, 64, (303,408,0): 85, 59, 60, (303,409,0): 83, 57, 58, (303,410,0): 80, 54, 55, (303,411,0): 77, 51, 52, (303,412,0): 75, 49, 50, (303,413,0): 74, 48, 49, (303,414,0): 74, 48, 49, (303,415,0): 75, 49, 50, (303,416,0): 77, 52, 55, (303,417,0): 75, 53, 55, (303,418,0): 75, 53, 55, (303,419,0): 76, 54, 56, (303,420,0): 76, 55, 54, (303,421,0): 76, 55, 54, (303,422,0): 76, 55, 54, (303,423,0): 76, 55, 54, (303,424,0): 78, 59, 55, (303,425,0): 81, 62, 58, (303,426,0): 84, 65, 59, (303,427,0): 85, 66, 60, (303,428,0): 84, 65, 59, (303,429,0): 85, 66, 60, (303,430,0): 88, 69, 62, (303,431,0): 90, 73, 65, (303,432,0): 88, 76, 62, (303,433,0): 93, 81, 65, (303,434,0): 100, 89, 71, (303,435,0): 107, 94, 75, (303,436,0): 115, 98, 78, (303,437,0): 122, 104, 80, (303,438,0): 132, 110, 86, (303,439,0): 139, 115, 89, (303,440,0): 148, 122, 99, (303,441,0): 151, 125, 102, (303,442,0): 151, 123, 102, (303,443,0): 154, 125, 107, (303,444,0): 159, 130, 114, (303,445,0): 153, 124, 110, (303,446,0): 152, 122, 112, (303,447,0): 169, 135, 125, (303,448,0): 192, 149, 140, (303,449,0): 199, 157, 145, (303,450,0): 195, 166, 152, (303,451,0): 180, 161, 147, (303,452,0): 164, 150, 141, (303,453,0): 158, 143, 140, (303,454,0): 158, 139, 143, (303,455,0): 155, 133, 145, (303,456,0): 144, 123, 140, (303,457,0): 136, 119, 138, (303,458,0): 123, 114, 135, (303,459,0): 114, 109, 129, (303,460,0): 111, 108, 129, (303,461,0): 116, 111, 133, (303,462,0): 126, 114, 138, (303,463,0): 132, 118, 144, (303,464,0): 122, 113, 142, (303,465,0): 120, 113, 144, (303,466,0): 121, 111, 145, (303,467,0): 121, 111, 145, (303,468,0): 125, 114, 148, (303,469,0): 136, 123, 153, (303,470,0): 149, 135, 161, (303,471,0): 159, 144, 167, (303,472,0): 164, 147, 163, (303,473,0): 173, 157, 167, (303,474,0): 181, 170, 174, (303,475,0): 185, 179, 179, (303,476,0): 182, 184, 181, (303,477,0): 175, 184, 181, (303,478,0): 173, 185, 181, (303,479,0): 171, 185, 185, (303,480,0): 171, 184, 190, (303,481,0): 169, 183, 192, (303,482,0): 168, 184, 197, (303,483,0): 168, 187, 201, (303,484,0): 170, 193, 211, (303,485,0): 174, 201, 222, (303,486,0): 180, 208, 230, (303,487,0): 184, 212, 236, (303,488,0): 192, 220, 244, (303,489,0): 188, 214, 237, (303,490,0): 185, 207, 228, (303,491,0): 187, 206, 223, (303,492,0): 193, 206, 222, (303,493,0): 199, 209, 221, (303,494,0): 201, 207, 219, (303,495,0): 200, 207, 215, (303,496,0): 199, 210, 216, (303,497,0): 200, 215, 220, (303,498,0): 201, 220, 226, (303,499,0): 200, 220, 229, (303,500,0): 194, 217, 231, (303,501,0): 189, 216, 233, (303,502,0): 188, 217, 235, (303,503,0): 186, 218, 239, (303,504,0): 181, 216, 238, (303,505,0): 182, 218, 242, (303,506,0): 184, 221, 247, (303,507,0): 186, 223, 249, (303,508,0): 188, 225, 252, (303,509,0): 188, 225, 254, (303,510,0): 189, 222, 255, (303,511,0): 188, 221, 255, (303,512,0): 185, 219, 255, (303,513,0): 181, 214, 255, (303,514,0): 174, 209, 251, (303,515,0): 170, 205, 247, (303,516,0): 168, 205, 249, (303,517,0): 172, 209, 253, (303,518,0): 178, 215, 255, (303,519,0): 181, 219, 255, (303,520,0): 176, 217, 255, (303,521,0): 170, 213, 255, (303,522,0): 165, 208, 251, (303,523,0): 162, 207, 249, (303,524,0): 163, 211, 251, (303,525,0): 167, 215, 255, (303,526,0): 168, 217, 255, (303,527,0): 169, 218, 255, (303,528,0): 171, 218, 255, (303,529,0): 164, 206, 255, (303,530,0): 154, 187, 238, (303,531,0): 138, 164, 213, (303,532,0): 123, 139, 188, (303,533,0): 108, 115, 161, (303,534,0): 95, 93, 133, (303,535,0): 90, 80, 114, (303,536,0): 85, 71, 97, (303,537,0): 85, 68, 87, (303,538,0): 83, 62, 77, (303,539,0): 77, 57, 68, (303,540,0): 73, 53, 64, (303,541,0): 72, 52, 63, (303,542,0): 73, 53, 65, (303,543,0): 75, 55, 67, (303,544,0): 73, 53, 62, (303,545,0): 72, 53, 59, (303,546,0): 71, 50, 59, (303,547,0): 70, 49, 56, (303,548,0): 70, 47, 55, (303,549,0): 70, 44, 53, (303,550,0): 71, 44, 51, (303,551,0): 70, 43, 50, (303,552,0): 76, 49, 56, (303,553,0): 77, 50, 57, (303,554,0): 77, 52, 56, (303,555,0): 78, 53, 57, (303,556,0): 77, 55, 58, (303,557,0): 75, 53, 55, (303,558,0): 72, 52, 54, (303,559,0): 68, 49, 51, (303,560,0): 63, 46, 52, (303,561,0): 62, 46, 56, (303,562,0): 64, 48, 58, (303,563,0): 67, 51, 62, (303,564,0): 68, 55, 65, (303,565,0): 71, 57, 70, (303,566,0): 73, 61, 75, (303,567,0): 73, 62, 76, (303,568,0): 84, 73, 87, (303,569,0): 83, 75, 88, (303,570,0): 80, 74, 84, (303,571,0): 74, 69, 76, (303,572,0): 65, 62, 69, (303,573,0): 60, 58, 63, (303,574,0): 59, 58, 63, (303,575,0): 61, 59, 62, (303,576,0): 55, 49, 53, (303,577,0): 56, 50, 54, (303,578,0): 56, 47, 52, (303,579,0): 52, 43, 48, (303,580,0): 46, 37, 40, (303,581,0): 45, 36, 39, (303,582,0): 48, 39, 42, (303,583,0): 52, 42, 43, (303,584,0): 57, 46, 50, (303,585,0): 60, 48, 50, (303,586,0): 63, 51, 53, (303,587,0): 65, 53, 55, (303,588,0): 67, 53, 53, (303,589,0): 65, 51, 51, (303,590,0): 62, 48, 48, (303,591,0): 60, 46, 46, (303,592,0): 59, 43, 44, (303,593,0): 56, 40, 41, (303,594,0): 55, 39, 40, (303,595,0): 55, 39, 40, (303,596,0): 57, 41, 42, (303,597,0): 58, 42, 43, (303,598,0): 56, 40, 41, (303,599,0): 54, 38, 39, (304,0,0): 58, 47, 55, (304,1,0): 57, 48, 53, (304,2,0): 58, 47, 55, (304,3,0): 58, 47, 53, (304,4,0): 58, 47, 55, (304,5,0): 58, 47, 53, (304,6,0): 58, 47, 55, (304,7,0): 58, 47, 53, (304,8,0): 58, 47, 55, (304,9,0): 58, 47, 53, (304,10,0): 58, 47, 55, (304,11,0): 58, 47, 53, (304,12,0): 58, 47, 55, (304,13,0): 58, 47, 53, (304,14,0): 58, 47, 55, (304,15,0): 59, 46, 53, (304,16,0): 60, 47, 56, (304,17,0): 60, 47, 54, (304,18,0): 62, 46, 56, (304,19,0): 62, 47, 54, (304,20,0): 62, 46, 56, (304,21,0): 62, 47, 54, (304,22,0): 63, 46, 56, (304,23,0): 63, 46, 54, (304,24,0): 66, 46, 57, (304,25,0): 66, 46, 55, (304,26,0): 65, 45, 56, (304,27,0): 67, 46, 55, (304,28,0): 68, 46, 58, (304,29,0): 70, 47, 57, (304,30,0): 72, 48, 61, (304,31,0): 75, 49, 58, (304,32,0): 80, 48, 53, (304,33,0): 83, 48, 52, (304,34,0): 85, 49, 51, (304,35,0): 89, 50, 51, (304,36,0): 93, 53, 53, (304,37,0): 96, 55, 53, (304,38,0): 99, 55, 52, (304,39,0): 100, 57, 51, (304,40,0): 103, 58, 53, (304,41,0): 103, 58, 53, (304,42,0): 104, 59, 54, (304,43,0): 103, 60, 54, (304,44,0): 104, 61, 55, (304,45,0): 104, 61, 55, (304,46,0): 103, 62, 58, (304,47,0): 103, 62, 56, (304,48,0): 107, 64, 55, (304,49,0): 108, 66, 54, (304,50,0): 110, 68, 54, (304,51,0): 114, 71, 55, (304,52,0): 119, 73, 57, (304,53,0): 122, 75, 57, (304,54,0): 124, 78, 55, (304,55,0): 126, 78, 55, (304,56,0): 132, 82, 55, (304,57,0): 133, 84, 54, (304,58,0): 135, 84, 53, (304,59,0): 137, 87, 54, (304,60,0): 138, 88, 51, (304,61,0): 142, 90, 51, (304,62,0): 143, 91, 52, (304,63,0): 144, 92, 52, (304,64,0): 148, 97, 52, (304,65,0): 148, 97, 52, (304,66,0): 148, 97, 52, (304,67,0): 146, 98, 52, (304,68,0): 146, 98, 52, (304,69,0): 146, 98, 52, (304,70,0): 146, 98, 52, (304,71,0): 145, 98, 52, (304,72,0): 145, 98, 52, (304,73,0): 144, 100, 53, (304,74,0): 146, 102, 57, (304,75,0): 147, 103, 58, (304,76,0): 148, 104, 59, (304,77,0): 146, 103, 58, (304,78,0): 146, 103, 58, (304,79,0): 145, 102, 57, (304,80,0): 148, 103, 61, (304,81,0): 147, 102, 60, (304,82,0): 145, 102, 57, (304,83,0): 144, 103, 57, (304,84,0): 145, 105, 56, (304,85,0): 145, 107, 58, (304,86,0): 146, 110, 60, (304,87,0): 146, 113, 62, (304,88,0): 149, 116, 63, (304,89,0): 148, 115, 62, (304,90,0): 149, 116, 63, (304,91,0): 150, 117, 64, (304,92,0): 155, 120, 66, (304,93,0): 159, 124, 70, (304,94,0): 163, 128, 72, (304,95,0): 166, 132, 71, (304,96,0): 172, 137, 71, (304,97,0): 172, 139, 68, (304,98,0): 176, 142, 71, (304,99,0): 178, 146, 73, (304,100,0): 182, 148, 76, (304,101,0): 183, 149, 75, (304,102,0): 184, 150, 76, (304,103,0): 184, 151, 74, (304,104,0): 191, 158, 79, (304,105,0): 191, 158, 77, (304,106,0): 192, 160, 77, (304,107,0): 194, 162, 77, (304,108,0): 197, 165, 80, (304,109,0): 199, 169, 81, (304,110,0): 203, 171, 84, (304,111,0): 205, 174, 84, (304,112,0): 200, 169, 78, (304,113,0): 200, 169, 78, (304,114,0): 201, 167, 78, (304,115,0): 196, 161, 77, (304,116,0): 189, 154, 73, (304,117,0): 186, 150, 72, (304,118,0): 187, 151, 77, (304,119,0): 189, 153, 79, (304,120,0): 195, 157, 84, (304,121,0): 193, 155, 82, (304,122,0): 191, 152, 77, (304,123,0): 188, 149, 74, (304,124,0): 188, 149, 72, (304,125,0): 189, 150, 71, (304,126,0): 191, 152, 73, (304,127,0): 195, 154, 74, (304,128,0): 203, 162, 80, (304,129,0): 202, 162, 77, (304,130,0): 199, 158, 76, (304,131,0): 196, 155, 75, (304,132,0): 193, 151, 75, (304,133,0): 190, 148, 74, (304,134,0): 185, 145, 73, (304,135,0): 184, 144, 74, (304,136,0): 183, 142, 76, (304,137,0): 181, 142, 77, (304,138,0): 180, 140, 78, (304,139,0): 178, 138, 76, (304,140,0): 176, 136, 74, (304,141,0): 173, 133, 71, (304,142,0): 172, 132, 70, (304,143,0): 170, 132, 69, (304,144,0): 164, 130, 69, (304,145,0): 163, 131, 70, (304,146,0): 163, 131, 72, (304,147,0): 164, 132, 71, (304,148,0): 164, 132, 71, (304,149,0): 163, 131, 70, (304,150,0): 163, 131, 70, (304,151,0): 162, 131, 67, (304,152,0): 165, 134, 70, (304,153,0): 165, 134, 69, (304,154,0): 166, 135, 70, (304,155,0): 170, 139, 72, (304,156,0): 176, 145, 80, (304,157,0): 184, 153, 86, (304,158,0): 191, 160, 93, (304,159,0): 196, 166, 96, (304,160,0): 199, 169, 97, (304,161,0): 201, 171, 98, (304,162,0): 202, 172, 99, (304,163,0): 200, 171, 95, (304,164,0): 200, 168, 93, (304,165,0): 199, 167, 90, (304,166,0): 202, 169, 90, (304,167,0): 205, 173, 90, (304,168,0): 212, 180, 97, (304,169,0): 219, 185, 98, (304,170,0): 229, 195, 106, (304,171,0): 240, 205, 113, (304,172,0): 249, 214, 120, (304,173,0): 255, 219, 123, (304,174,0): 255, 222, 125, (304,175,0): 255, 224, 127, (304,176,0): 255, 222, 129, (304,177,0): 255, 222, 132, (304,178,0): 255, 223, 134, (304,179,0): 255, 222, 133, (304,180,0): 253, 222, 132, (304,181,0): 250, 218, 131, (304,182,0): 247, 215, 128, (304,183,0): 244, 214, 128, (304,184,0): 244, 212, 129, (304,185,0): 242, 211, 129, (304,186,0): 241, 210, 128, (304,187,0): 241, 210, 130, (304,188,0): 240, 211, 131, (304,189,0): 242, 213, 135, (304,190,0): 245, 216, 138, (304,191,0): 245, 218, 139, (304,192,0): 250, 224, 147, (304,193,0): 250, 227, 147, (304,194,0): 252, 229, 149, (304,195,0): 254, 233, 152, (304,196,0): 255, 235, 154, (304,197,0): 255, 237, 153, (304,198,0): 255, 237, 153, (304,199,0): 254, 238, 153, (304,200,0): 255, 239, 154, (304,201,0): 255, 241, 153, (304,202,0): 255, 240, 155, (304,203,0): 254, 242, 156, (304,204,0): 255, 244, 158, (304,205,0): 255, 246, 159, (304,206,0): 255, 246, 159, (304,207,0): 255, 247, 160, (304,208,0): 255, 248, 158, (304,209,0): 254, 249, 158, (304,210,0): 254, 249, 158, (304,211,0): 253, 249, 158, (304,212,0): 253, 249, 160, (304,213,0): 254, 250, 161, (304,214,0): 252, 251, 161, (304,215,0): 252, 251, 161, (304,216,0): 253, 253, 165, (304,217,0): 251, 254, 165, (304,218,0): 251, 254, 165, (304,219,0): 250, 253, 164, (304,220,0): 249, 253, 166, (304,221,0): 248, 252, 165, (304,222,0): 247, 253, 165, (304,223,0): 247, 253, 167, (304,224,0): 248, 255, 173, (304,225,0): 248, 255, 173, (304,226,0): 248, 255, 173, (304,227,0): 248, 255, 175, (304,228,0): 248, 255, 175, (304,229,0): 248, 255, 175, (304,230,0): 248, 255, 175, (304,231,0): 248, 255, 177, (304,232,0): 247, 254, 176, (304,233,0): 247, 254, 177, (304,234,0): 246, 254, 177, (304,235,0): 245, 253, 176, (304,236,0): 245, 253, 176, (304,237,0): 244, 252, 177, (304,238,0): 244, 252, 177, (304,239,0): 242, 253, 177, (304,240,0): 242, 254, 178, (304,241,0): 241, 255, 178, (304,242,0): 241, 255, 178, (304,243,0): 241, 255, 180, (304,244,0): 239, 255, 182, (304,245,0): 239, 255, 184, (304,246,0): 238, 255, 185, (304,247,0): 238, 255, 187, (304,248,0): 233, 252, 188, (304,249,0): 233, 251, 189, (304,250,0): 233, 253, 192, (304,251,0): 232, 253, 194, (304,252,0): 233, 254, 197, (304,253,0): 233, 254, 198, (304,254,0): 234, 254, 201, (304,255,0): 234, 254, 201, (304,256,0): 232, 255, 203, (304,257,0): 232, 254, 207, (304,258,0): 235, 254, 209, (304,259,0): 235, 253, 213, (304,260,0): 237, 253, 217, (304,261,0): 237, 252, 223, (304,262,0): 238, 252, 227, (304,263,0): 239, 250, 233, (304,264,0): 245, 255, 244, (304,265,0): 245, 255, 247, (304,266,0): 246, 255, 250, (304,267,0): 246, 255, 252, (304,268,0): 246, 254, 255, (304,269,0): 245, 253, 255, (304,270,0): 242, 252, 254, (304,271,0): 238, 252, 252, (304,272,0): 235, 255, 249, (304,273,0): 229, 255, 244, (304,274,0): 228, 254, 243, (304,275,0): 233, 255, 244, (304,276,0): 235, 255, 246, (304,277,0): 232, 255, 242, (304,278,0): 222, 245, 229, (304,279,0): 213, 236, 218, (304,280,0): 180, 201, 182, (304,281,0): 159, 180, 161, (304,282,0): 144, 163, 143, (304,283,0): 144, 163, 141, (304,284,0): 150, 168, 146, (304,285,0): 147, 165, 141, (304,286,0): 140, 158, 134, (304,287,0): 135, 155, 130, (304,288,0): 131, 155, 133, (304,289,0): 127, 152, 131, (304,290,0): 124, 147, 127, (304,291,0): 123, 146, 126, (304,292,0): 123, 146, 126, (304,293,0): 123, 146, 128, (304,294,0): 121, 144, 126, (304,295,0): 117, 141, 125, (304,296,0): 126, 152, 139, (304,297,0): 129, 157, 145, (304,298,0): 133, 164, 156, (304,299,0): 138, 173, 166, (304,300,0): 143, 179, 175, (304,301,0): 147, 186, 183, (304,302,0): 151, 191, 190, (304,303,0): 152, 194, 193, (304,304,0): 155, 195, 195, (304,305,0): 144, 184, 184, (304,306,0): 137, 177, 179, (304,307,0): 139, 178, 183, (304,308,0): 143, 182, 187, (304,309,0): 144, 183, 190, (304,310,0): 148, 186, 195, (304,311,0): 152, 192, 202, (304,312,0): 155, 195, 207, (304,313,0): 154, 193, 208, (304,314,0): 150, 192, 206, (304,315,0): 148, 190, 206, (304,316,0): 147, 188, 206, (304,317,0): 148, 189, 207, (304,318,0): 148, 191, 210, (304,319,0): 152, 190, 211, (304,320,0): 153, 186, 205, (304,321,0): 146, 175, 193, (304,322,0): 134, 160, 175, (304,323,0): 126, 150, 162, (304,324,0): 126, 146, 155, (304,325,0): 129, 148, 155, (304,326,0): 136, 150, 159, (304,327,0): 139, 152, 160, (304,328,0): 134, 144, 154, (304,329,0): 128, 138, 148, (304,330,0): 119, 129, 139, (304,331,0): 110, 118, 129, (304,332,0): 103, 111, 122, (304,333,0): 99, 108, 117, (304,334,0): 99, 106, 114, (304,335,0): 101, 106, 112, (304,336,0): 103, 103, 111, (304,337,0): 102, 101, 107, (304,338,0): 96, 95, 103, (304,339,0): 88, 87, 93, (304,340,0): 79, 78, 86, (304,341,0): 71, 70, 76, (304,342,0): 65, 64, 72, (304,343,0): 62, 61, 67, (304,344,0): 60, 59, 67, (304,345,0): 62, 59, 66, (304,346,0): 63, 60, 69, (304,347,0): 63, 60, 67, (304,348,0): 63, 60, 69, (304,349,0): 67, 64, 71, (304,350,0): 73, 70, 79, (304,351,0): 77, 76, 84, (304,352,0): 71, 74, 81, (304,353,0): 75, 80, 86, (304,354,0): 78, 85, 93, (304,355,0): 82, 89, 99, (304,356,0): 85, 91, 103, (304,357,0): 89, 95, 109, (304,358,0): 93, 100, 118, (304,359,0): 97, 104, 123, (304,360,0): 97, 104, 123, (304,361,0): 97, 105, 126, (304,362,0): 100, 108, 131, (304,363,0): 104, 112, 135, (304,364,0): 105, 116, 138, (304,365,0): 106, 117, 139, (304,366,0): 107, 118, 138, (304,367,0): 109, 117, 138, (304,368,0): 116, 118, 139, (304,369,0): 118, 119, 139, (304,370,0): 119, 120, 140, (304,371,0): 119, 120, 138, (304,372,0): 120, 119, 135, (304,373,0): 120, 118, 132, (304,374,0): 119, 116, 127, (304,375,0): 118, 115, 124, (304,376,0): 123, 118, 125, (304,377,0): 125, 119, 123, (304,378,0): 129, 120, 123, (304,379,0): 132, 123, 124, (304,380,0): 136, 126, 125, (304,381,0): 138, 128, 126, (304,382,0): 140, 131, 126, (304,383,0): 142, 131, 127, (304,384,0): 147, 128, 130, (304,385,0): 141, 122, 124, (304,386,0): 134, 115, 117, (304,387,0): 132, 113, 117, (304,388,0): 131, 114, 120, (304,389,0): 130, 113, 119, (304,390,0): 124, 107, 115, (304,391,0): 116, 101, 108, (304,392,0): 119, 104, 111, (304,393,0): 120, 105, 112, (304,394,0): 121, 106, 113, (304,395,0): 122, 107, 112, (304,396,0): 120, 105, 110, (304,397,0): 117, 102, 107, (304,398,0): 113, 98, 101, (304,399,0): 111, 95, 98, (304,400,0): 110, 92, 92, (304,401,0): 106, 86, 87, (304,402,0): 100, 80, 81, (304,403,0): 98, 78, 79, (304,404,0): 99, 79, 80, (304,405,0): 97, 75, 77, (304,406,0): 89, 67, 69, (304,407,0): 84, 59, 62, (304,408,0): 80, 55, 58, (304,409,0): 79, 54, 57, (304,410,0): 77, 52, 55, (304,411,0): 74, 49, 52, (304,412,0): 74, 48, 51, (304,413,0): 73, 47, 50, (304,414,0): 73, 47, 50, (304,415,0): 73, 47, 50, (304,416,0): 74, 47, 52, (304,417,0): 73, 48, 52, (304,418,0): 75, 50, 53, (304,419,0): 76, 51, 54, (304,420,0): 76, 54, 56, (304,421,0): 77, 55, 57, (304,422,0): 77, 57, 56, (304,423,0): 78, 58, 57, (304,424,0): 80, 62, 58, (304,425,0): 83, 65, 61, (304,426,0): 85, 70, 65, (304,427,0): 88, 73, 68, (304,428,0): 89, 76, 68, (304,429,0): 89, 76, 68, (304,430,0): 88, 75, 67, (304,431,0): 84, 74, 64, (304,432,0): 87, 81, 67, (304,433,0): 90, 84, 68, (304,434,0): 95, 90, 71, (304,435,0): 101, 95, 73, (304,436,0): 111, 101, 76, (304,437,0): 122, 110, 84, (304,438,0): 137, 122, 93, (304,439,0): 146, 129, 99, (304,440,0): 155, 138, 110, (304,441,0): 155, 135, 108, (304,442,0): 153, 133, 108, (304,443,0): 154, 133, 112, (304,444,0): 155, 136, 119, (304,445,0): 157, 138, 124, (304,446,0): 156, 136, 127, (304,447,0): 154, 134, 125, (304,448,0): 166, 144, 133, (304,449,0): 171, 151, 140, (304,450,0): 176, 159, 149, (304,451,0): 175, 162, 154, (304,452,0): 168, 158, 156, (304,453,0): 159, 150, 151, (304,454,0): 154, 144, 152, (304,455,0): 151, 140, 154, (304,456,0): 135, 126, 143, (304,457,0): 129, 121, 142, (304,458,0): 123, 115, 139, (304,459,0): 118, 112, 138, (304,460,0): 118, 112, 140, (304,461,0): 122, 113, 142, (304,462,0): 123, 112, 142, (304,463,0): 123, 112, 142, (304,464,0): 127, 117, 151, (304,465,0): 125, 115, 149, (304,466,0): 128, 116, 152, (304,467,0): 134, 120, 156, (304,468,0): 136, 120, 157, (304,469,0): 139, 124, 157, (304,470,0): 153, 137, 166, (304,471,0): 168, 153, 176, (304,472,0): 172, 159, 176, (304,473,0): 183, 173, 184, (304,474,0): 193, 188, 194, (304,475,0): 193, 194, 196, (304,476,0): 186, 191, 194, (304,477,0): 178, 190, 190, (304,478,0): 176, 192, 192, (304,479,0): 179, 194, 199, (304,480,0): 182, 195, 204, (304,481,0): 181, 193, 207, (304,482,0): 177, 193, 209, (304,483,0): 176, 194, 214, (304,484,0): 177, 199, 222, (304,485,0): 181, 207, 232, (304,486,0): 187, 214, 241, (304,487,0): 189, 219, 247, (304,488,0): 194, 221, 248, (304,489,0): 195, 221, 246, (304,490,0): 197, 219, 242, (304,491,0): 200, 218, 238, (304,492,0): 204, 217, 233, (304,493,0): 208, 216, 229, (304,494,0): 212, 216, 227, (304,495,0): 210, 217, 223, (304,496,0): 202, 216, 217, (304,497,0): 197, 217, 216, (304,498,0): 195, 219, 223, (304,499,0): 195, 222, 231, (304,500,0): 196, 225, 239, (304,501,0): 194, 225, 245, (304,502,0): 194, 222, 246, (304,503,0): 189, 219, 245, (304,504,0): 185, 217, 242, (304,505,0): 185, 222, 248, (304,506,0): 186, 228, 252, (304,507,0): 183, 229, 253, (304,508,0): 180, 226, 252, (304,509,0): 179, 223, 252, (304,510,0): 183, 222, 255, (304,511,0): 186, 221, 255, (304,512,0): 184, 221, 255, (304,513,0): 178, 217, 255, (304,514,0): 172, 211, 252, (304,515,0): 172, 211, 252, (304,516,0): 176, 215, 255, (304,517,0): 177, 219, 255, (304,518,0): 178, 220, 255, (304,519,0): 175, 219, 255, (304,520,0): 176, 219, 255, (304,521,0): 176, 221, 255, (304,522,0): 172, 219, 255, (304,523,0): 164, 213, 254, (304,524,0): 155, 206, 249, (304,525,0): 156, 207, 250, (304,526,0): 163, 216, 255, (304,527,0): 172, 223, 255, (304,528,0): 170, 214, 255, (304,529,0): 172, 208, 255, (304,530,0): 159, 186, 233, (304,531,0): 133, 150, 194, (304,532,0): 111, 119, 158, (304,533,0): 100, 99, 133, (304,534,0): 93, 84, 113, (304,535,0): 88, 74, 97, (304,536,0): 81, 64, 80, (304,537,0): 81, 64, 74, (304,538,0): 79, 62, 68, (304,539,0): 76, 59, 65, (304,540,0): 73, 56, 62, (304,541,0): 70, 53, 59, (304,542,0): 68, 51, 59, (304,543,0): 69, 49, 58, (304,544,0): 68, 49, 53, (304,545,0): 69, 49, 50, (304,546,0): 68, 48, 50, (304,547,0): 67, 47, 48, (304,548,0): 67, 45, 47, (304,549,0): 68, 43, 46, (304,550,0): 68, 42, 45, (304,551,0): 68, 42, 45, (304,552,0): 70, 41, 45, (304,553,0): 71, 42, 46, (304,554,0): 74, 45, 49, (304,555,0): 77, 48, 52, (304,556,0): 79, 50, 54, (304,557,0): 79, 50, 52, (304,558,0): 80, 49, 54, (304,559,0): 76, 49, 54, (304,560,0): 64, 41, 49, (304,561,0): 61, 41, 52, (304,562,0): 61, 41, 52, (304,563,0): 60, 43, 53, (304,564,0): 62, 46, 56, (304,565,0): 66, 53, 63, (304,566,0): 71, 59, 69, (304,567,0): 73, 63, 72, (304,568,0): 75, 68, 76, (304,569,0): 74, 69, 76, (304,570,0): 73, 68, 75, (304,571,0): 68, 63, 69, (304,572,0): 61, 56, 62, (304,573,0): 57, 52, 58, (304,574,0): 57, 52, 58, (304,575,0): 59, 53, 57, (304,576,0): 60, 51, 54, (304,577,0): 58, 49, 50, (304,578,0): 57, 47, 48, (304,579,0): 54, 44, 45, (304,580,0): 52, 42, 43, (304,581,0): 50, 40, 41, (304,582,0): 50, 40, 41, (304,583,0): 51, 39, 39, (304,584,0): 64, 52, 54, (304,585,0): 69, 55, 55, (304,586,0): 72, 58, 58, (304,587,0): 72, 58, 58, (304,588,0): 69, 53, 54, (304,589,0): 66, 50, 51, (304,590,0): 64, 48, 49, (304,591,0): 65, 49, 50, (304,592,0): 61, 47, 47, (304,593,0): 60, 46, 46, (304,594,0): 57, 43, 43, (304,595,0): 55, 41, 41, (304,596,0): 55, 41, 41, (304,597,0): 55, 41, 41, (304,598,0): 56, 42, 42, (304,599,0): 57, 43, 43, (305,0,0): 58, 47, 55, (305,1,0): 58, 47, 55, (305,2,0): 58, 47, 55, (305,3,0): 58, 47, 55, (305,4,0): 58, 47, 55, (305,5,0): 58, 47, 55, (305,6,0): 58, 47, 55, (305,7,0): 58, 47, 55, (305,8,0): 58, 47, 55, (305,9,0): 58, 47, 55, (305,10,0): 58, 47, 55, (305,11,0): 58, 47, 55, (305,12,0): 58, 47, 55, (305,13,0): 58, 47, 55, (305,14,0): 58, 47, 55, (305,15,0): 58, 47, 55, (305,16,0): 60, 47, 56, (305,17,0): 60, 47, 56, (305,18,0): 62, 46, 56, (305,19,0): 62, 46, 56, (305,20,0): 62, 46, 56, (305,21,0): 62, 46, 56, (305,22,0): 63, 46, 56, (305,23,0): 63, 46, 56, (305,24,0): 66, 46, 57, (305,25,0): 65, 45, 56, (305,26,0): 65, 45, 56, (305,27,0): 65, 45, 56, (305,28,0): 67, 45, 57, (305,29,0): 69, 47, 59, (305,30,0): 71, 49, 61, (305,31,0): 75, 49, 60, (305,32,0): 79, 48, 54, (305,33,0): 83, 48, 52, (305,34,0): 85, 49, 51, (305,35,0): 89, 50, 51, (305,36,0): 93, 53, 53, (305,37,0): 96, 55, 53, (305,38,0): 99, 55, 52, (305,39,0): 101, 56, 51, (305,40,0): 105, 58, 52, (305,41,0): 106, 59, 53, (305,42,0): 104, 59, 54, (305,43,0): 105, 60, 55, (305,44,0): 105, 60, 57, (305,45,0): 105, 61, 58, (305,46,0): 105, 61, 60, (305,47,0): 103, 62, 58, (305,48,0): 107, 64, 55, (305,49,0): 108, 66, 52, (305,50,0): 110, 68, 54, (305,51,0): 114, 71, 54, (305,52,0): 119, 73, 57, (305,53,0): 121, 76, 55, (305,54,0): 124, 78, 55, (305,55,0): 125, 79, 53, (305,56,0): 131, 84, 56, (305,57,0): 134, 85, 53, (305,58,0): 136, 85, 54, (305,59,0): 138, 88, 53, (305,60,0): 141, 89, 52, (305,61,0): 143, 91, 52, (305,62,0): 145, 92, 52, (305,63,0): 146, 93, 51, (305,64,0): 148, 97, 50, (305,65,0): 148, 97, 50, (305,66,0): 148, 97, 50, (305,67,0): 148, 97, 50, (305,68,0): 146, 98, 50, (305,69,0): 146, 98, 50, (305,70,0): 146, 98, 52, (305,71,0): 146, 98, 52, (305,72,0): 146, 99, 53, (305,73,0): 147, 100, 54, (305,74,0): 146, 102, 57, (305,75,0): 147, 103, 58, (305,76,0): 148, 104, 59, (305,77,0): 148, 104, 59, (305,78,0): 146, 103, 58, (305,79,0): 146, 102, 57, (305,80,0): 150, 103, 59, (305,81,0): 147, 103, 58, (305,82,0): 147, 103, 56, (305,83,0): 146, 106, 57, (305,84,0): 147, 107, 56, (305,85,0): 147, 111, 59, (305,86,0): 149, 113, 61, (305,87,0): 149, 116, 62, (305,88,0): 150, 119, 62, (305,89,0): 151, 120, 63, (305,90,0): 152, 120, 61, (305,91,0): 154, 122, 63, (305,92,0): 160, 125, 67, (305,93,0): 163, 129, 68, (305,94,0): 168, 132, 72, (305,95,0): 170, 135, 71, (305,96,0): 173, 139, 67, (305,97,0): 175, 142, 65, (305,98,0): 178, 144, 70, (305,99,0): 182, 149, 72, (305,100,0): 185, 152, 75, (305,101,0): 188, 155, 76, (305,102,0): 189, 156, 77, (305,103,0): 190, 157, 76, (305,104,0): 196, 164, 81, (305,105,0): 196, 164, 79, (305,106,0): 195, 163, 78, (305,107,0): 196, 164, 77, (305,108,0): 196, 166, 78, (305,109,0): 198, 168, 80, (305,110,0): 200, 170, 82, (305,111,0): 201, 172, 80, (305,112,0): 201, 171, 75, (305,113,0): 201, 171, 75, (305,114,0): 201, 170, 77, (305,115,0): 196, 165, 75, (305,116,0): 192, 157, 73, (305,117,0): 188, 153, 71, (305,118,0): 187, 151, 73, (305,119,0): 188, 152, 76, (305,120,0): 194, 156, 83, (305,121,0): 192, 154, 81, (305,122,0): 191, 151, 79, (305,123,0): 189, 150, 75, (305,124,0): 189, 150, 73, (305,125,0): 191, 152, 75, (305,126,0): 196, 155, 76, (305,127,0): 197, 156, 76, (305,128,0): 204, 162, 78, (305,129,0): 203, 161, 75, (305,130,0): 200, 158, 76, (305,131,0): 197, 154, 75, (305,132,0): 194, 151, 73, (305,133,0): 190, 148, 74, (305,134,0): 187, 145, 73, (305,135,0): 186, 143, 75, (305,136,0): 183, 142, 76, (305,137,0): 183, 142, 78, (305,138,0): 180, 140, 78, (305,139,0): 178, 138, 76, (305,140,0): 176, 137, 72, (305,141,0): 174, 135, 70, (305,142,0): 172, 133, 68, (305,143,0): 170, 132, 69, (305,144,0): 163, 132, 68, (305,145,0): 162, 132, 70, (305,146,0): 162, 132, 70, (305,147,0): 163, 133, 71, (305,148,0): 163, 133, 69, (305,149,0): 162, 132, 68, (305,150,0): 162, 132, 68, (305,151,0): 162, 132, 68, (305,152,0): 165, 136, 70, (305,153,0): 165, 136, 70, (305,154,0): 166, 137, 69, (305,155,0): 169, 140, 72, (305,156,0): 175, 146, 78, (305,157,0): 183, 154, 86, (305,158,0): 191, 162, 92, (305,159,0): 195, 166, 96, (305,160,0): 199, 169, 97, (305,161,0): 201, 171, 98, (305,162,0): 202, 173, 97, (305,163,0): 201, 172, 94, (305,164,0): 201, 169, 92, (305,165,0): 201, 170, 88, (305,166,0): 204, 172, 89, (305,167,0): 207, 175, 90, (305,168,0): 217, 185, 98, (305,169,0): 222, 191, 100, (305,170,0): 232, 199, 106, (305,171,0): 242, 209, 114, (305,172,0): 250, 216, 119, (305,173,0): 255, 221, 123, (305,174,0): 255, 223, 125, (305,175,0): 255, 224, 127, (305,176,0): 255, 222, 132, (305,177,0): 255, 221, 133, (305,178,0): 255, 221, 133, (305,179,0): 255, 221, 133, (305,180,0): 254, 220, 133, (305,181,0): 252, 218, 131, (305,182,0): 247, 215, 130, (305,183,0): 245, 213, 128, (305,184,0): 244, 212, 129, (305,185,0): 243, 210, 129, (305,186,0): 242, 211, 131, (305,187,0): 242, 211, 131, (305,188,0): 241, 212, 134, (305,189,0): 243, 214, 136, (305,190,0): 245, 216, 140, (305,191,0): 245, 218, 141, (305,192,0): 250, 225, 145, (305,193,0): 249, 226, 146, (305,194,0): 252, 229, 149, (305,195,0): 253, 232, 151, (305,196,0): 255, 234, 153, (305,197,0): 255, 235, 154, (305,198,0): 255, 235, 154, (305,199,0): 254, 236, 154, (305,200,0): 255, 237, 155, (305,201,0): 254, 237, 155, (305,202,0): 255, 238, 156, (305,203,0): 255, 239, 157, (305,204,0): 255, 240, 158, (305,205,0): 255, 242, 159, (305,206,0): 255, 243, 160, (305,207,0): 255, 243, 158, (305,208,0): 255, 244, 158, (305,209,0): 255, 245, 156, (305,210,0): 254, 247, 157, (305,211,0): 254, 247, 157, (305,212,0): 253, 247, 159, (305,213,0): 254, 248, 160, (305,214,0): 253, 249, 160, (305,215,0): 251, 250, 160, (305,216,0): 254, 252, 165, (305,217,0): 253, 253, 165, (305,218,0): 251, 254, 167, (305,219,0): 250, 253, 166, (305,220,0): 249, 253, 166, (305,221,0): 248, 252, 165, (305,222,0): 247, 253, 167, (305,223,0): 247, 252, 168, (305,224,0): 248, 255, 173, (305,225,0): 247, 255, 175, (305,226,0): 247, 255, 175, (305,227,0): 247, 255, 175, (305,228,0): 247, 255, 177, (305,229,0): 247, 255, 177, (305,230,0): 247, 255, 177, (305,231,0): 247, 255, 177, (305,232,0): 246, 254, 177, (305,233,0): 246, 254, 177, (305,234,0): 244, 255, 179, (305,235,0): 243, 254, 178, (305,236,0): 243, 254, 178, (305,237,0): 242, 253, 177, (305,238,0): 242, 252, 179, (305,239,0): 241, 253, 179, (305,240,0): 242, 254, 178, (305,241,0): 241, 255, 178, (305,242,0): 241, 255, 180, (305,243,0): 239, 255, 182, (305,244,0): 239, 255, 184, (305,245,0): 238, 255, 185, (305,246,0): 236, 255, 189, (305,247,0): 236, 255, 191, (305,248,0): 232, 252, 191, (305,249,0): 231, 252, 193, (305,250,0): 230, 253, 197, (305,251,0): 230, 253, 199, (305,252,0): 230, 254, 202, (305,253,0): 230, 254, 202, (305,254,0): 231, 255, 205, (305,255,0): 231, 255, 205, (305,256,0): 232, 254, 205, (305,257,0): 232, 254, 205, (305,258,0): 233, 255, 209, (305,259,0): 233, 254, 211, (305,260,0): 236, 253, 217, (305,261,0): 236, 252, 223, (305,262,0): 237, 252, 229, (305,263,0): 237, 251, 234, (305,264,0): 243, 255, 245, (305,265,0): 244, 255, 249, (305,266,0): 245, 255, 252, (305,267,0): 245, 255, 254, (305,268,0): 244, 254, 255, (305,269,0): 243, 253, 255, (305,270,0): 243, 250, 255, (305,271,0): 238, 252, 253, (305,272,0): 235, 255, 254, (305,273,0): 229, 255, 249, (305,274,0): 227, 254, 247, (305,275,0): 229, 255, 247, (305,276,0): 232, 255, 248, (305,277,0): 230, 255, 243, (305,278,0): 224, 248, 234, (305,279,0): 216, 240, 224, (305,280,0): 181, 204, 186, (305,281,0): 162, 185, 165, (305,282,0): 147, 169, 148, (305,283,0): 146, 168, 145, (305,284,0): 151, 170, 148, (305,285,0): 147, 167, 142, (305,286,0): 140, 160, 135, (305,287,0): 134, 156, 133, (305,288,0): 131, 155, 133, (305,289,0): 128, 153, 132, (305,290,0): 127, 152, 131, (305,291,0): 127, 152, 131, (305,292,0): 129, 152, 132, (305,293,0): 127, 152, 133, (305,294,0): 125, 148, 130, (305,295,0): 120, 144, 128, (305,296,0): 123, 149, 136, (305,297,0): 126, 154, 142, (305,298,0): 129, 160, 152, (305,299,0): 134, 169, 163, (305,300,0): 142, 178, 176, (305,301,0): 147, 187, 187, (305,302,0): 152, 193, 195, (305,303,0): 156, 197, 199, (305,304,0): 156, 197, 199, (305,305,0): 145, 186, 190, (305,306,0): 138, 179, 183, (305,307,0): 140, 181, 187, (305,308,0): 142, 183, 189, (305,309,0): 143, 183, 191, (305,310,0): 146, 186, 194, (305,311,0): 152, 192, 202, (305,312,0): 157, 197, 209, (305,313,0): 155, 194, 209, (305,314,0): 153, 192, 207, (305,315,0): 151, 190, 207, (305,316,0): 150, 189, 206, (305,317,0): 150, 188, 207, (305,318,0): 150, 188, 207, (305,319,0): 152, 189, 208, (305,320,0): 149, 180, 200, (305,321,0): 142, 169, 188, (305,322,0): 131, 154, 168, (305,323,0): 122, 144, 155, (305,324,0): 121, 141, 148, (305,325,0): 125, 142, 149, (305,326,0): 130, 145, 150, (305,327,0): 132, 145, 151, (305,328,0): 130, 138, 149, (305,329,0): 126, 134, 145, (305,330,0): 119, 127, 140, (305,331,0): 111, 119, 132, (305,332,0): 103, 113, 123, (305,333,0): 99, 109, 118, (305,334,0): 97, 107, 116, (305,335,0): 98, 105, 111, (305,336,0): 102, 101, 109, (305,337,0): 99, 96, 103, (305,338,0): 93, 90, 97, (305,339,0): 84, 81, 88, (305,340,0): 76, 73, 80, (305,341,0): 69, 66, 73, (305,342,0): 64, 61, 68, (305,343,0): 62, 59, 66, (305,344,0): 61, 58, 65, (305,345,0): 62, 59, 66, (305,346,0): 64, 61, 68, (305,347,0): 63, 60, 67, (305,348,0): 64, 61, 68, (305,349,0): 67, 64, 71, (305,350,0): 73, 70, 77, (305,351,0): 77, 76, 82, (305,352,0): 73, 76, 83, (305,353,0): 76, 81, 87, (305,354,0): 79, 86, 94, (305,355,0): 83, 90, 100, (305,356,0): 86, 92, 106, (305,357,0): 90, 96, 112, (305,358,0): 94, 101, 120, (305,359,0): 98, 105, 124, (305,360,0): 98, 106, 127, (305,361,0): 100, 108, 129, (305,362,0): 102, 110, 133, (305,363,0): 105, 113, 136, (305,364,0): 105, 116, 138, (305,365,0): 106, 117, 137, (305,366,0): 107, 118, 138, (305,367,0): 109, 117, 136, (305,368,0): 115, 118, 137, (305,369,0): 117, 118, 138, (305,370,0): 118, 119, 137, (305,371,0): 118, 120, 135, (305,372,0): 119, 118, 134, (305,373,0): 118, 118, 130, (305,374,0): 119, 116, 127, (305,375,0): 118, 115, 124, (305,376,0): 122, 117, 124, (305,377,0): 123, 118, 122, (305,378,0): 128, 119, 122, (305,379,0): 130, 121, 122, (305,380,0): 134, 124, 123, (305,381,0): 137, 127, 125, (305,382,0): 139, 129, 127, (305,383,0): 141, 130, 126, (305,384,0): 145, 129, 129, (305,385,0): 142, 124, 124, (305,386,0): 137, 119, 119, (305,387,0): 136, 118, 118, (305,388,0): 138, 119, 121, (305,389,0): 136, 117, 121, (305,390,0): 127, 111, 114, (305,391,0): 120, 103, 109, (305,392,0): 119, 102, 108, (305,393,0): 120, 103, 109, (305,394,0): 121, 106, 111, (305,395,0): 122, 107, 110, (305,396,0): 122, 107, 112, (305,397,0): 119, 104, 107, (305,398,0): 116, 101, 106, (305,399,0): 115, 99, 102, (305,400,0): 114, 95, 97, (305,401,0): 109, 89, 90, (305,402,0): 102, 82, 83, (305,403,0): 100, 80, 81, (305,404,0): 99, 79, 80, (305,405,0): 95, 75, 76, (305,406,0): 88, 66, 68, (305,407,0): 80, 58, 60, (305,408,0): 80, 55, 58, (305,409,0): 79, 54, 57, (305,410,0): 77, 52, 55, (305,411,0): 75, 50, 53, (305,412,0): 73, 48, 51, (305,413,0): 74, 48, 51, (305,414,0): 74, 48, 51, (305,415,0): 74, 48, 51, (305,416,0): 76, 49, 54, (305,417,0): 75, 50, 54, (305,418,0): 77, 52, 55, (305,419,0): 76, 54, 56, (305,420,0): 78, 56, 58, (305,421,0): 78, 58, 57, (305,422,0): 79, 59, 58, (305,423,0): 79, 61, 59, (305,424,0): 80, 65, 60, (305,425,0): 82, 69, 63, (305,426,0): 86, 73, 67, (305,427,0): 87, 77, 68, (305,428,0): 89, 79, 70, (305,429,0): 88, 79, 70, (305,430,0): 87, 78, 69, (305,431,0): 85, 79, 67, (305,432,0): 87, 84, 69, (305,433,0): 90, 89, 71, (305,434,0): 96, 93, 74, (305,435,0): 105, 100, 78, (305,436,0): 114, 108, 82, (305,437,0): 127, 118, 89, (305,438,0): 141, 130, 100, (305,439,0): 151, 138, 106, (305,440,0): 161, 146, 115, (305,441,0): 159, 144, 113, (305,442,0): 157, 141, 115, (305,443,0): 158, 143, 120, (305,444,0): 161, 146, 127, (305,445,0): 162, 148, 135, (305,446,0): 161, 147, 138, (305,447,0): 159, 146, 137, (305,448,0): 160, 150, 140, (305,449,0): 164, 154, 144, (305,450,0): 169, 160, 151, (305,451,0): 170, 163, 157, (305,452,0): 165, 159, 159, (305,453,0): 158, 153, 157, (305,454,0): 149, 146, 155, (305,455,0): 144, 142, 155, (305,456,0): 132, 129, 148, (305,457,0): 127, 124, 145, (305,458,0): 121, 115, 141, (305,459,0): 119, 113, 141, (305,460,0): 121, 112, 143, (305,461,0): 123, 114, 145, (305,462,0): 124, 113, 145, (305,463,0): 124, 113, 145, (305,464,0): 125, 115, 150, (305,465,0): 124, 114, 149, (305,466,0): 130, 115, 154, (305,467,0): 135, 120, 159, (305,468,0): 139, 123, 160, (305,469,0): 144, 127, 163, (305,470,0): 158, 142, 171, (305,471,0): 172, 158, 181, (305,472,0): 178, 167, 184, (305,473,0): 187, 181, 191, (305,474,0): 197, 196, 202, (305,475,0): 197, 202, 205, (305,476,0): 189, 199, 201, (305,477,0): 181, 196, 199, (305,478,0): 180, 198, 202, (305,479,0): 184, 201, 209, (305,480,0): 187, 201, 214, (305,481,0): 184, 200, 216, (305,482,0): 181, 199, 219, (305,483,0): 180, 201, 222, (305,484,0): 181, 205, 229, (305,485,0): 186, 213, 240, (305,486,0): 190, 220, 248, (305,487,0): 193, 224, 252, (305,488,0): 197, 227, 255, (305,489,0): 199, 227, 251, (305,490,0): 200, 225, 247, (305,491,0): 203, 224, 243, (305,492,0): 207, 223, 238, (305,493,0): 210, 222, 234, (305,494,0): 214, 223, 232, (305,495,0): 214, 223, 228, (305,496,0): 208, 224, 223, (305,497,0): 203, 225, 223, (305,498,0): 198, 226, 229, (305,499,0): 198, 228, 236, (305,500,0): 198, 231, 246, (305,501,0): 198, 230, 251, (305,502,0): 196, 226, 252, (305,503,0): 193, 223, 249, (305,504,0): 185, 219, 246, (305,505,0): 186, 223, 249, (305,506,0): 184, 229, 252, (305,507,0): 182, 230, 253, (305,508,0): 177, 227, 254, (305,509,0): 177, 224, 254, (305,510,0): 181, 221, 255, (305,511,0): 182, 221, 255, (305,512,0): 181, 223, 255, (305,513,0): 176, 219, 255, (305,514,0): 172, 216, 255, (305,515,0): 171, 215, 254, (305,516,0): 174, 218, 255, (305,517,0): 176, 220, 255, (305,518,0): 176, 222, 255, (305,519,0): 175, 221, 255, (305,520,0): 176, 222, 255, (305,521,0): 175, 223, 255, (305,522,0): 173, 223, 255, (305,523,0): 166, 215, 255, (305,524,0): 157, 208, 251, (305,525,0): 156, 207, 252, (305,526,0): 160, 212, 255, (305,527,0): 169, 217, 255, (305,528,0): 169, 211, 255, (305,529,0): 169, 201, 248, (305,530,0): 156, 178, 225, (305,531,0): 132, 145, 187, (305,532,0): 113, 116, 151, (305,533,0): 104, 97, 128, (305,534,0): 97, 85, 107, (305,535,0): 89, 75, 90, (305,536,0): 82, 65, 75, (305,537,0): 81, 65, 68, (305,538,0): 79, 63, 66, (305,539,0): 76, 60, 61, (305,540,0): 72, 57, 60, (305,541,0): 69, 54, 57, (305,542,0): 68, 51, 59, (305,543,0): 67, 50, 56, (305,544,0): 68, 48, 49, (305,545,0): 68, 48, 47, (305,546,0): 67, 47, 46, (305,547,0): 66, 46, 45, (305,548,0): 66, 45, 44, (305,549,0): 65, 44, 43, (305,550,0): 66, 42, 42, (305,551,0): 67, 41, 42, (305,552,0): 67, 38, 40, (305,553,0): 68, 39, 41, (305,554,0): 72, 42, 44, (305,555,0): 74, 44, 46, (305,556,0): 77, 45, 48, (305,557,0): 78, 46, 49, (305,558,0): 79, 44, 48, (305,559,0): 76, 45, 51, (305,560,0): 66, 40, 49, (305,561,0): 62, 40, 52, (305,562,0): 61, 39, 51, (305,563,0): 59, 42, 52, (305,564,0): 62, 46, 56, (305,565,0): 64, 53, 61, (305,566,0): 70, 59, 67, (305,567,0): 71, 64, 71, (305,568,0): 72, 65, 72, (305,569,0): 71, 66, 72, (305,570,0): 70, 65, 71, (305,571,0): 65, 60, 66, (305,572,0): 60, 53, 60, (305,573,0): 56, 49, 56, (305,574,0): 55, 48, 55, (305,575,0): 56, 50, 54, (305,576,0): 60, 50, 51, (305,577,0): 58, 48, 47, (305,578,0): 56, 46, 45, (305,579,0): 54, 44, 43, (305,580,0): 52, 42, 41, (305,581,0): 51, 41, 40, (305,582,0): 52, 40, 40, (305,583,0): 53, 41, 41, (305,584,0): 65, 51, 51, (305,585,0): 69, 55, 55, (305,586,0): 73, 57, 58, (305,587,0): 72, 56, 57, (305,588,0): 69, 53, 54, (305,589,0): 65, 49, 50, (305,590,0): 64, 48, 49, (305,591,0): 64, 48, 49, (305,592,0): 60, 46, 46, (305,593,0): 58, 44, 44, (305,594,0): 57, 43, 43, (305,595,0): 55, 41, 41, (305,596,0): 55, 41, 41, (305,597,0): 56, 42, 42, (305,598,0): 57, 43, 43, (305,599,0): 58, 44, 44, (306,0,0): 58, 47, 55, (306,1,0): 58, 47, 55, (306,2,0): 58, 47, 55, (306,3,0): 58, 47, 55, (306,4,0): 58, 47, 55, (306,5,0): 58, 47, 55, (306,6,0): 58, 47, 55, (306,7,0): 58, 47, 55, (306,8,0): 58, 47, 55, (306,9,0): 58, 47, 55, (306,10,0): 58, 47, 55, (306,11,0): 58, 47, 55, (306,12,0): 58, 47, 55, (306,13,0): 58, 47, 55, (306,14,0): 58, 47, 55, (306,15,0): 58, 47, 55, (306,16,0): 60, 47, 56, (306,17,0): 60, 47, 56, (306,18,0): 62, 46, 56, (306,19,0): 62, 46, 56, (306,20,0): 62, 46, 56, (306,21,0): 62, 46, 56, (306,22,0): 63, 46, 56, (306,23,0): 63, 46, 56, (306,24,0): 65, 45, 56, (306,25,0): 65, 45, 56, (306,26,0): 65, 45, 56, (306,27,0): 65, 45, 56, (306,28,0): 67, 45, 57, (306,29,0): 69, 47, 59, (306,30,0): 71, 49, 61, (306,31,0): 75, 49, 60, (306,32,0): 79, 48, 54, (306,33,0): 83, 48, 52, (306,34,0): 85, 49, 51, (306,35,0): 89, 50, 51, (306,36,0): 93, 53, 53, (306,37,0): 96, 55, 53, (306,38,0): 99, 55, 52, (306,39,0): 101, 56, 51, (306,40,0): 106, 59, 53, (306,41,0): 106, 59, 53, (306,42,0): 106, 59, 53, (306,43,0): 105, 60, 54, (306,44,0): 105, 60, 55, (306,45,0): 105, 62, 56, (306,46,0): 105, 61, 58, (306,47,0): 106, 63, 57, (306,48,0): 108, 65, 56, (306,49,0): 109, 67, 53, (306,50,0): 112, 68, 55, (306,51,0): 114, 71, 54, (306,52,0): 119, 73, 57, (306,53,0): 122, 77, 56, (306,54,0): 125, 79, 56, (306,55,0): 126, 80, 54, (306,56,0): 133, 86, 58, (306,57,0): 136, 87, 55, (306,58,0): 138, 87, 56, (306,59,0): 140, 90, 55, (306,60,0): 143, 91, 54, (306,61,0): 145, 93, 54, (306,62,0): 147, 94, 54, (306,63,0): 148, 95, 53, (306,64,0): 149, 96, 52, (306,65,0): 149, 96, 52, (306,66,0): 148, 97, 52, (306,67,0): 148, 97, 52, (306,68,0): 148, 97, 52, (306,69,0): 148, 97, 52, (306,70,0): 146, 97, 54, (306,71,0): 146, 97, 54, (306,72,0): 146, 99, 55, (306,73,0): 147, 100, 56, (306,74,0): 148, 101, 57, (306,75,0): 150, 103, 59, (306,76,0): 148, 103, 61, (306,77,0): 148, 103, 61, (306,78,0): 147, 102, 60, (306,79,0): 147, 102, 60, (306,80,0): 150, 103, 59, (306,81,0): 148, 104, 59, (306,82,0): 149, 105, 60, (306,83,0): 149, 109, 60, (306,84,0): 151, 111, 60, (306,85,0): 151, 115, 63, (306,86,0): 154, 119, 65, (306,87,0): 154, 121, 67, (306,88,0): 155, 124, 67, (306,89,0): 156, 126, 66, (306,90,0): 158, 126, 65, (306,91,0): 161, 130, 66, (306,92,0): 166, 132, 69, (306,93,0): 170, 136, 72, (306,94,0): 174, 139, 75, (306,95,0): 176, 141, 73, (306,96,0): 179, 143, 69, (306,97,0): 181, 145, 67, (306,98,0): 185, 149, 73, (306,99,0): 189, 153, 75, (306,100,0): 191, 158, 79, (306,101,0): 194, 161, 80, (306,102,0): 195, 162, 81, (306,103,0): 196, 164, 81, (306,104,0): 202, 170, 87, (306,105,0): 201, 169, 84, (306,106,0): 198, 168, 82, (306,107,0): 197, 167, 79, (306,108,0): 197, 167, 79, (306,109,0): 198, 168, 78, (306,110,0): 198, 168, 78, (306,111,0): 199, 170, 78, (306,112,0): 201, 173, 76, (306,113,0): 202, 174, 77, (306,114,0): 203, 172, 79, (306,115,0): 200, 169, 78, (306,116,0): 194, 162, 75, (306,117,0): 189, 157, 74, (306,118,0): 187, 151, 73, (306,119,0): 186, 150, 72, (306,120,0): 193, 155, 80, (306,121,0): 192, 154, 79, (306,122,0): 190, 152, 77, (306,123,0): 190, 152, 77, (306,124,0): 192, 153, 76, (306,125,0): 194, 155, 78, (306,126,0): 197, 158, 79, (306,127,0): 201, 160, 80, (306,128,0): 204, 162, 78, (306,129,0): 203, 161, 75, (306,130,0): 200, 158, 76, (306,131,0): 197, 154, 75, (306,132,0): 193, 152, 73, (306,133,0): 190, 148, 74, (306,134,0): 187, 144, 75, (306,135,0): 184, 144, 75, (306,136,0): 184, 143, 77, (306,137,0): 183, 142, 78, (306,138,0): 180, 140, 78, (306,139,0): 178, 138, 76, (306,140,0): 175, 137, 74, (306,141,0): 173, 135, 72, (306,142,0): 172, 134, 69, (306,143,0): 169, 134, 70, (306,144,0): 164, 132, 71, (306,145,0): 163, 133, 73, (306,146,0): 163, 133, 71, (306,147,0): 163, 133, 71, (306,148,0): 163, 133, 71, (306,149,0): 163, 133, 71, (306,150,0): 163, 133, 69, (306,151,0): 163, 133, 69, (306,152,0): 166, 137, 71, (306,153,0): 166, 137, 71, (306,154,0): 167, 138, 72, (306,155,0): 170, 141, 75, (306,156,0): 176, 147, 79, (306,157,0): 184, 155, 87, (306,158,0): 191, 162, 94, (306,159,0): 196, 167, 97, (306,160,0): 199, 169, 97, (306,161,0): 201, 171, 98, (306,162,0): 202, 173, 97, (306,163,0): 202, 173, 95, (306,164,0): 203, 171, 94, (306,165,0): 204, 173, 91, (306,166,0): 208, 177, 94, (306,167,0): 211, 181, 95, (306,168,0): 224, 192, 105, (306,169,0): 229, 198, 107, (306,170,0): 238, 205, 112, (306,171,0): 246, 213, 118, (306,172,0): 252, 219, 122, (306,173,0): 255, 224, 125, (306,174,0): 255, 224, 126, (306,175,0): 255, 224, 127, (306,176,0): 255, 222, 132, (306,177,0): 255, 221, 133, (306,178,0): 255, 222, 133, (306,179,0): 255, 221, 132, (306,180,0): 253, 219, 132, (306,181,0): 251, 217, 130, (306,182,0): 247, 215, 130, (306,183,0): 245, 213, 128, (306,184,0): 244, 213, 130, (306,185,0): 243, 212, 129, (306,186,0): 243, 212, 130, (306,187,0): 243, 212, 130, (306,188,0): 243, 214, 134, (306,189,0): 244, 215, 135, (306,190,0): 246, 217, 139, (306,191,0): 246, 219, 140, (306,192,0): 249, 224, 144, (306,193,0): 250, 225, 145, (306,194,0): 253, 228, 148, (306,195,0): 253, 230, 150, (306,196,0): 254, 231, 151, (306,197,0): 254, 233, 152, (306,198,0): 254, 233, 152, (306,199,0): 254, 233, 152, (306,200,0): 255, 234, 153, (306,201,0): 253, 235, 153, (306,202,0): 254, 236, 154, (306,203,0): 254, 237, 155, (306,204,0): 255, 238, 156, (306,205,0): 255, 239, 157, (306,206,0): 255, 240, 158, (306,207,0): 255, 241, 156, (306,208,0): 254, 242, 156, (306,209,0): 253, 243, 154, (306,210,0): 252, 245, 157, (306,211,0): 252, 245, 157, (306,212,0): 252, 246, 158, (306,213,0): 253, 247, 159, (306,214,0): 252, 248, 161, (306,215,0): 250, 248, 161, (306,216,0): 254, 252, 167, (306,217,0): 253, 253, 167, (306,218,0): 251, 254, 167, (306,219,0): 250, 253, 166, (306,220,0): 249, 253, 168, (306,221,0): 248, 252, 167, (306,222,0): 247, 253, 167, (306,223,0): 247, 252, 168, (306,224,0): 248, 255, 173, (306,225,0): 248, 255, 175, (306,226,0): 247, 255, 175, (306,227,0): 247, 255, 175, (306,228,0): 247, 255, 177, (306,229,0): 247, 255, 177, (306,230,0): 247, 255, 177, (306,231,0): 247, 255, 177, (306,232,0): 244, 255, 177, (306,233,0): 244, 255, 177, (306,234,0): 244, 255, 179, (306,235,0): 243, 254, 178, (306,236,0): 243, 254, 178, (306,237,0): 242, 253, 177, (306,238,0): 242, 252, 179, (306,239,0): 241, 253, 179, (306,240,0): 242, 254, 180, (306,241,0): 241, 255, 180, (306,242,0): 239, 255, 182, (306,243,0): 239, 255, 182, (306,244,0): 239, 255, 184, (306,245,0): 238, 255, 185, (306,246,0): 236, 255, 189, (306,247,0): 236, 255, 191, (306,248,0): 232, 252, 191, (306,249,0): 231, 252, 193, (306,250,0): 230, 253, 197, (306,251,0): 230, 253, 199, (306,252,0): 230, 254, 202, (306,253,0): 230, 254, 204, (306,254,0): 229, 255, 207, (306,255,0): 231, 255, 205, (306,256,0): 232, 254, 205, (306,257,0): 232, 254, 205, (306,258,0): 233, 255, 209, (306,259,0): 233, 254, 213, (306,260,0): 234, 254, 219, (306,261,0): 234, 253, 223, (306,262,0): 235, 253, 229, (306,263,0): 235, 252, 234, (306,264,0): 242, 255, 245, (306,265,0): 242, 255, 248, (306,266,0): 243, 255, 251, (306,267,0): 243, 255, 253, (306,268,0): 243, 254, 255, (306,269,0): 241, 252, 254, (306,270,0): 241, 250, 255, (306,271,0): 236, 252, 252, (306,272,0): 233, 255, 254, (306,273,0): 227, 255, 251, (306,274,0): 224, 253, 248, (306,275,0): 226, 255, 248, (306,276,0): 229, 255, 249, (306,277,0): 230, 255, 246, (306,278,0): 225, 253, 239, (306,279,0): 220, 248, 233, (306,280,0): 191, 218, 203, (306,281,0): 175, 202, 185, (306,282,0): 160, 187, 168, (306,283,0): 156, 184, 162, (306,284,0): 158, 183, 161, (306,285,0): 154, 180, 155, (306,286,0): 148, 174, 149, (306,287,0): 143, 168, 146, (306,288,0): 129, 157, 135, (306,289,0): 128, 155, 136, (306,290,0): 127, 154, 135, (306,291,0): 128, 155, 136, (306,292,0): 131, 156, 137, (306,293,0): 127, 154, 135, (306,294,0): 125, 149, 133, (306,295,0): 119, 146, 131, (306,296,0): 122, 150, 136, (306,297,0): 122, 152, 142, (306,298,0): 125, 158, 151, (306,299,0): 130, 166, 162, (306,300,0): 139, 178, 177, (306,301,0): 149, 189, 189, (306,302,0): 157, 198, 200, (306,303,0): 160, 204, 207, (306,304,0): 157, 201, 204, (306,305,0): 147, 190, 196, (306,306,0): 140, 183, 189, (306,307,0): 140, 183, 190, (306,308,0): 141, 184, 191, (306,309,0): 140, 183, 192, (306,310,0): 144, 187, 196, (306,311,0): 150, 192, 204, (306,312,0): 157, 199, 213, (306,313,0): 156, 198, 214, (306,314,0): 153, 195, 211, (306,315,0): 151, 192, 210, (306,316,0): 149, 190, 208, (306,317,0): 148, 189, 209, (306,318,0): 147, 188, 208, (306,319,0): 150, 186, 208, (306,320,0): 144, 175, 196, (306,321,0): 137, 164, 183, (306,322,0): 127, 150, 166, (306,323,0): 118, 140, 153, (306,324,0): 116, 136, 143, (306,325,0): 118, 135, 142, (306,326,0): 121, 136, 141, (306,327,0): 123, 136, 142, (306,328,0): 124, 132, 143, (306,329,0): 121, 129, 140, (306,330,0): 117, 125, 138, (306,331,0): 112, 120, 133, (306,332,0): 106, 114, 125, (306,333,0): 101, 110, 119, (306,334,0): 97, 106, 115, (306,335,0): 96, 103, 109, (306,336,0): 98, 97, 105, (306,337,0): 96, 91, 98, (306,338,0): 87, 82, 89, (306,339,0): 78, 73, 80, (306,340,0): 71, 66, 73, (306,341,0): 67, 62, 69, (306,342,0): 64, 59, 66, (306,343,0): 63, 58, 65, (306,344,0): 63, 58, 65, (306,345,0): 65, 60, 67, (306,346,0): 67, 62, 69, (306,347,0): 67, 62, 69, (306,348,0): 67, 62, 69, (306,349,0): 70, 65, 72, (306,350,0): 76, 71, 78, (306,351,0): 78, 77, 83, (306,352,0): 75, 78, 85, (306,353,0): 76, 83, 91, (306,354,0): 82, 89, 99, (306,355,0): 85, 92, 102, (306,356,0): 87, 95, 108, (306,357,0): 90, 97, 113, (306,358,0): 95, 102, 121, (306,359,0): 100, 106, 128, (306,360,0): 102, 110, 133, (306,361,0): 103, 111, 134, (306,362,0): 103, 113, 138, (306,363,0): 105, 116, 138, (306,364,0): 106, 117, 139, (306,365,0): 107, 118, 138, (306,366,0): 105, 118, 137, (306,367,0): 108, 116, 135, (306,368,0): 114, 117, 136, (306,369,0): 115, 116, 136, (306,370,0): 116, 117, 135, (306,371,0): 116, 118, 133, (306,372,0): 118, 117, 133, (306,373,0): 117, 117, 129, (306,374,0): 117, 114, 125, (306,375,0): 116, 113, 122, (306,376,0): 119, 114, 121, (306,377,0): 120, 115, 119, (306,378,0): 125, 116, 119, (306,379,0): 128, 119, 120, (306,380,0): 131, 121, 120, (306,381,0): 134, 124, 122, (306,382,0): 136, 126, 124, (306,383,0): 138, 127, 125, (306,384,0): 144, 129, 126, (306,385,0): 141, 126, 123, (306,386,0): 140, 124, 124, (306,387,0): 141, 125, 125, (306,388,0): 143, 127, 127, (306,389,0): 140, 124, 125, (306,390,0): 132, 116, 117, (306,391,0): 125, 109, 112, (306,392,0): 119, 104, 107, (306,393,0): 121, 106, 109, (306,394,0): 122, 107, 110, (306,395,0): 124, 110, 110, (306,396,0): 124, 109, 112, (306,397,0): 122, 108, 108, (306,398,0): 118, 106, 108, (306,399,0): 119, 105, 105, (306,400,0): 119, 101, 101, (306,401,0): 114, 94, 95, (306,402,0): 107, 87, 88, (306,403,0): 103, 83, 84, (306,404,0): 99, 79, 80, (306,405,0): 94, 74, 75, (306,406,0): 85, 65, 66, (306,407,0): 77, 57, 58, (306,408,0): 78, 56, 58, (306,409,0): 77, 55, 57, (306,410,0): 75, 53, 55, (306,411,0): 73, 51, 53, (306,412,0): 72, 50, 52, (306,413,0): 74, 49, 52, (306,414,0): 74, 49, 52, (306,415,0): 75, 50, 53, (306,416,0): 78, 53, 56, (306,417,0): 77, 55, 57, (306,418,0): 78, 56, 58, (306,419,0): 79, 57, 59, (306,420,0): 81, 60, 59, (306,421,0): 82, 62, 61, (306,422,0): 82, 64, 62, (306,423,0): 80, 65, 60, (306,424,0): 84, 69, 64, (306,425,0): 85, 72, 66, (306,426,0): 87, 77, 68, (306,427,0): 89, 80, 71, (306,428,0): 92, 83, 74, (306,429,0): 91, 85, 73, (306,430,0): 91, 85, 73, (306,431,0): 88, 84, 72, (306,432,0): 90, 89, 71, (306,433,0): 94, 93, 73, (306,434,0): 101, 99, 78, (306,435,0): 110, 105, 83, (306,436,0): 120, 114, 88, (306,437,0): 134, 125, 96, (306,438,0): 148, 137, 105, (306,439,0): 156, 146, 111, (306,440,0): 158, 145, 111, (306,441,0): 156, 143, 109, (306,442,0): 154, 140, 111, (306,443,0): 156, 142, 116, (306,444,0): 161, 146, 127, (306,445,0): 162, 149, 133, (306,446,0): 163, 149, 140, (306,447,0): 162, 149, 140, (306,448,0): 164, 154, 144, (306,449,0): 166, 156, 146, (306,450,0): 167, 158, 149, (306,451,0): 168, 161, 155, (306,452,0): 165, 159, 159, (306,453,0): 159, 154, 158, (306,454,0): 149, 146, 155, (306,455,0): 143, 141, 154, (306,456,0): 133, 130, 147, (306,457,0): 127, 125, 146, (306,458,0): 122, 118, 143, (306,459,0): 119, 115, 140, (306,460,0): 121, 115, 143, (306,461,0): 122, 116, 144, (306,462,0): 125, 116, 145, (306,463,0): 124, 115, 146, (306,464,0): 124, 114, 149, (306,465,0): 124, 114, 151, (306,466,0): 131, 116, 155, (306,467,0): 137, 122, 161, (306,468,0): 142, 126, 163, (306,469,0): 148, 132, 168, (306,470,0): 162, 147, 176, (306,471,0): 178, 164, 187, (306,472,0): 186, 177, 194, (306,473,0): 194, 191, 200, (306,474,0): 204, 205, 210, (306,475,0): 203, 211, 213, (306,476,0): 194, 208, 209, (306,477,0): 187, 205, 207, (306,478,0): 188, 207, 211, (306,479,0): 191, 211, 218, (306,480,0): 190, 212, 226, (306,481,0): 188, 211, 229, (306,482,0): 186, 211, 231, (306,483,0): 186, 213, 234, (306,484,0): 187, 218, 239, (306,485,0): 192, 224, 247, (306,486,0): 196, 230, 255, (306,487,0): 198, 234, 255, (306,488,0): 201, 236, 255, (306,489,0): 202, 234, 255, (306,490,0): 202, 233, 251, (306,491,0): 204, 232, 246, (306,492,0): 208, 230, 241, (306,493,0): 212, 231, 238, (306,494,0): 214, 231, 238, (306,495,0): 217, 232, 235, (306,496,0): 215, 233, 233, (306,497,0): 212, 233, 234, (306,498,0): 205, 234, 238, (306,499,0): 203, 236, 245, (306,500,0): 202, 238, 252, (306,501,0): 202, 237, 255, (306,502,0): 201, 233, 255, (306,503,0): 198, 230, 253, (306,504,0): 188, 222, 247, (306,505,0): 186, 227, 249, (306,506,0): 183, 229, 252, (306,507,0): 179, 229, 254, (306,508,0): 176, 225, 255, (306,509,0): 175, 221, 254, (306,510,0): 179, 218, 255, (306,511,0): 179, 218, 255, (306,512,0): 180, 223, 255, (306,513,0): 177, 222, 255, (306,514,0): 174, 219, 255, (306,515,0): 173, 218, 255, (306,516,0): 172, 220, 255, (306,517,0): 173, 222, 255, (306,518,0): 174, 223, 255, (306,519,0): 175, 224, 254, (306,520,0): 176, 225, 255, (306,521,0): 177, 228, 255, (306,522,0): 176, 227, 255, (306,523,0): 170, 220, 255, (306,524,0): 162, 211, 251, (306,525,0): 157, 206, 249, (306,526,0): 159, 207, 255, (306,527,0): 163, 209, 255, (306,528,0): 164, 204, 255, (306,529,0): 160, 192, 239, (306,530,0): 146, 168, 215, (306,531,0): 127, 140, 182, (306,532,0): 114, 117, 152, (306,533,0): 106, 99, 130, (306,534,0): 96, 84, 106, (306,535,0): 87, 73, 88, (306,536,0): 83, 66, 76, (306,537,0): 82, 66, 69, (306,538,0): 78, 63, 66, (306,539,0): 75, 61, 61, (306,540,0): 72, 57, 60, (306,541,0): 69, 54, 57, (306,542,0): 67, 50, 58, (306,543,0): 66, 49, 55, (306,544,0): 67, 47, 49, (306,545,0): 67, 47, 48, (306,546,0): 67, 45, 47, (306,547,0): 66, 44, 46, (306,548,0): 65, 43, 45, (306,549,0): 64, 42, 44, (306,550,0): 65, 40, 43, (306,551,0): 65, 39, 42, (306,552,0): 64, 35, 39, (306,553,0): 65, 36, 40, (306,554,0): 68, 37, 42, (306,555,0): 70, 39, 44, (306,556,0): 72, 41, 46, (306,557,0): 73, 42, 47, (306,558,0): 74, 42, 47, (306,559,0): 73, 42, 48, (306,560,0): 66, 40, 49, (306,561,0): 62, 41, 50, (306,562,0): 61, 40, 49, (306,563,0): 59, 42, 50, (306,564,0): 61, 46, 53, (306,565,0): 63, 52, 58, (306,566,0): 69, 58, 64, (306,567,0): 69, 63, 67, (306,568,0): 69, 63, 67, (306,569,0): 69, 64, 68, (306,570,0): 68, 63, 67, (306,571,0): 63, 58, 62, (306,572,0): 58, 52, 56, (306,573,0): 54, 48, 52, (306,574,0): 52, 46, 50, (306,575,0): 53, 47, 49, (306,576,0): 58, 48, 49, (306,577,0): 57, 47, 46, (306,578,0): 55, 45, 44, (306,579,0): 54, 44, 43, (306,580,0): 53, 43, 42, (306,581,0): 53, 43, 42, (306,582,0): 55, 43, 43, (306,583,0): 55, 43, 43, (306,584,0): 64, 50, 50, (306,585,0): 68, 54, 54, (306,586,0): 72, 56, 57, (306,587,0): 71, 55, 56, (306,588,0): 68, 52, 53, (306,589,0): 64, 48, 49, (306,590,0): 63, 47, 48, (306,591,0): 63, 47, 48, (306,592,0): 57, 43, 43, (306,593,0): 57, 43, 43, (306,594,0): 56, 42, 42, (306,595,0): 56, 42, 42, (306,596,0): 56, 42, 42, (306,597,0): 57, 43, 43, (306,598,0): 58, 44, 44, (306,599,0): 59, 45, 45, (307,0,0): 57, 46, 54, (307,1,0): 57, 46, 54, (307,2,0): 57, 46, 54, (307,3,0): 57, 46, 54, (307,4,0): 57, 46, 54, (307,5,0): 57, 46, 54, (307,6,0): 57, 46, 54, (307,7,0): 57, 46, 54, (307,8,0): 57, 46, 54, (307,9,0): 57, 46, 54, (307,10,0): 57, 46, 54, (307,11,0): 57, 46, 54, (307,12,0): 57, 46, 54, (307,13,0): 57, 46, 54, (307,14,0): 57, 46, 54, (307,15,0): 57, 46, 54, (307,16,0): 60, 47, 56, (307,17,0): 60, 47, 56, (307,18,0): 62, 46, 56, (307,19,0): 62, 46, 56, (307,20,0): 62, 46, 56, (307,21,0): 62, 46, 56, (307,22,0): 63, 46, 56, (307,23,0): 63, 46, 56, (307,24,0): 65, 45, 56, (307,25,0): 64, 44, 55, (307,26,0): 64, 44, 55, (307,27,0): 64, 44, 55, (307,28,0): 67, 45, 57, (307,29,0): 68, 46, 58, (307,30,0): 70, 48, 60, (307,31,0): 72, 49, 59, (307,32,0): 78, 49, 54, (307,33,0): 81, 49, 54, (307,34,0): 84, 49, 53, (307,35,0): 87, 51, 53, (307,36,0): 92, 53, 54, (307,37,0): 96, 55, 53, (307,38,0): 99, 55, 52, (307,39,0): 101, 56, 51, (307,40,0): 106, 59, 53, (307,41,0): 107, 60, 54, (307,42,0): 107, 60, 54, (307,43,0): 107, 60, 54, (307,44,0): 106, 61, 56, (307,45,0): 107, 62, 57, (307,46,0): 106, 62, 59, (307,47,0): 106, 63, 57, (307,48,0): 108, 65, 56, (307,49,0): 109, 67, 53, (307,50,0): 112, 68, 55, (307,51,0): 115, 72, 55, (307,52,0): 120, 74, 58, (307,53,0): 122, 77, 56, (307,54,0): 125, 79, 56, (307,55,0): 127, 80, 54, (307,56,0): 137, 87, 60, (307,57,0): 138, 89, 57, (307,58,0): 140, 89, 58, (307,59,0): 141, 91, 56, (307,60,0): 145, 93, 56, (307,61,0): 147, 95, 56, (307,62,0): 149, 96, 56, (307,63,0): 149, 96, 56, (307,64,0): 149, 96, 54, (307,65,0): 149, 96, 52, (307,66,0): 148, 97, 54, (307,67,0): 148, 97, 52, (307,68,0): 148, 97, 54, (307,69,0): 148, 97, 54, (307,70,0): 146, 97, 54, (307,71,0): 146, 97, 54, (307,72,0): 148, 99, 56, (307,73,0): 148, 101, 57, (307,74,0): 149, 102, 58, (307,75,0): 150, 103, 59, (307,76,0): 149, 104, 62, (307,77,0): 149, 104, 62, (307,78,0): 148, 103, 61, (307,79,0): 147, 102, 60, (307,80,0): 150, 103, 59, (307,81,0): 149, 105, 60, (307,82,0): 151, 107, 62, (307,83,0): 152, 112, 63, (307,84,0): 156, 116, 67, (307,85,0): 156, 120, 68, (307,86,0): 159, 124, 70, (307,87,0): 158, 126, 69, (307,88,0): 160, 130, 70, (307,89,0): 162, 132, 70, (307,90,0): 165, 134, 70, (307,91,0): 168, 137, 72, (307,92,0): 174, 141, 74, (307,93,0): 177, 144, 77, (307,94,0): 181, 146, 78, (307,95,0): 183, 149, 77, (307,96,0): 188, 152, 76, (307,97,0): 189, 154, 73, (307,98,0): 192, 157, 76, (307,99,0): 195, 160, 79, (307,100,0): 196, 164, 81, (307,101,0): 198, 166, 83, (307,102,0): 198, 166, 81, (307,103,0): 199, 167, 82, (307,104,0): 203, 171, 86, (307,105,0): 202, 170, 83, (307,106,0): 200, 170, 82, (307,107,0): 199, 169, 79, (307,108,0): 199, 169, 79, (307,109,0): 199, 170, 78, (307,110,0): 200, 171, 79, (307,111,0): 201, 172, 78, (307,112,0): 203, 175, 78, (307,113,0): 204, 176, 77, (307,114,0): 206, 175, 82, (307,115,0): 204, 173, 82, (307,116,0): 200, 168, 81, (307,117,0): 193, 161, 76, (307,118,0): 189, 154, 73, (307,119,0): 185, 149, 71, (307,120,0): 191, 154, 76, (307,121,0): 191, 153, 78, (307,122,0): 191, 153, 78, (307,123,0): 191, 154, 76, (307,124,0): 194, 155, 78, (307,125,0): 197, 158, 81, (307,126,0): 199, 160, 81, (307,127,0): 201, 163, 82, (307,128,0): 203, 163, 78, (307,129,0): 203, 161, 77, (307,130,0): 200, 158, 76, (307,131,0): 196, 155, 75, (307,132,0): 193, 151, 75, (307,133,0): 188, 149, 74, (307,134,0): 185, 145, 75, (307,135,0): 184, 143, 77, (307,136,0): 184, 143, 79, (307,137,0): 182, 143, 78, (307,138,0): 181, 141, 79, (307,139,0): 178, 140, 77, (307,140,0): 176, 138, 75, (307,141,0): 174, 136, 73, (307,142,0): 172, 134, 69, (307,143,0): 169, 134, 70, (307,144,0): 165, 133, 72, (307,145,0): 164, 134, 74, (307,146,0): 163, 133, 71, (307,147,0): 162, 132, 70, (307,148,0): 162, 132, 70, (307,149,0): 163, 133, 71, (307,150,0): 164, 134, 70, (307,151,0): 164, 134, 70, (307,152,0): 167, 137, 73, (307,153,0): 167, 138, 72, (307,154,0): 168, 139, 73, (307,155,0): 171, 142, 76, (307,156,0): 177, 148, 80, (307,157,0): 185, 156, 88, (307,158,0): 192, 163, 95, (307,159,0): 197, 168, 98, (307,160,0): 199, 169, 97, (307,161,0): 201, 171, 98, (307,162,0): 203, 174, 98, (307,163,0): 203, 174, 96, (307,164,0): 205, 173, 96, (307,165,0): 208, 177, 95, (307,166,0): 213, 182, 100, (307,167,0): 218, 188, 102, (307,168,0): 232, 200, 113, (307,169,0): 236, 205, 115, (307,170,0): 245, 212, 119, (307,171,0): 251, 218, 123, (307,172,0): 255, 222, 127, (307,173,0): 255, 224, 127, (307,174,0): 255, 224, 127, (307,175,0): 255, 223, 126, (307,176,0): 255, 222, 132, (307,177,0): 255, 221, 133, (307,178,0): 255, 221, 132, (307,179,0): 254, 220, 131, (307,180,0): 252, 218, 131, (307,181,0): 250, 216, 129, (307,182,0): 247, 215, 130, (307,183,0): 246, 214, 129, (307,184,0): 244, 213, 130, (307,185,0): 245, 214, 131, (307,186,0): 245, 214, 132, (307,187,0): 246, 215, 133, (307,188,0): 245, 216, 136, (307,189,0): 246, 217, 137, (307,190,0): 247, 218, 138, (307,191,0): 247, 220, 141, (307,192,0): 249, 222, 143, (307,193,0): 250, 225, 145, (307,194,0): 252, 227, 147, (307,195,0): 254, 229, 149, (307,196,0): 255, 230, 150, (307,197,0): 253, 230, 150, (307,198,0): 253, 230, 150, (307,199,0): 252, 231, 150, (307,200,0): 252, 231, 150, (307,201,0): 253, 232, 151, (307,202,0): 253, 232, 151, (307,203,0): 252, 234, 152, (307,204,0): 254, 236, 154, (307,205,0): 254, 237, 155, (307,206,0): 255, 237, 155, (307,207,0): 255, 238, 156, (307,208,0): 252, 240, 154, (307,209,0): 251, 241, 152, (307,210,0): 250, 243, 155, (307,211,0): 251, 244, 156, (307,212,0): 252, 245, 157, (307,213,0): 252, 246, 158, (307,214,0): 251, 247, 160, (307,215,0): 252, 248, 161, (307,216,0): 254, 252, 167, (307,217,0): 253, 253, 167, (307,218,0): 251, 254, 167, (307,219,0): 250, 253, 166, (307,220,0): 249, 253, 168, (307,221,0): 248, 252, 167, (307,222,0): 247, 253, 167, (307,223,0): 247, 252, 168, (307,224,0): 250, 255, 173, (307,225,0): 248, 255, 175, (307,226,0): 248, 255, 175, (307,227,0): 247, 255, 175, (307,228,0): 247, 255, 177, (307,229,0): 247, 255, 177, (307,230,0): 247, 255, 177, (307,231,0): 247, 255, 177, (307,232,0): 244, 255, 177, (307,233,0): 244, 255, 177, (307,234,0): 244, 255, 179, (307,235,0): 243, 254, 178, (307,236,0): 243, 254, 178, (307,237,0): 242, 253, 177, (307,238,0): 242, 252, 179, (307,239,0): 241, 253, 179, (307,240,0): 241, 255, 180, (307,241,0): 241, 255, 180, (307,242,0): 239, 255, 182, (307,243,0): 239, 255, 184, (307,244,0): 238, 255, 185, (307,245,0): 238, 255, 187, (307,246,0): 236, 255, 191, (307,247,0): 235, 255, 192, (307,248,0): 231, 252, 193, (307,249,0): 231, 252, 195, (307,250,0): 230, 253, 199, (307,251,0): 229, 253, 201, (307,252,0): 230, 254, 204, (307,253,0): 230, 254, 204, (307,254,0): 229, 255, 207, (307,255,0): 229, 255, 207, (307,256,0): 231, 255, 207, (307,257,0): 231, 255, 207, (307,258,0): 233, 254, 211, (307,259,0): 232, 254, 215, (307,260,0): 234, 254, 219, (307,261,0): 233, 253, 225, (307,262,0): 235, 253, 231, (307,263,0): 235, 252, 234, (307,264,0): 239, 255, 244, (307,265,0): 239, 254, 247, (307,266,0): 240, 255, 252, (307,267,0): 240, 254, 254, (307,268,0): 240, 254, 255, (307,269,0): 238, 252, 253, (307,270,0): 237, 251, 254, (307,271,0): 233, 251, 253, (307,272,0): 232, 255, 255, (307,273,0): 226, 255, 252, (307,274,0): 223, 254, 249, (307,275,0): 224, 255, 249, (307,276,0): 226, 255, 249, (307,277,0): 227, 255, 248, (307,278,0): 225, 255, 244, (307,279,0): 222, 254, 241, (307,280,0): 208, 239, 224, (307,281,0): 196, 227, 211, (307,282,0): 182, 213, 195, (307,283,0): 175, 206, 188, (307,284,0): 173, 205, 184, (307,285,0): 169, 201, 178, (307,286,0): 162, 194, 171, (307,287,0): 157, 189, 166, (307,288,0): 145, 176, 158, (307,289,0): 142, 173, 155, (307,290,0): 140, 169, 151, (307,291,0): 138, 167, 149, (307,292,0): 137, 166, 148, (307,293,0): 135, 164, 146, (307,294,0): 131, 159, 144, (307,295,0): 128, 156, 142, (307,296,0): 128, 158, 146, (307,297,0): 126, 159, 150, (307,298,0): 126, 161, 155, (307,299,0): 132, 168, 164, (307,300,0): 141, 181, 180, (307,301,0): 152, 193, 195, (307,302,0): 159, 203, 206, (307,303,0): 164, 207, 213, (307,304,0): 160, 203, 209, (307,305,0): 150, 193, 200, (307,306,0): 143, 186, 193, (307,307,0): 142, 185, 194, (307,308,0): 141, 184, 193, (307,309,0): 139, 181, 193, (307,310,0): 143, 185, 197, (307,311,0): 150, 192, 206, (307,312,0): 159, 201, 217, (307,313,0): 158, 199, 217, (307,314,0): 156, 197, 215, (307,315,0): 153, 194, 214, (307,316,0): 150, 191, 213, (307,317,0): 148, 189, 211, (307,318,0): 146, 187, 209, (307,319,0): 148, 184, 208, (307,320,0): 142, 173, 194, (307,321,0): 136, 163, 182, (307,322,0): 126, 149, 165, (307,323,0): 117, 139, 152, (307,324,0): 114, 134, 143, (307,325,0): 114, 131, 138, (307,326,0): 116, 131, 138, (307,327,0): 118, 128, 137, (307,328,0): 117, 125, 136, (307,329,0): 116, 124, 135, (307,330,0): 115, 123, 136, (307,331,0): 112, 120, 133, (307,332,0): 107, 115, 126, (307,333,0): 101, 110, 119, (307,334,0): 96, 105, 114, (307,335,0): 95, 100, 106, (307,336,0): 94, 93, 101, (307,337,0): 89, 84, 91, (307,338,0): 79, 74, 81, (307,339,0): 70, 65, 72, (307,340,0): 65, 60, 67, (307,341,0): 63, 58, 65, (307,342,0): 62, 57, 64, (307,343,0): 61, 56, 63, (307,344,0): 63, 58, 65, (307,345,0): 66, 61, 68, (307,346,0): 68, 63, 70, (307,347,0): 69, 64, 71, (307,348,0): 69, 64, 71, (307,349,0): 72, 67, 74, (307,350,0): 77, 72, 79, (307,351,0): 78, 77, 85, (307,352,0): 78, 81, 90, (307,353,0): 79, 86, 96, (307,354,0): 84, 91, 101, (307,355,0): 87, 93, 105, (307,356,0): 88, 95, 111, (307,357,0): 92, 99, 117, (307,358,0): 97, 103, 125, (307,359,0): 101, 107, 131, (307,360,0): 105, 113, 136, (307,361,0): 106, 113, 139, (307,362,0): 105, 115, 140, (307,363,0): 107, 117, 142, (307,364,0): 107, 117, 142, (307,365,0): 107, 118, 140, (307,366,0): 105, 117, 139, (307,367,0): 105, 116, 136, (307,368,0): 113, 115, 136, (307,369,0): 114, 115, 135, (307,370,0): 115, 116, 134, (307,371,0): 115, 117, 132, (307,372,0): 116, 115, 131, (307,373,0): 116, 114, 127, (307,374,0): 116, 112, 126, (307,375,0): 115, 112, 121, (307,376,0): 116, 111, 118, (307,377,0): 118, 111, 118, (307,378,0): 122, 113, 116, (307,379,0): 125, 116, 117, (307,380,0): 129, 119, 120, (307,381,0): 131, 121, 120, (307,382,0): 133, 123, 122, (307,383,0): 135, 124, 122, (307,384,0): 142, 128, 125, (307,385,0): 143, 128, 125, (307,386,0): 144, 129, 126, (307,387,0): 148, 133, 130, (307,388,0): 149, 133, 133, (307,389,0): 146, 130, 130, (307,390,0): 139, 123, 123, (307,391,0): 132, 116, 116, (307,392,0): 125, 111, 110, (307,393,0): 126, 112, 111, (307,394,0): 126, 112, 111, (307,395,0): 127, 113, 112, (307,396,0): 126, 112, 111, (307,397,0): 124, 110, 109, (307,398,0): 120, 109, 107, (307,399,0): 120, 106, 105, (307,400,0): 123, 105, 105, (307,401,0): 119, 99, 100, (307,402,0): 112, 92, 93, (307,403,0): 105, 85, 86, (307,404,0): 99, 79, 80, (307,405,0): 91, 71, 72, (307,406,0): 82, 62, 63, (307,407,0): 75, 55, 56, (307,408,0): 77, 55, 57, (307,409,0): 76, 54, 56, (307,410,0): 75, 53, 55, (307,411,0): 74, 52, 54, (307,412,0): 73, 51, 53, (307,413,0): 74, 52, 54, (307,414,0): 75, 53, 55, (307,415,0): 75, 53, 55, (307,416,0): 80, 58, 60, (307,417,0): 80, 60, 61, (307,418,0): 81, 61, 62, (307,419,0): 82, 62, 61, (307,420,0): 84, 64, 63, (307,421,0): 85, 67, 63, (307,422,0): 84, 69, 64, (307,423,0): 83, 70, 64, (307,424,0): 87, 74, 68, (307,425,0): 87, 77, 68, (307,426,0): 89, 80, 71, (307,427,0): 92, 86, 74, (307,428,0): 94, 88, 76, (307,429,0): 94, 90, 78, (307,430,0): 94, 90, 78, (307,431,0): 94, 91, 76, (307,432,0): 96, 95, 75, (307,433,0): 98, 100, 78, (307,434,0): 106, 104, 83, (307,435,0): 114, 109, 87, (307,436,0): 123, 117, 91, (307,437,0): 135, 128, 99, (307,438,0): 149, 140, 107, (307,439,0): 158, 148, 112, (307,440,0): 159, 147, 109, (307,441,0): 157, 144, 109, (307,442,0): 155, 142, 108, (307,443,0): 156, 145, 117, (307,444,0): 161, 149, 127, (307,445,0): 165, 153, 137, (307,446,0): 167, 154, 145, (307,447,0): 165, 155, 146, (307,448,0): 169, 159, 149, (307,449,0): 167, 159, 148, (307,450,0): 166, 159, 151, (307,451,0): 165, 160, 154, (307,452,0): 164, 160, 159, (307,453,0): 158, 156, 159, (307,454,0): 148, 147, 155, (307,455,0): 141, 141, 153, (307,456,0): 134, 133, 149, (307,457,0): 129, 127, 148, (307,458,0): 123, 121, 143, (307,459,0): 121, 117, 142, (307,460,0): 122, 118, 145, (307,461,0): 125, 119, 147, (307,462,0): 125, 119, 147, (307,463,0): 126, 117, 148, (307,464,0): 128, 118, 153, (307,465,0): 127, 117, 154, (307,466,0): 132, 120, 158, (307,467,0): 140, 125, 164, (307,468,0): 145, 129, 166, (307,469,0): 150, 134, 170, (307,470,0): 164, 149, 178, (307,471,0): 179, 167, 189, (307,472,0): 191, 184, 200, (307,473,0): 199, 198, 206, (307,474,0): 208, 211, 216, (307,475,0): 207, 217, 218, (307,476,0): 198, 214, 214, (307,477,0): 191, 212, 213, (307,478,0): 191, 215, 219, (307,479,0): 192, 219, 226, (307,480,0): 197, 223, 238, (307,481,0): 195, 222, 241, (307,482,0): 194, 222, 243, (307,483,0): 194, 225, 245, (307,484,0): 196, 228, 249, (307,485,0): 199, 234, 254, (307,486,0): 203, 239, 255, (307,487,0): 206, 243, 255, (307,488,0): 205, 240, 255, (307,489,0): 203, 239, 255, (307,490,0): 204, 236, 249, (307,491,0): 205, 235, 246, (307,492,0): 207, 234, 243, (307,493,0): 210, 235, 240, (307,494,0): 213, 237, 241, (307,495,0): 217, 238, 241, (307,496,0): 219, 240, 241, (307,497,0): 214, 240, 241, (307,498,0): 208, 239, 244, (307,499,0): 203, 240, 249, (307,500,0): 204, 242, 255, (307,501,0): 204, 241, 255, (307,502,0): 202, 237, 255, (307,503,0): 200, 235, 255, (307,504,0): 192, 229, 248, (307,505,0): 188, 229, 249, (307,506,0): 182, 230, 252, (307,507,0): 178, 228, 253, (307,508,0): 175, 224, 254, (307,509,0): 174, 220, 254, (307,510,0): 176, 215, 255, (307,511,0): 175, 214, 255, (307,512,0): 178, 221, 255, (307,513,0): 177, 222, 255, (307,514,0): 175, 223, 255, (307,515,0): 172, 222, 255, (307,516,0): 171, 221, 255, (307,517,0): 169, 222, 253, (307,518,0): 172, 226, 252, (307,519,0): 174, 228, 252, (307,520,0): 176, 231, 252, (307,521,0): 177, 232, 253, (307,522,0): 178, 230, 254, (307,523,0): 173, 224, 253, (307,524,0): 165, 213, 251, (307,525,0): 160, 204, 249, (307,526,0): 157, 200, 251, (307,527,0): 158, 199, 253, (307,528,0): 156, 193, 245, (307,529,0): 149, 179, 229, (307,530,0): 137, 159, 206, (307,531,0): 125, 138, 180, (307,532,0): 117, 120, 155, (307,533,0): 107, 101, 129, (307,534,0): 94, 82, 102, (307,535,0): 83, 69, 84, (307,536,0): 83, 67, 77, (307,537,0): 81, 66, 71, (307,538,0): 79, 64, 67, (307,539,0): 75, 61, 61, (307,540,0): 72, 57, 60, (307,541,0): 68, 53, 58, (307,542,0): 67, 50, 56, (307,543,0): 67, 48, 54, (307,544,0): 66, 46, 48, (307,545,0): 65, 45, 46, (307,546,0): 66, 44, 46, (307,547,0): 65, 43, 45, (307,548,0): 63, 41, 43, (307,549,0): 62, 40, 42, (307,550,0): 64, 39, 42, (307,551,0): 63, 38, 41, (307,552,0): 61, 35, 38, (307,553,0): 64, 35, 39, (307,554,0): 67, 36, 41, (307,555,0): 69, 38, 43, (307,556,0): 70, 39, 44, (307,557,0): 72, 41, 46, (307,558,0): 72, 41, 46, (307,559,0): 72, 43, 48, (307,560,0): 66, 40, 49, (307,561,0): 62, 41, 48, (307,562,0): 60, 40, 49, (307,563,0): 59, 42, 48, (307,564,0): 60, 45, 52, (307,565,0): 62, 51, 55, (307,566,0): 67, 58, 63, (307,567,0): 68, 62, 64, (307,568,0): 69, 64, 68, (307,569,0): 70, 66, 67, (307,570,0): 70, 65, 69, (307,571,0): 66, 62, 63, (307,572,0): 60, 54, 58, (307,573,0): 55, 49, 51, (307,574,0): 54, 48, 52, (307,575,0): 54, 48, 50, (307,576,0): 56, 46, 47, (307,577,0): 56, 46, 45, (307,578,0): 55, 45, 44, (307,579,0): 54, 44, 43, (307,580,0): 54, 44, 43, (307,581,0): 55, 45, 44, (307,582,0): 57, 45, 45, (307,583,0): 58, 46, 46, (307,584,0): 63, 49, 49, (307,585,0): 67, 53, 53, (307,586,0): 71, 55, 56, (307,587,0): 70, 54, 55, (307,588,0): 67, 51, 52, (307,589,0): 63, 47, 48, (307,590,0): 62, 46, 47, (307,591,0): 62, 46, 47, (307,592,0): 55, 41, 41, (307,593,0): 55, 41, 41, (307,594,0): 56, 42, 42, (307,595,0): 56, 42, 42, (307,596,0): 57, 43, 43, (307,597,0): 58, 44, 44, (307,598,0): 59, 45, 45, (307,599,0): 59, 45, 45, (308,0,0): 57, 46, 54, (308,1,0): 57, 46, 54, (308,2,0): 57, 46, 54, (308,3,0): 57, 46, 54, (308,4,0): 57, 46, 54, (308,5,0): 57, 46, 54, (308,6,0): 57, 46, 54, (308,7,0): 57, 46, 54, (308,8,0): 57, 46, 54, (308,9,0): 57, 46, 54, (308,10,0): 57, 46, 54, (308,11,0): 57, 46, 54, (308,12,0): 57, 46, 54, (308,13,0): 57, 46, 54, (308,14,0): 57, 46, 54, (308,15,0): 57, 46, 54, (308,16,0): 60, 47, 56, (308,17,0): 60, 47, 56, (308,18,0): 62, 46, 56, (308,19,0): 62, 46, 56, (308,20,0): 62, 46, 56, (308,21,0): 62, 46, 56, (308,22,0): 63, 46, 56, (308,23,0): 63, 46, 56, (308,24,0): 64, 44, 55, (308,25,0): 64, 44, 55, (308,26,0): 64, 44, 55, (308,27,0): 64, 44, 55, (308,28,0): 66, 44, 56, (308,29,0): 68, 46, 58, (308,30,0): 70, 48, 60, (308,31,0): 72, 49, 59, (308,32,0): 78, 48, 56, (308,33,0): 81, 49, 54, (308,34,0): 84, 49, 53, (308,35,0): 87, 51, 53, (308,36,0): 92, 53, 54, (308,37,0): 96, 55, 53, (308,38,0): 99, 55, 52, (308,39,0): 101, 56, 51, (308,40,0): 107, 60, 54, (308,41,0): 107, 60, 54, (308,42,0): 107, 60, 54, (308,43,0): 108, 61, 55, (308,44,0): 107, 62, 57, (308,45,0): 107, 62, 57, (308,46,0): 107, 62, 57, (308,47,0): 108, 63, 57, (308,48,0): 110, 66, 57, (308,49,0): 111, 67, 54, (308,50,0): 113, 69, 56, (308,51,0): 115, 72, 55, (308,52,0): 120, 74, 58, (308,53,0): 123, 78, 57, (308,54,0): 126, 80, 57, (308,55,0): 128, 81, 55, (308,56,0): 138, 88, 61, (308,57,0): 139, 90, 58, (308,58,0): 141, 90, 59, (308,59,0): 145, 92, 58, (308,60,0): 147, 93, 57, (308,61,0): 149, 95, 57, (308,62,0): 150, 97, 57, (308,63,0): 151, 98, 58, (308,64,0): 149, 96, 56, (308,65,0): 149, 96, 54, (308,66,0): 149, 96, 56, (308,67,0): 149, 96, 54, (308,68,0): 148, 96, 56, (308,69,0): 148, 96, 56, (308,70,0): 148, 96, 56, (308,71,0): 146, 97, 56, (308,72,0): 148, 99, 58, (308,73,0): 149, 100, 59, (308,74,0): 150, 103, 61, (308,75,0): 151, 104, 62, (308,76,0): 151, 104, 62, (308,77,0): 151, 104, 62, (308,78,0): 148, 103, 61, (308,79,0): 148, 103, 61, (308,80,0): 151, 104, 62, (308,81,0): 151, 106, 64, (308,82,0): 154, 110, 65, (308,83,0): 156, 116, 67, (308,84,0): 159, 119, 70, (308,85,0): 160, 125, 71, (308,86,0): 162, 127, 71, (308,87,0): 161, 129, 70, (308,88,0): 164, 134, 70, (308,89,0): 166, 137, 71, (308,90,0): 170, 139, 72, (308,91,0): 174, 144, 74, (308,92,0): 180, 147, 76, (308,93,0): 184, 151, 80, (308,94,0): 187, 153, 81, (308,95,0): 189, 156, 79, (308,96,0): 197, 162, 81, (308,97,0): 199, 163, 79, (308,98,0): 199, 164, 80, (308,99,0): 201, 166, 82, (308,100,0): 201, 167, 80, (308,101,0): 201, 167, 80, (308,102,0): 199, 167, 80, (308,103,0): 198, 167, 77, (308,104,0): 200, 170, 80, (308,105,0): 200, 171, 79, (308,106,0): 200, 171, 79, (308,107,0): 200, 171, 79, (308,108,0): 198, 172, 79, (308,109,0): 200, 174, 79, (308,110,0): 202, 176, 81, (308,111,0): 203, 177, 80, (308,112,0): 205, 177, 78, (308,113,0): 206, 178, 79, (308,114,0): 207, 178, 84, (308,115,0): 206, 177, 85, (308,116,0): 204, 173, 83, (308,117,0): 197, 165, 78, (308,118,0): 190, 158, 75, (308,119,0): 185, 152, 71, (308,120,0): 189, 154, 73, (308,121,0): 190, 154, 76, (308,122,0): 191, 154, 76, (308,123,0): 193, 156, 78, (308,124,0): 195, 158, 80, (308,125,0): 197, 160, 80, (308,126,0): 200, 161, 82, (308,127,0): 202, 164, 83, (308,128,0): 203, 163, 78, (308,129,0): 202, 162, 77, (308,130,0): 199, 158, 76, (308,131,0): 196, 155, 75, (308,132,0): 193, 151, 75, (308,133,0): 188, 148, 76, (308,134,0): 185, 145, 75, (308,135,0): 183, 144, 77, (308,136,0): 184, 145, 80, (308,137,0): 183, 143, 81, (308,138,0): 181, 141, 79, (308,139,0): 178, 140, 77, (308,140,0): 176, 138, 75, (308,141,0): 172, 137, 73, (308,142,0): 171, 136, 72, (308,143,0): 169, 135, 72, (308,144,0): 165, 135, 73, (308,145,0): 163, 134, 74, (308,146,0): 162, 133, 73, (308,147,0): 161, 132, 72, (308,148,0): 161, 133, 70, (308,149,0): 162, 134, 71, (308,150,0): 163, 135, 72, (308,151,0): 164, 136, 71, (308,152,0): 167, 139, 74, (308,153,0): 167, 139, 74, (308,154,0): 168, 141, 74, (308,155,0): 171, 144, 77, (308,156,0): 177, 150, 83, (308,157,0): 185, 158, 91, (308,158,0): 193, 166, 97, (308,159,0): 197, 170, 99, (308,160,0): 198, 170, 97, (308,161,0): 200, 172, 98, (308,162,0): 203, 174, 98, (308,163,0): 204, 175, 97, (308,164,0): 206, 177, 99, (308,165,0): 210, 182, 99, (308,166,0): 219, 188, 106, (308,167,0): 225, 195, 109, (308,168,0): 238, 206, 119, (308,169,0): 241, 210, 120, (308,170,0): 247, 216, 125, (308,171,0): 252, 221, 128, (308,172,0): 255, 224, 129, (308,173,0): 255, 224, 127, (308,174,0): 255, 223, 126, (308,175,0): 255, 222, 127, (308,176,0): 255, 222, 132, (308,177,0): 255, 221, 132, (308,178,0): 254, 220, 133, (308,179,0): 252, 218, 131, (308,180,0): 248, 216, 129, (308,181,0): 247, 215, 128, (308,182,0): 246, 214, 129, (308,183,0): 246, 214, 129, (308,184,0): 245, 214, 131, (308,185,0): 246, 215, 132, (308,186,0): 245, 217, 133, (308,187,0): 246, 218, 134, (308,188,0): 247, 219, 136, (308,189,0): 248, 220, 137, (308,190,0): 247, 221, 137, (308,191,0): 248, 221, 140, (308,192,0): 250, 223, 144, (308,193,0): 251, 224, 145, (308,194,0): 253, 226, 147, (308,195,0): 254, 227, 148, (308,196,0): 255, 228, 149, (308,197,0): 254, 229, 149, (308,198,0): 254, 229, 149, (308,199,0): 251, 228, 148, (308,200,0): 252, 229, 149, (308,201,0): 252, 229, 149, (308,202,0): 253, 230, 150, (308,203,0): 253, 232, 151, (308,204,0): 254, 233, 152, (308,205,0): 253, 235, 153, (308,206,0): 255, 235, 154, (308,207,0): 253, 236, 154, (308,208,0): 251, 239, 153, (308,209,0): 250, 240, 153, (308,210,0): 251, 241, 154, (308,211,0): 250, 243, 155, (308,212,0): 252, 244, 159, (308,213,0): 252, 246, 160, (308,214,0): 252, 248, 161, (308,215,0): 252, 248, 161, (308,216,0): 254, 252, 167, (308,217,0): 253, 253, 167, (308,218,0): 251, 253, 169, (308,219,0): 250, 252, 168, (308,220,0): 249, 253, 168, (308,221,0): 248, 252, 167, (308,222,0): 248, 252, 168, (308,223,0): 247, 252, 168, (308,224,0): 250, 255, 173, (308,225,0): 248, 255, 175, (308,226,0): 248, 255, 175, (308,227,0): 248, 255, 175, (308,228,0): 248, 255, 177, (308,229,0): 248, 255, 177, (308,230,0): 247, 255, 177, (308,231,0): 247, 255, 177, (308,232,0): 244, 255, 177, (308,233,0): 244, 255, 177, (308,234,0): 244, 255, 179, (308,235,0): 243, 254, 178, (308,236,0): 242, 254, 178, (308,237,0): 241, 253, 177, (308,238,0): 241, 253, 179, (308,239,0): 241, 253, 179, (308,240,0): 241, 254, 182, (308,241,0): 239, 255, 182, (308,242,0): 239, 255, 184, (308,243,0): 239, 255, 184, (308,244,0): 238, 255, 185, (308,245,0): 238, 255, 187, (308,246,0): 236, 255, 191, (308,247,0): 235, 255, 192, (308,248,0): 231, 252, 193, (308,249,0): 231, 252, 195, (308,250,0): 230, 253, 199, (308,251,0): 229, 253, 201, (308,252,0): 230, 254, 204, (308,253,0): 228, 254, 206, (308,254,0): 229, 255, 208, (308,255,0): 229, 255, 208, (308,256,0): 229, 255, 208, (308,257,0): 229, 255, 208, (308,258,0): 232, 255, 213, (308,259,0): 230, 255, 216, (308,260,0): 233, 254, 221, (308,261,0): 231, 254, 226, (308,262,0): 234, 253, 231, (308,263,0): 234, 252, 236, (308,264,0): 237, 254, 244, (308,265,0): 237, 254, 246, (308,266,0): 238, 254, 251, (308,267,0): 238, 254, 253, (308,268,0): 237, 253, 253, (308,269,0): 236, 252, 252, (308,270,0): 235, 250, 253, (308,271,0): 231, 251, 252, (308,272,0): 229, 255, 255, (308,273,0): 225, 255, 254, (308,274,0): 222, 254, 251, (308,275,0): 222, 254, 249, (308,276,0): 224, 255, 251, (308,277,0): 225, 255, 251, (308,278,0): 225, 255, 249, (308,279,0): 224, 255, 248, (308,280,0): 217, 253, 241, (308,281,0): 209, 245, 231, (308,282,0): 198, 235, 218, (308,283,0): 188, 225, 208, (308,284,0): 183, 220, 202, (308,285,0): 179, 216, 198, (308,286,0): 174, 212, 191, (308,287,0): 168, 206, 185, (308,288,0): 172, 206, 190, (308,289,0): 165, 199, 183, (308,290,0): 156, 188, 173, (308,291,0): 149, 181, 166, (308,292,0): 147, 178, 163, (308,293,0): 145, 176, 161, (308,294,0): 144, 175, 160, (308,295,0): 141, 173, 160, (308,296,0): 137, 170, 161, (308,297,0): 133, 168, 161, (308,298,0): 131, 167, 163, (308,299,0): 134, 175, 171, (308,300,0): 144, 186, 185, (308,301,0): 154, 198, 199, (308,302,0): 161, 206, 211, (308,303,0): 165, 210, 216, (308,304,0): 159, 203, 212, (308,305,0): 151, 195, 204, (308,306,0): 144, 188, 197, (308,307,0): 143, 187, 198, (308,308,0): 140, 184, 195, (308,309,0): 137, 181, 194, (308,310,0): 142, 185, 201, (308,311,0): 149, 192, 209, (308,312,0): 160, 203, 220, (308,313,0): 159, 202, 221, (308,314,0): 157, 199, 221, (308,315,0): 154, 196, 218, (308,316,0): 151, 193, 217, (308,317,0): 148, 190, 214, (308,318,0): 145, 187, 211, (308,319,0): 147, 184, 210, (308,320,0): 144, 174, 198, (308,321,0): 138, 165, 186, (308,322,0): 129, 152, 170, (308,323,0): 120, 142, 155, (308,324,0): 116, 136, 145, (308,325,0): 114, 131, 138, (308,326,0): 114, 129, 136, (308,327,0): 115, 125, 134, (308,328,0): 112, 120, 131, (308,329,0): 114, 120, 132, (308,330,0): 114, 120, 134, (308,331,0): 112, 118, 132, (308,332,0): 108, 114, 126, (308,333,0): 101, 108, 118, (308,334,0): 94, 101, 111, (308,335,0): 92, 97, 103, (308,336,0): 89, 88, 96, (308,337,0): 83, 78, 85, (308,338,0): 72, 67, 74, (308,339,0): 64, 59, 66, (308,340,0): 62, 57, 64, (308,341,0): 61, 56, 63, (308,342,0): 61, 56, 63, (308,343,0): 60, 55, 62, (308,344,0): 64, 59, 66, (308,345,0): 66, 61, 68, (308,346,0): 69, 64, 71, (308,347,0): 70, 65, 72, (308,348,0): 71, 66, 73, (308,349,0): 73, 68, 75, (308,350,0): 77, 72, 79, (308,351,0): 78, 77, 85, (308,352,0): 80, 83, 92, (308,353,0): 81, 88, 98, (308,354,0): 85, 91, 103, (308,355,0): 88, 94, 108, (308,356,0): 89, 96, 112, (308,357,0): 92, 99, 117, (308,358,0): 97, 103, 125, (308,359,0): 101, 107, 131, (308,360,0): 106, 113, 139, (308,361,0): 107, 114, 142, (308,362,0): 106, 116, 143, (308,363,0): 107, 117, 142, (308,364,0): 107, 117, 142, (308,365,0): 107, 118, 140, (308,366,0): 105, 117, 139, (308,367,0): 105, 116, 136, (308,368,0): 112, 114, 135, (308,369,0): 114, 115, 135, (308,370,0): 116, 115, 133, (308,371,0): 116, 115, 131, (308,372,0): 117, 114, 131, (308,373,0): 116, 114, 127, (308,374,0): 115, 111, 125, (308,375,0): 114, 111, 120, (308,376,0): 114, 109, 116, (308,377,0): 116, 109, 116, (308,378,0): 120, 111, 116, (308,379,0): 123, 114, 117, (308,380,0): 126, 116, 117, (308,381,0): 129, 119, 118, (308,382,0): 132, 120, 120, (308,383,0): 133, 122, 120, (308,384,0): 140, 126, 123, (308,385,0): 142, 128, 125, (308,386,0): 146, 132, 129, (308,387,0): 151, 138, 132, (308,388,0): 153, 139, 136, (308,389,0): 150, 136, 133, (308,390,0): 143, 129, 126, (308,391,0): 138, 124, 121, (308,392,0): 133, 119, 116, (308,393,0): 132, 118, 115, (308,394,0): 131, 117, 114, (308,395,0): 130, 116, 113, (308,396,0): 127, 113, 110, (308,397,0): 125, 111, 108, (308,398,0): 122, 108, 105, (308,399,0): 122, 107, 104, (308,400,0): 127, 109, 107, (308,401,0): 123, 103, 102, (308,402,0): 115, 95, 94, (308,403,0): 107, 87, 86, (308,404,0): 99, 79, 78, (308,405,0): 89, 69, 68, (308,406,0): 79, 59, 58, (308,407,0): 73, 53, 52, (308,408,0): 76, 56, 55, (308,409,0): 75, 55, 54, (308,410,0): 74, 54, 53, (308,411,0): 74, 54, 53, (308,412,0): 74, 54, 53, (308,413,0): 75, 55, 54, (308,414,0): 76, 56, 55, (308,415,0): 77, 57, 56, (308,416,0): 82, 62, 61, (308,417,0): 82, 64, 62, (308,418,0): 83, 65, 63, (308,419,0): 83, 68, 65, (308,420,0): 84, 69, 66, (308,421,0): 85, 72, 66, (308,422,0): 86, 73, 67, (308,423,0): 85, 75, 66, (308,424,0): 88, 79, 70, (308,425,0): 89, 82, 72, (308,426,0): 91, 84, 74, (308,427,0): 93, 89, 77, (308,428,0): 96, 92, 80, (308,429,0): 97, 95, 80, (308,430,0): 98, 96, 81, (308,431,0): 99, 98, 80, (308,432,0): 100, 102, 80, (308,433,0): 103, 105, 81, (308,434,0): 111, 109, 86, (308,435,0): 117, 113, 88, (308,436,0): 125, 119, 93, (308,437,0): 135, 128, 99, (308,438,0): 148, 140, 104, (308,439,0): 156, 148, 109, (308,440,0): 168, 159, 118, (308,441,0): 165, 156, 115, (308,442,0): 163, 154, 115, (308,443,0): 164, 155, 122, (308,444,0): 170, 160, 135, (308,445,0): 173, 165, 146, (308,446,0): 177, 167, 157, (308,447,0): 176, 167, 158, (308,448,0): 172, 163, 154, (308,449,0): 169, 162, 152, (308,450,0): 165, 161, 152, (308,451,0): 163, 160, 155, (308,452,0): 161, 159, 160, (308,453,0): 156, 155, 160, (308,454,0): 147, 147, 157, (308,455,0): 139, 141, 154, (308,456,0): 134, 136, 151, (308,457,0): 129, 130, 150, (308,458,0): 123, 124, 145, (308,459,0): 122, 120, 144, (308,460,0): 123, 120, 147, (308,461,0): 126, 122, 149, (308,462,0): 126, 122, 149, (308,463,0): 127, 120, 151, (308,464,0): 134, 124, 161, (308,465,0): 133, 122, 162, (308,466,0): 136, 124, 164, (308,467,0): 141, 129, 167, (308,468,0): 145, 131, 167, (308,469,0): 149, 135, 170, (308,470,0): 162, 149, 177, (308,471,0): 175, 166, 187, (308,472,0): 190, 186, 201, (308,473,0): 196, 199, 206, (308,474,0): 205, 213, 216, (308,475,0): 204, 218, 218, (308,476,0): 196, 216, 215, (308,477,0): 191, 215, 215, (308,478,0): 191, 219, 222, (308,479,0): 194, 224, 232, (308,480,0): 202, 231, 247, (308,481,0): 200, 231, 251, (308,482,0): 200, 231, 251, (308,483,0): 201, 234, 253, (308,484,0): 204, 237, 255, (308,485,0): 208, 241, 255, (308,486,0): 210, 246, 255, (308,487,0): 213, 249, 255, (308,488,0): 208, 241, 255, (308,489,0): 207, 239, 252, (308,490,0): 205, 237, 248, (308,491,0): 205, 235, 245, (308,492,0): 206, 235, 243, (308,493,0): 209, 236, 243, (308,494,0): 213, 238, 243, (308,495,0): 215, 240, 244, (308,496,0): 218, 242, 246, (308,497,0): 213, 241, 245, (308,498,0): 206, 239, 246, (308,499,0): 202, 240, 249, (308,500,0): 202, 242, 254, (308,501,0): 201, 243, 255, (308,502,0): 201, 240, 255, (308,503,0): 199, 238, 255, (308,504,0): 193, 235, 251, (308,505,0): 188, 233, 252, (308,506,0): 182, 230, 252, (308,507,0): 176, 227, 254, (308,508,0): 173, 222, 254, (308,509,0): 172, 218, 254, (308,510,0): 173, 212, 253, (308,511,0): 172, 209, 253, (308,512,0): 173, 216, 255, (308,513,0): 175, 220, 255, (308,514,0): 175, 222, 255, (308,515,0): 173, 222, 255, (308,516,0): 168, 221, 255, (308,517,0): 166, 221, 251, (308,518,0): 170, 226, 251, (308,519,0): 174, 231, 251, (308,520,0): 177, 234, 251, (308,521,0): 178, 235, 252, (308,522,0): 178, 233, 253, (308,523,0): 175, 225, 250, (308,524,0): 169, 215, 251, (308,525,0): 161, 204, 249, (308,526,0): 156, 195, 250, (308,527,0): 155, 191, 249, (308,528,0): 148, 181, 235, (308,529,0): 140, 168, 218, (308,530,0): 131, 152, 199, (308,531,0): 126, 138, 180, (308,532,0): 120, 123, 158, (308,533,0): 108, 102, 130, (308,534,0): 91, 79, 99, (308,535,0): 79, 65, 80, (308,536,0): 84, 68, 78, (308,537,0): 82, 67, 72, (308,538,0): 79, 64, 67, (308,539,0): 74, 62, 64, (308,540,0): 71, 56, 61, (308,541,0): 68, 53, 58, (308,542,0): 66, 49, 55, (308,543,0): 66, 47, 51, (308,544,0): 65, 45, 47, (308,545,0): 66, 44, 46, (308,546,0): 65, 43, 45, (308,547,0): 64, 42, 44, (308,548,0): 63, 41, 43, (308,549,0): 62, 40, 42, (308,550,0): 63, 38, 41, (308,551,0): 63, 38, 41, (308,552,0): 64, 38, 41, (308,553,0): 64, 38, 41, (308,554,0): 67, 38, 42, (308,555,0): 68, 39, 43, (308,556,0): 70, 41, 45, (308,557,0): 72, 43, 47, (308,558,0): 73, 44, 48, (308,559,0): 72, 45, 50, (308,560,0): 66, 43, 49, (308,561,0): 64, 43, 48, (308,562,0): 61, 42, 48, (308,563,0): 59, 43, 46, (308,564,0): 61, 46, 51, (308,565,0): 63, 53, 54, (308,566,0): 67, 58, 61, (308,567,0): 68, 62, 62, (308,568,0): 72, 68, 69, (308,569,0): 72, 71, 69, (308,570,0): 72, 70, 71, (308,571,0): 69, 68, 66, (308,572,0): 65, 61, 62, (308,573,0): 59, 55, 54, (308,574,0): 58, 52, 54, (308,575,0): 57, 51, 51, (308,576,0): 56, 46, 45, (308,577,0): 55, 45, 44, (308,578,0): 55, 45, 44, (308,579,0): 54, 44, 43, (308,580,0): 55, 45, 44, (308,581,0): 56, 46, 45, (308,582,0): 58, 46, 46, (308,583,0): 59, 47, 47, (308,584,0): 62, 48, 48, (308,585,0): 66, 52, 52, (308,586,0): 70, 54, 55, (308,587,0): 69, 53, 54, (308,588,0): 66, 50, 51, (308,589,0): 62, 46, 47, (308,590,0): 61, 45, 46, (308,591,0): 61, 45, 46, (308,592,0): 55, 41, 41, (308,593,0): 53, 41, 41, (308,594,0): 54, 42, 42, (308,595,0): 55, 43, 43, (308,596,0): 56, 44, 44, (308,597,0): 56, 44, 44, (308,598,0): 57, 45, 45, (308,599,0): 57, 45, 45, (309,0,0): 56, 45, 53, (309,1,0): 56, 45, 53, (309,2,0): 56, 45, 53, (309,3,0): 56, 45, 53, (309,4,0): 56, 45, 53, (309,5,0): 56, 45, 53, (309,6,0): 56, 45, 53, (309,7,0): 56, 45, 53, (309,8,0): 56, 45, 53, (309,9,0): 56, 45, 53, (309,10,0): 56, 45, 53, (309,11,0): 56, 45, 53, (309,12,0): 56, 45, 53, (309,13,0): 56, 45, 53, (309,14,0): 56, 45, 53, (309,15,0): 56, 45, 53, (309,16,0): 60, 47, 56, (309,17,0): 60, 47, 56, (309,18,0): 62, 46, 56, (309,19,0): 62, 46, 56, (309,20,0): 62, 46, 56, (309,21,0): 62, 46, 56, (309,22,0): 63, 46, 56, (309,23,0): 63, 46, 56, (309,24,0): 64, 44, 55, (309,25,0): 63, 43, 54, (309,26,0): 63, 43, 54, (309,27,0): 63, 43, 54, (309,28,0): 65, 43, 55, (309,29,0): 67, 45, 57, (309,30,0): 69, 47, 59, (309,31,0): 71, 48, 58, (309,32,0): 78, 48, 56, (309,33,0): 80, 49, 55, (309,34,0): 82, 50, 55, (309,35,0): 86, 52, 53, (309,36,0): 92, 53, 54, (309,37,0): 95, 55, 55, (309,38,0): 97, 56, 54, (309,39,0): 100, 57, 51, (309,40,0): 107, 59, 55, (309,41,0): 108, 61, 55, (309,42,0): 108, 61, 55, (309,43,0): 109, 62, 56, (309,44,0): 109, 62, 56, (309,45,0): 108, 63, 58, (309,46,0): 108, 63, 58, (309,47,0): 108, 63, 57, (309,48,0): 110, 66, 57, (309,49,0): 111, 67, 54, (309,50,0): 113, 69, 56, (309,51,0): 116, 73, 56, (309,52,0): 121, 75, 59, (309,53,0): 124, 77, 57, (309,54,0): 127, 79, 57, (309,55,0): 128, 81, 55, (309,56,0): 138, 88, 61, (309,57,0): 140, 89, 58, (309,58,0): 143, 90, 59, (309,59,0): 145, 92, 58, (309,60,0): 147, 93, 57, (309,61,0): 149, 95, 57, (309,62,0): 150, 97, 57, (309,63,0): 151, 98, 58, (309,64,0): 149, 96, 56, (309,65,0): 149, 96, 56, (309,66,0): 149, 95, 57, (309,67,0): 149, 96, 56, (309,68,0): 148, 96, 56, (309,69,0): 148, 96, 56, (309,70,0): 148, 96, 56, (309,71,0): 148, 96, 56, (309,72,0): 149, 100, 59, (309,73,0): 150, 101, 60, (309,74,0): 150, 103, 61, (309,75,0): 151, 104, 62, (309,76,0): 152, 105, 63, (309,77,0): 152, 105, 63, (309,78,0): 149, 104, 62, (309,79,0): 148, 103, 61, (309,80,0): 153, 106, 64, (309,81,0): 153, 109, 64, (309,82,0): 156, 112, 67, (309,83,0): 158, 118, 69, (309,84,0): 162, 122, 71, (309,85,0): 162, 127, 73, (309,86,0): 163, 128, 70, (309,87,0): 162, 130, 69, (309,88,0): 166, 137, 71, (309,89,0): 169, 140, 72, (309,90,0): 174, 144, 74, (309,91,0): 178, 148, 75, (309,92,0): 185, 153, 78, (309,93,0): 188, 156, 79, (309,94,0): 191, 158, 81, (309,95,0): 194, 159, 78, (309,96,0): 203, 167, 81, (309,97,0): 204, 168, 80, (309,98,0): 204, 168, 80, (309,99,0): 204, 170, 81, (309,100,0): 203, 169, 79, (309,101,0): 202, 168, 78, (309,102,0): 199, 168, 77, (309,103,0): 198, 167, 76, (309,104,0): 198, 169, 77, (309,105,0): 198, 169, 75, (309,106,0): 198, 169, 75, (309,107,0): 197, 171, 74, (309,108,0): 199, 173, 78, (309,109,0): 202, 176, 79, (309,110,0): 204, 178, 81, (309,111,0): 206, 180, 83, (309,112,0): 207, 179, 80, (309,113,0): 206, 178, 79, (309,114,0): 207, 179, 82, (309,115,0): 207, 178, 84, (309,116,0): 207, 176, 85, (309,117,0): 202, 171, 81, (309,118,0): 195, 163, 78, (309,119,0): 189, 157, 74, (309,120,0): 189, 154, 72, (309,121,0): 189, 154, 73, (309,122,0): 191, 154, 74, (309,123,0): 193, 156, 76, (309,124,0): 195, 158, 78, (309,125,0): 197, 160, 80, (309,126,0): 199, 160, 81, (309,127,0): 200, 162, 81, (309,128,0): 201, 163, 78, (309,129,0): 200, 162, 77, (309,130,0): 199, 158, 76, (309,131,0): 194, 155, 76, (309,132,0): 191, 152, 75, (309,133,0): 187, 149, 76, (309,134,0): 184, 145, 76, (309,135,0): 183, 144, 77, (309,136,0): 184, 145, 80, (309,137,0): 182, 144, 81, (309,138,0): 181, 143, 80, (309,139,0): 177, 142, 78, (309,140,0): 175, 140, 76, (309,141,0): 173, 138, 74, (309,142,0): 171, 136, 72, (309,143,0): 169, 135, 72, (309,144,0): 167, 137, 77, (309,145,0): 164, 135, 75, (309,146,0): 162, 133, 73, (309,147,0): 161, 132, 72, (309,148,0): 161, 133, 70, (309,149,0): 162, 134, 71, (309,150,0): 164, 136, 73, (309,151,0): 166, 138, 75, (309,152,0): 168, 140, 75, (309,153,0): 168, 140, 75, (309,154,0): 169, 142, 75, (309,155,0): 172, 145, 78, (309,156,0): 178, 151, 84, (309,157,0): 186, 159, 92, (309,158,0): 194, 167, 98, (309,159,0): 198, 171, 100, (309,160,0): 198, 170, 97, (309,161,0): 200, 173, 96, (309,162,0): 203, 174, 98, (309,163,0): 205, 176, 98, (309,164,0): 208, 179, 99, (309,165,0): 214, 186, 103, (309,166,0): 225, 194, 112, (309,167,0): 231, 200, 117, (309,168,0): 240, 208, 123, (309,169,0): 244, 212, 125, (309,170,0): 248, 217, 127, (309,171,0): 253, 222, 131, (309,172,0): 255, 224, 131, (309,173,0): 255, 223, 128, (309,174,0): 255, 222, 127, (309,175,0): 253, 220, 125, (309,176,0): 255, 223, 133, (309,177,0): 255, 221, 132, (309,178,0): 253, 219, 132, (309,179,0): 251, 217, 130, (309,180,0): 247, 215, 128, (309,181,0): 246, 214, 127, (309,182,0): 246, 214, 129, (309,183,0): 245, 215, 129, (309,184,0): 246, 215, 132, (309,185,0): 245, 217, 133, (309,186,0): 247, 219, 135, (309,187,0): 248, 220, 136, (309,188,0): 250, 222, 138, (309,189,0): 250, 222, 138, (309,190,0): 249, 223, 139, (309,191,0): 248, 222, 138, (309,192,0): 252, 223, 143, (309,193,0): 253, 224, 146, (309,194,0): 254, 225, 147, (309,195,0): 255, 228, 149, (309,196,0): 255, 228, 149, (309,197,0): 255, 228, 149, (309,198,0): 254, 227, 148, (309,199,0): 253, 228, 148, (309,200,0): 253, 228, 148, (309,201,0): 251, 228, 148, (309,202,0): 252, 229, 149, (309,203,0): 253, 230, 150, (309,204,0): 254, 231, 151, (309,205,0): 254, 233, 152, (309,206,0): 255, 234, 153, (309,207,0): 253, 235, 153, (309,208,0): 252, 237, 152, (309,209,0): 250, 240, 153, (309,210,0): 251, 241, 154, (309,211,0): 252, 242, 155, (309,212,0): 254, 244, 159, (309,213,0): 253, 245, 160, (309,214,0): 254, 248, 162, (309,215,0): 253, 249, 162, (309,216,0): 255, 251, 167, (309,217,0): 254, 252, 167, (309,218,0): 253, 252, 169, (309,219,0): 250, 252, 168, (309,220,0): 250, 252, 168, (309,221,0): 248, 252, 167, (309,222,0): 248, 252, 168, (309,223,0): 248, 252, 168, (309,224,0): 251, 254, 175, (309,225,0): 250, 255, 175, (309,226,0): 250, 255, 175, (309,227,0): 248, 255, 175, (309,228,0): 248, 255, 177, (309,229,0): 248, 255, 177, (309,230,0): 247, 255, 177, (309,231,0): 247, 255, 177, (309,232,0): 244, 255, 177, (309,233,0): 244, 255, 177, (309,234,0): 244, 255, 179, (309,235,0): 242, 254, 178, (309,236,0): 242, 254, 178, (309,237,0): 241, 253, 177, (309,238,0): 241, 253, 179, (309,239,0): 240, 254, 179, (309,240,0): 239, 255, 182, (309,241,0): 239, 255, 182, (309,242,0): 239, 255, 184, (309,243,0): 238, 255, 185, (309,244,0): 238, 255, 187, (309,245,0): 236, 255, 189, (309,246,0): 235, 255, 192, (309,247,0): 235, 255, 194, (309,248,0): 231, 252, 195, (309,249,0): 229, 252, 196, (309,250,0): 229, 253, 201, (309,251,0): 229, 253, 203, (309,252,0): 228, 254, 206, (309,253,0): 228, 254, 207, (309,254,0): 229, 255, 208, (309,255,0): 229, 255, 210, (309,256,0): 229, 255, 210, (309,257,0): 229, 255, 210, (309,258,0): 230, 255, 215, (309,259,0): 230, 254, 218, (309,260,0): 231, 255, 223, (309,261,0): 230, 254, 228, (309,262,0): 232, 254, 233, (309,263,0): 231, 254, 238, (309,264,0): 233, 255, 243, (309,265,0): 233, 254, 247, (309,266,0): 234, 254, 252, (309,267,0): 234, 254, 252, (309,268,0): 233, 253, 252, (309,269,0): 232, 252, 251, (309,270,0): 231, 251, 252, (309,271,0): 229, 250, 251, (309,272,0): 227, 255, 255, (309,273,0): 224, 255, 255, (309,274,0): 223, 255, 254, (309,275,0): 223, 255, 252, (309,276,0): 221, 255, 252, (309,277,0): 221, 255, 250, (309,278,0): 221, 255, 250, (309,279,0): 220, 255, 249, (309,280,0): 217, 255, 244, (309,281,0): 214, 252, 241, (309,282,0): 205, 243, 230, (309,283,0): 191, 232, 218, (309,284,0): 184, 225, 209, (309,285,0): 180, 223, 206, (309,286,0): 176, 217, 199, (309,287,0): 170, 211, 195, (309,288,0): 179, 217, 204, (309,289,0): 169, 207, 194, (309,290,0): 157, 193, 181, (309,291,0): 146, 182, 170, (309,292,0): 143, 176, 165, (309,293,0): 142, 175, 164, (309,294,0): 141, 174, 163, (309,295,0): 141, 174, 165, (309,296,0): 143, 178, 171, (309,297,0): 138, 175, 168, (309,298,0): 133, 174, 170, (309,299,0): 138, 180, 178, (309,300,0): 147, 191, 192, (309,301,0): 157, 202, 205, (309,302,0): 160, 207, 213, (309,303,0): 162, 209, 217, (309,304,0): 156, 203, 213, (309,305,0): 150, 194, 207, (309,306,0): 145, 189, 202, (309,307,0): 143, 187, 200, (309,308,0): 139, 182, 198, (309,309,0): 136, 179, 195, (309,310,0): 141, 184, 201, (309,311,0): 150, 193, 212, (309,312,0): 160, 203, 222, (309,313,0): 159, 201, 223, (309,314,0): 158, 200, 224, (309,315,0): 156, 198, 223, (309,316,0): 153, 195, 220, (309,317,0): 149, 190, 218, (309,318,0): 146, 187, 215, (309,319,0): 147, 184, 211, (309,320,0): 146, 176, 202, (309,321,0): 141, 167, 190, (309,322,0): 130, 155, 175, (309,323,0): 123, 145, 159, (309,324,0): 118, 138, 149, (309,325,0): 115, 132, 140, (309,326,0): 113, 127, 136, (309,327,0): 112, 122, 131, (309,328,0): 111, 117, 129, (309,329,0): 112, 118, 130, (309,330,0): 114, 117, 132, (309,331,0): 113, 116, 131, (309,332,0): 108, 112, 124, (309,333,0): 99, 106, 116, (309,334,0): 94, 98, 107, (309,335,0): 91, 94, 101, (309,336,0): 86, 83, 90, (309,337,0): 79, 74, 81, (309,338,0): 68, 63, 70, (309,339,0): 62, 57, 64, (309,340,0): 61, 56, 63, (309,341,0): 62, 57, 64, (309,342,0): 61, 56, 63, (309,343,0): 59, 54, 61, (309,344,0): 64, 59, 66, (309,345,0): 67, 62, 69, (309,346,0): 71, 66, 73, (309,347,0): 72, 67, 74, (309,348,0): 73, 68, 75, (309,349,0): 74, 69, 76, (309,350,0): 78, 73, 80, (309,351,0): 79, 76, 85, (309,352,0): 81, 84, 93, (309,353,0): 82, 89, 99, (309,354,0): 86, 92, 106, (309,355,0): 89, 95, 111, (309,356,0): 90, 95, 114, (309,357,0): 92, 99, 118, (309,358,0): 97, 103, 127, (309,359,0): 100, 106, 132, (309,360,0): 107, 112, 141, (309,361,0): 107, 114, 142, (309,362,0): 108, 115, 143, (309,363,0): 107, 117, 144, (309,364,0): 107, 117, 142, (309,365,0): 107, 117, 142, (309,366,0): 106, 116, 141, (309,367,0): 107, 115, 136, (309,368,0): 112, 114, 135, (309,369,0): 114, 115, 133, (309,370,0): 117, 116, 134, (309,371,0): 117, 116, 132, (309,372,0): 117, 115, 129, (309,373,0): 116, 114, 127, (309,374,0): 115, 111, 125, (309,375,0): 116, 110, 122, (309,376,0): 114, 106, 117, (309,377,0): 115, 108, 116, (309,378,0): 119, 109, 117, (309,379,0): 121, 112, 117, (309,380,0): 125, 114, 118, (309,381,0): 128, 118, 119, (309,382,0): 131, 119, 121, (309,383,0): 132, 120, 120, (309,384,0): 138, 124, 123, (309,385,0): 141, 127, 124, (309,386,0): 147, 134, 128, (309,387,0): 152, 139, 133, (309,388,0): 154, 141, 135, (309,389,0): 152, 139, 131, (309,390,0): 147, 134, 126, (309,391,0): 144, 131, 123, (309,392,0): 139, 126, 118, (309,393,0): 137, 124, 116, (309,394,0): 135, 122, 114, (309,395,0): 132, 119, 111, (309,396,0): 129, 116, 108, (309,397,0): 126, 113, 107, (309,398,0): 124, 111, 105, (309,399,0): 124, 109, 106, (309,400,0): 128, 108, 107, (309,401,0): 124, 104, 103, (309,402,0): 117, 97, 96, (309,403,0): 108, 88, 87, (309,404,0): 97, 77, 76, (309,405,0): 87, 67, 66, (309,406,0): 77, 57, 56, (309,407,0): 72, 52, 51, (309,408,0): 75, 55, 54, (309,409,0): 75, 55, 54, (309,410,0): 74, 54, 53, (309,411,0): 74, 54, 53, (309,412,0): 75, 55, 54, (309,413,0): 77, 57, 56, (309,414,0): 79, 59, 58, (309,415,0): 79, 61, 59, (309,416,0): 84, 66, 64, (309,417,0): 82, 67, 64, (309,418,0): 83, 68, 65, (309,419,0): 84, 71, 65, (309,420,0): 86, 73, 67, (309,421,0): 85, 75, 66, (309,422,0): 86, 76, 67, (309,423,0): 86, 77, 68, (309,424,0): 90, 83, 73, (309,425,0): 89, 85, 73, (309,426,0): 91, 87, 75, (309,427,0): 94, 92, 77, (309,428,0): 97, 95, 80, (309,429,0): 98, 99, 83, (309,430,0): 100, 101, 85, (309,431,0): 101, 102, 84, (309,432,0): 104, 106, 82, (309,433,0): 107, 110, 83, (309,434,0): 114, 112, 87, (309,435,0): 118, 117, 89, (309,436,0): 127, 122, 93, (309,437,0): 135, 130, 98, (309,438,0): 147, 141, 105, (309,439,0): 156, 149, 107, (309,440,0): 169, 162, 116, (309,441,0): 166, 159, 113, (309,442,0): 163, 156, 114, (309,443,0): 163, 157, 121, (309,444,0): 168, 161, 133, (309,445,0): 173, 166, 147, (309,446,0): 176, 168, 157, (309,447,0): 177, 170, 162, (309,448,0): 173, 166, 158, (309,449,0): 170, 166, 157, (309,450,0): 166, 163, 156, (309,451,0): 161, 160, 156, (309,452,0): 157, 157, 159, (309,453,0): 152, 153, 158, (309,454,0): 145, 148, 157, (309,455,0): 140, 144, 156, (309,456,0): 136, 139, 156, (309,457,0): 130, 133, 152, (309,458,0): 124, 126, 149, (309,459,0): 122, 122, 146, (309,460,0): 123, 123, 149, (309,461,0): 127, 124, 151, (309,462,0): 127, 124, 151, (309,463,0): 128, 123, 155, (309,464,0): 136, 128, 165, (309,465,0): 137, 126, 166, (309,466,0): 138, 127, 169, (309,467,0): 143, 131, 171, (309,468,0): 144, 132, 170, (309,469,0): 146, 135, 169, (309,470,0): 159, 149, 176, (309,471,0): 170, 165, 185, (309,472,0): 186, 184, 197, (309,473,0): 193, 198, 204, (309,474,0): 202, 212, 214, (309,475,0): 201, 217, 217, (309,476,0): 195, 216, 217, (309,477,0): 189, 217, 218, (309,478,0): 192, 223, 226, (309,479,0): 196, 229, 236, (309,480,0): 204, 236, 251, (309,481,0): 204, 235, 255, (309,482,0): 205, 236, 254, (309,483,0): 206, 237, 255, (309,484,0): 209, 241, 255, (309,485,0): 215, 244, 255, (309,486,0): 218, 247, 255, (309,487,0): 220, 249, 255, (309,488,0): 213, 241, 253, (309,489,0): 210, 238, 250, (309,490,0): 207, 235, 246, (309,491,0): 206, 233, 242, (309,492,0): 206, 233, 242, (309,493,0): 208, 235, 244, (309,494,0): 211, 238, 245, (309,495,0): 214, 241, 248, (309,496,0): 214, 242, 246, (309,497,0): 209, 240, 245, (309,498,0): 201, 238, 246, (309,499,0): 197, 240, 249, (309,500,0): 198, 242, 253, (309,501,0): 200, 244, 255, (309,502,0): 200, 242, 254, (309,503,0): 198, 240, 254, (309,504,0): 196, 240, 253, (309,505,0): 189, 236, 252, (309,506,0): 180, 230, 253, (309,507,0): 174, 225, 254, (309,508,0): 172, 221, 254, (309,509,0): 171, 215, 254, (309,510,0): 171, 208, 252, (309,511,0): 170, 204, 249, (309,512,0): 168, 207, 250, (309,513,0): 171, 214, 255, (309,514,0): 175, 220, 255, (309,515,0): 172, 219, 255, (309,516,0): 165, 217, 255, (309,517,0): 164, 219, 250, (309,518,0): 168, 225, 252, (309,519,0): 174, 232, 252, (309,520,0): 179, 238, 254, (309,521,0): 179, 237, 251, (309,522,0): 178, 234, 251, (309,523,0): 175, 225, 250, (309,524,0): 169, 215, 251, (309,525,0): 162, 202, 251, (309,526,0): 156, 192, 250, (309,527,0): 153, 187, 248, (309,528,0): 142, 173, 230, (309,529,0): 135, 161, 212, (309,530,0): 129, 147, 195, (309,531,0): 126, 138, 178, (309,532,0): 120, 123, 156, (309,533,0): 105, 101, 126, (309,534,0): 87, 78, 97, (309,535,0): 78, 66, 80, (309,536,0): 82, 69, 78, (309,537,0): 81, 68, 75, (309,538,0): 78, 66, 70, (309,539,0): 74, 62, 66, (309,540,0): 71, 56, 61, (309,541,0): 67, 52, 57, (309,542,0): 65, 48, 54, (309,543,0): 66, 47, 51, (309,544,0): 65, 45, 47, (309,545,0): 66, 44, 46, (309,546,0): 65, 43, 45, (309,547,0): 64, 42, 44, (309,548,0): 63, 41, 43, (309,549,0): 62, 40, 42, (309,550,0): 63, 38, 41, (309,551,0): 63, 38, 41, (309,552,0): 65, 39, 42, (309,553,0): 65, 39, 42, (309,554,0): 65, 39, 42, (309,555,0): 66, 40, 43, (309,556,0): 70, 41, 45, (309,557,0): 70, 44, 47, (309,558,0): 74, 45, 49, (309,559,0): 73, 46, 51, (309,560,0): 68, 46, 49, (309,561,0): 65, 46, 50, (309,562,0): 63, 44, 48, (309,563,0): 60, 45, 48, (309,564,0): 60, 48, 50, (309,565,0): 63, 53, 54, (309,566,0): 67, 58, 59, (309,567,0): 67, 63, 62, (309,568,0): 74, 73, 71, (309,569,0): 76, 75, 73, (309,570,0): 77, 76, 74, (309,571,0): 74, 73, 71, (309,572,0): 70, 66, 65, (309,573,0): 64, 60, 59, (309,574,0): 62, 56, 56, (309,575,0): 61, 55, 55, (309,576,0): 56, 48, 46, (309,577,0): 56, 46, 45, (309,578,0): 55, 45, 44, (309,579,0): 55, 45, 44, (309,580,0): 55, 45, 44, (309,581,0): 56, 46, 45, (309,582,0): 58, 46, 46, (309,583,0): 59, 47, 47, (309,584,0): 61, 47, 47, (309,585,0): 65, 51, 51, (309,586,0): 69, 53, 54, (309,587,0): 68, 52, 53, (309,588,0): 65, 49, 50, (309,589,0): 61, 45, 46, (309,590,0): 60, 44, 45, (309,591,0): 59, 45, 45, (309,592,0): 53, 41, 41, (309,593,0): 54, 42, 42, (309,594,0): 55, 43, 43, (309,595,0): 56, 44, 44, (309,596,0): 56, 44, 44, (309,597,0): 56, 44, 44, (309,598,0): 55, 43, 43, (309,599,0): 55, 43, 43, (310,0,0): 56, 45, 53, (310,1,0): 56, 45, 53, (310,2,0): 56, 45, 53, (310,3,0): 56, 45, 53, (310,4,0): 56, 45, 53, (310,5,0): 56, 45, 53, (310,6,0): 56, 45, 53, (310,7,0): 56, 45, 53, (310,8,0): 56, 45, 53, (310,9,0): 56, 45, 53, (310,10,0): 56, 45, 53, (310,11,0): 56, 45, 53, (310,12,0): 56, 45, 53, (310,13,0): 56, 45, 53, (310,14,0): 56, 45, 53, (310,15,0): 56, 45, 53, (310,16,0): 60, 47, 56, (310,17,0): 60, 47, 56, (310,18,0): 62, 46, 56, (310,19,0): 62, 46, 56, (310,20,0): 62, 46, 56, (310,21,0): 62, 46, 56, (310,22,0): 63, 46, 56, (310,23,0): 63, 46, 56, (310,24,0): 63, 43, 54, (310,25,0): 63, 43, 54, (310,26,0): 63, 43, 54, (310,27,0): 63, 43, 54, (310,28,0): 65, 43, 55, (310,29,0): 67, 45, 57, (310,30,0): 69, 47, 59, (310,31,0): 71, 48, 58, (310,32,0): 76, 49, 58, (310,33,0): 80, 49, 55, (310,34,0): 82, 50, 55, (310,35,0): 86, 51, 55, (310,36,0): 92, 53, 56, (310,37,0): 95, 55, 55, (310,38,0): 97, 56, 54, (310,39,0): 100, 57, 51, (310,40,0): 108, 60, 56, (310,41,0): 108, 61, 55, (310,42,0): 109, 60, 53, (310,43,0): 110, 61, 54, (310,44,0): 110, 61, 54, (310,45,0): 110, 63, 57, (310,46,0): 110, 63, 57, (310,47,0): 111, 64, 58, (310,48,0): 111, 67, 58, (310,49,0): 112, 68, 55, (310,50,0): 116, 70, 57, (310,51,0): 118, 72, 56, (310,52,0): 122, 75, 59, (310,53,0): 125, 78, 58, (310,54,0): 128, 80, 58, (310,55,0): 129, 82, 56, (310,56,0): 138, 88, 61, (310,57,0): 140, 89, 58, (310,58,0): 143, 90, 59, (310,59,0): 144, 91, 57, (310,60,0): 147, 93, 57, (310,61,0): 149, 95, 57, (310,62,0): 151, 96, 57, (310,63,0): 151, 96, 57, (310,64,0): 150, 94, 57, (310,65,0): 150, 94, 57, (310,66,0): 149, 95, 59, (310,67,0): 149, 95, 57, (310,68,0): 149, 95, 57, (310,69,0): 149, 95, 57, (310,70,0): 148, 96, 57, (310,71,0): 148, 96, 57, (310,72,0): 149, 100, 59, (310,73,0): 150, 101, 60, (310,74,0): 151, 102, 61, (310,75,0): 153, 104, 63, (310,76,0): 152, 105, 63, (310,77,0): 152, 105, 63, (310,78,0): 151, 104, 60, (310,79,0): 151, 104, 60, (310,80,0): 154, 107, 63, (310,81,0): 154, 110, 65, (310,82,0): 158, 114, 67, (310,83,0): 160, 120, 69, (310,84,0): 163, 123, 71, (310,85,0): 162, 127, 71, (310,86,0): 163, 129, 68, (310,87,0): 161, 130, 66, (310,88,0): 167, 138, 70, (310,89,0): 170, 142, 69, (310,90,0): 175, 145, 72, (310,91,0): 181, 152, 74, (310,92,0): 187, 156, 76, (310,93,0): 190, 159, 77, (310,94,0): 193, 160, 79, (310,95,0): 196, 161, 77, (310,96,0): 203, 168, 78, (310,97,0): 204, 169, 77, (310,98,0): 205, 170, 78, (310,99,0): 206, 171, 79, (310,100,0): 206, 171, 79, (310,101,0): 204, 171, 78, (310,102,0): 201, 170, 77, (310,103,0): 200, 170, 74, (310,104,0): 198, 170, 73, (310,105,0): 198, 170, 73, (310,106,0): 196, 170, 73, (310,107,0): 197, 172, 72, (310,108,0): 199, 173, 76, (310,109,0): 200, 176, 76, (310,110,0): 202, 178, 78, (310,111,0): 204, 180, 80, (310,112,0): 206, 181, 81, (310,113,0): 205, 180, 80, (310,114,0): 206, 178, 81, (310,115,0): 207, 178, 84, (310,116,0): 208, 179, 85, (310,117,0): 204, 175, 83, (310,118,0): 199, 168, 78, (310,119,0): 194, 162, 75, (310,120,0): 188, 153, 69, (310,121,0): 189, 154, 72, (310,122,0): 191, 156, 74, (310,123,0): 192, 157, 75, (310,124,0): 195, 158, 77, (310,125,0): 196, 159, 78, (310,126,0): 197, 160, 80, (310,127,0): 197, 160, 79, (310,128,0): 200, 164, 80, (310,129,0): 199, 163, 77, (310,130,0): 197, 159, 76, (310,131,0): 193, 156, 76, (310,132,0): 190, 152, 77, (310,133,0): 187, 149, 76, (310,134,0): 184, 145, 76, (310,135,0): 182, 145, 77, (310,136,0): 184, 146, 81, (310,137,0): 181, 146, 82, (310,138,0): 179, 143, 81, (310,139,0): 176, 142, 79, (310,140,0): 174, 140, 77, (310,141,0): 172, 138, 75, (310,142,0): 170, 136, 73, (310,143,0): 168, 137, 73, (310,144,0): 167, 138, 78, (310,145,0): 163, 137, 78, (310,146,0): 160, 134, 73, (310,147,0): 159, 133, 72, (310,148,0): 159, 133, 72, (310,149,0): 160, 134, 73, (310,150,0): 163, 138, 74, (310,151,0): 165, 140, 76, (310,152,0): 167, 142, 76, (310,153,0): 167, 142, 76, (310,154,0): 168, 143, 77, (310,155,0): 171, 146, 80, (310,156,0): 177, 152, 85, (310,157,0): 185, 160, 93, (310,158,0): 192, 167, 100, (310,159,0): 199, 172, 103, (310,160,0): 198, 170, 96, (310,161,0): 200, 173, 96, (310,162,0): 203, 176, 99, (310,163,0): 205, 178, 99, (310,164,0): 209, 182, 101, (310,165,0): 216, 190, 106, (310,166,0): 227, 199, 116, (310,167,0): 234, 206, 122, (310,168,0): 240, 210, 124, (310,169,0): 243, 213, 125, (310,170,0): 248, 217, 127, (310,171,0): 252, 221, 130, (310,172,0): 254, 223, 132, (310,173,0): 253, 222, 129, (310,174,0): 251, 220, 127, (310,175,0): 250, 219, 126, (310,176,0): 255, 224, 134, (310,177,0): 253, 221, 134, (310,178,0): 250, 218, 131, (310,179,0): 248, 216, 129, (310,180,0): 246, 214, 127, (310,181,0): 246, 214, 127, (310,182,0): 245, 215, 127, (310,183,0): 245, 215, 127, (310,184,0): 247, 217, 131, (310,185,0): 246, 219, 132, (310,186,0): 248, 221, 134, (310,187,0): 249, 223, 136, (310,188,0): 250, 224, 137, (310,189,0): 250, 224, 137, (310,190,0): 250, 224, 139, (310,191,0): 249, 223, 138, (310,192,0): 253, 224, 144, (310,193,0): 255, 225, 145, (310,194,0): 255, 226, 146, (310,195,0): 255, 227, 147, (310,196,0): 255, 228, 148, (310,197,0): 255, 228, 147, (310,198,0): 255, 228, 147, (310,199,0): 254, 227, 146, (310,200,0): 254, 227, 146, (310,201,0): 253, 228, 146, (310,202,0): 254, 229, 147, (310,203,0): 253, 231, 148, (310,204,0): 254, 232, 149, (310,205,0): 255, 233, 150, (310,206,0): 255, 234, 151, (310,207,0): 253, 235, 151, (310,208,0): 252, 237, 152, (310,209,0): 251, 239, 153, (310,210,0): 252, 240, 156, (310,211,0): 253, 243, 158, (310,212,0): 255, 245, 160, (310,213,0): 254, 246, 161, (310,214,0): 255, 249, 165, (310,215,0): 254, 249, 165, (310,216,0): 255, 251, 169, (310,217,0): 254, 252, 169, (310,218,0): 253, 252, 169, (310,219,0): 250, 252, 168, (310,220,0): 250, 252, 169, (310,221,0): 249, 251, 168, (310,222,0): 249, 251, 168, (310,223,0): 248, 252, 168, (310,224,0): 251, 254, 175, (310,225,0): 250, 255, 175, (310,226,0): 250, 255, 175, (310,227,0): 250, 255, 175, (310,228,0): 248, 255, 177, (310,229,0): 248, 255, 177, (310,230,0): 247, 255, 177, (310,231,0): 247, 255, 177, (310,232,0): 244, 255, 177, (310,233,0): 244, 255, 177, (310,234,0): 243, 255, 179, (310,235,0): 242, 254, 178, (310,236,0): 242, 254, 178, (310,237,0): 240, 254, 177, (310,238,0): 240, 254, 179, (310,239,0): 238, 254, 179, (310,240,0): 239, 255, 182, (310,241,0): 239, 255, 184, (310,242,0): 238, 255, 185, (310,243,0): 238, 255, 185, (310,244,0): 238, 254, 189, (310,245,0): 236, 255, 191, (310,246,0): 235, 255, 192, (310,247,0): 235, 255, 194, (310,248,0): 231, 252, 195, (310,249,0): 229, 252, 196, (310,250,0): 229, 253, 201, (310,251,0): 229, 253, 203, (310,252,0): 228, 254, 206, (310,253,0): 228, 254, 207, (310,254,0): 228, 255, 210, (310,255,0): 228, 255, 212, (310,256,0): 228, 255, 212, (310,257,0): 228, 255, 214, (310,258,0): 229, 255, 216, (310,259,0): 229, 255, 220, (310,260,0): 230, 255, 225, (310,261,0): 229, 255, 230, (310,262,0): 231, 254, 234, (310,263,0): 230, 254, 240, (310,264,0): 231, 254, 244, (310,265,0): 231, 254, 246, (310,266,0): 232, 254, 251, (310,267,0): 232, 254, 252, (310,268,0): 230, 254, 254, (310,269,0): 228, 252, 252, (310,270,0): 227, 251, 251, (310,271,0): 225, 251, 252, (310,272,0): 226, 254, 255, (310,273,0): 225, 255, 255, (310,274,0): 224, 255, 255, (310,275,0): 223, 255, 254, (310,276,0): 220, 254, 253, (310,277,0): 219, 253, 252, (310,278,0): 218, 254, 252, (310,279,0): 217, 253, 249, (310,280,0): 216, 253, 246, (310,281,0): 214, 254, 246, (310,282,0): 207, 247, 238, (310,283,0): 193, 235, 225, (310,284,0): 184, 226, 214, (310,285,0): 181, 225, 212, (310,286,0): 179, 221, 209, (310,287,0): 173, 215, 203, (310,288,0): 174, 216, 206, (310,289,0): 166, 206, 198, (310,290,0): 154, 194, 185, (310,291,0): 144, 184, 175, (310,292,0): 141, 178, 170, (310,293,0): 139, 176, 168, (310,294,0): 138, 173, 166, (310,295,0): 136, 173, 166, (310,296,0): 142, 178, 174, (310,297,0): 136, 175, 172, (310,298,0): 134, 174, 174, (310,299,0): 139, 180, 182, (310,300,0): 148, 193, 198, (310,301,0): 156, 203, 209, (310,302,0): 160, 209, 216, (310,303,0): 160, 208, 218, (310,304,0): 153, 199, 212, (310,305,0): 147, 193, 208, (310,306,0): 142, 188, 203, (310,307,0): 140, 186, 201, (310,308,0): 136, 182, 198, (310,309,0): 133, 178, 197, (310,310,0): 140, 185, 204, (310,311,0): 149, 194, 215, (310,312,0): 157, 202, 225, (310,313,0): 157, 201, 226, (310,314,0): 156, 200, 225, (310,315,0): 155, 199, 226, (310,316,0): 152, 196, 223, (310,317,0): 149, 193, 222, (310,318,0): 146, 190, 219, (310,319,0): 147, 186, 215, (310,320,0): 146, 177, 205, (310,321,0): 142, 168, 193, (310,322,0): 132, 157, 179, (310,323,0): 124, 147, 163, (310,324,0): 120, 139, 153, (310,325,0): 115, 132, 142, (310,326,0): 112, 125, 134, (310,327,0): 110, 120, 130, (310,328,0): 111, 117, 131, (310,329,0): 114, 117, 132, (310,330,0): 114, 116, 131, (310,331,0): 112, 114, 129, (310,332,0): 107, 109, 122, (310,333,0): 99, 103, 114, (310,334,0): 93, 96, 105, (310,335,0): 91, 91, 99, (310,336,0): 83, 80, 87, (310,337,0): 77, 70, 78, (310,338,0): 67, 60, 68, (310,339,0): 63, 56, 64, (310,340,0): 64, 57, 65, (310,341,0): 65, 58, 66, (310,342,0): 62, 55, 63, (310,343,0): 59, 52, 60, (310,344,0): 65, 58, 66, (310,345,0): 69, 62, 70, (310,346,0): 73, 66, 74, (310,347,0): 75, 68, 76, (310,348,0): 75, 68, 76, (310,349,0): 76, 69, 77, (310,350,0): 80, 73, 81, (310,351,0): 80, 77, 86, (310,352,0): 81, 84, 93, (310,353,0): 84, 88, 99, (310,354,0): 88, 91, 106, (310,355,0): 89, 95, 111, (310,356,0): 90, 95, 114, (310,357,0): 92, 97, 117, (310,358,0): 97, 101, 126, (310,359,0): 99, 105, 131, (310,360,0): 105, 110, 139, (310,361,0): 105, 112, 140, (310,362,0): 107, 114, 142, (310,363,0): 108, 115, 143, (310,364,0): 109, 116, 144, (310,365,0): 107, 117, 142, (310,366,0): 106, 116, 141, (310,367,0): 108, 116, 139, (310,368,0): 113, 116, 135, (310,369,0): 117, 116, 134, (310,370,0): 118, 115, 134, (310,371,0): 118, 115, 132, (310,372,0): 119, 115, 130, (310,373,0): 118, 114, 128, (310,374,0): 118, 112, 126, (310,375,0): 117, 111, 123, (310,376,0): 113, 105, 116, (310,377,0): 116, 106, 115, (310,378,0): 119, 108, 116, (310,379,0): 122, 111, 117, (310,380,0): 126, 113, 120, (310,381,0): 128, 116, 120, (310,382,0): 132, 117, 122, (310,383,0): 133, 118, 121, (310,384,0): 134, 123, 121, (310,385,0): 138, 127, 123, (310,386,0): 144, 133, 127, (310,387,0): 149, 138, 132, (310,388,0): 151, 141, 132, (310,389,0): 150, 140, 130, (310,390,0): 150, 137, 128, (310,391,0): 148, 135, 126, (310,392,0): 140, 127, 118, (310,393,0): 139, 126, 117, (310,394,0): 138, 124, 115, (310,395,0): 135, 121, 112, (310,396,0): 132, 118, 109, (310,397,0): 130, 115, 108, (310,398,0): 129, 114, 107, (310,399,0): 128, 113, 108, (310,400,0): 128, 108, 107, (310,401,0): 125, 104, 103, (310,402,0): 119, 98, 97, (310,403,0): 109, 88, 87, (310,404,0): 97, 76, 75, (310,405,0): 86, 65, 64, (310,406,0): 76, 56, 55, (310,407,0): 71, 51, 50, (310,408,0): 74, 54, 53, (310,409,0): 74, 54, 53, (310,410,0): 73, 55, 53, (310,411,0): 74, 56, 54, (310,412,0): 75, 57, 55, (310,413,0): 77, 59, 57, (310,414,0): 80, 62, 60, (310,415,0): 81, 63, 61, (310,416,0): 83, 68, 63, (310,417,0): 82, 69, 63, (310,418,0): 84, 71, 65, (310,419,0): 83, 73, 64, (310,420,0): 85, 75, 66, (310,421,0): 85, 76, 67, (310,422,0): 87, 78, 69, (310,423,0): 86, 80, 68, (310,424,0): 89, 85, 73, (310,425,0): 89, 87, 72, (310,426,0): 92, 90, 75, (310,427,0): 93, 94, 78, (310,428,0): 96, 97, 81, (310,429,0): 98, 101, 82, (310,430,0): 101, 104, 85, (310,431,0): 103, 106, 85, (310,432,0): 106, 109, 82, (310,433,0): 109, 112, 83, (310,434,0): 117, 116, 88, (310,435,0): 121, 120, 90, (310,436,0): 131, 126, 94, (310,437,0): 140, 136, 99, (310,438,0): 152, 147, 107, (310,439,0): 159, 155, 110, (310,440,0): 166, 162, 114, (310,441,0): 163, 159, 111, (310,442,0): 159, 155, 110, (310,443,0): 159, 155, 118, (310,444,0): 164, 159, 130, (310,445,0): 169, 164, 145, (310,446,0): 172, 165, 155, (310,447,0): 172, 167, 161, (310,448,0): 172, 167, 161, (310,449,0): 171, 168, 163, (310,450,0): 167, 166, 162, (310,451,0): 161, 161, 161, (310,452,0): 154, 155, 159, (310,453,0): 147, 150, 157, (310,454,0): 143, 147, 158, (310,455,0): 140, 146, 160, (310,456,0): 135, 140, 159, (310,457,0): 130, 135, 155, (310,458,0): 124, 129, 151, (310,459,0): 123, 125, 150, (310,460,0): 124, 125, 153, (310,461,0): 126, 126, 154, (310,462,0): 127, 127, 155, (310,463,0): 128, 125, 156, (310,464,0): 136, 130, 168, (310,465,0): 135, 127, 168, (310,466,0): 137, 128, 171, (310,467,0): 142, 131, 173, (310,468,0): 143, 133, 170, (310,469,0): 146, 136, 170, (310,470,0): 158, 149, 176, (310,471,0): 170, 167, 186, (310,472,0): 183, 183, 195, (310,473,0): 189, 196, 202, (310,474,0): 197, 211, 212, (310,475,0): 197, 217, 216, (310,476,0): 192, 218, 217, (310,477,0): 189, 219, 221, (310,478,0): 193, 226, 231, (310,479,0): 198, 232, 241, (310,480,0): 205, 237, 252, (310,481,0): 207, 236, 254, (310,482,0): 209, 236, 253, (310,483,0): 211, 239, 253, (310,484,0): 215, 241, 254, (310,485,0): 219, 242, 255, (310,486,0): 223, 245, 255, (310,487,0): 225, 247, 255, (310,488,0): 221, 241, 252, (310,489,0): 218, 238, 249, (310,490,0): 215, 235, 246, (310,491,0): 210, 232, 243, (310,492,0): 210, 232, 245, (310,493,0): 213, 235, 248, (310,494,0): 216, 238, 252, (310,495,0): 218, 242, 254, (310,496,0): 212, 241, 247, (310,497,0): 206, 239, 246, (310,498,0): 200, 238, 247, (310,499,0): 196, 240, 251, (310,500,0): 196, 242, 255, (310,501,0): 198, 246, 255, (310,502,0): 199, 246, 254, (310,503,0): 198, 245, 253, (310,504,0): 198, 244, 255, (310,505,0): 191, 238, 254, (310,506,0): 180, 230, 253, (310,507,0): 174, 223, 255, (310,508,0): 173, 218, 255, (310,509,0): 171, 213, 255, (310,510,0): 172, 204, 251, (310,511,0): 169, 200, 246, (310,512,0): 163, 197, 242, (310,513,0): 170, 207, 251, (310,514,0): 174, 215, 255, (310,515,0): 173, 216, 255, (310,516,0): 166, 213, 255, (310,517,0): 162, 214, 251, (310,518,0): 168, 223, 254, (310,519,0): 175, 233, 255, (310,520,0): 181, 240, 255, (310,521,0): 180, 237, 254, (310,522,0): 177, 233, 250, (310,523,0): 174, 226, 250, (310,524,0): 169, 215, 251, (310,525,0): 162, 202, 251, (310,526,0): 156, 192, 252, (310,527,0): 154, 185, 249, (310,528,0): 143, 172, 230, (310,529,0): 135, 158, 212, (310,530,0): 127, 143, 192, (310,531,0): 125, 134, 175, (310,532,0): 118, 118, 152, (310,533,0): 100, 96, 121, (310,534,0): 87, 78, 97, (310,535,0): 82, 70, 82, (310,536,0): 82, 70, 80, (310,537,0): 80, 69, 75, (310,538,0): 77, 66, 72, (310,539,0): 73, 62, 66, (310,540,0): 69, 57, 61, (310,541,0): 67, 52, 57, (310,542,0): 65, 49, 52, (310,543,0): 65, 46, 50, (310,544,0): 66, 46, 48, (310,545,0): 67, 45, 48, (310,546,0): 66, 44, 47, (310,547,0): 65, 43, 46, (310,548,0): 64, 42, 45, (310,549,0): 63, 41, 44, (310,550,0): 64, 39, 43, (310,551,0): 64, 39, 43, (310,552,0): 63, 38, 42, (310,553,0): 63, 38, 42, (310,554,0): 63, 38, 42, (310,555,0): 63, 38, 42, (310,556,0): 66, 39, 44, (310,557,0): 67, 42, 46, (310,558,0): 71, 44, 49, (310,559,0): 71, 46, 50, (310,560,0): 70, 48, 51, (310,561,0): 67, 48, 50, (310,562,0): 65, 46, 48, (310,563,0): 61, 47, 47, (310,564,0): 61, 49, 49, (310,565,0): 63, 55, 53, (310,566,0): 66, 61, 58, (310,567,0): 68, 64, 61, (310,568,0): 76, 75, 71, (310,569,0): 78, 77, 73, (310,570,0): 80, 79, 75, (310,571,0): 77, 76, 72, (310,572,0): 71, 70, 66, (310,573,0): 64, 63, 59, (310,574,0): 63, 59, 56, (310,575,0): 63, 58, 55, (310,576,0): 57, 49, 47, (310,577,0): 58, 48, 47, (310,578,0): 56, 46, 45, (310,579,0): 55, 45, 44, (310,580,0): 55, 45, 44, (310,581,0): 56, 46, 45, (310,582,0): 58, 46, 46, (310,583,0): 59, 47, 47, (310,584,0): 61, 47, 47, (310,585,0): 64, 50, 50, (310,586,0): 68, 52, 53, (310,587,0): 67, 51, 52, (310,588,0): 64, 48, 49, (310,589,0): 61, 45, 46, (310,590,0): 59, 43, 44, (310,591,0): 59, 45, 45, (310,592,0): 54, 42, 42, (310,593,0): 54, 44, 43, (310,594,0): 55, 45, 44, (310,595,0): 56, 46, 45, (310,596,0): 56, 46, 45, (310,597,0): 54, 44, 43, (310,598,0): 53, 43, 42, (310,599,0): 51, 41, 40, (311,0,0): 56, 45, 53, (311,1,0): 56, 45, 53, (311,2,0): 56, 45, 53, (311,3,0): 56, 45, 53, (311,4,0): 56, 45, 53, (311,5,0): 56, 45, 53, (311,6,0): 56, 45, 53, (311,7,0): 56, 45, 53, (311,8,0): 56, 45, 53, (311,9,0): 56, 45, 53, (311,10,0): 56, 45, 53, (311,11,0): 56, 45, 53, (311,12,0): 56, 45, 53, (311,13,0): 56, 45, 53, (311,14,0): 56, 45, 53, (311,15,0): 56, 45, 53, (311,16,0): 60, 47, 56, (311,17,0): 60, 47, 56, (311,18,0): 62, 46, 56, (311,19,0): 62, 46, 56, (311,20,0): 62, 46, 56, (311,21,0): 62, 46, 56, (311,22,0): 63, 46, 56, (311,23,0): 63, 46, 56, (311,24,0): 63, 43, 54, (311,25,0): 63, 43, 54, (311,26,0): 63, 43, 54, (311,27,0): 63, 43, 54, (311,28,0): 65, 43, 55, (311,29,0): 67, 45, 57, (311,30,0): 69, 47, 59, (311,31,0): 71, 48, 58, (311,32,0): 76, 49, 58, (311,33,0): 79, 49, 57, (311,34,0): 81, 50, 56, (311,35,0): 84, 52, 55, (311,36,0): 90, 54, 56, (311,37,0): 95, 55, 55, (311,38,0): 97, 56, 54, (311,39,0): 101, 56, 51, (311,40,0): 108, 61, 55, (311,41,0): 108, 61, 53, (311,42,0): 110, 61, 54, (311,43,0): 110, 61, 54, (311,44,0): 111, 62, 55, (311,45,0): 111, 62, 55, (311,46,0): 112, 63, 58, (311,47,0): 111, 64, 56, (311,48,0): 113, 66, 56, (311,49,0): 112, 68, 55, (311,50,0): 116, 70, 57, (311,51,0): 118, 72, 56, (311,52,0): 122, 75, 59, (311,53,0): 125, 78, 58, (311,54,0): 128, 80, 58, (311,55,0): 131, 81, 56, (311,56,0): 139, 88, 61, (311,57,0): 139, 88, 57, (311,58,0): 143, 90, 59, (311,59,0): 144, 91, 57, (311,60,0): 147, 93, 57, (311,61,0): 148, 94, 56, (311,62,0): 150, 95, 56, (311,63,0): 151, 96, 57, (311,64,0): 150, 94, 59, (311,65,0): 150, 94, 59, (311,66,0): 150, 94, 59, (311,67,0): 149, 95, 59, (311,68,0): 149, 95, 57, (311,69,0): 149, 95, 57, (311,70,0): 149, 95, 57, (311,71,0): 148, 96, 56, (311,72,0): 151, 99, 59, (311,73,0): 150, 101, 60, (311,74,0): 152, 103, 62, (311,75,0): 153, 104, 61, (311,76,0): 153, 104, 63, (311,77,0): 152, 105, 61, (311,78,0): 152, 105, 61, (311,79,0): 151, 104, 58, (311,80,0): 155, 108, 62, (311,81,0): 155, 111, 64, (311,82,0): 159, 115, 66, (311,83,0): 161, 121, 69, (311,84,0): 164, 125, 70, (311,85,0): 162, 128, 67, (311,86,0): 162, 128, 65, (311,87,0): 160, 129, 62, (311,88,0): 167, 139, 66, (311,89,0): 170, 143, 66, (311,90,0): 176, 147, 69, (311,91,0): 181, 153, 70, (311,92,0): 188, 157, 74, (311,93,0): 191, 161, 75, (311,94,0): 194, 162, 77, (311,95,0): 197, 163, 74, (311,96,0): 201, 166, 74, (311,97,0): 203, 167, 71, (311,98,0): 205, 169, 73, (311,99,0): 205, 171, 74, (311,100,0): 206, 171, 77, (311,101,0): 206, 172, 75, (311,102,0): 205, 172, 77, (311,103,0): 202, 172, 74, (311,104,0): 200, 172, 73, (311,105,0): 199, 171, 72, (311,106,0): 197, 172, 72, (311,107,0): 196, 172, 72, (311,108,0): 197, 173, 73, (311,109,0): 199, 175, 75, (311,110,0): 201, 177, 77, (311,111,0): 202, 178, 78, (311,112,0): 206, 182, 82, (311,113,0): 205, 180, 80, (311,114,0): 206, 178, 81, (311,115,0): 207, 179, 82, (311,116,0): 208, 180, 83, (311,117,0): 206, 177, 83, (311,118,0): 202, 171, 80, (311,119,0): 197, 166, 76, (311,120,0): 188, 154, 67, (311,121,0): 189, 154, 70, (311,122,0): 191, 156, 72, (311,123,0): 192, 157, 75, (311,124,0): 194, 157, 76, (311,125,0): 195, 158, 77, (311,126,0): 195, 158, 78, (311,127,0): 195, 158, 77, (311,128,0): 200, 164, 80, (311,129,0): 199, 163, 79, (311,130,0): 196, 159, 78, (311,131,0): 193, 156, 76, (311,132,0): 190, 152, 77, (311,133,0): 186, 149, 78, (311,134,0): 183, 146, 76, (311,135,0): 180, 145, 79, (311,136,0): 182, 147, 83, (311,137,0): 180, 146, 82, (311,138,0): 179, 145, 82, (311,139,0): 176, 142, 79, (311,140,0): 174, 140, 77, (311,141,0): 170, 139, 75, (311,142,0): 171, 137, 74, (311,143,0): 168, 136, 75, (311,144,0): 167, 138, 78, (311,145,0): 163, 137, 78, (311,146,0): 160, 134, 75, (311,147,0): 159, 133, 72, (311,148,0): 159, 133, 72, (311,149,0): 160, 134, 73, (311,150,0): 163, 137, 76, (311,151,0): 165, 140, 76, (311,152,0): 167, 142, 78, (311,153,0): 167, 142, 76, (311,154,0): 168, 143, 77, (311,155,0): 171, 146, 80, (311,156,0): 177, 152, 86, (311,157,0): 185, 160, 93, (311,158,0): 193, 168, 101, (311,159,0): 197, 173, 103, (311,160,0): 197, 171, 96, (311,161,0): 200, 173, 96, (311,162,0): 203, 176, 97, (311,163,0): 206, 179, 100, (311,164,0): 210, 183, 102, (311,165,0): 218, 191, 110, (311,166,0): 229, 201, 118, (311,167,0): 237, 209, 125, (311,168,0): 239, 208, 125, (311,169,0): 242, 212, 126, (311,170,0): 248, 216, 129, (311,171,0): 251, 220, 130, (311,172,0): 253, 222, 132, (311,173,0): 253, 222, 131, (311,174,0): 251, 220, 129, (311,175,0): 249, 218, 127, (311,176,0): 255, 223, 136, (311,177,0): 253, 221, 134, (311,178,0): 250, 218, 131, (311,179,0): 247, 215, 128, (311,180,0): 246, 214, 127, (311,181,0): 244, 214, 126, (311,182,0): 245, 215, 127, (311,183,0): 244, 217, 128, (311,184,0): 245, 218, 131, (311,185,0): 246, 219, 132, (311,186,0): 248, 222, 135, (311,187,0): 250, 224, 137, (311,188,0): 251, 225, 138, (311,189,0): 251, 226, 136, (311,190,0): 250, 224, 137, (311,191,0): 249, 223, 136, (311,192,0): 254, 226, 143, (311,193,0): 255, 226, 146, (311,194,0): 255, 227, 147, (311,195,0): 255, 228, 148, (311,196,0): 255, 228, 148, (311,197,0): 255, 228, 148, (311,198,0): 255, 228, 147, (311,199,0): 254, 227, 146, (311,200,0): 254, 227, 146, (311,201,0): 254, 227, 146, (311,202,0): 254, 229, 147, (311,203,0): 255, 230, 148, (311,204,0): 254, 232, 149, (311,205,0): 255, 233, 150, (311,206,0): 255, 234, 151, (311,207,0): 255, 234, 151, (311,208,0): 252, 237, 152, (311,209,0): 251, 239, 153, (311,210,0): 253, 241, 157, (311,211,0): 254, 242, 158, (311,212,0): 255, 245, 160, (311,213,0): 255, 247, 162, (311,214,0): 255, 249, 166, (311,215,0): 255, 250, 166, (311,216,0): 255, 251, 169, (311,217,0): 255, 251, 169, (311,218,0): 254, 252, 169, (311,219,0): 252, 251, 168, (311,220,0): 252, 251, 169, (311,221,0): 249, 251, 168, (311,222,0): 249, 251, 168, (311,223,0): 249, 250, 170, (311,224,0): 251, 254, 175, (311,225,0): 251, 254, 175, (311,226,0): 251, 254, 175, (311,227,0): 250, 255, 175, (311,228,0): 250, 254, 177, (311,229,0): 248, 255, 177, (311,230,0): 248, 255, 177, (311,231,0): 247, 255, 177, (311,232,0): 244, 255, 177, (311,233,0): 244, 255, 177, (311,234,0): 243, 255, 179, (311,235,0): 241, 255, 178, (311,236,0): 241, 255, 178, (311,237,0): 238, 255, 177, (311,238,0): 238, 254, 179, (311,239,0): 238, 254, 181, (311,240,0): 239, 255, 184, (311,241,0): 238, 255, 185, (311,242,0): 238, 255, 185, (311,243,0): 236, 255, 187, (311,244,0): 236, 255, 191, (311,245,0): 235, 255, 192, (311,246,0): 235, 255, 194, (311,247,0): 234, 255, 196, (311,248,0): 229, 252, 196, (311,249,0): 228, 253, 198, (311,250,0): 229, 253, 203, (311,251,0): 227, 253, 205, (311,252,0): 228, 254, 207, (311,253,0): 227, 254, 209, (311,254,0): 228, 255, 212, (311,255,0): 228, 255, 214, (311,256,0): 228, 255, 214, (311,257,0): 227, 255, 215, (311,258,0): 229, 255, 218, (311,259,0): 228, 255, 222, (311,260,0): 229, 255, 226, (311,261,0): 227, 255, 232, (311,262,0): 228, 255, 236, (311,263,0): 228, 255, 240, (311,264,0): 228, 254, 243, (311,265,0): 228, 255, 248, (311,266,0): 229, 255, 251, (311,267,0): 229, 255, 252, (311,268,0): 226, 255, 253, (311,269,0): 225, 254, 252, (311,270,0): 224, 253, 251, (311,271,0): 223, 251, 252, (311,272,0): 223, 253, 255, (311,273,0): 224, 253, 255, (311,274,0): 225, 254, 255, (311,275,0): 224, 255, 255, (311,276,0): 222, 253, 255, (311,277,0): 218, 252, 253, (311,278,0): 217, 251, 252, (311,279,0): 215, 251, 249, (311,280,0): 217, 253, 251, (311,281,0): 217, 255, 251, (311,282,0): 211, 250, 245, (311,283,0): 196, 237, 229, (311,284,0): 187, 228, 220, (311,285,0): 185, 228, 219, (311,286,0): 182, 225, 216, (311,287,0): 176, 219, 210, (311,288,0): 180, 222, 218, (311,289,0): 173, 215, 211, (311,290,0): 163, 205, 201, (311,291,0): 156, 197, 191, (311,292,0): 151, 192, 186, (311,293,0): 149, 188, 183, (311,294,0): 146, 185, 180, (311,295,0): 144, 183, 178, (311,296,0): 137, 176, 175, (311,297,0): 133, 173, 173, (311,298,0): 131, 172, 174, (311,299,0): 137, 181, 184, (311,300,0): 148, 193, 199, (311,301,0): 156, 205, 212, (311,302,0): 160, 208, 218, (311,303,0): 159, 207, 219, (311,304,0): 151, 197, 212, (311,305,0): 146, 192, 208, (311,306,0): 142, 188, 204, (311,307,0): 140, 185, 204, (311,308,0): 136, 181, 200, (311,309,0): 133, 178, 199, (311,310,0): 140, 185, 206, (311,311,0): 150, 195, 218, (311,312,0): 156, 200, 225, (311,313,0): 156, 200, 227, (311,314,0): 156, 200, 227, (311,315,0): 155, 199, 228, (311,316,0): 153, 197, 226, (311,317,0): 150, 193, 225, (311,318,0): 147, 190, 222, (311,319,0): 148, 187, 218, (311,320,0): 146, 177, 208, (311,321,0): 142, 169, 196, (311,322,0): 132, 158, 181, (311,323,0): 125, 148, 166, (311,324,0): 120, 139, 154, (311,325,0): 114, 130, 143, (311,326,0): 110, 122, 134, (311,327,0): 109, 117, 128, (311,328,0): 112, 118, 132, (311,329,0): 114, 117, 132, (311,330,0): 114, 116, 131, (311,331,0): 110, 112, 127, (311,332,0): 105, 107, 120, (311,333,0): 98, 100, 112, (311,334,0): 93, 93, 103, (311,335,0): 90, 89, 97, (311,336,0): 84, 79, 86, (311,337,0): 76, 69, 77, (311,338,0): 67, 60, 68, (311,339,0): 63, 56, 64, (311,340,0): 65, 58, 66, (311,341,0): 66, 59, 67, (311,342,0): 63, 56, 64, (311,343,0): 59, 52, 60, (311,344,0): 65, 58, 66, (311,345,0): 69, 62, 70, (311,346,0): 73, 66, 74, (311,347,0): 75, 68, 76, (311,348,0): 76, 69, 77, (311,349,0): 77, 70, 78, (311,350,0): 80, 73, 81, (311,351,0): 82, 76, 86, (311,352,0): 83, 83, 93, (311,353,0): 84, 88, 99, (311,354,0): 89, 91, 104, (311,355,0): 90, 93, 108, (311,356,0): 92, 95, 114, (311,357,0): 92, 97, 117, (311,358,0): 98, 100, 125, (311,359,0): 100, 104, 131, (311,360,0): 105, 109, 138, (311,361,0): 105, 110, 139, (311,362,0): 107, 112, 141, (311,363,0): 107, 114, 142, (311,364,0): 109, 114, 143, (311,365,0): 109, 116, 142, (311,366,0): 108, 115, 141, (311,367,0): 109, 115, 137, (311,368,0): 114, 115, 135, (311,369,0): 117, 116, 134, (311,370,0): 119, 116, 133, (311,371,0): 119, 116, 133, (311,372,0): 119, 115, 130, (311,373,0): 118, 114, 129, (311,374,0): 119, 113, 127, (311,375,0): 119, 111, 124, (311,376,0): 115, 104, 118, (311,377,0): 116, 106, 117, (311,378,0): 119, 107, 117, (311,379,0): 122, 111, 119, (311,380,0): 126, 113, 122, (311,381,0): 128, 115, 122, (311,382,0): 132, 117, 124, (311,383,0): 133, 118, 121, (311,384,0): 133, 121, 121, (311,385,0): 137, 126, 122, (311,386,0): 143, 132, 128, (311,387,0): 147, 136, 130, (311,388,0): 150, 140, 131, (311,389,0): 150, 140, 130, (311,390,0): 151, 139, 127, (311,391,0): 151, 139, 125, (311,392,0): 139, 127, 113, (311,393,0): 139, 125, 112, (311,394,0): 137, 123, 110, (311,395,0): 137, 120, 110, (311,396,0): 136, 119, 109, (311,397,0): 135, 118, 110, (311,398,0): 134, 117, 110, (311,399,0): 134, 117, 110, (311,400,0): 128, 107, 104, (311,401,0): 127, 103, 103, (311,402,0): 121, 97, 97, (311,403,0): 110, 86, 86, (311,404,0): 98, 74, 74, (311,405,0): 85, 64, 63, (311,406,0): 76, 55, 54, (311,407,0): 70, 50, 49, (311,408,0): 74, 54, 53, (311,409,0): 74, 54, 53, (311,410,0): 74, 54, 53, (311,411,0): 74, 56, 54, (311,412,0): 76, 58, 56, (311,413,0): 78, 60, 58, (311,414,0): 80, 62, 60, (311,415,0): 80, 65, 60, (311,416,0): 82, 69, 63, (311,417,0): 83, 70, 62, (311,418,0): 82, 72, 63, (311,419,0): 84, 74, 65, (311,420,0): 84, 75, 66, (311,421,0): 86, 78, 67, (311,422,0): 86, 80, 68, (311,423,0): 85, 82, 67, (311,424,0): 89, 87, 72, (311,425,0): 90, 88, 73, (311,426,0): 90, 91, 75, (311,427,0): 92, 95, 76, (311,428,0): 95, 98, 79, (311,429,0): 99, 102, 83, (311,430,0): 101, 106, 86, (311,431,0): 103, 108, 85, (311,432,0): 107, 110, 81, (311,433,0): 111, 114, 83, (311,434,0): 118, 119, 87, (311,435,0): 124, 124, 90, (311,436,0): 133, 130, 95, (311,437,0): 144, 140, 102, (311,438,0): 157, 153, 108, (311,439,0): 165, 161, 114, (311,440,0): 174, 170, 122, (311,441,0): 169, 167, 118, (311,442,0): 165, 162, 119, (311,443,0): 164, 162, 124, (311,444,0): 169, 165, 138, (311,445,0): 173, 170, 153, (311,446,0): 176, 171, 165, (311,447,0): 177, 173, 170, (311,448,0): 171, 167, 166, (311,449,0): 170, 169, 167, (311,450,0): 168, 168, 170, (311,451,0): 161, 162, 166, (311,452,0): 151, 154, 163, (311,453,0): 144, 148, 159, (311,454,0): 141, 147, 163, (311,455,0): 141, 148, 166, (311,456,0): 135, 141, 163, (311,457,0): 130, 136, 160, (311,458,0): 124, 130, 156, (311,459,0): 122, 126, 153, (311,460,0): 122, 126, 155, (311,461,0): 126, 127, 157, (311,462,0): 127, 128, 158, (311,463,0): 127, 126, 158, (311,464,0): 134, 129, 169, (311,465,0): 133, 126, 168, (311,466,0): 135, 128, 170, (311,467,0): 140, 132, 173, (311,468,0): 141, 133, 172, (311,469,0): 145, 138, 171, (311,470,0): 157, 151, 177, (311,471,0): 171, 168, 185, (311,472,0): 180, 182, 194, (311,473,0): 187, 196, 201, (311,474,0): 196, 210, 211, (311,475,0): 197, 217, 216, (311,476,0): 193, 219, 220, (311,477,0): 190, 221, 223, (311,478,0): 194, 229, 235, (311,479,0): 201, 235, 244, (311,480,0): 204, 236, 249, (311,481,0): 208, 236, 250, (311,482,0): 210, 236, 249, (311,483,0): 214, 238, 250, (311,484,0): 217, 239, 252, (311,485,0): 222, 242, 253, (311,486,0): 225, 243, 253, (311,487,0): 228, 245, 253, (311,488,0): 227, 241, 250, (311,489,0): 222, 239, 249, (311,490,0): 218, 234, 247, (311,491,0): 214, 232, 246, (311,492,0): 214, 231, 247, (311,493,0): 216, 235, 252, (311,494,0): 218, 239, 255, (311,495,0): 220, 243, 255, (311,496,0): 213, 242, 250, (311,497,0): 205, 240, 246, (311,498,0): 197, 240, 249, (311,499,0): 194, 241, 251, (311,500,0): 195, 245, 255, (311,501,0): 198, 248, 255, (311,502,0): 200, 249, 255, (311,503,0): 199, 248, 255, (311,504,0): 198, 246, 255, (311,505,0): 191, 240, 255, (311,506,0): 180, 230, 255, (311,507,0): 174, 223, 255, (311,508,0): 173, 216, 255, (311,509,0): 172, 210, 255, (311,510,0): 172, 203, 250, (311,511,0): 171, 198, 245, (311,512,0): 163, 190, 235, (311,513,0): 172, 201, 245, (311,514,0): 178, 210, 255, (311,515,0): 176, 212, 255, (311,516,0): 168, 209, 255, (311,517,0): 166, 211, 253, (311,518,0): 171, 221, 255, (311,519,0): 176, 231, 255, (311,520,0): 183, 239, 255, (311,521,0): 180, 237, 255, (311,522,0): 177, 232, 253, (311,523,0): 173, 224, 253, (311,524,0): 168, 213, 252, (311,525,0): 162, 202, 253, (311,526,0): 156, 192, 254, (311,527,0): 154, 185, 250, (311,528,0): 146, 172, 233, (311,529,0): 136, 157, 212, (311,530,0): 128, 142, 191, (311,531,0): 122, 129, 171, (311,532,0): 113, 114, 145, (311,533,0): 97, 93, 116, (311,534,0): 87, 78, 95, (311,535,0): 86, 76, 87, (311,536,0): 82, 70, 80, (311,537,0): 81, 70, 78, (311,538,0): 77, 66, 72, (311,539,0): 73, 62, 68, (311,540,0): 69, 57, 61, (311,541,0): 65, 53, 57, (311,542,0): 63, 48, 51, (311,543,0): 65, 46, 50, (311,544,0): 67, 47, 49, (311,545,0): 67, 45, 48, (311,546,0): 66, 44, 47, (311,547,0): 65, 43, 46, (311,548,0): 64, 42, 45, (311,549,0): 63, 41, 44, (311,550,0): 65, 40, 44, (311,551,0): 64, 39, 43, (311,552,0): 62, 37, 41, (311,553,0): 61, 36, 40, (311,554,0): 61, 36, 40, (311,555,0): 61, 36, 40, (311,556,0): 63, 38, 42, (311,557,0): 63, 41, 44, (311,558,0): 68, 43, 47, (311,559,0): 68, 46, 49, (311,560,0): 70, 50, 52, (311,561,0): 68, 49, 51, (311,562,0): 64, 48, 49, (311,563,0): 62, 48, 48, (311,564,0): 62, 50, 50, (311,565,0): 64, 56, 54, (311,566,0): 67, 62, 59, (311,567,0): 69, 65, 62, (311,568,0): 76, 75, 71, (311,569,0): 78, 77, 73, (311,570,0): 80, 79, 75, (311,571,0): 77, 76, 72, (311,572,0): 71, 70, 66, (311,573,0): 65, 64, 60, (311,574,0): 63, 59, 56, (311,575,0): 63, 58, 55, (311,576,0): 58, 50, 48, (311,577,0): 58, 48, 47, (311,578,0): 57, 47, 46, (311,579,0): 56, 46, 45, (311,580,0): 55, 45, 44, (311,581,0): 56, 46, 45, (311,582,0): 57, 45, 45, (311,583,0): 58, 46, 46, (311,584,0): 60, 46, 46, (311,585,0): 63, 49, 49, (311,586,0): 67, 51, 52, (311,587,0): 67, 51, 52, (311,588,0): 64, 48, 49, (311,589,0): 60, 44, 45, (311,590,0): 59, 43, 44, (311,591,0): 58, 44, 44, (311,592,0): 55, 43, 43, (311,593,0): 55, 45, 44, (311,594,0): 56, 46, 45, (311,595,0): 56, 46, 45, (311,596,0): 56, 46, 45, (311,597,0): 54, 44, 43, (311,598,0): 51, 41, 40, (311,599,0): 50, 40, 39, (312,0,0): 54, 43, 51, (312,1,0): 54, 43, 51, (312,2,0): 55, 44, 52, (312,3,0): 55, 44, 52, (312,4,0): 56, 45, 53, (312,5,0): 56, 45, 53, (312,6,0): 57, 46, 54, (312,7,0): 57, 46, 54, (312,8,0): 59, 48, 56, (312,9,0): 59, 48, 56, (312,10,0): 59, 48, 56, (312,11,0): 59, 48, 56, (312,12,0): 59, 48, 56, (312,13,0): 59, 48, 56, (312,14,0): 59, 48, 56, (312,15,0): 59, 48, 56, (312,16,0): 60, 47, 56, (312,17,0): 60, 47, 56, (312,18,0): 62, 46, 56, (312,19,0): 62, 46, 56, (312,20,0): 62, 46, 56, (312,21,0): 62, 46, 56, (312,22,0): 63, 46, 56, (312,23,0): 63, 46, 56, (312,24,0): 61, 41, 52, (312,25,0): 61, 41, 52, (312,26,0): 62, 42, 53, (312,27,0): 64, 44, 55, (312,28,0): 66, 44, 56, (312,29,0): 68, 46, 58, (312,30,0): 69, 47, 59, (312,31,0): 70, 47, 57, (312,32,0): 78, 52, 61, (312,33,0): 81, 51, 59, (312,34,0): 83, 52, 58, (312,35,0): 85, 53, 58, (312,36,0): 90, 54, 58, (312,37,0): 94, 55, 56, (312,38,0): 98, 57, 55, (312,39,0): 103, 58, 53, (312,40,0): 109, 62, 56, (312,41,0): 112, 63, 56, (312,42,0): 115, 65, 58, (312,43,0): 114, 64, 55, (312,44,0): 112, 62, 53, (312,45,0): 110, 62, 52, (312,46,0): 112, 63, 56, (312,47,0): 113, 66, 58, (312,48,0): 115, 68, 58, (312,49,0): 116, 70, 57, (312,50,0): 118, 70, 58, (312,51,0): 120, 73, 57, (312,52,0): 124, 75, 60, (312,53,0): 127, 79, 59, (312,54,0): 133, 82, 61, (312,55,0): 135, 85, 60, (312,56,0): 138, 87, 60, (312,57,0): 143, 90, 59, (312,58,0): 147, 92, 62, (312,59,0): 147, 93, 59, (312,60,0): 147, 91, 56, (312,61,0): 147, 91, 54, (312,62,0): 151, 93, 55, (312,63,0): 154, 96, 58, (312,64,0): 151, 92, 58, (312,65,0): 149, 93, 58, (312,66,0): 150, 94, 59, (312,67,0): 151, 95, 60, (312,68,0): 152, 96, 59, (312,69,0): 152, 98, 60, (312,70,0): 153, 100, 60, (312,71,0): 152, 100, 60, (312,72,0): 154, 102, 62, (312,73,0): 153, 102, 59, (312,74,0): 152, 101, 58, (312,75,0): 150, 102, 56, (312,76,0): 152, 103, 60, (312,77,0): 156, 108, 62, (312,78,0): 160, 112, 66, (312,79,0): 163, 115, 67, (312,80,0): 168, 122, 73, (312,81,0): 166, 123, 72, (312,82,0): 166, 123, 70, (312,83,0): 165, 126, 69, (312,84,0): 168, 129, 70, (312,85,0): 169, 135, 72, (312,86,0): 173, 139, 75, (312,87,0): 173, 143, 73, (312,88,0): 176, 148, 74, (312,89,0): 179, 152, 73, (312,90,0): 183, 154, 74, (312,91,0): 185, 157, 73, (312,92,0): 189, 159, 73, (312,93,0): 192, 162, 72, (312,94,0): 199, 168, 78, (312,95,0): 205, 172, 79, (312,96,0): 204, 168, 72, (312,97,0): 209, 171, 74, (312,98,0): 213, 175, 78, (312,99,0): 212, 176, 79, (312,100,0): 208, 174, 77, (312,101,0): 206, 172, 74, (312,102,0): 204, 171, 74, (312,103,0): 203, 174, 74, (312,104,0): 204, 176, 76, (312,105,0): 204, 176, 76, (312,106,0): 203, 178, 77, (312,107,0): 202, 179, 77, (312,108,0): 203, 179, 79, (312,109,0): 202, 180, 79, (312,110,0): 203, 181, 80, (312,111,0): 203, 181, 80, (312,112,0): 203, 179, 79, (312,113,0): 204, 180, 80, (312,114,0): 208, 183, 83, (312,115,0): 209, 184, 84, (312,116,0): 209, 184, 84, (312,117,0): 206, 180, 83, (312,118,0): 205, 176, 82, (312,119,0): 203, 174, 82, (312,120,0): 200, 169, 78, (312,121,0): 194, 163, 73, (312,122,0): 188, 156, 69, (312,123,0): 185, 153, 68, (312,124,0): 188, 153, 69, (312,125,0): 190, 155, 71, (312,126,0): 190, 155, 73, (312,127,0): 189, 154, 72, (312,128,0): 198, 163, 79, (312,129,0): 193, 158, 74, (312,130,0): 187, 152, 70, (312,131,0): 184, 148, 70, (312,132,0): 183, 147, 71, (312,133,0): 178, 144, 72, (312,134,0): 174, 139, 71, (312,135,0): 168, 135, 68, (312,136,0): 173, 139, 75, (312,137,0): 173, 139, 76, (312,138,0): 172, 138, 77, (312,139,0): 169, 137, 76, (312,140,0): 168, 136, 75, (312,141,0): 166, 136, 74, (312,142,0): 167, 136, 72, (312,143,0): 166, 136, 74, (312,144,0): 168, 139, 81, (312,145,0): 162, 136, 77, (312,146,0): 158, 132, 73, (312,147,0): 159, 133, 74, (312,148,0): 162, 136, 77, (312,149,0): 166, 140, 79, (312,150,0): 169, 143, 82, (312,151,0): 169, 144, 80, (312,152,0): 174, 149, 85, (312,153,0): 173, 148, 84, (312,154,0): 173, 148, 84, (312,155,0): 176, 151, 85, (312,156,0): 180, 155, 89, (312,157,0): 185, 160, 94, (312,158,0): 189, 164, 98, (312,159,0): 191, 167, 97, (312,160,0): 194, 168, 93, (312,161,0): 198, 173, 93, (312,162,0): 204, 179, 99, (312,163,0): 210, 185, 105, (312,164,0): 219, 192, 111, (312,165,0): 227, 200, 119, (312,166,0): 236, 210, 126, (312,167,0): 242, 216, 131, (312,168,0): 241, 213, 129, (312,169,0): 242, 215, 128, (312,170,0): 245, 215, 127, (312,171,0): 246, 216, 128, (312,172,0): 248, 218, 130, (312,173,0): 249, 219, 129, (312,174,0): 251, 220, 130, (312,175,0): 251, 220, 130, (312,176,0): 253, 221, 134, (312,177,0): 249, 217, 132, (312,178,0): 244, 214, 126, (312,179,0): 240, 210, 122, (312,180,0): 239, 209, 121, (312,181,0): 242, 212, 124, (312,182,0): 246, 216, 128, (312,183,0): 247, 220, 131, (312,184,0): 251, 224, 135, (312,185,0): 251, 226, 136, (312,186,0): 252, 227, 137, (312,187,0): 253, 228, 138, (312,188,0): 253, 229, 139, (312,189,0): 255, 232, 139, (312,190,0): 255, 232, 142, (312,191,0): 255, 232, 142, (312,192,0): 255, 230, 146, (312,193,0): 255, 229, 147, (312,194,0): 255, 228, 146, (312,195,0): 255, 228, 146, (312,196,0): 255, 228, 145, (312,197,0): 255, 227, 144, (312,198,0): 253, 227, 143, (312,199,0): 253, 227, 143, (312,200,0): 255, 229, 145, (312,201,0): 255, 230, 146, (312,202,0): 255, 230, 146, (312,203,0): 255, 230, 146, (312,204,0): 254, 232, 147, (312,205,0): 255, 233, 148, (312,206,0): 255, 233, 148, (312,207,0): 254, 233, 150, (312,208,0): 249, 233, 148, (312,209,0): 249, 234, 151, (312,210,0): 248, 236, 154, (312,211,0): 250, 238, 156, (312,212,0): 251, 240, 158, (312,213,0): 253, 242, 160, (312,214,0): 252, 244, 163, (312,215,0): 252, 245, 164, (312,216,0): 255, 250, 169, (312,217,0): 255, 250, 169, (312,218,0): 253, 250, 169, (312,219,0): 252, 251, 169, (312,220,0): 252, 251, 171, (312,221,0): 252, 251, 171, (312,222,0): 250, 251, 171, (312,223,0): 250, 251, 171, (312,224,0): 252, 253, 175, (312,225,0): 251, 254, 175, (312,226,0): 252, 255, 176, (312,227,0): 251, 255, 176, (312,228,0): 251, 255, 178, (312,229,0): 249, 255, 178, (312,230,0): 248, 255, 177, (312,231,0): 247, 255, 177, (312,232,0): 242, 253, 175, (312,233,0): 242, 253, 175, (312,234,0): 241, 253, 177, (312,235,0): 240, 254, 177, (312,236,0): 240, 254, 177, (312,237,0): 238, 255, 177, (312,238,0): 238, 254, 179, (312,239,0): 237, 255, 181, (312,240,0): 237, 254, 184, (312,241,0): 237, 254, 186, (312,242,0): 237, 254, 186, (312,243,0): 235, 254, 188, (312,244,0): 235, 254, 190, (312,245,0): 234, 254, 191, (312,246,0): 234, 254, 195, (312,247,0): 233, 254, 197, (312,248,0): 232, 255, 201, (312,249,0): 231, 255, 203, (312,250,0): 231, 255, 207, (312,251,0): 229, 255, 208, (312,252,0): 229, 255, 210, (312,253,0): 228, 255, 212, (312,254,0): 228, 255, 212, (312,255,0): 227, 255, 214, (312,256,0): 226, 254, 214, (312,257,0): 224, 254, 216, (312,258,0): 226, 253, 220, (312,259,0): 224, 253, 222, (312,260,0): 224, 253, 225, (312,261,0): 223, 252, 230, (312,262,0): 223, 252, 234, (312,263,0): 221, 252, 237, (312,264,0): 226, 255, 246, (312,265,0): 226, 255, 248, (312,266,0): 225, 255, 250, (312,267,0): 224, 255, 250, (312,268,0): 223, 255, 252, (312,269,0): 222, 254, 251, (312,270,0): 222, 254, 251, (312,271,0): 221, 253, 252, (312,272,0): 222, 251, 255, (312,273,0): 222, 251, 255, (312,274,0): 222, 251, 255, (312,275,0): 221, 252, 255, (312,276,0): 221, 252, 255, (312,277,0): 219, 253, 255, (312,278,0): 219, 253, 255, (312,279,0): 218, 254, 254, (312,280,0): 221, 255, 255, (312,281,0): 218, 255, 254, (312,282,0): 214, 253, 250, (312,283,0): 207, 248, 244, (312,284,0): 200, 241, 237, (312,285,0): 191, 232, 226, (312,286,0): 182, 225, 218, (312,287,0): 178, 220, 216, (312,288,0): 181, 225, 224, (312,289,0): 177, 221, 220, (312,290,0): 171, 215, 214, (312,291,0): 165, 207, 206, (312,292,0): 157, 199, 197, (312,293,0): 152, 192, 191, (312,294,0): 149, 189, 188, (312,295,0): 148, 188, 187, (312,296,0): 141, 181, 183, (312,297,0): 142, 183, 187, (312,298,0): 145, 186, 192, (312,299,0): 147, 190, 197, (312,300,0): 150, 194, 205, (312,301,0): 150, 198, 210, (312,302,0): 152, 200, 212, (312,303,0): 154, 202, 216, (312,304,0): 149, 195, 211, (312,305,0): 147, 190, 209, (312,306,0): 140, 183, 202, (312,307,0): 135, 177, 199, (312,308,0): 134, 176, 198, (312,309,0): 136, 178, 202, (312,310,0): 141, 183, 207, (312,311,0): 144, 186, 211, (312,312,0): 148, 189, 217, (312,313,0): 151, 192, 222, (312,314,0): 154, 195, 225, (312,315,0): 156, 197, 229, (312,316,0): 156, 197, 229, (312,317,0): 152, 192, 227, (312,318,0): 148, 188, 223, (312,319,0): 146, 185, 218, (312,320,0): 148, 178, 212, (312,321,0): 143, 170, 199, (312,322,0): 132, 158, 183, (312,323,0): 126, 148, 169, (312,324,0): 122, 141, 156, (312,325,0): 117, 133, 146, (312,326,0): 113, 125, 137, (312,327,0): 111, 119, 132, (312,328,0): 111, 114, 129, (312,329,0): 107, 109, 124, (312,330,0): 105, 104, 120, (312,331,0): 105, 104, 120, (312,332,0): 105, 104, 118, (312,333,0): 101, 101, 113, (312,334,0): 92, 90, 101, (312,335,0): 85, 82, 91, (312,336,0): 73, 66, 74, (312,337,0): 71, 61, 70, (312,338,0): 66, 56, 65, (312,339,0): 64, 54, 63, (312,340,0): 66, 56, 65, (312,341,0): 68, 58, 67, (312,342,0): 68, 58, 67, (312,343,0): 68, 58, 67, (312,344,0): 68, 58, 67, (312,345,0): 69, 59, 68, (312,346,0): 71, 61, 70, (312,347,0): 74, 64, 73, (312,348,0): 78, 68, 77, (312,349,0): 81, 71, 80, (312,350,0): 83, 73, 82, (312,351,0): 81, 75, 85, (312,352,0): 85, 83, 94, (312,353,0): 84, 86, 98, (312,354,0): 88, 87, 101, (312,355,0): 89, 91, 106, (312,356,0): 93, 94, 114, (312,357,0): 97, 99, 120, (312,358,0): 101, 101, 127, (312,359,0): 102, 104, 129, (312,360,0): 106, 107, 135, (312,361,0): 105, 109, 136, (312,362,0): 106, 110, 139, (312,363,0): 107, 112, 141, (312,364,0): 111, 115, 142, (312,365,0): 112, 118, 144, (312,366,0): 113, 119, 145, (312,367,0): 115, 120, 142, (312,368,0): 115, 116, 136, (312,369,0): 117, 114, 131, (312,370,0): 117, 114, 131, (312,371,0): 116, 113, 130, (312,372,0): 117, 113, 128, (312,373,0): 116, 112, 127, (312,374,0): 118, 112, 126, (312,375,0): 118, 110, 123, (312,376,0): 113, 102, 116, (312,377,0): 114, 104, 115, (312,378,0): 117, 105, 115, (312,379,0): 120, 107, 117, (312,380,0): 124, 108, 119, (312,381,0): 126, 110, 120, (312,382,0): 128, 112, 122, (312,383,0): 129, 114, 119, (312,384,0): 129, 117, 119, (312,385,0): 132, 121, 119, (312,386,0): 137, 126, 122, (312,387,0): 140, 129, 123, (312,388,0): 143, 130, 122, (312,389,0): 146, 134, 122, (312,390,0): 151, 137, 124, (312,391,0): 155, 142, 126, (312,392,0): 149, 136, 120, (312,393,0): 150, 134, 119, (312,394,0): 147, 131, 116, (312,395,0): 145, 127, 115, (312,396,0): 142, 124, 114, (312,397,0): 141, 123, 113, (312,398,0): 140, 121, 114, (312,399,0): 141, 120, 115, (312,400,0): 138, 112, 111, (312,401,0): 130, 104, 103, (312,402,0): 118, 92, 91, (312,403,0): 103, 77, 76, (312,404,0): 90, 64, 63, (312,405,0): 82, 58, 56, (312,406,0): 79, 55, 53, (312,407,0): 77, 56, 53, (312,408,0): 73, 52, 49, (312,409,0): 75, 56, 52, (312,410,0): 78, 59, 55, (312,411,0): 80, 61, 57, (312,412,0): 79, 61, 57, (312,413,0): 80, 62, 58, (312,414,0): 83, 65, 61, (312,415,0): 84, 69, 64, (312,416,0): 87, 74, 66, (312,417,0): 86, 76, 66, (312,418,0): 87, 77, 67, (312,419,0): 89, 79, 69, (312,420,0): 90, 82, 71, (312,421,0): 92, 84, 71, (312,422,0): 92, 86, 72, (312,423,0): 91, 88, 73, (312,424,0): 93, 91, 76, (312,425,0): 95, 94, 76, (312,426,0): 96, 97, 79, (312,427,0): 99, 102, 81, (312,428,0): 104, 107, 86, (312,429,0): 108, 113, 91, (312,430,0): 113, 118, 96, (312,431,0): 115, 121, 95, (312,432,0): 121, 124, 95, (312,433,0): 124, 128, 95, (312,434,0): 132, 133, 99, (312,435,0): 139, 139, 103, (312,436,0): 140, 138, 99, (312,437,0): 142, 141, 97, (312,438,0): 158, 156, 108, (312,439,0): 177, 175, 126, (312,440,0): 183, 181, 130, (312,441,0): 182, 181, 133, (312,442,0): 181, 179, 138, (312,443,0): 175, 175, 141, (312,444,0): 170, 170, 146, (312,445,0): 168, 169, 155, (312,446,0): 172, 171, 167, (312,447,0): 176, 174, 177, (312,448,0): 172, 170, 175, (312,449,0): 171, 170, 176, (312,450,0): 167, 167, 175, (312,451,0): 158, 161, 170, (312,452,0): 148, 151, 166, (312,453,0): 141, 147, 163, (312,454,0): 139, 145, 167, (312,455,0): 139, 147, 170, (312,456,0): 130, 137, 165, (312,457,0): 131, 138, 167, (312,458,0): 131, 138, 167, (312,459,0): 130, 135, 167, (312,460,0): 127, 132, 164, (312,461,0): 128, 131, 164, (312,462,0): 131, 134, 167, (312,463,0): 137, 137, 173, (312,464,0): 143, 141, 181, (312,465,0): 141, 135, 179, (312,466,0): 141, 135, 179, (312,467,0): 146, 139, 181, (312,468,0): 148, 140, 179, (312,469,0): 149, 142, 175, (312,470,0): 156, 150, 176, (312,471,0): 164, 163, 179, (312,472,0): 176, 178, 190, (312,473,0): 182, 191, 196, (312,474,0): 188, 202, 203, (312,475,0): 185, 205, 206, (312,476,0): 178, 203, 207, (312,477,0): 179, 208, 212, (312,478,0): 190, 223, 232, (312,479,0): 202, 236, 245, (312,480,0): 208, 241, 250, (312,481,0): 212, 240, 251, (312,482,0): 218, 245, 254, (312,483,0): 226, 251, 255, (312,484,0): 235, 255, 255, (312,485,0): 237, 255, 255, (312,486,0): 237, 252, 255, (312,487,0): 233, 248, 255, (312,488,0): 233, 246, 254, (312,489,0): 232, 245, 254, (312,490,0): 229, 243, 254, (312,491,0): 222, 238, 253, (312,492,0): 217, 234, 252, (312,493,0): 216, 234, 254, (312,494,0): 217, 238, 255, (312,495,0): 220, 243, 255, (312,496,0): 222, 252, 255, (312,497,0): 207, 244, 252, (312,498,0): 192, 236, 247, (312,499,0): 187, 235, 247, (312,500,0): 190, 242, 253, (312,501,0): 196, 251, 255, (312,502,0): 201, 252, 255, (312,503,0): 202, 251, 255, (312,504,0): 203, 251, 255, (312,505,0): 202, 251, 255, (312,506,0): 191, 240, 255, (312,507,0): 178, 223, 255, (312,508,0): 169, 210, 254, (312,509,0): 166, 202, 250, (312,510,0): 162, 190, 237, (312,511,0): 155, 177, 224, (312,512,0): 142, 161, 204, (312,513,0): 145, 164, 207, (312,514,0): 149, 171, 218, (312,515,0): 155, 183, 231, (312,516,0): 156, 188, 239, (312,517,0): 157, 195, 244, (312,518,0): 168, 211, 254, (312,519,0): 180, 228, 255, (312,520,0): 182, 233, 255, (312,521,0): 186, 237, 255, (312,522,0): 185, 236, 255, (312,523,0): 177, 226, 255, (312,524,0): 171, 216, 255, (312,525,0): 167, 206, 255, (312,526,0): 160, 195, 255, (312,527,0): 154, 185, 252, (312,528,0): 145, 169, 231, (312,529,0): 136, 155, 213, (312,530,0): 122, 134, 184, (312,531,0): 105, 112, 154, (312,532,0): 95, 96, 127, (312,533,0): 86, 83, 104, (312,534,0): 79, 73, 87, (312,535,0): 74, 66, 77, (312,536,0): 83, 73, 82, (312,537,0): 83, 73, 81, (312,538,0): 83, 73, 81, (312,539,0): 81, 72, 77, (312,540,0): 77, 66, 70, (312,541,0): 71, 59, 63, (312,542,0): 67, 52, 55, (312,543,0): 66, 47, 49, (312,544,0): 65, 42, 48, (312,545,0): 67, 42, 48, (312,546,0): 66, 41, 47, (312,547,0): 65, 40, 46, (312,548,0): 61, 38, 44, (312,549,0): 60, 37, 43, (312,550,0): 59, 36, 42, (312,551,0): 59, 36, 42, (312,552,0): 56, 33, 39, (312,553,0): 56, 33, 39, (312,554,0): 58, 35, 41, (312,555,0): 60, 37, 43, (312,556,0): 63, 40, 46, (312,557,0): 66, 45, 50, (312,558,0): 71, 48, 54, (312,559,0): 72, 51, 56, (312,560,0): 69, 49, 51, (312,561,0): 68, 49, 51, (312,562,0): 65, 49, 50, (312,563,0): 62, 50, 50, (312,564,0): 64, 54, 53, (312,565,0): 70, 62, 60, (312,566,0): 79, 74, 71, (312,567,0): 86, 82, 79, (312,568,0): 89, 88, 84, (312,569,0): 88, 89, 84, (312,570,0): 88, 89, 84, (312,571,0): 85, 86, 81, (312,572,0): 81, 80, 76, (312,573,0): 73, 72, 68, (312,574,0): 66, 65, 61, (312,575,0): 64, 60, 57, (312,576,0): 66, 58, 56, (312,577,0): 62, 52, 51, (312,578,0): 58, 48, 47, (312,579,0): 56, 46, 45, (312,580,0): 58, 48, 47, (312,581,0): 59, 49, 48, (312,582,0): 60, 48, 48, (312,583,0): 59, 47, 47, (312,584,0): 66, 52, 52, (312,585,0): 64, 50, 50, (312,586,0): 62, 46, 47, (312,587,0): 60, 44, 45, (312,588,0): 58, 42, 43, (312,589,0): 58, 42, 43, (312,590,0): 58, 42, 43, (312,591,0): 58, 44, 44, (312,592,0): 52, 40, 40, (312,593,0): 52, 42, 41, (312,594,0): 52, 42, 41, (312,595,0): 53, 43, 42, (312,596,0): 52, 42, 41, (312,597,0): 51, 41, 40, (312,598,0): 49, 39, 38, (312,599,0): 48, 38, 37, (313,0,0): 54, 43, 51, (313,1,0): 55, 44, 52, (313,2,0): 55, 44, 52, (313,3,0): 56, 45, 53, (313,4,0): 56, 45, 53, (313,5,0): 57, 46, 54, (313,6,0): 57, 46, 54, (313,7,0): 57, 46, 54, (313,8,0): 59, 48, 56, (313,9,0): 59, 48, 56, (313,10,0): 59, 48, 56, (313,11,0): 59, 48, 56, (313,12,0): 59, 48, 56, (313,13,0): 59, 48, 56, (313,14,0): 59, 48, 56, (313,15,0): 59, 48, 56, (313,16,0): 60, 47, 56, (313,17,0): 60, 47, 56, (313,18,0): 62, 46, 56, (313,19,0): 62, 46, 56, (313,20,0): 62, 46, 56, (313,21,0): 62, 46, 56, (313,22,0): 63, 46, 56, (313,23,0): 63, 46, 56, (313,24,0): 61, 41, 52, (313,25,0): 62, 42, 53, (313,26,0): 63, 43, 54, (313,27,0): 64, 44, 55, (313,28,0): 66, 44, 56, (313,29,0): 67, 45, 57, (313,30,0): 68, 46, 58, (313,31,0): 70, 46, 59, (313,32,0): 78, 52, 63, (313,33,0): 79, 52, 61, (313,34,0): 81, 51, 59, (313,35,0): 84, 52, 57, (313,36,0): 88, 53, 57, (313,37,0): 94, 55, 56, (313,38,0): 99, 58, 56, (313,39,0): 103, 58, 53, (313,40,0): 108, 61, 55, (313,41,0): 111, 62, 55, (313,42,0): 114, 64, 55, (313,43,0): 113, 63, 54, (313,44,0): 111, 61, 52, (313,45,0): 111, 61, 52, (313,46,0): 113, 63, 54, (313,47,0): 114, 66, 56, (313,48,0): 116, 68, 58, (313,49,0): 116, 70, 57, (313,50,0): 118, 70, 58, (313,51,0): 120, 73, 57, (313,52,0): 124, 75, 60, (313,53,0): 127, 79, 59, (313,54,0): 132, 81, 60, (313,55,0): 135, 83, 59, (313,56,0): 139, 85, 59, (313,57,0): 143, 90, 59, (313,58,0): 147, 92, 62, (313,59,0): 148, 94, 60, (313,60,0): 148, 92, 57, (313,61,0): 148, 92, 55, (313,62,0): 152, 94, 56, (313,63,0): 154, 96, 58, (313,64,0): 153, 94, 60, (313,65,0): 153, 94, 60, (313,66,0): 152, 96, 61, (313,67,0): 153, 97, 60, (313,68,0): 154, 98, 61, (313,69,0): 155, 100, 61, (313,70,0): 155, 102, 62, (313,71,0): 156, 103, 61, (313,72,0): 154, 101, 59, (313,73,0): 153, 102, 57, (313,74,0): 152, 101, 56, (313,75,0): 153, 102, 55, (313,76,0): 154, 106, 58, (313,77,0): 158, 110, 62, (313,78,0): 163, 115, 67, (313,79,0): 166, 118, 69, (313,80,0): 169, 123, 71, (313,81,0): 168, 125, 70, (313,82,0): 170, 128, 70, (313,83,0): 171, 133, 71, (313,84,0): 175, 137, 75, (313,85,0): 177, 144, 77, (313,86,0): 180, 147, 78, (313,87,0): 180, 150, 77, (313,88,0): 178, 151, 72, (313,89,0): 181, 154, 73, (313,90,0): 185, 157, 73, (313,91,0): 186, 159, 72, (313,92,0): 189, 159, 69, (313,93,0): 192, 163, 71, (313,94,0): 198, 167, 76, (313,95,0): 204, 171, 76, (313,96,0): 205, 169, 72, (313,97,0): 210, 172, 73, (313,98,0): 214, 176, 77, (313,99,0): 215, 177, 80, (313,100,0): 211, 175, 78, (313,101,0): 207, 173, 75, (313,102,0): 206, 174, 75, (313,103,0): 204, 175, 75, (313,104,0): 205, 176, 76, (313,105,0): 203, 178, 77, (313,106,0): 203, 178, 77, (313,107,0): 203, 180, 78, (313,108,0): 202, 180, 79, (313,109,0): 201, 182, 80, (313,110,0): 201, 182, 80, (313,111,0): 201, 182, 80, (313,112,0): 203, 181, 80, (313,113,0): 205, 181, 81, (313,114,0): 208, 183, 83, (313,115,0): 209, 184, 84, (313,116,0): 209, 184, 84, (313,117,0): 208, 183, 83, (313,118,0): 208, 180, 83, (313,119,0): 207, 179, 82, (313,120,0): 207, 176, 83, (313,121,0): 201, 170, 79, (313,122,0): 192, 161, 71, (313,123,0): 186, 154, 67, (313,124,0): 186, 152, 65, (313,125,0): 186, 151, 67, (313,126,0): 188, 153, 71, (313,127,0): 188, 153, 71, (313,128,0): 194, 159, 75, (313,129,0): 191, 156, 74, (313,130,0): 187, 152, 71, (313,131,0): 181, 148, 69, (313,132,0): 178, 144, 70, (313,133,0): 174, 142, 69, (313,134,0): 171, 138, 69, (313,135,0): 169, 135, 71, (313,136,0): 170, 136, 73, (313,137,0): 167, 136, 72, (313,138,0): 166, 134, 73, (313,139,0): 164, 134, 72, (313,140,0): 163, 133, 71, (313,141,0): 163, 133, 71, (313,142,0): 163, 133, 69, (313,143,0): 163, 135, 72, (313,144,0): 163, 137, 78, (313,145,0): 160, 134, 77, (313,146,0): 156, 130, 71, (313,147,0): 157, 131, 72, (313,148,0): 161, 135, 76, (313,149,0): 165, 139, 80, (313,150,0): 167, 141, 80, (313,151,0): 167, 141, 80, (313,152,0): 172, 146, 85, (313,153,0): 173, 148, 84, (313,154,0): 175, 150, 86, (313,155,0): 178, 153, 89, (313,156,0): 181, 156, 90, (313,157,0): 184, 159, 93, (313,158,0): 186, 161, 95, (313,159,0): 187, 163, 93, (313,160,0): 191, 165, 90, (313,161,0): 197, 172, 92, (313,162,0): 206, 181, 101, (313,163,0): 214, 189, 109, (313,164,0): 222, 195, 114, (313,165,0): 229, 202, 121, (313,166,0): 236, 210, 126, (313,167,0): 241, 215, 131, (313,168,0): 243, 215, 131, (313,169,0): 243, 215, 131, (313,170,0): 246, 216, 130, (313,171,0): 247, 217, 129, (313,172,0): 249, 219, 131, (313,173,0): 250, 220, 132, (313,174,0): 252, 220, 133, (313,175,0): 252, 220, 133, (313,176,0): 251, 219, 134, (313,177,0): 249, 217, 132, (313,178,0): 244, 214, 126, (313,179,0): 241, 211, 123, (313,180,0): 241, 211, 123, (313,181,0): 242, 215, 126, (313,182,0): 246, 219, 130, (313,183,0): 249, 222, 133, (313,184,0): 251, 226, 136, (313,185,0): 251, 226, 136, (313,186,0): 252, 227, 137, (313,187,0): 252, 229, 136, (313,188,0): 253, 230, 137, (313,189,0): 255, 232, 139, (313,190,0): 255, 233, 140, (313,191,0): 255, 232, 142, (313,192,0): 255, 230, 146, (313,193,0): 255, 229, 147, (313,194,0): 255, 228, 146, (313,195,0): 255, 229, 146, (313,196,0): 255, 228, 145, (313,197,0): 254, 228, 144, (313,198,0): 254, 228, 144, (313,199,0): 253, 227, 143, (313,200,0): 255, 230, 146, (313,201,0): 255, 230, 146, (313,202,0): 255, 230, 146, (313,203,0): 254, 232, 147, (313,204,0): 254, 232, 147, (313,205,0): 255, 233, 148, (313,206,0): 255, 233, 148, (313,207,0): 255, 235, 149, (313,208,0): 250, 233, 151, (313,209,0): 249, 234, 151, (313,210,0): 251, 236, 155, (313,211,0): 250, 238, 156, (313,212,0): 252, 240, 158, (313,213,0): 253, 242, 160, (313,214,0): 254, 243, 163, (313,215,0): 253, 245, 164, (313,216,0): 255, 248, 168, (313,217,0): 254, 249, 168, (313,218,0): 254, 249, 168, (313,219,0): 252, 249, 168, (313,220,0): 252, 249, 170, (313,221,0): 251, 250, 170, (313,222,0): 251, 250, 170, (313,223,0): 249, 250, 170, (313,224,0): 251, 252, 174, (313,225,0): 251, 252, 174, (313,226,0): 252, 253, 175, (313,227,0): 251, 254, 175, (313,228,0): 251, 254, 177, (313,229,0): 250, 254, 177, (313,230,0): 247, 254, 176, (313,231,0): 246, 255, 176, (313,232,0): 242, 253, 175, (313,233,0): 241, 254, 175, (313,234,0): 240, 254, 177, (313,235,0): 238, 255, 177, (313,236,0): 238, 255, 177, (313,237,0): 237, 255, 177, (313,238,0): 237, 255, 179, (313,239,0): 237, 255, 181, (313,240,0): 237, 254, 184, (313,241,0): 237, 254, 186, (313,242,0): 235, 254, 188, (313,243,0): 235, 254, 190, (313,244,0): 234, 254, 191, (313,245,0): 234, 254, 193, (313,246,0): 233, 254, 197, (313,247,0): 231, 254, 198, (313,248,0): 232, 255, 204, (313,249,0): 232, 255, 206, (313,250,0): 230, 255, 209, (313,251,0): 229, 255, 211, (313,252,0): 229, 255, 213, (313,253,0): 229, 255, 213, (313,254,0): 228, 255, 215, (313,255,0): 228, 255, 216, (313,256,0): 224, 254, 216, (313,257,0): 224, 254, 218, (313,258,0): 224, 253, 222, (313,259,0): 223, 253, 225, (313,260,0): 223, 253, 229, (313,261,0): 221, 253, 232, (313,262,0): 221, 252, 236, (313,263,0): 220, 252, 239, (313,264,0): 225, 255, 248, (313,265,0): 224, 255, 250, (313,266,0): 223, 255, 250, (313,267,0): 221, 255, 250, (313,268,0): 219, 255, 251, (313,269,0): 219, 255, 251, (313,270,0): 218, 254, 250, (313,271,0): 219, 253, 252, (313,272,0): 221, 252, 255, (313,273,0): 222, 251, 255, (313,274,0): 222, 251, 255, (313,275,0): 221, 252, 255, (313,276,0): 221, 252, 255, (313,277,0): 219, 253, 255, (313,278,0): 219, 253, 255, (313,279,0): 218, 253, 255, (313,280,0): 220, 255, 255, (313,281,0): 219, 255, 255, (313,282,0): 215, 254, 253, (313,283,0): 210, 249, 248, (313,284,0): 202, 242, 241, (313,285,0): 193, 234, 230, (313,286,0): 185, 225, 224, (313,287,0): 179, 221, 220, (313,288,0): 179, 224, 227, (313,289,0): 176, 221, 226, (313,290,0): 171, 216, 221, (313,291,0): 165, 209, 212, (313,292,0): 161, 202, 206, (313,293,0): 155, 196, 198, (313,294,0): 152, 192, 194, (313,295,0): 150, 190, 192, (313,296,0): 142, 183, 187, (313,297,0): 144, 185, 191, (313,298,0): 145, 188, 195, (313,299,0): 148, 191, 200, (313,300,0): 150, 194, 207, (313,301,0): 150, 196, 211, (313,302,0): 151, 199, 213, (313,303,0): 151, 198, 214, (313,304,0): 150, 193, 212, (313,305,0): 147, 190, 209, (313,306,0): 142, 183, 205, (313,307,0): 137, 179, 201, (313,308,0): 137, 177, 202, (313,309,0): 138, 180, 204, (313,310,0): 142, 182, 208, (313,311,0): 144, 186, 211, (313,312,0): 148, 187, 218, (313,313,0): 150, 191, 221, (313,314,0): 154, 193, 226, (313,315,0): 155, 196, 228, (313,316,0): 156, 194, 230, (313,317,0): 152, 192, 227, (313,318,0): 149, 187, 224, (313,319,0): 148, 184, 220, (313,320,0): 150, 180, 214, (313,321,0): 145, 172, 202, (313,322,0): 135, 161, 188, (313,323,0): 129, 151, 174, (313,324,0): 124, 143, 160, (313,325,0): 120, 136, 151, (313,326,0): 116, 128, 142, (313,327,0): 114, 122, 135, (313,328,0): 111, 114, 129, (313,329,0): 110, 109, 125, (313,330,0): 107, 106, 122, (313,331,0): 108, 106, 120, (313,332,0): 107, 105, 119, (313,333,0): 102, 100, 111, (313,334,0): 93, 90, 99, (313,335,0): 84, 81, 90, (313,336,0): 73, 66, 74, (313,337,0): 71, 61, 70, (313,338,0): 66, 56, 65, (313,339,0): 64, 54, 63, (313,340,0): 66, 56, 65, (313,341,0): 68, 58, 67, (313,342,0): 68, 58, 67, (313,343,0): 68, 58, 67, (313,344,0): 69, 59, 68, (313,345,0): 70, 60, 69, (313,346,0): 73, 63, 72, (313,347,0): 76, 66, 75, (313,348,0): 79, 69, 78, (313,349,0): 82, 72, 81, (313,350,0): 84, 74, 83, (313,351,0): 84, 76, 87, (313,352,0): 87, 84, 95, (313,353,0): 87, 85, 98, (313,354,0): 89, 87, 100, (313,355,0): 93, 91, 105, (313,356,0): 96, 95, 113, (313,357,0): 100, 98, 119, (313,358,0): 103, 101, 125, (313,359,0): 103, 103, 129, (313,360,0): 106, 106, 132, (313,361,0): 107, 107, 135, (313,362,0): 107, 108, 136, (313,363,0): 109, 110, 138, (313,364,0): 112, 113, 141, (313,365,0): 114, 116, 141, (313,366,0): 113, 117, 142, (313,367,0): 116, 118, 139, (313,368,0): 117, 116, 134, (313,369,0): 118, 115, 132, (313,370,0): 117, 114, 131, (313,371,0): 116, 113, 130, (313,372,0): 117, 113, 128, (313,373,0): 118, 111, 127, (313,374,0): 118, 110, 125, (313,375,0): 118, 110, 125, (313,376,0): 114, 103, 117, (313,377,0): 115, 103, 117, (313,378,0): 118, 104, 117, (313,379,0): 120, 107, 117, (313,380,0): 124, 108, 119, (313,381,0): 126, 110, 121, (313,382,0): 127, 111, 122, (313,383,0): 128, 112, 122, (313,384,0): 129, 114, 119, (313,385,0): 130, 118, 118, (313,386,0): 134, 123, 121, (313,387,0): 139, 125, 122, (313,388,0): 140, 127, 119, (313,389,0): 144, 130, 119, (313,390,0): 148, 134, 121, (313,391,0): 154, 138, 123, (313,392,0): 157, 141, 125, (313,393,0): 156, 139, 123, (313,394,0): 153, 134, 120, (313,395,0): 149, 130, 116, (313,396,0): 148, 126, 115, (313,397,0): 146, 123, 115, (313,398,0): 145, 122, 116, (313,399,0): 146, 121, 116, (313,400,0): 142, 114, 111, (313,401,0): 132, 102, 102, (313,402,0): 115, 85, 85, (313,403,0): 99, 69, 69, (313,404,0): 87, 59, 58, (313,405,0): 80, 54, 53, (313,406,0): 79, 53, 52, (313,407,0): 78, 54, 52, (313,408,0): 73, 49, 47, (313,409,0): 74, 53, 50, (313,410,0): 78, 57, 54, (313,411,0): 78, 59, 55, (313,412,0): 78, 59, 55, (313,413,0): 79, 61, 57, (313,414,0): 82, 64, 60, (313,415,0): 84, 69, 62, (313,416,0): 89, 76, 67, (313,417,0): 88, 78, 68, (313,418,0): 89, 79, 69, (313,419,0): 90, 80, 68, (313,420,0): 91, 83, 70, (313,421,0): 92, 84, 71, (313,422,0): 93, 87, 73, (313,423,0): 91, 88, 71, (313,424,0): 95, 94, 76, (313,425,0): 98, 97, 77, (313,426,0): 100, 102, 81, (313,427,0): 105, 108, 87, (313,428,0): 112, 115, 94, (313,429,0): 116, 121, 98, (313,430,0): 120, 125, 102, (313,431,0): 122, 128, 100, (313,432,0): 127, 130, 99, (313,433,0): 130, 134, 99, (313,434,0): 139, 141, 104, (313,435,0): 146, 148, 108, (313,436,0): 147, 148, 104, (313,437,0): 153, 152, 104, (313,438,0): 169, 167, 116, (313,439,0): 186, 186, 134, (313,440,0): 190, 190, 138, (313,441,0): 187, 189, 142, (313,442,0): 184, 184, 146, (313,443,0): 177, 178, 147, (313,444,0): 171, 172, 154, (313,445,0): 169, 170, 162, (313,446,0): 173, 173, 173, (313,447,0): 176, 177, 182, (313,448,0): 172, 172, 182, (313,449,0): 172, 171, 185, (313,450,0): 167, 169, 184, (313,451,0): 159, 162, 179, (313,452,0): 149, 154, 174, (313,453,0): 143, 149, 173, (313,454,0): 141, 148, 176, (313,455,0): 140, 149, 178, (313,456,0): 134, 143, 176, (313,457,0): 134, 142, 178, (313,458,0): 134, 142, 179, (313,459,0): 133, 138, 176, (313,460,0): 130, 135, 173, (313,461,0): 130, 134, 171, (313,462,0): 132, 136, 174, (313,463,0): 136, 138, 177, (313,464,0): 144, 143, 187, (313,465,0): 142, 139, 184, (313,466,0): 143, 140, 185, (313,467,0): 150, 145, 186, (313,468,0): 153, 147, 185, (313,469,0): 155, 150, 182, (313,470,0): 163, 159, 184, (313,471,0): 172, 171, 187, (313,472,0): 175, 178, 187, (313,473,0): 177, 184, 190, (313,474,0): 178, 192, 193, (313,475,0): 176, 196, 197, (313,476,0): 175, 199, 203, (313,477,0): 178, 205, 212, (313,478,0): 187, 217, 227, (313,479,0): 194, 226, 237, (313,480,0): 214, 247, 254, (313,481,0): 218, 249, 254, (313,482,0): 224, 251, 255, (313,483,0): 232, 255, 255, (313,484,0): 239, 255, 255, (313,485,0): 241, 255, 255, (313,486,0): 243, 255, 255, (313,487,0): 241, 255, 255, (313,488,0): 237, 250, 255, (313,489,0): 238, 251, 255, (313,490,0): 236, 250, 255, (313,491,0): 232, 248, 255, (313,492,0): 228, 245, 255, (313,493,0): 227, 245, 255, (313,494,0): 228, 248, 255, (313,495,0): 228, 253, 255, (313,496,0): 222, 252, 255, (313,497,0): 210, 247, 255, (313,498,0): 197, 241, 252, (313,499,0): 191, 241, 252, (313,500,0): 191, 245, 255, (313,501,0): 196, 251, 255, (313,502,0): 200, 253, 255, (313,503,0): 202, 252, 255, (313,504,0): 201, 249, 255, (313,505,0): 198, 245, 255, (313,506,0): 187, 233, 255, (313,507,0): 174, 217, 255, (313,508,0): 167, 205, 252, (313,509,0): 164, 196, 245, (313,510,0): 157, 181, 229, (313,511,0): 148, 165, 209, (313,512,0): 136, 148, 190, (313,513,0): 136, 148, 190, (313,514,0): 139, 153, 200, (313,515,0): 143, 161, 211, (313,516,0): 142, 165, 217, (313,517,0): 142, 172, 222, (313,518,0): 154, 188, 234, (313,519,0): 164, 206, 248, (313,520,0): 181, 225, 255, (313,521,0): 185, 231, 255, (313,522,0): 186, 232, 255, (313,523,0): 181, 224, 255, (313,524,0): 176, 216, 255, (313,525,0): 171, 210, 255, (313,526,0): 165, 200, 255, (313,527,0): 159, 188, 255, (313,528,0): 147, 168, 233, (313,529,0): 137, 153, 212, (313,530,0): 119, 129, 180, (313,531,0): 103, 108, 148, (313,532,0): 91, 92, 122, (313,533,0): 83, 80, 101, (313,534,0): 78, 72, 86, (313,535,0): 75, 67, 78, (313,536,0): 82, 75, 83, (313,537,0): 84, 74, 82, (313,538,0): 84, 74, 82, (313,539,0): 82, 72, 80, (313,540,0): 78, 67, 73, (313,541,0): 72, 60, 62, (313,542,0): 68, 54, 54, (313,543,0): 67, 48, 50, (313,544,0): 66, 43, 49, (313,545,0): 67, 42, 48, (313,546,0): 66, 41, 47, (313,547,0): 65, 40, 46, (313,548,0): 61, 38, 44, (313,549,0): 60, 37, 43, (313,550,0): 59, 36, 42, (313,551,0): 58, 35, 41, (313,552,0): 56, 33, 39, (313,553,0): 56, 33, 39, (313,554,0): 57, 34, 40, (313,555,0): 58, 37, 42, (313,556,0): 61, 40, 45, (313,557,0): 64, 43, 48, (313,558,0): 67, 46, 51, (313,559,0): 68, 49, 53, (313,560,0): 72, 53, 55, (313,561,0): 70, 54, 55, (313,562,0): 70, 56, 56, (313,563,0): 68, 56, 56, (313,564,0): 69, 59, 58, (313,565,0): 72, 67, 64, (313,566,0): 80, 76, 73, (313,567,0): 84, 83, 79, (313,568,0): 91, 92, 87, (313,569,0): 92, 93, 88, (313,570,0): 91, 92, 87, (313,571,0): 88, 89, 84, (313,572,0): 84, 83, 79, (313,573,0): 77, 76, 72, (313,574,0): 70, 69, 65, (313,575,0): 67, 63, 60, (313,576,0): 68, 60, 58, (313,577,0): 65, 55, 54, (313,578,0): 61, 51, 50, (313,579,0): 59, 49, 48, (313,580,0): 60, 50, 49, (313,581,0): 61, 51, 50, (313,582,0): 61, 49, 49, (313,583,0): 59, 47, 47, (313,584,0): 63, 49, 49, (313,585,0): 61, 47, 47, (313,586,0): 59, 43, 44, (313,587,0): 57, 41, 42, (313,588,0): 55, 39, 40, (313,589,0): 55, 39, 40, (313,590,0): 55, 39, 40, (313,591,0): 54, 40, 40, (313,592,0): 52, 40, 40, (313,593,0): 52, 42, 41, (313,594,0): 52, 42, 41, (313,595,0): 53, 43, 42, (313,596,0): 52, 42, 41, (313,597,0): 51, 41, 40, (313,598,0): 49, 39, 38, (313,599,0): 48, 38, 37, (314,0,0): 55, 44, 52, (314,1,0): 55, 44, 52, (314,2,0): 55, 44, 52, (314,3,0): 56, 45, 53, (314,4,0): 56, 45, 53, (314,5,0): 57, 46, 54, (314,6,0): 57, 46, 54, (314,7,0): 58, 47, 55, (314,8,0): 59, 48, 56, (314,9,0): 59, 48, 56, (314,10,0): 59, 48, 56, (314,11,0): 59, 48, 56, (314,12,0): 59, 48, 56, (314,13,0): 59, 48, 56, (314,14,0): 59, 48, 56, (314,15,0): 59, 48, 56, (314,16,0): 60, 47, 56, (314,17,0): 60, 47, 56, (314,18,0): 62, 46, 56, (314,19,0): 62, 46, 56, (314,20,0): 62, 46, 56, (314,21,0): 62, 46, 56, (314,22,0): 63, 46, 56, (314,23,0): 63, 46, 56, (314,24,0): 62, 42, 53, (314,25,0): 62, 42, 53, (314,26,0): 63, 43, 54, (314,27,0): 64, 44, 55, (314,28,0): 66, 44, 56, (314,29,0): 67, 45, 57, (314,30,0): 68, 46, 58, (314,31,0): 68, 46, 58, (314,32,0): 75, 51, 64, (314,33,0): 77, 51, 62, (314,34,0): 80, 50, 58, (314,35,0): 83, 52, 58, (314,36,0): 88, 53, 57, (314,37,0): 94, 55, 56, (314,38,0): 99, 58, 56, (314,39,0): 103, 58, 53, (314,40,0): 106, 59, 53, (314,41,0): 110, 61, 54, (314,42,0): 113, 63, 54, (314,43,0): 113, 63, 54, (314,44,0): 113, 61, 50, (314,45,0): 112, 60, 49, (314,46,0): 115, 63, 52, (314,47,0): 115, 65, 56, (314,48,0): 117, 69, 59, (314,49,0): 117, 69, 57, (314,50,0): 118, 70, 58, (314,51,0): 120, 73, 57, (314,52,0): 124, 75, 60, (314,53,0): 129, 78, 59, (314,54,0): 133, 81, 60, (314,55,0): 135, 83, 59, (314,56,0): 139, 85, 59, (314,57,0): 143, 90, 59, (314,58,0): 148, 93, 63, (314,59,0): 150, 94, 61, (314,60,0): 152, 93, 59, (314,61,0): 151, 93, 56, (314,62,0): 154, 94, 57, (314,63,0): 156, 96, 59, (314,64,0): 155, 96, 62, (314,65,0): 156, 97, 63, (314,66,0): 156, 98, 61, (314,67,0): 157, 99, 62, (314,68,0): 156, 100, 63, (314,69,0): 157, 102, 63, (314,70,0): 158, 103, 64, (314,71,0): 158, 105, 63, (314,72,0): 154, 101, 57, (314,73,0): 154, 102, 55, (314,74,0): 154, 103, 56, (314,75,0): 156, 106, 57, (314,76,0): 159, 109, 60, (314,77,0): 164, 114, 63, (314,78,0): 167, 120, 68, (314,79,0): 170, 123, 69, (314,80,0): 171, 126, 69, (314,81,0): 171, 129, 69, (314,82,0): 176, 135, 73, (314,83,0): 179, 141, 76, (314,84,0): 184, 146, 81, (314,85,0): 185, 152, 81, (314,86,0): 188, 156, 83, (314,87,0): 188, 159, 81, (314,88,0): 182, 155, 74, (314,89,0): 184, 158, 74, (314,90,0): 187, 160, 73, (314,91,0): 188, 161, 72, (314,92,0): 190, 160, 70, (314,93,0): 192, 163, 71, (314,94,0): 197, 166, 75, (314,95,0): 203, 170, 75, (314,96,0): 209, 171, 74, (314,97,0): 213, 174, 73, (314,98,0): 217, 178, 77, (314,99,0): 217, 179, 80, (314,100,0): 212, 177, 77, (314,101,0): 209, 175, 75, (314,102,0): 207, 175, 76, (314,103,0): 206, 177, 77, (314,104,0): 206, 177, 77, (314,105,0): 203, 178, 77, (314,106,0): 203, 178, 78, (314,107,0): 203, 179, 79, (314,108,0): 202, 180, 81, (314,109,0): 201, 181, 82, (314,110,0): 201, 181, 82, (314,111,0): 202, 183, 81, (314,112,0): 204, 182, 81, (314,113,0): 206, 183, 81, (314,114,0): 207, 184, 82, (314,115,0): 208, 185, 83, (314,116,0): 210, 185, 84, (314,117,0): 211, 186, 85, (314,118,0): 211, 186, 86, (314,119,0): 211, 186, 86, (314,120,0): 214, 186, 89, (314,121,0): 209, 181, 84, (314,122,0): 201, 170, 79, (314,123,0): 191, 160, 70, (314,124,0): 184, 152, 65, (314,125,0): 181, 149, 64, (314,126,0): 184, 149, 67, (314,127,0): 187, 152, 70, (314,128,0): 186, 154, 71, (314,129,0): 186, 154, 71, (314,130,0): 184, 151, 70, (314,131,0): 179, 148, 68, (314,132,0): 174, 142, 67, (314,133,0): 171, 138, 67, (314,134,0): 169, 136, 67, (314,135,0): 166, 135, 70, (314,136,0): 165, 134, 70, (314,137,0): 162, 132, 70, (314,138,0): 161, 131, 71, (314,139,0): 160, 130, 70, (314,140,0): 159, 129, 67, (314,141,0): 159, 131, 68, (314,142,0): 159, 131, 68, (314,143,0): 160, 131, 71, (314,144,0): 161, 135, 76, (314,145,0): 157, 132, 75, (314,146,0): 154, 129, 72, (314,147,0): 155, 130, 73, (314,148,0): 159, 135, 75, (314,149,0): 163, 139, 79, (314,150,0): 165, 141, 81, (314,151,0): 165, 141, 79, (314,152,0): 169, 145, 83, (314,153,0): 172, 148, 86, (314,154,0): 177, 153, 89, (314,155,0): 180, 156, 92, (314,156,0): 182, 158, 94, (314,157,0): 182, 158, 94, (314,158,0): 182, 159, 92, (314,159,0): 182, 159, 89, (314,160,0): 186, 163, 87, (314,161,0): 196, 173, 93, (314,162,0): 209, 186, 106, (314,163,0): 220, 197, 117, (314,164,0): 228, 203, 121, (314,165,0): 231, 206, 124, (314,166,0): 236, 210, 126, (314,167,0): 238, 212, 128, (314,168,0): 243, 217, 133, (314,169,0): 243, 217, 132, (314,170,0): 245, 217, 133, (314,171,0): 246, 219, 132, (314,172,0): 249, 219, 133, (314,173,0): 250, 220, 134, (314,174,0): 251, 221, 135, (314,175,0): 251, 221, 135, (314,176,0): 249, 219, 133, (314,177,0): 247, 217, 131, (314,178,0): 244, 214, 128, (314,179,0): 243, 213, 127, (314,180,0): 242, 215, 126, (314,181,0): 245, 218, 129, (314,182,0): 249, 222, 133, (314,183,0): 250, 225, 135, (314,184,0): 252, 227, 135, (314,185,0): 252, 227, 135, (314,186,0): 252, 229, 136, (314,187,0): 253, 230, 136, (314,188,0): 254, 231, 137, (314,189,0): 253, 233, 138, (314,190,0): 253, 233, 138, (314,191,0): 255, 233, 140, (314,192,0): 255, 231, 144, (314,193,0): 255, 230, 146, (314,194,0): 255, 229, 145, (314,195,0): 255, 230, 145, (314,196,0): 255, 229, 144, (314,197,0): 255, 229, 144, (314,198,0): 255, 229, 144, (314,199,0): 254, 230, 144, (314,200,0): 255, 232, 146, (314,201,0): 254, 232, 146, (314,202,0): 254, 232, 146, (314,203,0): 255, 233, 147, (314,204,0): 255, 233, 147, (314,205,0): 255, 235, 148, (314,206,0): 255, 235, 148, (314,207,0): 255, 235, 149, (314,208,0): 251, 234, 152, (314,209,0): 250, 235, 154, (314,210,0): 251, 236, 155, (314,211,0): 251, 239, 157, (314,212,0): 253, 240, 161, (314,213,0): 253, 242, 162, (314,214,0): 254, 243, 163, (314,215,0): 253, 245, 164, (314,216,0): 254, 247, 167, (314,217,0): 253, 248, 167, (314,218,0): 253, 247, 169, (314,219,0): 251, 248, 169, (314,220,0): 251, 248, 169, (314,221,0): 250, 249, 169, (314,222,0): 250, 248, 171, (314,223,0): 250, 248, 171, (314,224,0): 252, 250, 173, (314,225,0): 250, 251, 173, (314,226,0): 249, 250, 172, (314,227,0): 248, 251, 172, (314,228,0): 248, 251, 174, (314,229,0): 247, 251, 174, (314,230,0): 246, 253, 175, (314,231,0): 245, 254, 175, (314,232,0): 242, 253, 175, (314,233,0): 241, 254, 175, (314,234,0): 240, 254, 177, (314,235,0): 238, 255, 177, (314,236,0): 238, 255, 177, (314,237,0): 237, 255, 177, (314,238,0): 237, 255, 179, (314,239,0): 235, 255, 181, (314,240,0): 235, 255, 186, (314,241,0): 235, 254, 188, (314,242,0): 235, 254, 190, (314,243,0): 235, 254, 190, (314,244,0): 234, 254, 191, (314,245,0): 234, 254, 193, (314,246,0): 233, 254, 197, (314,247,0): 231, 254, 198, (314,248,0): 232, 255, 204, (314,249,0): 232, 255, 206, (314,250,0): 230, 255, 209, (314,251,0): 229, 255, 211, (314,252,0): 229, 255, 213, (314,253,0): 228, 255, 215, (314,254,0): 228, 255, 216, (314,255,0): 228, 255, 218, (314,256,0): 225, 255, 219, (314,257,0): 224, 255, 223, (314,258,0): 224, 254, 226, (314,259,0): 222, 255, 228, (314,260,0): 222, 254, 231, (314,261,0): 221, 254, 235, (314,262,0): 220, 254, 238, (314,263,0): 218, 254, 242, (314,264,0): 221, 255, 249, (314,265,0): 220, 255, 250, (314,266,0): 219, 255, 249, (314,267,0): 217, 255, 251, (314,268,0): 215, 255, 250, (314,269,0): 215, 255, 250, (314,270,0): 214, 255, 249, (314,271,0): 215, 254, 251, (314,272,0): 219, 253, 254, (314,273,0): 221, 252, 255, (314,274,0): 221, 252, 255, (314,275,0): 219, 253, 255, (314,276,0): 219, 253, 255, (314,277,0): 218, 253, 255, (314,278,0): 218, 253, 255, (314,279,0): 218, 253, 255, (314,280,0): 218, 253, 255, (314,281,0): 216, 254, 255, (314,282,0): 215, 253, 254, (314,283,0): 212, 250, 251, (314,284,0): 206, 244, 245, (314,285,0): 196, 236, 235, (314,286,0): 188, 228, 228, (314,287,0): 182, 223, 225, (314,288,0): 179, 224, 230, (314,289,0): 175, 222, 230, (314,290,0): 173, 217, 226, (314,291,0): 169, 214, 220, (314,292,0): 165, 208, 215, (314,293,0): 161, 201, 209, (314,294,0): 157, 196, 203, (314,295,0): 154, 193, 200, (314,296,0): 147, 185, 194, (314,297,0): 147, 187, 197, (314,298,0): 148, 190, 202, (314,299,0): 150, 192, 206, (314,300,0): 151, 194, 210, (314,301,0): 149, 195, 211, (314,302,0): 148, 195, 213, (314,303,0): 149, 194, 213, (314,304,0): 149, 190, 210, (314,305,0): 147, 188, 208, (314,306,0): 146, 184, 207, (314,307,0): 141, 182, 204, (314,308,0): 142, 179, 205, (314,309,0): 141, 181, 206, (314,310,0): 144, 181, 208, (314,311,0): 144, 184, 210, (314,312,0): 148, 184, 216, (314,313,0): 149, 188, 219, (314,314,0): 154, 190, 224, (314,315,0): 154, 193, 226, (314,316,0): 156, 192, 228, (314,317,0): 152, 190, 226, (314,318,0): 151, 186, 224, (314,319,0): 150, 184, 221, (314,320,0): 152, 182, 218, (314,321,0): 148, 174, 207, (314,322,0): 139, 164, 194, (314,323,0): 131, 153, 177, (314,324,0): 126, 144, 164, (314,325,0): 121, 137, 153, (314,326,0): 120, 129, 144, (314,327,0): 118, 124, 140, (314,328,0): 113, 114, 132, (314,329,0): 112, 111, 129, (314,330,0): 110, 107, 124, (314,331,0): 111, 107, 122, (314,332,0): 110, 106, 121, (314,333,0): 103, 100, 111, (314,334,0): 93, 87, 97, (314,335,0): 83, 78, 85, (314,336,0): 72, 65, 73, (314,337,0): 70, 60, 69, (314,338,0): 66, 56, 65, (314,339,0): 65, 55, 64, (314,340,0): 67, 57, 66, (314,341,0): 69, 59, 68, (314,342,0): 69, 59, 68, (314,343,0): 68, 58, 67, (314,344,0): 71, 61, 70, (314,345,0): 73, 63, 72, (314,346,0): 75, 65, 74, (314,347,0): 78, 68, 77, (314,348,0): 81, 71, 80, (314,349,0): 84, 74, 83, (314,350,0): 87, 77, 86, (314,351,0): 86, 79, 87, (314,352,0): 90, 82, 93, (314,353,0): 91, 85, 97, (314,354,0): 91, 88, 99, (314,355,0): 95, 91, 105, (314,356,0): 99, 95, 112, (314,357,0): 102, 97, 117, (314,358,0): 104, 100, 123, (314,359,0): 105, 101, 126, (314,360,0): 107, 103, 128, (314,361,0): 107, 104, 131, (314,362,0): 108, 105, 132, (314,363,0): 110, 107, 134, (314,364,0): 111, 111, 137, (314,365,0): 113, 113, 137, (314,366,0): 114, 114, 138, (314,367,0): 117, 115, 137, (314,368,0): 119, 116, 135, (314,369,0): 120, 116, 133, (314,370,0): 119, 115, 132, (314,371,0): 118, 114, 131, (314,372,0): 118, 111, 127, (314,373,0): 117, 110, 126, (314,374,0): 117, 109, 124, (314,375,0): 119, 108, 124, (314,376,0): 116, 103, 120, (314,377,0): 116, 104, 118, (314,378,0): 118, 104, 119, (314,379,0): 122, 106, 119, (314,380,0): 124, 106, 120, (314,381,0): 126, 108, 122, (314,382,0): 127, 109, 123, (314,383,0): 126, 110, 121, (314,384,0): 127, 112, 119, (314,385,0): 130, 115, 120, (314,386,0): 134, 120, 120, (314,387,0): 137, 121, 121, (314,388,0): 138, 123, 118, (314,389,0): 142, 125, 117, (314,390,0): 146, 130, 117, (314,391,0): 151, 133, 119, (314,392,0): 158, 139, 124, (314,393,0): 157, 138, 121, (314,394,0): 158, 136, 122, (314,395,0): 156, 134, 121, (314,396,0): 155, 131, 121, (314,397,0): 152, 127, 120, (314,398,0): 152, 124, 120, (314,399,0): 152, 123, 119, (314,400,0): 142, 111, 109, (314,401,0): 129, 95, 94, (314,402,0): 108, 74, 73, (314,403,0): 92, 58, 57, (314,404,0): 83, 52, 50, (314,405,0): 80, 50, 48, (314,406,0): 80, 50, 48, (314,407,0): 79, 51, 48, (314,408,0): 75, 47, 44, (314,409,0): 77, 52, 48, (314,410,0): 79, 55, 51, (314,411,0): 79, 58, 53, (314,412,0): 79, 58, 53, (314,413,0): 80, 61, 55, (314,414,0): 84, 65, 59, (314,415,0): 86, 69, 62, (314,416,0): 92, 78, 69, (314,417,0): 92, 80, 68, (314,418,0): 91, 81, 69, (314,419,0): 92, 83, 68, (314,420,0): 93, 86, 70, (314,421,0): 94, 87, 71, (314,422,0): 94, 88, 72, (314,423,0): 93, 90, 71, (314,424,0): 99, 98, 78, (314,425,0): 103, 102, 81, (314,426,0): 108, 110, 88, (314,427,0): 114, 118, 95, (314,428,0): 122, 126, 103, (314,429,0): 127, 131, 106, (314,430,0): 129, 135, 109, (314,431,0): 131, 137, 109, (314,432,0): 134, 137, 106, (314,433,0): 137, 141, 104, (314,434,0): 146, 148, 108, (314,435,0): 153, 156, 111, (314,436,0): 159, 161, 111, (314,437,0): 167, 170, 117, (314,438,0): 186, 187, 130, (314,439,0): 202, 202, 148, (314,440,0): 203, 203, 153, (314,441,0): 197, 198, 156, (314,442,0): 189, 190, 158, (314,443,0): 179, 181, 159, (314,444,0): 172, 174, 163, (314,445,0): 171, 173, 170, (314,446,0): 172, 175, 180, (314,447,0): 176, 178, 190, (314,448,0): 172, 173, 191, (314,449,0): 171, 172, 193, (314,450,0): 167, 169, 192, (314,451,0): 159, 163, 190, (314,452,0): 151, 156, 185, (314,453,0): 146, 152, 184, (314,454,0): 143, 152, 185, (314,455,0): 142, 152, 188, (314,456,0): 139, 148, 189, (314,457,0): 140, 149, 190, (314,458,0): 139, 148, 191, (314,459,0): 137, 144, 188, (314,460,0): 132, 139, 183, (314,461,0): 132, 137, 179, (314,462,0): 133, 137, 182, (314,463,0): 136, 139, 184, (314,464,0): 144, 145, 191, (314,465,0): 144, 142, 189, (314,466,0): 148, 147, 191, (314,467,0): 155, 152, 195, (314,468,0): 161, 157, 194, (314,469,0): 164, 159, 191, (314,470,0): 174, 170, 195, (314,471,0): 184, 183, 199, (314,472,0): 187, 190, 199, (314,473,0): 188, 193, 197, (314,474,0): 186, 197, 199, (314,475,0): 185, 200, 203, (314,476,0): 185, 204, 211, (314,477,0): 186, 210, 220, (314,478,0): 191, 219, 231, (314,479,0): 195, 225, 236, (314,480,0): 213, 246, 253, (314,481,0): 216, 249, 254, (314,482,0): 224, 253, 255, (314,483,0): 228, 255, 255, (314,484,0): 232, 255, 255, (314,485,0): 234, 255, 255, (314,486,0): 233, 252, 255, (314,487,0): 234, 252, 254, (314,488,0): 224, 239, 244, (314,489,0): 224, 241, 248, (314,490,0): 224, 241, 251, (314,491,0): 221, 239, 251, (314,492,0): 217, 236, 251, (314,493,0): 214, 235, 252, (314,494,0): 214, 237, 255, (314,495,0): 214, 240, 255, (314,496,0): 215, 245, 255, (314,497,0): 207, 244, 252, (314,498,0): 199, 243, 254, (314,499,0): 193, 242, 255, (314,500,0): 192, 246, 255, (314,501,0): 194, 248, 255, (314,502,0): 197, 250, 255, (314,503,0): 200, 250, 255, (314,504,0): 200, 248, 255, (314,505,0): 192, 238, 255, (314,506,0): 179, 223, 255, (314,507,0): 168, 209, 255, (314,508,0): 166, 199, 250, (314,509,0): 161, 189, 239, (314,510,0): 153, 171, 219, (314,511,0): 142, 154, 196, (314,512,0): 133, 138, 178, (314,513,0): 131, 135, 173, (314,514,0): 128, 135, 179, (314,515,0): 128, 139, 185, (314,516,0): 125, 141, 192, (314,517,0): 124, 146, 196, (314,518,0): 134, 161, 208, (314,519,0): 145, 176, 222, (314,520,0): 166, 201, 243, (314,521,0): 172, 209, 251, (314,522,0): 176, 213, 255, (314,523,0): 176, 212, 255, (314,524,0): 175, 210, 255, (314,525,0): 174, 208, 255, (314,526,0): 166, 199, 255, (314,527,0): 160, 187, 255, (314,528,0): 149, 168, 234, (314,529,0): 138, 150, 210, (314,530,0): 116, 126, 177, (314,531,0): 98, 103, 143, (314,532,0): 86, 87, 117, (314,533,0): 81, 78, 97, (314,534,0): 80, 74, 88, (314,535,0): 79, 71, 82, (314,536,0): 84, 77, 85, (314,537,0): 84, 77, 85, (314,538,0): 84, 77, 85, (314,539,0): 84, 74, 82, (314,540,0): 80, 69, 75, (314,541,0): 74, 62, 64, (314,542,0): 70, 56, 56, (314,543,0): 69, 50, 52, (314,544,0): 66, 43, 49, (314,545,0): 68, 43, 49, (314,546,0): 66, 41, 47, (314,547,0): 65, 40, 46, (314,548,0): 61, 38, 44, (314,549,0): 60, 37, 43, (314,550,0): 58, 35, 41, (314,551,0): 58, 35, 41, (314,552,0): 55, 34, 39, (314,553,0): 55, 34, 39, (314,554,0): 55, 34, 39, (314,555,0): 55, 36, 40, (314,556,0): 57, 38, 42, (314,557,0): 59, 40, 44, (314,558,0): 62, 43, 47, (314,559,0): 61, 45, 48, (314,560,0): 71, 55, 58, (314,561,0): 74, 58, 61, (314,562,0): 75, 60, 63, (314,563,0): 73, 63, 64, (314,564,0): 74, 65, 66, (314,565,0): 76, 70, 70, (314,566,0): 82, 78, 77, (314,567,0): 86, 85, 83, (314,568,0): 96, 96, 94, (314,569,0): 96, 98, 95, (314,570,0): 95, 97, 94, (314,571,0): 93, 95, 92, (314,572,0): 89, 89, 87, (314,573,0): 82, 82, 80, (314,574,0): 75, 75, 73, (314,575,0): 72, 71, 69, (314,576,0): 74, 66, 64, (314,577,0): 71, 61, 60, (314,578,0): 67, 57, 56, (314,579,0): 65, 55, 54, (314,580,0): 65, 55, 54, (314,581,0): 64, 54, 53, (314,582,0): 62, 50, 50, (314,583,0): 60, 48, 48, (314,584,0): 59, 45, 45, (314,585,0): 58, 44, 44, (314,586,0): 57, 41, 42, (314,587,0): 54, 38, 39, (314,588,0): 53, 37, 38, (314,589,0): 52, 36, 37, (314,590,0): 52, 36, 37, (314,591,0): 51, 37, 37, (314,592,0): 51, 41, 40, (314,593,0): 51, 43, 41, (314,594,0): 51, 43, 41, (314,595,0): 52, 44, 42, (314,596,0): 51, 43, 41, (314,597,0): 50, 42, 40, (314,598,0): 48, 40, 38, (314,599,0): 47, 39, 37, (315,0,0): 55, 44, 52, (315,1,0): 56, 45, 53, (315,2,0): 56, 45, 53, (315,3,0): 56, 45, 53, (315,4,0): 57, 46, 54, (315,5,0): 58, 47, 55, (315,6,0): 58, 47, 55, (315,7,0): 58, 47, 55, (315,8,0): 59, 48, 56, (315,9,0): 59, 48, 56, (315,10,0): 59, 48, 56, (315,11,0): 59, 48, 56, (315,12,0): 59, 48, 56, (315,13,0): 59, 48, 56, (315,14,0): 59, 48, 56, (315,15,0): 59, 48, 56, (315,16,0): 60, 47, 56, (315,17,0): 60, 47, 56, (315,18,0): 62, 46, 56, (315,19,0): 62, 46, 56, (315,20,0): 62, 46, 56, (315,21,0): 62, 46, 56, (315,22,0): 63, 46, 56, (315,23,0): 63, 46, 56, (315,24,0): 63, 43, 54, (315,25,0): 63, 43, 54, (315,26,0): 63, 43, 54, (315,27,0): 64, 44, 55, (315,28,0): 66, 44, 56, (315,29,0): 67, 45, 57, (315,30,0): 67, 45, 57, (315,31,0): 67, 45, 57, (315,32,0): 74, 50, 63, (315,33,0): 74, 51, 61, (315,34,0): 78, 51, 60, (315,35,0): 82, 51, 57, (315,36,0): 88, 53, 57, (315,37,0): 94, 55, 56, (315,38,0): 99, 58, 56, (315,39,0): 104, 59, 54, (315,40,0): 105, 58, 52, (315,41,0): 109, 60, 53, (315,42,0): 112, 62, 53, (315,43,0): 112, 62, 51, (315,44,0): 113, 61, 50, (315,45,0): 113, 61, 50, (315,46,0): 115, 63, 52, (315,47,0): 118, 66, 55, (315,48,0): 119, 69, 60, (315,49,0): 118, 70, 58, (315,50,0): 119, 71, 59, (315,51,0): 121, 72, 57, (315,52,0): 125, 73, 59, (315,53,0): 128, 77, 58, (315,54,0): 132, 80, 59, (315,55,0): 134, 82, 58, (315,56,0): 138, 84, 58, (315,57,0): 144, 89, 59, (315,58,0): 150, 93, 64, (315,59,0): 152, 96, 63, (315,60,0): 153, 94, 60, (315,61,0): 153, 95, 58, (315,62,0): 155, 95, 58, (315,63,0): 157, 97, 60, (315,64,0): 156, 98, 61, (315,65,0): 156, 98, 61, (315,66,0): 157, 99, 62, (315,67,0): 158, 100, 62, (315,68,0): 157, 102, 63, (315,69,0): 158, 103, 62, (315,70,0): 159, 104, 63, (315,71,0): 159, 105, 61, (315,72,0): 155, 103, 56, (315,73,0): 156, 104, 56, (315,74,0): 157, 107, 58, (315,75,0): 160, 110, 59, (315,76,0): 164, 114, 63, (315,77,0): 169, 119, 66, (315,78,0): 172, 125, 71, (315,79,0): 175, 129, 70, (315,80,0): 175, 131, 70, (315,81,0): 176, 135, 71, (315,82,0): 181, 140, 74, (315,83,0): 185, 148, 78, (315,84,0): 189, 152, 82, (315,85,0): 189, 157, 82, (315,86,0): 191, 159, 82, (315,87,0): 189, 160, 80, (315,88,0): 185, 159, 75, (315,89,0): 187, 161, 76, (315,90,0): 190, 163, 74, (315,91,0): 190, 163, 72, (315,92,0): 191, 162, 70, (315,93,0): 192, 163, 71, (315,94,0): 197, 166, 73, (315,95,0): 203, 170, 75, (315,96,0): 210, 172, 73, (315,97,0): 215, 176, 75, (315,98,0): 219, 180, 79, (315,99,0): 220, 181, 80, (315,100,0): 216, 178, 79, (315,101,0): 212, 177, 77, (315,102,0): 210, 176, 78, (315,103,0): 208, 179, 79, (315,104,0): 205, 177, 77, (315,105,0): 204, 179, 78, (315,106,0): 203, 179, 79, (315,107,0): 202, 180, 79, (315,108,0): 201, 181, 82, (315,109,0): 201, 183, 83, (315,110,0): 201, 183, 83, (315,111,0): 201, 183, 83, (315,112,0): 206, 184, 83, (315,113,0): 207, 184, 82, (315,114,0): 208, 185, 83, (315,115,0): 209, 186, 84, (315,116,0): 212, 187, 86, (315,117,0): 214, 189, 86, (315,118,0): 216, 191, 90, (315,119,0): 217, 192, 91, (315,120,0): 218, 190, 90, (315,121,0): 216, 188, 89, (315,122,0): 211, 180, 87, (315,123,0): 201, 170, 79, (315,124,0): 190, 159, 69, (315,125,0): 182, 150, 63, (315,126,0): 183, 148, 66, (315,127,0): 182, 150, 67, (315,128,0): 181, 149, 66, (315,129,0): 182, 151, 68, (315,130,0): 183, 152, 72, (315,131,0): 179, 147, 70, (315,132,0): 172, 140, 65, (315,133,0): 165, 135, 63, (315,134,0): 164, 133, 66, (315,135,0): 164, 135, 69, (315,136,0): 162, 132, 68, (315,137,0): 160, 130, 68, (315,138,0): 159, 129, 69, (315,139,0): 156, 127, 67, (315,140,0): 156, 128, 65, (315,141,0): 157, 129, 66, (315,142,0): 159, 131, 68, (315,143,0): 158, 132, 71, (315,144,0): 159, 134, 77, (315,145,0): 157, 132, 75, (315,146,0): 155, 130, 73, (315,147,0): 157, 132, 75, (315,148,0): 162, 138, 78, (315,149,0): 165, 141, 81, (315,150,0): 166, 142, 82, (315,151,0): 166, 142, 82, (315,152,0): 167, 143, 81, (315,153,0): 172, 148, 86, (315,154,0): 178, 154, 90, (315,155,0): 182, 158, 94, (315,156,0): 183, 159, 95, (315,157,0): 181, 157, 93, (315,158,0): 180, 157, 90, (315,159,0): 179, 156, 86, (315,160,0): 186, 163, 87, (315,161,0): 198, 175, 95, (315,162,0): 216, 193, 113, (315,163,0): 228, 205, 125, (315,164,0): 234, 209, 127, (315,165,0): 235, 210, 128, (315,166,0): 236, 210, 126, (315,167,0): 237, 211, 127, (315,168,0): 241, 215, 131, (315,169,0): 242, 216, 132, (315,170,0): 243, 215, 131, (315,171,0): 244, 216, 132, (315,172,0): 247, 216, 133, (315,173,0): 247, 217, 131, (315,174,0): 248, 217, 134, (315,175,0): 248, 218, 132, (315,176,0): 247, 217, 131, (315,177,0): 247, 217, 131, (315,178,0): 246, 216, 130, (315,179,0): 246, 216, 130, (315,180,0): 246, 219, 130, (315,181,0): 249, 222, 133, (315,182,0): 251, 226, 136, (315,183,0): 253, 228, 136, (315,184,0): 253, 228, 136, (315,185,0): 252, 229, 135, (315,186,0): 253, 230, 136, (315,187,0): 253, 230, 136, (315,188,0): 252, 232, 137, (315,189,0): 253, 233, 136, (315,190,0): 253, 233, 136, (315,191,0): 255, 233, 139, (315,192,0): 255, 231, 144, (315,193,0): 255, 231, 146, (315,194,0): 255, 230, 145, (315,195,0): 255, 230, 145, (315,196,0): 255, 230, 145, (315,197,0): 255, 231, 145, (315,198,0): 255, 231, 145, (315,199,0): 253, 231, 145, (315,200,0): 255, 233, 147, (315,201,0): 255, 233, 147, (315,202,0): 255, 233, 147, (315,203,0): 255, 235, 148, (315,204,0): 255, 235, 148, (315,205,0): 254, 237, 149, (315,206,0): 255, 236, 149, (315,207,0): 254, 236, 150, (315,208,0): 252, 235, 153, (315,209,0): 252, 235, 155, (315,210,0): 252, 237, 156, (315,211,0): 254, 239, 158, (315,212,0): 255, 239, 161, (315,213,0): 254, 241, 162, (315,214,0): 254, 243, 163, (315,215,0): 254, 243, 163, (315,216,0): 254, 245, 166, (315,217,0): 253, 246, 166, (315,218,0): 252, 246, 168, (315,219,0): 252, 246, 168, (315,220,0): 250, 247, 168, (315,221,0): 250, 247, 168, (315,222,0): 249, 247, 170, (315,223,0): 249, 247, 170, (315,224,0): 251, 249, 172, (315,225,0): 250, 248, 171, (315,226,0): 249, 247, 170, (315,227,0): 247, 248, 170, (315,228,0): 246, 249, 172, (315,229,0): 245, 249, 172, (315,230,0): 246, 250, 173, (315,231,0): 244, 253, 174, (315,232,0): 242, 253, 175, (315,233,0): 240, 254, 175, (315,234,0): 240, 254, 177, (315,235,0): 238, 255, 177, (315,236,0): 237, 255, 177, (315,237,0): 235, 255, 177, (315,238,0): 235, 255, 179, (315,239,0): 235, 255, 181, (315,240,0): 235, 255, 186, (315,241,0): 235, 254, 188, (315,242,0): 235, 254, 190, (315,243,0): 234, 254, 191, (315,244,0): 234, 254, 193, (315,245,0): 233, 254, 195, (315,246,0): 231, 254, 198, (315,247,0): 231, 254, 200, (315,248,0): 233, 255, 207, (315,249,0): 231, 255, 209, (315,250,0): 230, 255, 212, (315,251,0): 230, 255, 214, (315,252,0): 229, 255, 216, (315,253,0): 229, 255, 216, (315,254,0): 229, 255, 217, (315,255,0): 227, 255, 219, (315,256,0): 224, 255, 221, (315,257,0): 222, 255, 224, (315,258,0): 222, 255, 228, (315,259,0): 221, 255, 230, (315,260,0): 221, 254, 233, (315,261,0): 220, 254, 237, (315,262,0): 218, 254, 240, (315,263,0): 217, 255, 244, (315,264,0): 219, 255, 248, (315,265,0): 217, 255, 249, (315,266,0): 216, 255, 250, (315,267,0): 215, 255, 250, (315,268,0): 213, 255, 249, (315,269,0): 211, 255, 249, (315,270,0): 210, 255, 248, (315,271,0): 212, 254, 250, (315,272,0): 215, 254, 253, (315,273,0): 215, 253, 254, (315,274,0): 217, 252, 254, (315,275,0): 215, 253, 254, (315,276,0): 215, 253, 254, (315,277,0): 215, 253, 254, (315,278,0): 215, 253, 254, (315,279,0): 215, 253, 254, (315,280,0): 213, 253, 253, (315,281,0): 214, 254, 254, (315,282,0): 215, 255, 255, (315,283,0): 213, 253, 253, (315,284,0): 209, 247, 248, (315,285,0): 200, 240, 240, (315,286,0): 192, 232, 232, (315,287,0): 186, 227, 231, (315,288,0): 179, 226, 236, (315,289,0): 175, 223, 235, (315,290,0): 173, 219, 232, (315,291,0): 173, 217, 228, (315,292,0): 171, 213, 225, (315,293,0): 166, 209, 218, (315,294,0): 162, 200, 211, (315,295,0): 157, 195, 206, (315,296,0): 151, 189, 200, (315,297,0): 152, 190, 203, (315,298,0): 153, 192, 207, (315,299,0): 153, 195, 211, (315,300,0): 153, 194, 212, (315,301,0): 151, 194, 213, (315,302,0): 147, 192, 213, (315,303,0): 146, 191, 212, (315,304,0): 148, 186, 207, (315,305,0): 148, 186, 207, (315,306,0): 147, 183, 207, (315,307,0): 145, 183, 206, (315,308,0): 145, 181, 207, (315,309,0): 144, 181, 207, (315,310,0): 145, 180, 208, (315,311,0): 145, 182, 209, (315,312,0): 147, 182, 212, (315,313,0): 148, 184, 216, (315,314,0): 152, 186, 221, (315,315,0): 153, 189, 223, (315,316,0): 155, 189, 226, (315,317,0): 153, 189, 225, (315,318,0): 152, 186, 224, (315,319,0): 151, 185, 222, (315,320,0): 151, 181, 219, (315,321,0): 148, 174, 209, (315,322,0): 140, 165, 196, (315,323,0): 132, 153, 180, (315,324,0): 126, 144, 166, (315,325,0): 120, 136, 152, (315,326,0): 120, 129, 146, (315,327,0): 119, 125, 141, (315,328,0): 114, 115, 133, (315,329,0): 114, 111, 130, (315,330,0): 113, 109, 126, (315,331,0): 113, 109, 124, (315,332,0): 113, 106, 122, (315,333,0): 105, 99, 111, (315,334,0): 91, 85, 95, (315,335,0): 80, 73, 81, (315,336,0): 73, 63, 72, (315,337,0): 70, 60, 69, (315,338,0): 67, 57, 66, (315,339,0): 66, 56, 65, (315,340,0): 69, 59, 68, (315,341,0): 70, 60, 69, (315,342,0): 70, 60, 69, (315,343,0): 69, 59, 68, (315,344,0): 74, 64, 73, (315,345,0): 75, 65, 74, (315,346,0): 77, 67, 76, (315,347,0): 80, 70, 79, (315,348,0): 84, 74, 83, (315,349,0): 87, 77, 86, (315,350,0): 89, 79, 88, (315,351,0): 90, 80, 89, (315,352,0): 93, 83, 92, (315,353,0): 94, 84, 95, (315,354,0): 96, 88, 99, (315,355,0): 99, 91, 104, (315,356,0): 103, 94, 111, (315,357,0): 105, 98, 116, (315,358,0): 106, 98, 121, (315,359,0): 107, 99, 123, (315,360,0): 106, 101, 124, (315,361,0): 107, 101, 127, (315,362,0): 109, 103, 129, (315,363,0): 110, 106, 131, (315,364,0): 112, 108, 133, (315,365,0): 114, 110, 133, (315,366,0): 115, 111, 134, (315,367,0): 116, 113, 134, (315,368,0): 121, 117, 134, (315,369,0): 120, 116, 133, (315,370,0): 119, 115, 132, (315,371,0): 118, 114, 131, (315,372,0): 118, 111, 127, (315,373,0): 118, 109, 126, (315,374,0): 119, 108, 124, (315,375,0): 118, 107, 123, (315,376,0): 117, 104, 121, (315,377,0): 119, 105, 122, (315,378,0): 121, 104, 120, (315,379,0): 122, 105, 121, (315,380,0): 124, 106, 122, (315,381,0): 125, 107, 121, (315,382,0): 126, 108, 124, (315,383,0): 126, 108, 122, (315,384,0): 129, 112, 122, (315,385,0): 132, 115, 123, (315,386,0): 136, 120, 123, (315,387,0): 139, 121, 121, (315,388,0): 139, 121, 117, (315,389,0): 142, 123, 116, (315,390,0): 145, 127, 115, (315,391,0): 149, 130, 116, (315,392,0): 153, 131, 117, (315,393,0): 156, 133, 117, (315,394,0): 161, 135, 122, (315,395,0): 162, 135, 124, (315,396,0): 161, 132, 124, (315,397,0): 157, 128, 122, (315,398,0): 152, 121, 118, (315,399,0): 151, 117, 115, (315,400,0): 132, 96, 96, (315,401,0): 119, 80, 81, (315,402,0): 101, 62, 63, (315,403,0): 86, 50, 50, (315,404,0): 82, 48, 47, (315,405,0): 83, 49, 48, (315,406,0): 81, 50, 48, (315,407,0): 78, 48, 46, (315,408,0): 78, 48, 46, (315,409,0): 80, 52, 49, (315,410,0): 82, 57, 53, (315,411,0): 83, 59, 55, (315,412,0): 84, 60, 56, (315,413,0): 84, 63, 58, (315,414,0): 88, 67, 62, (315,415,0): 90, 71, 64, (315,416,0): 95, 81, 70, (315,417,0): 94, 82, 68, (315,418,0): 95, 83, 69, (315,419,0): 95, 86, 71, (315,420,0): 96, 87, 72, (315,421,0): 97, 90, 72, (315,422,0): 98, 91, 73, (315,423,0): 98, 93, 73, (315,424,0): 105, 103, 82, (315,425,0): 109, 108, 87, (315,426,0): 116, 115, 94, (315,427,0): 123, 125, 101, (315,428,0): 129, 131, 107, (315,429,0): 132, 136, 111, (315,430,0): 134, 138, 113, (315,431,0): 135, 139, 112, (315,432,0): 137, 141, 108, (315,433,0): 140, 144, 107, (315,434,0): 148, 151, 108, (315,435,0): 157, 161, 111, (315,436,0): 168, 171, 116, (315,437,0): 184, 188, 129, (315,438,0): 205, 206, 148, (315,439,0): 217, 220, 163, (315,440,0): 210, 212, 163, (315,441,0): 203, 205, 166, (315,442,0): 191, 194, 167, (315,443,0): 180, 182, 168, (315,444,0): 173, 175, 170, (315,445,0): 170, 173, 178, (315,446,0): 171, 175, 186, (315,447,0): 174, 177, 194, (315,448,0): 171, 173, 198, (315,449,0): 169, 170, 200, (315,450,0): 163, 166, 199, (315,451,0): 157, 161, 196, (315,452,0): 151, 157, 193, (315,453,0): 146, 154, 193, (315,454,0): 144, 153, 194, (315,455,0): 141, 152, 197, (315,456,0): 141, 152, 198, (315,457,0): 142, 152, 201, (315,458,0): 141, 151, 200, (315,459,0): 139, 147, 196, (315,460,0): 133, 141, 190, (315,461,0): 131, 137, 187, (315,462,0): 130, 136, 186, (315,463,0): 133, 137, 185, (315,464,0): 142, 144, 193, (315,465,0): 144, 145, 193, (315,466,0): 150, 151, 197, (315,467,0): 161, 160, 202, (315,468,0): 166, 164, 201, (315,469,0): 171, 168, 199, (315,470,0): 184, 180, 205, (315,471,0): 197, 194, 211, (315,472,0): 202, 202, 212, (315,473,0): 206, 209, 214, (315,474,0): 208, 216, 219, (315,475,0): 206, 217, 221, (315,476,0): 197, 214, 222, (315,477,0): 193, 212, 226, (315,478,0): 194, 217, 233, (315,479,0): 195, 223, 237, (315,480,0): 215, 245, 255, (315,481,0): 221, 252, 255, (315,482,0): 229, 255, 255, (315,483,0): 234, 255, 255, (315,484,0): 237, 255, 255, (315,485,0): 235, 255, 255, (315,486,0): 232, 251, 255, (315,487,0): 230, 249, 253, (315,488,0): 225, 243, 247, (315,489,0): 225, 243, 247, (315,490,0): 224, 241, 249, (315,491,0): 218, 236, 246, (315,492,0): 210, 230, 241, (315,493,0): 202, 224, 237, (315,494,0): 199, 221, 235, (315,495,0): 196, 223, 234, (315,496,0): 202, 232, 240, (315,497,0): 199, 236, 244, (315,498,0): 196, 240, 251, (315,499,0): 193, 242, 255, (315,500,0): 191, 245, 255, (315,501,0): 192, 246, 255, (315,502,0): 194, 247, 253, (315,503,0): 197, 247, 255, (315,504,0): 201, 248, 255, (315,505,0): 188, 234, 255, (315,506,0): 172, 214, 255, (315,507,0): 163, 201, 250, (315,508,0): 164, 195, 249, (315,509,0): 164, 187, 239, (315,510,0): 156, 170, 215, (315,511,0): 147, 154, 196, (315,512,0): 140, 140, 178, (315,513,0): 134, 132, 169, (315,514,0): 125, 127, 166, (315,515,0): 121, 126, 168, (315,516,0): 115, 123, 169, (315,517,0): 112, 125, 170, (315,518,0): 119, 137, 183, (315,519,0): 128, 151, 195, (315,520,0): 139, 166, 209, (315,521,0): 147, 176, 218, (315,522,0): 155, 186, 232, (315,523,0): 160, 190, 240, (315,524,0): 167, 196, 254, (315,525,0): 171, 199, 255, (315,526,0): 166, 193, 255, (315,527,0): 159, 181, 254, (315,528,0): 151, 168, 237, (315,529,0): 138, 150, 210, (315,530,0): 116, 123, 175, (315,531,0): 97, 100, 141, (315,532,0): 86, 86, 114, (315,533,0): 83, 80, 99, (315,534,0): 84, 78, 92, (315,535,0): 84, 78, 88, (315,536,0): 87, 82, 89, (315,537,0): 88, 83, 90, (315,538,0): 88, 81, 89, (315,539,0): 86, 79, 86, (315,540,0): 82, 73, 78, (315,541,0): 76, 66, 67, (315,542,0): 72, 58, 58, (315,543,0): 71, 53, 53, (315,544,0): 67, 44, 50, (315,545,0): 68, 43, 49, (315,546,0): 67, 42, 48, (315,547,0): 65, 40, 46, (315,548,0): 61, 38, 44, (315,549,0): 59, 36, 42, (315,550,0): 58, 35, 41, (315,551,0): 56, 35, 40, (315,552,0): 55, 34, 39, (315,553,0): 53, 34, 38, (315,554,0): 53, 34, 38, (315,555,0): 53, 34, 38, (315,556,0): 54, 35, 39, (315,557,0): 54, 38, 41, (315,558,0): 56, 40, 43, (315,559,0): 57, 41, 44, (315,560,0): 67, 51, 54, (315,561,0): 69, 54, 57, (315,562,0): 74, 59, 64, (315,563,0): 75, 65, 66, (315,564,0): 77, 68, 71, (315,565,0): 79, 75, 74, (315,566,0): 83, 81, 82, (315,567,0): 87, 87, 85, (315,568,0): 99, 101, 100, (315,569,0): 100, 102, 99, (315,570,0): 100, 102, 101, (315,571,0): 99, 101, 98, (315,572,0): 95, 95, 95, (315,573,0): 89, 89, 87, (315,574,0): 83, 83, 83, (315,575,0): 80, 79, 77, (315,576,0): 80, 72, 70, (315,577,0): 78, 68, 67, (315,578,0): 74, 64, 63, (315,579,0): 72, 62, 61, (315,580,0): 71, 61, 60, (315,581,0): 68, 58, 57, (315,582,0): 64, 52, 52, (315,583,0): 60, 48, 48, (315,584,0): 58, 44, 44, (315,585,0): 57, 43, 43, (315,586,0): 56, 40, 41, (315,587,0): 55, 39, 40, (315,588,0): 53, 37, 38, (315,589,0): 52, 36, 37, (315,590,0): 51, 35, 36, (315,591,0): 50, 36, 36, (315,592,0): 51, 41, 40, (315,593,0): 51, 43, 41, (315,594,0): 51, 43, 41, (315,595,0): 52, 44, 42, (315,596,0): 51, 43, 41, (315,597,0): 50, 42, 40, (315,598,0): 48, 40, 38, (315,599,0): 47, 39, 37, (316,0,0): 56, 45, 53, (316,1,0): 56, 45, 53, (316,2,0): 56, 45, 53, (316,3,0): 57, 46, 54, (316,4,0): 58, 47, 55, (316,5,0): 58, 47, 55, (316,6,0): 58, 47, 55, (316,7,0): 59, 48, 56, (316,8,0): 59, 48, 56, (316,9,0): 59, 48, 56, (316,10,0): 59, 48, 56, (316,11,0): 59, 48, 56, (316,12,0): 59, 48, 56, (316,13,0): 59, 48, 56, (316,14,0): 59, 48, 56, (316,15,0): 59, 48, 56, (316,16,0): 60, 47, 56, (316,17,0): 60, 47, 56, (316,18,0): 62, 46, 56, (316,19,0): 62, 46, 56, (316,20,0): 62, 46, 56, (316,21,0): 62, 46, 56, (316,22,0): 63, 46, 56, (316,23,0): 63, 46, 56, (316,24,0): 64, 44, 55, (316,25,0): 64, 44, 55, (316,26,0): 64, 44, 55, (316,27,0): 64, 44, 55, (316,28,0): 66, 44, 56, (316,29,0): 66, 44, 56, (316,30,0): 66, 44, 56, (316,31,0): 66, 44, 56, (316,32,0): 71, 49, 62, (316,33,0): 73, 49, 62, (316,34,0): 77, 49, 61, (316,35,0): 80, 50, 58, (316,36,0): 85, 53, 58, (316,37,0): 92, 56, 58, (316,38,0): 99, 58, 56, (316,39,0): 104, 59, 54, (316,40,0): 105, 58, 52, (316,41,0): 109, 60, 53, (316,42,0): 112, 62, 53, (316,43,0): 115, 63, 52, (316,44,0): 114, 60, 50, (316,45,0): 115, 61, 49, (316,46,0): 117, 63, 51, (316,47,0): 119, 67, 56, (316,48,0): 120, 70, 61, (316,49,0): 119, 71, 59, (316,50,0): 120, 70, 59, (316,51,0): 121, 72, 57, (316,52,0): 125, 73, 59, (316,53,0): 128, 77, 58, (316,54,0): 131, 79, 58, (316,55,0): 133, 81, 57, (316,56,0): 138, 84, 58, (316,57,0): 144, 89, 59, (316,58,0): 151, 94, 65, (316,59,0): 154, 98, 65, (316,60,0): 156, 97, 63, (316,61,0): 155, 97, 60, (316,62,0): 157, 97, 60, (316,63,0): 158, 98, 61, (316,64,0): 156, 96, 59, (316,65,0): 157, 97, 60, (316,66,0): 157, 99, 61, (316,67,0): 158, 100, 62, (316,68,0): 159, 101, 61, (316,69,0): 160, 103, 60, (316,70,0): 158, 104, 60, (316,71,0): 159, 105, 59, (316,72,0): 158, 106, 58, (316,73,0): 160, 108, 58, (316,74,0): 162, 111, 58, (316,75,0): 166, 115, 60, (316,76,0): 170, 121, 65, (316,77,0): 175, 126, 68, (316,78,0): 179, 130, 72, (316,79,0): 180, 134, 74, (316,80,0): 182, 139, 71, (316,81,0): 182, 142, 72, (316,82,0): 185, 145, 75, (316,83,0): 187, 151, 77, (316,84,0): 190, 154, 80, (316,85,0): 188, 156, 79, (316,86,0): 188, 157, 77, (316,87,0): 186, 158, 75, (316,88,0): 188, 162, 77, (316,89,0): 190, 164, 77, (316,90,0): 192, 165, 76, (316,91,0): 192, 165, 74, (316,92,0): 192, 163, 71, (316,93,0): 193, 164, 72, (316,94,0): 198, 167, 74, (316,95,0): 203, 170, 75, (316,96,0): 211, 173, 74, (316,97,0): 218, 176, 76, (316,98,0): 220, 181, 80, (316,99,0): 221, 182, 81, (316,100,0): 217, 179, 80, (316,101,0): 213, 178, 78, (316,102,0): 211, 177, 79, (316,103,0): 209, 180, 80, (316,104,0): 206, 178, 79, (316,105,0): 204, 179, 79, (316,106,0): 203, 179, 81, (316,107,0): 203, 181, 82, (316,108,0): 202, 182, 85, (316,109,0): 201, 183, 85, (316,110,0): 201, 183, 85, (316,111,0): 202, 184, 86, (316,112,0): 207, 185, 84, (316,113,0): 207, 185, 83, (316,114,0): 209, 186, 82, (316,115,0): 210, 187, 83, (316,116,0): 212, 189, 85, (316,117,0): 215, 192, 86, (316,118,0): 218, 193, 90, (316,119,0): 219, 194, 91, (316,120,0): 218, 191, 88, (316,121,0): 219, 191, 91, (316,122,0): 218, 190, 93, (316,123,0): 211, 182, 88, (316,124,0): 201, 170, 80, (316,125,0): 190, 158, 71, (316,126,0): 184, 152, 69, (316,127,0): 182, 150, 67, (316,128,0): 180, 149, 66, (316,129,0): 180, 152, 68, (316,130,0): 181, 152, 72, (316,131,0): 177, 148, 70, (316,132,0): 170, 140, 67, (316,133,0): 165, 135, 63, (316,134,0): 163, 132, 65, (316,135,0): 162, 133, 67, (316,136,0): 161, 131, 67, (316,137,0): 159, 131, 68, (316,138,0): 156, 127, 67, (316,139,0): 153, 127, 66, (316,140,0): 153, 127, 66, (316,141,0): 155, 129, 68, (316,142,0): 157, 131, 70, (316,143,0): 159, 133, 72, (316,144,0): 161, 136, 79, (316,145,0): 157, 135, 78, (316,146,0): 156, 134, 76, (316,147,0): 159, 137, 79, (316,148,0): 163, 141, 83, (316,149,0): 167, 145, 87, (316,150,0): 168, 146, 86, (316,151,0): 167, 145, 85, (316,152,0): 164, 143, 80, (316,153,0): 170, 149, 86, (316,154,0): 177, 156, 93, (316,155,0): 180, 159, 96, (316,156,0): 179, 158, 93, (316,157,0): 177, 156, 91, (316,158,0): 177, 156, 91, (316,159,0): 180, 157, 89, (316,160,0): 190, 167, 89, (316,161,0): 205, 183, 100, (316,162,0): 223, 201, 118, (316,163,0): 235, 213, 130, (316,164,0): 237, 215, 132, (316,165,0): 235, 213, 130, (316,166,0): 237, 212, 130, (316,167,0): 238, 213, 131, (316,168,0): 239, 213, 129, (316,169,0): 239, 213, 129, (316,170,0): 241, 213, 130, (316,171,0): 241, 213, 130, (316,172,0): 241, 213, 130, (316,173,0): 242, 214, 130, (316,174,0): 242, 214, 131, (316,175,0): 242, 214, 130, (316,176,0): 245, 218, 131, (316,177,0): 245, 218, 131, (316,178,0): 246, 219, 132, (316,179,0): 248, 221, 134, (316,180,0): 250, 223, 134, (316,181,0): 252, 225, 136, (316,182,0): 253, 228, 136, (316,183,0): 254, 229, 137, (316,184,0): 253, 230, 137, (316,185,0): 253, 230, 136, (316,186,0): 254, 231, 137, (316,187,0): 252, 232, 135, (316,188,0): 252, 232, 135, (316,189,0): 253, 233, 134, (316,190,0): 253, 233, 134, (316,191,0): 253, 233, 138, (316,192,0): 255, 231, 143, (316,193,0): 255, 231, 145, (316,194,0): 255, 232, 146, (316,195,0): 255, 232, 146, (316,196,0): 255, 232, 146, (316,197,0): 254, 232, 146, (316,198,0): 254, 232, 146, (316,199,0): 253, 233, 146, (316,200,0): 255, 235, 148, (316,201,0): 255, 235, 148, (316,202,0): 255, 235, 148, (316,203,0): 254, 237, 149, (316,204,0): 254, 237, 149, (316,205,0): 254, 238, 150, (316,206,0): 255, 238, 150, (316,207,0): 254, 238, 151, (316,208,0): 253, 236, 154, (316,209,0): 254, 237, 157, (316,210,0): 254, 237, 159, (316,211,0): 254, 238, 160, (316,212,0): 255, 239, 161, (316,213,0): 254, 241, 162, (316,214,0): 254, 243, 164, (316,215,0): 254, 243, 164, (316,216,0): 254, 245, 168, (316,217,0): 253, 246, 168, (316,218,0): 252, 246, 168, (316,219,0): 252, 246, 168, (316,220,0): 250, 247, 170, (316,221,0): 250, 247, 170, (316,222,0): 250, 247, 170, (316,223,0): 250, 247, 170, (316,224,0): 251, 248, 171, (316,225,0): 249, 247, 170, (316,226,0): 248, 246, 169, (316,227,0): 245, 246, 168, (316,228,0): 244, 247, 170, (316,229,0): 244, 248, 171, (316,230,0): 245, 249, 172, (316,231,0): 243, 252, 173, (316,232,0): 242, 253, 175, (316,233,0): 240, 254, 175, (316,234,0): 240, 254, 177, (316,235,0): 238, 255, 177, (316,236,0): 237, 255, 177, (316,237,0): 235, 255, 177, (316,238,0): 235, 255, 179, (316,239,0): 234, 255, 181, (316,240,0): 235, 255, 186, (316,241,0): 235, 254, 190, (316,242,0): 234, 254, 191, (316,243,0): 234, 254, 191, (316,244,0): 234, 254, 195, (316,245,0): 233, 254, 197, (316,246,0): 231, 254, 198, (316,247,0): 231, 254, 200, (316,248,0): 232, 255, 206, (316,249,0): 230, 255, 208, (316,250,0): 229, 255, 211, (316,251,0): 229, 255, 213, (316,252,0): 228, 255, 215, (316,253,0): 228, 255, 216, (316,254,0): 226, 255, 218, (316,255,0): 226, 255, 220, (316,256,0): 222, 255, 223, (316,257,0): 221, 255, 226, (316,258,0): 221, 255, 228, (316,259,0): 221, 255, 231, (316,260,0): 220, 255, 235, (316,261,0): 218, 255, 238, (316,262,0): 217, 255, 242, (316,263,0): 215, 255, 244, (316,264,0): 216, 255, 247, (316,265,0): 215, 255, 248, (316,266,0): 213, 255, 249, (316,267,0): 211, 255, 251, (316,268,0): 209, 255, 250, (316,269,0): 209, 255, 250, (316,270,0): 208, 255, 249, (316,271,0): 208, 255, 249, (316,272,0): 211, 255, 253, (316,273,0): 211, 255, 253, (316,274,0): 213, 255, 253, (316,275,0): 211, 255, 253, (316,276,0): 211, 255, 254, (316,277,0): 211, 255, 254, (316,278,0): 213, 255, 254, (316,279,0): 213, 255, 254, (316,280,0): 212, 254, 253, (316,281,0): 213, 255, 254, (316,282,0): 214, 255, 255, (316,283,0): 213, 254, 255, (316,284,0): 210, 250, 252, (316,285,0): 203, 244, 246, (316,286,0): 197, 238, 240, (316,287,0): 191, 234, 240, (316,288,0): 182, 228, 241, (316,289,0): 178, 225, 241, (316,290,0): 175, 221, 237, (316,291,0): 175, 218, 234, (316,292,0): 175, 217, 233, (316,293,0): 170, 212, 226, (316,294,0): 166, 203, 219, (316,295,0): 161, 199, 212, (316,296,0): 153, 191, 204, (316,297,0): 155, 192, 208, (316,298,0): 157, 194, 212, (316,299,0): 157, 195, 214, (316,300,0): 154, 195, 215, (316,301,0): 151, 193, 215, (316,302,0): 148, 190, 212, (316,303,0): 146, 188, 210, (316,304,0): 147, 183, 205, (316,305,0): 147, 184, 203, (316,306,0): 148, 183, 205, (316,307,0): 146, 182, 204, (316,308,0): 147, 181, 206, (316,309,0): 145, 181, 205, (316,310,0): 146, 180, 207, (316,311,0): 145, 180, 208, (316,312,0): 145, 178, 209, (316,313,0): 146, 181, 211, (316,314,0): 150, 183, 216, (316,315,0): 152, 187, 219, (316,316,0): 154, 187, 222, (316,317,0): 153, 187, 222, (316,318,0): 153, 185, 223, (316,319,0): 153, 185, 223, (316,320,0): 149, 179, 217, (316,321,0): 147, 173, 208, (316,322,0): 139, 164, 195, (316,323,0): 130, 154, 180, (316,324,0): 124, 142, 164, (316,325,0): 118, 133, 152, (316,326,0): 119, 128, 145, (316,327,0): 119, 125, 141, (316,328,0): 116, 117, 135, (316,329,0): 116, 113, 132, (316,330,0): 114, 110, 127, (316,331,0): 115, 108, 124, (316,332,0): 113, 104, 121, (316,333,0): 104, 96, 109, (316,334,0): 89, 81, 92, (316,335,0): 77, 70, 78, (316,336,0): 72, 62, 71, (316,337,0): 70, 58, 68, (316,338,0): 68, 56, 66, (316,339,0): 69, 57, 67, (316,340,0): 71, 59, 69, (316,341,0): 73, 61, 71, (316,342,0): 72, 60, 70, (316,343,0): 70, 58, 68, (316,344,0): 76, 64, 74, (316,345,0): 78, 66, 76, (316,346,0): 80, 68, 78, (316,347,0): 83, 71, 81, (316,348,0): 86, 74, 84, (316,349,0): 89, 77, 87, (316,350,0): 92, 80, 90, (316,351,0): 93, 81, 91, (316,352,0): 94, 83, 91, (316,353,0): 96, 85, 93, (316,354,0): 100, 88, 98, (316,355,0): 104, 92, 104, (316,356,0): 106, 95, 111, (316,357,0): 108, 97, 114, (316,358,0): 109, 97, 119, (316,359,0): 107, 97, 121, (316,360,0): 108, 98, 122, (316,361,0): 109, 99, 124, (316,362,0): 110, 102, 126, (316,363,0): 112, 104, 128, (316,364,0): 114, 106, 130, (316,365,0): 114, 109, 131, (316,366,0): 115, 110, 132, (316,367,0): 116, 111, 131, (316,368,0): 120, 116, 133, (316,369,0): 120, 116, 131, (316,370,0): 121, 114, 130, (316,371,0): 120, 113, 129, (316,372,0): 119, 110, 127, (316,373,0): 118, 109, 126, (316,374,0): 119, 108, 125, (316,375,0): 119, 108, 125, (316,376,0): 120, 107, 124, (316,377,0): 121, 107, 124, (316,378,0): 123, 106, 124, (316,379,0): 124, 107, 125, (316,380,0): 125, 106, 125, (316,381,0): 125, 107, 123, (316,382,0): 127, 106, 125, (316,383,0): 127, 106, 123, (316,384,0): 133, 112, 127, (316,385,0): 136, 116, 127, (316,386,0): 139, 120, 126, (316,387,0): 141, 121, 123, (316,388,0): 141, 121, 120, (316,389,0): 142, 121, 116, (316,390,0): 147, 124, 116, (316,391,0): 151, 127, 115, (316,392,0): 152, 126, 113, (316,393,0): 157, 129, 117, (316,394,0): 161, 131, 121, (316,395,0): 162, 132, 122, (316,396,0): 159, 126, 119, (316,397,0): 149, 116, 111, (316,398,0): 139, 104, 102, (316,399,0): 134, 95, 96, (316,400,0): 116, 76, 77, (316,401,0): 106, 64, 66, (316,402,0): 93, 53, 54, (316,403,0): 87, 47, 48, (316,404,0): 86, 47, 48, (316,405,0): 88, 49, 50, (316,406,0): 84, 48, 48, (316,407,0): 80, 46, 45, (316,408,0): 81, 50, 48, (316,409,0): 83, 53, 51, (316,410,0): 86, 58, 55, (316,411,0): 87, 62, 58, (316,412,0): 88, 63, 59, (316,413,0): 89, 65, 61, (316,414,0): 93, 69, 65, (316,415,0): 95, 75, 68, (316,416,0): 98, 81, 71, (316,417,0): 95, 83, 69, (316,418,0): 97, 85, 71, (316,419,0): 97, 88, 71, (316,420,0): 100, 91, 74, (316,421,0): 101, 94, 76, (316,422,0): 102, 95, 77, (316,423,0): 102, 97, 77, (316,424,0): 112, 110, 89, (316,425,0): 115, 115, 91, (316,426,0): 121, 121, 97, (316,427,0): 126, 128, 104, (316,428,0): 132, 134, 110, (316,429,0): 134, 138, 111, (316,430,0): 135, 139, 112, (316,431,0): 135, 140, 110, (316,432,0): 138, 142, 109, (316,433,0): 143, 148, 108, (316,434,0): 151, 154, 109, (316,435,0): 161, 166, 112, (316,436,0): 178, 182, 123, (316,437,0): 199, 204, 140, (316,438,0): 218, 223, 159, (316,439,0): 229, 232, 175, (316,440,0): 213, 215, 168, (316,441,0): 205, 206, 172, (316,442,0): 191, 194, 175, (316,443,0): 180, 183, 176, (316,444,0): 172, 176, 179, (316,445,0): 170, 174, 185, (316,446,0): 169, 175, 191, (316,447,0): 170, 175, 197, (316,448,0): 166, 169, 202, (316,449,0): 164, 166, 204, (316,450,0): 159, 162, 203, (316,451,0): 154, 159, 201, (316,452,0): 149, 156, 200, (316,453,0): 146, 154, 201, (316,454,0): 142, 152, 201, (316,455,0): 140, 152, 204, (316,456,0): 141, 152, 206, (316,457,0): 142, 153, 207, (316,458,0): 141, 152, 206, (316,459,0): 138, 147, 202, (316,460,0): 131, 140, 195, (316,461,0): 129, 136, 191, (316,462,0): 127, 134, 189, (316,463,0): 129, 134, 189, (316,464,0): 137, 143, 193, (316,465,0): 142, 146, 193, (316,466,0): 153, 154, 200, (316,467,0): 166, 165, 207, (316,468,0): 171, 169, 206, (316,469,0): 177, 174, 205, (316,470,0): 191, 187, 210, (316,471,0): 205, 202, 219, (316,472,0): 213, 211, 222, (316,473,0): 224, 225, 230, (316,474,0): 230, 235, 239, (316,475,0): 224, 233, 238, (316,476,0): 207, 220, 229, (316,477,0): 193, 209, 224, (316,478,0): 192, 209, 229, (316,479,0): 194, 215, 234, (316,480,0): 200, 223, 237, (316,481,0): 205, 232, 243, (316,482,0): 219, 243, 253, (316,483,0): 229, 252, 255, (316,484,0): 235, 255, 255, (316,485,0): 233, 252, 255, (316,486,0): 227, 246, 252, (316,487,0): 223, 241, 245, (316,488,0): 224, 239, 244, (316,489,0): 223, 238, 243, (316,490,0): 218, 233, 238, (316,491,0): 206, 224, 228, (316,492,0): 194, 211, 218, (316,493,0): 183, 202, 209, (316,494,0): 177, 196, 203, (316,495,0): 172, 195, 201, (316,496,0): 189, 218, 222, (316,497,0): 189, 226, 232, (316,498,0): 191, 235, 246, (316,499,0): 194, 243, 255, (316,500,0): 195, 248, 255, (316,501,0): 196, 250, 255, (316,502,0): 197, 250, 255, (316,503,0): 199, 249, 255, (316,504,0): 201, 248, 255, (316,505,0): 184, 228, 255, (316,506,0): 166, 204, 249, (316,507,0): 161, 194, 247, (316,508,0): 165, 192, 247, (316,509,0): 166, 186, 237, (316,510,0): 163, 174, 219, (316,511,0): 159, 163, 201, (316,512,0): 144, 143, 177, (316,513,0): 136, 133, 164, (316,514,0): 124, 123, 157, (316,515,0): 117, 117, 153, (316,516,0): 108, 112, 149, (316,517,0): 102, 110, 147, (316,518,0): 108, 117, 156, (316,519,0): 116, 130, 169, (316,520,0): 119, 137, 177, (316,521,0): 129, 148, 190, (316,522,0): 139, 160, 207, (316,523,0): 150, 171, 224, (316,524,0): 162, 184, 244, (316,525,0): 171, 192, 255, (316,526,0): 169, 189, 255, (316,527,0): 162, 180, 254, (316,528,0): 155, 168, 238, (316,529,0): 141, 151, 213, (316,530,0): 120, 126, 178, (316,531,0): 101, 104, 145, (316,532,0): 92, 92, 120, (316,533,0): 91, 88, 105, (316,534,0): 93, 87, 99, (316,535,0): 94, 89, 96, (316,536,0): 94, 88, 98, (316,537,0): 92, 89, 98, (316,538,0): 93, 87, 97, (316,539,0): 90, 83, 91, (316,540,0): 86, 76, 84, (316,541,0): 79, 68, 72, (316,542,0): 74, 60, 59, (316,543,0): 73, 55, 55, (316,544,0): 68, 45, 51, (316,545,0): 70, 43, 52, (316,546,0): 67, 41, 50, (316,547,0): 65, 39, 48, (316,548,0): 61, 38, 46, (316,549,0): 59, 36, 44, (316,550,0): 56, 35, 42, (316,551,0): 55, 34, 41, (316,552,0): 54, 33, 40, (316,553,0): 52, 33, 39, (316,554,0): 52, 33, 39, (316,555,0): 50, 33, 39, (316,556,0): 50, 33, 39, (316,557,0): 51, 36, 41, (316,558,0): 52, 37, 42, (316,559,0): 53, 38, 43, (316,560,0): 58, 41, 47, (316,561,0): 62, 47, 52, (316,562,0): 69, 54, 61, (316,563,0): 72, 61, 65, (316,564,0): 77, 68, 73, (316,565,0): 80, 76, 77, (316,566,0): 85, 83, 86, (316,567,0): 89, 89, 89, (316,568,0): 101, 102, 104, (316,569,0): 102, 104, 103, (316,570,0): 103, 104, 106, (316,571,0): 103, 105, 104, (316,572,0): 100, 101, 103, (316,573,0): 95, 97, 96, (316,574,0): 91, 91, 93, (316,575,0): 88, 86, 87, (316,576,0): 88, 79, 80, (316,577,0): 86, 76, 75, (316,578,0): 82, 72, 71, (316,579,0): 80, 70, 69, (316,580,0): 77, 67, 66, (316,581,0): 72, 62, 61, (316,582,0): 66, 54, 54, (316,583,0): 61, 49, 49, (316,584,0): 59, 45, 45, (316,585,0): 58, 44, 44, (316,586,0): 59, 43, 44, (316,587,0): 57, 41, 42, (316,588,0): 56, 40, 41, (316,589,0): 54, 38, 39, (316,590,0): 52, 36, 37, (316,591,0): 51, 37, 37, (316,592,0): 50, 42, 40, (316,593,0): 49, 44, 41, (316,594,0): 49, 44, 41, (316,595,0): 50, 45, 42, (316,596,0): 49, 44, 41, (316,597,0): 48, 43, 40, (316,598,0): 46, 41, 38, (316,599,0): 45, 40, 37, (317,0,0): 56, 45, 53, (317,1,0): 57, 46, 54, (317,2,0): 57, 46, 54, (317,3,0): 58, 47, 55, (317,4,0): 58, 47, 55, (317,5,0): 59, 48, 56, (317,6,0): 59, 48, 56, (317,7,0): 59, 48, 56, (317,8,0): 59, 48, 56, (317,9,0): 59, 48, 56, (317,10,0): 59, 48, 56, (317,11,0): 59, 48, 56, (317,12,0): 59, 48, 56, (317,13,0): 59, 48, 56, (317,14,0): 59, 48, 56, (317,15,0): 59, 48, 56, (317,16,0): 60, 47, 56, (317,17,0): 60, 47, 56, (317,18,0): 62, 46, 56, (317,19,0): 62, 46, 56, (317,20,0): 62, 46, 56, (317,21,0): 62, 46, 56, (317,22,0): 63, 46, 56, (317,23,0): 63, 46, 56, (317,24,0): 64, 44, 55, (317,25,0): 64, 44, 55, (317,26,0): 64, 44, 55, (317,27,0): 64, 44, 55, (317,28,0): 66, 44, 56, (317,29,0): 66, 44, 56, (317,30,0): 66, 44, 56, (317,31,0): 66, 44, 56, (317,32,0): 70, 48, 61, (317,33,0): 71, 47, 60, (317,34,0): 75, 49, 60, (317,35,0): 80, 50, 58, (317,36,0): 85, 53, 58, (317,37,0): 92, 56, 58, (317,38,0): 99, 58, 56, (317,39,0): 104, 59, 54, (317,40,0): 105, 58, 52, (317,41,0): 109, 61, 51, (317,42,0): 115, 62, 54, (317,43,0): 116, 64, 53, (317,44,0): 116, 62, 50, (317,45,0): 116, 62, 50, (317,46,0): 119, 65, 53, (317,47,0): 121, 69, 56, (317,48,0): 120, 70, 61, (317,49,0): 119, 71, 59, (317,50,0): 121, 71, 60, (317,51,0): 121, 72, 57, (317,52,0): 125, 73, 59, (317,53,0): 127, 76, 57, (317,54,0): 131, 79, 58, (317,55,0): 134, 80, 56, (317,56,0): 138, 82, 57, (317,57,0): 144, 89, 59, (317,58,0): 151, 94, 65, (317,59,0): 155, 99, 66, (317,60,0): 157, 98, 64, (317,61,0): 157, 99, 62, (317,62,0): 158, 98, 61, (317,63,0): 159, 99, 62, (317,64,0): 158, 98, 61, (317,65,0): 159, 99, 62, (317,66,0): 158, 100, 62, (317,67,0): 159, 101, 61, (317,68,0): 161, 104, 61, (317,69,0): 162, 105, 60, (317,70,0): 160, 106, 60, (317,71,0): 161, 107, 60, (317,72,0): 164, 111, 61, (317,73,0): 165, 114, 61, (317,74,0): 168, 117, 62, (317,75,0): 173, 122, 65, (317,76,0): 176, 127, 69, (317,77,0): 181, 132, 73, (317,78,0): 184, 135, 76, (317,79,0): 184, 139, 74, (317,80,0): 189, 144, 76, (317,81,0): 187, 148, 73, (317,82,0): 188, 149, 74, (317,83,0): 188, 152, 76, (317,84,0): 189, 153, 75, (317,85,0): 186, 155, 73, (317,86,0): 186, 155, 73, (317,87,0): 184, 156, 72, (317,88,0): 189, 163, 76, (317,89,0): 191, 166, 76, (317,90,0): 193, 166, 75, (317,91,0): 193, 166, 75, (317,92,0): 194, 165, 73, (317,93,0): 195, 166, 74, (317,94,0): 200, 169, 78, (317,95,0): 206, 171, 77, (317,96,0): 213, 173, 75, (317,97,0): 218, 176, 76, (317,98,0): 222, 180, 80, (317,99,0): 221, 182, 81, (317,100,0): 218, 180, 81, (317,101,0): 213, 178, 78, (317,102,0): 212, 178, 80, (317,103,0): 209, 180, 80, (317,104,0): 206, 178, 79, (317,105,0): 204, 180, 80, (317,106,0): 204, 180, 82, (317,107,0): 202, 182, 83, (317,108,0): 202, 182, 85, (317,109,0): 202, 184, 86, (317,110,0): 200, 184, 88, (317,111,0): 202, 184, 86, (317,112,0): 205, 186, 84, (317,113,0): 208, 186, 84, (317,114,0): 210, 187, 83, (317,115,0): 212, 189, 85, (317,116,0): 214, 191, 85, (317,117,0): 216, 193, 87, (317,118,0): 218, 194, 88, (317,119,0): 218, 194, 88, (317,120,0): 217, 190, 87, (317,121,0): 219, 191, 91, (317,122,0): 221, 193, 94, (317,123,0): 218, 189, 95, (317,124,0): 212, 181, 91, (317,125,0): 202, 170, 83, (317,126,0): 193, 161, 76, (317,127,0): 187, 156, 73, (317,128,0): 183, 152, 69, (317,129,0): 182, 154, 71, (317,130,0): 182, 153, 73, (317,131,0): 178, 149, 71, (317,132,0): 173, 143, 70, (317,133,0): 166, 137, 67, (317,134,0): 161, 132, 64, (317,135,0): 159, 129, 65, (317,136,0): 159, 131, 68, (317,137,0): 157, 129, 66, (317,138,0): 152, 126, 65, (317,139,0): 150, 124, 63, (317,140,0): 151, 125, 64, (317,141,0): 153, 127, 66, (317,142,0): 157, 131, 70, (317,143,0): 158, 134, 74, (317,144,0): 159, 137, 79, (317,145,0): 157, 135, 78, (317,146,0): 157, 135, 77, (317,147,0): 161, 139, 81, (317,148,0): 166, 144, 86, (317,149,0): 169, 147, 89, (317,150,0): 170, 148, 88, (317,151,0): 169, 147, 87, (317,152,0): 165, 143, 83, (317,153,0): 170, 149, 86, (317,154,0): 175, 154, 91, (317,155,0): 176, 155, 92, (317,156,0): 175, 154, 89, (317,157,0): 175, 154, 89, (317,158,0): 179, 158, 93, (317,159,0): 183, 163, 94, (317,160,0): 198, 177, 98, (317,161,0): 213, 191, 108, (317,162,0): 231, 209, 126, (317,163,0): 240, 218, 135, (317,164,0): 240, 218, 135, (317,165,0): 237, 215, 132, (317,166,0): 239, 214, 132, (317,167,0): 241, 216, 134, (317,168,0): 239, 213, 129, (317,169,0): 239, 213, 129, (317,170,0): 240, 212, 129, (317,171,0): 241, 213, 130, (317,172,0): 241, 213, 130, (317,173,0): 241, 213, 130, (317,174,0): 241, 213, 130, (317,175,0): 241, 213, 130, (317,176,0): 246, 218, 134, (317,177,0): 247, 220, 133, (317,178,0): 249, 222, 135, (317,179,0): 252, 225, 138, (317,180,0): 254, 227, 138, (317,181,0): 255, 228, 139, (317,182,0): 254, 229, 137, (317,183,0): 254, 229, 137, (317,184,0): 255, 232, 138, (317,185,0): 255, 232, 138, (317,186,0): 253, 233, 136, (317,187,0): 253, 233, 134, (317,188,0): 253, 233, 134, (317,189,0): 253, 233, 134, (317,190,0): 253, 233, 134, (317,191,0): 253, 233, 136, (317,192,0): 255, 231, 141, (317,193,0): 255, 231, 145, (317,194,0): 255, 232, 146, (317,195,0): 254, 232, 146, (317,196,0): 255, 233, 147, (317,197,0): 254, 234, 147, (317,198,0): 254, 234, 147, (317,199,0): 254, 234, 147, (317,200,0): 255, 236, 149, (317,201,0): 254, 237, 149, (317,202,0): 254, 237, 149, (317,203,0): 254, 238, 150, (317,204,0): 254, 238, 150, (317,205,0): 255, 239, 151, (317,206,0): 255, 239, 151, (317,207,0): 255, 239, 152, (317,208,0): 255, 238, 156, (317,209,0): 255, 238, 158, (317,210,0): 255, 238, 160, (317,211,0): 255, 239, 161, (317,212,0): 255, 240, 162, (317,213,0): 254, 241, 162, (317,214,0): 255, 242, 164, (317,215,0): 254, 243, 164, (317,216,0): 255, 246, 169, (317,217,0): 254, 247, 169, (317,218,0): 254, 247, 169, (317,219,0): 253, 247, 169, (317,220,0): 251, 248, 171, (317,221,0): 251, 248, 171, (317,222,0): 251, 248, 171, (317,223,0): 251, 248, 171, (317,224,0): 252, 249, 172, (317,225,0): 250, 247, 170, (317,226,0): 248, 245, 168, (317,227,0): 246, 244, 167, (317,228,0): 244, 245, 169, (317,229,0): 244, 247, 170, (317,230,0): 245, 249, 172, (317,231,0): 244, 253, 174, (317,232,0): 242, 253, 175, (317,233,0): 240, 254, 175, (317,234,0): 240, 254, 177, (317,235,0): 237, 255, 177, (317,236,0): 237, 255, 177, (317,237,0): 235, 255, 177, (317,238,0): 234, 255, 179, (317,239,0): 234, 255, 183, (317,240,0): 235, 254, 188, (317,241,0): 235, 254, 190, (317,242,0): 234, 254, 191, (317,243,0): 234, 254, 193, (317,244,0): 233, 254, 195, (317,245,0): 233, 254, 198, (317,246,0): 231, 254, 200, (317,247,0): 230, 254, 202, (317,248,0): 229, 255, 207, (317,249,0): 229, 255, 208, (317,250,0): 228, 255, 212, (317,251,0): 227, 255, 214, (317,252,0): 227, 255, 215, (317,253,0): 227, 255, 215, (317,254,0): 225, 255, 217, (317,255,0): 224, 255, 219, (317,256,0): 220, 253, 222, (317,257,0): 219, 253, 226, (317,258,0): 219, 253, 228, (317,259,0): 218, 253, 229, (317,260,0): 216, 254, 233, (317,261,0): 215, 254, 236, (317,262,0): 213, 254, 240, (317,263,0): 212, 254, 244, (317,264,0): 214, 255, 247, (317,265,0): 213, 255, 249, (317,266,0): 210, 255, 250, (317,267,0): 209, 255, 250, (317,268,0): 206, 255, 249, (317,269,0): 206, 255, 249, (317,270,0): 205, 254, 248, (317,271,0): 204, 255, 248, (317,272,0): 207, 255, 252, (317,273,0): 206, 255, 252, (317,274,0): 207, 255, 252, (317,275,0): 207, 255, 252, (317,276,0): 207, 255, 253, (317,277,0): 207, 255, 253, (317,278,0): 209, 255, 253, (317,279,0): 209, 255, 253, (317,280,0): 210, 255, 254, (317,281,0): 210, 255, 254, (317,282,0): 211, 255, 255, (317,283,0): 210, 254, 255, (317,284,0): 208, 252, 253, (317,285,0): 204, 248, 249, (317,286,0): 202, 243, 245, (317,287,0): 198, 241, 247, (317,288,0): 187, 233, 248, (317,289,0): 181, 228, 246, (317,290,0): 176, 221, 240, (317,291,0): 176, 219, 236, (317,292,0): 176, 217, 235, (317,293,0): 175, 214, 231, (317,294,0): 169, 206, 224, (317,295,0): 163, 200, 216, (317,296,0): 155, 192, 208, (317,297,0): 157, 194, 212, (317,298,0): 159, 196, 215, (317,299,0): 160, 196, 218, (317,300,0): 158, 196, 219, (317,301,0): 152, 193, 215, (317,302,0): 148, 188, 213, (317,303,0): 146, 187, 209, (317,304,0): 145, 181, 203, (317,305,0): 146, 181, 201, (317,306,0): 148, 180, 203, (317,307,0): 145, 180, 202, (317,308,0): 147, 179, 204, (317,309,0): 145, 179, 204, (317,310,0): 148, 179, 207, (317,311,0): 146, 180, 207, (317,312,0): 145, 176, 205, (317,313,0): 145, 178, 209, (317,314,0): 149, 179, 213, (317,315,0): 150, 183, 216, (317,316,0): 154, 184, 220, (317,317,0): 153, 186, 221, (317,318,0): 155, 185, 223, (317,319,0): 155, 185, 223, (317,320,0): 148, 178, 216, (317,321,0): 146, 174, 211, (317,322,0): 140, 166, 199, (317,323,0): 130, 154, 182, (317,324,0): 124, 142, 166, (317,325,0): 117, 132, 151, (317,326,0): 119, 128, 145, (317,327,0): 120, 126, 142, (317,328,0): 118, 119, 137, (317,329,0): 117, 114, 133, (317,330,0): 116, 109, 127, (317,331,0): 113, 106, 122, (317,332,0): 110, 102, 117, (317,333,0): 101, 93, 106, (317,334,0): 86, 78, 89, (317,335,0): 77, 67, 76, (317,336,0): 72, 60, 70, (317,337,0): 70, 58, 68, (317,338,0): 68, 56, 66, (317,339,0): 70, 58, 68, (317,340,0): 73, 61, 71, (317,341,0): 74, 62, 72, (317,342,0): 73, 61, 71, (317,343,0): 71, 59, 69, (317,344,0): 77, 65, 75, (317,345,0): 78, 66, 76, (317,346,0): 81, 69, 79, (317,347,0): 84, 72, 82, (317,348,0): 87, 75, 85, (317,349,0): 90, 78, 88, (317,350,0): 92, 80, 90, (317,351,0): 94, 83, 91, (317,352,0): 96, 83, 90, (317,353,0): 98, 85, 92, (317,354,0): 104, 88, 98, (317,355,0): 106, 93, 103, (317,356,0): 109, 95, 110, (317,357,0): 109, 96, 113, (317,358,0): 109, 96, 116, (317,359,0): 109, 95, 118, (317,360,0): 111, 97, 120, (317,361,0): 111, 99, 123, (317,362,0): 112, 100, 124, (317,363,0): 112, 102, 126, (317,364,0): 114, 104, 128, (317,365,0): 117, 108, 129, (317,366,0): 118, 109, 130, (317,367,0): 118, 111, 129, (317,368,0): 118, 114, 129, (317,369,0): 118, 114, 129, (317,370,0): 120, 113, 129, (317,371,0): 119, 112, 128, (317,372,0): 120, 111, 128, (317,373,0): 119, 110, 127, (317,374,0): 121, 110, 127, (317,375,0): 121, 110, 127, (317,376,0): 125, 111, 128, (317,377,0): 124, 110, 127, (317,378,0): 126, 109, 127, (317,379,0): 126, 109, 127, (317,380,0): 126, 107, 126, (317,381,0): 126, 107, 126, (317,382,0): 128, 107, 126, (317,383,0): 127, 106, 125, (317,384,0): 134, 113, 130, (317,385,0): 137, 117, 129, (317,386,0): 141, 119, 131, (317,387,0): 142, 119, 125, (317,388,0): 141, 119, 121, (317,389,0): 143, 119, 115, (317,390,0): 146, 121, 114, (317,391,0): 151, 124, 113, (317,392,0): 154, 126, 115, (317,393,0): 156, 126, 115, (317,394,0): 158, 125, 116, (317,395,0): 154, 119, 113, (317,396,0): 143, 108, 104, (317,397,0): 131, 93, 92, (317,398,0): 117, 78, 79, (317,399,0): 109, 69, 70, (317,400,0): 103, 58, 61, (317,401,0): 97, 52, 55, (317,402,0): 91, 46, 49, (317,403,0): 87, 45, 47, (317,404,0): 88, 46, 48, (317,405,0): 88, 48, 49, (317,406,0): 85, 46, 47, (317,407,0): 80, 44, 44, (317,408,0): 83, 49, 48, (317,409,0): 84, 53, 51, (317,410,0): 88, 58, 56, (317,411,0): 89, 61, 58, (317,412,0): 91, 63, 60, (317,413,0): 91, 66, 62, (317,414,0): 96, 71, 67, (317,415,0): 96, 76, 69, (317,416,0): 97, 80, 70, (317,417,0): 97, 83, 70, (317,418,0): 99, 86, 70, (317,419,0): 101, 89, 73, (317,420,0): 105, 93, 77, (317,421,0): 106, 98, 79, (317,422,0): 108, 100, 81, (317,423,0): 108, 101, 82, (317,424,0): 119, 114, 92, (317,425,0): 120, 118, 95, (317,426,0): 125, 123, 100, (317,427,0): 130, 130, 104, (317,428,0): 135, 135, 109, (317,429,0): 136, 139, 112, (317,430,0): 138, 141, 114, (317,431,0): 138, 143, 113, (317,432,0): 143, 147, 114, (317,433,0): 150, 155, 115, (317,434,0): 162, 165, 118, (317,435,0): 175, 180, 124, (317,436,0): 195, 200, 136, (317,437,0): 216, 221, 154, (317,438,0): 229, 234, 168, (317,439,0): 232, 237, 179, (317,440,0): 212, 215, 172, (317,441,0): 203, 206, 177, (317,442,0): 191, 193, 179, (317,443,0): 180, 184, 183, (317,444,0): 174, 178, 187, (317,445,0): 171, 177, 193, (317,446,0): 170, 177, 196, (317,447,0): 169, 174, 203, (317,448,0): 166, 168, 207, (317,449,0): 161, 164, 209, (317,450,0): 156, 160, 207, (317,451,0): 151, 157, 205, (317,452,0): 149, 156, 208, (317,453,0): 146, 156, 209, (317,454,0): 143, 154, 208, (317,455,0): 141, 152, 208, (317,456,0): 140, 152, 212, (317,457,0): 141, 153, 213, (317,458,0): 142, 152, 213, (317,459,0): 138, 148, 209, (317,460,0): 133, 141, 203, (317,461,0): 127, 135, 197, (317,462,0): 127, 133, 193, (317,463,0): 127, 133, 191, (317,464,0): 137, 143, 195, (317,465,0): 142, 148, 196, (317,466,0): 157, 159, 207, (317,467,0): 169, 171, 212, (317,468,0): 176, 174, 213, (317,469,0): 183, 180, 211, (317,470,0): 197, 193, 216, (317,471,0): 214, 210, 225, (317,472,0): 227, 225, 236, (317,473,0): 238, 237, 243, (317,474,0): 243, 246, 251, (317,475,0): 236, 241, 247, (317,476,0): 216, 224, 237, (317,477,0): 199, 211, 227, (317,478,0): 194, 206, 230, (317,479,0): 193, 209, 232, (317,480,0): 182, 199, 219, (317,481,0): 188, 207, 222, (317,482,0): 201, 219, 233, (317,483,0): 215, 233, 245, (317,484,0): 226, 243, 253, (317,485,0): 229, 243, 252, (317,486,0): 222, 236, 245, (317,487,0): 217, 230, 238, (317,488,0): 205, 218, 224, (317,489,0): 202, 216, 219, (317,490,0): 198, 209, 213, (317,491,0): 184, 198, 199, (317,492,0): 171, 185, 186, (317,493,0): 160, 174, 175, (317,494,0): 154, 168, 169, (317,495,0): 149, 167, 169, (317,496,0): 173, 201, 204, (317,497,0): 173, 210, 216, (317,498,0): 180, 224, 235, (317,499,0): 190, 239, 253, (317,500,0): 197, 250, 255, (317,501,0): 201, 255, 255, (317,502,0): 202, 252, 255, (317,503,0): 201, 249, 255, (317,504,0): 194, 239, 255, (317,505,0): 177, 217, 252, (317,506,0): 160, 196, 244, (317,507,0): 158, 189, 244, (317,508,0): 165, 187, 244, (317,509,0): 166, 182, 234, (317,510,0): 165, 172, 216, (317,511,0): 165, 165, 203, (317,512,0): 145, 142, 173, (317,513,0): 134, 130, 157, (317,514,0): 121, 118, 145, (317,515,0): 114, 111, 140, (317,516,0): 104, 105, 133, (317,517,0): 98, 102, 131, (317,518,0): 102, 107, 137, (317,519,0): 109, 115, 147, (317,520,0): 114, 124, 160, (317,521,0): 122, 134, 174, (317,522,0): 133, 147, 194, (317,523,0): 145, 160, 215, (317,524,0): 162, 176, 239, (317,525,0): 175, 190, 255, (317,526,0): 175, 188, 255, (317,527,0): 169, 180, 255, (317,528,0): 158, 168, 240, (317,529,0): 145, 155, 217, (317,530,0): 128, 134, 186, (317,531,0): 113, 115, 154, (317,532,0): 107, 104, 133, (317,533,0): 104, 101, 118, (317,534,0): 104, 101, 112, (317,535,0): 106, 101, 108, (317,536,0): 101, 98, 107, (317,537,0): 100, 97, 106, (317,538,0): 100, 94, 104, (317,539,0): 95, 90, 97, (317,540,0): 88, 81, 88, (317,541,0): 82, 71, 75, (317,542,0): 74, 63, 61, (317,543,0): 72, 56, 56, (317,544,0): 71, 46, 52, (317,545,0): 71, 44, 53, (317,546,0): 68, 42, 51, (317,547,0): 65, 39, 48, (317,548,0): 61, 38, 46, (317,549,0): 58, 35, 43, (317,550,0): 55, 34, 41, (317,551,0): 54, 33, 40, (317,552,0): 52, 33, 39, (317,553,0): 51, 32, 38, (317,554,0): 49, 32, 38, (317,555,0): 49, 32, 38, (317,556,0): 49, 34, 39, (317,557,0): 50, 35, 40, (317,558,0): 52, 37, 42, (317,559,0): 53, 38, 43, (317,560,0): 52, 35, 43, (317,561,0): 57, 42, 49, (317,562,0): 62, 49, 56, (317,563,0): 69, 58, 64, (317,564,0): 74, 65, 70, (317,565,0): 79, 74, 78, (317,566,0): 86, 84, 87, (317,567,0): 91, 91, 93, (317,568,0): 100, 101, 103, (317,569,0): 101, 102, 104, (317,570,0): 104, 105, 107, (317,571,0): 105, 106, 108, (317,572,0): 104, 105, 107, (317,573,0): 101, 102, 104, (317,574,0): 98, 98, 100, (317,575,0): 96, 94, 95, (317,576,0): 94, 85, 86, (317,577,0): 93, 83, 82, (317,578,0): 90, 80, 79, (317,579,0): 87, 77, 76, (317,580,0): 83, 73, 72, (317,581,0): 76, 66, 65, (317,582,0): 68, 56, 56, (317,583,0): 61, 49, 49, (317,584,0): 59, 45, 45, (317,585,0): 59, 45, 45, (317,586,0): 60, 44, 45, (317,587,0): 59, 43, 44, (317,588,0): 58, 42, 43, (317,589,0): 55, 39, 40, (317,590,0): 53, 37, 38, (317,591,0): 51, 37, 37, (317,592,0): 50, 42, 40, (317,593,0): 49, 44, 41, (317,594,0): 49, 44, 41, (317,595,0): 50, 45, 42, (317,596,0): 49, 44, 41, (317,597,0): 48, 43, 40, (317,598,0): 46, 41, 38, (317,599,0): 45, 40, 37, (318,0,0): 57, 46, 54, (318,1,0): 57, 46, 54, (318,2,0): 57, 46, 54, (318,3,0): 58, 47, 55, (318,4,0): 58, 47, 55, (318,5,0): 59, 48, 56, (318,6,0): 59, 48, 56, (318,7,0): 60, 49, 57, (318,8,0): 59, 48, 56, (318,9,0): 59, 48, 56, (318,10,0): 59, 48, 56, (318,11,0): 59, 48, 56, (318,12,0): 59, 48, 56, (318,13,0): 59, 48, 56, (318,14,0): 59, 48, 56, (318,15,0): 59, 48, 56, (318,16,0): 60, 47, 56, (318,17,0): 60, 47, 56, (318,18,0): 62, 46, 56, (318,19,0): 62, 46, 56, (318,20,0): 62, 46, 56, (318,21,0): 62, 46, 56, (318,22,0): 63, 46, 56, (318,23,0): 63, 46, 56, (318,24,0): 65, 45, 56, (318,25,0): 65, 45, 56, (318,26,0): 65, 45, 56, (318,27,0): 65, 45, 56, (318,28,0): 65, 43, 55, (318,29,0): 65, 43, 55, (318,30,0): 65, 43, 55, (318,31,0): 65, 43, 55, (318,32,0): 69, 47, 60, (318,33,0): 70, 46, 59, (318,34,0): 74, 48, 59, (318,35,0): 79, 49, 57, (318,36,0): 85, 53, 58, (318,37,0): 92, 56, 58, (318,38,0): 98, 58, 58, (318,39,0): 103, 59, 56, (318,40,0): 106, 59, 53, (318,41,0): 110, 62, 52, (318,42,0): 116, 63, 55, (318,43,0): 117, 65, 54, (318,44,0): 117, 63, 51, (318,45,0): 118, 64, 52, (318,46,0): 121, 67, 55, (318,47,0): 123, 71, 58, (318,48,0): 121, 71, 62, (318,49,0): 121, 71, 60, (318,50,0): 121, 71, 60, (318,51,0): 121, 72, 57, (318,52,0): 125, 73, 59, (318,53,0): 127, 76, 57, (318,54,0): 130, 78, 57, (318,55,0): 134, 80, 56, (318,56,0): 138, 82, 57, (318,57,0): 144, 89, 59, (318,58,0): 152, 95, 66, (318,59,0): 158, 99, 67, (318,60,0): 160, 100, 66, (318,61,0): 159, 99, 63, (318,62,0): 159, 99, 62, (318,63,0): 160, 100, 63, (318,64,0): 163, 104, 64, (318,65,0): 163, 104, 64, (318,66,0): 164, 105, 65, (318,67,0): 165, 106, 66, (318,68,0): 165, 108, 65, (318,69,0): 166, 109, 64, (318,70,0): 167, 111, 64, (318,71,0): 165, 112, 62, (318,72,0): 170, 117, 65, (318,73,0): 171, 118, 64, (318,74,0): 174, 123, 66, (318,75,0): 178, 128, 69, (318,76,0): 182, 132, 73, (318,77,0): 186, 136, 75, (318,78,0): 188, 140, 78, (318,79,0): 187, 142, 75, (318,80,0): 194, 150, 77, (318,81,0): 191, 152, 75, (318,82,0): 190, 151, 74, (318,83,0): 188, 153, 72, (318,84,0): 189, 154, 73, (318,85,0): 187, 156, 73, (318,86,0): 189, 158, 75, (318,87,0): 188, 161, 74, (318,88,0): 189, 163, 76, (318,89,0): 191, 166, 76, (318,90,0): 194, 167, 76, (318,91,0): 194, 167, 76, (318,92,0): 195, 165, 75, (318,93,0): 197, 168, 76, (318,94,0): 202, 171, 80, (318,95,0): 209, 174, 80, (318,96,0): 212, 172, 74, (318,97,0): 218, 176, 76, (318,98,0): 222, 180, 80, (318,99,0): 221, 182, 81, (318,100,0): 217, 179, 80, (318,101,0): 213, 178, 78, (318,102,0): 211, 177, 79, (318,103,0): 209, 179, 81, (318,104,0): 207, 179, 82, (318,105,0): 204, 180, 82, (318,106,0): 204, 180, 84, (318,107,0): 202, 182, 85, (318,108,0): 202, 182, 87, (318,109,0): 202, 183, 88, (318,110,0): 200, 184, 89, (318,111,0): 203, 184, 89, (318,112,0): 204, 185, 83, (318,113,0): 208, 186, 84, (318,114,0): 211, 190, 85, (318,115,0): 213, 192, 87, (318,116,0): 216, 193, 87, (318,117,0): 216, 194, 85, (318,118,0): 215, 193, 84, (318,119,0): 215, 193, 84, (318,120,0): 216, 192, 86, (318,121,0): 216, 191, 88, (318,122,0): 220, 192, 93, (318,123,0): 220, 191, 97, (318,124,0): 218, 189, 97, (318,125,0): 212, 182, 94, (318,126,0): 204, 172, 87, (318,127,0): 198, 167, 84, (318,128,0): 189, 158, 75, (318,129,0): 185, 157, 74, (318,130,0): 183, 154, 74, (318,131,0): 180, 151, 75, (318,132,0): 175, 147, 73, (318,133,0): 168, 139, 69, (318,134,0): 161, 132, 64, (318,135,0): 155, 127, 62, (318,136,0): 155, 127, 64, (318,137,0): 153, 124, 64, (318,138,0): 148, 122, 61, (318,139,0): 146, 120, 59, (318,140,0): 146, 122, 60, (318,141,0): 149, 125, 63, (318,142,0): 153, 129, 67, (318,143,0): 156, 132, 72, (318,144,0): 156, 134, 76, (318,145,0): 155, 133, 76, (318,146,0): 156, 134, 77, (318,147,0): 160, 138, 81, (318,148,0): 165, 143, 85, (318,149,0): 169, 147, 89, (318,150,0): 169, 147, 89, (318,151,0): 167, 145, 85, (318,152,0): 166, 144, 84, (318,153,0): 170, 148, 88, (318,154,0): 173, 152, 89, (318,155,0): 172, 151, 88, (318,156,0): 170, 149, 86, (318,157,0): 173, 152, 89, (318,158,0): 181, 160, 95, (318,159,0): 189, 169, 100, (318,160,0): 207, 186, 107, (318,161,0): 220, 199, 116, (318,162,0): 237, 215, 132, (318,163,0): 243, 221, 138, (318,164,0): 240, 218, 135, (318,165,0): 237, 215, 132, (318,166,0): 241, 216, 134, (318,167,0): 244, 219, 137, (318,168,0): 242, 215, 134, (318,169,0): 242, 215, 134, (318,170,0): 242, 215, 134, (318,171,0): 242, 215, 134, (318,172,0): 243, 215, 132, (318,173,0): 243, 215, 132, (318,174,0): 243, 215, 132, (318,175,0): 243, 215, 132, (318,176,0): 247, 219, 135, (318,177,0): 249, 221, 137, (318,178,0): 252, 225, 138, (318,179,0): 255, 228, 141, (318,180,0): 255, 230, 140, (318,181,0): 255, 230, 140, (318,182,0): 255, 230, 138, (318,183,0): 254, 229, 137, (318,184,0): 255, 233, 139, (318,185,0): 255, 233, 139, (318,186,0): 253, 233, 136, (318,187,0): 253, 233, 134, (318,188,0): 253, 233, 134, (318,189,0): 253, 234, 132, (318,190,0): 252, 234, 132, (318,191,0): 252, 234, 136, (318,192,0): 253, 232, 141, (318,193,0): 253, 231, 145, (318,194,0): 254, 232, 146, (318,195,0): 253, 233, 146, (318,196,0): 254, 234, 147, (318,197,0): 255, 235, 148, (318,198,0): 255, 235, 148, (318,199,0): 254, 237, 149, (318,200,0): 254, 237, 149, (318,201,0): 254, 238, 150, (318,202,0): 254, 238, 150, (318,203,0): 255, 239, 151, (318,204,0): 255, 239, 151, (318,205,0): 255, 241, 152, (318,206,0): 255, 241, 152, (318,207,0): 255, 241, 153, (318,208,0): 255, 239, 159, (318,209,0): 255, 239, 161, (318,210,0): 255, 239, 161, (318,211,0): 255, 239, 161, (318,212,0): 255, 240, 163, (318,213,0): 254, 241, 163, (318,214,0): 254, 241, 163, (318,215,0): 254, 243, 164, (318,216,0): 255, 247, 170, (318,217,0): 255, 248, 170, (318,218,0): 255, 247, 172, (318,219,0): 254, 248, 172, (318,220,0): 252, 249, 172, (318,221,0): 252, 249, 172, (318,222,0): 252, 248, 174, (318,223,0): 252, 248, 174, (318,224,0): 255, 249, 173, (318,225,0): 251, 248, 171, (318,226,0): 248, 245, 168, (318,227,0): 246, 244, 167, (318,228,0): 244, 245, 169, (318,229,0): 244, 247, 170, (318,230,0): 246, 250, 173, (318,231,0): 245, 254, 175, (318,232,0): 242, 253, 175, (318,233,0): 240, 254, 175, (318,234,0): 240, 254, 177, (318,235,0): 237, 255, 177, (318,236,0): 237, 255, 177, (318,237,0): 235, 255, 177, (318,238,0): 234, 255, 179, (318,239,0): 233, 255, 183, (318,240,0): 234, 255, 188, (318,241,0): 234, 254, 191, (318,242,0): 234, 254, 193, (318,243,0): 234, 254, 193, (318,244,0): 233, 254, 195, (318,245,0): 233, 254, 198, (318,246,0): 231, 254, 200, (318,247,0): 230, 254, 202, (318,248,0): 227, 253, 205, (318,249,0): 227, 253, 206, (318,250,0): 226, 253, 210, (318,251,0): 225, 253, 212, (318,252,0): 225, 253, 213, (318,253,0): 223, 253, 215, (318,254,0): 223, 253, 217, (318,255,0): 222, 253, 219, (318,256,0): 219, 252, 223, (318,257,0): 218, 252, 225, (318,258,0): 217, 253, 227, (318,259,0): 217, 252, 230, (318,260,0): 215, 252, 234, (318,261,0): 214, 252, 237, (318,262,0): 212, 253, 239, (318,263,0): 211, 253, 243, (318,264,0): 212, 255, 246, (318,265,0): 210, 255, 248, (318,266,0): 208, 255, 249, (318,267,0): 206, 255, 249, (318,268,0): 205, 254, 248, (318,269,0): 204, 255, 248, (318,270,0): 203, 254, 247, (318,271,0): 202, 255, 247, (318,272,0): 203, 255, 250, (318,273,0): 202, 255, 250, (318,274,0): 203, 255, 252, (318,275,0): 203, 255, 252, (318,276,0): 203, 255, 252, (318,277,0): 203, 255, 252, (318,278,0): 205, 255, 253, (318,279,0): 206, 255, 253, (318,280,0): 208, 255, 255, (318,281,0): 208, 255, 254, (318,282,0): 209, 255, 255, (318,283,0): 208, 254, 254, (318,284,0): 206, 252, 252, (318,285,0): 205, 251, 251, (318,286,0): 205, 249, 250, (318,287,0): 203, 248, 254, (318,288,0): 191, 237, 253, (318,289,0): 183, 230, 250, (318,290,0): 177, 222, 243, (318,291,0): 175, 218, 237, (318,292,0): 176, 217, 237, (318,293,0): 176, 214, 233, (318,294,0): 170, 207, 225, (318,295,0): 165, 200, 219, (318,296,0): 156, 191, 210, (318,297,0): 158, 193, 213, (318,298,0): 161, 196, 216, (318,299,0): 161, 197, 219, (318,300,0): 159, 197, 220, (318,301,0): 153, 193, 218, (318,302,0): 149, 189, 215, (318,303,0): 148, 185, 211, (318,304,0): 146, 181, 203, (318,305,0): 147, 179, 200, (318,306,0): 146, 177, 198, (318,307,0): 144, 176, 197, (318,308,0): 146, 176, 200, (318,309,0): 146, 178, 203, (318,310,0): 148, 178, 206, (318,311,0): 148, 179, 207, (318,312,0): 144, 173, 203, (318,313,0): 145, 176, 207, (318,314,0): 148, 177, 211, (318,315,0): 150, 180, 214, (318,316,0): 154, 182, 219, (318,317,0): 154, 184, 220, (318,318,0): 157, 185, 222, (318,319,0): 156, 186, 224, (318,320,0): 150, 180, 218, (318,321,0): 148, 176, 213, (318,322,0): 143, 169, 202, (318,323,0): 133, 157, 185, (318,324,0): 126, 144, 168, (318,325,0): 119, 134, 153, (318,326,0): 121, 129, 148, (318,327,0): 123, 128, 147, (318,328,0): 123, 122, 140, (318,329,0): 118, 115, 134, (318,330,0): 115, 108, 126, (318,331,0): 111, 102, 119, (318,332,0): 109, 98, 114, (318,333,0): 99, 89, 100, (318,334,0): 86, 76, 85, (318,335,0): 75, 65, 73, (318,336,0): 71, 59, 69, (318,337,0): 70, 58, 68, (318,338,0): 69, 57, 67, (318,339,0): 71, 59, 69, (318,340,0): 74, 62, 72, (318,341,0): 75, 63, 73, (318,342,0): 73, 61, 71, (318,343,0): 71, 59, 69, (318,344,0): 77, 65, 75, (318,345,0): 78, 66, 76, (318,346,0): 81, 69, 79, (318,347,0): 84, 72, 82, (318,348,0): 87, 75, 85, (318,349,0): 90, 78, 88, (318,350,0): 93, 81, 91, (318,351,0): 95, 82, 91, (318,352,0): 98, 83, 90, (318,353,0): 101, 86, 93, (318,354,0): 106, 89, 99, (318,355,0): 109, 93, 104, (318,356,0): 112, 96, 109, (318,357,0): 111, 97, 112, (318,358,0): 110, 95, 114, (318,359,0): 109, 94, 115, (318,360,0): 112, 97, 120, (318,361,0): 112, 98, 121, (318,362,0): 114, 100, 123, (318,363,0): 115, 103, 125, (318,364,0): 117, 105, 127, (318,365,0): 119, 107, 127, (318,366,0): 120, 108, 128, (318,367,0): 119, 110, 127, (318,368,0): 118, 111, 127, (318,369,0): 116, 112, 127, (318,370,0): 118, 111, 127, (318,371,0): 119, 112, 128, (318,372,0): 120, 111, 128, (318,373,0): 121, 112, 129, (318,374,0): 123, 112, 129, (318,375,0): 123, 112, 129, (318,376,0): 128, 113, 132, (318,377,0): 127, 112, 131, (318,378,0): 129, 112, 131, (318,379,0): 128, 111, 130, (318,380,0): 128, 109, 128, (318,381,0): 127, 108, 127, (318,382,0): 128, 107, 126, (318,383,0): 128, 107, 126, (318,384,0): 134, 111, 131, (318,385,0): 136, 113, 129, (318,386,0): 139, 115, 129, (318,387,0): 139, 116, 124, (318,388,0): 140, 115, 118, (318,389,0): 140, 114, 113, (318,390,0): 145, 118, 111, (318,391,0): 148, 120, 109, (318,392,0): 151, 121, 111, (318,393,0): 150, 118, 107, (318,394,0): 145, 111, 102, (318,395,0): 138, 101, 95, (318,396,0): 125, 87, 84, (318,397,0): 113, 73, 73, (318,398,0): 102, 62, 63, (318,399,0): 96, 54, 56, (318,400,0): 96, 50, 53, (318,401,0): 94, 48, 50, (318,402,0): 91, 45, 47, (318,403,0): 88, 44, 45, (318,404,0): 88, 44, 45, (318,405,0): 86, 44, 45, (318,406,0): 84, 44, 44, (318,407,0): 83, 45, 44, (318,408,0): 81, 46, 44, (318,409,0): 83, 49, 47, (318,410,0): 86, 55, 52, (318,411,0): 88, 59, 55, (318,412,0): 88, 60, 56, (318,413,0): 91, 63, 59, (318,414,0): 96, 68, 64, (318,415,0): 96, 73, 65, (318,416,0): 97, 79, 67, (318,417,0): 96, 83, 67, (318,418,0): 99, 86, 70, (318,419,0): 103, 91, 75, (318,420,0): 107, 96, 78, (318,421,0): 109, 101, 82, (318,422,0): 113, 105, 86, (318,423,0): 113, 107, 85, (318,424,0): 122, 117, 95, (318,425,0): 122, 120, 97, (318,426,0): 127, 125, 100, (318,427,0): 131, 131, 105, (318,428,0): 137, 137, 111, (318,429,0): 140, 143, 114, (318,430,0): 144, 147, 118, (318,431,0): 146, 149, 120, (318,432,0): 151, 155, 122, (318,433,0): 164, 169, 129, (318,434,0): 179, 186, 135, (318,435,0): 195, 203, 143, (318,436,0): 216, 223, 155, (318,437,0): 232, 239, 169, (318,438,0): 235, 242, 174, (318,439,0): 230, 235, 177, (318,440,0): 212, 214, 174, (318,441,0): 202, 206, 179, (318,442,0): 192, 195, 186, (318,443,0): 184, 188, 191, (318,444,0): 180, 184, 196, (318,445,0): 177, 182, 202, (318,446,0): 174, 180, 204, (318,447,0): 171, 177, 209, (318,448,0): 167, 170, 213, (318,449,0): 163, 165, 214, (318,450,0): 157, 160, 211, (318,451,0): 153, 159, 211, (318,452,0): 152, 159, 214, (318,453,0): 150, 159, 216, (318,454,0): 146, 156, 215, (318,455,0): 143, 155, 215, (318,456,0): 141, 152, 216, (318,457,0): 143, 154, 218, (318,458,0): 143, 154, 220, (318,459,0): 140, 151, 217, (318,460,0): 134, 143, 208, (318,461,0): 129, 138, 203, (318,462,0): 127, 135, 198, (318,463,0): 127, 136, 195, (318,464,0): 139, 146, 200, (318,465,0): 146, 152, 200, (318,466,0): 162, 164, 212, (318,467,0): 175, 177, 218, (318,468,0): 182, 180, 219, (318,469,0): 188, 185, 216, (318,470,0): 203, 199, 222, (318,471,0): 220, 216, 231, (318,472,0): 230, 227, 238, (318,473,0): 230, 229, 235, (318,474,0): 228, 229, 234, (318,475,0): 220, 223, 230, (318,476,0): 206, 212, 226, (318,477,0): 194, 201, 219, (318,478,0): 185, 192, 218, (318,479,0): 178, 188, 215, (318,480,0): 176, 186, 211, (318,481,0): 177, 188, 210, (318,482,0): 183, 194, 214, (318,483,0): 197, 205, 224, (318,484,0): 208, 217, 234, (318,485,0): 212, 219, 235, (318,486,0): 205, 213, 224, (318,487,0): 198, 205, 215, (318,488,0): 184, 191, 199, (318,489,0): 182, 189, 195, (318,490,0): 179, 184, 187, (318,491,0): 170, 176, 176, (318,492,0): 160, 166, 166, (318,493,0): 153, 159, 157, (318,494,0): 151, 157, 155, (318,495,0): 148, 160, 158, (318,496,0): 149, 175, 174, (318,497,0): 150, 185, 189, (318,498,0): 160, 202, 214, (318,499,0): 176, 224, 238, (318,500,0): 190, 242, 255, (318,501,0): 196, 249, 255, (318,502,0): 196, 245, 255, (318,503,0): 192, 239, 255, (318,504,0): 181, 225, 250, (318,505,0): 166, 206, 242, (318,506,0): 153, 189, 239, (318,507,0): 155, 184, 242, (318,508,0): 161, 181, 240, (318,509,0): 160, 173, 226, (318,510,0): 158, 161, 206, (318,511,0): 157, 155, 192, (318,512,0): 143, 140, 169, (318,513,0): 132, 128, 151, (318,514,0): 121, 117, 140, (318,515,0): 115, 113, 134, (318,516,0): 110, 108, 129, (318,517,0): 104, 105, 125, (318,518,0): 106, 108, 129, (318,519,0): 111, 115, 140, (318,520,0): 116, 121, 151, (318,521,0): 123, 128, 166, (318,522,0): 132, 139, 185, (318,523,0): 145, 152, 207, (318,524,0): 161, 169, 234, (318,525,0): 176, 184, 255, (318,526,0): 177, 184, 255, (318,527,0): 170, 177, 255, (318,528,0): 160, 168, 241, (318,529,0): 150, 158, 223, (318,530,0): 138, 141, 194, (318,531,0): 125, 127, 166, (318,532,0): 121, 118, 147, (318,533,0): 117, 114, 131, (318,534,0): 116, 113, 124, (318,535,0): 114, 111, 118, (318,536,0): 108, 105, 114, (318,537,0): 107, 104, 113, (318,538,0): 104, 101, 112, (318,539,0): 100, 94, 104, (318,540,0): 92, 85, 92, (318,541,0): 84, 73, 77, (318,542,0): 75, 64, 62, (318,543,0): 73, 57, 57, (318,544,0): 71, 46, 52, (318,545,0): 71, 44, 53, (318,546,0): 68, 42, 51, (318,547,0): 65, 39, 48, (318,548,0): 61, 38, 46, (318,549,0): 58, 35, 43, (318,550,0): 55, 34, 41, (318,551,0): 54, 33, 40, (318,552,0): 51, 32, 38, (318,553,0): 50, 31, 37, (318,554,0): 48, 31, 37, (318,555,0): 49, 32, 38, (318,556,0): 49, 34, 39, (318,557,0): 51, 36, 41, (318,558,0): 51, 39, 43, (318,559,0): 52, 40, 44, (318,560,0): 52, 37, 44, (318,561,0): 57, 41, 51, (318,562,0): 62, 49, 58, (318,563,0): 67, 56, 64, (318,564,0): 73, 63, 71, (318,565,0): 78, 73, 79, (318,566,0): 86, 84, 89, (318,567,0): 91, 90, 95, (318,568,0): 97, 98, 102, (318,569,0): 97, 101, 104, (318,570,0): 101, 105, 108, (318,571,0): 104, 108, 111, (318,572,0): 106, 107, 111, (318,573,0): 104, 105, 109, (318,574,0): 102, 101, 106, (318,575,0): 101, 99, 102, (318,576,0): 100, 91, 92, (318,577,0): 98, 88, 87, (318,578,0): 96, 86, 85, (318,579,0): 93, 83, 82, (318,580,0): 88, 78, 77, (318,581,0): 79, 69, 68, (318,582,0): 69, 57, 57, (318,583,0): 61, 49, 49, (318,584,0): 58, 44, 44, (318,585,0): 58, 44, 44, (318,586,0): 59, 43, 44, (318,587,0): 59, 43, 44, (318,588,0): 57, 41, 42, (318,589,0): 55, 39, 40, (318,590,0): 52, 36, 37, (318,591,0): 49, 35, 35, (318,592,0): 50, 42, 40, (318,593,0): 49, 44, 41, (318,594,0): 49, 44, 41, (318,595,0): 50, 45, 42, (318,596,0): 49, 44, 41, (318,597,0): 48, 43, 40, (318,598,0): 46, 41, 38, (318,599,0): 45, 40, 37, (319,0,0): 57, 46, 54, (319,1,0): 57, 46, 52, (319,2,0): 58, 47, 55, (319,3,0): 58, 47, 53, (319,4,0): 59, 48, 56, (319,5,0): 59, 48, 54, (319,6,0): 60, 49, 57, (319,7,0): 60, 49, 55, (319,8,0): 59, 48, 56, (319,9,0): 59, 48, 54, (319,10,0): 59, 48, 56, (319,11,0): 59, 48, 54, (319,12,0): 59, 48, 56, (319,13,0): 59, 48, 54, (319,14,0): 59, 48, 56, (319,15,0): 59, 48, 54, (319,16,0): 60, 47, 56, (319,17,0): 60, 47, 54, (319,18,0): 62, 46, 56, (319,19,0): 62, 47, 54, (319,20,0): 62, 46, 56, (319,21,0): 62, 47, 54, (319,22,0): 63, 46, 56, (319,23,0): 63, 46, 54, (319,24,0): 65, 45, 56, (319,25,0): 65, 45, 54, (319,26,0): 65, 45, 56, (319,27,0): 65, 45, 54, (319,28,0): 65, 43, 55, (319,29,0): 65, 44, 53, (319,30,0): 65, 43, 55, (319,31,0): 65, 43, 55, (319,32,0): 68, 46, 58, (319,33,0): 70, 46, 59, (319,34,0): 73, 47, 56, (319,35,0): 79, 49, 57, (319,36,0): 85, 53, 58, (319,37,0): 91, 57, 58, (319,38,0): 97, 59, 58, (319,39,0): 102, 61, 57, (319,40,0): 105, 60, 54, (319,41,0): 111, 62, 55, (319,42,0): 115, 65, 56, (319,43,0): 118, 66, 55, (319,44,0): 118, 64, 52, (319,45,0): 119, 65, 53, (319,46,0): 122, 69, 55, (319,47,0): 125, 71, 59, (319,48,0): 123, 71, 60, (319,49,0): 123, 71, 60, (319,50,0): 123, 71, 58, (319,51,0): 124, 72, 58, (319,52,0): 125, 74, 57, (319,53,0): 127, 76, 57, (319,54,0): 130, 78, 57, (319,55,0): 133, 78, 57, (319,56,0): 137, 83, 59, (319,57,0): 144, 88, 61, (319,58,0): 154, 94, 66, (319,59,0): 160, 99, 68, (319,60,0): 163, 100, 65, (319,61,0): 162, 100, 61, (319,62,0): 163, 100, 57, (319,63,0): 164, 101, 58, (319,64,0): 168, 106, 65, (319,65,0): 169, 107, 66, (319,66,0): 170, 108, 67, (319,67,0): 169, 110, 66, (319,68,0): 170, 112, 66, (319,69,0): 170, 114, 65, (319,70,0): 170, 114, 63, (319,71,0): 169, 116, 62, (319,72,0): 173, 121, 64, (319,73,0): 174, 124, 65, (319,74,0): 176, 128, 66, (319,75,0): 180, 132, 68, (319,76,0): 182, 137, 72, (319,77,0): 185, 140, 73, (319,78,0): 187, 142, 75, (319,79,0): 187, 144, 75, (319,80,0): 193, 154, 77, (319,81,0): 192, 153, 74, (319,82,0): 190, 153, 73, (319,83,0): 189, 154, 73, (319,84,0): 190, 155, 73, (319,85,0): 191, 159, 74, (319,86,0): 192, 162, 76, (319,87,0): 194, 164, 76, (319,88,0): 190, 163, 74, (319,89,0): 192, 165, 74, (319,90,0): 196, 167, 75, (319,91,0): 196, 167, 75, (319,92,0): 197, 166, 75, (319,93,0): 199, 168, 75, (319,94,0): 205, 172, 79, (319,95,0): 210, 176, 79, (319,96,0): 211, 173, 74, (319,97,0): 216, 177, 76, (319,98,0): 220, 181, 80, (319,99,0): 219, 181, 80, (319,100,0): 215, 180, 80, (319,101,0): 211, 177, 79, (319,102,0): 210, 177, 80, (319,103,0): 209, 179, 83, (319,104,0): 205, 179, 82, (319,105,0): 204, 180, 84, (319,106,0): 204, 181, 85, (319,107,0): 202, 182, 85, (319,108,0): 202, 184, 86, (319,109,0): 202, 184, 86, (319,110,0): 201, 185, 87, (319,111,0): 203, 185, 87, (319,112,0): 204, 185, 83, (319,113,0): 208, 186, 84, (319,114,0): 212, 191, 86, (319,115,0): 215, 194, 89, (319,116,0): 216, 195, 88, (319,117,0): 215, 194, 85, (319,118,0): 213, 192, 85, (319,119,0): 211, 190, 83, (319,120,0): 216, 193, 87, (319,121,0): 215, 192, 88, (319,122,0): 214, 190, 90, (319,123,0): 216, 192, 94, (319,124,0): 218, 194, 98, (319,125,0): 215, 190, 97, (319,126,0): 209, 182, 91, (319,127,0): 204, 177, 88, (319,128,0): 190, 163, 76, (319,129,0): 186, 160, 75, (319,130,0): 183, 156, 75, (319,131,0): 180, 153, 76, (319,132,0): 177, 149, 76, (319,133,0): 170, 143, 72, (319,134,0): 160, 133, 66, (319,135,0): 151, 126, 62, (319,136,0): 150, 124, 63, (319,137,0): 147, 121, 62, (319,138,0): 143, 119, 59, (319,139,0): 141, 117, 57, (319,140,0): 142, 118, 56, (319,141,0): 146, 122, 60, (319,142,0): 150, 126, 64, (319,143,0): 151, 129, 69, (319,144,0): 152, 131, 74, (319,145,0): 152, 131, 76, (319,146,0): 153, 132, 77, (319,147,0): 156, 137, 79, (319,148,0): 163, 142, 85, (319,149,0): 166, 146, 87, (319,150,0): 166, 145, 88, (319,151,0): 164, 144, 85, (319,152,0): 167, 145, 87, (319,153,0): 170, 148, 90, (319,154,0): 171, 149, 89, (319,155,0): 169, 148, 85, (319,156,0): 167, 146, 83, (319,157,0): 171, 152, 86, (319,158,0): 182, 163, 95, (319,159,0): 192, 174, 100, (319,160,0): 213, 192, 111, (319,161,0): 227, 205, 120, (319,162,0): 240, 218, 135, (319,163,0): 244, 222, 137, (319,164,0): 240, 218, 135, (319,165,0): 237, 215, 130, (319,166,0): 242, 217, 135, (319,167,0): 247, 222, 138, (319,168,0): 245, 218, 137, (319,169,0): 245, 219, 135, (319,170,0): 245, 218, 137, (319,171,0): 245, 219, 135, (319,172,0): 245, 219, 135, (319,173,0): 244, 218, 134, (319,174,0): 245, 217, 134, (319,175,0): 244, 218, 134, (319,176,0): 248, 220, 136, (319,177,0): 249, 223, 138, (319,178,0): 254, 227, 140, (319,179,0): 255, 229, 142, (319,180,0): 255, 231, 141, (319,181,0): 255, 231, 139, (319,182,0): 254, 229, 137, (319,183,0): 253, 228, 136, (319,184,0): 255, 233, 139, (319,185,0): 255, 233, 139, (319,186,0): 254, 234, 137, (319,187,0): 254, 234, 137, (319,188,0): 253, 233, 136, (319,189,0): 253, 233, 136, (319,190,0): 253, 233, 136, (319,191,0): 252, 233, 138, (319,192,0): 252, 232, 143, (319,193,0): 252, 232, 145, (319,194,0): 253, 233, 146, (319,195,0): 251, 234, 146, (319,196,0): 254, 234, 147, (319,197,0): 253, 236, 148, (319,198,0): 254, 237, 149, (319,199,0): 254, 237, 149, (319,200,0): 254, 238, 150, (319,201,0): 254, 238, 150, (319,202,0): 254, 238, 150, (319,203,0): 255, 239, 151, (319,204,0): 255, 241, 152, (319,205,0): 255, 241, 152, (319,206,0): 255, 241, 152, (319,207,0): 255, 242, 154, (319,208,0): 255, 240, 157, (319,209,0): 255, 240, 159, (319,210,0): 255, 240, 162, (319,211,0): 255, 240, 162, (319,212,0): 255, 240, 162, (319,213,0): 254, 241, 163, (319,214,0): 253, 242, 163, (319,215,0): 253, 242, 163, (319,216,0): 255, 248, 169, (319,217,0): 255, 248, 171, (319,218,0): 255, 249, 171, (319,219,0): 255, 248, 173, (319,220,0): 255, 249, 173, (319,221,0): 255, 249, 173, (319,222,0): 255, 249, 173, (319,223,0): 255, 249, 173, (319,224,0): 255, 249, 173, (319,225,0): 251, 248, 169, (319,226,0): 249, 246, 167, (319,227,0): 246, 244, 167, (319,228,0): 244, 245, 167, (319,229,0): 245, 248, 171, (319,230,0): 246, 250, 173, (319,231,0): 246, 253, 176, (319,232,0): 242, 253, 175, (319,233,0): 241, 253, 177, (319,234,0): 240, 254, 177, (319,235,0): 238, 254, 179, (319,236,0): 237, 255, 179, (319,237,0): 237, 255, 179, (319,238,0): 235, 255, 181, (319,239,0): 234, 255, 184, (319,240,0): 234, 255, 190, (319,241,0): 234, 254, 191, (319,242,0): 234, 254, 193, (319,243,0): 233, 254, 195, (319,244,0): 233, 254, 197, (319,245,0): 231, 254, 198, (319,246,0): 230, 255, 200, (319,247,0): 228, 255, 204, (319,248,0): 225, 253, 204, (319,249,0): 224, 253, 207, (319,250,0): 224, 253, 209, (319,251,0): 222, 253, 211, (319,252,0): 221, 253, 214, (319,253,0): 221, 253, 214, (319,254,0): 221, 253, 216, (319,255,0): 219, 253, 220, (319,256,0): 216, 252, 224, (319,257,0): 214, 253, 226, (319,258,0): 214, 252, 227, (319,259,0): 213, 252, 231, (319,260,0): 211, 253, 233, (319,261,0): 210, 253, 236, (319,262,0): 209, 253, 240, (319,263,0): 207, 253, 242, (319,264,0): 209, 255, 248, (319,265,0): 206, 255, 249, (319,266,0): 205, 255, 249, (319,267,0): 204, 255, 250, (319,268,0): 203, 255, 250, (319,269,0): 202, 255, 249, (319,270,0): 200, 255, 249, (319,271,0): 200, 255, 250, (319,272,0): 202, 255, 253, (319,273,0): 200, 255, 253, (319,274,0): 202, 255, 253, (319,275,0): 202, 255, 253, (319,276,0): 202, 255, 253, (319,277,0): 202, 255, 253, (319,278,0): 203, 255, 255, (319,279,0): 203, 255, 255, (319,280,0): 208, 255, 255, (319,281,0): 208, 255, 255, (319,282,0): 206, 255, 255, (319,283,0): 204, 254, 253, (319,284,0): 204, 252, 252, (319,285,0): 204, 252, 252, (319,286,0): 205, 253, 253, (319,287,0): 205, 252, 255, (319,288,0): 193, 240, 255, (319,289,0): 185, 232, 252, (319,290,0): 177, 222, 243, (319,291,0): 174, 217, 236, (319,292,0): 175, 216, 236, (319,293,0): 176, 214, 233, (319,294,0): 171, 208, 227, (319,295,0): 165, 202, 221, (319,296,0): 156, 191, 211, (319,297,0): 158, 193, 215, (319,298,0): 161, 196, 218, (319,299,0): 163, 197, 222, (319,300,0): 161, 197, 223, (319,301,0): 157, 193, 219, (319,302,0): 151, 188, 215, (319,303,0): 149, 185, 211, (319,304,0): 147, 179, 204, (319,305,0): 147, 177, 203, (319,306,0): 145, 175, 201, (319,307,0): 143, 173, 199, (319,308,0): 144, 174, 200, (319,309,0): 148, 175, 202, (319,310,0): 150, 177, 206, (319,311,0): 152, 179, 209, (319,312,0): 145, 172, 202, (319,313,0): 147, 173, 206, (319,314,0): 149, 175, 210, (319,315,0): 152, 178, 215, (319,316,0): 155, 180, 220, (319,317,0): 157, 182, 222, (319,318,0): 159, 184, 224, (319,319,0): 157, 185, 224, (319,320,0): 153, 181, 221, (319,321,0): 153, 179, 216, (319,322,0): 147, 171, 205, (319,323,0): 138, 159, 190, (319,324,0): 129, 145, 171, (319,325,0): 123, 135, 157, (319,326,0): 124, 130, 152, (319,327,0): 128, 131, 150, (319,328,0): 125, 122, 143, (319,329,0): 121, 113, 134, (319,330,0): 115, 106, 125, (319,331,0): 111, 100, 116, (319,332,0): 107, 95, 109, (319,333,0): 98, 86, 98, (319,334,0): 86, 75, 83, (319,335,0): 76, 65, 73, (319,336,0): 72, 59, 68, (319,337,0): 70, 57, 67, (319,338,0): 70, 57, 67, (319,339,0): 71, 59, 69, (319,340,0): 74, 62, 72, (319,341,0): 75, 63, 73, (319,342,0): 74, 62, 72, (319,343,0): 72, 60, 70, (319,344,0): 77, 65, 75, (319,345,0): 78, 66, 76, (319,346,0): 81, 69, 79, (319,347,0): 85, 72, 82, (319,348,0): 88, 75, 85, (319,349,0): 91, 78, 88, (319,350,0): 95, 79, 90, (319,351,0): 97, 81, 91, (319,352,0): 98, 83, 90, (319,353,0): 101, 86, 93, (319,354,0): 106, 90, 100, (319,355,0): 110, 94, 105, (319,356,0): 112, 96, 109, (319,357,0): 111, 97, 112, (319,358,0): 112, 95, 113, (319,359,0): 109, 94, 113, (319,360,0): 112, 97, 118, (319,361,0): 113, 98, 119, (319,362,0): 114, 101, 121, (319,363,0): 116, 103, 123, (319,364,0): 118, 105, 125, (319,365,0): 120, 107, 127, (319,366,0): 121, 110, 127, (319,367,0): 122, 111, 128, (319,368,0): 117, 108, 125, (319,369,0): 117, 110, 126, (319,370,0): 118, 109, 126, (319,371,0): 119, 110, 127, (319,372,0): 123, 112, 129, (319,373,0): 124, 113, 130, (319,374,0): 125, 112, 130, (319,375,0): 126, 113, 131, (319,376,0): 130, 115, 134, (319,377,0): 131, 114, 133, (319,378,0): 130, 113, 132, (319,379,0): 130, 111, 131, (319,380,0): 129, 110, 129, (319,381,0): 130, 109, 128, (319,382,0): 129, 108, 127, (319,383,0): 130, 107, 127, (319,384,0): 132, 109, 127, (319,385,0): 135, 111, 127, (319,386,0): 139, 112, 127, (319,387,0): 138, 112, 123, (319,388,0): 138, 111, 116, (319,389,0): 139, 110, 112, (319,390,0): 142, 112, 110, (319,391,0): 146, 115, 110, (319,392,0): 146, 113, 106, (319,393,0): 140, 107, 100, (319,394,0): 134, 97, 91, (319,395,0): 123, 86, 80, (319,396,0): 113, 73, 73, (319,397,0): 104, 64, 64, (319,398,0): 99, 57, 59, (319,399,0): 96, 54, 56, (319,400,0): 95, 49, 52, (319,401,0): 93, 47, 49, (319,402,0): 91, 45, 48, (319,403,0): 86, 42, 43, (319,404,0): 84, 40, 41, (319,405,0): 82, 40, 41, (319,406,0): 83, 43, 43, (319,407,0): 84, 44, 44, (319,408,0): 80, 42, 41, (319,409,0): 81, 46, 44, (319,410,0): 85, 51, 49, (319,411,0): 86, 55, 52, (319,412,0): 87, 58, 54, (319,413,0): 90, 61, 57, (319,414,0): 94, 65, 61, (319,415,0): 95, 70, 63, (319,416,0): 97, 79, 67, (319,417,0): 96, 83, 67, (319,418,0): 98, 86, 70, (319,419,0): 103, 91, 75, (319,420,0): 109, 97, 81, (319,421,0): 111, 103, 84, (319,422,0): 115, 107, 86, (319,423,0): 116, 110, 88, (319,424,0): 123, 118, 96, (319,425,0): 125, 121, 96, (319,426,0): 127, 126, 98, (319,427,0): 133, 132, 104, (319,428,0): 139, 140, 109, (319,429,0): 146, 147, 115, (319,430,0): 152, 153, 121, (319,431,0): 155, 156, 122, (319,432,0): 161, 161, 123, (319,433,0): 177, 179, 132, (319,434,0): 198, 201, 146, (319,435,0): 215, 221, 157, (319,436,0): 233, 240, 172, (319,437,0): 244, 251, 181, (319,438,0): 236, 245, 180, (319,439,0): 223, 232, 177, (319,440,0): 209, 215, 179, (319,441,0): 202, 207, 187, (319,442,0): 191, 197, 193, (319,443,0): 184, 191, 199, (319,444,0): 182, 187, 206, (319,445,0): 180, 186, 210, (319,446,0): 176, 183, 211, (319,447,0): 174, 180, 216, (319,448,0): 169, 171, 219, (319,449,0): 165, 166, 220, (319,450,0): 159, 162, 217, (319,451,0): 155, 160, 218, (319,452,0): 153, 161, 223, (319,453,0): 152, 162, 224, (319,454,0): 149, 160, 224, (319,455,0): 144, 158, 223, (319,456,0): 140, 153, 221, (319,457,0): 142, 155, 225, (319,458,0): 145, 155, 226, (319,459,0): 143, 152, 221, (319,460,0): 138, 145, 213, (319,461,0): 135, 140, 206, (319,462,0): 133, 136, 203, (319,463,0): 132, 136, 199, (319,464,0): 146, 147, 203, (319,465,0): 154, 154, 204, (319,466,0): 169, 167, 214, (319,467,0): 182, 179, 222, (319,468,0): 188, 184, 219, (319,469,0): 193, 188, 218, (319,470,0): 210, 202, 225, (319,471,0): 227, 220, 236, (319,472,0): 217, 209, 220, (319,473,0): 207, 202, 208, (319,474,0): 197, 192, 198, (319,475,0): 190, 187, 194, (319,476,0): 186, 184, 197, (319,477,0): 179, 178, 194, (319,478,0): 166, 167, 187, (319,479,0): 156, 157, 178, (319,480,0): 153, 153, 177, (319,481,0): 149, 150, 171, (319,482,0): 147, 148, 169, (319,483,0): 154, 155, 175, (319,484,0): 166, 165, 183, (319,485,0): 168, 167, 181, (319,486,0): 160, 158, 171, (319,487,0): 151, 149, 160, (319,488,0): 154, 153, 159, (319,489,0): 153, 152, 157, (319,490,0): 150, 150, 152, (319,491,0): 144, 144, 142, (319,492,0): 138, 138, 136, (319,493,0): 136, 137, 132, (319,494,0): 139, 140, 134, (319,495,0): 137, 143, 139, (319,496,0): 130, 150, 149, (319,497,0): 132, 161, 165, (319,498,0): 146, 180, 192, (319,499,0): 167, 204, 222, (319,500,0): 185, 226, 244, (319,501,0): 193, 236, 255, (319,502,0): 190, 231, 251, (319,503,0): 186, 223, 249, (319,504,0): 175, 210, 242, (319,505,0): 162, 194, 235, (319,506,0): 154, 181, 234, (319,507,0): 158, 180, 237, (319,508,0): 160, 177, 231, (319,509,0): 154, 164, 215, (319,510,0): 148, 151, 192, (319,511,0): 147, 146, 180, (319,512,0): 141, 141, 169, (319,513,0): 133, 131, 153, (319,514,0): 123, 121, 143, (319,515,0): 119, 117, 138, (319,516,0): 116, 115, 133, (319,517,0): 113, 112, 128, (319,518,0): 116, 115, 133, (319,519,0): 121, 122, 142, (319,520,0): 118, 120, 145, (319,521,0): 123, 126, 157, (319,522,0): 130, 133, 174, (319,523,0): 140, 146, 196, (319,524,0): 157, 163, 223, (319,525,0): 170, 177, 245, (319,526,0): 171, 179, 252, (319,527,0): 164, 172, 247, (319,528,0): 161, 169, 241, (319,529,0): 152, 160, 223, (319,530,0): 141, 146, 201, (319,531,0): 132, 135, 178, (319,532,0): 127, 128, 159, (319,533,0): 125, 123, 145, (319,534,0): 121, 120, 136, (319,535,0): 119, 117, 130, (319,536,0): 112, 110, 123, (319,537,0): 111, 109, 122, (319,538,0): 108, 104, 118, (319,539,0): 103, 97, 109, (319,540,0): 94, 87, 95, (319,541,0): 85, 74, 80, (319,542,0): 76, 64, 64, (319,543,0): 73, 57, 57, (319,544,0): 72, 47, 53, (319,545,0): 72, 45, 52, (319,546,0): 69, 42, 49, (319,547,0): 66, 41, 47, (319,548,0): 62, 37, 43, (319,549,0): 58, 35, 41, (319,550,0): 55, 32, 38, (319,551,0): 53, 32, 39, (319,552,0): 50, 31, 37, (319,553,0): 50, 31, 37, (319,554,0): 48, 31, 37, (319,555,0): 49, 32, 38, (319,556,0): 49, 34, 39, (319,557,0): 51, 36, 41, (319,558,0): 52, 40, 44, (319,559,0): 53, 41, 45, (319,560,0): 56, 41, 48, (319,561,0): 57, 44, 51, (319,562,0): 62, 51, 59, (319,563,0): 67, 56, 62, (319,564,0): 72, 62, 70, (319,565,0): 78, 72, 76, (319,566,0): 85, 83, 88, (319,567,0): 91, 91, 93, (319,568,0): 95, 96, 100, (319,569,0): 98, 99, 101, (319,570,0): 102, 103, 107, (319,571,0): 106, 107, 109, (319,572,0): 107, 108, 112, (319,573,0): 106, 107, 109, (319,574,0): 105, 104, 109, (319,575,0): 104, 102, 105, (319,576,0): 103, 94, 95, (319,577,0): 101, 91, 90, (319,578,0): 99, 89, 88, (319,579,0): 96, 86, 85, (319,580,0): 90, 80, 79, (319,581,0): 80, 70, 69, (319,582,0): 70, 58, 58, (319,583,0): 61, 49, 49, (319,584,0): 56, 42, 42, (319,585,0): 56, 42, 42, (319,586,0): 57, 43, 43, (319,587,0): 57, 43, 43, (319,588,0): 56, 40, 41, (319,589,0): 52, 38, 38, (319,590,0): 50, 34, 35, (319,591,0): 45, 33, 33, (319,592,0): 51, 41, 40, (319,593,0): 49, 44, 41, (319,594,0): 51, 43, 41, (319,595,0): 50, 45, 42, (319,596,0): 51, 43, 41, (319,597,0): 48, 43, 40, (319,598,0): 48, 40, 38, (319,599,0): 45, 40, 37, (320,0,0): 59, 48, 54, (320,1,0): 59, 48, 52, (320,2,0): 59, 48, 54, (320,3,0): 59, 48, 52, (320,4,0): 59, 48, 54, (320,5,0): 59, 48, 52, (320,6,0): 59, 48, 54, (320,7,0): 59, 48, 52, (320,8,0): 62, 51, 57, (320,9,0): 61, 50, 54, (320,10,0): 61, 50, 56, (320,11,0): 60, 49, 53, (320,12,0): 60, 49, 55, (320,13,0): 59, 48, 52, (320,14,0): 59, 48, 54, (320,15,0): 59, 48, 52, (320,16,0): 62, 49, 56, (320,17,0): 61, 49, 53, (320,18,0): 62, 47, 54, (320,19,0): 60, 45, 50, (320,20,0): 60, 45, 52, (320,21,0): 60, 45, 50, (320,22,0): 62, 45, 53, (320,23,0): 62, 45, 51, (320,24,0): 65, 45, 54, (320,25,0): 65, 46, 52, (320,26,0): 65, 45, 54, (320,27,0): 65, 46, 52, (320,28,0): 66, 45, 54, (320,29,0): 66, 45, 52, (320,30,0): 66, 45, 54, (320,31,0): 66, 45, 54, (320,32,0): 66, 43, 53, (320,33,0): 69, 46, 56, (320,34,0): 74, 48, 57, (320,35,0): 76, 49, 56, (320,36,0): 81, 50, 55, (320,37,0): 85, 53, 56, (320,38,0): 93, 57, 57, (320,39,0): 100, 60, 58, (320,40,0): 106, 63, 57, (320,41,0): 110, 65, 59, (320,42,0): 117, 69, 59, (320,43,0): 119, 69, 58, (320,44,0): 120, 68, 55, (320,45,0): 121, 68, 54, (320,46,0): 124, 68, 53, (320,47,0): 126, 70, 57, (320,48,0): 123, 69, 57, (320,49,0): 126, 72, 62, (320,50,0): 129, 75, 63, (320,51,0): 128, 76, 62, (320,52,0): 126, 75, 58, (320,53,0): 126, 75, 58, (320,54,0): 129, 78, 59, (320,55,0): 133, 80, 62, (320,56,0): 134, 79, 59, (320,57,0): 141, 85, 62, (320,58,0): 154, 94, 68, (320,59,0): 166, 103, 72, (320,60,0): 172, 108, 70, (320,61,0): 175, 108, 63, (320,62,0): 174, 107, 55, (320,63,0): 172, 105, 52, (320,64,0): 175, 109, 61, (320,65,0): 174, 110, 64, (320,66,0): 174, 112, 65, (320,67,0): 176, 114, 67, (320,68,0): 176, 116, 66, (320,69,0): 176, 119, 66, (320,70,0): 176, 121, 65, (320,71,0): 175, 123, 65, (320,72,0): 178, 130, 68, (320,73,0): 177, 132, 67, (320,74,0): 179, 136, 68, (320,75,0): 181, 141, 71, (320,76,0): 184, 146, 75, (320,77,0): 186, 150, 76, (320,78,0): 189, 153, 79, (320,79,0): 190, 154, 78, (320,80,0): 191, 155, 77, (320,81,0): 191, 155, 77, (320,82,0): 191, 156, 75, (320,83,0): 192, 157, 76, (320,84,0): 193, 158, 76, (320,85,0): 195, 160, 76, (320,86,0): 195, 163, 76, (320,87,0): 196, 165, 75, (320,88,0): 199, 165, 75, (320,89,0): 200, 167, 74, (320,90,0): 202, 169, 74, (320,91,0): 205, 172, 77, (320,92,0): 207, 173, 76, (320,93,0): 208, 174, 77, (320,94,0): 208, 174, 77, (320,95,0): 208, 174, 74, (320,96,0): 212, 179, 74, (320,97,0): 213, 180, 75, (320,98,0): 214, 181, 78, (320,99,0): 214, 180, 80, (320,100,0): 212, 180, 81, (320,101,0): 209, 179, 81, (320,102,0): 207, 179, 82, (320,103,0): 204, 178, 83, (320,104,0): 201, 175, 80, (320,105,0): 201, 177, 81, (320,106,0): 201, 178, 82, (320,107,0): 200, 180, 83, (320,108,0): 201, 183, 83, (320,109,0): 202, 184, 82, (320,110,0): 202, 187, 84, (320,111,0): 204, 187, 83, (320,112,0): 208, 189, 86, (320,113,0): 211, 190, 85, (320,114,0): 213, 192, 87, (320,115,0): 215, 194, 89, (320,116,0): 216, 195, 90, (320,117,0): 213, 195, 87, (320,118,0): 212, 193, 88, (320,119,0): 211, 192, 87, (320,120,0): 207, 188, 83, (320,121,0): 210, 191, 86, (320,122,0): 215, 196, 93, (320,123,0): 217, 200, 96, (320,124,0): 216, 199, 95, (320,125,0): 213, 195, 93, (320,126,0): 208, 190, 88, (320,127,0): 206, 186, 89, (320,128,0): 201, 178, 85, (320,129,0): 197, 173, 85, (320,130,0): 190, 165, 81, (320,131,0): 180, 157, 79, (320,132,0): 170, 146, 72, (320,133,0): 161, 138, 70, (320,134,0): 154, 130, 66, (320,135,0): 151, 127, 67, (320,136,0): 146, 124, 66, (320,137,0): 146, 124, 67, (320,138,0): 143, 121, 64, (320,139,0): 138, 116, 58, (320,140,0): 135, 113, 53, (320,141,0): 137, 116, 53, (320,142,0): 144, 123, 60, (320,143,0): 149, 129, 68, (320,144,0): 148, 128, 75, (320,145,0): 147, 130, 78, (320,146,0): 148, 132, 80, (320,147,0): 149, 136, 81, (320,148,0): 153, 138, 81, (320,149,0): 156, 141, 82, (320,150,0): 159, 142, 86, (320,151,0): 162, 143, 87, (320,152,0): 163, 140, 86, (320,153,0): 165, 140, 86, (320,154,0): 167, 142, 86, (320,155,0): 170, 146, 86, (320,156,0): 165, 146, 80, (320,157,0): 166, 149, 79, (320,158,0): 179, 167, 91, (320,159,0): 197, 185, 103, (320,160,0): 225, 204, 121, (320,161,0): 237, 213, 127, (320,162,0): 242, 217, 133, (320,163,0): 240, 216, 130, (320,164,0): 240, 215, 131, (320,165,0): 244, 220, 134, (320,166,0): 245, 220, 136, (320,167,0): 242, 218, 132, (320,168,0): 247, 222, 138, (320,169,0): 246, 222, 136, (320,170,0): 245, 220, 136, (320,171,0): 244, 220, 134, (320,172,0): 244, 220, 134, (320,173,0): 245, 221, 135, (320,174,0): 247, 221, 136, (320,175,0): 247, 223, 137, (320,176,0): 250, 224, 139, (320,177,0): 250, 226, 140, (320,178,0): 253, 227, 140, (320,179,0): 253, 229, 141, (320,180,0): 255, 231, 141, (320,181,0): 255, 234, 141, (320,182,0): 255, 236, 143, (320,183,0): 255, 236, 142, (320,184,0): 255, 235, 141, (320,185,0): 255, 234, 140, (320,186,0): 255, 234, 140, (320,187,0): 255, 233, 140, (320,188,0): 255, 232, 139, (320,189,0): 254, 230, 140, (320,190,0): 254, 230, 140, (320,191,0): 252, 231, 142, (320,192,0): 249, 232, 144, (320,193,0): 249, 231, 145, (320,194,0): 250, 232, 146, (320,195,0): 249, 233, 146, (320,196,0): 251, 233, 147, (320,197,0): 250, 234, 147, (320,198,0): 251, 235, 148, (320,199,0): 251, 235, 148, (320,200,0): 254, 238, 151, (320,201,0): 255, 239, 152, (320,202,0): 255, 241, 154, (320,203,0): 255, 243, 156, (320,204,0): 255, 243, 156, (320,205,0): 255, 242, 155, (320,206,0): 255, 241, 154, (320,207,0): 254, 240, 152, (320,208,0): 251, 239, 155, (320,209,0): 251, 239, 155, (320,210,0): 251, 239, 157, (320,211,0): 251, 239, 157, (320,212,0): 251, 239, 157, (320,213,0): 250, 239, 159, (320,214,0): 250, 239, 159, (320,215,0): 250, 239, 159, (320,216,0): 255, 244, 164, (320,217,0): 255, 244, 165, (320,218,0): 255, 246, 167, (320,219,0): 255, 246, 169, (320,220,0): 255, 246, 169, (320,221,0): 255, 246, 169, (320,222,0): 253, 244, 167, (320,223,0): 252, 245, 167, (320,224,0): 249, 246, 165, (320,225,0): 248, 247, 165, (320,226,0): 248, 247, 165, (320,227,0): 247, 248, 168, (320,228,0): 247, 248, 170, (320,229,0): 247, 250, 173, (320,230,0): 246, 250, 173, (320,231,0): 245, 252, 175, (320,232,0): 243, 251, 176, (320,233,0): 240, 250, 177, (320,234,0): 238, 248, 177, (320,235,0): 236, 247, 178, (320,236,0): 235, 248, 178, (320,237,0): 236, 249, 180, (320,238,0): 236, 251, 184, (320,239,0): 236, 252, 187, (320,240,0): 228, 249, 184, (320,241,0): 228, 250, 186, (320,242,0): 230, 252, 190, (320,243,0): 230, 254, 194, (320,244,0): 230, 254, 196, (320,245,0): 229, 254, 197, (320,246,0): 227, 254, 199, (320,247,0): 226, 254, 203, (320,248,0): 225, 255, 205, (320,249,0): 221, 254, 207, (320,250,0): 221, 254, 209, (320,251,0): 218, 254, 210, (320,252,0): 216, 253, 212, (320,253,0): 214, 252, 211, (320,254,0): 213, 251, 212, (320,255,0): 210, 250, 216, (320,256,0): 210, 253, 225, (320,257,0): 208, 254, 228, (320,258,0): 208, 253, 230, (320,259,0): 206, 254, 232, (320,260,0): 206, 253, 233, (320,261,0): 205, 254, 235, (320,262,0): 203, 254, 239, (320,263,0): 202, 254, 241, (320,264,0): 201, 252, 243, (320,265,0): 200, 253, 245, (320,266,0): 198, 253, 248, (320,267,0): 199, 254, 251, (320,268,0): 198, 254, 251, (320,269,0): 197, 255, 254, (320,270,0): 197, 255, 254, (320,271,0): 197, 255, 255, (320,272,0): 201, 255, 255, (320,273,0): 200, 255, 255, (320,274,0): 200, 254, 255, (320,275,0): 199, 253, 255, (320,276,0): 199, 253, 255, (320,277,0): 200, 254, 255, (320,278,0): 201, 255, 255, (320,279,0): 202, 255, 255, (320,280,0): 201, 255, 255, (320,281,0): 203, 254, 255, (320,282,0): 202, 253, 254, (320,283,0): 201, 252, 253, (320,284,0): 200, 251, 252, (320,285,0): 200, 251, 252, (320,286,0): 200, 251, 252, (320,287,0): 200, 251, 255, (320,288,0): 194, 242, 255, (320,289,0): 189, 236, 254, (320,290,0): 184, 229, 248, (320,291,0): 181, 224, 241, (320,292,0): 177, 220, 237, (320,293,0): 173, 214, 232, (320,294,0): 166, 207, 225, (320,295,0): 163, 201, 222, (320,296,0): 154, 190, 212, (320,297,0): 155, 191, 215, (320,298,0): 158, 192, 217, (320,299,0): 159, 193, 218, (320,300,0): 158, 192, 219, (320,301,0): 156, 190, 217, (320,302,0): 156, 187, 215, (320,303,0): 155, 186, 215, (320,304,0): 145, 176, 207, (320,305,0): 142, 173, 204, (320,306,0): 138, 169, 200, (320,307,0): 138, 167, 197, (320,308,0): 143, 170, 200, (320,309,0): 146, 171, 202, (320,310,0): 148, 171, 203, (320,311,0): 147, 170, 204, (320,312,0): 144, 167, 201, (320,313,0): 143, 165, 202, (320,314,0): 144, 166, 207, (320,315,0): 149, 170, 213, (320,316,0): 155, 178, 222, (320,317,0): 159, 181, 228, (320,318,0): 158, 180, 227, (320,319,0): 157, 180, 224, (320,320,0): 154, 177, 219, (320,321,0): 151, 173, 212, (320,322,0): 145, 165, 200, (320,323,0): 139, 155, 189, (320,324,0): 135, 146, 178, (320,325,0): 132, 139, 168, (320,326,0): 131, 132, 160, (320,327,0): 133, 129, 154, (320,328,0): 131, 123, 146, (320,329,0): 122, 110, 130, (320,330,0): 113, 100, 118, (320,331,0): 107, 93, 108, (320,332,0): 100, 84, 97, (320,333,0): 89, 72, 82, (320,334,0): 82, 65, 73, (320,335,0): 82, 65, 73, (320,336,0): 78, 62, 72, (320,337,0): 78, 62, 72, (320,338,0): 79, 63, 73, (320,339,0): 77, 64, 73, (320,340,0): 76, 65, 73, (320,341,0): 75, 64, 72, (320,342,0): 73, 63, 71, (320,343,0): 73, 63, 71, (320,344,0): 77, 67, 75, (320,345,0): 79, 68, 76, (320,346,0): 82, 69, 78, (320,347,0): 86, 70, 80, (320,348,0): 89, 72, 82, (320,349,0): 94, 74, 85, (320,350,0): 96, 74, 86, (320,351,0): 96, 76, 87, (320,352,0): 98, 82, 93, (320,353,0): 99, 86, 96, (320,354,0): 104, 91, 101, (320,355,0): 108, 94, 107, (320,356,0): 111, 97, 110, (320,357,0): 110, 98, 112, (320,358,0): 110, 96, 113, (320,359,0): 108, 95, 112, (320,360,0): 112, 99, 117, (320,361,0): 113, 100, 118, (320,362,0): 115, 102, 120, (320,363,0): 117, 104, 124, (320,364,0): 119, 106, 126, (320,365,0): 120, 107, 127, (320,366,0): 121, 108, 128, (320,367,0): 121, 108, 126, (320,368,0): 126, 113, 131, (320,369,0): 124, 111, 128, (320,370,0): 123, 109, 126, (320,371,0): 122, 108, 125, (320,372,0): 123, 109, 126, (320,373,0): 125, 111, 128, (320,374,0): 131, 114, 132, (320,375,0): 133, 116, 134, (320,376,0): 131, 112, 131, (320,377,0): 130, 111, 130, (320,378,0): 128, 109, 128, (320,379,0): 129, 108, 127, (320,380,0): 128, 107, 126, (320,381,0): 130, 107, 127, (320,382,0): 130, 107, 127, (320,383,0): 131, 108, 126, (320,384,0): 141, 114, 131, (320,385,0): 138, 111, 126, (320,386,0): 135, 107, 121, (320,387,0): 137, 107, 119, (320,388,0): 139, 109, 119, (320,389,0): 142, 111, 117, (320,390,0): 141, 110, 115, (320,391,0): 140, 108, 111, (320,392,0): 135, 101, 102, (320,393,0): 124, 90, 89, (320,394,0): 112, 74, 73, (320,395,0): 104, 66, 65, (320,396,0): 102, 62, 62, (320,397,0): 99, 59, 59, (320,398,0): 94, 54, 54, (320,399,0): 90, 48, 49, (320,400,0): 89, 44, 47, (320,401,0): 89, 44, 47, (320,402,0): 89, 44, 49, (320,403,0): 86, 44, 46, (320,404,0): 86, 44, 46, (320,405,0): 86, 44, 46, (320,406,0): 85, 45, 46, (320,407,0): 85, 45, 46, (320,408,0): 83, 45, 44, (320,409,0): 86, 48, 47, (320,410,0): 87, 52, 48, (320,411,0): 88, 53, 49, (320,412,0): 87, 54, 49, (320,413,0): 88, 55, 50, (320,414,0): 91, 58, 53, (320,415,0): 90, 63, 54, (320,416,0): 92, 76, 63, (320,417,0): 92, 83, 68, (320,418,0): 99, 90, 75, (320,419,0): 103, 96, 78, (320,420,0): 107, 100, 82, (320,421,0): 111, 104, 85, (320,422,0): 116, 110, 88, (320,423,0): 118, 113, 91, (320,424,0): 121, 117, 92, (320,425,0): 128, 124, 97, (320,426,0): 133, 132, 102, (320,427,0): 137, 137, 103, (320,428,0): 140, 140, 104, (320,429,0): 146, 146, 108, (320,430,0): 156, 156, 118, (320,431,0): 167, 166, 122, (320,432,0): 172, 166, 114, (320,433,0): 194, 188, 128, (320,434,0): 217, 216, 152, (320,435,0): 236, 237, 171, (320,436,0): 244, 249, 182, (320,437,0): 244, 253, 188, (320,438,0): 232, 243, 185, (320,439,0): 218, 230, 184, (320,440,0): 201, 214, 186, (320,441,0): 196, 208, 194, (320,442,0): 191, 201, 203, (320,443,0): 187, 196, 211, (320,444,0): 185, 193, 216, (320,445,0): 181, 188, 217, (320,446,0): 173, 182, 215, (320,447,0): 170, 175, 215, (320,448,0): 171, 171, 223, (320,449,0): 167, 166, 224, (320,450,0): 162, 162, 222, (320,451,0): 158, 162, 225, (320,452,0): 155, 163, 228, (320,453,0): 153, 163, 232, (320,454,0): 147, 161, 232, (320,455,0): 142, 159, 231, (320,456,0): 142, 156, 229, (320,457,0): 140, 154, 227, (320,458,0): 140, 149, 224, (320,459,0): 138, 145, 217, (320,460,0): 138, 141, 210, (320,461,0): 138, 137, 205, (320,462,0): 137, 134, 201, (320,463,0): 139, 133, 197, (320,464,0): 156, 147, 204, (320,465,0): 164, 154, 206, (320,466,0): 176, 164, 212, (320,467,0): 186, 175, 217, (320,468,0): 194, 183, 217, (320,469,0): 199, 186, 212, (320,470,0): 200, 188, 208, (320,471,0): 201, 189, 203, (320,472,0): 193, 180, 189, (320,473,0): 188, 175, 182, (320,474,0): 181, 169, 173, (320,475,0): 175, 162, 169, (320,476,0): 170, 154, 164, (320,477,0): 160, 147, 157, (320,478,0): 150, 136, 149, (320,479,0): 143, 131, 145, (320,480,0): 130, 119, 135, (320,481,0): 124, 116, 131, (320,482,0): 121, 110, 126, (320,483,0): 119, 108, 122, (320,484,0): 119, 107, 119, (320,485,0): 117, 105, 115, (320,486,0): 113, 102, 110, (320,487,0): 110, 99, 105, (320,488,0): 117, 106, 110, (320,489,0): 122, 112, 113, (320,490,0): 126, 118, 116, (320,491,0): 124, 119, 115, (320,492,0): 121, 116, 112, (320,493,0): 120, 117, 110, (320,494,0): 124, 124, 116, (320,495,0): 128, 130, 125, (320,496,0): 123, 133, 134, (320,497,0): 121, 136, 143, (320,498,0): 132, 150, 164, (320,499,0): 154, 172, 192, (320,500,0): 167, 189, 213, (320,501,0): 167, 190, 221, (320,502,0): 167, 189, 226, (320,503,0): 169, 191, 232, (320,504,0): 151, 169, 215, (320,505,0): 150, 168, 218, (320,506,0): 150, 166, 218, (320,507,0): 152, 165, 217, (320,508,0): 152, 162, 211, (320,509,0): 149, 156, 200, (320,510,0): 144, 148, 186, (320,511,0): 138, 141, 174, (320,512,0): 135, 139, 168, (320,513,0): 131, 133, 158, (320,514,0): 123, 125, 150, (320,515,0): 118, 118, 142, (320,516,0): 118, 116, 138, (320,517,0): 119, 116, 137, (320,518,0): 119, 116, 135, (320,519,0): 118, 115, 134, (320,520,0): 117, 115, 136, (320,521,0): 117, 119, 142, (320,522,0): 123, 128, 157, (320,523,0): 134, 142, 179, (320,524,0): 148, 161, 206, (320,525,0): 158, 173, 228, (320,526,0): 165, 181, 241, (320,527,0): 168, 182, 247, (320,528,0): 166, 175, 242, (320,529,0): 166, 171, 235, (320,530,0): 155, 162, 217, (320,531,0): 142, 148, 196, (320,532,0): 139, 144, 182, (320,533,0): 139, 144, 176, (320,534,0): 133, 137, 164, (320,535,0): 124, 126, 149, (320,536,0): 112, 113, 134, (320,537,0): 108, 106, 127, (320,538,0): 101, 98, 117, (320,539,0): 97, 90, 106, (320,540,0): 91, 83, 96, (320,541,0): 88, 77, 85, (320,542,0): 81, 69, 73, (320,543,0): 79, 63, 64, (320,544,0): 82, 57, 61, (320,545,0): 78, 52, 55, (320,546,0): 72, 45, 50, (320,547,0): 66, 41, 45, (320,548,0): 64, 39, 43, (320,549,0): 61, 39, 42, (320,550,0): 58, 36, 39, (320,551,0): 55, 34, 39, (320,552,0): 53, 34, 38, (320,553,0): 53, 34, 38, (320,554,0): 51, 35, 38, (320,555,0): 51, 35, 38, (320,556,0): 49, 34, 39, (320,557,0): 49, 34, 39, (320,558,0): 47, 35, 39, (320,559,0): 47, 35, 39, (320,560,0): 48, 36, 40, (320,561,0): 50, 38, 42, (320,562,0): 55, 44, 50, (320,563,0): 64, 53, 57, (320,564,0): 73, 64, 69, (320,565,0): 81, 75, 77, (320,566,0): 87, 81, 85, (320,567,0): 90, 86, 87, (320,568,0): 103, 101, 104, (320,569,0): 106, 104, 105, (320,570,0): 109, 109, 111, (320,571,0): 111, 113, 112, (320,572,0): 112, 113, 115, (320,573,0): 110, 112, 111, (320,574,0): 108, 109, 111, (320,575,0): 108, 106, 107, (320,576,0): 114, 105, 106, (320,577,0): 108, 96, 98, (320,578,0): 98, 86, 88, (320,579,0): 91, 79, 81, (320,580,0): 87, 75, 77, (320,581,0): 80, 68, 70, (320,582,0): 69, 57, 59, (320,583,0): 60, 48, 50, (320,584,0): 51, 39, 41, (320,585,0): 50, 38, 40, (320,586,0): 49, 37, 39, (320,587,0): 48, 36, 38, (320,588,0): 50, 35, 38, (320,589,0): 49, 37, 39, (320,590,0): 52, 37, 40, (320,591,0): 51, 39, 41, (320,592,0): 52, 42, 41, (320,593,0): 51, 43, 41, (320,594,0): 52, 42, 41, (320,595,0): 51, 43, 41, (320,596,0): 50, 40, 39, (320,597,0): 47, 39, 37, (320,598,0): 46, 36, 35, (320,599,0): 44, 36, 34, (321,0,0): 59, 48, 52, (321,1,0): 59, 48, 52, (321,2,0): 59, 48, 52, (321,3,0): 59, 48, 52, (321,4,0): 59, 48, 52, (321,5,0): 59, 48, 52, (321,6,0): 59, 48, 52, (321,7,0): 59, 48, 52, (321,8,0): 62, 51, 55, (321,9,0): 61, 50, 54, (321,10,0): 61, 50, 54, (321,11,0): 61, 50, 54, (321,12,0): 60, 49, 53, (321,13,0): 60, 49, 53, (321,14,0): 59, 48, 52, (321,15,0): 59, 48, 52, (321,16,0): 62, 50, 54, (321,17,0): 61, 49, 53, (321,18,0): 62, 47, 52, (321,19,0): 60, 45, 50, (321,20,0): 60, 45, 50, (321,21,0): 60, 45, 50, (321,22,0): 62, 45, 51, (321,23,0): 62, 45, 51, (321,24,0): 65, 46, 52, (321,25,0): 65, 46, 52, (321,26,0): 65, 46, 52, (321,27,0): 65, 46, 52, (321,28,0): 66, 45, 52, (321,29,0): 66, 45, 52, (321,30,0): 66, 45, 52, (321,31,0): 66, 45, 52, (321,32,0): 66, 43, 53, (321,33,0): 68, 45, 53, (321,34,0): 73, 48, 54, (321,35,0): 76, 49, 54, (321,36,0): 79, 50, 55, (321,37,0): 84, 52, 55, (321,38,0): 91, 57, 56, (321,39,0): 99, 61, 58, (321,40,0): 104, 63, 59, (321,41,0): 109, 66, 59, (321,42,0): 116, 69, 59, (321,43,0): 118, 70, 58, (321,44,0): 120, 68, 55, (321,45,0): 121, 68, 54, (321,46,0): 125, 69, 54, (321,47,0): 127, 71, 56, (321,48,0): 125, 68, 57, (321,49,0): 126, 72, 60, (321,50,0): 129, 75, 63, (321,51,0): 129, 76, 62, (321,52,0): 126, 75, 58, (321,53,0): 126, 75, 58, (321,54,0): 129, 78, 61, (321,55,0): 132, 81, 64, (321,56,0): 137, 81, 64, (321,57,0): 144, 87, 67, (321,58,0): 156, 96, 70, (321,59,0): 168, 105, 72, (321,60,0): 175, 110, 70, (321,61,0): 180, 112, 63, (321,62,0): 180, 111, 54, (321,63,0): 179, 110, 53, (321,64,0): 179, 113, 61, (321,65,0): 177, 114, 63, (321,66,0): 178, 115, 64, (321,67,0): 178, 116, 65, (321,68,0): 178, 118, 64, (321,69,0): 177, 121, 64, (321,70,0): 175, 123, 63, (321,71,0): 174, 124, 61, (321,72,0): 181, 133, 67, (321,73,0): 179, 136, 68, (321,74,0): 180, 140, 70, (321,75,0): 181, 145, 71, (321,76,0): 184, 148, 74, (321,77,0): 185, 152, 75, (321,78,0): 186, 154, 77, (321,79,0): 187, 156, 76, (321,80,0): 189, 156, 77, (321,81,0): 189, 156, 77, (321,82,0): 189, 156, 75, (321,83,0): 189, 156, 75, (321,84,0): 193, 158, 76, (321,85,0): 194, 159, 75, (321,86,0): 196, 162, 75, (321,87,0): 198, 164, 75, (321,88,0): 199, 164, 74, (321,89,0): 200, 165, 73, (321,90,0): 203, 168, 74, (321,91,0): 206, 172, 75, (321,92,0): 208, 174, 77, (321,93,0): 210, 174, 77, (321,94,0): 210, 174, 77, (321,95,0): 209, 175, 75, (321,96,0): 211, 180, 74, (321,97,0): 212, 181, 75, (321,98,0): 213, 181, 78, (321,99,0): 211, 182, 80, (321,100,0): 209, 181, 82, (321,101,0): 206, 180, 83, (321,102,0): 204, 178, 83, (321,103,0): 202, 178, 82, (321,104,0): 200, 175, 82, (321,105,0): 200, 177, 83, (321,106,0): 199, 179, 84, (321,107,0): 199, 181, 83, (321,108,0): 201, 183, 83, (321,109,0): 201, 186, 83, (321,110,0): 202, 188, 83, (321,111,0): 202, 188, 81, (321,112,0): 208, 189, 84, (321,113,0): 211, 190, 85, (321,114,0): 213, 192, 87, (321,115,0): 213, 194, 89, (321,116,0): 213, 194, 89, (321,117,0): 213, 194, 89, (321,118,0): 211, 194, 88, (321,119,0): 210, 193, 87, (321,120,0): 209, 192, 86, (321,121,0): 209, 195, 88, (321,122,0): 212, 198, 91, (321,123,0): 214, 200, 93, (321,124,0): 213, 201, 93, (321,125,0): 210, 198, 90, (321,126,0): 207, 195, 87, (321,127,0): 206, 191, 88, (321,128,0): 205, 185, 90, (321,129,0): 203, 179, 89, (321,130,0): 195, 173, 88, (321,131,0): 185, 162, 82, (321,132,0): 173, 151, 76, (321,133,0): 161, 138, 70, (321,134,0): 150, 129, 66, (321,135,0): 145, 123, 65, (321,136,0): 146, 124, 67, (321,137,0): 144, 123, 68, (321,138,0): 143, 122, 67, (321,139,0): 139, 118, 61, (321,140,0): 137, 115, 57, (321,141,0): 137, 115, 55, (321,142,0): 142, 121, 58, (321,143,0): 146, 126, 65, (321,144,0): 143, 126, 74, (321,145,0): 143, 127, 76, (321,146,0): 143, 130, 78, (321,147,0): 144, 133, 77, (321,148,0): 146, 135, 79, (321,149,0): 149, 137, 79, (321,150,0): 154, 137, 81, (321,151,0): 157, 138, 82, (321,152,0): 161, 138, 86, (321,153,0): 163, 138, 84, (321,154,0): 167, 140, 87, (321,155,0): 168, 144, 84, (321,156,0): 164, 145, 79, (321,157,0): 165, 151, 78, (321,158,0): 178, 170, 89, (321,159,0): 198, 188, 103, (321,160,0): 227, 207, 121, (321,161,0): 238, 214, 128, (321,162,0): 244, 220, 134, (321,163,0): 242, 218, 132, (321,164,0): 242, 218, 132, (321,165,0): 246, 222, 136, (321,166,0): 247, 223, 137, (321,167,0): 244, 220, 134, (321,168,0): 249, 225, 139, (321,169,0): 248, 224, 138, (321,170,0): 247, 223, 137, (321,171,0): 246, 222, 136, (321,172,0): 246, 222, 136, (321,173,0): 247, 223, 137, (321,174,0): 248, 224, 138, (321,175,0): 249, 225, 139, (321,176,0): 248, 226, 140, (321,177,0): 249, 227, 141, (321,178,0): 250, 229, 140, (321,179,0): 252, 231, 140, (321,180,0): 254, 233, 140, (321,181,0): 255, 235, 142, (321,182,0): 255, 237, 142, (321,183,0): 255, 238, 143, (321,184,0): 255, 236, 141, (321,185,0): 255, 236, 141, (321,186,0): 255, 234, 141, (321,187,0): 254, 233, 140, (321,188,0): 253, 232, 141, (321,189,0): 252, 231, 142, (321,190,0): 252, 230, 144, (321,191,0): 250, 230, 143, (321,192,0): 249, 231, 145, (321,193,0): 248, 232, 145, (321,194,0): 248, 232, 145, (321,195,0): 249, 233, 146, (321,196,0): 249, 233, 146, (321,197,0): 250, 234, 147, (321,198,0): 250, 234, 147, (321,199,0): 251, 235, 148, (321,200,0): 253, 237, 150, (321,201,0): 254, 238, 151, (321,202,0): 255, 240, 153, (321,203,0): 255, 242, 155, (321,204,0): 255, 242, 155, (321,205,0): 255, 242, 155, (321,206,0): 255, 241, 154, (321,207,0): 255, 241, 156, (321,208,0): 252, 240, 154, (321,209,0): 251, 241, 156, (321,210,0): 251, 241, 156, (321,211,0): 251, 241, 156, (321,212,0): 251, 240, 158, (321,213,0): 251, 240, 158, (321,214,0): 251, 240, 160, (321,215,0): 251, 240, 160, (321,216,0): 255, 244, 164, (321,217,0): 255, 244, 164, (321,218,0): 255, 246, 167, (321,219,0): 255, 246, 167, (321,220,0): 255, 245, 169, (321,221,0): 255, 245, 169, (321,222,0): 255, 243, 167, (321,223,0): 253, 244, 165, (321,224,0): 250, 248, 165, (321,225,0): 249, 248, 165, (321,226,0): 249, 248, 166, (321,227,0): 248, 250, 167, (321,228,0): 248, 249, 169, (321,229,0): 248, 251, 172, (321,230,0): 248, 251, 174, (321,231,0): 247, 251, 175, (321,232,0): 243, 249, 175, (321,233,0): 241, 249, 176, (321,234,0): 239, 246, 178, (321,235,0): 235, 245, 176, (321,236,0): 235, 244, 177, (321,237,0): 234, 245, 179, (321,238,0): 235, 245, 182, (321,239,0): 233, 248, 183, (321,240,0): 229, 247, 185, (321,241,0): 228, 250, 186, (321,242,0): 230, 252, 190, (321,243,0): 229, 253, 193, (321,244,0): 230, 254, 196, (321,245,0): 229, 254, 199, (321,246,0): 226, 253, 200, (321,247,0): 224, 254, 202, (321,248,0): 223, 255, 206, (321,249,0): 219, 255, 207, (321,250,0): 217, 254, 210, (321,251,0): 215, 254, 210, (321,252,0): 212, 253, 211, (321,253,0): 210, 252, 212, (321,254,0): 209, 251, 213, (321,255,0): 207, 251, 216, (321,256,0): 206, 252, 224, (321,257,0): 204, 252, 228, (321,258,0): 203, 252, 230, (321,259,0): 203, 252, 230, (321,260,0): 201, 253, 231, (321,261,0): 201, 252, 233, (321,262,0): 200, 253, 237, (321,263,0): 199, 253, 239, (321,264,0): 197, 253, 242, (321,265,0): 197, 253, 244, (321,266,0): 196, 253, 247, (321,267,0): 197, 253, 250, (321,268,0): 195, 254, 252, (321,269,0): 195, 255, 255, (321,270,0): 195, 255, 255, (321,271,0): 197, 255, 255, (321,272,0): 201, 255, 255, (321,273,0): 201, 254, 255, (321,274,0): 200, 253, 255, (321,275,0): 199, 252, 255, (321,276,0): 199, 252, 255, (321,277,0): 200, 253, 255, (321,278,0): 201, 254, 255, (321,279,0): 202, 255, 255, (321,280,0): 201, 254, 255, (321,281,0): 200, 254, 255, (321,282,0): 199, 253, 255, (321,283,0): 199, 253, 253, (321,284,0): 198, 252, 254, (321,285,0): 198, 252, 252, (321,286,0): 198, 252, 252, (321,287,0): 198, 251, 255, (321,288,0): 194, 243, 255, (321,289,0): 191, 238, 254, (321,290,0): 186, 232, 248, (321,291,0): 181, 227, 243, (321,292,0): 178, 221, 238, (321,293,0): 172, 215, 232, (321,294,0): 166, 207, 227, (321,295,0): 160, 201, 221, (321,296,0): 155, 191, 215, (321,297,0): 156, 192, 216, (321,298,0): 158, 192, 217, (321,299,0): 158, 192, 217, (321,300,0): 159, 190, 218, (321,301,0): 157, 188, 216, (321,302,0): 157, 187, 215, (321,303,0): 154, 185, 214, (321,304,0): 148, 178, 212, (321,305,0): 141, 174, 207, (321,306,0): 138, 168, 202, (321,307,0): 137, 166, 198, (321,308,0): 140, 166, 199, (321,309,0): 142, 166, 200, (321,310,0): 144, 164, 199, (321,311,0): 143, 163, 198, (321,312,0): 143, 163, 198, (321,313,0): 142, 162, 199, (321,314,0): 143, 162, 204, (321,315,0): 148, 167, 210, (321,316,0): 152, 173, 220, (321,317,0): 156, 176, 226, (321,318,0): 156, 178, 227, (321,319,0): 155, 177, 224, (321,320,0): 155, 177, 218, (321,321,0): 153, 173, 210, (321,322,0): 147, 165, 203, (321,323,0): 142, 156, 191, (321,324,0): 138, 146, 182, (321,325,0): 134, 139, 171, (321,326,0): 134, 133, 164, (321,327,0): 136, 130, 158, (321,328,0): 133, 123, 147, (321,329,0): 123, 110, 130, (321,330,0): 112, 98, 115, (321,331,0): 107, 91, 104, (321,332,0): 99, 81, 93, (321,333,0): 90, 70, 79, (321,334,0): 85, 65, 74, (321,335,0): 85, 66, 72, (321,336,0): 80, 63, 73, (321,337,0): 80, 63, 73, (321,338,0): 79, 63, 73, (321,339,0): 77, 64, 73, (321,340,0): 77, 64, 73, (321,341,0): 76, 65, 73, (321,342,0): 74, 64, 72, (321,343,0): 74, 64, 72, (321,344,0): 77, 67, 75, (321,345,0): 79, 68, 76, (321,346,0): 82, 69, 78, (321,347,0): 87, 70, 80, (321,348,0): 92, 72, 83, (321,349,0): 95, 73, 85, (321,350,0): 100, 74, 87, (321,351,0): 98, 76, 88, (321,352,0): 99, 83, 94, (321,353,0): 99, 87, 99, (321,354,0): 104, 90, 103, (321,355,0): 107, 95, 107, (321,356,0): 110, 96, 111, (321,357,0): 110, 98, 112, (321,358,0): 110, 96, 111, (321,359,0): 108, 95, 112, (321,360,0): 114, 100, 117, (321,361,0): 114, 101, 118, (321,362,0): 117, 102, 121, (321,363,0): 117, 104, 122, (321,364,0): 120, 105, 124, (321,365,0): 120, 107, 127, (321,366,0): 121, 106, 127, (321,367,0): 121, 106, 125, (321,368,0): 123, 109, 126, (321,369,0): 124, 107, 125, (321,370,0): 123, 106, 124, (321,371,0): 123, 106, 124, (321,372,0): 124, 107, 125, (321,373,0): 128, 109, 128, (321,374,0): 130, 111, 130, (321,375,0): 132, 113, 132, (321,376,0): 133, 112, 131, (321,377,0): 131, 110, 129, (321,378,0): 130, 109, 128, (321,379,0): 129, 106, 126, (321,380,0): 128, 105, 125, (321,381,0): 128, 105, 125, (321,382,0): 128, 105, 125, (321,383,0): 130, 105, 124, (321,384,0): 137, 109, 124, (321,385,0): 136, 105, 120, (321,386,0): 134, 103, 118, (321,387,0): 135, 103, 116, (321,388,0): 137, 105, 116, (321,389,0): 139, 106, 115, (321,390,0): 137, 104, 111, (321,391,0): 137, 102, 108, (321,392,0): 123, 88, 94, (321,393,0): 114, 78, 80, (321,394,0): 105, 66, 69, (321,395,0): 99, 60, 61, (321,396,0): 98, 58, 58, (321,397,0): 96, 56, 56, (321,398,0): 91, 51, 49, (321,399,0): 88, 46, 47, (321,400,0): 87, 45, 47, (321,401,0): 87, 45, 49, (321,402,0): 87, 45, 49, (321,403,0): 87, 45, 49, (321,404,0): 86, 44, 48, (321,405,0): 85, 45, 46, (321,406,0): 85, 45, 46, (321,407,0): 84, 45, 46, (321,408,0): 84, 45, 46, (321,409,0): 87, 49, 48, (321,410,0): 91, 53, 52, (321,411,0): 90, 55, 51, (321,412,0): 90, 55, 51, (321,413,0): 91, 56, 52, (321,414,0): 94, 59, 55, (321,415,0): 93, 64, 56, (321,416,0): 92, 76, 63, (321,417,0): 91, 82, 67, (321,418,0): 95, 86, 71, (321,419,0): 99, 90, 73, (321,420,0): 103, 94, 77, (321,421,0): 107, 100, 81, (321,422,0): 115, 109, 87, (321,423,0): 120, 114, 88, (321,424,0): 120, 115, 86, (321,425,0): 129, 126, 95, (321,426,0): 142, 139, 104, (321,427,0): 149, 150, 110, (321,428,0): 152, 153, 111, (321,429,0): 156, 157, 113, (321,430,0): 161, 163, 116, (321,431,0): 169, 167, 116, (321,432,0): 186, 180, 120, (321,433,0): 207, 199, 136, (321,434,0): 225, 221, 157, (321,435,0): 237, 237, 173, (321,436,0): 242, 247, 183, (321,437,0): 238, 247, 190, (321,438,0): 224, 236, 188, (321,439,0): 208, 222, 186, (321,440,0): 196, 209, 191, (321,441,0): 189, 204, 199, (321,442,0): 185, 198, 207, (321,443,0): 183, 194, 216, (321,444,0): 181, 190, 223, (321,445,0): 177, 185, 222, (321,446,0): 171, 178, 220, (321,447,0): 169, 173, 221, (321,448,0): 169, 168, 226, (321,449,0): 166, 164, 227, (321,450,0): 161, 162, 227, (321,451,0): 156, 161, 227, (321,452,0): 151, 159, 231, (321,453,0): 146, 158, 232, (321,454,0): 141, 157, 232, (321,455,0): 139, 155, 232, (321,456,0): 138, 154, 231, (321,457,0): 140, 152, 228, (321,458,0): 140, 148, 223, (321,459,0): 140, 144, 217, (321,460,0): 140, 139, 207, (321,461,0): 141, 136, 202, (321,462,0): 142, 133, 198, (321,463,0): 143, 131, 193, (321,464,0): 154, 137, 191, (321,465,0): 160, 142, 190, (321,466,0): 168, 151, 195, (321,467,0): 177, 161, 198, (321,468,0): 185, 169, 198, (321,469,0): 187, 172, 193, (321,470,0): 187, 170, 186, (321,471,0): 184, 168, 178, (321,472,0): 172, 156, 159, (321,473,0): 169, 150, 152, (321,474,0): 161, 142, 144, (321,475,0): 154, 134, 136, (321,476,0): 147, 127, 129, (321,477,0): 139, 118, 123, (321,478,0): 132, 109, 115, (321,479,0): 125, 105, 114, (321,480,0): 116, 100, 110, (321,481,0): 110, 97, 107, (321,482,0): 108, 92, 102, (321,483,0): 106, 90, 100, (321,484,0): 106, 89, 99, (321,485,0): 104, 87, 95, (321,486,0): 101, 84, 90, (321,487,0): 98, 82, 85, (321,488,0): 97, 81, 82, (321,489,0): 101, 87, 86, (321,490,0): 106, 92, 91, (321,491,0): 103, 94, 89, (321,492,0): 100, 93, 87, (321,493,0): 99, 95, 86, (321,494,0): 105, 101, 92, (321,495,0): 108, 107, 102, (321,496,0): 110, 111, 113, (321,497,0): 108, 113, 119, (321,498,0): 117, 123, 135, (321,499,0): 135, 142, 160, (321,500,0): 144, 154, 179, (321,501,0): 144, 155, 187, (321,502,0): 144, 153, 194, (321,503,0): 144, 155, 200, (321,504,0): 144, 154, 203, (321,505,0): 145, 153, 202, (321,506,0): 145, 153, 200, (321,507,0): 147, 154, 200, (321,508,0): 150, 153, 196, (321,509,0): 147, 149, 188, (321,510,0): 142, 142, 178, (321,511,0): 137, 138, 169, (321,512,0): 132, 136, 163, (321,513,0): 126, 130, 155, (321,514,0): 120, 121, 149, (321,515,0): 118, 118, 144, (321,516,0): 121, 117, 142, (321,517,0): 123, 118, 141, (321,518,0): 122, 117, 137, (321,519,0): 119, 115, 132, (321,520,0): 115, 112, 131, (321,521,0): 114, 115, 135, (321,522,0): 118, 123, 145, (321,523,0): 127, 136, 165, (321,524,0): 140, 154, 193, (321,525,0): 151, 168, 214, (321,526,0): 158, 175, 229, (321,527,0): 162, 178, 238, (321,528,0): 164, 172, 237, (321,529,0): 166, 171, 235, (321,530,0): 158, 164, 222, (321,531,0): 146, 154, 203, (321,532,0): 141, 148, 192, (321,533,0): 142, 147, 185, (321,534,0): 138, 143, 175, (321,535,0): 132, 136, 165, (321,536,0): 117, 118, 146, (321,537,0): 113, 111, 135, (321,538,0): 105, 102, 123, (321,539,0): 99, 92, 110, (321,540,0): 95, 84, 98, (321,541,0): 90, 79, 87, (321,542,0): 84, 72, 76, (321,543,0): 83, 67, 68, (321,544,0): 84, 59, 62, (321,545,0): 82, 53, 55, (321,546,0): 72, 46, 49, (321,547,0): 67, 41, 44, (321,548,0): 64, 39, 42, (321,549,0): 63, 38, 41, (321,550,0): 59, 37, 40, (321,551,0): 56, 36, 38, (321,552,0): 54, 33, 38, (321,553,0): 53, 34, 38, (321,554,0): 51, 35, 38, (321,555,0): 51, 35, 38, (321,556,0): 49, 34, 39, (321,557,0): 49, 34, 39, (321,558,0): 47, 35, 39, (321,559,0): 47, 35, 39, (321,560,0): 50, 38, 42, (321,561,0): 52, 40, 44, (321,562,0): 57, 45, 49, (321,563,0): 64, 53, 57, (321,564,0): 74, 63, 67, (321,565,0): 83, 74, 77, (321,566,0): 91, 82, 85, (321,567,0): 93, 87, 89, (321,568,0): 102, 96, 98, (321,569,0): 104, 100, 101, (321,570,0): 107, 105, 106, (321,571,0): 112, 110, 111, (321,572,0): 112, 112, 112, (321,573,0): 111, 111, 111, (321,574,0): 109, 109, 109, (321,575,0): 109, 105, 106, (321,576,0): 114, 104, 105, (321,577,0): 107, 95, 97, (321,578,0): 96, 84, 86, (321,579,0): 88, 76, 78, (321,580,0): 83, 71, 73, (321,581,0): 76, 64, 66, (321,582,0): 66, 54, 56, (321,583,0): 58, 46, 48, (321,584,0): 51, 39, 41, (321,585,0): 50, 38, 40, (321,586,0): 49, 37, 39, (321,587,0): 48, 36, 38, (321,588,0): 48, 36, 38, (321,589,0): 49, 37, 39, (321,590,0): 50, 38, 40, (321,591,0): 51, 39, 41, (321,592,0): 51, 41, 40, (321,593,0): 52, 42, 41, (321,594,0): 52, 42, 41, (321,595,0): 52, 42, 41, (321,596,0): 51, 41, 40, (321,597,0): 50, 40, 39, (321,598,0): 48, 38, 37, (321,599,0): 47, 37, 36, (322,0,0): 60, 49, 53, (322,1,0): 60, 49, 53, (322,2,0): 60, 49, 53, (322,3,0): 60, 49, 53, (322,4,0): 60, 49, 53, (322,5,0): 60, 49, 53, (322,6,0): 60, 49, 53, (322,7,0): 60, 49, 53, (322,8,0): 62, 51, 55, (322,9,0): 62, 51, 55, (322,10,0): 62, 51, 55, (322,11,0): 61, 50, 54, (322,12,0): 60, 49, 53, (322,13,0): 60, 49, 53, (322,14,0): 60, 49, 53, (322,15,0): 59, 48, 52, (322,16,0): 62, 50, 54, (322,17,0): 61, 49, 53, (322,18,0): 62, 47, 52, (322,19,0): 60, 45, 50, (322,20,0): 60, 45, 50, (322,21,0): 60, 45, 50, (322,22,0): 62, 45, 51, (322,23,0): 62, 45, 51, (322,24,0): 65, 46, 52, (322,25,0): 65, 46, 52, (322,26,0): 65, 46, 52, (322,27,0): 65, 46, 52, (322,28,0): 66, 45, 52, (322,29,0): 66, 45, 52, (322,30,0): 66, 45, 52, (322,31,0): 66, 45, 52, (322,32,0): 65, 42, 50, (322,33,0): 68, 45, 53, (322,34,0): 73, 48, 54, (322,35,0): 75, 48, 53, (322,36,0): 78, 49, 54, (322,37,0): 83, 51, 54, (322,38,0): 90, 56, 57, (322,39,0): 97, 59, 58, (322,40,0): 102, 63, 58, (322,41,0): 109, 66, 59, (322,42,0): 116, 69, 61, (322,43,0): 118, 70, 58, (322,44,0): 120, 68, 55, (322,45,0): 120, 68, 54, (322,46,0): 123, 70, 54, (322,47,0): 125, 72, 58, (322,48,0): 123, 69, 57, (322,49,0): 126, 72, 60, (322,50,0): 129, 75, 63, (322,51,0): 128, 76, 62, (322,52,0): 126, 75, 58, (322,53,0): 126, 75, 58, (322,54,0): 129, 78, 61, (322,55,0): 132, 81, 64, (322,56,0): 140, 84, 67, (322,57,0): 146, 89, 69, (322,58,0): 157, 97, 71, (322,59,0): 169, 106, 73, (322,60,0): 177, 112, 72, (322,61,0): 183, 115, 66, (322,62,0): 186, 117, 62, (322,63,0): 183, 117, 59, (322,64,0): 181, 118, 64, (322,65,0): 180, 119, 65, (322,66,0): 181, 120, 66, (322,67,0): 180, 121, 65, (322,68,0): 179, 123, 66, (322,69,0): 179, 125, 65, (322,70,0): 178, 126, 66, (322,71,0): 176, 128, 64, (322,72,0): 184, 139, 72, (322,73,0): 184, 141, 73, (322,74,0): 184, 144, 74, (322,75,0): 184, 148, 74, (322,76,0): 186, 150, 76, (322,77,0): 186, 153, 76, (322,78,0): 187, 155, 78, (322,79,0): 188, 156, 79, (322,80,0): 190, 157, 78, (322,81,0): 189, 156, 77, (322,82,0): 189, 156, 75, (322,83,0): 189, 156, 75, (322,84,0): 190, 158, 75, (322,85,0): 192, 160, 75, (322,86,0): 194, 162, 75, (322,87,0): 195, 164, 74, (322,88,0): 197, 163, 73, (322,89,0): 199, 166, 73, (322,90,0): 202, 169, 76, (322,91,0): 205, 172, 77, (322,92,0): 207, 174, 77, (322,93,0): 210, 176, 79, (322,94,0): 210, 176, 79, (322,95,0): 211, 177, 79, (322,96,0): 211, 179, 76, (322,97,0): 209, 180, 76, (322,98,0): 210, 181, 77, (322,99,0): 209, 182, 79, (322,100,0): 209, 181, 82, (322,101,0): 206, 180, 83, (322,102,0): 204, 178, 83, (322,103,0): 202, 177, 84, (322,104,0): 200, 177, 84, (322,105,0): 198, 178, 83, (322,106,0): 199, 179, 84, (322,107,0): 200, 182, 84, (322,108,0): 202, 184, 86, (322,109,0): 201, 186, 85, (322,110,0): 202, 187, 84, (322,111,0): 203, 189, 84, (322,112,0): 208, 189, 86, (322,113,0): 209, 190, 87, (322,114,0): 210, 191, 88, (322,115,0): 212, 193, 90, (322,116,0): 212, 193, 90, (322,117,0): 211, 194, 90, (322,118,0): 210, 193, 89, (322,119,0): 210, 193, 89, (322,120,0): 210, 196, 91, (322,121,0): 211, 197, 92, (322,122,0): 213, 199, 94, (322,123,0): 213, 200, 95, (322,124,0): 213, 200, 95, (322,125,0): 212, 199, 94, (322,126,0): 209, 198, 92, (322,127,0): 210, 197, 93, (322,128,0): 211, 193, 95, (322,129,0): 209, 188, 95, (322,130,0): 203, 181, 95, (322,131,0): 193, 171, 88, (322,132,0): 178, 156, 80, (322,133,0): 164, 141, 71, (322,134,0): 152, 128, 64, (322,135,0): 143, 121, 61, (322,136,0): 145, 123, 66, (322,137,0): 145, 123, 66, (322,138,0): 144, 121, 67, (322,139,0): 142, 120, 63, (322,140,0): 139, 117, 59, (322,141,0): 138, 116, 56, (322,142,0): 141, 117, 55, (322,143,0): 141, 119, 61, (322,144,0): 141, 121, 70, (322,145,0): 139, 123, 72, (322,146,0): 139, 126, 74, (322,147,0): 140, 127, 72, (322,148,0): 142, 129, 74, (322,149,0): 144, 132, 74, (322,150,0): 148, 131, 75, (322,151,0): 152, 131, 76, (322,152,0): 160, 134, 83, (322,153,0): 161, 134, 81, (322,154,0): 163, 136, 83, (322,155,0): 165, 141, 81, (322,156,0): 163, 144, 78, (322,157,0): 166, 152, 79, (322,158,0): 181, 173, 92, (322,159,0): 202, 192, 107, (322,160,0): 230, 210, 123, (322,161,0): 241, 217, 129, (322,162,0): 247, 223, 135, (322,163,0): 245, 221, 133, (322,164,0): 245, 221, 133, (322,165,0): 249, 225, 137, (322,166,0): 250, 226, 138, (322,167,0): 247, 223, 135, (322,168,0): 251, 227, 139, (322,169,0): 250, 226, 138, (322,170,0): 249, 225, 137, (322,171,0): 249, 225, 137, (322,172,0): 249, 225, 137, (322,173,0): 249, 225, 137, (322,174,0): 250, 226, 138, (322,175,0): 249, 228, 139, (322,176,0): 249, 229, 142, (322,177,0): 250, 230, 143, (322,178,0): 251, 231, 142, (322,179,0): 252, 233, 141, (322,180,0): 254, 235, 141, (322,181,0): 255, 236, 142, (322,182,0): 255, 238, 143, (322,183,0): 255, 239, 141, (322,184,0): 255, 238, 140, (322,185,0): 255, 237, 142, (322,186,0): 255, 236, 142, (322,187,0): 254, 235, 141, (322,188,0): 253, 234, 142, (322,189,0): 252, 232, 143, (322,190,0): 251, 231, 144, (322,191,0): 248, 231, 143, (322,192,0): 247, 231, 144, (322,193,0): 248, 232, 147, (322,194,0): 248, 232, 147, (322,195,0): 249, 233, 148, (322,196,0): 249, 233, 148, (322,197,0): 250, 234, 149, (322,198,0): 250, 234, 149, (322,199,0): 250, 234, 149, (322,200,0): 251, 235, 150, (322,201,0): 252, 236, 151, (322,202,0): 254, 238, 153, (322,203,0): 255, 240, 155, (322,204,0): 255, 241, 156, (322,205,0): 255, 242, 157, (322,206,0): 255, 242, 157, (322,207,0): 255, 242, 157, (322,208,0): 252, 242, 155, (322,209,0): 250, 243, 155, (322,210,0): 250, 243, 155, (322,211,0): 250, 243, 155, (322,212,0): 250, 242, 157, (322,213,0): 250, 242, 157, (322,214,0): 250, 242, 159, (322,215,0): 250, 242, 159, (322,216,0): 253, 245, 162, (322,217,0): 253, 245, 162, (322,218,0): 255, 247, 166, (322,219,0): 255, 247, 166, (322,220,0): 255, 246, 167, (322,221,0): 255, 246, 167, (322,222,0): 253, 244, 165, (322,223,0): 252, 245, 165, (322,224,0): 253, 248, 166, (322,225,0): 250, 249, 166, (322,226,0): 250, 249, 167, (322,227,0): 249, 251, 168, (322,228,0): 249, 250, 170, (322,229,0): 249, 252, 173, (322,230,0): 249, 252, 175, (322,231,0): 248, 252, 176, (322,232,0): 244, 250, 176, (322,233,0): 241, 249, 176, (322,234,0): 239, 246, 178, (322,235,0): 235, 245, 176, (322,236,0): 234, 243, 176, (322,237,0): 232, 243, 175, (322,238,0): 232, 243, 177, (322,239,0): 231, 243, 179, (322,240,0): 230, 246, 184, (322,241,0): 228, 248, 187, (322,242,0): 230, 250, 191, (322,243,0): 230, 251, 192, (322,244,0): 228, 252, 194, (322,245,0): 227, 252, 197, (322,246,0): 224, 251, 198, (322,247,0): 222, 252, 200, (322,248,0): 222, 254, 205, (322,249,0): 218, 254, 206, (322,250,0): 217, 254, 210, (322,251,0): 215, 254, 210, (322,252,0): 211, 252, 210, (322,253,0): 209, 251, 211, (322,254,0): 209, 251, 213, (322,255,0): 205, 251, 215, (322,256,0): 203, 249, 220, (322,257,0): 201, 249, 223, (322,258,0): 200, 250, 225, (322,259,0): 200, 249, 227, (322,260,0): 198, 250, 228, (322,261,0): 198, 249, 230, (322,262,0): 197, 250, 234, (322,263,0): 196, 250, 236, (322,264,0): 195, 251, 240, (322,265,0): 195, 251, 242, (322,266,0): 195, 252, 246, (322,267,0): 195, 251, 248, (322,268,0): 194, 253, 251, (322,269,0): 194, 253, 251, (322,270,0): 194, 254, 254, (322,271,0): 195, 253, 255, (322,272,0): 200, 255, 255, (322,273,0): 199, 254, 255, (322,274,0): 198, 253, 255, (322,275,0): 197, 252, 255, (322,276,0): 197, 252, 255, (322,277,0): 198, 253, 255, (322,278,0): 199, 254, 255, (322,279,0): 200, 255, 255, (322,280,0): 198, 253, 255, (322,281,0): 198, 253, 255, (322,282,0): 198, 253, 255, (322,283,0): 197, 253, 254, (322,284,0): 197, 252, 255, (322,285,0): 196, 252, 253, (322,286,0): 196, 252, 253, (322,287,0): 196, 249, 253, (322,288,0): 196, 245, 255, (322,289,0): 192, 239, 255, (322,290,0): 188, 233, 252, (322,291,0): 183, 228, 247, (322,292,0): 179, 222, 241, (322,293,0): 173, 216, 235, (322,294,0): 165, 206, 228, (322,295,0): 160, 201, 223, (322,296,0): 156, 192, 216, (322,297,0): 156, 192, 216, (322,298,0): 157, 191, 216, (322,299,0): 157, 191, 216, (322,300,0): 158, 189, 217, (322,301,0): 156, 187, 215, (322,302,0): 155, 185, 213, (322,303,0): 153, 184, 213, (322,304,0): 149, 180, 211, (322,305,0): 142, 175, 206, (322,306,0): 138, 169, 200, (322,307,0): 135, 164, 194, (322,308,0): 135, 162, 192, (322,309,0): 135, 160, 191, (322,310,0): 136, 156, 189, (322,311,0): 134, 154, 187, (322,312,0): 138, 157, 190, (322,313,0): 138, 156, 192, (322,314,0): 139, 158, 198, (322,315,0): 143, 162, 204, (322,316,0): 146, 167, 210, (322,317,0): 151, 172, 217, (322,318,0): 152, 174, 221, (322,319,0): 152, 175, 219, (322,320,0): 155, 177, 218, (322,321,0): 153, 173, 210, (322,322,0): 148, 166, 204, (322,323,0): 143, 157, 192, (322,324,0): 140, 148, 184, (322,325,0): 136, 141, 173, (322,326,0): 136, 135, 166, (322,327,0): 137, 133, 160, (322,328,0): 134, 124, 148, (322,329,0): 123, 110, 130, (322,330,0): 109, 95, 112, (322,331,0): 103, 87, 100, (322,332,0): 97, 79, 91, (322,333,0): 88, 71, 79, (322,334,0): 85, 65, 74, (322,335,0): 87, 68, 74, (322,336,0): 80, 63, 73, (322,337,0): 80, 63, 73, (322,338,0): 79, 63, 73, (322,339,0): 77, 64, 73, (322,340,0): 77, 64, 73, (322,341,0): 76, 65, 73, (322,342,0): 76, 66, 74, (322,343,0): 76, 66, 74, (322,344,0): 78, 67, 75, (322,345,0): 79, 68, 76, (322,346,0): 82, 69, 78, (322,347,0): 88, 71, 81, (322,348,0): 93, 73, 84, (322,349,0): 96, 74, 86, (322,350,0): 101, 75, 88, (322,351,0): 101, 77, 90, (322,352,0): 101, 83, 95, (322,353,0): 100, 87, 97, (322,354,0): 106, 90, 101, (322,355,0): 107, 94, 104, (322,356,0): 112, 96, 109, (322,357,0): 110, 96, 109, (322,358,0): 112, 96, 109, (322,359,0): 109, 95, 110, (322,360,0): 117, 100, 116, (322,361,0): 116, 102, 117, (322,362,0): 120, 103, 121, (322,363,0): 120, 106, 123, (322,364,0): 123, 106, 124, (322,365,0): 120, 105, 124, (322,366,0): 122, 105, 124, (322,367,0): 121, 104, 123, (322,368,0): 122, 105, 123, (322,369,0): 123, 105, 121, (322,370,0): 123, 105, 121, (322,371,0): 124, 106, 122, (322,372,0): 126, 108, 124, (322,373,0): 129, 108, 125, (322,374,0): 130, 109, 126, (322,375,0): 131, 110, 127, (322,376,0): 133, 110, 128, (322,377,0): 131, 108, 126, (322,378,0): 129, 106, 124, (322,379,0): 128, 103, 122, (322,380,0): 127, 102, 121, (322,381,0): 126, 101, 120, (322,382,0): 127, 102, 121, (322,383,0): 129, 102, 119, (322,384,0): 133, 102, 117, (322,385,0): 133, 101, 114, (322,386,0): 133, 101, 114, (322,387,0): 134, 100, 114, (322,388,0): 134, 101, 112, (322,389,0): 134, 98, 108, (322,390,0): 129, 94, 101, (322,391,0): 126, 89, 96, (322,392,0): 107, 70, 77, (322,393,0): 102, 63, 66, (322,394,0): 96, 57, 60, (322,395,0): 94, 54, 55, (322,396,0): 95, 53, 54, (322,397,0): 94, 52, 53, (322,398,0): 90, 49, 47, (322,399,0): 86, 44, 45, (322,400,0): 88, 46, 50, (322,401,0): 88, 45, 52, (322,402,0): 87, 44, 51, (322,403,0): 86, 45, 49, (322,404,0): 85, 44, 48, (322,405,0): 85, 44, 48, (322,406,0): 84, 43, 47, (322,407,0): 83, 44, 45, (322,408,0): 85, 46, 47, (322,409,0): 86, 51, 49, (322,410,0): 89, 54, 52, (322,411,0): 91, 56, 54, (322,412,0): 90, 55, 53, (322,413,0): 91, 58, 53, (322,414,0): 94, 61, 56, (322,415,0): 94, 65, 59, (322,416,0): 94, 74, 63, (322,417,0): 94, 78, 65, (322,418,0): 97, 81, 66, (322,419,0): 98, 85, 69, (322,420,0): 102, 89, 72, (322,421,0): 110, 97, 78, (322,422,0): 118, 108, 83, (322,423,0): 125, 116, 87, (322,424,0): 123, 117, 83, (322,425,0): 133, 129, 92, (322,426,0): 147, 144, 103, (322,427,0): 156, 155, 109, (322,428,0): 162, 161, 113, (322,429,0): 167, 167, 115, (322,430,0): 174, 174, 120, (322,431,0): 180, 179, 123, (322,432,0): 204, 199, 141, (322,433,0): 218, 213, 155, (322,434,0): 229, 227, 168, (322,435,0): 233, 234, 176, (322,436,0): 232, 237, 181, (322,437,0): 225, 235, 185, (322,438,0): 212, 224, 186, (322,439,0): 197, 211, 185, (322,440,0): 188, 201, 192, (322,441,0): 184, 197, 203, (322,442,0): 180, 192, 214, (322,443,0): 179, 190, 222, (322,444,0): 177, 186, 229, (322,445,0): 173, 181, 230, (322,446,0): 168, 175, 229, (322,447,0): 165, 170, 228, (322,448,0): 166, 166, 230, (322,449,0): 165, 164, 232, (322,450,0): 161, 164, 233, (322,451,0): 156, 160, 233, (322,452,0): 148, 156, 229, (322,453,0): 141, 153, 229, (322,454,0): 138, 151, 229, (322,455,0): 138, 151, 229, (322,456,0): 138, 152, 227, (322,457,0): 140, 149, 224, (322,458,0): 140, 147, 219, (322,459,0): 142, 142, 212, (322,460,0): 141, 139, 204, (322,461,0): 141, 135, 197, (322,462,0): 142, 132, 193, (322,463,0): 143, 130, 184, (322,464,0): 145, 128, 173, (322,465,0): 146, 128, 166, (322,466,0): 150, 133, 167, (322,467,0): 157, 141, 168, (322,468,0): 165, 148, 167, (322,469,0): 167, 151, 164, (322,470,0): 163, 146, 154, (322,471,0): 160, 141, 143, (322,472,0): 158, 140, 138, (322,473,0): 152, 133, 129, (322,474,0): 142, 123, 119, (322,475,0): 134, 113, 110, (322,476,0): 127, 106, 103, (322,477,0): 121, 100, 99, (322,478,0): 117, 92, 95, (322,479,0): 109, 89, 91, (322,480,0): 98, 83, 88, (322,481,0): 93, 80, 87, (322,482,0): 91, 76, 83, (322,483,0): 90, 75, 80, (322,484,0): 91, 74, 80, (322,485,0): 89, 73, 76, (322,486,0): 87, 68, 72, (322,487,0): 84, 65, 67, (322,488,0): 84, 68, 69, (322,489,0): 87, 73, 72, (322,490,0): 91, 77, 76, (322,491,0): 89, 80, 75, (322,492,0): 87, 80, 74, (322,493,0): 87, 82, 76, (322,494,0): 93, 89, 80, (322,495,0): 98, 95, 88, (322,496,0): 103, 101, 102, (322,497,0): 102, 103, 107, (322,498,0): 106, 109, 116, (322,499,0): 117, 121, 133, (322,500,0): 123, 128, 148, (322,501,0): 123, 129, 155, (322,502,0): 122, 128, 162, (322,503,0): 123, 128, 166, (322,504,0): 130, 135, 177, (322,505,0): 130, 135, 177, (322,506,0): 133, 136, 177, (322,507,0): 137, 139, 178, (322,508,0): 141, 141, 177, (322,509,0): 141, 140, 174, (322,510,0): 138, 135, 166, (322,511,0): 134, 131, 160, (322,512,0): 129, 131, 156, (322,513,0): 122, 124, 147, (322,514,0): 119, 116, 143, (322,515,0): 120, 116, 141, (322,516,0): 126, 121, 144, (322,517,0): 130, 122, 145, (322,518,0): 127, 120, 138, (322,519,0): 123, 116, 132, (322,520,0): 114, 110, 127, (322,521,0): 113, 112, 130, (322,522,0): 114, 116, 137, (322,523,0): 121, 126, 155, (322,524,0): 131, 141, 177, (322,525,0): 141, 155, 200, (322,526,0): 150, 166, 218, (322,527,0): 157, 169, 229, (322,528,0): 162, 170, 233, (322,529,0): 167, 171, 235, (322,530,0): 163, 168, 226, (322,531,0): 154, 160, 212, (322,532,0): 149, 153, 198, (322,533,0): 147, 152, 190, (322,534,0): 146, 151, 183, (322,535,0): 145, 149, 178, (322,536,0): 127, 129, 154, (322,537,0): 122, 120, 142, (322,538,0): 112, 107, 127, (322,539,0): 104, 97, 113, (322,540,0): 100, 90, 99, (322,541,0): 95, 84, 90, (322,542,0): 90, 78, 78, (322,543,0): 91, 73, 73, (322,544,0): 88, 64, 64, (322,545,0): 85, 56, 58, (322,546,0): 74, 48, 51, (322,547,0): 68, 42, 45, (322,548,0): 64, 39, 42, (322,549,0): 63, 38, 41, (322,550,0): 60, 38, 41, (322,551,0): 57, 37, 39, (322,552,0): 55, 34, 39, (322,553,0): 54, 35, 39, (322,554,0): 51, 35, 38, (322,555,0): 51, 35, 38, (322,556,0): 49, 34, 39, (322,557,0): 49, 34, 39, (322,558,0): 46, 34, 38, (322,559,0): 46, 34, 38, (322,560,0): 53, 38, 43, (322,561,0): 55, 40, 45, (322,562,0): 59, 44, 49, (322,563,0): 66, 51, 56, (322,564,0): 74, 59, 64, (322,565,0): 83, 71, 75, (322,566,0): 93, 81, 85, (322,567,0): 98, 87, 91, (322,568,0): 99, 88, 92, (322,569,0): 103, 94, 97, (322,570,0): 108, 102, 104, (322,571,0): 114, 108, 110, (322,572,0): 116, 112, 113, (322,573,0): 115, 111, 112, (322,574,0): 112, 108, 109, (322,575,0): 110, 104, 106, (322,576,0): 113, 101, 103, (322,577,0): 106, 92, 92, (322,578,0): 94, 80, 80, (322,579,0): 85, 71, 71, (322,580,0): 79, 65, 65, (322,581,0): 72, 58, 58, (322,582,0): 63, 49, 49, (322,583,0): 57, 43, 43, (322,584,0): 53, 39, 39, (322,585,0): 52, 38, 38, (322,586,0): 51, 37, 37, (322,587,0): 51, 37, 37, (322,588,0): 51, 37, 37, (322,589,0): 51, 37, 37, (322,590,0): 52, 38, 38, (322,591,0): 51, 39, 39, (322,592,0): 51, 41, 40, (322,593,0): 52, 42, 41, (322,594,0): 53, 43, 42, (322,595,0): 53, 43, 42, (322,596,0): 53, 43, 42, (322,597,0): 52, 42, 41, (322,598,0): 51, 41, 40, (322,599,0): 50, 40, 39, (323,0,0): 61, 50, 54, (323,1,0): 61, 50, 54, (323,2,0): 61, 50, 54, (323,3,0): 61, 50, 54, (323,4,0): 61, 50, 54, (323,5,0): 61, 50, 54, (323,6,0): 61, 50, 54, (323,7,0): 61, 50, 54, (323,8,0): 63, 52, 56, (323,9,0): 62, 51, 55, (323,10,0): 62, 51, 55, (323,11,0): 61, 50, 54, (323,12,0): 61, 50, 54, (323,13,0): 60, 49, 53, (323,14,0): 60, 49, 53, (323,15,0): 60, 49, 53, (323,16,0): 62, 50, 54, (323,17,0): 61, 49, 53, (323,18,0): 62, 47, 52, (323,19,0): 60, 45, 50, (323,20,0): 60, 45, 50, (323,21,0): 60, 45, 50, (323,22,0): 62, 45, 51, (323,23,0): 62, 45, 51, (323,24,0): 65, 46, 52, (323,25,0): 65, 46, 52, (323,26,0): 65, 46, 52, (323,27,0): 65, 46, 52, (323,28,0): 66, 45, 52, (323,29,0): 66, 45, 52, (323,30,0): 66, 45, 52, (323,31,0): 66, 45, 52, (323,32,0): 65, 42, 50, (323,33,0): 68, 45, 53, (323,34,0): 72, 47, 53, (323,35,0): 74, 47, 52, (323,36,0): 77, 48, 53, (323,37,0): 81, 51, 53, (323,38,0): 88, 54, 55, (323,39,0): 94, 59, 57, (323,40,0): 100, 61, 56, (323,41,0): 105, 65, 57, (323,42,0): 112, 68, 59, (323,43,0): 116, 69, 59, (323,44,0): 118, 68, 57, (323,45,0): 120, 68, 55, (323,46,0): 122, 70, 56, (323,47,0): 124, 72, 58, (323,48,0): 123, 69, 59, (323,49,0): 125, 73, 62, (323,50,0): 128, 76, 63, (323,51,0): 128, 76, 62, (323,52,0): 126, 75, 58, (323,53,0): 126, 75, 58, (323,54,0): 129, 78, 61, (323,55,0): 133, 80, 62, (323,56,0): 140, 85, 65, (323,57,0): 145, 89, 66, (323,58,0): 156, 96, 70, (323,59,0): 167, 104, 71, (323,60,0): 176, 111, 69, (323,61,0): 183, 117, 67, (323,62,0): 187, 120, 65, (323,63,0): 188, 122, 64, (323,64,0): 183, 121, 64, (323,65,0): 182, 123, 67, (323,66,0): 183, 124, 66, (323,67,0): 183, 127, 68, (323,68,0): 183, 129, 67, (323,69,0): 183, 132, 69, (323,70,0): 183, 133, 70, (323,71,0): 183, 135, 69, (323,72,0): 188, 145, 77, (323,73,0): 186, 146, 76, (323,74,0): 186, 148, 77, (323,75,0): 187, 150, 79, (323,76,0): 186, 152, 78, (323,77,0): 188, 154, 80, (323,78,0): 188, 156, 79, (323,79,0): 189, 157, 80, (323,80,0): 191, 158, 79, (323,81,0): 190, 157, 78, (323,82,0): 190, 157, 76, (323,83,0): 189, 156, 75, (323,84,0): 190, 157, 76, (323,85,0): 192, 160, 77, (323,86,0): 193, 161, 76, (323,87,0): 194, 162, 75, (323,88,0): 195, 164, 74, (323,89,0): 197, 166, 75, (323,90,0): 202, 168, 78, (323,91,0): 203, 172, 79, (323,92,0): 208, 175, 80, (323,93,0): 210, 177, 80, (323,94,0): 210, 177, 82, (323,95,0): 211, 178, 81, (323,96,0): 208, 179, 77, (323,97,0): 208, 181, 78, (323,98,0): 209, 181, 81, (323,99,0): 207, 182, 81, (323,100,0): 206, 180, 83, (323,101,0): 204, 180, 84, (323,102,0): 203, 178, 85, (323,103,0): 201, 178, 85, (323,104,0): 198, 177, 84, (323,105,0): 198, 179, 85, (323,106,0): 199, 180, 86, (323,107,0): 198, 182, 86, (323,108,0): 200, 184, 88, (323,109,0): 201, 187, 88, (323,110,0): 202, 189, 87, (323,111,0): 202, 189, 87, (323,112,0): 207, 189, 87, (323,113,0): 209, 190, 87, (323,114,0): 210, 191, 89, (323,115,0): 209, 192, 88, (323,116,0): 210, 192, 90, (323,117,0): 210, 193, 89, (323,118,0): 210, 192, 90, (323,119,0): 208, 194, 89, (323,120,0): 213, 198, 95, (323,121,0): 212, 199, 94, (323,122,0): 212, 199, 95, (323,123,0): 212, 199, 94, (323,124,0): 213, 200, 96, (323,125,0): 212, 201, 95, (323,126,0): 213, 202, 97, (323,127,0): 214, 201, 97, (323,128,0): 215, 197, 99, (323,129,0): 214, 194, 99, (323,130,0): 209, 188, 97, (323,131,0): 200, 178, 93, (323,132,0): 186, 165, 86, (323,133,0): 170, 148, 75, (323,134,0): 156, 133, 66, (323,135,0): 147, 123, 61, (323,136,0): 148, 123, 66, (323,137,0): 146, 124, 67, (323,138,0): 147, 122, 68, (323,139,0): 143, 121, 64, (323,140,0): 142, 117, 61, (323,141,0): 140, 115, 58, (323,142,0): 138, 114, 54, (323,143,0): 136, 114, 57, (323,144,0): 139, 119, 68, (323,145,0): 138, 120, 72, (323,146,0): 138, 122, 71, (323,147,0): 138, 125, 70, (323,148,0): 142, 127, 72, (323,149,0): 143, 128, 71, (323,150,0): 148, 129, 73, (323,151,0): 149, 128, 73, (323,152,0): 157, 131, 80, (323,153,0): 157, 129, 79, (323,154,0): 160, 133, 80, (323,155,0): 162, 137, 80, (323,156,0): 161, 142, 76, (323,157,0): 166, 152, 79, (323,158,0): 184, 175, 96, (323,159,0): 206, 196, 111, (323,160,0): 233, 213, 126, (323,161,0): 245, 221, 133, (323,162,0): 250, 226, 138, (323,163,0): 249, 225, 137, (323,164,0): 248, 224, 136, (323,165,0): 252, 228, 140, (323,166,0): 253, 229, 141, (323,167,0): 251, 227, 139, (323,168,0): 254, 230, 142, (323,169,0): 253, 229, 141, (323,170,0): 252, 228, 140, (323,171,0): 251, 227, 139, (323,172,0): 251, 227, 139, (323,173,0): 252, 228, 140, (323,174,0): 253, 229, 141, (323,175,0): 252, 231, 142, (323,176,0): 249, 232, 144, (323,177,0): 249, 234, 143, (323,178,0): 251, 234, 142, (323,179,0): 251, 236, 143, (323,180,0): 253, 237, 142, (323,181,0): 254, 240, 143, (323,182,0): 255, 239, 141, (323,183,0): 255, 241, 142, (323,184,0): 255, 239, 141, (323,185,0): 254, 240, 141, (323,186,0): 254, 238, 142, (323,187,0): 251, 236, 141, (323,188,0): 251, 234, 142, (323,189,0): 249, 234, 141, (323,190,0): 249, 232, 142, (323,191,0): 247, 231, 143, (323,192,0): 247, 231, 146, (323,193,0): 246, 231, 146, (323,194,0): 247, 231, 146, (323,195,0): 247, 232, 147, (323,196,0): 249, 233, 148, (323,197,0): 248, 233, 148, (323,198,0): 249, 233, 148, (323,199,0): 249, 234, 149, (323,200,0): 249, 233, 148, (323,201,0): 249, 234, 149, (323,202,0): 252, 236, 151, (323,203,0): 253, 238, 153, (323,204,0): 255, 240, 155, (323,205,0): 255, 241, 156, (323,206,0): 255, 242, 157, (323,207,0): 255, 243, 158, (323,208,0): 253, 243, 156, (323,209,0): 251, 244, 156, (323,210,0): 251, 244, 156, (323,211,0): 251, 244, 156, (323,212,0): 251, 243, 158, (323,213,0): 251, 243, 158, (323,214,0): 251, 243, 158, (323,215,0): 251, 243, 160, (323,216,0): 253, 245, 162, (323,217,0): 253, 245, 162, (323,218,0): 255, 247, 166, (323,219,0): 255, 247, 166, (323,220,0): 255, 247, 166, (323,221,0): 255, 246, 167, (323,222,0): 253, 244, 165, (323,223,0): 252, 245, 164, (323,224,0): 253, 248, 166, (323,225,0): 252, 250, 167, (323,226,0): 252, 249, 168, (323,227,0): 252, 251, 169, (323,228,0): 252, 251, 171, (323,229,0): 251, 252, 172, (323,230,0): 251, 252, 176, (323,231,0): 250, 252, 177, (323,232,0): 248, 252, 178, (323,233,0): 245, 251, 179, (323,234,0): 243, 249, 179, (323,235,0): 240, 247, 179, (323,236,0): 237, 244, 177, (323,237,0): 234, 243, 176, (323,238,0): 232, 241, 176, (323,239,0): 230, 242, 178, (323,240,0): 230, 246, 184, (323,241,0): 228, 246, 186, (323,242,0): 230, 248, 190, (323,243,0): 230, 249, 193, (323,244,0): 229, 250, 194, (323,245,0): 225, 250, 195, (323,246,0): 222, 249, 198, (323,247,0): 219, 249, 199, (323,248,0): 220, 252, 205, (323,249,0): 217, 253, 207, (323,250,0): 215, 252, 209, (323,251,0): 211, 252, 210, (323,252,0): 210, 251, 211, (323,253,0): 208, 250, 210, (323,254,0): 205, 250, 211, (323,255,0): 203, 249, 213, (323,256,0): 200, 246, 217, (323,257,0): 198, 246, 220, (323,258,0): 197, 247, 222, (323,259,0): 197, 247, 222, (323,260,0): 197, 246, 224, (323,261,0): 195, 247, 225, (323,262,0): 194, 247, 229, (323,263,0): 194, 247, 231, (323,264,0): 195, 249, 236, (323,265,0): 193, 249, 238, (323,266,0): 193, 250, 243, (323,267,0): 193, 250, 244, (323,268,0): 192, 251, 247, (323,269,0): 192, 251, 249, (323,270,0): 192, 252, 252, (323,271,0): 193, 251, 252, (323,272,0): 196, 254, 255, (323,273,0): 195, 253, 255, (323,274,0): 196, 251, 255, (323,275,0): 193, 251, 255, (323,276,0): 195, 250, 255, (323,277,0): 194, 252, 255, (323,278,0): 197, 252, 255, (323,279,0): 196, 254, 255, (323,280,0): 196, 251, 255, (323,281,0): 194, 252, 255, (323,282,0): 196, 251, 255, (323,283,0): 194, 252, 255, (323,284,0): 196, 251, 255, (323,285,0): 193, 251, 255, (323,286,0): 194, 249, 252, (323,287,0): 193, 248, 255, (323,288,0): 196, 245, 255, (323,289,0): 193, 240, 255, (323,290,0): 189, 234, 255, (323,291,0): 184, 229, 248, (323,292,0): 181, 223, 245, (323,293,0): 173, 215, 237, (323,294,0): 166, 207, 229, (323,295,0): 159, 200, 222, (323,296,0): 157, 193, 217, (323,297,0): 157, 193, 217, (323,298,0): 157, 191, 216, (323,299,0): 155, 189, 214, (323,300,0): 156, 187, 215, (323,301,0): 154, 185, 213, (323,302,0): 153, 183, 211, (323,303,0): 152, 182, 210, (323,304,0): 147, 178, 207, (323,305,0): 142, 173, 202, (323,306,0): 136, 165, 195, (323,307,0): 133, 160, 189, (323,308,0): 132, 157, 187, (323,309,0): 132, 155, 186, (323,310,0): 131, 152, 183, (323,311,0): 129, 150, 181, (323,312,0): 132, 151, 183, (323,313,0): 132, 151, 184, (323,314,0): 134, 152, 188, (323,315,0): 137, 156, 196, (323,316,0): 141, 160, 202, (323,317,0): 144, 165, 208, (323,318,0): 147, 168, 213, (323,319,0): 148, 171, 213, (323,320,0): 154, 176, 217, (323,321,0): 151, 173, 210, (323,322,0): 149, 167, 203, (323,323,0): 145, 159, 194, (323,324,0): 142, 150, 186, (323,325,0): 139, 144, 176, (323,326,0): 138, 137, 168, (323,327,0): 139, 135, 162, (323,328,0): 135, 125, 149, (323,329,0): 121, 109, 129, (323,330,0): 106, 92, 109, (323,331,0): 99, 83, 96, (323,332,0): 94, 76, 88, (323,333,0): 87, 70, 78, (323,334,0): 86, 67, 73, (323,335,0): 87, 68, 74, (323,336,0): 81, 64, 72, (323,337,0): 80, 63, 71, (323,338,0): 79, 63, 73, (323,339,0): 79, 64, 71, (323,340,0): 77, 64, 73, (323,341,0): 77, 66, 72, (323,342,0): 78, 67, 75, (323,343,0): 78, 67, 73, (323,344,0): 79, 68, 76, (323,345,0): 81, 68, 75, (323,346,0): 85, 69, 79, (323,347,0): 89, 72, 80, (323,348,0): 95, 73, 85, (323,349,0): 99, 76, 86, (323,350,0): 103, 77, 90, (323,351,0): 102, 78, 91, (323,352,0): 105, 85, 96, (323,353,0): 104, 87, 97, (323,354,0): 107, 89, 101, (323,355,0): 110, 92, 104, (323,356,0): 112, 94, 106, (323,357,0): 112, 94, 106, (323,358,0): 112, 94, 108, (323,359,0): 112, 94, 108, (323,360,0): 119, 101, 115, (323,361,0): 121, 103, 119, (323,362,0): 123, 105, 121, (323,363,0): 124, 106, 122, (323,364,0): 125, 106, 125, (323,365,0): 124, 105, 124, (323,366,0): 122, 103, 122, (323,367,0): 121, 102, 121, (323,368,0): 124, 103, 120, (323,369,0): 125, 104, 119, (323,370,0): 126, 105, 122, (323,371,0): 128, 107, 122, (323,372,0): 129, 108, 125, (323,373,0): 130, 107, 123, (323,374,0): 130, 107, 125, (323,375,0): 130, 107, 123, (323,376,0): 132, 107, 126, (323,377,0): 130, 106, 122, (323,378,0): 130, 103, 122, (323,379,0): 128, 101, 118, (323,380,0): 126, 99, 118, (323,381,0): 126, 99, 116, (323,382,0): 126, 99, 118, (323,383,0): 129, 98, 114, (323,384,0): 132, 98, 114, (323,385,0): 136, 100, 112, (323,386,0): 138, 102, 116, (323,387,0): 138, 102, 114, (323,388,0): 135, 97, 108, (323,389,0): 127, 90, 98, (323,390,0): 119, 79, 88, (323,391,0): 112, 72, 80, (323,392,0): 96, 55, 61, (323,393,0): 93, 52, 56, (323,394,0): 92, 50, 52, (323,395,0): 92, 50, 51, (323,396,0): 93, 51, 52, (323,397,0): 93, 51, 52, (323,398,0): 91, 47, 46, (323,399,0): 86, 44, 45, (323,400,0): 88, 46, 50, (323,401,0): 87, 46, 52, (323,402,0): 86, 45, 51, (323,403,0): 85, 44, 50, (323,404,0): 84, 43, 49, (323,405,0): 82, 43, 46, (323,406,0): 82, 43, 46, (323,407,0): 79, 43, 45, (323,408,0): 81, 45, 47, (323,409,0): 84, 48, 48, (323,410,0): 87, 51, 51, (323,411,0): 87, 53, 51, (323,412,0): 87, 53, 51, (323,413,0): 88, 54, 52, (323,414,0): 91, 57, 55, (323,415,0): 92, 61, 56, (323,416,0): 96, 69, 60, (323,417,0): 97, 75, 64, (323,418,0): 102, 80, 67, (323,419,0): 104, 85, 70, (323,420,0): 110, 91, 74, (323,421,0): 116, 100, 77, (323,422,0): 125, 111, 84, (323,423,0): 130, 119, 87, (323,424,0): 133, 125, 88, (323,425,0): 139, 134, 92, (323,426,0): 150, 146, 99, (323,427,0): 158, 156, 105, (323,428,0): 165, 165, 111, (323,429,0): 175, 176, 118, (323,430,0): 189, 190, 130, (323,431,0): 199, 200, 142, (323,432,0): 218, 217, 161, (323,433,0): 224, 222, 171, (323,434,0): 225, 225, 173, (323,435,0): 217, 221, 171, (323,436,0): 211, 219, 172, (323,437,0): 206, 217, 177, (323,438,0): 196, 209, 181, (323,439,0): 186, 199, 182, (323,440,0): 179, 193, 193, (323,441,0): 177, 190, 206, (323,442,0): 175, 189, 218, (323,443,0): 174, 186, 228, (323,444,0): 172, 182, 233, (323,445,0): 170, 176, 234, (323,446,0): 166, 172, 234, (323,447,0): 163, 168, 234, (323,448,0): 164, 167, 238, (323,449,0): 165, 167, 241, (323,450,0): 164, 168, 242, (323,451,0): 157, 163, 239, (323,452,0): 149, 156, 234, (323,453,0): 142, 151, 230, (323,454,0): 138, 149, 228, (323,455,0): 139, 151, 227, (323,456,0): 138, 147, 224, (323,457,0): 139, 147, 220, (323,458,0): 141, 144, 213, (323,459,0): 141, 141, 205, (323,460,0): 142, 136, 196, (323,461,0): 142, 133, 190, (323,462,0): 142, 129, 185, (323,463,0): 143, 127, 174, (323,464,0): 139, 119, 156, (323,465,0): 136, 116, 144, (323,466,0): 134, 114, 139, (323,467,0): 138, 119, 138, (323,468,0): 147, 127, 139, (323,469,0): 149, 130, 136, (323,470,0): 145, 127, 127, (323,471,0): 141, 122, 118, (323,472,0): 144, 125, 118, (323,473,0): 137, 117, 108, (323,474,0): 126, 106, 99, (323,475,0): 119, 96, 90, (323,476,0): 113, 90, 84, (323,477,0): 109, 85, 81, (323,478,0): 105, 81, 79, (323,479,0): 100, 79, 78, (323,480,0): 91, 75, 76, (323,481,0): 85, 73, 73, (323,482,0): 85, 70, 73, (323,483,0): 86, 70, 71, (323,484,0): 86, 70, 71, (323,485,0): 86, 67, 69, (323,486,0): 83, 65, 65, (323,487,0): 79, 61, 61, (323,488,0): 82, 64, 64, (323,489,0): 83, 67, 67, (323,490,0): 84, 70, 67, (323,491,0): 83, 72, 68, (323,492,0): 82, 73, 68, (323,493,0): 84, 77, 71, (323,494,0): 90, 83, 77, (323,495,0): 93, 88, 82, (323,496,0): 101, 96, 93, (323,497,0): 101, 97, 98, (323,498,0): 102, 100, 105, (323,499,0): 107, 106, 114, (323,500,0): 110, 109, 123, (323,501,0): 110, 111, 131, (323,502,0): 110, 112, 137, (323,503,0): 111, 112, 142, (323,504,0): 117, 118, 149, (323,505,0): 117, 117, 151, (323,506,0): 120, 119, 153, (323,507,0): 127, 123, 156, (323,508,0): 132, 127, 159, (323,509,0): 134, 128, 156, (323,510,0): 134, 125, 152, (323,511,0): 128, 122, 148, (323,512,0): 125, 123, 145, (323,513,0): 119, 117, 139, (323,514,0): 116, 112, 135, (323,515,0): 120, 115, 138, (323,516,0): 129, 121, 144, (323,517,0): 134, 125, 144, (323,518,0): 133, 122, 139, (323,519,0): 126, 118, 133, (323,520,0): 115, 109, 123, (323,521,0): 113, 109, 124, (323,522,0): 112, 110, 131, (323,523,0): 116, 118, 143, (323,524,0): 123, 129, 163, (323,525,0): 134, 143, 186, (323,526,0): 144, 156, 206, (323,527,0): 152, 161, 218, (323,528,0): 162, 166, 229, (323,529,0): 168, 169, 233, (323,530,0): 168, 170, 229, (323,531,0): 162, 165, 216, (323,532,0): 153, 158, 200, (323,533,0): 150, 154, 191, (323,534,0): 152, 155, 188, (323,535,0): 154, 158, 187, (323,536,0): 139, 139, 165, (323,537,0): 132, 130, 152, (323,538,0): 121, 116, 136, (323,539,0): 113, 105, 120, (323,540,0): 107, 97, 105, (323,541,0): 103, 91, 93, (323,542,0): 100, 86, 85, (323,543,0): 100, 82, 78, (323,544,0): 95, 71, 71, (323,545,0): 91, 62, 64, (323,546,0): 78, 52, 55, (323,547,0): 70, 44, 47, (323,548,0): 65, 40, 43, (323,549,0): 64, 39, 42, (323,550,0): 61, 39, 42, (323,551,0): 58, 38, 40, (323,552,0): 56, 35, 40, (323,553,0): 54, 35, 39, (323,554,0): 52, 36, 39, (323,555,0): 51, 35, 38, (323,556,0): 49, 34, 39, (323,557,0): 48, 33, 38, (323,558,0): 46, 34, 38, (323,559,0): 47, 32, 37, (323,560,0): 52, 35, 41, (323,561,0): 54, 37, 43, (323,562,0): 60, 41, 47, (323,563,0): 63, 46, 52, (323,564,0): 70, 53, 59, (323,565,0): 79, 64, 69, (323,566,0): 91, 76, 81, (323,567,0): 97, 85, 89, (323,568,0): 96, 84, 88, (323,569,0): 101, 90, 94, (323,570,0): 108, 97, 101, (323,571,0): 115, 104, 108, (323,572,0): 118, 109, 112, (323,573,0): 117, 108, 111, (323,574,0): 114, 105, 108, (323,575,0): 113, 103, 104, (323,576,0): 109, 97, 97, (323,577,0): 102, 88, 88, (323,578,0): 90, 76, 76, (323,579,0): 80, 66, 66, (323,580,0): 73, 59, 59, (323,581,0): 67, 53, 53, (323,582,0): 60, 46, 46, (323,583,0): 56, 42, 42, (323,584,0): 54, 40, 40, (323,585,0): 54, 40, 40, (323,586,0): 53, 39, 39, (323,587,0): 52, 38, 38, (323,588,0): 52, 38, 38, (323,589,0): 53, 39, 39, (323,590,0): 54, 40, 40, (323,591,0): 52, 40, 40, (323,592,0): 52, 40, 40, (323,593,0): 52, 42, 41, (323,594,0): 53, 43, 42, (323,595,0): 54, 44, 43, (323,596,0): 55, 45, 44, (323,597,0): 54, 44, 43, (323,598,0): 53, 43, 42, (323,599,0): 53, 43, 42, (324,0,0): 62, 52, 53, (324,1,0): 62, 52, 53, (324,2,0): 62, 52, 53, (324,3,0): 62, 52, 53, (324,4,0): 62, 52, 53, (324,5,0): 62, 52, 53, (324,6,0): 62, 52, 53, (324,7,0): 62, 52, 53, (324,8,0): 63, 53, 54, (324,9,0): 63, 53, 54, (324,10,0): 63, 53, 54, (324,11,0): 62, 52, 53, (324,12,0): 62, 52, 53, (324,13,0): 61, 51, 52, (324,14,0): 61, 51, 52, (324,15,0): 60, 50, 51, (324,16,0): 62, 50, 52, (324,17,0): 61, 49, 51, (324,18,0): 62, 47, 50, (324,19,0): 60, 45, 48, (324,20,0): 60, 45, 48, (324,21,0): 60, 45, 48, (324,22,0): 62, 46, 49, (324,23,0): 62, 46, 49, (324,24,0): 65, 46, 50, (324,25,0): 65, 46, 50, (324,26,0): 65, 46, 50, (324,27,0): 65, 46, 50, (324,28,0): 66, 45, 50, (324,29,0): 66, 45, 50, (324,30,0): 66, 45, 50, (324,31,0): 66, 45, 50, (324,32,0): 65, 42, 50, (324,33,0): 67, 44, 52, (324,34,0): 72, 47, 53, (324,35,0): 74, 47, 52, (324,36,0): 76, 47, 52, (324,37,0): 79, 49, 51, (324,38,0): 87, 53, 54, (324,39,0): 92, 57, 55, (324,40,0): 98, 58, 56, (324,41,0): 103, 62, 56, (324,42,0): 110, 65, 59, (324,43,0): 114, 67, 57, (324,44,0): 115, 67, 55, (324,45,0): 117, 68, 54, (324,46,0): 119, 70, 56, (324,47,0): 121, 72, 58, (324,48,0): 122, 70, 59, (324,49,0): 123, 73, 62, (324,50,0): 126, 77, 63, (324,51,0): 126, 77, 62, (324,52,0): 124, 75, 58, (324,53,0): 124, 75, 58, (324,54,0): 129, 78, 59, (324,55,0): 133, 80, 62, (324,56,0): 138, 83, 63, (324,57,0): 143, 85, 63, (324,58,0): 151, 91, 65, (324,59,0): 162, 99, 66, (324,60,0): 171, 108, 65, (324,61,0): 182, 116, 66, (324,62,0): 188, 121, 66, (324,63,0): 191, 126, 68, (324,64,0): 184, 124, 62, (324,65,0): 182, 127, 63, (324,66,0): 184, 129, 65, (324,67,0): 186, 132, 68, (324,68,0): 189, 135, 71, (324,69,0): 190, 139, 74, (324,70,0): 190, 142, 76, (324,71,0): 189, 144, 76, (324,72,0): 191, 148, 79, (324,73,0): 189, 149, 79, (324,74,0): 189, 151, 80, (324,75,0): 189, 153, 79, (324,76,0): 189, 155, 81, (324,77,0): 189, 157, 82, (324,78,0): 190, 158, 83, (324,79,0): 190, 158, 81, (324,80,0): 192, 161, 81, (324,81,0): 191, 160, 80, (324,82,0): 190, 159, 79, (324,83,0): 190, 159, 77, (324,84,0): 190, 159, 77, (324,85,0): 191, 160, 77, (324,86,0): 193, 163, 77, (324,87,0): 194, 164, 76, (324,88,0): 196, 166, 78, (324,89,0): 197, 167, 77, (324,90,0): 201, 170, 79, (324,91,0): 203, 174, 80, (324,92,0): 206, 175, 82, (324,93,0): 208, 178, 82, (324,94,0): 208, 177, 84, (324,95,0): 207, 179, 82, (324,96,0): 205, 180, 80, (324,97,0): 205, 180, 79, (324,98,0): 206, 181, 81, (324,99,0): 205, 181, 83, (324,100,0): 205, 181, 85, (324,101,0): 202, 179, 85, (324,102,0): 199, 178, 85, (324,103,0): 197, 178, 86, (324,104,0): 198, 179, 87, (324,105,0): 196, 179, 87, (324,106,0): 196, 181, 88, (324,107,0): 197, 184, 88, (324,108,0): 199, 186, 90, (324,109,0): 200, 188, 90, (324,110,0): 201, 189, 91, (324,111,0): 202, 190, 90, (324,112,0): 206, 191, 90, (324,113,0): 208, 190, 88, (324,114,0): 208, 190, 90, (324,115,0): 206, 191, 88, (324,116,0): 207, 192, 91, (324,117,0): 207, 192, 89, (324,118,0): 208, 193, 92, (324,119,0): 208, 195, 91, (324,120,0): 213, 200, 98, (324,121,0): 212, 201, 96, (324,122,0): 211, 199, 97, (324,123,0): 211, 200, 95, (324,124,0): 212, 200, 98, (324,125,0): 211, 202, 97, (324,126,0): 213, 204, 101, (324,127,0): 216, 204, 102, (324,128,0): 213, 198, 97, (324,129,0): 214, 196, 98, (324,130,0): 212, 191, 98, (324,131,0): 205, 184, 95, (324,132,0): 193, 171, 88, (324,133,0): 179, 156, 80, (324,134,0): 165, 141, 71, (324,135,0): 156, 131, 67, (324,136,0): 151, 125, 66, (324,137,0): 149, 124, 67, (324,138,0): 148, 121, 66, (324,139,0): 145, 120, 64, (324,140,0): 144, 117, 62, (324,141,0): 139, 114, 58, (324,142,0): 135, 110, 53, (324,143,0): 131, 108, 54, (324,144,0): 139, 117, 68, (324,145,0): 139, 118, 71, (324,146,0): 138, 120, 70, (324,147,0): 139, 124, 69, (324,148,0): 143, 126, 72, (324,149,0): 145, 128, 72, (324,150,0): 148, 128, 75, (324,151,0): 151, 128, 76, (324,152,0): 155, 129, 80, (324,153,0): 155, 127, 77, (324,154,0): 156, 129, 76, (324,155,0): 159, 134, 77, (324,156,0): 159, 140, 74, (324,157,0): 166, 152, 79, (324,158,0): 185, 176, 97, (324,159,0): 209, 199, 114, (324,160,0): 234, 217, 129, (324,161,0): 245, 224, 133, (324,162,0): 251, 230, 139, (324,163,0): 249, 228, 137, (324,164,0): 249, 228, 137, (324,165,0): 253, 232, 141, (324,166,0): 254, 233, 142, (324,167,0): 251, 230, 139, (324,168,0): 254, 233, 142, (324,169,0): 253, 232, 141, (324,170,0): 252, 231, 140, (324,171,0): 252, 231, 140, (324,172,0): 252, 231, 140, (324,173,0): 252, 231, 140, (324,174,0): 253, 232, 141, (324,175,0): 253, 234, 142, (324,176,0): 251, 236, 145, (324,177,0): 250, 237, 145, (324,178,0): 252, 237, 144, (324,179,0): 252, 239, 145, (324,180,0): 254, 239, 144, (324,181,0): 254, 242, 144, (324,182,0): 255, 241, 142, (324,183,0): 255, 243, 143, (324,184,0): 255, 242, 143, (324,185,0): 254, 242, 142, (324,186,0): 254, 240, 143, (324,187,0): 251, 238, 142, (324,188,0): 250, 235, 142, (324,189,0): 248, 235, 141, (324,190,0): 247, 232, 141, (324,191,0): 246, 232, 143, (324,192,0): 245, 230, 145, (324,193,0): 244, 232, 148, (324,194,0): 246, 231, 148, (324,195,0): 244, 232, 148, (324,196,0): 247, 232, 149, (324,197,0): 246, 234, 150, (324,198,0): 248, 233, 150, (324,199,0): 246, 234, 150, (324,200,0): 248, 233, 150, (324,201,0): 247, 235, 151, (324,202,0): 250, 235, 152, (324,203,0): 249, 237, 153, (324,204,0): 253, 238, 155, (324,205,0): 253, 241, 157, (324,206,0): 255, 242, 159, (324,207,0): 255, 244, 158, (324,208,0): 253, 243, 156, (324,209,0): 251, 244, 154, (324,210,0): 251, 244, 154, (324,211,0): 251, 244, 154, (324,212,0): 251, 244, 156, (324,213,0): 251, 244, 156, (324,214,0): 251, 244, 156, (324,215,0): 251, 243, 158, (324,216,0): 253, 245, 160, (324,217,0): 253, 245, 160, (324,218,0): 255, 247, 164, (324,219,0): 255, 247, 164, (324,220,0): 255, 247, 164, (324,221,0): 255, 247, 166, (324,222,0): 253, 245, 164, (324,223,0): 252, 245, 164, (324,224,0): 253, 248, 166, (324,225,0): 252, 250, 165, (324,226,0): 252, 250, 167, (324,227,0): 252, 251, 169, (324,228,0): 252, 251, 171, (324,229,0): 251, 252, 172, (324,230,0): 251, 252, 176, (324,231,0): 250, 252, 177, (324,232,0): 251, 255, 181, (324,233,0): 248, 254, 182, (324,234,0): 247, 253, 183, (324,235,0): 244, 251, 183, (324,236,0): 241, 248, 181, (324,237,0): 236, 245, 178, (324,238,0): 234, 243, 178, (324,239,0): 232, 242, 179, (324,240,0): 230, 244, 185, (324,241,0): 230, 245, 188, (324,242,0): 230, 245, 190, (324,243,0): 229, 246, 191, (324,244,0): 227, 248, 192, (324,245,0): 224, 247, 193, (324,246,0): 222, 246, 196, (324,247,0): 218, 246, 197, (324,248,0): 217, 249, 202, (324,249,0): 214, 250, 204, (324,250,0): 212, 249, 206, (324,251,0): 208, 249, 207, (324,252,0): 207, 248, 208, (324,253,0): 205, 247, 209, (324,254,0): 202, 246, 210, (324,255,0): 201, 247, 211, (324,256,0): 197, 243, 214, (324,257,0): 195, 244, 215, (324,258,0): 195, 243, 217, (324,259,0): 194, 244, 219, (324,260,0): 194, 243, 221, (324,261,0): 192, 244, 222, (324,262,0): 191, 244, 226, (324,263,0): 191, 244, 228, (324,264,0): 193, 247, 234, (324,265,0): 191, 247, 236, (324,266,0): 191, 248, 241, (324,267,0): 191, 248, 242, (324,268,0): 190, 249, 245, (324,269,0): 190, 249, 245, (324,270,0): 191, 250, 248, (324,271,0): 191, 249, 250, (324,272,0): 193, 251, 255, (324,273,0): 191, 250, 255, (324,274,0): 191, 248, 255, (324,275,0): 190, 249, 255, (324,276,0): 191, 248, 255, (324,277,0): 190, 249, 255, (324,278,0): 192, 249, 255, (324,279,0): 192, 251, 255, (324,280,0): 190, 247, 254, (324,281,0): 190, 249, 255, (324,282,0): 192, 249, 255, (324,283,0): 191, 250, 255, (324,284,0): 192, 249, 255, (324,285,0): 189, 248, 254, (324,286,0): 189, 246, 253, (324,287,0): 189, 243, 253, (324,288,0): 194, 243, 255, (324,289,0): 192, 239, 255, (324,290,0): 189, 234, 255, (324,291,0): 185, 230, 251, (324,292,0): 182, 224, 248, (324,293,0): 174, 216, 240, (324,294,0): 166, 206, 231, (324,295,0): 159, 199, 224, (324,296,0): 159, 195, 221, (324,297,0): 158, 194, 220, (324,298,0): 156, 190, 217, (324,299,0): 154, 188, 215, (324,300,0): 153, 184, 212, (324,301,0): 151, 182, 210, (324,302,0): 151, 181, 209, (324,303,0): 150, 180, 208, (324,304,0): 143, 174, 202, (324,305,0): 137, 168, 196, (324,306,0): 132, 162, 190, (324,307,0): 130, 157, 184, (324,308,0): 129, 155, 182, (324,309,0): 129, 153, 181, (324,310,0): 129, 150, 179, (324,311,0): 128, 147, 177, (324,312,0): 127, 144, 174, (324,313,0): 126, 145, 175, (324,314,0): 129, 148, 180, (324,315,0): 131, 151, 186, (324,316,0): 135, 155, 192, (324,317,0): 138, 160, 199, (324,318,0): 143, 165, 206, (324,319,0): 146, 168, 209, (324,320,0): 151, 175, 213, (324,321,0): 150, 172, 209, (324,322,0): 149, 167, 203, (324,323,0): 145, 161, 195, (324,324,0): 143, 154, 186, (324,325,0): 140, 147, 176, (324,326,0): 139, 140, 168, (324,327,0): 139, 137, 161, (324,328,0): 134, 126, 149, (324,329,0): 119, 107, 127, (324,330,0): 103, 89, 104, (324,331,0): 95, 82, 92, (324,332,0): 92, 76, 86, (324,333,0): 86, 71, 78, (324,334,0): 84, 67, 73, (324,335,0): 85, 68, 74, (324,336,0): 80, 63, 69, (324,337,0): 79, 62, 68, (324,338,0): 77, 62, 69, (324,339,0): 77, 62, 67, (324,340,0): 78, 63, 70, (324,341,0): 77, 65, 69, (324,342,0): 79, 66, 73, (324,343,0): 81, 69, 73, (324,344,0): 80, 67, 74, (324,345,0): 83, 68, 73, (324,346,0): 87, 70, 78, (324,347,0): 92, 73, 79, (324,348,0): 96, 75, 84, (324,349,0): 101, 78, 86, (324,350,0): 105, 79, 90, (324,351,0): 106, 80, 91, (324,352,0): 108, 85, 95, (324,353,0): 109, 86, 96, (324,354,0): 111, 87, 100, (324,355,0): 113, 89, 102, (324,356,0): 115, 91, 104, (324,357,0): 115, 91, 104, (324,358,0): 116, 92, 106, (324,359,0): 116, 92, 106, (324,360,0): 123, 99, 113, (324,361,0): 125, 101, 117, (324,362,0): 128, 104, 120, (324,363,0): 130, 106, 122, (324,364,0): 130, 105, 124, (324,365,0): 128, 103, 122, (324,366,0): 126, 101, 120, (324,367,0): 124, 99, 118, (324,368,0): 126, 103, 119, (324,369,0): 127, 105, 118, (324,370,0): 128, 105, 121, (324,371,0): 128, 106, 119, (324,372,0): 129, 106, 122, (324,373,0): 130, 106, 120, (324,374,0): 130, 106, 122, (324,375,0): 129, 105, 119, (324,376,0): 130, 103, 120, (324,377,0): 129, 102, 117, (324,378,0): 128, 99, 117, (324,379,0): 126, 98, 113, (324,380,0): 125, 96, 114, (324,381,0): 124, 96, 111, (324,382,0): 125, 96, 114, (324,383,0): 128, 96, 111, (324,384,0): 134, 96, 111, (324,385,0): 140, 100, 111, (324,386,0): 143, 102, 116, (324,387,0): 142, 102, 113, (324,388,0): 133, 93, 104, (324,389,0): 119, 79, 88, (324,390,0): 106, 65, 73, (324,391,0): 98, 57, 63, (324,392,0): 92, 49, 56, (324,393,0): 91, 49, 53, (324,394,0): 93, 48, 51, (324,395,0): 94, 50, 51, (324,396,0): 95, 51, 52, (324,397,0): 95, 51, 50, (324,398,0): 93, 47, 47, (324,399,0): 90, 46, 47, (324,400,0): 86, 45, 51, (324,401,0): 85, 45, 53, (324,402,0): 84, 44, 52, (324,403,0): 83, 43, 51, (324,404,0): 81, 41, 49, (324,405,0): 80, 41, 46, (324,406,0): 79, 40, 45, (324,407,0): 77, 41, 43, (324,408,0): 75, 39, 41, (324,409,0): 77, 43, 42, (324,410,0): 81, 47, 46, (324,411,0): 80, 49, 47, (324,412,0): 80, 49, 47, (324,413,0): 81, 50, 48, (324,414,0): 84, 53, 51, (324,415,0): 87, 56, 53, (324,416,0): 95, 64, 59, (324,417,0): 100, 71, 63, (324,418,0): 108, 80, 69, (324,419,0): 115, 89, 74, (324,420,0): 120, 97, 79, (324,421,0): 127, 107, 83, (324,422,0): 133, 116, 86, (324,423,0): 138, 124, 89, (324,424,0): 143, 134, 91, (324,425,0): 151, 145, 97, (324,426,0): 161, 158, 105, (324,427,0): 169, 168, 111, (324,428,0): 178, 179, 119, (324,429,0): 190, 192, 129, (324,430,0): 202, 207, 141, (324,431,0): 213, 217, 156, (324,432,0): 220, 222, 172, (324,433,0): 219, 220, 176, (324,434,0): 211, 214, 171, (324,435,0): 196, 203, 162, (324,436,0): 189, 197, 160, (324,437,0): 186, 197, 167, (324,438,0): 182, 195, 177, (324,439,0): 176, 189, 182, (324,440,0): 172, 185, 193, (324,441,0): 173, 185, 207, (324,442,0): 172, 185, 220, (324,443,0): 171, 183, 231, (324,444,0): 169, 180, 236, (324,445,0): 167, 175, 238, (324,446,0): 163, 170, 238, (324,447,0): 161, 168, 240, (324,448,0): 166, 169, 246, (324,449,0): 168, 171, 252, (324,450,0): 166, 171, 252, (324,451,0): 161, 168, 249, (324,452,0): 152, 160, 241, (324,453,0): 145, 153, 234, (324,454,0): 142, 151, 230, (324,455,0): 143, 150, 228, (324,456,0): 138, 144, 218, (324,457,0): 140, 143, 212, (324,458,0): 142, 142, 206, (324,459,0): 142, 138, 197, (324,460,0): 142, 133, 188, (324,461,0): 141, 129, 179, (324,462,0): 138, 125, 171, (324,463,0): 138, 122, 161, (324,464,0): 135, 115, 142, (324,465,0): 131, 110, 129, (324,466,0): 125, 104, 119, (324,467,0): 126, 106, 117, (324,468,0): 133, 112, 117, (324,469,0): 136, 116, 117, (324,470,0): 133, 114, 108, (324,471,0): 131, 111, 104, (324,472,0): 120, 100, 91, (324,473,0): 114, 92, 81, (324,474,0): 104, 81, 73, (324,475,0): 97, 72, 65, (324,476,0): 94, 69, 64, (324,477,0): 92, 67, 63, (324,478,0): 90, 64, 63, (324,479,0): 88, 64, 62, (324,480,0): 87, 72, 67, (324,481,0): 84, 71, 65, (324,482,0): 84, 69, 66, (324,483,0): 85, 70, 67, (324,484,0): 88, 70, 68, (324,485,0): 87, 67, 66, (324,486,0): 83, 63, 62, (324,487,0): 79, 61, 59, (324,488,0): 74, 56, 54, (324,489,0): 73, 58, 55, (324,490,0): 72, 58, 55, (324,491,0): 71, 60, 56, (324,492,0): 71, 62, 57, (324,493,0): 73, 66, 60, (324,494,0): 79, 72, 66, (324,495,0): 84, 76, 73, (324,496,0): 90, 80, 78, (324,497,0): 91, 83, 81, (324,498,0): 93, 84, 85, (324,499,0): 93, 87, 91, (324,500,0): 94, 88, 98, (324,501,0): 96, 92, 106, (324,502,0): 98, 94, 111, (324,503,0): 98, 95, 114, (324,504,0): 107, 104, 125, (324,505,0): 108, 103, 126, (324,506,0): 110, 105, 128, (324,507,0): 117, 109, 133, (324,508,0): 123, 113, 137, (324,509,0): 127, 115, 139, (324,510,0): 125, 113, 135, (324,511,0): 123, 111, 133, (324,512,0): 117, 112, 132, (324,513,0): 113, 108, 128, (324,514,0): 113, 105, 126, (324,515,0): 118, 109, 130, (324,516,0): 128, 116, 136, (324,517,0): 132, 121, 138, (324,518,0): 132, 119, 136, (324,519,0): 129, 117, 131, (324,520,0): 118, 108, 119, (324,521,0): 115, 107, 120, (324,522,0): 113, 109, 126, (324,523,0): 114, 112, 134, (324,524,0): 119, 120, 151, (324,525,0): 129, 133, 171, (324,526,0): 140, 147, 193, (324,527,0): 149, 155, 207, (324,528,0): 160, 160, 220, (324,529,0): 164, 164, 224, (324,530,0): 167, 168, 224, (324,531,0): 164, 166, 215, (324,532,0): 156, 159, 200, (324,533,0): 150, 154, 189, (324,534,0): 153, 156, 187, (324,535,0): 159, 163, 190, (324,536,0): 148, 148, 172, (324,537,0): 141, 139, 160, (324,538,0): 131, 127, 144, (324,539,0): 122, 114, 127, (324,540,0): 117, 108, 113, (324,541,0): 113, 101, 101, (324,542,0): 110, 97, 91, (324,543,0): 110, 93, 86, (324,544,0): 105, 81, 79, (324,545,0): 99, 70, 72, (324,546,0): 84, 58, 61, (324,547,0): 73, 47, 50, (324,548,0): 67, 42, 45, (324,549,0): 65, 40, 43, (324,550,0): 62, 40, 43, (324,551,0): 60, 40, 42, (324,552,0): 57, 36, 41, (324,553,0): 55, 36, 40, (324,554,0): 52, 36, 39, (324,555,0): 51, 35, 38, (324,556,0): 49, 34, 39, (324,557,0): 48, 33, 38, (324,558,0): 45, 33, 37, (324,559,0): 46, 31, 36, (324,560,0): 50, 31, 35, (324,561,0): 53, 34, 38, (324,562,0): 58, 37, 42, (324,563,0): 61, 42, 46, (324,564,0): 66, 47, 51, (324,565,0): 73, 57, 60, (324,566,0): 84, 68, 71, (324,567,0): 93, 77, 80, (324,568,0): 97, 81, 84, (324,569,0): 101, 86, 89, (324,570,0): 108, 93, 96, (324,571,0): 112, 100, 102, (324,572,0): 115, 103, 105, (324,573,0): 115, 103, 105, (324,574,0): 111, 101, 102, (324,575,0): 110, 98, 100, (324,576,0): 104, 90, 90, (324,577,0): 97, 83, 83, (324,578,0): 86, 72, 72, (324,579,0): 77, 63, 63, (324,580,0): 70, 56, 56, (324,581,0): 65, 51, 51, (324,582,0): 60, 46, 46, (324,583,0): 57, 43, 43, (324,584,0): 57, 43, 43, (324,585,0): 56, 42, 42, (324,586,0): 55, 41, 41, (324,587,0): 54, 40, 40, (324,588,0): 54, 40, 40, (324,589,0): 55, 41, 41, (324,590,0): 56, 42, 42, (324,591,0): 55, 43, 43, (324,592,0): 54, 42, 42, (324,593,0): 54, 44, 43, (324,594,0): 55, 45, 44, (324,595,0): 56, 46, 45, (324,596,0): 56, 46, 45, (324,597,0): 56, 46, 45, (324,598,0): 55, 45, 44, (324,599,0): 54, 44, 43, (325,0,0): 63, 53, 54, (325,1,0): 63, 53, 54, (325,2,0): 63, 53, 54, (325,3,0): 63, 53, 54, (325,4,0): 63, 53, 54, (325,5,0): 63, 53, 54, (325,6,0): 63, 53, 54, (325,7,0): 63, 53, 54, (325,8,0): 64, 54, 55, (325,9,0): 63, 53, 54, (325,10,0): 63, 53, 54, (325,11,0): 63, 53, 54, (325,12,0): 62, 52, 53, (325,13,0): 61, 51, 52, (325,14,0): 61, 51, 52, (325,15,0): 61, 51, 52, (325,16,0): 62, 50, 52, (325,17,0): 61, 49, 51, (325,18,0): 62, 47, 50, (325,19,0): 60, 45, 48, (325,20,0): 60, 45, 48, (325,21,0): 60, 45, 48, (325,22,0): 62, 46, 49, (325,23,0): 62, 46, 49, (325,24,0): 65, 46, 50, (325,25,0): 65, 46, 50, (325,26,0): 65, 46, 50, (325,27,0): 65, 46, 50, (325,28,0): 66, 45, 50, (325,29,0): 66, 45, 50, (325,30,0): 66, 45, 50, (325,31,0): 66, 45, 50, (325,32,0): 65, 42, 50, (325,33,0): 67, 44, 52, (325,34,0): 71, 46, 52, (325,35,0): 72, 47, 51, (325,36,0): 73, 46, 51, (325,37,0): 77, 48, 50, (325,38,0): 83, 51, 52, (325,39,0): 89, 55, 53, (325,40,0): 94, 56, 53, (325,41,0): 99, 60, 55, (325,42,0): 106, 63, 56, (325,43,0): 110, 66, 57, (325,44,0): 112, 65, 55, (325,45,0): 113, 67, 54, (325,46,0): 116, 68, 56, (325,47,0): 119, 71, 59, (325,48,0): 120, 70, 61, (325,49,0): 123, 73, 64, (325,50,0): 126, 76, 65, (325,51,0): 126, 77, 62, (325,52,0): 124, 75, 58, (325,53,0): 124, 76, 56, (325,54,0): 129, 78, 59, (325,55,0): 133, 81, 60, (325,56,0): 137, 82, 61, (325,57,0): 141, 83, 61, (325,58,0): 148, 88, 60, (325,59,0): 158, 95, 62, (325,60,0): 168, 105, 62, (325,61,0): 179, 115, 67, (325,62,0): 189, 124, 70, (325,63,0): 192, 130, 69, (325,64,0): 187, 129, 65, (325,65,0): 186, 133, 65, (325,66,0): 188, 135, 67, (325,67,0): 189, 139, 70, (325,68,0): 192, 142, 73, (325,69,0): 193, 144, 75, (325,70,0): 195, 148, 78, (325,71,0): 193, 151, 79, (325,72,0): 192, 150, 78, (325,73,0): 189, 151, 78, (325,74,0): 190, 152, 79, (325,75,0): 190, 154, 80, (325,76,0): 190, 156, 82, (325,77,0): 190, 158, 83, (325,78,0): 191, 159, 84, (325,79,0): 192, 160, 83, (325,80,0): 194, 162, 85, (325,81,0): 193, 162, 82, (325,82,0): 192, 161, 81, (325,83,0): 192, 161, 81, (325,84,0): 192, 161, 79, (325,85,0): 193, 162, 80, (325,86,0): 194, 163, 80, (325,87,0): 195, 165, 79, (325,88,0): 198, 168, 82, (325,89,0): 200, 170, 82, (325,90,0): 202, 172, 82, (325,91,0): 204, 175, 83, (325,92,0): 205, 176, 84, (325,93,0): 206, 177, 83, (325,94,0): 206, 177, 85, (325,95,0): 204, 178, 83, (325,96,0): 203, 179, 81, (325,97,0): 203, 181, 82, (325,98,0): 205, 181, 85, (325,99,0): 204, 181, 85, (325,100,0): 203, 180, 86, (325,101,0): 200, 179, 86, (325,102,0): 198, 179, 87, (325,103,0): 195, 178, 86, (325,104,0): 196, 179, 89, (325,105,0): 196, 181, 90, (325,106,0): 196, 183, 91, (325,107,0): 195, 185, 90, (325,108,0): 197, 187, 92, (325,109,0): 198, 189, 94, (325,110,0): 200, 190, 95, (325,111,0): 200, 190, 93, (325,112,0): 205, 191, 94, (325,113,0): 206, 190, 92, (325,114,0): 205, 189, 91, (325,115,0): 204, 190, 91, (325,116,0): 205, 189, 91, (325,117,0): 206, 192, 93, (325,118,0): 207, 193, 94, (325,119,0): 207, 195, 95, (325,120,0): 211, 199, 99, (325,121,0): 209, 200, 99, (325,122,0): 209, 200, 99, (325,123,0): 210, 201, 100, (325,124,0): 211, 202, 101, (325,125,0): 211, 203, 102, (325,126,0): 214, 205, 104, (325,127,0): 214, 205, 102, (325,128,0): 213, 198, 95, (325,129,0): 215, 197, 97, (325,130,0): 213, 194, 99, (325,131,0): 208, 187, 96, (325,132,0): 197, 175, 90, (325,133,0): 185, 162, 84, (325,134,0): 172, 148, 76, (325,135,0): 165, 140, 74, (325,136,0): 154, 128, 67, (325,137,0): 152, 126, 69, (325,138,0): 148, 121, 66, (325,139,0): 145, 118, 63, (325,140,0): 143, 116, 61, (325,141,0): 139, 112, 57, (325,142,0): 133, 108, 54, (325,143,0): 130, 104, 53, (325,144,0): 137, 113, 67, (325,145,0): 137, 115, 68, (325,146,0): 138, 118, 68, (325,147,0): 139, 122, 70, (325,148,0): 142, 125, 71, (325,149,0): 145, 128, 72, (325,150,0): 150, 129, 76, (325,151,0): 152, 129, 77, (325,152,0): 154, 128, 79, (325,153,0): 153, 125, 75, (325,154,0): 154, 127, 74, (325,155,0): 156, 131, 74, (325,156,0): 157, 137, 74, (325,157,0): 165, 151, 80, (325,158,0): 186, 177, 100, (325,159,0): 211, 201, 116, (325,160,0): 234, 218, 130, (325,161,0): 246, 227, 135, (325,162,0): 252, 233, 141, (325,163,0): 250, 231, 139, (325,164,0): 250, 231, 139, (325,165,0): 254, 235, 143, (325,166,0): 255, 236, 144, (325,167,0): 252, 233, 141, (325,168,0): 254, 235, 143, (325,169,0): 254, 235, 143, (325,170,0): 253, 234, 142, (325,171,0): 252, 233, 141, (325,172,0): 252, 233, 141, (325,173,0): 253, 234, 142, (325,174,0): 254, 235, 143, (325,175,0): 252, 235, 143, (325,176,0): 253, 238, 147, (325,177,0): 253, 240, 148, (325,178,0): 253, 240, 146, (325,179,0): 254, 241, 145, (325,180,0): 254, 241, 145, (325,181,0): 255, 243, 145, (325,182,0): 255, 243, 143, (325,183,0): 255, 243, 143, (325,184,0): 255, 244, 144, (325,185,0): 255, 243, 143, (325,186,0): 254, 242, 144, (325,187,0): 252, 240, 142, (325,188,0): 250, 237, 143, (325,189,0): 248, 235, 141, (325,190,0): 246, 233, 141, (325,191,0): 243, 232, 142, (325,192,0): 243, 231, 145, (325,193,0): 242, 232, 147, (325,194,0): 243, 231, 147, (325,195,0): 243, 233, 148, (325,196,0): 244, 232, 148, (325,197,0): 244, 234, 149, (325,198,0): 245, 233, 149, (325,199,0): 245, 235, 150, (325,200,0): 247, 235, 151, (325,201,0): 246, 236, 151, (325,202,0): 247, 235, 151, (325,203,0): 247, 237, 152, (325,204,0): 249, 237, 153, (325,205,0): 250, 240, 155, (325,206,0): 253, 241, 157, (325,207,0): 253, 243, 158, (325,208,0): 250, 243, 153, (325,209,0): 250, 243, 153, (325,210,0): 250, 243, 153, (325,211,0): 250, 243, 153, (325,212,0): 250, 243, 155, (325,213,0): 250, 243, 155, (325,214,0): 250, 243, 155, (325,215,0): 250, 243, 155, (325,216,0): 253, 245, 160, (325,217,0): 253, 245, 160, (325,218,0): 255, 247, 164, (325,219,0): 255, 247, 164, (325,220,0): 255, 247, 164, (325,221,0): 255, 247, 164, (325,222,0): 253, 245, 164, (325,223,0): 252, 245, 164, (325,224,0): 254, 248, 164, (325,225,0): 253, 248, 164, (325,226,0): 253, 248, 166, (325,227,0): 252, 250, 167, (325,228,0): 252, 249, 170, (325,229,0): 252, 251, 171, (325,230,0): 252, 250, 175, (325,231,0): 250, 251, 175, (325,232,0): 252, 254, 181, (325,233,0): 251, 255, 181, (325,234,0): 250, 253, 184, (325,235,0): 247, 253, 183, (325,236,0): 244, 249, 183, (325,237,0): 240, 247, 180, (325,238,0): 238, 244, 180, (325,239,0): 233, 243, 180, (325,240,0): 231, 242, 184, (325,241,0): 230, 243, 189, (325,242,0): 230, 243, 189, (325,243,0): 228, 245, 191, (325,244,0): 226, 244, 192, (325,245,0): 222, 245, 193, (325,246,0): 220, 244, 196, (325,247,0): 216, 244, 196, (325,248,0): 214, 245, 201, (325,249,0): 210, 246, 202, (325,250,0): 209, 246, 205, (325,251,0): 205, 246, 206, (325,252,0): 204, 244, 207, (325,253,0): 200, 244, 208, (325,254,0): 199, 243, 207, (325,255,0): 197, 242, 209, (325,256,0): 195, 241, 212, (325,257,0): 193, 242, 213, (325,258,0): 193, 241, 215, (325,259,0): 193, 241, 215, (325,260,0): 192, 242, 217, (325,261,0): 192, 241, 219, (325,262,0): 190, 241, 222, (325,263,0): 189, 242, 224, (325,264,0): 191, 245, 231, (325,265,0): 191, 245, 232, (325,266,0): 190, 246, 237, (325,267,0): 189, 246, 239, (325,268,0): 190, 247, 241, (325,269,0): 188, 247, 243, (325,270,0): 189, 248, 246, (325,271,0): 189, 247, 248, (325,272,0): 189, 248, 254, (325,273,0): 188, 247, 255, (325,274,0): 187, 246, 254, (325,275,0): 186, 245, 253, (325,276,0): 186, 245, 253, (325,277,0): 187, 246, 254, (325,278,0): 188, 246, 255, (325,279,0): 189, 247, 255, (325,280,0): 185, 243, 254, (325,281,0): 186, 244, 255, (325,282,0): 188, 246, 255, (325,283,0): 189, 247, 255, (325,284,0): 188, 246, 255, (325,285,0): 186, 244, 255, (325,286,0): 184, 242, 253, (325,287,0): 183, 239, 252, (325,288,0): 191, 239, 255, (325,289,0): 189, 235, 255, (325,290,0): 187, 231, 255, (325,291,0): 184, 229, 252, (325,292,0): 182, 224, 249, (325,293,0): 175, 217, 241, (325,294,0): 167, 207, 233, (325,295,0): 160, 200, 225, (325,296,0): 160, 196, 222, (325,297,0): 158, 194, 220, (325,298,0): 156, 190, 217, (325,299,0): 152, 186, 213, (325,300,0): 151, 182, 210, (325,301,0): 149, 180, 208, (325,302,0): 149, 179, 207, (325,303,0): 148, 178, 206, (325,304,0): 141, 171, 199, (325,305,0): 136, 166, 192, (325,306,0): 131, 158, 185, (325,307,0): 128, 154, 179, (325,308,0): 128, 152, 178, (325,309,0): 129, 151, 175, (325,310,0): 128, 148, 173, (325,311,0): 128, 145, 171, (325,312,0): 122, 139, 165, (325,313,0): 124, 141, 169, (325,314,0): 127, 144, 174, (325,315,0): 127, 146, 178, (325,316,0): 130, 149, 182, (325,317,0): 135, 155, 190, (325,318,0): 141, 161, 198, (325,319,0): 144, 166, 203, (325,320,0): 148, 172, 208, (325,321,0): 148, 170, 207, (325,322,0): 147, 167, 202, (325,323,0): 145, 161, 195, (325,324,0): 144, 155, 187, (325,325,0): 141, 148, 177, (325,326,0): 140, 141, 169, (325,327,0): 140, 138, 162, (325,328,0): 133, 125, 148, (325,329,0): 117, 105, 125, (325,330,0): 100, 88, 102, (325,331,0): 93, 80, 90, (325,332,0): 92, 76, 86, (325,333,0): 87, 72, 77, (325,334,0): 84, 68, 71, (325,335,0): 84, 68, 71, (325,336,0): 79, 63, 66, (325,337,0): 78, 62, 65, (325,338,0): 76, 59, 65, (325,339,0): 75, 60, 63, (325,340,0): 77, 60, 66, (325,341,0): 78, 63, 66, (325,342,0): 81, 66, 71, (325,343,0): 83, 68, 71, (325,344,0): 83, 66, 72, (325,345,0): 84, 68, 71, (325,346,0): 89, 70, 76, (325,347,0): 94, 73, 78, (325,348,0): 98, 75, 83, (325,349,0): 102, 79, 85, (325,350,0): 107, 81, 90, (325,351,0): 108, 82, 91, (325,352,0): 113, 86, 95, (325,353,0): 113, 86, 95, (325,354,0): 114, 87, 96, (325,355,0): 116, 89, 98, (325,356,0): 117, 89, 101, (325,357,0): 118, 90, 102, (325,358,0): 118, 90, 102, (325,359,0): 119, 91, 105, (325,360,0): 125, 97, 111, (325,361,0): 127, 99, 113, (325,362,0): 131, 103, 118, (325,363,0): 134, 106, 121, (325,364,0): 134, 106, 121, (325,365,0): 133, 104, 122, (325,366,0): 130, 101, 119, (325,367,0): 128, 99, 117, (325,368,0): 130, 103, 118, (325,369,0): 129, 103, 116, (325,370,0): 128, 102, 115, (325,371,0): 128, 102, 115, (325,372,0): 127, 101, 114, (325,373,0): 127, 101, 114, (325,374,0): 128, 100, 114, (325,375,0): 128, 100, 114, (325,376,0): 128, 97, 112, (325,377,0): 127, 96, 111, (325,378,0): 127, 95, 110, (325,379,0): 126, 94, 109, (325,380,0): 126, 94, 109, (325,381,0): 126, 94, 109, (325,382,0): 127, 95, 110, (325,383,0): 128, 94, 108, (325,384,0): 136, 96, 107, (325,385,0): 140, 97, 107, (325,386,0): 141, 98, 108, (325,387,0): 136, 93, 103, (325,388,0): 125, 82, 92, (325,389,0): 110, 67, 76, (325,390,0): 100, 55, 62, (325,391,0): 93, 48, 53, (325,392,0): 95, 50, 55, (325,393,0): 96, 50, 53, (325,394,0): 95, 49, 51, (325,395,0): 95, 49, 51, (325,396,0): 95, 49, 49, (325,397,0): 94, 48, 48, (325,398,0): 94, 46, 46, (325,399,0): 90, 46, 47, (325,400,0): 85, 44, 50, (325,401,0): 83, 43, 51, (325,402,0): 82, 42, 50, (325,403,0): 80, 40, 48, (325,404,0): 79, 39, 47, (325,405,0): 75, 38, 45, (325,406,0): 74, 38, 42, (325,407,0): 74, 38, 42, (325,408,0): 70, 36, 37, (325,409,0): 73, 39, 40, (325,410,0): 74, 42, 43, (325,411,0): 76, 45, 43, (325,412,0): 75, 44, 42, (325,413,0): 77, 46, 44, (325,414,0): 80, 49, 47, (325,415,0): 83, 52, 49, (325,416,0): 94, 61, 56, (325,417,0): 101, 68, 59, (325,418,0): 112, 80, 69, (325,419,0): 121, 92, 78, (325,420,0): 129, 102, 83, (325,421,0): 135, 113, 89, (325,422,0): 142, 123, 91, (325,423,0): 145, 131, 94, (325,424,0): 153, 142, 97, (325,425,0): 162, 156, 106, (325,426,0): 175, 172, 119, (325,427,0): 187, 186, 129, (325,428,0): 193, 194, 134, (325,429,0): 198, 203, 139, (325,430,0): 206, 213, 146, (325,431,0): 212, 218, 158, (325,432,0): 209, 215, 171, (325,433,0): 206, 212, 176, (325,434,0): 194, 201, 167, (325,435,0): 178, 187, 156, (325,436,0): 171, 181, 156, (325,437,0): 172, 184, 164, (325,438,0): 172, 185, 176, (325,439,0): 168, 182, 185, (325,440,0): 167, 180, 196, (325,441,0): 170, 181, 209, (325,442,0): 172, 184, 226, (325,443,0): 172, 184, 236, (325,444,0): 169, 179, 240, (325,445,0): 166, 175, 242, (325,446,0): 164, 171, 243, (325,447,0): 163, 169, 245, (325,448,0): 167, 172, 254, (325,449,0): 168, 173, 255, (325,450,0): 166, 172, 255, (325,451,0): 163, 169, 255, (325,452,0): 157, 163, 247, (325,453,0): 151, 158, 239, (325,454,0): 147, 152, 233, (325,455,0): 147, 150, 227, (325,456,0): 141, 141, 213, (325,457,0): 143, 141, 206, (325,458,0): 144, 138, 198, (325,459,0): 144, 135, 188, (325,460,0): 142, 130, 178, (325,461,0): 139, 124, 167, (325,462,0): 135, 117, 157, (325,463,0): 134, 115, 145, (325,464,0): 133, 112, 131, (325,465,0): 130, 108, 120, (325,466,0): 125, 104, 113, (325,467,0): 125, 104, 109, (325,468,0): 127, 105, 107, (325,469,0): 127, 106, 103, (325,470,0): 124, 104, 97, (325,471,0): 120, 100, 91, (325,472,0): 105, 82, 74, (325,473,0): 99, 76, 68, (325,474,0): 92, 67, 60, (325,475,0): 87, 62, 55, (325,476,0): 86, 61, 57, (325,477,0): 87, 62, 58, (325,478,0): 87, 61, 60, (325,479,0): 85, 61, 59, (325,480,0): 85, 68, 61, (325,481,0): 82, 68, 59, (325,482,0): 81, 67, 58, (325,483,0): 85, 68, 60, (325,484,0): 88, 69, 63, (325,485,0): 87, 68, 62, (325,486,0): 83, 64, 58, (325,487,0): 79, 60, 56, (325,488,0): 75, 56, 52, (325,489,0): 73, 55, 53, (325,490,0): 70, 55, 52, (325,491,0): 68, 54, 51, (325,492,0): 68, 57, 53, (325,493,0): 70, 61, 56, (325,494,0): 75, 65, 63, (325,495,0): 79, 69, 67, (325,496,0): 83, 72, 68, (325,497,0): 89, 78, 76, (325,498,0): 91, 79, 79, (325,499,0): 88, 78, 79, (325,500,0): 88, 79, 84, (325,501,0): 93, 83, 91, (325,502,0): 94, 86, 97, (325,503,0): 94, 86, 99, (325,504,0): 100, 92, 107, (325,505,0): 99, 90, 107, (325,506,0): 102, 91, 108, (325,507,0): 106, 95, 112, (325,508,0): 111, 98, 116, (325,509,0): 114, 99, 118, (325,510,0): 113, 98, 117, (325,511,0): 109, 96, 114, (325,512,0): 106, 97, 114, (325,513,0): 103, 96, 112, (325,514,0): 106, 95, 112, (325,515,0): 110, 99, 116, (325,516,0): 116, 103, 121, (325,517,0): 123, 109, 126, (325,518,0): 127, 111, 124, (325,519,0): 126, 113, 123, (325,520,0): 119, 106, 116, (325,521,0): 117, 105, 115, (325,522,0): 114, 106, 121, (325,523,0): 112, 107, 127, (325,524,0): 116, 113, 140, (325,525,0): 125, 124, 158, (325,526,0): 135, 137, 178, (325,527,0): 145, 146, 194, (325,528,0): 153, 150, 205, (325,529,0): 156, 153, 210, (325,530,0): 161, 159, 209, (325,531,0): 161, 162, 206, (325,532,0): 155, 157, 195, (325,533,0): 150, 153, 186, (325,534,0): 153, 157, 186, (325,535,0): 161, 165, 190, (325,536,0): 155, 155, 179, (325,537,0): 149, 147, 168, (325,538,0): 139, 135, 150, (325,539,0): 132, 124, 135, (325,540,0): 127, 118, 123, (325,541,0): 123, 111, 111, (325,542,0): 120, 105, 100, (325,543,0): 119, 100, 94, (325,544,0): 117, 91, 90, (325,545,0): 108, 79, 81, (325,546,0): 90, 64, 67, (325,547,0): 77, 51, 54, (325,548,0): 68, 43, 46, (325,549,0): 65, 40, 43, (325,550,0): 62, 40, 43, (325,551,0): 60, 40, 42, (325,552,0): 57, 36, 41, (325,553,0): 56, 37, 41, (325,554,0): 53, 37, 40, (325,555,0): 51, 35, 38, (325,556,0): 49, 34, 39, (325,557,0): 47, 32, 37, (325,558,0): 44, 32, 36, (325,559,0): 46, 31, 36, (325,560,0): 48, 29, 33, (325,561,0): 53, 34, 38, (325,562,0): 58, 37, 42, (325,563,0): 60, 41, 45, (325,564,0): 62, 43, 47, (325,565,0): 69, 50, 54, (325,566,0): 79, 60, 64, (325,567,0): 88, 69, 73, (325,568,0): 95, 79, 82, (325,569,0): 98, 82, 85, (325,570,0): 101, 86, 89, (325,571,0): 105, 90, 93, (325,572,0): 107, 92, 95, (325,573,0): 106, 91, 94, (325,574,0): 103, 91, 93, (325,575,0): 101, 89, 91, (325,576,0): 95, 81, 81, (325,577,0): 91, 77, 77, (325,578,0): 84, 70, 70, (325,579,0): 77, 63, 63, (325,580,0): 71, 57, 57, (325,581,0): 66, 52, 52, (325,582,0): 63, 49, 49, (325,583,0): 62, 48, 48, (325,584,0): 59, 45, 45, (325,585,0): 59, 45, 45, (325,586,0): 58, 44, 44, (325,587,0): 57, 43, 43, (325,588,0): 57, 43, 43, (325,589,0): 58, 44, 44, (325,590,0): 59, 45, 45, (325,591,0): 59, 45, 45, (325,592,0): 57, 45, 45, (325,593,0): 56, 46, 45, (325,594,0): 57, 47, 46, (325,595,0): 58, 48, 47, (325,596,0): 58, 48, 47, (325,597,0): 57, 47, 46, (325,598,0): 55, 45, 44, (325,599,0): 54, 44, 43, (326,0,0): 64, 54, 55, (326,1,0): 64, 54, 55, (326,2,0): 64, 54, 55, (326,3,0): 64, 54, 55, (326,4,0): 64, 54, 55, (326,5,0): 64, 54, 55, (326,6,0): 64, 54, 55, (326,7,0): 64, 54, 55, (326,8,0): 64, 54, 55, (326,9,0): 64, 54, 55, (326,10,0): 63, 53, 54, (326,11,0): 63, 53, 54, (326,12,0): 62, 52, 53, (326,13,0): 62, 52, 53, (326,14,0): 62, 52, 53, (326,15,0): 61, 51, 52, (326,16,0): 62, 50, 52, (326,17,0): 61, 49, 51, (326,18,0): 62, 47, 50, (326,19,0): 60, 45, 48, (326,20,0): 60, 45, 48, (326,21,0): 60, 45, 48, (326,22,0): 62, 46, 49, (326,23,0): 62, 46, 49, (326,24,0): 65, 46, 50, (326,25,0): 65, 46, 50, (326,26,0): 65, 46, 50, (326,27,0): 65, 46, 50, (326,28,0): 66, 45, 50, (326,29,0): 66, 45, 50, (326,30,0): 66, 45, 50, (326,31,0): 66, 45, 50, (326,32,0): 65, 42, 48, (326,33,0): 67, 44, 50, (326,34,0): 71, 46, 52, (326,35,0): 71, 46, 50, (326,36,0): 72, 45, 50, (326,37,0): 75, 46, 48, (326,38,0): 82, 50, 51, (326,39,0): 87, 53, 51, (326,40,0): 89, 54, 50, (326,41,0): 95, 58, 52, (326,42,0): 102, 61, 55, (326,43,0): 106, 63, 56, (326,44,0): 107, 64, 55, (326,45,0): 109, 65, 54, (326,46,0): 114, 67, 57, (326,47,0): 116, 69, 59, (326,48,0): 119, 71, 61, (326,49,0): 122, 74, 64, (326,50,0): 125, 77, 65, (326,51,0): 125, 78, 62, (326,52,0): 124, 75, 58, (326,53,0): 124, 76, 56, (326,54,0): 129, 78, 59, (326,55,0): 133, 81, 60, (326,56,0): 138, 83, 62, (326,57,0): 141, 83, 59, (326,58,0): 147, 87, 59, (326,59,0): 157, 94, 61, (326,60,0): 168, 105, 64, (326,61,0): 180, 116, 68, (326,62,0): 190, 127, 73, (326,63,0): 196, 136, 74, (326,64,0): 193, 139, 69, (326,65,0): 190, 140, 67, (326,66,0): 191, 141, 70, (326,67,0): 193, 143, 72, (326,68,0): 193, 145, 73, (326,69,0): 194, 147, 75, (326,70,0): 193, 149, 76, (326,71,0): 192, 150, 76, (326,72,0): 191, 149, 75, (326,73,0): 189, 151, 76, (326,74,0): 190, 152, 77, (326,75,0): 191, 155, 79, (326,76,0): 191, 157, 83, (326,77,0): 192, 158, 84, (326,78,0): 193, 161, 86, (326,79,0): 193, 161, 84, (326,80,0): 198, 165, 88, (326,81,0): 197, 164, 85, (326,82,0): 196, 163, 82, (326,83,0): 195, 162, 81, (326,84,0): 195, 162, 81, (326,85,0): 195, 162, 81, (326,86,0): 195, 164, 81, (326,87,0): 196, 166, 80, (326,88,0): 201, 171, 85, (326,89,0): 202, 172, 84, (326,90,0): 201, 174, 85, (326,91,0): 203, 176, 85, (326,92,0): 203, 176, 85, (326,93,0): 203, 177, 84, (326,94,0): 202, 175, 84, (326,95,0): 202, 176, 83, (326,96,0): 202, 179, 85, (326,97,0): 200, 180, 83, (326,98,0): 203, 180, 86, (326,99,0): 201, 180, 87, (326,100,0): 201, 180, 87, (326,101,0): 199, 180, 88, (326,102,0): 195, 178, 86, (326,103,0): 193, 178, 87, (326,104,0): 196, 181, 90, (326,105,0): 195, 182, 90, (326,106,0): 194, 183, 91, (326,107,0): 195, 186, 93, (326,108,0): 197, 188, 95, (326,109,0): 196, 190, 96, (326,110,0): 199, 190, 97, (326,111,0): 200, 191, 96, (326,112,0): 204, 191, 95, (326,113,0): 204, 190, 93, (326,114,0): 203, 189, 92, (326,115,0): 202, 190, 92, (326,116,0): 203, 189, 92, (326,117,0): 204, 192, 94, (326,118,0): 206, 194, 96, (326,119,0): 205, 195, 97, (326,120,0): 207, 197, 99, (326,121,0): 207, 199, 100, (326,122,0): 208, 200, 101, (326,123,0): 210, 202, 103, (326,124,0): 211, 203, 104, (326,125,0): 210, 205, 105, (326,126,0): 212, 204, 105, (326,127,0): 213, 205, 104, (326,128,0): 214, 201, 97, (326,129,0): 214, 199, 96, (326,130,0): 211, 195, 97, (326,131,0): 208, 189, 95, (326,132,0): 198, 178, 91, (326,133,0): 188, 165, 85, (326,134,0): 177, 153, 79, (326,135,0): 173, 146, 79, (326,136,0): 160, 132, 69, (326,137,0): 155, 126, 68, (326,138,0): 149, 120, 64, (326,139,0): 146, 116, 62, (326,140,0): 141, 114, 61, (326,141,0): 138, 111, 58, (326,142,0): 132, 106, 55, (326,143,0): 128, 102, 53, (326,144,0): 132, 108, 62, (326,145,0): 133, 110, 66, (326,146,0): 135, 114, 67, (326,147,0): 138, 118, 67, (326,148,0): 140, 123, 69, (326,149,0): 144, 127, 73, (326,150,0): 149, 128, 75, (326,151,0): 152, 129, 77, (326,152,0): 154, 128, 79, (326,153,0): 153, 125, 75, (326,154,0): 152, 127, 73, (326,155,0): 152, 130, 72, (326,156,0): 154, 136, 72, (326,157,0): 163, 151, 79, (326,158,0): 185, 178, 100, (326,159,0): 210, 202, 119, (326,160,0): 234, 220, 132, (326,161,0): 245, 228, 138, (326,162,0): 250, 233, 143, (326,163,0): 249, 232, 142, (326,164,0): 249, 232, 142, (326,165,0): 253, 236, 146, (326,166,0): 254, 237, 147, (326,167,0): 251, 234, 144, (326,168,0): 253, 236, 146, (326,169,0): 252, 235, 145, (326,170,0): 251, 234, 144, (326,171,0): 250, 233, 143, (326,172,0): 250, 233, 143, (326,173,0): 251, 234, 144, (326,174,0): 252, 235, 145, (326,175,0): 252, 237, 146, (326,176,0): 254, 241, 149, (326,177,0): 252, 241, 149, (326,178,0): 252, 242, 147, (326,179,0): 253, 243, 146, (326,180,0): 253, 243, 146, (326,181,0): 254, 244, 146, (326,182,0): 254, 245, 144, (326,183,0): 254, 245, 144, (326,184,0): 255, 246, 145, (326,185,0): 254, 245, 144, (326,186,0): 253, 243, 145, (326,187,0): 250, 240, 142, (326,188,0): 248, 238, 143, (326,189,0): 246, 236, 141, (326,190,0): 244, 233, 141, (326,191,0): 243, 232, 142, (326,192,0): 241, 231, 146, (326,193,0): 240, 232, 149, (326,194,0): 242, 231, 149, (326,195,0): 241, 233, 150, (326,196,0): 243, 232, 150, (326,197,0): 242, 234, 151, (326,198,0): 244, 233, 151, (326,199,0): 242, 234, 151, (326,200,0): 247, 236, 154, (326,201,0): 245, 237, 154, (326,202,0): 246, 235, 153, (326,203,0): 244, 236, 153, (326,204,0): 246, 235, 153, (326,205,0): 246, 238, 155, (326,206,0): 250, 239, 157, (326,207,0): 249, 241, 156, (326,208,0): 249, 242, 152, (326,209,0): 248, 243, 151, (326,210,0): 248, 243, 152, (326,211,0): 248, 243, 152, (326,212,0): 248, 243, 152, (326,213,0): 248, 243, 152, (326,214,0): 248, 242, 154, (326,215,0): 248, 242, 154, (326,216,0): 252, 246, 160, (326,217,0): 252, 246, 160, (326,218,0): 254, 248, 162, (326,219,0): 254, 248, 162, (326,220,0): 254, 248, 164, (326,221,0): 254, 248, 164, (326,222,0): 252, 246, 162, (326,223,0): 252, 246, 162, (326,224,0): 253, 247, 163, (326,225,0): 252, 247, 163, (326,226,0): 252, 247, 165, (326,227,0): 251, 249, 166, (326,228,0): 251, 248, 169, (326,229,0): 251, 250, 170, (326,230,0): 251, 249, 174, (326,231,0): 249, 250, 174, (326,232,0): 250, 252, 179, (326,233,0): 249, 253, 179, (326,234,0): 249, 252, 183, (326,235,0): 246, 252, 182, (326,236,0): 244, 249, 183, (326,237,0): 240, 247, 180, (326,238,0): 237, 243, 179, (326,239,0): 233, 242, 179, (326,240,0): 231, 240, 183, (326,241,0): 229, 242, 188, (326,242,0): 230, 243, 190, (326,243,0): 229, 243, 192, (326,244,0): 226, 242, 193, (326,245,0): 222, 242, 193, (326,246,0): 219, 241, 194, (326,247,0): 215, 241, 196, (326,248,0): 213, 241, 200, (326,249,0): 209, 241, 200, (326,250,0): 206, 243, 202, (326,251,0): 202, 243, 203, (326,252,0): 201, 241, 204, (326,253,0): 197, 241, 205, (326,254,0): 196, 240, 205, (326,255,0): 194, 239, 206, (326,256,0): 194, 240, 211, (326,257,0): 194, 240, 211, (326,258,0): 192, 241, 212, (326,259,0): 192, 240, 214, (326,260,0): 191, 241, 216, (326,261,0): 191, 240, 218, (326,262,0): 189, 240, 221, (326,263,0): 188, 241, 223, (326,264,0): 189, 243, 229, (326,265,0): 190, 244, 231, (326,266,0): 188, 244, 235, (326,267,0): 188, 245, 238, (326,268,0): 188, 245, 239, (326,269,0): 189, 246, 240, (326,270,0): 187, 246, 242, (326,271,0): 187, 245, 246, (326,272,0): 186, 245, 251, (326,273,0): 184, 244, 254, (326,274,0): 183, 243, 253, (326,275,0): 182, 242, 252, (326,276,0): 182, 242, 252, (326,277,0): 183, 243, 253, (326,278,0): 184, 244, 255, (326,279,0): 185, 245, 255, (326,280,0): 180, 240, 251, (326,281,0): 182, 242, 253, (326,282,0): 184, 244, 255, (326,283,0): 185, 245, 255, (326,284,0): 185, 245, 255, (326,285,0): 183, 243, 254, (326,286,0): 180, 239, 253, (326,287,0): 180, 236, 253, (326,288,0): 187, 235, 255, (326,289,0): 186, 232, 255, (326,290,0): 185, 229, 255, (326,291,0): 183, 227, 252, (326,292,0): 182, 223, 251, (326,293,0): 175, 217, 242, (326,294,0): 167, 206, 235, (326,295,0): 160, 200, 226, (326,296,0): 161, 196, 224, (326,297,0): 159, 194, 222, (326,298,0): 156, 190, 218, (326,299,0): 151, 185, 213, (326,300,0): 150, 181, 209, (326,301,0): 147, 178, 206, (326,302,0): 147, 177, 205, (326,303,0): 147, 177, 205, (326,304,0): 141, 171, 197, (326,305,0): 138, 165, 192, (326,306,0): 131, 158, 185, (326,307,0): 127, 153, 178, (326,308,0): 128, 150, 174, (326,309,0): 128, 148, 172, (326,310,0): 127, 145, 169, (326,311,0): 126, 142, 167, (326,312,0): 119, 135, 160, (326,313,0): 122, 138, 164, (326,314,0): 125, 141, 167, (326,315,0): 126, 143, 171, (326,316,0): 129, 146, 176, (326,317,0): 132, 151, 183, (326,318,0): 140, 159, 192, (326,319,0): 145, 165, 198, (326,320,0): 147, 169, 206, (326,321,0): 146, 168, 205, (326,322,0): 146, 166, 201, (326,323,0): 145, 161, 194, (326,324,0): 144, 155, 187, (326,325,0): 141, 148, 177, (326,326,0): 140, 142, 167, (326,327,0): 141, 137, 160, (326,328,0): 131, 123, 144, (326,329,0): 115, 104, 121, (326,330,0): 98, 86, 100, (326,331,0): 93, 80, 90, (326,332,0): 93, 78, 85, (326,333,0): 89, 72, 78, (326,334,0): 83, 67, 70, (326,335,0): 82, 66, 69, (326,336,0): 79, 60, 64, (326,337,0): 78, 59, 61, (326,338,0): 76, 57, 61, (326,339,0): 74, 58, 59, (326,340,0): 77, 58, 62, (326,341,0): 80, 61, 63, (326,342,0): 83, 64, 68, (326,343,0): 86, 67, 69, (326,344,0): 85, 66, 70, (326,345,0): 88, 68, 70, (326,346,0): 91, 70, 75, (326,347,0): 95, 73, 76, (326,348,0): 99, 76, 82, (326,349,0): 105, 80, 84, (326,350,0): 109, 82, 89, (326,351,0): 110, 83, 90, (326,352,0): 116, 86, 94, (326,353,0): 117, 86, 94, (326,354,0): 118, 87, 95, (326,355,0): 118, 87, 95, (326,356,0): 119, 87, 98, (326,357,0): 120, 88, 99, (326,358,0): 121, 89, 100, (326,359,0): 122, 90, 103, (326,360,0): 126, 94, 107, (326,361,0): 129, 97, 110, (326,362,0): 133, 101, 116, (326,363,0): 137, 105, 120, (326,364,0): 139, 107, 122, (326,365,0): 138, 105, 122, (326,366,0): 135, 102, 119, (326,367,0): 133, 101, 116, (326,368,0): 132, 102, 114, (326,369,0): 128, 100, 112, (326,370,0): 125, 97, 109, (326,371,0): 122, 94, 106, (326,372,0): 122, 92, 104, (326,373,0): 121, 91, 103, (326,374,0): 123, 91, 104, (326,375,0): 124, 92, 105, (326,376,0): 125, 93, 106, (326,377,0): 125, 93, 106, (326,378,0): 125, 91, 105, (326,379,0): 125, 91, 105, (326,380,0): 127, 91, 105, (326,381,0): 128, 92, 106, (326,382,0): 130, 94, 108, (326,383,0): 132, 94, 107, (326,384,0): 137, 94, 104, (326,385,0): 138, 92, 102, (326,386,0): 134, 87, 97, (326,387,0): 124, 77, 87, (326,388,0): 112, 65, 75, (326,389,0): 102, 55, 63, (326,390,0): 96, 49, 57, (326,391,0): 94, 47, 53, (326,392,0): 99, 52, 58, (326,393,0): 100, 51, 55, (326,394,0): 98, 49, 52, (326,395,0): 96, 47, 50, (326,396,0): 94, 46, 46, (326,397,0): 92, 44, 44, (326,398,0): 92, 42, 43, (326,399,0): 89, 43, 45, (326,400,0): 83, 42, 48, (326,401,0): 81, 41, 50, (326,402,0): 80, 40, 49, (326,403,0): 78, 38, 47, (326,404,0): 75, 38, 45, (326,405,0): 73, 36, 43, (326,406,0): 72, 36, 40, (326,407,0): 70, 35, 39, (326,408,0): 69, 34, 38, (326,409,0): 72, 38, 39, (326,410,0): 73, 41, 42, (326,411,0): 74, 42, 43, (326,412,0): 73, 43, 41, (326,413,0): 74, 44, 42, (326,414,0): 77, 47, 45, (326,415,0): 81, 50, 47, (326,416,0): 93, 58, 52, (326,417,0): 100, 66, 57, (326,418,0): 110, 76, 66, (326,419,0): 120, 88, 73, (326,420,0): 128, 101, 80, (326,421,0): 139, 115, 89, (326,422,0): 148, 129, 97, (326,423,0): 153, 139, 102, (326,424,0): 158, 149, 106, (326,425,0): 167, 161, 113, (326,426,0): 177, 175, 124, (326,427,0): 185, 185, 131, (326,428,0): 186, 191, 133, (326,429,0): 188, 196, 136, (326,430,0): 193, 203, 142, (326,431,0): 198, 207, 154, (326,432,0): 192, 200, 163, (326,433,0): 190, 199, 172, (326,434,0): 182, 192, 168, (326,435,0): 170, 179, 158, (326,436,0): 165, 176, 160, (326,437,0): 168, 179, 171, (326,438,0): 169, 181, 181, (326,439,0): 164, 176, 188, (326,440,0): 164, 176, 200, (326,441,0): 169, 179, 214, (326,442,0): 172, 183, 228, (326,443,0): 174, 184, 237, (326,444,0): 171, 179, 241, (326,445,0): 168, 175, 243, (326,446,0): 166, 173, 245, (326,447,0): 166, 172, 250, (326,448,0): 166, 172, 255, (326,449,0): 165, 170, 255, (326,450,0): 164, 170, 255, (326,451,0): 162, 168, 255, (326,452,0): 160, 164, 251, (326,453,0): 157, 159, 242, (326,454,0): 152, 154, 231, (326,455,0): 150, 148, 221, (326,456,0): 144, 139, 206, (326,457,0): 146, 138, 198, (326,458,0): 146, 136, 188, (326,459,0): 146, 133, 177, (326,460,0): 142, 126, 165, (326,461,0): 138, 118, 153, (326,462,0): 132, 111, 142, (326,463,0): 130, 108, 131, (326,464,0): 130, 108, 121, (326,465,0): 131, 108, 116, (326,466,0): 132, 109, 115, (326,467,0): 131, 109, 111, (326,468,0): 128, 107, 106, (326,469,0): 121, 100, 97, (326,470,0): 113, 93, 86, (326,471,0): 107, 87, 80, (326,472,0): 95, 75, 68, (326,473,0): 91, 71, 64, (326,474,0): 88, 64, 60, (326,475,0): 87, 63, 59, (326,476,0): 89, 65, 65, (326,477,0): 91, 67, 67, (326,478,0): 92, 67, 70, (326,479,0): 90, 69, 66, (326,480,0): 85, 67, 57, (326,481,0): 83, 67, 52, (326,482,0): 84, 68, 55, (326,483,0): 88, 70, 58, (326,484,0): 90, 72, 62, (326,485,0): 90, 70, 61, (326,486,0): 85, 65, 58, (326,487,0): 81, 61, 54, (326,488,0): 81, 60, 55, (326,489,0): 78, 59, 55, (326,490,0): 74, 56, 54, (326,491,0): 71, 56, 53, (326,492,0): 71, 57, 56, (326,493,0): 73, 62, 60, (326,494,0): 76, 66, 65, (326,495,0): 79, 69, 67, (326,496,0): 86, 72, 69, (326,497,0): 93, 79, 76, (326,498,0): 96, 82, 81, (326,499,0): 90, 78, 78, (326,500,0): 89, 77, 79, (326,501,0): 94, 82, 86, (326,502,0): 96, 85, 89, (326,503,0): 94, 83, 89, (326,504,0): 95, 84, 92, (326,505,0): 93, 81, 91, (326,506,0): 94, 80, 93, (326,507,0): 95, 81, 96, (326,508,0): 98, 84, 99, (326,509,0): 101, 84, 100, (326,510,0): 99, 82, 100, (326,511,0): 96, 79, 97, (326,512,0): 93, 81, 95, (326,513,0): 93, 82, 96, (326,514,0): 96, 82, 99, (326,515,0): 98, 84, 99, (326,516,0): 103, 86, 102, (326,517,0): 108, 92, 105, (326,518,0): 116, 98, 110, (326,519,0): 122, 105, 115, (326,520,0): 118, 101, 109, (326,521,0): 115, 102, 111, (326,522,0): 114, 102, 114, (326,523,0): 111, 102, 119, (326,524,0): 114, 106, 130, (326,525,0): 120, 115, 145, (326,526,0): 132, 128, 165, (326,527,0): 141, 135, 179, (326,528,0): 143, 137, 185, (326,529,0): 144, 138, 186, (326,530,0): 149, 146, 189, (326,531,0): 156, 154, 193, (326,532,0): 156, 157, 188, (326,533,0): 150, 154, 183, (326,534,0): 154, 158, 183, (326,535,0): 162, 167, 189, (326,536,0): 158, 159, 180, (326,537,0): 153, 152, 170, (326,538,0): 146, 142, 159, (326,539,0): 140, 132, 145, (326,540,0): 136, 125, 133, (326,541,0): 131, 119, 119, (326,542,0): 127, 112, 107, (326,543,0): 126, 107, 101, (326,544,0): 127, 101, 100, (326,545,0): 116, 87, 89, (326,546,0): 96, 70, 73, (326,547,0): 80, 54, 57, (326,548,0): 70, 45, 48, (326,549,0): 66, 41, 44, (326,550,0): 62, 40, 43, (326,551,0): 61, 41, 43, (326,552,0): 58, 37, 42, (326,553,0): 56, 37, 41, (326,554,0): 53, 37, 40, (326,555,0): 51, 35, 38, (326,556,0): 49, 34, 39, (326,557,0): 47, 32, 37, (326,558,0): 44, 32, 36, (326,559,0): 45, 30, 35, (326,560,0): 47, 31, 34, (326,561,0): 53, 37, 40, (326,562,0): 60, 41, 45, (326,563,0): 60, 44, 47, (326,564,0): 61, 45, 48, (326,565,0): 65, 49, 52, (326,566,0): 73, 57, 60, (326,567,0): 81, 65, 68, (326,568,0): 91, 75, 78, (326,569,0): 92, 76, 79, (326,570,0): 92, 77, 80, (326,571,0): 93, 78, 81, (326,572,0): 93, 78, 81, (326,573,0): 93, 78, 81, (326,574,0): 92, 77, 80, (326,575,0): 91, 76, 79, (326,576,0): 88, 72, 73, (326,577,0): 86, 70, 70, (326,578,0): 83, 67, 67, (326,579,0): 79, 63, 63, (326,580,0): 75, 59, 59, (326,581,0): 71, 55, 55, (326,582,0): 69, 53, 53, (326,583,0): 67, 51, 51, (326,584,0): 63, 47, 47, (326,585,0): 62, 46, 46, (326,586,0): 61, 45, 45, (326,587,0): 60, 44, 44, (326,588,0): 60, 44, 44, (326,589,0): 61, 45, 45, (326,590,0): 62, 46, 46, (326,591,0): 62, 48, 47, (326,592,0): 59, 47, 47, (326,593,0): 59, 49, 48, (326,594,0): 59, 49, 48, (326,595,0): 59, 49, 48, (326,596,0): 58, 48, 47, (326,597,0): 57, 47, 46, (326,598,0): 55, 45, 44, (326,599,0): 54, 44, 43, (327,0,0): 64, 54, 55, (327,1,0): 64, 54, 55, (327,2,0): 64, 54, 55, (327,3,0): 64, 54, 55, (327,4,0): 64, 54, 55, (327,5,0): 64, 54, 55, (327,6,0): 64, 54, 55, (327,7,0): 64, 54, 55, (327,8,0): 64, 54, 55, (327,9,0): 64, 54, 55, (327,10,0): 64, 54, 55, (327,11,0): 63, 53, 54, (327,12,0): 63, 53, 54, (327,13,0): 62, 52, 53, (327,14,0): 62, 52, 53, (327,15,0): 61, 51, 52, (327,16,0): 62, 50, 52, (327,17,0): 61, 49, 51, (327,18,0): 62, 47, 50, (327,19,0): 60, 45, 48, (327,20,0): 60, 45, 48, (327,21,0): 60, 45, 48, (327,22,0): 62, 46, 49, (327,23,0): 62, 46, 49, (327,24,0): 65, 46, 50, (327,25,0): 65, 46, 50, (327,26,0): 65, 46, 50, (327,27,0): 65, 46, 50, (327,28,0): 66, 45, 50, (327,29,0): 66, 45, 50, (327,30,0): 66, 45, 50, (327,31,0): 66, 45, 50, (327,32,0): 64, 41, 47, (327,33,0): 67, 44, 50, (327,34,0): 71, 46, 52, (327,35,0): 71, 46, 50, (327,36,0): 71, 45, 48, (327,37,0): 75, 46, 48, (327,38,0): 80, 50, 50, (327,39,0): 85, 54, 52, (327,40,0): 86, 52, 50, (327,41,0): 91, 56, 52, (327,42,0): 99, 60, 55, (327,43,0): 103, 62, 56, (327,44,0): 104, 64, 56, (327,45,0): 107, 64, 55, (327,46,0): 110, 67, 58, (327,47,0): 113, 69, 60, (327,48,0): 118, 71, 63, (327,49,0): 122, 73, 66, (327,50,0): 125, 77, 65, (327,51,0): 125, 78, 62, (327,52,0): 124, 75, 58, (327,53,0): 124, 76, 56, (327,54,0): 130, 78, 57, (327,55,0): 135, 80, 59, (327,56,0): 140, 84, 61, (327,57,0): 142, 84, 60, (327,58,0): 148, 88, 60, (327,59,0): 155, 95, 61, (327,60,0): 168, 106, 65, (327,61,0): 181, 119, 72, (327,62,0): 192, 131, 77, (327,63,0): 198, 140, 77, (327,64,0): 198, 146, 73, (327,65,0): 196, 147, 71, (327,66,0): 196, 147, 71, (327,67,0): 194, 146, 70, (327,68,0): 193, 147, 70, (327,69,0): 193, 147, 70, (327,70,0): 191, 147, 72, (327,71,0): 191, 147, 72, (327,72,0): 190, 148, 72, (327,73,0): 189, 150, 73, (327,74,0): 190, 152, 77, (327,75,0): 191, 155, 79, (327,76,0): 193, 157, 81, (327,77,0): 193, 160, 83, (327,78,0): 194, 161, 84, (327,79,0): 195, 162, 85, (327,80,0): 199, 166, 87, (327,81,0): 198, 165, 84, (327,82,0): 199, 164, 83, (327,83,0): 196, 164, 81, (327,84,0): 196, 163, 82, (327,85,0): 196, 164, 81, (327,86,0): 197, 165, 82, (327,87,0): 197, 167, 81, (327,88,0): 203, 173, 87, (327,89,0): 203, 173, 87, (327,90,0): 202, 175, 86, (327,91,0): 203, 176, 87, (327,92,0): 203, 176, 85, (327,93,0): 202, 175, 84, (327,94,0): 201, 174, 83, (327,95,0): 200, 175, 83, (327,96,0): 202, 179, 86, (327,97,0): 200, 179, 86, (327,98,0): 201, 180, 87, (327,99,0): 200, 181, 87, (327,100,0): 200, 181, 89, (327,101,0): 196, 179, 87, (327,102,0): 194, 179, 88, (327,103,0): 193, 178, 87, (327,104,0): 195, 182, 90, (327,105,0): 193, 182, 90, (327,106,0): 194, 185, 94, (327,107,0): 195, 186, 95, (327,108,0): 195, 188, 97, (327,109,0): 196, 189, 98, (327,110,0): 197, 190, 99, (327,111,0): 198, 191, 100, (327,112,0): 202, 192, 97, (327,113,0): 201, 191, 96, (327,114,0): 202, 189, 95, (327,115,0): 199, 189, 94, (327,116,0): 200, 190, 95, (327,117,0): 202, 192, 97, (327,118,0): 204, 194, 99, (327,119,0): 204, 195, 100, (327,120,0): 205, 196, 101, (327,121,0): 204, 198, 102, (327,122,0): 206, 200, 104, (327,123,0): 207, 203, 106, (327,124,0): 210, 204, 108, (327,125,0): 209, 205, 108, (327,126,0): 209, 205, 108, (327,127,0): 210, 205, 105, (327,128,0): 213, 204, 101, (327,129,0): 214, 203, 98, (327,130,0): 211, 197, 98, (327,131,0): 206, 190, 95, (327,132,0): 196, 179, 91, (327,133,0): 187, 166, 83, (327,134,0): 178, 154, 80, (327,135,0): 175, 148, 79, (327,136,0): 162, 134, 71, (327,137,0): 156, 127, 69, (327,138,0): 149, 120, 64, (327,139,0): 144, 114, 62, (327,140,0): 140, 112, 62, (327,141,0): 136, 110, 59, (327,142,0): 131, 105, 54, (327,143,0): 127, 100, 53, (327,144,0): 128, 104, 60, (327,145,0): 129, 106, 62, (327,146,0): 131, 110, 63, (327,147,0): 133, 115, 65, (327,148,0): 138, 121, 69, (327,149,0): 142, 125, 71, (327,150,0): 147, 127, 74, (327,151,0): 150, 129, 76, (327,152,0): 155, 129, 80, (327,153,0): 152, 126, 77, (327,154,0): 151, 125, 74, (327,155,0): 150, 129, 72, (327,156,0): 151, 136, 71, (327,157,0): 160, 150, 79, (327,158,0): 184, 178, 100, (327,159,0): 209, 203, 119, (327,160,0): 233, 222, 133, (327,161,0): 243, 230, 138, (327,162,0): 249, 236, 144, (327,163,0): 247, 234, 142, (327,164,0): 247, 234, 142, (327,165,0): 251, 238, 146, (327,166,0): 252, 239, 147, (327,167,0): 249, 236, 144, (327,168,0): 251, 238, 146, (327,169,0): 250, 237, 145, (327,170,0): 249, 236, 144, (327,171,0): 248, 235, 143, (327,172,0): 248, 235, 143, (327,173,0): 249, 236, 144, (327,174,0): 250, 237, 145, (327,175,0): 251, 238, 146, (327,176,0): 255, 242, 150, (327,177,0): 253, 242, 150, (327,178,0): 253, 242, 150, (327,179,0): 254, 244, 149, (327,180,0): 254, 244, 147, (327,181,0): 254, 244, 146, (327,182,0): 254, 244, 146, (327,183,0): 254, 245, 144, (327,184,0): 255, 247, 146, (327,185,0): 255, 245, 147, (327,186,0): 253, 243, 145, (327,187,0): 251, 241, 144, (327,188,0): 248, 238, 143, (327,189,0): 246, 235, 143, (327,190,0): 244, 233, 141, (327,191,0): 243, 232, 143, (327,192,0): 239, 231, 146, (327,193,0): 238, 232, 148, (327,194,0): 240, 232, 151, (327,195,0): 239, 233, 149, (327,196,0): 241, 233, 152, (327,197,0): 240, 234, 150, (327,198,0): 242, 234, 153, (327,199,0): 241, 235, 151, (327,200,0): 247, 239, 158, (327,201,0): 244, 238, 154, (327,202,0): 244, 236, 155, (327,203,0): 242, 236, 152, (327,204,0): 243, 235, 154, (327,205,0): 244, 238, 154, (327,206,0): 247, 239, 158, (327,207,0): 247, 241, 155, (327,208,0): 247, 242, 151, (327,209,0): 247, 242, 150, (327,210,0): 247, 242, 151, (327,211,0): 247, 242, 151, (327,212,0): 247, 242, 151, (327,213,0): 247, 242, 151, (327,214,0): 247, 241, 153, (327,215,0): 247, 241, 153, (327,216,0): 252, 246, 160, (327,217,0): 252, 246, 160, (327,218,0): 254, 248, 162, (327,219,0): 254, 248, 162, (327,220,0): 254, 248, 164, (327,221,0): 254, 248, 164, (327,222,0): 252, 246, 162, (327,223,0): 252, 246, 162, (327,224,0): 252, 246, 162, (327,225,0): 251, 246, 164, (327,226,0): 251, 246, 164, (327,227,0): 250, 247, 166, (327,228,0): 250, 247, 168, (327,229,0): 250, 248, 171, (327,230,0): 250, 248, 173, (327,231,0): 249, 249, 175, (327,232,0): 246, 248, 175, (327,233,0): 246, 249, 178, (327,234,0): 246, 249, 180, (327,235,0): 244, 249, 182, (327,236,0): 242, 247, 181, (327,237,0): 239, 246, 179, (327,238,0): 236, 242, 178, (327,239,0): 232, 240, 180, (327,240,0): 231, 240, 185, (327,241,0): 231, 241, 189, (327,242,0): 229, 241, 191, (327,243,0): 228, 242, 193, (327,244,0): 225, 241, 194, (327,245,0): 222, 241, 195, (327,246,0): 218, 240, 194, (327,247,0): 214, 240, 195, (327,248,0): 211, 239, 198, (327,249,0): 208, 240, 201, (327,250,0): 204, 240, 202, (327,251,0): 202, 240, 203, (327,252,0): 199, 239, 204, (327,253,0): 197, 238, 204, (327,254,0): 194, 238, 205, (327,255,0): 192, 237, 206, (327,256,0): 195, 240, 211, (327,257,0): 194, 240, 211, (327,258,0): 194, 240, 212, (327,259,0): 192, 240, 214, (327,260,0): 192, 240, 216, (327,261,0): 191, 240, 218, (327,262,0): 191, 240, 221, (327,263,0): 189, 240, 223, (327,264,0): 190, 242, 229, (327,265,0): 189, 243, 230, (327,266,0): 189, 242, 234, (327,267,0): 188, 243, 237, (327,268,0): 188, 243, 238, (327,269,0): 188, 245, 239, (327,270,0): 188, 244, 241, (327,271,0): 186, 244, 245, (327,272,0): 184, 243, 251, (327,273,0): 182, 242, 252, (327,274,0): 181, 241, 252, (327,275,0): 180, 240, 251, (327,276,0): 180, 240, 251, (327,277,0): 181, 240, 254, (327,278,0): 182, 241, 255, (327,279,0): 183, 242, 255, (327,280,0): 178, 237, 253, (327,281,0): 180, 239, 255, (327,282,0): 182, 241, 255, (327,283,0): 184, 243, 255, (327,284,0): 183, 242, 255, (327,285,0): 181, 240, 255, (327,286,0): 178, 237, 255, (327,287,0): 177, 234, 254, (327,288,0): 184, 231, 255, (327,289,0): 184, 229, 255, (327,290,0): 184, 228, 255, (327,291,0): 183, 227, 255, (327,292,0): 182, 223, 253, (327,293,0): 176, 217, 245, (327,294,0): 168, 207, 236, (327,295,0): 161, 200, 229, (327,296,0): 162, 197, 227, (327,297,0): 159, 194, 222, (327,298,0): 155, 189, 217, (327,299,0): 151, 185, 213, (327,300,0): 149, 180, 208, (327,301,0): 146, 177, 205, (327,302,0): 146, 176, 204, (327,303,0): 146, 176, 204, (327,304,0): 145, 172, 199, (327,305,0): 140, 166, 193, (327,306,0): 133, 159, 184, (327,307,0): 128, 152, 176, (327,308,0): 128, 148, 172, (327,309,0): 128, 146, 168, (327,310,0): 126, 142, 165, (327,311,0): 123, 139, 162, (327,312,0): 118, 134, 157, (327,313,0): 121, 137, 162, (327,314,0): 124, 140, 165, (327,315,0): 125, 141, 167, (327,316,0): 128, 143, 172, (327,317,0): 132, 149, 177, (327,318,0): 141, 158, 188, (327,319,0): 146, 165, 197, (327,320,0): 145, 168, 202, (327,321,0): 145, 168, 202, (327,322,0): 146, 165, 198, (327,323,0): 146, 161, 194, (327,324,0): 144, 155, 187, (327,325,0): 142, 147, 177, (327,326,0): 141, 141, 167, (327,327,0): 141, 137, 160, (327,328,0): 129, 121, 142, (327,329,0): 114, 103, 120, (327,330,0): 99, 85, 100, (327,331,0): 96, 80, 91, (327,332,0): 95, 78, 86, (327,333,0): 89, 72, 78, (327,334,0): 83, 67, 70, (327,335,0): 82, 63, 65, (327,336,0): 78, 59, 61, (327,337,0): 78, 58, 59, (327,338,0): 76, 56, 58, (327,339,0): 75, 55, 56, (327,340,0): 77, 57, 59, (327,341,0): 80, 60, 61, (327,342,0): 85, 63, 66, (327,343,0): 87, 65, 67, (327,344,0): 87, 65, 68, (327,345,0): 89, 67, 69, (327,346,0): 94, 69, 73, (327,347,0): 98, 73, 76, (327,348,0): 103, 76, 81, (327,349,0): 107, 81, 84, (327,350,0): 112, 83, 88, (327,351,0): 114, 83, 88, (327,352,0): 119, 87, 92, (327,353,0): 121, 86, 92, (327,354,0): 121, 86, 92, (327,355,0): 121, 86, 92, (327,356,0): 122, 87, 94, (327,357,0): 123, 88, 95, (327,358,0): 124, 88, 98, (327,359,0): 125, 89, 99, (327,360,0): 127, 91, 101, (327,361,0): 131, 95, 105, (327,362,0): 136, 100, 112, (327,363,0): 141, 105, 117, (327,364,0): 142, 106, 120, (327,365,0): 142, 106, 120, (327,366,0): 139, 103, 117, (327,367,0): 135, 101, 115, (327,368,0): 132, 99, 110, (327,369,0): 128, 97, 105, (327,370,0): 123, 92, 100, (327,371,0): 119, 88, 96, (327,372,0): 117, 84, 93, (327,373,0): 117, 84, 93, (327,374,0): 120, 84, 94, (327,375,0): 121, 85, 95, (327,376,0): 126, 90, 100, (327,377,0): 125, 89, 99, (327,378,0): 126, 88, 99, (327,379,0): 126, 88, 99, (327,380,0): 129, 89, 100, (327,381,0): 131, 91, 102, (327,382,0): 133, 93, 104, (327,383,0): 135, 93, 103, (327,384,0): 138, 91, 101, (327,385,0): 136, 86, 95, (327,386,0): 127, 77, 86, (327,387,0): 114, 65, 71, (327,388,0): 103, 52, 59, (327,389,0): 96, 47, 53, (327,390,0): 98, 47, 54, (327,391,0): 100, 51, 55, (327,392,0): 103, 54, 58, (327,393,0): 102, 53, 56, (327,394,0): 99, 50, 53, (327,395,0): 95, 46, 49, (327,396,0): 92, 42, 43, (327,397,0): 90, 40, 41, (327,398,0): 89, 39, 40, (327,399,0): 88, 39, 42, (327,400,0): 83, 40, 47, (327,401,0): 80, 40, 49, (327,402,0): 79, 39, 48, (327,403,0): 77, 37, 45, (327,404,0): 73, 36, 43, (327,405,0): 71, 34, 41, (327,406,0): 70, 34, 38, (327,407,0): 68, 33, 37, (327,408,0): 69, 34, 38, (327,409,0): 72, 38, 39, (327,410,0): 73, 41, 42, (327,411,0): 75, 43, 44, (327,412,0): 74, 43, 41, (327,413,0): 75, 45, 43, (327,414,0): 78, 48, 46, (327,415,0): 82, 51, 48, (327,416,0): 92, 57, 51, (327,417,0): 98, 64, 54, (327,418,0): 107, 73, 63, (327,419,0): 116, 84, 69, (327,420,0): 125, 98, 77, (327,421,0): 137, 116, 89, (327,422,0): 151, 132, 102, (327,423,0): 157, 144, 109, (327,424,0): 163, 154, 115, (327,425,0): 165, 161, 116, (327,426,0): 169, 168, 122, (327,427,0): 169, 173, 123, (327,428,0): 168, 175, 124, (327,429,0): 170, 180, 128, (327,430,0): 179, 189, 137, (327,431,0): 185, 196, 153, (327,432,0): 178, 188, 161, (327,433,0): 178, 189, 172, (327,434,0): 175, 186, 172, (327,435,0): 167, 177, 168, (327,436,0): 164, 175, 171, (327,437,0): 168, 178, 180, (327,438,0): 168, 178, 190, (327,439,0): 162, 173, 193, (327,440,0): 164, 173, 204, (327,441,0): 170, 177, 219, (327,442,0): 175, 183, 232, (327,443,0): 177, 183, 241, (327,444,0): 174, 179, 245, (327,445,0): 171, 175, 246, (327,446,0): 169, 173, 247, (327,447,0): 168, 173, 254, (327,448,0): 167, 171, 255, (327,449,0): 163, 168, 255, (327,450,0): 162, 166, 255, (327,451,0): 164, 166, 253, (327,452,0): 164, 164, 250, (327,453,0): 161, 160, 240, (327,454,0): 156, 152, 228, (327,455,0): 152, 145, 213, (327,456,0): 147, 137, 198, (327,457,0): 150, 137, 190, (327,458,0): 152, 135, 180, (327,459,0): 150, 129, 168, (327,460,0): 144, 123, 154, (327,461,0): 139, 115, 141, (327,462,0): 132, 107, 129, (327,463,0): 128, 104, 118, (327,464,0): 128, 105, 111, (327,465,0): 132, 110, 112, (327,466,0): 137, 116, 115, (327,467,0): 137, 116, 113, (327,468,0): 130, 109, 104, (327,469,0): 118, 98, 91, (327,470,0): 105, 85, 78, (327,471,0): 97, 77, 68, (327,472,0): 87, 67, 58, (327,473,0): 84, 64, 57, (327,474,0): 81, 60, 55, (327,475,0): 82, 61, 58, (327,476,0): 87, 63, 63, (327,477,0): 89, 67, 69, (327,478,0): 92, 67, 70, (327,479,0): 90, 69, 66, (327,480,0): 88, 70, 58, (327,481,0): 86, 70, 54, (327,482,0): 88, 71, 55, (327,483,0): 91, 73, 59, (327,484,0): 95, 76, 62, (327,485,0): 94, 74, 63, (327,486,0): 91, 69, 58, (327,487,0): 87, 64, 56, (327,488,0): 81, 58, 52, (327,489,0): 76, 55, 50, (327,490,0): 71, 51, 50, (327,491,0): 68, 50, 48, (327,492,0): 68, 52, 52, (327,493,0): 70, 56, 55, (327,494,0): 72, 60, 60, (327,495,0): 74, 62, 62, (327,496,0): 83, 69, 68, (327,497,0): 91, 77, 76, (327,498,0): 94, 80, 79, (327,499,0): 89, 75, 75, (327,500,0): 86, 72, 72, (327,501,0): 90, 76, 76, (327,502,0): 92, 77, 80, (327,503,0): 88, 76, 78, (327,504,0): 93, 78, 83, (327,505,0): 91, 76, 83, (327,506,0): 89, 73, 83, (327,507,0): 90, 74, 85, (327,508,0): 91, 75, 88, (327,509,0): 91, 75, 88, (327,510,0): 89, 72, 88, (327,511,0): 86, 69, 85, (327,512,0): 84, 70, 83, (327,513,0): 86, 73, 83, (327,514,0): 90, 74, 87, (327,515,0): 91, 73, 87, (327,516,0): 92, 74, 88, (327,517,0): 100, 80, 92, (327,518,0): 109, 89, 100, (327,519,0): 117, 97, 106, (327,520,0): 116, 97, 103, (327,521,0): 115, 98, 104, (327,522,0): 112, 99, 108, (327,523,0): 111, 99, 113, (327,524,0): 113, 101, 121, (327,525,0): 119, 109, 136, (327,526,0): 130, 120, 154, (327,527,0): 137, 129, 166, (327,528,0): 135, 127, 166, (327,529,0): 136, 128, 167, (327,530,0): 143, 137, 171, (327,531,0): 153, 150, 181, (327,532,0): 155, 155, 181, (327,533,0): 153, 155, 178, (327,534,0): 157, 159, 180, (327,535,0): 166, 168, 189, (327,536,0): 159, 160, 180, (327,537,0): 155, 154, 172, (327,538,0): 149, 145, 162, (327,539,0): 145, 137, 152, (327,540,0): 141, 130, 138, (327,541,0): 138, 123, 126, (327,542,0): 133, 115, 113, (327,543,0): 129, 110, 106, (327,544,0): 133, 107, 108, (327,545,0): 121, 92, 94, (327,546,0): 100, 74, 77, (327,547,0): 83, 57, 60, (327,548,0): 71, 46, 49, (327,549,0): 66, 41, 44, (327,550,0): 62, 40, 43, (327,551,0): 61, 41, 43, (327,552,0): 58, 37, 42, (327,553,0): 57, 38, 42, (327,554,0): 53, 37, 40, (327,555,0): 51, 35, 38, (327,556,0): 49, 34, 39, (327,557,0): 47, 32, 37, (327,558,0): 43, 31, 35, (327,559,0): 43, 31, 35, (327,560,0): 48, 33, 36, (327,561,0): 54, 39, 42, (327,562,0): 61, 46, 49, (327,563,0): 62, 47, 50, (327,564,0): 61, 46, 49, (327,565,0): 64, 49, 52, (327,566,0): 71, 56, 59, (327,567,0): 78, 63, 66, (327,568,0): 87, 72, 75, (327,569,0): 86, 71, 74, (327,570,0): 85, 70, 73, (327,571,0): 84, 69, 72, (327,572,0): 84, 69, 72, (327,573,0): 83, 68, 71, (327,574,0): 83, 68, 71, (327,575,0): 82, 68, 68, (327,576,0): 83, 67, 67, (327,577,0): 83, 67, 67, (327,578,0): 82, 66, 66, (327,579,0): 80, 64, 64, (327,580,0): 77, 61, 61, (327,581,0): 74, 58, 58, (327,582,0): 72, 56, 56, (327,583,0): 71, 55, 55, (327,584,0): 65, 49, 49, (327,585,0): 64, 48, 48, (327,586,0): 63, 47, 47, (327,587,0): 62, 46, 46, (327,588,0): 62, 46, 46, (327,589,0): 63, 47, 47, (327,590,0): 64, 48, 48, (327,591,0): 64, 50, 49, (327,592,0): 61, 49, 49, (327,593,0): 61, 51, 50, (327,594,0): 61, 51, 50, (327,595,0): 60, 50, 49, (327,596,0): 59, 49, 48, (327,597,0): 57, 47, 46, (327,598,0): 55, 45, 44, (327,599,0): 53, 43, 42, (328,0,0): 66, 56, 55, (328,1,0): 66, 56, 55, (328,2,0): 65, 55, 54, (328,3,0): 65, 55, 54, (328,4,0): 64, 54, 53, (328,5,0): 64, 54, 53, (328,6,0): 63, 53, 52, (328,7,0): 63, 53, 52, (328,8,0): 62, 52, 51, (328,9,0): 63, 53, 52, (328,10,0): 63, 53, 52, (328,11,0): 64, 54, 53, (328,12,0): 65, 55, 54, (328,13,0): 66, 56, 55, (328,14,0): 66, 56, 55, (328,15,0): 67, 57, 56, (328,16,0): 61, 49, 49, (328,17,0): 61, 49, 49, (328,18,0): 63, 49, 49, (328,19,0): 63, 49, 49, (328,20,0): 63, 49, 49, (328,21,0): 63, 49, 49, (328,22,0): 64, 48, 49, (328,23,0): 64, 48, 49, (328,24,0): 65, 46, 48, (328,25,0): 65, 46, 48, (328,26,0): 65, 46, 48, (328,27,0): 65, 46, 48, (328,28,0): 66, 46, 48, (328,29,0): 66, 46, 48, (328,30,0): 66, 46, 48, (328,31,0): 66, 46, 48, (328,32,0): 66, 45, 50, (328,33,0): 66, 45, 50, (328,34,0): 67, 45, 48, (328,35,0): 69, 44, 48, (328,36,0): 72, 46, 49, (328,37,0): 74, 48, 49, (328,38,0): 78, 50, 49, (328,39,0): 80, 50, 48, (328,40,0): 85, 51, 49, (328,41,0): 88, 53, 49, (328,42,0): 90, 55, 49, (328,43,0): 96, 59, 51, (328,44,0): 100, 61, 54, (328,45,0): 105, 65, 57, (328,46,0): 107, 67, 59, (328,47,0): 111, 68, 61, (328,48,0): 117, 72, 66, (328,49,0): 119, 72, 66, (328,50,0): 118, 71, 61, (328,51,0): 120, 72, 58, (328,52,0): 122, 73, 56, (328,53,0): 125, 77, 55, (328,54,0): 132, 80, 58, (328,55,0): 136, 82, 58, (328,56,0): 142, 86, 63, (328,57,0): 144, 87, 60, (328,58,0): 149, 90, 60, (328,59,0): 154, 94, 58, (328,60,0): 161, 102, 60, (328,61,0): 176, 115, 68, (328,62,0): 190, 130, 76, (328,63,0): 200, 142, 79, (328,64,0): 204, 152, 79, (328,65,0): 200, 151, 74, (328,66,0): 196, 149, 71, (328,67,0): 195, 148, 70, (328,68,0): 193, 147, 69, (328,69,0): 194, 148, 70, (328,70,0): 192, 149, 71, (328,71,0): 192, 149, 71, (328,72,0): 195, 154, 75, (328,73,0): 193, 154, 75, (328,74,0): 193, 154, 77, (328,75,0): 193, 156, 78, (328,76,0): 195, 158, 80, (328,77,0): 196, 160, 82, (328,78,0): 198, 162, 84, (328,79,0): 200, 164, 86, (328,80,0): 200, 165, 84, (328,81,0): 199, 164, 82, (328,82,0): 200, 163, 82, (328,83,0): 198, 163, 79, (328,84,0): 199, 164, 82, (328,85,0): 198, 166, 81, (328,86,0): 200, 168, 83, (328,87,0): 201, 169, 84, (328,88,0): 206, 176, 90, (328,89,0): 205, 175, 87, (328,90,0): 201, 174, 85, (328,91,0): 200, 173, 84, (328,92,0): 199, 174, 82, (328,93,0): 200, 175, 83, (328,94,0): 202, 177, 85, (328,95,0): 203, 178, 86, (328,96,0): 201, 178, 85, (328,97,0): 199, 178, 87, (328,98,0): 198, 179, 87, (328,99,0): 199, 180, 88, (328,100,0): 199, 180, 88, (328,101,0): 198, 181, 89, (328,102,0): 197, 182, 89, (328,103,0): 197, 182, 89, (328,104,0): 197, 184, 92, (328,105,0): 196, 185, 93, (328,106,0): 195, 186, 95, (328,107,0): 196, 187, 96, (328,108,0): 195, 188, 98, (328,109,0): 196, 189, 99, (328,110,0): 195, 190, 99, (328,111,0): 197, 190, 100, (328,112,0): 200, 191, 100, (328,113,0): 200, 191, 98, (328,114,0): 199, 188, 96, (328,115,0): 198, 189, 96, (328,116,0): 198, 189, 96, (328,117,0): 198, 189, 96, (328,118,0): 200, 191, 98, (328,119,0): 198, 192, 98, (328,120,0): 199, 193, 99, (328,121,0): 199, 194, 100, (328,122,0): 200, 195, 101, (328,123,0): 200, 197, 102, (328,124,0): 202, 197, 103, (328,125,0): 203, 200, 105, (328,126,0): 204, 201, 106, (328,127,0): 205, 201, 104, (328,128,0): 214, 209, 107, (328,129,0): 214, 207, 103, (328,130,0): 212, 203, 102, (328,131,0): 209, 196, 100, (328,132,0): 204, 187, 99, (328,133,0): 194, 173, 90, (328,134,0): 181, 157, 83, (328,135,0): 171, 147, 77, (328,136,0): 167, 139, 76, (328,137,0): 159, 130, 72, (328,138,0): 150, 120, 66, (328,139,0): 145, 115, 63, (328,140,0): 142, 114, 64, (328,141,0): 138, 112, 63, (328,142,0): 132, 106, 57, (328,143,0): 124, 100, 52, (328,144,0): 128, 104, 60, (328,145,0): 128, 105, 61, (328,146,0): 129, 108, 61, (328,147,0): 131, 113, 63, (328,148,0): 135, 118, 66, (328,149,0): 140, 123, 71, (328,150,0): 146, 126, 75, (328,151,0): 150, 128, 78, (328,152,0): 143, 119, 71, (328,153,0): 141, 118, 68, (328,154,0): 142, 119, 67, (328,155,0): 146, 127, 69, (328,156,0): 149, 135, 70, (328,157,0): 160, 152, 80, (328,158,0): 185, 182, 103, (328,159,0): 213, 211, 126, (328,160,0): 239, 232, 142, (328,161,0): 243, 232, 142, (328,162,0): 246, 235, 145, (328,163,0): 248, 237, 147, (328,164,0): 249, 238, 148, (328,165,0): 249, 238, 148, (328,166,0): 248, 237, 147, (328,167,0): 247, 236, 146, (328,168,0): 248, 237, 147, (328,169,0): 248, 237, 147, (328,170,0): 249, 238, 148, (328,171,0): 249, 238, 148, (328,172,0): 250, 239, 149, (328,173,0): 250, 239, 149, (328,174,0): 251, 240, 150, (328,175,0): 251, 240, 150, (328,176,0): 252, 238, 149, (328,177,0): 253, 239, 150, (328,178,0): 254, 241, 149, (328,179,0): 255, 242, 148, (328,180,0): 255, 244, 150, (328,181,0): 255, 245, 149, (328,182,0): 255, 247, 149, (328,183,0): 255, 247, 149, (328,184,0): 255, 245, 147, (328,185,0): 255, 244, 146, (328,186,0): 254, 241, 145, (328,187,0): 253, 240, 146, (328,188,0): 251, 238, 144, (328,189,0): 249, 236, 144, (328,190,0): 247, 233, 144, (328,191,0): 245, 233, 147, (328,192,0): 242, 234, 151, (328,193,0): 240, 235, 153, (328,194,0): 240, 233, 153, (328,195,0): 239, 234, 152, (328,196,0): 239, 232, 152, (328,197,0): 238, 233, 151, (328,198,0): 238, 231, 151, (328,199,0): 237, 232, 150, (328,200,0): 240, 233, 153, (328,201,0): 238, 233, 151, (328,202,0): 238, 231, 151, (328,203,0): 236, 231, 149, (328,204,0): 238, 231, 151, (328,205,0): 238, 233, 151, (328,206,0): 241, 234, 154, (328,207,0): 242, 237, 153, (328,208,0): 241, 237, 148, (328,209,0): 240, 236, 145, (328,210,0): 240, 236, 145, (328,211,0): 241, 237, 146, (328,212,0): 242, 238, 149, (328,213,0): 244, 240, 151, (328,214,0): 246, 242, 155, (328,215,0): 248, 244, 157, (328,216,0): 249, 245, 158, (328,217,0): 249, 245, 158, (328,218,0): 249, 244, 160, (328,219,0): 250, 245, 161, (328,220,0): 250, 245, 163, (328,221,0): 251, 246, 164, (328,222,0): 251, 246, 164, (328,223,0): 251, 246, 164, (328,224,0): 251, 246, 164, (328,225,0): 251, 246, 165, (328,226,0): 250, 245, 164, (328,227,0): 246, 243, 164, (328,228,0): 246, 243, 164, (328,229,0): 245, 243, 166, (328,230,0): 245, 243, 168, (328,231,0): 244, 244, 170, (328,232,0): 241, 242, 172, (328,233,0): 242, 245, 176, (328,234,0): 244, 247, 180, (328,235,0): 243, 248, 182, (328,236,0): 243, 248, 182, (328,237,0): 241, 247, 183, (328,238,0): 240, 246, 184, (328,239,0): 237, 245, 185, (328,240,0): 233, 242, 189, (328,241,0): 232, 242, 192, (328,242,0): 230, 242, 192, (328,243,0): 228, 242, 193, (328,244,0): 225, 241, 194, (328,245,0): 220, 239, 193, (328,246,0): 216, 237, 194, (328,247,0): 211, 236, 194, (328,248,0): 209, 235, 196, (328,249,0): 205, 235, 197, (328,250,0): 200, 234, 199, (328,251,0): 198, 233, 200, (328,252,0): 196, 233, 200, (328,253,0): 194, 233, 202, (328,254,0): 193, 234, 202, (328,255,0): 192, 235, 205, (328,256,0): 195, 240, 211, (328,257,0): 194, 240, 212, (328,258,0): 193, 239, 213, (328,259,0): 191, 239, 213, (328,260,0): 191, 239, 215, (328,261,0): 190, 239, 217, (328,262,0): 190, 239, 220, (328,263,0): 188, 239, 222, (328,264,0): 186, 238, 225, (328,265,0): 185, 239, 226, (328,266,0): 185, 238, 230, (328,267,0): 183, 238, 232, (328,268,0): 184, 239, 234, (328,269,0): 183, 239, 236, (328,270,0): 183, 239, 238, (328,271,0): 181, 239, 241, (328,272,0): 177, 235, 246, (328,273,0): 174, 234, 245, (328,274,0): 173, 232, 246, (328,275,0): 171, 230, 244, (328,276,0): 171, 230, 244, (328,277,0): 172, 231, 247, (328,278,0): 173, 232, 248, (328,279,0): 174, 233, 249, (328,280,0): 175, 234, 252, (328,281,0): 177, 236, 254, (328,282,0): 179, 237, 255, (328,283,0): 180, 238, 255, (328,284,0): 179, 237, 255, (328,285,0): 176, 234, 255, (328,286,0): 172, 230, 252, (328,287,0): 171, 227, 252, (328,288,0): 181, 228, 255, (328,289,0): 182, 227, 255, (328,290,0): 181, 224, 255, (328,291,0): 178, 221, 253, (328,292,0): 176, 217, 249, (328,293,0): 172, 213, 243, (328,294,0): 169, 208, 239, (328,295,0): 167, 206, 235, (328,296,0): 161, 196, 226, (328,297,0): 157, 192, 222, (328,298,0): 154, 188, 216, (328,299,0): 151, 185, 213, (328,300,0): 151, 182, 211, (328,301,0): 147, 178, 207, (328,302,0): 143, 173, 201, (328,303,0): 139, 169, 197, (328,304,0): 141, 168, 195, (328,305,0): 136, 162, 189, (328,306,0): 130, 154, 180, (328,307,0): 126, 148, 172, (328,308,0): 125, 145, 169, (328,309,0): 125, 143, 165, (328,310,0): 124, 140, 163, (328,311,0): 123, 138, 159, (328,312,0): 119, 134, 155, (328,313,0): 119, 134, 157, (328,314,0): 121, 136, 159, (328,315,0): 122, 138, 163, (328,316,0): 127, 143, 168, (328,317,0): 132, 149, 175, (328,318,0): 137, 154, 182, (328,319,0): 139, 158, 188, (328,320,0): 139, 159, 192, (328,321,0): 143, 163, 198, (328,322,0): 146, 162, 196, (328,323,0): 141, 154, 186, (328,324,0): 140, 149, 180, (328,325,0): 143, 147, 176, (328,326,0): 142, 142, 168, (328,327,0): 139, 134, 157, (328,328,0): 127, 118, 137, (328,329,0): 114, 101, 118, (328,330,0): 103, 87, 100, (328,331,0): 99, 82, 92, (328,332,0): 94, 77, 85, (328,333,0): 89, 70, 76, (328,334,0): 83, 64, 68, (328,335,0): 84, 64, 66, (328,336,0): 80, 58, 60, (328,337,0): 80, 59, 58, (328,338,0): 81, 56, 59, (328,339,0): 82, 58, 58, (328,340,0): 83, 57, 60, (328,341,0): 84, 58, 59, (328,342,0): 87, 58, 62, (328,343,0): 88, 59, 61, (328,344,0): 93, 64, 68, (328,345,0): 95, 66, 68, (328,346,0): 99, 68, 73, (328,347,0): 103, 73, 75, (328,348,0): 108, 77, 82, (328,349,0): 111, 81, 83, (328,350,0): 113, 82, 87, (328,351,0): 115, 83, 86, (328,352,0): 125, 89, 93, (328,353,0): 126, 87, 92, (328,354,0): 124, 85, 90, (328,355,0): 124, 85, 90, (328,356,0): 125, 85, 93, (328,357,0): 127, 87, 95, (328,358,0): 129, 89, 97, (328,359,0): 131, 91, 99, (328,360,0): 136, 96, 105, (328,361,0): 136, 96, 105, (328,362,0): 135, 95, 106, (328,363,0): 133, 93, 104, (328,364,0): 132, 92, 103, (328,365,0): 131, 91, 102, (328,366,0): 130, 89, 103, (328,367,0): 127, 89, 100, (328,368,0): 120, 83, 91, (328,369,0): 119, 84, 91, (328,370,0): 118, 83, 90, (328,371,0): 118, 83, 90, (328,372,0): 120, 83, 91, (328,373,0): 122, 85, 93, (328,374,0): 123, 86, 94, (328,375,0): 124, 87, 95, (328,376,0): 130, 90, 99, (328,377,0): 128, 88, 97, (328,378,0): 127, 85, 95, (328,379,0): 130, 88, 98, (328,380,0): 133, 91, 101, (328,381,0): 135, 93, 103, (328,382,0): 134, 91, 101, (328,383,0): 134, 88, 98, (328,384,0): 132, 82, 91, (328,385,0): 125, 74, 81, (328,386,0): 114, 63, 70, (328,387,0): 105, 54, 59, (328,388,0): 102, 49, 55, (328,389,0): 99, 48, 53, (328,390,0): 98, 45, 51, (328,391,0): 95, 45, 48, (328,392,0): 100, 50, 53, (328,393,0): 99, 49, 50, (328,394,0): 96, 46, 47, (328,395,0): 93, 43, 44, (328,396,0): 91, 41, 42, (328,397,0): 90, 40, 41, (328,398,0): 90, 40, 39, (328,399,0): 89, 40, 43, (328,400,0): 79, 36, 43, (328,401,0): 78, 37, 45, (328,402,0): 77, 37, 45, (328,403,0): 76, 36, 44, (328,404,0): 76, 36, 44, (328,405,0): 73, 37, 41, (328,406,0): 73, 37, 41, (328,407,0): 72, 36, 40, (328,408,0): 75, 41, 42, (328,409,0): 74, 40, 41, (328,410,0): 73, 39, 40, (328,411,0): 71, 40, 38, (328,412,0): 72, 41, 39, (328,413,0): 75, 44, 42, (328,414,0): 78, 47, 44, (328,415,0): 79, 48, 43, (328,416,0): 85, 50, 44, (328,417,0): 93, 59, 49, (328,418,0): 102, 68, 58, (328,419,0): 107, 78, 62, (328,420,0): 113, 88, 68, (328,421,0): 124, 104, 79, (328,422,0): 139, 122, 94, (328,423,0): 148, 137, 105, (328,424,0): 159, 150, 117, (328,425,0): 157, 155, 117, (328,426,0): 157, 159, 120, (328,427,0): 156, 162, 124, (328,428,0): 157, 165, 126, (328,429,0): 159, 171, 133, (328,430,0): 165, 177, 139, (328,431,0): 169, 182, 152, (328,432,0): 171, 182, 165, (328,433,0): 170, 181, 173, (328,434,0): 168, 179, 175, (328,435,0): 165, 175, 176, (328,436,0): 163, 172, 179, (328,437,0): 164, 171, 187, (328,438,0): 169, 175, 199, (328,439,0): 174, 179, 211, (328,440,0): 166, 169, 212, (328,441,0): 170, 173, 224, (328,442,0): 174, 176, 235, (328,443,0): 176, 177, 242, (328,444,0): 174, 177, 248, (328,445,0): 173, 175, 252, (328,446,0): 170, 171, 253, (328,447,0): 167, 167, 253, (328,448,0): 163, 167, 255, (328,449,0): 161, 165, 255, (328,450,0): 160, 162, 249, (328,451,0): 163, 160, 247, (328,452,0): 165, 160, 242, (328,453,0): 164, 156, 233, (328,454,0): 158, 146, 218, (328,455,0): 154, 140, 202, (328,456,0): 148, 131, 186, (328,457,0): 143, 124, 170, (328,458,0): 139, 117, 156, (328,459,0): 139, 114, 144, (328,460,0): 141, 116, 138, (328,461,0): 142, 115, 132, (328,462,0): 137, 109, 123, (328,463,0): 131, 106, 112, (328,464,0): 137, 113, 111, (328,465,0): 138, 118, 111, (328,466,0): 141, 121, 112, (328,467,0): 140, 120, 111, (328,468,0): 132, 112, 101, (328,469,0): 119, 99, 88, (328,470,0): 105, 85, 74, (328,471,0): 96, 76, 65, (328,472,0): 89, 71, 59, (328,473,0): 90, 72, 62, (328,474,0): 89, 70, 63, (328,475,0): 87, 68, 62, (328,476,0): 85, 64, 61, (328,477,0): 85, 65, 64, (328,478,0): 90, 69, 68, (328,479,0): 93, 74, 68, (328,480,0): 94, 76, 62, (328,481,0): 97, 80, 62, (328,482,0): 102, 83, 66, (328,483,0): 103, 84, 69, (328,484,0): 103, 81, 67, (328,485,0): 97, 75, 62, (328,486,0): 92, 68, 58, (328,487,0): 86, 63, 55, (328,488,0): 81, 58, 52, (328,489,0): 77, 56, 51, (328,490,0): 73, 53, 52, (328,491,0): 70, 52, 50, (328,492,0): 68, 52, 52, (328,493,0): 68, 54, 54, (328,494,0): 69, 57, 57, (328,495,0): 71, 59, 59, (328,496,0): 76, 64, 64, (328,497,0): 78, 64, 64, (328,498,0): 78, 64, 64, (328,499,0): 78, 64, 64, (328,500,0): 79, 65, 65, (328,501,0): 79, 65, 65, (328,502,0): 79, 64, 67, (328,503,0): 79, 64, 67, (328,504,0): 79, 62, 68, (328,505,0): 78, 63, 70, (328,506,0): 79, 63, 73, (328,507,0): 83, 67, 78, (328,508,0): 86, 70, 83, (328,509,0): 86, 70, 83, (328,510,0): 81, 64, 80, (328,511,0): 77, 61, 74, (328,512,0): 79, 63, 74, (328,513,0): 79, 62, 72, (328,514,0): 77, 59, 71, (328,515,0): 77, 57, 69, (328,516,0): 78, 58, 70, (328,517,0): 85, 63, 75, (328,518,0): 94, 73, 82, (328,519,0): 102, 81, 88, (328,520,0): 102, 81, 86, (328,521,0): 107, 88, 92, (328,522,0): 109, 92, 98, (328,523,0): 106, 90, 101, (328,524,0): 100, 86, 103, (328,525,0): 103, 89, 112, (328,526,0): 116, 101, 130, (328,527,0): 127, 114, 144, (328,528,0): 123, 112, 142, (328,529,0): 121, 111, 138, (328,530,0): 124, 116, 140, (328,531,0): 135, 130, 152, (328,532,0): 144, 143, 161, (328,533,0): 150, 151, 169, (328,534,0): 159, 162, 179, (328,535,0): 169, 172, 189, (328,536,0): 166, 167, 187, (328,537,0): 168, 167, 185, (328,538,0): 163, 159, 176, (328,539,0): 152, 144, 159, (328,540,0): 145, 131, 144, (328,541,0): 142, 127, 134, (328,542,0): 137, 118, 120, (328,543,0): 131, 109, 111, (328,544,0): 125, 99, 100, (328,545,0): 116, 87, 89, (328,546,0): 96, 70, 73, (328,547,0): 80, 54, 57, (328,548,0): 68, 43, 46, (328,549,0): 64, 39, 42, (328,550,0): 60, 38, 41, (328,551,0): 59, 39, 41, (328,552,0): 61, 40, 45, (328,553,0): 59, 40, 44, (328,554,0): 54, 38, 41, (328,555,0): 52, 36, 39, (328,556,0): 49, 34, 39, (328,557,0): 48, 33, 38, (328,558,0): 45, 33, 37, (328,559,0): 45, 33, 37, (328,560,0): 42, 30, 32, (328,561,0): 45, 33, 33, (328,562,0): 51, 39, 39, (328,563,0): 57, 45, 45, (328,564,0): 63, 51, 51, (328,565,0): 67, 55, 55, (328,566,0): 69, 57, 57, (328,567,0): 70, 58, 58, (328,568,0): 73, 61, 61, (328,569,0): 74, 62, 62, (328,570,0): 74, 62, 62, (328,571,0): 74, 62, 62, (328,572,0): 72, 60, 60, (328,573,0): 70, 58, 58, (328,574,0): 67, 55, 55, (328,575,0): 67, 53, 53, (328,576,0): 76, 60, 60, (328,577,0): 78, 60, 58, (328,578,0): 77, 59, 57, (328,579,0): 76, 58, 56, (328,580,0): 74, 56, 54, (328,581,0): 71, 53, 51, (328,582,0): 69, 51, 49, (328,583,0): 68, 50, 48, (328,584,0): 70, 52, 50, (328,585,0): 67, 49, 47, (328,586,0): 65, 47, 45, (328,587,0): 66, 48, 46, (328,588,0): 68, 50, 48, (328,589,0): 69, 51, 49, (328,590,0): 67, 49, 47, (328,591,0): 63, 47, 47, (328,592,0): 62, 50, 50, (328,593,0): 61, 51, 50, (328,594,0): 60, 50, 49, (328,595,0): 60, 50, 49, (328,596,0): 58, 48, 47, (328,597,0): 56, 46, 45, (328,598,0): 55, 45, 44, (328,599,0): 54, 44, 43, (329,0,0): 66, 56, 55, (329,1,0): 66, 56, 55, (329,2,0): 66, 56, 55, (329,3,0): 65, 55, 54, (329,4,0): 65, 55, 54, (329,5,0): 64, 54, 53, (329,6,0): 64, 54, 53, (329,7,0): 63, 53, 52, (329,8,0): 64, 54, 53, (329,9,0): 64, 54, 53, (329,10,0): 64, 54, 53, (329,11,0): 64, 54, 53, (329,12,0): 65, 55, 54, (329,13,0): 65, 55, 54, (329,14,0): 65, 55, 54, (329,15,0): 65, 55, 54, (329,16,0): 62, 50, 50, (329,17,0): 62, 50, 50, (329,18,0): 64, 50, 50, (329,19,0): 64, 50, 50, (329,20,0): 64, 50, 50, (329,21,0): 64, 50, 50, (329,22,0): 65, 49, 50, (329,23,0): 65, 49, 50, (329,24,0): 65, 46, 48, (329,25,0): 65, 46, 48, (329,26,0): 65, 46, 48, (329,27,0): 65, 46, 48, (329,28,0): 66, 46, 48, (329,29,0): 66, 46, 48, (329,30,0): 66, 46, 48, (329,31,0): 66, 46, 48, (329,32,0): 67, 46, 51, (329,33,0): 66, 45, 50, (329,34,0): 67, 45, 48, (329,35,0): 68, 46, 49, (329,36,0): 71, 46, 49, (329,37,0): 74, 48, 49, (329,38,0): 78, 49, 51, (329,39,0): 79, 51, 50, (329,40,0): 83, 52, 50, (329,41,0): 86, 52, 50, (329,42,0): 88, 55, 50, (329,43,0): 93, 58, 52, (329,44,0): 98, 61, 55, (329,45,0): 101, 64, 56, (329,46,0): 105, 66, 59, (329,47,0): 107, 66, 60, (329,48,0): 114, 71, 65, (329,49,0): 116, 71, 65, (329,50,0): 117, 73, 62, (329,51,0): 121, 75, 60, (329,52,0): 124, 77, 59, (329,53,0): 130, 79, 58, (329,54,0): 134, 82, 60, (329,55,0): 137, 83, 57, (329,56,0): 143, 87, 62, (329,57,0): 145, 88, 61, (329,58,0): 150, 91, 61, (329,59,0): 154, 96, 59, (329,60,0): 162, 103, 61, (329,61,0): 173, 115, 67, (329,62,0): 187, 130, 77, (329,63,0): 197, 141, 80, (329,64,0): 204, 152, 79, (329,65,0): 201, 152, 73, (329,66,0): 199, 152, 72, (329,67,0): 198, 151, 71, (329,68,0): 197, 150, 72, (329,69,0): 196, 150, 72, (329,70,0): 195, 149, 71, (329,71,0): 193, 150, 71, (329,72,0): 197, 154, 75, (329,73,0): 196, 155, 75, (329,74,0): 196, 155, 75, (329,75,0): 195, 157, 76, (329,76,0): 197, 159, 78, (329,77,0): 199, 161, 80, (329,78,0): 200, 163, 83, (329,79,0): 202, 165, 84, (329,80,0): 203, 165, 84, (329,81,0): 202, 164, 81, (329,82,0): 202, 164, 79, (329,83,0): 201, 165, 79, (329,84,0): 201, 165, 79, (329,85,0): 201, 167, 80, (329,86,0): 203, 169, 82, (329,87,0): 202, 170, 83, (329,88,0): 206, 174, 87, (329,89,0): 205, 175, 85, (329,90,0): 204, 174, 86, (329,91,0): 201, 174, 83, (329,92,0): 201, 174, 83, (329,93,0): 201, 176, 84, (329,94,0): 202, 177, 85, (329,95,0): 202, 177, 85, (329,96,0): 202, 178, 88, (329,97,0): 200, 179, 88, (329,98,0): 199, 180, 88, (329,99,0): 200, 181, 89, (329,100,0): 198, 181, 89, (329,101,0): 199, 182, 90, (329,102,0): 198, 183, 90, (329,103,0): 199, 184, 91, (329,104,0): 199, 186, 92, (329,105,0): 197, 186, 94, (329,106,0): 197, 188, 95, (329,107,0): 197, 188, 97, (329,108,0): 196, 189, 99, (329,109,0): 197, 190, 100, (329,110,0): 196, 190, 102, (329,111,0): 196, 190, 102, (329,112,0): 198, 191, 101, (329,113,0): 198, 191, 101, (329,114,0): 198, 188, 99, (329,115,0): 196, 189, 99, (329,116,0): 196, 189, 99, (329,117,0): 195, 190, 99, (329,118,0): 198, 191, 101, (329,119,0): 197, 192, 101, (329,120,0): 198, 193, 102, (329,121,0): 198, 194, 103, (329,122,0): 199, 195, 104, (329,123,0): 198, 197, 105, (329,124,0): 201, 197, 106, (329,125,0): 200, 199, 107, (329,126,0): 201, 200, 108, (329,127,0): 202, 202, 106, (329,128,0): 209, 207, 107, (329,129,0): 209, 205, 105, (329,130,0): 208, 202, 104, (329,131,0): 208, 198, 103, (329,132,0): 203, 189, 101, (329,133,0): 193, 175, 93, (329,134,0): 181, 159, 84, (329,135,0): 172, 148, 78, (329,136,0): 167, 139, 76, (329,137,0): 159, 130, 72, (329,138,0): 150, 120, 66, (329,139,0): 143, 115, 65, (329,140,0): 141, 115, 66, (329,141,0): 137, 114, 64, (329,142,0): 131, 107, 59, (329,143,0): 125, 103, 56, (329,144,0): 126, 103, 61, (329,145,0): 127, 104, 62, (329,146,0): 126, 108, 62, (329,147,0): 128, 112, 63, (329,148,0): 132, 116, 65, (329,149,0): 136, 120, 68, (329,150,0): 140, 123, 71, (329,151,0): 144, 124, 73, (329,152,0): 142, 120, 71, (329,153,0): 140, 118, 69, (329,154,0): 142, 120, 70, (329,155,0): 144, 127, 71, (329,156,0): 148, 137, 73, (329,157,0): 161, 157, 84, (329,158,0): 187, 188, 110, (329,159,0): 214, 216, 132, (329,160,0): 237, 233, 144, (329,161,0): 240, 233, 143, (329,162,0): 243, 236, 146, (329,163,0): 245, 238, 148, (329,164,0): 246, 239, 149, (329,165,0): 246, 239, 149, (329,166,0): 245, 238, 148, (329,167,0): 245, 238, 148, (329,168,0): 245, 238, 148, (329,169,0): 245, 238, 148, (329,170,0): 246, 239, 149, (329,171,0): 246, 239, 149, (329,172,0): 247, 240, 150, (329,173,0): 247, 240, 150, (329,174,0): 248, 241, 151, (329,175,0): 248, 241, 151, (329,176,0): 251, 240, 151, (329,177,0): 252, 241, 152, (329,178,0): 253, 242, 152, (329,179,0): 254, 243, 151, (329,180,0): 255, 244, 152, (329,181,0): 255, 246, 151, (329,182,0): 255, 247, 150, (329,183,0): 255, 248, 151, (329,184,0): 255, 246, 149, (329,185,0): 255, 245, 148, (329,186,0): 253, 243, 148, (329,187,0): 251, 240, 148, (329,188,0): 249, 238, 146, (329,189,0): 247, 236, 146, (329,190,0): 245, 234, 145, (329,191,0): 244, 234, 149, (329,192,0): 240, 233, 152, (329,193,0): 237, 234, 153, (329,194,0): 239, 234, 153, (329,195,0): 236, 233, 152, (329,196,0): 238, 233, 152, (329,197,0): 235, 232, 151, (329,198,0): 237, 232, 151, (329,199,0): 234, 231, 150, (329,200,0): 238, 233, 152, (329,201,0): 235, 232, 151, (329,202,0): 236, 231, 150, (329,203,0): 234, 231, 150, (329,204,0): 236, 231, 150, (329,205,0): 236, 233, 152, (329,206,0): 240, 235, 154, (329,207,0): 241, 236, 154, (329,208,0): 240, 236, 149, (329,209,0): 240, 236, 145, (329,210,0): 241, 237, 148, (329,211,0): 242, 238, 149, (329,212,0): 243, 239, 150, (329,213,0): 245, 241, 154, (329,214,0): 246, 242, 155, (329,215,0): 247, 243, 156, (329,216,0): 248, 243, 159, (329,217,0): 248, 243, 159, (329,218,0): 248, 243, 159, (329,219,0): 249, 244, 162, (329,220,0): 249, 244, 162, (329,221,0): 250, 245, 163, (329,222,0): 250, 245, 164, (329,223,0): 251, 246, 165, (329,224,0): 247, 242, 161, (329,225,0): 245, 242, 163, (329,226,0): 247, 244, 165, (329,227,0): 246, 244, 167, (329,228,0): 246, 244, 167, (329,229,0): 242, 243, 167, (329,230,0): 240, 240, 166, (329,231,0): 238, 240, 167, (329,232,0): 237, 240, 171, (329,233,0): 236, 241, 174, (329,234,0): 238, 243, 177, (329,235,0): 238, 244, 180, (329,236,0): 238, 244, 180, (329,237,0): 235, 244, 181, (329,238,0): 234, 242, 182, (329,239,0): 232, 242, 182, (329,240,0): 232, 242, 190, (329,241,0): 231, 243, 193, (329,242,0): 231, 243, 195, (329,243,0): 229, 242, 196, (329,244,0): 225, 242, 197, (329,245,0): 221, 240, 195, (329,246,0): 217, 238, 197, (329,247,0): 213, 238, 198, (329,248,0): 209, 235, 198, (329,249,0): 207, 234, 199, (329,250,0): 202, 233, 201, (329,251,0): 199, 232, 201, (329,252,0): 197, 232, 202, (329,253,0): 196, 232, 204, (329,254,0): 194, 233, 204, (329,255,0): 193, 233, 206, (329,256,0): 196, 239, 212, (329,257,0): 195, 239, 214, (329,258,0): 194, 238, 213, (329,259,0): 193, 238, 215, (329,260,0): 193, 238, 217, (329,261,0): 190, 237, 217, (329,262,0): 189, 237, 221, (329,263,0): 189, 237, 223, (329,264,0): 186, 236, 225, (329,265,0): 185, 236, 227, (329,266,0): 185, 236, 231, (329,267,0): 184, 236, 232, (329,268,0): 182, 237, 234, (329,269,0): 182, 236, 236, (329,270,0): 180, 236, 235, (329,271,0): 178, 236, 238, (329,272,0): 175, 233, 244, (329,273,0): 173, 232, 246, (329,274,0): 171, 230, 244, (329,275,0): 170, 229, 245, (329,276,0): 170, 229, 245, (329,277,0): 171, 230, 248, (329,278,0): 172, 231, 249, (329,279,0): 173, 231, 251, (329,280,0): 171, 229, 249, (329,281,0): 173, 231, 253, (329,282,0): 175, 233, 255, (329,283,0): 175, 233, 255, (329,284,0): 174, 231, 255, (329,285,0): 171, 228, 255, (329,286,0): 168, 225, 252, (329,287,0): 168, 222, 250, (329,288,0): 177, 223, 255, (329,289,0): 177, 221, 255, (329,290,0): 177, 220, 255, (329,291,0): 175, 218, 252, (329,292,0): 173, 213, 248, (329,293,0): 170, 211, 243, (329,294,0): 167, 206, 239, (329,295,0): 165, 204, 235, (329,296,0): 162, 197, 229, (329,297,0): 159, 194, 224, (329,298,0): 155, 188, 219, (329,299,0): 153, 187, 215, (329,300,0): 153, 184, 213, (329,301,0): 149, 180, 209, (329,302,0): 145, 175, 203, (329,303,0): 142, 169, 198, (329,304,0): 139, 165, 192, (329,305,0): 134, 158, 186, (329,306,0): 129, 150, 177, (329,307,0): 126, 146, 171, (329,308,0): 126, 144, 168, (329,309,0): 126, 142, 165, (329,310,0): 124, 139, 160, (329,311,0): 124, 136, 158, (329,312,0): 122, 134, 156, (329,313,0): 122, 134, 156, (329,314,0): 122, 134, 158, (329,315,0): 122, 137, 160, (329,316,0): 127, 141, 167, (329,317,0): 132, 148, 173, (329,318,0): 138, 154, 180, (329,319,0): 141, 158, 186, (329,320,0): 139, 158, 191, (329,321,0): 144, 163, 196, (329,322,0): 148, 163, 196, (329,323,0): 145, 156, 188, (329,324,0): 143, 149, 181, (329,325,0): 145, 146, 176, (329,326,0): 142, 139, 166, (329,327,0): 138, 130, 153, (329,328,0): 127, 115, 135, (329,329,0): 114, 100, 117, (329,330,0): 103, 85, 99, (329,331,0): 99, 79, 90, (329,332,0): 95, 75, 84, (329,333,0): 88, 67, 72, (329,334,0): 83, 63, 65, (329,335,0): 84, 62, 64, (329,336,0): 82, 58, 58, (329,337,0): 83, 57, 56, (329,338,0): 86, 57, 59, (329,339,0): 87, 59, 58, (329,340,0): 89, 59, 61, (329,341,0): 92, 60, 61, (329,342,0): 93, 61, 64, (329,343,0): 94, 62, 63, (329,344,0): 98, 63, 67, (329,345,0): 100, 66, 67, (329,346,0): 104, 69, 73, (329,347,0): 108, 74, 75, (329,348,0): 112, 77, 81, (329,349,0): 116, 82, 83, (329,350,0): 119, 84, 88, (329,351,0): 121, 85, 87, (329,352,0): 127, 86, 90, (329,353,0): 128, 86, 88, (329,354,0): 128, 86, 88, (329,355,0): 127, 85, 87, (329,356,0): 128, 86, 90, (329,357,0): 128, 86, 90, (329,358,0): 129, 87, 91, (329,359,0): 130, 87, 94, (329,360,0): 127, 84, 91, (329,361,0): 127, 84, 91, (329,362,0): 126, 83, 92, (329,363,0): 126, 83, 92, (329,364,0): 125, 82, 91, (329,365,0): 124, 81, 91, (329,366,0): 124, 81, 91, (329,367,0): 123, 81, 91, (329,368,0): 121, 81, 89, (329,369,0): 120, 81, 86, (329,370,0): 120, 81, 86, (329,371,0): 120, 81, 86, (329,372,0): 122, 81, 87, (329,373,0): 123, 82, 88, (329,374,0): 125, 84, 90, (329,375,0): 126, 85, 91, (329,376,0): 128, 85, 92, (329,377,0): 128, 85, 92, (329,378,0): 131, 86, 93, (329,379,0): 134, 89, 96, (329,380,0): 138, 93, 100, (329,381,0): 138, 93, 100, (329,382,0): 136, 89, 97, (329,383,0): 134, 85, 91, (329,384,0): 125, 72, 78, (329,385,0): 119, 67, 71, (329,386,0): 110, 58, 62, (329,387,0): 104, 52, 56, (329,388,0): 102, 50, 54, (329,389,0): 102, 50, 52, (329,390,0): 101, 49, 53, (329,391,0): 100, 48, 50, (329,392,0): 99, 49, 50, (329,393,0): 98, 48, 49, (329,394,0): 95, 45, 46, (329,395,0): 93, 43, 44, (329,396,0): 91, 41, 42, (329,397,0): 90, 40, 41, (329,398,0): 90, 40, 39, (329,399,0): 89, 41, 41, (329,400,0): 83, 38, 43, (329,401,0): 79, 38, 44, (329,402,0): 79, 38, 46, (329,403,0): 77, 38, 43, (329,404,0): 77, 36, 42, (329,405,0): 75, 36, 39, (329,406,0): 74, 35, 40, (329,407,0): 72, 36, 38, (329,408,0): 75, 39, 41, (329,409,0): 74, 40, 39, (329,410,0): 75, 39, 39, (329,411,0): 74, 40, 38, (329,412,0): 75, 41, 40, (329,413,0): 76, 45, 42, (329,414,0): 80, 46, 44, (329,415,0): 82, 49, 44, (329,416,0): 90, 57, 50, (329,417,0): 95, 62, 53, (329,418,0): 101, 69, 58, (329,419,0): 103, 74, 60, (329,420,0): 105, 80, 60, (329,421,0): 111, 91, 67, (329,422,0): 122, 106, 80, (329,423,0): 129, 118, 90, (329,424,0): 148, 141, 113, (329,425,0): 151, 147, 118, (329,426,0): 152, 155, 126, (329,427,0): 153, 159, 131, (329,428,0): 152, 160, 136, (329,429,0): 155, 165, 141, (329,430,0): 159, 171, 147, (329,431,0): 164, 177, 159, (329,432,0): 165, 176, 168, (329,433,0): 165, 175, 176, (329,434,0): 164, 173, 178, (329,435,0): 161, 169, 180, (329,436,0): 159, 164, 184, (329,437,0): 159, 163, 190, (329,438,0): 164, 164, 200, (329,439,0): 168, 167, 211, (329,440,0): 171, 168, 221, (329,441,0): 172, 171, 229, (329,442,0): 178, 173, 239, (329,443,0): 180, 177, 248, (329,444,0): 181, 177, 254, (329,445,0): 177, 173, 255, (329,446,0): 171, 167, 254, (329,447,0): 165, 162, 251, (329,448,0): 169, 169, 255, (329,449,0): 165, 165, 251, (329,450,0): 163, 159, 244, (329,451,0): 159, 154, 236, (329,452,0): 160, 149, 227, (329,453,0): 159, 146, 216, (329,454,0): 160, 141, 207, (329,455,0): 159, 138, 195, (329,456,0): 151, 127, 175, (329,457,0): 148, 122, 161, (329,458,0): 144, 115, 146, (329,459,0): 143, 113, 137, (329,460,0): 146, 115, 131, (329,461,0): 146, 116, 126, (329,462,0): 142, 111, 116, (329,463,0): 137, 109, 106, (329,464,0): 142, 118, 108, (329,465,0): 142, 120, 106, (329,466,0): 144, 123, 106, (329,467,0): 142, 121, 104, (329,468,0): 136, 115, 98, (329,469,0): 127, 106, 89, (329,470,0): 117, 96, 79, (329,471,0): 109, 90, 75, (329,472,0): 102, 83, 68, (329,473,0): 100, 82, 68, (329,474,0): 98, 78, 67, (329,475,0): 92, 74, 64, (329,476,0): 89, 70, 63, (329,477,0): 90, 71, 64, (329,478,0): 96, 77, 71, (329,479,0): 101, 83, 73, (329,480,0): 104, 87, 71, (329,481,0): 107, 89, 69, (329,482,0): 108, 89, 72, (329,483,0): 108, 87, 70, (329,484,0): 104, 82, 68, (329,485,0): 97, 73, 61, (329,486,0): 89, 65, 55, (329,487,0): 85, 60, 53, (329,488,0): 81, 56, 51, (329,489,0): 78, 54, 50, (329,490,0): 73, 52, 51, (329,491,0): 70, 50, 49, (329,492,0): 68, 50, 50, (329,493,0): 68, 52, 53, (329,494,0): 69, 55, 55, (329,495,0): 69, 57, 57, (329,496,0): 70, 58, 60, (329,497,0): 70, 58, 60, (329,498,0): 73, 58, 61, (329,499,0): 73, 58, 61, (329,500,0): 73, 58, 61, (329,501,0): 73, 58, 61, (329,502,0): 74, 58, 61, (329,503,0): 74, 58, 61, (329,504,0): 76, 59, 65, (329,505,0): 75, 58, 66, (329,506,0): 77, 60, 70, (329,507,0): 79, 63, 73, (329,508,0): 82, 66, 79, (329,509,0): 82, 66, 79, (329,510,0): 76, 62, 77, (329,511,0): 74, 58, 71, (329,512,0): 75, 58, 68, (329,513,0): 77, 57, 66, (329,514,0): 75, 55, 66, (329,515,0): 73, 53, 64, (329,516,0): 74, 52, 64, (329,517,0): 79, 58, 67, (329,518,0): 87, 66, 75, (329,519,0): 94, 73, 78, (329,520,0): 95, 74, 79, (329,521,0): 101, 81, 83, (329,522,0): 105, 86, 90, (329,523,0): 101, 84, 92, (329,524,0): 98, 80, 94, (329,525,0): 101, 82, 102, (329,526,0): 112, 94, 120, (329,527,0): 120, 104, 130, (329,528,0): 119, 104, 127, (329,529,0): 114, 103, 120, (329,530,0): 116, 108, 123, (329,531,0): 127, 121, 135, (329,532,0): 136, 134, 147, (329,533,0): 145, 145, 157, (329,534,0): 157, 159, 172, (329,535,0): 168, 171, 186, (329,536,0): 166, 167, 185, (329,537,0): 168, 166, 187, (329,538,0): 162, 157, 177, (329,539,0): 151, 142, 159, (329,540,0): 144, 130, 145, (329,541,0): 142, 125, 135, (329,542,0): 138, 117, 124, (329,543,0): 131, 109, 112, (329,544,0): 124, 98, 101, (329,545,0): 113, 84, 86, (329,546,0): 92, 66, 69, (329,547,0): 77, 51, 54, (329,548,0): 69, 44, 47, (329,549,0): 66, 41, 44, (329,550,0): 62, 40, 43, (329,551,0): 60, 40, 42, (329,552,0): 62, 41, 46, (329,553,0): 59, 40, 44, (329,554,0): 55, 39, 42, (329,555,0): 52, 36, 39, (329,556,0): 48, 33, 38, (329,557,0): 47, 32, 37, (329,558,0): 44, 32, 36, (329,559,0): 44, 32, 34, (329,560,0): 41, 31, 30, (329,561,0): 43, 35, 33, (329,562,0): 49, 39, 38, (329,563,0): 55, 45, 44, (329,564,0): 61, 51, 50, (329,565,0): 66, 56, 55, (329,566,0): 69, 59, 58, (329,567,0): 71, 61, 60, (329,568,0): 72, 62, 61, (329,569,0): 72, 62, 61, (329,570,0): 73, 61, 61, (329,571,0): 72, 60, 60, (329,572,0): 70, 58, 58, (329,573,0): 68, 56, 56, (329,574,0): 66, 54, 54, (329,575,0): 67, 53, 52, (329,576,0): 76, 61, 58, (329,577,0): 77, 59, 57, (329,578,0): 76, 58, 56, (329,579,0): 74, 56, 54, (329,580,0): 72, 54, 52, (329,581,0): 71, 53, 51, (329,582,0): 70, 52, 50, (329,583,0): 69, 51, 49, (329,584,0): 68, 50, 48, (329,585,0): 66, 48, 46, (329,586,0): 64, 46, 44, (329,587,0): 65, 47, 45, (329,588,0): 67, 49, 47, (329,589,0): 67, 49, 47, (329,590,0): 66, 48, 46, (329,591,0): 61, 46, 43, (329,592,0): 60, 48, 48, (329,593,0): 59, 49, 48, (329,594,0): 58, 48, 47, (329,595,0): 58, 48, 47, (329,596,0): 57, 47, 46, (329,597,0): 56, 46, 45, (329,598,0): 55, 45, 44, (329,599,0): 54, 44, 43, (330,0,0): 67, 57, 55, (330,1,0): 66, 56, 54, (330,2,0): 66, 56, 54, (330,3,0): 65, 55, 53, (330,4,0): 65, 55, 53, (330,5,0): 64, 54, 52, (330,6,0): 64, 54, 52, (330,7,0): 64, 54, 52, (330,8,0): 65, 55, 53, (330,9,0): 65, 55, 53, (330,10,0): 65, 55, 53, (330,11,0): 65, 55, 53, (330,12,0): 64, 54, 52, (330,13,0): 64, 54, 52, (330,14,0): 64, 54, 52, (330,15,0): 64, 54, 52, (330,16,0): 62, 51, 49, (330,17,0): 62, 51, 49, (330,18,0): 64, 50, 49, (330,19,0): 64, 50, 49, (330,20,0): 64, 50, 49, (330,21,0): 64, 50, 49, (330,22,0): 65, 49, 49, (330,23,0): 65, 49, 49, (330,24,0): 66, 48, 48, (330,25,0): 66, 48, 48, (330,26,0): 66, 48, 48, (330,27,0): 66, 48, 48, (330,28,0): 67, 47, 48, (330,29,0): 67, 47, 48, (330,30,0): 67, 47, 48, (330,31,0): 67, 47, 48, (330,32,0): 67, 47, 49, (330,33,0): 67, 47, 49, (330,34,0): 67, 45, 48, (330,35,0): 68, 46, 49, (330,36,0): 71, 46, 49, (330,37,0): 72, 48, 48, (330,38,0): 75, 49, 50, (330,39,0): 78, 50, 49, (330,40,0): 80, 50, 48, (330,41,0): 83, 52, 49, (330,42,0): 85, 54, 49, (330,43,0): 90, 57, 50, (330,44,0): 93, 60, 53, (330,45,0): 97, 62, 56, (330,46,0): 101, 64, 58, (330,47,0): 103, 66, 60, (330,48,0): 109, 68, 64, (330,49,0): 113, 70, 64, (330,50,0): 117, 73, 62, (330,51,0): 123, 77, 62, (330,52,0): 128, 81, 61, (330,53,0): 134, 84, 61, (330,54,0): 137, 85, 61, (330,55,0): 140, 86, 60, (330,56,0): 144, 88, 63, (330,57,0): 147, 90, 61, (330,58,0): 151, 92, 62, (330,59,0): 154, 96, 59, (330,60,0): 161, 104, 61, (330,61,0): 171, 115, 66, (330,62,0): 185, 130, 76, (330,63,0): 194, 140, 78, (330,64,0): 203, 153, 80, (330,65,0): 203, 154, 75, (330,66,0): 204, 155, 76, (330,67,0): 203, 154, 75, (330,68,0): 202, 153, 74, (330,69,0): 200, 153, 73, (330,70,0): 199, 152, 72, (330,71,0): 199, 154, 73, (330,72,0): 201, 156, 75, (330,73,0): 199, 157, 75, (330,74,0): 199, 157, 75, (330,75,0): 199, 158, 76, (330,76,0): 201, 160, 78, (330,77,0): 203, 162, 80, (330,78,0): 205, 164, 82, (330,79,0): 207, 167, 82, (330,80,0): 207, 167, 82, (330,81,0): 206, 166, 79, (330,82,0): 206, 166, 79, (330,83,0): 205, 165, 78, (330,84,0): 206, 166, 79, (330,85,0): 205, 168, 80, (330,86,0): 206, 170, 82, (330,87,0): 206, 172, 83, (330,88,0): 207, 173, 84, (330,89,0): 205, 174, 83, (330,90,0): 205, 175, 85, (330,91,0): 204, 178, 85, (330,92,0): 204, 178, 85, (330,93,0): 203, 177, 84, (330,94,0): 202, 176, 83, (330,95,0): 201, 176, 84, (330,96,0): 204, 180, 90, (330,97,0): 202, 181, 90, (330,98,0): 202, 181, 90, (330,99,0): 202, 183, 91, (330,100,0): 200, 184, 89, (330,101,0): 201, 185, 90, (330,102,0): 200, 185, 90, (330,103,0): 200, 185, 90, (330,104,0): 201, 188, 92, (330,105,0): 199, 189, 94, (330,106,0): 199, 190, 97, (330,107,0): 199, 190, 99, (330,108,0): 198, 191, 101, (330,109,0): 198, 191, 101, (330,110,0): 197, 191, 103, (330,111,0): 198, 192, 104, (330,112,0): 197, 191, 103, (330,113,0): 197, 191, 103, (330,114,0): 196, 189, 101, (330,115,0): 195, 189, 101, (330,116,0): 195, 189, 101, (330,117,0): 194, 190, 101, (330,118,0): 197, 191, 103, (330,119,0): 196, 192, 103, (330,120,0): 197, 193, 104, (330,121,0): 195, 194, 104, (330,122,0): 196, 195, 105, (330,123,0): 196, 196, 106, (330,124,0): 198, 197, 107, (330,125,0): 198, 198, 108, (330,126,0): 199, 199, 109, (330,127,0): 199, 200, 107, (330,128,0): 202, 204, 107, (330,129,0): 203, 203, 105, (330,130,0): 205, 202, 107, (330,131,0): 204, 199, 107, (330,132,0): 203, 191, 105, (330,133,0): 194, 177, 97, (330,134,0): 181, 161, 88, (330,135,0): 173, 150, 82, (330,136,0): 165, 140, 76, (330,137,0): 157, 131, 72, (330,138,0): 148, 121, 66, (330,139,0): 142, 116, 65, (330,140,0): 139, 116, 66, (330,141,0): 137, 115, 66, (330,142,0): 131, 110, 63, (330,143,0): 127, 106, 59, (330,144,0): 124, 103, 60, (330,145,0): 125, 104, 61, (330,146,0): 126, 108, 62, (330,147,0): 128, 112, 63, (330,148,0): 129, 116, 64, (330,149,0): 131, 118, 66, (330,150,0): 133, 120, 68, (330,151,0): 135, 119, 68, (330,152,0): 140, 122, 74, (330,153,0): 139, 121, 71, (330,154,0): 140, 123, 71, (330,155,0): 142, 130, 72, (330,156,0): 150, 142, 77, (330,157,0): 166, 164, 90, (330,158,0): 193, 198, 118, (330,159,0): 218, 223, 139, (330,160,0): 234, 234, 146, (330,161,0): 237, 236, 146, (330,162,0): 238, 237, 147, (330,163,0): 240, 239, 149, (330,164,0): 241, 240, 150, (330,165,0): 241, 240, 150, (330,166,0): 241, 240, 150, (330,167,0): 241, 240, 150, (330,168,0): 241, 240, 150, (330,169,0): 241, 240, 150, (330,170,0): 242, 241, 151, (330,171,0): 242, 241, 151, (330,172,0): 243, 242, 152, (330,173,0): 243, 242, 152, (330,174,0): 244, 243, 153, (330,175,0): 246, 242, 153, (330,176,0): 250, 243, 155, (330,177,0): 252, 242, 155, (330,178,0): 253, 243, 156, (330,179,0): 254, 244, 155, (330,180,0): 255, 246, 155, (330,181,0): 255, 247, 154, (330,182,0): 255, 247, 154, (330,183,0): 255, 248, 153, (330,184,0): 255, 247, 152, (330,185,0): 255, 246, 153, (330,186,0): 253, 244, 151, (330,187,0): 251, 242, 151, (330,188,0): 249, 239, 150, (330,189,0): 246, 236, 149, (330,190,0): 245, 235, 148, (330,191,0): 242, 234, 151, (330,192,0): 239, 234, 153, (330,193,0): 235, 234, 154, (330,194,0): 236, 233, 154, (330,195,0): 234, 233, 153, (330,196,0): 235, 232, 153, (330,197,0): 233, 232, 152, (330,198,0): 234, 231, 152, (330,199,0): 233, 232, 152, (330,200,0): 235, 232, 153, (330,201,0): 233, 232, 152, (330,202,0): 234, 231, 152, (330,203,0): 233, 232, 152, (330,204,0): 234, 231, 152, (330,205,0): 234, 233, 153, (330,206,0): 237, 234, 155, (330,207,0): 238, 235, 154, (330,208,0): 240, 235, 151, (330,209,0): 240, 236, 147, (330,210,0): 242, 238, 151, (330,211,0): 243, 239, 152, (330,212,0): 244, 240, 153, (330,213,0): 245, 240, 156, (330,214,0): 245, 240, 156, (330,215,0): 245, 240, 156, (330,216,0): 246, 241, 159, (330,217,0): 246, 241, 159, (330,218,0): 247, 242, 160, (330,219,0): 247, 242, 161, (330,220,0): 248, 243, 162, (330,221,0): 248, 243, 162, (330,222,0): 249, 243, 165, (330,223,0): 249, 243, 165, (330,224,0): 241, 238, 159, (330,225,0): 242, 240, 163, (330,226,0): 245, 243, 166, (330,227,0): 245, 246, 170, (330,228,0): 244, 244, 170, (330,229,0): 240, 242, 169, (330,230,0): 236, 237, 167, (330,231,0): 233, 236, 167, (330,232,0): 232, 237, 170, (330,233,0): 232, 239, 172, (330,234,0): 233, 239, 175, (330,235,0): 231, 240, 177, (330,236,0): 231, 239, 179, (330,237,0): 229, 239, 178, (330,238,0): 228, 238, 178, (330,239,0): 227, 238, 182, (330,240,0): 229, 243, 190, (330,241,0): 229, 243, 194, (330,242,0): 230, 243, 197, (330,243,0): 228, 244, 197, (330,244,0): 226, 243, 199, (330,245,0): 223, 241, 199, (330,246,0): 219, 240, 199, (330,247,0): 215, 240, 200, (330,248,0): 210, 236, 199, (330,249,0): 208, 235, 200, (330,250,0): 204, 233, 202, (330,251,0): 201, 232, 201, (330,252,0): 200, 230, 202, (330,253,0): 197, 230, 203, (330,254,0): 197, 231, 206, (330,255,0): 196, 231, 207, (330,256,0): 198, 238, 214, (330,257,0): 194, 238, 215, (330,258,0): 194, 238, 215, (330,259,0): 192, 237, 216, (330,260,0): 192, 237, 217, (330,261,0): 189, 236, 218, (330,262,0): 188, 236, 222, (330,263,0): 187, 235, 223, (330,264,0): 185, 235, 226, (330,265,0): 184, 235, 228, (330,266,0): 183, 233, 230, (330,267,0): 181, 233, 231, (330,268,0): 178, 232, 232, (330,269,0): 178, 232, 234, (330,270,0): 177, 231, 233, (330,271,0): 176, 231, 236, (330,272,0): 173, 229, 242, (330,273,0): 171, 228, 245, (330,274,0): 170, 227, 244, (330,275,0): 170, 227, 246, (330,276,0): 170, 227, 246, (330,277,0): 171, 228, 248, (330,278,0): 172, 229, 249, (330,279,0): 172, 228, 251, (330,280,0): 168, 224, 249, (330,281,0): 169, 225, 250, (330,282,0): 170, 226, 253, (330,283,0): 171, 227, 254, (330,284,0): 169, 224, 254, (330,285,0): 167, 222, 252, (330,286,0): 164, 219, 250, (330,287,0): 163, 216, 248, (330,288,0): 171, 217, 253, (330,289,0): 172, 216, 253, (330,290,0): 172, 214, 252, (330,291,0): 171, 213, 251, (330,292,0): 171, 211, 247, (330,293,0): 168, 208, 243, (330,294,0): 166, 204, 240, (330,295,0): 164, 203, 236, (330,296,0): 163, 197, 232, (330,297,0): 160, 195, 227, (330,298,0): 158, 191, 222, (330,299,0): 156, 189, 220, (330,300,0): 156, 187, 216, (330,301,0): 151, 182, 211, (330,302,0): 146, 176, 204, (330,303,0): 144, 171, 200, (330,304,0): 137, 160, 191, (330,305,0): 134, 155, 184, (330,306,0): 128, 149, 176, (330,307,0): 125, 145, 170, (330,308,0): 127, 143, 168, (330,309,0): 127, 142, 165, (330,310,0): 127, 139, 161, (330,311,0): 126, 137, 159, (330,312,0): 124, 135, 155, (330,313,0): 123, 134, 154, (330,314,0): 122, 133, 155, (330,315,0): 122, 134, 156, (330,316,0): 127, 139, 163, (330,317,0): 131, 146, 169, (330,318,0): 138, 152, 178, (330,319,0): 142, 158, 184, (330,320,0): 140, 156, 189, (330,321,0): 146, 162, 196, (330,322,0): 149, 162, 196, (330,323,0): 147, 156, 187, (330,324,0): 146, 151, 181, (330,325,0): 147, 147, 175, (330,326,0): 142, 136, 162, (330,327,0): 135, 125, 149, (330,328,0): 126, 113, 133, (330,329,0): 114, 97, 113, (330,330,0): 103, 83, 95, (330,331,0): 99, 78, 87, (330,332,0): 96, 73, 81, (330,333,0): 88, 65, 71, (330,334,0): 83, 61, 64, (330,335,0): 84, 59, 62, (330,336,0): 86, 58, 57, (330,337,0): 87, 57, 55, (330,338,0): 90, 58, 59, (330,339,0): 92, 61, 59, (330,340,0): 96, 62, 63, (330,341,0): 99, 63, 63, (330,342,0): 103, 64, 67, (330,343,0): 104, 65, 66, (330,344,0): 105, 64, 68, (330,345,0): 106, 66, 67, (330,346,0): 109, 68, 72, (330,347,0): 112, 72, 73, (330,348,0): 115, 76, 79, (330,349,0): 119, 80, 81, (330,350,0): 120, 84, 86, (330,351,0): 123, 84, 85, (330,352,0): 126, 84, 85, (330,353,0): 128, 84, 85, (330,354,0): 129, 85, 86, (330,355,0): 129, 85, 86, (330,356,0): 128, 83, 86, (330,357,0): 128, 83, 86, (330,358,0): 127, 82, 85, (330,359,0): 126, 81, 86, (330,360,0): 115, 70, 75, (330,361,0): 115, 70, 75, (330,362,0): 116, 71, 78, (330,363,0): 116, 71, 78, (330,364,0): 116, 71, 78, (330,365,0): 117, 71, 81, (330,366,0): 117, 71, 81, (330,367,0): 117, 72, 79, (330,368,0): 120, 78, 82, (330,369,0): 118, 77, 81, (330,370,0): 119, 77, 81, (330,371,0): 119, 77, 81, (330,372,0): 121, 79, 83, (330,373,0): 122, 80, 84, (330,374,0): 126, 81, 86, (330,375,0): 128, 83, 88, (330,376,0): 128, 81, 87, (330,377,0): 130, 83, 89, (330,378,0): 133, 86, 92, (330,379,0): 137, 90, 96, (330,380,0): 141, 92, 98, (330,381,0): 138, 89, 95, (330,382,0): 132, 83, 89, (330,383,0): 128, 77, 82, (330,384,0): 117, 62, 67, (330,385,0): 112, 57, 60, (330,386,0): 106, 51, 54, (330,387,0): 104, 49, 52, (330,388,0): 105, 50, 53, (330,389,0): 106, 52, 52, (330,390,0): 105, 53, 55, (330,391,0): 104, 53, 52, (330,392,0): 98, 48, 47, (330,393,0): 96, 46, 45, (330,394,0): 94, 44, 43, (330,395,0): 92, 42, 41, (330,396,0): 89, 41, 39, (330,397,0): 89, 41, 39, (330,398,0): 89, 41, 39, (330,399,0): 89, 41, 41, (330,400,0): 85, 40, 43, (330,401,0): 83, 41, 45, (330,402,0): 82, 39, 46, (330,403,0): 79, 38, 42, (330,404,0): 79, 37, 41, (330,405,0): 77, 37, 38, (330,406,0): 76, 35, 39, (330,407,0): 74, 35, 36, (330,408,0): 77, 38, 39, (330,409,0): 75, 40, 38, (330,410,0): 78, 40, 39, (330,411,0): 77, 42, 38, (330,412,0): 78, 43, 41, (330,413,0): 80, 47, 42, (330,414,0): 83, 48, 44, (330,415,0): 83, 50, 43, (330,416,0): 90, 57, 48, (330,417,0): 94, 61, 52, (330,418,0): 97, 65, 54, (330,419,0): 96, 68, 54, (330,420,0): 97, 71, 54, (330,421,0): 100, 79, 58, (330,422,0): 107, 91, 68, (330,423,0): 112, 100, 78, (330,424,0): 132, 126, 104, (330,425,0): 138, 136, 115, (330,426,0): 145, 146, 128, (330,427,0): 149, 153, 138, (330,428,0): 148, 154, 142, (330,429,0): 149, 157, 146, (330,430,0): 153, 163, 155, (330,431,0): 159, 168, 165, (330,432,0): 157, 167, 169, (330,433,0): 159, 168, 177, (330,434,0): 161, 167, 181, (330,435,0): 159, 164, 186, (330,436,0): 158, 159, 190, (330,437,0): 158, 156, 195, (330,438,0): 162, 156, 204, (330,439,0): 164, 157, 211, (330,440,0): 174, 166, 226, (330,441,0): 173, 164, 231, (330,442,0): 175, 163, 237, (330,443,0): 180, 169, 247, (330,444,0): 183, 171, 255, (330,445,0): 176, 166, 253, (330,446,0): 168, 157, 249, (330,447,0): 161, 152, 241, (330,448,0): 162, 157, 241, (330,449,0): 158, 155, 234, (330,450,0): 156, 149, 227, (330,451,0): 152, 142, 215, (330,452,0): 151, 136, 205, (330,453,0): 155, 135, 198, (330,454,0): 162, 137, 195, (330,455,0): 169, 141, 190, (330,456,0): 161, 129, 170, (330,457,0): 157, 124, 155, (330,458,0): 153, 118, 142, (330,459,0): 152, 118, 134, (330,460,0): 157, 121, 131, (330,461,0): 158, 123, 127, (330,462,0): 152, 121, 119, (330,463,0): 147, 117, 109, (330,464,0): 148, 121, 102, (330,465,0): 146, 122, 98, (330,466,0): 143, 121, 97, (330,467,0): 140, 118, 94, (330,468,0): 136, 114, 91, (330,469,0): 132, 110, 87, (330,470,0): 127, 105, 82, (330,471,0): 124, 103, 82, (330,472,0): 118, 97, 76, (330,473,0): 112, 94, 74, (330,474,0): 108, 87, 68, (330,475,0): 98, 79, 62, (330,476,0): 93, 74, 59, (330,477,0): 95, 76, 62, (330,478,0): 102, 83, 69, (330,479,0): 108, 89, 74, (330,480,0): 116, 97, 80, (330,481,0): 117, 96, 79, (330,482,0): 115, 93, 79, (330,483,0): 111, 88, 74, (330,484,0): 103, 79, 67, (330,485,0): 96, 69, 58, (330,486,0): 88, 61, 52, (330,487,0): 83, 56, 49, (330,488,0): 80, 52, 48, (330,489,0): 77, 52, 48, (330,490,0): 73, 49, 49, (330,491,0): 69, 48, 47, (330,492,0): 67, 49, 49, (330,493,0): 65, 49, 49, (330,494,0): 67, 51, 52, (330,495,0): 67, 52, 55, (330,496,0): 64, 52, 56, (330,497,0): 64, 52, 56, (330,498,0): 66, 51, 56, (330,499,0): 66, 51, 56, (330,500,0): 66, 49, 55, (330,501,0): 66, 49, 55, (330,502,0): 68, 49, 55, (330,503,0): 68, 49, 55, (330,504,0): 72, 52, 61, (330,505,0): 70, 53, 61, (330,506,0): 71, 54, 64, (330,507,0): 74, 57, 67, (330,508,0): 75, 59, 72, (330,509,0): 75, 59, 72, (330,510,0): 70, 56, 69, (330,511,0): 69, 53, 64, (330,512,0): 72, 52, 61, (330,513,0): 73, 52, 59, (330,514,0): 71, 50, 59, (330,515,0): 69, 48, 57, (330,516,0): 68, 46, 58, (330,517,0): 71, 50, 59, (330,518,0): 77, 56, 65, (330,519,0): 83, 62, 67, (330,520,0): 85, 64, 69, (330,521,0): 91, 71, 73, (330,522,0): 97, 76, 81, (330,523,0): 96, 77, 83, (330,524,0): 93, 73, 85, (330,525,0): 95, 74, 91, (330,526,0): 104, 82, 105, (330,527,0): 110, 91, 113, (330,528,0): 111, 93, 109, (330,529,0): 104, 91, 101, (330,530,0): 105, 94, 102, (330,531,0): 113, 106, 113, (330,532,0): 123, 120, 127, (330,533,0): 135, 135, 143, (330,534,0): 150, 152, 164, (330,535,0): 165, 169, 181, (330,536,0): 167, 168, 186, (330,537,0): 169, 167, 188, (330,538,0): 162, 157, 177, (330,539,0): 151, 142, 159, (330,540,0): 143, 129, 144, (330,541,0): 142, 122, 133, (330,542,0): 137, 114, 122, (330,543,0): 130, 105, 109, (330,544,0): 122, 96, 99, (330,545,0): 108, 79, 81, (330,546,0): 87, 61, 64, (330,547,0): 74, 48, 51, (330,548,0): 69, 44, 47, (330,549,0): 69, 44, 47, (330,550,0): 66, 44, 47, (330,551,0): 62, 42, 44, (330,552,0): 63, 42, 47, (330,553,0): 60, 41, 45, (330,554,0): 55, 39, 42, (330,555,0): 52, 36, 39, (330,556,0): 47, 32, 37, (330,557,0): 45, 30, 35, (330,558,0): 42, 30, 34, (330,559,0): 41, 31, 32, (330,560,0): 41, 33, 31, (330,561,0): 41, 36, 32, (330,562,0): 46, 38, 35, (330,563,0): 52, 44, 41, (330,564,0): 58, 50, 47, (330,565,0): 65, 57, 54, (330,566,0): 70, 62, 59, (330,567,0): 73, 65, 62, (330,568,0): 73, 63, 61, (330,569,0): 72, 62, 60, (330,570,0): 71, 60, 58, (330,571,0): 69, 58, 56, (330,572,0): 67, 56, 54, (330,573,0): 66, 55, 53, (330,574,0): 68, 54, 53, (330,575,0): 67, 53, 52, (330,576,0): 75, 60, 57, (330,577,0): 75, 57, 55, (330,578,0): 72, 54, 52, (330,579,0): 70, 52, 50, (330,580,0): 68, 50, 48, (330,581,0): 68, 50, 48, (330,582,0): 68, 50, 48, (330,583,0): 69, 51, 49, (330,584,0): 65, 47, 45, (330,585,0): 63, 45, 43, (330,586,0): 61, 43, 41, (330,587,0): 62, 44, 42, (330,588,0): 65, 47, 45, (330,589,0): 66, 48, 46, (330,590,0): 64, 46, 44, (330,591,0): 60, 45, 42, (330,592,0): 57, 45, 45, (330,593,0): 56, 46, 45, (330,594,0): 55, 45, 44, (330,595,0): 55, 45, 44, (330,596,0): 55, 45, 44, (330,597,0): 55, 45, 44, (330,598,0): 55, 45, 44, (330,599,0): 55, 45, 44, (331,0,0): 67, 57, 55, (331,1,0): 67, 57, 55, (331,2,0): 67, 57, 55, (331,3,0): 66, 56, 54, (331,4,0): 65, 55, 53, (331,5,0): 65, 55, 53, (331,6,0): 65, 55, 53, (331,7,0): 64, 54, 52, (331,8,0): 67, 57, 55, (331,9,0): 66, 56, 54, (331,10,0): 66, 56, 54, (331,11,0): 65, 55, 53, (331,12,0): 64, 54, 52, (331,13,0): 63, 53, 51, (331,14,0): 63, 53, 51, (331,15,0): 62, 52, 50, (331,16,0): 63, 52, 50, (331,17,0): 63, 52, 50, (331,18,0): 65, 51, 50, (331,19,0): 65, 51, 50, (331,20,0): 65, 51, 50, (331,21,0): 65, 51, 50, (331,22,0): 66, 50, 50, (331,23,0): 66, 50, 50, (331,24,0): 67, 49, 49, (331,25,0): 67, 49, 49, (331,26,0): 67, 49, 49, (331,27,0): 67, 49, 49, (331,28,0): 68, 48, 49, (331,29,0): 68, 48, 49, (331,30,0): 68, 48, 49, (331,31,0): 68, 48, 49, (331,32,0): 68, 48, 50, (331,33,0): 67, 47, 49, (331,34,0): 68, 46, 49, (331,35,0): 68, 46, 49, (331,36,0): 71, 46, 49, (331,37,0): 72, 47, 50, (331,38,0): 75, 49, 50, (331,39,0): 76, 50, 49, (331,40,0): 78, 50, 49, (331,41,0): 81, 51, 49, (331,42,0): 84, 53, 50, (331,43,0): 86, 55, 50, (331,44,0): 89, 58, 53, (331,45,0): 94, 61, 54, (331,46,0): 96, 63, 56, (331,47,0): 98, 63, 57, (331,48,0): 104, 65, 60, (331,49,0): 108, 67, 61, (331,50,0): 116, 73, 64, (331,51,0): 122, 79, 63, (331,52,0): 130, 83, 63, (331,53,0): 136, 86, 63, (331,54,0): 139, 87, 63, (331,55,0): 142, 88, 60, (331,56,0): 146, 89, 62, (331,57,0): 147, 90, 61, (331,58,0): 152, 93, 63, (331,59,0): 155, 97, 60, (331,60,0): 160, 103, 60, (331,61,0): 170, 114, 67, (331,62,0): 181, 126, 72, (331,63,0): 190, 136, 74, (331,64,0): 203, 151, 78, (331,65,0): 204, 155, 76, (331,66,0): 209, 158, 79, (331,67,0): 207, 158, 79, (331,68,0): 206, 157, 78, (331,69,0): 204, 156, 74, (331,70,0): 204, 156, 74, (331,71,0): 203, 156, 74, (331,72,0): 205, 158, 76, (331,73,0): 204, 159, 74, (331,74,0): 204, 159, 74, (331,75,0): 204, 159, 74, (331,76,0): 206, 161, 76, (331,77,0): 208, 163, 78, (331,78,0): 211, 166, 81, (331,79,0): 212, 168, 81, (331,80,0): 213, 169, 82, (331,81,0): 212, 168, 79, (331,82,0): 211, 167, 78, (331,83,0): 209, 168, 78, (331,84,0): 210, 169, 79, (331,85,0): 210, 171, 80, (331,86,0): 209, 172, 83, (331,87,0): 209, 174, 82, (331,88,0): 208, 173, 83, (331,89,0): 208, 174, 84, (331,90,0): 208, 177, 86, (331,91,0): 208, 179, 87, (331,92,0): 208, 179, 87, (331,93,0): 205, 179, 86, (331,94,0): 203, 177, 84, (331,95,0): 201, 176, 83, (331,96,0): 206, 183, 90, (331,97,0): 204, 183, 92, (331,98,0): 205, 184, 93, (331,99,0): 205, 184, 91, (331,100,0): 205, 186, 92, (331,101,0): 203, 187, 91, (331,102,0): 204, 188, 92, (331,103,0): 203, 189, 92, (331,104,0): 205, 191, 94, (331,105,0): 204, 191, 95, (331,106,0): 202, 192, 97, (331,107,0): 201, 192, 99, (331,108,0): 201, 192, 101, (331,109,0): 199, 192, 102, (331,110,0): 200, 193, 105, (331,111,0): 199, 193, 105, (331,112,0): 197, 191, 105, (331,113,0): 196, 192, 105, (331,114,0): 195, 189, 105, (331,115,0): 194, 190, 103, (331,116,0): 194, 189, 105, (331,117,0): 194, 190, 103, (331,118,0): 196, 191, 107, (331,119,0): 194, 192, 105, (331,120,0): 195, 193, 108, (331,121,0): 194, 194, 106, (331,122,0): 195, 195, 109, (331,123,0): 193, 196, 107, (331,124,0): 196, 196, 110, (331,125,0): 195, 198, 109, (331,126,0): 195, 198, 111, (331,127,0): 194, 199, 109, (331,128,0): 195, 200, 106, (331,129,0): 195, 201, 105, (331,130,0): 198, 202, 108, (331,131,0): 201, 200, 110, (331,132,0): 201, 193, 110, (331,133,0): 194, 181, 103, (331,134,0): 183, 165, 93, (331,135,0): 176, 153, 85, (331,136,0): 165, 141, 77, (331,137,0): 157, 133, 73, (331,138,0): 147, 122, 66, (331,139,0): 140, 117, 65, (331,140,0): 139, 117, 67, (331,141,0): 137, 117, 67, (331,142,0): 131, 113, 65, (331,143,0): 127, 109, 63, (331,144,0): 124, 105, 63, (331,145,0): 125, 106, 64, (331,146,0): 127, 110, 66, (331,147,0): 127, 113, 64, (331,148,0): 128, 116, 66, (331,149,0): 130, 118, 66, (331,150,0): 130, 118, 66, (331,151,0): 131, 118, 66, (331,152,0): 139, 123, 74, (331,153,0): 139, 123, 72, (331,154,0): 139, 126, 74, (331,155,0): 143, 132, 76, (331,156,0): 151, 147, 83, (331,157,0): 171, 173, 100, (331,158,0): 197, 206, 127, (331,159,0): 220, 230, 144, (331,160,0): 231, 235, 150, (331,161,0): 233, 236, 149, (331,162,0): 234, 237, 150, (331,163,0): 235, 238, 151, (331,164,0): 237, 240, 153, (331,165,0): 237, 240, 153, (331,166,0): 238, 241, 154, (331,167,0): 238, 241, 154, (331,168,0): 237, 240, 153, (331,169,0): 237, 240, 153, (331,170,0): 238, 241, 154, (331,171,0): 238, 241, 154, (331,172,0): 239, 242, 155, (331,173,0): 239, 242, 155, (331,174,0): 240, 243, 156, (331,175,0): 242, 242, 156, (331,176,0): 248, 243, 159, (331,177,0): 248, 244, 157, (331,178,0): 250, 244, 158, (331,179,0): 249, 245, 156, (331,180,0): 251, 246, 155, (331,181,0): 251, 248, 155, (331,182,0): 252, 247, 155, (331,183,0): 252, 249, 156, (331,184,0): 253, 248, 156, (331,185,0): 251, 248, 155, (331,186,0): 250, 245, 154, (331,187,0): 247, 243, 152, (331,188,0): 246, 240, 152, (331,189,0): 243, 239, 152, (331,190,0): 242, 236, 152, (331,191,0): 240, 235, 153, (331,192,0): 235, 234, 152, (331,193,0): 233, 234, 154, (331,194,0): 235, 234, 154, (331,195,0): 232, 233, 153, (331,196,0): 234, 233, 153, (331,197,0): 231, 232, 152, (331,198,0): 233, 232, 152, (331,199,0): 231, 232, 152, (331,200,0): 233, 232, 152, (331,201,0): 231, 232, 152, (331,202,0): 233, 232, 152, (331,203,0): 231, 232, 152, (331,204,0): 234, 233, 153, (331,205,0): 233, 234, 154, (331,206,0): 235, 234, 154, (331,207,0): 236, 235, 153, (331,208,0): 237, 235, 150, (331,209,0): 240, 235, 151, (331,210,0): 242, 237, 153, (331,211,0): 243, 238, 154, (331,212,0): 244, 239, 155, (331,213,0): 244, 239, 157, (331,214,0): 243, 238, 156, (331,215,0): 243, 238, 157, (331,216,0): 244, 239, 158, (331,217,0): 244, 239, 158, (331,218,0): 245, 240, 159, (331,219,0): 245, 239, 161, (331,220,0): 246, 240, 162, (331,221,0): 246, 240, 162, (331,222,0): 247, 241, 165, (331,223,0): 245, 242, 165, (331,224,0): 241, 239, 162, (331,225,0): 240, 241, 165, (331,226,0): 242, 242, 168, (331,227,0): 243, 245, 170, (331,228,0): 242, 244, 171, (331,229,0): 239, 242, 171, (331,230,0): 236, 239, 170, (331,231,0): 232, 237, 170, (331,232,0): 231, 238, 171, (331,233,0): 229, 238, 173, (331,234,0): 229, 238, 175, (331,235,0): 228, 238, 177, (331,236,0): 227, 237, 177, (331,237,0): 226, 237, 179, (331,238,0): 225, 236, 180, (331,239,0): 223, 236, 182, (331,240,0): 225, 242, 190, (331,241,0): 225, 243, 195, (331,242,0): 226, 244, 196, (331,243,0): 226, 243, 198, (331,244,0): 225, 243, 201, (331,245,0): 222, 243, 202, (331,246,0): 220, 242, 203, (331,247,0): 219, 241, 203, (331,248,0): 212, 236, 202, (331,249,0): 209, 234, 202, (331,250,0): 206, 232, 203, (331,251,0): 204, 230, 203, (331,252,0): 200, 228, 203, (331,253,0): 200, 228, 205, (331,254,0): 199, 228, 206, (331,255,0): 196, 229, 208, (331,256,0): 198, 236, 215, (331,257,0): 194, 236, 216, (331,258,0): 193, 236, 216, (331,259,0): 192, 235, 216, (331,260,0): 190, 234, 217, (331,261,0): 189, 233, 218, (331,262,0): 186, 232, 221, (331,263,0): 185, 232, 222, (331,264,0): 182, 231, 225, (331,265,0): 182, 231, 227, (331,266,0): 180, 230, 229, (331,267,0): 178, 228, 229, (331,268,0): 176, 227, 230, (331,269,0): 173, 226, 230, (331,270,0): 172, 225, 229, (331,271,0): 170, 225, 232, (331,272,0): 169, 225, 240, (331,273,0): 168, 225, 244, (331,274,0): 169, 224, 244, (331,275,0): 168, 225, 245, (331,276,0): 169, 224, 245, (331,277,0): 169, 225, 248, (331,278,0): 170, 224, 248, (331,279,0): 170, 226, 251, (331,280,0): 167, 221, 249, (331,281,0): 166, 221, 251, (331,282,0): 168, 221, 252, (331,283,0): 167, 222, 253, (331,284,0): 167, 220, 254, (331,285,0): 164, 218, 252, (331,286,0): 163, 215, 252, (331,287,0): 163, 213, 250, (331,288,0): 168, 213, 252, (331,289,0): 169, 213, 252, (331,290,0): 170, 212, 252, (331,291,0): 170, 212, 252, (331,292,0): 170, 209, 248, (331,293,0): 168, 208, 244, (331,294,0): 167, 205, 242, (331,295,0): 165, 203, 239, (331,296,0): 164, 198, 233, (331,297,0): 162, 196, 231, (331,298,0): 160, 193, 226, (331,299,0): 158, 191, 222, (331,300,0): 158, 189, 218, (331,301,0): 153, 184, 213, (331,302,0): 148, 178, 206, (331,303,0): 145, 172, 201, (331,304,0): 136, 159, 190, (331,305,0): 134, 155, 186, (331,306,0): 129, 148, 178, (331,307,0): 129, 146, 174, (331,308,0): 130, 144, 171, (331,309,0): 131, 143, 169, (331,310,0): 130, 140, 165, (331,311,0): 127, 138, 160, (331,312,0): 124, 135, 157, (331,313,0): 123, 134, 154, (331,314,0): 121, 132, 154, (331,315,0): 122, 133, 155, (331,316,0): 126, 136, 161, (331,317,0): 132, 144, 168, (331,318,0): 139, 151, 177, (331,319,0): 141, 155, 182, (331,320,0): 140, 155, 188, (331,321,0): 146, 161, 194, (331,322,0): 151, 161, 196, (331,323,0): 150, 156, 188, (331,324,0): 151, 152, 183, (331,325,0): 150, 147, 176, (331,326,0): 142, 133, 160, (331,327,0): 134, 120, 145, (331,328,0): 127, 110, 129, (331,329,0): 113, 95, 111, (331,330,0): 102, 80, 93, (331,331,0): 98, 75, 85, (331,332,0): 97, 71, 80, (331,333,0): 90, 63, 68, (331,334,0): 85, 59, 62, (331,335,0): 87, 58, 60, (331,336,0): 88, 58, 56, (331,337,0): 91, 60, 57, (331,338,0): 96, 60, 60, (331,339,0): 101, 63, 62, (331,340,0): 104, 64, 65, (331,341,0): 107, 65, 66, (331,342,0): 110, 65, 68, (331,343,0): 111, 67, 68, (331,344,0): 110, 65, 68, (331,345,0): 110, 66, 67, (331,346,0): 111, 66, 69, (331,347,0): 112, 68, 69, (331,348,0): 112, 70, 72, (331,349,0): 114, 72, 73, (331,350,0): 116, 76, 77, (331,351,0): 118, 76, 77, (331,352,0): 121, 77, 76, (331,353,0): 123, 78, 75, (331,354,0): 124, 78, 78, (331,355,0): 125, 79, 79, (331,356,0): 124, 78, 78, (331,357,0): 122, 76, 78, (331,358,0): 120, 74, 76, (331,359,0): 118, 72, 74, (331,360,0): 107, 61, 64, (331,361,0): 108, 62, 65, (331,362,0): 109, 63, 66, (331,363,0): 111, 64, 70, (331,364,0): 112, 65, 71, (331,365,0): 114, 67, 73, (331,366,0): 115, 68, 76, (331,367,0): 115, 68, 74, (331,368,0): 119, 74, 77, (331,369,0): 118, 74, 75, (331,370,0): 118, 73, 76, (331,371,0): 120, 74, 76, (331,372,0): 121, 75, 78, (331,373,0): 124, 78, 80, (331,374,0): 128, 79, 83, (331,375,0): 129, 80, 83, (331,376,0): 130, 81, 85, (331,377,0): 134, 84, 87, (331,378,0): 137, 86, 91, (331,379,0): 139, 89, 92, (331,380,0): 138, 85, 91, (331,381,0): 132, 80, 84, (331,382,0): 124, 71, 77, (331,383,0): 118, 66, 70, (331,384,0): 109, 55, 55, (331,385,0): 107, 51, 50, (331,386,0): 102, 48, 48, (331,387,0): 102, 48, 48, (331,388,0): 105, 51, 51, (331,389,0): 107, 53, 53, (331,390,0): 105, 54, 53, (331,391,0): 104, 53, 52, (331,392,0): 96, 46, 45, (331,393,0): 95, 45, 44, (331,394,0): 93, 43, 42, (331,395,0): 90, 42, 40, (331,396,0): 89, 41, 39, (331,397,0): 88, 40, 38, (331,398,0): 88, 40, 38, (331,399,0): 87, 41, 41, (331,400,0): 88, 42, 45, (331,401,0): 86, 41, 44, (331,402,0): 85, 40, 45, (331,403,0): 84, 39, 42, (331,404,0): 82, 37, 40, (331,405,0): 79, 37, 38, (331,406,0): 78, 36, 37, (331,407,0): 76, 36, 36, (331,408,0): 78, 38, 38, (331,409,0): 79, 39, 37, (331,410,0): 80, 40, 38, (331,411,0): 81, 44, 38, (331,412,0): 83, 46, 40, (331,413,0): 83, 48, 42, (331,414,0): 87, 50, 44, (331,415,0): 86, 52, 43, (331,416,0): 85, 50, 44, (331,417,0): 88, 55, 46, (331,418,0): 92, 59, 50, (331,419,0): 91, 63, 51, (331,420,0): 94, 68, 53, (331,421,0): 97, 76, 57, (331,422,0): 103, 86, 68, (331,423,0): 107, 94, 75, (331,424,0): 119, 110, 93, (331,425,0): 128, 122, 108, (331,426,0): 139, 137, 125, (331,427,0): 145, 146, 140, (331,428,0): 146, 148, 145, (331,429,0): 146, 150, 151, (331,430,0): 150, 155, 159, (331,431,0): 156, 160, 169, (331,432,0): 152, 158, 170, (331,433,0): 156, 162, 178, (331,434,0): 160, 165, 187, (331,435,0): 163, 164, 194, (331,436,0): 163, 161, 200, (331,437,0): 166, 158, 205, (331,438,0): 168, 158, 211, (331,439,0): 172, 158, 217, (331,440,0): 173, 159, 221, (331,441,0): 165, 150, 217, (331,442,0): 162, 145, 216, (331,443,0): 166, 150, 225, (331,444,0): 170, 153, 233, (331,445,0): 164, 149, 230, (331,446,0): 157, 142, 227, (331,447,0): 152, 140, 222, (331,448,0): 142, 134, 211, (331,449,0): 145, 137, 210, (331,450,0): 148, 137, 206, (331,451,0): 148, 133, 200, (331,452,0): 150, 130, 191, (331,453,0): 157, 132, 187, (331,454,0): 170, 140, 190, (331,455,0): 184, 149, 191, (331,456,0): 178, 138, 172, (331,457,0): 173, 133, 159, (331,458,0): 170, 129, 147, (331,459,0): 169, 129, 138, (331,460,0): 173, 134, 137, (331,461,0): 172, 137, 135, (331,462,0): 168, 133, 127, (331,463,0): 163, 131, 118, (331,464,0): 155, 124, 103, (331,465,0): 150, 123, 96, (331,466,0): 145, 118, 91, (331,467,0): 140, 113, 86, (331,468,0): 136, 108, 84, (331,469,0): 134, 108, 83, (331,470,0): 134, 108, 85, (331,471,0): 134, 110, 86, (331,472,0): 131, 106, 84, (331,473,0): 124, 102, 79, (331,474,0): 115, 93, 72, (331,475,0): 105, 83, 62, (331,476,0): 99, 76, 58, (331,477,0): 100, 79, 60, (331,478,0): 107, 86, 69, (331,479,0): 114, 93, 76, (331,480,0): 120, 99, 82, (331,481,0): 118, 96, 82, (331,482,0): 113, 90, 76, (331,483,0): 106, 82, 70, (331,484,0): 100, 73, 62, (331,485,0): 91, 64, 55, (331,486,0): 84, 57, 50, (331,487,0): 80, 52, 48, (331,488,0): 78, 50, 47, (331,489,0): 77, 49, 48, (331,490,0): 73, 47, 48, (331,491,0): 68, 47, 46, (331,492,0): 66, 46, 47, (331,493,0): 65, 47, 47, (331,494,0): 66, 47, 49, (331,495,0): 64, 48, 51, (331,496,0): 62, 47, 52, (331,497,0): 62, 47, 52, (331,498,0): 62, 47, 52, (331,499,0): 62, 45, 51, (331,500,0): 62, 45, 51, (331,501,0): 64, 45, 51, (331,502,0): 64, 43, 50, (331,503,0): 64, 43, 50, (331,504,0): 66, 45, 54, (331,505,0): 67, 46, 55, (331,506,0): 67, 47, 58, (331,507,0): 67, 50, 60, (331,508,0): 68, 50, 62, (331,509,0): 67, 51, 62, (331,510,0): 65, 49, 60, (331,511,0): 64, 48, 58, (331,512,0): 69, 49, 58, (331,513,0): 70, 49, 56, (331,514,0): 69, 48, 57, (331,515,0): 66, 45, 54, (331,516,0): 64, 42, 54, (331,517,0): 65, 43, 55, (331,518,0): 70, 49, 58, (331,519,0): 74, 53, 60, (331,520,0): 76, 55, 60, (331,521,0): 83, 63, 65, (331,522,0): 89, 68, 73, (331,523,0): 91, 70, 77, (331,524,0): 89, 67, 79, (331,525,0): 90, 67, 83, (331,526,0): 97, 72, 93, (331,527,0): 102, 79, 99, (331,528,0): 103, 83, 94, (331,529,0): 96, 79, 85, (331,530,0): 94, 82, 86, (331,531,0): 101, 92, 95, (331,532,0): 111, 106, 110, (331,533,0): 123, 124, 129, (331,534,0): 143, 146, 155, (331,535,0): 160, 164, 176, (331,536,0): 171, 172, 190, (331,537,0): 173, 172, 190, (331,538,0): 166, 161, 181, (331,539,0): 155, 144, 161, (331,540,0): 146, 129, 145, (331,541,0): 141, 121, 132, (331,542,0): 133, 110, 118, (331,543,0): 127, 100, 105, (331,544,0): 120, 91, 95, (331,545,0): 103, 74, 76, (331,546,0): 82, 56, 59, (331,547,0): 71, 45, 48, (331,548,0): 70, 45, 48, (331,549,0): 73, 48, 51, (331,550,0): 69, 47, 50, (331,551,0): 64, 44, 46, (331,552,0): 64, 43, 48, (331,553,0): 61, 42, 46, (331,554,0): 55, 39, 42, (331,555,0): 51, 35, 38, (331,556,0): 47, 32, 37, (331,557,0): 44, 29, 34, (331,558,0): 41, 29, 33, (331,559,0): 39, 29, 30, (331,560,0): 41, 33, 31, (331,561,0): 40, 35, 31, (331,562,0): 45, 37, 34, (331,563,0): 50, 42, 39, (331,564,0): 56, 48, 45, (331,565,0): 65, 55, 53, (331,566,0): 71, 61, 59, (331,567,0): 75, 65, 63, (331,568,0): 73, 62, 60, (331,569,0): 71, 60, 58, (331,570,0): 70, 56, 55, (331,571,0): 67, 53, 52, (331,572,0): 66, 52, 51, (331,573,0): 65, 51, 50, (331,574,0): 67, 51, 51, (331,575,0): 68, 52, 52, (331,576,0): 73, 55, 53, (331,577,0): 70, 52, 50, (331,578,0): 66, 48, 46, (331,579,0): 63, 45, 43, (331,580,0): 62, 44, 42, (331,581,0): 63, 45, 43, (331,582,0): 65, 47, 45, (331,583,0): 66, 48, 46, (331,584,0): 63, 45, 43, (331,585,0): 61, 43, 41, (331,586,0): 59, 41, 39, (331,587,0): 61, 43, 41, (331,588,0): 63, 45, 43, (331,589,0): 64, 46, 44, (331,590,0): 63, 45, 43, (331,591,0): 59, 44, 41, (331,592,0): 54, 43, 41, (331,593,0): 53, 43, 42, (331,594,0): 53, 43, 42, (331,595,0): 52, 42, 41, (331,596,0): 52, 42, 41, (331,597,0): 53, 43, 42, (331,598,0): 54, 44, 43, (331,599,0): 55, 45, 44, (332,0,0): 68, 58, 56, (332,1,0): 67, 57, 55, (332,2,0): 67, 57, 55, (332,3,0): 67, 57, 55, (332,4,0): 66, 56, 54, (332,5,0): 65, 55, 53, (332,6,0): 65, 55, 53, (332,7,0): 65, 55, 53, (332,8,0): 67, 57, 55, (332,9,0): 66, 56, 54, (332,10,0): 66, 56, 54, (332,11,0): 65, 55, 53, (332,12,0): 64, 54, 52, (332,13,0): 63, 53, 51, (332,14,0): 63, 53, 51, (332,15,0): 62, 52, 50, (332,16,0): 65, 54, 52, (332,17,0): 65, 54, 52, (332,18,0): 67, 53, 52, (332,19,0): 67, 53, 52, (332,20,0): 67, 53, 52, (332,21,0): 67, 53, 52, (332,22,0): 68, 52, 52, (332,23,0): 68, 52, 52, (332,24,0): 68, 50, 50, (332,25,0): 68, 50, 50, (332,26,0): 68, 50, 50, (332,27,0): 68, 50, 50, (332,28,0): 69, 49, 50, (332,29,0): 69, 49, 50, (332,30,0): 69, 49, 50, (332,31,0): 69, 49, 50, (332,32,0): 69, 49, 51, (332,33,0): 68, 48, 50, (332,34,0): 68, 46, 49, (332,35,0): 68, 46, 49, (332,36,0): 68, 46, 48, (332,37,0): 69, 47, 49, (332,38,0): 73, 49, 49, (332,39,0): 75, 49, 48, (332,40,0): 78, 50, 49, (332,41,0): 79, 51, 48, (332,42,0): 82, 52, 50, (332,43,0): 84, 55, 51, (332,44,0): 87, 58, 54, (332,45,0): 90, 59, 54, (332,46,0): 92, 61, 56, (332,47,0): 95, 62, 57, (332,48,0): 100, 62, 59, (332,49,0): 105, 66, 59, (332,50,0): 114, 71, 62, (332,51,0): 121, 78, 62, (332,52,0): 129, 82, 62, (332,53,0): 134, 86, 63, (332,54,0): 140, 89, 62, (332,55,0): 142, 88, 60, (332,56,0): 146, 89, 62, (332,57,0): 148, 91, 61, (332,58,0): 152, 93, 61, (332,59,0): 155, 97, 60, (332,60,0): 157, 103, 59, (332,61,0): 165, 111, 64, (332,62,0): 175, 122, 70, (332,63,0): 185, 131, 71, (332,64,0): 198, 145, 75, (332,65,0): 203, 151, 75, (332,66,0): 210, 157, 79, (332,67,0): 212, 161, 82, (332,68,0): 210, 159, 78, (332,69,0): 209, 158, 77, (332,70,0): 209, 158, 77, (332,71,0): 208, 160, 76, (332,72,0): 209, 161, 77, (332,73,0): 208, 160, 75, (332,74,0): 208, 160, 75, (332,75,0): 208, 162, 76, (332,76,0): 210, 164, 76, (332,77,0): 212, 166, 78, (332,78,0): 214, 169, 78, (332,79,0): 216, 171, 80, (332,80,0): 217, 170, 80, (332,81,0): 217, 170, 80, (332,82,0): 215, 170, 79, (332,83,0): 215, 170, 79, (332,84,0): 215, 170, 79, (332,85,0): 216, 173, 81, (332,86,0): 215, 174, 84, (332,87,0): 215, 176, 83, (332,88,0): 211, 174, 83, (332,89,0): 211, 176, 84, (332,90,0): 212, 179, 86, (332,91,0): 211, 180, 87, (332,92,0): 211, 180, 87, (332,93,0): 209, 180, 86, (332,94,0): 207, 178, 84, (332,95,0): 204, 178, 85, (332,96,0): 210, 185, 93, (332,97,0): 209, 185, 95, (332,98,0): 210, 187, 94, (332,99,0): 208, 187, 94, (332,100,0): 209, 189, 94, (332,101,0): 208, 190, 92, (332,102,0): 207, 191, 93, (332,103,0): 206, 192, 93, (332,104,0): 207, 193, 94, (332,105,0): 206, 194, 96, (332,106,0): 204, 194, 97, (332,107,0): 202, 193, 98, (332,108,0): 202, 193, 102, (332,109,0): 202, 192, 103, (332,110,0): 202, 192, 105, (332,111,0): 200, 192, 107, (332,112,0): 196, 191, 107, (332,113,0): 194, 192, 107, (332,114,0): 194, 189, 107, (332,115,0): 192, 190, 105, (332,116,0): 192, 190, 107, (332,117,0): 192, 190, 105, (332,118,0): 194, 192, 109, (332,119,0): 193, 193, 107, (332,120,0): 193, 192, 109, (332,121,0): 192, 195, 108, (332,122,0): 192, 194, 110, (332,123,0): 191, 195, 108, (332,124,0): 193, 195, 111, (332,125,0): 192, 196, 109, (332,126,0): 192, 196, 111, (332,127,0): 191, 197, 109, (332,128,0): 188, 197, 106, (332,129,0): 189, 198, 107, (332,130,0): 193, 199, 111, (332,131,0): 196, 199, 112, (332,132,0): 199, 194, 113, (332,133,0): 195, 183, 107, (332,134,0): 186, 169, 99, (332,135,0): 178, 159, 91, (332,136,0): 166, 145, 82, (332,137,0): 157, 135, 77, (332,138,0): 146, 123, 69, (332,139,0): 140, 119, 66, (332,140,0): 138, 118, 67, (332,141,0): 135, 117, 67, (332,142,0): 129, 115, 66, (332,143,0): 125, 111, 64, (332,144,0): 126, 109, 66, (332,145,0): 127, 110, 67, (332,146,0): 127, 113, 68, (332,147,0): 127, 115, 65, (332,148,0): 128, 118, 67, (332,149,0): 130, 120, 67, (332,150,0): 131, 121, 68, (332,151,0): 132, 120, 68, (332,152,0): 135, 123, 73, (332,153,0): 137, 125, 73, (332,154,0): 139, 129, 76, (332,155,0): 143, 137, 79, (332,156,0): 153, 154, 88, (332,157,0): 176, 182, 108, (332,158,0): 201, 214, 134, (332,159,0): 220, 234, 149, (332,160,0): 227, 237, 151, (332,161,0): 228, 236, 150, (332,162,0): 228, 236, 150, (332,163,0): 229, 237, 151, (332,164,0): 230, 238, 152, (332,165,0): 231, 239, 153, (332,166,0): 232, 240, 154, (332,167,0): 233, 241, 155, (332,168,0): 232, 240, 154, (332,169,0): 232, 240, 154, (332,170,0): 232, 240, 154, (332,171,0): 233, 241, 155, (332,172,0): 233, 241, 155, (332,173,0): 234, 242, 156, (332,174,0): 234, 242, 156, (332,175,0): 236, 242, 156, (332,176,0): 242, 244, 160, (332,177,0): 242, 244, 160, (332,178,0): 244, 243, 160, (332,179,0): 242, 245, 158, (332,180,0): 245, 245, 157, (332,181,0): 243, 246, 155, (332,182,0): 245, 245, 155, (332,183,0): 243, 247, 153, (332,184,0): 246, 247, 154, (332,185,0): 244, 248, 154, (332,186,0): 245, 245, 155, (332,187,0): 241, 244, 155, (332,188,0): 242, 242, 156, (332,189,0): 238, 241, 154, (332,190,0): 239, 238, 155, (332,191,0): 237, 239, 156, (332,192,0): 234, 235, 155, (332,193,0): 233, 236, 157, (332,194,0): 233, 234, 156, (332,195,0): 232, 235, 156, (332,196,0): 232, 233, 155, (332,197,0): 231, 234, 155, (332,198,0): 231, 232, 154, (332,199,0): 230, 233, 154, (332,200,0): 231, 232, 154, (332,201,0): 230, 233, 154, (332,202,0): 232, 233, 155, (332,203,0): 232, 235, 156, (332,204,0): 233, 234, 156, (332,205,0): 232, 235, 156, (332,206,0): 233, 234, 156, (332,207,0): 233, 234, 154, (332,208,0): 237, 235, 152, (332,209,0): 237, 235, 152, (332,210,0): 238, 236, 153, (332,211,0): 239, 237, 154, (332,212,0): 239, 237, 154, (332,213,0): 239, 236, 155, (332,214,0): 239, 236, 155, (332,215,0): 239, 236, 157, (332,216,0): 240, 237, 158, (332,217,0): 240, 237, 158, (332,218,0): 241, 238, 159, (332,219,0): 241, 238, 161, (332,220,0): 242, 239, 162, (332,221,0): 242, 239, 162, (332,222,0): 243, 239, 165, (332,223,0): 243, 239, 165, (332,224,0): 243, 243, 169, (332,225,0): 241, 243, 168, (332,226,0): 241, 243, 170, (332,227,0): 239, 242, 171, (332,228,0): 239, 242, 173, (332,229,0): 236, 241, 174, (332,230,0): 236, 241, 175, (332,231,0): 235, 241, 177, (332,232,0): 231, 240, 177, (332,233,0): 229, 239, 178, (332,234,0): 228, 238, 178, (332,235,0): 226, 237, 179, (332,236,0): 226, 237, 181, (332,237,0): 223, 236, 180, (332,238,0): 223, 236, 182, (332,239,0): 222, 236, 183, (332,240,0): 221, 239, 189, (332,241,0): 221, 241, 192, (332,242,0): 222, 241, 195, (332,243,0): 223, 242, 197, (332,244,0): 222, 243, 200, (332,245,0): 221, 242, 201, (332,246,0): 219, 241, 202, (332,247,0): 219, 241, 203, (332,248,0): 214, 235, 202, (332,249,0): 211, 235, 203, (332,250,0): 209, 232, 204, (332,251,0): 205, 229, 203, (332,252,0): 203, 227, 203, (332,253,0): 202, 226, 204, (332,254,0): 201, 226, 205, (332,255,0): 198, 227, 207, (332,256,0): 196, 233, 215, (332,257,0): 192, 233, 215, (332,258,0): 190, 233, 214, (332,259,0): 189, 232, 215, (332,260,0): 187, 231, 216, (332,261,0): 186, 230, 217, (332,262,0): 183, 229, 219, (332,263,0): 181, 228, 220, (332,264,0): 178, 227, 223, (332,265,0): 177, 226, 223, (332,266,0): 175, 225, 226, (332,267,0): 174, 223, 227, (332,268,0): 172, 223, 227, (332,269,0): 170, 220, 227, (332,270,0): 167, 220, 226, (332,271,0): 167, 219, 230, (332,272,0): 166, 219, 237, (332,273,0): 165, 220, 241, (332,274,0): 168, 220, 242, (332,275,0): 167, 222, 243, (332,276,0): 169, 221, 245, (332,277,0): 168, 222, 248, (332,278,0): 170, 221, 248, (332,279,0): 168, 222, 250, (332,280,0): 169, 220, 251, (332,281,0): 167, 220, 252, (332,282,0): 169, 219, 254, (332,283,0): 166, 219, 253, (332,284,0): 167, 217, 254, (332,285,0): 164, 216, 253, (332,286,0): 164, 213, 253, (332,287,0): 163, 212, 252, (332,288,0): 167, 212, 253, (332,289,0): 169, 212, 254, (332,290,0): 170, 212, 254, (332,291,0): 169, 211, 251, (332,292,0): 170, 209, 250, (332,293,0): 168, 207, 246, (332,294,0): 167, 205, 242, (332,295,0): 166, 204, 240, (332,296,0): 163, 197, 232, (332,297,0): 161, 195, 230, (332,298,0): 160, 193, 226, (332,299,0): 159, 192, 223, (332,300,0): 159, 190, 219, (332,301,0): 154, 185, 214, (332,302,0): 147, 176, 206, (332,303,0): 144, 171, 201, (332,304,0): 139, 159, 192, (332,305,0): 136, 155, 188, (332,306,0): 134, 150, 183, (332,307,0): 131, 148, 178, (332,308,0): 132, 146, 173, (332,309,0): 133, 145, 171, (332,310,0): 131, 141, 166, (332,311,0): 130, 138, 161, (332,312,0): 125, 133, 156, (332,313,0): 124, 132, 155, (332,314,0): 123, 131, 154, (332,315,0): 122, 133, 155, (332,316,0): 125, 135, 160, (332,317,0): 130, 142, 166, (332,318,0): 137, 149, 175, (332,319,0): 141, 152, 180, (332,320,0): 140, 153, 187, (332,321,0): 147, 157, 192, (332,322,0): 152, 158, 194, (332,323,0): 151, 156, 188, (332,324,0): 153, 152, 184, (332,325,0): 153, 146, 177, (332,326,0): 146, 133, 159, (332,327,0): 134, 119, 142, (332,328,0): 127, 108, 128, (332,329,0): 116, 93, 111, (332,330,0): 105, 78, 93, (332,331,0): 102, 74, 86, (332,332,0): 100, 70, 78, (332,333,0): 93, 64, 69, (332,334,0): 89, 60, 64, (332,335,0): 90, 60, 62, (332,336,0): 94, 60, 59, (332,337,0): 96, 61, 57, (332,338,0): 102, 62, 62, (332,339,0): 106, 65, 63, (332,340,0): 110, 66, 67, (332,341,0): 111, 65, 65, (332,342,0): 113, 64, 67, (332,343,0): 114, 64, 65, (332,344,0): 114, 64, 67, (332,345,0): 112, 62, 63, (332,346,0): 111, 61, 64, (332,347,0): 109, 61, 61, (332,348,0): 106, 60, 62, (332,349,0): 107, 61, 61, (332,350,0): 107, 63, 64, (332,351,0): 108, 64, 63, (332,352,0): 114, 69, 66, (332,353,0): 115, 70, 65, (332,354,0): 116, 71, 68, (332,355,0): 116, 71, 68, (332,356,0): 115, 70, 67, (332,357,0): 114, 68, 68, (332,358,0): 111, 65, 65, (332,359,0): 110, 64, 64, (332,360,0): 105, 59, 61, (332,361,0): 106, 60, 62, (332,362,0): 108, 62, 64, (332,363,0): 110, 64, 67, (332,364,0): 112, 66, 69, (332,365,0): 114, 68, 71, (332,366,0): 116, 69, 75, (332,367,0): 117, 71, 74, (332,368,0): 117, 71, 73, (332,369,0): 117, 71, 71, (332,370,0): 117, 71, 73, (332,371,0): 120, 72, 72, (332,372,0): 122, 73, 76, (332,373,0): 124, 76, 76, (332,374,0): 128, 78, 81, (332,375,0): 129, 79, 80, (332,376,0): 132, 82, 85, (332,377,0): 135, 83, 85, (332,378,0): 137, 85, 89, (332,379,0): 136, 84, 86, (332,380,0): 132, 77, 82, (332,381,0): 122, 67, 70, (332,382,0): 113, 58, 63, (332,383,0): 108, 53, 56, (332,384,0): 107, 51, 50, (332,385,0): 105, 50, 47, (332,386,0): 103, 47, 46, (332,387,0): 103, 47, 46, (332,388,0): 105, 51, 49, (332,389,0): 106, 52, 50, (332,390,0): 102, 51, 48, (332,391,0): 100, 49, 46, (332,392,0): 94, 45, 41, (332,393,0): 93, 44, 40, (332,394,0): 90, 42, 40, (332,395,0): 87, 42, 39, (332,396,0): 86, 41, 38, (332,397,0): 86, 41, 38, (332,398,0): 86, 41, 38, (332,399,0): 86, 40, 40, (332,400,0): 89, 43, 45, (332,401,0): 88, 42, 44, (332,402,0): 88, 42, 45, (332,403,0): 86, 40, 42, (332,404,0): 85, 39, 41, (332,405,0): 83, 39, 38, (332,406,0): 82, 38, 37, (332,407,0): 80, 39, 37, (332,408,0): 79, 38, 36, (332,409,0): 81, 40, 36, (332,410,0): 83, 42, 38, (332,411,0): 84, 45, 38, (332,412,0): 86, 47, 40, (332,413,0): 87, 50, 42, (332,414,0): 90, 51, 44, (332,415,0): 89, 52, 44, (332,416,0): 85, 50, 44, (332,417,0): 87, 54, 47, (332,418,0): 91, 58, 49, (332,419,0): 92, 62, 51, (332,420,0): 95, 67, 55, (332,421,0): 99, 76, 60, (332,422,0): 103, 84, 69, (332,423,0): 106, 90, 74, (332,424,0): 110, 98, 84, (332,425,0): 119, 110, 101, (332,426,0): 134, 127, 121, (332,427,0): 142, 138, 137, (332,428,0): 145, 143, 148, (332,429,0): 147, 146, 154, (332,430,0): 151, 151, 163, (332,431,0): 153, 155, 170, (332,432,0): 152, 155, 174, (332,433,0): 157, 159, 182, (332,434,0): 164, 164, 192, (332,435,0): 169, 165, 200, (332,436,0): 171, 164, 208, (332,437,0): 174, 162, 212, (332,438,0): 176, 161, 216, (332,439,0): 180, 162, 220, (332,440,0): 165, 145, 204, (332,441,0): 151, 131, 190, (332,442,0): 143, 122, 181, (332,443,0): 145, 125, 186, (332,444,0): 148, 129, 193, (332,445,0): 143, 127, 192, (332,446,0): 142, 125, 193, (332,447,0): 143, 128, 195, (332,448,0): 137, 125, 191, (332,449,0): 144, 132, 196, (332,450,0): 154, 138, 200, (332,451,0): 159, 139, 198, (332,452,0): 163, 136, 189, (332,453,0): 170, 138, 185, (332,454,0): 182, 145, 188, (332,455,0): 194, 153, 187, (332,456,0): 192, 148, 175, (332,457,0): 187, 142, 162, (332,458,0): 183, 137, 148, (332,459,0): 180, 138, 142, (332,460,0): 183, 142, 140, (332,461,0): 183, 144, 137, (332,462,0): 179, 143, 131, (332,463,0): 174, 138, 122, (332,464,0): 163, 128, 106, (332,465,0): 158, 124, 97, (332,466,0): 151, 117, 90, (332,467,0): 144, 110, 85, (332,468,0): 140, 105, 83, (332,469,0): 138, 106, 83, (332,470,0): 140, 108, 87, (332,471,0): 140, 109, 88, (332,472,0): 143, 112, 92, (332,473,0): 136, 108, 87, (332,474,0): 127, 99, 78, (332,475,0): 115, 88, 69, (332,476,0): 108, 81, 62, (332,477,0): 109, 82, 63, (332,478,0): 114, 88, 71, (332,479,0): 119, 93, 76, (332,480,0): 114, 91, 77, (332,481,0): 110, 86, 74, (332,482,0): 106, 79, 68, (332,483,0): 98, 71, 62, (332,484,0): 92, 63, 55, (332,485,0): 86, 57, 51, (332,486,0): 82, 53, 49, (332,487,0): 80, 50, 48, (332,488,0): 77, 47, 45, (332,489,0): 75, 47, 46, (332,490,0): 72, 46, 47, (332,491,0): 69, 45, 45, (332,492,0): 66, 44, 46, (332,493,0): 63, 45, 45, (332,494,0): 63, 44, 46, (332,495,0): 61, 45, 46, (332,496,0): 62, 47, 50, (332,497,0): 62, 47, 52, (332,498,0): 62, 45, 51, (332,499,0): 63, 44, 50, (332,500,0): 64, 43, 50, (332,501,0): 64, 41, 49, (332,502,0): 66, 40, 51, (332,503,0): 65, 39, 50, (332,504,0): 63, 37, 50, (332,505,0): 65, 39, 52, (332,506,0): 64, 40, 53, (332,507,0): 64, 42, 54, (332,508,0): 63, 43, 54, (332,509,0): 61, 44, 54, (332,510,0): 60, 44, 54, (332,511,0): 61, 44, 52, (332,512,0): 67, 48, 54, (332,513,0): 69, 48, 55, (332,514,0): 69, 48, 57, (332,515,0): 66, 45, 54, (332,516,0): 63, 41, 53, (332,517,0): 63, 41, 53, (332,518,0): 65, 44, 53, (332,519,0): 68, 47, 54, (332,520,0): 72, 51, 56, (332,521,0): 78, 58, 60, (332,522,0): 85, 63, 66, (332,523,0): 87, 64, 70, (332,524,0): 86, 63, 73, (332,525,0): 87, 63, 77, (332,526,0): 93, 66, 85, (332,527,0): 95, 70, 89, (332,528,0): 97, 74, 84, (332,529,0): 90, 71, 75, (332,530,0): 87, 72, 75, (332,531,0): 90, 80, 81, (332,532,0): 97, 93, 94, (332,533,0): 110, 109, 114, (332,534,0): 134, 134, 142, (332,535,0): 153, 155, 167, (332,536,0): 172, 174, 189, (332,537,0): 175, 174, 190, (332,538,0): 171, 164, 182, (332,539,0): 158, 147, 163, (332,540,0): 147, 131, 144, (332,541,0): 140, 119, 128, (332,542,0): 131, 106, 110, (332,543,0): 120, 94, 97, (332,544,0): 114, 85, 87, (332,545,0): 99, 70, 72, (332,546,0): 79, 53, 56, (332,547,0): 71, 45, 48, (332,548,0): 72, 47, 50, (332,549,0): 74, 49, 52, (332,550,0): 70, 48, 51, (332,551,0): 65, 45, 47, (332,552,0): 63, 42, 47, (332,553,0): 60, 41, 45, (332,554,0): 55, 39, 42, (332,555,0): 51, 35, 38, (332,556,0): 46, 31, 36, (332,557,0): 44, 29, 34, (332,558,0): 40, 28, 32, (332,559,0): 40, 28, 30, (332,560,0): 41, 31, 30, (332,561,0): 41, 33, 30, (332,562,0): 45, 35, 33, (332,563,0): 49, 39, 37, (332,564,0): 55, 45, 43, (332,565,0): 63, 52, 50, (332,566,0): 69, 58, 56, (332,567,0): 73, 62, 60, (332,568,0): 73, 59, 58, (332,569,0): 71, 57, 56, (332,570,0): 69, 53, 53, (332,571,0): 66, 50, 50, (332,572,0): 66, 48, 48, (332,573,0): 66, 48, 48, (332,574,0): 67, 49, 49, (332,575,0): 67, 49, 49, (332,576,0): 68, 48, 47, (332,577,0): 65, 46, 42, (332,578,0): 62, 43, 39, (332,579,0): 59, 40, 36, (332,580,0): 58, 39, 35, (332,581,0): 59, 40, 36, (332,582,0): 61, 42, 38, (332,583,0): 63, 44, 40, (332,584,0): 63, 44, 40, (332,585,0): 61, 42, 38, (332,586,0): 60, 41, 37, (332,587,0): 61, 42, 38, (332,588,0): 64, 45, 41, (332,589,0): 66, 47, 43, (332,590,0): 65, 46, 42, (332,591,0): 62, 44, 42, (332,592,0): 54, 43, 41, (332,593,0): 52, 42, 41, (332,594,0): 51, 41, 40, (332,595,0): 50, 40, 39, (332,596,0): 51, 41, 40, (332,597,0): 52, 42, 41, (332,598,0): 53, 43, 42, (332,599,0): 55, 45, 44, (333,0,0): 68, 58, 56, (333,1,0): 68, 58, 56, (333,2,0): 68, 58, 56, (333,3,0): 67, 57, 55, (333,4,0): 67, 57, 55, (333,5,0): 66, 56, 54, (333,6,0): 66, 56, 54, (333,7,0): 65, 55, 53, (333,8,0): 65, 55, 53, (333,9,0): 65, 55, 53, (333,10,0): 65, 55, 53, (333,11,0): 65, 55, 53, (333,12,0): 64, 54, 52, (333,13,0): 64, 54, 52, (333,14,0): 64, 54, 52, (333,15,0): 64, 54, 52, (333,16,0): 66, 55, 53, (333,17,0): 66, 55, 53, (333,18,0): 68, 54, 53, (333,19,0): 68, 54, 53, (333,20,0): 68, 54, 53, (333,21,0): 68, 54, 53, (333,22,0): 69, 53, 53, (333,23,0): 69, 53, 53, (333,24,0): 69, 51, 51, (333,25,0): 69, 51, 51, (333,26,0): 69, 51, 51, (333,27,0): 69, 51, 51, (333,28,0): 70, 50, 51, (333,29,0): 70, 50, 51, (333,30,0): 70, 50, 51, (333,31,0): 70, 50, 51, (333,32,0): 70, 50, 52, (333,33,0): 69, 49, 51, (333,34,0): 69, 47, 50, (333,35,0): 68, 46, 49, (333,36,0): 68, 46, 48, (333,37,0): 69, 47, 49, (333,38,0): 72, 48, 48, (333,39,0): 73, 49, 49, (333,40,0): 77, 51, 50, (333,41,0): 80, 52, 51, (333,42,0): 82, 52, 50, (333,43,0): 84, 54, 52, (333,44,0): 87, 58, 54, (333,45,0): 89, 60, 56, (333,46,0): 91, 60, 55, (333,47,0): 92, 61, 56, (333,48,0): 97, 62, 58, (333,49,0): 101, 64, 58, (333,50,0): 108, 68, 58, (333,51,0): 117, 74, 58, (333,52,0): 125, 80, 61, (333,53,0): 132, 84, 61, (333,54,0): 138, 87, 60, (333,55,0): 142, 86, 59, (333,56,0): 145, 88, 59, (333,57,0): 147, 90, 60, (333,58,0): 151, 92, 60, (333,59,0): 153, 95, 58, (333,60,0): 155, 101, 57, (333,61,0): 162, 108, 61, (333,62,0): 171, 118, 66, (333,63,0): 177, 125, 65, (333,64,0): 192, 138, 68, (333,65,0): 200, 147, 71, (333,66,0): 209, 156, 80, (333,67,0): 213, 160, 82, (333,68,0): 213, 160, 82, (333,69,0): 210, 159, 78, (333,70,0): 211, 160, 77, (333,71,0): 214, 163, 80, (333,72,0): 213, 163, 78, (333,73,0): 213, 163, 76, (333,74,0): 213, 163, 76, (333,75,0): 212, 165, 75, (333,76,0): 215, 165, 76, (333,77,0): 216, 169, 77, (333,78,0): 220, 171, 79, (333,79,0): 221, 172, 79, (333,80,0): 222, 173, 81, (333,81,0): 221, 172, 79, (333,82,0): 221, 172, 80, (333,83,0): 218, 171, 79, (333,84,0): 219, 172, 80, (333,85,0): 219, 174, 81, (333,86,0): 220, 177, 85, (333,87,0): 219, 178, 86, (333,88,0): 217, 178, 85, (333,89,0): 216, 180, 86, (333,90,0): 215, 180, 86, (333,91,0): 215, 182, 89, (333,92,0): 215, 182, 89, (333,93,0): 212, 181, 88, (333,94,0): 212, 181, 88, (333,95,0): 208, 182, 89, (333,96,0): 213, 188, 96, (333,97,0): 212, 188, 98, (333,98,0): 212, 189, 96, (333,99,0): 213, 190, 96, (333,100,0): 213, 190, 94, (333,101,0): 212, 192, 93, (333,102,0): 211, 193, 93, (333,103,0): 209, 194, 93, (333,104,0): 209, 193, 95, (333,105,0): 208, 194, 95, (333,106,0): 206, 194, 96, (333,107,0): 204, 194, 97, (333,108,0): 203, 192, 100, (333,109,0): 202, 193, 102, (333,110,0): 202, 192, 103, (333,111,0): 199, 191, 106, (333,112,0): 196, 191, 107, (333,113,0): 194, 192, 109, (333,114,0): 192, 190, 107, (333,115,0): 192, 190, 107, (333,116,0): 192, 190, 107, (333,117,0): 191, 190, 107, (333,118,0): 193, 192, 109, (333,119,0): 191, 193, 109, (333,120,0): 191, 193, 109, (333,121,0): 191, 193, 109, (333,122,0): 190, 194, 109, (333,123,0): 190, 194, 109, (333,124,0): 190, 194, 109, (333,125,0): 191, 195, 110, (333,126,0): 191, 195, 110, (333,127,0): 190, 196, 110, (333,128,0): 183, 196, 108, (333,129,0): 184, 197, 109, (333,130,0): 188, 196, 111, (333,131,0): 193, 197, 113, (333,132,0): 196, 193, 114, (333,133,0): 194, 185, 110, (333,134,0): 188, 173, 104, (333,135,0): 183, 165, 99, (333,136,0): 169, 149, 88, (333,137,0): 159, 139, 80, (333,138,0): 147, 126, 71, (333,139,0): 139, 119, 66, (333,140,0): 136, 118, 68, (333,141,0): 134, 118, 67, (333,142,0): 127, 115, 67, (333,143,0): 123, 110, 65, (333,144,0): 126, 111, 68, (333,145,0): 126, 111, 68, (333,146,0): 125, 112, 67, (333,147,0): 125, 115, 64, (333,148,0): 125, 118, 66, (333,149,0): 127, 120, 66, (333,150,0): 130, 123, 69, (333,151,0): 134, 124, 71, (333,152,0): 132, 122, 71, (333,153,0): 137, 127, 76, (333,154,0): 140, 133, 79, (333,155,0): 143, 141, 82, (333,156,0): 157, 160, 93, (333,157,0): 179, 189, 116, (333,158,0): 203, 218, 137, (333,159,0): 215, 233, 149, (333,160,0): 223, 235, 151, (333,161,0): 223, 235, 149, (333,162,0): 225, 235, 149, (333,163,0): 223, 235, 149, (333,164,0): 226, 236, 150, (333,165,0): 226, 238, 152, (333,166,0): 230, 240, 154, (333,167,0): 229, 241, 155, (333,168,0): 228, 238, 152, (333,169,0): 227, 239, 153, (333,170,0): 229, 239, 153, (333,171,0): 227, 239, 153, (333,172,0): 230, 240, 154, (333,173,0): 228, 240, 154, (333,174,0): 231, 241, 155, (333,175,0): 231, 241, 155, (333,176,0): 235, 243, 158, (333,177,0): 235, 243, 158, (333,178,0): 237, 242, 158, (333,179,0): 235, 243, 157, (333,180,0): 237, 243, 155, (333,181,0): 235, 244, 153, (333,182,0): 237, 243, 153, (333,183,0): 235, 244, 151, (333,184,0): 238, 244, 154, (333,185,0): 236, 245, 154, (333,186,0): 238, 244, 154, (333,187,0): 235, 244, 155, (333,188,0): 237, 243, 157, (333,189,0): 235, 243, 158, (333,190,0): 236, 241, 157, (333,191,0): 236, 241, 159, (333,192,0): 233, 238, 158, (333,193,0): 234, 237, 158, (333,194,0): 234, 237, 158, (333,195,0): 233, 236, 157, (333,196,0): 232, 235, 156, (333,197,0): 232, 235, 156, (333,198,0): 232, 235, 156, (333,199,0): 231, 234, 155, (333,200,0): 230, 233, 154, (333,201,0): 231, 234, 155, (333,202,0): 232, 235, 156, (333,203,0): 234, 237, 158, (333,204,0): 234, 237, 158, (333,205,0): 234, 237, 158, (333,206,0): 233, 236, 157, (333,207,0): 234, 235, 157, (333,208,0): 237, 236, 154, (333,209,0): 237, 234, 153, (333,210,0): 235, 232, 151, (333,211,0): 235, 232, 151, (333,212,0): 235, 232, 151, (333,213,0): 236, 233, 154, (333,214,0): 237, 234, 155, (333,215,0): 238, 235, 156, (333,216,0): 238, 235, 158, (333,217,0): 238, 235, 158, (333,218,0): 239, 236, 159, (333,219,0): 239, 235, 161, (333,220,0): 240, 236, 162, (333,221,0): 240, 236, 162, (333,222,0): 241, 237, 163, (333,223,0): 240, 238, 164, (333,224,0): 242, 244, 171, (333,225,0): 240, 243, 172, (333,226,0): 238, 241, 170, (333,227,0): 235, 241, 171, (333,228,0): 234, 239, 172, (333,229,0): 233, 240, 173, (333,230,0): 234, 240, 176, (333,231,0): 233, 242, 179, (333,232,0): 231, 241, 180, (333,233,0): 229, 240, 180, (333,234,0): 227, 238, 180, (333,235,0): 223, 236, 180, (333,236,0): 222, 235, 181, (333,237,0): 221, 235, 182, (333,238,0): 221, 235, 182, (333,239,0): 218, 236, 184, (333,240,0): 215, 235, 186, (333,241,0): 214, 238, 190, (333,242,0): 216, 238, 192, (333,243,0): 218, 240, 194, (333,244,0): 219, 240, 199, (333,245,0): 219, 240, 201, (333,246,0): 218, 240, 202, (333,247,0): 217, 239, 203, (333,248,0): 215, 236, 205, (333,249,0): 214, 234, 206, (333,250,0): 211, 231, 206, (333,251,0): 206, 228, 205, (333,252,0): 206, 225, 205, (333,253,0): 203, 224, 205, (333,254,0): 202, 223, 206, (333,255,0): 198, 225, 208, (333,256,0): 193, 230, 213, (333,257,0): 190, 231, 215, (333,258,0): 187, 230, 213, (333,259,0): 186, 228, 214, (333,260,0): 184, 226, 214, (333,261,0): 182, 225, 215, (333,262,0): 179, 224, 217, (333,263,0): 178, 223, 218, (333,264,0): 174, 220, 218, (333,265,0): 172, 220, 220, (333,266,0): 170, 219, 223, (333,267,0): 170, 219, 224, (333,268,0): 168, 218, 225, (333,269,0): 167, 217, 226, (333,270,0): 164, 217, 225, (333,271,0): 164, 216, 229, (333,272,0): 163, 214, 233, (333,273,0): 163, 215, 237, (333,274,0): 165, 217, 239, (333,275,0): 167, 219, 243, (333,276,0): 168, 219, 246, (333,277,0): 168, 219, 246, (333,278,0): 168, 219, 248, (333,279,0): 168, 219, 250, (333,280,0): 168, 218, 251, (333,281,0): 168, 218, 253, (333,282,0): 167, 217, 254, (333,283,0): 166, 215, 255, (333,284,0): 165, 214, 254, (333,285,0): 164, 213, 254, (333,286,0): 163, 212, 253, (333,287,0): 163, 210, 252, (333,288,0): 167, 212, 254, (333,289,0): 168, 211, 254, (333,290,0): 169, 210, 254, (333,291,0): 168, 210, 252, (333,292,0): 169, 208, 251, (333,293,0): 167, 206, 247, (333,294,0): 166, 204, 243, (333,295,0): 165, 203, 240, (333,296,0): 161, 195, 232, (333,297,0): 160, 194, 229, (333,298,0): 159, 192, 225, (333,299,0): 158, 191, 222, (333,300,0): 158, 189, 220, (333,301,0): 152, 183, 212, (333,302,0): 146, 175, 205, (333,303,0): 141, 168, 198, (333,304,0): 139, 159, 194, (333,305,0): 137, 155, 191, (333,306,0): 134, 150, 184, (333,307,0): 133, 148, 179, (333,308,0): 133, 147, 176, (333,309,0): 132, 143, 171, (333,310,0): 131, 138, 166, (333,311,0): 128, 135, 161, (333,312,0): 123, 131, 154, (333,313,0): 123, 131, 154, (333,314,0): 123, 131, 154, (333,315,0): 125, 133, 156, (333,316,0): 126, 136, 161, (333,317,0): 131, 141, 166, (333,318,0): 134, 146, 172, (333,319,0): 137, 148, 176, (333,320,0): 140, 150, 185, (333,321,0): 145, 153, 189, (333,322,0): 150, 154, 189, (333,323,0): 152, 152, 186, (333,324,0): 155, 151, 184, (333,325,0): 157, 148, 179, (333,326,0): 148, 134, 160, (333,327,0): 137, 119, 143, (333,328,0): 131, 109, 130, (333,329,0): 118, 93, 112, (333,330,0): 108, 80, 95, (333,331,0): 106, 76, 88, (333,332,0): 104, 73, 81, (333,333,0): 97, 66, 72, (333,334,0): 92, 61, 66, (333,335,0): 93, 61, 62, (333,336,0): 100, 62, 61, (333,337,0): 102, 62, 60, (333,338,0): 106, 65, 63, (333,339,0): 109, 65, 64, (333,340,0): 113, 65, 65, (333,341,0): 112, 62, 63, (333,342,0): 111, 59, 61, (333,343,0): 112, 57, 60, (333,344,0): 114, 58, 61, (333,345,0): 111, 56, 59, (333,346,0): 108, 53, 56, (333,347,0): 104, 52, 54, (333,348,0): 102, 52, 53, (333,349,0): 101, 53, 53, (333,350,0): 102, 54, 54, (333,351,0): 101, 56, 53, (333,352,0): 107, 62, 57, (333,353,0): 108, 63, 58, (333,354,0): 108, 63, 58, (333,355,0): 108, 63, 58, (333,356,0): 108, 63, 60, (333,357,0): 107, 62, 59, (333,358,0): 106, 61, 58, (333,359,0): 106, 60, 60, (333,360,0): 105, 59, 59, (333,361,0): 106, 60, 60, (333,362,0): 108, 62, 64, (333,363,0): 110, 64, 66, (333,364,0): 113, 67, 69, (333,365,0): 115, 69, 72, (333,366,0): 117, 71, 74, (333,367,0): 118, 72, 74, (333,368,0): 118, 70, 70, (333,369,0): 118, 70, 70, (333,370,0): 118, 70, 70, (333,371,0): 120, 70, 71, (333,372,0): 122, 72, 73, (333,373,0): 125, 75, 76, (333,374,0): 129, 77, 79, (333,375,0): 130, 78, 80, (333,376,0): 132, 80, 82, (333,377,0): 135, 80, 83, (333,378,0): 134, 79, 82, (333,379,0): 129, 74, 77, (333,380,0): 121, 65, 68, (333,381,0): 112, 56, 59, (333,382,0): 105, 49, 52, (333,383,0): 102, 46, 47, (333,384,0): 106, 50, 49, (333,385,0): 104, 49, 46, (333,386,0): 103, 48, 45, (333,387,0): 103, 50, 46, (333,388,0): 105, 51, 49, (333,389,0): 103, 52, 49, (333,390,0): 100, 49, 46, (333,391,0): 96, 47, 43, (333,392,0): 92, 43, 39, (333,393,0): 90, 42, 38, (333,394,0): 87, 42, 39, (333,395,0): 85, 40, 37, (333,396,0): 85, 40, 37, (333,397,0): 84, 40, 37, (333,398,0): 85, 41, 38, (333,399,0): 85, 41, 38, (333,400,0): 90, 42, 42, (333,401,0): 90, 42, 42, (333,402,0): 90, 41, 44, (333,403,0): 90, 42, 42, (333,404,0): 89, 41, 41, (333,405,0): 87, 42, 39, (333,406,0): 86, 41, 38, (333,407,0): 85, 41, 38, (333,408,0): 81, 37, 34, (333,409,0): 83, 40, 34, (333,410,0): 86, 43, 37, (333,411,0): 87, 47, 39, (333,412,0): 90, 50, 42, (333,413,0): 91, 53, 44, (333,414,0): 93, 53, 45, (333,415,0): 92, 53, 46, (333,416,0): 94, 57, 51, (333,417,0): 93, 58, 54, (333,418,0): 95, 60, 54, (333,419,0): 97, 64, 55, (333,420,0): 97, 69, 58, (333,421,0): 101, 75, 62, (333,422,0): 103, 80, 66, (333,423,0): 103, 84, 70, (333,424,0): 108, 91, 81, (333,425,0): 115, 102, 94, (333,426,0): 129, 117, 117, (333,427,0): 140, 131, 136, (333,428,0): 148, 140, 151, (333,429,0): 152, 146, 160, (333,430,0): 156, 149, 167, (333,431,0): 155, 152, 173, (333,432,0): 155, 155, 179, (333,433,0): 159, 159, 187, (333,434,0): 165, 161, 194, (333,435,0): 167, 160, 201, (333,436,0): 168, 156, 202, (333,437,0): 170, 153, 205, (333,438,0): 172, 154, 206, (333,439,0): 174, 154, 207, (333,440,0): 156, 132, 182, (333,441,0): 139, 115, 163, (333,442,0): 128, 105, 151, (333,443,0): 129, 108, 151, (333,444,0): 129, 110, 155, (333,445,0): 126, 107, 152, (333,446,0): 128, 111, 156, (333,447,0): 135, 119, 168, (333,448,0): 146, 131, 186, (333,449,0): 155, 140, 195, (333,450,0): 167, 148, 203, (333,451,0): 175, 151, 203, (333,452,0): 176, 147, 193, (333,453,0): 180, 143, 184, (333,454,0): 187, 145, 181, (333,455,0): 194, 148, 176, (333,456,0): 193, 144, 166, (333,457,0): 188, 137, 152, (333,458,0): 182, 133, 139, (333,459,0): 178, 132, 132, (333,460,0): 179, 136, 129, (333,461,0): 176, 136, 124, (333,462,0): 171, 134, 118, (333,463,0): 166, 129, 110, (333,464,0): 164, 123, 103, (333,465,0): 159, 118, 96, (333,466,0): 152, 111, 89, (333,467,0): 145, 104, 84, (333,468,0): 141, 100, 82, (333,469,0): 138, 100, 81, (333,470,0): 140, 101, 84, (333,471,0): 140, 103, 85, (333,472,0): 145, 108, 92, (333,473,0): 141, 105, 89, (333,474,0): 132, 99, 82, (333,475,0): 123, 90, 73, (333,476,0): 115, 83, 68, (333,477,0): 112, 80, 65, (333,478,0): 113, 84, 68, (333,479,0): 116, 88, 74, (333,480,0): 106, 79, 68, (333,481,0): 100, 75, 68, (333,482,0): 95, 68, 61, (333,483,0): 88, 61, 54, (333,484,0): 84, 55, 49, (333,485,0): 81, 52, 48, (333,486,0): 80, 50, 48, (333,487,0): 79, 49, 47, (333,488,0): 77, 47, 47, (333,489,0): 75, 47, 46, (333,490,0): 74, 45, 47, (333,491,0): 69, 45, 45, (333,492,0): 66, 44, 46, (333,493,0): 63, 43, 44, (333,494,0): 62, 42, 44, (333,495,0): 61, 42, 44, (333,496,0): 64, 48, 49, (333,497,0): 63, 47, 50, (333,498,0): 65, 46, 50, (333,499,0): 65, 44, 51, (333,500,0): 65, 42, 50, (333,501,0): 66, 40, 49, (333,502,0): 66, 38, 50, (333,503,0): 68, 38, 50, (333,504,0): 63, 32, 47, (333,505,0): 63, 35, 49, (333,506,0): 63, 37, 50, (333,507,0): 61, 38, 48, (333,508,0): 59, 38, 47, (333,509,0): 58, 39, 45, (333,510,0): 57, 40, 46, (333,511,0): 59, 42, 48, (333,512,0): 64, 45, 49, (333,513,0): 67, 46, 53, (333,514,0): 68, 47, 56, (333,515,0): 66, 45, 54, (333,516,0): 63, 41, 53, (333,517,0): 61, 39, 51, (333,518,0): 63, 42, 51, (333,519,0): 65, 44, 51, (333,520,0): 69, 48, 53, (333,521,0): 74, 54, 56, (333,522,0): 79, 57, 60, (333,523,0): 81, 58, 64, (333,524,0): 83, 57, 68, (333,525,0): 84, 57, 72, (333,526,0): 88, 61, 80, (333,527,0): 91, 64, 81, (333,528,0): 94, 68, 77, (333,529,0): 86, 66, 68, (333,530,0): 80, 64, 65, (333,531,0): 81, 69, 69, (333,532,0): 85, 79, 81, (333,533,0): 95, 95, 97, (333,534,0): 119, 119, 127, (333,535,0): 139, 142, 151, (333,536,0): 164, 166, 179, (333,537,0): 169, 168, 182, (333,538,0): 168, 161, 177, (333,539,0): 157, 146, 160, (333,540,0): 148, 130, 142, (333,541,0): 138, 117, 124, (333,542,0): 126, 101, 104, (333,543,0): 113, 87, 86, (333,544,0): 106, 77, 79, (333,545,0): 95, 66, 68, (333,546,0): 80, 54, 57, (333,547,0): 73, 47, 50, (333,548,0): 73, 48, 51, (333,549,0): 74, 49, 52, (333,550,0): 69, 47, 50, (333,551,0): 64, 44, 46, (333,552,0): 62, 41, 46, (333,553,0): 59, 40, 44, (333,554,0): 54, 38, 41, (333,555,0): 50, 34, 37, (333,556,0): 46, 31, 36, (333,557,0): 44, 29, 34, (333,558,0): 41, 29, 33, (333,559,0): 40, 28, 30, (333,560,0): 41, 29, 29, (333,561,0): 42, 31, 29, (333,562,0): 45, 34, 32, (333,563,0): 50, 39, 37, (333,564,0): 57, 43, 42, (333,565,0): 62, 48, 47, (333,566,0): 68, 52, 52, (333,567,0): 71, 55, 55, (333,568,0): 72, 54, 54, (333,569,0): 71, 53, 53, (333,570,0): 70, 50, 51, (333,571,0): 68, 48, 49, (333,572,0): 68, 46, 48, (333,573,0): 67, 45, 47, (333,574,0): 66, 44, 46, (333,575,0): 66, 45, 44, (333,576,0): 64, 45, 41, (333,577,0): 62, 43, 39, (333,578,0): 60, 41, 37, (333,579,0): 58, 39, 35, (333,580,0): 57, 38, 34, (333,581,0): 58, 39, 35, (333,582,0): 59, 40, 36, (333,583,0): 61, 42, 38, (333,584,0): 64, 45, 41, (333,585,0): 62, 43, 39, (333,586,0): 61, 42, 38, (333,587,0): 63, 44, 40, (333,588,0): 66, 47, 43, (333,589,0): 68, 49, 45, (333,590,0): 67, 48, 44, (333,591,0): 64, 46, 44, (333,592,0): 56, 45, 43, (333,593,0): 53, 43, 42, (333,594,0): 51, 41, 40, (333,595,0): 50, 40, 39, (333,596,0): 49, 39, 38, (333,597,0): 51, 41, 40, (333,598,0): 52, 42, 41, (333,599,0): 54, 44, 43, (334,0,0): 69, 60, 55, (334,1,0): 68, 59, 54, (334,2,0): 68, 59, 54, (334,3,0): 67, 58, 53, (334,4,0): 67, 58, 53, (334,5,0): 66, 57, 52, (334,6,0): 66, 57, 52, (334,7,0): 66, 57, 52, (334,8,0): 64, 55, 50, (334,9,0): 64, 55, 50, (334,10,0): 64, 55, 50, (334,11,0): 64, 55, 50, (334,12,0): 65, 56, 51, (334,13,0): 65, 56, 51, (334,14,0): 65, 56, 51, (334,15,0): 65, 56, 51, (334,16,0): 66, 55, 51, (334,17,0): 66, 55, 51, (334,18,0): 68, 54, 51, (334,19,0): 68, 54, 51, (334,20,0): 68, 54, 51, (334,21,0): 68, 54, 51, (334,22,0): 69, 54, 51, (334,23,0): 69, 54, 51, (334,24,0): 70, 52, 50, (334,25,0): 70, 52, 50, (334,26,0): 70, 52, 50, (334,27,0): 70, 52, 50, (334,28,0): 71, 51, 50, (334,29,0): 71, 51, 50, (334,30,0): 71, 51, 50, (334,31,0): 71, 51, 52, (334,32,0): 70, 50, 52, (334,33,0): 69, 49, 51, (334,34,0): 68, 48, 49, (334,35,0): 67, 47, 48, (334,36,0): 68, 46, 48, (334,37,0): 69, 47, 49, (334,38,0): 72, 48, 48, (334,39,0): 72, 48, 48, (334,40,0): 78, 52, 51, (334,41,0): 78, 52, 51, (334,42,0): 82, 54, 51, (334,43,0): 84, 56, 53, (334,44,0): 86, 58, 54, (334,45,0): 88, 60, 56, (334,46,0): 90, 61, 57, (334,47,0): 92, 61, 58, (334,48,0): 96, 61, 57, (334,49,0): 100, 63, 57, (334,50,0): 105, 65, 55, (334,51,0): 111, 69, 53, (334,52,0): 120, 75, 56, (334,53,0): 128, 80, 57, (334,54,0): 135, 84, 57, (334,55,0): 141, 85, 58, (334,56,0): 144, 87, 58, (334,57,0): 148, 89, 59, (334,58,0): 150, 91, 59, (334,59,0): 152, 94, 57, (334,60,0): 153, 98, 57, (334,61,0): 158, 104, 58, (334,62,0): 166, 114, 64, (334,63,0): 173, 121, 63, (334,64,0): 185, 130, 63, (334,65,0): 197, 141, 66, (334,66,0): 209, 153, 78, (334,67,0): 215, 159, 82, (334,68,0): 215, 159, 82, (334,69,0): 212, 159, 79, (334,70,0): 214, 162, 79, (334,71,0): 217, 165, 82, (334,72,0): 216, 164, 80, (334,73,0): 216, 164, 78, (334,74,0): 216, 165, 76, (334,75,0): 216, 167, 75, (334,76,0): 218, 167, 75, (334,77,0): 220, 171, 78, (334,78,0): 223, 172, 80, (334,79,0): 224, 174, 79, (334,80,0): 225, 174, 82, (334,81,0): 224, 174, 79, (334,82,0): 224, 173, 81, (334,83,0): 222, 173, 80, (334,84,0): 221, 175, 81, (334,85,0): 221, 177, 82, (334,86,0): 222, 179, 85, (334,87,0): 221, 181, 86, (334,88,0): 222, 183, 88, (334,89,0): 219, 183, 87, (334,90,0): 217, 183, 86, (334,91,0): 216, 183, 88, (334,92,0): 216, 183, 88, (334,93,0): 214, 184, 88, (334,94,0): 215, 185, 89, (334,95,0): 215, 186, 92, (334,96,0): 215, 188, 97, (334,97,0): 215, 190, 100, (334,98,0): 215, 190, 98, (334,99,0): 215, 192, 98, (334,100,0): 215, 192, 96, (334,101,0): 214, 194, 95, (334,102,0): 213, 195, 95, (334,103,0): 211, 196, 93, (334,104,0): 209, 194, 93, (334,105,0): 208, 194, 95, (334,106,0): 206, 194, 96, (334,107,0): 204, 194, 97, (334,108,0): 203, 192, 100, (334,109,0): 202, 191, 101, (334,110,0): 202, 191, 102, (334,111,0): 200, 190, 103, (334,112,0): 196, 191, 109, (334,113,0): 194, 191, 110, (334,114,0): 191, 190, 108, (334,115,0): 191, 190, 108, (334,116,0): 191, 190, 108, (334,117,0): 191, 190, 108, (334,118,0): 193, 192, 110, (334,119,0): 191, 193, 110, (334,120,0): 191, 193, 110, (334,121,0): 190, 194, 110, (334,122,0): 190, 194, 110, (334,123,0): 190, 194, 110, (334,124,0): 189, 194, 110, (334,125,0): 188, 193, 109, (334,126,0): 188, 193, 109, (334,127,0): 186, 194, 109, (334,128,0): 182, 196, 111, (334,129,0): 181, 195, 110, (334,130,0): 184, 193, 112, (334,131,0): 189, 194, 114, (334,132,0): 193, 191, 116, (334,133,0): 194, 186, 114, (334,134,0): 191, 178, 108, (334,135,0): 189, 171, 105, (334,136,0): 172, 152, 91, (334,137,0): 162, 141, 84, (334,138,0): 149, 128, 73, (334,139,0): 140, 120, 67, (334,140,0): 134, 118, 67, (334,141,0): 131, 118, 66, (334,142,0): 126, 114, 66, (334,143,0): 123, 110, 65, (334,144,0): 125, 110, 67, (334,145,0): 124, 109, 66, (334,146,0): 120, 109, 63, (334,147,0): 118, 111, 59, (334,148,0): 121, 114, 62, (334,149,0): 124, 119, 64, (334,150,0): 129, 123, 71, (334,151,0): 133, 126, 74, (334,152,0): 128, 120, 71, (334,153,0): 136, 129, 77, (334,154,0): 141, 136, 81, (334,155,0): 145, 145, 85, (334,156,0): 159, 164, 97, (334,157,0): 182, 194, 120, (334,158,0): 202, 220, 138, (334,159,0): 212, 232, 147, (334,160,0): 220, 234, 149, (334,161,0): 220, 234, 149, (334,162,0): 220, 232, 148, (334,163,0): 219, 233, 148, (334,164,0): 221, 233, 149, (334,165,0): 222, 236, 151, (334,166,0): 225, 237, 153, (334,167,0): 226, 240, 155, (334,168,0): 224, 236, 152, (334,169,0): 223, 237, 152, (334,170,0): 225, 237, 153, (334,171,0): 224, 238, 153, (334,172,0): 226, 238, 154, (334,173,0): 225, 239, 154, (334,174,0): 227, 239, 155, (334,175,0): 226, 240, 155, (334,176,0): 229, 241, 157, (334,177,0): 228, 242, 157, (334,178,0): 228, 240, 156, (334,179,0): 227, 241, 154, (334,180,0): 228, 241, 153, (334,181,0): 227, 242, 151, (334,182,0): 228, 241, 151, (334,183,0): 227, 242, 149, (334,184,0): 229, 242, 152, (334,185,0): 228, 243, 152, (334,186,0): 230, 243, 153, (334,187,0): 229, 243, 155, (334,188,0): 231, 243, 157, (334,189,0): 231, 245, 160, (334,190,0): 232, 244, 160, (334,191,0): 233, 245, 163, (334,192,0): 233, 240, 160, (334,193,0): 234, 238, 161, (334,194,0): 234, 238, 161, (334,195,0): 233, 237, 160, (334,196,0): 233, 237, 160, (334,197,0): 232, 236, 159, (334,198,0): 232, 236, 159, (334,199,0): 232, 236, 159, (334,200,0): 230, 234, 157, (334,201,0): 231, 235, 158, (334,202,0): 233, 237, 160, (334,203,0): 235, 239, 162, (334,204,0): 235, 239, 162, (334,205,0): 235, 239, 162, (334,206,0): 234, 238, 161, (334,207,0): 234, 237, 158, (334,208,0): 237, 236, 156, (334,209,0): 236, 233, 154, (334,210,0): 233, 230, 151, (334,211,0): 230, 227, 148, (334,212,0): 230, 227, 148, (334,213,0): 232, 229, 152, (334,214,0): 235, 232, 155, (334,215,0): 237, 234, 157, (334,216,0): 236, 232, 158, (334,217,0): 237, 233, 159, (334,218,0): 237, 233, 159, (334,219,0): 238, 234, 161, (334,220,0): 238, 234, 161, (334,221,0): 239, 235, 162, (334,222,0): 239, 235, 162, (334,223,0): 238, 235, 164, (334,224,0): 235, 236, 166, (334,225,0): 233, 239, 169, (334,226,0): 233, 239, 169, (334,227,0): 232, 239, 171, (334,228,0): 231, 238, 171, (334,229,0): 228, 237, 172, (334,230,0): 227, 236, 173, (334,231,0): 226, 236, 175, (334,232,0): 229, 240, 180, (334,233,0): 225, 239, 180, (334,234,0): 223, 236, 180, (334,235,0): 220, 235, 180, (334,236,0): 218, 232, 179, (334,237,0): 216, 233, 181, (334,238,0): 217, 234, 182, (334,239,0): 215, 235, 184, (334,240,0): 209, 231, 182, (334,241,0): 207, 233, 185, (334,242,0): 211, 234, 188, (334,243,0): 213, 236, 190, (334,244,0): 215, 238, 196, (334,245,0): 216, 238, 199, (334,246,0): 215, 237, 199, (334,247,0): 215, 237, 201, (334,248,0): 216, 237, 206, (334,249,0): 214, 234, 206, (334,250,0): 211, 231, 206, (334,251,0): 208, 227, 205, (334,252,0): 207, 224, 205, (334,253,0): 205, 224, 205, (334,254,0): 204, 222, 206, (334,255,0): 200, 224, 208, (334,256,0): 193, 227, 211, (334,257,0): 187, 228, 214, (334,258,0): 186, 227, 213, (334,259,0): 183, 225, 213, (334,260,0): 181, 223, 213, (334,261,0): 178, 221, 212, (334,262,0): 175, 220, 215, (334,263,0): 174, 219, 216, (334,264,0): 170, 216, 216, (334,265,0): 168, 216, 218, (334,266,0): 166, 215, 220, (334,267,0): 166, 215, 222, (334,268,0): 165, 215, 224, (334,269,0): 165, 215, 226, (334,270,0): 165, 215, 226, (334,271,0): 163, 215, 229, (334,272,0): 160, 211, 232, (334,273,0): 162, 212, 235, (334,274,0): 164, 214, 239, (334,275,0): 166, 216, 241, (334,276,0): 167, 217, 244, (334,277,0): 168, 217, 247, (334,278,0): 167, 216, 248, (334,279,0): 167, 216, 248, (334,280,0): 167, 215, 251, (334,281,0): 166, 214, 252, (334,282,0): 165, 213, 251, (334,283,0): 164, 212, 252, (334,284,0): 162, 209, 251, (334,285,0): 162, 209, 253, (334,286,0): 161, 208, 252, (334,287,0): 161, 208, 252, (334,288,0): 164, 208, 253, (334,289,0): 166, 209, 252, (334,290,0): 166, 207, 251, (334,291,0): 165, 207, 249, (334,292,0): 166, 205, 248, (334,293,0): 163, 202, 243, (334,294,0): 162, 200, 239, (334,295,0): 160, 198, 235, (334,296,0): 158, 192, 229, (334,297,0): 157, 191, 226, (334,298,0): 157, 190, 223, (334,299,0): 156, 189, 220, (334,300,0): 156, 187, 218, (334,301,0): 150, 181, 210, (334,302,0): 143, 172, 202, (334,303,0): 139, 166, 196, (334,304,0): 137, 157, 192, (334,305,0): 135, 153, 189, (334,306,0): 132, 148, 182, (334,307,0): 131, 146, 179, (334,308,0): 130, 143, 175, (334,309,0): 128, 139, 167, (334,310,0): 127, 134, 162, (334,311,0): 122, 129, 155, (334,312,0): 121, 127, 151, (334,313,0): 122, 128, 152, (334,314,0): 124, 132, 155, (334,315,0): 127, 135, 158, (334,316,0): 128, 138, 163, (334,317,0): 131, 141, 166, (334,318,0): 132, 144, 170, (334,319,0): 133, 144, 172, (334,320,0): 140, 149, 182, (334,321,0): 145, 151, 187, (334,322,0): 148, 151, 186, (334,323,0): 151, 150, 184, (334,324,0): 156, 151, 183, (334,325,0): 159, 148, 178, (334,326,0): 150, 136, 162, (334,327,0): 140, 120, 145, (334,328,0): 134, 110, 132, (334,329,0): 122, 95, 114, (334,330,0): 112, 81, 96, (334,331,0): 109, 77, 88, (334,332,0): 106, 75, 83, (334,333,0): 101, 68, 75, (334,334,0): 97, 65, 70, (334,335,0): 99, 65, 66, (334,336,0): 104, 64, 64, (334,337,0): 106, 65, 61, (334,338,0): 109, 65, 62, (334,339,0): 111, 66, 63, (334,340,0): 112, 62, 61, (334,341,0): 112, 58, 58, (334,342,0): 109, 53, 54, (334,343,0): 107, 51, 52, (334,344,0): 111, 52, 54, (334,345,0): 109, 50, 52, (334,346,0): 106, 47, 49, (334,347,0): 102, 46, 47, (334,348,0): 101, 47, 47, (334,349,0): 100, 49, 48, (334,350,0): 101, 51, 50, (334,351,0): 102, 54, 52, (334,352,0): 107, 59, 55, (334,353,0): 106, 59, 53, (334,354,0): 106, 59, 53, (334,355,0): 106, 59, 53, (334,356,0): 106, 58, 54, (334,357,0): 107, 59, 55, (334,358,0): 108, 60, 56, (334,359,0): 108, 60, 58, (334,360,0): 105, 57, 55, (334,361,0): 106, 58, 56, (334,362,0): 108, 60, 60, (334,363,0): 110, 62, 62, (334,364,0): 112, 64, 64, (334,365,0): 114, 65, 68, (334,366,0): 116, 67, 70, (334,367,0): 116, 67, 70, (334,368,0): 118, 68, 69, (334,369,0): 118, 68, 67, (334,370,0): 119, 69, 68, (334,371,0): 121, 70, 69, (334,372,0): 123, 72, 71, (334,373,0): 126, 75, 74, (334,374,0): 131, 77, 77, (334,375,0): 133, 79, 79, (334,376,0): 131, 77, 77, (334,377,0): 131, 75, 76, (334,378,0): 127, 71, 72, (334,379,0): 119, 63, 64, (334,380,0): 112, 53, 55, (334,381,0): 105, 46, 48, (334,382,0): 103, 44, 46, (334,383,0): 103, 45, 44, (334,384,0): 104, 49, 46, (334,385,0): 103, 48, 43, (334,386,0): 102, 49, 43, (334,387,0): 104, 51, 45, (334,388,0): 106, 53, 49, (334,389,0): 103, 52, 48, (334,390,0): 100, 49, 45, (334,391,0): 95, 46, 41, (334,392,0): 91, 42, 38, (334,393,0): 89, 41, 37, (334,394,0): 86, 41, 38, (334,395,0): 85, 40, 37, (334,396,0): 83, 39, 36, (334,397,0): 84, 40, 37, (334,398,0): 84, 40, 37, (334,399,0): 85, 41, 38, (334,400,0): 89, 41, 39, (334,401,0): 90, 40, 39, (334,402,0): 91, 41, 42, (334,403,0): 91, 41, 40, (334,404,0): 92, 42, 41, (334,405,0): 91, 43, 41, (334,406,0): 92, 44, 42, (334,407,0): 90, 45, 40, (334,408,0): 82, 37, 32, (334,409,0): 84, 41, 34, (334,410,0): 87, 44, 37, (334,411,0): 91, 48, 39, (334,412,0): 94, 51, 42, (334,413,0): 93, 53, 43, (334,414,0): 96, 53, 44, (334,415,0): 94, 54, 46, (334,416,0): 97, 57, 55, (334,417,0): 96, 58, 55, (334,418,0): 98, 60, 57, (334,419,0): 99, 64, 58, (334,420,0): 102, 69, 60, (334,421,0): 103, 75, 64, (334,422,0): 105, 78, 67, (334,423,0): 103, 81, 70, (334,424,0): 110, 90, 81, (334,425,0): 115, 98, 91, (334,426,0): 126, 110, 111, (334,427,0): 139, 126, 133, (334,428,0): 152, 140, 152, (334,429,0): 159, 148, 165, (334,430,0): 162, 150, 172, (334,431,0): 158, 150, 174, (334,432,0): 160, 157, 184, (334,433,0): 159, 158, 189, (334,434,0): 161, 155, 191, (334,435,0): 158, 150, 191, (334,436,0): 154, 141, 187, (334,437,0): 152, 134, 182, (334,438,0): 153, 131, 178, (334,439,0): 154, 131, 175, (334,440,0): 147, 120, 161, (334,441,0): 132, 106, 141, (334,442,0): 122, 99, 127, (334,443,0): 124, 102, 125, (334,444,0): 122, 103, 123, (334,445,0): 117, 98, 118, (334,446,0): 122, 104, 126, (334,447,0): 132, 116, 145, (334,448,0): 151, 134, 178, (334,449,0): 159, 141, 191, (334,450,0): 171, 149, 198, (334,451,0): 179, 152, 197, (334,452,0): 182, 147, 189, (334,453,0): 182, 142, 177, (334,454,0): 183, 138, 169, (334,455,0): 187, 138, 160, (334,456,0): 180, 127, 145, (334,457,0): 174, 121, 131, (334,458,0): 165, 115, 118, (334,459,0): 162, 113, 109, (334,460,0): 159, 115, 106, (334,461,0): 156, 114, 100, (334,462,0): 147, 110, 92, (334,463,0): 143, 105, 86, (334,464,0): 149, 103, 88, (334,465,0): 147, 99, 85, (334,466,0): 142, 94, 80, (334,467,0): 135, 89, 76, (334,468,0): 132, 86, 73, (334,469,0): 129, 85, 74, (334,470,0): 129, 85, 76, (334,471,0): 129, 86, 77, (334,472,0): 132, 89, 82, (334,473,0): 129, 89, 81, (334,474,0): 125, 87, 78, (334,475,0): 118, 80, 71, (334,476,0): 109, 72, 63, (334,477,0): 105, 68, 59, (334,478,0): 104, 68, 56, (334,479,0): 102, 70, 59, (334,480,0): 100, 73, 64, (334,481,0): 93, 68, 63, (334,482,0): 88, 60, 56, (334,483,0): 81, 53, 49, (334,484,0): 78, 49, 45, (334,485,0): 78, 47, 45, (334,486,0): 79, 48, 46, (334,487,0): 80, 48, 49, (334,488,0): 77, 47, 49, (334,489,0): 75, 46, 48, (334,490,0): 74, 45, 49, (334,491,0): 70, 45, 48, (334,492,0): 66, 44, 46, (334,493,0): 63, 43, 44, (334,494,0): 61, 41, 42, (334,495,0): 60, 40, 41, (334,496,0): 66, 48, 48, (334,497,0): 66, 46, 48, (334,498,0): 65, 45, 47, (334,499,0): 65, 42, 48, (334,500,0): 67, 40, 49, (334,501,0): 68, 38, 48, (334,502,0): 68, 36, 49, (334,503,0): 67, 35, 48, (334,504,0): 62, 30, 43, (334,505,0): 64, 32, 45, (334,506,0): 65, 35, 47, (334,507,0): 62, 35, 44, (334,508,0): 57, 34, 42, (334,509,0): 56, 35, 40, (334,510,0): 59, 38, 43, (334,511,0): 61, 42, 46, (334,512,0): 61, 40, 45, (334,513,0): 63, 42, 49, (334,514,0): 65, 44, 53, (334,515,0): 64, 42, 54, (334,516,0): 60, 40, 52, (334,517,0): 59, 39, 50, (334,518,0): 59, 39, 48, (334,519,0): 61, 42, 48, (334,520,0): 67, 46, 51, (334,521,0): 70, 50, 52, (334,522,0): 74, 52, 55, (334,523,0): 75, 52, 58, (334,524,0): 77, 51, 60, (334,525,0): 79, 53, 66, (334,526,0): 84, 55, 73, (334,527,0): 86, 59, 74, (334,528,0): 89, 63, 72, (334,529,0): 81, 59, 62, (334,530,0): 76, 57, 59, (334,531,0): 72, 60, 60, (334,532,0): 73, 67, 69, (334,533,0): 81, 79, 82, (334,534,0): 102, 103, 108, (334,535,0): 122, 125, 134, (334,536,0): 149, 151, 164, (334,537,0): 156, 155, 169, (334,538,0): 160, 154, 168, (334,539,0): 153, 143, 154, (334,540,0): 146, 129, 137, (334,541,0): 135, 115, 117, (334,542,0): 121, 97, 95, (334,543,0): 108, 83, 79, (334,544,0): 100, 72, 71, (334,545,0): 93, 64, 66, (334,546,0): 82, 56, 59, (334,547,0): 76, 50, 53, (334,548,0): 74, 49, 52, (334,549,0): 72, 47, 50, (334,550,0): 67, 45, 48, (334,551,0): 63, 43, 45, (334,552,0): 60, 39, 44, (334,553,0): 57, 38, 42, (334,554,0): 52, 36, 39, (334,555,0): 49, 33, 36, (334,556,0): 46, 31, 36, (334,557,0): 44, 29, 34, (334,558,0): 42, 30, 34, (334,559,0): 42, 30, 32, (334,560,0): 39, 28, 26, (334,561,0): 43, 29, 26, (334,562,0): 47, 33, 30, (334,563,0): 52, 38, 35, (334,564,0): 57, 42, 39, (334,565,0): 61, 46, 43, (334,566,0): 65, 47, 45, (334,567,0): 66, 48, 46, (334,568,0): 70, 50, 49, (334,569,0): 71, 50, 49, (334,570,0): 73, 49, 49, (334,571,0): 72, 48, 48, (334,572,0): 71, 45, 46, (334,573,0): 69, 43, 44, (334,574,0): 67, 41, 42, (334,575,0): 65, 41, 41, (334,576,0): 64, 43, 40, (334,577,0): 63, 44, 40, (334,578,0): 62, 43, 39, (334,579,0): 62, 43, 39, (334,580,0): 61, 42, 38, (334,581,0): 61, 42, 38, (334,582,0): 61, 42, 38, (334,583,0): 61, 42, 38, (334,584,0): 65, 46, 42, (334,585,0): 63, 44, 40, (334,586,0): 63, 44, 40, (334,587,0): 65, 46, 42, (334,588,0): 68, 49, 45, (334,589,0): 70, 51, 47, (334,590,0): 70, 51, 47, (334,591,0): 67, 49, 47, (334,592,0): 58, 47, 45, (334,593,0): 55, 45, 44, (334,594,0): 52, 42, 41, (334,595,0): 50, 40, 39, (334,596,0): 49, 39, 38, (334,597,0): 50, 40, 39, (334,598,0): 52, 42, 41, (334,599,0): 53, 43, 42, (335,0,0): 69, 60, 55, (335,1,0): 69, 60, 55, (335,2,0): 68, 59, 54, (335,3,0): 68, 59, 54, (335,4,0): 67, 58, 53, (335,5,0): 67, 58, 53, (335,6,0): 66, 57, 52, (335,7,0): 66, 57, 52, (335,8,0): 62, 53, 48, (335,9,0): 63, 54, 49, (335,10,0): 63, 54, 49, (335,11,0): 64, 55, 50, (335,12,0): 65, 56, 51, (335,13,0): 66, 57, 52, (335,14,0): 66, 57, 52, (335,15,0): 68, 57, 53, (335,16,0): 67, 56, 52, (335,17,0): 69, 55, 52, (335,18,0): 69, 55, 52, (335,19,0): 69, 55, 52, (335,20,0): 69, 55, 52, (335,21,0): 69, 55, 52, (335,22,0): 70, 55, 52, (335,23,0): 70, 55, 52, (335,24,0): 70, 52, 50, (335,25,0): 70, 52, 50, (335,26,0): 70, 52, 50, (335,27,0): 70, 52, 48, (335,28,0): 70, 52, 50, (335,29,0): 70, 52, 48, (335,30,0): 71, 52, 48, (335,31,0): 71, 51, 50, (335,32,0): 71, 51, 52, (335,33,0): 70, 50, 51, (335,34,0): 68, 48, 47, (335,35,0): 67, 47, 46, (335,36,0): 68, 47, 46, (335,37,0): 69, 48, 47, (335,38,0): 71, 47, 47, (335,39,0): 72, 48, 46, (335,40,0): 78, 52, 51, (335,41,0): 79, 53, 52, (335,42,0): 80, 55, 51, (335,43,0): 84, 56, 53, (335,44,0): 86, 58, 54, (335,45,0): 88, 60, 56, (335,46,0): 89, 61, 57, (335,47,0): 91, 62, 58, (335,48,0): 96, 61, 57, (335,49,0): 99, 62, 54, (335,50,0): 102, 64, 53, (335,51,0): 108, 66, 52, (335,52,0): 117, 72, 53, (335,53,0): 124, 78, 55, (335,54,0): 132, 82, 57, (335,55,0): 139, 85, 57, (335,56,0): 143, 86, 57, (335,57,0): 145, 88, 58, (335,58,0): 150, 91, 59, (335,59,0): 151, 93, 56, (335,60,0): 153, 95, 55, (335,61,0): 157, 103, 59, (335,62,0): 164, 110, 63, (335,63,0): 172, 117, 63, (335,64,0): 180, 125, 61, (335,65,0): 193, 136, 69, (335,66,0): 207, 150, 81, (335,67,0): 214, 157, 86, (335,68,0): 215, 159, 85, (335,69,0): 214, 158, 81, (335,70,0): 217, 162, 82, (335,71,0): 220, 165, 82, (335,72,0): 219, 164, 81, (335,73,0): 217, 165, 79, (335,74,0): 217, 166, 77, (335,75,0): 218, 167, 76, (335,76,0): 219, 168, 77, (335,77,0): 221, 172, 80, (335,78,0): 223, 174, 82, (335,79,0): 225, 174, 83, (335,80,0): 226, 175, 84, (335,81,0): 225, 174, 82, (335,82,0): 225, 174, 82, (335,83,0): 223, 174, 81, (335,84,0): 222, 175, 83, (335,85,0): 222, 177, 84, (335,86,0): 223, 180, 86, (335,87,0): 222, 182, 87, (335,88,0): 224, 185, 90, (335,89,0): 221, 185, 89, (335,90,0): 218, 184, 87, (335,91,0): 216, 183, 86, (335,92,0): 216, 183, 88, (335,93,0): 215, 185, 89, (335,94,0): 217, 187, 91, (335,95,0): 217, 188, 94, (335,96,0): 217, 190, 99, (335,97,0): 216, 191, 101, (335,98,0): 216, 191, 99, (335,99,0): 216, 193, 99, (335,100,0): 216, 193, 97, (335,101,0): 215, 195, 98, (335,102,0): 214, 196, 96, (335,103,0): 212, 197, 96, (335,104,0): 209, 193, 95, (335,105,0): 208, 194, 95, (335,106,0): 206, 194, 96, (335,107,0): 203, 193, 96, (335,108,0): 202, 193, 100, (335,109,0): 201, 192, 101, (335,110,0): 200, 190, 101, (335,111,0): 198, 190, 105, (335,112,0): 194, 192, 109, (335,113,0): 193, 192, 110, (335,114,0): 189, 191, 108, (335,115,0): 189, 191, 108, (335,116,0): 189, 191, 108, (335,117,0): 189, 190, 110, (335,118,0): 190, 193, 112, (335,119,0): 190, 193, 112, (335,120,0): 189, 194, 112, (335,121,0): 189, 194, 114, (335,122,0): 189, 194, 114, (335,123,0): 188, 193, 113, (335,124,0): 186, 193, 113, (335,125,0): 186, 193, 113, (335,126,0): 186, 193, 113, (335,127,0): 184, 193, 114, (335,128,0): 180, 194, 115, (335,129,0): 179, 193, 116, (335,130,0): 181, 192, 116, (335,131,0): 184, 192, 117, (335,132,0): 189, 191, 118, (335,133,0): 190, 187, 116, (335,134,0): 189, 182, 112, (335,135,0): 187, 177, 108, (335,136,0): 171, 157, 94, (335,137,0): 161, 145, 85, (335,138,0): 147, 130, 74, (335,139,0): 138, 121, 67, (335,140,0): 134, 118, 67, (335,141,0): 132, 116, 67, (335,142,0): 127, 113, 66, (335,143,0): 123, 109, 64, (335,144,0): 123, 110, 66, (335,145,0): 120, 107, 63, (335,146,0): 117, 106, 61, (335,147,0): 114, 106, 59, (335,148,0): 117, 109, 60, (335,149,0): 121, 115, 65, (335,150,0): 129, 121, 72, (335,151,0): 133, 125, 78, (335,152,0): 127, 119, 72, (335,153,0): 135, 129, 79, (335,154,0): 141, 138, 83, (335,155,0): 146, 147, 87, (335,156,0): 160, 167, 100, (335,157,0): 184, 196, 124, (335,158,0): 202, 219, 139, (335,159,0): 209, 228, 146, (335,160,0): 216, 234, 150, (335,161,0): 218, 233, 150, (335,162,0): 217, 232, 149, (335,163,0): 216, 231, 148, (335,164,0): 218, 233, 150, (335,165,0): 218, 236, 154, (335,166,0): 220, 238, 156, (335,167,0): 222, 240, 158, (335,168,0): 219, 237, 155, (335,169,0): 219, 237, 155, (335,170,0): 219, 237, 155, (335,171,0): 220, 238, 156, (335,172,0): 220, 238, 156, (335,173,0): 221, 238, 158, (335,174,0): 221, 238, 158, (335,175,0): 221, 238, 158, (335,176,0): 223, 241, 159, (335,177,0): 223, 241, 159, (335,178,0): 222, 240, 158, (335,179,0): 222, 240, 156, (335,180,0): 222, 240, 154, (335,181,0): 221, 239, 153, (335,182,0): 221, 240, 151, (335,183,0): 221, 240, 151, (335,184,0): 222, 241, 152, (335,185,0): 223, 242, 153, (335,186,0): 224, 242, 156, (335,187,0): 225, 243, 157, (335,188,0): 227, 245, 161, (335,189,0): 228, 246, 164, (335,190,0): 229, 247, 165, (335,191,0): 231, 246, 165, (335,192,0): 231, 242, 163, (335,193,0): 232, 241, 162, (335,194,0): 233, 240, 162, (335,195,0): 232, 239, 161, (335,196,0): 232, 239, 162, (335,197,0): 231, 238, 161, (335,198,0): 231, 238, 161, (335,199,0): 231, 238, 161, (335,200,0): 229, 235, 161, (335,201,0): 230, 237, 160, (335,202,0): 232, 239, 162, (335,203,0): 234, 241, 164, (335,204,0): 235, 242, 165, (335,205,0): 234, 241, 164, (335,206,0): 235, 239, 162, (335,207,0): 234, 238, 161, (335,208,0): 236, 237, 159, (335,209,0): 232, 233, 155, (335,210,0): 230, 228, 151, (335,211,0): 224, 225, 147, (335,212,0): 226, 224, 149, (335,213,0): 227, 228, 152, (335,214,0): 233, 231, 156, (335,215,0): 234, 235, 159, (335,216,0): 235, 233, 159, (335,217,0): 233, 233, 159, (335,218,0): 235, 232, 161, (335,219,0): 234, 234, 162, (335,220,0): 236, 233, 162, (335,221,0): 235, 235, 165, (335,222,0): 237, 234, 165, (335,223,0): 235, 234, 167, (335,224,0): 228, 231, 162, (335,225,0): 227, 234, 164, (335,226,0): 230, 237, 169, (335,227,0): 229, 238, 171, (335,228,0): 229, 238, 173, (335,229,0): 225, 235, 172, (335,230,0): 222, 232, 171, (335,231,0): 218, 229, 169, (335,232,0): 225, 239, 180, (335,233,0): 222, 237, 180, (335,234,0): 220, 235, 180, (335,235,0): 215, 232, 178, (335,236,0): 213, 231, 179, (335,237,0): 213, 231, 181, (335,238,0): 212, 232, 183, (335,239,0): 211, 233, 184, (335,240,0): 205, 228, 182, (335,241,0): 205, 231, 186, (335,242,0): 207, 233, 188, (335,243,0): 209, 234, 192, (335,244,0): 213, 235, 196, (335,245,0): 214, 236, 198, (335,246,0): 214, 236, 200, (335,247,0): 214, 235, 202, (335,248,0): 216, 237, 206, (335,249,0): 214, 234, 207, (335,250,0): 212, 232, 207, (335,251,0): 208, 227, 205, (335,252,0): 207, 224, 205, (335,253,0): 204, 223, 203, (335,254,0): 205, 222, 204, (335,255,0): 200, 223, 205, (335,256,0): 192, 224, 209, (335,257,0): 187, 225, 212, (335,258,0): 186, 224, 213, (335,259,0): 184, 222, 211, (335,260,0): 182, 219, 211, (335,261,0): 178, 217, 212, (335,262,0): 176, 217, 213, (335,263,0): 174, 216, 215, (335,264,0): 170, 211, 213, (335,265,0): 168, 211, 217, (335,266,0): 167, 211, 220, (335,267,0): 165, 212, 222, (335,268,0): 166, 212, 225, (335,269,0): 165, 213, 227, (335,270,0): 165, 213, 227, (335,271,0): 165, 212, 228, (335,272,0): 160, 208, 228, (335,273,0): 160, 211, 232, (335,274,0): 163, 213, 236, (335,275,0): 165, 215, 238, (335,276,0): 167, 217, 244, (335,277,0): 167, 217, 244, (335,278,0): 166, 215, 245, (335,279,0): 166, 215, 247, (335,280,0): 164, 212, 248, (335,281,0): 163, 211, 249, (335,282,0): 162, 210, 248, (335,283,0): 161, 209, 249, (335,284,0): 159, 206, 248, (335,285,0): 159, 206, 250, (335,286,0): 159, 206, 252, (335,287,0): 161, 205, 250, (335,288,0): 163, 206, 251, (335,289,0): 163, 206, 249, (335,290,0): 164, 205, 249, (335,291,0): 163, 205, 247, (335,292,0): 162, 201, 244, (335,293,0): 160, 199, 240, (335,294,0): 158, 196, 235, (335,295,0): 156, 194, 231, (335,296,0): 157, 191, 228, (335,297,0): 155, 189, 224, (335,298,0): 156, 189, 224, (335,299,0): 155, 188, 221, (335,300,0): 155, 186, 217, (335,301,0): 149, 180, 209, (335,302,0): 141, 170, 200, (335,303,0): 137, 164, 194, (335,304,0): 135, 155, 188, (335,305,0): 134, 150, 184, (335,306,0): 131, 146, 179, (335,307,0): 129, 143, 172, (335,308,0): 127, 141, 168, (335,309,0): 125, 137, 163, (335,310,0): 120, 130, 155, (335,311,0): 116, 127, 149, (335,312,0): 119, 127, 148, (335,313,0): 121, 129, 150, (335,314,0): 124, 132, 153, (335,315,0): 126, 137, 157, (335,316,0): 129, 140, 162, (335,317,0): 131, 141, 166, (335,318,0): 130, 142, 166, (335,319,0): 132, 142, 169, (335,320,0): 142, 148, 180, (335,321,0): 146, 149, 184, (335,322,0): 148, 148, 184, (335,323,0): 151, 147, 182, (335,324,0): 156, 149, 182, (335,325,0): 160, 149, 181, (335,326,0): 153, 137, 164, (335,327,0): 142, 122, 147, (335,328,0): 136, 111, 132, (335,329,0): 125, 97, 112, (335,330,0): 114, 84, 96, (335,331,0): 112, 79, 86, (335,332,0): 111, 76, 80, (335,333,0): 105, 71, 72, (335,334,0): 102, 66, 66, (335,335,0): 104, 66, 65, (335,336,0): 109, 65, 64, (335,337,0): 111, 66, 63, (335,338,0): 113, 65, 65, (335,339,0): 114, 64, 65, (335,340,0): 112, 60, 62, (335,341,0): 109, 54, 57, (335,342,0): 106, 50, 53, (335,343,0): 103, 47, 50, (335,344,0): 105, 49, 52, (335,345,0): 104, 48, 51, (335,346,0): 102, 46, 49, (335,347,0): 99, 44, 47, (335,348,0): 98, 46, 48, (335,349,0): 100, 50, 51, (335,350,0): 102, 54, 54, (335,351,0): 104, 56, 56, (335,352,0): 107, 59, 55, (335,353,0): 104, 59, 54, (335,354,0): 104, 56, 52, (335,355,0): 102, 57, 52, (335,356,0): 105, 57, 53, (335,357,0): 107, 59, 55, (335,358,0): 109, 61, 59, (335,359,0): 111, 63, 61, (335,360,0): 103, 55, 53, (335,361,0): 103, 55, 53, (335,362,0): 105, 57, 57, (335,363,0): 107, 59, 59, (335,364,0): 109, 61, 61, (335,365,0): 111, 63, 63, (335,366,0): 112, 64, 64, (335,367,0): 113, 65, 65, (335,368,0): 118, 68, 67, (335,369,0): 119, 68, 65, (335,370,0): 120, 69, 66, (335,371,0): 121, 70, 67, (335,372,0): 124, 73, 70, (335,373,0): 127, 76, 75, (335,374,0): 132, 78, 78, (335,375,0): 133, 79, 79, (335,376,0): 127, 73, 73, (335,377,0): 125, 71, 71, (335,378,0): 121, 65, 66, (335,379,0): 112, 56, 57, (335,380,0): 103, 47, 48, (335,381,0): 99, 43, 44, (335,382,0): 100, 44, 45, (335,383,0): 103, 47, 48, (335,384,0): 102, 48, 46, (335,385,0): 101, 48, 44, (335,386,0): 102, 49, 45, (335,387,0): 103, 52, 48, (335,388,0): 105, 54, 51, (335,389,0): 105, 54, 51, (335,390,0): 100, 51, 47, (335,391,0): 96, 47, 43, (335,392,0): 89, 41, 37, (335,393,0): 88, 40, 38, (335,394,0): 87, 39, 37, (335,395,0): 84, 39, 36, (335,396,0): 84, 39, 36, (335,397,0): 84, 39, 36, (335,398,0): 84, 40, 37, (335,399,0): 86, 41, 38, (335,400,0): 89, 39, 38, (335,401,0): 91, 40, 37, (335,402,0): 92, 41, 38, (335,403,0): 93, 42, 39, (335,404,0): 94, 43, 40, (335,405,0): 95, 44, 41, (335,406,0): 95, 46, 42, (335,407,0): 95, 46, 41, (335,408,0): 84, 37, 31, (335,409,0): 87, 40, 34, (335,410,0): 91, 44, 36, (335,411,0): 93, 49, 40, (335,412,0): 98, 51, 43, (335,413,0): 97, 53, 44, (335,414,0): 100, 53, 45, (335,415,0): 98, 53, 47, (335,416,0): 94, 53, 49, (335,417,0): 94, 54, 52, (335,418,0): 97, 58, 53, (335,419,0): 101, 62, 57, (335,420,0): 106, 69, 61, (335,421,0): 109, 75, 65, (335,422,0): 111, 78, 69, (335,423,0): 110, 81, 73, (335,424,0): 115, 88, 81, (335,425,0): 117, 93, 91, (335,426,0): 126, 106, 108, (335,427,0): 142, 122, 133, (335,428,0): 156, 139, 155, (335,429,0): 164, 149, 170, (335,430,0): 166, 150, 176, (335,431,0): 162, 149, 177, (335,432,0): 165, 156, 187, (335,433,0): 164, 154, 188, (335,434,0): 161, 149, 187, (335,435,0): 154, 139, 180, (335,436,0): 145, 126, 171, (335,437,0): 139, 116, 160, (335,438,0): 136, 111, 153, (335,439,0): 136, 110, 149, (335,440,0): 144, 114, 148, (335,441,0): 130, 101, 129, (335,442,0): 124, 96, 118, (335,443,0): 126, 102, 118, (335,444,0): 124, 100, 114, (335,445,0): 117, 93, 106, (335,446,0): 122, 100, 112, (335,447,0): 136, 113, 133, (335,448,0): 150, 126, 162, (335,449,0): 157, 132, 174, (335,450,0): 168, 140, 181, (335,451,0): 175, 143, 180, (335,452,0): 180, 140, 175, (335,453,0): 179, 136, 164, (335,454,0): 179, 131, 153, (335,455,0): 180, 129, 146, (335,456,0): 165, 112, 122, (335,457,0): 158, 106, 110, (335,458,0): 149, 98, 97, (335,459,0): 144, 95, 91, (335,460,0): 140, 96, 87, (335,461,0): 136, 94, 82, (335,462,0): 128, 89, 74, (335,463,0): 122, 82, 70, (335,464,0): 127, 83, 74, (335,465,0): 127, 80, 74, (335,466,0): 122, 77, 71, (335,467,0): 119, 74, 68, (335,468,0): 116, 71, 66, (335,469,0): 114, 71, 65, (335,470,0): 113, 70, 64, (335,471,0): 111, 70, 66, (335,472,0): 112, 71, 67, (335,473,0): 112, 73, 68, (335,474,0): 110, 73, 67, (335,475,0): 105, 68, 62, (335,476,0): 95, 60, 54, (335,477,0): 89, 54, 48, (335,478,0): 86, 52, 43, (335,479,0): 85, 52, 45, (335,480,0): 98, 70, 66, (335,481,0): 91, 66, 61, (335,482,0): 83, 58, 54, (335,483,0): 76, 51, 47, (335,484,0): 74, 46, 43, (335,485,0): 74, 46, 43, (335,486,0): 76, 48, 47, (335,487,0): 78, 50, 49, (335,488,0): 77, 47, 47, (335,489,0): 76, 47, 49, (335,490,0): 75, 46, 48, (335,491,0): 71, 45, 46, (335,492,0): 68, 44, 44, (335,493,0): 64, 43, 42, (335,494,0): 61, 41, 40, (335,495,0): 60, 40, 39, (335,496,0): 67, 46, 45, (335,497,0): 66, 45, 44, (335,498,0): 65, 43, 45, (335,499,0): 66, 41, 44, (335,500,0): 66, 39, 44, (335,501,0): 66, 36, 44, (335,502,0): 65, 35, 43, (335,503,0): 66, 34, 45, (335,504,0): 60, 30, 40, (335,505,0): 63, 33, 43, (335,506,0): 63, 36, 43, (335,507,0): 61, 36, 42, (335,508,0): 56, 33, 39, (335,509,0): 55, 35, 37, (335,510,0): 57, 38, 40, (335,511,0): 61, 42, 44, (335,512,0): 57, 36, 41, (335,513,0): 60, 39, 46, (335,514,0): 63, 42, 51, (335,515,0): 63, 41, 53, (335,516,0): 60, 38, 50, (335,517,0): 57, 37, 48, (335,518,0): 58, 37, 46, (335,519,0): 59, 38, 45, (335,520,0): 65, 44, 49, (335,521,0): 67, 46, 51, (335,522,0): 69, 46, 52, (335,523,0): 70, 47, 53, (335,524,0): 73, 47, 56, (335,525,0): 75, 49, 62, (335,526,0): 79, 52, 67, (335,527,0): 83, 57, 70, (335,528,0): 86, 61, 67, (335,529,0): 78, 56, 59, (335,530,0): 73, 53, 55, (335,531,0): 70, 54, 55, (335,532,0): 68, 58, 59, (335,533,0): 75, 69, 71, (335,534,0): 96, 91, 97, (335,535,0): 115, 112, 119, (335,536,0): 140, 137, 146, (335,537,0): 150, 144, 154, (335,538,0): 155, 145, 154, (335,539,0): 151, 138, 147, (335,540,0): 145, 126, 132, (335,541,0): 135, 113, 115, (335,542,0): 119, 95, 93, (335,543,0): 105, 80, 76, (335,544,0): 96, 67, 69, (335,545,0): 92, 63, 67, (335,546,0): 86, 57, 61, (335,547,0): 79, 53, 56, (335,548,0): 74, 49, 52, (335,549,0): 71, 46, 49, (335,550,0): 66, 44, 47, (335,551,0): 62, 42, 44, (335,552,0): 57, 38, 42, (335,553,0): 56, 37, 41, (335,554,0): 53, 34, 38, (335,555,0): 49, 33, 36, (335,556,0): 47, 31, 34, (335,557,0): 46, 30, 33, (335,558,0): 46, 29, 35, (335,559,0): 45, 30, 33, (335,560,0): 40, 26, 26, (335,561,0): 42, 28, 27, (335,562,0): 48, 32, 33, (335,563,0): 53, 37, 37, (335,564,0): 59, 41, 41, (335,565,0): 61, 43, 43, (335,566,0): 63, 43, 44, (335,567,0): 63, 43, 44, (335,568,0): 69, 47, 49, (335,569,0): 70, 48, 50, (335,570,0): 72, 47, 50, (335,571,0): 73, 47, 50, (335,572,0): 71, 45, 48, (335,573,0): 68, 42, 43, (335,574,0): 68, 39, 43, (335,575,0): 63, 39, 39, (335,576,0): 64, 44, 43, (335,577,0): 64, 46, 44, (335,578,0): 64, 46, 44, (335,579,0): 64, 46, 44, (335,580,0): 64, 46, 44, (335,581,0): 63, 45, 43, (335,582,0): 63, 45, 43, (335,583,0): 62, 44, 42, (335,584,0): 65, 47, 45, (335,585,0): 64, 46, 44, (335,586,0): 63, 45, 43, (335,587,0): 63, 48, 45, (335,588,0): 69, 51, 49, (335,589,0): 69, 54, 51, (335,590,0): 69, 54, 51, (335,591,0): 66, 52, 49, (335,592,0): 59, 49, 48, (335,593,0): 56, 48, 46, (335,594,0): 53, 43, 44, (335,595,0): 49, 41, 39, (335,596,0): 49, 39, 40, (335,597,0): 48, 40, 38, (335,598,0): 51, 41, 42, (335,599,0): 51, 43, 41, (336,0,0): 74, 63, 57, (336,1,0): 73, 62, 56, (336,2,0): 72, 61, 55, (336,3,0): 71, 60, 54, (336,4,0): 69, 58, 52, (336,5,0): 68, 57, 51, (336,6,0): 67, 56, 50, (336,7,0): 66, 55, 49, (336,8,0): 66, 55, 49, (336,9,0): 66, 55, 49, (336,10,0): 66, 55, 49, (336,11,0): 67, 56, 50, (336,12,0): 67, 56, 50, (336,13,0): 67, 56, 50, (336,14,0): 68, 57, 51, (336,15,0): 68, 57, 53, (336,16,0): 71, 57, 54, (336,17,0): 72, 56, 56, (336,18,0): 72, 56, 56, (336,19,0): 72, 56, 56, (336,20,0): 72, 57, 54, (336,21,0): 72, 57, 54, (336,22,0): 72, 57, 54, (336,23,0): 72, 57, 54, (336,24,0): 73, 58, 53, (336,25,0): 73, 58, 53, (336,26,0): 73, 58, 53, (336,27,0): 73, 58, 51, (336,28,0): 73, 58, 53, (336,29,0): 71, 56, 49, (336,30,0): 71, 54, 47, (336,31,0): 70, 53, 46, (336,32,0): 70, 52, 48, (336,33,0): 69, 51, 47, (336,34,0): 69, 50, 46, (336,35,0): 69, 50, 46, (336,36,0): 69, 50, 46, (336,37,0): 70, 51, 47, (336,38,0): 73, 52, 49, (336,39,0): 73, 52, 47, (336,40,0): 77, 53, 49, (336,41,0): 78, 54, 50, (336,42,0): 79, 55, 51, (336,43,0): 82, 57, 53, (336,44,0): 84, 59, 55, (336,45,0): 86, 61, 57, (336,46,0): 87, 62, 58, (336,47,0): 91, 62, 58, (336,48,0): 95, 61, 52, (336,49,0): 100, 62, 51, (336,50,0): 104, 64, 54, (336,51,0): 107, 65, 51, (336,52,0): 109, 66, 49, (336,53,0): 114, 69, 48, (336,54,0): 121, 73, 51, (336,55,0): 127, 77, 52, (336,56,0): 141, 87, 59, (336,57,0): 144, 89, 59, (336,58,0): 148, 92, 59, (336,59,0): 153, 94, 60, (336,60,0): 157, 99, 61, (336,61,0): 161, 102, 62, (336,62,0): 163, 104, 62, (336,63,0): 166, 105, 60, (336,64,0): 169, 112, 59, (336,65,0): 182, 126, 69, (336,66,0): 202, 143, 85, (336,67,0): 215, 157, 94, (336,68,0): 220, 161, 93, (336,69,0): 218, 160, 87, (336,70,0): 215, 158, 79, (336,71,0): 213, 157, 74, (336,72,0): 220, 164, 81, (336,73,0): 219, 165, 79, (336,74,0): 217, 165, 79, (336,75,0): 217, 165, 79, (336,76,0): 217, 167, 82, (336,77,0): 216, 168, 84, (336,78,0): 217, 169, 85, (336,79,0): 218, 170, 86, (336,80,0): 222, 172, 87, (336,81,0): 224, 174, 87, (336,82,0): 227, 177, 90, (336,83,0): 228, 181, 93, (336,84,0): 229, 182, 92, (336,85,0): 227, 182, 91, (336,86,0): 222, 181, 89, (336,87,0): 220, 181, 88, (336,88,0): 217, 181, 87, (336,89,0): 219, 184, 90, (336,90,0): 220, 187, 92, (336,91,0): 216, 186, 90, (336,92,0): 212, 183, 89, (336,93,0): 211, 182, 88, (336,94,0): 214, 185, 91, (336,95,0): 215, 189, 96, (336,96,0): 216, 191, 101, (336,97,0): 216, 191, 101, (336,98,0): 215, 191, 101, (336,99,0): 215, 192, 99, (336,100,0): 213, 192, 99, (336,101,0): 212, 193, 98, (336,102,0): 210, 194, 98, (336,103,0): 209, 195, 98, (336,104,0): 206, 194, 96, (336,105,0): 204, 194, 97, (336,106,0): 203, 194, 99, (336,107,0): 200, 194, 100, (336,108,0): 199, 194, 103, (336,109,0): 198, 192, 104, (336,110,0): 197, 193, 104, (336,111,0): 194, 192, 105, (336,112,0): 189, 191, 107, (336,113,0): 188, 192, 107, (336,114,0): 188, 192, 108, (336,115,0): 187, 191, 107, (336,116,0): 186, 191, 109, (336,117,0): 186, 191, 111, (336,118,0): 184, 191, 113, (336,119,0): 184, 191, 113, (336,120,0): 185, 192, 115, (336,121,0): 185, 191, 117, (336,122,0): 185, 193, 120, (336,123,0): 185, 193, 120, (336,124,0): 182, 192, 121, (336,125,0): 180, 190, 119, (336,126,0): 179, 189, 118, (336,127,0): 177, 188, 119, (336,128,0): 177, 189, 123, (336,129,0): 177, 189, 123, (336,130,0): 178, 189, 121, (336,131,0): 179, 190, 121, (336,132,0): 180, 190, 119, (336,133,0): 183, 189, 117, (336,134,0): 185, 189, 115, (336,135,0): 186, 188, 115, (336,136,0): 173, 170, 99, (336,137,0): 166, 161, 95, (336,138,0): 156, 146, 85, (336,139,0): 146, 131, 76, (336,140,0): 136, 118, 68, (336,141,0): 133, 112, 65, (336,142,0): 131, 108, 66, (336,143,0): 128, 109, 67, (336,144,0): 119, 106, 64, (336,145,0): 115, 103, 61, (336,146,0): 112, 100, 58, (336,147,0): 111, 99, 57, (336,148,0): 114, 102, 60, (336,149,0): 117, 108, 65, (336,150,0): 125, 113, 71, (336,151,0): 127, 118, 75, (336,152,0): 122, 113, 70, (336,153,0): 127, 121, 73, (336,154,0): 136, 135, 81, (336,155,0): 151, 152, 94, (336,156,0): 167, 173, 109, (336,157,0): 185, 195, 126, (336,158,0): 201, 213, 141, (336,159,0): 208, 225, 147, (336,160,0): 210, 229, 148, (336,161,0): 208, 230, 148, (336,162,0): 208, 229, 150, (336,163,0): 209, 230, 151, (336,164,0): 210, 231, 152, (336,165,0): 210, 233, 155, (336,166,0): 210, 233, 155, (336,167,0): 211, 234, 156, (336,168,0): 212, 234, 159, (336,169,0): 212, 234, 159, (336,170,0): 211, 235, 161, (336,171,0): 211, 235, 161, (336,172,0): 210, 236, 162, (336,173,0): 210, 236, 163, (336,174,0): 210, 236, 163, (336,175,0): 212, 236, 162, (336,176,0): 214, 235, 160, (336,177,0): 217, 235, 159, (336,178,0): 217, 235, 159, (336,179,0): 217, 236, 157, (336,180,0): 216, 235, 156, (336,181,0): 214, 233, 154, (336,182,0): 212, 231, 152, (336,183,0): 211, 230, 151, (336,184,0): 215, 234, 155, (336,185,0): 217, 236, 157, (336,186,0): 219, 238, 159, (336,187,0): 218, 237, 158, (336,188,0): 218, 237, 158, (336,189,0): 219, 237, 161, (336,190,0): 223, 241, 165, (336,191,0): 227, 246, 167, (336,192,0): 228, 243, 162, (336,193,0): 228, 243, 160, (336,194,0): 230, 243, 163, (336,195,0): 231, 244, 165, (336,196,0): 231, 243, 167, (336,197,0): 231, 243, 169, (336,198,0): 232, 242, 171, (336,199,0): 232, 242, 171, (336,200,0): 228, 238, 169, (336,201,0): 227, 237, 166, (336,202,0): 227, 234, 164, (336,203,0): 227, 235, 162, (336,204,0): 227, 235, 162, (336,205,0): 228, 236, 161, (336,206,0): 231, 238, 161, (336,207,0): 233, 240, 162, (336,208,0): 227, 234, 156, (336,209,0): 227, 234, 156, (336,210,0): 228, 232, 155, (336,211,0): 226, 233, 155, (336,212,0): 228, 232, 156, (336,213,0): 226, 233, 156, (336,214,0): 229, 233, 159, (336,215,0): 227, 233, 159, (336,216,0): 228, 231, 160, (336,217,0): 226, 232, 162, (336,218,0): 228, 231, 164, (336,219,0): 225, 230, 163, (336,220,0): 227, 230, 163, (336,221,0): 225, 230, 164, (336,222,0): 227, 229, 164, (336,223,0): 225, 230, 164, (336,224,0): 230, 235, 168, (336,225,0): 229, 236, 168, (336,226,0): 229, 236, 169, (336,227,0): 227, 236, 169, (336,228,0): 227, 236, 171, (336,229,0): 226, 236, 173, (336,230,0): 225, 237, 175, (336,231,0): 223, 237, 176, (336,232,0): 215, 233, 175, (336,233,0): 214, 233, 177, (336,234,0): 214, 232, 180, (336,235,0): 212, 232, 181, (336,236,0): 210, 232, 183, (336,237,0): 209, 231, 182, (336,238,0): 208, 232, 184, (336,239,0): 208, 231, 185, (336,240,0): 204, 229, 189, (336,241,0): 204, 229, 190, (336,242,0): 204, 229, 190, (336,243,0): 204, 228, 192, (336,244,0): 205, 229, 193, (336,245,0): 205, 229, 195, (336,246,0): 205, 229, 195, (336,247,0): 205, 229, 197, (336,248,0): 206, 229, 200, (336,249,0): 205, 228, 199, (336,250,0): 204, 227, 199, (336,251,0): 203, 226, 200, (336,252,0): 204, 224, 199, (336,253,0): 201, 224, 198, (336,254,0): 202, 221, 199, (336,255,0): 199, 222, 202, (336,256,0): 191, 222, 206, (336,257,0): 190, 222, 209, (336,258,0): 189, 221, 210, (336,259,0): 186, 219, 210, (336,260,0): 184, 217, 210, (336,261,0): 178, 213, 209, (336,262,0): 174, 210, 208, (336,263,0): 170, 208, 209, (336,264,0): 173, 210, 216, (336,265,0): 171, 210, 217, (336,266,0): 169, 209, 219, (336,267,0): 166, 208, 220, (336,268,0): 165, 207, 223, (336,269,0): 164, 205, 223, (336,270,0): 163, 204, 222, (336,271,0): 162, 205, 224, (336,272,0): 160, 207, 225, (336,273,0): 159, 208, 225, (336,274,0): 160, 208, 228, (336,275,0): 161, 209, 229, (336,276,0): 163, 211, 234, (336,277,0): 164, 211, 237, (336,278,0): 165, 212, 240, (336,279,0): 166, 213, 243, (336,280,0): 162, 208, 242, (336,281,0): 162, 208, 244, (336,282,0): 162, 207, 246, (336,283,0): 162, 207, 248, (336,284,0): 162, 207, 249, (336,285,0): 162, 207, 249, (336,286,0): 162, 206, 251, (336,287,0): 162, 206, 251, (336,288,0): 163, 206, 249, (336,289,0): 162, 205, 247, (336,290,0): 162, 204, 246, (336,291,0): 160, 202, 242, (336,292,0): 159, 198, 239, (336,293,0): 157, 196, 235, (336,294,0): 157, 195, 234, (336,295,0): 156, 194, 231, (336,296,0): 161, 195, 232, (336,297,0): 158, 192, 227, (336,298,0): 156, 189, 224, (336,299,0): 154, 187, 220, (336,300,0): 155, 185, 219, (336,301,0): 152, 183, 214, (336,302,0): 148, 177, 209, (336,303,0): 147, 172, 203, (336,304,0): 142, 161, 191, (336,305,0): 137, 153, 179, (336,306,0): 127, 143, 168, (336,307,0): 124, 139, 162, (336,308,0): 125, 140, 161, (336,309,0): 125, 141, 157, (336,310,0): 123, 136, 152, (336,311,0): 118, 132, 145, (336,312,0): 119, 131, 145, (336,313,0): 120, 132, 146, (336,314,0): 123, 135, 151, (336,315,0): 124, 137, 153, (336,316,0): 126, 139, 156, (336,317,0): 126, 139, 158, (336,318,0): 126, 138, 160, (336,319,0): 126, 136, 161, (336,320,0): 136, 140, 169, (336,321,0): 138, 139, 170, (336,322,0): 142, 141, 173, (336,323,0): 147, 143, 176, (336,324,0): 152, 145, 179, (336,325,0): 153, 142, 176, (336,326,0): 150, 135, 164, (336,327,0): 148, 130, 154, (336,328,0): 138, 115, 133, (336,329,0): 129, 103, 114, (336,330,0): 121, 90, 95, (336,331,0): 119, 85, 84, (336,332,0): 114, 79, 75, (336,333,0): 108, 71, 63, (336,334,0): 107, 69, 60, (336,335,0): 113, 70, 63, (336,336,0): 119, 69, 70, (336,337,0): 115, 63, 65, (336,338,0): 107, 55, 59, (336,339,0): 102, 50, 54, (336,340,0): 99, 47, 51, (336,341,0): 97, 45, 49, (336,342,0): 94, 42, 46, (336,343,0): 91, 39, 43, (336,344,0): 87, 36, 41, (336,345,0): 86, 37, 41, (336,346,0): 87, 38, 44, (336,347,0): 87, 40, 46, (336,348,0): 88, 41, 47, (336,349,0): 88, 43, 48, (336,350,0): 89, 44, 49, (336,351,0): 90, 45, 48, (336,352,0): 95, 51, 50, (336,353,0): 97, 53, 50, (336,354,0): 100, 55, 52, (336,355,0): 99, 55, 52, (336,356,0): 98, 53, 50, (336,357,0): 98, 53, 50, (336,358,0): 100, 54, 54, (336,359,0): 102, 56, 56, (336,360,0): 98, 52, 52, (336,361,0): 98, 52, 52, (336,362,0): 99, 53, 53, (336,363,0): 101, 55, 55, (336,364,0): 105, 57, 57, (336,365,0): 108, 60, 60, (336,366,0): 111, 63, 63, (336,367,0): 114, 64, 63, (336,368,0): 119, 68, 64, (336,369,0): 122, 69, 65, (336,370,0): 125, 72, 68, (336,371,0): 127, 74, 70, (336,372,0): 128, 75, 71, (336,373,0): 129, 75, 73, (336,374,0): 127, 76, 73, (336,375,0): 126, 75, 72, (336,376,0): 115, 64, 61, (336,377,0): 111, 60, 57, (336,378,0): 106, 52, 52, (336,379,0): 98, 47, 46, (336,380,0): 93, 41, 43, (336,381,0): 92, 40, 42, (336,382,0): 93, 41, 43, (336,383,0): 94, 42, 44, (336,384,0): 97, 46, 45, (336,385,0): 98, 47, 46, (336,386,0): 99, 48, 47, (336,387,0): 98, 48, 47, (336,388,0): 96, 46, 45, (336,389,0): 94, 44, 43, (336,390,0): 91, 41, 40, (336,391,0): 89, 39, 38, (336,392,0): 91, 41, 40, (336,393,0): 89, 39, 40, (336,394,0): 87, 37, 38, (336,395,0): 84, 36, 36, (336,396,0): 84, 36, 36, (336,397,0): 86, 38, 38, (336,398,0): 88, 40, 40, (336,399,0): 91, 41, 40, (336,400,0): 97, 46, 43, (336,401,0): 99, 46, 42, (336,402,0): 100, 47, 43, (336,403,0): 101, 48, 44, (336,404,0): 101, 48, 44, (336,405,0): 100, 47, 43, (336,406,0): 99, 46, 42, (336,407,0): 99, 46, 40, (336,408,0): 96, 43, 37, (336,409,0): 97, 44, 38, (336,410,0): 100, 47, 41, (336,411,0): 100, 50, 43, (336,412,0): 104, 51, 45, (336,413,0): 103, 53, 46, (336,414,0): 106, 53, 47, (336,415,0): 103, 54, 47, (336,416,0): 98, 53, 48, (336,417,0): 99, 56, 50, (336,418,0): 103, 60, 53, (336,419,0): 107, 64, 57, (336,420,0): 113, 70, 61, (336,421,0): 116, 76, 66, (336,422,0): 119, 81, 72, (336,423,0): 120, 83, 75, (336,424,0): 124, 89, 87, (336,425,0): 123, 91, 94, (336,426,0): 128, 98, 108, (336,427,0): 136, 112, 128, (336,428,0): 149, 127, 150, (336,429,0): 159, 139, 167, (336,430,0): 162, 145, 177, (336,431,0): 163, 146, 180, (336,432,0): 169, 149, 184, (336,433,0): 165, 145, 180, (336,434,0): 155, 133, 171, (336,435,0): 139, 114, 153, (336,436,0): 124, 98, 137, (336,437,0): 118, 90, 128, (336,438,0): 122, 92, 128, (336,439,0): 128, 99, 130, (336,440,0): 137, 104, 135, (336,441,0): 132, 99, 126, (336,442,0): 123, 91, 114, (336,443,0): 119, 86, 107, (336,444,0): 125, 92, 111, (336,445,0): 135, 102, 121, (336,446,0): 136, 103, 122, (336,447,0): 129, 95, 119, (336,448,0): 140, 105, 137, (336,449,0): 161, 125, 161, (336,450,0): 182, 142, 176, (336,451,0): 181, 141, 168, (336,452,0): 174, 130, 155, (336,453,0): 166, 122, 139, (336,454,0): 163, 115, 127, (336,455,0): 159, 110, 116, (336,456,0): 148, 98, 101, (336,457,0): 143, 95, 93, (336,458,0): 138, 90, 88, (336,459,0): 131, 86, 83, (336,460,0): 125, 80, 77, (336,461,0): 116, 72, 69, (336,462,0): 104, 63, 61, (336,463,0): 96, 56, 56, (336,464,0): 95, 56, 57, (336,465,0): 93, 57, 57, (336,466,0): 92, 56, 56, (336,467,0): 90, 56, 55, (336,468,0): 90, 56, 55, (336,469,0): 89, 55, 54, (336,470,0): 88, 54, 53, (336,471,0): 86, 55, 53, (336,472,0): 87, 56, 54, (336,473,0): 85, 55, 53, (336,474,0): 82, 53, 49, (336,475,0): 79, 51, 47, (336,476,0): 78, 50, 46, (336,477,0): 77, 49, 45, (336,478,0): 75, 50, 45, (336,479,0): 76, 51, 46, (336,480,0): 88, 60, 57, (336,481,0): 84, 59, 55, (336,482,0): 79, 55, 51, (336,483,0): 73, 52, 47, (336,484,0): 70, 49, 44, (336,485,0): 69, 48, 43, (336,486,0): 69, 48, 43, (336,487,0): 71, 47, 43, (336,488,0): 69, 44, 40, (336,489,0): 71, 43, 42, (336,490,0): 71, 43, 42, (336,491,0): 71, 43, 42, (336,492,0): 68, 44, 42, (336,493,0): 65, 44, 41, (336,494,0): 63, 44, 40, (336,495,0): 63, 42, 39, (336,496,0): 71, 47, 43, (336,497,0): 70, 46, 42, (336,498,0): 69, 45, 43, (336,499,0): 67, 43, 41, (336,500,0): 67, 41, 40, (336,501,0): 66, 42, 42, (336,502,0): 66, 42, 42, (336,503,0): 66, 41, 44, (336,504,0): 62, 40, 42, (336,505,0): 61, 41, 42, (336,506,0): 61, 41, 42, (336,507,0): 59, 41, 41, (336,508,0): 57, 41, 41, (336,509,0): 58, 42, 42, (336,510,0): 58, 42, 42, (336,511,0): 58, 42, 43, (336,512,0): 66, 45, 52, (336,513,0): 65, 42, 52, (336,514,0): 63, 40, 50, (336,515,0): 60, 37, 47, (336,516,0): 58, 35, 45, (336,517,0): 56, 35, 44, (336,518,0): 57, 34, 44, (336,519,0): 57, 34, 44, (336,520,0): 61, 38, 46, (336,521,0): 63, 40, 48, (336,522,0): 65, 42, 50, (336,523,0): 65, 42, 50, (336,524,0): 66, 43, 53, (336,525,0): 68, 45, 55, (336,526,0): 74, 50, 63, (336,527,0): 80, 54, 65, (336,528,0): 81, 56, 60, (336,529,0): 80, 55, 58, (336,530,0): 74, 52, 54, (336,531,0): 67, 47, 48, (336,532,0): 64, 45, 47, (336,533,0): 71, 55, 56, (336,534,0): 88, 73, 76, (336,535,0): 100, 88, 90, (336,536,0): 115, 103, 105, (336,537,0): 121, 106, 109, (336,538,0): 128, 112, 115, (336,539,0): 135, 116, 120, (336,540,0): 136, 114, 117, (336,541,0): 129, 104, 107, (336,542,0): 116, 90, 91, (336,543,0): 107, 78, 80, (336,544,0): 98, 67, 72, (336,545,0): 92, 61, 67, (336,546,0): 83, 54, 59, (336,547,0): 75, 48, 53, (336,548,0): 71, 46, 50, (336,549,0): 69, 44, 48, (336,550,0): 63, 41, 44, (336,551,0): 59, 39, 41, (336,552,0): 56, 37, 39, (336,553,0): 54, 35, 37, (336,554,0): 52, 33, 35, (336,555,0): 50, 30, 32, (336,556,0): 48, 28, 30, (336,557,0): 47, 27, 29, (336,558,0): 47, 26, 31, (336,559,0): 47, 26, 31, (336,560,0): 45, 28, 34, (336,561,0): 45, 28, 34, (336,562,0): 46, 29, 37, (336,563,0): 47, 30, 36, (336,564,0): 52, 33, 39, (336,565,0): 55, 36, 42, (336,566,0): 59, 38, 43, (336,567,0): 61, 40, 45, (336,568,0): 69, 48, 53, (336,569,0): 69, 46, 52, (336,570,0): 67, 45, 48, (336,571,0): 68, 43, 47, (336,572,0): 66, 41, 45, (336,573,0): 64, 39, 42, (336,574,0): 63, 36, 41, (336,575,0): 60, 38, 40, (336,576,0): 64, 46, 46, (336,577,0): 63, 47, 47, (336,578,0): 64, 48, 48, (336,579,0): 64, 48, 48, (336,580,0): 63, 49, 48, (336,581,0): 62, 48, 47, (336,582,0): 60, 46, 45, (336,583,0): 60, 46, 45, (336,584,0): 59, 48, 46, (336,585,0): 60, 49, 47, (336,586,0): 62, 51, 49, (336,587,0): 63, 53, 51, (336,588,0): 64, 53, 51, (336,589,0): 63, 53, 51, (336,590,0): 63, 53, 51, (336,591,0): 62, 54, 52, (336,592,0): 58, 49, 50, (336,593,0): 55, 49, 49, (336,594,0): 55, 46, 49, (336,595,0): 50, 44, 44, (336,596,0): 50, 41, 44, (336,597,0): 46, 40, 40, (336,598,0): 48, 39, 42, (336,599,0): 45, 39, 39, (337,0,0): 73, 62, 56, (337,1,0): 73, 62, 56, (337,2,0): 72, 61, 55, (337,3,0): 71, 60, 54, (337,4,0): 69, 58, 52, (337,5,0): 68, 57, 51, (337,6,0): 67, 56, 50, (337,7,0): 67, 56, 50, (337,8,0): 66, 55, 49, (337,9,0): 66, 55, 49, (337,10,0): 66, 55, 49, (337,11,0): 66, 55, 49, (337,12,0): 66, 55, 49, (337,13,0): 67, 56, 50, (337,14,0): 67, 56, 50, (337,15,0): 69, 56, 50, (337,16,0): 72, 56, 56, (337,17,0): 72, 56, 56, (337,18,0): 72, 56, 56, (337,19,0): 72, 56, 56, (337,20,0): 72, 57, 54, (337,21,0): 72, 57, 54, (337,22,0): 72, 57, 54, (337,23,0): 72, 57, 54, (337,24,0): 73, 58, 53, (337,25,0): 73, 58, 53, (337,26,0): 74, 59, 52, (337,27,0): 74, 59, 52, (337,28,0): 73, 58, 51, (337,29,0): 72, 57, 50, (337,30,0): 70, 56, 47, (337,31,0): 69, 55, 46, (337,32,0): 71, 54, 47, (337,33,0): 70, 53, 46, (337,34,0): 70, 51, 45, (337,35,0): 70, 51, 45, (337,36,0): 70, 51, 45, (337,37,0): 71, 52, 46, (337,38,0): 73, 52, 47, (337,39,0): 74, 53, 48, (337,40,0): 77, 53, 49, (337,41,0): 78, 54, 50, (337,42,0): 79, 55, 51, (337,43,0): 81, 57, 53, (337,44,0): 84, 59, 55, (337,45,0): 85, 60, 56, (337,46,0): 87, 62, 58, (337,47,0): 90, 61, 57, (337,48,0): 94, 60, 51, (337,49,0): 100, 62, 51, (337,50,0): 104, 64, 54, (337,51,0): 105, 65, 53, (337,52,0): 107, 65, 49, (337,53,0): 111, 68, 51, (337,54,0): 119, 72, 52, (337,55,0): 124, 76, 54, (337,56,0): 134, 82, 58, (337,57,0): 139, 85, 57, (337,58,0): 144, 89, 58, (337,59,0): 149, 93, 60, (337,60,0): 155, 97, 60, (337,61,0): 158, 98, 61, (337,62,0): 162, 100, 63, (337,63,0): 162, 100, 61, (337,64,0): 163, 104, 60, (337,65,0): 174, 116, 68, (337,66,0): 190, 133, 80, (337,67,0): 207, 148, 90, (337,68,0): 215, 157, 93, (337,69,0): 218, 159, 89, (337,70,0): 218, 159, 83, (337,71,0): 216, 159, 78, (337,72,0): 218, 162, 79, (337,73,0): 216, 162, 76, (337,74,0): 214, 162, 78, (337,75,0): 213, 163, 78, (337,76,0): 213, 162, 79, (337,77,0): 211, 163, 81, (337,78,0): 210, 163, 85, (337,79,0): 210, 163, 83, (337,80,0): 213, 165, 83, (337,81,0): 216, 165, 82, (337,82,0): 217, 169, 85, (337,83,0): 220, 172, 88, (337,84,0): 221, 175, 89, (337,85,0): 221, 177, 90, (337,86,0): 219, 178, 90, (337,87,0): 216, 179, 88, (337,88,0): 219, 182, 91, (337,89,0): 218, 185, 92, (337,90,0): 219, 186, 93, (337,91,0): 214, 185, 91, (337,92,0): 212, 183, 89, (337,93,0): 210, 184, 89, (337,94,0): 214, 188, 93, (337,95,0): 216, 191, 98, (337,96,0): 215, 190, 100, (337,97,0): 214, 190, 102, (337,98,0): 214, 190, 102, (337,99,0): 212, 191, 100, (337,100,0): 211, 192, 100, (337,101,0): 209, 193, 98, (337,102,0): 208, 193, 98, (337,103,0): 207, 194, 98, (337,104,0): 204, 194, 97, (337,105,0): 203, 194, 99, (337,106,0): 200, 194, 100, (337,107,0): 199, 194, 102, (337,108,0): 197, 193, 102, (337,109,0): 195, 194, 104, (337,110,0): 194, 192, 105, (337,111,0): 193, 193, 107, (337,112,0): 187, 191, 106, (337,113,0): 186, 191, 107, (337,114,0): 186, 191, 107, (337,115,0): 186, 191, 109, (337,116,0): 183, 190, 110, (337,117,0): 183, 190, 112, (337,118,0): 182, 190, 113, (337,119,0): 182, 190, 113, (337,120,0): 180, 188, 115, (337,121,0): 181, 189, 116, (337,122,0): 180, 190, 121, (337,123,0): 181, 191, 122, (337,124,0): 180, 191, 123, (337,125,0): 180, 191, 123, (337,126,0): 179, 190, 124, (337,127,0): 178, 188, 125, (337,128,0): 176, 188, 126, (337,129,0): 176, 188, 126, (337,130,0): 176, 188, 124, (337,131,0): 177, 190, 121, (337,132,0): 178, 189, 120, (337,133,0): 179, 191, 117, (337,134,0): 180, 191, 115, (337,135,0): 182, 190, 113, (337,136,0): 174, 178, 104, (337,137,0): 169, 169, 99, (337,138,0): 163, 155, 92, (337,139,0): 151, 139, 81, (337,140,0): 142, 124, 74, (337,141,0): 135, 114, 69, (337,142,0): 131, 106, 65, (337,143,0): 127, 105, 64, (337,144,0): 115, 102, 60, (337,145,0): 110, 101, 58, (337,146,0): 109, 97, 57, (337,147,0): 107, 95, 55, (337,148,0): 109, 97, 59, (337,149,0): 113, 101, 63, (337,150,0): 119, 107, 69, (337,151,0): 120, 111, 72, (337,152,0): 118, 111, 69, (337,153,0): 122, 118, 71, (337,154,0): 134, 132, 81, (337,155,0): 148, 151, 94, (337,156,0): 167, 173, 113, (337,157,0): 185, 194, 129, (337,158,0): 201, 212, 143, (337,159,0): 208, 224, 151, (337,160,0): 206, 227, 150, (337,161,0): 205, 228, 150, (337,162,0): 206, 228, 153, (337,163,0): 205, 229, 153, (337,164,0): 206, 230, 154, (337,165,0): 205, 231, 157, (337,166,0): 206, 232, 158, (337,167,0): 206, 232, 159, (337,168,0): 206, 232, 159, (337,169,0): 205, 233, 159, (337,170,0): 205, 232, 161, (337,171,0): 203, 233, 161, (337,172,0): 203, 233, 163, (337,173,0): 203, 233, 163, (337,174,0): 203, 232, 165, (337,175,0): 205, 232, 163, (337,176,0): 211, 233, 161, (337,177,0): 213, 233, 161, (337,178,0): 213, 233, 161, (337,179,0): 213, 233, 161, (337,180,0): 212, 232, 160, (337,181,0): 210, 230, 158, (337,182,0): 208, 228, 156, (337,183,0): 207, 227, 155, (337,184,0): 211, 231, 159, (337,185,0): 213, 233, 161, (337,186,0): 214, 234, 162, (337,187,0): 214, 234, 162, (337,188,0): 213, 233, 161, (337,189,0): 215, 235, 163, (337,190,0): 219, 239, 167, (337,191,0): 222, 243, 166, (337,192,0): 224, 243, 161, (337,193,0): 225, 245, 160, (337,194,0): 227, 246, 164, (337,195,0): 229, 248, 167, (337,196,0): 230, 247, 169, (337,197,0): 230, 246, 173, (337,198,0): 231, 244, 174, (337,199,0): 231, 244, 174, (337,200,0): 232, 245, 176, (337,201,0): 231, 244, 174, (337,202,0): 230, 241, 172, (337,203,0): 228, 240, 168, (337,204,0): 228, 238, 165, (337,205,0): 229, 240, 164, (337,206,0): 230, 241, 163, (337,207,0): 230, 241, 162, (337,208,0): 226, 237, 158, (337,209,0): 225, 236, 157, (337,210,0): 224, 235, 157, (337,211,0): 223, 234, 156, (337,212,0): 223, 234, 158, (337,213,0): 223, 234, 158, (337,214,0): 223, 233, 160, (337,215,0): 223, 233, 162, (337,216,0): 223, 233, 164, (337,217,0): 223, 233, 164, (337,218,0): 223, 232, 165, (337,219,0): 223, 232, 165, (337,220,0): 223, 232, 167, (337,221,0): 224, 233, 168, (337,222,0): 224, 233, 170, (337,223,0): 224, 233, 168, (337,224,0): 227, 236, 169, (337,225,0): 226, 236, 167, (337,226,0): 226, 235, 168, (337,227,0): 225, 236, 170, (337,228,0): 224, 234, 171, (337,229,0): 223, 235, 173, (337,230,0): 221, 235, 174, (337,231,0): 220, 235, 176, (337,232,0): 212, 231, 175, (337,233,0): 211, 232, 176, (337,234,0): 210, 230, 179, (337,235,0): 208, 230, 181, (337,236,0): 207, 231, 183, (337,237,0): 205, 231, 183, (337,238,0): 205, 231, 184, (337,239,0): 205, 230, 188, (337,240,0): 204, 228, 192, (337,241,0): 204, 228, 194, (337,242,0): 204, 228, 194, (337,243,0): 204, 228, 196, (337,244,0): 204, 228, 196, (337,245,0): 205, 229, 197, (337,246,0): 205, 229, 197, (337,247,0): 205, 228, 199, (337,248,0): 205, 228, 199, (337,249,0): 204, 227, 199, (337,250,0): 203, 226, 198, (337,251,0): 202, 225, 197, (337,252,0): 200, 223, 195, (337,253,0): 199, 222, 196, (337,254,0): 198, 221, 195, (337,255,0): 196, 220, 198, (337,256,0): 191, 219, 204, (337,257,0): 188, 218, 206, (337,258,0): 188, 218, 208, (337,259,0): 186, 217, 209, (337,260,0): 184, 215, 209, (337,261,0): 180, 212, 209, (337,262,0): 175, 209, 208, (337,263,0): 174, 208, 210, (337,264,0): 174, 209, 215, (337,265,0): 172, 209, 217, (337,266,0): 170, 208, 219, (337,267,0): 169, 207, 220, (337,268,0): 167, 206, 223, (337,269,0): 166, 204, 223, (337,270,0): 165, 203, 224, (337,271,0): 163, 204, 222, (337,272,0): 159, 206, 222, (337,273,0): 159, 208, 223, (337,274,0): 160, 209, 226, (337,275,0): 161, 210, 227, (337,276,0): 162, 210, 230, (337,277,0): 163, 211, 233, (337,278,0): 164, 211, 237, (337,279,0): 165, 212, 240, (337,280,0): 162, 208, 241, (337,281,0): 162, 208, 242, (337,282,0): 162, 208, 244, (337,283,0): 162, 207, 246, (337,284,0): 162, 207, 248, (337,285,0): 162, 207, 249, (337,286,0): 162, 206, 251, (337,287,0): 162, 207, 249, (337,288,0): 162, 205, 247, (337,289,0): 162, 205, 247, (337,290,0): 161, 203, 243, (337,291,0): 160, 202, 242, (337,292,0): 160, 199, 238, (337,293,0): 159, 198, 237, (337,294,0): 159, 197, 234, (337,295,0): 158, 196, 233, (337,296,0): 162, 196, 233, (337,297,0): 159, 193, 230, (337,298,0): 157, 190, 225, (337,299,0): 156, 189, 222, (337,300,0): 157, 187, 221, (337,301,0): 154, 184, 218, (337,302,0): 150, 179, 211, (337,303,0): 149, 174, 205, (337,304,0): 144, 164, 191, (337,305,0): 140, 156, 181, (337,306,0): 132, 147, 170, (337,307,0): 126, 141, 160, (337,308,0): 125, 141, 157, (337,309,0): 124, 140, 155, (337,310,0): 121, 137, 150, (337,311,0): 118, 135, 145, (337,312,0): 121, 135, 146, (337,313,0): 121, 135, 146, (337,314,0): 121, 135, 148, (337,315,0): 122, 136, 149, (337,316,0): 124, 135, 153, (337,317,0): 127, 138, 156, (337,318,0): 129, 140, 160, (337,319,0): 133, 141, 164, (337,320,0): 138, 142, 169, (337,321,0): 140, 141, 169, (337,322,0): 143, 142, 174, (337,323,0): 148, 144, 177, (337,324,0): 153, 145, 182, (337,325,0): 154, 143, 177, (337,326,0): 152, 137, 168, (337,327,0): 150, 132, 156, (337,328,0): 141, 118, 134, (337,329,0): 131, 104, 113, (337,330,0): 120, 90, 90, (337,331,0): 118, 83, 79, (337,332,0): 115, 76, 69, (337,333,0): 113, 70, 61, (337,334,0): 114, 70, 59, (337,335,0): 121, 74, 66, (337,336,0): 117, 66, 65, (337,337,0): 113, 58, 63, (337,338,0): 105, 50, 55, (337,339,0): 97, 45, 49, (337,340,0): 94, 41, 47, (337,341,0): 91, 40, 45, (337,342,0): 89, 38, 43, (337,343,0): 86, 37, 41, (337,344,0): 83, 36, 42, (337,345,0): 83, 38, 43, (337,346,0): 84, 39, 46, (337,347,0): 83, 40, 47, (337,348,0): 84, 41, 48, (337,349,0): 84, 43, 49, (337,350,0): 85, 44, 52, (337,351,0): 86, 45, 51, (337,352,0): 89, 47, 48, (337,353,0): 92, 51, 49, (337,354,0): 94, 53, 51, (337,355,0): 96, 52, 51, (337,356,0): 95, 51, 50, (337,357,0): 95, 51, 50, (337,358,0): 99, 53, 53, (337,359,0): 101, 55, 55, (337,360,0): 99, 53, 53, (337,361,0): 99, 53, 53, (337,362,0): 100, 54, 54, (337,363,0): 104, 56, 56, (337,364,0): 106, 58, 58, (337,365,0): 109, 61, 61, (337,366,0): 113, 63, 62, (337,367,0): 115, 66, 62, (337,368,0): 122, 69, 65, (337,369,0): 125, 70, 65, (337,370,0): 126, 71, 66, (337,371,0): 128, 73, 68, (337,372,0): 128, 73, 70, (337,373,0): 126, 73, 69, (337,374,0): 124, 70, 68, (337,375,0): 121, 70, 67, (337,376,0): 111, 60, 57, (337,377,0): 107, 56, 53, (337,378,0): 100, 50, 49, (337,379,0): 94, 44, 43, (337,380,0): 91, 41, 42, (337,381,0): 89, 41, 41, (337,382,0): 91, 43, 43, (337,383,0): 92, 44, 44, (337,384,0): 95, 45, 46, (337,385,0): 95, 45, 46, (337,386,0): 96, 46, 47, (337,387,0): 96, 46, 47, (337,388,0): 94, 44, 45, (337,389,0): 92, 42, 43, (337,390,0): 90, 40, 41, (337,391,0): 88, 38, 39, (337,392,0): 91, 41, 42, (337,393,0): 89, 39, 40, (337,394,0): 87, 37, 38, (337,395,0): 85, 35, 36, (337,396,0): 85, 35, 36, (337,397,0): 87, 37, 38, (337,398,0): 89, 39, 40, (337,399,0): 92, 41, 40, (337,400,0): 97, 44, 40, (337,401,0): 99, 44, 39, (337,402,0): 100, 45, 40, (337,403,0): 102, 47, 42, (337,404,0): 102, 47, 42, (337,405,0): 102, 47, 42, (337,406,0): 101, 46, 41, (337,407,0): 101, 46, 41, (337,408,0): 100, 45, 40, (337,409,0): 102, 47, 42, (337,410,0): 104, 49, 44, (337,411,0): 106, 51, 46, (337,412,0): 108, 53, 48, (337,413,0): 109, 54, 49, (337,414,0): 109, 54, 49, (337,415,0): 108, 55, 51, (337,416,0): 102, 55, 49, (337,417,0): 100, 57, 50, (337,418,0): 103, 58, 52, (337,419,0): 106, 62, 53, (337,420,0): 111, 67, 58, (337,421,0): 117, 73, 64, (337,422,0): 122, 77, 71, (337,423,0): 124, 81, 75, (337,424,0): 128, 88, 88, (337,425,0): 130, 91, 96, (337,426,0): 131, 98, 109, (337,427,0): 140, 109, 127, (337,428,0): 148, 122, 147, (337,429,0): 155, 132, 161, (337,430,0): 156, 134, 170, (337,431,0): 157, 135, 171, (337,432,0): 162, 136, 171, (337,433,0): 158, 131, 164, (337,434,0): 147, 120, 153, (337,435,0): 133, 103, 137, (337,436,0): 118, 89, 120, (337,437,0): 113, 82, 113, (337,438,0): 117, 87, 115, (337,439,0): 125, 92, 119, (337,440,0): 134, 100, 125, (337,441,0): 132, 98, 122, (337,442,0): 126, 91, 113, (337,443,0): 120, 85, 105, (337,444,0): 126, 88, 109, (337,445,0): 135, 98, 116, (337,446,0): 136, 99, 117, (337,447,0): 133, 94, 115, (337,448,0): 135, 95, 122, (337,449,0): 152, 109, 137, (337,450,0): 163, 119, 144, (337,451,0): 161, 116, 137, (337,452,0): 155, 108, 124, (337,453,0): 150, 104, 114, (337,454,0): 147, 100, 106, (337,455,0): 145, 96, 99, (337,456,0): 135, 87, 85, (337,457,0): 128, 83, 80, (337,458,0): 122, 77, 74, (337,459,0): 115, 71, 70, (337,460,0): 110, 66, 67, (337,461,0): 100, 58, 60, (337,462,0): 92, 50, 54, (337,463,0): 84, 45, 50, (337,464,0): 78, 46, 51, (337,465,0): 77, 46, 51, (337,466,0): 77, 47, 49, (337,467,0): 76, 46, 48, (337,468,0): 75, 46, 48, (337,469,0): 75, 46, 48, (337,470,0): 74, 46, 45, (337,471,0): 74, 46, 45, (337,472,0): 76, 50, 49, (337,473,0): 75, 49, 48, (337,474,0): 73, 49, 45, (337,475,0): 72, 48, 44, (337,476,0): 71, 47, 43, (337,477,0): 72, 48, 44, (337,478,0): 70, 49, 44, (337,479,0): 73, 49, 45, (337,480,0): 85, 60, 56, (337,481,0): 83, 58, 54, (337,482,0): 78, 57, 52, (337,483,0): 74, 55, 49, (337,484,0): 71, 54, 47, (337,485,0): 69, 52, 45, (337,486,0): 69, 50, 44, (337,487,0): 70, 49, 44, (337,488,0): 70, 46, 42, (337,489,0): 71, 46, 42, (337,490,0): 73, 43, 41, (337,491,0): 72, 44, 41, (337,492,0): 69, 44, 40, (337,493,0): 66, 42, 38, (337,494,0): 63, 42, 37, (337,495,0): 63, 42, 37, (337,496,0): 70, 47, 41, (337,497,0): 71, 46, 41, (337,498,0): 71, 46, 42, (337,499,0): 70, 46, 42, (337,500,0): 70, 46, 42, (337,501,0): 68, 47, 42, (337,502,0): 67, 46, 43, (337,503,0): 66, 47, 43, (337,504,0): 61, 43, 41, (337,505,0): 61, 43, 41, (337,506,0): 58, 43, 40, (337,507,0): 58, 43, 40, (337,508,0): 58, 44, 43, (337,509,0): 60, 46, 45, (337,510,0): 62, 48, 47, (337,511,0): 64, 48, 49, (337,512,0): 68, 47, 54, (337,513,0): 67, 44, 54, (337,514,0): 64, 41, 51, (337,515,0): 61, 38, 48, (337,516,0): 59, 36, 46, (337,517,0): 57, 34, 44, (337,518,0): 57, 34, 44, (337,519,0): 57, 34, 44, (337,520,0): 58, 35, 45, (337,521,0): 60, 37, 47, (337,522,0): 62, 39, 49, (337,523,0): 63, 40, 50, (337,524,0): 64, 41, 51, (337,525,0): 67, 44, 54, (337,526,0): 72, 49, 59, (337,527,0): 77, 54, 62, (337,528,0): 79, 52, 57, (337,529,0): 79, 53, 56, (337,530,0): 75, 50, 53, (337,531,0): 68, 46, 48, (337,532,0): 66, 44, 46, (337,533,0): 72, 52, 53, (337,534,0): 86, 68, 68, (337,535,0): 98, 80, 80, (337,536,0): 107, 89, 89, (337,537,0): 108, 90, 90, (337,538,0): 112, 92, 93, (337,539,0): 115, 95, 96, (337,540,0): 117, 92, 95, (337,541,0): 111, 86, 89, (337,542,0): 102, 76, 79, (337,543,0): 96, 67, 71, (337,544,0): 95, 64, 70, (337,545,0): 89, 58, 64, (337,546,0): 81, 52, 57, (337,547,0): 74, 47, 52, (337,548,0): 72, 45, 50, (337,549,0): 67, 45, 48, (337,550,0): 64, 42, 45, (337,551,0): 61, 41, 43, (337,552,0): 58, 39, 41, (337,553,0): 56, 37, 39, (337,554,0): 54, 34, 36, (337,555,0): 51, 31, 33, (337,556,0): 50, 28, 31, (337,557,0): 48, 26, 29, (337,558,0): 49, 24, 28, (337,559,0): 47, 24, 30, (337,560,0): 46, 26, 35, (337,561,0): 44, 27, 37, (337,562,0): 45, 28, 38, (337,563,0): 46, 29, 39, (337,564,0): 50, 30, 39, (337,565,0): 53, 33, 42, (337,566,0): 57, 36, 43, (337,567,0): 59, 38, 45, (337,568,0): 66, 45, 52, (337,569,0): 66, 45, 52, (337,570,0): 66, 43, 49, (337,571,0): 65, 42, 48, (337,572,0): 65, 40, 44, (337,573,0): 64, 39, 43, (337,574,0): 63, 38, 42, (337,575,0): 61, 39, 42, (337,576,0): 62, 46, 47, (337,577,0): 62, 48, 48, (337,578,0): 63, 49, 49, (337,579,0): 63, 49, 49, (337,580,0): 61, 49, 49, (337,581,0): 60, 48, 48, (337,582,0): 59, 47, 47, (337,583,0): 57, 47, 46, (337,584,0): 59, 49, 48, (337,585,0): 60, 50, 49, (337,586,0): 61, 53, 51, (337,587,0): 62, 54, 52, (337,588,0): 63, 55, 53, (337,589,0): 63, 55, 53, (337,590,0): 60, 55, 52, (337,591,0): 60, 55, 52, (337,592,0): 56, 50, 52, (337,593,0): 56, 50, 52, (337,594,0): 54, 48, 50, (337,595,0): 53, 47, 49, (337,596,0): 50, 44, 46, (337,597,0): 48, 42, 44, (337,598,0): 46, 40, 42, (337,599,0): 45, 39, 41, (338,0,0): 75, 62, 56, (338,1,0): 74, 61, 55, (338,2,0): 73, 60, 54, (338,3,0): 73, 60, 54, (338,4,0): 71, 58, 52, (338,5,0): 71, 58, 52, (338,6,0): 70, 57, 51, (338,7,0): 69, 56, 50, (338,8,0): 68, 55, 49, (338,9,0): 68, 55, 49, (338,10,0): 68, 55, 49, (338,11,0): 68, 55, 49, (338,12,0): 68, 55, 49, (338,13,0): 68, 55, 49, (338,14,0): 68, 55, 49, (338,15,0): 68, 55, 49, (338,16,0): 72, 56, 56, (338,17,0): 72, 56, 56, (338,18,0): 72, 56, 56, (338,19,0): 72, 56, 56, (338,20,0): 72, 57, 54, (338,21,0): 72, 57, 54, (338,22,0): 72, 57, 54, (338,23,0): 72, 57, 54, (338,24,0): 73, 58, 53, (338,25,0): 73, 58, 53, (338,26,0): 74, 59, 52, (338,27,0): 74, 59, 52, (338,28,0): 74, 59, 52, (338,29,0): 73, 58, 51, (338,30,0): 71, 57, 48, (338,31,0): 70, 56, 47, (338,32,0): 73, 56, 49, (338,33,0): 72, 55, 48, (338,34,0): 72, 53, 47, (338,35,0): 71, 52, 46, (338,36,0): 71, 52, 46, (338,37,0): 72, 53, 47, (338,38,0): 74, 53, 48, (338,39,0): 74, 53, 48, (338,40,0): 77, 53, 49, (338,41,0): 78, 54, 50, (338,42,0): 79, 55, 51, (338,43,0): 80, 56, 52, (338,44,0): 83, 58, 54, (338,45,0): 85, 60, 56, (338,46,0): 86, 61, 57, (338,47,0): 89, 60, 56, (338,48,0): 93, 58, 52, (338,49,0): 98, 61, 52, (338,50,0): 101, 63, 54, (338,51,0): 103, 63, 53, (338,52,0): 104, 65, 50, (338,53,0): 108, 66, 50, (338,54,0): 116, 71, 52, (338,55,0): 120, 73, 53, (338,56,0): 127, 77, 54, (338,57,0): 132, 81, 54, (338,58,0): 140, 87, 56, (338,59,0): 146, 91, 60, (338,60,0): 151, 95, 62, (338,61,0): 155, 96, 62, (338,62,0): 155, 96, 62, (338,63,0): 154, 96, 58, (338,64,0): 156, 99, 56, (338,65,0): 163, 107, 60, (338,66,0): 175, 119, 68, (338,67,0): 192, 135, 80, (338,68,0): 207, 148, 88, (338,69,0): 215, 158, 91, (338,70,0): 218, 160, 87, (338,71,0): 217, 160, 83, (338,72,0): 215, 158, 77, (338,73,0): 213, 158, 75, (338,74,0): 211, 159, 76, (338,75,0): 209, 158, 75, (338,76,0): 208, 157, 76, (338,77,0): 204, 156, 74, (338,78,0): 202, 155, 77, (338,79,0): 202, 155, 77, (338,80,0): 201, 152, 73, (338,81,0): 204, 153, 74, (338,82,0): 204, 155, 76, (338,83,0): 206, 157, 78, (338,84,0): 209, 162, 82, (338,85,0): 212, 167, 84, (338,86,0): 213, 171, 87, (338,87,0): 212, 174, 89, (338,88,0): 217, 180, 92, (338,89,0): 216, 182, 93, (338,90,0): 217, 183, 93, (338,91,0): 214, 185, 91, (338,92,0): 213, 184, 90, (338,93,0): 212, 186, 89, (338,94,0): 215, 191, 93, (338,95,0): 218, 194, 98, (338,96,0): 214, 190, 100, (338,97,0): 212, 191, 102, (338,98,0): 212, 191, 102, (338,99,0): 211, 192, 100, (338,100,0): 209, 192, 100, (338,101,0): 208, 193, 100, (338,102,0): 207, 194, 98, (338,103,0): 205, 195, 98, (338,104,0): 202, 193, 98, (338,105,0): 200, 194, 98, (338,106,0): 198, 193, 99, (338,107,0): 197, 194, 101, (338,108,0): 194, 193, 101, (338,109,0): 193, 193, 103, (338,110,0): 192, 192, 104, (338,111,0): 190, 193, 106, (338,112,0): 187, 191, 107, (338,113,0): 186, 191, 109, (338,114,0): 183, 191, 108, (338,115,0): 183, 191, 108, (338,116,0): 182, 189, 109, (338,117,0): 181, 188, 110, (338,118,0): 180, 188, 111, (338,119,0): 180, 188, 111, (338,120,0): 174, 184, 111, (338,121,0): 175, 185, 112, (338,122,0): 177, 187, 118, (338,123,0): 179, 189, 120, (338,124,0): 179, 190, 122, (338,125,0): 179, 190, 122, (338,126,0): 179, 190, 124, (338,127,0): 178, 188, 125, (338,128,0): 174, 186, 124, (338,129,0): 173, 187, 125, (338,130,0): 173, 188, 123, (338,131,0): 174, 189, 122, (338,132,0): 176, 189, 119, (338,133,0): 178, 190, 116, (338,134,0): 179, 190, 114, (338,135,0): 182, 190, 115, (338,136,0): 182, 185, 114, (338,137,0): 177, 178, 110, (338,138,0): 171, 166, 102, (338,139,0): 160, 150, 91, (338,140,0): 148, 132, 81, (338,141,0): 137, 116, 71, (338,142,0): 128, 103, 62, (338,143,0): 120, 98, 57, (338,144,0): 108, 95, 53, (338,145,0): 103, 96, 54, (338,146,0): 102, 93, 54, (338,147,0): 101, 92, 53, (338,148,0): 102, 92, 56, (338,149,0): 106, 96, 60, (338,150,0): 110, 100, 64, (338,151,0): 113, 104, 65, (338,152,0): 116, 109, 67, (338,153,0): 119, 116, 71, (338,154,0): 130, 130, 80, (338,155,0): 146, 149, 94, (338,156,0): 164, 172, 113, (338,157,0): 184, 194, 131, (338,158,0): 200, 212, 146, (338,159,0): 205, 222, 152, (338,160,0): 201, 223, 150, (338,161,0): 200, 224, 150, (338,162,0): 201, 225, 151, (338,163,0): 200, 226, 152, (338,164,0): 201, 227, 153, (338,165,0): 202, 228, 155, (338,166,0): 203, 229, 156, (338,167,0): 203, 230, 159, (338,168,0): 203, 230, 159, (338,169,0): 201, 231, 159, (338,170,0): 200, 230, 160, (338,171,0): 200, 230, 160, (338,172,0): 200, 230, 160, (338,173,0): 199, 230, 160, (338,174,0): 199, 230, 160, (338,175,0): 202, 229, 160, (338,176,0): 209, 230, 161, (338,177,0): 210, 230, 159, (338,178,0): 210, 230, 159, (338,179,0): 210, 230, 159, (338,180,0): 209, 229, 158, (338,181,0): 207, 227, 156, (338,182,0): 205, 225, 154, (338,183,0): 204, 224, 153, (338,184,0): 207, 227, 156, (338,185,0): 209, 229, 158, (338,186,0): 211, 231, 160, (338,187,0): 211, 231, 160, (338,188,0): 210, 230, 159, (338,189,0): 212, 232, 161, (338,190,0): 216, 236, 165, (338,191,0): 219, 240, 165, (338,192,0): 220, 242, 160, (338,193,0): 222, 244, 159, (338,194,0): 226, 248, 165, (338,195,0): 230, 252, 170, (338,196,0): 233, 252, 173, (338,197,0): 232, 250, 174, (338,198,0): 231, 247, 174, (338,199,0): 230, 246, 173, (338,200,0): 233, 249, 178, (338,201,0): 231, 247, 174, (338,202,0): 231, 245, 170, (338,203,0): 229, 243, 166, (338,204,0): 228, 241, 162, (338,205,0): 228, 241, 161, (338,206,0): 227, 240, 158, (338,207,0): 228, 241, 159, (338,208,0): 228, 241, 161, (338,209,0): 227, 240, 161, (338,210,0): 225, 237, 161, (338,211,0): 222, 234, 158, (338,212,0): 221, 233, 159, (338,213,0): 220, 232, 158, (338,214,0): 221, 233, 161, (338,215,0): 221, 233, 161, (338,216,0): 221, 232, 163, (338,217,0): 222, 233, 165, (338,218,0): 222, 233, 167, (338,219,0): 223, 234, 168, (338,220,0): 224, 234, 171, (338,221,0): 225, 235, 172, (338,222,0): 226, 236, 175, (338,223,0): 226, 236, 173, (338,224,0): 226, 237, 171, (338,225,0): 226, 237, 169, (338,226,0): 225, 236, 170, (338,227,0): 223, 235, 169, (338,228,0): 222, 234, 170, (338,229,0): 220, 234, 172, (338,230,0): 218, 233, 174, (338,231,0): 216, 234, 176, (338,232,0): 210, 229, 173, (338,233,0): 209, 230, 174, (338,234,0): 207, 230, 178, (338,235,0): 206, 230, 180, (338,236,0): 206, 230, 182, (338,237,0): 205, 231, 184, (338,238,0): 205, 231, 186, (338,239,0): 204, 231, 188, (338,240,0): 203, 229, 192, (338,241,0): 203, 228, 196, (338,242,0): 203, 228, 196, (338,243,0): 203, 228, 198, (338,244,0): 202, 227, 197, (338,245,0): 202, 227, 197, (338,246,0): 202, 227, 197, (338,247,0): 202, 227, 198, (338,248,0): 202, 227, 198, (338,249,0): 202, 226, 200, (338,250,0): 200, 224, 198, (338,251,0): 198, 222, 196, (338,252,0): 197, 221, 195, (338,253,0): 195, 219, 195, (338,254,0): 193, 217, 193, (338,255,0): 192, 217, 196, (338,256,0): 186, 214, 199, (338,257,0): 185, 215, 203, (338,258,0): 184, 216, 205, (338,259,0): 183, 214, 206, (338,260,0): 182, 213, 207, (338,261,0): 179, 211, 208, (338,262,0): 175, 209, 208, (338,263,0): 174, 208, 210, (338,264,0): 173, 208, 212, (338,265,0): 171, 208, 216, (338,266,0): 169, 207, 218, (338,267,0): 168, 206, 219, (338,268,0): 166, 205, 222, (338,269,0): 165, 204, 221, (338,270,0): 162, 203, 221, (338,271,0): 161, 204, 221, (338,272,0): 159, 206, 222, (338,273,0): 158, 207, 221, (338,274,0): 159, 208, 223, (338,275,0): 160, 209, 226, (338,276,0): 161, 209, 229, (338,277,0): 162, 210, 232, (338,278,0): 163, 210, 236, (338,279,0): 163, 210, 238, (338,280,0): 160, 207, 237, (338,281,0): 160, 206, 239, (338,282,0): 160, 206, 242, (338,283,0): 160, 205, 244, (338,284,0): 160, 205, 246, (338,285,0): 160, 205, 246, (338,286,0): 160, 205, 247, (338,287,0): 160, 205, 247, (338,288,0): 161, 204, 246, (338,289,0): 160, 204, 243, (338,290,0): 161, 203, 243, (338,291,0): 160, 202, 242, (338,292,0): 161, 200, 239, (338,293,0): 161, 200, 239, (338,294,0): 161, 199, 236, (338,295,0): 161, 199, 236, (338,296,0): 163, 197, 234, (338,297,0): 161, 195, 232, (338,298,0): 159, 192, 227, (338,299,0): 158, 191, 226, (338,300,0): 160, 190, 224, (338,301,0): 158, 188, 222, (338,302,0): 154, 183, 217, (338,303,0): 153, 178, 209, (338,304,0): 150, 167, 195, (338,305,0): 146, 160, 186, (338,306,0): 138, 153, 176, (338,307,0): 130, 145, 166, (338,308,0): 127, 140, 159, (338,309,0): 125, 138, 154, (338,310,0): 124, 138, 151, (338,311,0): 123, 137, 148, (338,312,0): 126, 138, 150, (338,313,0): 124, 136, 148, (338,314,0): 122, 134, 148, (338,315,0): 121, 133, 147, (338,316,0): 125, 133, 152, (338,317,0): 129, 137, 156, (338,318,0): 134, 142, 163, (338,319,0): 137, 145, 168, (338,320,0): 139, 145, 171, (338,321,0): 139, 145, 171, (338,322,0): 141, 144, 175, (338,323,0): 147, 146, 178, (338,324,0): 153, 147, 183, (338,325,0): 155, 145, 179, (338,326,0): 154, 139, 170, (338,327,0): 152, 134, 158, (338,328,0): 143, 120, 136, (338,329,0): 132, 105, 114, (338,330,0): 122, 87, 91, (338,331,0): 118, 80, 77, (338,332,0): 118, 75, 69, (338,333,0): 118, 71, 63, (338,334,0): 121, 72, 65, (338,335,0): 127, 76, 72, (338,336,0): 113, 61, 63, (338,337,0): 106, 54, 58, (338,338,0): 97, 44, 50, (338,339,0): 89, 38, 43, (338,340,0): 86, 35, 40, (338,341,0): 84, 35, 39, (338,342,0): 83, 34, 40, (338,343,0): 79, 32, 38, (338,344,0): 81, 36, 43, (338,345,0): 79, 36, 43, (338,346,0): 80, 37, 44, (338,347,0): 80, 39, 45, (338,348,0): 81, 40, 48, (338,349,0): 81, 41, 49, (338,350,0): 82, 42, 50, (338,351,0): 82, 43, 48, (338,352,0): 81, 42, 43, (338,353,0): 85, 45, 45, (338,354,0): 88, 48, 48, (338,355,0): 90, 48, 49, (338,356,0): 90, 49, 47, (338,357,0): 91, 50, 48, (338,358,0): 96, 52, 51, (338,359,0): 99, 55, 54, (338,360,0): 100, 54, 54, (338,361,0): 100, 54, 54, (338,362,0): 103, 55, 53, (338,363,0): 106, 56, 55, (338,364,0): 109, 59, 58, (338,365,0): 112, 62, 61, (338,366,0): 116, 65, 64, (338,367,0): 118, 67, 64, (338,368,0): 124, 69, 66, (338,369,0): 128, 70, 66, (338,370,0): 129, 71, 69, (338,371,0): 129, 71, 69, (338,372,0): 127, 69, 67, (338,373,0): 121, 66, 63, (338,374,0): 116, 62, 60, (338,375,0): 112, 61, 58, (338,376,0): 104, 53, 52, (338,377,0): 100, 50, 49, (338,378,0): 94, 46, 44, (338,379,0): 88, 43, 40, (338,380,0): 86, 40, 40, (338,381,0): 86, 40, 40, (338,382,0): 87, 41, 41, (338,383,0): 89, 43, 43, (338,384,0): 91, 43, 43, (338,385,0): 91, 43, 43, (338,386,0): 92, 44, 44, (338,387,0): 91, 43, 43, (338,388,0): 90, 42, 42, (338,389,0): 89, 41, 41, (338,390,0): 87, 39, 39, (338,391,0): 86, 38, 38, (338,392,0): 89, 41, 41, (338,393,0): 88, 40, 40, (338,394,0): 86, 38, 38, (338,395,0): 85, 37, 37, (338,396,0): 85, 37, 37, (338,397,0): 86, 38, 38, (338,398,0): 88, 40, 40, (338,399,0): 90, 40, 39, (338,400,0): 94, 40, 38, (338,401,0): 97, 42, 39, (338,402,0): 99, 44, 41, (338,403,0): 101, 46, 43, (338,404,0): 102, 47, 44, (338,405,0): 103, 48, 45, (338,406,0): 103, 48, 45, (338,407,0): 103, 48, 45, (338,408,0): 105, 50, 47, (338,409,0): 106, 51, 48, (338,410,0): 108, 53, 50, (338,411,0): 110, 55, 52, (338,412,0): 112, 57, 54, (338,413,0): 113, 58, 55, (338,414,0): 113, 58, 55, (338,415,0): 112, 59, 55, (338,416,0): 103, 55, 51, (338,417,0): 101, 56, 51, (338,418,0): 103, 55, 51, (338,419,0): 105, 58, 52, (338,420,0): 109, 62, 56, (338,421,0): 115, 68, 62, (338,422,0): 121, 74, 68, (338,423,0): 123, 78, 75, (338,424,0): 132, 88, 89, (338,425,0): 131, 90, 96, (338,426,0): 135, 97, 110, (338,427,0): 140, 106, 123, (338,428,0): 146, 114, 138, (338,429,0): 148, 119, 149, (338,430,0): 146, 119, 152, (338,431,0): 144, 119, 151, (338,432,0): 148, 119, 149, (338,433,0): 143, 114, 142, (338,434,0): 132, 103, 131, (338,435,0): 118, 88, 114, (338,436,0): 106, 76, 102, (338,437,0): 104, 72, 96, (338,438,0): 109, 77, 100, (338,439,0): 117, 84, 105, (338,440,0): 127, 94, 113, (338,441,0): 130, 96, 113, (338,442,0): 128, 91, 108, (338,443,0): 122, 86, 100, (338,444,0): 124, 86, 101, (338,445,0): 130, 92, 105, (338,446,0): 133, 95, 108, (338,447,0): 130, 92, 107, (338,448,0): 130, 88, 108, (338,449,0): 136, 92, 115, (338,450,0): 138, 95, 114, (338,451,0): 135, 91, 106, (338,452,0): 133, 87, 98, (338,453,0): 132, 87, 92, (338,454,0): 132, 86, 88, (338,455,0): 129, 83, 83, (338,456,0): 122, 77, 74, (338,457,0): 116, 71, 68, (338,458,0): 108, 62, 62, (338,459,0): 100, 56, 57, (338,460,0): 93, 51, 55, (338,461,0): 86, 45, 51, (338,462,0): 79, 39, 47, (338,463,0): 72, 35, 42, (338,464,0): 68, 36, 41, (338,465,0): 67, 37, 39, (338,466,0): 67, 37, 39, (338,467,0): 68, 38, 40, (338,468,0): 67, 38, 40, (338,469,0): 67, 38, 40, (338,470,0): 66, 40, 39, (338,471,0): 66, 40, 39, (338,472,0): 69, 43, 42, (338,473,0): 68, 42, 41, (338,474,0): 66, 42, 40, (338,475,0): 66, 42, 40, (338,476,0): 65, 44, 39, (338,477,0): 66, 45, 40, (338,478,0): 67, 46, 41, (338,479,0): 68, 47, 42, (338,480,0): 81, 57, 53, (338,481,0): 81, 57, 53, (338,482,0): 78, 57, 52, (338,483,0): 77, 58, 52, (338,484,0): 74, 57, 50, (338,485,0): 70, 55, 48, (338,486,0): 71, 54, 47, (338,487,0): 71, 52, 46, (338,488,0): 72, 48, 44, (338,489,0): 72, 47, 43, (338,490,0): 74, 44, 42, (338,491,0): 72, 44, 41, (338,492,0): 69, 44, 40, (338,493,0): 66, 42, 38, (338,494,0): 64, 43, 38, (338,495,0): 63, 42, 37, (338,496,0): 70, 47, 41, (338,497,0): 72, 47, 42, (338,498,0): 74, 50, 46, (338,499,0): 75, 51, 47, (338,500,0): 76, 52, 48, (338,501,0): 73, 52, 47, (338,502,0): 71, 50, 47, (338,503,0): 69, 50, 46, (338,504,0): 62, 44, 42, (338,505,0): 61, 43, 41, (338,506,0): 58, 43, 40, (338,507,0): 58, 43, 40, (338,508,0): 59, 45, 44, (338,509,0): 63, 49, 48, (338,510,0): 68, 54, 53, (338,511,0): 72, 56, 57, (338,512,0): 71, 50, 55, (338,513,0): 70, 47, 55, (338,514,0): 66, 43, 51, (338,515,0): 63, 40, 48, (338,516,0): 60, 37, 45, (338,517,0): 58, 35, 43, (338,518,0): 56, 33, 41, (338,519,0): 56, 33, 41, (338,520,0): 55, 32, 40, (338,521,0): 57, 34, 42, (338,522,0): 60, 37, 45, (338,523,0): 61, 38, 46, (338,524,0): 62, 39, 47, (338,525,0): 64, 41, 49, (338,526,0): 69, 46, 54, (338,527,0): 72, 49, 55, (338,528,0): 75, 48, 53, (338,529,0): 76, 50, 53, (338,530,0): 74, 49, 52, (338,531,0): 69, 47, 49, (338,532,0): 68, 46, 48, (338,533,0): 71, 51, 52, (338,534,0): 80, 62, 62, (338,535,0): 88, 70, 70, (338,536,0): 93, 75, 75, (338,537,0): 92, 74, 74, (338,538,0): 92, 72, 73, (338,539,0): 93, 73, 74, (338,540,0): 96, 71, 74, (338,541,0): 94, 69, 72, (338,542,0): 90, 64, 67, (338,543,0): 87, 58, 62, (338,544,0): 89, 58, 64, (338,545,0): 85, 54, 60, (338,546,0): 78, 49, 54, (338,547,0): 72, 45, 50, (338,548,0): 71, 44, 49, (338,549,0): 67, 45, 48, (338,550,0): 65, 43, 46, (338,551,0): 63, 43, 45, (338,552,0): 60, 41, 43, (338,553,0): 58, 39, 41, (338,554,0): 55, 36, 38, (338,555,0): 52, 32, 34, (338,556,0): 50, 28, 31, (338,557,0): 48, 26, 29, (338,558,0): 49, 24, 28, (338,559,0): 46, 23, 29, (338,560,0): 44, 24, 33, (338,561,0): 42, 25, 35, (338,562,0): 43, 26, 36, (338,563,0): 44, 27, 37, (338,564,0): 48, 28, 37, (338,565,0): 51, 31, 40, (338,566,0): 53, 34, 40, (338,567,0): 55, 36, 42, (338,568,0): 62, 41, 48, (338,569,0): 62, 41, 48, (338,570,0): 63, 40, 46, (338,571,0): 63, 40, 46, (338,572,0): 63, 41, 44, (338,573,0): 63, 41, 44, (338,574,0): 65, 40, 44, (338,575,0): 63, 41, 44, (338,576,0): 62, 46, 47, (338,577,0): 62, 48, 48, (338,578,0): 61, 49, 49, (338,579,0): 61, 49, 49, (338,580,0): 62, 50, 50, (338,581,0): 61, 49, 49, (338,582,0): 59, 49, 48, (338,583,0): 58, 48, 47, (338,584,0): 60, 50, 49, (338,585,0): 60, 52, 50, (338,586,0): 62, 54, 52, (338,587,0): 63, 55, 53, (338,588,0): 61, 56, 53, (338,589,0): 61, 56, 53, (338,590,0): 60, 55, 52, (338,591,0): 60, 55, 52, (338,592,0): 56, 50, 52, (338,593,0): 57, 51, 53, (338,594,0): 57, 51, 53, (338,595,0): 56, 50, 52, (338,596,0): 54, 48, 50, (338,597,0): 51, 45, 47, (338,598,0): 47, 41, 43, (338,599,0): 45, 39, 41, (339,0,0): 74, 61, 55, (339,1,0): 74, 61, 55, (339,2,0): 73, 60, 54, (339,3,0): 72, 59, 53, (339,4,0): 72, 59, 53, (339,5,0): 71, 58, 52, (339,6,0): 70, 57, 51, (339,7,0): 70, 57, 51, (339,8,0): 68, 55, 49, (339,9,0): 68, 55, 49, (339,10,0): 68, 55, 49, (339,11,0): 68, 55, 49, (339,12,0): 67, 54, 48, (339,13,0): 67, 54, 48, (339,14,0): 67, 54, 48, (339,15,0): 66, 53, 47, (339,16,0): 73, 57, 57, (339,17,0): 73, 57, 57, (339,18,0): 73, 57, 57, (339,19,0): 73, 57, 57, (339,20,0): 73, 58, 55, (339,21,0): 73, 58, 55, (339,22,0): 73, 58, 55, (339,23,0): 73, 58, 53, (339,24,0): 73, 58, 53, (339,25,0): 74, 59, 54, (339,26,0): 75, 60, 53, (339,27,0): 75, 60, 53, (339,28,0): 75, 60, 53, (339,29,0): 74, 59, 52, (339,30,0): 73, 59, 50, (339,31,0): 72, 58, 49, (339,32,0): 75, 58, 51, (339,33,0): 74, 57, 50, (339,34,0): 74, 55, 49, (339,35,0): 73, 54, 48, (339,36,0): 72, 53, 47, (339,37,0): 73, 54, 48, (339,38,0): 74, 53, 48, (339,39,0): 75, 54, 49, (339,40,0): 78, 54, 50, (339,41,0): 78, 54, 50, (339,42,0): 79, 55, 51, (339,43,0): 80, 56, 52, (339,44,0): 82, 57, 53, (339,45,0): 84, 59, 55, (339,46,0): 85, 60, 56, (339,47,0): 87, 59, 55, (339,48,0): 91, 58, 51, (339,49,0): 94, 60, 51, (339,50,0): 99, 62, 54, (339,51,0): 100, 62, 53, (339,52,0): 100, 62, 49, (339,53,0): 103, 64, 49, (339,54,0): 111, 68, 52, (339,55,0): 117, 72, 53, (339,56,0): 120, 73, 53, (339,57,0): 125, 77, 54, (339,58,0): 135, 84, 57, (339,59,0): 142, 91, 60, (339,60,0): 149, 94, 64, (339,61,0): 150, 95, 64, (339,62,0): 150, 94, 61, (339,63,0): 149, 93, 58, (339,64,0): 150, 95, 56, (339,65,0): 153, 99, 55, (339,66,0): 161, 107, 61, (339,67,0): 177, 121, 70, (339,68,0): 193, 137, 80, (339,69,0): 206, 148, 85, (339,70,0): 211, 154, 85, (339,71,0): 211, 155, 80, (339,72,0): 211, 155, 78, (339,73,0): 209, 156, 76, (339,74,0): 208, 155, 75, (339,75,0): 206, 155, 74, (339,76,0): 202, 154, 72, (339,77,0): 199, 152, 72, (339,78,0): 196, 150, 72, (339,79,0): 196, 149, 71, (339,80,0): 190, 141, 65, (339,81,0): 190, 141, 65, (339,82,0): 191, 142, 66, (339,83,0): 192, 144, 68, (339,84,0): 196, 150, 73, (339,85,0): 199, 156, 78, (339,86,0): 205, 162, 84, (339,87,0): 206, 168, 87, (339,88,0): 209, 172, 91, (339,89,0): 210, 175, 91, (339,90,0): 212, 180, 93, (339,91,0): 214, 185, 93, (339,92,0): 214, 188, 93, (339,93,0): 215, 189, 92, (339,94,0): 215, 191, 91, (339,95,0): 215, 192, 96, (339,96,0): 211, 190, 101, (339,97,0): 210, 190, 103, (339,98,0): 210, 190, 103, (339,99,0): 208, 191, 101, (339,100,0): 207, 192, 101, (339,101,0): 206, 193, 99, (339,102,0): 204, 194, 99, (339,103,0): 203, 194, 99, (339,104,0): 199, 193, 97, (339,105,0): 198, 193, 99, (339,106,0): 196, 193, 100, (339,107,0): 194, 193, 101, (339,108,0): 192, 192, 102, (339,109,0): 190, 193, 104, (339,110,0): 189, 192, 105, (339,111,0): 189, 191, 107, (339,112,0): 185, 190, 108, (339,113,0): 185, 190, 108, (339,114,0): 182, 189, 109, (339,115,0): 181, 188, 108, (339,116,0): 180, 187, 109, (339,117,0): 178, 186, 109, (339,118,0): 178, 186, 109, (339,119,0): 177, 185, 110, (339,120,0): 173, 183, 110, (339,121,0): 174, 184, 113, (339,122,0): 176, 186, 117, (339,123,0): 176, 187, 118, (339,124,0): 177, 188, 120, (339,125,0): 177, 188, 120, (339,126,0): 176, 187, 121, (339,127,0): 174, 186, 122, (339,128,0): 171, 185, 123, (339,129,0): 171, 185, 123, (339,130,0): 172, 186, 124, (339,131,0): 173, 188, 121, (339,132,0): 176, 189, 119, (339,133,0): 177, 190, 118, (339,134,0): 178, 190, 116, (339,135,0): 180, 191, 115, (339,136,0): 184, 190, 118, (339,137,0): 183, 184, 116, (339,138,0): 177, 173, 110, (339,139,0): 167, 158, 99, (339,140,0): 154, 138, 87, (339,141,0): 136, 118, 72, (339,142,0): 123, 100, 58, (339,143,0): 111, 92, 50, (339,144,0): 101, 89, 49, (339,145,0): 98, 90, 51, (339,146,0): 99, 90, 51, (339,147,0): 100, 90, 54, (339,148,0): 102, 92, 56, (339,149,0): 106, 96, 60, (339,150,0): 109, 99, 63, (339,151,0): 110, 102, 65, (339,152,0): 115, 110, 70, (339,153,0): 119, 116, 73, (339,154,0): 127, 129, 80, (339,155,0): 142, 149, 97, (339,156,0): 162, 171, 114, (339,157,0): 181, 193, 131, (339,158,0): 193, 207, 145, (339,159,0): 197, 216, 150, (339,160,0): 195, 218, 150, (339,161,0): 194, 220, 149, (339,162,0): 195, 220, 152, (339,163,0): 195, 222, 151, (339,164,0): 197, 223, 152, (339,165,0): 198, 225, 154, (339,166,0): 199, 226, 157, (339,167,0): 197, 227, 157, (339,168,0): 200, 230, 160, (339,169,0): 199, 230, 160, (339,170,0): 200, 230, 160, (339,171,0): 199, 230, 160, (339,172,0): 199, 230, 160, (339,173,0): 198, 231, 160, (339,174,0): 199, 230, 160, (339,175,0): 200, 230, 160, (339,176,0): 206, 229, 161, (339,177,0): 207, 228, 161, (339,178,0): 208, 227, 161, (339,179,0): 207, 228, 161, (339,180,0): 207, 226, 160, (339,181,0): 204, 225, 158, (339,182,0): 203, 222, 156, (339,183,0): 201, 222, 155, (339,184,0): 205, 224, 158, (339,185,0): 206, 227, 160, (339,186,0): 209, 228, 162, (339,187,0): 208, 229, 162, (339,188,0): 208, 227, 161, (339,189,0): 208, 229, 162, (339,190,0): 213, 232, 166, (339,191,0): 216, 238, 166, (339,192,0): 217, 240, 162, (339,193,0): 220, 245, 162, (339,194,0): 225, 250, 169, (339,195,0): 230, 254, 176, (339,196,0): 233, 255, 180, (339,197,0): 232, 254, 179, (339,198,0): 230, 250, 178, (339,199,0): 228, 248, 176, (339,200,0): 227, 247, 175, (339,201,0): 227, 248, 173, (339,202,0): 227, 245, 169, (339,203,0): 226, 245, 166, (339,204,0): 226, 243, 163, (339,205,0): 225, 243, 161, (339,206,0): 225, 243, 159, (339,207,0): 224, 242, 158, (339,208,0): 228, 245, 165, (339,209,0): 226, 243, 165, (339,210,0): 222, 239, 161, (339,211,0): 219, 235, 160, (339,212,0): 216, 232, 157, (339,213,0): 216, 232, 159, (339,214,0): 216, 232, 159, (339,215,0): 216, 232, 161, (339,216,0): 218, 233, 164, (339,217,0): 218, 233, 166, (339,218,0): 219, 234, 167, (339,219,0): 220, 235, 170, (339,220,0): 222, 236, 174, (339,221,0): 223, 237, 175, (339,222,0): 224, 238, 176, (339,223,0): 225, 239, 177, (339,224,0): 226, 238, 174, (339,225,0): 226, 238, 172, (339,226,0): 223, 238, 173, (339,227,0): 222, 237, 172, (339,228,0): 221, 235, 173, (339,229,0): 219, 235, 173, (339,230,0): 217, 235, 177, (339,231,0): 215, 234, 178, (339,232,0): 209, 230, 174, (339,233,0): 207, 230, 176, (339,234,0): 207, 231, 181, (339,235,0): 205, 231, 183, (339,236,0): 206, 232, 185, (339,237,0): 205, 233, 185, (339,238,0): 205, 232, 187, (339,239,0): 205, 232, 191, (339,240,0): 202, 228, 193, (339,241,0): 201, 226, 196, (339,242,0): 201, 226, 196, (339,243,0): 201, 226, 197, (339,244,0): 200, 225, 196, (339,245,0): 200, 225, 196, (339,246,0): 200, 224, 198, (339,247,0): 200, 224, 198, (339,248,0): 199, 223, 197, (339,249,0): 198, 222, 198, (339,250,0): 197, 221, 197, (339,251,0): 195, 219, 195, (339,252,0): 193, 217, 195, (339,253,0): 191, 215, 193, (339,254,0): 189, 213, 191, (339,255,0): 188, 213, 192, (339,256,0): 183, 211, 196, (339,257,0): 181, 211, 199, (339,258,0): 181, 213, 202, (339,259,0): 181, 212, 204, (339,260,0): 180, 213, 206, (339,261,0): 179, 211, 206, (339,262,0): 175, 209, 208, (339,263,0): 173, 209, 209, (339,264,0): 170, 208, 211, (339,265,0): 170, 207, 213, (339,266,0): 168, 206, 215, (339,267,0): 166, 206, 216, (339,268,0): 165, 204, 219, (339,269,0): 164, 203, 220, (339,270,0): 161, 203, 219, (339,271,0): 160, 203, 219, (339,272,0): 158, 206, 220, (339,273,0): 157, 206, 220, (339,274,0): 158, 207, 222, (339,275,0): 158, 207, 222, (339,276,0): 159, 208, 225, (339,277,0): 160, 208, 228, (339,278,0): 160, 208, 231, (339,279,0): 161, 208, 234, (339,280,0): 159, 206, 234, (339,281,0): 159, 206, 236, (339,282,0): 159, 205, 239, (339,283,0): 159, 205, 241, (339,284,0): 159, 204, 243, (339,285,0): 159, 204, 243, (339,286,0): 159, 204, 245, (339,287,0): 159, 204, 245, (339,288,0): 159, 203, 242, (339,289,0): 159, 203, 242, (339,290,0): 160, 202, 242, (339,291,0): 160, 202, 240, (339,292,0): 162, 201, 240, (339,293,0): 162, 201, 240, (339,294,0): 163, 201, 238, (339,295,0): 163, 201, 238, (339,296,0): 164, 198, 235, (339,297,0): 162, 196, 233, (339,298,0): 161, 194, 229, (339,299,0): 161, 194, 229, (339,300,0): 163, 193, 227, (339,301,0): 161, 191, 225, (339,302,0): 158, 187, 221, (339,303,0): 158, 182, 216, (339,304,0): 155, 172, 202, (339,305,0): 153, 167, 194, (339,306,0): 145, 159, 185, (339,307,0): 136, 151, 174, (339,308,0): 130, 143, 162, (339,309,0): 126, 139, 156, (339,310,0): 126, 139, 155, (339,311,0): 127, 139, 153, (339,312,0): 126, 138, 152, (339,313,0): 127, 136, 151, (339,314,0): 125, 134, 149, (339,315,0): 125, 132, 150, (339,316,0): 127, 134, 152, (339,317,0): 131, 138, 157, (339,318,0): 136, 141, 161, (339,319,0): 138, 144, 166, (339,320,0): 140, 148, 171, (339,321,0): 139, 146, 172, (339,322,0): 141, 146, 176, (339,323,0): 147, 148, 179, (339,324,0): 152, 148, 183, (339,325,0): 155, 145, 179, (339,326,0): 155, 140, 169, (339,327,0): 155, 135, 160, (339,328,0): 144, 120, 136, (339,329,0): 133, 103, 113, (339,330,0): 122, 86, 90, (339,331,0): 120, 78, 79, (339,332,0): 123, 75, 73, (339,333,0): 121, 70, 67, (339,334,0): 124, 71, 67, (339,335,0): 127, 73, 71, (339,336,0): 109, 57, 59, (339,337,0): 101, 51, 54, (339,338,0): 90, 41, 45, (339,339,0): 84, 35, 39, (339,340,0): 82, 33, 37, (339,341,0): 79, 33, 36, (339,342,0): 78, 33, 38, (339,343,0): 77, 32, 37, (339,344,0): 77, 34, 41, (339,345,0): 76, 35, 41, (339,346,0): 76, 37, 42, (339,347,0): 77, 38, 43, (339,348,0): 75, 38, 45, (339,349,0): 76, 39, 46, (339,350,0): 75, 40, 46, (339,351,0): 76, 41, 45, (339,352,0): 73, 37, 37, (339,353,0): 76, 41, 39, (339,354,0): 82, 44, 43, (339,355,0): 84, 44, 44, (339,356,0): 85, 45, 43, (339,357,0): 88, 47, 45, (339,358,0): 91, 50, 48, (339,359,0): 97, 53, 52, (339,360,0): 100, 54, 54, (339,361,0): 102, 54, 54, (339,362,0): 104, 54, 53, (339,363,0): 107, 56, 55, (339,364,0): 110, 59, 58, (339,365,0): 116, 62, 62, (339,366,0): 119, 65, 65, (339,367,0): 122, 66, 65, (339,368,0): 127, 67, 66, (339,369,0): 129, 68, 65, (339,370,0): 130, 69, 68, (339,371,0): 127, 67, 66, (339,372,0): 123, 63, 62, (339,373,0): 117, 59, 57, (339,374,0): 109, 53, 52, (339,375,0): 102, 51, 48, (339,376,0): 96, 46, 45, (339,377,0): 93, 45, 43, (339,378,0): 87, 42, 39, (339,379,0): 83, 39, 36, (339,380,0): 82, 38, 37, (339,381,0): 81, 40, 38, (339,382,0): 83, 42, 40, (339,383,0): 86, 42, 41, (339,384,0): 86, 40, 40, (339,385,0): 86, 40, 40, (339,386,0): 88, 40, 40, (339,387,0): 86, 40, 40, (339,388,0): 87, 39, 39, (339,389,0): 84, 38, 38, (339,390,0): 85, 37, 37, (339,391,0): 83, 37, 37, (339,392,0): 89, 41, 41, (339,393,0): 86, 40, 40, (339,394,0): 86, 38, 38, (339,395,0): 83, 37, 37, (339,396,0): 85, 37, 37, (339,397,0): 84, 38, 38, (339,398,0): 88, 40, 40, (339,399,0): 89, 41, 39, (339,400,0): 92, 38, 36, (339,401,0): 93, 40, 36, (339,402,0): 97, 42, 39, (339,403,0): 99, 46, 42, (339,404,0): 102, 47, 44, (339,405,0): 103, 50, 46, (339,406,0): 104, 49, 46, (339,407,0): 103, 50, 46, (339,408,0): 108, 53, 50, (339,409,0): 108, 55, 51, (339,410,0): 111, 56, 53, (339,411,0): 112, 59, 55, (339,412,0): 114, 59, 56, (339,413,0): 114, 61, 57, (339,414,0): 115, 60, 57, (339,415,0): 111, 60, 57, (339,416,0): 104, 56, 54, (339,417,0): 101, 56, 53, (339,418,0): 101, 53, 51, (339,419,0): 102, 54, 50, (339,420,0): 106, 57, 53, (339,421,0): 112, 63, 59, (339,422,0): 117, 69, 65, (339,423,0): 121, 73, 71, (339,424,0): 130, 84, 86, (339,425,0): 133, 88, 95, (339,426,0): 135, 93, 105, (339,427,0): 138, 99, 117, (339,428,0): 139, 104, 126, (339,429,0): 138, 104, 131, (339,430,0): 133, 102, 133, (339,431,0): 131, 101, 129, (339,432,0): 134, 102, 126, (339,433,0): 129, 97, 120, (339,434,0): 119, 87, 108, (339,435,0): 106, 74, 95, (339,436,0): 98, 65, 84, (339,437,0): 97, 64, 81, (339,438,0): 102, 69, 86, (339,439,0): 109, 75, 91, (339,440,0): 118, 84, 98, (339,441,0): 126, 90, 102, (339,442,0): 126, 90, 100, (339,443,0): 121, 84, 92, (339,444,0): 119, 82, 90, (339,445,0): 123, 86, 93, (339,446,0): 126, 89, 96, (339,447,0): 126, 86, 95, (339,448,0): 128, 86, 100, (339,449,0): 126, 84, 98, (339,450,0): 123, 79, 92, (339,451,0): 121, 78, 87, (339,452,0): 123, 78, 83, (339,453,0): 124, 80, 81, (339,454,0): 123, 77, 77, (339,455,0): 120, 75, 72, (339,456,0): 116, 71, 68, (339,457,0): 109, 65, 64, (339,458,0): 99, 55, 56, (339,459,0): 90, 48, 50, (339,460,0): 84, 43, 49, (339,461,0): 80, 40, 48, (339,462,0): 73, 36, 44, (339,463,0): 69, 34, 41, (339,464,0): 65, 34, 39, (339,465,0): 65, 35, 37, (339,466,0): 66, 36, 38, (339,467,0): 66, 36, 38, (339,468,0): 66, 37, 39, (339,469,0): 67, 38, 40, (339,470,0): 66, 40, 39, (339,471,0): 66, 40, 39, (339,472,0): 67, 41, 40, (339,473,0): 65, 41, 39, (339,474,0): 64, 40, 38, (339,475,0): 63, 39, 37, (339,476,0): 61, 40, 35, (339,477,0): 62, 41, 36, (339,478,0): 63, 42, 37, (339,479,0): 64, 43, 38, (339,480,0): 74, 53, 48, (339,481,0): 75, 54, 49, (339,482,0): 76, 57, 51, (339,483,0): 76, 59, 52, (339,484,0): 74, 59, 52, (339,485,0): 73, 58, 51, (339,486,0): 73, 56, 49, (339,487,0): 72, 53, 47, (339,488,0): 74, 50, 46, (339,489,0): 74, 49, 45, (339,490,0): 75, 45, 43, (339,491,0): 73, 43, 41, (339,492,0): 71, 43, 40, (339,493,0): 68, 43, 39, (339,494,0): 67, 43, 39, (339,495,0): 66, 42, 38, (339,496,0): 74, 51, 45, (339,497,0): 76, 53, 47, (339,498,0): 78, 54, 50, (339,499,0): 78, 57, 52, (339,500,0): 78, 57, 52, (339,501,0): 75, 54, 49, (339,502,0): 71, 52, 48, (339,503,0): 69, 50, 46, (339,504,0): 60, 42, 40, (339,505,0): 59, 41, 39, (339,506,0): 55, 40, 37, (339,507,0): 56, 41, 38, (339,508,0): 58, 44, 43, (339,509,0): 64, 50, 49, (339,510,0): 70, 56, 55, (339,511,0): 75, 59, 60, (339,512,0): 73, 52, 57, (339,513,0): 71, 48, 56, (339,514,0): 68, 45, 53, (339,515,0): 64, 41, 49, (339,516,0): 60, 37, 45, (339,517,0): 58, 35, 43, (339,518,0): 56, 33, 41, (339,519,0): 56, 33, 41, (339,520,0): 56, 33, 41, (339,521,0): 58, 35, 43, (339,522,0): 60, 37, 45, (339,523,0): 60, 37, 45, (339,524,0): 59, 36, 44, (339,525,0): 59, 36, 44, (339,526,0): 62, 39, 47, (339,527,0): 65, 42, 48, (339,528,0): 73, 46, 51, (339,529,0): 75, 49, 52, (339,530,0): 76, 51, 54, (339,531,0): 73, 51, 53, (339,532,0): 71, 49, 51, (339,533,0): 72, 52, 53, (339,534,0): 76, 58, 58, (339,535,0): 80, 62, 62, (339,536,0): 85, 67, 67, (339,537,0): 83, 65, 65, (339,538,0): 82, 62, 63, (339,539,0): 83, 63, 64, (339,540,0): 87, 62, 65, (339,541,0): 86, 61, 64, (339,542,0): 84, 58, 61, (339,543,0): 81, 55, 58, (339,544,0): 82, 51, 57, (339,545,0): 79, 48, 54, (339,546,0): 74, 45, 50, (339,547,0): 69, 42, 47, (339,548,0): 67, 42, 46, (339,549,0): 65, 43, 46, (339,550,0): 64, 44, 46, (339,551,0): 64, 45, 47, (339,552,0): 61, 42, 44, (339,553,0): 59, 40, 42, (339,554,0): 56, 37, 39, (339,555,0): 52, 33, 35, (339,556,0): 49, 29, 31, (339,557,0): 47, 25, 28, (339,558,0): 48, 23, 27, (339,559,0): 45, 22, 28, (339,560,0): 43, 23, 32, (339,561,0): 41, 24, 34, (339,562,0): 41, 24, 34, (339,563,0): 42, 25, 35, (339,564,0): 46, 26, 35, (339,565,0): 48, 28, 37, (339,566,0): 50, 31, 37, (339,567,0): 52, 33, 39, (339,568,0): 58, 37, 44, (339,569,0): 58, 37, 44, (339,570,0): 60, 37, 43, (339,571,0): 61, 38, 44, (339,572,0): 62, 40, 43, (339,573,0): 63, 41, 44, (339,574,0): 65, 40, 44, (339,575,0): 63, 43, 45, (339,576,0): 61, 45, 46, (339,577,0): 61, 47, 47, (339,578,0): 61, 49, 49, (339,579,0): 62, 50, 50, (339,580,0): 62, 50, 50, (339,581,0): 62, 50, 50, (339,582,0): 60, 50, 49, (339,583,0): 59, 49, 48, (339,584,0): 61, 53, 51, (339,585,0): 62, 54, 52, (339,586,0): 63, 55, 53, (339,587,0): 64, 56, 54, (339,588,0): 62, 57, 54, (339,589,0): 62, 57, 54, (339,590,0): 61, 56, 53, (339,591,0): 60, 55, 52, (339,592,0): 57, 51, 53, (339,593,0): 58, 52, 54, (339,594,0): 59, 53, 55, (339,595,0): 59, 53, 55, (339,596,0): 57, 51, 53, (339,597,0): 53, 47, 49, (339,598,0): 49, 43, 45, (339,599,0): 46, 40, 42, (340,0,0): 73, 60, 54, (340,1,0): 73, 60, 54, (340,2,0): 73, 60, 54, (340,3,0): 72, 59, 53, (340,4,0): 72, 59, 53, (340,5,0): 71, 58, 52, (340,6,0): 71, 58, 52, (340,7,0): 71, 58, 52, (340,8,0): 70, 57, 51, (340,9,0): 70, 57, 51, (340,10,0): 69, 56, 50, (340,11,0): 68, 55, 49, (340,12,0): 68, 55, 49, (340,13,0): 67, 54, 48, (340,14,0): 66, 53, 47, (340,15,0): 66, 53, 47, (340,16,0): 73, 57, 57, (340,17,0): 75, 57, 57, (340,18,0): 75, 57, 55, (340,19,0): 75, 57, 55, (340,20,0): 75, 57, 55, (340,21,0): 75, 57, 55, (340,22,0): 75, 57, 53, (340,23,0): 75, 57, 53, (340,24,0): 75, 57, 53, (340,25,0): 76, 59, 52, (340,26,0): 77, 60, 53, (340,27,0): 78, 61, 54, (340,28,0): 78, 61, 53, (340,29,0): 78, 61, 53, (340,30,0): 77, 60, 52, (340,31,0): 76, 59, 51, (340,32,0): 77, 60, 52, (340,33,0): 76, 59, 51, (340,34,0): 76, 57, 50, (340,35,0): 74, 55, 48, (340,36,0): 74, 55, 48, (340,37,0): 74, 55, 48, (340,38,0): 75, 55, 48, (340,39,0): 76, 56, 49, (340,40,0): 78, 55, 49, (340,41,0): 78, 55, 49, (340,42,0): 79, 56, 50, (340,43,0): 80, 57, 51, (340,44,0): 82, 57, 52, (340,45,0): 83, 58, 53, (340,46,0): 83, 58, 53, (340,47,0): 86, 58, 54, (340,48,0): 88, 57, 52, (340,49,0): 92, 59, 52, (340,50,0): 95, 60, 54, (340,51,0): 95, 61, 52, (340,52,0): 97, 60, 51, (340,53,0): 100, 62, 49, (340,54,0): 105, 66, 51, (340,55,0): 111, 70, 52, (340,56,0): 114, 71, 52, (340,57,0): 121, 76, 53, (340,58,0): 130, 82, 59, (340,59,0): 137, 90, 62, (340,60,0): 144, 93, 66, (340,61,0): 146, 95, 66, (340,62,0): 147, 94, 63, (340,63,0): 146, 93, 61, (340,64,0): 146, 93, 59, (340,65,0): 148, 94, 56, (340,66,0): 152, 99, 59, (340,67,0): 163, 109, 63, (340,68,0): 178, 123, 69, (340,69,0): 191, 135, 76, (340,70,0): 197, 142, 77, (340,71,0): 199, 145, 75, (340,72,0): 205, 151, 77, (340,73,0): 205, 152, 76, (340,74,0): 205, 152, 74, (340,75,0): 204, 153, 74, (340,76,0): 201, 152, 73, (340,77,0): 197, 150, 70, (340,78,0): 194, 148, 70, (340,79,0): 193, 145, 69, (340,80,0): 185, 135, 62, (340,81,0): 184, 134, 63, (340,82,0): 183, 133, 64, (340,83,0): 183, 134, 65, (340,84,0): 186, 139, 69, (340,85,0): 190, 146, 75, (340,86,0): 196, 152, 81, (340,87,0): 196, 156, 84, (340,88,0): 196, 158, 83, (340,89,0): 199, 163, 85, (340,90,0): 205, 173, 90, (340,91,0): 211, 181, 93, (340,92,0): 215, 189, 96, (340,93,0): 216, 190, 95, (340,94,0): 213, 189, 91, (340,95,0): 211, 188, 92, (340,96,0): 208, 188, 99, (340,97,0): 206, 188, 102, (340,98,0): 206, 188, 102, (340,99,0): 205, 189, 101, (340,100,0): 204, 190, 101, (340,101,0): 202, 191, 99, (340,102,0): 201, 192, 99, (340,103,0): 199, 193, 99, (340,104,0): 197, 192, 98, (340,105,0): 196, 193, 100, (340,106,0): 193, 192, 100, (340,107,0): 192, 192, 102, (340,108,0): 189, 192, 103, (340,109,0): 188, 192, 105, (340,110,0): 187, 191, 106, (340,111,0): 186, 191, 107, (340,112,0): 184, 189, 109, (340,113,0): 182, 189, 109, (340,114,0): 181, 188, 110, (340,115,0): 180, 187, 109, (340,116,0): 178, 187, 108, (340,117,0): 176, 184, 107, (340,118,0): 175, 183, 108, (340,119,0): 173, 183, 110, (340,120,0): 175, 185, 112, (340,121,0): 176, 186, 115, (340,122,0): 176, 187, 118, (340,123,0): 176, 187, 119, (340,124,0): 175, 186, 120, (340,125,0): 173, 185, 119, (340,126,0): 171, 183, 117, (340,127,0): 170, 182, 118, (340,128,0): 170, 184, 122, (340,129,0): 170, 184, 122, (340,130,0): 171, 185, 123, (340,131,0): 173, 188, 121, (340,132,0): 174, 189, 120, (340,133,0): 177, 190, 118, (340,134,0): 179, 191, 117, (340,135,0): 180, 190, 117, (340,136,0): 185, 191, 121, (340,137,0): 184, 187, 118, (340,138,0): 180, 179, 115, (340,139,0): 170, 164, 106, (340,140,0): 156, 143, 91, (340,141,0): 136, 119, 73, (340,142,0): 118, 99, 56, (340,143,0): 105, 88, 45, (340,144,0): 96, 87, 48, (340,145,0): 94, 89, 51, (340,146,0): 98, 90, 53, (340,147,0): 101, 93, 57, (340,148,0): 105, 97, 61, (340,149,0): 108, 100, 64, (340,150,0): 111, 103, 67, (340,151,0): 111, 106, 68, (340,152,0): 116, 112, 74, (340,153,0): 119, 117, 76, (340,154,0): 126, 129, 82, (340,155,0): 140, 148, 97, (340,156,0): 159, 169, 116, (340,157,0): 175, 190, 131, (340,158,0): 184, 202, 142, (340,159,0): 187, 207, 144, (340,160,0): 188, 213, 148, (340,161,0): 187, 213, 148, (340,162,0): 189, 215, 152, (340,163,0): 188, 217, 151, (340,164,0): 192, 218, 153, (340,165,0): 192, 221, 155, (340,166,0): 193, 222, 156, (340,167,0): 193, 224, 157, (340,168,0): 199, 230, 162, (340,169,0): 198, 231, 162, (340,170,0): 200, 231, 163, (340,171,0): 199, 232, 163, (340,172,0): 200, 233, 164, (340,173,0): 199, 235, 165, (340,174,0): 201, 234, 165, (340,175,0): 202, 233, 165, (340,176,0): 204, 229, 164, (340,177,0): 207, 229, 165, (340,178,0): 208, 228, 165, (340,179,0): 207, 229, 165, (340,180,0): 207, 227, 164, (340,181,0): 204, 226, 162, (340,182,0): 203, 223, 160, (340,183,0): 201, 223, 159, (340,184,0): 204, 224, 161, (340,185,0): 205, 227, 163, (340,186,0): 208, 228, 165, (340,187,0): 207, 229, 165, (340,188,0): 207, 227, 164, (340,189,0): 207, 229, 165, (340,190,0): 212, 232, 169, (340,191,0): 215, 237, 172, (340,192,0): 215, 241, 168, (340,193,0): 219, 245, 171, (340,194,0): 224, 250, 176, (340,195,0): 228, 254, 181, (340,196,0): 232, 255, 183, (340,197,0): 231, 254, 182, (340,198,0): 229, 252, 180, (340,199,0): 227, 250, 178, (340,200,0): 227, 249, 177, (340,201,0): 227, 249, 176, (340,202,0): 229, 250, 175, (340,203,0): 229, 250, 173, (340,204,0): 229, 251, 169, (340,205,0): 229, 251, 168, (340,206,0): 230, 249, 167, (340,207,0): 228, 250, 167, (340,208,0): 225, 246, 167, (340,209,0): 222, 245, 167, (340,210,0): 217, 240, 162, (340,211,0): 213, 235, 160, (340,212,0): 210, 232, 157, (340,213,0): 210, 232, 159, (340,214,0): 210, 232, 160, (340,215,0): 211, 232, 163, (340,216,0): 213, 234, 165, (340,217,0): 213, 234, 167, (340,218,0): 214, 235, 170, (340,219,0): 215, 236, 171, (340,220,0): 217, 237, 174, (340,221,0): 218, 238, 175, (340,222,0): 219, 239, 176, (340,223,0): 220, 238, 176, (340,224,0): 223, 239, 176, (340,225,0): 223, 239, 176, (340,226,0): 222, 238, 176, (340,227,0): 220, 238, 176, (340,228,0): 219, 237, 177, (340,229,0): 218, 238, 179, (340,230,0): 216, 237, 180, (340,231,0): 214, 237, 181, (340,232,0): 210, 233, 181, (340,233,0): 209, 233, 183, (340,234,0): 207, 233, 185, (340,235,0): 206, 234, 186, (340,236,0): 206, 234, 186, (340,237,0): 205, 234, 188, (340,238,0): 205, 234, 190, (340,239,0): 205, 233, 193, (340,240,0): 199, 226, 193, (340,241,0): 198, 224, 195, (340,242,0): 198, 224, 195, (340,243,0): 197, 223, 196, (340,244,0): 197, 223, 196, (340,245,0): 196, 222, 195, (340,246,0): 195, 221, 196, (340,247,0): 195, 221, 196, (340,248,0): 193, 219, 194, (340,249,0): 193, 218, 196, (340,250,0): 192, 217, 195, (340,251,0): 190, 215, 193, (340,252,0): 188, 213, 192, (340,253,0): 187, 212, 191, (340,254,0): 185, 210, 189, (340,255,0): 183, 210, 191, (340,256,0): 179, 210, 195, (340,257,0): 178, 210, 197, (340,258,0): 179, 211, 200, (340,259,0): 180, 211, 203, (340,260,0): 179, 212, 205, (340,261,0): 178, 210, 205, (340,262,0): 175, 209, 208, (340,263,0): 173, 209, 209, (340,264,0): 169, 207, 210, (340,265,0): 169, 206, 212, (340,266,0): 167, 205, 214, (340,267,0): 165, 205, 215, (340,268,0): 164, 204, 216, (340,269,0): 161, 203, 217, (340,270,0): 160, 202, 216, (340,271,0): 159, 202, 218, (340,272,0): 157, 205, 219, (340,273,0): 156, 205, 219, (340,274,0): 157, 206, 220, (340,275,0): 157, 206, 221, (340,276,0): 157, 206, 223, (340,277,0): 158, 206, 226, (340,278,0): 158, 206, 228, (340,279,0): 158, 206, 229, (340,280,0): 157, 204, 230, (340,281,0): 157, 204, 232, (340,282,0): 157, 204, 234, (340,283,0): 157, 203, 236, (340,284,0): 157, 203, 237, (340,285,0): 157, 203, 239, (340,286,0): 157, 202, 241, (340,287,0): 157, 202, 241, (340,288,0): 157, 201, 238, (340,289,0): 158, 202, 239, (340,290,0): 159, 201, 239, (340,291,0): 159, 201, 239, (340,292,0): 162, 201, 240, (340,293,0): 162, 202, 238, (340,294,0): 163, 201, 238, (340,295,0): 164, 202, 239, (340,296,0): 165, 199, 236, (340,297,0): 163, 197, 234, (340,298,0): 162, 195, 230, (340,299,0): 163, 196, 231, (340,300,0): 166, 196, 232, (340,301,0): 165, 195, 231, (340,302,0): 162, 191, 225, (340,303,0): 162, 186, 220, (340,304,0): 160, 176, 209, (340,305,0): 158, 172, 201, (340,306,0): 152, 166, 193, (340,307,0): 143, 157, 183, (340,308,0): 137, 149, 173, (340,309,0): 132, 144, 166, (340,310,0): 131, 142, 160, (340,311,0): 132, 141, 158, (340,312,0): 128, 137, 154, (340,313,0): 128, 135, 153, (340,314,0): 129, 134, 153, (340,315,0): 129, 134, 153, (340,316,0): 132, 135, 154, (340,317,0): 134, 137, 156, (340,318,0): 136, 139, 158, (340,319,0): 135, 140, 160, (340,320,0): 138, 149, 171, (340,321,0): 136, 148, 172, (340,322,0): 139, 146, 175, (340,323,0): 143, 146, 177, (340,324,0): 151, 147, 180, (340,325,0): 154, 144, 178, (340,326,0): 155, 140, 169, (340,327,0): 157, 134, 160, (340,328,0): 143, 116, 133, (340,329,0): 133, 100, 111, (340,330,0): 124, 83, 91, (340,331,0): 124, 78, 81, (340,332,0): 125, 73, 75, (340,333,0): 122, 66, 67, (340,334,0): 120, 61, 63, (340,335,0): 119, 63, 66, (340,336,0): 103, 53, 56, (340,337,0): 93, 47, 50, (340,338,0): 86, 40, 43, (340,339,0): 80, 35, 38, (340,340,0): 78, 33, 38, (340,341,0): 77, 35, 39, (340,342,0): 75, 34, 38, (340,343,0): 74, 33, 37, (340,344,0): 73, 34, 39, (340,345,0): 71, 35, 39, (340,346,0): 71, 36, 42, (340,347,0): 71, 36, 42, (340,348,0): 69, 37, 42, (340,349,0): 70, 38, 43, (340,350,0): 70, 37, 44, (340,351,0): 70, 38, 43, (340,352,0): 67, 33, 34, (340,353,0): 70, 36, 35, (340,354,0): 75, 40, 38, (340,355,0): 77, 42, 40, (340,356,0): 80, 42, 41, (340,357,0): 83, 43, 43, (340,358,0): 88, 47, 45, (340,359,0): 94, 50, 49, (340,360,0): 98, 53, 50, (340,361,0): 100, 52, 50, (340,362,0): 104, 53, 52, (340,363,0): 108, 54, 54, (340,364,0): 112, 56, 55, (340,365,0): 116, 60, 59, (340,366,0): 122, 64, 63, (340,367,0): 125, 65, 65, (340,368,0): 126, 65, 64, (340,369,0): 128, 64, 64, (340,370,0): 127, 63, 63, (340,371,0): 123, 62, 61, (340,372,0): 117, 57, 57, (340,373,0): 109, 51, 50, (340,374,0): 101, 45, 44, (340,375,0): 95, 44, 41, (340,376,0): 90, 40, 39, (340,377,0): 88, 40, 38, (340,378,0): 82, 38, 37, (340,379,0): 79, 38, 36, (340,380,0): 77, 37, 35, (340,381,0): 78, 38, 36, (340,382,0): 78, 40, 39, (340,383,0): 80, 40, 40, (340,384,0): 83, 39, 38, (340,385,0): 83, 39, 38, (340,386,0): 83, 37, 37, (340,387,0): 81, 37, 36, (340,388,0): 82, 36, 36, (340,389,0): 81, 37, 36, (340,390,0): 82, 36, 36, (340,391,0): 81, 37, 36, (340,392,0): 86, 40, 40, (340,393,0): 84, 40, 39, (340,394,0): 85, 39, 39, (340,395,0): 83, 39, 38, (340,396,0): 84, 38, 38, (340,397,0): 84, 40, 39, (340,398,0): 85, 39, 39, (340,399,0): 86, 41, 38, (340,400,0): 88, 37, 34, (340,401,0): 90, 39, 36, (340,402,0): 95, 41, 39, (340,403,0): 96, 45, 42, (340,404,0): 101, 47, 45, (340,405,0): 101, 50, 47, (340,406,0): 103, 49, 47, (340,407,0): 102, 51, 48, (340,408,0): 107, 53, 51, (340,409,0): 106, 55, 52, (340,410,0): 110, 56, 54, (340,411,0): 110, 59, 56, (340,412,0): 113, 59, 57, (340,413,0): 111, 60, 57, (340,414,0): 112, 58, 56, (340,415,0): 110, 59, 58, (340,416,0): 104, 56, 56, (340,417,0): 100, 54, 56, (340,418,0): 100, 52, 52, (340,419,0): 99, 51, 49, (340,420,0): 102, 54, 52, (340,421,0): 106, 58, 56, (340,422,0): 113, 63, 62, (340,423,0): 115, 67, 67, (340,424,0): 127, 78, 81, (340,425,0): 128, 81, 87, (340,426,0): 132, 86, 97, (340,427,0): 133, 91, 105, (340,428,0): 132, 90, 110, (340,429,0): 127, 89, 112, (340,430,0): 124, 85, 112, (340,431,0): 120, 85, 109, (340,432,0): 122, 88, 105, (340,433,0): 116, 84, 97, (340,434,0): 108, 76, 89, (340,435,0): 99, 67, 80, (340,436,0): 94, 61, 72, (340,437,0): 93, 60, 69, (340,438,0): 98, 65, 74, (340,439,0): 105, 70, 77, (340,440,0): 109, 74, 80, (340,441,0): 118, 82, 86, (340,442,0): 122, 86, 88, (340,443,0): 119, 80, 81, (340,444,0): 115, 76, 77, (340,445,0): 117, 78, 79, (340,446,0): 119, 80, 81, (340,447,0): 118, 78, 79, (340,448,0): 119, 78, 84, (340,449,0): 115, 72, 81, (340,450,0): 113, 68, 75, (340,451,0): 115, 70, 75, (340,452,0): 119, 73, 75, (340,453,0): 119, 73, 73, (340,454,0): 115, 70, 67, (340,455,0): 111, 66, 63, (340,456,0): 107, 63, 60, (340,457,0): 101, 57, 56, (340,458,0): 89, 49, 49, (340,459,0): 81, 42, 45, (340,460,0): 76, 39, 46, (340,461,0): 73, 38, 45, (340,462,0): 68, 35, 46, (340,463,0): 65, 34, 42, (340,464,0): 64, 33, 38, (340,465,0): 63, 35, 34, (340,466,0): 64, 36, 35, (340,467,0): 65, 37, 36, (340,468,0): 65, 37, 36, (340,469,0): 66, 38, 37, (340,470,0): 65, 39, 38, (340,471,0): 65, 39, 38, (340,472,0): 68, 44, 42, (340,473,0): 67, 43, 41, (340,474,0): 65, 41, 39, (340,475,0): 61, 40, 37, (340,476,0): 60, 39, 36, (340,477,0): 60, 39, 36, (340,478,0): 60, 39, 36, (340,479,0): 60, 39, 36, (340,480,0): 69, 48, 43, (340,481,0): 70, 51, 45, (340,482,0): 71, 54, 47, (340,483,0): 72, 57, 50, (340,484,0): 72, 59, 51, (340,485,0): 72, 59, 51, (340,486,0): 72, 57, 50, (340,487,0): 74, 55, 49, (340,488,0): 75, 51, 47, (340,489,0): 75, 50, 46, (340,490,0): 76, 46, 44, (340,491,0): 73, 43, 41, (340,492,0): 71, 43, 40, (340,493,0): 69, 44, 40, (340,494,0): 69, 45, 41, (340,495,0): 69, 45, 41, (340,496,0): 79, 56, 50, (340,497,0): 79, 59, 52, (340,498,0): 80, 59, 54, (340,499,0): 80, 59, 54, (340,500,0): 78, 57, 52, (340,501,0): 74, 55, 49, (340,502,0): 70, 51, 47, (340,503,0): 67, 48, 44, (340,504,0): 59, 41, 39, (340,505,0): 57, 39, 37, (340,506,0): 53, 38, 35, (340,507,0): 54, 39, 36, (340,508,0): 57, 41, 41, (340,509,0): 63, 47, 47, (340,510,0): 68, 54, 53, (340,511,0): 73, 57, 58, (340,512,0): 73, 52, 57, (340,513,0): 71, 48, 54, (340,514,0): 68, 45, 51, (340,515,0): 64, 41, 47, (340,516,0): 60, 37, 43, (340,517,0): 58, 35, 41, (340,518,0): 56, 33, 39, (340,519,0): 56, 33, 39, (340,520,0): 58, 35, 41, (340,521,0): 60, 37, 43, (340,522,0): 62, 39, 45, (340,523,0): 61, 38, 44, (340,524,0): 58, 35, 41, (340,525,0): 56, 33, 39, (340,526,0): 57, 34, 40, (340,527,0): 59, 36, 42, (340,528,0): 71, 44, 49, (340,529,0): 74, 48, 51, (340,530,0): 76, 51, 54, (340,531,0): 75, 53, 55, (340,532,0): 74, 52, 54, (340,533,0): 73, 53, 54, (340,534,0): 73, 55, 55, (340,535,0): 75, 57, 57, (340,536,0): 76, 58, 58, (340,537,0): 75, 57, 57, (340,538,0): 76, 56, 57, (340,539,0): 78, 58, 59, (340,540,0): 82, 57, 60, (340,541,0): 81, 56, 59, (340,542,0): 78, 52, 55, (340,543,0): 74, 48, 51, (340,544,0): 75, 44, 50, (340,545,0): 73, 42, 48, (340,546,0): 70, 41, 46, (340,547,0): 65, 38, 43, (340,548,0): 63, 38, 42, (340,549,0): 62, 40, 43, (340,550,0): 62, 42, 44, (340,551,0): 63, 44, 46, (340,552,0): 61, 42, 44, (340,553,0): 57, 41, 42, (340,554,0): 55, 36, 38, (340,555,0): 51, 32, 34, (340,556,0): 48, 28, 30, (340,557,0): 46, 26, 28, (340,558,0): 45, 23, 26, (340,559,0): 44, 23, 28, (340,560,0): 40, 23, 31, (340,561,0): 39, 23, 33, (340,562,0): 40, 23, 33, (340,563,0): 40, 23, 33, (340,564,0): 42, 25, 33, (340,565,0): 44, 27, 35, (340,566,0): 48, 29, 35, (340,567,0): 49, 30, 36, (340,568,0): 54, 33, 40, (340,569,0): 55, 34, 41, (340,570,0): 56, 35, 40, (340,571,0): 58, 37, 42, (340,572,0): 61, 39, 42, (340,573,0): 62, 40, 43, (340,574,0): 63, 41, 44, (340,575,0): 63, 43, 45, (340,576,0): 61, 45, 46, (340,577,0): 59, 47, 47, (340,578,0): 61, 49, 49, (340,579,0): 62, 50, 50, (340,580,0): 62, 52, 51, (340,581,0): 62, 52, 51, (340,582,0): 61, 51, 50, (340,583,0): 61, 51, 50, (340,584,0): 63, 55, 53, (340,585,0): 64, 56, 54, (340,586,0): 63, 58, 55, (340,587,0): 63, 58, 55, (340,588,0): 63, 58, 55, (340,589,0): 62, 57, 54, (340,590,0): 60, 56, 53, (340,591,0): 59, 55, 52, (340,592,0): 58, 52, 54, (340,593,0): 59, 53, 55, (340,594,0): 60, 54, 56, (340,595,0): 60, 54, 56, (340,596,0): 58, 52, 54, (340,597,0): 54, 48, 50, (340,598,0): 50, 44, 46, (340,599,0): 47, 41, 43, (341,0,0): 72, 59, 53, (341,1,0): 72, 59, 53, (341,2,0): 72, 59, 53, (341,3,0): 72, 59, 53, (341,4,0): 72, 59, 53, (341,5,0): 72, 59, 53, (341,6,0): 72, 59, 53, (341,7,0): 72, 59, 53, (341,8,0): 72, 59, 53, (341,9,0): 71, 58, 52, (341,10,0): 71, 58, 52, (341,11,0): 70, 57, 51, (341,12,0): 69, 56, 50, (341,13,0): 68, 55, 49, (341,14,0): 67, 54, 48, (341,15,0): 68, 53, 48, (341,16,0): 76, 58, 56, (341,17,0): 76, 58, 56, (341,18,0): 76, 58, 56, (341,19,0): 76, 58, 56, (341,20,0): 76, 58, 56, (341,21,0): 76, 58, 54, (341,22,0): 76, 58, 54, (341,23,0): 76, 59, 52, (341,24,0): 76, 59, 52, (341,25,0): 76, 59, 52, (341,26,0): 78, 61, 54, (341,27,0): 79, 62, 54, (341,28,0): 80, 63, 55, (341,29,0): 79, 62, 54, (341,30,0): 79, 62, 54, (341,31,0): 78, 61, 53, (341,32,0): 80, 63, 55, (341,33,0): 79, 62, 54, (341,34,0): 78, 59, 52, (341,35,0): 76, 57, 50, (341,36,0): 75, 56, 49, (341,37,0): 75, 56, 49, (341,38,0): 76, 56, 49, (341,39,0): 77, 57, 50, (341,40,0): 78, 55, 49, (341,41,0): 78, 55, 49, (341,42,0): 79, 56, 50, (341,43,0): 79, 56, 50, (341,44,0): 81, 56, 51, (341,45,0): 82, 57, 52, (341,46,0): 82, 57, 52, (341,47,0): 84, 56, 52, (341,48,0): 86, 57, 53, (341,49,0): 89, 58, 53, (341,50,0): 90, 59, 54, (341,51,0): 92, 59, 52, (341,52,0): 93, 59, 50, (341,53,0): 96, 59, 50, (341,54,0): 101, 63, 52, (341,55,0): 106, 67, 52, (341,56,0): 110, 68, 52, (341,57,0): 113, 72, 52, (341,58,0): 123, 78, 57, (341,59,0): 129, 84, 61, (341,60,0): 135, 89, 65, (341,61,0): 139, 92, 66, (341,62,0): 141, 91, 66, (341,63,0): 141, 91, 64, (341,64,0): 142, 91, 62, (341,65,0): 142, 92, 59, (341,66,0): 147, 95, 58, (341,67,0): 154, 101, 61, (341,68,0): 164, 110, 63, (341,69,0): 175, 120, 66, (341,70,0): 182, 128, 68, (341,71,0): 186, 132, 68, (341,72,0): 197, 142, 75, (341,73,0): 197, 145, 72, (341,74,0): 199, 147, 72, (341,75,0): 199, 150, 73, (341,76,0): 197, 150, 72, (341,77,0): 195, 149, 71, (341,78,0): 193, 147, 69, (341,79,0): 191, 145, 68, (341,80,0): 184, 136, 64, (341,81,0): 183, 133, 64, (341,82,0): 181, 132, 65, (341,83,0): 180, 131, 65, (341,84,0): 181, 133, 69, (341,85,0): 183, 138, 73, (341,86,0): 186, 142, 77, (341,87,0): 186, 145, 79, (341,88,0): 184, 145, 76, (341,89,0): 186, 152, 80, (341,90,0): 194, 161, 84, (341,91,0): 204, 173, 91, (341,92,0): 211, 184, 97, (341,93,0): 213, 188, 96, (341,94,0): 212, 188, 92, (341,95,0): 209, 186, 92, (341,96,0): 207, 187, 101, (341,97,0): 204, 188, 103, (341,98,0): 204, 188, 103, (341,99,0): 203, 189, 101, (341,100,0): 201, 190, 101, (341,101,0): 200, 191, 100, (341,102,0): 198, 191, 100, (341,103,0): 197, 192, 100, (341,104,0): 195, 192, 99, (341,105,0): 193, 192, 100, (341,106,0): 191, 191, 101, (341,107,0): 189, 192, 103, (341,108,0): 187, 191, 104, (341,109,0): 186, 192, 106, (341,110,0): 185, 190, 106, (341,111,0): 183, 191, 108, (341,112,0): 182, 189, 111, (341,113,0): 181, 188, 111, (341,114,0): 180, 187, 110, (341,115,0): 177, 185, 108, (341,116,0): 176, 184, 107, (341,117,0): 174, 182, 107, (341,118,0): 171, 181, 108, (341,119,0): 171, 181, 108, (341,120,0): 176, 186, 115, (341,121,0): 176, 187, 118, (341,122,0): 176, 187, 119, (341,123,0): 176, 187, 119, (341,124,0): 174, 186, 120, (341,125,0): 172, 184, 118, (341,126,0): 170, 182, 116, (341,127,0): 167, 182, 117, (341,128,0): 170, 184, 122, (341,129,0): 171, 185, 123, (341,130,0): 172, 187, 122, (341,131,0): 173, 188, 121, (341,132,0): 175, 190, 121, (341,133,0): 176, 192, 121, (341,134,0): 179, 192, 120, (341,135,0): 181, 193, 121, (341,136,0): 184, 191, 121, (341,137,0): 183, 188, 121, (341,138,0): 181, 181, 119, (341,139,0): 173, 168, 110, (341,140,0): 158, 148, 95, (341,141,0): 138, 124, 75, (341,142,0): 120, 103, 59, (341,143,0): 105, 90, 49, (341,144,0): 95, 87, 50, (341,145,0): 95, 89, 53, (341,146,0): 99, 93, 59, (341,147,0): 103, 97, 63, (341,148,0): 108, 99, 66, (341,149,0): 109, 103, 69, (341,150,0): 111, 105, 69, (341,151,0): 110, 106, 69, (341,152,0): 116, 114, 76, (341,153,0): 116, 118, 78, (341,154,0): 121, 129, 82, (341,155,0): 135, 147, 97, (341,156,0): 155, 169, 116, (341,157,0): 169, 188, 132, (341,158,0): 178, 198, 139, (341,159,0): 178, 202, 142, (341,160,0): 182, 207, 149, (341,161,0): 181, 209, 150, (341,162,0): 182, 210, 151, (341,163,0): 183, 213, 153, (341,164,0): 185, 215, 155, (341,165,0): 187, 217, 155, (341,166,0): 189, 219, 157, (341,167,0): 189, 221, 158, (341,168,0): 196, 228, 163, (341,169,0): 195, 230, 164, (341,170,0): 196, 231, 165, (341,171,0): 198, 233, 165, (341,172,0): 200, 235, 167, (341,173,0): 200, 237, 168, (341,174,0): 201, 238, 169, (341,175,0): 205, 237, 170, (341,176,0): 206, 232, 169, (341,177,0): 207, 231, 169, (341,178,0): 208, 232, 170, (341,179,0): 208, 232, 170, (341,180,0): 206, 230, 168, (341,181,0): 205, 229, 167, (341,182,0): 203, 227, 165, (341,183,0): 202, 226, 164, (341,184,0): 203, 227, 165, (341,185,0): 205, 229, 167, (341,186,0): 207, 231, 169, (341,187,0): 207, 231, 169, (341,188,0): 206, 230, 168, (341,189,0): 208, 232, 170, (341,190,0): 212, 236, 174, (341,191,0): 215, 239, 177, (341,192,0): 216, 243, 176, (341,193,0): 219, 246, 179, (341,194,0): 223, 250, 183, (341,195,0): 226, 253, 186, (341,196,0): 229, 254, 188, (341,197,0): 228, 253, 187, (341,198,0): 226, 251, 185, (341,199,0): 224, 249, 181, (341,200,0): 230, 253, 185, (341,201,0): 231, 254, 184, (341,202,0): 234, 255, 184, (341,203,0): 235, 255, 184, (341,204,0): 235, 255, 180, (341,205,0): 235, 255, 178, (341,206,0): 235, 255, 177, (341,207,0): 234, 255, 177, (341,208,0): 222, 246, 170, (341,209,0): 217, 243, 169, (341,210,0): 212, 238, 164, (341,211,0): 207, 233, 159, (341,212,0): 205, 231, 158, (341,213,0): 205, 231, 160, (341,214,0): 206, 231, 163, (341,215,0): 207, 232, 164, (341,216,0): 208, 233, 167, (341,217,0): 209, 234, 168, (341,218,0): 209, 233, 171, (341,219,0): 210, 234, 172, (341,220,0): 211, 235, 175, (341,221,0): 212, 236, 176, (341,222,0): 212, 236, 176, (341,223,0): 213, 237, 177, (341,224,0): 215, 236, 177, (341,225,0): 216, 236, 175, (341,226,0): 216, 236, 177, (341,227,0): 215, 236, 177, (341,228,0): 215, 236, 179, (341,229,0): 214, 237, 181, (341,230,0): 213, 238, 183, (341,231,0): 213, 237, 185, (341,232,0): 209, 236, 185, (341,233,0): 208, 234, 186, (341,234,0): 207, 235, 187, (341,235,0): 205, 234, 188, (341,236,0): 204, 233, 189, (341,237,0): 202, 233, 189, (341,238,0): 201, 232, 190, (341,239,0): 201, 231, 193, (341,240,0): 194, 223, 193, (341,241,0): 194, 222, 197, (341,242,0): 195, 221, 196, (341,243,0): 192, 220, 195, (341,244,0): 193, 218, 196, (341,245,0): 190, 218, 195, (341,246,0): 191, 216, 195, (341,247,0): 189, 217, 195, (341,248,0): 188, 213, 192, (341,249,0): 186, 214, 192, (341,250,0): 187, 212, 193, (341,251,0): 184, 211, 192, (341,252,0): 185, 209, 193, (341,253,0): 182, 209, 192, (341,254,0): 183, 207, 191, (341,255,0): 181, 208, 193, (341,256,0): 179, 209, 197, (341,257,0): 178, 210, 199, (341,258,0): 179, 211, 200, (341,259,0): 179, 212, 203, (341,260,0): 179, 212, 205, (341,261,0): 176, 211, 205, (341,262,0): 173, 209, 207, (341,263,0): 172, 208, 208, (341,264,0): 168, 206, 207, (341,265,0): 167, 206, 211, (341,266,0): 165, 206, 212, (341,267,0): 164, 204, 212, (341,268,0): 161, 204, 213, (341,269,0): 160, 202, 214, (341,270,0): 159, 201, 215, (341,271,0): 158, 202, 215, (341,272,0): 156, 204, 218, (341,273,0): 156, 205, 219, (341,274,0): 156, 205, 219, (341,275,0): 156, 205, 219, (341,276,0): 156, 205, 220, (341,277,0): 156, 205, 222, (341,278,0): 156, 204, 224, (341,279,0): 156, 204, 226, (341,280,0): 156, 204, 227, (341,281,0): 156, 203, 229, (341,282,0): 156, 203, 231, (341,283,0): 156, 203, 233, (341,284,0): 156, 202, 235, (341,285,0): 156, 202, 236, (341,286,0): 156, 202, 236, (341,287,0): 156, 202, 236, (341,288,0): 157, 201, 238, (341,289,0): 157, 201, 238, (341,290,0): 158, 200, 238, (341,291,0): 158, 200, 238, (341,292,0): 160, 200, 236, (341,293,0): 161, 201, 237, (341,294,0): 162, 200, 237, (341,295,0): 162, 200, 237, (341,296,0): 164, 198, 235, (341,297,0): 163, 197, 234, (341,298,0): 163, 196, 231, (341,299,0): 164, 197, 232, (341,300,0): 167, 197, 233, (341,301,0): 167, 197, 233, (341,302,0): 165, 193, 230, (341,303,0): 164, 188, 224, (341,304,0): 164, 180, 214, (341,305,0): 162, 175, 207, (341,306,0): 157, 171, 200, (341,307,0): 151, 165, 192, (341,308,0): 147, 159, 185, (341,309,0): 141, 153, 177, (341,310,0): 138, 146, 169, (341,311,0): 135, 143, 164, (341,312,0): 130, 137, 156, (341,313,0): 131, 136, 155, (341,314,0): 132, 135, 154, (341,315,0): 132, 133, 153, (341,316,0): 132, 133, 153, (341,317,0): 134, 132, 153, (341,318,0): 135, 133, 154, (341,319,0): 133, 136, 155, (341,320,0): 137, 148, 170, (341,321,0): 134, 146, 170, (341,322,0): 137, 144, 172, (341,323,0): 141, 145, 174, (341,324,0): 148, 144, 177, (341,325,0): 152, 143, 174, (341,326,0): 154, 138, 167, (341,327,0): 157, 133, 157, (341,328,0): 146, 115, 133, (341,329,0): 133, 97, 109, (341,330,0): 122, 79, 88, (341,331,0): 122, 73, 79, (341,332,0): 121, 69, 73, (341,333,0): 116, 59, 65, (341,334,0): 111, 52, 58, (341,335,0): 107, 50, 56, (341,336,0): 92, 46, 49, (341,337,0): 85, 43, 45, (341,338,0): 80, 38, 40, (341,339,0): 77, 35, 37, (341,340,0): 76, 35, 39, (341,341,0): 77, 36, 40, (341,342,0): 74, 35, 38, (341,343,0): 71, 35, 37, (341,344,0): 68, 33, 37, (341,345,0): 68, 33, 37, (341,346,0): 66, 34, 39, (341,347,0): 66, 35, 40, (341,348,0): 66, 35, 40, (341,349,0): 65, 36, 40, (341,350,0): 65, 36, 41, (341,351,0): 65, 36, 40, (341,352,0): 62, 32, 32, (341,353,0): 65, 35, 33, (341,354,0): 70, 39, 37, (341,355,0): 74, 40, 38, (341,356,0): 75, 40, 38, (341,357,0): 79, 41, 40, (341,358,0): 84, 44, 44, (341,359,0): 90, 46, 45, (341,360,0): 94, 49, 46, (341,361,0): 98, 48, 47, (341,362,0): 103, 49, 49, (341,363,0): 106, 50, 49, (341,364,0): 112, 54, 53, (341,365,0): 117, 57, 57, (341,366,0): 121, 61, 61, (341,367,0): 124, 62, 63, (341,368,0): 124, 60, 60, (341,369,0): 123, 59, 59, (341,370,0): 121, 57, 57, (341,371,0): 115, 54, 53, (341,372,0): 109, 49, 49, (341,373,0): 103, 45, 44, (341,374,0): 95, 41, 39, (341,375,0): 91, 40, 37, (341,376,0): 87, 37, 36, (341,377,0): 83, 38, 35, (341,378,0): 80, 36, 35, (341,379,0): 77, 36, 34, (341,380,0): 76, 36, 34, (341,381,0): 75, 37, 34, (341,382,0): 76, 38, 37, (341,383,0): 77, 39, 38, (341,384,0): 80, 39, 37, (341,385,0): 81, 37, 36, (341,386,0): 80, 36, 35, (341,387,0): 79, 35, 34, (341,388,0): 79, 35, 34, (341,389,0): 80, 36, 35, (341,390,0): 81, 37, 36, (341,391,0): 81, 37, 36, (341,392,0): 84, 40, 39, (341,393,0): 84, 40, 39, (341,394,0): 84, 40, 39, (341,395,0): 84, 40, 39, (341,396,0): 84, 40, 39, (341,397,0): 84, 40, 39, (341,398,0): 84, 40, 39, (341,399,0): 85, 39, 39, (341,400,0): 87, 37, 36, (341,401,0): 89, 40, 36, (341,402,0): 93, 42, 39, (341,403,0): 95, 46, 42, (341,404,0): 98, 47, 44, (341,405,0): 99, 50, 46, (341,406,0): 100, 49, 46, (341,407,0): 100, 51, 47, (341,408,0): 103, 52, 49, (341,409,0): 103, 54, 50, (341,410,0): 105, 54, 51, (341,411,0): 105, 56, 52, (341,412,0): 107, 56, 53, (341,413,0): 106, 57, 53, (341,414,0): 106, 55, 52, (341,415,0): 105, 55, 54, (341,416,0): 101, 55, 57, (341,417,0): 98, 53, 56, (341,418,0): 97, 51, 53, (341,419,0): 96, 50, 50, (341,420,0): 98, 52, 52, (341,421,0): 101, 56, 53, (341,422,0): 107, 59, 57, (341,423,0): 109, 61, 61, (341,424,0): 118, 69, 72, (341,425,0): 120, 73, 79, (341,426,0): 124, 79, 86, (341,427,0): 124, 81, 91, (341,428,0): 121, 78, 95, (341,429,0): 118, 77, 95, (341,430,0): 117, 75, 97, (341,431,0): 114, 75, 94, (341,432,0): 113, 77, 89, (341,433,0): 109, 74, 81, (341,434,0): 103, 68, 75, (341,435,0): 97, 62, 69, (341,436,0): 93, 58, 64, (341,437,0): 93, 58, 64, (341,438,0): 96, 60, 64, (341,439,0): 98, 62, 64, (341,440,0): 99, 63, 65, (341,441,0): 110, 71, 72, (341,442,0): 115, 77, 76, (341,443,0): 112, 74, 71, (341,444,0): 109, 71, 68, (341,445,0): 110, 73, 67, (341,446,0): 110, 70, 68, (341,447,0): 107, 67, 65, (341,448,0): 105, 63, 65, (341,449,0): 99, 57, 59, (341,450,0): 100, 55, 58, (341,451,0): 107, 63, 64, (341,452,0): 112, 67, 64, (341,453,0): 110, 65, 62, (341,454,0): 104, 59, 54, (341,455,0): 101, 58, 52, (341,456,0): 96, 52, 49, (341,457,0): 88, 47, 45, (341,458,0): 79, 41, 40, (341,459,0): 72, 36, 38, (341,460,0): 68, 36, 41, (341,461,0): 66, 35, 41, (341,462,0): 63, 33, 43, (341,463,0): 62, 32, 40, (341,464,0): 61, 32, 34, (341,465,0): 61, 33, 32, (341,466,0): 61, 33, 32, (341,467,0): 61, 33, 32, (341,468,0): 62, 34, 33, (341,469,0): 60, 34, 33, (341,470,0): 60, 34, 33, (341,471,0): 59, 35, 33, (341,472,0): 68, 44, 42, (341,473,0): 66, 42, 40, (341,474,0): 62, 41, 38, (341,475,0): 60, 39, 36, (341,476,0): 58, 37, 34, (341,477,0): 57, 36, 33, (341,478,0): 57, 36, 33, (341,479,0): 57, 38, 34, (341,480,0): 63, 44, 38, (341,481,0): 64, 47, 40, (341,482,0): 64, 49, 42, (341,483,0): 66, 53, 45, (341,484,0): 66, 56, 47, (341,485,0): 68, 58, 49, (341,486,0): 72, 57, 50, (341,487,0): 76, 57, 51, (341,488,0): 75, 51, 47, (341,489,0): 74, 49, 45, (341,490,0): 74, 46, 43, (341,491,0): 73, 43, 41, (341,492,0): 72, 44, 41, (341,493,0): 71, 46, 42, (341,494,0): 73, 48, 44, (341,495,0): 73, 49, 45, (341,496,0): 80, 60, 53, (341,497,0): 80, 61, 54, (341,498,0): 81, 60, 55, (341,499,0): 78, 59, 53, (341,500,0): 76, 57, 51, (341,501,0): 72, 53, 47, (341,502,0): 68, 49, 45, (341,503,0): 65, 47, 43, (341,504,0): 59, 41, 39, (341,505,0): 58, 40, 38, (341,506,0): 55, 40, 37, (341,507,0): 55, 40, 37, (341,508,0): 57, 41, 41, (341,509,0): 62, 46, 46, (341,510,0): 65, 51, 50, (341,511,0): 69, 53, 53, (341,512,0): 71, 51, 53, (341,513,0): 70, 47, 53, (341,514,0): 66, 43, 49, (341,515,0): 63, 40, 46, (341,516,0): 60, 37, 43, (341,517,0): 58, 35, 41, (341,518,0): 56, 33, 39, (341,519,0): 56, 33, 39, (341,520,0): 60, 37, 43, (341,521,0): 62, 39, 45, (341,522,0): 64, 41, 47, (341,523,0): 62, 39, 45, (341,524,0): 59, 36, 42, (341,525,0): 56, 33, 39, (341,526,0): 56, 33, 39, (341,527,0): 57, 35, 38, (341,528,0): 67, 41, 44, (341,529,0): 70, 44, 47, (341,530,0): 73, 48, 51, (341,531,0): 74, 52, 54, (341,532,0): 74, 52, 54, (341,533,0): 73, 53, 54, (341,534,0): 71, 53, 53, (341,535,0): 70, 52, 52, (341,536,0): 67, 49, 49, (341,537,0): 66, 48, 48, (341,538,0): 68, 48, 49, (341,539,0): 70, 50, 51, (341,540,0): 74, 49, 52, (341,541,0): 72, 47, 50, (341,542,0): 68, 42, 45, (341,543,0): 64, 38, 41, (341,544,0): 67, 38, 43, (341,545,0): 67, 38, 43, (341,546,0): 64, 37, 42, (341,547,0): 60, 35, 39, (341,548,0): 56, 34, 37, (341,549,0): 56, 36, 38, (341,550,0): 58, 39, 41, (341,551,0): 61, 42, 44, (341,552,0): 56, 40, 41, (341,553,0): 54, 38, 39, (341,554,0): 53, 34, 36, (341,555,0): 49, 30, 32, (341,556,0): 47, 27, 29, (341,557,0): 45, 25, 27, (341,558,0): 45, 23, 26, (341,559,0): 44, 23, 28, (341,560,0): 40, 23, 31, (341,561,0): 39, 23, 33, (341,562,0): 39, 22, 32, (341,563,0): 40, 23, 33, (341,564,0): 41, 24, 32, (341,565,0): 43, 26, 34, (341,566,0): 47, 28, 34, (341,567,0): 48, 29, 35, (341,568,0): 52, 31, 38, (341,569,0): 53, 32, 39, (341,570,0): 55, 34, 39, (341,571,0): 56, 35, 40, (341,572,0): 59, 37, 40, (341,573,0): 61, 39, 42, (341,574,0): 62, 40, 43, (341,575,0): 62, 42, 44, (341,576,0): 60, 46, 46, (341,577,0): 59, 47, 47, (341,578,0): 61, 49, 49, (341,579,0): 63, 51, 51, (341,580,0): 63, 53, 52, (341,581,0): 63, 53, 52, (341,582,0): 62, 52, 51, (341,583,0): 61, 53, 51, (341,584,0): 65, 57, 55, (341,585,0): 66, 58, 56, (341,586,0): 64, 59, 56, (341,587,0): 65, 60, 57, (341,588,0): 64, 59, 56, (341,589,0): 63, 58, 55, (341,590,0): 60, 56, 53, (341,591,0): 60, 56, 53, (341,592,0): 59, 53, 55, (341,593,0): 60, 54, 56, (341,594,0): 60, 54, 56, (341,595,0): 59, 53, 55, (341,596,0): 57, 51, 53, (341,597,0): 54, 48, 50, (341,598,0): 51, 45, 47, (341,599,0): 48, 42, 44, (342,0,0): 73, 58, 51, (342,1,0): 73, 58, 51, (342,2,0): 73, 58, 51, (342,3,0): 73, 58, 51, (342,4,0): 73, 58, 51, (342,5,0): 73, 58, 51, (342,6,0): 73, 58, 51, (342,7,0): 73, 58, 51, (342,8,0): 75, 60, 53, (342,9,0): 74, 59, 52, (342,10,0): 74, 59, 52, (342,11,0): 72, 57, 50, (342,12,0): 71, 56, 49, (342,13,0): 70, 55, 48, (342,14,0): 69, 54, 47, (342,15,0): 69, 54, 49, (342,16,0): 76, 58, 56, (342,17,0): 76, 58, 56, (342,18,0): 76, 58, 56, (342,19,0): 76, 58, 54, (342,20,0): 76, 58, 54, (342,21,0): 76, 58, 54, (342,22,0): 76, 58, 54, (342,23,0): 76, 59, 52, (342,24,0): 76, 59, 52, (342,25,0): 77, 60, 52, (342,26,0): 78, 61, 53, (342,27,0): 80, 63, 55, (342,28,0): 81, 64, 56, (342,29,0): 80, 63, 53, (342,30,0): 80, 63, 53, (342,31,0): 79, 62, 52, (342,32,0): 82, 65, 55, (342,33,0): 80, 63, 53, (342,34,0): 79, 61, 51, (342,35,0): 77, 59, 49, (342,36,0): 76, 58, 48, (342,37,0): 76, 58, 48, (342,38,0): 77, 57, 48, (342,39,0): 77, 57, 48, (342,40,0): 78, 55, 47, (342,41,0): 79, 56, 48, (342,42,0): 79, 56, 48, (342,43,0): 79, 56, 48, (342,44,0): 81, 56, 49, (342,45,0): 81, 56, 49, (342,46,0): 81, 56, 49, (342,47,0): 81, 56, 51, (342,48,0): 84, 56, 52, (342,49,0): 87, 58, 54, (342,50,0): 88, 59, 55, (342,51,0): 89, 58, 53, (342,52,0): 88, 57, 52, (342,53,0): 91, 58, 49, (342,54,0): 96, 62, 52, (342,55,0): 102, 66, 54, (342,56,0): 102, 64, 51, (342,57,0): 105, 68, 50, (342,58,0): 113, 72, 54, (342,59,0): 119, 78, 58, (342,60,0): 125, 83, 61, (342,61,0): 128, 86, 62, (342,62,0): 133, 88, 65, (342,63,0): 135, 89, 65, (342,64,0): 135, 88, 62, (342,65,0): 137, 90, 62, (342,66,0): 141, 92, 60, (342,67,0): 146, 96, 61, (342,68,0): 153, 101, 61, (342,69,0): 161, 109, 62, (342,70,0): 170, 117, 65, (342,71,0): 175, 123, 65, (342,72,0): 186, 132, 70, (342,73,0): 187, 136, 70, (342,74,0): 190, 140, 69, (342,75,0): 192, 144, 70, (342,76,0): 194, 146, 72, (342,77,0): 192, 146, 69, (342,78,0): 191, 145, 68, (342,79,0): 189, 143, 68, (342,80,0): 187, 139, 67, (342,81,0): 186, 137, 70, (342,82,0): 183, 134, 68, (342,83,0): 181, 131, 68, (342,84,0): 179, 131, 69, (342,85,0): 178, 132, 72, (342,86,0): 178, 133, 74, (342,87,0): 177, 135, 75, (342,88,0): 176, 136, 75, (342,89,0): 176, 141, 75, (342,90,0): 183, 149, 78, (342,91,0): 193, 161, 86, (342,92,0): 203, 174, 94, (342,93,0): 209, 183, 98, (342,94,0): 212, 187, 97, (342,95,0): 208, 187, 98, (342,96,0): 205, 187, 103, (342,97,0): 203, 188, 105, (342,98,0): 203, 188, 105, (342,99,0): 201, 189, 103, (342,100,0): 200, 190, 103, (342,101,0): 198, 191, 101, (342,102,0): 197, 192, 101, (342,103,0): 196, 192, 101, (342,104,0): 192, 191, 99, (342,105,0): 191, 191, 101, (342,106,0): 188, 191, 102, (342,107,0): 187, 191, 104, (342,108,0): 185, 191, 105, (342,109,0): 183, 191, 106, (342,110,0): 182, 190, 107, (342,111,0): 181, 190, 109, (342,112,0): 180, 188, 111, (342,113,0): 179, 187, 112, (342,114,0): 178, 186, 111, (342,115,0): 176, 184, 109, (342,116,0): 175, 183, 108, (342,117,0): 171, 181, 108, (342,118,0): 170, 180, 107, (342,119,0): 169, 179, 108, (342,120,0): 173, 184, 115, (342,121,0): 174, 185, 116, (342,122,0): 175, 186, 118, (342,123,0): 175, 188, 119, (342,124,0): 174, 186, 120, (342,125,0): 173, 185, 119, (342,126,0): 170, 185, 118, (342,127,0): 169, 184, 119, (342,128,0): 170, 184, 122, (342,129,0): 170, 186, 123, (342,130,0): 171, 187, 122, (342,131,0): 173, 190, 122, (342,132,0): 175, 192, 122, (342,133,0): 178, 194, 123, (342,134,0): 179, 195, 124, (342,135,0): 182, 195, 125, (342,136,0): 181, 192, 123, (342,137,0): 184, 191, 124, (342,138,0): 183, 185, 122, (342,139,0): 176, 174, 117, (342,140,0): 161, 156, 101, (342,141,0): 143, 133, 82, (342,142,0): 124, 111, 66, (342,143,0): 111, 99, 57, (342,144,0): 99, 91, 55, (342,145,0): 98, 94, 59, (342,146,0): 101, 96, 64, (342,147,0): 104, 100, 65, (342,148,0): 107, 101, 67, (342,149,0): 107, 103, 68, (342,150,0): 106, 103, 68, (342,151,0): 103, 103, 65, (342,152,0): 111, 113, 74, (342,153,0): 111, 116, 75, (342,154,0): 118, 127, 82, (342,155,0): 133, 147, 98, (342,156,0): 152, 170, 120, (342,157,0): 166, 189, 135, (342,158,0): 174, 197, 141, (342,159,0): 173, 200, 145, (342,160,0): 175, 204, 150, (342,161,0): 176, 205, 151, (342,162,0): 178, 207, 153, (342,163,0): 179, 210, 153, (342,164,0): 181, 212, 155, (342,165,0): 181, 214, 157, (342,166,0): 183, 217, 157, (342,167,0): 184, 218, 158, (342,168,0): 190, 224, 163, (342,169,0): 191, 227, 165, (342,170,0): 193, 229, 165, (342,171,0): 193, 232, 167, (342,172,0): 196, 235, 170, (342,173,0): 199, 238, 171, (342,174,0): 201, 240, 173, (342,175,0): 204, 241, 174, (342,176,0): 207, 237, 173, (342,177,0): 210, 236, 175, (342,178,0): 210, 236, 175, (342,179,0): 210, 236, 175, (342,180,0): 209, 235, 174, (342,181,0): 207, 233, 172, (342,182,0): 205, 231, 170, (342,183,0): 204, 230, 169, (342,184,0): 206, 232, 171, (342,185,0): 208, 234, 173, (342,186,0): 209, 235, 174, (342,187,0): 209, 235, 174, (342,188,0): 208, 234, 173, (342,189,0): 210, 236, 175, (342,190,0): 214, 240, 179, (342,191,0): 217, 243, 182, (342,192,0): 217, 245, 186, (342,193,0): 218, 246, 188, (342,194,0): 220, 248, 190, (342,195,0): 222, 250, 192, (342,196,0): 225, 250, 192, (342,197,0): 224, 249, 191, (342,198,0): 224, 250, 189, (342,199,0): 223, 249, 186, (342,200,0): 229, 254, 189, (342,201,0): 230, 255, 189, (342,202,0): 233, 255, 188, (342,203,0): 234, 255, 187, (342,204,0): 233, 255, 184, (342,205,0): 232, 255, 182, (342,206,0): 231, 253, 180, (342,207,0): 229, 253, 179, (342,208,0): 217, 245, 171, (342,209,0): 210, 242, 169, (342,210,0): 205, 237, 164, (342,211,0): 201, 233, 160, (342,212,0): 199, 230, 160, (342,213,0): 199, 230, 162, (342,214,0): 202, 233, 166, (342,215,0): 203, 234, 167, (342,216,0): 203, 233, 169, (342,217,0): 203, 233, 169, (342,218,0): 203, 233, 173, (342,219,0): 203, 233, 173, (342,220,0): 204, 233, 175, (342,221,0): 204, 233, 175, (342,222,0): 204, 233, 177, (342,223,0): 205, 233, 175, (342,224,0): 205, 230, 173, (342,225,0): 205, 230, 173, (342,226,0): 206, 231, 176, (342,227,0): 207, 232, 177, (342,228,0): 208, 232, 180, (342,229,0): 207, 234, 181, (342,230,0): 207, 235, 184, (342,231,0): 207, 235, 186, (342,232,0): 206, 235, 187, (342,233,0): 205, 234, 188, (342,234,0): 202, 233, 189, (342,235,0): 200, 231, 189, (342,236,0): 199, 230, 189, (342,237,0): 196, 228, 187, (342,238,0): 195, 227, 186, (342,239,0): 195, 227, 190, (342,240,0): 191, 221, 195, (342,241,0): 190, 219, 197, (342,242,0): 190, 218, 196, (342,243,0): 188, 217, 195, (342,244,0): 188, 216, 194, (342,245,0): 186, 215, 193, (342,246,0): 186, 213, 194, (342,247,0): 184, 213, 193, (342,248,0): 181, 208, 191, (342,249,0): 180, 209, 191, (342,250,0): 181, 208, 193, (342,251,0): 180, 208, 193, (342,252,0): 181, 208, 193, (342,253,0): 180, 208, 193, (342,254,0): 181, 208, 193, (342,255,0): 180, 208, 194, (342,256,0): 180, 210, 200, (342,257,0): 180, 211, 203, (342,258,0): 179, 212, 203, (342,259,0): 179, 212, 203, (342,260,0): 179, 212, 205, (342,261,0): 175, 210, 204, (342,262,0): 173, 209, 207, (342,263,0): 172, 208, 208, (342,264,0): 167, 205, 206, (342,265,0): 166, 205, 210, (342,266,0): 164, 205, 211, (342,267,0): 163, 203, 211, (342,268,0): 160, 203, 212, (342,269,0): 159, 202, 211, (342,270,0): 157, 201, 212, (342,271,0): 155, 201, 214, (342,272,0): 156, 204, 218, (342,273,0): 155, 204, 218, (342,274,0): 155, 204, 218, (342,275,0): 155, 204, 218, (342,276,0): 154, 203, 218, (342,277,0): 154, 203, 220, (342,278,0): 154, 202, 222, (342,279,0): 154, 202, 224, (342,280,0): 154, 202, 225, (342,281,0): 154, 201, 227, (342,282,0): 154, 201, 229, (342,283,0): 154, 201, 231, (342,284,0): 154, 201, 231, (342,285,0): 154, 200, 233, (342,286,0): 154, 200, 233, (342,287,0): 154, 200, 233, (342,288,0): 156, 200, 235, (342,289,0): 156, 200, 235, (342,290,0): 157, 200, 235, (342,291,0): 157, 200, 235, (342,292,0): 159, 199, 235, (342,293,0): 159, 199, 235, (342,294,0): 159, 197, 234, (342,295,0): 159, 197, 234, (342,296,0): 164, 198, 235, (342,297,0): 162, 196, 233, (342,298,0): 162, 194, 232, (342,299,0): 164, 196, 234, (342,300,0): 168, 198, 236, (342,301,0): 168, 198, 236, (342,302,0): 166, 194, 233, (342,303,0): 166, 190, 228, (342,304,0): 165, 183, 219, (342,305,0): 164, 178, 213, (342,306,0): 159, 174, 207, (342,307,0): 157, 170, 202, (342,308,0): 156, 167, 197, (342,309,0): 150, 161, 189, (342,310,0): 143, 150, 178, (342,311,0): 137, 143, 167, (342,312,0): 136, 141, 163, (342,313,0): 135, 137, 158, (342,314,0): 132, 133, 153, (342,315,0): 131, 129, 150, (342,316,0): 131, 128, 147, (342,317,0): 132, 129, 148, (342,318,0): 135, 130, 150, (342,319,0): 135, 134, 152, (342,320,0): 138, 144, 166, (342,321,0): 133, 144, 166, (342,322,0): 135, 141, 167, (342,323,0): 139, 140, 168, (342,324,0): 147, 140, 173, (342,325,0): 152, 139, 169, (342,326,0): 155, 135, 163, (342,327,0): 156, 131, 153, (342,328,0): 150, 117, 134, (342,329,0): 134, 96, 109, (342,330,0): 119, 76, 85, (342,331,0): 116, 67, 73, (342,332,0): 113, 60, 66, (342,333,0): 108, 51, 58, (342,334,0): 103, 43, 51, (342,335,0): 97, 42, 48, (342,336,0): 82, 37, 40, (342,337,0): 76, 36, 37, (342,338,0): 73, 34, 37, (342,339,0): 73, 34, 37, (342,340,0): 73, 37, 39, (342,341,0): 73, 37, 39, (342,342,0): 70, 35, 39, (342,343,0): 65, 33, 36, (342,344,0): 64, 33, 38, (342,345,0): 64, 33, 38, (342,346,0): 63, 34, 38, (342,347,0): 61, 35, 38, (342,348,0): 61, 34, 39, (342,349,0): 60, 33, 38, (342,350,0): 59, 34, 38, (342,351,0): 59, 34, 37, (342,352,0): 58, 32, 33, (342,353,0): 63, 35, 34, (342,354,0): 68, 38, 38, (342,355,0): 69, 39, 37, (342,356,0): 72, 38, 37, (342,357,0): 75, 40, 38, (342,358,0): 81, 41, 41, (342,359,0): 88, 44, 43, (342,360,0): 93, 45, 43, (342,361,0): 95, 45, 44, (342,362,0): 99, 45, 43, (342,363,0): 103, 47, 46, (342,364,0): 110, 50, 50, (342,365,0): 116, 55, 54, (342,366,0): 122, 58, 58, (342,367,0): 124, 60, 60, (342,368,0): 118, 56, 57, (342,369,0): 116, 54, 55, (342,370,0): 112, 50, 51, (342,371,0): 106, 46, 46, (342,372,0): 101, 43, 42, (342,373,0): 96, 40, 39, (342,374,0): 93, 39, 39, (342,375,0): 90, 39, 38, (342,376,0): 85, 35, 36, (342,377,0): 82, 36, 36, (342,378,0): 79, 35, 36, (342,379,0): 76, 34, 35, (342,380,0): 75, 35, 35, (342,381,0): 74, 36, 35, (342,382,0): 74, 36, 35, (342,383,0): 75, 37, 36, (342,384,0): 79, 38, 36, (342,385,0): 78, 37, 35, (342,386,0): 77, 36, 34, (342,387,0): 76, 35, 33, (342,388,0): 76, 35, 33, (342,389,0): 77, 36, 34, (342,390,0): 79, 38, 36, (342,391,0): 80, 39, 37, (342,392,0): 82, 41, 39, (342,393,0): 82, 41, 39, (342,394,0): 82, 41, 39, (342,395,0): 82, 41, 39, (342,396,0): 82, 41, 39, (342,397,0): 82, 41, 39, (342,398,0): 82, 41, 39, (342,399,0): 84, 40, 39, (342,400,0): 87, 39, 37, (342,401,0): 88, 40, 38, (342,402,0): 92, 42, 41, (342,403,0): 94, 46, 44, (342,404,0): 97, 47, 46, (342,405,0): 97, 49, 47, (342,406,0): 98, 48, 47, (342,407,0): 97, 49, 47, (342,408,0): 97, 47, 46, (342,409,0): 97, 49, 47, (342,410,0): 100, 50, 49, (342,411,0): 100, 52, 50, (342,412,0): 101, 51, 50, (342,413,0): 100, 52, 50, (342,414,0): 100, 50, 49, (342,415,0): 98, 50, 50, (342,416,0): 98, 53, 56, (342,417,0): 95, 53, 57, (342,418,0): 94, 52, 56, (342,419,0): 94, 52, 54, (342,420,0): 96, 52, 53, (342,421,0): 98, 54, 53, (342,422,0): 101, 55, 55, (342,423,0): 102, 56, 56, (342,424,0): 108, 62, 64, (342,425,0): 111, 66, 69, (342,426,0): 115, 70, 75, (342,427,0): 116, 70, 80, (342,428,0): 112, 69, 79, (342,429,0): 110, 68, 82, (342,430,0): 111, 68, 85, (342,431,0): 113, 71, 85, (342,432,0): 107, 67, 75, (342,433,0): 103, 67, 71, (342,434,0): 99, 63, 65, (342,435,0): 95, 59, 61, (342,436,0): 93, 57, 59, (342,437,0): 91, 55, 57, (342,438,0): 93, 54, 55, (342,439,0): 93, 55, 54, (342,440,0): 93, 55, 54, (342,441,0): 103, 63, 61, (342,442,0): 108, 68, 66, (342,443,0): 106, 67, 62, (342,444,0): 105, 66, 61, (342,445,0): 106, 67, 60, (342,446,0): 102, 63, 58, (342,447,0): 96, 57, 52, (342,448,0): 95, 53, 54, (342,449,0): 91, 47, 48, (342,450,0): 91, 47, 46, (342,451,0): 100, 56, 53, (342,452,0): 105, 61, 58, (342,453,0): 102, 59, 53, (342,454,0): 98, 55, 49, (342,455,0): 97, 54, 48, (342,456,0): 87, 46, 42, (342,457,0): 81, 41, 39, (342,458,0): 73, 38, 36, (342,459,0): 70, 36, 37, (342,460,0): 67, 37, 39, (342,461,0): 64, 37, 42, (342,462,0): 62, 37, 43, (342,463,0): 60, 35, 39, (342,464,0): 63, 34, 36, (342,465,0): 63, 35, 32, (342,466,0): 60, 35, 31, (342,467,0): 60, 35, 31, (342,468,0): 60, 35, 31, (342,469,0): 59, 34, 30, (342,470,0): 59, 33, 32, (342,471,0): 58, 34, 32, (342,472,0): 63, 39, 37, (342,473,0): 60, 39, 36, (342,474,0): 58, 37, 36, (342,475,0): 56, 35, 34, (342,476,0): 55, 35, 34, (342,477,0): 55, 35, 34, (342,478,0): 55, 35, 34, (342,479,0): 56, 37, 33, (342,480,0): 59, 40, 34, (342,481,0): 59, 42, 35, (342,482,0): 58, 45, 37, (342,483,0): 58, 48, 39, (342,484,0): 62, 52, 43, (342,485,0): 65, 55, 46, (342,486,0): 72, 57, 50, (342,487,0): 75, 58, 51, (342,488,0): 72, 51, 46, (342,489,0): 73, 48, 44, (342,490,0): 73, 45, 42, (342,491,0): 73, 43, 41, (342,492,0): 73, 45, 42, (342,493,0): 73, 48, 44, (342,494,0): 76, 51, 47, (342,495,0): 75, 54, 49, (342,496,0): 79, 60, 53, (342,497,0): 77, 60, 52, (342,498,0): 77, 58, 52, (342,499,0): 74, 57, 50, (342,500,0): 72, 55, 48, (342,501,0): 70, 53, 46, (342,502,0): 68, 50, 46, (342,503,0): 67, 49, 45, (342,504,0): 63, 45, 43, (342,505,0): 60, 45, 42, (342,506,0): 60, 45, 42, (342,507,0): 60, 45, 42, (342,508,0): 61, 45, 45, (342,509,0): 62, 46, 46, (342,510,0): 65, 49, 49, (342,511,0): 68, 50, 50, (342,512,0): 68, 48, 50, (342,513,0): 67, 45, 48, (342,514,0): 64, 42, 45, (342,515,0): 61, 39, 42, (342,516,0): 59, 37, 40, (342,517,0): 57, 35, 38, (342,518,0): 57, 35, 38, (342,519,0): 57, 35, 38, (342,520,0): 58, 36, 39, (342,521,0): 61, 39, 42, (342,522,0): 64, 42, 45, (342,523,0): 64, 42, 45, (342,524,0): 61, 39, 42, (342,525,0): 59, 37, 40, (342,526,0): 59, 37, 40, (342,527,0): 60, 38, 41, (342,528,0): 62, 36, 39, (342,529,0): 64, 38, 41, (342,530,0): 67, 42, 45, (342,531,0): 69, 47, 49, (342,532,0): 71, 49, 51, (342,533,0): 70, 50, 51, (342,534,0): 67, 49, 49, (342,535,0): 65, 47, 47, (342,536,0): 63, 45, 45, (342,537,0): 62, 44, 44, (342,538,0): 62, 42, 43, (342,539,0): 63, 43, 44, (342,540,0): 67, 42, 45, (342,541,0): 65, 40, 43, (342,542,0): 62, 36, 39, (342,543,0): 59, 33, 36, (342,544,0): 63, 34, 39, (342,545,0): 63, 34, 39, (342,546,0): 61, 34, 39, (342,547,0): 57, 32, 36, (342,548,0): 52, 30, 33, (342,549,0): 51, 31, 33, (342,550,0): 54, 35, 37, (342,551,0): 56, 40, 41, (342,552,0): 53, 37, 38, (342,553,0): 52, 36, 37, (342,554,0): 49, 33, 34, (342,555,0): 46, 30, 31, (342,556,0): 45, 26, 28, (342,557,0): 44, 25, 27, (342,558,0): 44, 24, 26, (342,559,0): 43, 24, 28, (342,560,0): 40, 23, 31, (342,561,0): 39, 23, 33, (342,562,0): 39, 23, 33, (342,563,0): 39, 23, 33, (342,564,0): 40, 25, 32, (342,565,0): 41, 26, 33, (342,566,0): 44, 27, 33, (342,567,0): 45, 28, 34, (342,568,0): 51, 32, 38, (342,569,0): 51, 32, 38, (342,570,0): 54, 33, 38, (342,571,0): 55, 34, 39, (342,572,0): 57, 37, 39, (342,573,0): 58, 38, 40, (342,574,0): 60, 40, 42, (342,575,0): 59, 40, 42, (342,576,0): 60, 46, 46, (342,577,0): 59, 47, 47, (342,578,0): 60, 50, 49, (342,579,0): 62, 52, 51, (342,580,0): 63, 53, 52, (342,581,0): 64, 54, 53, (342,582,0): 62, 54, 52, (342,583,0): 62, 54, 52, (342,584,0): 66, 58, 56, (342,585,0): 65, 60, 57, (342,586,0): 65, 60, 57, (342,587,0): 66, 61, 58, (342,588,0): 64, 60, 57, (342,589,0): 62, 58, 55, (342,590,0): 61, 57, 54, (342,591,0): 60, 56, 53, (342,592,0): 61, 55, 57, (342,593,0): 60, 54, 56, (342,594,0): 59, 53, 55, (342,595,0): 57, 51, 53, (342,596,0): 55, 49, 51, (342,597,0): 53, 47, 49, (342,598,0): 51, 45, 47, (342,599,0): 50, 44, 46, (343,0,0): 72, 57, 50, (343,1,0): 72, 57, 50, (343,2,0): 73, 58, 51, (343,3,0): 73, 58, 51, (343,4,0): 73, 58, 51, (343,5,0): 73, 58, 51, (343,6,0): 74, 59, 52, (343,7,0): 74, 59, 52, (343,8,0): 76, 61, 54, (343,9,0): 76, 61, 54, (343,10,0): 75, 60, 53, (343,11,0): 73, 58, 51, (343,12,0): 72, 57, 50, (343,13,0): 71, 56, 49, (343,14,0): 70, 55, 48, (343,15,0): 69, 54, 47, (343,16,0): 76, 58, 54, (343,17,0): 76, 58, 56, (343,18,0): 76, 58, 54, (343,19,0): 76, 58, 54, (343,20,0): 76, 58, 54, (343,21,0): 76, 58, 54, (343,22,0): 76, 59, 52, (343,23,0): 76, 59, 52, (343,24,0): 76, 59, 51, (343,25,0): 77, 60, 52, (343,26,0): 79, 62, 54, (343,27,0): 80, 63, 55, (343,28,0): 81, 64, 54, (343,29,0): 81, 64, 54, (343,30,0): 81, 64, 54, (343,31,0): 80, 63, 53, (343,32,0): 83, 66, 56, (343,33,0): 81, 64, 54, (343,34,0): 80, 62, 52, (343,35,0): 78, 60, 50, (343,36,0): 77, 59, 49, (343,37,0): 76, 58, 48, (343,38,0): 77, 57, 48, (343,39,0): 77, 57, 48, (343,40,0): 79, 56, 48, (343,41,0): 79, 56, 48, (343,42,0): 79, 56, 48, (343,43,0): 79, 56, 48, (343,44,0): 80, 55, 48, (343,45,0): 80, 55, 48, (343,46,0): 81, 56, 49, (343,47,0): 81, 56, 51, (343,48,0): 83, 55, 52, (343,49,0): 85, 57, 54, (343,50,0): 88, 58, 56, (343,51,0): 87, 58, 54, (343,52,0): 86, 57, 53, (343,53,0): 88, 57, 52, (343,54,0): 94, 61, 52, (343,55,0): 98, 64, 54, (343,56,0): 95, 61, 49, (343,57,0): 99, 63, 49, (343,58,0): 105, 68, 50, (343,59,0): 110, 73, 54, (343,60,0): 116, 78, 59, (343,61,0): 121, 83, 62, (343,62,0): 126, 85, 65, (343,63,0): 129, 87, 65, (343,64,0): 130, 85, 62, (343,65,0): 134, 88, 64, (343,66,0): 138, 91, 65, (343,67,0): 142, 93, 63, (343,68,0): 146, 96, 61, (343,69,0): 154, 102, 62, (343,70,0): 164, 112, 65, (343,71,0): 171, 120, 67, (343,72,0): 176, 125, 68, (343,73,0): 179, 129, 68, (343,74,0): 184, 135, 69, (343,75,0): 187, 140, 72, (343,76,0): 189, 142, 72, (343,77,0): 188, 144, 71, (343,78,0): 187, 143, 70, (343,79,0): 186, 142, 69, (343,80,0): 189, 142, 72, (343,81,0): 189, 140, 71, (343,82,0): 186, 137, 71, (343,83,0): 182, 134, 72, (343,84,0): 177, 131, 71, (343,85,0): 175, 130, 73, (343,86,0): 172, 129, 74, (343,87,0): 171, 130, 76, (343,88,0): 172, 133, 76, (343,89,0): 171, 135, 75, (343,90,0): 174, 140, 77, (343,91,0): 182, 151, 84, (343,92,0): 195, 167, 93, (343,93,0): 205, 180, 100, (343,94,0): 211, 186, 104, (343,95,0): 210, 189, 106, (343,96,0): 203, 186, 106, (343,97,0): 200, 188, 106, (343,98,0): 200, 188, 106, (343,99,0): 199, 189, 104, (343,100,0): 197, 189, 104, (343,101,0): 196, 190, 102, (343,102,0): 195, 191, 102, (343,103,0): 193, 192, 102, (343,104,0): 191, 191, 101, (343,105,0): 188, 191, 102, (343,106,0): 187, 191, 104, (343,107,0): 185, 191, 105, (343,108,0): 183, 191, 106, (343,109,0): 182, 190, 107, (343,110,0): 181, 190, 109, (343,111,0): 181, 190, 111, (343,112,0): 180, 188, 113, (343,113,0): 179, 187, 114, (343,114,0): 178, 186, 113, (343,115,0): 176, 183, 113, (343,116,0): 172, 182, 111, (343,117,0): 170, 180, 109, (343,118,0): 169, 179, 108, (343,119,0): 167, 178, 109, (343,120,0): 171, 182, 113, (343,121,0): 172, 183, 115, (343,122,0): 173, 186, 117, (343,123,0): 174, 187, 118, (343,124,0): 175, 187, 121, (343,125,0): 175, 187, 121, (343,126,0): 173, 188, 121, (343,127,0): 172, 187, 122, (343,128,0): 170, 186, 123, (343,129,0): 171, 187, 124, (343,130,0): 172, 188, 123, (343,131,0): 172, 191, 125, (343,132,0): 176, 193, 125, (343,133,0): 178, 195, 125, (343,134,0): 179, 196, 126, (343,135,0): 181, 196, 127, (343,136,0): 181, 194, 125, (343,137,0): 182, 193, 127, (343,138,0): 182, 188, 126, (343,139,0): 177, 178, 120, (343,140,0): 163, 160, 105, (343,141,0): 145, 139, 87, (343,142,0): 127, 119, 72, (343,143,0): 115, 106, 63, (343,144,0): 100, 94, 58, (343,145,0): 100, 97, 64, (343,146,0): 103, 98, 66, (343,147,0): 104, 101, 68, (343,148,0): 105, 102, 67, (343,149,0): 104, 101, 66, (343,150,0): 100, 100, 64, (343,151,0): 97, 99, 62, (343,152,0): 106, 111, 71, (343,153,0): 106, 114, 73, (343,154,0): 112, 125, 81, (343,155,0): 129, 147, 99, (343,156,0): 149, 171, 122, (343,157,0): 164, 191, 140, (343,158,0): 171, 200, 146, (343,159,0): 172, 202, 150, (343,160,0): 172, 202, 152, (343,161,0): 171, 203, 154, (343,162,0): 173, 205, 155, (343,163,0): 175, 207, 157, (343,164,0): 177, 211, 160, (343,165,0): 179, 214, 160, (343,166,0): 181, 216, 162, (343,167,0): 180, 218, 161, (343,168,0): 184, 222, 165, (343,169,0): 185, 223, 164, (343,170,0): 187, 227, 165, (343,171,0): 190, 230, 168, (343,172,0): 194, 234, 171, (343,173,0): 196, 238, 174, (343,174,0): 199, 241, 175, (343,175,0): 202, 241, 176, (343,176,0): 208, 240, 177, (343,177,0): 210, 240, 178, (343,178,0): 210, 240, 180, (343,179,0): 210, 240, 178, (343,180,0): 209, 239, 179, (343,181,0): 207, 237, 175, (343,182,0): 205, 235, 175, (343,183,0): 204, 234, 172, (343,184,0): 205, 235, 175, (343,185,0): 207, 237, 175, (343,186,0): 209, 239, 179, (343,187,0): 208, 238, 176, (343,188,0): 208, 238, 178, (343,189,0): 209, 239, 177, (343,190,0): 213, 243, 183, (343,191,0): 217, 246, 188, (343,192,0): 219, 246, 193, (343,193,0): 219, 246, 195, (343,194,0): 220, 247, 196, (343,195,0): 220, 247, 194, (343,196,0): 223, 247, 195, (343,197,0): 223, 248, 193, (343,198,0): 223, 248, 191, (343,199,0): 222, 248, 187, (343,200,0): 225, 249, 189, (343,201,0): 226, 250, 188, (343,202,0): 228, 250, 186, (343,203,0): 228, 250, 185, (343,204,0): 227, 250, 182, (343,205,0): 224, 247, 177, (343,206,0): 222, 243, 174, (343,207,0): 218, 244, 173, (343,208,0): 212, 243, 175, (343,209,0): 205, 240, 172, (343,210,0): 200, 235, 167, (343,211,0): 196, 231, 163, (343,212,0): 194, 229, 163, (343,213,0): 196, 231, 167, (343,214,0): 198, 233, 169, (343,215,0): 200, 234, 173, (343,216,0): 199, 233, 172, (343,217,0): 199, 233, 173, (343,218,0): 199, 232, 175, (343,219,0): 199, 232, 177, (343,220,0): 198, 231, 176, (343,221,0): 198, 231, 178, (343,222,0): 198, 231, 178, (343,223,0): 198, 231, 178, (343,224,0): 195, 225, 173, (343,225,0): 196, 224, 173, (343,226,0): 198, 226, 177, (343,227,0): 199, 227, 178, (343,228,0): 200, 229, 181, (343,229,0): 201, 230, 182, (343,230,0): 201, 233, 186, (343,231,0): 201, 232, 188, (343,232,0): 201, 234, 191, (343,233,0): 200, 232, 191, (343,234,0): 199, 231, 190, (343,235,0): 195, 230, 190, (343,236,0): 192, 226, 189, (343,237,0): 190, 224, 187, (343,238,0): 189, 223, 186, (343,239,0): 188, 222, 189, (343,240,0): 187, 219, 196, (343,241,0): 187, 218, 200, (343,242,0): 186, 217, 199, (343,243,0): 184, 215, 197, (343,244,0): 183, 214, 196, (343,245,0): 182, 213, 195, (343,246,0): 181, 212, 196, (343,247,0): 180, 211, 195, (343,248,0): 175, 206, 191, (343,249,0): 175, 206, 191, (343,250,0): 175, 205, 193, (343,251,0): 176, 206, 194, (343,252,0): 177, 207, 195, (343,253,0): 177, 207, 195, (343,254,0): 177, 207, 195, (343,255,0): 178, 208, 198, (343,256,0): 180, 211, 203, (343,257,0): 180, 213, 206, (343,258,0): 180, 213, 206, (343,259,0): 178, 213, 206, (343,260,0): 177, 212, 206, (343,261,0): 174, 210, 206, (343,262,0): 172, 208, 208, (343,263,0): 169, 207, 208, (343,264,0): 166, 206, 208, (343,265,0): 165, 206, 210, (343,266,0): 164, 205, 211, (343,267,0): 161, 204, 211, (343,268,0): 160, 203, 212, (343,269,0): 158, 202, 211, (343,270,0): 157, 201, 212, (343,271,0): 154, 200, 213, (343,272,0): 156, 204, 218, (343,273,0): 155, 204, 218, (343,274,0): 154, 203, 217, (343,275,0): 154, 203, 217, (343,276,0): 154, 203, 218, (343,277,0): 153, 202, 219, (343,278,0): 153, 201, 221, (343,279,0): 153, 201, 221, (343,280,0): 154, 202, 225, (343,281,0): 154, 202, 225, (343,282,0): 154, 201, 227, (343,283,0): 154, 201, 229, (343,284,0): 154, 201, 231, (343,285,0): 154, 201, 231, (343,286,0): 154, 201, 231, (343,287,0): 154, 201, 231, (343,288,0): 156, 201, 234, (343,289,0): 156, 200, 235, (343,290,0): 157, 200, 235, (343,291,0): 156, 199, 234, (343,292,0): 158, 198, 234, (343,293,0): 157, 197, 233, (343,294,0): 158, 196, 233, (343,295,0): 158, 196, 233, (343,296,0): 163, 197, 234, (343,297,0): 162, 196, 233, (343,298,0): 162, 194, 232, (343,299,0): 164, 196, 234, (343,300,0): 168, 198, 236, (343,301,0): 168, 198, 236, (343,302,0): 167, 195, 234, (343,303,0): 166, 191, 231, (343,304,0): 165, 185, 222, (343,305,0): 164, 180, 216, (343,306,0): 160, 176, 210, (343,307,0): 160, 175, 208, (343,308,0): 160, 173, 207, (343,309,0): 156, 167, 197, (343,310,0): 145, 154, 183, (343,311,0): 137, 142, 171, (343,312,0): 140, 144, 169, (343,313,0): 138, 138, 162, (343,314,0): 133, 131, 153, (343,315,0): 128, 125, 146, (343,316,0): 127, 122, 142, (343,317,0): 131, 124, 142, (343,318,0): 136, 129, 147, (343,319,0): 137, 133, 150, (343,320,0): 139, 142, 161, (343,321,0): 134, 140, 162, (343,322,0): 136, 138, 163, (343,323,0): 140, 137, 164, (343,324,0): 148, 137, 167, (343,325,0): 152, 136, 165, (343,326,0): 155, 132, 158, (343,327,0): 158, 129, 151, (343,328,0): 154, 120, 136, (343,329,0): 137, 97, 108, (343,330,0): 116, 73, 82, (343,331,0): 108, 61, 67, (343,332,0): 105, 54, 61, (343,333,0): 99, 46, 54, (343,334,0): 95, 39, 48, (343,335,0): 90, 39, 46, (343,336,0): 73, 31, 35, (343,337,0): 68, 32, 32, (343,338,0): 68, 32, 34, (343,339,0): 69, 35, 36, (343,340,0): 71, 37, 38, (343,341,0): 69, 37, 38, (343,342,0): 66, 34, 37, (343,343,0): 62, 32, 34, (343,344,0): 62, 33, 37, (343,345,0): 60, 34, 37, (343,346,0): 60, 34, 37, (343,347,0): 59, 34, 37, (343,348,0): 58, 33, 37, (343,349,0): 56, 34, 37, (343,350,0): 56, 34, 37, (343,351,0): 56, 34, 36, (343,352,0): 57, 33, 33, (343,353,0): 61, 35, 34, (343,354,0): 64, 38, 37, (343,355,0): 68, 40, 39, (343,356,0): 70, 39, 37, (343,357,0): 74, 38, 38, (343,358,0): 80, 40, 40, (343,359,0): 86, 42, 41, (343,360,0): 90, 42, 42, (343,361,0): 93, 42, 41, (343,362,0): 97, 43, 41, (343,363,0): 103, 45, 43, (343,364,0): 109, 48, 47, (343,365,0): 116, 52, 52, (343,366,0): 121, 55, 56, (343,367,0): 122, 58, 58, (343,368,0): 115, 55, 55, (343,369,0): 110, 52, 51, (343,370,0): 105, 47, 46, (343,371,0): 100, 42, 41, (343,372,0): 95, 39, 38, (343,373,0): 92, 38, 36, (343,374,0): 90, 39, 38, (343,375,0): 89, 39, 38, (343,376,0): 84, 36, 36, (343,377,0): 83, 35, 35, (343,378,0): 80, 34, 36, (343,379,0): 78, 34, 35, (343,380,0): 76, 34, 35, (343,381,0): 74, 34, 34, (343,382,0): 74, 34, 34, (343,383,0): 74, 34, 34, (343,384,0): 79, 38, 36, (343,385,0): 78, 37, 35, (343,386,0): 76, 35, 33, (343,387,0): 76, 35, 33, (343,388,0): 76, 35, 33, (343,389,0): 77, 36, 34, (343,390,0): 79, 38, 36, (343,391,0): 81, 40, 38, (343,392,0): 81, 40, 38, (343,393,0): 82, 41, 39, (343,394,0): 82, 41, 39, (343,395,0): 83, 42, 40, (343,396,0): 83, 42, 40, (343,397,0): 82, 41, 39, (343,398,0): 82, 41, 39, (343,399,0): 83, 39, 38, (343,400,0): 86, 40, 40, (343,401,0): 87, 42, 39, (343,402,0): 91, 43, 43, (343,403,0): 92, 47, 44, (343,404,0): 95, 47, 47, (343,405,0): 94, 49, 46, (343,406,0): 96, 48, 48, (343,407,0): 94, 49, 46, (343,408,0): 93, 45, 45, (343,409,0): 92, 47, 44, (343,410,0): 96, 48, 48, (343,411,0): 95, 50, 47, (343,412,0): 97, 49, 49, (343,413,0): 94, 49, 46, (343,414,0): 95, 47, 47, (343,415,0): 92, 48, 49, (343,416,0): 94, 53, 57, (343,417,0): 92, 53, 58, (343,418,0): 92, 53, 58, (343,419,0): 92, 53, 56, (343,420,0): 93, 53, 54, (343,421,0): 94, 54, 54, (343,422,0): 95, 53, 54, (343,423,0): 95, 54, 52, (343,424,0): 100, 58, 59, (343,425,0): 103, 61, 62, (343,426,0): 107, 65, 67, (343,427,0): 108, 66, 70, (343,428,0): 107, 64, 73, (343,429,0): 107, 64, 74, (343,430,0): 110, 66, 79, (343,431,0): 113, 70, 80, (343,432,0): 103, 62, 68, (343,433,0): 100, 61, 64, (343,434,0): 99, 59, 60, (343,435,0): 95, 56, 57, (343,436,0): 94, 54, 55, (343,437,0): 91, 52, 53, (343,438,0): 90, 50, 50, (343,439,0): 89, 49, 49, (343,440,0): 90, 50, 48, (343,441,0): 98, 58, 56, (343,442,0): 103, 63, 61, (343,443,0): 102, 63, 58, (343,444,0): 102, 63, 58, (343,445,0): 103, 64, 57, (343,446,0): 98, 59, 54, (343,447,0): 90, 51, 46, (343,448,0): 92, 50, 51, (343,449,0): 88, 44, 45, (343,450,0): 89, 45, 44, (343,451,0): 98, 54, 51, (343,452,0): 103, 59, 56, (343,453,0): 100, 56, 53, (343,454,0): 98, 54, 51, (343,455,0): 98, 57, 53, (343,456,0): 85, 46, 41, (343,457,0): 81, 43, 40, (343,458,0): 74, 40, 38, (343,459,0): 71, 40, 38, (343,460,0): 70, 42, 41, (343,461,0): 68, 44, 44, (343,462,0): 64, 42, 44, (343,463,0): 62, 40, 42, (343,464,0): 66, 40, 39, (343,465,0): 67, 39, 36, (343,466,0): 65, 40, 36, (343,467,0): 64, 39, 35, (343,468,0): 63, 38, 34, (343,469,0): 62, 38, 34, (343,470,0): 61, 37, 35, (343,471,0): 61, 37, 35, (343,472,0): 55, 34, 31, (343,473,0): 55, 34, 31, (343,474,0): 54, 33, 32, (343,475,0): 52, 32, 31, (343,476,0): 53, 33, 32, (343,477,0): 54, 34, 33, (343,478,0): 55, 35, 34, (343,479,0): 56, 36, 35, (343,480,0): 56, 38, 34, (343,481,0): 54, 39, 32, (343,482,0): 54, 41, 33, (343,483,0): 55, 45, 36, (343,484,0): 58, 49, 40, (343,485,0): 64, 54, 45, (343,486,0): 70, 57, 49, (343,487,0): 76, 59, 52, (343,488,0): 71, 50, 45, (343,489,0): 72, 48, 44, (343,490,0): 73, 45, 42, (343,491,0): 72, 44, 41, (343,492,0): 73, 45, 42, (343,493,0): 74, 49, 45, (343,494,0): 77, 53, 49, (343,495,0): 77, 56, 51, (343,496,0): 76, 59, 51, (343,497,0): 73, 59, 50, (343,498,0): 73, 56, 49, (343,499,0): 70, 55, 48, (343,500,0): 71, 54, 47, (343,501,0): 70, 53, 46, (343,502,0): 70, 52, 48, (343,503,0): 70, 52, 48, (343,504,0): 65, 50, 47, (343,505,0): 64, 49, 46, (343,506,0): 64, 49, 46, (343,507,0): 64, 49, 46, (343,508,0): 64, 48, 48, (343,509,0): 64, 48, 48, (343,510,0): 64, 48, 48, (343,511,0): 67, 49, 49, (343,512,0): 66, 46, 47, (343,513,0): 65, 43, 45, (343,514,0): 63, 41, 44, (343,515,0): 60, 38, 40, (343,516,0): 58, 36, 39, (343,517,0): 57, 35, 37, (343,518,0): 57, 35, 38, (343,519,0): 57, 35, 37, (343,520,0): 55, 33, 36, (343,521,0): 59, 37, 39, (343,522,0): 63, 41, 44, (343,523,0): 65, 43, 45, (343,524,0): 63, 41, 44, (343,525,0): 62, 40, 42, (343,526,0): 63, 41, 44, (343,527,0): 64, 42, 44, (343,528,0): 57, 31, 34, (343,529,0): 59, 33, 36, (343,530,0): 62, 37, 40, (343,531,0): 64, 42, 44, (343,532,0): 67, 45, 47, (343,533,0): 67, 47, 48, (343,534,0): 64, 46, 46, (343,535,0): 62, 44, 44, (343,536,0): 66, 48, 48, (343,537,0): 63, 45, 45, (343,538,0): 61, 41, 42, (343,539,0): 60, 40, 41, (343,540,0): 64, 39, 42, (343,541,0): 64, 39, 42, (343,542,0): 62, 36, 39, (343,543,0): 59, 33, 36, (343,544,0): 60, 31, 36, (343,545,0): 59, 32, 37, (343,546,0): 59, 32, 37, (343,547,0): 55, 30, 34, (343,548,0): 50, 28, 31, (343,549,0): 48, 29, 31, (343,550,0): 52, 33, 35, (343,551,0): 54, 38, 39, (343,552,0): 51, 35, 36, (343,553,0): 50, 34, 35, (343,554,0): 47, 31, 32, (343,555,0): 44, 28, 29, (343,556,0): 45, 26, 28, (343,557,0): 43, 24, 26, (343,558,0): 44, 24, 26, (343,559,0): 43, 24, 28, (343,560,0): 41, 24, 32, (343,561,0): 40, 24, 34, (343,562,0): 39, 23, 33, (343,563,0): 39, 23, 33, (343,564,0): 40, 25, 32, (343,565,0): 41, 26, 33, (343,566,0): 44, 27, 33, (343,567,0): 45, 28, 34, (343,568,0): 51, 32, 38, (343,569,0): 51, 32, 38, (343,570,0): 53, 32, 37, (343,571,0): 55, 34, 39, (343,572,0): 56, 36, 38, (343,573,0): 57, 37, 39, (343,574,0): 58, 38, 40, (343,575,0): 58, 39, 41, (343,576,0): 60, 46, 46, (343,577,0): 58, 48, 47, (343,578,0): 60, 50, 49, (343,579,0): 62, 52, 51, (343,580,0): 63, 53, 52, (343,581,0): 63, 55, 53, (343,582,0): 63, 55, 53, (343,583,0): 61, 56, 53, (343,584,0): 65, 60, 57, (343,585,0): 66, 61, 58, (343,586,0): 66, 61, 58, (343,587,0): 65, 61, 58, (343,588,0): 64, 60, 57, (343,589,0): 63, 59, 56, (343,590,0): 61, 57, 54, (343,591,0): 60, 56, 53, (343,592,0): 62, 56, 58, (343,593,0): 61, 55, 57, (343,594,0): 58, 52, 54, (343,595,0): 56, 50, 52, (343,596,0): 54, 48, 50, (343,597,0): 52, 46, 48, (343,598,0): 51, 45, 47, (343,599,0): 51, 45, 47, (344,0,0): 76, 59, 51, (344,1,0): 76, 59, 51, (344,2,0): 76, 59, 51, (344,3,0): 77, 60, 52, (344,4,0): 77, 60, 52, (344,5,0): 77, 60, 52, (344,6,0): 77, 60, 52, (344,7,0): 77, 60, 52, (344,8,0): 79, 62, 54, (344,9,0): 79, 62, 54, (344,10,0): 79, 62, 54, (344,11,0): 79, 62, 54, (344,12,0): 78, 61, 53, (344,13,0): 75, 58, 50, (344,14,0): 73, 56, 48, (344,15,0): 72, 55, 48, (344,16,0): 74, 55, 51, (344,17,0): 75, 56, 52, (344,18,0): 76, 57, 53, (344,19,0): 77, 58, 54, (344,20,0): 78, 59, 53, (344,21,0): 80, 61, 55, (344,22,0): 81, 62, 56, (344,23,0): 81, 62, 56, (344,24,0): 80, 61, 54, (344,25,0): 81, 62, 55, (344,26,0): 82, 64, 54, (344,27,0): 83, 65, 55, (344,28,0): 84, 66, 56, (344,29,0): 86, 68, 58, (344,30,0): 87, 69, 57, (344,31,0): 87, 69, 57, (344,32,0): 82, 65, 55, (344,33,0): 82, 65, 55, (344,34,0): 82, 64, 54, (344,35,0): 80, 62, 52, (344,36,0): 78, 60, 50, (344,37,0): 77, 59, 49, (344,38,0): 77, 57, 48, (344,39,0): 76, 56, 47, (344,40,0): 83, 60, 52, (344,41,0): 82, 59, 51, (344,42,0): 81, 58, 50, (344,43,0): 80, 57, 49, (344,44,0): 81, 56, 49, (344,45,0): 81, 56, 49, (344,46,0): 81, 56, 49, (344,47,0): 81, 56, 51, (344,48,0): 79, 54, 50, (344,49,0): 80, 54, 53, (344,50,0): 82, 54, 53, (344,51,0): 83, 55, 52, (344,52,0): 84, 56, 52, (344,53,0): 86, 57, 51, (344,54,0): 87, 57, 49, (344,55,0): 90, 57, 48, (344,56,0): 96, 64, 53, (344,57,0): 98, 64, 52, (344,58,0): 99, 66, 51, (344,59,0): 105, 69, 53, (344,60,0): 110, 73, 57, (344,61,0): 114, 77, 59, (344,62,0): 118, 81, 63, (344,63,0): 122, 84, 65, (344,64,0): 127, 86, 66, (344,65,0): 130, 88, 66, (344,66,0): 134, 89, 66, (344,67,0): 138, 92, 66, (344,68,0): 142, 95, 65, (344,69,0): 147, 99, 63, (344,70,0): 151, 102, 61, (344,71,0): 154, 103, 56, (344,72,0): 167, 117, 66, (344,73,0): 172, 123, 67, (344,74,0): 178, 129, 70, (344,75,0): 182, 134, 70, (344,76,0): 184, 136, 70, (344,77,0): 183, 138, 71, (344,78,0): 186, 141, 73, (344,79,0): 189, 144, 76, (344,80,0): 192, 145, 75, (344,81,0): 190, 141, 72, (344,82,0): 187, 139, 73, (344,83,0): 188, 140, 76, (344,84,0): 187, 141, 82, (344,85,0): 184, 139, 84, (344,86,0): 177, 134, 81, (344,87,0): 171, 130, 78, (344,88,0): 168, 128, 77, (344,89,0): 163, 126, 73, (344,90,0): 161, 126, 70, (344,91,0): 164, 132, 71, (344,92,0): 175, 146, 80, (344,93,0): 187, 160, 89, (344,94,0): 195, 169, 95, (344,95,0): 197, 175, 100, (344,96,0): 197, 179, 103, (344,97,0): 199, 186, 107, (344,98,0): 203, 190, 111, (344,99,0): 202, 191, 109, (344,100,0): 197, 189, 106, (344,101,0): 193, 187, 101, (344,102,0): 192, 188, 101, (344,103,0): 191, 189, 102, (344,104,0): 186, 186, 98, (344,105,0): 185, 188, 101, (344,106,0): 185, 189, 104, (344,107,0): 185, 190, 106, (344,108,0): 183, 191, 108, (344,109,0): 181, 190, 109, (344,110,0): 179, 188, 109, (344,111,0): 178, 186, 109, (344,112,0): 178, 186, 113, (344,113,0): 178, 185, 115, (344,114,0): 175, 185, 114, (344,115,0): 174, 184, 115, (344,116,0): 173, 183, 114, (344,117,0): 173, 183, 114, (344,118,0): 171, 182, 113, (344,119,0): 171, 182, 114, (344,120,0): 169, 180, 112, (344,121,0): 169, 181, 115, (344,122,0): 170, 182, 116, (344,123,0): 171, 183, 117, (344,124,0): 171, 186, 119, (344,125,0): 173, 188, 121, (344,126,0): 174, 189, 124, (344,127,0): 174, 189, 124, (344,128,0): 176, 192, 129, (344,129,0): 175, 194, 130, (344,130,0): 175, 194, 128, (344,131,0): 175, 196, 129, (344,132,0): 176, 196, 127, (344,133,0): 177, 197, 128, (344,134,0): 177, 197, 128, (344,135,0): 180, 197, 129, (344,136,0): 179, 194, 127, (344,137,0): 178, 190, 126, (344,138,0): 177, 185, 125, (344,139,0): 175, 180, 122, (344,140,0): 170, 170, 116, (344,141,0): 154, 153, 99, (344,142,0): 134, 130, 82, (344,143,0): 118, 114, 69, (344,144,0): 108, 106, 68, (344,145,0): 101, 101, 67, (344,146,0): 102, 99, 66, (344,147,0): 103, 103, 69, (344,148,0): 102, 102, 66, (344,149,0): 95, 97, 60, (344,150,0): 93, 95, 56, (344,151,0): 95, 100, 60, (344,152,0): 98, 106, 65, (344,153,0): 100, 113, 70, (344,154,0): 110, 127, 82, (344,155,0): 129, 151, 104, (344,156,0): 150, 176, 128, (344,157,0): 164, 194, 144, (344,158,0): 166, 198, 148, (344,159,0): 163, 197, 147, (344,160,0): 164, 197, 150, (344,161,0): 165, 198, 153, (344,162,0): 165, 201, 155, (344,163,0): 168, 204, 156, (344,164,0): 171, 207, 159, (344,165,0): 173, 211, 160, (344,166,0): 175, 213, 162, (344,167,0): 176, 215, 162, (344,168,0): 179, 219, 166, (344,169,0): 180, 221, 165, (344,170,0): 182, 223, 165, (344,171,0): 182, 226, 167, (344,172,0): 184, 228, 167, (344,173,0): 186, 230, 169, (344,174,0): 188, 232, 171, (344,175,0): 191, 233, 170, (344,176,0): 197, 233, 172, (344,177,0): 200, 234, 173, (344,178,0): 203, 237, 177, (344,179,0): 206, 240, 179, (344,180,0): 208, 242, 182, (344,181,0): 208, 242, 181, (344,182,0): 208, 242, 182, (344,183,0): 207, 241, 180, (344,184,0): 206, 240, 180, (344,185,0): 207, 241, 180, (344,186,0): 207, 241, 181, (344,187,0): 208, 242, 181, (344,188,0): 209, 243, 183, (344,189,0): 210, 244, 183, (344,190,0): 210, 244, 184, (344,191,0): 213, 244, 187, (344,192,0): 218, 246, 195, (344,193,0): 217, 245, 196, (344,194,0): 216, 244, 195, (344,195,0): 215, 243, 192, (344,196,0): 217, 244, 191, (344,197,0): 219, 246, 191, (344,198,0): 223, 248, 191, (344,199,0): 225, 251, 190, (344,200,0): 223, 249, 188, (344,201,0): 223, 249, 186, (344,202,0): 225, 250, 185, (344,203,0): 224, 249, 183, (344,204,0): 226, 248, 183, (344,205,0): 224, 247, 179, (344,206,0): 223, 246, 178, (344,207,0): 219, 246, 179, (344,208,0): 202, 237, 171, (344,209,0): 200, 240, 177, (344,210,0): 199, 239, 176, (344,211,0): 196, 236, 174, (344,212,0): 192, 232, 170, (344,213,0): 191, 231, 171, (344,214,0): 194, 234, 174, (344,215,0): 197, 236, 179, (344,216,0): 192, 231, 176, (344,217,0): 193, 232, 179, (344,218,0): 193, 232, 179, (344,219,0): 192, 230, 179, (344,220,0): 191, 229, 178, (344,221,0): 189, 227, 178, (344,222,0): 186, 224, 175, (344,223,0): 186, 222, 176, (344,224,0): 193, 226, 181, (344,225,0): 193, 226, 181, (344,226,0): 193, 226, 181, (344,227,0): 193, 226, 181, (344,228,0): 193, 226, 183, (344,229,0): 193, 225, 184, (344,230,0): 191, 226, 184, (344,231,0): 191, 226, 186, (344,232,0): 193, 227, 190, (344,233,0): 191, 227, 191, (344,234,0): 190, 226, 190, (344,235,0): 188, 223, 190, (344,236,0): 186, 221, 188, (344,237,0): 185, 220, 188, (344,238,0): 184, 219, 187, (344,239,0): 183, 217, 190, (344,240,0): 181, 214, 193, (344,241,0): 181, 214, 197, (344,242,0): 181, 213, 198, (344,243,0): 181, 213, 198, (344,244,0): 179, 211, 196, (344,245,0): 177, 209, 194, (344,246,0): 175, 207, 194, (344,247,0): 174, 206, 193, (344,248,0): 175, 207, 196, (344,249,0): 175, 207, 196, (344,250,0): 175, 207, 196, (344,251,0): 175, 207, 196, (344,252,0): 174, 205, 197, (344,253,0): 174, 205, 197, (344,254,0): 174, 205, 197, (344,255,0): 174, 205, 197, (344,256,0): 178, 211, 204, (344,257,0): 178, 210, 205, (344,258,0): 177, 209, 204, (344,259,0): 175, 210, 206, (344,260,0): 174, 208, 207, (344,261,0): 173, 209, 209, (344,262,0): 172, 208, 208, (344,263,0): 170, 208, 209, (344,264,0): 166, 206, 208, (344,265,0): 165, 206, 210, (344,266,0): 164, 205, 211, (344,267,0): 162, 205, 212, (344,268,0): 161, 204, 213, (344,269,0): 160, 204, 215, (344,270,0): 159, 203, 214, (344,271,0): 157, 203, 216, (344,272,0): 158, 206, 220, (344,273,0): 157, 206, 221, (344,274,0): 157, 206, 221, (344,275,0): 157, 206, 221, (344,276,0): 156, 205, 222, (344,277,0): 154, 203, 220, (344,278,0): 152, 200, 220, (344,279,0): 151, 199, 219, (344,280,0): 153, 201, 224, (344,281,0): 152, 200, 223, (344,282,0): 151, 198, 224, (344,283,0): 149, 196, 222, (344,284,0): 149, 196, 224, (344,285,0): 149, 196, 224, (344,286,0): 150, 197, 225, (344,287,0): 150, 197, 227, (344,288,0): 151, 196, 229, (344,289,0): 152, 197, 230, (344,290,0): 155, 198, 232, (344,291,0): 156, 199, 233, (344,292,0): 158, 198, 233, (344,293,0): 157, 197, 232, (344,294,0): 156, 194, 230, (344,295,0): 155, 193, 229, (344,296,0): 160, 194, 232, (344,297,0): 160, 194, 232, (344,298,0): 162, 194, 233, (344,299,0): 162, 194, 233, (344,300,0): 165, 194, 234, (344,301,0): 165, 194, 234, (344,302,0): 167, 195, 235, (344,303,0): 169, 194, 234, (344,304,0): 165, 187, 228, (344,305,0): 166, 184, 224, (344,306,0): 163, 181, 219, (344,307,0): 163, 179, 215, (344,308,0): 161, 173, 211, (344,309,0): 156, 166, 201, (344,310,0): 148, 157, 190, (344,311,0): 145, 150, 180, (344,312,0): 140, 144, 171, (344,313,0): 140, 140, 166, (344,314,0): 136, 132, 155, (344,315,0): 131, 126, 148, (344,316,0): 129, 121, 142, (344,317,0): 129, 120, 139, (344,318,0): 131, 120, 137, (344,319,0): 130, 121, 138, (344,320,0): 131, 128, 147, (344,321,0): 133, 131, 152, (344,322,0): 137, 132, 155, (344,323,0): 142, 132, 159, (344,324,0): 145, 131, 157, (344,325,0): 147, 127, 154, (344,326,0): 149, 123, 148, (344,327,0): 153, 121, 142, (344,328,0): 152, 116, 130, (344,329,0): 136, 96, 105, (344,330,0): 113, 70, 77, (344,331,0): 98, 53, 58, (344,332,0): 93, 46, 52, (344,333,0): 91, 44, 52, (344,334,0): 87, 37, 48, (344,335,0): 79, 33, 43, (344,336,0): 71, 32, 35, (344,337,0): 67, 33, 34, (344,338,0): 67, 32, 36, (344,339,0): 64, 32, 35, (344,340,0): 62, 30, 33, (344,341,0): 60, 30, 32, (344,342,0): 60, 29, 34, (344,343,0): 58, 29, 33, (344,344,0): 55, 28, 33, (344,345,0): 55, 30, 34, (344,346,0): 55, 30, 34, (344,347,0): 54, 32, 35, (344,348,0): 55, 32, 38, (344,349,0): 54, 33, 38, (344,350,0): 55, 34, 39, (344,351,0): 55, 35, 37, (344,352,0): 56, 34, 36, (344,353,0): 59, 35, 35, (344,354,0): 61, 35, 36, (344,355,0): 64, 36, 35, (344,356,0): 68, 37, 35, (344,357,0): 72, 38, 37, (344,358,0): 76, 38, 37, (344,359,0): 78, 37, 35, (344,360,0): 90, 42, 42, (344,361,0): 92, 41, 40, (344,362,0): 96, 40, 39, (344,363,0): 101, 43, 41, (344,364,0): 107, 46, 45, (344,365,0): 113, 49, 47, (344,366,0): 118, 53, 51, (344,367,0): 119, 55, 53, (344,368,0): 108, 50, 48, (344,369,0): 102, 48, 46, (344,370,0): 99, 45, 45, (344,371,0): 95, 41, 41, (344,372,0): 90, 39, 38, (344,373,0): 88, 38, 37, (344,374,0): 88, 38, 39, (344,375,0): 87, 39, 39, (344,376,0): 85, 36, 39, (344,377,0): 85, 36, 39, (344,378,0): 81, 35, 37, (344,379,0): 80, 36, 37, (344,380,0): 80, 35, 38, (344,381,0): 78, 36, 38, (344,382,0): 80, 38, 40, (344,383,0): 80, 38, 39, (344,384,0): 80, 39, 37, (344,385,0): 80, 39, 37, (344,386,0): 80, 39, 37, (344,387,0): 80, 39, 37, (344,388,0): 81, 40, 38, (344,389,0): 81, 40, 38, (344,390,0): 81, 40, 38, (344,391,0): 81, 40, 38, (344,392,0): 79, 38, 36, (344,393,0): 81, 40, 38, (344,394,0): 83, 42, 40, (344,395,0): 86, 45, 43, (344,396,0): 87, 46, 44, (344,397,0): 86, 45, 43, (344,398,0): 84, 43, 41, (344,399,0): 83, 42, 40, (344,400,0): 92, 48, 47, (344,401,0): 90, 46, 45, (344,402,0): 89, 43, 45, (344,403,0): 86, 42, 41, (344,404,0): 85, 39, 41, (344,405,0): 83, 39, 38, (344,406,0): 84, 38, 40, (344,407,0): 83, 39, 38, (344,408,0): 85, 39, 41, (344,409,0): 83, 39, 38, (344,410,0): 84, 38, 40, (344,411,0): 83, 39, 38, (344,412,0): 85, 39, 41, (344,413,0): 86, 42, 41, (344,414,0): 89, 43, 45, (344,415,0): 87, 45, 47, (344,416,0): 85, 46, 51, (344,417,0): 86, 50, 54, (344,418,0): 89, 53, 57, (344,419,0): 90, 54, 56, (344,420,0): 90, 54, 56, (344,421,0): 90, 54, 54, (344,422,0): 92, 57, 55, (344,423,0): 94, 59, 57, (344,424,0): 96, 58, 57, (344,425,0): 98, 60, 59, (344,426,0): 101, 61, 62, (344,427,0): 103, 62, 66, (344,428,0): 104, 63, 67, (344,429,0): 104, 63, 69, (344,430,0): 105, 62, 71, (344,431,0): 104, 61, 68, (344,432,0): 101, 59, 63, (344,433,0): 97, 57, 58, (344,434,0): 95, 53, 55, (344,435,0): 92, 52, 53, (344,436,0): 93, 51, 53, (344,437,0): 89, 49, 50, (344,438,0): 86, 44, 45, (344,439,0): 81, 41, 41, (344,440,0): 82, 42, 42, (344,441,0): 86, 46, 44, (344,442,0): 92, 52, 50, (344,443,0): 97, 57, 55, (344,444,0): 98, 58, 56, (344,445,0): 97, 58, 53, (344,446,0): 93, 53, 51, (344,447,0): 91, 51, 49, (344,448,0): 84, 44, 45, (344,449,0): 86, 44, 46, (344,450,0): 88, 46, 48, (344,451,0): 89, 47, 48, (344,452,0): 90, 48, 49, (344,453,0): 90, 49, 47, (344,454,0): 90, 49, 47, (344,455,0): 88, 49, 44, (344,456,0): 82, 45, 39, (344,457,0): 79, 44, 38, (344,458,0): 74, 43, 38, (344,459,0): 72, 43, 39, (344,460,0): 68, 43, 39, (344,461,0): 67, 43, 39, (344,462,0): 65, 44, 41, (344,463,0): 66, 45, 42, (344,464,0): 67, 42, 38, (344,465,0): 64, 39, 34, (344,466,0): 63, 38, 33, (344,467,0): 64, 39, 34, (344,468,0): 65, 41, 37, (344,469,0): 66, 42, 38, (344,470,0): 65, 41, 39, (344,471,0): 60, 39, 36, (344,472,0): 56, 35, 34, (344,473,0): 53, 32, 31, (344,474,0): 49, 29, 30, (344,475,0): 48, 28, 29, (344,476,0): 51, 31, 32, (344,477,0): 51, 33, 33, (344,478,0): 50, 32, 32, (344,479,0): 49, 31, 31, (344,480,0): 54, 36, 32, (344,481,0): 53, 38, 31, (344,482,0): 54, 41, 33, (344,483,0): 55, 45, 36, (344,484,0): 58, 49, 40, (344,485,0): 63, 53, 44, (344,486,0): 68, 55, 47, (344,487,0): 70, 55, 48, (344,488,0): 73, 54, 48, (344,489,0): 75, 51, 47, (344,490,0): 77, 49, 46, (344,491,0): 76, 48, 45, (344,492,0): 76, 51, 47, (344,493,0): 78, 54, 50, (344,494,0): 79, 58, 53, (344,495,0): 80, 61, 55, (344,496,0): 78, 64, 55, (344,497,0): 75, 62, 53, (344,498,0): 73, 58, 51, (344,499,0): 69, 56, 48, (344,500,0): 69, 54, 47, (344,501,0): 69, 54, 47, (344,502,0): 70, 55, 50, (344,503,0): 71, 56, 51, (344,504,0): 72, 57, 54, (344,505,0): 73, 58, 55, (344,506,0): 72, 57, 54, (344,507,0): 68, 53, 50, (344,508,0): 64, 48, 48, (344,509,0): 63, 47, 47, (344,510,0): 66, 50, 50, (344,511,0): 71, 53, 53, (344,512,0): 75, 55, 56, (344,513,0): 73, 52, 51, (344,514,0): 69, 47, 49, (344,515,0): 64, 43, 42, (344,516,0): 61, 39, 41, (344,517,0): 60, 39, 38, (344,518,0): 60, 38, 40, (344,519,0): 60, 39, 38, (344,520,0): 57, 35, 37, (344,521,0): 57, 36, 35, (344,522,0): 58, 36, 38, (344,523,0): 61, 40, 39, (344,524,0): 63, 41, 43, (344,525,0): 63, 42, 41, (344,526,0): 60, 38, 40, (344,527,0): 56, 34, 36, (344,528,0): 63, 37, 40, (344,529,0): 62, 36, 39, (344,530,0): 61, 36, 39, (344,531,0): 62, 40, 42, (344,532,0): 66, 44, 46, (344,533,0): 67, 47, 48, (344,534,0): 64, 46, 46, (344,535,0): 62, 44, 44, (344,536,0): 65, 47, 47, (344,537,0): 63, 45, 45, (344,538,0): 60, 40, 41, (344,539,0): 57, 37, 38, (344,540,0): 58, 33, 36, (344,541,0): 57, 32, 35, (344,542,0): 58, 32, 35, (344,543,0): 58, 32, 35, (344,544,0): 54, 27, 32, (344,545,0): 54, 27, 32, (344,546,0): 54, 27, 32, (344,547,0): 53, 28, 32, (344,548,0): 51, 29, 32, (344,549,0): 49, 30, 32, (344,550,0): 49, 30, 32, (344,551,0): 47, 31, 32, (344,552,0): 50, 36, 36, (344,553,0): 49, 35, 35, (344,554,0): 47, 33, 33, (344,555,0): 45, 29, 30, (344,556,0): 45, 26, 28, (344,557,0): 43, 24, 26, (344,558,0): 43, 23, 25, (344,559,0): 42, 23, 27, (344,560,0): 38, 23, 30, (344,561,0): 37, 24, 33, (344,562,0): 39, 26, 35, (344,563,0): 40, 27, 36, (344,564,0): 43, 28, 35, (344,565,0): 44, 29, 36, (344,566,0): 44, 29, 34, (344,567,0): 44, 29, 34, (344,568,0): 47, 30, 36, (344,569,0): 49, 32, 38, (344,570,0): 53, 34, 38, (344,571,0): 56, 37, 41, (344,572,0): 58, 39, 41, (344,573,0): 59, 40, 42, (344,574,0): 60, 40, 42, (344,575,0): 59, 40, 42, (344,576,0): 57, 45, 45, (344,577,0): 57, 47, 46, (344,578,0): 59, 49, 48, (344,579,0): 59, 51, 49, (344,580,0): 61, 53, 51, (344,581,0): 62, 54, 52, (344,582,0): 62, 54, 52, (344,583,0): 60, 55, 52, (344,584,0): 62, 57, 54, (344,585,0): 63, 59, 56, (344,586,0): 66, 62, 59, (344,587,0): 67, 63, 60, (344,588,0): 66, 62, 59, (344,589,0): 62, 61, 57, (344,590,0): 59, 58, 54, (344,591,0): 59, 55, 52, (344,592,0): 57, 51, 53, (344,593,0): 57, 51, 53, (344,594,0): 55, 49, 51, (344,595,0): 54, 48, 50, (344,596,0): 52, 46, 48, (344,597,0): 50, 44, 46, (344,598,0): 49, 43, 45, (344,599,0): 48, 42, 44, (345,0,0): 76, 59, 51, (345,1,0): 76, 59, 51, (345,2,0): 77, 60, 52, (345,3,0): 77, 60, 52, (345,4,0): 77, 60, 52, (345,5,0): 78, 61, 53, (345,6,0): 78, 61, 53, (345,7,0): 78, 61, 53, (345,8,0): 80, 63, 55, (345,9,0): 80, 63, 55, (345,10,0): 80, 63, 55, (345,11,0): 80, 63, 55, (345,12,0): 78, 61, 53, (345,13,0): 77, 60, 52, (345,14,0): 75, 58, 50, (345,15,0): 73, 56, 48, (345,16,0): 75, 56, 50, (345,17,0): 75, 56, 52, (345,18,0): 76, 57, 53, (345,19,0): 78, 59, 53, (345,20,0): 79, 60, 54, (345,21,0): 80, 61, 55, (345,22,0): 81, 62, 56, (345,23,0): 81, 62, 55, (345,24,0): 81, 62, 55, (345,25,0): 82, 64, 54, (345,26,0): 83, 65, 55, (345,27,0): 84, 66, 56, (345,28,0): 85, 67, 57, (345,29,0): 86, 68, 56, (345,30,0): 87, 69, 57, (345,31,0): 88, 70, 58, (345,32,0): 83, 66, 56, (345,33,0): 83, 66, 56, (345,34,0): 83, 65, 55, (345,35,0): 81, 63, 53, (345,36,0): 79, 61, 51, (345,37,0): 78, 60, 50, (345,38,0): 78, 58, 49, (345,39,0): 77, 57, 48, (345,40,0): 83, 60, 52, (345,41,0): 83, 60, 52, (345,42,0): 82, 59, 51, (345,43,0): 81, 58, 50, (345,44,0): 81, 56, 49, (345,45,0): 81, 56, 49, (345,46,0): 81, 56, 49, (345,47,0): 81, 56, 51, (345,48,0): 79, 54, 50, (345,49,0): 80, 54, 53, (345,50,0): 82, 54, 53, (345,51,0): 83, 55, 52, (345,52,0): 84, 56, 52, (345,53,0): 84, 56, 52, (345,54,0): 86, 57, 51, (345,55,0): 87, 57, 49, (345,56,0): 93, 60, 51, (345,57,0): 94, 62, 51, (345,58,0): 95, 63, 50, (345,59,0): 98, 65, 50, (345,60,0): 102, 69, 54, (345,61,0): 106, 73, 56, (345,62,0): 111, 75, 59, (345,63,0): 113, 78, 59, (345,64,0): 119, 82, 64, (345,65,0): 122, 84, 65, (345,66,0): 126, 85, 65, (345,67,0): 130, 88, 64, (345,68,0): 136, 90, 64, (345,69,0): 140, 93, 63, (345,70,0): 145, 97, 61, (345,71,0): 147, 98, 57, (345,72,0): 160, 112, 66, (345,73,0): 165, 117, 68, (345,74,0): 173, 123, 70, (345,75,0): 176, 130, 71, (345,76,0): 177, 131, 71, (345,77,0): 177, 133, 70, (345,78,0): 180, 136, 73, (345,79,0): 182, 139, 71, (345,80,0): 188, 141, 71, (345,81,0): 186, 139, 69, (345,82,0): 185, 137, 71, (345,83,0): 185, 140, 75, (345,84,0): 185, 140, 81, (345,85,0): 182, 139, 84, (345,86,0): 178, 137, 85, (345,87,0): 173, 133, 82, (345,88,0): 163, 125, 76, (345,89,0): 158, 122, 72, (345,90,0): 155, 122, 69, (345,91,0): 158, 127, 72, (345,92,0): 166, 137, 77, (345,93,0): 176, 148, 85, (345,94,0): 182, 157, 91, (345,95,0): 184, 161, 93, (345,96,0): 189, 173, 98, (345,97,0): 192, 179, 101, (345,98,0): 199, 186, 108, (345,99,0): 201, 190, 110, (345,100,0): 197, 189, 108, (345,101,0): 194, 188, 104, (345,102,0): 192, 187, 103, (345,103,0): 191, 189, 104, (345,104,0): 186, 186, 100, (345,105,0): 185, 187, 103, (345,106,0): 185, 189, 105, (345,107,0): 184, 189, 107, (345,108,0): 182, 189, 109, (345,109,0): 180, 189, 110, (345,110,0): 178, 186, 109, (345,111,0): 177, 185, 112, (345,112,0): 177, 184, 116, (345,113,0): 177, 184, 117, (345,114,0): 174, 183, 116, (345,115,0): 174, 183, 116, (345,116,0): 173, 182, 115, (345,117,0): 171, 182, 114, (345,118,0): 171, 182, 116, (345,119,0): 171, 182, 116, (345,120,0): 168, 180, 114, (345,121,0): 169, 181, 115, (345,122,0): 170, 182, 116, (345,123,0): 170, 185, 118, (345,124,0): 171, 186, 119, (345,125,0): 173, 188, 121, (345,126,0): 174, 189, 124, (345,127,0): 174, 190, 125, (345,128,0): 174, 193, 129, (345,129,0): 173, 194, 129, (345,130,0): 174, 195, 128, (345,131,0): 175, 196, 129, (345,132,0): 175, 196, 129, (345,133,0): 176, 197, 128, (345,134,0): 177, 198, 131, (345,135,0): 178, 197, 131, (345,136,0): 178, 194, 129, (345,137,0): 177, 191, 129, (345,138,0): 177, 187, 127, (345,139,0): 176, 184, 125, (345,140,0): 172, 175, 120, (345,141,0): 159, 159, 107, (345,142,0): 140, 138, 87, (345,143,0): 125, 122, 77, (345,144,0): 108, 108, 70, (345,145,0): 101, 102, 68, (345,146,0): 101, 101, 67, (345,147,0): 102, 104, 67, (345,148,0): 100, 102, 65, (345,149,0): 92, 97, 57, (345,150,0): 91, 96, 56, (345,151,0): 93, 102, 59, (345,152,0): 103, 116, 73, (345,153,0): 107, 124, 79, (345,154,0): 119, 141, 94, (345,155,0): 136, 162, 114, (345,156,0): 154, 183, 135, (345,157,0): 162, 196, 146, (345,158,0): 162, 199, 148, (345,159,0): 159, 197, 148, (345,160,0): 160, 197, 153, (345,161,0): 161, 198, 155, (345,162,0): 163, 200, 157, (345,163,0): 165, 204, 159, (345,164,0): 168, 207, 162, (345,165,0): 171, 210, 165, (345,166,0): 173, 212, 165, (345,167,0): 172, 214, 166, (345,168,0): 176, 218, 168, (345,169,0): 176, 220, 169, (345,170,0): 177, 221, 168, (345,171,0): 179, 224, 169, (345,172,0): 182, 227, 172, (345,173,0): 182, 230, 172, (345,174,0): 183, 230, 175, (345,175,0): 186, 231, 174, (345,176,0): 192, 233, 175, (345,177,0): 194, 234, 174, (345,178,0): 197, 235, 176, (345,179,0): 199, 239, 179, (345,180,0): 201, 239, 180, (345,181,0): 202, 242, 182, (345,182,0): 203, 241, 182, (345,183,0): 202, 242, 182, (345,184,0): 208, 246, 187, (345,185,0): 208, 248, 188, (345,186,0): 210, 248, 189, (345,187,0): 210, 250, 190, (345,188,0): 212, 250, 191, (345,189,0): 212, 252, 192, (345,190,0): 214, 252, 193, (345,191,0): 215, 253, 196, (345,192,0): 211, 243, 193, (345,193,0): 212, 242, 192, (345,194,0): 211, 241, 191, (345,195,0): 211, 241, 189, (345,196,0): 213, 242, 188, (345,197,0): 214, 243, 187, (345,198,0): 217, 245, 186, (345,199,0): 219, 247, 186, (345,200,0): 221, 250, 186, (345,201,0): 222, 251, 187, (345,202,0): 226, 252, 187, (345,203,0): 227, 253, 188, (345,204,0): 227, 252, 186, (345,205,0): 223, 248, 182, (345,206,0): 219, 244, 178, (345,207,0): 214, 243, 179, (345,208,0): 198, 236, 175, (345,209,0): 194, 238, 179, (345,210,0): 192, 236, 177, (345,211,0): 190, 233, 177, (345,212,0): 188, 231, 175, (345,213,0): 187, 230, 176, (345,214,0): 189, 232, 178, (345,215,0): 190, 233, 180, (345,216,0): 187, 229, 179, (345,217,0): 187, 229, 181, (345,218,0): 187, 229, 181, (345,219,0): 187, 229, 183, (345,220,0): 185, 226, 182, (345,221,0): 184, 225, 181, (345,222,0): 182, 223, 179, (345,223,0): 182, 220, 179, (345,224,0): 186, 222, 184, (345,225,0): 185, 221, 183, (345,226,0): 185, 221, 183, (345,227,0): 185, 221, 183, (345,228,0): 184, 220, 184, (345,229,0): 184, 220, 184, (345,230,0): 183, 220, 186, (345,231,0): 183, 220, 186, (345,232,0): 184, 221, 188, (345,233,0): 184, 221, 190, (345,234,0): 183, 220, 189, (345,235,0): 180, 219, 190, (345,236,0): 181, 217, 189, (345,237,0): 178, 217, 188, (345,238,0): 179, 215, 187, (345,239,0): 177, 215, 190, (345,240,0): 179, 213, 196, (345,241,0): 177, 213, 199, (345,242,0): 179, 212, 201, (345,243,0): 177, 213, 201, (345,244,0): 178, 211, 200, (345,245,0): 174, 210, 198, (345,246,0): 174, 207, 198, (345,247,0): 171, 207, 197, (345,248,0): 172, 205, 198, (345,249,0): 170, 205, 198, (345,250,0): 173, 206, 199, (345,251,0): 171, 206, 199, (345,252,0): 174, 206, 201, (345,253,0): 172, 207, 201, (345,254,0): 175, 207, 202, (345,255,0): 175, 207, 202, (345,256,0): 178, 210, 207, (345,257,0): 178, 210, 207, (345,258,0): 175, 209, 208, (345,259,0): 175, 209, 208, (345,260,0): 173, 209, 209, (345,261,0): 173, 208, 210, (345,262,0): 170, 208, 211, (345,263,0): 169, 209, 211, (345,264,0): 165, 206, 210, (345,265,0): 164, 205, 211, (345,266,0): 162, 205, 212, (345,267,0): 160, 204, 213, (345,268,0): 160, 204, 215, (345,269,0): 159, 203, 214, (345,270,0): 157, 204, 214, (345,271,0): 156, 204, 216, (345,272,0): 158, 205, 221, (345,273,0): 157, 206, 223, (345,274,0): 157, 206, 223, (345,275,0): 157, 206, 223, (345,276,0): 156, 205, 222, (345,277,0): 154, 202, 222, (345,278,0): 152, 200, 220, (345,279,0): 151, 199, 221, (345,280,0): 153, 201, 224, (345,281,0): 152, 200, 223, (345,282,0): 151, 198, 224, (345,283,0): 149, 196, 222, (345,284,0): 149, 196, 224, (345,285,0): 149, 196, 224, (345,286,0): 150, 197, 225, (345,287,0): 150, 197, 225, (345,288,0): 151, 196, 227, (345,289,0): 152, 197, 230, (345,290,0): 154, 197, 231, (345,291,0): 155, 198, 232, (345,292,0): 157, 197, 232, (345,293,0): 156, 196, 231, (345,294,0): 156, 194, 230, (345,295,0): 155, 193, 229, (345,296,0): 160, 194, 232, (345,297,0): 160, 194, 232, (345,298,0): 161, 193, 232, (345,299,0): 162, 194, 233, (345,300,0): 164, 193, 233, (345,301,0): 165, 194, 234, (345,302,0): 166, 194, 234, (345,303,0): 169, 194, 235, (345,304,0): 167, 190, 232, (345,305,0): 166, 188, 229, (345,306,0): 166, 185, 227, (345,307,0): 165, 183, 223, (345,308,0): 165, 179, 218, (345,309,0): 159, 171, 209, (345,310,0): 153, 161, 198, (345,311,0): 149, 155, 189, (345,312,0): 143, 146, 177, (345,313,0): 142, 142, 170, (345,314,0): 138, 134, 159, (345,315,0): 135, 127, 150, (345,316,0): 131, 122, 141, (345,317,0): 132, 121, 138, (345,318,0): 133, 120, 137, (345,319,0): 132, 121, 137, (345,320,0): 133, 126, 144, (345,321,0): 133, 125, 146, (345,322,0): 137, 125, 147, (345,323,0): 139, 123, 149, (345,324,0): 142, 122, 147, (345,325,0): 146, 120, 145, (345,326,0): 151, 119, 142, (345,327,0): 153, 119, 136, (345,328,0): 148, 110, 123, (345,329,0): 132, 91, 99, (345,330,0): 109, 68, 74, (345,331,0): 94, 52, 56, (345,332,0): 89, 46, 53, (345,333,0): 87, 44, 53, (345,334,0): 82, 39, 49, (345,335,0): 76, 35, 43, (345,336,0): 69, 33, 37, (345,337,0): 65, 33, 34, (345,338,0): 65, 33, 36, (345,339,0): 63, 33, 35, (345,340,0): 61, 31, 33, (345,341,0): 59, 30, 32, (345,342,0): 59, 30, 34, (345,343,0): 56, 30, 33, (345,344,0): 55, 30, 34, (345,345,0): 53, 31, 34, (345,346,0): 53, 31, 34, (345,347,0): 52, 32, 34, (345,348,0): 53, 32, 37, (345,349,0): 52, 33, 37, (345,350,0): 52, 33, 37, (345,351,0): 52, 33, 37, (345,352,0): 55, 33, 35, (345,353,0): 58, 34, 34, (345,354,0): 60, 34, 35, (345,355,0): 64, 35, 37, (345,356,0): 67, 35, 36, (345,357,0): 71, 37, 36, (345,358,0): 75, 37, 36, (345,359,0): 78, 37, 35, (345,360,0): 89, 41, 41, (345,361,0): 92, 41, 38, (345,362,0): 97, 41, 40, (345,363,0): 103, 43, 42, (345,364,0): 107, 46, 43, (345,365,0): 113, 50, 45, (345,366,0): 118, 50, 47, (345,367,0): 116, 52, 50, (345,368,0): 101, 46, 43, (345,369,0): 96, 47, 43, (345,370,0): 94, 43, 42, (345,371,0): 90, 40, 39, (345,372,0): 87, 37, 36, (345,373,0): 85, 37, 35, (345,374,0): 85, 37, 37, (345,375,0): 86, 38, 38, (345,376,0): 85, 36, 39, (345,377,0): 85, 36, 39, (345,378,0): 81, 35, 37, (345,379,0): 81, 35, 37, (345,380,0): 80, 35, 38, (345,381,0): 80, 35, 38, (345,382,0): 82, 37, 40, (345,383,0): 82, 37, 40, (345,384,0): 82, 38, 39, (345,385,0): 80, 39, 37, (345,386,0): 80, 39, 37, (345,387,0): 80, 39, 37, (345,388,0): 81, 40, 38, (345,389,0): 81, 40, 38, (345,390,0): 81, 40, 38, (345,391,0): 81, 40, 38, (345,392,0): 79, 38, 36, (345,393,0): 81, 40, 38, (345,394,0): 84, 43, 41, (345,395,0): 86, 45, 43, (345,396,0): 87, 46, 44, (345,397,0): 86, 45, 43, (345,398,0): 84, 43, 41, (345,399,0): 83, 42, 40, (345,400,0): 88, 46, 47, (345,401,0): 87, 45, 46, (345,402,0): 87, 43, 44, (345,403,0): 82, 40, 41, (345,404,0): 83, 39, 40, (345,405,0): 80, 38, 39, (345,406,0): 82, 38, 39, (345,407,0): 80, 38, 39, (345,408,0): 82, 38, 39, (345,409,0): 80, 38, 39, (345,410,0): 81, 37, 38, (345,411,0): 80, 38, 39, (345,412,0): 83, 39, 40, (345,413,0): 83, 41, 42, (345,414,0): 86, 42, 43, (345,415,0): 85, 45, 46, (345,416,0): 81, 45, 49, (345,417,0): 83, 48, 52, (345,418,0): 85, 50, 54, (345,419,0): 86, 51, 55, (345,420,0): 85, 51, 52, (345,421,0): 84, 52, 53, (345,422,0): 89, 55, 54, (345,423,0): 92, 58, 56, (345,424,0): 93, 59, 57, (345,425,0): 95, 60, 58, (345,426,0): 96, 60, 60, (345,427,0): 100, 61, 62, (345,428,0): 102, 63, 64, (345,429,0): 104, 63, 67, (345,430,0): 105, 63, 67, (345,431,0): 106, 64, 68, (345,432,0): 103, 61, 65, (345,433,0): 99, 57, 59, (345,434,0): 95, 53, 55, (345,435,0): 92, 50, 52, (345,436,0): 91, 49, 51, (345,437,0): 89, 47, 49, (345,438,0): 85, 43, 45, (345,439,0): 81, 41, 41, (345,440,0): 80, 40, 41, (345,441,0): 83, 43, 43, (345,442,0): 87, 47, 47, (345,443,0): 90, 50, 50, (345,444,0): 91, 51, 51, (345,445,0): 89, 51, 50, (345,446,0): 88, 48, 48, (345,447,0): 85, 46, 47, (345,448,0): 83, 44, 47, (345,449,0): 83, 44, 49, (345,450,0): 85, 44, 48, (345,451,0): 86, 45, 49, (345,452,0): 86, 46, 47, (345,453,0): 85, 45, 45, (345,454,0): 83, 43, 43, (345,455,0): 81, 43, 40, (345,456,0): 79, 44, 40, (345,457,0): 77, 44, 39, (345,458,0): 74, 43, 38, (345,459,0): 71, 44, 37, (345,460,0): 69, 44, 37, (345,461,0): 67, 47, 40, (345,462,0): 68, 48, 41, (345,463,0): 68, 48, 41, (345,464,0): 69, 46, 40, (345,465,0): 68, 43, 38, (345,466,0): 66, 41, 36, (345,467,0): 66, 43, 37, (345,468,0): 68, 44, 40, (345,469,0): 69, 45, 41, (345,470,0): 65, 44, 41, (345,471,0): 63, 42, 39, (345,472,0): 56, 35, 34, (345,473,0): 52, 32, 31, (345,474,0): 49, 29, 30, (345,475,0): 49, 29, 30, (345,476,0): 51, 33, 33, (345,477,0): 52, 34, 34, (345,478,0): 51, 32, 34, (345,479,0): 50, 32, 32, (345,480,0): 55, 36, 32, (345,481,0): 55, 38, 31, (345,482,0): 55, 40, 33, (345,483,0): 56, 43, 35, (345,484,0): 58, 48, 39, (345,485,0): 62, 52, 43, (345,486,0): 67, 54, 46, (345,487,0): 70, 55, 48, (345,488,0): 72, 53, 47, (345,489,0): 73, 52, 47, (345,490,0): 75, 50, 46, (345,491,0): 76, 51, 47, (345,492,0): 78, 54, 50, (345,493,0): 81, 60, 55, (345,494,0): 84, 65, 59, (345,495,0): 83, 68, 61, (345,496,0): 82, 69, 60, (345,497,0): 78, 68, 58, (345,498,0): 76, 63, 55, (345,499,0): 72, 59, 51, (345,500,0): 70, 57, 49, (345,501,0): 69, 56, 48, (345,502,0): 70, 55, 50, (345,503,0): 71, 56, 51, (345,504,0): 73, 58, 55, (345,505,0): 74, 59, 56, (345,506,0): 75, 60, 57, (345,507,0): 73, 58, 55, (345,508,0): 69, 53, 53, (345,509,0): 68, 52, 52, (345,510,0): 70, 54, 54, (345,511,0): 74, 56, 56, (345,512,0): 73, 53, 52, (345,513,0): 72, 51, 50, (345,514,0): 68, 47, 46, (345,515,0): 65, 44, 43, (345,516,0): 62, 41, 40, (345,517,0): 62, 41, 40, (345,518,0): 62, 41, 40, (345,519,0): 63, 42, 41, (345,520,0): 62, 41, 40, (345,521,0): 62, 41, 40, (345,522,0): 62, 41, 40, (345,523,0): 64, 43, 42, (345,524,0): 66, 45, 44, (345,525,0): 65, 44, 43, (345,526,0): 61, 40, 39, (345,527,0): 58, 37, 36, (345,528,0): 62, 36, 39, (345,529,0): 61, 35, 38, (345,530,0): 60, 35, 38, (345,531,0): 60, 38, 40, (345,532,0): 64, 42, 44, (345,533,0): 66, 46, 47, (345,534,0): 64, 46, 46, (345,535,0): 62, 44, 44, (345,536,0): 64, 46, 46, (345,537,0): 63, 45, 45, (345,538,0): 61, 41, 42, (345,539,0): 58, 38, 39, (345,540,0): 59, 34, 37, (345,541,0): 57, 32, 35, (345,542,0): 57, 31, 34, (345,543,0): 56, 30, 33, (345,544,0): 55, 28, 33, (345,545,0): 54, 27, 32, (345,546,0): 53, 28, 32, (345,547,0): 51, 29, 32, (345,548,0): 49, 29, 31, (345,549,0): 48, 29, 31, (345,550,0): 46, 30, 31, (345,551,0): 45, 31, 31, (345,552,0): 49, 35, 35, (345,553,0): 48, 34, 34, (345,554,0): 46, 32, 32, (345,555,0): 45, 31, 31, (345,556,0): 44, 28, 29, (345,557,0): 45, 26, 28, (345,558,0): 45, 25, 27, (345,559,0): 43, 24, 28, (345,560,0): 40, 25, 32, (345,561,0): 38, 25, 34, (345,562,0): 39, 26, 35, (345,563,0): 39, 26, 35, (345,564,0): 42, 27, 34, (345,565,0): 43, 28, 35, (345,566,0): 44, 29, 34, (345,567,0): 45, 30, 35, (345,568,0): 47, 30, 36, (345,569,0): 48, 31, 37, (345,570,0): 53, 34, 38, (345,571,0): 55, 36, 40, (345,572,0): 58, 39, 41, (345,573,0): 59, 40, 42, (345,574,0): 60, 40, 42, (345,575,0): 57, 41, 42, (345,576,0): 58, 46, 46, (345,577,0): 58, 48, 47, (345,578,0): 59, 51, 49, (345,579,0): 61, 53, 51, (345,580,0): 62, 54, 52, (345,581,0): 62, 54, 52, (345,582,0): 61, 56, 53, (345,583,0): 61, 56, 53, (345,584,0): 60, 56, 53, (345,585,0): 62, 58, 55, (345,586,0): 64, 60, 57, (345,587,0): 66, 62, 59, (345,588,0): 64, 63, 59, (345,589,0): 62, 61, 57, (345,590,0): 60, 59, 55, (345,591,0): 58, 57, 53, (345,592,0): 57, 53, 54, (345,593,0): 57, 51, 53, (345,594,0): 56, 50, 52, (345,595,0): 54, 48, 50, (345,596,0): 52, 46, 48, (345,597,0): 50, 44, 46, (345,598,0): 49, 43, 45, (345,599,0): 48, 42, 44, (346,0,0): 76, 59, 49, (346,1,0): 77, 60, 50, (346,2,0): 77, 60, 50, (346,3,0): 78, 61, 51, (346,4,0): 78, 61, 51, (346,5,0): 79, 62, 52, (346,6,0): 79, 62, 52, (346,7,0): 79, 62, 52, (346,8,0): 81, 64, 54, (346,9,0): 81, 64, 54, (346,10,0): 81, 64, 54, (346,11,0): 81, 64, 54, (346,12,0): 80, 63, 53, (346,13,0): 78, 61, 51, (346,14,0): 77, 60, 50, (346,15,0): 75, 58, 50, (346,16,0): 76, 57, 51, (346,17,0): 78, 57, 52, (346,18,0): 78, 57, 52, (346,19,0): 79, 58, 53, (346,20,0): 80, 59, 54, (346,21,0): 81, 61, 54, (346,22,0): 82, 62, 55, (346,23,0): 83, 63, 56, (346,24,0): 84, 64, 57, (346,25,0): 84, 64, 55, (346,26,0): 85, 65, 56, (346,27,0): 86, 66, 55, (346,28,0): 87, 67, 56, (346,29,0): 88, 68, 57, (346,30,0): 89, 69, 58, (346,31,0): 88, 70, 56, (346,32,0): 85, 69, 56, (346,33,0): 84, 68, 55, (346,34,0): 84, 66, 54, (346,35,0): 83, 65, 53, (346,36,0): 81, 63, 51, (346,37,0): 79, 61, 49, (346,38,0): 79, 59, 48, (346,39,0): 79, 59, 48, (346,40,0): 83, 61, 50, (346,41,0): 83, 61, 50, (346,42,0): 83, 61, 50, (346,43,0): 82, 60, 49, (346,44,0): 83, 59, 49, (346,45,0): 82, 58, 48, (346,46,0): 82, 58, 48, (346,47,0): 81, 56, 49, (346,48,0): 80, 55, 51, (346,49,0): 80, 54, 53, (346,50,0): 82, 54, 51, (346,51,0): 83, 55, 52, (346,52,0): 83, 55, 51, (346,53,0): 84, 56, 52, (346,54,0): 85, 56, 50, (346,55,0): 85, 56, 48, (346,56,0): 89, 59, 49, (346,57,0): 89, 59, 48, (346,58,0): 89, 59, 48, (346,59,0): 93, 61, 48, (346,60,0): 95, 63, 50, (346,61,0): 98, 66, 51, (346,62,0): 101, 68, 53, (346,63,0): 103, 70, 53, (346,64,0): 112, 76, 60, (346,65,0): 113, 78, 59, (346,66,0): 117, 80, 61, (346,67,0): 121, 83, 62, (346,68,0): 127, 85, 61, (346,69,0): 132, 88, 61, (346,70,0): 136, 89, 59, (346,71,0): 140, 92, 56, (346,72,0): 149, 101, 61, (346,73,0): 154, 107, 63, (346,74,0): 163, 115, 67, (346,75,0): 167, 121, 71, (346,76,0): 170, 125, 70, (346,77,0): 171, 126, 69, (346,78,0): 173, 128, 71, (346,79,0): 176, 132, 71, (346,80,0): 184, 137, 69, (346,81,0): 183, 136, 66, (346,82,0): 183, 135, 69, (346,83,0): 182, 136, 74, (346,84,0): 183, 138, 79, (346,85,0): 181, 138, 83, (346,86,0): 178, 137, 85, (346,87,0): 174, 134, 83, (346,88,0): 161, 123, 74, (346,89,0): 157, 121, 73, (346,90,0): 152, 119, 68, (346,91,0): 152, 120, 69, (346,92,0): 157, 127, 73, (346,93,0): 162, 136, 79, (346,94,0): 167, 141, 84, (346,95,0): 169, 145, 83, (346,96,0): 179, 160, 91, (346,97,0): 183, 169, 94, (346,98,0): 192, 178, 103, (346,99,0): 198, 187, 108, (346,100,0): 198, 189, 110, (346,101,0): 195, 188, 107, (346,102,0): 193, 188, 106, (346,103,0): 190, 188, 105, (346,104,0): 186, 185, 102, (346,105,0): 184, 186, 103, (346,106,0): 184, 187, 106, (346,107,0): 183, 188, 108, (346,108,0): 180, 187, 109, (346,109,0): 179, 186, 109, (346,110,0): 177, 185, 110, (346,111,0): 176, 183, 113, (346,112,0): 174, 183, 116, (346,113,0): 174, 183, 118, (346,114,0): 173, 182, 117, (346,115,0): 173, 182, 117, (346,116,0): 171, 182, 116, (346,117,0): 171, 182, 116, (346,118,0): 171, 181, 118, (346,119,0): 169, 181, 117, (346,120,0): 169, 181, 117, (346,121,0): 170, 182, 118, (346,122,0): 169, 184, 119, (346,123,0): 171, 186, 121, (346,124,0): 172, 187, 122, (346,125,0): 173, 189, 124, (346,126,0): 174, 190, 125, (346,127,0): 175, 191, 126, (346,128,0): 173, 192, 126, (346,129,0): 172, 193, 126, (346,130,0): 173, 194, 127, (346,131,0): 173, 196, 128, (346,132,0): 175, 198, 130, (346,133,0): 176, 199, 131, (346,134,0): 177, 199, 134, (346,135,0): 178, 199, 134, (346,136,0): 176, 197, 132, (346,137,0): 175, 193, 131, (346,138,0): 176, 190, 129, (346,139,0): 177, 188, 130, (346,140,0): 174, 181, 127, (346,141,0): 162, 167, 113, (346,142,0): 145, 148, 95, (346,143,0): 131, 133, 84, (346,144,0): 113, 115, 76, (346,145,0): 105, 109, 74, (346,146,0): 104, 106, 69, (346,147,0): 104, 108, 71, (346,148,0): 102, 107, 67, (346,149,0): 95, 102, 60, (346,150,0): 94, 103, 60, (346,151,0): 97, 109, 63, (346,152,0): 110, 126, 81, (346,153,0): 119, 138, 92, (346,154,0): 134, 158, 110, (346,155,0): 149, 177, 128, (346,156,0): 158, 192, 142, (346,157,0): 161, 199, 150, (346,158,0): 159, 199, 149, (346,159,0): 156, 198, 150, (346,160,0): 159, 198, 154, (346,161,0): 160, 198, 157, (346,162,0): 162, 200, 159, (346,163,0): 162, 203, 159, (346,164,0): 165, 206, 162, (346,165,0): 166, 209, 164, (346,166,0): 168, 211, 166, (346,167,0): 169, 212, 167, (346,168,0): 173, 216, 170, (346,169,0): 172, 218, 171, (346,170,0): 173, 219, 172, (346,171,0): 174, 222, 172, (346,172,0): 176, 224, 174, (346,173,0): 178, 226, 174, (346,174,0): 180, 228, 178, (346,175,0): 181, 229, 177, (346,176,0): 188, 233, 178, (346,177,0): 188, 233, 176, (346,178,0): 190, 233, 177, (346,179,0): 189, 234, 177, (346,180,0): 192, 235, 179, (346,181,0): 193, 238, 181, (346,182,0): 196, 239, 183, (346,183,0): 196, 241, 184, (346,184,0): 203, 246, 190, (346,185,0): 203, 248, 191, (346,186,0): 205, 248, 192, (346,187,0): 206, 251, 194, (346,188,0): 209, 252, 196, (346,189,0): 210, 255, 198, (346,190,0): 212, 255, 199, (346,191,0): 215, 255, 200, (346,192,0): 208, 245, 191, (346,193,0): 211, 244, 191, (346,194,0): 210, 243, 190, (346,195,0): 210, 243, 188, (346,196,0): 210, 244, 184, (346,197,0): 211, 245, 184, (346,198,0): 215, 247, 184, (346,199,0): 216, 248, 183, (346,200,0): 218, 248, 184, (346,201,0): 220, 251, 184, (346,202,0): 224, 253, 187, (346,203,0): 225, 254, 188, (346,204,0): 223, 252, 186, (346,205,0): 218, 247, 181, (346,206,0): 213, 242, 176, (346,207,0): 207, 238, 178, (346,208,0): 193, 234, 178, (346,209,0): 188, 232, 179, (346,210,0): 185, 229, 176, (346,211,0): 184, 228, 177, (346,212,0): 184, 228, 177, (346,213,0): 184, 228, 179, (346,214,0): 184, 227, 181, (346,215,0): 183, 226, 181, (346,216,0): 181, 224, 179, (346,217,0): 182, 225, 182, (346,218,0): 182, 224, 184, (346,219,0): 182, 224, 184, (346,220,0): 181, 223, 185, (346,221,0): 179, 221, 183, (346,222,0): 177, 219, 181, (346,223,0): 176, 218, 182, (346,224,0): 177, 217, 183, (346,225,0): 176, 215, 184, (346,226,0): 176, 215, 184, (346,227,0): 175, 214, 183, (346,228,0): 174, 213, 184, (346,229,0): 174, 213, 184, (346,230,0): 173, 212, 183, (346,231,0): 173, 212, 185, (346,232,0): 174, 213, 186, (346,233,0): 174, 212, 187, (346,234,0): 174, 212, 187, (346,235,0): 173, 213, 189, (346,236,0): 174, 212, 189, (346,237,0): 173, 213, 189, (346,238,0): 173, 211, 188, (346,239,0): 172, 211, 192, (346,240,0): 175, 211, 199, (346,241,0): 175, 213, 202, (346,242,0): 176, 212, 202, (346,243,0): 175, 213, 202, (346,244,0): 175, 210, 203, (346,245,0): 172, 209, 201, (346,246,0): 171, 206, 199, (346,247,0): 169, 206, 198, (346,248,0): 168, 203, 197, (346,249,0): 167, 204, 197, (346,250,0): 169, 204, 200, (346,251,0): 170, 206, 202, (346,252,0): 172, 207, 203, (346,253,0): 173, 209, 205, (346,254,0): 175, 209, 208, (346,255,0): 175, 209, 208, (346,256,0): 176, 210, 211, (346,257,0): 176, 210, 211, (346,258,0): 175, 209, 211, (346,259,0): 175, 209, 211, (346,260,0): 173, 208, 212, (346,261,0): 173, 208, 212, (346,262,0): 170, 207, 213, (346,263,0): 169, 208, 215, (346,264,0): 164, 204, 212, (346,265,0): 164, 204, 214, (346,266,0): 162, 205, 214, (346,267,0): 160, 204, 215, (346,268,0): 160, 204, 215, (346,269,0): 157, 203, 216, (346,270,0): 157, 203, 216, (346,271,0): 155, 203, 217, (346,272,0): 158, 205, 223, (346,273,0): 158, 206, 226, (346,274,0): 158, 206, 226, (346,275,0): 158, 206, 226, (346,276,0): 156, 204, 224, (346,277,0): 155, 203, 225, (346,278,0): 153, 201, 223, (346,279,0): 152, 200, 223, (346,280,0): 153, 201, 224, (346,281,0): 152, 199, 225, (346,282,0): 151, 198, 224, (346,283,0): 149, 196, 222, (346,284,0): 149, 196, 224, (346,285,0): 149, 196, 224, (346,286,0): 150, 197, 225, (346,287,0): 150, 197, 225, (346,288,0): 151, 196, 225, (346,289,0): 152, 197, 228, (346,290,0): 154, 197, 229, (346,291,0): 154, 197, 229, (346,292,0): 156, 197, 229, (346,293,0): 156, 197, 229, (346,294,0): 156, 194, 230, (346,295,0): 155, 193, 229, (346,296,0): 159, 193, 231, (346,297,0): 160, 194, 232, (346,298,0): 161, 193, 232, (346,299,0): 162, 194, 233, (346,300,0): 164, 193, 235, (346,301,0): 165, 194, 236, (346,302,0): 166, 193, 236, (346,303,0): 166, 193, 236, (346,304,0): 169, 193, 237, (346,305,0): 168, 193, 234, (346,306,0): 167, 190, 232, (346,307,0): 167, 188, 231, (346,308,0): 167, 184, 227, (346,309,0): 164, 178, 217, (346,310,0): 159, 168, 207, (346,311,0): 156, 162, 198, (346,312,0): 145, 148, 181, (346,313,0): 144, 144, 172, (346,314,0): 140, 136, 161, (346,315,0): 136, 128, 151, (346,316,0): 132, 123, 142, (346,317,0): 131, 120, 136, (346,318,0): 132, 120, 134, (346,319,0): 132, 120, 134, (346,320,0): 134, 121, 138, (346,321,0): 133, 120, 138, (346,322,0): 134, 117, 136, (346,323,0): 137, 115, 136, (346,324,0): 140, 115, 137, (346,325,0): 146, 114, 137, (346,326,0): 149, 115, 132, (346,327,0): 152, 114, 129, (346,328,0): 140, 100, 109, (346,329,0): 125, 84, 90, (346,330,0): 104, 63, 67, (346,331,0): 91, 50, 54, (346,332,0): 85, 46, 51, (346,333,0): 83, 43, 51, (346,334,0): 78, 41, 49, (346,335,0): 73, 36, 44, (346,336,0): 68, 33, 39, (346,337,0): 65, 33, 36, (346,338,0): 65, 33, 36, (346,339,0): 63, 33, 35, (346,340,0): 61, 30, 35, (346,341,0): 59, 30, 34, (346,342,0): 59, 30, 34, (346,343,0): 56, 30, 33, (346,344,0): 55, 30, 34, (346,345,0): 53, 31, 34, (346,346,0): 53, 30, 36, (346,347,0): 52, 31, 36, (346,348,0): 51, 30, 35, (346,349,0): 50, 31, 35, (346,350,0): 50, 31, 37, (346,351,0): 50, 31, 35, (346,352,0): 54, 32, 35, (346,353,0): 57, 32, 35, (346,354,0): 59, 33, 36, (346,355,0): 63, 34, 36, (346,356,0): 66, 34, 35, (346,357,0): 71, 35, 35, (346,358,0): 75, 35, 35, (346,359,0): 79, 35, 34, (346,360,0): 87, 39, 39, (346,361,0): 92, 41, 38, (346,362,0): 98, 42, 41, (346,363,0): 105, 45, 44, (346,364,0): 109, 48, 45, (346,365,0): 112, 49, 44, (346,366,0): 115, 47, 44, (346,367,0): 111, 48, 43, (346,368,0): 96, 42, 40, (346,369,0): 90, 42, 40, (346,370,0): 90, 40, 39, (346,371,0): 87, 39, 37, (346,372,0): 85, 37, 37, (346,373,0): 85, 37, 37, (346,374,0): 85, 36, 39, (346,375,0): 83, 37, 39, (346,376,0): 83, 37, 39, (346,377,0): 83, 37, 39, (346,378,0): 81, 35, 38, (346,379,0): 81, 35, 38, (346,380,0): 81, 34, 40, (346,381,0): 81, 34, 40, (346,382,0): 83, 36, 42, (346,383,0): 82, 37, 40, (346,384,0): 81, 37, 38, (346,385,0): 81, 37, 36, (346,386,0): 82, 38, 37, (346,387,0): 82, 38, 37, (346,388,0): 83, 39, 38, (346,389,0): 83, 39, 38, (346,390,0): 84, 40, 39, (346,391,0): 84, 40, 39, (346,392,0): 82, 38, 37, (346,393,0): 84, 40, 39, (346,394,0): 87, 43, 42, (346,395,0): 89, 45, 44, (346,396,0): 89, 45, 44, (346,397,0): 88, 44, 43, (346,398,0): 86, 42, 41, (346,399,0): 83, 42, 40, (346,400,0): 86, 44, 45, (346,401,0): 83, 43, 44, (346,402,0): 82, 40, 42, (346,403,0): 79, 39, 40, (346,404,0): 78, 36, 38, (346,405,0): 76, 36, 37, (346,406,0): 77, 35, 37, (346,407,0): 76, 36, 37, (346,408,0): 78, 36, 38, (346,409,0): 77, 37, 38, (346,410,0): 77, 35, 37, (346,411,0): 76, 36, 37, (346,412,0): 79, 37, 39, (346,413,0): 79, 39, 40, (346,414,0): 82, 40, 42, (346,415,0): 82, 42, 43, (346,416,0): 79, 43, 47, (346,417,0): 80, 45, 49, (346,418,0): 79, 47, 50, (346,419,0): 78, 46, 47, (346,420,0): 78, 46, 47, (346,421,0): 79, 49, 49, (346,422,0): 84, 53, 51, (346,423,0): 88, 57, 55, (346,424,0): 90, 59, 56, (346,425,0): 91, 60, 57, (346,426,0): 94, 60, 58, (346,427,0): 96, 61, 59, (346,428,0): 100, 62, 61, (346,429,0): 102, 63, 64, (346,430,0): 105, 65, 66, (346,431,0): 107, 65, 67, (346,432,0): 105, 63, 67, (346,433,0): 102, 57, 62, (346,434,0): 94, 52, 56, (346,435,0): 90, 48, 52, (346,436,0): 88, 46, 50, (346,437,0): 86, 44, 48, (346,438,0): 82, 41, 45, (346,439,0): 80, 40, 41, (346,440,0): 78, 37, 41, (346,441,0): 78, 39, 40, (346,442,0): 80, 41, 42, (346,443,0): 81, 42, 43, (346,444,0): 81, 42, 43, (346,445,0): 78, 42, 42, (346,446,0): 79, 40, 41, (346,447,0): 76, 40, 42, (346,448,0): 78, 41, 48, (346,449,0): 78, 41, 49, (346,450,0): 80, 40, 48, (346,451,0): 80, 40, 48, (346,452,0): 79, 40, 45, (346,453,0): 77, 38, 41, (346,454,0): 76, 37, 40, (346,455,0): 72, 36, 36, (346,456,0): 77, 42, 40, (346,457,0): 76, 43, 38, (346,458,0): 73, 42, 37, (346,459,0): 72, 45, 38, (346,460,0): 71, 46, 39, (346,461,0): 69, 49, 40, (346,462,0): 71, 51, 42, (346,463,0): 72, 52, 43, (346,464,0): 74, 51, 43, (346,465,0): 71, 48, 40, (346,466,0): 69, 46, 38, (346,467,0): 70, 47, 39, (346,468,0): 71, 48, 42, (346,469,0): 69, 49, 42, (346,470,0): 67, 46, 41, (346,471,0): 65, 44, 41, (346,472,0): 56, 36, 35, (346,473,0): 53, 33, 32, (346,474,0): 51, 31, 32, (346,475,0): 50, 32, 32, (346,476,0): 52, 33, 35, (346,477,0): 54, 35, 37, (346,478,0): 51, 35, 38, (346,479,0): 52, 33, 35, (346,480,0): 56, 35, 32, (346,481,0): 57, 36, 31, (346,482,0): 56, 39, 32, (346,483,0): 56, 41, 34, (346,484,0): 56, 46, 37, (346,485,0): 60, 50, 41, (346,486,0): 65, 52, 44, (346,487,0): 69, 54, 47, (346,488,0): 70, 53, 46, (346,489,0): 72, 51, 46, (346,490,0): 74, 53, 48, (346,491,0): 77, 56, 51, (346,492,0): 80, 61, 55, (346,493,0): 85, 68, 61, (346,494,0): 89, 74, 67, (346,495,0): 91, 78, 70, (346,496,0): 87, 77, 67, (346,497,0): 83, 75, 64, (346,498,0): 79, 69, 60, (346,499,0): 74, 64, 55, (346,500,0): 70, 60, 51, (346,501,0): 68, 58, 49, (346,502,0): 69, 56, 50, (346,503,0): 69, 56, 50, (346,504,0): 72, 58, 55, (346,505,0): 74, 60, 57, (346,506,0): 77, 62, 59, (346,507,0): 77, 62, 59, (346,508,0): 77, 59, 59, (346,509,0): 75, 57, 57, (346,510,0): 76, 58, 58, (346,511,0): 77, 59, 59, (346,512,0): 72, 52, 51, (346,513,0): 71, 50, 47, (346,514,0): 68, 47, 44, (346,515,0): 65, 44, 41, (346,516,0): 64, 43, 40, (346,517,0): 64, 43, 40, (346,518,0): 66, 45, 42, (346,519,0): 67, 46, 43, (346,520,0): 68, 47, 44, (346,521,0): 67, 46, 43, (346,522,0): 67, 46, 43, (346,523,0): 68, 47, 44, (346,524,0): 69, 48, 45, (346,525,0): 68, 47, 44, (346,526,0): 63, 42, 39, (346,527,0): 59, 38, 37, (346,528,0): 60, 34, 37, (346,529,0): 59, 33, 36, (346,530,0): 57, 32, 35, (346,531,0): 58, 36, 38, (346,532,0): 62, 40, 42, (346,533,0): 64, 44, 45, (346,534,0): 62, 44, 44, (346,535,0): 61, 43, 43, (346,536,0): 64, 46, 46, (346,537,0): 63, 45, 45, (346,538,0): 63, 43, 44, (346,539,0): 60, 40, 41, (346,540,0): 60, 35, 38, (346,541,0): 57, 32, 35, (346,542,0): 55, 29, 32, (346,543,0): 53, 27, 30, (346,544,0): 55, 28, 33, (346,545,0): 54, 27, 32, (346,546,0): 53, 28, 32, (346,547,0): 50, 28, 31, (346,548,0): 48, 28, 30, (346,549,0): 46, 27, 29, (346,550,0): 44, 28, 29, (346,551,0): 42, 28, 28, (346,552,0): 47, 33, 33, (346,553,0): 44, 32, 32, (346,554,0): 46, 32, 32, (346,555,0): 45, 31, 31, (346,556,0): 46, 30, 31, (346,557,0): 45, 29, 30, (346,558,0): 46, 27, 29, (346,559,0): 44, 28, 31, (346,560,0): 41, 28, 35, (346,561,0): 39, 28, 36, (346,562,0): 37, 26, 34, (346,563,0): 37, 26, 34, (346,564,0): 38, 25, 32, (346,565,0): 40, 27, 34, (346,566,0): 44, 29, 34, (346,567,0): 45, 30, 35, (346,568,0): 45, 30, 35, (346,569,0): 46, 31, 36, (346,570,0): 50, 34, 37, (346,571,0): 53, 37, 40, (346,572,0): 57, 38, 40, (346,573,0): 59, 40, 42, (346,574,0): 59, 40, 42, (346,575,0): 57, 41, 42, (346,576,0): 60, 48, 48, (346,577,0): 59, 51, 49, (346,578,0): 61, 53, 51, (346,579,0): 63, 55, 53, (346,580,0): 62, 57, 54, (346,581,0): 62, 57, 54, (346,582,0): 61, 56, 53, (346,583,0): 61, 56, 53, (346,584,0): 58, 54, 51, (346,585,0): 60, 56, 53, (346,586,0): 60, 59, 55, (346,587,0): 63, 62, 58, (346,588,0): 64, 63, 59, (346,589,0): 63, 62, 58, (346,590,0): 61, 62, 57, (346,591,0): 61, 60, 56, (346,592,0): 59, 55, 56, (346,593,0): 59, 53, 55, (346,594,0): 57, 51, 53, (346,595,0): 55, 49, 51, (346,596,0): 53, 47, 49, (346,597,0): 51, 45, 47, (346,598,0): 49, 43, 45, (346,599,0): 48, 42, 44, (347,0,0): 77, 60, 50, (347,1,0): 77, 60, 50, (347,2,0): 78, 61, 51, (347,3,0): 78, 61, 51, (347,4,0): 79, 62, 52, (347,5,0): 80, 63, 53, (347,6,0): 81, 64, 54, (347,7,0): 81, 64, 54, (347,8,0): 82, 65, 55, (347,9,0): 82, 65, 55, (347,10,0): 83, 66, 56, (347,11,0): 83, 66, 56, (347,12,0): 82, 65, 55, (347,13,0): 81, 64, 54, (347,14,0): 79, 62, 52, (347,15,0): 79, 61, 51, (347,16,0): 79, 58, 53, (347,17,0): 79, 58, 53, (347,18,0): 80, 59, 54, (347,19,0): 81, 60, 55, (347,20,0): 81, 61, 54, (347,21,0): 82, 62, 55, (347,22,0): 82, 62, 55, (347,23,0): 83, 63, 54, (347,24,0): 85, 65, 56, (347,25,0): 86, 66, 57, (347,26,0): 86, 66, 55, (347,27,0): 87, 67, 56, (347,28,0): 88, 68, 57, (347,29,0): 88, 68, 57, (347,30,0): 89, 70, 56, (347,31,0): 88, 70, 56, (347,32,0): 87, 69, 57, (347,33,0): 86, 70, 57, (347,34,0): 85, 67, 55, (347,35,0): 84, 66, 54, (347,36,0): 82, 64, 52, (347,37,0): 81, 63, 51, (347,38,0): 81, 61, 50, (347,39,0): 80, 60, 49, (347,40,0): 83, 61, 50, (347,41,0): 84, 62, 51, (347,42,0): 84, 62, 51, (347,43,0): 84, 62, 51, (347,44,0): 85, 61, 51, (347,45,0): 84, 60, 50, (347,46,0): 82, 58, 48, (347,47,0): 82, 57, 50, (347,48,0): 81, 56, 52, (347,49,0): 83, 55, 52, (347,50,0): 83, 55, 52, (347,51,0): 83, 55, 52, (347,52,0): 83, 55, 51, (347,53,0): 83, 55, 51, (347,54,0): 85, 56, 50, (347,55,0): 85, 56, 48, (347,56,0): 89, 59, 51, (347,57,0): 88, 58, 48, (347,58,0): 88, 58, 47, (347,59,0): 88, 58, 47, (347,60,0): 92, 60, 47, (347,61,0): 93, 61, 48, (347,62,0): 95, 63, 50, (347,63,0): 97, 65, 50, (347,64,0): 105, 74, 56, (347,65,0): 107, 74, 57, (347,66,0): 111, 76, 57, (347,67,0): 115, 78, 59, (347,68,0): 122, 81, 59, (347,69,0): 126, 84, 60, (347,70,0): 131, 85, 59, (347,71,0): 133, 86, 56, (347,72,0): 136, 90, 56, (347,73,0): 144, 96, 58, (347,74,0): 153, 106, 64, (347,75,0): 159, 112, 68, (347,76,0): 163, 117, 68, (347,77,0): 165, 122, 71, (347,78,0): 168, 125, 74, (347,79,0): 171, 129, 71, (347,80,0): 181, 136, 71, (347,81,0): 182, 134, 68, (347,82,0): 180, 135, 70, (347,83,0): 180, 134, 74, (347,84,0): 179, 134, 75, (347,85,0): 176, 133, 78, (347,86,0): 174, 133, 81, (347,87,0): 170, 133, 81, (347,88,0): 164, 126, 77, (347,89,0): 159, 125, 77, (347,90,0): 155, 121, 73, (347,91,0): 152, 122, 72, (347,92,0): 154, 124, 72, (347,93,0): 155, 128, 75, (347,94,0): 159, 132, 77, (347,95,0): 161, 136, 79, (347,96,0): 168, 149, 81, (347,97,0): 174, 157, 85, (347,98,0): 185, 168, 96, (347,99,0): 193, 179, 104, (347,100,0): 197, 185, 109, (347,101,0): 196, 187, 108, (347,102,0): 193, 186, 106, (347,103,0): 190, 185, 104, (347,104,0): 187, 184, 103, (347,105,0): 186, 185, 105, (347,106,0): 183, 184, 106, (347,107,0): 182, 185, 108, (347,108,0): 180, 184, 108, (347,109,0): 177, 183, 109, (347,110,0): 176, 182, 110, (347,111,0): 174, 181, 113, (347,112,0): 172, 181, 116, (347,113,0): 172, 181, 118, (347,114,0): 172, 180, 120, (347,115,0): 171, 181, 118, (347,116,0): 170, 180, 117, (347,117,0): 170, 180, 117, (347,118,0): 169, 181, 117, (347,119,0): 169, 181, 117, (347,120,0): 170, 182, 118, (347,121,0): 169, 184, 119, (347,122,0): 170, 185, 120, (347,123,0): 172, 187, 122, (347,124,0): 172, 188, 123, (347,125,0): 174, 190, 125, (347,126,0): 175, 191, 126, (347,127,0): 174, 193, 127, (347,128,0): 171, 192, 125, (347,129,0): 172, 193, 126, (347,130,0): 172, 195, 127, (347,131,0): 173, 196, 128, (347,132,0): 175, 197, 132, (347,133,0): 176, 198, 133, (347,134,0): 177, 199, 134, (347,135,0): 178, 200, 136, (347,136,0): 176, 198, 134, (347,137,0): 175, 195, 132, (347,138,0): 176, 191, 132, (347,139,0): 176, 190, 131, (347,140,0): 174, 183, 128, (347,141,0): 163, 170, 116, (347,142,0): 147, 152, 98, (347,143,0): 133, 137, 87, (347,144,0): 118, 123, 82, (347,145,0): 111, 115, 78, (347,146,0): 108, 112, 75, (347,147,0): 108, 115, 74, (347,148,0): 106, 113, 71, (347,149,0): 102, 111, 66, (347,150,0): 101, 113, 67, (347,151,0): 104, 120, 71, (347,152,0): 117, 135, 87, (347,153,0): 127, 151, 101, (347,154,0): 143, 171, 120, (347,155,0): 156, 188, 138, (347,156,0): 161, 198, 147, (347,157,0): 158, 200, 150, (347,158,0): 156, 200, 151, (347,159,0): 155, 198, 152, (347,160,0): 156, 199, 156, (347,161,0): 157, 199, 159, (347,162,0): 159, 200, 158, (347,163,0): 160, 203, 160, (347,164,0): 163, 206, 163, (347,165,0): 163, 208, 165, (347,166,0): 165, 210, 169, (347,167,0): 165, 212, 168, (347,168,0): 168, 213, 170, (347,169,0): 168, 215, 171, (347,170,0): 170, 217, 173, (347,171,0): 171, 220, 175, (347,172,0): 173, 222, 177, (347,173,0): 173, 225, 177, (347,174,0): 177, 226, 181, (347,175,0): 178, 227, 180, (347,176,0): 182, 232, 181, (347,177,0): 183, 231, 179, (347,178,0): 182, 230, 178, (347,179,0): 182, 230, 178, (347,180,0): 183, 231, 179, (347,181,0): 185, 233, 181, (347,182,0): 188, 236, 184, (347,183,0): 190, 238, 186, (347,184,0): 189, 237, 185, (347,185,0): 190, 238, 186, (347,186,0): 192, 240, 188, (347,187,0): 194, 242, 190, (347,188,0): 197, 245, 193, (347,189,0): 199, 247, 195, (347,190,0): 201, 249, 197, (347,191,0): 203, 250, 196, (347,192,0): 209, 249, 197, (347,193,0): 210, 249, 196, (347,194,0): 209, 248, 195, (347,195,0): 209, 248, 193, (347,196,0): 209, 249, 189, (347,197,0): 211, 249, 188, (347,198,0): 211, 250, 187, (347,199,0): 212, 251, 186, (347,200,0): 211, 247, 183, (347,201,0): 212, 248, 184, (347,202,0): 214, 249, 185, (347,203,0): 213, 248, 184, (347,204,0): 211, 246, 182, (347,205,0): 206, 240, 179, (347,206,0): 202, 236, 175, (347,207,0): 198, 233, 177, (347,208,0): 187, 229, 179, (347,209,0): 180, 226, 179, (347,210,0): 177, 223, 177, (347,211,0): 177, 223, 177, (347,212,0): 179, 225, 179, (347,213,0): 179, 224, 181, (347,214,0): 177, 222, 181, (347,215,0): 174, 219, 180, (347,216,0): 174, 219, 180, (347,217,0): 175, 219, 183, (347,218,0): 175, 219, 184, (347,219,0): 175, 219, 186, (347,220,0): 175, 219, 186, (347,221,0): 173, 216, 186, (347,222,0): 172, 215, 185, (347,223,0): 170, 213, 183, (347,224,0): 170, 213, 186, (347,225,0): 170, 212, 188, (347,226,0): 169, 211, 187, (347,227,0): 168, 210, 186, (347,228,0): 167, 209, 185, (347,229,0): 166, 208, 186, (347,230,0): 166, 208, 186, (347,231,0): 165, 207, 185, (347,232,0): 166, 208, 186, (347,233,0): 166, 208, 188, (347,234,0): 167, 209, 189, (347,235,0): 167, 209, 189, (347,236,0): 168, 210, 190, (347,237,0): 169, 210, 192, (347,238,0): 171, 210, 192, (347,239,0): 171, 209, 194, (347,240,0): 172, 209, 201, (347,241,0): 172, 209, 202, (347,242,0): 173, 210, 203, (347,243,0): 173, 210, 203, (347,244,0): 172, 209, 202, (347,245,0): 171, 207, 203, (347,246,0): 169, 205, 201, (347,247,0): 168, 204, 200, (347,248,0): 165, 201, 199, (347,249,0): 166, 202, 200, (347,250,0): 167, 203, 203, (347,251,0): 169, 205, 205, (347,252,0): 172, 208, 208, (347,253,0): 174, 210, 210, (347,254,0): 175, 211, 211, (347,255,0): 176, 211, 213, (347,256,0): 176, 209, 214, (347,257,0): 176, 209, 214, (347,258,0): 175, 208, 215, (347,259,0): 174, 209, 215, (347,260,0): 173, 207, 216, (347,261,0): 171, 208, 216, (347,262,0): 169, 207, 216, (347,263,0): 169, 207, 216, (347,264,0): 165, 205, 215, (347,265,0): 162, 204, 216, (347,266,0): 161, 205, 216, (347,267,0): 160, 204, 217, (347,268,0): 158, 204, 217, (347,269,0): 157, 203, 218, (347,270,0): 157, 203, 218, (347,271,0): 156, 203, 219, (347,272,0): 158, 206, 226, (347,273,0): 158, 206, 228, (347,274,0): 158, 206, 228, (347,275,0): 158, 206, 228, (347,276,0): 157, 205, 228, (347,277,0): 155, 203, 226, (347,278,0): 153, 201, 224, (347,279,0): 152, 199, 225, (347,280,0): 153, 200, 226, (347,281,0): 152, 199, 225, (347,282,0): 151, 198, 224, (347,283,0): 149, 196, 224, (347,284,0): 149, 196, 224, (347,285,0): 149, 196, 224, (347,286,0): 150, 197, 225, (347,287,0): 150, 197, 225, (347,288,0): 151, 196, 225, (347,289,0): 152, 197, 226, (347,290,0): 153, 196, 228, (347,291,0): 153, 196, 228, (347,292,0): 155, 196, 228, (347,293,0): 155, 196, 228, (347,294,0): 156, 194, 230, (347,295,0): 155, 193, 229, (347,296,0): 159, 193, 231, (347,297,0): 159, 193, 231, (347,298,0): 160, 192, 231, (347,299,0): 161, 193, 232, (347,300,0): 164, 193, 235, (347,301,0): 164, 193, 235, (347,302,0): 165, 192, 235, (347,303,0): 166, 193, 236, (347,304,0): 167, 196, 238, (347,305,0): 165, 194, 236, (347,306,0): 167, 191, 237, (347,307,0): 168, 191, 235, (347,308,0): 168, 189, 232, (347,309,0): 166, 183, 226, (347,310,0): 161, 175, 214, (347,311,0): 159, 167, 204, (347,312,0): 146, 150, 185, (347,313,0): 146, 145, 176, (347,314,0): 141, 137, 162, (347,315,0): 136, 128, 151, (347,316,0): 131, 122, 139, (347,317,0): 130, 119, 133, (347,318,0): 131, 117, 130, (347,319,0): 131, 117, 130, (347,320,0): 132, 118, 133, (347,321,0): 133, 116, 132, (347,322,0): 135, 114, 131, (347,323,0): 138, 113, 132, (347,324,0): 142, 113, 133, (347,325,0): 145, 112, 131, (347,326,0): 147, 109, 124, (347,327,0): 147, 107, 118, (347,328,0): 131, 90, 96, (347,329,0): 117, 76, 80, (347,330,0): 100, 60, 61, (347,331,0): 87, 48, 49, (347,332,0): 81, 45, 47, (347,333,0): 79, 44, 50, (347,334,0): 76, 41, 48, (347,335,0): 70, 37, 44, (347,336,0): 66, 34, 39, (347,337,0): 65, 33, 36, (347,338,0): 64, 34, 36, (347,339,0): 63, 33, 35, (347,340,0): 60, 31, 35, (347,341,0): 59, 30, 34, (347,342,0): 57, 31, 34, (347,343,0): 56, 30, 33, (347,344,0): 56, 31, 35, (347,345,0): 53, 31, 34, (347,346,0): 52, 31, 36, (347,347,0): 51, 30, 35, (347,348,0): 49, 30, 34, (347,349,0): 49, 30, 34, (347,350,0): 46, 29, 35, (347,351,0): 48, 29, 35, (347,352,0): 54, 31, 37, (347,353,0): 57, 30, 35, (347,354,0): 60, 31, 36, (347,355,0): 63, 32, 37, (347,356,0): 68, 33, 37, (347,357,0): 70, 34, 36, (347,358,0): 74, 34, 35, (347,359,0): 78, 34, 33, (347,360,0): 87, 39, 39, (347,361,0): 92, 41, 38, (347,362,0): 100, 45, 42, (347,363,0): 106, 48, 44, (347,364,0): 109, 48, 43, (347,365,0): 110, 47, 40, (347,366,0): 109, 44, 38, (347,367,0): 104, 43, 38, (347,368,0): 93, 39, 37, (347,369,0): 89, 41, 39, (347,370,0): 88, 40, 38, (347,371,0): 87, 39, 37, (347,372,0): 87, 39, 39, (347,373,0): 87, 39, 39, (347,374,0): 85, 39, 41, (347,375,0): 85, 39, 41, (347,376,0): 83, 37, 39, (347,377,0): 83, 37, 39, (347,378,0): 81, 35, 38, (347,379,0): 80, 35, 38, (347,380,0): 80, 35, 40, (347,381,0): 80, 35, 40, (347,382,0): 82, 37, 42, (347,383,0): 82, 37, 40, (347,384,0): 80, 36, 37, (347,385,0): 81, 37, 36, (347,386,0): 82, 36, 36, (347,387,0): 82, 38, 37, (347,388,0): 84, 38, 38, (347,389,0): 84, 40, 39, (347,390,0): 85, 39, 39, (347,391,0): 85, 41, 40, (347,392,0): 85, 39, 39, (347,393,0): 85, 41, 40, (347,394,0): 89, 43, 43, (347,395,0): 89, 45, 44, (347,396,0): 90, 44, 44, (347,397,0): 88, 44, 43, (347,398,0): 87, 41, 41, (347,399,0): 85, 41, 42, (347,400,0): 82, 42, 43, (347,401,0): 79, 40, 41, (347,402,0): 78, 38, 39, (347,403,0): 75, 36, 37, (347,404,0): 74, 34, 35, (347,405,0): 72, 33, 34, (347,406,0): 73, 33, 34, (347,407,0): 72, 33, 34, (347,408,0): 75, 35, 36, (347,409,0): 73, 34, 35, (347,410,0): 74, 34, 35, (347,411,0): 73, 34, 35, (347,412,0): 75, 35, 36, (347,413,0): 76, 37, 38, (347,414,0): 79, 39, 40, (347,415,0): 79, 40, 41, (347,416,0): 80, 41, 44, (347,417,0): 79, 43, 45, (347,418,0): 78, 44, 45, (347,419,0): 76, 42, 43, (347,420,0): 74, 42, 43, (347,421,0): 76, 44, 45, (347,422,0): 81, 51, 49, (347,423,0): 86, 56, 54, (347,424,0): 89, 60, 56, (347,425,0): 90, 59, 56, (347,426,0): 92, 58, 56, (347,427,0): 94, 59, 57, (347,428,0): 98, 60, 59, (347,429,0): 101, 63, 62, (347,430,0): 105, 65, 65, (347,431,0): 107, 65, 66, (347,432,0): 106, 64, 66, (347,433,0): 102, 57, 60, (347,434,0): 92, 50, 54, (347,435,0): 87, 45, 49, (347,436,0): 85, 43, 47, (347,437,0): 82, 41, 45, (347,438,0): 80, 39, 43, (347,439,0): 77, 38, 41, (347,440,0): 77, 38, 41, (347,441,0): 77, 38, 41, (347,442,0): 76, 37, 40, (347,443,0): 73, 37, 39, (347,444,0): 72, 36, 38, (347,445,0): 71, 37, 38, (347,446,0): 72, 36, 38, (347,447,0): 71, 36, 40, (347,448,0): 69, 36, 43, (347,449,0): 69, 36, 45, (347,450,0): 72, 37, 44, (347,451,0): 72, 37, 44, (347,452,0): 71, 36, 42, (347,453,0): 71, 35, 39, (347,454,0): 69, 33, 37, (347,455,0): 68, 32, 34, (347,456,0): 73, 39, 38, (347,457,0): 71, 40, 37, (347,458,0): 72, 41, 38, (347,459,0): 71, 44, 37, (347,460,0): 71, 46, 39, (347,461,0): 73, 51, 40, (347,462,0): 73, 53, 42, (347,463,0): 75, 55, 44, (347,464,0): 76, 54, 43, (347,465,0): 73, 51, 40, (347,466,0): 71, 48, 40, (347,467,0): 70, 47, 39, (347,468,0): 69, 49, 42, (347,469,0): 69, 49, 42, (347,470,0): 66, 45, 40, (347,471,0): 63, 44, 38, (347,472,0): 57, 37, 36, (347,473,0): 54, 34, 33, (347,474,0): 50, 32, 32, (347,475,0): 51, 33, 33, (347,476,0): 54, 35, 37, (347,477,0): 56, 37, 39, (347,478,0): 53, 37, 40, (347,479,0): 54, 35, 37, (347,480,0): 59, 35, 33, (347,481,0): 59, 35, 31, (347,482,0): 56, 37, 31, (347,483,0): 57, 40, 33, (347,484,0): 56, 43, 35, (347,485,0): 60, 47, 39, (347,486,0): 64, 51, 43, (347,487,0): 68, 53, 46, (347,488,0): 70, 53, 46, (347,489,0): 72, 53, 47, (347,490,0): 74, 55, 49, (347,491,0): 78, 59, 53, (347,492,0): 83, 66, 59, (347,493,0): 88, 75, 67, (347,494,0): 92, 82, 73, (347,495,0): 95, 86, 77, (347,496,0): 92, 84, 73, (347,497,0): 88, 80, 69, (347,498,0): 82, 73, 64, (347,499,0): 76, 67, 58, (347,500,0): 72, 62, 53, (347,501,0): 68, 58, 49, (347,502,0): 69, 56, 50, (347,503,0): 68, 55, 49, (347,504,0): 70, 56, 53, (347,505,0): 72, 58, 55, (347,506,0): 75, 60, 57, (347,507,0): 77, 62, 59, (347,508,0): 78, 60, 60, (347,509,0): 77, 59, 59, (347,510,0): 76, 58, 58, (347,511,0): 75, 57, 55, (347,512,0): 71, 50, 47, (347,513,0): 69, 48, 45, (347,514,0): 67, 46, 43, (347,515,0): 65, 44, 41, (347,516,0): 65, 44, 41, (347,517,0): 67, 46, 43, (347,518,0): 69, 48, 45, (347,519,0): 70, 49, 46, (347,520,0): 71, 50, 47, (347,521,0): 69, 48, 45, (347,522,0): 69, 48, 45, (347,523,0): 70, 49, 46, (347,524,0): 71, 50, 47, (347,525,0): 69, 48, 45, (347,526,0): 64, 43, 40, (347,527,0): 60, 39, 36, (347,528,0): 60, 34, 35, (347,529,0): 58, 32, 35, (347,530,0): 55, 30, 33, (347,531,0): 55, 33, 35, (347,532,0): 59, 37, 39, (347,533,0): 61, 41, 42, (347,534,0): 61, 43, 43, (347,535,0): 60, 42, 42, (347,536,0): 62, 44, 44, (347,537,0): 62, 44, 44, (347,538,0): 63, 43, 44, (347,539,0): 61, 41, 42, (347,540,0): 61, 36, 39, (347,541,0): 56, 31, 34, (347,542,0): 53, 27, 30, (347,543,0): 51, 25, 28, (347,544,0): 54, 27, 32, (347,545,0): 53, 28, 32, (347,546,0): 50, 28, 31, (347,547,0): 48, 28, 30, (347,548,0): 46, 27, 29, (347,549,0): 43, 27, 28, (347,550,0): 42, 28, 28, (347,551,0): 41, 27, 27, (347,552,0): 43, 31, 31, (347,553,0): 43, 31, 31, (347,554,0): 46, 32, 32, (347,555,0): 47, 33, 33, (347,556,0): 48, 32, 33, (347,557,0): 47, 31, 32, (347,558,0): 49, 30, 32, (347,559,0): 46, 30, 33, (347,560,0): 44, 31, 38, (347,561,0): 41, 30, 38, (347,562,0): 38, 27, 35, (347,563,0): 36, 25, 33, (347,564,0): 36, 23, 30, (347,565,0): 38, 25, 32, (347,566,0): 43, 28, 33, (347,567,0): 45, 30, 35, (347,568,0): 43, 28, 33, (347,569,0): 45, 30, 35, (347,570,0): 49, 33, 36, (347,571,0): 52, 36, 39, (347,572,0): 57, 38, 40, (347,573,0): 59, 40, 42, (347,574,0): 59, 40, 42, (347,575,0): 57, 41, 42, (347,576,0): 60, 50, 49, (347,577,0): 61, 53, 51, (347,578,0): 63, 55, 53, (347,579,0): 65, 57, 55, (347,580,0): 64, 59, 56, (347,581,0): 63, 58, 55, (347,582,0): 62, 57, 54, (347,583,0): 60, 56, 53, (347,584,0): 56, 52, 49, (347,585,0): 58, 54, 51, (347,586,0): 59, 58, 54, (347,587,0): 61, 60, 56, (347,588,0): 63, 62, 58, (347,589,0): 63, 62, 58, (347,590,0): 62, 63, 58, (347,591,0): 63, 62, 58, (347,592,0): 60, 56, 57, (347,593,0): 60, 54, 56, (347,594,0): 59, 53, 55, (347,595,0): 56, 50, 52, (347,596,0): 54, 48, 50, (347,597,0): 51, 45, 47, (347,598,0): 49, 43, 45, (347,599,0): 48, 42, 44, (348,0,0): 78, 60, 50, (348,1,0): 78, 60, 50, (348,2,0): 79, 61, 51, (348,3,0): 80, 62, 52, (348,4,0): 82, 64, 54, (348,5,0): 83, 65, 55, (348,6,0): 84, 66, 56, (348,7,0): 84, 66, 56, (348,8,0): 84, 66, 56, (348,9,0): 85, 67, 57, (348,10,0): 86, 68, 58, (348,11,0): 86, 68, 58, (348,12,0): 86, 68, 58, (348,13,0): 85, 67, 57, (348,14,0): 83, 65, 55, (348,15,0): 82, 64, 54, (348,16,0): 81, 60, 55, (348,17,0): 81, 60, 55, (348,18,0): 82, 62, 55, (348,19,0): 82, 62, 55, (348,20,0): 82, 62, 55, (348,21,0): 83, 63, 56, (348,22,0): 83, 63, 54, (348,23,0): 83, 63, 54, (348,24,0): 86, 66, 57, (348,25,0): 87, 67, 56, (348,26,0): 87, 67, 56, (348,27,0): 87, 67, 56, (348,28,0): 88, 69, 55, (348,29,0): 88, 69, 55, (348,30,0): 88, 69, 55, (348,31,0): 87, 69, 55, (348,32,0): 88, 70, 56, (348,33,0): 86, 70, 55, (348,34,0): 86, 68, 54, (348,35,0): 84, 66, 52, (348,36,0): 83, 65, 51, (348,37,0): 81, 63, 49, (348,38,0): 81, 62, 48, (348,39,0): 80, 61, 47, (348,40,0): 84, 62, 49, (348,41,0): 85, 63, 50, (348,42,0): 86, 64, 51, (348,43,0): 86, 64, 51, (348,44,0): 87, 63, 51, (348,45,0): 85, 61, 49, (348,46,0): 83, 59, 47, (348,47,0): 82, 58, 48, (348,48,0): 85, 57, 53, (348,49,0): 86, 56, 54, (348,50,0): 85, 55, 53, (348,51,0): 85, 56, 52, (348,52,0): 85, 56, 52, (348,53,0): 85, 56, 52, (348,54,0): 85, 56, 50, (348,55,0): 85, 56, 48, (348,56,0): 91, 61, 53, (348,57,0): 90, 60, 50, (348,58,0): 89, 59, 48, (348,59,0): 89, 59, 48, (348,60,0): 89, 59, 48, (348,61,0): 91, 62, 48, (348,62,0): 92, 63, 49, (348,63,0): 93, 64, 48, (348,64,0): 100, 71, 53, (348,65,0): 103, 72, 54, (348,66,0): 107, 74, 57, (348,67,0): 112, 77, 58, (348,68,0): 117, 79, 60, (348,69,0): 122, 81, 59, (348,70,0): 127, 82, 59, (348,71,0): 130, 84, 58, (348,72,0): 128, 81, 53, (348,73,0): 134, 88, 55, (348,74,0): 142, 96, 60, (348,75,0): 149, 104, 63, (348,76,0): 155, 110, 68, (348,77,0): 160, 116, 71, (348,78,0): 166, 122, 75, (348,79,0): 171, 128, 77, (348,80,0): 180, 134, 75, (348,81,0): 179, 133, 71, (348,82,0): 178, 132, 72, (348,83,0): 176, 130, 71, (348,84,0): 173, 128, 71, (348,85,0): 169, 126, 71, (348,86,0): 168, 127, 75, (348,87,0): 165, 128, 76, (348,88,0): 169, 132, 80, (348,89,0): 164, 131, 80, (348,90,0): 162, 129, 78, (348,91,0): 157, 127, 75, (348,92,0): 156, 126, 74, (348,93,0): 156, 129, 76, (348,94,0): 158, 133, 79, (348,95,0): 160, 135, 78, (348,96,0): 161, 142, 76, (348,97,0): 166, 149, 79, (348,98,0): 176, 159, 89, (348,99,0): 184, 170, 97, (348,100,0): 191, 179, 105, (348,101,0): 193, 184, 107, (348,102,0): 191, 184, 106, (348,103,0): 189, 183, 105, (348,104,0): 187, 184, 105, (348,105,0): 185, 183, 106, (348,106,0): 182, 183, 107, (348,107,0): 179, 181, 106, (348,108,0): 177, 181, 107, (348,109,0): 174, 180, 108, (348,110,0): 174, 180, 110, (348,111,0): 172, 179, 112, (348,112,0): 170, 179, 116, (348,113,0): 169, 179, 118, (348,114,0): 169, 179, 119, (348,115,0): 169, 179, 118, (348,116,0): 170, 180, 119, (348,117,0): 169, 181, 119, (348,118,0): 169, 181, 119, (348,119,0): 169, 181, 119, (348,120,0): 169, 183, 121, (348,121,0): 170, 184, 122, (348,122,0): 171, 186, 121, (348,123,0): 172, 188, 123, (348,124,0): 173, 189, 124, (348,125,0): 175, 191, 126, (348,126,0): 174, 193, 127, (348,127,0): 175, 194, 128, (348,128,0): 172, 193, 126, (348,129,0): 171, 194, 126, (348,130,0): 172, 194, 129, (348,131,0): 173, 195, 130, (348,132,0): 173, 198, 133, (348,133,0): 174, 199, 134, (348,134,0): 175, 200, 135, (348,135,0): 175, 199, 137, (348,136,0): 177, 199, 137, (348,137,0): 175, 195, 134, (348,138,0): 174, 192, 134, (348,139,0): 174, 189, 132, (348,140,0): 170, 183, 127, (348,141,0): 160, 171, 115, (348,142,0): 144, 153, 98, (348,143,0): 132, 139, 88, (348,144,0): 118, 125, 83, (348,145,0): 111, 118, 77, (348,146,0): 107, 114, 73, (348,147,0): 109, 116, 74, (348,148,0): 109, 116, 72, (348,149,0): 107, 116, 69, (348,150,0): 108, 122, 73, (348,151,0): 112, 130, 78, (348,152,0): 125, 145, 94, (348,153,0): 134, 161, 108, (348,154,0): 150, 180, 128, (348,155,0): 158, 195, 143, (348,156,0): 161, 201, 149, (348,157,0): 158, 202, 151, (348,158,0): 154, 200, 151, (348,159,0): 153, 201, 153, (348,160,0): 155, 200, 157, (348,161,0): 155, 200, 159, (348,162,0): 159, 201, 161, (348,163,0): 159, 204, 163, (348,164,0): 161, 206, 165, (348,165,0): 162, 209, 167, (348,166,0): 163, 209, 170, (348,167,0): 163, 211, 171, (348,168,0): 166, 212, 173, (348,169,0): 166, 214, 174, (348,170,0): 167, 215, 175, (348,171,0): 167, 218, 177, (348,172,0): 169, 220, 179, (348,173,0): 171, 224, 182, (348,174,0): 173, 223, 185, (348,175,0): 173, 226, 184, (348,176,0): 177, 230, 184, (348,177,0): 176, 230, 181, (348,178,0): 175, 229, 180, (348,179,0): 174, 228, 179, (348,180,0): 175, 229, 180, (348,181,0): 177, 231, 182, (348,182,0): 180, 234, 185, (348,183,0): 181, 235, 186, (348,184,0): 178, 232, 183, (348,185,0): 179, 233, 184, (348,186,0): 181, 235, 186, (348,187,0): 183, 237, 188, (348,188,0): 186, 240, 191, (348,189,0): 188, 242, 193, (348,190,0): 190, 244, 195, (348,191,0): 192, 244, 196, (348,192,0): 199, 245, 198, (348,193,0): 202, 246, 197, (348,194,0): 202, 246, 195, (348,195,0): 202, 246, 193, (348,196,0): 202, 247, 192, (348,197,0): 202, 245, 189, (348,198,0): 202, 246, 187, (348,199,0): 202, 246, 185, (348,200,0): 200, 241, 181, (348,201,0): 199, 240, 180, (348,202,0): 198, 237, 180, (348,203,0): 195, 234, 177, (348,204,0): 193, 232, 177, (348,205,0): 191, 230, 177, (348,206,0): 190, 228, 177, (348,207,0): 188, 227, 180, (348,208,0): 181, 224, 181, (348,209,0): 175, 222, 180, (348,210,0): 172, 218, 179, (348,211,0): 172, 218, 179, (348,212,0): 174, 220, 183, (348,213,0): 174, 220, 184, (348,214,0): 171, 217, 181, (348,215,0): 168, 213, 180, (348,216,0): 168, 213, 180, (348,217,0): 169, 214, 183, (348,218,0): 170, 215, 186, (348,219,0): 170, 214, 187, (348,220,0): 170, 214, 187, (348,221,0): 169, 213, 188, (348,222,0): 167, 211, 186, (348,223,0): 166, 210, 187, (348,224,0): 167, 212, 192, (348,225,0): 167, 212, 192, (348,226,0): 166, 211, 191, (348,227,0): 166, 211, 191, (348,228,0): 165, 210, 190, (348,229,0): 164, 208, 191, (348,230,0): 165, 208, 191, (348,231,0): 165, 208, 191, (348,232,0): 164, 207, 190, (348,233,0): 164, 206, 192, (348,234,0): 165, 207, 193, (348,235,0): 166, 208, 194, (348,236,0): 167, 209, 195, (348,237,0): 168, 210, 198, (348,238,0): 169, 209, 198, (348,239,0): 170, 210, 201, (348,240,0): 167, 207, 199, (348,241,0): 168, 207, 202, (348,242,0): 169, 208, 203, (348,243,0): 169, 208, 203, (348,244,0): 169, 208, 203, (348,245,0): 168, 207, 204, (348,246,0): 166, 205, 202, (348,247,0): 165, 204, 201, (348,248,0): 162, 201, 200, (348,249,0): 163, 202, 201, (348,250,0): 165, 203, 204, (348,251,0): 167, 205, 206, (348,252,0): 170, 208, 209, (348,253,0): 172, 210, 211, (348,254,0): 174, 212, 213, (348,255,0): 177, 212, 216, (348,256,0): 176, 209, 216, (348,257,0): 176, 209, 218, (348,258,0): 174, 208, 217, (348,259,0): 174, 208, 217, (348,260,0): 173, 207, 217, (348,261,0): 171, 208, 217, (348,262,0): 169, 207, 218, (348,263,0): 169, 207, 220, (348,264,0): 166, 206, 218, (348,265,0): 163, 205, 219, (348,266,0): 162, 206, 219, (348,267,0): 162, 205, 221, (348,268,0): 159, 205, 220, (348,269,0): 158, 204, 220, (348,270,0): 157, 204, 220, (348,271,0): 157, 204, 222, (348,272,0): 158, 206, 228, (348,273,0): 159, 207, 230, (348,274,0): 159, 207, 230, (348,275,0): 159, 207, 230, (348,276,0): 158, 205, 231, (348,277,0): 156, 203, 229, (348,278,0): 154, 201, 227, (348,279,0): 153, 200, 228, (348,280,0): 153, 200, 228, (348,281,0): 152, 199, 227, (348,282,0): 151, 198, 226, (348,283,0): 149, 196, 226, (348,284,0): 149, 196, 226, (348,285,0): 149, 196, 226, (348,286,0): 150, 197, 227, (348,287,0): 150, 197, 227, (348,288,0): 152, 197, 226, (348,289,0): 151, 196, 225, (348,290,0): 152, 196, 225, (348,291,0): 152, 196, 225, (348,292,0): 154, 195, 227, (348,293,0): 154, 195, 227, (348,294,0): 155, 193, 229, (348,295,0): 156, 194, 230, (348,296,0): 158, 192, 230, (348,297,0): 159, 193, 231, (348,298,0): 160, 192, 233, (348,299,0): 160, 192, 233, (348,300,0): 163, 192, 236, (348,301,0): 164, 193, 237, (348,302,0): 165, 192, 237, (348,303,0): 164, 193, 237, (348,304,0): 163, 194, 238, (348,305,0): 161, 194, 237, (348,306,0): 164, 192, 239, (348,307,0): 165, 192, 237, (348,308,0): 168, 190, 237, (348,309,0): 167, 186, 229, (348,310,0): 163, 178, 219, (348,311,0): 162, 171, 210, (348,312,0): 149, 155, 191, (348,313,0): 148, 149, 180, (348,314,0): 143, 140, 167, (348,315,0): 136, 131, 153, (348,316,0): 132, 123, 140, (348,317,0): 129, 118, 132, (348,318,0): 129, 116, 126, (348,319,0): 129, 116, 126, (348,320,0): 133, 117, 128, (348,321,0): 133, 115, 127, (348,322,0): 137, 115, 128, (348,323,0): 142, 115, 130, (348,324,0): 147, 116, 131, (348,325,0): 146, 112, 126, (348,326,0): 144, 104, 115, (348,327,0): 140, 99, 107, (348,328,0): 122, 80, 82, (348,329,0): 112, 70, 71, (348,330,0): 96, 56, 54, (348,331,0): 85, 47, 46, (348,332,0): 80, 44, 44, (348,333,0): 77, 42, 46, (348,334,0): 72, 39, 46, (348,335,0): 70, 37, 44, (348,336,0): 66, 34, 39, (348,337,0): 65, 33, 36, (348,338,0): 65, 33, 38, (348,339,0): 63, 32, 37, (348,340,0): 60, 31, 35, (348,341,0): 59, 30, 34, (348,342,0): 57, 30, 35, (348,343,0): 56, 29, 34, (348,344,0): 56, 31, 37, (348,345,0): 53, 30, 36, (348,346,0): 52, 31, 36, (348,347,0): 51, 30, 35, (348,348,0): 49, 30, 36, (348,349,0): 49, 30, 36, (348,350,0): 46, 29, 35, (348,351,0): 48, 29, 35, (348,352,0): 56, 31, 37, (348,353,0): 59, 30, 35, (348,354,0): 60, 31, 36, (348,355,0): 63, 32, 37, (348,356,0): 68, 33, 37, (348,357,0): 72, 33, 36, (348,358,0): 74, 34, 35, (348,359,0): 78, 34, 33, (348,360,0): 87, 39, 39, (348,361,0): 93, 42, 39, (348,362,0): 99, 46, 42, (348,363,0): 106, 48, 44, (348,364,0): 108, 47, 42, (348,365,0): 108, 45, 38, (348,366,0): 104, 41, 34, (348,367,0): 99, 38, 33, (348,368,0): 93, 39, 37, (348,369,0): 90, 40, 41, (348,370,0): 91, 41, 42, (348,371,0): 91, 41, 42, (348,372,0): 91, 41, 42, (348,373,0): 89, 41, 41, (348,374,0): 87, 41, 43, (348,375,0): 87, 41, 43, (348,376,0): 82, 37, 40, (348,377,0): 82, 37, 40, (348,378,0): 80, 35, 40, (348,379,0): 78, 36, 40, (348,380,0): 78, 36, 40, (348,381,0): 78, 36, 40, (348,382,0): 80, 38, 42, (348,383,0): 80, 38, 40, (348,384,0): 80, 34, 36, (348,385,0): 81, 35, 35, (348,386,0): 84, 36, 36, (348,387,0): 83, 37, 37, (348,388,0): 86, 38, 38, (348,389,0): 85, 39, 39, (348,390,0): 88, 40, 40, (348,391,0): 87, 41, 41, (348,392,0): 88, 40, 40, (348,393,0): 88, 42, 42, (348,394,0): 92, 44, 44, (348,395,0): 91, 45, 45, (348,396,0): 93, 45, 45, (348,397,0): 89, 43, 43, (348,398,0): 89, 41, 41, (348,399,0): 84, 40, 41, (348,400,0): 80, 40, 41, (348,401,0): 75, 39, 41, (348,402,0): 75, 36, 39, (348,403,0): 71, 35, 37, (348,404,0): 71, 32, 35, (348,405,0): 68, 32, 34, (348,406,0): 70, 31, 34, (348,407,0): 68, 32, 34, (348,408,0): 72, 33, 36, (348,409,0): 70, 34, 36, (348,410,0): 71, 32, 35, (348,411,0): 70, 34, 36, (348,412,0): 73, 34, 37, (348,413,0): 72, 36, 38, (348,414,0): 76, 37, 40, (348,415,0): 77, 38, 39, (348,416,0): 80, 40, 41, (348,417,0): 81, 41, 42, (348,418,0): 80, 41, 42, (348,419,0): 79, 40, 41, (348,420,0): 76, 40, 40, (348,421,0): 78, 44, 43, (348,422,0): 81, 50, 48, (348,423,0): 86, 55, 53, (348,424,0): 88, 57, 55, (348,425,0): 89, 58, 56, (348,426,0): 92, 58, 56, (348,427,0): 94, 59, 57, (348,428,0): 98, 60, 59, (348,429,0): 101, 61, 61, (348,430,0): 103, 62, 60, (348,431,0): 104, 62, 63, (348,432,0): 103, 61, 62, (348,433,0): 97, 55, 56, (348,434,0): 90, 48, 50, (348,435,0): 84, 42, 44, (348,436,0): 81, 41, 42, (348,437,0): 79, 39, 40, (348,438,0): 77, 37, 38, (348,439,0): 74, 35, 36, (348,440,0): 77, 38, 39, (348,441,0): 74, 38, 38, (348,442,0): 73, 37, 39, (348,443,0): 70, 36, 37, (348,444,0): 69, 35, 36, (348,445,0): 67, 35, 36, (348,446,0): 69, 35, 36, (348,447,0): 67, 35, 38, (348,448,0): 61, 30, 36, (348,449,0): 61, 31, 39, (348,450,0): 63, 32, 40, (348,451,0): 64, 33, 39, (348,452,0): 66, 33, 40, (348,453,0): 68, 33, 39, (348,454,0): 67, 32, 38, (348,455,0): 67, 32, 36, (348,456,0): 70, 35, 39, (348,457,0): 68, 36, 37, (348,458,0): 69, 38, 36, (348,459,0): 69, 41, 37, (348,460,0): 70, 45, 38, (348,461,0): 72, 49, 41, (348,462,0): 75, 52, 44, (348,463,0): 77, 55, 44, (348,464,0): 76, 54, 43, (348,465,0): 73, 51, 38, (348,466,0): 68, 48, 37, (348,467,0): 67, 47, 36, (348,468,0): 67, 47, 38, (348,469,0): 66, 46, 39, (348,470,0): 62, 43, 37, (348,471,0): 59, 40, 34, (348,472,0): 56, 36, 35, (348,473,0): 53, 35, 33, (348,474,0): 50, 32, 32, (348,475,0): 51, 32, 34, (348,476,0): 52, 36, 39, (348,477,0): 55, 39, 42, (348,478,0): 55, 38, 44, (348,479,0): 56, 36, 38, (348,480,0): 62, 36, 35, (348,481,0): 61, 36, 32, (348,482,0): 57, 36, 31, (348,483,0): 57, 38, 32, (348,484,0): 56, 41, 34, (348,485,0): 60, 47, 39, (348,486,0): 64, 51, 43, (348,487,0): 68, 53, 46, (348,488,0): 71, 54, 47, (348,489,0): 72, 55, 48, (348,490,0): 74, 57, 50, (348,491,0): 78, 61, 54, (348,492,0): 82, 69, 61, (348,493,0): 86, 77, 68, (348,494,0): 91, 84, 74, (348,495,0): 93, 89, 78, (348,496,0): 92, 86, 74, (348,497,0): 88, 82, 70, (348,498,0): 82, 75, 65, (348,499,0): 75, 68, 58, (348,500,0): 70, 61, 52, (348,501,0): 67, 58, 49, (348,502,0): 66, 55, 49, (348,503,0): 65, 54, 48, (348,504,0): 68, 54, 51, (348,505,0): 68, 54, 51, (348,506,0): 71, 56, 53, (348,507,0): 73, 58, 55, (348,508,0): 75, 57, 57, (348,509,0): 75, 57, 57, (348,510,0): 73, 55, 55, (348,511,0): 71, 53, 51, (348,512,0): 69, 48, 45, (348,513,0): 68, 47, 42, (348,514,0): 66, 45, 40, (348,515,0): 65, 44, 39, (348,516,0): 66, 45, 40, (348,517,0): 68, 47, 42, (348,518,0): 70, 49, 44, (348,519,0): 72, 51, 46, (348,520,0): 69, 48, 43, (348,521,0): 68, 47, 42, (348,522,0): 68, 47, 42, (348,523,0): 70, 49, 44, (348,524,0): 72, 51, 46, (348,525,0): 70, 49, 44, (348,526,0): 66, 45, 40, (348,527,0): 62, 41, 38, (348,528,0): 61, 35, 36, (348,529,0): 58, 32, 35, (348,530,0): 55, 30, 33, (348,531,0): 54, 32, 34, (348,532,0): 57, 35, 37, (348,533,0): 59, 39, 40, (348,534,0): 58, 40, 40, (348,535,0): 58, 40, 40, (348,536,0): 59, 41, 41, (348,537,0): 60, 42, 42, (348,538,0): 60, 40, 41, (348,539,0): 59, 39, 40, (348,540,0): 59, 34, 37, (348,541,0): 55, 30, 33, (348,542,0): 53, 27, 30, (348,543,0): 50, 24, 27, (348,544,0): 52, 27, 31, (348,545,0): 52, 27, 31, (348,546,0): 50, 28, 31, (348,547,0): 48, 28, 30, (348,548,0): 46, 27, 29, (348,549,0): 44, 28, 29, (348,550,0): 42, 28, 28, (348,551,0): 40, 28, 28, (348,552,0): 42, 30, 30, (348,553,0): 43, 31, 31, (348,554,0): 45, 33, 33, (348,555,0): 47, 35, 35, (348,556,0): 49, 35, 35, (348,557,0): 48, 34, 34, (348,558,0): 48, 32, 33, (348,559,0): 46, 31, 34, (348,560,0): 46, 33, 40, (348,561,0): 42, 31, 39, (348,562,0): 39, 28, 36, (348,563,0): 36, 25, 33, (348,564,0): 35, 24, 30, (348,565,0): 36, 25, 31, (348,566,0): 40, 28, 32, (348,567,0): 41, 29, 33, (348,568,0): 42, 27, 32, (348,569,0): 44, 29, 34, (348,570,0): 48, 32, 35, (348,571,0): 52, 36, 39, (348,572,0): 54, 38, 39, (348,573,0): 56, 40, 41, (348,574,0): 57, 41, 42, (348,575,0): 57, 43, 43, (348,576,0): 61, 51, 50, (348,577,0): 62, 54, 52, (348,578,0): 62, 57, 54, (348,579,0): 64, 59, 56, (348,580,0): 65, 60, 57, (348,581,0): 63, 58, 55, (348,582,0): 60, 56, 53, (348,583,0): 59, 55, 52, (348,584,0): 56, 52, 49, (348,585,0): 55, 54, 50, (348,586,0): 57, 56, 52, (348,587,0): 60, 59, 55, (348,588,0): 61, 62, 57, (348,589,0): 62, 63, 58, (348,590,0): 63, 64, 59, (348,591,0): 64, 63, 59, (348,592,0): 62, 58, 59, (348,593,0): 62, 56, 58, (348,594,0): 60, 54, 56, (348,595,0): 58, 52, 54, (348,596,0): 55, 49, 51, (348,597,0): 52, 46, 48, (348,598,0): 50, 44, 46, (348,599,0): 49, 43, 45, (349,0,0): 78, 60, 50, (349,1,0): 79, 61, 51, (349,2,0): 80, 62, 52, (349,3,0): 81, 63, 53, (349,4,0): 83, 65, 55, (349,5,0): 84, 66, 56, (349,6,0): 85, 67, 57, (349,7,0): 86, 68, 58, (349,8,0): 86, 68, 58, (349,9,0): 86, 68, 58, (349,10,0): 87, 69, 59, (349,11,0): 88, 70, 60, (349,12,0): 88, 70, 60, (349,13,0): 87, 69, 59, (349,14,0): 86, 68, 58, (349,15,0): 85, 67, 57, (349,16,0): 83, 62, 57, (349,17,0): 83, 62, 57, (349,18,0): 83, 63, 56, (349,19,0): 83, 63, 56, (349,20,0): 83, 63, 56, (349,21,0): 83, 63, 56, (349,22,0): 83, 63, 54, (349,23,0): 83, 63, 54, (349,24,0): 86, 66, 55, (349,25,0): 86, 66, 55, (349,26,0): 86, 66, 55, (349,27,0): 86, 66, 55, (349,28,0): 87, 68, 54, (349,29,0): 87, 68, 54, (349,30,0): 87, 68, 54, (349,31,0): 87, 68, 54, (349,32,0): 87, 69, 55, (349,33,0): 86, 70, 55, (349,34,0): 86, 68, 54, (349,35,0): 84, 66, 52, (349,36,0): 82, 64, 50, (349,37,0): 81, 63, 49, (349,38,0): 81, 62, 48, (349,39,0): 80, 61, 47, (349,40,0): 84, 62, 49, (349,41,0): 85, 63, 50, (349,42,0): 87, 65, 52, (349,43,0): 88, 66, 53, (349,44,0): 88, 64, 52, (349,45,0): 86, 62, 50, (349,46,0): 84, 60, 48, (349,47,0): 82, 58, 48, (349,48,0): 88, 59, 55, (349,49,0): 88, 58, 56, (349,50,0): 88, 59, 55, (349,51,0): 87, 58, 54, (349,52,0): 87, 58, 54, (349,53,0): 86, 57, 51, (349,54,0): 86, 57, 51, (349,55,0): 86, 57, 49, (349,56,0): 91, 61, 51, (349,57,0): 91, 61, 51, (349,58,0): 90, 60, 49, (349,59,0): 89, 59, 48, (349,60,0): 90, 60, 49, (349,61,0): 91, 61, 50, (349,62,0): 92, 63, 49, (349,63,0): 93, 64, 48, (349,64,0): 97, 68, 52, (349,65,0): 98, 69, 51, (349,66,0): 103, 72, 54, (349,67,0): 107, 74, 57, (349,68,0): 113, 76, 58, (349,69,0): 117, 79, 60, (349,70,0): 123, 81, 59, (349,71,0): 126, 81, 58, (349,72,0): 123, 77, 51, (349,73,0): 128, 81, 53, (349,74,0): 134, 88, 55, (349,75,0): 140, 94, 58, (349,76,0): 145, 100, 61, (349,77,0): 152, 107, 66, (349,78,0): 159, 116, 73, (349,79,0): 166, 122, 75, (349,80,0): 175, 130, 75, (349,81,0): 176, 130, 71, (349,82,0): 175, 128, 72, (349,83,0): 171, 126, 69, (349,84,0): 165, 122, 67, (349,85,0): 162, 121, 67, (349,86,0): 163, 122, 68, (349,87,0): 161, 124, 71, (349,88,0): 169, 134, 80, (349,89,0): 167, 134, 81, (349,90,0): 164, 133, 79, (349,91,0): 161, 131, 79, (349,92,0): 157, 130, 77, (349,93,0): 158, 131, 78, (349,94,0): 160, 135, 81, (349,95,0): 163, 138, 81, (349,96,0): 161, 140, 77, (349,97,0): 163, 144, 76, (349,98,0): 169, 150, 82, (349,99,0): 177, 160, 90, (349,100,0): 184, 170, 99, (349,101,0): 189, 177, 103, (349,102,0): 190, 181, 106, (349,103,0): 189, 182, 104, (349,104,0): 189, 183, 107, (349,105,0): 186, 182, 108, (349,106,0): 182, 180, 106, (349,107,0): 178, 178, 106, (349,108,0): 176, 177, 107, (349,109,0): 174, 177, 108, (349,110,0): 174, 177, 110, (349,111,0): 171, 178, 111, (349,112,0): 168, 176, 116, (349,113,0): 167, 177, 117, (349,114,0): 168, 178, 118, (349,115,0): 168, 178, 118, (349,116,0): 168, 179, 119, (349,117,0): 168, 180, 118, (349,118,0): 168, 180, 118, (349,119,0): 169, 181, 119, (349,120,0): 170, 184, 122, (349,121,0): 171, 185, 123, (349,122,0): 171, 187, 122, (349,123,0): 173, 189, 124, (349,124,0): 174, 190, 125, (349,125,0): 176, 192, 127, (349,126,0): 175, 194, 128, (349,127,0): 175, 196, 129, (349,128,0): 174, 195, 128, (349,129,0): 173, 196, 128, (349,130,0): 173, 195, 130, (349,131,0): 172, 197, 131, (349,132,0): 172, 197, 132, (349,133,0): 173, 198, 133, (349,134,0): 172, 198, 135, (349,135,0): 172, 198, 135, (349,136,0): 175, 199, 137, (349,137,0): 174, 196, 134, (349,138,0): 172, 192, 133, (349,139,0): 171, 189, 131, (349,140,0): 169, 184, 127, (349,141,0): 159, 172, 116, (349,142,0): 144, 155, 99, (349,143,0): 133, 141, 90, (349,144,0): 118, 125, 81, (349,145,0): 111, 118, 76, (349,146,0): 108, 115, 73, (349,147,0): 110, 119, 74, (349,148,0): 113, 122, 75, (349,149,0): 113, 125, 75, (349,150,0): 119, 133, 82, (349,151,0): 125, 143, 91, (349,152,0): 138, 161, 107, (349,153,0): 144, 173, 117, (349,154,0): 154, 187, 132, (349,155,0): 159, 198, 143, (349,156,0): 159, 202, 149, (349,157,0): 156, 203, 151, (349,158,0): 154, 202, 152, (349,159,0): 153, 203, 154, (349,160,0): 155, 202, 158, (349,161,0): 157, 202, 161, (349,162,0): 158, 203, 162, (349,163,0): 159, 206, 164, (349,164,0): 160, 206, 167, (349,165,0): 161, 209, 169, (349,166,0): 162, 210, 170, (349,167,0): 163, 211, 173, (349,168,0): 164, 212, 174, (349,169,0): 163, 213, 176, (349,170,0): 164, 214, 177, (349,171,0): 165, 217, 179, (349,172,0): 168, 220, 184, (349,173,0): 170, 222, 186, (349,174,0): 171, 223, 187, (349,175,0): 170, 225, 186, (349,176,0): 172, 227, 187, (349,177,0): 171, 228, 185, (349,178,0): 170, 227, 186, (349,179,0): 171, 228, 185, (349,180,0): 171, 228, 187, (349,181,0): 172, 229, 186, (349,182,0): 173, 230, 189, (349,183,0): 174, 231, 188, (349,184,0): 174, 231, 190, (349,185,0): 174, 231, 188, (349,186,0): 176, 233, 192, (349,187,0): 178, 235, 192, (349,188,0): 180, 237, 196, (349,189,0): 181, 238, 195, (349,190,0): 183, 240, 199, (349,191,0): 185, 240, 198, (349,192,0): 185, 236, 195, (349,193,0): 187, 235, 193, (349,194,0): 188, 237, 192, (349,195,0): 188, 237, 190, (349,196,0): 188, 238, 189, (349,197,0): 188, 236, 186, (349,198,0): 186, 234, 182, (349,199,0): 185, 234, 179, (349,200,0): 187, 234, 182, (349,201,0): 184, 231, 179, (349,202,0): 181, 227, 178, (349,203,0): 179, 222, 176, (349,204,0): 177, 220, 175, (349,205,0): 177, 220, 177, (349,206,0): 178, 220, 180, (349,207,0): 179, 221, 183, (349,208,0): 172, 218, 181, (349,209,0): 171, 217, 181, (349,210,0): 171, 217, 181, (349,211,0): 171, 217, 181, (349,212,0): 171, 216, 183, (349,213,0): 170, 215, 184, (349,214,0): 167, 212, 183, (349,215,0): 165, 210, 181, (349,216,0): 165, 209, 182, (349,217,0): 166, 210, 183, (349,218,0): 167, 211, 186, (349,219,0): 167, 211, 188, (349,220,0): 167, 210, 190, (349,221,0): 166, 209, 189, (349,222,0): 165, 208, 189, (349,223,0): 163, 207, 190, (349,224,0): 164, 211, 195, (349,225,0): 163, 211, 197, (349,226,0): 164, 210, 197, (349,227,0): 164, 210, 197, (349,228,0): 164, 210, 197, (349,229,0): 164, 210, 197, (349,230,0): 164, 210, 199, (349,231,0): 166, 209, 199, (349,232,0): 163, 206, 196, (349,233,0): 163, 206, 196, (349,234,0): 164, 207, 197, (349,235,0): 165, 208, 198, (349,236,0): 166, 207, 199, (349,237,0): 167, 208, 200, (349,238,0): 168, 209, 201, (349,239,0): 168, 209, 201, (349,240,0): 165, 204, 201, (349,241,0): 166, 205, 202, (349,242,0): 167, 206, 203, (349,243,0): 167, 206, 203, (349,244,0): 167, 206, 203, (349,245,0): 167, 206, 205, (349,246,0): 165, 204, 203, (349,247,0): 165, 203, 204, (349,248,0): 162, 200, 201, (349,249,0): 163, 201, 202, (349,250,0): 165, 203, 206, (349,251,0): 167, 205, 208, (349,252,0): 170, 208, 211, (349,253,0): 172, 210, 213, (349,254,0): 174, 211, 217, (349,255,0): 175, 212, 218, (349,256,0): 175, 209, 219, (349,257,0): 176, 208, 221, (349,258,0): 174, 208, 220, (349,259,0): 174, 208, 220, (349,260,0): 171, 207, 219, (349,261,0): 171, 207, 221, (349,262,0): 169, 207, 220, (349,263,0): 168, 207, 222, (349,264,0): 165, 207, 221, (349,265,0): 165, 207, 223, (349,266,0): 164, 207, 223, (349,267,0): 161, 207, 223, (349,268,0): 161, 207, 223, (349,269,0): 160, 205, 224, (349,270,0): 159, 206, 224, (349,271,0): 159, 206, 226, (349,272,0): 159, 207, 230, (349,273,0): 159, 206, 232, (349,274,0): 159, 206, 234, (349,275,0): 159, 206, 232, (349,276,0): 158, 205, 233, (349,277,0): 156, 203, 231, (349,278,0): 154, 201, 229, (349,279,0): 153, 200, 228, (349,280,0): 153, 200, 228, (349,281,0): 152, 199, 227, (349,282,0): 151, 198, 228, (349,283,0): 149, 196, 226, (349,284,0): 149, 196, 226, (349,285,0): 149, 196, 226, (349,286,0): 150, 197, 227, (349,287,0): 150, 197, 227, (349,288,0): 152, 197, 226, (349,289,0): 151, 196, 225, (349,290,0): 151, 195, 224, (349,291,0): 151, 195, 224, (349,292,0): 153, 194, 226, (349,293,0): 153, 194, 226, (349,294,0): 155, 193, 229, (349,295,0): 156, 194, 230, (349,296,0): 158, 192, 230, (349,297,0): 158, 192, 230, (349,298,0): 159, 191, 232, (349,299,0): 160, 192, 233, (349,300,0): 162, 191, 235, (349,301,0): 163, 192, 236, (349,302,0): 164, 191, 236, (349,303,0): 164, 192, 239, (349,304,0): 161, 194, 239, (349,305,0): 160, 194, 239, (349,306,0): 161, 194, 239, (349,307,0): 163, 194, 240, (349,308,0): 169, 193, 241, (349,309,0): 168, 189, 234, (349,310,0): 165, 182, 225, (349,311,0): 163, 175, 215, (349,312,0): 156, 161, 199, (349,313,0): 152, 155, 186, (349,314,0): 148, 145, 172, (349,315,0): 141, 136, 158, (349,316,0): 136, 127, 144, (349,317,0): 132, 122, 133, (349,318,0): 132, 119, 129, (349,319,0): 131, 118, 127, (349,320,0): 134, 119, 126, (349,321,0): 136, 116, 125, (349,322,0): 137, 116, 125, (349,323,0): 143, 117, 128, (349,324,0): 148, 116, 129, (349,325,0): 147, 111, 121, (349,326,0): 139, 99, 108, (349,327,0): 133, 91, 95, (349,328,0): 118, 74, 75, (349,329,0): 109, 65, 62, (349,330,0): 95, 54, 50, (349,331,0): 85, 47, 44, (349,332,0): 79, 43, 43, (349,333,0): 76, 41, 45, (349,334,0): 71, 38, 45, (349,335,0): 68, 37, 43, (349,336,0): 66, 34, 39, (349,337,0): 65, 33, 36, (349,338,0): 65, 33, 38, (349,339,0): 64, 32, 37, (349,340,0): 61, 30, 35, (349,341,0): 59, 30, 34, (349,342,0): 57, 30, 35, (349,343,0): 56, 29, 34, (349,344,0): 55, 30, 36, (349,345,0): 53, 30, 36, (349,346,0): 53, 30, 36, (349,347,0): 52, 31, 36, (349,348,0): 50, 31, 37, (349,349,0): 50, 31, 37, (349,350,0): 48, 31, 37, (349,351,0): 51, 30, 37, (349,352,0): 57, 30, 37, (349,353,0): 60, 30, 38, (349,354,0): 62, 31, 37, (349,355,0): 65, 33, 38, (349,356,0): 68, 33, 39, (349,357,0): 73, 34, 37, (349,358,0): 75, 35, 36, (349,359,0): 79, 35, 34, (349,360,0): 89, 41, 39, (349,361,0): 93, 44, 40, (349,362,0): 99, 46, 42, (349,363,0): 103, 48, 41, (349,364,0): 105, 46, 40, (349,365,0): 103, 43, 35, (349,366,0): 99, 39, 29, (349,367,0): 95, 36, 30, (349,368,0): 94, 38, 37, (349,369,0): 92, 40, 42, (349,370,0): 93, 41, 43, (349,371,0): 93, 41, 43, (349,372,0): 92, 42, 43, (349,373,0): 91, 41, 42, (349,374,0): 89, 40, 43, (349,375,0): 86, 40, 42, (349,376,0): 82, 37, 40, (349,377,0): 80, 38, 40, (349,378,0): 78, 36, 40, (349,379,0): 77, 36, 40, (349,380,0): 77, 36, 40, (349,381,0): 76, 37, 40, (349,382,0): 78, 39, 42, (349,383,0): 79, 39, 40, (349,384,0): 80, 34, 36, (349,385,0): 82, 34, 34, (349,386,0): 83, 35, 35, (349,387,0): 85, 37, 37, (349,388,0): 86, 38, 38, (349,389,0): 88, 40, 40, (349,390,0): 89, 41, 41, (349,391,0): 89, 41, 41, (349,392,0): 89, 41, 41, (349,393,0): 91, 43, 43, (349,394,0): 93, 45, 45, (349,395,0): 94, 46, 46, (349,396,0): 93, 45, 45, (349,397,0): 91, 43, 43, (349,398,0): 89, 41, 41, (349,399,0): 85, 39, 41, (349,400,0): 77, 38, 39, (349,401,0): 74, 38, 40, (349,402,0): 72, 36, 38, (349,403,0): 69, 33, 35, (349,404,0): 68, 32, 34, (349,405,0): 67, 31, 33, (349,406,0): 67, 31, 33, (349,407,0): 67, 31, 33, (349,408,0): 69, 33, 35, (349,409,0): 69, 33, 35, (349,410,0): 68, 32, 34, (349,411,0): 69, 33, 35, (349,412,0): 70, 34, 36, (349,413,0): 72, 36, 38, (349,414,0): 73, 37, 39, (349,415,0): 77, 38, 41, (349,416,0): 84, 40, 41, (349,417,0): 86, 40, 42, (349,418,0): 86, 41, 44, (349,419,0): 84, 42, 44, (349,420,0): 81, 42, 43, (349,421,0): 81, 45, 45, (349,422,0): 85, 51, 50, (349,423,0): 89, 55, 54, (349,424,0): 89, 55, 54, (349,425,0): 91, 57, 56, (349,426,0): 94, 59, 57, (349,427,0): 98, 60, 59, (349,428,0): 100, 60, 60, (349,429,0): 100, 58, 59, (349,430,0): 100, 59, 57, (349,431,0): 99, 58, 56, (349,432,0): 98, 57, 55, (349,433,0): 93, 51, 52, (349,434,0): 86, 44, 45, (349,435,0): 82, 40, 41, (349,436,0): 79, 39, 39, (349,437,0): 77, 37, 38, (349,438,0): 74, 35, 36, (349,439,0): 69, 33, 33, (349,440,0): 73, 37, 37, (349,441,0): 72, 38, 37, (349,442,0): 70, 36, 37, (349,443,0): 67, 35, 36, (349,444,0): 66, 34, 35, (349,445,0): 66, 34, 35, (349,446,0): 66, 34, 35, (349,447,0): 65, 35, 37, (349,448,0): 54, 27, 32, (349,449,0): 56, 29, 36, (349,450,0): 57, 30, 37, (349,451,0): 61, 31, 39, (349,452,0): 63, 32, 38, (349,453,0): 64, 31, 38, (349,454,0): 64, 31, 38, (349,455,0): 66, 31, 37, (349,456,0): 67, 32, 38, (349,457,0): 65, 33, 36, (349,458,0): 66, 34, 35, (349,459,0): 67, 37, 35, (349,460,0): 69, 41, 37, (349,461,0): 70, 45, 40, (349,462,0): 74, 49, 44, (349,463,0): 74, 51, 43, (349,464,0): 76, 54, 43, (349,465,0): 73, 51, 38, (349,466,0): 67, 47, 36, (349,467,0): 66, 46, 35, (349,468,0): 66, 46, 37, (349,469,0): 64, 44, 35, (349,470,0): 60, 41, 35, (349,471,0): 56, 37, 31, (349,472,0): 54, 36, 34, (349,473,0): 52, 34, 32, (349,474,0): 50, 31, 33, (349,475,0): 51, 32, 34, (349,476,0): 52, 36, 39, (349,477,0): 55, 39, 42, (349,478,0): 55, 38, 44, (349,479,0): 57, 37, 39, (349,480,0): 66, 37, 39, (349,481,0): 65, 37, 34, (349,482,0): 61, 36, 32, (349,483,0): 58, 37, 32, (349,484,0): 58, 41, 34, (349,485,0): 61, 46, 39, (349,486,0): 65, 50, 43, (349,487,0): 68, 53, 46, (349,488,0): 71, 56, 49, (349,489,0): 73, 56, 49, (349,490,0): 75, 58, 51, (349,491,0): 75, 62, 54, (349,492,0): 78, 68, 59, (349,493,0): 82, 75, 65, (349,494,0): 84, 82, 70, (349,495,0): 88, 86, 74, (349,496,0): 86, 82, 70, (349,497,0): 84, 78, 66, (349,498,0): 79, 72, 62, (349,499,0): 73, 66, 56, (349,500,0): 69, 60, 51, (349,501,0): 65, 56, 47, (349,502,0): 65, 54, 48, (349,503,0): 65, 54, 48, (349,504,0): 67, 53, 50, (349,505,0): 66, 52, 49, (349,506,0): 67, 52, 49, (349,507,0): 68, 53, 50, (349,508,0): 71, 53, 53, (349,509,0): 71, 53, 53, (349,510,0): 69, 51, 51, (349,511,0): 68, 48, 47, (349,512,0): 68, 47, 44, (349,513,0): 66, 45, 40, (349,514,0): 65, 44, 39, (349,515,0): 64, 43, 38, (349,516,0): 65, 44, 39, (349,517,0): 67, 46, 41, (349,518,0): 70, 49, 44, (349,519,0): 72, 51, 46, (349,520,0): 67, 46, 41, (349,521,0): 67, 46, 41, (349,522,0): 68, 47, 42, (349,523,0): 71, 50, 45, (349,524,0): 74, 53, 48, (349,525,0): 74, 53, 48, (349,526,0): 71, 50, 45, (349,527,0): 68, 47, 44, (349,528,0): 64, 38, 39, (349,529,0): 61, 35, 38, (349,530,0): 56, 31, 34, (349,531,0): 53, 31, 33, (349,532,0): 56, 34, 36, (349,533,0): 57, 37, 38, (349,534,0): 56, 38, 38, (349,535,0): 55, 37, 37, (349,536,0): 56, 38, 38, (349,537,0): 56, 38, 38, (349,538,0): 56, 36, 37, (349,539,0): 55, 35, 36, (349,540,0): 56, 31, 34, (349,541,0): 54, 29, 32, (349,542,0): 52, 26, 29, (349,543,0): 51, 25, 28, (349,544,0): 51, 26, 30, (349,545,0): 51, 26, 30, (349,546,0): 49, 27, 30, (349,547,0): 48, 28, 30, (349,548,0): 48, 29, 31, (349,549,0): 45, 31, 31, (349,550,0): 45, 31, 31, (349,551,0): 43, 31, 31, (349,552,0): 43, 31, 31, (349,553,0): 44, 32, 32, (349,554,0): 47, 35, 35, (349,555,0): 48, 36, 36, (349,556,0): 51, 37, 37, (349,557,0): 49, 35, 35, (349,558,0): 49, 33, 34, (349,559,0): 46, 31, 34, (349,560,0): 46, 33, 40, (349,561,0): 43, 32, 40, (349,562,0): 40, 29, 37, (349,563,0): 38, 27, 35, (349,564,0): 36, 25, 31, (349,565,0): 36, 25, 31, (349,566,0): 38, 26, 30, (349,567,0): 38, 26, 30, (349,568,0): 41, 26, 31, (349,569,0): 43, 28, 33, (349,570,0): 47, 31, 34, (349,571,0): 51, 35, 38, (349,572,0): 54, 38, 39, (349,573,0): 56, 40, 41, (349,574,0): 58, 42, 43, (349,575,0): 57, 43, 43, (349,576,0): 60, 50, 49, (349,577,0): 62, 54, 52, (349,578,0): 63, 58, 55, (349,579,0): 65, 60, 57, (349,580,0): 65, 60, 57, (349,581,0): 63, 58, 55, (349,582,0): 59, 55, 52, (349,583,0): 57, 53, 50, (349,584,0): 54, 53, 49, (349,585,0): 55, 54, 50, (349,586,0): 57, 56, 52, (349,587,0): 58, 57, 53, (349,588,0): 59, 60, 55, (349,589,0): 61, 62, 57, (349,590,0): 62, 63, 58, (349,591,0): 64, 63, 59, (349,592,0): 64, 60, 61, (349,593,0): 64, 58, 60, (349,594,0): 62, 56, 58, (349,595,0): 59, 53, 55, (349,596,0): 55, 49, 51, (349,597,0): 52, 46, 48, (349,598,0): 50, 44, 46, (349,599,0): 49, 43, 45, (350,0,0): 78, 60, 50, (350,1,0): 79, 61, 51, (350,2,0): 80, 62, 52, (350,3,0): 82, 64, 54, (350,4,0): 84, 66, 56, (350,5,0): 85, 67, 57, (350,6,0): 87, 69, 59, (350,7,0): 87, 69, 59, (350,8,0): 86, 68, 58, (350,9,0): 87, 69, 59, (350,10,0): 89, 71, 61, (350,11,0): 89, 71, 61, (350,12,0): 90, 72, 62, (350,13,0): 89, 71, 61, (350,14,0): 88, 70, 60, (350,15,0): 87, 69, 59, (350,16,0): 84, 63, 58, (350,17,0): 86, 62, 58, (350,18,0): 86, 63, 57, (350,19,0): 86, 63, 57, (350,20,0): 86, 63, 57, (350,21,0): 86, 63, 57, (350,22,0): 85, 62, 54, (350,23,0): 85, 62, 54, (350,24,0): 88, 66, 55, (350,25,0): 88, 66, 55, (350,26,0): 88, 66, 55, (350,27,0): 88, 66, 55, (350,28,0): 87, 65, 52, (350,29,0): 87, 65, 52, (350,30,0): 87, 65, 52, (350,31,0): 85, 66, 52, (350,32,0): 87, 69, 55, (350,33,0): 85, 69, 54, (350,34,0): 85, 67, 53, (350,35,0): 83, 65, 51, (350,36,0): 82, 64, 50, (350,37,0): 80, 62, 48, (350,38,0): 80, 61, 47, (350,39,0): 79, 60, 46, (350,40,0): 84, 62, 49, (350,41,0): 86, 64, 51, (350,42,0): 88, 66, 53, (350,43,0): 89, 67, 54, (350,44,0): 90, 66, 54, (350,45,0): 87, 63, 51, (350,46,0): 84, 60, 48, (350,47,0): 82, 58, 48, (350,48,0): 91, 62, 56, (350,49,0): 90, 61, 57, (350,50,0): 91, 60, 57, (350,51,0): 90, 59, 56, (350,52,0): 90, 59, 54, (350,53,0): 89, 58, 53, (350,54,0): 88, 57, 52, (350,55,0): 88, 58, 50, (350,56,0): 90, 60, 50, (350,57,0): 89, 59, 49, (350,58,0): 88, 58, 47, (350,59,0): 88, 58, 47, (350,60,0): 89, 59, 48, (350,61,0): 90, 60, 49, (350,62,0): 91, 62, 48, (350,63,0): 92, 63, 47, (350,64,0): 92, 65, 48, (350,65,0): 93, 66, 47, (350,66,0): 99, 68, 50, (350,67,0): 103, 70, 53, (350,68,0): 109, 72, 54, (350,69,0): 113, 75, 56, (350,70,0): 118, 75, 56, (350,71,0): 122, 77, 56, (350,72,0): 123, 77, 54, (350,73,0): 125, 79, 53, (350,74,0): 128, 81, 53, (350,75,0): 130, 84, 51, (350,76,0): 134, 88, 54, (350,77,0): 141, 95, 59, (350,78,0): 149, 105, 66, (350,79,0): 157, 112, 70, (350,80,0): 169, 123, 73, (350,81,0): 171, 124, 72, (350,82,0): 170, 124, 72, (350,83,0): 166, 120, 68, (350,84,0): 161, 118, 65, (350,85,0): 158, 117, 63, (350,86,0): 161, 120, 66, (350,87,0): 161, 124, 69, (350,88,0): 164, 129, 73, (350,89,0): 163, 130, 76, (350,90,0): 163, 132, 77, (350,91,0): 160, 130, 76, (350,92,0): 156, 129, 74, (350,93,0): 157, 130, 75, (350,94,0): 161, 136, 80, (350,95,0): 165, 140, 83, (350,96,0): 164, 143, 80, (350,97,0): 162, 143, 75, (350,98,0): 163, 144, 76, (350,99,0): 168, 151, 81, (350,100,0): 176, 162, 91, (350,101,0): 184, 172, 98, (350,102,0): 187, 178, 103, (350,103,0): 188, 180, 105, (350,104,0): 189, 183, 109, (350,105,0): 185, 181, 107, (350,106,0): 181, 179, 105, (350,107,0): 177, 177, 105, (350,108,0): 174, 175, 105, (350,109,0): 172, 175, 106, (350,110,0): 172, 175, 108, (350,111,0): 171, 176, 110, (350,112,0): 167, 175, 115, (350,113,0): 166, 175, 118, (350,114,0): 167, 176, 119, (350,115,0): 167, 177, 117, (350,116,0): 167, 178, 118, (350,117,0): 168, 179, 119, (350,118,0): 166, 180, 119, (350,119,0): 166, 180, 119, (350,120,0): 171, 185, 123, (350,121,0): 172, 186, 124, (350,122,0): 172, 188, 123, (350,123,0): 174, 190, 125, (350,124,0): 173, 192, 126, (350,125,0): 175, 194, 128, (350,126,0): 176, 195, 129, (350,127,0): 176, 197, 130, (350,128,0): 176, 197, 130, (350,129,0): 175, 198, 130, (350,130,0): 173, 198, 132, (350,131,0): 172, 197, 131, (350,132,0): 172, 197, 132, (350,133,0): 170, 196, 131, (350,134,0): 170, 196, 133, (350,135,0): 170, 196, 133, (350,136,0): 174, 198, 138, (350,137,0): 173, 194, 135, (350,138,0): 172, 192, 133, (350,139,0): 172, 190, 132, (350,140,0): 171, 186, 129, (350,141,0): 163, 176, 120, (350,142,0): 150, 161, 105, (350,143,0): 139, 149, 97, (350,144,0): 126, 133, 89, (350,145,0): 119, 126, 84, (350,146,0): 116, 125, 82, (350,147,0): 121, 130, 85, (350,148,0): 126, 135, 88, (350,149,0): 128, 142, 91, (350,150,0): 136, 153, 99, (350,151,0): 145, 166, 110, (350,152,0): 155, 180, 123, (350,153,0): 157, 186, 130, (350,154,0): 159, 194, 138, (350,155,0): 160, 201, 145, (350,156,0): 159, 203, 150, (350,157,0): 156, 204, 152, (350,158,0): 154, 204, 153, (350,159,0): 154, 204, 155, (350,160,0): 157, 204, 160, (350,161,0): 157, 204, 162, (350,162,0): 158, 204, 165, (350,163,0): 159, 207, 167, (350,164,0): 160, 208, 170, (350,165,0): 162, 210, 172, (350,166,0): 163, 211, 173, (350,167,0): 161, 211, 174, (350,168,0): 162, 212, 175, (350,169,0): 162, 214, 178, (350,170,0): 163, 215, 179, (350,171,0): 165, 217, 181, (350,172,0): 168, 219, 186, (350,173,0): 168, 222, 188, (350,174,0): 169, 223, 189, (350,175,0): 170, 224, 190, (350,176,0): 168, 225, 190, (350,177,0): 168, 226, 188, (350,178,0): 169, 226, 191, (350,179,0): 170, 228, 190, (350,180,0): 171, 228, 193, (350,181,0): 170, 228, 190, (350,182,0): 170, 227, 192, (350,183,0): 170, 228, 190, (350,184,0): 170, 227, 192, (350,185,0): 171, 229, 191, (350,186,0): 172, 229, 194, (350,187,0): 173, 231, 193, (350,188,0): 174, 231, 196, (350,189,0): 175, 233, 195, (350,190,0): 176, 233, 198, (350,191,0): 177, 234, 199, (350,192,0): 174, 230, 195, (350,193,0): 176, 230, 194, (350,194,0): 177, 231, 195, (350,195,0): 177, 232, 193, (350,196,0): 177, 232, 190, (350,197,0): 177, 230, 186, (350,198,0): 175, 228, 184, (350,199,0): 174, 227, 181, (350,200,0): 173, 224, 181, (350,201,0): 172, 223, 180, (350,202,0): 171, 222, 181, (350,203,0): 171, 218, 182, (350,204,0): 169, 216, 182, (350,205,0): 169, 216, 184, (350,206,0): 169, 215, 186, (350,207,0): 169, 215, 186, (350,208,0): 167, 214, 182, (350,209,0): 168, 215, 181, (350,210,0): 170, 217, 185, (350,211,0): 170, 217, 185, (350,212,0): 167, 213, 184, (350,213,0): 165, 211, 182, (350,214,0): 163, 209, 181, (350,215,0): 163, 209, 183, (350,216,0): 162, 207, 184, (350,217,0): 162, 207, 184, (350,218,0): 164, 209, 188, (350,219,0): 165, 210, 189, (350,220,0): 165, 210, 190, (350,221,0): 164, 209, 189, (350,222,0): 163, 207, 190, (350,223,0): 162, 206, 191, (350,224,0): 160, 208, 196, (350,225,0): 158, 208, 197, (350,226,0): 161, 208, 198, (350,227,0): 162, 209, 199, (350,228,0): 163, 210, 200, (350,229,0): 164, 211, 201, (350,230,0): 165, 212, 202, (350,231,0): 166, 212, 202, (350,232,0): 161, 207, 197, (350,233,0): 161, 207, 197, (350,234,0): 161, 206, 199, (350,235,0): 161, 206, 199, (350,236,0): 164, 207, 200, (350,237,0): 164, 207, 200, (350,238,0): 164, 207, 200, (350,239,0): 165, 207, 203, (350,240,0): 162, 203, 199, (350,241,0): 163, 203, 202, (350,242,0): 164, 204, 203, (350,243,0): 165, 205, 204, (350,244,0): 165, 205, 204, (350,245,0): 165, 205, 205, (350,246,0): 164, 204, 204, (350,247,0): 163, 203, 205, (350,248,0): 162, 202, 204, (350,249,0): 163, 203, 205, (350,250,0): 165, 204, 209, (350,251,0): 166, 205, 210, (350,252,0): 169, 208, 213, (350,253,0): 170, 209, 214, (350,254,0): 172, 211, 218, (350,255,0): 174, 211, 219, (350,256,0): 175, 209, 221, (350,257,0): 175, 208, 223, (350,258,0): 174, 207, 222, (350,259,0): 174, 207, 222, (350,260,0): 171, 207, 221, (350,261,0): 171, 207, 223, (350,262,0): 169, 206, 222, (350,263,0): 168, 207, 224, (350,264,0): 167, 209, 225, (350,265,0): 167, 208, 226, (350,266,0): 166, 209, 226, (350,267,0): 163, 208, 227, (350,268,0): 163, 208, 227, (350,269,0): 161, 208, 228, (350,270,0): 161, 208, 228, (350,271,0): 161, 207, 230, (350,272,0): 159, 206, 232, (350,273,0): 159, 206, 234, (350,274,0): 160, 207, 237, (350,275,0): 160, 207, 235, (350,276,0): 158, 205, 235, (350,277,0): 157, 204, 234, (350,278,0): 155, 202, 232, (350,279,0): 154, 201, 231, (350,280,0): 153, 200, 230, (350,281,0): 152, 199, 229, (350,282,0): 151, 198, 228, (350,283,0): 149, 196, 226, (350,284,0): 149, 195, 228, (350,285,0): 149, 195, 228, (350,286,0): 150, 196, 229, (350,287,0): 150, 197, 227, (350,288,0): 152, 197, 226, (350,289,0): 151, 197, 223, (350,290,0): 151, 195, 224, (350,291,0): 150, 194, 223, (350,292,0): 152, 193, 223, (350,293,0): 153, 194, 226, (350,294,0): 155, 193, 229, (350,295,0): 156, 194, 230, (350,296,0): 157, 191, 229, (350,297,0): 158, 192, 230, (350,298,0): 159, 191, 232, (350,299,0): 160, 192, 233, (350,300,0): 162, 191, 235, (350,301,0): 163, 192, 236, (350,302,0): 164, 191, 238, (350,303,0): 163, 191, 238, (350,304,0): 161, 195, 241, (350,305,0): 159, 196, 241, (350,306,0): 162, 196, 242, (350,307,0): 165, 198, 243, (350,308,0): 170, 197, 244, (350,309,0): 171, 193, 240, (350,310,0): 169, 186, 230, (350,311,0): 167, 181, 220, (350,312,0): 163, 171, 208, (350,313,0): 161, 164, 197, (350,314,0): 157, 154, 183, (350,315,0): 148, 143, 165, (350,316,0): 142, 133, 150, (350,317,0): 139, 129, 140, (350,318,0): 138, 125, 134, (350,319,0): 137, 124, 131, (350,320,0): 137, 122, 127, (350,321,0): 134, 117, 123, (350,322,0): 135, 114, 121, (350,323,0): 139, 113, 122, (350,324,0): 144, 112, 123, (350,325,0): 143, 106, 114, (350,326,0): 135, 94, 102, (350,327,0): 127, 85, 87, (350,328,0): 114, 70, 69, (350,329,0): 107, 64, 58, (350,330,0): 95, 54, 48, (350,331,0): 86, 47, 42, (350,332,0): 80, 42, 41, (350,333,0): 74, 40, 41, (350,334,0): 70, 38, 43, (350,335,0): 68, 35, 42, (350,336,0): 66, 34, 39, (350,337,0): 65, 33, 38, (350,338,0): 65, 33, 38, (350,339,0): 64, 32, 37, (350,340,0): 61, 30, 36, (350,341,0): 59, 30, 35, (350,342,0): 57, 30, 35, (350,343,0): 56, 29, 34, (350,344,0): 55, 30, 36, (350,345,0): 53, 30, 36, (350,346,0): 53, 30, 38, (350,347,0): 52, 31, 38, (350,348,0): 52, 33, 39, (350,349,0): 52, 33, 39, (350,350,0): 52, 32, 41, (350,351,0): 53, 32, 39, (350,352,0): 58, 31, 38, (350,353,0): 62, 31, 39, (350,354,0): 64, 31, 38, (350,355,0): 66, 34, 39, (350,356,0): 69, 34, 40, (350,357,0): 74, 35, 38, (350,358,0): 76, 36, 37, (350,359,0): 80, 36, 35, (350,360,0): 89, 44, 41, (350,361,0): 94, 45, 41, (350,362,0): 99, 46, 42, (350,363,0): 101, 46, 39, (350,364,0): 102, 45, 38, (350,365,0): 100, 41, 33, (350,366,0): 97, 37, 27, (350,367,0): 94, 35, 29, (350,368,0): 95, 37, 36, (350,369,0): 94, 38, 41, (350,370,0): 94, 38, 41, (350,371,0): 94, 39, 42, (350,372,0): 91, 39, 43, (350,373,0): 88, 38, 41, (350,374,0): 86, 37, 40, (350,375,0): 82, 36, 38, (350,376,0): 82, 37, 40, (350,377,0): 80, 38, 40, (350,378,0): 77, 36, 40, (350,379,0): 76, 37, 40, (350,380,0): 74, 38, 40, (350,381,0): 74, 38, 40, (350,382,0): 75, 40, 44, (350,383,0): 78, 39, 42, (350,384,0): 79, 33, 35, (350,385,0): 83, 33, 34, (350,386,0): 84, 34, 35, (350,387,0): 86, 36, 37, (350,388,0): 87, 37, 38, (350,389,0): 89, 39, 40, (350,390,0): 90, 40, 41, (350,391,0): 91, 41, 42, (350,392,0): 91, 41, 42, (350,393,0): 93, 43, 44, (350,394,0): 94, 44, 45, (350,395,0): 95, 45, 46, (350,396,0): 94, 44, 45, (350,397,0): 92, 42, 43, (350,398,0): 90, 40, 41, (350,399,0): 85, 39, 41, (350,400,0): 77, 38, 41, (350,401,0): 72, 37, 41, (350,402,0): 70, 35, 39, (350,403,0): 68, 33, 37, (350,404,0): 66, 31, 35, (350,405,0): 65, 30, 34, (350,406,0): 65, 30, 34, (350,407,0): 65, 30, 34, (350,408,0): 68, 33, 37, (350,409,0): 68, 33, 37, (350,410,0): 67, 32, 36, (350,411,0): 68, 33, 37, (350,412,0): 69, 34, 38, (350,413,0): 71, 36, 40, (350,414,0): 72, 37, 41, (350,415,0): 77, 38, 41, (350,416,0): 88, 39, 42, (350,417,0): 91, 41, 42, (350,418,0): 93, 44, 47, (350,419,0): 91, 45, 47, (350,420,0): 88, 46, 48, (350,421,0): 88, 48, 49, (350,422,0): 90, 51, 52, (350,423,0): 91, 55, 55, (350,424,0): 90, 54, 54, (350,425,0): 92, 56, 56, (350,426,0): 97, 58, 59, (350,427,0): 101, 61, 62, (350,428,0): 102, 60, 61, (350,429,0): 101, 57, 58, (350,430,0): 98, 54, 53, (350,431,0): 96, 52, 51, (350,432,0): 91, 50, 48, (350,433,0): 87, 46, 44, (350,434,0): 83, 42, 40, (350,435,0): 80, 39, 37, (350,436,0): 78, 38, 36, (350,437,0): 76, 36, 36, (350,438,0): 71, 33, 32, (350,439,0): 66, 31, 29, (350,440,0): 69, 34, 32, (350,441,0): 68, 34, 32, (350,442,0): 68, 34, 33, (350,443,0): 66, 35, 33, (350,444,0): 66, 35, 33, (350,445,0): 64, 34, 32, (350,446,0): 63, 33, 31, (350,447,0): 62, 34, 33, (350,448,0): 55, 30, 33, (350,449,0): 56, 31, 35, (350,450,0): 57, 32, 38, (350,451,0): 59, 32, 39, (350,452,0): 61, 31, 39, (350,453,0): 62, 31, 39, (350,454,0): 62, 29, 38, (350,455,0): 61, 28, 35, (350,456,0): 62, 29, 36, (350,457,0): 62, 30, 35, (350,458,0): 63, 31, 34, (350,459,0): 64, 34, 34, (350,460,0): 65, 37, 36, (350,461,0): 67, 42, 38, (350,462,0): 70, 45, 41, (350,463,0): 71, 48, 42, (350,464,0): 78, 56, 45, (350,465,0): 73, 54, 40, (350,466,0): 69, 49, 38, (350,467,0): 67, 47, 36, (350,468,0): 66, 46, 37, (350,469,0): 64, 44, 35, (350,470,0): 59, 40, 34, (350,471,0): 56, 37, 31, (350,472,0): 53, 35, 33, (350,473,0): 51, 33, 31, (350,474,0): 47, 31, 32, (350,475,0): 48, 32, 33, (350,476,0): 52, 36, 39, (350,477,0): 54, 37, 43, (350,478,0): 55, 38, 44, (350,479,0): 57, 37, 39, (350,480,0): 68, 39, 41, (350,481,0): 67, 37, 35, (350,482,0): 64, 36, 33, (350,483,0): 61, 37, 33, (350,484,0): 60, 41, 35, (350,485,0): 61, 46, 39, (350,486,0): 66, 51, 44, (350,487,0): 69, 54, 47, (350,488,0): 74, 59, 52, (350,489,0): 73, 58, 51, (350,490,0): 73, 58, 51, (350,491,0): 71, 61, 52, (350,492,0): 73, 64, 55, (350,493,0): 74, 70, 59, (350,494,0): 75, 75, 63, (350,495,0): 78, 78, 66, (350,496,0): 79, 77, 64, (350,497,0): 77, 73, 61, (350,498,0): 72, 68, 57, (350,499,0): 67, 63, 52, (350,500,0): 65, 58, 48, (350,501,0): 64, 55, 46, (350,502,0): 64, 53, 47, (350,503,0): 64, 53, 47, (350,504,0): 70, 56, 53, (350,505,0): 67, 53, 50, (350,506,0): 65, 50, 47, (350,507,0): 64, 49, 46, (350,508,0): 68, 50, 50, (350,509,0): 69, 51, 51, (350,510,0): 68, 48, 49, (350,511,0): 66, 46, 45, (350,512,0): 67, 46, 41, (350,513,0): 66, 46, 39, (350,514,0): 64, 44, 37, (350,515,0): 63, 43, 36, (350,516,0): 64, 44, 37, (350,517,0): 66, 46, 39, (350,518,0): 68, 48, 41, (350,519,0): 70, 50, 43, (350,520,0): 66, 46, 39, (350,521,0): 66, 46, 39, (350,522,0): 69, 49, 42, (350,523,0): 74, 54, 47, (350,524,0): 79, 59, 52, (350,525,0): 80, 60, 53, (350,526,0): 79, 59, 52, (350,527,0): 76, 55, 50, (350,528,0): 68, 42, 43, (350,529,0): 64, 38, 41, (350,530,0): 58, 33, 36, (350,531,0): 54, 32, 34, (350,532,0): 55, 33, 35, (350,533,0): 55, 35, 36, (350,534,0): 54, 36, 36, (350,535,0): 53, 35, 35, (350,536,0): 54, 36, 36, (350,537,0): 53, 35, 35, (350,538,0): 52, 32, 33, (350,539,0): 51, 31, 32, (350,540,0): 52, 27, 30, (350,541,0): 52, 27, 30, (350,542,0): 53, 27, 30, (350,543,0): 53, 27, 30, (350,544,0): 50, 25, 29, (350,545,0): 50, 25, 29, (350,546,0): 49, 27, 30, (350,547,0): 49, 29, 31, (350,548,0): 49, 30, 32, (350,549,0): 47, 33, 33, (350,550,0): 48, 34, 34, (350,551,0): 46, 34, 34, (350,552,0): 43, 33, 32, (350,553,0): 45, 35, 34, (350,554,0): 48, 36, 36, (350,555,0): 50, 38, 38, (350,556,0): 52, 38, 38, (350,557,0): 50, 36, 36, (350,558,0): 48, 32, 33, (350,559,0): 45, 30, 33, (350,560,0): 44, 33, 39, (350,561,0): 42, 32, 40, (350,562,0): 42, 31, 39, (350,563,0): 40, 29, 37, (350,564,0): 38, 27, 33, (350,565,0): 36, 25, 31, (350,566,0): 36, 24, 28, (350,567,0): 35, 23, 27, (350,568,0): 40, 25, 30, (350,569,0): 42, 27, 32, (350,570,0): 45, 30, 33, (350,571,0): 49, 34, 37, (350,572,0): 54, 38, 39, (350,573,0): 56, 40, 41, (350,574,0): 58, 42, 43, (350,575,0): 57, 43, 43, (350,576,0): 59, 51, 49, (350,577,0): 59, 54, 51, (350,578,0): 63, 58, 55, (350,579,0): 65, 60, 57, (350,580,0): 64, 60, 57, (350,581,0): 61, 57, 54, (350,582,0): 57, 53, 50, (350,583,0): 55, 51, 48, (350,584,0): 55, 54, 50, (350,585,0): 56, 55, 51, (350,586,0): 56, 57, 52, (350,587,0): 57, 58, 53, (350,588,0): 58, 59, 54, (350,589,0): 60, 61, 56, (350,590,0): 60, 62, 57, (350,591,0): 62, 63, 58, (350,592,0): 66, 62, 63, (350,593,0): 65, 59, 61, (350,594,0): 63, 57, 59, (350,595,0): 60, 54, 56, (350,596,0): 56, 50, 52, (350,597,0): 53, 47, 49, (350,598,0): 50, 44, 46, (350,599,0): 49, 43, 45, (351,0,0): 79, 59, 52, (351,1,0): 79, 61, 51, (351,2,0): 81, 61, 52, (351,3,0): 82, 64, 54, (351,4,0): 85, 65, 56, (351,5,0): 86, 68, 58, (351,6,0): 88, 68, 59, (351,7,0): 88, 70, 60, (351,8,0): 88, 68, 57, (351,9,0): 88, 70, 58, (351,10,0): 90, 70, 59, (351,11,0): 90, 72, 60, (351,12,0): 92, 72, 61, (351,13,0): 90, 72, 60, (351,14,0): 90, 70, 59, (351,15,0): 90, 70, 59, (351,16,0): 87, 64, 56, (351,17,0): 87, 64, 56, (351,18,0): 87, 64, 56, (351,19,0): 86, 63, 55, (351,20,0): 86, 63, 55, (351,21,0): 86, 63, 55, (351,22,0): 86, 64, 53, (351,23,0): 86, 64, 53, (351,24,0): 87, 65, 54, (351,25,0): 87, 65, 54, (351,26,0): 87, 65, 54, (351,27,0): 87, 65, 54, (351,28,0): 87, 65, 52, (351,29,0): 86, 64, 51, (351,30,0): 86, 64, 51, (351,31,0): 86, 64, 51, (351,32,0): 86, 68, 54, (351,33,0): 86, 68, 54, (351,34,0): 84, 66, 54, (351,35,0): 83, 65, 51, (351,36,0): 81, 63, 51, (351,37,0): 80, 62, 48, (351,38,0): 80, 60, 49, (351,39,0): 79, 60, 46, (351,40,0): 84, 62, 51, (351,41,0): 86, 64, 51, (351,42,0): 88, 66, 55, (351,43,0): 90, 68, 55, (351,44,0): 89, 67, 56, (351,45,0): 87, 65, 52, (351,46,0): 85, 61, 51, (351,47,0): 83, 59, 49, (351,48,0): 91, 64, 55, (351,49,0): 92, 63, 57, (351,50,0): 92, 61, 56, (351,51,0): 92, 61, 56, (351,52,0): 91, 61, 53, (351,53,0): 90, 60, 52, (351,54,0): 89, 59, 49, (351,55,0): 89, 59, 49, (351,56,0): 88, 58, 48, (351,57,0): 87, 57, 46, (351,58,0): 87, 57, 46, (351,59,0): 87, 57, 46, (351,60,0): 87, 57, 46, (351,61,0): 89, 59, 48, (351,62,0): 90, 61, 47, (351,63,0): 90, 63, 46, (351,64,0): 89, 62, 43, (351,65,0): 90, 63, 44, (351,66,0): 93, 64, 46, (351,67,0): 98, 67, 47, (351,68,0): 103, 70, 51, (351,69,0): 109, 72, 53, (351,70,0): 112, 74, 53, (351,71,0): 115, 74, 52, (351,72,0): 122, 80, 56, (351,73,0): 124, 80, 55, (351,74,0): 123, 79, 52, (351,75,0): 123, 78, 49, (351,76,0): 124, 79, 46, (351,77,0): 131, 87, 52, (351,78,0): 139, 96, 61, (351,79,0): 148, 104, 65, (351,80,0): 164, 117, 73, (351,81,0): 166, 120, 71, (351,82,0): 166, 120, 71, (351,83,0): 162, 118, 69, (351,84,0): 158, 114, 65, (351,85,0): 157, 116, 64, (351,86,0): 160, 120, 68, (351,87,0): 162, 125, 72, (351,88,0): 156, 123, 69, (351,89,0): 157, 126, 71, (351,90,0): 158, 128, 74, (351,91,0): 155, 128, 73, (351,92,0): 154, 127, 72, (351,93,0): 155, 130, 74, (351,94,0): 160, 135, 79, (351,95,0): 162, 140, 83, (351,96,0): 168, 143, 86, (351,97,0): 162, 140, 80, (351,98,0): 160, 139, 76, (351,99,0): 164, 145, 79, (351,100,0): 172, 154, 88, (351,101,0): 181, 166, 97, (351,102,0): 187, 175, 103, (351,103,0): 189, 179, 107, (351,104,0): 189, 183, 109, (351,105,0): 185, 181, 108, (351,106,0): 181, 178, 107, (351,107,0): 176, 176, 104, (351,108,0): 173, 174, 106, (351,109,0): 171, 174, 105, (351,110,0): 172, 175, 108, (351,111,0): 169, 175, 111, (351,112,0): 166, 174, 114, (351,113,0): 165, 174, 117, (351,114,0): 166, 175, 118, (351,115,0): 167, 176, 119, (351,116,0): 167, 178, 118, (351,117,0): 167, 178, 118, (351,118,0): 166, 180, 119, (351,119,0): 166, 180, 119, (351,120,0): 172, 186, 124, (351,121,0): 172, 186, 124, (351,122,0): 173, 187, 125, (351,123,0): 174, 190, 127, (351,124,0): 176, 192, 129, (351,125,0): 175, 194, 130, (351,126,0): 178, 194, 131, (351,127,0): 177, 196, 132, (351,128,0): 178, 199, 134, (351,129,0): 177, 198, 133, (351,130,0): 176, 198, 133, (351,131,0): 175, 197, 133, (351,132,0): 173, 195, 131, (351,133,0): 170, 194, 132, (351,134,0): 170, 194, 132, (351,135,0): 169, 193, 133, (351,136,0): 173, 197, 139, (351,137,0): 170, 194, 136, (351,138,0): 171, 192, 135, (351,139,0): 172, 191, 135, (351,140,0): 171, 190, 134, (351,141,0): 164, 181, 126, (351,142,0): 153, 167, 114, (351,143,0): 142, 156, 105, (351,144,0): 133, 146, 100, (351,145,0): 127, 140, 96, (351,146,0): 123, 139, 94, (351,147,0): 129, 145, 98, (351,148,0): 135, 153, 105, (351,149,0): 141, 161, 110, (351,150,0): 151, 174, 122, (351,151,0): 162, 187, 132, (351,152,0): 165, 194, 140, (351,153,0): 163, 196, 143, (351,154,0): 161, 200, 147, (351,155,0): 160, 203, 150, (351,156,0): 160, 204, 153, (351,157,0): 156, 204, 154, (351,158,0): 155, 205, 156, (351,159,0): 154, 203, 156, (351,160,0): 157, 205, 163, (351,161,0): 157, 205, 163, (351,162,0): 156, 207, 166, (351,163,0): 158, 209, 168, (351,164,0): 159, 209, 171, (351,165,0): 160, 210, 172, (351,166,0): 160, 212, 174, (351,167,0): 161, 213, 177, (351,168,0): 159, 213, 177, (351,169,0): 160, 214, 180, (351,170,0): 162, 216, 182, (351,171,0): 164, 218, 186, (351,172,0): 165, 220, 188, (351,173,0): 167, 222, 191, (351,174,0): 168, 223, 192, (351,175,0): 169, 224, 193, (351,176,0): 166, 223, 191, (351,177,0): 166, 226, 192, (351,178,0): 168, 227, 195, (351,179,0): 169, 228, 196, (351,180,0): 169, 228, 196, (351,181,0): 168, 227, 195, (351,182,0): 167, 226, 194, (351,183,0): 165, 224, 192, (351,184,0): 164, 223, 191, (351,185,0): 164, 223, 191, (351,186,0): 165, 224, 192, (351,187,0): 166, 225, 193, (351,188,0): 166, 225, 193, (351,189,0): 167, 226, 194, (351,190,0): 168, 227, 195, (351,191,0): 168, 227, 197, (351,192,0): 174, 230, 201, (351,193,0): 175, 231, 202, (351,194,0): 177, 232, 201, (351,195,0): 177, 232, 201, (351,196,0): 176, 231, 199, (351,197,0): 174, 230, 195, (351,198,0): 173, 227, 191, (351,199,0): 171, 225, 189, (351,200,0): 166, 218, 182, (351,201,0): 167, 218, 185, (351,202,0): 168, 219, 188, (351,203,0): 168, 218, 189, (351,204,0): 168, 216, 190, (351,205,0): 166, 214, 190, (351,206,0): 164, 212, 190, (351,207,0): 163, 211, 187, (351,208,0): 164, 210, 184, (351,209,0): 168, 214, 186, (351,210,0): 171, 217, 191, (351,211,0): 170, 216, 190, (351,212,0): 166, 211, 188, (351,213,0): 162, 207, 184, (351,214,0): 162, 207, 184, (351,215,0): 163, 208, 187, (351,216,0): 161, 206, 186, (351,217,0): 161, 206, 186, (351,218,0): 163, 207, 190, (351,219,0): 164, 208, 191, (351,220,0): 164, 208, 193, (351,221,0): 164, 208, 193, (351,222,0): 163, 207, 194, (351,223,0): 160, 206, 195, (351,224,0): 158, 205, 195, (351,225,0): 158, 205, 197, (351,226,0): 159, 206, 198, (351,227,0): 161, 208, 200, (351,228,0): 163, 210, 202, (351,229,0): 164, 211, 205, (351,230,0): 165, 212, 206, (351,231,0): 166, 213, 207, (351,232,0): 160, 205, 200, (351,233,0): 160, 205, 202, (351,234,0): 160, 205, 202, (351,235,0): 160, 204, 203, (351,236,0): 160, 204, 203, (351,237,0): 160, 204, 203, (351,238,0): 160, 204, 203, (351,239,0): 162, 204, 203, (351,240,0): 160, 202, 201, (351,241,0): 161, 203, 202, (351,242,0): 163, 203, 203, (351,243,0): 163, 205, 204, (351,244,0): 165, 205, 207, (351,245,0): 163, 204, 206, (351,246,0): 163, 202, 207, (351,247,0): 162, 203, 207, (351,248,0): 163, 202, 207, (351,249,0): 163, 204, 210, (351,250,0): 165, 204, 211, (351,251,0): 166, 206, 214, (351,252,0): 168, 206, 217, (351,253,0): 169, 209, 219, (351,254,0): 171, 209, 220, (351,255,0): 172, 210, 223, (351,256,0): 172, 209, 225, (351,257,0): 172, 209, 227, (351,258,0): 171, 208, 226, (351,259,0): 171, 208, 226, (351,260,0): 169, 207, 226, (351,261,0): 169, 207, 226, (351,262,0): 166, 207, 227, (351,263,0): 165, 208, 227, (351,264,0): 167, 209, 231, (351,265,0): 165, 210, 233, (351,266,0): 164, 210, 233, (351,267,0): 163, 209, 233, (351,268,0): 162, 210, 233, (351,269,0): 161, 208, 234, (351,270,0): 161, 208, 234, (351,271,0): 161, 208, 234, (351,272,0): 159, 206, 236, (351,273,0): 160, 206, 239, (351,274,0): 160, 206, 239, (351,275,0): 160, 206, 239, (351,276,0): 159, 205, 238, (351,277,0): 157, 203, 236, (351,278,0): 155, 201, 234, (351,279,0): 154, 201, 231, (351,280,0): 153, 199, 232, (351,281,0): 152, 199, 229, (351,282,0): 151, 198, 228, (351,283,0): 149, 196, 226, (351,284,0): 149, 195, 228, (351,285,0): 149, 195, 228, (351,286,0): 150, 196, 229, (351,287,0): 150, 197, 227, (351,288,0): 152, 197, 226, (351,289,0): 151, 196, 225, (351,290,0): 150, 194, 223, (351,291,0): 149, 192, 224, (351,292,0): 149, 192, 224, (351,293,0): 152, 193, 225, (351,294,0): 154, 194, 229, (351,295,0): 156, 194, 231, (351,296,0): 156, 191, 229, (351,297,0): 156, 191, 231, (351,298,0): 158, 191, 232, (351,299,0): 158, 191, 234, (351,300,0): 160, 191, 235, (351,301,0): 160, 191, 237, (351,302,0): 163, 191, 238, (351,303,0): 160, 192, 239, (351,304,0): 160, 198, 243, (351,305,0): 158, 199, 243, (351,306,0): 162, 199, 244, (351,307,0): 167, 199, 246, (351,308,0): 172, 200, 250, (351,309,0): 174, 196, 246, (351,310,0): 173, 189, 238, (351,311,0): 171, 184, 229, (351,312,0): 169, 178, 219, (351,313,0): 166, 172, 206, (351,314,0): 160, 161, 191, (351,315,0): 152, 150, 174, (351,316,0): 147, 139, 160, (351,317,0): 142, 134, 149, (351,318,0): 142, 130, 144, (351,319,0): 141, 128, 138, (351,320,0): 140, 123, 131, (351,321,0): 138, 117, 124, (351,322,0): 133, 110, 118, (351,323,0): 135, 108, 117, (351,324,0): 139, 106, 115, (351,325,0): 138, 101, 109, (351,326,0): 132, 91, 97, (351,327,0): 125, 83, 85, (351,328,0): 112, 68, 69, (351,329,0): 106, 62, 59, (351,330,0): 95, 54, 52, (351,331,0): 86, 46, 44, (351,332,0): 78, 42, 42, (351,333,0): 74, 40, 41, (351,334,0): 69, 37, 42, (351,335,0): 67, 34, 41, (351,336,0): 65, 34, 40, (351,337,0): 64, 33, 39, (351,338,0): 64, 33, 39, (351,339,0): 63, 32, 38, (351,340,0): 60, 30, 38, (351,341,0): 57, 30, 37, (351,342,0): 56, 31, 37, (351,343,0): 53, 30, 36, (351,344,0): 52, 29, 37, (351,345,0): 52, 31, 38, (351,346,0): 52, 31, 38, (351,347,0): 52, 33, 39, (351,348,0): 53, 34, 40, (351,349,0): 53, 34, 40, (351,350,0): 54, 35, 41, (351,351,0): 55, 34, 39, (351,352,0): 59, 32, 39, (351,353,0): 62, 33, 38, (351,354,0): 64, 33, 38, (351,355,0): 66, 34, 37, (351,356,0): 70, 36, 37, (351,357,0): 73, 37, 37, (351,358,0): 78, 36, 37, (351,359,0): 80, 36, 33, (351,360,0): 93, 45, 41, (351,361,0): 96, 45, 41, (351,362,0): 99, 46, 42, (351,363,0): 100, 45, 40, (351,364,0): 99, 44, 39, (351,365,0): 96, 41, 34, (351,366,0): 93, 38, 31, (351,367,0): 90, 35, 32, (351,368,0): 90, 36, 36, (351,369,0): 91, 36, 39, (351,370,0): 90, 38, 42, (351,371,0): 90, 38, 42, (351,372,0): 88, 38, 41, (351,373,0): 85, 36, 39, (351,374,0): 82, 33, 36, (351,375,0): 79, 33, 35, (351,376,0): 82, 37, 40, (351,377,0): 80, 38, 40, (351,378,0): 77, 36, 40, (351,379,0): 76, 37, 40, (351,380,0): 74, 38, 40, (351,381,0): 74, 38, 40, (351,382,0): 75, 41, 42, (351,383,0): 78, 39, 42, (351,384,0): 78, 34, 35, (351,385,0): 81, 33, 33, (351,386,0): 83, 35, 35, (351,387,0): 85, 37, 37, (351,388,0): 87, 37, 38, (351,389,0): 89, 39, 38, (351,390,0): 92, 41, 40, (351,391,0): 92, 41, 40, (351,392,0): 93, 42, 41, (351,393,0): 93, 43, 44, (351,394,0): 95, 45, 46, (351,395,0): 94, 46, 46, (351,396,0): 94, 46, 46, (351,397,0): 89, 43, 45, (351,398,0): 86, 40, 42, (351,399,0): 82, 40, 42, (351,400,0): 75, 39, 41, (351,401,0): 70, 38, 41, (351,402,0): 68, 36, 39, (351,403,0): 66, 34, 37, (351,404,0): 64, 32, 35, (351,405,0): 63, 31, 34, (351,406,0): 63, 31, 34, (351,407,0): 63, 31, 34, (351,408,0): 66, 34, 37, (351,409,0): 66, 34, 37, (351,410,0): 66, 34, 37, (351,411,0): 66, 34, 37, (351,412,0): 67, 35, 38, (351,413,0): 69, 37, 40, (351,414,0): 71, 39, 42, (351,415,0): 77, 38, 41, (351,416,0): 89, 40, 43, (351,417,0): 94, 42, 44, (351,418,0): 97, 47, 50, (351,419,0): 97, 48, 51, (351,420,0): 94, 48, 51, (351,421,0): 93, 48, 51, (351,422,0): 93, 51, 53, (351,423,0): 95, 55, 56, (351,424,0): 92, 52, 53, (351,425,0): 94, 55, 56, (351,426,0): 99, 59, 60, (351,427,0): 102, 62, 63, (351,428,0): 101, 61, 61, (351,429,0): 98, 58, 58, (351,430,0): 93, 53, 51, (351,431,0): 89, 49, 47, (351,432,0): 87, 46, 44, (351,433,0): 84, 43, 39, (351,434,0): 80, 40, 38, (351,435,0): 78, 38, 36, (351,436,0): 77, 39, 36, (351,437,0): 74, 36, 33, (351,438,0): 68, 33, 31, (351,439,0): 63, 29, 27, (351,440,0): 64, 30, 28, (351,441,0): 63, 32, 30, (351,442,0): 64, 33, 31, (351,443,0): 65, 34, 32, (351,444,0): 64, 33, 31, (351,445,0): 64, 33, 31, (351,446,0): 61, 31, 31, (351,447,0): 61, 31, 31, (351,448,0): 59, 32, 37, (351,449,0): 59, 32, 39, (351,450,0): 60, 33, 40, (351,451,0): 62, 32, 40, (351,452,0): 61, 31, 39, (351,453,0): 60, 29, 37, (351,454,0): 58, 27, 35, (351,455,0): 57, 26, 34, (351,456,0): 59, 28, 34, (351,457,0): 59, 28, 34, (351,458,0): 60, 29, 34, (351,459,0): 62, 32, 34, (351,460,0): 63, 34, 36, (351,461,0): 64, 38, 37, (351,462,0): 67, 41, 40, (351,463,0): 68, 44, 40, (351,464,0): 79, 59, 50, (351,465,0): 74, 56, 46, (351,466,0): 70, 52, 42, (351,467,0): 68, 49, 42, (351,468,0): 67, 48, 41, (351,469,0): 65, 46, 40, (351,470,0): 61, 42, 36, (351,471,0): 56, 38, 34, (351,472,0): 52, 34, 32, (351,473,0): 50, 32, 32, (351,474,0): 46, 30, 30, (351,475,0): 47, 31, 32, (351,476,0): 51, 35, 38, (351,477,0): 54, 38, 41, (351,478,0): 55, 39, 42, (351,479,0): 57, 37, 39, (351,480,0): 68, 42, 43, (351,481,0): 68, 40, 39, (351,482,0): 63, 37, 38, (351,483,0): 59, 38, 35, (351,484,0): 60, 41, 37, (351,485,0): 64, 46, 42, (351,486,0): 67, 52, 47, (351,487,0): 70, 55, 50, (351,488,0): 75, 60, 55, (351,489,0): 74, 59, 52, (351,490,0): 72, 59, 51, (351,491,0): 70, 60, 51, (351,492,0): 70, 61, 52, (351,493,0): 70, 66, 55, (351,494,0): 72, 70, 58, (351,495,0): 75, 73, 61, (351,496,0): 78, 71, 61, (351,497,0): 75, 68, 58, (351,498,0): 70, 63, 55, (351,499,0): 66, 59, 51, (351,500,0): 64, 55, 48, (351,501,0): 64, 53, 47, (351,502,0): 64, 53, 47, (351,503,0): 66, 52, 49, (351,504,0): 74, 59, 56, (351,505,0): 70, 55, 52, (351,506,0): 67, 49, 47, (351,507,0): 65, 47, 45, (351,508,0): 67, 49, 49, (351,509,0): 69, 49, 50, (351,510,0): 68, 48, 49, (351,511,0): 67, 46, 45, (351,512,0): 67, 46, 41, (351,513,0): 65, 45, 38, (351,514,0): 66, 43, 37, (351,515,0): 62, 42, 35, (351,516,0): 65, 42, 36, (351,517,0): 65, 45, 38, (351,518,0): 69, 46, 40, (351,519,0): 69, 49, 42, (351,520,0): 68, 45, 39, (351,521,0): 67, 47, 40, (351,522,0): 72, 49, 43, (351,523,0): 76, 56, 49, (351,524,0): 84, 61, 55, (351,525,0): 85, 65, 56, (351,526,0): 86, 63, 57, (351,527,0): 84, 61, 55, (351,528,0): 70, 46, 44, (351,529,0): 66, 40, 41, (351,530,0): 59, 35, 35, (351,531,0): 56, 32, 32, (351,532,0): 54, 33, 32, (351,533,0): 54, 34, 35, (351,534,0): 54, 34, 35, (351,535,0): 53, 33, 34, (351,536,0): 53, 33, 34, (351,537,0): 52, 32, 34, (351,538,0): 49, 29, 31, (351,539,0): 49, 27, 30, (351,540,0): 50, 25, 29, (351,541,0): 51, 26, 32, (351,542,0): 53, 26, 33, (351,543,0): 53, 28, 34, (351,544,0): 49, 24, 30, (351,545,0): 48, 26, 29, (351,546,0): 48, 27, 32, (351,547,0): 49, 29, 31, (351,548,0): 50, 31, 33, (351,549,0): 50, 34, 35, (351,550,0): 50, 36, 36, (351,551,0): 51, 37, 37, (351,552,0): 45, 33, 33, (351,553,0): 47, 35, 35, (351,554,0): 51, 37, 37, (351,555,0): 53, 39, 39, (351,556,0): 53, 37, 38, (351,557,0): 51, 35, 36, (351,558,0): 48, 32, 33, (351,559,0): 45, 31, 31, (351,560,0): 44, 33, 39, (351,561,0): 43, 34, 39, (351,562,0): 43, 32, 40, (351,563,0): 41, 30, 36, (351,564,0): 39, 28, 34, (351,565,0): 36, 25, 29, (351,566,0): 35, 23, 27, (351,567,0): 33, 21, 25, (351,568,0): 39, 24, 29, (351,569,0): 41, 26, 29, (351,570,0): 45, 30, 33, (351,571,0): 49, 35, 35, (351,572,0): 54, 38, 39, (351,573,0): 56, 40, 41, (351,574,0): 58, 42, 43, (351,575,0): 57, 43, 43, (351,576,0): 59, 49, 48, (351,577,0): 59, 54, 51, (351,578,0): 62, 57, 54, (351,579,0): 64, 60, 57, (351,580,0): 62, 61, 57, (351,581,0): 59, 58, 54, (351,582,0): 55, 54, 50, (351,583,0): 52, 51, 47, (351,584,0): 56, 55, 51, (351,585,0): 56, 55, 51, (351,586,0): 57, 56, 52, (351,587,0): 57, 56, 52, (351,588,0): 58, 57, 53, (351,589,0): 59, 60, 55, (351,590,0): 60, 61, 56, (351,591,0): 61, 61, 59, (351,592,0): 64, 62, 63, (351,593,0): 65, 61, 62, (351,594,0): 62, 57, 61, (351,595,0): 59, 55, 56, (351,596,0): 56, 50, 54, (351,597,0): 53, 47, 49, (351,598,0): 51, 45, 49, (351,599,0): 49, 43, 45, (352,0,0): 81, 57, 53, (352,1,0): 80, 60, 53, (352,2,0): 83, 60, 54, (352,3,0): 83, 63, 56, (352,4,0): 88, 65, 57, (352,5,0): 88, 68, 59, (352,6,0): 91, 69, 58, (352,7,0): 90, 70, 59, (352,8,0): 92, 70, 57, (352,9,0): 91, 72, 58, (352,10,0): 94, 72, 58, (352,11,0): 92, 73, 58, (352,12,0): 95, 74, 57, (352,13,0): 92, 73, 56, (352,14,0): 94, 73, 56, (352,15,0): 94, 73, 56, (352,16,0): 89, 68, 51, (352,17,0): 89, 66, 52, (352,18,0): 88, 65, 51, (352,19,0): 87, 64, 50, (352,20,0): 86, 63, 49, (352,21,0): 84, 61, 47, (352,22,0): 83, 59, 47, (352,23,0): 83, 59, 47, (352,24,0): 89, 65, 53, (352,25,0): 89, 65, 53, (352,26,0): 88, 64, 52, (352,27,0): 87, 63, 51, (352,28,0): 88, 64, 54, (352,29,0): 89, 65, 55, (352,30,0): 90, 66, 56, (352,31,0): 90, 68, 57, (352,32,0): 88, 68, 57, (352,33,0): 87, 67, 56, (352,34,0): 86, 66, 57, (352,35,0): 84, 64, 53, (352,36,0): 82, 62, 53, (352,37,0): 80, 60, 49, (352,38,0): 79, 59, 50, (352,39,0): 78, 58, 47, (352,40,0): 77, 57, 48, (352,41,0): 79, 59, 48, (352,42,0): 81, 61, 52, (352,43,0): 84, 64, 53, (352,44,0): 85, 65, 56, (352,45,0): 85, 65, 54, (352,46,0): 87, 64, 56, (352,47,0): 86, 64, 53, (352,48,0): 89, 62, 51, (352,49,0): 91, 63, 51, (352,50,0): 91, 63, 51, (352,51,0): 91, 63, 51, (352,52,0): 90, 62, 50, (352,53,0): 87, 59, 47, (352,54,0): 85, 57, 45, (352,55,0): 83, 55, 43, (352,56,0): 82, 54, 42, (352,57,0): 84, 56, 42, (352,58,0): 87, 59, 45, (352,59,0): 90, 62, 48, (352,60,0): 93, 65, 51, (352,61,0): 94, 66, 52, (352,62,0): 93, 65, 51, (352,63,0): 93, 66, 49, (352,64,0): 94, 67, 48, (352,65,0): 94, 67, 46, (352,66,0): 94, 67, 46, (352,67,0): 96, 68, 47, (352,68,0): 101, 70, 50, (352,69,0): 105, 73, 52, (352,70,0): 110, 75, 53, (352,71,0): 114, 78, 54, (352,72,0): 113, 77, 51, (352,73,0): 114, 77, 50, (352,74,0): 118, 79, 50, (352,75,0): 121, 82, 51, (352,76,0): 126, 85, 55, (352,77,0): 130, 89, 57, (352,78,0): 134, 93, 61, (352,79,0): 136, 96, 60, (352,80,0): 146, 102, 63, (352,81,0): 148, 105, 62, (352,82,0): 150, 107, 64, (352,83,0): 148, 107, 63, (352,84,0): 148, 107, 63, (352,85,0): 149, 111, 64, (352,86,0): 155, 119, 71, (352,87,0): 159, 125, 77, (352,88,0): 157, 125, 74, (352,89,0): 156, 126, 74, (352,90,0): 154, 127, 74, (352,91,0): 152, 127, 73, (352,92,0): 149, 126, 72, (352,93,0): 151, 130, 75, (352,94,0): 157, 136, 81, (352,95,0): 163, 140, 86, (352,96,0): 167, 141, 90, (352,97,0): 166, 138, 88, (352,98,0): 164, 137, 84, (352,99,0): 162, 137, 81, (352,100,0): 164, 144, 83, (352,101,0): 173, 155, 91, (352,102,0): 183, 170, 102, (352,103,0): 191, 181, 110, (352,104,0): 186, 179, 107, (352,105,0): 183, 179, 106, (352,106,0): 178, 178, 106, (352,107,0): 175, 177, 104, (352,108,0): 170, 176, 106, (352,109,0): 167, 174, 104, (352,110,0): 165, 172, 104, (352,111,0): 162, 171, 106, (352,112,0): 161, 171, 110, (352,113,0): 161, 172, 112, (352,114,0): 162, 173, 113, (352,115,0): 164, 175, 115, (352,116,0): 166, 177, 117, (352,117,0): 167, 178, 118, (352,118,0): 169, 180, 120, (352,119,0): 170, 181, 121, (352,120,0): 170, 181, 121, (352,121,0): 170, 184, 123, (352,122,0): 172, 186, 125, (352,123,0): 175, 189, 128, (352,124,0): 177, 191, 130, (352,125,0): 177, 193, 131, (352,126,0): 178, 192, 131, (352,127,0): 177, 193, 131, (352,128,0): 179, 195, 133, (352,129,0): 179, 195, 133, (352,130,0): 179, 195, 133, (352,131,0): 176, 194, 134, (352,132,0): 176, 194, 134, (352,133,0): 174, 194, 135, (352,134,0): 174, 193, 137, (352,135,0): 172, 193, 136, (352,136,0): 169, 190, 134, (352,137,0): 169, 192, 138, (352,138,0): 171, 194, 140, (352,139,0): 171, 194, 142, (352,140,0): 168, 191, 139, (352,141,0): 162, 185, 133, (352,142,0): 156, 178, 129, (352,143,0): 150, 174, 124, (352,144,0): 138, 162, 114, (352,145,0): 138, 164, 117, (352,146,0): 141, 169, 121, (352,147,0): 146, 174, 126, (352,148,0): 150, 179, 131, (352,149,0): 155, 184, 136, (352,150,0): 157, 189, 142, (352,151,0): 158, 191, 144, (352,152,0): 157, 193, 147, (352,153,0): 156, 195, 148, (352,154,0): 156, 198, 152, (352,155,0): 158, 201, 156, (352,156,0): 157, 202, 159, (352,157,0): 158, 203, 160, (352,158,0): 157, 204, 162, (352,159,0): 156, 204, 162, (352,160,0): 159, 210, 169, (352,161,0): 158, 211, 169, (352,162,0): 158, 210, 171, (352,163,0): 159, 211, 172, (352,164,0): 157, 212, 173, (352,165,0): 158, 213, 174, (352,166,0): 157, 213, 176, (352,167,0): 158, 214, 177, (352,168,0): 157, 213, 178, (352,169,0): 159, 214, 182, (352,170,0): 160, 217, 184, (352,171,0): 163, 220, 188, (352,172,0): 163, 222, 190, (352,173,0): 164, 223, 193, (352,174,0): 164, 223, 193, (352,175,0): 164, 223, 193, (352,176,0): 165, 221, 192, (352,177,0): 165, 222, 190, (352,178,0): 164, 220, 191, (352,179,0): 164, 220, 191, (352,180,0): 163, 219, 190, (352,181,0): 163, 219, 190, (352,182,0): 162, 218, 189, (352,183,0): 162, 218, 189, (352,184,0): 163, 219, 192, (352,185,0): 163, 219, 192, (352,186,0): 163, 219, 194, (352,187,0): 163, 219, 194, (352,188,0): 163, 219, 194, (352,189,0): 163, 219, 194, (352,190,0): 163, 219, 194, (352,191,0): 163, 219, 194, (352,192,0): 166, 222, 197, (352,193,0): 167, 223, 198, (352,194,0): 167, 223, 198, (352,195,0): 167, 223, 198, (352,196,0): 169, 223, 197, (352,197,0): 170, 224, 198, (352,198,0): 171, 224, 198, (352,199,0): 171, 224, 198, (352,200,0): 164, 217, 191, (352,201,0): 164, 217, 191, (352,202,0): 166, 216, 191, (352,203,0): 166, 215, 193, (352,204,0): 167, 215, 193, (352,205,0): 168, 216, 194, (352,206,0): 168, 215, 195, (352,207,0): 168, 215, 195, (352,208,0): 163, 210, 190, (352,209,0): 163, 210, 190, (352,210,0): 162, 209, 189, (352,211,0): 160, 207, 187, (352,212,0): 159, 206, 188, (352,213,0): 158, 205, 187, (352,214,0): 157, 204, 186, (352,215,0): 156, 203, 187, (352,216,0): 157, 204, 188, (352,217,0): 157, 203, 190, (352,218,0): 157, 203, 192, (352,219,0): 157, 203, 192, (352,220,0): 157, 203, 192, (352,221,0): 157, 203, 192, (352,222,0): 157, 203, 193, (352,223,0): 157, 203, 193, (352,224,0): 161, 204, 197, (352,225,0): 161, 203, 199, (352,226,0): 160, 202, 198, (352,227,0): 160, 202, 198, (352,228,0): 161, 203, 199, (352,229,0): 161, 206, 203, (352,230,0): 162, 206, 205, (352,231,0): 163, 207, 206, (352,232,0): 165, 209, 210, (352,233,0): 165, 209, 210, (352,234,0): 163, 208, 211, (352,235,0): 162, 207, 212, (352,236,0): 162, 207, 212, (352,237,0): 161, 206, 211, (352,238,0): 160, 205, 210, (352,239,0): 160, 205, 210, (352,240,0): 160, 204, 205, (352,241,0): 160, 204, 205, (352,242,0): 162, 203, 205, (352,243,0): 160, 204, 205, (352,244,0): 162, 203, 207, (352,245,0): 160, 203, 209, (352,246,0): 162, 202, 210, (352,247,0): 160, 203, 210, (352,248,0): 160, 200, 210, (352,249,0): 159, 201, 213, (352,250,0): 162, 201, 216, (352,251,0): 162, 204, 218, (352,252,0): 166, 205, 222, (352,253,0): 166, 208, 224, (352,254,0): 169, 207, 226, (352,255,0): 168, 209, 227, (352,256,0): 161, 204, 223, (352,257,0): 163, 205, 227, (352,258,0): 163, 208, 229, (352,259,0): 165, 210, 231, (352,260,0): 167, 212, 235, (352,261,0): 167, 213, 237, (352,262,0): 167, 213, 239, (352,263,0): 166, 213, 239, (352,264,0): 168, 215, 243, (352,265,0): 165, 214, 244, (352,266,0): 164, 213, 245, (352,267,0): 163, 212, 245, (352,268,0): 161, 211, 244, (352,269,0): 159, 209, 244, (352,270,0): 158, 208, 243, (352,271,0): 158, 208, 243, (352,272,0): 160, 208, 244, (352,273,0): 160, 209, 242, (352,274,0): 159, 208, 241, (352,275,0): 157, 206, 239, (352,276,0): 155, 204, 237, (352,277,0): 154, 203, 236, (352,278,0): 153, 202, 235, (352,279,0): 152, 201, 233, (352,280,0): 147, 196, 229, (352,281,0): 148, 197, 229, (352,282,0): 148, 197, 229, (352,283,0): 149, 198, 230, (352,284,0): 148, 197, 229, (352,285,0): 147, 196, 228, (352,286,0): 146, 195, 225, (352,287,0): 146, 195, 225, (352,288,0): 150, 197, 227, (352,289,0): 150, 197, 227, (352,290,0): 151, 196, 227, (352,291,0): 151, 196, 229, (352,292,0): 151, 196, 229, (352,293,0): 152, 195, 230, (352,294,0): 152, 195, 230, (352,295,0): 154, 193, 232, (352,296,0): 153, 192, 231, (352,297,0): 155, 192, 234, (352,298,0): 156, 193, 235, (352,299,0): 157, 194, 238, (352,300,0): 160, 194, 239, (352,301,0): 161, 195, 241, (352,302,0): 162, 196, 242, (352,303,0): 160, 197, 242, (352,304,0): 156, 201, 242, (352,305,0): 157, 202, 243, (352,306,0): 159, 200, 246, (352,307,0): 164, 197, 248, (352,308,0): 168, 195, 250, (352,309,0): 171, 192, 249, (352,310,0): 174, 189, 246, (352,311,0): 176, 189, 241, (352,312,0): 169, 180, 226, (352,313,0): 166, 175, 214, (352,314,0): 162, 168, 202, (352,315,0): 157, 161, 190, (352,316,0): 155, 153, 177, (352,317,0): 149, 144, 167, (352,318,0): 143, 133, 157, (352,319,0): 142, 124, 146, (352,320,0): 146, 121, 140, (352,321,0): 144, 116, 130, (352,322,0): 141, 110, 125, (352,323,0): 139, 107, 120, (352,324,0): 139, 103, 115, (352,325,0): 133, 96, 104, (352,326,0): 124, 84, 92, (352,327,0): 115, 74, 80, (352,328,0): 104, 63, 67, (352,329,0): 97, 57, 58, (352,330,0): 86, 47, 50, (352,331,0): 77, 41, 43, (352,332,0): 73, 39, 40, (352,333,0): 70, 38, 41, (352,334,0): 68, 36, 41, (352,335,0): 65, 34, 40, (352,336,0): 63, 33, 41, (352,337,0): 62, 32, 40, (352,338,0): 59, 32, 41, (352,339,0): 57, 31, 40, (352,340,0): 54, 31, 41, (352,341,0): 51, 30, 39, (352,342,0): 50, 28, 40, (352,343,0): 49, 29, 40, (352,344,0): 50, 30, 39, (352,345,0): 47, 30, 38, (352,346,0): 47, 30, 36, (352,347,0): 49, 30, 36, (352,348,0): 50, 31, 35, (352,349,0): 52, 33, 35, (352,350,0): 55, 35, 37, (352,351,0): 56, 36, 37, (352,352,0): 58, 36, 38, (352,353,0): 60, 36, 36, (352,354,0): 60, 34, 33, (352,355,0): 63, 35, 32, (352,356,0): 67, 36, 33, (352,357,0): 73, 38, 34, (352,358,0): 80, 39, 35, (352,359,0): 87, 39, 35, (352,360,0): 95, 44, 40, (352,361,0): 98, 43, 40, (352,362,0): 100, 42, 40, (352,363,0): 97, 41, 40, (352,364,0): 95, 41, 39, (352,365,0): 91, 41, 40, (352,366,0): 87, 42, 39, (352,367,0): 85, 41, 40, (352,368,0): 83, 37, 39, (352,369,0): 83, 37, 39, (352,370,0): 83, 37, 40, (352,371,0): 82, 36, 39, (352,372,0): 81, 36, 39, (352,373,0): 80, 35, 38, (352,374,0): 80, 35, 38, (352,375,0): 79, 34, 37, (352,376,0): 76, 34, 36, (352,377,0): 76, 34, 36, (352,378,0): 76, 34, 36, (352,379,0): 75, 35, 36, (352,380,0): 75, 35, 36, (352,381,0): 75, 35, 36, (352,382,0): 75, 35, 36, (352,383,0): 75, 35, 36, (352,384,0): 79, 37, 38, (352,385,0): 79, 35, 34, (352,386,0): 78, 34, 31, (352,387,0): 81, 36, 33, (352,388,0): 89, 39, 38, (352,389,0): 94, 43, 40, (352,390,0): 97, 43, 41, (352,391,0): 97, 41, 40, (352,392,0): 92, 38, 36, (352,393,0): 91, 40, 39, (352,394,0): 91, 41, 42, (352,395,0): 88, 42, 42, (352,396,0): 83, 41, 42, (352,397,0): 80, 40, 41, (352,398,0): 76, 37, 40, (352,399,0): 71, 37, 38, (352,400,0): 66, 36, 36, (352,401,0): 65, 37, 36, (352,402,0): 65, 37, 36, (352,403,0): 65, 37, 36, (352,404,0): 63, 35, 34, (352,405,0): 61, 33, 32, (352,406,0): 59, 31, 30, (352,407,0): 58, 30, 29, (352,408,0): 62, 34, 33, (352,409,0): 62, 34, 33, (352,410,0): 63, 35, 34, (352,411,0): 65, 37, 36, (352,412,0): 66, 38, 37, (352,413,0): 68, 40, 39, (352,414,0): 69, 41, 40, (352,415,0): 73, 39, 40, (352,416,0): 88, 42, 44, (352,417,0): 92, 42, 45, (352,418,0): 96, 46, 49, (352,419,0): 99, 49, 52, (352,420,0): 101, 51, 54, (352,421,0): 101, 51, 54, (352,422,0): 100, 51, 54, (352,423,0): 99, 50, 53, (352,424,0): 98, 54, 55, (352,425,0): 97, 55, 56, (352,426,0): 98, 58, 58, (352,427,0): 95, 60, 58, (352,428,0): 94, 60, 58, (352,429,0): 89, 60, 56, (352,430,0): 87, 58, 54, (352,431,0): 86, 55, 50, (352,432,0): 91, 53, 50, (352,433,0): 88, 48, 46, (352,434,0): 82, 44, 43, (352,435,0): 77, 42, 40, (352,436,0): 74, 40, 38, (352,437,0): 71, 37, 35, (352,438,0): 64, 33, 31, (352,439,0): 60, 29, 27, (352,440,0): 62, 31, 29, (352,441,0): 62, 30, 31, (352,442,0): 62, 30, 31, (352,443,0): 62, 30, 31, (352,444,0): 64, 30, 31, (352,445,0): 64, 30, 31, (352,446,0): 65, 29, 33, (352,447,0): 64, 29, 33, (352,448,0): 63, 30, 39, (352,449,0): 62, 29, 40, (352,450,0): 61, 28, 39, (352,451,0): 60, 27, 38, (352,452,0): 59, 26, 35, (352,453,0): 57, 26, 34, (352,454,0): 56, 25, 31, (352,455,0): 55, 26, 31, (352,456,0): 57, 28, 33, (352,457,0): 55, 26, 31, (352,458,0): 51, 25, 28, (352,459,0): 51, 25, 26, (352,460,0): 53, 29, 29, (352,461,0): 57, 36, 35, (352,462,0): 63, 42, 41, (352,463,0): 66, 47, 43, (352,464,0): 70, 52, 48, (352,465,0): 70, 52, 48, (352,466,0): 71, 53, 49, (352,467,0): 70, 52, 50, (352,468,0): 67, 49, 47, (352,469,0): 63, 45, 43, (352,470,0): 59, 41, 39, (352,471,0): 55, 40, 37, (352,472,0): 49, 33, 33, (352,473,0): 48, 32, 32, (352,474,0): 47, 31, 31, (352,475,0): 47, 31, 31, (352,476,0): 47, 31, 32, (352,477,0): 47, 31, 32, (352,478,0): 48, 32, 33, (352,479,0): 51, 32, 34, (352,480,0): 53, 33, 35, (352,481,0): 53, 33, 35, (352,482,0): 54, 33, 38, (352,483,0): 54, 35, 37, (352,484,0): 58, 39, 41, (352,485,0): 60, 44, 44, (352,486,0): 64, 48, 48, (352,487,0): 67, 52, 49, (352,488,0): 75, 60, 57, (352,489,0): 75, 60, 55, (352,490,0): 74, 59, 54, (352,491,0): 72, 59, 53, (352,492,0): 71, 58, 50, (352,493,0): 69, 59, 50, (352,494,0): 69, 59, 49, (352,495,0): 70, 60, 51, (352,496,0): 75, 62, 56, (352,497,0): 74, 60, 57, (352,498,0): 71, 57, 54, (352,499,0): 68, 54, 51, (352,500,0): 67, 52, 49, (352,501,0): 66, 51, 48, (352,502,0): 65, 50, 47, (352,503,0): 65, 49, 49, (352,504,0): 64, 46, 46, (352,505,0): 65, 47, 47, (352,506,0): 67, 47, 48, (352,507,0): 67, 47, 48, (352,508,0): 66, 46, 47, (352,509,0): 66, 44, 46, (352,510,0): 65, 43, 45, (352,511,0): 66, 42, 42, (352,512,0): 64, 40, 38, (352,513,0): 64, 40, 36, (352,514,0): 65, 40, 36, (352,515,0): 65, 41, 37, (352,516,0): 66, 41, 37, (352,517,0): 65, 41, 37, (352,518,0): 67, 42, 37, (352,519,0): 66, 43, 37, (352,520,0): 67, 42, 35, (352,521,0): 67, 44, 36, (352,522,0): 72, 47, 40, (352,523,0): 77, 54, 46, (352,524,0): 84, 59, 52, (352,525,0): 85, 63, 52, (352,526,0): 84, 59, 52, (352,527,0): 81, 58, 50, (352,528,0): 73, 50, 44, (352,529,0): 70, 46, 42, (352,530,0): 65, 41, 39, (352,531,0): 60, 36, 34, (352,532,0): 56, 32, 30, (352,533,0): 52, 31, 30, (352,534,0): 51, 29, 31, (352,535,0): 51, 29, 31, (352,536,0): 52, 30, 33, (352,537,0): 51, 28, 34, (352,538,0): 50, 27, 35, (352,539,0): 51, 25, 34, (352,540,0): 50, 24, 35, (352,541,0): 50, 24, 37, (352,542,0): 51, 25, 38, (352,543,0): 52, 26, 39, (352,544,0): 47, 24, 32, (352,545,0): 46, 25, 30, (352,546,0): 45, 24, 31, (352,547,0): 46, 25, 30, (352,548,0): 47, 26, 31, (352,549,0): 47, 28, 32, (352,550,0): 49, 30, 34, (352,551,0): 50, 31, 35, (352,552,0): 53, 34, 36, (352,553,0): 52, 33, 35, (352,554,0): 52, 34, 34, (352,555,0): 51, 33, 33, (352,556,0): 51, 33, 33, (352,557,0): 50, 32, 32, (352,558,0): 50, 32, 32, (352,559,0): 47, 31, 31, (352,560,0): 43, 31, 35, (352,561,0): 42, 31, 35, (352,562,0): 43, 32, 38, (352,563,0): 42, 31, 35, (352,564,0): 41, 29, 33, (352,565,0): 38, 26, 28, (352,566,0): 35, 23, 25, (352,567,0): 33, 21, 23, (352,568,0): 40, 25, 28, (352,569,0): 40, 26, 26, (352,570,0): 42, 28, 28, (352,571,0): 46, 32, 32, (352,572,0): 51, 35, 36, (352,573,0): 56, 40, 40, (352,574,0): 60, 44, 44, (352,575,0): 61, 47, 46, (352,576,0): 62, 50, 50, (352,577,0): 61, 53, 51, (352,578,0): 61, 56, 53, (352,579,0): 59, 58, 54, (352,580,0): 57, 58, 53, (352,581,0): 55, 57, 52, (352,582,0): 53, 55, 50, (352,583,0): 51, 53, 48, (352,584,0): 56, 55, 51, (352,585,0): 56, 55, 51, (352,586,0): 60, 55, 52, (352,587,0): 61, 56, 53, (352,588,0): 61, 57, 54, (352,589,0): 62, 58, 55, (352,590,0): 61, 60, 56, (352,591,0): 60, 60, 58, (352,592,0): 64, 64, 66, (352,593,0): 62, 62, 64, (352,594,0): 61, 59, 64, (352,595,0): 57, 55, 58, (352,596,0): 56, 51, 57, (352,597,0): 52, 47, 51, (352,598,0): 51, 44, 51, (352,599,0): 50, 44, 48, (353,0,0): 81, 57, 53, (353,1,0): 82, 58, 54, (353,2,0): 84, 61, 55, (353,3,0): 86, 63, 57, (353,4,0): 88, 65, 57, (353,5,0): 90, 67, 59, (353,6,0): 92, 70, 59, (353,7,0): 92, 70, 57, (353,8,0): 92, 70, 57, (353,9,0): 92, 70, 56, (353,10,0): 93, 72, 55, (353,11,0): 94, 73, 56, (353,12,0): 94, 73, 54, (353,13,0): 94, 73, 54, (353,14,0): 94, 73, 52, (353,15,0): 94, 73, 52, (353,16,0): 93, 70, 52, (353,17,0): 93, 70, 52, (353,18,0): 92, 69, 51, (353,19,0): 90, 67, 49, (353,20,0): 89, 66, 50, (353,21,0): 88, 65, 49, (353,22,0): 87, 64, 50, (353,23,0): 87, 64, 50, (353,24,0): 89, 66, 52, (353,25,0): 89, 66, 52, (353,26,0): 88, 64, 52, (353,27,0): 87, 63, 51, (353,28,0): 87, 63, 53, (353,29,0): 88, 64, 54, (353,30,0): 89, 65, 55, (353,31,0): 89, 67, 56, (353,32,0): 90, 67, 59, (353,33,0): 87, 67, 58, (353,34,0): 86, 66, 57, (353,35,0): 84, 64, 55, (353,36,0): 82, 62, 53, (353,37,0): 80, 60, 51, (353,38,0): 79, 59, 50, (353,39,0): 78, 58, 49, (353,40,0): 76, 56, 47, (353,41,0): 78, 58, 49, (353,42,0): 80, 60, 51, (353,43,0): 82, 62, 53, (353,44,0): 84, 64, 55, (353,45,0): 84, 64, 55, (353,46,0): 83, 63, 54, (353,47,0): 85, 63, 52, (353,48,0): 87, 61, 48, (353,49,0): 89, 61, 47, (353,50,0): 90, 62, 48, (353,51,0): 90, 62, 48, (353,52,0): 89, 61, 47, (353,53,0): 87, 59, 45, (353,54,0): 85, 57, 43, (353,55,0): 84, 56, 42, (353,56,0): 83, 55, 41, (353,57,0): 84, 56, 42, (353,58,0): 87, 59, 45, (353,59,0): 90, 62, 48, (353,60,0): 91, 63, 49, (353,61,0): 92, 64, 50, (353,62,0): 91, 63, 49, (353,63,0): 91, 64, 47, (353,64,0): 93, 66, 47, (353,65,0): 93, 66, 45, (353,66,0): 93, 66, 45, (353,67,0): 94, 67, 46, (353,68,0): 97, 69, 47, (353,69,0): 100, 72, 50, (353,70,0): 104, 74, 50, (353,71,0): 107, 75, 50, (353,72,0): 111, 77, 50, (353,73,0): 111, 77, 50, (353,74,0): 113, 78, 50, (353,75,0): 116, 79, 50, (353,76,0): 121, 82, 53, (353,77,0): 124, 85, 54, (353,78,0): 127, 88, 57, (353,79,0): 130, 89, 57, (353,80,0): 139, 96, 61, (353,81,0): 142, 98, 59, (353,82,0): 142, 100, 60, (353,83,0): 142, 100, 60, (353,84,0): 140, 101, 60, (353,85,0): 142, 105, 61, (353,86,0): 146, 112, 67, (353,87,0): 150, 118, 71, (353,88,0): 154, 123, 76, (353,89,0): 153, 125, 77, (353,90,0): 154, 126, 78, (353,91,0): 150, 127, 75, (353,92,0): 149, 126, 74, (353,93,0): 149, 128, 75, (353,94,0): 153, 133, 80, (353,95,0): 158, 137, 84, (353,96,0): 162, 134, 87, (353,97,0): 163, 135, 88, (353,98,0): 163, 135, 87, (353,99,0): 161, 136, 82, (353,100,0): 161, 140, 83, (353,101,0): 168, 150, 88, (353,102,0): 179, 164, 99, (353,103,0): 186, 176, 107, (353,104,0): 185, 178, 108, (353,105,0): 181, 179, 105, (353,106,0): 178, 178, 106, (353,107,0): 174, 177, 106, (353,108,0): 170, 176, 106, (353,109,0): 167, 174, 104, (353,110,0): 164, 174, 105, (353,111,0): 162, 173, 107, (353,112,0): 162, 174, 112, (353,113,0): 162, 173, 113, (353,114,0): 163, 174, 114, (353,115,0): 164, 175, 115, (353,116,0): 166, 177, 117, (353,117,0): 167, 178, 118, (353,118,0): 168, 179, 119, (353,119,0): 169, 180, 120, (353,120,0): 171, 182, 122, (353,121,0): 170, 184, 123, (353,122,0): 172, 186, 127, (353,123,0): 175, 189, 130, (353,124,0): 177, 191, 132, (353,125,0): 178, 192, 133, (353,126,0): 178, 192, 133, (353,127,0): 178, 192, 133, (353,128,0): 180, 194, 135, (353,129,0): 180, 194, 135, (353,130,0): 179, 193, 134, (353,131,0): 178, 193, 134, (353,132,0): 177, 192, 135, (353,133,0): 175, 192, 137, (353,134,0): 173, 192, 137, (353,135,0): 172, 193, 137, (353,136,0): 169, 189, 136, (353,137,0): 169, 192, 140, (353,138,0): 170, 194, 144, (353,139,0): 169, 196, 145, (353,140,0): 168, 194, 146, (353,141,0): 164, 190, 142, (353,142,0): 160, 186, 138, (353,143,0): 156, 184, 135, (353,144,0): 150, 179, 131, (353,145,0): 149, 181, 132, (353,146,0): 150, 184, 134, (353,147,0): 153, 187, 137, (353,148,0): 154, 190, 142, (353,149,0): 157, 193, 147, (353,150,0): 158, 195, 151, (353,151,0): 158, 197, 152, (353,152,0): 156, 195, 151, (353,153,0): 155, 196, 154, (353,154,0): 156, 198, 158, (353,155,0): 159, 201, 161, (353,156,0): 158, 203, 164, (353,157,0): 159, 204, 165, (353,158,0): 158, 204, 165, (353,159,0): 157, 205, 165, (353,160,0): 158, 211, 169, (353,161,0): 156, 211, 171, (353,162,0): 157, 212, 172, (353,163,0): 157, 212, 173, (353,164,0): 157, 213, 174, (353,165,0): 157, 213, 176, (353,166,0): 156, 214, 176, (353,167,0): 157, 214, 179, (353,168,0): 157, 214, 181, (353,169,0): 158, 215, 183, (353,170,0): 159, 218, 186, (353,171,0): 161, 220, 190, (353,172,0): 162, 223, 192, (353,173,0): 163, 223, 195, (353,174,0): 163, 223, 195, (353,175,0): 163, 223, 195, (353,176,0): 164, 220, 193, (353,177,0): 164, 220, 193, (353,178,0): 164, 220, 193, (353,179,0): 163, 219, 192, (353,180,0): 163, 219, 192, (353,181,0): 162, 218, 193, (353,182,0): 162, 218, 193, (353,183,0): 162, 218, 193, (353,184,0): 162, 217, 194, (353,185,0): 162, 217, 194, (353,186,0): 162, 217, 194, (353,187,0): 162, 217, 196, (353,188,0): 162, 217, 196, (353,189,0): 162, 217, 196, (353,190,0): 162, 217, 196, (353,191,0): 162, 217, 196, (353,192,0): 165, 220, 199, (353,193,0): 165, 220, 199, (353,194,0): 165, 220, 199, (353,195,0): 166, 221, 200, (353,196,0): 167, 220, 200, (353,197,0): 168, 221, 201, (353,198,0): 169, 220, 201, (353,199,0): 169, 220, 201, (353,200,0): 165, 216, 197, (353,201,0): 165, 216, 197, (353,202,0): 166, 215, 196, (353,203,0): 166, 215, 196, (353,204,0): 167, 214, 196, (353,205,0): 167, 214, 196, (353,206,0): 167, 214, 196, (353,207,0): 167, 214, 196, (353,208,0): 163, 210, 194, (353,209,0): 162, 209, 193, (353,210,0): 161, 208, 192, (353,211,0): 160, 206, 193, (353,212,0): 159, 205, 192, (353,213,0): 158, 204, 191, (353,214,0): 157, 203, 190, (353,215,0): 156, 202, 191, (353,216,0): 157, 203, 192, (353,217,0): 157, 203, 193, (353,218,0): 157, 203, 193, (353,219,0): 157, 203, 193, (353,220,0): 157, 203, 193, (353,221,0): 157, 202, 195, (353,222,0): 157, 202, 195, (353,223,0): 157, 202, 195, (353,224,0): 161, 203, 199, (353,225,0): 161, 203, 199, (353,226,0): 161, 202, 198, (353,227,0): 160, 202, 200, (353,228,0): 161, 203, 201, (353,229,0): 160, 204, 203, (353,230,0): 162, 206, 207, (353,231,0): 163, 207, 210, (353,232,0): 165, 209, 212, (353,233,0): 164, 209, 214, (353,234,0): 163, 208, 214, (353,235,0): 160, 207, 213, (353,236,0): 160, 207, 215, (353,237,0): 159, 206, 214, (353,238,0): 158, 205, 213, (353,239,0): 158, 205, 213, (353,240,0): 160, 205, 210, (353,241,0): 161, 205, 208, (353,242,0): 161, 205, 208, (353,243,0): 161, 204, 210, (353,244,0): 161, 204, 210, (353,245,0): 161, 204, 211, (353,246,0): 161, 204, 213, (353,247,0): 161, 203, 215, (353,248,0): 160, 202, 216, (353,249,0): 160, 202, 218, (353,250,0): 161, 202, 220, (353,251,0): 163, 204, 224, (353,252,0): 164, 205, 225, (353,253,0): 165, 206, 228, (353,254,0): 166, 207, 229, (353,255,0): 166, 208, 232, (353,256,0): 161, 206, 229, (353,257,0): 161, 207, 230, (353,258,0): 162, 210, 232, (353,259,0): 165, 213, 236, (353,260,0): 166, 213, 239, (353,261,0): 167, 214, 242, (353,262,0): 165, 214, 244, (353,263,0): 165, 214, 244, (353,264,0): 166, 216, 249, (353,265,0): 165, 215, 248, (353,266,0): 164, 214, 251, (353,267,0): 163, 213, 250, (353,268,0): 160, 212, 251, (353,269,0): 159, 211, 250, (353,270,0): 158, 210, 250, (353,271,0): 157, 209, 248, (353,272,0): 163, 213, 250, (353,273,0): 163, 211, 247, (353,274,0): 162, 210, 248, (353,275,0): 160, 208, 244, (353,276,0): 159, 207, 243, (353,277,0): 157, 205, 241, (353,278,0): 156, 204, 240, (353,279,0): 155, 204, 237, (353,280,0): 152, 200, 236, (353,281,0): 151, 200, 233, (353,282,0): 149, 198, 231, (353,283,0): 147, 196, 228, (353,284,0): 146, 195, 228, (353,285,0): 147, 196, 228, (353,286,0): 148, 197, 229, (353,287,0): 148, 197, 229, (353,288,0): 150, 196, 229, (353,289,0): 150, 196, 229, (353,290,0): 151, 196, 229, (353,291,0): 151, 195, 230, (353,292,0): 151, 195, 230, (353,293,0): 151, 195, 232, (353,294,0): 152, 194, 232, (353,295,0): 152, 194, 234, (353,296,0): 153, 192, 233, (353,297,0): 154, 193, 236, (353,298,0): 154, 193, 236, (353,299,0): 155, 193, 238, (353,300,0): 158, 195, 240, (353,301,0): 159, 195, 243, (353,302,0): 159, 195, 243, (353,303,0): 157, 198, 244, (353,304,0): 154, 202, 242, (353,305,0): 154, 202, 242, (353,306,0): 158, 199, 245, (353,307,0): 163, 196, 249, (353,308,0): 167, 193, 250, (353,309,0): 171, 191, 252, (353,310,0): 173, 189, 249, (353,311,0): 176, 189, 244, (353,312,0): 174, 188, 237, (353,313,0): 171, 184, 226, (353,314,0): 167, 177, 213, (353,315,0): 163, 168, 200, (353,316,0): 159, 158, 189, (353,317,0): 155, 148, 179, (353,318,0): 151, 140, 170, (353,319,0): 152, 133, 161, (353,320,0): 153, 125, 147, (353,321,0): 149, 116, 133, (353,322,0): 142, 108, 124, (353,323,0): 136, 102, 116, (353,324,0): 133, 97, 109, (353,325,0): 127, 90, 98, (353,326,0): 119, 79, 88, (353,327,0): 111, 71, 79, (353,328,0): 100, 61, 66, (353,329,0): 91, 55, 59, (353,330,0): 82, 46, 50, (353,331,0): 75, 40, 44, (353,332,0): 70, 38, 41, (353,333,0): 67, 37, 39, (353,334,0): 66, 35, 40, (353,335,0): 63, 34, 39, (353,336,0): 60, 33, 40, (353,337,0): 59, 32, 41, (353,338,0): 57, 31, 42, (353,339,0): 54, 31, 41, (353,340,0): 52, 30, 42, (353,341,0): 50, 30, 41, (353,342,0): 47, 29, 41, (353,343,0): 46, 28, 40, (353,344,0): 47, 31, 41, (353,345,0): 47, 32, 39, (353,346,0): 48, 31, 39, (353,347,0): 48, 32, 35, (353,348,0): 51, 32, 36, (353,349,0): 53, 35, 35, (353,350,0): 56, 36, 37, (353,351,0): 58, 37, 36, (353,352,0): 59, 38, 37, (353,353,0): 60, 36, 34, (353,354,0): 61, 36, 32, (353,355,0): 63, 35, 31, (353,356,0): 68, 38, 30, (353,357,0): 77, 40, 32, (353,358,0): 84, 41, 34, (353,359,0): 91, 42, 37, (353,360,0): 97, 44, 38, (353,361,0): 100, 42, 40, (353,362,0): 99, 41, 40, (353,363,0): 96, 40, 41, (353,364,0): 92, 40, 42, (353,365,0): 87, 41, 43, (353,366,0): 83, 41, 43, (353,367,0): 81, 41, 42, (353,368,0): 80, 38, 40, (353,369,0): 80, 38, 40, (353,370,0): 79, 37, 39, (353,371,0): 79, 37, 39, (353,372,0): 78, 36, 38, (353,373,0): 78, 36, 38, (353,374,0): 78, 36, 38, (353,375,0): 77, 35, 37, (353,376,0): 76, 34, 36, (353,377,0): 76, 34, 36, (353,378,0): 76, 34, 36, (353,379,0): 76, 34, 36, (353,380,0): 76, 34, 36, (353,381,0): 76, 34, 36, (353,382,0): 76, 34, 36, (353,383,0): 76, 34, 35, (353,384,0): 78, 38, 38, (353,385,0): 76, 36, 34, (353,386,0): 78, 34, 31, (353,387,0): 82, 37, 34, (353,388,0): 90, 41, 37, (353,389,0): 97, 43, 41, (353,390,0): 99, 44, 41, (353,391,0): 99, 44, 41, (353,392,0): 95, 39, 38, (353,393,0): 94, 40, 38, (353,394,0): 90, 40, 41, (353,395,0): 86, 40, 40, (353,396,0): 80, 40, 41, (353,397,0): 75, 39, 39, (353,398,0): 72, 37, 41, (353,399,0): 68, 38, 40, (353,400,0): 66, 38, 37, (353,401,0): 64, 38, 37, (353,402,0): 64, 38, 37, (353,403,0): 64, 38, 37, (353,404,0): 62, 36, 35, (353,405,0): 61, 35, 34, (353,406,0): 59, 33, 32, (353,407,0): 57, 31, 30, (353,408,0): 60, 34, 33, (353,409,0): 61, 35, 34, (353,410,0): 62, 36, 35, (353,411,0): 63, 37, 36, (353,412,0): 64, 38, 37, (353,413,0): 65, 39, 38, (353,414,0): 66, 40, 39, (353,415,0): 71, 39, 40, (353,416,0): 88, 43, 46, (353,417,0): 94, 44, 47, (353,418,0): 97, 47, 50, (353,419,0): 100, 50, 53, (353,420,0): 102, 50, 54, (353,421,0): 103, 51, 55, (353,422,0): 103, 51, 55, (353,423,0): 102, 52, 55, (353,424,0): 100, 51, 54, (353,425,0): 97, 53, 54, (353,426,0): 95, 55, 55, (353,427,0): 93, 58, 56, (353,428,0): 91, 60, 57, (353,429,0): 88, 60, 56, (353,430,0): 86, 61, 56, (353,431,0): 88, 60, 56, (353,432,0): 87, 52, 50, (353,433,0): 85, 47, 46, (353,434,0): 78, 43, 41, (353,435,0): 74, 40, 38, (353,436,0): 71, 40, 37, (353,437,0): 67, 37, 35, (353,438,0): 62, 32, 30, (353,439,0): 58, 28, 26, (353,440,0): 60, 30, 30, (353,441,0): 60, 30, 30, (353,442,0): 60, 30, 30, (353,443,0): 61, 29, 32, (353,444,0): 63, 28, 32, (353,445,0): 64, 28, 32, (353,446,0): 64, 28, 32, (353,447,0): 64, 27, 34, (353,448,0): 63, 27, 37, (353,449,0): 60, 27, 38, (353,450,0): 62, 26, 38, (353,451,0): 60, 27, 38, (353,452,0): 59, 26, 35, (353,453,0): 58, 27, 35, (353,454,0): 56, 27, 32, (353,455,0): 54, 27, 32, (353,456,0): 54, 27, 32, (353,457,0): 52, 27, 31, (353,458,0): 51, 26, 29, (353,459,0): 50, 28, 30, (353,460,0): 53, 32, 31, (353,461,0): 57, 37, 36, (353,462,0): 62, 42, 41, (353,463,0): 64, 46, 44, (353,464,0): 66, 50, 50, (353,465,0): 67, 51, 51, (353,466,0): 68, 52, 52, (353,467,0): 68, 52, 52, (353,468,0): 66, 50, 50, (353,469,0): 63, 47, 47, (353,470,0): 59, 43, 43, (353,471,0): 57, 41, 41, (353,472,0): 51, 35, 35, (353,473,0): 50, 34, 34, (353,474,0): 49, 33, 33, (353,475,0): 47, 31, 31, (353,476,0): 47, 31, 31, (353,477,0): 47, 31, 31, (353,478,0): 48, 32, 32, (353,479,0): 48, 32, 33, (353,480,0): 51, 35, 38, (353,481,0): 51, 34, 40, (353,482,0): 51, 34, 40, (353,483,0): 52, 36, 39, (353,484,0): 54, 38, 41, (353,485,0): 57, 41, 42, (353,486,0): 60, 44, 44, (353,487,0): 62, 46, 46, (353,488,0): 70, 55, 52, (353,489,0): 70, 55, 52, (353,490,0): 70, 55, 50, (353,491,0): 70, 55, 50, (353,492,0): 70, 55, 48, (353,493,0): 70, 55, 48, (353,494,0): 70, 56, 47, (353,495,0): 70, 55, 48, (353,496,0): 73, 58, 55, (353,497,0): 72, 56, 56, (353,498,0): 69, 53, 53, (353,499,0): 67, 51, 51, (353,500,0): 68, 50, 50, (353,501,0): 67, 49, 49, (353,502,0): 67, 49, 49, (353,503,0): 67, 49, 49, (353,504,0): 62, 42, 43, (353,505,0): 63, 43, 44, (353,506,0): 64, 42, 44, (353,507,0): 65, 43, 45, (353,508,0): 64, 42, 44, (353,509,0): 63, 41, 43, (353,510,0): 63, 38, 41, (353,511,0): 62, 37, 40, (353,512,0): 64, 38, 39, (353,513,0): 65, 39, 38, (353,514,0): 65, 39, 38, (353,515,0): 65, 40, 36, (353,516,0): 65, 40, 36, (353,517,0): 65, 40, 36, (353,518,0): 65, 40, 36, (353,519,0): 65, 40, 35, (353,520,0): 65, 40, 35, (353,521,0): 66, 41, 34, (353,522,0): 69, 44, 37, (353,523,0): 75, 50, 43, (353,524,0): 81, 56, 49, (353,525,0): 84, 60, 50, (353,526,0): 82, 58, 48, (353,527,0): 79, 54, 47, (353,528,0): 70, 47, 41, (353,529,0): 67, 44, 38, (353,530,0): 63, 39, 35, (353,531,0): 58, 34, 30, (353,532,0): 55, 31, 29, (353,533,0): 54, 30, 30, (353,534,0): 54, 29, 32, (353,535,0): 54, 29, 32, (353,536,0): 53, 28, 34, (353,537,0): 52, 27, 33, (353,538,0): 51, 25, 36, (353,539,0): 50, 24, 35, (353,540,0): 49, 23, 36, (353,541,0): 49, 22, 37, (353,542,0): 50, 23, 40, (353,543,0): 49, 25, 39, (353,544,0): 46, 25, 34, (353,545,0): 45, 24, 31, (353,546,0): 45, 24, 31, (353,547,0): 45, 24, 31, (353,548,0): 46, 25, 30, (353,549,0): 48, 27, 32, (353,550,0): 50, 29, 34, (353,551,0): 51, 30, 35, (353,552,0): 54, 34, 36, (353,553,0): 54, 34, 36, (353,554,0): 53, 33, 34, (353,555,0): 52, 32, 33, (353,556,0): 52, 32, 33, (353,557,0): 51, 31, 32, (353,558,0): 50, 30, 29, (353,559,0): 49, 31, 31, (353,560,0): 42, 30, 32, (353,561,0): 42, 31, 35, (353,562,0): 42, 31, 35, (353,563,0): 41, 30, 34, (353,564,0): 40, 28, 30, (353,565,0): 37, 25, 27, (353,566,0): 35, 23, 25, (353,567,0): 33, 21, 23, (353,568,0): 42, 28, 28, (353,569,0): 42, 28, 28, (353,570,0): 43, 29, 29, (353,571,0): 45, 31, 31, (353,572,0): 49, 33, 33, (353,573,0): 52, 36, 36, (353,574,0): 55, 39, 39, (353,575,0): 56, 42, 41, (353,576,0): 59, 47, 47, (353,577,0): 59, 49, 48, (353,578,0): 58, 53, 50, (353,579,0): 56, 55, 51, (353,580,0): 54, 56, 51, (353,581,0): 51, 56, 50, (353,582,0): 49, 54, 48, (353,583,0): 50, 52, 47, (353,584,0): 53, 54, 49, (353,585,0): 57, 53, 50, (353,586,0): 59, 54, 51, (353,587,0): 62, 54, 52, (353,588,0): 62, 57, 54, (353,589,0): 62, 58, 55, (353,590,0): 63, 59, 56, (353,591,0): 62, 61, 59, (353,592,0): 64, 64, 66, (353,593,0): 61, 62, 66, (353,594,0): 60, 59, 64, (353,595,0): 58, 56, 61, (353,596,0): 56, 51, 57, (353,597,0): 53, 48, 54, (353,598,0): 51, 44, 51, (353,599,0): 50, 43, 50, (354,0,0): 80, 59, 54, (354,1,0): 80, 59, 54, (354,2,0): 82, 62, 55, (354,3,0): 84, 64, 57, (354,4,0): 86, 66, 57, (354,5,0): 88, 68, 59, (354,6,0): 90, 70, 59, (354,7,0): 91, 72, 58, (354,8,0): 89, 70, 56, (354,9,0): 89, 70, 55, (354,10,0): 90, 71, 54, (354,11,0): 90, 71, 54, (354,12,0): 91, 73, 53, (354,13,0): 91, 73, 53, (354,14,0): 92, 74, 52, (354,15,0): 94, 73, 52, (354,16,0): 96, 73, 55, (354,17,0): 96, 73, 55, (354,18,0): 95, 72, 54, (354,19,0): 94, 71, 53, (354,20,0): 93, 70, 54, (354,21,0): 92, 69, 53, (354,22,0): 92, 69, 53, (354,23,0): 91, 68, 52, (354,24,0): 89, 66, 52, (354,25,0): 88, 65, 51, (354,26,0): 87, 63, 51, (354,27,0): 86, 62, 50, (354,28,0): 86, 62, 50, (354,29,0): 87, 63, 51, (354,30,0): 88, 64, 54, (354,31,0): 88, 66, 55, (354,32,0): 89, 66, 58, (354,33,0): 86, 66, 57, (354,34,0): 85, 65, 56, (354,35,0): 84, 64, 55, (354,36,0): 82, 62, 53, (354,37,0): 81, 61, 52, (354,38,0): 80, 60, 51, (354,39,0): 79, 59, 50, (354,40,0): 76, 56, 47, (354,41,0): 77, 57, 48, (354,42,0): 79, 59, 50, (354,43,0): 80, 60, 51, (354,44,0): 81, 61, 52, (354,45,0): 81, 61, 52, (354,46,0): 81, 61, 52, (354,47,0): 83, 61, 50, (354,48,0): 83, 59, 47, (354,49,0): 85, 59, 46, (354,50,0): 86, 60, 47, (354,51,0): 86, 60, 47, (354,52,0): 86, 60, 47, (354,53,0): 85, 59, 46, (354,54,0): 84, 58, 45, (354,55,0): 83, 57, 44, (354,56,0): 83, 57, 44, (354,57,0): 84, 58, 45, (354,58,0): 86, 60, 47, (354,59,0): 88, 62, 49, (354,60,0): 90, 64, 51, (354,61,0): 90, 64, 51, (354,62,0): 90, 64, 51, (354,63,0): 90, 64, 49, (354,64,0): 92, 66, 49, (354,65,0): 92, 67, 47, (354,66,0): 93, 66, 45, (354,67,0): 93, 66, 45, (354,68,0): 96, 68, 46, (354,69,0): 98, 70, 48, (354,70,0): 101, 71, 47, (354,71,0): 104, 72, 47, (354,72,0): 110, 76, 49, (354,73,0): 110, 76, 49, (354,74,0): 111, 76, 48, (354,75,0): 112, 77, 47, (354,76,0): 114, 77, 48, (354,77,0): 117, 80, 51, (354,78,0): 121, 82, 51, (354,79,0): 123, 82, 50, (354,80,0): 131, 88, 53, (354,81,0): 132, 90, 52, (354,82,0): 133, 91, 53, (354,83,0): 133, 91, 53, (354,84,0): 131, 92, 53, (354,85,0): 133, 96, 54, (354,86,0): 136, 101, 59, (354,87,0): 138, 105, 62, (354,88,0): 147, 116, 72, (354,89,0): 148, 120, 73, (354,90,0): 150, 122, 75, (354,91,0): 148, 125, 75, (354,92,0): 147, 124, 74, (354,93,0): 147, 125, 75, (354,94,0): 150, 128, 78, (354,95,0): 154, 131, 81, (354,96,0): 154, 127, 80, (354,97,0): 159, 131, 84, (354,98,0): 161, 135, 86, (354,99,0): 159, 136, 84, (354,100,0): 157, 136, 81, (354,101,0): 160, 144, 84, (354,102,0): 171, 157, 94, (354,103,0): 179, 170, 101, (354,104,0): 182, 178, 107, (354,105,0): 178, 178, 106, (354,106,0): 176, 177, 107, (354,107,0): 174, 177, 106, (354,108,0): 170, 176, 106, (354,109,0): 168, 175, 105, (354,110,0): 165, 175, 106, (354,111,0): 163, 174, 106, (354,112,0): 164, 176, 112, (354,113,0): 164, 176, 114, (354,114,0): 163, 177, 116, (354,115,0): 164, 178, 117, (354,116,0): 164, 178, 117, (354,117,0): 165, 179, 118, (354,118,0): 166, 180, 119, (354,119,0): 166, 180, 119, (354,120,0): 169, 183, 124, (354,121,0): 170, 185, 126, (354,122,0): 172, 187, 128, (354,123,0): 174, 189, 130, (354,124,0): 176, 191, 132, (354,125,0): 176, 191, 132, (354,126,0): 176, 191, 132, (354,127,0): 176, 191, 132, (354,128,0): 178, 193, 134, (354,129,0): 178, 193, 134, (354,130,0): 177, 192, 135, (354,131,0): 175, 193, 135, (354,132,0): 174, 191, 136, (354,133,0): 173, 192, 136, (354,134,0): 172, 191, 136, (354,135,0): 171, 191, 138, (354,136,0): 168, 191, 139, (354,137,0): 168, 192, 140, (354,138,0): 169, 193, 143, (354,139,0): 169, 196, 145, (354,140,0): 169, 195, 147, (354,141,0): 167, 195, 147, (354,142,0): 166, 194, 146, (354,143,0): 164, 193, 145, (354,144,0): 161, 193, 146, (354,145,0): 161, 193, 146, (354,146,0): 160, 193, 146, (354,147,0): 161, 194, 147, (354,148,0): 159, 195, 149, (354,149,0): 159, 195, 149, (354,150,0): 158, 195, 151, (354,151,0): 158, 197, 153, (354,152,0): 157, 195, 154, (354,153,0): 157, 198, 156, (354,154,0): 158, 200, 160, (354,155,0): 160, 202, 164, (354,156,0): 160, 204, 168, (354,157,0): 161, 205, 169, (354,158,0): 160, 206, 169, (354,159,0): 159, 207, 169, (354,160,0): 158, 210, 171, (354,161,0): 157, 212, 173, (354,162,0): 157, 212, 173, (354,163,0): 157, 211, 175, (354,164,0): 157, 213, 176, (354,165,0): 158, 214, 179, (354,166,0): 157, 214, 181, (354,167,0): 157, 214, 182, (354,168,0): 158, 215, 183, (354,169,0): 159, 215, 186, (354,170,0): 159, 218, 188, (354,171,0): 162, 221, 193, (354,172,0): 162, 222, 196, (354,173,0): 163, 223, 197, (354,174,0): 163, 223, 197, (354,175,0): 163, 223, 197, (354,176,0): 163, 219, 194, (354,177,0): 163, 219, 194, (354,178,0): 163, 219, 194, (354,179,0): 162, 218, 193, (354,180,0): 162, 218, 193, (354,181,0): 161, 216, 193, (354,182,0): 161, 216, 193, (354,183,0): 160, 215, 192, (354,184,0): 160, 215, 194, (354,185,0): 160, 215, 194, (354,186,0): 160, 215, 194, (354,187,0): 160, 215, 196, (354,188,0): 160, 215, 196, (354,189,0): 160, 215, 196, (354,190,0): 160, 215, 196, (354,191,0): 160, 215, 196, (354,192,0): 161, 216, 197, (354,193,0): 162, 217, 198, (354,194,0): 162, 217, 198, (354,195,0): 163, 218, 199, (354,196,0): 164, 217, 199, (354,197,0): 165, 218, 200, (354,198,0): 165, 218, 200, (354,199,0): 165, 218, 200, (354,200,0): 166, 217, 200, (354,201,0): 166, 217, 200, (354,202,0): 167, 215, 199, (354,203,0): 166, 214, 198, (354,204,0): 165, 213, 197, (354,205,0): 164, 212, 196, (354,206,0): 165, 212, 196, (354,207,0): 164, 211, 195, (354,208,0): 160, 208, 194, (354,209,0): 160, 208, 194, (354,210,0): 159, 207, 193, (354,211,0): 158, 206, 194, (354,212,0): 157, 205, 193, (354,213,0): 156, 204, 192, (354,214,0): 155, 203, 191, (354,215,0): 155, 202, 192, (354,216,0): 157, 204, 194, (354,217,0): 157, 204, 196, (354,218,0): 157, 204, 196, (354,219,0): 157, 204, 196, (354,220,0): 157, 204, 196, (354,221,0): 157, 204, 198, (354,222,0): 157, 204, 198, (354,223,0): 158, 203, 198, (354,224,0): 159, 204, 201, (354,225,0): 159, 204, 201, (354,226,0): 160, 202, 200, (354,227,0): 158, 202, 201, (354,228,0): 158, 202, 201, (354,229,0): 159, 203, 204, (354,230,0): 161, 205, 206, (354,231,0): 161, 206, 209, (354,232,0): 163, 208, 213, (354,233,0): 161, 208, 214, (354,234,0): 161, 208, 214, (354,235,0): 159, 208, 215, (354,236,0): 159, 207, 217, (354,237,0): 158, 206, 216, (354,238,0): 158, 206, 216, (354,239,0): 159, 206, 216, (354,240,0): 160, 205, 211, (354,241,0): 160, 205, 210, (354,242,0): 160, 205, 210, (354,243,0): 160, 205, 211, (354,244,0): 160, 204, 213, (354,245,0): 160, 204, 215, (354,246,0): 160, 204, 215, (354,247,0): 160, 204, 217, (354,248,0): 161, 204, 220, (354,249,0): 161, 204, 221, (354,250,0): 162, 205, 224, (354,251,0): 162, 204, 226, (354,252,0): 163, 205, 227, (354,253,0): 164, 206, 230, (354,254,0): 164, 206, 230, (354,255,0): 163, 207, 232, (354,256,0): 162, 208, 232, (354,257,0): 162, 210, 233, (354,258,0): 164, 212, 235, (354,259,0): 166, 214, 237, (354,260,0): 166, 216, 241, (354,261,0): 167, 217, 244, (354,262,0): 167, 216, 246, (354,263,0): 167, 216, 246, (354,264,0): 167, 217, 250, (354,265,0): 167, 217, 250, (354,266,0): 164, 216, 253, (354,267,0): 163, 215, 252, (354,268,0): 162, 214, 253, (354,269,0): 161, 213, 252, (354,270,0): 159, 212, 252, (354,271,0): 160, 212, 252, (354,272,0): 166, 215, 255, (354,273,0): 166, 216, 253, (354,274,0): 164, 213, 253, (354,275,0): 163, 213, 250, (354,276,0): 161, 211, 248, (354,277,0): 160, 210, 247, (354,278,0): 159, 209, 246, (354,279,0): 158, 208, 243, (354,280,0): 157, 207, 244, (354,281,0): 154, 204, 239, (354,282,0): 150, 200, 235, (354,283,0): 146, 196, 229, (354,284,0): 145, 195, 230, (354,285,0): 146, 196, 229, (354,286,0): 148, 198, 231, (354,287,0): 151, 200, 233, (354,288,0): 149, 195, 229, (354,289,0): 149, 195, 229, (354,290,0): 149, 195, 229, (354,291,0): 149, 195, 231, (354,292,0): 150, 194, 231, (354,293,0): 150, 194, 233, (354,294,0): 150, 194, 233, (354,295,0): 150, 193, 235, (354,296,0): 151, 193, 235, (354,297,0): 152, 193, 237, (354,298,0): 155, 193, 238, (354,299,0): 156, 194, 241, (354,300,0): 157, 195, 242, (354,301,0): 158, 196, 245, (354,302,0): 159, 195, 245, (354,303,0): 157, 198, 244, (354,304,0): 153, 200, 242, (354,305,0): 153, 200, 242, (354,306,0): 157, 197, 246, (354,307,0): 160, 196, 248, (354,308,0): 164, 193, 249, (354,309,0): 169, 191, 251, (354,310,0): 171, 190, 249, (354,311,0): 174, 191, 247, (354,312,0): 175, 191, 242, (354,313,0): 175, 188, 233, (354,314,0): 172, 181, 222, (354,315,0): 167, 171, 208, (354,316,0): 162, 161, 193, (354,317,0): 159, 152, 185, (354,318,0): 159, 145, 178, (354,319,0): 162, 142, 170, (354,320,0): 157, 129, 151, (354,321,0): 150, 119, 135, (354,322,0): 137, 105, 120, (354,323,0): 128, 94, 108, (354,324,0): 123, 87, 99, (354,325,0): 117, 82, 89, (354,326,0): 109, 72, 80, (354,327,0): 102, 65, 72, (354,328,0): 94, 58, 62, (354,329,0): 88, 52, 56, (354,330,0): 79, 43, 47, (354,331,0): 73, 38, 42, (354,332,0): 68, 36, 41, (354,333,0): 66, 35, 40, (354,334,0): 64, 33, 39, (354,335,0): 61, 32, 37, (354,336,0): 58, 31, 38, (354,337,0): 58, 31, 40, (354,338,0): 56, 30, 41, (354,339,0): 53, 30, 40, (354,340,0): 51, 29, 41, (354,341,0): 49, 29, 40, (354,342,0): 46, 28, 40, (354,343,0): 46, 28, 40, (354,344,0): 48, 32, 42, (354,345,0): 48, 33, 40, (354,346,0): 48, 31, 39, (354,347,0): 49, 33, 36, (354,348,0): 52, 33, 37, (354,349,0): 54, 34, 35, (354,350,0): 57, 35, 37, (354,351,0): 59, 38, 37, (354,352,0): 62, 36, 35, (354,353,0): 64, 36, 33, (354,354,0): 64, 35, 31, (354,355,0): 66, 35, 30, (354,356,0): 72, 37, 31, (354,357,0): 80, 41, 34, (354,358,0): 89, 44, 38, (354,359,0): 95, 46, 41, (354,360,0): 96, 43, 39, (354,361,0): 97, 42, 39, (354,362,0): 96, 40, 39, (354,363,0): 94, 40, 40, (354,364,0): 90, 40, 43, (354,365,0): 86, 40, 43, (354,366,0): 82, 40, 42, (354,367,0): 81, 40, 44, (354,368,0): 80, 38, 40, (354,369,0): 79, 37, 39, (354,370,0): 79, 37, 39, (354,371,0): 79, 37, 39, (354,372,0): 78, 36, 38, (354,373,0): 77, 35, 37, (354,374,0): 77, 35, 37, (354,375,0): 77, 35, 37, (354,376,0): 76, 34, 36, (354,377,0): 76, 34, 36, (354,378,0): 76, 34, 36, (354,379,0): 76, 34, 36, (354,380,0): 76, 34, 36, (354,381,0): 76, 34, 36, (354,382,0): 76, 34, 36, (354,383,0): 76, 34, 35, (354,384,0): 78, 38, 38, (354,385,0): 76, 36, 34, (354,386,0): 78, 34, 31, (354,387,0): 82, 37, 34, (354,388,0): 91, 42, 38, (354,389,0): 98, 44, 42, (354,390,0): 101, 46, 43, (354,391,0): 100, 45, 42, (354,392,0): 98, 42, 41, (354,393,0): 93, 42, 39, (354,394,0): 90, 40, 41, (354,395,0): 84, 38, 38, (354,396,0): 77, 37, 38, (354,397,0): 73, 37, 37, (354,398,0): 71, 36, 40, (354,399,0): 67, 37, 39, (354,400,0): 67, 39, 38, (354,401,0): 67, 39, 38, (354,402,0): 67, 39, 38, (354,403,0): 67, 39, 38, (354,404,0): 66, 38, 37, (354,405,0): 64, 36, 35, (354,406,0): 63, 35, 34, (354,407,0): 61, 33, 32, (354,408,0): 63, 35, 34, (354,409,0): 63, 35, 34, (354,410,0): 64, 36, 35, (354,411,0): 65, 37, 36, (354,412,0): 66, 38, 37, (354,413,0): 67, 39, 38, (354,414,0): 68, 40, 39, (354,415,0): 70, 38, 39, (354,416,0): 87, 45, 47, (354,417,0): 94, 45, 49, (354,418,0): 96, 47, 51, (354,419,0): 98, 49, 53, (354,420,0): 100, 49, 54, (354,421,0): 101, 50, 55, (354,422,0): 101, 50, 55, (354,423,0): 101, 50, 55, (354,424,0): 97, 48, 52, (354,425,0): 95, 49, 52, (354,426,0): 92, 50, 52, (354,427,0): 90, 51, 52, (354,428,0): 88, 54, 53, (354,429,0): 88, 57, 55, (354,430,0): 88, 58, 56, (354,431,0): 89, 59, 57, (354,432,0): 83, 47, 47, (354,433,0): 82, 43, 44, (354,434,0): 75, 39, 39, (354,435,0): 72, 38, 37, (354,436,0): 69, 38, 36, (354,437,0): 65, 35, 35, (354,438,0): 61, 31, 31, (354,439,0): 56, 28, 27, (354,440,0): 57, 28, 30, (354,441,0): 57, 28, 30, (354,442,0): 57, 28, 30, (354,443,0): 58, 27, 32, (354,444,0): 59, 27, 32, (354,445,0): 61, 26, 32, (354,446,0): 61, 26, 32, (354,447,0): 61, 26, 33, (354,448,0): 58, 25, 34, (354,449,0): 57, 25, 36, (354,450,0): 58, 25, 36, (354,451,0): 57, 25, 36, (354,452,0): 58, 27, 35, (354,453,0): 57, 27, 35, (354,454,0): 57, 27, 35, (354,455,0): 56, 29, 36, (354,456,0): 54, 27, 32, (354,457,0): 53, 28, 32, (354,458,0): 53, 28, 31, (354,459,0): 53, 31, 33, (354,460,0): 55, 33, 35, (354,461,0): 58, 38, 39, (354,462,0): 61, 41, 40, (354,463,0): 62, 44, 42, (354,464,0): 64, 48, 48, (354,465,0): 65, 49, 49, (354,466,0): 67, 51, 51, (354,467,0): 68, 52, 52, (354,468,0): 67, 51, 51, (354,469,0): 65, 49, 49, (354,470,0): 62, 46, 46, (354,471,0): 60, 44, 44, (354,472,0): 55, 39, 39, (354,473,0): 53, 37, 37, (354,474,0): 51, 35, 35, (354,475,0): 49, 33, 33, (354,476,0): 48, 32, 32, (354,477,0): 47, 31, 31, (354,478,0): 47, 31, 31, (354,479,0): 47, 31, 32, (354,480,0): 53, 37, 40, (354,481,0): 52, 35, 41, (354,482,0): 51, 35, 38, (354,483,0): 51, 35, 38, (354,484,0): 51, 35, 38, (354,485,0): 52, 36, 37, (354,486,0): 54, 38, 38, (354,487,0): 54, 38, 38, (354,488,0): 60, 45, 42, (354,489,0): 62, 47, 44, (354,490,0): 64, 49, 44, (354,491,0): 66, 51, 46, (354,492,0): 67, 52, 45, (354,493,0): 67, 52, 45, (354,494,0): 66, 51, 44, (354,495,0): 65, 50, 45, (354,496,0): 68, 53, 50, (354,497,0): 67, 51, 51, (354,498,0): 65, 49, 49, (354,499,0): 64, 48, 48, (354,500,0): 65, 47, 47, (354,501,0): 65, 47, 47, (354,502,0): 66, 48, 48, (354,503,0): 67, 49, 49, (354,504,0): 59, 39, 40, (354,505,0): 59, 39, 40, (354,506,0): 61, 39, 41, (354,507,0): 61, 39, 41, (354,508,0): 60, 38, 40, (354,509,0): 59, 37, 39, (354,510,0): 60, 35, 38, (354,511,0): 59, 34, 37, (354,512,0): 63, 37, 38, (354,513,0): 63, 37, 38, (354,514,0): 63, 37, 38, (354,515,0): 63, 37, 36, (354,516,0): 63, 37, 36, (354,517,0): 63, 37, 36, (354,518,0): 63, 37, 36, (354,519,0): 63, 38, 34, (354,520,0): 63, 38, 34, (354,521,0): 63, 38, 33, (354,522,0): 66, 41, 36, (354,523,0): 71, 46, 41, (354,524,0): 77, 52, 47, (354,525,0): 79, 54, 47, (354,526,0): 78, 53, 46, (354,527,0): 75, 50, 43, (354,528,0): 66, 43, 37, (354,529,0): 62, 41, 36, (354,530,0): 58, 37, 32, (354,531,0): 54, 33, 28, (354,532,0): 52, 31, 28, (354,533,0): 51, 30, 29, (354,534,0): 52, 30, 32, (354,535,0): 52, 30, 32, (354,536,0): 50, 27, 33, (354,537,0): 49, 26, 32, (354,538,0): 47, 24, 34, (354,539,0): 46, 23, 33, (354,540,0): 46, 22, 35, (354,541,0): 46, 22, 35, (354,542,0): 47, 23, 37, (354,543,0): 47, 23, 36, (354,544,0): 45, 24, 33, (354,545,0): 45, 24, 31, (354,546,0): 45, 24, 31, (354,547,0): 45, 24, 31, (354,548,0): 46, 25, 30, (354,549,0): 48, 27, 32, (354,550,0): 50, 29, 34, (354,551,0): 51, 30, 35, (354,552,0): 55, 35, 37, (354,553,0): 55, 35, 37, (354,554,0): 54, 34, 35, (354,555,0): 53, 33, 34, (354,556,0): 51, 31, 32, (354,557,0): 50, 30, 31, (354,558,0): 49, 29, 28, (354,559,0): 48, 30, 30, (354,560,0): 44, 30, 30, (354,561,0): 42, 30, 32, (354,562,0): 41, 29, 31, (354,563,0): 41, 29, 31, (354,564,0): 39, 27, 29, (354,565,0): 37, 25, 27, (354,566,0): 35, 23, 25, (354,567,0): 34, 22, 24, (354,568,0): 43, 29, 29, (354,569,0): 42, 28, 28, (354,570,0): 43, 29, 29, (354,571,0): 43, 29, 29, (354,572,0): 45, 31, 31, (354,573,0): 47, 33, 33, (354,574,0): 49, 35, 34, (354,575,0): 51, 37, 36, (354,576,0): 55, 43, 43, (354,577,0): 55, 45, 44, (354,578,0): 53, 48, 45, (354,579,0): 52, 51, 47, (354,580,0): 50, 52, 47, (354,581,0): 48, 53, 47, (354,582,0): 48, 53, 47, (354,583,0): 50, 52, 47, (354,584,0): 51, 52, 47, (354,585,0): 55, 51, 48, (354,586,0): 57, 52, 49, (354,587,0): 61, 53, 51, (354,588,0): 61, 56, 53, (354,589,0): 62, 58, 55, (354,590,0): 63, 59, 56, (354,591,0): 62, 61, 59, (354,592,0): 63, 63, 65, (354,593,0): 62, 61, 66, (354,594,0): 61, 59, 64, (354,595,0): 58, 56, 61, (354,596,0): 57, 52, 58, (354,597,0): 55, 48, 55, (354,598,0): 54, 44, 52, (354,599,0): 53, 43, 51, (355,0,0): 79, 58, 53, (355,1,0): 80, 59, 54, (355,2,0): 82, 62, 55, (355,3,0): 84, 64, 57, (355,4,0): 86, 66, 57, (355,5,0): 88, 68, 59, (355,6,0): 90, 70, 59, (355,7,0): 90, 71, 57, (355,8,0): 88, 69, 55, (355,9,0): 88, 69, 54, (355,10,0): 88, 69, 52, (355,11,0): 88, 69, 52, (355,12,0): 89, 71, 51, (355,13,0): 91, 73, 53, (355,14,0): 92, 74, 52, (355,15,0): 93, 75, 53, (355,16,0): 97, 74, 56, (355,17,0): 97, 74, 56, (355,18,0): 96, 73, 55, (355,19,0): 96, 73, 55, (355,20,0): 95, 72, 56, (355,21,0): 94, 71, 55, (355,22,0): 94, 71, 55, (355,23,0): 93, 70, 54, (355,24,0): 90, 67, 53, (355,25,0): 89, 66, 52, (355,26,0): 87, 63, 51, (355,27,0): 86, 62, 50, (355,28,0): 86, 62, 50, (355,29,0): 86, 62, 50, (355,30,0): 87, 63, 53, (355,31,0): 87, 65, 54, (355,32,0): 88, 65, 57, (355,33,0): 86, 66, 57, (355,34,0): 85, 65, 56, (355,35,0): 84, 64, 55, (355,36,0): 82, 62, 53, (355,37,0): 81, 61, 52, (355,38,0): 80, 60, 51, (355,39,0): 80, 60, 51, (355,40,0): 76, 56, 47, (355,41,0): 76, 56, 47, (355,42,0): 77, 57, 48, (355,43,0): 78, 58, 49, (355,44,0): 79, 59, 50, (355,45,0): 79, 59, 50, (355,46,0): 79, 59, 50, (355,47,0): 81, 59, 48, (355,48,0): 80, 56, 44, (355,49,0): 80, 57, 43, (355,50,0): 83, 56, 45, (355,51,0): 81, 58, 44, (355,52,0): 84, 57, 46, (355,53,0): 82, 59, 45, (355,54,0): 83, 56, 45, (355,55,0): 81, 58, 44, (355,56,0): 82, 55, 44, (355,57,0): 82, 59, 45, (355,58,0): 86, 59, 48, (355,59,0): 86, 63, 49, (355,60,0): 90, 63, 52, (355,61,0): 90, 67, 53, (355,62,0): 94, 67, 56, (355,63,0): 95, 69, 56, (355,64,0): 94, 68, 51, (355,65,0): 94, 69, 49, (355,66,0): 95, 68, 49, (355,67,0): 96, 69, 48, (355,68,0): 98, 70, 49, (355,69,0): 99, 71, 49, (355,70,0): 102, 71, 50, (355,71,0): 102, 72, 48, (355,72,0): 106, 74, 49, (355,73,0): 108, 74, 47, (355,74,0): 109, 73, 47, (355,75,0): 110, 75, 47, (355,76,0): 113, 76, 49, (355,77,0): 115, 78, 49, (355,78,0): 120, 81, 52, (355,79,0): 121, 82, 51, (355,80,0): 124, 83, 51, (355,81,0): 126, 83, 49, (355,82,0): 126, 83, 49, (355,83,0): 124, 84, 49, (355,84,0): 124, 86, 49, (355,85,0): 124, 89, 51, (355,86,0): 126, 92, 54, (355,87,0): 128, 94, 56, (355,88,0): 136, 104, 63, (355,89,0): 138, 109, 67, (355,90,0): 142, 115, 70, (355,91,0): 144, 117, 72, (355,92,0): 143, 119, 73, (355,93,0): 144, 122, 75, (355,94,0): 147, 125, 76, (355,95,0): 151, 127, 79, (355,96,0): 148, 121, 76, (355,97,0): 155, 128, 83, (355,98,0): 159, 135, 87, (355,99,0): 158, 136, 86, (355,100,0): 154, 135, 79, (355,101,0): 156, 140, 81, (355,102,0): 165, 154, 92, (355,103,0): 175, 166, 99, (355,104,0): 180, 175, 107, (355,105,0): 177, 177, 107, (355,106,0): 175, 176, 106, (355,107,0): 171, 177, 105, (355,108,0): 170, 177, 107, (355,109,0): 167, 177, 106, (355,110,0): 165, 176, 107, (355,111,0): 165, 176, 108, (355,112,0): 166, 178, 114, (355,113,0): 166, 178, 116, (355,114,0): 165, 179, 118, (355,115,0): 165, 179, 118, (355,116,0): 165, 179, 118, (355,117,0): 165, 179, 118, (355,118,0): 166, 180, 119, (355,119,0): 165, 181, 119, (355,120,0): 169, 184, 125, (355,121,0): 170, 185, 126, (355,122,0): 172, 187, 128, (355,123,0): 172, 190, 130, (355,124,0): 175, 190, 131, (355,125,0): 174, 192, 132, (355,126,0): 174, 192, 132, (355,127,0): 173, 191, 131, (355,128,0): 175, 193, 133, (355,129,0): 175, 193, 135, (355,130,0): 174, 192, 134, (355,131,0): 173, 192, 136, (355,132,0): 172, 191, 135, (355,133,0): 171, 192, 136, (355,134,0): 170, 190, 137, (355,135,0): 168, 191, 139, (355,136,0): 168, 192, 140, (355,137,0): 166, 193, 142, (355,138,0): 166, 193, 142, (355,139,0): 165, 193, 144, (355,140,0): 166, 194, 146, (355,141,0): 166, 195, 147, (355,142,0): 167, 196, 148, (355,143,0): 165, 197, 150, (355,144,0): 163, 195, 148, (355,145,0): 162, 195, 148, (355,146,0): 161, 194, 147, (355,147,0): 158, 194, 148, (355,148,0): 157, 193, 147, (355,149,0): 156, 193, 149, (355,150,0): 155, 192, 149, (355,151,0): 154, 192, 151, (355,152,0): 157, 198, 156, (355,153,0): 157, 199, 159, (355,154,0): 159, 201, 163, (355,155,0): 160, 205, 166, (355,156,0): 161, 205, 169, (355,157,0): 161, 207, 170, (355,158,0): 161, 207, 170, (355,159,0): 160, 207, 171, (355,160,0): 159, 211, 175, (355,161,0): 157, 211, 175, (355,162,0): 157, 211, 177, (355,163,0): 158, 212, 178, (355,164,0): 157, 212, 180, (355,165,0): 158, 213, 181, (355,166,0): 157, 214, 182, (355,167,0): 158, 214, 185, (355,168,0): 158, 214, 187, (355,169,0): 160, 216, 189, (355,170,0): 160, 218, 193, (355,171,0): 162, 220, 195, (355,172,0): 162, 222, 197, (355,173,0): 162, 221, 199, (355,174,0): 162, 221, 199, (355,175,0): 162, 221, 199, (355,176,0): 160, 218, 194, (355,177,0): 161, 216, 193, (355,178,0): 161, 216, 195, (355,179,0): 161, 216, 195, (355,180,0): 160, 215, 194, (355,181,0): 160, 215, 194, (355,182,0): 159, 214, 195, (355,183,0): 159, 214, 195, (355,184,0): 158, 212, 196, (355,185,0): 158, 212, 196, (355,186,0): 158, 212, 196, (355,187,0): 158, 212, 196, (355,188,0): 158, 212, 198, (355,189,0): 158, 212, 198, (355,190,0): 158, 212, 198, (355,191,0): 158, 212, 198, (355,192,0): 158, 212, 198, (355,193,0): 158, 212, 198, (355,194,0): 159, 213, 199, (355,195,0): 159, 213, 199, (355,196,0): 161, 213, 200, (355,197,0): 161, 213, 200, (355,198,0): 162, 214, 201, (355,199,0): 162, 214, 201, (355,200,0): 166, 216, 204, (355,201,0): 165, 215, 203, (355,202,0): 166, 214, 202, (355,203,0): 165, 213, 201, (355,204,0): 164, 212, 200, (355,205,0): 162, 210, 198, (355,206,0): 163, 209, 198, (355,207,0): 162, 208, 197, (355,208,0): 158, 206, 194, (355,209,0): 158, 206, 194, (355,210,0): 158, 206, 194, (355,211,0): 157, 204, 194, (355,212,0): 156, 203, 193, (355,213,0): 156, 203, 193, (355,214,0): 155, 202, 194, (355,215,0): 155, 202, 194, (355,216,0): 157, 204, 196, (355,217,0): 157, 204, 198, (355,218,0): 157, 204, 198, (355,219,0): 157, 204, 198, (355,220,0): 157, 203, 200, (355,221,0): 157, 203, 200, (355,222,0): 157, 203, 200, (355,223,0): 157, 203, 200, (355,224,0): 159, 205, 203, (355,225,0): 158, 204, 202, (355,226,0): 158, 202, 201, (355,227,0): 156, 202, 202, (355,228,0): 157, 203, 203, (355,229,0): 157, 202, 205, (355,230,0): 159, 204, 207, (355,231,0): 158, 206, 210, (355,232,0): 160, 207, 213, (355,233,0): 159, 208, 215, (355,234,0): 159, 208, 215, (355,235,0): 158, 208, 217, (355,236,0): 159, 207, 219, (355,237,0): 158, 208, 219, (355,238,0): 158, 208, 219, (355,239,0): 159, 207, 219, (355,240,0): 159, 206, 216, (355,241,0): 159, 206, 214, (355,242,0): 159, 206, 214, (355,243,0): 159, 206, 216, (355,244,0): 159, 205, 218, (355,245,0): 159, 205, 218, (355,246,0): 159, 205, 220, (355,247,0): 159, 205, 221, (355,248,0): 160, 205, 224, (355,249,0): 161, 206, 225, (355,250,0): 161, 206, 227, (355,251,0): 161, 206, 229, (355,252,0): 161, 205, 230, (355,253,0): 162, 206, 231, (355,254,0): 162, 206, 233, (355,255,0): 162, 206, 233, (355,256,0): 163, 209, 235, (355,257,0): 164, 212, 235, (355,258,0): 166, 213, 239, (355,259,0): 168, 215, 241, (355,260,0): 168, 218, 245, (355,261,0): 169, 218, 248, (355,262,0): 169, 218, 248, (355,263,0): 168, 219, 250, (355,264,0): 168, 218, 251, (355,265,0): 168, 218, 253, (355,266,0): 165, 217, 254, (355,267,0): 165, 217, 254, (355,268,0): 164, 216, 255, (355,269,0): 163, 215, 254, (355,270,0): 162, 215, 255, (355,271,0): 161, 214, 254, (355,272,0): 167, 216, 255, (355,273,0): 166, 215, 255, (355,274,0): 165, 214, 255, (355,275,0): 164, 213, 253, (355,276,0): 162, 211, 251, (355,277,0): 161, 210, 250, (355,278,0): 159, 208, 248, (355,279,0): 159, 208, 248, (355,280,0): 159, 208, 248, (355,281,0): 157, 206, 246, (355,282,0): 153, 203, 240, (355,283,0): 149, 199, 236, (355,284,0): 147, 197, 234, (355,285,0): 147, 197, 234, (355,286,0): 148, 198, 235, (355,287,0): 149, 199, 236, (355,288,0): 147, 195, 233, (355,289,0): 149, 194, 233, (355,290,0): 149, 194, 233, (355,291,0): 149, 194, 233, (355,292,0): 149, 194, 235, (355,293,0): 150, 193, 235, (355,294,0): 150, 193, 236, (355,295,0): 150, 193, 236, (355,296,0): 152, 193, 239, (355,297,0): 153, 194, 240, (355,298,0): 155, 193, 240, (355,299,0): 156, 194, 243, (355,300,0): 157, 195, 244, (355,301,0): 158, 196, 245, (355,302,0): 159, 196, 248, (355,303,0): 158, 198, 247, (355,304,0): 155, 199, 244, (355,305,0): 154, 198, 245, (355,306,0): 156, 196, 247, (355,307,0): 159, 194, 248, (355,308,0): 162, 193, 248, (355,309,0): 166, 192, 251, (355,310,0): 170, 192, 250, (355,311,0): 173, 192, 250, (355,312,0): 171, 188, 242, (355,313,0): 172, 186, 235, (355,314,0): 171, 179, 225, (355,315,0): 167, 170, 211, (355,316,0): 163, 161, 198, (355,317,0): 162, 152, 187, (355,318,0): 162, 146, 182, (355,319,0): 164, 144, 172, (355,320,0): 156, 128, 150, (355,321,0): 146, 115, 130, (355,322,0): 130, 98, 113, (355,323,0): 116, 84, 97, (355,324,0): 110, 77, 88, (355,325,0): 106, 71, 78, (355,326,0): 100, 63, 71, (355,327,0): 95, 58, 65, (355,328,0): 89, 53, 57, (355,329,0): 82, 47, 51, (355,330,0): 75, 40, 44, (355,331,0): 68, 36, 39, (355,332,0): 65, 34, 39, (355,333,0): 63, 34, 38, (355,334,0): 61, 32, 37, (355,335,0): 57, 30, 37, (355,336,0): 57, 30, 37, (355,337,0): 55, 29, 38, (355,338,0): 53, 30, 40, (355,339,0): 51, 30, 39, (355,340,0): 50, 28, 40, (355,341,0): 49, 29, 40, (355,342,0): 46, 28, 40, (355,343,0): 46, 29, 39, (355,344,0): 49, 33, 43, (355,345,0): 49, 34, 41, (355,346,0): 49, 32, 38, (355,347,0): 52, 33, 37, (355,348,0): 54, 34, 36, (355,349,0): 55, 35, 36, (355,350,0): 58, 37, 36, (355,351,0): 62, 38, 36, (355,352,0): 66, 38, 35, (355,353,0): 67, 36, 33, (355,354,0): 69, 36, 31, (355,355,0): 72, 37, 31, (355,356,0): 79, 38, 32, (355,357,0): 87, 42, 37, (355,358,0): 95, 46, 41, (355,359,0): 100, 49, 45, (355,360,0): 95, 42, 38, (355,361,0): 96, 40, 39, (355,362,0): 93, 39, 39, (355,363,0): 89, 37, 39, (355,364,0): 86, 37, 41, (355,365,0): 84, 37, 43, (355,366,0): 81, 39, 43, (355,367,0): 80, 39, 43, (355,368,0): 79, 37, 39, (355,369,0): 79, 37, 39, (355,370,0): 79, 37, 39, (355,371,0): 78, 36, 38, (355,372,0): 78, 36, 38, (355,373,0): 77, 35, 37, (355,374,0): 77, 35, 37, (355,375,0): 76, 34, 36, (355,376,0): 76, 34, 36, (355,377,0): 76, 34, 36, (355,378,0): 76, 34, 36, (355,379,0): 76, 34, 36, (355,380,0): 76, 34, 36, (355,381,0): 76, 34, 36, (355,382,0): 76, 34, 36, (355,383,0): 76, 34, 36, (355,384,0): 78, 38, 38, (355,385,0): 76, 36, 34, (355,386,0): 78, 34, 33, (355,387,0): 83, 38, 35, (355,388,0): 91, 42, 38, (355,389,0): 97, 46, 43, (355,390,0): 100, 47, 43, (355,391,0): 100, 47, 43, (355,392,0): 98, 44, 42, (355,393,0): 94, 43, 42, (355,394,0): 89, 39, 40, (355,395,0): 82, 36, 38, (355,396,0): 75, 35, 36, (355,397,0): 70, 34, 36, (355,398,0): 69, 34, 38, (355,399,0): 67, 35, 38, (355,400,0): 68, 38, 38, (355,401,0): 68, 40, 39, (355,402,0): 69, 39, 39, (355,403,0): 68, 40, 39, (355,404,0): 68, 38, 38, (355,405,0): 66, 38, 37, (355,406,0): 65, 35, 35, (355,407,0): 63, 35, 34, (355,408,0): 65, 35, 35, (355,409,0): 64, 36, 35, (355,410,0): 65, 35, 35, (355,411,0): 65, 37, 36, (355,412,0): 67, 37, 37, (355,413,0): 67, 39, 38, (355,414,0): 68, 38, 38, (355,415,0): 69, 37, 38, (355,416,0): 85, 43, 45, (355,417,0): 88, 42, 45, (355,418,0): 90, 44, 47, (355,419,0): 93, 44, 48, (355,420,0): 94, 45, 49, (355,421,0): 96, 45, 50, (355,422,0): 97, 46, 51, (355,423,0): 97, 46, 51, (355,424,0): 94, 45, 49, (355,425,0): 91, 45, 48, (355,426,0): 88, 43, 46, (355,427,0): 85, 43, 45, (355,428,0): 83, 44, 45, (355,429,0): 83, 47, 47, (355,430,0): 84, 50, 49, (355,431,0): 85, 51, 50, (355,432,0): 79, 43, 43, (355,433,0): 75, 39, 41, (355,434,0): 70, 36, 37, (355,435,0): 67, 35, 36, (355,436,0): 65, 35, 35, (355,437,0): 62, 33, 35, (355,438,0): 58, 29, 31, (355,439,0): 53, 27, 28, (355,440,0): 53, 27, 30, (355,441,0): 53, 27, 30, (355,442,0): 53, 27, 30, (355,443,0): 55, 26, 31, (355,444,0): 56, 25, 31, (355,445,0): 56, 25, 31, (355,446,0): 57, 24, 31, (355,447,0): 57, 24, 33, (355,448,0): 54, 22, 33, (355,449,0): 53, 23, 33, (355,450,0): 54, 24, 34, (355,451,0): 55, 25, 35, (355,452,0): 56, 26, 36, (355,453,0): 55, 28, 35, (355,454,0): 56, 29, 36, (355,455,0): 56, 31, 37, (355,456,0): 53, 28, 32, (355,457,0): 51, 29, 32, (355,458,0): 53, 31, 34, (355,459,0): 53, 33, 34, (355,460,0): 56, 36, 37, (355,461,0): 57, 39, 39, (355,462,0): 59, 41, 39, (355,463,0): 61, 43, 41, (355,464,0): 61, 45, 45, (355,465,0): 62, 46, 46, (355,466,0): 65, 49, 49, (355,467,0): 67, 51, 51, (355,468,0): 67, 51, 51, (355,469,0): 66, 50, 50, (355,470,0): 64, 48, 48, (355,471,0): 63, 47, 47, (355,472,0): 58, 42, 42, (355,473,0): 57, 41, 41, (355,474,0): 54, 38, 38, (355,475,0): 51, 35, 35, (355,476,0): 49, 33, 33, (355,477,0): 47, 31, 31, (355,478,0): 47, 31, 31, (355,479,0): 47, 31, 32, (355,480,0): 54, 38, 41, (355,481,0): 54, 38, 41, (355,482,0): 53, 37, 40, (355,483,0): 51, 35, 38, (355,484,0): 50, 34, 35, (355,485,0): 49, 33, 34, (355,486,0): 48, 32, 32, (355,487,0): 48, 32, 32, (355,488,0): 51, 36, 33, (355,489,0): 54, 39, 36, (355,490,0): 58, 43, 38, (355,491,0): 62, 47, 42, (355,492,0): 63, 48, 43, (355,493,0): 63, 48, 41, (355,494,0): 61, 46, 39, (355,495,0): 60, 45, 40, (355,496,0): 63, 48, 45, (355,497,0): 62, 46, 46, (355,498,0): 61, 45, 45, (355,499,0): 60, 44, 44, (355,500,0): 62, 44, 44, (355,501,0): 63, 45, 45, (355,502,0): 64, 46, 46, (355,503,0): 65, 47, 47, (355,504,0): 58, 38, 39, (355,505,0): 58, 38, 39, (355,506,0): 60, 38, 40, (355,507,0): 60, 38, 40, (355,508,0): 60, 38, 40, (355,509,0): 58, 36, 38, (355,510,0): 59, 34, 37, (355,511,0): 58, 33, 36, (355,512,0): 61, 35, 38, (355,513,0): 61, 35, 36, (355,514,0): 61, 35, 38, (355,515,0): 61, 35, 36, (355,516,0): 60, 34, 35, (355,517,0): 60, 34, 35, (355,518,0): 60, 34, 35, (355,519,0): 59, 33, 32, (355,520,0): 60, 34, 33, (355,521,0): 60, 35, 31, (355,522,0): 62, 37, 33, (355,523,0): 66, 41, 36, (355,524,0): 71, 46, 42, (355,525,0): 74, 49, 44, (355,526,0): 73, 48, 43, (355,527,0): 70, 47, 41, (355,528,0): 60, 39, 34, (355,529,0): 58, 37, 32, (355,530,0): 55, 34, 29, (355,531,0): 52, 31, 28, (355,532,0): 50, 29, 28, (355,533,0): 50, 29, 28, (355,534,0): 51, 29, 31, (355,535,0): 52, 30, 33, (355,536,0): 49, 26, 32, (355,537,0): 48, 25, 31, (355,538,0): 46, 23, 33, (355,539,0): 45, 22, 32, (355,540,0): 44, 20, 33, (355,541,0): 45, 21, 34, (355,542,0): 45, 21, 35, (355,543,0): 46, 22, 35, (355,544,0): 45, 24, 33, (355,545,0): 44, 23, 30, (355,546,0): 44, 23, 30, (355,547,0): 44, 23, 30, (355,548,0): 46, 25, 30, (355,549,0): 47, 26, 31, (355,550,0): 49, 28, 33, (355,551,0): 50, 29, 34, (355,552,0): 56, 36, 38, (355,553,0): 55, 35, 37, (355,554,0): 54, 34, 35, (355,555,0): 53, 33, 34, (355,556,0): 51, 31, 32, (355,557,0): 50, 30, 31, (355,558,0): 49, 29, 28, (355,559,0): 47, 29, 29, (355,560,0): 43, 29, 29, (355,561,0): 41, 29, 31, (355,562,0): 40, 28, 30, (355,563,0): 39, 27, 29, (355,564,0): 38, 26, 28, (355,565,0): 37, 25, 27, (355,566,0): 36, 24, 26, (355,567,0): 35, 23, 25, (355,568,0): 41, 27, 27, (355,569,0): 41, 27, 27, (355,570,0): 41, 27, 27, (355,571,0): 41, 27, 27, (355,572,0): 42, 28, 28, (355,573,0): 44, 30, 30, (355,574,0): 47, 33, 32, (355,575,0): 48, 34, 33, (355,576,0): 50, 38, 38, (355,577,0): 50, 40, 39, (355,578,0): 48, 43, 40, (355,579,0): 47, 46, 42, (355,580,0): 47, 49, 44, (355,581,0): 46, 51, 45, (355,582,0): 47, 52, 46, (355,583,0): 50, 52, 47, (355,584,0): 51, 52, 47, (355,585,0): 54, 50, 47, (355,586,0): 57, 52, 49, (355,587,0): 61, 53, 51, (355,588,0): 61, 56, 53, (355,589,0): 62, 58, 55, (355,590,0): 63, 59, 56, (355,591,0): 62, 61, 59, (355,592,0): 63, 63, 65, (355,593,0): 62, 61, 66, (355,594,0): 61, 59, 64, (355,595,0): 58, 56, 61, (355,596,0): 58, 51, 58, (355,597,0): 56, 49, 56, (355,598,0): 55, 45, 53, (355,599,0): 54, 44, 52, (356,0,0): 78, 57, 52, (356,1,0): 79, 58, 53, (356,2,0): 81, 61, 54, (356,3,0): 83, 63, 56, (356,4,0): 85, 65, 56, (356,5,0): 87, 67, 58, (356,6,0): 88, 68, 57, (356,7,0): 89, 70, 56, (356,8,0): 87, 68, 54, (356,9,0): 86, 67, 52, (356,10,0): 86, 67, 50, (356,11,0): 86, 67, 50, (356,12,0): 87, 69, 49, (356,13,0): 90, 72, 52, (356,14,0): 92, 74, 52, (356,15,0): 93, 75, 53, (356,16,0): 95, 73, 52, (356,17,0): 95, 73, 52, (356,18,0): 95, 73, 52, (356,19,0): 95, 73, 52, (356,20,0): 94, 71, 53, (356,21,0): 94, 71, 53, (356,22,0): 94, 71, 55, (356,23,0): 94, 71, 55, (356,24,0): 91, 68, 52, (356,25,0): 90, 67, 51, (356,26,0): 88, 65, 51, (356,27,0): 87, 64, 50, (356,28,0): 86, 62, 50, (356,29,0): 86, 62, 50, (356,30,0): 87, 63, 51, (356,31,0): 86, 64, 51, (356,32,0): 87, 65, 54, (356,33,0): 85, 65, 54, (356,34,0): 84, 64, 53, (356,35,0): 83, 63, 52, (356,36,0): 83, 63, 52, (356,37,0): 82, 62, 51, (356,38,0): 81, 61, 50, (356,39,0): 81, 61, 50, (356,40,0): 76, 56, 45, (356,41,0): 76, 56, 45, (356,42,0): 76, 56, 45, (356,43,0): 76, 56, 45, (356,44,0): 76, 56, 45, (356,45,0): 77, 57, 46, (356,46,0): 78, 58, 47, (356,47,0): 78, 58, 47, (356,48,0): 78, 56, 45, (356,49,0): 78, 56, 43, (356,50,0): 78, 54, 44, (356,51,0): 77, 55, 42, (356,52,0): 79, 55, 45, (356,53,0): 78, 56, 43, (356,54,0): 80, 56, 46, (356,55,0): 79, 57, 44, (356,56,0): 78, 54, 44, (356,57,0): 78, 56, 43, (356,58,0): 82, 58, 48, (356,59,0): 84, 62, 49, (356,60,0): 88, 64, 54, (356,61,0): 91, 69, 56, (356,62,0): 95, 71, 61, (356,63,0): 97, 73, 61, (356,64,0): 94, 71, 55, (356,65,0): 94, 72, 51, (356,66,0): 97, 72, 52, (356,67,0): 98, 73, 51, (356,68,0): 100, 73, 52, (356,69,0): 101, 75, 52, (356,70,0): 102, 74, 52, (356,71,0): 104, 74, 50, (356,72,0): 105, 73, 48, (356,73,0): 105, 74, 46, (356,74,0): 108, 74, 47, (356,75,0): 109, 75, 47, (356,76,0): 113, 78, 50, (356,77,0): 116, 81, 51, (356,78,0): 120, 83, 54, (356,79,0): 124, 85, 56, (356,80,0): 122, 81, 51, (356,81,0): 121, 80, 50, (356,82,0): 121, 80, 50, (356,83,0): 120, 81, 50, (356,84,0): 121, 82, 49, (356,85,0): 121, 85, 51, (356,86,0): 121, 87, 50, (356,87,0): 121, 87, 50, (356,88,0): 123, 91, 53, (356,89,0): 126, 96, 58, (356,90,0): 131, 103, 63, (356,91,0): 135, 107, 67, (356,92,0): 136, 112, 68, (356,93,0): 139, 115, 71, (356,94,0): 142, 119, 75, (356,95,0): 146, 123, 79, (356,96,0): 143, 119, 75, (356,97,0): 150, 127, 83, (356,98,0): 157, 135, 88, (356,99,0): 156, 136, 86, (356,100,0): 152, 135, 83, (356,101,0): 154, 139, 82, (356,102,0): 163, 153, 92, (356,103,0): 173, 165, 102, (356,104,0): 178, 174, 110, (356,105,0): 174, 175, 107, (356,106,0): 173, 176, 107, (356,107,0): 171, 177, 107, (356,108,0): 170, 177, 109, (356,109,0): 168, 178, 109, (356,110,0): 167, 178, 109, (356,111,0): 166, 177, 109, (356,112,0): 167, 179, 113, (356,113,0): 165, 180, 115, (356,114,0): 166, 180, 118, (356,115,0): 166, 180, 118, (356,116,0): 165, 181, 118, (356,117,0): 165, 181, 118, (356,118,0): 166, 182, 120, (356,119,0): 166, 182, 120, (356,120,0): 170, 185, 126, (356,121,0): 169, 187, 127, (356,122,0): 171, 189, 129, (356,123,0): 171, 191, 130, (356,124,0): 173, 191, 133, (356,125,0): 172, 192, 133, (356,126,0): 172, 192, 133, (356,127,0): 172, 192, 133, (356,128,0): 173, 193, 134, (356,129,0): 172, 193, 136, (356,130,0): 171, 192, 135, (356,131,0): 169, 192, 136, (356,132,0): 168, 191, 135, (356,133,0): 167, 192, 137, (356,134,0): 166, 191, 136, (356,135,0): 164, 191, 138, (356,136,0): 165, 193, 142, (356,137,0): 163, 193, 143, (356,138,0): 162, 192, 142, (356,139,0): 159, 191, 142, (356,140,0): 159, 191, 142, (356,141,0): 159, 192, 145, (356,142,0): 160, 193, 146, (356,143,0): 160, 193, 148, (356,144,0): 160, 193, 148, (356,145,0): 160, 193, 148, (356,146,0): 160, 193, 148, (356,147,0): 158, 194, 150, (356,148,0): 158, 194, 150, (356,149,0): 156, 193, 150, (356,150,0): 156, 193, 150, (356,151,0): 155, 193, 152, (356,152,0): 157, 198, 158, (356,153,0): 158, 200, 162, (356,154,0): 160, 202, 164, (356,155,0): 160, 204, 168, (356,156,0): 162, 206, 171, (356,157,0): 161, 207, 171, (356,158,0): 162, 208, 172, (356,159,0): 158, 208, 173, (356,160,0): 159, 210, 177, (356,161,0): 158, 212, 180, (356,162,0): 158, 212, 180, (356,163,0): 159, 213, 181, (356,164,0): 158, 213, 182, (356,165,0): 159, 214, 185, (356,166,0): 158, 214, 187, (356,167,0): 158, 214, 187, (356,168,0): 158, 214, 189, (356,169,0): 159, 214, 191, (356,170,0): 159, 217, 195, (356,171,0): 161, 219, 197, (356,172,0): 161, 220, 200, (356,173,0): 161, 220, 200, (356,174,0): 160, 219, 199, (356,175,0): 160, 219, 199, (356,176,0): 158, 215, 196, (356,177,0): 158, 215, 196, (356,178,0): 157, 214, 195, (356,179,0): 157, 214, 195, (356,180,0): 156, 213, 196, (356,181,0): 156, 213, 196, (356,182,0): 156, 213, 198, (356,183,0): 155, 212, 197, (356,184,0): 154, 211, 196, (356,185,0): 154, 211, 196, (356,186,0): 154, 210, 197, (356,187,0): 154, 210, 197, (356,188,0): 154, 210, 199, (356,189,0): 154, 210, 199, (356,190,0): 154, 210, 199, (356,191,0): 154, 210, 199, (356,192,0): 153, 209, 198, (356,193,0): 154, 210, 199, (356,194,0): 154, 210, 199, (356,195,0): 155, 211, 200, (356,196,0): 157, 210, 200, (356,197,0): 158, 211, 201, (356,198,0): 159, 210, 201, (356,199,0): 159, 210, 201, (356,200,0): 163, 214, 205, (356,201,0): 162, 213, 204, (356,202,0): 162, 212, 203, (356,203,0): 161, 211, 202, (356,204,0): 162, 209, 201, (356,205,0): 160, 207, 199, (356,206,0): 159, 206, 198, (356,207,0): 159, 206, 198, (356,208,0): 156, 203, 193, (356,209,0): 156, 203, 193, (356,210,0): 156, 203, 193, (356,211,0): 156, 203, 195, (356,212,0): 155, 202, 194, (356,213,0): 155, 202, 194, (356,214,0): 155, 202, 196, (356,215,0): 154, 201, 195, (356,216,0): 158, 205, 199, (356,217,0): 158, 204, 201, (356,218,0): 158, 204, 201, (356,219,0): 158, 204, 201, (356,220,0): 158, 204, 202, (356,221,0): 158, 204, 202, (356,222,0): 158, 204, 202, (356,223,0): 158, 204, 202, (356,224,0): 159, 205, 205, (356,225,0): 156, 204, 204, (356,226,0): 157, 203, 203, (356,227,0): 154, 202, 204, (356,228,0): 154, 202, 204, (356,229,0): 154, 202, 206, (356,230,0): 155, 202, 208, (356,231,0): 155, 204, 211, (356,232,0): 159, 208, 215, (356,233,0): 158, 208, 217, (356,234,0): 158, 208, 219, (356,235,0): 156, 208, 219, (356,236,0): 158, 207, 221, (356,237,0): 156, 208, 221, (356,238,0): 156, 208, 221, (356,239,0): 156, 208, 221, (356,240,0): 159, 209, 220, (356,241,0): 160, 208, 220, (356,242,0): 160, 208, 222, (356,243,0): 160, 208, 222, (356,244,0): 160, 207, 223, (356,245,0): 160, 207, 223, (356,246,0): 160, 207, 225, (356,247,0): 160, 207, 227, (356,248,0): 160, 206, 229, (356,249,0): 160, 206, 229, (356,250,0): 160, 206, 230, (356,251,0): 161, 207, 233, (356,252,0): 161, 206, 235, (356,253,0): 161, 206, 235, (356,254,0): 161, 206, 235, (356,255,0): 162, 207, 236, (356,256,0): 163, 210, 238, (356,257,0): 165, 212, 238, (356,258,0): 165, 215, 242, (356,259,0): 167, 217, 244, (356,260,0): 169, 219, 246, (356,261,0): 170, 219, 249, (356,262,0): 169, 220, 251, (356,263,0): 169, 219, 252, (356,264,0): 168, 218, 251, (356,265,0): 166, 219, 253, (356,266,0): 166, 218, 255, (356,267,0): 166, 218, 255, (356,268,0): 164, 217, 255, (356,269,0): 164, 217, 255, (356,270,0): 164, 217, 255, (356,271,0): 163, 216, 255, (356,272,0): 166, 215, 255, (356,273,0): 165, 214, 255, (356,274,0): 164, 213, 255, (356,275,0): 163, 212, 253, (356,276,0): 161, 210, 251, (356,277,0): 159, 208, 249, (356,278,0): 158, 207, 248, (356,279,0): 158, 207, 248, (356,280,0): 157, 206, 247, (356,281,0): 156, 205, 246, (356,282,0): 155, 204, 245, (356,283,0): 154, 203, 244, (356,284,0): 152, 201, 242, (356,285,0): 150, 199, 240, (356,286,0): 148, 197, 238, (356,287,0): 147, 196, 237, (356,288,0): 147, 195, 235, (356,289,0): 147, 195, 235, (356,290,0): 147, 194, 236, (356,291,0): 147, 194, 236, (356,292,0): 147, 194, 236, (356,293,0): 149, 194, 236, (356,294,0): 149, 193, 238, (356,295,0): 149, 193, 238, (356,296,0): 153, 195, 243, (356,297,0): 153, 195, 243, (356,298,0): 155, 195, 244, (356,299,0): 156, 196, 247, (356,300,0): 157, 197, 248, (356,301,0): 158, 198, 249, (356,302,0): 159, 199, 251, (356,303,0): 159, 199, 250, (356,304,0): 155, 199, 248, (356,305,0): 155, 199, 248, (356,306,0): 156, 196, 248, (356,307,0): 157, 194, 247, (356,308,0): 161, 194, 248, (356,309,0): 165, 194, 250, (356,310,0): 169, 195, 252, (356,311,0): 173, 195, 252, (356,312,0): 170, 189, 247, (356,313,0): 172, 187, 242, (356,314,0): 173, 183, 234, (356,315,0): 173, 175, 223, (356,316,0): 170, 164, 208, (356,317,0): 165, 154, 194, (356,318,0): 162, 146, 183, (356,319,0): 161, 140, 171, (356,320,0): 145, 118, 137, (356,321,0): 133, 105, 119, (356,322,0): 118, 87, 102, (356,323,0): 105, 73, 86, (356,324,0): 99, 66, 77, (356,325,0): 95, 62, 69, (356,326,0): 91, 56, 63, (356,327,0): 86, 51, 57, (356,328,0): 83, 48, 52, (356,329,0): 78, 43, 47, (356,330,0): 72, 37, 41, (356,331,0): 66, 34, 37, (356,332,0): 64, 33, 38, (356,333,0): 62, 33, 38, (356,334,0): 60, 30, 38, (356,335,0): 56, 29, 36, (356,336,0): 56, 29, 36, (356,337,0): 54, 29, 35, (356,338,0): 52, 29, 37, (356,339,0): 51, 30, 37, (356,340,0): 50, 29, 38, (356,341,0): 49, 29, 38, (356,342,0): 47, 30, 40, (356,343,0): 47, 30, 40, (356,344,0): 51, 34, 44, (356,345,0): 51, 34, 42, (356,346,0): 52, 33, 39, (356,347,0): 53, 34, 38, (356,348,0): 55, 35, 37, (356,349,0): 58, 36, 38, (356,350,0): 61, 37, 37, (356,351,0): 64, 39, 35, (356,352,0): 69, 38, 33, (356,353,0): 72, 37, 31, (356,354,0): 77, 38, 33, (356,355,0): 80, 39, 33, (356,356,0): 89, 41, 37, (356,357,0): 94, 45, 40, (356,358,0): 101, 48, 44, (356,359,0): 103, 50, 46, (356,360,0): 95, 41, 39, (356,361,0): 93, 39, 39, (356,362,0): 89, 37, 39, (356,363,0): 85, 36, 39, (356,364,0): 82, 36, 39, (356,365,0): 81, 36, 41, (356,366,0): 80, 37, 44, (356,367,0): 80, 37, 44, (356,368,0): 79, 37, 41, (356,369,0): 78, 36, 38, (356,370,0): 78, 36, 38, (356,371,0): 77, 35, 37, (356,372,0): 77, 35, 37, (356,373,0): 76, 34, 36, (356,374,0): 76, 34, 36, (356,375,0): 76, 34, 36, (356,376,0): 76, 34, 36, (356,377,0): 76, 34, 36, (356,378,0): 76, 34, 36, (356,379,0): 76, 34, 36, (356,380,0): 76, 34, 36, (356,381,0): 76, 34, 36, (356,382,0): 76, 34, 36, (356,383,0): 76, 34, 36, (356,384,0): 78, 38, 38, (356,385,0): 76, 36, 34, (356,386,0): 78, 34, 33, (356,387,0): 82, 37, 34, (356,388,0): 89, 41, 37, (356,389,0): 96, 45, 42, (356,390,0): 99, 45, 43, (356,391,0): 99, 45, 43, (356,392,0): 97, 43, 43, (356,393,0): 92, 42, 41, (356,394,0): 87, 39, 39, (356,395,0): 80, 36, 37, (356,396,0): 74, 34, 35, (356,397,0): 69, 33, 35, (356,398,0): 68, 33, 37, (356,399,0): 66, 34, 37, (356,400,0): 69, 37, 40, (356,401,0): 68, 38, 40, (356,402,0): 70, 38, 41, (356,403,0): 70, 40, 42, (356,404,0): 70, 38, 41, (356,405,0): 68, 38, 40, (356,406,0): 68, 36, 39, (356,407,0): 66, 36, 38, (356,408,0): 67, 35, 38, (356,409,0): 66, 36, 38, (356,410,0): 67, 35, 38, (356,411,0): 66, 36, 38, (356,412,0): 68, 36, 39, (356,413,0): 67, 37, 39, (356,414,0): 68, 36, 39, (356,415,0): 70, 36, 37, (356,416,0): 78, 38, 39, (356,417,0): 82, 37, 40, (356,418,0): 82, 37, 40, (356,419,0): 84, 38, 41, (356,420,0): 86, 37, 41, (356,421,0): 88, 39, 43, (356,422,0): 89, 40, 44, (356,423,0): 89, 40, 44, (356,424,0): 90, 41, 45, (356,425,0): 89, 40, 44, (356,426,0): 84, 38, 41, (356,427,0): 81, 36, 39, (356,428,0): 77, 35, 37, (356,429,0): 76, 36, 37, (356,430,0): 76, 37, 38, (356,431,0): 75, 39, 39, (356,432,0): 74, 38, 40, (356,433,0): 70, 35, 39, (356,434,0): 66, 31, 35, (356,435,0): 63, 31, 34, (356,436,0): 61, 32, 34, (356,437,0): 57, 31, 34, (356,438,0): 53, 28, 31, (356,439,0): 50, 25, 28, (356,440,0): 50, 25, 29, (356,441,0): 50, 25, 29, (356,442,0): 50, 25, 29, (356,443,0): 50, 25, 31, (356,444,0): 51, 24, 31, (356,445,0): 51, 24, 31, (356,446,0): 53, 23, 31, (356,447,0): 53, 23, 33, (356,448,0): 49, 22, 31, (356,449,0): 49, 21, 33, (356,450,0): 50, 22, 34, (356,451,0): 51, 25, 34, (356,452,0): 52, 26, 35, (356,453,0): 52, 29, 37, (356,454,0): 53, 30, 36, (356,455,0): 53, 30, 36, (356,456,0): 51, 28, 34, (356,457,0): 50, 30, 32, (356,458,0): 51, 31, 33, (356,459,0): 52, 33, 35, (356,460,0): 54, 36, 36, (356,461,0): 54, 38, 38, (356,462,0): 56, 40, 40, (356,463,0): 57, 41, 41, (356,464,0): 58, 42, 42, (356,465,0): 60, 44, 44, (356,466,0): 63, 47, 47, (356,467,0): 65, 49, 49, (356,468,0): 66, 50, 50, (356,469,0): 66, 50, 50, (356,470,0): 65, 49, 49, (356,471,0): 64, 48, 48, (356,472,0): 61, 45, 45, (356,473,0): 59, 43, 43, (356,474,0): 56, 40, 40, (356,475,0): 53, 37, 37, (356,476,0): 50, 34, 34, (356,477,0): 49, 33, 33, (356,478,0): 48, 32, 32, (356,479,0): 47, 31, 32, (356,480,0): 57, 38, 42, (356,481,0): 57, 38, 42, (356,482,0): 56, 37, 41, (356,483,0): 54, 35, 37, (356,484,0): 52, 33, 35, (356,485,0): 50, 31, 33, (356,486,0): 49, 31, 31, (356,487,0): 48, 30, 30, (356,488,0): 48, 30, 28, (356,489,0): 51, 33, 31, (356,490,0): 55, 37, 35, (356,491,0): 59, 41, 37, (356,492,0): 61, 43, 39, (356,493,0): 61, 43, 39, (356,494,0): 60, 42, 38, (356,495,0): 59, 41, 37, (356,496,0): 58, 43, 40, (356,497,0): 57, 41, 41, (356,498,0): 56, 40, 40, (356,499,0): 56, 40, 40, (356,500,0): 58, 40, 40, (356,501,0): 60, 42, 42, (356,502,0): 61, 43, 43, (356,503,0): 62, 44, 44, (356,504,0): 59, 39, 40, (356,505,0): 59, 39, 40, (356,506,0): 61, 39, 41, (356,507,0): 61, 39, 41, (356,508,0): 61, 39, 41, (356,509,0): 60, 38, 40, (356,510,0): 60, 35, 38, (356,511,0): 59, 34, 37, (356,512,0): 58, 33, 36, (356,513,0): 58, 33, 36, (356,514,0): 58, 33, 37, (356,515,0): 57, 32, 35, (356,516,0): 56, 31, 34, (356,517,0): 56, 31, 34, (356,518,0): 55, 30, 33, (356,519,0): 55, 31, 31, (356,520,0): 57, 33, 33, (356,521,0): 56, 32, 30, (356,522,0): 57, 33, 31, (356,523,0): 61, 37, 33, (356,524,0): 66, 42, 40, (356,525,0): 68, 44, 40, (356,526,0): 68, 44, 40, (356,527,0): 66, 42, 38, (356,528,0): 58, 37, 34, (356,529,0): 56, 35, 32, (356,530,0): 53, 32, 29, (356,531,0): 51, 30, 27, (356,532,0): 49, 28, 27, (356,533,0): 50, 29, 28, (356,534,0): 51, 29, 31, (356,535,0): 52, 30, 33, (356,536,0): 48, 25, 31, (356,537,0): 47, 24, 30, (356,538,0): 46, 23, 33, (356,539,0): 44, 21, 31, (356,540,0): 44, 20, 33, (356,541,0): 44, 20, 33, (356,542,0): 45, 21, 34, (356,543,0): 45, 21, 34, (356,544,0): 44, 23, 32, (356,545,0): 44, 23, 30, (356,546,0): 44, 23, 30, (356,547,0): 44, 23, 30, (356,548,0): 45, 24, 29, (356,549,0): 47, 26, 31, (356,550,0): 49, 28, 33, (356,551,0): 50, 29, 34, (356,552,0): 55, 35, 37, (356,553,0): 55, 35, 37, (356,554,0): 54, 34, 35, (356,555,0): 53, 33, 34, (356,556,0): 51, 31, 32, (356,557,0): 50, 30, 31, (356,558,0): 49, 29, 28, (356,559,0): 48, 30, 30, (356,560,0): 45, 29, 30, (356,561,0): 43, 29, 29, (356,562,0): 42, 28, 28, (356,563,0): 41, 27, 27, (356,564,0): 40, 26, 26, (356,565,0): 39, 25, 25, (356,566,0): 39, 25, 25, (356,567,0): 39, 25, 25, (356,568,0): 38, 24, 24, (356,569,0): 38, 24, 24, (356,570,0): 38, 24, 24, (356,571,0): 39, 25, 25, (356,572,0): 41, 27, 27, (356,573,0): 44, 30, 30, (356,574,0): 46, 32, 32, (356,575,0): 47, 33, 33, (356,576,0): 47, 35, 35, (356,577,0): 46, 36, 35, (356,578,0): 45, 40, 37, (356,579,0): 44, 43, 39, (356,580,0): 45, 47, 42, (356,581,0): 46, 51, 45, (356,582,0): 48, 53, 47, (356,583,0): 51, 53, 48, (356,584,0): 52, 53, 48, (356,585,0): 56, 52, 49, (356,586,0): 58, 53, 50, (356,587,0): 62, 54, 52, (356,588,0): 61, 56, 53, (356,589,0): 62, 58, 55, (356,590,0): 63, 59, 56, (356,591,0): 62, 61, 59, (356,592,0): 63, 63, 65, (356,593,0): 62, 61, 66, (356,594,0): 61, 59, 64, (356,595,0): 59, 57, 62, (356,596,0): 59, 52, 59, (356,597,0): 57, 50, 57, (356,598,0): 57, 47, 55, (356,599,0): 56, 46, 54, (357,0,0): 76, 55, 50, (357,1,0): 77, 56, 51, (357,2,0): 79, 59, 52, (357,3,0): 81, 61, 54, (357,4,0): 83, 63, 54, (357,5,0): 85, 65, 56, (357,6,0): 87, 67, 56, (357,7,0): 88, 69, 55, (357,8,0): 86, 67, 53, (357,9,0): 85, 66, 51, (357,10,0): 84, 65, 48, (357,11,0): 84, 65, 48, (357,12,0): 86, 68, 48, (357,13,0): 89, 71, 51, (357,14,0): 92, 74, 52, (357,15,0): 94, 76, 54, (357,16,0): 93, 72, 51, (357,17,0): 94, 72, 51, (357,18,0): 94, 72, 51, (357,19,0): 94, 72, 51, (357,20,0): 94, 71, 53, (357,21,0): 94, 71, 53, (357,22,0): 94, 71, 55, (357,23,0): 94, 71, 55, (357,24,0): 93, 70, 54, (357,25,0): 92, 69, 53, (357,26,0): 90, 67, 53, (357,27,0): 88, 65, 51, (357,28,0): 87, 63, 51, (357,29,0): 87, 63, 51, (357,30,0): 88, 64, 52, (357,31,0): 87, 65, 52, (357,32,0): 87, 65, 54, (357,33,0): 84, 64, 53, (357,34,0): 84, 64, 53, (357,35,0): 83, 63, 52, (357,36,0): 83, 63, 52, (357,37,0): 82, 62, 51, (357,38,0): 82, 62, 51, (357,39,0): 81, 61, 50, (357,40,0): 77, 57, 46, (357,41,0): 77, 57, 46, (357,42,0): 76, 56, 45, (357,43,0): 75, 55, 44, (357,44,0): 75, 55, 44, (357,45,0): 76, 56, 45, (357,46,0): 77, 57, 46, (357,47,0): 78, 58, 47, (357,48,0): 76, 56, 45, (357,49,0): 75, 55, 44, (357,50,0): 76, 54, 43, (357,51,0): 73, 53, 42, (357,52,0): 75, 53, 42, (357,53,0): 73, 53, 42, (357,54,0): 76, 54, 43, (357,55,0): 74, 54, 43, (357,56,0): 75, 53, 42, (357,57,0): 73, 53, 42, (357,58,0): 77, 55, 44, (357,59,0): 78, 58, 47, (357,60,0): 83, 61, 50, (357,61,0): 85, 65, 54, (357,62,0): 91, 69, 58, (357,63,0): 93, 71, 58, (357,64,0): 92, 71, 54, (357,65,0): 95, 72, 54, (357,66,0): 96, 73, 55, (357,67,0): 100, 75, 55, (357,68,0): 102, 77, 57, (357,69,0): 103, 76, 55, (357,70,0): 103, 76, 55, (357,71,0): 104, 76, 54, (357,72,0): 104, 74, 50, (357,73,0): 105, 73, 48, (357,74,0): 106, 74, 49, (357,75,0): 109, 75, 48, (357,76,0): 113, 77, 51, (357,77,0): 117, 82, 54, (357,78,0): 120, 85, 57, (357,79,0): 122, 85, 58, (357,80,0): 120, 80, 54, (357,81,0): 119, 79, 53, (357,82,0): 118, 78, 52, (357,83,0): 116, 79, 52, (357,84,0): 118, 81, 52, (357,85,0): 118, 83, 53, (357,86,0): 117, 82, 50, (357,87,0): 114, 81, 48, (357,88,0): 112, 82, 48, (357,89,0): 116, 86, 52, (357,90,0): 120, 92, 55, (357,91,0): 124, 96, 59, (357,92,0): 126, 101, 61, (357,93,0): 130, 105, 65, (357,94,0): 135, 112, 71, (357,95,0): 140, 117, 76, (357,96,0): 139, 116, 75, (357,97,0): 144, 123, 80, (357,98,0): 150, 129, 84, (357,99,0): 150, 132, 84, (357,100,0): 149, 133, 82, (357,101,0): 152, 139, 86, (357,102,0): 163, 152, 96, (357,103,0): 169, 163, 103, (357,104,0): 176, 172, 109, (357,105,0): 173, 174, 108, (357,106,0): 172, 175, 108, (357,107,0): 171, 176, 109, (357,108,0): 170, 177, 109, (357,109,0): 169, 179, 110, (357,110,0): 169, 179, 110, (357,111,0): 168, 179, 111, (357,112,0): 167, 179, 113, (357,113,0): 165, 180, 115, (357,114,0): 166, 180, 118, (357,115,0): 167, 181, 119, (357,116,0): 167, 181, 119, (357,117,0): 167, 183, 120, (357,118,0): 168, 184, 122, (357,119,0): 168, 184, 122, (357,120,0): 169, 187, 127, (357,121,0): 169, 189, 128, (357,122,0): 170, 190, 129, (357,123,0): 171, 191, 130, (357,124,0): 172, 192, 133, (357,125,0): 171, 192, 133, (357,126,0): 170, 191, 132, (357,127,0): 170, 191, 134, (357,128,0): 169, 193, 135, (357,129,0): 169, 192, 136, (357,130,0): 168, 191, 135, (357,131,0): 167, 192, 137, (357,132,0): 166, 191, 136, (357,133,0): 164, 191, 138, (357,134,0): 163, 190, 137, (357,135,0): 162, 190, 139, (357,136,0): 164, 194, 144, (357,137,0): 161, 193, 144, (357,138,0): 160, 192, 143, (357,139,0): 158, 191, 144, (357,140,0): 157, 190, 143, (357,141,0): 155, 191, 145, (357,142,0): 155, 191, 145, (357,143,0): 155, 191, 145, (357,144,0): 160, 196, 152, (357,145,0): 162, 195, 152, (357,146,0): 160, 196, 152, (357,147,0): 161, 196, 154, (357,148,0): 160, 197, 154, (357,149,0): 161, 198, 157, (357,150,0): 160, 198, 157, (357,151,0): 158, 199, 159, (357,152,0): 156, 198, 160, (357,153,0): 157, 199, 163, (357,154,0): 157, 201, 165, (357,155,0): 159, 205, 169, (357,156,0): 160, 206, 170, (357,157,0): 161, 206, 173, (357,158,0): 160, 207, 173, (357,159,0): 158, 207, 175, (357,160,0): 160, 210, 181, (357,161,0): 158, 211, 183, (357,162,0): 158, 211, 183, (357,163,0): 159, 212, 184, (357,164,0): 159, 213, 187, (357,165,0): 159, 213, 187, (357,166,0): 158, 214, 189, (357,167,0): 159, 214, 191, (357,168,0): 157, 212, 191, (357,169,0): 158, 213, 192, (357,170,0): 158, 215, 196, (357,171,0): 159, 216, 199, (357,172,0): 159, 217, 202, (357,173,0): 158, 216, 201, (357,174,0): 158, 216, 201, (357,175,0): 157, 215, 200, (357,176,0): 157, 214, 199, (357,177,0): 156, 213, 198, (357,178,0): 156, 213, 198, (357,179,0): 155, 212, 197, (357,180,0): 155, 211, 198, (357,181,0): 154, 210, 197, (357,182,0): 154, 210, 199, (357,183,0): 154, 210, 199, (357,184,0): 153, 209, 198, (357,185,0): 153, 209, 198, (357,186,0): 153, 209, 200, (357,187,0): 153, 209, 200, (357,188,0): 153, 208, 202, (357,189,0): 153, 208, 202, (357,190,0): 153, 208, 202, (357,191,0): 153, 208, 202, (357,192,0): 152, 207, 201, (357,193,0): 152, 207, 201, (357,194,0): 152, 207, 201, (357,195,0): 153, 208, 202, (357,196,0): 155, 208, 202, (357,197,0): 156, 209, 203, (357,198,0): 157, 208, 203, (357,199,0): 157, 208, 203, (357,200,0): 159, 210, 205, (357,201,0): 158, 209, 204, (357,202,0): 159, 208, 204, (357,203,0): 158, 207, 203, (357,204,0): 159, 205, 202, (357,205,0): 158, 204, 201, (357,206,0): 158, 204, 201, (357,207,0): 157, 203, 200, (357,208,0): 155, 202, 196, (357,209,0): 155, 202, 196, (357,210,0): 155, 202, 196, (357,211,0): 154, 201, 195, (357,212,0): 154, 200, 197, (357,213,0): 154, 200, 197, (357,214,0): 154, 200, 198, (357,215,0): 154, 200, 198, (357,216,0): 158, 204, 202, (357,217,0): 158, 204, 202, (357,218,0): 158, 204, 204, (357,219,0): 158, 204, 204, (357,220,0): 158, 203, 206, (357,221,0): 158, 203, 206, (357,222,0): 158, 203, 206, (357,223,0): 156, 204, 206, (357,224,0): 157, 205, 209, (357,225,0): 155, 204, 208, (357,226,0): 155, 203, 207, (357,227,0): 153, 202, 206, (357,228,0): 152, 201, 206, (357,229,0): 151, 202, 206, (357,230,0): 153, 202, 209, (357,231,0): 153, 203, 212, (357,232,0): 157, 207, 218, (357,233,0): 155, 207, 218, (357,234,0): 155, 207, 220, (357,235,0): 155, 208, 222, (357,236,0): 156, 207, 224, (357,237,0): 156, 209, 225, (357,238,0): 156, 209, 225, (357,239,0): 156, 209, 225, (357,240,0): 158, 209, 226, (357,241,0): 158, 209, 226, (357,242,0): 158, 209, 226, (357,243,0): 158, 209, 226, (357,244,0): 158, 209, 228, (357,245,0): 158, 209, 230, (357,246,0): 158, 208, 231, (357,247,0): 158, 208, 231, (357,248,0): 156, 206, 231, (357,249,0): 157, 207, 232, (357,250,0): 157, 207, 234, (357,251,0): 158, 208, 235, (357,252,0): 159, 208, 238, (357,253,0): 159, 208, 240, (357,254,0): 160, 209, 241, (357,255,0): 160, 209, 239, (357,256,0): 164, 211, 241, (357,257,0): 165, 212, 242, (357,258,0): 165, 214, 244, (357,259,0): 168, 217, 247, (357,260,0): 169, 218, 248, (357,261,0): 170, 219, 251, (357,262,0): 169, 219, 252, (357,263,0): 169, 219, 252, (357,264,0): 166, 219, 253, (357,265,0): 166, 218, 255, (357,266,0): 166, 218, 255, (357,267,0): 166, 218, 255, (357,268,0): 165, 218, 255, (357,269,0): 165, 218, 255, (357,270,0): 164, 217, 255, (357,271,0): 164, 217, 255, (357,272,0): 163, 214, 255, (357,273,0): 165, 214, 255, (357,274,0): 163, 212, 255, (357,275,0): 162, 211, 254, (357,276,0): 160, 209, 252, (357,277,0): 159, 208, 251, (357,278,0): 158, 206, 252, (357,279,0): 157, 205, 251, (357,280,0): 155, 203, 249, (357,281,0): 155, 203, 249, (357,282,0): 155, 203, 249, (357,283,0): 155, 203, 249, (357,284,0): 153, 201, 247, (357,285,0): 151, 199, 245, (357,286,0): 149, 197, 243, (357,287,0): 148, 196, 242, (357,288,0): 148, 197, 240, (357,289,0): 149, 196, 240, (357,290,0): 149, 196, 242, (357,291,0): 149, 196, 242, (357,292,0): 149, 196, 242, (357,293,0): 149, 196, 242, (357,294,0): 151, 195, 244, (357,295,0): 151, 195, 244, (357,296,0): 155, 197, 247, (357,297,0): 155, 197, 247, (357,298,0): 156, 197, 249, (357,299,0): 158, 198, 250, (357,300,0): 159, 199, 251, (357,301,0): 160, 200, 252, (357,302,0): 161, 201, 253, (357,303,0): 161, 202, 255, (357,304,0): 158, 199, 253, (357,305,0): 157, 198, 252, (357,306,0): 156, 196, 248, (357,307,0): 158, 195, 248, (357,308,0): 160, 195, 249, (357,309,0): 164, 197, 251, (357,310,0): 169, 198, 254, (357,311,0): 173, 199, 255, (357,312,0): 178, 198, 255, (357,313,0): 180, 195, 252, (357,314,0): 181, 190, 245, (357,315,0): 182, 184, 235, (357,316,0): 180, 174, 220, (357,317,0): 171, 158, 201, (357,318,0): 158, 140, 178, (357,319,0): 152, 129, 158, (357,320,0): 127, 100, 119, (357,321,0): 116, 88, 100, (357,322,0): 104, 74, 86, (357,323,0): 94, 64, 74, (357,324,0): 91, 60, 68, (357,325,0): 88, 55, 62, (357,326,0): 85, 50, 56, (357,327,0): 80, 45, 51, (357,328,0): 79, 44, 48, (357,329,0): 73, 41, 44, (357,330,0): 68, 36, 39, (357,331,0): 65, 34, 39, (357,332,0): 63, 34, 39, (357,333,0): 60, 33, 38, (357,334,0): 58, 31, 38, (357,335,0): 55, 28, 35, (357,336,0): 55, 30, 36, (357,337,0): 55, 30, 36, (357,338,0): 53, 30, 38, (357,339,0): 52, 31, 38, (357,340,0): 51, 30, 39, (357,341,0): 50, 30, 39, (357,342,0): 48, 31, 41, (357,343,0): 48, 31, 39, (357,344,0): 52, 35, 43, (357,345,0): 54, 35, 41, (357,346,0): 53, 34, 38, (357,347,0): 55, 35, 37, (357,348,0): 57, 35, 37, (357,349,0): 61, 37, 37, (357,350,0): 62, 38, 36, (357,351,0): 67, 39, 36, (357,352,0): 72, 39, 32, (357,353,0): 78, 40, 31, (357,354,0): 84, 41, 34, (357,355,0): 91, 44, 38, (357,356,0): 96, 45, 41, (357,357,0): 101, 46, 43, (357,358,0): 102, 47, 44, (357,359,0): 102, 46, 45, (357,360,0): 94, 40, 40, (357,361,0): 90, 38, 40, (357,362,0): 85, 36, 39, (357,363,0): 81, 35, 38, (357,364,0): 79, 34, 39, (357,365,0): 79, 34, 41, (357,366,0): 78, 35, 44, (357,367,0): 79, 36, 43, (357,368,0): 78, 36, 40, (357,369,0): 78, 36, 38, (357,370,0): 78, 36, 38, (357,371,0): 77, 35, 37, (357,372,0): 76, 34, 36, (357,373,0): 76, 34, 36, (357,374,0): 76, 34, 36, (357,375,0): 75, 33, 35, (357,376,0): 76, 34, 36, (357,377,0): 76, 34, 36, (357,378,0): 76, 34, 36, (357,379,0): 76, 34, 36, (357,380,0): 76, 34, 36, (357,381,0): 76, 34, 36, (357,382,0): 76, 34, 36, (357,383,0): 76, 34, 36, (357,384,0): 79, 39, 39, (357,385,0): 78, 36, 37, (357,386,0): 78, 34, 33, (357,387,0): 81, 35, 35, (357,388,0): 88, 40, 38, (357,389,0): 92, 43, 39, (357,390,0): 94, 43, 40, (357,391,0): 93, 42, 39, (357,392,0): 92, 41, 40, (357,393,0): 89, 39, 38, (357,394,0): 84, 38, 40, (357,395,0): 80, 35, 38, (357,396,0): 74, 33, 37, (357,397,0): 69, 33, 35, (357,398,0): 67, 32, 36, (357,399,0): 65, 33, 36, (357,400,0): 68, 36, 39, (357,401,0): 68, 36, 39, (357,402,0): 69, 37, 40, (357,403,0): 70, 38, 41, (357,404,0): 70, 38, 41, (357,405,0): 69, 37, 40, (357,406,0): 68, 36, 39, (357,407,0): 67, 35, 38, (357,408,0): 67, 35, 38, (357,409,0): 67, 35, 38, (357,410,0): 67, 35, 38, (357,411,0): 67, 35, 38, (357,412,0): 68, 36, 39, (357,413,0): 68, 36, 39, (357,414,0): 68, 36, 39, (357,415,0): 70, 35, 39, (357,416,0): 73, 34, 37, (357,417,0): 75, 33, 35, (357,418,0): 74, 32, 34, (357,419,0): 76, 31, 34, (357,420,0): 78, 32, 35, (357,421,0): 79, 33, 36, (357,422,0): 80, 34, 37, (357,423,0): 83, 34, 38, (357,424,0): 86, 37, 41, (357,425,0): 85, 36, 40, (357,426,0): 81, 35, 38, (357,427,0): 78, 32, 35, (357,428,0): 75, 30, 33, (357,429,0): 74, 29, 32, (357,430,0): 71, 29, 31, (357,431,0): 70, 29, 33, (357,432,0): 69, 33, 37, (357,433,0): 65, 30, 36, (357,434,0): 60, 28, 33, (357,435,0): 58, 27, 32, (357,436,0): 58, 29, 34, (357,437,0): 54, 29, 33, (357,438,0): 49, 27, 30, (357,439,0): 47, 24, 30, (357,440,0): 46, 25, 30, (357,441,0): 46, 25, 30, (357,442,0): 46, 25, 32, (357,443,0): 47, 24, 32, (357,444,0): 47, 24, 32, (357,445,0): 47, 24, 32, (357,446,0): 49, 23, 34, (357,447,0): 49, 23, 34, (357,448,0): 47, 21, 32, (357,449,0): 45, 22, 32, (357,450,0): 46, 23, 33, (357,451,0): 48, 25, 35, (357,452,0): 49, 26, 34, (357,453,0): 49, 28, 35, (357,454,0): 50, 29, 36, (357,455,0): 50, 31, 35, (357,456,0): 51, 30, 35, (357,457,0): 49, 30, 34, (357,458,0): 49, 30, 32, (357,459,0): 48, 32, 33, (357,460,0): 49, 33, 34, (357,461,0): 52, 36, 36, (357,462,0): 55, 39, 39, (357,463,0): 56, 40, 40, (357,464,0): 56, 40, 40, (357,465,0): 58, 42, 42, (357,466,0): 61, 45, 45, (357,467,0): 63, 47, 47, (357,468,0): 65, 49, 49, (357,469,0): 64, 48, 48, (357,470,0): 63, 47, 47, (357,471,0): 62, 46, 46, (357,472,0): 62, 46, 46, (357,473,0): 60, 44, 44, (357,474,0): 57, 41, 41, (357,475,0): 54, 38, 38, (357,476,0): 52, 36, 36, (357,477,0): 50, 34, 34, (357,478,0): 50, 34, 34, (357,479,0): 49, 33, 33, (357,480,0): 57, 38, 40, (357,481,0): 57, 38, 40, (357,482,0): 57, 38, 40, (357,483,0): 56, 37, 39, (357,484,0): 55, 36, 38, (357,485,0): 53, 34, 36, (357,486,0): 50, 32, 32, (357,487,0): 49, 31, 31, (357,488,0): 47, 29, 27, (357,489,0): 49, 31, 29, (357,490,0): 52, 34, 32, (357,491,0): 55, 37, 35, (357,492,0): 57, 39, 35, (357,493,0): 58, 40, 36, (357,494,0): 57, 39, 35, (357,495,0): 57, 39, 37, (357,496,0): 55, 39, 39, (357,497,0): 54, 38, 38, (357,498,0): 53, 37, 37, (357,499,0): 53, 37, 37, (357,500,0): 55, 37, 37, (357,501,0): 56, 38, 38, (357,502,0): 57, 39, 39, (357,503,0): 58, 40, 40, (357,504,0): 60, 40, 41, (357,505,0): 60, 40, 41, (357,506,0): 62, 40, 42, (357,507,0): 62, 40, 42, (357,508,0): 61, 39, 41, (357,509,0): 60, 38, 40, (357,510,0): 61, 36, 39, (357,511,0): 60, 35, 38, (357,512,0): 57, 32, 36, (357,513,0): 56, 31, 35, (357,514,0): 56, 31, 37, (357,515,0): 55, 30, 34, (357,516,0): 54, 29, 35, (357,517,0): 53, 28, 32, (357,518,0): 52, 27, 31, (357,519,0): 51, 26, 29, (357,520,0): 55, 30, 33, (357,521,0): 54, 30, 30, (357,522,0): 54, 30, 30, (357,523,0): 57, 33, 31, (357,524,0): 62, 38, 38, (357,525,0): 65, 41, 39, (357,526,0): 65, 41, 41, (357,527,0): 63, 39, 37, (357,528,0): 58, 37, 34, (357,529,0): 56, 35, 32, (357,530,0): 53, 32, 29, (357,531,0): 50, 29, 26, (357,532,0): 49, 28, 27, (357,533,0): 49, 27, 29, (357,534,0): 51, 29, 32, (357,535,0): 52, 30, 33, (357,536,0): 48, 25, 31, (357,537,0): 47, 24, 30, (357,538,0): 46, 23, 31, (357,539,0): 45, 22, 32, (357,540,0): 44, 20, 33, (357,541,0): 44, 20, 33, (357,542,0): 45, 21, 34, (357,543,0): 46, 23, 33, (357,544,0): 44, 23, 30, (357,545,0): 43, 22, 29, (357,546,0): 43, 22, 29, (357,547,0): 43, 22, 29, (357,548,0): 44, 23, 28, (357,549,0): 46, 25, 30, (357,550,0): 48, 27, 32, (357,551,0): 49, 28, 33, (357,552,0): 53, 33, 35, (357,553,0): 53, 33, 35, (357,554,0): 53, 33, 34, (357,555,0): 52, 32, 33, (357,556,0): 52, 32, 33, (357,557,0): 51, 31, 32, (357,558,0): 51, 31, 30, (357,559,0): 50, 32, 30, (357,560,0): 46, 30, 30, (357,561,0): 44, 30, 30, (357,562,0): 43, 29, 29, (357,563,0): 41, 27, 27, (357,564,0): 41, 27, 27, (357,565,0): 41, 27, 27, (357,566,0): 41, 27, 27, (357,567,0): 42, 28, 28, (357,568,0): 38, 24, 24, (357,569,0): 37, 23, 23, (357,570,0): 38, 24, 24, (357,571,0): 38, 24, 24, (357,572,0): 40, 26, 26, (357,573,0): 41, 29, 29, (357,574,0): 45, 31, 31, (357,575,0): 44, 32, 32, (357,576,0): 45, 33, 33, (357,577,0): 45, 35, 34, (357,578,0): 43, 38, 35, (357,579,0): 43, 42, 38, (357,580,0): 45, 47, 42, (357,581,0): 47, 52, 46, (357,582,0): 50, 55, 49, (357,583,0): 54, 56, 51, (357,584,0): 55, 56, 51, (357,585,0): 59, 55, 52, (357,586,0): 60, 55, 52, (357,587,0): 63, 55, 53, (357,588,0): 62, 57, 54, (357,589,0): 62, 58, 55, (357,590,0): 63, 59, 56, (357,591,0): 61, 60, 58, (357,592,0): 63, 63, 65, (357,593,0): 62, 61, 66, (357,594,0): 61, 59, 64, (357,595,0): 61, 56, 62, (357,596,0): 60, 53, 60, (357,597,0): 58, 51, 58, (357,598,0): 58, 48, 56, (357,599,0): 57, 47, 55, (358,0,0): 74, 55, 49, (358,1,0): 74, 55, 49, (358,2,0): 76, 57, 50, (358,3,0): 78, 59, 52, (358,4,0): 80, 62, 52, (358,5,0): 82, 64, 54, (358,6,0): 84, 66, 54, (358,7,0): 85, 67, 53, (358,8,0): 84, 66, 52, (358,9,0): 83, 66, 50, (358,10,0): 82, 65, 47, (358,11,0): 82, 65, 47, (358,12,0): 84, 67, 47, (358,13,0): 87, 70, 50, (358,14,0): 91, 75, 52, (358,15,0): 94, 76, 54, (358,16,0): 95, 75, 51, (358,17,0): 96, 74, 51, (358,18,0): 96, 74, 53, (358,19,0): 96, 74, 53, (358,20,0): 96, 74, 53, (358,21,0): 96, 74, 53, (358,22,0): 96, 73, 55, (358,23,0): 96, 73, 55, (358,24,0): 95, 72, 56, (358,25,0): 94, 71, 55, (358,26,0): 92, 69, 53, (358,27,0): 90, 67, 51, (358,28,0): 89, 66, 52, (358,29,0): 88, 65, 51, (358,30,0): 89, 66, 52, (358,31,0): 88, 66, 53, (358,32,0): 86, 64, 53, (358,33,0): 84, 64, 53, (358,34,0): 84, 64, 53, (358,35,0): 83, 63, 52, (358,36,0): 83, 63, 52, (358,37,0): 82, 62, 51, (358,38,0): 82, 62, 51, (358,39,0): 82, 62, 51, (358,40,0): 79, 59, 48, (358,41,0): 78, 58, 47, (358,42,0): 76, 56, 45, (358,43,0): 75, 55, 44, (358,44,0): 75, 55, 44, (358,45,0): 76, 56, 45, (358,46,0): 77, 57, 46, (358,47,0): 78, 58, 47, (358,48,0): 76, 56, 47, (358,49,0): 74, 56, 46, (358,50,0): 73, 53, 44, (358,51,0): 70, 52, 42, (358,52,0): 70, 50, 41, (358,53,0): 69, 51, 41, (358,54,0): 71, 51, 42, (358,55,0): 71, 53, 43, (358,56,0): 71, 51, 42, (358,57,0): 69, 51, 41, (358,58,0): 70, 50, 41, (358,59,0): 70, 52, 42, (358,60,0): 73, 53, 44, (358,61,0): 75, 57, 47, (358,62,0): 79, 59, 50, (358,63,0): 81, 61, 50, (358,64,0): 89, 67, 53, (358,65,0): 91, 70, 53, (358,66,0): 93, 72, 55, (358,67,0): 97, 74, 56, (358,68,0): 99, 76, 58, (358,69,0): 102, 77, 57, (358,70,0): 103, 76, 55, (358,71,0): 104, 76, 54, (358,72,0): 102, 74, 52, (358,73,0): 104, 74, 50, (358,74,0): 105, 73, 48, (358,75,0): 106, 75, 47, (358,76,0): 110, 76, 49, (358,77,0): 112, 78, 51, (358,78,0): 115, 81, 54, (358,79,0): 117, 81, 55, (358,80,0): 117, 79, 56, (358,81,0): 115, 77, 54, (358,82,0): 113, 75, 52, (358,83,0): 113, 77, 53, (358,84,0): 115, 79, 53, (358,85,0): 116, 80, 54, (358,86,0): 113, 78, 50, (358,87,0): 109, 75, 47, (358,88,0): 108, 77, 48, (358,89,0): 111, 80, 51, (358,90,0): 113, 84, 52, (358,91,0): 115, 86, 54, (358,92,0): 115, 89, 54, (358,93,0): 120, 94, 59, (358,94,0): 127, 101, 66, (358,95,0): 131, 107, 71, (358,96,0): 136, 112, 74, (358,97,0): 138, 116, 75, (358,98,0): 142, 120, 79, (358,99,0): 142, 123, 80, (358,100,0): 145, 128, 82, (358,101,0): 151, 137, 88, (358,102,0): 161, 149, 97, (358,103,0): 167, 160, 105, (358,104,0): 175, 170, 112, (358,105,0): 172, 172, 110, (358,106,0): 172, 174, 109, (358,107,0): 171, 176, 109, (358,108,0): 170, 177, 109, (358,109,0): 169, 179, 110, (358,110,0): 170, 180, 111, (358,111,0): 169, 180, 112, (358,112,0): 166, 178, 112, (358,113,0): 167, 179, 113, (358,114,0): 168, 180, 116, (358,115,0): 167, 182, 117, (358,116,0): 169, 183, 121, (358,117,0): 170, 184, 122, (358,118,0): 170, 186, 124, (358,119,0): 170, 186, 124, (358,120,0): 169, 187, 127, (358,121,0): 169, 189, 128, (358,122,0): 171, 191, 132, (358,123,0): 171, 192, 133, (358,124,0): 171, 192, 135, (358,125,0): 169, 193, 135, (358,126,0): 168, 192, 134, (358,127,0): 167, 190, 134, (358,128,0): 167, 192, 135, (358,129,0): 165, 192, 137, (358,130,0): 164, 191, 136, (358,131,0): 163, 192, 138, (358,132,0): 162, 191, 137, (358,133,0): 161, 191, 139, (358,134,0): 160, 190, 138, (358,135,0): 158, 190, 140, (358,136,0): 159, 193, 143, (358,137,0): 157, 193, 145, (358,138,0): 157, 193, 145, (358,139,0): 156, 194, 147, (358,140,0): 156, 194, 147, (358,141,0): 154, 193, 148, (358,142,0): 154, 193, 148, (358,143,0): 153, 192, 147, (358,144,0): 159, 194, 152, (358,145,0): 160, 195, 153, (358,146,0): 160, 195, 153, (358,147,0): 161, 196, 156, (358,148,0): 160, 197, 156, (358,149,0): 161, 197, 159, (358,150,0): 160, 198, 159, (358,151,0): 158, 198, 161, (358,152,0): 155, 197, 161, (358,153,0): 157, 198, 164, (358,154,0): 157, 201, 166, (358,155,0): 158, 203, 170, (358,156,0): 160, 205, 172, (358,157,0): 160, 207, 175, (358,158,0): 160, 207, 175, (358,159,0): 157, 206, 176, (358,160,0): 160, 210, 183, (358,161,0): 159, 212, 186, (358,162,0): 159, 211, 188, (358,163,0): 159, 211, 188, (358,164,0): 159, 213, 190, (358,165,0): 159, 213, 190, (358,166,0): 159, 214, 193, (358,167,0): 159, 214, 195, (358,168,0): 156, 210, 194, (358,169,0): 157, 211, 195, (358,170,0): 156, 213, 198, (358,171,0): 157, 214, 199, (358,172,0): 157, 215, 201, (358,173,0): 156, 214, 200, (358,174,0): 155, 213, 201, (358,175,0): 155, 213, 201, (358,176,0): 155, 211, 200, (358,177,0): 155, 211, 200, (358,178,0): 155, 211, 200, (358,179,0): 154, 210, 199, (358,180,0): 154, 210, 201, (358,181,0): 153, 209, 200, (358,182,0): 153, 208, 202, (358,183,0): 153, 208, 202, (358,184,0): 153, 208, 202, (358,185,0): 153, 208, 202, (358,186,0): 153, 208, 203, (358,187,0): 153, 208, 203, (358,188,0): 153, 208, 205, (358,189,0): 153, 208, 205, (358,190,0): 153, 208, 205, (358,191,0): 153, 208, 205, (358,192,0): 150, 206, 205, (358,193,0): 150, 206, 205, (358,194,0): 151, 205, 205, (358,195,0): 152, 206, 206, (358,196,0): 152, 206, 206, (358,197,0): 153, 207, 207, (358,198,0): 155, 206, 207, (358,199,0): 156, 207, 208, (358,200,0): 154, 204, 205, (358,201,0): 154, 204, 205, (358,202,0): 154, 204, 205, (358,203,0): 154, 204, 205, (358,204,0): 155, 203, 205, (358,205,0): 154, 202, 204, (358,206,0): 154, 202, 204, (358,207,0): 154, 202, 202, (358,208,0): 151, 200, 197, (358,209,0): 151, 200, 197, (358,210,0): 151, 200, 197, (358,211,0): 152, 201, 198, (358,212,0): 152, 201, 198, (358,213,0): 152, 201, 198, (358,214,0): 152, 200, 200, (358,215,0): 152, 200, 200, (358,216,0): 157, 205, 207, (358,217,0): 157, 205, 207, (358,218,0): 157, 205, 209, (358,219,0): 157, 205, 209, (358,220,0): 157, 205, 209, (358,221,0): 157, 205, 209, (358,222,0): 157, 205, 209, (358,223,0): 157, 205, 209, (358,224,0): 156, 205, 210, (358,225,0): 154, 205, 209, (358,226,0): 154, 203, 210, (358,227,0): 151, 201, 208, (358,228,0): 151, 201, 210, (358,229,0): 149, 202, 210, (358,230,0): 151, 201, 212, (358,231,0): 150, 202, 215, (358,232,0): 154, 206, 220, (358,233,0): 153, 206, 220, (358,234,0): 154, 207, 223, (358,235,0): 153, 209, 224, (358,236,0): 155, 208, 226, (358,237,0): 154, 210, 227, (358,238,0): 155, 210, 230, (358,239,0): 155, 210, 230, (358,240,0): 155, 210, 230, (358,241,0): 157, 209, 231, (358,242,0): 157, 209, 231, (358,243,0): 157, 209, 231, (358,244,0): 157, 209, 233, (358,245,0): 157, 209, 233, (358,246,0): 157, 208, 235, (358,247,0): 157, 208, 235, (358,248,0): 154, 205, 234, (358,249,0): 155, 206, 235, (358,250,0): 156, 207, 238, (358,251,0): 157, 208, 239, (358,252,0): 158, 208, 241, (358,253,0): 160, 210, 243, (358,254,0): 161, 211, 244, (358,255,0): 161, 211, 244, (358,256,0): 161, 210, 242, (358,257,0): 163, 212, 244, (358,258,0): 165, 214, 246, (358,259,0): 167, 216, 248, (358,260,0): 168, 219, 250, (358,261,0): 169, 219, 252, (358,262,0): 169, 219, 252, (358,263,0): 169, 219, 254, (358,264,0): 165, 217, 254, (358,265,0): 165, 217, 254, (358,266,0): 164, 218, 255, (358,267,0): 164, 218, 255, (358,268,0): 164, 217, 255, (358,269,0): 165, 218, 255, (358,270,0): 164, 219, 255, (358,271,0): 165, 218, 255, (358,272,0): 165, 216, 255, (358,273,0): 164, 215, 255, (358,274,0): 163, 214, 255, (358,275,0): 161, 212, 255, (358,276,0): 160, 211, 255, (358,277,0): 158, 209, 254, (358,278,0): 157, 208, 255, (358,279,0): 156, 207, 254, (358,280,0): 153, 204, 251, (358,281,0): 152, 203, 250, (358,282,0): 151, 202, 249, (358,283,0): 150, 201, 248, (358,284,0): 149, 200, 247, (358,285,0): 149, 200, 247, (358,286,0): 149, 199, 248, (358,287,0): 149, 199, 248, (358,288,0): 147, 198, 245, (358,289,0): 149, 197, 245, (358,290,0): 149, 197, 245, (358,291,0): 149, 197, 245, (358,292,0): 149, 197, 246, (358,293,0): 149, 197, 246, (358,294,0): 150, 196, 246, (358,295,0): 150, 196, 246, (358,296,0): 156, 199, 250, (358,297,0): 157, 200, 251, (358,298,0): 157, 200, 253, (358,299,0): 160, 201, 255, (358,300,0): 161, 202, 255, (358,301,0): 162, 203, 255, (358,302,0): 162, 203, 255, (358,303,0): 163, 204, 255, (358,304,0): 159, 199, 255, (358,305,0): 158, 199, 255, (358,306,0): 157, 196, 251, (358,307,0): 157, 196, 251, (358,308,0): 160, 197, 250, (358,309,0): 164, 199, 253, (358,310,0): 169, 201, 255, (358,311,0): 173, 202, 255, (358,312,0): 184, 206, 255, (358,313,0): 184, 200, 255, (358,314,0): 187, 193, 251, (358,315,0): 188, 188, 242, (358,316,0): 184, 176, 225, (358,317,0): 170, 155, 198, (358,318,0): 148, 126, 165, (358,319,0): 131, 106, 136, (358,320,0): 106, 79, 98, (358,321,0): 98, 72, 83, (358,322,0): 90, 62, 74, (358,323,0): 86, 56, 66, (358,324,0): 86, 55, 63, (358,325,0): 84, 53, 59, (358,326,0): 79, 47, 52, (358,327,0): 74, 42, 45, (358,328,0): 75, 43, 46, (358,329,0): 71, 39, 42, (358,330,0): 67, 35, 40, (358,331,0): 64, 33, 38, (358,332,0): 63, 34, 39, (358,333,0): 61, 34, 41, (358,334,0): 58, 31, 40, (358,335,0): 54, 28, 37, (358,336,0): 55, 30, 36, (358,337,0): 55, 30, 36, (358,338,0): 53, 30, 36, (358,339,0): 52, 31, 38, (358,340,0): 53, 32, 41, (358,341,0): 52, 32, 41, (358,342,0): 52, 32, 41, (358,343,0): 52, 32, 41, (358,344,0): 55, 35, 44, (358,345,0): 55, 36, 42, (358,346,0): 55, 34, 39, (358,347,0): 56, 34, 37, (358,348,0): 60, 35, 38, (358,349,0): 62, 36, 37, (358,350,0): 64, 38, 37, (358,351,0): 68, 39, 35, (358,352,0): 75, 38, 30, (358,353,0): 83, 40, 31, (358,354,0): 92, 43, 36, (358,355,0): 100, 47, 43, (358,356,0): 105, 47, 45, (358,357,0): 106, 46, 45, (358,358,0): 104, 44, 44, (358,359,0): 100, 44, 43, (358,360,0): 93, 39, 39, (358,361,0): 88, 38, 39, (358,362,0): 82, 36, 38, (358,363,0): 78, 33, 36, (358,364,0): 75, 33, 37, (358,365,0): 76, 33, 40, (358,366,0): 79, 33, 43, (358,367,0): 81, 35, 45, (358,368,0): 78, 36, 40, (358,369,0): 77, 35, 37, (358,370,0): 77, 35, 37, (358,371,0): 77, 35, 37, (358,372,0): 76, 34, 36, (358,373,0): 76, 34, 36, (358,374,0): 75, 33, 35, (358,375,0): 75, 33, 35, (358,376,0): 76, 34, 36, (358,377,0): 76, 34, 36, (358,378,0): 76, 34, 36, (358,379,0): 76, 34, 36, (358,380,0): 76, 34, 36, (358,381,0): 76, 34, 36, (358,382,0): 76, 34, 36, (358,383,0): 76, 34, 36, (358,384,0): 80, 38, 39, (358,385,0): 78, 36, 37, (358,386,0): 78, 34, 33, (358,387,0): 80, 34, 34, (358,388,0): 86, 38, 36, (358,389,0): 89, 39, 38, (358,390,0): 90, 40, 39, (358,391,0): 89, 39, 38, (358,392,0): 86, 36, 35, (358,393,0): 85, 37, 35, (358,394,0): 83, 37, 39, (358,395,0): 78, 36, 38, (358,396,0): 76, 35, 39, (358,397,0): 70, 34, 38, (358,398,0): 67, 32, 38, (358,399,0): 66, 31, 37, (358,400,0): 68, 33, 37, (358,401,0): 69, 34, 38, (358,402,0): 70, 35, 39, (358,403,0): 71, 36, 40, (358,404,0): 72, 37, 41, (358,405,0): 71, 36, 40, (358,406,0): 70, 35, 39, (358,407,0): 69, 34, 38, (358,408,0): 70, 35, 39, (358,409,0): 70, 35, 39, (358,410,0): 70, 35, 39, (358,411,0): 70, 35, 39, (358,412,0): 69, 34, 38, (358,413,0): 69, 34, 38, (358,414,0): 69, 34, 38, (358,415,0): 69, 34, 38, (358,416,0): 72, 33, 36, (358,417,0): 72, 31, 35, (358,418,0): 71, 30, 34, (358,419,0): 71, 29, 33, (358,420,0): 72, 30, 34, (358,421,0): 75, 30, 35, (358,422,0): 77, 32, 37, (358,423,0): 79, 32, 38, (358,424,0): 80, 33, 39, (358,425,0): 80, 33, 39, (358,426,0): 82, 33, 39, (358,427,0): 81, 32, 38, (358,428,0): 78, 31, 37, (358,429,0): 76, 29, 35, (358,430,0): 74, 27, 33, (358,431,0): 70, 28, 32, (358,432,0): 67, 27, 35, (358,433,0): 62, 27, 34, (358,434,0): 57, 24, 31, (358,435,0): 55, 26, 31, (358,436,0): 54, 27, 34, (358,437,0): 53, 28, 34, (358,438,0): 48, 25, 31, (358,439,0): 44, 23, 30, (358,440,0): 45, 26, 32, (358,441,0): 45, 26, 32, (358,442,0): 45, 25, 34, (358,443,0): 46, 25, 34, (358,444,0): 46, 25, 34, (358,445,0): 46, 25, 34, (358,446,0): 47, 23, 36, (358,447,0): 46, 24, 36, (358,448,0): 44, 22, 34, (358,449,0): 45, 23, 35, (358,450,0): 45, 24, 33, (358,451,0): 45, 25, 34, (358,452,0): 46, 26, 35, (358,453,0): 47, 28, 34, (358,454,0): 48, 29, 35, (358,455,0): 46, 29, 35, (358,456,0): 51, 32, 36, (358,457,0): 47, 31, 34, (358,458,0): 45, 29, 32, (358,459,0): 45, 29, 30, (358,460,0): 46, 30, 31, (358,461,0): 48, 34, 34, (358,462,0): 52, 38, 38, (358,463,0): 55, 41, 41, (358,464,0): 54, 38, 38, (358,465,0): 56, 40, 40, (358,466,0): 59, 43, 43, (358,467,0): 62, 46, 46, (358,468,0): 63, 47, 47, (358,469,0): 62, 46, 46, (358,470,0): 61, 45, 45, (358,471,0): 60, 44, 44, (358,472,0): 62, 46, 46, (358,473,0): 60, 44, 44, (358,474,0): 58, 42, 42, (358,475,0): 55, 39, 39, (358,476,0): 53, 37, 37, (358,477,0): 52, 36, 36, (358,478,0): 52, 36, 36, (358,479,0): 52, 36, 36, (358,480,0): 57, 39, 39, (358,481,0): 58, 40, 40, (358,482,0): 58, 40, 40, (358,483,0): 59, 41, 41, (358,484,0): 58, 40, 40, (358,485,0): 56, 38, 38, (358,486,0): 54, 36, 36, (358,487,0): 53, 35, 35, (358,488,0): 49, 31, 31, (358,489,0): 50, 32, 32, (358,490,0): 51, 33, 31, (358,491,0): 53, 35, 33, (358,492,0): 54, 36, 34, (358,493,0): 55, 37, 35, (358,494,0): 56, 38, 36, (358,495,0): 57, 39, 37, (358,496,0): 53, 37, 37, (358,497,0): 52, 36, 36, (358,498,0): 51, 35, 35, (358,499,0): 50, 34, 34, (358,500,0): 52, 34, 34, (358,501,0): 53, 35, 35, (358,502,0): 53, 35, 35, (358,503,0): 54, 36, 36, (358,504,0): 58, 38, 39, (358,505,0): 59, 39, 40, (358,506,0): 60, 38, 40, (358,507,0): 61, 39, 41, (358,508,0): 60, 38, 40, (358,509,0): 59, 37, 39, (358,510,0): 59, 34, 37, (358,511,0): 58, 33, 37, (358,512,0): 55, 30, 36, (358,513,0): 55, 30, 36, (358,514,0): 54, 28, 37, (358,515,0): 53, 28, 34, (358,516,0): 51, 25, 34, (358,517,0): 50, 25, 31, (358,518,0): 49, 24, 30, (358,519,0): 49, 24, 28, (358,520,0): 55, 30, 34, (358,521,0): 53, 28, 31, (358,522,0): 53, 28, 31, (358,523,0): 55, 31, 31, (358,524,0): 60, 35, 38, (358,525,0): 63, 39, 39, (358,526,0): 63, 38, 41, (358,527,0): 62, 38, 38, (358,528,0): 60, 39, 38, (358,529,0): 57, 37, 36, (358,530,0): 53, 33, 32, (358,531,0): 50, 30, 29, (358,532,0): 48, 28, 29, (358,533,0): 48, 28, 29, (358,534,0): 49, 29, 31, (358,535,0): 50, 30, 32, (358,536,0): 48, 27, 32, (358,537,0): 47, 26, 31, (358,538,0): 46, 25, 32, (358,539,0): 44, 23, 30, (358,540,0): 44, 23, 32, (358,541,0): 44, 23, 32, (358,542,0): 45, 24, 33, (358,543,0): 45, 24, 33, (358,544,0): 43, 22, 29, (358,545,0): 43, 22, 29, (358,546,0): 43, 22, 29, (358,547,0): 43, 22, 29, (358,548,0): 44, 23, 28, (358,549,0): 46, 25, 30, (358,550,0): 48, 27, 32, (358,551,0): 49, 28, 33, (358,552,0): 51, 31, 33, (358,553,0): 51, 31, 33, (358,554,0): 51, 31, 32, (358,555,0): 52, 32, 33, (358,556,0): 52, 32, 33, (358,557,0): 53, 33, 34, (358,558,0): 53, 33, 32, (358,559,0): 52, 34, 32, (358,560,0): 47, 31, 31, (358,561,0): 46, 30, 30, (358,562,0): 45, 29, 29, (358,563,0): 43, 27, 27, (358,564,0): 42, 28, 28, (358,565,0): 42, 28, 28, (358,566,0): 44, 30, 30, (358,567,0): 44, 30, 30, (358,568,0): 39, 27, 29, (358,569,0): 38, 26, 28, (358,570,0): 37, 25, 27, (358,571,0): 37, 25, 27, (358,572,0): 37, 25, 27, (358,573,0): 38, 28, 29, (358,574,0): 40, 28, 30, (358,575,0): 41, 29, 31, (358,576,0): 45, 33, 33, (358,577,0): 44, 34, 33, (358,578,0): 43, 38, 35, (358,579,0): 43, 42, 38, (358,580,0): 46, 48, 43, (358,581,0): 49, 54, 48, (358,582,0): 53, 58, 52, (358,583,0): 58, 60, 55, (358,584,0): 59, 60, 55, (358,585,0): 62, 58, 55, (358,586,0): 63, 58, 55, (358,587,0): 65, 57, 55, (358,588,0): 63, 58, 55, (358,589,0): 62, 58, 55, (358,590,0): 62, 58, 55, (358,591,0): 60, 59, 57, (358,592,0): 63, 61, 64, (358,593,0): 63, 61, 66, (358,594,0): 63, 58, 64, (358,595,0): 61, 56, 62, (358,596,0): 60, 53, 60, (358,597,0): 60, 50, 58, (358,598,0): 60, 49, 57, (358,599,0): 59, 48, 56, (359,0,0): 72, 53, 47, (359,1,0): 73, 54, 48, (359,2,0): 75, 56, 49, (359,3,0): 77, 58, 51, (359,4,0): 79, 61, 51, (359,5,0): 81, 63, 53, (359,6,0): 83, 65, 53, (359,7,0): 83, 65, 51, (359,8,0): 84, 66, 52, (359,9,0): 82, 65, 49, (359,10,0): 81, 64, 46, (359,11,0): 81, 64, 46, (359,12,0): 83, 66, 46, (359,13,0): 87, 70, 50, (359,14,0): 91, 75, 52, (359,15,0): 95, 77, 55, (359,16,0): 96, 76, 52, (359,17,0): 97, 75, 52, (359,18,0): 98, 76, 55, (359,19,0): 98, 76, 55, (359,20,0): 98, 76, 55, (359,21,0): 99, 77, 56, (359,22,0): 99, 76, 58, (359,23,0): 99, 76, 58, (359,24,0): 97, 74, 58, (359,25,0): 95, 72, 56, (359,26,0): 93, 70, 54, (359,27,0): 91, 68, 52, (359,28,0): 90, 67, 53, (359,29,0): 89, 66, 52, (359,30,0): 89, 66, 52, (359,31,0): 88, 66, 52, (359,32,0): 86, 64, 51, (359,33,0): 84, 64, 53, (359,34,0): 83, 63, 52, (359,35,0): 83, 63, 52, (359,36,0): 83, 63, 52, (359,37,0): 83, 63, 52, (359,38,0): 82, 62, 51, (359,39,0): 82, 62, 51, (359,40,0): 80, 60, 49, (359,41,0): 79, 59, 48, (359,42,0): 77, 57, 46, (359,43,0): 75, 55, 44, (359,44,0): 75, 55, 44, (359,45,0): 76, 56, 45, (359,46,0): 77, 57, 46, (359,47,0): 78, 58, 47, (359,48,0): 76, 58, 48, (359,49,0): 74, 56, 46, (359,50,0): 72, 54, 44, (359,51,0): 69, 51, 41, (359,52,0): 68, 50, 40, (359,53,0): 68, 50, 40, (359,54,0): 68, 50, 40, (359,55,0): 69, 51, 41, (359,56,0): 69, 51, 41, (359,57,0): 68, 50, 40, (359,58,0): 66, 48, 38, (359,59,0): 65, 47, 37, (359,60,0): 66, 48, 38, (359,61,0): 68, 50, 40, (359,62,0): 70, 52, 42, (359,63,0): 71, 53, 41, (359,64,0): 83, 64, 49, (359,65,0): 88, 67, 50, (359,66,0): 91, 70, 53, (359,67,0): 94, 73, 56, (359,68,0): 98, 75, 59, (359,69,0): 99, 76, 58, (359,70,0): 101, 76, 56, (359,71,0): 102, 75, 54, (359,72,0): 103, 76, 55, (359,73,0): 103, 75, 53, (359,74,0): 104, 74, 50, (359,75,0): 105, 73, 48, (359,76,0): 105, 73, 48, (359,77,0): 108, 74, 47, (359,78,0): 110, 76, 49, (359,79,0): 111, 77, 52, (359,80,0): 114, 78, 56, (359,81,0): 112, 75, 56, (359,82,0): 110, 73, 54, (359,83,0): 111, 75, 53, (359,84,0): 113, 77, 55, (359,85,0): 112, 77, 55, (359,86,0): 109, 75, 50, (359,87,0): 104, 72, 47, (359,88,0): 108, 76, 51, (359,89,0): 109, 78, 50, (359,90,0): 110, 80, 52, (359,91,0): 110, 80, 52, (359,92,0): 109, 82, 52, (359,93,0): 113, 86, 56, (359,94,0): 120, 93, 63, (359,95,0): 124, 100, 66, (359,96,0): 132, 110, 73, (359,97,0): 131, 112, 72, (359,98,0): 133, 114, 74, (359,99,0): 136, 119, 76, (359,100,0): 140, 126, 81, (359,101,0): 148, 136, 88, (359,102,0): 159, 147, 97, (359,103,0): 164, 157, 103, (359,104,0): 174, 169, 113, (359,105,0): 173, 171, 112, (359,106,0): 172, 172, 110, (359,107,0): 172, 174, 109, (359,108,0): 172, 177, 111, (359,109,0): 172, 179, 111, (359,110,0): 172, 179, 111, (359,111,0): 171, 181, 112, (359,112,0): 166, 177, 109, (359,113,0): 166, 178, 112, (359,114,0): 168, 180, 116, (359,115,0): 169, 181, 117, (359,116,0): 171, 183, 121, (359,117,0): 171, 185, 123, (359,118,0): 172, 186, 125, (359,119,0): 172, 188, 126, (359,120,0): 170, 188, 128, (359,121,0): 169, 189, 128, (359,122,0): 170, 191, 132, (359,123,0): 171, 192, 133, (359,124,0): 169, 193, 135, (359,125,0): 168, 192, 134, (359,126,0): 167, 190, 134, (359,127,0): 166, 191, 136, (359,128,0): 165, 192, 137, (359,129,0): 163, 192, 138, (359,130,0): 163, 192, 138, (359,131,0): 161, 191, 139, (359,132,0): 161, 191, 139, (359,133,0): 158, 190, 140, (359,134,0): 158, 190, 140, (359,135,0): 157, 191, 141, (359,136,0): 156, 192, 144, (359,137,0): 156, 194, 147, (359,138,0): 157, 195, 148, (359,139,0): 157, 196, 151, (359,140,0): 158, 197, 152, (359,141,0): 155, 196, 152, (359,142,0): 154, 195, 151, (359,143,0): 156, 194, 153, (359,144,0): 156, 193, 152, (359,145,0): 157, 192, 152, (359,146,0): 157, 192, 152, (359,147,0): 156, 192, 154, (359,148,0): 156, 192, 154, (359,149,0): 155, 193, 156, (359,150,0): 154, 194, 157, (359,151,0): 154, 194, 159, (359,152,0): 155, 196, 162, (359,153,0): 154, 198, 165, (359,154,0): 155, 200, 167, (359,155,0): 158, 203, 172, (359,156,0): 158, 204, 175, (359,157,0): 159, 205, 176, (359,158,0): 159, 205, 176, (359,159,0): 157, 206, 177, (359,160,0): 160, 209, 187, (359,161,0): 159, 211, 189, (359,162,0): 159, 211, 189, (359,163,0): 160, 211, 192, (359,164,0): 159, 212, 192, (359,165,0): 160, 213, 195, (359,166,0): 159, 214, 195, (359,167,0): 159, 213, 197, (359,168,0): 155, 209, 195, (359,169,0): 156, 210, 197, (359,170,0): 155, 211, 198, (359,171,0): 156, 212, 201, (359,172,0): 155, 213, 201, (359,173,0): 155, 212, 203, (359,174,0): 154, 211, 202, (359,175,0): 153, 210, 203, (359,176,0): 155, 210, 204, (359,177,0): 155, 210, 204, (359,178,0): 154, 209, 203, (359,179,0): 154, 209, 203, (359,180,0): 153, 208, 203, (359,181,0): 153, 208, 203, (359,182,0): 152, 207, 204, (359,183,0): 152, 207, 204, (359,184,0): 153, 208, 205, (359,185,0): 153, 208, 205, (359,186,0): 153, 207, 207, (359,187,0): 153, 207, 207, (359,188,0): 153, 207, 209, (359,189,0): 153, 207, 209, (359,190,0): 153, 207, 209, (359,191,0): 153, 207, 209, (359,192,0): 149, 204, 207, (359,193,0): 150, 205, 208, (359,194,0): 151, 204, 208, (359,195,0): 152, 205, 209, (359,196,0): 152, 205, 209, (359,197,0): 153, 206, 210, (359,198,0): 155, 206, 210, (359,199,0): 155, 206, 210, (359,200,0): 152, 201, 206, (359,201,0): 152, 201, 206, (359,202,0): 152, 201, 206, (359,203,0): 152, 201, 206, (359,204,0): 153, 200, 206, (359,205,0): 154, 201, 207, (359,206,0): 154, 201, 207, (359,207,0): 154, 202, 206, (359,208,0): 150, 198, 200, (359,209,0): 151, 199, 201, (359,210,0): 151, 199, 201, (359,211,0): 151, 199, 201, (359,212,0): 151, 199, 201, (359,213,0): 152, 200, 202, (359,214,0): 152, 200, 204, (359,215,0): 152, 200, 204, (359,216,0): 157, 204, 210, (359,217,0): 157, 204, 210, (359,218,0): 157, 204, 212, (359,219,0): 157, 204, 212, (359,220,0): 157, 204, 212, (359,221,0): 157, 204, 212, (359,222,0): 157, 204, 212, (359,223,0): 156, 205, 212, (359,224,0): 156, 206, 215, (359,225,0): 155, 205, 214, (359,226,0): 153, 203, 214, (359,227,0): 151, 201, 212, (359,228,0): 148, 200, 213, (359,229,0): 148, 200, 213, (359,230,0): 149, 201, 215, (359,231,0): 148, 201, 215, (359,232,0): 153, 206, 224, (359,233,0): 151, 207, 224, (359,234,0): 152, 207, 227, (359,235,0): 153, 208, 228, (359,236,0): 153, 208, 229, (359,237,0): 154, 209, 230, (359,238,0): 154, 210, 233, (359,239,0): 154, 210, 233, (359,240,0): 156, 210, 236, (359,241,0): 156, 210, 236, (359,242,0): 156, 210, 236, (359,243,0): 156, 210, 236, (359,244,0): 156, 210, 238, (359,245,0): 156, 210, 238, (359,246,0): 156, 209, 240, (359,247,0): 156, 209, 240, (359,248,0): 151, 204, 236, (359,249,0): 152, 205, 237, (359,250,0): 153, 206, 238, (359,251,0): 155, 208, 242, (359,252,0): 157, 210, 244, (359,253,0): 159, 212, 246, (359,254,0): 160, 213, 247, (359,255,0): 161, 214, 248, (359,256,0): 160, 210, 243, (359,257,0): 162, 211, 244, (359,258,0): 165, 214, 247, (359,259,0): 166, 216, 251, (359,260,0): 168, 218, 253, (359,261,0): 168, 218, 253, (359,262,0): 168, 218, 253, (359,263,0): 166, 218, 255, (359,264,0): 164, 216, 253, (359,265,0): 163, 217, 255, (359,266,0): 164, 218, 255, (359,267,0): 164, 218, 255, (359,268,0): 164, 217, 255, (359,269,0): 163, 218, 255, (359,270,0): 164, 219, 255, (359,271,0): 164, 219, 255, (359,272,0): 165, 218, 255, (359,273,0): 166, 217, 255, (359,274,0): 165, 216, 255, (359,275,0): 163, 214, 255, (359,276,0): 161, 212, 255, (359,277,0): 160, 211, 255, (359,278,0): 159, 210, 255, (359,279,0): 158, 209, 255, (359,280,0): 154, 204, 253, (359,281,0): 152, 202, 251, (359,282,0): 149, 199, 248, (359,283,0): 147, 197, 248, (359,284,0): 146, 196, 247, (359,285,0): 148, 198, 249, (359,286,0): 151, 201, 252, (359,287,0): 153, 203, 254, (359,288,0): 148, 198, 249, (359,289,0): 148, 198, 249, (359,290,0): 148, 198, 249, (359,291,0): 150, 197, 249, (359,292,0): 150, 197, 249, (359,293,0): 150, 197, 249, (359,294,0): 150, 197, 251, (359,295,0): 151, 197, 249, (359,296,0): 156, 202, 254, (359,297,0): 158, 201, 254, (359,298,0): 159, 202, 255, (359,299,0): 160, 203, 255, (359,300,0): 161, 204, 255, (359,301,0): 163, 204, 255, (359,302,0): 164, 205, 255, (359,303,0): 164, 204, 255, (359,304,0): 160, 200, 255, (359,305,0): 160, 199, 255, (359,306,0): 158, 197, 254, (359,307,0): 157, 196, 251, (359,308,0): 161, 198, 251, (359,309,0): 164, 201, 254, (359,310,0): 171, 203, 255, (359,311,0): 175, 204, 255, (359,312,0): 185, 207, 255, (359,313,0): 185, 200, 255, (359,314,0): 187, 192, 250, (359,315,0): 189, 186, 239, (359,316,0): 185, 173, 221, (359,317,0): 164, 147, 189, (359,318,0): 135, 110, 149, (359,319,0): 112, 86, 115, (359,320,0): 92, 68, 84, (359,321,0): 87, 61, 70, (359,322,0): 81, 55, 64, (359,323,0): 80, 53, 60, (359,324,0): 83, 54, 59, (359,325,0): 82, 51, 56, (359,326,0): 77, 47, 49, (359,327,0): 71, 41, 43, (359,328,0): 74, 42, 45, (359,329,0): 70, 40, 42, (359,330,0): 66, 35, 40, (359,331,0): 64, 35, 40, (359,332,0): 62, 35, 42, (359,333,0): 60, 35, 41, (359,334,0): 57, 31, 40, (359,335,0): 55, 29, 38, (359,336,0): 56, 31, 37, (359,337,0): 54, 31, 37, (359,338,0): 54, 31, 37, (359,339,0): 53, 32, 37, (359,340,0): 52, 33, 39, (359,341,0): 53, 33, 42, (359,342,0): 53, 33, 42, (359,343,0): 53, 33, 42, (359,344,0): 55, 36, 42, (359,345,0): 56, 35, 42, (359,346,0): 57, 34, 40, (359,347,0): 59, 34, 38, (359,348,0): 61, 35, 38, (359,349,0): 65, 36, 38, (359,350,0): 67, 39, 38, (359,351,0): 72, 38, 36, (359,352,0): 78, 38, 30, (359,353,0): 87, 40, 30, (359,354,0): 96, 46, 39, (359,355,0): 104, 49, 44, (359,356,0): 109, 49, 48, (359,357,0): 108, 47, 46, (359,358,0): 104, 44, 44, (359,359,0): 98, 42, 43, (359,360,0): 91, 39, 41, (359,361,0): 87, 38, 41, (359,362,0): 80, 35, 38, (359,363,0): 75, 33, 37, (359,364,0): 74, 31, 38, (359,365,0): 75, 32, 39, (359,366,0): 79, 33, 43, (359,367,0): 80, 34, 44, (359,368,0): 78, 36, 40, (359,369,0): 77, 35, 37, (359,370,0): 77, 35, 37, (359,371,0): 76, 34, 36, (359,372,0): 76, 34, 36, (359,373,0): 75, 33, 35, (359,374,0): 75, 33, 35, (359,375,0): 75, 33, 35, (359,376,0): 76, 34, 36, (359,377,0): 76, 34, 36, (359,378,0): 76, 34, 36, (359,379,0): 76, 34, 36, (359,380,0): 76, 34, 36, (359,381,0): 76, 34, 36, (359,382,0): 76, 34, 36, (359,383,0): 76, 34, 36, (359,384,0): 81, 39, 40, (359,385,0): 78, 36, 37, (359,386,0): 78, 34, 35, (359,387,0): 79, 35, 34, (359,388,0): 82, 36, 36, (359,389,0): 87, 39, 37, (359,390,0): 86, 38, 36, (359,391,0): 85, 37, 35, (359,392,0): 83, 35, 33, (359,393,0): 81, 35, 35, (359,394,0): 81, 37, 38, (359,395,0): 79, 37, 39, (359,396,0): 77, 36, 40, (359,397,0): 71, 35, 39, (359,398,0): 68, 31, 38, (359,399,0): 66, 31, 37, (359,400,0): 68, 33, 39, (359,401,0): 68, 33, 37, (359,402,0): 70, 35, 39, (359,403,0): 71, 36, 40, (359,404,0): 71, 36, 40, (359,405,0): 71, 36, 40, (359,406,0): 70, 35, 39, (359,407,0): 69, 34, 38, (359,408,0): 70, 35, 39, (359,409,0): 70, 35, 39, (359,410,0): 70, 35, 39, (359,411,0): 70, 35, 39, (359,412,0): 69, 34, 38, (359,413,0): 69, 34, 38, (359,414,0): 69, 34, 38, (359,415,0): 69, 34, 38, (359,416,0): 70, 34, 38, (359,417,0): 71, 32, 35, (359,418,0): 70, 31, 34, (359,419,0): 70, 29, 33, (359,420,0): 70, 29, 33, (359,421,0): 71, 30, 34, (359,422,0): 74, 32, 36, (359,423,0): 78, 33, 38, (359,424,0): 77, 32, 37, (359,425,0): 79, 32, 38, (359,426,0): 80, 33, 39, (359,427,0): 83, 34, 40, (359,428,0): 82, 33, 39, (359,429,0): 81, 32, 38, (359,430,0): 79, 30, 36, (359,431,0): 74, 29, 36, (359,432,0): 66, 26, 35, (359,433,0): 58, 25, 32, (359,434,0): 56, 23, 32, (359,435,0): 54, 24, 32, (359,436,0): 53, 26, 33, (359,437,0): 50, 27, 33, (359,438,0): 46, 25, 32, (359,439,0): 43, 24, 30, (359,440,0): 43, 26, 34, (359,441,0): 43, 26, 34, (359,442,0): 43, 26, 34, (359,443,0): 45, 25, 34, (359,444,0): 45, 25, 36, (359,445,0): 45, 25, 36, (359,446,0): 45, 25, 36, (359,447,0): 45, 25, 36, (359,448,0): 44, 24, 35, (359,449,0): 42, 25, 35, (359,450,0): 44, 24, 33, (359,451,0): 43, 26, 34, (359,452,0): 44, 27, 35, (359,453,0): 44, 27, 35, (359,454,0): 45, 28, 34, (359,455,0): 45, 28, 34, (359,456,0): 49, 32, 38, (359,457,0): 47, 31, 34, (359,458,0): 44, 28, 31, (359,459,0): 42, 26, 29, (359,460,0): 43, 29, 29, (359,461,0): 47, 33, 33, (359,462,0): 52, 38, 38, (359,463,0): 55, 41, 41, (359,464,0): 53, 37, 37, (359,465,0): 55, 39, 39, (359,466,0): 58, 42, 42, (359,467,0): 61, 45, 45, (359,468,0): 61, 45, 45, (359,469,0): 61, 45, 45, (359,470,0): 59, 43, 43, (359,471,0): 58, 42, 42, (359,472,0): 62, 46, 46, (359,473,0): 60, 44, 44, (359,474,0): 58, 42, 42, (359,475,0): 56, 40, 40, (359,476,0): 54, 38, 38, (359,477,0): 53, 37, 37, (359,478,0): 53, 37, 37, (359,479,0): 53, 37, 37, (359,480,0): 56, 38, 38, (359,481,0): 57, 39, 39, (359,482,0): 59, 41, 41, (359,483,0): 60, 42, 42, (359,484,0): 60, 42, 42, (359,485,0): 59, 41, 41, (359,486,0): 57, 39, 39, (359,487,0): 56, 38, 38, (359,488,0): 51, 33, 33, (359,489,0): 51, 33, 33, (359,490,0): 51, 33, 31, (359,491,0): 52, 34, 32, (359,492,0): 53, 35, 33, (359,493,0): 54, 36, 34, (359,494,0): 56, 38, 36, (359,495,0): 57, 39, 37, (359,496,0): 52, 36, 36, (359,497,0): 51, 35, 35, (359,498,0): 50, 34, 34, (359,499,0): 49, 33, 33, (359,500,0): 50, 32, 32, (359,501,0): 51, 33, 33, (359,502,0): 51, 33, 33, (359,503,0): 52, 34, 34, (359,504,0): 56, 36, 37, (359,505,0): 57, 37, 38, (359,506,0): 59, 37, 39, (359,507,0): 59, 37, 39, (359,508,0): 58, 36, 38, (359,509,0): 57, 35, 37, (359,510,0): 58, 33, 36, (359,511,0): 57, 32, 36, (359,512,0): 55, 30, 36, (359,513,0): 54, 28, 37, (359,514,0): 53, 27, 36, (359,515,0): 52, 26, 35, (359,516,0): 50, 24, 33, (359,517,0): 49, 23, 32, (359,518,0): 48, 23, 29, (359,519,0): 48, 23, 29, (359,520,0): 55, 30, 36, (359,521,0): 53, 28, 32, (359,522,0): 52, 27, 31, (359,523,0): 54, 29, 32, (359,524,0): 58, 33, 36, (359,525,0): 62, 37, 40, (359,526,0): 62, 37, 40, (359,527,0): 59, 37, 39, (359,528,0): 60, 40, 39, (359,529,0): 58, 38, 37, (359,530,0): 54, 34, 33, (359,531,0): 50, 30, 29, (359,532,0): 48, 28, 29, (359,533,0): 48, 28, 29, (359,534,0): 49, 29, 31, (359,535,0): 49, 29, 31, (359,536,0): 49, 28, 33, (359,537,0): 48, 27, 32, (359,538,0): 46, 25, 32, (359,539,0): 45, 24, 31, (359,540,0): 44, 23, 30, (359,541,0): 45, 24, 33, (359,542,0): 45, 24, 33, (359,543,0): 46, 25, 34, (359,544,0): 43, 22, 29, (359,545,0): 43, 22, 29, (359,546,0): 43, 22, 29, (359,547,0): 43, 22, 29, (359,548,0): 44, 23, 28, (359,549,0): 46, 25, 30, (359,550,0): 48, 27, 32, (359,551,0): 49, 28, 33, (359,552,0): 49, 29, 31, (359,553,0): 50, 30, 32, (359,554,0): 50, 30, 31, (359,555,0): 51, 31, 32, (359,556,0): 53, 33, 34, (359,557,0): 54, 34, 35, (359,558,0): 54, 34, 33, (359,559,0): 55, 35, 34, (359,560,0): 50, 32, 32, (359,561,0): 47, 31, 31, (359,562,0): 45, 29, 29, (359,563,0): 44, 28, 28, (359,564,0): 44, 28, 29, (359,565,0): 43, 29, 29, (359,566,0): 45, 31, 31, (359,567,0): 46, 32, 32, (359,568,0): 42, 30, 32, (359,569,0): 41, 29, 31, (359,570,0): 39, 27, 29, (359,571,0): 37, 27, 28, (359,572,0): 36, 26, 27, (359,573,0): 36, 25, 29, (359,574,0): 36, 25, 29, (359,575,0): 37, 26, 30, (359,576,0): 45, 33, 35, (359,577,0): 45, 35, 34, (359,578,0): 43, 38, 35, (359,579,0): 43, 42, 38, (359,580,0): 46, 48, 43, (359,581,0): 50, 55, 49, (359,582,0): 55, 60, 54, (359,583,0): 60, 62, 57, (359,584,0): 62, 63, 58, (359,585,0): 64, 60, 57, (359,586,0): 65, 60, 57, (359,587,0): 66, 58, 56, (359,588,0): 64, 59, 56, (359,589,0): 62, 58, 55, (359,590,0): 62, 58, 55, (359,591,0): 60, 59, 57, (359,592,0): 63, 61, 64, (359,593,0): 62, 60, 65, (359,594,0): 63, 58, 64, (359,595,0): 62, 55, 62, (359,596,0): 62, 52, 60, (359,597,0): 61, 51, 59, (359,598,0): 60, 49, 57, (359,599,0): 60, 49, 57, (360,0,0): 72, 55, 48, (360,1,0): 72, 55, 48, (360,2,0): 72, 55, 47, (360,3,0): 73, 56, 48, (360,4,0): 75, 58, 48, (360,5,0): 77, 60, 50, (360,6,0): 79, 63, 50, (360,7,0): 80, 64, 49, (360,8,0): 84, 68, 53, (360,9,0): 82, 66, 50, (360,10,0): 81, 66, 47, (360,11,0): 83, 68, 49, (360,12,0): 88, 73, 52, (360,13,0): 90, 75, 54, (360,14,0): 89, 74, 51, (360,15,0): 88, 72, 49, (360,16,0): 98, 78, 54, (360,17,0): 100, 78, 55, (360,18,0): 101, 79, 56, (360,19,0): 102, 80, 57, (360,20,0): 101, 79, 58, (360,21,0): 100, 78, 57, (360,22,0): 98, 76, 55, (360,23,0): 96, 74, 53, (360,24,0): 101, 78, 60, (360,25,0): 99, 76, 58, (360,26,0): 96, 73, 57, (360,27,0): 93, 70, 54, (360,28,0): 91, 68, 52, (360,29,0): 90, 67, 51, (360,30,0): 91, 68, 54, (360,31,0): 90, 68, 54, (360,32,0): 86, 64, 51, (360,33,0): 84, 65, 51, (360,34,0): 84, 65, 51, (360,35,0): 83, 64, 50, (360,36,0): 83, 64, 50, (360,37,0): 82, 63, 49, (360,38,0): 82, 63, 49, (360,39,0): 82, 63, 49, (360,40,0): 83, 64, 50, (360,41,0): 82, 63, 49, (360,42,0): 81, 62, 48, (360,43,0): 79, 60, 46, (360,44,0): 79, 60, 46, (360,45,0): 79, 60, 46, (360,46,0): 80, 61, 47, (360,47,0): 80, 60, 49, (360,48,0): 78, 60, 50, (360,49,0): 75, 58, 48, (360,50,0): 74, 57, 47, (360,51,0): 72, 55, 45, (360,52,0): 71, 54, 44, (360,53,0): 70, 53, 43, (360,54,0): 71, 54, 44, (360,55,0): 71, 54, 44, (360,56,0): 67, 50, 40, (360,57,0): 66, 49, 39, (360,58,0): 64, 47, 37, (360,59,0): 62, 45, 35, (360,60,0): 61, 44, 34, (360,61,0): 62, 45, 35, (360,62,0): 63, 46, 36, (360,63,0): 65, 47, 35, (360,64,0): 73, 55, 41, (360,65,0): 77, 58, 43, (360,66,0): 83, 64, 49, (360,67,0): 88, 69, 52, (360,68,0): 95, 74, 57, (360,69,0): 98, 75, 57, (360,70,0): 99, 76, 58, (360,71,0): 101, 76, 56, (360,72,0): 105, 78, 57, (360,73,0): 105, 77, 55, (360,74,0): 103, 75, 53, (360,75,0): 104, 74, 50, (360,76,0): 103, 73, 49, (360,77,0): 105, 73, 48, (360,78,0): 107, 75, 50, (360,79,0): 110, 75, 53, (360,80,0): 110, 75, 55, (360,81,0): 112, 77, 58, (360,82,0): 113, 78, 59, (360,83,0): 114, 79, 60, (360,84,0): 113, 78, 59, (360,85,0): 109, 77, 56, (360,86,0): 107, 75, 54, (360,87,0): 105, 73, 52, (360,88,0): 103, 71, 48, (360,89,0): 104, 74, 50, (360,90,0): 106, 76, 52, (360,91,0): 106, 76, 50, (360,92,0): 105, 78, 51, (360,93,0): 108, 81, 54, (360,94,0): 114, 87, 58, (360,95,0): 118, 93, 63, (360,96,0): 124, 101, 67, (360,97,0): 123, 103, 66, (360,98,0): 125, 105, 68, (360,99,0): 127, 109, 71, (360,100,0): 132, 117, 76, (360,101,0): 143, 130, 86, (360,102,0): 157, 144, 99, (360,103,0): 164, 156, 107, (360,104,0): 173, 167, 115, (360,105,0): 171, 168, 113, (360,106,0): 171, 171, 111, (360,107,0): 171, 173, 110, (360,108,0): 172, 174, 109, (360,109,0): 170, 175, 109, (360,110,0): 170, 175, 108, (360,111,0): 170, 177, 109, (360,112,0): 169, 178, 111, (360,113,0): 169, 180, 112, (360,114,0): 170, 181, 115, (360,115,0): 171, 183, 117, (360,116,0): 174, 186, 122, (360,117,0): 174, 189, 124, (360,118,0): 175, 189, 127, (360,119,0): 175, 191, 129, (360,120,0): 173, 191, 131, (360,121,0): 172, 192, 131, (360,122,0): 170, 191, 132, (360,123,0): 170, 191, 134, (360,124,0): 167, 190, 134, (360,125,0): 167, 190, 134, (360,126,0): 165, 190, 135, (360,127,0): 165, 190, 135, (360,128,0): 158, 185, 132, (360,129,0): 157, 185, 134, (360,130,0): 158, 186, 135, (360,131,0): 159, 189, 139, (360,132,0): 160, 190, 140, (360,133,0): 160, 192, 143, (360,134,0): 161, 193, 144, (360,135,0): 160, 193, 146, (360,136,0): 158, 194, 148, (360,137,0): 157, 194, 150, (360,138,0): 156, 193, 149, (360,139,0): 154, 193, 149, (360,140,0): 154, 193, 149, (360,141,0): 151, 192, 150, (360,142,0): 150, 191, 149, (360,143,0): 150, 191, 151, (360,144,0): 154, 190, 152, (360,145,0): 156, 190, 153, (360,146,0): 156, 192, 154, (360,147,0): 157, 193, 157, (360,148,0): 159, 195, 159, (360,149,0): 159, 196, 162, (360,150,0): 159, 199, 165, (360,151,0): 159, 198, 167, (360,152,0): 155, 196, 164, (360,153,0): 154, 197, 167, (360,154,0): 154, 199, 170, (360,155,0): 155, 200, 171, (360,156,0): 156, 202, 174, (360,157,0): 157, 203, 175, (360,158,0): 156, 205, 176, (360,159,0): 156, 204, 178, (360,160,0): 160, 209, 188, (360,161,0): 158, 209, 190, (360,162,0): 160, 211, 192, (360,163,0): 161, 212, 195, (360,164,0): 160, 213, 195, (360,165,0): 160, 213, 197, (360,166,0): 158, 212, 196, (360,167,0): 157, 211, 197, (360,168,0): 159, 213, 200, (360,169,0): 158, 211, 201, (360,170,0): 156, 212, 201, (360,171,0): 155, 211, 202, (360,172,0): 153, 210, 201, (360,173,0): 152, 209, 202, (360,174,0): 152, 209, 202, (360,175,0): 151, 208, 202, (360,176,0): 155, 212, 206, (360,177,0): 155, 212, 206, (360,178,0): 155, 211, 208, (360,179,0): 155, 211, 208, (360,180,0): 154, 210, 207, (360,181,0): 154, 210, 207, (360,182,0): 154, 210, 209, (360,183,0): 154, 210, 209, (360,184,0): 151, 207, 208, (360,185,0): 151, 207, 208, (360,186,0): 152, 208, 209, (360,187,0): 152, 208, 209, (360,188,0): 152, 207, 210, (360,189,0): 150, 205, 208, (360,190,0): 149, 204, 207, (360,191,0): 148, 203, 208, (360,192,0): 148, 203, 210, (360,193,0): 148, 203, 210, (360,194,0): 148, 203, 210, (360,195,0): 149, 204, 211, (360,196,0): 150, 203, 211, (360,197,0): 150, 203, 211, (360,198,0): 150, 203, 211, (360,199,0): 150, 203, 211, (360,200,0): 148, 198, 207, (360,201,0): 148, 198, 207, (360,202,0): 148, 196, 206, (360,203,0): 147, 195, 205, (360,204,0): 147, 195, 205, (360,205,0): 148, 196, 206, (360,206,0): 150, 197, 207, (360,207,0): 150, 197, 205, (360,208,0): 145, 194, 199, (360,209,0): 145, 194, 198, (360,210,0): 146, 195, 200, (360,211,0): 148, 197, 202, (360,212,0): 149, 198, 203, (360,213,0): 151, 200, 205, (360,214,0): 152, 201, 208, (360,215,0): 152, 201, 208, (360,216,0): 156, 204, 214, (360,217,0): 156, 204, 214, (360,218,0): 157, 205, 215, (360,219,0): 158, 206, 216, (360,220,0): 159, 207, 219, (360,221,0): 160, 208, 220, (360,222,0): 161, 209, 221, (360,223,0): 161, 209, 221, (360,224,0): 156, 205, 219, (360,225,0): 154, 206, 219, (360,226,0): 153, 205, 219, (360,227,0): 153, 205, 219, (360,228,0): 153, 204, 221, (360,229,0): 153, 204, 221, (360,230,0): 151, 204, 222, (360,231,0): 151, 204, 222, (360,232,0): 153, 205, 227, (360,233,0): 152, 207, 228, (360,234,0): 152, 206, 230, (360,235,0): 152, 208, 231, (360,236,0): 152, 208, 233, (360,237,0): 153, 209, 234, (360,238,0): 153, 209, 236, (360,239,0): 154, 210, 237, (360,240,0): 155, 210, 240, (360,241,0): 155, 210, 240, (360,242,0): 155, 210, 240, (360,243,0): 155, 210, 240, (360,244,0): 155, 210, 241, (360,245,0): 155, 210, 241, (360,246,0): 155, 210, 241, (360,247,0): 155, 210, 241, (360,248,0): 149, 203, 237, (360,249,0): 149, 203, 237, (360,250,0): 151, 205, 239, (360,251,0): 153, 207, 243, (360,252,0): 154, 208, 244, (360,253,0): 156, 210, 246, (360,254,0): 158, 212, 248, (360,255,0): 159, 211, 248, (360,256,0): 160, 210, 247, (360,257,0): 161, 211, 246, (360,258,0): 162, 212, 247, (360,259,0): 164, 214, 251, (360,260,0): 166, 216, 253, (360,261,0): 166, 218, 255, (360,262,0): 167, 219, 255, (360,263,0): 168, 220, 255, (360,264,0): 165, 217, 255, (360,265,0): 164, 217, 255, (360,266,0): 164, 217, 255, (360,267,0): 163, 218, 255, (360,268,0): 163, 218, 255, (360,269,0): 163, 218, 255, (360,270,0): 163, 218, 255, (360,271,0): 163, 218, 255, (360,272,0): 162, 215, 255, (360,273,0): 163, 216, 255, (360,274,0): 163, 215, 255, (360,275,0): 163, 215, 255, (360,276,0): 162, 214, 255, (360,277,0): 160, 212, 255, (360,278,0): 158, 210, 255, (360,279,0): 157, 209, 255, (360,280,0): 153, 205, 255, (360,281,0): 153, 205, 255, (360,282,0): 153, 205, 255, (360,283,0): 152, 203, 255, (360,284,0): 152, 203, 255, (360,285,0): 151, 202, 255, (360,286,0): 151, 202, 255, (360,287,0): 150, 201, 254, (360,288,0): 150, 201, 254, (360,289,0): 148, 199, 252, (360,290,0): 147, 198, 251, (360,291,0): 149, 199, 252, (360,292,0): 152, 202, 255, (360,293,0): 153, 203, 255, (360,294,0): 151, 200, 255, (360,295,0): 151, 198, 252, (360,296,0): 154, 201, 255, (360,297,0): 156, 201, 255, (360,298,0): 156, 201, 255, (360,299,0): 157, 202, 255, (360,300,0): 158, 203, 255, (360,301,0): 161, 204, 255, (360,302,0): 161, 204, 255, (360,303,0): 163, 203, 255, (360,304,0): 163, 201, 255, (360,305,0): 157, 195, 255, (360,306,0): 156, 195, 254, (360,307,0): 160, 199, 254, (360,308,0): 162, 202, 254, (360,309,0): 162, 199, 252, (360,310,0): 170, 203, 255, (360,311,0): 183, 209, 255, (360,312,0): 182, 202, 255, (360,313,0): 189, 199, 255, (360,314,0): 193, 194, 250, (360,315,0): 188, 181, 233, (360,316,0): 170, 157, 201, (360,317,0): 144, 123, 162, (360,318,0): 114, 90, 122, (360,319,0): 95, 69, 94, (360,320,0): 87, 63, 77, (360,321,0): 82, 59, 67, (360,322,0): 77, 54, 62, (360,323,0): 77, 52, 58, (360,324,0): 78, 51, 56, (360,325,0): 79, 50, 54, (360,326,0): 78, 49, 51, (360,327,0): 76, 47, 49, (360,328,0): 74, 44, 46, (360,329,0): 71, 42, 44, (360,330,0): 69, 40, 44, (360,331,0): 63, 36, 41, (360,332,0): 60, 35, 41, (360,333,0): 56, 33, 41, (360,334,0): 56, 33, 43, (360,335,0): 55, 32, 40, (360,336,0): 55, 32, 38, (360,337,0): 55, 33, 36, (360,338,0): 55, 32, 38, (360,339,0): 55, 34, 39, (360,340,0): 54, 35, 41, (360,341,0): 55, 36, 42, (360,342,0): 55, 35, 44, (360,343,0): 56, 36, 45, (360,344,0): 55, 34, 41, (360,345,0): 55, 34, 41, (360,346,0): 55, 32, 38, (360,347,0): 58, 33, 37, (360,348,0): 62, 33, 37, (360,349,0): 65, 35, 37, (360,350,0): 67, 37, 37, (360,351,0): 73, 38, 34, (360,352,0): 81, 38, 29, (360,353,0): 90, 42, 30, (360,354,0): 100, 47, 39, (360,355,0): 108, 50, 46, (360,356,0): 110, 50, 49, (360,357,0): 108, 47, 46, (360,358,0): 101, 41, 41, (360,359,0): 94, 38, 39, (360,360,0): 84, 32, 34, (360,361,0): 80, 34, 36, (360,362,0): 76, 34, 36, (360,363,0): 74, 33, 37, (360,364,0): 74, 33, 39, (360,365,0): 76, 33, 40, (360,366,0): 79, 34, 41, (360,367,0): 80, 35, 42, (360,368,0): 77, 35, 39, (360,369,0): 77, 35, 37, (360,370,0): 77, 35, 37, (360,371,0): 76, 34, 36, (360,372,0): 76, 34, 36, (360,373,0): 76, 34, 36, (360,374,0): 76, 34, 36, (360,375,0): 76, 34, 36, (360,376,0): 74, 32, 34, (360,377,0): 74, 32, 34, (360,378,0): 75, 33, 35, (360,379,0): 75, 33, 35, (360,380,0): 76, 34, 36, (360,381,0): 77, 35, 37, (360,382,0): 78, 36, 38, (360,383,0): 78, 36, 38, (360,384,0): 76, 34, 36, (360,385,0): 77, 35, 36, (360,386,0): 80, 36, 37, (360,387,0): 81, 37, 36, (360,388,0): 81, 37, 36, (360,389,0): 81, 35, 35, (360,390,0): 80, 35, 32, (360,391,0): 79, 34, 31, (360,392,0): 82, 36, 36, (360,393,0): 80, 36, 35, (360,394,0): 78, 36, 37, (360,395,0): 76, 36, 37, (360,396,0): 75, 36, 39, (360,397,0): 72, 36, 40, (360,398,0): 72, 35, 42, (360,399,0): 71, 36, 42, (360,400,0): 71, 36, 42, (360,401,0): 71, 36, 42, (360,402,0): 71, 36, 42, (360,403,0): 71, 36, 42, (360,404,0): 70, 35, 41, (360,405,0): 70, 35, 41, (360,406,0): 70, 35, 41, (360,407,0): 70, 35, 41, (360,408,0): 66, 31, 37, (360,409,0): 66, 31, 37, (360,410,0): 66, 31, 37, (360,411,0): 66, 31, 37, (360,412,0): 66, 31, 37, (360,413,0): 66, 31, 37, (360,414,0): 66, 31, 37, (360,415,0): 66, 31, 35, (360,416,0): 70, 34, 38, (360,417,0): 70, 34, 38, (360,418,0): 69, 33, 37, (360,419,0): 71, 32, 37, (360,420,0): 70, 31, 36, (360,421,0): 70, 31, 36, (360,422,0): 70, 29, 35, (360,423,0): 70, 29, 35, (360,424,0): 70, 27, 34, (360,425,0): 74, 29, 36, (360,426,0): 77, 30, 38, (360,427,0): 79, 32, 40, (360,428,0): 79, 29, 38, (360,429,0): 76, 26, 35, (360,430,0): 73, 22, 31, (360,431,0): 67, 20, 28, (360,432,0): 61, 21, 30, (360,433,0): 56, 23, 32, (360,434,0): 56, 23, 32, (360,435,0): 54, 24, 32, (360,436,0): 52, 25, 34, (360,437,0): 48, 25, 33, (360,438,0): 47, 26, 33, (360,439,0): 46, 27, 33, (360,440,0): 47, 30, 38, (360,441,0): 45, 30, 37, (360,442,0): 43, 27, 37, (360,443,0): 42, 25, 35, (360,444,0): 41, 24, 34, (360,445,0): 41, 24, 34, (360,446,0): 41, 23, 35, (360,447,0): 42, 24, 36, (360,448,0): 44, 27, 37, (360,449,0): 42, 26, 36, (360,450,0): 43, 26, 36, (360,451,0): 42, 26, 36, (360,452,0): 42, 27, 34, (360,453,0): 44, 29, 36, (360,454,0): 46, 31, 38, (360,455,0): 47, 32, 37, (360,456,0): 47, 32, 37, (360,457,0): 46, 31, 36, (360,458,0): 46, 30, 33, (360,459,0): 46, 30, 33, (360,460,0): 48, 32, 35, (360,461,0): 50, 34, 37, (360,462,0): 53, 37, 38, (360,463,0): 55, 39, 40, (360,464,0): 55, 39, 39, (360,465,0): 55, 39, 39, (360,466,0): 56, 40, 40, (360,467,0): 57, 41, 41, (360,468,0): 59, 43, 43, (360,469,0): 61, 45, 45, (360,470,0): 61, 45, 45, (360,471,0): 61, 45, 45, (360,472,0): 68, 52, 52, (360,473,0): 67, 51, 51, (360,474,0): 65, 49, 49, (360,475,0): 62, 46, 46, (360,476,0): 59, 43, 43, (360,477,0): 56, 40, 40, (360,478,0): 54, 38, 38, (360,479,0): 53, 37, 37, (360,480,0): 62, 44, 42, (360,481,0): 64, 44, 43, (360,482,0): 65, 45, 44, (360,483,0): 66, 46, 45, (360,484,0): 64, 44, 43, (360,485,0): 62, 42, 41, (360,486,0): 59, 39, 40, (360,487,0): 57, 37, 38, (360,488,0): 60, 40, 41, (360,489,0): 58, 38, 39, (360,490,0): 56, 36, 37, (360,491,0): 54, 34, 35, (360,492,0): 54, 34, 35, (360,493,0): 57, 37, 38, (360,494,0): 60, 40, 41, (360,495,0): 61, 43, 43, (360,496,0): 55, 39, 39, (360,497,0): 54, 38, 38, (360,498,0): 52, 36, 36, (360,499,0): 50, 34, 34, (360,500,0): 51, 33, 33, (360,501,0): 50, 32, 32, (360,502,0): 49, 31, 31, (360,503,0): 49, 31, 31, (360,504,0): 54, 34, 35, (360,505,0): 55, 35, 36, (360,506,0): 57, 35, 37, (360,507,0): 58, 36, 38, (360,508,0): 58, 36, 38, (360,509,0): 56, 34, 36, (360,510,0): 56, 31, 34, (360,511,0): 55, 30, 34, (360,512,0): 51, 28, 36, (360,513,0): 50, 27, 37, (360,514,0): 49, 26, 36, (360,515,0): 47, 24, 34, (360,516,0): 47, 24, 32, (360,517,0): 47, 24, 32, (360,518,0): 48, 25, 33, (360,519,0): 48, 25, 31, (360,520,0): 51, 28, 34, (360,521,0): 52, 30, 33, (360,522,0): 53, 31, 34, (360,523,0): 54, 32, 35, (360,524,0): 55, 33, 36, (360,525,0): 56, 34, 37, (360,526,0): 57, 35, 37, (360,527,0): 57, 35, 37, (360,528,0): 59, 39, 40, (360,529,0): 56, 38, 38, (360,530,0): 52, 34, 34, (360,531,0): 49, 31, 31, (360,532,0): 46, 27, 29, (360,533,0): 45, 26, 28, (360,534,0): 45, 26, 28, (360,535,0): 45, 26, 28, (360,536,0): 46, 27, 31, (360,537,0): 46, 27, 31, (360,538,0): 46, 27, 31, (360,539,0): 46, 27, 31, (360,540,0): 46, 27, 31, (360,541,0): 45, 26, 32, (360,542,0): 44, 25, 31, (360,543,0): 43, 24, 30, (360,544,0): 45, 24, 31, (360,545,0): 45, 24, 31, (360,546,0): 44, 23, 30, (360,547,0): 43, 22, 29, (360,548,0): 43, 22, 27, (360,549,0): 44, 23, 28, (360,550,0): 46, 25, 30, (360,551,0): 47, 26, 31, (360,552,0): 49, 29, 31, (360,553,0): 50, 30, 32, (360,554,0): 50, 30, 31, (360,555,0): 51, 31, 32, (360,556,0): 53, 33, 34, (360,557,0): 54, 34, 35, (360,558,0): 54, 34, 33, (360,559,0): 55, 35, 34, (360,560,0): 52, 34, 32, (360,561,0): 51, 33, 31, (360,562,0): 50, 32, 30, (360,563,0): 47, 32, 29, (360,564,0): 45, 29, 29, (360,565,0): 44, 28, 28, (360,566,0): 42, 28, 28, (360,567,0): 42, 28, 28, (360,568,0): 45, 33, 35, (360,569,0): 43, 31, 33, (360,570,0): 40, 29, 33, (360,571,0): 37, 26, 30, (360,572,0): 35, 24, 28, (360,573,0): 33, 24, 29, (360,574,0): 33, 24, 29, (360,575,0): 34, 23, 27, (360,576,0): 42, 30, 32, (360,577,0): 44, 34, 33, (360,578,0): 45, 40, 37, (360,579,0): 45, 44, 40, (360,580,0): 46, 48, 43, (360,581,0): 48, 53, 47, (360,582,0): 54, 59, 53, (360,583,0): 60, 62, 57, (360,584,0): 65, 66, 61, (360,585,0): 67, 63, 60, (360,586,0): 67, 62, 59, (360,587,0): 68, 60, 58, (360,588,0): 65, 60, 57, (360,589,0): 62, 58, 55, (360,590,0): 61, 57, 54, (360,591,0): 59, 58, 56, (360,592,0): 63, 58, 62, (360,593,0): 65, 60, 66, (360,594,0): 68, 61, 68, (360,595,0): 69, 62, 69, (360,596,0): 68, 58, 66, (360,597,0): 64, 53, 61, (360,598,0): 59, 46, 55, (360,599,0): 56, 43, 52, (361,0,0): 72, 55, 48, (361,1,0): 72, 55, 48, (361,2,0): 72, 55, 47, (361,3,0): 73, 56, 48, (361,4,0): 75, 58, 48, (361,5,0): 77, 60, 50, (361,6,0): 79, 63, 50, (361,7,0): 80, 64, 49, (361,8,0): 84, 68, 53, (361,9,0): 82, 66, 50, (361,10,0): 81, 66, 47, (361,11,0): 84, 69, 50, (361,12,0): 88, 73, 52, (361,13,0): 90, 75, 54, (361,14,0): 89, 74, 51, (361,15,0): 89, 73, 50, (361,16,0): 98, 78, 54, (361,17,0): 100, 78, 55, (361,18,0): 101, 79, 56, (361,19,0): 102, 80, 57, (361,20,0): 101, 79, 58, (361,21,0): 100, 78, 57, (361,22,0): 98, 76, 55, (361,23,0): 97, 75, 54, (361,24,0): 101, 78, 60, (361,25,0): 99, 76, 58, (361,26,0): 97, 74, 58, (361,27,0): 94, 71, 55, (361,28,0): 92, 69, 53, (361,29,0): 91, 68, 52, (361,30,0): 92, 69, 55, (361,31,0): 91, 69, 55, (361,32,0): 89, 67, 54, (361,33,0): 87, 68, 54, (361,34,0): 86, 67, 53, (361,35,0): 86, 67, 53, (361,36,0): 86, 67, 53, (361,37,0): 86, 67, 53, (361,38,0): 86, 67, 53, (361,39,0): 86, 67, 53, (361,40,0): 84, 65, 51, (361,41,0): 83, 64, 50, (361,42,0): 82, 63, 49, (361,43,0): 81, 62, 48, (361,44,0): 80, 61, 47, (361,45,0): 80, 61, 47, (361,46,0): 81, 62, 48, (361,47,0): 81, 63, 49, (361,48,0): 79, 61, 49, (361,49,0): 77, 60, 50, (361,50,0): 75, 58, 48, (361,51,0): 73, 56, 46, (361,52,0): 72, 55, 45, (361,53,0): 72, 55, 45, (361,54,0): 72, 55, 45, (361,55,0): 72, 55, 45, (361,56,0): 69, 52, 42, (361,57,0): 68, 51, 41, (361,58,0): 66, 49, 39, (361,59,0): 64, 47, 37, (361,60,0): 63, 46, 36, (361,61,0): 63, 46, 36, (361,62,0): 64, 47, 37, (361,63,0): 64, 48, 35, (361,64,0): 68, 50, 38, (361,65,0): 71, 53, 39, (361,66,0): 76, 58, 44, (361,67,0): 82, 63, 48, (361,68,0): 88, 69, 54, (361,69,0): 94, 73, 56, (361,70,0): 97, 76, 59, (361,71,0): 100, 77, 59, (361,72,0): 103, 78, 58, (361,73,0): 103, 76, 55, (361,74,0): 102, 75, 54, (361,75,0): 102, 74, 52, (361,76,0): 103, 72, 51, (361,77,0): 103, 73, 49, (361,78,0): 103, 73, 49, (361,79,0): 105, 73, 50, (361,80,0): 107, 74, 57, (361,81,0): 107, 74, 57, (361,82,0): 109, 73, 57, (361,83,0): 107, 74, 57, (361,84,0): 106, 73, 56, (361,85,0): 105, 72, 53, (361,86,0): 103, 70, 51, (361,87,0): 102, 69, 50, (361,88,0): 101, 70, 50, (361,89,0): 103, 72, 51, (361,90,0): 104, 73, 52, (361,91,0): 105, 75, 51, (361,92,0): 103, 75, 51, (361,93,0): 106, 78, 54, (361,94,0): 112, 84, 60, (361,95,0): 116, 90, 63, (361,96,0): 121, 98, 66, (361,97,0): 121, 101, 66, (361,98,0): 123, 103, 70, (361,99,0): 125, 107, 71, (361,100,0): 131, 113, 75, (361,101,0): 138, 123, 82, (361,102,0): 149, 136, 94, (361,103,0): 157, 146, 100, (361,104,0): 167, 159, 110, (361,105,0): 169, 163, 111, (361,106,0): 171, 169, 112, (361,107,0): 175, 175, 115, (361,108,0): 178, 178, 116, (361,109,0): 179, 181, 116, (361,110,0): 180, 183, 116, (361,111,0): 178, 183, 116, (361,112,0): 174, 181, 114, (361,113,0): 172, 181, 114, (361,114,0): 174, 183, 118, (361,115,0): 174, 185, 119, (361,116,0): 176, 186, 123, (361,117,0): 176, 188, 124, (361,118,0): 177, 189, 127, (361,119,0): 176, 190, 129, (361,120,0): 175, 190, 131, (361,121,0): 172, 190, 132, (361,122,0): 171, 190, 134, (361,123,0): 169, 190, 133, (361,124,0): 169, 190, 134, (361,125,0): 166, 189, 133, (361,126,0): 166, 189, 135, (361,127,0): 165, 189, 137, (361,128,0): 157, 185, 134, (361,129,0): 158, 186, 137, (361,130,0): 158, 188, 138, (361,131,0): 159, 188, 140, (361,132,0): 158, 190, 141, (361,133,0): 159, 191, 144, (361,134,0): 159, 192, 145, (361,135,0): 158, 194, 148, (361,136,0): 157, 194, 150, (361,137,0): 157, 194, 151, (361,138,0): 155, 194, 150, (361,139,0): 152, 193, 151, (361,140,0): 152, 193, 153, (361,141,0): 151, 192, 152, (361,142,0): 149, 191, 151, (361,143,0): 150, 190, 153, (361,144,0): 154, 190, 154, (361,145,0): 154, 190, 154, (361,146,0): 155, 190, 157, (361,147,0): 156, 193, 159, (361,148,0): 158, 195, 161, (361,149,0): 157, 197, 163, (361,150,0): 158, 197, 166, (361,151,0): 158, 199, 169, (361,152,0): 155, 198, 168, (361,153,0): 154, 199, 170, (361,154,0): 155, 199, 172, (361,155,0): 155, 201, 175, (361,156,0): 156, 202, 176, (361,157,0): 156, 204, 178, (361,158,0): 157, 205, 181, (361,159,0): 156, 206, 181, (361,160,0): 157, 209, 187, (361,161,0): 158, 209, 190, (361,162,0): 159, 210, 193, (361,163,0): 160, 211, 194, (361,164,0): 159, 212, 196, (361,165,0): 159, 212, 196, (361,166,0): 157, 211, 197, (361,167,0): 156, 210, 197, (361,168,0): 155, 208, 198, (361,169,0): 155, 208, 198, (361,170,0): 152, 208, 199, (361,171,0): 151, 207, 198, (361,172,0): 150, 207, 200, (361,173,0): 149, 206, 199, (361,174,0): 148, 205, 199, (361,175,0): 148, 204, 201, (361,176,0): 153, 209, 206, (361,177,0): 153, 209, 208, (361,178,0): 153, 209, 208, (361,179,0): 153, 209, 208, (361,180,0): 154, 210, 209, (361,181,0): 154, 210, 211, (361,182,0): 154, 210, 211, (361,183,0): 154, 210, 211, (361,184,0): 151, 206, 209, (361,185,0): 152, 207, 210, (361,186,0): 152, 207, 210, (361,187,0): 153, 208, 213, (361,188,0): 152, 207, 212, (361,189,0): 151, 206, 211, (361,190,0): 149, 204, 209, (361,191,0): 148, 203, 210, (361,192,0): 149, 203, 213, (361,193,0): 149, 203, 213, (361,194,0): 149, 203, 215, (361,195,0): 148, 202, 212, (361,196,0): 149, 201, 214, (361,197,0): 149, 201, 212, (361,198,0): 149, 201, 214, (361,199,0): 149, 201, 212, (361,200,0): 148, 197, 211, (361,201,0): 147, 197, 208, (361,202,0): 147, 195, 209, (361,203,0): 146, 194, 206, (361,204,0): 146, 194, 208, (361,205,0): 147, 195, 207, (361,206,0): 149, 195, 210, (361,207,0): 150, 196, 209, (361,208,0): 145, 193, 203, (361,209,0): 146, 195, 202, (361,210,0): 147, 195, 205, (361,211,0): 148, 196, 206, (361,212,0): 149, 197, 207, (361,213,0): 150, 198, 208, (361,214,0): 151, 199, 211, (361,215,0): 152, 200, 212, (361,216,0): 156, 204, 218, (361,217,0): 157, 205, 219, (361,218,0): 157, 205, 219, (361,219,0): 158, 206, 220, (361,220,0): 158, 205, 221, (361,221,0): 159, 206, 222, (361,222,0): 160, 207, 223, (361,223,0): 160, 207, 223, (361,224,0): 155, 204, 221, (361,225,0): 153, 204, 221, (361,226,0): 153, 204, 223, (361,227,0): 153, 204, 223, (361,228,0): 153, 204, 225, (361,229,0): 153, 204, 225, (361,230,0): 152, 204, 226, (361,231,0): 152, 204, 226, (361,232,0): 151, 205, 229, (361,233,0): 151, 205, 231, (361,234,0): 152, 206, 234, (361,235,0): 152, 208, 235, (361,236,0): 152, 207, 237, (361,237,0): 153, 208, 238, (361,238,0): 154, 209, 240, (361,239,0): 154, 209, 240, (361,240,0): 155, 209, 243, (361,241,0): 155, 209, 243, (361,242,0): 155, 209, 243, (361,243,0): 155, 209, 243, (361,244,0): 155, 209, 243, (361,245,0): 155, 209, 243, (361,246,0): 155, 209, 245, (361,247,0): 155, 209, 245, (361,248,0): 149, 203, 239, (361,249,0): 150, 204, 240, (361,250,0): 151, 205, 241, (361,251,0): 153, 207, 243, (361,252,0): 154, 208, 244, (361,253,0): 156, 210, 246, (361,254,0): 157, 211, 249, (361,255,0): 158, 212, 250, (361,256,0): 158, 210, 249, (361,257,0): 161, 210, 250, (361,258,0): 162, 211, 251, (361,259,0): 164, 213, 253, (361,260,0): 164, 216, 255, (361,261,0): 165, 217, 255, (361,262,0): 167, 219, 255, (361,263,0): 166, 219, 255, (361,264,0): 163, 216, 255, (361,265,0): 163, 216, 255, (361,266,0): 162, 217, 255, (361,267,0): 162, 217, 255, (361,268,0): 162, 217, 255, (361,269,0): 162, 217, 255, (361,270,0): 160, 218, 255, (361,271,0): 160, 218, 255, (361,272,0): 162, 215, 255, (361,273,0): 162, 215, 255, (361,274,0): 163, 215, 255, (361,275,0): 163, 215, 255, (361,276,0): 161, 213, 255, (361,277,0): 160, 212, 255, (361,278,0): 158, 210, 255, (361,279,0): 157, 209, 255, (361,280,0): 153, 205, 255, (361,281,0): 153, 205, 255, (361,282,0): 152, 203, 255, (361,283,0): 152, 203, 255, (361,284,0): 151, 202, 255, (361,285,0): 151, 202, 255, (361,286,0): 151, 202, 255, (361,287,0): 150, 201, 255, (361,288,0): 150, 201, 255, (361,289,0): 148, 199, 254, (361,290,0): 147, 198, 253, (361,291,0): 148, 199, 254, (361,292,0): 152, 203, 255, (361,293,0): 154, 203, 255, (361,294,0): 153, 202, 255, (361,295,0): 151, 200, 255, (361,296,0): 155, 202, 255, (361,297,0): 156, 203, 255, (361,298,0): 156, 203, 255, (361,299,0): 158, 203, 255, (361,300,0): 158, 203, 255, (361,301,0): 159, 204, 255, (361,302,0): 160, 205, 255, (361,303,0): 162, 205, 255, (361,304,0): 162, 200, 255, (361,305,0): 159, 195, 255, (361,306,0): 157, 196, 255, (361,307,0): 162, 201, 255, (361,308,0): 163, 202, 255, (361,309,0): 163, 200, 253, (361,310,0): 169, 200, 255, (361,311,0): 179, 204, 255, (361,312,0): 186, 203, 255, (361,313,0): 190, 197, 252, (361,314,0): 187, 184, 237, (361,315,0): 171, 162, 209, (361,316,0): 148, 132, 171, (361,317,0): 121, 100, 133, (361,318,0): 100, 76, 102, (361,319,0): 89, 64, 85, (361,320,0): 83, 61, 73, (361,321,0): 79, 58, 63, (361,322,0): 75, 52, 58, (361,323,0): 73, 51, 54, (361,324,0): 76, 51, 54, (361,325,0): 77, 51, 54, (361,326,0): 77, 48, 50, (361,327,0): 75, 46, 48, (361,328,0): 73, 44, 46, (361,329,0): 69, 43, 46, (361,330,0): 66, 39, 44, (361,331,0): 62, 37, 43, (361,332,0): 58, 35, 43, (361,333,0): 56, 35, 42, (361,334,0): 55, 34, 43, (361,335,0): 55, 34, 41, (361,336,0): 55, 32, 38, (361,337,0): 55, 33, 36, (361,338,0): 55, 34, 39, (361,339,0): 55, 34, 39, (361,340,0): 55, 36, 42, (361,341,0): 55, 36, 42, (361,342,0): 55, 35, 44, (361,343,0): 56, 37, 43, (361,344,0): 55, 34, 41, (361,345,0): 56, 33, 39, (361,346,0): 58, 33, 37, (361,347,0): 60, 34, 37, (361,348,0): 64, 34, 36, (361,349,0): 67, 35, 36, (361,350,0): 69, 38, 36, (361,351,0): 76, 38, 35, (361,352,0): 87, 43, 34, (361,353,0): 94, 44, 33, (361,354,0): 100, 47, 39, (361,355,0): 104, 49, 44, (361,356,0): 105, 47, 45, (361,357,0): 101, 43, 42, (361,358,0): 96, 37, 39, (361,359,0): 89, 34, 37, (361,360,0): 83, 33, 36, (361,361,0): 80, 34, 37, (361,362,0): 76, 34, 36, (361,363,0): 74, 33, 37, (361,364,0): 75, 34, 38, (361,365,0): 77, 35, 39, (361,366,0): 78, 36, 40, (361,367,0): 81, 36, 41, (361,368,0): 78, 36, 38, (361,369,0): 78, 36, 38, (361,370,0): 78, 36, 38, (361,371,0): 77, 35, 37, (361,372,0): 77, 35, 37, (361,373,0): 77, 35, 37, (361,374,0): 77, 35, 37, (361,375,0): 77, 35, 37, (361,376,0): 74, 32, 34, (361,377,0): 74, 32, 34, (361,378,0): 75, 33, 35, (361,379,0): 75, 33, 35, (361,380,0): 76, 34, 36, (361,381,0): 77, 35, 37, (361,382,0): 77, 35, 37, (361,383,0): 78, 36, 38, (361,384,0): 76, 34, 36, (361,385,0): 77, 35, 37, (361,386,0): 80, 35, 38, (361,387,0): 80, 36, 37, (361,388,0): 80, 36, 37, (361,389,0): 80, 36, 35, (361,390,0): 79, 35, 34, (361,391,0): 78, 34, 31, (361,392,0): 80, 36, 35, (361,393,0): 78, 36, 37, (361,394,0): 76, 36, 37, (361,395,0): 75, 36, 39, (361,396,0): 74, 35, 40, (361,397,0): 72, 35, 42, (361,398,0): 71, 34, 42, (361,399,0): 70, 35, 42, (361,400,0): 72, 37, 44, (361,401,0): 71, 36, 42, (361,402,0): 71, 36, 42, (361,403,0): 70, 35, 41, (361,404,0): 69, 34, 40, (361,405,0): 69, 34, 40, (361,406,0): 68, 33, 39, (361,407,0): 68, 33, 39, (361,408,0): 66, 31, 37, (361,409,0): 66, 31, 37, (361,410,0): 66, 31, 37, (361,411,0): 66, 31, 37, (361,412,0): 66, 31, 37, (361,413,0): 66, 31, 37, (361,414,0): 66, 31, 37, (361,415,0): 66, 31, 37, (361,416,0): 68, 32, 36, (361,417,0): 68, 32, 36, (361,418,0): 68, 32, 36, (361,419,0): 66, 31, 35, (361,420,0): 67, 31, 35, (361,421,0): 66, 30, 34, (361,422,0): 66, 30, 34, (361,423,0): 68, 29, 34, (361,424,0): 65, 24, 30, (361,425,0): 66, 25, 31, (361,426,0): 72, 27, 34, (361,427,0): 74, 29, 36, (361,428,0): 75, 28, 36, (361,429,0): 76, 26, 35, (361,430,0): 74, 24, 33, (361,431,0): 71, 24, 34, (361,432,0): 65, 25, 34, (361,433,0): 61, 25, 35, (361,434,0): 57, 24, 33, (361,435,0): 55, 24, 32, (361,436,0): 50, 23, 32, (361,437,0): 47, 24, 32, (361,438,0): 46, 25, 32, (361,439,0): 45, 26, 32, (361,440,0): 45, 28, 36, (361,441,0): 43, 28, 35, (361,442,0): 42, 26, 36, (361,443,0): 41, 25, 35, (361,444,0): 42, 25, 35, (361,445,0): 42, 25, 35, (361,446,0): 43, 25, 37, (361,447,0): 43, 27, 38, (361,448,0): 43, 27, 37, (361,449,0): 43, 27, 37, (361,450,0): 42, 26, 36, (361,451,0): 41, 25, 35, (361,452,0): 42, 26, 36, (361,453,0): 43, 28, 35, (361,454,0): 44, 29, 36, (361,455,0): 45, 30, 37, (361,456,0): 45, 30, 35, (361,457,0): 45, 30, 35, (361,458,0): 46, 29, 35, (361,459,0): 46, 30, 33, (361,460,0): 48, 32, 35, (361,461,0): 51, 35, 38, (361,462,0): 54, 38, 39, (361,463,0): 55, 39, 40, (361,464,0): 56, 40, 40, (361,465,0): 56, 40, 40, (361,466,0): 57, 41, 41, (361,467,0): 58, 42, 42, (361,468,0): 59, 43, 43, (361,469,0): 60, 44, 44, (361,470,0): 60, 44, 44, (361,471,0): 60, 44, 44, (361,472,0): 69, 53, 53, (361,473,0): 68, 52, 52, (361,474,0): 67, 51, 51, (361,475,0): 64, 48, 48, (361,476,0): 62, 46, 46, (361,477,0): 59, 43, 43, (361,478,0): 58, 42, 42, (361,479,0): 59, 41, 41, (361,480,0): 63, 43, 42, (361,481,0): 64, 44, 43, (361,482,0): 65, 45, 44, (361,483,0): 65, 45, 44, (361,484,0): 64, 44, 43, (361,485,0): 61, 41, 40, (361,486,0): 58, 38, 39, (361,487,0): 55, 35, 36, (361,488,0): 58, 38, 39, (361,489,0): 57, 37, 38, (361,490,0): 54, 34, 35, (361,491,0): 53, 33, 34, (361,492,0): 53, 33, 34, (361,493,0): 55, 35, 36, (361,494,0): 57, 37, 38, (361,495,0): 59, 39, 40, (361,496,0): 58, 40, 40, (361,497,0): 56, 40, 40, (361,498,0): 55, 39, 39, (361,499,0): 54, 38, 38, (361,500,0): 54, 36, 36, (361,501,0): 53, 35, 35, (361,502,0): 51, 33, 33, (361,503,0): 51, 33, 33, (361,504,0): 53, 33, 34, (361,505,0): 54, 34, 35, (361,506,0): 56, 34, 36, (361,507,0): 57, 35, 37, (361,508,0): 57, 35, 37, (361,509,0): 56, 34, 36, (361,510,0): 56, 31, 34, (361,511,0): 55, 30, 34, (361,512,0): 51, 28, 36, (361,513,0): 50, 27, 37, (361,514,0): 48, 25, 35, (361,515,0): 47, 24, 34, (361,516,0): 47, 24, 32, (361,517,0): 47, 24, 32, (361,518,0): 48, 25, 33, (361,519,0): 48, 25, 31, (361,520,0): 50, 27, 33, (361,521,0): 51, 28, 34, (361,522,0): 52, 30, 33, (361,523,0): 53, 31, 34, (361,524,0): 54, 32, 35, (361,525,0): 55, 33, 36, (361,526,0): 56, 34, 36, (361,527,0): 55, 35, 36, (361,528,0): 56, 38, 38, (361,529,0): 54, 36, 36, (361,530,0): 52, 34, 34, (361,531,0): 49, 31, 31, (361,532,0): 47, 28, 30, (361,533,0): 47, 28, 30, (361,534,0): 47, 28, 30, (361,535,0): 47, 28, 30, (361,536,0): 47, 28, 32, (361,537,0): 47, 28, 32, (361,538,0): 46, 27, 31, (361,539,0): 45, 26, 30, (361,540,0): 45, 26, 30, (361,541,0): 44, 25, 29, (361,542,0): 44, 25, 29, (361,543,0): 44, 25, 31, (361,544,0): 46, 25, 32, (361,545,0): 45, 24, 31, (361,546,0): 44, 23, 30, (361,547,0): 43, 22, 29, (361,548,0): 42, 21, 26, (361,549,0): 43, 22, 27, (361,550,0): 44, 23, 28, (361,551,0): 45, 24, 29, (361,552,0): 48, 28, 30, (361,553,0): 48, 28, 30, (361,554,0): 50, 30, 31, (361,555,0): 51, 31, 32, (361,556,0): 52, 32, 33, (361,557,0): 54, 34, 35, (361,558,0): 55, 35, 34, (361,559,0): 55, 35, 34, (361,560,0): 54, 36, 34, (361,561,0): 53, 35, 33, (361,562,0): 52, 34, 32, (361,563,0): 50, 32, 30, (361,564,0): 48, 30, 30, (361,565,0): 44, 28, 28, (361,566,0): 42, 28, 28, (361,567,0): 41, 27, 27, (361,568,0): 44, 32, 34, (361,569,0): 42, 30, 32, (361,570,0): 39, 28, 32, (361,571,0): 35, 26, 29, (361,572,0): 34, 25, 30, (361,573,0): 33, 24, 29, (361,574,0): 32, 23, 28, (361,575,0): 33, 24, 27, (361,576,0): 40, 30, 31, (361,577,0): 43, 33, 32, (361,578,0): 43, 38, 35, (361,579,0): 43, 42, 38, (361,580,0): 44, 46, 41, (361,581,0): 47, 52, 46, (361,582,0): 54, 59, 53, (361,583,0): 61, 63, 58, (361,584,0): 67, 68, 63, (361,585,0): 70, 66, 63, (361,586,0): 70, 65, 62, (361,587,0): 71, 63, 61, (361,588,0): 67, 62, 59, (361,589,0): 65, 61, 58, (361,590,0): 64, 60, 57, (361,591,0): 62, 61, 59, (361,592,0): 63, 58, 62, (361,593,0): 65, 60, 66, (361,594,0): 68, 61, 68, (361,595,0): 68, 61, 68, (361,596,0): 68, 57, 65, (361,597,0): 64, 53, 61, (361,598,0): 59, 46, 55, (361,599,0): 56, 43, 52, (362,0,0): 72, 55, 48, (362,1,0): 72, 55, 48, (362,2,0): 72, 55, 47, (362,3,0): 73, 56, 48, (362,4,0): 75, 58, 48, (362,5,0): 77, 60, 50, (362,6,0): 79, 63, 50, (362,7,0): 80, 64, 49, (362,8,0): 83, 67, 52, (362,9,0): 82, 66, 50, (362,10,0): 82, 67, 48, (362,11,0): 84, 69, 50, (362,12,0): 88, 73, 52, (362,13,0): 90, 75, 54, (362,14,0): 90, 75, 52, (362,15,0): 90, 74, 51, (362,16,0): 99, 79, 55, (362,17,0): 101, 79, 55, (362,18,0): 101, 79, 55, (362,19,0): 102, 80, 56, (362,20,0): 101, 79, 56, (362,21,0): 100, 78, 55, (362,22,0): 99, 77, 56, (362,23,0): 98, 76, 55, (362,24,0): 101, 79, 58, (362,25,0): 100, 78, 57, (362,26,0): 98, 75, 57, (362,27,0): 96, 73, 55, (362,28,0): 94, 71, 55, (362,29,0): 94, 71, 55, (362,30,0): 93, 70, 54, (362,31,0): 92, 71, 54, (362,32,0): 91, 69, 55, (362,33,0): 89, 70, 55, (362,34,0): 89, 70, 55, (362,35,0): 89, 70, 55, (362,36,0): 90, 71, 56, (362,37,0): 90, 71, 56, (362,38,0): 90, 71, 56, (362,39,0): 90, 71, 56, (362,40,0): 86, 67, 52, (362,41,0): 85, 66, 51, (362,42,0): 84, 65, 50, (362,43,0): 82, 63, 48, (362,44,0): 82, 63, 48, (362,45,0): 82, 63, 48, (362,46,0): 83, 64, 49, (362,47,0): 82, 64, 50, (362,48,0): 81, 63, 51, (362,49,0): 79, 63, 50, (362,50,0): 77, 61, 48, (362,51,0): 75, 59, 46, (362,52,0): 74, 58, 45, (362,53,0): 74, 58, 45, (362,54,0): 74, 58, 45, (362,55,0): 75, 59, 46, (362,56,0): 72, 56, 43, (362,57,0): 71, 55, 42, (362,58,0): 69, 53, 40, (362,59,0): 67, 51, 38, (362,60,0): 65, 49, 36, (362,61,0): 65, 49, 36, (362,62,0): 65, 49, 36, (362,63,0): 65, 49, 36, (362,64,0): 62, 46, 33, (362,65,0): 63, 47, 34, (362,66,0): 67, 51, 38, (362,67,0): 73, 55, 41, (362,68,0): 79, 61, 47, (362,69,0): 86, 67, 52, (362,70,0): 93, 72, 55, (362,71,0): 97, 74, 56, (362,72,0): 98, 75, 57, (362,73,0): 101, 76, 56, (362,74,0): 102, 75, 54, (362,75,0): 102, 76, 53, (362,76,0): 102, 74, 52, (362,77,0): 101, 73, 51, (362,78,0): 100, 72, 50, (362,79,0): 101, 70, 49, (362,80,0): 105, 73, 58, (362,81,0): 104, 72, 57, (362,82,0): 103, 70, 55, (362,83,0): 100, 68, 53, (362,84,0): 99, 67, 52, (362,85,0): 98, 67, 49, (362,86,0): 98, 67, 49, (362,87,0): 98, 67, 47, (362,88,0): 98, 67, 47, (362,89,0): 100, 69, 49, (362,90,0): 102, 71, 51, (362,91,0): 102, 71, 50, (362,92,0): 102, 71, 50, (362,93,0): 105, 74, 53, (362,94,0): 111, 80, 59, (362,95,0): 114, 86, 62, (362,96,0): 118, 93, 63, (362,97,0): 118, 98, 65, (362,98,0): 121, 100, 69, (362,99,0): 123, 104, 71, (362,100,0): 127, 108, 75, (362,101,0): 131, 115, 79, (362,102,0): 139, 123, 87, (362,103,0): 144, 131, 89, (362,104,0): 156, 145, 100, (362,105,0): 160, 152, 103, (362,106,0): 169, 162, 108, (362,107,0): 177, 172, 116, (362,108,0): 184, 180, 119, (362,109,0): 185, 184, 120, (362,110,0): 186, 185, 120, (362,111,0): 184, 185, 117, (362,112,0): 181, 184, 117, (362,113,0): 180, 185, 118, (362,114,0): 180, 185, 119, (362,115,0): 180, 187, 120, (362,116,0): 181, 187, 123, (362,117,0): 179, 188, 125, (362,118,0): 179, 189, 128, (362,119,0): 178, 189, 129, (362,120,0): 174, 189, 130, (362,121,0): 172, 190, 132, (362,122,0): 171, 190, 134, (362,123,0): 169, 190, 134, (362,124,0): 169, 189, 136, (362,125,0): 166, 189, 135, (362,126,0): 166, 189, 137, (362,127,0): 164, 188, 138, (362,128,0): 158, 186, 137, (362,129,0): 157, 186, 138, (362,130,0): 158, 187, 139, (362,131,0): 159, 188, 142, (362,132,0): 158, 190, 143, (362,133,0): 159, 190, 146, (362,134,0): 159, 192, 149, (362,135,0): 157, 192, 150, (362,136,0): 156, 193, 150, (362,137,0): 156, 193, 152, (362,138,0): 155, 193, 154, (362,139,0): 152, 193, 153, (362,140,0): 152, 192, 155, (362,141,0): 150, 192, 154, (362,142,0): 150, 192, 154, (362,143,0): 151, 191, 156, (362,144,0): 152, 189, 155, (362,145,0): 154, 189, 156, (362,146,0): 155, 190, 158, (362,147,0): 156, 193, 160, (362,148,0): 157, 194, 161, (362,149,0): 157, 196, 165, (362,150,0): 158, 197, 168, (362,151,0): 158, 198, 171, (362,152,0): 157, 200, 172, (362,153,0): 156, 200, 173, (362,154,0): 157, 201, 176, (362,155,0): 157, 202, 179, (362,156,0): 158, 203, 180, (362,157,0): 157, 205, 181, (362,158,0): 157, 205, 183, (362,159,0): 157, 206, 184, (362,160,0): 157, 208, 189, (362,161,0): 157, 208, 191, (362,162,0): 158, 209, 194, (362,163,0): 159, 210, 195, (362,164,0): 158, 210, 197, (362,165,0): 157, 209, 196, (362,166,0): 155, 209, 196, (362,167,0): 154, 208, 195, (362,168,0): 151, 204, 194, (362,169,0): 150, 203, 195, (362,170,0): 148, 203, 197, (362,171,0): 148, 203, 197, (362,172,0): 146, 203, 197, (362,173,0): 146, 203, 197, (362,174,0): 145, 201, 198, (362,175,0): 145, 201, 198, (362,176,0): 147, 206, 204, (362,177,0): 148, 206, 207, (362,178,0): 148, 206, 207, (362,179,0): 149, 207, 208, (362,180,0): 150, 208, 209, (362,181,0): 151, 209, 211, (362,182,0): 151, 209, 211, (362,183,0): 152, 210, 212, (362,184,0): 150, 208, 212, (362,185,0): 150, 208, 212, (362,186,0): 151, 209, 213, (362,187,0): 151, 208, 215, (362,188,0): 151, 208, 215, (362,189,0): 150, 207, 214, (362,190,0): 148, 205, 212, (362,191,0): 147, 204, 213, (362,192,0): 148, 205, 216, (362,193,0): 147, 204, 215, (362,194,0): 147, 203, 216, (362,195,0): 146, 203, 214, (362,196,0): 147, 200, 214, (362,197,0): 146, 200, 212, (362,198,0): 147, 199, 213, (362,199,0): 146, 198, 211, (362,200,0): 144, 196, 210, (362,201,0): 143, 195, 208, (362,202,0): 144, 193, 208, (362,203,0): 143, 192, 206, (362,204,0): 144, 191, 207, (362,205,0): 145, 193, 207, (362,206,0): 146, 193, 209, (362,207,0): 147, 195, 209, (362,208,0): 146, 194, 206, (362,209,0): 146, 194, 206, (362,210,0): 147, 195, 207, (362,211,0): 148, 196, 208, (362,212,0): 149, 197, 211, (362,213,0): 150, 198, 212, (362,214,0): 151, 199, 213, (362,215,0): 151, 199, 213, (362,216,0): 156, 203, 219, (362,217,0): 156, 203, 219, (362,218,0): 156, 203, 221, (362,219,0): 157, 204, 222, (362,220,0): 157, 204, 222, (362,221,0): 157, 204, 222, (362,222,0): 157, 204, 224, (362,223,0): 158, 205, 225, (362,224,0): 155, 203, 223, (362,225,0): 155, 203, 223, (362,226,0): 155, 203, 225, (362,227,0): 155, 203, 225, (362,228,0): 153, 203, 226, (362,229,0): 153, 203, 228, (362,230,0): 152, 203, 230, (362,231,0): 152, 203, 230, (362,232,0): 152, 203, 232, (362,233,0): 150, 204, 232, (362,234,0): 151, 204, 235, (362,235,0): 152, 205, 237, (362,236,0): 153, 207, 241, (362,237,0): 154, 208, 242, (362,238,0): 155, 209, 243, (362,239,0): 155, 209, 243, (362,240,0): 153, 209, 244, (362,241,0): 153, 209, 244, (362,242,0): 153, 209, 244, (362,243,0): 153, 209, 244, (362,244,0): 153, 209, 244, (362,245,0): 153, 209, 244, (362,246,0): 153, 209, 246, (362,247,0): 153, 209, 246, (362,248,0): 149, 205, 242, (362,249,0): 149, 205, 242, (362,250,0): 150, 206, 243, (362,251,0): 152, 208, 245, (362,252,0): 153, 209, 246, (362,253,0): 155, 211, 248, (362,254,0): 156, 212, 249, (362,255,0): 157, 211, 249, (362,256,0): 158, 210, 250, (362,257,0): 161, 210, 251, (362,258,0): 160, 212, 252, (362,259,0): 161, 213, 253, (362,260,0): 163, 215, 255, (362,261,0): 164, 216, 255, (362,262,0): 164, 217, 255, (362,263,0): 165, 218, 255, (362,264,0): 163, 216, 255, (362,265,0): 162, 217, 255, (362,266,0): 162, 217, 255, (362,267,0): 162, 217, 255, (362,268,0): 160, 218, 255, (362,269,0): 160, 218, 255, (362,270,0): 160, 218, 255, (362,271,0): 160, 218, 255, (362,272,0): 162, 215, 255, (362,273,0): 162, 215, 255, (362,274,0): 162, 215, 255, (362,275,0): 162, 215, 255, (362,276,0): 161, 213, 255, (362,277,0): 159, 211, 255, (362,278,0): 157, 209, 255, (362,279,0): 156, 208, 255, (362,280,0): 153, 205, 255, (362,281,0): 152, 203, 255, (362,282,0): 152, 203, 255, (362,283,0): 152, 203, 255, (362,284,0): 151, 202, 255, (362,285,0): 150, 201, 255, (362,286,0): 150, 201, 255, (362,287,0): 150, 201, 255, (362,288,0): 148, 200, 255, (362,289,0): 147, 199, 255, (362,290,0): 146, 198, 255, (362,291,0): 148, 200, 255, (362,292,0): 152, 204, 255, (362,293,0): 155, 206, 255, (362,294,0): 154, 205, 255, (362,295,0): 153, 204, 255, (362,296,0): 155, 205, 255, (362,297,0): 155, 205, 255, (362,298,0): 155, 205, 255, (362,299,0): 158, 205, 255, (362,300,0): 158, 205, 255, (362,301,0): 159, 206, 255, (362,302,0): 159, 206, 255, (362,303,0): 162, 205, 255, (362,304,0): 161, 199, 255, (362,305,0): 160, 196, 255, (362,306,0): 159, 198, 255, (362,307,0): 164, 203, 255, (362,308,0): 168, 205, 255, (362,309,0): 167, 202, 255, (362,310,0): 170, 200, 254, (362,311,0): 178, 199, 252, (362,312,0): 185, 198, 251, (362,313,0): 182, 185, 236, (362,314,0): 169, 163, 209, (362,315,0): 145, 133, 173, (362,316,0): 120, 101, 133, (362,317,0): 99, 76, 102, (362,318,0): 89, 64, 85, (362,319,0): 85, 61, 75, (362,320,0): 78, 57, 66, (362,321,0): 74, 55, 59, (362,322,0): 71, 50, 55, (362,323,0): 71, 49, 52, (362,324,0): 74, 49, 52, (362,325,0): 75, 51, 51, (362,326,0): 74, 48, 49, (362,327,0): 72, 46, 47, (362,328,0): 70, 44, 47, (362,329,0): 69, 43, 46, (362,330,0): 66, 39, 44, (362,331,0): 62, 37, 43, (362,332,0): 58, 35, 43, (362,333,0): 56, 35, 44, (362,334,0): 55, 33, 45, (362,335,0): 55, 34, 43, (362,336,0): 55, 33, 36, (362,337,0): 56, 34, 36, (362,338,0): 55, 35, 37, (362,339,0): 55, 35, 37, (362,340,0): 55, 36, 40, (362,341,0): 56, 37, 41, (362,342,0): 57, 36, 43, (362,343,0): 57, 36, 43, (362,344,0): 57, 34, 42, (362,345,0): 57, 34, 40, (362,346,0): 60, 33, 38, (362,347,0): 63, 34, 38, (362,348,0): 67, 35, 38, (362,349,0): 71, 37, 38, (362,350,0): 74, 40, 39, (362,351,0): 78, 40, 37, (362,352,0): 93, 49, 40, (362,353,0): 96, 48, 38, (362,354,0): 98, 48, 41, (362,355,0): 99, 46, 40, (362,356,0): 97, 41, 40, (362,357,0): 93, 39, 39, (362,358,0): 88, 33, 36, (362,359,0): 83, 33, 36, (362,360,0): 82, 33, 36, (362,361,0): 80, 34, 37, (362,362,0): 76, 34, 36, (362,363,0): 76, 34, 36, (362,364,0): 77, 35, 37, (362,365,0): 79, 37, 39, (362,366,0): 80, 38, 40, (362,367,0): 81, 39, 41, (362,368,0): 79, 37, 39, (362,369,0): 79, 37, 39, (362,370,0): 79, 37, 39, (362,371,0): 79, 37, 39, (362,372,0): 79, 37, 39, (362,373,0): 79, 37, 39, (362,374,0): 79, 37, 39, (362,375,0): 79, 37, 39, (362,376,0): 74, 32, 34, (362,377,0): 74, 32, 34, (362,378,0): 75, 33, 35, (362,379,0): 75, 33, 35, (362,380,0): 76, 34, 36, (362,381,0): 76, 34, 36, (362,382,0): 76, 34, 36, (362,383,0): 76, 34, 36, (362,384,0): 77, 32, 37, (362,385,0): 78, 33, 36, (362,386,0): 79, 34, 37, (362,387,0): 80, 36, 37, (362,388,0): 78, 36, 37, (362,389,0): 77, 36, 34, (362,390,0): 76, 35, 33, (362,391,0): 75, 34, 32, (362,392,0): 77, 35, 36, (362,393,0): 76, 36, 36, (362,394,0): 75, 35, 36, (362,395,0): 74, 35, 38, (362,396,0): 73, 34, 39, (362,397,0): 71, 34, 41, (362,398,0): 70, 33, 41, (362,399,0): 69, 34, 41, (362,400,0): 72, 37, 44, (362,401,0): 69, 36, 43, (362,402,0): 68, 35, 42, (362,403,0): 67, 34, 41, (362,404,0): 65, 32, 39, (362,405,0): 64, 31, 38, (362,406,0): 63, 30, 37, (362,407,0): 63, 30, 37, (362,408,0): 62, 29, 36, (362,409,0): 62, 29, 36, (362,410,0): 62, 29, 36, (362,411,0): 62, 29, 36, (362,412,0): 62, 29, 36, (362,413,0): 62, 29, 36, (362,414,0): 62, 29, 36, (362,415,0): 62, 30, 35, (362,416,0): 65, 30, 34, (362,417,0): 65, 30, 34, (362,418,0): 65, 30, 34, (362,419,0): 62, 30, 33, (362,420,0): 64, 29, 33, (362,421,0): 63, 28, 32, (362,422,0): 63, 28, 32, (362,423,0): 62, 27, 31, (362,424,0): 57, 21, 25, (362,425,0): 58, 22, 26, (362,426,0): 63, 22, 28, (362,427,0): 66, 23, 30, (362,428,0): 70, 25, 32, (362,429,0): 72, 25, 33, (362,430,0): 74, 27, 35, (362,431,0): 73, 27, 37, (362,432,0): 70, 28, 38, (362,433,0): 65, 28, 36, (362,434,0): 61, 25, 35, (362,435,0): 55, 22, 31, (362,436,0): 51, 21, 29, (362,437,0): 47, 22, 28, (362,438,0): 45, 22, 30, (362,439,0): 44, 25, 31, (362,440,0): 41, 24, 32, (362,441,0): 41, 24, 32, (362,442,0): 40, 25, 32, (362,443,0): 40, 25, 32, (362,444,0): 41, 25, 35, (362,445,0): 43, 27, 37, (362,446,0): 45, 29, 39, (362,447,0): 46, 30, 40, (362,448,0): 44, 28, 39, (362,449,0): 41, 28, 38, (362,450,0): 40, 27, 37, (362,451,0): 39, 26, 35, (362,452,0): 41, 25, 35, (362,453,0): 41, 25, 35, (362,454,0): 42, 27, 34, (362,455,0): 43, 28, 35, (362,456,0): 44, 27, 35, (362,457,0): 44, 27, 33, (362,458,0): 47, 28, 34, (362,459,0): 49, 30, 36, (362,460,0): 51, 32, 36, (362,461,0): 54, 35, 39, (362,462,0): 57, 38, 42, (362,463,0): 59, 40, 42, (362,464,0): 58, 42, 42, (362,465,0): 58, 42, 42, (362,466,0): 59, 43, 43, (362,467,0): 59, 43, 43, (362,468,0): 59, 43, 43, (362,469,0): 58, 42, 42, (362,470,0): 59, 43, 43, (362,471,0): 60, 44, 44, (362,472,0): 69, 53, 53, (362,473,0): 69, 53, 53, (362,474,0): 67, 51, 51, (362,475,0): 66, 50, 50, (362,476,0): 64, 48, 48, (362,477,0): 62, 46, 46, (362,478,0): 61, 45, 45, (362,479,0): 62, 44, 44, (362,480,0): 63, 43, 42, (362,481,0): 65, 44, 41, (362,482,0): 66, 45, 42, (362,483,0): 66, 45, 42, (362,484,0): 64, 43, 42, (362,485,0): 61, 40, 39, (362,486,0): 57, 36, 35, (362,487,0): 55, 34, 33, (362,488,0): 57, 35, 37, (362,489,0): 55, 33, 35, (362,490,0): 53, 31, 34, (362,491,0): 52, 30, 33, (362,492,0): 52, 30, 33, (362,493,0): 53, 31, 34, (362,494,0): 55, 33, 36, (362,495,0): 55, 35, 37, (362,496,0): 57, 39, 39, (362,497,0): 56, 40, 40, (362,498,0): 57, 41, 41, (362,499,0): 57, 41, 41, (362,500,0): 58, 40, 40, (362,501,0): 56, 38, 38, (362,502,0): 54, 36, 36, (362,503,0): 52, 34, 34, (362,504,0): 52, 32, 33, (362,505,0): 53, 33, 34, (362,506,0): 55, 33, 35, (362,507,0): 56, 34, 36, (362,508,0): 56, 34, 36, (362,509,0): 56, 34, 36, (362,510,0): 57, 32, 35, (362,511,0): 56, 31, 35, (362,512,0): 50, 27, 35, (362,513,0): 48, 27, 36, (362,514,0): 47, 26, 33, (362,515,0): 46, 25, 32, (362,516,0): 45, 24, 31, (362,517,0): 45, 24, 31, (362,518,0): 46, 25, 30, (362,519,0): 47, 26, 31, (362,520,0): 48, 27, 32, (362,521,0): 48, 28, 30, (362,522,0): 49, 29, 31, (362,523,0): 50, 30, 32, (362,524,0): 51, 31, 32, (362,525,0): 52, 32, 33, (362,526,0): 53, 33, 34, (362,527,0): 54, 34, 35, (362,528,0): 53, 34, 36, (362,529,0): 52, 33, 35, (362,530,0): 51, 32, 34, (362,531,0): 49, 30, 32, (362,532,0): 49, 30, 32, (362,533,0): 49, 30, 32, (362,534,0): 49, 30, 32, (362,535,0): 50, 31, 33, (362,536,0): 49, 30, 32, (362,537,0): 48, 29, 31, (362,538,0): 46, 27, 29, (362,539,0): 44, 25, 27, (362,540,0): 43, 24, 26, (362,541,0): 44, 25, 27, (362,542,0): 46, 27, 29, (362,543,0): 47, 28, 32, (362,544,0): 47, 26, 33, (362,545,0): 46, 25, 32, (362,546,0): 44, 23, 30, (362,547,0): 42, 21, 28, (362,548,0): 42, 21, 26, (362,549,0): 41, 20, 25, (362,550,0): 42, 21, 26, (362,551,0): 42, 21, 26, (362,552,0): 47, 27, 29, (362,553,0): 47, 27, 29, (362,554,0): 49, 29, 30, (362,555,0): 50, 30, 31, (362,556,0): 52, 32, 33, (362,557,0): 54, 34, 35, (362,558,0): 55, 35, 34, (362,559,0): 56, 36, 35, (362,560,0): 57, 38, 34, (362,561,0): 56, 37, 33, (362,562,0): 55, 36, 32, (362,563,0): 51, 33, 29, (362,564,0): 49, 31, 29, (362,565,0): 44, 28, 28, (362,566,0): 42, 28, 28, (362,567,0): 41, 27, 27, (362,568,0): 42, 30, 32, (362,569,0): 41, 29, 31, (362,570,0): 38, 27, 31, (362,571,0): 35, 26, 31, (362,572,0): 33, 23, 31, (362,573,0): 30, 23, 30, (362,574,0): 30, 23, 30, (362,575,0): 32, 23, 28, (362,576,0): 37, 27, 28, (362,577,0): 40, 30, 29, (362,578,0): 40, 35, 32, (362,579,0): 39, 38, 34, (362,580,0): 41, 43, 38, (362,581,0): 45, 50, 44, (362,582,0): 54, 59, 53, (362,583,0): 62, 64, 59, (362,584,0): 65, 66, 61, (362,585,0): 68, 64, 61, (362,586,0): 68, 63, 60, (362,587,0): 69, 61, 59, (362,588,0): 66, 61, 58, (362,589,0): 64, 60, 57, (362,590,0): 63, 59, 56, (362,591,0): 61, 60, 58, (362,592,0): 62, 57, 61, (362,593,0): 63, 58, 64, (362,594,0): 66, 59, 66, (362,595,0): 66, 59, 66, (362,596,0): 67, 56, 64, (362,597,0): 63, 52, 60, (362,598,0): 59, 46, 55, (362,599,0): 56, 43, 52, (363,0,0): 72, 55, 48, (363,1,0): 72, 55, 48, (363,2,0): 72, 55, 47, (363,3,0): 73, 56, 48, (363,4,0): 75, 58, 48, (363,5,0): 77, 60, 50, (363,6,0): 79, 63, 50, (363,7,0): 80, 64, 49, (363,8,0): 82, 66, 51, (363,9,0): 82, 66, 50, (363,10,0): 83, 68, 49, (363,11,0): 85, 70, 51, (363,12,0): 88, 73, 52, (363,13,0): 90, 75, 54, (363,14,0): 91, 76, 53, (363,15,0): 92, 76, 51, (363,16,0): 101, 81, 56, (363,17,0): 102, 80, 56, (363,18,0): 102, 80, 56, (363,19,0): 101, 79, 55, (363,20,0): 101, 79, 56, (363,21,0): 100, 78, 55, (363,22,0): 99, 77, 56, (363,23,0): 99, 77, 56, (363,24,0): 102, 80, 59, (363,25,0): 101, 79, 58, (363,26,0): 100, 77, 59, (363,27,0): 99, 76, 58, (363,28,0): 97, 74, 58, (363,29,0): 96, 73, 57, (363,30,0): 96, 73, 57, (363,31,0): 95, 74, 57, (363,32,0): 91, 69, 55, (363,33,0): 90, 71, 56, (363,34,0): 90, 71, 56, (363,35,0): 90, 71, 56, (363,36,0): 91, 72, 57, (363,37,0): 91, 72, 57, (363,38,0): 91, 72, 57, (363,39,0): 92, 73, 58, (363,40,0): 88, 69, 54, (363,41,0): 87, 68, 53, (363,42,0): 85, 66, 51, (363,43,0): 84, 65, 50, (363,44,0): 84, 65, 50, (363,45,0): 84, 65, 50, (363,46,0): 85, 66, 51, (363,47,0): 85, 66, 51, (363,48,0): 84, 66, 52, (363,49,0): 81, 65, 50, (363,50,0): 80, 62, 50, (363,51,0): 78, 62, 47, (363,52,0): 78, 60, 48, (363,53,0): 76, 60, 45, (363,54,0): 78, 60, 48, (363,55,0): 77, 61, 46, (363,56,0): 76, 58, 46, (363,57,0): 74, 58, 43, (363,58,0): 73, 55, 43, (363,59,0): 71, 55, 40, (363,60,0): 70, 52, 40, (363,61,0): 68, 52, 37, (363,62,0): 68, 50, 38, (363,63,0): 67, 51, 38, (363,64,0): 62, 46, 33, (363,65,0): 62, 46, 33, (363,66,0): 63, 47, 34, (363,67,0): 65, 49, 36, (363,68,0): 71, 53, 41, (363,69,0): 78, 60, 46, (363,70,0): 84, 65, 50, (363,71,0): 90, 69, 52, (363,72,0): 93, 70, 54, (363,73,0): 95, 72, 54, (363,74,0): 99, 74, 54, (363,75,0): 102, 75, 54, (363,76,0): 103, 75, 54, (363,77,0): 103, 75, 53, (363,78,0): 101, 73, 51, (363,79,0): 100, 72, 51, (363,80,0): 102, 73, 57, (363,81,0): 101, 72, 58, (363,82,0): 100, 68, 53, (363,83,0): 97, 65, 50, (363,84,0): 96, 64, 49, (363,85,0): 95, 63, 48, (363,86,0): 96, 65, 47, (363,87,0): 97, 66, 48, (363,88,0): 96, 65, 45, (363,89,0): 97, 66, 46, (363,90,0): 99, 68, 48, (363,91,0): 98, 67, 47, (363,92,0): 98, 67, 46, (363,93,0): 101, 70, 49, (363,94,0): 107, 76, 55, (363,95,0): 109, 81, 57, (363,96,0): 115, 89, 62, (363,97,0): 118, 95, 64, (363,98,0): 122, 98, 70, (363,99,0): 123, 102, 71, (363,100,0): 125, 104, 75, (363,101,0): 126, 107, 75, (363,102,0): 131, 112, 79, (363,103,0): 132, 116, 80, (363,104,0): 143, 130, 88, (363,105,0): 150, 139, 93, (363,106,0): 163, 153, 102, (363,107,0): 175, 168, 113, (363,108,0): 184, 178, 118, (363,109,0): 187, 183, 120, (363,110,0): 187, 183, 119, (363,111,0): 184, 183, 116, (363,112,0): 187, 188, 122, (363,113,0): 187, 188, 122, (363,114,0): 186, 188, 123, (363,115,0): 186, 188, 123, (363,116,0): 183, 188, 124, (363,117,0): 182, 188, 124, (363,118,0): 180, 188, 128, (363,119,0): 179, 189, 129, (363,120,0): 175, 189, 130, (363,121,0): 173, 188, 131, (363,122,0): 171, 188, 134, (363,123,0): 170, 189, 134, (363,124,0): 169, 187, 135, (363,125,0): 167, 187, 134, (363,126,0): 167, 187, 136, (363,127,0): 164, 188, 138, (363,128,0): 159, 187, 139, (363,129,0): 158, 187, 141, (363,130,0): 158, 187, 141, (363,131,0): 159, 188, 144, (363,132,0): 158, 189, 145, (363,133,0): 159, 190, 148, (363,134,0): 158, 190, 149, (363,135,0): 156, 191, 151, (363,136,0): 156, 191, 151, (363,137,0): 155, 191, 153, (363,138,0): 154, 192, 155, (363,139,0): 152, 192, 155, (363,140,0): 152, 192, 157, (363,141,0): 151, 193, 157, (363,142,0): 151, 193, 157, (363,143,0): 152, 192, 158, (363,144,0): 152, 189, 156, (363,145,0): 154, 189, 157, (363,146,0): 154, 191, 158, (363,147,0): 156, 193, 162, (363,148,0): 155, 194, 163, (363,149,0): 157, 196, 167, (363,150,0): 157, 197, 170, (363,151,0): 156, 199, 172, (363,152,0): 158, 202, 175, (363,153,0): 158, 202, 177, (363,154,0): 157, 202, 179, (363,155,0): 156, 204, 180, (363,156,0): 157, 205, 183, (363,157,0): 158, 206, 184, (363,158,0): 157, 206, 184, (363,159,0): 157, 206, 185, (363,160,0): 156, 207, 188, (363,161,0): 157, 208, 191, (363,162,0): 157, 208, 193, (363,163,0): 158, 209, 194, (363,164,0): 156, 208, 195, (363,165,0): 155, 207, 194, (363,166,0): 153, 207, 194, (363,167,0): 152, 206, 193, (363,168,0): 149, 202, 194, (363,169,0): 149, 202, 194, (363,170,0): 147, 202, 196, (363,171,0): 147, 202, 196, (363,172,0): 145, 202, 196, (363,173,0): 145, 202, 196, (363,174,0): 145, 201, 198, (363,175,0): 145, 201, 198, (363,176,0): 144, 202, 203, (363,177,0): 145, 203, 204, (363,178,0): 146, 204, 205, (363,179,0): 147, 205, 206, (363,180,0): 148, 206, 208, (363,181,0): 150, 208, 210, (363,182,0): 151, 209, 211, (363,183,0): 151, 209, 211, (363,184,0): 150, 208, 212, (363,185,0): 151, 209, 213, (363,186,0): 151, 208, 215, (363,187,0): 152, 209, 216, (363,188,0): 151, 208, 215, (363,189,0): 150, 207, 214, (363,190,0): 148, 205, 214, (363,191,0): 147, 204, 215, (363,192,0): 148, 204, 217, (363,193,0): 147, 203, 216, (363,194,0): 147, 203, 216, (363,195,0): 145, 201, 214, (363,196,0): 146, 199, 213, (363,197,0): 145, 198, 212, (363,198,0): 145, 197, 211, (363,199,0): 144, 196, 210, (363,200,0): 143, 195, 209, (363,201,0): 142, 194, 208, (363,202,0): 143, 192, 207, (363,203,0): 142, 191, 206, (363,204,0): 143, 190, 206, (363,205,0): 144, 191, 207, (363,206,0): 145, 192, 208, (363,207,0): 146, 193, 209, (363,208,0): 147, 194, 210, (363,209,0): 147, 194, 210, (363,210,0): 147, 194, 210, (363,211,0): 148, 195, 211, (363,212,0): 149, 196, 212, (363,213,0): 150, 197, 215, (363,214,0): 150, 197, 215, (363,215,0): 150, 197, 215, (363,216,0): 155, 202, 222, (363,217,0): 155, 202, 222, (363,218,0): 155, 201, 224, (363,219,0): 155, 201, 224, (363,220,0): 155, 201, 224, (363,221,0): 155, 201, 224, (363,222,0): 156, 202, 225, (363,223,0): 156, 202, 226, (363,224,0): 154, 202, 225, (363,225,0): 154, 202, 225, (363,226,0): 154, 201, 227, (363,227,0): 155, 202, 228, (363,228,0): 155, 202, 230, (363,229,0): 154, 204, 231, (363,230,0): 154, 203, 233, (363,231,0): 153, 204, 235, (363,232,0): 151, 202, 233, (363,233,0): 152, 202, 235, (363,234,0): 153, 203, 238, (363,235,0): 152, 205, 239, (363,236,0): 154, 206, 243, (363,237,0): 154, 208, 246, (363,238,0): 155, 209, 247, (363,239,0): 156, 210, 248, (363,240,0): 154, 208, 246, (363,241,0): 153, 209, 246, (363,242,0): 153, 209, 246, (363,243,0): 153, 209, 246, (363,244,0): 153, 209, 246, (363,245,0): 153, 209, 246, (363,246,0): 153, 209, 246, (363,247,0): 153, 209, 246, (363,248,0): 149, 205, 242, (363,249,0): 150, 206, 243, (363,250,0): 151, 207, 244, (363,251,0): 152, 208, 245, (363,252,0): 153, 209, 246, (363,253,0): 154, 210, 247, (363,254,0): 155, 211, 248, (363,255,0): 157, 211, 249, (363,256,0): 158, 209, 252, (363,257,0): 160, 209, 252, (363,258,0): 159, 210, 255, (363,259,0): 160, 211, 254, (363,260,0): 162, 213, 255, (363,261,0): 163, 214, 255, (363,262,0): 163, 216, 255, (363,263,0): 163, 216, 255, (363,264,0): 161, 216, 255, (363,265,0): 161, 216, 255, (363,266,0): 161, 216, 255, (363,267,0): 161, 216, 255, (363,268,0): 159, 217, 255, (363,269,0): 159, 217, 255, (363,270,0): 159, 217, 255, (363,271,0): 159, 217, 255, (363,272,0): 160, 215, 255, (363,273,0): 162, 215, 255, (363,274,0): 162, 215, 255, (363,275,0): 162, 215, 255, (363,276,0): 161, 214, 255, (363,277,0): 159, 211, 255, (363,278,0): 157, 209, 255, (363,279,0): 156, 208, 255, (363,280,0): 152, 204, 254, (363,281,0): 152, 203, 255, (363,282,0): 152, 203, 255, (363,283,0): 151, 202, 255, (363,284,0): 151, 202, 255, (363,285,0): 150, 201, 255, (363,286,0): 150, 200, 255, (363,287,0): 148, 200, 255, (363,288,0): 146, 201, 255, (363,289,0): 144, 199, 255, (363,290,0): 146, 198, 255, (363,291,0): 149, 201, 255, (363,292,0): 153, 205, 255, (363,293,0): 156, 209, 255, (363,294,0): 156, 207, 255, (363,295,0): 155, 206, 255, (363,296,0): 156, 206, 255, (363,297,0): 156, 206, 255, (363,298,0): 156, 206, 255, (363,299,0): 156, 206, 255, (363,300,0): 158, 205, 255, (363,301,0): 158, 206, 255, (363,302,0): 158, 205, 255, (363,303,0): 160, 206, 255, (363,304,0): 162, 201, 255, (363,305,0): 162, 198, 255, (363,306,0): 163, 199, 255, (363,307,0): 166, 202, 255, (363,308,0): 170, 207, 255, (363,309,0): 173, 206, 255, (363,310,0): 177, 202, 255, (363,311,0): 183, 200, 252, (363,312,0): 180, 188, 237, (363,313,0): 169, 168, 212, (363,314,0): 147, 136, 176, (363,315,0): 123, 106, 138, (363,316,0): 103, 83, 108, (363,317,0): 92, 69, 87, (363,318,0): 88, 61, 76, (363,319,0): 83, 60, 70, (363,320,0): 75, 54, 59, (363,321,0): 71, 52, 54, (363,322,0): 69, 49, 51, (363,323,0): 69, 49, 50, (363,324,0): 72, 51, 50, (363,325,0): 74, 50, 50, (363,326,0): 73, 47, 48, (363,327,0): 71, 45, 46, (363,328,0): 69, 43, 46, (363,329,0): 67, 42, 45, (363,330,0): 65, 40, 46, (363,331,0): 60, 37, 45, (363,332,0): 57, 36, 45, (363,333,0): 55, 35, 44, (363,334,0): 55, 35, 46, (363,335,0): 55, 35, 44, (363,336,0): 55, 35, 37, (363,337,0): 56, 34, 36, (363,338,0): 55, 35, 37, (363,339,0): 56, 36, 38, (363,340,0): 55, 36, 40, (363,341,0): 56, 37, 41, (363,342,0): 57, 36, 43, (363,343,0): 58, 37, 42, (363,344,0): 59, 36, 42, (363,345,0): 61, 36, 40, (363,346,0): 64, 35, 39, (363,347,0): 66, 36, 38, (363,348,0): 71, 37, 38, (363,349,0): 75, 39, 39, (363,350,0): 77, 42, 40, (363,351,0): 82, 42, 40, (363,352,0): 95, 50, 44, (363,353,0): 96, 47, 40, (363,354,0): 94, 45, 38, (363,355,0): 92, 43, 38, (363,356,0): 89, 39, 38, (363,357,0): 86, 36, 37, (363,358,0): 83, 34, 37, (363,359,0): 82, 33, 36, (363,360,0): 81, 35, 38, (363,361,0): 79, 34, 37, (363,362,0): 79, 34, 37, (363,363,0): 77, 35, 37, (363,364,0): 78, 36, 37, (363,365,0): 80, 38, 39, (363,366,0): 81, 39, 40, (363,367,0): 83, 41, 42, (363,368,0): 79, 37, 39, (363,369,0): 79, 37, 39, (363,370,0): 79, 37, 39, (363,371,0): 80, 38, 40, (363,372,0): 80, 38, 40, (363,373,0): 81, 39, 41, (363,374,0): 81, 39, 41, (363,375,0): 81, 39, 41, (363,376,0): 74, 32, 34, (363,377,0): 74, 32, 34, (363,378,0): 75, 33, 35, (363,379,0): 75, 33, 35, (363,380,0): 75, 33, 35, (363,381,0): 75, 33, 35, (363,382,0): 75, 33, 35, (363,383,0): 75, 33, 35, (363,384,0): 77, 32, 37, (363,385,0): 78, 33, 38, (363,386,0): 79, 34, 37, (363,387,0): 78, 36, 38, (363,388,0): 78, 36, 37, (363,389,0): 77, 35, 36, (363,390,0): 76, 35, 33, (363,391,0): 74, 34, 32, (363,392,0): 74, 34, 34, (363,393,0): 73, 35, 34, (363,394,0): 73, 34, 37, (363,395,0): 72, 33, 38, (363,396,0): 70, 33, 40, (363,397,0): 69, 32, 40, (363,398,0): 69, 31, 42, (363,399,0): 67, 31, 41, (363,400,0): 69, 36, 43, (363,401,0): 67, 36, 42, (363,402,0): 67, 34, 41, (363,403,0): 64, 33, 39, (363,404,0): 63, 30, 37, (363,405,0): 60, 29, 35, (363,406,0): 60, 27, 34, (363,407,0): 58, 27, 33, (363,408,0): 61, 28, 35, (363,409,0): 60, 29, 35, (363,410,0): 61, 28, 35, (363,411,0): 60, 29, 35, (363,412,0): 61, 28, 35, (363,413,0): 60, 29, 35, (363,414,0): 61, 28, 35, (363,415,0): 61, 28, 35, (363,416,0): 63, 28, 34, (363,417,0): 63, 28, 32, (363,418,0): 60, 28, 31, (363,419,0): 60, 28, 31, (363,420,0): 58, 28, 30, (363,421,0): 58, 28, 30, (363,422,0): 57, 27, 29, (363,423,0): 57, 27, 29, (363,424,0): 54, 22, 25, (363,425,0): 53, 21, 24, (363,426,0): 56, 20, 24, (363,427,0): 59, 20, 25, (363,428,0): 62, 21, 27, (363,429,0): 66, 23, 30, (363,430,0): 71, 26, 33, (363,431,0): 72, 26, 36, (363,432,0): 73, 32, 40, (363,433,0): 69, 29, 38, (363,434,0): 63, 25, 36, (363,435,0): 56, 23, 32, (363,436,0): 52, 21, 29, (363,437,0): 48, 21, 28, (363,438,0): 45, 22, 30, (363,439,0): 44, 23, 30, (363,440,0): 41, 21, 30, (363,441,0): 39, 22, 30, (363,442,0): 39, 22, 30, (363,443,0): 40, 25, 32, (363,444,0): 42, 26, 36, (363,445,0): 45, 29, 39, (363,446,0): 47, 31, 41, (363,447,0): 49, 33, 43, (363,448,0): 42, 29, 39, (363,449,0): 41, 28, 38, (363,450,0): 40, 27, 37, (363,451,0): 38, 25, 35, (363,452,0): 39, 23, 33, (363,453,0): 39, 23, 33, (363,454,0): 40, 24, 34, (363,455,0): 41, 24, 32, (363,456,0): 42, 25, 33, (363,457,0): 45, 25, 34, (363,458,0): 47, 28, 34, (363,459,0): 49, 30, 36, (363,460,0): 53, 32, 39, (363,461,0): 56, 35, 40, (363,462,0): 59, 38, 43, (363,463,0): 60, 39, 44, (363,464,0): 61, 42, 44, (363,465,0): 60, 44, 44, (363,466,0): 61, 45, 45, (363,467,0): 60, 44, 44, (363,468,0): 58, 42, 42, (363,469,0): 57, 41, 41, (363,470,0): 58, 42, 42, (363,471,0): 60, 44, 44, (363,472,0): 67, 51, 51, (363,473,0): 67, 51, 51, (363,474,0): 66, 50, 50, (363,475,0): 64, 48, 48, (363,476,0): 63, 47, 47, (363,477,0): 62, 46, 46, (363,478,0): 61, 45, 45, (363,479,0): 62, 44, 42, (363,480,0): 64, 45, 41, (363,481,0): 65, 44, 41, (363,482,0): 66, 45, 42, (363,483,0): 66, 45, 42, (363,484,0): 63, 42, 41, (363,485,0): 60, 39, 38, (363,486,0): 56, 35, 34, (363,487,0): 54, 33, 32, (363,488,0): 55, 33, 35, (363,489,0): 54, 32, 34, (363,490,0): 52, 30, 33, (363,491,0): 51, 29, 32, (363,492,0): 50, 28, 31, (363,493,0): 51, 29, 32, (363,494,0): 52, 29, 35, (363,495,0): 52, 31, 36, (363,496,0): 54, 35, 37, (363,497,0): 54, 38, 38, (363,498,0): 56, 40, 40, (363,499,0): 58, 42, 42, (363,500,0): 60, 42, 42, (363,501,0): 57, 39, 39, (363,502,0): 54, 36, 36, (363,503,0): 52, 34, 34, (363,504,0): 52, 32, 33, (363,505,0): 52, 32, 33, (363,506,0): 54, 32, 34, (363,507,0): 55, 33, 35, (363,508,0): 55, 33, 35, (363,509,0): 55, 33, 35, (363,510,0): 57, 32, 35, (363,511,0): 55, 33, 36, (363,512,0): 50, 27, 35, (363,513,0): 48, 27, 34, (363,514,0): 47, 26, 33, (363,515,0): 45, 24, 31, (363,516,0): 45, 24, 31, (363,517,0): 45, 24, 29, (363,518,0): 46, 25, 30, (363,519,0): 46, 26, 28, (363,520,0): 47, 27, 29, (363,521,0): 47, 27, 29, (363,522,0): 48, 28, 30, (363,523,0): 49, 29, 30, (363,524,0): 50, 30, 31, (363,525,0): 51, 31, 32, (363,526,0): 52, 32, 33, (363,527,0): 52, 32, 33, (363,528,0): 50, 31, 33, (363,529,0): 50, 31, 33, (363,530,0): 50, 31, 33, (363,531,0): 50, 31, 33, (363,532,0): 51, 32, 34, (363,533,0): 51, 32, 34, (363,534,0): 52, 33, 35, (363,535,0): 52, 33, 35, (363,536,0): 52, 33, 35, (363,537,0): 50, 31, 33, (363,538,0): 46, 27, 29, (363,539,0): 44, 25, 27, (363,540,0): 43, 24, 26, (363,541,0): 45, 26, 28, (363,542,0): 47, 28, 30, (363,543,0): 49, 30, 32, (363,544,0): 49, 28, 33, (363,545,0): 47, 26, 33, (363,546,0): 45, 24, 31, (363,547,0): 43, 22, 29, (363,548,0): 42, 21, 26, (363,549,0): 41, 20, 25, (363,550,0): 41, 20, 25, (363,551,0): 42, 21, 26, (363,552,0): 46, 26, 28, (363,553,0): 47, 27, 29, (363,554,0): 49, 29, 30, (363,555,0): 51, 31, 32, (363,556,0): 53, 33, 34, (363,557,0): 55, 35, 36, (363,558,0): 56, 36, 35, (363,559,0): 57, 37, 36, (363,560,0): 59, 40, 36, (363,561,0): 58, 39, 35, (363,562,0): 56, 37, 33, (363,563,0): 53, 34, 30, (363,564,0): 49, 31, 29, (363,565,0): 45, 30, 27, (363,566,0): 42, 26, 26, (363,567,0): 40, 26, 26, (363,568,0): 41, 29, 31, (363,569,0): 38, 28, 29, (363,570,0): 36, 25, 31, (363,571,0): 33, 24, 29, (363,572,0): 30, 23, 30, (363,573,0): 30, 23, 30, (363,574,0): 30, 23, 30, (363,575,0): 32, 23, 28, (363,576,0): 35, 25, 26, (363,577,0): 37, 27, 26, (363,578,0): 37, 32, 29, (363,579,0): 37, 36, 32, (363,580,0): 39, 41, 36, (363,581,0): 44, 49, 43, (363,582,0): 53, 58, 52, (363,583,0): 62, 64, 59, (363,584,0): 60, 61, 56, (363,585,0): 63, 59, 56, (363,586,0): 63, 58, 55, (363,587,0): 65, 57, 55, (363,588,0): 62, 57, 54, (363,589,0): 60, 56, 53, (363,590,0): 60, 56, 53, (363,591,0): 57, 56, 54, (363,592,0): 60, 55, 59, (363,593,0): 61, 56, 62, (363,594,0): 64, 57, 64, (363,595,0): 66, 56, 64, (363,596,0): 65, 54, 62, (363,597,0): 61, 50, 58, (363,598,0): 59, 46, 55, (363,599,0): 56, 43, 52, (364,0,0): 70, 55, 48, (364,1,0): 70, 55, 48, (364,2,0): 70, 56, 47, (364,3,0): 71, 57, 48, (364,4,0): 73, 59, 48, (364,5,0): 75, 61, 50, (364,6,0): 77, 63, 50, (364,7,0): 78, 65, 49, (364,8,0): 79, 66, 50, (364,9,0): 80, 67, 50, (364,10,0): 82, 69, 50, (364,11,0): 84, 71, 52, (364,12,0): 86, 74, 52, (364,13,0): 88, 76, 54, (364,14,0): 90, 78, 54, (364,15,0): 94, 80, 54, (364,16,0): 102, 82, 57, (364,17,0): 103, 82, 55, (364,18,0): 102, 80, 56, (364,19,0): 101, 79, 55, (364,20,0): 101, 79, 55, (364,21,0): 100, 78, 54, (364,22,0): 100, 78, 55, (364,23,0): 100, 78, 55, (364,24,0): 103, 81, 60, (364,25,0): 102, 80, 59, (364,26,0): 102, 80, 59, (364,27,0): 101, 79, 58, (364,28,0): 101, 78, 60, (364,29,0): 99, 76, 58, (364,30,0): 98, 75, 57, (364,31,0): 97, 76, 59, (364,32,0): 92, 70, 56, (364,33,0): 90, 71, 56, (364,34,0): 90, 71, 56, (364,35,0): 90, 71, 56, (364,36,0): 90, 71, 56, (364,37,0): 91, 72, 57, (364,38,0): 91, 72, 57, (364,39,0): 91, 72, 57, (364,40,0): 89, 70, 55, (364,41,0): 88, 69, 54, (364,42,0): 87, 68, 53, (364,43,0): 85, 66, 51, (364,44,0): 85, 66, 51, (364,45,0): 85, 66, 51, (364,46,0): 86, 67, 52, (364,47,0): 86, 67, 52, (364,48,0): 86, 67, 52, (364,49,0): 84, 67, 51, (364,50,0): 83, 64, 50, (364,51,0): 80, 63, 47, (364,52,0): 80, 61, 47, (364,53,0): 79, 62, 46, (364,54,0): 80, 61, 47, (364,55,0): 80, 63, 47, (364,56,0): 78, 59, 45, (364,57,0): 77, 60, 44, (364,58,0): 78, 59, 45, (364,59,0): 76, 59, 43, (364,60,0): 75, 56, 42, (364,61,0): 73, 56, 40, (364,62,0): 73, 54, 40, (364,63,0): 71, 53, 39, (364,64,0): 67, 51, 38, (364,65,0): 63, 49, 38, (364,66,0): 62, 48, 37, (364,67,0): 62, 48, 35, (364,68,0): 66, 50, 37, (364,69,0): 71, 53, 39, (364,70,0): 77, 58, 43, (364,71,0): 80, 61, 44, (364,72,0): 86, 65, 48, (364,73,0): 89, 66, 48, (364,74,0): 94, 69, 49, (364,75,0): 97, 72, 50, (364,76,0): 101, 74, 53, (364,77,0): 101, 74, 53, (364,78,0): 101, 74, 53, (364,79,0): 101, 74, 55, (364,80,0): 100, 73, 56, (364,81,0): 98, 70, 56, (364,82,0): 96, 67, 53, (364,83,0): 94, 65, 51, (364,84,0): 93, 64, 48, (364,85,0): 93, 64, 48, (364,86,0): 94, 65, 47, (364,87,0): 95, 66, 48, (364,88,0): 92, 63, 45, (364,89,0): 93, 64, 46, (364,90,0): 96, 65, 45, (364,91,0): 96, 65, 45, (364,92,0): 96, 65, 44, (364,93,0): 98, 67, 46, (364,94,0): 103, 72, 51, (364,95,0): 106, 78, 56, (364,96,0): 113, 87, 62, (364,97,0): 117, 91, 64, (364,98,0): 122, 96, 71, (364,99,0): 124, 100, 72, (364,100,0): 124, 100, 74, (364,101,0): 123, 102, 73, (364,102,0): 125, 104, 75, (364,103,0): 126, 107, 74, (364,104,0): 139, 121, 83, (364,105,0): 147, 132, 89, (364,106,0): 163, 149, 102, (364,107,0): 177, 165, 113, (364,108,0): 188, 177, 121, (364,109,0): 192, 184, 122, (364,110,0): 192, 184, 121, (364,111,0): 189, 184, 118, (364,112,0): 192, 189, 122, (364,113,0): 192, 189, 122, (364,114,0): 190, 189, 124, (364,115,0): 189, 188, 124, (364,116,0): 188, 188, 126, (364,117,0): 187, 189, 126, (364,118,0): 183, 189, 129, (364,119,0): 181, 189, 130, (364,120,0): 177, 186, 129, (364,121,0): 176, 187, 131, (364,122,0): 173, 187, 134, (364,123,0): 170, 187, 133, (364,124,0): 168, 186, 134, (364,125,0): 167, 187, 136, (364,126,0): 167, 187, 138, (364,127,0): 164, 186, 139, (364,128,0): 161, 187, 142, (364,129,0): 160, 187, 144, (364,130,0): 160, 187, 144, (364,131,0): 159, 187, 146, (364,132,0): 158, 189, 147, (364,133,0): 158, 189, 148, (364,134,0): 157, 189, 148, (364,135,0): 155, 190, 150, (364,136,0): 156, 190, 153, (364,137,0): 155, 191, 155, (364,138,0): 154, 192, 155, (364,139,0): 152, 192, 157, (364,140,0): 152, 192, 158, (364,141,0): 152, 192, 158, (364,142,0): 151, 192, 158, (364,143,0): 152, 191, 160, (364,144,0): 154, 191, 160, (364,145,0): 154, 191, 160, (364,146,0): 155, 192, 161, (364,147,0): 157, 193, 165, (364,148,0): 157, 196, 167, (364,149,0): 158, 197, 170, (364,150,0): 158, 198, 171, (364,151,0): 157, 200, 173, (364,152,0): 159, 203, 178, (364,153,0): 159, 203, 180, (364,154,0): 159, 204, 181, (364,155,0): 157, 205, 183, (364,156,0): 157, 204, 184, (364,157,0): 157, 206, 185, (364,158,0): 157, 206, 185, (364,159,0): 157, 206, 187, (364,160,0): 155, 206, 189, (364,161,0): 156, 207, 190, (364,162,0): 156, 207, 192, (364,163,0): 156, 207, 192, (364,164,0): 155, 207, 194, (364,165,0): 153, 205, 192, (364,166,0): 151, 205, 192, (364,167,0): 150, 204, 191, (364,168,0): 149, 202, 194, (364,169,0): 149, 202, 194, (364,170,0): 148, 203, 197, (364,171,0): 148, 203, 197, (364,172,0): 147, 204, 198, (364,173,0): 147, 204, 198, (364,174,0): 147, 203, 200, (364,175,0): 147, 203, 200, (364,176,0): 143, 201, 202, (364,177,0): 144, 202, 203, (364,178,0): 145, 203, 204, (364,179,0): 146, 204, 205, (364,180,0): 147, 205, 207, (364,181,0): 149, 207, 209, (364,182,0): 150, 208, 212, (364,183,0): 150, 208, 212, (364,184,0): 150, 208, 212, (364,185,0): 150, 208, 212, (364,186,0): 151, 208, 215, (364,187,0): 151, 208, 215, (364,188,0): 151, 208, 217, (364,189,0): 149, 206, 215, (364,190,0): 148, 205, 214, (364,191,0): 147, 204, 215, (364,192,0): 146, 204, 216, (364,193,0): 145, 203, 217, (364,194,0): 145, 201, 216, (364,195,0): 144, 200, 215, (364,196,0): 143, 199, 214, (364,197,0): 141, 197, 212, (364,198,0): 143, 196, 212, (364,199,0): 142, 195, 211, (364,200,0): 142, 193, 210, (364,201,0): 141, 192, 209, (364,202,0): 140, 191, 208, (364,203,0): 140, 191, 208, (364,204,0): 142, 191, 208, (364,205,0): 142, 191, 208, (364,206,0): 143, 192, 209, (364,207,0): 144, 193, 210, (364,208,0): 147, 196, 213, (364,209,0): 147, 196, 213, (364,210,0): 147, 196, 213, (364,211,0): 147, 196, 213, (364,212,0): 148, 197, 214, (364,213,0): 148, 196, 216, (364,214,0): 148, 196, 216, (364,215,0): 148, 196, 216, (364,216,0): 152, 200, 222, (364,217,0): 152, 200, 222, (364,218,0): 152, 200, 223, (364,219,0): 152, 200, 223, (364,220,0): 153, 201, 224, (364,221,0): 153, 201, 224, (364,222,0): 154, 202, 225, (364,223,0): 154, 201, 227, (364,224,0): 154, 200, 226, (364,225,0): 154, 200, 226, (364,226,0): 155, 200, 229, (364,227,0): 155, 202, 230, (364,228,0): 155, 202, 232, (364,229,0): 156, 202, 235, (364,230,0): 157, 203, 236, (364,231,0): 155, 204, 237, (364,232,0): 153, 201, 237, (364,233,0): 152, 202, 237, (364,234,0): 153, 203, 240, (364,235,0): 154, 203, 243, (364,236,0): 156, 205, 245, (364,237,0): 155, 207, 247, (364,238,0): 156, 208, 248, (364,239,0): 155, 208, 248, (364,240,0): 153, 206, 246, (364,241,0): 153, 206, 246, (364,242,0): 153, 206, 246, (364,243,0): 153, 206, 246, (364,244,0): 153, 206, 246, (364,245,0): 153, 206, 246, (364,246,0): 153, 206, 246, (364,247,0): 153, 206, 246, (364,248,0): 151, 205, 243, (364,249,0): 152, 206, 244, (364,250,0): 152, 206, 244, (364,251,0): 153, 207, 245, (364,252,0): 154, 208, 246, (364,253,0): 155, 209, 247, (364,254,0): 155, 209, 245, (364,255,0): 156, 210, 248, (364,256,0): 158, 209, 252, (364,257,0): 158, 209, 254, (364,258,0): 159, 210, 255, (364,259,0): 159, 210, 255, (364,260,0): 159, 212, 255, (364,261,0): 160, 213, 255, (364,262,0): 161, 214, 255, (364,263,0): 161, 214, 255, (364,264,0): 159, 213, 255, (364,265,0): 159, 213, 255, (364,266,0): 157, 215, 255, (364,267,0): 157, 215, 255, (364,268,0): 157, 215, 255, (364,269,0): 157, 215, 255, (364,270,0): 156, 215, 255, (364,271,0): 157, 215, 255, (364,272,0): 160, 215, 254, (364,273,0): 160, 215, 254, (364,274,0): 160, 215, 254, (364,275,0): 160, 215, 255, (364,276,0): 159, 213, 255, (364,277,0): 157, 211, 255, (364,278,0): 155, 209, 255, (364,279,0): 154, 208, 255, (364,280,0): 151, 204, 254, (364,281,0): 150, 203, 255, (364,282,0): 150, 203, 255, (364,283,0): 149, 202, 255, (364,284,0): 149, 201, 255, (364,285,0): 148, 200, 255, (364,286,0): 148, 200, 255, (364,287,0): 148, 200, 255, (364,288,0): 146, 201, 255, (364,289,0): 143, 199, 255, (364,290,0): 144, 199, 255, (364,291,0): 147, 202, 255, (364,292,0): 151, 206, 255, (364,293,0): 154, 209, 255, (364,294,0): 155, 208, 255, (364,295,0): 154, 207, 255, (364,296,0): 155, 206, 255, (364,297,0): 155, 207, 255, (364,298,0): 155, 207, 255, (364,299,0): 155, 207, 255, (364,300,0): 155, 205, 254, (364,301,0): 155, 206, 253, (364,302,0): 155, 205, 254, (364,303,0): 158, 204, 254, (364,304,0): 163, 202, 255, (364,305,0): 164, 200, 255, (364,306,0): 164, 200, 255, (364,307,0): 165, 201, 255, (364,308,0): 173, 205, 255, (364,309,0): 179, 209, 255, (364,310,0): 184, 205, 255, (364,311,0): 186, 200, 249, (364,312,0): 177, 180, 225, (364,313,0): 159, 153, 191, (364,314,0): 131, 118, 148, (364,315,0): 111, 92, 114, (364,316,0): 101, 78, 94, (364,317,0): 96, 70, 81, (364,318,0): 86, 61, 67, (364,319,0): 78, 53, 57, (364,320,0): 73, 54, 56, (364,321,0): 69, 53, 54, (364,322,0): 69, 50, 52, (364,323,0): 70, 50, 51, (364,324,0): 73, 52, 51, (364,325,0): 72, 51, 50, (364,326,0): 72, 48, 48, (364,327,0): 69, 45, 45, (364,328,0): 68, 43, 46, (364,329,0): 66, 41, 44, (364,330,0): 64, 39, 45, (364,331,0): 60, 37, 45, (364,332,0): 57, 36, 45, (364,333,0): 56, 36, 47, (364,334,0): 56, 36, 48, (364,335,0): 56, 36, 45, (364,336,0): 55, 35, 37, (364,337,0): 56, 36, 37, (364,338,0): 56, 36, 37, (364,339,0): 57, 37, 39, (364,340,0): 56, 37, 41, (364,341,0): 57, 38, 42, (364,342,0): 58, 37, 42, (364,343,0): 58, 37, 42, (364,344,0): 60, 37, 43, (364,345,0): 62, 37, 41, (364,346,0): 66, 37, 41, (364,347,0): 68, 38, 40, (364,348,0): 73, 39, 40, (364,349,0): 77, 41, 41, (364,350,0): 82, 44, 43, (364,351,0): 86, 45, 43, (364,352,0): 95, 47, 43, (364,353,0): 94, 45, 40, (364,354,0): 90, 43, 37, (364,355,0): 86, 41, 36, (364,356,0): 84, 38, 38, (364,357,0): 82, 38, 39, (364,358,0): 81, 37, 38, (364,359,0): 82, 37, 40, (364,360,0): 81, 36, 41, (364,361,0): 80, 35, 38, (364,362,0): 79, 34, 37, (364,363,0): 79, 35, 36, (364,364,0): 78, 37, 35, (364,365,0): 79, 38, 34, (364,366,0): 80, 41, 36, (364,367,0): 81, 41, 39, (364,368,0): 79, 37, 38, (364,369,0): 79, 37, 39, (364,370,0): 80, 38, 40, (364,371,0): 80, 38, 40, (364,372,0): 81, 39, 41, (364,373,0): 82, 40, 42, (364,374,0): 82, 40, 42, (364,375,0): 82, 40, 42, (364,376,0): 75, 33, 35, (364,377,0): 75, 33, 35, (364,378,0): 74, 32, 34, (364,379,0): 74, 32, 34, (364,380,0): 74, 32, 34, (364,381,0): 74, 32, 34, (364,382,0): 74, 32, 34, (364,383,0): 74, 32, 34, (364,384,0): 76, 31, 36, (364,385,0): 77, 32, 37, (364,386,0): 76, 34, 36, (364,387,0): 77, 35, 37, (364,388,0): 77, 35, 36, (364,389,0): 75, 35, 35, (364,390,0): 74, 34, 34, (364,391,0): 72, 34, 33, (364,392,0): 72, 34, 33, (364,393,0): 71, 33, 32, (364,394,0): 71, 32, 35, (364,395,0): 68, 32, 36, (364,396,0): 68, 31, 38, (364,397,0): 67, 30, 38, (364,398,0): 67, 29, 40, (364,399,0): 66, 30, 40, (364,400,0): 66, 35, 41, (364,401,0): 64, 35, 40, (364,402,0): 64, 33, 39, (364,403,0): 61, 32, 37, (364,404,0): 60, 29, 35, (364,405,0): 57, 28, 33, (364,406,0): 57, 26, 32, (364,407,0): 55, 26, 31, (364,408,0): 58, 27, 33, (364,409,0): 57, 28, 33, (364,410,0): 58, 27, 33, (364,411,0): 57, 28, 33, (364,412,0): 58, 27, 33, (364,413,0): 57, 28, 33, (364,414,0): 58, 27, 33, (364,415,0): 58, 27, 33, (364,416,0): 59, 27, 32, (364,417,0): 61, 26, 32, (364,418,0): 59, 27, 32, (364,419,0): 57, 26, 31, (364,420,0): 56, 27, 31, (364,421,0): 55, 26, 30, (364,422,0): 53, 27, 30, (364,423,0): 52, 26, 29, (364,424,0): 53, 24, 28, (364,425,0): 52, 23, 27, (364,426,0): 52, 20, 25, (364,427,0): 54, 19, 25, (364,428,0): 55, 18, 25, (364,429,0): 60, 20, 28, (364,430,0): 63, 22, 30, (364,431,0): 66, 23, 32, (364,432,0): 72, 29, 38, (364,433,0): 69, 28, 36, (364,434,0): 65, 25, 34, (364,435,0): 59, 24, 31, (364,436,0): 54, 21, 28, (364,437,0): 51, 22, 27, (364,438,0): 48, 23, 29, (364,439,0): 45, 24, 29, (364,440,0): 41, 22, 28, (364,441,0): 39, 22, 28, (364,442,0): 39, 22, 28, (364,443,0): 41, 24, 30, (364,444,0): 42, 27, 34, (364,445,0): 45, 30, 37, (364,446,0): 48, 31, 39, (364,447,0): 49, 33, 43, (364,448,0): 41, 28, 38, (364,449,0): 40, 26, 39, (364,450,0): 41, 25, 36, (364,451,0): 39, 23, 34, (364,452,0): 38, 22, 33, (364,453,0): 38, 22, 32, (364,454,0): 40, 23, 33, (364,455,0): 40, 23, 33, (364,456,0): 43, 23, 32, (364,457,0): 45, 24, 33, (364,458,0): 48, 27, 36, (364,459,0): 51, 30, 37, (364,460,0): 55, 32, 40, (364,461,0): 57, 34, 42, (364,462,0): 59, 36, 44, (364,463,0): 60, 37, 43, (364,464,0): 60, 41, 43, (364,465,0): 61, 45, 45, (364,466,0): 63, 47, 47, (364,467,0): 61, 45, 45, (364,468,0): 58, 42, 42, (364,469,0): 57, 41, 41, (364,470,0): 59, 43, 43, (364,471,0): 61, 45, 45, (364,472,0): 65, 49, 49, (364,473,0): 64, 48, 48, (364,474,0): 63, 47, 47, (364,475,0): 62, 46, 46, (364,476,0): 61, 45, 45, (364,477,0): 59, 43, 43, (364,478,0): 58, 42, 42, (364,479,0): 60, 42, 40, (364,480,0): 63, 44, 40, (364,481,0): 65, 44, 39, (364,482,0): 66, 45, 40, (364,483,0): 66, 45, 40, (364,484,0): 64, 43, 40, (364,485,0): 61, 40, 37, (364,486,0): 58, 37, 36, (364,487,0): 55, 34, 33, (364,488,0): 54, 32, 34, (364,489,0): 54, 32, 34, (364,490,0): 52, 30, 33, (364,491,0): 51, 29, 32, (364,492,0): 50, 27, 33, (364,493,0): 50, 27, 33, (364,494,0): 50, 27, 35, (364,495,0): 50, 29, 34, (364,496,0): 50, 31, 33, (364,497,0): 50, 34, 34, (364,498,0): 54, 38, 38, (364,499,0): 56, 40, 40, (364,500,0): 58, 40, 40, (364,501,0): 57, 39, 39, (364,502,0): 54, 36, 36, (364,503,0): 52, 34, 34, (364,504,0): 54, 34, 35, (364,505,0): 54, 34, 35, (364,506,0): 55, 33, 35, (364,507,0): 55, 33, 35, (364,508,0): 55, 33, 35, (364,509,0): 55, 33, 35, (364,510,0): 57, 32, 35, (364,511,0): 56, 34, 37, (364,512,0): 49, 26, 32, (364,513,0): 47, 26, 31, (364,514,0): 46, 25, 30, (364,515,0): 45, 24, 29, (364,516,0): 44, 23, 28, (364,517,0): 44, 23, 28, (364,518,0): 45, 24, 29, (364,519,0): 46, 26, 28, (364,520,0): 46, 26, 28, (364,521,0): 47, 27, 28, (364,522,0): 47, 27, 28, (364,523,0): 48, 28, 27, (364,524,0): 49, 29, 28, (364,525,0): 50, 30, 29, (364,526,0): 51, 31, 30, (364,527,0): 52, 32, 33, (364,528,0): 48, 29, 31, (364,529,0): 47, 31, 34, (364,530,0): 48, 32, 35, (364,531,0): 49, 33, 36, (364,532,0): 50, 34, 37, (364,533,0): 51, 35, 38, (364,534,0): 52, 36, 39, (364,535,0): 52, 36, 39, (364,536,0): 52, 36, 37, (364,537,0): 50, 34, 35, (364,538,0): 47, 31, 32, (364,539,0): 44, 28, 29, (364,540,0): 44, 28, 29, (364,541,0): 45, 29, 30, (364,542,0): 48, 32, 32, (364,543,0): 51, 32, 34, (364,544,0): 51, 30, 35, (364,545,0): 49, 28, 35, (364,546,0): 47, 26, 33, (364,547,0): 45, 24, 31, (364,548,0): 44, 23, 28, (364,549,0): 44, 23, 28, (364,550,0): 44, 23, 28, (364,551,0): 44, 23, 28, (364,552,0): 48, 28, 30, (364,553,0): 49, 29, 31, (364,554,0): 50, 30, 31, (364,555,0): 52, 32, 33, (364,556,0): 54, 34, 35, (364,557,0): 55, 35, 36, (364,558,0): 56, 36, 35, (364,559,0): 57, 37, 36, (364,560,0): 60, 39, 36, (364,561,0): 59, 38, 33, (364,562,0): 57, 36, 31, (364,563,0): 53, 34, 30, (364,564,0): 49, 31, 29, (364,565,0): 45, 30, 27, (364,566,0): 42, 26, 26, (364,567,0): 40, 26, 26, (364,568,0): 39, 27, 29, (364,569,0): 36, 26, 27, (364,570,0): 35, 24, 30, (364,571,0): 32, 23, 28, (364,572,0): 29, 22, 29, (364,573,0): 28, 23, 29, (364,574,0): 28, 23, 30, (364,575,0): 30, 23, 30, (364,576,0): 33, 23, 24, (364,577,0): 36, 26, 25, (364,578,0): 36, 31, 28, (364,579,0): 37, 36, 32, (364,580,0): 39, 41, 36, (364,581,0): 43, 48, 42, (364,582,0): 52, 57, 51, (364,583,0): 60, 62, 57, (364,584,0): 59, 60, 55, (364,585,0): 62, 58, 55, (364,586,0): 62, 57, 54, (364,587,0): 64, 56, 54, (364,588,0): 62, 57, 54, (364,589,0): 60, 56, 53, (364,590,0): 60, 56, 53, (364,591,0): 58, 57, 55, (364,592,0): 57, 52, 56, (364,593,0): 59, 52, 59, (364,594,0): 62, 52, 60, (364,595,0): 62, 52, 60, (364,596,0): 61, 50, 58, (364,597,0): 60, 47, 56, (364,598,0): 59, 43, 53, (364,599,0): 57, 41, 51, (365,0,0): 70, 55, 48, (365,1,0): 70, 55, 48, (365,2,0): 70, 56, 47, (365,3,0): 71, 57, 48, (365,4,0): 73, 59, 48, (365,5,0): 75, 61, 50, (365,6,0): 77, 63, 50, (365,7,0): 78, 65, 49, (365,8,0): 78, 65, 49, (365,9,0): 80, 67, 50, (365,10,0): 83, 70, 51, (365,11,0): 85, 72, 53, (365,12,0): 86, 74, 52, (365,13,0): 88, 76, 54, (365,14,0): 91, 79, 55, (365,15,0): 96, 82, 56, (365,16,0): 103, 83, 58, (365,17,0): 103, 82, 55, (365,18,0): 102, 80, 56, (365,19,0): 101, 79, 55, (365,20,0): 100, 78, 54, (365,21,0): 101, 79, 55, (365,22,0): 101, 79, 56, (365,23,0): 102, 80, 57, (365,24,0): 103, 81, 60, (365,25,0): 104, 82, 61, (365,26,0): 104, 82, 61, (365,27,0): 104, 82, 61, (365,28,0): 103, 80, 62, (365,29,0): 102, 79, 61, (365,30,0): 101, 78, 60, (365,31,0): 99, 78, 59, (365,32,0): 95, 74, 57, (365,33,0): 93, 74, 59, (365,34,0): 93, 74, 59, (365,35,0): 92, 73, 58, (365,36,0): 91, 72, 57, (365,37,0): 91, 72, 57, (365,38,0): 90, 71, 56, (365,39,0): 90, 71, 56, (365,40,0): 89, 70, 55, (365,41,0): 88, 69, 54, (365,42,0): 87, 68, 53, (365,43,0): 86, 67, 52, (365,44,0): 85, 66, 51, (365,45,0): 85, 66, 51, (365,46,0): 86, 67, 52, (365,47,0): 87, 68, 53, (365,48,0): 87, 68, 53, (365,49,0): 86, 67, 52, (365,50,0): 84, 65, 50, (365,51,0): 82, 63, 48, (365,52,0): 81, 62, 47, (365,53,0): 81, 62, 47, (365,54,0): 81, 62, 47, (365,55,0): 81, 62, 47, (365,56,0): 79, 60, 45, (365,57,0): 79, 60, 45, (365,58,0): 80, 61, 46, (365,59,0): 80, 61, 46, (365,60,0): 80, 61, 46, (365,61,0): 79, 60, 45, (365,62,0): 77, 58, 43, (365,63,0): 76, 58, 44, (365,64,0): 73, 57, 44, (365,65,0): 69, 55, 44, (365,66,0): 66, 52, 41, (365,67,0): 64, 50, 39, (365,68,0): 66, 50, 37, (365,69,0): 68, 52, 39, (365,70,0): 72, 54, 40, (365,71,0): 75, 56, 41, (365,72,0): 80, 59, 42, (365,73,0): 81, 60, 43, (365,74,0): 85, 62, 44, (365,75,0): 89, 64, 44, (365,76,0): 93, 66, 47, (365,77,0): 95, 68, 47, (365,78,0): 95, 68, 47, (365,79,0): 96, 69, 50, (365,80,0): 94, 67, 50, (365,81,0): 94, 66, 52, (365,82,0): 93, 65, 51, (365,83,0): 92, 64, 50, (365,84,0): 92, 63, 47, (365,85,0): 92, 63, 47, (365,86,0): 93, 64, 46, (365,87,0): 93, 64, 46, (365,88,0): 91, 62, 44, (365,89,0): 92, 63, 45, (365,90,0): 95, 64, 44, (365,91,0): 94, 63, 43, (365,92,0): 94, 63, 42, (365,93,0): 96, 65, 44, (365,94,0): 101, 70, 49, (365,95,0): 105, 74, 53, (365,96,0): 109, 81, 57, (365,97,0): 112, 86, 61, (365,98,0): 117, 91, 66, (365,99,0): 120, 94, 69, (365,100,0): 121, 95, 70, (365,101,0): 120, 96, 70, (365,102,0): 122, 98, 72, (365,103,0): 122, 101, 70, (365,104,0): 137, 117, 82, (365,105,0): 146, 128, 88, (365,106,0): 163, 146, 102, (365,107,0): 178, 165, 113, (365,108,0): 191, 178, 123, (365,109,0): 196, 186, 125, (365,110,0): 197, 187, 125, (365,111,0): 195, 187, 122, (365,112,0): 196, 188, 123, (365,113,0): 193, 188, 122, (365,114,0): 193, 188, 124, (365,115,0): 192, 188, 124, (365,116,0): 190, 189, 125, (365,117,0): 189, 189, 127, (365,118,0): 185, 189, 128, (365,119,0): 184, 189, 131, (365,120,0): 178, 186, 129, (365,121,0): 175, 186, 130, (365,122,0): 173, 186, 133, (365,123,0): 171, 185, 132, (365,124,0): 169, 185, 136, (365,125,0): 167, 185, 135, (365,126,0): 167, 185, 137, (365,127,0): 164, 186, 139, (365,128,0): 161, 187, 142, (365,129,0): 160, 187, 144, (365,130,0): 160, 187, 146, (365,131,0): 160, 187, 146, (365,132,0): 160, 188, 148, (365,133,0): 158, 189, 148, (365,134,0): 158, 188, 150, (365,135,0): 157, 189, 152, (365,136,0): 155, 189, 154, (365,137,0): 155, 189, 154, (365,138,0): 154, 189, 156, (365,139,0): 154, 191, 157, (365,140,0): 154, 191, 158, (365,141,0): 153, 193, 159, (365,142,0): 153, 192, 161, (365,143,0): 153, 192, 161, (365,144,0): 155, 192, 161, (365,145,0): 156, 193, 162, (365,146,0): 157, 193, 165, (365,147,0): 157, 196, 167, (365,148,0): 158, 197, 170, (365,149,0): 159, 199, 172, (365,150,0): 158, 201, 174, (365,151,0): 159, 201, 177, (365,152,0): 160, 204, 181, (365,153,0): 159, 204, 181, (365,154,0): 157, 205, 183, (365,155,0): 157, 205, 183, (365,156,0): 156, 205, 184, (365,157,0): 156, 205, 184, (365,158,0): 156, 205, 186, (365,159,0): 156, 205, 186, (365,160,0): 154, 205, 188, (365,161,0): 155, 206, 189, (365,162,0): 155, 206, 191, (365,163,0): 155, 206, 191, (365,164,0): 153, 205, 192, (365,165,0): 151, 203, 190, (365,166,0): 148, 202, 189, (365,167,0): 147, 201, 188, (365,168,0): 149, 202, 192, (365,169,0): 149, 202, 194, (365,170,0): 148, 203, 197, (365,171,0): 148, 203, 197, (365,172,0): 148, 205, 199, (365,173,0): 148, 205, 199, (365,174,0): 148, 204, 201, (365,175,0): 149, 205, 202, (365,176,0): 144, 203, 201, (365,177,0): 145, 203, 204, (365,178,0): 145, 203, 204, (365,179,0): 146, 204, 205, (365,180,0): 147, 205, 207, (365,181,0): 148, 206, 208, (365,182,0): 148, 206, 210, (365,183,0): 149, 207, 211, (365,184,0): 148, 206, 210, (365,185,0): 149, 207, 211, (365,186,0): 150, 207, 214, (365,187,0): 150, 207, 214, (365,188,0): 149, 206, 215, (365,189,0): 148, 205, 214, (365,190,0): 147, 204, 213, (365,191,0): 146, 203, 214, (365,192,0): 144, 202, 214, (365,193,0): 143, 201, 215, (365,194,0): 144, 200, 215, (365,195,0): 143, 199, 214, (365,196,0): 142, 198, 213, (365,197,0): 141, 197, 212, (365,198,0): 143, 196, 212, (365,199,0): 142, 195, 211, (365,200,0): 142, 193, 210, (365,201,0): 142, 193, 210, (365,202,0): 141, 192, 209, (365,203,0): 140, 191, 208, (365,204,0): 142, 191, 208, (365,205,0): 143, 192, 209, (365,206,0): 144, 193, 210, (365,207,0): 144, 193, 210, (365,208,0): 147, 195, 215, (365,209,0): 147, 195, 215, (365,210,0): 147, 195, 215, (365,211,0): 147, 195, 215, (365,212,0): 148, 196, 216, (365,213,0): 148, 196, 218, (365,214,0): 148, 196, 218, (365,215,0): 148, 196, 219, (365,216,0): 148, 196, 219, (365,217,0): 148, 196, 219, (365,218,0): 149, 196, 222, (365,219,0): 151, 198, 224, (365,220,0): 152, 199, 225, (365,221,0): 153, 200, 226, (365,222,0): 154, 201, 229, (365,223,0): 154, 201, 229, (365,224,0): 153, 198, 227, (365,225,0): 154, 199, 230, (365,226,0): 155, 200, 231, (365,227,0): 155, 200, 231, (365,228,0): 157, 202, 235, (365,229,0): 156, 202, 236, (365,230,0): 157, 203, 237, (365,231,0): 158, 204, 240, (365,232,0): 157, 202, 241, (365,233,0): 155, 203, 243, (365,234,0): 155, 203, 243, (365,235,0): 155, 204, 245, (365,236,0): 155, 204, 245, (365,237,0): 156, 205, 248, (365,238,0): 156, 205, 248, (365,239,0): 154, 205, 248, (365,240,0): 154, 205, 248, (365,241,0): 153, 206, 246, (365,242,0): 153, 206, 246, (365,243,0): 153, 206, 246, (365,244,0): 153, 206, 246, (365,245,0): 153, 206, 246, (365,246,0): 153, 206, 246, (365,247,0): 153, 206, 246, (365,248,0): 152, 206, 244, (365,249,0): 152, 206, 244, (365,250,0): 153, 207, 245, (365,251,0): 153, 207, 245, (365,252,0): 154, 208, 246, (365,253,0): 154, 208, 246, (365,254,0): 155, 209, 245, (365,255,0): 155, 209, 247, (365,256,0): 157, 208, 253, (365,257,0): 158, 209, 255, (365,258,0): 158, 209, 255, (365,259,0): 159, 210, 255, (365,260,0): 158, 210, 255, (365,261,0): 159, 212, 255, (365,262,0): 159, 212, 255, (365,263,0): 158, 212, 255, (365,264,0): 158, 212, 255, (365,265,0): 158, 212, 255, (365,266,0): 156, 214, 254, (365,267,0): 156, 214, 254, (365,268,0): 156, 214, 254, (365,269,0): 156, 214, 254, (365,270,0): 155, 214, 254, (365,271,0): 155, 215, 252, (365,272,0): 159, 215, 252, (365,273,0): 160, 216, 253, (365,274,0): 160, 215, 254, (365,275,0): 160, 215, 254, (365,276,0): 158, 213, 254, (365,277,0): 157, 211, 255, (365,278,0): 155, 209, 255, (365,279,0): 154, 208, 254, (365,280,0): 150, 203, 253, (365,281,0): 150, 203, 253, (365,282,0): 150, 203, 255, (365,283,0): 149, 202, 255, (365,284,0): 148, 200, 255, (365,285,0): 148, 200, 255, (365,286,0): 148, 200, 255, (365,287,0): 145, 200, 255, (365,288,0): 146, 201, 255, (365,289,0): 144, 200, 255, (365,290,0): 144, 199, 255, (365,291,0): 146, 201, 255, (365,292,0): 150, 205, 255, (365,293,0): 152, 207, 255, (365,294,0): 153, 206, 255, (365,295,0): 152, 205, 255, (365,296,0): 154, 206, 255, (365,297,0): 154, 206, 255, (365,298,0): 154, 206, 254, (365,299,0): 153, 205, 252, (365,300,0): 154, 205, 252, (365,301,0): 154, 205, 252, (365,302,0): 153, 204, 251, (365,303,0): 156, 202, 251, (365,304,0): 162, 202, 254, (365,305,0): 166, 201, 255, (365,306,0): 164, 200, 255, (365,307,0): 165, 200, 255, (365,308,0): 173, 204, 255, (365,309,0): 180, 205, 255, (365,310,0): 181, 198, 250, (365,311,0): 180, 188, 235, (365,312,0): 169, 168, 208, (365,313,0): 150, 140, 174, (365,314,0): 124, 106, 130, (365,315,0): 106, 83, 99, (365,316,0): 100, 74, 85, (365,317,0): 94, 67, 72, (365,318,0): 83, 57, 58, (365,319,0): 72, 48, 46, (365,320,0): 75, 57, 57, (365,321,0): 71, 55, 55, (365,322,0): 71, 53, 53, (365,323,0): 72, 54, 54, (365,324,0): 74, 54, 53, (365,325,0): 74, 53, 52, (365,326,0): 72, 48, 48, (365,327,0): 69, 45, 45, (365,328,0): 67, 42, 45, (365,329,0): 64, 42, 44, (365,330,0): 62, 39, 45, (365,331,0): 59, 38, 45, (365,332,0): 57, 37, 46, (365,333,0): 54, 37, 47, (365,334,0): 55, 37, 49, (365,335,0): 55, 38, 48, (365,336,0): 55, 36, 38, (365,337,0): 56, 36, 37, (365,338,0): 56, 36, 37, (365,339,0): 57, 37, 38, (365,340,0): 57, 38, 40, (365,341,0): 57, 38, 42, (365,342,0): 58, 37, 42, (365,343,0): 59, 38, 43, (365,344,0): 63, 38, 42, (365,345,0): 64, 37, 42, (365,346,0): 67, 38, 42, (365,347,0): 71, 39, 42, (365,348,0): 76, 42, 43, (365,349,0): 82, 43, 44, (365,350,0): 86, 46, 46, (365,351,0): 89, 48, 46, (365,352,0): 93, 45, 41, (365,353,0): 92, 44, 40, (365,354,0): 87, 42, 37, (365,355,0): 84, 40, 37, (365,356,0): 80, 38, 39, (365,357,0): 79, 39, 39, (365,358,0): 80, 40, 41, (365,359,0): 81, 39, 41, (365,360,0): 80, 38, 42, (365,361,0): 81, 36, 39, (365,362,0): 80, 36, 37, (365,363,0): 79, 35, 34, (365,364,0): 79, 35, 32, (365,365,0): 77, 36, 30, (365,366,0): 77, 38, 31, (365,367,0): 78, 39, 32, (365,368,0): 78, 36, 37, (365,369,0): 78, 36, 38, (365,370,0): 79, 37, 39, (365,371,0): 80, 38, 40, (365,372,0): 81, 39, 41, (365,373,0): 82, 40, 42, (365,374,0): 83, 41, 43, (365,375,0): 83, 41, 43, (365,376,0): 75, 33, 35, (365,377,0): 75, 33, 35, (365,378,0): 74, 32, 34, (365,379,0): 74, 32, 34, (365,380,0): 73, 31, 33, (365,381,0): 73, 31, 33, (365,382,0): 73, 31, 33, (365,383,0): 73, 31, 33, (365,384,0): 76, 31, 36, (365,385,0): 77, 32, 37, (365,386,0): 76, 34, 38, (365,387,0): 77, 35, 37, (365,388,0): 76, 36, 36, (365,389,0): 75, 35, 35, (365,390,0): 73, 35, 34, (365,391,0): 72, 34, 33, (365,392,0): 70, 32, 31, (365,393,0): 70, 31, 32, (365,394,0): 67, 31, 33, (365,395,0): 67, 31, 35, (365,396,0): 66, 29, 36, (365,397,0): 66, 29, 37, (365,398,0): 65, 27, 38, (365,399,0): 64, 28, 38, (365,400,0): 62, 31, 37, (365,401,0): 61, 32, 37, (365,402,0): 60, 31, 36, (365,403,0): 59, 30, 35, (365,404,0): 57, 28, 33, (365,405,0): 56, 27, 32, (365,406,0): 55, 26, 31, (365,407,0): 54, 25, 30, (365,408,0): 56, 27, 32, (365,409,0): 56, 27, 32, (365,410,0): 56, 27, 32, (365,411,0): 56, 27, 32, (365,412,0): 56, 27, 32, (365,413,0): 56, 27, 32, (365,414,0): 56, 27, 32, (365,415,0): 57, 26, 32, (365,416,0): 58, 26, 31, (365,417,0): 58, 26, 31, (365,418,0): 58, 26, 31, (365,419,0): 55, 26, 30, (365,420,0): 53, 27, 30, (365,421,0): 51, 26, 29, (365,422,0): 51, 26, 29, (365,423,0): 51, 26, 29, (365,424,0): 51, 26, 29, (365,425,0): 51, 25, 28, (365,426,0): 51, 22, 26, (365,427,0): 50, 19, 24, (365,428,0): 53, 18, 24, (365,429,0): 55, 18, 25, (365,430,0): 59, 19, 27, (365,431,0): 61, 20, 28, (365,432,0): 68, 25, 34, (365,433,0): 67, 24, 33, (365,434,0): 66, 24, 34, (365,435,0): 62, 25, 33, (365,436,0): 57, 24, 31, (365,437,0): 54, 25, 30, (365,438,0): 50, 25, 31, (365,439,0): 47, 24, 30, (365,440,0): 44, 23, 30, (365,441,0): 43, 24, 30, (365,442,0): 41, 24, 30, (365,443,0): 41, 24, 30, (365,444,0): 41, 26, 33, (365,445,0): 43, 28, 35, (365,446,0): 46, 29, 37, (365,447,0): 47, 30, 40, (365,448,0): 41, 25, 36, (365,449,0): 38, 24, 37, (365,450,0): 39, 23, 34, (365,451,0): 38, 22, 33, (365,452,0): 37, 21, 32, (365,453,0): 38, 22, 33, (365,454,0): 40, 23, 33, (365,455,0): 42, 22, 33, (365,456,0): 44, 23, 32, (365,457,0): 46, 25, 34, (365,458,0): 50, 27, 37, (365,459,0): 53, 30, 40, (365,460,0): 55, 32, 40, (365,461,0): 59, 33, 42, (365,462,0): 60, 34, 43, (365,463,0): 58, 35, 41, (365,464,0): 59, 40, 42, (365,465,0): 61, 45, 45, (365,466,0): 64, 48, 48, (365,467,0): 62, 46, 46, (365,468,0): 58, 42, 42, (365,469,0): 57, 41, 41, (365,470,0): 60, 44, 44, (365,471,0): 64, 48, 48, (365,472,0): 65, 49, 49, (365,473,0): 64, 48, 48, (365,474,0): 63, 47, 47, (365,475,0): 61, 45, 45, (365,476,0): 59, 43, 43, (365,477,0): 58, 42, 42, (365,478,0): 56, 40, 40, (365,479,0): 58, 40, 38, (365,480,0): 63, 44, 40, (365,481,0): 65, 44, 39, (365,482,0): 66, 45, 40, (365,483,0): 67, 46, 41, (365,484,0): 66, 45, 42, (365,485,0): 63, 42, 39, (365,486,0): 61, 40, 39, (365,487,0): 59, 38, 37, (365,488,0): 55, 33, 35, (365,489,0): 55, 33, 35, (365,490,0): 54, 32, 35, (365,491,0): 53, 31, 34, (365,492,0): 52, 29, 35, (365,493,0): 51, 28, 34, (365,494,0): 50, 27, 35, (365,495,0): 49, 28, 33, (365,496,0): 50, 31, 33, (365,497,0): 49, 33, 33, (365,498,0): 52, 36, 36, (365,499,0): 54, 38, 38, (365,500,0): 57, 39, 39, (365,501,0): 57, 39, 39, (365,502,0): 55, 37, 37, (365,503,0): 54, 36, 36, (365,504,0): 58, 38, 39, (365,505,0): 57, 37, 38, (365,506,0): 57, 35, 37, (365,507,0): 55, 33, 35, (365,508,0): 55, 33, 35, (365,509,0): 55, 33, 35, (365,510,0): 57, 32, 35, (365,511,0): 56, 34, 36, (365,512,0): 48, 28, 30, (365,513,0): 47, 26, 31, (365,514,0): 45, 24, 29, (365,515,0): 44, 23, 28, (365,516,0): 44, 23, 28, (365,517,0): 44, 24, 26, (365,518,0): 45, 25, 27, (365,519,0): 45, 25, 26, (365,520,0): 46, 26, 27, (365,521,0): 47, 27, 26, (365,522,0): 48, 28, 27, (365,523,0): 49, 29, 28, (365,524,0): 50, 30, 29, (365,525,0): 51, 31, 30, (365,526,0): 52, 32, 31, (365,527,0): 51, 33, 33, (365,528,0): 45, 29, 30, (365,529,0): 47, 31, 34, (365,530,0): 48, 32, 35, (365,531,0): 50, 34, 37, (365,532,0): 52, 36, 39, (365,533,0): 52, 36, 39, (365,534,0): 52, 36, 39, (365,535,0): 52, 36, 39, (365,536,0): 54, 38, 39, (365,537,0): 52, 36, 37, (365,538,0): 50, 34, 35, (365,539,0): 48, 32, 33, (365,540,0): 48, 32, 33, (365,541,0): 48, 32, 33, (365,542,0): 50, 34, 34, (365,543,0): 51, 35, 36, (365,544,0): 53, 32, 37, (365,545,0): 52, 31, 38, (365,546,0): 50, 29, 36, (365,547,0): 49, 28, 35, (365,548,0): 48, 27, 32, (365,549,0): 48, 27, 32, (365,550,0): 48, 27, 32, (365,551,0): 49, 28, 33, (365,552,0): 52, 32, 34, (365,553,0): 53, 33, 35, (365,554,0): 53, 33, 34, (365,555,0): 54, 34, 35, (365,556,0): 55, 35, 36, (365,557,0): 56, 36, 37, (365,558,0): 57, 37, 36, (365,559,0): 57, 38, 34, (365,560,0): 58, 37, 32, (365,561,0): 57, 36, 31, (365,562,0): 56, 35, 30, (365,563,0): 52, 33, 27, (365,564,0): 50, 31, 27, (365,565,0): 46, 28, 26, (365,566,0): 43, 27, 27, (365,567,0): 41, 27, 26, (365,568,0): 37, 25, 27, (365,569,0): 35, 25, 26, (365,570,0): 32, 23, 28, (365,571,0): 29, 23, 27, (365,572,0): 28, 21, 28, (365,573,0): 28, 23, 29, (365,574,0): 28, 23, 30, (365,575,0): 30, 23, 30, (365,576,0): 32, 22, 23, (365,577,0): 36, 26, 25, (365,578,0): 38, 33, 30, (365,579,0): 39, 38, 34, (365,580,0): 40, 42, 37, (365,581,0): 43, 48, 42, (365,582,0): 50, 55, 49, (365,583,0): 57, 59, 54, (365,584,0): 59, 60, 55, (365,585,0): 62, 58, 55, (365,586,0): 63, 58, 55, (365,587,0): 65, 57, 55, (365,588,0): 63, 58, 55, (365,589,0): 62, 58, 55, (365,590,0): 62, 58, 55, (365,591,0): 60, 59, 57, (365,592,0): 55, 49, 53, (365,593,0): 56, 49, 56, (365,594,0): 58, 48, 56, (365,595,0): 58, 48, 56, (365,596,0): 59, 46, 55, (365,597,0): 57, 44, 53, (365,598,0): 57, 41, 51, (365,599,0): 55, 39, 49, (366,0,0): 70, 55, 48, (366,1,0): 70, 55, 48, (366,2,0): 70, 56, 47, (366,3,0): 71, 57, 48, (366,4,0): 73, 59, 48, (366,5,0): 75, 61, 50, (366,6,0): 77, 63, 50, (366,7,0): 78, 65, 49, (366,8,0): 77, 64, 48, (366,9,0): 80, 67, 50, (366,10,0): 84, 71, 52, (366,11,0): 86, 73, 54, (366,12,0): 86, 74, 52, (366,13,0): 88, 76, 54, (366,14,0): 92, 80, 56, (366,15,0): 97, 83, 57, (366,16,0): 104, 84, 59, (366,17,0): 104, 83, 56, (366,18,0): 102, 81, 54, (366,19,0): 101, 80, 53, (366,20,0): 100, 78, 54, (366,21,0): 101, 79, 55, (366,22,0): 102, 80, 57, (366,23,0): 103, 81, 58, (366,24,0): 103, 81, 58, (366,25,0): 104, 82, 59, (366,26,0): 105, 83, 62, (366,27,0): 106, 84, 63, (366,28,0): 106, 83, 65, (366,29,0): 104, 81, 63, (366,30,0): 103, 80, 62, (366,31,0): 101, 80, 61, (366,32,0): 101, 80, 63, (366,33,0): 98, 79, 62, (366,34,0): 97, 78, 61, (366,35,0): 96, 77, 60, (366,36,0): 94, 75, 58, (366,37,0): 92, 73, 56, (366,38,0): 91, 72, 55, (366,39,0): 91, 72, 55, (366,40,0): 89, 70, 53, (366,41,0): 88, 69, 52, (366,42,0): 87, 68, 51, (366,43,0): 85, 66, 49, (366,44,0): 85, 66, 49, (366,45,0): 85, 66, 49, (366,46,0): 86, 67, 50, (366,47,0): 86, 67, 50, (366,48,0): 89, 68, 51, (366,49,0): 88, 67, 50, (366,50,0): 86, 65, 48, (366,51,0): 84, 63, 46, (366,52,0): 83, 62, 45, (366,53,0): 83, 62, 45, (366,54,0): 83, 62, 45, (366,55,0): 84, 63, 46, (366,56,0): 80, 59, 42, (366,57,0): 81, 60, 43, (366,58,0): 83, 62, 45, (366,59,0): 85, 64, 47, (366,60,0): 85, 64, 47, (366,61,0): 85, 64, 47, (366,62,0): 83, 62, 45, (366,63,0): 81, 62, 47, (366,64,0): 74, 60, 49, (366,65,0): 72, 59, 50, (366,66,0): 71, 57, 46, (366,67,0): 69, 55, 44, (366,68,0): 70, 54, 41, (366,69,0): 71, 55, 42, (366,70,0): 73, 55, 41, (366,71,0): 75, 56, 41, (366,72,0): 75, 54, 37, (366,73,0): 75, 54, 37, (366,74,0): 76, 53, 35, (366,75,0): 77, 55, 34, (366,76,0): 80, 55, 35, (366,77,0): 81, 56, 36, (366,78,0): 84, 57, 36, (366,79,0): 85, 58, 39, (366,80,0): 85, 59, 42, (366,81,0): 86, 60, 45, (366,82,0): 88, 60, 46, (366,83,0): 89, 61, 47, (366,84,0): 90, 63, 46, (366,85,0): 89, 62, 45, (366,86,0): 90, 61, 43, (366,87,0): 90, 61, 43, (366,88,0): 91, 62, 44, (366,89,0): 92, 63, 45, (366,90,0): 95, 64, 44, (366,91,0): 93, 62, 42, (366,92,0): 93, 62, 41, (366,93,0): 95, 64, 43, (366,94,0): 99, 68, 47, (366,95,0): 104, 73, 52, (366,96,0): 102, 74, 52, (366,97,0): 106, 78, 56, (366,98,0): 111, 83, 61, (366,99,0): 113, 87, 64, (366,100,0): 114, 88, 65, (366,101,0): 115, 91, 67, (366,102,0): 118, 94, 68, (366,103,0): 119, 98, 69, (366,104,0): 126, 106, 73, (366,105,0): 136, 118, 78, (366,106,0): 154, 137, 93, (366,107,0): 173, 157, 108, (366,108,0): 187, 172, 117, (366,109,0): 194, 182, 122, (366,110,0): 196, 185, 123, (366,111,0): 196, 187, 122, (366,112,0): 196, 187, 120, (366,113,0): 195, 188, 120, (366,114,0): 195, 187, 122, (366,115,0): 193, 188, 124, (366,116,0): 190, 189, 125, (366,117,0): 189, 189, 127, (366,118,0): 188, 189, 129, (366,119,0): 186, 189, 132, (366,120,0): 177, 185, 128, (366,121,0): 176, 185, 130, (366,122,0): 175, 185, 133, (366,123,0): 171, 185, 132, (366,124,0): 169, 185, 136, (366,125,0): 167, 185, 135, (366,126,0): 167, 185, 137, (366,127,0): 165, 184, 139, (366,128,0): 164, 187, 145, (366,129,0): 162, 187, 147, (366,130,0): 161, 187, 148, (366,131,0): 161, 187, 148, (366,132,0): 159, 187, 149, (366,133,0): 157, 187, 149, (366,134,0): 157, 187, 151, (366,135,0): 156, 188, 151, (366,136,0): 154, 188, 153, (366,137,0): 154, 188, 155, (366,138,0): 154, 189, 157, (366,139,0): 154, 191, 158, (366,140,0): 154, 191, 160, (366,141,0): 153, 192, 161, (366,142,0): 154, 193, 164, (366,143,0): 154, 193, 164, (366,144,0): 157, 193, 165, (366,145,0): 158, 194, 166, (366,146,0): 157, 196, 169, (366,147,0): 159, 198, 171, (366,148,0): 160, 198, 173, (366,149,0): 161, 201, 175, (366,150,0): 160, 202, 178, (366,151,0): 161, 203, 179, (366,152,0): 160, 204, 181, (366,153,0): 158, 203, 182, (366,154,0): 156, 203, 183, (366,155,0): 156, 203, 183, (366,156,0): 155, 204, 185, (366,157,0): 155, 204, 185, (366,158,0): 153, 204, 187, (366,159,0): 153, 204, 187, (366,160,0): 154, 205, 188, (366,161,0): 154, 205, 188, (366,162,0): 154, 205, 188, (366,163,0): 154, 205, 188, (366,164,0): 152, 205, 189, (366,165,0): 150, 202, 189, (366,166,0): 147, 201, 188, (366,167,0): 145, 199, 186, (366,168,0): 147, 200, 190, (366,169,0): 148, 201, 193, (366,170,0): 146, 201, 195, (366,171,0): 147, 202, 196, (366,172,0): 146, 203, 197, (366,173,0): 147, 204, 198, (366,174,0): 148, 205, 199, (366,175,0): 148, 204, 201, (366,176,0): 146, 205, 203, (366,177,0): 145, 205, 205, (366,178,0): 145, 205, 205, (366,179,0): 146, 206, 206, (366,180,0): 146, 206, 207, (366,181,0): 146, 206, 207, (366,182,0): 146, 205, 209, (366,183,0): 146, 205, 209, (366,184,0): 146, 205, 209, (366,185,0): 146, 205, 209, (366,186,0): 147, 206, 212, (366,187,0): 147, 206, 212, (366,188,0): 147, 206, 214, (366,189,0): 146, 205, 213, (366,190,0): 144, 203, 211, (366,191,0): 143, 201, 212, (366,192,0): 141, 199, 211, (366,193,0): 141, 199, 213, (366,194,0): 141, 199, 213, (366,195,0): 141, 199, 213, (366,196,0): 142, 198, 213, (366,197,0): 141, 197, 212, (366,198,0): 143, 196, 212, (366,199,0): 143, 196, 212, (366,200,0): 142, 195, 211, (366,201,0): 141, 194, 210, (366,202,0): 141, 192, 209, (366,203,0): 141, 192, 209, (366,204,0): 143, 192, 209, (366,205,0): 143, 192, 209, (366,206,0): 144, 193, 210, (366,207,0): 145, 194, 211, (366,208,0): 148, 196, 216, (366,209,0): 148, 196, 218, (366,210,0): 148, 196, 218, (366,211,0): 148, 196, 218, (366,212,0): 147, 195, 217, (366,213,0): 147, 195, 218, (366,214,0): 147, 195, 218, (366,215,0): 147, 194, 220, (366,216,0): 145, 192, 218, (366,217,0): 145, 192, 218, (366,218,0): 147, 194, 222, (366,219,0): 149, 196, 224, (366,220,0): 151, 198, 226, (366,221,0): 153, 200, 228, (366,222,0): 155, 202, 232, (366,223,0): 155, 202, 232, (366,224,0): 153, 198, 229, (366,225,0): 154, 197, 231, (366,226,0): 155, 198, 232, (366,227,0): 155, 200, 233, (366,228,0): 157, 201, 236, (366,229,0): 158, 202, 237, (366,230,0): 159, 203, 240, (366,231,0): 158, 203, 242, (366,232,0): 159, 204, 243, (366,233,0): 157, 205, 245, (366,234,0): 157, 204, 246, (366,235,0): 156, 203, 247, (366,236,0): 156, 203, 247, (366,237,0): 154, 202, 248, (366,238,0): 154, 202, 248, (366,239,0): 152, 203, 246, (366,240,0): 153, 204, 247, (366,241,0): 153, 204, 247, (366,242,0): 153, 205, 245, (366,243,0): 153, 205, 245, (366,244,0): 153, 205, 245, (366,245,0): 153, 205, 245, (366,246,0): 153, 205, 245, (366,247,0): 153, 205, 245, (366,248,0): 154, 206, 245, (366,249,0): 154, 206, 245, (366,250,0): 154, 206, 243, (366,251,0): 154, 206, 243, (366,252,0): 155, 207, 244, (366,253,0): 155, 207, 244, (366,254,0): 155, 207, 244, (366,255,0): 155, 207, 246, (366,256,0): 157, 208, 253, (366,257,0): 157, 207, 255, (366,258,0): 157, 209, 255, (366,259,0): 157, 209, 255, (366,260,0): 157, 209, 255, (366,261,0): 158, 210, 255, (366,262,0): 157, 211, 255, (366,263,0): 157, 211, 255, (366,264,0): 158, 212, 255, (366,265,0): 156, 213, 255, (366,266,0): 156, 213, 255, (366,267,0): 156, 213, 255, (366,268,0): 155, 214, 254, (366,269,0): 155, 214, 254, (366,270,0): 155, 214, 254, (366,271,0): 155, 215, 252, (366,272,0): 159, 215, 252, (366,273,0): 159, 215, 250, (366,274,0): 159, 215, 252, (366,275,0): 159, 214, 253, (366,276,0): 158, 213, 254, (366,277,0): 156, 210, 254, (366,278,0): 154, 208, 254, (366,279,0): 153, 207, 253, (366,280,0): 150, 203, 253, (366,281,0): 149, 202, 252, (366,282,0): 149, 202, 255, (366,283,0): 149, 202, 255, (366,284,0): 148, 200, 255, (366,285,0): 148, 200, 255, (366,286,0): 147, 199, 255, (366,287,0): 145, 200, 255, (366,288,0): 147, 202, 255, (366,289,0): 144, 200, 255, (366,290,0): 143, 200, 255, (366,291,0): 144, 201, 255, (366,292,0): 148, 205, 255, (366,293,0): 149, 206, 255, (366,294,0): 149, 205, 255, (366,295,0): 147, 203, 254, (366,296,0): 153, 206, 255, (366,297,0): 152, 205, 255, (366,298,0): 153, 205, 253, (366,299,0): 152, 204, 251, (366,300,0): 151, 203, 250, (366,301,0): 151, 204, 248, (366,302,0): 150, 203, 247, (366,303,0): 153, 201, 249, (366,304,0): 158, 198, 250, (366,305,0): 165, 200, 255, (366,306,0): 166, 201, 255, (366,307,0): 168, 200, 255, (366,308,0): 172, 201, 255, (366,309,0): 176, 198, 255, (366,310,0): 169, 185, 237, (366,311,0): 161, 168, 214, (366,312,0): 148, 144, 181, (366,313,0): 137, 124, 152, (366,314,0): 120, 99, 118, (366,315,0): 104, 78, 89, (366,316,0): 93, 66, 71, (366,317,0): 86, 60, 59, (366,318,0): 81, 56, 51, (366,319,0): 76, 53, 47, (366,320,0): 78, 60, 58, (366,321,0): 73, 59, 58, (366,322,0): 73, 57, 57, (366,323,0): 75, 57, 55, (366,324,0): 76, 56, 55, (366,325,0): 74, 54, 53, (366,326,0): 71, 50, 49, (366,327,0): 67, 46, 45, (366,328,0): 64, 42, 44, (366,329,0): 63, 41, 43, (366,330,0): 61, 38, 44, (366,331,0): 59, 38, 45, (366,332,0): 57, 37, 46, (366,333,0): 55, 38, 48, (366,334,0): 55, 37, 49, (366,335,0): 55, 38, 48, (366,336,0): 55, 36, 38, (366,337,0): 57, 37, 36, (366,338,0): 57, 37, 38, (366,339,0): 57, 37, 38, (366,340,0): 57, 38, 40, (366,341,0): 57, 38, 40, (366,342,0): 59, 38, 43, (366,343,0): 59, 38, 43, (366,344,0): 64, 39, 43, (366,345,0): 66, 39, 44, (366,346,0): 69, 40, 44, (366,347,0): 72, 40, 43, (366,348,0): 78, 42, 44, (366,349,0): 84, 45, 46, (366,350,0): 88, 48, 48, (366,351,0): 93, 49, 48, (366,352,0): 94, 46, 42, (366,353,0): 93, 45, 41, (366,354,0): 87, 43, 40, (366,355,0): 83, 42, 40, (366,356,0): 79, 41, 40, (366,357,0): 76, 40, 40, (366,358,0): 78, 39, 42, (366,359,0): 78, 39, 42, (366,360,0): 81, 39, 43, (366,361,0): 82, 37, 40, (366,362,0): 80, 36, 37, (366,363,0): 78, 34, 33, (366,364,0): 77, 34, 28, (366,365,0): 75, 35, 27, (366,366,0): 74, 36, 25, (366,367,0): 75, 37, 28, (366,368,0): 76, 35, 33, (366,369,0): 77, 35, 37, (366,370,0): 78, 36, 38, (366,371,0): 79, 37, 39, (366,372,0): 80, 38, 40, (366,373,0): 81, 39, 41, (366,374,0): 82, 40, 42, (366,375,0): 83, 41, 43, (366,376,0): 75, 33, 35, (366,377,0): 75, 33, 35, (366,378,0): 74, 32, 34, (366,379,0): 74, 32, 34, (366,380,0): 73, 31, 33, (366,381,0): 72, 30, 32, (366,382,0): 72, 30, 32, (366,383,0): 71, 29, 31, (366,384,0): 76, 31, 36, (366,385,0): 76, 31, 36, (366,386,0): 75, 33, 37, (366,387,0): 76, 34, 36, (366,388,0): 75, 35, 35, (366,389,0): 74, 34, 34, (366,390,0): 72, 34, 33, (366,391,0): 72, 34, 33, (366,392,0): 67, 31, 31, (366,393,0): 67, 31, 31, (366,394,0): 66, 30, 32, (366,395,0): 66, 30, 34, (366,396,0): 65, 28, 35, (366,397,0): 65, 28, 36, (366,398,0): 64, 26, 37, (366,399,0): 63, 27, 37, (366,400,0): 58, 28, 36, (366,401,0): 56, 29, 36, (366,402,0): 55, 28, 35, (366,403,0): 55, 28, 35, (366,404,0): 54, 27, 34, (366,405,0): 53, 26, 33, (366,406,0): 53, 26, 33, (366,407,0): 52, 25, 32, (366,408,0): 52, 25, 32, (366,409,0): 52, 25, 32, (366,410,0): 52, 25, 32, (366,411,0): 52, 25, 32, (366,412,0): 52, 25, 32, (366,413,0): 52, 25, 32, (366,414,0): 52, 25, 32, (366,415,0): 54, 25, 30, (366,416,0): 58, 26, 31, (366,417,0): 58, 26, 31, (366,418,0): 58, 26, 31, (366,419,0): 55, 26, 30, (366,420,0): 53, 27, 30, (366,421,0): 51, 26, 29, (366,422,0): 49, 27, 29, (366,423,0): 49, 27, 29, (366,424,0): 47, 25, 27, (366,425,0): 46, 24, 26, (366,426,0): 47, 22, 25, (366,427,0): 48, 22, 25, (366,428,0): 51, 20, 25, (366,429,0): 52, 20, 25, (366,430,0): 55, 20, 26, (366,431,0): 59, 19, 27, (366,432,0): 62, 19, 26, (366,433,0): 65, 20, 27, (366,434,0): 65, 24, 32, (366,435,0): 66, 26, 34, (366,436,0): 63, 28, 34, (366,437,0): 59, 28, 33, (366,438,0): 54, 27, 32, (366,439,0): 51, 26, 30, (366,440,0): 48, 27, 32, (366,441,0): 46, 27, 31, (366,442,0): 43, 27, 30, (366,443,0): 42, 26, 29, (366,444,0): 42, 25, 31, (366,445,0): 42, 25, 31, (366,446,0): 43, 26, 32, (366,447,0): 44, 27, 35, (366,448,0): 39, 23, 34, (366,449,0): 38, 22, 35, (366,450,0): 37, 21, 34, (366,451,0): 37, 21, 34, (366,452,0): 38, 20, 32, (366,453,0): 39, 21, 33, (366,454,0): 42, 22, 33, (366,455,0): 43, 23, 34, (366,456,0): 46, 24, 36, (366,457,0): 48, 24, 37, (366,458,0): 53, 27, 38, (366,459,0): 56, 30, 41, (366,460,0): 58, 32, 41, (366,461,0): 59, 32, 41, (366,462,0): 59, 32, 41, (366,463,0): 58, 33, 39, (366,464,0): 57, 38, 40, (366,465,0): 60, 44, 44, (366,466,0): 64, 48, 48, (366,467,0): 63, 47, 47, (366,468,0): 59, 43, 43, (366,469,0): 58, 42, 42, (366,470,0): 62, 46, 46, (366,471,0): 67, 51, 51, (366,472,0): 68, 52, 52, (366,473,0): 67, 51, 51, (366,474,0): 66, 50, 50, (366,475,0): 63, 47, 47, (366,476,0): 61, 45, 45, (366,477,0): 58, 42, 42, (366,478,0): 57, 41, 41, (366,479,0): 58, 40, 38, (366,480,0): 63, 42, 37, (366,481,0): 66, 43, 37, (366,482,0): 68, 44, 40, (366,483,0): 70, 46, 42, (366,484,0): 70, 46, 44, (366,485,0): 68, 44, 42, (366,486,0): 66, 42, 42, (366,487,0): 65, 41, 41, (366,488,0): 59, 34, 37, (366,489,0): 59, 34, 37, (366,490,0): 58, 33, 37, (366,491,0): 57, 32, 38, (366,492,0): 56, 30, 39, (366,493,0): 55, 29, 38, (366,494,0): 54, 28, 37, (366,495,0): 51, 28, 34, (366,496,0): 52, 33, 35, (366,497,0): 51, 35, 35, (366,498,0): 52, 36, 36, (366,499,0): 54, 38, 38, (366,500,0): 57, 39, 39, (366,501,0): 59, 41, 41, (366,502,0): 59, 41, 41, (366,503,0): 60, 42, 42, (366,504,0): 63, 43, 44, (366,505,0): 61, 41, 42, (366,506,0): 59, 37, 39, (366,507,0): 57, 35, 37, (366,508,0): 55, 33, 35, (366,509,0): 55, 33, 35, (366,510,0): 57, 32, 35, (366,511,0): 55, 33, 35, (366,512,0): 48, 28, 30, (366,513,0): 46, 27, 29, (366,514,0): 44, 25, 27, (366,515,0): 43, 24, 26, (366,516,0): 42, 23, 25, (366,517,0): 42, 23, 25, (366,518,0): 43, 24, 26, (366,519,0): 44, 26, 26, (366,520,0): 46, 28, 28, (366,521,0): 47, 29, 27, (366,522,0): 47, 29, 27, (366,523,0): 48, 30, 26, (366,524,0): 49, 31, 27, (366,525,0): 50, 32, 28, (366,526,0): 51, 33, 29, (366,527,0): 52, 34, 32, (366,528,0): 46, 30, 33, (366,529,0): 47, 30, 36, (366,530,0): 49, 32, 38, (366,531,0): 51, 34, 40, (366,532,0): 52, 36, 39, (366,533,0): 52, 36, 39, (366,534,0): 52, 36, 39, (366,535,0): 51, 35, 38, (366,536,0): 55, 39, 40, (366,537,0): 54, 38, 39, (366,538,0): 53, 37, 38, (366,539,0): 53, 37, 38, (366,540,0): 52, 36, 36, (366,541,0): 52, 36, 36, (366,542,0): 52, 36, 36, (366,543,0): 52, 36, 37, (366,544,0): 55, 34, 39, (366,545,0): 54, 33, 40, (366,546,0): 53, 32, 39, (366,547,0): 52, 31, 38, (366,548,0): 52, 31, 36, (366,549,0): 52, 31, 36, (366,550,0): 53, 32, 37, (366,551,0): 54, 33, 38, (366,552,0): 56, 36, 38, (366,553,0): 56, 36, 38, (366,554,0): 56, 36, 37, (366,555,0): 56, 36, 37, (366,556,0): 56, 36, 37, (366,557,0): 56, 36, 37, (366,558,0): 56, 36, 35, (366,559,0): 56, 37, 33, (366,560,0): 56, 35, 30, (366,561,0): 57, 34, 28, (366,562,0): 54, 33, 28, (366,563,0): 51, 32, 26, (366,564,0): 49, 30, 26, (366,565,0): 46, 28, 26, (366,566,0): 43, 27, 27, (366,567,0): 41, 27, 26, (366,568,0): 35, 23, 25, (366,569,0): 34, 24, 25, (366,570,0): 31, 22, 27, (366,571,0): 28, 22, 26, (366,572,0): 28, 21, 28, (366,573,0): 27, 22, 29, (366,574,0): 26, 23, 32, (366,575,0): 29, 24, 30, (366,576,0): 32, 22, 23, (366,577,0): 36, 26, 25, (366,578,0): 40, 35, 32, (366,579,0): 42, 41, 37, (366,580,0): 42, 44, 39, (366,581,0): 44, 49, 43, (366,582,0): 48, 53, 47, (366,583,0): 53, 55, 50, (366,584,0): 53, 54, 49, (366,585,0): 56, 52, 49, (366,586,0): 57, 52, 49, (366,587,0): 59, 51, 49, (366,588,0): 57, 52, 49, (366,589,0): 56, 52, 49, (366,590,0): 56, 52, 49, (366,591,0): 54, 53, 51, (366,592,0): 52, 46, 50, (366,593,0): 52, 45, 52, (366,594,0): 54, 44, 52, (366,595,0): 54, 44, 52, (366,596,0): 55, 42, 51, (366,597,0): 54, 41, 50, (366,598,0): 54, 38, 48, (366,599,0): 53, 37, 47, (367,0,0): 70, 55, 48, (367,1,0): 70, 55, 48, (367,2,0): 70, 56, 47, (367,3,0): 71, 57, 48, (367,4,0): 73, 59, 48, (367,5,0): 75, 61, 50, (367,6,0): 77, 63, 52, (367,7,0): 78, 64, 51, (367,8,0): 76, 63, 47, (367,9,0): 80, 67, 50, (367,10,0): 85, 72, 55, (367,11,0): 86, 73, 54, (367,12,0): 86, 73, 54, (367,13,0): 88, 75, 56, (367,14,0): 92, 80, 58, (367,15,0): 98, 83, 60, (367,16,0): 105, 85, 60, (367,17,0): 104, 83, 56, (367,18,0): 102, 80, 56, (367,19,0): 101, 79, 55, (367,20,0): 100, 78, 54, (367,21,0): 101, 79, 55, (367,22,0): 102, 80, 57, (367,23,0): 103, 81, 58, (367,24,0): 104, 82, 59, (367,25,0): 105, 83, 60, (367,26,0): 106, 84, 63, (367,27,0): 107, 85, 64, (367,28,0): 107, 85, 64, (367,29,0): 106, 84, 63, (367,30,0): 104, 81, 63, (367,31,0): 101, 80, 61, (367,32,0): 105, 84, 65, (367,33,0): 103, 85, 65, (367,34,0): 101, 83, 63, (367,35,0): 99, 81, 61, (367,36,0): 97, 79, 59, (367,37,0): 95, 77, 57, (367,38,0): 93, 75, 55, (367,39,0): 92, 74, 54, (367,40,0): 89, 71, 51, (367,41,0): 88, 70, 50, (367,42,0): 86, 68, 48, (367,43,0): 85, 67, 47, (367,44,0): 84, 66, 46, (367,45,0): 85, 67, 47, (367,46,0): 85, 67, 47, (367,47,0): 86, 68, 48, (367,48,0): 87, 69, 49, (367,49,0): 86, 68, 48, (367,50,0): 86, 65, 46, (367,51,0): 82, 64, 44, (367,52,0): 83, 62, 45, (367,53,0): 81, 62, 45, (367,54,0): 83, 62, 45, (367,55,0): 81, 62, 45, (367,56,0): 79, 58, 41, (367,57,0): 79, 60, 43, (367,58,0): 84, 63, 46, (367,59,0): 84, 65, 48, (367,60,0): 87, 66, 49, (367,61,0): 85, 66, 49, (367,62,0): 86, 65, 48, (367,63,0): 83, 64, 49, (367,64,0): 77, 61, 48, (367,65,0): 74, 60, 47, (367,66,0): 73, 59, 46, (367,67,0): 74, 58, 45, (367,68,0): 73, 57, 42, (367,69,0): 73, 57, 42, (367,70,0): 75, 57, 43, (367,71,0): 75, 58, 42, (367,72,0): 71, 52, 37, (367,73,0): 72, 51, 34, (367,74,0): 70, 49, 32, (367,75,0): 68, 47, 28, (367,76,0): 69, 46, 28, (367,77,0): 70, 47, 29, (367,78,0): 73, 48, 28, (367,79,0): 74, 48, 31, (367,80,0): 79, 53, 36, (367,81,0): 81, 55, 40, (367,82,0): 83, 57, 42, (367,83,0): 85, 59, 44, (367,84,0): 87, 61, 44, (367,85,0): 86, 60, 43, (367,86,0): 86, 59, 40, (367,87,0): 86, 59, 40, (367,88,0): 90, 63, 44, (367,89,0): 91, 64, 45, (367,90,0): 92, 63, 45, (367,91,0): 91, 63, 42, (367,92,0): 90, 62, 41, (367,93,0): 92, 64, 43, (367,94,0): 97, 69, 48, (367,95,0): 101, 73, 52, (367,96,0): 95, 68, 47, (367,97,0): 100, 73, 52, (367,98,0): 105, 78, 57, (367,99,0): 108, 81, 60, (367,100,0): 108, 83, 63, (367,101,0): 111, 86, 64, (367,102,0): 115, 91, 67, (367,103,0): 116, 95, 68, (367,104,0): 113, 92, 61, (367,105,0): 124, 104, 69, (367,106,0): 142, 124, 84, (367,107,0): 162, 145, 101, (367,108,0): 178, 162, 113, (367,109,0): 188, 172, 120, (367,110,0): 191, 178, 123, (367,111,0): 192, 180, 122, (367,112,0): 196, 184, 124, (367,113,0): 196, 184, 124, (367,114,0): 195, 185, 124, (367,115,0): 195, 186, 127, (367,116,0): 193, 187, 129, (367,117,0): 193, 188, 132, (367,118,0): 190, 189, 133, (367,119,0): 189, 189, 135, (367,120,0): 180, 182, 132, (367,121,0): 177, 184, 133, (367,122,0): 175, 183, 134, (367,123,0): 172, 184, 134, (367,124,0): 170, 184, 135, (367,125,0): 168, 184, 137, (367,126,0): 167, 183, 138, (367,127,0): 165, 184, 139, (367,128,0): 164, 187, 145, (367,129,0): 162, 187, 147, (367,130,0): 162, 187, 148, (367,131,0): 161, 187, 148, (367,132,0): 160, 186, 149, (367,133,0): 159, 187, 149, (367,134,0): 157, 187, 151, (367,135,0): 156, 187, 153, (367,136,0): 156, 187, 155, (367,137,0): 154, 187, 156, (367,138,0): 154, 189, 157, (367,139,0): 155, 190, 160, (367,140,0): 154, 191, 160, (367,141,0): 155, 191, 163, (367,142,0): 154, 193, 164, (367,143,0): 154, 193, 164, (367,144,0): 156, 195, 166, (367,145,0): 157, 196, 167, (367,146,0): 158, 197, 170, (367,147,0): 160, 199, 172, (367,148,0): 160, 200, 174, (367,149,0): 162, 202, 178, (367,150,0): 161, 203, 179, (367,151,0): 162, 204, 182, (367,152,0): 159, 202, 182, (367,153,0): 158, 203, 183, (367,154,0): 158, 202, 185, (367,155,0): 158, 202, 185, (367,156,0): 155, 202, 186, (367,157,0): 155, 202, 186, (367,158,0): 154, 202, 188, (367,159,0): 154, 202, 188, (367,160,0): 156, 204, 190, (367,161,0): 154, 205, 190, (367,162,0): 154, 205, 190, (367,163,0): 153, 204, 189, (367,164,0): 152, 202, 190, (367,165,0): 149, 201, 188, (367,166,0): 147, 199, 187, (367,167,0): 144, 197, 187, (367,168,0): 145, 198, 190, (367,169,0): 145, 198, 190, (367,170,0): 146, 199, 193, (367,171,0): 145, 200, 195, (367,172,0): 146, 201, 198, (367,173,0): 146, 202, 199, (367,174,0): 146, 202, 199, (367,175,0): 146, 202, 199, (367,176,0): 148, 206, 207, (367,177,0): 148, 206, 207, (367,178,0): 147, 205, 206, (367,179,0): 147, 205, 206, (367,180,0): 147, 205, 207, (367,181,0): 147, 205, 207, (367,182,0): 146, 204, 208, (367,183,0): 146, 204, 208, (367,184,0): 146, 204, 208, (367,185,0): 146, 204, 208, (367,186,0): 147, 204, 211, (367,187,0): 147, 204, 211, (367,188,0): 147, 204, 213, (367,189,0): 146, 203, 212, (367,190,0): 144, 201, 210, (367,191,0): 143, 200, 211, (367,192,0): 141, 197, 210, (367,193,0): 140, 198, 212, (367,194,0): 141, 197, 212, (367,195,0): 141, 197, 212, (367,196,0): 141, 197, 212, (367,197,0): 142, 198, 213, (367,198,0): 144, 197, 213, (367,199,0): 144, 197, 213, (367,200,0): 143, 196, 214, (367,201,0): 142, 195, 213, (367,202,0): 142, 193, 212, (367,203,0): 141, 192, 211, (367,204,0): 141, 192, 211, (367,205,0): 142, 193, 212, (367,206,0): 145, 193, 213, (367,207,0): 146, 194, 214, (367,208,0): 148, 196, 218, (367,209,0): 148, 196, 219, (367,210,0): 148, 196, 219, (367,211,0): 148, 196, 219, (367,212,0): 147, 195, 218, (367,213,0): 147, 194, 220, (367,214,0): 147, 194, 220, (367,215,0): 148, 194, 220, (367,216,0): 143, 189, 215, (367,217,0): 144, 190, 216, (367,218,0): 146, 191, 220, (367,219,0): 149, 194, 223, (367,220,0): 152, 197, 228, (367,221,0): 154, 199, 230, (367,222,0): 156, 201, 232, (367,223,0): 157, 202, 233, (367,224,0): 152, 197, 230, (367,225,0): 153, 198, 231, (367,226,0): 154, 199, 232, (367,227,0): 155, 200, 233, (367,228,0): 157, 201, 236, (367,229,0): 158, 202, 239, (367,230,0): 159, 203, 242, (367,231,0): 160, 204, 243, (367,232,0): 161, 206, 247, (367,233,0): 160, 205, 246, (367,234,0): 160, 204, 249, (367,235,0): 159, 203, 248, (367,236,0): 157, 201, 248, (367,237,0): 156, 200, 247, (367,238,0): 154, 201, 247, (367,239,0): 153, 200, 246, (367,240,0): 153, 204, 249, (367,241,0): 153, 204, 249, (367,242,0): 153, 204, 247, (367,243,0): 153, 204, 247, (367,244,0): 153, 204, 247, (367,245,0): 153, 204, 247, (367,246,0): 153, 204, 247, (367,247,0): 153, 204, 247, (367,248,0): 154, 206, 246, (367,249,0): 154, 206, 246, (367,250,0): 154, 206, 245, (367,251,0): 154, 206, 245, (367,252,0): 157, 206, 246, (367,253,0): 155, 207, 246, (367,254,0): 157, 206, 246, (367,255,0): 155, 207, 247, (367,256,0): 157, 208, 253, (367,257,0): 156, 208, 255, (367,258,0): 156, 208, 255, (367,259,0): 157, 209, 255, (367,260,0): 157, 209, 255, (367,261,0): 157, 210, 254, (367,262,0): 156, 210, 255, (367,263,0): 156, 210, 254, (367,264,0): 155, 212, 255, (367,265,0): 155, 212, 255, (367,266,0): 155, 212, 255, (367,267,0): 155, 212, 255, (367,268,0): 155, 213, 253, (367,269,0): 154, 213, 253, (367,270,0): 155, 213, 253, (367,271,0): 155, 213, 253, (367,272,0): 159, 214, 253, (367,273,0): 159, 215, 252, (367,274,0): 159, 214, 253, (367,275,0): 159, 214, 255, (367,276,0): 158, 212, 255, (367,277,0): 156, 210, 254, (367,278,0): 154, 208, 254, (367,279,0): 153, 207, 254, (367,280,0): 150, 203, 253, (367,281,0): 149, 202, 254, (367,282,0): 149, 202, 255, (367,283,0): 148, 201, 255, (367,284,0): 148, 200, 255, (367,285,0): 147, 199, 255, (367,286,0): 147, 199, 255, (367,287,0): 147, 199, 255, (367,288,0): 147, 202, 255, (367,289,0): 144, 200, 255, (367,290,0): 143, 200, 255, (367,291,0): 144, 201, 255, (367,292,0): 147, 204, 255, (367,293,0): 148, 205, 255, (367,294,0): 146, 204, 254, (367,295,0): 145, 201, 252, (367,296,0): 150, 206, 255, (367,297,0): 152, 205, 255, (367,298,0): 151, 204, 254, (367,299,0): 151, 203, 251, (367,300,0): 150, 202, 250, (367,301,0): 150, 202, 250, (367,302,0): 150, 200, 249, (367,303,0): 152, 200, 249, (367,304,0): 153, 194, 246, (367,305,0): 162, 199, 254, (367,306,0): 167, 202, 255, (367,307,0): 169, 201, 255, (367,308,0): 173, 199, 255, (367,309,0): 173, 192, 248, (367,310,0): 161, 171, 222, (367,311,0): 148, 149, 193, (367,312,0): 128, 118, 153, (367,313,0): 125, 109, 135, (367,314,0): 115, 92, 108, (367,315,0): 99, 73, 82, (367,316,0): 84, 60, 60, (367,317,0): 79, 55, 51, (367,318,0): 79, 59, 52, (367,319,0): 83, 64, 58, (367,320,0): 79, 64, 61, (367,321,0): 77, 61, 61, (367,322,0): 75, 60, 57, (367,323,0): 77, 59, 57, (367,324,0): 77, 59, 57, (367,325,0): 75, 55, 56, (367,326,0): 70, 50, 51, (367,327,0): 66, 46, 47, (367,328,0): 64, 42, 45, (367,329,0): 62, 42, 44, (367,330,0): 60, 39, 44, (367,331,0): 58, 39, 45, (367,332,0): 57, 37, 48, (367,333,0): 55, 37, 49, (367,334,0): 55, 37, 49, (367,335,0): 56, 39, 49, (367,336,0): 56, 36, 38, (367,337,0): 58, 36, 38, (367,338,0): 58, 36, 38, (367,339,0): 58, 38, 40, (367,340,0): 58, 37, 42, (367,341,0): 59, 38, 43, (367,342,0): 59, 38, 45, (367,343,0): 60, 37, 45, (367,344,0): 65, 40, 46, (367,345,0): 68, 39, 44, (367,346,0): 70, 40, 42, (367,347,0): 75, 41, 42, (367,348,0): 82, 42, 42, (367,349,0): 87, 46, 44, (367,350,0): 92, 49, 43, (367,351,0): 97, 49, 45, (367,352,0): 97, 48, 44, (367,353,0): 95, 46, 42, (367,354,0): 90, 45, 42, (367,355,0): 84, 43, 41, (367,356,0): 80, 42, 41, (367,357,0): 76, 41, 39, (367,358,0): 74, 38, 38, (367,359,0): 76, 37, 38, (367,360,0): 81, 41, 42, (367,361,0): 80, 38, 40, (367,362,0): 80, 36, 37, (367,363,0): 78, 34, 33, (367,364,0): 76, 32, 29, (367,365,0): 75, 32, 26, (367,366,0): 73, 33, 25, (367,367,0): 72, 33, 26, (367,368,0): 76, 34, 35, (367,369,0): 76, 34, 36, (367,370,0): 77, 35, 37, (367,371,0): 78, 36, 38, (367,372,0): 80, 38, 40, (367,373,0): 81, 39, 41, (367,374,0): 82, 40, 42, (367,375,0): 83, 41, 43, (367,376,0): 75, 33, 35, (367,377,0): 74, 34, 35, (367,378,0): 73, 32, 36, (367,379,0): 73, 32, 36, (367,380,0): 72, 31, 35, (367,381,0): 71, 30, 34, (367,382,0): 70, 29, 33, (367,383,0): 71, 29, 33, (367,384,0): 75, 30, 35, (367,385,0): 76, 31, 36, (367,386,0): 75, 33, 37, (367,387,0): 76, 34, 36, (367,388,0): 76, 34, 36, (367,389,0): 74, 34, 34, (367,390,0): 72, 34, 33, (367,391,0): 71, 33, 32, (367,392,0): 66, 30, 30, (367,393,0): 66, 30, 32, (367,394,0): 66, 30, 34, (367,395,0): 64, 29, 33, (367,396,0): 64, 29, 35, (367,397,0): 63, 28, 35, (367,398,0): 63, 28, 35, (367,399,0): 60, 27, 36, (367,400,0): 56, 26, 34, (367,401,0): 54, 27, 34, (367,402,0): 54, 27, 34, (367,403,0): 54, 27, 34, (367,404,0): 53, 26, 33, (367,405,0): 53, 26, 33, (367,406,0): 53, 26, 33, (367,407,0): 53, 26, 33, (367,408,0): 52, 25, 32, (367,409,0): 52, 25, 32, (367,410,0): 52, 25, 32, (367,411,0): 52, 25, 32, (367,412,0): 52, 25, 32, (367,413,0): 52, 25, 32, (367,414,0): 52, 25, 32, (367,415,0): 54, 25, 30, (367,416,0): 58, 27, 32, (367,417,0): 57, 26, 31, (367,418,0): 57, 26, 31, (367,419,0): 55, 26, 30, (367,420,0): 53, 27, 30, (367,421,0): 51, 26, 29, (367,422,0): 49, 27, 29, (367,423,0): 48, 28, 29, (367,424,0): 44, 22, 24, (367,425,0): 44, 22, 25, (367,426,0): 47, 22, 26, (367,427,0): 49, 22, 27, (367,428,0): 51, 22, 27, (367,429,0): 53, 22, 28, (367,430,0): 53, 22, 28, (367,431,0): 56, 21, 28, (367,432,0): 54, 18, 22, (367,433,0): 59, 20, 25, (367,434,0): 61, 24, 31, (367,435,0): 64, 29, 35, (367,436,0): 62, 31, 36, (367,437,0): 60, 31, 35, (367,438,0): 56, 29, 34, (367,439,0): 53, 28, 32, (367,440,0): 51, 28, 34, (367,441,0): 49, 28, 33, (367,442,0): 46, 27, 31, (367,443,0): 42, 26, 29, (367,444,0): 40, 25, 30, (367,445,0): 40, 25, 30, (367,446,0): 40, 25, 30, (367,447,0): 39, 26, 33, (367,448,0): 35, 22, 31, (367,449,0): 35, 22, 31, (367,450,0): 34, 21, 31, (367,451,0): 34, 21, 30, (367,452,0): 37, 21, 31, (367,453,0): 38, 22, 32, (367,454,0): 41, 24, 32, (367,455,0): 44, 24, 33, (367,456,0): 46, 25, 34, (367,457,0): 48, 27, 36, (367,458,0): 52, 29, 37, (367,459,0): 54, 31, 39, (367,460,0): 58, 32, 41, (367,461,0): 58, 33, 39, (367,462,0): 57, 31, 40, (367,463,0): 54, 31, 37, (367,464,0): 55, 37, 37, (367,465,0): 59, 44, 41, (367,466,0): 64, 49, 46, (367,467,0): 63, 48, 45, (367,468,0): 59, 44, 41, (367,469,0): 58, 43, 40, (367,470,0): 63, 48, 45, (367,471,0): 68, 53, 50, (367,472,0): 72, 57, 54, (367,473,0): 71, 56, 53, (367,474,0): 69, 54, 51, (367,475,0): 66, 51, 48, (367,476,0): 62, 48, 45, (367,477,0): 59, 45, 42, (367,478,0): 57, 43, 40, (367,479,0): 57, 42, 37, (367,480,0): 61, 42, 36, (367,481,0): 64, 44, 37, (367,482,0): 66, 46, 39, (367,483,0): 69, 48, 43, (367,484,0): 69, 48, 43, (367,485,0): 68, 47, 42, (367,486,0): 66, 45, 42, (367,487,0): 65, 44, 41, (367,488,0): 61, 37, 37, (367,489,0): 60, 36, 36, (367,490,0): 60, 35, 38, (367,491,0): 59, 34, 37, (367,492,0): 58, 33, 37, (367,493,0): 56, 31, 35, (367,494,0): 54, 29, 33, (367,495,0): 51, 29, 31, (367,496,0): 56, 36, 37, (367,497,0): 55, 37, 35, (367,498,0): 56, 38, 36, (367,499,0): 57, 39, 37, (367,500,0): 59, 41, 39, (367,501,0): 61, 43, 41, (367,502,0): 64, 44, 43, (367,503,0): 65, 45, 46, (367,504,0): 65, 45, 46, (367,505,0): 63, 43, 44, (367,506,0): 61, 39, 41, (367,507,0): 58, 36, 38, (367,508,0): 56, 34, 36, (367,509,0): 55, 33, 35, (367,510,0): 57, 32, 35, (367,511,0): 55, 33, 35, (367,512,0): 47, 27, 29, (367,513,0): 45, 26, 30, (367,514,0): 44, 25, 29, (367,515,0): 43, 24, 28, (367,516,0): 42, 23, 27, (367,517,0): 42, 23, 27, (367,518,0): 43, 24, 28, (367,519,0): 44, 25, 27, (367,520,0): 47, 28, 30, (367,521,0): 47, 29, 29, (367,522,0): 48, 30, 30, (367,523,0): 47, 32, 29, (367,524,0): 50, 32, 30, (367,525,0): 49, 34, 31, (367,526,0): 50, 35, 30, (367,527,0): 50, 35, 32, (367,528,0): 46, 30, 33, (367,529,0): 48, 31, 37, (367,530,0): 50, 33, 39, (367,531,0): 52, 35, 41, (367,532,0): 52, 37, 40, (367,533,0): 52, 37, 40, (367,534,0): 50, 35, 38, (367,535,0): 50, 36, 36, (367,536,0): 54, 40, 40, (367,537,0): 54, 40, 39, (367,538,0): 54, 40, 39, (367,539,0): 54, 40, 39, (367,540,0): 55, 39, 39, (367,541,0): 54, 39, 36, (367,542,0): 53, 38, 35, (367,543,0): 54, 36, 36, (367,544,0): 55, 36, 38, (367,545,0): 56, 36, 38, (367,546,0): 55, 35, 37, (367,547,0): 54, 34, 36, (367,548,0): 54, 34, 36, (367,549,0): 55, 35, 36, (367,550,0): 57, 37, 39, (367,551,0): 58, 38, 39, (367,552,0): 59, 39, 40, (367,553,0): 59, 39, 40, (367,554,0): 58, 38, 37, (367,555,0): 58, 38, 37, (367,556,0): 57, 37, 36, (367,557,0): 57, 37, 36, (367,558,0): 57, 36, 33, (367,559,0): 57, 36, 33, (367,560,0): 56, 32, 28, (367,561,0): 55, 31, 27, (367,562,0): 54, 30, 28, (367,563,0): 51, 30, 27, (367,564,0): 48, 28, 27, (367,565,0): 46, 28, 28, (367,566,0): 45, 26, 28, (367,567,0): 43, 27, 30, (367,568,0): 35, 23, 27, (367,569,0): 33, 22, 26, (367,570,0): 32, 21, 27, (367,571,0): 30, 20, 28, (367,572,0): 27, 20, 27, (367,573,0): 27, 22, 29, (367,574,0): 28, 23, 30, (367,575,0): 28, 23, 29, (367,576,0): 31, 22, 25, (367,577,0): 36, 28, 26, (367,578,0): 41, 37, 36, (367,579,0): 44, 43, 39, (367,580,0): 44, 46, 43, (367,581,0): 44, 49, 43, (367,582,0): 46, 51, 47, (367,583,0): 51, 53, 48, (367,584,0): 43, 43, 41, (367,585,0): 44, 43, 39, (367,586,0): 48, 42, 42, (367,587,0): 48, 43, 40, (367,588,0): 48, 42, 42, (367,589,0): 49, 44, 41, (367,590,0): 48, 44, 43, (367,591,0): 48, 44, 43, (367,592,0): 50, 44, 48, (367,593,0): 52, 42, 50, (367,594,0): 52, 42, 50, (367,595,0): 53, 42, 50, (367,596,0): 52, 41, 49, (367,597,0): 52, 39, 48, (367,598,0): 51, 38, 47, (367,599,0): 50, 37, 46, (368,0,0): 72, 57, 50, (368,1,0): 72, 57, 50, (368,2,0): 72, 58, 49, (368,3,0): 73, 59, 50, (368,4,0): 73, 59, 50, (368,5,0): 74, 60, 49, (368,6,0): 74, 60, 49, (368,7,0): 74, 60, 47, (368,8,0): 75, 61, 48, (368,9,0): 79, 66, 50, (368,10,0): 84, 71, 55, (368,11,0): 86, 73, 57, (368,12,0): 87, 74, 58, (368,13,0): 89, 76, 59, (368,14,0): 94, 81, 64, (368,15,0): 100, 85, 66, (368,16,0): 102, 84, 62, (368,17,0): 104, 84, 59, (368,18,0): 104, 84, 60, (368,19,0): 104, 84, 60, (368,20,0): 102, 82, 58, (368,21,0): 100, 80, 56, (368,22,0): 98, 78, 54, (368,23,0): 97, 77, 53, (368,24,0): 100, 80, 56, (368,25,0): 101, 81, 57, (368,26,0): 102, 82, 58, (368,27,0): 104, 84, 60, (368,28,0): 105, 85, 61, (368,29,0): 107, 87, 63, (368,30,0): 108, 87, 66, (368,31,0): 109, 88, 67, (368,32,0): 108, 87, 66, (368,33,0): 107, 86, 65, (368,34,0): 106, 85, 64, (368,35,0): 104, 83, 62, (368,36,0): 102, 81, 60, (368,37,0): 100, 79, 58, (368,38,0): 99, 78, 57, (368,39,0): 98, 77, 56, (368,40,0): 97, 76, 55, (368,41,0): 96, 75, 54, (368,42,0): 94, 73, 52, (368,43,0): 93, 72, 51, (368,44,0): 92, 71, 50, (368,45,0): 91, 70, 49, (368,46,0): 91, 70, 49, (368,47,0): 89, 71, 49, (368,48,0): 88, 70, 48, (368,49,0): 86, 70, 47, (368,50,0): 86, 68, 46, (368,51,0): 83, 67, 44, (368,52,0): 82, 64, 44, (368,53,0): 80, 63, 43, (368,54,0): 79, 61, 41, (368,55,0): 77, 60, 40, (368,56,0): 81, 62, 45, (368,57,0): 81, 64, 46, (368,58,0): 84, 65, 48, (368,59,0): 84, 67, 49, (368,60,0): 86, 67, 52, (368,61,0): 85, 68, 52, (368,62,0): 85, 66, 51, (368,63,0): 83, 66, 50, (368,64,0): 81, 64, 48, (368,65,0): 80, 65, 46, (368,66,0): 79, 64, 45, (368,67,0): 80, 63, 45, (368,68,0): 79, 62, 46, (368,69,0): 78, 61, 45, (368,70,0): 77, 60, 44, (368,71,0): 77, 60, 44, (368,72,0): 72, 55, 39, (368,73,0): 72, 53, 38, (368,74,0): 72, 53, 38, (368,75,0): 72, 53, 38, (368,76,0): 71, 52, 37, (368,77,0): 71, 52, 37, (368,78,0): 70, 51, 36, (368,79,0): 72, 51, 34, (368,80,0): 69, 48, 31, (368,81,0): 72, 49, 31, (368,82,0): 75, 52, 34, (368,83,0): 78, 55, 37, (368,84,0): 79, 56, 38, (368,85,0): 80, 57, 39, (368,86,0): 79, 56, 38, (368,87,0): 79, 56, 38, (368,88,0): 82, 59, 41, (368,89,0): 82, 59, 41, (368,90,0): 83, 60, 42, (368,91,0): 84, 62, 41, (368,92,0): 84, 62, 41, (368,93,0): 85, 63, 42, (368,94,0): 86, 64, 43, (368,95,0): 86, 63, 45, (368,96,0): 89, 66, 50, (368,97,0): 91, 68, 52, (368,98,0): 93, 70, 54, (368,99,0): 96, 73, 57, (368,100,0): 99, 76, 58, (368,101,0): 102, 79, 61, (368,102,0): 105, 83, 62, (368,103,0): 105, 85, 61, (368,104,0): 105, 85, 58, (368,105,0): 110, 91, 61, (368,106,0): 119, 100, 68, (368,107,0): 132, 114, 78, (368,108,0): 147, 129, 91, (368,109,0): 162, 144, 104, (368,110,0): 174, 156, 116, (368,111,0): 181, 164, 120, (368,112,0): 180, 162, 116, (368,113,0): 183, 165, 117, (368,114,0): 186, 170, 121, (368,115,0): 189, 175, 126, (368,116,0): 192, 180, 132, (368,117,0): 193, 183, 134, (368,118,0): 191, 185, 137, (368,119,0): 189, 187, 139, (368,120,0): 184, 183, 137, (368,121,0): 181, 184, 139, (368,122,0): 179, 185, 141, (368,123,0): 177, 184, 140, (368,124,0): 174, 183, 140, (368,125,0): 170, 181, 138, (368,126,0): 167, 180, 137, (368,127,0): 162, 179, 137, (368,128,0): 163, 184, 143, (368,129,0): 160, 185, 145, (368,130,0): 160, 185, 145, (368,131,0): 159, 185, 146, (368,132,0): 160, 186, 149, (368,133,0): 160, 188, 150, (368,134,0): 159, 189, 153, (368,135,0): 158, 189, 155, (368,136,0): 156, 187, 155, (368,137,0): 152, 185, 154, (368,138,0): 149, 184, 154, (368,139,0): 147, 181, 154, (368,140,0): 148, 184, 156, (368,141,0): 149, 188, 161, (368,142,0): 153, 192, 165, (368,143,0): 156, 195, 168, (368,144,0): 161, 200, 173, (368,145,0): 161, 201, 174, (368,146,0): 162, 202, 176, (368,147,0): 163, 203, 177, (368,148,0): 163, 203, 179, (368,149,0): 162, 202, 178, (368,150,0): 161, 200, 179, (368,151,0): 158, 200, 180, (368,152,0): 161, 202, 186, (368,153,0): 160, 202, 188, (368,154,0): 160, 202, 190, (368,155,0): 160, 202, 190, (368,156,0): 160, 202, 192, (368,157,0): 160, 202, 192, (368,158,0): 160, 201, 193, (368,159,0): 159, 202, 193, (368,160,0): 154, 200, 189, (368,161,0): 153, 201, 189, (368,162,0): 152, 200, 188, (368,163,0): 150, 200, 188, (368,164,0): 149, 199, 188, (368,165,0): 149, 199, 190, (368,166,0): 148, 197, 191, (368,167,0): 147, 198, 191, (368,168,0): 148, 199, 194, (368,169,0): 146, 198, 194, (368,170,0): 144, 196, 194, (368,171,0): 143, 195, 193, (368,172,0): 143, 194, 195, (368,173,0): 142, 196, 196, (368,174,0): 144, 198, 198, (368,175,0): 145, 199, 201, (368,176,0): 146, 200, 202, (368,177,0): 146, 199, 203, (368,178,0): 146, 199, 203, (368,179,0): 146, 199, 203, (368,180,0): 146, 199, 203, (368,181,0): 146, 199, 203, (368,182,0): 146, 199, 205, (368,183,0): 146, 199, 205, (368,184,0): 147, 200, 208, (368,185,0): 147, 200, 208, (368,186,0): 147, 199, 210, (368,187,0): 147, 199, 210, (368,188,0): 147, 199, 210, (368,189,0): 147, 199, 210, (368,190,0): 147, 199, 210, (368,191,0): 147, 199, 212, (368,192,0): 144, 197, 211, (368,193,0): 141, 197, 212, (368,194,0): 143, 196, 212, (368,195,0): 142, 195, 211, (368,196,0): 141, 194, 212, (368,197,0): 140, 193, 211, (368,198,0): 140, 193, 211, (368,199,0): 139, 192, 210, (368,200,0): 141, 193, 214, (368,201,0): 141, 193, 214, (368,202,0): 142, 194, 215, (368,203,0): 143, 195, 216, (368,204,0): 144, 196, 218, (368,205,0): 144, 196, 218, (368,206,0): 146, 196, 219, (368,207,0): 146, 196, 219, (368,208,0): 147, 194, 220, (368,209,0): 147, 194, 220, (368,210,0): 149, 195, 221, (368,211,0): 149, 195, 221, (368,212,0): 149, 195, 221, (368,213,0): 149, 194, 223, (368,214,0): 148, 193, 222, (368,215,0): 149, 193, 222, (368,216,0): 148, 192, 221, (368,217,0): 149, 193, 222, (368,218,0): 150, 194, 223, (368,219,0): 151, 195, 224, (368,220,0): 154, 195, 225, (368,221,0): 155, 196, 226, (368,222,0): 156, 197, 227, (368,223,0): 154, 197, 229, (368,224,0): 153, 198, 231, (368,225,0): 152, 198, 231, (368,226,0): 151, 197, 231, (368,227,0): 151, 197, 231, (368,228,0): 152, 198, 234, (368,229,0): 155, 201, 237, (368,230,0): 158, 203, 242, (368,231,0): 159, 204, 243, (368,232,0): 164, 207, 249, (368,233,0): 163, 206, 248, (368,234,0): 162, 205, 250, (368,235,0): 161, 204, 249, (368,236,0): 160, 203, 248, (368,237,0): 158, 201, 246, (368,238,0): 158, 198, 247, (368,239,0): 156, 200, 247, (368,240,0): 155, 203, 252, (368,241,0): 152, 204, 252, (368,242,0): 152, 202, 251, (368,243,0): 152, 202, 251, (368,244,0): 153, 203, 252, (368,245,0): 155, 205, 254, (368,246,0): 158, 206, 254, (368,247,0): 160, 208, 255, (368,248,0): 159, 207, 253, (368,249,0): 158, 206, 252, (368,250,0): 156, 204, 250, (368,251,0): 154, 202, 248, (368,252,0): 155, 202, 248, (368,253,0): 155, 203, 249, (368,254,0): 158, 205, 249, (368,255,0): 158, 207, 250, (368,256,0): 155, 208, 252, (368,257,0): 154, 208, 252, (368,258,0): 154, 208, 252, (368,259,0): 154, 208, 252, (368,260,0): 154, 208, 252, (368,261,0): 154, 209, 250, (368,262,0): 154, 208, 252, (368,263,0): 154, 209, 250, (368,264,0): 153, 208, 249, (368,265,0): 154, 209, 250, (368,266,0): 156, 211, 252, (368,267,0): 158, 213, 254, (368,268,0): 158, 213, 254, (368,269,0): 156, 214, 254, (368,270,0): 158, 213, 254, (368,271,0): 157, 212, 253, (368,272,0): 159, 213, 255, (368,273,0): 158, 212, 255, (368,274,0): 157, 211, 255, (368,275,0): 156, 210, 255, (368,276,0): 154, 208, 255, (368,277,0): 153, 207, 254, (368,278,0): 152, 205, 255, (368,279,0): 152, 205, 255, (368,280,0): 151, 204, 255, (368,281,0): 150, 203, 255, (368,282,0): 150, 203, 255, (368,283,0): 150, 202, 255, (368,284,0): 149, 201, 255, (368,285,0): 148, 200, 255, (368,286,0): 148, 200, 255, (368,287,0): 148, 200, 255, (368,288,0): 143, 198, 255, (368,289,0): 143, 198, 254, (368,290,0): 142, 199, 254, (368,291,0): 142, 199, 254, (368,292,0): 140, 200, 252, (368,293,0): 140, 200, 252, (368,294,0): 140, 200, 252, (368,295,0): 142, 199, 252, (368,296,0): 146, 203, 255, (368,297,0): 146, 201, 255, (368,298,0): 147, 200, 254, (368,299,0): 147, 198, 255, (368,300,0): 147, 198, 255, (368,301,0): 149, 198, 255, (368,302,0): 152, 198, 255, (368,303,0): 153, 199, 255, (368,304,0): 153, 198, 253, (368,305,0): 157, 200, 255, (368,306,0): 163, 199, 255, (368,307,0): 167, 198, 255, (368,308,0): 174, 194, 253, (368,309,0): 170, 181, 235, (368,310,0): 153, 153, 203, (368,311,0): 134, 126, 167, (368,312,0): 122, 107, 138, (368,313,0): 114, 95, 115, (368,314,0): 99, 77, 89, (368,315,0): 85, 64, 69, (368,316,0): 79, 59, 60, (368,317,0): 78, 60, 58, (368,318,0): 78, 63, 60, (368,319,0): 79, 65, 62, (368,320,0): 86, 70, 70, (368,321,0): 88, 70, 70, (368,322,0): 87, 69, 69, (368,323,0): 85, 67, 67, (368,324,0): 81, 63, 63, (368,325,0): 75, 56, 58, (368,326,0): 69, 50, 52, (368,327,0): 66, 47, 51, (368,328,0): 64, 43, 50, (368,329,0): 62, 43, 49, (368,330,0): 60, 40, 49, (368,331,0): 59, 39, 50, (368,332,0): 58, 38, 49, (368,333,0): 59, 39, 51, (368,334,0): 59, 39, 51, (368,335,0): 60, 40, 51, (368,336,0): 59, 37, 40, (368,337,0): 60, 35, 38, (368,338,0): 60, 35, 41, (368,339,0): 58, 35, 43, (368,340,0): 59, 36, 46, (368,341,0): 60, 36, 49, (368,342,0): 62, 38, 51, (368,343,0): 65, 39, 50, (368,344,0): 76, 46, 56, (368,345,0): 77, 46, 52, (368,346,0): 81, 45, 49, (368,347,0): 84, 44, 44, (368,348,0): 90, 45, 40, (368,349,0): 95, 46, 39, (368,350,0): 99, 49, 38, (368,351,0): 102, 50, 39, (368,352,0): 100, 47, 41, (368,353,0): 94, 43, 39, (368,354,0): 88, 39, 35, (368,355,0): 83, 38, 33, (368,356,0): 82, 38, 35, (368,357,0): 79, 40, 35, (368,358,0): 77, 39, 36, (368,359,0): 75, 37, 34, (368,360,0): 73, 35, 34, (368,361,0): 75, 35, 35, (368,362,0): 76, 36, 37, (368,363,0): 77, 35, 36, (368,364,0): 79, 34, 37, (368,365,0): 77, 33, 34, (368,366,0): 75, 29, 31, (368,367,0): 73, 29, 30, (368,368,0): 74, 32, 33, (368,369,0): 75, 33, 34, (368,370,0): 77, 35, 37, (368,371,0): 79, 37, 39, (368,372,0): 80, 38, 40, (368,373,0): 79, 37, 39, (368,374,0): 77, 36, 40, (368,375,0): 76, 35, 39, (368,376,0): 72, 31, 35, (368,377,0): 71, 32, 35, (368,378,0): 70, 31, 36, (368,379,0): 70, 31, 36, (368,380,0): 69, 30, 35, (368,381,0): 69, 30, 35, (368,382,0): 68, 29, 34, (368,383,0): 69, 28, 34, (368,384,0): 72, 30, 32, (368,385,0): 75, 30, 33, (368,386,0): 76, 31, 34, (368,387,0): 75, 33, 35, (368,388,0): 76, 34, 36, (368,389,0): 74, 34, 35, (368,390,0): 72, 33, 34, (368,391,0): 72, 33, 34, (368,392,0): 68, 32, 34, (368,393,0): 67, 31, 33, (368,394,0): 65, 30, 34, (368,395,0): 61, 29, 32, (368,396,0): 59, 27, 30, (368,397,0): 57, 25, 30, (368,398,0): 56, 24, 29, (368,399,0): 54, 23, 29, (368,400,0): 56, 27, 32, (368,401,0): 54, 27, 32, (368,402,0): 55, 28, 33, (368,403,0): 55, 28, 33, (368,404,0): 54, 27, 32, (368,405,0): 52, 25, 30, (368,406,0): 51, 24, 29, (368,407,0): 50, 23, 28, (368,408,0): 51, 24, 29, (368,409,0): 52, 25, 30, (368,410,0): 53, 26, 31, (368,411,0): 54, 27, 32, (368,412,0): 53, 26, 31, (368,413,0): 51, 24, 29, (368,414,0): 49, 22, 27, (368,415,0): 48, 21, 26, (368,416,0): 53, 27, 28, (368,417,0): 53, 27, 28, (368,418,0): 53, 27, 28, (368,419,0): 53, 27, 28, (368,420,0): 52, 28, 28, (368,421,0): 52, 27, 30, (368,422,0): 52, 27, 30, (368,423,0): 50, 28, 31, (368,424,0): 48, 23, 27, (368,425,0): 48, 23, 29, (368,426,0): 47, 22, 28, (368,427,0): 46, 21, 27, (368,428,0): 47, 20, 29, (368,429,0): 46, 19, 28, (368,430,0): 45, 17, 29, (368,431,0): 45, 18, 25, (368,432,0): 43, 18, 21, (368,433,0): 46, 22, 20, (368,434,0): 51, 27, 27, (368,435,0): 56, 32, 32, (368,436,0): 59, 34, 37, (368,437,0): 59, 34, 37, (368,438,0): 57, 32, 36, (368,439,0): 55, 30, 34, (368,440,0): 49, 26, 32, (368,441,0): 46, 25, 30, (368,442,0): 44, 25, 31, (368,443,0): 39, 24, 29, (368,444,0): 36, 23, 30, (368,445,0): 34, 23, 29, (368,446,0): 33, 24, 29, (368,447,0): 34, 25, 30, (368,448,0): 32, 23, 26, (368,449,0): 36, 26, 27, (368,450,0): 39, 28, 32, (368,451,0): 37, 27, 28, (368,452,0): 35, 23, 25, (368,453,0): 33, 21, 23, (368,454,0): 38, 23, 26, (368,455,0): 42, 27, 30, (368,456,0): 47, 31, 34, (368,457,0): 50, 31, 35, (368,458,0): 53, 32, 37, (368,459,0): 56, 35, 40, (368,460,0): 58, 35, 41, (368,461,0): 58, 36, 39, (368,462,0): 58, 35, 41, (368,463,0): 57, 37, 39, (368,464,0): 55, 40, 37, (368,465,0): 56, 43, 37, (368,466,0): 59, 44, 39, (368,467,0): 62, 47, 42, (368,468,0): 64, 49, 44, (368,469,0): 65, 50, 45, (368,470,0): 66, 51, 44, (368,471,0): 66, 51, 44, (368,472,0): 74, 59, 52, (368,473,0): 74, 59, 52, (368,474,0): 72, 59, 51, (368,475,0): 70, 57, 49, (368,476,0): 66, 56, 47, (368,477,0): 63, 53, 44, (368,478,0): 60, 50, 41, (368,479,0): 60, 47, 39, (368,480,0): 62, 48, 39, (368,481,0): 65, 48, 38, (368,482,0): 66, 49, 39, (368,483,0): 67, 50, 42, (368,484,0): 68, 49, 42, (368,485,0): 68, 49, 42, (368,486,0): 68, 49, 42, (368,487,0): 68, 49, 42, (368,488,0): 67, 47, 40, (368,489,0): 66, 46, 39, (368,490,0): 64, 43, 38, (368,491,0): 62, 41, 36, (368,492,0): 62, 38, 34, (368,493,0): 60, 36, 32, (368,494,0): 59, 35, 31, (368,495,0): 59, 35, 31, (368,496,0): 60, 39, 34, (368,497,0): 59, 40, 34, (368,498,0): 59, 40, 36, (368,499,0): 59, 40, 36, (368,500,0): 60, 41, 37, (368,501,0): 61, 42, 38, (368,502,0): 64, 43, 40, (368,503,0): 65, 44, 43, (368,504,0): 62, 41, 40, (368,505,0): 62, 41, 40, (368,506,0): 61, 40, 39, (368,507,0): 60, 39, 38, (368,508,0): 57, 35, 37, (368,509,0): 54, 32, 34, (368,510,0): 51, 29, 31, (368,511,0): 49, 27, 30, (368,512,0): 47, 26, 31, (368,513,0): 46, 25, 32, (368,514,0): 45, 24, 31, (368,515,0): 43, 22, 29, (368,516,0): 42, 22, 31, (368,517,0): 42, 22, 31, (368,518,0): 43, 23, 32, (368,519,0): 43, 23, 32, (368,520,0): 46, 29, 37, (368,521,0): 46, 29, 35, (368,522,0): 45, 29, 32, (368,523,0): 43, 29, 29, (368,524,0): 45, 29, 30, (368,525,0): 44, 30, 29, (368,526,0): 46, 32, 29, (368,527,0): 47, 33, 32, (368,528,0): 50, 31, 35, (368,529,0): 50, 31, 37, (368,530,0): 48, 31, 37, (368,531,0): 48, 33, 38, (368,532,0): 48, 36, 38, (368,533,0): 49, 39, 40, (368,534,0): 52, 42, 41, (368,535,0): 52, 44, 42, (368,536,0): 53, 45, 42, (368,537,0): 55, 46, 41, (368,538,0): 56, 47, 42, (368,539,0): 58, 47, 41, (368,540,0): 61, 48, 42, (368,541,0): 62, 47, 42, (368,542,0): 63, 45, 41, (368,543,0): 62, 44, 40, (368,544,0): 59, 41, 37, (368,545,0): 58, 40, 36, (368,546,0): 57, 39, 35, (368,547,0): 57, 39, 35, (368,548,0): 58, 40, 36, (368,549,0): 60, 43, 36, (368,550,0): 63, 44, 40, (368,551,0): 65, 46, 40, (368,552,0): 70, 49, 44, (368,553,0): 67, 46, 41, (368,554,0): 64, 43, 38, (368,555,0): 64, 43, 38, (368,556,0): 64, 43, 38, (368,557,0): 62, 41, 36, (368,558,0): 59, 35, 31, (368,559,0): 54, 30, 26, (368,560,0): 58, 32, 31, (368,561,0): 58, 32, 33, (368,562,0): 57, 31, 34, (368,563,0): 55, 30, 33, (368,564,0): 51, 29, 32, (368,565,0): 48, 27, 32, (368,566,0): 45, 26, 32, (368,567,0): 42, 25, 33, (368,568,0): 38, 22, 32, (368,569,0): 37, 24, 33, (368,570,0): 37, 26, 34, (368,571,0): 34, 24, 32, (368,572,0): 31, 21, 29, (368,573,0): 29, 23, 27, (368,574,0): 31, 25, 29, (368,575,0): 33, 28, 32, (368,576,0): 37, 33, 34, (368,577,0): 39, 35, 34, (368,578,0): 40, 38, 39, (368,579,0): 42, 42, 40, (368,580,0): 43, 45, 44, (368,581,0): 43, 45, 42, (368,582,0): 41, 45, 44, (368,583,0): 40, 45, 41, (368,584,0): 43, 45, 44, (368,585,0): 44, 44, 42, (368,586,0): 45, 43, 44, (368,587,0): 47, 43, 42, (368,588,0): 48, 42, 44, (368,589,0): 47, 41, 41, (368,590,0): 49, 40, 43, (368,591,0): 49, 40, 43, (368,592,0): 50, 41, 46, (368,593,0): 51, 40, 48, (368,594,0): 51, 40, 48, (368,595,0): 50, 39, 47, (368,596,0): 49, 38, 46, (368,597,0): 48, 37, 45, (368,598,0): 48, 37, 45, (368,599,0): 47, 36, 44, (369,0,0): 71, 56, 49, (369,1,0): 71, 56, 49, (369,2,0): 72, 58, 49, (369,3,0): 72, 58, 49, (369,4,0): 73, 59, 50, (369,5,0): 73, 59, 50, (369,6,0): 74, 60, 49, (369,7,0): 74, 60, 49, (369,8,0): 76, 62, 49, (369,9,0): 79, 65, 52, (369,10,0): 83, 69, 56, (369,11,0): 86, 72, 59, (369,12,0): 87, 74, 58, (369,13,0): 89, 76, 60, (369,14,0): 93, 80, 64, (369,15,0): 99, 83, 67, (369,16,0): 101, 83, 61, (369,17,0): 104, 84, 60, (369,18,0): 104, 84, 60, (369,19,0): 103, 83, 59, (369,20,0): 102, 82, 58, (369,21,0): 100, 80, 56, (369,22,0): 98, 78, 54, (369,23,0): 97, 77, 53, (369,24,0): 100, 80, 56, (369,25,0): 101, 81, 57, (369,26,0): 102, 82, 58, (369,27,0): 104, 84, 60, (369,28,0): 105, 85, 61, (369,29,0): 107, 87, 63, (369,30,0): 108, 88, 64, (369,31,0): 109, 89, 65, (369,32,0): 108, 88, 64, (369,33,0): 108, 88, 64, (369,34,0): 106, 86, 62, (369,35,0): 105, 85, 61, (369,36,0): 103, 83, 59, (369,37,0): 101, 81, 57, (369,38,0): 100, 80, 56, (369,39,0): 99, 79, 55, (369,40,0): 97, 77, 53, (369,41,0): 97, 77, 53, (369,42,0): 96, 76, 52, (369,43,0): 95, 75, 51, (369,44,0): 93, 73, 49, (369,45,0): 92, 72, 48, (369,46,0): 90, 70, 46, (369,47,0): 88, 70, 46, (369,48,0): 86, 70, 45, (369,49,0): 85, 69, 44, (369,50,0): 84, 68, 45, (369,51,0): 83, 67, 44, (369,52,0): 82, 66, 43, (369,53,0): 80, 64, 41, (369,54,0): 79, 62, 42, (369,55,0): 79, 62, 42, (369,56,0): 81, 64, 46, (369,57,0): 81, 64, 46, (369,58,0): 81, 64, 46, (369,59,0): 82, 65, 47, (369,60,0): 82, 65, 49, (369,61,0): 82, 65, 49, (369,62,0): 83, 66, 50, (369,63,0): 83, 66, 50, (369,64,0): 82, 65, 47, (369,65,0): 82, 65, 45, (369,66,0): 81, 64, 44, (369,67,0): 81, 64, 44, (369,68,0): 80, 63, 45, (369,69,0): 79, 62, 44, (369,70,0): 79, 62, 44, (369,71,0): 78, 61, 43, (369,72,0): 75, 58, 42, (369,73,0): 74, 57, 41, (369,74,0): 73, 56, 40, (369,75,0): 72, 55, 39, (369,76,0): 71, 53, 39, (369,77,0): 69, 51, 37, (369,78,0): 68, 50, 36, (369,79,0): 68, 51, 35, (369,80,0): 66, 47, 30, (369,81,0): 70, 49, 30, (369,82,0): 72, 51, 32, (369,83,0): 75, 54, 35, (369,84,0): 76, 55, 36, (369,85,0): 77, 56, 37, (369,86,0): 76, 55, 36, (369,87,0): 76, 55, 36, (369,88,0): 79, 58, 39, (369,89,0): 79, 58, 39, (369,90,0): 80, 59, 40, (369,91,0): 82, 61, 42, (369,92,0): 83, 62, 43, (369,93,0): 84, 63, 44, (369,94,0): 85, 64, 45, (369,95,0): 86, 65, 48, (369,96,0): 86, 64, 50, (369,97,0): 87, 65, 52, (369,98,0): 89, 67, 53, (369,99,0): 92, 70, 56, (369,100,0): 95, 74, 57, (369,101,0): 97, 76, 57, (369,102,0): 99, 78, 59, (369,103,0): 100, 80, 56, (369,104,0): 101, 81, 57, (369,105,0): 105, 85, 60, (369,106,0): 112, 92, 65, (369,107,0): 122, 103, 73, (369,108,0): 134, 115, 83, (369,109,0): 146, 127, 94, (369,110,0): 155, 136, 103, (369,111,0): 161, 143, 107, (369,112,0): 167, 148, 108, (369,113,0): 169, 150, 107, (369,114,0): 173, 154, 111, (369,115,0): 177, 160, 116, (369,116,0): 179, 164, 121, (369,117,0): 180, 167, 123, (369,118,0): 179, 170, 127, (369,119,0): 178, 171, 129, (369,120,0): 179, 176, 135, (369,121,0): 180, 178, 137, (369,122,0): 178, 180, 140, (369,123,0): 178, 183, 142, (369,124,0): 178, 185, 144, (369,125,0): 177, 185, 144, (369,126,0): 174, 185, 143, (369,127,0): 173, 185, 145, (369,128,0): 166, 182, 143, (369,129,0): 165, 183, 145, (369,130,0): 164, 185, 146, (369,131,0): 165, 185, 148, (369,132,0): 164, 186, 150, (369,133,0): 162, 186, 150, (369,134,0): 160, 185, 153, (369,135,0): 159, 186, 153, (369,136,0): 162, 191, 161, (369,137,0): 159, 190, 159, (369,138,0): 154, 187, 158, (369,139,0): 151, 185, 158, (369,140,0): 151, 187, 161, (369,141,0): 153, 192, 165, (369,142,0): 157, 195, 170, (369,143,0): 160, 198, 173, (369,144,0): 161, 201, 174, (369,145,0): 161, 201, 174, (369,146,0): 162, 202, 176, (369,147,0): 163, 203, 177, (369,148,0): 163, 203, 179, (369,149,0): 162, 201, 180, (369,150,0): 161, 200, 181, (369,151,0): 159, 200, 182, (369,152,0): 160, 201, 185, (369,153,0): 160, 201, 187, (369,154,0): 160, 200, 191, (369,155,0): 160, 200, 191, (369,156,0): 160, 200, 192, (369,157,0): 159, 200, 192, (369,158,0): 160, 199, 194, (369,159,0): 159, 200, 194, (369,160,0): 154, 200, 190, (369,161,0): 153, 200, 190, (369,162,0): 153, 200, 190, (369,163,0): 152, 199, 189, (369,164,0): 150, 200, 191, (369,165,0): 149, 199, 190, (369,166,0): 149, 198, 194, (369,167,0): 148, 197, 193, (369,168,0): 148, 198, 195, (369,169,0): 147, 197, 194, (369,170,0): 144, 195, 196, (369,171,0): 143, 194, 195, (369,172,0): 143, 194, 197, (369,173,0): 144, 195, 198, (369,174,0): 144, 198, 200, (369,175,0): 145, 199, 201, (369,176,0): 148, 199, 203, (369,177,0): 148, 199, 203, (369,178,0): 148, 199, 203, (369,179,0): 148, 199, 203, (369,180,0): 148, 199, 203, (369,181,0): 148, 199, 203, (369,182,0): 148, 198, 205, (369,183,0): 148, 198, 205, (369,184,0): 148, 198, 207, (369,185,0): 148, 198, 207, (369,186,0): 148, 198, 209, (369,187,0): 148, 198, 209, (369,188,0): 148, 198, 209, (369,189,0): 148, 198, 209, (369,190,0): 148, 198, 209, (369,191,0): 146, 198, 211, (369,192,0): 145, 196, 213, (369,193,0): 143, 196, 212, (369,194,0): 143, 196, 212, (369,195,0): 142, 195, 211, (369,196,0): 141, 194, 212, (369,197,0): 141, 194, 212, (369,198,0): 140, 192, 213, (369,199,0): 140, 192, 213, (369,200,0): 141, 193, 214, (369,201,0): 142, 194, 215, (369,202,0): 142, 194, 216, (369,203,0): 143, 195, 217, (369,204,0): 144, 196, 220, (369,205,0): 144, 196, 220, (369,206,0): 145, 197, 221, (369,207,0): 145, 197, 221, (369,208,0): 146, 196, 223, (369,209,0): 148, 195, 223, (369,210,0): 148, 195, 223, (369,211,0): 149, 194, 223, (369,212,0): 149, 194, 223, (369,213,0): 148, 193, 222, (369,214,0): 147, 192, 221, (369,215,0): 148, 192, 221, (369,216,0): 149, 193, 222, (369,217,0): 151, 192, 222, (369,218,0): 152, 193, 223, (369,219,0): 153, 194, 224, (369,220,0): 154, 195, 225, (369,221,0): 156, 195, 226, (369,222,0): 157, 196, 227, (369,223,0): 156, 197, 229, (369,224,0): 154, 199, 232, (369,225,0): 153, 199, 232, (369,226,0): 152, 198, 232, (369,227,0): 152, 198, 232, (369,228,0): 155, 199, 236, (369,229,0): 157, 201, 238, (369,230,0): 159, 203, 242, (369,231,0): 161, 205, 244, (369,232,0): 164, 206, 248, (369,233,0): 164, 206, 248, (369,234,0): 165, 203, 248, (369,235,0): 164, 202, 249, (369,236,0): 163, 201, 248, (369,237,0): 161, 199, 246, (369,238,0): 161, 197, 247, (369,239,0): 158, 198, 247, (369,240,0): 154, 202, 251, (369,241,0): 151, 203, 253, (369,242,0): 151, 201, 252, (369,243,0): 151, 201, 252, (369,244,0): 152, 202, 253, (369,245,0): 153, 203, 254, (369,246,0): 157, 205, 254, (369,247,0): 158, 206, 255, (369,248,0): 156, 204, 252, (369,249,0): 156, 204, 252, (369,250,0): 156, 202, 251, (369,251,0): 156, 202, 251, (369,252,0): 156, 202, 251, (369,253,0): 157, 203, 252, (369,254,0): 158, 205, 251, (369,255,0): 157, 205, 251, (369,256,0): 155, 208, 252, (369,257,0): 154, 209, 250, (369,258,0): 154, 208, 252, (369,259,0): 154, 209, 250, (369,260,0): 154, 208, 252, (369,261,0): 154, 209, 250, (369,262,0): 154, 208, 252, (369,263,0): 154, 209, 250, (369,264,0): 154, 208, 252, (369,265,0): 155, 210, 251, (369,266,0): 156, 210, 254, (369,267,0): 157, 212, 253, (369,268,0): 158, 212, 255, (369,269,0): 157, 212, 253, (369,270,0): 156, 210, 254, (369,271,0): 156, 210, 254, (369,272,0): 158, 212, 255, (369,273,0): 157, 211, 255, (369,274,0): 156, 210, 255, (369,275,0): 155, 209, 255, (369,276,0): 154, 207, 255, (369,277,0): 153, 206, 255, (369,278,0): 152, 205, 255, (369,279,0): 151, 204, 255, (369,280,0): 150, 203, 255, (369,281,0): 150, 203, 255, (369,282,0): 150, 202, 255, (369,283,0): 149, 201, 255, (369,284,0): 149, 201, 255, (369,285,0): 148, 200, 255, (369,286,0): 148, 200, 255, (369,287,0): 147, 199, 255, (369,288,0): 143, 198, 255, (369,289,0): 143, 198, 254, (369,290,0): 142, 199, 254, (369,291,0): 142, 199, 254, (369,292,0): 142, 199, 252, (369,293,0): 140, 200, 252, (369,294,0): 140, 200, 252, (369,295,0): 140, 200, 252, (369,296,0): 145, 202, 255, (369,297,0): 145, 200, 255, (369,298,0): 146, 198, 255, (369,299,0): 146, 196, 255, (369,300,0): 147, 195, 255, (369,301,0): 150, 196, 255, (369,302,0): 152, 196, 255, (369,303,0): 153, 197, 255, (369,304,0): 153, 200, 255, (369,305,0): 156, 201, 255, (369,306,0): 161, 197, 255, (369,307,0): 165, 191, 248, (369,308,0): 167, 184, 240, (369,309,0): 161, 167, 219, (369,310,0): 141, 138, 183, (369,311,0): 123, 111, 149, (369,312,0): 112, 96, 123, (369,313,0): 104, 85, 104, (369,314,0): 90, 70, 81, (369,315,0): 79, 60, 64, (369,316,0): 74, 58, 59, (369,317,0): 76, 62, 62, (369,318,0): 78, 66, 66, (369,319,0): 80, 68, 68, (369,320,0): 93, 77, 77, (369,321,0): 93, 75, 75, (369,322,0): 91, 73, 73, (369,323,0): 86, 68, 68, (369,324,0): 81, 62, 64, (369,325,0): 75, 56, 58, (369,326,0): 70, 51, 55, (369,327,0): 68, 49, 53, (369,328,0): 63, 43, 52, (369,329,0): 62, 42, 51, (369,330,0): 60, 40, 51, (369,331,0): 59, 39, 50, (369,332,0): 58, 38, 50, (369,333,0): 57, 37, 49, (369,334,0): 58, 38, 50, (369,335,0): 59, 37, 49, (369,336,0): 61, 36, 42, (369,337,0): 61, 36, 42, (369,338,0): 60, 34, 43, (369,339,0): 59, 36, 46, (369,340,0): 59, 35, 48, (369,341,0): 61, 37, 51, (369,342,0): 65, 39, 52, (369,343,0): 67, 39, 51, (369,344,0): 71, 41, 51, (369,345,0): 76, 41, 47, (369,346,0): 81, 42, 45, (369,347,0): 87, 43, 40, (369,348,0): 95, 46, 39, (369,349,0): 103, 49, 37, (369,350,0): 109, 51, 37, (369,351,0): 111, 53, 39, (369,352,0): 105, 48, 41, (369,353,0): 99, 46, 42, (369,354,0): 94, 41, 37, (369,355,0): 90, 41, 36, (369,356,0): 89, 41, 37, (369,357,0): 87, 44, 38, (369,358,0): 83, 42, 38, (369,359,0): 80, 41, 36, (369,360,0): 75, 35, 33, (369,361,0): 75, 35, 35, (369,362,0): 78, 36, 38, (369,363,0): 78, 36, 38, (369,364,0): 80, 35, 40, (369,365,0): 80, 33, 39, (369,366,0): 80, 31, 37, (369,367,0): 77, 31, 34, (369,368,0): 78, 34, 35, (369,369,0): 77, 35, 36, (369,370,0): 78, 36, 38, (369,371,0): 79, 37, 39, (369,372,0): 79, 37, 39, (369,373,0): 78, 36, 38, (369,374,0): 75, 34, 38, (369,375,0): 74, 33, 37, (369,376,0): 71, 32, 37, (369,377,0): 71, 32, 37, (369,378,0): 68, 32, 36, (369,379,0): 68, 32, 36, (369,380,0): 67, 30, 37, (369,381,0): 67, 30, 37, (369,382,0): 66, 29, 36, (369,383,0): 68, 29, 34, (369,384,0): 72, 30, 32, (369,385,0): 75, 31, 32, (369,386,0): 76, 32, 33, (369,387,0): 75, 33, 34, (369,388,0): 75, 33, 35, (369,389,0): 74, 34, 35, (369,390,0): 72, 33, 34, (369,391,0): 71, 32, 33, (369,392,0): 67, 31, 33, (369,393,0): 65, 31, 32, (369,394,0): 62, 30, 33, (369,395,0): 60, 28, 31, (369,396,0): 57, 27, 29, (369,397,0): 56, 26, 28, (369,398,0): 54, 23, 28, (369,399,0): 53, 24, 28, (369,400,0): 54, 27, 32, (369,401,0): 54, 27, 32, (369,402,0): 55, 28, 33, (369,403,0): 55, 28, 33, (369,404,0): 54, 27, 32, (369,405,0): 53, 26, 31, (369,406,0): 51, 24, 29, (369,407,0): 50, 23, 28, (369,408,0): 51, 24, 29, (369,409,0): 52, 25, 30, (369,410,0): 53, 26, 31, (369,411,0): 53, 26, 31, (369,412,0): 53, 26, 31, (369,413,0): 51, 24, 29, (369,414,0): 49, 22, 27, (369,415,0): 48, 22, 25, (369,416,0): 51, 27, 27, (369,417,0): 51, 27, 25, (369,418,0): 51, 27, 27, (369,419,0): 51, 27, 27, (369,420,0): 51, 27, 27, (369,421,0): 51, 26, 29, (369,422,0): 51, 26, 30, (369,423,0): 51, 26, 30, (369,424,0): 48, 23, 29, (369,425,0): 47, 22, 28, (369,426,0): 47, 21, 30, (369,427,0): 46, 20, 29, (369,428,0): 45, 19, 30, (369,429,0): 45, 19, 30, (369,430,0): 44, 18, 31, (369,431,0): 42, 19, 27, (369,432,0): 40, 22, 22, (369,433,0): 40, 25, 22, (369,434,0): 46, 28, 26, (369,435,0): 51, 31, 30, (369,436,0): 54, 32, 34, (369,437,0): 55, 33, 35, (369,438,0): 57, 32, 36, (369,439,0): 54, 32, 35, (369,440,0): 49, 26, 32, (369,441,0): 47, 26, 31, (369,442,0): 44, 25, 31, (369,443,0): 39, 24, 29, (369,444,0): 36, 25, 29, (369,445,0): 34, 25, 30, (369,446,0): 33, 27, 31, (369,447,0): 33, 27, 31, (369,448,0): 33, 27, 27, (369,449,0): 36, 28, 26, (369,450,0): 38, 30, 28, (369,451,0): 39, 31, 29, (369,452,0): 39, 29, 28, (369,453,0): 39, 29, 28, (369,454,0): 42, 30, 30, (369,455,0): 44, 32, 32, (369,456,0): 47, 33, 33, (369,457,0): 48, 32, 33, (369,458,0): 50, 34, 35, (369,459,0): 53, 34, 36, (369,460,0): 54, 35, 37, (369,461,0): 56, 36, 38, (369,462,0): 57, 37, 39, (369,463,0): 56, 38, 38, (369,464,0): 55, 40, 35, (369,465,0): 56, 43, 35, (369,466,0): 60, 45, 38, (369,467,0): 63, 48, 41, (369,468,0): 66, 51, 44, (369,469,0): 68, 53, 46, (369,470,0): 68, 53, 46, (369,471,0): 69, 55, 46, (369,472,0): 75, 61, 52, (369,473,0): 74, 61, 52, (369,474,0): 74, 61, 52, (369,475,0): 71, 61, 51, (369,476,0): 69, 61, 50, (369,477,0): 67, 59, 48, (369,478,0): 64, 56, 45, (369,479,0): 64, 54, 44, (369,480,0): 62, 50, 38, (369,481,0): 63, 49, 38, (369,482,0): 64, 50, 39, (369,483,0): 64, 50, 39, (369,484,0): 66, 49, 39, (369,485,0): 66, 49, 39, (369,486,0): 67, 49, 39, (369,487,0): 67, 49, 39, (369,488,0): 64, 46, 36, (369,489,0): 64, 46, 36, (369,490,0): 64, 44, 35, (369,491,0): 63, 43, 34, (369,492,0): 64, 41, 33, (369,493,0): 63, 40, 32, (369,494,0): 63, 40, 32, (369,495,0): 63, 40, 32, (369,496,0): 62, 42, 35, (369,497,0): 61, 41, 34, (369,498,0): 60, 39, 34, (369,499,0): 58, 37, 32, (369,500,0): 57, 36, 31, (369,501,0): 57, 36, 31, (369,502,0): 58, 37, 34, (369,503,0): 58, 37, 34, (369,504,0): 59, 38, 37, (369,505,0): 59, 38, 37, (369,506,0): 59, 38, 37, (369,507,0): 58, 37, 36, (369,508,0): 56, 34, 36, (369,509,0): 53, 31, 33, (369,510,0): 50, 28, 30, (369,511,0): 49, 27, 30, (369,512,0): 47, 26, 31, (369,513,0): 46, 25, 32, (369,514,0): 44, 23, 32, (369,515,0): 43, 22, 31, (369,516,0): 42, 22, 33, (369,517,0): 42, 22, 33, (369,518,0): 43, 23, 35, (369,519,0): 43, 23, 35, (369,520,0): 45, 28, 38, (369,521,0): 44, 27, 35, (369,522,0): 43, 28, 35, (369,523,0): 42, 27, 30, (369,524,0): 43, 28, 31, (369,525,0): 44, 30, 29, (369,526,0): 43, 32, 30, (369,527,0): 46, 32, 31, (369,528,0): 51, 32, 36, (369,529,0): 51, 32, 38, (369,530,0): 49, 32, 38, (369,531,0): 49, 34, 37, (369,532,0): 49, 37, 39, (369,533,0): 51, 41, 40, (369,534,0): 52, 44, 42, (369,535,0): 52, 47, 43, (369,536,0): 52, 47, 41, (369,537,0): 55, 48, 42, (369,538,0): 58, 49, 42, (369,539,0): 60, 49, 43, (369,540,0): 63, 50, 42, (369,541,0): 63, 48, 41, (369,542,0): 65, 48, 41, (369,543,0): 64, 47, 40, (369,544,0): 59, 45, 36, (369,545,0): 58, 44, 35, (369,546,0): 59, 42, 34, (369,547,0): 59, 42, 34, (369,548,0): 60, 43, 35, (369,549,0): 62, 45, 37, (369,550,0): 66, 47, 40, (369,551,0): 68, 49, 42, (369,552,0): 70, 50, 43, (369,553,0): 67, 47, 40, (369,554,0): 64, 44, 37, (369,555,0): 63, 43, 36, (369,556,0): 66, 43, 37, (369,557,0): 65, 42, 36, (369,558,0): 61, 38, 32, (369,559,0): 58, 34, 30, (369,560,0): 58, 32, 31, (369,561,0): 57, 31, 32, (369,562,0): 56, 29, 34, (369,563,0): 53, 28, 32, (369,564,0): 49, 26, 34, (369,565,0): 46, 25, 32, (369,566,0): 44, 22, 34, (369,567,0): 40, 23, 33, (369,568,0): 38, 20, 32, (369,569,0): 37, 24, 34, (369,570,0): 38, 25, 34, (369,571,0): 35, 24, 32, (369,572,0): 32, 23, 28, (369,573,0): 32, 23, 28, (369,574,0): 33, 27, 29, (369,575,0): 36, 30, 32, (369,576,0): 38, 34, 35, (369,577,0): 37, 35, 36, (369,578,0): 40, 38, 39, (369,579,0): 41, 41, 41, (369,580,0): 42, 42, 42, (369,581,0): 42, 44, 43, (369,582,0): 41, 43, 42, (369,583,0): 41, 43, 42, (369,584,0): 41, 43, 42, (369,585,0): 43, 43, 43, (369,586,0): 44, 42, 43, (369,587,0): 46, 42, 43, (369,588,0): 47, 41, 43, (369,589,0): 49, 40, 43, (369,590,0): 51, 40, 44, (369,591,0): 51, 40, 44, (369,592,0): 52, 41, 47, (369,593,0): 51, 40, 48, (369,594,0): 51, 40, 48, (369,595,0): 50, 39, 47, (369,596,0): 49, 38, 46, (369,597,0): 48, 37, 45, (369,598,0): 47, 36, 44, (369,599,0): 47, 36, 44, (370,0,0): 70, 55, 48, (370,1,0): 71, 56, 49, (370,2,0): 71, 57, 48, (370,3,0): 71, 57, 48, (370,4,0): 72, 58, 49, (370,5,0): 72, 58, 49, (370,6,0): 73, 59, 48, (370,7,0): 73, 59, 48, (370,8,0): 76, 62, 49, (370,9,0): 79, 65, 52, (370,10,0): 83, 69, 56, (370,11,0): 85, 71, 58, (370,12,0): 87, 74, 58, (370,13,0): 89, 76, 60, (370,14,0): 92, 79, 63, (370,15,0): 97, 81, 65, (370,16,0): 100, 84, 61, (370,17,0): 101, 83, 59, (370,18,0): 102, 84, 60, (370,19,0): 101, 83, 59, (370,20,0): 100, 82, 58, (370,21,0): 99, 81, 57, (370,22,0): 97, 79, 55, (370,23,0): 96, 78, 54, (370,24,0): 98, 80, 56, (370,25,0): 99, 81, 57, (370,26,0): 100, 82, 58, (370,27,0): 102, 84, 60, (370,28,0): 103, 85, 61, (370,29,0): 105, 87, 63, (370,30,0): 106, 88, 64, (370,31,0): 107, 89, 65, (370,32,0): 106, 88, 64, (370,33,0): 106, 88, 64, (370,34,0): 105, 87, 63, (370,35,0): 103, 85, 61, (370,36,0): 102, 84, 60, (370,37,0): 100, 82, 58, (370,38,0): 99, 81, 57, (370,39,0): 98, 80, 56, (370,40,0): 96, 78, 54, (370,41,0): 97, 79, 55, (370,42,0): 97, 79, 55, (370,43,0): 97, 79, 55, (370,44,0): 95, 77, 53, (370,45,0): 92, 74, 50, (370,46,0): 88, 70, 46, (370,47,0): 86, 68, 44, (370,48,0): 85, 69, 44, (370,49,0): 84, 68, 43, (370,50,0): 84, 68, 43, (370,51,0): 83, 67, 42, (370,52,0): 82, 66, 43, (370,53,0): 82, 66, 43, (370,54,0): 81, 64, 44, (370,55,0): 81, 64, 44, (370,56,0): 83, 66, 46, (370,57,0): 81, 64, 44, (370,58,0): 79, 62, 44, (370,59,0): 78, 61, 43, (370,60,0): 78, 61, 45, (370,61,0): 79, 62, 46, (370,62,0): 81, 64, 48, (370,63,0): 82, 65, 49, (370,64,0): 83, 66, 48, (370,65,0): 83, 66, 48, (370,66,0): 82, 65, 47, (370,67,0): 82, 65, 47, (370,68,0): 81, 64, 46, (370,69,0): 81, 64, 46, (370,70,0): 81, 64, 46, (370,71,0): 80, 63, 45, (370,72,0): 78, 61, 45, (370,73,0): 77, 60, 44, (370,74,0): 76, 59, 43, (370,75,0): 74, 57, 41, (370,76,0): 72, 55, 39, (370,77,0): 70, 53, 37, (370,78,0): 68, 50, 36, (370,79,0): 68, 51, 35, (370,80,0): 66, 47, 30, (370,81,0): 67, 49, 29, (370,82,0): 68, 50, 30, (370,83,0): 70, 52, 32, (370,84,0): 71, 53, 33, (370,85,0): 71, 53, 33, (370,86,0): 71, 53, 33, (370,87,0): 71, 53, 33, (370,88,0): 74, 56, 36, (370,89,0): 74, 56, 36, (370,90,0): 76, 58, 38, (370,91,0): 78, 60, 40, (370,92,0): 80, 62, 42, (370,93,0): 81, 63, 43, (370,94,0): 83, 65, 45, (370,95,0): 84, 65, 48, (370,96,0): 83, 64, 49, (370,97,0): 83, 64, 50, (370,98,0): 85, 66, 51, (370,99,0): 86, 67, 52, (370,100,0): 88, 69, 52, (370,101,0): 90, 72, 52, (370,102,0): 91, 73, 53, (370,103,0): 92, 74, 50, (370,104,0): 95, 77, 53, (370,105,0): 97, 80, 54, (370,106,0): 102, 85, 57, (370,107,0): 108, 91, 61, (370,108,0): 115, 99, 66, (370,109,0): 123, 107, 74, (370,110,0): 129, 113, 80, (370,111,0): 135, 117, 81, (370,112,0): 148, 129, 89, (370,113,0): 150, 131, 89, (370,114,0): 154, 135, 93, (370,115,0): 157, 140, 97, (370,116,0): 159, 144, 103, (370,117,0): 161, 148, 106, (370,118,0): 162, 150, 110, (370,119,0): 159, 152, 110, (370,120,0): 167, 162, 122, (370,121,0): 168, 165, 124, (370,122,0): 171, 169, 130, (370,123,0): 173, 173, 135, (370,124,0): 176, 178, 139, (370,125,0): 176, 181, 141, (370,126,0): 177, 183, 145, (370,127,0): 177, 183, 145, (370,128,0): 171, 179, 142, (370,129,0): 169, 179, 144, (370,130,0): 169, 180, 146, (370,131,0): 170, 181, 147, (370,132,0): 168, 182, 149, (370,133,0): 167, 182, 149, (370,134,0): 165, 184, 154, (370,135,0): 163, 184, 153, (370,136,0): 162, 187, 158, (370,137,0): 158, 187, 157, (370,138,0): 155, 185, 157, (370,139,0): 152, 185, 158, (370,140,0): 153, 189, 163, (370,141,0): 157, 193, 167, (370,142,0): 160, 199, 172, (370,143,0): 164, 203, 176, (370,144,0): 162, 201, 174, (370,145,0): 163, 202, 175, (370,146,0): 163, 203, 177, (370,147,0): 164, 204, 178, (370,148,0): 164, 204, 180, (370,149,0): 163, 202, 181, (370,150,0): 160, 202, 182, (370,151,0): 159, 200, 182, (370,152,0): 159, 200, 184, (370,153,0): 158, 200, 186, (370,154,0): 158, 200, 190, (370,155,0): 158, 200, 190, (370,156,0): 158, 199, 191, (370,157,0): 157, 200, 193, (370,158,0): 158, 199, 195, (370,159,0): 157, 200, 193, (370,160,0): 155, 201, 191, (370,161,0): 154, 200, 190, (370,162,0): 153, 200, 190, (370,163,0): 152, 199, 189, (370,164,0): 152, 199, 191, (370,165,0): 151, 198, 190, (370,166,0): 149, 198, 194, (370,167,0): 149, 198, 194, (370,168,0): 148, 198, 195, (370,169,0): 147, 197, 194, (370,170,0): 146, 196, 197, (370,171,0): 146, 196, 197, (370,172,0): 145, 196, 199, (370,173,0): 145, 196, 199, (370,174,0): 146, 197, 200, (370,175,0): 147, 198, 201, (370,176,0): 148, 199, 203, (370,177,0): 148, 199, 203, (370,178,0): 148, 199, 203, (370,179,0): 148, 199, 203, (370,180,0): 148, 198, 205, (370,181,0): 148, 198, 205, (370,182,0): 148, 198, 207, (370,183,0): 148, 198, 207, (370,184,0): 147, 197, 206, (370,185,0): 147, 197, 206, (370,186,0): 147, 197, 208, (370,187,0): 147, 197, 208, (370,188,0): 147, 196, 210, (370,189,0): 147, 196, 210, (370,190,0): 147, 196, 210, (370,191,0): 145, 197, 210, (370,192,0): 144, 195, 212, (370,193,0): 143, 196, 214, (370,194,0): 143, 196, 214, (370,195,0): 142, 195, 213, (370,196,0): 142, 195, 213, (370,197,0): 142, 195, 213, (370,198,0): 141, 193, 214, (370,199,0): 141, 193, 214, (370,200,0): 143, 195, 217, (370,201,0): 143, 195, 217, (370,202,0): 143, 195, 219, (370,203,0): 143, 195, 219, (370,204,0): 144, 196, 220, (370,205,0): 144, 196, 220, (370,206,0): 145, 197, 221, (370,207,0): 145, 197, 221, (370,208,0): 148, 198, 225, (370,209,0): 147, 196, 226, (370,210,0): 147, 196, 226, (370,211,0): 148, 195, 225, (370,212,0): 147, 194, 224, (370,213,0): 146, 193, 223, (370,214,0): 146, 193, 223, (370,215,0): 147, 192, 223, (370,216,0): 149, 194, 225, (370,217,0): 150, 193, 225, (370,218,0): 151, 194, 226, (370,219,0): 152, 195, 227, (370,220,0): 153, 196, 228, (370,221,0): 156, 197, 229, (370,222,0): 157, 198, 230, (370,223,0): 157, 198, 230, (370,224,0): 157, 200, 234, (370,225,0): 156, 200, 235, (370,226,0): 155, 199, 234, (370,227,0): 156, 200, 235, (370,228,0): 158, 200, 238, (370,229,0): 159, 201, 239, (370,230,0): 161, 203, 243, (370,231,0): 162, 204, 244, (370,232,0): 165, 204, 247, (370,233,0): 165, 204, 247, (370,234,0): 165, 202, 247, (370,235,0): 164, 201, 246, (370,236,0): 163, 199, 247, (370,237,0): 162, 198, 246, (370,238,0): 164, 198, 246, (370,239,0): 160, 198, 247, (370,240,0): 154, 200, 250, (370,241,0): 151, 201, 250, (370,242,0): 152, 200, 249, (370,243,0): 151, 199, 248, (370,244,0): 152, 200, 249, (370,245,0): 153, 201, 250, (370,246,0): 155, 203, 252, (370,247,0): 156, 204, 253, (370,248,0): 153, 199, 248, (370,249,0): 154, 200, 249, (370,250,0): 155, 201, 250, (370,251,0): 157, 203, 252, (370,252,0): 157, 203, 252, (370,253,0): 158, 204, 253, (370,254,0): 158, 204, 253, (370,255,0): 156, 204, 252, (370,256,0): 156, 208, 255, (370,257,0): 155, 209, 253, (370,258,0): 155, 209, 255, (370,259,0): 155, 209, 253, (370,260,0): 155, 209, 255, (370,261,0): 155, 209, 253, (370,262,0): 155, 209, 255, (370,263,0): 155, 209, 253, (370,264,0): 154, 208, 254, (370,265,0): 155, 209, 253, (370,266,0): 156, 210, 255, (370,267,0): 156, 210, 254, (370,268,0): 156, 210, 255, (370,269,0): 155, 209, 253, (370,270,0): 154, 208, 254, (370,271,0): 153, 207, 253, (370,272,0): 156, 210, 255, (370,273,0): 156, 210, 255, (370,274,0): 155, 209, 255, (370,275,0): 154, 208, 255, (370,276,0): 153, 206, 255, (370,277,0): 152, 205, 255, (370,278,0): 151, 204, 255, (370,279,0): 151, 204, 255, (370,280,0): 149, 202, 255, (370,281,0): 149, 202, 255, (370,282,0): 149, 201, 255, (370,283,0): 148, 200, 255, (370,284,0): 148, 200, 255, (370,285,0): 147, 199, 255, (370,286,0): 147, 199, 255, (370,287,0): 147, 199, 255, (370,288,0): 142, 197, 254, (370,289,0): 142, 197, 253, (370,290,0): 142, 197, 253, (370,291,0): 141, 198, 253, (370,292,0): 141, 198, 253, (370,293,0): 141, 198, 253, (370,294,0): 139, 199, 253, (370,295,0): 139, 199, 253, (370,296,0): 143, 200, 255, (370,297,0): 143, 198, 254, (370,298,0): 144, 196, 254, (370,299,0): 144, 194, 253, (370,300,0): 145, 194, 253, (370,301,0): 148, 194, 254, (370,302,0): 150, 194, 255, (370,303,0): 151, 195, 255, (370,304,0): 155, 200, 255, (370,305,0): 160, 201, 255, (370,306,0): 163, 195, 252, (370,307,0): 162, 184, 241, (370,308,0): 158, 171, 224, (370,309,0): 147, 151, 199, (370,310,0): 124, 119, 160, (370,311,0): 104, 93, 127, (370,312,0): 95, 81, 106, (370,313,0): 89, 72, 90, (370,314,0): 78, 62, 72, (370,315,0): 72, 57, 62, (370,316,0): 73, 58, 61, (370,317,0): 78, 66, 68, (370,318,0): 83, 73, 74, (370,319,0): 88, 76, 76, (370,320,0): 104, 86, 86, (370,321,0): 101, 81, 82, (370,322,0): 96, 76, 78, (370,323,0): 89, 69, 71, (370,324,0): 82, 62, 64, (370,325,0): 77, 57, 59, (370,326,0): 73, 52, 57, (370,327,0): 71, 50, 55, (370,328,0): 64, 43, 52, (370,329,0): 63, 42, 51, (370,330,0): 61, 39, 51, (370,331,0): 59, 37, 49, (370,332,0): 58, 36, 48, (370,333,0): 57, 35, 47, (370,334,0): 57, 35, 48, (370,335,0): 58, 36, 48, (370,336,0): 60, 37, 47, (370,337,0): 60, 37, 45, (370,338,0): 60, 37, 47, (370,339,0): 60, 37, 47, (370,340,0): 61, 37, 50, (370,341,0): 63, 39, 52, (370,342,0): 67, 41, 52, (370,343,0): 69, 42, 51, (370,344,0): 72, 41, 47, (370,345,0): 77, 43, 44, (370,346,0): 85, 43, 44, (370,347,0): 94, 47, 41, (370,348,0): 102, 50, 39, (370,349,0): 110, 52, 40, (370,350,0): 115, 53, 38, (370,351,0): 118, 55, 40, (370,352,0): 107, 47, 39, (370,353,0): 102, 44, 40, (370,354,0): 98, 40, 38, (370,355,0): 94, 41, 37, (370,356,0): 92, 41, 38, (370,357,0): 90, 42, 38, (370,358,0): 86, 41, 38, (370,359,0): 83, 39, 36, (370,360,0): 79, 35, 34, (370,361,0): 78, 37, 35, (370,362,0): 81, 37, 38, (370,363,0): 83, 37, 39, (370,364,0): 83, 37, 40, (370,365,0): 85, 36, 40, (370,366,0): 84, 35, 39, (370,367,0): 83, 34, 38, (370,368,0): 80, 36, 37, (370,369,0): 78, 36, 37, (370,370,0): 79, 37, 39, (370,371,0): 78, 36, 38, (370,372,0): 77, 35, 37, (370,373,0): 76, 34, 36, (370,374,0): 73, 32, 36, (370,375,0): 72, 31, 35, (370,376,0): 71, 32, 37, (370,377,0): 71, 32, 37, (370,378,0): 68, 32, 36, (370,379,0): 68, 32, 36, (370,380,0): 67, 30, 37, (370,381,0): 67, 30, 37, (370,382,0): 66, 29, 36, (370,383,0): 68, 29, 34, (370,384,0): 72, 30, 32, (370,385,0): 75, 31, 32, (370,386,0): 74, 32, 34, (370,387,0): 74, 32, 34, (370,388,0): 74, 32, 34, (370,389,0): 73, 33, 34, (370,390,0): 70, 31, 34, (370,391,0): 70, 31, 34, (370,392,0): 66, 30, 34, (370,393,0): 64, 29, 33, (370,394,0): 61, 29, 32, (370,395,0): 59, 27, 30, (370,396,0): 57, 26, 31, (370,397,0): 55, 24, 29, (370,398,0): 53, 24, 28, (370,399,0): 53, 24, 28, (370,400,0): 53, 26, 31, (370,401,0): 53, 26, 31, (370,402,0): 54, 27, 32, (370,403,0): 55, 28, 33, (370,404,0): 54, 27, 32, (370,405,0): 53, 26, 31, (370,406,0): 51, 24, 29, (370,407,0): 50, 23, 28, (370,408,0): 51, 24, 29, (370,409,0): 51, 24, 29, (370,410,0): 52, 25, 30, (370,411,0): 52, 25, 30, (370,412,0): 52, 25, 30, (370,413,0): 50, 23, 28, (370,414,0): 49, 22, 27, (370,415,0): 48, 22, 25, (370,416,0): 49, 25, 25, (370,417,0): 47, 26, 25, (370,418,0): 47, 26, 25, (370,419,0): 47, 26, 25, (370,420,0): 47, 25, 27, (370,421,0): 47, 25, 27, (370,422,0): 47, 25, 28, (370,423,0): 47, 25, 28, (370,424,0): 45, 22, 28, (370,425,0): 44, 21, 27, (370,426,0): 44, 21, 29, (370,427,0): 44, 21, 29, (370,428,0): 43, 20, 30, (370,429,0): 43, 20, 30, (370,430,0): 42, 19, 29, (370,431,0): 41, 20, 27, (370,432,0): 42, 23, 25, (370,433,0): 41, 25, 25, (370,434,0): 45, 27, 27, (370,435,0): 48, 28, 29, (370,436,0): 51, 29, 32, (370,437,0): 53, 31, 34, (370,438,0): 54, 32, 35, (370,439,0): 55, 33, 36, (370,440,0): 49, 26, 32, (370,441,0): 47, 26, 31, (370,442,0): 45, 26, 30, (370,443,0): 41, 26, 29, (370,444,0): 38, 26, 28, (370,445,0): 37, 28, 31, (370,446,0): 35, 29, 31, (370,447,0): 36, 30, 32, (370,448,0): 37, 31, 31, (370,449,0): 37, 32, 29, (370,450,0): 37, 32, 29, (370,451,0): 40, 35, 32, (370,452,0): 46, 38, 36, (370,453,0): 49, 41, 39, (370,454,0): 50, 40, 39, (370,455,0): 50, 38, 38, (370,456,0): 46, 34, 34, (370,457,0): 48, 34, 34, (370,458,0): 48, 34, 34, (370,459,0): 49, 33, 34, (370,460,0): 50, 34, 35, (370,461,0): 54, 35, 37, (370,462,0): 55, 36, 38, (370,463,0): 56, 38, 38, (370,464,0): 56, 41, 38, (370,465,0): 57, 44, 38, (370,466,0): 60, 47, 41, (370,467,0): 65, 52, 46, (370,468,0): 68, 55, 49, (370,469,0): 71, 58, 50, (370,470,0): 72, 59, 51, (370,471,0): 73, 60, 52, (370,472,0): 77, 64, 56, (370,473,0): 78, 65, 57, (370,474,0): 78, 65, 57, (370,475,0): 75, 65, 56, (370,476,0): 73, 65, 54, (370,477,0): 71, 63, 52, (370,478,0): 69, 61, 50, (370,479,0): 69, 59, 49, (370,480,0): 63, 51, 39, (370,481,0): 64, 50, 39, (370,482,0): 64, 50, 39, (370,483,0): 63, 49, 38, (370,484,0): 65, 48, 38, (370,485,0): 65, 48, 38, (370,486,0): 65, 48, 38, (370,487,0): 65, 48, 38, (370,488,0): 64, 46, 36, (370,489,0): 65, 47, 37, (370,490,0): 66, 46, 37, (370,491,0): 66, 46, 37, (370,492,0): 66, 46, 37, (370,493,0): 65, 45, 36, (370,494,0): 67, 44, 36, (370,495,0): 67, 44, 36, (370,496,0): 64, 44, 37, (370,497,0): 62, 42, 35, (370,498,0): 59, 38, 33, (370,499,0): 56, 35, 30, (370,500,0): 53, 32, 27, (370,501,0): 52, 31, 26, (370,502,0): 51, 30, 27, (370,503,0): 51, 30, 27, (370,504,0): 55, 34, 33, (370,505,0): 55, 34, 33, (370,506,0): 55, 34, 33, (370,507,0): 55, 34, 33, (370,508,0): 53, 31, 33, (370,509,0): 51, 29, 31, (370,510,0): 49, 27, 29, (370,511,0): 48, 26, 29, (370,512,0): 46, 25, 30, (370,513,0): 45, 24, 31, (370,514,0): 44, 23, 32, (370,515,0): 43, 22, 31, (370,516,0): 41, 21, 32, (370,517,0): 41, 21, 32, (370,518,0): 42, 22, 34, (370,519,0): 43, 23, 35, (370,520,0): 43, 26, 36, (370,521,0): 42, 25, 33, (370,522,0): 41, 26, 33, (370,523,0): 41, 26, 29, (370,524,0): 41, 26, 29, (370,525,0): 43, 29, 28, (370,526,0): 42, 31, 29, (370,527,0): 45, 31, 30, (370,528,0): 50, 34, 37, (370,529,0): 52, 33, 39, (370,530,0): 51, 35, 38, (370,531,0): 51, 36, 39, (370,532,0): 52, 40, 42, (370,533,0): 53, 43, 42, (370,534,0): 55, 47, 45, (370,535,0): 57, 49, 46, (370,536,0): 57, 50, 44, (370,537,0): 58, 51, 45, (370,538,0): 61, 52, 45, (370,539,0): 63, 52, 46, (370,540,0): 66, 53, 45, (370,541,0): 66, 51, 44, (370,542,0): 68, 51, 44, (370,543,0): 67, 50, 43, (370,544,0): 63, 48, 41, (370,545,0): 62, 47, 40, (370,546,0): 60, 45, 38, (370,547,0): 60, 45, 38, (370,548,0): 63, 46, 39, (370,549,0): 66, 49, 42, (370,550,0): 69, 52, 45, (370,551,0): 72, 55, 48, (370,552,0): 71, 52, 46, (370,553,0): 68, 49, 43, (370,554,0): 66, 45, 40, (370,555,0): 64, 43, 38, (370,556,0): 64, 43, 38, (370,557,0): 63, 42, 37, (370,558,0): 63, 39, 35, (370,559,0): 61, 37, 33, (370,560,0): 57, 31, 30, (370,561,0): 56, 30, 31, (370,562,0): 54, 27, 32, (370,563,0): 51, 26, 30, (370,564,0): 47, 24, 32, (370,565,0): 44, 23, 30, (370,566,0): 42, 20, 32, (370,567,0): 38, 21, 31, (370,568,0): 38, 20, 32, (370,569,0): 37, 24, 34, (370,570,0): 38, 25, 34, (370,571,0): 36, 25, 33, (370,572,0): 33, 24, 29, (370,573,0): 34, 25, 30, (370,574,0): 36, 30, 32, (370,575,0): 39, 33, 35, (370,576,0): 40, 34, 34, (370,577,0): 40, 36, 35, (370,578,0): 41, 37, 36, (370,579,0): 41, 40, 38, (370,580,0): 40, 40, 38, (370,581,0): 40, 40, 38, (370,582,0): 40, 40, 38, (370,583,0): 40, 40, 38, (370,584,0): 40, 40, 38, (370,585,0): 41, 40, 38, (370,586,0): 44, 40, 39, (370,587,0): 46, 40, 40, (370,588,0): 48, 39, 40, (370,589,0): 50, 40, 41, (370,590,0): 51, 41, 42, (370,591,0): 52, 40, 44, (370,592,0): 52, 41, 47, (370,593,0): 51, 40, 48, (370,594,0): 50, 39, 47, (370,595,0): 49, 38, 46, (370,596,0): 48, 37, 45, (370,597,0): 47, 36, 44, (370,598,0): 46, 35, 43, (370,599,0): 46, 35, 43, (371,0,0): 70, 55, 48, (371,1,0): 70, 55, 48, (371,2,0): 71, 57, 48, (371,3,0): 71, 57, 48, (371,4,0): 72, 58, 49, (371,5,0): 72, 58, 49, (371,6,0): 73, 59, 48, (371,7,0): 73, 59, 48, (371,8,0): 77, 63, 50, (371,9,0): 79, 65, 52, (371,10,0): 82, 68, 55, (371,11,0): 84, 70, 57, (371,12,0): 86, 73, 57, (371,13,0): 89, 76, 60, (371,14,0): 91, 78, 62, (371,15,0): 95, 79, 63, (371,16,0): 99, 83, 60, (371,17,0): 101, 83, 59, (371,18,0): 101, 83, 59, (371,19,0): 101, 83, 59, (371,20,0): 100, 82, 58, (371,21,0): 99, 81, 57, (371,22,0): 97, 79, 55, (371,23,0): 96, 78, 54, (371,24,0): 98, 80, 56, (371,25,0): 99, 81, 57, (371,26,0): 100, 82, 58, (371,27,0): 102, 84, 60, (371,28,0): 103, 85, 61, (371,29,0): 105, 87, 63, (371,30,0): 106, 88, 64, (371,31,0): 107, 89, 65, (371,32,0): 107, 89, 65, (371,33,0): 106, 88, 64, (371,34,0): 105, 87, 63, (371,35,0): 104, 86, 62, (371,36,0): 103, 85, 61, (371,37,0): 102, 84, 60, (371,38,0): 101, 83, 59, (371,39,0): 100, 82, 58, (371,40,0): 97, 79, 55, (371,41,0): 98, 80, 56, (371,42,0): 100, 82, 58, (371,43,0): 100, 82, 58, (371,44,0): 98, 80, 56, (371,45,0): 94, 76, 52, (371,46,0): 90, 72, 48, (371,47,0): 87, 69, 45, (371,48,0): 85, 69, 44, (371,49,0): 85, 69, 44, (371,50,0): 85, 69, 44, (371,51,0): 84, 68, 43, (371,52,0): 84, 68, 45, (371,53,0): 84, 68, 45, (371,54,0): 83, 66, 46, (371,55,0): 83, 66, 46, (371,56,0): 84, 67, 47, (371,57,0): 82, 65, 45, (371,58,0): 78, 61, 43, (371,59,0): 74, 57, 39, (371,60,0): 74, 57, 41, (371,61,0): 75, 58, 42, (371,62,0): 78, 61, 45, (371,63,0): 81, 64, 48, (371,64,0): 83, 66, 48, (371,65,0): 83, 66, 48, (371,66,0): 82, 65, 47, (371,67,0): 82, 65, 47, (371,68,0): 82, 65, 47, (371,69,0): 82, 65, 47, (371,70,0): 82, 65, 47, (371,71,0): 82, 65, 47, (371,72,0): 77, 60, 44, (371,73,0): 77, 60, 44, (371,74,0): 76, 59, 43, (371,75,0): 75, 58, 42, (371,76,0): 73, 56, 40, (371,77,0): 72, 55, 39, (371,78,0): 71, 53, 39, (371,79,0): 71, 54, 38, (371,80,0): 66, 47, 30, (371,81,0): 66, 48, 28, (371,82,0): 67, 49, 29, (371,83,0): 67, 49, 29, (371,84,0): 68, 50, 30, (371,85,0): 68, 50, 30, (371,86,0): 68, 50, 30, (371,87,0): 68, 50, 30, (371,88,0): 70, 52, 32, (371,89,0): 71, 53, 33, (371,90,0): 73, 55, 35, (371,91,0): 75, 57, 37, (371,92,0): 78, 60, 40, (371,93,0): 80, 62, 42, (371,94,0): 82, 64, 44, (371,95,0): 83, 64, 47, (371,96,0): 82, 63, 48, (371,97,0): 83, 64, 50, (371,98,0): 84, 65, 50, (371,99,0): 84, 65, 50, (371,100,0): 85, 66, 51, (371,101,0): 86, 67, 50, (371,102,0): 87, 69, 49, (371,103,0): 88, 70, 48, (371,104,0): 92, 74, 50, (371,105,0): 93, 76, 50, (371,106,0): 95, 78, 52, (371,107,0): 99, 82, 54, (371,108,0): 104, 87, 57, (371,109,0): 109, 93, 60, (371,110,0): 113, 96, 66, (371,111,0): 115, 99, 65, (371,112,0): 132, 114, 76, (371,113,0): 135, 116, 76, (371,114,0): 137, 119, 79, (371,115,0): 141, 123, 83, (371,116,0): 142, 127, 86, (371,117,0): 145, 131, 92, (371,118,0): 146, 134, 94, (371,119,0): 145, 136, 97, (371,120,0): 152, 144, 105, (371,121,0): 152, 147, 109, (371,122,0): 156, 152, 115, (371,123,0): 161, 157, 120, (371,124,0): 164, 162, 124, (371,125,0): 166, 166, 128, (371,126,0): 168, 168, 132, (371,127,0): 169, 169, 133, (371,128,0): 172, 171, 140, (371,129,0): 171, 170, 139, (371,130,0): 169, 170, 139, (371,131,0): 167, 170, 139, (371,132,0): 168, 173, 143, (371,133,0): 169, 178, 147, (371,134,0): 172, 183, 153, (371,135,0): 171, 186, 157, (371,136,0): 160, 179, 151, (371,137,0): 156, 179, 151, (371,138,0): 154, 180, 153, (371,139,0): 152, 182, 154, (371,140,0): 154, 187, 160, (371,141,0): 159, 193, 168, (371,142,0): 163, 199, 173, (371,143,0): 166, 202, 176, (371,144,0): 162, 201, 174, (371,145,0): 163, 202, 175, (371,146,0): 164, 202, 177, (371,147,0): 164, 204, 180, (371,148,0): 164, 203, 182, (371,149,0): 163, 202, 183, (371,150,0): 160, 201, 183, (371,151,0): 159, 200, 184, (371,152,0): 157, 199, 185, (371,153,0): 157, 199, 187, (371,154,0): 157, 199, 189, (371,155,0): 156, 199, 190, (371,156,0): 156, 199, 192, (371,157,0): 154, 199, 192, (371,158,0): 156, 198, 194, (371,159,0): 154, 199, 194, (371,160,0): 155, 200, 193, (371,161,0): 155, 201, 191, (371,162,0): 154, 201, 191, (371,163,0): 153, 200, 190, (371,164,0): 152, 199, 191, (371,165,0): 152, 199, 191, (371,166,0): 150, 199, 195, (371,167,0): 149, 198, 194, (371,168,0): 149, 198, 195, (371,169,0): 148, 198, 195, (371,170,0): 148, 198, 199, (371,171,0): 148, 198, 199, (371,172,0): 147, 198, 201, (371,173,0): 147, 198, 201, (371,174,0): 147, 198, 201, (371,175,0): 147, 198, 201, (371,176,0): 148, 199, 203, (371,177,0): 148, 199, 203, (371,178,0): 148, 199, 203, (371,179,0): 148, 199, 203, (371,180,0): 148, 198, 205, (371,181,0): 148, 198, 205, (371,182,0): 148, 198, 207, (371,183,0): 148, 198, 207, (371,184,0): 146, 196, 205, (371,185,0): 146, 196, 205, (371,186,0): 146, 196, 207, (371,187,0): 146, 196, 207, (371,188,0): 146, 195, 209, (371,189,0): 146, 195, 209, (371,190,0): 146, 195, 209, (371,191,0): 144, 196, 210, (371,192,0): 144, 195, 214, (371,193,0): 143, 196, 214, (371,194,0): 143, 196, 214, (371,195,0): 143, 196, 214, (371,196,0): 143, 196, 214, (371,197,0): 142, 194, 215, (371,198,0): 142, 194, 215, (371,199,0): 142, 194, 215, (371,200,0): 144, 196, 218, (371,201,0): 144, 196, 218, (371,202,0): 144, 196, 220, (371,203,0): 144, 196, 220, (371,204,0): 144, 196, 220, (371,205,0): 144, 196, 220, (371,206,0): 145, 197, 221, (371,207,0): 145, 196, 223, (371,208,0): 148, 199, 228, (371,209,0): 148, 197, 227, (371,210,0): 147, 196, 226, (371,211,0): 145, 194, 224, (371,212,0): 144, 193, 223, (371,213,0): 146, 193, 223, (371,214,0): 146, 193, 223, (371,215,0): 146, 193, 223, (371,216,0): 150, 195, 226, (371,217,0): 150, 195, 226, (371,218,0): 151, 196, 227, (371,219,0): 153, 196, 228, (371,220,0): 154, 197, 229, (371,221,0): 155, 198, 230, (371,222,0): 156, 199, 231, (371,223,0): 158, 198, 233, (371,224,0): 160, 200, 236, (371,225,0): 160, 200, 236, (371,226,0): 160, 200, 236, (371,227,0): 161, 201, 237, (371,228,0): 161, 200, 239, (371,229,0): 163, 201, 240, (371,230,0): 164, 201, 243, (371,231,0): 165, 202, 244, (371,232,0): 167, 201, 246, (371,233,0): 167, 201, 246, (371,234,0): 167, 199, 246, (371,235,0): 167, 199, 246, (371,236,0): 166, 198, 247, (371,237,0): 165, 197, 246, (371,238,0): 165, 197, 246, (371,239,0): 161, 197, 247, (371,240,0): 155, 199, 248, (371,241,0): 151, 199, 248, (371,242,0): 150, 198, 247, (371,243,0): 150, 198, 247, (371,244,0): 150, 198, 247, (371,245,0): 151, 199, 248, (371,246,0): 152, 200, 249, (371,247,0): 153, 201, 250, (371,248,0): 150, 196, 245, (371,249,0): 151, 197, 246, (371,250,0): 154, 200, 249, (371,251,0): 157, 203, 252, (371,252,0): 158, 204, 253, (371,253,0): 158, 204, 253, (371,254,0): 157, 203, 252, (371,255,0): 155, 203, 251, (371,256,0): 155, 207, 254, (371,257,0): 154, 208, 254, (371,258,0): 154, 208, 255, (371,259,0): 154, 208, 254, (371,260,0): 154, 208, 255, (371,261,0): 154, 208, 254, (371,262,0): 154, 208, 255, (371,263,0): 154, 208, 254, (371,264,0): 154, 208, 255, (371,265,0): 154, 208, 254, (371,266,0): 155, 209, 255, (371,267,0): 155, 209, 255, (371,268,0): 154, 208, 255, (371,269,0): 153, 207, 253, (371,270,0): 151, 205, 252, (371,271,0): 150, 204, 251, (371,272,0): 154, 208, 255, (371,273,0): 153, 207, 254, (371,274,0): 153, 207, 254, (371,275,0): 152, 205, 255, (371,276,0): 151, 204, 254, (371,277,0): 151, 204, 254, (371,278,0): 150, 203, 255, (371,279,0): 150, 203, 255, (371,280,0): 148, 201, 255, (371,281,0): 148, 201, 255, (371,282,0): 148, 200, 255, (371,283,0): 147, 199, 255, (371,284,0): 147, 199, 255, (371,285,0): 146, 198, 255, (371,286,0): 146, 198, 255, (371,287,0): 146, 198, 255, (371,288,0): 142, 197, 253, (371,289,0): 142, 197, 253, (371,290,0): 142, 197, 253, (371,291,0): 142, 197, 253, (371,292,0): 141, 198, 253, (371,293,0): 141, 198, 253, (371,294,0): 139, 199, 253, (371,295,0): 141, 198, 253, (371,296,0): 142, 197, 253, (371,297,0): 143, 195, 252, (371,298,0): 143, 193, 252, (371,299,0): 143, 192, 251, (371,300,0): 145, 191, 251, (371,301,0): 147, 191, 252, (371,302,0): 150, 191, 253, (371,303,0): 151, 192, 254, (371,304,0): 156, 196, 255, (371,305,0): 163, 199, 255, (371,306,0): 166, 195, 251, (371,307,0): 161, 181, 234, (371,308,0): 154, 162, 211, (371,309,0): 136, 137, 181, (371,310,0): 112, 104, 141, (371,311,0): 89, 79, 106, (371,312,0): 82, 68, 91, (371,313,0): 76, 64, 78, (371,314,0): 71, 58, 68, (371,315,0): 71, 58, 65, (371,316,0): 76, 65, 69, (371,317,0): 85, 75, 76, (371,318,0): 92, 82, 83, (371,319,0): 97, 85, 87, (371,320,0): 109, 90, 92, (371,321,0): 106, 86, 87, (371,322,0): 98, 78, 80, (371,323,0): 89, 69, 71, (371,324,0): 81, 61, 63, (371,325,0): 76, 56, 58, (371,326,0): 73, 52, 57, (371,327,0): 72, 51, 58, (371,328,0): 65, 44, 51, (371,329,0): 63, 42, 51, (371,330,0): 61, 39, 51, (371,331,0): 59, 37, 49, (371,332,0): 57, 35, 47, (371,333,0): 57, 35, 47, (371,334,0): 57, 35, 48, (371,335,0): 57, 35, 47, (371,336,0): 61, 37, 50, (371,337,0): 61, 38, 48, (371,338,0): 61, 38, 48, (371,339,0): 62, 39, 49, (371,340,0): 62, 41, 50, (371,341,0): 65, 42, 52, (371,342,0): 70, 45, 51, (371,343,0): 74, 45, 50, (371,344,0): 79, 47, 50, (371,345,0): 86, 48, 47, (371,346,0): 94, 50, 47, (371,347,0): 103, 53, 46, (371,348,0): 111, 54, 43, (371,349,0): 117, 55, 42, (371,350,0): 121, 54, 38, (371,351,0): 121, 53, 40, (371,352,0): 110, 47, 40, (371,353,0): 104, 43, 40, (371,354,0): 99, 39, 38, (371,355,0): 97, 39, 37, (371,356,0): 94, 40, 38, (371,357,0): 91, 40, 37, (371,358,0): 87, 37, 36, (371,359,0): 83, 35, 33, (371,360,0): 82, 37, 34, (371,361,0): 82, 36, 36, (371,362,0): 85, 37, 37, (371,363,0): 86, 37, 40, (371,364,0): 88, 38, 41, (371,365,0): 88, 38, 41, (371,366,0): 90, 37, 43, (371,367,0): 89, 39, 42, (371,368,0): 82, 38, 39, (371,369,0): 80, 38, 39, (371,370,0): 79, 37, 39, (371,371,0): 78, 36, 38, (371,372,0): 76, 34, 36, (371,373,0): 74, 32, 34, (371,374,0): 71, 30, 34, (371,375,0): 70, 29, 33, (371,376,0): 71, 32, 37, (371,377,0): 71, 32, 37, (371,378,0): 68, 32, 36, (371,379,0): 68, 32, 36, (371,380,0): 67, 30, 37, (371,381,0): 67, 30, 37, (371,382,0): 66, 29, 36, (371,383,0): 68, 29, 34, (371,384,0): 72, 30, 32, (371,385,0): 72, 30, 31, (371,386,0): 73, 31, 33, (371,387,0): 73, 33, 34, (371,388,0): 72, 32, 33, (371,389,0): 70, 31, 32, (371,390,0): 69, 30, 33, (371,391,0): 66, 30, 32, (371,392,0): 63, 28, 32, (371,393,0): 60, 28, 31, (371,394,0): 59, 27, 30, (371,395,0): 57, 27, 29, (371,396,0): 56, 25, 30, (371,397,0): 54, 25, 29, (371,398,0): 53, 24, 28, (371,399,0): 50, 24, 27, (371,400,0): 52, 25, 30, (371,401,0): 53, 26, 31, (371,402,0): 54, 27, 32, (371,403,0): 54, 27, 32, (371,404,0): 54, 27, 32, (371,405,0): 53, 26, 31, (371,406,0): 52, 25, 30, (371,407,0): 51, 24, 29, (371,408,0): 51, 24, 29, (371,409,0): 51, 24, 29, (371,410,0): 51, 24, 29, (371,411,0): 51, 24, 29, (371,412,0): 50, 23, 28, (371,413,0): 50, 23, 28, (371,414,0): 49, 22, 27, (371,415,0): 47, 22, 25, (371,416,0): 46, 24, 26, (371,417,0): 46, 25, 24, (371,418,0): 46, 25, 24, (371,419,0): 46, 25, 24, (371,420,0): 46, 24, 26, (371,421,0): 46, 24, 26, (371,422,0): 46, 24, 27, (371,423,0): 46, 24, 27, (371,424,0): 44, 21, 27, (371,425,0): 44, 21, 27, (371,426,0): 44, 21, 29, (371,427,0): 44, 21, 29, (371,428,0): 44, 21, 31, (371,429,0): 43, 20, 30, (371,430,0): 43, 20, 30, (371,431,0): 42, 21, 28, (371,432,0): 44, 25, 27, (371,433,0): 42, 26, 26, (371,434,0): 43, 24, 26, (371,435,0): 44, 25, 27, (371,436,0): 47, 27, 29, (371,437,0): 51, 29, 32, (371,438,0): 53, 31, 34, (371,439,0): 55, 33, 36, (371,440,0): 49, 28, 33, (371,441,0): 47, 28, 32, (371,442,0): 46, 27, 31, (371,443,0): 42, 28, 28, (371,444,0): 41, 29, 31, (371,445,0): 41, 31, 32, (371,446,0): 41, 32, 33, (371,447,0): 40, 34, 34, (371,448,0): 42, 37, 34, (371,449,0): 39, 34, 31, (371,450,0): 37, 32, 29, (371,451,0): 42, 37, 34, (371,452,0): 52, 44, 42, (371,453,0): 57, 49, 47, (371,454,0): 57, 47, 46, (371,455,0): 54, 44, 43, (371,456,0): 46, 36, 35, (371,457,0): 46, 34, 34, (371,458,0): 46, 34, 34, (371,459,0): 48, 34, 34, (371,460,0): 49, 35, 35, (371,461,0): 51, 35, 36, (371,462,0): 52, 36, 37, (371,463,0): 53, 37, 37, (371,464,0): 55, 41, 38, (371,465,0): 58, 45, 39, (371,466,0): 62, 48, 45, (371,467,0): 67, 54, 48, (371,468,0): 72, 58, 55, (371,469,0): 74, 63, 57, (371,470,0): 78, 65, 59, (371,471,0): 77, 67, 58, (371,472,0): 82, 69, 61, (371,473,0): 80, 70, 61, (371,474,0): 79, 69, 60, (371,475,0): 78, 68, 59, (371,476,0): 75, 67, 56, (371,477,0): 72, 64, 53, (371,478,0): 69, 61, 50, (371,479,0): 68, 58, 48, (371,480,0): 65, 53, 41, (371,481,0): 65, 51, 40, (371,482,0): 64, 50, 39, (371,483,0): 63, 49, 38, (371,484,0): 65, 48, 38, (371,485,0): 65, 48, 38, (371,486,0): 65, 48, 38, (371,487,0): 65, 48, 38, (371,488,0): 68, 50, 40, (371,489,0): 69, 51, 41, (371,490,0): 70, 50, 41, (371,491,0): 70, 50, 41, (371,492,0): 70, 50, 41, (371,493,0): 69, 49, 40, (371,494,0): 70, 47, 39, (371,495,0): 69, 46, 38, (371,496,0): 62, 42, 35, (371,497,0): 60, 40, 33, (371,498,0): 57, 36, 31, (371,499,0): 54, 33, 28, (371,500,0): 51, 30, 25, (371,501,0): 49, 28, 23, (371,502,0): 48, 27, 24, (371,503,0): 48, 27, 24, (371,504,0): 51, 30, 29, (371,505,0): 52, 31, 30, (371,506,0): 52, 31, 30, (371,507,0): 52, 31, 30, (371,508,0): 52, 30, 32, (371,509,0): 50, 28, 30, (371,510,0): 48, 26, 28, (371,511,0): 47, 25, 28, (371,512,0): 46, 25, 30, (371,513,0): 45, 24, 31, (371,514,0): 44, 23, 32, (371,515,0): 42, 21, 30, (371,516,0): 41, 21, 32, (371,517,0): 41, 21, 32, (371,518,0): 42, 22, 34, (371,519,0): 42, 22, 34, (371,520,0): 41, 24, 34, (371,521,0): 41, 24, 32, (371,522,0): 39, 24, 31, (371,523,0): 39, 24, 27, (371,524,0): 40, 25, 28, (371,525,0): 42, 28, 27, (371,526,0): 41, 30, 28, (371,527,0): 45, 31, 30, (371,528,0): 52, 36, 39, (371,529,0): 52, 36, 39, (371,530,0): 53, 37, 40, (371,531,0): 53, 39, 39, (371,532,0): 54, 42, 42, (371,533,0): 56, 46, 45, (371,534,0): 59, 49, 47, (371,535,0): 60, 52, 49, (371,536,0): 61, 54, 48, (371,537,0): 62, 55, 49, (371,538,0): 64, 55, 48, (371,539,0): 66, 55, 49, (371,540,0): 69, 56, 48, (371,541,0): 70, 55, 48, (371,542,0): 71, 54, 47, (371,543,0): 69, 54, 47, (371,544,0): 68, 53, 46, (371,545,0): 66, 51, 44, (371,546,0): 64, 49, 42, (371,547,0): 63, 48, 41, (371,548,0): 66, 49, 42, (371,549,0): 69, 52, 45, (371,550,0): 73, 56, 49, (371,551,0): 75, 58, 51, (371,552,0): 76, 57, 51, (371,553,0): 73, 54, 48, (371,554,0): 71, 50, 45, (371,555,0): 67, 46, 41, (371,556,0): 64, 43, 38, (371,557,0): 62, 41, 36, (371,558,0): 62, 38, 34, (371,559,0): 61, 37, 33, (371,560,0): 56, 32, 32, (371,561,0): 54, 30, 30, (371,562,0): 52, 27, 31, (371,563,0): 47, 25, 28, (371,564,0): 44, 21, 29, (371,565,0): 41, 20, 27, (371,566,0): 39, 19, 30, (371,567,0): 37, 20, 30, (371,568,0): 36, 20, 31, (371,569,0): 36, 23, 33, (371,570,0): 38, 25, 34, (371,571,0): 37, 26, 34, (371,572,0): 35, 26, 31, (371,573,0): 36, 27, 32, (371,574,0): 37, 31, 33, (371,575,0): 41, 35, 37, (371,576,0): 40, 34, 34, (371,577,0): 41, 35, 35, (371,578,0): 41, 35, 35, (371,579,0): 41, 37, 36, (371,580,0): 39, 38, 36, (371,581,0): 39, 38, 36, (371,582,0): 39, 38, 36, (371,583,0): 39, 38, 36, (371,584,0): 39, 38, 36, (371,585,0): 41, 37, 36, (371,586,0): 43, 37, 37, (371,587,0): 47, 38, 39, (371,588,0): 49, 39, 40, (371,589,0): 51, 39, 41, (371,590,0): 52, 40, 42, (371,591,0): 53, 41, 45, (371,592,0): 52, 41, 47, (371,593,0): 51, 40, 48, (371,594,0): 50, 39, 47, (371,595,0): 49, 38, 46, (371,596,0): 48, 37, 45, (371,597,0): 46, 35, 43, (371,598,0): 45, 34, 42, (371,599,0): 45, 34, 42, (372,0,0): 71, 56, 49, (372,1,0): 71, 56, 49, (372,2,0): 71, 57, 48, (372,3,0): 72, 58, 49, (372,4,0): 72, 58, 49, (372,5,0): 73, 59, 50, (372,6,0): 73, 59, 48, (372,7,0): 73, 59, 48, (372,8,0): 79, 65, 52, (372,9,0): 79, 65, 52, (372,10,0): 81, 67, 54, (372,11,0): 83, 69, 56, (372,12,0): 86, 73, 57, (372,13,0): 89, 76, 60, (372,14,0): 90, 77, 61, (372,15,0): 93, 77, 61, (372,16,0): 98, 82, 59, (372,17,0): 100, 82, 58, (372,18,0): 101, 83, 59, (372,19,0): 101, 83, 59, (372,20,0): 101, 83, 59, (372,21,0): 100, 82, 58, (372,22,0): 98, 80, 56, (372,23,0): 97, 79, 55, (372,24,0): 98, 80, 56, (372,25,0): 99, 81, 57, (372,26,0): 100, 82, 58, (372,27,0): 102, 84, 60, (372,28,0): 103, 85, 61, (372,29,0): 105, 87, 63, (372,30,0): 106, 88, 64, (372,31,0): 107, 89, 65, (372,32,0): 107, 89, 65, (372,33,0): 107, 89, 65, (372,34,0): 106, 88, 64, (372,35,0): 105, 87, 63, (372,36,0): 104, 86, 62, (372,37,0): 103, 85, 61, (372,38,0): 103, 85, 61, (372,39,0): 102, 84, 60, (372,40,0): 99, 81, 57, (372,41,0): 100, 82, 58, (372,42,0): 101, 83, 59, (372,43,0): 102, 84, 60, (372,44,0): 100, 82, 58, (372,45,0): 97, 79, 55, (372,46,0): 92, 74, 50, (372,47,0): 90, 72, 48, (372,48,0): 87, 71, 46, (372,49,0): 87, 71, 46, (372,50,0): 87, 71, 46, (372,51,0): 86, 70, 45, (372,52,0): 86, 70, 45, (372,53,0): 86, 70, 45, (372,54,0): 86, 70, 47, (372,55,0): 86, 70, 47, (372,56,0): 86, 69, 49, (372,57,0): 82, 65, 45, (372,58,0): 77, 60, 42, (372,59,0): 73, 56, 38, (372,60,0): 71, 54, 36, (372,61,0): 73, 56, 38, (372,62,0): 76, 59, 41, (372,63,0): 79, 62, 44, (372,64,0): 80, 64, 48, (372,65,0): 80, 64, 48, (372,66,0): 80, 64, 48, (372,67,0): 80, 64, 48, (372,68,0): 80, 64, 48, (372,69,0): 80, 64, 48, (372,70,0): 80, 64, 48, (372,71,0): 80, 64, 48, (372,72,0): 73, 57, 41, (372,73,0): 73, 57, 41, (372,74,0): 73, 57, 41, (372,75,0): 73, 57, 41, (372,76,0): 74, 58, 42, (372,77,0): 74, 58, 42, (372,78,0): 74, 58, 42, (372,79,0): 75, 58, 42, (372,80,0): 68, 49, 32, (372,81,0): 68, 50, 30, (372,82,0): 67, 49, 29, (372,83,0): 66, 48, 28, (372,84,0): 66, 48, 28, (372,85,0): 66, 48, 28, (372,86,0): 66, 48, 28, (372,87,0): 66, 48, 28, (372,88,0): 68, 50, 30, (372,89,0): 69, 51, 31, (372,90,0): 71, 53, 33, (372,91,0): 73, 55, 35, (372,92,0): 76, 58, 38, (372,93,0): 78, 60, 40, (372,94,0): 80, 62, 42, (372,95,0): 81, 62, 45, (372,96,0): 82, 63, 48, (372,97,0): 83, 64, 50, (372,98,0): 83, 64, 50, (372,99,0): 84, 65, 50, (372,100,0): 84, 65, 50, (372,101,0): 85, 66, 49, (372,102,0): 85, 67, 47, (372,103,0): 86, 68, 46, (372,104,0): 90, 72, 50, (372,105,0): 91, 73, 49, (372,106,0): 93, 76, 50, (372,107,0): 95, 78, 50, (372,108,0): 99, 82, 54, (372,109,0): 103, 86, 56, (372,110,0): 107, 90, 62, (372,111,0): 109, 93, 60, (372,112,0): 123, 105, 69, (372,113,0): 124, 106, 68, (372,114,0): 126, 108, 70, (372,115,0): 130, 112, 74, (372,116,0): 131, 116, 77, (372,117,0): 135, 119, 83, (372,118,0): 137, 123, 86, (372,119,0): 138, 125, 90, (372,120,0): 144, 131, 96, (372,121,0): 144, 134, 99, (372,122,0): 146, 138, 102, (372,123,0): 150, 141, 108, (372,124,0): 152, 146, 112, (372,125,0): 154, 148, 114, (372,126,0): 156, 150, 116, (372,127,0): 156, 150, 116, (372,128,0): 168, 157, 129, (372,129,0): 166, 155, 127, (372,130,0): 162, 152, 125, (372,131,0): 160, 153, 125, (372,132,0): 162, 158, 131, (372,133,0): 167, 166, 138, (372,134,0): 173, 176, 149, (372,135,0): 176, 182, 156, (372,136,0): 165, 178, 152, (372,137,0): 163, 179, 152, (372,138,0): 162, 182, 155, (372,139,0): 161, 185, 159, (372,140,0): 162, 188, 161, (372,141,0): 162, 192, 166, (372,142,0): 163, 196, 169, (372,143,0): 164, 198, 173, (372,144,0): 165, 201, 175, (372,145,0): 166, 201, 177, (372,146,0): 167, 202, 180, (372,147,0): 166, 204, 181, (372,148,0): 166, 204, 183, (372,149,0): 164, 203, 184, (372,150,0): 161, 202, 184, (372,151,0): 160, 201, 185, (372,152,0): 157, 199, 185, (372,153,0): 157, 199, 187, (372,154,0): 156, 199, 189, (372,155,0): 154, 200, 190, (372,156,0): 154, 199, 192, (372,157,0): 153, 200, 194, (372,158,0): 154, 199, 196, (372,159,0): 154, 199, 194, (372,160,0): 156, 201, 194, (372,161,0): 155, 201, 191, (372,162,0): 155, 201, 191, (372,163,0): 155, 201, 191, (372,164,0): 153, 200, 192, (372,165,0): 152, 199, 191, (372,166,0): 152, 198, 195, (372,167,0): 150, 199, 195, (372,168,0): 150, 199, 196, (372,169,0): 150, 199, 196, (372,170,0): 149, 199, 200, (372,171,0): 149, 199, 200, (372,172,0): 149, 198, 202, (372,173,0): 149, 198, 202, (372,174,0): 148, 199, 202, (372,175,0): 148, 199, 202, (372,176,0): 148, 199, 203, (372,177,0): 148, 198, 205, (372,178,0): 148, 198, 205, (372,179,0): 148, 198, 205, (372,180,0): 148, 198, 207, (372,181,0): 148, 198, 207, (372,182,0): 148, 198, 209, (372,183,0): 148, 198, 209, (372,184,0): 146, 196, 207, (372,185,0): 146, 196, 207, (372,186,0): 146, 195, 209, (372,187,0): 146, 195, 209, (372,188,0): 146, 195, 210, (372,189,0): 146, 195, 210, (372,190,0): 146, 195, 210, (372,191,0): 144, 196, 210, (372,192,0): 144, 195, 214, (372,193,0): 143, 195, 216, (372,194,0): 143, 195, 216, (372,195,0): 143, 195, 216, (372,196,0): 143, 195, 216, (372,197,0): 144, 196, 218, (372,198,0): 144, 196, 218, (372,199,0): 144, 196, 218, (372,200,0): 145, 197, 221, (372,201,0): 145, 197, 221, (372,202,0): 145, 196, 223, (372,203,0): 145, 196, 223, (372,204,0): 145, 196, 223, (372,205,0): 145, 196, 223, (372,206,0): 144, 195, 222, (372,207,0): 144, 195, 224, (372,208,0): 148, 199, 228, (372,209,0): 147, 198, 229, (372,210,0): 145, 196, 227, (372,211,0): 143, 194, 225, (372,212,0): 142, 193, 224, (372,213,0): 144, 193, 225, (372,214,0): 145, 194, 226, (372,215,0): 146, 195, 227, (372,216,0): 150, 196, 229, (372,217,0): 150, 196, 229, (372,218,0): 151, 197, 230, (372,219,0): 153, 198, 231, (372,220,0): 154, 199, 232, (372,221,0): 155, 200, 233, (372,222,0): 156, 201, 234, (372,223,0): 157, 200, 234, (372,224,0): 162, 200, 237, (372,225,0): 162, 200, 239, (372,226,0): 163, 201, 240, (372,227,0): 163, 201, 240, (372,228,0): 164, 201, 243, (372,229,0): 166, 201, 243, (372,230,0): 166, 201, 243, (372,231,0): 166, 201, 243, (372,232,0): 167, 200, 245, (372,233,0): 167, 200, 245, (372,234,0): 167, 198, 245, (372,235,0): 167, 198, 245, (372,236,0): 167, 198, 245, (372,237,0): 166, 197, 244, (372,238,0): 166, 196, 246, (372,239,0): 164, 197, 248, (372,240,0): 156, 198, 248, (372,241,0): 152, 198, 247, (372,242,0): 151, 197, 246, (372,243,0): 150, 196, 245, (372,244,0): 150, 196, 245, (372,245,0): 150, 196, 245, (372,246,0): 151, 197, 246, (372,247,0): 152, 198, 247, (372,248,0): 148, 194, 243, (372,249,0): 150, 196, 245, (372,250,0): 153, 199, 248, (372,251,0): 155, 201, 250, (372,252,0): 157, 203, 252, (372,253,0): 157, 203, 252, (372,254,0): 156, 202, 251, (372,255,0): 154, 202, 250, (372,256,0): 155, 205, 254, (372,257,0): 154, 206, 254, (372,258,0): 154, 206, 255, (372,259,0): 154, 206, 254, (372,260,0): 154, 206, 255, (372,261,0): 154, 206, 254, (372,262,0): 154, 206, 255, (372,263,0): 154, 206, 254, (372,264,0): 153, 205, 255, (372,265,0): 154, 206, 254, (372,266,0): 154, 206, 255, (372,267,0): 154, 206, 254, (372,268,0): 154, 206, 255, (372,269,0): 152, 204, 252, (372,270,0): 150, 202, 252, (372,271,0): 149, 201, 251, (372,272,0): 151, 204, 254, (372,273,0): 151, 204, 254, (372,274,0): 151, 204, 254, (372,275,0): 150, 203, 255, (372,276,0): 150, 203, 255, (372,277,0): 150, 203, 255, (372,278,0): 149, 202, 255, (372,279,0): 149, 202, 255, (372,280,0): 147, 199, 255, (372,281,0): 147, 199, 255, (372,282,0): 147, 199, 255, (372,283,0): 146, 198, 255, (372,284,0): 146, 198, 255, (372,285,0): 145, 197, 255, (372,286,0): 145, 197, 255, (372,287,0): 145, 197, 255, (372,288,0): 143, 195, 252, (372,289,0): 143, 195, 252, (372,290,0): 141, 196, 252, (372,291,0): 141, 196, 252, (372,292,0): 140, 196, 253, (372,293,0): 140, 196, 253, (372,294,0): 140, 196, 253, (372,295,0): 140, 196, 253, (372,296,0): 141, 196, 253, (372,297,0): 142, 194, 252, (372,298,0): 143, 192, 251, (372,299,0): 144, 190, 250, (372,300,0): 145, 190, 249, (372,301,0): 148, 190, 250, (372,302,0): 150, 190, 251, (372,303,0): 152, 190, 252, (372,304,0): 155, 191, 253, (372,305,0): 164, 194, 254, (372,306,0): 168, 190, 247, (372,307,0): 161, 175, 224, (372,308,0): 149, 152, 197, (372,309,0): 130, 126, 163, (372,310,0): 105, 96, 127, (372,311,0): 85, 73, 97, (372,312,0): 74, 63, 80, (372,313,0): 72, 61, 75, (372,314,0): 70, 63, 71, (372,315,0): 74, 67, 74, (372,316,0): 85, 76, 81, (372,317,0): 94, 85, 88, (372,318,0): 101, 91, 92, (372,319,0): 106, 91, 94, (372,320,0): 109, 90, 92, (372,321,0): 104, 84, 86, (372,322,0): 96, 76, 78, (372,323,0): 86, 66, 68, (372,324,0): 79, 58, 63, (372,325,0): 74, 53, 58, (372,326,0): 72, 51, 58, (372,327,0): 71, 50, 57, (372,328,0): 64, 43, 50, (372,329,0): 63, 42, 49, (372,330,0): 61, 40, 49, (372,331,0): 59, 38, 47, (372,332,0): 58, 36, 48, (372,333,0): 58, 36, 48, (372,334,0): 58, 36, 48, (372,335,0): 58, 36, 48, (372,336,0): 62, 40, 52, (372,337,0): 62, 40, 52, (372,338,0): 62, 40, 52, (372,339,0): 63, 42, 51, (372,340,0): 66, 43, 51, (372,341,0): 68, 45, 51, (372,342,0): 74, 48, 51, (372,343,0): 78, 48, 48, (372,344,0): 84, 50, 48, (372,345,0): 92, 53, 48, (372,346,0): 103, 56, 50, (372,347,0): 113, 58, 51, (372,348,0): 120, 60, 49, (372,349,0): 126, 60, 48, (372,350,0): 127, 58, 43, (372,351,0): 126, 56, 46, (372,352,0): 115, 50, 44, (372,353,0): 109, 48, 45, (372,354,0): 106, 45, 42, (372,355,0): 103, 44, 40, (372,356,0): 101, 43, 41, (372,357,0): 97, 42, 39, (372,358,0): 92, 38, 36, (372,359,0): 87, 36, 33, (372,360,0): 87, 38, 34, (372,361,0): 87, 37, 36, (372,362,0): 88, 37, 36, (372,363,0): 89, 37, 39, (372,364,0): 92, 37, 40, (372,365,0): 93, 38, 41, (372,366,0): 94, 39, 44, (372,367,0): 92, 40, 44, (372,368,0): 84, 38, 40, (372,369,0): 80, 38, 39, (372,370,0): 79, 37, 39, (372,371,0): 76, 34, 36, (372,372,0): 74, 32, 34, (372,373,0): 73, 31, 33, (372,374,0): 70, 29, 33, (372,375,0): 70, 29, 33, (372,376,0): 71, 32, 37, (372,377,0): 71, 32, 37, (372,378,0): 68, 32, 36, (372,379,0): 68, 32, 36, (372,380,0): 67, 30, 37, (372,381,0): 67, 30, 37, (372,382,0): 66, 29, 36, (372,383,0): 68, 29, 34, (372,384,0): 70, 29, 33, (372,385,0): 72, 30, 32, (372,386,0): 73, 31, 33, (372,387,0): 72, 32, 33, (372,388,0): 71, 30, 34, (372,389,0): 68, 29, 32, (372,390,0): 67, 28, 31, (372,391,0): 64, 28, 30, (372,392,0): 61, 26, 30, (372,393,0): 58, 26, 29, (372,394,0): 58, 26, 31, (372,395,0): 56, 25, 30, (372,396,0): 55, 24, 29, (372,397,0): 53, 24, 28, (372,398,0): 52, 23, 28, (372,399,0): 50, 23, 28, (372,400,0): 51, 24, 29, (372,401,0): 51, 26, 30, (372,402,0): 52, 27, 31, (372,403,0): 53, 28, 32, (372,404,0): 53, 28, 32, (372,405,0): 53, 28, 32, (372,406,0): 52, 27, 31, (372,407,0): 51, 26, 30, (372,408,0): 51, 26, 30, (372,409,0): 50, 25, 29, (372,410,0): 49, 24, 28, (372,411,0): 49, 24, 28, (372,412,0): 48, 23, 27, (372,413,0): 48, 23, 27, (372,414,0): 48, 23, 27, (372,415,0): 48, 23, 26, (372,416,0): 45, 23, 25, (372,417,0): 45, 24, 23, (372,418,0): 45, 23, 25, (372,419,0): 45, 23, 25, (372,420,0): 45, 23, 25, (372,421,0): 45, 23, 25, (372,422,0): 45, 23, 26, (372,423,0): 45, 23, 26, (372,424,0): 44, 21, 27, (372,425,0): 44, 21, 27, (372,426,0): 45, 22, 28, (372,427,0): 45, 22, 28, (372,428,0): 45, 22, 30, (372,429,0): 45, 22, 30, (372,430,0): 45, 22, 30, (372,431,0): 44, 23, 30, (372,432,0): 45, 26, 30, (372,433,0): 43, 27, 28, (372,434,0): 44, 25, 29, (372,435,0): 43, 24, 28, (372,436,0): 46, 25, 30, (372,437,0): 49, 28, 33, (372,438,0): 52, 32, 34, (372,439,0): 54, 34, 36, (372,440,0): 49, 29, 31, (372,441,0): 48, 29, 31, (372,442,0): 47, 28, 30, (372,443,0): 44, 30, 29, (372,444,0): 43, 31, 31, (372,445,0): 44, 34, 33, (372,446,0): 45, 37, 35, (372,447,0): 44, 39, 36, (372,448,0): 44, 39, 36, (372,449,0): 39, 35, 32, (372,450,0): 37, 33, 30, (372,451,0): 42, 38, 35, (372,452,0): 53, 48, 45, (372,453,0): 58, 53, 50, (372,454,0): 58, 50, 48, (372,455,0): 54, 46, 44, (372,456,0): 45, 37, 35, (372,457,0): 46, 36, 35, (372,458,0): 46, 36, 35, (372,459,0): 47, 35, 35, (372,460,0): 48, 36, 36, (372,461,0): 50, 36, 36, (372,462,0): 51, 37, 37, (372,463,0): 51, 37, 37, (372,464,0): 54, 43, 41, (372,465,0): 57, 46, 42, (372,466,0): 62, 51, 49, (372,467,0): 69, 58, 54, (372,468,0): 75, 64, 62, (372,469,0): 79, 70, 65, (372,470,0): 83, 72, 68, (372,471,0): 84, 75, 68, (372,472,0): 86, 75, 69, (372,473,0): 84, 75, 68, (372,474,0): 82, 73, 64, (372,475,0): 79, 70, 61, (372,476,0): 76, 66, 57, (372,477,0): 71, 61, 52, (372,478,0): 67, 57, 48, (372,479,0): 64, 54, 44, (372,480,0): 66, 54, 42, (372,481,0): 65, 53, 39, (372,482,0): 64, 50, 37, (372,483,0): 63, 49, 36, (372,484,0): 63, 49, 36, (372,485,0): 64, 50, 37, (372,486,0): 67, 51, 38, (372,487,0): 68, 52, 39, (372,488,0): 75, 57, 45, (372,489,0): 75, 57, 45, (372,490,0): 75, 57, 45, (372,491,0): 75, 57, 45, (372,492,0): 74, 54, 43, (372,493,0): 71, 51, 40, (372,494,0): 69, 49, 38, (372,495,0): 67, 47, 38, (372,496,0): 60, 40, 33, (372,497,0): 58, 38, 31, (372,498,0): 56, 35, 30, (372,499,0): 53, 32, 27, (372,500,0): 51, 30, 25, (372,501,0): 50, 29, 24, (372,502,0): 50, 29, 26, (372,503,0): 50, 29, 26, (372,504,0): 51, 30, 29, (372,505,0): 51, 30, 29, (372,506,0): 52, 31, 30, (372,507,0): 52, 31, 30, (372,508,0): 51, 29, 31, (372,509,0): 49, 27, 29, (372,510,0): 48, 26, 28, (372,511,0): 47, 25, 28, (372,512,0): 45, 24, 29, (372,513,0): 44, 23, 30, (372,514,0): 43, 22, 31, (372,515,0): 42, 21, 30, (372,516,0): 40, 20, 31, (372,517,0): 40, 20, 31, (372,518,0): 41, 21, 33, (372,519,0): 42, 22, 34, (372,520,0): 40, 23, 33, (372,521,0): 39, 22, 30, (372,522,0): 38, 23, 30, (372,523,0): 38, 23, 26, (372,524,0): 40, 25, 28, (372,525,0): 42, 28, 27, (372,526,0): 42, 31, 29, (372,527,0): 45, 31, 30, (372,528,0): 53, 37, 38, (372,529,0): 53, 37, 38, (372,530,0): 54, 38, 39, (372,531,0): 55, 41, 41, (372,532,0): 56, 44, 44, (372,533,0): 58, 48, 46, (372,534,0): 61, 51, 49, (372,535,0): 63, 53, 51, (372,536,0): 64, 55, 50, (372,537,0): 65, 56, 51, (372,538,0): 68, 57, 51, (372,539,0): 69, 58, 52, (372,540,0): 72, 59, 53, (372,541,0): 72, 59, 53, (372,542,0): 72, 57, 50, (372,543,0): 71, 56, 49, (372,544,0): 72, 57, 50, (372,545,0): 69, 56, 48, (372,546,0): 66, 53, 45, (372,547,0): 64, 51, 43, (372,548,0): 65, 50, 43, (372,549,0): 68, 53, 46, (372,550,0): 72, 57, 50, (372,551,0): 75, 60, 53, (372,552,0): 79, 62, 55, (372,553,0): 78, 61, 54, (372,554,0): 75, 56, 50, (372,555,0): 70, 51, 45, (372,556,0): 65, 46, 40, (372,557,0): 60, 41, 35, (372,558,0): 59, 38, 33, (372,559,0): 58, 37, 32, (372,560,0): 54, 33, 32, (372,561,0): 52, 31, 30, (372,562,0): 49, 27, 30, (372,563,0): 45, 23, 26, (372,564,0): 42, 19, 27, (372,565,0): 39, 18, 25, (372,566,0): 38, 18, 29, (372,567,0): 36, 19, 29, (372,568,0): 36, 20, 31, (372,569,0): 36, 23, 33, (372,570,0): 38, 25, 34, (372,571,0): 37, 26, 34, (372,572,0): 35, 26, 31, (372,573,0): 36, 27, 32, (372,574,0): 39, 30, 33, (372,575,0): 43, 34, 37, (372,576,0): 41, 32, 33, (372,577,0): 41, 33, 31, (372,578,0): 41, 33, 31, (372,579,0): 39, 34, 31, (372,580,0): 39, 34, 31, (372,581,0): 39, 35, 32, (372,582,0): 39, 35, 32, (372,583,0): 40, 36, 33, (372,584,0): 41, 37, 34, (372,585,0): 42, 37, 34, (372,586,0): 45, 37, 35, (372,587,0): 48, 38, 37, (372,588,0): 50, 38, 38, (372,589,0): 53, 39, 39, (372,590,0): 55, 39, 40, (372,591,0): 55, 40, 43, (372,592,0): 53, 40, 47, (372,593,0): 52, 41, 49, (372,594,0): 50, 39, 47, (372,595,0): 49, 38, 46, (372,596,0): 47, 36, 44, (372,597,0): 45, 34, 42, (372,598,0): 44, 33, 41, (372,599,0): 43, 32, 40, (373,0,0): 72, 57, 50, (373,1,0): 72, 57, 50, (373,2,0): 72, 58, 49, (373,3,0): 73, 59, 50, (373,4,0): 74, 60, 51, (373,5,0): 74, 60, 51, (373,6,0): 74, 60, 49, (373,7,0): 75, 61, 50, (373,8,0): 80, 66, 53, (373,9,0): 79, 65, 52, (373,10,0): 79, 65, 52, (373,11,0): 82, 68, 55, (373,12,0): 86, 73, 57, (373,13,0): 89, 76, 60, (373,14,0): 89, 76, 60, (373,15,0): 91, 75, 59, (373,16,0): 97, 81, 58, (373,17,0): 99, 81, 57, (373,18,0): 100, 82, 58, (373,19,0): 101, 83, 59, (373,20,0): 101, 83, 59, (373,21,0): 100, 82, 58, (373,22,0): 99, 81, 57, (373,23,0): 98, 80, 56, (373,24,0): 98, 80, 56, (373,25,0): 99, 81, 57, (373,26,0): 100, 82, 58, (373,27,0): 102, 84, 60, (373,28,0): 103, 85, 61, (373,29,0): 105, 87, 63, (373,30,0): 106, 88, 64, (373,31,0): 107, 89, 65, (373,32,0): 107, 89, 65, (373,33,0): 107, 89, 65, (373,34,0): 106, 88, 64, (373,35,0): 106, 88, 64, (373,36,0): 105, 87, 63, (373,37,0): 105, 87, 63, (373,38,0): 104, 86, 62, (373,39,0): 104, 86, 62, (373,40,0): 100, 82, 58, (373,41,0): 101, 83, 59, (373,42,0): 102, 84, 60, (373,43,0): 102, 84, 60, (373,44,0): 101, 83, 59, (373,45,0): 99, 81, 57, (373,46,0): 97, 79, 55, (373,47,0): 95, 77, 53, (373,48,0): 91, 75, 50, (373,49,0): 91, 75, 50, (373,50,0): 90, 74, 49, (373,51,0): 89, 73, 48, (373,52,0): 89, 73, 48, (373,53,0): 88, 72, 47, (373,54,0): 87, 71, 48, (373,55,0): 87, 71, 48, (373,56,0): 87, 70, 50, (373,57,0): 83, 66, 46, (373,58,0): 78, 61, 43, (373,59,0): 73, 56, 38, (373,60,0): 71, 54, 36, (373,61,0): 72, 55, 37, (373,62,0): 74, 57, 39, (373,63,0): 76, 59, 41, (373,64,0): 76, 60, 44, (373,65,0): 76, 60, 44, (373,66,0): 77, 61, 45, (373,67,0): 77, 61, 45, (373,68,0): 78, 62, 46, (373,69,0): 78, 62, 46, (373,70,0): 79, 63, 47, (373,71,0): 79, 63, 47, (373,72,0): 71, 55, 39, (373,73,0): 71, 55, 39, (373,74,0): 72, 56, 40, (373,75,0): 73, 57, 41, (373,76,0): 74, 58, 42, (373,77,0): 75, 59, 43, (373,78,0): 75, 59, 43, (373,79,0): 76, 61, 42, (373,80,0): 70, 53, 33, (373,81,0): 70, 52, 32, (373,82,0): 69, 51, 31, (373,83,0): 67, 49, 29, (373,84,0): 66, 48, 28, (373,85,0): 66, 48, 28, (373,86,0): 66, 48, 28, (373,87,0): 66, 48, 28, (373,88,0): 67, 49, 29, (373,89,0): 68, 50, 30, (373,90,0): 70, 52, 32, (373,91,0): 71, 53, 33, (373,92,0): 73, 55, 35, (373,93,0): 75, 57, 37, (373,94,0): 77, 59, 39, (373,95,0): 77, 58, 41, (373,96,0): 80, 61, 46, (373,97,0): 80, 61, 47, (373,98,0): 81, 62, 48, (373,99,0): 81, 62, 48, (373,100,0): 82, 63, 48, (373,101,0): 83, 64, 49, (373,102,0): 84, 65, 48, (373,103,0): 84, 66, 46, (373,104,0): 88, 70, 50, (373,105,0): 88, 70, 48, (373,106,0): 90, 72, 48, (373,107,0): 93, 76, 50, (373,108,0): 96, 79, 53, (373,109,0): 101, 84, 58, (373,110,0): 104, 87, 61, (373,111,0): 107, 90, 62, (373,112,0): 115, 96, 64, (373,113,0): 116, 97, 64, (373,114,0): 118, 99, 66, (373,115,0): 121, 102, 69, (373,116,0): 123, 107, 73, (373,117,0): 127, 111, 77, (373,118,0): 129, 115, 80, (373,119,0): 132, 117, 84, (373,120,0): 139, 124, 91, (373,121,0): 140, 125, 94, (373,122,0): 141, 128, 96, (373,123,0): 144, 131, 99, (373,124,0): 143, 132, 100, (373,125,0): 144, 133, 101, (373,126,0): 144, 133, 101, (373,127,0): 146, 132, 103, (373,128,0): 154, 137, 111, (373,129,0): 153, 133, 108, (373,130,0): 149, 131, 107, (373,131,0): 147, 131, 106, (373,132,0): 149, 137, 113, (373,133,0): 157, 147, 122, (373,134,0): 163, 157, 133, (373,135,0): 165, 165, 139, (373,136,0): 171, 175, 150, (373,137,0): 170, 178, 154, (373,138,0): 170, 184, 159, (373,139,0): 170, 188, 162, (373,140,0): 171, 191, 166, (373,141,0): 170, 193, 167, (373,142,0): 168, 192, 166, (373,143,0): 164, 192, 167, (373,144,0): 167, 199, 175, (373,145,0): 167, 201, 177, (373,146,0): 168, 201, 180, (373,147,0): 168, 203, 181, (373,148,0): 168, 203, 183, (373,149,0): 165, 202, 184, (373,150,0): 163, 202, 184, (373,151,0): 160, 201, 185, (373,152,0): 159, 200, 186, (373,153,0): 158, 200, 188, (373,154,0): 157, 200, 191, (373,155,0): 155, 201, 191, (373,156,0): 154, 201, 193, (373,157,0): 154, 201, 195, (373,158,0): 154, 200, 197, (373,159,0): 154, 201, 195, (373,160,0): 156, 201, 194, (373,161,0): 156, 202, 192, (373,162,0): 156, 202, 192, (373,163,0): 155, 201, 191, (373,164,0): 154, 201, 193, (373,165,0): 153, 200, 192, (373,166,0): 153, 199, 196, (373,167,0): 152, 198, 195, (373,168,0): 150, 199, 196, (373,169,0): 151, 200, 197, (373,170,0): 151, 201, 202, (373,171,0): 151, 201, 202, (373,172,0): 151, 200, 204, (373,173,0): 151, 200, 204, (373,174,0): 149, 200, 203, (373,175,0): 148, 199, 203, (373,176,0): 148, 198, 205, (373,177,0): 148, 198, 205, (373,178,0): 148, 198, 207, (373,179,0): 148, 198, 207, (373,180,0): 148, 198, 207, (373,181,0): 148, 198, 207, (373,182,0): 148, 198, 209, (373,183,0): 148, 198, 209, (373,184,0): 147, 197, 208, (373,185,0): 147, 196, 210, (373,186,0): 147, 196, 210, (373,187,0): 147, 196, 211, (373,188,0): 147, 196, 211, (373,189,0): 147, 196, 211, (373,190,0): 147, 196, 211, (373,191,0): 145, 196, 213, (373,192,0): 144, 195, 216, (373,193,0): 143, 195, 216, (373,194,0): 143, 195, 216, (373,195,0): 144, 196, 217, (373,196,0): 144, 196, 218, (373,197,0): 144, 196, 218, (373,198,0): 145, 197, 219, (373,199,0): 145, 197, 221, (373,200,0): 146, 198, 222, (373,201,0): 146, 198, 222, (373,202,0): 146, 197, 224, (373,203,0): 146, 197, 224, (373,204,0): 145, 196, 223, (373,205,0): 145, 196, 225, (373,206,0): 144, 195, 224, (373,207,0): 144, 195, 224, (373,208,0): 145, 198, 229, (373,209,0): 143, 196, 227, (373,210,0): 141, 194, 225, (373,211,0): 142, 193, 224, (373,212,0): 142, 193, 224, (373,213,0): 144, 195, 226, (373,214,0): 146, 197, 228, (373,215,0): 148, 197, 229, (373,216,0): 149, 198, 230, (373,217,0): 151, 197, 230, (373,218,0): 152, 198, 231, (373,219,0): 153, 199, 232, (373,220,0): 154, 200, 233, (373,221,0): 156, 201, 234, (373,222,0): 157, 202, 235, (373,223,0): 158, 201, 236, (373,224,0): 161, 199, 238, (373,225,0): 164, 199, 239, (373,226,0): 165, 200, 240, (373,227,0): 166, 201, 241, (373,228,0): 166, 201, 243, (373,229,0): 165, 200, 242, (373,230,0): 165, 198, 241, (373,231,0): 165, 198, 241, (373,232,0): 166, 197, 243, (373,233,0): 166, 197, 243, (373,234,0): 168, 196, 244, (373,235,0): 168, 196, 244, (373,236,0): 168, 196, 244, (373,237,0): 168, 196, 244, (373,238,0): 168, 196, 244, (373,239,0): 165, 197, 246, (373,240,0): 157, 197, 246, (373,241,0): 154, 198, 245, (373,242,0): 153, 197, 246, (373,243,0): 152, 196, 245, (373,244,0): 151, 195, 244, (373,245,0): 152, 196, 245, (373,246,0): 152, 196, 245, (373,247,0): 151, 197, 246, (373,248,0): 152, 196, 245, (373,249,0): 151, 197, 246, (373,250,0): 152, 198, 247, (373,251,0): 153, 199, 248, (373,252,0): 154, 200, 249, (373,253,0): 155, 201, 250, (373,254,0): 154, 200, 249, (373,255,0): 153, 201, 250, (373,256,0): 153, 203, 254, (373,257,0): 152, 204, 254, (373,258,0): 152, 203, 255, (373,259,0): 152, 204, 254, (373,260,0): 152, 203, 255, (373,261,0): 152, 204, 254, (373,262,0): 152, 203, 255, (373,263,0): 152, 204, 254, (373,264,0): 151, 202, 255, (373,265,0): 151, 203, 253, (373,266,0): 152, 203, 255, (373,267,0): 153, 205, 255, (373,268,0): 152, 203, 255, (373,269,0): 151, 203, 253, (373,270,0): 150, 201, 254, (373,271,0): 149, 201, 251, (373,272,0): 149, 202, 254, (373,273,0): 149, 202, 254, (373,274,0): 149, 202, 254, (373,275,0): 149, 202, 254, (373,276,0): 149, 202, 254, (373,277,0): 149, 202, 255, (373,278,0): 149, 202, 255, (373,279,0): 148, 201, 255, (373,280,0): 146, 198, 255, (373,281,0): 146, 198, 255, (373,282,0): 146, 198, 255, (373,283,0): 145, 197, 254, (373,284,0): 145, 197, 255, (373,285,0): 144, 196, 254, (373,286,0): 144, 196, 254, (373,287,0): 144, 196, 254, (373,288,0): 143, 195, 252, (373,289,0): 143, 195, 252, (373,290,0): 141, 196, 252, (373,291,0): 141, 196, 252, (373,292,0): 140, 196, 253, (373,293,0): 140, 196, 253, (373,294,0): 140, 196, 253, (373,295,0): 141, 196, 253, (373,296,0): 143, 195, 253, (373,297,0): 143, 193, 252, (373,298,0): 145, 191, 251, (373,299,0): 145, 190, 249, (373,300,0): 147, 189, 249, (373,301,0): 149, 189, 250, (373,302,0): 151, 189, 251, (373,303,0): 155, 189, 252, (373,304,0): 155, 185, 249, (373,305,0): 162, 186, 246, (373,306,0): 161, 178, 232, (373,307,0): 150, 158, 205, (373,308,0): 134, 134, 172, (373,309,0): 117, 110, 141, (373,310,0): 97, 87, 111, (373,311,0): 82, 71, 88, (373,312,0): 71, 63, 78, (373,313,0): 71, 65, 75, (373,314,0): 73, 70, 79, (373,315,0): 81, 78, 85, (373,316,0): 92, 87, 93, (373,317,0): 102, 93, 98, (373,318,0): 105, 94, 98, (373,319,0): 108, 93, 96, (373,320,0): 101, 82, 86, (373,321,0): 98, 78, 80, (373,322,0): 90, 70, 72, (373,323,0): 82, 62, 64, (373,324,0): 75, 54, 59, (373,325,0): 71, 50, 55, (373,326,0): 69, 48, 55, (373,327,0): 68, 47, 54, (373,328,0): 64, 43, 50, (373,329,0): 63, 42, 49, (373,330,0): 61, 40, 49, (373,331,0): 60, 39, 48, (373,332,0): 60, 38, 50, (373,333,0): 60, 38, 50, (373,334,0): 61, 39, 51, (373,335,0): 62, 40, 52, (373,336,0): 63, 41, 53, (373,337,0): 63, 41, 53, (373,338,0): 64, 43, 52, (373,339,0): 66, 43, 51, (373,340,0): 70, 45, 51, (373,341,0): 74, 48, 51, (373,342,0): 79, 49, 49, (373,343,0): 84, 50, 48, (373,344,0): 87, 50, 44, (373,345,0): 96, 53, 46, (373,346,0): 107, 57, 50, (373,347,0): 118, 61, 52, (373,348,0): 125, 62, 53, (373,349,0): 128, 62, 50, (373,350,0): 129, 59, 49, (373,351,0): 126, 58, 49, (373,352,0): 116, 53, 48, (373,353,0): 111, 52, 48, (373,354,0): 109, 50, 46, (373,355,0): 108, 50, 46, (373,356,0): 108, 50, 48, (373,357,0): 105, 50, 47, (373,358,0): 100, 46, 44, (373,359,0): 97, 43, 41, (373,360,0): 91, 40, 37, (373,361,0): 90, 39, 36, (373,362,0): 91, 37, 37, (373,363,0): 92, 36, 37, (373,364,0): 92, 36, 37, (373,365,0): 93, 37, 38, (373,366,0): 97, 38, 42, (373,367,0): 94, 39, 42, (373,368,0): 84, 38, 40, (373,369,0): 80, 38, 39, (373,370,0): 77, 35, 37, (373,371,0): 75, 33, 35, (373,372,0): 73, 31, 33, (373,373,0): 72, 30, 32, (373,374,0): 71, 30, 34, (373,375,0): 71, 30, 34, (373,376,0): 71, 32, 37, (373,377,0): 71, 32, 37, (373,378,0): 68, 32, 36, (373,379,0): 68, 32, 36, (373,380,0): 67, 30, 37, (373,381,0): 67, 30, 37, (373,382,0): 66, 29, 36, (373,383,0): 68, 29, 34, (373,384,0): 70, 29, 33, (373,385,0): 71, 31, 32, (373,386,0): 71, 31, 32, (373,387,0): 70, 31, 32, (373,388,0): 69, 30, 33, (373,389,0): 65, 29, 31, (373,390,0): 63, 27, 29, (373,391,0): 61, 27, 28, (373,392,0): 57, 25, 28, (373,393,0): 56, 26, 28, (373,394,0): 55, 24, 29, (373,395,0): 54, 25, 29, (373,396,0): 53, 24, 28, (373,397,0): 51, 25, 28, (373,398,0): 50, 23, 28, (373,399,0): 50, 23, 28, (373,400,0): 49, 24, 28, (373,401,0): 50, 25, 29, (373,402,0): 52, 27, 31, (373,403,0): 53, 28, 32, (373,404,0): 54, 29, 33, (373,405,0): 53, 28, 32, (373,406,0): 52, 27, 31, (373,407,0): 52, 27, 31, (373,408,0): 51, 26, 30, (373,409,0): 50, 25, 29, (373,410,0): 49, 24, 28, (373,411,0): 47, 22, 26, (373,412,0): 47, 22, 26, (373,413,0): 47, 22, 26, (373,414,0): 48, 23, 27, (373,415,0): 48, 23, 27, (373,416,0): 46, 24, 26, (373,417,0): 46, 24, 26, (373,418,0): 46, 24, 26, (373,419,0): 46, 24, 26, (373,420,0): 46, 24, 26, (373,421,0): 46, 24, 26, (373,422,0): 46, 24, 27, (373,423,0): 46, 24, 27, (373,424,0): 45, 22, 28, (373,425,0): 46, 23, 29, (373,426,0): 46, 23, 29, (373,427,0): 46, 23, 29, (373,428,0): 47, 24, 32, (373,429,0): 47, 24, 32, (373,430,0): 48, 25, 33, (373,431,0): 47, 26, 33, (373,432,0): 47, 28, 32, (373,433,0): 44, 28, 31, (373,434,0): 45, 26, 30, (373,435,0): 45, 26, 30, (373,436,0): 47, 26, 31, (373,437,0): 49, 28, 33, (373,438,0): 52, 32, 34, (373,439,0): 53, 33, 35, (373,440,0): 50, 30, 32, (373,441,0): 48, 30, 30, (373,442,0): 46, 30, 30, (373,443,0): 47, 32, 29, (373,444,0): 48, 34, 31, (373,445,0): 48, 37, 33, (373,446,0): 49, 40, 35, (373,447,0): 49, 41, 38, (373,448,0): 45, 40, 37, (373,449,0): 40, 36, 33, (373,450,0): 37, 33, 30, (373,451,0): 42, 38, 35, (373,452,0): 50, 45, 42, (373,453,0): 55, 50, 47, (373,454,0): 54, 46, 44, (373,455,0): 50, 42, 40, (373,456,0): 45, 37, 35, (373,457,0): 46, 38, 36, (373,458,0): 48, 40, 38, (373,459,0): 50, 40, 39, (373,460,0): 50, 40, 39, (373,461,0): 49, 39, 38, (373,462,0): 48, 38, 37, (373,463,0): 47, 37, 36, (373,464,0): 53, 43, 42, (373,465,0): 57, 47, 45, (373,466,0): 64, 52, 52, (373,467,0): 71, 61, 59, (373,468,0): 78, 68, 66, (373,469,0): 83, 75, 72, (373,470,0): 87, 79, 76, (373,471,0): 89, 82, 76, (373,472,0): 89, 82, 74, (373,473,0): 88, 79, 72, (373,474,0): 86, 77, 68, (373,475,0): 82, 73, 64, (373,476,0): 77, 67, 58, (373,477,0): 72, 62, 53, (373,478,0): 67, 57, 48, (373,479,0): 64, 54, 44, (373,480,0): 66, 54, 42, (373,481,0): 65, 53, 39, (373,482,0): 65, 51, 38, (373,483,0): 64, 50, 37, (373,484,0): 64, 50, 37, (373,485,0): 67, 53, 40, (373,486,0): 71, 55, 42, (373,487,0): 73, 57, 44, (373,488,0): 78, 60, 48, (373,489,0): 79, 61, 49, (373,490,0): 80, 62, 50, (373,491,0): 79, 61, 49, (373,492,0): 78, 58, 47, (373,493,0): 74, 54, 43, (373,494,0): 71, 51, 40, (373,495,0): 69, 49, 38, (373,496,0): 61, 41, 34, (373,497,0): 59, 39, 32, (373,498,0): 57, 36, 31, (373,499,0): 55, 34, 29, (373,500,0): 54, 33, 28, (373,501,0): 53, 32, 27, (373,502,0): 53, 32, 29, (373,503,0): 54, 33, 30, (373,504,0): 53, 32, 31, (373,505,0): 53, 32, 31, (373,506,0): 54, 33, 32, (373,507,0): 53, 32, 31, (373,508,0): 52, 30, 32, (373,509,0): 50, 28, 30, (373,510,0): 48, 26, 28, (373,511,0): 46, 24, 27, (373,512,0): 45, 24, 29, (373,513,0): 44, 23, 30, (373,514,0): 42, 21, 30, (373,515,0): 41, 20, 29, (373,516,0): 40, 20, 31, (373,517,0): 40, 20, 31, (373,518,0): 41, 21, 33, (373,519,0): 41, 21, 33, (373,520,0): 39, 22, 32, (373,521,0): 39, 22, 30, (373,522,0): 38, 23, 30, (373,523,0): 39, 24, 27, (373,524,0): 40, 25, 28, (373,525,0): 42, 28, 27, (373,526,0): 43, 32, 30, (373,527,0): 44, 33, 29, (373,528,0): 52, 38, 37, (373,529,0): 53, 37, 37, (373,530,0): 53, 39, 39, (373,531,0): 55, 41, 40, (373,532,0): 57, 46, 44, (373,533,0): 60, 49, 47, (373,534,0): 63, 53, 51, (373,535,0): 65, 56, 51, (373,536,0): 66, 57, 52, (373,537,0): 67, 58, 53, (373,538,0): 70, 59, 53, (373,539,0): 71, 60, 54, (373,540,0): 74, 61, 55, (373,541,0): 73, 60, 54, (373,542,0): 74, 59, 52, (373,543,0): 72, 59, 51, (373,544,0): 75, 62, 54, (373,545,0): 72, 59, 51, (373,546,0): 68, 55, 47, (373,547,0): 64, 51, 43, (373,548,0): 63, 50, 42, (373,549,0): 67, 52, 45, (373,550,0): 70, 55, 48, (373,551,0): 73, 58, 51, (373,552,0): 79, 62, 55, (373,553,0): 80, 63, 56, (373,554,0): 79, 62, 55, (373,555,0): 75, 56, 50, (373,556,0): 68, 49, 43, (373,557,0): 62, 43, 37, (373,558,0): 58, 39, 33, (373,559,0): 57, 38, 34, (373,560,0): 55, 34, 33, (373,561,0): 52, 32, 31, (373,562,0): 48, 26, 29, (373,563,0): 43, 23, 25, (373,564,0): 40, 19, 26, (373,565,0): 37, 18, 24, (373,566,0): 35, 18, 28, (373,567,0): 34, 18, 28, (373,568,0): 37, 21, 32, (373,569,0): 37, 24, 34, (373,570,0): 37, 26, 34, (373,571,0): 36, 25, 33, (373,572,0): 33, 24, 29, (373,573,0): 34, 25, 30, (373,574,0): 38, 29, 32, (373,575,0): 41, 32, 33, (373,576,0): 40, 30, 31, (373,577,0): 40, 30, 29, (373,578,0): 40, 30, 29, (373,579,0): 39, 31, 29, (373,580,0): 39, 31, 29, (373,581,0): 39, 34, 31, (373,582,0): 40, 35, 32, (373,583,0): 41, 36, 33, (373,584,0): 44, 39, 36, (373,585,0): 46, 38, 36, (373,586,0): 48, 38, 37, (373,587,0): 50, 38, 38, (373,588,0): 52, 38, 38, (373,589,0): 54, 38, 39, (373,590,0): 57, 38, 40, (373,591,0): 55, 39, 42, (373,592,0): 54, 41, 48, (373,593,0): 52, 41, 49, (373,594,0): 50, 39, 47, (373,595,0): 48, 37, 45, (373,596,0): 46, 35, 43, (373,597,0): 44, 33, 41, (373,598,0): 43, 32, 40, (373,599,0): 42, 31, 39, (374,0,0): 73, 58, 51, (374,1,0): 74, 59, 52, (374,2,0): 74, 60, 51, (374,3,0): 74, 60, 51, (374,4,0): 75, 61, 52, (374,5,0): 76, 62, 53, (374,6,0): 76, 62, 51, (374,7,0): 76, 62, 51, (374,8,0): 81, 67, 54, (374,9,0): 79, 65, 52, (374,10,0): 79, 65, 52, (374,11,0): 82, 68, 55, (374,12,0): 86, 73, 57, (374,13,0): 89, 76, 60, (374,14,0): 89, 76, 60, (374,15,0): 89, 73, 57, (374,16,0): 97, 81, 58, (374,17,0): 98, 82, 57, (374,18,0): 99, 83, 58, (374,19,0): 100, 84, 59, (374,20,0): 100, 84, 59, (374,21,0): 99, 83, 58, (374,22,0): 98, 82, 57, (374,23,0): 98, 82, 57, (374,24,0): 97, 81, 56, (374,25,0): 98, 82, 57, (374,26,0): 99, 83, 58, (374,27,0): 101, 85, 60, (374,28,0): 102, 86, 61, (374,29,0): 104, 88, 63, (374,30,0): 105, 89, 64, (374,31,0): 106, 90, 65, (374,32,0): 106, 90, 65, (374,33,0): 106, 90, 65, (374,34,0): 106, 90, 65, (374,35,0): 106, 90, 65, (374,36,0): 105, 89, 64, (374,37,0): 105, 89, 64, (374,38,0): 105, 89, 64, (374,39,0): 104, 88, 63, (374,40,0): 100, 84, 59, (374,41,0): 100, 84, 59, (374,42,0): 100, 84, 59, (374,43,0): 101, 85, 60, (374,44,0): 101, 85, 60, (374,45,0): 100, 84, 59, (374,46,0): 100, 84, 59, (374,47,0): 100, 84, 59, (374,48,0): 95, 79, 53, (374,49,0): 95, 79, 53, (374,50,0): 94, 78, 52, (374,51,0): 92, 76, 50, (374,52,0): 91, 75, 50, (374,53,0): 90, 74, 49, (374,54,0): 89, 73, 48, (374,55,0): 88, 72, 47, (374,56,0): 87, 71, 48, (374,57,0): 84, 68, 45, (374,58,0): 79, 62, 42, (374,59,0): 75, 58, 38, (374,60,0): 72, 55, 35, (374,61,0): 72, 55, 35, (374,62,0): 73, 56, 38, (374,63,0): 74, 57, 39, (374,64,0): 73, 57, 41, (374,65,0): 73, 57, 42, (374,66,0): 74, 58, 43, (374,67,0): 74, 58, 43, (374,68,0): 75, 59, 43, (374,69,0): 76, 60, 44, (374,70,0): 76, 60, 44, (374,71,0): 76, 60, 44, (374,72,0): 72, 57, 38, (374,73,0): 72, 57, 38, (374,74,0): 72, 57, 38, (374,75,0): 72, 57, 38, (374,76,0): 73, 58, 39, (374,77,0): 73, 58, 39, (374,78,0): 73, 58, 39, (374,79,0): 74, 59, 38, (374,80,0): 74, 57, 37, (374,81,0): 72, 55, 35, (374,82,0): 70, 53, 33, (374,83,0): 67, 50, 30, (374,84,0): 66, 49, 29, (374,85,0): 66, 49, 29, (374,86,0): 66, 49, 29, (374,87,0): 66, 49, 29, (374,88,0): 66, 49, 29, (374,89,0): 67, 50, 30, (374,90,0): 68, 51, 31, (374,91,0): 69, 52, 32, (374,92,0): 70, 53, 33, (374,93,0): 72, 55, 35, (374,94,0): 73, 56, 36, (374,95,0): 73, 56, 38, (374,96,0): 74, 57, 41, (374,97,0): 74, 56, 42, (374,98,0): 75, 57, 43, (374,99,0): 76, 58, 44, (374,100,0): 77, 60, 44, (374,101,0): 79, 62, 46, (374,102,0): 80, 63, 45, (374,103,0): 80, 63, 43, (374,104,0): 83, 66, 46, (374,105,0): 84, 68, 45, (374,106,0): 85, 69, 46, (374,107,0): 88, 72, 47, (374,108,0): 91, 75, 50, (374,109,0): 95, 79, 54, (374,110,0): 99, 83, 58, (374,111,0): 101, 85, 59, (374,112,0): 105, 88, 58, (374,113,0): 106, 90, 57, (374,114,0): 107, 91, 58, (374,115,0): 110, 94, 61, (374,116,0): 113, 97, 64, (374,117,0): 118, 102, 69, (374,118,0): 122, 106, 73, (374,119,0): 125, 108, 78, (374,120,0): 130, 113, 83, (374,121,0): 131, 114, 86, (374,122,0): 132, 115, 87, (374,123,0): 133, 116, 88, (374,124,0): 134, 117, 89, (374,125,0): 133, 116, 88, (374,126,0): 132, 115, 87, (374,127,0): 134, 114, 87, (374,128,0): 138, 114, 90, (374,129,0): 138, 111, 90, (374,130,0): 136, 111, 89, (374,131,0): 135, 113, 90, (374,132,0): 136, 118, 96, (374,133,0): 141, 125, 102, (374,134,0): 143, 131, 109, (374,135,0): 144, 136, 113, (374,136,0): 158, 153, 131, (374,137,0): 159, 161, 137, (374,138,0): 167, 171, 148, (374,139,0): 173, 181, 157, (374,140,0): 178, 188, 164, (374,141,0): 177, 191, 166, (374,142,0): 175, 191, 165, (374,143,0): 171, 191, 166, (374,144,0): 173, 198, 176, (374,145,0): 171, 200, 178, (374,146,0): 170, 202, 181, (374,147,0): 170, 202, 181, (374,148,0): 170, 201, 183, (374,149,0): 169, 202, 185, (374,150,0): 165, 202, 185, (374,151,0): 163, 201, 186, (374,152,0): 160, 201, 187, (374,153,0): 159, 201, 189, (374,154,0): 158, 201, 192, (374,155,0): 156, 202, 192, (374,156,0): 155, 202, 194, (374,157,0): 155, 202, 194, (374,158,0): 153, 202, 196, (374,159,0): 155, 202, 196, (374,160,0): 157, 202, 195, (374,161,0): 158, 201, 192, (374,162,0): 156, 202, 192, (374,163,0): 155, 201, 191, (374,164,0): 155, 200, 193, (374,165,0): 154, 199, 192, (374,166,0): 153, 199, 196, (374,167,0): 153, 199, 196, (374,168,0): 150, 199, 196, (374,169,0): 151, 200, 197, (374,170,0): 153, 201, 203, (374,171,0): 154, 202, 204, (374,172,0): 153, 202, 206, (374,173,0): 152, 201, 205, (374,174,0): 150, 199, 203, (374,175,0): 149, 198, 203, (374,176,0): 148, 198, 207, (374,177,0): 148, 198, 207, (374,178,0): 148, 198, 209, (374,179,0): 148, 198, 209, (374,180,0): 148, 198, 209, (374,181,0): 148, 198, 209, (374,182,0): 148, 197, 211, (374,183,0): 148, 197, 211, (374,184,0): 148, 197, 211, (374,185,0): 148, 197, 212, (374,186,0): 148, 197, 212, (374,187,0): 148, 197, 214, (374,188,0): 148, 197, 214, (374,189,0): 148, 197, 214, (374,190,0): 148, 197, 214, (374,191,0): 146, 197, 214, (374,192,0): 143, 194, 215, (374,193,0): 143, 195, 217, (374,194,0): 143, 195, 217, (374,195,0): 144, 196, 218, (374,196,0): 145, 197, 221, (374,197,0): 145, 197, 221, (374,198,0): 146, 198, 222, (374,199,0): 146, 197, 224, (374,200,0): 148, 199, 226, (374,201,0): 147, 198, 225, (374,202,0): 147, 198, 227, (374,203,0): 146, 197, 226, (374,204,0): 145, 196, 225, (374,205,0): 145, 196, 227, (374,206,0): 144, 195, 226, (374,207,0): 144, 195, 226, (374,208,0): 143, 196, 228, (374,209,0): 140, 195, 226, (374,210,0): 139, 194, 225, (374,211,0): 139, 192, 224, (374,212,0): 140, 193, 225, (374,213,0): 143, 196, 228, (374,214,0): 146, 199, 231, (374,215,0): 150, 200, 233, (374,216,0): 149, 199, 232, (374,217,0): 150, 199, 232, (374,218,0): 151, 200, 233, (374,219,0): 152, 201, 234, (374,220,0): 153, 202, 235, (374,221,0): 156, 202, 236, (374,222,0): 157, 203, 237, (374,223,0): 158, 202, 237, (374,224,0): 160, 199, 238, (374,225,0): 162, 199, 241, (374,226,0): 163, 200, 242, (374,227,0): 164, 201, 243, (374,228,0): 166, 201, 243, (374,229,0): 165, 200, 242, (374,230,0): 164, 197, 240, (374,231,0): 163, 196, 239, (374,232,0): 164, 197, 242, (374,233,0): 164, 197, 242, (374,234,0): 166, 197, 243, (374,235,0): 166, 197, 243, (374,236,0): 168, 196, 243, (374,237,0): 168, 196, 243, (374,238,0): 168, 196, 243, (374,239,0): 165, 197, 244, (374,240,0): 160, 198, 245, (374,241,0): 156, 199, 244, (374,242,0): 155, 197, 245, (374,243,0): 153, 195, 243, (374,244,0): 153, 195, 243, (374,245,0): 153, 195, 243, (374,246,0): 153, 195, 243, (374,247,0): 153, 197, 244, (374,248,0): 155, 197, 247, (374,249,0): 154, 198, 247, (374,250,0): 153, 197, 246, (374,251,0): 153, 197, 246, (374,252,0): 153, 197, 246, (374,253,0): 154, 198, 247, (374,254,0): 155, 198, 249, (374,255,0): 154, 200, 250, (374,256,0): 152, 202, 255, (374,257,0): 151, 202, 255, (374,258,0): 151, 202, 255, (374,259,0): 151, 202, 255, (374,260,0): 151, 202, 255, (374,261,0): 151, 202, 255, (374,262,0): 151, 202, 255, (374,263,0): 151, 202, 255, (374,264,0): 148, 199, 254, (374,265,0): 149, 200, 253, (374,266,0): 150, 201, 255, (374,267,0): 151, 202, 255, (374,268,0): 151, 202, 255, (374,269,0): 151, 202, 255, (374,270,0): 150, 201, 255, (374,271,0): 149, 200, 253, (374,272,0): 147, 200, 254, (374,273,0): 147, 200, 254, (374,274,0): 147, 200, 254, (374,275,0): 147, 200, 254, (374,276,0): 148, 201, 255, (374,277,0): 148, 200, 255, (374,278,0): 148, 200, 255, (374,279,0): 148, 200, 255, (374,280,0): 146, 198, 255, (374,281,0): 145, 197, 254, (374,282,0): 145, 197, 254, (374,283,0): 144, 196, 253, (374,284,0): 144, 196, 254, (374,285,0): 143, 195, 253, (374,286,0): 143, 195, 253, (374,287,0): 143, 195, 253, (374,288,0): 142, 194, 251, (374,289,0): 142, 194, 251, (374,290,0): 140, 195, 252, (374,291,0): 140, 195, 252, (374,292,0): 140, 194, 254, (374,293,0): 140, 194, 254, (374,294,0): 140, 194, 254, (374,295,0): 140, 194, 254, (374,296,0): 144, 194, 255, (374,297,0): 144, 193, 252, (374,298,0): 146, 190, 251, (374,299,0): 147, 189, 249, (374,300,0): 149, 187, 249, (374,301,0): 152, 188, 248, (374,302,0): 154, 188, 249, (374,303,0): 158, 188, 250, (374,304,0): 155, 180, 244, (374,305,0): 158, 177, 236, (374,306,0): 150, 162, 214, (374,307,0): 131, 134, 177, (374,308,0): 113, 108, 140, (374,309,0): 100, 90, 114, (374,310,0): 89, 78, 95, (374,311,0): 79, 68, 82, (374,312,0): 70, 64, 74, (374,313,0): 71, 70, 78, (374,314,0): 77, 77, 87, (374,315,0): 88, 86, 97, (374,316,0): 98, 95, 104, (374,317,0): 104, 97, 104, (374,318,0): 106, 93, 100, (374,319,0): 106, 90, 93, (374,320,0): 92, 71, 76, (374,321,0): 90, 67, 73, (374,322,0): 84, 61, 67, (374,323,0): 78, 55, 61, (374,324,0): 72, 49, 57, (374,325,0): 69, 46, 54, (374,326,0): 67, 44, 52, (374,327,0): 66, 43, 51, (374,328,0): 64, 41, 49, (374,329,0): 63, 40, 48, (374,330,0): 62, 39, 47, (374,331,0): 62, 39, 47, (374,332,0): 63, 40, 50, (374,333,0): 64, 41, 51, (374,334,0): 65, 42, 52, (374,335,0): 66, 43, 53, (374,336,0): 64, 43, 52, (374,337,0): 64, 43, 52, (374,338,0): 66, 43, 51, (374,339,0): 69, 44, 48, (374,340,0): 75, 46, 48, (374,341,0): 80, 49, 47, (374,342,0): 85, 50, 46, (374,343,0): 90, 51, 46, (374,344,0): 97, 54, 47, (374,345,0): 104, 57, 49, (374,346,0): 113, 60, 52, (374,347,0): 119, 62, 53, (374,348,0): 121, 61, 53, (374,349,0): 119, 56, 47, (374,350,0): 115, 51, 42, (374,351,0): 110, 47, 40, (374,352,0): 102, 47, 42, (374,353,0): 100, 47, 43, (374,354,0): 100, 47, 43, (374,355,0): 103, 50, 46, (374,356,0): 106, 53, 49, (374,357,0): 106, 53, 49, (374,358,0): 102, 51, 47, (374,359,0): 99, 48, 44, (374,360,0): 95, 41, 39, (374,361,0): 94, 40, 38, (374,362,0): 93, 37, 36, (374,363,0): 92, 36, 35, (374,364,0): 94, 36, 35, (374,365,0): 94, 36, 35, (374,366,0): 97, 37, 39, (374,367,0): 93, 39, 39, (374,368,0): 83, 37, 37, (374,369,0): 79, 37, 38, (374,370,0): 76, 34, 36, (374,371,0): 74, 32, 34, (374,372,0): 72, 30, 32, (374,373,0): 72, 30, 32, (374,374,0): 71, 30, 34, (374,375,0): 72, 31, 35, (374,376,0): 71, 32, 37, (374,377,0): 71, 32, 37, (374,378,0): 68, 32, 36, (374,379,0): 68, 32, 36, (374,380,0): 67, 30, 37, (374,381,0): 67, 30, 37, (374,382,0): 66, 29, 36, (374,383,0): 66, 30, 34, (374,384,0): 69, 30, 33, (374,385,0): 69, 30, 31, (374,386,0): 70, 31, 34, (374,387,0): 69, 30, 33, (374,388,0): 68, 29, 32, (374,389,0): 64, 28, 30, (374,390,0): 61, 26, 30, (374,391,0): 58, 26, 29, (374,392,0): 56, 24, 29, (374,393,0): 54, 23, 28, (374,394,0): 53, 24, 28, (374,395,0): 51, 25, 28, (374,396,0): 50, 23, 28, (374,397,0): 49, 24, 28, (374,398,0): 49, 24, 28, (374,399,0): 49, 24, 28, (374,400,0): 49, 24, 28, (374,401,0): 50, 25, 29, (374,402,0): 52, 27, 31, (374,403,0): 53, 28, 32, (374,404,0): 54, 29, 33, (374,405,0): 54, 29, 33, (374,406,0): 53, 28, 32, (374,407,0): 53, 28, 32, (374,408,0): 51, 26, 30, (374,409,0): 50, 25, 29, (374,410,0): 48, 23, 27, (374,411,0): 46, 21, 25, (374,412,0): 46, 21, 25, (374,413,0): 46, 21, 25, (374,414,0): 47, 22, 26, (374,415,0): 48, 23, 27, (374,416,0): 46, 24, 27, (374,417,0): 45, 25, 27, (374,418,0): 45, 25, 27, (374,419,0): 45, 25, 27, (374,420,0): 45, 25, 27, (374,421,0): 45, 25, 27, (374,422,0): 45, 25, 27, (374,423,0): 45, 25, 27, (374,424,0): 46, 25, 30, (374,425,0): 46, 25, 30, (374,426,0): 46, 25, 30, (374,427,0): 47, 26, 31, (374,428,0): 48, 27, 32, (374,429,0): 48, 27, 32, (374,430,0): 49, 28, 33, (374,431,0): 49, 28, 33, (374,432,0): 47, 28, 34, (374,433,0): 45, 28, 34, (374,434,0): 45, 28, 34, (374,435,0): 45, 28, 34, (374,436,0): 48, 29, 33, (374,437,0): 50, 31, 35, (374,438,0): 51, 32, 34, (374,439,0): 52, 33, 35, (374,440,0): 49, 31, 31, (374,441,0): 49, 31, 29, (374,442,0): 47, 32, 29, (374,443,0): 48, 33, 28, (374,444,0): 49, 36, 30, (374,445,0): 52, 39, 33, (374,446,0): 53, 42, 36, (374,447,0): 53, 44, 39, (374,448,0): 44, 39, 35, (374,449,0): 40, 36, 33, (374,450,0): 38, 34, 31, (374,451,0): 40, 36, 33, (374,452,0): 45, 41, 38, (374,453,0): 47, 43, 40, (374,454,0): 46, 41, 38, (374,455,0): 43, 38, 35, (374,456,0): 43, 38, 35, (374,457,0): 45, 40, 37, (374,458,0): 49, 44, 41, (374,459,0): 53, 45, 43, (374,460,0): 53, 45, 43, (374,461,0): 50, 42, 40, (374,462,0): 47, 39, 37, (374,463,0): 44, 36, 34, (374,464,0): 52, 44, 42, (374,465,0): 56, 48, 46, (374,466,0): 64, 54, 55, (374,467,0): 72, 64, 62, (374,468,0): 80, 72, 70, (374,469,0): 85, 80, 76, (374,470,0): 90, 85, 81, (374,471,0): 93, 88, 82, (374,472,0): 90, 86, 77, (374,473,0): 91, 84, 76, (374,474,0): 88, 81, 71, (374,475,0): 85, 76, 67, (374,476,0): 81, 71, 61, (374,477,0): 76, 66, 56, (374,478,0): 73, 60, 51, (374,479,0): 71, 58, 49, (374,480,0): 66, 54, 42, (374,481,0): 65, 53, 39, (374,482,0): 64, 52, 38, (374,483,0): 64, 52, 38, (374,484,0): 65, 53, 39, (374,485,0): 68, 56, 42, (374,486,0): 73, 59, 46, (374,487,0): 76, 62, 49, (374,488,0): 77, 61, 48, (374,489,0): 79, 63, 50, (374,490,0): 81, 63, 51, (374,491,0): 82, 64, 52, (374,492,0): 81, 63, 51, (374,493,0): 78, 60, 48, (374,494,0): 74, 56, 44, (374,495,0): 72, 54, 42, (374,496,0): 65, 45, 38, (374,497,0): 64, 44, 37, (374,498,0): 61, 40, 35, (374,499,0): 59, 38, 33, (374,500,0): 57, 36, 31, (374,501,0): 56, 35, 30, (374,502,0): 56, 35, 32, (374,503,0): 56, 35, 32, (374,504,0): 57, 36, 35, (374,505,0): 57, 36, 35, (374,506,0): 56, 35, 34, (374,507,0): 55, 34, 33, (374,508,0): 53, 31, 33, (374,509,0): 51, 29, 31, (374,510,0): 48, 26, 28, (374,511,0): 47, 25, 28, (374,512,0): 45, 24, 29, (374,513,0): 44, 23, 30, (374,514,0): 42, 21, 30, (374,515,0): 41, 20, 29, (374,516,0): 39, 19, 30, (374,517,0): 39, 19, 30, (374,518,0): 40, 20, 32, (374,519,0): 41, 21, 33, (374,520,0): 39, 22, 32, (374,521,0): 39, 22, 30, (374,522,0): 38, 23, 30, (374,523,0): 39, 24, 27, (374,524,0): 41, 26, 29, (374,525,0): 43, 29, 28, (374,526,0): 44, 33, 31, (374,527,0): 45, 34, 30, (374,528,0): 51, 37, 34, (374,529,0): 52, 38, 35, (374,530,0): 53, 39, 38, (374,531,0): 55, 41, 38, (374,532,0): 57, 46, 42, (374,533,0): 61, 50, 46, (374,534,0): 64, 53, 49, (374,535,0): 67, 56, 52, (374,536,0): 68, 57, 53, (374,537,0): 69, 58, 52, (374,538,0): 71, 60, 54, (374,539,0): 72, 61, 55, (374,540,0): 74, 61, 55, (374,541,0): 74, 61, 55, (374,542,0): 73, 60, 54, (374,543,0): 73, 60, 54, (374,544,0): 76, 65, 59, (374,545,0): 72, 61, 55, (374,546,0): 66, 55, 49, (374,547,0): 61, 50, 44, (374,548,0): 60, 49, 43, (374,549,0): 63, 50, 44, (374,550,0): 67, 54, 48, (374,551,0): 69, 56, 50, (374,552,0): 73, 58, 53, (374,553,0): 76, 61, 56, (374,554,0): 78, 63, 58, (374,555,0): 78, 60, 56, (374,556,0): 71, 53, 49, (374,557,0): 65, 47, 43, (374,558,0): 60, 42, 38, (374,559,0): 59, 41, 37, (374,560,0): 56, 36, 35, (374,561,0): 52, 34, 32, (374,562,0): 48, 28, 30, (374,563,0): 42, 23, 25, (374,564,0): 38, 19, 25, (374,565,0): 35, 18, 24, (374,566,0): 35, 18, 28, (374,567,0): 34, 18, 28, (374,568,0): 37, 21, 32, (374,569,0): 37, 24, 34, (374,570,0): 37, 26, 34, (374,571,0): 35, 24, 32, (374,572,0): 33, 22, 28, (374,573,0): 33, 22, 28, (374,574,0): 35, 26, 29, (374,575,0): 39, 29, 30, (374,576,0): 39, 27, 29, (374,577,0): 39, 27, 27, (374,578,0): 38, 26, 26, (374,579,0): 38, 28, 27, (374,580,0): 39, 29, 28, (374,581,0): 40, 32, 30, (374,582,0): 43, 35, 33, (374,583,0): 44, 36, 34, (374,584,0): 48, 40, 38, (374,585,0): 50, 40, 39, (374,586,0): 51, 39, 39, (374,587,0): 53, 39, 39, (374,588,0): 54, 38, 39, (374,589,0): 56, 37, 39, (374,590,0): 58, 38, 40, (374,591,0): 57, 38, 42, (374,592,0): 54, 41, 48, (374,593,0): 52, 41, 49, (374,594,0): 50, 39, 47, (374,595,0): 48, 37, 45, (374,596,0): 46, 35, 43, (374,597,0): 43, 32, 40, (374,598,0): 42, 31, 39, (374,599,0): 41, 30, 38, (375,0,0): 74, 59, 52, (375,1,0): 75, 60, 53, (375,2,0): 75, 61, 52, (375,3,0): 75, 61, 52, (375,4,0): 76, 62, 53, (375,5,0): 76, 62, 53, (375,6,0): 77, 63, 52, (375,7,0): 77, 63, 52, (375,8,0): 81, 67, 54, (375,9,0): 79, 65, 52, (375,10,0): 78, 64, 51, (375,11,0): 81, 67, 54, (375,12,0): 86, 73, 57, (375,13,0): 89, 76, 60, (375,14,0): 88, 75, 59, (375,15,0): 86, 73, 56, (375,16,0): 95, 80, 57, (375,17,0): 97, 81, 56, (375,18,0): 99, 83, 58, (375,19,0): 100, 84, 59, (375,20,0): 100, 84, 59, (375,21,0): 99, 83, 58, (375,22,0): 99, 83, 58, (375,23,0): 98, 82, 57, (375,24,0): 97, 81, 56, (375,25,0): 98, 82, 57, (375,26,0): 99, 83, 58, (375,27,0): 101, 85, 60, (375,28,0): 102, 86, 61, (375,29,0): 104, 88, 63, (375,30,0): 105, 89, 64, (375,31,0): 106, 90, 65, (375,32,0): 106, 90, 65, (375,33,0): 106, 90, 65, (375,34,0): 106, 90, 65, (375,35,0): 106, 90, 65, (375,36,0): 106, 90, 65, (375,37,0): 105, 89, 64, (375,38,0): 105, 89, 64, (375,39,0): 105, 89, 64, (375,40,0): 100, 84, 59, (375,41,0): 100, 84, 59, (375,42,0): 100, 84, 59, (375,43,0): 100, 84, 59, (375,44,0): 101, 85, 60, (375,45,0): 102, 86, 61, (375,46,0): 103, 87, 62, (375,47,0): 103, 87, 62, (375,48,0): 98, 82, 56, (375,49,0): 97, 81, 55, (375,50,0): 96, 80, 54, (375,51,0): 94, 78, 52, (375,52,0): 92, 76, 51, (375,53,0): 91, 75, 50, (375,54,0): 89, 73, 48, (375,55,0): 89, 73, 48, (375,56,0): 87, 71, 48, (375,57,0): 85, 69, 46, (375,58,0): 81, 64, 44, (375,59,0): 76, 59, 39, (375,60,0): 74, 57, 37, (375,61,0): 72, 55, 35, (375,62,0): 73, 56, 38, (375,63,0): 73, 56, 38, (375,64,0): 70, 54, 39, (375,65,0): 71, 55, 40, (375,66,0): 71, 55, 40, (375,67,0): 72, 56, 41, (375,68,0): 73, 57, 42, (375,69,0): 74, 58, 42, (375,70,0): 74, 58, 42, (375,71,0): 75, 59, 43, (375,72,0): 74, 59, 40, (375,73,0): 73, 58, 39, (375,74,0): 73, 58, 39, (375,75,0): 72, 57, 38, (375,76,0): 72, 57, 38, (375,77,0): 71, 56, 35, (375,78,0): 71, 56, 35, (375,79,0): 71, 56, 35, (375,80,0): 76, 59, 39, (375,81,0): 74, 57, 37, (375,82,0): 71, 54, 34, (375,83,0): 69, 52, 32, (375,84,0): 67, 50, 30, (375,85,0): 66, 49, 29, (375,86,0): 67, 50, 30, (375,87,0): 67, 50, 30, (375,88,0): 67, 50, 30, (375,89,0): 67, 50, 30, (375,90,0): 68, 51, 31, (375,91,0): 69, 52, 32, (375,92,0): 69, 52, 32, (375,93,0): 70, 53, 33, (375,94,0): 71, 54, 34, (375,95,0): 71, 54, 36, (375,96,0): 69, 52, 36, (375,97,0): 70, 52, 38, (375,98,0): 71, 53, 39, (375,99,0): 73, 55, 41, (375,100,0): 74, 57, 41, (375,101,0): 76, 59, 43, (375,102,0): 77, 60, 44, (375,103,0): 77, 60, 42, (375,104,0): 81, 64, 46, (375,105,0): 81, 64, 44, (375,106,0): 82, 65, 45, (375,107,0): 84, 67, 47, (375,108,0): 87, 70, 50, (375,109,0): 91, 75, 52, (375,110,0): 94, 78, 55, (375,111,0): 96, 80, 55, (375,112,0): 99, 82, 56, (375,113,0): 100, 83, 55, (375,114,0): 101, 84, 56, (375,115,0): 103, 86, 58, (375,116,0): 107, 90, 62, (375,117,0): 112, 95, 67, (375,118,0): 116, 99, 71, (375,119,0): 119, 102, 74, (375,120,0): 121, 101, 74, (375,121,0): 121, 101, 74, (375,122,0): 123, 103, 78, (375,123,0): 124, 104, 77, (375,124,0): 124, 104, 77, (375,125,0): 123, 103, 76, (375,126,0): 123, 102, 75, (375,127,0): 124, 100, 76, (375,128,0): 126, 98, 77, (375,129,0): 127, 99, 78, (375,130,0): 127, 100, 79, (375,131,0): 128, 103, 81, (375,132,0): 128, 106, 85, (375,133,0): 130, 109, 88, (375,134,0): 129, 111, 91, (375,135,0): 128, 113, 92, (375,136,0): 136, 125, 105, (375,137,0): 142, 136, 114, (375,138,0): 157, 152, 130, (375,139,0): 170, 168, 147, (375,140,0): 179, 181, 159, (375,141,0): 184, 188, 165, (375,142,0): 185, 190, 168, (375,143,0): 181, 191, 167, (375,144,0): 177, 196, 176, (375,145,0): 175, 198, 178, (375,146,0): 175, 200, 179, (375,147,0): 174, 201, 182, (375,148,0): 174, 201, 182, (375,149,0): 172, 201, 183, (375,150,0): 168, 201, 184, (375,151,0): 166, 200, 184, (375,152,0): 164, 200, 188, (375,153,0): 161, 201, 190, (375,154,0): 160, 202, 192, (375,155,0): 159, 202, 193, (375,156,0): 157, 203, 193, (375,157,0): 156, 203, 195, (375,158,0): 156, 203, 197, (375,159,0): 156, 203, 195, (375,160,0): 159, 202, 193, (375,161,0): 159, 202, 193, (375,162,0): 158, 201, 192, (375,163,0): 156, 202, 192, (375,164,0): 155, 200, 193, (375,165,0): 155, 200, 193, (375,166,0): 154, 199, 196, (375,167,0): 153, 199, 196, (375,168,0): 152, 198, 196, (375,169,0): 151, 200, 197, (375,170,0): 153, 201, 203, (375,171,0): 154, 202, 204, (375,172,0): 154, 202, 206, (375,173,0): 152, 201, 205, (375,174,0): 150, 199, 203, (375,175,0): 149, 198, 203, (375,176,0): 148, 198, 207, (375,177,0): 148, 198, 209, (375,178,0): 148, 198, 209, (375,179,0): 148, 198, 209, (375,180,0): 148, 198, 209, (375,181,0): 148, 197, 211, (375,182,0): 148, 197, 211, (375,183,0): 148, 197, 212, (375,184,0): 149, 198, 213, (375,185,0): 149, 198, 213, (375,186,0): 149, 198, 215, (375,187,0): 149, 198, 215, (375,188,0): 149, 198, 215, (375,189,0): 149, 198, 215, (375,190,0): 149, 197, 217, (375,191,0): 147, 198, 217, (375,192,0): 143, 193, 216, (375,193,0): 143, 195, 217, (375,194,0): 143, 195, 219, (375,195,0): 144, 196, 220, (375,196,0): 145, 197, 221, (375,197,0): 146, 198, 222, (375,198,0): 146, 197, 224, (375,199,0): 147, 198, 225, (375,200,0): 148, 199, 226, (375,201,0): 148, 199, 228, (375,202,0): 147, 198, 227, (375,203,0): 146, 197, 228, (375,204,0): 145, 196, 227, (375,205,0): 145, 196, 227, (375,206,0): 144, 195, 226, (375,207,0): 142, 195, 227, (375,208,0): 142, 195, 227, (375,209,0): 139, 194, 225, (375,210,0): 138, 192, 226, (375,211,0): 137, 192, 223, (375,212,0): 140, 193, 227, (375,213,0): 143, 196, 228, (375,214,0): 147, 200, 234, (375,215,0): 150, 203, 235, (375,216,0): 149, 199, 234, (375,217,0): 149, 199, 232, (375,218,0): 151, 199, 235, (375,219,0): 152, 201, 234, (375,220,0): 153, 201, 237, (375,221,0): 154, 203, 236, (375,222,0): 157, 203, 239, (375,223,0): 159, 203, 240, (375,224,0): 159, 198, 239, (375,225,0): 160, 199, 240, (375,226,0): 163, 200, 242, (375,227,0): 164, 201, 243, (375,228,0): 163, 200, 242, (375,229,0): 164, 199, 241, (375,230,0): 162, 197, 239, (375,231,0): 161, 196, 238, (375,232,0): 163, 197, 242, (375,233,0): 164, 197, 242, (375,234,0): 164, 197, 242, (375,235,0): 165, 196, 242, (375,236,0): 166, 197, 243, (375,237,0): 166, 197, 243, (375,238,0): 166, 197, 243, (375,239,0): 165, 198, 243, (375,240,0): 162, 199, 244, (375,241,0): 160, 198, 243, (375,242,0): 158, 196, 243, (375,243,0): 157, 195, 242, (375,244,0): 156, 194, 241, (375,245,0): 154, 194, 243, (375,246,0): 154, 194, 243, (375,247,0): 154, 196, 244, (375,248,0): 157, 199, 249, (375,249,0): 156, 198, 248, (375,250,0): 154, 196, 246, (375,251,0): 152, 196, 245, (375,252,0): 151, 195, 244, (375,253,0): 152, 196, 245, (375,254,0): 154, 197, 248, (375,255,0): 153, 199, 251, (375,256,0): 150, 200, 253, (375,257,0): 149, 200, 255, (375,258,0): 149, 200, 255, (375,259,0): 149, 200, 255, (375,260,0): 149, 200, 255, (375,261,0): 149, 200, 255, (375,262,0): 149, 200, 255, (375,263,0): 149, 200, 255, (375,264,0): 146, 197, 252, (375,265,0): 147, 198, 253, (375,266,0): 149, 200, 255, (375,267,0): 150, 201, 255, (375,268,0): 151, 202, 255, (375,269,0): 151, 202, 255, (375,270,0): 151, 202, 255, (375,271,0): 150, 201, 255, (375,272,0): 146, 199, 253, (375,273,0): 146, 199, 253, (375,274,0): 146, 198, 255, (375,275,0): 147, 199, 255, (375,276,0): 147, 199, 255, (375,277,0): 147, 199, 255, (375,278,0): 148, 200, 255, (375,279,0): 148, 200, 255, (375,280,0): 145, 197, 254, (375,281,0): 145, 197, 254, (375,282,0): 145, 197, 254, (375,283,0): 144, 196, 253, (375,284,0): 143, 195, 253, (375,285,0): 143, 195, 253, (375,286,0): 143, 195, 253, (375,287,0): 142, 194, 252, (375,288,0): 142, 194, 251, (375,289,0): 142, 194, 251, (375,290,0): 140, 195, 252, (375,291,0): 140, 195, 252, (375,292,0): 140, 194, 254, (375,293,0): 140, 194, 254, (375,294,0): 140, 194, 254, (375,295,0): 142, 194, 254, (375,296,0): 145, 193, 255, (375,297,0): 147, 193, 255, (375,298,0): 148, 189, 251, (375,299,0): 149, 189, 250, (375,300,0): 152, 188, 248, (375,301,0): 153, 188, 246, (375,302,0): 157, 189, 248, (375,303,0): 159, 188, 246, (375,304,0): 158, 178, 241, (375,305,0): 158, 170, 230, (375,306,0): 142, 148, 198, (375,307,0): 117, 117, 155, (375,308,0): 95, 89, 115, (375,309,0): 87, 76, 93, (375,310,0): 81, 71, 82, (375,311,0): 74, 67, 75, (375,312,0): 69, 66, 73, (375,313,0): 72, 72, 80, (375,314,0): 79, 81, 93, (375,315,0): 91, 91, 103, (375,316,0): 101, 98, 109, (375,317,0): 105, 98, 106, (375,318,0): 104, 91, 98, (375,319,0): 102, 85, 91, (375,320,0): 85, 64, 71, (375,321,0): 84, 61, 67, (375,322,0): 79, 56, 64, (375,323,0): 75, 52, 60, (375,324,0): 70, 47, 55, (375,325,0): 67, 44, 52, (375,326,0): 65, 42, 50, (375,327,0): 64, 41, 49, (375,328,0): 63, 40, 48, (375,329,0): 63, 40, 48, (375,330,0): 63, 40, 48, (375,331,0): 63, 40, 48, (375,332,0): 64, 41, 49, (375,333,0): 66, 43, 51, (375,334,0): 68, 45, 55, (375,335,0): 69, 46, 54, (375,336,0): 66, 43, 51, (375,337,0): 66, 43, 49, (375,338,0): 69, 42, 47, (375,339,0): 73, 44, 46, (375,340,0): 78, 47, 45, (375,341,0): 84, 49, 45, (375,342,0): 90, 49, 43, (375,343,0): 94, 51, 44, (375,344,0): 110, 63, 55, (375,345,0): 114, 64, 57, (375,346,0): 117, 64, 56, (375,347,0): 117, 62, 55, (375,348,0): 112, 57, 50, (375,349,0): 105, 47, 43, (375,350,0): 96, 38, 34, (375,351,0): 87, 34, 30, (375,352,0): 84, 37, 31, (375,353,0): 81, 38, 31, (375,354,0): 84, 39, 34, (375,355,0): 89, 44, 38, (375,356,0): 97, 50, 44, (375,357,0): 99, 52, 46, (375,358,0): 99, 50, 45, (375,359,0): 97, 48, 43, (375,360,0): 94, 43, 40, (375,361,0): 95, 41, 39, (375,362,0): 93, 39, 37, (375,363,0): 92, 36, 35, (375,364,0): 93, 35, 34, (375,365,0): 94, 34, 34, (375,366,0): 95, 35, 35, (375,367,0): 93, 37, 38, (375,368,0): 83, 37, 37, (375,369,0): 78, 36, 37, (375,370,0): 75, 33, 35, (375,371,0): 73, 31, 33, (375,372,0): 72, 30, 32, (375,373,0): 72, 30, 32, (375,374,0): 72, 31, 35, (375,375,0): 73, 32, 36, (375,376,0): 71, 32, 37, (375,377,0): 71, 32, 37, (375,378,0): 68, 32, 36, (375,379,0): 68, 32, 36, (375,380,0): 67, 30, 37, (375,381,0): 67, 30, 37, (375,382,0): 66, 29, 36, (375,383,0): 66, 30, 34, (375,384,0): 69, 30, 33, (375,385,0): 69, 30, 31, (375,386,0): 69, 30, 33, (375,387,0): 67, 31, 33, (375,388,0): 65, 29, 31, (375,389,0): 62, 28, 29, (375,390,0): 58, 26, 29, (375,391,0): 56, 26, 28, (375,392,0): 54, 23, 28, (375,393,0): 53, 24, 28, (375,394,0): 51, 25, 28, (375,395,0): 49, 24, 27, (375,396,0): 49, 24, 28, (375,397,0): 49, 24, 28, (375,398,0): 49, 24, 28, (375,399,0): 49, 24, 28, (375,400,0): 49, 24, 28, (375,401,0): 50, 25, 29, (375,402,0): 51, 26, 30, (375,403,0): 53, 28, 32, (375,404,0): 54, 29, 33, (375,405,0): 54, 29, 33, (375,406,0): 53, 28, 32, (375,407,0): 53, 28, 32, (375,408,0): 51, 26, 30, (375,409,0): 50, 25, 29, (375,410,0): 48, 23, 27, (375,411,0): 46, 21, 25, (375,412,0): 45, 20, 24, (375,413,0): 46, 21, 25, (375,414,0): 47, 22, 26, (375,415,0): 46, 24, 27, (375,416,0): 46, 26, 28, (375,417,0): 46, 26, 28, (375,418,0): 46, 26, 28, (375,419,0): 46, 26, 28, (375,420,0): 46, 26, 28, (375,421,0): 46, 26, 28, (375,422,0): 46, 26, 28, (375,423,0): 46, 26, 28, (375,424,0): 46, 25, 30, (375,425,0): 47, 26, 31, (375,426,0): 47, 26, 31, (375,427,0): 48, 27, 32, (375,428,0): 49, 28, 33, (375,429,0): 50, 29, 34, (375,430,0): 50, 29, 34, (375,431,0): 50, 31, 35, (375,432,0): 45, 28, 34, (375,433,0): 46, 29, 35, (375,434,0): 46, 29, 35, (375,435,0): 47, 31, 34, (375,436,0): 50, 31, 35, (375,437,0): 50, 31, 33, (375,438,0): 51, 32, 34, (375,439,0): 51, 33, 33, (375,440,0): 49, 31, 29, (375,441,0): 49, 31, 29, (375,442,0): 48, 33, 28, (375,443,0): 49, 34, 29, (375,444,0): 51, 36, 29, (375,445,0): 53, 40, 32, (375,446,0): 57, 42, 35, (375,447,0): 56, 45, 39, (375,448,0): 45, 37, 34, (375,449,0): 39, 35, 32, (375,450,0): 38, 34, 31, (375,451,0): 39, 35, 32, (375,452,0): 41, 37, 34, (375,453,0): 42, 38, 35, (375,454,0): 41, 36, 33, (375,455,0): 39, 34, 31, (375,456,0): 43, 38, 35, (375,457,0): 46, 41, 38, (375,458,0): 50, 45, 42, (375,459,0): 53, 48, 45, (375,460,0): 53, 48, 45, (375,461,0): 50, 45, 42, (375,462,0): 45, 40, 37, (375,463,0): 41, 36, 33, (375,464,0): 52, 43, 44, (375,465,0): 57, 48, 49, (375,466,0): 62, 56, 56, (375,467,0): 71, 65, 65, (375,468,0): 80, 75, 72, (375,469,0): 87, 83, 80, (375,470,0): 92, 89, 84, (375,471,0): 92, 92, 84, (375,472,0): 90, 87, 78, (375,473,0): 90, 86, 75, (375,474,0): 89, 85, 74, (375,475,0): 87, 81, 69, (375,476,0): 84, 76, 65, (375,477,0): 81, 71, 59, (375,478,0): 79, 66, 57, (375,479,0): 76, 64, 52, (375,480,0): 66, 54, 40, (375,481,0): 65, 53, 39, (375,482,0): 64, 52, 38, (375,483,0): 64, 52, 38, (375,484,0): 66, 54, 40, (375,485,0): 70, 58, 44, (375,486,0): 76, 62, 49, (375,487,0): 79, 65, 52, (375,488,0): 76, 60, 47, (375,489,0): 78, 62, 49, (375,490,0): 81, 63, 51, (375,491,0): 83, 65, 53, (375,492,0): 83, 65, 53, (375,493,0): 81, 63, 51, (375,494,0): 78, 60, 48, (375,495,0): 76, 58, 46, (375,496,0): 69, 49, 40, (375,497,0): 67, 47, 40, (375,498,0): 65, 44, 39, (375,499,0): 61, 40, 35, (375,500,0): 59, 38, 33, (375,501,0): 57, 36, 31, (375,502,0): 56, 35, 32, (375,503,0): 56, 35, 32, (375,504,0): 59, 38, 37, (375,505,0): 59, 38, 37, (375,506,0): 58, 37, 36, (375,507,0): 57, 36, 35, (375,508,0): 54, 32, 34, (375,509,0): 51, 29, 31, (375,510,0): 48, 26, 28, (375,511,0): 47, 25, 28, (375,512,0): 44, 23, 28, (375,513,0): 43, 22, 29, (375,514,0): 42, 21, 30, (375,515,0): 41, 20, 29, (375,516,0): 39, 19, 30, (375,517,0): 39, 19, 30, (375,518,0): 40, 20, 32, (375,519,0): 41, 21, 33, (375,520,0): 39, 22, 32, (375,521,0): 39, 22, 30, (375,522,0): 39, 24, 31, (375,523,0): 40, 25, 28, (375,524,0): 42, 27, 30, (375,525,0): 44, 30, 29, (375,526,0): 45, 34, 32, (375,527,0): 46, 35, 31, (375,528,0): 51, 37, 34, (375,529,0): 51, 38, 32, (375,530,0): 53, 39, 36, (375,531,0): 55, 42, 36, (375,532,0): 57, 46, 42, (375,533,0): 61, 50, 46, (375,534,0): 65, 54, 50, (375,535,0): 67, 56, 52, (375,536,0): 68, 57, 51, (375,537,0): 69, 58, 52, (375,538,0): 71, 60, 54, (375,539,0): 72, 61, 55, (375,540,0): 75, 62, 56, (375,541,0): 74, 61, 55, (375,542,0): 74, 61, 55, (375,543,0): 71, 60, 54, (375,544,0): 77, 68, 61, (375,545,0): 72, 63, 56, (375,546,0): 66, 57, 50, (375,547,0): 61, 50, 44, (375,548,0): 58, 47, 41, (375,549,0): 59, 48, 42, (375,550,0): 63, 52, 46, (375,551,0): 67, 54, 48, (375,552,0): 67, 54, 48, (375,553,0): 73, 58, 53, (375,554,0): 78, 63, 58, (375,555,0): 78, 63, 58, (375,556,0): 72, 57, 52, (375,557,0): 68, 50, 46, (375,558,0): 64, 46, 42, (375,559,0): 62, 44, 40, (375,560,0): 56, 38, 36, (375,561,0): 51, 36, 33, (375,562,0): 47, 28, 30, (375,563,0): 40, 24, 25, (375,564,0): 36, 19, 25, (375,565,0): 34, 19, 24, (375,566,0): 34, 18, 28, (375,567,0): 35, 19, 29, (375,568,0): 36, 23, 33, (375,569,0): 37, 24, 34, (375,570,0): 37, 26, 34, (375,571,0): 35, 24, 32, (375,572,0): 32, 21, 27, (375,573,0): 32, 21, 27, (375,574,0): 33, 24, 27, (375,575,0): 37, 27, 28, (375,576,0): 40, 25, 28, (375,577,0): 39, 25, 25, (375,578,0): 39, 25, 25, (375,579,0): 37, 25, 25, (375,580,0): 38, 28, 27, (375,581,0): 41, 31, 30, (375,582,0): 43, 35, 33, (375,583,0): 45, 37, 35, (375,584,0): 51, 41, 40, (375,585,0): 52, 40, 40, (375,586,0): 54, 40, 40, (375,587,0): 55, 39, 40, (375,588,0): 57, 38, 40, (375,589,0): 57, 37, 39, (375,590,0): 58, 36, 39, (375,591,0): 56, 37, 41, (375,592,0): 56, 41, 48, (375,593,0): 52, 41, 49, (375,594,0): 50, 39, 47, (375,595,0): 48, 37, 45, (375,596,0): 45, 34, 42, (375,597,0): 43, 32, 40, (375,598,0): 41, 30, 38, (375,599,0): 40, 29, 37, (376,0,0): 75, 60, 53, (376,1,0): 75, 60, 53, (376,2,0): 75, 61, 52, (376,3,0): 76, 62, 53, (376,4,0): 76, 62, 53, (376,5,0): 77, 63, 54, (376,6,0): 77, 63, 52, (376,7,0): 78, 64, 53, (376,8,0): 81, 67, 54, (376,9,0): 81, 67, 54, (376,10,0): 83, 69, 56, (376,11,0): 84, 70, 57, (376,12,0): 86, 73, 57, (376,13,0): 87, 74, 58, (376,14,0): 88, 75, 59, (376,15,0): 89, 76, 59, (376,16,0): 93, 78, 55, (376,17,0): 95, 81, 55, (376,18,0): 96, 82, 56, (376,19,0): 98, 84, 58, (376,20,0): 99, 85, 59, (376,21,0): 100, 86, 60, (376,22,0): 99, 85, 59, (376,23,0): 99, 85, 59, (376,24,0): 99, 85, 59, (376,25,0): 99, 85, 59, (376,26,0): 100, 86, 60, (376,27,0): 100, 86, 60, (376,28,0): 101, 87, 61, (376,29,0): 101, 87, 61, (376,30,0): 102, 88, 62, (376,31,0): 102, 88, 62, (376,32,0): 105, 91, 65, (376,33,0): 105, 91, 65, (376,34,0): 105, 91, 65, (376,35,0): 105, 91, 65, (376,36,0): 105, 91, 65, (376,37,0): 105, 91, 65, (376,38,0): 105, 91, 65, (376,39,0): 105, 91, 65, (376,40,0): 106, 92, 66, (376,41,0): 105, 91, 65, (376,42,0): 105, 91, 65, (376,43,0): 104, 90, 64, (376,44,0): 103, 89, 63, (376,45,0): 102, 88, 62, (376,46,0): 102, 88, 62, (376,47,0): 101, 87, 61, (376,48,0): 102, 86, 60, (376,49,0): 100, 85, 56, (376,50,0): 97, 82, 53, (376,51,0): 95, 80, 51, (376,52,0): 93, 77, 51, (376,53,0): 93, 77, 51, (376,54,0): 93, 77, 52, (376,55,0): 94, 78, 53, (376,56,0): 90, 74, 49, (376,57,0): 86, 70, 45, (376,58,0): 80, 64, 41, (376,59,0): 76, 60, 37, (376,60,0): 75, 58, 38, (376,61,0): 74, 57, 37, (376,62,0): 71, 54, 34, (376,63,0): 69, 52, 34, (376,64,0): 68, 52, 37, (376,65,0): 65, 51, 38, (376,66,0): 65, 51, 38, (376,67,0): 66, 53, 37, (376,68,0): 67, 54, 38, (376,69,0): 69, 56, 40, (376,70,0): 71, 58, 41, (376,71,0): 73, 60, 43, (376,72,0): 73, 60, 41, (376,73,0): 73, 60, 41, (376,74,0): 73, 61, 39, (376,75,0): 73, 61, 39, (376,76,0): 73, 61, 39, (376,77,0): 73, 61, 37, (376,78,0): 73, 61, 37, (376,79,0): 73, 61, 37, (376,80,0): 74, 59, 38, (376,81,0): 73, 58, 37, (376,82,0): 72, 57, 36, (376,83,0): 71, 56, 35, (376,84,0): 70, 55, 34, (376,85,0): 70, 55, 34, (376,86,0): 70, 55, 34, (376,87,0): 70, 55, 34, (376,88,0): 70, 55, 34, (376,89,0): 69, 54, 33, (376,90,0): 69, 54, 33, (376,91,0): 69, 54, 33, (376,92,0): 69, 54, 33, (376,93,0): 69, 54, 33, (376,94,0): 69, 54, 33, (376,95,0): 69, 54, 35, (376,96,0): 72, 56, 41, (376,97,0): 72, 56, 43, (376,98,0): 73, 57, 42, (376,99,0): 74, 58, 43, (376,100,0): 75, 59, 44, (376,101,0): 76, 60, 45, (376,102,0): 77, 61, 46, (376,103,0): 78, 62, 46, (376,104,0): 77, 61, 45, (376,105,0): 77, 62, 43, (376,106,0): 79, 64, 45, (376,107,0): 81, 66, 47, (376,108,0): 83, 68, 49, (376,109,0): 84, 69, 48, (376,110,0): 86, 71, 50, (376,111,0): 86, 71, 50, (376,112,0): 88, 72, 49, (376,113,0): 90, 74, 49, (376,114,0): 94, 77, 51, (376,115,0): 97, 80, 54, (376,116,0): 100, 83, 57, (376,117,0): 101, 84, 58, (376,118,0): 104, 84, 59, (376,119,0): 104, 84, 59, (376,120,0): 108, 86, 62, (376,121,0): 112, 90, 66, (376,122,0): 117, 95, 72, (376,123,0): 121, 99, 75, (376,124,0): 122, 100, 76, (376,125,0): 119, 97, 73, (376,126,0): 117, 93, 69, (376,127,0): 114, 90, 66, (376,128,0): 117, 89, 68, (376,129,0): 117, 89, 68, (376,130,0): 117, 90, 71, (376,131,0): 119, 92, 73, (376,132,0): 120, 95, 75, (376,133,0): 121, 99, 78, (376,134,0): 123, 102, 81, (376,135,0): 123, 105, 83, (376,136,0): 129, 112, 92, (376,137,0): 132, 117, 96, (376,138,0): 139, 127, 105, (376,139,0): 152, 141, 121, (376,140,0): 168, 157, 137, (376,141,0): 182, 174, 153, (376,142,0): 192, 185, 166, (376,143,0): 194, 193, 172, (376,144,0): 189, 198, 179, (376,145,0): 181, 196, 177, (376,146,0): 174, 191, 172, (376,147,0): 173, 192, 173, (376,148,0): 175, 196, 179, (376,149,0): 176, 199, 183, (376,150,0): 171, 198, 183, (376,151,0): 165, 196, 181, (376,152,0): 172, 204, 191, (376,153,0): 168, 204, 192, (376,154,0): 164, 202, 191, (376,155,0): 161, 201, 192, (376,156,0): 158, 201, 192, (376,157,0): 157, 203, 193, (376,158,0): 158, 203, 196, (376,159,0): 160, 205, 198, (376,160,0): 159, 202, 193, (376,161,0): 159, 202, 193, (376,162,0): 159, 202, 193, (376,163,0): 159, 202, 193, (376,164,0): 159, 202, 195, (376,165,0): 157, 202, 195, (376,166,0): 157, 202, 199, (376,167,0): 156, 202, 199, (376,168,0): 157, 203, 201, (376,169,0): 157, 203, 201, (376,170,0): 157, 202, 205, (376,171,0): 154, 202, 204, (376,172,0): 154, 202, 206, (376,173,0): 153, 201, 205, (376,174,0): 153, 201, 205, (376,175,0): 151, 200, 205, (376,176,0): 146, 196, 207, (376,177,0): 146, 195, 209, (376,178,0): 147, 196, 210, (376,179,0): 147, 196, 210, (376,180,0): 148, 197, 211, (376,181,0): 148, 197, 212, (376,182,0): 149, 198, 213, (376,183,0): 149, 198, 215, (376,184,0): 151, 200, 217, (376,185,0): 151, 200, 217, (376,186,0): 150, 198, 218, (376,187,0): 148, 196, 216, (376,188,0): 147, 195, 215, (376,189,0): 146, 194, 214, (376,190,0): 145, 193, 215, (376,191,0): 142, 193, 214, (376,192,0): 145, 195, 220, (376,193,0): 144, 196, 220, (376,194,0): 144, 195, 222, (376,195,0): 144, 195, 222, (376,196,0): 145, 196, 223, (376,197,0): 145, 196, 223, (376,198,0): 145, 196, 225, (376,199,0): 145, 196, 225, (376,200,0): 147, 198, 227, (376,201,0): 147, 198, 229, (376,202,0): 147, 198, 229, (376,203,0): 146, 196, 229, (376,204,0): 146, 196, 229, (376,205,0): 145, 195, 228, (376,206,0): 145, 195, 228, (376,207,0): 142, 195, 227, (376,208,0): 140, 193, 227, (376,209,0): 139, 193, 227, (376,210,0): 140, 194, 230, (376,211,0): 141, 195, 229, (376,212,0): 143, 195, 232, (376,213,0): 144, 197, 231, (376,214,0): 145, 197, 234, (376,215,0): 145, 198, 232, (376,216,0): 150, 200, 237, (376,217,0): 149, 199, 234, (376,218,0): 149, 197, 235, (376,219,0): 149, 197, 233, (376,220,0): 149, 197, 235, (376,221,0): 152, 200, 236, (376,222,0): 156, 201, 240, (376,223,0): 159, 203, 242, (376,224,0): 155, 197, 237, (376,225,0): 156, 198, 240, (376,226,0): 160, 199, 242, (376,227,0): 161, 200, 243, (376,228,0): 161, 200, 243, (376,229,0): 161, 198, 242, (376,230,0): 159, 196, 240, (376,231,0): 158, 195, 239, (376,232,0): 155, 192, 234, (376,233,0): 158, 193, 235, (376,234,0): 159, 194, 236, (376,235,0): 162, 195, 238, (376,236,0): 164, 197, 240, (376,237,0): 165, 198, 241, (376,238,0): 167, 200, 243, (376,239,0): 167, 200, 245, (376,240,0): 163, 197, 242, (376,241,0): 161, 198, 242, (376,242,0): 160, 197, 242, (376,243,0): 159, 196, 241, (376,244,0): 158, 195, 240, (376,245,0): 156, 194, 241, (376,246,0): 155, 193, 240, (376,247,0): 152, 193, 239, (376,248,0): 154, 194, 243, (376,249,0): 152, 194, 242, (376,250,0): 152, 194, 244, (376,251,0): 151, 193, 243, (376,252,0): 150, 193, 244, (376,253,0): 149, 192, 243, (376,254,0): 149, 192, 243, (376,255,0): 147, 193, 245, (376,256,0): 148, 195, 251, (376,257,0): 147, 196, 254, (376,258,0): 147, 196, 254, (376,259,0): 148, 197, 255, (376,260,0): 148, 197, 255, (376,261,0): 149, 198, 255, (376,262,0): 149, 198, 255, (376,263,0): 149, 198, 255, (376,264,0): 148, 197, 255, (376,265,0): 148, 197, 255, (376,266,0): 149, 198, 255, (376,267,0): 149, 198, 255, (376,268,0): 150, 199, 255, (376,269,0): 150, 199, 255, (376,270,0): 151, 200, 255, (376,271,0): 150, 201, 255, (376,272,0): 145, 197, 254, (376,273,0): 145, 197, 254, (376,274,0): 145, 197, 255, (376,275,0): 145, 197, 255, (376,276,0): 145, 197, 255, (376,277,0): 145, 197, 255, (376,278,0): 145, 197, 255, (376,279,0): 145, 197, 255, (376,280,0): 144, 196, 254, (376,281,0): 144, 196, 254, (376,282,0): 145, 197, 254, (376,283,0): 146, 198, 255, (376,284,0): 146, 198, 255, (376,285,0): 145, 197, 254, (376,286,0): 144, 196, 253, (376,287,0): 144, 196, 253, (376,288,0): 142, 194, 251, (376,289,0): 143, 195, 252, (376,290,0): 143, 195, 253, (376,291,0): 144, 196, 254, (376,292,0): 143, 195, 255, (376,293,0): 142, 193, 255, (376,294,0): 140, 191, 254, (376,295,0): 140, 190, 253, (376,296,0): 140, 188, 252, (376,297,0): 145, 189, 252, (376,298,0): 150, 190, 252, (376,299,0): 151, 190, 249, (376,300,0): 153, 188, 246, (376,301,0): 153, 185, 242, (376,302,0): 155, 184, 240, (376,303,0): 159, 184, 241, (376,304,0): 160, 175, 234, (376,305,0): 157, 164, 219, (376,306,0): 133, 134, 180, (376,307,0): 99, 95, 128, (376,308,0): 79, 70, 91, (376,309,0): 78, 68, 79, (376,310,0): 82, 72, 80, (376,311,0): 79, 73, 77, (376,312,0): 85, 82, 89, (376,313,0): 88, 88, 96, (376,314,0): 92, 94, 106, (376,315,0): 96, 98, 110, (376,316,0): 99, 96, 107, (376,317,0): 97, 89, 100, (376,318,0): 93, 80, 89, (376,319,0): 93, 73, 82, (376,320,0): 85, 62, 72, (376,321,0): 84, 58, 67, (376,322,0): 79, 53, 64, (376,323,0): 74, 48, 57, (376,324,0): 70, 44, 53, (376,325,0): 68, 42, 51, (376,326,0): 67, 41, 50, (376,327,0): 67, 41, 50, (376,328,0): 68, 42, 51, (376,329,0): 67, 41, 50, (376,330,0): 67, 41, 50, (376,331,0): 67, 41, 50, (376,332,0): 67, 41, 50, (376,333,0): 69, 44, 50, (376,334,0): 71, 45, 54, (376,335,0): 72, 47, 53, (376,336,0): 70, 45, 49, (376,337,0): 74, 48, 49, (376,338,0): 80, 50, 50, (376,339,0): 84, 50, 48, (376,340,0): 87, 49, 46, (376,341,0): 93, 52, 46, (376,342,0): 104, 57, 51, (376,343,0): 110, 61, 54, (376,344,0): 113, 63, 56, (376,345,0): 113, 60, 54, (376,346,0): 109, 56, 52, (376,347,0): 100, 49, 45, (376,348,0): 92, 43, 39, (376,349,0): 83, 35, 33, (376,350,0): 75, 29, 29, (376,351,0): 68, 27, 25, (376,352,0): 67, 32, 26, (376,353,0): 66, 33, 24, (376,354,0): 68, 33, 27, (376,355,0): 71, 34, 26, (376,356,0): 75, 36, 29, (376,357,0): 79, 38, 32, (376,358,0): 84, 41, 35, (376,359,0): 88, 40, 36, (376,360,0): 83, 34, 30, (376,361,0): 85, 34, 31, (376,362,0): 89, 35, 33, (376,363,0): 91, 35, 34, (376,364,0): 94, 36, 35, (376,365,0): 94, 36, 35, (376,366,0): 94, 34, 33, (376,367,0): 91, 35, 34, (376,368,0): 80, 34, 34, (376,369,0): 76, 34, 35, (376,370,0): 75, 33, 35, (376,371,0): 74, 32, 34, (376,372,0): 72, 30, 32, (376,373,0): 71, 29, 31, (376,374,0): 69, 28, 32, (376,375,0): 69, 28, 32, (376,376,0): 72, 33, 38, (376,377,0): 72, 33, 38, (376,378,0): 69, 33, 37, (376,379,0): 68, 32, 36, (376,380,0): 67, 30, 37, (376,381,0): 66, 29, 36, (376,382,0): 65, 28, 35, (376,383,0): 65, 29, 33, (376,384,0): 69, 33, 35, (376,385,0): 68, 32, 34, (376,386,0): 67, 31, 35, (376,387,0): 64, 29, 33, (376,388,0): 62, 27, 31, (376,389,0): 58, 26, 29, (376,390,0): 57, 25, 30, (376,391,0): 55, 24, 29, (376,392,0): 52, 23, 28, (376,393,0): 50, 23, 28, (376,394,0): 50, 23, 28, (376,395,0): 49, 24, 28, (376,396,0): 49, 24, 30, (376,397,0): 47, 24, 30, (376,398,0): 47, 24, 30, (376,399,0): 47, 24, 30, (376,400,0): 49, 27, 30, (376,401,0): 49, 27, 30, (376,402,0): 49, 27, 30, (376,403,0): 49, 27, 30, (376,404,0): 49, 27, 30, (376,405,0): 49, 27, 30, (376,406,0): 49, 27, 30, (376,407,0): 49, 27, 30, (376,408,0): 52, 30, 33, (376,409,0): 51, 29, 32, (376,410,0): 48, 26, 29, (376,411,0): 46, 24, 27, (376,412,0): 45, 23, 26, (376,413,0): 44, 22, 25, (376,414,0): 45, 23, 26, (376,415,0): 45, 23, 26, (376,416,0): 45, 24, 29, (376,417,0): 44, 25, 29, (376,418,0): 44, 25, 29, (376,419,0): 44, 25, 29, (376,420,0): 43, 24, 28, (376,421,0): 43, 24, 28, (376,422,0): 43, 24, 28, (376,423,0): 43, 24, 28, (376,424,0): 49, 30, 32, (376,425,0): 49, 30, 32, (376,426,0): 50, 31, 33, (376,427,0): 50, 31, 33, (376,428,0): 49, 30, 32, (376,429,0): 48, 29, 31, (376,430,0): 47, 28, 30, (376,431,0): 46, 27, 31, (376,432,0): 49, 32, 38, (376,433,0): 46, 29, 35, (376,434,0): 42, 26, 29, (376,435,0): 43, 27, 30, (376,436,0): 46, 30, 33, (376,437,0): 48, 32, 33, (376,438,0): 48, 32, 33, (376,439,0): 46, 30, 30, (376,440,0): 47, 32, 29, (376,441,0): 48, 33, 30, (376,442,0): 52, 37, 32, (376,443,0): 56, 41, 36, (376,444,0): 59, 44, 37, (376,445,0): 61, 46, 39, (376,446,0): 63, 46, 38, (376,447,0): 59, 46, 38, (376,448,0): 51, 43, 40, (376,449,0): 44, 39, 36, (376,450,0): 39, 34, 31, (376,451,0): 37, 32, 29, (376,452,0): 39, 34, 31, (376,453,0): 40, 35, 32, (376,454,0): 39, 34, 31, (376,455,0): 37, 32, 29, (376,456,0): 39, 34, 31, (376,457,0): 45, 40, 37, (376,458,0): 51, 47, 44, (376,459,0): 54, 50, 47, (376,460,0): 53, 49, 46, (376,461,0): 50, 46, 43, (376,462,0): 49, 45, 42, (376,463,0): 48, 44, 41, (376,464,0): 53, 47, 47, (376,465,0): 59, 53, 55, (376,466,0): 67, 63, 62, (376,467,0): 73, 72, 70, (376,468,0): 79, 78, 74, (376,469,0): 85, 86, 81, (376,470,0): 93, 94, 88, (376,471,0): 99, 100, 92, (376,472,0): 95, 95, 85, (376,473,0): 92, 92, 80, (376,474,0): 91, 87, 76, (376,475,0): 91, 85, 73, (376,476,0): 89, 81, 68, (376,477,0): 86, 77, 62, (376,478,0): 81, 69, 57, (376,479,0): 76, 64, 50, (376,480,0): 66, 54, 40, (376,481,0): 66, 57, 40, (376,482,0): 68, 59, 42, (376,483,0): 71, 62, 45, (376,484,0): 74, 62, 46, (376,485,0): 73, 61, 45, (376,486,0): 72, 60, 44, (376,487,0): 72, 60, 44, (376,488,0): 77, 64, 48, (376,489,0): 75, 62, 46, (376,490,0): 77, 61, 46, (376,491,0): 79, 63, 48, (376,492,0): 82, 66, 51, (376,493,0): 83, 67, 52, (376,494,0): 81, 63, 49, (376,495,0): 79, 61, 49, (376,496,0): 74, 54, 45, (376,497,0): 70, 50, 43, (376,498,0): 65, 44, 39, (376,499,0): 63, 42, 37, (376,500,0): 64, 43, 38, (376,501,0): 64, 43, 38, (376,502,0): 62, 41, 38, (376,503,0): 60, 39, 36, (376,504,0): 63, 42, 41, (376,505,0): 63, 42, 41, (376,506,0): 63, 42, 41, (376,507,0): 61, 40, 39, (376,508,0): 57, 35, 37, (376,509,0): 51, 29, 31, (376,510,0): 46, 24, 26, (376,511,0): 42, 20, 23, (376,512,0): 45, 24, 29, (376,513,0): 44, 23, 30, (376,514,0): 42, 21, 30, (376,515,0): 41, 20, 29, (376,516,0): 39, 19, 30, (376,517,0): 39, 19, 30, (376,518,0): 39, 19, 31, (376,519,0): 40, 20, 32, (376,520,0): 39, 22, 32, (376,521,0): 39, 22, 30, (376,522,0): 40, 25, 32, (376,523,0): 42, 27, 30, (376,524,0): 45, 30, 33, (376,525,0): 48, 34, 33, (376,526,0): 48, 37, 35, (376,527,0): 49, 38, 34, (376,528,0): 54, 43, 37, (376,529,0): 58, 48, 39, (376,530,0): 61, 50, 44, (376,531,0): 62, 52, 43, (376,532,0): 62, 49, 43, (376,533,0): 62, 49, 43, (376,534,0): 63, 50, 44, (376,535,0): 65, 52, 46, (376,536,0): 66, 53, 47, (376,537,0): 72, 59, 53, (376,538,0): 78, 65, 59, (376,539,0): 81, 68, 62, (376,540,0): 78, 67, 61, (376,541,0): 76, 65, 59, (376,542,0): 76, 65, 59, (376,543,0): 77, 66, 60, (376,544,0): 75, 66, 61, (376,545,0): 72, 65, 59, (376,546,0): 69, 62, 56, (376,547,0): 67, 58, 53, (376,548,0): 65, 56, 51, (376,549,0): 64, 55, 50, (376,550,0): 64, 55, 50, (376,551,0): 65, 54, 50, (376,552,0): 68, 57, 53, (376,553,0): 72, 58, 55, (376,554,0): 75, 61, 58, (376,555,0): 76, 62, 59, (376,556,0): 74, 60, 57, (376,557,0): 69, 54, 51, (376,558,0): 62, 47, 44, (376,559,0): 58, 43, 40, (376,560,0): 55, 40, 37, (376,561,0): 51, 37, 34, (376,562,0): 47, 31, 32, (376,563,0): 43, 29, 29, (376,564,0): 41, 26, 31, (376,565,0): 38, 23, 28, (376,566,0): 34, 18, 28, (376,567,0): 28, 15, 24, (376,568,0): 33, 20, 30, (376,569,0): 33, 20, 30, (376,570,0): 32, 21, 29, (376,571,0): 32, 21, 29, (376,572,0): 34, 23, 29, (376,573,0): 36, 25, 31, (376,574,0): 38, 27, 31, (376,575,0): 39, 29, 30, (376,576,0): 40, 25, 28, (376,577,0): 40, 26, 26, (376,578,0): 41, 27, 27, (376,579,0): 40, 28, 28, (376,580,0): 41, 31, 30, (376,581,0): 44, 34, 33, (376,582,0): 47, 37, 36, (376,583,0): 48, 38, 37, (376,584,0): 52, 40, 40, (376,585,0): 52, 40, 40, (376,586,0): 54, 40, 40, (376,587,0): 54, 38, 39, (376,588,0): 56, 37, 39, (376,589,0): 57, 37, 39, (376,590,0): 57, 35, 38, (376,591,0): 55, 36, 40, (376,592,0): 50, 35, 42, (376,593,0): 46, 35, 43, (376,594,0): 45, 34, 42, (376,595,0): 44, 33, 41, (376,596,0): 43, 32, 40, (376,597,0): 41, 30, 38, (376,598,0): 40, 29, 37, (376,599,0): 40, 29, 37, (377,0,0): 75, 60, 53, (377,1,0): 75, 60, 53, (377,2,0): 76, 62, 53, (377,3,0): 76, 62, 53, (377,4,0): 77, 63, 54, (377,5,0): 77, 63, 54, (377,6,0): 77, 63, 52, (377,7,0): 78, 64, 53, (377,8,0): 81, 67, 54, (377,9,0): 81, 67, 54, (377,10,0): 82, 68, 55, (377,11,0): 84, 70, 57, (377,12,0): 86, 73, 57, (377,13,0): 87, 74, 58, (377,14,0): 88, 75, 59, (377,15,0): 89, 76, 59, (377,16,0): 93, 78, 55, (377,17,0): 95, 81, 55, (377,18,0): 96, 82, 56, (377,19,0): 98, 84, 58, (377,20,0): 99, 85, 59, (377,21,0): 100, 86, 60, (377,22,0): 99, 85, 59, (377,23,0): 99, 85, 59, (377,24,0): 99, 85, 59, (377,25,0): 99, 85, 59, (377,26,0): 100, 86, 60, (377,27,0): 100, 86, 60, (377,28,0): 101, 87, 61, (377,29,0): 101, 87, 61, (377,30,0): 102, 88, 62, (377,31,0): 102, 88, 62, (377,32,0): 105, 91, 65, (377,33,0): 105, 91, 65, (377,34,0): 105, 91, 65, (377,35,0): 105, 91, 65, (377,36,0): 105, 91, 65, (377,37,0): 105, 91, 65, (377,38,0): 105, 91, 65, (377,39,0): 105, 91, 65, (377,40,0): 106, 92, 66, (377,41,0): 105, 91, 65, (377,42,0): 105, 91, 65, (377,43,0): 104, 90, 64, (377,44,0): 103, 89, 63, (377,45,0): 103, 89, 63, (377,46,0): 102, 88, 62, (377,47,0): 102, 88, 61, (377,48,0): 103, 88, 59, (377,49,0): 101, 86, 57, (377,50,0): 98, 83, 54, (377,51,0): 96, 81, 52, (377,52,0): 94, 78, 52, (377,53,0): 94, 78, 52, (377,54,0): 94, 78, 53, (377,55,0): 94, 78, 53, (377,56,0): 90, 74, 49, (377,57,0): 86, 70, 45, (377,58,0): 80, 64, 41, (377,59,0): 76, 60, 37, (377,60,0): 75, 58, 38, (377,61,0): 74, 57, 37, (377,62,0): 71, 54, 34, (377,63,0): 67, 52, 33, (377,64,0): 64, 51, 35, (377,65,0): 63, 49, 36, (377,66,0): 63, 49, 36, (377,67,0): 64, 50, 37, (377,68,0): 65, 51, 38, (377,69,0): 67, 54, 38, (377,70,0): 69, 56, 39, (377,71,0): 70, 57, 40, (377,72,0): 73, 60, 41, (377,73,0): 73, 60, 41, (377,74,0): 73, 61, 39, (377,75,0): 74, 62, 38, (377,76,0): 74, 62, 38, (377,77,0): 74, 62, 38, (377,78,0): 74, 62, 38, (377,79,0): 74, 62, 38, (377,80,0): 76, 61, 40, (377,81,0): 75, 60, 39, (377,82,0): 74, 59, 38, (377,83,0): 72, 57, 36, (377,84,0): 71, 56, 35, (377,85,0): 70, 55, 34, (377,86,0): 69, 54, 33, (377,87,0): 69, 54, 33, (377,88,0): 72, 57, 36, (377,89,0): 71, 56, 35, (377,90,0): 71, 56, 35, (377,91,0): 70, 55, 34, (377,92,0): 69, 54, 33, (377,93,0): 68, 53, 32, (377,94,0): 67, 52, 31, (377,95,0): 67, 52, 33, (377,96,0): 70, 54, 39, (377,97,0): 70, 54, 41, (377,98,0): 70, 54, 39, (377,99,0): 71, 55, 40, (377,100,0): 71, 55, 40, (377,101,0): 72, 56, 41, (377,102,0): 72, 56, 41, (377,103,0): 72, 56, 41, (377,104,0): 75, 59, 44, (377,105,0): 75, 59, 43, (377,106,0): 77, 61, 46, (377,107,0): 78, 62, 46, (377,108,0): 80, 64, 48, (377,109,0): 82, 66, 50, (377,110,0): 83, 67, 51, (377,111,0): 84, 69, 50, (377,112,0): 84, 67, 47, (377,113,0): 86, 69, 49, (377,114,0): 89, 71, 49, (377,115,0): 92, 74, 52, (377,116,0): 95, 77, 55, (377,117,0): 96, 78, 56, (377,118,0): 99, 78, 57, (377,119,0): 99, 79, 55, (377,120,0): 105, 83, 62, (377,121,0): 108, 86, 63, (377,122,0): 112, 90, 67, (377,123,0): 115, 93, 70, (377,124,0): 119, 94, 72, (377,125,0): 118, 94, 70, (377,126,0): 115, 91, 67, (377,127,0): 113, 89, 65, (377,128,0): 113, 86, 65, (377,129,0): 113, 86, 65, (377,130,0): 112, 87, 67, (377,131,0): 114, 89, 69, (377,132,0): 116, 91, 71, (377,133,0): 118, 93, 73, (377,134,0): 119, 97, 76, (377,135,0): 120, 98, 77, (377,136,0): 119, 98, 79, (377,137,0): 124, 103, 84, (377,138,0): 130, 112, 92, (377,139,0): 142, 124, 104, (377,140,0): 158, 140, 120, (377,141,0): 177, 159, 139, (377,142,0): 193, 176, 158, (377,143,0): 199, 188, 168, (377,144,0): 191, 192, 174, (377,145,0): 186, 193, 175, (377,146,0): 185, 194, 175, (377,147,0): 185, 196, 179, (377,148,0): 186, 199, 182, (377,149,0): 184, 201, 185, (377,150,0): 181, 202, 187, (377,151,0): 177, 201, 187, (377,152,0): 173, 201, 187, (377,153,0): 171, 201, 189, (377,154,0): 169, 202, 191, (377,155,0): 166, 204, 193, (377,156,0): 163, 203, 194, (377,157,0): 161, 203, 193, (377,158,0): 159, 202, 193, (377,159,0): 159, 202, 193, (377,160,0): 160, 201, 193, (377,161,0): 160, 201, 193, (377,162,0): 159, 202, 193, (377,163,0): 159, 202, 193, (377,164,0): 159, 202, 195, (377,165,0): 159, 202, 195, (377,166,0): 157, 202, 199, (377,167,0): 157, 202, 199, (377,168,0): 158, 202, 201, (377,169,0): 157, 203, 201, (377,170,0): 156, 201, 204, (377,171,0): 156, 201, 204, (377,172,0): 153, 201, 205, (377,173,0): 153, 201, 205, (377,174,0): 153, 201, 205, (377,175,0): 151, 200, 205, (377,176,0): 147, 195, 207, (377,177,0): 147, 196, 210, (377,178,0): 147, 196, 210, (377,179,0): 148, 197, 212, (377,180,0): 148, 197, 212, (377,181,0): 149, 198, 213, (377,182,0): 149, 198, 215, (377,183,0): 149, 198, 215, (377,184,0): 151, 200, 217, (377,185,0): 151, 199, 219, (377,186,0): 150, 198, 218, (377,187,0): 149, 197, 217, (377,188,0): 148, 196, 218, (377,189,0): 146, 194, 216, (377,190,0): 145, 193, 215, (377,191,0): 143, 193, 216, (377,192,0): 145, 195, 222, (377,193,0): 144, 195, 222, (377,194,0): 144, 195, 222, (377,195,0): 144, 195, 222, (377,196,0): 145, 196, 223, (377,197,0): 145, 196, 225, (377,198,0): 145, 196, 225, (377,199,0): 145, 196, 227, (377,200,0): 147, 198, 229, (377,201,0): 147, 198, 229, (377,202,0): 146, 196, 229, (377,203,0): 146, 196, 229, (377,204,0): 145, 195, 228, (377,205,0): 145, 195, 228, (377,206,0): 145, 195, 230, (377,207,0): 144, 194, 229, (377,208,0): 140, 192, 229, (377,209,0): 139, 193, 229, (377,210,0): 140, 194, 230, (377,211,0): 142, 194, 231, (377,212,0): 143, 195, 232, (377,213,0): 144, 196, 233, (377,214,0): 145, 197, 234, (377,215,0): 147, 197, 234, (377,216,0): 148, 198, 235, (377,217,0): 150, 198, 236, (377,218,0): 151, 199, 237, (377,219,0): 152, 200, 238, (377,220,0): 152, 200, 238, (377,221,0): 155, 200, 239, (377,222,0): 155, 200, 239, (377,223,0): 156, 199, 241, (377,224,0): 154, 197, 239, (377,225,0): 156, 198, 240, (377,226,0): 157, 199, 241, (377,227,0): 157, 199, 241, (377,228,0): 159, 198, 241, (377,229,0): 159, 198, 241, (377,230,0): 158, 197, 240, (377,231,0): 157, 196, 239, (377,232,0): 158, 195, 237, (377,233,0): 158, 195, 237, (377,234,0): 161, 196, 238, (377,235,0): 161, 196, 238, (377,236,0): 162, 197, 239, (377,237,0): 162, 197, 239, (377,238,0): 163, 196, 239, (377,239,0): 164, 197, 240, (377,240,0): 163, 196, 239, (377,241,0): 163, 196, 241, (377,242,0): 162, 195, 240, (377,243,0): 160, 194, 239, (377,244,0): 159, 193, 239, (377,245,0): 156, 193, 238, (377,246,0): 155, 191, 239, (377,247,0): 154, 192, 239, (377,248,0): 155, 193, 242, (377,249,0): 153, 193, 242, (377,250,0): 152, 192, 243, (377,251,0): 151, 193, 243, (377,252,0): 150, 191, 243, (377,253,0): 149, 192, 243, (377,254,0): 148, 191, 242, (377,255,0): 146, 192, 244, (377,256,0): 147, 194, 250, (377,257,0): 145, 194, 252, (377,258,0): 145, 194, 252, (377,259,0): 146, 195, 253, (377,260,0): 147, 196, 254, (377,261,0): 147, 196, 254, (377,262,0): 147, 196, 254, (377,263,0): 148, 197, 255, (377,264,0): 147, 196, 254, (377,265,0): 148, 197, 255, (377,266,0): 148, 197, 255, (377,267,0): 148, 197, 255, (377,268,0): 149, 198, 255, (377,269,0): 150, 199, 255, (377,270,0): 150, 199, 255, (377,271,0): 150, 199, 255, (377,272,0): 145, 195, 254, (377,273,0): 144, 196, 254, (377,274,0): 144, 196, 255, (377,275,0): 144, 196, 254, (377,276,0): 144, 196, 255, (377,277,0): 144, 196, 254, (377,278,0): 144, 196, 254, (377,279,0): 144, 196, 254, (377,280,0): 143, 195, 253, (377,281,0): 144, 196, 254, (377,282,0): 145, 197, 254, (377,283,0): 146, 198, 255, (377,284,0): 146, 198, 255, (377,285,0): 145, 197, 254, (377,286,0): 144, 196, 253, (377,287,0): 143, 195, 252, (377,288,0): 142, 194, 251, (377,289,0): 143, 195, 252, (377,290,0): 143, 195, 253, (377,291,0): 144, 196, 255, (377,292,0): 143, 194, 255, (377,293,0): 142, 193, 255, (377,294,0): 141, 190, 255, (377,295,0): 141, 189, 255, (377,296,0): 142, 187, 254, (377,297,0): 144, 188, 251, (377,298,0): 149, 187, 250, (377,299,0): 151, 187, 247, (377,300,0): 154, 186, 245, (377,301,0): 155, 186, 241, (377,302,0): 158, 185, 240, (377,303,0): 161, 182, 237, (377,304,0): 161, 170, 227, (377,305,0): 150, 152, 203, (377,306,0): 121, 119, 159, (377,307,0): 91, 85, 113, (377,308,0): 74, 65, 82, (377,309,0): 74, 64, 72, (377,310,0): 78, 69, 74, (377,311,0): 78, 73, 77, (377,312,0): 81, 80, 85, (377,313,0): 85, 85, 93, (377,314,0): 89, 91, 103, (377,315,0): 96, 96, 108, (377,316,0): 97, 93, 107, (377,317,0): 95, 85, 96, (377,318,0): 91, 75, 85, (377,319,0): 88, 68, 77, (377,320,0): 84, 61, 71, (377,321,0): 83, 57, 68, (377,322,0): 78, 52, 63, (377,323,0): 73, 47, 58, (377,324,0): 69, 43, 54, (377,325,0): 68, 42, 51, (377,326,0): 67, 41, 50, (377,327,0): 67, 41, 50, (377,328,0): 70, 44, 53, (377,329,0): 69, 43, 52, (377,330,0): 69, 43, 52, (377,331,0): 69, 44, 50, (377,332,0): 70, 45, 51, (377,333,0): 72, 47, 53, (377,334,0): 73, 48, 54, (377,335,0): 75, 48, 53, (377,336,0): 77, 48, 50, (377,337,0): 79, 49, 47, (377,338,0): 83, 49, 47, (377,339,0): 87, 49, 46, (377,340,0): 93, 50, 44, (377,341,0): 100, 53, 47, (377,342,0): 107, 58, 53, (377,343,0): 114, 61, 55, (377,344,0): 111, 58, 52, (377,345,0): 107, 54, 50, (377,346,0): 97, 48, 44, (377,347,0): 88, 40, 38, (377,348,0): 77, 35, 36, (377,349,0): 70, 31, 32, (377,350,0): 66, 30, 32, (377,351,0): 62, 31, 29, (377,352,0): 59, 31, 27, (377,353,0): 57, 32, 25, (377,354,0): 60, 33, 26, (377,355,0): 62, 33, 25, (377,356,0): 67, 34, 27, (377,357,0): 71, 36, 30, (377,358,0): 77, 38, 33, (377,359,0): 82, 39, 33, (377,360,0): 82, 34, 32, (377,361,0): 85, 36, 32, (377,362,0): 88, 37, 34, (377,363,0): 91, 37, 35, (377,364,0): 92, 36, 35, (377,365,0): 92, 36, 35, (377,366,0): 92, 34, 32, (377,367,0): 88, 34, 32, (377,368,0): 80, 34, 34, (377,369,0): 76, 34, 35, (377,370,0): 75, 33, 35, (377,371,0): 74, 32, 34, (377,372,0): 73, 31, 33, (377,373,0): 72, 30, 32, (377,374,0): 70, 29, 33, (377,375,0): 69, 28, 32, (377,376,0): 72, 33, 38, (377,377,0): 71, 32, 37, (377,378,0): 68, 32, 36, (377,379,0): 67, 31, 35, (377,380,0): 66, 29, 36, (377,381,0): 65, 28, 35, (377,382,0): 64, 27, 34, (377,383,0): 64, 27, 34, (377,384,0): 68, 32, 36, (377,385,0): 66, 32, 33, (377,386,0): 65, 30, 34, (377,387,0): 61, 29, 32, (377,388,0): 60, 28, 31, (377,389,0): 57, 27, 29, (377,390,0): 56, 25, 30, (377,391,0): 54, 25, 29, (377,392,0): 50, 23, 28, (377,393,0): 49, 24, 28, (377,394,0): 49, 24, 28, (377,395,0): 47, 25, 28, (377,396,0): 47, 24, 30, (377,397,0): 46, 25, 30, (377,398,0): 46, 25, 30, (377,399,0): 46, 25, 30, (377,400,0): 49, 27, 30, (377,401,0): 49, 27, 30, (377,402,0): 49, 27, 30, (377,403,0): 49, 27, 30, (377,404,0): 49, 27, 30, (377,405,0): 49, 27, 30, (377,406,0): 49, 27, 30, (377,407,0): 49, 27, 30, (377,408,0): 52, 30, 33, (377,409,0): 50, 28, 31, (377,410,0): 48, 26, 29, (377,411,0): 46, 24, 27, (377,412,0): 45, 23, 26, (377,413,0): 45, 23, 26, (377,414,0): 45, 23, 26, (377,415,0): 44, 24, 26, (377,416,0): 44, 25, 29, (377,417,0): 44, 25, 29, (377,418,0): 43, 24, 28, (377,419,0): 43, 24, 28, (377,420,0): 43, 24, 28, (377,421,0): 43, 24, 28, (377,422,0): 43, 24, 28, (377,423,0): 43, 24, 28, (377,424,0): 48, 29, 31, (377,425,0): 49, 30, 32, (377,426,0): 50, 31, 33, (377,427,0): 50, 31, 33, (377,428,0): 50, 31, 33, (377,429,0): 49, 30, 32, (377,430,0): 47, 28, 30, (377,431,0): 46, 27, 29, (377,432,0): 49, 33, 36, (377,433,0): 47, 31, 34, (377,434,0): 46, 30, 33, (377,435,0): 49, 33, 34, (377,436,0): 52, 36, 37, (377,437,0): 52, 38, 37, (377,438,0): 50, 36, 35, (377,439,0): 47, 33, 30, (377,440,0): 48, 33, 30, (377,441,0): 49, 34, 31, (377,442,0): 52, 37, 32, (377,443,0): 56, 41, 36, (377,444,0): 62, 45, 38, (377,445,0): 64, 47, 40, (377,446,0): 67, 48, 42, (377,447,0): 64, 49, 42, (377,448,0): 53, 43, 41, (377,449,0): 47, 39, 37, (377,450,0): 42, 34, 32, (377,451,0): 40, 32, 30, (377,452,0): 41, 33, 31, (377,453,0): 39, 34, 31, (377,454,0): 38, 33, 30, (377,455,0): 37, 32, 29, (377,456,0): 38, 33, 30, (377,457,0): 44, 39, 36, (377,458,0): 50, 45, 42, (377,459,0): 53, 49, 46, (377,460,0): 52, 48, 45, (377,461,0): 50, 46, 43, (377,462,0): 48, 44, 41, (377,463,0): 48, 44, 41, (377,464,0): 51, 47, 46, (377,465,0): 57, 53, 52, (377,466,0): 65, 64, 62, (377,467,0): 72, 73, 68, (377,468,0): 78, 79, 74, (377,469,0): 83, 86, 79, (377,470,0): 90, 93, 84, (377,471,0): 95, 98, 87, (377,472,0): 91, 95, 81, (377,473,0): 89, 91, 77, (377,474,0): 89, 87, 74, (377,475,0): 90, 84, 70, (377,476,0): 89, 82, 66, (377,477,0): 88, 76, 60, (377,478,0): 83, 70, 54, (377,479,0): 78, 65, 49, (377,480,0): 70, 61, 44, (377,481,0): 71, 62, 45, (377,482,0): 72, 63, 46, (377,483,0): 74, 65, 48, (377,484,0): 76, 64, 48, (377,485,0): 76, 64, 48, (377,486,0): 76, 64, 48, (377,487,0): 76, 64, 48, (377,488,0): 78, 65, 49, (377,489,0): 77, 64, 48, (377,490,0): 80, 64, 49, (377,491,0): 82, 66, 51, (377,492,0): 85, 69, 54, (377,493,0): 84, 68, 53, (377,494,0): 81, 63, 49, (377,495,0): 77, 59, 47, (377,496,0): 77, 57, 48, (377,497,0): 72, 52, 45, (377,498,0): 66, 45, 40, (377,499,0): 63, 42, 37, (377,500,0): 63, 42, 37, (377,501,0): 63, 42, 37, (377,502,0): 62, 41, 38, (377,503,0): 61, 40, 37, (377,504,0): 63, 42, 41, (377,505,0): 63, 42, 41, (377,506,0): 63, 42, 41, (377,507,0): 61, 40, 39, (377,508,0): 57, 35, 37, (377,509,0): 51, 29, 31, (377,510,0): 46, 24, 26, (377,511,0): 43, 21, 24, (377,512,0): 45, 24, 29, (377,513,0): 44, 23, 30, (377,514,0): 42, 21, 30, (377,515,0): 41, 20, 29, (377,516,0): 39, 19, 30, (377,517,0): 39, 19, 30, (377,518,0): 39, 19, 31, (377,519,0): 40, 20, 32, (377,520,0): 39, 22, 32, (377,521,0): 39, 22, 30, (377,522,0): 40, 25, 32, (377,523,0): 43, 28, 31, (377,524,0): 46, 31, 34, (377,525,0): 49, 35, 34, (377,526,0): 51, 40, 38, (377,527,0): 52, 41, 35, (377,528,0): 56, 46, 37, (377,529,0): 59, 49, 39, (377,530,0): 62, 52, 43, (377,531,0): 62, 52, 43, (377,532,0): 63, 50, 42, (377,533,0): 61, 48, 40, (377,534,0): 62, 49, 43, (377,535,0): 64, 51, 45, (377,536,0): 67, 54, 48, (377,537,0): 72, 59, 53, (377,538,0): 78, 65, 59, (377,539,0): 81, 68, 62, (377,540,0): 78, 67, 61, (377,541,0): 76, 65, 59, (377,542,0): 76, 65, 59, (377,543,0): 76, 67, 60, (377,544,0): 74, 67, 61, (377,545,0): 72, 65, 59, (377,546,0): 69, 62, 56, (377,547,0): 66, 59, 53, (377,548,0): 64, 57, 51, (377,549,0): 65, 56, 51, (377,550,0): 65, 56, 51, (377,551,0): 65, 56, 51, (377,552,0): 68, 57, 53, (377,553,0): 71, 60, 56, (377,554,0): 74, 63, 59, (377,555,0): 77, 63, 60, (377,556,0): 74, 60, 57, (377,557,0): 69, 55, 52, (377,558,0): 63, 49, 46, (377,559,0): 58, 44, 41, (377,560,0): 55, 41, 38, (377,561,0): 49, 38, 34, (377,562,0): 47, 33, 33, (377,563,0): 42, 30, 30, (377,564,0): 42, 27, 32, (377,565,0): 37, 25, 29, (377,566,0): 32, 19, 28, (377,567,0): 28, 15, 24, (377,568,0): 33, 20, 30, (377,569,0): 33, 20, 30, (377,570,0): 31, 20, 28, (377,571,0): 32, 21, 29, (377,572,0): 33, 22, 28, (377,573,0): 35, 24, 30, (377,574,0): 37, 26, 30, (377,575,0): 39, 27, 31, (377,576,0): 40, 25, 28, (377,577,0): 40, 26, 26, (377,578,0): 40, 25, 28, (377,579,0): 39, 27, 27, (377,580,0): 39, 29, 30, (377,581,0): 42, 32, 31, (377,582,0): 44, 34, 35, (377,583,0): 45, 35, 34, (377,584,0): 51, 39, 41, (377,585,0): 51, 39, 39, (377,586,0): 52, 37, 40, (377,587,0): 53, 37, 38, (377,588,0): 54, 35, 39, (377,589,0): 55, 35, 37, (377,590,0): 55, 32, 38, (377,591,0): 53, 34, 38, (377,592,0): 48, 33, 40, (377,593,0): 45, 34, 42, (377,594,0): 44, 33, 41, (377,595,0): 44, 33, 41, (377,596,0): 43, 32, 40, (377,597,0): 42, 31, 39, (377,598,0): 41, 30, 38, (377,599,0): 41, 30, 38, (378,0,0): 75, 60, 53, (378,1,0): 76, 61, 54, (378,2,0): 76, 62, 53, (378,3,0): 76, 62, 53, (378,4,0): 77, 63, 54, (378,5,0): 78, 64, 55, (378,6,0): 78, 64, 53, (378,7,0): 78, 64, 53, (378,8,0): 80, 66, 53, (378,9,0): 81, 67, 54, (378,10,0): 82, 68, 55, (378,11,0): 83, 69, 56, (378,12,0): 85, 72, 56, (378,13,0): 87, 74, 58, (378,14,0): 88, 75, 59, (378,15,0): 88, 75, 58, (378,16,0): 93, 78, 55, (378,17,0): 95, 81, 55, (378,18,0): 96, 82, 56, (378,19,0): 98, 84, 58, (378,20,0): 99, 85, 59, (378,21,0): 100, 86, 60, (378,22,0): 99, 85, 59, (378,23,0): 99, 85, 59, (378,24,0): 99, 85, 59, (378,25,0): 99, 85, 59, (378,26,0): 100, 86, 60, (378,27,0): 100, 86, 60, (378,28,0): 101, 87, 61, (378,29,0): 101, 87, 61, (378,30,0): 102, 88, 62, (378,31,0): 102, 88, 62, (378,32,0): 104, 90, 64, (378,33,0): 104, 90, 64, (378,34,0): 104, 90, 64, (378,35,0): 104, 90, 64, (378,36,0): 104, 90, 64, (378,37,0): 104, 90, 64, (378,38,0): 104, 90, 64, (378,39,0): 104, 90, 64, (378,40,0): 105, 91, 65, (378,41,0): 105, 91, 65, (378,42,0): 105, 91, 65, (378,43,0): 104, 90, 64, (378,44,0): 104, 90, 64, (378,45,0): 104, 90, 64, (378,46,0): 103, 89, 63, (378,47,0): 103, 89, 62, (378,48,0): 104, 89, 60, (378,49,0): 102, 87, 56, (378,50,0): 100, 85, 56, (378,51,0): 98, 83, 54, (378,52,0): 96, 81, 52, (378,53,0): 96, 81, 52, (378,54,0): 95, 79, 53, (378,55,0): 95, 79, 53, (378,56,0): 90, 74, 49, (378,57,0): 86, 70, 45, (378,58,0): 81, 65, 40, (378,59,0): 77, 61, 36, (378,60,0): 76, 60, 37, (378,61,0): 74, 58, 35, (378,62,0): 70, 54, 31, (378,63,0): 66, 51, 32, (378,64,0): 61, 48, 32, (378,65,0): 60, 48, 36, (378,66,0): 59, 47, 35, (378,67,0): 59, 47, 33, (378,68,0): 60, 48, 34, (378,69,0): 62, 50, 34, (378,70,0): 64, 53, 35, (378,71,0): 65, 54, 36, (378,72,0): 72, 61, 41, (378,73,0): 72, 61, 41, (378,74,0): 72, 61, 39, (378,75,0): 73, 63, 38, (378,76,0): 74, 64, 39, (378,77,0): 74, 64, 37, (378,78,0): 75, 65, 38, (378,79,0): 76, 64, 40, (378,80,0): 79, 64, 43, (378,81,0): 78, 63, 42, (378,82,0): 77, 62, 41, (378,83,0): 75, 60, 39, (378,84,0): 73, 58, 37, (378,85,0): 71, 56, 35, (378,86,0): 70, 55, 34, (378,87,0): 69, 54, 33, (378,88,0): 73, 58, 37, (378,89,0): 73, 58, 37, (378,90,0): 72, 57, 36, (378,91,0): 70, 55, 34, (378,92,0): 69, 54, 33, (378,93,0): 68, 53, 32, (378,94,0): 67, 52, 31, (378,95,0): 66, 51, 32, (378,96,0): 68, 52, 37, (378,97,0): 68, 52, 39, (378,98,0): 68, 52, 39, (378,99,0): 67, 51, 38, (378,100,0): 67, 51, 38, (378,101,0): 67, 51, 38, (378,102,0): 66, 50, 37, (378,103,0): 66, 50, 37, (378,104,0): 71, 55, 42, (378,105,0): 72, 56, 41, (378,106,0): 73, 57, 44, (378,107,0): 75, 59, 44, (378,108,0): 76, 60, 45, (378,109,0): 78, 62, 47, (378,110,0): 79, 63, 48, (378,111,0): 79, 63, 48, (378,112,0): 78, 61, 45, (378,113,0): 80, 63, 45, (378,114,0): 83, 64, 47, (378,115,0): 86, 67, 50, (378,116,0): 88, 70, 50, (378,117,0): 90, 72, 52, (378,118,0): 90, 72, 52, (378,119,0): 90, 72, 50, (378,120,0): 98, 77, 58, (378,121,0): 100, 79, 58, (378,122,0): 102, 81, 60, (378,123,0): 105, 85, 61, (378,124,0): 108, 86, 63, (378,125,0): 109, 87, 64, (378,126,0): 109, 87, 64, (378,127,0): 109, 87, 64, (378,128,0): 106, 84, 63, (378,129,0): 106, 84, 63, (378,130,0): 106, 84, 63, (378,131,0): 106, 84, 63, (378,132,0): 108, 86, 65, (378,133,0): 110, 88, 67, (378,134,0): 114, 89, 69, (378,135,0): 115, 90, 70, (378,136,0): 112, 87, 67, (378,137,0): 116, 91, 71, (378,138,0): 122, 97, 77, (378,139,0): 130, 105, 85, (378,140,0): 141, 116, 96, (378,141,0): 159, 134, 114, (378,142,0): 179, 153, 136, (378,143,0): 188, 170, 150, (378,144,0): 189, 180, 163, (378,145,0): 189, 188, 170, (378,146,0): 194, 195, 177, (378,147,0): 197, 200, 183, (378,148,0): 195, 199, 182, (378,149,0): 191, 200, 183, (378,150,0): 187, 200, 183, (378,151,0): 183, 200, 184, (378,152,0): 176, 196, 184, (378,153,0): 175, 199, 186, (378,154,0): 174, 202, 190, (378,155,0): 172, 204, 193, (378,156,0): 171, 204, 193, (378,157,0): 166, 204, 193, (378,158,0): 161, 201, 192, (378,159,0): 159, 199, 190, (378,160,0): 161, 202, 194, (378,161,0): 161, 202, 194, (378,162,0): 161, 202, 194, (378,163,0): 161, 202, 194, (378,164,0): 160, 203, 196, (378,165,0): 160, 203, 196, (378,166,0): 160, 202, 200, (378,167,0): 158, 203, 200, (378,168,0): 158, 202, 201, (378,169,0): 157, 201, 200, (378,170,0): 156, 201, 204, (378,171,0): 156, 201, 204, (378,172,0): 155, 200, 205, (378,173,0): 154, 199, 204, (378,174,0): 152, 200, 204, (378,175,0): 151, 200, 205, (378,176,0): 148, 196, 208, (378,177,0): 147, 196, 211, (378,178,0): 147, 196, 211, (378,179,0): 148, 197, 214, (378,180,0): 148, 197, 214, (378,181,0): 149, 198, 215, (378,182,0): 149, 197, 217, (378,183,0): 150, 198, 218, (378,184,0): 152, 200, 220, (378,185,0): 151, 199, 221, (378,186,0): 150, 198, 220, (378,187,0): 149, 197, 219, (378,188,0): 148, 196, 219, (378,189,0): 147, 195, 218, (378,190,0): 147, 195, 218, (378,191,0): 144, 194, 217, (378,192,0): 146, 196, 223, (378,193,0): 145, 196, 225, (378,194,0): 145, 196, 225, (378,195,0): 145, 196, 225, (378,196,0): 144, 195, 224, (378,197,0): 144, 195, 226, (378,198,0): 144, 195, 226, (378,199,0): 144, 194, 227, (378,200,0): 147, 197, 230, (378,201,0): 146, 196, 229, (378,202,0): 146, 196, 231, (378,203,0): 146, 196, 231, (378,204,0): 145, 195, 230, (378,205,0): 144, 194, 229, (378,206,0): 144, 194, 231, (378,207,0): 144, 194, 231, (378,208,0): 140, 192, 229, (378,209,0): 140, 192, 231, (378,210,0): 141, 193, 232, (378,211,0): 144, 193, 233, (378,212,0): 145, 194, 234, (378,213,0): 146, 195, 235, (378,214,0): 147, 196, 236, (378,215,0): 148, 196, 236, (378,216,0): 147, 195, 235, (378,217,0): 151, 196, 237, (378,218,0): 154, 199, 240, (378,219,0): 156, 201, 242, (378,220,0): 156, 201, 242, (378,221,0): 156, 199, 241, (378,222,0): 154, 197, 239, (378,223,0): 153, 196, 238, (378,224,0): 155, 198, 241, (378,225,0): 155, 198, 241, (378,226,0): 155, 196, 240, (378,227,0): 155, 196, 240, (378,228,0): 155, 196, 240, (378,229,0): 155, 196, 240, (378,230,0): 158, 197, 240, (378,231,0): 158, 197, 240, (378,232,0): 160, 197, 239, (378,233,0): 160, 197, 239, (378,234,0): 159, 196, 238, (378,235,0): 159, 196, 238, (378,236,0): 160, 195, 235, (378,237,0): 160, 195, 235, (378,238,0): 159, 194, 234, (378,239,0): 160, 193, 234, (378,240,0): 163, 195, 236, (378,241,0): 163, 194, 238, (378,242,0): 162, 193, 237, (378,243,0): 160, 193, 236, (378,244,0): 159, 192, 237, (378,245,0): 157, 191, 236, (378,246,0): 156, 190, 236, (378,247,0): 154, 190, 238, (378,248,0): 154, 192, 241, (378,249,0): 152, 192, 241, (378,250,0): 151, 191, 242, (378,251,0): 150, 192, 242, (378,252,0): 149, 190, 242, (378,253,0): 149, 190, 242, (378,254,0): 147, 190, 243, (378,255,0): 145, 191, 243, (378,256,0): 144, 191, 247, (378,257,0): 144, 191, 247, (378,258,0): 145, 192, 248, (378,259,0): 145, 192, 248, (378,260,0): 146, 193, 249, (378,261,0): 146, 193, 249, (378,262,0): 147, 194, 250, (378,263,0): 147, 194, 250, (378,264,0): 148, 195, 251, (378,265,0): 148, 195, 251, (378,266,0): 148, 195, 251, (378,267,0): 149, 196, 252, (378,268,0): 149, 196, 252, (378,269,0): 150, 197, 253, (378,270,0): 150, 197, 253, (378,271,0): 149, 198, 255, (378,272,0): 145, 195, 255, (378,273,0): 144, 196, 255, (378,274,0): 144, 195, 255, (378,275,0): 144, 196, 255, (378,276,0): 144, 195, 255, (378,277,0): 144, 196, 255, (378,278,0): 144, 196, 255, (378,279,0): 144, 196, 255, (378,280,0): 143, 195, 253, (378,281,0): 144, 196, 254, (378,282,0): 145, 197, 254, (378,283,0): 146, 198, 255, (378,284,0): 146, 198, 255, (378,285,0): 145, 197, 254, (378,286,0): 144, 196, 253, (378,287,0): 143, 195, 252, (378,288,0): 142, 194, 251, (378,289,0): 143, 195, 252, (378,290,0): 143, 195, 253, (378,291,0): 144, 196, 255, (378,292,0): 143, 194, 255, (378,293,0): 142, 193, 255, (378,294,0): 141, 190, 255, (378,295,0): 141, 189, 255, (378,296,0): 143, 186, 254, (378,297,0): 144, 185, 251, (378,298,0): 148, 183, 247, (378,299,0): 150, 184, 245, (378,300,0): 155, 186, 243, (378,301,0): 158, 184, 241, (378,302,0): 158, 183, 237, (378,303,0): 162, 179, 231, (378,304,0): 157, 163, 213, (378,305,0): 134, 133, 177, (378,306,0): 103, 97, 131, (378,307,0): 80, 75, 98, (378,308,0): 71, 63, 76, (378,309,0): 70, 61, 66, (378,310,0): 72, 66, 68, (378,311,0): 78, 74, 75, (378,312,0): 78, 77, 82, (378,313,0): 82, 82, 90, (378,314,0): 89, 89, 101, (378,315,0): 94, 92, 105, (378,316,0): 95, 89, 103, (378,317,0): 92, 80, 92, (378,318,0): 87, 70, 80, (378,319,0): 84, 63, 72, (378,320,0): 82, 58, 71, (378,321,0): 81, 55, 68, (378,322,0): 77, 51, 64, (378,323,0): 72, 46, 57, (378,324,0): 69, 43, 54, (378,325,0): 67, 41, 52, (378,326,0): 67, 41, 50, (378,327,0): 68, 42, 51, (378,328,0): 71, 45, 54, (378,329,0): 71, 45, 54, (378,330,0): 71, 46, 52, (378,331,0): 71, 46, 52, (378,332,0): 72, 47, 53, (378,333,0): 74, 49, 53, (378,334,0): 76, 51, 55, (378,335,0): 78, 52, 55, (378,336,0): 83, 52, 50, (378,337,0): 85, 50, 48, (378,338,0): 87, 49, 46, (378,339,0): 91, 50, 46, (378,340,0): 98, 53, 48, (378,341,0): 105, 56, 51, (378,342,0): 108, 57, 53, (378,343,0): 111, 58, 54, (378,344,0): 103, 50, 46, (378,345,0): 95, 46, 42, (378,346,0): 83, 37, 37, (378,347,0): 72, 30, 31, (378,348,0): 63, 27, 29, (378,349,0): 58, 28, 30, (378,350,0): 57, 31, 34, (378,351,0): 57, 32, 35, (378,352,0): 50, 31, 25, (378,353,0): 50, 31, 24, (378,354,0): 53, 30, 24, (378,355,0): 56, 31, 26, (378,356,0): 61, 32, 28, (378,357,0): 66, 33, 28, (378,358,0): 72, 34, 31, (378,359,0): 75, 36, 31, (378,360,0): 79, 35, 34, (378,361,0): 82, 37, 34, (378,362,0): 87, 39, 37, (378,363,0): 89, 39, 38, (378,364,0): 90, 39, 36, (378,365,0): 88, 37, 34, (378,366,0): 85, 34, 31, (378,367,0): 82, 32, 31, (378,368,0): 79, 35, 34, (378,369,0): 77, 35, 36, (378,370,0): 76, 34, 36, (378,371,0): 75, 33, 35, (378,372,0): 74, 32, 34, (378,373,0): 73, 31, 33, (378,374,0): 71, 30, 34, (378,375,0): 71, 30, 34, (378,376,0): 71, 32, 37, (378,377,0): 70, 31, 36, (378,378,0): 68, 32, 36, (378,379,0): 67, 31, 35, (378,380,0): 66, 29, 36, (378,381,0): 64, 27, 34, (378,382,0): 64, 27, 34, (378,383,0): 63, 26, 33, (378,384,0): 65, 30, 34, (378,385,0): 63, 31, 34, (378,386,0): 62, 30, 33, (378,387,0): 60, 28, 31, (378,388,0): 59, 27, 32, (378,389,0): 56, 25, 30, (378,390,0): 54, 25, 29, (378,391,0): 51, 25, 28, (378,392,0): 50, 23, 28, (378,393,0): 49, 24, 28, (378,394,0): 47, 24, 30, (378,395,0): 46, 25, 30, (378,396,0): 46, 25, 30, (378,397,0): 45, 26, 30, (378,398,0): 45, 26, 32, (378,399,0): 45, 26, 30, (378,400,0): 48, 28, 30, (378,401,0): 48, 28, 30, (378,402,0): 48, 28, 30, (378,403,0): 48, 28, 30, (378,404,0): 48, 28, 30, (378,405,0): 48, 28, 30, (378,406,0): 48, 28, 30, (378,407,0): 48, 28, 30, (378,408,0): 50, 30, 32, (378,409,0): 49, 29, 31, (378,410,0): 47, 27, 29, (378,411,0): 45, 25, 27, (378,412,0): 44, 24, 26, (378,413,0): 44, 24, 26, (378,414,0): 44, 24, 26, (378,415,0): 45, 25, 27, (378,416,0): 43, 24, 28, (378,417,0): 43, 24, 30, (378,418,0): 43, 24, 30, (378,419,0): 43, 24, 30, (378,420,0): 43, 24, 28, (378,421,0): 43, 24, 28, (378,422,0): 43, 24, 28, (378,423,0): 43, 24, 28, (378,424,0): 48, 29, 31, (378,425,0): 49, 30, 32, (378,426,0): 50, 32, 32, (378,427,0): 51, 33, 33, (378,428,0): 51, 33, 33, (378,429,0): 50, 32, 32, (378,430,0): 49, 31, 31, (378,431,0): 49, 31, 31, (378,432,0): 50, 34, 34, (378,433,0): 51, 35, 36, (378,434,0): 53, 39, 39, (378,435,0): 57, 43, 42, (378,436,0): 60, 46, 45, (378,437,0): 56, 45, 41, (378,438,0): 52, 41, 37, (378,439,0): 48, 37, 33, (378,440,0): 49, 35, 32, (378,441,0): 51, 38, 32, (378,442,0): 54, 39, 34, (378,443,0): 57, 42, 37, (378,444,0): 62, 44, 40, (378,445,0): 67, 48, 42, (378,446,0): 71, 50, 45, (378,447,0): 73, 54, 50, (378,448,0): 57, 43, 42, (378,449,0): 50, 40, 39, (378,450,0): 45, 35, 34, (378,451,0): 42, 32, 31, (378,452,0): 41, 31, 30, (378,453,0): 40, 32, 30, (378,454,0): 39, 31, 29, (378,455,0): 38, 30, 28, (378,456,0): 40, 32, 30, (378,457,0): 43, 38, 35, (378,458,0): 49, 44, 41, (378,459,0): 51, 46, 43, (378,460,0): 50, 46, 43, (378,461,0): 48, 44, 41, (378,462,0): 48, 44, 41, (378,463,0): 49, 45, 42, (378,464,0): 49, 45, 44, (378,465,0): 54, 53, 51, (378,466,0): 64, 64, 62, (378,467,0): 72, 74, 69, (378,468,0): 77, 82, 76, (378,469,0): 81, 88, 80, (378,470,0): 85, 93, 80, (378,471,0): 88, 96, 81, (378,472,0): 87, 94, 78, (378,473,0): 86, 90, 73, (378,474,0): 85, 86, 68, (378,475,0): 87, 84, 65, (378,476,0): 89, 82, 63, (378,477,0): 89, 78, 60, (378,478,0): 85, 72, 55, (378,479,0): 81, 68, 51, (378,480,0): 78, 70, 51, (378,481,0): 76, 69, 50, (378,482,0): 76, 69, 50, (378,483,0): 76, 69, 50, (378,484,0): 77, 69, 50, (378,485,0): 78, 70, 51, (378,486,0): 81, 70, 52, (378,487,0): 81, 70, 52, (378,488,0): 77, 66, 48, (378,489,0): 77, 66, 48, (378,490,0): 79, 66, 49, (378,491,0): 82, 69, 52, (378,492,0): 86, 70, 54, (378,493,0): 85, 69, 53, (378,494,0): 81, 65, 49, (378,495,0): 78, 60, 46, (378,496,0): 81, 61, 52, (378,497,0): 74, 54, 47, (378,498,0): 67, 46, 41, (378,499,0): 62, 41, 36, (378,500,0): 61, 40, 35, (378,501,0): 62, 41, 36, (378,502,0): 62, 41, 38, (378,503,0): 62, 41, 38, (378,504,0): 62, 41, 40, (378,505,0): 62, 41, 40, (378,506,0): 62, 41, 40, (378,507,0): 60, 39, 38, (378,508,0): 56, 34, 36, (378,509,0): 51, 29, 31, (378,510,0): 46, 24, 26, (378,511,0): 43, 21, 24, (378,512,0): 44, 23, 28, (378,513,0): 43, 22, 29, (378,514,0): 42, 21, 30, (378,515,0): 40, 19, 28, (378,516,0): 39, 19, 30, (378,517,0): 39, 19, 30, (378,518,0): 40, 20, 32, (378,519,0): 41, 21, 33, (378,520,0): 39, 22, 32, (378,521,0): 40, 23, 31, (378,522,0): 40, 25, 32, (378,523,0): 43, 28, 31, (378,524,0): 48, 33, 36, (378,525,0): 52, 38, 37, (378,526,0): 55, 44, 42, (378,527,0): 57, 46, 40, (378,528,0): 57, 49, 38, (378,529,0): 60, 52, 39, (378,530,0): 64, 54, 44, (378,531,0): 64, 54, 44, (378,532,0): 63, 50, 41, (378,533,0): 61, 48, 39, (378,534,0): 63, 48, 41, (378,535,0): 64, 49, 42, (378,536,0): 68, 53, 46, (378,537,0): 73, 58, 51, (378,538,0): 77, 64, 58, (378,539,0): 80, 67, 61, (378,540,0): 78, 67, 63, (378,541,0): 77, 66, 62, (378,542,0): 75, 66, 61, (378,543,0): 75, 66, 61, (378,544,0): 71, 66, 60, (378,545,0): 70, 65, 59, (378,546,0): 68, 63, 57, (378,547,0): 66, 61, 55, (378,548,0): 64, 59, 53, (378,549,0): 65, 58, 52, (378,550,0): 65, 58, 52, (378,551,0): 65, 58, 52, (378,552,0): 68, 59, 54, (378,553,0): 70, 61, 56, (378,554,0): 73, 64, 59, (378,555,0): 75, 64, 60, (378,556,0): 73, 62, 58, (378,557,0): 68, 57, 53, (378,558,0): 62, 51, 47, (378,559,0): 59, 48, 44, (378,560,0): 54, 43, 39, (378,561,0): 50, 41, 36, (378,562,0): 46, 34, 34, (378,563,0): 42, 32, 31, (378,564,0): 40, 28, 32, (378,565,0): 36, 25, 29, (378,566,0): 31, 20, 28, (378,567,0): 27, 16, 24, (378,568,0): 32, 20, 30, (378,569,0): 31, 19, 29, (378,570,0): 31, 20, 28, (378,571,0): 31, 20, 28, (378,572,0): 32, 21, 27, (378,573,0): 34, 23, 29, (378,574,0): 36, 25, 29, (378,575,0): 38, 26, 30, (378,576,0): 40, 25, 30, (378,577,0): 39, 24, 27, (378,578,0): 39, 24, 29, (378,579,0): 36, 24, 26, (378,580,0): 36, 25, 29, (378,581,0): 38, 28, 29, (378,582,0): 38, 29, 32, (378,583,0): 39, 30, 31, (378,584,0): 47, 36, 40, (378,585,0): 48, 36, 38, (378,586,0): 49, 34, 39, (378,587,0): 50, 34, 37, (378,588,0): 51, 32, 38, (378,589,0): 51, 30, 35, (378,590,0): 52, 29, 37, (378,591,0): 49, 30, 36, (378,592,0): 46, 31, 38, (378,593,0): 43, 32, 40, (378,594,0): 43, 32, 40, (378,595,0): 43, 32, 40, (378,596,0): 43, 32, 40, (378,597,0): 42, 31, 39, (378,598,0): 42, 31, 39, (378,599,0): 42, 31, 39, (379,0,0): 76, 61, 54, (379,1,0): 76, 61, 54, (379,2,0): 76, 62, 53, (379,3,0): 77, 63, 54, (379,4,0): 77, 63, 54, (379,5,0): 78, 64, 55, (379,6,0): 78, 64, 53, (379,7,0): 79, 65, 54, (379,8,0): 80, 66, 53, (379,9,0): 80, 66, 53, (379,10,0): 81, 67, 54, (379,11,0): 83, 69, 56, (379,12,0): 85, 72, 56, (379,13,0): 86, 73, 57, (379,14,0): 87, 74, 58, (379,15,0): 88, 75, 58, (379,16,0): 93, 78, 55, (379,17,0): 95, 81, 55, (379,18,0): 96, 82, 56, (379,19,0): 98, 84, 58, (379,20,0): 99, 85, 59, (379,21,0): 100, 86, 60, (379,22,0): 99, 85, 59, (379,23,0): 99, 85, 59, (379,24,0): 99, 85, 59, (379,25,0): 99, 85, 59, (379,26,0): 100, 86, 60, (379,27,0): 100, 86, 60, (379,28,0): 101, 87, 61, (379,29,0): 101, 87, 61, (379,30,0): 102, 88, 62, (379,31,0): 102, 88, 62, (379,32,0): 104, 90, 64, (379,33,0): 104, 90, 64, (379,34,0): 104, 90, 64, (379,35,0): 104, 90, 64, (379,36,0): 104, 90, 64, (379,37,0): 104, 90, 64, (379,38,0): 104, 90, 64, (379,39,0): 104, 90, 64, (379,40,0): 105, 91, 65, (379,41,0): 105, 91, 65, (379,42,0): 105, 91, 65, (379,43,0): 105, 91, 65, (379,44,0): 105, 91, 65, (379,45,0): 104, 90, 64, (379,46,0): 104, 90, 64, (379,47,0): 104, 90, 63, (379,48,0): 105, 90, 61, (379,49,0): 104, 89, 58, (379,50,0): 103, 88, 59, (379,51,0): 101, 86, 57, (379,52,0): 99, 84, 55, (379,53,0): 98, 83, 54, (379,54,0): 97, 81, 55, (379,55,0): 97, 81, 55, (379,56,0): 91, 75, 50, (379,57,0): 87, 71, 46, (379,58,0): 82, 66, 41, (379,59,0): 79, 63, 38, (379,60,0): 77, 61, 38, (379,61,0): 74, 58, 35, (379,62,0): 70, 54, 31, (379,63,0): 65, 50, 31, (379,64,0): 59, 45, 32, (379,65,0): 57, 45, 33, (379,66,0): 57, 45, 33, (379,67,0): 57, 45, 33, (379,68,0): 57, 45, 31, (379,69,0): 59, 47, 33, (379,70,0): 60, 48, 32, (379,71,0): 61, 50, 32, (379,72,0): 70, 59, 39, (379,73,0): 71, 60, 38, (379,74,0): 72, 61, 39, (379,75,0): 73, 63, 38, (379,76,0): 74, 64, 37, (379,77,0): 75, 65, 38, (379,78,0): 76, 66, 39, (379,79,0): 77, 67, 40, (379,80,0): 80, 68, 44, (379,81,0): 82, 67, 46, (379,82,0): 81, 66, 45, (379,83,0): 79, 64, 43, (379,84,0): 76, 61, 40, (379,85,0): 73, 58, 37, (379,86,0): 71, 56, 35, (379,87,0): 70, 55, 34, (379,88,0): 72, 57, 36, (379,89,0): 72, 57, 36, (379,90,0): 71, 56, 35, (379,91,0): 71, 56, 35, (379,92,0): 70, 55, 34, (379,93,0): 69, 54, 33, (379,94,0): 69, 54, 33, (379,95,0): 68, 53, 34, (379,96,0): 69, 53, 38, (379,97,0): 68, 52, 39, (379,98,0): 68, 52, 39, (379,99,0): 66, 50, 37, (379,100,0): 65, 49, 36, (379,101,0): 64, 48, 35, (379,102,0): 63, 47, 34, (379,103,0): 63, 47, 34, (379,104,0): 68, 52, 39, (379,105,0): 68, 52, 39, (379,106,0): 69, 53, 40, (379,107,0): 70, 54, 41, (379,108,0): 72, 56, 43, (379,109,0): 73, 57, 44, (379,110,0): 74, 57, 47, (379,111,0): 74, 58, 45, (379,112,0): 75, 57, 43, (379,113,0): 76, 59, 43, (379,114,0): 79, 60, 46, (379,115,0): 82, 63, 48, (379,116,0): 84, 65, 50, (379,117,0): 85, 66, 49, (379,118,0): 85, 66, 49, (379,119,0): 85, 67, 47, (379,120,0): 89, 71, 51, (379,121,0): 89, 71, 51, (379,122,0): 93, 72, 53, (379,123,0): 95, 74, 53, (379,124,0): 97, 76, 55, (379,125,0): 100, 80, 56, (379,126,0): 102, 82, 58, (379,127,0): 103, 83, 59, (379,128,0): 102, 81, 60, (379,129,0): 102, 81, 60, (379,130,0): 101, 80, 59, (379,131,0): 101, 80, 59, (379,132,0): 103, 81, 60, (379,133,0): 105, 83, 62, (379,134,0): 108, 83, 63, (379,135,0): 110, 85, 65, (379,136,0): 111, 84, 65, (379,137,0): 115, 88, 69, (379,138,0): 118, 91, 72, (379,139,0): 121, 92, 74, (379,140,0): 125, 96, 78, (379,141,0): 136, 107, 89, (379,142,0): 155, 124, 106, (379,143,0): 164, 139, 119, (379,144,0): 176, 161, 142, (379,145,0): 183, 175, 156, (379,146,0): 198, 189, 172, (379,147,0): 204, 199, 180, (379,148,0): 201, 198, 181, (379,149,0): 194, 195, 179, (379,150,0): 190, 194, 179, (379,151,0): 185, 196, 180, (379,152,0): 183, 197, 184, (379,153,0): 178, 198, 186, (379,154,0): 178, 200, 188, (379,155,0): 176, 202, 189, (379,156,0): 172, 202, 190, (379,157,0): 170, 202, 189, (379,158,0): 167, 200, 189, (379,159,0): 163, 201, 190, (379,160,0): 162, 202, 193, (379,161,0): 161, 202, 194, (379,162,0): 161, 202, 194, (379,163,0): 161, 202, 194, (379,164,0): 160, 203, 196, (379,165,0): 160, 203, 196, (379,166,0): 160, 202, 200, (379,167,0): 160, 202, 200, (379,168,0): 157, 201, 200, (379,169,0): 157, 201, 200, (379,170,0): 156, 201, 204, (379,171,0): 155, 200, 203, (379,172,0): 155, 200, 205, (379,173,0): 154, 199, 204, (379,174,0): 152, 200, 204, (379,175,0): 151, 198, 206, (379,176,0): 148, 196, 210, (379,177,0): 148, 197, 214, (379,178,0): 148, 197, 214, (379,179,0): 148, 197, 214, (379,180,0): 149, 198, 215, (379,181,0): 150, 199, 216, (379,182,0): 150, 198, 218, (379,183,0): 150, 198, 218, (379,184,0): 152, 200, 222, (379,185,0): 151, 199, 221, (379,186,0): 151, 199, 221, (379,187,0): 150, 198, 221, (379,188,0): 150, 198, 221, (379,189,0): 149, 197, 220, (379,190,0): 148, 196, 219, (379,191,0): 146, 196, 221, (379,192,0): 146, 195, 225, (379,193,0): 145, 196, 225, (379,194,0): 145, 196, 225, (379,195,0): 145, 196, 225, (379,196,0): 144, 195, 226, (379,197,0): 144, 195, 226, (379,198,0): 144, 194, 227, (379,199,0): 144, 194, 227, (379,200,0): 146, 196, 229, (379,201,0): 146, 196, 229, (379,202,0): 146, 196, 231, (379,203,0): 145, 195, 230, (379,204,0): 145, 195, 232, (379,205,0): 144, 194, 231, (379,206,0): 144, 194, 231, (379,207,0): 143, 193, 230, (379,208,0): 142, 191, 231, (379,209,0): 142, 191, 231, (379,210,0): 143, 192, 232, (379,211,0): 144, 193, 233, (379,212,0): 145, 194, 234, (379,213,0): 147, 195, 235, (379,214,0): 148, 196, 236, (379,215,0): 148, 196, 236, (379,216,0): 151, 196, 237, (379,217,0): 152, 197, 238, (379,218,0): 153, 198, 239, (379,219,0): 155, 198, 240, (379,220,0): 155, 198, 240, (379,221,0): 155, 198, 240, (379,222,0): 153, 196, 238, (379,223,0): 154, 195, 239, (379,224,0): 157, 198, 244, (379,225,0): 155, 196, 242, (379,226,0): 154, 195, 239, (379,227,0): 154, 192, 237, (379,228,0): 154, 192, 237, (379,229,0): 156, 194, 239, (379,230,0): 158, 195, 239, (379,231,0): 160, 197, 241, (379,232,0): 159, 196, 238, (379,233,0): 160, 195, 237, (379,234,0): 160, 195, 237, (379,235,0): 160, 195, 235, (379,236,0): 160, 193, 234, (379,237,0): 160, 193, 234, (379,238,0): 160, 193, 234, (379,239,0): 159, 192, 233, (379,240,0): 164, 193, 235, (379,241,0): 163, 192, 234, (379,242,0): 162, 191, 233, (379,243,0): 159, 190, 234, (379,244,0): 158, 189, 233, (379,245,0): 156, 189, 234, (379,246,0): 155, 187, 234, (379,247,0): 154, 188, 234, (379,248,0): 153, 189, 237, (379,249,0): 152, 190, 239, (379,250,0): 150, 190, 241, (379,251,0): 149, 189, 240, (379,252,0): 148, 189, 241, (379,253,0): 147, 188, 240, (379,254,0): 146, 189, 242, (379,255,0): 143, 189, 241, (379,256,0): 142, 187, 242, (379,257,0): 142, 189, 245, (379,258,0): 142, 189, 245, (379,259,0): 143, 190, 246, (379,260,0): 143, 190, 246, (379,261,0): 144, 191, 247, (379,262,0): 144, 191, 247, (379,263,0): 144, 191, 247, (379,264,0): 146, 193, 249, (379,265,0): 146, 193, 249, (379,266,0): 146, 193, 249, (379,267,0): 147, 194, 250, (379,268,0): 147, 194, 250, (379,269,0): 148, 195, 251, (379,270,0): 148, 195, 251, (379,271,0): 146, 195, 253, (379,272,0): 144, 194, 255, (379,273,0): 143, 194, 255, (379,274,0): 143, 194, 255, (379,275,0): 143, 194, 255, (379,276,0): 143, 194, 255, (379,277,0): 143, 194, 255, (379,278,0): 143, 194, 255, (379,279,0): 143, 195, 255, (379,280,0): 142, 194, 252, (379,281,0): 143, 195, 253, (379,282,0): 144, 196, 253, (379,283,0): 145, 197, 254, (379,284,0): 145, 197, 254, (379,285,0): 144, 196, 253, (379,286,0): 143, 195, 252, (379,287,0): 142, 194, 251, (379,288,0): 142, 194, 251, (379,289,0): 143, 195, 252, (379,290,0): 143, 195, 255, (379,291,0): 144, 195, 255, (379,292,0): 143, 194, 255, (379,293,0): 143, 192, 255, (379,294,0): 142, 189, 255, (379,295,0): 143, 188, 255, (379,296,0): 144, 184, 253, (379,297,0): 143, 182, 249, (379,298,0): 145, 180, 244, (379,299,0): 150, 182, 243, (379,300,0): 157, 183, 242, (379,301,0): 158, 183, 239, (379,302,0): 156, 179, 231, (379,303,0): 157, 173, 222, (379,304,0): 147, 150, 195, (379,305,0): 120, 114, 152, (379,306,0): 88, 82, 110, (379,307,0): 78, 71, 89, (379,308,0): 75, 67, 78, (379,309,0): 69, 63, 67, (379,310,0): 70, 66, 67, (379,311,0): 77, 75, 76, (379,312,0): 80, 79, 84, (379,313,0): 83, 83, 91, (379,314,0): 90, 88, 101, (379,315,0): 94, 90, 104, (379,316,0): 97, 86, 100, (379,317,0): 91, 77, 90, (379,318,0): 86, 66, 77, (379,319,0): 81, 58, 68, (379,320,0): 81, 55, 68, (379,321,0): 79, 53, 66, (379,322,0): 75, 49, 62, (379,323,0): 71, 45, 58, (379,324,0): 68, 42, 53, (379,325,0): 67, 41, 52, (379,326,0): 68, 42, 53, (379,327,0): 68, 42, 51, (379,328,0): 70, 44, 53, (379,329,0): 70, 45, 51, (379,330,0): 70, 45, 51, (379,331,0): 70, 45, 51, (379,332,0): 72, 47, 51, (379,333,0): 74, 49, 53, (379,334,0): 76, 51, 55, (379,335,0): 80, 51, 53, (379,336,0): 86, 50, 50, (379,337,0): 89, 49, 47, (379,338,0): 92, 51, 49, (379,339,0): 98, 54, 51, (379,340,0): 106, 58, 54, (379,341,0): 108, 59, 55, (379,342,0): 104, 55, 51, (379,343,0): 100, 51, 47, (379,344,0): 90, 40, 39, (379,345,0): 83, 38, 35, (379,346,0): 73, 31, 32, (379,347,0): 63, 27, 27, (379,348,0): 56, 26, 28, (379,349,0): 53, 27, 30, (379,350,0): 52, 30, 33, (379,351,0): 53, 33, 35, (379,352,0): 49, 31, 29, (379,353,0): 49, 31, 27, (379,354,0): 51, 30, 27, (379,355,0): 54, 30, 26, (379,356,0): 60, 30, 28, (379,357,0): 63, 32, 29, (379,358,0): 68, 33, 31, (379,359,0): 73, 33, 33, (379,360,0): 77, 35, 36, (379,361,0): 81, 37, 36, (379,362,0): 84, 38, 38, (379,363,0): 88, 40, 38, (379,364,0): 87, 39, 37, (379,365,0): 84, 36, 32, (379,366,0): 80, 32, 30, (379,367,0): 76, 31, 28, (379,368,0): 78, 34, 33, (379,369,0): 76, 34, 35, (379,370,0): 76, 34, 36, (379,371,0): 75, 33, 35, (379,372,0): 74, 32, 34, (379,373,0): 74, 32, 34, (379,374,0): 72, 31, 35, (379,375,0): 72, 31, 35, (379,376,0): 70, 31, 36, (379,377,0): 69, 30, 35, (379,378,0): 67, 31, 35, (379,379,0): 66, 30, 34, (379,380,0): 65, 28, 35, (379,381,0): 63, 26, 33, (379,382,0): 63, 26, 33, (379,383,0): 61, 26, 32, (379,384,0): 61, 29, 32, (379,385,0): 61, 29, 32, (379,386,0): 60, 28, 31, (379,387,0): 57, 27, 29, (379,388,0): 56, 25, 30, (379,389,0): 54, 25, 29, (379,390,0): 51, 25, 28, (379,391,0): 50, 25, 28, (379,392,0): 49, 24, 28, (379,393,0): 47, 25, 28, (379,394,0): 46, 25, 30, (379,395,0): 45, 26, 30, (379,396,0): 45, 26, 30, (379,397,0): 45, 26, 30, (379,398,0): 45, 26, 32, (379,399,0): 45, 26, 30, (379,400,0): 48, 27, 32, (379,401,0): 48, 28, 30, (379,402,0): 48, 28, 30, (379,403,0): 48, 28, 30, (379,404,0): 48, 28, 30, (379,405,0): 48, 28, 30, (379,406,0): 48, 28, 30, (379,407,0): 48, 28, 30, (379,408,0): 49, 29, 31, (379,409,0): 48, 28, 30, (379,410,0): 46, 26, 28, (379,411,0): 45, 25, 27, (379,412,0): 44, 24, 26, (379,413,0): 44, 24, 26, (379,414,0): 45, 25, 27, (379,415,0): 45, 24, 29, (379,416,0): 42, 23, 29, (379,417,0): 42, 23, 29, (379,418,0): 43, 24, 30, (379,419,0): 43, 24, 30, (379,420,0): 43, 24, 30, (379,421,0): 44, 25, 29, (379,422,0): 44, 25, 29, (379,423,0): 44, 25, 29, (379,424,0): 48, 29, 31, (379,425,0): 49, 30, 32, (379,426,0): 51, 33, 33, (379,427,0): 52, 34, 34, (379,428,0): 53, 35, 35, (379,429,0): 53, 35, 35, (379,430,0): 52, 34, 32, (379,431,0): 52, 34, 32, (379,432,0): 56, 41, 38, (379,433,0): 59, 44, 41, (379,434,0): 63, 49, 46, (379,435,0): 67, 53, 50, (379,436,0): 65, 54, 50, (379,437,0): 61, 50, 46, (379,438,0): 54, 43, 39, (379,439,0): 49, 38, 34, (379,440,0): 53, 40, 34, (379,441,0): 54, 41, 35, (379,442,0): 57, 42, 37, (379,443,0): 61, 43, 39, (379,444,0): 63, 44, 40, (379,445,0): 68, 47, 44, (379,446,0): 75, 51, 49, (379,447,0): 77, 56, 53, (379,448,0): 59, 43, 43, (379,449,0): 55, 41, 41, (379,450,0): 50, 36, 36, (379,451,0): 44, 32, 32, (379,452,0): 42, 30, 30, (379,453,0): 40, 30, 29, (379,454,0): 39, 29, 28, (379,455,0): 38, 30, 28, (379,456,0): 40, 32, 30, (379,457,0): 44, 36, 34, (379,458,0): 49, 41, 39, (379,459,0): 49, 44, 41, (379,460,0): 49, 44, 41, (379,461,0): 47, 43, 40, (379,462,0): 49, 45, 42, (379,463,0): 50, 46, 43, (379,464,0): 48, 47, 45, (379,465,0): 54, 55, 50, (379,466,0): 63, 65, 60, (379,467,0): 72, 77, 70, (379,468,0): 79, 86, 78, (379,469,0): 82, 92, 81, (379,470,0): 85, 96, 80, (379,471,0): 86, 97, 80, (379,472,0): 87, 96, 77, (379,473,0): 87, 92, 72, (379,474,0): 85, 87, 66, (379,475,0): 87, 85, 64, (379,476,0): 89, 83, 61, (379,477,0): 90, 79, 57, (379,478,0): 87, 75, 53, (379,479,0): 83, 71, 49, (379,480,0): 82, 74, 55, (379,481,0): 80, 73, 54, (379,482,0): 78, 71, 52, (379,483,0): 77, 70, 51, (379,484,0): 78, 70, 51, (379,485,0): 79, 71, 52, (379,486,0): 83, 72, 54, (379,487,0): 85, 74, 56, (379,488,0): 78, 67, 49, (379,489,0): 76, 65, 47, (379,490,0): 77, 64, 47, (379,491,0): 79, 66, 49, (379,492,0): 84, 68, 52, (379,493,0): 85, 69, 53, (379,494,0): 83, 67, 51, (379,495,0): 81, 65, 50, (379,496,0): 82, 64, 54, (379,497,0): 76, 56, 49, (379,498,0): 67, 46, 41, (379,499,0): 61, 40, 35, (379,500,0): 60, 39, 34, (379,501,0): 61, 40, 35, (379,502,0): 62, 41, 38, (379,503,0): 62, 41, 38, (379,504,0): 62, 41, 40, (379,505,0): 61, 40, 39, (379,506,0): 60, 39, 38, (379,507,0): 58, 37, 36, (379,508,0): 55, 33, 35, (379,509,0): 51, 29, 31, (379,510,0): 47, 25, 27, (379,511,0): 44, 22, 25, (379,512,0): 43, 22, 27, (379,513,0): 42, 21, 28, (379,514,0): 41, 20, 29, (379,515,0): 40, 19, 28, (379,516,0): 39, 19, 30, (379,517,0): 40, 20, 31, (379,518,0): 41, 21, 33, (379,519,0): 41, 21, 33, (379,520,0): 39, 22, 32, (379,521,0): 40, 23, 31, (379,522,0): 41, 26, 33, (379,523,0): 44, 29, 32, (379,524,0): 49, 34, 37, (379,525,0): 55, 41, 40, (379,526,0): 58, 47, 45, (379,527,0): 62, 51, 45, (379,528,0): 61, 53, 42, (379,529,0): 63, 55, 42, (379,530,0): 66, 56, 44, (379,531,0): 65, 55, 43, (379,532,0): 63, 50, 41, (379,533,0): 61, 48, 39, (379,534,0): 62, 47, 40, (379,535,0): 63, 48, 41, (379,536,0): 68, 53, 46, (379,537,0): 72, 57, 50, (379,538,0): 76, 61, 56, (379,539,0): 79, 66, 60, (379,540,0): 78, 67, 63, (379,541,0): 76, 67, 62, (379,542,0): 74, 65, 60, (379,543,0): 72, 65, 59, (379,544,0): 70, 65, 59, (379,545,0): 68, 65, 58, (379,546,0): 68, 63, 57, (379,547,0): 67, 62, 56, (379,548,0): 66, 61, 55, (379,549,0): 65, 60, 54, (379,550,0): 67, 60, 54, (379,551,0): 67, 60, 54, (379,552,0): 69, 60, 55, (379,553,0): 71, 62, 57, (379,554,0): 73, 64, 59, (379,555,0): 74, 65, 60, (379,556,0): 73, 62, 58, (379,557,0): 69, 58, 54, (379,558,0): 64, 53, 49, (379,559,0): 60, 51, 46, (379,560,0): 55, 46, 41, (379,561,0): 51, 42, 37, (379,562,0): 46, 36, 35, (379,563,0): 43, 33, 32, (379,564,0): 40, 29, 33, (379,565,0): 37, 26, 30, (379,566,0): 32, 21, 29, (379,567,0): 28, 17, 25, (379,568,0): 32, 20, 30, (379,569,0): 31, 19, 29, (379,570,0): 30, 19, 27, (379,571,0): 30, 19, 27, (379,572,0): 31, 20, 26, (379,573,0): 33, 22, 28, (379,574,0): 34, 23, 27, (379,575,0): 36, 24, 28, (379,576,0): 37, 24, 31, (379,577,0): 36, 23, 30, (379,578,0): 35, 22, 29, (379,579,0): 33, 22, 28, (379,580,0): 33, 22, 28, (379,581,0): 33, 24, 29, (379,582,0): 34, 25, 30, (379,583,0): 34, 25, 30, (379,584,0): 44, 33, 39, (379,585,0): 43, 32, 38, (379,586,0): 44, 31, 38, (379,587,0): 45, 30, 37, (379,588,0): 46, 29, 37, (379,589,0): 47, 27, 36, (379,590,0): 48, 27, 36, (379,591,0): 47, 27, 36, (379,592,0): 43, 30, 39, (379,593,0): 42, 31, 39, (379,594,0): 42, 31, 39, (379,595,0): 42, 31, 39, (379,596,0): 42, 31, 39, (379,597,0): 43, 32, 40, (379,598,0): 43, 32, 40, (379,599,0): 43, 32, 40, (380,0,0): 76, 61, 54, (380,1,0): 77, 62, 55, (380,2,0): 77, 63, 54, (380,3,0): 78, 64, 55, (380,4,0): 78, 64, 55, (380,5,0): 79, 65, 56, (380,6,0): 79, 65, 54, (380,7,0): 79, 65, 54, (380,8,0): 79, 65, 52, (380,9,0): 80, 66, 53, (380,10,0): 81, 67, 54, (380,11,0): 82, 68, 55, (380,12,0): 84, 71, 55, (380,13,0): 86, 73, 57, (380,14,0): 87, 74, 58, (380,15,0): 87, 74, 57, (380,16,0): 91, 79, 55, (380,17,0): 93, 81, 55, (380,18,0): 94, 82, 56, (380,19,0): 96, 84, 58, (380,20,0): 97, 85, 59, (380,21,0): 98, 86, 60, (380,22,0): 97, 85, 59, (380,23,0): 97, 85, 59, (380,24,0): 97, 85, 59, (380,25,0): 97, 85, 59, (380,26,0): 98, 86, 60, (380,27,0): 98, 86, 60, (380,28,0): 99, 87, 61, (380,29,0): 99, 87, 61, (380,30,0): 100, 88, 62, (380,31,0): 100, 88, 62, (380,32,0): 101, 89, 63, (380,33,0): 101, 89, 63, (380,34,0): 101, 89, 63, (380,35,0): 101, 89, 63, (380,36,0): 101, 89, 63, (380,37,0): 101, 89, 63, (380,38,0): 101, 89, 63, (380,39,0): 101, 89, 63, (380,40,0): 103, 91, 65, (380,41,0): 103, 91, 65, (380,42,0): 103, 91, 65, (380,43,0): 103, 91, 65, (380,44,0): 103, 91, 65, (380,45,0): 104, 92, 66, (380,46,0): 104, 92, 66, (380,47,0): 106, 92, 65, (380,48,0): 106, 91, 62, (380,49,0): 106, 91, 60, (380,50,0): 105, 90, 59, (380,51,0): 104, 89, 58, (380,52,0): 102, 87, 58, (380,53,0): 100, 85, 56, (380,54,0): 99, 84, 55, (380,55,0): 98, 83, 54, (380,56,0): 93, 77, 51, (380,57,0): 89, 73, 47, (380,58,0): 85, 69, 44, (380,59,0): 82, 66, 41, (380,60,0): 79, 63, 38, (380,61,0): 76, 60, 35, (380,62,0): 71, 55, 32, (380,63,0): 65, 50, 31, (380,64,0): 58, 44, 31, (380,65,0): 56, 43, 34, (380,66,0): 55, 42, 33, (380,67,0): 55, 43, 31, (380,68,0): 55, 43, 29, (380,69,0): 57, 45, 31, (380,70,0): 58, 46, 30, (380,71,0): 59, 48, 30, (380,72,0): 68, 57, 37, (380,73,0): 69, 58, 36, (380,74,0): 70, 59, 37, (380,75,0): 72, 62, 37, (380,76,0): 74, 64, 37, (380,77,0): 76, 66, 39, (380,78,0): 77, 68, 39, (380,79,0): 78, 68, 41, (380,80,0): 82, 70, 46, (380,81,0): 82, 70, 48, (380,82,0): 82, 70, 48, (380,83,0): 80, 68, 46, (380,84,0): 78, 66, 44, (380,85,0): 75, 63, 41, (380,86,0): 71, 59, 37, (380,87,0): 69, 57, 35, (380,88,0): 68, 56, 34, (380,89,0): 68, 56, 34, (380,90,0): 69, 57, 35, (380,91,0): 69, 57, 35, (380,92,0): 69, 57, 35, (380,93,0): 69, 57, 35, (380,94,0): 69, 57, 35, (380,95,0): 69, 56, 37, (380,96,0): 68, 55, 39, (380,97,0): 68, 54, 41, (380,98,0): 67, 53, 40, (380,99,0): 65, 51, 38, (380,100,0): 64, 50, 37, (380,101,0): 62, 48, 35, (380,102,0): 61, 47, 36, (380,103,0): 61, 47, 36, (380,104,0): 63, 49, 38, (380,105,0): 63, 49, 38, (380,106,0): 64, 50, 39, (380,107,0): 65, 51, 40, (380,108,0): 66, 52, 41, (380,109,0): 67, 53, 42, (380,110,0): 67, 53, 44, (380,111,0): 70, 53, 43, (380,112,0): 73, 55, 43, (380,113,0): 75, 56, 42, (380,114,0): 77, 57, 46, (380,115,0): 79, 60, 46, (380,116,0): 81, 62, 48, (380,117,0): 82, 63, 48, (380,118,0): 81, 62, 47, (380,119,0): 81, 62, 45, (380,120,0): 82, 63, 46, (380,121,0): 81, 64, 44, (380,122,0): 83, 65, 45, (380,123,0): 84, 66, 44, (380,124,0): 87, 69, 47, (380,125,0): 90, 72, 50, (380,126,0): 93, 75, 53, (380,127,0): 94, 76, 54, (380,128,0): 97, 79, 57, (380,129,0): 97, 79, 57, (380,130,0): 96, 78, 56, (380,131,0): 96, 78, 56, (380,132,0): 99, 78, 57, (380,133,0): 102, 80, 59, (380,134,0): 105, 80, 60, (380,135,0): 106, 81, 61, (380,136,0): 107, 80, 59, (380,137,0): 111, 84, 63, (380,138,0): 116, 88, 67, (380,139,0): 118, 87, 67, (380,140,0): 118, 87, 67, (380,141,0): 122, 91, 71, (380,142,0): 134, 101, 82, (380,143,0): 140, 112, 91, (380,144,0): 156, 133, 115, (380,145,0): 168, 151, 133, (380,146,0): 190, 173, 157, (380,147,0): 201, 188, 171, (380,148,0): 205, 193, 177, (380,149,0): 202, 195, 177, (380,150,0): 199, 198, 180, (380,151,0): 198, 201, 184, (380,152,0): 190, 198, 183, (380,153,0): 185, 199, 184, (380,154,0): 181, 197, 184, (380,155,0): 177, 197, 185, (380,156,0): 174, 198, 185, (380,157,0): 172, 200, 186, (380,158,0): 171, 201, 189, (380,159,0): 169, 202, 191, (380,160,0): 165, 202, 194, (380,161,0): 163, 203, 195, (380,162,0): 162, 203, 195, (380,163,0): 162, 203, 195, (380,164,0): 162, 203, 197, (380,165,0): 162, 203, 197, (380,166,0): 161, 203, 201, (380,167,0): 161, 203, 201, (380,168,0): 157, 201, 200, (380,169,0): 156, 200, 199, (380,170,0): 156, 200, 203, (380,171,0): 155, 199, 202, (380,172,0): 154, 199, 204, (380,173,0): 153, 198, 203, (380,174,0): 153, 198, 203, (380,175,0): 151, 198, 206, (380,176,0): 149, 196, 212, (380,177,0): 148, 196, 216, (380,178,0): 148, 196, 216, (380,179,0): 149, 197, 217, (380,180,0): 150, 198, 218, (380,181,0): 150, 198, 218, (380,182,0): 150, 198, 220, (380,183,0): 151, 199, 221, (380,184,0): 152, 200, 223, (380,185,0): 152, 200, 223, (380,186,0): 152, 200, 223, (380,187,0): 151, 198, 224, (380,188,0): 151, 198, 224, (380,189,0): 151, 198, 224, (380,190,0): 150, 197, 223, (380,191,0): 148, 198, 223, (380,192,0): 147, 196, 226, (380,193,0): 146, 197, 228, (380,194,0): 146, 197, 228, (380,195,0): 145, 196, 227, (380,196,0): 144, 194, 227, (380,197,0): 143, 193, 226, (380,198,0): 143, 193, 228, (380,199,0): 143, 193, 228, (380,200,0): 146, 196, 231, (380,201,0): 145, 195, 230, (380,202,0): 145, 195, 232, (380,203,0): 144, 194, 231, (380,204,0): 144, 193, 233, (380,205,0): 143, 192, 232, (380,206,0): 143, 192, 232, (380,207,0): 143, 192, 232, (380,208,0): 142, 191, 232, (380,209,0): 143, 190, 232, (380,210,0): 144, 191, 233, (380,211,0): 145, 192, 234, (380,212,0): 146, 193, 235, (380,213,0): 149, 194, 236, (380,214,0): 150, 195, 237, (380,215,0): 150, 195, 237, (380,216,0): 154, 197, 240, (380,217,0): 153, 196, 239, (380,218,0): 152, 195, 238, (380,219,0): 152, 193, 237, (380,220,0): 151, 192, 236, (380,221,0): 152, 193, 237, (380,222,0): 153, 194, 238, (380,223,0): 156, 194, 239, (380,224,0): 158, 196, 243, (380,225,0): 156, 194, 241, (380,226,0): 155, 193, 240, (380,227,0): 154, 190, 238, (380,228,0): 154, 191, 236, (380,229,0): 156, 193, 238, (380,230,0): 159, 193, 238, (380,231,0): 161, 195, 240, (380,232,0): 157, 192, 234, (380,233,0): 159, 192, 235, (380,234,0): 159, 192, 233, (380,235,0): 159, 192, 233, (380,236,0): 161, 193, 234, (380,237,0): 161, 193, 232, (380,238,0): 161, 193, 232, (380,239,0): 164, 193, 233, (380,240,0): 163, 191, 231, (380,241,0): 163, 191, 231, (380,242,0): 162, 190, 230, (380,243,0): 160, 189, 231, (380,244,0): 159, 188, 232, (380,245,0): 156, 187, 231, (380,246,0): 154, 187, 232, (380,247,0): 152, 186, 232, (380,248,0): 152, 188, 236, (380,249,0): 150, 188, 237, (380,250,0): 148, 188, 239, (380,251,0): 147, 187, 238, (380,252,0): 146, 187, 239, (380,253,0): 145, 186, 238, (380,254,0): 144, 187, 240, (380,255,0): 142, 188, 240, (380,256,0): 140, 185, 240, (380,257,0): 139, 186, 240, (380,258,0): 140, 187, 241, (380,259,0): 140, 187, 241, (380,260,0): 141, 188, 242, (380,261,0): 141, 188, 242, (380,262,0): 142, 189, 243, (380,263,0): 142, 189, 243, (380,264,0): 144, 191, 245, (380,265,0): 144, 191, 245, (380,266,0): 144, 191, 245, (380,267,0): 145, 192, 246, (380,268,0): 145, 192, 246, (380,269,0): 146, 193, 247, (380,270,0): 146, 193, 247, (380,271,0): 144, 193, 251, (380,272,0): 142, 192, 255, (380,273,0): 141, 192, 255, (380,274,0): 141, 192, 255, (380,275,0): 141, 192, 255, (380,276,0): 141, 192, 255, (380,277,0): 141, 192, 255, (380,278,0): 141, 192, 255, (380,279,0): 141, 193, 253, (380,280,0): 142, 194, 252, (380,281,0): 143, 195, 253, (380,282,0): 144, 196, 253, (380,283,0): 145, 197, 254, (380,284,0): 145, 197, 254, (380,285,0): 144, 196, 253, (380,286,0): 143, 196, 250, (380,287,0): 142, 195, 249, (380,288,0): 142, 194, 251, (380,289,0): 143, 195, 252, (380,290,0): 143, 195, 255, (380,291,0): 144, 195, 255, (380,292,0): 144, 193, 255, (380,293,0): 143, 192, 255, (380,294,0): 142, 189, 255, (380,295,0): 143, 188, 255, (380,296,0): 145, 185, 254, (380,297,0): 143, 180, 248, (380,298,0): 144, 178, 242, (380,299,0): 150, 180, 242, (380,300,0): 158, 183, 240, (380,301,0): 158, 181, 235, (380,302,0): 150, 172, 222, (380,303,0): 147, 161, 206, (380,304,0): 132, 132, 170, (380,305,0): 106, 99, 130, (380,306,0): 83, 75, 99, (380,307,0): 81, 74, 90, (380,308,0): 81, 76, 83, (380,309,0): 71, 69, 72, (380,310,0): 70, 68, 69, (380,311,0): 78, 78, 80, (380,312,0): 87, 86, 92, (380,313,0): 90, 89, 97, (380,314,0): 94, 90, 104, (380,315,0): 97, 91, 105, (380,316,0): 96, 84, 98, (380,317,0): 91, 75, 88, (380,318,0): 85, 63, 75, (380,319,0): 80, 57, 67, (380,320,0): 78, 52, 65, (380,321,0): 77, 49, 64, (380,322,0): 74, 46, 60, (380,323,0): 70, 42, 56, (380,324,0): 68, 40, 54, (380,325,0): 68, 40, 52, (380,326,0): 69, 41, 53, (380,327,0): 70, 43, 52, (380,328,0): 68, 41, 50, (380,329,0): 68, 41, 48, (380,330,0): 68, 41, 48, (380,331,0): 69, 42, 47, (380,332,0): 71, 44, 49, (380,333,0): 74, 47, 52, (380,334,0): 76, 50, 53, (380,335,0): 80, 50, 52, (380,336,0): 87, 47, 48, (380,337,0): 93, 49, 50, (380,338,0): 98, 54, 55, (380,339,0): 105, 59, 59, (380,340,0): 108, 62, 62, (380,341,0): 104, 59, 56, (380,342,0): 95, 50, 47, (380,343,0): 87, 42, 39, (380,344,0): 76, 35, 33, (380,345,0): 74, 34, 34, (380,346,0): 68, 32, 32, (380,347,0): 62, 30, 31, (380,348,0): 59, 30, 32, (380,349,0): 55, 30, 33, (380,350,0): 53, 31, 34, (380,351,0): 52, 32, 34, (380,352,0): 52, 32, 33, (380,353,0): 53, 32, 31, (380,354,0): 55, 31, 31, (380,355,0): 56, 30, 31, (380,356,0): 62, 30, 33, (380,357,0): 66, 32, 33, (380,358,0): 71, 32, 35, (380,359,0): 73, 33, 34, (380,360,0): 75, 33, 35, (380,361,0): 79, 35, 36, (380,362,0): 81, 37, 38, (380,363,0): 82, 38, 37, (380,364,0): 81, 37, 36, (380,365,0): 76, 35, 31, (380,366,0): 73, 32, 30, (380,367,0): 71, 30, 28, (380,368,0): 75, 33, 34, (380,369,0): 75, 33, 34, (380,370,0): 75, 33, 35, (380,371,0): 74, 32, 34, (380,372,0): 74, 32, 34, (380,373,0): 73, 31, 33, (380,374,0): 72, 31, 35, (380,375,0): 72, 31, 35, (380,376,0): 69, 30, 35, (380,377,0): 68, 29, 34, (380,378,0): 66, 30, 34, (380,379,0): 64, 28, 32, (380,380,0): 63, 26, 33, (380,381,0): 62, 25, 32, (380,382,0): 62, 25, 32, (380,383,0): 60, 25, 31, (380,384,0): 59, 27, 30, (380,385,0): 57, 27, 29, (380,386,0): 57, 26, 31, (380,387,0): 56, 25, 30, (380,388,0): 55, 24, 29, (380,389,0): 53, 24, 28, (380,390,0): 50, 23, 28, (380,391,0): 49, 24, 28, (380,392,0): 49, 24, 30, (380,393,0): 47, 24, 30, (380,394,0): 46, 25, 30, (380,395,0): 45, 26, 30, (380,396,0): 45, 26, 32, (380,397,0): 43, 26, 32, (380,398,0): 43, 26, 32, (380,399,0): 45, 26, 30, (380,400,0): 48, 27, 32, (380,401,0): 48, 28, 30, (380,402,0): 48, 28, 30, (380,403,0): 48, 28, 30, (380,404,0): 48, 28, 30, (380,405,0): 48, 28, 30, (380,406,0): 48, 28, 30, (380,407,0): 48, 28, 30, (380,408,0): 48, 28, 30, (380,409,0): 47, 27, 29, (380,410,0): 46, 26, 28, (380,411,0): 45, 25, 27, (380,412,0): 45, 25, 27, (380,413,0): 45, 25, 27, (380,414,0): 46, 26, 28, (380,415,0): 46, 25, 30, (380,416,0): 42, 23, 29, (380,417,0): 41, 24, 32, (380,418,0): 41, 24, 32, (380,419,0): 42, 25, 31, (380,420,0): 43, 26, 32, (380,421,0): 43, 26, 32, (380,422,0): 44, 28, 31, (380,423,0): 44, 28, 31, (380,424,0): 47, 31, 32, (380,425,0): 48, 32, 33, (380,426,0): 51, 35, 35, (380,427,0): 53, 37, 37, (380,428,0): 54, 39, 36, (380,429,0): 55, 40, 37, (380,430,0): 55, 40, 37, (380,431,0): 54, 39, 36, (380,432,0): 64, 49, 44, (380,433,0): 68, 53, 48, (380,434,0): 72, 59, 53, (380,435,0): 73, 60, 54, (380,436,0): 69, 58, 52, (380,437,0): 61, 52, 45, (380,438,0): 55, 46, 39, (380,439,0): 50, 41, 34, (380,440,0): 55, 44, 38, (380,441,0): 59, 46, 40, (380,442,0): 62, 47, 44, (380,443,0): 63, 45, 43, (380,444,0): 65, 44, 43, (380,445,0): 69, 45, 45, (380,446,0): 75, 49, 50, (380,447,0): 79, 55, 55, (380,448,0): 62, 42, 43, (380,449,0): 57, 41, 42, (380,450,0): 53, 37, 38, (380,451,0): 47, 33, 33, (380,452,0): 44, 30, 30, (380,453,0): 40, 28, 28, (380,454,0): 41, 29, 29, (380,455,0): 41, 31, 30, (380,456,0): 41, 31, 30, (380,457,0): 44, 36, 34, (380,458,0): 48, 40, 38, (380,459,0): 47, 42, 39, (380,460,0): 47, 42, 39, (380,461,0): 48, 43, 40, (380,462,0): 51, 46, 43, (380,463,0): 53, 49, 46, (380,464,0): 51, 50, 46, (380,465,0): 56, 57, 52, (380,466,0): 65, 67, 62, (380,467,0): 75, 80, 73, (380,468,0): 82, 92, 81, (380,469,0): 87, 99, 85, (380,470,0): 89, 102, 84, (380,471,0): 90, 103, 83, (380,472,0): 90, 102, 80, (380,473,0): 89, 97, 74, (380,474,0): 88, 92, 67, (380,475,0): 88, 88, 62, (380,476,0): 91, 85, 59, (380,477,0): 91, 81, 56, (380,478,0): 91, 77, 51, (380,479,0): 87, 72, 49, (380,480,0): 81, 73, 52, (380,481,0): 79, 72, 53, (380,482,0): 78, 71, 52, (380,483,0): 77, 70, 51, (380,484,0): 78, 71, 52, (380,485,0): 79, 72, 53, (380,486,0): 82, 74, 55, (380,487,0): 84, 76, 57, (380,488,0): 79, 68, 50, (380,489,0): 76, 65, 47, (380,490,0): 74, 61, 44, (380,491,0): 75, 62, 45, (380,492,0): 79, 66, 49, (380,493,0): 82, 69, 52, (380,494,0): 84, 71, 54, (380,495,0): 85, 69, 54, (380,496,0): 82, 64, 54, (380,497,0): 76, 56, 49, (380,498,0): 67, 46, 41, (380,499,0): 61, 40, 35, (380,500,0): 59, 38, 33, (380,501,0): 61, 40, 35, (380,502,0): 61, 40, 37, (380,503,0): 61, 40, 37, (380,504,0): 61, 40, 39, (380,505,0): 61, 40, 39, (380,506,0): 59, 38, 37, (380,507,0): 57, 36, 35, (380,508,0): 54, 32, 34, (380,509,0): 50, 28, 30, (380,510,0): 47, 25, 27, (380,511,0): 45, 23, 26, (380,512,0): 42, 21, 26, (380,513,0): 42, 21, 28, (380,514,0): 41, 20, 29, (380,515,0): 40, 19, 28, (380,516,0): 39, 19, 30, (380,517,0): 40, 20, 31, (380,518,0): 41, 21, 33, (380,519,0): 42, 22, 34, (380,520,0): 40, 23, 33, (380,521,0): 41, 24, 32, (380,522,0): 41, 26, 33, (380,523,0): 44, 29, 32, (380,524,0): 50, 35, 38, (380,525,0): 56, 42, 41, (380,526,0): 61, 50, 48, (380,527,0): 64, 53, 47, (380,528,0): 64, 56, 43, (380,529,0): 66, 60, 44, (380,530,0): 68, 61, 45, (380,531,0): 67, 58, 43, (380,532,0): 64, 52, 40, (380,533,0): 61, 47, 36, (380,534,0): 62, 45, 37, (380,535,0): 63, 46, 38, (380,536,0): 69, 52, 45, (380,537,0): 70, 55, 48, (380,538,0): 74, 59, 54, (380,539,0): 77, 64, 58, (380,540,0): 77, 66, 62, (380,541,0): 75, 66, 61, (380,542,0): 73, 64, 59, (380,543,0): 68, 63, 57, (380,544,0): 67, 64, 59, (380,545,0): 65, 64, 59, (380,546,0): 68, 65, 60, (380,547,0): 68, 65, 60, (380,548,0): 67, 64, 59, (380,549,0): 67, 64, 59, (380,550,0): 67, 62, 58, (380,551,0): 67, 62, 58, (380,552,0): 68, 60, 57, (380,553,0): 70, 62, 59, (380,554,0): 71, 63, 60, (380,555,0): 72, 64, 61, (380,556,0): 72, 62, 60, (380,557,0): 68, 58, 56, (380,558,0): 64, 54, 52, (380,559,0): 62, 52, 50, (380,560,0): 57, 48, 43, (380,561,0): 52, 45, 39, (380,562,0): 47, 39, 37, (380,563,0): 43, 35, 33, (380,564,0): 40, 31, 34, (380,565,0): 36, 27, 30, (380,566,0): 32, 21, 29, (380,567,0): 28, 17, 25, (380,568,0): 31, 19, 29, (380,569,0): 31, 19, 29, (380,570,0): 30, 19, 27, (380,571,0): 29, 18, 26, (380,572,0): 31, 18, 25, (380,573,0): 32, 19, 26, (380,574,0): 33, 21, 25, (380,575,0): 34, 21, 28, (380,576,0): 35, 22, 31, (380,577,0): 35, 22, 31, (380,578,0): 33, 20, 29, (380,579,0): 31, 20, 28, (380,580,0): 31, 20, 28, (380,581,0): 30, 20, 28, (380,582,0): 31, 21, 29, (380,583,0): 29, 22, 29, (380,584,0): 38, 28, 36, (380,585,0): 39, 28, 36, (380,586,0): 40, 27, 36, (380,587,0): 42, 26, 36, (380,588,0): 43, 26, 36, (380,589,0): 45, 25, 36, (380,590,0): 46, 24, 36, (380,591,0): 46, 26, 37, (380,592,0): 42, 29, 38, (380,593,0): 41, 30, 38, (380,594,0): 41, 30, 38, (380,595,0): 42, 31, 39, (380,596,0): 42, 31, 39, (380,597,0): 42, 31, 39, (380,598,0): 42, 31, 39, (380,599,0): 42, 31, 39, (381,0,0): 77, 62, 55, (381,1,0): 77, 62, 55, (381,2,0): 77, 63, 54, (381,3,0): 78, 64, 55, (381,4,0): 79, 65, 56, (381,5,0): 79, 65, 56, (381,6,0): 79, 65, 54, (381,7,0): 80, 66, 55, (381,8,0): 79, 65, 52, (381,9,0): 79, 65, 52, (381,10,0): 80, 66, 53, (381,11,0): 82, 68, 55, (381,12,0): 84, 71, 55, (381,13,0): 85, 72, 56, (381,14,0): 86, 73, 57, (381,15,0): 87, 74, 57, (381,16,0): 91, 79, 55, (381,17,0): 93, 81, 55, (381,18,0): 94, 82, 56, (381,19,0): 96, 84, 58, (381,20,0): 97, 85, 59, (381,21,0): 98, 86, 60, (381,22,0): 97, 85, 59, (381,23,0): 97, 85, 59, (381,24,0): 97, 85, 59, (381,25,0): 97, 85, 59, (381,26,0): 98, 86, 60, (381,27,0): 98, 86, 60, (381,28,0): 99, 87, 61, (381,29,0): 99, 87, 61, (381,30,0): 100, 88, 62, (381,31,0): 100, 88, 62, (381,32,0): 101, 89, 63, (381,33,0): 101, 89, 63, (381,34,0): 101, 89, 63, (381,35,0): 101, 89, 63, (381,36,0): 101, 89, 63, (381,37,0): 101, 89, 63, (381,38,0): 101, 89, 63, (381,39,0): 101, 89, 63, (381,40,0): 103, 91, 65, (381,41,0): 103, 91, 65, (381,42,0): 103, 91, 65, (381,43,0): 104, 92, 66, (381,44,0): 104, 92, 66, (381,45,0): 104, 92, 66, (381,46,0): 105, 93, 67, (381,47,0): 105, 94, 66, (381,48,0): 108, 93, 64, (381,49,0): 108, 93, 62, (381,50,0): 107, 92, 61, (381,51,0): 107, 92, 61, (381,52,0): 105, 90, 61, (381,53,0): 103, 88, 59, (381,54,0): 101, 86, 57, (381,55,0): 99, 84, 55, (381,56,0): 95, 79, 53, (381,57,0): 92, 76, 50, (381,58,0): 88, 72, 47, (381,59,0): 85, 69, 44, (381,60,0): 82, 66, 41, (381,61,0): 78, 62, 37, (381,62,0): 72, 56, 33, (381,63,0): 66, 51, 32, (381,64,0): 59, 45, 32, (381,65,0): 57, 44, 35, (381,66,0): 56, 43, 34, (381,67,0): 55, 42, 33, (381,68,0): 55, 43, 31, (381,69,0): 56, 44, 30, (381,70,0): 57, 45, 29, (381,71,0): 58, 47, 29, (381,72,0): 65, 54, 36, (381,73,0): 66, 55, 33, (381,74,0): 68, 57, 35, (381,75,0): 70, 60, 35, (381,76,0): 73, 63, 36, (381,77,0): 76, 67, 38, (381,78,0): 77, 68, 39, (381,79,0): 78, 68, 41, (381,80,0): 82, 70, 46, (381,81,0): 83, 71, 49, (381,82,0): 84, 72, 50, (381,83,0): 83, 71, 49, (381,84,0): 81, 69, 47, (381,85,0): 78, 66, 44, (381,86,0): 75, 63, 41, (381,87,0): 73, 61, 39, (381,88,0): 70, 58, 36, (381,89,0): 70, 58, 36, (381,90,0): 70, 58, 36, (381,91,0): 69, 57, 35, (381,92,0): 69, 57, 35, (381,93,0): 69, 57, 35, (381,94,0): 69, 57, 35, (381,95,0): 69, 56, 37, (381,96,0): 68, 55, 39, (381,97,0): 68, 54, 41, (381,98,0): 67, 53, 40, (381,99,0): 65, 51, 38, (381,100,0): 64, 50, 37, (381,101,0): 63, 49, 36, (381,102,0): 62, 48, 37, (381,103,0): 61, 47, 36, (381,104,0): 61, 47, 36, (381,105,0): 61, 47, 36, (381,106,0): 62, 48, 37, (381,107,0): 62, 48, 37, (381,108,0): 63, 49, 40, (381,109,0): 63, 49, 40, (381,110,0): 64, 50, 41, (381,111,0): 66, 49, 41, (381,112,0): 71, 53, 43, (381,113,0): 73, 53, 42, (381,114,0): 75, 55, 44, (381,115,0): 77, 57, 46, (381,116,0): 78, 58, 47, (381,117,0): 78, 59, 45, (381,118,0): 78, 59, 45, (381,119,0): 77, 60, 44, (381,120,0): 75, 58, 42, (381,121,0): 76, 59, 41, (381,122,0): 76, 59, 41, (381,123,0): 78, 61, 41, (381,124,0): 80, 63, 43, (381,125,0): 81, 66, 43, (381,126,0): 84, 68, 45, (381,127,0): 85, 69, 46, (381,128,0): 92, 74, 52, (381,129,0): 91, 73, 51, (381,130,0): 91, 73, 51, (381,131,0): 92, 74, 52, (381,132,0): 95, 74, 53, (381,133,0): 97, 76, 55, (381,134,0): 100, 78, 57, (381,135,0): 103, 78, 58, (381,136,0): 99, 72, 51, (381,137,0): 104, 77, 56, (381,138,0): 110, 82, 61, (381,139,0): 113, 82, 62, (381,140,0): 115, 82, 63, (381,141,0): 118, 85, 66, (381,142,0): 124, 92, 71, (381,143,0): 128, 97, 77, (381,144,0): 134, 107, 88, (381,145,0): 149, 123, 106, (381,146,0): 169, 146, 128, (381,147,0): 184, 165, 148, (381,148,0): 195, 178, 160, (381,149,0): 201, 188, 171, (381,150,0): 206, 199, 181, (381,151,0): 209, 208, 190, (381,152,0): 196, 198, 184, (381,153,0): 190, 198, 183, (381,154,0): 184, 196, 182, (381,155,0): 179, 195, 182, (381,156,0): 176, 197, 182, (381,157,0): 175, 199, 185, (381,158,0): 175, 201, 188, (381,159,0): 173, 203, 191, (381,160,0): 166, 201, 194, (381,161,0): 163, 203, 195, (381,162,0): 162, 203, 195, (381,163,0): 162, 203, 195, (381,164,0): 162, 203, 197, (381,165,0): 162, 203, 197, (381,166,0): 161, 203, 201, (381,167,0): 161, 203, 201, (381,168,0): 158, 200, 199, (381,169,0): 156, 200, 199, (381,170,0): 156, 200, 203, (381,171,0): 155, 199, 202, (381,172,0): 153, 198, 203, (381,173,0): 153, 198, 203, (381,174,0): 153, 198, 203, (381,175,0): 150, 197, 205, (381,176,0): 149, 196, 212, (381,177,0): 149, 197, 217, (381,178,0): 149, 197, 217, (381,179,0): 150, 198, 218, (381,180,0): 150, 198, 218, (381,181,0): 151, 199, 219, (381,182,0): 151, 199, 221, (381,183,0): 151, 199, 221, (381,184,0): 152, 200, 223, (381,185,0): 152, 200, 223, (381,186,0): 152, 199, 225, (381,187,0): 152, 199, 225, (381,188,0): 152, 199, 225, (381,189,0): 152, 199, 225, (381,190,0): 152, 199, 225, (381,191,0): 150, 200, 227, (381,192,0): 148, 197, 229, (381,193,0): 147, 198, 229, (381,194,0): 146, 197, 228, (381,195,0): 145, 196, 227, (381,196,0): 144, 194, 227, (381,197,0): 143, 193, 226, (381,198,0): 142, 192, 227, (381,199,0): 142, 192, 227, (381,200,0): 145, 195, 230, (381,201,0): 145, 195, 230, (381,202,0): 145, 195, 232, (381,203,0): 144, 194, 231, (381,204,0): 143, 192, 232, (381,205,0): 143, 192, 232, (381,206,0): 143, 192, 232, (381,207,0): 142, 191, 231, (381,208,0): 143, 190, 232, (381,209,0): 143, 190, 232, (381,210,0): 144, 191, 233, (381,211,0): 147, 192, 234, (381,212,0): 148, 193, 235, (381,213,0): 149, 194, 236, (381,214,0): 150, 195, 237, (381,215,0): 151, 194, 237, (381,216,0): 154, 197, 240, (381,217,0): 153, 194, 238, (381,218,0): 150, 191, 235, (381,219,0): 148, 189, 233, (381,220,0): 148, 189, 233, (381,221,0): 151, 189, 234, (381,222,0): 153, 191, 236, (381,223,0): 155, 192, 237, (381,224,0): 156, 192, 240, (381,225,0): 158, 192, 240, (381,226,0): 157, 191, 239, (381,227,0): 157, 191, 239, (381,228,0): 158, 190, 237, (381,229,0): 158, 190, 237, (381,230,0): 160, 191, 237, (381,231,0): 160, 191, 237, (381,232,0): 158, 189, 233, (381,233,0): 158, 189, 233, (381,234,0): 161, 190, 232, (381,235,0): 161, 190, 232, (381,236,0): 163, 191, 231, (381,237,0): 163, 191, 231, (381,238,0): 164, 192, 232, (381,239,0): 164, 192, 232, (381,240,0): 163, 188, 228, (381,241,0): 163, 188, 228, (381,242,0): 162, 187, 228, (381,243,0): 159, 187, 227, (381,244,0): 157, 186, 228, (381,245,0): 154, 185, 229, (381,246,0): 153, 184, 230, (381,247,0): 151, 185, 230, (381,248,0): 152, 186, 234, (381,249,0): 149, 187, 234, (381,250,0): 148, 185, 237, (381,251,0): 146, 186, 237, (381,252,0): 144, 185, 237, (381,253,0): 144, 185, 237, (381,254,0): 142, 185, 238, (381,255,0): 142, 185, 238, (381,256,0): 139, 184, 239, (381,257,0): 138, 185, 239, (381,258,0): 139, 186, 240, (381,259,0): 139, 186, 240, (381,260,0): 140, 187, 241, (381,261,0): 140, 187, 241, (381,262,0): 140, 187, 241, (381,263,0): 141, 188, 242, (381,264,0): 141, 188, 242, (381,265,0): 142, 189, 243, (381,266,0): 142, 189, 243, (381,267,0): 143, 190, 244, (381,268,0): 143, 190, 244, (381,269,0): 144, 191, 245, (381,270,0): 144, 191, 245, (381,271,0): 142, 191, 249, (381,272,0): 141, 191, 254, (381,273,0): 140, 191, 255, (381,274,0): 140, 191, 255, (381,275,0): 140, 191, 255, (381,276,0): 140, 191, 255, (381,277,0): 140, 191, 255, (381,278,0): 140, 191, 254, (381,279,0): 140, 191, 254, (381,280,0): 141, 193, 253, (381,281,0): 142, 194, 252, (381,282,0): 143, 195, 252, (381,283,0): 144, 196, 253, (381,284,0): 144, 196, 253, (381,285,0): 143, 195, 252, (381,286,0): 142, 195, 249, (381,287,0): 141, 194, 248, (381,288,0): 142, 194, 251, (381,289,0): 143, 195, 253, (381,290,0): 143, 195, 255, (381,291,0): 144, 195, 255, (381,292,0): 144, 193, 255, (381,293,0): 143, 192, 255, (381,294,0): 144, 188, 255, (381,295,0): 144, 186, 255, (381,296,0): 145, 185, 255, (381,297,0): 143, 180, 248, (381,298,0): 145, 176, 241, (381,299,0): 151, 180, 240, (381,300,0): 157, 182, 239, (381,301,0): 155, 176, 229, (381,302,0): 140, 160, 211, (381,303,0): 133, 146, 190, (381,304,0): 113, 112, 146, (381,305,0): 98, 90, 114, (381,306,0): 83, 75, 96, (381,307,0): 84, 78, 92, (381,308,0): 82, 79, 86, (381,309,0): 74, 74, 76, (381,310,0): 74, 74, 74, (381,311,0): 83, 83, 85, (381,312,0): 96, 95, 101, (381,313,0): 97, 94, 103, (381,314,0): 99, 93, 107, (381,315,0): 99, 88, 104, (381,316,0): 94, 80, 95, (381,317,0): 88, 70, 84, (381,318,0): 82, 60, 72, (381,319,0): 80, 54, 65, (381,320,0): 77, 49, 64, (381,321,0): 75, 47, 62, (381,322,0): 72, 44, 58, (381,323,0): 69, 41, 55, (381,324,0): 68, 40, 54, (381,325,0): 68, 40, 54, (381,326,0): 69, 41, 53, (381,327,0): 70, 43, 52, (381,328,0): 67, 40, 49, (381,329,0): 67, 40, 47, (381,330,0): 68, 41, 46, (381,331,0): 69, 42, 47, (381,332,0): 71, 44, 49, (381,333,0): 74, 47, 52, (381,334,0): 76, 50, 53, (381,335,0): 82, 50, 53, (381,336,0): 88, 46, 50, (381,337,0): 97, 48, 52, (381,338,0): 102, 56, 59, (381,339,0): 107, 61, 63, (381,340,0): 106, 60, 62, (381,341,0): 97, 53, 54, (381,342,0): 84, 42, 43, (381,343,0): 75, 35, 35, (381,344,0): 67, 32, 30, (381,345,0): 67, 33, 32, (381,346,0): 65, 33, 34, (381,347,0): 63, 34, 36, (381,348,0): 60, 34, 35, (381,349,0): 57, 32, 35, (381,350,0): 53, 31, 33, (381,351,0): 52, 30, 32, (381,352,0): 56, 31, 35, (381,353,0): 57, 31, 34, (381,354,0): 59, 30, 35, (381,355,0): 60, 29, 34, (381,356,0): 64, 29, 35, (381,357,0): 69, 30, 35, (381,358,0): 72, 31, 37, (381,359,0): 74, 32, 36, (381,360,0): 75, 30, 35, (381,361,0): 76, 31, 34, (381,362,0): 76, 31, 34, (381,363,0): 75, 33, 34, (381,364,0): 73, 33, 33, (381,365,0): 71, 33, 30, (381,366,0): 70, 32, 29, (381,367,0): 70, 32, 29, (381,368,0): 72, 32, 32, (381,369,0): 73, 31, 32, (381,370,0): 73, 31, 33, (381,371,0): 73, 31, 33, (381,372,0): 73, 31, 33, (381,373,0): 73, 31, 33, (381,374,0): 72, 31, 35, (381,375,0): 72, 31, 35, (381,376,0): 68, 29, 34, (381,377,0): 67, 28, 33, (381,378,0): 65, 29, 33, (381,379,0): 63, 27, 31, (381,380,0): 62, 25, 32, (381,381,0): 61, 24, 31, (381,382,0): 61, 24, 31, (381,383,0): 59, 24, 30, (381,384,0): 56, 24, 27, (381,385,0): 55, 25, 27, (381,386,0): 55, 24, 29, (381,387,0): 53, 24, 28, (381,388,0): 52, 23, 27, (381,389,0): 50, 24, 27, (381,390,0): 48, 23, 27, (381,391,0): 48, 23, 27, (381,392,0): 47, 24, 30, (381,393,0): 46, 25, 30, (381,394,0): 45, 26, 30, (381,395,0): 45, 26, 30, (381,396,0): 43, 26, 32, (381,397,0): 43, 26, 32, (381,398,0): 43, 26, 32, (381,399,0): 43, 26, 32, (381,400,0): 47, 28, 32, (381,401,0): 48, 28, 30, (381,402,0): 48, 28, 30, (381,403,0): 48, 28, 30, (381,404,0): 48, 28, 30, (381,405,0): 48, 28, 30, (381,406,0): 48, 28, 30, (381,407,0): 48, 28, 30, (381,408,0): 47, 27, 29, (381,409,0): 47, 27, 29, (381,410,0): 46, 26, 28, (381,411,0): 45, 25, 27, (381,412,0): 45, 25, 27, (381,413,0): 45, 25, 27, (381,414,0): 46, 26, 28, (381,415,0): 46, 27, 31, (381,416,0): 41, 24, 30, (381,417,0): 42, 25, 33, (381,418,0): 43, 26, 34, (381,419,0): 44, 27, 35, (381,420,0): 45, 28, 34, (381,421,0): 46, 29, 35, (381,422,0): 46, 30, 33, (381,423,0): 47, 31, 34, (381,424,0): 49, 33, 34, (381,425,0): 50, 34, 35, (381,426,0): 53, 37, 37, (381,427,0): 56, 40, 40, (381,428,0): 58, 43, 40, (381,429,0): 59, 44, 41, (381,430,0): 59, 44, 41, (381,431,0): 59, 44, 39, (381,432,0): 70, 55, 48, (381,433,0): 73, 59, 50, (381,434,0): 75, 62, 54, (381,435,0): 73, 63, 54, (381,436,0): 68, 58, 49, (381,437,0): 62, 53, 44, (381,438,0): 58, 49, 42, (381,439,0): 56, 47, 40, (381,440,0): 59, 48, 42, (381,441,0): 64, 51, 45, (381,442,0): 67, 52, 49, (381,443,0): 68, 48, 47, (381,444,0): 65, 44, 43, (381,445,0): 67, 41, 42, (381,446,0): 72, 43, 47, (381,447,0): 74, 48, 51, (381,448,0): 61, 39, 42, (381,449,0): 59, 40, 42, (381,450,0): 56, 37, 39, (381,451,0): 49, 33, 34, (381,452,0): 45, 29, 30, (381,453,0): 43, 29, 29, (381,454,0): 44, 30, 30, (381,455,0): 44, 32, 32, (381,456,0): 44, 32, 32, (381,457,0): 46, 36, 35, (381,458,0): 48, 38, 37, (381,459,0): 48, 40, 38, (381,460,0): 49, 41, 39, (381,461,0): 49, 44, 41, (381,462,0): 53, 48, 45, (381,463,0): 56, 52, 49, (381,464,0): 56, 55, 51, (381,465,0): 59, 62, 55, (381,466,0): 66, 71, 64, (381,467,0): 77, 85, 74, (381,468,0): 88, 99, 85, (381,469,0): 94, 108, 91, (381,470,0): 97, 112, 93, (381,471,0): 98, 113, 90, (381,472,0): 98, 112, 87, (381,473,0): 96, 106, 81, (381,474,0): 94, 98, 71, (381,475,0): 92, 92, 64, (381,476,0): 93, 88, 59, (381,477,0): 93, 84, 55, (381,478,0): 91, 77, 50, (381,479,0): 88, 74, 48, (381,480,0): 79, 71, 48, (381,481,0): 78, 71, 52, (381,482,0): 78, 71, 52, (381,483,0): 79, 72, 53, (381,484,0): 80, 73, 54, (381,485,0): 82, 75, 56, (381,486,0): 84, 76, 57, (381,487,0): 85, 77, 58, (381,488,0): 85, 74, 56, (381,489,0): 81, 70, 52, (381,490,0): 79, 66, 49, (381,491,0): 78, 65, 48, (381,492,0): 81, 68, 51, (381,493,0): 83, 70, 53, (381,494,0): 84, 71, 54, (381,495,0): 85, 69, 54, (381,496,0): 78, 60, 50, (381,497,0): 73, 53, 46, (381,498,0): 65, 44, 39, (381,499,0): 60, 39, 34, (381,500,0): 60, 39, 34, (381,501,0): 60, 39, 34, (381,502,0): 61, 40, 37, (381,503,0): 60, 39, 36, (381,504,0): 61, 40, 39, (381,505,0): 60, 39, 38, (381,506,0): 58, 37, 36, (381,507,0): 55, 34, 33, (381,508,0): 52, 30, 32, (381,509,0): 50, 28, 30, (381,510,0): 48, 26, 28, (381,511,0): 46, 24, 27, (381,512,0): 42, 21, 26, (381,513,0): 41, 20, 27, (381,514,0): 40, 19, 28, (381,515,0): 40, 19, 28, (381,516,0): 39, 19, 30, (381,517,0): 41, 21, 32, (381,518,0): 42, 22, 34, (381,519,0): 43, 23, 35, (381,520,0): 42, 25, 35, (381,521,0): 42, 25, 33, (381,522,0): 41, 26, 33, (381,523,0): 44, 29, 32, (381,524,0): 49, 34, 37, (381,525,0): 56, 42, 41, (381,526,0): 61, 50, 48, (381,527,0): 64, 55, 48, (381,528,0): 67, 61, 47, (381,529,0): 69, 63, 47, (381,530,0): 70, 63, 47, (381,531,0): 68, 59, 44, (381,532,0): 65, 53, 41, (381,533,0): 61, 47, 36, (381,534,0): 61, 44, 36, (381,535,0): 62, 45, 37, (381,536,0): 68, 51, 44, (381,537,0): 69, 52, 45, (381,538,0): 70, 55, 50, (381,539,0): 74, 61, 55, (381,540,0): 75, 64, 60, (381,541,0): 74, 65, 60, (381,542,0): 70, 63, 57, (381,543,0): 65, 60, 54, (381,544,0): 66, 63, 58, (381,545,0): 65, 64, 59, (381,546,0): 68, 65, 60, (381,547,0): 69, 66, 61, (381,548,0): 69, 66, 61, (381,549,0): 69, 66, 61, (381,550,0): 70, 65, 61, (381,551,0): 69, 64, 60, (381,552,0): 67, 59, 56, (381,553,0): 68, 60, 57, (381,554,0): 70, 62, 59, (381,555,0): 70, 62, 59, (381,556,0): 70, 60, 58, (381,557,0): 68, 58, 56, (381,558,0): 64, 54, 52, (381,559,0): 62, 52, 50, (381,560,0): 58, 51, 45, (381,561,0): 54, 47, 41, (381,562,0): 48, 40, 38, (381,563,0): 44, 36, 34, (381,564,0): 41, 32, 35, (381,565,0): 37, 28, 31, (381,566,0): 32, 21, 29, (381,567,0): 28, 17, 25, (381,568,0): 31, 19, 29, (381,569,0): 30, 18, 28, (381,570,0): 29, 18, 26, (381,571,0): 29, 18, 26, (381,572,0): 30, 17, 24, (381,573,0): 30, 17, 24, (381,574,0): 32, 20, 24, (381,575,0): 32, 19, 26, (381,576,0): 34, 21, 30, (381,577,0): 32, 20, 30, (381,578,0): 31, 19, 29, (381,579,0): 29, 19, 28, (381,580,0): 28, 18, 27, (381,581,0): 27, 20, 28, (381,582,0): 28, 21, 29, (381,583,0): 28, 21, 29, (381,584,0): 34, 24, 33, (381,585,0): 34, 24, 33, (381,586,0): 36, 24, 34, (381,587,0): 38, 25, 35, (381,588,0): 41, 25, 36, (381,589,0): 43, 25, 37, (381,590,0): 46, 26, 38, (381,591,0): 47, 27, 39, (381,592,0): 43, 30, 39, (381,593,0): 42, 31, 39, (381,594,0): 42, 31, 39, (381,595,0): 41, 30, 38, (381,596,0): 41, 30, 38, (381,597,0): 41, 30, 38, (381,598,0): 41, 30, 38, (381,599,0): 41, 30, 38, (382,0,0): 77, 62, 55, (382,1,0): 78, 63, 56, (382,2,0): 78, 64, 55, (382,3,0): 78, 64, 55, (382,4,0): 79, 65, 56, (382,5,0): 79, 65, 56, (382,6,0): 80, 66, 55, (382,7,0): 80, 66, 55, (382,8,0): 78, 64, 51, (382,9,0): 79, 65, 52, (382,10,0): 80, 66, 53, (382,11,0): 81, 67, 54, (382,12,0): 83, 70, 54, (382,13,0): 85, 72, 56, (382,14,0): 86, 73, 57, (382,15,0): 86, 73, 56, (382,16,0): 91, 79, 55, (382,17,0): 93, 81, 55, (382,18,0): 94, 82, 56, (382,19,0): 96, 84, 58, (382,20,0): 97, 85, 59, (382,21,0): 98, 86, 60, (382,22,0): 97, 85, 59, (382,23,0): 97, 85, 59, (382,24,0): 97, 85, 59, (382,25,0): 97, 85, 59, (382,26,0): 98, 86, 60, (382,27,0): 98, 86, 60, (382,28,0): 99, 87, 61, (382,29,0): 99, 87, 61, (382,30,0): 100, 88, 62, (382,31,0): 100, 88, 62, (382,32,0): 100, 88, 62, (382,33,0): 100, 88, 62, (382,34,0): 100, 88, 62, (382,35,0): 100, 88, 62, (382,36,0): 100, 88, 62, (382,37,0): 100, 88, 62, (382,38,0): 100, 88, 62, (382,39,0): 100, 88, 62, (382,40,0): 102, 90, 64, (382,41,0): 103, 91, 65, (382,42,0): 103, 91, 65, (382,43,0): 104, 92, 66, (382,44,0): 105, 93, 67, (382,45,0): 105, 93, 67, (382,46,0): 106, 94, 68, (382,47,0): 106, 95, 67, (382,48,0): 109, 94, 65, (382,49,0): 109, 94, 63, (382,50,0): 109, 94, 63, (382,51,0): 109, 94, 63, (382,52,0): 107, 92, 61, (382,53,0): 105, 90, 59, (382,54,0): 102, 87, 58, (382,55,0): 100, 85, 56, (382,56,0): 98, 82, 56, (382,57,0): 94, 78, 52, (382,58,0): 91, 75, 50, (382,59,0): 88, 72, 47, (382,60,0): 85, 69, 44, (382,61,0): 80, 64, 39, (382,62,0): 73, 57, 32, (382,63,0): 67, 52, 31, (382,64,0): 59, 47, 35, (382,65,0): 56, 46, 37, (382,66,0): 55, 45, 35, (382,67,0): 54, 44, 34, (382,68,0): 54, 44, 32, (382,69,0): 55, 46, 31, (382,70,0): 56, 47, 30, (382,71,0): 56, 48, 29, (382,72,0): 60, 52, 33, (382,73,0): 62, 54, 31, (382,74,0): 64, 56, 33, (382,75,0): 67, 60, 34, (382,76,0): 70, 63, 35, (382,77,0): 73, 66, 37, (382,78,0): 75, 68, 39, (382,79,0): 78, 69, 40, (382,80,0): 82, 70, 46, (382,81,0): 83, 71, 49, (382,82,0): 85, 73, 51, (382,83,0): 86, 74, 52, (382,84,0): 84, 72, 50, (382,85,0): 81, 69, 47, (382,86,0): 78, 66, 44, (382,87,0): 76, 64, 42, (382,88,0): 75, 63, 41, (382,89,0): 74, 62, 40, (382,90,0): 72, 60, 38, (382,91,0): 71, 59, 37, (382,92,0): 69, 57, 35, (382,93,0): 67, 55, 33, (382,94,0): 65, 53, 31, (382,95,0): 65, 52, 33, (382,96,0): 65, 52, 36, (382,97,0): 65, 51, 38, (382,98,0): 64, 50, 37, (382,99,0): 63, 49, 36, (382,100,0): 62, 48, 37, (382,101,0): 62, 48, 37, (382,102,0): 61, 47, 36, (382,103,0): 61, 47, 36, (382,104,0): 60, 46, 37, (382,105,0): 60, 46, 37, (382,106,0): 60, 46, 37, (382,107,0): 61, 47, 38, (382,108,0): 61, 46, 39, (382,109,0): 61, 46, 39, (382,110,0): 62, 47, 40, (382,111,0): 64, 47, 39, (382,112,0): 67, 48, 41, (382,113,0): 69, 49, 40, (382,114,0): 71, 51, 42, (382,115,0): 73, 53, 42, (382,116,0): 73, 55, 43, (382,117,0): 73, 55, 41, (382,118,0): 72, 54, 40, (382,119,0): 72, 55, 39, (382,120,0): 71, 54, 38, (382,121,0): 71, 56, 37, (382,122,0): 72, 57, 38, (382,123,0): 74, 59, 38, (382,124,0): 75, 60, 39, (382,125,0): 74, 62, 40, (382,126,0): 77, 62, 39, (382,127,0): 77, 62, 39, (382,128,0): 83, 66, 46, (382,129,0): 84, 66, 46, (382,130,0): 85, 67, 45, (382,131,0): 86, 68, 46, (382,132,0): 90, 69, 48, (382,133,0): 92, 71, 50, (382,134,0): 96, 74, 51, (382,135,0): 99, 74, 52, (382,136,0): 97, 70, 49, (382,137,0): 99, 72, 51, (382,138,0): 103, 75, 53, (382,139,0): 105, 77, 55, (382,140,0): 109, 78, 57, (382,141,0): 112, 81, 60, (382,142,0): 116, 85, 64, (382,143,0): 119, 88, 67, (382,144,0): 123, 92, 72, (382,145,0): 131, 100, 82, (382,146,0): 142, 115, 96, (382,147,0): 155, 129, 112, (382,148,0): 166, 145, 128, (382,149,0): 179, 162, 146, (382,150,0): 192, 180, 164, (382,151,0): 199, 193, 177, (382,152,0): 197, 195, 180, (382,153,0): 193, 197, 182, (382,154,0): 187, 198, 182, (382,155,0): 184, 198, 183, (382,156,0): 180, 198, 184, (382,157,0): 178, 199, 184, (382,158,0): 177, 199, 186, (382,159,0): 173, 201, 189, (382,160,0): 167, 202, 195, (382,161,0): 164, 204, 196, (382,162,0): 164, 204, 196, (382,163,0): 164, 204, 196, (382,164,0): 163, 204, 198, (382,165,0): 163, 204, 198, (382,166,0): 163, 203, 202, (382,167,0): 162, 204, 202, (382,168,0): 158, 200, 199, (382,169,0): 157, 199, 198, (382,170,0): 155, 199, 202, (382,171,0): 155, 199, 202, (382,172,0): 154, 197, 203, (382,173,0): 154, 197, 203, (382,174,0): 152, 197, 202, (382,175,0): 150, 197, 205, (382,176,0): 150, 197, 213, (382,177,0): 149, 197, 217, (382,178,0): 149, 197, 217, (382,179,0): 150, 198, 218, (382,180,0): 150, 198, 220, (382,181,0): 151, 199, 221, (382,182,0): 151, 199, 222, (382,183,0): 152, 200, 223, (382,184,0): 152, 200, 223, (382,185,0): 152, 200, 223, (382,186,0): 153, 200, 226, (382,187,0): 153, 200, 226, (382,188,0): 153, 200, 228, (382,189,0): 153, 200, 228, (382,190,0): 153, 200, 228, (382,191,0): 151, 201, 228, (382,192,0): 149, 198, 230, (382,193,0): 147, 197, 230, (382,194,0): 146, 196, 229, (382,195,0): 145, 195, 228, (382,196,0): 144, 194, 227, (382,197,0): 143, 193, 226, (382,198,0): 142, 192, 227, (382,199,0): 141, 191, 226, (382,200,0): 145, 195, 232, (382,201,0): 144, 194, 231, (382,202,0): 144, 193, 233, (382,203,0): 144, 193, 233, (382,204,0): 143, 192, 232, (382,205,0): 143, 192, 232, (382,206,0): 142, 191, 231, (382,207,0): 142, 191, 231, (382,208,0): 143, 190, 232, (382,209,0): 145, 189, 234, (382,210,0): 146, 190, 235, (382,211,0): 148, 191, 236, (382,212,0): 149, 192, 237, (382,213,0): 150, 193, 238, (382,214,0): 151, 194, 239, (382,215,0): 152, 193, 239, (382,216,0): 151, 192, 238, (382,217,0): 152, 190, 237, (382,218,0): 151, 189, 236, (382,219,0): 150, 188, 235, (382,220,0): 150, 188, 235, (382,221,0): 150, 186, 234, (382,222,0): 150, 186, 234, (382,223,0): 150, 186, 234, (382,224,0): 157, 189, 240, (382,225,0): 157, 189, 240, (382,226,0): 159, 189, 239, (382,227,0): 160, 190, 240, (382,228,0): 160, 190, 240, (382,229,0): 159, 190, 237, (382,230,0): 160, 188, 235, (382,231,0): 160, 188, 235, (382,232,0): 163, 190, 235, (382,233,0): 163, 190, 235, (382,234,0): 162, 189, 232, (382,235,0): 162, 189, 232, (382,236,0): 163, 188, 229, (382,237,0): 163, 188, 229, (382,238,0): 163, 188, 228, (382,239,0): 162, 187, 227, (382,240,0): 163, 186, 227, (382,241,0): 162, 187, 227, (382,242,0): 161, 186, 226, (382,243,0): 158, 186, 226, (382,244,0): 156, 185, 227, (382,245,0): 153, 184, 228, (382,246,0): 152, 183, 229, (382,247,0): 150, 184, 229, (382,248,0): 151, 185, 233, (382,249,0): 148, 186, 233, (382,250,0): 147, 184, 236, (382,251,0): 145, 185, 236, (382,252,0): 143, 184, 236, (382,253,0): 143, 184, 236, (382,254,0): 141, 184, 237, (382,255,0): 141, 184, 237, (382,256,0): 138, 184, 236, (382,257,0): 139, 185, 237, (382,258,0): 139, 185, 237, (382,259,0): 140, 186, 238, (382,260,0): 140, 186, 238, (382,261,0): 141, 187, 239, (382,262,0): 141, 187, 239, (382,263,0): 141, 187, 239, (382,264,0): 141, 187, 239, (382,265,0): 141, 187, 239, (382,266,0): 141, 187, 239, (382,267,0): 142, 188, 240, (382,268,0): 143, 189, 241, (382,269,0): 143, 189, 241, (382,270,0): 143, 189, 241, (382,271,0): 143, 190, 246, (382,272,0): 141, 190, 255, (382,273,0): 140, 191, 255, (382,274,0): 140, 191, 255, (382,275,0): 140, 191, 255, (382,276,0): 140, 191, 255, (382,277,0): 140, 191, 255, (382,278,0): 140, 191, 254, (382,279,0): 140, 191, 254, (382,280,0): 141, 193, 253, (382,281,0): 142, 194, 252, (382,282,0): 143, 195, 252, (382,283,0): 144, 196, 253, (382,284,0): 144, 197, 251, (382,285,0): 143, 196, 250, (382,286,0): 142, 195, 249, (382,287,0): 141, 194, 248, (382,288,0): 142, 194, 251, (382,289,0): 143, 195, 253, (382,290,0): 143, 195, 255, (382,291,0): 144, 195, 255, (382,292,0): 144, 193, 255, (382,293,0): 143, 192, 255, (382,294,0): 144, 188, 255, (382,295,0): 144, 186, 255, (382,296,0): 147, 185, 255, (382,297,0): 145, 179, 250, (382,298,0): 146, 177, 242, (382,299,0): 151, 180, 240, (382,300,0): 159, 181, 239, (382,301,0): 151, 172, 225, (382,302,0): 130, 150, 200, (382,303,0): 119, 131, 173, (382,304,0): 98, 95, 126, (382,305,0): 92, 83, 104, (382,306,0): 84, 77, 93, (382,307,0): 81, 78, 89, (382,308,0): 78, 77, 82, (382,309,0): 73, 74, 76, (382,310,0): 78, 79, 81, (382,311,0): 88, 87, 92, (382,312,0): 102, 101, 107, (382,313,0): 103, 97, 107, (382,314,0): 100, 92, 107, (382,315,0): 96, 83, 100, (382,316,0): 91, 74, 90, (382,317,0): 85, 65, 77, (382,318,0): 79, 55, 68, (382,319,0): 77, 51, 62, (382,320,0): 75, 47, 62, (382,321,0): 73, 45, 60, (382,322,0): 70, 42, 57, (382,323,0): 68, 40, 55, (382,324,0): 67, 39, 53, (382,325,0): 68, 40, 54, (382,326,0): 70, 42, 54, (382,327,0): 71, 44, 53, (382,328,0): 69, 42, 51, (382,329,0): 69, 42, 49, (382,330,0): 69, 42, 47, (382,331,0): 71, 44, 49, (382,332,0): 73, 47, 50, (382,333,0): 76, 50, 53, (382,334,0): 79, 53, 56, (382,335,0): 85, 53, 58, (382,336,0): 93, 48, 55, (382,337,0): 101, 50, 57, (382,338,0): 106, 57, 63, (382,339,0): 105, 58, 64, (382,340,0): 98, 53, 58, (382,341,0): 86, 46, 47, (382,342,0): 74, 38, 38, (382,343,0): 67, 33, 32, (382,344,0): 62, 31, 29, (382,345,0): 62, 32, 32, (382,346,0): 62, 34, 33, (382,347,0): 61, 35, 36, (382,348,0): 60, 34, 35, (382,349,0): 58, 32, 33, (382,350,0): 55, 31, 31, (382,351,0): 55, 29, 32, (382,352,0): 60, 29, 35, (382,353,0): 60, 27, 34, (382,354,0): 60, 27, 36, (382,355,0): 63, 26, 34, (382,356,0): 66, 26, 35, (382,357,0): 68, 27, 35, (382,358,0): 71, 28, 37, (382,359,0): 74, 29, 36, (382,360,0): 73, 28, 33, (382,361,0): 73, 28, 31, (382,362,0): 70, 28, 30, (382,363,0): 68, 28, 28, (382,364,0): 66, 31, 29, (382,365,0): 66, 32, 30, (382,366,0): 67, 33, 31, (382,367,0): 68, 34, 32, (382,368,0): 70, 30, 30, (382,369,0): 71, 29, 30, (382,370,0): 71, 29, 31, (382,371,0): 71, 29, 31, (382,372,0): 71, 29, 31, (382,373,0): 72, 30, 32, (382,374,0): 71, 30, 34, (382,375,0): 71, 30, 34, (382,376,0): 67, 28, 33, (382,377,0): 67, 28, 33, (382,378,0): 64, 28, 32, (382,379,0): 63, 27, 31, (382,380,0): 62, 25, 32, (382,381,0): 61, 24, 31, (382,382,0): 60, 23, 30, (382,383,0): 58, 23, 29, (382,384,0): 54, 22, 27, (382,385,0): 53, 22, 27, (382,386,0): 52, 23, 27, (382,387,0): 52, 23, 27, (382,388,0): 51, 22, 27, (382,389,0): 49, 22, 27, (382,390,0): 48, 23, 27, (382,391,0): 48, 23, 27, (382,392,0): 47, 24, 30, (382,393,0): 46, 25, 30, (382,394,0): 45, 26, 32, (382,395,0): 45, 26, 32, (382,396,0): 43, 26, 32, (382,397,0): 43, 26, 32, (382,398,0): 42, 27, 34, (382,399,0): 43, 26, 32, (382,400,0): 47, 28, 32, (382,401,0): 47, 28, 30, (382,402,0): 47, 28, 30, (382,403,0): 47, 28, 30, (382,404,0): 47, 28, 30, (382,405,0): 47, 28, 30, (382,406,0): 47, 28, 30, (382,407,0): 47, 28, 30, (382,408,0): 46, 27, 29, (382,409,0): 45, 26, 28, (382,410,0): 44, 25, 27, (382,411,0): 44, 25, 27, (382,412,0): 44, 25, 27, (382,413,0): 45, 26, 28, (382,414,0): 46, 27, 29, (382,415,0): 47, 28, 32, (382,416,0): 43, 26, 34, (382,417,0): 43, 26, 36, (382,418,0): 44, 27, 35, (382,419,0): 45, 28, 36, (382,420,0): 47, 30, 36, (382,421,0): 48, 31, 37, (382,422,0): 49, 33, 36, (382,423,0): 49, 33, 36, (382,424,0): 51, 35, 36, (382,425,0): 52, 36, 37, (382,426,0): 55, 39, 39, (382,427,0): 58, 43, 40, (382,428,0): 61, 46, 43, (382,429,0): 63, 48, 45, (382,430,0): 63, 48, 43, (382,431,0): 64, 49, 44, (382,432,0): 71, 57, 48, (382,433,0): 73, 59, 48, (382,434,0): 74, 61, 52, (382,435,0): 70, 60, 50, (382,436,0): 67, 57, 47, (382,437,0): 63, 55, 44, (382,438,0): 62, 55, 45, (382,439,0): 65, 56, 47, (382,440,0): 63, 52, 46, (382,441,0): 69, 56, 50, (382,442,0): 72, 57, 54, (382,443,0): 72, 52, 53, (382,444,0): 65, 43, 45, (382,445,0): 64, 38, 41, (382,446,0): 66, 37, 42, (382,447,0): 68, 41, 46, (382,448,0): 60, 38, 41, (382,449,0): 59, 39, 41, (382,450,0): 57, 37, 39, (382,451,0): 52, 33, 35, (382,452,0): 47, 28, 30, (382,453,0): 44, 28, 29, (382,454,0): 47, 31, 32, (382,455,0): 49, 35, 35, (382,456,0): 46, 34, 34, (382,457,0): 47, 37, 36, (382,458,0): 49, 39, 38, (382,459,0): 48, 40, 38, (382,460,0): 49, 41, 39, (382,461,0): 52, 44, 42, (382,462,0): 57, 49, 47, (382,463,0): 60, 55, 52, (382,464,0): 61, 62, 56, (382,465,0): 63, 66, 59, (382,466,0): 69, 74, 67, (382,467,0): 78, 88, 77, (382,468,0): 92, 104, 90, (382,469,0): 102, 117, 98, (382,470,0): 107, 122, 101, (382,471,0): 108, 123, 100, (382,472,0): 107, 121, 95, (382,473,0): 102, 115, 87, (382,474,0): 99, 106, 75, (382,475,0): 97, 98, 67, (382,476,0): 96, 91, 61, (382,477,0): 94, 85, 54, (382,478,0): 92, 78, 49, (382,479,0): 88, 74, 47, (382,480,0): 78, 70, 47, (382,481,0): 77, 72, 50, (382,482,0): 80, 74, 52, (382,483,0): 83, 77, 55, (382,484,0): 85, 79, 57, (382,485,0): 86, 80, 58, (382,486,0): 88, 80, 59, (382,487,0): 89, 81, 60, (382,488,0): 93, 82, 62, (382,489,0): 91, 80, 60, (382,490,0): 88, 77, 57, (382,491,0): 88, 77, 57, (382,492,0): 89, 76, 57, (382,493,0): 87, 74, 55, (382,494,0): 82, 69, 50, (382,495,0): 80, 64, 48, (382,496,0): 73, 55, 45, (382,497,0): 69, 49, 42, (382,498,0): 63, 42, 37, (382,499,0): 60, 39, 34, (382,500,0): 60, 39, 34, (382,501,0): 61, 40, 35, (382,502,0): 60, 39, 36, (382,503,0): 58, 37, 34, (382,504,0): 60, 39, 38, (382,505,0): 59, 38, 37, (382,506,0): 57, 36, 35, (382,507,0): 54, 33, 32, (382,508,0): 52, 30, 32, (382,509,0): 49, 27, 29, (382,510,0): 48, 26, 28, (382,511,0): 47, 25, 28, (382,512,0): 41, 20, 25, (382,513,0): 40, 19, 26, (382,514,0): 40, 19, 28, (382,515,0): 40, 19, 28, (382,516,0): 40, 20, 31, (382,517,0): 41, 21, 32, (382,518,0): 43, 23, 35, (382,519,0): 44, 24, 36, (382,520,0): 43, 26, 36, (382,521,0): 42, 25, 33, (382,522,0): 41, 26, 33, (382,523,0): 43, 28, 31, (382,524,0): 48, 33, 36, (382,525,0): 55, 41, 40, (382,526,0): 60, 49, 47, (382,527,0): 63, 54, 47, (382,528,0): 69, 63, 49, (382,529,0): 71, 66, 47, (382,530,0): 72, 65, 47, (382,531,0): 69, 60, 43, (382,532,0): 65, 53, 39, (382,533,0): 61, 47, 36, (382,534,0): 61, 44, 36, (382,535,0): 62, 43, 36, (382,536,0): 67, 48, 42, (382,537,0): 67, 50, 43, (382,538,0): 67, 52, 47, (382,539,0): 71, 58, 52, (382,540,0): 73, 62, 58, (382,541,0): 73, 64, 59, (382,542,0): 68, 60, 57, (382,543,0): 62, 57, 53, (382,544,0): 65, 62, 57, (382,545,0): 64, 63, 58, (382,546,0): 66, 65, 60, (382,547,0): 68, 67, 62, (382,548,0): 71, 68, 63, (382,549,0): 71, 68, 63, (382,550,0): 70, 67, 62, (382,551,0): 69, 66, 61, (382,552,0): 64, 59, 55, (382,553,0): 65, 60, 56, (382,554,0): 68, 60, 57, (382,555,0): 69, 61, 58, (382,556,0): 68, 60, 57, (382,557,0): 66, 58, 55, (382,558,0): 64, 54, 52, (382,559,0): 62, 52, 50, (382,560,0): 59, 52, 46, (382,561,0): 53, 48, 42, (382,562,0): 47, 42, 39, (382,563,0): 43, 38, 35, (382,564,0): 42, 33, 36, (382,565,0): 37, 28, 31, (382,566,0): 32, 22, 30, (382,567,0): 27, 17, 25, (382,568,0): 31, 19, 29, (382,569,0): 30, 18, 28, (382,570,0): 29, 18, 26, (382,571,0): 28, 17, 25, (382,572,0): 29, 16, 23, (382,573,0): 29, 16, 23, (382,574,0): 30, 18, 22, (382,575,0): 31, 18, 25, (382,576,0): 31, 19, 29, (382,577,0): 31, 19, 31, (382,578,0): 30, 18, 30, (382,579,0): 28, 18, 29, (382,580,0): 28, 18, 29, (382,581,0): 27, 19, 30, (382,582,0): 28, 20, 31, (382,583,0): 28, 22, 32, (382,584,0): 28, 20, 31, (382,585,0): 31, 21, 32, (382,586,0): 33, 21, 33, (382,587,0): 36, 22, 35, (382,588,0): 41, 25, 38, (382,589,0): 44, 26, 40, (382,590,0): 48, 27, 42, (382,591,0): 47, 29, 41, (382,592,0): 44, 31, 40, (382,593,0): 43, 32, 40, (382,594,0): 42, 31, 39, (382,595,0): 41, 30, 38, (382,596,0): 40, 29, 37, (382,597,0): 40, 29, 37, (382,598,0): 39, 28, 36, (382,599,0): 39, 28, 36, (383,0,0): 77, 63, 54, (383,1,0): 78, 64, 55, (383,2,0): 78, 64, 53, (383,3,0): 79, 65, 54, (383,4,0): 79, 65, 54, (383,5,0): 80, 66, 55, (383,6,0): 80, 66, 55, (383,7,0): 80, 66, 53, (383,8,0): 78, 64, 51, (383,9,0): 79, 65, 52, (383,10,0): 80, 66, 53, (383,11,0): 81, 67, 54, (383,12,0): 83, 70, 54, (383,13,0): 84, 71, 55, (383,14,0): 88, 72, 57, (383,15,0): 86, 73, 56, (383,16,0): 91, 79, 57, (383,17,0): 93, 81, 55, (383,18,0): 94, 82, 58, (383,19,0): 96, 84, 58, (383,20,0): 97, 85, 59, (383,21,0): 98, 86, 60, (383,22,0): 97, 85, 59, (383,23,0): 97, 85, 59, (383,24,0): 97, 85, 59, (383,25,0): 97, 85, 59, (383,26,0): 98, 86, 60, (383,27,0): 98, 86, 60, (383,28,0): 99, 87, 61, (383,29,0): 99, 88, 60, (383,30,0): 100, 88, 62, (383,31,0): 100, 88, 62, (383,32,0): 100, 88, 62, (383,33,0): 100, 88, 62, (383,34,0): 102, 88, 62, (383,35,0): 100, 88, 62, (383,36,0): 100, 88, 62, (383,37,0): 100, 88, 62, (383,38,0): 100, 88, 62, (383,39,0): 100, 88, 62, (383,40,0): 102, 90, 64, (383,41,0): 103, 92, 64, (383,42,0): 103, 91, 65, (383,43,0): 104, 93, 65, (383,44,0): 105, 94, 66, (383,45,0): 106, 95, 67, (383,46,0): 106, 95, 67, (383,47,0): 107, 96, 68, (383,48,0): 108, 94, 65, (383,49,0): 109, 96, 64, (383,50,0): 110, 95, 66, (383,51,0): 109, 96, 64, (383,52,0): 108, 93, 64, (383,53,0): 105, 91, 62, (383,54,0): 103, 88, 59, (383,55,0): 100, 86, 57, (383,56,0): 99, 83, 57, (383,57,0): 95, 81, 54, (383,58,0): 92, 76, 51, (383,59,0): 88, 74, 48, (383,60,0): 87, 71, 46, (383,61,0): 80, 66, 40, (383,62,0): 74, 58, 33, (383,63,0): 68, 53, 32, (383,64,0): 62, 48, 35, (383,65,0): 60, 47, 38, (383,66,0): 58, 45, 36, (383,67,0): 57, 45, 33, (383,68,0): 57, 45, 33, (383,69,0): 57, 45, 31, (383,70,0): 58, 46, 30, (383,71,0): 59, 48, 30, (383,72,0): 61, 50, 32, (383,73,0): 60, 52, 31, (383,74,0): 62, 54, 31, (383,75,0): 66, 59, 33, (383,76,0): 69, 62, 34, (383,77,0): 72, 65, 36, (383,78,0): 75, 68, 39, (383,79,0): 76, 69, 40, (383,80,0): 82, 70, 44, (383,81,0): 83, 71, 47, (383,82,0): 86, 74, 50, (383,83,0): 87, 75, 51, (383,84,0): 86, 74, 50, (383,85,0): 83, 71, 47, (383,86,0): 80, 68, 44, (383,87,0): 77, 65, 41, (383,88,0): 79, 67, 45, (383,89,0): 78, 66, 44, (383,90,0): 75, 63, 41, (383,91,0): 72, 60, 38, (383,92,0): 68, 56, 34, (383,93,0): 65, 53, 31, (383,94,0): 62, 50, 28, (383,95,0): 61, 48, 29, (383,96,0): 62, 49, 33, (383,97,0): 62, 48, 35, (383,98,0): 62, 48, 35, (383,99,0): 61, 47, 34, (383,100,0): 61, 47, 36, (383,101,0): 60, 46, 35, (383,102,0): 60, 46, 35, (383,103,0): 59, 45, 34, (383,104,0): 59, 45, 36, (383,105,0): 60, 46, 37, (383,106,0): 60, 46, 37, (383,107,0): 60, 46, 37, (383,108,0): 60, 45, 38, (383,109,0): 60, 45, 38, (383,110,0): 61, 46, 39, (383,111,0): 61, 46, 39, (383,112,0): 63, 46, 38, (383,113,0): 65, 46, 39, (383,114,0): 67, 49, 39, (383,115,0): 68, 50, 40, (383,116,0): 68, 52, 39, (383,117,0): 68, 52, 39, (383,118,0): 68, 52, 39, (383,119,0): 67, 51, 36, (383,120,0): 68, 52, 37, (383,121,0): 69, 53, 38, (383,122,0): 71, 55, 39, (383,123,0): 73, 57, 41, (383,124,0): 74, 59, 40, (383,125,0): 72, 59, 40, (383,126,0): 73, 58, 39, (383,127,0): 73, 58, 37, (383,128,0): 79, 60, 43, (383,129,0): 79, 61, 41, (383,130,0): 82, 61, 42, (383,131,0): 83, 62, 41, (383,132,0): 86, 65, 46, (383,133,0): 90, 68, 47, (383,134,0): 93, 71, 50, (383,135,0): 96, 71, 49, (383,136,0): 101, 74, 53, (383,137,0): 99, 72, 51, (383,138,0): 99, 71, 50, (383,139,0): 100, 72, 50, (383,140,0): 105, 74, 53, (383,141,0): 108, 77, 56, (383,142,0): 110, 79, 58, (383,143,0): 111, 80, 59, (383,144,0): 120, 85, 66, (383,145,0): 120, 87, 68, (383,146,0): 123, 92, 74, (383,147,0): 128, 99, 81, (383,148,0): 139, 112, 95, (383,149,0): 155, 132, 116, (383,150,0): 172, 155, 139, (383,151,0): 183, 170, 154, (383,152,0): 198, 191, 175, (383,153,0): 196, 194, 179, (383,154,0): 194, 196, 182, (383,155,0): 191, 199, 184, (383,156,0): 187, 200, 183, (383,157,0): 183, 200, 184, (383,158,0): 179, 197, 183, (383,159,0): 175, 197, 184, (383,160,0): 171, 201, 193, (383,161,0): 169, 202, 195, (383,162,0): 167, 202, 196, (383,163,0): 167, 202, 196, (383,164,0): 166, 202, 198, (383,165,0): 164, 203, 200, (383,166,0): 164, 202, 203, (383,167,0): 163, 203, 205, (383,168,0): 158, 199, 201, (383,169,0): 157, 198, 202, (383,170,0): 155, 198, 204, (383,171,0): 153, 198, 203, (383,172,0): 153, 198, 204, (383,173,0): 152, 197, 203, (383,174,0): 150, 197, 203, (383,175,0): 150, 197, 205, (383,176,0): 150, 197, 213, (383,177,0): 149, 198, 215, (383,178,0): 150, 199, 216, (383,179,0): 150, 198, 218, (383,180,0): 151, 199, 219, (383,181,0): 151, 199, 221, (383,182,0): 152, 200, 222, (383,183,0): 152, 200, 223, (383,184,0): 153, 201, 224, (383,185,0): 153, 201, 224, (383,186,0): 153, 200, 226, (383,187,0): 153, 200, 226, (383,188,0): 153, 200, 228, (383,189,0): 152, 202, 229, (383,190,0): 154, 201, 229, (383,191,0): 152, 201, 231, (383,192,0): 148, 199, 230, (383,193,0): 148, 198, 231, (383,194,0): 147, 197, 230, (383,195,0): 145, 195, 228, (383,196,0): 144, 194, 227, (383,197,0): 142, 192, 225, (383,198,0): 141, 191, 226, (383,199,0): 141, 191, 226, (383,200,0): 145, 195, 232, (383,201,0): 144, 194, 231, (383,202,0): 144, 193, 233, (383,203,0): 143, 192, 232, (383,204,0): 143, 192, 232, (383,205,0): 142, 191, 231, (383,206,0): 142, 191, 231, (383,207,0): 142, 191, 231, (383,208,0): 145, 189, 234, (383,209,0): 145, 189, 234, (383,210,0): 146, 190, 235, (383,211,0): 147, 191, 236, (383,212,0): 148, 192, 237, (383,213,0): 149, 193, 238, (383,214,0): 151, 194, 239, (383,215,0): 151, 194, 239, (383,216,0): 147, 188, 234, (383,217,0): 148, 189, 235, (383,218,0): 149, 190, 236, (383,219,0): 152, 190, 237, (383,220,0): 151, 189, 236, (383,221,0): 150, 186, 234, (383,222,0): 147, 183, 231, (383,223,0): 148, 182, 230, (383,224,0): 155, 187, 238, (383,225,0): 157, 187, 239, (383,226,0): 159, 189, 239, (383,227,0): 162, 190, 240, (383,228,0): 162, 190, 240, (383,229,0): 162, 188, 239, (383,230,0): 162, 185, 235, (383,231,0): 163, 183, 233, (383,232,0): 172, 190, 238, (383,233,0): 172, 188, 237, (383,234,0): 171, 188, 234, (383,235,0): 169, 186, 232, (383,236,0): 167, 184, 228, (383,237,0): 166, 183, 226, (383,238,0): 164, 181, 224, (383,239,0): 163, 182, 224, (383,240,0): 163, 186, 227, (383,241,0): 161, 186, 226, (383,242,0): 160, 185, 226, (383,243,0): 157, 185, 225, (383,244,0): 155, 184, 226, (383,245,0): 152, 183, 227, (383,246,0): 150, 183, 228, (383,247,0): 149, 183, 229, (383,248,0): 150, 184, 232, (383,249,0): 148, 184, 232, (383,250,0): 147, 184, 236, (383,251,0): 144, 184, 235, (383,252,0): 144, 184, 236, (383,253,0): 142, 183, 235, (383,254,0): 142, 183, 237, (383,255,0): 140, 183, 236, (383,256,0): 140, 183, 234, (383,257,0): 141, 184, 235, (383,258,0): 141, 184, 235, (383,259,0): 141, 184, 235, (383,260,0): 142, 185, 236, (383,261,0): 141, 187, 237, (383,262,0): 141, 187, 237, (383,263,0): 141, 187, 237, (383,264,0): 140, 186, 238, (383,265,0): 140, 186, 238, (383,266,0): 141, 187, 239, (383,267,0): 141, 187, 239, (383,268,0): 142, 188, 240, (383,269,0): 142, 188, 240, (383,270,0): 143, 189, 241, (383,271,0): 142, 189, 245, (383,272,0): 141, 189, 253, (383,273,0): 141, 188, 255, (383,274,0): 141, 188, 255, (383,275,0): 140, 189, 255, (383,276,0): 140, 189, 255, (383,277,0): 140, 189, 255, (383,278,0): 140, 190, 253, (383,279,0): 139, 190, 253, (383,280,0): 141, 192, 255, (383,281,0): 142, 194, 254, (383,282,0): 143, 195, 253, (383,283,0): 144, 194, 253, (383,284,0): 144, 195, 252, (383,285,0): 144, 195, 252, (383,286,0): 143, 194, 251, (383,287,0): 142, 193, 250, (383,288,0): 143, 194, 251, (383,289,0): 144, 194, 253, (383,290,0): 144, 194, 255, (383,291,0): 145, 195, 255, (383,292,0): 145, 192, 255, (383,293,0): 146, 190, 255, (383,294,0): 144, 188, 255, (383,295,0): 146, 185, 255, (383,296,0): 148, 186, 255, (383,297,0): 145, 179, 250, (383,298,0): 146, 177, 244, (383,299,0): 154, 179, 243, (383,300,0): 160, 180, 239, (383,301,0): 151, 168, 220, (383,302,0): 129, 143, 192, (383,303,0): 113, 121, 160, (383,304,0): 89, 86, 113, (383,305,0): 88, 81, 99, (383,306,0): 82, 78, 92, (383,307,0): 78, 77, 85, (383,308,0): 72, 73, 78, (383,309,0): 72, 73, 77, (383,310,0): 80, 81, 85, (383,311,0): 91, 92, 97, (383,312,0): 106, 103, 112, (383,313,0): 104, 98, 110, (383,314,0): 101, 90, 106, (383,315,0): 94, 80, 95, (383,316,0): 88, 70, 84, (383,317,0): 81, 61, 72, (383,318,0): 76, 53, 63, (383,319,0): 74, 48, 57, (383,320,0): 73, 47, 60, (383,321,0): 71, 44, 59, (383,322,0): 68, 41, 56, (383,323,0): 66, 39, 54, (383,324,0): 66, 40, 53, (383,325,0): 67, 41, 54, (383,326,0): 69, 43, 56, (383,327,0): 70, 44, 55, (383,328,0): 70, 44, 53, (383,329,0): 71, 44, 51, (383,330,0): 72, 45, 50, (383,331,0): 73, 47, 50, (383,332,0): 78, 49, 51, (383,333,0): 81, 52, 54, (383,334,0): 84, 55, 57, (383,335,0): 90, 54, 56, (383,336,0): 98, 49, 53, (383,337,0): 107, 52, 57, (383,338,0): 108, 56, 60, (383,339,0): 103, 54, 58, (383,340,0): 92, 47, 50, (383,341,0): 80, 40, 41, (383,342,0): 71, 35, 37, (383,343,0): 65, 33, 34, (383,344,0): 61, 31, 31, (383,345,0): 61, 32, 34, (383,346,0): 59, 33, 34, (383,347,0): 58, 32, 33, (383,348,0): 58, 32, 35, (383,349,0): 57, 31, 32, (383,350,0): 56, 30, 33, (383,351,0): 57, 28, 32, (383,352,0): 59, 26, 33, (383,353,0): 61, 26, 33, (383,354,0): 60, 24, 34, (383,355,0): 61, 24, 32, (383,356,0): 64, 24, 33, (383,357,0): 66, 24, 34, (383,358,0): 68, 27, 35, (383,359,0): 70, 27, 36, (383,360,0): 70, 27, 34, (383,361,0): 68, 27, 31, (383,362,0): 66, 25, 29, (383,363,0): 64, 25, 28, (383,364,0): 63, 27, 27, (383,365,0): 64, 30, 29, (383,366,0): 65, 34, 32, (383,367,0): 69, 35, 34, (383,368,0): 69, 29, 30, (383,369,0): 70, 28, 30, (383,370,0): 70, 28, 30, (383,371,0): 70, 28, 30, (383,372,0): 70, 28, 30, (383,373,0): 71, 29, 31, (383,374,0): 70, 29, 33, (383,375,0): 69, 30, 33, (383,376,0): 66, 27, 32, (383,377,0): 64, 28, 32, (383,378,0): 63, 27, 31, (383,379,0): 61, 26, 32, (383,380,0): 60, 25, 31, (383,381,0): 59, 24, 30, (383,382,0): 58, 23, 29, (383,383,0): 56, 24, 29, (383,384,0): 52, 21, 27, (383,385,0): 51, 22, 27, (383,386,0): 49, 22, 27, (383,387,0): 49, 22, 27, (383,388,0): 48, 23, 29, (383,389,0): 47, 22, 28, (383,390,0): 47, 22, 28, (383,391,0): 45, 22, 28, (383,392,0): 46, 25, 30, (383,393,0): 46, 25, 30, (383,394,0): 45, 26, 32, (383,395,0): 45, 26, 32, (383,396,0): 45, 26, 32, (383,397,0): 43, 26, 32, (383,398,0): 43, 26, 32, (383,399,0): 43, 26, 32, (383,400,0): 47, 28, 32, (383,401,0): 48, 28, 30, (383,402,0): 48, 28, 30, (383,403,0): 48, 28, 30, (383,404,0): 48, 28, 30, (383,405,0): 48, 28, 30, (383,406,0): 48, 28, 30, (383,407,0): 48, 28, 30, (383,408,0): 47, 27, 29, (383,409,0): 46, 26, 28, (383,410,0): 45, 25, 27, (383,411,0): 45, 25, 27, (383,412,0): 45, 25, 27, (383,413,0): 46, 26, 28, (383,414,0): 47, 27, 29, (383,415,0): 47, 28, 32, (383,416,0): 44, 27, 33, (383,417,0): 43, 28, 33, (383,418,0): 44, 29, 34, (383,419,0): 46, 29, 35, (383,420,0): 48, 32, 35, (383,421,0): 49, 33, 36, (383,422,0): 50, 34, 35, (383,423,0): 51, 35, 36, (383,424,0): 52, 36, 37, (383,425,0): 54, 38, 38, (383,426,0): 57, 42, 39, (383,427,0): 60, 45, 42, (383,428,0): 62, 48, 45, (383,429,0): 64, 50, 47, (383,430,0): 65, 52, 46, (383,431,0): 65, 52, 44, (383,432,0): 70, 56, 47, (383,433,0): 70, 58, 46, (383,434,0): 71, 59, 47, (383,435,0): 68, 58, 46, (383,436,0): 64, 56, 45, (383,437,0): 63, 57, 45, (383,438,0): 65, 61, 50, (383,439,0): 69, 65, 54, (383,440,0): 63, 56, 48, (383,441,0): 69, 58, 52, (383,442,0): 74, 60, 57, (383,443,0): 73, 55, 55, (383,444,0): 65, 43, 46, (383,445,0): 60, 35, 39, (383,446,0): 63, 34, 39, (383,447,0): 65, 36, 41, (383,448,0): 58, 36, 39, (383,449,0): 58, 38, 40, (383,450,0): 57, 37, 39, (383,451,0): 53, 33, 35, (383,452,0): 48, 29, 31, (383,453,0): 45, 29, 30, (383,454,0): 48, 32, 33, (383,455,0): 51, 37, 37, (383,456,0): 47, 35, 35, (383,457,0): 47, 37, 36, (383,458,0): 48, 40, 38, (383,459,0): 48, 40, 37, (383,460,0): 47, 42, 38, (383,461,0): 50, 45, 41, (383,462,0): 57, 52, 48, (383,463,0): 59, 58, 53, (383,464,0): 64, 65, 59, (383,465,0): 63, 68, 61, (383,466,0): 69, 77, 66, (383,467,0): 80, 90, 79, (383,468,0): 95, 107, 93, (383,469,0): 106, 120, 103, (383,470,0): 113, 128, 107, (383,471,0): 115, 129, 106, (383,472,0): 114, 126, 102, (383,473,0): 111, 120, 93, (383,474,0): 104, 108, 81, (383,475,0): 99, 99, 71, (383,476,0): 98, 93, 64, (383,477,0): 93, 86, 57, (383,478,0): 89, 80, 51, (383,479,0): 85, 75, 48, (383,480,0): 75, 71, 46, (383,481,0): 76, 74, 51, (383,482,0): 81, 76, 54, (383,483,0): 85, 80, 58, (383,484,0): 88, 83, 61, (383,485,0): 90, 84, 60, (383,486,0): 90, 84, 60, (383,487,0): 91, 83, 60, (383,488,0): 99, 88, 66, (383,489,0): 98, 87, 65, (383,490,0): 98, 87, 65, (383,491,0): 99, 86, 67, (383,492,0): 96, 83, 64, (383,493,0): 92, 77, 58, (383,494,0): 82, 66, 50, (383,495,0): 74, 58, 43, (383,496,0): 71, 51, 42, (383,497,0): 67, 47, 40, (383,498,0): 62, 41, 36, (383,499,0): 60, 39, 34, (383,500,0): 61, 40, 35, (383,501,0): 61, 40, 35, (383,502,0): 59, 38, 35, (383,503,0): 57, 36, 33, (383,504,0): 60, 39, 38, (383,505,0): 59, 38, 37, (383,506,0): 56, 35, 34, (383,507,0): 54, 33, 32, (383,508,0): 51, 29, 31, (383,509,0): 49, 27, 29, (383,510,0): 48, 26, 28, (383,511,0): 48, 26, 29, (383,512,0): 41, 20, 25, (383,513,0): 39, 20, 26, (383,514,0): 40, 19, 26, (383,515,0): 39, 20, 26, (383,516,0): 40, 20, 29, (383,517,0): 41, 21, 30, (383,518,0): 43, 23, 34, (383,519,0): 44, 24, 35, (383,520,0): 44, 27, 35, (383,521,0): 43, 26, 34, (383,522,0): 41, 26, 31, (383,523,0): 43, 28, 31, (383,524,0): 47, 33, 33, (383,525,0): 54, 40, 40, (383,526,0): 61, 47, 46, (383,527,0): 63, 52, 46, (383,528,0): 71, 65, 51, (383,529,0): 72, 66, 50, (383,530,0): 73, 66, 50, (383,531,0): 70, 61, 46, (383,532,0): 66, 52, 39, (383,533,0): 63, 46, 36, (383,534,0): 61, 42, 35, (383,535,0): 61, 42, 35, (383,536,0): 66, 47, 41, (383,537,0): 66, 47, 41, (383,538,0): 68, 51, 44, (383,539,0): 71, 56, 51, (383,540,0): 72, 61, 55, (383,541,0): 72, 63, 56, (383,542,0): 66, 59, 53, (383,543,0): 60, 55, 49, (383,544,0): 64, 61, 56, (383,545,0): 64, 63, 58, (383,546,0): 68, 65, 60, (383,547,0): 71, 68, 63, (383,548,0): 72, 69, 64, (383,549,0): 72, 69, 64, (383,550,0): 71, 68, 63, (383,551,0): 70, 67, 62, (383,552,0): 63, 58, 54, (383,553,0): 64, 59, 55, (383,554,0): 67, 59, 56, (383,555,0): 67, 59, 56, (383,556,0): 67, 59, 56, (383,557,0): 65, 57, 54, (383,558,0): 63, 55, 52, (383,559,0): 61, 53, 50, (383,560,0): 60, 52, 49, (383,561,0): 56, 48, 45, (383,562,0): 50, 42, 40, (383,563,0): 46, 38, 36, (383,564,0): 42, 33, 34, (383,565,0): 38, 29, 32, (383,566,0): 33, 22, 28, (383,567,0): 28, 17, 25, (383,568,0): 31, 19, 29, (383,569,0): 30, 18, 28, (383,570,0): 29, 17, 27, (383,571,0): 28, 17, 25, (383,572,0): 27, 16, 24, (383,573,0): 28, 17, 25, (383,574,0): 29, 18, 24, (383,575,0): 29, 18, 26, (383,576,0): 29, 19, 30, (383,577,0): 29, 19, 30, (383,578,0): 26, 18, 29, (383,579,0): 26, 18, 29, (383,580,0): 26, 18, 29, (383,581,0): 26, 20, 30, (383,582,0): 28, 22, 32, (383,583,0): 29, 23, 33, (383,584,0): 26, 18, 29, (383,585,0): 29, 19, 30, (383,586,0): 32, 20, 32, (383,587,0): 36, 23, 33, (383,588,0): 41, 25, 36, (383,589,0): 44, 28, 39, (383,590,0): 47, 29, 41, (383,591,0): 48, 30, 42, (383,592,0): 45, 32, 41, (383,593,0): 44, 33, 41, (383,594,0): 44, 31, 40, (383,595,0): 41, 30, 38, (383,596,0): 41, 28, 37, (383,597,0): 39, 28, 36, (383,598,0): 39, 26, 35, (383,599,0): 37, 26, 34, (384,0,0): 75, 63, 49, (384,1,0): 75, 63, 49, (384,2,0): 76, 64, 50, (384,3,0): 77, 65, 51, (384,4,0): 79, 67, 53, (384,5,0): 80, 68, 54, (384,6,0): 82, 68, 55, (384,7,0): 83, 70, 54, (384,8,0): 82, 66, 51, (384,9,0): 81, 65, 50, (384,10,0): 80, 64, 49, (384,11,0): 80, 64, 49, (384,12,0): 82, 66, 51, (384,13,0): 85, 69, 54, (384,14,0): 91, 73, 59, (384,15,0): 92, 76, 60, (384,16,0): 93, 81, 59, (384,17,0): 94, 82, 58, (384,18,0): 94, 82, 60, (384,19,0): 95, 83, 59, (384,20,0): 96, 84, 60, (384,21,0): 96, 84, 60, (384,22,0): 97, 85, 59, (384,23,0): 97, 85, 59, (384,24,0): 101, 89, 63, (384,25,0): 100, 88, 62, (384,26,0): 100, 89, 61, (384,27,0): 99, 88, 60, (384,28,0): 98, 87, 59, (384,29,0): 97, 86, 56, (384,30,0): 97, 86, 58, (384,31,0): 96, 85, 57, (384,32,0): 101, 87, 61, (384,33,0): 101, 86, 63, (384,34,0): 103, 87, 62, (384,35,0): 103, 89, 63, (384,36,0): 104, 90, 64, (384,37,0): 105, 91, 65, (384,38,0): 106, 92, 65, (384,39,0): 106, 92, 65, (384,40,0): 106, 95, 67, (384,41,0): 106, 95, 65, (384,42,0): 105, 96, 67, (384,43,0): 105, 96, 65, (384,44,0): 105, 96, 65, (384,45,0): 105, 96, 65, (384,46,0): 105, 96, 65, (384,47,0): 105, 96, 65, (384,48,0): 107, 96, 66, (384,49,0): 107, 96, 66, (384,50,0): 109, 95, 68, (384,51,0): 107, 96, 66, (384,52,0): 107, 93, 66, (384,53,0): 103, 92, 64, (384,54,0): 103, 89, 62, (384,55,0): 100, 89, 61, (384,56,0): 96, 82, 55, (384,57,0): 93, 82, 54, (384,58,0): 94, 80, 53, (384,59,0): 89, 78, 50, (384,60,0): 86, 72, 45, (384,61,0): 78, 67, 39, (384,62,0): 74, 60, 33, (384,63,0): 71, 56, 33, (384,64,0): 62, 46, 31, (384,65,0): 62, 45, 35, (384,66,0): 63, 46, 36, (384,67,0): 64, 47, 37, (384,68,0): 62, 48, 37, (384,69,0): 62, 48, 35, (384,70,0): 62, 49, 33, (384,71,0): 61, 48, 31, (384,72,0): 67, 54, 37, (384,73,0): 66, 55, 35, (384,74,0): 67, 56, 34, (384,75,0): 69, 59, 34, (384,76,0): 71, 61, 36, (384,77,0): 73, 63, 36, (384,78,0): 74, 67, 39, (384,79,0): 75, 68, 40, (384,80,0): 84, 73, 45, (384,81,0): 85, 74, 46, (384,82,0): 86, 75, 47, (384,83,0): 86, 75, 47, (384,84,0): 86, 74, 48, (384,85,0): 85, 73, 47, (384,86,0): 84, 72, 46, (384,87,0): 83, 71, 45, (384,88,0): 78, 66, 42, (384,89,0): 76, 64, 40, (384,90,0): 73, 61, 37, (384,91,0): 70, 58, 34, (384,92,0): 67, 55, 33, (384,93,0): 66, 54, 32, (384,94,0): 65, 53, 31, (384,95,0): 64, 51, 32, (384,96,0): 62, 49, 32, (384,97,0): 62, 49, 33, (384,98,0): 62, 49, 33, (384,99,0): 61, 48, 32, (384,100,0): 61, 47, 34, (384,101,0): 60, 46, 33, (384,102,0): 60, 46, 33, (384,103,0): 59, 45, 32, (384,104,0): 59, 45, 34, (384,105,0): 59, 45, 34, (384,106,0): 59, 45, 36, (384,107,0): 59, 45, 36, (384,108,0): 59, 45, 36, (384,109,0): 59, 45, 36, (384,110,0): 59, 44, 37, (384,111,0): 59, 44, 37, (384,112,0): 58, 45, 36, (384,113,0): 59, 47, 35, (384,114,0): 62, 48, 37, (384,115,0): 64, 50, 39, (384,116,0): 64, 50, 39, (384,117,0): 64, 50, 39, (384,118,0): 62, 48, 37, (384,119,0): 64, 48, 35, (384,120,0): 67, 51, 38, (384,121,0): 68, 52, 39, (384,122,0): 69, 53, 40, (384,123,0): 71, 55, 42, (384,124,0): 72, 56, 43, (384,125,0): 74, 58, 45, (384,126,0): 76, 58, 46, (384,127,0): 77, 59, 45, (384,128,0): 81, 59, 45, (384,129,0): 80, 59, 42, (384,130,0): 80, 57, 41, (384,131,0): 80, 57, 39, (384,132,0): 82, 59, 43, (384,133,0): 88, 62, 45, (384,134,0): 92, 66, 49, (384,135,0): 96, 69, 50, (384,136,0): 100, 73, 54, (384,137,0): 99, 72, 53, (384,138,0): 99, 70, 52, (384,139,0): 99, 71, 50, (384,140,0): 102, 71, 51, (384,141,0): 105, 74, 54, (384,142,0): 107, 76, 56, (384,143,0): 109, 78, 58, (384,144,0): 111, 76, 57, (384,145,0): 114, 79, 60, (384,146,0): 116, 83, 66, (384,147,0): 121, 88, 71, (384,148,0): 128, 95, 80, (384,149,0): 135, 106, 92, (384,150,0): 146, 118, 104, (384,151,0): 150, 128, 114, (384,152,0): 180, 163, 147, (384,153,0): 189, 177, 161, (384,154,0): 200, 194, 178, (384,155,0): 203, 204, 188, (384,156,0): 200, 204, 187, (384,157,0): 192, 201, 182, (384,158,0): 186, 199, 181, (384,159,0): 184, 201, 185, (384,160,0): 185, 205, 196, (384,161,0): 180, 203, 197, (384,162,0): 174, 199, 195, (384,163,0): 173, 199, 198, (384,164,0): 173, 201, 202, (384,165,0): 172, 203, 206, (384,166,0): 168, 201, 208, (384,167,0): 162, 199, 207, (384,168,0): 157, 195, 206, (384,169,0): 154, 197, 206, (384,170,0): 153, 197, 208, (384,171,0): 151, 198, 208, (384,172,0): 150, 199, 206, (384,173,0): 150, 199, 206, (384,174,0): 149, 199, 206, (384,175,0): 149, 199, 208, (384,176,0): 152, 200, 214, (384,177,0): 152, 199, 215, (384,178,0): 152, 199, 215, (384,179,0): 152, 199, 217, (384,180,0): 151, 198, 216, (384,181,0): 151, 198, 218, (384,182,0): 150, 198, 220, (384,183,0): 150, 198, 220, (384,184,0): 151, 201, 224, (384,185,0): 151, 201, 224, (384,186,0): 151, 201, 226, (384,187,0): 151, 201, 226, (384,188,0): 151, 201, 228, (384,189,0): 150, 201, 230, (384,190,0): 151, 200, 230, (384,191,0): 150, 201, 230, (384,192,0): 147, 198, 229, (384,193,0): 150, 201, 232, (384,194,0): 152, 203, 234, (384,195,0): 150, 201, 232, (384,196,0): 145, 195, 228, (384,197,0): 141, 191, 224, (384,198,0): 141, 191, 226, (384,199,0): 142, 192, 227, (384,200,0): 142, 192, 227, (384,201,0): 142, 192, 227, (384,202,0): 142, 192, 229, (384,203,0): 142, 192, 229, (384,204,0): 142, 191, 231, (384,205,0): 142, 191, 231, (384,206,0): 142, 191, 231, (384,207,0): 142, 191, 231, (384,208,0): 146, 190, 235, (384,209,0): 145, 189, 234, (384,210,0): 144, 188, 233, (384,211,0): 141, 188, 232, (384,212,0): 141, 188, 232, (384,213,0): 142, 189, 233, (384,214,0): 142, 191, 234, (384,215,0): 143, 192, 235, (384,216,0): 144, 191, 235, (384,217,0): 145, 189, 234, (384,218,0): 144, 188, 233, (384,219,0): 145, 188, 233, (384,220,0): 147, 188, 234, (384,221,0): 150, 188, 235, (384,222,0): 153, 189, 237, (384,223,0): 156, 190, 238, (384,224,0): 160, 192, 243, (384,225,0): 157, 189, 240, (384,226,0): 156, 188, 237, (384,227,0): 159, 189, 239, (384,228,0): 165, 191, 242, (384,229,0): 170, 191, 244, (384,230,0): 172, 188, 240, (384,231,0): 173, 185, 237, (384,232,0): 185, 191, 243, (384,233,0): 190, 191, 245, (384,234,0): 192, 192, 244, (384,235,0): 190, 190, 242, (384,236,0): 184, 186, 235, (384,237,0): 180, 184, 231, (384,238,0): 177, 184, 230, (384,239,0): 174, 187, 231, (384,240,0): 166, 187, 230, (384,241,0): 161, 189, 229, (384,242,0): 159, 186, 229, (384,243,0): 156, 185, 227, (384,244,0): 155, 184, 226, (384,245,0): 153, 184, 228, (384,246,0): 152, 185, 230, (384,247,0): 151, 185, 231, (384,248,0): 149, 183, 231, (384,249,0): 147, 183, 231, (384,250,0): 147, 184, 236, (384,251,0): 145, 185, 236, (384,252,0): 145, 185, 237, (384,253,0): 142, 183, 235, (384,254,0): 141, 182, 234, (384,255,0): 140, 181, 233, (384,256,0): 141, 183, 233, (384,257,0): 140, 182, 230, (384,258,0): 140, 182, 230, (384,259,0): 139, 181, 229, (384,260,0): 140, 182, 232, (384,261,0): 140, 184, 233, (384,262,0): 142, 186, 235, (384,263,0): 143, 187, 236, (384,264,0): 139, 182, 233, (384,265,0): 140, 183, 234, (384,266,0): 139, 185, 235, (384,267,0): 140, 186, 236, (384,268,0): 141, 188, 240, (384,269,0): 142, 189, 241, (384,270,0): 143, 190, 242, (384,271,0): 144, 189, 246, (384,272,0): 146, 187, 253, (384,273,0): 145, 185, 254, (384,274,0): 144, 184, 253, (384,275,0): 141, 184, 252, (384,276,0): 140, 185, 252, (384,277,0): 141, 186, 253, (384,278,0): 140, 188, 254, (384,279,0): 140, 189, 255, (384,280,0): 139, 188, 254, (384,281,0): 140, 190, 253, (384,282,0): 141, 191, 254, (384,283,0): 144, 192, 255, (384,284,0): 144, 192, 255, (384,285,0): 144, 192, 255, (384,286,0): 145, 190, 255, (384,287,0): 145, 191, 253, (384,288,0): 143, 192, 251, (384,289,0): 145, 191, 251, (384,290,0): 145, 191, 253, (384,291,0): 146, 190, 255, (384,292,0): 148, 188, 255, (384,293,0): 148, 188, 255, (384,294,0): 148, 187, 255, (384,295,0): 149, 186, 255, (384,296,0): 148, 184, 255, (384,297,0): 145, 179, 253, (384,298,0): 147, 175, 248, (384,299,0): 154, 177, 244, (384,300,0): 161, 175, 236, (384,301,0): 151, 161, 214, (384,302,0): 130, 134, 182, (384,303,0): 113, 113, 151, (384,304,0): 87, 85, 109, (384,305,0): 84, 83, 99, (384,306,0): 84, 84, 96, (384,307,0): 83, 83, 93, (384,308,0): 76, 79, 86, (384,309,0): 73, 76, 83, (384,310,0): 84, 84, 94, (384,311,0): 96, 96, 106, (384,312,0): 104, 100, 114, (384,313,0): 102, 96, 110, (384,314,0): 96, 88, 103, (384,315,0): 90, 78, 92, (384,316,0): 83, 67, 78, (384,317,0): 78, 58, 67, (384,318,0): 73, 53, 55, (384,319,0): 71, 49, 52, (384,320,0): 67, 44, 54, (384,321,0): 69, 45, 58, (384,322,0): 70, 46, 60, (384,323,0): 67, 43, 57, (384,324,0): 63, 41, 54, (384,325,0): 62, 40, 52, (384,326,0): 64, 42, 54, (384,327,0): 68, 47, 56, (384,328,0): 70, 47, 55, (384,329,0): 72, 47, 53, (384,330,0): 74, 48, 51, (384,331,0): 78, 49, 51, (384,332,0): 82, 52, 52, (384,333,0): 86, 55, 53, (384,334,0): 91, 57, 55, (384,335,0): 98, 57, 53, (384,336,0): 110, 55, 50, (384,337,0): 116, 55, 50, (384,338,0): 115, 57, 53, (384,339,0): 107, 54, 50, (384,340,0): 94, 46, 44, (384,341,0): 81, 40, 38, (384,342,0): 75, 36, 37, (384,343,0): 71, 37, 38, (384,344,0): 64, 34, 34, (384,345,0): 61, 32, 34, (384,346,0): 57, 31, 34, (384,347,0): 55, 29, 32, (384,348,0): 56, 27, 32, (384,349,0): 55, 26, 30, (384,350,0): 55, 26, 31, (384,351,0): 57, 26, 31, (384,352,0): 55, 24, 30, (384,353,0): 56, 24, 29, (384,354,0): 56, 23, 30, (384,355,0): 57, 25, 30, (384,356,0): 57, 25, 30, (384,357,0): 60, 25, 31, (384,358,0): 60, 25, 31, (384,359,0): 61, 24, 31, (384,360,0): 61, 24, 31, (384,361,0): 62, 26, 30, (384,362,0): 62, 26, 30, (384,363,0): 63, 27, 31, (384,364,0): 63, 27, 31, (384,365,0): 64, 28, 32, (384,366,0): 63, 28, 32, (384,367,0): 64, 28, 32, (384,368,0): 68, 26, 30, (384,369,0): 70, 25, 30, (384,370,0): 70, 25, 30, (384,371,0): 70, 25, 30, (384,372,0): 68, 26, 30, (384,373,0): 68, 26, 30, (384,374,0): 67, 26, 32, (384,375,0): 66, 27, 32, (384,376,0): 65, 25, 33, (384,377,0): 62, 25, 32, (384,378,0): 60, 25, 31, (384,379,0): 57, 24, 31, (384,380,0): 56, 23, 30, (384,381,0): 55, 22, 29, (384,382,0): 54, 21, 28, (384,383,0): 53, 22, 28, (384,384,0): 49, 23, 32, (384,385,0): 46, 23, 33, (384,386,0): 44, 21, 31, (384,387,0): 43, 20, 30, (384,388,0): 42, 19, 27, (384,389,0): 43, 20, 28, (384,390,0): 43, 20, 28, (384,391,0): 43, 22, 29, (384,392,0): 43, 22, 29, (384,393,0): 43, 22, 29, (384,394,0): 44, 23, 28, (384,395,0): 45, 24, 29, (384,396,0): 46, 25, 30, (384,397,0): 47, 28, 32, (384,398,0): 48, 29, 33, (384,399,0): 50, 29, 34, (384,400,0): 47, 25, 28, (384,401,0): 47, 25, 28, (384,402,0): 47, 25, 28, (384,403,0): 47, 25, 28, (384,404,0): 47, 25, 28, (384,405,0): 47, 25, 28, (384,406,0): 47, 25, 28, (384,407,0): 47, 25, 28, (384,408,0): 51, 29, 32, (384,409,0): 50, 28, 31, (384,410,0): 47, 25, 28, (384,411,0): 45, 23, 26, (384,412,0): 45, 23, 26, (384,413,0): 45, 23, 26, (384,414,0): 46, 24, 27, (384,415,0): 46, 26, 28, (384,416,0): 45, 31, 31, (384,417,0): 43, 32, 30, (384,418,0): 43, 32, 30, (384,419,0): 45, 31, 30, (384,420,0): 46, 30, 30, (384,421,0): 47, 31, 31, (384,422,0): 49, 31, 31, (384,423,0): 49, 31, 31, (384,424,0): 46, 30, 30, (384,425,0): 52, 37, 34, (384,426,0): 58, 44, 41, (384,427,0): 62, 48, 45, (384,428,0): 60, 49, 45, (384,429,0): 61, 50, 46, (384,430,0): 63, 54, 49, (384,431,0): 67, 56, 50, (384,432,0): 66, 54, 42, (384,433,0): 62, 50, 36, (384,434,0): 61, 54, 38, (384,435,0): 68, 62, 46, (384,436,0): 69, 66, 51, (384,437,0): 66, 64, 49, (384,438,0): 66, 67, 53, (384,439,0): 72, 72, 60, (384,440,0): 65, 62, 53, (384,441,0): 67, 63, 54, (384,442,0): 70, 61, 56, (384,443,0): 68, 54, 51, (384,444,0): 63, 43, 44, (384,445,0): 59, 34, 37, (384,446,0): 58, 29, 33, (384,447,0): 55, 28, 33, (384,448,0): 54, 29, 33, (384,449,0): 54, 31, 37, (384,450,0): 53, 32, 37, (384,451,0): 51, 30, 35, (384,452,0): 48, 29, 31, (384,453,0): 47, 31, 32, (384,454,0): 49, 35, 34, (384,455,0): 50, 39, 37, (384,456,0): 48, 40, 37, (384,457,0): 48, 43, 39, (384,458,0): 48, 45, 40, (384,459,0): 47, 44, 37, (384,460,0): 43, 43, 35, (384,461,0): 44, 45, 37, (384,462,0): 49, 50, 42, (384,463,0): 53, 56, 47, (384,464,0): 67, 72, 65, (384,465,0): 70, 77, 69, (384,466,0): 73, 83, 72, (384,467,0): 82, 94, 82, (384,468,0): 98, 112, 97, (384,469,0): 114, 128, 111, (384,470,0): 118, 129, 112, (384,471,0): 114, 123, 104, (384,472,0): 117, 122, 102, (384,473,0): 111, 112, 94, (384,474,0): 105, 102, 83, (384,475,0): 99, 94, 74, (384,476,0): 94, 88, 66, (384,477,0): 88, 82, 58, (384,478,0): 80, 76, 51, (384,479,0): 73, 71, 48, (384,480,0): 66, 65, 44, (384,481,0): 71, 73, 51, (384,482,0): 82, 82, 58, (384,483,0): 87, 87, 63, (384,484,0): 88, 86, 61, (384,485,0): 88, 87, 59, (384,486,0): 91, 87, 58, (384,487,0): 93, 88, 59, (384,488,0): 101, 94, 66, (384,489,0): 104, 94, 67, (384,490,0): 105, 93, 69, (384,491,0): 104, 89, 68, (384,492,0): 98, 83, 64, (384,493,0): 91, 74, 58, (384,494,0): 82, 64, 50, (384,495,0): 78, 58, 47, (384,496,0): 68, 48, 39, (384,497,0): 70, 47, 41, (384,498,0): 70, 46, 42, (384,499,0): 69, 45, 41, (384,500,0): 67, 43, 39, (384,501,0): 65, 41, 37, (384,502,0): 64, 40, 38, (384,503,0): 62, 38, 36, (384,504,0): 60, 36, 36, (384,505,0): 59, 35, 35, (384,506,0): 58, 34, 34, (384,507,0): 57, 33, 33, (384,508,0): 55, 30, 33, (384,509,0): 52, 27, 30, (384,510,0): 50, 25, 28, (384,511,0): 47, 25, 27, (384,512,0): 40, 21, 23, (384,513,0): 37, 21, 24, (384,514,0): 39, 20, 24, (384,515,0): 37, 21, 24, (384,516,0): 38, 22, 25, (384,517,0): 39, 23, 26, (384,518,0): 41, 25, 28, (384,519,0): 42, 26, 29, (384,520,0): 45, 29, 32, (384,521,0): 45, 29, 32, (384,522,0): 45, 29, 32, (384,523,0): 47, 31, 32, (384,524,0): 51, 35, 36, (384,525,0): 56, 40, 41, (384,526,0): 61, 45, 46, (384,527,0): 63, 49, 46, (384,528,0): 72, 62, 53, (384,529,0): 76, 66, 54, (384,530,0): 77, 67, 55, (384,531,0): 74, 62, 50, (384,532,0): 66, 52, 41, (384,533,0): 62, 45, 37, (384,534,0): 64, 45, 38, (384,535,0): 67, 48, 41, (384,536,0): 65, 46, 39, (384,537,0): 67, 48, 41, (384,538,0): 68, 51, 43, (384,539,0): 68, 53, 46, (384,540,0): 68, 55, 47, (384,541,0): 66, 56, 47, (384,542,0): 66, 56, 47, (384,543,0): 65, 56, 49, (384,544,0): 66, 61, 57, (384,545,0): 67, 63, 60, (384,546,0): 70, 65, 62, (384,547,0): 72, 67, 64, (384,548,0): 73, 68, 65, (384,549,0): 72, 67, 64, (384,550,0): 71, 66, 63, (384,551,0): 70, 65, 62, (384,552,0): 67, 62, 59, (384,553,0): 67, 62, 59, (384,554,0): 66, 61, 58, (384,555,0): 64, 59, 56, (384,556,0): 62, 57, 54, (384,557,0): 61, 56, 53, (384,558,0): 60, 55, 52, (384,559,0): 61, 53, 51, (384,560,0): 59, 49, 48, (384,561,0): 59, 47, 47, (384,562,0): 56, 44, 44, (384,563,0): 51, 39, 39, (384,564,0): 45, 33, 35, (384,565,0): 40, 29, 33, (384,566,0): 37, 24, 31, (384,567,0): 35, 24, 30, (384,568,0): 29, 18, 26, (384,569,0): 30, 18, 28, (384,570,0): 29, 19, 28, (384,571,0): 29, 19, 30, (384,572,0): 28, 18, 29, (384,573,0): 27, 17, 28, (384,574,0): 26, 16, 27, (384,575,0): 24, 16, 27, (384,576,0): 28, 22, 34, (384,577,0): 27, 24, 35, (384,578,0): 28, 25, 36, (384,579,0): 25, 22, 33, (384,580,0): 21, 18, 27, (384,581,0): 21, 15, 25, (384,582,0): 24, 19, 26, (384,583,0): 28, 21, 29, (384,584,0): 28, 18, 27, (384,585,0): 31, 21, 30, (384,586,0): 36, 24, 34, (384,587,0): 38, 25, 34, (384,588,0): 39, 23, 33, (384,589,0): 41, 25, 35, (384,590,0): 46, 30, 40, (384,591,0): 50, 34, 44, (384,592,0): 45, 30, 37, (384,593,0): 43, 30, 37, (384,594,0): 44, 29, 36, (384,595,0): 41, 28, 35, (384,596,0): 41, 26, 33, (384,597,0): 38, 25, 32, (384,598,0): 39, 24, 31, (384,599,0): 36, 23, 30, (385,0,0): 73, 64, 47, (385,1,0): 74, 65, 48, (385,2,0): 76, 64, 48, (385,3,0): 78, 66, 50, (385,4,0): 79, 67, 51, (385,5,0): 80, 68, 52, (385,6,0): 82, 69, 53, (385,7,0): 83, 70, 54, (385,8,0): 82, 66, 51, (385,9,0): 81, 65, 50, (385,10,0): 80, 64, 49, (385,11,0): 80, 64, 49, (385,12,0): 83, 65, 51, (385,13,0): 86, 68, 54, (385,14,0): 90, 72, 58, (385,15,0): 92, 76, 60, (385,16,0): 95, 80, 61, (385,17,0): 93, 81, 59, (385,18,0): 94, 82, 60, (385,19,0): 94, 82, 60, (385,20,0): 95, 83, 59, (385,21,0): 96, 84, 60, (385,22,0): 97, 85, 59, (385,23,0): 97, 85, 59, (385,24,0): 100, 88, 62, (385,25,0): 100, 88, 62, (385,26,0): 100, 89, 61, (385,27,0): 99, 88, 60, (385,28,0): 98, 87, 57, (385,29,0): 97, 86, 56, (385,30,0): 97, 86, 56, (385,31,0): 97, 86, 58, (385,32,0): 102, 86, 61, (385,33,0): 102, 86, 63, (385,34,0): 103, 87, 62, (385,35,0): 104, 88, 63, (385,36,0): 104, 90, 64, (385,37,0): 105, 91, 65, (385,38,0): 106, 92, 65, (385,39,0): 107, 93, 66, (385,40,0): 105, 94, 64, (385,41,0): 105, 94, 64, (385,42,0): 104, 95, 64, (385,43,0): 104, 95, 64, (385,44,0): 104, 95, 62, (385,45,0): 104, 95, 62, (385,46,0): 102, 96, 62, (385,47,0): 102, 96, 62, (385,48,0): 107, 96, 68, (385,49,0): 107, 96, 68, (385,50,0): 108, 97, 69, (385,51,0): 107, 96, 68, (385,52,0): 106, 95, 67, (385,53,0): 104, 93, 65, (385,54,0): 102, 91, 63, (385,55,0): 101, 90, 62, (385,56,0): 95, 84, 56, (385,57,0): 95, 84, 56, (385,58,0): 93, 82, 54, (385,59,0): 89, 78, 50, (385,60,0): 84, 73, 45, (385,61,0): 78, 67, 39, (385,62,0): 72, 61, 33, (385,63,0): 68, 56, 32, (385,64,0): 64, 46, 32, (385,65,0): 64, 46, 36, (385,66,0): 65, 47, 37, (385,67,0): 65, 47, 35, (385,68,0): 64, 48, 35, (385,69,0): 64, 48, 33, (385,70,0): 64, 48, 33, (385,71,0): 64, 48, 32, (385,72,0): 67, 54, 35, (385,73,0): 67, 54, 35, (385,74,0): 68, 57, 35, (385,75,0): 69, 58, 36, (385,76,0): 72, 62, 37, (385,77,0): 74, 64, 39, (385,78,0): 74, 67, 41, (385,79,0): 75, 68, 40, (385,80,0): 84, 73, 45, (385,81,0): 85, 74, 44, (385,82,0): 85, 74, 44, (385,83,0): 86, 75, 45, (385,84,0): 86, 75, 47, (385,85,0): 85, 74, 46, (385,86,0): 84, 72, 46, (385,87,0): 83, 71, 45, (385,88,0): 78, 66, 40, (385,89,0): 76, 64, 38, (385,90,0): 73, 61, 37, (385,91,0): 70, 58, 34, (385,92,0): 67, 55, 33, (385,93,0): 66, 54, 32, (385,94,0): 65, 53, 31, (385,95,0): 64, 51, 32, (385,96,0): 62, 49, 32, (385,97,0): 62, 49, 33, (385,98,0): 61, 48, 32, (385,99,0): 61, 48, 32, (385,100,0): 60, 46, 33, (385,101,0): 60, 46, 33, (385,102,0): 59, 45, 32, (385,103,0): 59, 45, 32, (385,104,0): 59, 45, 34, (385,105,0): 59, 45, 34, (385,106,0): 59, 45, 36, (385,107,0): 59, 45, 36, (385,108,0): 59, 45, 36, (385,109,0): 59, 45, 36, (385,110,0): 59, 44, 37, (385,111,0): 58, 45, 36, (385,112,0): 57, 44, 35, (385,113,0): 57, 47, 35, (385,114,0): 60, 48, 36, (385,115,0): 62, 50, 38, (385,116,0): 63, 51, 39, (385,117,0): 62, 50, 38, (385,118,0): 62, 48, 37, (385,119,0): 61, 47, 36, (385,120,0): 67, 50, 40, (385,121,0): 68, 51, 41, (385,122,0): 69, 52, 42, (385,123,0): 70, 53, 43, (385,124,0): 73, 55, 45, (385,125,0): 74, 56, 46, (385,126,0): 76, 58, 48, (385,127,0): 77, 57, 46, (385,128,0): 81, 59, 46, (385,129,0): 81, 58, 44, (385,130,0): 80, 57, 41, (385,131,0): 80, 57, 41, (385,132,0): 84, 58, 43, (385,133,0): 88, 62, 47, (385,134,0): 93, 66, 49, (385,135,0): 96, 69, 52, (385,136,0): 99, 72, 53, (385,137,0): 99, 72, 53, (385,138,0): 99, 70, 52, (385,139,0): 99, 70, 52, (385,140,0): 102, 71, 51, (385,141,0): 104, 73, 53, (385,142,0): 106, 75, 55, (385,143,0): 108, 77, 57, (385,144,0): 115, 82, 63, (385,145,0): 120, 85, 66, (385,146,0): 125, 89, 73, (385,147,0): 131, 95, 79, (385,148,0): 139, 103, 89, (385,149,0): 148, 115, 100, (385,150,0): 159, 127, 114, (385,151,0): 164, 136, 122, (385,152,0): 190, 167, 153, (385,153,0): 195, 178, 162, (385,154,0): 203, 191, 175, (385,155,0): 205, 199, 183, (385,156,0): 199, 200, 182, (385,157,0): 193, 198, 178, (385,158,0): 189, 196, 178, (385,159,0): 186, 197, 181, (385,160,0): 183, 199, 188, (385,161,0): 180, 197, 191, (385,162,0): 177, 196, 194, (385,163,0): 176, 198, 196, (385,164,0): 176, 200, 202, (385,165,0): 172, 200, 204, (385,166,0): 167, 197, 207, (385,167,0): 161, 195, 205, (385,168,0): 157, 195, 208, (385,169,0): 156, 195, 210, (385,170,0): 153, 197, 210, (385,171,0): 151, 197, 210, (385,172,0): 150, 198, 208, (385,173,0): 149, 199, 208, (385,174,0): 149, 199, 208, (385,175,0): 149, 199, 208, (385,176,0): 152, 200, 214, (385,177,0): 153, 199, 214, (385,178,0): 151, 198, 214, (385,179,0): 151, 198, 214, (385,180,0): 151, 198, 216, (385,181,0): 151, 198, 218, (385,182,0): 150, 198, 220, (385,183,0): 150, 198, 220, (385,184,0): 151, 201, 224, (385,185,0): 151, 201, 224, (385,186,0): 151, 201, 226, (385,187,0): 151, 201, 228, (385,188,0): 150, 201, 230, (385,189,0): 150, 201, 230, (385,190,0): 150, 201, 230, (385,191,0): 150, 201, 230, (385,192,0): 147, 198, 229, (385,193,0): 150, 201, 232, (385,194,0): 151, 202, 233, (385,195,0): 149, 200, 231, (385,196,0): 145, 195, 228, (385,197,0): 142, 192, 225, (385,198,0): 141, 191, 226, (385,199,0): 142, 192, 227, (385,200,0): 142, 192, 227, (385,201,0): 142, 192, 227, (385,202,0): 142, 192, 229, (385,203,0): 142, 192, 229, (385,204,0): 142, 191, 231, (385,205,0): 142, 191, 231, (385,206,0): 142, 191, 231, (385,207,0): 143, 191, 231, (385,208,0): 146, 191, 233, (385,209,0): 146, 190, 235, (385,210,0): 145, 189, 234, (385,211,0): 142, 189, 233, (385,212,0): 142, 189, 233, (385,213,0): 142, 191, 234, (385,214,0): 143, 192, 235, (385,215,0): 141, 192, 235, (385,216,0): 142, 191, 234, (385,217,0): 142, 189, 233, (385,218,0): 144, 188, 233, (385,219,0): 144, 187, 232, (385,220,0): 146, 187, 233, (385,221,0): 149, 187, 234, (385,222,0): 152, 188, 236, (385,223,0): 155, 189, 237, (385,224,0): 160, 192, 241, (385,225,0): 157, 189, 238, (385,226,0): 155, 187, 236, (385,227,0): 159, 187, 235, (385,228,0): 165, 188, 238, (385,229,0): 171, 189, 239, (385,230,0): 175, 185, 238, (385,231,0): 178, 181, 234, (385,232,0): 189, 184, 238, (385,233,0): 194, 185, 238, (385,234,0): 196, 186, 239, (385,235,0): 193, 183, 235, (385,236,0): 188, 180, 229, (385,237,0): 182, 179, 224, (385,238,0): 178, 179, 223, (385,239,0): 175, 184, 227, (385,240,0): 165, 186, 229, (385,241,0): 160, 187, 230, (385,242,0): 157, 186, 228, (385,243,0): 156, 185, 227, (385,244,0): 152, 183, 227, (385,245,0): 152, 183, 227, (385,246,0): 152, 185, 230, (385,247,0): 151, 185, 231, (385,248,0): 149, 183, 231, (385,249,0): 147, 183, 231, (385,250,0): 147, 185, 234, (385,251,0): 147, 184, 236, (385,252,0): 145, 185, 237, (385,253,0): 143, 183, 235, (385,254,0): 141, 182, 234, (385,255,0): 140, 182, 232, (385,256,0): 141, 181, 230, (385,257,0): 141, 182, 228, (385,258,0): 140, 181, 227, (385,259,0): 140, 181, 227, (385,260,0): 139, 181, 229, (385,261,0): 141, 183, 231, (385,262,0): 141, 185, 234, (385,263,0): 142, 186, 235, (385,264,0): 139, 183, 232, (385,265,0): 140, 184, 233, (385,266,0): 139, 185, 235, (385,267,0): 140, 186, 236, (385,268,0): 140, 187, 239, (385,269,0): 141, 188, 240, (385,270,0): 142, 189, 241, (385,271,0): 144, 189, 246, (385,272,0): 146, 185, 250, (385,273,0): 146, 185, 254, (385,274,0): 145, 184, 253, (385,275,0): 143, 183, 252, (385,276,0): 141, 184, 252, (385,277,0): 141, 186, 253, (385,278,0): 140, 188, 254, (385,279,0): 139, 188, 254, (385,280,0): 139, 188, 254, (385,281,0): 140, 189, 255, (385,282,0): 143, 191, 255, (385,283,0): 144, 192, 255, (385,284,0): 147, 192, 255, (385,285,0): 146, 191, 255, (385,286,0): 147, 190, 255, (385,287,0): 146, 190, 255, (385,288,0): 145, 191, 253, (385,289,0): 145, 191, 251, (385,290,0): 148, 189, 253, (385,291,0): 148, 189, 253, (385,292,0): 149, 188, 255, (385,293,0): 149, 187, 255, (385,294,0): 149, 187, 255, (385,295,0): 149, 186, 255, (385,296,0): 148, 184, 255, (385,297,0): 146, 180, 254, (385,298,0): 149, 175, 249, (385,299,0): 156, 177, 244, (385,300,0): 162, 174, 234, (385,301,0): 152, 158, 210, (385,302,0): 131, 129, 178, (385,303,0): 112, 108, 145, (385,304,0): 84, 84, 108, (385,305,0): 82, 84, 99, (385,306,0): 82, 84, 97, (385,307,0): 83, 85, 97, (385,308,0): 78, 81, 90, (385,309,0): 75, 78, 87, (385,310,0): 84, 84, 96, (385,311,0): 96, 96, 108, (385,312,0): 103, 101, 115, (385,313,0): 102, 95, 111, (385,314,0): 96, 88, 103, (385,315,0): 90, 78, 92, (385,316,0): 84, 68, 78, (385,317,0): 76, 59, 65, (385,318,0): 72, 54, 54, (385,319,0): 70, 50, 52, (385,320,0): 67, 46, 55, (385,321,0): 68, 46, 58, (385,322,0): 68, 46, 59, (385,323,0): 66, 44, 57, (385,324,0): 62, 42, 54, (385,325,0): 61, 41, 53, (385,326,0): 64, 44, 55, (385,327,0): 68, 47, 56, (385,328,0): 70, 47, 55, (385,329,0): 72, 47, 53, (385,330,0): 76, 47, 51, (385,331,0): 79, 49, 49, (385,332,0): 85, 51, 50, (385,333,0): 89, 54, 50, (385,334,0): 94, 56, 53, (385,335,0): 101, 56, 50, (385,336,0): 115, 58, 49, (385,337,0): 120, 57, 48, (385,338,0): 117, 57, 49, (385,339,0): 108, 53, 46, (385,340,0): 95, 46, 41, (385,341,0): 83, 39, 36, (385,342,0): 74, 36, 35, (385,343,0): 70, 36, 37, (385,344,0): 63, 33, 35, (385,345,0): 61, 32, 36, (385,346,0): 57, 30, 35, (385,347,0): 55, 28, 33, (385,348,0): 55, 26, 31, (385,349,0): 55, 26, 31, (385,350,0): 56, 25, 31, (385,351,0): 56, 25, 31, (385,352,0): 55, 24, 29, (385,353,0): 55, 24, 29, (385,354,0): 56, 25, 30, (385,355,0): 56, 25, 30, (385,356,0): 57, 26, 31, (385,357,0): 57, 26, 31, (385,358,0): 59, 27, 32, (385,359,0): 59, 27, 32, (385,360,0): 60, 25, 31, (385,361,0): 61, 26, 32, (385,362,0): 62, 25, 32, (385,363,0): 62, 25, 32, (385,364,0): 63, 26, 33, (385,365,0): 63, 26, 33, (385,366,0): 64, 27, 34, (385,367,0): 66, 27, 32, (385,368,0): 69, 26, 33, (385,369,0): 71, 26, 31, (385,370,0): 71, 26, 31, (385,371,0): 69, 27, 31, (385,372,0): 69, 27, 31, (385,373,0): 68, 27, 31, (385,374,0): 67, 28, 33, (385,375,0): 67, 28, 33, (385,376,0): 62, 25, 32, (385,377,0): 61, 26, 32, (385,378,0): 58, 25, 32, (385,379,0): 57, 24, 31, (385,380,0): 55, 24, 30, (385,381,0): 54, 23, 29, (385,382,0): 53, 22, 28, (385,383,0): 52, 22, 30, (385,384,0): 46, 23, 33, (385,385,0): 44, 22, 34, (385,386,0): 43, 21, 33, (385,387,0): 42, 20, 32, (385,388,0): 41, 20, 29, (385,389,0): 41, 20, 29, (385,390,0): 42, 21, 28, (385,391,0): 43, 22, 29, (385,392,0): 44, 23, 30, (385,393,0): 44, 23, 30, (385,394,0): 45, 24, 29, (385,395,0): 45, 24, 29, (385,396,0): 46, 26, 28, (385,397,0): 47, 27, 29, (385,398,0): 48, 28, 30, (385,399,0): 49, 29, 31, (385,400,0): 47, 25, 28, (385,401,0): 49, 24, 28, (385,402,0): 49, 24, 28, (385,403,0): 49, 24, 28, (385,404,0): 49, 24, 28, (385,405,0): 49, 24, 28, (385,406,0): 49, 24, 28, (385,407,0): 49, 24, 28, (385,408,0): 52, 27, 31, (385,409,0): 50, 25, 29, (385,410,0): 49, 24, 28, (385,411,0): 47, 22, 26, (385,412,0): 47, 22, 26, (385,413,0): 48, 23, 27, (385,414,0): 49, 24, 28, (385,415,0): 47, 27, 29, (385,416,0): 45, 31, 30, (385,417,0): 43, 32, 28, (385,418,0): 43, 32, 28, (385,419,0): 46, 32, 29, (385,420,0): 47, 32, 29, (385,421,0): 48, 33, 30, (385,422,0): 50, 32, 30, (385,423,0): 50, 32, 30, (385,424,0): 47, 32, 29, (385,425,0): 51, 36, 33, (385,426,0): 57, 43, 40, (385,427,0): 60, 49, 45, (385,428,0): 61, 52, 47, (385,429,0): 61, 54, 48, (385,430,0): 62, 55, 49, (385,431,0): 62, 55, 47, (385,432,0): 67, 57, 47, (385,433,0): 63, 54, 39, (385,434,0): 63, 57, 43, (385,435,0): 67, 64, 49, (385,436,0): 68, 66, 51, (385,437,0): 62, 64, 50, (385,438,0): 63, 67, 52, (385,439,0): 68, 72, 58, (385,440,0): 60, 62, 51, (385,441,0): 64, 61, 52, (385,442,0): 68, 61, 55, (385,443,0): 66, 55, 51, (385,444,0): 64, 46, 46, (385,445,0): 60, 38, 40, (385,446,0): 61, 35, 38, (385,447,0): 60, 33, 38, (385,448,0): 55, 30, 36, (385,449,0): 53, 32, 37, (385,450,0): 53, 32, 37, (385,451,0): 50, 31, 35, (385,452,0): 46, 30, 31, (385,453,0): 45, 31, 31, (385,454,0): 49, 35, 34, (385,455,0): 49, 39, 37, (385,456,0): 50, 42, 39, (385,457,0): 49, 44, 38, (385,458,0): 48, 45, 38, (385,459,0): 44, 44, 34, (385,460,0): 42, 44, 33, (385,461,0): 43, 46, 35, (385,462,0): 49, 52, 41, (385,463,0): 51, 57, 45, (385,464,0): 66, 72, 62, (385,465,0): 70, 78, 67, (385,466,0): 74, 84, 73, (385,467,0): 82, 94, 80, (385,468,0): 98, 112, 97, (385,469,0): 115, 128, 111, (385,470,0): 119, 130, 113, (385,471,0): 117, 124, 108, (385,472,0): 118, 119, 103, (385,473,0): 114, 111, 94, (385,474,0): 106, 100, 84, (385,475,0): 98, 91, 73, (385,476,0): 91, 84, 65, (385,477,0): 84, 79, 59, (385,478,0): 75, 74, 53, (385,479,0): 68, 70, 48, (385,480,0): 65, 69, 46, (385,481,0): 71, 75, 52, (385,482,0): 79, 83, 58, (385,483,0): 84, 87, 60, (385,484,0): 86, 89, 60, (385,485,0): 88, 89, 58, (385,486,0): 90, 89, 58, (385,487,0): 93, 90, 59, (385,488,0): 101, 94, 65, (385,489,0): 104, 95, 66, (385,490,0): 105, 93, 69, (385,491,0): 104, 89, 68, (385,492,0): 98, 83, 64, (385,493,0): 91, 74, 58, (385,494,0): 83, 64, 50, (385,495,0): 78, 58, 47, (385,496,0): 72, 49, 41, (385,497,0): 71, 48, 42, (385,498,0): 70, 46, 42, (385,499,0): 69, 45, 41, (385,500,0): 67, 43, 39, (385,501,0): 65, 41, 37, (385,502,0): 64, 40, 38, (385,503,0): 63, 39, 37, (385,504,0): 60, 36, 36, (385,505,0): 60, 36, 36, (385,506,0): 58, 34, 34, (385,507,0): 57, 33, 33, (385,508,0): 54, 29, 32, (385,509,0): 52, 27, 30, (385,510,0): 50, 25, 28, (385,511,0): 47, 25, 27, (385,512,0): 40, 21, 23, (385,513,0): 38, 22, 23, (385,514,0): 37, 21, 22, (385,515,0): 37, 21, 22, (385,516,0): 38, 22, 23, (385,517,0): 39, 23, 24, (385,518,0): 41, 25, 26, (385,519,0): 42, 26, 27, (385,520,0): 43, 27, 28, (385,521,0): 43, 27, 28, (385,522,0): 44, 28, 29, (385,523,0): 47, 31, 32, (385,524,0): 51, 35, 36, (385,525,0): 56, 40, 41, (385,526,0): 62, 46, 47, (385,527,0): 64, 50, 49, (385,528,0): 72, 59, 51, (385,529,0): 75, 65, 55, (385,530,0): 79, 66, 57, (385,531,0): 75, 62, 53, (385,532,0): 70, 53, 45, (385,533,0): 64, 47, 39, (385,534,0): 65, 46, 39, (385,535,0): 67, 48, 41, (385,536,0): 67, 48, 41, (385,537,0): 68, 49, 42, (385,538,0): 69, 52, 44, (385,539,0): 68, 54, 45, (385,540,0): 69, 55, 46, (385,541,0): 68, 55, 46, (385,542,0): 66, 56, 46, (385,543,0): 64, 55, 46, (385,544,0): 67, 59, 56, (385,545,0): 67, 62, 59, (385,546,0): 70, 65, 62, (385,547,0): 72, 67, 64, (385,548,0): 73, 68, 65, (385,549,0): 72, 67, 64, (385,550,0): 71, 66, 63, (385,551,0): 70, 65, 62, (385,552,0): 68, 63, 60, (385,553,0): 67, 62, 59, (385,554,0): 66, 61, 58, (385,555,0): 65, 60, 57, (385,556,0): 63, 58, 55, (385,557,0): 62, 57, 54, (385,558,0): 60, 55, 52, (385,559,0): 62, 54, 52, (385,560,0): 60, 48, 48, (385,561,0): 60, 46, 46, (385,562,0): 56, 42, 42, (385,563,0): 50, 38, 38, (385,564,0): 45, 33, 35, (385,565,0): 40, 28, 30, (385,566,0): 37, 24, 31, (385,567,0): 34, 23, 29, (385,568,0): 29, 18, 26, (385,569,0): 28, 18, 26, (385,570,0): 29, 19, 30, (385,571,0): 29, 19, 30, (385,572,0): 29, 18, 32, (385,573,0): 27, 19, 32, (385,574,0): 26, 18, 31, (385,575,0): 25, 19, 31, (385,576,0): 26, 23, 34, (385,577,0): 26, 24, 35, (385,578,0): 26, 24, 35, (385,579,0): 23, 21, 32, (385,580,0): 21, 18, 29, (385,581,0): 19, 16, 25, (385,582,0): 23, 17, 27, (385,583,0): 27, 20, 28, (385,584,0): 28, 18, 27, (385,585,0): 30, 20, 29, (385,586,0): 33, 21, 31, (385,587,0): 36, 23, 32, (385,588,0): 40, 24, 34, (385,589,0): 42, 27, 34, (385,590,0): 45, 30, 37, (385,591,0): 48, 33, 40, (385,592,0): 45, 29, 39, (385,593,0): 44, 28, 38, (385,594,0): 43, 27, 37, (385,595,0): 42, 26, 36, (385,596,0): 41, 25, 35, (385,597,0): 40, 24, 34, (385,598,0): 39, 23, 33, (385,599,0): 38, 22, 32, (386,0,0): 74, 65, 48, (386,1,0): 75, 66, 49, (386,2,0): 77, 65, 49, (386,3,0): 78, 66, 50, (386,4,0): 79, 67, 51, (386,5,0): 80, 68, 52, (386,6,0): 82, 69, 53, (386,7,0): 82, 69, 53, (386,8,0): 82, 66, 51, (386,9,0): 82, 66, 51, (386,10,0): 81, 65, 50, (386,11,0): 81, 65, 50, (386,12,0): 83, 65, 51, (386,13,0): 86, 68, 54, (386,14,0): 89, 71, 57, (386,15,0): 90, 74, 58, (386,16,0): 93, 78, 59, (386,17,0): 92, 80, 58, (386,18,0): 92, 80, 58, (386,19,0): 93, 81, 59, (386,20,0): 95, 83, 59, (386,21,0): 96, 84, 60, (386,22,0): 97, 85, 61, (386,23,0): 97, 85, 61, (386,24,0): 100, 88, 62, (386,25,0): 100, 88, 62, (386,26,0): 99, 88, 60, (386,27,0): 99, 88, 60, (386,28,0): 98, 87, 59, (386,29,0): 98, 87, 59, (386,30,0): 97, 86, 56, (386,31,0): 97, 86, 58, (386,32,0): 102, 86, 61, (386,33,0): 103, 87, 64, (386,34,0): 104, 88, 63, (386,35,0): 105, 89, 64, (386,36,0): 105, 91, 65, (386,37,0): 106, 92, 66, (386,38,0): 107, 93, 66, (386,39,0): 107, 93, 66, (386,40,0): 105, 94, 64, (386,41,0): 105, 94, 64, (386,42,0): 104, 95, 64, (386,43,0): 104, 95, 64, (386,44,0): 104, 95, 62, (386,45,0): 104, 95, 62, (386,46,0): 102, 96, 62, (386,47,0): 102, 96, 62, (386,48,0): 107, 96, 68, (386,49,0): 108, 97, 69, (386,50,0): 108, 97, 69, (386,51,0): 108, 97, 69, (386,52,0): 107, 96, 68, (386,53,0): 105, 94, 66, (386,54,0): 103, 92, 64, (386,55,0): 102, 91, 63, (386,56,0): 97, 86, 58, (386,57,0): 96, 85, 57, (386,58,0): 94, 83, 55, (386,59,0): 91, 80, 52, (386,60,0): 85, 74, 46, (386,61,0): 78, 67, 39, (386,62,0): 72, 61, 33, (386,63,0): 68, 56, 32, (386,64,0): 66, 49, 33, (386,65,0): 66, 48, 36, (386,66,0): 66, 48, 36, (386,67,0): 66, 48, 36, (386,68,0): 65, 49, 36, (386,69,0): 65, 49, 34, (386,70,0): 65, 49, 34, (386,71,0): 65, 49, 33, (386,72,0): 67, 54, 35, (386,73,0): 67, 54, 35, (386,74,0): 68, 57, 35, (386,75,0): 70, 59, 37, (386,76,0): 72, 62, 37, (386,77,0): 74, 64, 39, (386,78,0): 74, 67, 41, (386,79,0): 75, 68, 40, (386,80,0): 83, 72, 44, (386,81,0): 84, 73, 43, (386,82,0): 85, 74, 46, (386,83,0): 86, 75, 47, (386,84,0): 86, 75, 47, (386,85,0): 85, 74, 46, (386,86,0): 84, 72, 46, (386,87,0): 83, 71, 45, (386,88,0): 78, 66, 42, (386,89,0): 76, 64, 40, (386,90,0): 73, 61, 37, (386,91,0): 70, 58, 34, (386,92,0): 67, 55, 33, (386,93,0): 66, 54, 32, (386,94,0): 65, 53, 31, (386,95,0): 64, 51, 32, (386,96,0): 61, 48, 31, (386,97,0): 61, 48, 32, (386,98,0): 60, 47, 31, (386,99,0): 60, 47, 31, (386,100,0): 59, 45, 32, (386,101,0): 59, 45, 32, (386,102,0): 58, 44, 31, (386,103,0): 58, 44, 31, (386,104,0): 58, 44, 33, (386,105,0): 58, 44, 33, (386,106,0): 58, 44, 35, (386,107,0): 58, 44, 35, (386,108,0): 58, 44, 35, (386,109,0): 58, 44, 35, (386,110,0): 58, 43, 36, (386,111,0): 57, 44, 35, (386,112,0): 57, 44, 35, (386,113,0): 56, 46, 34, (386,114,0): 59, 47, 35, (386,115,0): 60, 48, 36, (386,116,0): 61, 49, 37, (386,117,0): 61, 49, 37, (386,118,0): 61, 47, 36, (386,119,0): 61, 47, 36, (386,120,0): 66, 49, 39, (386,121,0): 66, 49, 39, (386,122,0): 67, 50, 40, (386,123,0): 69, 52, 42, (386,124,0): 72, 54, 44, (386,125,0): 73, 55, 45, (386,126,0): 74, 56, 46, (386,127,0): 76, 56, 45, (386,128,0): 80, 58, 45, (386,129,0): 80, 57, 43, (386,130,0): 80, 57, 43, (386,131,0): 80, 57, 43, (386,132,0): 84, 58, 43, (386,133,0): 88, 62, 47, (386,134,0): 91, 65, 48, (386,135,0): 94, 68, 51, (386,136,0): 98, 71, 54, (386,137,0): 98, 71, 54, (386,138,0): 99, 70, 52, (386,139,0): 99, 70, 52, (386,140,0): 100, 72, 51, (386,141,0): 102, 74, 53, (386,142,0): 105, 74, 54, (386,143,0): 106, 75, 55, (386,144,0): 110, 77, 60, (386,145,0): 113, 80, 63, (386,146,0): 119, 83, 67, (386,147,0): 123, 87, 71, (386,148,0): 127, 94, 79, (386,149,0): 136, 103, 88, (386,150,0): 145, 113, 100, (386,151,0): 151, 122, 108, (386,152,0): 177, 151, 138, (386,153,0): 183, 164, 149, (386,154,0): 195, 179, 164, (386,155,0): 203, 194, 177, (386,156,0): 205, 202, 185, (386,157,0): 201, 202, 184, (386,158,0): 197, 200, 181, (386,159,0): 191, 198, 182, (386,160,0): 183, 197, 184, (386,161,0): 179, 196, 186, (386,162,0): 177, 196, 190, (386,163,0): 177, 197, 195, (386,164,0): 176, 197, 198, (386,165,0): 171, 196, 200, (386,166,0): 165, 194, 202, (386,167,0): 158, 191, 200, (386,168,0): 157, 193, 205, (386,169,0): 156, 194, 207, (386,170,0): 153, 195, 209, (386,171,0): 152, 196, 209, (386,172,0): 150, 196, 209, (386,173,0): 149, 197, 209, (386,174,0): 149, 197, 209, (386,175,0): 149, 197, 209, (386,176,0): 151, 199, 213, (386,177,0): 151, 198, 214, (386,178,0): 151, 198, 216, (386,179,0): 151, 198, 216, (386,180,0): 150, 198, 218, (386,181,0): 150, 198, 218, (386,182,0): 150, 198, 220, (386,183,0): 150, 198, 220, (386,184,0): 151, 201, 224, (386,185,0): 151, 201, 226, (386,186,0): 150, 201, 228, (386,187,0): 150, 201, 228, (386,188,0): 150, 201, 230, (386,189,0): 150, 201, 230, (386,190,0): 148, 201, 232, (386,191,0): 148, 201, 232, (386,192,0): 147, 198, 229, (386,193,0): 149, 200, 231, (386,194,0): 150, 201, 232, (386,195,0): 149, 200, 231, (386,196,0): 146, 196, 229, (386,197,0): 143, 193, 226, (386,198,0): 142, 192, 227, (386,199,0): 142, 192, 227, (386,200,0): 142, 192, 227, (386,201,0): 142, 192, 227, (386,202,0): 142, 192, 229, (386,203,0): 142, 192, 229, (386,204,0): 142, 191, 231, (386,205,0): 142, 191, 231, (386,206,0): 142, 191, 231, (386,207,0): 143, 191, 231, (386,208,0): 147, 192, 234, (386,209,0): 146, 191, 233, (386,210,0): 145, 190, 232, (386,211,0): 143, 190, 232, (386,212,0): 143, 190, 232, (386,213,0): 142, 191, 232, (386,214,0): 143, 192, 233, (386,215,0): 144, 193, 234, (386,216,0): 142, 189, 231, (386,217,0): 141, 188, 230, (386,218,0): 143, 188, 230, (386,219,0): 143, 186, 229, (386,220,0): 145, 186, 230, (386,221,0): 148, 186, 231, (386,222,0): 151, 188, 233, (386,223,0): 154, 188, 234, (386,224,0): 159, 191, 238, (386,225,0): 157, 189, 236, (386,226,0): 156, 187, 233, (386,227,0): 160, 187, 232, (386,228,0): 166, 187, 234, (386,229,0): 175, 187, 235, (386,230,0): 182, 186, 234, (386,231,0): 186, 182, 232, (386,232,0): 193, 181, 229, (386,233,0): 198, 182, 229, (386,234,0): 199, 181, 229, (386,235,0): 197, 181, 226, (386,236,0): 190, 179, 222, (386,237,0): 185, 178, 219, (386,238,0): 184, 182, 221, (386,239,0): 178, 186, 225, (386,240,0): 165, 187, 228, (386,241,0): 159, 187, 227, (386,242,0): 157, 186, 226, (386,243,0): 155, 184, 224, (386,244,0): 152, 184, 225, (386,245,0): 151, 182, 226, (386,246,0): 151, 184, 229, (386,247,0): 150, 184, 229, (386,248,0): 149, 183, 229, (386,249,0): 147, 183, 231, (386,250,0): 147, 185, 234, (386,251,0): 147, 185, 234, (386,252,0): 145, 185, 236, (386,253,0): 143, 183, 234, (386,254,0): 141, 183, 233, (386,255,0): 140, 182, 232, (386,256,0): 141, 181, 230, (386,257,0): 140, 180, 229, (386,258,0): 139, 179, 228, (386,259,0): 139, 179, 228, (386,260,0): 139, 181, 229, (386,261,0): 140, 182, 230, (386,262,0): 140, 184, 233, (386,263,0): 141, 185, 234, (386,264,0): 139, 182, 233, (386,265,0): 139, 182, 233, (386,266,0): 138, 184, 236, (386,267,0): 139, 185, 237, (386,268,0): 139, 186, 238, (386,269,0): 140, 187, 239, (386,270,0): 141, 188, 240, (386,271,0): 142, 187, 244, (386,272,0): 145, 186, 250, (386,273,0): 145, 184, 253, (386,274,0): 143, 183, 252, (386,275,0): 140, 183, 251, (386,276,0): 139, 184, 251, (386,277,0): 138, 186, 252, (386,278,0): 139, 187, 253, (386,279,0): 139, 188, 254, (386,280,0): 140, 189, 255, (386,281,0): 140, 191, 255, (386,282,0): 143, 192, 255, (386,283,0): 145, 193, 255, (386,284,0): 147, 192, 255, (386,285,0): 147, 192, 255, (386,286,0): 147, 190, 255, (386,287,0): 147, 191, 255, (386,288,0): 145, 191, 253, (386,289,0): 145, 191, 253, (386,290,0): 148, 189, 253, (386,291,0): 148, 189, 253, (386,292,0): 149, 188, 255, (386,293,0): 149, 187, 255, (386,294,0): 149, 187, 255, (386,295,0): 149, 187, 255, (386,296,0): 148, 184, 255, (386,297,0): 146, 180, 254, (386,298,0): 150, 177, 248, (386,299,0): 157, 178, 243, (386,300,0): 160, 172, 230, (386,301,0): 148, 154, 204, (386,302,0): 123, 124, 170, (386,303,0): 104, 102, 139, (386,304,0): 84, 84, 108, (386,305,0): 82, 84, 99, (386,306,0): 83, 85, 98, (386,307,0): 84, 86, 98, (386,308,0): 81, 84, 93, (386,309,0): 78, 81, 90, (386,310,0): 84, 86, 98, (386,311,0): 96, 96, 108, (386,312,0): 103, 101, 115, (386,313,0): 102, 95, 111, (386,314,0): 97, 89, 104, (386,315,0): 91, 79, 93, (386,316,0): 83, 70, 79, (386,317,0): 77, 60, 66, (386,318,0): 72, 53, 55, (386,319,0): 69, 50, 52, (386,320,0): 68, 47, 56, (386,321,0): 68, 46, 58, (386,322,0): 68, 46, 58, (386,323,0): 66, 44, 56, (386,324,0): 63, 43, 54, (386,325,0): 62, 42, 53, (386,326,0): 65, 43, 55, (386,327,0): 67, 46, 55, (386,328,0): 71, 48, 56, (386,329,0): 73, 48, 52, (386,330,0): 77, 48, 52, (386,331,0): 80, 50, 50, (386,332,0): 85, 51, 50, (386,333,0): 90, 55, 51, (386,334,0): 95, 57, 54, (386,335,0): 101, 56, 50, (386,336,0): 118, 61, 52, (386,337,0): 120, 60, 50, (386,338,0): 116, 57, 49, (386,339,0): 106, 51, 46, (386,340,0): 93, 44, 40, (386,341,0): 82, 38, 37, (386,342,0): 73, 35, 34, (386,343,0): 67, 35, 36, (386,344,0): 61, 31, 33, (386,345,0): 59, 30, 34, (386,346,0): 55, 28, 33, (386,347,0): 54, 27, 32, (386,348,0): 55, 26, 31, (386,349,0): 55, 26, 31, (386,350,0): 56, 25, 31, (386,351,0): 56, 25, 31, (386,352,0): 55, 26, 30, (386,353,0): 55, 26, 30, (386,354,0): 57, 26, 31, (386,355,0): 57, 26, 31, (386,356,0): 58, 27, 32, (386,357,0): 58, 27, 32, (386,358,0): 59, 27, 32, (386,359,0): 60, 28, 33, (386,360,0): 60, 25, 31, (386,361,0): 60, 25, 31, (386,362,0): 60, 25, 31, (386,363,0): 61, 26, 32, (386,364,0): 63, 26, 33, (386,365,0): 63, 26, 33, (386,366,0): 63, 26, 33, (386,367,0): 66, 27, 32, (386,368,0): 69, 26, 33, (386,369,0): 71, 26, 31, (386,370,0): 69, 27, 31, (386,371,0): 69, 27, 31, (386,372,0): 69, 26, 33, (386,373,0): 68, 27, 33, (386,374,0): 67, 28, 33, (386,375,0): 67, 28, 33, (386,376,0): 61, 24, 31, (386,377,0): 60, 25, 31, (386,378,0): 57, 24, 31, (386,379,0): 56, 23, 30, (386,380,0): 54, 23, 29, (386,381,0): 53, 22, 28, (386,382,0): 51, 21, 29, (386,383,0): 49, 22, 31, (386,384,0): 46, 23, 33, (386,385,0): 44, 22, 34, (386,386,0): 43, 21, 33, (386,387,0): 41, 19, 31, (386,388,0): 41, 20, 29, (386,389,0): 41, 20, 29, (386,390,0): 42, 21, 28, (386,391,0): 42, 21, 28, (386,392,0): 45, 24, 31, (386,393,0): 45, 24, 31, (386,394,0): 46, 25, 30, (386,395,0): 46, 25, 30, (386,396,0): 46, 26, 28, (386,397,0): 46, 26, 28, (386,398,0): 46, 26, 28, (386,399,0): 46, 26, 28, (386,400,0): 46, 24, 27, (386,401,0): 46, 24, 27, (386,402,0): 46, 24, 27, (386,403,0): 46, 24, 27, (386,404,0): 46, 24, 27, (386,405,0): 46, 24, 27, (386,406,0): 46, 24, 27, (386,407,0): 46, 24, 27, (386,408,0): 47, 25, 28, (386,409,0): 47, 25, 28, (386,410,0): 46, 24, 27, (386,411,0): 46, 24, 27, (386,412,0): 46, 24, 27, (386,413,0): 47, 25, 28, (386,414,0): 48, 26, 29, (386,415,0): 48, 28, 30, (386,416,0): 46, 30, 30, (386,417,0): 46, 32, 31, (386,418,0): 46, 32, 31, (386,419,0): 48, 32, 32, (386,420,0): 48, 32, 32, (386,421,0): 51, 33, 33, (386,422,0): 51, 33, 33, (386,423,0): 52, 34, 34, (386,424,0): 49, 33, 33, (386,425,0): 52, 36, 36, (386,426,0): 57, 43, 42, (386,427,0): 61, 50, 48, (386,428,0): 64, 56, 53, (386,429,0): 64, 59, 55, (386,430,0): 61, 56, 52, (386,431,0): 59, 54, 48, (386,432,0): 66, 57, 48, (386,433,0): 64, 56, 43, (386,434,0): 65, 59, 47, (386,435,0): 67, 65, 52, (386,436,0): 67, 68, 54, (386,437,0): 65, 67, 54, (386,438,0): 66, 70, 56, (386,439,0): 70, 73, 62, (386,440,0): 64, 66, 55, (386,441,0): 65, 65, 57, (386,442,0): 67, 62, 58, (386,443,0): 66, 55, 53, (386,444,0): 63, 47, 48, (386,445,0): 60, 40, 42, (386,446,0): 60, 35, 39, (386,447,0): 59, 34, 40, (386,448,0): 53, 30, 36, (386,449,0): 52, 31, 38, (386,450,0): 52, 31, 36, (386,451,0): 49, 30, 34, (386,452,0): 45, 29, 30, (386,453,0): 46, 32, 32, (386,454,0): 50, 36, 35, (386,455,0): 52, 41, 39, (386,456,0): 54, 45, 40, (386,457,0): 52, 45, 39, (386,458,0): 48, 43, 37, (386,459,0): 45, 42, 33, (386,460,0): 44, 41, 32, (386,461,0): 45, 45, 33, (386,462,0): 51, 51, 39, (386,463,0): 55, 57, 46, (386,464,0): 65, 71, 61, (386,465,0): 70, 78, 67, (386,466,0): 75, 85, 74, (386,467,0): 82, 94, 80, (386,468,0): 97, 111, 96, (386,469,0): 113, 126, 109, (386,470,0): 119, 130, 113, (386,471,0): 119, 126, 110, (386,472,0): 118, 119, 103, (386,473,0): 114, 111, 94, (386,474,0): 106, 100, 84, (386,475,0): 97, 92, 73, (386,476,0): 89, 84, 64, (386,477,0): 81, 79, 58, (386,478,0): 75, 75, 51, (386,479,0): 69, 71, 47, (386,480,0): 69, 75, 49, (386,481,0): 73, 79, 53, (386,482,0): 79, 85, 59, (386,483,0): 84, 88, 61, (386,484,0): 86, 89, 60, (386,485,0): 89, 90, 59, (386,486,0): 92, 91, 60, (386,487,0): 96, 93, 60, (386,488,0): 100, 95, 65, (386,489,0): 102, 95, 66, (386,490,0): 104, 94, 69, (386,491,0): 102, 90, 68, (386,492,0): 98, 83, 64, (386,493,0): 90, 74, 58, (386,494,0): 82, 64, 50, (386,495,0): 77, 59, 47, (386,496,0): 72, 52, 43, (386,497,0): 71, 51, 44, (386,498,0): 70, 49, 44, (386,499,0): 67, 46, 41, (386,500,0): 65, 44, 39, (386,501,0): 63, 42, 37, (386,502,0): 62, 41, 38, (386,503,0): 61, 40, 37, (386,504,0): 59, 38, 37, (386,505,0): 58, 37, 36, (386,506,0): 56, 35, 34, (386,507,0): 54, 33, 32, (386,508,0): 52, 30, 32, (386,509,0): 50, 28, 30, (386,510,0): 48, 26, 28, (386,511,0): 47, 27, 28, (386,512,0): 41, 22, 24, (386,513,0): 39, 23, 24, (386,514,0): 38, 22, 23, (386,515,0): 38, 22, 23, (386,516,0): 38, 22, 23, (386,517,0): 39, 23, 24, (386,518,0): 41, 25, 26, (386,519,0): 42, 26, 27, (386,520,0): 41, 25, 26, (386,521,0): 42, 26, 27, (386,522,0): 43, 27, 28, (386,523,0): 46, 30, 31, (386,524,0): 50, 34, 35, (386,525,0): 56, 40, 41, (386,526,0): 62, 46, 47, (386,527,0): 64, 50, 49, (386,528,0): 70, 57, 51, (386,529,0): 73, 63, 54, (386,530,0): 79, 66, 58, (386,531,0): 77, 64, 56, (386,532,0): 74, 57, 50, (386,533,0): 68, 51, 44, (386,534,0): 67, 48, 42, (386,535,0): 68, 49, 43, (386,536,0): 69, 50, 44, (386,537,0): 70, 51, 45, (386,538,0): 70, 53, 46, (386,539,0): 69, 54, 47, (386,540,0): 69, 54, 47, (386,541,0): 67, 54, 46, (386,542,0): 65, 55, 46, (386,543,0): 63, 54, 47, (386,544,0): 66, 58, 55, (386,545,0): 65, 60, 57, (386,546,0): 68, 63, 60, (386,547,0): 71, 66, 63, (386,548,0): 72, 67, 64, (386,549,0): 72, 67, 64, (386,550,0): 70, 65, 62, (386,551,0): 69, 64, 61, (386,552,0): 69, 64, 61, (386,553,0): 69, 64, 61, (386,554,0): 67, 62, 59, (386,555,0): 66, 61, 58, (386,556,0): 64, 59, 56, (386,557,0): 63, 58, 55, (386,558,0): 62, 57, 54, (386,559,0): 63, 55, 53, (386,560,0): 59, 49, 48, (386,561,0): 58, 46, 46, (386,562,0): 54, 42, 42, (386,563,0): 50, 38, 38, (386,564,0): 45, 33, 35, (386,565,0): 40, 30, 31, (386,566,0): 36, 25, 31, (386,567,0): 33, 22, 28, (386,568,0): 28, 17, 25, (386,569,0): 28, 18, 26, (386,570,0): 28, 18, 29, (386,571,0): 27, 19, 30, (386,572,0): 28, 20, 33, (386,573,0): 29, 21, 34, (386,574,0): 30, 22, 35, (386,575,0): 27, 24, 35, (386,576,0): 25, 23, 36, (386,577,0): 24, 24, 36, (386,578,0): 24, 24, 36, (386,579,0): 21, 21, 31, (386,580,0): 20, 18, 29, (386,581,0): 20, 17, 26, (386,582,0): 23, 17, 27, (386,583,0): 25, 19, 29, (386,584,0): 26, 18, 29, (386,585,0): 28, 18, 27, (386,586,0): 30, 18, 28, (386,587,0): 33, 22, 30, (386,588,0): 38, 25, 34, (386,589,0): 41, 28, 37, (386,590,0): 42, 29, 38, (386,591,0): 42, 29, 38, (386,592,0): 41, 28, 38, (386,593,0): 41, 28, 38, (386,594,0): 40, 27, 37, (386,595,0): 39, 26, 36, (386,596,0): 38, 25, 35, (386,597,0): 37, 24, 34, (386,598,0): 36, 23, 33, (386,599,0): 36, 23, 33, (387,0,0): 75, 66, 49, (387,1,0): 76, 67, 50, (387,2,0): 78, 66, 50, (387,3,0): 79, 67, 51, (387,4,0): 80, 68, 52, (387,5,0): 80, 68, 52, (387,6,0): 82, 69, 53, (387,7,0): 82, 69, 53, (387,8,0): 83, 67, 52, (387,9,0): 82, 66, 51, (387,10,0): 81, 65, 50, (387,11,0): 82, 66, 51, (387,12,0): 84, 66, 52, (387,13,0): 86, 68, 54, (387,14,0): 88, 70, 56, (387,15,0): 89, 73, 57, (387,16,0): 91, 76, 57, (387,17,0): 90, 78, 56, (387,18,0): 91, 79, 57, (387,19,0): 92, 80, 58, (387,20,0): 94, 82, 60, (387,21,0): 95, 83, 59, (387,22,0): 96, 84, 60, (387,23,0): 97, 85, 61, (387,24,0): 99, 87, 61, (387,25,0): 99, 87, 61, (387,26,0): 99, 87, 61, (387,27,0): 99, 88, 60, (387,28,0): 98, 87, 59, (387,29,0): 98, 87, 59, (387,30,0): 98, 87, 57, (387,31,0): 98, 87, 59, (387,32,0): 103, 87, 62, (387,33,0): 103, 87, 64, (387,34,0): 104, 88, 63, (387,35,0): 105, 89, 64, (387,36,0): 105, 91, 65, (387,37,0): 106, 92, 66, (387,38,0): 107, 93, 66, (387,39,0): 107, 93, 66, (387,40,0): 104, 93, 63, (387,41,0): 104, 93, 63, (387,42,0): 103, 94, 63, (387,43,0): 103, 94, 63, (387,44,0): 103, 94, 61, (387,45,0): 103, 94, 61, (387,46,0): 101, 95, 61, (387,47,0): 101, 95, 61, (387,48,0): 107, 96, 66, (387,49,0): 108, 97, 69, (387,50,0): 109, 98, 70, (387,51,0): 109, 98, 70, (387,52,0): 108, 97, 69, (387,53,0): 106, 95, 67, (387,54,0): 105, 94, 66, (387,55,0): 104, 93, 65, (387,56,0): 99, 88, 60, (387,57,0): 98, 87, 59, (387,58,0): 96, 85, 57, (387,59,0): 92, 81, 53, (387,60,0): 86, 75, 47, (387,61,0): 79, 68, 40, (387,62,0): 73, 62, 34, (387,63,0): 69, 57, 31, (387,64,0): 70, 53, 37, (387,65,0): 69, 51, 39, (387,66,0): 68, 50, 38, (387,67,0): 67, 49, 35, (387,68,0): 66, 50, 35, (387,69,0): 66, 50, 34, (387,70,0): 66, 50, 34, (387,71,0): 67, 51, 35, (387,72,0): 66, 53, 34, (387,73,0): 68, 55, 36, (387,74,0): 69, 58, 36, (387,75,0): 72, 61, 39, (387,76,0): 74, 64, 39, (387,77,0): 75, 65, 40, (387,78,0): 74, 67, 41, (387,79,0): 74, 67, 39, (387,80,0): 82, 71, 43, (387,81,0): 82, 71, 41, (387,82,0): 84, 73, 45, (387,83,0): 85, 74, 46, (387,84,0): 85, 74, 46, (387,85,0): 85, 74, 46, (387,86,0): 84, 72, 46, (387,87,0): 83, 71, 45, (387,88,0): 78, 66, 42, (387,89,0): 76, 64, 40, (387,90,0): 73, 61, 37, (387,91,0): 70, 58, 34, (387,92,0): 67, 55, 33, (387,93,0): 66, 54, 32, (387,94,0): 65, 53, 31, (387,95,0): 64, 51, 32, (387,96,0): 60, 47, 30, (387,97,0): 60, 47, 31, (387,98,0): 59, 46, 30, (387,99,0): 59, 46, 30, (387,100,0): 58, 44, 31, (387,101,0): 58, 44, 31, (387,102,0): 57, 43, 30, (387,103,0): 57, 43, 30, (387,104,0): 57, 43, 32, (387,105,0): 57, 43, 32, (387,106,0): 57, 43, 34, (387,107,0): 57, 43, 34, (387,108,0): 57, 43, 34, (387,109,0): 57, 43, 34, (387,110,0): 57, 42, 35, (387,111,0): 56, 43, 34, (387,112,0): 56, 43, 34, (387,113,0): 54, 44, 32, (387,114,0): 57, 45, 33, (387,115,0): 58, 46, 34, (387,116,0): 58, 46, 34, (387,117,0): 59, 47, 35, (387,118,0): 60, 46, 35, (387,119,0): 60, 46, 35, (387,120,0): 64, 47, 37, (387,121,0): 65, 48, 38, (387,122,0): 66, 49, 39, (387,123,0): 67, 50, 40, (387,124,0): 70, 52, 42, (387,125,0): 72, 54, 44, (387,126,0): 73, 55, 45, (387,127,0): 74, 54, 43, (387,128,0): 78, 56, 43, (387,129,0): 79, 56, 42, (387,130,0): 79, 56, 42, (387,131,0): 80, 57, 43, (387,132,0): 85, 59, 44, (387,133,0): 88, 62, 47, (387,134,0): 91, 65, 50, (387,135,0): 93, 67, 50, (387,136,0): 96, 69, 52, (387,137,0): 96, 69, 52, (387,138,0): 98, 69, 51, (387,139,0): 99, 70, 52, (387,140,0): 100, 72, 51, (387,141,0): 101, 73, 52, (387,142,0): 104, 73, 53, (387,143,0): 105, 74, 54, (387,144,0): 105, 72, 55, (387,145,0): 107, 74, 57, (387,146,0): 109, 76, 59, (387,147,0): 110, 77, 60, (387,148,0): 111, 78, 63, (387,149,0): 116, 83, 68, (387,150,0): 122, 90, 77, (387,151,0): 125, 96, 82, (387,152,0): 143, 117, 104, (387,153,0): 154, 132, 118, (387,154,0): 174, 156, 142, (387,155,0): 195, 182, 166, (387,156,0): 209, 200, 185, (387,157,0): 214, 208, 192, (387,158,0): 210, 207, 190, (387,159,0): 203, 206, 189, (387,160,0): 190, 202, 188, (387,161,0): 184, 202, 190, (387,162,0): 182, 199, 189, (387,163,0): 178, 197, 191, (387,164,0): 175, 195, 194, (387,165,0): 170, 194, 196, (387,166,0): 164, 192, 196, (387,167,0): 160, 190, 198, (387,168,0): 160, 192, 203, (387,169,0): 157, 193, 205, (387,170,0): 156, 194, 207, (387,171,0): 153, 195, 209, (387,172,0): 152, 196, 209, (387,173,0): 150, 196, 209, (387,174,0): 150, 196, 209, (387,175,0): 149, 197, 211, (387,176,0): 149, 196, 212, (387,177,0): 149, 196, 214, (387,178,0): 150, 197, 215, (387,179,0): 150, 197, 215, (387,180,0): 149, 197, 217, (387,181,0): 150, 198, 220, (387,182,0): 150, 198, 220, (387,183,0): 150, 198, 221, (387,184,0): 150, 200, 225, (387,185,0): 150, 200, 227, (387,186,0): 149, 200, 227, (387,187,0): 149, 200, 229, (387,188,0): 149, 200, 229, (387,189,0): 149, 200, 231, (387,190,0): 147, 200, 231, (387,191,0): 147, 200, 231, (387,192,0): 147, 198, 229, (387,193,0): 148, 199, 230, (387,194,0): 149, 200, 231, (387,195,0): 148, 199, 230, (387,196,0): 146, 196, 229, (387,197,0): 144, 194, 227, (387,198,0): 143, 193, 228, (387,199,0): 142, 192, 227, (387,200,0): 142, 192, 227, (387,201,0): 142, 192, 227, (387,202,0): 142, 192, 229, (387,203,0): 142, 192, 229, (387,204,0): 142, 191, 231, (387,205,0): 142, 191, 231, (387,206,0): 142, 191, 231, (387,207,0): 143, 191, 231, (387,208,0): 148, 191, 234, (387,209,0): 148, 191, 234, (387,210,0): 147, 190, 233, (387,211,0): 145, 190, 232, (387,212,0): 145, 190, 232, (387,213,0): 144, 191, 233, (387,214,0): 145, 192, 234, (387,215,0): 145, 192, 234, (387,216,0): 141, 188, 230, (387,217,0): 143, 188, 230, (387,218,0): 143, 186, 229, (387,219,0): 144, 185, 229, (387,220,0): 146, 184, 229, (387,221,0): 148, 185, 230, (387,222,0): 152, 186, 232, (387,223,0): 154, 186, 233, (387,224,0): 157, 189, 236, (387,225,0): 156, 189, 234, (387,226,0): 158, 187, 231, (387,227,0): 163, 187, 231, (387,228,0): 174, 189, 232, (387,229,0): 184, 191, 235, (387,230,0): 195, 192, 237, (387,231,0): 204, 193, 236, (387,232,0): 207, 188, 233, (387,233,0): 211, 188, 232, (387,234,0): 213, 188, 230, (387,235,0): 208, 185, 227, (387,236,0): 200, 184, 223, (387,237,0): 194, 184, 221, (387,238,0): 192, 188, 223, (387,239,0): 187, 193, 229, (387,240,0): 166, 185, 225, (387,241,0): 158, 186, 226, (387,242,0): 156, 185, 225, (387,243,0): 154, 183, 223, (387,244,0): 151, 183, 224, (387,245,0): 150, 182, 223, (387,246,0): 150, 183, 226, (387,247,0): 149, 183, 228, (387,248,0): 149, 183, 229, (387,249,0): 147, 184, 229, (387,250,0): 147, 185, 232, (387,251,0): 147, 185, 234, (387,252,0): 145, 185, 234, (387,253,0): 143, 183, 234, (387,254,0): 141, 183, 233, (387,255,0): 140, 182, 232, (387,256,0): 140, 180, 229, (387,257,0): 140, 180, 229, (387,258,0): 139, 179, 228, (387,259,0): 139, 179, 228, (387,260,0): 138, 180, 228, (387,261,0): 140, 182, 232, (387,262,0): 140, 184, 233, (387,263,0): 141, 185, 234, (387,264,0): 140, 183, 234, (387,265,0): 140, 183, 234, (387,266,0): 138, 184, 236, (387,267,0): 139, 185, 237, (387,268,0): 139, 186, 238, (387,269,0): 139, 186, 238, (387,270,0): 140, 187, 239, (387,271,0): 141, 186, 243, (387,272,0): 145, 186, 250, (387,273,0): 144, 184, 253, (387,274,0): 141, 184, 252, (387,275,0): 139, 184, 251, (387,276,0): 137, 185, 251, (387,277,0): 137, 186, 252, (387,278,0): 138, 187, 253, (387,279,0): 138, 189, 254, (387,280,0): 139, 190, 255, (387,281,0): 140, 191, 255, (387,282,0): 143, 192, 255, (387,283,0): 144, 193, 255, (387,284,0): 146, 194, 255, (387,285,0): 147, 192, 255, (387,286,0): 148, 191, 255, (387,287,0): 147, 190, 255, (387,288,0): 145, 190, 255, (387,289,0): 146, 190, 253, (387,290,0): 148, 189, 253, (387,291,0): 148, 189, 255, (387,292,0): 149, 188, 255, (387,293,0): 149, 188, 255, (387,294,0): 149, 187, 255, (387,295,0): 149, 187, 255, (387,296,0): 148, 184, 255, (387,297,0): 148, 180, 253, (387,298,0): 152, 179, 248, (387,299,0): 157, 178, 241, (387,300,0): 159, 172, 227, (387,301,0): 144, 152, 199, (387,302,0): 120, 121, 165, (387,303,0): 101, 100, 134, (387,304,0): 86, 86, 110, (387,305,0): 84, 85, 103, (387,306,0): 84, 86, 101, (387,307,0): 86, 88, 101, (387,308,0): 84, 86, 98, (387,309,0): 82, 85, 94, (387,310,0): 86, 88, 100, (387,311,0): 97, 96, 110, (387,312,0): 104, 101, 118, (387,313,0): 102, 98, 115, (387,314,0): 99, 90, 107, (387,315,0): 94, 82, 96, (387,316,0): 86, 73, 83, (387,317,0): 78, 63, 68, (387,318,0): 74, 55, 57, (387,319,0): 70, 51, 53, (387,320,0): 69, 48, 57, (387,321,0): 69, 47, 59, (387,322,0): 67, 45, 57, (387,323,0): 66, 44, 56, (387,324,0): 64, 44, 55, (387,325,0): 64, 44, 55, (387,326,0): 66, 44, 56, (387,327,0): 68, 45, 55, (387,328,0): 73, 47, 56, (387,329,0): 74, 47, 52, (387,330,0): 78, 47, 52, (387,331,0): 81, 49, 50, (387,332,0): 87, 51, 51, (387,333,0): 92, 54, 51, (387,334,0): 96, 57, 52, (387,335,0): 102, 57, 51, (387,336,0): 120, 63, 56, (387,337,0): 119, 59, 51, (387,338,0): 112, 55, 48, (387,339,0): 102, 49, 43, (387,340,0): 90, 42, 38, (387,341,0): 78, 37, 35, (387,342,0): 70, 34, 34, (387,343,0): 65, 33, 34, (387,344,0): 60, 29, 34, (387,345,0): 56, 30, 33, (387,346,0): 54, 27, 32, (387,347,0): 53, 26, 31, (387,348,0): 54, 25, 30, (387,349,0): 54, 25, 30, (387,350,0): 56, 25, 31, (387,351,0): 56, 25, 31, (387,352,0): 55, 26, 30, (387,353,0): 55, 26, 30, (387,354,0): 57, 26, 31, (387,355,0): 57, 26, 31, (387,356,0): 58, 27, 32, (387,357,0): 58, 27, 32, (387,358,0): 60, 28, 33, (387,359,0): 60, 28, 33, (387,360,0): 59, 24, 30, (387,361,0): 60, 25, 31, (387,362,0): 60, 25, 31, (387,363,0): 61, 26, 32, (387,364,0): 62, 25, 32, (387,365,0): 63, 26, 33, (387,366,0): 63, 26, 33, (387,367,0): 65, 26, 31, (387,368,0): 69, 26, 33, (387,369,0): 69, 27, 31, (387,370,0): 69, 27, 31, (387,371,0): 68, 27, 31, (387,372,0): 68, 27, 33, (387,373,0): 67, 28, 33, (387,374,0): 67, 28, 33, (387,375,0): 65, 29, 33, (387,376,0): 59, 24, 30, (387,377,0): 57, 25, 30, (387,378,0): 56, 23, 30, (387,379,0): 54, 23, 29, (387,380,0): 53, 22, 28, (387,381,0): 51, 22, 27, (387,382,0): 50, 20, 28, (387,383,0): 48, 21, 30, (387,384,0): 45, 22, 32, (387,385,0): 43, 21, 33, (387,386,0): 42, 20, 32, (387,387,0): 41, 19, 31, (387,388,0): 40, 19, 28, (387,389,0): 40, 19, 28, (387,390,0): 41, 20, 27, (387,391,0): 42, 21, 28, (387,392,0): 46, 25, 32, (387,393,0): 46, 25, 32, (387,394,0): 47, 26, 31, (387,395,0): 47, 26, 31, (387,396,0): 47, 27, 29, (387,397,0): 46, 26, 28, (387,398,0): 45, 25, 27, (387,399,0): 44, 24, 26, (387,400,0): 46, 24, 27, (387,401,0): 46, 24, 27, (387,402,0): 46, 24, 27, (387,403,0): 46, 24, 27, (387,404,0): 46, 24, 27, (387,405,0): 46, 24, 27, (387,406,0): 46, 24, 27, (387,407,0): 46, 24, 27, (387,408,0): 45, 23, 26, (387,409,0): 45, 23, 26, (387,410,0): 46, 24, 27, (387,411,0): 46, 24, 27, (387,412,0): 47, 25, 28, (387,413,0): 48, 26, 29, (387,414,0): 49, 27, 30, (387,415,0): 48, 28, 30, (387,416,0): 46, 30, 30, (387,417,0): 47, 31, 31, (387,418,0): 47, 31, 31, (387,419,0): 50, 32, 32, (387,420,0): 51, 33, 33, (387,421,0): 52, 34, 34, (387,422,0): 53, 35, 35, (387,423,0): 53, 35, 35, (387,424,0): 54, 38, 38, (387,425,0): 54, 40, 39, (387,426,0): 57, 46, 44, (387,427,0): 64, 54, 52, (387,428,0): 69, 64, 60, (387,429,0): 70, 67, 62, (387,430,0): 66, 63, 58, (387,431,0): 62, 59, 52, (387,432,0): 66, 59, 51, (387,433,0): 66, 59, 49, (387,434,0): 66, 62, 51, (387,435,0): 68, 66, 54, (387,436,0): 68, 70, 59, (387,437,0): 69, 72, 61, (387,438,0): 71, 74, 65, (387,439,0): 73, 76, 67, (387,440,0): 71, 72, 66, (387,441,0): 70, 69, 64, (387,442,0): 69, 64, 61, (387,443,0): 65, 55, 54, (387,444,0): 60, 46, 46, (387,445,0): 56, 37, 41, (387,446,0): 53, 30, 36, (387,447,0): 52, 26, 35, (387,448,0): 48, 27, 34, (387,449,0): 48, 29, 35, (387,450,0): 48, 29, 33, (387,451,0): 47, 28, 32, (387,452,0): 46, 30, 31, (387,453,0): 49, 33, 34, (387,454,0): 54, 40, 39, (387,455,0): 57, 46, 44, (387,456,0): 58, 47, 43, (387,457,0): 55, 46, 39, (387,458,0): 51, 44, 36, (387,459,0): 48, 41, 31, (387,460,0): 47, 43, 32, (387,461,0): 50, 46, 35, (387,462,0): 55, 51, 40, (387,463,0): 56, 56, 44, (387,464,0): 65, 68, 57, (387,465,0): 70, 78, 65, (387,466,0): 76, 87, 73, (387,467,0): 82, 95, 78, (387,468,0): 95, 108, 91, (387,469,0): 110, 123, 105, (387,470,0): 118, 129, 112, (387,471,0): 120, 127, 109, (387,472,0): 121, 122, 104, (387,473,0): 117, 116, 96, (387,474,0): 109, 106, 87, (387,475,0): 99, 97, 76, (387,476,0): 91, 89, 68, (387,477,0): 84, 84, 60, (387,478,0): 79, 81, 57, (387,479,0): 76, 80, 53, (387,480,0): 76, 85, 56, (387,481,0): 77, 86, 57, (387,482,0): 81, 88, 57, (387,483,0): 83, 90, 59, (387,484,0): 86, 91, 59, (387,485,0): 90, 94, 61, (387,486,0): 94, 95, 61, (387,487,0): 97, 97, 63, (387,488,0): 100, 97, 66, (387,489,0): 102, 97, 67, (387,490,0): 103, 96, 68, (387,491,0): 102, 92, 67, (387,492,0): 97, 85, 63, (387,493,0): 90, 75, 56, (387,494,0): 82, 66, 50, (387,495,0): 77, 59, 45, (387,496,0): 76, 56, 47, (387,497,0): 74, 54, 47, (387,498,0): 71, 50, 45, (387,499,0): 68, 47, 42, (387,500,0): 65, 44, 39, (387,501,0): 63, 42, 37, (387,502,0): 61, 40, 37, (387,503,0): 61, 40, 37, (387,504,0): 59, 38, 37, (387,505,0): 58, 37, 36, (387,506,0): 56, 35, 34, (387,507,0): 53, 32, 31, (387,508,0): 51, 29, 31, (387,509,0): 49, 27, 29, (387,510,0): 49, 27, 29, (387,511,0): 47, 27, 28, (387,512,0): 43, 24, 26, (387,513,0): 40, 24, 25, (387,514,0): 39, 23, 24, (387,515,0): 38, 22, 23, (387,516,0): 38, 22, 23, (387,517,0): 39, 23, 24, (387,518,0): 41, 25, 26, (387,519,0): 41, 25, 26, (387,520,0): 40, 24, 25, (387,521,0): 40, 24, 25, (387,522,0): 42, 26, 27, (387,523,0): 45, 29, 30, (387,524,0): 49, 33, 34, (387,525,0): 55, 39, 40, (387,526,0): 61, 45, 46, (387,527,0): 63, 49, 48, (387,528,0): 67, 54, 48, (387,529,0): 70, 60, 51, (387,530,0): 77, 64, 56, (387,531,0): 77, 64, 56, (387,532,0): 75, 58, 51, (387,533,0): 70, 53, 46, (387,534,0): 68, 49, 43, (387,535,0): 67, 48, 42, (387,536,0): 70, 51, 45, (387,537,0): 70, 51, 45, (387,538,0): 70, 53, 46, (387,539,0): 69, 54, 47, (387,540,0): 69, 54, 47, (387,541,0): 67, 54, 46, (387,542,0): 63, 53, 44, (387,543,0): 61, 52, 45, (387,544,0): 64, 56, 53, (387,545,0): 64, 59, 56, (387,546,0): 67, 62, 59, (387,547,0): 70, 65, 62, (387,548,0): 71, 66, 63, (387,549,0): 71, 66, 63, (387,550,0): 70, 65, 62, (387,551,0): 69, 64, 61, (387,552,0): 70, 65, 62, (387,553,0): 69, 64, 61, (387,554,0): 68, 63, 60, (387,555,0): 67, 62, 59, (387,556,0): 65, 60, 57, (387,557,0): 63, 58, 55, (387,558,0): 62, 57, 54, (387,559,0): 64, 56, 54, (387,560,0): 63, 53, 52, (387,561,0): 59, 49, 48, (387,562,0): 56, 44, 44, (387,563,0): 51, 41, 40, (387,564,0): 47, 37, 38, (387,565,0): 43, 34, 35, (387,566,0): 39, 28, 34, (387,567,0): 34, 25, 30, (387,568,0): 27, 17, 25, (387,569,0): 25, 18, 25, (387,570,0): 25, 17, 28, (387,571,0): 26, 20, 30, (387,572,0): 28, 20, 33, (387,573,0): 29, 23, 35, (387,574,0): 31, 25, 37, (387,575,0): 31, 28, 39, (387,576,0): 24, 24, 36, (387,577,0): 24, 24, 36, (387,578,0): 22, 22, 34, (387,579,0): 20, 20, 32, (387,580,0): 20, 18, 31, (387,581,0): 19, 17, 28, (387,582,0): 21, 18, 29, (387,583,0): 24, 18, 28, (387,584,0): 25, 17, 28, (387,585,0): 24, 16, 27, (387,586,0): 26, 16, 27, (387,587,0): 31, 19, 29, (387,588,0): 37, 25, 35, (387,589,0): 42, 29, 38, (387,590,0): 41, 28, 37, (387,591,0): 38, 25, 35, (387,592,0): 40, 26, 39, (387,593,0): 40, 26, 39, (387,594,0): 39, 25, 38, (387,595,0): 39, 25, 38, (387,596,0): 38, 24, 37, (387,597,0): 37, 23, 36, (387,598,0): 37, 23, 36, (387,599,0): 37, 23, 36, (388,0,0): 77, 68, 51, (388,1,0): 77, 68, 51, (388,2,0): 77, 68, 51, (388,3,0): 78, 69, 52, (388,4,0): 80, 68, 52, (388,5,0): 80, 68, 52, (388,6,0): 81, 69, 53, (388,7,0): 81, 69, 53, (388,8,0): 81, 68, 52, (388,9,0): 80, 67, 51, (388,10,0): 82, 66, 51, (388,11,0): 83, 67, 52, (388,12,0): 84, 68, 53, (388,13,0): 85, 69, 54, (388,14,0): 87, 69, 55, (388,15,0): 87, 71, 55, (388,16,0): 89, 74, 55, (388,17,0): 88, 75, 56, (388,18,0): 89, 76, 57, (388,19,0): 91, 79, 57, (388,20,0): 93, 81, 59, (388,21,0): 95, 83, 61, (388,22,0): 96, 84, 60, (388,23,0): 97, 85, 61, (388,24,0): 98, 86, 62, (388,25,0): 98, 86, 60, (388,26,0): 98, 86, 60, (388,27,0): 98, 86, 60, (388,28,0): 99, 88, 60, (388,29,0): 99, 88, 60, (388,30,0): 99, 88, 60, (388,31,0): 99, 88, 60, (388,32,0): 104, 88, 63, (388,33,0): 104, 88, 65, (388,34,0): 105, 89, 64, (388,35,0): 106, 90, 65, (388,36,0): 106, 92, 66, (388,37,0): 107, 93, 67, (388,38,0): 108, 94, 67, (388,39,0): 108, 94, 67, (388,40,0): 105, 94, 64, (388,41,0): 105, 94, 64, (388,42,0): 104, 95, 64, (388,43,0): 104, 95, 64, (388,44,0): 104, 95, 62, (388,45,0): 104, 95, 62, (388,46,0): 102, 96, 62, (388,47,0): 102, 96, 62, (388,48,0): 108, 97, 67, (388,49,0): 108, 97, 67, (388,50,0): 109, 98, 68, (388,51,0): 110, 99, 69, (388,52,0): 109, 98, 68, (388,53,0): 108, 97, 67, (388,54,0): 107, 96, 66, (388,55,0): 106, 95, 65, (388,56,0): 101, 90, 60, (388,57,0): 100, 89, 59, (388,58,0): 99, 88, 58, (388,59,0): 95, 84, 54, (388,60,0): 89, 78, 48, (388,61,0): 83, 72, 42, (388,62,0): 77, 66, 36, (388,63,0): 73, 61, 35, (388,64,0): 73, 56, 40, (388,65,0): 72, 54, 40, (388,66,0): 70, 52, 38, (388,67,0): 68, 50, 36, (388,68,0): 66, 50, 35, (388,69,0): 67, 51, 35, (388,70,0): 67, 51, 35, (388,71,0): 68, 53, 34, (388,72,0): 66, 53, 34, (388,73,0): 68, 55, 36, (388,74,0): 70, 59, 37, (388,75,0): 73, 62, 40, (388,76,0): 75, 65, 40, (388,77,0): 76, 66, 41, (388,78,0): 74, 67, 41, (388,79,0): 74, 67, 39, (388,80,0): 80, 69, 41, (388,81,0): 81, 70, 42, (388,82,0): 83, 72, 44, (388,83,0): 84, 73, 45, (388,84,0): 85, 73, 47, (388,85,0): 85, 73, 47, (388,86,0): 84, 72, 48, (388,87,0): 84, 72, 48, (388,88,0): 78, 66, 42, (388,89,0): 76, 64, 40, (388,90,0): 73, 61, 39, (388,91,0): 70, 58, 36, (388,92,0): 67, 54, 35, (388,93,0): 66, 53, 34, (388,94,0): 65, 52, 33, (388,95,0): 64, 51, 32, (388,96,0): 59, 46, 29, (388,97,0): 59, 46, 30, (388,98,0): 58, 45, 29, (388,99,0): 58, 45, 29, (388,100,0): 57, 43, 30, (388,101,0): 57, 43, 30, (388,102,0): 56, 42, 29, (388,103,0): 56, 42, 29, (388,104,0): 56, 42, 31, (388,105,0): 56, 42, 31, (388,106,0): 56, 42, 33, (388,107,0): 56, 42, 33, (388,108,0): 56, 42, 33, (388,109,0): 56, 42, 33, (388,110,0): 56, 41, 34, (388,111,0): 55, 42, 33, (388,112,0): 55, 42, 33, (388,113,0): 53, 43, 31, (388,114,0): 55, 43, 31, (388,115,0): 56, 44, 32, (388,116,0): 56, 44, 32, (388,117,0): 57, 45, 33, (388,118,0): 59, 45, 34, (388,119,0): 59, 45, 34, (388,120,0): 63, 46, 36, (388,121,0): 63, 46, 36, (388,122,0): 64, 47, 37, (388,123,0): 66, 49, 39, (388,124,0): 69, 51, 41, (388,125,0): 70, 52, 42, (388,126,0): 71, 53, 43, (388,127,0): 73, 53, 42, (388,128,0): 77, 55, 42, (388,129,0): 77, 55, 41, (388,130,0): 78, 56, 42, (388,131,0): 80, 58, 44, (388,132,0): 83, 60, 46, (388,133,0): 85, 62, 46, (388,134,0): 90, 64, 49, (388,135,0): 91, 65, 50, (388,136,0): 93, 67, 50, (388,137,0): 94, 68, 51, (388,138,0): 96, 69, 50, (388,139,0): 97, 70, 51, (388,140,0): 99, 70, 52, (388,141,0): 100, 71, 53, (388,142,0): 101, 72, 54, (388,143,0): 101, 72, 54, (388,144,0): 105, 73, 58, (388,145,0): 107, 75, 60, (388,146,0): 108, 76, 61, (388,147,0): 109, 76, 61, (388,148,0): 109, 75, 63, (388,149,0): 111, 77, 65, (388,150,0): 115, 83, 70, (388,151,0): 118, 89, 75, (388,152,0): 120, 92, 80, (388,153,0): 131, 105, 92, (388,154,0): 150, 128, 115, (388,155,0): 173, 154, 140, (388,156,0): 195, 179, 164, (388,157,0): 209, 196, 180, (388,158,0): 217, 205, 191, (388,159,0): 215, 212, 197, (388,160,0): 199, 208, 191, (388,161,0): 193, 207, 192, (388,162,0): 189, 203, 190, (388,163,0): 182, 198, 188, (388,164,0): 177, 193, 190, (388,165,0): 171, 191, 190, (388,166,0): 168, 192, 196, (388,167,0): 165, 192, 199, (388,168,0): 162, 190, 201, (388,169,0): 159, 191, 202, (388,170,0): 156, 192, 206, (388,171,0): 155, 193, 206, (388,172,0): 152, 194, 208, (388,173,0): 151, 195, 208, (388,174,0): 149, 195, 210, (388,175,0): 149, 195, 210, (388,176,0): 148, 195, 213, (388,177,0): 148, 195, 215, (388,178,0): 149, 196, 216, (388,179,0): 149, 196, 216, (388,180,0): 149, 197, 219, (388,181,0): 150, 198, 220, (388,182,0): 150, 198, 221, (388,183,0): 151, 198, 224, (388,184,0): 150, 200, 225, (388,185,0): 150, 200, 227, (388,186,0): 149, 200, 229, (388,187,0): 149, 200, 231, (388,188,0): 149, 200, 231, (388,189,0): 149, 199, 232, (388,190,0): 147, 200, 232, (388,191,0): 147, 200, 232, (388,192,0): 147, 198, 229, (388,193,0): 148, 197, 229, (388,194,0): 148, 197, 229, (388,195,0): 148, 197, 229, (388,196,0): 148, 197, 230, (388,197,0): 147, 196, 229, (388,198,0): 145, 193, 229, (388,199,0): 143, 191, 227, (388,200,0): 143, 191, 227, (388,201,0): 143, 191, 227, (388,202,0): 143, 191, 229, (388,203,0): 143, 191, 229, (388,204,0): 143, 191, 231, (388,205,0): 143, 191, 231, (388,206,0): 143, 191, 231, (388,207,0): 145, 190, 231, (388,208,0): 149, 190, 234, (388,209,0): 148, 189, 233, (388,210,0): 147, 188, 232, (388,211,0): 145, 188, 231, (388,212,0): 145, 188, 231, (388,213,0): 145, 190, 232, (388,214,0): 146, 191, 233, (388,215,0): 147, 192, 234, (388,216,0): 143, 188, 230, (388,217,0): 144, 187, 230, (388,218,0): 144, 185, 229, (388,219,0): 146, 184, 229, (388,220,0): 147, 184, 229, (388,221,0): 150, 184, 230, (388,222,0): 153, 185, 232, (388,223,0): 154, 186, 233, (388,224,0): 155, 188, 233, (388,225,0): 155, 188, 231, (388,226,0): 159, 188, 228, (388,227,0): 167, 189, 230, (388,228,0): 180, 192, 232, (388,229,0): 196, 198, 237, (388,230,0): 214, 203, 243, (388,231,0): 227, 206, 245, (388,232,0): 239, 211, 251, (388,233,0): 241, 209, 248, (388,234,0): 237, 205, 244, (388,235,0): 226, 198, 236, (388,236,0): 213, 191, 227, (388,237,0): 202, 188, 221, (388,238,0): 195, 188, 219, (388,239,0): 188, 193, 225, (388,240,0): 165, 185, 220, (388,241,0): 157, 185, 224, (388,242,0): 154, 184, 222, (388,243,0): 153, 183, 221, (388,244,0): 150, 182, 221, (388,245,0): 149, 181, 222, (388,246,0): 149, 182, 225, (388,247,0): 148, 183, 225, (388,248,0): 149, 183, 228, (388,249,0): 147, 184, 229, (388,250,0): 147, 185, 230, (388,251,0): 147, 185, 232, (388,252,0): 145, 185, 234, (388,253,0): 143, 183, 232, (388,254,0): 141, 183, 231, (388,255,0): 140, 182, 230, (388,256,0): 141, 181, 232, (388,257,0): 140, 180, 231, (388,258,0): 140, 180, 231, (388,259,0): 139, 179, 230, (388,260,0): 139, 181, 231, (388,261,0): 140, 181, 233, (388,262,0): 141, 184, 235, (388,263,0): 142, 185, 236, (388,264,0): 141, 184, 237, (388,265,0): 141, 184, 237, (388,266,0): 139, 184, 239, (388,267,0): 140, 185, 240, (388,268,0): 139, 186, 240, (388,269,0): 140, 187, 241, (388,270,0): 140, 187, 241, (388,271,0): 140, 186, 245, (388,272,0): 142, 186, 251, (388,273,0): 141, 184, 252, (388,274,0): 139, 184, 251, (388,275,0): 136, 184, 250, (388,276,0): 136, 184, 250, (388,277,0): 136, 185, 251, (388,278,0): 136, 187, 252, (388,279,0): 135, 189, 253, (388,280,0): 137, 191, 255, (388,281,0): 140, 191, 255, (388,282,0): 142, 191, 255, (388,283,0): 144, 193, 255, (388,284,0): 145, 193, 255, (388,285,0): 147, 192, 255, (388,286,0): 147, 190, 255, (388,287,0): 147, 190, 255, (388,288,0): 146, 189, 255, (388,289,0): 146, 190, 255, (388,290,0): 148, 189, 255, (388,291,0): 149, 188, 255, (388,292,0): 150, 187, 255, (388,293,0): 150, 187, 255, (388,294,0): 150, 187, 255, (388,295,0): 150, 187, 255, (388,296,0): 150, 184, 255, (388,297,0): 150, 183, 252, (388,298,0): 153, 180, 247, (388,299,0): 158, 180, 240, (388,300,0): 156, 172, 224, (388,301,0): 143, 151, 197, (388,302,0): 119, 122, 163, (388,303,0): 102, 103, 134, (388,304,0): 89, 91, 114, (388,305,0): 85, 88, 105, (388,306,0): 85, 88, 103, (388,307,0): 87, 91, 103, (388,308,0): 87, 91, 102, (388,309,0): 85, 89, 100, (388,310,0): 91, 93, 106, (388,311,0): 102, 101, 115, (388,312,0): 107, 104, 121, (388,313,0): 106, 102, 119, (388,314,0): 103, 94, 111, (388,315,0): 98, 87, 101, (388,316,0): 90, 77, 87, (388,317,0): 83, 68, 75, (388,318,0): 78, 59, 63, (388,319,0): 73, 54, 58, (388,320,0): 70, 49, 56, (388,321,0): 69, 48, 57, (388,322,0): 67, 45, 57, (388,323,0): 66, 44, 56, (388,324,0): 66, 44, 56, (388,325,0): 66, 44, 56, (388,326,0): 68, 45, 55, (388,327,0): 68, 45, 55, (388,328,0): 74, 48, 57, (388,329,0): 75, 48, 53, (388,330,0): 79, 49, 51, (388,331,0): 84, 50, 49, (388,332,0): 89, 51, 50, (388,333,0): 94, 54, 52, (388,334,0): 98, 57, 53, (388,335,0): 105, 58, 52, (388,336,0): 117, 62, 55, (388,337,0): 116, 57, 51, (388,338,0): 105, 50, 45, (388,339,0): 94, 43, 39, (388,340,0): 83, 38, 35, (388,341,0): 74, 34, 34, (388,342,0): 67, 31, 33, (388,343,0): 61, 31, 33, (388,344,0): 57, 28, 32, (388,345,0): 54, 27, 32, (388,346,0): 52, 25, 32, (388,347,0): 51, 24, 31, (388,348,0): 53, 23, 31, (388,349,0): 53, 23, 31, (388,350,0): 55, 24, 30, (388,351,0): 56, 25, 31, (388,352,0): 55, 26, 30, (388,353,0): 55, 26, 30, (388,354,0): 55, 26, 30, (388,355,0): 56, 27, 31, (388,356,0): 57, 26, 31, (388,357,0): 58, 27, 32, (388,358,0): 58, 27, 32, (388,359,0): 58, 27, 32, (388,360,0): 57, 25, 30, (388,361,0): 57, 25, 30, (388,362,0): 59, 24, 30, (388,363,0): 60, 25, 31, (388,364,0): 60, 25, 31, (388,365,0): 61, 26, 32, (388,366,0): 62, 25, 32, (388,367,0): 65, 26, 31, (388,368,0): 67, 26, 32, (388,369,0): 68, 26, 30, (388,370,0): 68, 25, 32, (388,371,0): 67, 26, 32, (388,372,0): 67, 26, 32, (388,373,0): 66, 27, 32, (388,374,0): 66, 26, 34, (388,375,0): 64, 27, 34, (388,376,0): 58, 23, 30, (388,377,0): 56, 23, 30, (388,378,0): 55, 22, 29, (388,379,0): 53, 22, 28, (388,380,0): 52, 21, 29, (388,381,0): 50, 20, 28, (388,382,0): 49, 19, 27, (388,383,0): 46, 20, 29, (388,384,0): 44, 23, 32, (388,385,0): 42, 22, 33, (388,386,0): 40, 20, 31, (388,387,0): 39, 19, 30, (388,388,0): 39, 19, 28, (388,389,0): 39, 19, 28, (388,390,0): 40, 21, 27, (388,391,0): 40, 21, 27, (388,392,0): 44, 25, 31, (388,393,0): 45, 26, 32, (388,394,0): 46, 27, 31, (388,395,0): 47, 28, 32, (388,396,0): 47, 28, 30, (388,397,0): 45, 26, 28, (388,398,0): 44, 25, 27, (388,399,0): 44, 24, 26, (388,400,0): 45, 22, 28, (388,401,0): 45, 22, 28, (388,402,0): 45, 22, 28, (388,403,0): 45, 22, 28, (388,404,0): 45, 22, 28, (388,405,0): 45, 22, 28, (388,406,0): 45, 22, 28, (388,407,0): 45, 22, 28, (388,408,0): 45, 22, 28, (388,409,0): 45, 22, 28, (388,410,0): 46, 23, 29, (388,411,0): 47, 24, 30, (388,412,0): 48, 25, 31, (388,413,0): 48, 25, 31, (388,414,0): 49, 26, 32, (388,415,0): 48, 28, 30, (388,416,0): 48, 30, 30, (388,417,0): 48, 30, 30, (388,418,0): 49, 31, 31, (388,419,0): 51, 31, 32, (388,420,0): 52, 32, 33, (388,421,0): 54, 34, 35, (388,422,0): 55, 35, 36, (388,423,0): 54, 36, 36, (388,424,0): 57, 41, 41, (388,425,0): 58, 44, 43, (388,426,0): 60, 50, 48, (388,427,0): 68, 60, 57, (388,428,0): 73, 70, 65, (388,429,0): 75, 74, 69, (388,430,0): 72, 73, 67, (388,431,0): 68, 69, 63, (388,432,0): 73, 70, 63, (388,433,0): 74, 71, 64, (388,434,0): 74, 71, 64, (388,435,0): 71, 71, 63, (388,436,0): 70, 71, 65, (388,437,0): 69, 72, 65, (388,438,0): 69, 72, 65, (388,439,0): 66, 71, 64, (388,440,0): 69, 71, 66, (388,441,0): 67, 68, 63, (388,442,0): 64, 60, 59, (388,443,0): 60, 51, 52, (388,444,0): 55, 43, 45, (388,445,0): 52, 35, 41, (388,446,0): 50, 29, 36, (388,447,0): 46, 25, 32, (388,448,0): 42, 23, 29, (388,449,0): 41, 24, 30, (388,450,0): 43, 27, 30, (388,451,0): 44, 28, 31, (388,452,0): 46, 30, 31, (388,453,0): 52, 36, 37, (388,454,0): 59, 45, 44, (388,455,0): 66, 52, 51, (388,456,0): 64, 50, 47, (388,457,0): 59, 48, 42, (388,458,0): 55, 44, 38, (388,459,0): 53, 43, 34, (388,460,0): 54, 44, 35, (388,461,0): 57, 47, 37, (388,462,0): 61, 51, 41, (388,463,0): 61, 55, 43, (388,464,0): 65, 67, 54, (388,465,0): 72, 78, 64, (388,466,0): 79, 87, 72, (388,467,0): 81, 94, 76, (388,468,0): 91, 104, 86, (388,469,0): 105, 118, 98, (388,470,0): 115, 127, 107, (388,471,0): 119, 127, 106, (388,472,0): 123, 126, 105, (388,473,0): 122, 121, 100, (388,474,0): 114, 113, 92, (388,475,0): 105, 105, 81, (388,476,0): 97, 97, 73, (388,477,0): 91, 94, 67, (388,478,0): 88, 94, 66, (388,479,0): 87, 96, 65, (388,480,0): 87, 97, 63, (388,481,0): 84, 95, 61, (388,482,0): 84, 94, 60, (388,483,0): 85, 92, 58, (388,484,0): 87, 94, 60, (388,485,0): 91, 97, 61, (388,486,0): 95, 99, 64, (388,487,0): 98, 100, 63, (388,488,0): 102, 99, 66, (388,489,0): 103, 98, 68, (388,490,0): 104, 97, 69, (388,491,0): 104, 94, 69, (388,492,0): 98, 87, 65, (388,493,0): 90, 77, 58, (388,494,0): 81, 68, 49, (388,495,0): 78, 62, 47, (388,496,0): 78, 60, 50, (388,497,0): 77, 57, 50, (388,498,0): 73, 52, 47, (388,499,0): 69, 48, 43, (388,500,0): 65, 44, 39, (388,501,0): 63, 42, 37, (388,502,0): 61, 40, 37, (388,503,0): 61, 40, 37, (388,504,0): 60, 39, 38, (388,505,0): 58, 37, 36, (388,506,0): 55, 34, 33, (388,507,0): 52, 31, 30, (388,508,0): 50, 28, 30, (388,509,0): 49, 27, 29, (388,510,0): 49, 27, 29, (388,511,0): 48, 28, 29, (388,512,0): 44, 25, 27, (388,513,0): 41, 25, 26, (388,514,0): 40, 24, 25, (388,515,0): 39, 23, 24, (388,516,0): 39, 23, 24, (388,517,0): 39, 23, 24, (388,518,0): 40, 24, 25, (388,519,0): 41, 25, 26, (388,520,0): 40, 24, 25, (388,521,0): 40, 24, 25, (388,522,0): 41, 25, 26, (388,523,0): 44, 28, 29, (388,524,0): 48, 32, 33, (388,525,0): 54, 38, 39, (388,526,0): 59, 43, 44, (388,527,0): 61, 47, 46, (388,528,0): 65, 51, 48, (388,529,0): 66, 55, 49, (388,530,0): 73, 60, 54, (388,531,0): 74, 61, 55, (388,532,0): 74, 56, 52, (388,533,0): 69, 51, 47, (388,534,0): 67, 48, 44, (388,535,0): 65, 46, 42, (388,536,0): 69, 50, 46, (388,537,0): 69, 50, 46, (388,538,0): 69, 51, 47, (388,539,0): 68, 53, 48, (388,540,0): 67, 52, 47, (388,541,0): 65, 52, 46, (388,542,0): 62, 51, 45, (388,543,0): 60, 51, 46, (388,544,0): 62, 54, 51, (388,545,0): 64, 56, 54, (388,546,0): 67, 59, 57, (388,547,0): 71, 63, 61, (388,548,0): 72, 64, 62, (388,549,0): 73, 65, 63, (388,550,0): 72, 64, 62, (388,551,0): 71, 63, 61, (388,552,0): 72, 64, 62, (388,553,0): 71, 63, 61, (388,554,0): 70, 62, 60, (388,555,0): 69, 61, 59, (388,556,0): 67, 59, 57, (388,557,0): 65, 57, 55, (388,558,0): 64, 56, 54, (388,559,0): 64, 56, 54, (388,560,0): 66, 58, 56, (388,561,0): 62, 54, 52, (388,562,0): 57, 47, 46, (388,563,0): 53, 45, 43, (388,564,0): 51, 42, 43, (388,565,0): 45, 39, 39, (388,566,0): 41, 32, 37, (388,567,0): 35, 29, 33, (388,568,0): 25, 18, 25, (388,569,0): 24, 19, 25, (388,570,0): 24, 18, 28, (388,571,0): 23, 20, 29, (388,572,0): 27, 21, 33, (388,573,0): 28, 25, 36, (388,574,0): 30, 27, 38, (388,575,0): 31, 29, 40, (388,576,0): 23, 25, 37, (388,577,0): 21, 23, 36, (388,578,0): 19, 21, 34, (388,579,0): 17, 19, 31, (388,580,0): 19, 19, 31, (388,581,0): 20, 18, 31, (388,582,0): 21, 17, 31, (388,583,0): 20, 17, 28, (388,584,0): 23, 17, 29, (388,585,0): 23, 15, 26, (388,586,0): 24, 16, 27, (388,587,0): 31, 21, 32, (388,588,0): 38, 26, 38, (388,589,0): 40, 28, 38, (388,590,0): 39, 27, 37, (388,591,0): 36, 24, 34, (388,592,0): 39, 27, 39, (388,593,0): 39, 27, 41, (388,594,0): 39, 27, 41, (388,595,0): 38, 26, 40, (388,596,0): 38, 26, 40, (388,597,0): 37, 25, 39, (388,598,0): 37, 25, 39, (388,599,0): 37, 25, 39, (389,0,0): 78, 69, 52, (389,1,0): 78, 69, 52, (389,2,0): 78, 69, 52, (389,3,0): 78, 69, 52, (389,4,0): 80, 68, 52, (389,5,0): 80, 68, 52, (389,6,0): 80, 68, 52, (389,7,0): 80, 68, 52, (389,8,0): 81, 68, 52, (389,9,0): 81, 68, 52, (389,10,0): 83, 67, 52, (389,11,0): 84, 68, 53, (389,12,0): 84, 68, 53, (389,13,0): 85, 69, 54, (389,14,0): 86, 68, 54, (389,15,0): 86, 70, 55, (389,16,0): 86, 73, 56, (389,17,0): 86, 73, 54, (389,18,0): 88, 75, 56, (389,19,0): 90, 77, 58, (389,20,0): 92, 80, 58, (389,21,0): 94, 82, 60, (389,22,0): 95, 83, 61, (389,23,0): 96, 84, 60, (389,24,0): 97, 85, 61, (389,25,0): 97, 85, 61, (389,26,0): 98, 86, 60, (389,27,0): 98, 86, 60, (389,28,0): 99, 87, 61, (389,29,0): 99, 88, 60, (389,30,0): 100, 89, 61, (389,31,0): 100, 88, 62, (389,32,0): 104, 88, 65, (389,33,0): 104, 88, 65, (389,34,0): 105, 89, 64, (389,35,0): 106, 90, 65, (389,36,0): 106, 92, 66, (389,37,0): 107, 93, 67, (389,38,0): 108, 94, 67, (389,39,0): 109, 95, 68, (389,40,0): 106, 95, 65, (389,41,0): 106, 95, 65, (389,42,0): 105, 96, 65, (389,43,0): 105, 96, 65, (389,44,0): 105, 96, 63, (389,45,0): 105, 96, 63, (389,46,0): 103, 97, 63, (389,47,0): 103, 97, 63, (389,48,0): 108, 97, 67, (389,49,0): 109, 98, 68, (389,50,0): 110, 99, 69, (389,51,0): 110, 99, 69, (389,52,0): 110, 99, 69, (389,53,0): 110, 99, 69, (389,54,0): 108, 97, 67, (389,55,0): 108, 97, 67, (389,56,0): 102, 91, 61, (389,57,0): 102, 91, 61, (389,58,0): 101, 90, 60, (389,59,0): 98, 87, 57, (389,60,0): 93, 82, 52, (389,61,0): 87, 76, 46, (389,62,0): 82, 71, 41, (389,63,0): 78, 66, 40, (389,64,0): 76, 59, 41, (389,65,0): 74, 57, 41, (389,66,0): 71, 53, 39, (389,67,0): 69, 52, 36, (389,68,0): 67, 51, 35, (389,69,0): 67, 51, 35, (389,70,0): 69, 54, 35, (389,71,0): 70, 55, 36, (389,72,0): 66, 53, 34, (389,73,0): 68, 55, 36, (389,74,0): 71, 60, 38, (389,75,0): 74, 63, 41, (389,76,0): 76, 66, 41, (389,77,0): 77, 67, 42, (389,78,0): 74, 67, 41, (389,79,0): 74, 67, 41, (389,80,0): 79, 67, 41, (389,81,0): 80, 69, 41, (389,82,0): 82, 71, 43, (389,83,0): 84, 73, 45, (389,84,0): 85, 73, 47, (389,85,0): 85, 73, 47, (389,86,0): 84, 72, 48, (389,87,0): 84, 72, 48, (389,88,0): 78, 66, 42, (389,89,0): 76, 64, 40, (389,90,0): 73, 61, 39, (389,91,0): 70, 58, 36, (389,92,0): 67, 54, 35, (389,93,0): 66, 53, 34, (389,94,0): 65, 52, 33, (389,95,0): 64, 51, 34, (389,96,0): 58, 45, 29, (389,97,0): 58, 45, 29, (389,98,0): 57, 44, 28, (389,99,0): 57, 44, 28, (389,100,0): 56, 42, 29, (389,101,0): 56, 42, 29, (389,102,0): 55, 41, 28, (389,103,0): 55, 41, 28, (389,104,0): 55, 41, 30, (389,105,0): 55, 41, 30, (389,106,0): 55, 41, 32, (389,107,0): 55, 41, 32, (389,108,0): 55, 41, 32, (389,109,0): 55, 41, 32, (389,110,0): 55, 40, 33, (389,111,0): 54, 41, 33, (389,112,0): 54, 41, 32, (389,113,0): 52, 42, 30, (389,114,0): 53, 41, 29, (389,115,0): 53, 41, 29, (389,116,0): 54, 42, 30, (389,117,0): 55, 43, 31, (389,118,0): 57, 43, 32, (389,119,0): 58, 44, 33, (389,120,0): 61, 44, 34, (389,121,0): 62, 45, 35, (389,122,0): 63, 46, 36, (389,123,0): 64, 47, 37, (389,124,0): 67, 49, 39, (389,125,0): 69, 51, 41, (389,126,0): 70, 52, 42, (389,127,0): 70, 52, 40, (389,128,0): 74, 55, 41, (389,129,0): 77, 55, 41, (389,130,0): 78, 56, 42, (389,131,0): 80, 58, 44, (389,132,0): 83, 60, 46, (389,133,0): 85, 62, 48, (389,134,0): 89, 63, 48, (389,135,0): 90, 64, 49, (389,136,0): 92, 66, 51, (389,137,0): 93, 67, 50, (389,138,0): 95, 68, 51, (389,139,0): 97, 70, 51, (389,140,0): 99, 70, 52, (389,141,0): 99, 70, 52, (389,142,0): 99, 70, 52, (389,143,0): 99, 70, 52, (389,144,0): 99, 67, 52, (389,145,0): 101, 69, 54, (389,146,0): 104, 72, 57, (389,147,0): 105, 73, 58, (389,148,0): 107, 73, 61, (389,149,0): 110, 76, 64, (389,150,0): 114, 82, 69, (389,151,0): 118, 86, 73, (389,152,0): 117, 87, 76, (389,153,0): 122, 94, 82, (389,154,0): 131, 104, 93, (389,155,0): 145, 121, 109, (389,156,0): 164, 142, 129, (389,157,0): 184, 165, 151, (389,158,0): 204, 186, 172, (389,159,0): 212, 200, 186, (389,160,0): 201, 204, 187, (389,161,0): 197, 206, 189, (389,162,0): 193, 204, 188, (389,163,0): 187, 199, 187, (389,164,0): 182, 193, 187, (389,165,0): 176, 191, 188, (389,166,0): 173, 191, 193, (389,167,0): 172, 193, 198, (389,168,0): 165, 190, 197, (389,169,0): 162, 190, 201, (389,170,0): 159, 191, 204, (389,171,0): 156, 192, 206, (389,172,0): 154, 193, 208, (389,173,0): 152, 194, 208, (389,174,0): 151, 194, 210, (389,175,0): 149, 195, 211, (389,176,0): 147, 194, 212, (389,177,0): 147, 194, 214, (389,178,0): 148, 195, 215, (389,179,0): 149, 196, 216, (389,180,0): 150, 196, 219, (389,181,0): 150, 198, 221, (389,182,0): 150, 197, 223, (389,183,0): 151, 198, 224, (389,184,0): 149, 199, 226, (389,185,0): 149, 198, 228, (389,186,0): 149, 198, 230, (389,187,0): 148, 199, 230, (389,188,0): 148, 198, 231, (389,189,0): 148, 198, 231, (389,190,0): 146, 199, 231, (389,191,0): 148, 198, 231, (389,192,0): 149, 198, 230, (389,193,0): 147, 196, 228, (389,194,0): 147, 196, 228, (389,195,0): 148, 197, 229, (389,196,0): 149, 198, 231, (389,197,0): 148, 197, 230, (389,198,0): 145, 193, 229, (389,199,0): 143, 191, 227, (389,200,0): 143, 191, 227, (389,201,0): 143, 191, 227, (389,202,0): 143, 191, 229, (389,203,0): 143, 191, 229, (389,204,0): 143, 191, 231, (389,205,0): 143, 191, 231, (389,206,0): 143, 191, 231, (389,207,0): 145, 190, 231, (389,208,0): 148, 189, 233, (389,209,0): 149, 187, 232, (389,210,0): 148, 186, 231, (389,211,0): 145, 186, 230, (389,212,0): 145, 186, 230, (389,213,0): 145, 188, 231, (389,214,0): 146, 189, 232, (389,215,0): 146, 191, 233, (389,216,0): 145, 188, 231, (389,217,0): 145, 186, 230, (389,218,0): 147, 185, 230, (389,219,0): 147, 184, 229, (389,220,0): 150, 184, 230, (389,221,0): 152, 184, 231, (389,222,0): 155, 186, 233, (389,223,0): 156, 187, 233, (389,224,0): 153, 186, 231, (389,225,0): 154, 187, 230, (389,226,0): 161, 189, 229, (389,227,0): 171, 190, 230, (389,228,0): 186, 194, 233, (389,229,0): 206, 202, 239, (389,230,0): 227, 211, 248, (389,231,0): 243, 217, 254, (389,232,0): 255, 237, 255, (389,233,0): 255, 232, 255, (389,234,0): 255, 221, 255, (389,235,0): 243, 209, 244, (389,236,0): 222, 197, 229, (389,237,0): 204, 187, 219, (389,238,0): 194, 185, 214, (389,239,0): 183, 186, 217, (389,240,0): 164, 184, 219, (389,241,0): 156, 184, 221, (389,242,0): 153, 183, 221, (389,243,0): 152, 182, 220, (389,244,0): 149, 181, 220, (389,245,0): 148, 180, 219, (389,246,0): 148, 181, 222, (389,247,0): 147, 182, 224, (389,248,0): 149, 183, 228, (389,249,0): 147, 184, 228, (389,250,0): 147, 185, 230, (389,251,0): 147, 185, 230, (389,252,0): 145, 186, 232, (389,253,0): 143, 183, 232, (389,254,0): 141, 183, 231, (389,255,0): 140, 182, 230, (389,256,0): 142, 182, 233, (389,257,0): 142, 182, 233, (389,258,0): 141, 181, 232, (389,259,0): 141, 181, 232, (389,260,0): 140, 181, 233, (389,261,0): 141, 182, 234, (389,262,0): 142, 185, 236, (389,263,0): 143, 186, 239, (389,264,0): 143, 186, 239, (389,265,0): 143, 186, 239, (389,266,0): 141, 186, 241, (389,267,0): 141, 186, 241, (389,268,0): 140, 187, 241, (389,269,0): 140, 187, 243, (389,270,0): 140, 187, 243, (389,271,0): 140, 186, 245, (389,272,0): 141, 186, 251, (389,273,0): 140, 185, 252, (389,274,0): 137, 185, 251, (389,275,0): 135, 184, 250, (389,276,0): 135, 184, 250, (389,277,0): 135, 186, 251, (389,278,0): 134, 188, 252, (389,279,0): 135, 189, 253, (389,280,0): 136, 190, 254, (389,281,0): 137, 191, 255, (389,282,0): 141, 190, 255, (389,283,0): 142, 191, 255, (389,284,0): 144, 192, 255, (389,285,0): 146, 191, 255, (389,286,0): 146, 189, 255, (389,287,0): 145, 188, 255, (389,288,0): 146, 189, 255, (389,289,0): 146, 189, 255, (389,290,0): 149, 188, 255, (389,291,0): 149, 188, 255, (389,292,0): 150, 187, 255, (389,293,0): 150, 187, 255, (389,294,0): 150, 187, 255, (389,295,0): 152, 186, 255, (389,296,0): 151, 185, 255, (389,297,0): 151, 184, 251, (389,298,0): 154, 182, 247, (389,299,0): 158, 180, 238, (389,300,0): 156, 172, 223, (389,301,0): 142, 153, 198, (389,302,0): 123, 128, 166, (389,303,0): 107, 110, 141, (389,304,0): 95, 97, 120, (389,305,0): 89, 92, 111, (389,306,0): 86, 89, 106, (389,307,0): 88, 91, 106, (389,308,0): 89, 93, 105, (389,309,0): 89, 93, 105, (389,310,0): 97, 99, 112, (389,311,0): 105, 107, 122, (389,312,0): 111, 110, 128, (389,313,0): 110, 105, 125, (389,314,0): 108, 101, 119, (389,315,0): 104, 93, 109, (389,316,0): 96, 82, 95, (389,317,0): 88, 73, 80, (389,318,0): 80, 64, 67, (389,319,0): 77, 58, 62, (389,320,0): 72, 51, 58, (389,321,0): 69, 48, 57, (389,322,0): 67, 45, 57, (389,323,0): 66, 44, 56, (389,324,0): 67, 45, 57, (389,325,0): 68, 47, 56, (389,326,0): 68, 45, 55, (389,327,0): 69, 43, 52, (389,328,0): 75, 48, 55, (389,329,0): 77, 48, 53, (389,330,0): 80, 48, 51, (389,331,0): 85, 49, 49, (389,332,0): 91, 51, 51, (389,333,0): 95, 54, 50, (389,334,0): 100, 57, 51, (389,335,0): 105, 58, 52, (389,336,0): 114, 59, 54, (389,337,0): 109, 51, 47, (389,338,0): 97, 44, 40, (389,339,0): 86, 37, 33, (389,340,0): 77, 33, 32, (389,341,0): 69, 31, 30, (389,342,0): 63, 29, 30, (389,343,0): 58, 27, 32, (389,344,0): 53, 26, 31, (389,345,0): 51, 26, 30, (389,346,0): 50, 25, 31, (389,347,0): 49, 24, 30, (389,348,0): 50, 23, 30, (389,349,0): 53, 23, 31, (389,350,0): 55, 24, 30, (389,351,0): 56, 25, 31, (389,352,0): 53, 24, 28, (389,353,0): 54, 25, 29, (389,354,0): 54, 25, 29, (389,355,0): 54, 25, 29, (389,356,0): 56, 25, 30, (389,357,0): 57, 26, 31, (389,358,0): 57, 26, 31, (389,359,0): 57, 26, 31, (389,360,0): 56, 24, 29, (389,361,0): 57, 25, 30, (389,362,0): 59, 24, 30, (389,363,0): 59, 24, 30, (389,364,0): 60, 25, 31, (389,365,0): 61, 26, 32, (389,366,0): 62, 25, 32, (389,367,0): 62, 25, 32, (389,368,0): 65, 24, 30, (389,369,0): 65, 24, 28, (389,370,0): 65, 24, 30, (389,371,0): 64, 25, 30, (389,372,0): 64, 25, 30, (389,373,0): 62, 26, 30, (389,374,0): 62, 25, 32, (389,375,0): 61, 26, 32, (389,376,0): 55, 22, 29, (389,377,0): 54, 23, 29, (389,378,0): 53, 22, 28, (389,379,0): 51, 22, 27, (389,380,0): 50, 20, 28, (389,381,0): 47, 20, 27, (389,382,0): 46, 19, 26, (389,383,0): 45, 19, 28, (389,384,0): 43, 22, 31, (389,385,0): 41, 21, 32, (389,386,0): 40, 20, 31, (389,387,0): 39, 19, 30, (389,388,0): 38, 18, 27, (389,389,0): 38, 18, 27, (389,390,0): 39, 20, 26, (389,391,0): 40, 21, 27, (389,392,0): 42, 23, 29, (389,393,0): 44, 25, 31, (389,394,0): 46, 27, 31, (389,395,0): 47, 28, 32, (389,396,0): 48, 29, 31, (389,397,0): 46, 27, 29, (389,398,0): 44, 25, 27, (389,399,0): 43, 24, 26, (389,400,0): 44, 23, 28, (389,401,0): 45, 22, 28, (389,402,0): 45, 22, 28, (389,403,0): 45, 22, 28, (389,404,0): 45, 22, 28, (389,405,0): 45, 22, 28, (389,406,0): 45, 22, 28, (389,407,0): 45, 22, 28, (389,408,0): 45, 22, 28, (389,409,0): 46, 23, 29, (389,410,0): 47, 24, 30, (389,411,0): 48, 25, 31, (389,412,0): 48, 25, 31, (389,413,0): 48, 25, 31, (389,414,0): 47, 24, 30, (389,415,0): 46, 25, 30, (389,416,0): 47, 27, 29, (389,417,0): 48, 28, 29, (389,418,0): 49, 29, 30, (389,419,0): 50, 30, 31, (389,420,0): 52, 32, 33, (389,421,0): 53, 33, 34, (389,422,0): 54, 34, 35, (389,423,0): 54, 36, 36, (389,424,0): 58, 42, 42, (389,425,0): 60, 46, 45, (389,426,0): 62, 52, 50, (389,427,0): 67, 62, 58, (389,428,0): 74, 71, 66, (389,429,0): 76, 77, 71, (389,430,0): 77, 80, 73, (389,431,0): 77, 80, 73, (389,432,0): 86, 85, 81, (389,433,0): 87, 86, 82, (389,434,0): 84, 83, 79, (389,435,0): 75, 76, 71, (389,436,0): 70, 72, 69, (389,437,0): 68, 70, 67, (389,438,0): 63, 68, 64, (389,439,0): 58, 63, 59, (389,440,0): 60, 62, 61, (389,441,0): 57, 57, 57, (389,442,0): 54, 50, 51, (389,443,0): 53, 44, 47, (389,444,0): 51, 38, 45, (389,445,0): 50, 35, 42, (389,446,0): 50, 30, 39, (389,447,0): 47, 27, 36, (389,448,0): 38, 21, 29, (389,449,0): 39, 24, 29, (389,450,0): 41, 24, 30, (389,451,0): 42, 26, 29, (389,452,0): 46, 30, 31, (389,453,0): 53, 37, 38, (389,454,0): 62, 48, 47, (389,455,0): 69, 55, 52, (389,456,0): 66, 53, 47, (389,457,0): 64, 49, 42, (389,458,0): 61, 46, 39, (389,459,0): 60, 46, 37, (389,460,0): 62, 48, 39, (389,461,0): 64, 50, 39, (389,462,0): 65, 51, 40, (389,463,0): 62, 52, 40, (389,464,0): 68, 66, 53, (389,465,0): 74, 78, 63, (389,466,0): 81, 88, 72, (389,467,0): 81, 93, 73, (389,468,0): 87, 99, 79, (389,469,0): 100, 112, 90, (389,470,0): 112, 121, 100, (389,471,0): 116, 124, 101, (389,472,0): 124, 128, 105, (389,473,0): 122, 124, 100, (389,474,0): 118, 118, 94, (389,475,0): 109, 112, 85, (389,476,0): 103, 106, 79, (389,477,0): 100, 105, 75, (389,478,0): 99, 108, 77, (389,479,0): 101, 112, 78, (389,480,0): 98, 110, 74, (389,481,0): 94, 106, 68, (389,482,0): 88, 100, 62, (389,483,0): 86, 96, 59, (389,484,0): 88, 98, 61, (389,485,0): 93, 101, 62, (389,486,0): 96, 102, 64, (389,487,0): 98, 102, 65, (389,488,0): 102, 102, 68, (389,489,0): 105, 102, 69, (389,490,0): 106, 101, 72, (389,491,0): 104, 97, 69, (389,492,0): 98, 91, 65, (389,493,0): 91, 80, 58, (389,494,0): 84, 71, 52, (389,495,0): 78, 65, 48, (389,496,0): 82, 64, 54, (389,497,0): 80, 60, 53, (389,498,0): 75, 54, 49, (389,499,0): 69, 48, 43, (389,500,0): 65, 44, 39, (389,501,0): 62, 41, 36, (389,502,0): 61, 40, 37, (389,503,0): 61, 40, 37, (389,504,0): 61, 40, 39, (389,505,0): 59, 38, 37, (389,506,0): 55, 34, 33, (389,507,0): 52, 31, 30, (389,508,0): 49, 27, 29, (389,509,0): 49, 27, 29, (389,510,0): 49, 27, 29, (389,511,0): 49, 29, 30, (389,512,0): 45, 26, 28, (389,513,0): 42, 26, 27, (389,514,0): 41, 25, 26, (389,515,0): 40, 24, 25, (389,516,0): 39, 23, 24, (389,517,0): 40, 24, 25, (389,518,0): 40, 24, 25, (389,519,0): 41, 25, 26, (389,520,0): 41, 25, 26, (389,521,0): 41, 25, 26, (389,522,0): 41, 25, 26, (389,523,0): 43, 27, 28, (389,524,0): 47, 31, 32, (389,525,0): 52, 36, 37, (389,526,0): 56, 40, 41, (389,527,0): 58, 44, 43, (389,528,0): 63, 49, 46, (389,529,0): 64, 53, 47, (389,530,0): 68, 55, 49, (389,531,0): 68, 55, 49, (389,532,0): 69, 51, 47, (389,533,0): 66, 48, 44, (389,534,0): 63, 44, 40, (389,535,0): 61, 42, 38, (389,536,0): 66, 47, 43, (389,537,0): 66, 47, 43, (389,538,0): 67, 49, 45, (389,539,0): 66, 51, 46, (389,540,0): 66, 51, 46, (389,541,0): 64, 51, 45, (389,542,0): 61, 50, 44, (389,543,0): 61, 50, 46, (389,544,0): 61, 51, 49, (389,545,0): 62, 54, 52, (389,546,0): 66, 58, 56, (389,547,0): 69, 61, 59, (389,548,0): 72, 64, 62, (389,549,0): 72, 64, 62, (389,550,0): 71, 63, 61, (389,551,0): 71, 63, 61, (389,552,0): 71, 63, 61, (389,553,0): 71, 63, 61, (389,554,0): 69, 61, 59, (389,555,0): 68, 60, 58, (389,556,0): 66, 58, 56, (389,557,0): 65, 57, 55, (389,558,0): 64, 56, 54, (389,559,0): 63, 55, 53, (389,560,0): 68, 60, 58, (389,561,0): 63, 55, 53, (389,562,0): 56, 48, 46, (389,563,0): 51, 46, 43, (389,564,0): 50, 44, 44, (389,565,0): 47, 41, 41, (389,566,0): 41, 35, 39, (389,567,0): 34, 29, 33, (389,568,0): 24, 19, 25, (389,569,0): 21, 19, 24, (389,570,0): 21, 18, 27, (389,571,0): 21, 18, 27, (389,572,0): 23, 20, 31, (389,573,0): 25, 23, 34, (389,574,0): 29, 27, 38, (389,575,0): 30, 30, 42, (389,576,0): 23, 25, 38, (389,577,0): 19, 23, 35, (389,578,0): 17, 19, 32, (389,579,0): 16, 18, 31, (389,580,0): 19, 19, 31, (389,581,0): 19, 19, 31, (389,582,0): 19, 17, 30, (389,583,0): 19, 15, 29, (389,584,0): 21, 15, 27, (389,585,0): 22, 16, 28, (389,586,0): 26, 18, 29, (389,587,0): 31, 23, 34, (389,588,0): 37, 27, 38, (389,589,0): 39, 27, 39, (389,590,0): 38, 26, 36, (389,591,0): 37, 25, 35, (389,592,0): 39, 27, 39, (389,593,0): 39, 27, 39, (389,594,0): 39, 27, 39, (389,595,0): 39, 27, 39, (389,596,0): 39, 27, 39, (389,597,0): 39, 27, 39, (389,598,0): 39, 27, 39, (389,599,0): 39, 27, 39, (390,0,0): 78, 71, 53, (390,1,0): 78, 71, 53, (390,2,0): 78, 71, 53, (390,3,0): 78, 71, 53, (390,4,0): 79, 70, 53, (390,5,0): 78, 69, 52, (390,6,0): 78, 69, 52, (390,7,0): 78, 69, 52, (390,8,0): 80, 68, 52, (390,9,0): 80, 68, 52, (390,10,0): 82, 69, 53, (390,11,0): 82, 69, 53, (390,12,0): 83, 70, 54, (390,13,0): 83, 70, 54, (390,14,0): 85, 69, 54, (390,15,0): 85, 69, 54, (390,16,0): 84, 71, 54, (390,17,0): 85, 72, 55, (390,18,0): 87, 74, 55, (390,19,0): 89, 76, 57, (390,20,0): 91, 78, 59, (390,21,0): 94, 82, 60, (390,22,0): 95, 83, 61, (390,23,0): 96, 84, 62, (390,24,0): 97, 85, 61, (390,25,0): 97, 85, 61, (390,26,0): 97, 85, 61, (390,27,0): 98, 86, 60, (390,28,0): 99, 87, 61, (390,29,0): 100, 88, 62, (390,30,0): 100, 88, 62, (390,31,0): 100, 88, 62, (390,32,0): 104, 88, 65, (390,33,0): 105, 89, 66, (390,34,0): 106, 90, 65, (390,35,0): 107, 91, 66, (390,36,0): 107, 93, 67, (390,37,0): 108, 94, 68, (390,38,0): 109, 95, 68, (390,39,0): 109, 95, 68, (390,40,0): 108, 97, 67, (390,41,0): 108, 97, 67, (390,42,0): 107, 98, 67, (390,43,0): 107, 98, 67, (390,44,0): 107, 98, 65, (390,45,0): 107, 98, 65, (390,46,0): 105, 99, 65, (390,47,0): 105, 99, 65, (390,48,0): 108, 97, 67, (390,49,0): 109, 98, 68, (390,50,0): 110, 99, 69, (390,51,0): 111, 100, 70, (390,52,0): 111, 100, 70, (390,53,0): 111, 100, 70, (390,54,0): 110, 99, 69, (390,55,0): 109, 98, 68, (390,56,0): 103, 92, 62, (390,57,0): 103, 92, 62, (390,58,0): 103, 92, 62, (390,59,0): 100, 89, 59, (390,60,0): 97, 86, 56, (390,61,0): 91, 80, 50, (390,62,0): 87, 76, 46, (390,63,0): 83, 72, 44, (390,64,0): 78, 61, 41, (390,65,0): 76, 59, 41, (390,66,0): 73, 56, 40, (390,67,0): 70, 53, 35, (390,68,0): 67, 52, 33, (390,69,0): 68, 53, 34, (390,70,0): 70, 55, 36, (390,71,0): 71, 56, 37, (390,72,0): 66, 54, 32, (390,73,0): 68, 56, 34, (390,74,0): 71, 60, 38, (390,75,0): 75, 64, 42, (390,76,0): 77, 66, 44, (390,77,0): 78, 67, 45, (390,78,0): 75, 67, 44, (390,79,0): 74, 67, 41, (390,80,0): 78, 66, 40, (390,81,0): 79, 67, 41, (390,82,0): 81, 69, 43, (390,83,0): 83, 71, 45, (390,84,0): 84, 72, 48, (390,85,0): 85, 73, 49, (390,86,0): 84, 72, 48, (390,87,0): 84, 72, 48, (390,88,0): 78, 66, 44, (390,89,0): 76, 64, 42, (390,90,0): 73, 60, 41, (390,91,0): 70, 57, 38, (390,92,0): 67, 54, 35, (390,93,0): 66, 53, 34, (390,94,0): 65, 52, 35, (390,95,0): 64, 51, 34, (390,96,0): 57, 44, 28, (390,97,0): 57, 44, 28, (390,98,0): 56, 43, 27, (390,99,0): 56, 43, 27, (390,100,0): 55, 41, 28, (390,101,0): 55, 41, 28, (390,102,0): 54, 40, 27, (390,103,0): 54, 40, 27, (390,104,0): 54, 40, 29, (390,105,0): 54, 40, 29, (390,106,0): 54, 40, 31, (390,107,0): 54, 40, 31, (390,108,0): 54, 40, 31, (390,109,0): 54, 40, 31, (390,110,0): 54, 39, 32, (390,111,0): 53, 40, 32, (390,112,0): 54, 41, 32, (390,113,0): 51, 41, 31, (390,114,0): 52, 39, 30, (390,115,0): 51, 38, 29, (390,116,0): 52, 39, 30, (390,117,0): 54, 41, 32, (390,118,0): 56, 42, 33, (390,119,0): 58, 44, 35, (390,120,0): 60, 43, 35, (390,121,0): 60, 43, 35, (390,122,0): 62, 45, 37, (390,123,0): 63, 46, 38, (390,124,0): 66, 47, 40, (390,125,0): 67, 48, 41, (390,126,0): 68, 49, 42, (390,127,0): 69, 51, 41, (390,128,0): 73, 53, 42, (390,129,0): 74, 55, 41, (390,130,0): 78, 56, 43, (390,131,0): 80, 58, 45, (390,132,0): 82, 60, 46, (390,133,0): 84, 62, 48, (390,134,0): 86, 63, 49, (390,135,0): 87, 64, 48, (390,136,0): 90, 64, 49, (390,137,0): 92, 66, 49, (390,138,0): 94, 68, 51, (390,139,0): 96, 70, 53, (390,140,0): 98, 71, 54, (390,141,0): 98, 71, 54, (390,142,0): 97, 70, 51, (390,143,0): 97, 70, 51, (390,144,0): 93, 64, 48, (390,145,0): 95, 66, 52, (390,146,0): 98, 69, 55, (390,147,0): 99, 70, 56, (390,148,0): 101, 69, 56, (390,149,0): 104, 72, 59, (390,150,0): 108, 76, 63, (390,151,0): 112, 80, 67, (390,152,0): 116, 84, 73, (390,153,0): 117, 87, 76, (390,154,0): 123, 93, 82, (390,155,0): 130, 100, 89, (390,156,0): 141, 113, 101, (390,157,0): 159, 133, 120, (390,158,0): 181, 155, 142, (390,159,0): 192, 173, 159, (390,160,0): 196, 189, 171, (390,161,0): 194, 195, 177, (390,162,0): 197, 200, 183, (390,163,0): 196, 200, 186, (390,164,0): 192, 195, 186, (390,165,0): 185, 192, 185, (390,166,0): 180, 190, 189, (390,167,0): 177, 191, 192, (390,168,0): 168, 187, 193, (390,169,0): 164, 189, 196, (390,170,0): 161, 189, 200, (390,171,0): 157, 191, 203, (390,172,0): 154, 192, 205, (390,173,0): 151, 193, 207, (390,174,0): 150, 193, 209, (390,175,0): 148, 194, 210, (390,176,0): 147, 192, 211, (390,177,0): 147, 192, 213, (390,178,0): 148, 193, 216, (390,179,0): 148, 194, 217, (390,180,0): 149, 195, 219, (390,181,0): 151, 197, 221, (390,182,0): 151, 198, 224, (390,183,0): 151, 198, 224, (390,184,0): 151, 198, 226, (390,185,0): 149, 198, 228, (390,186,0): 149, 198, 230, (390,187,0): 149, 198, 230, (390,188,0): 148, 198, 231, (390,189,0): 148, 198, 231, (390,190,0): 148, 198, 233, (390,191,0): 148, 198, 231, (390,192,0): 149, 198, 230, (390,193,0): 149, 195, 228, (390,194,0): 148, 194, 227, (390,195,0): 149, 195, 228, (390,196,0): 151, 197, 231, (390,197,0): 151, 197, 231, (390,198,0): 148, 194, 230, (390,199,0): 145, 191, 227, (390,200,0): 145, 191, 227, (390,201,0): 145, 191, 227, (390,202,0): 145, 190, 229, (390,203,0): 145, 190, 229, (390,204,0): 145, 190, 231, (390,205,0): 145, 190, 231, (390,206,0): 145, 190, 231, (390,207,0): 146, 189, 231, (390,208,0): 148, 187, 230, (390,209,0): 147, 186, 229, (390,210,0): 146, 185, 228, (390,211,0): 143, 185, 227, (390,212,0): 143, 185, 227, (390,213,0): 143, 186, 228, (390,214,0): 144, 187, 229, (390,215,0): 145, 188, 230, (390,216,0): 147, 189, 231, (390,217,0): 146, 188, 230, (390,218,0): 148, 187, 230, (390,219,0): 148, 185, 229, (390,220,0): 151, 185, 230, (390,221,0): 153, 186, 231, (390,222,0): 156, 187, 233, (390,223,0): 157, 188, 234, (390,224,0): 152, 185, 230, (390,225,0): 155, 186, 232, (390,226,0): 162, 186, 230, (390,227,0): 171, 189, 229, (390,228,0): 187, 192, 232, (390,229,0): 208, 200, 239, (390,230,0): 232, 212, 249, (390,231,0): 250, 218, 255, (390,232,0): 255, 239, 255, (390,233,0): 255, 237, 255, (390,234,0): 255, 226, 255, (390,235,0): 249, 212, 246, (390,236,0): 225, 198, 231, (390,237,0): 208, 189, 221, (390,238,0): 195, 184, 214, (390,239,0): 184, 187, 218, (390,240,0): 163, 183, 218, (390,241,0): 156, 184, 221, (390,242,0): 153, 183, 221, (390,243,0): 151, 181, 219, (390,244,0): 148, 180, 219, (390,245,0): 148, 180, 219, (390,246,0): 147, 180, 221, (390,247,0): 146, 181, 223, (390,248,0): 149, 183, 228, (390,249,0): 147, 184, 228, (390,250,0): 147, 185, 230, (390,251,0): 147, 185, 230, (390,252,0): 145, 186, 232, (390,253,0): 143, 184, 230, (390,254,0): 141, 183, 231, (390,255,0): 140, 182, 230, (390,256,0): 144, 184, 235, (390,257,0): 143, 183, 235, (390,258,0): 142, 182, 234, (390,259,0): 142, 182, 234, (390,260,0): 142, 183, 237, (390,261,0): 143, 184, 238, (390,262,0): 143, 186, 239, (390,263,0): 144, 187, 242, (390,264,0): 145, 188, 243, (390,265,0): 145, 188, 243, (390,266,0): 143, 188, 245, (390,267,0): 143, 188, 245, (390,268,0): 142, 189, 245, (390,269,0): 141, 187, 246, (390,270,0): 141, 187, 246, (390,271,0): 141, 187, 247, (390,272,0): 140, 185, 250, (390,273,0): 137, 185, 251, (390,274,0): 136, 184, 250, (390,275,0): 135, 184, 250, (390,276,0): 134, 185, 250, (390,277,0): 132, 186, 250, (390,278,0): 133, 187, 251, (390,279,0): 134, 188, 252, (390,280,0): 134, 188, 252, (390,281,0): 135, 189, 253, (390,282,0): 140, 189, 255, (390,283,0): 141, 190, 255, (390,284,0): 142, 190, 255, (390,285,0): 144, 189, 255, (390,286,0): 144, 187, 255, (390,287,0): 144, 187, 255, (390,288,0): 146, 189, 255, (390,289,0): 146, 189, 255, (390,290,0): 149, 188, 255, (390,291,0): 149, 188, 255, (390,292,0): 150, 187, 255, (390,293,0): 152, 187, 255, (390,294,0): 152, 187, 255, (390,295,0): 153, 186, 255, (390,296,0): 153, 186, 255, (390,297,0): 153, 184, 249, (390,298,0): 153, 183, 245, (390,299,0): 156, 181, 237, (390,300,0): 155, 173, 223, (390,301,0): 144, 157, 199, (390,302,0): 127, 135, 172, (390,303,0): 115, 120, 150, (390,304,0): 99, 103, 128, (390,305,0): 93, 96, 115, (390,306,0): 85, 91, 107, (390,307,0): 87, 93, 107, (390,308,0): 89, 95, 109, (390,309,0): 91, 97, 111, (390,310,0): 101, 104, 119, (390,311,0): 111, 112, 130, (390,312,0): 115, 114, 132, (390,313,0): 114, 111, 130, (390,314,0): 113, 105, 126, (390,315,0): 109, 98, 115, (390,316,0): 101, 89, 103, (390,317,0): 93, 77, 87, (390,318,0): 85, 68, 74, (390,319,0): 82, 63, 67, (390,320,0): 73, 52, 59, (390,321,0): 70, 47, 57, (390,322,0): 66, 45, 54, (390,323,0): 66, 45, 54, (390,324,0): 69, 46, 56, (390,325,0): 70, 47, 57, (390,326,0): 71, 45, 56, (390,327,0): 69, 43, 52, (390,328,0): 78, 48, 56, (390,329,0): 79, 48, 53, (390,330,0): 83, 48, 52, (390,331,0): 88, 49, 50, (390,332,0): 92, 51, 49, (390,333,0): 98, 54, 51, (390,334,0): 104, 56, 52, (390,335,0): 106, 57, 52, (390,336,0): 108, 55, 51, (390,337,0): 102, 47, 44, (390,338,0): 89, 38, 35, (390,339,0): 77, 32, 29, (390,340,0): 70, 28, 29, (390,341,0): 64, 28, 28, (390,342,0): 59, 27, 30, (390,343,0): 55, 26, 30, (390,344,0): 51, 26, 30, (390,345,0): 50, 25, 31, (390,346,0): 49, 24, 30, (390,347,0): 48, 23, 29, (390,348,0): 49, 22, 29, (390,349,0): 52, 22, 30, (390,350,0): 55, 24, 30, (390,351,0): 55, 24, 30, (390,352,0): 52, 23, 27, (390,353,0): 50, 24, 27, (390,354,0): 50, 24, 27, (390,355,0): 51, 25, 28, (390,356,0): 54, 25, 29, (390,357,0): 54, 25, 29, (390,358,0): 55, 24, 29, (390,359,0): 56, 25, 30, (390,360,0): 55, 24, 29, (390,361,0): 55, 24, 29, (390,362,0): 57, 25, 30, (390,363,0): 57, 25, 30, (390,364,0): 60, 25, 31, (390,365,0): 60, 25, 31, (390,366,0): 60, 25, 31, (390,367,0): 62, 25, 32, (390,368,0): 62, 23, 28, (390,369,0): 62, 23, 28, (390,370,0): 62, 23, 28, (390,371,0): 62, 23, 28, (390,372,0): 62, 22, 30, (390,373,0): 60, 23, 30, (390,374,0): 59, 24, 31, (390,375,0): 57, 24, 31, (390,376,0): 54, 21, 28, (390,377,0): 53, 22, 28, (390,378,0): 51, 21, 29, (390,379,0): 48, 21, 28, (390,380,0): 47, 20, 29, (390,381,0): 45, 19, 28, (390,382,0): 44, 18, 27, (390,383,0): 42, 19, 27, (390,384,0): 43, 22, 31, (390,385,0): 41, 21, 32, (390,386,0): 40, 20, 31, (390,387,0): 38, 18, 29, (390,388,0): 38, 18, 27, (390,389,0): 38, 18, 27, (390,390,0): 39, 20, 26, (390,391,0): 39, 20, 26, (390,392,0): 40, 21, 27, (390,393,0): 42, 23, 29, (390,394,0): 45, 26, 30, (390,395,0): 48, 29, 33, (390,396,0): 48, 29, 31, (390,397,0): 48, 29, 31, (390,398,0): 46, 27, 29, (390,399,0): 44, 25, 27, (390,400,0): 43, 22, 27, (390,401,0): 43, 22, 29, (390,402,0): 43, 22, 29, (390,403,0): 43, 22, 29, (390,404,0): 43, 22, 29, (390,405,0): 43, 22, 29, (390,406,0): 43, 22, 29, (390,407,0): 43, 22, 29, (390,408,0): 45, 24, 31, (390,409,0): 46, 25, 32, (390,410,0): 47, 26, 33, (390,411,0): 48, 27, 34, (390,412,0): 48, 27, 34, (390,413,0): 46, 25, 32, (390,414,0): 45, 24, 31, (390,415,0): 43, 22, 27, (390,416,0): 45, 25, 27, (390,417,0): 47, 25, 28, (390,418,0): 48, 26, 29, (390,419,0): 50, 28, 31, (390,420,0): 52, 30, 33, (390,421,0): 54, 32, 35, (390,422,0): 54, 34, 36, (390,423,0): 54, 35, 37, (390,424,0): 54, 38, 39, (390,425,0): 56, 44, 44, (390,426,0): 60, 52, 50, (390,427,0): 64, 60, 57, (390,428,0): 69, 68, 64, (390,429,0): 75, 76, 71, (390,430,0): 78, 83, 77, (390,431,0): 83, 88, 82, (390,432,0): 91, 91, 89, (390,433,0): 93, 93, 93, (390,434,0): 89, 89, 89, (390,435,0): 78, 80, 79, (390,436,0): 72, 74, 73, (390,437,0): 69, 73, 72, (390,438,0): 65, 69, 68, (390,439,0): 59, 63, 62, (390,440,0): 54, 55, 57, (390,441,0): 50, 50, 52, (390,442,0): 45, 43, 46, (390,443,0): 44, 38, 42, (390,444,0): 45, 34, 42, (390,445,0): 45, 32, 41, (390,446,0): 44, 27, 37, (390,447,0): 41, 24, 32, (390,448,0): 40, 25, 32, (390,449,0): 38, 26, 30, (390,450,0): 41, 26, 31, (390,451,0): 41, 26, 29, (390,452,0): 44, 30, 30, (390,453,0): 50, 36, 36, (390,454,0): 61, 45, 45, (390,455,0): 69, 54, 51, (390,456,0): 69, 54, 49, (390,457,0): 68, 51, 44, (390,458,0): 66, 49, 42, (390,459,0): 67, 50, 42, (390,460,0): 70, 52, 42, (390,461,0): 71, 53, 41, (390,462,0): 69, 51, 39, (390,463,0): 64, 50, 37, (390,464,0): 69, 66, 51, (390,465,0): 76, 79, 62, (390,466,0): 83, 87, 70, (390,467,0): 82, 90, 69, (390,468,0): 83, 95, 73, (390,469,0): 94, 106, 82, (390,470,0): 107, 117, 93, (390,471,0): 113, 121, 97, (390,472,0): 121, 127, 101, (390,473,0): 121, 125, 98, (390,474,0): 118, 121, 94, (390,475,0): 112, 115, 86, (390,476,0): 106, 111, 81, (390,477,0): 106, 113, 80, (390,478,0): 108, 119, 85, (390,479,0): 111, 125, 89, (390,480,0): 107, 122, 81, (390,481,0): 100, 115, 74, (390,482,0): 91, 106, 65, (390,483,0): 88, 100, 60, (390,484,0): 90, 101, 61, (390,485,0): 94, 102, 63, (390,486,0): 97, 103, 65, (390,487,0): 99, 103, 66, (390,488,0): 103, 104, 70, (390,489,0): 105, 105, 71, (390,490,0): 107, 103, 74, (390,491,0): 105, 100, 71, (390,492,0): 100, 93, 67, (390,493,0): 92, 85, 59, (390,494,0): 85, 74, 52, (390,495,0): 81, 68, 51, (390,496,0): 84, 66, 56, (390,497,0): 81, 62, 55, (390,498,0): 75, 56, 50, (390,499,0): 69, 50, 44, (390,500,0): 64, 45, 39, (390,501,0): 61, 42, 36, (390,502,0): 60, 41, 37, (390,503,0): 60, 41, 37, (390,504,0): 61, 41, 40, (390,505,0): 58, 38, 37, (390,506,0): 54, 34, 33, (390,507,0): 50, 30, 29, (390,508,0): 48, 28, 29, (390,509,0): 48, 28, 29, (390,510,0): 49, 29, 30, (390,511,0): 49, 29, 30, (390,512,0): 46, 27, 29, (390,513,0): 43, 27, 28, (390,514,0): 42, 26, 27, (390,515,0): 40, 24, 25, (390,516,0): 40, 24, 25, (390,517,0): 40, 24, 25, (390,518,0): 40, 24, 25, (390,519,0): 41, 25, 26, (390,520,0): 42, 26, 27, (390,521,0): 42, 26, 27, (390,522,0): 42, 26, 27, (390,523,0): 43, 27, 28, (390,524,0): 45, 29, 30, (390,525,0): 50, 34, 35, (390,526,0): 54, 38, 39, (390,527,0): 55, 41, 40, (390,528,0): 63, 49, 46, (390,529,0): 61, 50, 46, (390,530,0): 63, 49, 46, (390,531,0): 63, 49, 46, (390,532,0): 64, 46, 44, (390,533,0): 62, 44, 42, (390,534,0): 60, 40, 39, (390,535,0): 58, 38, 37, (390,536,0): 62, 42, 41, (390,537,0): 63, 43, 42, (390,538,0): 64, 46, 44, (390,539,0): 63, 48, 45, (390,540,0): 64, 49, 46, (390,541,0): 63, 49, 46, (390,542,0): 61, 50, 46, (390,543,0): 60, 49, 45, (390,544,0): 60, 50, 48, (390,545,0): 62, 52, 51, (390,546,0): 66, 56, 55, (390,547,0): 70, 60, 59, (390,548,0): 72, 62, 61, (390,549,0): 73, 63, 62, (390,550,0): 72, 62, 61, (390,551,0): 72, 62, 61, (390,552,0): 71, 61, 60, (390,553,0): 70, 60, 59, (390,554,0): 69, 59, 58, (390,555,0): 68, 58, 57, (390,556,0): 66, 56, 55, (390,557,0): 65, 55, 54, (390,558,0): 63, 53, 52, (390,559,0): 62, 54, 52, (390,560,0): 67, 59, 57, (390,561,0): 58, 53, 50, (390,562,0): 51, 46, 43, (390,563,0): 49, 44, 41, (390,564,0): 49, 43, 43, (390,565,0): 45, 41, 40, (390,566,0): 38, 33, 37, (390,567,0): 32, 27, 31, (390,568,0): 25, 20, 26, (390,569,0): 22, 20, 25, (390,570,0): 20, 17, 26, (390,571,0): 19, 18, 26, (390,572,0): 20, 18, 29, (390,573,0): 23, 21, 32, (390,574,0): 27, 25, 36, (390,575,0): 28, 28, 40, (390,576,0): 23, 25, 38, (390,577,0): 19, 22, 37, (390,578,0): 16, 18, 31, (390,579,0): 15, 17, 30, (390,580,0): 19, 18, 32, (390,581,0): 19, 18, 32, (390,582,0): 19, 17, 30, (390,583,0): 18, 14, 28, (390,584,0): 19, 13, 25, (390,585,0): 23, 17, 29, (390,586,0): 29, 21, 34, (390,587,0): 33, 25, 38, (390,588,0): 37, 27, 38, (390,589,0): 37, 27, 38, (390,590,0): 38, 26, 38, (390,591,0): 39, 27, 37, (390,592,0): 39, 29, 38, (390,593,0): 39, 29, 38, (390,594,0): 39, 29, 38, (390,595,0): 40, 30, 39, (390,596,0): 40, 30, 39, (390,597,0): 40, 30, 39, (390,598,0): 40, 30, 39, (390,599,0): 40, 30, 39, (391,0,0): 79, 72, 54, (391,1,0): 79, 72, 54, (391,2,0): 78, 71, 53, (391,3,0): 78, 71, 53, (391,4,0): 79, 70, 53, (391,5,0): 78, 69, 52, (391,6,0): 78, 69, 52, (391,7,0): 78, 69, 52, (391,8,0): 80, 68, 52, (391,9,0): 80, 68, 52, (391,10,0): 82, 69, 53, (391,11,0): 83, 70, 54, (391,12,0): 83, 70, 54, (391,13,0): 83, 70, 54, (391,14,0): 84, 68, 53, (391,15,0): 84, 68, 53, (391,16,0): 83, 70, 53, (391,17,0): 84, 71, 54, (391,18,0): 86, 73, 54, (391,19,0): 88, 75, 56, (391,20,0): 91, 78, 59, (391,21,0): 93, 80, 61, (391,22,0): 95, 83, 61, (391,23,0): 96, 84, 62, (391,24,0): 96, 84, 62, (391,25,0): 97, 85, 61, (391,26,0): 97, 85, 61, (391,27,0): 98, 86, 62, (391,28,0): 99, 87, 61, (391,29,0): 100, 88, 62, (391,30,0): 100, 88, 62, (391,31,0): 101, 89, 63, (391,32,0): 105, 89, 66, (391,33,0): 105, 89, 66, (391,34,0): 106, 90, 65, (391,35,0): 107, 91, 66, (391,36,0): 107, 93, 67, (391,37,0): 108, 94, 68, (391,38,0): 109, 95, 68, (391,39,0): 109, 95, 68, (391,40,0): 109, 98, 68, (391,41,0): 109, 98, 68, (391,42,0): 108, 99, 68, (391,43,0): 108, 99, 68, (391,44,0): 108, 99, 66, (391,45,0): 108, 99, 66, (391,46,0): 106, 100, 66, (391,47,0): 106, 100, 66, (391,48,0): 108, 97, 67, (391,49,0): 109, 98, 68, (391,50,0): 110, 99, 69, (391,51,0): 111, 100, 70, (391,52,0): 112, 101, 71, (391,53,0): 111, 100, 70, (391,54,0): 110, 99, 69, (391,55,0): 110, 99, 69, (391,56,0): 103, 92, 62, (391,57,0): 104, 93, 63, (391,58,0): 104, 93, 63, (391,59,0): 102, 91, 61, (391,60,0): 99, 88, 58, (391,61,0): 94, 83, 53, (391,62,0): 90, 79, 49, (391,63,0): 87, 76, 48, (391,64,0): 80, 64, 41, (391,65,0): 77, 60, 40, (391,66,0): 73, 56, 38, (391,67,0): 70, 53, 33, (391,68,0): 68, 53, 34, (391,69,0): 68, 53, 32, (391,70,0): 70, 55, 36, (391,71,0): 71, 56, 35, (391,72,0): 65, 53, 31, (391,73,0): 68, 56, 34, (391,74,0): 72, 61, 39, (391,75,0): 76, 65, 43, (391,76,0): 78, 67, 45, (391,77,0): 78, 67, 45, (391,78,0): 75, 67, 44, (391,79,0): 74, 67, 41, (391,80,0): 77, 65, 41, (391,81,0): 79, 67, 41, (391,82,0): 81, 69, 43, (391,83,0): 83, 71, 45, (391,84,0): 84, 72, 48, (391,85,0): 85, 73, 49, (391,86,0): 85, 73, 49, (391,87,0): 84, 72, 48, (391,88,0): 78, 66, 44, (391,89,0): 76, 64, 42, (391,90,0): 73, 60, 41, (391,91,0): 70, 57, 38, (391,92,0): 67, 54, 35, (391,93,0): 66, 53, 34, (391,94,0): 65, 52, 35, (391,95,0): 64, 51, 34, (391,96,0): 57, 44, 28, (391,97,0): 56, 43, 27, (391,98,0): 56, 43, 27, (391,99,0): 55, 42, 26, (391,100,0): 55, 41, 28, (391,101,0): 54, 40, 27, (391,102,0): 54, 40, 27, (391,103,0): 54, 40, 27, (391,104,0): 54, 40, 29, (391,105,0): 54, 40, 29, (391,106,0): 54, 40, 31, (391,107,0): 54, 40, 31, (391,108,0): 54, 40, 31, (391,109,0): 54, 40, 31, (391,110,0): 54, 39, 32, (391,111,0): 53, 40, 32, (391,112,0): 53, 40, 31, (391,113,0): 51, 41, 31, (391,114,0): 51, 38, 29, (391,115,0): 51, 38, 29, (391,116,0): 51, 38, 29, (391,117,0): 53, 40, 31, (391,118,0): 56, 42, 33, (391,119,0): 57, 43, 34, (391,120,0): 59, 42, 34, (391,121,0): 60, 43, 35, (391,122,0): 61, 44, 36, (391,123,0): 63, 46, 38, (391,124,0): 65, 46, 39, (391,125,0): 67, 48, 41, (391,126,0): 68, 49, 42, (391,127,0): 69, 51, 41, (391,128,0): 72, 52, 41, (391,129,0): 74, 55, 41, (391,130,0): 78, 56, 43, (391,131,0): 80, 58, 45, (391,132,0): 82, 60, 47, (391,133,0): 84, 62, 48, (391,134,0): 86, 63, 49, (391,135,0): 86, 63, 49, (391,136,0): 89, 63, 48, (391,137,0): 91, 65, 50, (391,138,0): 93, 67, 52, (391,139,0): 96, 70, 53, (391,140,0): 98, 71, 54, (391,141,0): 98, 71, 54, (391,142,0): 97, 70, 51, (391,143,0): 96, 69, 52, (391,144,0): 101, 72, 58, (391,145,0): 103, 74, 60, (391,146,0): 104, 75, 61, (391,147,0): 103, 74, 60, (391,148,0): 102, 73, 59, (391,149,0): 103, 71, 58, (391,150,0): 106, 74, 61, (391,151,0): 108, 76, 63, (391,152,0): 107, 75, 64, (391,153,0): 114, 82, 71, (391,154,0): 122, 90, 79, (391,155,0): 128, 96, 85, (391,156,0): 135, 103, 92, (391,157,0): 148, 116, 105, (391,158,0): 164, 132, 121, (391,159,0): 173, 147, 134, (391,160,0): 190, 174, 158, (391,161,0): 193, 184, 167, (391,162,0): 201, 194, 178, (391,163,0): 204, 198, 184, (391,164,0): 200, 196, 185, (391,165,0): 192, 192, 184, (391,166,0): 186, 188, 185, (391,167,0): 182, 188, 188, (391,168,0): 172, 186, 189, (391,169,0): 168, 187, 193, (391,170,0): 164, 188, 198, (391,171,0): 160, 190, 201, (391,172,0): 155, 191, 203, (391,173,0): 153, 192, 207, (391,174,0): 150, 194, 207, (391,175,0): 148, 194, 209, (391,176,0): 146, 191, 210, (391,177,0): 147, 192, 213, (391,178,0): 150, 192, 216, (391,179,0): 149, 194, 217, (391,180,0): 150, 194, 219, (391,181,0): 151, 197, 221, (391,182,0): 152, 198, 224, (391,183,0): 152, 198, 224, (391,184,0): 152, 197, 226, (391,185,0): 151, 198, 228, (391,186,0): 151, 197, 230, (391,187,0): 149, 198, 230, (391,188,0): 149, 198, 231, (391,189,0): 149, 198, 231, (391,190,0): 149, 197, 233, (391,191,0): 149, 198, 231, (391,192,0): 151, 197, 230, (391,193,0): 148, 194, 227, (391,194,0): 147, 193, 226, (391,195,0): 149, 195, 228, (391,196,0): 152, 198, 232, (391,197,0): 152, 198, 232, (391,198,0): 148, 194, 230, (391,199,0): 145, 191, 227, (391,200,0): 145, 191, 227, (391,201,0): 145, 191, 227, (391,202,0): 145, 190, 229, (391,203,0): 145, 190, 229, (391,204,0): 145, 190, 231, (391,205,0): 145, 190, 231, (391,206,0): 145, 190, 231, (391,207,0): 146, 189, 231, (391,208,0): 147, 186, 229, (391,209,0): 147, 184, 228, (391,210,0): 145, 184, 227, (391,211,0): 145, 184, 227, (391,212,0): 143, 185, 227, (391,213,0): 143, 185, 227, (391,214,0): 143, 186, 228, (391,215,0): 144, 187, 229, (391,216,0): 148, 190, 232, (391,217,0): 147, 189, 231, (391,218,0): 149, 186, 230, (391,219,0): 149, 186, 230, (391,220,0): 153, 186, 231, (391,221,0): 154, 187, 232, (391,222,0): 159, 187, 234, (391,223,0): 158, 189, 235, (391,224,0): 152, 184, 231, (391,225,0): 155, 186, 233, (391,226,0): 162, 186, 232, (391,227,0): 172, 187, 230, (391,228,0): 186, 189, 230, (391,229,0): 206, 198, 237, (391,230,0): 231, 209, 247, (391,231,0): 249, 217, 254, (391,232,0): 255, 238, 255, (391,233,0): 255, 233, 255, (391,234,0): 255, 223, 255, (391,235,0): 248, 210, 247, (391,236,0): 226, 199, 234, (391,237,0): 211, 191, 226, (391,238,0): 200, 189, 223, (391,239,0): 190, 193, 226, (391,240,0): 162, 182, 217, (391,241,0): 155, 183, 220, (391,242,0): 152, 182, 220, (391,243,0): 150, 180, 218, (391,244,0): 147, 179, 218, (391,245,0): 147, 179, 218, (391,246,0): 146, 179, 220, (391,247,0): 146, 181, 223, (391,248,0): 149, 183, 228, (391,249,0): 147, 184, 228, (391,250,0): 147, 185, 230, (391,251,0): 147, 185, 230, (391,252,0): 145, 186, 232, (391,253,0): 143, 184, 230, (391,254,0): 141, 183, 231, (391,255,0): 140, 182, 232, (391,256,0): 145, 185, 237, (391,257,0): 144, 184, 236, (391,258,0): 143, 182, 237, (391,259,0): 143, 182, 237, (391,260,0): 143, 184, 238, (391,261,0): 144, 185, 239, (391,262,0): 144, 187, 242, (391,263,0): 145, 188, 243, (391,264,0): 146, 189, 244, (391,265,0): 146, 188, 246, (391,266,0): 144, 189, 246, (391,267,0): 144, 189, 248, (391,268,0): 143, 189, 248, (391,269,0): 142, 188, 247, (391,270,0): 142, 188, 247, (391,271,0): 142, 188, 248, (391,272,0): 138, 186, 250, (391,273,0): 136, 185, 251, (391,274,0): 135, 184, 250, (391,275,0): 133, 184, 249, (391,276,0): 131, 185, 249, (391,277,0): 132, 186, 250, (391,278,0): 133, 187, 251, (391,279,0): 134, 188, 252, (391,280,0): 133, 187, 251, (391,281,0): 136, 187, 252, (391,282,0): 139, 188, 254, (391,283,0): 141, 189, 255, (391,284,0): 143, 188, 255, (391,285,0): 144, 187, 255, (391,286,0): 143, 186, 254, (391,287,0): 143, 186, 254, (391,288,0): 146, 189, 255, (391,289,0): 148, 188, 255, (391,290,0): 149, 188, 255, (391,291,0): 150, 187, 255, (391,292,0): 152, 187, 255, (391,293,0): 153, 186, 255, (391,294,0): 153, 186, 255, (391,295,0): 153, 186, 255, (391,296,0): 153, 186, 253, (391,297,0): 154, 185, 250, (391,298,0): 153, 183, 243, (391,299,0): 156, 181, 237, (391,300,0): 154, 174, 224, (391,301,0): 145, 160, 203, (391,302,0): 131, 140, 179, (391,303,0): 120, 126, 158, (391,304,0): 103, 107, 132, (391,305,0): 95, 97, 118, (391,306,0): 86, 91, 110, (391,307,0): 87, 93, 109, (391,308,0): 90, 96, 112, (391,309,0): 93, 99, 113, (391,310,0): 104, 107, 124, (391,311,0): 114, 117, 136, (391,312,0): 116, 117, 137, (391,313,0): 117, 114, 135, (391,314,0): 116, 108, 131, (391,315,0): 110, 101, 120, (391,316,0): 104, 91, 108, (391,317,0): 94, 81, 91, (391,318,0): 87, 72, 79, (391,319,0): 84, 65, 71, (391,320,0): 73, 52, 59, (391,321,0): 71, 48, 58, (391,322,0): 66, 45, 54, (391,323,0): 66, 45, 54, (391,324,0): 69, 46, 56, (391,325,0): 71, 48, 58, (391,326,0): 71, 45, 54, (391,327,0): 70, 43, 50, (391,328,0): 79, 48, 54, (391,329,0): 80, 48, 53, (391,330,0): 86, 47, 52, (391,331,0): 89, 49, 50, (391,332,0): 94, 50, 49, (391,333,0): 99, 54, 49, (391,334,0): 105, 56, 52, (391,335,0): 108, 57, 53, (391,336,0): 105, 51, 49, (391,337,0): 95, 44, 41, (391,338,0): 82, 34, 32, (391,339,0): 72, 28, 27, (391,340,0): 66, 26, 27, (391,341,0): 61, 27, 28, (391,342,0): 56, 25, 30, (391,343,0): 52, 25, 30, (391,344,0): 48, 25, 31, (391,345,0): 47, 24, 30, (391,346,0): 48, 23, 29, (391,347,0): 48, 23, 29, (391,348,0): 49, 22, 29, (391,349,0): 50, 23, 30, (391,350,0): 54, 23, 29, (391,351,0): 54, 25, 30, (391,352,0): 49, 23, 26, (391,353,0): 49, 23, 26, (391,354,0): 50, 24, 27, (391,355,0): 50, 24, 27, (391,356,0): 53, 24, 28, (391,357,0): 53, 24, 28, (391,358,0): 54, 23, 28, (391,359,0): 55, 24, 29, (391,360,0): 55, 24, 29, (391,361,0): 55, 24, 29, (391,362,0): 56, 24, 29, (391,363,0): 57, 25, 30, (391,364,0): 59, 24, 30, (391,365,0): 60, 25, 31, (391,366,0): 60, 25, 31, (391,367,0): 61, 26, 32, (391,368,0): 59, 23, 27, (391,369,0): 61, 22, 27, (391,370,0): 61, 22, 27, (391,371,0): 59, 23, 27, (391,372,0): 59, 22, 29, (391,373,0): 58, 23, 29, (391,374,0): 56, 23, 30, (391,375,0): 55, 24, 30, (391,376,0): 53, 22, 28, (391,377,0): 52, 23, 28, (391,378,0): 49, 22, 29, (391,379,0): 47, 22, 28, (391,380,0): 46, 20, 29, (391,381,0): 45, 19, 28, (391,382,0): 44, 18, 27, (391,383,0): 41, 18, 28, (391,384,0): 42, 22, 33, (391,385,0): 41, 21, 32, (391,386,0): 39, 19, 30, (391,387,0): 38, 18, 29, (391,388,0): 38, 18, 27, (391,389,0): 38, 18, 27, (391,390,0): 38, 19, 25, (391,391,0): 39, 20, 26, (391,392,0): 38, 19, 25, (391,393,0): 41, 22, 28, (391,394,0): 44, 25, 29, (391,395,0): 48, 29, 33, (391,396,0): 49, 30, 32, (391,397,0): 48, 29, 31, (391,398,0): 47, 28, 30, (391,399,0): 45, 26, 28, (391,400,0): 43, 22, 29, (391,401,0): 43, 22, 29, (391,402,0): 43, 22, 29, (391,403,0): 43, 22, 29, (391,404,0): 43, 22, 29, (391,405,0): 43, 22, 29, (391,406,0): 43, 22, 29, (391,407,0): 43, 22, 29, (391,408,0): 46, 25, 32, (391,409,0): 47, 26, 33, (391,410,0): 48, 27, 34, (391,411,0): 48, 27, 34, (391,412,0): 48, 27, 34, (391,413,0): 46, 25, 32, (391,414,0): 43, 22, 29, (391,415,0): 42, 21, 28, (391,416,0): 45, 22, 28, (391,417,0): 46, 24, 27, (391,418,0): 49, 24, 28, (391,419,0): 51, 26, 30, (391,420,0): 51, 29, 32, (391,421,0): 53, 31, 34, (391,422,0): 53, 33, 35, (391,423,0): 53, 34, 36, (391,424,0): 51, 35, 36, (391,425,0): 53, 41, 41, (391,426,0): 58, 50, 48, (391,427,0): 61, 57, 54, (391,428,0): 65, 64, 60, (391,429,0): 71, 73, 68, (391,430,0): 79, 84, 78, (391,431,0): 86, 91, 87, (391,432,0): 86, 87, 89, (391,433,0): 91, 90, 95, (391,434,0): 87, 88, 92, (391,435,0): 79, 80, 82, (391,436,0): 73, 77, 80, (391,437,0): 75, 79, 80, (391,438,0): 72, 76, 79, (391,439,0): 66, 70, 73, (391,440,0): 55, 56, 60, (391,441,0): 50, 49, 54, (391,442,0): 45, 40, 46, (391,443,0): 41, 34, 41, (391,444,0): 40, 30, 38, (391,445,0): 39, 26, 35, (391,446,0): 37, 21, 31, (391,447,0): 33, 17, 27, (391,448,0): 41, 28, 35, (391,449,0): 41, 28, 35, (391,450,0): 40, 28, 32, (391,451,0): 39, 27, 29, (391,452,0): 43, 28, 31, (391,453,0): 49, 35, 35, (391,454,0): 59, 43, 43, (391,455,0): 66, 51, 48, (391,456,0): 71, 53, 49, (391,457,0): 69, 52, 44, (391,458,0): 69, 50, 43, (391,459,0): 71, 53, 43, (391,460,0): 75, 55, 44, (391,461,0): 75, 56, 42, (391,462,0): 71, 52, 38, (391,463,0): 65, 49, 34, (391,464,0): 72, 65, 49, (391,465,0): 80, 79, 61, (391,466,0): 86, 87, 69, (391,467,0): 83, 88, 66, (391,468,0): 83, 91, 68, (391,469,0): 93, 103, 78, (391,470,0): 104, 114, 89, (391,471,0): 111, 120, 93, (391,472,0): 120, 124, 97, (391,473,0): 119, 124, 94, (391,474,0): 117, 120, 91, (391,475,0): 111, 116, 84, (391,476,0): 107, 114, 81, (391,477,0): 107, 117, 82, (391,478,0): 113, 125, 89, (391,479,0): 118, 133, 94, (391,480,0): 112, 129, 85, (391,481,0): 104, 121, 76, (391,482,0): 94, 110, 65, (391,483,0): 88, 103, 60, (391,484,0): 91, 102, 60, (391,485,0): 93, 104, 62, (391,486,0): 98, 104, 66, (391,487,0): 99, 105, 69, (391,488,0): 105, 106, 72, (391,489,0): 105, 106, 74, (391,490,0): 108, 104, 75, (391,491,0): 106, 102, 73, (391,492,0): 102, 95, 69, (391,493,0): 93, 86, 60, (391,494,0): 86, 75, 53, (391,495,0): 82, 69, 50, (391,496,0): 85, 68, 58, (391,497,0): 82, 63, 56, (391,498,0): 76, 57, 51, (391,499,0): 69, 50, 44, (391,500,0): 64, 45, 39, (391,501,0): 61, 42, 36, (391,502,0): 60, 41, 37, (391,503,0): 60, 41, 37, (391,504,0): 61, 41, 40, (391,505,0): 58, 38, 37, (391,506,0): 54, 34, 33, (391,507,0): 50, 30, 29, (391,508,0): 48, 28, 29, (391,509,0): 47, 27, 28, (391,510,0): 49, 29, 30, (391,511,0): 49, 31, 31, (391,512,0): 45, 29, 30, (391,513,0): 44, 28, 29, (391,514,0): 42, 26, 27, (391,515,0): 40, 24, 25, (391,516,0): 40, 24, 25, (391,517,0): 40, 24, 25, (391,518,0): 40, 24, 25, (391,519,0): 41, 25, 26, (391,520,0): 43, 27, 28, (391,521,0): 43, 27, 28, (391,522,0): 42, 26, 27, (391,523,0): 43, 27, 28, (391,524,0): 45, 29, 30, (391,525,0): 48, 32, 33, (391,526,0): 52, 36, 37, (391,527,0): 53, 39, 39, (391,528,0): 63, 49, 48, (391,529,0): 60, 49, 45, (391,530,0): 61, 47, 46, (391,531,0): 59, 45, 42, (391,532,0): 61, 43, 43, (391,533,0): 59, 41, 39, (391,534,0): 57, 37, 38, (391,535,0): 55, 35, 34, (391,536,0): 60, 40, 41, (391,537,0): 61, 41, 40, (391,538,0): 62, 44, 44, (391,539,0): 62, 47, 44, (391,540,0): 63, 47, 47, (391,541,0): 63, 49, 46, (391,542,0): 61, 50, 48, (391,543,0): 61, 50, 48, (391,544,0): 59, 49, 48, (391,545,0): 61, 51, 50, (391,546,0): 65, 55, 54, (391,547,0): 69, 59, 58, (391,548,0): 72, 62, 61, (391,549,0): 72, 62, 61, (391,550,0): 72, 62, 61, (391,551,0): 71, 61, 60, (391,552,0): 70, 60, 59, (391,553,0): 70, 60, 59, (391,554,0): 69, 59, 58, (391,555,0): 67, 57, 56, (391,556,0): 65, 55, 54, (391,557,0): 64, 54, 53, (391,558,0): 63, 53, 52, (391,559,0): 61, 53, 51, (391,560,0): 65, 57, 55, (391,561,0): 56, 51, 48, (391,562,0): 49, 44, 41, (391,563,0): 46, 41, 38, (391,564,0): 45, 41, 40, (391,565,0): 43, 39, 38, (391,566,0): 36, 31, 35, (391,567,0): 29, 24, 28, (391,568,0): 23, 21, 26, (391,569,0): 22, 20, 25, (391,570,0): 19, 18, 26, (391,571,0): 18, 17, 25, (391,572,0): 19, 17, 28, (391,573,0): 22, 20, 31, (391,574,0): 25, 25, 35, (391,575,0): 27, 27, 39, (391,576,0): 23, 25, 38, (391,577,0): 18, 21, 36, (391,578,0): 16, 18, 31, (391,579,0): 15, 17, 30, (391,580,0): 19, 18, 32, (391,581,0): 20, 20, 32, (391,582,0): 19, 17, 30, (391,583,0): 17, 13, 27, (391,584,0): 18, 12, 24, (391,585,0): 24, 18, 30, (391,586,0): 32, 24, 37, (391,587,0): 35, 27, 38, (391,588,0): 37, 27, 38, (391,589,0): 36, 26, 37, (391,590,0): 38, 26, 38, (391,591,0): 40, 28, 38, (391,592,0): 40, 30, 38, (391,593,0): 40, 31, 36, (391,594,0): 40, 31, 36, (391,595,0): 41, 32, 37, (391,596,0): 41, 32, 37, (391,597,0): 41, 32, 37, (391,598,0): 41, 32, 37, (391,599,0): 41, 32, 37, (392,0,0): 79, 74, 55, (392,1,0): 79, 74, 55, (392,2,0): 80, 73, 55, (392,3,0): 81, 74, 56, (392,4,0): 81, 74, 56, (392,5,0): 82, 75, 57, (392,6,0): 83, 74, 57, (392,7,0): 83, 74, 57, (392,8,0): 85, 73, 57, (392,9,0): 84, 72, 56, (392,10,0): 84, 72, 56, (392,11,0): 83, 71, 55, (392,12,0): 83, 70, 54, (392,13,0): 82, 69, 53, (392,14,0): 82, 69, 53, (392,15,0): 81, 68, 52, (392,16,0): 84, 71, 54, (392,17,0): 85, 72, 55, (392,18,0): 86, 73, 56, (392,19,0): 87, 74, 57, (392,20,0): 89, 76, 57, (392,21,0): 90, 77, 58, (392,22,0): 91, 78, 59, (392,23,0): 92, 80, 58, (392,24,0): 93, 81, 59, (392,25,0): 93, 81, 59, (392,26,0): 94, 82, 58, (392,27,0): 96, 84, 60, (392,28,0): 98, 86, 62, (392,29,0): 99, 87, 63, (392,30,0): 100, 88, 62, (392,31,0): 101, 89, 63, (392,32,0): 103, 87, 64, (392,33,0): 104, 88, 65, (392,34,0): 105, 89, 64, (392,35,0): 107, 91, 66, (392,36,0): 107, 93, 67, (392,37,0): 109, 95, 69, (392,38,0): 110, 96, 69, (392,39,0): 111, 97, 70, (392,40,0): 111, 100, 70, (392,41,0): 111, 100, 70, (392,42,0): 110, 101, 70, (392,43,0): 111, 102, 71, (392,44,0): 111, 102, 69, (392,45,0): 112, 103, 70, (392,46,0): 110, 104, 70, (392,47,0): 110, 104, 70, (392,48,0): 110, 99, 67, (392,49,0): 110, 99, 67, (392,50,0): 110, 99, 67, (392,51,0): 111, 100, 68, (392,52,0): 111, 100, 68, (392,53,0): 112, 101, 69, (392,54,0): 112, 101, 69, (392,55,0): 112, 101, 69, (392,56,0): 108, 97, 65, (392,57,0): 107, 96, 64, (392,58,0): 105, 94, 62, (392,59,0): 106, 95, 63, (392,60,0): 107, 96, 64, (392,61,0): 106, 95, 63, (392,62,0): 103, 92, 60, (392,63,0): 99, 88, 58, (392,64,0): 88, 72, 47, (392,65,0): 83, 67, 44, (392,66,0): 76, 59, 39, (392,67,0): 73, 57, 34, (392,68,0): 72, 57, 36, (392,69,0): 73, 58, 35, (392,70,0): 72, 57, 36, (392,71,0): 71, 56, 35, (392,72,0): 70, 58, 36, (392,73,0): 71, 59, 37, (392,74,0): 73, 62, 40, (392,75,0): 75, 64, 42, (392,76,0): 77, 66, 44, (392,77,0): 78, 67, 45, (392,78,0): 77, 69, 46, (392,79,0): 77, 70, 44, (392,80,0): 76, 64, 40, (392,81,0): 76, 64, 38, (392,82,0): 77, 65, 41, (392,83,0): 78, 66, 42, (392,84,0): 79, 67, 43, (392,85,0): 80, 68, 44, (392,86,0): 81, 69, 47, (392,87,0): 82, 70, 48, (392,88,0): 76, 63, 44, (392,89,0): 74, 61, 42, (392,90,0): 70, 57, 38, (392,91,0): 67, 54, 35, (392,92,0): 64, 51, 34, (392,93,0): 62, 49, 32, (392,94,0): 61, 48, 31, (392,95,0): 60, 47, 30, (392,96,0): 56, 43, 27, (392,97,0): 56, 43, 27, (392,98,0): 56, 43, 27, (392,99,0): 55, 42, 26, (392,100,0): 55, 41, 28, (392,101,0): 54, 40, 27, (392,102,0): 54, 40, 27, (392,103,0): 54, 40, 27, (392,104,0): 54, 40, 29, (392,105,0): 54, 40, 29, (392,106,0): 54, 40, 31, (392,107,0): 54, 40, 31, (392,108,0): 54, 40, 31, (392,109,0): 54, 40, 31, (392,110,0): 54, 39, 32, (392,111,0): 53, 40, 32, (392,112,0): 54, 41, 33, (392,113,0): 51, 41, 32, (392,114,0): 52, 39, 31, (392,115,0): 51, 38, 30, (392,116,0): 51, 38, 30, (392,117,0): 52, 39, 31, (392,118,0): 54, 39, 32, (392,119,0): 55, 40, 33, (392,120,0): 57, 40, 33, (392,121,0): 58, 41, 34, (392,122,0): 59, 42, 35, (392,123,0): 60, 43, 36, (392,124,0): 62, 43, 37, (392,125,0): 63, 44, 38, (392,126,0): 63, 44, 38, (392,127,0): 63, 44, 37, (392,128,0): 72, 52, 43, (392,129,0): 74, 54, 43, (392,130,0): 77, 57, 46, (392,131,0): 80, 61, 47, (392,132,0): 83, 61, 48, (392,133,0): 84, 62, 49, (392,134,0): 83, 61, 47, (392,135,0): 83, 61, 47, (392,136,0): 86, 63, 49, (392,137,0): 87, 64, 48, (392,138,0): 91, 65, 50, (392,139,0): 93, 67, 52, (392,140,0): 94, 68, 51, (392,141,0): 94, 68, 51, (392,142,0): 95, 68, 51, (392,143,0): 95, 68, 51, (392,144,0): 100, 72, 58, (392,145,0): 100, 72, 60, (392,146,0): 100, 72, 60, (392,147,0): 100, 72, 60, (392,148,0): 100, 72, 60, (392,149,0): 101, 71, 60, (392,150,0): 101, 71, 60, (392,151,0): 101, 71, 60, (392,152,0): 111, 79, 66, (392,153,0): 112, 80, 67, (392,154,0): 113, 79, 67, (392,155,0): 114, 80, 68, (392,156,0): 119, 83, 71, (392,157,0): 126, 90, 78, (392,158,0): 136, 100, 88, (392,159,0): 140, 108, 95, (392,160,0): 159, 136, 120, (392,161,0): 168, 149, 134, (392,162,0): 186, 167, 153, (392,163,0): 200, 182, 170, (392,164,0): 204, 190, 181, (392,165,0): 202, 191, 185, (392,166,0): 198, 190, 187, (392,167,0): 192, 191, 189, (392,168,0): 181, 186, 189, (392,169,0): 174, 188, 191, (392,170,0): 168, 188, 195, (392,171,0): 161, 190, 198, (392,172,0): 157, 191, 201, (392,173,0): 151, 191, 201, (392,174,0): 146, 190, 201, (392,175,0): 143, 189, 202, (392,176,0): 151, 194, 211, (392,177,0): 150, 193, 212, (392,178,0): 150, 191, 213, (392,179,0): 149, 191, 213, (392,180,0): 151, 193, 217, (392,181,0): 151, 196, 219, (392,182,0): 154, 198, 223, (392,183,0): 156, 200, 227, (392,184,0): 154, 198, 227, (392,185,0): 152, 197, 226, (392,186,0): 152, 197, 228, (392,187,0): 150, 197, 227, (392,188,0): 150, 196, 229, (392,189,0): 149, 195, 228, (392,190,0): 149, 195, 229, (392,191,0): 149, 195, 229, (392,192,0): 150, 196, 229, (392,193,0): 150, 196, 229, (392,194,0): 150, 196, 229, (392,195,0): 149, 195, 228, (392,196,0): 149, 195, 229, (392,197,0): 148, 194, 228, (392,198,0): 148, 194, 230, (392,199,0): 147, 193, 229, (392,200,0): 144, 190, 226, (392,201,0): 144, 190, 226, (392,202,0): 144, 189, 228, (392,203,0): 144, 189, 228, (392,204,0): 144, 189, 230, (392,205,0): 144, 189, 230, (392,206,0): 144, 189, 230, (392,207,0): 145, 188, 230, (392,208,0): 147, 186, 227, (392,209,0): 148, 185, 227, (392,210,0): 147, 186, 227, (392,211,0): 147, 186, 227, (392,212,0): 145, 187, 227, (392,213,0): 145, 187, 227, (392,214,0): 144, 188, 227, (392,215,0): 144, 188, 227, (392,216,0): 146, 188, 228, (392,217,0): 145, 187, 227, (392,218,0): 147, 184, 226, (392,219,0): 147, 184, 226, (392,220,0): 150, 183, 226, (392,221,0): 151, 184, 227, (392,222,0): 155, 184, 228, (392,223,0): 154, 185, 231, (392,224,0): 152, 184, 233, (392,225,0): 152, 182, 232, (392,226,0): 156, 180, 228, (392,227,0): 163, 180, 226, (392,228,0): 176, 180, 225, (392,229,0): 190, 183, 225, (392,230,0): 205, 187, 227, (392,231,0): 218, 187, 228, (392,232,0): 248, 210, 251, (392,233,0): 255, 214, 254, (392,234,0): 250, 212, 253, (392,235,0): 235, 200, 240, (392,236,0): 218, 192, 231, (392,237,0): 208, 190, 228, (392,238,0): 198, 188, 225, (392,239,0): 182, 186, 223, (392,240,0): 157, 177, 214, (392,241,0): 151, 179, 218, (392,242,0): 150, 180, 218, (392,243,0): 150, 180, 218, (392,244,0): 148, 180, 219, (392,245,0): 147, 179, 218, (392,246,0): 146, 179, 220, (392,247,0): 145, 180, 222, (392,248,0): 147, 181, 226, (392,249,0): 145, 182, 226, (392,250,0): 145, 183, 228, (392,251,0): 145, 183, 230, (392,252,0): 144, 184, 233, (392,253,0): 144, 184, 233, (392,254,0): 144, 186, 234, (392,255,0): 144, 186, 236, (392,256,0): 145, 184, 239, (392,257,0): 146, 185, 240, (392,258,0): 148, 187, 244, (392,259,0): 149, 188, 245, (392,260,0): 149, 190, 246, (392,261,0): 148, 189, 245, (392,262,0): 147, 189, 247, (392,263,0): 146, 188, 246, (392,264,0): 148, 190, 248, (392,265,0): 148, 190, 250, (392,266,0): 145, 190, 249, (392,267,0): 143, 187, 248, (392,268,0): 141, 187, 247, (392,269,0): 139, 185, 245, (392,270,0): 138, 184, 244, (392,271,0): 138, 184, 246, (392,272,0): 139, 187, 251, (392,273,0): 137, 186, 252, (392,274,0): 136, 185, 251, (392,275,0): 133, 184, 249, (392,276,0): 131, 185, 249, (392,277,0): 132, 186, 250, (392,278,0): 133, 187, 251, (392,279,0): 133, 187, 251, (392,280,0): 136, 187, 252, (392,281,0): 136, 187, 252, (392,282,0): 137, 186, 252, (392,283,0): 138, 186, 252, (392,284,0): 142, 185, 253, (392,285,0): 146, 186, 255, (392,286,0): 147, 187, 255, (392,287,0): 149, 189, 255, (392,288,0): 147, 190, 255, (392,289,0): 149, 189, 255, (392,290,0): 150, 189, 255, (392,291,0): 151, 188, 255, (392,292,0): 154, 187, 255, (392,293,0): 156, 187, 254, (392,294,0): 156, 187, 254, (392,295,0): 156, 187, 254, (392,296,0): 152, 183, 250, (392,297,0): 155, 186, 251, (392,298,0): 156, 186, 248, (392,299,0): 155, 181, 238, (392,300,0): 156, 178, 228, (392,301,0): 153, 170, 214, (392,302,0): 138, 152, 191, (392,303,0): 124, 133, 166, (392,304,0): 113, 119, 145, (392,305,0): 100, 105, 127, (392,306,0): 89, 94, 114, (392,307,0): 88, 93, 112, (392,308,0): 91, 97, 113, (392,309,0): 95, 101, 117, (392,310,0): 103, 108, 127, (392,311,0): 113, 116, 135, (392,312,0): 118, 119, 140, (392,313,0): 123, 119, 142, (392,314,0): 122, 117, 139, (392,315,0): 118, 109, 128, (392,316,0): 114, 101, 118, (392,317,0): 109, 95, 108, (392,318,0): 97, 81, 91, (392,319,0): 85, 68, 74, (392,320,0): 80, 59, 66, (392,321,0): 77, 54, 62, (392,322,0): 72, 49, 57, (392,323,0): 71, 48, 56, (392,324,0): 71, 48, 56, (392,325,0): 71, 48, 56, (392,326,0): 72, 46, 55, (392,327,0): 73, 43, 51, (392,328,0): 81, 48, 55, (392,329,0): 82, 47, 51, (392,330,0): 87, 46, 50, (392,331,0): 91, 49, 50, (392,332,0): 99, 53, 53, (392,333,0): 104, 55, 51, (392,334,0): 104, 53, 50, (392,335,0): 102, 51, 48, (392,336,0): 91, 40, 39, (392,337,0): 87, 37, 38, (392,338,0): 78, 32, 34, (392,339,0): 69, 27, 29, (392,340,0): 62, 23, 28, (392,341,0): 55, 23, 28, (392,342,0): 53, 24, 29, (392,343,0): 50, 25, 31, (392,344,0): 50, 27, 33, (392,345,0): 49, 28, 35, (392,346,0): 50, 27, 35, (392,347,0): 52, 26, 35, (392,348,0): 53, 26, 33, (392,349,0): 53, 26, 33, (392,350,0): 56, 25, 33, (392,351,0): 55, 26, 31, (392,352,0): 49, 23, 26, (392,353,0): 48, 23, 26, (392,354,0): 49, 23, 26, (392,355,0): 49, 23, 26, (392,356,0): 49, 23, 26, (392,357,0): 49, 23, 26, (392,358,0): 51, 22, 26, (392,359,0): 51, 22, 26, (392,360,0): 57, 26, 31, (392,361,0): 55, 24, 29, (392,362,0): 54, 23, 28, (392,363,0): 52, 21, 26, (392,364,0): 53, 21, 26, (392,365,0): 55, 23, 28, (392,366,0): 56, 24, 29, (392,367,0): 60, 25, 31, (392,368,0): 61, 24, 31, (392,369,0): 61, 24, 31, (392,370,0): 60, 23, 30, (392,371,0): 58, 23, 29, (392,372,0): 57, 22, 29, (392,373,0): 54, 21, 28, (392,374,0): 53, 20, 27, (392,375,0): 52, 21, 27, (392,376,0): 47, 17, 25, (392,377,0): 46, 19, 26, (392,378,0): 47, 20, 29, (392,379,0): 47, 21, 30, (392,380,0): 46, 20, 29, (392,381,0): 42, 19, 27, (392,382,0): 40, 17, 27, (392,383,0): 38, 17, 26, (392,384,0): 40, 20, 31, (392,385,0): 37, 20, 30, (392,386,0): 36, 19, 29, (392,387,0): 34, 17, 27, (392,388,0): 34, 17, 25, (392,389,0): 35, 18, 26, (392,390,0): 36, 19, 25, (392,391,0): 36, 19, 25, (392,392,0): 40, 23, 29, (392,393,0): 41, 24, 30, (392,394,0): 43, 27, 30, (392,395,0): 44, 28, 31, (392,396,0): 45, 29, 30, (392,397,0): 45, 29, 30, (392,398,0): 44, 28, 29, (392,399,0): 44, 28, 29, (392,400,0): 48, 29, 35, (392,401,0): 44, 25, 31, (392,402,0): 40, 21, 27, (392,403,0): 39, 20, 26, (392,404,0): 41, 22, 28, (392,405,0): 44, 25, 31, (392,406,0): 45, 26, 32, (392,407,0): 45, 26, 32, (392,408,0): 46, 27, 33, (392,409,0): 45, 26, 32, (392,410,0): 45, 26, 32, (392,411,0): 44, 25, 31, (392,412,0): 43, 24, 30, (392,413,0): 42, 23, 29, (392,414,0): 42, 23, 29, (392,415,0): 42, 21, 28, (392,416,0): 47, 24, 30, (392,417,0): 46, 23, 29, (392,418,0): 47, 22, 28, (392,419,0): 48, 23, 29, (392,420,0): 47, 24, 30, (392,421,0): 49, 26, 32, (392,422,0): 51, 30, 35, (392,423,0): 52, 33, 37, (392,424,0): 53, 37, 40, (392,425,0): 50, 38, 40, (392,426,0): 50, 41, 42, (392,427,0): 53, 49, 48, (392,428,0): 61, 60, 58, (392,429,0): 71, 73, 70, (392,430,0): 81, 86, 82, (392,431,0): 88, 92, 91, (392,432,0): 97, 98, 102, (392,433,0): 93, 94, 99, (392,434,0): 88, 89, 94, (392,435,0): 88, 89, 93, (392,436,0): 87, 90, 95, (392,437,0): 83, 87, 90, (392,438,0): 75, 76, 81, (392,439,0): 67, 68, 73, (392,440,0): 53, 52, 58, (392,441,0): 43, 42, 48, (392,442,0): 40, 35, 42, (392,443,0): 40, 33, 41, (392,444,0): 41, 31, 39, (392,445,0): 36, 25, 33, (392,446,0): 35, 22, 31, (392,447,0): 37, 24, 33, (392,448,0): 38, 25, 32, (392,449,0): 38, 27, 33, (392,450,0): 39, 28, 32, (392,451,0): 40, 30, 31, (392,452,0): 43, 31, 33, (392,453,0): 50, 36, 36, (392,454,0): 59, 43, 43, (392,455,0): 65, 50, 45, (392,456,0): 69, 52, 45, (392,457,0): 70, 53, 45, (392,458,0): 73, 55, 45, (392,459,0): 78, 58, 47, (392,460,0): 84, 62, 49, (392,461,0): 84, 62, 48, (392,462,0): 80, 58, 44, (392,463,0): 73, 56, 40, (392,464,0): 69, 57, 41, (392,465,0): 76, 71, 52, (392,466,0): 86, 85, 65, (392,467,0): 90, 94, 71, (392,468,0): 91, 96, 73, (392,469,0): 93, 102, 75, (392,470,0): 100, 109, 82, (392,471,0): 108, 114, 86, (392,472,0): 114, 119, 89, (392,473,0): 113, 116, 85, (392,474,0): 108, 111, 80, (392,475,0): 102, 108, 74, (392,476,0): 100, 107, 73, (392,477,0): 104, 116, 78, (392,478,0): 114, 129, 90, (392,479,0): 122, 139, 97, (392,480,0): 121, 138, 93, (392,481,0): 110, 128, 80, (392,482,0): 98, 114, 67, (392,483,0): 92, 108, 63, (392,484,0): 97, 108, 66, (392,485,0): 101, 112, 70, (392,486,0): 104, 110, 72, (392,487,0): 102, 108, 72, (392,488,0): 97, 98, 66, (392,489,0): 95, 96, 65, (392,490,0): 97, 93, 64, (392,491,0): 97, 93, 66, (392,492,0): 99, 91, 68, (392,493,0): 95, 87, 64, (392,494,0): 91, 80, 58, (392,495,0): 87, 74, 55, (392,496,0): 83, 66, 56, (392,497,0): 78, 61, 53, (392,498,0): 73, 56, 49, (392,499,0): 69, 52, 45, (392,500,0): 67, 50, 43, (392,501,0): 65, 48, 41, (392,502,0): 61, 43, 39, (392,503,0): 58, 40, 36, (392,504,0): 62, 44, 42, (392,505,0): 59, 41, 39, (392,506,0): 54, 36, 34, (392,507,0): 49, 31, 29, (392,508,0): 46, 28, 28, (392,509,0): 46, 28, 28, (392,510,0): 47, 29, 29, (392,511,0): 48, 30, 30, (392,512,0): 42, 26, 27, (392,513,0): 42, 26, 27, (392,514,0): 42, 26, 27, (392,515,0): 42, 26, 27, (392,516,0): 41, 25, 26, (392,517,0): 41, 25, 26, (392,518,0): 41, 25, 26, (392,519,0): 41, 25, 26, (392,520,0): 43, 27, 28, (392,521,0): 43, 27, 28, (392,522,0): 44, 28, 29, (392,523,0): 45, 29, 30, (392,524,0): 46, 30, 31, (392,525,0): 47, 31, 32, (392,526,0): 48, 32, 33, (392,527,0): 48, 34, 34, (392,528,0): 58, 44, 44, (392,529,0): 57, 46, 44, (392,530,0): 59, 45, 45, (392,531,0): 58, 44, 43, (392,532,0): 60, 41, 43, (392,533,0): 58, 40, 40, (392,534,0): 57, 37, 39, (392,535,0): 56, 36, 37, (392,536,0): 56, 36, 38, (392,537,0): 56, 36, 37, (392,538,0): 57, 38, 40, (392,539,0): 60, 44, 44, (392,540,0): 65, 49, 50, (392,541,0): 65, 51, 50, (392,542,0): 59, 47, 47, (392,543,0): 55, 43, 43, (392,544,0): 55, 45, 44, (392,545,0): 59, 49, 48, (392,546,0): 65, 55, 54, (392,547,0): 70, 60, 59, (392,548,0): 73, 63, 62, (392,549,0): 74, 64, 63, (392,550,0): 72, 62, 61, (392,551,0): 70, 60, 59, (392,552,0): 64, 54, 53, (392,553,0): 65, 55, 54, (392,554,0): 65, 55, 54, (392,555,0): 64, 54, 53, (392,556,0): 63, 53, 52, (392,557,0): 61, 51, 50, (392,558,0): 59, 49, 48, (392,559,0): 57, 49, 47, (392,560,0): 51, 43, 41, (392,561,0): 44, 39, 36, (392,562,0): 38, 33, 30, (392,563,0): 34, 29, 26, (392,564,0): 32, 28, 27, (392,565,0): 31, 27, 26, (392,566,0): 28, 23, 27, (392,567,0): 26, 21, 25, (392,568,0): 24, 22, 27, (392,569,0): 21, 19, 24, (392,570,0): 18, 17, 25, (392,571,0): 19, 18, 26, (392,572,0): 23, 21, 32, (392,573,0): 25, 23, 34, (392,574,0): 23, 23, 33, (392,575,0): 21, 21, 33, (392,576,0): 16, 18, 31, (392,577,0): 18, 20, 33, (392,578,0): 18, 20, 33, (392,579,0): 16, 18, 31, (392,580,0): 15, 15, 27, (392,581,0): 15, 15, 27, (392,582,0): 18, 16, 29, (392,583,0): 22, 19, 30, (392,584,0): 24, 18, 30, (392,585,0): 25, 19, 31, (392,586,0): 27, 19, 30, (392,587,0): 30, 20, 31, (392,588,0): 33, 21, 33, (392,589,0): 34, 22, 32, (392,590,0): 36, 24, 34, (392,591,0): 36, 25, 33, (392,592,0): 37, 26, 30, (392,593,0): 38, 28, 29, (392,594,0): 40, 30, 31, (392,595,0): 42, 32, 33, (392,596,0): 44, 34, 35, (392,597,0): 46, 36, 37, (392,598,0): 47, 37, 38, (392,599,0): 48, 38, 39, (393,0,0): 79, 74, 55, (393,1,0): 79, 74, 55, (393,2,0): 80, 73, 55, (393,3,0): 81, 74, 56, (393,4,0): 81, 74, 56, (393,5,0): 82, 75, 57, (393,6,0): 83, 74, 57, (393,7,0): 83, 74, 57, (393,8,0): 85, 73, 57, (393,9,0): 84, 72, 56, (393,10,0): 84, 72, 56, (393,11,0): 83, 71, 55, (393,12,0): 83, 70, 54, (393,13,0): 83, 70, 54, (393,14,0): 82, 69, 53, (393,15,0): 82, 69, 53, (393,16,0): 85, 72, 55, (393,17,0): 85, 72, 55, (393,18,0): 86, 73, 56, (393,19,0): 87, 74, 57, (393,20,0): 89, 76, 59, (393,21,0): 90, 77, 58, (393,22,0): 91, 78, 59, (393,23,0): 91, 78, 59, (393,24,0): 92, 80, 58, (393,25,0): 93, 81, 59, (393,26,0): 94, 82, 60, (393,27,0): 96, 84, 60, (393,28,0): 97, 85, 61, (393,29,0): 99, 87, 63, (393,30,0): 100, 88, 62, (393,31,0): 101, 89, 63, (393,32,0): 103, 87, 64, (393,33,0): 104, 88, 65, (393,34,0): 105, 89, 64, (393,35,0): 107, 91, 66, (393,36,0): 107, 93, 67, (393,37,0): 109, 95, 69, (393,38,0): 110, 96, 69, (393,39,0): 111, 97, 70, (393,40,0): 111, 100, 70, (393,41,0): 111, 100, 70, (393,42,0): 110, 101, 70, (393,43,0): 111, 102, 71, (393,44,0): 111, 102, 69, (393,45,0): 112, 103, 70, (393,46,0): 110, 104, 70, (393,47,0): 110, 104, 70, (393,48,0): 111, 100, 68, (393,49,0): 111, 100, 68, (393,50,0): 111, 100, 68, (393,51,0): 111, 100, 68, (393,52,0): 112, 101, 69, (393,53,0): 112, 101, 69, (393,54,0): 112, 101, 69, (393,55,0): 112, 101, 69, (393,56,0): 110, 99, 67, (393,57,0): 108, 97, 65, (393,58,0): 106, 95, 63, (393,59,0): 107, 96, 64, (393,60,0): 108, 97, 65, (393,61,0): 107, 96, 64, (393,62,0): 104, 93, 61, (393,63,0): 101, 90, 60, (393,64,0): 92, 76, 51, (393,65,0): 87, 71, 46, (393,66,0): 81, 65, 42, (393,67,0): 77, 61, 38, (393,68,0): 75, 60, 37, (393,69,0): 75, 60, 37, (393,70,0): 73, 58, 35, (393,71,0): 72, 57, 34, (393,72,0): 72, 60, 38, (393,73,0): 73, 61, 39, (393,74,0): 74, 63, 41, (393,75,0): 76, 65, 43, (393,76,0): 76, 65, 43, (393,77,0): 77, 66, 44, (393,78,0): 74, 66, 43, (393,79,0): 74, 66, 43, (393,80,0): 76, 64, 40, (393,81,0): 76, 64, 38, (393,82,0): 77, 65, 41, (393,83,0): 78, 66, 42, (393,84,0): 78, 66, 42, (393,85,0): 79, 67, 43, (393,86,0): 80, 68, 46, (393,87,0): 80, 68, 46, (393,88,0): 75, 62, 43, (393,89,0): 73, 60, 41, (393,90,0): 70, 57, 38, (393,91,0): 66, 53, 34, (393,92,0): 63, 50, 33, (393,93,0): 61, 48, 31, (393,94,0): 60, 47, 30, (393,95,0): 60, 47, 30, (393,96,0): 56, 43, 27, (393,97,0): 56, 43, 27, (393,98,0): 56, 43, 27, (393,99,0): 55, 42, 26, (393,100,0): 55, 41, 28, (393,101,0): 54, 40, 27, (393,102,0): 54, 40, 27, (393,103,0): 54, 40, 27, (393,104,0): 54, 40, 29, (393,105,0): 54, 40, 29, (393,106,0): 54, 40, 31, (393,107,0): 54, 40, 31, (393,108,0): 54, 40, 31, (393,109,0): 54, 40, 31, (393,110,0): 54, 39, 32, (393,111,0): 53, 40, 32, (393,112,0): 53, 40, 32, (393,113,0): 51, 41, 32, (393,114,0): 52, 39, 31, (393,115,0): 51, 38, 30, (393,116,0): 51, 38, 30, (393,117,0): 52, 39, 31, (393,118,0): 54, 39, 32, (393,119,0): 54, 39, 32, (393,120,0): 56, 39, 32, (393,121,0): 57, 40, 33, (393,122,0): 59, 42, 35, (393,123,0): 61, 44, 37, (393,124,0): 63, 44, 38, (393,125,0): 65, 46, 40, (393,126,0): 65, 46, 40, (393,127,0): 66, 47, 40, (393,128,0): 73, 53, 44, (393,129,0): 74, 54, 43, (393,130,0): 77, 57, 46, (393,131,0): 79, 59, 48, (393,132,0): 83, 61, 48, (393,133,0): 84, 62, 49, (393,134,0): 83, 61, 48, (393,135,0): 83, 61, 47, (393,136,0): 86, 63, 49, (393,137,0): 87, 64, 50, (393,138,0): 91, 65, 50, (393,139,0): 93, 67, 52, (393,140,0): 94, 68, 53, (393,141,0): 94, 68, 51, (393,142,0): 95, 68, 51, (393,143,0): 95, 67, 53, (393,144,0): 99, 71, 59, (393,145,0): 99, 71, 59, (393,146,0): 99, 71, 59, (393,147,0): 100, 72, 60, (393,148,0): 100, 72, 60, (393,149,0): 101, 73, 61, (393,150,0): 101, 73, 61, (393,151,0): 103, 73, 62, (393,152,0): 105, 76, 62, (393,153,0): 109, 77, 64, (393,154,0): 113, 79, 67, (393,155,0): 115, 81, 69, (393,156,0): 120, 82, 71, (393,157,0): 125, 87, 76, (393,158,0): 132, 94, 83, (393,159,0): 136, 100, 88, (393,160,0): 141, 109, 96, (393,161,0): 151, 122, 108, (393,162,0): 168, 140, 128, (393,163,0): 183, 156, 145, (393,164,0): 192, 167, 160, (393,165,0): 195, 175, 168, (393,166,0): 196, 181, 176, (393,167,0): 194, 184, 182, (393,168,0): 188, 186, 187, (393,169,0): 183, 188, 191, (393,170,0): 176, 191, 196, (393,171,0): 168, 191, 197, (393,172,0): 160, 190, 198, (393,173,0): 153, 190, 199, (393,174,0): 151, 191, 201, (393,175,0): 149, 191, 203, (393,176,0): 153, 192, 209, (393,177,0): 153, 191, 212, (393,178,0): 152, 190, 211, (393,179,0): 152, 190, 213, (393,180,0): 151, 192, 214, (393,181,0): 152, 192, 217, (393,182,0): 154, 194, 219, (393,183,0): 155, 197, 222, (393,184,0): 155, 196, 224, (393,185,0): 154, 195, 225, (393,186,0): 152, 196, 225, (393,187,0): 151, 194, 226, (393,188,0): 151, 194, 226, (393,189,0): 150, 193, 227, (393,190,0): 149, 194, 227, (393,191,0): 149, 194, 227, (393,192,0): 150, 196, 229, (393,193,0): 150, 196, 229, (393,194,0): 149, 195, 228, (393,195,0): 149, 195, 228, (393,196,0): 148, 194, 228, (393,197,0): 148, 194, 228, (393,198,0): 147, 193, 229, (393,199,0): 147, 193, 229, (393,200,0): 144, 190, 226, (393,201,0): 144, 190, 226, (393,202,0): 144, 189, 228, (393,203,0): 144, 189, 228, (393,204,0): 144, 189, 230, (393,205,0): 144, 189, 230, (393,206,0): 144, 189, 230, (393,207,0): 145, 188, 230, (393,208,0): 147, 186, 227, (393,209,0): 147, 186, 227, (393,210,0): 147, 186, 227, (393,211,0): 145, 187, 227, (393,212,0): 145, 187, 227, (393,213,0): 144, 188, 227, (393,214,0): 144, 188, 227, (393,215,0): 144, 188, 227, (393,216,0): 146, 188, 228, (393,217,0): 145, 187, 227, (393,218,0): 146, 185, 226, (393,219,0): 147, 184, 226, (393,220,0): 149, 184, 226, (393,221,0): 151, 184, 227, (393,222,0): 153, 184, 228, (393,223,0): 154, 185, 231, (393,224,0): 151, 183, 234, (393,225,0): 152, 182, 234, (393,226,0): 156, 182, 231, (393,227,0): 163, 181, 229, (393,228,0): 174, 182, 228, (393,229,0): 185, 184, 228, (393,230,0): 198, 185, 228, (393,231,0): 208, 185, 229, (393,232,0): 223, 192, 234, (393,233,0): 231, 198, 241, (393,234,0): 231, 198, 243, (393,235,0): 220, 191, 235, (393,236,0): 207, 186, 229, (393,237,0): 197, 184, 227, (393,238,0): 187, 182, 223, (393,239,0): 174, 179, 219, (393,240,0): 158, 177, 219, (393,241,0): 152, 180, 219, (393,242,0): 150, 179, 219, (393,243,0): 150, 179, 219, (393,244,0): 148, 180, 219, (393,245,0): 147, 179, 220, (393,246,0): 146, 179, 222, (393,247,0): 145, 179, 224, (393,248,0): 147, 181, 226, (393,249,0): 145, 182, 227, (393,250,0): 145, 183, 230, (393,251,0): 145, 183, 232, (393,252,0): 144, 184, 233, (393,253,0): 144, 184, 233, (393,254,0): 144, 186, 236, (393,255,0): 144, 186, 236, (393,256,0): 146, 185, 240, (393,257,0): 147, 186, 243, (393,258,0): 148, 187, 244, (393,259,0): 150, 189, 246, (393,260,0): 149, 190, 246, (393,261,0): 149, 189, 248, (393,262,0): 147, 189, 247, (393,263,0): 147, 189, 249, (393,264,0): 148, 190, 250, (393,265,0): 147, 189, 249, (393,266,0): 144, 188, 249, (393,267,0): 143, 187, 248, (393,268,0): 141, 187, 247, (393,269,0): 140, 186, 246, (393,270,0): 139, 185, 247, (393,271,0): 138, 184, 246, (393,272,0): 139, 187, 251, (393,273,0): 137, 186, 252, (393,274,0): 136, 185, 251, (393,275,0): 134, 185, 250, (393,276,0): 133, 184, 249, (393,277,0): 132, 186, 250, (393,278,0): 135, 186, 251, (393,279,0): 136, 187, 252, (393,280,0): 136, 187, 252, (393,281,0): 137, 186, 252, (393,282,0): 138, 186, 252, (393,283,0): 141, 186, 253, (393,284,0): 144, 184, 253, (393,285,0): 146, 185, 254, (393,286,0): 148, 185, 255, (393,287,0): 148, 187, 255, (393,288,0): 148, 188, 255, (393,289,0): 148, 188, 255, (393,290,0): 149, 188, 255, (393,291,0): 152, 187, 255, (393,292,0): 153, 186, 253, (393,293,0): 155, 186, 253, (393,294,0): 155, 186, 253, (393,295,0): 155, 186, 253, (393,296,0): 152, 183, 250, (393,297,0): 157, 186, 254, (393,298,0): 158, 186, 251, (393,299,0): 158, 184, 243, (393,300,0): 160, 181, 236, (393,301,0): 157, 175, 225, (393,302,0): 144, 159, 202, (393,303,0): 131, 141, 177, (393,304,0): 116, 123, 152, (393,305,0): 105, 109, 134, (393,306,0): 95, 100, 122, (393,307,0): 95, 100, 120, (393,308,0): 97, 102, 121, (393,309,0): 99, 104, 123, (393,310,0): 105, 110, 129, (393,311,0): 115, 117, 138, (393,312,0): 118, 118, 142, (393,313,0): 123, 121, 145, (393,314,0): 124, 119, 142, (393,315,0): 121, 112, 133, (393,316,0): 118, 107, 124, (393,317,0): 114, 102, 114, (393,318,0): 105, 89, 99, (393,319,0): 93, 76, 84, (393,320,0): 84, 63, 70, (393,321,0): 80, 57, 65, (393,322,0): 75, 52, 60, (393,323,0): 72, 49, 57, (393,324,0): 72, 49, 57, (393,325,0): 75, 49, 58, (393,326,0): 75, 48, 57, (393,327,0): 76, 46, 54, (393,328,0): 80, 47, 54, (393,329,0): 83, 47, 51, (393,330,0): 88, 47, 51, (393,331,0): 96, 52, 53, (393,332,0): 104, 54, 55, (393,333,0): 106, 55, 52, (393,334,0): 106, 53, 49, (393,335,0): 103, 49, 47, (393,336,0): 88, 38, 39, (393,337,0): 82, 36, 38, (393,338,0): 76, 31, 34, (393,339,0): 68, 27, 31, (393,340,0): 61, 24, 31, (393,341,0): 55, 24, 30, (393,342,0): 52, 25, 32, (393,343,0): 49, 26, 34, (393,344,0): 49, 28, 35, (393,345,0): 49, 28, 35, (393,346,0): 50, 27, 35, (393,347,0): 50, 27, 35, (393,348,0): 52, 26, 35, (393,349,0): 53, 26, 33, (393,350,0): 56, 25, 33, (393,351,0): 55, 26, 31, (393,352,0): 49, 22, 27, (393,353,0): 48, 23, 26, (393,354,0): 49, 23, 26, (393,355,0): 49, 23, 26, (393,356,0): 49, 23, 26, (393,357,0): 49, 23, 26, (393,358,0): 51, 22, 26, (393,359,0): 51, 22, 26, (393,360,0): 56, 25, 30, (393,361,0): 55, 24, 29, (393,362,0): 54, 23, 28, (393,363,0): 53, 22, 27, (393,364,0): 54, 22, 27, (393,365,0): 55, 23, 28, (393,366,0): 56, 24, 29, (393,367,0): 57, 25, 30, (393,368,0): 60, 25, 31, (393,369,0): 59, 24, 30, (393,370,0): 58, 23, 29, (393,371,0): 55, 23, 28, (393,372,0): 54, 21, 28, (393,373,0): 52, 21, 27, (393,374,0): 51, 20, 26, (393,375,0): 50, 21, 26, (393,376,0): 45, 18, 25, (393,377,0): 45, 20, 26, (393,378,0): 46, 20, 29, (393,379,0): 44, 21, 29, (393,380,0): 44, 21, 29, (393,381,0): 41, 20, 27, (393,382,0): 39, 18, 27, (393,383,0): 37, 17, 26, (393,384,0): 38, 21, 31, (393,385,0): 37, 20, 30, (393,386,0): 36, 19, 29, (393,387,0): 35, 18, 28, (393,388,0): 34, 17, 25, (393,389,0): 35, 18, 26, (393,390,0): 36, 19, 25, (393,391,0): 37, 20, 26, (393,392,0): 41, 24, 30, (393,393,0): 42, 25, 31, (393,394,0): 43, 27, 30, (393,395,0): 45, 29, 32, (393,396,0): 46, 30, 31, (393,397,0): 46, 30, 31, (393,398,0): 45, 29, 30, (393,399,0): 44, 28, 31, (393,400,0): 47, 28, 34, (393,401,0): 43, 24, 30, (393,402,0): 39, 20, 26, (393,403,0): 38, 19, 25, (393,404,0): 41, 22, 28, (393,405,0): 43, 24, 30, (393,406,0): 44, 25, 31, (393,407,0): 44, 25, 31, (393,408,0): 45, 26, 32, (393,409,0): 45, 26, 32, (393,410,0): 45, 26, 32, (393,411,0): 44, 25, 31, (393,412,0): 43, 24, 30, (393,413,0): 42, 23, 29, (393,414,0): 42, 23, 29, (393,415,0): 42, 23, 29, (393,416,0): 45, 24, 29, (393,417,0): 46, 23, 29, (393,418,0): 45, 22, 28, (393,419,0): 45, 22, 28, (393,420,0): 46, 23, 29, (393,421,0): 49, 26, 32, (393,422,0): 50, 29, 34, (393,423,0): 50, 31, 35, (393,424,0): 51, 35, 38, (393,425,0): 49, 37, 39, (393,426,0): 48, 39, 40, (393,427,0): 51, 47, 46, (393,428,0): 58, 57, 55, (393,429,0): 69, 69, 67, (393,430,0): 77, 82, 78, (393,431,0): 84, 88, 87, (393,432,0): 93, 94, 99, (393,433,0): 90, 90, 98, (393,434,0): 88, 88, 96, (393,435,0): 89, 90, 95, (393,436,0): 89, 90, 95, (393,437,0): 84, 85, 90, (393,438,0): 74, 75, 80, (393,439,0): 65, 64, 70, (393,440,0): 51, 50, 56, (393,441,0): 42, 39, 46, (393,442,0): 39, 32, 40, (393,443,0): 41, 31, 39, (393,444,0): 41, 30, 38, (393,445,0): 36, 25, 33, (393,446,0): 35, 22, 31, (393,447,0): 37, 24, 33, (393,448,0): 36, 25, 31, (393,449,0): 37, 26, 32, (393,450,0): 38, 27, 31, (393,451,0): 39, 29, 30, (393,452,0): 42, 30, 32, (393,453,0): 47, 36, 34, (393,454,0): 57, 43, 42, (393,455,0): 64, 49, 44, (393,456,0): 66, 49, 42, (393,457,0): 66, 49, 39, (393,458,0): 70, 52, 40, (393,459,0): 77, 58, 44, (393,460,0): 83, 64, 49, (393,461,0): 88, 67, 50, (393,462,0): 87, 66, 49, (393,463,0): 83, 64, 47, (393,464,0): 74, 61, 44, (393,465,0): 78, 70, 51, (393,466,0): 86, 81, 61, (393,467,0): 91, 91, 67, (393,468,0): 94, 96, 72, (393,469,0): 98, 102, 75, (393,470,0): 105, 109, 82, (393,471,0): 111, 116, 86, (393,472,0): 118, 121, 90, (393,473,0): 115, 119, 86, (393,474,0): 111, 115, 82, (393,475,0): 105, 111, 75, (393,476,0): 103, 111, 74, (393,477,0): 106, 118, 78, (393,478,0): 114, 129, 88, (393,479,0): 121, 138, 94, (393,480,0): 126, 144, 96, (393,481,0): 115, 131, 82, (393,482,0): 100, 116, 69, (393,483,0): 96, 109, 65, (393,484,0): 99, 110, 68, (393,485,0): 105, 113, 74, (393,486,0): 105, 111, 75, (393,487,0): 104, 108, 75, (393,488,0): 95, 96, 65, (393,489,0): 94, 93, 65, (393,490,0): 93, 89, 62, (393,491,0): 94, 88, 64, (393,492,0): 95, 87, 64, (393,493,0): 93, 85, 62, (393,494,0): 90, 79, 57, (393,495,0): 87, 74, 57, (393,496,0): 83, 66, 56, (393,497,0): 78, 61, 53, (393,498,0): 73, 56, 49, (393,499,0): 69, 52, 45, (393,500,0): 68, 51, 44, (393,501,0): 66, 49, 42, (393,502,0): 63, 45, 41, (393,503,0): 60, 42, 38, (393,504,0): 61, 43, 41, (393,505,0): 58, 40, 38, (393,506,0): 55, 37, 35, (393,507,0): 51, 33, 31, (393,508,0): 48, 30, 30, (393,509,0): 47, 29, 29, (393,510,0): 47, 29, 29, (393,511,0): 47, 29, 29, (393,512,0): 42, 26, 27, (393,513,0): 42, 26, 27, (393,514,0): 42, 26, 27, (393,515,0): 42, 26, 27, (393,516,0): 41, 25, 26, (393,517,0): 41, 25, 26, (393,518,0): 41, 25, 26, (393,519,0): 41, 25, 26, (393,520,0): 43, 27, 28, (393,521,0): 43, 27, 28, (393,522,0): 44, 28, 29, (393,523,0): 45, 29, 30, (393,524,0): 46, 30, 31, (393,525,0): 47, 31, 32, (393,526,0): 48, 32, 33, (393,527,0): 47, 33, 33, (393,528,0): 56, 42, 42, (393,529,0): 54, 42, 42, (393,530,0): 57, 43, 43, (393,531,0): 57, 43, 43, (393,532,0): 59, 40, 42, (393,533,0): 57, 38, 40, (393,534,0): 57, 37, 39, (393,535,0): 56, 36, 38, (393,536,0): 55, 35, 37, (393,537,0): 55, 35, 37, (393,538,0): 56, 37, 39, (393,539,0): 58, 42, 43, (393,540,0): 63, 47, 48, (393,541,0): 63, 49, 49, (393,542,0): 58, 46, 46, (393,543,0): 54, 42, 42, (393,544,0): 53, 43, 42, (393,545,0): 57, 47, 46, (393,546,0): 62, 52, 51, (393,547,0): 67, 57, 56, (393,548,0): 70, 60, 59, (393,549,0): 71, 61, 60, (393,550,0): 69, 59, 58, (393,551,0): 68, 58, 57, (393,552,0): 62, 52, 51, (393,553,0): 63, 53, 52, (393,554,0): 64, 54, 53, (393,555,0): 64, 54, 53, (393,556,0): 62, 52, 51, (393,557,0): 60, 50, 49, (393,558,0): 57, 47, 46, (393,559,0): 55, 45, 44, (393,560,0): 48, 40, 38, (393,561,0): 42, 37, 34, (393,562,0): 36, 31, 28, (393,563,0): 33, 28, 25, (393,564,0): 32, 26, 26, (393,565,0): 29, 25, 24, (393,566,0): 26, 21, 25, (393,567,0): 24, 19, 23, (393,568,0): 24, 19, 25, (393,569,0): 20, 18, 23, (393,570,0): 19, 16, 25, (393,571,0): 20, 19, 27, (393,572,0): 25, 23, 34, (393,573,0): 28, 26, 37, (393,574,0): 28, 26, 37, (393,575,0): 25, 25, 35, (393,576,0): 20, 20, 32, (393,577,0): 19, 21, 33, (393,578,0): 21, 20, 34, (393,579,0): 19, 19, 31, (393,580,0): 16, 16, 28, (393,581,0): 17, 15, 26, (393,582,0): 22, 19, 30, (393,583,0): 27, 21, 31, (393,584,0): 27, 21, 33, (393,585,0): 28, 20, 31, (393,586,0): 31, 21, 32, (393,587,0): 33, 21, 31, (393,588,0): 34, 22, 32, (393,589,0): 36, 25, 33, (393,590,0): 37, 24, 34, (393,591,0): 37, 26, 32, (393,592,0): 41, 29, 31, (393,593,0): 41, 31, 29, (393,594,0): 43, 32, 30, (393,595,0): 44, 34, 32, (393,596,0): 48, 37, 35, (393,597,0): 50, 40, 38, (393,598,0): 54, 43, 41, (393,599,0): 54, 44, 42, (394,0,0): 77, 74, 55, (394,1,0): 77, 74, 55, (394,2,0): 79, 74, 55, (394,3,0): 80, 75, 56, (394,4,0): 80, 75, 56, (394,5,0): 81, 76, 57, (394,6,0): 82, 75, 57, (394,7,0): 82, 75, 57, (394,8,0): 82, 73, 56, (394,9,0): 82, 73, 56, (394,10,0): 82, 73, 56, (394,11,0): 81, 72, 55, (394,12,0): 83, 71, 55, (394,13,0): 83, 71, 55, (394,14,0): 82, 70, 54, (394,15,0): 82, 70, 54, (394,16,0): 85, 72, 56, (394,17,0): 86, 73, 57, (394,18,0): 87, 74, 58, (394,19,0): 87, 74, 57, (394,20,0): 89, 76, 59, (394,21,0): 89, 76, 59, (394,22,0): 90, 77, 58, (394,23,0): 91, 78, 59, (394,24,0): 91, 78, 59, (394,25,0): 92, 80, 58, (394,26,0): 93, 81, 59, (394,27,0): 95, 83, 61, (394,28,0): 96, 84, 60, (394,29,0): 98, 86, 62, (394,30,0): 99, 87, 63, (394,31,0): 100, 88, 64, (394,32,0): 103, 87, 64, (394,33,0): 104, 88, 65, (394,34,0): 105, 89, 64, (394,35,0): 107, 91, 66, (394,36,0): 107, 93, 67, (394,37,0): 109, 95, 69, (394,38,0): 110, 96, 69, (394,39,0): 111, 97, 70, (394,40,0): 111, 100, 70, (394,41,0): 111, 100, 70, (394,42,0): 110, 101, 70, (394,43,0): 111, 102, 71, (394,44,0): 111, 102, 69, (394,45,0): 112, 103, 70, (394,46,0): 110, 104, 70, (394,47,0): 110, 104, 70, (394,48,0): 113, 103, 68, (394,49,0): 113, 103, 68, (394,50,0): 113, 103, 68, (394,51,0): 113, 103, 68, (394,52,0): 113, 103, 68, (394,53,0): 112, 102, 67, (394,54,0): 112, 102, 67, (394,55,0): 112, 102, 67, (394,56,0): 112, 102, 67, (394,57,0): 110, 100, 65, (394,58,0): 109, 99, 64, (394,59,0): 109, 99, 64, (394,60,0): 111, 101, 66, (394,61,0): 110, 100, 65, (394,62,0): 106, 96, 61, (394,63,0): 103, 92, 60, (394,64,0): 98, 82, 56, (394,65,0): 93, 77, 51, (394,66,0): 86, 70, 45, (394,67,0): 82, 66, 41, (394,68,0): 79, 65, 39, (394,69,0): 77, 63, 37, (394,70,0): 74, 59, 36, (394,71,0): 72, 57, 34, (394,72,0): 74, 62, 38, (394,73,0): 75, 63, 39, (394,74,0): 75, 64, 42, (394,75,0): 76, 65, 43, (394,76,0): 76, 65, 45, (394,77,0): 75, 64, 44, (394,78,0): 72, 64, 43, (394,79,0): 71, 63, 40, (394,80,0): 76, 64, 40, (394,81,0): 76, 64, 40, (394,82,0): 76, 64, 40, (394,83,0): 77, 65, 41, (394,84,0): 77, 65, 43, (394,85,0): 77, 65, 43, (394,86,0): 78, 65, 46, (394,87,0): 78, 65, 46, (394,88,0): 73, 60, 41, (394,89,0): 71, 58, 39, (394,90,0): 68, 55, 38, (394,91,0): 65, 52, 35, (394,92,0): 62, 49, 33, (394,93,0): 60, 47, 31, (394,94,0): 60, 47, 31, (394,95,0): 59, 46, 30, (394,96,0): 56, 43, 27, (394,97,0): 56, 43, 27, (394,98,0): 56, 43, 27, (394,99,0): 55, 42, 26, (394,100,0): 55, 41, 28, (394,101,0): 54, 40, 27, (394,102,0): 54, 40, 27, (394,103,0): 54, 40, 27, (394,104,0): 54, 40, 29, (394,105,0): 54, 40, 29, (394,106,0): 54, 40, 31, (394,107,0): 54, 40, 31, (394,108,0): 54, 40, 31, (394,109,0): 54, 40, 31, (394,110,0): 54, 39, 32, (394,111,0): 53, 40, 32, (394,112,0): 53, 40, 34, (394,113,0): 50, 39, 33, (394,114,0): 51, 38, 32, (394,115,0): 50, 37, 31, (394,116,0): 50, 37, 31, (394,117,0): 51, 38, 32, (394,118,0): 53, 38, 33, (394,119,0): 54, 39, 34, (394,120,0): 56, 38, 34, (394,121,0): 57, 39, 35, (394,122,0): 58, 40, 36, (394,123,0): 61, 43, 39, (394,124,0): 64, 45, 41, (394,125,0): 67, 48, 44, (394,126,0): 69, 50, 46, (394,127,0): 70, 51, 45, (394,128,0): 72, 53, 46, (394,129,0): 73, 55, 45, (394,130,0): 76, 58, 46, (394,131,0): 78, 60, 48, (394,132,0): 80, 60, 49, (394,133,0): 81, 62, 48, (394,134,0): 84, 62, 49, (394,135,0): 84, 62, 49, (394,136,0): 85, 63, 49, (394,137,0): 86, 64, 50, (394,138,0): 89, 66, 52, (394,139,0): 91, 68, 52, (394,140,0): 94, 68, 53, (394,141,0): 94, 68, 53, (394,142,0): 94, 68, 53, (394,143,0): 93, 67, 52, (394,144,0): 97, 69, 58, (394,145,0): 98, 70, 59, (394,146,0): 99, 71, 60, (394,147,0): 100, 72, 61, (394,148,0): 101, 74, 63, (394,149,0): 102, 75, 64, (394,150,0): 103, 77, 64, (394,151,0): 105, 77, 65, (394,152,0): 100, 72, 58, (394,153,0): 105, 76, 62, (394,154,0): 111, 79, 66, (394,155,0): 115, 81, 69, (394,156,0): 119, 81, 68, (394,157,0): 121, 83, 70, (394,158,0): 126, 86, 74, (394,159,0): 130, 90, 78, (394,160,0): 127, 89, 78, (394,161,0): 137, 99, 88, (394,162,0): 151, 114, 105, (394,163,0): 163, 129, 120, (394,164,0): 175, 142, 133, (394,165,0): 183, 154, 148, (394,166,0): 189, 166, 160, (394,167,0): 191, 173, 169, (394,168,0): 192, 180, 180, (394,169,0): 188, 186, 187, (394,170,0): 184, 192, 195, (394,171,0): 177, 192, 197, (394,172,0): 166, 189, 195, (394,173,0): 157, 187, 195, (394,174,0): 155, 189, 198, (394,175,0): 155, 191, 203, (394,176,0): 156, 192, 208, (394,177,0): 156, 191, 211, (394,178,0): 154, 191, 210, (394,179,0): 153, 189, 211, (394,180,0): 154, 190, 212, (394,181,0): 155, 191, 215, (394,182,0): 155, 192, 218, (394,183,0): 155, 192, 219, (394,184,0): 156, 193, 220, (394,185,0): 154, 193, 222, (394,186,0): 154, 193, 222, (394,187,0): 153, 192, 223, (394,188,0): 151, 192, 224, (394,189,0): 151, 192, 224, (394,190,0): 151, 192, 224, (394,191,0): 148, 191, 225, (394,192,0): 150, 195, 228, (394,193,0): 150, 195, 228, (394,194,0): 149, 194, 227, (394,195,0): 149, 194, 227, (394,196,0): 148, 192, 227, (394,197,0): 148, 192, 227, (394,198,0): 147, 191, 228, (394,199,0): 147, 191, 228, (394,200,0): 145, 189, 226, (394,201,0): 145, 189, 226, (394,202,0): 145, 189, 228, (394,203,0): 145, 189, 228, (394,204,0): 145, 188, 230, (394,205,0): 145, 188, 230, (394,206,0): 145, 188, 230, (394,207,0): 145, 188, 230, (394,208,0): 148, 187, 228, (394,209,0): 148, 187, 228, (394,210,0): 148, 187, 228, (394,211,0): 146, 188, 228, (394,212,0): 146, 188, 228, (394,213,0): 145, 189, 228, (394,214,0): 145, 189, 228, (394,215,0): 144, 189, 228, (394,216,0): 145, 189, 228, (394,217,0): 146, 188, 228, (394,218,0): 147, 186, 227, (394,219,0): 147, 184, 226, (394,220,0): 149, 184, 226, (394,221,0): 150, 183, 226, (394,222,0): 152, 183, 227, (394,223,0): 153, 184, 230, (394,224,0): 151, 183, 232, (394,225,0): 153, 183, 235, (394,226,0): 157, 183, 232, (394,227,0): 162, 184, 233, (394,228,0): 170, 184, 229, (394,229,0): 177, 184, 228, (394,230,0): 186, 183, 228, (394,231,0): 193, 182, 225, (394,232,0): 195, 178, 223, (394,233,0): 205, 183, 229, (394,234,0): 209, 187, 234, (394,235,0): 204, 184, 233, (394,236,0): 196, 182, 231, (394,237,0): 187, 181, 229, (394,238,0): 178, 179, 225, (394,239,0): 168, 176, 222, (394,240,0): 157, 178, 221, (394,241,0): 153, 181, 221, (394,242,0): 151, 180, 222, (394,243,0): 151, 180, 222, (394,244,0): 148, 180, 221, (394,245,0): 147, 178, 222, (394,246,0): 146, 179, 224, (394,247,0): 145, 179, 225, (394,248,0): 147, 181, 227, (394,249,0): 145, 181, 229, (394,250,0): 145, 183, 232, (394,251,0): 145, 182, 234, (394,252,0): 144, 184, 235, (394,253,0): 144, 184, 235, (394,254,0): 144, 185, 237, (394,255,0): 144, 185, 237, (394,256,0): 147, 186, 243, (394,257,0): 148, 187, 246, (394,258,0): 149, 188, 247, (394,259,0): 150, 189, 248, (394,260,0): 150, 190, 249, (394,261,0): 150, 190, 251, (394,262,0): 148, 190, 250, (394,263,0): 147, 188, 250, (394,264,0): 147, 188, 250, (394,265,0): 147, 188, 250, (394,266,0): 144, 188, 251, (394,267,0): 143, 187, 250, (394,268,0): 141, 187, 249, (394,269,0): 140, 186, 248, (394,270,0): 139, 184, 249, (394,271,0): 139, 184, 249, (394,272,0): 138, 186, 252, (394,273,0): 137, 186, 252, (394,274,0): 136, 185, 251, (394,275,0): 135, 184, 250, (394,276,0): 135, 184, 250, (394,277,0): 135, 186, 251, (394,278,0): 137, 186, 252, (394,279,0): 138, 187, 253, (394,280,0): 137, 186, 252, (394,281,0): 139, 187, 253, (394,282,0): 143, 186, 254, (394,283,0): 145, 185, 254, (394,284,0): 147, 184, 254, (394,285,0): 149, 183, 254, (394,286,0): 150, 183, 254, (394,287,0): 149, 183, 254, (394,288,0): 148, 188, 255, (394,289,0): 148, 188, 255, (394,290,0): 149, 188, 255, (394,291,0): 152, 187, 255, (394,292,0): 155, 186, 253, (394,293,0): 156, 185, 253, (394,294,0): 156, 185, 253, (394,295,0): 156, 185, 253, (394,296,0): 154, 183, 253, (394,297,0): 158, 187, 255, (394,298,0): 159, 186, 253, (394,299,0): 160, 185, 249, (394,300,0): 162, 184, 242, (394,301,0): 161, 181, 234, (394,302,0): 150, 166, 217, (394,303,0): 138, 150, 192, (394,304,0): 121, 127, 159, (394,305,0): 112, 118, 142, (394,306,0): 104, 110, 132, (394,307,0): 104, 111, 130, (394,308,0): 104, 111, 130, (394,309,0): 103, 110, 129, (394,310,0): 107, 112, 132, (394,311,0): 115, 117, 140, (394,312,0): 118, 118, 142, (394,313,0): 124, 122, 146, (394,314,0): 126, 120, 146, (394,315,0): 124, 116, 139, (394,316,0): 124, 112, 132, (394,317,0): 121, 109, 123, (394,318,0): 113, 97, 108, (394,319,0): 102, 85, 93, (394,320,0): 89, 68, 75, (394,321,0): 84, 61, 67, (394,322,0): 77, 54, 62, (394,323,0): 73, 50, 58, (394,324,0): 75, 49, 58, (394,325,0): 76, 50, 59, (394,326,0): 78, 51, 58, (394,327,0): 81, 50, 58, (394,328,0): 81, 46, 53, (394,329,0): 86, 47, 52, (394,330,0): 91, 49, 51, (394,331,0): 100, 54, 54, (394,332,0): 108, 57, 56, (394,333,0): 109, 55, 53, (394,334,0): 108, 50, 48, (394,335,0): 101, 45, 44, (394,336,0): 84, 35, 38, (394,337,0): 79, 34, 39, (394,338,0): 72, 30, 34, (394,339,0): 64, 28, 32, (394,340,0): 58, 25, 32, (394,341,0): 55, 25, 33, (394,342,0): 52, 26, 35, (394,343,0): 50, 27, 37, (394,344,0): 48, 27, 36, (394,345,0): 47, 27, 36, (394,346,0): 48, 27, 36, (394,347,0): 49, 26, 34, (394,348,0): 51, 25, 34, (394,349,0): 52, 25, 34, (394,350,0): 55, 24, 32, (394,351,0): 54, 25, 30, (394,352,0): 49, 22, 27, (394,353,0): 48, 23, 26, (394,354,0): 48, 23, 26, (394,355,0): 48, 23, 26, (394,356,0): 48, 23, 26, (394,357,0): 48, 23, 26, (394,358,0): 49, 23, 26, (394,359,0): 49, 23, 26, (394,360,0): 55, 26, 30, (394,361,0): 54, 25, 29, (394,362,0): 54, 23, 28, (394,363,0): 53, 22, 27, (394,364,0): 53, 22, 27, (394,365,0): 54, 23, 28, (394,366,0): 55, 24, 29, (394,367,0): 57, 25, 30, (394,368,0): 57, 24, 31, (394,369,0): 56, 23, 30, (394,370,0): 56, 23, 30, (394,371,0): 55, 22, 29, (394,372,0): 54, 21, 28, (394,373,0): 51, 20, 26, (394,374,0): 50, 20, 28, (394,375,0): 47, 20, 27, (394,376,0): 45, 18, 27, (394,377,0): 44, 18, 27, (394,378,0): 43, 20, 30, (394,379,0): 42, 21, 30, (394,380,0): 42, 21, 30, (394,381,0): 39, 19, 28, (394,382,0): 38, 18, 27, (394,383,0): 37, 17, 26, (394,384,0): 37, 20, 30, (394,385,0): 36, 20, 30, (394,386,0): 35, 19, 29, (394,387,0): 34, 18, 28, (394,388,0): 34, 19, 26, (394,389,0): 35, 20, 27, (394,390,0): 36, 21, 26, (394,391,0): 37, 22, 27, (394,392,0): 42, 27, 32, (394,393,0): 42, 27, 32, (394,394,0): 44, 29, 32, (394,395,0): 45, 30, 33, (394,396,0): 46, 32, 32, (394,397,0): 45, 31, 31, (394,398,0): 45, 31, 31, (394,399,0): 45, 29, 32, (394,400,0): 46, 27, 33, (394,401,0): 42, 22, 31, (394,402,0): 38, 18, 27, (394,403,0): 38, 18, 27, (394,404,0): 40, 20, 29, (394,405,0): 43, 23, 32, (394,406,0): 43, 23, 32, (394,407,0): 42, 22, 31, (394,408,0): 45, 25, 34, (394,409,0): 45, 25, 34, (394,410,0): 44, 24, 33, (394,411,0): 44, 24, 33, (394,412,0): 43, 23, 32, (394,413,0): 43, 23, 32, (394,414,0): 42, 22, 31, (394,415,0): 42, 23, 29, (394,416,0): 43, 24, 28, (394,417,0): 44, 23, 28, (394,418,0): 44, 23, 28, (394,419,0): 44, 23, 28, (394,420,0): 45, 24, 29, (394,421,0): 46, 25, 30, (394,422,0): 48, 27, 32, (394,423,0): 48, 29, 33, (394,424,0): 49, 33, 36, (394,425,0): 48, 33, 36, (394,426,0): 46, 36, 37, (394,427,0): 48, 42, 42, (394,428,0): 55, 51, 50, (394,429,0): 62, 62, 60, (394,430,0): 71, 73, 70, (394,431,0): 77, 79, 78, (394,432,0): 85, 86, 91, (394,433,0): 84, 84, 94, (394,434,0): 86, 86, 96, (394,435,0): 88, 88, 96, (394,436,0): 89, 89, 97, (394,437,0): 83, 82, 90, (394,438,0): 71, 70, 76, (394,439,0): 62, 59, 66, (394,440,0): 50, 45, 52, (394,441,0): 42, 35, 43, (394,442,0): 36, 29, 36, (394,443,0): 39, 29, 37, (394,444,0): 39, 28, 36, (394,445,0): 36, 23, 30, (394,446,0): 36, 21, 28, (394,447,0): 37, 24, 31, (394,448,0): 34, 23, 31, (394,449,0): 34, 25, 30, (394,450,0): 37, 26, 30, (394,451,0): 38, 28, 29, (394,452,0): 41, 29, 31, (394,453,0): 47, 36, 34, (394,454,0): 57, 43, 42, (394,455,0): 63, 50, 44, (394,456,0): 61, 46, 39, (394,457,0): 64, 47, 37, (394,458,0): 67, 51, 38, (394,459,0): 75, 57, 43, (394,460,0): 84, 67, 51, (394,461,0): 91, 72, 55, (394,462,0): 93, 75, 55, (394,463,0): 93, 75, 55, (394,464,0): 83, 66, 48, (394,465,0): 85, 70, 51, (394,466,0): 87, 76, 56, (394,467,0): 91, 85, 61, (394,468,0): 97, 95, 70, (394,469,0): 104, 104, 76, (394,470,0): 109, 112, 83, (394,471,0): 116, 117, 86, (394,472,0): 123, 124, 92, (394,473,0): 120, 121, 87, (394,474,0): 116, 117, 83, (394,475,0): 109, 113, 76, (394,476,0): 107, 113, 75, (394,477,0): 109, 120, 78, (394,478,0): 114, 129, 86, (394,479,0): 119, 136, 91, (394,480,0): 130, 146, 97, (394,481,0): 120, 134, 85, (394,482,0): 106, 119, 73, (394,483,0): 102, 113, 70, (394,484,0): 104, 115, 73, (394,485,0): 108, 116, 77, (394,486,0): 106, 112, 78, (394,487,0): 103, 106, 75, (394,488,0): 93, 92, 64, (394,489,0): 91, 87, 62, (394,490,0): 88, 82, 58, (394,491,0): 88, 80, 59, (394,492,0): 88, 80, 59, (394,493,0): 90, 79, 59, (394,494,0): 89, 76, 57, (394,495,0): 87, 74, 57, (394,496,0): 82, 65, 55, (394,497,0): 78, 61, 53, (394,498,0): 73, 56, 49, (394,499,0): 70, 53, 46, (394,500,0): 69, 52, 45, (394,501,0): 68, 51, 44, (394,502,0): 65, 47, 43, (394,503,0): 63, 45, 41, (394,504,0): 60, 42, 40, (394,505,0): 58, 40, 38, (394,506,0): 56, 38, 36, (394,507,0): 53, 35, 33, (394,508,0): 51, 33, 33, (394,509,0): 48, 30, 30, (394,510,0): 47, 29, 29, (394,511,0): 46, 28, 28, (394,512,0): 43, 27, 28, (394,513,0): 43, 27, 28, (394,514,0): 42, 26, 27, (394,515,0): 42, 26, 27, (394,516,0): 41, 25, 26, (394,517,0): 41, 25, 26, (394,518,0): 40, 24, 25, (394,519,0): 40, 24, 25, (394,520,0): 42, 26, 27, (394,521,0): 42, 26, 27, (394,522,0): 43, 27, 28, (394,523,0): 44, 28, 29, (394,524,0): 45, 29, 30, (394,525,0): 46, 30, 31, (394,526,0): 47, 31, 32, (394,527,0): 46, 32, 32, (394,528,0): 52, 37, 40, (394,529,0): 51, 39, 41, (394,530,0): 54, 39, 42, (394,531,0): 54, 39, 42, (394,532,0): 57, 38, 42, (394,533,0): 56, 37, 41, (394,534,0): 56, 35, 40, (394,535,0): 55, 34, 39, (394,536,0): 53, 32, 37, (394,537,0): 54, 33, 38, (394,538,0): 54, 35, 39, (394,539,0): 56, 40, 43, (394,540,0): 59, 43, 46, (394,541,0): 59, 44, 47, (394,542,0): 55, 43, 45, (394,543,0): 52, 40, 42, (394,544,0): 52, 40, 40, (394,545,0): 55, 43, 43, (394,546,0): 60, 48, 48, (394,547,0): 65, 53, 53, (394,548,0): 68, 56, 56, (394,549,0): 68, 56, 56, (394,550,0): 67, 55, 55, (394,551,0): 66, 54, 54, (394,552,0): 60, 48, 48, (394,553,0): 61, 49, 49, (394,554,0): 63, 51, 51, (394,555,0): 63, 51, 51, (394,556,0): 62, 50, 50, (394,557,0): 58, 46, 46, (394,558,0): 54, 42, 42, (394,559,0): 50, 40, 39, (394,560,0): 44, 36, 34, (394,561,0): 40, 32, 30, (394,562,0): 35, 27, 25, (394,563,0): 31, 26, 23, (394,564,0): 30, 24, 24, (394,565,0): 28, 22, 22, (394,566,0): 25, 19, 23, (394,567,0): 22, 17, 21, (394,568,0): 22, 17, 23, (394,569,0): 19, 17, 22, (394,570,0): 20, 17, 26, (394,571,0): 24, 21, 30, (394,572,0): 28, 25, 36, (394,573,0): 31, 29, 40, (394,574,0): 31, 29, 40, (394,575,0): 31, 29, 40, (394,576,0): 24, 22, 33, (394,577,0): 23, 23, 33, (394,578,0): 23, 21, 34, (394,579,0): 20, 18, 29, (394,580,0): 18, 16, 27, (394,581,0): 20, 17, 26, (394,582,0): 27, 21, 31, (394,583,0): 32, 25, 33, (394,584,0): 31, 23, 34, (394,585,0): 34, 24, 33, (394,586,0): 35, 23, 33, (394,587,0): 37, 24, 33, (394,588,0): 38, 25, 34, (394,589,0): 39, 26, 33, (394,590,0): 41, 25, 35, (394,591,0): 39, 27, 31, (394,592,0): 47, 33, 32, (394,593,0): 45, 34, 30, (394,594,0): 48, 34, 31, (394,595,0): 48, 37, 33, (394,596,0): 54, 40, 37, (394,597,0): 57, 46, 42, (394,598,0): 63, 49, 46, (394,599,0): 64, 53, 49, (395,0,0): 77, 74, 55, (395,1,0): 77, 74, 55, (395,2,0): 79, 74, 55, (395,3,0): 80, 75, 56, (395,4,0): 80, 75, 56, (395,5,0): 81, 76, 57, (395,6,0): 82, 75, 57, (395,7,0): 82, 75, 57, (395,8,0): 82, 73, 56, (395,9,0): 82, 73, 56, (395,10,0): 82, 73, 56, (395,11,0): 82, 73, 56, (395,12,0): 84, 72, 56, (395,13,0): 83, 71, 55, (395,14,0): 83, 71, 55, (395,15,0): 83, 71, 55, (395,16,0): 86, 73, 57, (395,17,0): 86, 73, 57, (395,18,0): 87, 74, 58, (395,19,0): 88, 75, 59, (395,20,0): 88, 75, 58, (395,21,0): 89, 76, 59, (395,22,0): 90, 77, 60, (395,23,0): 90, 77, 58, (395,24,0): 90, 77, 58, (395,25,0): 91, 78, 59, (395,26,0): 92, 80, 58, (395,27,0): 94, 82, 60, (395,28,0): 95, 83, 61, (395,29,0): 97, 85, 61, (395,30,0): 98, 86, 62, (395,31,0): 99, 87, 63, (395,32,0): 103, 87, 64, (395,33,0): 104, 88, 65, (395,34,0): 105, 89, 64, (395,35,0): 107, 91, 66, (395,36,0): 107, 93, 67, (395,37,0): 109, 95, 69, (395,38,0): 110, 96, 69, (395,39,0): 111, 97, 70, (395,40,0): 111, 100, 70, (395,41,0): 111, 100, 70, (395,42,0): 110, 101, 70, (395,43,0): 111, 102, 71, (395,44,0): 111, 102, 69, (395,45,0): 112, 103, 70, (395,46,0): 110, 104, 70, (395,47,0): 110, 104, 70, (395,48,0): 115, 105, 70, (395,49,0): 115, 105, 70, (395,50,0): 115, 105, 70, (395,51,0): 114, 104, 69, (395,52,0): 114, 104, 69, (395,53,0): 114, 104, 69, (395,54,0): 113, 103, 68, (395,55,0): 113, 103, 68, (395,56,0): 115, 105, 70, (395,57,0): 113, 103, 68, (395,58,0): 112, 102, 67, (395,59,0): 113, 103, 68, (395,60,0): 114, 104, 69, (395,61,0): 113, 103, 68, (395,62,0): 109, 99, 64, (395,63,0): 106, 95, 63, (395,64,0): 103, 88, 59, (395,65,0): 98, 82, 56, (395,66,0): 91, 75, 49, (395,67,0): 85, 69, 43, (395,68,0): 81, 67, 41, (395,69,0): 78, 64, 38, (395,70,0): 74, 59, 36, (395,71,0): 71, 56, 33, (395,72,0): 72, 60, 36, (395,73,0): 73, 61, 37, (395,74,0): 74, 63, 41, (395,75,0): 75, 64, 42, (395,76,0): 75, 64, 44, (395,77,0): 75, 64, 44, (395,78,0): 72, 64, 43, (395,79,0): 72, 64, 43, (395,80,0): 76, 64, 42, (395,81,0): 76, 64, 40, (395,82,0): 76, 64, 40, (395,83,0): 75, 63, 39, (395,84,0): 75, 63, 41, (395,85,0): 75, 63, 41, (395,86,0): 75, 62, 43, (395,87,0): 75, 62, 43, (395,88,0): 71, 58, 39, (395,89,0): 69, 56, 37, (395,90,0): 66, 53, 36, (395,91,0): 63, 50, 33, (395,92,0): 61, 48, 32, (395,93,0): 59, 46, 30, (395,94,0): 59, 46, 30, (395,95,0): 59, 46, 30, (395,96,0): 56, 43, 27, (395,97,0): 56, 43, 27, (395,98,0): 56, 43, 27, (395,99,0): 55, 42, 26, (395,100,0): 55, 41, 28, (395,101,0): 54, 40, 27, (395,102,0): 54, 40, 27, (395,103,0): 54, 40, 27, (395,104,0): 54, 40, 29, (395,105,0): 54, 40, 29, (395,106,0): 54, 40, 31, (395,107,0): 54, 40, 31, (395,108,0): 54, 40, 31, (395,109,0): 54, 40, 31, (395,110,0): 54, 39, 32, (395,111,0): 53, 40, 32, (395,112,0): 53, 40, 34, (395,113,0): 50, 39, 33, (395,114,0): 51, 38, 32, (395,115,0): 50, 37, 31, (395,116,0): 50, 37, 31, (395,117,0): 51, 38, 32, (395,118,0): 53, 38, 33, (395,119,0): 54, 39, 34, (395,120,0): 55, 37, 33, (395,121,0): 56, 38, 34, (395,122,0): 58, 40, 36, (395,123,0): 60, 42, 38, (395,124,0): 65, 46, 42, (395,125,0): 68, 49, 45, (395,126,0): 71, 52, 48, (395,127,0): 73, 54, 48, (395,128,0): 73, 54, 47, (395,129,0): 74, 56, 46, (395,130,0): 75, 57, 45, (395,131,0): 77, 59, 47, (395,132,0): 80, 60, 49, (395,133,0): 81, 61, 50, (395,134,0): 84, 62, 49, (395,135,0): 84, 62, 49, (395,136,0): 84, 62, 49, (395,137,0): 85, 63, 49, (395,138,0): 88, 65, 51, (395,139,0): 90, 67, 53, (395,140,0): 93, 67, 52, (395,141,0): 93, 67, 52, (395,142,0): 93, 67, 52, (395,143,0): 93, 67, 54, (395,144,0): 95, 67, 56, (395,145,0): 96, 67, 59, (395,146,0): 98, 70, 59, (395,147,0): 99, 72, 61, (395,148,0): 101, 74, 63, (395,149,0): 103, 76, 65, (395,150,0): 105, 79, 66, (395,151,0): 106, 80, 67, (395,152,0): 100, 74, 59, (395,153,0): 104, 76, 62, (395,154,0): 110, 78, 65, (395,155,0): 112, 79, 64, (395,156,0): 114, 78, 64, (395,157,0): 116, 78, 65, (395,158,0): 121, 81, 69, (395,159,0): 126, 84, 72, (395,160,0): 131, 88, 79, (395,161,0): 136, 93, 86, (395,162,0): 145, 102, 95, (395,163,0): 153, 113, 105, (395,164,0): 161, 122, 115, (395,165,0): 172, 135, 127, (395,166,0): 179, 148, 143, (395,167,0): 183, 158, 154, (395,168,0): 189, 169, 168, (395,169,0): 191, 179, 179, (395,170,0): 193, 191, 194, (395,171,0): 187, 195, 198, (395,172,0): 177, 192, 197, (395,173,0): 165, 188, 194, (395,174,0): 161, 188, 195, (395,175,0): 160, 190, 200, (395,176,0): 162, 194, 209, (395,177,0): 162, 193, 213, (395,178,0): 160, 193, 212, (395,179,0): 160, 192, 213, (395,180,0): 159, 191, 212, (395,181,0): 157, 192, 214, (395,182,0): 157, 191, 216, (395,183,0): 158, 192, 219, (395,184,0): 156, 192, 218, (395,185,0): 156, 191, 219, (395,186,0): 155, 190, 218, (395,187,0): 154, 191, 220, (395,188,0): 153, 189, 221, (395,189,0): 153, 189, 221, (395,190,0): 152, 188, 220, (395,191,0): 150, 189, 222, (395,192,0): 150, 193, 227, (395,193,0): 149, 194, 227, (395,194,0): 148, 193, 226, (395,195,0): 148, 193, 226, (395,196,0): 147, 191, 226, (395,197,0): 147, 191, 226, (395,198,0): 146, 190, 227, (395,199,0): 146, 190, 227, (395,200,0): 144, 188, 225, (395,201,0): 144, 188, 225, (395,202,0): 144, 188, 227, (395,203,0): 144, 188, 227, (395,204,0): 144, 187, 229, (395,205,0): 144, 187, 229, (395,206,0): 144, 187, 229, (395,207,0): 145, 187, 229, (395,208,0): 146, 188, 228, (395,209,0): 146, 188, 228, (395,210,0): 146, 188, 228, (395,211,0): 145, 189, 228, (395,212,0): 145, 189, 228, (395,213,0): 144, 189, 228, (395,214,0): 144, 189, 228, (395,215,0): 144, 189, 228, (395,216,0): 145, 190, 229, (395,217,0): 145, 189, 228, (395,218,0): 145, 187, 227, (395,219,0): 146, 185, 226, (395,220,0): 147, 184, 226, (395,221,0): 149, 184, 226, (395,222,0): 151, 184, 227, (395,223,0): 151, 184, 229, (395,224,0): 150, 182, 229, (395,225,0): 153, 183, 233, (395,226,0): 157, 185, 233, (395,227,0): 160, 187, 234, (395,228,0): 165, 186, 231, (395,229,0): 168, 185, 229, (395,230,0): 174, 182, 228, (395,231,0): 177, 180, 225, (395,232,0): 183, 177, 223, (395,233,0): 190, 181, 228, (395,234,0): 194, 184, 234, (395,235,0): 192, 184, 235, (395,236,0): 186, 182, 232, (395,237,0): 180, 182, 231, (395,238,0): 175, 181, 231, (395,239,0): 169, 183, 230, (395,240,0): 157, 180, 224, (395,241,0): 154, 181, 226, (395,242,0): 152, 181, 225, (395,243,0): 151, 180, 224, (395,244,0): 148, 179, 225, (395,245,0): 147, 178, 224, (395,246,0): 146, 178, 225, (395,247,0): 144, 178, 226, (395,248,0): 147, 181, 229, (395,249,0): 145, 181, 231, (395,250,0): 145, 182, 234, (395,251,0): 145, 182, 235, (395,252,0): 144, 184, 236, (395,253,0): 144, 183, 238, (395,254,0): 144, 185, 239, (395,255,0): 144, 185, 239, (395,256,0): 147, 186, 245, (395,257,0): 148, 187, 246, (395,258,0): 149, 188, 247, (395,259,0): 151, 190, 249, (395,260,0): 150, 190, 251, (395,261,0): 150, 190, 251, (395,262,0): 148, 189, 251, (395,263,0): 148, 189, 251, (395,264,0): 146, 187, 249, (395,265,0): 146, 187, 249, (395,266,0): 144, 188, 251, (395,267,0): 143, 187, 250, (395,268,0): 141, 186, 251, (395,269,0): 140, 185, 250, (395,270,0): 140, 185, 250, (395,271,0): 140, 185, 250, (395,272,0): 138, 186, 252, (395,273,0): 137, 185, 251, (395,274,0): 137, 185, 251, (395,275,0): 135, 184, 250, (395,276,0): 136, 185, 251, (395,277,0): 137, 186, 252, (395,278,0): 138, 187, 253, (395,279,0): 140, 188, 254, (395,280,0): 139, 187, 253, (395,281,0): 142, 187, 254, (395,282,0): 146, 186, 255, (395,283,0): 148, 187, 255, (395,284,0): 151, 185, 255, (395,285,0): 151, 184, 255, (395,286,0): 152, 182, 254, (395,287,0): 149, 182, 253, (395,288,0): 148, 186, 255, (395,289,0): 147, 187, 255, (395,290,0): 148, 187, 255, (395,291,0): 151, 186, 254, (395,292,0): 154, 185, 252, (395,293,0): 155, 184, 252, (395,294,0): 156, 183, 252, (395,295,0): 156, 183, 254, (395,296,0): 156, 184, 255, (395,297,0): 159, 187, 255, (395,298,0): 159, 186, 255, (395,299,0): 159, 184, 251, (395,300,0): 163, 184, 247, (395,301,0): 162, 181, 240, (395,302,0): 153, 168, 225, (395,303,0): 141, 153, 201, (395,304,0): 124, 133, 166, (395,305,0): 119, 125, 151, (395,306,0): 113, 119, 143, (395,307,0): 113, 119, 141, (395,308,0): 110, 116, 138, (395,309,0): 106, 113, 132, (395,310,0): 107, 112, 134, (395,311,0): 112, 117, 139, (395,312,0): 118, 120, 145, (395,313,0): 125, 122, 149, (395,314,0): 127, 123, 150, (395,315,0): 126, 118, 142, (395,316,0): 126, 114, 136, (395,317,0): 124, 111, 128, (395,318,0): 115, 101, 114, (395,319,0): 106, 89, 97, (395,320,0): 92, 71, 78, (395,321,0): 86, 63, 69, (395,322,0): 78, 55, 63, (395,323,0): 73, 50, 58, (395,324,0): 74, 48, 57, (395,325,0): 77, 50, 57, (395,326,0): 81, 51, 59, (395,327,0): 82, 51, 57, (395,328,0): 82, 47, 53, (395,329,0): 88, 47, 53, (395,330,0): 96, 51, 54, (395,331,0): 104, 56, 56, (395,332,0): 112, 58, 58, (395,333,0): 110, 55, 52, (395,334,0): 107, 48, 44, (395,335,0): 98, 42, 41, (395,336,0): 81, 32, 36, (395,337,0): 74, 31, 38, (395,338,0): 69, 30, 35, (395,339,0): 63, 28, 34, (395,340,0): 58, 27, 35, (395,341,0): 54, 27, 36, (395,342,0): 51, 28, 38, (395,343,0): 50, 29, 38, (395,344,0): 47, 27, 36, (395,345,0): 47, 27, 36, (395,346,0): 48, 27, 36, (395,347,0): 49, 26, 36, (395,348,0): 51, 25, 34, (395,349,0): 52, 25, 34, (395,350,0): 54, 24, 32, (395,351,0): 54, 25, 30, (395,352,0): 49, 22, 27, (395,353,0): 48, 23, 26, (395,354,0): 48, 23, 26, (395,355,0): 48, 23, 26, (395,356,0): 48, 23, 26, (395,357,0): 48, 23, 26, (395,358,0): 49, 23, 26, (395,359,0): 49, 23, 26, (395,360,0): 54, 25, 29, (395,361,0): 54, 25, 29, (395,362,0): 54, 23, 28, (395,363,0): 54, 23, 28, (395,364,0): 54, 23, 28, (395,365,0): 54, 23, 28, (395,366,0): 55, 24, 29, (395,367,0): 55, 24, 29, (395,368,0): 56, 23, 30, (395,369,0): 55, 22, 29, (395,370,0): 55, 22, 29, (395,371,0): 53, 22, 28, (395,372,0): 52, 21, 27, (395,373,0): 49, 20, 25, (395,374,0): 47, 20, 27, (395,375,0): 45, 20, 26, (395,376,0): 44, 18, 27, (395,377,0): 42, 19, 27, (395,378,0): 41, 20, 29, (395,379,0): 40, 20, 29, (395,380,0): 39, 19, 28, (395,381,0): 39, 19, 28, (395,382,0): 38, 18, 27, (395,383,0): 35, 18, 26, (395,384,0): 36, 20, 30, (395,385,0): 35, 19, 29, (395,386,0): 35, 19, 29, (395,387,0): 34, 18, 28, (395,388,0): 35, 20, 27, (395,389,0): 36, 21, 28, (395,390,0): 37, 22, 27, (395,391,0): 38, 23, 28, (395,392,0): 43, 28, 33, (395,393,0): 44, 29, 34, (395,394,0): 45, 30, 33, (395,395,0): 46, 31, 34, (395,396,0): 46, 32, 32, (395,397,0): 46, 32, 32, (395,398,0): 45, 31, 31, (395,399,0): 44, 29, 32, (395,400,0): 42, 25, 31, (395,401,0): 41, 21, 30, (395,402,0): 38, 18, 27, (395,403,0): 38, 18, 27, (395,404,0): 40, 20, 29, (395,405,0): 42, 22, 31, (395,406,0): 42, 22, 31, (395,407,0): 41, 21, 30, (395,408,0): 44, 24, 33, (395,409,0): 44, 24, 33, (395,410,0): 44, 24, 33, (395,411,0): 44, 24, 33, (395,412,0): 43, 23, 32, (395,413,0): 43, 23, 32, (395,414,0): 43, 23, 32, (395,415,0): 43, 23, 32, (395,416,0): 42, 23, 29, (395,417,0): 42, 23, 27, (395,418,0): 42, 23, 27, (395,419,0): 44, 23, 28, (395,420,0): 45, 24, 29, (395,421,0): 46, 25, 30, (395,422,0): 46, 25, 30, (395,423,0): 46, 27, 31, (395,424,0): 46, 30, 33, (395,425,0): 45, 30, 33, (395,426,0): 43, 33, 34, (395,427,0): 45, 36, 37, (395,428,0): 49, 45, 44, (395,429,0): 55, 54, 52, (395,430,0): 62, 62, 60, (395,431,0): 67, 67, 69, (395,432,0): 74, 74, 82, (395,433,0): 76, 76, 86, (395,434,0): 80, 80, 90, (395,435,0): 85, 83, 94, (395,436,0): 85, 84, 92, (395,437,0): 78, 75, 84, (395,438,0): 66, 63, 70, (395,439,0): 58, 53, 60, (395,440,0): 48, 41, 49, (395,441,0): 41, 31, 39, (395,442,0): 36, 26, 34, (395,443,0): 38, 27, 33, (395,444,0): 39, 26, 33, (395,445,0): 35, 22, 29, (395,446,0): 35, 20, 27, (395,447,0): 36, 23, 30, (395,448,0): 32, 21, 29, (395,449,0): 33, 23, 31, (395,450,0): 36, 25, 31, (395,451,0): 37, 26, 30, (395,452,0): 40, 28, 30, (395,453,0): 46, 35, 33, (395,454,0): 55, 44, 40, (395,455,0): 63, 50, 44, (395,456,0): 63, 50, 42, (395,457,0): 64, 50, 39, (395,458,0): 67, 53, 40, (395,459,0): 76, 60, 44, (395,460,0): 86, 71, 52, (395,461,0): 94, 79, 58, (395,462,0): 99, 83, 60, (395,463,0): 101, 83, 61, (395,464,0): 94, 73, 54, (395,465,0): 90, 72, 52, (395,466,0): 89, 74, 53, (395,467,0): 92, 82, 57, (395,468,0): 100, 94, 68, (395,469,0): 109, 105, 76, (395,470,0): 114, 113, 83, (395,471,0): 117, 116, 85, (395,472,0): 126, 123, 90, (395,473,0): 122, 122, 86, (395,474,0): 118, 118, 82, (395,475,0): 114, 116, 77, (395,476,0): 110, 117, 76, (395,477,0): 110, 121, 78, (395,478,0): 111, 127, 82, (395,479,0): 115, 131, 84, (395,480,0): 128, 142, 93, (395,481,0): 120, 134, 83, (395,482,0): 112, 124, 78, (395,483,0): 111, 120, 77, (395,484,0): 112, 120, 81, (395,485,0): 111, 117, 81, (395,486,0): 105, 108, 77, (395,487,0): 99, 99, 71, (395,488,0): 92, 88, 63, (395,489,0): 88, 82, 60, (395,490,0): 84, 76, 57, (395,491,0): 83, 72, 54, (395,492,0): 84, 73, 55, (395,493,0): 86, 73, 56, (395,494,0): 85, 72, 55, (395,495,0): 86, 70, 55, (395,496,0): 80, 63, 53, (395,497,0): 77, 60, 52, (395,498,0): 72, 55, 48, (395,499,0): 70, 53, 46, (395,500,0): 71, 54, 47, (395,501,0): 70, 53, 46, (395,502,0): 68, 50, 46, (395,503,0): 66, 48, 44, (395,504,0): 60, 42, 40, (395,505,0): 59, 41, 39, (395,506,0): 58, 40, 38, (395,507,0): 56, 38, 36, (395,508,0): 53, 35, 35, (395,509,0): 50, 32, 32, (395,510,0): 47, 29, 29, (395,511,0): 46, 28, 28, (395,512,0): 44, 28, 29, (395,513,0): 43, 27, 28, (395,514,0): 43, 27, 28, (395,515,0): 42, 26, 27, (395,516,0): 41, 25, 26, (395,517,0): 40, 24, 25, (395,518,0): 40, 24, 25, (395,519,0): 39, 23, 24, (395,520,0): 41, 25, 26, (395,521,0): 41, 25, 26, (395,522,0): 42, 26, 27, (395,523,0): 43, 27, 28, (395,524,0): 44, 28, 29, (395,525,0): 45, 29, 30, (395,526,0): 46, 30, 31, (395,527,0): 45, 31, 31, (395,528,0): 48, 33, 36, (395,529,0): 47, 35, 37, (395,530,0): 50, 35, 38, (395,531,0): 51, 36, 39, (395,532,0): 54, 35, 39, (395,533,0): 54, 35, 39, (395,534,0): 54, 33, 38, (395,535,0): 53, 32, 37, (395,536,0): 51, 30, 35, (395,537,0): 52, 31, 36, (395,538,0): 53, 34, 38, (395,539,0): 53, 37, 40, (395,540,0): 55, 39, 42, (395,541,0): 54, 39, 42, (395,542,0): 51, 39, 41, (395,543,0): 50, 38, 40, (395,544,0): 52, 40, 40, (395,545,0): 55, 43, 43, (395,546,0): 59, 47, 47, (395,547,0): 63, 51, 51, (395,548,0): 65, 53, 53, (395,549,0): 66, 54, 54, (395,550,0): 65, 53, 53, (395,551,0): 64, 52, 52, (395,552,0): 58, 46, 46, (395,553,0): 59, 47, 47, (395,554,0): 61, 49, 49, (395,555,0): 61, 49, 49, (395,556,0): 59, 47, 47, (395,557,0): 55, 43, 43, (395,558,0): 50, 38, 38, (395,559,0): 47, 35, 35, (395,560,0): 43, 33, 32, (395,561,0): 38, 30, 28, (395,562,0): 35, 25, 24, (395,563,0): 32, 24, 22, (395,564,0): 31, 22, 23, (395,565,0): 28, 22, 22, (395,566,0): 26, 17, 22, (395,567,0): 21, 15, 19, (395,568,0): 25, 18, 25, (395,569,0): 24, 19, 25, (395,570,0): 26, 20, 30, (395,571,0): 27, 24, 33, (395,572,0): 32, 26, 38, (395,573,0): 32, 29, 40, (395,574,0): 32, 29, 40, (395,575,0): 31, 29, 40, (395,576,0): 27, 24, 35, (395,577,0): 27, 24, 33, (395,578,0): 26, 23, 32, (395,579,0): 23, 20, 29, (395,580,0): 23, 17, 27, (395,581,0): 25, 20, 27, (395,582,0): 31, 24, 32, (395,583,0): 38, 28, 36, (395,584,0): 36, 26, 34, (395,585,0): 38, 27, 35, (395,586,0): 39, 26, 35, (395,587,0): 42, 27, 34, (395,588,0): 43, 28, 35, (395,589,0): 44, 27, 33, (395,590,0): 45, 28, 36, (395,591,0): 45, 29, 32, (395,592,0): 50, 34, 34, (395,593,0): 49, 36, 30, (395,594,0): 51, 36, 31, (395,595,0): 53, 40, 34, (395,596,0): 58, 43, 38, (395,597,0): 63, 50, 44, (395,598,0): 69, 54, 49, (395,599,0): 71, 58, 52, (396,0,0): 77, 74, 55, (396,1,0): 77, 74, 55, (396,2,0): 77, 74, 55, (396,3,0): 78, 75, 56, (396,4,0): 80, 75, 56, (396,5,0): 81, 76, 57, (396,6,0): 81, 76, 57, (396,7,0): 81, 76, 57, (396,8,0): 81, 74, 56, (396,9,0): 81, 74, 56, (396,10,0): 82, 73, 56, (396,11,0): 82, 73, 56, (396,12,0): 82, 73, 56, (396,13,0): 83, 74, 57, (396,14,0): 85, 73, 57, (396,15,0): 85, 73, 57, (396,16,0): 87, 73, 60, (396,17,0): 87, 73, 60, (396,18,0): 87, 74, 58, (396,19,0): 88, 75, 59, (396,20,0): 88, 75, 59, (396,21,0): 89, 76, 59, (396,22,0): 89, 76, 59, (396,23,0): 89, 76, 59, (396,24,0): 89, 76, 57, (396,25,0): 90, 77, 58, (396,26,0): 91, 78, 59, (396,27,0): 93, 81, 59, (396,28,0): 94, 82, 60, (396,29,0): 96, 84, 62, (396,30,0): 97, 85, 63, (396,31,0): 98, 86, 64, (396,32,0): 103, 87, 64, (396,33,0): 104, 88, 65, (396,34,0): 105, 89, 64, (396,35,0): 107, 91, 66, (396,36,0): 107, 93, 67, (396,37,0): 109, 95, 69, (396,38,0): 110, 96, 69, (396,39,0): 111, 97, 70, (396,40,0): 111, 100, 70, (396,41,0): 111, 100, 70, (396,42,0): 110, 101, 70, (396,43,0): 111, 102, 71, (396,44,0): 111, 102, 69, (396,45,0): 112, 103, 70, (396,46,0): 110, 104, 70, (396,47,0): 110, 104, 70, (396,48,0): 116, 106, 71, (396,49,0): 116, 106, 71, (396,50,0): 116, 106, 71, (396,51,0): 116, 106, 71, (396,52,0): 116, 106, 71, (396,53,0): 116, 106, 71, (396,54,0): 116, 106, 71, (396,55,0): 116, 106, 71, (396,56,0): 118, 108, 73, (396,57,0): 117, 107, 72, (396,58,0): 115, 105, 70, (396,59,0): 116, 106, 71, (396,60,0): 117, 107, 72, (396,61,0): 116, 106, 71, (396,62,0): 113, 103, 68, (396,63,0): 109, 98, 66, (396,64,0): 106, 91, 62, (396,65,0): 101, 86, 57, (396,66,0): 94, 79, 50, (396,67,0): 89, 74, 45, (396,68,0): 84, 70, 43, (396,69,0): 80, 66, 39, (396,70,0): 74, 60, 34, (396,71,0): 70, 56, 30, (396,72,0): 69, 57, 33, (396,73,0): 70, 58, 34, (396,74,0): 71, 60, 38, (396,75,0): 74, 63, 41, (396,76,0): 75, 64, 44, (396,77,0): 76, 65, 45, (396,78,0): 74, 66, 45, (396,79,0): 74, 66, 45, (396,80,0): 76, 64, 42, (396,81,0): 76, 64, 42, (396,82,0): 75, 63, 41, (396,83,0): 74, 62, 40, (396,84,0): 73, 60, 41, (396,85,0): 72, 59, 40, (396,86,0): 72, 59, 40, (396,87,0): 71, 58, 39, (396,88,0): 68, 55, 38, (396,89,0): 67, 54, 37, (396,90,0): 64, 51, 35, (396,91,0): 61, 48, 32, (396,92,0): 59, 46, 30, (396,93,0): 58, 45, 29, (396,94,0): 58, 44, 31, (396,95,0): 58, 44, 31, (396,96,0): 56, 43, 27, (396,97,0): 56, 43, 27, (396,98,0): 56, 43, 27, (396,99,0): 55, 42, 26, (396,100,0): 55, 41, 28, (396,101,0): 54, 40, 27, (396,102,0): 54, 40, 27, (396,103,0): 54, 40, 27, (396,104,0): 54, 40, 29, (396,105,0): 54, 40, 29, (396,106,0): 54, 40, 31, (396,107,0): 54, 40, 31, (396,108,0): 54, 40, 31, (396,109,0): 54, 40, 31, (396,110,0): 54, 39, 32, (396,111,0): 53, 40, 32, (396,112,0): 52, 39, 33, (396,113,0): 49, 38, 32, (396,114,0): 50, 37, 31, (396,115,0): 49, 36, 30, (396,116,0): 49, 36, 30, (396,117,0): 50, 37, 31, (396,118,0): 52, 37, 32, (396,119,0): 53, 38, 33, (396,120,0): 55, 37, 33, (396,121,0): 56, 38, 34, (396,122,0): 57, 39, 35, (396,123,0): 59, 41, 37, (396,124,0): 64, 45, 41, (396,125,0): 68, 49, 45, (396,126,0): 72, 53, 49, (396,127,0): 75, 56, 50, (396,128,0): 73, 56, 48, (396,129,0): 73, 56, 46, (396,130,0): 75, 57, 47, (396,131,0): 76, 58, 48, (396,132,0): 78, 60, 48, (396,133,0): 80, 62, 50, (396,134,0): 82, 62, 51, (396,135,0): 83, 64, 50, (396,136,0): 84, 62, 49, (396,137,0): 85, 63, 50, (396,138,0): 87, 65, 51, (396,139,0): 88, 66, 52, (396,140,0): 91, 68, 54, (396,141,0): 91, 68, 54, (396,142,0): 91, 68, 52, (396,143,0): 92, 66, 53, (396,144,0): 94, 66, 55, (396,145,0): 95, 66, 58, (396,146,0): 97, 68, 60, (396,147,0): 98, 71, 62, (396,148,0): 101, 74, 63, (396,149,0): 101, 77, 65, (396,150,0): 103, 80, 66, (396,151,0): 104, 81, 67, (396,152,0): 102, 79, 63, (396,153,0): 105, 79, 64, (396,154,0): 107, 78, 62, (396,155,0): 108, 76, 61, (396,156,0): 109, 73, 59, (396,157,0): 112, 75, 59, (396,158,0): 117, 78, 63, (396,159,0): 123, 81, 69, (396,160,0): 129, 86, 79, (396,161,0): 134, 89, 83, (396,162,0): 139, 94, 88, (396,163,0): 143, 100, 93, (396,164,0): 150, 107, 100, (396,165,0): 158, 117, 111, (396,166,0): 168, 131, 125, (396,167,0): 173, 140, 135, (396,168,0): 184, 156, 153, (396,169,0): 191, 171, 170, (396,170,0): 199, 189, 190, (396,171,0): 201, 199, 202, (396,172,0): 193, 198, 202, (396,173,0): 181, 194, 200, (396,174,0): 175, 192, 199, (396,175,0): 170, 192, 203, (396,176,0): 168, 194, 209, (396,177,0): 166, 195, 213, (396,178,0): 166, 195, 213, (396,179,0): 166, 194, 215, (396,180,0): 164, 195, 215, (396,181,0): 164, 195, 216, (396,182,0): 163, 194, 215, (396,183,0): 162, 194, 217, (396,184,0): 158, 190, 215, (396,185,0): 158, 189, 217, (396,186,0): 156, 190, 217, (396,187,0): 155, 189, 217, (396,188,0): 155, 189, 217, (396,189,0): 153, 188, 218, (396,190,0): 153, 188, 218, (396,191,0): 152, 188, 220, (396,192,0): 151, 192, 224, (396,193,0): 149, 192, 226, (396,194,0): 148, 191, 225, (396,195,0): 148, 191, 225, (396,196,0): 147, 190, 225, (396,197,0): 147, 190, 225, (396,198,0): 146, 188, 226, (396,199,0): 146, 188, 226, (396,200,0): 145, 187, 225, (396,201,0): 145, 187, 225, (396,202,0): 145, 187, 227, (396,203,0): 145, 187, 227, (396,204,0): 145, 187, 229, (396,205,0): 145, 187, 229, (396,206,0): 145, 187, 229, (396,207,0): 145, 187, 229, (396,208,0): 147, 189, 229, (396,209,0): 146, 190, 227, (396,210,0): 146, 190, 227, (396,211,0): 145, 191, 227, (396,212,0): 145, 191, 227, (396,213,0): 143, 191, 227, (396,214,0): 143, 191, 227, (396,215,0): 143, 191, 227, (396,216,0): 144, 192, 228, (396,217,0): 145, 191, 227, (396,218,0): 144, 188, 225, (396,219,0): 144, 186, 224, (396,220,0): 145, 184, 223, (396,221,0): 146, 184, 223, (396,222,0): 149, 184, 224, (396,223,0): 150, 183, 226, (396,224,0): 149, 182, 227, (396,225,0): 152, 183, 229, (396,226,0): 155, 186, 232, (396,227,0): 156, 187, 231, (396,228,0): 159, 188, 230, (396,229,0): 159, 186, 229, (396,230,0): 161, 182, 225, (396,231,0): 165, 179, 224, (396,232,0): 173, 184, 230, (396,233,0): 176, 182, 230, (396,234,0): 179, 182, 233, (396,235,0): 178, 181, 232, (396,236,0): 174, 180, 230, (396,237,0): 168, 178, 227, (396,238,0): 168, 182, 231, (396,239,0): 169, 187, 235, (396,240,0): 157, 181, 227, (396,241,0): 155, 182, 229, (396,242,0): 153, 181, 228, (396,243,0): 152, 180, 227, (396,244,0): 149, 180, 227, (396,245,0): 147, 177, 227, (396,246,0): 146, 178, 227, (396,247,0): 144, 177, 228, (396,248,0): 147, 180, 233, (396,249,0): 145, 180, 234, (396,250,0): 145, 182, 235, (396,251,0): 145, 182, 237, (396,252,0): 144, 183, 238, (396,253,0): 144, 183, 240, (396,254,0): 144, 185, 241, (396,255,0): 144, 184, 243, (396,256,0): 146, 185, 244, (396,257,0): 147, 185, 247, (396,258,0): 149, 187, 249, (396,259,0): 150, 188, 250, (396,260,0): 150, 190, 252, (396,261,0): 149, 189, 251, (396,262,0): 148, 189, 253, (396,263,0): 147, 188, 252, (396,264,0): 145, 186, 250, (396,265,0): 145, 186, 250, (396,266,0): 143, 187, 252, (396,267,0): 143, 187, 252, (396,268,0): 141, 186, 253, (396,269,0): 141, 186, 253, (396,270,0): 141, 186, 253, (396,271,0): 141, 186, 253, (396,272,0): 140, 185, 252, (396,273,0): 139, 184, 251, (396,274,0): 139, 184, 251, (396,275,0): 137, 185, 251, (396,276,0): 137, 185, 251, (396,277,0): 139, 187, 253, (396,278,0): 140, 188, 254, (396,279,0): 143, 188, 255, (396,280,0): 143, 186, 254, (396,281,0): 146, 186, 255, (396,282,0): 149, 186, 255, (396,283,0): 151, 185, 255, (396,284,0): 155, 185, 255, (396,285,0): 156, 184, 255, (396,286,0): 157, 183, 255, (396,287,0): 155, 185, 255, (396,288,0): 149, 187, 255, (396,289,0): 148, 188, 255, (396,290,0): 150, 187, 255, (396,291,0): 153, 186, 255, (396,292,0): 156, 185, 253, (396,293,0): 157, 184, 253, (396,294,0): 159, 183, 255, (396,295,0): 157, 184, 255, (396,296,0): 157, 185, 255, (396,297,0): 159, 187, 255, (396,298,0): 158, 184, 255, (396,299,0): 157, 181, 253, (396,300,0): 158, 181, 249, (396,301,0): 160, 179, 245, (396,302,0): 151, 167, 229, (396,303,0): 141, 154, 206, (396,304,0): 130, 138, 174, (396,305,0): 126, 132, 158, (396,306,0): 120, 128, 151, (396,307,0): 118, 126, 147, (396,308,0): 113, 121, 142, (396,309,0): 106, 114, 135, (396,310,0): 105, 111, 135, (396,311,0): 111, 115, 140, (396,312,0): 121, 122, 150, (396,313,0): 126, 126, 152, (396,314,0): 128, 124, 151, (396,315,0): 127, 119, 143, (396,316,0): 124, 115, 136, (396,317,0): 123, 110, 127, (396,318,0): 113, 99, 112, (396,319,0): 103, 87, 97, (396,320,0): 93, 72, 79, (396,321,0): 87, 64, 70, (396,322,0): 78, 55, 61, (396,323,0): 73, 50, 56, (396,324,0): 75, 50, 56, (396,325,0): 77, 50, 57, (396,326,0): 81, 51, 59, (396,327,0): 83, 50, 57, (396,328,0): 85, 48, 55, (396,329,0): 90, 49, 53, (396,330,0): 98, 52, 55, (396,331,0): 106, 56, 57, (396,332,0): 112, 56, 55, (396,333,0): 110, 52, 50, (396,334,0): 104, 43, 40, (396,335,0): 95, 37, 36, (396,336,0): 77, 31, 34, (396,337,0): 71, 30, 38, (396,338,0): 66, 29, 36, (396,339,0): 61, 28, 35, (396,340,0): 57, 27, 35, (396,341,0): 53, 27, 36, (396,342,0): 50, 29, 38, (396,343,0): 49, 29, 40, (396,344,0): 46, 26, 37, (396,345,0): 46, 26, 37, (396,346,0): 47, 26, 35, (396,347,0): 48, 25, 35, (396,348,0): 50, 24, 33, (396,349,0): 51, 24, 33, (396,350,0): 53, 23, 31, (396,351,0): 51, 24, 29, (396,352,0): 48, 23, 27, (396,353,0): 46, 24, 26, (396,354,0): 46, 24, 26, (396,355,0): 46, 24, 26, (396,356,0): 48, 23, 26, (396,357,0): 48, 23, 26, (396,358,0): 49, 23, 26, (396,359,0): 49, 23, 26, (396,360,0): 51, 25, 28, (396,361,0): 51, 25, 28, (396,362,0): 54, 25, 29, (396,363,0): 54, 25, 29, (396,364,0): 55, 24, 29, (396,365,0): 55, 24, 29, (396,366,0): 54, 23, 28, (396,367,0): 54, 23, 28, (396,368,0): 54, 23, 29, (396,369,0): 53, 22, 28, (396,370,0): 53, 22, 28, (396,371,0): 51, 20, 26, (396,372,0): 50, 19, 27, (396,373,0): 48, 18, 26, (396,374,0): 46, 19, 28, (396,375,0): 44, 18, 27, (396,376,0): 45, 19, 28, (396,377,0): 42, 19, 27, (396,378,0): 40, 19, 28, (396,379,0): 39, 19, 28, (396,380,0): 38, 18, 29, (396,381,0): 36, 19, 29, (396,382,0): 36, 19, 29, (396,383,0): 36, 19, 29, (396,384,0): 36, 20, 30, (396,385,0): 35, 19, 29, (396,386,0): 35, 19, 29, (396,387,0): 35, 19, 29, (396,388,0): 35, 20, 27, (396,389,0): 37, 22, 29, (396,390,0): 38, 23, 28, (396,391,0): 39, 24, 29, (396,392,0): 44, 29, 34, (396,393,0): 45, 30, 35, (396,394,0): 46, 31, 34, (396,395,0): 46, 31, 34, (396,396,0): 46, 32, 32, (396,397,0): 45, 31, 31, (396,398,0): 44, 30, 30, (396,399,0): 43, 28, 31, (396,400,0): 41, 24, 32, (396,401,0): 39, 22, 32, (396,402,0): 36, 19, 29, (396,403,0): 37, 20, 30, (396,404,0): 39, 22, 32, (396,405,0): 40, 23, 33, (396,406,0): 39, 22, 32, (396,407,0): 38, 21, 31, (396,408,0): 41, 24, 34, (396,409,0): 41, 24, 34, (396,410,0): 41, 24, 34, (396,411,0): 41, 24, 34, (396,412,0): 42, 25, 35, (396,413,0): 42, 25, 35, (396,414,0): 42, 25, 35, (396,415,0): 42, 25, 33, (396,416,0): 40, 23, 29, (396,417,0): 41, 24, 30, (396,418,0): 41, 24, 30, (396,419,0): 44, 25, 31, (396,420,0): 44, 25, 31, (396,421,0): 44, 25, 31, (396,422,0): 44, 25, 31, (396,423,0): 44, 25, 31, (396,424,0): 44, 27, 33, (396,425,0): 43, 28, 33, (396,426,0): 41, 29, 33, (396,427,0): 43, 32, 36, (396,428,0): 44, 38, 40, (396,429,0): 50, 46, 47, (396,430,0): 56, 52, 53, (396,431,0): 58, 56, 59, (396,432,0): 64, 63, 71, (396,433,0): 67, 65, 76, (396,434,0): 71, 69, 80, (396,435,0): 76, 73, 84, (396,436,0): 76, 73, 82, (396,437,0): 71, 65, 75, (396,438,0): 61, 54, 62, (396,439,0): 55, 45, 54, (396,440,0): 49, 39, 47, (396,441,0): 41, 30, 38, (396,442,0): 36, 23, 32, (396,443,0): 38, 25, 32, (396,444,0): 40, 25, 32, (396,445,0): 35, 20, 25, (396,446,0): 34, 19, 24, (396,447,0): 35, 23, 27, (396,448,0): 31, 20, 26, (396,449,0): 32, 22, 30, (396,450,0): 34, 25, 30, (396,451,0): 36, 27, 30, (396,452,0): 40, 30, 31, (396,453,0): 46, 36, 34, (396,454,0): 54, 45, 40, (396,455,0): 62, 52, 43, (396,456,0): 67, 57, 47, (396,457,0): 69, 57, 43, (396,458,0): 71, 59, 43, (396,459,0): 79, 66, 49, (396,460,0): 88, 76, 54, (396,461,0): 96, 84, 60, (396,462,0): 100, 88, 64, (396,463,0): 104, 88, 65, (396,464,0): 103, 81, 60, (396,465,0): 101, 76, 56, (396,466,0): 95, 74, 53, (396,467,0): 96, 80, 55, (396,468,0): 102, 92, 65, (396,469,0): 111, 104, 75, (396,470,0): 116, 111, 81, (396,471,0): 118, 113, 81, (396,472,0): 123, 119, 84, (396,473,0): 121, 117, 80, (396,474,0): 117, 115, 77, (396,475,0): 113, 114, 74, (396,476,0): 110, 115, 74, (396,477,0): 110, 119, 74, (396,478,0): 108, 121, 75, (396,479,0): 107, 123, 74, (396,480,0): 118, 132, 81, (396,481,0): 116, 128, 78, (396,482,0): 116, 125, 80, (396,483,0): 116, 125, 82, (396,484,0): 116, 122, 84, (396,485,0): 111, 115, 82, (396,486,0): 102, 102, 74, (396,487,0): 94, 92, 69, (396,488,0): 89, 84, 64, (396,489,0): 85, 78, 59, (396,490,0): 79, 70, 53, (396,491,0): 78, 66, 50, (396,492,0): 79, 66, 50, (396,493,0): 82, 66, 51, (396,494,0): 82, 66, 51, (396,495,0): 82, 66, 51, (396,496,0): 78, 61, 51, (396,497,0): 72, 58, 49, (396,498,0): 69, 54, 47, (396,499,0): 68, 53, 46, (396,500,0): 69, 54, 47, (396,501,0): 70, 55, 48, (396,502,0): 68, 53, 48, (396,503,0): 66, 51, 46, (396,504,0): 59, 44, 41, (396,505,0): 58, 43, 40, (396,506,0): 57, 42, 39, (396,507,0): 55, 40, 37, (396,508,0): 52, 36, 36, (396,509,0): 49, 33, 33, (396,510,0): 46, 30, 30, (396,511,0): 45, 29, 29, (396,512,0): 45, 29, 30, (396,513,0): 44, 28, 29, (396,514,0): 43, 27, 28, (396,515,0): 42, 26, 27, (396,516,0): 41, 25, 26, (396,517,0): 40, 24, 25, (396,518,0): 39, 23, 24, (396,519,0): 38, 22, 23, (396,520,0): 40, 24, 25, (396,521,0): 40, 24, 25, (396,522,0): 41, 25, 26, (396,523,0): 42, 26, 27, (396,524,0): 43, 27, 28, (396,525,0): 44, 28, 29, (396,526,0): 45, 29, 30, (396,527,0): 44, 30, 30, (396,528,0): 44, 29, 32, (396,529,0): 43, 31, 35, (396,530,0): 47, 32, 37, (396,531,0): 48, 33, 38, (396,532,0): 51, 32, 38, (396,533,0): 50, 31, 37, (396,534,0): 50, 29, 36, (396,535,0): 50, 29, 36, (396,536,0): 48, 27, 34, (396,537,0): 50, 29, 36, (396,538,0): 50, 31, 37, (396,539,0): 50, 33, 39, (396,540,0): 50, 33, 39, (396,541,0): 49, 34, 39, (396,542,0): 47, 35, 39, (396,543,0): 48, 36, 38, (396,544,0): 55, 41, 41, (396,545,0): 57, 43, 43, (396,546,0): 60, 46, 46, (396,547,0): 64, 50, 50, (396,548,0): 66, 52, 52, (396,549,0): 66, 52, 52, (396,550,0): 66, 52, 52, (396,551,0): 65, 51, 51, (396,552,0): 59, 45, 45, (396,553,0): 60, 46, 46, (396,554,0): 61, 47, 47, (396,555,0): 60, 46, 46, (396,556,0): 58, 44, 44, (396,557,0): 54, 40, 40, (396,558,0): 50, 36, 36, (396,559,0): 45, 33, 33, (396,560,0): 43, 31, 31, (396,561,0): 39, 29, 28, (396,562,0): 37, 25, 25, (396,563,0): 35, 25, 24, (396,564,0): 34, 24, 25, (396,565,0): 32, 23, 24, (396,566,0): 29, 18, 24, (396,567,0): 24, 15, 20, (396,568,0): 31, 21, 29, (396,569,0): 30, 23, 30, (396,570,0): 32, 24, 35, (396,571,0): 33, 27, 37, (396,572,0): 33, 25, 38, (396,573,0): 32, 26, 38, (396,574,0): 31, 25, 37, (396,575,0): 29, 26, 37, (396,576,0): 29, 23, 33, (396,577,0): 30, 25, 32, (396,578,0): 29, 24, 31, (396,579,0): 27, 22, 29, (396,580,0): 27, 20, 28, (396,581,0): 30, 20, 28, (396,582,0): 35, 25, 33, (396,583,0): 40, 29, 35, (396,584,0): 40, 27, 34, (396,585,0): 42, 27, 34, (396,586,0): 43, 28, 35, (396,587,0): 45, 28, 34, (396,588,0): 46, 29, 35, (396,589,0): 49, 30, 34, (396,590,0): 50, 31, 37, (396,591,0): 50, 31, 35, (396,592,0): 52, 34, 34, (396,593,0): 51, 36, 33, (396,594,0): 55, 37, 35, (396,595,0): 56, 41, 38, (396,596,0): 63, 45, 43, (396,597,0): 67, 52, 49, (396,598,0): 74, 56, 54, (396,599,0): 74, 59, 56, (397,0,0): 77, 74, 55, (397,1,0): 77, 74, 55, (397,2,0): 77, 74, 55, (397,3,0): 78, 75, 56, (397,4,0): 80, 75, 56, (397,5,0): 81, 76, 57, (397,6,0): 81, 76, 57, (397,7,0): 81, 76, 57, (397,8,0): 81, 74, 56, (397,9,0): 81, 74, 56, (397,10,0): 82, 73, 56, (397,11,0): 83, 74, 57, (397,12,0): 83, 74, 57, (397,13,0): 83, 74, 57, (397,14,0): 86, 74, 58, (397,15,0): 86, 74, 58, (397,16,0): 88, 74, 61, (397,17,0): 88, 74, 61, (397,18,0): 88, 75, 59, (397,19,0): 88, 75, 59, (397,20,0): 88, 75, 59, (397,21,0): 88, 75, 59, (397,22,0): 88, 75, 58, (397,23,0): 88, 75, 58, (397,24,0): 88, 75, 56, (397,25,0): 89, 76, 57, (397,26,0): 90, 77, 58, (397,27,0): 92, 79, 60, (397,28,0): 93, 81, 59, (397,29,0): 95, 83, 61, (397,30,0): 96, 84, 62, (397,31,0): 97, 85, 63, (397,32,0): 103, 87, 64, (397,33,0): 104, 88, 65, (397,34,0): 105, 89, 64, (397,35,0): 107, 91, 66, (397,36,0): 107, 93, 67, (397,37,0): 109, 95, 69, (397,38,0): 110, 96, 69, (397,39,0): 111, 97, 70, (397,40,0): 111, 100, 70, (397,41,0): 111, 100, 70, (397,42,0): 110, 101, 70, (397,43,0): 111, 102, 71, (397,44,0): 111, 102, 69, (397,45,0): 112, 103, 70, (397,46,0): 110, 104, 70, (397,47,0): 110, 104, 70, (397,48,0): 116, 106, 71, (397,49,0): 116, 106, 71, (397,50,0): 116, 106, 71, (397,51,0): 117, 107, 72, (397,52,0): 118, 108, 73, (397,53,0): 118, 108, 73, (397,54,0): 119, 109, 74, (397,55,0): 119, 109, 74, (397,56,0): 121, 111, 76, (397,57,0): 120, 110, 75, (397,58,0): 118, 108, 73, (397,59,0): 119, 109, 74, (397,60,0): 120, 110, 75, (397,61,0): 119, 109, 74, (397,62,0): 116, 106, 71, (397,63,0): 112, 102, 67, (397,64,0): 109, 94, 63, (397,65,0): 105, 90, 61, (397,66,0): 98, 83, 54, (397,67,0): 93, 78, 49, (397,68,0): 89, 75, 48, (397,69,0): 84, 70, 43, (397,70,0): 78, 64, 38, (397,71,0): 73, 59, 33, (397,72,0): 67, 55, 31, (397,73,0): 69, 57, 33, (397,74,0): 70, 59, 37, (397,75,0): 73, 62, 40, (397,76,0): 75, 64, 44, (397,77,0): 76, 65, 45, (397,78,0): 75, 67, 46, (397,79,0): 75, 67, 46, (397,80,0): 76, 64, 42, (397,81,0): 75, 63, 41, (397,82,0): 74, 62, 40, (397,83,0): 73, 61, 39, (397,84,0): 71, 58, 39, (397,85,0): 70, 57, 38, (397,86,0): 69, 56, 37, (397,87,0): 68, 55, 36, (397,88,0): 66, 53, 36, (397,89,0): 64, 51, 34, (397,90,0): 62, 49, 33, (397,91,0): 60, 47, 31, (397,92,0): 58, 45, 29, (397,93,0): 57, 44, 28, (397,94,0): 57, 43, 30, (397,95,0): 57, 43, 30, (397,96,0): 56, 43, 27, (397,97,0): 56, 43, 27, (397,98,0): 56, 43, 27, (397,99,0): 55, 42, 26, (397,100,0): 55, 41, 28, (397,101,0): 54, 40, 27, (397,102,0): 54, 40, 27, (397,103,0): 54, 40, 27, (397,104,0): 54, 40, 29, (397,105,0): 54, 40, 29, (397,106,0): 54, 40, 31, (397,107,0): 54, 40, 31, (397,108,0): 54, 40, 31, (397,109,0): 54, 40, 31, (397,110,0): 54, 39, 32, (397,111,0): 53, 40, 32, (397,112,0): 52, 39, 33, (397,113,0): 49, 38, 32, (397,114,0): 50, 37, 31, (397,115,0): 49, 36, 30, (397,116,0): 49, 36, 30, (397,117,0): 50, 37, 31, (397,118,0): 52, 37, 32, (397,119,0): 53, 38, 33, (397,120,0): 55, 37, 33, (397,121,0): 55, 37, 33, (397,122,0): 56, 38, 34, (397,123,0): 58, 40, 36, (397,124,0): 62, 43, 39, (397,125,0): 67, 48, 44, (397,126,0): 72, 53, 49, (397,127,0): 74, 55, 49, (397,128,0): 73, 56, 48, (397,129,0): 73, 56, 46, (397,130,0): 75, 57, 47, (397,131,0): 76, 58, 48, (397,132,0): 77, 59, 47, (397,133,0): 79, 61, 49, (397,134,0): 83, 63, 52, (397,135,0): 84, 64, 53, (397,136,0): 83, 61, 48, (397,137,0): 84, 62, 49, (397,138,0): 86, 64, 50, (397,139,0): 88, 66, 52, (397,140,0): 90, 67, 53, (397,141,0): 90, 67, 53, (397,142,0): 90, 67, 51, (397,143,0): 92, 66, 53, (397,144,0): 93, 64, 56, (397,145,0): 94, 65, 57, (397,146,0): 96, 67, 59, (397,147,0): 97, 70, 61, (397,148,0): 97, 73, 61, (397,149,0): 99, 77, 64, (397,150,0): 101, 79, 65, (397,151,0): 101, 79, 65, (397,152,0): 105, 82, 66, (397,153,0): 106, 83, 67, (397,154,0): 108, 81, 64, (397,155,0): 106, 77, 61, (397,156,0): 106, 73, 56, (397,157,0): 109, 73, 57, (397,158,0): 114, 77, 61, (397,159,0): 118, 78, 66, (397,160,0): 119, 76, 69, (397,161,0): 123, 78, 73, (397,162,0): 127, 82, 77, (397,163,0): 131, 86, 80, (397,164,0): 137, 92, 86, (397,165,0): 145, 100, 94, (397,166,0): 153, 112, 106, (397,167,0): 158, 121, 115, (397,168,0): 173, 139, 137, (397,169,0): 181, 155, 154, (397,170,0): 195, 177, 177, (397,171,0): 203, 193, 194, (397,172,0): 200, 198, 201, (397,173,0): 194, 197, 202, (397,174,0): 186, 195, 202, (397,175,0): 180, 194, 203, (397,176,0): 170, 192, 206, (397,177,0): 166, 193, 210, (397,178,0): 169, 195, 212, (397,179,0): 168, 195, 214, (397,180,0): 169, 196, 215, (397,181,0): 167, 195, 216, (397,182,0): 166, 194, 215, (397,183,0): 164, 195, 216, (397,184,0): 162, 190, 214, (397,185,0): 159, 189, 215, (397,186,0): 159, 189, 215, (397,187,0): 157, 188, 216, (397,188,0): 157, 188, 217, (397,189,0): 154, 188, 216, (397,190,0): 156, 187, 216, (397,191,0): 153, 188, 218, (397,192,0): 150, 191, 223, (397,193,0): 148, 191, 225, (397,194,0): 147, 190, 224, (397,195,0): 147, 190, 224, (397,196,0): 146, 189, 224, (397,197,0): 146, 189, 224, (397,198,0): 145, 187, 225, (397,199,0): 145, 187, 225, (397,200,0): 144, 186, 224, (397,201,0): 144, 186, 224, (397,202,0): 144, 186, 226, (397,203,0): 144, 186, 226, (397,204,0): 144, 186, 228, (397,205,0): 144, 186, 228, (397,206,0): 144, 186, 228, (397,207,0): 144, 186, 226, (397,208,0): 146, 190, 229, (397,209,0): 145, 191, 227, (397,210,0): 145, 191, 227, (397,211,0): 143, 191, 227, (397,212,0): 143, 191, 227, (397,213,0): 142, 192, 227, (397,214,0): 142, 192, 227, (397,215,0): 142, 192, 227, (397,216,0): 145, 193, 229, (397,217,0): 144, 192, 228, (397,218,0): 144, 190, 226, (397,219,0): 143, 187, 224, (397,220,0): 143, 185, 223, (397,221,0): 145, 184, 223, (397,222,0): 146, 184, 223, (397,223,0): 149, 184, 224, (397,224,0): 149, 182, 223, (397,225,0): 151, 183, 224, (397,226,0): 152, 185, 226, (397,227,0): 153, 188, 228, (397,228,0): 153, 188, 228, (397,229,0): 152, 187, 227, (397,230,0): 153, 185, 226, (397,231,0): 154, 181, 224, (397,232,0): 163, 186, 230, (397,233,0): 164, 182, 230, (397,234,0): 164, 180, 229, (397,235,0): 166, 180, 229, (397,236,0): 163, 177, 226, (397,237,0): 158, 174, 225, (397,238,0): 160, 178, 228, (397,239,0): 163, 185, 234, (397,240,0): 159, 183, 231, (397,241,0): 156, 183, 230, (397,242,0): 154, 182, 230, (397,243,0): 153, 181, 229, (397,244,0): 149, 179, 229, (397,245,0): 148, 178, 230, (397,246,0): 145, 177, 228, (397,247,0): 144, 177, 230, (397,248,0): 147, 180, 234, (397,249,0): 145, 180, 234, (397,250,0): 145, 182, 237, (397,251,0): 145, 181, 239, (397,252,0): 144, 183, 240, (397,253,0): 144, 183, 242, (397,254,0): 144, 184, 243, (397,255,0): 144, 184, 243, (397,256,0): 145, 183, 245, (397,257,0): 146, 184, 246, (397,258,0): 148, 186, 248, (397,259,0): 149, 187, 249, (397,260,0): 148, 188, 250, (397,261,0): 148, 188, 250, (397,262,0): 146, 187, 251, (397,263,0): 146, 187, 251, (397,264,0): 145, 186, 250, (397,265,0): 145, 186, 250, (397,266,0): 143, 187, 252, (397,267,0): 143, 187, 252, (397,268,0): 141, 186, 253, (397,269,0): 141, 186, 253, (397,270,0): 141, 186, 253, (397,271,0): 141, 186, 253, (397,272,0): 139, 184, 251, (397,273,0): 139, 184, 251, (397,274,0): 139, 184, 251, (397,275,0): 139, 184, 251, (397,276,0): 140, 185, 252, (397,277,0): 142, 187, 254, (397,278,0): 144, 189, 255, (397,279,0): 146, 189, 255, (397,280,0): 148, 188, 255, (397,281,0): 148, 187, 255, (397,282,0): 151, 185, 255, (397,283,0): 152, 185, 255, (397,284,0): 156, 184, 255, (397,285,0): 159, 185, 255, (397,286,0): 164, 188, 255, (397,287,0): 162, 190, 255, (397,288,0): 150, 188, 255, (397,289,0): 149, 189, 255, (397,290,0): 151, 188, 255, (397,291,0): 154, 187, 255, (397,292,0): 157, 186, 254, (397,293,0): 158, 185, 254, (397,294,0): 160, 184, 255, (397,295,0): 160, 184, 255, (397,296,0): 159, 185, 255, (397,297,0): 158, 185, 255, (397,298,0): 157, 183, 255, (397,299,0): 155, 178, 254, (397,300,0): 157, 179, 252, (397,301,0): 159, 179, 248, (397,302,0): 151, 169, 235, (397,303,0): 143, 156, 211, (397,304,0): 137, 145, 182, (397,305,0): 134, 139, 168, (397,306,0): 128, 135, 161, (397,307,0): 125, 133, 156, (397,308,0): 117, 125, 146, (397,309,0): 107, 115, 136, (397,310,0): 107, 113, 137, (397,311,0): 111, 117, 141, (397,312,0): 123, 124, 152, (397,313,0): 128, 128, 156, (397,314,0): 130, 126, 153, (397,315,0): 128, 119, 146, (397,316,0): 125, 116, 137, (397,317,0): 122, 111, 128, (397,318,0): 113, 99, 112, (397,319,0): 102, 86, 96, (397,320,0): 95, 74, 81, (397,321,0): 90, 67, 73, (397,322,0): 82, 59, 65, (397,323,0): 79, 54, 60, (397,324,0): 79, 52, 59, (397,325,0): 82, 52, 60, (397,326,0): 83, 52, 58, (397,327,0): 83, 51, 56, (397,328,0): 88, 51, 58, (397,329,0): 93, 51, 55, (397,330,0): 101, 52, 56, (397,331,0): 106, 54, 56, (397,332,0): 110, 54, 53, (397,333,0): 107, 48, 44, (397,334,0): 101, 37, 35, (397,335,0): 90, 32, 31, (397,336,0): 76, 29, 35, (397,337,0): 70, 30, 38, (397,338,0): 66, 29, 37, (397,339,0): 62, 29, 38, (397,340,0): 58, 28, 38, (397,341,0): 53, 27, 38, (397,342,0): 49, 27, 39, (397,343,0): 47, 27, 38, (397,344,0): 44, 27, 37, (397,345,0): 44, 27, 37, (397,346,0): 46, 26, 37, (397,347,0): 47, 26, 35, (397,348,0): 48, 25, 33, (397,349,0): 50, 24, 33, (397,350,0): 53, 23, 31, (397,351,0): 51, 24, 29, (397,352,0): 48, 23, 27, (397,353,0): 46, 24, 26, (397,354,0): 46, 24, 26, (397,355,0): 46, 24, 26, (397,356,0): 48, 23, 26, (397,357,0): 48, 23, 26, (397,358,0): 49, 23, 26, (397,359,0): 49, 23, 26, (397,360,0): 50, 24, 27, (397,361,0): 51, 25, 28, (397,362,0): 54, 25, 29, (397,363,0): 55, 26, 30, (397,364,0): 56, 25, 30, (397,365,0): 55, 24, 29, (397,366,0): 54, 23, 28, (397,367,0): 53, 22, 27, (397,368,0): 53, 22, 28, (397,369,0): 52, 21, 27, (397,370,0): 52, 21, 27, (397,371,0): 49, 20, 25, (397,372,0): 48, 18, 26, (397,373,0): 45, 18, 25, (397,374,0): 44, 18, 27, (397,375,0): 43, 17, 26, (397,376,0): 43, 20, 28, (397,377,0): 41, 20, 27, (397,378,0): 39, 19, 28, (397,379,0): 37, 17, 26, (397,380,0): 35, 18, 28, (397,381,0): 35, 18, 28, (397,382,0): 36, 19, 29, (397,383,0): 35, 19, 29, (397,384,0): 35, 19, 29, (397,385,0): 35, 19, 29, (397,386,0): 35, 19, 29, (397,387,0): 35, 19, 29, (397,388,0): 36, 21, 28, (397,389,0): 38, 23, 30, (397,390,0): 40, 25, 30, (397,391,0): 41, 26, 31, (397,392,0): 44, 29, 34, (397,393,0): 45, 30, 35, (397,394,0): 45, 30, 33, (397,395,0): 46, 31, 34, (397,396,0): 45, 31, 31, (397,397,0): 44, 30, 30, (397,398,0): 42, 28, 28, (397,399,0): 42, 27, 30, (397,400,0): 41, 24, 32, (397,401,0): 39, 22, 32, (397,402,0): 37, 20, 30, (397,403,0): 38, 21, 31, (397,404,0): 40, 23, 33, (397,405,0): 41, 24, 34, (397,406,0): 40, 23, 33, (397,407,0): 38, 21, 31, (397,408,0): 40, 23, 33, (397,409,0): 40, 23, 33, (397,410,0): 41, 24, 34, (397,411,0): 41, 24, 34, (397,412,0): 42, 25, 35, (397,413,0): 42, 25, 35, (397,414,0): 43, 26, 36, (397,415,0): 43, 26, 34, (397,416,0): 40, 25, 32, (397,417,0): 41, 26, 31, (397,418,0): 42, 27, 32, (397,419,0): 44, 27, 33, (397,420,0): 44, 27, 33, (397,421,0): 45, 26, 32, (397,422,0): 44, 25, 31, (397,423,0): 43, 24, 30, (397,424,0): 43, 26, 32, (397,425,0): 43, 26, 32, (397,426,0): 42, 27, 32, (397,427,0): 41, 29, 33, (397,428,0): 42, 33, 36, (397,429,0): 44, 38, 40, (397,430,0): 49, 43, 45, (397,431,0): 51, 46, 50, (397,432,0): 55, 52, 61, (397,433,0): 56, 54, 65, (397,434,0): 60, 57, 68, (397,435,0): 64, 58, 70, (397,436,0): 63, 57, 67, (397,437,0): 59, 51, 62, (397,438,0): 55, 45, 54, (397,439,0): 51, 40, 48, (397,440,0): 51, 40, 48, (397,441,0): 43, 30, 37, (397,442,0): 39, 24, 31, (397,443,0): 40, 25, 30, (397,444,0): 39, 24, 29, (397,445,0): 35, 20, 23, (397,446,0): 33, 18, 21, (397,447,0): 33, 21, 25, (397,448,0): 31, 20, 26, (397,449,0): 32, 22, 30, (397,450,0): 35, 26, 31, (397,451,0): 37, 28, 31, (397,452,0): 41, 31, 32, (397,453,0): 47, 37, 35, (397,454,0): 56, 47, 42, (397,455,0): 62, 53, 44, (397,456,0): 72, 64, 53, (397,457,0): 73, 64, 49, (397,458,0): 76, 67, 50, (397,459,0): 83, 75, 54, (397,460,0): 92, 84, 61, (397,461,0): 98, 91, 65, (397,462,0): 102, 92, 65, (397,463,0): 105, 91, 65, (397,464,0): 113, 88, 68, (397,465,0): 110, 81, 63, (397,466,0): 104, 79, 57, (397,467,0): 100, 82, 58, (397,468,0): 105, 91, 64, (397,469,0): 110, 101, 70, (397,470,0): 115, 106, 75, (397,471,0): 115, 109, 75, (397,472,0): 116, 110, 74, (397,473,0): 114, 108, 72, (397,474,0): 112, 108, 70, (397,475,0): 109, 110, 68, (397,476,0): 107, 113, 69, (397,477,0): 106, 115, 68, (397,478,0): 102, 116, 67, (397,479,0): 100, 114, 65, (397,480,0): 107, 119, 69, (397,481,0): 112, 121, 74, (397,482,0): 115, 124, 79, (397,483,0): 116, 123, 81, (397,484,0): 113, 117, 82, (397,485,0): 106, 107, 76, (397,486,0): 97, 95, 70, (397,487,0): 92, 87, 67, (397,488,0): 88, 81, 63, (397,489,0): 84, 75, 60, (397,490,0): 79, 67, 53, (397,491,0): 77, 63, 50, (397,492,0): 78, 62, 49, (397,493,0): 78, 62, 49, (397,494,0): 78, 60, 48, (397,495,0): 77, 59, 47, (397,496,0): 75, 58, 48, (397,497,0): 70, 56, 47, (397,498,0): 67, 52, 45, (397,499,0): 67, 52, 45, (397,500,0): 69, 54, 47, (397,501,0): 70, 55, 48, (397,502,0): 70, 55, 50, (397,503,0): 68, 53, 48, (397,504,0): 61, 46, 43, (397,505,0): 60, 45, 42, (397,506,0): 57, 42, 39, (397,507,0): 55, 40, 37, (397,508,0): 52, 36, 36, (397,509,0): 49, 33, 33, (397,510,0): 48, 32, 32, (397,511,0): 47, 31, 31, (397,512,0): 45, 29, 30, (397,513,0): 45, 29, 30, (397,514,0): 44, 28, 29, (397,515,0): 42, 26, 27, (397,516,0): 41, 25, 26, (397,517,0): 39, 23, 24, (397,518,0): 38, 22, 23, (397,519,0): 38, 22, 23, (397,520,0): 39, 23, 24, (397,521,0): 39, 23, 24, (397,522,0): 40, 24, 25, (397,523,0): 41, 25, 26, (397,524,0): 42, 26, 27, (397,525,0): 43, 27, 28, (397,526,0): 44, 28, 29, (397,527,0): 43, 28, 31, (397,528,0): 43, 28, 33, (397,529,0): 41, 29, 33, (397,530,0): 44, 29, 34, (397,531,0): 45, 30, 35, (397,532,0): 47, 28, 34, (397,533,0): 47, 28, 34, (397,534,0): 46, 25, 32, (397,535,0): 45, 24, 31, (397,536,0): 46, 25, 32, (397,537,0): 48, 27, 34, (397,538,0): 48, 29, 35, (397,539,0): 46, 29, 35, (397,540,0): 45, 28, 34, (397,541,0): 44, 29, 34, (397,542,0): 44, 32, 36, (397,543,0): 45, 33, 37, (397,544,0): 54, 39, 42, (397,545,0): 55, 41, 41, (397,546,0): 58, 44, 44, (397,547,0): 60, 46, 46, (397,548,0): 62, 48, 48, (397,549,0): 62, 48, 48, (397,550,0): 62, 48, 48, (397,551,0): 62, 48, 48, (397,552,0): 61, 47, 47, (397,553,0): 60, 46, 46, (397,554,0): 59, 45, 45, (397,555,0): 57, 43, 43, (397,556,0): 54, 40, 40, (397,557,0): 51, 37, 37, (397,558,0): 49, 35, 35, (397,559,0): 47, 33, 33, (397,560,0): 45, 33, 33, (397,561,0): 42, 30, 30, (397,562,0): 40, 28, 28, (397,563,0): 40, 28, 28, (397,564,0): 40, 28, 30, (397,565,0): 37, 27, 28, (397,566,0): 33, 22, 28, (397,567,0): 29, 18, 24, (397,568,0): 34, 23, 31, (397,569,0): 36, 26, 34, (397,570,0): 38, 28, 39, (397,571,0): 36, 28, 39, (397,572,0): 33, 25, 38, (397,573,0): 30, 22, 35, (397,574,0): 28, 20, 33, (397,575,0): 27, 21, 31, (397,576,0): 27, 22, 29, (397,577,0): 29, 24, 30, (397,578,0): 32, 25, 32, (397,579,0): 31, 24, 31, (397,580,0): 32, 22, 30, (397,581,0): 33, 22, 28, (397,582,0): 37, 26, 32, (397,583,0): 41, 29, 33, (397,584,0): 41, 26, 31, (397,585,0): 42, 27, 32, (397,586,0): 44, 27, 33, (397,587,0): 48, 29, 33, (397,588,0): 50, 31, 35, (397,589,0): 52, 31, 36, (397,590,0): 54, 33, 38, (397,591,0): 54, 34, 36, (397,592,0): 55, 35, 36, (397,593,0): 56, 38, 38, (397,594,0): 60, 40, 41, (397,595,0): 64, 46, 46, (397,596,0): 69, 49, 50, (397,597,0): 73, 55, 55, (397,598,0): 77, 57, 58, (397,599,0): 77, 59, 59, (398,0,0): 77, 74, 55, (398,1,0): 77, 74, 55, (398,2,0): 77, 74, 55, (398,3,0): 78, 75, 56, (398,4,0): 80, 75, 56, (398,5,0): 81, 76, 57, (398,6,0): 81, 76, 57, (398,7,0): 81, 76, 57, (398,8,0): 80, 73, 55, (398,9,0): 81, 74, 56, (398,10,0): 82, 73, 56, (398,11,0): 83, 74, 57, (398,12,0): 84, 75, 58, (398,13,0): 84, 75, 58, (398,14,0): 87, 75, 59, (398,15,0): 87, 75, 59, (398,16,0): 88, 74, 61, (398,17,0): 88, 74, 61, (398,18,0): 88, 74, 61, (398,19,0): 88, 74, 61, (398,20,0): 88, 75, 59, (398,21,0): 88, 75, 59, (398,22,0): 88, 75, 58, (398,23,0): 88, 75, 58, (398,24,0): 87, 74, 57, (398,25,0): 88, 75, 58, (398,26,0): 89, 76, 57, (398,27,0): 91, 78, 59, (398,28,0): 92, 80, 58, (398,29,0): 94, 82, 60, (398,30,0): 95, 83, 61, (398,31,0): 96, 84, 62, (398,32,0): 103, 87, 64, (398,33,0): 104, 88, 65, (398,34,0): 105, 89, 64, (398,35,0): 107, 91, 66, (398,36,0): 107, 93, 67, (398,37,0): 109, 95, 69, (398,38,0): 110, 96, 69, (398,39,0): 111, 97, 70, (398,40,0): 111, 100, 70, (398,41,0): 111, 100, 70, (398,42,0): 110, 101, 70, (398,43,0): 111, 102, 71, (398,44,0): 111, 102, 69, (398,45,0): 112, 103, 70, (398,46,0): 110, 104, 70, (398,47,0): 110, 104, 70, (398,48,0): 114, 104, 69, (398,49,0): 115, 105, 69, (398,50,0): 116, 106, 70, (398,51,0): 118, 108, 72, (398,52,0): 119, 109, 73, (398,53,0): 121, 111, 75, (398,54,0): 122, 112, 76, (398,55,0): 123, 113, 77, (398,56,0): 124, 114, 78, (398,57,0): 122, 112, 76, (398,58,0): 121, 111, 75, (398,59,0): 121, 111, 75, (398,60,0): 122, 112, 76, (398,61,0): 122, 112, 76, (398,62,0): 118, 108, 72, (398,63,0): 115, 105, 70, (398,64,0): 114, 99, 68, (398,65,0): 110, 95, 64, (398,66,0): 104, 89, 58, (398,67,0): 100, 85, 54, (398,68,0): 95, 81, 52, (398,69,0): 90, 76, 47, (398,70,0): 84, 70, 43, (398,71,0): 79, 65, 39, (398,72,0): 69, 57, 33, (398,73,0): 70, 58, 34, (398,74,0): 71, 60, 38, (398,75,0): 73, 62, 40, (398,76,0): 74, 63, 43, (398,77,0): 75, 64, 44, (398,78,0): 73, 65, 44, (398,79,0): 72, 64, 43, (398,80,0): 76, 64, 42, (398,81,0): 75, 63, 41, (398,82,0): 74, 62, 40, (398,83,0): 72, 60, 38, (398,84,0): 70, 57, 38, (398,85,0): 68, 55, 36, (398,86,0): 67, 54, 37, (398,87,0): 66, 53, 36, (398,88,0): 64, 51, 34, (398,89,0): 63, 50, 33, (398,90,0): 61, 48, 32, (398,91,0): 58, 45, 29, (398,92,0): 57, 43, 30, (398,93,0): 56, 42, 29, (398,94,0): 56, 42, 29, (398,95,0): 57, 43, 30, (398,96,0): 56, 43, 27, (398,97,0): 56, 43, 27, (398,98,0): 56, 43, 27, (398,99,0): 55, 42, 26, (398,100,0): 55, 41, 28, (398,101,0): 54, 40, 27, (398,102,0): 54, 40, 27, (398,103,0): 54, 40, 27, (398,104,0): 54, 40, 29, (398,105,0): 54, 40, 29, (398,106,0): 54, 40, 31, (398,107,0): 54, 40, 31, (398,108,0): 54, 40, 31, (398,109,0): 54, 40, 31, (398,110,0): 54, 39, 32, (398,111,0): 53, 40, 32, (398,112,0): 51, 38, 32, (398,113,0): 48, 37, 31, (398,114,0): 49, 36, 30, (398,115,0): 49, 36, 30, (398,116,0): 49, 36, 30, (398,117,0): 49, 36, 30, (398,118,0): 51, 36, 31, (398,119,0): 52, 37, 32, (398,120,0): 56, 38, 34, (398,121,0): 55, 37, 33, (398,122,0): 55, 37, 33, (398,123,0): 56, 38, 34, (398,124,0): 61, 42, 38, (398,125,0): 65, 46, 42, (398,126,0): 70, 51, 47, (398,127,0): 73, 54, 48, (398,128,0): 74, 57, 49, (398,129,0): 74, 57, 47, (398,130,0): 73, 56, 46, (398,131,0): 74, 57, 47, (398,132,0): 77, 59, 49, (398,133,0): 79, 61, 51, (398,134,0): 83, 63, 52, (398,135,0): 84, 64, 53, (398,136,0): 81, 62, 48, (398,137,0): 82, 63, 49, (398,138,0): 86, 64, 50, (398,139,0): 88, 66, 52, (398,140,0): 90, 67, 53, (398,141,0): 90, 67, 53, (398,142,0): 90, 67, 53, (398,143,0): 91, 65, 52, (398,144,0): 93, 64, 56, (398,145,0): 93, 64, 58, (398,146,0): 95, 66, 58, (398,147,0): 96, 69, 60, (398,148,0): 96, 72, 62, (398,149,0): 97, 75, 62, (398,150,0): 98, 76, 62, (398,151,0): 97, 78, 63, (398,152,0): 105, 84, 67, (398,153,0): 108, 85, 69, (398,154,0): 110, 84, 67, (398,155,0): 109, 82, 65, (398,156,0): 109, 78, 60, (398,157,0): 108, 75, 58, (398,158,0): 111, 76, 57, (398,159,0): 113, 75, 62, (398,160,0): 111, 71, 63, (398,161,0): 116, 73, 67, (398,162,0): 121, 76, 71, (398,163,0): 124, 79, 74, (398,164,0): 129, 82, 76, (398,165,0): 133, 88, 82, (398,166,0): 140, 95, 90, (398,167,0): 143, 102, 98, (398,168,0): 153, 115, 112, (398,169,0): 160, 129, 127, (398,170,0): 174, 150, 150, (398,171,0): 184, 168, 169, (398,172,0): 191, 180, 184, (398,173,0): 190, 185, 191, (398,174,0): 186, 186, 194, (398,175,0): 178, 187, 196, (398,176,0): 167, 186, 200, (398,177,0): 163, 189, 204, (398,178,0): 168, 191, 207, (398,179,0): 167, 193, 210, (398,180,0): 168, 194, 211, (398,181,0): 167, 194, 213, (398,182,0): 166, 193, 214, (398,183,0): 165, 193, 215, (398,184,0): 163, 189, 212, (398,185,0): 162, 190, 214, (398,186,0): 162, 189, 216, (398,187,0): 159, 189, 215, (398,188,0): 159, 189, 217, (398,189,0): 157, 188, 216, (398,190,0): 158, 188, 216, (398,191,0): 154, 187, 218, (398,192,0): 150, 189, 222, (398,193,0): 147, 190, 224, (398,194,0): 146, 189, 223, (398,195,0): 146, 189, 223, (398,196,0): 145, 188, 223, (398,197,0): 145, 188, 223, (398,198,0): 144, 186, 224, (398,199,0): 144, 186, 224, (398,200,0): 144, 186, 224, (398,201,0): 144, 186, 224, (398,202,0): 144, 186, 226, (398,203,0): 144, 186, 226, (398,204,0): 144, 186, 228, (398,205,0): 144, 186, 228, (398,206,0): 144, 186, 228, (398,207,0): 144, 186, 226, (398,208,0): 147, 191, 230, (398,209,0): 146, 192, 228, (398,210,0): 146, 192, 228, (398,211,0): 144, 192, 228, (398,212,0): 144, 192, 228, (398,213,0): 143, 193, 228, (398,214,0): 143, 193, 228, (398,215,0): 141, 194, 228, (398,216,0): 145, 195, 230, (398,217,0): 144, 192, 228, (398,218,0): 144, 190, 226, (398,219,0): 143, 187, 224, (398,220,0): 143, 185, 223, (398,221,0): 145, 184, 223, (398,222,0): 146, 184, 223, (398,223,0): 148, 183, 221, (398,224,0): 148, 182, 220, (398,225,0): 149, 183, 220, (398,226,0): 149, 184, 222, (398,227,0): 147, 187, 223, (398,228,0): 146, 189, 224, (398,229,0): 146, 188, 226, (398,230,0): 145, 187, 225, (398,231,0): 148, 185, 227, (398,232,0): 153, 186, 229, (398,233,0): 153, 181, 228, (398,234,0): 157, 181, 229, (398,235,0): 161, 183, 232, (398,236,0): 158, 180, 229, (398,237,0): 153, 175, 224, (398,238,0): 155, 179, 227, (398,239,0): 162, 186, 234, (398,240,0): 158, 184, 233, (398,241,0): 157, 183, 232, (398,242,0): 155, 183, 233, (398,243,0): 153, 181, 231, (398,244,0): 149, 179, 231, (398,245,0): 148, 178, 230, (398,246,0): 145, 176, 230, (398,247,0): 144, 177, 231, (398,248,0): 147, 180, 234, (398,249,0): 145, 180, 236, (398,250,0): 145, 181, 239, (398,251,0): 145, 181, 239, (398,252,0): 144, 183, 242, (398,253,0): 144, 182, 244, (398,254,0): 144, 184, 245, (398,255,0): 144, 184, 245, (398,256,0): 144, 182, 245, (398,257,0): 145, 183, 246, (398,258,0): 146, 184, 247, (398,259,0): 147, 185, 248, (398,260,0): 147, 187, 249, (398,261,0): 147, 187, 249, (398,262,0): 145, 186, 250, (398,263,0): 144, 185, 249, (398,264,0): 144, 185, 251, (398,265,0): 144, 185, 251, (398,266,0): 142, 185, 253, (398,267,0): 142, 185, 253, (398,268,0): 142, 187, 254, (398,269,0): 142, 187, 254, (398,270,0): 142, 187, 254, (398,271,0): 142, 187, 254, (398,272,0): 140, 183, 251, (398,273,0): 140, 183, 251, (398,274,0): 140, 183, 251, (398,275,0): 140, 183, 251, (398,276,0): 142, 185, 253, (398,277,0): 143, 186, 254, (398,278,0): 145, 188, 255, (398,279,0): 147, 190, 255, (398,280,0): 150, 190, 255, (398,281,0): 151, 188, 255, (398,282,0): 152, 185, 255, (398,283,0): 154, 184, 255, (398,284,0): 158, 184, 255, (398,285,0): 164, 188, 255, (398,286,0): 170, 192, 255, (398,287,0): 170, 196, 255, (398,288,0): 153, 190, 255, (398,289,0): 151, 191, 255, (398,290,0): 153, 190, 255, (398,291,0): 156, 189, 255, (398,292,0): 159, 188, 255, (398,293,0): 160, 187, 255, (398,294,0): 162, 186, 255, (398,295,0): 162, 186, 255, (398,296,0): 158, 184, 255, (398,297,0): 158, 183, 255, (398,298,0): 156, 181, 255, (398,299,0): 155, 178, 255, (398,300,0): 158, 180, 255, (398,301,0): 162, 182, 255, (398,302,0): 157, 174, 246, (398,303,0): 148, 163, 222, (398,304,0): 145, 154, 193, (398,305,0): 142, 149, 177, (398,306,0): 136, 143, 169, (398,307,0): 131, 139, 162, (398,308,0): 121, 129, 150, (398,309,0): 110, 118, 139, (398,310,0): 110, 116, 140, (398,311,0): 115, 121, 145, (398,312,0): 125, 126, 154, (398,313,0): 129, 129, 157, (398,314,0): 131, 128, 155, (398,315,0): 128, 122, 148, (398,316,0): 128, 119, 140, (398,317,0): 125, 114, 131, (398,318,0): 116, 102, 117, (398,319,0): 106, 90, 100, (398,320,0): 99, 78, 85, (398,321,0): 94, 72, 75, (398,322,0): 90, 65, 71, (398,323,0): 86, 61, 67, (398,324,0): 85, 58, 65, (398,325,0): 87, 57, 65, (398,326,0): 86, 55, 61, (398,327,0): 88, 53, 59, (398,328,0): 94, 54, 62, (398,329,0): 96, 54, 58, (398,330,0): 102, 53, 56, (398,331,0): 105, 54, 53, (398,332,0): 108, 50, 49, (398,333,0): 103, 44, 40, (398,334,0): 97, 33, 31, (398,335,0): 85, 27, 26, (398,336,0): 76, 29, 35, (398,337,0): 68, 31, 39, (398,338,0): 66, 30, 40, (398,339,0): 61, 30, 38, (398,340,0): 56, 29, 38, (398,341,0): 50, 27, 37, (398,342,0): 47, 25, 37, (398,343,0): 45, 25, 37, (398,344,0): 43, 25, 37, (398,345,0): 43, 26, 36, (398,346,0): 45, 25, 36, (398,347,0): 46, 25, 34, (398,348,0): 47, 24, 32, (398,349,0): 49, 23, 32, (398,350,0): 52, 22, 30, (398,351,0): 50, 23, 28, (398,352,0): 48, 23, 27, (398,353,0): 46, 24, 26, (398,354,0): 46, 24, 26, (398,355,0): 46, 24, 26, (398,356,0): 48, 23, 26, (398,357,0): 48, 23, 26, (398,358,0): 48, 23, 26, (398,359,0): 48, 23, 26, (398,360,0): 50, 24, 27, (398,361,0): 51, 25, 28, (398,362,0): 54, 25, 29, (398,363,0): 55, 26, 30, (398,364,0): 55, 26, 30, (398,365,0): 54, 25, 29, (398,366,0): 54, 23, 28, (398,367,0): 53, 22, 27, (398,368,0): 52, 21, 27, (398,369,0): 52, 21, 27, (398,370,0): 50, 20, 28, (398,371,0): 49, 19, 27, (398,372,0): 48, 18, 26, (398,373,0): 45, 18, 25, (398,374,0): 43, 17, 26, (398,375,0): 42, 16, 25, (398,376,0): 43, 20, 30, (398,377,0): 41, 20, 29, (398,378,0): 38, 18, 27, (398,379,0): 36, 16, 25, (398,380,0): 34, 17, 27, (398,381,0): 34, 17, 27, (398,382,0): 34, 18, 28, (398,383,0): 35, 19, 29, (398,384,0): 35, 19, 29, (398,385,0): 33, 20, 29, (398,386,0): 33, 20, 29, (398,387,0): 33, 20, 29, (398,388,0): 35, 22, 29, (398,389,0): 36, 23, 30, (398,390,0): 38, 26, 30, (398,391,0): 40, 28, 32, (398,392,0): 41, 29, 33, (398,393,0): 42, 30, 34, (398,394,0): 43, 31, 33, (398,395,0): 43, 31, 33, (398,396,0): 42, 30, 30, (398,397,0): 40, 28, 28, (398,398,0): 39, 27, 27, (398,399,0): 40, 25, 28, (398,400,0): 42, 25, 33, (398,401,0): 40, 23, 33, (398,402,0): 39, 22, 32, (398,403,0): 40, 23, 33, (398,404,0): 42, 25, 35, (398,405,0): 43, 26, 36, (398,406,0): 41, 24, 34, (398,407,0): 38, 21, 31, (398,408,0): 40, 23, 33, (398,409,0): 40, 23, 33, (398,410,0): 40, 23, 33, (398,411,0): 41, 24, 34, (398,412,0): 42, 25, 35, (398,413,0): 43, 26, 36, (398,414,0): 43, 26, 36, (398,415,0): 42, 27, 34, (398,416,0): 39, 26, 33, (398,417,0): 40, 28, 32, (398,418,0): 41, 29, 33, (398,419,0): 44, 29, 34, (398,420,0): 45, 28, 34, (398,421,0): 44, 27, 33, (398,422,0): 44, 25, 31, (398,423,0): 43, 24, 30, (398,424,0): 43, 26, 32, (398,425,0): 42, 25, 31, (398,426,0): 41, 26, 31, (398,427,0): 39, 27, 31, (398,428,0): 40, 29, 33, (398,429,0): 42, 33, 36, (398,430,0): 45, 36, 39, (398,431,0): 45, 39, 43, (398,432,0): 47, 44, 53, (398,433,0): 47, 45, 56, (398,434,0): 49, 46, 57, (398,435,0): 50, 44, 56, (398,436,0): 50, 42, 53, (398,437,0): 50, 40, 51, (398,438,0): 48, 36, 46, (398,439,0): 48, 35, 44, (398,440,0): 54, 41, 50, (398,441,0): 46, 31, 38, (398,442,0): 40, 25, 32, (398,443,0): 41, 24, 30, (398,444,0): 40, 23, 29, (398,445,0): 35, 19, 22, (398,446,0): 33, 17, 20, (398,447,0): 34, 19, 22, (398,448,0): 32, 21, 27, (398,449,0): 33, 23, 31, (398,450,0): 35, 26, 31, (398,451,0): 37, 28, 31, (398,452,0): 41, 32, 33, (398,453,0): 47, 39, 36, (398,454,0): 56, 49, 43, (398,455,0): 63, 56, 46, (398,456,0): 74, 68, 54, (398,457,0): 76, 69, 51, (398,458,0): 81, 74, 55, (398,459,0): 89, 83, 61, (398,460,0): 97, 91, 67, (398,461,0): 102, 96, 70, (398,462,0): 104, 97, 69, (398,463,0): 108, 94, 67, (398,464,0): 120, 93, 72, (398,465,0): 119, 88, 68, (398,466,0): 112, 85, 64, (398,467,0): 106, 86, 62, (398,468,0): 106, 90, 64, (398,469,0): 109, 95, 66, (398,470,0): 111, 100, 70, (398,471,0): 113, 104, 71, (398,472,0): 110, 102, 66, (398,473,0): 106, 100, 64, (398,474,0): 104, 100, 62, (398,475,0): 105, 103, 62, (398,476,0): 105, 108, 65, (398,477,0): 102, 110, 63, (398,478,0): 97, 109, 61, (398,479,0): 92, 106, 55, (398,480,0): 100, 110, 60, (398,481,0): 107, 115, 68, (398,482,0): 112, 119, 75, (398,483,0): 112, 117, 77, (398,484,0): 104, 108, 75, (398,485,0): 97, 97, 69, (398,486,0): 92, 90, 67, (398,487,0): 92, 87, 67, (398,488,0): 88, 79, 64, (398,489,0): 85, 73, 61, (398,490,0): 80, 66, 55, (398,491,0): 78, 61, 51, (398,492,0): 77, 60, 50, (398,493,0): 76, 58, 48, (398,494,0): 75, 55, 46, (398,495,0): 71, 53, 43, (398,496,0): 72, 55, 47, (398,497,0): 67, 53, 44, (398,498,0): 65, 50, 43, (398,499,0): 65, 50, 43, (398,500,0): 68, 53, 46, (398,501,0): 70, 55, 48, (398,502,0): 70, 55, 50, (398,503,0): 69, 54, 49, (398,504,0): 63, 48, 45, (398,505,0): 61, 46, 43, (398,506,0): 57, 42, 39, (398,507,0): 54, 39, 36, (398,508,0): 51, 35, 35, (398,509,0): 50, 34, 34, (398,510,0): 49, 33, 33, (398,511,0): 50, 34, 34, (398,512,0): 46, 30, 31, (398,513,0): 45, 29, 30, (398,514,0): 44, 28, 29, (398,515,0): 42, 26, 27, (398,516,0): 41, 25, 26, (398,517,0): 39, 23, 24, (398,518,0): 38, 22, 23, (398,519,0): 37, 21, 22, (398,520,0): 38, 22, 23, (398,521,0): 38, 22, 23, (398,522,0): 39, 23, 24, (398,523,0): 40, 24, 25, (398,524,0): 41, 25, 26, (398,525,0): 42, 26, 27, (398,526,0): 43, 27, 28, (398,527,0): 42, 27, 30, (398,528,0): 42, 27, 32, (398,529,0): 40, 27, 34, (398,530,0): 43, 28, 35, (398,531,0): 43, 28, 35, (398,532,0): 45, 25, 34, (398,533,0): 43, 23, 32, (398,534,0): 43, 22, 31, (398,535,0): 41, 20, 29, (398,536,0): 44, 23, 32, (398,537,0): 46, 25, 34, (398,538,0): 47, 27, 36, (398,539,0): 44, 27, 35, (398,540,0): 42, 25, 33, (398,541,0): 41, 26, 33, (398,542,0): 41, 28, 35, (398,543,0): 44, 32, 36, (398,544,0): 50, 35, 38, (398,545,0): 51, 37, 37, (398,546,0): 53, 39, 39, (398,547,0): 54, 40, 40, (398,548,0): 56, 42, 42, (398,549,0): 57, 43, 43, (398,550,0): 57, 43, 43, (398,551,0): 57, 43, 43, (398,552,0): 63, 49, 49, (398,553,0): 61, 47, 47, (398,554,0): 58, 44, 44, (398,555,0): 55, 41, 41, (398,556,0): 52, 38, 38, (398,557,0): 50, 36, 36, (398,558,0): 49, 35, 35, (398,559,0): 48, 34, 34, (398,560,0): 50, 36, 36, (398,561,0): 48, 34, 34, (398,562,0): 46, 32, 32, (398,563,0): 44, 32, 32, (398,564,0): 44, 32, 34, (398,565,0): 42, 30, 32, (398,566,0): 38, 25, 32, (398,567,0): 33, 22, 28, (398,568,0): 34, 23, 31, (398,569,0): 36, 26, 34, (398,570,0): 39, 29, 40, (398,571,0): 39, 29, 40, (398,572,0): 35, 24, 38, (398,573,0): 29, 21, 34, (398,574,0): 27, 19, 32, (398,575,0): 27, 19, 30, (398,576,0): 25, 18, 25, (398,577,0): 29, 23, 27, (398,578,0): 34, 25, 30, (398,579,0): 35, 26, 31, (398,580,0): 35, 24, 30, (398,581,0): 35, 24, 28, (398,582,0): 37, 25, 29, (398,583,0): 41, 26, 31, (398,584,0): 39, 24, 29, (398,585,0): 41, 25, 28, (398,586,0): 45, 26, 30, (398,587,0): 48, 29, 31, (398,588,0): 52, 32, 34, (398,589,0): 55, 33, 36, (398,590,0): 57, 35, 38, (398,591,0): 58, 36, 39, (398,592,0): 59, 37, 40, (398,593,0): 61, 41, 43, (398,594,0): 68, 46, 49, (398,595,0): 72, 52, 54, (398,596,0): 77, 55, 58, (398,597,0): 79, 59, 61, (398,598,0): 80, 58, 61, (398,599,0): 80, 60, 62, (399,0,0): 77, 74, 55, (399,1,0): 77, 74, 55, (399,2,0): 77, 74, 55, (399,3,0): 78, 75, 56, (399,4,0): 78, 75, 56, (399,5,0): 81, 76, 57, (399,6,0): 81, 76, 57, (399,7,0): 81, 76, 57, (399,8,0): 80, 73, 55, (399,9,0): 81, 74, 56, (399,10,0): 82, 73, 56, (399,11,0): 83, 74, 57, (399,12,0): 84, 75, 58, (399,13,0): 85, 76, 59, (399,14,0): 85, 76, 59, (399,15,0): 88, 76, 60, (399,16,0): 88, 76, 62, (399,17,0): 89, 75, 62, (399,18,0): 88, 74, 61, (399,19,0): 88, 75, 59, (399,20,0): 88, 75, 59, (399,21,0): 88, 75, 59, (399,22,0): 87, 74, 57, (399,23,0): 87, 74, 57, (399,24,0): 87, 74, 57, (399,25,0): 88, 75, 56, (399,26,0): 89, 76, 57, (399,27,0): 90, 77, 58, (399,28,0): 92, 80, 58, (399,29,0): 94, 82, 60, (399,30,0): 97, 82, 61, (399,31,0): 97, 82, 61, (399,32,0): 102, 87, 66, (399,33,0): 103, 88, 67, (399,34,0): 105, 89, 66, (399,35,0): 106, 91, 68, (399,36,0): 107, 92, 69, (399,37,0): 109, 95, 69, (399,38,0): 110, 96, 70, (399,39,0): 109, 97, 71, (399,40,0): 111, 100, 72, (399,41,0): 110, 101, 72, (399,42,0): 110, 101, 72, (399,43,0): 109, 103, 71, (399,44,0): 111, 102, 71, (399,45,0): 110, 104, 72, (399,46,0): 110, 104, 72, (399,47,0): 110, 104, 70, (399,48,0): 114, 104, 69, (399,49,0): 114, 104, 68, (399,50,0): 118, 105, 71, (399,51,0): 118, 108, 72, (399,52,0): 122, 109, 75, (399,53,0): 122, 112, 76, (399,54,0): 126, 113, 79, (399,55,0): 125, 115, 79, (399,56,0): 127, 114, 80, (399,57,0): 123, 113, 77, (399,58,0): 124, 111, 77, (399,59,0): 122, 112, 76, (399,60,0): 126, 113, 79, (399,61,0): 123, 113, 77, (399,62,0): 121, 108, 74, (399,63,0): 118, 105, 71, (399,64,0): 117, 104, 72, (399,65,0): 113, 100, 68, (399,66,0): 109, 94, 63, (399,67,0): 104, 90, 61, (399,68,0): 100, 86, 57, (399,69,0): 95, 81, 52, (399,70,0): 89, 75, 48, (399,71,0): 84, 70, 44, (399,72,0): 71, 59, 35, (399,73,0): 72, 60, 36, (399,74,0): 72, 61, 39, (399,75,0): 73, 62, 40, (399,76,0): 74, 63, 43, (399,77,0): 73, 62, 42, (399,78,0): 72, 61, 41, (399,79,0): 71, 60, 40, (399,80,0): 75, 64, 44, (399,81,0): 75, 62, 43, (399,82,0): 74, 61, 42, (399,83,0): 71, 58, 39, (399,84,0): 69, 56, 37, (399,85,0): 67, 54, 37, (399,86,0): 65, 52, 35, (399,87,0): 65, 52, 35, (399,88,0): 63, 50, 33, (399,89,0): 62, 49, 32, (399,90,0): 60, 47, 31, (399,91,0): 58, 45, 29, (399,92,0): 56, 42, 29, (399,93,0): 56, 42, 29, (399,94,0): 56, 42, 29, (399,95,0): 56, 42, 29, (399,96,0): 56, 42, 29, (399,97,0): 56, 43, 27, (399,98,0): 56, 42, 29, (399,99,0): 55, 41, 28, (399,100,0): 55, 41, 28, (399,101,0): 54, 40, 27, (399,102,0): 54, 40, 27, (399,103,0): 54, 40, 27, (399,104,0): 54, 40, 29, (399,105,0): 54, 40, 29, (399,106,0): 54, 40, 31, (399,107,0): 54, 40, 31, (399,108,0): 54, 40, 31, (399,109,0): 54, 40, 31, (399,110,0): 54, 40, 31, (399,111,0): 53, 40, 32, (399,112,0): 51, 38, 30, (399,113,0): 48, 37, 31, (399,114,0): 49, 36, 30, (399,115,0): 48, 35, 29, (399,116,0): 48, 35, 29, (399,117,0): 49, 36, 30, (399,118,0): 50, 37, 31, (399,119,0): 52, 37, 32, (399,120,0): 54, 39, 34, (399,121,0): 54, 39, 34, (399,122,0): 53, 38, 33, (399,123,0): 53, 38, 33, (399,124,0): 58, 40, 36, (399,125,0): 63, 45, 41, (399,126,0): 68, 50, 46, (399,127,0): 71, 54, 47, (399,128,0): 74, 57, 49, (399,129,0): 74, 57, 47, (399,130,0): 73, 56, 48, (399,131,0): 74, 57, 47, (399,132,0): 76, 57, 50, (399,133,0): 79, 61, 51, (399,134,0): 83, 63, 54, (399,135,0): 85, 65, 56, (399,136,0): 81, 61, 50, (399,137,0): 82, 62, 51, (399,138,0): 84, 65, 51, (399,139,0): 87, 65, 52, (399,140,0): 88, 66, 53, (399,141,0): 89, 67, 54, (399,142,0): 88, 66, 53, (399,143,0): 89, 65, 55, (399,144,0): 92, 65, 58, (399,145,0): 92, 65, 58, (399,146,0): 91, 66, 59, (399,147,0): 93, 68, 61, (399,148,0): 94, 71, 63, (399,149,0): 93, 73, 62, (399,150,0): 94, 74, 63, (399,151,0): 95, 76, 62, (399,152,0): 102, 83, 69, (399,153,0): 107, 85, 71, (399,154,0): 111, 88, 74, (399,155,0): 113, 87, 74, (399,156,0): 109, 81, 67, (399,157,0): 106, 77, 63, (399,158,0): 104, 75, 59, (399,159,0): 106, 74, 61, (399,160,0): 110, 76, 67, (399,161,0): 115, 78, 70, (399,162,0): 119, 80, 73, (399,163,0): 120, 81, 74, (399,164,0): 122, 82, 74, (399,165,0): 123, 83, 75, (399,166,0): 127, 86, 80, (399,167,0): 130, 91, 86, (399,168,0): 131, 96, 92, (399,169,0): 137, 106, 103, (399,170,0): 151, 123, 122, (399,171,0): 164, 143, 142, (399,172,0): 177, 158, 162, (399,173,0): 183, 168, 173, (399,174,0): 182, 171, 177, (399,175,0): 175, 174, 182, (399,176,0): 170, 180, 192, (399,177,0): 167, 183, 198, (399,178,0): 169, 185, 201, (399,179,0): 171, 188, 204, (399,180,0): 172, 189, 205, (399,181,0): 171, 190, 207, (399,182,0): 168, 189, 208, (399,183,0): 167, 189, 210, (399,184,0): 167, 189, 212, (399,185,0): 165, 190, 212, (399,186,0): 164, 188, 214, (399,187,0): 163, 189, 214, (399,188,0): 161, 188, 215, (399,189,0): 161, 188, 215, (399,190,0): 160, 187, 214, (399,191,0): 157, 188, 216, (399,192,0): 152, 189, 218, (399,193,0): 149, 188, 219, (399,194,0): 148, 189, 219, (399,195,0): 147, 188, 220, (399,196,0): 147, 187, 222, (399,197,0): 144, 187, 221, (399,198,0): 144, 187, 222, (399,199,0): 144, 186, 224, (399,200,0): 144, 186, 224, (399,201,0): 144, 186, 224, (399,202,0): 146, 185, 224, (399,203,0): 146, 185, 224, (399,204,0): 146, 185, 224, (399,205,0): 146, 185, 224, (399,206,0): 147, 185, 224, (399,207,0): 146, 185, 224, (399,208,0): 147, 191, 228, (399,209,0): 146, 192, 228, (399,210,0): 144, 192, 228, (399,211,0): 144, 192, 228, (399,212,0): 144, 192, 228, (399,213,0): 143, 193, 228, (399,214,0): 143, 193, 228, (399,215,0): 143, 193, 228, (399,216,0): 146, 194, 230, (399,217,0): 145, 193, 229, (399,218,0): 144, 190, 226, (399,219,0): 143, 187, 222, (399,220,0): 143, 185, 223, (399,221,0): 142, 185, 220, (399,222,0): 145, 185, 221, (399,223,0): 146, 184, 221, (399,224,0): 147, 183, 219, (399,225,0): 147, 183, 219, (399,226,0): 146, 184, 221, (399,227,0): 143, 186, 221, (399,228,0): 143, 187, 224, (399,229,0): 144, 188, 225, (399,230,0): 144, 188, 227, (399,231,0): 146, 188, 230, (399,232,0): 150, 187, 231, (399,233,0): 150, 184, 229, (399,234,0): 155, 186, 233, (399,235,0): 163, 191, 239, (399,236,0): 161, 189, 237, (399,237,0): 154, 182, 230, (399,238,0): 155, 183, 231, (399,239,0): 162, 190, 238, (399,240,0): 158, 184, 233, (399,241,0): 158, 184, 233, (399,242,0): 155, 183, 233, (399,243,0): 153, 181, 231, (399,244,0): 149, 179, 231, (399,245,0): 147, 178, 232, (399,246,0): 145, 176, 231, (399,247,0): 143, 176, 230, (399,248,0): 145, 180, 236, (399,249,0): 144, 181, 236, (399,250,0): 145, 181, 239, (399,251,0): 143, 182, 241, (399,252,0): 144, 182, 244, (399,253,0): 143, 183, 244, (399,254,0): 144, 184, 245, (399,255,0): 144, 184, 245, (399,256,0): 142, 182, 244, (399,257,0): 143, 183, 245, (399,258,0): 145, 183, 246, (399,259,0): 145, 185, 247, (399,260,0): 146, 186, 248, (399,261,0): 146, 186, 248, (399,262,0): 144, 185, 249, (399,263,0): 143, 184, 248, (399,264,0): 144, 185, 251, (399,265,0): 144, 185, 251, (399,266,0): 142, 185, 253, (399,267,0): 142, 185, 253, (399,268,0): 143, 186, 254, (399,269,0): 142, 187, 254, (399,270,0): 143, 186, 254, (399,271,0): 143, 186, 254, (399,272,0): 142, 182, 251, (399,273,0): 142, 182, 251, (399,274,0): 142, 182, 252, (399,275,0): 142, 182, 251, (399,276,0): 144, 184, 253, (399,277,0): 146, 186, 255, (399,278,0): 148, 188, 255, (399,279,0): 149, 189, 255, (399,280,0): 152, 191, 255, (399,281,0): 151, 188, 255, (399,282,0): 152, 185, 255, (399,283,0): 153, 183, 255, (399,284,0): 157, 185, 255, (399,285,0): 164, 191, 255, (399,286,0): 172, 196, 255, (399,287,0): 173, 201, 255, (399,288,0): 156, 190, 255, (399,289,0): 154, 191, 255, (399,290,0): 156, 191, 255, (399,291,0): 159, 189, 255, (399,292,0): 160, 189, 255, (399,293,0): 161, 188, 255, (399,294,0): 163, 187, 255, (399,295,0): 161, 187, 255, (399,296,0): 156, 182, 255, (399,297,0): 157, 183, 255, (399,298,0): 155, 181, 255, (399,299,0): 154, 180, 255, (399,300,0): 159, 183, 255, (399,301,0): 164, 186, 255, (399,302,0): 160, 180, 251, (399,303,0): 154, 170, 232, (399,304,0): 150, 161, 207, (399,305,0): 148, 154, 190, (399,306,0): 142, 148, 180, (399,307,0): 136, 142, 168, (399,308,0): 125, 131, 153, (399,309,0): 114, 121, 140, (399,310,0): 114, 119, 141, (399,311,0): 120, 124, 149, (399,312,0): 125, 126, 154, (399,313,0): 130, 130, 158, (399,314,0): 132, 129, 156, (399,315,0): 129, 125, 148, (399,316,0): 129, 121, 142, (399,317,0): 129, 117, 137, (399,318,0): 119, 106, 123, (399,319,0): 110, 94, 107, (399,320,0): 102, 81, 88, (399,321,0): 100, 75, 79, (399,322,0): 94, 69, 73, (399,323,0): 92, 65, 70, (399,324,0): 91, 65, 68, (399,325,0): 92, 61, 66, (399,326,0): 90, 58, 61, (399,327,0): 91, 55, 57, (399,328,0): 98, 57, 61, (399,329,0): 100, 55, 58, (399,330,0): 103, 53, 54, (399,331,0): 103, 52, 51, (399,332,0): 103, 49, 49, (399,333,0): 97, 41, 40, (399,334,0): 90, 32, 31, (399,335,0): 78, 26, 28, (399,336,0): 73, 30, 37, (399,337,0): 68, 33, 40, (399,338,0): 64, 31, 40, (399,339,0): 61, 30, 38, (399,340,0): 56, 29, 38, (399,341,0): 52, 26, 37, (399,342,0): 47, 23, 36, (399,343,0): 45, 23, 35, (399,344,0): 45, 25, 36, (399,345,0): 45, 25, 36, (399,346,0): 46, 25, 34, (399,347,0): 46, 25, 34, (399,348,0): 47, 24, 32, (399,349,0): 49, 23, 32, (399,350,0): 50, 23, 30, (399,351,0): 50, 23, 30, (399,352,0): 48, 23, 27, (399,353,0): 46, 24, 26, (399,354,0): 48, 23, 26, (399,355,0): 48, 23, 26, (399,356,0): 48, 23, 26, (399,357,0): 48, 23, 26, (399,358,0): 48, 23, 26, (399,359,0): 48, 23, 26, (399,360,0): 49, 23, 26, (399,361,0): 51, 25, 28, (399,362,0): 54, 25, 29, (399,363,0): 56, 27, 31, (399,364,0): 56, 27, 31, (399,365,0): 54, 25, 29, (399,366,0): 53, 24, 28, (399,367,0): 51, 22, 26, (399,368,0): 50, 21, 26, (399,369,0): 50, 21, 26, (399,370,0): 47, 20, 27, (399,371,0): 46, 19, 26, (399,372,0): 44, 19, 25, (399,373,0): 43, 18, 24, (399,374,0): 40, 17, 25, (399,375,0): 40, 17, 25, (399,376,0): 42, 21, 30, (399,377,0): 40, 20, 29, (399,378,0): 38, 18, 27, (399,379,0): 34, 17, 25, (399,380,0): 33, 16, 26, (399,381,0): 33, 17, 27, (399,382,0): 34, 18, 28, (399,383,0): 35, 19, 29, (399,384,0): 35, 19, 29, (399,385,0): 33, 20, 27, (399,386,0): 35, 19, 29, (399,387,0): 33, 20, 27, (399,388,0): 37, 22, 29, (399,389,0): 37, 24, 31, (399,390,0): 41, 26, 31, (399,391,0): 40, 28, 32, (399,392,0): 43, 28, 33, (399,393,0): 41, 29, 33, (399,394,0): 44, 29, 32, (399,395,0): 42, 30, 32, (399,396,0): 43, 28, 31, (399,397,0): 40, 28, 28, (399,398,0): 40, 25, 28, (399,399,0): 39, 24, 27, (399,400,0): 42, 25, 33, (399,401,0): 41, 24, 32, (399,402,0): 40, 23, 33, (399,403,0): 41, 24, 34, (399,404,0): 43, 26, 36, (399,405,0): 44, 27, 37, (399,406,0): 41, 24, 34, (399,407,0): 39, 22, 32, (399,408,0): 39, 22, 32, (399,409,0): 40, 23, 33, (399,410,0): 40, 23, 33, (399,411,0): 41, 24, 34, (399,412,0): 42, 25, 35, (399,413,0): 43, 26, 36, (399,414,0): 43, 26, 36, (399,415,0): 43, 27, 37, (399,416,0): 40, 27, 34, (399,417,0): 41, 29, 33, (399,418,0): 43, 31, 35, (399,419,0): 46, 31, 36, (399,420,0): 46, 29, 35, (399,421,0): 45, 28, 34, (399,422,0): 45, 26, 32, (399,423,0): 43, 24, 30, (399,424,0): 43, 26, 32, (399,425,0): 42, 25, 31, (399,426,0): 40, 25, 30, (399,427,0): 40, 25, 30, (399,428,0): 40, 28, 32, (399,429,0): 42, 30, 34, (399,430,0): 43, 32, 36, (399,431,0): 44, 35, 40, (399,432,0): 45, 40, 46, (399,433,0): 43, 40, 47, (399,434,0): 44, 39, 46, (399,435,0): 43, 36, 44, (399,436,0): 43, 33, 42, (399,437,0): 44, 33, 41, (399,438,0): 47, 31, 41, (399,439,0): 48, 33, 40, (399,440,0): 58, 41, 49, (399,441,0): 49, 32, 40, (399,442,0): 42, 25, 33, (399,443,0): 42, 25, 31, (399,444,0): 39, 24, 29, (399,445,0): 34, 19, 24, (399,446,0): 31, 16, 19, (399,447,0): 33, 18, 23, (399,448,0): 33, 20, 27, (399,449,0): 34, 23, 29, (399,450,0): 38, 25, 32, (399,451,0): 39, 28, 32, (399,452,0): 44, 32, 34, (399,453,0): 49, 39, 37, (399,454,0): 58, 49, 44, (399,455,0): 65, 56, 49, (399,456,0): 75, 67, 56, (399,457,0): 77, 71, 57, (399,458,0): 82, 76, 60, (399,459,0): 89, 86, 67, (399,460,0): 98, 96, 75, (399,461,0): 103, 101, 78, (399,462,0): 103, 101, 76, (399,463,0): 105, 97, 74, (399,464,0): 120, 98, 77, (399,465,0): 121, 92, 74, (399,466,0): 116, 89, 68, (399,467,0): 112, 88, 64, (399,468,0): 109, 88, 61, (399,469,0): 111, 92, 62, (399,470,0): 111, 96, 63, (399,471,0): 113, 100, 65, (399,472,0): 105, 95, 59, (399,473,0): 102, 94, 55, (399,474,0): 100, 95, 55, (399,475,0): 101, 100, 56, (399,476,0): 102, 105, 60, (399,477,0): 99, 107, 60, (399,478,0): 93, 105, 57, (399,479,0): 89, 101, 55, (399,480,0): 97, 104, 60, (399,481,0): 105, 110, 69, (399,482,0): 110, 115, 75, (399,483,0): 108, 109, 75, (399,484,0): 98, 99, 68, (399,485,0): 91, 89, 64, (399,486,0): 92, 87, 67, (399,487,0): 96, 87, 70, (399,488,0): 90, 78, 66, (399,489,0): 86, 72, 63, (399,490,0): 82, 65, 57, (399,491,0): 79, 62, 54, (399,492,0): 77, 58, 51, (399,493,0): 75, 56, 49, (399,494,0): 72, 52, 45, (399,495,0): 68, 49, 42, (399,496,0): 70, 53, 45, (399,497,0): 65, 51, 42, (399,498,0): 63, 49, 40, (399,499,0): 64, 49, 42, (399,500,0): 68, 53, 46, (399,501,0): 70, 55, 48, (399,502,0): 70, 55, 50, (399,503,0): 69, 54, 49, (399,504,0): 65, 50, 47, (399,505,0): 62, 47, 44, (399,506,0): 57, 42, 39, (399,507,0): 53, 38, 35, (399,508,0): 50, 34, 34, (399,509,0): 49, 33, 33, (399,510,0): 50, 34, 34, (399,511,0): 51, 35, 36, (399,512,0): 45, 31, 31, (399,513,0): 45, 31, 31, (399,514,0): 44, 28, 29, (399,515,0): 42, 26, 27, (399,516,0): 41, 25, 26, (399,517,0): 39, 23, 24, (399,518,0): 37, 21, 22, (399,519,0): 37, 21, 22, (399,520,0): 39, 20, 22, (399,521,0): 38, 22, 23, (399,522,0): 39, 23, 24, (399,523,0): 40, 24, 25, (399,524,0): 41, 25, 26, (399,525,0): 42, 26, 27, (399,526,0): 42, 28, 28, (399,527,0): 42, 27, 30, (399,528,0): 43, 26, 32, (399,529,0): 43, 26, 32, (399,530,0): 43, 26, 32, (399,531,0): 43, 26, 32, (399,532,0): 41, 24, 30, (399,533,0): 41, 22, 28, (399,534,0): 39, 20, 26, (399,535,0): 39, 18, 25, (399,536,0): 43, 22, 29, (399,537,0): 46, 25, 32, (399,538,0): 47, 26, 33, (399,539,0): 45, 26, 32, (399,540,0): 40, 23, 29, (399,541,0): 39, 24, 29, (399,542,0): 39, 27, 31, (399,543,0): 43, 31, 35, (399,544,0): 47, 31, 34, (399,545,0): 48, 32, 33, (399,546,0): 49, 33, 34, (399,547,0): 51, 35, 36, (399,548,0): 52, 36, 37, (399,549,0): 53, 37, 38, (399,550,0): 54, 38, 39, (399,551,0): 54, 38, 39, (399,552,0): 66, 50, 51, (399,553,0): 62, 48, 48, (399,554,0): 57, 43, 43, (399,555,0): 53, 39, 39, (399,556,0): 50, 36, 36, (399,557,0): 49, 35, 35, (399,558,0): 49, 35, 35, (399,559,0): 49, 35, 35, (399,560,0): 53, 37, 37, (399,561,0): 51, 35, 35, (399,562,0): 50, 34, 34, (399,563,0): 49, 35, 34, (399,564,0): 49, 35, 35, (399,565,0): 47, 32, 35, (399,566,0): 43, 28, 33, (399,567,0): 37, 24, 31, (399,568,0): 33, 20, 27, (399,569,0): 36, 25, 33, (399,570,0): 40, 28, 38, (399,571,0): 40, 28, 40, (399,572,0): 36, 24, 36, (399,573,0): 31, 20, 34, (399,574,0): 29, 18, 32, (399,575,0): 30, 20, 31, (399,576,0): 26, 14, 24, (399,577,0): 32, 19, 28, (399,578,0): 37, 24, 33, (399,579,0): 41, 26, 33, (399,580,0): 40, 25, 30, (399,581,0): 38, 23, 28, (399,582,0): 39, 24, 29, (399,583,0): 40, 25, 28, (399,584,0): 38, 23, 26, (399,585,0): 39, 25, 25, (399,586,0): 43, 27, 28, (399,587,0): 46, 30, 31, (399,588,0): 52, 32, 34, (399,589,0): 55, 35, 37, (399,590,0): 58, 36, 38, (399,591,0): 60, 38, 40, (399,592,0): 64, 39, 43, (399,593,0): 68, 43, 47, (399,594,0): 75, 50, 54, (399,595,0): 79, 57, 60, (399,596,0): 82, 60, 63, (399,597,0): 84, 62, 65, (399,598,0): 83, 61, 64, (399,599,0): 82, 60, 63, (400,0,0): 72, 71, 51, (400,1,0): 72, 71, 51, (400,2,0): 73, 72, 52, (400,3,0): 74, 73, 53, (400,4,0): 75, 74, 54, (400,5,0): 76, 73, 54, (400,6,0): 77, 74, 55, (400,7,0): 77, 74, 55, (400,8,0): 81, 76, 57, (400,9,0): 81, 76, 57, (400,10,0): 82, 75, 57, (400,11,0): 82, 75, 57, (400,12,0): 83, 76, 58, (400,13,0): 85, 78, 60, (400,14,0): 87, 80, 62, (400,15,0): 89, 80, 63, (400,16,0): 85, 76, 59, (400,17,0): 88, 76, 60, (400,18,0): 88, 76, 60, (400,19,0): 89, 77, 61, (400,20,0): 89, 77, 61, (400,21,0): 90, 79, 61, (400,22,0): 91, 78, 61, (400,23,0): 91, 78, 61, (400,24,0): 91, 76, 57, (400,25,0): 91, 76, 57, (400,26,0): 92, 77, 58, (400,27,0): 93, 78, 57, (400,28,0): 94, 79, 58, (400,29,0): 94, 79, 58, (400,30,0): 96, 80, 57, (400,31,0): 95, 80, 59, (400,32,0): 99, 84, 65, (400,33,0): 98, 85, 66, (400,34,0): 101, 86, 67, (400,35,0): 101, 88, 69, (400,36,0): 104, 92, 70, (400,37,0): 106, 94, 72, (400,38,0): 107, 95, 73, (400,39,0): 107, 97, 72, (400,40,0): 107, 97, 72, (400,41,0): 105, 98, 72, (400,42,0): 106, 99, 71, (400,43,0): 105, 100, 71, (400,44,0): 106, 99, 71, (400,45,0): 105, 100, 70, (400,46,0): 106, 101, 71, (400,47,0): 107, 100, 71, (400,48,0): 114, 103, 71, (400,49,0): 117, 104, 70, (400,50,0): 121, 106, 75, (400,51,0): 121, 108, 74, (400,52,0): 123, 108, 77, (400,53,0): 122, 109, 75, (400,54,0): 122, 107, 76, (400,55,0): 120, 107, 73, (400,56,0): 126, 111, 80, (400,57,0): 124, 111, 77, (400,58,0): 123, 108, 77, (400,59,0): 122, 109, 75, (400,60,0): 122, 107, 76, (400,61,0): 122, 109, 75, (400,62,0): 124, 109, 78, (400,63,0): 123, 110, 78, (400,64,0): 118, 105, 73, (400,65,0): 112, 101, 71, (400,66,0): 109, 95, 66, (400,67,0): 103, 92, 64, (400,68,0): 100, 89, 61, (400,69,0): 95, 84, 56, (400,70,0): 89, 77, 51, (400,71,0): 84, 72, 46, (400,72,0): 85, 73, 49, (400,73,0): 80, 68, 44, (400,74,0): 74, 62, 38, (400,75,0): 70, 58, 34, (400,76,0): 70, 58, 36, (400,77,0): 70, 58, 36, (400,78,0): 69, 57, 35, (400,79,0): 67, 56, 36, (400,80,0): 69, 58, 40, (400,81,0): 69, 58, 40, (400,82,0): 68, 57, 39, (400,83,0): 66, 55, 37, (400,84,0): 65, 54, 36, (400,85,0): 64, 52, 36, (400,86,0): 63, 51, 35, (400,87,0): 62, 50, 34, (400,88,0): 60, 48, 32, (400,89,0): 59, 47, 31, (400,90,0): 59, 47, 31, (400,91,0): 58, 46, 30, (400,92,0): 58, 46, 30, (400,93,0): 57, 45, 29, (400,94,0): 57, 45, 29, (400,95,0): 57, 45, 31, (400,96,0): 54, 40, 27, (400,97,0): 54, 40, 27, (400,98,0): 54, 40, 29, (400,99,0): 54, 40, 29, (400,100,0): 54, 40, 29, (400,101,0): 54, 40, 29, (400,102,0): 54, 40, 29, (400,103,0): 54, 40, 29, (400,104,0): 52, 38, 27, (400,105,0): 52, 38, 27, (400,106,0): 52, 38, 27, (400,107,0): 52, 38, 27, (400,108,0): 52, 38, 27, (400,109,0): 52, 38, 27, (400,110,0): 52, 38, 27, (400,111,0): 51, 38, 29, (400,112,0): 52, 39, 31, (400,113,0): 50, 40, 31, (400,114,0): 50, 40, 31, (400,115,0): 49, 39, 30, (400,116,0): 49, 39, 30, (400,117,0): 48, 38, 29, (400,118,0): 48, 38, 29, (400,119,0): 50, 37, 29, (400,120,0): 50, 37, 29, (400,121,0): 51, 38, 30, (400,122,0): 52, 39, 31, (400,123,0): 53, 40, 32, (400,124,0): 55, 42, 34, (400,125,0): 56, 43, 35, (400,126,0): 57, 44, 36, (400,127,0): 59, 44, 37, (400,128,0): 67, 50, 43, (400,129,0): 68, 49, 42, (400,130,0): 69, 50, 44, (400,131,0): 70, 51, 44, (400,132,0): 72, 53, 47, (400,133,0): 75, 56, 49, (400,134,0): 78, 59, 52, (400,135,0): 79, 60, 53, (400,136,0): 81, 62, 55, (400,137,0): 81, 62, 55, (400,138,0): 81, 62, 55, (400,139,0): 83, 63, 56, (400,140,0): 83, 63, 56, (400,141,0): 84, 64, 57, (400,142,0): 84, 64, 57, (400,143,0): 84, 64, 57, (400,144,0): 85, 65, 58, (400,145,0): 85, 65, 58, (400,146,0): 86, 66, 59, (400,147,0): 88, 68, 61, (400,148,0): 90, 70, 63, (400,149,0): 90, 71, 64, (400,150,0): 92, 73, 66, (400,151,0): 92, 73, 66, (400,152,0): 95, 76, 69, (400,153,0): 100, 80, 71, (400,154,0): 106, 86, 77, (400,155,0): 110, 90, 81, (400,156,0): 113, 90, 82, (400,157,0): 110, 87, 79, (400,158,0): 106, 83, 75, (400,159,0): 104, 80, 70, (400,160,0): 105, 81, 69, (400,161,0): 106, 80, 67, (400,162,0): 105, 79, 66, (400,163,0): 105, 77, 65, (400,164,0): 105, 77, 66, (400,165,0): 107, 79, 68, (400,166,0): 109, 80, 72, (400,167,0): 110, 81, 73, (400,168,0): 122, 93, 87, (400,169,0): 125, 96, 92, (400,170,0): 129, 101, 98, (400,171,0): 137, 111, 110, (400,172,0): 149, 123, 124, (400,173,0): 162, 137, 140, (400,174,0): 175, 150, 153, (400,175,0): 176, 159, 165, (400,176,0): 169, 163, 175, (400,177,0): 164, 166, 179, (400,178,0): 166, 168, 183, (400,179,0): 167, 170, 185, (400,180,0): 169, 175, 191, (400,181,0): 172, 179, 197, (400,182,0): 174, 182, 201, (400,183,0): 173, 186, 205, (400,184,0): 174, 189, 210, (400,185,0): 172, 189, 209, (400,186,0): 167, 187, 211, (400,187,0): 165, 187, 210, (400,188,0): 162, 186, 210, (400,189,0): 162, 186, 210, (400,190,0): 161, 187, 212, (400,191,0): 159, 187, 211, (400,192,0): 155, 187, 210, (400,193,0): 151, 185, 210, (400,194,0): 148, 184, 210, (400,195,0): 145, 182, 209, (400,196,0): 144, 183, 212, (400,197,0): 145, 186, 218, (400,198,0): 149, 189, 224, (400,199,0): 152, 192, 228, (400,200,0): 142, 182, 218, (400,201,0): 143, 183, 219, (400,202,0): 145, 183, 220, (400,203,0): 148, 184, 220, (400,204,0): 150, 186, 222, (400,205,0): 152, 186, 221, (400,206,0): 154, 187, 222, (400,207,0): 152, 188, 224, (400,208,0): 149, 192, 227, (400,209,0): 147, 193, 229, (400,210,0): 146, 192, 228, (400,211,0): 146, 192, 228, (400,212,0): 146, 192, 228, (400,213,0): 146, 192, 228, (400,214,0): 145, 191, 225, (400,215,0): 145, 191, 225, (400,216,0): 143, 189, 223, (400,217,0): 144, 188, 223, (400,218,0): 143, 187, 222, (400,219,0): 144, 187, 221, (400,220,0): 143, 186, 221, (400,221,0): 143, 186, 220, (400,222,0): 144, 184, 219, (400,223,0): 144, 184, 219, (400,224,0): 144, 182, 219, (400,225,0): 144, 182, 221, (400,226,0): 143, 182, 223, (400,227,0): 144, 183, 224, (400,228,0): 142, 184, 224, (400,229,0): 143, 185, 227, (400,230,0): 143, 185, 227, (400,231,0): 146, 184, 229, (400,232,0): 150, 188, 233, (400,233,0): 151, 188, 233, (400,234,0): 151, 187, 235, (400,235,0): 153, 187, 235, (400,236,0): 153, 187, 235, (400,237,0): 153, 187, 235, (400,238,0): 153, 187, 235, (400,239,0): 154, 186, 235, (400,240,0): 157, 185, 235, (400,241,0): 157, 183, 234, (400,242,0): 154, 181, 234, (400,243,0): 152, 179, 232, (400,244,0): 149, 179, 233, (400,245,0): 147, 178, 232, (400,246,0): 146, 179, 233, (400,247,0): 145, 180, 234, (400,248,0): 147, 184, 239, (400,249,0): 145, 184, 241, (400,250,0): 143, 183, 242, (400,251,0): 142, 184, 242, (400,252,0): 141, 183, 243, (400,253,0): 139, 184, 243, (400,254,0): 138, 182, 243, (400,255,0): 138, 182, 243, (400,256,0): 139, 181, 241, (400,257,0): 140, 182, 242, (400,258,0): 143, 183, 244, (400,259,0): 144, 186, 246, (400,260,0): 145, 186, 248, (400,261,0): 145, 186, 248, (400,262,0): 144, 185, 249, (400,263,0): 143, 184, 248, (400,264,0): 142, 183, 247, (400,265,0): 142, 183, 247, (400,266,0): 142, 183, 249, (400,267,0): 142, 183, 249, (400,268,0): 141, 181, 250, (400,269,0): 139, 182, 250, (400,270,0): 141, 181, 250, (400,271,0): 141, 181, 250, (400,272,0): 145, 183, 254, (400,273,0): 144, 181, 252, (400,274,0): 142, 178, 252, (400,275,0): 141, 178, 249, (400,276,0): 142, 179, 250, (400,277,0): 145, 182, 253, (400,278,0): 149, 186, 255, (400,279,0): 151, 188, 255, (400,280,0): 150, 187, 255, (400,281,0): 151, 185, 255, (400,282,0): 150, 185, 253, (400,283,0): 151, 184, 253, (400,284,0): 153, 186, 255, (400,285,0): 155, 188, 255, (400,286,0): 160, 190, 255, (400,287,0): 162, 192, 255, (400,288,0): 162, 191, 255, (400,289,0): 162, 191, 255, (400,290,0): 161, 190, 255, (400,291,0): 160, 189, 255, (400,292,0): 161, 188, 255, (400,293,0): 160, 187, 255, (400,294,0): 159, 186, 255, (400,295,0): 159, 186, 255, (400,296,0): 156, 183, 252, (400,297,0): 156, 185, 253, (400,298,0): 156, 185, 253, (400,299,0): 155, 184, 252, (400,300,0): 154, 183, 249, (400,301,0): 152, 182, 246, (400,302,0): 151, 179, 244, (400,303,0): 154, 175, 238, (400,304,0): 155, 165, 224, (400,305,0): 147, 153, 205, (400,306,0): 141, 144, 185, (400,307,0): 137, 140, 171, (400,308,0): 131, 133, 154, (400,309,0): 121, 122, 140, (400,310,0): 118, 119, 139, (400,311,0): 122, 123, 144, (400,312,0): 131, 131, 157, (400,313,0): 135, 135, 161, (400,314,0): 134, 134, 158, (400,315,0): 131, 129, 151, (400,316,0): 131, 126, 146, (400,317,0): 131, 122, 143, (400,318,0): 121, 109, 131, (400,319,0): 111, 94, 112, (400,320,0): 109, 83, 94, (400,321,0): 110, 81, 85, (400,322,0): 107, 78, 82, (400,323,0): 103, 75, 74, (400,324,0): 101, 71, 69, (400,325,0): 99, 68, 65, (400,326,0): 101, 66, 62, (400,327,0): 103, 64, 59, (400,328,0): 104, 59, 56, (400,329,0): 107, 57, 56, (400,330,0): 107, 56, 55, (400,331,0): 102, 50, 52, (400,332,0): 94, 44, 45, (400,333,0): 83, 37, 39, (400,334,0): 75, 30, 33, (400,335,0): 68, 27, 33, (400,336,0): 67, 32, 39, (400,337,0): 64, 31, 40, (400,338,0): 62, 31, 39, (400,339,0): 59, 29, 37, (400,340,0): 57, 27, 35, (400,341,0): 53, 26, 35, (400,342,0): 51, 25, 34, (400,343,0): 50, 24, 33, (400,344,0): 48, 25, 33, (400,345,0): 48, 25, 33, (400,346,0): 47, 24, 32, (400,347,0): 46, 23, 31, (400,348,0): 45, 22, 28, (400,349,0): 44, 21, 27, (400,350,0): 45, 20, 26, (400,351,0): 45, 20, 26, (400,352,0): 49, 24, 28, (400,353,0): 49, 24, 28, (400,354,0): 50, 23, 28, (400,355,0): 50, 23, 28, (400,356,0): 50, 23, 28, (400,357,0): 50, 23, 28, (400,358,0): 50, 23, 28, (400,359,0): 50, 23, 28, (400,360,0): 54, 27, 32, (400,361,0): 54, 27, 32, (400,362,0): 53, 26, 31, (400,363,0): 53, 26, 31, (400,364,0): 52, 25, 30, (400,365,0): 52, 25, 30, (400,366,0): 51, 24, 29, (400,367,0): 51, 24, 29, (400,368,0): 48, 23, 27, (400,369,0): 46, 24, 27, (400,370,0): 45, 23, 26, (400,371,0): 44, 22, 25, (400,372,0): 43, 22, 27, (400,373,0): 42, 21, 26, (400,374,0): 41, 20, 27, (400,375,0): 40, 21, 27, (400,376,0): 42, 23, 29, (400,377,0): 39, 22, 28, (400,378,0): 37, 20, 28, (400,379,0): 34, 19, 26, (400,380,0): 33, 17, 27, (400,381,0): 33, 17, 27, (400,382,0): 33, 17, 27, (400,383,0): 33, 17, 27, (400,384,0): 34, 19, 26, (400,385,0): 34, 19, 24, (400,386,0): 36, 19, 27, (400,387,0): 37, 22, 27, (400,388,0): 39, 22, 28, (400,389,0): 40, 25, 30, (400,390,0): 42, 25, 31, (400,391,0): 41, 26, 31, (400,392,0): 46, 29, 35, (400,393,0): 45, 30, 35, (400,394,0): 47, 30, 36, (400,395,0): 46, 31, 36, (400,396,0): 46, 29, 35, (400,397,0): 42, 27, 30, (400,398,0): 40, 23, 29, (400,399,0): 38, 21, 27, (400,400,0): 35, 18, 24, (400,401,0): 37, 20, 26, (400,402,0): 40, 23, 31, (400,403,0): 43, 26, 34, (400,404,0): 45, 28, 36, (400,405,0): 45, 28, 36, (400,406,0): 44, 27, 35, (400,407,0): 43, 26, 34, (400,408,0): 37, 20, 30, (400,409,0): 38, 21, 31, (400,410,0): 40, 22, 34, (400,411,0): 41, 23, 35, (400,412,0): 42, 24, 36, (400,413,0): 41, 23, 35, (400,414,0): 41, 23, 35, (400,415,0): 40, 22, 34, (400,416,0): 43, 28, 35, (400,417,0): 43, 28, 33, (400,418,0): 43, 28, 33, (400,419,0): 44, 27, 33, (400,420,0): 44, 27, 33, (400,421,0): 44, 27, 33, (400,422,0): 44, 27, 33, (400,423,0): 44, 27, 33, (400,424,0): 38, 21, 27, (400,425,0): 39, 22, 28, (400,426,0): 39, 22, 28, (400,427,0): 40, 23, 29, (400,428,0): 39, 24, 29, (400,429,0): 40, 25, 30, (400,430,0): 40, 25, 30, (400,431,0): 38, 26, 30, (400,432,0): 40, 31, 32, (400,433,0): 41, 35, 35, (400,434,0): 45, 36, 37, (400,435,0): 46, 36, 37, (400,436,0): 44, 32, 34, (400,437,0): 44, 29, 34, (400,438,0): 49, 30, 36, (400,439,0): 51, 32, 38, (400,440,0): 49, 29, 38, (400,441,0): 48, 28, 37, (400,442,0): 44, 27, 35, (400,443,0): 41, 25, 35, (400,444,0): 36, 23, 32, (400,445,0): 33, 20, 29, (400,446,0): 30, 19, 27, (400,447,0): 30, 17, 24, (400,448,0): 37, 20, 26, (400,449,0): 38, 22, 25, (400,450,0): 42, 23, 27, (400,451,0): 45, 29, 32, (400,452,0): 53, 34, 36, (400,453,0): 58, 42, 43, (400,454,0): 64, 50, 49, (400,455,0): 68, 54, 51, (400,456,0): 74, 63, 57, (400,457,0): 77, 68, 61, (400,458,0): 79, 75, 64, (400,459,0): 84, 82, 70, (400,460,0): 86, 88, 74, (400,461,0): 91, 95, 80, (400,462,0): 97, 101, 84, (400,463,0): 104, 105, 87, (400,464,0): 113, 100, 83, (400,465,0): 122, 101, 82, (400,466,0): 126, 99, 80, (400,467,0): 124, 93, 72, (400,468,0): 124, 94, 68, (400,469,0): 126, 99, 69, (400,470,0): 121, 101, 64, (400,471,0): 112, 97, 56, (400,472,0): 105, 97, 51, (400,473,0): 106, 99, 53, (400,474,0): 108, 104, 59, (400,475,0): 111, 108, 63, (400,476,0): 108, 109, 67, (400,477,0): 99, 104, 63, (400,478,0): 86, 95, 52, (400,479,0): 78, 86, 47, (400,480,0): 86, 90, 57, (400,481,0): 86, 87, 56, (400,482,0): 84, 84, 56, (400,483,0): 86, 84, 59, (400,484,0): 90, 85, 63, (400,485,0): 91, 84, 65, (400,486,0): 88, 79, 62, (400,487,0): 86, 74, 60, (400,488,0): 83, 69, 58, (400,489,0): 84, 67, 59, (400,490,0): 81, 64, 57, (400,491,0): 78, 59, 55, (400,492,0): 76, 55, 52, (400,493,0): 73, 52, 51, (400,494,0): 71, 50, 49, (400,495,0): 70, 51, 47, (400,496,0): 64, 47, 39, (400,497,0): 62, 48, 37, (400,498,0): 62, 48, 37, (400,499,0): 63, 49, 40, (400,500,0): 65, 51, 42, (400,501,0): 67, 53, 44, (400,502,0): 69, 54, 47, (400,503,0): 71, 56, 51, (400,504,0): 64, 49, 46, (400,505,0): 62, 47, 44, (400,506,0): 58, 42, 42, (400,507,0): 54, 38, 38, (400,508,0): 50, 34, 35, (400,509,0): 48, 32, 33, (400,510,0): 46, 30, 31, (400,511,0): 45, 31, 31, (400,512,0): 43, 31, 31, (400,513,0): 41, 29, 29, (400,514,0): 42, 28, 28, (400,515,0): 40, 26, 26, (400,516,0): 40, 24, 25, (400,517,0): 39, 23, 24, (400,518,0): 42, 23, 25, (400,519,0): 42, 23, 25, (400,520,0): 41, 21, 23, (400,521,0): 40, 21, 23, (400,522,0): 39, 23, 24, (400,523,0): 40, 24, 25, (400,524,0): 40, 26, 26, (400,525,0): 40, 26, 26, (400,526,0): 39, 27, 27, (400,527,0): 41, 27, 27, (400,528,0): 48, 27, 32, (400,529,0): 48, 25, 31, (400,530,0): 45, 24, 29, (400,531,0): 42, 23, 27, (400,532,0): 39, 23, 26, (400,533,0): 40, 24, 27, (400,534,0): 41, 25, 28, (400,535,0): 44, 25, 29, (400,536,0): 43, 22, 27, (400,537,0): 44, 21, 27, (400,538,0): 44, 21, 27, (400,539,0): 44, 21, 27, (400,540,0): 43, 24, 28, (400,541,0): 43, 27, 30, (400,542,0): 44, 29, 32, (400,543,0): 45, 30, 33, (400,544,0): 45, 26, 30, (400,545,0): 50, 29, 34, (400,546,0): 53, 32, 37, (400,547,0): 54, 33, 38, (400,548,0): 52, 31, 36, (400,549,0): 53, 32, 37, (400,550,0): 55, 36, 40, (400,551,0): 58, 39, 43, (400,552,0): 60, 41, 45, (400,553,0): 57, 41, 44, (400,554,0): 56, 40, 43, (400,555,0): 54, 38, 41, (400,556,0): 52, 36, 39, (400,557,0): 50, 34, 37, (400,558,0): 49, 33, 36, (400,559,0): 48, 32, 33, (400,560,0): 56, 38, 34, (400,561,0): 56, 39, 32, (400,562,0): 57, 39, 35, (400,563,0): 59, 41, 37, (400,564,0): 61, 43, 41, (400,565,0): 58, 42, 42, (400,566,0): 53, 37, 38, (400,567,0): 49, 33, 36, (400,568,0): 46, 29, 35, (400,569,0): 41, 26, 33, (400,570,0): 37, 21, 31, (400,571,0): 34, 21, 31, (400,572,0): 35, 22, 32, (400,573,0): 37, 23, 36, (400,574,0): 37, 23, 36, (400,575,0): 38, 22, 35, (400,576,0): 38, 17, 32, (400,577,0): 42, 18, 34, (400,578,0): 45, 21, 35, (400,579,0): 48, 24, 37, (400,580,0): 49, 26, 36, (400,581,0): 47, 26, 33, (400,582,0): 44, 25, 29, (400,583,0): 40, 26, 26, (400,584,0): 44, 33, 31, (400,585,0): 38, 28, 26, (400,586,0): 33, 23, 21, (400,587,0): 35, 24, 22, (400,588,0): 44, 28, 28, (400,589,0): 54, 36, 36, (400,590,0): 61, 39, 42, (400,591,0): 66, 41, 44, (400,592,0): 73, 47, 48, (400,593,0): 76, 50, 51, (400,594,0): 80, 54, 55, (400,595,0): 83, 59, 59, (400,596,0): 83, 62, 61, (400,597,0): 84, 63, 62, (400,598,0): 83, 63, 62, (400,599,0): 82, 62, 61, (401,0,0): 72, 71, 51, (401,1,0): 73, 72, 52, (401,2,0): 73, 72, 52, (401,3,0): 74, 73, 53, (401,4,0): 75, 74, 54, (401,5,0): 75, 74, 54, (401,6,0): 77, 74, 55, (401,7,0): 77, 74, 55, (401,8,0): 81, 76, 57, (401,9,0): 81, 76, 57, (401,10,0): 82, 75, 57, (401,11,0): 82, 75, 57, (401,12,0): 83, 76, 58, (401,13,0): 85, 78, 60, (401,14,0): 87, 80, 62, (401,15,0): 88, 81, 63, (401,16,0): 86, 77, 60, (401,17,0): 87, 78, 61, (401,18,0): 89, 77, 61, (401,19,0): 90, 78, 62, (401,20,0): 90, 79, 61, (401,21,0): 91, 80, 62, (401,22,0): 92, 79, 62, (401,23,0): 92, 79, 62, (401,24,0): 91, 76, 57, (401,25,0): 92, 77, 58, (401,26,0): 92, 77, 56, (401,27,0): 93, 78, 57, (401,28,0): 95, 78, 58, (401,29,0): 95, 78, 58, (401,30,0): 96, 80, 57, (401,31,0): 95, 80, 59, (401,32,0): 98, 83, 64, (401,33,0): 97, 84, 67, (401,34,0): 98, 85, 68, (401,35,0): 100, 87, 70, (401,36,0): 103, 90, 71, (401,37,0): 105, 92, 73, (401,38,0): 105, 94, 72, (401,39,0): 106, 95, 73, (401,40,0): 105, 97, 74, (401,41,0): 105, 97, 74, (401,42,0): 104, 98, 72, (401,43,0): 105, 99, 73, (401,44,0): 105, 100, 71, (401,45,0): 106, 101, 72, (401,46,0): 106, 101, 72, (401,47,0): 107, 100, 71, (401,48,0): 115, 101, 72, (401,49,0): 117, 102, 71, (401,50,0): 120, 105, 74, (401,51,0): 122, 107, 76, (401,52,0): 123, 108, 77, (401,53,0): 123, 108, 77, (401,54,0): 123, 108, 77, (401,55,0): 122, 107, 76, (401,56,0): 125, 110, 79, (401,57,0): 124, 109, 78, (401,58,0): 123, 108, 77, (401,59,0): 122, 107, 76, (401,60,0): 121, 106, 75, (401,61,0): 122, 107, 76, (401,62,0): 122, 107, 76, (401,63,0): 122, 109, 77, (401,64,0): 119, 105, 76, (401,65,0): 113, 102, 72, (401,66,0): 108, 97, 69, (401,67,0): 105, 94, 66, (401,68,0): 102, 91, 63, (401,69,0): 97, 86, 58, (401,70,0): 91, 79, 53, (401,71,0): 86, 74, 48, (401,72,0): 85, 73, 49, (401,73,0): 80, 68, 44, (401,74,0): 75, 63, 39, (401,75,0): 72, 60, 36, (401,76,0): 72, 60, 38, (401,77,0): 71, 59, 37, (401,78,0): 69, 57, 35, (401,79,0): 67, 54, 35, (401,80,0): 69, 58, 40, (401,81,0): 68, 56, 40, (401,82,0): 67, 55, 39, (401,83,0): 66, 54, 38, (401,84,0): 64, 52, 36, (401,85,0): 63, 51, 35, (401,86,0): 62, 50, 34, (401,87,0): 61, 49, 33, (401,88,0): 59, 47, 31, (401,89,0): 58, 46, 30, (401,90,0): 58, 46, 30, (401,91,0): 57, 45, 29, (401,92,0): 57, 45, 29, (401,93,0): 56, 44, 28, (401,94,0): 56, 44, 28, (401,95,0): 56, 44, 28, (401,96,0): 54, 40, 29, (401,97,0): 54, 40, 29, (401,98,0): 54, 40, 29, (401,99,0): 54, 40, 29, (401,100,0): 54, 40, 29, (401,101,0): 54, 40, 29, (401,102,0): 54, 40, 29, (401,103,0): 54, 40, 29, (401,104,0): 52, 38, 27, (401,105,0): 52, 38, 27, (401,106,0): 52, 38, 27, (401,107,0): 52, 38, 27, (401,108,0): 52, 38, 27, (401,109,0): 52, 38, 27, (401,110,0): 52, 38, 27, (401,111,0): 52, 38, 27, (401,112,0): 52, 39, 31, (401,113,0): 50, 40, 31, (401,114,0): 50, 40, 31, (401,115,0): 49, 39, 30, (401,116,0): 49, 39, 30, (401,117,0): 48, 38, 29, (401,118,0): 48, 38, 29, (401,119,0): 48, 38, 29, (401,120,0): 49, 39, 30, (401,121,0): 49, 39, 30, (401,122,0): 50, 40, 31, (401,123,0): 51, 41, 32, (401,124,0): 53, 43, 34, (401,125,0): 54, 44, 35, (401,126,0): 55, 45, 36, (401,127,0): 57, 44, 36, (401,128,0): 65, 48, 41, (401,129,0): 66, 47, 41, (401,130,0): 67, 48, 42, (401,131,0): 68, 49, 43, (401,132,0): 71, 52, 46, (401,133,0): 74, 55, 49, (401,134,0): 77, 58, 52, (401,135,0): 79, 60, 54, (401,136,0): 80, 61, 55, (401,137,0): 80, 61, 55, (401,138,0): 81, 62, 56, (401,139,0): 81, 62, 56, (401,140,0): 82, 63, 57, (401,141,0): 83, 64, 58, (401,142,0): 83, 64, 58, (401,143,0): 84, 65, 59, (401,144,0): 84, 65, 59, (401,145,0): 85, 66, 60, (401,146,0): 86, 67, 61, (401,147,0): 87, 68, 62, (401,148,0): 88, 69, 63, (401,149,0): 90, 71, 65, (401,150,0): 91, 72, 66, (401,151,0): 91, 72, 66, (401,152,0): 94, 75, 69, (401,153,0): 97, 78, 72, (401,154,0): 101, 82, 76, (401,155,0): 105, 86, 80, (401,156,0): 107, 88, 82, (401,157,0): 105, 86, 80, (401,158,0): 103, 84, 78, (401,159,0): 101, 82, 75, (401,160,0): 103, 84, 70, (401,161,0): 102, 83, 66, (401,162,0): 103, 81, 67, (401,163,0): 102, 80, 66, (401,164,0): 102, 80, 67, (401,165,0): 103, 81, 68, (401,166,0): 106, 82, 72, (401,167,0): 107, 83, 73, (401,168,0): 115, 88, 81, (401,169,0): 117, 89, 85, (401,170,0): 121, 93, 90, (401,171,0): 129, 101, 98, (401,172,0): 141, 111, 111, (401,173,0): 153, 123, 123, (401,174,0): 164, 134, 134, (401,175,0): 166, 141, 144, (401,176,0): 163, 150, 159, (401,177,0): 160, 152, 163, (401,178,0): 162, 154, 167, (401,179,0): 163, 157, 169, (401,180,0): 165, 161, 175, (401,181,0): 167, 165, 179, (401,182,0): 166, 168, 183, (401,183,0): 167, 170, 187, (401,184,0): 172, 179, 197, (401,185,0): 170, 181, 199, (401,186,0): 170, 183, 202, (401,187,0): 168, 185, 203, (401,188,0): 169, 186, 206, (401,189,0): 168, 186, 206, (401,190,0): 165, 186, 207, (401,191,0): 163, 185, 206, (401,192,0): 160, 187, 206, (401,193,0): 157, 185, 206, (401,194,0): 152, 182, 206, (401,195,0): 151, 183, 208, (401,196,0): 148, 183, 211, (401,197,0): 148, 185, 214, (401,198,0): 146, 185, 218, (401,199,0): 145, 183, 219, (401,200,0): 144, 182, 218, (401,201,0): 145, 183, 219, (401,202,0): 148, 184, 220, (401,203,0): 149, 185, 219, (401,204,0): 151, 186, 218, (401,205,0): 153, 186, 219, (401,206,0): 156, 187, 218, (401,207,0): 154, 189, 221, (401,208,0): 149, 192, 227, (401,209,0): 147, 193, 229, (401,210,0): 147, 193, 229, (401,211,0): 146, 192, 228, (401,212,0): 146, 192, 228, (401,213,0): 145, 191, 227, (401,214,0): 146, 190, 225, (401,215,0): 146, 190, 225, (401,216,0): 144, 188, 223, (401,217,0): 143, 187, 222, (401,218,0): 144, 187, 221, (401,219,0): 143, 186, 220, (401,220,0): 143, 186, 220, (401,221,0): 142, 185, 219, (401,222,0): 144, 185, 217, (401,223,0): 144, 184, 219, (401,224,0): 143, 182, 221, (401,225,0): 143, 182, 223, (401,226,0): 144, 183, 226, (401,227,0): 144, 183, 226, (401,228,0): 145, 184, 227, (401,229,0): 145, 184, 227, (401,230,0): 145, 183, 228, (401,231,0): 146, 184, 229, (401,232,0): 150, 188, 235, (401,233,0): 150, 188, 235, (401,234,0): 150, 188, 235, (401,235,0): 150, 188, 235, (401,236,0): 150, 188, 237, (401,237,0): 150, 188, 237, (401,238,0): 150, 188, 237, (401,239,0): 151, 187, 237, (401,240,0): 155, 185, 235, (401,241,0): 156, 184, 234, (401,242,0): 154, 181, 234, (401,243,0): 151, 181, 233, (401,244,0): 149, 180, 234, (401,245,0): 148, 181, 234, (401,246,0): 148, 181, 235, (401,247,0): 146, 183, 236, (401,248,0): 147, 183, 241, (401,249,0): 145, 184, 241, (401,250,0): 143, 183, 242, (401,251,0): 142, 184, 242, (401,252,0): 139, 184, 243, (401,253,0): 139, 184, 243, (401,254,0): 137, 183, 243, (401,255,0): 137, 183, 243, (401,256,0): 139, 181, 241, (401,257,0): 140, 182, 242, (401,258,0): 142, 184, 244, (401,259,0): 144, 186, 246, (401,260,0): 144, 185, 247, (401,261,0): 144, 185, 247, (401,262,0): 143, 184, 248, (401,263,0): 142, 183, 247, (401,264,0): 142, 183, 247, (401,265,0): 142, 183, 247, (401,266,0): 142, 183, 249, (401,267,0): 142, 183, 249, (401,268,0): 141, 181, 250, (401,269,0): 141, 181, 250, (401,270,0): 141, 181, 250, (401,271,0): 142, 181, 250, (401,272,0): 146, 182, 255, (401,273,0): 147, 181, 255, (401,274,0): 145, 179, 253, (401,275,0): 144, 178, 252, (401,276,0): 145, 179, 251, (401,277,0): 148, 182, 254, (401,278,0): 151, 185, 255, (401,279,0): 153, 187, 255, (401,280,0): 153, 187, 255, (401,281,0): 152, 186, 255, (401,282,0): 151, 186, 254, (401,283,0): 151, 186, 254, (401,284,0): 152, 187, 253, (401,285,0): 154, 189, 255, (401,286,0): 156, 191, 255, (401,287,0): 158, 191, 255, (401,288,0): 163, 190, 255, (401,289,0): 164, 188, 255, (401,290,0): 162, 189, 255, (401,291,0): 161, 188, 255, (401,292,0): 160, 187, 255, (401,293,0): 160, 187, 255, (401,294,0): 159, 186, 253, (401,295,0): 159, 186, 253, (401,296,0): 156, 186, 250, (401,297,0): 156, 186, 250, (401,298,0): 156, 187, 251, (401,299,0): 155, 186, 250, (401,300,0): 155, 187, 248, (401,301,0): 153, 185, 246, (401,302,0): 151, 183, 244, (401,303,0): 154, 180, 241, (401,304,0): 157, 168, 232, (401,305,0): 150, 155, 213, (401,306,0): 140, 143, 188, (401,307,0): 135, 136, 167, (401,308,0): 128, 129, 150, (401,309,0): 122, 121, 139, (401,310,0): 122, 120, 141, (401,311,0): 127, 125, 147, (401,312,0): 131, 131, 157, (401,313,0): 135, 135, 161, (401,314,0): 134, 134, 158, (401,315,0): 131, 129, 150, (401,316,0): 130, 127, 148, (401,317,0): 130, 122, 143, (401,318,0): 122, 110, 134, (401,319,0): 114, 97, 116, (401,320,0): 114, 88, 99, (401,321,0): 116, 87, 92, (401,322,0): 114, 85, 87, (401,323,0): 111, 83, 82, (401,324,0): 108, 79, 75, (401,325,0): 107, 74, 67, (401,326,0): 106, 69, 61, (401,327,0): 108, 65, 58, (401,328,0): 109, 60, 55, (401,329,0): 109, 58, 54, (401,330,0): 109, 55, 53, (401,331,0): 102, 51, 50, (401,332,0): 91, 45, 47, (401,333,0): 80, 38, 40, (401,334,0): 71, 32, 37, (401,335,0): 64, 29, 35, (401,336,0): 65, 32, 39, (401,337,0): 64, 33, 41, (401,338,0): 62, 31, 39, (401,339,0): 60, 30, 38, (401,340,0): 58, 28, 36, (401,341,0): 56, 26, 34, (401,342,0): 55, 25, 33, (401,343,0): 52, 25, 32, (401,344,0): 52, 25, 32, (401,345,0): 50, 25, 31, (401,346,0): 49, 24, 30, (401,347,0): 48, 23, 29, (401,348,0): 47, 22, 28, (401,349,0): 44, 21, 27, (401,350,0): 43, 20, 26, (401,351,0): 45, 20, 26, (401,352,0): 50, 23, 28, (401,353,0): 50, 23, 28, (401,354,0): 50, 23, 28, (401,355,0): 50, 23, 28, (401,356,0): 50, 23, 28, (401,357,0): 50, 23, 28, (401,358,0): 50, 23, 28, (401,359,0): 50, 23, 28, (401,360,0): 53, 26, 31, (401,361,0): 53, 26, 31, (401,362,0): 52, 25, 30, (401,363,0): 52, 25, 30, (401,364,0): 51, 24, 29, (401,365,0): 51, 24, 29, (401,366,0): 50, 23, 28, (401,367,0): 49, 24, 28, (401,368,0): 46, 24, 27, (401,369,0): 45, 25, 27, (401,370,0): 44, 24, 26, (401,371,0): 43, 23, 25, (401,372,0): 42, 23, 27, (401,373,0): 41, 22, 26, (401,374,0): 40, 21, 27, (401,375,0): 40, 21, 27, (401,376,0): 40, 23, 29, (401,377,0): 39, 22, 28, (401,378,0): 36, 21, 28, (401,379,0): 34, 19, 26, (401,380,0): 33, 17, 27, (401,381,0): 33, 17, 27, (401,382,0): 31, 18, 27, (401,383,0): 31, 18, 25, (401,384,0): 35, 18, 26, (401,385,0): 36, 19, 25, (401,386,0): 37, 20, 26, (401,387,0): 38, 21, 27, (401,388,0): 39, 22, 28, (401,389,0): 40, 23, 29, (401,390,0): 41, 24, 30, (401,391,0): 42, 25, 31, (401,392,0): 45, 28, 34, (401,393,0): 45, 28, 34, (401,394,0): 45, 28, 34, (401,395,0): 44, 27, 33, (401,396,0): 43, 26, 32, (401,397,0): 41, 24, 30, (401,398,0): 40, 23, 29, (401,399,0): 39, 22, 28, (401,400,0): 36, 19, 25, (401,401,0): 38, 21, 27, (401,402,0): 41, 24, 30, (401,403,0): 44, 27, 33, (401,404,0): 45, 28, 36, (401,405,0): 44, 27, 35, (401,406,0): 43, 26, 34, (401,407,0): 42, 25, 33, (401,408,0): 37, 20, 30, (401,409,0): 38, 21, 31, (401,410,0): 40, 22, 34, (401,411,0): 41, 23, 35, (401,412,0): 42, 24, 36, (401,413,0): 41, 23, 35, (401,414,0): 41, 23, 37, (401,415,0): 40, 22, 34, (401,416,0): 43, 26, 34, (401,417,0): 43, 26, 32, (401,418,0): 43, 26, 32, (401,419,0): 43, 26, 32, (401,420,0): 43, 26, 32, (401,421,0): 43, 26, 32, (401,422,0): 43, 26, 32, (401,423,0): 43, 26, 32, (401,424,0): 38, 21, 27, (401,425,0): 38, 21, 27, (401,426,0): 39, 22, 28, (401,427,0): 39, 22, 28, (401,428,0): 40, 23, 29, (401,429,0): 40, 23, 29, (401,430,0): 41, 24, 30, (401,431,0): 40, 25, 28, (401,432,0): 41, 31, 30, (401,433,0): 43, 35, 32, (401,434,0): 47, 37, 35, (401,435,0): 47, 36, 34, (401,436,0): 47, 33, 33, (401,437,0): 46, 30, 31, (401,438,0): 49, 30, 34, (401,439,0): 52, 31, 36, (401,440,0): 50, 29, 38, (401,441,0): 48, 28, 37, (401,442,0): 45, 28, 38, (401,443,0): 41, 25, 35, (401,444,0): 37, 24, 34, (401,445,0): 33, 21, 31, (401,446,0): 30, 20, 29, (401,447,0): 31, 20, 28, (401,448,0): 38, 21, 27, (401,449,0): 41, 20, 25, (401,450,0): 43, 23, 25, (401,451,0): 48, 28, 30, (401,452,0): 54, 34, 36, (401,453,0): 60, 41, 43, (401,454,0): 66, 48, 48, (401,455,0): 67, 53, 52, (401,456,0): 73, 59, 56, (401,457,0): 74, 65, 60, (401,458,0): 76, 71, 65, (401,459,0): 79, 79, 71, (401,460,0): 83, 86, 75, (401,461,0): 87, 95, 82, (401,462,0): 96, 104, 91, (401,463,0): 106, 110, 96, (401,464,0): 111, 105, 89, (401,465,0): 120, 107, 88, (401,466,0): 127, 105, 84, (401,467,0): 126, 98, 76, (401,468,0): 127, 95, 70, (401,469,0): 128, 99, 69, (401,470,0): 122, 100, 63, (401,471,0): 111, 96, 55, (401,472,0): 108, 100, 54, (401,473,0): 106, 102, 55, (401,474,0): 110, 106, 61, (401,475,0): 112, 109, 68, (401,476,0): 111, 109, 71, (401,477,0): 102, 104, 67, (401,478,0): 89, 95, 59, (401,479,0): 81, 86, 54, (401,480,0): 81, 81, 55, (401,481,0): 81, 79, 56, (401,482,0): 83, 78, 56, (401,483,0): 86, 79, 60, (401,484,0): 90, 81, 64, (401,485,0): 91, 79, 63, (401,486,0): 88, 74, 61, (401,487,0): 87, 71, 58, (401,488,0): 84, 67, 57, (401,489,0): 83, 66, 58, (401,490,0): 81, 62, 56, (401,491,0): 77, 58, 54, (401,492,0): 74, 53, 52, (401,493,0): 71, 49, 51, (401,494,0): 69, 47, 49, (401,495,0): 67, 47, 46, (401,496,0): 63, 46, 38, (401,497,0): 60, 46, 33, (401,498,0): 61, 47, 36, (401,499,0): 62, 48, 37, (401,500,0): 64, 50, 41, (401,501,0): 66, 52, 43, (401,502,0): 68, 53, 46, (401,503,0): 70, 55, 48, (401,504,0): 64, 49, 46, (401,505,0): 62, 47, 44, (401,506,0): 59, 43, 43, (401,507,0): 55, 39, 39, (401,508,0): 51, 35, 36, (401,509,0): 49, 33, 34, (401,510,0): 47, 31, 34, (401,511,0): 46, 31, 34, (401,512,0): 43, 31, 31, (401,513,0): 41, 29, 29, (401,514,0): 42, 28, 28, (401,515,0): 40, 26, 26, (401,516,0): 40, 24, 25, (401,517,0): 41, 22, 24, (401,518,0): 43, 23, 25, (401,519,0): 43, 23, 25, (401,520,0): 42, 22, 24, (401,521,0): 42, 22, 24, (401,522,0): 42, 23, 25, (401,523,0): 41, 25, 26, (401,524,0): 40, 26, 26, (401,525,0): 41, 27, 27, (401,526,0): 40, 28, 28, (401,527,0): 42, 28, 28, (401,528,0): 49, 27, 30, (401,529,0): 50, 25, 29, (401,530,0): 45, 25, 27, (401,531,0): 42, 23, 25, (401,532,0): 40, 24, 25, (401,533,0): 39, 25, 25, (401,534,0): 41, 25, 26, (401,535,0): 44, 25, 27, (401,536,0): 42, 22, 24, (401,537,0): 43, 21, 24, (401,538,0): 44, 19, 23, (401,539,0): 44, 19, 23, (401,540,0): 41, 21, 23, (401,541,0): 41, 22, 24, (401,542,0): 40, 26, 26, (401,543,0): 42, 26, 27, (401,544,0): 45, 24, 29, (401,545,0): 49, 26, 32, (401,546,0): 52, 29, 35, (401,547,0): 52, 29, 35, (401,548,0): 51, 28, 34, (401,549,0): 52, 29, 35, (401,550,0): 54, 33, 38, (401,551,0): 57, 36, 41, (401,552,0): 59, 40, 44, (401,553,0): 58, 39, 43, (401,554,0): 55, 39, 42, (401,555,0): 53, 37, 40, (401,556,0): 51, 35, 38, (401,557,0): 50, 34, 37, (401,558,0): 48, 32, 35, (401,559,0): 48, 32, 32, (401,560,0): 57, 38, 34, (401,561,0): 56, 37, 30, (401,562,0): 57, 38, 32, (401,563,0): 59, 40, 34, (401,564,0): 60, 42, 40, (401,565,0): 59, 41, 39, (401,566,0): 55, 37, 37, (401,567,0): 51, 32, 34, (401,568,0): 46, 30, 33, (401,569,0): 42, 25, 31, (401,570,0): 37, 22, 29, (401,571,0): 35, 19, 29, (401,572,0): 36, 20, 31, (401,573,0): 38, 22, 33, (401,574,0): 36, 22, 35, (401,575,0): 38, 20, 34, (401,576,0): 42, 18, 34, (401,577,0): 47, 18, 36, (401,578,0): 50, 22, 37, (401,579,0): 52, 24, 38, (401,580,0): 53, 26, 35, (401,581,0): 52, 27, 33, (401,582,0): 47, 28, 30, (401,583,0): 43, 29, 28, (401,584,0): 43, 34, 29, (401,585,0): 39, 32, 26, (401,586,0): 37, 30, 24, (401,587,0): 40, 31, 26, (401,588,0): 50, 36, 35, (401,589,0): 60, 42, 42, (401,590,0): 67, 45, 48, (401,591,0): 72, 46, 49, (401,592,0): 77, 51, 52, (401,593,0): 79, 53, 52, (401,594,0): 83, 57, 56, (401,595,0): 86, 62, 60, (401,596,0): 86, 65, 62, (401,597,0): 85, 66, 62, (401,598,0): 85, 66, 62, (401,599,0): 84, 65, 61, (402,0,0): 72, 74, 53, (402,1,0): 72, 74, 53, (402,2,0): 74, 73, 53, (402,3,0): 74, 73, 53, (402,4,0): 75, 74, 54, (402,5,0): 75, 74, 54, (402,6,0): 77, 74, 55, (402,7,0): 77, 74, 55, (402,8,0): 81, 76, 57, (402,9,0): 80, 75, 56, (402,10,0): 80, 75, 56, (402,11,0): 80, 75, 56, (402,12,0): 83, 76, 58, (402,13,0): 84, 77, 59, (402,14,0): 86, 79, 61, (402,15,0): 87, 80, 62, (402,16,0): 88, 79, 64, (402,17,0): 88, 79, 64, (402,18,0): 90, 78, 62, (402,19,0): 91, 79, 63, (402,20,0): 92, 80, 64, (402,21,0): 92, 80, 64, (402,22,0): 93, 80, 63, (402,23,0): 94, 81, 64, (402,24,0): 93, 78, 59, (402,25,0): 93, 78, 59, (402,26,0): 93, 78, 59, (402,27,0): 93, 78, 59, (402,28,0): 95, 78, 58, (402,29,0): 95, 78, 58, (402,30,0): 96, 79, 59, (402,31,0): 95, 80, 59, (402,32,0): 96, 81, 62, (402,33,0): 95, 82, 65, (402,34,0): 96, 83, 66, (402,35,0): 98, 85, 68, (402,36,0): 101, 88, 69, (402,37,0): 103, 90, 71, (402,38,0): 103, 92, 70, (402,39,0): 104, 93, 71, (402,40,0): 104, 96, 73, (402,41,0): 105, 97, 74, (402,42,0): 104, 98, 72, (402,43,0): 105, 99, 73, (402,44,0): 105, 100, 71, (402,45,0): 106, 101, 72, (402,46,0): 106, 101, 72, (402,47,0): 108, 101, 72, (402,48,0): 113, 99, 70, (402,49,0): 116, 101, 70, (402,50,0): 118, 103, 72, (402,51,0): 120, 105, 74, (402,52,0): 122, 107, 76, (402,53,0): 124, 109, 78, (402,54,0): 124, 109, 78, (402,55,0): 124, 109, 78, (402,56,0): 124, 109, 78, (402,57,0): 123, 108, 77, (402,58,0): 122, 107, 76, (402,59,0): 120, 105, 74, (402,60,0): 120, 105, 74, (402,61,0): 120, 105, 74, (402,62,0): 120, 105, 74, (402,63,0): 120, 107, 75, (402,64,0): 119, 105, 76, (402,65,0): 114, 103, 73, (402,66,0): 110, 99, 71, (402,67,0): 108, 97, 69, (402,68,0): 105, 94, 66, (402,69,0): 101, 90, 62, (402,70,0): 94, 82, 56, (402,71,0): 89, 77, 51, (402,72,0): 84, 72, 48, (402,73,0): 81, 69, 45, (402,74,0): 77, 65, 41, (402,75,0): 75, 63, 39, (402,76,0): 75, 63, 41, (402,77,0): 73, 61, 39, (402,78,0): 70, 58, 36, (402,79,0): 67, 54, 35, (402,80,0): 68, 57, 39, (402,81,0): 68, 56, 40, (402,82,0): 66, 54, 38, (402,83,0): 65, 53, 37, (402,84,0): 63, 51, 35, (402,85,0): 62, 50, 34, (402,86,0): 60, 48, 32, (402,87,0): 60, 48, 32, (402,88,0): 57, 45, 29, (402,89,0): 57, 45, 29, (402,90,0): 57, 45, 29, (402,91,0): 56, 44, 28, (402,92,0): 55, 43, 27, (402,93,0): 55, 43, 27, (402,94,0): 55, 43, 27, (402,95,0): 54, 42, 26, (402,96,0): 54, 40, 29, (402,97,0): 54, 40, 29, (402,98,0): 54, 40, 29, (402,99,0): 54, 40, 29, (402,100,0): 54, 40, 29, (402,101,0): 54, 40, 29, (402,102,0): 54, 40, 29, (402,103,0): 54, 40, 29, (402,104,0): 53, 39, 28, (402,105,0): 53, 39, 28, (402,106,0): 53, 39, 28, (402,107,0): 53, 39, 28, (402,108,0): 53, 39, 28, (402,109,0): 53, 39, 28, (402,110,0): 53, 39, 28, (402,111,0): 53, 39, 28, (402,112,0): 52, 39, 31, (402,113,0): 52, 39, 31, (402,114,0): 52, 39, 31, (402,115,0): 51, 38, 30, (402,116,0): 51, 38, 30, (402,117,0): 50, 37, 29, (402,118,0): 50, 37, 29, (402,119,0): 50, 37, 29, (402,120,0): 51, 38, 30, (402,121,0): 52, 39, 31, (402,122,0): 53, 40, 32, (402,123,0): 53, 40, 32, (402,124,0): 55, 42, 34, (402,125,0): 55, 42, 34, (402,126,0): 56, 43, 35, (402,127,0): 58, 43, 36, (402,128,0): 61, 44, 37, (402,129,0): 62, 43, 37, (402,130,0): 63, 44, 38, (402,131,0): 65, 46, 40, (402,132,0): 68, 49, 43, (402,133,0): 72, 53, 47, (402,134,0): 75, 56, 50, (402,135,0): 77, 58, 52, (402,136,0): 78, 59, 53, (402,137,0): 79, 60, 54, (402,138,0): 80, 61, 55, (402,139,0): 81, 62, 56, (402,140,0): 82, 63, 57, (402,141,0): 83, 64, 58, (402,142,0): 84, 65, 59, (402,143,0): 84, 65, 59, (402,144,0): 85, 66, 60, (402,145,0): 85, 66, 60, (402,146,0): 86, 67, 61, (402,147,0): 87, 68, 62, (402,148,0): 88, 69, 63, (402,149,0): 89, 70, 64, (402,150,0): 89, 70, 64, (402,151,0): 90, 71, 65, (402,152,0): 92, 73, 67, (402,153,0): 93, 74, 68, (402,154,0): 96, 77, 71, (402,155,0): 99, 80, 74, (402,156,0): 101, 82, 76, (402,157,0): 102, 83, 77, (402,158,0): 102, 83, 77, (402,159,0): 102, 83, 76, (402,160,0): 105, 86, 72, (402,161,0): 104, 85, 70, (402,162,0): 103, 84, 69, (402,163,0): 102, 83, 68, (402,164,0): 104, 82, 69, (402,165,0): 104, 82, 69, (402,166,0): 106, 82, 72, (402,167,0): 106, 82, 72, (402,168,0): 107, 82, 75, (402,169,0): 108, 83, 76, (402,170,0): 112, 84, 80, (402,171,0): 117, 89, 85, (402,172,0): 125, 95, 93, (402,173,0): 135, 105, 103, (402,174,0): 143, 113, 113, (402,175,0): 146, 120, 123, (402,176,0): 150, 133, 139, (402,177,0): 147, 136, 142, (402,178,0): 149, 138, 146, (402,179,0): 150, 140, 148, (402,180,0): 151, 144, 152, (402,181,0): 152, 146, 156, (402,182,0): 151, 148, 157, (402,183,0): 151, 149, 160, (402,184,0): 159, 161, 173, (402,185,0): 162, 166, 178, (402,186,0): 165, 171, 185, (402,187,0): 167, 176, 191, (402,188,0): 170, 179, 196, (402,189,0): 170, 182, 198, (402,190,0): 170, 183, 200, (402,191,0): 168, 184, 200, (402,192,0): 165, 184, 201, (402,193,0): 160, 183, 201, (402,194,0): 156, 181, 203, (402,195,0): 156, 182, 205, (402,196,0): 155, 185, 211, (402,197,0): 153, 187, 214, (402,198,0): 148, 183, 213, (402,199,0): 144, 180, 212, (402,200,0): 148, 184, 218, (402,201,0): 148, 184, 218, (402,202,0): 149, 185, 219, (402,203,0): 150, 186, 220, (402,204,0): 152, 187, 219, (402,205,0): 154, 187, 220, (402,206,0): 155, 188, 219, (402,207,0): 154, 189, 221, (402,208,0): 150, 193, 227, (402,209,0): 148, 192, 227, (402,210,0): 148, 192, 227, (402,211,0): 147, 191, 226, (402,212,0): 147, 191, 226, (402,213,0): 146, 190, 225, (402,214,0): 146, 190, 225, (402,215,0): 145, 189, 224, (402,216,0): 144, 187, 221, (402,217,0): 144, 187, 221, (402,218,0): 144, 187, 221, (402,219,0): 143, 186, 220, (402,220,0): 143, 186, 220, (402,221,0): 142, 185, 219, (402,222,0): 144, 185, 217, (402,223,0): 143, 183, 218, (402,224,0): 143, 182, 221, (402,225,0): 144, 183, 224, (402,226,0): 144, 183, 226, (402,227,0): 144, 183, 226, (402,228,0): 145, 184, 227, (402,229,0): 146, 185, 228, (402,230,0): 146, 184, 229, (402,231,0): 146, 184, 229, (402,232,0): 150, 188, 235, (402,233,0): 150, 188, 235, (402,234,0): 150, 188, 235, (402,235,0): 150, 188, 235, (402,236,0): 150, 188, 237, (402,237,0): 150, 188, 237, (402,238,0): 150, 188, 237, (402,239,0): 151, 187, 237, (402,240,0): 154, 184, 234, (402,241,0): 156, 184, 234, (402,242,0): 154, 181, 234, (402,243,0): 151, 181, 233, (402,244,0): 150, 181, 235, (402,245,0): 150, 183, 236, (402,246,0): 151, 184, 238, (402,247,0): 148, 185, 238, (402,248,0): 147, 183, 241, (402,249,0): 145, 184, 241, (402,250,0): 143, 183, 242, (402,251,0): 142, 184, 242, (402,252,0): 139, 184, 243, (402,253,0): 139, 184, 243, (402,254,0): 137, 183, 243, (402,255,0): 137, 183, 243, (402,256,0): 139, 181, 241, (402,257,0): 140, 182, 242, (402,258,0): 141, 183, 243, (402,259,0): 142, 184, 244, (402,260,0): 143, 184, 246, (402,261,0): 143, 184, 246, (402,262,0): 142, 183, 247, (402,263,0): 142, 183, 247, (402,264,0): 141, 182, 246, (402,265,0): 141, 182, 246, (402,266,0): 141, 182, 248, (402,267,0): 141, 182, 248, (402,268,0): 142, 182, 251, (402,269,0): 142, 182, 251, (402,270,0): 142, 182, 251, (402,271,0): 143, 182, 251, (402,272,0): 146, 182, 255, (402,273,0): 147, 181, 255, (402,274,0): 146, 180, 252, (402,275,0): 145, 179, 251, (402,276,0): 147, 181, 253, (402,277,0): 149, 183, 255, (402,278,0): 152, 186, 255, (402,279,0): 154, 188, 255, (402,280,0): 154, 189, 255, (402,281,0): 154, 189, 255, (402,282,0): 153, 188, 255, (402,283,0): 152, 187, 255, (402,284,0): 153, 188, 254, (402,285,0): 154, 189, 255, (402,286,0): 155, 190, 255, (402,287,0): 156, 189, 255, (402,288,0): 161, 190, 255, (402,289,0): 161, 188, 255, (402,290,0): 161, 188, 255, (402,291,0): 161, 188, 255, (402,292,0): 160, 187, 254, (402,293,0): 160, 187, 254, (402,294,0): 159, 186, 253, (402,295,0): 159, 186, 253, (402,296,0): 157, 187, 251, (402,297,0): 157, 187, 251, (402,298,0): 158, 188, 250, (402,299,0): 159, 189, 251, (402,300,0): 159, 189, 251, (402,301,0): 158, 188, 250, (402,302,0): 156, 186, 246, (402,303,0): 160, 184, 246, (402,304,0): 162, 173, 237, (402,305,0): 154, 159, 217, (402,306,0): 140, 143, 188, (402,307,0): 130, 131, 162, (402,308,0): 122, 123, 144, (402,309,0): 120, 119, 137, (402,310,0): 125, 123, 144, (402,311,0): 132, 130, 152, (402,312,0): 132, 132, 158, (402,313,0): 134, 134, 160, (402,314,0): 134, 134, 158, (402,315,0): 132, 130, 151, (402,316,0): 130, 127, 148, (402,317,0): 129, 121, 142, (402,318,0): 123, 111, 135, (402,319,0): 118, 101, 120, (402,320,0): 119, 97, 109, (402,321,0): 123, 98, 104, (402,322,0): 122, 97, 100, (402,323,0): 121, 95, 96, (402,324,0): 119, 89, 87, (402,325,0): 116, 83, 78, (402,326,0): 113, 74, 69, (402,327,0): 113, 68, 63, (402,328,0): 114, 65, 60, (402,329,0): 114, 61, 57, (402,330,0): 110, 54, 53, (402,331,0): 101, 50, 49, (402,332,0): 91, 45, 47, (402,333,0): 81, 39, 41, (402,334,0): 70, 34, 36, (402,335,0): 65, 30, 34, (402,336,0): 65, 32, 39, (402,337,0): 64, 33, 39, (402,338,0): 63, 32, 38, (402,339,0): 61, 30, 36, (402,340,0): 60, 29, 35, (402,341,0): 57, 28, 33, (402,342,0): 56, 27, 32, (402,343,0): 53, 26, 31, (402,344,0): 52, 25, 30, (402,345,0): 52, 25, 30, (402,346,0): 51, 24, 29, (402,347,0): 49, 24, 28, (402,348,0): 48, 23, 27, (402,349,0): 47, 22, 26, (402,350,0): 46, 21, 25, (402,351,0): 45, 20, 24, (402,352,0): 49, 22, 27, (402,353,0): 49, 22, 27, (402,354,0): 49, 22, 27, (402,355,0): 49, 22, 27, (402,356,0): 49, 22, 27, (402,357,0): 49, 22, 27, (402,358,0): 49, 22, 27, (402,359,0): 49, 22, 27, (402,360,0): 51, 24, 29, (402,361,0): 51, 24, 29, (402,362,0): 50, 23, 28, (402,363,0): 50, 23, 28, (402,364,0): 49, 22, 27, (402,365,0): 49, 22, 27, (402,366,0): 48, 21, 26, (402,367,0): 47, 22, 26, (402,368,0): 45, 23, 26, (402,369,0): 44, 24, 26, (402,370,0): 44, 24, 26, (402,371,0): 43, 23, 25, (402,372,0): 42, 23, 27, (402,373,0): 41, 22, 26, (402,374,0): 41, 22, 28, (402,375,0): 41, 22, 28, (402,376,0): 40, 23, 29, (402,377,0): 39, 22, 28, (402,378,0): 36, 21, 28, (402,379,0): 34, 19, 26, (402,380,0): 33, 17, 27, (402,381,0): 33, 17, 27, (402,382,0): 31, 18, 27, (402,383,0): 32, 19, 26, (402,384,0): 36, 19, 27, (402,385,0): 36, 19, 25, (402,386,0): 37, 20, 26, (402,387,0): 38, 21, 27, (402,388,0): 39, 22, 28, (402,389,0): 40, 23, 29, (402,390,0): 41, 24, 30, (402,391,0): 41, 24, 30, (402,392,0): 45, 28, 34, (402,393,0): 44, 27, 33, (402,394,0): 42, 25, 31, (402,395,0): 41, 24, 30, (402,396,0): 40, 23, 29, (402,397,0): 39, 22, 28, (402,398,0): 39, 22, 28, (402,399,0): 39, 22, 28, (402,400,0): 38, 21, 27, (402,401,0): 40, 23, 29, (402,402,0): 42, 25, 31, (402,403,0): 44, 27, 33, (402,404,0): 44, 27, 35, (402,405,0): 43, 26, 34, (402,406,0): 41, 24, 32, (402,407,0): 39, 22, 30, (402,408,0): 37, 20, 30, (402,409,0): 38, 21, 31, (402,410,0): 40, 22, 34, (402,411,0): 41, 23, 35, (402,412,0): 42, 24, 36, (402,413,0): 41, 23, 35, (402,414,0): 41, 23, 37, (402,415,0): 40, 22, 34, (402,416,0): 40, 23, 31, (402,417,0): 40, 23, 29, (402,418,0): 40, 23, 29, (402,419,0): 40, 23, 29, (402,420,0): 40, 23, 29, (402,421,0): 40, 23, 29, (402,422,0): 40, 23, 29, (402,423,0): 40, 23, 29, (402,424,0): 37, 20, 26, (402,425,0): 37, 20, 26, (402,426,0): 38, 21, 27, (402,427,0): 38, 21, 27, (402,428,0): 39, 22, 28, (402,429,0): 39, 22, 28, (402,430,0): 40, 23, 29, (402,431,0): 39, 24, 27, (402,432,0): 42, 32, 31, (402,433,0): 44, 36, 33, (402,434,0): 47, 37, 36, (402,435,0): 48, 36, 36, (402,436,0): 48, 34, 34, (402,437,0): 48, 32, 33, (402,438,0): 50, 31, 35, (402,439,0): 51, 32, 36, (402,440,0): 49, 29, 38, (402,441,0): 48, 28, 37, (402,442,0): 45, 28, 38, (402,443,0): 42, 26, 36, (402,444,0): 38, 25, 34, (402,445,0): 35, 24, 32, (402,446,0): 33, 23, 32, (402,447,0): 33, 22, 30, (402,448,0): 39, 22, 28, (402,449,0): 42, 23, 27, (402,450,0): 44, 24, 26, (402,451,0): 48, 28, 30, (402,452,0): 53, 33, 35, (402,453,0): 58, 39, 41, (402,454,0): 64, 46, 46, (402,455,0): 65, 51, 50, (402,456,0): 70, 56, 53, (402,457,0): 70, 61, 56, (402,458,0): 72, 67, 61, (402,459,0): 74, 74, 66, (402,460,0): 78, 81, 70, (402,461,0): 86, 94, 81, (402,462,0): 99, 107, 94, (402,463,0): 109, 115, 101, (402,464,0): 113, 114, 96, (402,465,0): 123, 116, 97, (402,466,0): 129, 112, 92, (402,467,0): 126, 106, 82, (402,468,0): 125, 101, 75, (402,469,0): 125, 102, 71, (402,470,0): 117, 101, 67, (402,471,0): 109, 97, 59, (402,472,0): 105, 100, 60, (402,473,0): 104, 101, 60, (402,474,0): 107, 103, 66, (402,475,0): 109, 105, 70, (402,476,0): 106, 103, 72, (402,477,0): 97, 96, 68, (402,478,0): 84, 87, 60, (402,479,0): 78, 78, 54, (402,480,0): 74, 69, 47, (402,481,0): 77, 69, 50, (402,482,0): 81, 70, 52, (402,483,0): 85, 74, 56, (402,484,0): 88, 75, 59, (402,485,0): 88, 75, 59, (402,486,0): 87, 71, 58, (402,487,0): 85, 67, 55, (402,488,0): 84, 66, 56, (402,489,0): 82, 63, 56, (402,490,0): 80, 59, 54, (402,491,0): 77, 56, 53, (402,492,0): 73, 52, 49, (402,493,0): 69, 48, 47, (402,494,0): 66, 45, 44, (402,495,0): 63, 44, 40, (402,496,0): 59, 45, 34, (402,497,0): 58, 46, 32, (402,498,0): 58, 46, 34, (402,499,0): 59, 47, 35, (402,500,0): 61, 48, 39, (402,501,0): 63, 50, 41, (402,502,0): 65, 52, 44, (402,503,0): 67, 54, 46, (402,504,0): 63, 49, 46, (402,505,0): 61, 47, 44, (402,506,0): 58, 44, 43, (402,507,0): 54, 40, 39, (402,508,0): 51, 37, 37, (402,509,0): 49, 35, 35, (402,510,0): 47, 32, 35, (402,511,0): 47, 32, 35, (402,512,0): 43, 31, 31, (402,513,0): 41, 29, 29, (402,514,0): 42, 28, 28, (402,515,0): 40, 26, 26, (402,516,0): 40, 24, 25, (402,517,0): 41, 22, 24, (402,518,0): 43, 23, 25, (402,519,0): 43, 23, 25, (402,520,0): 44, 24, 26, (402,521,0): 44, 24, 26, (402,522,0): 43, 24, 26, (402,523,0): 42, 26, 27, (402,524,0): 41, 27, 27, (402,525,0): 42, 28, 28, (402,526,0): 40, 28, 28, (402,527,0): 42, 28, 28, (402,528,0): 48, 28, 30, (402,529,0): 48, 26, 29, (402,530,0): 46, 26, 28, (402,531,0): 43, 24, 26, (402,532,0): 41, 25, 26, (402,533,0): 40, 26, 26, (402,534,0): 42, 26, 27, (402,535,0): 44, 25, 27, (402,536,0): 43, 23, 25, (402,537,0): 43, 21, 24, (402,538,0): 43, 18, 22, (402,539,0): 42, 17, 21, (402,540,0): 40, 18, 21, (402,541,0): 39, 19, 21, (402,542,0): 37, 21, 22, (402,543,0): 40, 21, 23, (402,544,0): 44, 22, 25, (402,545,0): 48, 23, 27, (402,546,0): 48, 26, 29, (402,547,0): 49, 27, 30, (402,548,0): 49, 27, 30, (402,549,0): 50, 28, 31, (402,550,0): 51, 31, 33, (402,551,0): 53, 33, 35, (402,552,0): 57, 38, 40, (402,553,0): 56, 37, 39, (402,554,0): 55, 36, 38, (402,555,0): 54, 35, 37, (402,556,0): 50, 34, 35, (402,557,0): 48, 32, 33, (402,558,0): 47, 31, 32, (402,559,0): 47, 31, 31, (402,560,0): 56, 37, 33, (402,561,0): 55, 36, 30, (402,562,0): 56, 37, 31, (402,563,0): 58, 39, 33, (402,564,0): 59, 41, 39, (402,565,0): 59, 41, 39, (402,566,0): 55, 37, 37, (402,567,0): 52, 33, 35, (402,568,0): 46, 30, 33, (402,569,0): 42, 25, 31, (402,570,0): 36, 21, 28, (402,571,0): 34, 19, 26, (402,572,0): 36, 20, 30, (402,573,0): 37, 21, 31, (402,574,0): 35, 22, 32, (402,575,0): 36, 20, 31, (402,576,0): 43, 21, 34, (402,577,0): 47, 20, 35, (402,578,0): 50, 22, 36, (402,579,0): 52, 24, 36, (402,580,0): 54, 27, 34, (402,581,0): 52, 30, 33, (402,582,0): 52, 32, 33, (402,583,0): 49, 34, 31, (402,584,0): 44, 33, 29, (402,585,0): 43, 34, 27, (402,586,0): 44, 35, 28, (402,587,0): 50, 39, 33, (402,588,0): 60, 45, 42, (402,589,0): 70, 50, 49, (402,590,0): 77, 52, 55, (402,591,0): 80, 54, 57, (402,592,0): 83, 57, 58, (402,593,0): 85, 59, 58, (402,594,0): 88, 62, 61, (402,595,0): 90, 66, 64, (402,596,0): 90, 69, 66, (402,597,0): 88, 69, 65, (402,598,0): 87, 68, 64, (402,599,0): 85, 67, 63, (403,0,0): 73, 75, 54, (403,1,0): 73, 75, 54, (403,2,0): 75, 74, 54, (403,3,0): 75, 74, 54, (403,4,0): 75, 74, 54, (403,5,0): 75, 74, 54, (403,6,0): 77, 74, 55, (403,7,0): 77, 74, 55, (403,8,0): 80, 75, 56, (403,9,0): 80, 75, 56, (403,10,0): 80, 75, 56, (403,11,0): 80, 75, 56, (403,12,0): 82, 75, 57, (403,13,0): 84, 77, 59, (403,14,0): 86, 79, 61, (403,15,0): 87, 80, 62, (403,16,0): 89, 80, 65, (403,17,0): 89, 80, 65, (403,18,0): 92, 80, 64, (403,19,0): 92, 80, 64, (403,20,0): 93, 81, 65, (403,21,0): 93, 81, 65, (403,22,0): 95, 82, 65, (403,23,0): 95, 82, 65, (403,24,0): 94, 78, 62, (403,25,0): 94, 79, 60, (403,26,0): 94, 79, 60, (403,27,0): 94, 79, 60, (403,28,0): 95, 78, 58, (403,29,0): 95, 78, 58, (403,30,0): 96, 79, 59, (403,31,0): 95, 80, 59, (403,32,0): 94, 78, 62, (403,33,0): 93, 80, 63, (403,34,0): 95, 82, 65, (403,35,0): 97, 84, 67, (403,36,0): 99, 86, 67, (403,37,0): 101, 88, 69, (403,38,0): 101, 90, 68, (403,39,0): 102, 91, 69, (403,40,0): 104, 96, 73, (403,41,0): 104, 96, 73, (403,42,0): 104, 98, 72, (403,43,0): 105, 99, 73, (403,44,0): 105, 100, 71, (403,45,0): 106, 101, 72, (403,46,0): 107, 102, 73, (403,47,0): 108, 101, 72, (403,48,0): 112, 98, 69, (403,49,0): 114, 99, 68, (403,50,0): 116, 101, 70, (403,51,0): 119, 104, 73, (403,52,0): 121, 106, 75, (403,53,0): 123, 108, 77, (403,54,0): 125, 110, 79, (403,55,0): 126, 111, 80, (403,56,0): 124, 109, 78, (403,57,0): 122, 107, 76, (403,58,0): 121, 106, 75, (403,59,0): 119, 104, 73, (403,60,0): 118, 103, 72, (403,61,0): 118, 103, 72, (403,62,0): 119, 104, 73, (403,63,0): 118, 105, 73, (403,64,0): 118, 107, 77, (403,65,0): 115, 104, 74, (403,66,0): 113, 102, 74, (403,67,0): 111, 100, 72, (403,68,0): 109, 98, 70, (403,69,0): 105, 94, 66, (403,70,0): 98, 86, 60, (403,71,0): 93, 81, 55, (403,72,0): 85, 73, 49, (403,73,0): 82, 70, 46, (403,74,0): 79, 67, 43, (403,75,0): 78, 66, 42, (403,76,0): 77, 65, 43, (403,77,0): 75, 63, 41, (403,78,0): 71, 59, 37, (403,79,0): 67, 54, 35, (403,80,0): 68, 57, 39, (403,81,0): 68, 56, 40, (403,82,0): 66, 54, 38, (403,83,0): 64, 52, 36, (403,84,0): 62, 50, 34, (403,85,0): 60, 48, 32, (403,86,0): 59, 47, 31, (403,87,0): 58, 46, 30, (403,88,0): 56, 44, 28, (403,89,0): 56, 44, 28, (403,90,0): 55, 43, 27, (403,91,0): 55, 43, 27, (403,92,0): 54, 42, 26, (403,93,0): 54, 42, 26, (403,94,0): 53, 41, 25, (403,95,0): 53, 41, 25, (403,96,0): 55, 41, 30, (403,97,0): 55, 41, 30, (403,98,0): 55, 41, 30, (403,99,0): 55, 41, 30, (403,100,0): 55, 41, 30, (403,101,0): 55, 41, 30, (403,102,0): 55, 41, 30, (403,103,0): 55, 41, 30, (403,104,0): 53, 39, 28, (403,105,0): 53, 39, 28, (403,106,0): 53, 39, 28, (403,107,0): 53, 39, 28, (403,108,0): 53, 39, 28, (403,109,0): 53, 39, 28, (403,110,0): 53, 39, 28, (403,111,0): 53, 39, 28, (403,112,0): 52, 39, 30, (403,113,0): 52, 39, 31, (403,114,0): 52, 39, 31, (403,115,0): 51, 38, 30, (403,116,0): 51, 38, 30, (403,117,0): 50, 37, 29, (403,118,0): 50, 37, 29, (403,119,0): 50, 37, 29, (403,120,0): 52, 39, 31, (403,121,0): 52, 39, 31, (403,122,0): 53, 40, 32, (403,123,0): 54, 41, 33, (403,124,0): 54, 41, 33, (403,125,0): 55, 42, 34, (403,126,0): 56, 43, 35, (403,127,0): 57, 42, 35, (403,128,0): 58, 41, 34, (403,129,0): 59, 40, 34, (403,130,0): 60, 41, 35, (403,131,0): 62, 43, 37, (403,132,0): 66, 47, 41, (403,133,0): 69, 50, 44, (403,134,0): 73, 54, 48, (403,135,0): 75, 56, 50, (403,136,0): 76, 57, 51, (403,137,0): 77, 58, 52, (403,138,0): 78, 59, 53, (403,139,0): 80, 61, 55, (403,140,0): 82, 63, 57, (403,141,0): 83, 64, 58, (403,142,0): 85, 66, 60, (403,143,0): 85, 66, 60, (403,144,0): 86, 67, 61, (403,145,0): 86, 67, 61, (403,146,0): 86, 67, 61, (403,147,0): 87, 68, 62, (403,148,0): 87, 68, 62, (403,149,0): 87, 68, 62, (403,150,0): 88, 69, 63, (403,151,0): 88, 69, 63, (403,152,0): 89, 70, 64, (403,153,0): 90, 71, 65, (403,154,0): 90, 71, 65, (403,155,0): 92, 73, 67, (403,156,0): 94, 75, 69, (403,157,0): 97, 78, 72, (403,158,0): 100, 81, 75, (403,159,0): 102, 83, 76, (403,160,0): 105, 86, 72, (403,161,0): 105, 86, 71, (403,162,0): 104, 85, 70, (403,163,0): 104, 85, 70, (403,164,0): 105, 83, 70, (403,165,0): 105, 83, 70, (403,166,0): 106, 82, 72, (403,167,0): 106, 82, 72, (403,168,0): 106, 81, 74, (403,169,0): 106, 81, 74, (403,170,0): 108, 80, 76, (403,171,0): 110, 82, 78, (403,172,0): 115, 85, 83, (403,173,0): 122, 92, 90, (403,174,0): 128, 98, 98, (403,175,0): 129, 103, 104, (403,176,0): 138, 118, 119, (403,177,0): 136, 120, 121, (403,178,0): 137, 123, 123, (403,179,0): 140, 125, 128, (403,180,0): 140, 128, 132, (403,181,0): 140, 129, 133, (403,182,0): 140, 131, 136, (403,183,0): 138, 131, 138, (403,184,0): 145, 140, 147, (403,185,0): 147, 144, 151, (403,186,0): 152, 150, 161, (403,187,0): 157, 157, 167, (403,188,0): 160, 162, 174, (403,189,0): 166, 168, 180, (403,190,0): 171, 175, 187, (403,191,0): 174, 180, 194, (403,192,0): 171, 183, 199, (403,193,0): 165, 181, 197, (403,194,0): 162, 179, 199, (403,195,0): 161, 182, 203, (403,196,0): 162, 186, 210, (403,197,0): 161, 188, 215, (403,198,0): 155, 185, 213, (403,199,0): 149, 183, 211, (403,200,0): 151, 186, 218, (403,201,0): 152, 187, 219, (403,202,0): 151, 187, 219, (403,203,0): 152, 188, 220, (403,204,0): 154, 189, 221, (403,205,0): 154, 189, 221, (403,206,0): 155, 190, 220, (403,207,0): 154, 190, 222, (403,208,0): 152, 192, 227, (403,209,0): 149, 194, 227, (403,210,0): 149, 192, 227, (403,211,0): 147, 192, 225, (403,212,0): 148, 191, 226, (403,213,0): 146, 191, 224, (403,214,0): 146, 189, 224, (403,215,0): 146, 189, 223, (403,216,0): 144, 187, 221, (403,217,0): 143, 186, 220, (403,218,0): 143, 186, 220, (403,219,0): 143, 186, 220, (403,220,0): 142, 185, 219, (403,221,0): 141, 184, 218, (403,222,0): 143, 184, 216, (403,223,0): 143, 183, 218, (403,224,0): 144, 183, 222, (403,225,0): 144, 183, 224, (403,226,0): 144, 183, 226, (403,227,0): 145, 184, 227, (403,228,0): 145, 184, 227, (403,229,0): 146, 185, 228, (403,230,0): 146, 184, 229, (403,231,0): 147, 185, 230, (403,232,0): 150, 188, 235, (403,233,0): 150, 188, 235, (403,234,0): 150, 188, 235, (403,235,0): 150, 188, 235, (403,236,0): 150, 188, 237, (403,237,0): 150, 188, 237, (403,238,0): 150, 188, 237, (403,239,0): 151, 187, 237, (403,240,0): 154, 184, 234, (403,241,0): 153, 183, 233, (403,242,0): 152, 182, 234, (403,243,0): 151, 183, 234, (403,244,0): 151, 182, 236, (403,245,0): 151, 184, 237, (403,246,0): 150, 185, 239, (403,247,0): 150, 187, 240, (403,248,0): 147, 183, 241, (403,249,0): 145, 184, 241, (403,250,0): 143, 183, 242, (403,251,0): 143, 183, 242, (403,252,0): 141, 183, 243, (403,253,0): 139, 184, 243, (403,254,0): 138, 182, 243, (403,255,0): 138, 182, 243, (403,256,0): 140, 182, 242, (403,257,0): 140, 182, 242, (403,258,0): 140, 182, 242, (403,259,0): 141, 183, 243, (403,260,0): 141, 182, 244, (403,261,0): 141, 182, 244, (403,262,0): 141, 182, 246, (403,263,0): 141, 182, 246, (403,264,0): 141, 182, 246, (403,265,0): 141, 182, 246, (403,266,0): 141, 182, 248, (403,267,0): 141, 182, 248, (403,268,0): 142, 182, 251, (403,269,0): 142, 182, 251, (403,270,0): 142, 182, 251, (403,271,0): 143, 182, 251, (403,272,0): 146, 183, 254, (403,273,0): 148, 182, 255, (403,274,0): 147, 181, 253, (403,275,0): 147, 181, 253, (403,276,0): 148, 182, 254, (403,277,0): 150, 184, 255, (403,278,0): 152, 186, 255, (403,279,0): 154, 188, 255, (403,280,0): 155, 190, 255, (403,281,0): 155, 190, 255, (403,282,0): 154, 189, 255, (403,283,0): 154, 189, 255, (403,284,0): 154, 189, 255, (403,285,0): 154, 189, 255, (403,286,0): 154, 189, 255, (403,287,0): 155, 188, 255, (403,288,0): 160, 189, 255, (403,289,0): 161, 188, 255, (403,290,0): 161, 188, 255, (403,291,0): 161, 188, 255, (403,292,0): 161, 188, 255, (403,293,0): 160, 187, 254, (403,294,0): 160, 187, 254, (403,295,0): 160, 188, 253, (403,296,0): 158, 188, 252, (403,297,0): 159, 189, 253, (403,298,0): 160, 190, 252, (403,299,0): 161, 191, 253, (403,300,0): 162, 192, 254, (403,301,0): 161, 191, 253, (403,302,0): 160, 190, 250, (403,303,0): 164, 188, 250, (403,304,0): 167, 178, 242, (403,305,0): 159, 164, 222, (403,306,0): 142, 145, 190, (403,307,0): 127, 127, 161, (403,308,0): 117, 117, 141, (403,309,0): 119, 117, 138, (403,310,0): 128, 126, 148, (403,311,0): 137, 135, 159, (403,312,0): 133, 133, 161, (403,313,0): 134, 134, 160, (403,314,0): 133, 133, 157, (403,315,0): 133, 131, 153, (403,316,0): 130, 127, 148, (403,317,0): 128, 120, 141, (403,318,0): 125, 113, 137, (403,319,0): 122, 107, 128, (403,320,0): 128, 108, 120, (403,321,0): 131, 110, 117, (403,322,0): 133, 110, 116, (403,323,0): 134, 109, 112, (403,324,0): 132, 102, 102, (403,325,0): 127, 92, 90, (403,326,0): 122, 81, 77, (403,327,0): 121, 73, 69, (403,328,0): 120, 69, 65, (403,329,0): 118, 63, 60, (403,330,0): 110, 54, 53, (403,331,0): 100, 49, 48, (403,332,0): 91, 43, 43, (403,333,0): 81, 39, 40, (403,334,0): 71, 35, 35, (403,335,0): 66, 32, 33, (403,336,0): 65, 33, 38, (403,337,0): 64, 32, 37, (403,338,0): 63, 30, 37, (403,339,0): 61, 30, 35, (403,340,0): 60, 29, 35, (403,341,0): 59, 28, 33, (403,342,0): 58, 27, 33, (403,343,0): 56, 27, 31, (403,344,0): 54, 25, 30, (403,345,0): 52, 26, 29, (403,346,0): 51, 24, 29, (403,347,0): 50, 24, 27, (403,348,0): 49, 22, 27, (403,349,0): 47, 22, 25, (403,350,0): 46, 21, 25, (403,351,0): 46, 21, 25, (403,352,0): 49, 22, 27, (403,353,0): 49, 22, 27, (403,354,0): 49, 22, 27, (403,355,0): 49, 22, 27, (403,356,0): 49, 22, 27, (403,357,0): 49, 22, 27, (403,358,0): 49, 22, 27, (403,359,0): 49, 22, 27, (403,360,0): 49, 22, 27, (403,361,0): 49, 22, 27, (403,362,0): 49, 22, 27, (403,363,0): 48, 21, 26, (403,364,0): 47, 20, 25, (403,365,0): 47, 20, 25, (403,366,0): 47, 20, 25, (403,367,0): 45, 20, 24, (403,368,0): 44, 22, 25, (403,369,0): 43, 23, 25, (403,370,0): 43, 23, 25, (403,371,0): 43, 23, 25, (403,372,0): 42, 23, 27, (403,373,0): 42, 23, 27, (403,374,0): 42, 23, 29, (403,375,0): 42, 23, 29, (403,376,0): 41, 24, 30, (403,377,0): 40, 23, 29, (403,378,0): 37, 22, 29, (403,379,0): 35, 20, 27, (403,380,0): 34, 18, 28, (403,381,0): 34, 18, 28, (403,382,0): 32, 19, 28, (403,383,0): 32, 19, 26, (403,384,0): 37, 20, 28, (403,385,0): 37, 20, 26, (403,386,0): 37, 20, 26, (403,387,0): 38, 21, 27, (403,388,0): 39, 22, 28, (403,389,0): 40, 23, 29, (403,390,0): 40, 23, 29, (403,391,0): 40, 23, 29, (403,392,0): 43, 26, 32, (403,393,0): 42, 25, 31, (403,394,0): 39, 22, 28, (403,395,0): 37, 20, 26, (403,396,0): 37, 20, 26, (403,397,0): 37, 20, 26, (403,398,0): 39, 22, 28, (403,399,0): 40, 23, 29, (403,400,0): 40, 23, 29, (403,401,0): 42, 25, 31, (403,402,0): 43, 26, 32, (403,403,0): 44, 27, 33, (403,404,0): 44, 27, 35, (403,405,0): 42, 25, 33, (403,406,0): 39, 22, 30, (403,407,0): 37, 20, 28, (403,408,0): 37, 20, 30, (403,409,0): 38, 21, 31, (403,410,0): 40, 22, 34, (403,411,0): 41, 23, 35, (403,412,0): 42, 24, 36, (403,413,0): 41, 23, 35, (403,414,0): 41, 23, 37, (403,415,0): 40, 22, 34, (403,416,0): 38, 21, 29, (403,417,0): 38, 21, 27, (403,418,0): 38, 21, 27, (403,419,0): 38, 21, 27, (403,420,0): 38, 21, 27, (403,421,0): 38, 21, 27, (403,422,0): 38, 21, 27, (403,423,0): 38, 21, 27, (403,424,0): 36, 19, 25, (403,425,0): 36, 19, 25, (403,426,0): 37, 20, 26, (403,427,0): 37, 20, 26, (403,428,0): 38, 21, 27, (403,429,0): 38, 21, 27, (403,430,0): 39, 22, 28, (403,431,0): 38, 23, 26, (403,432,0): 42, 32, 31, (403,433,0): 43, 35, 32, (403,434,0): 47, 37, 36, (403,435,0): 49, 37, 37, (403,436,0): 50, 36, 36, (403,437,0): 49, 33, 34, (403,438,0): 50, 31, 35, (403,439,0): 49, 30, 36, (403,440,0): 48, 29, 35, (403,441,0): 46, 29, 37, (403,442,0): 45, 28, 38, (403,443,0): 43, 27, 37, (403,444,0): 39, 26, 35, (403,445,0): 37, 26, 34, (403,446,0): 35, 25, 34, (403,447,0): 35, 24, 32, (403,448,0): 41, 24, 30, (403,449,0): 43, 24, 28, (403,450,0): 45, 25, 27, (403,451,0): 47, 27, 29, (403,452,0): 52, 32, 34, (403,453,0): 56, 37, 39, (403,454,0): 60, 44, 44, (403,455,0): 62, 48, 47, (403,456,0): 66, 52, 49, (403,457,0): 66, 57, 52, (403,458,0): 67, 62, 56, (403,459,0): 68, 68, 60, (403,460,0): 73, 76, 65, (403,461,0): 84, 90, 78, (403,462,0): 100, 108, 95, (403,463,0): 113, 121, 106, (403,464,0): 121, 125, 108, (403,465,0): 127, 129, 108, (403,466,0): 131, 123, 104, (403,467,0): 125, 110, 89, (403,468,0): 120, 104, 79, (403,469,0): 119, 103, 77, (403,470,0): 116, 103, 71, (403,471,0): 109, 101, 65, (403,472,0): 102, 98, 63, (403,473,0): 101, 98, 63, (403,474,0): 102, 97, 67, (403,475,0): 101, 96, 67, (403,476,0): 97, 91, 69, (403,477,0): 88, 83, 63, (403,478,0): 74, 71, 54, (403,479,0): 67, 61, 45, (403,480,0): 69, 57, 41, (403,481,0): 72, 59, 42, (403,482,0): 78, 62, 46, (403,483,0): 83, 67, 51, (403,484,0): 85, 69, 54, (403,485,0): 86, 68, 54, (403,486,0): 84, 66, 54, (403,487,0): 82, 64, 52, (403,488,0): 83, 65, 55, (403,489,0): 82, 64, 54, (403,490,0): 80, 60, 53, (403,491,0): 77, 57, 50, (403,492,0): 73, 52, 47, (403,493,0): 68, 47, 42, (403,494,0): 64, 43, 38, (403,495,0): 61, 42, 35, (403,496,0): 58, 44, 33, (403,497,0): 57, 45, 31, (403,498,0): 57, 45, 33, (403,499,0): 57, 45, 33, (403,500,0): 59, 46, 37, (403,501,0): 61, 48, 39, (403,502,0): 63, 50, 42, (403,503,0): 64, 51, 43, (403,504,0): 63, 49, 46, (403,505,0): 61, 47, 44, (403,506,0): 58, 44, 43, (403,507,0): 54, 40, 39, (403,508,0): 51, 37, 37, (403,509,0): 49, 35, 35, (403,510,0): 48, 33, 36, (403,511,0): 48, 33, 36, (403,512,0): 43, 31, 31, (403,513,0): 41, 29, 29, (403,514,0): 42, 28, 28, (403,515,0): 41, 25, 26, (403,516,0): 42, 23, 25, (403,517,0): 41, 22, 24, (403,518,0): 43, 23, 25, (403,519,0): 43, 23, 25, (403,520,0): 45, 25, 27, (403,521,0): 45, 25, 27, (403,522,0): 46, 26, 28, (403,523,0): 45, 26, 28, (403,524,0): 43, 27, 28, (403,525,0): 42, 28, 28, (403,526,0): 42, 28, 28, (403,527,0): 42, 28, 28, (403,528,0): 47, 28, 30, (403,529,0): 47, 27, 29, (403,530,0): 45, 26, 28, (403,531,0): 43, 27, 28, (403,532,0): 41, 27, 27, (403,533,0): 41, 27, 27, (403,534,0): 42, 26, 27, (403,535,0): 44, 25, 27, (403,536,0): 45, 25, 27, (403,537,0): 47, 22, 26, (403,538,0): 46, 19, 24, (403,539,0): 44, 17, 22, (403,540,0): 42, 17, 21, (403,541,0): 39, 17, 20, (403,542,0): 39, 19, 21, (403,543,0): 39, 19, 21, (403,544,0): 42, 20, 23, (403,545,0): 45, 20, 24, (403,546,0): 45, 23, 26, (403,547,0): 46, 24, 27, (403,548,0): 47, 25, 28, (403,549,0): 48, 26, 29, (403,550,0): 49, 29, 31, (403,551,0): 50, 30, 32, (403,552,0): 56, 36, 38, (403,553,0): 54, 35, 37, (403,554,0): 53, 34, 36, (403,555,0): 52, 33, 35, (403,556,0): 49, 33, 34, (403,557,0): 48, 32, 33, (403,558,0): 47, 31, 32, (403,559,0): 46, 30, 30, (403,560,0): 56, 37, 33, (403,561,0): 54, 35, 29, (403,562,0): 54, 35, 29, (403,563,0): 57, 38, 34, (403,564,0): 58, 40, 38, (403,565,0): 59, 41, 39, (403,566,0): 56, 38, 38, (403,567,0): 53, 35, 35, (403,568,0): 47, 31, 34, (403,569,0): 42, 26, 29, (403,570,0): 36, 21, 26, (403,571,0): 34, 19, 26, (403,572,0): 35, 19, 29, (403,573,0): 36, 20, 30, (403,574,0): 34, 21, 31, (403,575,0): 35, 19, 30, (403,576,0): 43, 23, 34, (403,577,0): 45, 21, 34, (403,578,0): 48, 22, 33, (403,579,0): 50, 24, 33, (403,580,0): 52, 27, 31, (403,581,0): 53, 31, 33, (403,582,0): 54, 34, 33, (403,583,0): 53, 38, 33, (403,584,0): 44, 33, 27, (403,585,0): 46, 37, 28, (403,586,0): 52, 41, 35, (403,587,0): 61, 48, 42, (403,588,0): 71, 53, 49, (403,589,0): 79, 58, 57, (403,590,0): 85, 59, 62, (403,591,0): 86, 60, 61, (403,592,0): 90, 64, 65, (403,593,0): 91, 67, 65, (403,594,0): 93, 69, 67, (403,595,0): 93, 72, 69, (403,596,0): 93, 74, 70, (403,597,0): 91, 73, 69, (403,598,0): 89, 71, 67, (403,599,0): 86, 71, 66, (404,0,0): 74, 75, 57, (404,1,0): 74, 75, 57, (404,2,0): 74, 75, 57, (404,3,0): 74, 75, 57, (404,4,0): 76, 75, 57, (404,5,0): 76, 75, 57, (404,6,0): 75, 74, 56, (404,7,0): 75, 74, 56, (404,8,0): 78, 75, 58, (404,9,0): 77, 74, 57, (404,10,0): 79, 73, 57, (404,11,0): 79, 73, 57, (404,12,0): 80, 74, 58, (404,13,0): 82, 76, 60, (404,14,0): 85, 78, 62, (404,15,0): 86, 79, 63, (404,16,0): 90, 81, 66, (404,17,0): 90, 81, 66, (404,18,0): 90, 81, 66, (404,19,0): 91, 82, 67, (404,20,0): 93, 81, 65, (404,21,0): 94, 82, 66, (404,22,0): 94, 82, 66, (404,23,0): 94, 83, 65, (404,24,0): 93, 80, 63, (404,25,0): 93, 80, 63, (404,26,0): 95, 80, 61, (404,27,0): 95, 80, 61, (404,28,0): 95, 80, 61, (404,29,0): 95, 80, 61, (404,30,0): 95, 78, 58, (404,31,0): 94, 79, 58, (404,32,0): 93, 77, 61, (404,33,0): 92, 79, 62, (404,34,0): 94, 81, 64, (404,35,0): 96, 83, 66, (404,36,0): 98, 85, 66, (404,37,0): 100, 87, 68, (404,38,0): 100, 89, 67, (404,39,0): 101, 90, 68, (404,40,0): 103, 95, 72, (404,41,0): 103, 95, 72, (404,42,0): 103, 97, 71, (404,43,0): 104, 98, 72, (404,44,0): 106, 101, 72, (404,45,0): 107, 102, 73, (404,46,0): 108, 103, 74, (404,47,0): 109, 102, 73, (404,48,0): 110, 99, 69, (404,49,0): 113, 99, 70, (404,50,0): 115, 101, 72, (404,51,0): 117, 103, 74, (404,52,0): 119, 105, 76, (404,53,0): 122, 108, 79, (404,54,0): 124, 110, 81, (404,55,0): 125, 111, 82, (404,56,0): 123, 109, 80, (404,57,0): 122, 108, 79, (404,58,0): 120, 106, 77, (404,59,0): 118, 104, 75, (404,60,0): 116, 102, 73, (404,61,0): 116, 102, 73, (404,62,0): 116, 102, 73, (404,63,0): 117, 103, 74, (404,64,0): 117, 106, 76, (404,65,0): 116, 105, 75, (404,66,0): 114, 103, 75, (404,67,0): 114, 103, 75, (404,68,0): 112, 101, 73, (404,69,0): 108, 97, 69, (404,70,0): 102, 90, 64, (404,71,0): 96, 84, 58, (404,72,0): 86, 74, 50, (404,73,0): 83, 71, 47, (404,74,0): 80, 68, 44, (404,75,0): 79, 67, 43, (404,76,0): 79, 67, 45, (404,77,0): 77, 65, 43, (404,78,0): 73, 61, 39, (404,79,0): 69, 56, 37, (404,80,0): 69, 58, 40, (404,81,0): 68, 56, 40, (404,82,0): 67, 55, 39, (404,83,0): 64, 52, 36, (404,84,0): 62, 50, 34, (404,85,0): 60, 48, 32, (404,86,0): 58, 46, 30, (404,87,0): 57, 45, 29, (404,88,0): 55, 43, 27, (404,89,0): 55, 43, 27, (404,90,0): 55, 43, 27, (404,91,0): 54, 42, 26, (404,92,0): 54, 42, 26, (404,93,0): 53, 41, 25, (404,94,0): 53, 41, 25, (404,95,0): 53, 41, 25, (404,96,0): 55, 41, 30, (404,97,0): 55, 41, 30, (404,98,0): 55, 41, 30, (404,99,0): 55, 41, 30, (404,100,0): 55, 41, 30, (404,101,0): 55, 41, 30, (404,102,0): 55, 41, 30, (404,103,0): 55, 41, 30, (404,104,0): 54, 40, 29, (404,105,0): 54, 40, 29, (404,106,0): 54, 40, 29, (404,107,0): 54, 40, 29, (404,108,0): 54, 40, 29, (404,109,0): 54, 40, 29, (404,110,0): 54, 40, 29, (404,111,0): 54, 40, 29, (404,112,0): 52, 39, 30, (404,113,0): 52, 39, 30, (404,114,0): 52, 39, 30, (404,115,0): 51, 38, 29, (404,116,0): 51, 38, 29, (404,117,0): 50, 37, 28, (404,118,0): 50, 37, 28, (404,119,0): 50, 37, 28, (404,120,0): 53, 40, 31, (404,121,0): 53, 40, 31, (404,122,0): 53, 40, 31, (404,123,0): 54, 41, 32, (404,124,0): 54, 41, 32, (404,125,0): 55, 42, 33, (404,126,0): 55, 42, 33, (404,127,0): 56, 42, 33, (404,128,0): 56, 39, 32, (404,129,0): 58, 39, 33, (404,130,0): 59, 40, 34, (404,131,0): 60, 41, 35, (404,132,0): 63, 44, 38, (404,133,0): 67, 48, 42, (404,134,0): 70, 51, 45, (404,135,0): 72, 53, 47, (404,136,0): 74, 55, 49, (404,137,0): 75, 56, 50, (404,138,0): 77, 58, 52, (404,139,0): 79, 60, 54, (404,140,0): 81, 62, 56, (404,141,0): 84, 65, 59, (404,142,0): 86, 67, 61, (404,143,0): 87, 68, 62, (404,144,0): 87, 68, 62, (404,145,0): 87, 68, 62, (404,146,0): 87, 68, 62, (404,147,0): 86, 67, 61, (404,148,0): 86, 67, 61, (404,149,0): 86, 67, 61, (404,150,0): 85, 66, 60, (404,151,0): 85, 66, 60, (404,152,0): 88, 69, 63, (404,153,0): 87, 68, 62, (404,154,0): 86, 67, 61, (404,155,0): 87, 68, 62, (404,156,0): 89, 70, 64, (404,157,0): 93, 74, 68, (404,158,0): 98, 79, 73, (404,159,0): 100, 81, 74, (404,160,0): 104, 84, 73, (404,161,0): 104, 85, 71, (404,162,0): 104, 85, 71, (404,163,0): 104, 85, 71, (404,164,0): 104, 84, 73, (404,165,0): 104, 84, 73, (404,166,0): 105, 83, 72, (404,167,0): 105, 83, 72, (404,168,0): 110, 85, 78, (404,169,0): 108, 83, 76, (404,170,0): 109, 81, 77, (404,171,0): 108, 80, 76, (404,172,0): 110, 82, 78, (404,173,0): 115, 87, 83, (404,174,0): 119, 91, 88, (404,175,0): 121, 96, 92, (404,176,0): 128, 107, 104, (404,177,0): 129, 110, 106, (404,178,0): 130, 112, 108, (404,179,0): 133, 115, 111, (404,180,0): 135, 117, 115, (404,181,0): 134, 119, 116, (404,182,0): 134, 118, 118, (404,183,0): 133, 119, 119, (404,184,0): 131, 119, 121, (404,185,0): 133, 123, 124, (404,186,0): 138, 127, 133, (404,187,0): 141, 132, 137, (404,188,0): 147, 137, 145, (404,189,0): 155, 148, 155, (404,190,0): 167, 160, 167, (404,191,0): 173, 170, 179, (404,192,0): 182, 184, 197, (404,193,0): 177, 183, 199, (404,194,0): 172, 180, 199, (404,195,0): 170, 181, 201, (404,196,0): 169, 184, 207, (404,197,0): 167, 185, 209, (404,198,0): 159, 183, 209, (404,199,0): 154, 181, 208, (404,200,0): 158, 187, 217, (404,201,0): 155, 189, 217, (404,202,0): 154, 189, 219, (404,203,0): 155, 190, 220, (404,204,0): 154, 191, 220, (404,205,0): 154, 191, 220, (404,206,0): 155, 192, 221, (404,207,0): 153, 192, 223, (404,208,0): 153, 194, 226, (404,209,0): 151, 194, 226, (404,210,0): 152, 192, 227, (404,211,0): 149, 192, 224, (404,212,0): 149, 189, 224, (404,213,0): 146, 189, 221, (404,214,0): 147, 187, 222, (404,215,0): 147, 188, 220, (404,216,0): 145, 186, 218, (404,217,0): 145, 186, 218, (404,218,0): 145, 186, 218, (404,219,0): 144, 185, 217, (404,220,0): 143, 184, 216, (404,221,0): 143, 184, 216, (404,222,0): 143, 184, 216, (404,223,0): 142, 182, 217, (404,224,0): 144, 183, 222, (404,225,0): 145, 184, 225, (404,226,0): 145, 184, 227, (404,227,0): 146, 185, 228, (404,228,0): 146, 185, 228, (404,229,0): 147, 186, 229, (404,230,0): 147, 185, 230, (404,231,0): 147, 185, 230, (404,232,0): 150, 188, 235, (404,233,0): 150, 188, 235, (404,234,0): 150, 188, 235, (404,235,0): 150, 188, 235, (404,236,0): 150, 188, 237, (404,237,0): 150, 188, 237, (404,238,0): 150, 188, 237, (404,239,0): 151, 187, 237, (404,240,0): 153, 185, 234, (404,241,0): 153, 183, 233, (404,242,0): 152, 182, 234, (404,243,0): 151, 183, 234, (404,244,0): 151, 182, 236, (404,245,0): 151, 184, 237, (404,246,0): 150, 185, 239, (404,247,0): 150, 187, 240, (404,248,0): 147, 183, 241, (404,249,0): 145, 184, 241, (404,250,0): 143, 183, 242, (404,251,0): 143, 183, 242, (404,252,0): 141, 183, 243, (404,253,0): 139, 184, 243, (404,254,0): 138, 182, 243, (404,255,0): 138, 182, 243, (404,256,0): 140, 182, 242, (404,257,0): 140, 182, 242, (404,258,0): 140, 182, 242, (404,259,0): 139, 181, 241, (404,260,0): 139, 180, 242, (404,261,0): 139, 180, 242, (404,262,0): 139, 180, 244, (404,263,0): 139, 180, 244, (404,264,0): 140, 181, 245, (404,265,0): 140, 181, 245, (404,266,0): 140, 181, 247, (404,267,0): 141, 182, 248, (404,268,0): 142, 182, 251, (404,269,0): 143, 183, 252, (404,270,0): 143, 183, 252, (404,271,0): 144, 183, 252, (404,272,0): 147, 184, 255, (404,273,0): 149, 183, 255, (404,274,0): 149, 183, 255, (404,275,0): 149, 183, 255, (404,276,0): 150, 184, 255, (404,277,0): 152, 186, 255, (404,278,0): 153, 187, 255, (404,279,0): 154, 189, 255, (404,280,0): 155, 190, 255, (404,281,0): 155, 190, 255, (404,282,0): 155, 190, 255, (404,283,0): 155, 190, 255, (404,284,0): 155, 190, 255, (404,285,0): 155, 190, 254, (404,286,0): 154, 189, 253, (404,287,0): 155, 189, 253, (404,288,0): 160, 189, 255, (404,289,0): 161, 188, 255, (404,290,0): 162, 189, 255, (404,291,0): 162, 189, 255, (404,292,0): 162, 189, 255, (404,293,0): 162, 189, 255, (404,294,0): 162, 190, 255, (404,295,0): 162, 190, 255, (404,296,0): 161, 189, 254, (404,297,0): 162, 190, 253, (404,298,0): 164, 192, 255, (404,299,0): 165, 193, 255, (404,300,0): 165, 194, 254, (404,301,0): 164, 193, 253, (404,302,0): 163, 192, 252, (404,303,0): 168, 189, 252, (404,304,0): 170, 181, 245, (404,305,0): 164, 169, 227, (404,306,0): 146, 149, 194, (404,307,0): 126, 126, 160, (404,308,0): 115, 115, 139, (404,309,0): 119, 117, 138, (404,310,0): 131, 129, 151, (404,311,0): 141, 139, 163, (404,312,0): 134, 134, 162, (404,313,0): 133, 133, 161, (404,314,0): 133, 133, 159, (404,315,0): 133, 131, 153, (404,316,0): 130, 127, 148, (404,317,0): 128, 120, 141, (404,318,0): 127, 115, 137, (404,319,0): 128, 113, 134, (404,320,0): 134, 117, 133, (404,321,0): 138, 121, 131, (404,322,0): 142, 122, 131, (404,323,0): 144, 121, 127, (404,324,0): 143, 114, 116, (404,325,0): 138, 102, 102, (404,326,0): 133, 89, 88, (404,327,0): 129, 80, 76, (404,328,0): 128, 75, 71, (404,329,0): 120, 65, 62, (404,330,0): 109, 53, 52, (404,331,0): 97, 46, 45, (404,332,0): 89, 41, 41, (404,333,0): 80, 38, 39, (404,334,0): 71, 35, 35, (404,335,0): 66, 32, 33, (404,336,0): 65, 30, 34, (404,337,0): 65, 30, 34, (404,338,0): 64, 29, 35, (404,339,0): 61, 29, 32, (404,340,0): 61, 29, 34, (404,341,0): 59, 29, 31, (404,342,0): 58, 27, 32, (404,343,0): 58, 28, 30, (404,344,0): 56, 25, 30, (404,345,0): 55, 26, 28, (404,346,0): 54, 25, 29, (404,347,0): 51, 25, 26, (404,348,0): 50, 24, 27, (404,349,0): 49, 23, 24, (404,350,0): 48, 22, 25, (404,351,0): 48, 22, 25, (404,352,0): 47, 22, 26, (404,353,0): 47, 22, 28, (404,354,0): 47, 22, 28, (404,355,0): 47, 22, 28, (404,356,0): 47, 22, 28, (404,357,0): 47, 22, 28, (404,358,0): 47, 22, 28, (404,359,0): 47, 22, 28, (404,360,0): 47, 22, 28, (404,361,0): 47, 22, 28, (404,362,0): 46, 21, 27, (404,363,0): 46, 21, 27, (404,364,0): 45, 20, 26, (404,365,0): 45, 20, 26, (404,366,0): 44, 19, 25, (404,367,0): 44, 19, 25, (404,368,0): 44, 22, 25, (404,369,0): 43, 23, 25, (404,370,0): 43, 23, 25, (404,371,0): 43, 23, 25, (404,372,0): 42, 23, 27, (404,373,0): 42, 23, 27, (404,374,0): 42, 23, 29, (404,375,0): 42, 23, 29, (404,376,0): 41, 24, 30, (404,377,0): 40, 23, 29, (404,378,0): 37, 22, 29, (404,379,0): 36, 21, 28, (404,380,0): 34, 18, 28, (404,381,0): 34, 18, 28, (404,382,0): 32, 19, 28, (404,383,0): 33, 20, 27, (404,384,0): 38, 21, 29, (404,385,0): 38, 21, 27, (404,386,0): 38, 21, 27, (404,387,0): 38, 21, 27, (404,388,0): 39, 22, 28, (404,389,0): 39, 22, 28, (404,390,0): 39, 22, 28, (404,391,0): 39, 22, 28, (404,392,0): 41, 24, 30, (404,393,0): 40, 23, 29, (404,394,0): 38, 21, 27, (404,395,0): 36, 19, 25, (404,396,0): 36, 19, 25, (404,397,0): 37, 20, 26, (404,398,0): 38, 21, 27, (404,399,0): 39, 22, 28, (404,400,0): 41, 24, 30, (404,401,0): 43, 26, 32, (404,402,0): 44, 27, 33, (404,403,0): 45, 28, 34, (404,404,0): 44, 27, 35, (404,405,0): 41, 24, 32, (404,406,0): 38, 21, 29, (404,407,0): 36, 19, 27, (404,408,0): 37, 20, 30, (404,409,0): 38, 21, 31, (404,410,0): 40, 22, 34, (404,411,0): 41, 23, 35, (404,412,0): 42, 24, 36, (404,413,0): 41, 23, 35, (404,414,0): 41, 23, 37, (404,415,0): 40, 22, 34, (404,416,0): 36, 19, 29, (404,417,0): 36, 19, 27, (404,418,0): 36, 19, 27, (404,419,0): 36, 19, 27, (404,420,0): 36, 19, 27, (404,421,0): 36, 19, 27, (404,422,0): 36, 19, 27, (404,423,0): 36, 19, 27, (404,424,0): 35, 18, 26, (404,425,0): 35, 18, 26, (404,426,0): 36, 19, 27, (404,427,0): 36, 19, 27, (404,428,0): 37, 20, 28, (404,429,0): 37, 20, 28, (404,430,0): 38, 21, 29, (404,431,0): 37, 22, 27, (404,432,0): 42, 32, 33, (404,433,0): 42, 34, 32, (404,434,0): 45, 35, 34, (404,435,0): 48, 36, 36, (404,436,0): 51, 36, 39, (404,437,0): 49, 34, 37, (404,438,0): 47, 30, 36, (404,439,0): 45, 28, 34, (404,440,0): 45, 28, 34, (404,441,0): 44, 27, 33, (404,442,0): 44, 27, 35, (404,443,0): 42, 27, 34, (404,444,0): 39, 26, 35, (404,445,0): 38, 27, 35, (404,446,0): 36, 26, 34, (404,447,0): 37, 26, 32, (404,448,0): 42, 27, 32, (404,449,0): 43, 27, 30, (404,450,0): 45, 26, 28, (404,451,0): 46, 27, 29, (404,452,0): 50, 31, 33, (404,453,0): 54, 35, 37, (404,454,0): 57, 41, 41, (404,455,0): 59, 45, 44, (404,456,0): 63, 49, 46, (404,457,0): 64, 55, 50, (404,458,0): 66, 59, 53, (404,459,0): 66, 63, 56, (404,460,0): 69, 71, 60, (404,461,0): 80, 86, 74, (404,462,0): 98, 106, 93, (404,463,0): 111, 122, 106, (404,464,0): 125, 136, 119, (404,465,0): 131, 139, 118, (404,466,0): 131, 133, 112, (404,467,0): 123, 118, 98, (404,468,0): 118, 107, 85, (404,469,0): 116, 106, 81, (404,470,0): 114, 107, 79, (404,471,0): 110, 105, 75, (404,472,0): 106, 102, 73, (404,473,0): 104, 100, 71, (404,474,0): 102, 96, 72, (404,475,0): 100, 92, 71, (404,476,0): 96, 84, 70, (404,477,0): 86, 74, 62, (404,478,0): 71, 61, 52, (404,479,0): 65, 52, 43, (404,480,0): 66, 50, 37, (404,481,0): 72, 53, 39, (404,482,0): 76, 58, 44, (404,483,0): 80, 62, 48, (404,484,0): 82, 64, 50, (404,485,0): 84, 65, 51, (404,486,0): 84, 64, 53, (404,487,0): 83, 63, 52, (404,488,0): 84, 64, 53, (404,489,0): 83, 63, 52, (404,490,0): 82, 62, 53, (404,491,0): 79, 59, 50, (404,492,0): 75, 55, 46, (404,493,0): 70, 50, 41, (404,494,0): 66, 46, 37, (404,495,0): 63, 45, 35, (404,496,0): 60, 46, 33, (404,497,0): 58, 46, 32, (404,498,0): 57, 45, 33, (404,499,0): 57, 45, 33, (404,500,0): 57, 44, 35, (404,501,0): 58, 45, 36, (404,502,0): 59, 46, 38, (404,503,0): 60, 47, 39, (404,504,0): 61, 47, 44, (404,505,0): 60, 46, 43, (404,506,0): 57, 43, 42, (404,507,0): 54, 40, 39, (404,508,0): 51, 37, 37, (404,509,0): 49, 35, 35, (404,510,0): 49, 34, 37, (404,511,0): 48, 33, 36, (404,512,0): 45, 31, 31, (404,513,0): 43, 29, 29, (404,514,0): 43, 27, 28, (404,515,0): 41, 25, 26, (404,516,0): 42, 23, 25, (404,517,0): 42, 22, 24, (404,518,0): 44, 22, 25, (404,519,0): 44, 22, 25, (404,520,0): 47, 25, 28, (404,521,0): 46, 26, 28, (404,522,0): 46, 26, 28, (404,523,0): 45, 26, 28, (404,524,0): 43, 27, 28, (404,525,0): 42, 28, 28, (404,526,0): 41, 27, 27, (404,527,0): 41, 27, 27, (404,528,0): 46, 27, 29, (404,529,0): 46, 27, 29, (404,530,0): 44, 28, 29, (404,531,0): 43, 29, 29, (404,532,0): 42, 28, 28, (404,533,0): 42, 28, 28, (404,534,0): 42, 26, 27, (404,535,0): 43, 24, 26, (404,536,0): 49, 27, 30, (404,537,0): 49, 24, 28, (404,538,0): 50, 21, 26, (404,539,0): 48, 19, 24, (404,540,0): 46, 17, 22, (404,541,0): 43, 18, 22, (404,542,0): 41, 19, 22, (404,543,0): 41, 19, 22, (404,544,0): 44, 19, 23, (404,545,0): 44, 19, 23, (404,546,0): 44, 19, 23, (404,547,0): 46, 21, 25, (404,548,0): 46, 24, 27, (404,549,0): 48, 26, 29, (404,550,0): 49, 27, 30, (404,551,0): 48, 28, 30, (404,552,0): 54, 34, 36, (404,553,0): 54, 34, 36, (404,554,0): 52, 33, 35, (404,555,0): 51, 32, 34, (404,556,0): 50, 31, 33, (404,557,0): 50, 31, 33, (404,558,0): 47, 31, 32, (404,559,0): 47, 31, 31, (404,560,0): 56, 37, 33, (404,561,0): 55, 36, 30, (404,562,0): 54, 35, 31, (404,563,0): 56, 37, 33, (404,564,0): 58, 40, 38, (404,565,0): 59, 41, 39, (404,566,0): 58, 40, 40, (404,567,0): 55, 37, 37, (404,568,0): 48, 32, 35, (404,569,0): 44, 28, 31, (404,570,0): 37, 22, 27, (404,571,0): 35, 20, 25, (404,572,0): 36, 21, 28, (404,573,0): 36, 21, 28, (404,574,0): 34, 21, 30, (404,575,0): 34, 18, 28, (404,576,0): 40, 23, 31, (404,577,0): 43, 24, 30, (404,578,0): 45, 24, 29, (404,579,0): 49, 27, 30, (404,580,0): 54, 29, 32, (404,581,0): 55, 34, 33, (404,582,0): 57, 38, 34, (404,583,0): 57, 40, 33, (404,584,0): 49, 36, 28, (404,585,0): 52, 42, 32, (404,586,0): 62, 49, 41, (404,587,0): 70, 55, 48, (404,588,0): 79, 60, 56, (404,589,0): 86, 62, 60, (404,590,0): 92, 63, 65, (404,591,0): 93, 64, 66, (404,592,0): 96, 72, 72, (404,593,0): 95, 75, 74, (404,594,0): 96, 76, 75, (404,595,0): 96, 78, 76, (404,596,0): 94, 79, 76, (404,597,0): 91, 77, 74, (404,598,0): 88, 74, 71, (404,599,0): 87, 73, 70, (405,0,0): 75, 76, 58, (405,1,0): 75, 76, 58, (405,2,0): 75, 76, 58, (405,3,0): 75, 76, 58, (405,4,0): 76, 75, 57, (405,5,0): 76, 75, 57, (405,6,0): 75, 74, 56, (405,7,0): 75, 74, 56, (405,8,0): 77, 74, 57, (405,9,0): 77, 74, 57, (405,10,0): 79, 73, 57, (405,11,0): 79, 73, 57, (405,12,0): 80, 74, 58, (405,13,0): 82, 76, 60, (405,14,0): 85, 78, 62, (405,15,0): 86, 79, 63, (405,16,0): 89, 80, 65, (405,17,0): 90, 81, 66, (405,18,0): 90, 81, 66, (405,19,0): 91, 82, 67, (405,20,0): 93, 81, 65, (405,21,0): 94, 82, 66, (405,22,0): 94, 82, 66, (405,23,0): 94, 82, 66, (405,24,0): 94, 81, 64, (405,25,0): 94, 81, 64, (405,26,0): 96, 81, 62, (405,27,0): 96, 81, 62, (405,28,0): 95, 80, 61, (405,29,0): 95, 80, 61, (405,30,0): 95, 78, 58, (405,31,0): 94, 79, 60, (405,32,0): 91, 78, 61, (405,33,0): 92, 79, 62, (405,34,0): 93, 80, 63, (405,35,0): 95, 82, 65, (405,36,0): 97, 84, 65, (405,37,0): 100, 87, 68, (405,38,0): 100, 89, 67, (405,39,0): 101, 90, 68, (405,40,0): 102, 94, 71, (405,41,0): 103, 95, 72, (405,42,0): 103, 97, 71, (405,43,0): 104, 98, 72, (405,44,0): 106, 101, 72, (405,45,0): 107, 102, 73, (405,46,0): 108, 103, 74, (405,47,0): 110, 103, 74, (405,48,0): 112, 101, 73, (405,49,0): 114, 100, 71, (405,50,0): 114, 100, 71, (405,51,0): 116, 102, 73, (405,52,0): 118, 104, 75, (405,53,0): 120, 106, 77, (405,54,0): 122, 108, 79, (405,55,0): 124, 110, 81, (405,56,0): 124, 110, 81, (405,57,0): 123, 109, 80, (405,58,0): 120, 106, 77, (405,59,0): 118, 104, 75, (405,60,0): 117, 103, 74, (405,61,0): 116, 102, 73, (405,62,0): 116, 102, 73, (405,63,0): 116, 102, 73, (405,64,0): 116, 105, 75, (405,65,0): 115, 104, 74, (405,66,0): 115, 104, 76, (405,67,0): 115, 104, 76, (405,68,0): 115, 104, 76, (405,69,0): 111, 100, 72, (405,70,0): 104, 92, 66, (405,71,0): 98, 86, 60, (405,72,0): 89, 77, 53, (405,73,0): 85, 73, 49, (405,74,0): 82, 70, 46, (405,75,0): 80, 68, 44, (405,76,0): 79, 67, 45, (405,77,0): 78, 66, 44, (405,78,0): 75, 63, 41, (405,79,0): 72, 59, 40, (405,80,0): 71, 60, 42, (405,81,0): 70, 58, 42, (405,82,0): 68, 56, 40, (405,83,0): 65, 53, 37, (405,84,0): 63, 51, 35, (405,85,0): 60, 48, 32, (405,86,0): 58, 46, 30, (405,87,0): 57, 45, 29, (405,88,0): 56, 44, 28, (405,89,0): 55, 43, 27, (405,90,0): 55, 43, 27, (405,91,0): 54, 42, 26, (405,92,0): 54, 42, 26, (405,93,0): 53, 41, 25, (405,94,0): 53, 41, 25, (405,95,0): 53, 41, 25, (405,96,0): 56, 42, 31, (405,97,0): 56, 42, 31, (405,98,0): 56, 42, 31, (405,99,0): 56, 42, 31, (405,100,0): 56, 42, 31, (405,101,0): 56, 42, 31, (405,102,0): 56, 42, 31, (405,103,0): 56, 42, 31, (405,104,0): 54, 40, 29, (405,105,0): 54, 40, 29, (405,106,0): 54, 40, 29, (405,107,0): 54, 40, 29, (405,108,0): 54, 40, 29, (405,109,0): 54, 40, 29, (405,110,0): 54, 40, 29, (405,111,0): 54, 40, 29, (405,112,0): 52, 39, 30, (405,113,0): 52, 39, 30, (405,114,0): 52, 39, 30, (405,115,0): 51, 38, 29, (405,116,0): 51, 38, 29, (405,117,0): 50, 37, 28, (405,118,0): 50, 37, 28, (405,119,0): 50, 37, 28, (405,120,0): 54, 41, 32, (405,121,0): 54, 41, 32, (405,122,0): 54, 41, 32, (405,123,0): 54, 41, 32, (405,124,0): 54, 41, 32, (405,125,0): 54, 41, 32, (405,126,0): 54, 41, 32, (405,127,0): 55, 41, 32, (405,128,0): 57, 40, 33, (405,129,0): 58, 39, 33, (405,130,0): 58, 39, 33, (405,131,0): 59, 40, 34, (405,132,0): 62, 43, 37, (405,133,0): 64, 45, 39, (405,134,0): 67, 48, 42, (405,135,0): 68, 49, 43, (405,136,0): 72, 53, 47, (405,137,0): 73, 54, 48, (405,138,0): 75, 56, 50, (405,139,0): 78, 59, 53, (405,140,0): 81, 62, 56, (405,141,0): 84, 65, 59, (405,142,0): 87, 68, 62, (405,143,0): 88, 69, 63, (405,144,0): 88, 69, 63, (405,145,0): 88, 69, 63, (405,146,0): 87, 68, 62, (405,147,0): 86, 67, 61, (405,148,0): 85, 66, 60, (405,149,0): 84, 65, 59, (405,150,0): 84, 65, 59, (405,151,0): 83, 64, 58, (405,152,0): 87, 68, 62, (405,153,0): 86, 67, 61, (405,154,0): 85, 66, 60, (405,155,0): 85, 66, 60, (405,156,0): 87, 68, 62, (405,157,0): 90, 71, 65, (405,158,0): 94, 75, 69, (405,159,0): 97, 78, 71, (405,160,0): 100, 80, 69, (405,161,0): 101, 82, 68, (405,162,0): 102, 83, 69, (405,163,0): 104, 85, 71, (405,164,0): 105, 85, 74, (405,165,0): 105, 85, 74, (405,166,0): 106, 84, 73, (405,167,0): 106, 84, 73, (405,168,0): 112, 87, 80, (405,169,0): 110, 85, 78, (405,170,0): 109, 81, 77, (405,171,0): 108, 80, 76, (405,172,0): 109, 81, 77, (405,173,0): 112, 84, 80, (405,174,0): 116, 88, 85, (405,175,0): 116, 91, 86, (405,176,0): 122, 99, 93, (405,177,0): 122, 102, 93, (405,178,0): 126, 106, 97, (405,179,0): 128, 110, 100, (405,180,0): 132, 112, 105, (405,181,0): 132, 113, 107, (405,182,0): 131, 112, 108, (405,183,0): 131, 112, 108, (405,184,0): 125, 107, 105, (405,185,0): 127, 109, 107, (405,186,0): 129, 111, 111, (405,187,0): 128, 112, 113, (405,188,0): 131, 115, 118, (405,189,0): 141, 125, 128, (405,190,0): 156, 140, 143, (405,191,0): 164, 151, 158, (405,192,0): 183, 175, 186, (405,193,0): 181, 179, 193, (405,194,0): 182, 181, 197, (405,195,0): 179, 182, 199, (405,196,0): 175, 182, 201, (405,197,0): 169, 180, 200, (405,198,0): 163, 179, 204, (405,199,0): 159, 179, 204, (405,200,0): 163, 189, 214, (405,201,0): 160, 190, 216, (405,202,0): 159, 190, 218, (405,203,0): 156, 191, 219, (405,204,0): 155, 192, 219, (405,205,0): 155, 192, 221, (405,206,0): 153, 192, 221, (405,207,0): 154, 193, 222, (405,208,0): 155, 194, 225, (405,209,0): 153, 194, 224, (405,210,0): 153, 192, 225, (405,211,0): 151, 192, 222, (405,212,0): 150, 189, 222, (405,213,0): 148, 189, 221, (405,214,0): 147, 188, 220, (405,215,0): 146, 187, 219, (405,216,0): 145, 186, 218, (405,217,0): 144, 185, 217, (405,218,0): 144, 185, 217, (405,219,0): 143, 184, 216, (405,220,0): 143, 184, 216, (405,221,0): 142, 183, 215, (405,222,0): 142, 183, 215, (405,223,0): 142, 182, 217, (405,224,0): 145, 184, 223, (405,225,0): 145, 184, 225, (405,226,0): 145, 184, 227, (405,227,0): 146, 185, 228, (405,228,0): 147, 186, 229, (405,229,0): 147, 186, 229, (405,230,0): 147, 185, 230, (405,231,0): 148, 186, 231, (405,232,0): 150, 188, 235, (405,233,0): 150, 188, 235, (405,234,0): 150, 188, 235, (405,235,0): 150, 188, 235, (405,236,0): 150, 188, 237, (405,237,0): 150, 188, 237, (405,238,0): 150, 188, 237, (405,239,0): 151, 187, 237, (405,240,0): 153, 185, 234, (405,241,0): 153, 185, 234, (405,242,0): 151, 183, 234, (405,243,0): 150, 182, 233, (405,244,0): 149, 182, 235, (405,245,0): 150, 183, 236, (405,246,0): 149, 184, 238, (405,247,0): 149, 184, 238, (405,248,0): 147, 183, 241, (405,249,0): 145, 184, 241, (405,250,0): 144, 183, 242, (405,251,0): 143, 183, 242, (405,252,0): 142, 182, 243, (405,253,0): 141, 183, 243, (405,254,0): 140, 181, 243, (405,255,0): 140, 181, 243, (405,256,0): 141, 183, 243, (405,257,0): 140, 182, 242, (405,258,0): 139, 181, 241, (405,259,0): 138, 180, 240, (405,260,0): 137, 178, 240, (405,261,0): 137, 178, 240, (405,262,0): 138, 179, 243, (405,263,0): 138, 179, 243, (405,264,0): 139, 180, 244, (405,265,0): 139, 180, 244, (405,266,0): 140, 181, 247, (405,267,0): 141, 182, 248, (405,268,0): 142, 182, 251, (405,269,0): 143, 183, 252, (405,270,0): 144, 184, 253, (405,271,0): 145, 184, 253, (405,272,0): 147, 184, 255, (405,273,0): 149, 183, 255, (405,274,0): 150, 184, 255, (405,275,0): 151, 185, 255, (405,276,0): 152, 186, 255, (405,277,0): 153, 187, 255, (405,278,0): 154, 189, 255, (405,279,0): 154, 189, 255, (405,280,0): 154, 189, 255, (405,281,0): 154, 189, 255, (405,282,0): 155, 190, 255, (405,283,0): 156, 191, 255, (405,284,0): 157, 192, 255, (405,285,0): 156, 191, 255, (405,286,0): 155, 190, 254, (405,287,0): 156, 190, 254, (405,288,0): 161, 190, 255, (405,289,0): 163, 190, 255, (405,290,0): 163, 190, 255, (405,291,0): 163, 190, 255, (405,292,0): 164, 191, 255, (405,293,0): 164, 191, 255, (405,294,0): 165, 193, 255, (405,295,0): 165, 193, 255, (405,296,0): 164, 192, 255, (405,297,0): 165, 193, 255, (405,298,0): 166, 194, 255, (405,299,0): 166, 194, 255, (405,300,0): 166, 195, 255, (405,301,0): 165, 194, 254, (405,302,0): 166, 192, 253, (405,303,0): 168, 190, 250, (405,304,0): 172, 183, 247, (405,305,0): 168, 173, 231, (405,306,0): 151, 154, 199, (405,307,0): 129, 129, 165, (405,308,0): 116, 116, 142, (405,309,0): 122, 120, 142, (405,310,0): 134, 132, 156, (405,311,0): 142, 139, 166, (405,312,0): 135, 134, 165, (405,313,0): 133, 132, 163, (405,314,0): 132, 132, 158, (405,315,0): 134, 132, 154, (405,316,0): 131, 128, 149, (405,317,0): 127, 119, 140, (405,318,0): 129, 117, 139, (405,319,0): 133, 120, 140, (405,320,0): 138, 125, 142, (405,321,0): 142, 128, 141, (405,322,0): 148, 130, 142, (405,323,0): 152, 129, 137, (405,324,0): 151, 122, 127, (405,325,0): 145, 109, 111, (405,326,0): 140, 96, 97, (405,327,0): 138, 87, 86, (405,328,0): 132, 76, 75, (405,329,0): 124, 66, 64, (405,330,0): 107, 51, 50, (405,331,0): 94, 43, 40, (405,332,0): 84, 38, 38, (405,333,0): 77, 37, 35, (405,334,0): 70, 35, 33, (405,335,0): 65, 31, 30, (405,336,0): 63, 29, 30, (405,337,0): 63, 28, 32, (405,338,0): 63, 28, 32, (405,339,0): 62, 27, 31, (405,340,0): 59, 27, 30, (405,341,0): 59, 27, 30, (405,342,0): 58, 26, 29, (405,343,0): 57, 27, 29, (405,344,0): 57, 27, 29, (405,345,0): 56, 26, 28, (405,346,0): 54, 25, 27, (405,347,0): 53, 24, 26, (405,348,0): 50, 24, 25, (405,349,0): 49, 23, 24, (405,350,0): 48, 22, 23, (405,351,0): 48, 22, 25, (405,352,0): 47, 22, 26, (405,353,0): 47, 22, 28, (405,354,0): 47, 22, 28, (405,355,0): 47, 22, 28, (405,356,0): 47, 22, 28, (405,357,0): 47, 22, 28, (405,358,0): 47, 22, 28, (405,359,0): 47, 22, 28, (405,360,0): 47, 22, 28, (405,361,0): 47, 22, 28, (405,362,0): 46, 21, 27, (405,363,0): 46, 21, 27, (405,364,0): 45, 20, 26, (405,365,0): 45, 20, 26, (405,366,0): 44, 19, 25, (405,367,0): 42, 19, 25, (405,368,0): 43, 21, 24, (405,369,0): 42, 22, 24, (405,370,0): 42, 22, 24, (405,371,0): 43, 23, 25, (405,372,0): 42, 23, 27, (405,373,0): 43, 24, 28, (405,374,0): 43, 24, 30, (405,375,0): 43, 24, 30, (405,376,0): 42, 25, 31, (405,377,0): 41, 24, 30, (405,378,0): 38, 23, 30, (405,379,0): 36, 21, 28, (405,380,0): 35, 19, 29, (405,381,0): 35, 19, 29, (405,382,0): 33, 20, 29, (405,383,0): 33, 20, 27, (405,384,0): 38, 21, 29, (405,385,0): 38, 21, 27, (405,386,0): 38, 21, 27, (405,387,0): 38, 21, 27, (405,388,0): 39, 22, 28, (405,389,0): 39, 22, 28, (405,390,0): 39, 22, 28, (405,391,0): 39, 22, 28, (405,392,0): 39, 22, 28, (405,393,0): 38, 21, 27, (405,394,0): 38, 21, 27, (405,395,0): 37, 20, 26, (405,396,0): 37, 20, 26, (405,397,0): 37, 20, 26, (405,398,0): 38, 21, 27, (405,399,0): 39, 22, 28, (405,400,0): 41, 24, 30, (405,401,0): 42, 25, 31, (405,402,0): 44, 27, 33, (405,403,0): 45, 28, 34, (405,404,0): 44, 27, 35, (405,405,0): 41, 24, 32, (405,406,0): 39, 22, 30, (405,407,0): 37, 20, 28, (405,408,0): 37, 20, 30, (405,409,0): 38, 21, 31, (405,410,0): 40, 22, 34, (405,411,0): 41, 23, 35, (405,412,0): 42, 24, 36, (405,413,0): 41, 23, 35, (405,414,0): 41, 23, 37, (405,415,0): 40, 22, 34, (405,416,0): 36, 19, 29, (405,417,0): 36, 19, 27, (405,418,0): 36, 19, 27, (405,419,0): 36, 19, 27, (405,420,0): 36, 19, 27, (405,421,0): 36, 19, 27, (405,422,0): 36, 19, 27, (405,423,0): 36, 19, 27, (405,424,0): 34, 17, 25, (405,425,0): 34, 17, 25, (405,426,0): 35, 18, 26, (405,427,0): 35, 18, 26, (405,428,0): 36, 19, 27, (405,429,0): 36, 19, 27, (405,430,0): 37, 20, 28, (405,431,0): 36, 21, 26, (405,432,0): 41, 31, 32, (405,433,0): 40, 32, 30, (405,434,0): 43, 33, 32, (405,435,0): 46, 36, 35, (405,436,0): 49, 37, 39, (405,437,0): 49, 34, 37, (405,438,0): 45, 30, 35, (405,439,0): 41, 26, 31, (405,440,0): 42, 25, 31, (405,441,0): 41, 26, 31, (405,442,0): 41, 26, 33, (405,443,0): 39, 26, 33, (405,444,0): 38, 27, 35, (405,445,0): 38, 27, 35, (405,446,0): 37, 27, 35, (405,447,0): 38, 27, 33, (405,448,0): 44, 29, 34, (405,449,0): 44, 28, 31, (405,450,0): 46, 27, 29, (405,451,0): 46, 27, 29, (405,452,0): 49, 30, 32, (405,453,0): 53, 34, 36, (405,454,0): 54, 38, 38, (405,455,0): 56, 42, 41, (405,456,0): 61, 47, 44, (405,457,0): 63, 54, 49, (405,458,0): 66, 59, 53, (405,459,0): 64, 61, 54, (405,460,0): 65, 67, 56, (405,461,0): 77, 80, 69, (405,462,0): 95, 101, 89, (405,463,0): 108, 119, 105, (405,464,0): 126, 140, 123, (405,465,0): 133, 146, 128, (405,466,0): 135, 142, 124, (405,467,0): 127, 129, 108, (405,468,0): 120, 115, 95, (405,469,0): 117, 111, 89, (405,470,0): 114, 108, 84, (405,471,0): 111, 105, 81, (405,472,0): 111, 107, 82, (405,473,0): 109, 105, 80, (405,474,0): 107, 99, 80, (405,475,0): 105, 93, 77, (405,476,0): 102, 85, 75, (405,477,0): 92, 75, 67, (405,478,0): 81, 62, 58, (405,479,0): 72, 53, 47, (405,480,0): 68, 48, 39, (405,481,0): 72, 53, 39, (405,482,0): 76, 57, 43, (405,483,0): 79, 60, 46, (405,484,0): 80, 61, 47, (405,485,0): 80, 62, 48, (405,486,0): 83, 65, 53, (405,487,0): 85, 67, 55, (405,488,0): 84, 66, 54, (405,489,0): 85, 66, 52, (405,490,0): 85, 65, 54, (405,491,0): 83, 64, 50, (405,492,0): 80, 61, 47, (405,493,0): 76, 57, 43, (405,494,0): 71, 52, 38, (405,495,0): 68, 50, 36, (405,496,0): 63, 49, 36, (405,497,0): 61, 49, 35, (405,498,0): 59, 47, 35, (405,499,0): 57, 45, 33, (405,500,0): 56, 43, 34, (405,501,0): 56, 43, 34, (405,502,0): 56, 43, 35, (405,503,0): 56, 43, 35, (405,504,0): 59, 45, 42, (405,505,0): 58, 44, 41, (405,506,0): 55, 41, 40, (405,507,0): 52, 38, 37, (405,508,0): 50, 36, 36, (405,509,0): 48, 34, 34, (405,510,0): 48, 33, 36, (405,511,0): 48, 33, 36, (405,512,0): 45, 31, 31, (405,513,0): 44, 28, 29, (405,514,0): 43, 27, 28, (405,515,0): 43, 24, 26, (405,516,0): 43, 23, 25, (405,517,0): 43, 21, 24, (405,518,0): 44, 22, 25, (405,519,0): 44, 22, 25, (405,520,0): 49, 24, 28, (405,521,0): 47, 25, 28, (405,522,0): 47, 25, 28, (405,523,0): 45, 25, 27, (405,524,0): 44, 25, 27, (405,525,0): 41, 25, 26, (405,526,0): 41, 25, 26, (405,527,0): 41, 25, 26, (405,528,0): 44, 28, 29, (405,529,0): 44, 28, 29, (405,530,0): 44, 30, 30, (405,531,0): 42, 30, 30, (405,532,0): 42, 30, 30, (405,533,0): 40, 28, 28, (405,534,0): 41, 27, 27, (405,535,0): 43, 24, 26, (405,536,0): 49, 27, 30, (405,537,0): 50, 23, 28, (405,538,0): 51, 20, 26, (405,539,0): 49, 18, 24, (405,540,0): 48, 17, 23, (405,541,0): 46, 17, 22, (405,542,0): 43, 18, 22, (405,543,0): 44, 19, 23, (405,544,0): 45, 20, 24, (405,545,0): 44, 19, 23, (405,546,0): 44, 19, 23, (405,547,0): 46, 21, 25, (405,548,0): 50, 25, 29, (405,549,0): 50, 28, 31, (405,550,0): 50, 28, 31, (405,551,0): 49, 27, 30, (405,552,0): 54, 34, 36, (405,553,0): 54, 34, 36, (405,554,0): 53, 33, 35, (405,555,0): 51, 32, 34, (405,556,0): 51, 32, 34, (405,557,0): 50, 31, 33, (405,558,0): 48, 32, 33, (405,559,0): 50, 32, 32, (405,560,0): 57, 38, 34, (405,561,0): 56, 37, 31, (405,562,0): 55, 36, 32, (405,563,0): 57, 38, 34, (405,564,0): 59, 41, 39, (405,565,0): 61, 43, 41, (405,566,0): 60, 42, 42, (405,567,0): 58, 40, 40, (405,568,0): 50, 34, 35, (405,569,0): 45, 29, 32, (405,570,0): 39, 24, 29, (405,571,0): 37, 22, 27, (405,572,0): 37, 22, 27, (405,573,0): 37, 22, 29, (405,574,0): 34, 21, 28, (405,575,0): 33, 20, 27, (405,576,0): 40, 25, 28, (405,577,0): 42, 26, 27, (405,578,0): 47, 28, 30, (405,579,0): 52, 32, 33, (405,580,0): 57, 36, 35, (405,581,0): 62, 38, 36, (405,582,0): 62, 41, 36, (405,583,0): 63, 44, 37, (405,584,0): 59, 45, 36, (405,585,0): 65, 51, 42, (405,586,0): 72, 58, 49, (405,587,0): 81, 64, 56, (405,588,0): 87, 66, 61, (405,589,0): 92, 66, 65, (405,590,0): 98, 68, 70, (405,591,0): 100, 70, 72, (405,592,0): 100, 79, 78, (405,593,0): 99, 81, 79, (405,594,0): 100, 82, 80, (405,595,0): 98, 83, 80, (405,596,0): 96, 82, 79, (405,597,0): 91, 80, 76, (405,598,0): 88, 77, 73, (405,599,0): 85, 76, 71, (406,0,0): 76, 79, 62, (406,1,0): 75, 78, 61, (406,2,0): 75, 78, 61, (406,3,0): 74, 77, 60, (406,4,0): 74, 75, 59, (406,5,0): 74, 75, 59, (406,6,0): 75, 73, 58, (406,7,0): 75, 73, 58, (406,8,0): 76, 74, 59, (406,9,0): 76, 74, 59, (406,10,0): 76, 73, 58, (406,11,0): 76, 73, 58, (406,12,0): 80, 74, 60, (406,13,0): 81, 75, 61, (406,14,0): 83, 77, 63, (406,15,0): 84, 78, 64, (406,16,0): 88, 80, 67, (406,17,0): 88, 80, 67, (406,18,0): 88, 81, 65, (406,19,0): 89, 82, 66, (406,20,0): 90, 81, 66, (406,21,0): 91, 82, 67, (406,22,0): 91, 82, 65, (406,23,0): 92, 83, 66, (406,24,0): 95, 84, 66, (406,25,0): 94, 83, 65, (406,26,0): 95, 82, 65, (406,27,0): 94, 81, 64, (406,28,0): 93, 80, 61, (406,29,0): 93, 80, 61, (406,30,0): 94, 79, 60, (406,31,0): 94, 79, 60, (406,32,0): 91, 78, 61, (406,33,0): 92, 79, 62, (406,34,0): 94, 81, 64, (406,35,0): 96, 83, 66, (406,36,0): 98, 85, 66, (406,37,0): 100, 87, 68, (406,38,0): 100, 89, 67, (406,39,0): 101, 90, 68, (406,40,0): 101, 93, 70, (406,41,0): 102, 94, 71, (406,42,0): 102, 96, 70, (406,43,0): 104, 98, 72, (406,44,0): 106, 101, 72, (406,45,0): 108, 103, 74, (406,46,0): 109, 104, 75, (406,47,0): 111, 104, 75, (406,48,0): 114, 103, 75, (406,49,0): 115, 101, 72, (406,50,0): 115, 101, 72, (406,51,0): 115, 101, 72, (406,52,0): 116, 102, 73, (406,53,0): 118, 104, 75, (406,54,0): 121, 107, 78, (406,55,0): 122, 108, 79, (406,56,0): 125, 111, 82, (406,57,0): 124, 110, 81, (406,58,0): 121, 107, 78, (406,59,0): 119, 105, 76, (406,60,0): 117, 103, 74, (406,61,0): 116, 102, 73, (406,62,0): 116, 102, 73, (406,63,0): 116, 102, 73, (406,64,0): 115, 104, 74, (406,65,0): 114, 105, 74, (406,66,0): 114, 105, 76, (406,67,0): 115, 106, 77, (406,68,0): 115, 106, 77, (406,69,0): 111, 102, 73, (406,70,0): 104, 94, 67, (406,71,0): 99, 89, 62, (406,72,0): 91, 81, 56, (406,73,0): 86, 76, 51, (406,74,0): 81, 71, 46, (406,75,0): 78, 68, 43, (406,76,0): 78, 67, 45, (406,77,0): 77, 66, 44, (406,78,0): 75, 64, 42, (406,79,0): 74, 63, 43, (406,80,0): 72, 61, 43, (406,81,0): 71, 59, 43, (406,82,0): 69, 57, 41, (406,83,0): 66, 54, 38, (406,84,0): 64, 52, 36, (406,85,0): 61, 49, 33, (406,86,0): 59, 47, 31, (406,87,0): 58, 46, 30, (406,88,0): 56, 44, 28, (406,89,0): 56, 44, 28, (406,90,0): 56, 44, 28, (406,91,0): 55, 43, 27, (406,92,0): 55, 43, 27, (406,93,0): 54, 42, 26, (406,94,0): 54, 42, 26, (406,95,0): 53, 41, 25, (406,96,0): 56, 42, 31, (406,97,0): 56, 42, 31, (406,98,0): 56, 42, 31, (406,99,0): 56, 42, 31, (406,100,0): 56, 42, 31, (406,101,0): 56, 42, 31, (406,102,0): 56, 42, 31, (406,103,0): 56, 42, 31, (406,104,0): 55, 41, 30, (406,105,0): 55, 41, 30, (406,106,0): 55, 41, 30, (406,107,0): 55, 41, 30, (406,108,0): 55, 41, 30, (406,109,0): 55, 41, 30, (406,110,0): 55, 41, 30, (406,111,0): 55, 41, 30, (406,112,0): 53, 39, 28, (406,113,0): 53, 39, 28, (406,114,0): 53, 39, 28, (406,115,0): 52, 38, 27, (406,116,0): 52, 38, 27, (406,117,0): 51, 37, 26, (406,118,0): 51, 37, 26, (406,119,0): 51, 37, 26, (406,120,0): 55, 41, 30, (406,121,0): 55, 41, 30, (406,122,0): 55, 41, 30, (406,123,0): 55, 41, 30, (406,124,0): 55, 41, 30, (406,125,0): 55, 41, 30, (406,126,0): 55, 41, 30, (406,127,0): 55, 41, 32, (406,128,0): 59, 42, 35, (406,129,0): 59, 40, 34, (406,130,0): 59, 40, 34, (406,131,0): 59, 40, 34, (406,132,0): 61, 42, 36, (406,133,0): 62, 43, 37, (406,134,0): 64, 45, 39, (406,135,0): 66, 47, 41, (406,136,0): 70, 51, 45, (406,137,0): 71, 52, 46, (406,138,0): 74, 55, 49, (406,139,0): 77, 58, 52, (406,140,0): 81, 62, 56, (406,141,0): 85, 66, 60, (406,142,0): 87, 68, 62, (406,143,0): 89, 70, 64, (406,144,0): 89, 70, 64, (406,145,0): 88, 69, 63, (406,146,0): 87, 68, 62, (406,147,0): 86, 67, 61, (406,148,0): 85, 66, 60, (406,149,0): 83, 64, 58, (406,150,0): 82, 63, 57, (406,151,0): 82, 63, 57, (406,152,0): 87, 68, 62, (406,153,0): 86, 67, 61, (406,154,0): 85, 66, 60, (406,155,0): 84, 65, 59, (406,156,0): 86, 67, 61, (406,157,0): 88, 69, 63, (406,158,0): 91, 72, 66, (406,159,0): 93, 74, 67, (406,160,0): 95, 77, 67, (406,161,0): 97, 79, 67, (406,162,0): 99, 81, 69, (406,163,0): 102, 84, 72, (406,164,0): 104, 84, 75, (406,165,0): 105, 85, 76, (406,166,0): 105, 85, 76, (406,167,0): 104, 84, 75, (406,168,0): 109, 86, 78, (406,169,0): 107, 84, 76, (406,170,0): 105, 80, 73, (406,171,0): 103, 78, 71, (406,172,0): 104, 79, 72, (406,173,0): 106, 81, 74, (406,174,0): 112, 84, 80, (406,175,0): 113, 88, 83, (406,176,0): 115, 93, 82, (406,177,0): 118, 96, 85, (406,178,0): 123, 101, 90, (406,179,0): 126, 106, 95, (406,180,0): 131, 108, 100, (406,181,0): 130, 110, 101, (406,182,0): 129, 109, 102, (406,183,0): 129, 109, 102, (406,184,0): 125, 101, 97, (406,185,0): 127, 103, 99, (406,186,0): 128, 104, 102, (406,187,0): 124, 103, 100, (406,188,0): 122, 101, 100, (406,189,0): 128, 107, 106, (406,190,0): 140, 119, 118, (406,191,0): 149, 129, 131, (406,192,0): 163, 147, 157, (406,193,0): 170, 158, 170, (406,194,0): 182, 171, 185, (406,195,0): 186, 180, 194, (406,196,0): 183, 182, 198, (406,197,0): 178, 181, 198, (406,198,0): 173, 181, 202, (406,199,0): 169, 184, 205, (406,200,0): 169, 189, 213, (406,201,0): 166, 190, 214, (406,202,0): 162, 192, 216, (406,203,0): 159, 193, 218, (406,204,0): 157, 193, 219, (406,205,0): 156, 193, 220, (406,206,0): 154, 194, 220, (406,207,0): 154, 193, 222, (406,208,0): 156, 195, 224, (406,209,0): 155, 194, 223, (406,210,0): 156, 192, 224, (406,211,0): 152, 191, 220, (406,212,0): 152, 188, 220, (406,213,0): 148, 187, 218, (406,214,0): 147, 186, 217, (406,215,0): 146, 185, 216, (406,216,0): 145, 184, 215, (406,217,0): 145, 184, 215, (406,218,0): 144, 185, 217, (406,219,0): 143, 184, 216, (406,220,0): 143, 184, 216, (406,221,0): 142, 183, 215, (406,222,0): 142, 183, 215, (406,223,0): 141, 181, 216, (406,224,0): 145, 184, 223, (406,225,0): 146, 185, 226, (406,226,0): 146, 185, 228, (406,227,0): 146, 185, 228, (406,228,0): 147, 186, 229, (406,229,0): 147, 186, 229, (406,230,0): 148, 186, 231, (406,231,0): 148, 186, 231, (406,232,0): 150, 188, 235, (406,233,0): 150, 188, 235, (406,234,0): 150, 188, 235, (406,235,0): 150, 188, 235, (406,236,0): 150, 188, 237, (406,237,0): 150, 188, 237, (406,238,0): 150, 188, 237, (406,239,0): 151, 187, 237, (406,240,0): 153, 187, 235, (406,241,0): 153, 185, 234, (406,242,0): 151, 183, 234, (406,243,0): 149, 182, 233, (406,244,0): 148, 181, 234, (406,245,0): 148, 181, 234, (406,246,0): 146, 181, 235, (406,247,0): 147, 182, 236, (406,248,0): 147, 183, 241, (406,249,0): 145, 184, 241, (406,250,0): 144, 183, 242, (406,251,0): 143, 183, 242, (406,252,0): 142, 182, 243, (406,253,0): 142, 182, 243, (406,254,0): 141, 181, 243, (406,255,0): 140, 181, 243, (406,256,0): 141, 183, 243, (406,257,0): 140, 182, 242, (406,258,0): 138, 180, 240, (406,259,0): 136, 178, 238, (406,260,0): 136, 177, 239, (406,261,0): 136, 177, 239, (406,262,0): 137, 178, 242, (406,263,0): 138, 179, 243, (406,264,0): 138, 179, 243, (406,265,0): 139, 180, 244, (406,266,0): 140, 181, 247, (406,267,0): 141, 182, 248, (406,268,0): 142, 182, 251, (406,269,0): 143, 183, 252, (406,270,0): 144, 184, 253, (406,271,0): 146, 185, 254, (406,272,0): 147, 184, 254, (406,273,0): 150, 184, 255, (406,274,0): 151, 185, 255, (406,275,0): 152, 186, 255, (406,276,0): 153, 187, 255, (406,277,0): 154, 189, 255, (406,278,0): 155, 190, 255, (406,279,0): 155, 190, 255, (406,280,0): 152, 187, 253, (406,281,0): 153, 188, 254, (406,282,0): 155, 190, 255, (406,283,0): 157, 192, 255, (406,284,0): 158, 193, 255, (406,285,0): 158, 193, 255, (406,286,0): 157, 193, 255, (406,287,0): 157, 191, 254, (406,288,0): 162, 193, 255, (406,289,0): 163, 192, 255, (406,290,0): 164, 191, 255, (406,291,0): 165, 192, 255, (406,292,0): 166, 194, 255, (406,293,0): 166, 194, 255, (406,294,0): 167, 195, 255, (406,295,0): 167, 195, 255, (406,296,0): 168, 193, 255, (406,297,0): 168, 193, 255, (406,298,0): 169, 195, 255, (406,299,0): 169, 195, 255, (406,300,0): 168, 194, 255, (406,301,0): 166, 192, 253, (406,302,0): 166, 190, 250, (406,303,0): 168, 188, 249, (406,304,0): 173, 182, 247, (406,305,0): 172, 177, 235, (406,306,0): 156, 159, 204, (406,307,0): 133, 133, 169, (406,308,0): 119, 119, 145, (406,309,0): 125, 123, 145, (406,310,0): 136, 133, 160, (406,311,0): 143, 140, 169, (406,312,0): 136, 135, 167, (406,313,0): 133, 132, 164, (406,314,0): 132, 132, 160, (406,315,0): 135, 133, 157, (406,316,0): 131, 128, 149, (406,317,0): 127, 119, 140, (406,318,0): 130, 118, 140, (406,319,0): 137, 125, 145, (406,320,0): 142, 131, 148, (406,321,0): 144, 133, 147, (406,322,0): 151, 135, 148, (406,323,0): 155, 133, 145, (406,324,0): 156, 125, 133, (406,325,0): 153, 114, 119, (406,326,0): 147, 101, 104, (406,327,0): 145, 93, 95, (406,328,0): 135, 79, 78, (406,329,0): 124, 66, 65, (406,330,0): 105, 49, 48, (406,331,0): 91, 40, 37, (406,332,0): 82, 36, 36, (406,333,0): 75, 35, 33, (406,334,0): 68, 33, 31, (406,335,0): 62, 31, 29, (406,336,0): 61, 27, 28, (406,337,0): 61, 26, 30, (406,338,0): 61, 26, 30, (406,339,0): 60, 25, 29, (406,340,0): 60, 25, 29, (406,341,0): 58, 26, 29, (406,342,0): 57, 25, 28, (406,343,0): 57, 25, 28, (406,344,0): 57, 27, 29, (406,345,0): 57, 27, 29, (406,346,0): 55, 26, 28, (406,347,0): 54, 25, 27, (406,348,0): 53, 24, 26, (406,349,0): 52, 23, 25, (406,350,0): 51, 22, 24, (406,351,0): 48, 22, 25, (406,352,0): 46, 21, 27, (406,353,0): 46, 20, 29, (406,354,0): 46, 20, 29, (406,355,0): 46, 20, 29, (406,356,0): 46, 20, 29, (406,357,0): 46, 20, 29, (406,358,0): 46, 20, 29, (406,359,0): 46, 20, 29, (406,360,0): 47, 21, 30, (406,361,0): 47, 21, 30, (406,362,0): 46, 20, 29, (406,363,0): 46, 20, 29, (406,364,0): 45, 19, 28, (406,365,0): 45, 19, 28, (406,366,0): 45, 19, 28, (406,367,0): 42, 19, 25, (406,368,0): 42, 20, 23, (406,369,0): 41, 21, 23, (406,370,0): 42, 22, 24, (406,371,0): 43, 23, 25, (406,372,0): 42, 23, 27, (406,373,0): 43, 24, 28, (406,374,0): 44, 25, 31, (406,375,0): 44, 25, 31, (406,376,0): 42, 25, 31, (406,377,0): 41, 24, 30, (406,378,0): 38, 23, 30, (406,379,0): 36, 21, 28, (406,380,0): 35, 19, 29, (406,381,0): 35, 19, 29, (406,382,0): 33, 20, 29, (406,383,0): 34, 21, 28, (406,384,0): 39, 22, 30, (406,385,0): 39, 22, 28, (406,386,0): 39, 22, 28, (406,387,0): 39, 22, 28, (406,388,0): 38, 21, 27, (406,389,0): 38, 21, 27, (406,390,0): 38, 21, 27, (406,391,0): 38, 21, 27, (406,392,0): 37, 20, 26, (406,393,0): 37, 20, 26, (406,394,0): 38, 21, 27, (406,395,0): 39, 22, 28, (406,396,0): 39, 22, 28, (406,397,0): 39, 22, 28, (406,398,0): 38, 21, 27, (406,399,0): 38, 21, 27, (406,400,0): 40, 23, 29, (406,401,0): 41, 24, 30, (406,402,0): 43, 26, 32, (406,403,0): 44, 27, 33, (406,404,0): 44, 27, 35, (406,405,0): 42, 25, 33, (406,406,0): 40, 23, 31, (406,407,0): 38, 21, 29, (406,408,0): 37, 20, 30, (406,409,0): 38, 21, 31, (406,410,0): 40, 22, 34, (406,411,0): 41, 23, 35, (406,412,0): 42, 24, 36, (406,413,0): 41, 23, 35, (406,414,0): 41, 23, 37, (406,415,0): 40, 22, 34, (406,416,0): 36, 19, 29, (406,417,0): 36, 19, 27, (406,418,0): 36, 19, 27, (406,419,0): 36, 19, 27, (406,420,0): 36, 19, 27, (406,421,0): 36, 19, 27, (406,422,0): 36, 19, 27, (406,423,0): 36, 19, 27, (406,424,0): 33, 16, 24, (406,425,0): 33, 16, 24, (406,426,0): 34, 17, 25, (406,427,0): 34, 17, 25, (406,428,0): 35, 18, 26, (406,429,0): 35, 18, 26, (406,430,0): 36, 19, 27, (406,431,0): 35, 20, 25, (406,432,0): 40, 28, 30, (406,433,0): 40, 30, 31, (406,434,0): 41, 31, 32, (406,435,0): 45, 35, 36, (406,436,0): 48, 36, 40, (406,437,0): 47, 35, 39, (406,438,0): 41, 29, 33, (406,439,0): 37, 25, 29, (406,440,0): 39, 24, 29, (406,441,0): 37, 25, 29, (406,442,0): 37, 25, 29, (406,443,0): 38, 26, 30, (406,444,0): 37, 26, 32, (406,445,0): 37, 26, 32, (406,446,0): 38, 27, 33, (406,447,0): 38, 27, 33, (406,448,0): 45, 30, 35, (406,449,0): 44, 29, 32, (406,450,0): 44, 28, 29, (406,451,0): 44, 28, 29, (406,452,0): 46, 30, 31, (406,453,0): 49, 33, 34, (406,454,0): 52, 36, 36, (406,455,0): 54, 40, 39, (406,456,0): 61, 47, 44, (406,457,0): 63, 54, 49, (406,458,0): 66, 59, 53, (406,459,0): 64, 61, 54, (406,460,0): 64, 64, 54, (406,461,0): 73, 76, 65, (406,462,0): 91, 97, 85, (406,463,0): 103, 114, 100, (406,464,0): 121, 138, 122, (406,465,0): 131, 148, 132, (406,466,0): 139, 150, 134, (406,467,0): 136, 140, 123, (406,468,0): 127, 126, 108, (406,469,0): 119, 116, 97, (406,470,0): 114, 107, 88, (406,471,0): 107, 101, 79, (406,472,0): 110, 104, 82, (406,473,0): 109, 101, 82, (406,474,0): 109, 96, 79, (406,475,0): 108, 92, 77, (406,476,0): 105, 85, 76, (406,477,0): 99, 74, 69, (406,478,0): 90, 62, 58, (406,479,0): 83, 55, 51, (406,480,0): 73, 50, 42, (406,481,0): 74, 54, 43, (406,482,0): 77, 58, 44, (406,483,0): 77, 59, 45, (406,484,0): 77, 59, 45, (406,485,0): 78, 62, 47, (406,486,0): 83, 67, 52, (406,487,0): 87, 71, 56, (406,488,0): 84, 68, 53, (406,489,0): 86, 69, 53, (406,490,0): 87, 69, 55, (406,491,0): 87, 70, 54, (406,492,0): 86, 67, 52, (406,493,0): 82, 63, 48, (406,494,0): 80, 58, 44, (406,495,0): 75, 56, 41, (406,496,0): 67, 54, 38, (406,497,0): 64, 52, 38, (406,498,0): 61, 49, 37, (406,499,0): 58, 46, 34, (406,500,0): 56, 43, 34, (406,501,0): 54, 41, 32, (406,502,0): 53, 40, 32, (406,503,0): 53, 40, 32, (406,504,0): 57, 43, 40, (406,505,0): 56, 42, 39, (406,506,0): 53, 39, 38, (406,507,0): 50, 36, 35, (406,508,0): 48, 34, 34, (406,509,0): 47, 33, 33, (406,510,0): 47, 32, 35, (406,511,0): 47, 32, 35, (406,512,0): 46, 30, 31, (406,513,0): 46, 27, 29, (406,514,0): 45, 26, 28, (406,515,0): 44, 24, 26, (406,516,0): 44, 22, 25, (406,517,0): 45, 20, 24, (406,518,0): 46, 21, 25, (406,519,0): 46, 21, 25, (406,520,0): 50, 23, 28, (406,521,0): 49, 24, 28, (406,522,0): 48, 23, 27, (406,523,0): 45, 23, 26, (406,524,0): 44, 24, 26, (406,525,0): 42, 23, 25, (406,526,0): 41, 22, 24, (406,527,0): 39, 23, 24, (406,528,0): 44, 28, 29, (406,529,0): 45, 29, 30, (406,530,0): 45, 31, 31, (406,531,0): 43, 31, 31, (406,532,0): 43, 31, 31, (406,533,0): 41, 29, 29, (406,534,0): 41, 27, 27, (406,535,0): 43, 24, 26, (406,536,0): 47, 22, 26, (406,537,0): 49, 20, 25, (406,538,0): 50, 17, 24, (406,539,0): 48, 15, 22, (406,540,0): 47, 14, 21, (406,541,0): 46, 15, 21, (406,542,0): 45, 16, 21, (406,543,0): 44, 17, 22, (406,544,0): 48, 22, 25, (406,545,0): 46, 20, 23, (406,546,0): 46, 20, 23, (406,547,0): 47, 22, 25, (406,548,0): 51, 26, 29, (406,549,0): 54, 29, 32, (406,550,0): 51, 29, 31, (406,551,0): 49, 27, 29, (406,552,0): 55, 33, 35, (406,553,0): 54, 34, 35, (406,554,0): 53, 33, 34, (406,555,0): 53, 33, 34, (406,556,0): 52, 34, 34, (406,557,0): 51, 33, 33, (406,558,0): 51, 33, 33, (406,559,0): 51, 33, 33, (406,560,0): 59, 40, 36, (406,561,0): 57, 38, 34, (406,562,0): 56, 37, 33, (406,563,0): 57, 38, 34, (406,564,0): 60, 42, 40, (406,565,0): 62, 44, 42, (406,566,0): 62, 44, 44, (406,567,0): 61, 43, 43, (406,568,0): 52, 36, 37, (406,569,0): 47, 31, 32, (406,570,0): 41, 26, 29, (406,571,0): 38, 23, 26, (406,572,0): 38, 23, 26, (406,573,0): 38, 23, 28, (406,574,0): 35, 23, 27, (406,575,0): 34, 22, 26, (406,576,0): 41, 29, 29, (406,577,0): 46, 32, 29, (406,578,0): 54, 36, 34, (406,579,0): 60, 41, 37, (406,580,0): 65, 44, 39, (406,581,0): 70, 47, 41, (406,582,0): 69, 49, 40, (406,583,0): 68, 50, 40, (406,584,0): 73, 56, 46, (406,585,0): 79, 62, 52, (406,586,0): 85, 68, 58, (406,587,0): 91, 72, 65, (406,588,0): 96, 72, 68, (406,589,0): 100, 72, 69, (406,590,0): 105, 73, 74, (406,591,0): 106, 76, 76, (406,592,0): 104, 83, 82, (406,593,0): 100, 85, 82, (406,594,0): 101, 86, 83, (406,595,0): 100, 86, 83, (406,596,0): 95, 84, 80, (406,597,0): 91, 82, 77, (406,598,0): 87, 78, 73, (406,599,0): 84, 77, 71, (407,0,0): 76, 79, 62, (407,1,0): 76, 79, 62, (407,2,0): 75, 78, 61, (407,3,0): 74, 77, 60, (407,4,0): 74, 75, 59, (407,5,0): 74, 75, 59, (407,6,0): 75, 73, 58, (407,7,0): 75, 73, 58, (407,8,0): 76, 74, 59, (407,9,0): 75, 73, 58, (407,10,0): 76, 73, 58, (407,11,0): 76, 73, 58, (407,12,0): 79, 73, 59, (407,13,0): 81, 75, 61, (407,14,0): 83, 77, 63, (407,15,0): 84, 78, 64, (407,16,0): 87, 79, 66, (407,17,0): 87, 79, 66, (407,18,0): 88, 80, 67, (407,19,0): 88, 81, 65, (407,20,0): 90, 81, 66, (407,21,0): 90, 81, 66, (407,22,0): 91, 82, 67, (407,23,0): 91, 82, 65, (407,24,0): 95, 83, 67, (407,25,0): 95, 84, 66, (407,26,0): 95, 82, 65, (407,27,0): 94, 81, 64, (407,28,0): 93, 80, 63, (407,29,0): 93, 80, 61, (407,30,0): 94, 79, 60, (407,31,0): 94, 79, 60, (407,32,0): 91, 78, 61, (407,33,0): 92, 79, 62, (407,34,0): 94, 81, 64, (407,35,0): 96, 83, 66, (407,36,0): 98, 85, 66, (407,37,0): 100, 87, 68, (407,38,0): 101, 90, 68, (407,39,0): 102, 91, 69, (407,40,0): 101, 93, 70, (407,41,0): 102, 94, 71, (407,42,0): 102, 96, 70, (407,43,0): 104, 98, 72, (407,44,0): 106, 101, 72, (407,45,0): 108, 103, 74, (407,46,0): 109, 104, 75, (407,47,0): 111, 104, 76, (407,48,0): 115, 104, 76, (407,49,0): 116, 102, 73, (407,50,0): 115, 101, 72, (407,51,0): 115, 101, 72, (407,52,0): 116, 102, 73, (407,53,0): 117, 103, 74, (407,54,0): 120, 106, 77, (407,55,0): 121, 107, 78, (407,56,0): 126, 112, 83, (407,57,0): 125, 111, 82, (407,58,0): 122, 108, 79, (407,59,0): 120, 106, 77, (407,60,0): 118, 104, 75, (407,61,0): 117, 103, 74, (407,62,0): 116, 102, 73, (407,63,0): 114, 103, 73, (407,64,0): 113, 104, 73, (407,65,0): 113, 104, 73, (407,66,0): 114, 105, 76, (407,67,0): 115, 106, 77, (407,68,0): 116, 107, 78, (407,69,0): 112, 103, 74, (407,70,0): 105, 95, 68, (407,71,0): 99, 89, 62, (407,72,0): 93, 83, 58, (407,73,0): 88, 78, 53, (407,74,0): 81, 71, 46, (407,75,0): 77, 67, 42, (407,76,0): 77, 66, 44, (407,77,0): 77, 66, 44, (407,78,0): 77, 66, 44, (407,79,0): 75, 64, 44, (407,80,0): 74, 63, 45, (407,81,0): 72, 60, 44, (407,82,0): 70, 58, 42, (407,83,0): 67, 55, 39, (407,84,0): 64, 52, 36, (407,85,0): 61, 49, 33, (407,86,0): 59, 47, 31, (407,87,0): 58, 46, 30, (407,88,0): 57, 45, 29, (407,89,0): 57, 45, 29, (407,90,0): 56, 44, 28, (407,91,0): 56, 44, 28, (407,92,0): 55, 43, 27, (407,93,0): 55, 43, 27, (407,94,0): 54, 42, 26, (407,95,0): 54, 42, 26, (407,96,0): 56, 42, 31, (407,97,0): 56, 42, 31, (407,98,0): 56, 42, 31, (407,99,0): 56, 42, 31, (407,100,0): 56, 42, 31, (407,101,0): 56, 42, 31, (407,102,0): 56, 42, 31, (407,103,0): 56, 42, 31, (407,104,0): 55, 41, 30, (407,105,0): 55, 41, 30, (407,106,0): 55, 41, 30, (407,107,0): 55, 41, 30, (407,108,0): 55, 41, 30, (407,109,0): 55, 41, 30, (407,110,0): 55, 41, 30, (407,111,0): 55, 41, 30, (407,112,0): 53, 39, 28, (407,113,0): 53, 39, 28, (407,114,0): 53, 39, 28, (407,115,0): 52, 38, 27, (407,116,0): 52, 38, 27, (407,117,0): 51, 37, 26, (407,118,0): 51, 37, 26, (407,119,0): 51, 37, 26, (407,120,0): 56, 42, 31, (407,121,0): 56, 42, 31, (407,122,0): 55, 41, 30, (407,123,0): 55, 41, 30, (407,124,0): 55, 41, 30, (407,125,0): 55, 41, 30, (407,126,0): 54, 40, 29, (407,127,0): 56, 39, 29, (407,128,0): 61, 42, 36, (407,129,0): 61, 42, 36, (407,130,0): 60, 41, 35, (407,131,0): 60, 41, 35, (407,132,0): 60, 41, 35, (407,133,0): 61, 42, 36, (407,134,0): 63, 44, 38, (407,135,0): 64, 45, 39, (407,136,0): 69, 50, 44, (407,137,0): 71, 52, 46, (407,138,0): 74, 55, 49, (407,139,0): 77, 58, 52, (407,140,0): 81, 62, 56, (407,141,0): 85, 66, 60, (407,142,0): 88, 69, 63, (407,143,0): 89, 70, 64, (407,144,0): 89, 70, 64, (407,145,0): 89, 70, 64, (407,146,0): 88, 69, 63, (407,147,0): 86, 67, 61, (407,148,0): 84, 65, 59, (407,149,0): 83, 64, 58, (407,150,0): 81, 62, 56, (407,151,0): 81, 62, 56, (407,152,0): 87, 68, 62, (407,153,0): 86, 67, 61, (407,154,0): 85, 66, 60, (407,155,0): 85, 66, 60, (407,156,0): 85, 66, 60, (407,157,0): 87, 68, 62, (407,158,0): 90, 71, 65, (407,159,0): 91, 72, 65, (407,160,0): 93, 75, 65, (407,161,0): 95, 77, 65, (407,162,0): 98, 80, 68, (407,163,0): 101, 83, 71, (407,164,0): 104, 84, 75, (407,165,0): 105, 85, 76, (407,166,0): 105, 85, 76, (407,167,0): 105, 85, 76, (407,168,0): 105, 82, 74, (407,169,0): 103, 80, 72, (407,170,0): 102, 77, 70, (407,171,0): 100, 75, 68, (407,172,0): 100, 75, 68, (407,173,0): 103, 78, 71, (407,174,0): 109, 82, 75, (407,175,0): 109, 84, 77, (407,176,0): 111, 89, 78, (407,177,0): 115, 93, 80, (407,178,0): 120, 98, 85, (407,179,0): 125, 103, 90, (407,180,0): 129, 107, 96, (407,181,0): 130, 108, 97, (407,182,0): 130, 107, 99, (407,183,0): 129, 106, 98, (407,184,0): 126, 101, 96, (407,185,0): 129, 104, 99, (407,186,0): 129, 104, 100, (407,187,0): 125, 100, 96, (407,188,0): 121, 95, 94, (407,189,0): 122, 96, 95, (407,190,0): 130, 104, 103, (407,191,0): 136, 111, 114, (407,192,0): 140, 119, 126, (407,193,0): 157, 137, 148, (407,194,0): 177, 161, 172, (407,195,0): 190, 176, 189, (407,196,0): 191, 183, 196, (407,197,0): 189, 185, 200, (407,198,0): 186, 187, 205, (407,199,0): 184, 191, 209, (407,200,0): 176, 189, 208, (407,201,0): 170, 191, 210, (407,202,0): 167, 192, 214, (407,203,0): 162, 193, 214, (407,204,0): 159, 194, 216, (407,205,0): 158, 194, 218, (407,206,0): 156, 193, 219, (407,207,0): 154, 194, 219, (407,208,0): 158, 195, 222, (407,209,0): 158, 193, 221, (407,210,0): 157, 192, 220, (407,211,0): 155, 190, 218, (407,212,0): 153, 188, 216, (407,213,0): 150, 187, 216, (407,214,0): 149, 186, 215, (407,215,0): 146, 185, 216, (407,216,0): 145, 184, 215, (407,217,0): 145, 184, 215, (407,218,0): 144, 183, 216, (407,219,0): 143, 184, 216, (407,220,0): 142, 183, 215, (407,221,0): 142, 183, 215, (407,222,0): 141, 182, 214, (407,223,0): 141, 181, 216, (407,224,0): 145, 184, 223, (407,225,0): 146, 185, 226, (407,226,0): 146, 185, 228, (407,227,0): 147, 186, 229, (407,228,0): 147, 186, 229, (407,229,0): 148, 187, 230, (407,230,0): 148, 186, 231, (407,231,0): 148, 186, 231, (407,232,0): 150, 188, 235, (407,233,0): 150, 188, 235, (407,234,0): 150, 188, 235, (407,235,0): 150, 188, 235, (407,236,0): 150, 188, 237, (407,237,0): 150, 188, 237, (407,238,0): 150, 188, 237, (407,239,0): 151, 187, 237, (407,240,0): 153, 187, 235, (407,241,0): 152, 186, 234, (407,242,0): 150, 183, 234, (407,243,0): 148, 181, 232, (407,244,0): 147, 180, 233, (407,245,0): 146, 179, 232, (407,246,0): 144, 179, 233, (407,247,0): 145, 180, 234, (407,248,0): 147, 183, 241, (407,249,0): 147, 183, 241, (407,250,0): 144, 183, 242, (407,251,0): 144, 183, 242, (407,252,0): 143, 181, 243, (407,253,0): 142, 182, 243, (407,254,0): 141, 181, 243, (407,255,0): 141, 181, 243, (407,256,0): 141, 183, 243, (407,257,0): 140, 182, 242, (407,258,0): 138, 180, 240, (407,259,0): 136, 178, 238, (407,260,0): 135, 176, 238, (407,261,0): 135, 176, 238, (407,262,0): 136, 177, 241, (407,263,0): 137, 178, 242, (407,264,0): 138, 179, 243, (407,265,0): 138, 179, 243, (407,266,0): 139, 180, 246, (407,267,0): 141, 182, 248, (407,268,0): 142, 182, 251, (407,269,0): 144, 184, 253, (407,270,0): 145, 185, 254, (407,271,0): 146, 185, 254, (407,272,0): 147, 184, 254, (407,273,0): 150, 184, 255, (407,274,0): 152, 186, 255, (407,275,0): 153, 187, 255, (407,276,0): 154, 189, 255, (407,277,0): 155, 190, 255, (407,278,0): 155, 190, 255, (407,279,0): 155, 190, 255, (407,280,0): 150, 185, 251, (407,281,0): 152, 187, 253, (407,282,0): 155, 190, 254, (407,283,0): 157, 192, 255, (407,284,0): 159, 194, 255, (407,285,0): 159, 194, 255, (407,286,0): 158, 194, 255, (407,287,0): 158, 192, 255, (407,288,0): 162, 193, 255, (407,289,0): 164, 193, 255, (407,290,0): 165, 192, 255, (407,291,0): 166, 194, 255, (407,292,0): 167, 195, 255, (407,293,0): 168, 196, 255, (407,294,0): 168, 196, 255, (407,295,0): 169, 197, 255, (407,296,0): 169, 194, 255, (407,297,0): 170, 196, 255, (407,298,0): 170, 196, 255, (407,299,0): 170, 194, 255, (407,300,0): 169, 193, 255, (407,301,0): 167, 191, 251, (407,302,0): 167, 189, 249, (407,303,0): 168, 186, 248, (407,304,0): 173, 183, 245, (407,305,0): 173, 178, 236, (407,306,0): 160, 163, 208, (407,307,0): 136, 136, 172, (407,308,0): 122, 122, 148, (407,309,0): 127, 125, 149, (407,310,0): 137, 134, 163, (407,311,0): 142, 139, 170, (407,312,0): 136, 135, 169, (407,313,0): 132, 131, 163, (407,314,0): 132, 131, 162, (407,315,0): 135, 133, 157, (407,316,0): 131, 128, 149, (407,317,0): 126, 118, 139, (407,318,0): 131, 119, 141, (407,319,0): 139, 127, 147, (407,320,0): 142, 133, 152, (407,321,0): 144, 135, 152, (407,322,0): 150, 136, 151, (407,323,0): 156, 134, 147, (407,324,0): 158, 126, 137, (407,325,0): 155, 115, 123, (407,326,0): 153, 104, 110, (407,327,0): 151, 96, 101, (407,328,0): 136, 80, 81, (407,329,0): 122, 66, 65, (407,330,0): 103, 49, 49, (407,331,0): 88, 38, 37, (407,332,0): 79, 35, 34, (407,333,0): 73, 35, 34, (407,334,0): 66, 32, 30, (407,335,0): 61, 30, 28, (407,336,0): 60, 25, 29, (407,337,0): 60, 25, 29, (407,338,0): 60, 25, 29, (407,339,0): 59, 24, 28, (407,340,0): 59, 24, 28, (407,341,0): 57, 25, 28, (407,342,0): 57, 25, 28, (407,343,0): 56, 26, 28, (407,344,0): 57, 27, 29, (407,345,0): 57, 27, 29, (407,346,0): 55, 26, 28, (407,347,0): 54, 25, 27, (407,348,0): 53, 24, 26, (407,349,0): 52, 23, 25, (407,350,0): 51, 22, 24, (407,351,0): 49, 23, 26, (407,352,0): 46, 21, 27, (407,353,0): 46, 20, 29, (407,354,0): 46, 20, 29, (407,355,0): 46, 20, 29, (407,356,0): 46, 20, 29, (407,357,0): 46, 20, 29, (407,358,0): 46, 20, 29, (407,359,0): 46, 20, 29, (407,360,0): 47, 21, 30, (407,361,0): 47, 21, 30, (407,362,0): 47, 21, 30, (407,363,0): 46, 20, 29, (407,364,0): 46, 20, 29, (407,365,0): 45, 19, 28, (407,366,0): 45, 19, 28, (407,367,0): 43, 20, 26, (407,368,0): 41, 20, 25, (407,369,0): 41, 21, 23, (407,370,0): 42, 22, 24, (407,371,0): 43, 23, 25, (407,372,0): 42, 23, 27, (407,373,0): 43, 24, 28, (407,374,0): 44, 25, 31, (407,375,0): 44, 25, 31, (407,376,0): 42, 25, 31, (407,377,0): 41, 24, 30, (407,378,0): 38, 23, 30, (407,379,0): 37, 22, 29, (407,380,0): 36, 20, 30, (407,381,0): 35, 19, 29, (407,382,0): 34, 21, 30, (407,383,0): 34, 21, 28, (407,384,0): 39, 22, 30, (407,385,0): 39, 22, 28, (407,386,0): 39, 22, 28, (407,387,0): 39, 22, 28, (407,388,0): 38, 21, 27, (407,389,0): 38, 21, 27, (407,390,0): 38, 21, 27, (407,391,0): 38, 21, 27, (407,392,0): 36, 19, 25, (407,393,0): 37, 20, 26, (407,394,0): 39, 22, 28, (407,395,0): 40, 23, 29, (407,396,0): 41, 24, 30, (407,397,0): 40, 23, 29, (407,398,0): 38, 21, 27, (407,399,0): 37, 20, 26, (407,400,0): 39, 22, 28, (407,401,0): 41, 24, 30, (407,402,0): 43, 26, 32, (407,403,0): 44, 27, 33, (407,404,0): 44, 27, 35, (407,405,0): 43, 26, 34, (407,406,0): 40, 23, 31, (407,407,0): 39, 22, 30, (407,408,0): 37, 20, 30, (407,409,0): 38, 21, 31, (407,410,0): 40, 22, 34, (407,411,0): 41, 23, 35, (407,412,0): 42, 24, 36, (407,413,0): 41, 23, 35, (407,414,0): 41, 23, 37, (407,415,0): 40, 22, 34, (407,416,0): 36, 19, 29, (407,417,0): 36, 19, 27, (407,418,0): 36, 19, 27, (407,419,0): 36, 19, 27, (407,420,0): 36, 19, 27, (407,421,0): 36, 19, 27, (407,422,0): 36, 19, 27, (407,423,0): 36, 19, 27, (407,424,0): 33, 16, 24, (407,425,0): 33, 16, 24, (407,426,0): 33, 16, 24, (407,427,0): 34, 17, 25, (407,428,0): 34, 17, 25, (407,429,0): 35, 18, 26, (407,430,0): 35, 18, 26, (407,431,0): 35, 20, 27, (407,432,0): 39, 27, 31, (407,433,0): 38, 28, 29, (407,434,0): 40, 29, 33, (407,435,0): 44, 33, 37, (407,436,0): 47, 36, 40, (407,437,0): 45, 34, 38, (407,438,0): 40, 28, 32, (407,439,0): 34, 23, 27, (407,440,0): 36, 24, 28, (407,441,0): 35, 24, 28, (407,442,0): 36, 24, 28, (407,443,0): 36, 25, 29, (407,444,0): 36, 25, 29, (407,445,0): 37, 26, 30, (407,446,0): 38, 27, 33, (407,447,0): 38, 27, 31, (407,448,0): 44, 32, 34, (407,449,0): 45, 30, 33, (407,450,0): 45, 29, 30, (407,451,0): 44, 28, 29, (407,452,0): 46, 30, 31, (407,453,0): 48, 32, 33, (407,454,0): 51, 35, 35, (407,455,0): 52, 38, 37, (407,456,0): 61, 47, 44, (407,457,0): 64, 55, 50, (407,458,0): 67, 60, 54, (407,459,0): 64, 61, 54, (407,460,0): 63, 63, 53, (407,461,0): 72, 74, 63, (407,462,0): 90, 93, 82, (407,463,0): 102, 110, 97, (407,464,0): 117, 133, 120, (407,465,0): 131, 147, 134, (407,466,0): 144, 155, 141, (407,467,0): 142, 148, 134, (407,468,0): 133, 134, 118, (407,469,0): 123, 120, 103, (407,470,0): 113, 106, 88, (407,471,0): 104, 96, 77, (407,472,0): 103, 95, 76, (407,473,0): 104, 93, 75, (407,474,0): 105, 89, 73, (407,475,0): 105, 86, 71, (407,476,0): 107, 80, 69, (407,477,0): 102, 72, 62, (407,478,0): 96, 61, 55, (407,479,0): 88, 55, 48, (407,480,0): 77, 53, 43, (407,481,0): 75, 57, 43, (407,482,0): 77, 59, 45, (407,483,0): 75, 59, 44, (407,484,0): 75, 59, 44, (407,485,0): 76, 63, 47, (407,486,0): 82, 69, 53, (407,487,0): 87, 76, 58, (407,488,0): 83, 70, 53, (407,489,0): 87, 71, 55, (407,490,0): 88, 72, 56, (407,491,0): 90, 73, 55, (407,492,0): 89, 70, 53, (407,493,0): 86, 67, 50, (407,494,0): 84, 63, 46, (407,495,0): 79, 60, 45, (407,496,0): 71, 55, 40, (407,497,0): 66, 54, 40, (407,498,0): 63, 51, 39, (407,499,0): 59, 47, 35, (407,500,0): 56, 43, 34, (407,501,0): 53, 40, 31, (407,502,0): 52, 39, 31, (407,503,0): 51, 38, 30, (407,504,0): 56, 42, 39, (407,505,0): 54, 40, 37, (407,506,0): 52, 38, 37, (407,507,0): 49, 35, 34, (407,508,0): 48, 34, 34, (407,509,0): 47, 33, 33, (407,510,0): 46, 31, 34, (407,511,0): 47, 31, 34, (407,512,0): 48, 29, 31, (407,513,0): 46, 27, 29, (407,514,0): 46, 26, 28, (407,515,0): 45, 23, 26, (407,516,0): 46, 21, 25, (407,517,0): 45, 20, 24, (407,518,0): 47, 20, 25, (407,519,0): 47, 20, 25, (407,520,0): 49, 22, 27, (407,521,0): 49, 22, 27, (407,522,0): 48, 21, 26, (407,523,0): 47, 22, 26, (407,524,0): 44, 22, 25, (407,525,0): 42, 22, 24, (407,526,0): 41, 21, 23, (407,527,0): 40, 21, 23, (407,528,0): 46, 27, 29, (407,529,0): 45, 29, 30, (407,530,0): 45, 31, 31, (407,531,0): 44, 32, 32, (407,532,0): 43, 31, 31, (407,533,0): 41, 29, 29, (407,534,0): 42, 26, 27, (407,535,0): 44, 24, 26, (407,536,0): 45, 18, 23, (407,537,0): 47, 16, 22, (407,538,0): 47, 14, 21, (407,539,0): 47, 12, 19, (407,540,0): 45, 12, 19, (407,541,0): 45, 12, 19, (407,542,0): 45, 14, 20, (407,543,0): 44, 15, 20, (407,544,0): 49, 23, 26, (407,545,0): 47, 21, 24, (407,546,0): 46, 20, 23, (407,547,0): 49, 23, 26, (407,548,0): 53, 28, 31, (407,549,0): 55, 30, 33, (407,550,0): 54, 29, 32, (407,551,0): 50, 28, 30, (407,552,0): 55, 33, 35, (407,553,0): 55, 33, 35, (407,554,0): 54, 34, 35, (407,555,0): 54, 34, 35, (407,556,0): 53, 33, 34, (407,557,0): 52, 34, 34, (407,558,0): 52, 34, 34, (407,559,0): 52, 34, 32, (407,560,0): 60, 41, 37, (407,561,0): 58, 39, 35, (407,562,0): 56, 37, 33, (407,563,0): 58, 39, 35, (407,564,0): 61, 43, 41, (407,565,0): 63, 45, 43, (407,566,0): 63, 45, 45, (407,567,0): 62, 44, 44, (407,568,0): 53, 37, 38, (407,569,0): 49, 33, 34, (407,570,0): 42, 28, 28, (407,571,0): 39, 25, 25, (407,572,0): 39, 24, 27, (407,573,0): 39, 24, 27, (407,574,0): 36, 24, 26, (407,575,0): 34, 22, 22, (407,576,0): 44, 33, 31, (407,577,0): 50, 37, 31, (407,578,0): 57, 42, 37, (407,579,0): 66, 47, 41, (407,580,0): 71, 51, 44, (407,581,0): 75, 52, 44, (407,582,0): 76, 54, 43, (407,583,0): 74, 54, 43, (407,584,0): 83, 65, 53, (407,585,0): 88, 70, 58, (407,586,0): 94, 76, 66, (407,587,0): 98, 78, 69, (407,588,0): 102, 77, 73, (407,589,0): 104, 76, 73, (407,590,0): 109, 77, 78, (407,591,0): 111, 81, 81, (407,592,0): 105, 85, 84, (407,593,0): 102, 87, 84, (407,594,0): 102, 88, 85, (407,595,0): 99, 88, 84, (407,596,0): 96, 85, 81, (407,597,0): 91, 82, 77, (407,598,0): 86, 79, 73, (407,599,0): 84, 77, 71, (408,0,0): 78, 82, 65, (408,1,0): 77, 81, 64, (408,2,0): 77, 80, 63, (408,3,0): 75, 78, 61, (408,4,0): 73, 76, 59, (408,5,0): 71, 74, 57, (408,6,0): 71, 72, 56, (408,7,0): 70, 71, 55, (408,8,0): 74, 72, 57, (408,9,0): 74, 72, 57, (408,10,0): 74, 72, 57, (408,11,0): 74, 72, 57, (408,12,0): 75, 72, 57, (408,13,0): 75, 72, 57, (408,14,0): 75, 72, 57, (408,15,0): 75, 72, 57, (408,16,0): 81, 75, 63, (408,17,0): 82, 76, 62, (408,18,0): 84, 76, 63, (408,19,0): 86, 78, 65, (408,20,0): 88, 80, 67, (408,21,0): 90, 83, 67, (408,22,0): 92, 83, 68, (408,23,0): 93, 84, 67, (408,24,0): 95, 83, 67, (408,25,0): 95, 83, 67, (408,26,0): 95, 83, 67, (408,27,0): 95, 84, 66, (408,28,0): 95, 82, 65, (408,29,0): 95, 82, 65, (408,30,0): 95, 82, 65, (408,31,0): 95, 82, 65, (408,32,0): 92, 79, 62, (408,33,0): 93, 80, 63, (408,34,0): 93, 80, 63, (408,35,0): 94, 81, 64, (408,36,0): 97, 84, 65, (408,37,0): 100, 87, 68, (408,38,0): 101, 90, 68, (408,39,0): 103, 92, 70, (408,40,0): 101, 93, 70, (408,41,0): 102, 94, 71, (408,42,0): 104, 98, 72, (408,43,0): 107, 101, 75, (408,44,0): 109, 104, 75, (408,45,0): 110, 105, 76, (408,46,0): 111, 106, 77, (408,47,0): 112, 105, 77, (408,48,0): 113, 104, 75, (408,49,0): 114, 103, 75, (408,50,0): 114, 103, 75, (408,51,0): 116, 105, 77, (408,52,0): 117, 106, 78, (408,53,0): 120, 109, 81, (408,54,0): 123, 112, 84, (408,55,0): 124, 113, 85, (408,56,0): 126, 115, 87, (408,57,0): 125, 114, 86, (408,58,0): 124, 113, 85, (408,59,0): 123, 112, 84, (408,60,0): 122, 111, 83, (408,61,0): 120, 109, 81, (408,62,0): 119, 108, 80, (408,63,0): 119, 108, 80, (408,64,0): 117, 108, 77, (408,65,0): 114, 108, 76, (408,66,0): 113, 106, 77, (408,67,0): 114, 107, 78, (408,68,0): 114, 107, 78, (408,69,0): 110, 103, 74, (408,70,0): 104, 97, 69, (408,71,0): 99, 92, 64, (408,72,0): 98, 91, 65, (408,73,0): 91, 84, 58, (408,74,0): 83, 76, 50, (408,75,0): 77, 70, 44, (408,76,0): 75, 67, 44, (408,77,0): 75, 67, 44, (408,78,0): 74, 66, 43, (408,79,0): 73, 65, 44, (408,80,0): 73, 62, 44, (408,81,0): 72, 60, 44, (408,82,0): 70, 58, 42, (408,83,0): 67, 55, 39, (408,84,0): 65, 53, 37, (408,85,0): 62, 50, 34, (408,86,0): 60, 48, 32, (408,87,0): 59, 47, 31, (408,88,0): 57, 45, 29, (408,89,0): 57, 45, 29, (408,90,0): 57, 45, 29, (408,91,0): 57, 45, 29, (408,92,0): 57, 45, 29, (408,93,0): 57, 45, 29, (408,94,0): 57, 45, 29, (408,95,0): 57, 45, 29, (408,96,0): 56, 42, 31, (408,97,0): 56, 42, 31, (408,98,0): 56, 42, 31, (408,99,0): 56, 42, 31, (408,100,0): 56, 42, 31, (408,101,0): 56, 42, 31, (408,102,0): 56, 42, 31, (408,103,0): 56, 42, 31, (408,104,0): 55, 41, 30, (408,105,0): 55, 41, 30, (408,106,0): 55, 41, 30, (408,107,0): 55, 41, 30, (408,108,0): 55, 41, 30, (408,109,0): 55, 41, 30, (408,110,0): 55, 41, 30, (408,111,0): 55, 41, 30, (408,112,0): 54, 37, 27, (408,113,0): 54, 37, 27, (408,114,0): 55, 38, 28, (408,115,0): 55, 38, 28, (408,116,0): 56, 39, 29, (408,117,0): 56, 39, 29, (408,118,0): 57, 40, 30, (408,119,0): 57, 40, 30, (408,120,0): 59, 42, 32, (408,121,0): 59, 42, 32, (408,122,0): 59, 42, 32, (408,123,0): 59, 42, 32, (408,124,0): 59, 42, 32, (408,125,0): 59, 42, 32, (408,126,0): 59, 42, 32, (408,127,0): 59, 42, 32, (408,128,0): 59, 40, 34, (408,129,0): 59, 40, 34, (408,130,0): 58, 39, 33, (408,131,0): 58, 39, 33, (408,132,0): 58, 39, 33, (408,133,0): 60, 41, 35, (408,134,0): 61, 42, 36, (408,135,0): 62, 43, 37, (408,136,0): 70, 51, 45, (408,137,0): 72, 53, 47, (408,138,0): 74, 55, 49, (408,139,0): 76, 57, 51, (408,140,0): 78, 59, 53, (408,141,0): 79, 60, 54, (408,142,0): 79, 60, 54, (408,143,0): 79, 60, 54, (408,144,0): 83, 64, 58, (408,145,0): 84, 65, 59, (408,146,0): 85, 66, 60, (408,147,0): 86, 67, 61, (408,148,0): 86, 67, 61, (408,149,0): 86, 67, 61, (408,150,0): 85, 66, 60, (408,151,0): 84, 65, 59, (408,152,0): 88, 69, 63, (408,153,0): 88, 69, 63, (408,154,0): 88, 69, 63, (408,155,0): 88, 69, 63, (408,156,0): 88, 69, 63, (408,157,0): 88, 69, 63, (408,158,0): 88, 69, 63, (408,159,0): 88, 69, 63, (408,160,0): 94, 77, 69, (408,161,0): 95, 78, 68, (408,162,0): 97, 80, 70, (408,163,0): 99, 82, 72, (408,164,0): 102, 84, 74, (408,165,0): 105, 87, 77, (408,166,0): 107, 87, 78, (408,167,0): 108, 88, 79, (408,168,0): 106, 86, 77, (408,169,0): 103, 83, 74, (408,170,0): 100, 77, 69, (408,171,0): 96, 73, 65, (408,172,0): 96, 72, 62, (408,173,0): 99, 75, 65, (408,174,0): 103, 79, 69, (408,175,0): 106, 82, 72, (408,176,0): 104, 84, 73, (408,177,0): 105, 85, 74, (408,178,0): 108, 88, 77, (408,179,0): 111, 91, 80, (408,180,0): 115, 95, 86, (408,181,0): 119, 99, 90, (408,182,0): 124, 101, 93, (408,183,0): 125, 102, 94, (408,184,0): 125, 100, 95, (408,185,0): 123, 98, 93, (408,186,0): 122, 97, 92, (408,187,0): 120, 95, 90, (408,188,0): 122, 94, 91, (408,189,0): 124, 96, 93, (408,190,0): 125, 97, 94, (408,191,0): 125, 99, 100, (408,192,0): 130, 103, 110, (408,193,0): 136, 110, 119, (408,194,0): 149, 126, 136, (408,195,0): 167, 147, 158, (408,196,0): 184, 168, 179, (408,197,0): 192, 180, 192, (408,198,0): 190, 184, 198, (408,199,0): 182, 184, 197, (408,200,0): 178, 185, 201, (408,201,0): 177, 190, 207, (408,202,0): 172, 190, 210, (408,203,0): 162, 187, 207, (408,204,0): 161, 189, 210, (408,205,0): 162, 194, 215, (408,206,0): 159, 194, 216, (408,207,0): 152, 188, 212, (408,208,0): 159, 193, 220, (408,209,0): 159, 193, 220, (408,210,0): 157, 191, 218, (408,211,0): 156, 190, 217, (408,212,0): 154, 188, 215, (408,213,0): 152, 187, 215, (408,214,0): 151, 186, 214, (408,215,0): 149, 186, 215, (408,216,0): 148, 185, 214, (408,217,0): 146, 185, 214, (408,218,0): 146, 185, 216, (408,219,0): 145, 184, 215, (408,220,0): 144, 185, 217, (408,221,0): 143, 184, 216, (408,222,0): 143, 184, 216, (408,223,0): 143, 183, 218, (408,224,0): 145, 184, 223, (408,225,0): 146, 185, 226, (408,226,0): 146, 185, 228, (408,227,0): 147, 186, 229, (408,228,0): 147, 186, 229, (408,229,0): 148, 187, 230, (408,230,0): 148, 186, 231, (408,231,0): 148, 186, 231, (408,232,0): 145, 183, 230, (408,233,0): 145, 183, 230, (408,234,0): 146, 184, 231, (408,235,0): 146, 184, 231, (408,236,0): 147, 185, 234, (408,237,0): 148, 186, 235, (408,238,0): 149, 187, 236, (408,239,0): 150, 186, 236, (408,240,0): 152, 186, 234, (408,241,0): 150, 184, 232, (408,242,0): 148, 181, 232, (408,243,0): 145, 181, 231, (408,244,0): 144, 180, 232, (408,245,0): 145, 181, 233, (408,246,0): 146, 181, 235, (408,247,0): 147, 182, 236, (408,248,0): 145, 181, 239, (408,249,0): 145, 181, 239, (408,250,0): 144, 180, 240, (408,251,0): 142, 181, 240, (408,252,0): 142, 180, 242, (408,253,0): 142, 180, 242, (408,254,0): 141, 179, 242, (408,255,0): 140, 180, 242, (408,256,0): 140, 182, 242, (408,257,0): 140, 182, 242, (408,258,0): 140, 182, 242, (408,259,0): 140, 182, 242, (408,260,0): 140, 181, 243, (408,261,0): 140, 181, 243, (408,262,0): 140, 181, 245, (408,263,0): 140, 181, 245, (408,264,0): 141, 182, 246, (408,265,0): 141, 182, 246, (408,266,0): 142, 183, 249, (408,267,0): 144, 185, 251, (408,268,0): 146, 186, 255, (408,269,0): 147, 187, 255, (408,270,0): 148, 188, 255, (408,271,0): 150, 189, 255, (408,272,0): 151, 188, 255, (408,273,0): 153, 187, 255, (408,274,0): 154, 189, 255, (408,275,0): 154, 189, 255, (408,276,0): 155, 190, 255, (408,277,0): 155, 190, 255, (408,278,0): 156, 191, 255, (408,279,0): 156, 191, 255, (408,280,0): 155, 190, 255, (408,281,0): 155, 190, 254, (408,282,0): 155, 190, 254, (408,283,0): 156, 191, 255, (408,284,0): 156, 192, 254, (408,285,0): 157, 193, 255, (408,286,0): 157, 193, 255, (408,287,0): 159, 193, 255, (408,288,0): 163, 194, 255, (408,289,0): 164, 194, 255, (408,290,0): 164, 194, 255, (408,291,0): 164, 194, 255, (408,292,0): 166, 194, 255, (408,293,0): 168, 196, 255, (408,294,0): 172, 197, 255, (408,295,0): 173, 198, 255, (408,296,0): 168, 192, 255, (408,297,0): 170, 194, 255, (408,298,0): 173, 197, 255, (408,299,0): 176, 198, 255, (408,300,0): 175, 197, 255, (408,301,0): 172, 194, 254, (408,302,0): 171, 191, 252, (408,303,0): 171, 190, 249, (408,304,0): 175, 185, 247, (408,305,0): 175, 180, 238, (408,306,0): 159, 162, 207, (408,307,0): 133, 133, 169, (408,308,0): 120, 120, 148, (408,309,0): 130, 127, 154, (408,310,0): 141, 138, 169, (408,311,0): 144, 140, 173, (408,312,0): 141, 139, 176, (408,313,0): 137, 136, 170, (408,314,0): 130, 129, 161, (408,315,0): 126, 123, 150, (408,316,0): 125, 122, 143, (408,317,0): 131, 123, 144, (408,318,0): 140, 128, 148, (408,319,0): 144, 132, 152, (408,320,0): 144, 137, 155, (408,321,0): 154, 145, 164, (408,322,0): 160, 146, 163, (408,323,0): 159, 137, 150, (408,324,0): 156, 124, 137, (408,325,0): 155, 113, 123, (408,326,0): 153, 103, 112, (408,327,0): 149, 94, 100, (408,328,0): 138, 82, 85, (408,329,0): 118, 64, 64, (408,330,0): 97, 45, 47, (408,331,0): 84, 38, 38, (408,332,0): 76, 35, 33, (408,333,0): 65, 30, 28, (408,334,0): 59, 28, 26, (408,335,0): 59, 27, 28, (408,336,0): 60, 25, 29, (408,337,0): 60, 25, 31, (408,338,0): 57, 25, 30, (408,339,0): 57, 25, 30, (408,340,0): 56, 24, 29, (408,341,0): 56, 24, 29, (408,342,0): 55, 23, 28, (408,343,0): 54, 23, 28, (408,344,0): 58, 27, 32, (408,345,0): 56, 27, 31, (408,346,0): 55, 26, 30, (408,347,0): 54, 25, 29, (408,348,0): 50, 24, 27, (408,349,0): 49, 23, 26, (408,350,0): 48, 22, 25, (408,351,0): 48, 21, 26, (408,352,0): 46, 21, 27, (408,353,0): 44, 21, 29, (408,354,0): 44, 21, 29, (408,355,0): 44, 21, 29, (408,356,0): 44, 21, 29, (408,357,0): 44, 21, 29, (408,358,0): 44, 21, 29, (408,359,0): 44, 21, 29, (408,360,0): 46, 23, 31, (408,361,0): 46, 23, 31, (408,362,0): 45, 22, 30, (408,363,0): 44, 21, 29, (408,364,0): 43, 20, 28, (408,365,0): 43, 20, 28, (408,366,0): 42, 19, 27, (408,367,0): 42, 19, 25, (408,368,0): 40, 19, 24, (408,369,0): 41, 21, 23, (408,370,0): 41, 21, 23, (408,371,0): 41, 21, 23, (408,372,0): 41, 22, 26, (408,373,0): 41, 22, 26, (408,374,0): 42, 23, 29, (408,375,0): 42, 23, 29, (408,376,0): 40, 23, 29, (408,377,0): 40, 23, 29, (408,378,0): 39, 24, 31, (408,379,0): 39, 24, 31, (408,380,0): 39, 23, 33, (408,381,0): 39, 23, 33, (408,382,0): 37, 24, 33, (408,383,0): 37, 24, 31, (408,384,0): 35, 18, 26, (408,385,0): 36, 19, 25, (408,386,0): 37, 20, 26, (408,387,0): 38, 21, 27, (408,388,0): 40, 23, 29, (408,389,0): 41, 24, 30, (408,390,0): 42, 25, 31, (408,391,0): 42, 25, 31, (408,392,0): 40, 23, 29, (408,393,0): 40, 23, 29, (408,394,0): 39, 22, 28, (408,395,0): 39, 22, 28, (408,396,0): 38, 21, 27, (408,397,0): 38, 21, 27, (408,398,0): 37, 20, 26, (408,399,0): 37, 20, 26, (408,400,0): 40, 23, 29, (408,401,0): 40, 23, 29, (408,402,0): 40, 23, 29, (408,403,0): 40, 23, 29, (408,404,0): 40, 23, 31, (408,405,0): 40, 23, 31, (408,406,0): 40, 23, 31, (408,407,0): 40, 23, 31, (408,408,0): 40, 23, 33, (408,409,0): 39, 22, 32, (408,410,0): 39, 21, 33, (408,411,0): 38, 20, 32, (408,412,0): 37, 19, 31, (408,413,0): 36, 18, 30, (408,414,0): 35, 17, 31, (408,415,0): 34, 16, 28, (408,416,0): 32, 15, 25, (408,417,0): 33, 16, 26, (408,418,0): 33, 16, 26, (408,419,0): 34, 17, 27, (408,420,0): 34, 17, 27, (408,421,0): 35, 18, 28, (408,422,0): 35, 18, 28, (408,423,0): 35, 18, 28, (408,424,0): 37, 20, 30, (408,425,0): 36, 19, 29, (408,426,0): 33, 16, 26, (408,427,0): 32, 15, 25, (408,428,0): 32, 15, 25, (408,429,0): 35, 18, 28, (408,430,0): 38, 21, 31, (408,431,0): 39, 24, 31, (408,432,0): 38, 25, 32, (408,433,0): 37, 26, 30, (408,434,0): 38, 27, 33, (408,435,0): 42, 31, 35, (408,436,0): 46, 35, 39, (408,437,0): 44, 35, 38, (408,438,0): 40, 29, 33, (408,439,0): 34, 25, 28, (408,440,0): 32, 21, 25, (408,441,0): 31, 22, 25, (408,442,0): 32, 21, 25, (408,443,0): 32, 21, 25, (408,444,0): 33, 22, 26, (408,445,0): 34, 24, 25, (408,446,0): 36, 25, 29, (408,447,0): 36, 26, 27, (408,448,0): 40, 28, 30, (408,449,0): 41, 29, 31, (408,450,0): 43, 29, 29, (408,451,0): 42, 28, 28, (408,452,0): 43, 27, 28, (408,453,0): 45, 29, 30, (408,454,0): 51, 35, 35, (408,455,0): 54, 40, 39, (408,456,0): 62, 48, 45, (408,457,0): 62, 53, 48, (408,458,0): 64, 57, 51, (408,459,0): 66, 61, 55, (408,460,0): 70, 67, 58, (408,461,0): 75, 77, 66, (408,462,0): 86, 88, 77, (408,463,0): 90, 96, 86, (408,464,0): 109, 122, 112, (408,465,0): 128, 141, 131, (408,466,0): 147, 157, 146, (408,467,0): 150, 156, 144, (408,468,0): 143, 144, 130, (408,469,0): 132, 126, 112, (408,470,0): 118, 109, 92, (408,471,0): 107, 96, 78, (408,472,0): 107, 94, 75, (408,473,0): 97, 82, 61, (408,474,0): 102, 84, 64, (408,475,0): 114, 91, 73, (408,476,0): 115, 86, 70, (408,477,0): 115, 79, 65, (408,478,0): 116, 74, 62, (408,479,0): 103, 65, 54, (408,480,0): 80, 57, 43, (408,481,0): 77, 61, 45, (408,482,0): 78, 62, 46, (408,483,0): 74, 61, 44, (408,484,0): 72, 61, 43, (408,485,0): 73, 65, 46, (408,486,0): 79, 71, 52, (408,487,0): 85, 77, 56, (408,488,0): 91, 80, 60, (408,489,0): 88, 77, 57, (408,490,0): 85, 72, 53, (408,491,0): 85, 70, 49, (408,492,0): 87, 70, 50, (408,493,0): 86, 68, 48, (408,494,0): 84, 63, 44, (408,495,0): 78, 59, 42, (408,496,0): 75, 59, 44, (408,497,0): 69, 55, 42, (408,498,0): 64, 50, 39, (408,499,0): 61, 47, 36, (408,500,0): 59, 45, 36, (408,501,0): 58, 44, 35, (408,502,0): 55, 40, 33, (408,503,0): 52, 37, 30, (408,504,0): 49, 34, 31, (408,505,0): 49, 34, 31, (408,506,0): 50, 34, 34, (408,507,0): 50, 34, 34, (408,508,0): 49, 33, 34, (408,509,0): 46, 30, 31, (408,510,0): 44, 28, 31, (408,511,0): 42, 26, 29, (408,512,0): 48, 29, 31, (408,513,0): 49, 29, 31, (408,514,0): 49, 27, 30, (408,515,0): 47, 25, 28, (408,516,0): 48, 23, 27, (408,517,0): 48, 21, 26, (408,518,0): 49, 20, 25, (408,519,0): 48, 19, 24, (408,520,0): 48, 19, 24, (408,521,0): 46, 19, 24, (408,522,0): 47, 20, 25, (408,523,0): 47, 22, 26, (408,524,0): 45, 23, 26, (408,525,0): 44, 24, 26, (408,526,0): 43, 23, 25, (408,527,0): 42, 23, 25, (408,528,0): 45, 26, 28, (408,529,0): 45, 29, 30, (408,530,0): 45, 31, 31, (408,531,0): 42, 30, 30, (408,532,0): 40, 28, 28, (408,533,0): 40, 28, 28, (408,534,0): 45, 29, 30, (408,535,0): 51, 31, 33, (408,536,0): 53, 26, 31, (408,537,0): 51, 20, 26, (408,538,0): 47, 14, 21, (408,539,0): 46, 11, 18, (408,540,0): 47, 12, 19, (408,541,0): 47, 14, 21, (408,542,0): 46, 15, 21, (408,543,0): 45, 16, 21, (408,544,0): 48, 19, 23, (408,545,0): 48, 19, 21, (408,546,0): 47, 21, 22, (408,547,0): 48, 22, 23, (408,548,0): 50, 24, 25, (408,549,0): 52, 28, 28, (408,550,0): 54, 30, 30, (408,551,0): 56, 32, 32, (408,552,0): 55, 34, 33, (408,553,0): 54, 33, 32, (408,554,0): 52, 31, 30, (408,555,0): 50, 30, 29, (408,556,0): 50, 30, 29, (408,557,0): 52, 32, 31, (408,558,0): 54, 34, 33, (408,559,0): 55, 35, 34, (408,560,0): 61, 42, 38, (408,561,0): 63, 44, 40, (408,562,0): 65, 46, 42, (408,563,0): 65, 46, 42, (408,564,0): 62, 44, 42, (408,565,0): 62, 44, 42, (408,566,0): 64, 46, 44, (408,567,0): 66, 48, 46, (408,568,0): 59, 43, 43, (408,569,0): 55, 39, 39, (408,570,0): 48, 34, 33, (408,571,0): 44, 30, 29, (408,572,0): 42, 28, 28, (408,573,0): 43, 29, 29, (408,574,0): 43, 31, 31, (408,575,0): 44, 33, 31, (408,576,0): 48, 37, 33, (408,577,0): 56, 43, 35, (408,578,0): 64, 49, 42, (408,579,0): 73, 54, 47, (408,580,0): 80, 57, 49, (408,581,0): 85, 61, 51, (408,582,0): 90, 66, 56, (408,583,0): 93, 71, 58, (408,584,0): 94, 74, 63, (408,585,0): 100, 80, 69, (408,586,0): 107, 87, 78, (408,587,0): 110, 90, 81, (408,588,0): 112, 87, 83, (408,589,0): 114, 84, 82, (408,590,0): 115, 83, 84, (408,591,0): 115, 85, 85, (408,592,0): 106, 86, 85, (408,593,0): 103, 87, 87, (408,594,0): 102, 88, 87, (408,595,0): 99, 88, 86, (408,596,0): 96, 85, 83, (408,597,0): 92, 82, 80, (408,598,0): 87, 79, 76, (408,599,0): 85, 77, 74, (409,0,0): 78, 82, 65, (409,1,0): 77, 81, 64, (409,2,0): 77, 80, 63, (409,3,0): 75, 78, 61, (409,4,0): 73, 76, 59, (409,5,0): 72, 75, 58, (409,6,0): 71, 72, 56, (409,7,0): 71, 72, 56, (409,8,0): 74, 72, 57, (409,9,0): 74, 72, 57, (409,10,0): 74, 72, 57, (409,11,0): 74, 72, 57, (409,12,0): 75, 72, 57, (409,13,0): 75, 72, 57, (409,14,0): 75, 72, 57, (409,15,0): 75, 72, 57, (409,16,0): 81, 75, 63, (409,17,0): 81, 75, 63, (409,18,0): 84, 76, 63, (409,19,0): 85, 77, 64, (409,20,0): 87, 79, 66, (409,21,0): 89, 81, 68, (409,22,0): 91, 82, 67, (409,23,0): 92, 83, 68, (409,24,0): 95, 83, 69, (409,25,0): 95, 83, 67, (409,26,0): 94, 82, 66, (409,27,0): 94, 82, 66, (409,28,0): 95, 82, 65, (409,29,0): 95, 82, 65, (409,30,0): 95, 82, 65, (409,31,0): 95, 82, 65, (409,32,0): 92, 79, 62, (409,33,0): 92, 79, 62, (409,34,0): 93, 80, 63, (409,35,0): 94, 81, 64, (409,36,0): 96, 83, 64, (409,37,0): 98, 85, 66, (409,38,0): 100, 89, 67, (409,39,0): 101, 90, 68, (409,40,0): 100, 92, 69, (409,41,0): 102, 94, 71, (409,42,0): 104, 98, 72, (409,43,0): 106, 100, 74, (409,44,0): 109, 104, 75, (409,45,0): 110, 105, 76, (409,46,0): 110, 105, 76, (409,47,0): 111, 104, 76, (409,48,0): 113, 104, 75, (409,49,0): 114, 103, 75, (409,50,0): 114, 103, 75, (409,51,0): 115, 104, 76, (409,52,0): 117, 106, 78, (409,53,0): 119, 108, 80, (409,54,0): 121, 110, 82, (409,55,0): 123, 112, 84, (409,56,0): 124, 113, 85, (409,57,0): 124, 113, 85, (409,58,0): 123, 112, 84, (409,59,0): 122, 111, 83, (409,60,0): 121, 110, 82, (409,61,0): 121, 110, 82, (409,62,0): 120, 109, 81, (409,63,0): 119, 110, 81, (409,64,0): 115, 109, 77, (409,65,0): 114, 108, 76, (409,66,0): 113, 106, 77, (409,67,0): 114, 107, 78, (409,68,0): 114, 107, 78, (409,69,0): 110, 103, 74, (409,70,0): 105, 98, 70, (409,71,0): 100, 93, 65, (409,72,0): 98, 91, 65, (409,73,0): 92, 85, 59, (409,74,0): 84, 77, 51, (409,75,0): 78, 71, 45, (409,76,0): 76, 68, 45, (409,77,0): 76, 68, 45, (409,78,0): 75, 67, 44, (409,79,0): 73, 65, 44, (409,80,0): 72, 61, 43, (409,81,0): 71, 59, 43, (409,82,0): 69, 57, 41, (409,83,0): 67, 55, 39, (409,84,0): 64, 52, 36, (409,85,0): 61, 49, 33, (409,86,0): 59, 47, 31, (409,87,0): 58, 46, 30, (409,88,0): 56, 44, 28, (409,89,0): 56, 44, 28, (409,90,0): 56, 44, 28, (409,91,0): 56, 44, 28, (409,92,0): 56, 44, 28, (409,93,0): 56, 44, 28, (409,94,0): 56, 44, 28, (409,95,0): 56, 44, 28, (409,96,0): 56, 42, 31, (409,97,0): 56, 42, 31, (409,98,0): 56, 42, 31, (409,99,0): 56, 42, 31, (409,100,0): 56, 42, 31, (409,101,0): 56, 42, 31, (409,102,0): 56, 42, 31, (409,103,0): 56, 42, 31, (409,104,0): 54, 40, 29, (409,105,0): 54, 40, 29, (409,106,0): 54, 40, 29, (409,107,0): 54, 40, 29, (409,108,0): 54, 40, 29, (409,109,0): 54, 40, 29, (409,110,0): 54, 40, 29, (409,111,0): 54, 40, 29, (409,112,0): 54, 37, 27, (409,113,0): 55, 38, 28, (409,114,0): 55, 38, 28, (409,115,0): 56, 39, 29, (409,116,0): 56, 39, 29, (409,117,0): 57, 40, 30, (409,118,0): 57, 40, 30, (409,119,0): 57, 40, 30, (409,120,0): 59, 42, 32, (409,121,0): 59, 42, 32, (409,122,0): 59, 42, 32, (409,123,0): 59, 42, 32, (409,124,0): 59, 42, 32, (409,125,0): 59, 42, 32, (409,126,0): 59, 42, 32, (409,127,0): 59, 42, 32, (409,128,0): 59, 40, 33, (409,129,0): 59, 40, 34, (409,130,0): 58, 39, 33, (409,131,0): 58, 39, 33, (409,132,0): 58, 39, 33, (409,133,0): 60, 41, 35, (409,134,0): 61, 42, 36, (409,135,0): 62, 43, 37, (409,136,0): 67, 48, 42, (409,137,0): 68, 49, 43, (409,138,0): 70, 51, 45, (409,139,0): 73, 54, 48, (409,140,0): 74, 55, 49, (409,141,0): 75, 56, 50, (409,142,0): 75, 56, 50, (409,143,0): 75, 56, 50, (409,144,0): 78, 59, 53, (409,145,0): 79, 60, 54, (409,146,0): 82, 63, 57, (409,147,0): 84, 65, 59, (409,148,0): 86, 67, 61, (409,149,0): 87, 68, 62, (409,150,0): 88, 69, 63, (409,151,0): 87, 68, 62, (409,152,0): 89, 70, 64, (409,153,0): 89, 70, 64, (409,154,0): 89, 70, 64, (409,155,0): 89, 70, 64, (409,156,0): 89, 70, 64, (409,157,0): 89, 70, 64, (409,158,0): 89, 70, 64, (409,159,0): 89, 70, 64, (409,160,0): 93, 76, 68, (409,161,0): 94, 77, 69, (409,162,0): 96, 79, 71, (409,163,0): 98, 81, 71, (409,164,0): 101, 83, 73, (409,165,0): 103, 85, 75, (409,166,0): 106, 86, 77, (409,167,0): 107, 87, 78, (409,168,0): 105, 85, 76, (409,169,0): 102, 82, 73, (409,170,0): 100, 77, 69, (409,171,0): 97, 75, 64, (409,172,0): 97, 73, 63, (409,173,0): 98, 74, 64, (409,174,0): 101, 77, 67, (409,175,0): 102, 80, 69, (409,176,0): 101, 81, 70, (409,177,0): 102, 84, 72, (409,178,0): 105, 85, 76, (409,179,0): 109, 89, 80, (409,180,0): 112, 92, 83, (409,181,0): 116, 96, 87, (409,182,0): 120, 97, 89, (409,183,0): 122, 99, 91, (409,184,0): 122, 97, 92, (409,185,0): 121, 96, 91, (409,186,0): 120, 95, 90, (409,187,0): 119, 94, 89, (409,188,0): 121, 93, 90, (409,189,0): 122, 94, 91, (409,190,0): 123, 95, 92, (409,191,0): 124, 96, 95, (409,192,0): 126, 97, 102, (409,193,0): 131, 101, 109, (409,194,0): 141, 114, 121, (409,195,0): 157, 131, 140, (409,196,0): 173, 152, 161, (409,197,0): 188, 171, 181, (409,198,0): 196, 184, 194, (409,199,0): 198, 192, 204, (409,200,0): 187, 186, 200, (409,201,0): 184, 192, 205, (409,202,0): 179, 191, 207, (409,203,0): 169, 186, 202, (409,204,0): 165, 188, 206, (409,205,0): 166, 193, 212, (409,206,0): 164, 192, 213, (409,207,0): 158, 189, 210, (409,208,0): 162, 192, 216, (409,209,0): 162, 192, 216, (409,210,0): 161, 191, 215, (409,211,0): 158, 190, 215, (409,212,0): 156, 188, 213, (409,213,0): 153, 187, 214, (409,214,0): 152, 186, 213, (409,215,0): 150, 185, 213, (409,216,0): 149, 184, 212, (409,217,0): 148, 185, 214, (409,218,0): 147, 183, 215, (409,219,0): 145, 184, 215, (409,220,0): 144, 183, 216, (409,221,0): 143, 184, 216, (409,222,0): 142, 183, 215, (409,223,0): 142, 182, 217, (409,224,0): 145, 184, 223, (409,225,0): 145, 184, 225, (409,226,0): 145, 184, 227, (409,227,0): 146, 185, 228, (409,228,0): 146, 185, 228, (409,229,0): 147, 186, 229, (409,230,0): 147, 185, 230, (409,231,0): 147, 185, 230, (409,232,0): 144, 182, 229, (409,233,0): 144, 182, 229, (409,234,0): 145, 183, 230, (409,235,0): 146, 184, 231, (409,236,0): 146, 184, 233, (409,237,0): 147, 185, 234, (409,238,0): 148, 186, 235, (409,239,0): 148, 186, 235, (409,240,0): 149, 185, 233, (409,241,0): 147, 183, 231, (409,242,0): 146, 182, 232, (409,243,0): 144, 180, 230, (409,244,0): 144, 180, 232, (409,245,0): 144, 180, 232, (409,246,0): 145, 180, 234, (409,247,0): 146, 181, 235, (409,248,0): 144, 180, 238, (409,249,0): 144, 180, 238, (409,250,0): 144, 180, 240, (409,251,0): 144, 180, 240, (409,252,0): 142, 180, 242, (409,253,0): 142, 180, 242, (409,254,0): 142, 180, 243, (409,255,0): 142, 180, 243, (409,256,0): 141, 181, 242, (409,257,0): 140, 182, 242, (409,258,0): 140, 182, 242, (409,259,0): 140, 182, 242, (409,260,0): 140, 181, 243, (409,261,0): 140, 181, 243, (409,262,0): 140, 181, 245, (409,263,0): 140, 181, 245, (409,264,0): 141, 182, 246, (409,265,0): 142, 183, 247, (409,266,0): 143, 184, 250, (409,267,0): 144, 185, 251, (409,268,0): 146, 186, 255, (409,269,0): 148, 188, 255, (409,270,0): 149, 189, 255, (409,271,0): 150, 189, 255, (409,272,0): 151, 188, 255, (409,273,0): 154, 188, 255, (409,274,0): 154, 189, 255, (409,275,0): 155, 190, 255, (409,276,0): 155, 190, 255, (409,277,0): 156, 191, 255, (409,278,0): 156, 191, 255, (409,279,0): 156, 191, 255, (409,280,0): 155, 190, 254, (409,281,0): 155, 190, 254, (409,282,0): 156, 191, 255, (409,283,0): 156, 192, 254, (409,284,0): 157, 193, 255, (409,285,0): 157, 193, 255, (409,286,0): 157, 193, 255, (409,287,0): 159, 193, 255, (409,288,0): 163, 194, 255, (409,289,0): 163, 193, 255, (409,290,0): 163, 193, 255, (409,291,0): 163, 193, 255, (409,292,0): 165, 193, 255, (409,293,0): 167, 195, 255, (409,294,0): 171, 196, 255, (409,295,0): 172, 198, 255, (409,296,0): 172, 196, 255, (409,297,0): 173, 197, 255, (409,298,0): 176, 198, 255, (409,299,0): 176, 198, 255, (409,300,0): 177, 197, 255, (409,301,0): 175, 195, 255, (409,302,0): 173, 193, 252, (409,303,0): 175, 191, 251, (409,304,0): 174, 184, 246, (409,305,0): 168, 173, 231, (409,306,0): 151, 154, 199, (409,307,0): 133, 133, 169, (409,308,0): 124, 124, 152, (409,309,0): 132, 129, 156, (409,310,0): 143, 140, 171, (409,311,0): 149, 145, 180, (409,312,0): 147, 145, 184, (409,313,0): 141, 139, 176, (409,314,0): 132, 131, 163, (409,315,0): 128, 125, 154, (409,316,0): 128, 124, 147, (409,317,0): 133, 125, 146, (409,318,0): 140, 128, 148, (409,319,0): 142, 130, 150, (409,320,0): 146, 137, 158, (409,321,0): 151, 142, 161, (409,322,0): 157, 140, 158, (409,323,0): 154, 130, 146, (409,324,0): 153, 119, 133, (409,325,0): 154, 112, 124, (409,326,0): 152, 102, 111, (409,327,0): 146, 93, 101, (409,328,0): 129, 74, 79, (409,329,0): 109, 57, 59, (409,330,0): 90, 41, 44, (409,331,0): 79, 35, 36, (409,332,0): 70, 32, 31, (409,333,0): 61, 27, 26, (409,334,0): 56, 24, 25, (409,335,0): 57, 27, 29, (409,336,0): 57, 25, 30, (409,337,0): 57, 25, 30, (409,338,0): 57, 24, 31, (409,339,0): 55, 24, 29, (409,340,0): 56, 23, 30, (409,341,0): 54, 23, 28, (409,342,0): 54, 23, 29, (409,343,0): 53, 24, 28, (409,344,0): 56, 27, 32, (409,345,0): 53, 27, 30, (409,346,0): 54, 25, 30, (409,347,0): 51, 25, 28, (409,348,0): 50, 23, 28, (409,349,0): 48, 23, 26, (409,350,0): 48, 21, 26, (409,351,0): 46, 21, 25, (409,352,0): 43, 20, 28, (409,353,0): 43, 20, 28, (409,354,0): 43, 20, 28, (409,355,0): 43, 20, 28, (409,356,0): 43, 20, 28, (409,357,0): 43, 20, 28, (409,358,0): 43, 20, 28, (409,359,0): 43, 20, 28, (409,360,0): 45, 22, 30, (409,361,0): 44, 21, 29, (409,362,0): 44, 21, 29, (409,363,0): 44, 21, 29, (409,364,0): 44, 21, 29, (409,365,0): 43, 20, 28, (409,366,0): 43, 20, 28, (409,367,0): 43, 20, 28, (409,368,0): 41, 20, 25, (409,369,0): 41, 21, 23, (409,370,0): 42, 22, 24, (409,371,0): 42, 22, 24, (409,372,0): 42, 23, 27, (409,373,0): 42, 23, 27, (409,374,0): 43, 24, 30, (409,375,0): 43, 24, 30, (409,376,0): 41, 24, 30, (409,377,0): 41, 24, 30, (409,378,0): 40, 25, 32, (409,379,0): 40, 25, 32, (409,380,0): 40, 24, 34, (409,381,0): 40, 24, 34, (409,382,0): 38, 25, 34, (409,383,0): 38, 25, 32, (409,384,0): 37, 20, 28, (409,385,0): 37, 20, 26, (409,386,0): 38, 21, 27, (409,387,0): 39, 22, 28, (409,388,0): 40, 23, 29, (409,389,0): 42, 25, 31, (409,390,0): 43, 26, 32, (409,391,0): 43, 26, 32, (409,392,0): 40, 23, 29, (409,393,0): 40, 23, 29, (409,394,0): 40, 23, 29, (409,395,0): 39, 22, 28, (409,396,0): 39, 22, 28, (409,397,0): 38, 21, 27, (409,398,0): 38, 21, 27, (409,399,0): 37, 20, 26, (409,400,0): 39, 22, 28, (409,401,0): 39, 22, 28, (409,402,0): 39, 22, 28, (409,403,0): 40, 23, 29, (409,404,0): 40, 23, 31, (409,405,0): 41, 24, 32, (409,406,0): 41, 24, 32, (409,407,0): 41, 24, 32, (409,408,0): 40, 23, 33, (409,409,0): 40, 23, 33, (409,410,0): 39, 21, 33, (409,411,0): 38, 20, 32, (409,412,0): 37, 19, 31, (409,413,0): 36, 18, 30, (409,414,0): 35, 17, 31, (409,415,0): 35, 17, 31, (409,416,0): 32, 14, 26, (409,417,0): 33, 16, 26, (409,418,0): 33, 16, 26, (409,419,0): 33, 16, 26, (409,420,0): 34, 17, 27, (409,421,0): 34, 17, 27, (409,422,0): 35, 18, 28, (409,423,0): 35, 18, 28, (409,424,0): 37, 20, 30, (409,425,0): 35, 18, 28, (409,426,0): 33, 16, 26, (409,427,0): 32, 15, 25, (409,428,0): 32, 15, 25, (409,429,0): 35, 18, 28, (409,430,0): 38, 21, 31, (409,431,0): 39, 23, 33, (409,432,0): 38, 25, 34, (409,433,0): 37, 26, 32, (409,434,0): 38, 27, 33, (409,435,0): 41, 30, 36, (409,436,0): 43, 34, 39, (409,437,0): 42, 33, 36, (409,438,0): 37, 28, 31, (409,439,0): 31, 25, 27, (409,440,0): 34, 25, 28, (409,441,0): 34, 25, 28, (409,442,0): 34, 25, 28, (409,443,0): 35, 26, 27, (409,444,0): 37, 27, 28, (409,445,0): 38, 28, 29, (409,446,0): 39, 29, 30, (409,447,0): 40, 30, 31, (409,448,0): 45, 33, 35, (409,449,0): 45, 33, 35, (409,450,0): 47, 33, 33, (409,451,0): 44, 30, 30, (409,452,0): 44, 28, 29, (409,453,0): 46, 30, 31, (409,454,0): 51, 35, 35, (409,455,0): 55, 41, 40, (409,456,0): 64, 50, 47, (409,457,0): 64, 53, 49, (409,458,0): 67, 58, 53, (409,459,0): 67, 62, 56, (409,460,0): 69, 66, 57, (409,461,0): 74, 74, 64, (409,462,0): 81, 81, 71, (409,463,0): 85, 88, 79, (409,464,0): 101, 111, 102, (409,465,0): 119, 130, 122, (409,466,0): 140, 147, 139, (409,467,0): 145, 148, 137, (409,468,0): 140, 138, 126, (409,469,0): 131, 125, 111, (409,470,0): 118, 109, 94, (409,471,0): 109, 96, 79, (409,472,0): 108, 93, 74, (409,473,0): 98, 81, 61, (409,474,0): 105, 87, 65, (409,475,0): 119, 97, 74, (409,476,0): 122, 91, 70, (409,477,0): 121, 84, 65, (409,478,0): 122, 76, 60, (409,479,0): 109, 67, 51, (409,480,0): 82, 56, 39, (409,481,0): 77, 60, 42, (409,482,0): 76, 61, 42, (409,483,0): 75, 62, 43, (409,484,0): 76, 65, 45, (409,485,0): 77, 69, 48, (409,486,0): 82, 74, 53, (409,487,0): 85, 79, 57, (409,488,0): 91, 83, 62, (409,489,0): 87, 79, 58, (409,490,0): 86, 74, 52, (409,491,0): 86, 71, 50, (409,492,0): 87, 70, 50, (409,493,0): 86, 68, 48, (409,494,0): 86, 63, 45, (409,495,0): 82, 61, 44, (409,496,0): 76, 58, 44, (409,497,0): 71, 55, 42, (409,498,0): 66, 49, 39, (409,499,0): 62, 45, 35, (409,500,0): 61, 44, 36, (409,501,0): 59, 42, 34, (409,502,0): 56, 39, 32, (409,503,0): 53, 36, 29, (409,504,0): 51, 33, 31, (409,505,0): 51, 33, 31, (409,506,0): 52, 34, 34, (409,507,0): 51, 33, 33, (409,508,0): 50, 31, 33, (409,509,0): 47, 28, 30, (409,510,0): 45, 26, 30, (409,511,0): 43, 24, 28, (409,512,0): 47, 27, 29, (409,513,0): 48, 26, 29, (409,514,0): 47, 25, 28, (409,515,0): 48, 23, 27, (409,516,0): 47, 20, 25, (409,517,0): 48, 19, 24, (409,518,0): 47, 18, 23, (409,519,0): 47, 18, 23, (409,520,0): 49, 18, 24, (409,521,0): 48, 19, 24, (409,522,0): 49, 20, 25, (409,523,0): 47, 20, 25, (409,524,0): 46, 21, 25, (409,525,0): 44, 22, 25, (409,526,0): 44, 22, 25, (409,527,0): 43, 23, 25, (409,528,0): 46, 26, 28, (409,529,0): 48, 29, 31, (409,530,0): 47, 31, 32, (409,531,0): 46, 32, 32, (409,532,0): 43, 29, 29, (409,533,0): 42, 28, 28, (409,534,0): 46, 27, 29, (409,535,0): 49, 29, 31, (409,536,0): 52, 25, 30, (409,537,0): 51, 20, 26, (409,538,0): 48, 15, 22, (409,539,0): 49, 14, 21, (409,540,0): 50, 15, 22, (409,541,0): 50, 17, 24, (409,542,0): 48, 17, 23, (409,543,0): 46, 17, 21, (409,544,0): 48, 19, 23, (409,545,0): 48, 19, 21, (409,546,0): 47, 21, 22, (409,547,0): 48, 22, 23, (409,548,0): 50, 24, 25, (409,549,0): 53, 27, 28, (409,550,0): 56, 30, 31, (409,551,0): 57, 33, 33, (409,552,0): 58, 34, 34, (409,553,0): 55, 34, 33, (409,554,0): 53, 32, 31, (409,555,0): 52, 31, 30, (409,556,0): 51, 31, 30, (409,557,0): 52, 32, 31, (409,558,0): 53, 33, 32, (409,559,0): 54, 34, 33, (409,560,0): 62, 43, 39, (409,561,0): 64, 45, 41, (409,562,0): 66, 47, 43, (409,563,0): 65, 46, 42, (409,564,0): 62, 44, 42, (409,565,0): 61, 43, 41, (409,566,0): 63, 45, 43, (409,567,0): 65, 47, 45, (409,568,0): 60, 44, 44, (409,569,0): 57, 41, 41, (409,570,0): 51, 37, 36, (409,571,0): 46, 32, 31, (409,572,0): 45, 31, 30, (409,573,0): 45, 31, 30, (409,574,0): 45, 34, 32, (409,575,0): 47, 36, 34, (409,576,0): 50, 39, 33, (409,577,0): 58, 45, 36, (409,578,0): 68, 51, 43, (409,579,0): 75, 57, 47, (409,580,0): 85, 61, 51, (409,581,0): 92, 65, 56, (409,582,0): 99, 72, 61, (409,583,0): 102, 78, 66, (409,584,0): 102, 80, 69, (409,585,0): 104, 84, 73, (409,586,0): 109, 89, 80, (409,587,0): 112, 89, 83, (409,588,0): 112, 87, 83, (409,589,0): 112, 84, 83, (409,590,0): 114, 82, 83, (409,591,0): 113, 84, 86, (409,592,0): 107, 87, 88, (409,593,0): 103, 87, 87, (409,594,0): 101, 87, 86, (409,595,0): 98, 87, 85, (409,596,0): 95, 84, 82, (409,597,0): 91, 81, 79, (409,598,0): 88, 80, 77, (409,599,0): 87, 79, 76, (410,0,0): 78, 82, 67, (410,1,0): 77, 81, 66, (410,2,0): 76, 80, 65, (410,3,0): 75, 79, 64, (410,4,0): 73, 77, 62, (410,5,0): 71, 75, 60, (410,6,0): 71, 73, 59, (410,7,0): 71, 73, 59, (410,8,0): 72, 73, 59, (410,9,0): 72, 73, 59, (410,10,0): 74, 72, 59, (410,11,0): 74, 72, 59, (410,12,0): 74, 72, 59, (410,13,0): 74, 72, 59, (410,14,0): 74, 72, 59, (410,15,0): 74, 72, 59, (410,16,0): 79, 75, 63, (410,17,0): 79, 75, 63, (410,18,0): 82, 76, 64, (410,19,0): 84, 78, 66, (410,20,0): 85, 79, 65, (410,21,0): 87, 81, 67, (410,22,0): 89, 81, 68, (410,23,0): 90, 83, 67, (410,24,0): 92, 83, 68, (410,25,0): 92, 83, 68, (410,26,0): 92, 83, 66, (410,27,0): 92, 83, 66, (410,28,0): 94, 82, 66, (410,29,0): 94, 82, 66, (410,30,0): 94, 83, 65, (410,31,0): 94, 83, 65, (410,32,0): 92, 79, 62, (410,33,0): 92, 79, 62, (410,34,0): 92, 79, 62, (410,35,0): 93, 80, 63, (410,36,0): 94, 81, 62, (410,37,0): 97, 84, 65, (410,38,0): 98, 87, 65, (410,39,0): 99, 88, 66, (410,40,0): 100, 92, 69, (410,41,0): 102, 94, 71, (410,42,0): 103, 97, 71, (410,43,0): 106, 100, 74, (410,44,0): 108, 103, 74, (410,45,0): 109, 104, 75, (410,46,0): 110, 105, 76, (410,47,0): 111, 104, 76, (410,48,0): 112, 102, 75, (410,49,0): 112, 102, 75, (410,50,0): 112, 102, 75, (410,51,0): 113, 103, 76, (410,52,0): 114, 104, 77, (410,53,0): 117, 107, 80, (410,54,0): 119, 109, 82, (410,55,0): 120, 110, 83, (410,56,0): 121, 111, 84, (410,57,0): 121, 111, 84, (410,58,0): 120, 110, 83, (410,59,0): 120, 110, 83, (410,60,0): 120, 110, 83, (410,61,0): 120, 110, 83, (410,62,0): 120, 110, 83, (410,63,0): 119, 110, 81, (410,64,0): 115, 109, 77, (410,65,0): 113, 108, 76, (410,66,0): 111, 106, 76, (410,67,0): 112, 107, 77, (410,68,0): 112, 107, 77, (410,69,0): 110, 105, 75, (410,70,0): 104, 99, 70, (410,71,0): 100, 95, 66, (410,72,0): 98, 92, 66, (410,73,0): 92, 86, 60, (410,74,0): 84, 78, 52, (410,75,0): 79, 73, 47, (410,76,0): 77, 71, 47, (410,77,0): 76, 70, 46, (410,78,0): 74, 68, 44, (410,79,0): 73, 65, 44, (410,80,0): 72, 61, 43, (410,81,0): 71, 59, 43, (410,82,0): 69, 57, 41, (410,83,0): 66, 54, 38, (410,84,0): 63, 51, 35, (410,85,0): 61, 49, 33, (410,86,0): 59, 47, 31, (410,87,0): 58, 46, 30, (410,88,0): 55, 43, 27, (410,89,0): 55, 43, 27, (410,90,0): 55, 43, 27, (410,91,0): 55, 43, 27, (410,92,0): 55, 43, 27, (410,93,0): 55, 43, 27, (410,94,0): 55, 43, 27, (410,95,0): 55, 43, 27, (410,96,0): 56, 42, 31, (410,97,0): 56, 42, 31, (410,98,0): 56, 42, 31, (410,99,0): 56, 42, 31, (410,100,0): 56, 42, 31, (410,101,0): 56, 42, 31, (410,102,0): 56, 42, 31, (410,103,0): 56, 42, 31, (410,104,0): 53, 39, 28, (410,105,0): 53, 39, 28, (410,106,0): 53, 39, 28, (410,107,0): 53, 39, 28, (410,108,0): 53, 39, 28, (410,109,0): 53, 39, 28, (410,110,0): 53, 39, 28, (410,111,0): 53, 39, 28, (410,112,0): 55, 39, 26, (410,113,0): 55, 39, 26, (410,114,0): 55, 39, 26, (410,115,0): 56, 40, 27, (410,116,0): 56, 40, 27, (410,117,0): 57, 41, 28, (410,118,0): 57, 41, 28, (410,119,0): 58, 42, 29, (410,120,0): 59, 43, 30, (410,121,0): 59, 43, 30, (410,122,0): 59, 43, 30, (410,123,0): 59, 43, 30, (410,124,0): 59, 43, 30, (410,125,0): 59, 43, 30, (410,126,0): 59, 43, 30, (410,127,0): 59, 42, 32, (410,128,0): 59, 40, 33, (410,129,0): 59, 40, 34, (410,130,0): 58, 39, 33, (410,131,0): 58, 39, 33, (410,132,0): 58, 39, 33, (410,133,0): 60, 41, 35, (410,134,0): 61, 42, 36, (410,135,0): 62, 43, 37, (410,136,0): 63, 44, 38, (410,137,0): 64, 45, 39, (410,138,0): 66, 47, 41, (410,139,0): 69, 50, 44, (410,140,0): 70, 51, 45, (410,141,0): 71, 52, 46, (410,142,0): 71, 52, 46, (410,143,0): 71, 52, 46, (410,144,0): 72, 53, 47, (410,145,0): 75, 56, 50, (410,146,0): 78, 59, 53, (410,147,0): 82, 63, 57, (410,148,0): 86, 67, 61, (410,149,0): 89, 70, 64, (410,150,0): 90, 71, 65, (410,151,0): 91, 72, 66, (410,152,0): 91, 72, 66, (410,153,0): 91, 72, 66, (410,154,0): 91, 72, 66, (410,155,0): 91, 72, 66, (410,156,0): 91, 72, 66, (410,157,0): 91, 72, 66, (410,158,0): 91, 72, 66, (410,159,0): 91, 72, 66, (410,160,0): 92, 75, 68, (410,161,0): 90, 76, 67, (410,162,0): 94, 77, 69, (410,163,0): 96, 79, 71, (410,164,0): 98, 81, 73, (410,165,0): 100, 83, 75, (410,166,0): 103, 85, 75, (410,167,0): 103, 85, 75, (410,168,0): 102, 82, 71, (410,169,0): 100, 80, 69, (410,170,0): 98, 78, 67, (410,171,0): 96, 76, 65, (410,172,0): 96, 74, 63, (410,173,0): 96, 74, 61, (410,174,0): 96, 74, 61, (410,175,0): 97, 75, 64, (410,176,0): 98, 78, 69, (410,177,0): 98, 80, 70, (410,178,0): 101, 82, 75, (410,179,0): 104, 85, 78, (410,180,0): 108, 88, 81, (410,181,0): 111, 91, 84, (410,182,0): 113, 93, 86, (410,183,0): 114, 94, 87, (410,184,0): 117, 94, 88, (410,185,0): 116, 93, 87, (410,186,0): 115, 92, 86, (410,187,0): 114, 91, 85, (410,188,0): 115, 90, 85, (410,189,0): 116, 91, 86, (410,190,0): 117, 92, 87, (410,191,0): 120, 92, 89, (410,192,0): 119, 88, 93, (410,193,0): 122, 91, 97, (410,194,0): 129, 98, 104, (410,195,0): 139, 109, 117, (410,196,0): 154, 129, 135, (410,197,0): 174, 153, 160, (410,198,0): 195, 178, 186, (410,199,0): 206, 195, 203, (410,200,0): 195, 189, 199, (410,201,0): 195, 195, 205, (410,202,0): 191, 195, 207, (410,203,0): 180, 189, 204, (410,204,0): 172, 188, 204, (410,205,0): 170, 191, 208, (410,206,0): 170, 193, 211, (410,207,0): 165, 190, 210, (410,208,0): 166, 193, 214, (410,209,0): 164, 192, 214, (410,210,0): 163, 191, 213, (410,211,0): 160, 190, 214, (410,212,0): 158, 188, 212, (410,213,0): 155, 187, 212, (410,214,0): 154, 186, 211, (410,215,0): 152, 186, 213, (410,216,0): 148, 183, 211, (410,217,0): 147, 184, 211, (410,218,0): 146, 183, 212, (410,219,0): 144, 183, 212, (410,220,0): 143, 182, 213, (410,221,0): 143, 182, 213, (410,222,0): 142, 183, 215, (410,223,0): 141, 181, 216, (410,224,0): 144, 183, 222, (410,225,0): 144, 183, 224, (410,226,0): 144, 183, 226, (410,227,0): 145, 184, 227, (410,228,0): 145, 184, 227, (410,229,0): 146, 185, 228, (410,230,0): 146, 184, 229, (410,231,0): 146, 184, 229, (410,232,0): 144, 182, 229, (410,233,0): 144, 182, 229, (410,234,0): 144, 182, 229, (410,235,0): 145, 183, 230, (410,236,0): 145, 183, 232, (410,237,0): 146, 184, 233, (410,238,0): 146, 184, 233, (410,239,0): 146, 184, 233, (410,240,0): 146, 184, 231, (410,241,0): 145, 183, 230, (410,242,0): 144, 182, 231, (410,243,0): 143, 181, 230, (410,244,0): 142, 179, 231, (410,245,0): 142, 179, 231, (410,246,0): 143, 180, 233, (410,247,0): 143, 180, 233, (410,248,0): 144, 180, 238, (410,249,0): 144, 180, 238, (410,250,0): 144, 180, 240, (410,251,0): 144, 180, 240, (410,252,0): 144, 180, 242, (410,253,0): 144, 180, 242, (410,254,0): 144, 179, 243, (410,255,0): 142, 180, 243, (410,256,0): 142, 182, 243, (410,257,0): 141, 183, 243, (410,258,0): 141, 183, 243, (410,259,0): 141, 183, 243, (410,260,0): 141, 182, 244, (410,261,0): 141, 182, 244, (410,262,0): 141, 182, 246, (410,263,0): 141, 182, 246, (410,264,0): 142, 183, 247, (410,265,0): 142, 183, 247, (410,266,0): 144, 185, 251, (410,267,0): 145, 186, 252, (410,268,0): 147, 187, 255, (410,269,0): 148, 188, 255, (410,270,0): 149, 189, 255, (410,271,0): 151, 190, 255, (410,272,0): 152, 189, 255, (410,273,0): 154, 189, 255, (410,274,0): 154, 189, 255, (410,275,0): 155, 190, 255, (410,276,0): 155, 190, 255, (410,277,0): 156, 191, 255, (410,278,0): 156, 191, 255, (410,279,0): 157, 192, 255, (410,280,0): 155, 190, 254, (410,281,0): 156, 191, 255, (410,282,0): 156, 192, 254, (410,283,0): 156, 192, 254, (410,284,0): 157, 193, 255, (410,285,0): 158, 194, 254, (410,286,0): 158, 194, 254, (410,287,0): 159, 193, 254, (410,288,0): 162, 193, 255, (410,289,0): 161, 192, 255, (410,290,0): 162, 192, 254, (410,291,0): 162, 192, 254, (410,292,0): 164, 192, 255, (410,293,0): 166, 194, 255, (410,294,0): 170, 196, 255, (410,295,0): 171, 197, 255, (410,296,0): 176, 200, 255, (410,297,0): 177, 199, 255, (410,298,0): 178, 198, 255, (410,299,0): 178, 198, 255, (410,300,0): 179, 198, 255, (410,301,0): 179, 198, 255, (410,302,0): 178, 197, 255, (410,303,0): 180, 194, 255, (410,304,0): 176, 184, 247, (410,305,0): 160, 165, 223, (410,306,0): 142, 145, 190, (410,307,0): 133, 133, 169, (410,308,0): 130, 129, 160, (410,309,0): 135, 132, 161, (410,310,0): 145, 141, 174, (410,311,0): 156, 152, 189, (410,312,0): 154, 152, 192, (410,313,0): 146, 144, 183, (410,314,0): 135, 134, 168, (410,315,0): 132, 129, 158, (410,316,0): 133, 129, 152, (410,317,0): 139, 131, 152, (410,318,0): 142, 130, 150, (410,319,0): 142, 129, 149, (410,320,0): 148, 136, 156, (410,321,0): 152, 139, 157, (410,322,0): 156, 135, 154, (410,323,0): 153, 124, 142, (410,324,0): 153, 117, 131, (410,325,0): 153, 109, 122, (410,326,0): 148, 98, 109, (410,327,0): 138, 87, 94, (410,328,0): 114, 63, 68, (410,329,0): 97, 48, 51, (410,330,0): 80, 35, 38, (410,331,0): 71, 31, 32, (410,332,0): 65, 29, 31, (410,333,0): 56, 24, 27, (410,334,0): 53, 22, 27, (410,335,0): 55, 24, 30, (410,336,0): 55, 24, 30, (410,337,0): 55, 24, 30, (410,338,0): 55, 24, 32, (410,339,0): 53, 24, 29, (410,340,0): 54, 23, 31, (410,341,0): 52, 23, 28, (410,342,0): 52, 22, 30, (410,343,0): 49, 22, 27, (410,344,0): 52, 25, 32, (410,345,0): 51, 26, 30, (410,346,0): 51, 24, 31, (410,347,0): 49, 24, 28, (410,348,0): 48, 23, 29, (410,349,0): 45, 23, 26, (410,350,0): 46, 21, 27, (410,351,0): 44, 21, 27, (410,352,0): 42, 19, 27, (410,353,0): 41, 20, 29, (410,354,0): 41, 20, 29, (410,355,0): 41, 20, 29, (410,356,0): 41, 20, 29, (410,357,0): 41, 20, 29, (410,358,0): 41, 20, 29, (410,359,0): 41, 20, 29, (410,360,0): 41, 20, 29, (410,361,0): 42, 21, 30, (410,362,0): 42, 21, 30, (410,363,0): 42, 21, 30, (410,364,0): 42, 21, 30, (410,365,0): 43, 22, 31, (410,366,0): 43, 22, 31, (410,367,0): 43, 22, 29, (410,368,0): 42, 21, 26, (410,369,0): 42, 22, 24, (410,370,0): 43, 23, 25, (410,371,0): 43, 23, 25, (410,372,0): 43, 24, 28, (410,373,0): 43, 24, 28, (410,374,0): 44, 25, 31, (410,375,0): 44, 25, 31, (410,376,0): 43, 26, 32, (410,377,0): 43, 26, 32, (410,378,0): 42, 27, 34, (410,379,0): 42, 27, 34, (410,380,0): 42, 26, 36, (410,381,0): 42, 26, 36, (410,382,0): 40, 27, 36, (410,383,0): 40, 27, 34, (410,384,0): 39, 22, 30, (410,385,0): 39, 22, 28, (410,386,0): 40, 23, 29, (410,387,0): 41, 24, 30, (410,388,0): 42, 25, 31, (410,389,0): 43, 26, 32, (410,390,0): 43, 26, 32, (410,391,0): 44, 27, 33, (410,392,0): 41, 24, 30, (410,393,0): 40, 23, 29, (410,394,0): 40, 23, 29, (410,395,0): 39, 22, 28, (410,396,0): 39, 22, 28, (410,397,0): 38, 21, 27, (410,398,0): 38, 21, 27, (410,399,0): 38, 21, 27, (410,400,0): 38, 21, 27, (410,401,0): 38, 21, 27, (410,402,0): 39, 22, 28, (410,403,0): 40, 23, 29, (410,404,0): 40, 23, 31, (410,405,0): 41, 24, 32, (410,406,0): 42, 25, 33, (410,407,0): 42, 25, 33, (410,408,0): 41, 24, 34, (410,409,0): 41, 24, 34, (410,410,0): 40, 22, 34, (410,411,0): 39, 21, 33, (410,412,0): 38, 20, 32, (410,413,0): 37, 19, 31, (410,414,0): 36, 18, 32, (410,415,0): 36, 18, 32, (410,416,0): 32, 14, 26, (410,417,0): 32, 14, 26, (410,418,0): 32, 14, 26, (410,419,0): 33, 15, 27, (410,420,0): 34, 16, 28, (410,421,0): 34, 16, 28, (410,422,0): 34, 16, 28, (410,423,0): 35, 17, 29, (410,424,0): 36, 18, 30, (410,425,0): 35, 17, 29, (410,426,0): 33, 15, 27, (410,427,0): 32, 14, 26, (410,428,0): 33, 15, 27, (410,429,0): 35, 17, 29, (410,430,0): 37, 19, 31, (410,431,0): 38, 22, 32, (410,432,0): 38, 25, 34, (410,433,0): 37, 24, 33, (410,434,0): 37, 26, 34, (410,435,0): 39, 28, 34, (410,436,0): 39, 30, 35, (410,437,0): 36, 30, 34, (410,438,0): 33, 27, 29, (410,439,0): 29, 25, 26, (410,440,0): 35, 29, 31, (410,441,0): 35, 29, 31, (410,442,0): 36, 30, 30, (410,443,0): 40, 31, 32, (410,444,0): 42, 32, 33, (410,445,0): 43, 33, 32, (410,446,0): 44, 32, 32, (410,447,0): 45, 33, 33, (410,448,0): 48, 38, 39, (410,449,0): 48, 38, 39, (410,450,0): 47, 35, 35, (410,451,0): 44, 32, 32, (410,452,0): 44, 30, 30, (410,453,0): 46, 32, 32, (410,454,0): 51, 37, 36, (410,455,0): 56, 42, 41, (410,456,0): 65, 51, 48, (410,457,0): 67, 56, 52, (410,458,0): 70, 61, 56, (410,459,0): 72, 65, 59, (410,460,0): 72, 68, 59, (410,461,0): 72, 72, 62, (410,462,0): 77, 77, 67, (410,463,0): 79, 80, 72, (410,464,0): 92, 97, 90, (410,465,0): 109, 116, 109, (410,466,0): 127, 132, 125, (410,467,0): 134, 135, 127, (410,468,0): 133, 130, 121, (410,469,0): 128, 122, 110, (410,470,0): 120, 108, 94, (410,471,0): 109, 96, 79, (410,472,0): 106, 91, 72, (410,473,0): 97, 81, 58, (410,474,0): 106, 88, 64, (410,475,0): 122, 100, 76, (410,476,0): 128, 98, 74, (410,477,0): 128, 92, 68, (410,478,0): 129, 84, 61, (410,479,0): 117, 74, 55, (410,480,0): 90, 59, 39, (410,481,0): 82, 59, 41, (410,482,0): 80, 59, 40, (410,483,0): 79, 62, 42, (410,484,0): 83, 68, 47, (410,485,0): 86, 74, 52, (410,486,0): 86, 78, 55, (410,487,0): 88, 80, 57, (410,488,0): 93, 85, 62, (410,489,0): 89, 81, 58, (410,490,0): 87, 75, 53, (410,491,0): 86, 71, 50, (410,492,0): 86, 69, 49, (410,493,0): 86, 68, 48, (410,494,0): 88, 65, 47, (410,495,0): 85, 64, 47, (410,496,0): 78, 59, 45, (410,497,0): 73, 55, 43, (410,498,0): 67, 49, 39, (410,499,0): 64, 46, 36, (410,500,0): 62, 43, 36, (410,501,0): 60, 41, 34, (410,502,0): 57, 38, 32, (410,503,0): 54, 35, 29, (410,504,0): 52, 32, 31, (410,505,0): 52, 32, 31, (410,506,0): 52, 32, 33, (410,507,0): 51, 31, 32, (410,508,0): 49, 29, 31, (410,509,0): 47, 27, 29, (410,510,0): 45, 24, 29, (410,511,0): 44, 23, 28, (410,512,0): 46, 24, 27, (410,513,0): 45, 23, 26, (410,514,0): 46, 21, 25, (410,515,0): 46, 19, 24, (410,516,0): 45, 18, 23, (410,517,0): 46, 17, 22, (410,518,0): 47, 16, 22, (410,519,0): 46, 15, 21, (410,520,0): 51, 18, 25, (410,521,0): 50, 19, 25, (410,522,0): 48, 19, 24, (410,523,0): 46, 19, 24, (410,524,0): 46, 19, 24, (410,525,0): 45, 20, 24, (410,526,0): 43, 21, 24, (410,527,0): 43, 21, 24, (410,528,0): 47, 25, 28, (410,529,0): 51, 29, 32, (410,530,0): 51, 32, 34, (410,531,0): 49, 33, 34, (410,532,0): 46, 30, 31, (410,533,0): 43, 27, 28, (410,534,0): 44, 25, 27, (410,535,0): 47, 25, 28, (410,536,0): 52, 23, 28, (410,537,0): 51, 20, 26, (410,538,0): 50, 17, 24, (410,539,0): 52, 17, 24, (410,540,0): 52, 19, 26, (410,541,0): 52, 21, 27, (410,542,0): 50, 21, 26, (410,543,0): 46, 20, 23, (410,544,0): 49, 20, 24, (410,545,0): 49, 20, 22, (410,546,0): 50, 21, 23, (410,547,0): 51, 22, 24, (410,548,0): 53, 24, 26, (410,549,0): 54, 28, 29, (410,550,0): 57, 31, 32, (410,551,0): 57, 33, 33, (410,552,0): 60, 36, 36, (410,553,0): 59, 35, 35, (410,554,0): 55, 34, 33, (410,555,0): 54, 33, 32, (410,556,0): 53, 32, 31, (410,557,0): 53, 32, 31, (410,558,0): 53, 32, 31, (410,559,0): 53, 32, 31, (410,560,0): 62, 42, 41, (410,561,0): 64, 44, 43, (410,562,0): 66, 46, 45, (410,563,0): 65, 45, 44, (410,564,0): 61, 43, 41, (410,565,0): 60, 42, 40, (410,566,0): 61, 43, 41, (410,567,0): 63, 45, 43, (410,568,0): 62, 47, 44, (410,569,0): 60, 45, 42, (410,570,0): 55, 41, 38, (410,571,0): 51, 37, 34, (410,572,0): 49, 35, 32, (410,573,0): 49, 35, 32, (410,574,0): 50, 39, 35, (410,575,0): 52, 41, 37, (410,576,0): 56, 43, 35, (410,577,0): 62, 48, 39, (410,578,0): 72, 53, 46, (410,579,0): 80, 60, 51, (410,580,0): 91, 64, 55, (410,581,0): 99, 70, 62, (410,582,0): 107, 78, 70, (410,583,0): 113, 84, 76, (410,584,0): 109, 85, 75, (410,585,0): 110, 88, 77, (410,586,0): 110, 90, 81, (410,587,0): 109, 89, 82, (410,588,0): 110, 86, 84, (410,589,0): 110, 84, 85, (410,590,0): 113, 84, 86, (410,591,0): 112, 86, 89, (410,592,0): 108, 88, 89, (410,593,0): 103, 87, 88, (410,594,0): 100, 86, 86, (410,595,0): 96, 84, 84, (410,596,0): 94, 82, 82, (410,597,0): 91, 81, 80, (410,598,0): 89, 81, 79, (410,599,0): 89, 81, 79, (411,0,0): 77, 81, 66, (411,1,0): 77, 81, 66, (411,2,0): 76, 80, 65, (411,3,0): 75, 79, 64, (411,4,0): 74, 78, 63, (411,5,0): 72, 76, 61, (411,6,0): 72, 74, 60, (411,7,0): 72, 74, 60, (411,8,0): 72, 73, 59, (411,9,0): 72, 73, 59, (411,10,0): 74, 72, 59, (411,11,0): 74, 72, 59, (411,12,0): 74, 72, 59, (411,13,0): 74, 72, 59, (411,14,0): 74, 72, 59, (411,15,0): 74, 72, 59, (411,16,0): 78, 74, 62, (411,17,0): 79, 75, 63, (411,18,0): 82, 76, 64, (411,19,0): 83, 77, 65, (411,20,0): 84, 78, 64, (411,21,0): 85, 79, 65, (411,22,0): 87, 79, 66, (411,23,0): 88, 80, 67, (411,24,0): 90, 81, 66, (411,25,0): 90, 81, 66, (411,26,0): 91, 82, 65, (411,27,0): 91, 82, 65, (411,28,0): 93, 81, 65, (411,29,0): 94, 82, 66, (411,30,0): 94, 83, 65, (411,31,0): 94, 83, 65, (411,32,0): 93, 80, 63, (411,33,0): 93, 80, 63, (411,34,0): 92, 79, 62, (411,35,0): 92, 79, 62, (411,36,0): 93, 80, 61, (411,37,0): 95, 82, 63, (411,38,0): 96, 85, 63, (411,39,0): 97, 86, 64, (411,40,0): 99, 91, 68, (411,41,0): 101, 93, 70, (411,42,0): 103, 97, 71, (411,43,0): 105, 99, 73, (411,44,0): 108, 103, 74, (411,45,0): 109, 104, 75, (411,46,0): 109, 104, 75, (411,47,0): 110, 105, 76, (411,48,0): 112, 102, 75, (411,49,0): 112, 102, 75, (411,50,0): 112, 102, 75, (411,51,0): 112, 102, 75, (411,52,0): 114, 104, 77, (411,53,0): 115, 105, 78, (411,54,0): 117, 107, 80, (411,55,0): 119, 109, 82, (411,56,0): 118, 108, 81, (411,57,0): 119, 109, 82, (411,58,0): 119, 109, 82, (411,59,0): 119, 109, 82, (411,60,0): 119, 109, 82, (411,61,0): 119, 109, 82, (411,62,0): 120, 110, 83, (411,63,0): 118, 111, 82, (411,64,0): 115, 108, 79, (411,65,0): 112, 107, 75, (411,66,0): 111, 106, 76, (411,67,0): 111, 106, 76, (411,68,0): 111, 106, 76, (411,69,0): 110, 105, 75, (411,70,0): 105, 100, 71, (411,71,0): 101, 96, 67, (411,72,0): 100, 94, 68, (411,73,0): 94, 88, 62, (411,74,0): 87, 81, 55, (411,75,0): 81, 75, 49, (411,76,0): 79, 73, 49, (411,77,0): 77, 71, 47, (411,78,0): 75, 69, 45, (411,79,0): 72, 66, 44, (411,80,0): 71, 60, 42, (411,81,0): 70, 58, 42, (411,82,0): 68, 56, 40, (411,83,0): 66, 54, 38, (411,84,0): 63, 51, 35, (411,85,0): 60, 48, 32, (411,86,0): 59, 47, 31, (411,87,0): 57, 45, 29, (411,88,0): 54, 42, 26, (411,89,0): 54, 42, 26, (411,90,0): 54, 42, 26, (411,91,0): 54, 42, 26, (411,92,0): 54, 42, 26, (411,93,0): 54, 42, 26, (411,94,0): 54, 42, 26, (411,95,0): 54, 42, 26, (411,96,0): 55, 41, 30, (411,97,0): 55, 41, 30, (411,98,0): 55, 41, 30, (411,99,0): 55, 41, 30, (411,100,0): 55, 41, 30, (411,101,0): 55, 41, 30, (411,102,0): 55, 41, 30, (411,103,0): 55, 41, 30, (411,104,0): 52, 38, 27, (411,105,0): 52, 38, 27, (411,106,0): 52, 38, 27, (411,107,0): 52, 38, 27, (411,108,0): 52, 38, 27, (411,109,0): 52, 38, 27, (411,110,0): 52, 38, 27, (411,111,0): 52, 38, 27, (411,112,0): 55, 39, 26, (411,113,0): 56, 40, 27, (411,114,0): 56, 40, 27, (411,115,0): 56, 40, 27, (411,116,0): 57, 41, 28, (411,117,0): 58, 42, 29, (411,118,0): 58, 42, 29, (411,119,0): 58, 42, 29, (411,120,0): 59, 43, 30, (411,121,0): 59, 43, 30, (411,122,0): 59, 43, 30, (411,123,0): 59, 43, 30, (411,124,0): 59, 43, 30, (411,125,0): 59, 43, 30, (411,126,0): 59, 43, 30, (411,127,0): 59, 42, 32, (411,128,0): 59, 40, 33, (411,129,0): 59, 40, 34, (411,130,0): 58, 39, 33, (411,131,0): 58, 39, 33, (411,132,0): 58, 39, 33, (411,133,0): 60, 41, 35, (411,134,0): 61, 42, 36, (411,135,0): 62, 43, 37, (411,136,0): 61, 42, 36, (411,137,0): 63, 44, 38, (411,138,0): 65, 46, 40, (411,139,0): 67, 48, 42, (411,140,0): 69, 50, 44, (411,141,0): 70, 51, 45, (411,142,0): 70, 51, 45, (411,143,0): 70, 51, 45, (411,144,0): 71, 52, 46, (411,145,0): 73, 54, 48, (411,146,0): 77, 58, 52, (411,147,0): 81, 62, 56, (411,148,0): 85, 66, 60, (411,149,0): 88, 69, 63, (411,150,0): 90, 71, 65, (411,151,0): 91, 72, 66, (411,152,0): 92, 73, 67, (411,153,0): 92, 73, 67, (411,154,0): 92, 73, 67, (411,155,0): 92, 73, 67, (411,156,0): 92, 73, 67, (411,157,0): 92, 73, 67, (411,158,0): 92, 73, 67, (411,159,0): 91, 74, 67, (411,160,0): 91, 74, 67, (411,161,0): 89, 74, 67, (411,162,0): 93, 76, 69, (411,163,0): 94, 77, 69, (411,164,0): 96, 79, 71, (411,165,0): 98, 81, 73, (411,166,0): 100, 82, 72, (411,167,0): 101, 83, 73, (411,168,0): 99, 79, 68, (411,169,0): 99, 79, 68, (411,170,0): 98, 78, 67, (411,171,0): 97, 78, 64, (411,172,0): 97, 75, 62, (411,173,0): 95, 73, 60, (411,174,0): 94, 72, 59, (411,175,0): 93, 71, 60, (411,176,0): 95, 75, 66, (411,177,0): 96, 76, 69, (411,178,0): 98, 78, 71, (411,179,0): 100, 80, 73, (411,180,0): 103, 83, 76, (411,181,0): 105, 85, 78, (411,182,0): 107, 87, 80, (411,183,0): 108, 88, 81, (411,184,0): 112, 89, 83, (411,185,0): 111, 88, 82, (411,186,0): 111, 88, 82, (411,187,0): 111, 88, 82, (411,188,0): 112, 87, 82, (411,189,0): 112, 87, 82, (411,190,0): 112, 87, 82, (411,191,0): 113, 88, 84, (411,192,0): 113, 82, 87, (411,193,0): 117, 84, 91, (411,194,0): 119, 88, 94, (411,195,0): 124, 93, 99, (411,196,0): 136, 107, 112, (411,197,0): 156, 131, 135, (411,198,0): 181, 160, 165, (411,199,0): 198, 181, 187, (411,200,0): 202, 189, 196, (411,201,0): 205, 198, 206, (411,202,0): 203, 201, 212, (411,203,0): 192, 196, 207, (411,204,0): 182, 192, 204, (411,205,0): 179, 193, 206, (411,206,0): 176, 192, 207, (411,207,0): 172, 191, 208, (411,208,0): 169, 191, 212, (411,209,0): 166, 193, 214, (411,210,0): 165, 192, 213, (411,211,0): 162, 190, 212, (411,212,0): 160, 188, 210, (411,213,0): 157, 187, 211, (411,214,0): 156, 186, 210, (411,215,0): 154, 186, 211, (411,216,0): 149, 183, 210, (411,217,0): 148, 183, 211, (411,218,0): 146, 183, 212, (411,219,0): 146, 183, 212, (411,220,0): 143, 182, 213, (411,221,0): 143, 182, 213, (411,222,0): 141, 182, 214, (411,223,0): 141, 181, 216, (411,224,0): 143, 182, 221, (411,225,0): 143, 182, 223, (411,226,0): 143, 182, 225, (411,227,0): 144, 183, 226, (411,228,0): 144, 183, 226, (411,229,0): 145, 184, 227, (411,230,0): 145, 183, 228, (411,231,0): 146, 184, 229, (411,232,0): 144, 182, 229, (411,233,0): 144, 182, 229, (411,234,0): 144, 182, 229, (411,235,0): 144, 182, 229, (411,236,0): 144, 182, 231, (411,237,0): 144, 182, 231, (411,238,0): 145, 183, 232, (411,239,0): 145, 183, 232, (411,240,0): 144, 182, 229, (411,241,0): 144, 182, 229, (411,242,0): 143, 181, 230, (411,243,0): 143, 181, 230, (411,244,0): 142, 179, 231, (411,245,0): 142, 179, 231, (411,246,0): 142, 179, 232, (411,247,0): 142, 179, 232, (411,248,0): 143, 179, 237, (411,249,0): 143, 179, 237, (411,250,0): 143, 179, 239, (411,251,0): 144, 180, 240, (411,252,0): 144, 180, 242, (411,253,0): 145, 181, 243, (411,254,0): 145, 180, 244, (411,255,0): 143, 181, 244, (411,256,0): 142, 182, 243, (411,257,0): 141, 183, 243, (411,258,0): 141, 183, 243, (411,259,0): 141, 183, 243, (411,260,0): 141, 182, 244, (411,261,0): 141, 182, 244, (411,262,0): 141, 182, 246, (411,263,0): 141, 182, 246, (411,264,0): 143, 184, 248, (411,265,0): 143, 184, 248, (411,266,0): 145, 186, 252, (411,267,0): 146, 187, 253, (411,268,0): 148, 188, 255, (411,269,0): 149, 189, 255, (411,270,0): 150, 190, 255, (411,271,0): 152, 191, 255, (411,272,0): 152, 189, 255, (411,273,0): 155, 190, 255, (411,274,0): 155, 190, 255, (411,275,0): 155, 190, 255, (411,276,0): 156, 191, 255, (411,277,0): 157, 192, 255, (411,278,0): 157, 192, 255, (411,279,0): 157, 192, 255, (411,280,0): 156, 191, 255, (411,281,0): 156, 192, 254, (411,282,0): 156, 192, 254, (411,283,0): 157, 193, 255, (411,284,0): 157, 193, 253, (411,285,0): 158, 194, 254, (411,286,0): 158, 194, 254, (411,287,0): 159, 195, 255, (411,288,0): 161, 192, 255, (411,289,0): 160, 191, 255, (411,290,0): 161, 191, 253, (411,291,0): 161, 191, 253, (411,292,0): 163, 191, 254, (411,293,0): 165, 193, 255, (411,294,0): 169, 195, 255, (411,295,0): 171, 195, 255, (411,296,0): 178, 200, 255, (411,297,0): 177, 199, 255, (411,298,0): 177, 197, 255, (411,299,0): 180, 198, 255, (411,300,0): 182, 201, 255, (411,301,0): 185, 201, 255, (411,302,0): 184, 200, 255, (411,303,0): 186, 197, 255, (411,304,0): 177, 185, 248, (411,305,0): 154, 159, 217, (411,306,0): 136, 139, 184, (411,307,0): 136, 136, 172, (411,308,0): 137, 136, 167, (411,309,0): 138, 135, 164, (411,310,0): 146, 142, 177, (411,311,0): 160, 155, 195, (411,312,0): 159, 156, 199, (411,313,0): 149, 147, 187, (411,314,0): 139, 137, 174, (411,315,0): 137, 134, 165, (411,316,0): 140, 136, 161, (411,317,0): 146, 138, 159, (411,318,0): 148, 136, 156, (411,319,0): 146, 133, 153, (411,320,0): 150, 137, 157, (411,321,0): 157, 140, 159, (411,322,0): 159, 136, 156, (411,323,0): 158, 127, 145, (411,324,0): 156, 118, 133, (411,325,0): 149, 105, 118, (411,326,0): 134, 87, 97, (411,327,0): 119, 69, 78, (411,328,0): 100, 53, 59, (411,329,0): 86, 41, 44, (411,330,0): 72, 31, 35, (411,331,0): 66, 30, 32, (411,332,0): 60, 28, 31, (411,333,0): 54, 23, 28, (411,334,0): 52, 22, 30, (411,335,0): 55, 25, 33, (411,336,0): 53, 23, 31, (411,337,0): 52, 22, 30, (411,338,0): 52, 22, 32, (411,339,0): 50, 23, 30, (411,340,0): 51, 21, 31, (411,341,0): 49, 22, 29, (411,342,0): 48, 21, 30, (411,343,0): 47, 22, 28, (411,344,0): 49, 23, 32, (411,345,0): 46, 23, 29, (411,346,0): 46, 23, 31, (411,347,0): 45, 22, 28, (411,348,0): 44, 21, 29, (411,349,0): 43, 22, 27, (411,350,0): 43, 20, 28, (411,351,0): 42, 21, 28, (411,352,0): 40, 19, 28, (411,353,0): 40, 19, 28, (411,354,0): 40, 19, 28, (411,355,0): 40, 19, 28, (411,356,0): 40, 19, 28, (411,357,0): 40, 19, 28, (411,358,0): 40, 19, 28, (411,359,0): 40, 19, 28, (411,360,0): 40, 19, 28, (411,361,0): 40, 19, 28, (411,362,0): 41, 20, 29, (411,363,0): 41, 20, 29, (411,364,0): 42, 21, 30, (411,365,0): 43, 22, 31, (411,366,0): 44, 23, 32, (411,367,0): 44, 23, 30, (411,368,0): 43, 22, 27, (411,369,0): 43, 23, 25, (411,370,0): 44, 24, 26, (411,371,0): 44, 24, 26, (411,372,0): 44, 25, 29, (411,373,0): 44, 25, 29, (411,374,0): 44, 25, 31, (411,375,0): 45, 26, 32, (411,376,0): 44, 27, 33, (411,377,0): 44, 27, 33, (411,378,0): 43, 28, 35, (411,379,0): 43, 28, 35, (411,380,0): 43, 27, 37, (411,381,0): 43, 27, 37, (411,382,0): 41, 28, 37, (411,383,0): 41, 28, 35, (411,384,0): 41, 24, 32, (411,385,0): 41, 24, 30, (411,386,0): 41, 24, 30, (411,387,0): 42, 25, 31, (411,388,0): 43, 26, 32, (411,389,0): 44, 27, 33, (411,390,0): 44, 27, 33, (411,391,0): 44, 27, 33, (411,392,0): 41, 24, 30, (411,393,0): 41, 24, 30, (411,394,0): 41, 24, 30, (411,395,0): 40, 23, 29, (411,396,0): 39, 22, 28, (411,397,0): 39, 22, 28, (411,398,0): 39, 22, 28, (411,399,0): 38, 21, 27, (411,400,0): 38, 21, 27, (411,401,0): 38, 21, 27, (411,402,0): 39, 22, 28, (411,403,0): 40, 23, 29, (411,404,0): 40, 23, 31, (411,405,0): 41, 24, 32, (411,406,0): 42, 25, 33, (411,407,0): 42, 25, 33, (411,408,0): 41, 24, 34, (411,409,0): 41, 24, 34, (411,410,0): 40, 22, 34, (411,411,0): 39, 21, 33, (411,412,0): 38, 20, 32, (411,413,0): 37, 19, 31, (411,414,0): 36, 18, 32, (411,415,0): 36, 18, 32, (411,416,0): 31, 13, 25, (411,417,0): 32, 14, 26, (411,418,0): 32, 14, 26, (411,419,0): 33, 15, 27, (411,420,0): 33, 15, 27, (411,421,0): 34, 16, 28, (411,422,0): 34, 16, 28, (411,423,0): 34, 16, 28, (411,424,0): 35, 17, 29, (411,425,0): 34, 16, 28, (411,426,0): 33, 15, 27, (411,427,0): 32, 14, 26, (411,428,0): 33, 15, 27, (411,429,0): 34, 16, 28, (411,430,0): 36, 18, 30, (411,431,0): 36, 20, 31, (411,432,0): 39, 23, 33, (411,433,0): 37, 24, 33, (411,434,0): 36, 25, 33, (411,435,0): 35, 25, 33, (411,436,0): 33, 27, 31, (411,437,0): 31, 26, 30, (411,438,0): 30, 25, 29, (411,439,0): 29, 25, 26, (411,440,0): 35, 31, 32, (411,441,0): 36, 32, 31, (411,442,0): 39, 33, 33, (411,443,0): 41, 35, 35, (411,444,0): 45, 37, 35, (411,445,0): 46, 36, 35, (411,446,0): 48, 36, 36, (411,447,0): 48, 36, 36, (411,448,0): 48, 38, 39, (411,449,0): 48, 38, 39, (411,450,0): 47, 35, 35, (411,451,0): 44, 32, 32, (411,452,0): 44, 30, 30, (411,453,0): 46, 32, 32, (411,454,0): 53, 39, 38, (411,455,0): 58, 44, 43, (411,456,0): 67, 53, 50, (411,457,0): 69, 58, 54, (411,458,0): 75, 64, 60, (411,459,0): 76, 69, 63, (411,460,0): 76, 72, 63, (411,461,0): 76, 73, 64, (411,462,0): 79, 76, 67, (411,463,0): 80, 80, 72, (411,464,0): 85, 88, 81, (411,465,0): 100, 103, 96, (411,466,0): 115, 118, 111, (411,467,0): 122, 123, 115, (411,468,0): 125, 122, 113, (411,469,0): 124, 118, 106, (411,470,0): 115, 106, 91, (411,471,0): 107, 94, 78, (411,472,0): 103, 88, 69, (411,473,0): 93, 78, 57, (411,474,0): 102, 86, 63, (411,475,0): 117, 100, 74, (411,476,0): 125, 99, 74, (411,477,0): 132, 98, 71, (411,478,0): 138, 93, 70, (411,479,0): 131, 86, 65, (411,480,0): 105, 68, 49, (411,481,0): 96, 65, 45, (411,482,0): 90, 62, 41, (411,483,0): 88, 63, 41, (411,484,0): 90, 70, 46, (411,485,0): 93, 77, 54, (411,486,0): 93, 81, 57, (411,487,0): 93, 83, 58, (411,488,0): 94, 83, 61, (411,489,0): 91, 80, 58, (411,490,0): 87, 75, 53, (411,491,0): 86, 71, 50, (411,492,0): 84, 67, 47, (411,493,0): 85, 67, 47, (411,494,0): 86, 65, 46, (411,495,0): 86, 65, 48, (411,496,0): 82, 60, 47, (411,497,0): 78, 56, 45, (411,498,0): 72, 49, 41, (411,499,0): 68, 45, 37, (411,500,0): 66, 43, 37, (411,501,0): 64, 41, 35, (411,502,0): 61, 37, 33, (411,503,0): 58, 34, 30, (411,504,0): 57, 33, 33, (411,505,0): 56, 32, 32, (411,506,0): 55, 30, 33, (411,507,0): 53, 28, 31, (411,508,0): 51, 26, 30, (411,509,0): 49, 24, 28, (411,510,0): 47, 22, 28, (411,511,0): 46, 21, 27, (411,512,0): 43, 21, 24, (411,513,0): 45, 20, 24, (411,514,0): 45, 18, 23, (411,515,0): 45, 18, 23, (411,516,0): 46, 17, 22, (411,517,0): 46, 15, 21, (411,518,0): 47, 14, 21, (411,519,0): 47, 14, 21, (411,520,0): 53, 20, 27, (411,521,0): 52, 19, 26, (411,522,0): 50, 19, 25, (411,523,0): 48, 19, 24, (411,524,0): 48, 19, 24, (411,525,0): 46, 19, 24, (411,526,0): 45, 20, 24, (411,527,0): 46, 21, 25, (411,528,0): 50, 25, 29, (411,529,0): 54, 29, 33, (411,530,0): 55, 33, 36, (411,531,0): 53, 34, 36, (411,532,0): 49, 30, 32, (411,533,0): 45, 26, 28, (411,534,0): 44, 24, 26, (411,535,0): 45, 23, 26, (411,536,0): 52, 23, 28, (411,537,0): 51, 20, 26, (411,538,0): 51, 18, 25, (411,539,0): 53, 20, 27, (411,540,0): 55, 22, 29, (411,541,0): 55, 24, 30, (411,542,0): 50, 23, 28, (411,543,0): 47, 21, 24, (411,544,0): 50, 21, 23, (411,545,0): 50, 21, 23, (411,546,0): 51, 22, 24, (411,547,0): 52, 23, 25, (411,548,0): 54, 25, 27, (411,549,0): 57, 28, 30, (411,550,0): 58, 32, 33, (411,551,0): 59, 33, 34, (411,552,0): 61, 37, 37, (411,553,0): 61, 37, 37, (411,554,0): 59, 35, 35, (411,555,0): 56, 35, 34, (411,556,0): 54, 33, 32, (411,557,0): 53, 32, 31, (411,558,0): 53, 32, 31, (411,559,0): 52, 31, 30, (411,560,0): 62, 42, 41, (411,561,0): 64, 44, 43, (411,562,0): 65, 45, 44, (411,563,0): 64, 44, 43, (411,564,0): 60, 42, 40, (411,565,0): 59, 41, 39, (411,566,0): 60, 42, 40, (411,567,0): 62, 44, 42, (411,568,0): 64, 49, 46, (411,569,0): 63, 48, 45, (411,570,0): 60, 46, 43, (411,571,0): 57, 43, 40, (411,572,0): 54, 40, 37, (411,573,0): 55, 42, 36, (411,574,0): 56, 45, 41, (411,575,0): 59, 48, 42, (411,576,0): 62, 49, 41, (411,577,0): 70, 53, 45, (411,578,0): 77, 57, 50, (411,579,0): 86, 61, 54, (411,580,0): 94, 65, 59, (411,581,0): 101, 71, 63, (411,582,0): 109, 79, 71, (411,583,0): 115, 85, 77, (411,584,0): 114, 87, 78, (411,585,0): 111, 86, 79, (411,586,0): 110, 87, 81, (411,587,0): 107, 86, 81, (411,588,0): 107, 86, 85, (411,589,0): 110, 85, 88, (411,590,0): 113, 87, 90, (411,591,0): 114, 89, 93, (411,592,0): 108, 88, 90, (411,593,0): 103, 87, 88, (411,594,0): 100, 84, 85, (411,595,0): 96, 82, 82, (411,596,0): 92, 80, 80, (411,597,0): 91, 81, 80, (411,598,0): 91, 81, 80, (411,599,0): 91, 83, 81, (412,0,0): 75, 81, 67, (412,1,0): 75, 81, 67, (412,2,0): 74, 80, 66, (412,3,0): 73, 79, 65, (412,4,0): 74, 78, 64, (412,5,0): 73, 77, 63, (412,6,0): 74, 76, 63, (412,7,0): 73, 75, 62, (412,8,0): 71, 73, 60, (412,9,0): 71, 73, 60, (412,10,0): 72, 72, 60, (412,11,0): 72, 72, 60, (412,12,0): 74, 72, 60, (412,13,0): 74, 72, 60, (412,14,0): 74, 72, 60, (412,15,0): 74, 72, 60, (412,16,0): 78, 74, 63, (412,17,0): 78, 74, 63, (412,18,0): 79, 75, 63, (412,19,0): 80, 76, 64, (412,20,0): 83, 77, 65, (412,21,0): 84, 78, 66, (412,22,0): 84, 78, 64, (412,23,0): 85, 79, 65, (412,24,0): 88, 81, 65, (412,25,0): 88, 81, 65, (412,26,0): 90, 81, 66, (412,27,0): 90, 81, 66, (412,28,0): 91, 82, 65, (412,29,0): 92, 83, 66, (412,30,0): 94, 82, 66, (412,31,0): 95, 83, 67, (412,32,0): 95, 82, 65, (412,33,0): 94, 81, 64, (412,34,0): 93, 80, 63, (412,35,0): 93, 80, 63, (412,36,0): 93, 80, 61, (412,37,0): 94, 81, 62, (412,38,0): 94, 83, 61, (412,39,0): 95, 84, 62, (412,40,0): 99, 91, 68, (412,41,0): 100, 92, 69, (412,42,0): 102, 96, 70, (412,43,0): 105, 99, 73, (412,44,0): 107, 102, 73, (412,45,0): 108, 103, 74, (412,46,0): 109, 104, 75, (412,47,0): 109, 104, 75, (412,48,0): 113, 103, 76, (412,49,0): 113, 103, 76, (412,50,0): 112, 102, 75, (412,51,0): 112, 102, 75, (412,52,0): 113, 103, 76, (412,53,0): 115, 105, 78, (412,54,0): 117, 107, 80, (412,55,0): 118, 108, 81, (412,56,0): 117, 107, 80, (412,57,0): 117, 107, 80, (412,58,0): 118, 108, 81, (412,59,0): 118, 108, 81, (412,60,0): 118, 108, 81, (412,61,0): 118, 108, 81, (412,62,0): 118, 108, 81, (412,63,0): 117, 110, 81, (412,64,0): 115, 108, 79, (412,65,0): 112, 107, 75, (412,66,0): 110, 105, 75, (412,67,0): 110, 105, 75, (412,68,0): 111, 106, 76, (412,69,0): 110, 105, 75, (412,70,0): 106, 101, 72, (412,71,0): 103, 98, 69, (412,72,0): 102, 96, 70, (412,73,0): 96, 90, 64, (412,74,0): 89, 83, 57, (412,75,0): 84, 78, 52, (412,76,0): 81, 75, 51, (412,77,0): 79, 73, 49, (412,78,0): 75, 69, 45, (412,79,0): 72, 66, 44, (412,80,0): 72, 61, 43, (412,81,0): 71, 59, 43, (412,82,0): 69, 57, 41, (412,83,0): 66, 54, 38, (412,84,0): 64, 52, 36, (412,85,0): 61, 49, 33, (412,86,0): 59, 47, 31, (412,87,0): 58, 46, 30, (412,88,0): 54, 42, 26, (412,89,0): 54, 42, 26, (412,90,0): 54, 42, 26, (412,91,0): 54, 42, 26, (412,92,0): 54, 42, 26, (412,93,0): 54, 42, 26, (412,94,0): 54, 42, 26, (412,95,0): 54, 42, 26, (412,96,0): 55, 41, 30, (412,97,0): 55, 41, 30, (412,98,0): 55, 41, 30, (412,99,0): 55, 41, 30, (412,100,0): 55, 41, 30, (412,101,0): 55, 41, 30, (412,102,0): 55, 41, 30, (412,103,0): 55, 41, 30, (412,104,0): 52, 38, 27, (412,105,0): 52, 38, 27, (412,106,0): 52, 38, 27, (412,107,0): 52, 38, 27, (412,108,0): 52, 38, 27, (412,109,0): 52, 38, 27, (412,110,0): 52, 38, 27, (412,111,0): 52, 38, 27, (412,112,0): 56, 40, 27, (412,113,0): 57, 39, 25, (412,114,0): 57, 39, 25, (412,115,0): 58, 40, 26, (412,116,0): 59, 41, 27, (412,117,0): 59, 41, 27, (412,118,0): 59, 41, 27, (412,119,0): 60, 42, 28, (412,120,0): 60, 42, 28, (412,121,0): 60, 42, 28, (412,122,0): 60, 42, 28, (412,123,0): 60, 42, 28, (412,124,0): 60, 42, 28, (412,125,0): 60, 42, 28, (412,126,0): 60, 42, 28, (412,127,0): 60, 42, 30, (412,128,0): 59, 40, 33, (412,129,0): 59, 40, 34, (412,130,0): 58, 39, 33, (412,131,0): 58, 39, 33, (412,132,0): 58, 39, 33, (412,133,0): 60, 41, 35, (412,134,0): 61, 42, 36, (412,135,0): 62, 43, 37, (412,136,0): 62, 43, 37, (412,137,0): 63, 44, 38, (412,138,0): 66, 47, 41, (412,139,0): 68, 49, 43, (412,140,0): 70, 51, 45, (412,141,0): 70, 51, 45, (412,142,0): 71, 52, 46, (412,143,0): 70, 51, 45, (412,144,0): 73, 54, 48, (412,145,0): 75, 56, 50, (412,146,0): 78, 59, 53, (412,147,0): 82, 63, 57, (412,148,0): 85, 66, 60, (412,149,0): 87, 68, 62, (412,150,0): 88, 69, 63, (412,151,0): 89, 70, 64, (412,152,0): 93, 74, 68, (412,153,0): 93, 74, 68, (412,154,0): 93, 74, 68, (412,155,0): 93, 74, 68, (412,156,0): 93, 74, 68, (412,157,0): 93, 74, 68, (412,158,0): 93, 74, 68, (412,159,0): 92, 75, 68, (412,160,0): 90, 72, 68, (412,161,0): 89, 74, 67, (412,162,0): 90, 75, 68, (412,163,0): 91, 76, 69, (412,164,0): 95, 78, 70, (412,165,0): 96, 79, 71, (412,166,0): 97, 80, 70, (412,167,0): 98, 81, 71, (412,168,0): 96, 78, 66, (412,169,0): 96, 78, 66, (412,170,0): 97, 78, 64, (412,171,0): 97, 78, 64, (412,172,0): 96, 77, 63, (412,173,0): 94, 75, 60, (412,174,0): 94, 72, 58, (412,175,0): 93, 71, 58, (412,176,0): 96, 73, 67, (412,177,0): 96, 72, 68, (412,178,0): 98, 75, 69, (412,179,0): 99, 76, 70, (412,180,0): 101, 78, 72, (412,181,0): 103, 80, 74, (412,182,0): 104, 81, 75, (412,183,0): 105, 82, 76, (412,184,0): 107, 84, 76, (412,185,0): 107, 84, 76, (412,186,0): 107, 84, 76, (412,187,0): 108, 85, 77, (412,188,0): 108, 85, 77, (412,189,0): 107, 84, 76, (412,190,0): 107, 84, 76, (412,191,0): 108, 83, 79, (412,192,0): 111, 80, 85, (412,193,0): 113, 82, 88, (412,194,0): 116, 85, 90, (412,195,0): 117, 86, 91, (412,196,0): 123, 92, 97, (412,197,0): 138, 109, 113, (412,198,0): 158, 133, 136, (412,199,0): 173, 151, 154, (412,200,0): 199, 180, 184, (412,201,0): 207, 195, 199, (412,202,0): 213, 203, 211, (412,203,0): 204, 201, 208, (412,204,0): 193, 196, 205, (412,205,0): 187, 193, 205, (412,206,0): 184, 192, 205, (412,207,0): 178, 191, 207, (412,208,0): 171, 192, 209, (412,209,0): 167, 192, 212, (412,210,0): 166, 191, 211, (412,211,0): 164, 191, 212, (412,212,0): 162, 189, 210, (412,213,0): 159, 187, 209, (412,214,0): 156, 186, 210, (412,215,0): 155, 187, 212, (412,216,0): 149, 183, 210, (412,217,0): 148, 183, 211, (412,218,0): 147, 184, 213, (412,219,0): 146, 183, 212, (412,220,0): 144, 183, 214, (412,221,0): 143, 182, 213, (412,222,0): 142, 183, 215, (412,223,0): 142, 182, 217, (412,224,0): 143, 182, 221, (412,225,0): 143, 182, 223, (412,226,0): 143, 182, 225, (412,227,0): 144, 183, 226, (412,228,0): 144, 183, 226, (412,229,0): 145, 184, 227, (412,230,0): 145, 183, 228, (412,231,0): 146, 184, 229, (412,232,0): 145, 183, 230, (412,233,0): 145, 183, 230, (412,234,0): 144, 182, 229, (412,235,0): 144, 182, 229, (412,236,0): 144, 182, 231, (412,237,0): 144, 182, 231, (412,238,0): 144, 182, 231, (412,239,0): 144, 182, 231, (412,240,0): 142, 183, 229, (412,241,0): 142, 183, 229, (412,242,0): 142, 182, 231, (412,243,0): 141, 181, 230, (412,244,0): 143, 180, 232, (412,245,0): 142, 179, 231, (412,246,0): 141, 178, 231, (412,247,0): 141, 178, 231, (412,248,0): 142, 178, 236, (412,249,0): 142, 178, 236, (412,250,0): 144, 178, 239, (412,251,0): 145, 179, 240, (412,252,0): 145, 179, 242, (412,253,0): 146, 180, 243, (412,254,0): 147, 181, 245, (412,255,0): 146, 181, 245, (412,256,0): 143, 183, 244, (412,257,0): 142, 184, 244, (412,258,0): 142, 184, 244, (412,259,0): 142, 184, 244, (412,260,0): 142, 183, 245, (412,261,0): 142, 183, 245, (412,262,0): 142, 183, 247, (412,263,0): 142, 183, 247, (412,264,0): 144, 185, 249, (412,265,0): 145, 186, 250, (412,266,0): 146, 187, 253, (412,267,0): 147, 188, 254, (412,268,0): 149, 189, 255, (412,269,0): 150, 190, 255, (412,270,0): 152, 192, 255, (412,271,0): 153, 192, 255, (412,272,0): 153, 190, 255, (412,273,0): 155, 190, 255, (412,274,0): 155, 190, 255, (412,275,0): 156, 191, 255, (412,276,0): 157, 192, 255, (412,277,0): 157, 192, 255, (412,278,0): 157, 192, 255, (412,279,0): 158, 193, 255, (412,280,0): 156, 192, 254, (412,281,0): 157, 193, 255, (412,282,0): 157, 193, 255, (412,283,0): 158, 194, 254, (412,284,0): 158, 194, 254, (412,285,0): 159, 195, 255, (412,286,0): 159, 195, 253, (412,287,0): 159, 195, 253, (412,288,0): 161, 193, 254, (412,289,0): 160, 192, 253, (412,290,0): 161, 191, 253, (412,291,0): 161, 191, 253, (412,292,0): 163, 192, 252, (412,293,0): 165, 194, 254, (412,294,0): 169, 195, 255, (412,295,0): 171, 195, 255, (412,296,0): 177, 199, 255, (412,297,0): 176, 196, 255, (412,298,0): 177, 196, 255, (412,299,0): 180, 199, 255, (412,300,0): 186, 202, 255, (412,301,0): 189, 203, 255, (412,302,0): 188, 203, 255, (412,303,0): 187, 199, 255, (412,304,0): 176, 184, 246, (412,305,0): 151, 156, 212, (412,306,0): 135, 137, 185, (412,307,0): 140, 140, 178, (412,308,0): 143, 142, 174, (412,309,0): 142, 139, 170, (412,310,0): 148, 144, 181, (412,311,0): 161, 156, 197, (412,312,0): 160, 157, 202, (412,313,0): 152, 149, 192, (412,314,0): 143, 141, 178, (412,315,0): 143, 140, 171, (412,316,0): 147, 143, 168, (412,317,0): 154, 146, 167, (412,318,0): 156, 144, 164, (412,319,0): 155, 140, 159, (412,320,0): 155, 138, 157, (412,321,0): 163, 142, 161, (412,322,0): 167, 140, 159, (412,323,0): 164, 130, 147, (412,324,0): 157, 116, 132, (412,325,0): 141, 97, 110, (412,326,0): 118, 71, 81, (412,327,0): 96, 49, 57, (412,328,0): 90, 45, 50, (412,329,0): 78, 37, 41, (412,330,0): 66, 31, 35, (412,331,0): 63, 31, 36, (412,332,0): 59, 30, 35, (412,333,0): 54, 24, 32, (412,334,0): 52, 24, 36, (412,335,0): 55, 27, 39, (412,336,0): 49, 21, 33, (412,337,0): 49, 22, 31, (412,338,0): 48, 20, 32, (412,339,0): 47, 21, 30, (412,340,0): 47, 19, 31, (412,341,0): 46, 20, 29, (412,342,0): 46, 20, 31, (412,343,0): 43, 20, 28, (412,344,0): 44, 21, 31, (412,345,0): 43, 22, 29, (412,346,0): 43, 22, 31, (412,347,0): 42, 21, 28, (412,348,0): 42, 21, 30, (412,349,0): 41, 22, 28, (412,350,0): 41, 20, 29, (412,351,0): 41, 20, 29, (412,352,0): 40, 19, 28, (412,353,0): 40, 18, 30, (412,354,0): 40, 18, 30, (412,355,0): 40, 18, 30, (412,356,0): 40, 18, 30, (412,357,0): 40, 18, 30, (412,358,0): 40, 18, 30, (412,359,0): 40, 18, 30, (412,360,0): 39, 17, 29, (412,361,0): 39, 17, 29, (412,362,0): 40, 18, 30, (412,363,0): 41, 19, 31, (412,364,0): 42, 20, 32, (412,365,0): 42, 20, 32, (412,366,0): 43, 21, 33, (412,367,0): 43, 22, 31, (412,368,0): 43, 22, 27, (412,369,0): 43, 23, 25, (412,370,0): 44, 24, 26, (412,371,0): 44, 24, 26, (412,372,0): 44, 25, 29, (412,373,0): 44, 25, 29, (412,374,0): 44, 25, 31, (412,375,0): 45, 26, 32, (412,376,0): 45, 28, 34, (412,377,0): 45, 28, 34, (412,378,0): 44, 29, 36, (412,379,0): 44, 29, 36, (412,380,0): 44, 28, 38, (412,381,0): 44, 28, 38, (412,382,0): 42, 29, 38, (412,383,0): 42, 29, 36, (412,384,0): 42, 25, 33, (412,385,0): 42, 25, 31, (412,386,0): 43, 26, 32, (412,387,0): 43, 26, 32, (412,388,0): 43, 26, 32, (412,389,0): 44, 27, 33, (412,390,0): 44, 27, 33, (412,391,0): 44, 27, 33, (412,392,0): 42, 25, 31, (412,393,0): 41, 24, 30, (412,394,0): 41, 24, 30, (412,395,0): 41, 24, 30, (412,396,0): 40, 23, 29, (412,397,0): 39, 22, 28, (412,398,0): 39, 22, 28, (412,399,0): 39, 22, 28, (412,400,0): 38, 21, 27, (412,401,0): 39, 22, 28, (412,402,0): 39, 22, 28, (412,403,0): 40, 23, 29, (412,404,0): 40, 23, 31, (412,405,0): 41, 24, 32, (412,406,0): 41, 24, 32, (412,407,0): 42, 25, 33, (412,408,0): 41, 24, 34, (412,409,0): 40, 23, 33, (412,410,0): 40, 22, 34, (412,411,0): 39, 21, 33, (412,412,0): 37, 19, 31, (412,413,0): 36, 18, 30, (412,414,0): 36, 18, 32, (412,415,0): 35, 17, 31, (412,416,0): 31, 13, 25, (412,417,0): 31, 13, 25, (412,418,0): 31, 13, 25, (412,419,0): 32, 14, 26, (412,420,0): 32, 14, 26, (412,421,0): 33, 15, 27, (412,422,0): 33, 15, 27, (412,423,0): 34, 16, 28, (412,424,0): 33, 15, 27, (412,425,0): 33, 15, 27, (412,426,0): 33, 15, 27, (412,427,0): 33, 15, 27, (412,428,0): 33, 15, 27, (412,429,0): 34, 16, 28, (412,430,0): 35, 17, 29, (412,431,0): 35, 19, 30, (412,432,0): 38, 22, 33, (412,433,0): 36, 23, 33, (412,434,0): 34, 23, 31, (412,435,0): 33, 23, 31, (412,436,0): 30, 23, 30, (412,437,0): 29, 24, 28, (412,438,0): 30, 25, 29, (412,439,0): 29, 27, 28, (412,440,0): 34, 32, 33, (412,441,0): 36, 35, 33, (412,442,0): 41, 37, 36, (412,443,0): 44, 39, 36, (412,444,0): 48, 40, 38, (412,445,0): 50, 40, 39, (412,446,0): 51, 40, 38, (412,447,0): 50, 38, 38, (412,448,0): 48, 38, 39, (412,449,0): 46, 37, 38, (412,450,0): 45, 35, 34, (412,451,0): 42, 32, 31, (412,452,0): 41, 29, 29, (412,453,0): 45, 33, 33, (412,454,0): 54, 40, 39, (412,455,0): 60, 46, 45, (412,456,0): 66, 52, 49, (412,457,0): 70, 59, 55, (412,458,0): 77, 66, 62, (412,459,0): 80, 73, 67, (412,460,0): 80, 76, 67, (412,461,0): 81, 78, 69, (412,462,0): 84, 81, 72, (412,463,0): 84, 84, 76, (412,464,0): 84, 83, 78, (412,465,0): 95, 96, 90, (412,466,0): 106, 109, 102, (412,467,0): 113, 114, 106, (412,468,0): 118, 118, 108, (412,469,0): 120, 116, 105, (412,470,0): 113, 105, 92, (412,471,0): 104, 92, 78, (412,472,0): 98, 86, 70, (412,473,0): 87, 74, 55, (412,474,0): 92, 81, 59, (412,475,0): 108, 94, 68, (412,476,0): 118, 96, 72, (412,477,0): 129, 99, 75, (412,478,0): 141, 100, 80, (412,479,0): 140, 95, 74, (412,480,0): 126, 79, 61, (412,481,0): 118, 73, 54, (412,482,0): 108, 67, 49, (412,483,0): 103, 66, 47, (412,484,0): 102, 71, 50, (412,485,0): 103, 78, 56, (412,486,0): 103, 83, 59, (412,487,0): 101, 85, 60, (412,488,0): 94, 82, 58, (412,489,0): 93, 81, 57, (412,490,0): 90, 78, 56, (412,491,0): 88, 73, 52, (412,492,0): 86, 69, 51, (412,493,0): 85, 66, 49, (412,494,0): 85, 66, 49, (412,495,0): 87, 65, 51, (412,496,0): 88, 64, 52, (412,497,0): 83, 59, 49, (412,498,0): 77, 52, 45, (412,499,0): 73, 48, 41, (412,500,0): 71, 46, 41, (412,501,0): 68, 43, 38, (412,502,0): 64, 39, 35, (412,503,0): 61, 36, 32, (412,504,0): 60, 34, 35, (412,505,0): 59, 33, 34, (412,506,0): 57, 31, 34, (412,507,0): 54, 28, 31, (412,508,0): 52, 25, 30, (412,509,0): 50, 23, 28, (412,510,0): 49, 22, 29, (412,511,0): 48, 21, 28, (412,512,0): 44, 19, 23, (412,513,0): 44, 19, 23, (412,514,0): 45, 18, 23, (412,515,0): 47, 18, 23, (412,516,0): 47, 16, 22, (412,517,0): 47, 16, 22, (412,518,0): 48, 15, 22, (412,519,0): 49, 14, 21, (412,520,0): 57, 22, 29, (412,521,0): 54, 21, 28, (412,522,0): 51, 20, 26, (412,523,0): 48, 19, 24, (412,524,0): 48, 19, 24, (412,525,0): 46, 19, 24, (412,526,0): 46, 21, 25, (412,527,0): 47, 22, 26, (412,528,0): 54, 25, 30, (412,529,0): 55, 28, 33, (412,530,0): 58, 33, 37, (412,531,0): 56, 34, 37, (412,532,0): 51, 31, 33, (412,533,0): 47, 27, 29, (412,534,0): 45, 25, 27, (412,535,0): 47, 22, 26, (412,536,0): 53, 24, 29, (412,537,0): 52, 21, 27, (412,538,0): 52, 19, 26, (412,539,0): 54, 21, 28, (412,540,0): 55, 24, 30, (412,541,0): 55, 26, 31, (412,542,0): 50, 25, 29, (412,543,0): 47, 22, 25, (412,544,0): 51, 22, 24, (412,545,0): 52, 22, 22, (412,546,0): 53, 23, 23, (412,547,0): 54, 24, 24, (412,548,0): 55, 27, 26, (412,549,0): 58, 30, 29, (412,550,0): 59, 33, 32, (412,551,0): 60, 34, 33, (412,552,0): 63, 37, 36, (412,553,0): 61, 37, 35, (412,554,0): 61, 37, 35, (412,555,0): 60, 36, 34, (412,556,0): 56, 35, 32, (412,557,0): 55, 34, 31, (412,558,0): 53, 32, 29, (412,559,0): 53, 32, 29, (412,560,0): 61, 41, 40, (412,561,0): 63, 43, 42, (412,562,0): 64, 44, 43, (412,563,0): 63, 43, 42, (412,564,0): 60, 42, 40, (412,565,0): 59, 41, 39, (412,566,0): 61, 43, 39, (412,567,0): 63, 45, 41, (412,568,0): 66, 51, 46, (412,569,0): 67, 52, 47, (412,570,0): 66, 53, 47, (412,571,0): 64, 51, 45, (412,572,0): 60, 47, 41, (412,573,0): 60, 47, 39, (412,574,0): 62, 51, 45, (412,575,0): 68, 55, 47, (412,576,0): 70, 55, 48, (412,577,0): 77, 58, 51, (412,578,0): 85, 62, 56, (412,579,0): 92, 65, 58, (412,580,0): 97, 66, 61, (412,581,0): 103, 70, 65, (412,582,0): 108, 75, 70, (412,583,0): 113, 80, 75, (412,584,0): 112, 83, 77, (412,585,0): 108, 83, 78, (412,586,0): 106, 82, 78, (412,587,0): 104, 83, 80, (412,588,0): 106, 84, 86, (412,589,0): 109, 87, 90, (412,590,0): 112, 90, 93, (412,591,0): 114, 92, 95, (412,592,0): 107, 87, 89, (412,593,0): 103, 87, 88, (412,594,0): 100, 84, 85, (412,595,0): 96, 82, 82, (412,596,0): 93, 81, 81, (412,597,0): 92, 82, 81, (412,598,0): 92, 82, 81, (412,599,0): 93, 83, 82, (413,0,0): 75, 81, 67, (413,1,0): 75, 81, 67, (413,2,0): 74, 80, 66, (413,3,0): 74, 80, 66, (413,4,0): 75, 79, 65, (413,5,0): 74, 78, 64, (413,6,0): 75, 77, 64, (413,7,0): 75, 77, 64, (413,8,0): 71, 73, 60, (413,9,0): 71, 73, 60, (413,10,0): 72, 72, 60, (413,11,0): 72, 72, 60, (413,12,0): 74, 72, 60, (413,13,0): 74, 72, 60, (413,14,0): 74, 72, 60, (413,15,0): 74, 72, 60, (413,16,0): 78, 74, 63, (413,17,0): 78, 74, 63, (413,18,0): 79, 75, 63, (413,19,0): 79, 75, 63, (413,20,0): 82, 76, 64, (413,21,0): 82, 76, 64, (413,22,0): 83, 77, 63, (413,23,0): 83, 77, 63, (413,24,0): 87, 79, 66, (413,25,0): 87, 80, 64, (413,26,0): 89, 80, 65, (413,27,0): 90, 81, 66, (413,28,0): 91, 82, 65, (413,29,0): 92, 83, 66, (413,30,0): 94, 82, 66, (413,31,0): 95, 83, 67, (413,32,0): 97, 84, 67, (413,33,0): 96, 83, 66, (413,34,0): 95, 82, 65, (413,35,0): 94, 81, 64, (413,36,0): 93, 80, 61, (413,37,0): 94, 81, 62, (413,38,0): 94, 83, 61, (413,39,0): 94, 83, 61, (413,40,0): 98, 90, 67, (413,41,0): 100, 92, 69, (413,42,0): 102, 96, 70, (413,43,0): 104, 98, 72, (413,44,0): 107, 102, 73, (413,45,0): 108, 103, 74, (413,46,0): 108, 103, 74, (413,47,0): 108, 103, 74, (413,48,0): 113, 106, 78, (413,49,0): 114, 104, 77, (413,50,0): 114, 104, 77, (413,51,0): 113, 103, 76, (413,52,0): 114, 104, 77, (413,53,0): 115, 105, 78, (413,54,0): 117, 107, 80, (413,55,0): 118, 108, 81, (413,56,0): 118, 108, 81, (413,57,0): 117, 107, 80, (413,58,0): 117, 107, 80, (413,59,0): 117, 107, 80, (413,60,0): 117, 107, 80, (413,61,0): 117, 107, 80, (413,62,0): 116, 106, 79, (413,63,0): 114, 107, 79, (413,64,0): 114, 109, 79, (413,65,0): 112, 107, 75, (413,66,0): 109, 104, 74, (413,67,0): 109, 104, 74, (413,68,0): 110, 105, 75, (413,69,0): 110, 105, 75, (413,70,0): 107, 102, 73, (413,71,0): 105, 100, 71, (413,72,0): 103, 97, 71, (413,73,0): 98, 92, 66, (413,74,0): 91, 85, 59, (413,75,0): 86, 80, 54, (413,76,0): 83, 77, 53, (413,77,0): 80, 74, 50, (413,78,0): 76, 70, 46, (413,79,0): 72, 66, 44, (413,80,0): 73, 62, 44, (413,81,0): 72, 60, 44, (413,82,0): 70, 58, 42, (413,83,0): 68, 56, 40, (413,84,0): 65, 53, 37, (413,85,0): 62, 50, 34, (413,86,0): 60, 48, 32, (413,87,0): 59, 47, 31, (413,88,0): 55, 43, 27, (413,89,0): 55, 43, 27, (413,90,0): 55, 43, 27, (413,91,0): 55, 43, 27, (413,92,0): 55, 43, 27, (413,93,0): 55, 43, 27, (413,94,0): 55, 43, 27, (413,95,0): 55, 43, 27, (413,96,0): 54, 40, 29, (413,97,0): 54, 40, 29, (413,98,0): 54, 40, 29, (413,99,0): 54, 40, 29, (413,100,0): 54, 40, 29, (413,101,0): 54, 40, 29, (413,102,0): 54, 40, 29, (413,103,0): 54, 40, 29, (413,104,0): 53, 39, 28, (413,105,0): 53, 39, 28, (413,106,0): 53, 39, 28, (413,107,0): 53, 39, 28, (413,108,0): 53, 39, 28, (413,109,0): 53, 39, 28, (413,110,0): 53, 39, 28, (413,111,0): 53, 39, 26, (413,112,0): 57, 39, 27, (413,113,0): 58, 40, 26, (413,114,0): 58, 40, 26, (413,115,0): 59, 41, 27, (413,116,0): 59, 41, 27, (413,117,0): 60, 42, 28, (413,118,0): 60, 42, 28, (413,119,0): 60, 42, 28, (413,120,0): 60, 42, 28, (413,121,0): 60, 42, 28, (413,122,0): 60, 42, 28, (413,123,0): 60, 42, 28, (413,124,0): 60, 42, 28, (413,125,0): 60, 42, 28, (413,126,0): 60, 42, 28, (413,127,0): 60, 42, 30, (413,128,0): 59, 40, 33, (413,129,0): 59, 40, 34, (413,130,0): 58, 39, 33, (413,131,0): 58, 39, 33, (413,132,0): 58, 39, 33, (413,133,0): 60, 41, 35, (413,134,0): 61, 42, 36, (413,135,0): 62, 43, 37, (413,136,0): 62, 43, 37, (413,137,0): 64, 45, 39, (413,138,0): 66, 47, 41, (413,139,0): 68, 49, 43, (413,140,0): 70, 51, 45, (413,141,0): 71, 52, 46, (413,142,0): 71, 52, 46, (413,143,0): 71, 52, 46, (413,144,0): 75, 56, 50, (413,145,0): 77, 58, 52, (413,146,0): 80, 61, 55, (413,147,0): 83, 64, 58, (413,148,0): 86, 67, 61, (413,149,0): 87, 68, 62, (413,150,0): 88, 69, 63, (413,151,0): 88, 69, 63, (413,152,0): 92, 73, 67, (413,153,0): 92, 73, 67, (413,154,0): 92, 73, 67, (413,155,0): 92, 73, 67, (413,156,0): 92, 73, 67, (413,157,0): 92, 73, 67, (413,158,0): 92, 73, 67, (413,159,0): 91, 74, 67, (413,160,0): 91, 73, 69, (413,161,0): 89, 74, 69, (413,162,0): 90, 75, 68, (413,163,0): 91, 76, 69, (413,164,0): 94, 77, 70, (413,165,0): 96, 79, 71, (413,166,0): 96, 79, 71, (413,167,0): 97, 80, 70, (413,168,0): 94, 76, 64, (413,169,0): 95, 77, 65, (413,170,0): 96, 77, 63, (413,171,0): 96, 77, 63, (413,172,0): 96, 77, 62, (413,173,0): 95, 76, 61, (413,174,0): 96, 74, 60, (413,175,0): 95, 73, 60, (413,176,0): 97, 72, 65, (413,177,0): 99, 71, 67, (413,178,0): 100, 72, 68, (413,179,0): 99, 74, 69, (413,180,0): 100, 75, 70, (413,181,0): 101, 76, 71, (413,182,0): 102, 77, 72, (413,183,0): 102, 79, 71, (413,184,0): 104, 79, 72, (413,185,0): 104, 81, 73, (413,186,0): 105, 82, 74, (413,187,0): 106, 84, 73, (413,188,0): 106, 83, 75, (413,189,0): 105, 83, 72, (413,190,0): 104, 81, 73, (413,191,0): 104, 79, 74, (413,192,0): 107, 78, 82, (413,193,0): 111, 80, 86, (413,194,0): 114, 83, 88, (413,195,0): 114, 83, 88, (413,196,0): 115, 85, 87, (413,197,0): 123, 93, 95, (413,198,0): 137, 108, 110, (413,199,0): 146, 120, 121, (413,200,0): 179, 157, 159, (413,201,0): 197, 178, 180, (413,202,0): 211, 199, 203, (413,203,0): 211, 202, 207, (413,204,0): 201, 198, 205, (413,205,0): 195, 195, 205, (413,206,0): 190, 192, 204, (413,207,0): 183, 191, 204, (413,208,0): 174, 191, 207, (413,209,0): 170, 193, 211, (413,210,0): 169, 191, 212, (413,211,0): 165, 190, 210, (413,212,0): 163, 188, 210, (413,213,0): 161, 188, 209, (413,214,0): 159, 187, 209, (413,215,0): 156, 186, 210, (413,216,0): 153, 185, 210, (413,217,0): 150, 184, 211, (413,218,0): 149, 184, 212, (413,219,0): 148, 185, 214, (413,220,0): 145, 184, 215, (413,221,0): 144, 183, 214, (413,222,0): 143, 184, 216, (413,223,0): 143, 183, 218, (413,224,0): 144, 183, 222, (413,225,0): 144, 183, 224, (413,226,0): 144, 183, 226, (413,227,0): 145, 184, 227, (413,228,0): 145, 184, 227, (413,229,0): 146, 185, 228, (413,230,0): 146, 184, 229, (413,231,0): 146, 184, 229, (413,232,0): 146, 184, 231, (413,233,0): 146, 184, 231, (413,234,0): 146, 184, 231, (413,235,0): 145, 183, 230, (413,236,0): 145, 183, 232, (413,237,0): 144, 182, 231, (413,238,0): 144, 182, 231, (413,239,0): 144, 182, 231, (413,240,0): 142, 183, 229, (413,241,0): 142, 183, 229, (413,242,0): 143, 183, 232, (413,243,0): 143, 183, 232, (413,244,0): 144, 181, 233, (413,245,0): 143, 180, 232, (413,246,0): 142, 179, 232, (413,247,0): 141, 178, 231, (413,248,0): 141, 177, 235, (413,249,0): 142, 178, 236, (413,250,0): 144, 178, 239, (413,251,0): 144, 178, 239, (413,252,0): 146, 180, 243, (413,253,0): 146, 180, 243, (413,254,0): 147, 181, 245, (413,255,0): 147, 182, 246, (413,256,0): 143, 183, 244, (413,257,0): 142, 184, 244, (413,258,0): 142, 184, 244, (413,259,0): 142, 184, 244, (413,260,0): 142, 183, 245, (413,261,0): 142, 183, 245, (413,262,0): 142, 183, 247, (413,263,0): 142, 183, 247, (413,264,0): 145, 186, 250, (413,265,0): 146, 187, 251, (413,266,0): 147, 188, 254, (413,267,0): 148, 189, 255, (413,268,0): 150, 190, 255, (413,269,0): 151, 191, 255, (413,270,0): 153, 193, 255, (413,271,0): 154, 193, 255, (413,272,0): 153, 190, 255, (413,273,0): 156, 191, 255, (413,274,0): 156, 191, 255, (413,275,0): 157, 192, 255, (413,276,0): 157, 192, 255, (413,277,0): 158, 193, 255, (413,278,0): 158, 193, 255, (413,279,0): 158, 193, 255, (413,280,0): 157, 193, 255, (413,281,0): 157, 193, 255, (413,282,0): 157, 193, 253, (413,283,0): 158, 194, 254, (413,284,0): 159, 195, 255, (413,285,0): 159, 195, 255, (413,286,0): 159, 195, 253, (413,287,0): 160, 196, 254, (413,288,0): 162, 194, 255, (413,289,0): 161, 193, 254, (413,290,0): 162, 192, 254, (413,291,0): 162, 192, 254, (413,292,0): 164, 193, 253, (413,293,0): 166, 195, 255, (413,294,0): 171, 195, 255, (413,295,0): 172, 196, 255, (413,296,0): 178, 198, 255, (413,297,0): 176, 196, 255, (413,298,0): 177, 196, 255, (413,299,0): 183, 199, 255, (413,300,0): 189, 203, 255, (413,301,0): 189, 203, 255, (413,302,0): 186, 198, 255, (413,303,0): 182, 192, 253, (413,304,0): 169, 177, 239, (413,305,0): 150, 155, 211, (413,306,0): 138, 140, 188, (413,307,0): 144, 144, 182, (413,308,0): 149, 148, 180, (413,309,0): 148, 145, 176, (413,310,0): 153, 149, 186, (413,311,0): 163, 158, 199, (413,312,0): 162, 159, 204, (413,313,0): 156, 153, 196, (413,314,0): 149, 147, 186, (413,315,0): 149, 146, 177, (413,316,0): 153, 149, 174, (413,317,0): 158, 150, 171, (413,318,0): 161, 149, 169, (413,319,0): 162, 147, 166, (413,320,0): 162, 140, 161, (413,321,0): 167, 142, 163, (413,322,0): 169, 138, 156, (413,323,0): 159, 122, 140, (413,324,0): 145, 102, 119, (413,325,0): 127, 81, 94, (413,326,0): 101, 55, 65, (413,327,0): 81, 36, 43, (413,328,0): 80, 39, 43, (413,329,0): 70, 34, 38, (413,330,0): 62, 30, 35, (413,331,0): 60, 31, 36, (413,332,0): 56, 29, 38, (413,333,0): 51, 23, 35, (413,334,0): 51, 23, 37, (413,335,0): 56, 28, 42, (413,336,0): 47, 21, 34, (413,337,0): 46, 20, 31, (413,338,0): 46, 20, 31, (413,339,0): 45, 19, 30, (413,340,0): 45, 19, 30, (413,341,0): 42, 19, 29, (413,342,0): 42, 19, 29, (413,343,0): 41, 20, 29, (413,344,0): 41, 20, 29, (413,345,0): 40, 20, 29, (413,346,0): 40, 20, 29, (413,347,0): 40, 20, 29, (413,348,0): 40, 20, 29, (413,349,0): 38, 21, 29, (413,350,0): 40, 20, 29, (413,351,0): 39, 19, 28, (413,352,0): 40, 20, 31, (413,353,0): 41, 19, 31, (413,354,0): 41, 19, 31, (413,355,0): 41, 19, 31, (413,356,0): 41, 19, 31, (413,357,0): 41, 19, 31, (413,358,0): 41, 19, 31, (413,359,0): 41, 19, 31, (413,360,0): 40, 18, 30, (413,361,0): 40, 18, 30, (413,362,0): 40, 18, 30, (413,363,0): 41, 19, 31, (413,364,0): 41, 19, 31, (413,365,0): 41, 19, 31, (413,366,0): 41, 19, 31, (413,367,0): 42, 21, 30, (413,368,0): 42, 21, 26, (413,369,0): 42, 22, 24, (413,370,0): 43, 23, 25, (413,371,0): 43, 23, 25, (413,372,0): 43, 24, 28, (413,373,0): 43, 24, 28, (413,374,0): 44, 25, 31, (413,375,0): 44, 25, 31, (413,376,0): 44, 27, 33, (413,377,0): 44, 27, 33, (413,378,0): 43, 28, 35, (413,379,0): 43, 28, 35, (413,380,0): 43, 27, 37, (413,381,0): 43, 27, 37, (413,382,0): 41, 28, 37, (413,383,0): 41, 28, 35, (413,384,0): 43, 26, 34, (413,385,0): 43, 26, 32, (413,386,0): 43, 26, 32, (413,387,0): 43, 26, 32, (413,388,0): 43, 26, 32, (413,389,0): 43, 26, 32, (413,390,0): 43, 26, 32, (413,391,0): 43, 26, 32, (413,392,0): 42, 25, 31, (413,393,0): 42, 25, 31, (413,394,0): 42, 25, 31, (413,395,0): 41, 24, 30, (413,396,0): 41, 24, 30, (413,397,0): 40, 23, 29, (413,398,0): 40, 23, 29, (413,399,0): 39, 22, 28, (413,400,0): 40, 23, 29, (413,401,0): 40, 23, 29, (413,402,0): 40, 23, 29, (413,403,0): 40, 23, 29, (413,404,0): 40, 23, 31, (413,405,0): 40, 23, 31, (413,406,0): 40, 23, 31, (413,407,0): 40, 23, 31, (413,408,0): 40, 23, 33, (413,409,0): 39, 22, 32, (413,410,0): 38, 20, 32, (413,411,0): 37, 19, 31, (413,412,0): 36, 18, 30, (413,413,0): 35, 17, 29, (413,414,0): 34, 16, 30, (413,415,0): 34, 16, 30, (413,416,0): 30, 12, 24, (413,417,0): 31, 13, 25, (413,418,0): 31, 13, 25, (413,419,0): 31, 13, 25, (413,420,0): 32, 14, 26, (413,421,0): 33, 15, 27, (413,422,0): 33, 15, 27, (413,423,0): 33, 15, 27, (413,424,0): 32, 14, 26, (413,425,0): 32, 14, 26, (413,426,0): 32, 14, 26, (413,427,0): 33, 15, 27, (413,428,0): 33, 15, 27, (413,429,0): 34, 16, 28, (413,430,0): 34, 16, 28, (413,431,0): 34, 18, 29, (413,432,0): 36, 20, 31, (413,433,0): 34, 22, 32, (413,434,0): 33, 22, 30, (413,435,0): 29, 22, 29, (413,436,0): 28, 21, 28, (413,437,0): 28, 23, 29, (413,438,0): 30, 28, 31, (413,439,0): 33, 31, 32, (413,440,0): 37, 35, 36, (413,441,0): 39, 38, 36, (413,442,0): 45, 41, 38, (413,443,0): 48, 44, 41, (413,444,0): 53, 45, 43, (413,445,0): 54, 46, 44, (413,446,0): 55, 44, 42, (413,447,0): 54, 44, 42, (413,448,0): 51, 42, 43, (413,449,0): 50, 41, 42, (413,450,0): 47, 37, 36, (413,451,0): 43, 33, 32, (413,452,0): 42, 30, 30, (413,453,0): 45, 33, 33, (413,454,0): 55, 41, 40, (413,455,0): 61, 47, 46, (413,456,0): 66, 52, 49, (413,457,0): 71, 57, 54, (413,458,0): 76, 65, 61, (413,459,0): 81, 72, 67, (413,460,0): 82, 75, 67, (413,461,0): 83, 79, 70, (413,462,0): 86, 83, 74, (413,463,0): 89, 86, 77, (413,464,0): 84, 84, 76, (413,465,0): 92, 93, 87, (413,466,0): 100, 103, 94, (413,467,0): 107, 110, 101, (413,468,0): 115, 115, 105, (413,469,0): 120, 117, 108, (413,470,0): 115, 107, 96, (413,471,0): 103, 93, 81, (413,472,0): 95, 86, 71, (413,473,0): 81, 72, 55, (413,474,0): 83, 76, 57, (413,475,0): 97, 89, 66, (413,476,0): 107, 91, 68, (413,477,0): 120, 95, 73, (413,478,0): 134, 99, 79, (413,479,0): 138, 93, 74, (413,480,0): 138, 82, 65, (413,481,0): 136, 79, 62, (413,482,0): 128, 75, 57, (413,483,0): 122, 75, 57, (413,484,0): 118, 77, 57, (413,485,0): 114, 82, 61, (413,486,0): 111, 85, 62, (413,487,0): 108, 88, 64, (413,488,0): 99, 83, 60, (413,489,0): 99, 84, 61, (413,490,0): 96, 84, 62, (413,491,0): 95, 80, 59, (413,492,0): 91, 76, 57, (413,493,0): 88, 71, 53, (413,494,0): 88, 69, 54, (413,495,0): 91, 69, 56, (413,496,0): 95, 68, 59, (413,497,0): 90, 63, 54, (413,498,0): 85, 56, 50, (413,499,0): 80, 53, 46, (413,500,0): 78, 49, 45, (413,501,0): 74, 46, 42, (413,502,0): 71, 41, 39, (413,503,0): 67, 39, 36, (413,504,0): 66, 36, 38, (413,505,0): 63, 34, 36, (413,506,0): 61, 30, 35, (413,507,0): 57, 28, 32, (413,508,0): 55, 24, 30, (413,509,0): 52, 23, 28, (413,510,0): 52, 21, 29, (413,511,0): 51, 21, 29, (413,512,0): 46, 19, 24, (413,513,0): 46, 19, 24, (413,514,0): 48, 19, 24, (413,515,0): 48, 19, 24, (413,516,0): 49, 18, 24, (413,517,0): 50, 17, 24, (413,518,0): 52, 17, 24, (413,519,0): 52, 17, 24, (413,520,0): 61, 26, 33, (413,521,0): 59, 24, 31, (413,522,0): 54, 21, 28, (413,523,0): 51, 20, 26, (413,524,0): 49, 20, 25, (413,525,0): 49, 20, 25, (413,526,0): 48, 21, 26, (413,527,0): 49, 22, 27, (413,528,0): 55, 24, 30, (413,529,0): 58, 27, 33, (413,530,0): 58, 31, 36, (413,531,0): 57, 32, 36, (413,532,0): 51, 29, 32, (413,533,0): 47, 27, 29, (413,534,0): 48, 26, 29, (413,535,0): 50, 25, 29, (413,536,0): 55, 26, 31, (413,537,0): 54, 23, 29, (413,538,0): 53, 20, 27, (413,539,0): 52, 21, 27, (413,540,0): 53, 24, 29, (413,541,0): 52, 25, 30, (413,542,0): 50, 25, 29, (413,543,0): 48, 23, 26, (413,544,0): 52, 23, 25, (413,545,0): 53, 23, 23, (413,546,0): 54, 24, 24, (413,547,0): 55, 25, 25, (413,548,0): 56, 28, 27, (413,549,0): 59, 31, 30, (413,550,0): 60, 34, 33, (413,551,0): 61, 35, 34, (413,552,0): 62, 36, 35, (413,553,0): 62, 36, 35, (413,554,0): 61, 37, 35, (413,555,0): 61, 37, 35, (413,556,0): 58, 37, 34, (413,557,0): 57, 36, 33, (413,558,0): 55, 34, 31, (413,559,0): 54, 33, 30, (413,560,0): 58, 38, 37, (413,561,0): 61, 41, 40, (413,562,0): 63, 43, 42, (413,563,0): 63, 43, 42, (413,564,0): 60, 42, 40, (413,565,0): 60, 42, 40, (413,566,0): 62, 44, 40, (413,567,0): 64, 46, 42, (413,568,0): 68, 53, 48, (413,569,0): 71, 56, 51, (413,570,0): 72, 59, 53, (413,571,0): 70, 57, 51, (413,572,0): 66, 53, 45, (413,573,0): 66, 53, 45, (413,574,0): 68, 58, 49, (413,575,0): 75, 62, 54, (413,576,0): 78, 61, 54, (413,577,0): 84, 63, 58, (413,578,0): 93, 68, 63, (413,579,0): 99, 70, 66, (413,580,0): 103, 70, 65, (413,581,0): 105, 70, 66, (413,582,0): 108, 73, 69, (413,583,0): 109, 76, 71, (413,584,0): 109, 80, 76, (413,585,0): 104, 79, 75, (413,586,0): 102, 78, 76, (413,587,0): 100, 80, 79, (413,588,0): 104, 84, 86, (413,589,0): 108, 87, 92, (413,590,0): 110, 89, 94, (413,591,0): 110, 89, 94, (413,592,0): 105, 84, 89, (413,593,0): 103, 84, 86, (413,594,0): 102, 83, 85, (413,595,0): 98, 82, 83, (413,596,0): 96, 82, 82, (413,597,0): 93, 81, 81, (413,598,0): 93, 81, 81, (413,599,0): 92, 82, 81, (414,0,0): 75, 81, 67, (414,1,0): 74, 80, 66, (414,2,0): 74, 80, 66, (414,3,0): 74, 80, 66, (414,4,0): 75, 79, 65, (414,5,0): 75, 79, 65, (414,6,0): 75, 79, 65, (414,7,0): 75, 79, 65, (414,8,0): 71, 73, 60, (414,9,0): 71, 73, 60, (414,10,0): 72, 72, 60, (414,11,0): 72, 72, 60, (414,12,0): 72, 72, 60, (414,13,0): 72, 72, 60, (414,14,0): 74, 72, 60, (414,15,0): 74, 72, 60, (414,16,0): 78, 74, 63, (414,17,0): 78, 74, 63, (414,18,0): 78, 74, 63, (414,19,0): 78, 74, 63, (414,20,0): 81, 75, 63, (414,21,0): 81, 75, 63, (414,22,0): 81, 75, 63, (414,23,0): 82, 76, 62, (414,24,0): 86, 78, 65, (414,25,0): 86, 78, 65, (414,26,0): 88, 79, 64, (414,27,0): 89, 80, 65, (414,28,0): 90, 81, 66, (414,29,0): 92, 83, 68, (414,30,0): 95, 83, 67, (414,31,0): 95, 83, 67, (414,32,0): 100, 87, 70, (414,33,0): 99, 86, 69, (414,34,0): 97, 84, 67, (414,35,0): 95, 82, 65, (414,36,0): 94, 81, 62, (414,37,0): 94, 81, 62, (414,38,0): 94, 83, 61, (414,39,0): 94, 83, 61, (414,40,0): 98, 90, 67, (414,41,0): 100, 92, 69, (414,42,0): 101, 95, 69, (414,43,0): 104, 98, 72, (414,44,0): 106, 101, 72, (414,45,0): 107, 102, 73, (414,46,0): 108, 103, 74, (414,47,0): 108, 103, 74, (414,48,0): 114, 107, 81, (414,49,0): 114, 107, 81, (414,50,0): 113, 106, 80, (414,51,0): 113, 106, 80, (414,52,0): 113, 106, 80, (414,53,0): 114, 107, 81, (414,54,0): 115, 108, 82, (414,55,0): 116, 109, 83, (414,56,0): 116, 109, 83, (414,57,0): 116, 109, 83, (414,58,0): 115, 108, 82, (414,59,0): 115, 108, 82, (414,60,0): 114, 107, 81, (414,61,0): 113, 106, 80, (414,62,0): 112, 105, 79, (414,63,0): 112, 105, 77, (414,64,0): 114, 109, 79, (414,65,0): 111, 106, 74, (414,66,0): 109, 104, 74, (414,67,0): 108, 103, 73, (414,68,0): 110, 105, 75, (414,69,0): 110, 105, 75, (414,70,0): 108, 103, 74, (414,71,0): 106, 101, 72, (414,72,0): 104, 98, 72, (414,73,0): 100, 94, 68, (414,74,0): 93, 87, 61, (414,75,0): 88, 82, 56, (414,76,0): 85, 79, 55, (414,77,0): 81, 75, 51, (414,78,0): 76, 70, 46, (414,79,0): 72, 66, 44, (414,80,0): 75, 64, 46, (414,81,0): 74, 62, 46, (414,82,0): 72, 60, 44, (414,83,0): 69, 57, 41, (414,84,0): 66, 54, 38, (414,85,0): 64, 52, 36, (414,86,0): 62, 50, 34, (414,87,0): 61, 49, 33, (414,88,0): 56, 44, 28, (414,89,0): 56, 44, 28, (414,90,0): 56, 44, 28, (414,91,0): 56, 44, 28, (414,92,0): 56, 44, 28, (414,93,0): 56, 44, 28, (414,94,0): 56, 44, 28, (414,95,0): 56, 44, 28, (414,96,0): 54, 40, 29, (414,97,0): 54, 40, 29, (414,98,0): 54, 40, 29, (414,99,0): 54, 40, 29, (414,100,0): 54, 40, 29, (414,101,0): 54, 40, 29, (414,102,0): 54, 40, 29, (414,103,0): 54, 40, 29, (414,104,0): 54, 40, 29, (414,105,0): 54, 40, 29, (414,106,0): 54, 40, 29, (414,107,0): 54, 40, 29, (414,108,0): 54, 40, 29, (414,109,0): 54, 40, 29, (414,110,0): 54, 40, 29, (414,111,0): 54, 40, 27, (414,112,0): 58, 40, 28, (414,113,0): 58, 40, 26, (414,114,0): 58, 40, 26, (414,115,0): 59, 41, 27, (414,116,0): 59, 41, 27, (414,117,0): 60, 42, 28, (414,118,0): 60, 42, 28, (414,119,0): 61, 43, 29, (414,120,0): 60, 42, 28, (414,121,0): 60, 42, 28, (414,122,0): 60, 42, 28, (414,123,0): 60, 42, 28, (414,124,0): 60, 42, 28, (414,125,0): 60, 42, 28, (414,126,0): 60, 42, 28, (414,127,0): 60, 42, 30, (414,128,0): 59, 40, 33, (414,129,0): 59, 40, 34, (414,130,0): 58, 39, 33, (414,131,0): 58, 39, 33, (414,132,0): 58, 39, 33, (414,133,0): 60, 41, 35, (414,134,0): 61, 42, 36, (414,135,0): 62, 43, 37, (414,136,0): 60, 41, 35, (414,137,0): 62, 43, 37, (414,138,0): 64, 45, 39, (414,139,0): 66, 47, 41, (414,140,0): 68, 49, 43, (414,141,0): 69, 50, 44, (414,142,0): 69, 50, 44, (414,143,0): 69, 50, 44, (414,144,0): 75, 56, 50, (414,145,0): 77, 58, 52, (414,146,0): 80, 61, 55, (414,147,0): 84, 65, 59, (414,148,0): 87, 68, 62, (414,149,0): 89, 70, 64, (414,150,0): 90, 71, 65, (414,151,0): 90, 71, 65, (414,152,0): 92, 73, 67, (414,153,0): 92, 73, 67, (414,154,0): 92, 73, 67, (414,155,0): 92, 73, 67, (414,156,0): 92, 73, 67, (414,157,0): 92, 73, 67, (414,158,0): 92, 73, 67, (414,159,0): 91, 74, 67, (414,160,0): 92, 74, 70, (414,161,0): 90, 75, 70, (414,162,0): 91, 76, 71, (414,163,0): 92, 77, 70, (414,164,0): 93, 78, 71, (414,165,0): 94, 80, 71, (414,166,0): 96, 79, 71, (414,167,0): 97, 80, 70, (414,168,0): 94, 76, 64, (414,169,0): 94, 76, 64, (414,170,0): 95, 76, 62, (414,171,0): 95, 76, 62, (414,172,0): 96, 77, 62, (414,173,0): 96, 77, 62, (414,174,0): 97, 78, 61, (414,175,0): 100, 78, 64, (414,176,0): 100, 73, 64, (414,177,0): 101, 72, 66, (414,178,0): 101, 72, 66, (414,179,0): 101, 74, 67, (414,180,0): 102, 75, 68, (414,181,0): 103, 76, 69, (414,182,0): 103, 76, 69, (414,183,0): 101, 77, 67, (414,184,0): 104, 77, 68, (414,185,0): 103, 79, 69, (414,186,0): 105, 81, 71, (414,187,0): 106, 82, 70, (414,188,0): 105, 83, 72, (414,189,0): 104, 82, 69, (414,190,0): 102, 80, 69, (414,191,0): 102, 77, 72, (414,192,0): 103, 74, 78, (414,193,0): 106, 77, 82, (414,194,0): 110, 79, 84, (414,195,0): 111, 80, 85, (414,196,0): 112, 82, 84, (414,197,0): 116, 86, 88, (414,198,0): 124, 94, 94, (414,199,0): 129, 100, 102, (414,200,0): 150, 126, 126, (414,201,0): 175, 155, 156, (414,202,0): 202, 186, 187, (414,203,0): 211, 199, 203, (414,204,0): 208, 198, 206, (414,205,0): 202, 197, 204, (414,206,0): 196, 193, 202, (414,207,0): 188, 192, 204, (414,208,0): 176, 192, 207, (414,209,0): 170, 193, 209, (414,210,0): 169, 192, 210, (414,211,0): 166, 192, 209, (414,212,0): 164, 189, 209, (414,213,0): 161, 188, 209, (414,214,0): 159, 187, 209, (414,215,0): 157, 187, 211, (414,216,0): 154, 186, 211, (414,217,0): 152, 186, 213, (414,218,0): 151, 186, 214, (414,219,0): 149, 186, 215, (414,220,0): 146, 185, 216, (414,221,0): 146, 185, 216, (414,222,0): 145, 186, 218, (414,223,0): 144, 184, 219, (414,224,0): 145, 184, 223, (414,225,0): 145, 184, 225, (414,226,0): 145, 184, 227, (414,227,0): 146, 185, 228, (414,228,0): 146, 185, 228, (414,229,0): 147, 186, 229, (414,230,0): 147, 185, 230, (414,231,0): 147, 185, 230, (414,232,0): 148, 186, 233, (414,233,0): 148, 186, 233, (414,234,0): 147, 185, 232, (414,235,0): 146, 184, 231, (414,236,0): 146, 184, 233, (414,237,0): 145, 183, 232, (414,238,0): 144, 182, 231, (414,239,0): 144, 182, 231, (414,240,0): 142, 183, 229, (414,241,0): 143, 184, 230, (414,242,0): 144, 184, 233, (414,243,0): 145, 185, 234, (414,244,0): 144, 184, 235, (414,245,0): 142, 182, 233, (414,246,0): 143, 180, 233, (414,247,0): 141, 178, 231, (414,248,0): 142, 177, 235, (414,249,0): 142, 177, 235, (414,250,0): 143, 177, 238, (414,251,0): 144, 178, 239, (414,252,0): 146, 180, 243, (414,253,0): 147, 181, 244, (414,254,0): 150, 181, 246, (414,255,0): 148, 182, 246, (414,256,0): 144, 184, 245, (414,257,0): 143, 185, 245, (414,258,0): 143, 185, 245, (414,259,0): 143, 185, 245, (414,260,0): 143, 184, 246, (414,261,0): 143, 184, 246, (414,262,0): 143, 184, 248, (414,263,0): 143, 184, 248, (414,264,0): 146, 187, 251, (414,265,0): 146, 187, 251, (414,266,0): 147, 188, 254, (414,267,0): 149, 190, 255, (414,268,0): 151, 191, 255, (414,269,0): 152, 192, 255, (414,270,0): 153, 193, 255, (414,271,0): 155, 194, 255, (414,272,0): 154, 191, 255, (414,273,0): 156, 191, 255, (414,274,0): 156, 191, 255, (414,275,0): 157, 192, 255, (414,276,0): 157, 192, 255, (414,277,0): 158, 193, 255, (414,278,0): 158, 194, 255, (414,279,0): 159, 195, 255, (414,280,0): 157, 193, 255, (414,281,0): 158, 194, 255, (414,282,0): 158, 194, 254, (414,283,0): 158, 194, 254, (414,284,0): 159, 195, 253, (414,285,0): 159, 195, 253, (414,286,0): 160, 196, 254, (414,287,0): 160, 196, 254, (414,288,0): 163, 195, 255, (414,289,0): 162, 194, 255, (414,290,0): 163, 193, 253, (414,291,0): 163, 193, 253, (414,292,0): 165, 194, 254, (414,293,0): 167, 196, 255, (414,294,0): 172, 196, 255, (414,295,0): 173, 197, 255, (414,296,0): 180, 200, 255, (414,297,0): 178, 198, 255, (414,298,0): 179, 198, 255, (414,299,0): 184, 200, 255, (414,300,0): 188, 203, 255, (414,301,0): 188, 200, 255, (414,302,0): 179, 191, 251, (414,303,0): 171, 181, 242, (414,304,0): 159, 167, 229, (414,305,0): 148, 153, 209, (414,306,0): 142, 144, 192, (414,307,0): 148, 148, 186, (414,308,0): 153, 152, 184, (414,309,0): 155, 151, 184, (414,310,0): 160, 155, 195, (414,311,0): 167, 161, 205, (414,312,0): 166, 163, 208, (414,313,0): 162, 159, 202, (414,314,0): 157, 155, 194, (414,315,0): 155, 152, 183, (414,316,0): 155, 151, 176, (414,317,0): 159, 151, 172, (414,318,0): 163, 151, 171, (414,319,0): 167, 150, 169, (414,320,0): 167, 144, 164, (414,321,0): 170, 141, 161, (414,322,0): 163, 128, 148, (414,323,0): 143, 104, 122, (414,324,0): 124, 80, 95, (414,325,0): 108, 62, 73, (414,326,0): 91, 45, 55, (414,327,0): 75, 32, 39, (414,328,0): 73, 34, 39, (414,329,0): 62, 30, 33, (414,330,0): 57, 28, 32, (414,331,0): 56, 29, 36, (414,332,0): 53, 27, 38, (414,333,0): 48, 22, 35, (414,334,0): 49, 21, 36, (414,335,0): 53, 25, 40, (414,336,0): 45, 19, 32, (414,337,0): 43, 19, 32, (414,338,0): 43, 19, 32, (414,339,0): 42, 18, 31, (414,340,0): 42, 18, 31, (414,341,0): 40, 18, 30, (414,342,0): 40, 18, 30, (414,343,0): 39, 19, 30, (414,344,0): 38, 18, 29, (414,345,0): 38, 18, 29, (414,346,0): 38, 18, 29, (414,347,0): 36, 19, 29, (414,348,0): 37, 20, 30, (414,349,0): 36, 20, 30, (414,350,0): 37, 20, 30, (414,351,0): 37, 20, 30, (414,352,0): 41, 21, 32, (414,353,0): 41, 21, 32, (414,354,0): 41, 21, 32, (414,355,0): 41, 21, 32, (414,356,0): 41, 21, 32, (414,357,0): 41, 21, 32, (414,358,0): 41, 21, 32, (414,359,0): 41, 21, 32, (414,360,0): 40, 20, 31, (414,361,0): 40, 20, 31, (414,362,0): 40, 20, 31, (414,363,0): 39, 19, 30, (414,364,0): 39, 19, 30, (414,365,0): 39, 19, 30, (414,366,0): 39, 19, 30, (414,367,0): 38, 18, 27, (414,368,0): 41, 20, 25, (414,369,0): 41, 21, 23, (414,370,0): 42, 22, 24, (414,371,0): 42, 22, 24, (414,372,0): 42, 23, 27, (414,373,0): 42, 23, 27, (414,374,0): 43, 24, 30, (414,375,0): 43, 24, 30, (414,376,0): 44, 27, 33, (414,377,0): 44, 27, 33, (414,378,0): 43, 28, 35, (414,379,0): 43, 28, 35, (414,380,0): 43, 27, 37, (414,381,0): 43, 27, 37, (414,382,0): 41, 28, 37, (414,383,0): 41, 28, 35, (414,384,0): 43, 26, 34, (414,385,0): 42, 25, 31, (414,386,0): 42, 25, 31, (414,387,0): 42, 25, 31, (414,388,0): 42, 25, 31, (414,389,0): 42, 25, 31, (414,390,0): 42, 25, 31, (414,391,0): 42, 25, 31, (414,392,0): 43, 26, 32, (414,393,0): 42, 25, 31, (414,394,0): 42, 25, 31, (414,395,0): 41, 24, 30, (414,396,0): 41, 24, 30, (414,397,0): 40, 23, 29, (414,398,0): 40, 23, 29, (414,399,0): 40, 23, 29, (414,400,0): 43, 26, 32, (414,401,0): 42, 25, 31, (414,402,0): 42, 25, 31, (414,403,0): 41, 24, 30, (414,404,0): 39, 22, 30, (414,405,0): 38, 21, 29, (414,406,0): 38, 21, 29, (414,407,0): 37, 20, 28, (414,408,0): 38, 21, 31, (414,409,0): 38, 21, 31, (414,410,0): 37, 19, 31, (414,411,0): 36, 18, 30, (414,412,0): 35, 17, 29, (414,413,0): 34, 16, 28, (414,414,0): 33, 15, 29, (414,415,0): 33, 15, 29, (414,416,0): 30, 12, 26, (414,417,0): 30, 12, 26, (414,418,0): 31, 13, 27, (414,419,0): 31, 13, 27, (414,420,0): 32, 14, 28, (414,421,0): 32, 14, 28, (414,422,0): 32, 14, 28, (414,423,0): 33, 15, 29, (414,424,0): 31, 13, 27, (414,425,0): 31, 13, 27, (414,426,0): 32, 14, 28, (414,427,0): 33, 15, 29, (414,428,0): 33, 15, 29, (414,429,0): 34, 16, 30, (414,430,0): 34, 16, 30, (414,431,0): 33, 17, 30, (414,432,0): 35, 19, 30, (414,433,0): 33, 21, 31, (414,434,0): 33, 21, 31, (414,435,0): 28, 21, 29, (414,436,0): 27, 20, 27, (414,437,0): 29, 24, 30, (414,438,0): 33, 31, 34, (414,439,0): 37, 37, 37, (414,440,0): 41, 41, 41, (414,441,0): 45, 44, 42, (414,442,0): 51, 47, 44, (414,443,0): 55, 51, 48, (414,444,0): 60, 52, 49, (414,445,0): 61, 53, 50, (414,446,0): 62, 51, 49, (414,447,0): 60, 50, 48, (414,448,0): 61, 52, 53, (414,449,0): 57, 51, 51, (414,450,0): 53, 45, 43, (414,451,0): 48, 38, 37, (414,452,0): 45, 33, 33, (414,453,0): 47, 35, 35, (414,454,0): 55, 41, 40, (414,455,0): 61, 47, 46, (414,456,0): 66, 52, 49, (414,457,0): 70, 56, 53, (414,458,0): 74, 63, 59, (414,459,0): 77, 68, 63, (414,460,0): 79, 72, 64, (414,461,0): 80, 76, 67, (414,462,0): 83, 80, 71, (414,463,0): 86, 83, 74, (414,464,0): 84, 84, 76, (414,465,0): 90, 91, 83, (414,466,0): 97, 100, 91, (414,467,0): 104, 107, 98, (414,468,0): 115, 116, 108, (414,469,0): 122, 122, 112, (414,470,0): 119, 112, 104, (414,471,0): 106, 99, 89, (414,472,0): 92, 86, 74, (414,473,0): 78, 72, 58, (414,474,0): 79, 76, 59, (414,475,0): 92, 87, 67, (414,476,0): 99, 86, 67, (414,477,0): 109, 88, 69, (414,478,0): 121, 90, 72, (414,479,0): 127, 81, 66, (414,480,0): 141, 78, 63, (414,481,0): 148, 79, 64, (414,482,0): 147, 84, 67, (414,483,0): 144, 87, 70, (414,484,0): 136, 88, 68, (414,485,0): 128, 87, 67, (414,486,0): 120, 88, 67, (414,487,0): 114, 89, 67, (414,488,0): 106, 85, 64, (414,489,0): 106, 90, 67, (414,490,0): 107, 92, 71, (414,491,0): 105, 90, 71, (414,492,0): 100, 84, 68, (414,493,0): 95, 79, 63, (414,494,0): 93, 75, 61, (414,495,0): 96, 74, 61, (414,496,0): 100, 73, 64, (414,497,0): 96, 67, 59, (414,498,0): 91, 60, 55, (414,499,0): 85, 56, 50, (414,500,0): 83, 52, 49, (414,501,0): 79, 50, 46, (414,502,0): 76, 45, 43, (414,503,0): 72, 42, 40, (414,504,0): 69, 37, 40, (414,505,0): 66, 36, 38, (414,506,0): 64, 32, 37, (414,507,0): 59, 28, 33, (414,508,0): 57, 24, 31, (414,509,0): 54, 23, 29, (414,510,0): 55, 22, 31, (414,511,0): 54, 23, 31, (414,512,0): 48, 21, 26, (414,513,0): 48, 21, 26, (414,514,0): 50, 21, 26, (414,515,0): 50, 21, 26, (414,516,0): 51, 20, 26, (414,517,0): 52, 19, 26, (414,518,0): 54, 19, 26, (414,519,0): 55, 20, 27, (414,520,0): 64, 29, 36, (414,521,0): 61, 26, 33, (414,522,0): 56, 23, 30, (414,523,0): 52, 21, 27, (414,524,0): 50, 21, 26, (414,525,0): 50, 21, 26, (414,526,0): 50, 23, 28, (414,527,0): 53, 24, 29, (414,528,0): 57, 24, 31, (414,529,0): 59, 26, 33, (414,530,0): 59, 30, 35, (414,531,0): 56, 29, 34, (414,532,0): 50, 28, 31, (414,533,0): 49, 27, 30, (414,534,0): 52, 27, 31, (414,535,0): 55, 28, 33, (414,536,0): 58, 29, 34, (414,537,0): 56, 25, 31, (414,538,0): 52, 21, 27, (414,539,0): 50, 19, 25, (414,540,0): 51, 22, 27, (414,541,0): 49, 24, 28, (414,542,0): 47, 25, 28, (414,543,0): 46, 24, 26, (414,544,0): 53, 24, 26, (414,545,0): 54, 24, 24, (414,546,0): 55, 25, 25, (414,547,0): 56, 26, 26, (414,548,0): 57, 29, 28, (414,549,0): 60, 32, 31, (414,550,0): 63, 35, 34, (414,551,0): 64, 36, 35, (414,552,0): 60, 34, 33, (414,553,0): 61, 35, 34, (414,554,0): 61, 37, 35, (414,555,0): 62, 38, 36, (414,556,0): 62, 38, 36, (414,557,0): 61, 37, 35, (414,558,0): 57, 36, 33, (414,559,0): 56, 35, 32, (414,560,0): 55, 35, 34, (414,561,0): 58, 38, 37, (414,562,0): 61, 41, 40, (414,563,0): 62, 42, 41, (414,564,0): 60, 42, 40, (414,565,0): 61, 43, 41, (414,566,0): 63, 45, 41, (414,567,0): 66, 48, 44, (414,568,0): 69, 54, 49, (414,569,0): 74, 59, 54, (414,570,0): 76, 63, 55, (414,571,0): 74, 61, 53, (414,572,0): 70, 57, 49, (414,573,0): 70, 57, 49, (414,574,0): 73, 63, 53, (414,575,0): 80, 67, 58, (414,576,0): 82, 65, 58, (414,577,0): 91, 67, 63, (414,578,0): 101, 73, 69, (414,579,0): 107, 76, 73, (414,580,0): 111, 76, 74, (414,581,0): 112, 74, 73, (414,582,0): 112, 74, 73, (414,583,0): 111, 76, 74, (414,584,0): 108, 78, 76, (414,585,0): 102, 77, 73, (414,586,0): 98, 77, 74, (414,587,0): 98, 78, 77, (414,588,0): 102, 82, 84, (414,589,0): 104, 85, 89, (414,590,0): 104, 85, 91, (414,591,0): 103, 82, 89, (414,592,0): 103, 82, 87, (414,593,0): 102, 83, 87, (414,594,0): 102, 83, 87, (414,595,0): 100, 84, 87, (414,596,0): 98, 83, 86, (414,597,0): 95, 83, 85, (414,598,0): 93, 81, 83, (414,599,0): 92, 80, 82, (415,0,0): 73, 81, 66, (415,1,0): 73, 81, 66, (415,2,0): 73, 81, 66, (415,3,0): 73, 81, 66, (415,4,0): 74, 80, 66, (415,5,0): 74, 80, 66, (415,6,0): 73, 79, 65, (415,7,0): 73, 79, 65, (415,8,0): 70, 74, 60, (415,9,0): 70, 74, 60, (415,10,0): 71, 73, 60, (415,11,0): 71, 73, 60, (415,12,0): 71, 73, 60, (415,13,0): 71, 73, 60, (415,14,0): 72, 72, 60, (415,15,0): 74, 72, 60, (415,16,0): 77, 75, 63, (415,17,0): 78, 74, 63, (415,18,0): 78, 74, 63, (415,19,0): 78, 74, 63, (415,20,0): 78, 74, 62, (415,21,0): 81, 75, 63, (415,22,0): 81, 75, 63, (415,23,0): 81, 75, 61, (415,24,0): 85, 77, 64, (415,25,0): 86, 78, 65, (415,26,0): 88, 79, 64, (415,27,0): 89, 80, 65, (415,28,0): 90, 81, 66, (415,29,0): 92, 83, 68, (415,30,0): 93, 84, 67, (415,31,0): 95, 83, 67, (415,32,0): 101, 88, 71, (415,33,0): 100, 87, 70, (415,34,0): 100, 84, 68, (415,35,0): 96, 83, 66, (415,36,0): 95, 82, 63, (415,37,0): 95, 82, 63, (415,38,0): 95, 83, 61, (415,39,0): 94, 83, 61, (415,40,0): 100, 89, 67, (415,41,0): 99, 91, 68, (415,42,0): 102, 94, 71, (415,43,0): 105, 98, 72, (415,44,0): 107, 100, 74, (415,45,0): 107, 101, 75, (415,46,0): 109, 102, 76, (415,47,0): 109, 102, 76, (415,48,0): 116, 109, 83, (415,49,0): 117, 107, 82, (415,50,0): 116, 106, 81, (415,51,0): 115, 105, 80, (415,52,0): 116, 106, 81, (415,53,0): 115, 108, 82, (415,54,0): 116, 109, 83, (415,55,0): 117, 110, 84, (415,56,0): 117, 110, 84, (415,57,0): 117, 110, 84, (415,58,0): 116, 109, 83, (415,59,0): 114, 107, 81, (415,60,0): 113, 106, 80, (415,61,0): 112, 105, 79, (415,62,0): 111, 104, 78, (415,63,0): 109, 103, 77, (415,64,0): 114, 109, 80, (415,65,0): 110, 106, 77, (415,66,0): 107, 103, 74, (415,67,0): 107, 103, 74, (415,68,0): 109, 105, 78, (415,69,0): 109, 105, 78, (415,70,0): 108, 104, 77, (415,71,0): 105, 101, 74, (415,72,0): 104, 100, 75, (415,73,0): 99, 95, 70, (415,74,0): 93, 89, 64, (415,75,0): 88, 84, 59, (415,76,0): 85, 80, 58, (415,77,0): 81, 76, 54, (415,78,0): 75, 70, 48, (415,79,0): 72, 66, 44, (415,80,0): 74, 65, 48, (415,81,0): 73, 64, 47, (415,82,0): 71, 62, 47, (415,83,0): 68, 59, 42, (415,84,0): 65, 56, 39, (415,85,0): 63, 54, 37, (415,86,0): 61, 52, 35, (415,87,0): 60, 51, 34, (415,88,0): 55, 46, 29, (415,89,0): 57, 45, 29, (415,90,0): 57, 45, 29, (415,91,0): 57, 45, 29, (415,92,0): 57, 45, 29, (415,93,0): 57, 46, 28, (415,94,0): 57, 45, 29, (415,95,0): 57, 45, 29, (415,96,0): 54, 40, 27, (415,97,0): 54, 40, 27, (415,98,0): 54, 40, 27, (415,99,0): 54, 40, 27, (415,100,0): 54, 40, 27, (415,101,0): 54, 40, 27, (415,102,0): 54, 40, 27, (415,103,0): 54, 40, 29, (415,104,0): 55, 41, 30, (415,105,0): 55, 41, 30, (415,106,0): 55, 41, 30, (415,107,0): 55, 41, 30, (415,108,0): 55, 41, 30, (415,109,0): 55, 41, 30, (415,110,0): 55, 41, 30, (415,111,0): 57, 40, 30, (415,112,0): 58, 40, 28, (415,113,0): 58, 40, 26, (415,114,0): 59, 41, 29, (415,115,0): 59, 41, 27, (415,116,0): 60, 42, 30, (415,117,0): 60, 42, 28, (415,118,0): 61, 43, 31, (415,119,0): 61, 43, 29, (415,120,0): 60, 42, 30, (415,121,0): 60, 42, 28, (415,122,0): 60, 42, 30, (415,123,0): 60, 42, 28, (415,124,0): 60, 42, 30, (415,125,0): 60, 42, 28, (415,126,0): 60, 42, 30, (415,127,0): 60, 42, 30, (415,128,0): 59, 40, 33, (415,129,0): 59, 40, 34, (415,130,0): 58, 39, 33, (415,131,0): 58, 39, 33, (415,132,0): 58, 39, 33, (415,133,0): 60, 41, 35, (415,134,0): 61, 42, 36, (415,135,0): 62, 43, 37, (415,136,0): 58, 39, 33, (415,137,0): 60, 41, 35, (415,138,0): 62, 43, 37, (415,139,0): 64, 45, 39, (415,140,0): 66, 47, 41, (415,141,0): 67, 48, 42, (415,142,0): 67, 48, 42, (415,143,0): 67, 48, 42, (415,144,0): 74, 55, 49, (415,145,0): 76, 57, 51, (415,146,0): 80, 61, 55, (415,147,0): 84, 65, 59, (415,148,0): 88, 69, 63, (415,149,0): 91, 72, 66, (415,150,0): 92, 73, 67, (415,151,0): 93, 74, 68, (415,152,0): 91, 72, 66, (415,153,0): 91, 72, 66, (415,154,0): 91, 72, 66, (415,155,0): 91, 72, 66, (415,156,0): 91, 72, 66, (415,157,0): 90, 73, 66, (415,158,0): 91, 72, 66, (415,159,0): 90, 73, 66, (415,160,0): 93, 75, 71, (415,161,0): 93, 75, 71, (415,162,0): 93, 75, 71, (415,163,0): 94, 77, 70, (415,164,0): 95, 78, 71, (415,165,0): 96, 79, 71, (415,166,0): 96, 79, 71, (415,167,0): 97, 80, 70, (415,168,0): 94, 76, 64, (415,169,0): 94, 76, 64, (415,170,0): 93, 75, 61, (415,171,0): 93, 75, 61, (415,172,0): 96, 77, 63, (415,173,0): 96, 79, 63, (415,174,0): 98, 81, 65, (415,175,0): 103, 81, 67, (415,176,0): 101, 74, 65, (415,177,0): 103, 73, 65, (415,178,0): 102, 73, 67, (415,179,0): 103, 74, 66, (415,180,0): 103, 74, 68, (415,181,0): 102, 75, 66, (415,182,0): 103, 76, 67, (415,183,0): 103, 76, 67, (415,184,0): 103, 76, 67, (415,185,0): 102, 78, 68, (415,186,0): 104, 80, 68, (415,187,0): 104, 82, 69, (415,188,0): 104, 82, 69, (415,189,0): 103, 81, 68, (415,190,0): 101, 79, 66, (415,191,0): 100, 77, 69, (415,192,0): 98, 72, 73, (415,193,0): 101, 75, 78, (415,194,0): 106, 77, 81, (415,195,0): 108, 79, 81, (415,196,0): 111, 81, 83, (415,197,0): 114, 84, 84, (415,198,0): 119, 89, 89, (415,199,0): 122, 94, 93, (415,200,0): 129, 103, 104, (415,201,0): 161, 137, 137, (415,202,0): 195, 175, 176, (415,203,0): 212, 193, 195, (415,204,0): 212, 197, 202, (415,205,0): 207, 196, 202, (415,206,0): 203, 193, 201, (415,207,0): 193, 192, 200, (415,208,0): 181, 190, 205, (415,209,0): 174, 191, 207, (415,210,0): 172, 191, 208, (415,211,0): 169, 190, 207, (415,212,0): 167, 188, 207, (415,213,0): 163, 188, 208, (415,214,0): 160, 187, 208, (415,215,0): 159, 187, 209, (415,216,0): 155, 187, 210, (415,217,0): 153, 187, 212, (415,218,0): 151, 187, 213, (415,219,0): 150, 187, 214, (415,220,0): 147, 186, 215, (415,221,0): 147, 186, 215, (415,222,0): 146, 187, 217, (415,223,0): 145, 186, 218, (415,224,0): 145, 185, 221, (415,225,0): 146, 185, 224, (415,226,0): 147, 184, 226, (415,227,0): 147, 186, 227, (415,228,0): 148, 185, 227, (415,229,0): 149, 186, 228, (415,230,0): 149, 186, 230, (415,231,0): 149, 186, 230, (415,232,0): 150, 187, 232, (415,233,0): 150, 187, 232, (415,234,0): 149, 186, 231, (415,235,0): 148, 184, 232, (415,236,0): 147, 183, 231, (415,237,0): 147, 183, 233, (415,238,0): 146, 182, 232, (415,239,0): 146, 182, 230, (415,240,0): 146, 182, 230, (415,241,0): 147, 183, 231, (415,242,0): 148, 184, 232, (415,243,0): 148, 186, 235, (415,244,0): 148, 184, 234, (415,245,0): 146, 182, 234, (415,246,0): 144, 180, 232, (415,247,0): 143, 178, 232, (415,248,0): 141, 176, 232, (415,249,0): 142, 177, 233, (415,250,0): 145, 177, 236, (415,251,0): 144, 179, 237, (415,252,0): 146, 180, 241, (415,253,0): 147, 181, 242, (415,254,0): 150, 181, 245, (415,255,0): 149, 183, 246, (415,256,0): 144, 184, 245, (415,257,0): 143, 185, 245, (415,258,0): 143, 184, 246, (415,259,0): 143, 184, 246, (415,260,0): 143, 184, 246, (415,261,0): 143, 184, 246, (415,262,0): 143, 184, 248, (415,263,0): 143, 184, 248, (415,264,0): 146, 187, 251, (415,265,0): 147, 188, 252, (415,266,0): 148, 189, 255, (415,267,0): 149, 190, 255, (415,268,0): 151, 192, 255, (415,269,0): 153, 194, 255, (415,270,0): 154, 194, 255, (415,271,0): 155, 194, 255, (415,272,0): 154, 192, 255, (415,273,0): 156, 191, 255, (415,274,0): 157, 192, 255, (415,275,0): 157, 192, 255, (415,276,0): 158, 194, 255, (415,277,0): 158, 194, 255, (415,278,0): 159, 195, 255, (415,279,0): 159, 195, 255, (415,280,0): 157, 193, 253, (415,281,0): 159, 193, 254, (415,282,0): 159, 193, 254, (415,283,0): 160, 195, 253, (415,284,0): 160, 195, 253, (415,285,0): 161, 196, 254, (415,286,0): 161, 196, 254, (415,287,0): 161, 196, 254, (415,288,0): 163, 195, 254, (415,289,0): 163, 195, 254, (415,290,0): 164, 194, 254, (415,291,0): 165, 194, 252, (415,292,0): 166, 195, 255, (415,293,0): 170, 196, 255, (415,294,0): 173, 197, 255, (415,295,0): 177, 197, 255, (415,296,0): 184, 203, 255, (415,297,0): 184, 200, 255, (415,298,0): 184, 198, 255, (415,299,0): 188, 200, 255, (415,300,0): 191, 201, 255, (415,301,0): 186, 195, 254, (415,302,0): 174, 182, 244, (415,303,0): 166, 172, 232, (415,304,0): 154, 159, 215, (415,305,0): 149, 151, 202, (415,306,0): 145, 146, 190, (415,307,0): 150, 149, 189, (415,308,0): 155, 153, 190, (415,309,0): 158, 156, 193, (415,310,0): 163, 161, 201, (415,311,0): 169, 166, 211, (415,312,0): 169, 166, 213, (415,313,0): 166, 163, 210, (415,314,0): 162, 160, 200, (415,315,0): 159, 155, 190, (415,316,0): 157, 150, 183, (415,317,0): 158, 149, 176, (415,318,0): 162, 149, 175, (415,319,0): 167, 149, 173, (415,320,0): 173, 145, 167, (415,321,0): 172, 139, 160, (415,322,0): 156, 118, 139, (415,323,0): 129, 88, 106, (415,324,0): 105, 63, 77, (415,325,0): 92, 49, 59, (415,326,0): 84, 41, 50, (415,327,0): 76, 37, 42, (415,328,0): 66, 31, 35, (415,329,0): 58, 28, 30, (415,330,0): 53, 27, 30, (415,331,0): 53, 28, 32, (415,332,0): 50, 24, 33, (415,333,0): 45, 19, 30, (415,334,0): 45, 18, 33, (415,335,0): 50, 23, 38, (415,336,0): 43, 19, 32, (415,337,0): 42, 20, 32, (415,338,0): 41, 19, 31, (415,339,0): 41, 19, 31, (415,340,0): 39, 19, 30, (415,341,0): 39, 19, 30, (415,342,0): 38, 18, 29, (415,343,0): 36, 19, 29, (415,344,0): 37, 17, 28, (415,345,0): 35, 18, 28, (415,346,0): 35, 18, 28, (415,347,0): 36, 19, 29, (415,348,0): 35, 19, 29, (415,349,0): 35, 19, 29, (415,350,0): 36, 20, 30, (415,351,0): 37, 20, 30, (415,352,0): 43, 21, 33, (415,353,0): 43, 22, 31, (415,354,0): 44, 20, 33, (415,355,0): 43, 22, 31, (415,356,0): 43, 21, 33, (415,357,0): 43, 22, 31, (415,358,0): 43, 21, 33, (415,359,0): 43, 22, 31, (415,360,0): 42, 20, 32, (415,361,0): 41, 21, 30, (415,362,0): 40, 20, 31, (415,363,0): 40, 20, 29, (415,364,0): 39, 19, 30, (415,365,0): 38, 18, 27, (415,366,0): 37, 17, 28, (415,367,0): 37, 17, 26, (415,368,0): 39, 20, 24, (415,369,0): 40, 21, 25, (415,370,0): 41, 20, 25, (415,371,0): 40, 21, 25, (415,372,0): 41, 22, 26, (415,373,0): 41, 22, 28, (415,374,0): 42, 23, 29, (415,375,0): 42, 23, 29, (415,376,0): 43, 26, 32, (415,377,0): 43, 26, 32, (415,378,0): 42, 27, 34, (415,379,0): 42, 27, 34, (415,380,0): 42, 26, 36, (415,381,0): 42, 26, 36, (415,382,0): 42, 26, 36, (415,383,0): 42, 27, 34, (415,384,0): 42, 25, 33, (415,385,0): 42, 25, 31, (415,386,0): 42, 25, 31, (415,387,0): 42, 25, 31, (415,388,0): 41, 24, 30, (415,389,0): 41, 24, 30, (415,390,0): 41, 24, 30, (415,391,0): 41, 24, 30, (415,392,0): 43, 26, 32, (415,393,0): 43, 26, 32, (415,394,0): 42, 25, 31, (415,395,0): 42, 25, 31, (415,396,0): 41, 24, 30, (415,397,0): 41, 24, 30, (415,398,0): 40, 23, 29, (415,399,0): 40, 23, 29, (415,400,0): 46, 26, 35, (415,401,0): 46, 26, 35, (415,402,0): 44, 24, 33, (415,403,0): 41, 24, 32, (415,404,0): 41, 21, 30, (415,405,0): 38, 21, 29, (415,406,0): 36, 19, 29, (415,407,0): 36, 19, 29, (415,408,0): 37, 20, 30, (415,409,0): 37, 20, 30, (415,410,0): 36, 18, 30, (415,411,0): 35, 17, 29, (415,412,0): 34, 16, 28, (415,413,0): 33, 15, 27, (415,414,0): 32, 14, 28, (415,415,0): 32, 14, 28, (415,416,0): 29, 13, 26, (415,417,0): 29, 13, 26, (415,418,0): 29, 13, 26, (415,419,0): 30, 14, 27, (415,420,0): 30, 14, 27, (415,421,0): 31, 15, 28, (415,422,0): 31, 15, 28, (415,423,0): 32, 16, 29, (415,424,0): 30, 14, 27, (415,425,0): 30, 14, 27, (415,426,0): 31, 15, 28, (415,427,0): 32, 16, 29, (415,428,0): 33, 17, 30, (415,429,0): 33, 17, 30, (415,430,0): 32, 16, 29, (415,431,0): 32, 16, 29, (415,432,0): 32, 19, 29, (415,433,0): 32, 21, 29, (415,434,0): 32, 21, 29, (415,435,0): 30, 20, 28, (415,436,0): 27, 20, 27, (415,437,0): 29, 24, 30, (415,438,0): 36, 31, 35, (415,439,0): 40, 38, 41, (415,440,0): 46, 44, 45, (415,441,0): 51, 47, 48, (415,442,0): 56, 52, 51, (415,443,0): 61, 55, 55, (415,444,0): 66, 57, 58, (415,445,0): 67, 57, 56, (415,446,0): 66, 56, 57, (415,447,0): 65, 55, 56, (415,448,0): 70, 61, 62, (415,449,0): 66, 57, 58, (415,450,0): 61, 51, 50, (415,451,0): 52, 42, 41, (415,452,0): 47, 35, 35, (415,453,0): 48, 36, 36, (415,454,0): 55, 41, 40, (415,455,0): 60, 46, 45, (415,456,0): 66, 52, 49, (415,457,0): 70, 56, 53, (415,458,0): 72, 61, 57, (415,459,0): 75, 64, 60, (415,460,0): 76, 67, 60, (415,461,0): 77, 70, 62, (415,462,0): 82, 75, 67, (415,463,0): 84, 80, 71, (415,464,0): 83, 83, 73, (415,465,0): 88, 90, 79, (415,466,0): 94, 97, 86, (415,467,0): 103, 106, 95, (415,468,0): 116, 119, 108, (415,469,0): 125, 125, 115, (415,470,0): 121, 118, 109, (415,471,0): 109, 105, 94, (415,472,0): 90, 86, 75, (415,473,0): 76, 72, 60, (415,474,0): 78, 76, 61, (415,475,0): 91, 85, 69, (415,476,0): 95, 83, 69, (415,477,0): 100, 82, 68, (415,478,0): 109, 81, 69, (415,479,0): 111, 71, 59, (415,480,0): 132, 74, 62, (415,481,0): 147, 79, 66, (415,482,0): 158, 88, 76, (415,483,0): 163, 94, 79, (415,484,0): 159, 92, 76, (415,485,0): 147, 88, 70, (415,486,0): 134, 86, 66, (415,487,0): 124, 88, 66, (415,488,0): 114, 88, 65, (415,489,0): 112, 94, 72, (415,490,0): 112, 100, 78, (415,491,0): 111, 98, 79, (415,492,0): 107, 92, 73, (415,493,0): 102, 85, 69, (415,494,0): 101, 79, 65, (415,495,0): 104, 78, 65, (415,496,0): 104, 76, 65, (415,497,0): 100, 70, 60, (415,498,0): 94, 64, 56, (415,499,0): 89, 59, 51, (415,500,0): 86, 55, 50, (415,501,0): 82, 53, 47, (415,502,0): 78, 49, 45, (415,503,0): 75, 44, 41, (415,504,0): 71, 39, 40, (415,505,0): 71, 37, 38, (415,506,0): 68, 32, 36, (415,507,0): 64, 28, 32, (415,508,0): 61, 24, 31, (415,509,0): 58, 23, 29, (415,510,0): 57, 22, 29, (415,511,0): 56, 23, 30, (415,512,0): 52, 21, 27, (415,513,0): 52, 21, 27, (415,514,0): 52, 21, 27, (415,515,0): 52, 21, 27, (415,516,0): 54, 21, 28, (415,517,0): 56, 21, 28, (415,518,0): 56, 21, 28, (415,519,0): 57, 20, 28, (415,520,0): 68, 28, 37, (415,521,0): 66, 26, 35, (415,522,0): 62, 22, 31, (415,523,0): 57, 20, 28, (415,524,0): 55, 20, 26, (415,525,0): 52, 21, 26, (415,526,0): 53, 24, 28, (415,527,0): 55, 24, 29, (415,528,0): 59, 24, 30, (415,529,0): 62, 25, 32, (415,530,0): 62, 27, 33, (415,531,0): 58, 27, 32, (415,532,0): 56, 25, 30, (415,533,0): 54, 25, 29, (415,534,0): 58, 27, 32, (415,535,0): 62, 30, 35, (415,536,0): 66, 29, 36, (415,537,0): 61, 24, 31, (415,538,0): 55, 18, 26, (415,539,0): 53, 16, 24, (415,540,0): 51, 18, 25, (415,541,0): 52, 21, 27, (415,542,0): 49, 22, 27, (415,543,0): 48, 22, 25, (415,544,0): 56, 24, 25, (415,545,0): 58, 24, 23, (415,546,0): 58, 24, 25, (415,547,0): 59, 25, 24, (415,548,0): 62, 28, 29, (415,549,0): 62, 31, 29, (415,550,0): 65, 33, 34, (415,551,0): 66, 36, 34, (415,552,0): 62, 32, 32, (415,553,0): 62, 34, 31, (415,554,0): 62, 36, 35, (415,555,0): 64, 39, 35, (415,556,0): 64, 38, 37, (415,557,0): 62, 38, 34, (415,558,0): 60, 36, 34, (415,559,0): 57, 36, 33, (415,560,0): 54, 34, 35, (415,561,0): 56, 38, 38, (415,562,0): 60, 40, 41, (415,563,0): 61, 41, 40, (415,564,0): 61, 41, 40, (415,565,0): 61, 43, 39, (415,566,0): 64, 46, 42, (415,567,0): 65, 50, 45, (415,568,0): 70, 55, 50, (415,569,0): 75, 60, 55, (415,570,0): 81, 63, 59, (415,571,0): 80, 62, 58, (415,572,0): 76, 59, 52, (415,573,0): 73, 58, 51, (415,574,0): 77, 64, 55, (415,575,0): 84, 70, 61, (415,576,0): 85, 66, 60, (415,577,0): 94, 70, 66, (415,578,0): 105, 77, 74, (415,579,0): 112, 82, 80, (415,580,0): 113, 82, 80, (415,581,0): 114, 80, 79, (415,582,0): 111, 80, 78, (415,583,0): 110, 80, 78, (415,584,0): 105, 79, 78, (415,585,0): 101, 77, 75, (415,586,0): 96, 76, 75, (415,587,0): 97, 79, 79, (415,588,0): 100, 81, 83, (415,589,0): 101, 82, 86, (415,590,0): 99, 80, 86, (415,591,0): 96, 77, 83, (415,592,0): 101, 80, 85, (415,593,0): 102, 81, 86, (415,594,0): 104, 83, 88, (415,595,0): 103, 84, 88, (415,596,0): 100, 84, 87, (415,597,0): 97, 82, 85, (415,598,0): 95, 80, 83, (415,599,0): 91, 79, 81, (416,0,0): 69, 80, 66, (416,1,0): 69, 80, 66, (416,2,0): 70, 81, 67, (416,3,0): 71, 82, 68, (416,4,0): 73, 81, 68, (416,5,0): 74, 82, 69, (416,6,0): 75, 83, 70, (416,7,0): 75, 83, 70, (416,8,0): 70, 76, 64, (416,9,0): 70, 76, 64, (416,10,0): 71, 74, 63, (416,11,0): 71, 74, 63, (416,12,0): 70, 73, 62, (416,13,0): 69, 72, 61, (416,14,0): 69, 71, 60, (416,15,0): 69, 71, 60, (416,16,0): 73, 71, 59, (416,17,0): 73, 71, 59, (416,18,0): 73, 71, 58, (416,19,0): 74, 72, 59, (416,20,0): 75, 73, 60, (416,21,0): 78, 74, 62, (416,22,0): 80, 77, 62, (416,23,0): 81, 78, 63, (416,24,0): 81, 75, 61, (416,25,0): 82, 76, 60, (416,26,0): 85, 78, 62, (416,27,0): 88, 81, 65, (416,28,0): 89, 82, 64, (416,29,0): 90, 83, 65, (416,30,0): 90, 83, 65, (416,31,0): 91, 82, 65, (416,32,0): 101, 85, 69, (416,33,0): 101, 86, 67, (416,34,0): 101, 84, 66, (416,35,0): 99, 84, 65, (416,36,0): 99, 84, 65, (416,37,0): 98, 83, 64, (416,38,0): 97, 82, 63, (416,39,0): 95, 82, 63, (416,40,0): 99, 86, 67, (416,41,0): 99, 88, 68, (416,42,0): 101, 90, 70, (416,43,0): 103, 92, 70, (416,44,0): 106, 95, 73, (416,45,0): 107, 99, 76, (416,46,0): 111, 100, 78, (416,47,0): 112, 101, 79, (416,48,0): 116, 104, 82, (416,49,0): 117, 105, 83, (416,50,0): 118, 106, 84, (416,51,0): 119, 107, 85, (416,52,0): 119, 107, 85, (416,53,0): 117, 106, 84, (416,54,0): 116, 105, 83, (416,55,0): 115, 104, 82, (416,56,0): 117, 106, 84, (416,57,0): 117, 106, 84, (416,58,0): 115, 107, 84, (416,59,0): 114, 106, 83, (416,60,0): 111, 105, 81, (416,61,0): 109, 103, 79, (416,62,0): 106, 100, 76, (416,63,0): 105, 99, 75, (416,64,0): 105, 103, 80, (416,65,0): 105, 103, 80, (416,66,0): 105, 103, 80, (416,67,0): 106, 104, 81, (416,68,0): 106, 104, 83, (416,69,0): 107, 105, 84, (416,70,0): 107, 105, 84, (416,71,0): 107, 105, 84, (416,72,0): 105, 103, 82, (416,73,0): 102, 100, 79, (416,74,0): 96, 94, 73, (416,75,0): 89, 87, 66, (416,76,0): 84, 82, 61, (416,77,0): 79, 77, 56, (416,78,0): 77, 75, 54, (416,79,0): 76, 73, 54, (416,80,0): 72, 66, 50, (416,81,0): 69, 63, 47, (416,82,0): 66, 60, 46, (416,83,0): 65, 59, 43, (416,84,0): 67, 60, 44, (416,85,0): 66, 59, 43, (416,86,0): 64, 57, 39, (416,87,0): 61, 54, 36, (416,88,0): 60, 53, 35, (416,89,0): 59, 50, 33, (416,90,0): 57, 49, 30, (416,91,0): 54, 46, 27, (416,92,0): 53, 45, 26, (416,93,0): 53, 45, 24, (416,94,0): 56, 45, 27, (416,95,0): 56, 45, 27, (416,96,0): 55, 42, 25, (416,97,0): 55, 42, 25, (416,98,0): 54, 41, 25, (416,99,0): 54, 41, 25, (416,100,0): 53, 40, 24, (416,101,0): 53, 40, 24, (416,102,0): 52, 39, 23, (416,103,0): 52, 38, 25, (416,104,0): 55, 41, 28, (416,105,0): 55, 41, 28, (416,106,0): 56, 42, 29, (416,107,0): 56, 42, 29, (416,108,0): 57, 43, 32, (416,109,0): 57, 43, 32, (416,110,0): 58, 44, 33, (416,111,0): 60, 43, 33, (416,112,0): 60, 42, 32, (416,113,0): 61, 41, 30, (416,114,0): 61, 41, 32, (416,115,0): 61, 41, 30, (416,116,0): 61, 41, 32, (416,117,0): 61, 41, 30, (416,118,0): 61, 41, 32, (416,119,0): 61, 41, 30, (416,120,0): 63, 43, 34, (416,121,0): 62, 42, 31, (416,122,0): 62, 42, 33, (416,123,0): 62, 42, 31, (416,124,0): 62, 42, 33, (416,125,0): 61, 41, 30, (416,126,0): 61, 41, 32, (416,127,0): 61, 41, 32, (416,128,0): 59, 39, 32, (416,129,0): 59, 38, 33, (416,130,0): 59, 38, 33, (416,131,0): 59, 38, 33, (416,132,0): 59, 38, 33, (416,133,0): 59, 38, 33, (416,134,0): 59, 38, 33, (416,135,0): 59, 38, 33, (416,136,0): 61, 40, 35, (416,137,0): 62, 41, 36, (416,138,0): 63, 42, 37, (416,139,0): 64, 43, 38, (416,140,0): 66, 45, 40, (416,141,0): 67, 46, 41, (416,142,0): 69, 48, 43, (416,143,0): 69, 48, 43, (416,144,0): 73, 53, 46, (416,145,0): 77, 57, 50, (416,146,0): 83, 63, 56, (416,147,0): 88, 68, 61, (416,148,0): 92, 72, 65, (416,149,0): 93, 73, 66, (416,150,0): 91, 72, 65, (416,151,0): 90, 71, 64, (416,152,0): 92, 75, 67, (416,153,0): 92, 75, 67, (416,154,0): 91, 74, 66, (416,155,0): 91, 74, 66, (416,156,0): 90, 73, 65, (416,157,0): 88, 74, 65, (416,158,0): 89, 72, 64, (416,159,0): 89, 72, 64, (416,160,0): 93, 74, 68, (416,161,0): 94, 75, 69, (416,162,0): 95, 76, 70, (416,163,0): 96, 77, 70, (416,164,0): 97, 78, 71, (416,165,0): 97, 78, 71, (416,166,0): 96, 77, 70, (416,167,0): 95, 77, 67, (416,168,0): 97, 81, 68, (416,169,0): 97, 81, 68, (416,170,0): 97, 81, 68, (416,171,0): 98, 82, 67, (416,172,0): 99, 81, 67, (416,173,0): 98, 82, 67, (416,174,0): 98, 82, 67, (416,175,0): 99, 81, 67, (416,176,0): 104, 77, 66, (416,177,0): 104, 76, 65, (416,178,0): 103, 74, 66, (416,179,0): 102, 74, 63, (416,180,0): 102, 75, 66, (416,181,0): 103, 76, 65, (416,182,0): 106, 79, 68, (416,183,0): 105, 81, 69, (416,184,0): 106, 82, 70, (416,185,0): 107, 83, 71, (416,186,0): 107, 83, 71, (416,187,0): 105, 83, 70, (416,188,0): 104, 82, 69, (416,189,0): 100, 81, 67, (416,190,0): 98, 79, 65, (416,191,0): 96, 76, 65, (416,192,0): 100, 77, 71, (416,193,0): 100, 76, 74, (416,194,0): 100, 74, 73, (416,195,0): 101, 75, 74, (416,196,0): 106, 78, 77, (416,197,0): 110, 82, 81, (416,198,0): 115, 85, 85, (416,199,0): 117, 87, 87, (416,200,0): 120, 91, 93, (416,201,0): 145, 116, 118, (416,202,0): 172, 146, 147, (416,203,0): 194, 169, 172, (416,204,0): 209, 187, 190, (416,205,0): 219, 199, 201, (416,206,0): 216, 197, 201, (416,207,0): 202, 191, 197, (416,208,0): 187, 187, 199, (416,209,0): 183, 190, 206, (416,210,0): 184, 193, 210, (416,211,0): 179, 192, 208, (416,212,0): 172, 189, 205, (416,213,0): 166, 187, 204, (416,214,0): 162, 188, 205, (416,215,0): 161, 190, 208, (416,216,0): 156, 189, 208, (416,217,0): 154, 189, 209, (416,218,0): 152, 188, 210, (416,219,0): 150, 188, 211, (416,220,0): 148, 188, 213, (416,221,0): 150, 190, 216, (416,222,0): 151, 190, 219, (416,223,0): 152, 191, 220, (416,224,0): 148, 187, 220, (416,225,0): 148, 187, 220, (416,226,0): 150, 186, 222, (416,227,0): 148, 186, 222, (416,228,0): 150, 185, 223, (416,229,0): 150, 185, 223, (416,230,0): 150, 185, 225, (416,231,0): 150, 185, 227, (416,232,0): 151, 184, 229, (416,233,0): 151, 184, 229, (416,234,0): 151, 184, 229, (416,235,0): 151, 183, 230, (416,236,0): 151, 183, 232, (416,237,0): 151, 183, 232, (416,238,0): 151, 181, 231, (416,239,0): 151, 181, 231, (416,240,0): 149, 179, 229, (416,241,0): 149, 180, 227, (416,242,0): 149, 180, 227, (416,243,0): 148, 180, 229, (416,244,0): 149, 179, 229, (416,245,0): 148, 180, 231, (416,246,0): 148, 180, 231, (416,247,0): 148, 180, 231, (416,248,0): 144, 175, 229, (416,249,0): 144, 177, 230, (416,250,0): 145, 176, 231, (416,251,0): 145, 178, 232, (416,252,0): 146, 179, 233, (416,253,0): 147, 180, 234, (416,254,0): 148, 180, 237, (416,255,0): 147, 182, 240, (416,256,0): 143, 183, 244, (416,257,0): 140, 184, 245, (416,258,0): 140, 184, 247, (416,259,0): 141, 185, 248, (416,260,0): 142, 186, 249, (416,261,0): 143, 187, 250, (416,262,0): 143, 187, 250, (416,263,0): 144, 188, 251, (416,264,0): 147, 191, 254, (416,265,0): 148, 192, 255, (416,266,0): 149, 193, 255, (416,267,0): 150, 194, 255, (416,268,0): 150, 194, 255, (416,269,0): 149, 193, 255, (416,270,0): 148, 192, 255, (416,271,0): 149, 190, 252, (416,272,0): 154, 193, 252, (416,273,0): 157, 193, 251, (416,274,0): 159, 195, 253, (416,275,0): 160, 196, 254, (416,276,0): 162, 197, 255, (416,277,0): 162, 197, 255, (416,278,0): 162, 197, 255, (416,279,0): 161, 196, 254, (416,280,0): 160, 195, 253, (416,281,0): 163, 195, 254, (416,282,0): 164, 196, 255, (416,283,0): 165, 197, 254, (416,284,0): 166, 198, 255, (416,285,0): 165, 197, 254, (416,286,0): 165, 196, 253, (416,287,0): 165, 196, 253, (416,288,0): 165, 196, 253, (416,289,0): 165, 196, 253, (416,290,0): 166, 195, 253, (416,291,0): 166, 195, 251, (416,292,0): 170, 194, 254, (416,293,0): 173, 195, 253, (416,294,0): 175, 195, 254, (416,295,0): 179, 195, 254, (416,296,0): 183, 198, 255, (416,297,0): 189, 201, 255, (416,298,0): 193, 201, 255, (416,299,0): 193, 199, 255, (416,300,0): 187, 189, 250, (416,301,0): 176, 178, 237, (416,302,0): 168, 168, 230, (416,303,0): 165, 164, 221, (416,304,0): 154, 152, 199, (416,305,0): 157, 155, 195, (416,306,0): 158, 156, 196, (416,307,0): 156, 154, 194, (416,308,0): 154, 153, 195, (416,309,0): 156, 155, 199, (416,310,0): 160, 161, 209, (416,311,0): 165, 165, 215, (416,312,0): 164, 164, 214, (416,313,0): 160, 158, 208, (416,314,0): 162, 158, 208, (416,315,0): 168, 162, 208, (416,316,0): 167, 158, 201, (416,317,0): 161, 150, 190, (416,318,0): 164, 149, 188, (416,319,0): 174, 155, 187, (416,320,0): 182, 149, 176, (416,321,0): 164, 126, 149, (416,322,0): 134, 95, 116, (416,323,0): 110, 71, 90, (416,324,0): 97, 59, 74, (416,325,0): 88, 50, 61, (416,326,0): 79, 42, 50, (416,327,0): 71, 36, 42, (416,328,0): 62, 32, 34, (416,329,0): 61, 32, 34, (416,330,0): 57, 31, 32, (416,331,0): 54, 28, 31, (416,332,0): 51, 26, 30, (416,333,0): 49, 24, 30, (416,334,0): 47, 21, 32, (416,335,0): 44, 21, 31, (416,336,0): 42, 22, 33, (416,337,0): 40, 23, 33, (416,338,0): 39, 22, 32, (416,339,0): 39, 22, 32, (416,340,0): 38, 21, 31, (416,341,0): 38, 21, 31, (416,342,0): 37, 20, 30, (416,343,0): 36, 20, 30, (416,344,0): 34, 17, 27, (416,345,0): 33, 17, 27, (416,346,0): 33, 17, 27, (416,347,0): 33, 17, 27, (416,348,0): 33, 17, 27, (416,349,0): 33, 17, 27, (416,350,0): 33, 17, 27, (416,351,0): 36, 16, 27, (416,352,0): 47, 21, 32, (416,353,0): 48, 21, 30, (416,354,0): 50, 20, 32, (416,355,0): 48, 21, 30, (416,356,0): 48, 20, 32, (416,357,0): 48, 21, 30, (416,358,0): 47, 21, 32, (416,359,0): 47, 21, 30, (416,360,0): 42, 19, 29, (416,361,0): 40, 19, 26, (416,362,0): 39, 18, 27, (416,363,0): 37, 16, 23, (416,364,0): 36, 16, 25, (416,365,0): 36, 17, 23, (416,366,0): 37, 17, 26, (416,367,0): 37, 18, 24, (416,368,0): 39, 20, 26, (416,369,0): 38, 21, 27, (416,370,0): 41, 22, 28, (416,371,0): 39, 22, 28, (416,372,0): 39, 22, 28, (416,373,0): 39, 22, 30, (416,374,0): 38, 21, 29, (416,375,0): 37, 20, 28, (416,376,0): 37, 20, 28, (416,377,0): 37, 20, 28, (416,378,0): 38, 21, 29, (416,379,0): 39, 22, 30, (416,380,0): 40, 23, 31, (416,381,0): 41, 24, 32, (416,382,0): 42, 25, 33, (416,383,0): 42, 25, 33, (416,384,0): 46, 29, 37, (416,385,0): 46, 29, 37, (416,386,0): 45, 28, 36, (416,387,0): 45, 28, 36, (416,388,0): 44, 27, 35, (416,389,0): 43, 26, 34, (416,390,0): 43, 26, 34, (416,391,0): 42, 25, 33, (416,392,0): 41, 24, 32, (416,393,0): 41, 24, 32, (416,394,0): 43, 26, 34, (416,395,0): 43, 26, 34, (416,396,0): 43, 26, 34, (416,397,0): 41, 24, 32, (416,398,0): 39, 22, 30, (416,399,0): 40, 20, 29, (416,400,0): 41, 19, 31, (416,401,0): 41, 19, 31, (416,402,0): 41, 19, 31, (416,403,0): 39, 19, 30, (416,404,0): 40, 18, 30, (416,405,0): 38, 18, 29, (416,406,0): 38, 18, 30, (416,407,0): 37, 17, 29, (416,408,0): 34, 16, 28, (416,409,0): 34, 16, 28, (416,410,0): 34, 16, 28, (416,411,0): 34, 16, 28, (416,412,0): 33, 17, 28, (416,413,0): 33, 17, 28, (416,414,0): 33, 17, 28, (416,415,0): 33, 17, 30, (416,416,0): 30, 16, 29, (416,417,0): 30, 16, 31, (416,418,0): 29, 15, 30, (416,419,0): 28, 14, 29, (416,420,0): 27, 13, 28, (416,421,0): 27, 13, 28, (416,422,0): 26, 12, 27, (416,423,0): 26, 12, 27, (416,424,0): 25, 11, 26, (416,425,0): 26, 12, 27, (416,426,0): 29, 15, 30, (416,427,0): 31, 17, 32, (416,428,0): 32, 18, 33, (416,429,0): 32, 18, 33, (416,430,0): 31, 17, 32, (416,431,0): 30, 16, 29, (416,432,0): 33, 22, 30, (416,433,0): 35, 24, 30, (416,434,0): 37, 26, 32, (416,435,0): 37, 26, 32, (416,436,0): 37, 28, 33, (416,437,0): 39, 30, 35, (416,438,0): 45, 36, 41, (416,439,0): 49, 40, 45, (416,440,0): 59, 50, 55, (416,441,0): 64, 55, 60, (416,442,0): 66, 57, 62, (416,443,0): 63, 54, 59, (416,444,0): 66, 55, 61, (416,445,0): 71, 60, 66, (416,446,0): 71, 60, 68, (416,447,0): 67, 56, 62, (416,448,0): 72, 60, 62, (416,449,0): 74, 62, 62, (416,450,0): 72, 60, 60, (416,451,0): 61, 49, 49, (416,452,0): 51, 37, 37, (416,453,0): 47, 33, 33, (416,454,0): 53, 39, 38, (416,455,0): 62, 48, 47, (416,456,0): 70, 56, 53, (416,457,0): 73, 59, 56, (416,458,0): 76, 63, 57, (416,459,0): 77, 64, 58, (416,460,0): 73, 62, 56, (416,461,0): 73, 62, 56, (416,462,0): 74, 63, 57, (416,463,0): 74, 67, 57, (416,464,0): 73, 73, 61, (416,465,0): 80, 84, 69, (416,466,0): 95, 99, 84, (416,467,0): 111, 115, 100, (416,468,0): 121, 125, 111, (416,469,0): 123, 125, 112, (416,470,0): 118, 118, 106, (416,471,0): 112, 112, 100, (416,472,0): 90, 88, 76, (416,473,0): 85, 81, 70, (416,474,0): 82, 76, 64, (416,475,0): 84, 74, 64, (416,476,0): 93, 79, 70, (416,477,0): 99, 80, 73, (416,478,0): 102, 77, 72, (416,479,0): 102, 72, 64, (416,480,0): 116, 76, 66, (416,481,0): 132, 78, 66, (416,482,0): 157, 84, 75, (416,483,0): 179, 92, 85, (416,484,0): 191, 97, 89, (416,485,0): 187, 95, 84, (416,486,0): 167, 90, 74, (416,487,0): 145, 88, 68, (416,488,0): 123, 89, 64, (416,489,0): 116, 99, 73, (416,490,0): 110, 103, 77, (416,491,0): 107, 101, 77, (416,492,0): 112, 100, 78, (416,493,0): 118, 97, 78, (416,494,0): 116, 87, 71, (416,495,0): 108, 75, 60, (416,496,0): 109, 77, 64, (416,497,0): 105, 73, 60, (416,498,0): 98, 68, 57, (416,499,0): 94, 64, 53, (416,500,0): 90, 62, 51, (416,501,0): 85, 58, 47, (416,502,0): 80, 53, 44, (416,503,0): 77, 48, 40, (416,504,0): 82, 48, 46, (416,505,0): 80, 40, 40, (416,506,0): 75, 30, 33, (416,507,0): 73, 27, 30, (416,508,0): 72, 27, 32, (416,509,0): 67, 26, 30, (416,510,0): 56, 20, 24, (416,511,0): 46, 14, 17, (416,512,0): 53, 18, 24, (416,513,0): 62, 27, 33, (416,514,0): 59, 24, 31, (416,515,0): 58, 23, 30, (416,516,0): 66, 30, 40, (416,517,0): 61, 23, 34, (416,518,0): 54, 14, 25, (416,519,0): 60, 18, 30, (416,520,0): 64, 16, 30, (416,521,0): 69, 18, 33, (416,522,0): 72, 20, 33, (416,523,0): 70, 20, 31, (416,524,0): 62, 19, 26, (416,525,0): 58, 19, 24, (416,526,0): 54, 22, 23, (416,527,0): 56, 24, 25, (416,528,0): 63, 23, 24, (416,529,0): 67, 22, 25, (416,530,0): 67, 25, 29, (416,531,0): 68, 27, 31, (416,532,0): 69, 28, 32, (416,533,0): 70, 29, 33, (416,534,0): 71, 28, 35, (416,535,0): 73, 28, 35, (416,536,0): 77, 27, 36, (416,537,0): 79, 28, 37, (416,538,0): 79, 27, 39, (416,539,0): 75, 25, 36, (416,540,0): 68, 22, 32, (416,541,0): 61, 21, 29, (416,542,0): 59, 24, 30, (416,543,0): 60, 25, 29, (416,544,0): 66, 26, 27, (416,545,0): 68, 24, 25, (416,546,0): 66, 21, 24, (416,547,0): 65, 23, 24, (416,548,0): 68, 26, 28, (416,549,0): 72, 32, 32, (416,550,0): 77, 37, 38, (416,551,0): 80, 42, 41, (416,552,0): 74, 38, 38, (416,553,0): 70, 36, 34, (416,554,0): 65, 34, 32, (416,555,0): 65, 36, 32, (416,556,0): 66, 38, 35, (416,557,0): 65, 40, 35, (416,558,0): 62, 38, 34, (416,559,0): 57, 36, 33, (416,560,0): 56, 40, 43, (416,561,0): 56, 39, 45, (416,562,0): 59, 39, 41, (416,563,0): 56, 36, 37, (416,564,0): 54, 35, 31, (416,565,0): 56, 39, 32, (416,566,0): 61, 46, 39, (416,567,0): 66, 53, 47, (416,568,0): 75, 60, 57, (416,569,0): 78, 60, 60, (416,570,0): 80, 58, 60, (416,571,0): 81, 57, 57, (416,572,0): 80, 56, 54, (416,573,0): 80, 59, 54, (416,574,0): 83, 66, 58, (416,575,0): 87, 70, 62, (416,576,0): 93, 69, 65, (416,577,0): 97, 71, 70, (416,578,0): 102, 76, 75, (416,579,0): 106, 80, 79, (416,580,0): 107, 83, 81, (416,581,0): 107, 83, 81, (416,582,0): 104, 83, 80, (416,583,0): 102, 83, 79, (416,584,0): 93, 75, 73, (416,585,0): 89, 71, 71, (416,586,0): 86, 68, 68, (416,587,0): 87, 68, 70, (416,588,0): 92, 73, 75, (416,589,0): 97, 78, 82, (416,590,0): 100, 79, 84, (416,591,0): 100, 79, 84, (416,592,0): 94, 71, 77, (416,593,0): 95, 75, 77, (416,594,0): 97, 77, 79, (416,595,0): 98, 79, 81, (416,596,0): 97, 81, 82, (416,597,0): 95, 81, 81, (416,598,0): 93, 79, 79, (416,599,0): 92, 78, 78, (417,0,0): 68, 80, 66, (417,1,0): 68, 80, 66, (417,2,0): 69, 81, 67, (417,3,0): 70, 82, 68, (417,4,0): 71, 82, 68, (417,5,0): 72, 83, 69, (417,6,0): 73, 84, 70, (417,7,0): 73, 84, 70, (417,8,0): 69, 77, 64, (417,9,0): 69, 77, 64, (417,10,0): 70, 76, 64, (417,11,0): 69, 75, 63, (417,12,0): 68, 74, 62, (417,13,0): 68, 74, 62, (417,14,0): 69, 72, 61, (417,15,0): 70, 72, 61, (417,16,0): 72, 72, 60, (417,17,0): 74, 72, 60, (417,18,0): 73, 71, 58, (417,19,0): 74, 72, 59, (417,20,0): 75, 73, 60, (417,21,0): 77, 75, 62, (417,22,0): 80, 77, 62, (417,23,0): 81, 78, 63, (417,24,0): 82, 76, 60, (417,25,0): 83, 77, 61, (417,26,0): 86, 79, 63, (417,27,0): 88, 81, 65, (417,28,0): 90, 83, 65, (417,29,0): 91, 84, 66, (417,30,0): 91, 84, 66, (417,31,0): 92, 83, 66, (417,32,0): 101, 85, 69, (417,33,0): 102, 85, 67, (417,34,0): 101, 84, 66, (417,35,0): 100, 83, 65, (417,36,0): 99, 84, 65, (417,37,0): 98, 83, 64, (417,38,0): 97, 82, 63, (417,39,0): 97, 82, 63, (417,40,0): 98, 85, 66, (417,41,0): 99, 86, 67, (417,42,0): 101, 88, 69, (417,43,0): 104, 91, 72, (417,44,0): 106, 95, 75, (417,45,0): 108, 97, 77, (417,46,0): 110, 99, 79, (417,47,0): 111, 100, 80, (417,48,0): 115, 103, 81, (417,49,0): 118, 103, 82, (417,50,0): 119, 104, 83, (417,51,0): 118, 106, 84, (417,52,0): 118, 106, 84, (417,53,0): 116, 105, 83, (417,54,0): 115, 104, 82, (417,55,0): 114, 103, 81, (417,56,0): 117, 106, 84, (417,57,0): 115, 107, 84, (417,58,0): 114, 106, 83, (417,59,0): 113, 107, 83, (417,60,0): 111, 105, 81, (417,61,0): 108, 102, 78, (417,62,0): 106, 100, 76, (417,63,0): 103, 98, 76, (417,64,0): 103, 101, 80, (417,65,0): 102, 101, 81, (417,66,0): 103, 102, 82, (417,67,0): 103, 102, 82, (417,68,0): 104, 103, 83, (417,69,0): 104, 103, 83, (417,70,0): 105, 104, 84, (417,71,0): 105, 104, 84, (417,72,0): 102, 101, 81, (417,73,0): 99, 98, 78, (417,74,0): 95, 94, 74, (417,75,0): 89, 88, 68, (417,76,0): 84, 83, 63, (417,77,0): 80, 79, 59, (417,78,0): 77, 76, 56, (417,79,0): 76, 75, 55, (417,80,0): 72, 69, 54, (417,81,0): 69, 66, 51, (417,82,0): 66, 63, 48, (417,83,0): 65, 62, 47, (417,84,0): 68, 62, 46, (417,85,0): 67, 61, 45, (417,86,0): 64, 59, 40, (417,87,0): 62, 57, 38, (417,88,0): 61, 54, 36, (417,89,0): 60, 53, 35, (417,90,0): 58, 50, 31, (417,91,0): 56, 48, 29, (417,92,0): 54, 46, 25, (417,93,0): 54, 46, 25, (417,94,0): 56, 45, 25, (417,95,0): 57, 46, 26, (417,96,0): 55, 42, 23, (417,97,0): 55, 42, 23, (417,98,0): 55, 42, 25, (417,99,0): 54, 41, 24, (417,100,0): 54, 41, 24, (417,101,0): 53, 40, 23, (417,102,0): 53, 40, 24, (417,103,0): 52, 39, 23, (417,104,0): 55, 41, 28, (417,105,0): 55, 41, 28, (417,106,0): 55, 41, 28, (417,107,0): 56, 42, 29, (417,108,0): 56, 42, 31, (417,109,0): 57, 43, 32, (417,110,0): 57, 43, 32, (417,111,0): 60, 43, 33, (417,112,0): 60, 42, 32, (417,113,0): 61, 41, 32, (417,114,0): 61, 41, 32, (417,115,0): 61, 41, 32, (417,116,0): 61, 41, 32, (417,117,0): 61, 41, 32, (417,118,0): 61, 41, 32, (417,119,0): 61, 41, 32, (417,120,0): 61, 41, 32, (417,121,0): 61, 41, 32, (417,122,0): 61, 41, 32, (417,123,0): 61, 41, 32, (417,124,0): 61, 41, 32, (417,125,0): 61, 41, 32, (417,126,0): 61, 41, 32, (417,127,0): 61, 41, 32, (417,128,0): 59, 38, 33, (417,129,0): 59, 38, 33, (417,130,0): 59, 38, 33, (417,131,0): 59, 38, 33, (417,132,0): 59, 38, 33, (417,133,0): 59, 38, 33, (417,134,0): 59, 38, 33, (417,135,0): 59, 38, 33, (417,136,0): 61, 40, 35, (417,137,0): 61, 40, 35, (417,138,0): 62, 41, 36, (417,139,0): 64, 43, 38, (417,140,0): 66, 45, 40, (417,141,0): 67, 46, 41, (417,142,0): 68, 47, 42, (417,143,0): 69, 48, 43, (417,144,0): 75, 52, 46, (417,145,0): 79, 56, 50, (417,146,0): 83, 63, 56, (417,147,0): 89, 69, 62, (417,148,0): 92, 72, 65, (417,149,0): 94, 74, 67, (417,150,0): 92, 73, 66, (417,151,0): 91, 72, 65, (417,152,0): 92, 75, 67, (417,153,0): 92, 75, 67, (417,154,0): 92, 75, 67, (417,155,0): 91, 74, 66, (417,156,0): 89, 75, 66, (417,157,0): 88, 74, 65, (417,158,0): 88, 74, 65, (417,159,0): 90, 73, 65, (417,160,0): 94, 75, 69, (417,161,0): 96, 75, 70, (417,162,0): 98, 78, 71, (417,163,0): 99, 79, 72, (417,164,0): 100, 80, 73, (417,165,0): 99, 79, 72, (417,166,0): 98, 80, 70, (417,167,0): 97, 79, 69, (417,168,0): 97, 81, 68, (417,169,0): 97, 81, 68, (417,170,0): 97, 81, 68, (417,171,0): 98, 82, 69, (417,172,0): 98, 82, 67, (417,173,0): 98, 82, 67, (417,174,0): 97, 84, 68, (417,175,0): 100, 82, 68, (417,176,0): 104, 80, 68, (417,177,0): 106, 78, 67, (417,178,0): 104, 76, 65, (417,179,0): 103, 75, 64, (417,180,0): 102, 75, 64, (417,181,0): 103, 76, 65, (417,182,0): 103, 79, 67, (417,183,0): 104, 80, 68, (417,184,0): 106, 82, 70, (417,185,0): 107, 83, 71, (417,186,0): 106, 84, 71, (417,187,0): 105, 83, 70, (417,188,0): 102, 83, 69, (417,189,0): 100, 81, 67, (417,190,0): 98, 79, 65, (417,191,0): 97, 77, 66, (417,192,0): 98, 78, 69, (417,193,0): 97, 77, 70, (417,194,0): 98, 74, 70, (417,195,0): 99, 75, 71, (417,196,0): 104, 76, 73, (417,197,0): 108, 80, 77, (417,198,0): 112, 82, 82, (417,199,0): 115, 85, 85, (417,200,0): 117, 87, 89, (417,201,0): 132, 102, 104, (417,202,0): 151, 122, 124, (417,203,0): 172, 146, 147, (417,204,0): 197, 171, 174, (417,205,0): 217, 192, 195, (417,206,0): 220, 198, 200, (417,207,0): 210, 193, 199, (417,208,0): 195, 189, 201, (417,209,0): 189, 191, 206, (417,210,0): 186, 192, 206, (417,211,0): 182, 191, 206, (417,212,0): 176, 190, 203, (417,213,0): 169, 188, 202, (417,214,0): 165, 188, 204, (417,215,0): 161, 190, 206, (417,216,0): 158, 189, 207, (417,217,0): 154, 189, 208, (417,218,0): 152, 189, 208, (417,219,0): 150, 188, 209, (417,220,0): 151, 188, 214, (417,221,0): 150, 190, 215, (417,222,0): 151, 191, 217, (417,223,0): 152, 192, 218, (417,224,0): 151, 187, 219, (417,225,0): 151, 187, 219, (417,226,0): 151, 187, 221, (417,227,0): 151, 187, 221, (417,228,0): 151, 187, 223, (417,229,0): 151, 187, 223, (417,230,0): 152, 186, 224, (417,231,0): 152, 185, 226, (417,232,0): 153, 184, 228, (417,233,0): 152, 183, 227, (417,234,0): 152, 183, 229, (417,235,0): 152, 183, 229, (417,236,0): 151, 182, 229, (417,237,0): 151, 181, 231, (417,238,0): 153, 181, 231, (417,239,0): 153, 181, 231, (417,240,0): 152, 178, 227, (417,241,0): 152, 178, 227, (417,242,0): 151, 179, 227, (417,243,0): 151, 179, 227, (417,244,0): 151, 179, 229, (417,245,0): 151, 179, 229, (417,246,0): 149, 179, 229, (417,247,0): 149, 179, 229, (417,248,0): 145, 177, 228, (417,249,0): 146, 178, 229, (417,250,0): 147, 178, 232, (417,251,0): 148, 179, 233, (417,252,0): 148, 181, 234, (417,253,0): 149, 182, 235, (417,254,0): 149, 182, 236, (417,255,0): 148, 183, 239, (417,256,0): 144, 184, 245, (417,257,0): 143, 184, 248, (417,258,0): 144, 185, 249, (417,259,0): 144, 185, 249, (417,260,0): 145, 186, 250, (417,261,0): 146, 187, 251, (417,262,0): 147, 188, 252, (417,263,0): 147, 188, 252, (417,264,0): 150, 191, 255, (417,265,0): 150, 191, 255, (417,266,0): 151, 192, 255, (417,267,0): 152, 193, 255, (417,268,0): 152, 193, 255, (417,269,0): 151, 192, 255, (417,270,0): 150, 191, 255, (417,271,0): 151, 191, 252, (417,272,0): 151, 190, 247, (417,273,0): 155, 192, 247, (417,274,0): 157, 194, 249, (417,275,0): 160, 195, 251, (417,276,0): 161, 196, 252, (417,277,0): 161, 196, 252, (417,278,0): 161, 196, 252, (417,279,0): 163, 195, 252, (417,280,0): 161, 193, 250, (417,281,0): 163, 194, 251, (417,282,0): 164, 195, 252, (417,283,0): 165, 196, 253, (417,284,0): 166, 197, 254, (417,285,0): 166, 195, 253, (417,286,0): 165, 194, 252, (417,287,0): 164, 193, 251, (417,288,0): 165, 194, 252, (417,289,0): 165, 196, 253, (417,290,0): 167, 196, 252, (417,291,0): 170, 196, 253, (417,292,0): 171, 196, 253, (417,293,0): 175, 195, 254, (417,294,0): 176, 195, 254, (417,295,0): 178, 194, 253, (417,296,0): 180, 192, 252, (417,297,0): 184, 194, 253, (417,298,0): 188, 194, 254, (417,299,0): 182, 186, 247, (417,300,0): 172, 174, 233, (417,301,0): 161, 161, 221, (417,302,0): 155, 154, 214, (417,303,0): 154, 151, 206, (417,304,0): 155, 152, 197, (417,305,0): 159, 154, 195, (417,306,0): 159, 157, 197, (417,307,0): 158, 157, 199, (417,308,0): 155, 156, 202, (417,309,0): 155, 157, 205, (417,310,0): 159, 161, 210, (417,311,0): 163, 165, 216, (417,312,0): 168, 170, 221, (417,313,0): 166, 163, 216, (417,314,0): 164, 160, 211, (417,315,0): 170, 162, 213, (417,316,0): 174, 162, 212, (417,317,0): 172, 159, 205, (417,318,0): 172, 156, 201, (417,319,0): 177, 155, 194, (417,320,0): 170, 135, 165, (417,321,0): 155, 113, 137, (417,322,0): 124, 84, 108, (417,323,0): 102, 63, 82, (417,324,0): 89, 53, 67, (417,325,0): 82, 46, 56, (417,326,0): 71, 38, 45, (417,327,0): 64, 33, 38, (417,328,0): 59, 30, 34, (417,329,0): 58, 29, 31, (417,330,0): 54, 28, 29, (417,331,0): 51, 26, 29, (417,332,0): 49, 24, 28, (417,333,0): 46, 21, 27, (417,334,0): 43, 20, 28, (417,335,0): 41, 20, 27, (417,336,0): 40, 23, 33, (417,337,0): 38, 22, 32, (417,338,0): 38, 22, 32, (417,339,0): 37, 21, 31, (417,340,0): 37, 21, 31, (417,341,0): 36, 20, 30, (417,342,0): 36, 20, 30, (417,343,0): 36, 20, 30, (417,344,0): 34, 18, 28, (417,345,0): 34, 18, 28, (417,346,0): 34, 18, 28, (417,347,0): 34, 18, 28, (417,348,0): 34, 18, 28, (417,349,0): 34, 18, 28, (417,350,0): 34, 18, 28, (417,351,0): 37, 17, 26, (417,352,0): 47, 19, 31, (417,353,0): 50, 18, 29, (417,354,0): 50, 18, 29, (417,355,0): 49, 19, 29, (417,356,0): 49, 19, 29, (417,357,0): 47, 20, 29, (417,358,0): 47, 20, 29, (417,359,0): 46, 20, 29, (417,360,0): 42, 19, 27, (417,361,0): 41, 18, 26, (417,362,0): 39, 18, 25, (417,363,0): 37, 16, 23, (417,364,0): 36, 17, 23, (417,365,0): 36, 17, 23, (417,366,0): 37, 18, 24, (417,367,0): 37, 18, 24, (417,368,0): 36, 19, 27, (417,369,0): 37, 20, 28, (417,370,0): 38, 21, 29, (417,371,0): 39, 22, 30, (417,372,0): 39, 22, 30, (417,373,0): 38, 21, 29, (417,374,0): 37, 20, 28, (417,375,0): 36, 19, 27, (417,376,0): 36, 19, 27, (417,377,0): 36, 19, 27, (417,378,0): 37, 20, 28, (417,379,0): 38, 21, 29, (417,380,0): 39, 22, 30, (417,381,0): 40, 23, 31, (417,382,0): 41, 24, 32, (417,383,0): 41, 24, 32, (417,384,0): 45, 28, 36, (417,385,0): 45, 28, 36, (417,386,0): 44, 27, 35, (417,387,0): 44, 27, 35, (417,388,0): 44, 27, 35, (417,389,0): 43, 26, 34, (417,390,0): 43, 26, 34, (417,391,0): 43, 26, 34, (417,392,0): 40, 23, 31, (417,393,0): 41, 24, 32, (417,394,0): 42, 25, 33, (417,395,0): 43, 26, 34, (417,396,0): 42, 25, 33, (417,397,0): 40, 23, 31, (417,398,0): 39, 22, 30, (417,399,0): 39, 19, 30, (417,400,0): 41, 19, 32, (417,401,0): 42, 18, 32, (417,402,0): 40, 18, 31, (417,403,0): 40, 18, 31, (417,404,0): 39, 17, 30, (417,405,0): 38, 18, 30, (417,406,0): 37, 17, 29, (417,407,0): 37, 17, 29, (417,408,0): 33, 15, 27, (417,409,0): 33, 15, 27, (417,410,0): 33, 15, 27, (417,411,0): 32, 16, 27, (417,412,0): 32, 16, 27, (417,413,0): 32, 16, 27, (417,414,0): 32, 16, 27, (417,415,0): 30, 17, 27, (417,416,0): 29, 17, 31, (417,417,0): 28, 16, 30, (417,418,0): 28, 16, 30, (417,419,0): 27, 15, 29, (417,420,0): 26, 14, 28, (417,421,0): 26, 14, 28, (417,422,0): 25, 13, 27, (417,423,0): 25, 13, 27, (417,424,0): 24, 12, 26, (417,425,0): 26, 14, 28, (417,426,0): 28, 16, 30, (417,427,0): 30, 18, 32, (417,428,0): 31, 19, 33, (417,429,0): 31, 19, 33, (417,430,0): 30, 18, 32, (417,431,0): 30, 18, 30, (417,432,0): 33, 22, 28, (417,433,0): 35, 24, 28, (417,434,0): 38, 27, 31, (417,435,0): 39, 28, 32, (417,436,0): 39, 28, 34, (417,437,0): 42, 31, 37, (417,438,0): 47, 36, 42, (417,439,0): 52, 41, 47, (417,440,0): 57, 46, 54, (417,441,0): 64, 53, 61, (417,442,0): 68, 57, 65, (417,443,0): 67, 56, 64, (417,444,0): 68, 56, 66, (417,445,0): 72, 60, 70, (417,446,0): 70, 58, 68, (417,447,0): 64, 53, 61, (417,448,0): 73, 58, 61, (417,449,0): 76, 62, 62, (417,450,0): 76, 62, 62, (417,451,0): 67, 53, 53, (417,452,0): 55, 41, 41, (417,453,0): 50, 36, 36, (417,454,0): 55, 41, 41, (417,455,0): 62, 48, 47, (417,456,0): 69, 55, 54, (417,457,0): 74, 60, 57, (417,458,0): 79, 65, 62, (417,459,0): 79, 66, 60, (417,460,0): 76, 63, 57, (417,461,0): 73, 60, 54, (417,462,0): 74, 61, 55, (417,463,0): 72, 63, 56, (417,464,0): 71, 72, 58, (417,465,0): 75, 79, 62, (417,466,0): 88, 90, 76, (417,467,0): 103, 107, 92, (417,468,0): 115, 119, 104, (417,469,0): 118, 122, 107, (417,470,0): 114, 116, 102, (417,471,0): 108, 110, 96, (417,472,0): 100, 98, 86, (417,473,0): 91, 87, 76, (417,474,0): 83, 74, 65, (417,475,0): 82, 69, 61, (417,476,0): 87, 70, 63, (417,477,0): 91, 72, 66, (417,478,0): 92, 71, 68, (417,479,0): 93, 70, 64, (417,480,0): 106, 79, 68, (417,481,0): 122, 82, 70, (417,482,0): 153, 86, 78, (417,483,0): 181, 94, 87, (417,484,0): 199, 97, 92, (417,485,0): 199, 98, 88, (417,486,0): 182, 96, 81, (417,487,0): 161, 96, 76, (417,488,0): 131, 91, 66, (417,489,0): 122, 101, 74, (417,490,0): 114, 104, 77, (417,491,0): 108, 102, 76, (417,492,0): 113, 101, 79, (417,493,0): 119, 101, 81, (417,494,0): 118, 91, 74, (417,495,0): 112, 80, 65, (417,496,0): 111, 79, 64, (417,497,0): 105, 76, 60, (417,498,0): 102, 70, 55, (417,499,0): 98, 66, 53, (417,500,0): 93, 64, 50, (417,501,0): 89, 59, 48, (417,502,0): 83, 53, 42, (417,503,0): 81, 48, 39, (417,504,0): 81, 44, 38, (417,505,0): 79, 35, 34, (417,506,0): 77, 27, 28, (417,507,0): 78, 26, 30, (417,508,0): 80, 29, 34, (417,509,0): 77, 31, 34, (417,510,0): 69, 29, 30, (417,511,0): 63, 24, 27, (417,512,0): 72, 31, 37, (417,513,0): 76, 33, 42, (417,514,0): 66, 23, 32, (417,515,0): 59, 16, 26, (417,516,0): 63, 20, 30, (417,517,0): 60, 16, 29, (417,518,0): 58, 12, 25, (417,519,0): 66, 18, 32, (417,520,0): 80, 26, 42, (417,521,0): 85, 27, 42, (417,522,0): 88, 25, 42, (417,523,0): 84, 23, 38, (417,524,0): 75, 22, 30, (417,525,0): 68, 23, 26, (417,526,0): 65, 26, 27, (417,527,0): 65, 29, 29, (417,528,0): 76, 30, 32, (417,529,0): 80, 31, 34, (417,530,0): 80, 34, 37, (417,531,0): 81, 35, 38, (417,532,0): 80, 34, 37, (417,533,0): 78, 32, 35, (417,534,0): 78, 29, 35, (417,535,0): 77, 26, 33, (417,536,0): 77, 21, 32, (417,537,0): 79, 23, 34, (417,538,0): 80, 24, 35, (417,539,0): 76, 23, 33, (417,540,0): 71, 21, 32, (417,541,0): 64, 21, 30, (417,542,0): 63, 23, 31, (417,543,0): 65, 26, 31, (417,544,0): 72, 26, 29, (417,545,0): 75, 26, 29, (417,546,0): 75, 26, 29, (417,547,0): 76, 27, 30, (417,548,0): 74, 28, 30, (417,549,0): 73, 29, 30, (417,550,0): 73, 29, 30, (417,551,0): 70, 30, 30, (417,552,0): 76, 36, 36, (417,553,0): 70, 35, 33, (417,554,0): 68, 34, 32, (417,555,0): 66, 37, 33, (417,556,0): 69, 40, 36, (417,557,0): 70, 42, 38, (417,558,0): 66, 41, 36, (417,559,0): 61, 40, 37, (417,560,0): 57, 38, 42, (417,561,0): 58, 37, 46, (417,562,0): 59, 34, 40, (417,563,0): 58, 33, 36, (417,564,0): 56, 35, 34, (417,565,0): 59, 40, 36, (417,566,0): 61, 48, 42, (417,567,0): 65, 52, 46, (417,568,0): 70, 55, 52, (417,569,0): 75, 55, 56, (417,570,0): 81, 55, 58, (417,571,0): 85, 54, 59, (417,572,0): 87, 57, 57, (417,573,0): 89, 61, 58, (417,574,0): 92, 69, 61, (417,575,0): 95, 75, 68, (417,576,0): 96, 71, 67, (417,577,0): 98, 72, 71, (417,578,0): 102, 76, 75, (417,579,0): 102, 81, 78, (417,580,0): 104, 83, 82, (417,581,0): 101, 83, 81, (417,582,0): 100, 82, 80, (417,583,0): 97, 82, 79, (417,584,0): 90, 76, 75, (417,585,0): 86, 72, 71, (417,586,0): 83, 67, 68, (417,587,0): 82, 66, 67, (417,588,0): 87, 68, 70, (417,589,0): 90, 71, 73, (417,590,0): 92, 71, 76, (417,591,0): 92, 71, 76, (417,592,0): 90, 70, 72, (417,593,0): 92, 72, 74, (417,594,0): 94, 74, 76, (417,595,0): 95, 76, 78, (417,596,0): 94, 78, 79, (417,597,0): 92, 78, 78, (417,598,0): 90, 76, 76, (417,599,0): 87, 75, 75, (418,0,0): 69, 81, 67, (418,1,0): 69, 81, 67, (418,2,0): 69, 81, 67, (418,3,0): 70, 82, 68, (418,4,0): 71, 82, 68, (418,5,0): 72, 83, 69, (418,6,0): 72, 83, 69, (418,7,0): 72, 83, 69, (418,8,0): 70, 78, 65, (418,9,0): 69, 77, 64, (418,10,0): 70, 76, 64, (418,11,0): 70, 76, 64, (418,12,0): 69, 75, 63, (418,13,0): 69, 75, 63, (418,14,0): 70, 73, 62, (418,15,0): 71, 73, 62, (418,16,0): 73, 73, 61, (418,17,0): 73, 73, 61, (418,18,0): 74, 72, 59, (418,19,0): 74, 72, 59, (418,20,0): 75, 73, 60, (418,21,0): 77, 75, 62, (418,22,0): 80, 77, 62, (418,23,0): 81, 78, 63, (418,24,0): 83, 77, 61, (418,25,0): 84, 78, 62, (418,26,0): 86, 80, 64, (418,27,0): 89, 83, 67, (418,28,0): 91, 84, 66, (418,29,0): 92, 85, 67, (418,30,0): 92, 85, 67, (418,31,0): 93, 84, 67, (418,32,0): 98, 85, 68, (418,33,0): 100, 84, 68, (418,34,0): 100, 84, 68, (418,35,0): 99, 83, 67, (418,36,0): 99, 83, 67, (418,37,0): 98, 82, 66, (418,38,0): 96, 83, 66, (418,39,0): 96, 83, 66, (418,40,0): 98, 85, 68, (418,41,0): 99, 86, 69, (418,42,0): 101, 88, 71, (418,43,0): 103, 90, 73, (418,44,0): 105, 94, 76, (418,45,0): 107, 96, 78, (418,46,0): 109, 98, 80, (418,47,0): 110, 99, 79, (418,48,0): 113, 101, 79, (418,49,0): 114, 102, 80, (418,50,0): 115, 103, 81, (418,51,0): 115, 104, 82, (418,52,0): 115, 104, 82, (418,53,0): 114, 103, 81, (418,54,0): 113, 102, 80, (418,55,0): 110, 102, 79, (418,56,0): 113, 105, 82, (418,57,0): 112, 106, 82, (418,58,0): 112, 106, 82, (418,59,0): 112, 106, 82, (418,60,0): 110, 104, 80, (418,61,0): 107, 103, 78, (418,62,0): 105, 101, 76, (418,63,0): 103, 98, 76, (418,64,0): 101, 99, 78, (418,65,0): 100, 99, 79, (418,66,0): 101, 100, 80, (418,67,0): 101, 100, 80, (418,68,0): 102, 101, 81, (418,69,0): 102, 101, 81, (418,70,0): 102, 101, 81, (418,71,0): 103, 102, 82, (418,72,0): 97, 96, 76, (418,73,0): 96, 95, 75, (418,74,0): 94, 93, 73, (418,75,0): 91, 90, 70, (418,76,0): 87, 86, 66, (418,77,0): 83, 82, 62, (418,78,0): 79, 78, 58, (418,79,0): 77, 76, 56, (418,80,0): 75, 72, 57, (418,81,0): 72, 69, 54, (418,82,0): 69, 66, 51, (418,83,0): 68, 65, 50, (418,84,0): 71, 65, 49, (418,85,0): 70, 64, 48, (418,86,0): 68, 62, 46, (418,87,0): 65, 59, 43, (418,88,0): 64, 57, 39, (418,89,0): 62, 55, 37, (418,90,0): 61, 53, 34, (418,91,0): 59, 51, 32, (418,92,0): 57, 49, 30, (418,93,0): 56, 48, 29, (418,94,0): 58, 47, 27, (418,95,0): 58, 47, 27, (418,96,0): 56, 43, 24, (418,97,0): 55, 42, 23, (418,98,0): 55, 42, 25, (418,99,0): 54, 41, 24, (418,100,0): 54, 41, 24, (418,101,0): 53, 40, 23, (418,102,0): 53, 40, 24, (418,103,0): 53, 40, 24, (418,104,0): 54, 40, 27, (418,105,0): 55, 41, 28, (418,106,0): 55, 41, 28, (418,107,0): 56, 42, 29, (418,108,0): 56, 42, 31, (418,109,0): 57, 43, 32, (418,110,0): 57, 43, 32, (418,111,0): 59, 42, 32, (418,112,0): 60, 42, 32, (418,113,0): 61, 41, 32, (418,114,0): 61, 41, 32, (418,115,0): 61, 41, 32, (418,116,0): 61, 41, 32, (418,117,0): 61, 41, 32, (418,118,0): 61, 41, 32, (418,119,0): 61, 41, 32, (418,120,0): 60, 40, 31, (418,121,0): 60, 40, 31, (418,122,0): 60, 40, 31, (418,123,0): 60, 40, 31, (418,124,0): 60, 40, 31, (418,125,0): 60, 40, 31, (418,126,0): 60, 40, 31, (418,127,0): 60, 40, 31, (418,128,0): 58, 37, 32, (418,129,0): 58, 37, 32, (418,130,0): 58, 37, 32, (418,131,0): 58, 37, 32, (418,132,0): 58, 37, 32, (418,133,0): 58, 37, 32, (418,134,0): 58, 37, 32, (418,135,0): 58, 37, 32, (418,136,0): 60, 39, 34, (418,137,0): 61, 40, 35, (418,138,0): 62, 41, 36, (418,139,0): 64, 43, 38, (418,140,0): 65, 44, 39, (418,141,0): 67, 46, 41, (418,142,0): 68, 47, 42, (418,143,0): 69, 48, 43, (418,144,0): 76, 52, 48, (418,145,0): 79, 55, 51, (418,146,0): 83, 62, 57, (418,147,0): 89, 68, 63, (418,148,0): 93, 72, 67, (418,149,0): 95, 74, 69, (418,150,0): 93, 74, 68, (418,151,0): 92, 73, 67, (418,152,0): 94, 77, 70, (418,153,0): 93, 76, 69, (418,154,0): 93, 76, 69, (418,155,0): 92, 75, 68, (418,156,0): 90, 75, 68, (418,157,0): 89, 74, 67, (418,158,0): 89, 74, 67, (418,159,0): 91, 74, 67, (418,160,0): 96, 77, 71, (418,161,0): 98, 77, 72, (418,162,0): 99, 79, 72, (418,163,0): 100, 80, 73, (418,164,0): 100, 81, 74, (418,165,0): 100, 81, 74, (418,166,0): 99, 81, 71, (418,167,0): 99, 81, 71, (418,168,0): 98, 80, 68, (418,169,0): 98, 80, 68, (418,170,0): 97, 81, 68, (418,171,0): 98, 82, 69, (418,172,0): 99, 83, 68, (418,173,0): 99, 83, 68, (418,174,0): 100, 84, 69, (418,175,0): 101, 83, 69, (418,176,0): 107, 83, 71, (418,177,0): 109, 81, 70, (418,178,0): 107, 79, 68, (418,179,0): 106, 78, 67, (418,180,0): 104, 77, 66, (418,181,0): 103, 76, 65, (418,182,0): 102, 78, 66, (418,183,0): 102, 78, 66, (418,184,0): 106, 82, 70, (418,185,0): 106, 82, 70, (418,186,0): 106, 84, 71, (418,187,0): 106, 84, 71, (418,188,0): 103, 84, 70, (418,189,0): 101, 82, 68, (418,190,0): 99, 80, 66, (418,191,0): 98, 78, 67, (418,192,0): 97, 77, 68, (418,193,0): 96, 76, 69, (418,194,0): 97, 73, 69, (418,195,0): 97, 73, 69, (418,196,0): 102, 74, 71, (418,197,0): 104, 76, 73, (418,198,0): 109, 79, 79, (418,199,0): 111, 81, 81, (418,200,0): 116, 86, 88, (418,201,0): 120, 90, 92, (418,202,0): 127, 98, 100, (418,203,0): 144, 118, 119, (418,204,0): 174, 148, 151, (418,205,0): 202, 177, 180, (418,206,0): 214, 192, 194, (418,207,0): 211, 195, 198, (418,208,0): 200, 194, 204, (418,209,0): 194, 193, 207, (418,210,0): 189, 193, 205, (418,211,0): 183, 191, 204, (418,212,0): 178, 190, 204, (418,213,0): 173, 191, 205, (418,214,0): 168, 189, 206, (418,215,0): 163, 190, 207, (418,216,0): 161, 190, 208, (418,217,0): 157, 190, 209, (418,218,0): 153, 190, 209, (418,219,0): 151, 189, 210, (418,220,0): 151, 188, 214, (418,221,0): 152, 189, 215, (418,222,0): 153, 190, 217, (418,223,0): 153, 190, 217, (418,224,0): 154, 189, 221, (418,225,0): 154, 189, 221, (418,226,0): 154, 188, 223, (418,227,0): 154, 188, 223, (418,228,0): 154, 188, 225, (418,229,0): 154, 188, 225, (418,230,0): 154, 188, 226, (418,231,0): 154, 187, 228, (418,232,0): 153, 184, 228, (418,233,0): 153, 184, 228, (418,234,0): 152, 183, 229, (418,235,0): 152, 183, 229, (418,236,0): 151, 182, 229, (418,237,0): 150, 181, 228, (418,238,0): 150, 180, 230, (418,239,0): 150, 180, 230, (418,240,0): 152, 180, 228, (418,241,0): 152, 180, 228, (418,242,0): 152, 180, 228, (418,243,0): 152, 180, 228, (418,244,0): 152, 180, 230, (418,245,0): 152, 180, 230, (418,246,0): 150, 180, 230, (418,247,0): 150, 180, 230, (418,248,0): 147, 179, 230, (418,249,0): 148, 180, 231, (418,250,0): 147, 180, 233, (418,251,0): 148, 181, 234, (418,252,0): 150, 183, 236, (418,253,0): 151, 184, 237, (418,254,0): 151, 184, 238, (418,255,0): 150, 185, 241, (418,256,0): 148, 184, 246, (418,257,0): 147, 185, 248, (418,258,0): 148, 186, 249, (418,259,0): 149, 187, 250, (418,260,0): 150, 188, 251, (418,261,0): 151, 189, 252, (418,262,0): 152, 190, 253, (418,263,0): 152, 190, 253, (418,264,0): 152, 190, 253, (418,265,0): 153, 191, 254, (418,266,0): 154, 192, 255, (418,267,0): 155, 193, 255, (418,268,0): 155, 193, 255, (418,269,0): 154, 192, 255, (418,270,0): 153, 191, 254, (418,271,0): 152, 190, 252, (418,272,0): 151, 187, 245, (418,273,0): 154, 189, 243, (418,274,0): 156, 191, 245, (418,275,0): 161, 194, 248, (418,276,0): 163, 196, 250, (418,277,0): 164, 197, 251, (418,278,0): 164, 197, 251, (418,279,0): 165, 196, 251, (418,280,0): 163, 194, 249, (418,281,0): 165, 194, 250, (418,282,0): 166, 195, 251, (418,283,0): 167, 196, 252, (418,284,0): 167, 196, 252, (418,285,0): 168, 194, 251, (418,286,0): 167, 193, 250, (418,287,0): 164, 193, 249, (418,288,0): 165, 194, 252, (418,289,0): 166, 195, 253, (418,290,0): 171, 197, 255, (418,291,0): 172, 198, 255, (418,292,0): 174, 198, 255, (418,293,0): 176, 196, 255, (418,294,0): 175, 194, 253, (418,295,0): 176, 192, 251, (418,296,0): 177, 192, 251, (418,297,0): 180, 192, 252, (418,298,0): 179, 189, 248, (418,299,0): 170, 179, 238, (418,300,0): 156, 162, 222, (418,301,0): 145, 149, 210, (418,302,0): 143, 145, 206, (418,303,0): 144, 145, 202, (418,304,0): 154, 154, 206, (418,305,0): 158, 156, 205, (418,306,0): 159, 160, 208, (418,307,0): 159, 161, 209, (418,308,0): 157, 161, 208, (418,309,0): 155, 161, 209, (418,310,0): 156, 162, 212, (418,311,0): 157, 163, 213, (418,312,0): 167, 168, 222, (418,313,0): 164, 164, 216, (418,314,0): 163, 159, 210, (418,315,0): 166, 158, 209, (418,316,0): 175, 163, 211, (418,317,0): 181, 165, 210, (418,318,0): 177, 158, 203, (418,319,0): 171, 146, 185, (418,320,0): 150, 115, 145, (418,321,0): 136, 96, 120, (418,322,0): 110, 70, 94, (418,323,0): 91, 52, 71, (418,324,0): 80, 43, 60, (418,325,0): 74, 38, 50, (418,326,0): 66, 33, 42, (418,327,0): 59, 28, 33, (418,328,0): 56, 27, 31, (418,329,0): 55, 26, 30, (418,330,0): 52, 26, 29, (418,331,0): 49, 24, 27, (418,332,0): 47, 22, 26, (418,333,0): 43, 20, 26, (418,334,0): 41, 18, 26, (418,335,0): 39, 18, 25, (418,336,0): 39, 22, 32, (418,337,0): 38, 22, 32, (418,338,0): 38, 22, 32, (418,339,0): 37, 21, 31, (418,340,0): 37, 21, 31, (418,341,0): 36, 20, 30, (418,342,0): 36, 20, 30, (418,343,0): 35, 19, 29, (418,344,0): 34, 18, 28, (418,345,0): 34, 18, 28, (418,346,0): 34, 18, 28, (418,347,0): 34, 18, 28, (418,348,0): 34, 18, 28, (418,349,0): 34, 18, 28, (418,350,0): 34, 18, 28, (418,351,0): 37, 17, 26, (418,352,0): 45, 19, 30, (418,353,0): 48, 18, 28, (418,354,0): 48, 18, 28, (418,355,0): 48, 18, 28, (418,356,0): 48, 18, 28, (418,357,0): 46, 19, 28, (418,358,0): 46, 19, 28, (418,359,0): 45, 19, 28, (418,360,0): 42, 19, 27, (418,361,0): 41, 18, 26, (418,362,0): 39, 18, 25, (418,363,0): 37, 16, 23, (418,364,0): 36, 17, 23, (418,365,0): 36, 17, 23, (418,366,0): 35, 18, 24, (418,367,0): 35, 18, 24, (418,368,0): 34, 17, 25, (418,369,0): 35, 18, 28, (418,370,0): 36, 19, 29, (418,371,0): 37, 20, 30, (418,372,0): 37, 20, 30, (418,373,0): 36, 19, 29, (418,374,0): 35, 18, 28, (418,375,0): 34, 17, 27, (418,376,0): 34, 17, 27, (418,377,0): 35, 18, 28, (418,378,0): 36, 19, 29, (418,379,0): 37, 20, 30, (418,380,0): 38, 21, 31, (418,381,0): 39, 22, 32, (418,382,0): 40, 23, 33, (418,383,0): 40, 23, 33, (418,384,0): 42, 25, 35, (418,385,0): 42, 25, 35, (418,386,0): 43, 26, 36, (418,387,0): 43, 26, 36, (418,388,0): 43, 26, 36, (418,389,0): 44, 27, 37, (418,390,0): 44, 27, 37, (418,391,0): 44, 27, 37, (418,392,0): 40, 23, 33, (418,393,0): 40, 23, 33, (418,394,0): 41, 24, 34, (418,395,0): 41, 24, 34, (418,396,0): 40, 23, 33, (418,397,0): 39, 22, 32, (418,398,0): 38, 21, 31, (418,399,0): 39, 19, 30, (418,400,0): 40, 18, 31, (418,401,0): 40, 18, 31, (418,402,0): 39, 17, 30, (418,403,0): 39, 17, 30, (418,404,0): 37, 17, 29, (418,405,0): 37, 17, 29, (418,406,0): 36, 16, 28, (418,407,0): 34, 16, 28, (418,408,0): 33, 15, 27, (418,409,0): 33, 15, 27, (418,410,0): 32, 16, 27, (418,411,0): 32, 16, 27, (418,412,0): 32, 16, 27, (418,413,0): 30, 17, 27, (418,414,0): 30, 17, 27, (418,415,0): 30, 17, 27, (418,416,0): 27, 15, 29, (418,417,0): 27, 15, 29, (418,418,0): 27, 15, 29, (418,419,0): 27, 15, 29, (418,420,0): 26, 14, 28, (418,421,0): 26, 14, 28, (418,422,0): 25, 13, 27, (418,423,0): 25, 13, 27, (418,424,0): 25, 13, 27, (418,425,0): 26, 14, 28, (418,426,0): 28, 16, 30, (418,427,0): 30, 18, 32, (418,428,0): 31, 19, 33, (418,429,0): 31, 19, 33, (418,430,0): 31, 19, 33, (418,431,0): 31, 19, 31, (418,432,0): 33, 22, 30, (418,433,0): 36, 25, 31, (418,434,0): 39, 28, 34, (418,435,0): 41, 30, 36, (418,436,0): 42, 31, 37, (418,437,0): 45, 34, 40, (418,438,0): 50, 39, 45, (418,439,0): 54, 43, 49, (418,440,0): 57, 46, 54, (418,441,0): 65, 54, 62, (418,442,0): 70, 59, 67, (418,443,0): 69, 58, 66, (418,444,0): 70, 59, 67, (418,445,0): 73, 62, 70, (418,446,0): 69, 57, 67, (418,447,0): 62, 51, 59, (418,448,0): 72, 57, 62, (418,449,0): 77, 62, 65, (418,450,0): 79, 64, 67, (418,451,0): 73, 58, 61, (418,452,0): 63, 48, 51, (418,453,0): 57, 43, 43, (418,454,0): 59, 45, 45, (418,455,0): 63, 49, 48, (418,456,0): 69, 55, 54, (418,457,0): 76, 62, 59, (418,458,0): 83, 69, 66, (418,459,0): 83, 69, 66, (418,460,0): 77, 63, 60, (418,461,0): 71, 57, 54, (418,462,0): 70, 56, 53, (418,463,0): 69, 60, 53, (418,464,0): 70, 68, 56, (418,465,0): 70, 72, 58, (418,466,0): 79, 79, 67, (418,467,0): 92, 94, 81, (418,468,0): 106, 108, 95, (418,469,0): 113, 115, 102, (418,470,0): 110, 112, 99, (418,471,0): 105, 107, 94, (418,472,0): 104, 102, 89, (418,473,0): 93, 89, 77, (418,474,0): 81, 75, 63, (418,475,0): 75, 65, 55, (418,476,0): 78, 64, 55, (418,477,0): 84, 67, 59, (418,478,0): 89, 70, 64, (418,479,0): 89, 70, 63, (418,480,0): 89, 71, 59, (418,481,0): 102, 74, 62, (418,482,0): 128, 78, 69, (418,483,0): 155, 85, 77, (418,484,0): 175, 91, 81, (418,485,0): 181, 93, 81, (418,486,0): 172, 95, 79, (418,487,0): 158, 95, 77, (418,488,0): 139, 94, 71, (418,489,0): 130, 102, 78, (418,490,0): 121, 103, 81, (418,491,0): 114, 102, 80, (418,492,0): 115, 102, 83, (418,493,0): 118, 105, 86, (418,494,0): 118, 101, 83, (418,495,0): 113, 92, 73, (418,496,0): 111, 85, 68, (418,497,0): 109, 80, 62, (418,498,0): 105, 74, 56, (418,499,0): 104, 68, 54, (418,500,0): 102, 64, 51, (418,501,0): 98, 58, 48, (418,502,0): 93, 53, 45, (418,503,0): 90, 47, 41, (418,504,0): 88, 43, 38, (418,505,0): 84, 36, 34, (418,506,0): 80, 30, 31, (418,507,0): 80, 28, 30, (418,508,0): 83, 31, 35, (418,509,0): 85, 33, 37, (418,510,0): 80, 31, 34, (418,511,0): 77, 28, 32, (418,512,0): 73, 24, 30, (418,513,0): 77, 26, 35, (418,514,0): 72, 19, 29, (418,515,0): 70, 14, 27, (418,516,0): 75, 19, 32, (418,517,0): 75, 18, 33, (418,518,0): 73, 19, 33, (418,519,0): 79, 25, 39, (418,520,0): 87, 26, 42, (418,521,0): 90, 26, 43, (418,522,0): 94, 23, 41, (418,523,0): 89, 21, 36, (418,524,0): 82, 19, 30, (418,525,0): 74, 19, 25, (418,526,0): 67, 22, 25, (418,527,0): 66, 24, 25, (418,528,0): 75, 26, 29, (418,529,0): 77, 27, 30, (418,530,0): 79, 30, 34, (418,531,0): 78, 32, 35, (418,532,0): 78, 32, 35, (418,533,0): 76, 30, 33, (418,534,0): 73, 26, 32, (418,535,0): 73, 24, 30, (418,536,0): 71, 20, 29, (418,537,0): 74, 21, 31, (418,538,0): 76, 23, 33, (418,539,0): 74, 23, 32, (418,540,0): 68, 21, 31, (418,541,0): 63, 22, 30, (418,542,0): 62, 25, 32, (418,543,0): 66, 27, 32, (418,544,0): 70, 23, 29, (418,545,0): 76, 25, 30, (418,546,0): 79, 30, 34, (418,547,0): 82, 33, 37, (418,548,0): 79, 33, 36, (418,549,0): 75, 30, 33, (418,550,0): 71, 26, 29, (418,551,0): 65, 25, 26, (418,552,0): 73, 33, 34, (418,553,0): 69, 33, 33, (418,554,0): 68, 34, 33, (418,555,0): 67, 37, 35, (418,556,0): 70, 40, 38, (418,557,0): 72, 44, 41, (418,558,0): 70, 45, 41, (418,559,0): 69, 43, 42, (418,560,0): 64, 37, 44, (418,561,0): 63, 33, 43, (418,562,0): 62, 29, 38, (418,563,0): 61, 30, 36, (418,564,0): 63, 34, 38, (418,565,0): 63, 42, 41, (418,566,0): 62, 47, 44, (418,567,0): 63, 49, 46, (418,568,0): 67, 52, 49, (418,569,0): 73, 53, 52, (418,570,0): 83, 54, 56, (418,571,0): 88, 56, 57, (418,572,0): 92, 56, 56, (418,573,0): 96, 61, 59, (418,574,0): 98, 67, 62, (418,575,0): 102, 73, 67, (418,576,0): 99, 71, 68, (418,577,0): 99, 73, 72, (418,578,0): 101, 75, 74, (418,579,0): 100, 79, 76, (418,580,0): 101, 80, 79, (418,581,0): 98, 80, 78, (418,582,0): 97, 79, 77, (418,583,0): 93, 78, 75, (418,584,0): 89, 75, 74, (418,585,0): 85, 71, 70, (418,586,0): 82, 66, 67, (418,587,0): 80, 64, 65, (418,588,0): 82, 63, 65, (418,589,0): 83, 64, 66, (418,590,0): 84, 63, 68, (418,591,0): 83, 62, 67, (418,592,0): 87, 67, 69, (418,593,0): 88, 69, 71, (418,594,0): 91, 72, 74, (418,595,0): 91, 75, 76, (418,596,0): 90, 76, 76, (418,597,0): 87, 75, 75, (418,598,0): 85, 73, 73, (418,599,0): 83, 73, 72, (419,0,0): 70, 82, 68, (419,1,0): 70, 82, 68, (419,2,0): 70, 82, 68, (419,3,0): 70, 82, 68, (419,4,0): 71, 82, 68, (419,5,0): 71, 82, 68, (419,6,0): 71, 82, 68, (419,7,0): 71, 82, 68, (419,8,0): 70, 78, 65, (419,9,0): 70, 78, 65, (419,10,0): 71, 77, 65, (419,11,0): 71, 77, 65, (419,12,0): 70, 76, 64, (419,13,0): 70, 76, 64, (419,14,0): 72, 75, 64, (419,15,0): 72, 75, 64, (419,16,0): 74, 74, 62, (419,17,0): 74, 74, 62, (419,18,0): 75, 73, 60, (419,19,0): 75, 73, 60, (419,20,0): 76, 74, 61, (419,21,0): 77, 75, 62, (419,22,0): 80, 77, 62, (419,23,0): 81, 78, 63, (419,24,0): 83, 77, 63, (419,25,0): 85, 79, 63, (419,26,0): 87, 81, 65, (419,27,0): 89, 83, 67, (419,28,0): 92, 85, 67, (419,29,0): 93, 86, 68, (419,30,0): 93, 86, 68, (419,31,0): 94, 85, 68, (419,32,0): 97, 84, 67, (419,33,0): 99, 83, 67, (419,34,0): 99, 83, 67, (419,35,0): 99, 83, 67, (419,36,0): 99, 83, 67, (419,37,0): 99, 83, 67, (419,38,0): 97, 84, 67, (419,39,0): 97, 84, 67, (419,40,0): 97, 84, 67, (419,41,0): 98, 85, 68, (419,42,0): 100, 87, 70, (419,43,0): 102, 89, 72, (419,44,0): 104, 93, 75, (419,45,0): 106, 95, 77, (419,46,0): 108, 97, 79, (419,47,0): 109, 98, 80, (419,48,0): 110, 99, 79, (419,49,0): 111, 100, 78, (419,50,0): 112, 101, 79, (419,51,0): 113, 102, 80, (419,52,0): 113, 102, 80, (419,53,0): 110, 102, 79, (419,54,0): 109, 101, 78, (419,55,0): 107, 101, 77, (419,56,0): 110, 104, 80, (419,57,0): 111, 105, 81, (419,58,0): 111, 105, 81, (419,59,0): 110, 106, 81, (419,60,0): 108, 104, 79, (419,61,0): 104, 102, 77, (419,62,0): 104, 100, 75, (419,63,0): 101, 99, 76, (419,64,0): 98, 97, 77, (419,65,0): 98, 97, 77, (419,66,0): 98, 97, 77, (419,67,0): 99, 98, 78, (419,68,0): 99, 98, 78, (419,69,0): 100, 99, 79, (419,70,0): 100, 99, 79, (419,71,0): 100, 99, 79, (419,72,0): 94, 93, 73, (419,73,0): 94, 93, 73, (419,74,0): 94, 93, 73, (419,75,0): 92, 91, 71, (419,76,0): 89, 88, 68, (419,77,0): 86, 85, 65, (419,78,0): 82, 81, 61, (419,79,0): 79, 78, 60, (419,80,0): 78, 75, 60, (419,81,0): 75, 72, 57, (419,82,0): 72, 69, 54, (419,83,0): 72, 69, 54, (419,84,0): 74, 68, 52, (419,85,0): 74, 68, 52, (419,86,0): 71, 65, 49, (419,87,0): 68, 62, 46, (419,88,0): 66, 59, 41, (419,89,0): 65, 58, 40, (419,90,0): 64, 56, 37, (419,91,0): 62, 54, 35, (419,92,0): 60, 52, 33, (419,93,0): 58, 50, 31, (419,94,0): 59, 48, 28, (419,95,0): 59, 48, 28, (419,96,0): 56, 43, 24, (419,97,0): 56, 43, 24, (419,98,0): 56, 43, 26, (419,99,0): 55, 42, 25, (419,100,0): 54, 41, 24, (419,101,0): 54, 41, 24, (419,102,0): 54, 41, 25, (419,103,0): 53, 40, 24, (419,104,0): 54, 40, 27, (419,105,0): 54, 40, 27, (419,106,0): 54, 40, 27, (419,107,0): 55, 41, 28, (419,108,0): 56, 42, 31, (419,109,0): 56, 42, 31, (419,110,0): 56, 42, 31, (419,111,0): 59, 42, 32, (419,112,0): 60, 42, 32, (419,113,0): 61, 41, 32, (419,114,0): 61, 41, 32, (419,115,0): 61, 41, 32, (419,116,0): 61, 41, 32, (419,117,0): 61, 41, 32, (419,118,0): 61, 41, 32, (419,119,0): 61, 41, 32, (419,120,0): 58, 38, 29, (419,121,0): 58, 38, 29, (419,122,0): 59, 39, 30, (419,123,0): 59, 39, 30, (419,124,0): 59, 39, 30, (419,125,0): 60, 40, 31, (419,126,0): 60, 40, 31, (419,127,0): 60, 40, 31, (419,128,0): 59, 38, 33, (419,129,0): 59, 38, 33, (419,130,0): 59, 38, 33, (419,131,0): 59, 38, 33, (419,132,0): 59, 38, 33, (419,133,0): 59, 38, 33, (419,134,0): 59, 38, 33, (419,135,0): 59, 38, 33, (419,136,0): 60, 39, 34, (419,137,0): 61, 40, 35, (419,138,0): 62, 41, 36, (419,139,0): 64, 43, 38, (419,140,0): 65, 44, 39, (419,141,0): 67, 46, 41, (419,142,0): 68, 47, 42, (419,143,0): 69, 48, 43, (419,144,0): 76, 52, 48, (419,145,0): 80, 56, 52, (419,146,0): 84, 63, 58, (419,147,0): 90, 69, 64, (419,148,0): 94, 73, 68, (419,149,0): 96, 75, 70, (419,150,0): 95, 76, 70, (419,151,0): 94, 75, 69, (419,152,0): 95, 78, 71, (419,153,0): 95, 78, 71, (419,154,0): 94, 77, 70, (419,155,0): 94, 77, 70, (419,156,0): 91, 76, 69, (419,157,0): 91, 76, 69, (419,158,0): 91, 76, 69, (419,159,0): 92, 75, 68, (419,160,0): 95, 76, 70, (419,161,0): 97, 76, 71, (419,162,0): 99, 79, 72, (419,163,0): 100, 80, 73, (419,164,0): 99, 80, 73, (419,165,0): 99, 80, 73, (419,166,0): 98, 80, 70, (419,167,0): 98, 80, 70, (419,168,0): 98, 80, 70, (419,169,0): 99, 81, 69, (419,170,0): 98, 82, 69, (419,171,0): 99, 83, 70, (419,172,0): 100, 84, 69, (419,173,0): 101, 85, 70, (419,174,0): 102, 86, 71, (419,175,0): 104, 85, 71, (419,176,0): 112, 85, 74, (419,177,0): 112, 84, 73, (419,178,0): 111, 83, 72, (419,179,0): 109, 81, 70, (419,180,0): 106, 79, 68, (419,181,0): 105, 78, 67, (419,182,0): 102, 78, 66, (419,183,0): 102, 78, 66, (419,184,0): 107, 83, 71, (419,185,0): 107, 83, 71, (419,186,0): 107, 85, 72, (419,187,0): 107, 85, 72, (419,188,0): 104, 85, 71, (419,189,0): 103, 84, 70, (419,190,0): 101, 82, 68, (419,191,0): 100, 80, 69, (419,192,0): 98, 78, 69, (419,193,0): 97, 77, 70, (419,194,0): 97, 73, 69, (419,195,0): 97, 72, 68, (419,196,0): 100, 72, 69, (419,197,0): 102, 74, 71, (419,198,0): 105, 75, 75, (419,199,0): 107, 77, 77, (419,200,0): 116, 86, 88, (419,201,0): 117, 87, 89, (419,202,0): 119, 90, 92, (419,203,0): 132, 103, 105, (419,204,0): 153, 127, 130, (419,205,0): 180, 155, 158, (419,206,0): 200, 178, 180, (419,207,0): 208, 192, 195, (419,208,0): 205, 198, 206, (419,209,0): 198, 196, 209, (419,210,0): 193, 193, 205, (419,211,0): 185, 191, 203, (419,212,0): 182, 192, 204, (419,213,0): 176, 192, 205, (419,214,0): 172, 191, 206, (419,215,0): 167, 190, 206, (419,216,0): 163, 190, 207, (419,217,0): 159, 190, 208, (419,218,0): 155, 190, 210, (419,219,0): 153, 189, 211, (419,220,0): 152, 188, 212, (419,221,0): 152, 189, 215, (419,222,0): 152, 189, 216, (419,223,0): 153, 190, 217, (419,224,0): 155, 190, 220, (419,225,0): 155, 190, 222, (419,226,0): 155, 189, 224, (419,227,0): 155, 189, 224, (419,228,0): 155, 189, 226, (419,229,0): 155, 189, 226, (419,230,0): 155, 189, 227, (419,231,0): 155, 189, 227, (419,232,0): 153, 185, 226, (419,233,0): 153, 184, 228, (419,234,0): 152, 183, 229, (419,235,0): 151, 182, 228, (419,236,0): 150, 181, 228, (419,237,0): 149, 180, 227, (419,238,0): 149, 179, 229, (419,239,0): 148, 178, 228, (419,240,0): 151, 179, 227, (419,241,0): 151, 179, 227, (419,242,0): 151, 179, 227, (419,243,0): 151, 179, 227, (419,244,0): 151, 179, 229, (419,245,0): 149, 179, 229, (419,246,0): 149, 179, 229, (419,247,0): 149, 179, 229, (419,248,0): 149, 181, 232, (419,249,0): 149, 181, 232, (419,250,0): 149, 182, 235, (419,251,0): 150, 183, 236, (419,252,0): 151, 184, 237, (419,253,0): 152, 185, 238, (419,254,0): 153, 186, 240, (419,255,0): 152, 187, 243, (419,256,0): 151, 185, 248, (419,257,0): 151, 185, 249, (419,258,0): 152, 186, 250, (419,259,0): 154, 188, 252, (419,260,0): 155, 189, 253, (419,261,0): 157, 191, 255, (419,262,0): 158, 192, 255, (419,263,0): 158, 192, 255, (419,264,0): 156, 190, 254, (419,265,0): 157, 191, 255, (419,266,0): 158, 192, 255, (419,267,0): 159, 193, 255, (419,268,0): 159, 193, 255, (419,269,0): 158, 192, 255, (419,270,0): 157, 191, 255, (419,271,0): 156, 190, 253, (419,272,0): 153, 188, 244, (419,273,0): 157, 190, 244, (419,274,0): 160, 193, 247, (419,275,0): 163, 196, 250, (419,276,0): 167, 198, 253, (419,277,0): 168, 199, 254, (419,278,0): 169, 200, 255, (419,279,0): 170, 199, 255, (419,280,0): 168, 197, 253, (419,281,0): 168, 197, 253, (419,282,0): 171, 197, 254, (419,283,0): 172, 198, 255, (419,284,0): 171, 197, 254, (419,285,0): 170, 196, 253, (419,286,0): 170, 195, 252, (419,287,0): 168, 194, 251, (419,288,0): 167, 193, 252, (419,289,0): 167, 196, 254, (419,290,0): 172, 198, 255, (419,291,0): 174, 200, 255, (419,292,0): 175, 199, 255, (419,293,0): 175, 197, 255, (419,294,0): 174, 194, 255, (419,295,0): 173, 192, 251, (419,296,0): 177, 193, 253, (419,297,0): 179, 194, 253, (419,298,0): 177, 189, 249, (419,299,0): 164, 176, 234, (419,300,0): 150, 160, 221, (419,301,0): 141, 150, 209, (419,302,0): 141, 150, 209, (419,303,0): 146, 152, 212, (419,304,0): 156, 158, 215, (419,305,0): 158, 161, 216, (419,306,0): 161, 164, 217, (419,307,0): 161, 167, 219, (419,308,0): 160, 168, 217, (419,309,0): 158, 166, 215, (419,310,0): 154, 164, 215, (419,311,0): 155, 162, 214, (419,312,0): 159, 162, 217, (419,313,0): 160, 160, 214, (419,314,0): 158, 153, 207, (419,315,0): 161, 151, 203, (419,316,0): 172, 158, 207, (419,317,0): 181, 162, 208, (419,318,0): 168, 147, 190, (419,319,0): 153, 125, 163, (419,320,0): 130, 96, 123, (419,321,0): 118, 78, 102, (419,322,0): 97, 58, 79, (419,323,0): 81, 44, 62, (419,324,0): 73, 36, 53, (419,325,0): 67, 34, 45, (419,326,0): 61, 30, 38, (419,327,0): 56, 27, 32, (419,328,0): 56, 27, 32, (419,329,0): 53, 27, 30, (419,330,0): 51, 26, 29, (419,331,0): 47, 25, 28, (419,332,0): 45, 22, 28, (419,333,0): 43, 20, 26, (419,334,0): 42, 19, 27, (419,335,0): 40, 19, 26, (419,336,0): 39, 22, 32, (419,337,0): 37, 21, 31, (419,338,0): 37, 21, 31, (419,339,0): 37, 21, 31, (419,340,0): 36, 20, 30, (419,341,0): 35, 19, 29, (419,342,0): 35, 19, 29, (419,343,0): 35, 19, 29, (419,344,0): 35, 19, 29, (419,345,0): 35, 19, 29, (419,346,0): 35, 19, 29, (419,347,0): 35, 19, 29, (419,348,0): 35, 19, 29, (419,349,0): 35, 19, 29, (419,350,0): 35, 19, 29, (419,351,0): 38, 18, 29, (419,352,0): 43, 17, 28, (419,353,0): 44, 17, 26, (419,354,0): 46, 16, 26, (419,355,0): 44, 17, 26, (419,356,0): 44, 17, 26, (419,357,0): 43, 17, 26, (419,358,0): 43, 17, 26, (419,359,0): 41, 18, 26, (419,360,0): 42, 19, 27, (419,361,0): 40, 19, 26, (419,362,0): 39, 18, 25, (419,363,0): 37, 16, 23, (419,364,0): 36, 17, 23, (419,365,0): 36, 17, 23, (419,366,0): 35, 18, 24, (419,367,0): 35, 18, 26, (419,368,0): 33, 16, 26, (419,369,0): 34, 17, 27, (419,370,0): 35, 18, 28, (419,371,0): 36, 19, 29, (419,372,0): 36, 19, 29, (419,373,0): 35, 18, 28, (419,374,0): 34, 17, 27, (419,375,0): 33, 16, 26, (419,376,0): 33, 16, 26, (419,377,0): 34, 17, 27, (419,378,0): 34, 17, 27, (419,379,0): 35, 18, 28, (419,380,0): 37, 20, 30, (419,381,0): 38, 21, 31, (419,382,0): 38, 21, 31, (419,383,0): 39, 22, 32, (419,384,0): 40, 23, 33, (419,385,0): 40, 23, 33, (419,386,0): 41, 24, 34, (419,387,0): 42, 25, 35, (419,388,0): 42, 25, 35, (419,389,0): 43, 26, 36, (419,390,0): 44, 27, 37, (419,391,0): 44, 27, 37, (419,392,0): 39, 22, 32, (419,393,0): 39, 22, 32, (419,394,0): 39, 22, 32, (419,395,0): 38, 21, 31, (419,396,0): 38, 21, 31, (419,397,0): 37, 20, 30, (419,398,0): 36, 19, 29, (419,399,0): 36, 19, 29, (419,400,0): 38, 18, 30, (419,401,0): 39, 17, 30, (419,402,0): 38, 16, 29, (419,403,0): 37, 17, 29, (419,404,0): 36, 16, 28, (419,405,0): 34, 16, 28, (419,406,0): 33, 15, 27, (419,407,0): 33, 15, 27, (419,408,0): 32, 14, 26, (419,409,0): 31, 15, 26, (419,410,0): 31, 15, 26, (419,411,0): 29, 16, 26, (419,412,0): 29, 16, 26, (419,413,0): 29, 16, 26, (419,414,0): 29, 16, 26, (419,415,0): 28, 16, 28, (419,416,0): 26, 14, 28, (419,417,0): 26, 14, 28, (419,418,0): 26, 14, 28, (419,419,0): 26, 14, 28, (419,420,0): 26, 14, 28, (419,421,0): 26, 14, 28, (419,422,0): 25, 13, 27, (419,423,0): 25, 13, 27, (419,424,0): 27, 15, 29, (419,425,0): 27, 15, 29, (419,426,0): 28, 16, 30, (419,427,0): 30, 18, 32, (419,428,0): 31, 19, 33, (419,429,0): 31, 19, 33, (419,430,0): 32, 20, 34, (419,431,0): 32, 20, 32, (419,432,0): 34, 23, 31, (419,433,0): 37, 26, 32, (419,434,0): 41, 30, 36, (419,435,0): 44, 33, 39, (419,436,0): 46, 35, 41, (419,437,0): 49, 38, 44, (419,438,0): 54, 43, 49, (419,439,0): 58, 47, 53, (419,440,0): 61, 50, 58, (419,441,0): 67, 56, 64, (419,442,0): 71, 60, 68, (419,443,0): 69, 58, 66, (419,444,0): 70, 59, 67, (419,445,0): 73, 62, 70, (419,446,0): 70, 58, 68, (419,447,0): 65, 54, 62, (419,448,0): 72, 57, 62, (419,449,0): 78, 63, 66, (419,450,0): 83, 68, 71, (419,451,0): 80, 65, 68, (419,452,0): 72, 57, 60, (419,453,0): 65, 50, 53, (419,454,0): 64, 49, 52, (419,455,0): 66, 52, 52, (419,456,0): 69, 55, 55, (419,457,0): 78, 64, 63, (419,458,0): 86, 72, 71, (419,459,0): 86, 72, 69, (419,460,0): 78, 64, 61, (419,461,0): 70, 56, 53, (419,462,0): 67, 53, 50, (419,463,0): 65, 54, 50, (419,464,0): 70, 66, 57, (419,465,0): 68, 65, 56, (419,466,0): 72, 69, 60, (419,467,0): 82, 82, 70, (419,468,0): 98, 98, 86, (419,469,0): 106, 108, 95, (419,470,0): 107, 109, 96, (419,471,0): 105, 105, 93, (419,472,0): 97, 98, 84, (419,473,0): 89, 87, 74, (419,474,0): 80, 74, 62, (419,475,0): 75, 67, 56, (419,476,0): 78, 65, 56, (419,477,0): 84, 70, 59, (419,478,0): 90, 73, 63, (419,479,0): 90, 76, 65, (419,480,0): 80, 70, 58, (419,481,0): 89, 71, 57, (419,482,0): 109, 71, 60, (419,483,0): 128, 74, 62, (419,484,0): 146, 78, 65, (419,485,0): 157, 84, 69, (419,486,0): 157, 88, 72, (419,487,0): 154, 93, 74, (419,488,0): 142, 95, 75, (419,489,0): 136, 101, 81, (419,490,0): 128, 101, 82, (419,491,0): 119, 101, 81, (419,492,0): 117, 104, 85, (419,493,0): 121, 110, 90, (419,494,0): 118, 110, 89, (419,495,0): 114, 103, 81, (419,496,0): 111, 93, 71, (419,497,0): 112, 85, 64, (419,498,0): 110, 79, 59, (419,499,0): 109, 72, 56, (419,500,0): 109, 67, 53, (419,501,0): 107, 60, 50, (419,502,0): 101, 54, 46, (419,503,0): 98, 49, 44, (419,504,0): 99, 50, 45, (419,505,0): 93, 44, 40, (419,506,0): 86, 36, 35, (419,507,0): 82, 32, 31, (419,508,0): 85, 30, 33, (419,509,0): 84, 29, 32, (419,510,0): 82, 26, 29, (419,511,0): 78, 23, 28, (419,512,0): 65, 14, 19, (419,513,0): 71, 18, 24, (419,514,0): 82, 22, 32, (419,515,0): 87, 25, 38, (419,516,0): 91, 27, 41, (419,517,0): 88, 26, 41, (419,518,0): 80, 22, 36, (419,519,0): 79, 21, 35, (419,520,0): 84, 23, 39, (419,521,0): 89, 22, 39, (419,522,0): 95, 22, 39, (419,523,0): 96, 22, 37, (419,524,0): 92, 22, 33, (419,525,0): 83, 22, 29, (419,526,0): 73, 23, 26, (419,527,0): 69, 23, 25, (419,528,0): 73, 21, 25, (419,529,0): 74, 22, 26, (419,530,0): 75, 24, 29, (419,531,0): 74, 28, 31, (419,532,0): 74, 29, 32, (419,533,0): 76, 31, 34, (419,534,0): 76, 31, 36, (419,535,0): 77, 30, 36, (419,536,0): 70, 20, 29, (419,537,0): 72, 22, 31, (419,538,0): 73, 23, 32, (419,539,0): 72, 22, 31, (419,540,0): 66, 20, 30, (419,541,0): 62, 21, 29, (419,542,0): 60, 23, 30, (419,543,0): 64, 25, 30, (419,544,0): 66, 19, 25, (419,545,0): 73, 22, 27, (419,546,0): 79, 28, 33, (419,547,0): 83, 34, 38, (419,548,0): 82, 36, 39, (419,549,0): 79, 34, 37, (419,550,0): 75, 30, 33, (419,551,0): 69, 29, 30, (419,552,0): 68, 28, 29, (419,553,0): 66, 30, 30, (419,554,0): 66, 32, 31, (419,555,0): 67, 36, 34, (419,556,0): 69, 39, 37, (419,557,0): 71, 43, 40, (419,558,0): 73, 45, 42, (419,559,0): 73, 45, 44, (419,560,0): 72, 39, 46, (419,561,0): 70, 34, 44, (419,562,0): 67, 30, 38, (419,563,0): 66, 31, 38, (419,564,0): 66, 35, 40, (419,565,0): 66, 41, 44, (419,566,0): 62, 44, 42, (419,567,0): 59, 44, 39, (419,568,0): 68, 50, 46, (419,569,0): 76, 52, 48, (419,570,0): 86, 55, 53, (419,571,0): 93, 55, 54, (419,572,0): 96, 55, 53, (419,573,0): 98, 57, 55, (419,574,0): 100, 63, 57, (419,575,0): 100, 67, 62, (419,576,0): 100, 70, 68, (419,577,0): 98, 72, 71, (419,578,0): 99, 73, 72, (419,579,0): 97, 76, 73, (419,580,0): 97, 76, 75, (419,581,0): 94, 76, 74, (419,582,0): 92, 74, 72, (419,583,0): 89, 74, 71, (419,584,0): 86, 72, 71, (419,585,0): 84, 70, 69, (419,586,0): 82, 66, 67, (419,587,0): 80, 64, 65, (419,588,0): 80, 61, 63, (419,589,0): 80, 61, 63, (419,590,0): 81, 60, 65, (419,591,0): 80, 59, 64, (419,592,0): 86, 67, 69, (419,593,0): 85, 69, 70, (419,594,0): 88, 72, 73, (419,595,0): 89, 75, 75, (419,596,0): 88, 76, 76, (419,597,0): 86, 76, 75, (419,598,0): 84, 74, 73, (419,599,0): 82, 72, 71, (420,0,0): 70, 82, 68, (420,1,0): 70, 82, 68, (420,2,0): 70, 82, 68, (420,3,0): 70, 82, 68, (420,4,0): 71, 82, 68, (420,5,0): 71, 82, 68, (420,6,0): 71, 82, 68, (420,7,0): 71, 82, 68, (420,8,0): 70, 78, 65, (420,9,0): 70, 78, 65, (420,10,0): 71, 77, 65, (420,11,0): 71, 77, 65, (420,12,0): 72, 78, 66, (420,13,0): 72, 78, 66, (420,14,0): 74, 77, 66, (420,15,0): 74, 77, 66, (420,16,0): 76, 76, 64, (420,17,0): 75, 75, 63, (420,18,0): 74, 74, 62, (420,19,0): 74, 74, 62, (420,20,0): 76, 74, 61, (420,21,0): 77, 75, 62, (420,22,0): 79, 77, 64, (420,23,0): 80, 78, 63, (420,24,0): 81, 78, 63, (420,25,0): 83, 80, 65, (420,26,0): 87, 81, 65, (420,27,0): 89, 83, 67, (420,28,0): 91, 85, 69, (420,29,0): 92, 86, 70, (420,30,0): 93, 86, 68, (420,31,0): 94, 85, 68, (420,32,0): 96, 85, 67, (420,33,0): 97, 84, 67, (420,34,0): 97, 84, 67, (420,35,0): 97, 84, 67, (420,36,0): 97, 84, 67, (420,37,0): 97, 84, 67, (420,38,0): 97, 84, 67, (420,39,0): 97, 84, 67, (420,40,0): 96, 83, 66, (420,41,0): 97, 84, 67, (420,42,0): 99, 86, 69, (420,43,0): 101, 88, 71, (420,44,0): 104, 91, 74, (420,45,0): 106, 93, 76, (420,46,0): 108, 95, 78, (420,47,0): 108, 97, 79, (420,48,0): 109, 98, 78, (420,49,0): 108, 100, 79, (420,50,0): 109, 101, 80, (420,51,0): 110, 102, 81, (420,52,0): 110, 102, 81, (420,53,0): 108, 102, 80, (420,54,0): 107, 101, 79, (420,55,0): 105, 100, 78, (420,56,0): 107, 102, 80, (420,57,0): 108, 103, 81, (420,58,0): 108, 103, 81, (420,59,0): 106, 104, 81, (420,60,0): 105, 103, 80, (420,61,0): 103, 103, 79, (420,62,0): 102, 100, 77, (420,63,0): 100, 100, 76, (420,64,0): 96, 95, 75, (420,65,0): 96, 95, 77, (420,66,0): 97, 96, 78, (420,67,0): 97, 96, 78, (420,68,0): 98, 97, 79, (420,69,0): 98, 97, 79, (420,70,0): 99, 98, 80, (420,71,0): 99, 98, 80, (420,72,0): 93, 92, 74, (420,73,0): 93, 92, 74, (420,74,0): 93, 92, 74, (420,75,0): 92, 91, 73, (420,76,0): 90, 89, 71, (420,77,0): 87, 86, 68, (420,78,0): 84, 83, 65, (420,79,0): 82, 81, 63, (420,80,0): 81, 78, 63, (420,81,0): 78, 74, 62, (420,82,0): 75, 72, 57, (420,83,0): 74, 71, 56, (420,84,0): 77, 71, 57, (420,85,0): 76, 70, 56, (420,86,0): 74, 68, 52, (420,87,0): 71, 65, 49, (420,88,0): 68, 61, 43, (420,89,0): 67, 60, 42, (420,90,0): 67, 58, 41, (420,91,0): 65, 56, 39, (420,92,0): 62, 54, 35, (420,93,0): 60, 52, 33, (420,94,0): 60, 49, 31, (420,95,0): 59, 48, 30, (420,96,0): 57, 44, 25, (420,97,0): 56, 43, 24, (420,98,0): 56, 43, 26, (420,99,0): 56, 43, 26, (420,100,0): 55, 42, 25, (420,101,0): 54, 41, 24, (420,102,0): 54, 41, 25, (420,103,0): 54, 41, 25, (420,104,0): 53, 39, 26, (420,105,0): 54, 40, 27, (420,106,0): 54, 40, 27, (420,107,0): 54, 40, 27, (420,108,0): 55, 41, 30, (420,109,0): 56, 42, 31, (420,110,0): 56, 42, 31, (420,111,0): 58, 41, 31, (420,112,0): 60, 42, 32, (420,113,0): 61, 41, 32, (420,114,0): 61, 41, 32, (420,115,0): 61, 41, 32, (420,116,0): 61, 41, 32, (420,117,0): 61, 41, 32, (420,118,0): 61, 41, 32, (420,119,0): 61, 41, 32, (420,120,0): 57, 37, 28, (420,121,0): 58, 38, 29, (420,122,0): 58, 38, 29, (420,123,0): 59, 39, 30, (420,124,0): 60, 40, 31, (420,125,0): 60, 40, 31, (420,126,0): 61, 41, 32, (420,127,0): 61, 41, 32, (420,128,0): 60, 39, 34, (420,129,0): 60, 39, 34, (420,130,0): 60, 39, 34, (420,131,0): 60, 39, 34, (420,132,0): 60, 39, 34, (420,133,0): 60, 39, 34, (420,134,0): 60, 39, 34, (420,135,0): 60, 39, 34, (420,136,0): 62, 41, 36, (420,137,0): 62, 41, 36, (420,138,0): 63, 42, 37, (420,139,0): 65, 44, 39, (420,140,0): 67, 46, 41, (420,141,0): 68, 47, 42, (420,142,0): 69, 48, 43, (420,143,0): 70, 49, 44, (420,144,0): 76, 52, 48, (420,145,0): 80, 56, 52, (420,146,0): 85, 64, 59, (420,147,0): 91, 70, 65, (420,148,0): 96, 75, 70, (420,149,0): 98, 77, 72, (420,150,0): 97, 78, 72, (420,151,0): 96, 77, 71, (420,152,0): 97, 80, 73, (420,153,0): 96, 79, 72, (420,154,0): 96, 79, 72, (420,155,0): 96, 79, 72, (420,156,0): 93, 78, 71, (420,157,0): 93, 78, 71, (420,158,0): 92, 77, 70, (420,159,0): 94, 77, 70, (420,160,0): 94, 75, 69, (420,161,0): 95, 76, 70, (420,162,0): 96, 77, 71, (420,163,0): 98, 79, 73, (420,164,0): 98, 79, 72, (420,165,0): 98, 79, 72, (420,166,0): 97, 78, 71, (420,167,0): 97, 79, 69, (420,168,0): 100, 82, 72, (420,169,0): 100, 82, 72, (420,170,0): 101, 83, 71, (420,171,0): 102, 84, 72, (420,172,0): 103, 85, 73, (420,173,0): 105, 87, 75, (420,174,0): 106, 88, 74, (420,175,0): 107, 88, 74, (420,176,0): 116, 89, 80, (420,177,0): 116, 87, 79, (420,178,0): 115, 86, 78, (420,179,0): 113, 84, 76, (420,180,0): 110, 83, 74, (420,181,0): 108, 81, 72, (420,182,0): 104, 80, 70, (420,183,0): 103, 79, 69, (420,184,0): 108, 84, 74, (420,185,0): 109, 85, 75, (420,186,0): 108, 86, 75, (420,187,0): 109, 87, 76, (420,188,0): 106, 86, 75, (420,189,0): 105, 85, 74, (420,190,0): 104, 84, 73, (420,191,0): 103, 83, 72, (420,192,0): 101, 81, 72, (420,193,0): 99, 79, 72, (420,194,0): 99, 76, 70, (420,195,0): 98, 73, 68, (420,196,0): 99, 71, 68, (420,197,0): 100, 72, 69, (420,198,0): 103, 73, 71, (420,199,0): 105, 74, 72, (420,200,0): 111, 79, 80, (420,201,0): 114, 84, 84, (420,202,0): 120, 91, 93, (420,203,0): 128, 99, 101, (420,204,0): 138, 112, 113, (420,205,0): 159, 135, 135, (420,206,0): 186, 164, 166, (420,207,0): 207, 188, 192, (420,208,0): 205, 195, 204, (420,209,0): 199, 196, 207, (420,210,0): 196, 194, 205, (420,211,0): 191, 193, 205, (420,212,0): 185, 191, 203, (420,213,0): 180, 192, 204, (420,214,0): 175, 191, 206, (420,215,0): 170, 192, 206, (420,216,0): 165, 191, 208, (420,217,0): 162, 191, 209, (420,218,0): 158, 190, 211, (420,219,0): 154, 189, 211, (420,220,0): 154, 188, 213, (420,221,0): 153, 189, 213, (420,222,0): 153, 189, 215, (420,223,0): 154, 189, 217, (420,224,0): 157, 190, 221, (420,225,0): 157, 190, 223, (420,226,0): 157, 190, 223, (420,227,0): 157, 190, 223, (420,228,0): 157, 190, 225, (420,229,0): 157, 189, 227, (420,230,0): 157, 189, 228, (420,231,0): 157, 189, 228, (420,232,0): 153, 185, 226, (420,233,0): 153, 184, 228, (420,234,0): 152, 183, 229, (420,235,0): 151, 182, 228, (420,236,0): 150, 181, 228, (420,237,0): 148, 179, 226, (420,238,0): 147, 178, 225, (420,239,0): 147, 178, 225, (420,240,0): 150, 178, 226, (420,241,0): 150, 178, 226, (420,242,0): 150, 178, 228, (420,243,0): 150, 178, 228, (420,244,0): 148, 178, 228, (420,245,0): 148, 178, 228, (420,246,0): 148, 178, 230, (420,247,0): 147, 179, 230, (420,248,0): 150, 181, 235, (420,249,0): 150, 181, 235, (420,250,0): 150, 183, 236, (420,251,0): 151, 184, 237, (420,252,0): 150, 185, 239, (420,253,0): 151, 186, 240, (420,254,0): 152, 187, 241, (420,255,0): 153, 188, 244, (420,256,0): 154, 186, 247, (420,257,0): 154, 185, 249, (420,258,0): 156, 187, 251, (420,259,0): 157, 188, 252, (420,260,0): 159, 190, 254, (420,261,0): 161, 192, 255, (420,262,0): 162, 193, 255, (420,263,0): 163, 194, 255, (420,264,0): 161, 192, 255, (420,265,0): 161, 192, 255, (420,266,0): 162, 193, 255, (420,267,0): 163, 194, 255, (420,268,0): 163, 194, 255, (420,269,0): 162, 193, 255, (420,270,0): 161, 192, 255, (420,271,0): 161, 193, 254, (420,272,0): 159, 191, 248, (420,273,0): 162, 193, 248, (420,274,0): 165, 196, 251, (420,275,0): 168, 199, 254, (420,276,0): 172, 201, 255, (420,277,0): 173, 202, 255, (420,278,0): 174, 203, 255, (420,279,0): 176, 202, 255, (420,280,0): 174, 200, 255, (420,281,0): 175, 201, 255, (420,282,0): 176, 201, 255, (420,283,0): 176, 201, 255, (420,284,0): 175, 200, 255, (420,285,0): 174, 199, 255, (420,286,0): 174, 196, 254, (420,287,0): 171, 195, 255, (420,288,0): 167, 193, 254, (420,289,0): 169, 195, 255, (420,290,0): 172, 197, 255, (420,291,0): 174, 200, 255, (420,292,0): 174, 198, 255, (420,293,0): 174, 195, 255, (420,294,0): 171, 192, 255, (420,295,0): 170, 190, 251, (420,296,0): 172, 192, 253, (420,297,0): 172, 191, 250, (420,298,0): 169, 185, 245, (420,299,0): 158, 174, 233, (420,300,0): 147, 163, 223, (420,301,0): 143, 158, 217, (420,302,0): 145, 160, 219, (420,303,0): 152, 164, 224, (420,304,0): 157, 165, 230, (420,305,0): 158, 166, 229, (420,306,0): 161, 169, 231, (420,307,0): 162, 173, 229, (420,308,0): 162, 173, 227, (420,309,0): 159, 172, 225, (420,310,0): 156, 167, 221, (420,311,0): 154, 163, 218, (420,312,0): 154, 159, 215, (420,313,0): 158, 159, 215, (420,314,0): 159, 154, 210, (420,315,0): 162, 152, 204, (420,316,0): 172, 154, 202, (420,317,0): 173, 152, 195, (420,318,0): 155, 128, 169, (420,319,0): 133, 103, 137, (420,320,0): 114, 78, 104, (420,321,0): 104, 66, 87, (420,322,0): 87, 49, 70, (420,323,0): 75, 38, 56, (420,324,0): 69, 32, 49, (420,325,0): 65, 32, 43, (420,326,0): 61, 30, 38, (420,327,0): 57, 28, 33, (420,328,0): 57, 28, 33, (420,329,0): 54, 27, 32, (420,330,0): 52, 27, 31, (420,331,0): 49, 26, 32, (420,332,0): 47, 24, 30, (420,333,0): 45, 24, 31, (420,334,0): 44, 23, 30, (420,335,0): 42, 23, 29, (420,336,0): 38, 21, 31, (420,337,0): 37, 21, 31, (420,338,0): 37, 21, 31, (420,339,0): 36, 20, 30, (420,340,0): 35, 19, 29, (420,341,0): 35, 19, 29, (420,342,0): 35, 19, 29, (420,343,0): 34, 18, 28, (420,344,0): 34, 18, 28, (420,345,0): 34, 18, 28, (420,346,0): 34, 18, 28, (420,347,0): 34, 18, 28, (420,348,0): 34, 18, 28, (420,349,0): 34, 18, 28, (420,350,0): 34, 18, 28, (420,351,0): 35, 18, 28, (420,352,0): 41, 18, 28, (420,353,0): 43, 17, 28, (420,354,0): 44, 16, 28, (420,355,0): 43, 17, 28, (420,356,0): 43, 17, 28, (420,357,0): 41, 18, 28, (420,358,0): 41, 18, 28, (420,359,0): 41, 18, 28, (420,360,0): 42, 19, 29, (420,361,0): 40, 19, 28, (420,362,0): 39, 18, 27, (420,363,0): 36, 16, 25, (420,364,0): 36, 16, 25, (420,365,0): 36, 16, 25, (420,366,0): 35, 18, 26, (420,367,0): 35, 18, 26, (420,368,0): 33, 16, 26, (420,369,0): 33, 16, 26, (420,370,0): 34, 17, 27, (420,371,0): 35, 18, 28, (420,372,0): 35, 18, 28, (420,373,0): 34, 17, 27, (420,374,0): 33, 16, 26, (420,375,0): 33, 16, 26, (420,376,0): 33, 16, 26, (420,377,0): 33, 16, 26, (420,378,0): 34, 17, 27, (420,379,0): 35, 18, 28, (420,380,0): 36, 19, 29, (420,381,0): 37, 20, 30, (420,382,0): 38, 21, 31, (420,383,0): 38, 21, 31, (420,384,0): 39, 22, 32, (420,385,0): 39, 22, 32, (420,386,0): 40, 23, 33, (420,387,0): 41, 24, 34, (420,388,0): 41, 24, 34, (420,389,0): 42, 25, 35, (420,390,0): 43, 26, 36, (420,391,0): 43, 26, 36, (420,392,0): 38, 21, 31, (420,393,0): 38, 21, 31, (420,394,0): 37, 20, 30, (420,395,0): 36, 19, 29, (420,396,0): 36, 19, 29, (420,397,0): 35, 18, 28, (420,398,0): 35, 18, 28, (420,399,0): 35, 18, 28, (420,400,0): 37, 17, 29, (420,401,0): 37, 16, 31, (420,402,0): 36, 15, 30, (420,403,0): 36, 15, 30, (420,404,0): 35, 14, 29, (420,405,0): 33, 15, 29, (420,406,0): 32, 14, 28, (420,407,0): 31, 15, 28, (420,408,0): 29, 13, 26, (420,409,0): 29, 13, 26, (420,410,0): 29, 13, 26, (420,411,0): 27, 13, 26, (420,412,0): 27, 13, 26, (420,413,0): 26, 14, 26, (420,414,0): 26, 14, 26, (420,415,0): 26, 14, 26, (420,416,0): 25, 13, 27, (420,417,0): 24, 13, 27, (420,418,0): 24, 13, 27, (420,419,0): 24, 13, 27, (420,420,0): 24, 13, 27, (420,421,0): 24, 13, 27, (420,422,0): 25, 14, 28, (420,423,0): 25, 14, 28, (420,424,0): 27, 16, 30, (420,425,0): 27, 16, 30, (420,426,0): 28, 17, 31, (420,427,0): 28, 17, 31, (420,428,0): 29, 18, 32, (420,429,0): 31, 20, 34, (420,430,0): 32, 21, 35, (420,431,0): 32, 22, 33, (420,432,0): 34, 22, 32, (420,433,0): 38, 27, 35, (420,434,0): 43, 32, 40, (420,435,0): 47, 36, 44, (420,436,0): 49, 38, 46, (420,437,0): 53, 42, 50, (420,438,0): 57, 46, 54, (420,439,0): 61, 50, 58, (420,440,0): 68, 57, 65, (420,441,0): 72, 61, 69, (420,442,0): 72, 61, 69, (420,443,0): 67, 56, 64, (420,444,0): 68, 57, 65, (420,445,0): 73, 62, 70, (420,446,0): 74, 63, 71, (420,447,0): 70, 59, 67, (420,448,0): 73, 58, 65, (420,449,0): 79, 64, 69, (420,450,0): 86, 71, 76, (420,451,0): 86, 71, 76, (420,452,0): 81, 66, 71, (420,453,0): 74, 59, 62, (420,454,0): 71, 56, 59, (420,455,0): 70, 56, 56, (420,456,0): 71, 57, 57, (420,457,0): 79, 65, 65, (420,458,0): 87, 73, 73, (420,459,0): 87, 73, 72, (420,460,0): 79, 65, 64, (420,461,0): 70, 56, 55, (420,462,0): 65, 51, 50, (420,463,0): 62, 51, 49, (420,464,0): 71, 62, 57, (420,465,0): 69, 62, 56, (420,466,0): 69, 64, 58, (420,467,0): 78, 74, 65, (420,468,0): 91, 88, 79, (420,469,0): 100, 100, 90, (420,470,0): 103, 103, 91, (420,471,0): 103, 103, 91, (420,472,0): 93, 94, 80, (420,473,0): 90, 88, 75, (420,474,0): 85, 82, 67, (420,475,0): 83, 77, 63, (420,476,0): 84, 76, 63, (420,477,0): 86, 77, 62, (420,478,0): 89, 77, 63, (420,479,0): 87, 78, 63, (420,480,0): 86, 83, 68, (420,481,0): 89, 82, 64, (420,482,0): 100, 77, 61, (420,483,0): 111, 74, 56, (420,484,0): 126, 75, 56, (420,485,0): 138, 80, 60, (420,486,0): 148, 87, 68, (420,487,0): 150, 93, 74, (420,488,0): 141, 92, 75, (420,489,0): 138, 97, 79, (420,490,0): 131, 98, 81, (420,491,0): 123, 97, 80, (420,492,0): 121, 104, 86, (420,493,0): 123, 115, 94, (420,494,0): 119, 117, 92, (420,495,0): 116, 112, 85, (420,496,0): 115, 99, 74, (420,497,0): 117, 93, 69, (420,498,0): 115, 84, 63, (420,499,0): 114, 77, 59, (420,500,0): 113, 71, 55, (420,501,0): 111, 65, 52, (420,502,0): 107, 57, 46, (420,503,0): 102, 52, 43, (420,504,0): 101, 52, 45, (420,505,0): 96, 49, 43, (420,506,0): 88, 43, 37, (420,507,0): 85, 37, 33, (420,508,0): 84, 33, 32, (420,509,0): 84, 28, 29, (420,510,0): 84, 22, 25, (420,511,0): 80, 21, 25, (420,512,0): 72, 24, 24, (420,513,0): 76, 27, 30, (420,514,0): 89, 32, 39, (420,515,0): 98, 35, 44, (420,516,0): 98, 32, 44, (420,517,0): 89, 25, 39, (420,518,0): 79, 19, 31, (420,519,0): 69, 13, 24, (420,520,0): 81, 23, 37, (420,521,0): 88, 26, 39, (420,522,0): 100, 29, 45, (420,523,0): 107, 33, 48, (420,524,0): 107, 35, 47, (420,525,0): 101, 34, 43, (420,526,0): 89, 32, 38, (420,527,0): 82, 30, 32, (420,528,0): 87, 32, 37, (420,529,0): 86, 31, 36, (420,530,0): 81, 30, 35, (420,531,0): 78, 32, 35, (420,532,0): 76, 34, 36, (420,533,0): 78, 36, 38, (420,534,0): 81, 39, 43, (420,535,0): 82, 40, 44, (420,536,0): 70, 25, 32, (420,537,0): 73, 26, 34, (420,538,0): 73, 26, 34, (420,539,0): 71, 24, 32, (420,540,0): 66, 20, 30, (420,541,0): 60, 19, 27, (420,542,0): 60, 20, 28, (420,543,0): 62, 21, 27, (420,544,0): 72, 23, 29, (420,545,0): 75, 24, 29, (420,546,0): 79, 28, 33, (420,547,0): 81, 32, 36, (420,548,0): 81, 35, 38, (420,549,0): 79, 34, 37, (420,550,0): 77, 32, 35, (420,551,0): 72, 32, 33, (420,552,0): 65, 25, 26, (420,553,0): 64, 28, 28, (420,554,0): 65, 31, 30, (420,555,0): 66, 35, 33, (420,556,0): 67, 37, 35, (420,557,0): 69, 39, 37, (420,558,0): 71, 41, 39, (420,559,0): 73, 43, 43, (420,560,0): 79, 44, 50, (420,561,0): 76, 39, 47, (420,562,0): 71, 34, 42, (420,563,0): 69, 34, 41, (420,564,0): 68, 37, 42, (420,565,0): 66, 40, 41, (420,566,0): 61, 42, 38, (420,567,0): 59, 40, 34, (420,568,0): 69, 44, 39, (420,569,0): 78, 47, 42, (420,570,0): 91, 50, 44, (420,571,0): 100, 52, 48, (420,572,0): 103, 54, 50, (420,573,0): 103, 55, 51, (420,574,0): 101, 60, 54, (420,575,0): 99, 64, 58, (420,576,0): 99, 68, 66, (420,577,0): 95, 69, 68, (420,578,0): 95, 69, 68, (420,579,0): 92, 71, 68, (420,580,0): 92, 71, 70, (420,581,0): 89, 71, 69, (420,582,0): 88, 70, 68, (420,583,0): 85, 70, 67, (420,584,0): 83, 69, 68, (420,585,0): 82, 68, 67, (420,586,0): 82, 66, 67, (420,587,0): 81, 65, 66, (420,588,0): 81, 62, 64, (420,589,0): 81, 62, 64, (420,590,0): 82, 61, 66, (420,591,0): 83, 62, 67, (420,592,0): 86, 67, 71, (420,593,0): 86, 70, 73, (420,594,0): 89, 73, 76, (420,595,0): 90, 75, 78, (420,596,0): 88, 76, 78, (420,597,0): 86, 76, 77, (420,598,0): 84, 74, 75, (420,599,0): 82, 73, 74, (421,0,0): 71, 83, 69, (421,1,0): 71, 83, 69, (421,2,0): 71, 83, 69, (421,3,0): 70, 82, 68, (421,4,0): 71, 82, 68, (421,5,0): 70, 81, 67, (421,6,0): 70, 81, 67, (421,7,0): 70, 81, 67, (421,8,0): 70, 78, 65, (421,9,0): 71, 79, 66, (421,10,0): 72, 78, 66, (421,11,0): 72, 78, 66, (421,12,0): 73, 79, 67, (421,13,0): 73, 79, 67, (421,14,0): 76, 79, 68, (421,15,0): 76, 79, 68, (421,16,0): 76, 78, 65, (421,17,0): 76, 76, 64, (421,18,0): 75, 75, 63, (421,19,0): 74, 74, 62, (421,20,0): 77, 75, 63, (421,21,0): 77, 75, 62, (421,22,0): 78, 76, 63, (421,23,0): 79, 77, 64, (421,24,0): 81, 77, 65, (421,25,0): 82, 79, 64, (421,26,0): 86, 80, 66, (421,27,0): 89, 83, 67, (421,28,0): 90, 84, 68, (421,29,0): 91, 85, 69, (421,30,0): 92, 85, 69, (421,31,0): 92, 85, 67, (421,32,0): 95, 83, 67, (421,33,0): 95, 84, 66, (421,34,0): 96, 83, 66, (421,35,0): 96, 85, 67, (421,36,0): 97, 84, 67, (421,37,0): 98, 85, 68, (421,38,0): 98, 85, 68, (421,39,0): 98, 85, 68, (421,40,0): 95, 82, 65, (421,41,0): 96, 83, 66, (421,42,0): 98, 85, 68, (421,43,0): 100, 87, 70, (421,44,0): 103, 90, 73, (421,45,0): 105, 92, 75, (421,46,0): 107, 94, 77, (421,47,0): 107, 96, 78, (421,48,0): 107, 99, 78, (421,49,0): 108, 100, 79, (421,50,0): 109, 101, 80, (421,51,0): 109, 103, 81, (421,52,0): 109, 103, 81, (421,53,0): 107, 102, 80, (421,54,0): 106, 101, 79, (421,55,0): 105, 100, 78, (421,56,0): 106, 101, 79, (421,57,0): 104, 102, 79, (421,58,0): 105, 103, 80, (421,59,0): 104, 104, 80, (421,60,0): 103, 103, 79, (421,61,0): 102, 102, 78, (421,62,0): 101, 101, 77, (421,63,0): 100, 99, 78, (421,64,0): 95, 94, 74, (421,65,0): 95, 94, 76, (421,66,0): 96, 95, 77, (421,67,0): 96, 95, 77, (421,68,0): 97, 96, 78, (421,69,0): 97, 96, 78, (421,70,0): 98, 97, 79, (421,71,0): 98, 97, 79, (421,72,0): 94, 93, 75, (421,73,0): 94, 93, 75, (421,74,0): 93, 92, 74, (421,75,0): 92, 91, 73, (421,76,0): 90, 89, 71, (421,77,0): 87, 86, 68, (421,78,0): 85, 84, 66, (421,79,0): 84, 82, 67, (421,80,0): 82, 78, 66, (421,81,0): 80, 76, 64, (421,82,0): 77, 74, 59, (421,83,0): 76, 73, 58, (421,84,0): 79, 73, 59, (421,85,0): 78, 72, 58, (421,86,0): 75, 69, 55, (421,87,0): 73, 67, 51, (421,88,0): 69, 62, 46, (421,89,0): 68, 61, 43, (421,90,0): 68, 59, 42, (421,91,0): 66, 57, 40, (421,92,0): 64, 56, 37, (421,93,0): 61, 53, 34, (421,94,0): 60, 49, 31, (421,95,0): 58, 47, 29, (421,96,0): 57, 44, 25, (421,97,0): 57, 44, 25, (421,98,0): 57, 44, 27, (421,99,0): 56, 43, 26, (421,100,0): 56, 43, 26, (421,101,0): 55, 42, 25, (421,102,0): 55, 42, 26, (421,103,0): 54, 41, 25, (421,104,0): 53, 39, 26, (421,105,0): 53, 39, 26, (421,106,0): 53, 39, 26, (421,107,0): 54, 40, 27, (421,108,0): 54, 40, 29, (421,109,0): 55, 41, 30, (421,110,0): 55, 41, 30, (421,111,0): 58, 41, 31, (421,112,0): 60, 42, 32, (421,113,0): 61, 41, 32, (421,114,0): 61, 41, 32, (421,115,0): 61, 41, 32, (421,116,0): 61, 41, 32, (421,117,0): 61, 41, 32, (421,118,0): 61, 41, 32, (421,119,0): 61, 41, 32, (421,120,0): 57, 37, 28, (421,121,0): 58, 38, 29, (421,122,0): 58, 38, 29, (421,123,0): 59, 39, 30, (421,124,0): 60, 40, 31, (421,125,0): 61, 41, 32, (421,126,0): 62, 42, 33, (421,127,0): 63, 43, 34, (421,128,0): 62, 41, 36, (421,129,0): 62, 41, 36, (421,130,0): 62, 41, 36, (421,131,0): 62, 41, 36, (421,132,0): 62, 41, 36, (421,133,0): 62, 41, 36, (421,134,0): 62, 41, 36, (421,135,0): 62, 41, 36, (421,136,0): 63, 42, 37, (421,137,0): 64, 43, 38, (421,138,0): 65, 44, 39, (421,139,0): 67, 46, 41, (421,140,0): 68, 47, 42, (421,141,0): 70, 49, 44, (421,142,0): 71, 50, 45, (421,143,0): 72, 51, 46, (421,144,0): 76, 52, 48, (421,145,0): 81, 57, 53, (421,146,0): 85, 64, 59, (421,147,0): 92, 71, 66, (421,148,0): 97, 76, 71, (421,149,0): 99, 78, 73, (421,150,0): 98, 79, 73, (421,151,0): 98, 79, 73, (421,152,0): 98, 81, 74, (421,153,0): 98, 81, 74, (421,154,0): 98, 81, 74, (421,155,0): 97, 80, 73, (421,156,0): 95, 80, 73, (421,157,0): 94, 79, 72, (421,158,0): 94, 79, 72, (421,159,0): 93, 78, 71, (421,160,0): 94, 77, 70, (421,161,0): 96, 77, 71, (421,162,0): 97, 78, 72, (421,163,0): 98, 79, 73, (421,164,0): 99, 80, 74, (421,165,0): 99, 80, 73, (421,166,0): 98, 79, 72, (421,167,0): 98, 79, 72, (421,168,0): 102, 83, 76, (421,169,0): 102, 84, 74, (421,170,0): 103, 85, 75, (421,171,0): 105, 87, 75, (421,172,0): 106, 88, 76, (421,173,0): 108, 90, 78, (421,174,0): 109, 91, 79, (421,175,0): 111, 92, 78, (421,176,0): 118, 91, 82, (421,177,0): 119, 90, 82, (421,178,0): 119, 90, 82, (421,179,0): 118, 89, 81, (421,180,0): 115, 88, 79, (421,181,0): 112, 85, 76, (421,182,0): 108, 84, 74, (421,183,0): 107, 83, 73, (421,184,0): 110, 86, 76, (421,185,0): 111, 87, 77, (421,186,0): 111, 89, 78, (421,187,0): 111, 89, 78, (421,188,0): 109, 89, 78, (421,189,0): 109, 89, 78, (421,190,0): 107, 87, 76, (421,191,0): 107, 87, 78, (421,192,0): 105, 85, 76, (421,193,0): 105, 82, 76, (421,194,0): 102, 77, 72, (421,195,0): 100, 75, 70, (421,196,0): 100, 72, 69, (421,197,0): 101, 71, 69, (421,198,0): 103, 72, 70, (421,199,0): 104, 73, 71, (421,200,0): 102, 70, 71, (421,201,0): 109, 77, 78, (421,202,0): 119, 89, 91, (421,203,0): 125, 96, 98, (421,204,0): 129, 103, 104, (421,205,0): 144, 118, 119, (421,206,0): 173, 148, 151, (421,207,0): 196, 177, 179, (421,208,0): 201, 188, 195, (421,209,0): 200, 193, 201, (421,210,0): 201, 195, 205, (421,211,0): 197, 195, 206, (421,212,0): 190, 192, 204, (421,213,0): 182, 190, 201, (421,214,0): 178, 192, 205, (421,215,0): 176, 194, 208, (421,216,0): 169, 192, 208, (421,217,0): 165, 192, 209, (421,218,0): 162, 190, 211, (421,219,0): 157, 189, 210, (421,220,0): 156, 188, 211, (421,221,0): 154, 188, 213, (421,222,0): 154, 188, 215, (421,223,0): 154, 188, 215, (421,224,0): 156, 189, 220, (421,225,0): 156, 189, 222, (421,226,0): 158, 188, 222, (421,227,0): 156, 189, 222, (421,228,0): 156, 189, 224, (421,229,0): 156, 189, 224, (421,230,0): 156, 188, 226, (421,231,0): 156, 188, 227, (421,232,0): 154, 186, 227, (421,233,0): 153, 185, 226, (421,234,0): 152, 183, 227, (421,235,0): 151, 182, 228, (421,236,0): 149, 180, 227, (421,237,0): 147, 178, 225, (421,238,0): 146, 177, 224, (421,239,0): 146, 177, 224, (421,240,0): 148, 176, 224, (421,241,0): 148, 176, 224, (421,242,0): 148, 176, 226, (421,243,0): 146, 176, 226, (421,244,0): 146, 176, 226, (421,245,0): 146, 176, 226, (421,246,0): 145, 177, 228, (421,247,0): 145, 177, 228, (421,248,0): 150, 181, 235, (421,249,0): 150, 183, 236, (421,250,0): 151, 184, 237, (421,251,0): 152, 185, 238, (421,252,0): 151, 186, 240, (421,253,0): 152, 187, 241, (421,254,0): 152, 187, 241, (421,255,0): 153, 188, 244, (421,256,0): 154, 186, 247, (421,257,0): 154, 185, 249, (421,258,0): 157, 187, 251, (421,259,0): 158, 189, 253, (421,260,0): 161, 191, 255, (421,261,0): 162, 193, 255, (421,262,0): 164, 194, 255, (421,263,0): 164, 195, 255, (421,264,0): 164, 194, 255, (421,265,0): 164, 195, 255, (421,266,0): 166, 196, 255, (421,267,0): 166, 197, 255, (421,268,0): 167, 197, 255, (421,269,0): 165, 196, 255, (421,270,0): 165, 195, 255, (421,271,0): 164, 194, 255, (421,272,0): 164, 195, 252, (421,273,0): 166, 197, 252, (421,274,0): 169, 198, 254, (421,275,0): 172, 201, 255, (421,276,0): 174, 203, 255, (421,277,0): 175, 204, 255, (421,278,0): 177, 203, 255, (421,279,0): 177, 203, 255, (421,280,0): 177, 202, 255, (421,281,0): 177, 202, 255, (421,282,0): 178, 203, 255, (421,283,0): 178, 203, 255, (421,284,0): 178, 200, 255, (421,285,0): 177, 199, 255, (421,286,0): 175, 197, 255, (421,287,0): 174, 196, 255, (421,288,0): 168, 193, 255, (421,289,0): 169, 194, 255, (421,290,0): 170, 195, 255, (421,291,0): 171, 196, 255, (421,292,0): 171, 196, 255, (421,293,0): 170, 194, 255, (421,294,0): 168, 192, 255, (421,295,0): 166, 190, 252, (421,296,0): 165, 186, 249, (421,297,0): 162, 184, 244, (421,298,0): 156, 178, 238, (421,299,0): 149, 171, 229, (421,300,0): 146, 166, 227, (421,301,0): 145, 165, 224, (421,302,0): 149, 169, 228, (421,303,0): 154, 172, 234, (421,304,0): 160, 175, 244, (421,305,0): 161, 174, 244, (421,306,0): 161, 176, 243, (421,307,0): 162, 178, 240, (421,308,0): 163, 179, 238, (421,309,0): 161, 178, 234, (421,310,0): 157, 172, 229, (421,311,0): 156, 166, 225, (421,312,0): 159, 165, 225, (421,313,0): 162, 162, 222, (421,314,0): 166, 158, 215, (421,315,0): 167, 154, 207, (421,316,0): 168, 149, 195, (421,317,0): 159, 134, 174, (421,318,0): 139, 109, 145, (421,319,0): 120, 87, 116, (421,320,0): 101, 66, 90, (421,321,0): 93, 56, 74, (421,322,0): 80, 43, 61, (421,323,0): 69, 35, 51, (421,324,0): 64, 30, 44, (421,325,0): 62, 30, 43, (421,326,0): 59, 29, 39, (421,327,0): 55, 28, 35, (421,328,0): 54, 27, 34, (421,329,0): 53, 28, 34, (421,330,0): 50, 27, 33, (421,331,0): 48, 27, 34, (421,332,0): 47, 26, 33, (421,333,0): 46, 25, 32, (421,334,0): 45, 24, 31, (421,335,0): 43, 23, 32, (421,336,0): 38, 21, 31, (421,337,0): 36, 20, 30, (421,338,0): 36, 20, 30, (421,339,0): 35, 19, 29, (421,340,0): 35, 19, 29, (421,341,0): 34, 18, 28, (421,342,0): 34, 18, 28, (421,343,0): 34, 18, 28, (421,344,0): 33, 17, 27, (421,345,0): 33, 17, 27, (421,346,0): 33, 17, 27, (421,347,0): 33, 17, 27, (421,348,0): 33, 17, 27, (421,349,0): 33, 17, 27, (421,350,0): 33, 17, 27, (421,351,0): 34, 17, 27, (421,352,0): 40, 19, 28, (421,353,0): 41, 18, 28, (421,354,0): 41, 18, 28, (421,355,0): 41, 18, 28, (421,356,0): 41, 18, 28, (421,357,0): 40, 19, 28, (421,358,0): 41, 18, 28, (421,359,0): 40, 19, 28, (421,360,0): 41, 20, 29, (421,361,0): 40, 19, 28, (421,362,0): 38, 18, 27, (421,363,0): 36, 16, 25, (421,364,0): 36, 16, 25, (421,365,0): 36, 16, 25, (421,366,0): 35, 18, 26, (421,367,0): 35, 18, 26, (421,368,0): 33, 16, 26, (421,369,0): 34, 17, 27, (421,370,0): 35, 18, 28, (421,371,0): 35, 18, 28, (421,372,0): 35, 18, 28, (421,373,0): 35, 18, 28, (421,374,0): 34, 17, 27, (421,375,0): 33, 16, 26, (421,376,0): 33, 16, 26, (421,377,0): 33, 16, 26, (421,378,0): 34, 17, 27, (421,379,0): 35, 18, 28, (421,380,0): 36, 19, 29, (421,381,0): 37, 20, 30, (421,382,0): 38, 21, 31, (421,383,0): 38, 21, 31, (421,384,0): 39, 22, 32, (421,385,0): 39, 22, 32, (421,386,0): 39, 22, 32, (421,387,0): 40, 23, 33, (421,388,0): 40, 23, 33, (421,389,0): 40, 23, 33, (421,390,0): 41, 24, 34, (421,391,0): 41, 24, 34, (421,392,0): 37, 20, 30, (421,393,0): 36, 19, 29, (421,394,0): 35, 18, 28, (421,395,0): 34, 17, 27, (421,396,0): 33, 16, 26, (421,397,0): 33, 16, 26, (421,398,0): 34, 17, 27, (421,399,0): 34, 16, 28, (421,400,0): 36, 15, 30, (421,401,0): 36, 15, 30, (421,402,0): 35, 14, 29, (421,403,0): 33, 15, 29, (421,404,0): 32, 14, 28, (421,405,0): 31, 15, 28, (421,406,0): 30, 14, 27, (421,407,0): 30, 14, 27, (421,408,0): 28, 12, 25, (421,409,0): 26, 12, 25, (421,410,0): 26, 12, 25, (421,411,0): 25, 13, 25, (421,412,0): 25, 13, 25, (421,413,0): 25, 13, 25, (421,414,0): 25, 13, 25, (421,415,0): 25, 13, 25, (421,416,0): 23, 12, 26, (421,417,0): 23, 12, 26, (421,418,0): 23, 12, 26, (421,419,0): 23, 12, 26, (421,420,0): 24, 13, 27, (421,421,0): 24, 13, 27, (421,422,0): 25, 14, 28, (421,423,0): 25, 14, 28, (421,424,0): 28, 17, 31, (421,425,0): 28, 17, 31, (421,426,0): 28, 17, 31, (421,427,0): 28, 17, 31, (421,428,0): 29, 18, 32, (421,429,0): 31, 20, 34, (421,430,0): 33, 22, 36, (421,431,0): 34, 24, 35, (421,432,0): 34, 22, 32, (421,433,0): 39, 28, 36, (421,434,0): 45, 34, 42, (421,435,0): 50, 39, 47, (421,436,0): 53, 42, 50, (421,437,0): 57, 46, 54, (421,438,0): 61, 50, 58, (421,439,0): 65, 54, 62, (421,440,0): 73, 62, 70, (421,441,0): 76, 65, 73, (421,442,0): 74, 63, 71, (421,443,0): 68, 57, 65, (421,444,0): 68, 57, 65, (421,445,0): 74, 63, 71, (421,446,0): 76, 65, 73, (421,447,0): 74, 63, 69, (421,448,0): 75, 60, 67, (421,449,0): 81, 66, 73, (421,450,0): 89, 74, 79, (421,451,0): 91, 76, 81, (421,452,0): 87, 72, 77, (421,453,0): 81, 66, 71, (421,454,0): 77, 62, 65, (421,455,0): 75, 60, 63, (421,456,0): 74, 59, 62, (421,457,0): 79, 65, 65, (421,458,0): 84, 70, 70, (421,459,0): 85, 71, 71, (421,460,0): 80, 66, 65, (421,461,0): 72, 58, 57, (421,462,0): 65, 51, 50, (421,463,0): 62, 48, 47, (421,464,0): 68, 57, 55, (421,465,0): 67, 57, 55, (421,466,0): 69, 59, 57, (421,467,0): 74, 67, 61, (421,468,0): 82, 77, 71, (421,469,0): 91, 88, 79, (421,470,0): 98, 95, 86, (421,471,0): 99, 99, 87, (421,472,0): 94, 95, 81, (421,473,0): 93, 94, 78, (421,474,0): 94, 92, 77, (421,475,0): 94, 91, 74, (421,476,0): 94, 88, 72, (421,477,0): 90, 85, 66, (421,478,0): 87, 80, 62, (421,479,0): 84, 79, 60, (421,480,0): 88, 87, 67, (421,481,0): 88, 86, 65, (421,482,0): 94, 79, 58, (421,483,0): 99, 72, 51, (421,484,0): 108, 70, 47, (421,485,0): 118, 72, 49, (421,486,0): 129, 78, 57, (421,487,0): 135, 84, 63, (421,488,0): 133, 86, 68, (421,489,0): 133, 90, 74, (421,490,0): 130, 93, 77, (421,491,0): 125, 94, 76, (421,492,0): 125, 102, 84, (421,493,0): 130, 114, 91, (421,494,0): 128, 118, 91, (421,495,0): 123, 114, 85, (421,496,0): 120, 105, 76, (421,497,0): 119, 98, 71, (421,498,0): 116, 90, 65, (421,499,0): 115, 83, 62, (421,500,0): 115, 77, 58, (421,501,0): 113, 70, 54, (421,502,0): 109, 61, 47, (421,503,0): 106, 56, 45, (421,504,0): 98, 50, 40, (421,505,0): 95, 48, 40, (421,506,0): 90, 47, 38, (421,507,0): 88, 43, 37, (421,508,0): 88, 39, 34, (421,509,0): 88, 34, 32, (421,510,0): 89, 29, 29, (421,511,0): 84, 28, 29, (421,512,0): 77, 33, 30, (421,513,0): 75, 31, 28, (421,514,0): 89, 33, 36, (421,515,0): 99, 34, 42, (421,516,0): 97, 27, 38, (421,517,0): 94, 26, 39, (421,518,0): 89, 27, 38, (421,519,0): 79, 22, 31, (421,520,0): 74, 18, 29, (421,521,0): 81, 21, 31, (421,522,0): 93, 25, 38, (421,523,0): 103, 31, 43, (421,524,0): 109, 36, 47, (421,525,0): 106, 35, 43, (421,526,0): 97, 32, 38, (421,527,0): 88, 29, 33, (421,528,0): 93, 36, 42, (421,529,0): 90, 35, 40, (421,530,0): 83, 32, 37, (421,531,0): 77, 31, 34, (421,532,0): 72, 30, 32, (421,533,0): 69, 30, 31, (421,534,0): 70, 29, 33, (421,535,0): 71, 30, 34, (421,536,0): 70, 27, 34, (421,537,0): 73, 28, 35, (421,538,0): 75, 28, 36, (421,539,0): 72, 25, 33, (421,540,0): 67, 20, 30, (421,541,0): 63, 17, 27, (421,542,0): 61, 18, 27, (421,543,0): 65, 20, 27, (421,544,0): 79, 28, 35, (421,545,0): 81, 28, 34, (421,546,0): 83, 30, 36, (421,547,0): 83, 32, 37, (421,548,0): 81, 32, 36, (421,549,0): 77, 32, 35, (421,550,0): 73, 31, 33, (421,551,0): 71, 31, 32, (421,552,0): 66, 27, 28, (421,553,0): 67, 31, 31, (421,554,0): 68, 34, 33, (421,555,0): 69, 35, 34, (421,556,0): 67, 36, 34, (421,557,0): 67, 37, 35, (421,558,0): 71, 40, 38, (421,559,0): 73, 41, 42, (421,560,0): 80, 45, 49, (421,561,0): 78, 43, 49, (421,562,0): 74, 39, 45, (421,563,0): 71, 39, 44, (421,564,0): 69, 40, 42, (421,565,0): 69, 41, 40, (421,566,0): 66, 41, 36, (421,567,0): 68, 39, 31, (421,568,0): 78, 40, 31, (421,569,0): 91, 43, 33, (421,570,0): 106, 47, 39, (421,571,0): 112, 52, 44, (421,572,0): 113, 54, 48, (421,573,0): 110, 57, 51, (421,574,0): 105, 62, 55, (421,575,0): 100, 66, 57, (421,576,0): 95, 64, 62, (421,577,0): 91, 65, 64, (421,578,0): 90, 64, 63, (421,579,0): 87, 66, 63, (421,580,0): 87, 66, 65, (421,581,0): 85, 67, 65, (421,582,0): 84, 66, 64, (421,583,0): 82, 67, 64, (421,584,0): 79, 65, 64, (421,585,0): 80, 66, 65, (421,586,0): 82, 66, 67, (421,587,0): 81, 65, 66, (421,588,0): 81, 62, 64, (421,589,0): 80, 61, 63, (421,590,0): 82, 61, 66, (421,591,0): 83, 64, 68, (421,592,0): 84, 68, 71, (421,593,0): 84, 69, 72, (421,594,0): 87, 72, 75, (421,595,0): 87, 75, 77, (421,596,0): 87, 77, 78, (421,597,0): 85, 76, 77, (421,598,0): 83, 74, 75, (421,599,0): 79, 73, 73, (422,0,0): 72, 84, 70, (422,1,0): 72, 84, 70, (422,2,0): 71, 83, 69, (422,3,0): 70, 82, 68, (422,4,0): 71, 82, 68, (422,5,0): 70, 81, 67, (422,6,0): 69, 80, 66, (422,7,0): 69, 80, 66, (422,8,0): 71, 79, 66, (422,9,0): 71, 79, 66, (422,10,0): 72, 78, 66, (422,11,0): 73, 79, 67, (422,12,0): 74, 80, 68, (422,13,0): 74, 80, 68, (422,14,0): 77, 80, 69, (422,15,0): 77, 80, 69, (422,16,0): 77, 79, 68, (422,17,0): 76, 78, 67, (422,18,0): 75, 77, 66, (422,19,0): 74, 76, 63, (422,20,0): 75, 75, 63, (422,21,0): 75, 75, 63, (422,22,0): 78, 76, 64, (422,23,0): 79, 77, 64, (422,24,0): 79, 77, 64, (422,25,0): 80, 78, 63, (422,26,0): 83, 80, 65, (422,27,0): 85, 82, 67, (422,28,0): 89, 83, 69, (422,29,0): 90, 84, 68, (422,30,0): 90, 84, 68, (422,31,0): 91, 84, 66, (422,32,0): 92, 83, 66, (422,33,0): 92, 83, 66, (422,34,0): 95, 83, 67, (422,35,0): 94, 85, 68, (422,36,0): 96, 84, 68, (422,37,0): 97, 85, 69, (422,38,0): 98, 86, 70, (422,39,0): 98, 86, 70, (422,40,0): 93, 81, 65, (422,41,0): 94, 82, 66, (422,42,0): 97, 84, 68, (422,43,0): 99, 86, 70, (422,44,0): 102, 89, 73, (422,45,0): 105, 92, 76, (422,46,0): 107, 94, 78, (422,47,0): 107, 96, 78, (422,48,0): 107, 99, 78, (422,49,0): 107, 101, 79, (422,50,0): 108, 102, 80, (422,51,0): 108, 103, 81, (422,52,0): 108, 103, 81, (422,53,0): 107, 102, 80, (422,54,0): 106, 101, 79, (422,55,0): 103, 101, 78, (422,56,0): 102, 100, 77, (422,57,0): 102, 102, 78, (422,58,0): 103, 103, 79, (422,59,0): 103, 103, 79, (422,60,0): 103, 103, 79, (422,61,0): 100, 102, 78, (422,62,0): 98, 100, 76, (422,63,0): 97, 99, 77, (422,64,0): 95, 94, 76, (422,65,0): 95, 93, 78, (422,66,0): 96, 94, 79, (422,67,0): 96, 94, 79, (422,68,0): 97, 95, 80, (422,69,0): 97, 95, 80, (422,70,0): 98, 96, 81, (422,71,0): 98, 96, 81, (422,72,0): 97, 95, 80, (422,73,0): 95, 93, 78, (422,74,0): 93, 91, 76, (422,75,0): 90, 88, 73, (422,76,0): 88, 86, 71, (422,77,0): 87, 85, 70, (422,78,0): 86, 84, 69, (422,79,0): 86, 84, 69, (422,80,0): 83, 79, 67, (422,81,0): 80, 76, 64, (422,82,0): 78, 74, 62, (422,83,0): 77, 73, 61, (422,84,0): 80, 74, 62, (422,85,0): 79, 73, 59, (422,86,0): 76, 70, 56, (422,87,0): 73, 67, 51, (422,88,0): 69, 62, 46, (422,89,0): 69, 62, 46, (422,90,0): 69, 60, 43, (422,91,0): 67, 58, 41, (422,92,0): 64, 55, 38, (422,93,0): 61, 52, 35, (422,94,0): 59, 47, 31, (422,95,0): 57, 46, 28, (422,96,0): 58, 45, 26, (422,97,0): 57, 44, 25, (422,98,0): 57, 44, 27, (422,99,0): 56, 43, 26, (422,100,0): 56, 43, 26, (422,101,0): 55, 42, 25, (422,102,0): 55, 42, 26, (422,103,0): 55, 42, 26, (422,104,0): 52, 38, 25, (422,105,0): 53, 39, 26, (422,106,0): 53, 39, 26, (422,107,0): 54, 40, 27, (422,108,0): 54, 40, 29, (422,109,0): 55, 41, 30, (422,110,0): 55, 41, 30, (422,111,0): 57, 40, 30, (422,112,0): 60, 42, 32, (422,113,0): 61, 41, 32, (422,114,0): 61, 41, 32, (422,115,0): 61, 41, 32, (422,116,0): 61, 41, 32, (422,117,0): 61, 41, 32, (422,118,0): 61, 41, 32, (422,119,0): 61, 41, 32, (422,120,0): 58, 38, 29, (422,121,0): 58, 38, 29, (422,122,0): 59, 39, 30, (422,123,0): 60, 40, 31, (422,124,0): 62, 42, 33, (422,125,0): 63, 43, 34, (422,126,0): 64, 44, 35, (422,127,0): 64, 44, 35, (422,128,0): 63, 42, 37, (422,129,0): 63, 42, 37, (422,130,0): 63, 42, 37, (422,131,0): 63, 42, 37, (422,132,0): 63, 42, 37, (422,133,0): 63, 42, 37, (422,134,0): 63, 42, 37, (422,135,0): 63, 42, 37, (422,136,0): 65, 44, 39, (422,137,0): 66, 45, 40, (422,138,0): 67, 46, 41, (422,139,0): 69, 48, 43, (422,140,0): 70, 49, 44, (422,141,0): 72, 51, 46, (422,142,0): 73, 52, 47, (422,143,0): 74, 53, 48, (422,144,0): 77, 53, 51, (422,145,0): 81, 57, 55, (422,146,0): 86, 65, 62, (422,147,0): 93, 72, 69, (422,148,0): 98, 77, 74, (422,149,0): 100, 79, 76, (422,150,0): 100, 81, 77, (422,151,0): 99, 80, 76, (422,152,0): 99, 81, 77, (422,153,0): 99, 81, 77, (422,154,0): 99, 81, 77, (422,155,0): 98, 80, 76, (422,156,0): 96, 81, 76, (422,157,0): 95, 80, 75, (422,158,0): 95, 80, 75, (422,159,0): 95, 80, 75, (422,160,0): 95, 80, 75, (422,161,0): 98, 80, 76, (422,162,0): 100, 82, 78, (422,163,0): 101, 84, 77, (422,164,0): 102, 85, 78, (422,165,0): 101, 84, 77, (422,166,0): 101, 84, 77, (422,167,0): 100, 83, 75, (422,168,0): 104, 85, 78, (422,169,0): 104, 86, 76, (422,170,0): 106, 88, 78, (422,171,0): 107, 89, 79, (422,172,0): 110, 90, 81, (422,173,0): 112, 92, 81, (422,174,0): 113, 93, 82, (422,175,0): 116, 94, 83, (422,176,0): 120, 93, 86, (422,177,0): 122, 93, 87, (422,178,0): 122, 93, 87, (422,179,0): 122, 93, 87, (422,180,0): 119, 92, 85, (422,181,0): 117, 90, 83, (422,182,0): 112, 87, 80, (422,183,0): 111, 86, 79, (422,184,0): 112, 87, 80, (422,185,0): 113, 88, 81, (422,186,0): 113, 90, 82, (422,187,0): 114, 91, 83, (422,188,0): 112, 92, 83, (422,189,0): 112, 92, 83, (422,190,0): 111, 91, 82, (422,191,0): 110, 90, 81, (422,192,0): 111, 88, 80, (422,193,0): 108, 85, 77, (422,194,0): 106, 81, 74, (422,195,0): 102, 77, 70, (422,196,0): 102, 74, 70, (422,197,0): 102, 73, 69, (422,198,0): 104, 73, 70, (422,199,0): 105, 74, 71, (422,200,0): 102, 71, 69, (422,201,0): 105, 74, 72, (422,202,0): 110, 80, 80, (422,203,0): 117, 89, 88, (422,204,0): 119, 93, 92, (422,205,0): 129, 103, 102, (422,206,0): 152, 128, 128, (422,207,0): 172, 152, 153, (422,208,0): 197, 180, 186, (422,209,0): 202, 189, 196, (422,210,0): 208, 197, 205, (422,211,0): 203, 198, 205, (422,212,0): 193, 192, 200, (422,213,0): 184, 188, 197, (422,214,0): 181, 191, 201, (422,215,0): 181, 195, 208, (422,216,0): 173, 192, 207, (422,217,0): 168, 191, 207, (422,218,0): 163, 190, 209, (422,219,0): 161, 189, 210, (422,220,0): 157, 187, 211, (422,221,0): 156, 188, 211, (422,222,0): 156, 188, 213, (422,223,0): 156, 187, 215, (422,224,0): 158, 189, 220, (422,225,0): 158, 189, 220, (422,226,0): 159, 188, 222, (422,227,0): 158, 188, 222, (422,228,0): 158, 188, 224, (422,229,0): 158, 188, 224, (422,230,0): 158, 188, 226, (422,231,0): 158, 187, 227, (422,232,0): 154, 186, 227, (422,233,0): 153, 185, 226, (422,234,0): 152, 183, 227, (422,235,0): 150, 181, 225, (422,236,0): 148, 179, 225, (422,237,0): 147, 178, 224, (422,238,0): 144, 176, 223, (422,239,0): 144, 176, 223, (422,240,0): 145, 175, 225, (422,241,0): 145, 175, 225, (422,242,0): 145, 175, 227, (422,243,0): 145, 175, 227, (422,244,0): 145, 175, 227, (422,245,0): 144, 176, 227, (422,246,0): 144, 175, 229, (422,247,0): 144, 175, 229, (422,248,0): 149, 182, 236, (422,249,0): 149, 182, 236, (422,250,0): 150, 183, 237, (422,251,0): 149, 184, 238, (422,252,0): 150, 185, 241, (422,253,0): 151, 186, 242, (422,254,0): 151, 188, 243, (422,255,0): 153, 188, 246, (422,256,0): 151, 185, 246, (422,257,0): 152, 186, 249, (422,258,0): 156, 187, 251, (422,259,0): 156, 190, 253, (422,260,0): 160, 191, 255, (422,261,0): 160, 194, 255, (422,262,0): 164, 195, 255, (422,263,0): 163, 197, 255, (422,264,0): 166, 197, 255, (422,265,0): 165, 199, 255, (422,266,0): 168, 199, 255, (422,267,0): 167, 201, 255, (422,268,0): 169, 200, 255, (422,269,0): 166, 200, 255, (422,270,0): 167, 198, 255, (422,271,0): 166, 198, 255, (422,272,0): 165, 196, 253, (422,273,0): 168, 197, 253, (422,274,0): 170, 199, 255, (422,275,0): 172, 201, 255, (422,276,0): 175, 201, 255, (422,277,0): 175, 201, 255, (422,278,0): 175, 201, 255, (422,279,0): 175, 201, 255, (422,280,0): 176, 201, 255, (422,281,0): 176, 201, 255, (422,282,0): 178, 200, 255, (422,283,0): 178, 200, 255, (422,284,0): 176, 198, 255, (422,285,0): 174, 196, 254, (422,286,0): 173, 193, 252, (422,287,0): 171, 193, 253, (422,288,0): 169, 194, 255, (422,289,0): 167, 195, 255, (422,290,0): 166, 193, 255, (422,291,0): 166, 194, 255, (422,292,0): 165, 193, 255, (422,293,0): 166, 191, 255, (422,294,0): 166, 191, 255, (422,295,0): 165, 190, 254, (422,296,0): 161, 186, 250, (422,297,0): 156, 182, 243, (422,298,0): 150, 176, 237, (422,299,0): 145, 174, 232, (422,300,0): 147, 173, 234, (422,301,0): 151, 177, 236, (422,302,0): 154, 180, 239, (422,303,0): 156, 182, 243, (422,304,0): 161, 183, 255, (422,305,0): 161, 181, 254, (422,306,0): 160, 180, 251, (422,307,0): 161, 182, 249, (422,308,0): 163, 183, 246, (422,309,0): 163, 181, 243, (422,310,0): 160, 176, 238, (422,311,0): 159, 170, 232, (422,312,0): 164, 169, 233, (422,313,0): 165, 163, 226, (422,314,0): 167, 157, 217, (422,315,0): 165, 151, 202, (422,316,0): 156, 135, 178, (422,317,0): 136, 110, 145, (422,318,0): 117, 87, 115, (422,319,0): 107, 73, 97, (422,320,0): 91, 56, 76, (422,321,0): 83, 49, 66, (422,322,0): 73, 39, 56, (422,323,0): 64, 32, 47, (422,324,0): 60, 28, 41, (422,325,0): 58, 28, 40, (422,326,0): 57, 27, 39, (422,327,0): 54, 27, 36, (422,328,0): 51, 25, 34, (422,329,0): 48, 25, 33, (422,330,0): 48, 25, 33, (422,331,0): 46, 25, 34, (422,332,0): 45, 24, 33, (422,333,0): 43, 23, 32, (422,334,0): 42, 22, 31, (422,335,0): 40, 23, 31, (422,336,0): 36, 20, 30, (422,337,0): 36, 20, 30, (422,338,0): 36, 20, 30, (422,339,0): 35, 19, 29, (422,340,0): 35, 19, 29, (422,341,0): 34, 18, 28, (422,342,0): 34, 18, 28, (422,343,0): 33, 17, 27, (422,344,0): 31, 15, 25, (422,345,0): 31, 15, 25, (422,346,0): 31, 15, 25, (422,347,0): 31, 15, 25, (422,348,0): 31, 15, 25, (422,349,0): 31, 15, 25, (422,350,0): 31, 15, 25, (422,351,0): 32, 15, 25, (422,352,0): 41, 20, 29, (422,353,0): 41, 20, 29, (422,354,0): 41, 20, 29, (422,355,0): 41, 20, 29, (422,356,0): 41, 20, 29, (422,357,0): 40, 20, 29, (422,358,0): 41, 20, 29, (422,359,0): 40, 20, 29, (422,360,0): 40, 20, 29, (422,361,0): 39, 19, 28, (422,362,0): 38, 18, 27, (422,363,0): 36, 16, 25, (422,364,0): 34, 17, 25, (422,365,0): 34, 17, 25, (422,366,0): 35, 18, 26, (422,367,0): 35, 18, 26, (422,368,0): 33, 17, 27, (422,369,0): 33, 17, 28, (422,370,0): 34, 18, 29, (422,371,0): 35, 19, 30, (422,372,0): 35, 19, 30, (422,373,0): 34, 18, 29, (422,374,0): 33, 17, 28, (422,375,0): 33, 17, 28, (422,376,0): 33, 17, 28, (422,377,0): 33, 17, 28, (422,378,0): 34, 18, 29, (422,379,0): 35, 19, 30, (422,380,0): 36, 20, 31, (422,381,0): 37, 21, 32, (422,382,0): 38, 22, 33, (422,383,0): 38, 22, 33, (422,384,0): 39, 23, 34, (422,385,0): 39, 23, 34, (422,386,0): 39, 23, 34, (422,387,0): 38, 22, 33, (422,388,0): 38, 22, 33, (422,389,0): 38, 22, 33, (422,390,0): 37, 21, 32, (422,391,0): 37, 21, 32, (422,392,0): 36, 20, 31, (422,393,0): 34, 18, 29, (422,394,0): 33, 17, 28, (422,395,0): 31, 15, 26, (422,396,0): 30, 14, 25, (422,397,0): 31, 15, 26, (422,398,0): 32, 16, 27, (422,399,0): 33, 17, 28, (422,400,0): 33, 15, 29, (422,401,0): 33, 15, 31, (422,402,0): 32, 14, 30, (422,403,0): 31, 14, 30, (422,404,0): 30, 13, 29, (422,405,0): 30, 13, 29, (422,406,0): 29, 12, 28, (422,407,0): 27, 13, 28, (422,408,0): 26, 12, 27, (422,409,0): 25, 13, 27, (422,410,0): 25, 13, 27, (422,411,0): 25, 13, 27, (422,412,0): 25, 13, 27, (422,413,0): 24, 13, 27, (422,414,0): 24, 13, 27, (422,415,0): 24, 13, 27, (422,416,0): 21, 10, 24, (422,417,0): 22, 11, 25, (422,418,0): 22, 11, 25, (422,419,0): 23, 12, 26, (422,420,0): 24, 13, 27, (422,421,0): 24, 13, 27, (422,422,0): 25, 14, 28, (422,423,0): 25, 14, 28, (422,424,0): 29, 18, 32, (422,425,0): 29, 18, 32, (422,426,0): 28, 17, 31, (422,427,0): 28, 17, 31, (422,428,0): 29, 18, 32, (422,429,0): 31, 20, 34, (422,430,0): 33, 22, 36, (422,431,0): 35, 25, 36, (422,432,0): 34, 22, 32, (422,433,0): 40, 28, 38, (422,434,0): 47, 35, 45, (422,435,0): 52, 40, 50, (422,436,0): 56, 45, 53, (422,437,0): 59, 48, 56, (422,438,0): 64, 53, 61, (422,439,0): 67, 56, 64, (422,440,0): 75, 64, 70, (422,441,0): 79, 68, 74, (422,442,0): 78, 67, 73, (422,443,0): 73, 62, 68, (422,444,0): 73, 62, 68, (422,445,0): 77, 66, 72, (422,446,0): 78, 67, 73, (422,447,0): 74, 63, 69, (422,448,0): 77, 62, 69, (422,449,0): 83, 68, 75, (422,450,0): 90, 75, 82, (422,451,0): 94, 79, 86, (422,452,0): 91, 76, 81, (422,453,0): 87, 72, 77, (422,454,0): 82, 67, 72, (422,455,0): 80, 65, 68, (422,456,0): 77, 62, 65, (422,457,0): 78, 63, 66, (422,458,0): 80, 66, 66, (422,459,0): 82, 68, 68, (422,460,0): 80, 66, 66, (422,461,0): 75, 61, 61, (422,462,0): 67, 53, 52, (422,463,0): 61, 47, 46, (422,464,0): 64, 50, 50, (422,465,0): 66, 52, 52, (422,466,0): 67, 55, 55, (422,467,0): 70, 60, 58, (422,468,0): 75, 68, 62, (422,469,0): 81, 77, 68, (422,470,0): 89, 86, 77, (422,471,0): 95, 93, 81, (422,472,0): 93, 94, 80, (422,473,0): 95, 96, 80, (422,474,0): 99, 100, 84, (422,475,0): 102, 101, 83, (422,476,0): 101, 100, 80, (422,477,0): 98, 96, 75, (422,478,0): 95, 90, 70, (422,479,0): 90, 88, 65, (422,480,0): 87, 87, 63, (422,481,0): 90, 86, 61, (422,482,0): 94, 82, 56, (422,483,0): 98, 77, 50, (422,484,0): 102, 72, 46, (422,485,0): 106, 70, 44, (422,486,0): 113, 73, 48, (422,487,0): 118, 76, 54, (422,488,0): 121, 80, 62, (422,489,0): 125, 83, 67, (422,490,0): 126, 87, 70, (422,491,0): 127, 90, 72, (422,492,0): 132, 100, 79, (422,493,0): 141, 111, 87, (422,494,0): 143, 113, 87, (422,495,0): 136, 111, 81, (422,496,0): 128, 107, 76, (422,497,0): 122, 103, 73, (422,498,0): 117, 96, 67, (422,499,0): 114, 88, 63, (422,500,0): 113, 83, 59, (422,501,0): 111, 74, 55, (422,502,0): 111, 65, 49, (422,503,0): 107, 59, 45, (422,504,0): 98, 50, 38, (422,505,0): 98, 51, 41, (422,506,0): 96, 54, 42, (422,507,0): 95, 52, 43, (422,508,0): 92, 49, 40, (422,509,0): 91, 44, 38, (422,510,0): 89, 38, 34, (422,511,0): 85, 38, 32, (422,512,0): 76, 39, 30, (422,513,0): 71, 33, 24, (422,514,0): 87, 33, 31, (422,515,0): 99, 33, 37, (422,516,0): 98, 25, 34, (422,517,0): 100, 27, 38, (422,518,0): 100, 34, 44, (422,519,0): 90, 30, 38, (422,520,0): 72, 16, 25, (422,521,0): 74, 17, 24, (422,522,0): 82, 19, 28, (422,523,0): 93, 23, 33, (422,524,0): 103, 27, 39, (422,525,0): 106, 29, 39, (422,526,0): 102, 26, 36, (422,527,0): 94, 24, 32, (422,528,0): 89, 30, 36, (422,529,0): 84, 32, 36, (422,530,0): 80, 31, 35, (422,531,0): 75, 30, 33, (422,532,0): 69, 29, 30, (422,533,0): 62, 26, 26, (422,534,0): 60, 21, 24, (422,535,0): 58, 19, 22, (422,536,0): 69, 26, 33, (422,537,0): 74, 27, 35, (422,538,0): 76, 26, 35, (422,539,0): 75, 24, 33, (422,540,0): 72, 20, 32, (422,541,0): 69, 19, 30, (422,542,0): 69, 19, 30, (422,543,0): 71, 21, 30, (422,544,0): 80, 24, 33, (422,545,0): 82, 26, 35, (422,546,0): 83, 30, 38, (422,547,0): 84, 33, 40, (422,548,0): 83, 34, 40, (422,549,0): 79, 34, 39, (422,550,0): 75, 33, 37, (422,551,0): 72, 31, 35, (422,552,0): 72, 33, 36, (422,553,0): 73, 37, 39, (422,554,0): 74, 40, 41, (422,555,0): 73, 39, 40, (422,556,0): 71, 37, 38, (422,557,0): 69, 37, 38, (422,558,0): 73, 39, 40, (422,559,0): 73, 41, 42, (422,560,0): 73, 45, 44, (422,561,0): 73, 44, 46, (422,562,0): 73, 44, 46, (422,563,0): 70, 44, 43, (422,564,0): 69, 44, 40, (422,565,0): 72, 43, 37, (422,566,0): 78, 44, 34, (422,567,0): 86, 42, 29, (422,568,0): 105, 46, 32, (422,569,0): 119, 47, 35, (422,570,0): 133, 51, 40, (422,571,0): 135, 52, 44, (422,572,0): 127, 54, 47, (422,573,0): 114, 55, 47, (422,574,0): 102, 59, 50, (422,575,0): 94, 61, 52, (422,576,0): 89, 59, 57, (422,577,0): 86, 60, 59, (422,578,0): 86, 60, 59, (422,579,0): 83, 62, 59, (422,580,0): 83, 62, 61, (422,581,0): 81, 63, 61, (422,582,0): 82, 64, 62, (422,583,0): 80, 65, 62, (422,584,0): 77, 63, 62, (422,585,0): 79, 65, 64, (422,586,0): 82, 66, 67, (422,587,0): 80, 64, 65, (422,588,0): 79, 60, 62, (422,589,0): 77, 58, 60, (422,590,0): 79, 58, 63, (422,591,0): 80, 61, 65, (422,592,0): 80, 65, 70, (422,593,0): 80, 68, 72, (422,594,0): 82, 70, 74, (422,595,0): 83, 72, 76, (422,596,0): 83, 74, 77, (422,597,0): 80, 74, 76, (422,598,0): 78, 72, 74, (422,599,0): 76, 72, 73, (423,0,0): 72, 84, 70, (423,1,0): 72, 84, 70, (423,2,0): 71, 83, 69, (423,3,0): 70, 82, 68, (423,4,0): 71, 82, 68, (423,5,0): 70, 81, 67, (423,6,0): 69, 80, 66, (423,7,0): 69, 80, 66, (423,8,0): 71, 79, 66, (423,9,0): 71, 79, 66, (423,10,0): 73, 79, 67, (423,11,0): 73, 79, 67, (423,12,0): 74, 80, 68, (423,13,0): 75, 81, 69, (423,14,0): 78, 81, 70, (423,15,0): 78, 81, 70, (423,16,0): 77, 79, 68, (423,17,0): 77, 79, 68, (423,18,0): 75, 77, 66, (423,19,0): 74, 76, 65, (423,20,0): 75, 75, 63, (423,21,0): 75, 75, 63, (423,22,0): 78, 76, 64, (423,23,0): 79, 77, 65, (423,24,0): 78, 76, 63, (423,25,0): 79, 77, 64, (423,26,0): 82, 79, 64, (423,27,0): 85, 82, 67, (423,28,0): 88, 82, 68, (423,29,0): 89, 83, 69, (423,30,0): 89, 83, 67, (423,31,0): 89, 83, 67, (423,32,0): 91, 84, 68, (423,33,0): 91, 84, 66, (423,34,0): 93, 84, 67, (423,35,0): 94, 85, 68, (423,36,0): 94, 85, 68, (423,37,0): 95, 86, 69, (423,38,0): 98, 86, 70, (423,39,0): 98, 86, 70, (423,40,0): 92, 80, 64, (423,41,0): 93, 81, 65, (423,42,0): 96, 83, 67, (423,43,0): 99, 86, 70, (423,44,0): 102, 89, 73, (423,45,0): 104, 91, 75, (423,46,0): 106, 93, 77, (423,47,0): 106, 94, 78, (423,48,0): 108, 100, 81, (423,49,0): 107, 101, 79, (423,50,0): 108, 103, 81, (423,51,0): 108, 103, 81, (423,52,0): 108, 103, 81, (423,53,0): 108, 103, 81, (423,54,0): 104, 102, 79, (423,55,0): 104, 102, 79, (423,56,0): 101, 101, 77, (423,57,0): 101, 101, 77, (423,58,0): 102, 102, 78, (423,59,0): 103, 103, 79, (423,60,0): 100, 102, 78, (423,61,0): 99, 101, 77, (423,62,0): 98, 100, 76, (423,63,0): 97, 99, 77, (423,64,0): 95, 94, 76, (423,65,0): 95, 93, 78, (423,66,0): 96, 94, 79, (423,67,0): 96, 94, 79, (423,68,0): 97, 95, 80, (423,69,0): 97, 95, 80, (423,70,0): 98, 96, 81, (423,71,0): 98, 96, 81, (423,72,0): 99, 97, 82, (423,73,0): 96, 94, 79, (423,74,0): 93, 91, 76, (423,75,0): 89, 87, 72, (423,76,0): 87, 85, 70, (423,77,0): 86, 84, 69, (423,78,0): 86, 84, 69, (423,79,0): 86, 84, 69, (423,80,0): 84, 80, 68, (423,81,0): 81, 77, 65, (423,82,0): 78, 74, 62, (423,83,0): 77, 73, 61, (423,84,0): 80, 74, 62, (423,85,0): 79, 73, 61, (423,86,0): 77, 71, 57, (423,87,0): 74, 68, 54, (423,88,0): 69, 61, 48, (423,89,0): 69, 62, 46, (423,90,0): 69, 60, 45, (423,91,0): 67, 58, 41, (423,92,0): 64, 55, 38, (423,93,0): 60, 51, 34, (423,94,0): 58, 46, 30, (423,95,0): 56, 45, 27, (423,96,0): 58, 45, 28, (423,97,0): 58, 45, 26, (423,98,0): 57, 44, 27, (423,99,0): 57, 44, 27, (423,100,0): 56, 43, 26, (423,101,0): 56, 43, 26, (423,102,0): 55, 42, 26, (423,103,0): 55, 42, 26, (423,104,0): 52, 38, 25, (423,105,0): 52, 38, 25, (423,106,0): 53, 39, 26, (423,107,0): 53, 39, 26, (423,108,0): 54, 40, 29, (423,109,0): 54, 40, 29, (423,110,0): 55, 41, 30, (423,111,0): 57, 40, 30, (423,112,0): 60, 42, 32, (423,113,0): 61, 41, 32, (423,114,0): 61, 41, 32, (423,115,0): 61, 41, 32, (423,116,0): 61, 41, 32, (423,117,0): 61, 41, 32, (423,118,0): 61, 41, 32, (423,119,0): 61, 41, 32, (423,120,0): 58, 38, 29, (423,121,0): 59, 39, 30, (423,122,0): 60, 40, 31, (423,123,0): 61, 41, 32, (423,124,0): 63, 43, 34, (423,125,0): 64, 44, 35, (423,126,0): 65, 45, 36, (423,127,0): 65, 45, 36, (423,128,0): 65, 44, 39, (423,129,0): 65, 44, 39, (423,130,0): 65, 44, 39, (423,131,0): 65, 44, 39, (423,132,0): 65, 44, 39, (423,133,0): 65, 44, 39, (423,134,0): 65, 44, 39, (423,135,0): 65, 44, 39, (423,136,0): 66, 45, 40, (423,137,0): 67, 46, 41, (423,138,0): 68, 47, 42, (423,139,0): 70, 49, 44, (423,140,0): 71, 50, 45, (423,141,0): 73, 52, 47, (423,142,0): 74, 53, 48, (423,143,0): 75, 54, 49, (423,144,0): 77, 53, 51, (423,145,0): 81, 57, 55, (423,146,0): 86, 65, 62, (423,147,0): 93, 72, 69, (423,148,0): 98, 77, 74, (423,149,0): 101, 80, 77, (423,150,0): 100, 81, 77, (423,151,0): 100, 81, 77, (423,152,0): 100, 82, 78, (423,153,0): 100, 82, 78, (423,154,0): 99, 81, 77, (423,155,0): 99, 81, 77, (423,156,0): 96, 81, 76, (423,157,0): 96, 81, 76, (423,158,0): 95, 80, 75, (423,159,0): 95, 80, 75, (423,160,0): 99, 84, 79, (423,161,0): 100, 85, 80, (423,162,0): 103, 85, 81, (423,163,0): 104, 86, 82, (423,164,0): 105, 88, 81, (423,165,0): 105, 88, 81, (423,166,0): 104, 87, 80, (423,167,0): 103, 86, 79, (423,168,0): 105, 86, 79, (423,169,0): 106, 87, 80, (423,170,0): 107, 89, 79, (423,171,0): 109, 91, 81, (423,172,0): 112, 92, 83, (423,173,0): 114, 94, 85, (423,174,0): 115, 95, 84, (423,175,0): 118, 96, 85, (423,176,0): 121, 94, 87, (423,177,0): 123, 94, 88, (423,178,0): 124, 95, 89, (423,179,0): 124, 95, 89, (423,180,0): 122, 95, 88, (423,181,0): 119, 92, 85, (423,182,0): 115, 90, 83, (423,183,0): 113, 88, 81, (423,184,0): 113, 88, 81, (423,185,0): 114, 89, 82, (423,186,0): 114, 91, 83, (423,187,0): 115, 92, 84, (423,188,0): 114, 94, 85, (423,189,0): 113, 93, 84, (423,190,0): 112, 92, 83, (423,191,0): 112, 92, 83, (423,192,0): 113, 90, 82, (423,193,0): 111, 88, 80, (423,194,0): 108, 83, 76, (423,195,0): 106, 79, 72, (423,196,0): 104, 75, 71, (423,197,0): 103, 74, 70, (423,198,0): 105, 74, 71, (423,199,0): 105, 74, 71, (423,200,0): 110, 79, 77, (423,201,0): 105, 74, 72, (423,202,0): 105, 73, 74, (423,203,0): 110, 80, 80, (423,204,0): 113, 85, 84, (423,205,0): 118, 92, 91, (423,206,0): 135, 109, 110, (423,207,0): 149, 127, 129, (423,208,0): 195, 175, 177, (423,209,0): 203, 186, 192, (423,210,0): 212, 197, 204, (423,211,0): 209, 198, 206, (423,212,0): 197, 192, 199, (423,213,0): 186, 186, 194, (423,214,0): 185, 189, 200, (423,215,0): 185, 195, 205, (423,216,0): 175, 191, 206, (423,217,0): 172, 191, 206, (423,218,0): 167, 190, 208, (423,219,0): 162, 189, 208, (423,220,0): 159, 187, 209, (423,221,0): 159, 187, 211, (423,222,0): 159, 186, 213, (423,223,0): 157, 187, 213, (423,224,0): 160, 187, 217, (423,225,0): 158, 187, 219, (423,226,0): 160, 186, 221, (423,227,0): 158, 187, 221, (423,228,0): 158, 186, 223, (423,229,0): 157, 187, 223, (423,230,0): 157, 187, 225, (423,231,0): 157, 187, 225, (423,232,0): 156, 185, 225, (423,233,0): 153, 185, 226, (423,234,0): 152, 183, 227, (423,235,0): 150, 181, 225, (423,236,0): 148, 179, 225, (423,237,0): 146, 177, 223, (423,238,0): 144, 176, 223, (423,239,0): 143, 175, 222, (423,240,0): 143, 173, 223, (423,241,0): 143, 173, 223, (423,242,0): 143, 173, 225, (423,243,0): 143, 173, 225, (423,244,0): 142, 174, 225, (423,245,0): 142, 174, 225, (423,246,0): 142, 173, 227, (423,247,0): 141, 174, 227, (423,248,0): 149, 182, 236, (423,249,0): 147, 182, 236, (423,250,0): 148, 183, 237, (423,251,0): 149, 184, 238, (423,252,0): 150, 185, 241, (423,253,0): 151, 186, 242, (423,254,0): 151, 188, 243, (423,255,0): 151, 187, 245, (423,256,0): 150, 186, 246, (423,257,0): 150, 186, 248, (423,258,0): 152, 188, 250, (423,259,0): 155, 191, 253, (423,260,0): 157, 193, 255, (423,261,0): 159, 195, 255, (423,262,0): 161, 197, 255, (423,263,0): 162, 198, 255, (423,264,0): 165, 201, 255, (423,265,0): 165, 201, 255, (423,266,0): 166, 202, 255, (423,267,0): 167, 203, 255, (423,268,0): 167, 203, 255, (423,269,0): 166, 202, 255, (423,270,0): 165, 201, 255, (423,271,0): 166, 200, 255, (423,272,0): 164, 196, 253, (423,273,0): 166, 197, 252, (423,274,0): 168, 199, 254, (423,275,0): 170, 199, 255, (423,276,0): 171, 200, 255, (423,277,0): 171, 200, 255, (423,278,0): 171, 200, 255, (423,279,0): 172, 198, 255, (423,280,0): 172, 198, 255, (423,281,0): 174, 199, 255, (423,282,0): 174, 199, 255, (423,283,0): 173, 198, 255, (423,284,0): 172, 197, 254, (423,285,0): 172, 194, 252, (423,286,0): 170, 192, 250, (423,287,0): 166, 190, 252, (423,288,0): 167, 195, 255, (423,289,0): 165, 194, 255, (423,290,0): 165, 192, 255, (423,291,0): 163, 192, 255, (423,292,0): 162, 191, 255, (423,293,0): 162, 191, 255, (423,294,0): 162, 191, 255, (423,295,0): 162, 192, 255, (423,296,0): 162, 192, 255, (423,297,0): 156, 186, 248, (423,298,0): 148, 180, 241, (423,299,0): 147, 179, 238, (423,300,0): 151, 183, 244, (423,301,0): 156, 188, 247, (423,302,0): 158, 190, 249, (423,303,0): 157, 188, 252, (423,304,0): 161, 189, 255, (423,305,0): 160, 186, 255, (423,306,0): 157, 183, 255, (423,307,0): 159, 183, 253, (423,308,0): 162, 185, 253, (423,309,0): 163, 184, 251, (423,310,0): 162, 177, 246, (423,311,0): 161, 172, 238, (423,312,0): 166, 169, 236, (423,313,0): 164, 159, 223, (423,314,0): 163, 152, 210, (423,315,0): 160, 142, 192, (423,316,0): 144, 119, 159, (423,317,0): 118, 89, 119, (423,318,0): 101, 69, 90, (423,319,0): 97, 64, 81, (423,320,0): 85, 51, 68, (423,321,0): 77, 45, 60, (423,322,0): 68, 36, 51, (423,323,0): 60, 29, 44, (423,324,0): 57, 27, 39, (423,325,0): 53, 25, 37, (423,326,0): 53, 25, 37, (423,327,0): 51, 25, 36, (423,328,0): 46, 23, 33, (423,329,0): 45, 24, 33, (423,330,0): 44, 22, 34, (423,331,0): 42, 22, 31, (423,332,0): 41, 21, 30, (423,333,0): 39, 22, 30, (423,334,0): 38, 21, 29, (423,335,0): 38, 21, 29, (423,336,0): 36, 20, 30, (423,337,0): 36, 20, 30, (423,338,0): 35, 19, 29, (423,339,0): 35, 19, 29, (423,340,0): 34, 18, 28, (423,341,0): 34, 18, 28, (423,342,0): 33, 17, 27, (423,343,0): 33, 17, 27, (423,344,0): 30, 14, 24, (423,345,0): 30, 14, 24, (423,346,0): 30, 14, 24, (423,347,0): 30, 14, 24, (423,348,0): 30, 14, 24, (423,349,0): 30, 14, 24, (423,350,0): 30, 14, 24, (423,351,0): 31, 14, 24, (423,352,0): 40, 20, 29, (423,353,0): 40, 20, 29, (423,354,0): 40, 20, 29, (423,355,0): 38, 21, 29, (423,356,0): 40, 20, 29, (423,357,0): 38, 21, 29, (423,358,0): 40, 20, 29, (423,359,0): 40, 20, 29, (423,360,0): 40, 20, 29, (423,361,0): 39, 19, 28, (423,362,0): 38, 18, 27, (423,363,0): 36, 16, 25, (423,364,0): 34, 17, 25, (423,365,0): 34, 17, 25, (423,366,0): 35, 18, 26, (423,367,0): 35, 18, 28, (423,368,0): 33, 17, 28, (423,369,0): 34, 18, 29, (423,370,0): 35, 19, 30, (423,371,0): 36, 20, 31, (423,372,0): 36, 20, 31, (423,373,0): 35, 19, 30, (423,374,0): 34, 18, 29, (423,375,0): 33, 17, 28, (423,376,0): 33, 17, 28, (423,377,0): 34, 18, 29, (423,378,0): 34, 18, 29, (423,379,0): 35, 19, 30, (423,380,0): 36, 20, 31, (423,381,0): 37, 21, 32, (423,382,0): 38, 22, 33, (423,383,0): 39, 23, 34, (423,384,0): 40, 24, 35, (423,385,0): 39, 23, 34, (423,386,0): 39, 23, 34, (423,387,0): 38, 22, 33, (423,388,0): 37, 21, 32, (423,389,0): 37, 21, 32, (423,390,0): 36, 20, 31, (423,391,0): 36, 20, 31, (423,392,0): 35, 19, 30, (423,393,0): 34, 18, 29, (423,394,0): 32, 16, 27, (423,395,0): 30, 14, 25, (423,396,0): 30, 14, 25, (423,397,0): 30, 14, 25, (423,398,0): 32, 16, 27, (423,399,0): 32, 16, 29, (423,400,0): 32, 15, 31, (423,401,0): 31, 14, 30, (423,402,0): 31, 14, 30, (423,403,0): 30, 13, 29, (423,404,0): 30, 13, 29, (423,405,0): 27, 13, 28, (423,406,0): 27, 13, 28, (423,407,0): 26, 14, 28, (423,408,0): 24, 12, 26, (423,409,0): 24, 12, 26, (423,410,0): 24, 12, 26, (423,411,0): 23, 12, 26, (423,412,0): 23, 12, 26, (423,413,0): 23, 12, 26, (423,414,0): 23, 12, 26, (423,415,0): 23, 12, 26, (423,416,0): 21, 10, 24, (423,417,0): 21, 10, 24, (423,418,0): 22, 11, 25, (423,419,0): 23, 12, 26, (423,420,0): 24, 13, 27, (423,421,0): 24, 13, 27, (423,422,0): 25, 14, 28, (423,423,0): 25, 14, 28, (423,424,0): 30, 19, 33, (423,425,0): 29, 18, 32, (423,426,0): 28, 17, 31, (423,427,0): 28, 17, 31, (423,428,0): 29, 18, 32, (423,429,0): 31, 20, 34, (423,430,0): 34, 23, 37, (423,431,0): 35, 24, 38, (423,432,0): 34, 22, 34, (423,433,0): 40, 28, 38, (423,434,0): 48, 36, 46, (423,435,0): 54, 42, 52, (423,436,0): 57, 45, 55, (423,437,0): 61, 50, 58, (423,438,0): 65, 54, 62, (423,439,0): 69, 58, 66, (423,440,0): 74, 63, 69, (423,441,0): 79, 68, 74, (423,442,0): 81, 70, 76, (423,443,0): 77, 66, 72, (423,444,0): 77, 66, 72, (423,445,0): 80, 69, 73, (423,446,0): 78, 67, 71, (423,447,0): 73, 62, 66, (423,448,0): 79, 64, 71, (423,449,0): 84, 69, 76, (423,450,0): 91, 76, 83, (423,451,0): 95, 80, 87, (423,452,0): 93, 78, 83, (423,453,0): 89, 74, 79, (423,454,0): 85, 70, 75, (423,455,0): 83, 68, 71, (423,456,0): 79, 64, 67, (423,457,0): 78, 64, 64, (423,458,0): 77, 63, 63, (423,459,0): 80, 66, 66, (423,460,0): 81, 67, 67, (423,461,0): 77, 63, 63, (423,462,0): 68, 54, 53, (423,463,0): 61, 47, 46, (423,464,0): 60, 44, 47, (423,465,0): 64, 48, 51, (423,466,0): 67, 53, 53, (423,467,0): 68, 57, 55, (423,468,0): 70, 60, 58, (423,469,0): 75, 68, 62, (423,470,0): 84, 80, 71, (423,471,0): 91, 89, 77, (423,472,0): 88, 89, 75, (423,473,0): 93, 94, 78, (423,474,0): 99, 100, 82, (423,475,0): 104, 106, 85, (423,476,0): 107, 106, 86, (423,477,0): 105, 104, 83, (423,478,0): 104, 102, 79, (423,479,0): 102, 100, 75, (423,480,0): 94, 93, 63, (423,481,0): 99, 96, 65, (423,482,0): 106, 95, 65, (423,483,0): 108, 91, 61, (423,484,0): 109, 86, 55, (423,485,0): 110, 80, 52, (423,486,0): 112, 80, 55, (423,487,0): 116, 81, 59, (423,488,0): 111, 76, 57, (423,489,0): 117, 82, 63, (423,490,0): 123, 84, 67, (423,491,0): 130, 87, 70, (423,492,0): 142, 95, 75, (423,493,0): 156, 104, 82, (423,494,0): 161, 105, 80, (423,495,0): 154, 103, 76, (423,496,0): 140, 105, 77, (423,497,0): 128, 103, 73, (423,498,0): 120, 96, 68, (423,499,0): 115, 91, 63, (423,500,0): 112, 84, 60, (423,501,0): 112, 77, 55, (423,502,0): 110, 67, 50, (423,503,0): 108, 61, 45, (423,504,0): 106, 54, 41, (423,505,0): 106, 56, 45, (423,506,0): 105, 58, 48, (423,507,0): 101, 59, 47, (423,508,0): 95, 55, 45, (423,509,0): 90, 50, 40, (423,510,0): 86, 43, 36, (423,511,0): 81, 41, 31, (423,512,0): 83, 47, 35, (423,513,0): 81, 38, 29, (423,514,0): 99, 39, 38, (423,515,0): 109, 37, 41, (423,516,0): 105, 24, 33, (423,517,0): 104, 22, 34, (423,518,0): 99, 26, 37, (423,519,0): 84, 18, 28, (423,520,0): 84, 24, 32, (423,521,0): 81, 24, 31, (423,522,0): 84, 23, 30, (423,523,0): 92, 25, 34, (423,524,0): 104, 28, 38, (423,525,0): 112, 30, 42, (423,526,0): 113, 30, 40, (423,527,0): 107, 30, 38, (423,528,0): 89, 26, 34, (423,529,0): 84, 32, 36, (423,530,0): 85, 36, 40, (423,531,0): 84, 39, 42, (423,532,0): 79, 39, 40, (423,533,0): 73, 34, 35, (423,534,0): 66, 27, 30, (423,535,0): 63, 22, 26, (423,536,0): 69, 24, 31, (423,537,0): 74, 24, 33, (423,538,0): 78, 25, 35, (423,539,0): 79, 23, 34, (423,540,0): 76, 20, 33, (423,541,0): 76, 18, 32, (423,542,0): 76, 20, 33, (423,543,0): 79, 23, 36, (423,544,0): 74, 16, 28, (423,545,0): 78, 21, 30, (423,546,0): 83, 27, 36, (423,547,0): 85, 34, 41, (423,548,0): 87, 38, 44, (423,549,0): 84, 39, 44, (423,550,0): 80, 38, 42, (423,551,0): 76, 37, 40, (423,552,0): 78, 39, 42, (423,553,0): 78, 42, 44, (423,554,0): 79, 45, 46, (423,555,0): 77, 43, 44, (423,556,0): 74, 40, 41, (423,557,0): 72, 38, 39, (423,558,0): 74, 40, 41, (423,559,0): 74, 42, 43, (423,560,0): 67, 41, 40, (423,561,0): 69, 45, 41, (423,562,0): 71, 47, 43, (423,563,0): 72, 47, 42, (423,564,0): 74, 45, 37, (423,565,0): 80, 44, 32, (423,566,0): 93, 44, 29, (423,567,0): 108, 42, 26, (423,568,0): 140, 54, 39, (423,569,0): 154, 53, 41, (423,570,0): 164, 53, 44, (423,571,0): 158, 53, 47, (423,572,0): 140, 51, 45, (423,573,0): 118, 51, 43, (423,574,0): 95, 52, 43, (423,575,0): 84, 54, 46, (423,576,0): 86, 56, 54, (423,577,0): 83, 57, 56, (423,578,0): 83, 57, 56, (423,579,0): 80, 59, 56, (423,580,0): 80, 59, 58, (423,581,0): 79, 61, 59, (423,582,0): 80, 62, 60, (423,583,0): 79, 64, 61, (423,584,0): 76, 62, 61, (423,585,0): 78, 64, 63, (423,586,0): 81, 65, 66, (423,587,0): 79, 63, 64, (423,588,0): 76, 57, 59, (423,589,0): 74, 55, 57, (423,590,0): 75, 54, 59, (423,591,0): 76, 57, 61, (423,592,0): 77, 62, 67, (423,593,0): 77, 65, 69, (423,594,0): 78, 67, 71, (423,595,0): 79, 70, 73, (423,596,0): 80, 71, 74, (423,597,0): 77, 71, 73, (423,598,0): 74, 70, 71, (423,599,0): 73, 69, 70, (424,0,0): 69, 81, 67, (424,1,0): 69, 81, 67, (424,2,0): 69, 81, 67, (424,3,0): 70, 82, 68, (424,4,0): 71, 82, 68, (424,5,0): 72, 83, 69, (424,6,0): 72, 83, 69, (424,7,0): 72, 83, 69, (424,8,0): 75, 83, 70, (424,9,0): 75, 83, 70, (424,10,0): 76, 82, 70, (424,11,0): 76, 82, 70, (424,12,0): 76, 82, 70, (424,13,0): 76, 82, 70, (424,14,0): 78, 81, 70, (424,15,0): 78, 81, 70, (424,16,0): 79, 82, 73, (424,17,0): 79, 82, 73, (424,18,0): 79, 81, 70, (424,19,0): 79, 81, 70, (424,20,0): 78, 80, 69, (424,21,0): 78, 80, 69, (424,22,0): 78, 78, 66, (424,23,0): 78, 78, 66, (424,24,0): 83, 81, 68, (424,25,0): 83, 81, 68, (424,26,0): 84, 82, 69, (424,27,0): 84, 82, 69, (424,28,0): 86, 83, 68, (424,29,0): 86, 83, 68, (424,30,0): 87, 84, 69, (424,31,0): 89, 83, 67, (424,32,0): 89, 83, 67, (424,33,0): 89, 83, 67, (424,34,0): 90, 83, 67, (424,35,0): 91, 84, 68, (424,36,0): 92, 85, 69, (424,37,0): 92, 85, 69, (424,38,0): 93, 84, 69, (424,39,0): 94, 85, 70, (424,40,0): 91, 79, 65, (424,41,0): 91, 79, 65, (424,42,0): 93, 79, 66, (424,43,0): 94, 80, 67, (424,44,0): 97, 83, 70, (424,45,0): 100, 86, 73, (424,46,0): 105, 89, 76, (424,47,0): 105, 92, 76, (424,48,0): 105, 97, 78, (424,49,0): 105, 98, 79, (424,50,0): 105, 100, 80, (424,51,0): 105, 100, 80, (424,52,0): 105, 100, 80, (424,53,0): 104, 99, 79, (424,54,0): 101, 99, 78, (424,55,0): 100, 98, 77, (424,56,0): 102, 101, 80, (424,57,0): 102, 101, 80, (424,58,0): 101, 100, 79, (424,59,0): 101, 100, 79, (424,60,0): 98, 100, 78, (424,61,0): 98, 100, 78, (424,62,0): 98, 100, 78, (424,63,0): 97, 99, 78, (424,64,0): 99, 98, 80, (424,65,0): 98, 96, 81, (424,66,0): 98, 96, 81, (424,67,0): 97, 95, 80, (424,68,0): 96, 94, 79, (424,69,0): 95, 93, 78, (424,70,0): 95, 93, 78, (424,71,0): 94, 92, 77, (424,72,0): 95, 93, 78, (424,73,0): 95, 93, 78, (424,74,0): 95, 93, 78, (424,75,0): 94, 92, 77, (424,76,0): 92, 90, 75, (424,77,0): 90, 88, 73, (424,78,0): 88, 86, 71, (424,79,0): 87, 85, 70, (424,80,0): 81, 77, 65, (424,81,0): 79, 75, 64, (424,82,0): 76, 72, 61, (424,83,0): 76, 72, 61, (424,84,0): 79, 73, 61, (424,85,0): 79, 73, 61, (424,86,0): 77, 71, 59, (424,87,0): 74, 68, 54, (424,88,0): 74, 66, 53, (424,89,0): 73, 66, 50, (424,90,0): 71, 62, 47, (424,91,0): 68, 59, 44, (424,92,0): 64, 55, 40, (424,93,0): 61, 52, 37, (424,94,0): 60, 48, 32, (424,95,0): 59, 48, 30, (424,96,0): 60, 47, 30, (424,97,0): 59, 46, 27, (424,98,0): 57, 44, 27, (424,99,0): 56, 43, 26, (424,100,0): 55, 42, 25, (424,101,0): 56, 43, 26, (424,102,0): 56, 43, 27, (424,103,0): 57, 44, 28, (424,104,0): 55, 41, 28, (424,105,0): 55, 41, 28, (424,106,0): 55, 41, 28, (424,107,0): 54, 40, 27, (424,108,0): 54, 40, 29, (424,109,0): 53, 39, 28, (424,110,0): 53, 39, 28, (424,111,0): 55, 38, 28, (424,112,0): 57, 39, 29, (424,113,0): 58, 38, 29, (424,114,0): 58, 38, 29, (424,115,0): 59, 39, 30, (424,116,0): 59, 39, 30, (424,117,0): 60, 40, 31, (424,118,0): 60, 40, 31, (424,119,0): 61, 41, 32, (424,120,0): 60, 40, 31, (424,121,0): 60, 40, 31, (424,122,0): 61, 41, 32, (424,123,0): 62, 42, 33, (424,124,0): 63, 43, 34, (424,125,0): 64, 44, 35, (424,126,0): 65, 45, 36, (424,127,0): 65, 45, 36, (424,128,0): 67, 46, 41, (424,129,0): 66, 45, 40, (424,130,0): 65, 44, 39, (424,131,0): 64, 43, 38, (424,132,0): 64, 43, 38, (424,133,0): 65, 44, 39, (424,134,0): 67, 46, 41, (424,135,0): 68, 47, 42, (424,136,0): 68, 47, 42, (424,137,0): 69, 48, 43, (424,138,0): 70, 49, 44, (424,139,0): 72, 51, 46, (424,140,0): 74, 53, 48, (424,141,0): 76, 55, 50, (424,142,0): 77, 56, 51, (424,143,0): 78, 57, 52, (424,144,0): 87, 63, 61, (424,145,0): 90, 66, 66, (424,146,0): 92, 71, 70, (424,147,0): 95, 74, 73, (424,148,0): 96, 75, 74, (424,149,0): 98, 77, 76, (424,150,0): 101, 81, 80, (424,151,0): 104, 84, 83, (424,152,0): 100, 82, 80, (424,153,0): 100, 82, 80, (424,154,0): 101, 83, 81, (424,155,0): 102, 84, 82, (424,156,0): 101, 86, 83, (424,157,0): 102, 87, 84, (424,158,0): 103, 88, 85, (424,159,0): 103, 88, 85, (424,160,0): 99, 85, 82, (424,161,0): 100, 86, 83, (424,162,0): 103, 88, 83, (424,163,0): 104, 89, 84, (424,164,0): 106, 91, 86, (424,165,0): 106, 91, 86, (424,166,0): 108, 91, 84, (424,167,0): 107, 90, 83, (424,168,0): 110, 91, 84, (424,169,0): 111, 92, 85, (424,170,0): 113, 93, 86, (424,171,0): 114, 94, 87, (424,172,0): 118, 95, 87, (424,173,0): 119, 96, 88, (424,174,0): 121, 98, 90, (424,175,0): 122, 97, 90, (424,176,0): 123, 96, 89, (424,177,0): 124, 95, 89, (424,178,0): 126, 97, 91, (424,179,0): 127, 98, 92, (424,180,0): 126, 99, 92, (424,181,0): 126, 99, 92, (424,182,0): 123, 98, 91, (424,183,0): 122, 97, 90, (424,184,0): 117, 92, 85, (424,185,0): 115, 90, 83, (424,186,0): 112, 89, 81, (424,187,0): 113, 90, 82, (424,188,0): 113, 93, 84, (424,189,0): 114, 94, 85, (424,190,0): 112, 92, 83, (424,191,0): 110, 90, 81, (424,192,0): 109, 87, 76, (424,193,0): 109, 85, 75, (424,194,0): 109, 82, 75, (424,195,0): 108, 81, 74, (424,196,0): 107, 78, 72, (424,197,0): 106, 75, 70, (424,198,0): 106, 72, 70, (424,199,0): 106, 72, 70, (424,200,0): 106, 72, 71, (424,201,0): 105, 74, 72, (424,202,0): 106, 75, 73, (424,203,0): 107, 77, 75, (424,204,0): 111, 83, 82, (424,205,0): 117, 91, 90, (424,206,0): 129, 103, 102, (424,207,0): 136, 112, 112, (424,208,0): 168, 143, 146, (424,209,0): 193, 171, 174, (424,210,0): 218, 197, 202, (424,211,0): 217, 202, 207, (424,212,0): 203, 194, 199, (424,213,0): 193, 190, 197, (424,214,0): 192, 192, 202, (424,215,0): 190, 197, 207, (424,216,0): 179, 191, 205, (424,217,0): 175, 193, 207, (424,218,0): 171, 192, 209, (424,219,0): 169, 191, 212, (424,220,0): 166, 190, 214, (424,221,0): 164, 190, 213, (424,222,0): 163, 189, 214, (424,223,0): 162, 189, 216, (424,224,0): 165, 190, 221, (424,225,0): 164, 191, 221, (424,226,0): 163, 187, 221, (424,227,0): 161, 187, 220, (424,228,0): 159, 185, 220, (424,229,0): 156, 185, 219, (424,230,0): 154, 182, 219, (424,231,0): 153, 183, 221, (424,232,0): 152, 181, 221, (424,233,0): 152, 181, 221, (424,234,0): 149, 181, 222, (424,235,0): 148, 180, 221, (424,236,0): 146, 179, 222, (424,237,0): 145, 178, 221, (424,238,0): 144, 177, 222, (424,239,0): 144, 176, 223, (424,240,0): 143, 175, 224, (424,241,0): 143, 175, 226, (424,242,0): 143, 175, 226, (424,243,0): 143, 175, 226, (424,244,0): 144, 175, 229, (424,245,0): 144, 175, 229, (424,246,0): 143, 176, 229, (424,247,0): 143, 176, 229, (424,248,0): 146, 179, 233, (424,249,0): 144, 179, 233, (424,250,0): 144, 179, 235, (424,251,0): 144, 181, 236, (424,252,0): 144, 181, 236, (424,253,0): 145, 182, 237, (424,254,0): 145, 181, 239, (424,255,0): 143, 182, 239, (424,256,0): 145, 184, 243, (424,257,0): 145, 185, 246, (424,258,0): 146, 186, 247, (424,259,0): 148, 188, 249, (424,260,0): 151, 191, 252, (424,261,0): 153, 193, 254, (424,262,0): 154, 194, 255, (424,263,0): 155, 195, 255, (424,264,0): 155, 195, 255, (424,265,0): 156, 196, 255, (424,266,0): 156, 196, 255, (424,267,0): 157, 197, 255, (424,268,0): 157, 197, 255, (424,269,0): 158, 198, 255, (424,270,0): 158, 198, 255, (424,271,0): 159, 198, 255, (424,272,0): 165, 200, 255, (424,273,0): 166, 198, 255, (424,274,0): 166, 198, 255, (424,275,0): 166, 197, 254, (424,276,0): 165, 196, 253, (424,277,0): 164, 195, 252, (424,278,0): 164, 195, 252, (424,279,0): 165, 194, 252, (424,280,0): 167, 196, 254, (424,281,0): 169, 195, 254, (424,282,0): 169, 195, 254, (424,283,0): 170, 196, 255, (424,284,0): 170, 196, 255, (424,285,0): 171, 195, 255, (424,286,0): 171, 195, 255, (424,287,0): 170, 196, 255, (424,288,0): 165, 194, 255, (424,289,0): 163, 194, 255, (424,290,0): 163, 192, 255, (424,291,0): 161, 192, 255, (424,292,0): 159, 190, 255, (424,293,0): 157, 188, 255, (424,294,0): 154, 187, 254, (424,295,0): 154, 188, 252, (424,296,0): 155, 189, 253, (424,297,0): 155, 189, 252, (424,298,0): 154, 190, 252, (424,299,0): 154, 190, 250, (424,300,0): 152, 190, 252, (424,301,0): 152, 191, 250, (424,302,0): 152, 191, 250, (424,303,0): 154, 189, 253, (424,304,0): 151, 185, 255, (424,305,0): 156, 188, 255, (424,306,0): 158, 188, 255, (424,307,0): 156, 184, 255, (424,308,0): 160, 184, 255, (424,309,0): 166, 186, 255, (424,310,0): 167, 181, 254, (424,311,0): 163, 171, 243, (424,312,0): 169, 169, 239, (424,313,0): 174, 168, 232, (424,314,0): 159, 144, 201, (424,315,0): 127, 105, 152, (424,316,0): 106, 80, 115, (424,317,0): 103, 74, 96, (424,318,0): 96, 64, 77, (424,319,0): 82, 49, 58, (424,320,0): 70, 38, 51, (424,321,0): 64, 34, 46, (424,322,0): 58, 28, 40, (424,323,0): 54, 24, 36, (424,324,0): 53, 22, 37, (424,325,0): 51, 23, 37, (424,326,0): 48, 22, 35, (424,327,0): 44, 20, 33, (424,328,0): 46, 22, 35, (424,329,0): 45, 23, 35, (424,330,0): 43, 23, 35, (424,331,0): 40, 23, 33, (424,332,0): 39, 22, 32, (424,333,0): 37, 21, 31, (424,334,0): 36, 20, 30, (424,335,0): 36, 20, 30, (424,336,0): 33, 17, 27, (424,337,0): 33, 17, 27, (424,338,0): 33, 17, 27, (424,339,0): 33, 17, 27, (424,340,0): 33, 17, 27, (424,341,0): 33, 17, 27, (424,342,0): 33, 17, 27, (424,343,0): 33, 17, 27, (424,344,0): 31, 15, 25, (424,345,0): 31, 15, 25, (424,346,0): 31, 15, 25, (424,347,0): 30, 14, 24, (424,348,0): 30, 14, 24, (424,349,0): 29, 13, 23, (424,350,0): 29, 13, 23, (424,351,0): 29, 13, 23, (424,352,0): 32, 15, 25, (424,353,0): 33, 16, 26, (424,354,0): 33, 16, 26, (424,355,0): 33, 17, 27, (424,356,0): 34, 17, 27, (424,357,0): 34, 18, 28, (424,358,0): 35, 18, 28, (424,359,0): 35, 18, 28, (424,360,0): 35, 18, 28, (424,361,0): 35, 18, 28, (424,362,0): 35, 18, 28, (424,363,0): 35, 18, 28, (424,364,0): 35, 18, 28, (424,365,0): 35, 18, 28, (424,366,0): 35, 18, 28, (424,367,0): 35, 18, 28, (424,368,0): 34, 18, 29, (424,369,0): 32, 18, 31, (424,370,0): 32, 18, 31, (424,371,0): 31, 17, 30, (424,372,0): 31, 17, 30, (424,373,0): 30, 16, 29, (424,374,0): 30, 16, 29, (424,375,0): 29, 15, 28, (424,376,0): 31, 17, 30, (424,377,0): 31, 17, 30, (424,378,0): 31, 17, 30, (424,379,0): 32, 18, 31, (424,380,0): 33, 19, 32, (424,381,0): 33, 19, 32, (424,382,0): 33, 19, 32, (424,383,0): 34, 20, 33, (424,384,0): 34, 20, 33, (424,385,0): 33, 19, 32, (424,386,0): 33, 19, 32, (424,387,0): 33, 19, 32, (424,388,0): 32, 18, 31, (424,389,0): 31, 17, 30, (424,390,0): 31, 17, 30, (424,391,0): 31, 17, 30, (424,392,0): 31, 17, 30, (424,393,0): 30, 16, 29, (424,394,0): 30, 16, 29, (424,395,0): 30, 16, 29, (424,396,0): 29, 15, 28, (424,397,0): 28, 14, 27, (424,398,0): 28, 14, 27, (424,399,0): 28, 14, 27, (424,400,0): 28, 14, 29, (424,401,0): 27, 13, 28, (424,402,0): 27, 13, 28, (424,403,0): 27, 13, 28, (424,404,0): 26, 12, 27, (424,405,0): 24, 12, 26, (424,406,0): 24, 12, 26, (424,407,0): 24, 12, 26, (424,408,0): 26, 14, 28, (424,409,0): 25, 14, 28, (424,410,0): 24, 13, 27, (424,411,0): 21, 13, 26, (424,412,0): 20, 12, 25, (424,413,0): 20, 12, 25, (424,414,0): 19, 11, 24, (424,415,0): 19, 11, 24, (424,416,0): 23, 15, 28, (424,417,0): 22, 14, 27, (424,418,0): 21, 13, 26, (424,419,0): 20, 12, 25, (424,420,0): 21, 13, 26, (424,421,0): 23, 15, 28, (424,422,0): 25, 17, 30, (424,423,0): 26, 18, 31, (424,424,0): 30, 22, 35, (424,425,0): 30, 22, 35, (424,426,0): 29, 21, 34, (424,427,0): 28, 20, 33, (424,428,0): 29, 21, 34, (424,429,0): 30, 22, 35, (424,430,0): 32, 24, 37, (424,431,0): 35, 24, 38, (424,432,0): 34, 22, 34, (424,433,0): 39, 27, 39, (424,434,0): 46, 34, 46, (424,435,0): 51, 39, 49, (424,436,0): 56, 44, 54, (424,437,0): 62, 50, 60, (424,438,0): 69, 58, 66, (424,439,0): 74, 63, 71, (424,440,0): 76, 65, 71, (424,441,0): 76, 65, 71, (424,442,0): 77, 66, 70, (424,443,0): 80, 69, 73, (424,444,0): 83, 72, 76, (424,445,0): 81, 71, 72, (424,446,0): 77, 67, 68, (424,447,0): 72, 62, 63, (424,448,0): 76, 61, 66, (424,449,0): 83, 68, 73, (424,450,0): 92, 77, 82, (424,451,0): 100, 85, 90, (424,452,0): 102, 87, 92, (424,453,0): 99, 84, 89, (424,454,0): 94, 79, 82, (424,455,0): 91, 76, 79, (424,456,0): 87, 72, 75, (424,457,0): 85, 71, 71, (424,458,0): 82, 68, 68, (424,459,0): 80, 66, 65, (424,460,0): 79, 65, 64, (424,461,0): 76, 62, 61, (424,462,0): 71, 57, 56, (424,463,0): 67, 53, 52, (424,464,0): 64, 48, 51, (424,465,0): 64, 48, 51, (424,466,0): 66, 52, 52, (424,467,0): 69, 58, 56, (424,468,0): 68, 58, 56, (424,469,0): 68, 61, 55, (424,470,0): 78, 74, 65, (424,471,0): 91, 89, 77, (424,472,0): 86, 87, 73, (424,473,0): 89, 92, 75, (424,474,0): 97, 100, 81, (424,475,0): 107, 110, 89, (424,476,0): 114, 116, 95, (424,477,0): 113, 115, 93, (424,478,0): 107, 107, 83, (424,479,0): 101, 100, 72, (424,480,0): 101, 98, 65, (424,481,0): 98, 94, 57, (424,482,0): 101, 91, 55, (424,483,0): 107, 93, 58, (424,484,0): 116, 95, 64, (424,485,0): 118, 94, 66, (424,486,0): 111, 87, 61, (424,487,0): 104, 80, 56, (424,488,0): 100, 75, 55, (424,489,0): 112, 83, 65, (424,490,0): 126, 89, 71, (424,491,0): 137, 88, 71, (424,492,0): 158, 93, 73, (424,493,0): 182, 104, 82, (424,494,0): 202, 110, 89, (424,495,0): 198, 114, 90, (424,496,0): 156, 100, 77, (424,497,0): 142, 102, 77, (424,498,0): 131, 100, 72, (424,499,0): 123, 96, 67, (424,500,0): 118, 91, 64, (424,501,0): 115, 83, 60, (424,502,0): 115, 72, 55, (424,503,0): 114, 65, 50, (424,504,0): 124, 66, 55, (424,505,0): 124, 65, 57, (424,506,0): 118, 63, 56, (424,507,0): 106, 58, 48, (424,508,0): 93, 50, 41, (424,509,0): 85, 47, 36, (424,510,0): 83, 49, 37, (424,511,0): 87, 51, 39, (424,512,0): 91, 49, 37, (424,513,0): 97, 44, 36, (424,514,0): 107, 37, 37, (424,515,0): 112, 30, 36, (424,516,0): 113, 21, 32, (424,517,0): 111, 19, 32, (424,518,0): 108, 21, 37, (424,519,0): 104, 28, 40, (424,520,0): 88, 22, 32, (424,521,0): 77, 16, 24, (424,522,0): 86, 25, 32, (424,523,0): 102, 35, 44, (424,524,0): 113, 37, 47, (424,525,0): 129, 43, 56, (424,526,0): 137, 45, 58, (424,527,0): 122, 36, 47, (424,528,0): 94, 29, 37, (424,529,0): 93, 41, 45, (424,530,0): 92, 43, 47, (424,531,0): 81, 36, 39, (424,532,0): 73, 33, 34, (424,533,0): 75, 35, 36, (424,534,0): 76, 35, 39, (424,535,0): 75, 30, 35, (424,536,0): 85, 35, 44, (424,537,0): 88, 32, 43, (424,538,0): 93, 33, 45, (424,539,0): 93, 31, 44, (424,540,0): 85, 21, 37, (424,541,0): 74, 10, 26, (424,542,0): 76, 12, 28, (424,543,0): 86, 22, 38, (424,544,0): 94, 32, 45, (424,545,0): 78, 18, 30, (424,546,0): 79, 23, 34, (424,547,0): 86, 33, 43, (424,548,0): 80, 29, 38, (424,549,0): 76, 29, 37, (424,550,0): 77, 34, 41, (424,551,0): 72, 33, 38, (424,552,0): 70, 31, 36, (424,553,0): 74, 38, 42, (424,554,0): 82, 47, 51, (424,555,0): 84, 49, 53, (424,556,0): 76, 40, 44, (424,557,0): 66, 30, 34, (424,558,0): 69, 33, 37, (424,559,0): 78, 44, 45, (424,560,0): 70, 45, 41, (424,561,0): 62, 39, 33, (424,562,0): 66, 41, 34, (424,563,0): 80, 52, 41, (424,564,0): 88, 52, 38, (424,565,0): 94, 45, 28, (424,566,0): 119, 48, 30, (424,567,0): 151, 58, 41, (424,568,0): 176, 58, 44, (424,569,0): 193, 59, 48, (424,570,0): 198, 57, 50, (424,571,0): 181, 49, 45, (424,572,0): 150, 45, 41, (424,573,0): 124, 47, 41, (424,574,0): 96, 52, 43, (424,575,0): 82, 53, 45, (424,576,0): 86, 58, 55, (424,577,0): 84, 58, 57, (424,578,0): 83, 57, 56, (424,579,0): 79, 58, 55, (424,580,0): 79, 58, 57, (424,581,0): 77, 59, 57, (424,582,0): 78, 60, 58, (424,583,0): 77, 62, 59, (424,584,0): 77, 63, 62, (424,585,0): 78, 64, 63, (424,586,0): 79, 63, 64, (424,587,0): 76, 60, 61, (424,588,0): 74, 55, 57, (424,589,0): 73, 54, 56, (424,590,0): 76, 55, 60, (424,591,0): 78, 59, 63, (424,592,0): 78, 63, 68, (424,593,0): 77, 65, 69, (424,594,0): 77, 66, 70, (424,595,0): 77, 68, 71, (424,596,0): 77, 68, 71, (424,597,0): 74, 68, 70, (424,598,0): 71, 67, 68, (424,599,0): 69, 65, 66, (425,0,0): 69, 81, 67, (425,1,0): 69, 81, 67, (425,2,0): 69, 81, 67, (425,3,0): 70, 82, 68, (425,4,0): 71, 82, 68, (425,5,0): 72, 83, 69, (425,6,0): 72, 83, 69, (425,7,0): 72, 83, 69, (425,8,0): 75, 83, 70, (425,9,0): 75, 83, 70, (425,10,0): 76, 82, 70, (425,11,0): 76, 82, 70, (425,12,0): 76, 82, 70, (425,13,0): 76, 82, 70, (425,14,0): 78, 81, 70, (425,15,0): 78, 81, 70, (425,16,0): 79, 82, 73, (425,17,0): 79, 82, 73, (425,18,0): 79, 80, 72, (425,19,0): 79, 81, 70, (425,20,0): 78, 80, 69, (425,21,0): 78, 80, 69, (425,22,0): 78, 78, 68, (425,23,0): 78, 78, 66, (425,24,0): 83, 81, 69, (425,25,0): 83, 81, 68, (425,26,0): 83, 81, 68, (425,27,0): 84, 82, 69, (425,28,0): 85, 81, 69, (425,29,0): 86, 83, 68, (425,30,0): 86, 83, 68, (425,31,0): 87, 84, 69, (425,32,0): 86, 83, 66, (425,33,0): 87, 84, 67, (425,34,0): 89, 83, 67, (425,35,0): 90, 84, 68, (425,36,0): 90, 84, 68, (425,37,0): 92, 85, 69, (425,38,0): 92, 85, 69, (425,39,0): 93, 84, 69, (425,40,0): 91, 79, 65, (425,41,0): 91, 79, 65, (425,42,0): 93, 79, 66, (425,43,0): 94, 80, 67, (425,44,0): 97, 83, 70, (425,45,0): 100, 86, 73, (425,46,0): 104, 88, 75, (425,47,0): 104, 90, 77, (425,48,0): 104, 95, 78, (425,49,0): 104, 97, 78, (425,50,0): 105, 98, 79, (425,51,0): 105, 100, 80, (425,52,0): 105, 100, 80, (425,53,0): 104, 99, 79, (425,54,0): 102, 97, 77, (425,55,0): 100, 98, 77, (425,56,0): 102, 100, 79, (425,57,0): 101, 100, 79, (425,58,0): 101, 100, 79, (425,59,0): 100, 99, 78, (425,60,0): 99, 98, 77, (425,61,0): 97, 99, 77, (425,62,0): 97, 99, 77, (425,63,0): 96, 98, 77, (425,64,0): 98, 96, 81, (425,65,0): 98, 96, 81, (425,66,0): 98, 96, 81, (425,67,0): 97, 95, 80, (425,68,0): 96, 94, 79, (425,69,0): 95, 93, 78, (425,70,0): 95, 93, 78, (425,71,0): 95, 93, 78, (425,72,0): 95, 93, 78, (425,73,0): 95, 93, 78, (425,74,0): 95, 93, 78, (425,75,0): 94, 92, 77, (425,76,0): 92, 90, 75, (425,77,0): 90, 88, 73, (425,78,0): 88, 86, 71, (425,79,0): 87, 85, 72, (425,80,0): 82, 78, 67, (425,81,0): 79, 75, 64, (425,82,0): 77, 73, 62, (425,83,0): 77, 73, 62, (425,84,0): 80, 73, 63, (425,85,0): 80, 74, 62, (425,86,0): 77, 71, 59, (425,87,0): 75, 69, 57, (425,88,0): 74, 66, 53, (425,89,0): 73, 65, 52, (425,90,0): 71, 61, 49, (425,91,0): 68, 59, 44, (425,92,0): 65, 56, 41, (425,93,0): 62, 53, 38, (425,94,0): 61, 49, 33, (425,95,0): 60, 48, 32, (425,96,0): 61, 48, 31, (425,97,0): 60, 47, 28, (425,98,0): 59, 46, 29, (425,99,0): 57, 44, 27, (425,100,0): 57, 44, 27, (425,101,0): 57, 44, 27, (425,102,0): 58, 45, 29, (425,103,0): 58, 45, 29, (425,104,0): 57, 43, 30, (425,105,0): 57, 43, 30, (425,106,0): 56, 42, 29, (425,107,0): 56, 42, 29, (425,108,0): 55, 41, 30, (425,109,0): 55, 41, 30, (425,110,0): 54, 40, 29, (425,111,0): 56, 39, 29, (425,112,0): 57, 39, 29, (425,113,0): 58, 38, 29, (425,114,0): 59, 39, 30, (425,115,0): 59, 39, 30, (425,116,0): 60, 40, 31, (425,117,0): 60, 40, 31, (425,118,0): 61, 41, 32, (425,119,0): 61, 41, 32, (425,120,0): 61, 41, 32, (425,121,0): 61, 41, 32, (425,122,0): 62, 42, 33, (425,123,0): 63, 43, 34, (425,124,0): 64, 44, 35, (425,125,0): 65, 45, 36, (425,126,0): 66, 46, 37, (425,127,0): 66, 46, 37, (425,128,0): 65, 44, 39, (425,129,0): 65, 44, 39, (425,130,0): 63, 42, 37, (425,131,0): 63, 42, 37, (425,132,0): 63, 42, 37, (425,133,0): 65, 44, 39, (425,134,0): 66, 45, 40, (425,135,0): 67, 46, 41, (425,136,0): 69, 48, 43, (425,137,0): 70, 49, 44, (425,138,0): 71, 50, 45, (425,139,0): 73, 52, 47, (425,140,0): 74, 53, 48, (425,141,0): 76, 55, 50, (425,142,0): 77, 56, 51, (425,143,0): 78, 57, 52, (425,144,0): 88, 64, 64, (425,145,0): 91, 67, 67, (425,146,0): 93, 72, 71, (425,147,0): 95, 74, 73, (425,148,0): 96, 75, 74, (425,149,0): 98, 77, 76, (425,150,0): 101, 81, 80, (425,151,0): 105, 85, 84, (425,152,0): 101, 83, 81, (425,153,0): 101, 83, 81, (425,154,0): 102, 84, 82, (425,155,0): 103, 85, 83, (425,156,0): 102, 87, 84, (425,157,0): 103, 88, 85, (425,158,0): 104, 89, 86, (425,159,0): 104, 89, 86, (425,160,0): 101, 87, 84, (425,161,0): 102, 88, 85, (425,162,0): 105, 90, 87, (425,163,0): 107, 92, 87, (425,164,0): 108, 93, 88, (425,165,0): 108, 93, 88, (425,166,0): 110, 92, 88, (425,167,0): 109, 92, 85, (425,168,0): 111, 92, 86, (425,169,0): 112, 93, 86, (425,170,0): 114, 94, 87, (425,171,0): 116, 96, 89, (425,172,0): 119, 96, 90, (425,173,0): 121, 98, 90, (425,174,0): 122, 99, 91, (425,175,0): 124, 99, 92, (425,176,0): 125, 98, 91, (425,177,0): 127, 98, 92, (425,178,0): 128, 99, 93, (425,179,0): 129, 100, 94, (425,180,0): 128, 101, 94, (425,181,0): 127, 100, 93, (425,182,0): 124, 99, 92, (425,183,0): 124, 99, 92, (425,184,0): 118, 93, 86, (425,185,0): 116, 91, 84, (425,186,0): 113, 90, 82, (425,187,0): 114, 91, 83, (425,188,0): 115, 95, 86, (425,189,0): 116, 96, 87, (425,190,0): 114, 94, 85, (425,191,0): 114, 91, 83, (425,192,0): 113, 89, 79, (425,193,0): 112, 88, 78, (425,194,0): 112, 85, 78, (425,195,0): 111, 82, 76, (425,196,0): 109, 78, 73, (425,197,0): 107, 76, 71, (425,198,0): 107, 73, 71, (425,199,0): 106, 72, 70, (425,200,0): 106, 72, 71, (425,201,0): 107, 73, 72, (425,202,0): 108, 74, 73, (425,203,0): 107, 76, 74, (425,204,0): 110, 80, 80, (425,205,0): 117, 89, 88, (425,206,0): 127, 99, 98, (425,207,0): 133, 107, 106, (425,208,0): 161, 132, 134, (425,209,0): 185, 159, 160, (425,210,0): 210, 185, 188, (425,211,0): 213, 194, 196, (425,212,0): 206, 191, 196, (425,213,0): 197, 191, 195, (425,214,0): 193, 192, 198, (425,215,0): 189, 193, 202, (425,216,0): 182, 192, 204, (425,217,0): 179, 193, 206, (425,218,0): 175, 192, 210, (425,219,0): 171, 192, 211, (425,220,0): 169, 191, 214, (425,221,0): 166, 190, 214, (425,222,0): 165, 189, 215, (425,223,0): 163, 189, 214, (425,224,0): 166, 189, 220, (425,225,0): 165, 190, 221, (425,226,0): 163, 187, 221, (425,227,0): 162, 186, 220, (425,228,0): 160, 184, 220, (425,229,0): 158, 184, 219, (425,230,0): 156, 182, 219, (425,231,0): 154, 182, 219, (425,232,0): 152, 182, 220, (425,233,0): 152, 181, 221, (425,234,0): 149, 181, 222, (425,235,0): 148, 180, 221, (425,236,0): 146, 179, 222, (425,237,0): 145, 178, 221, (425,238,0): 144, 177, 222, (425,239,0): 143, 175, 222, (425,240,0): 142, 174, 223, (425,241,0): 142, 174, 225, (425,242,0): 142, 174, 225, (425,243,0): 143, 175, 226, (425,244,0): 143, 174, 228, (425,245,0): 142, 175, 228, (425,246,0): 143, 176, 229, (425,247,0): 141, 177, 229, (425,248,0): 143, 178, 232, (425,249,0): 144, 179, 233, (425,250,0): 143, 180, 235, (425,251,0): 143, 180, 235, (425,252,0): 144, 181, 236, (425,253,0): 144, 181, 236, (425,254,0): 145, 181, 239, (425,255,0): 143, 182, 241, (425,256,0): 142, 184, 244, (425,257,0): 141, 186, 245, (425,258,0): 143, 187, 248, (425,259,0): 144, 189, 248, (425,260,0): 146, 190, 251, (425,261,0): 148, 193, 252, (425,262,0): 150, 194, 255, (425,263,0): 150, 195, 254, (425,264,0): 151, 195, 255, (425,265,0): 151, 196, 255, (425,266,0): 151, 195, 255, (425,267,0): 152, 197, 255, (425,268,0): 153, 197, 255, (425,269,0): 153, 198, 255, (425,270,0): 153, 197, 255, (425,271,0): 156, 198, 255, (425,272,0): 160, 199, 255, (425,273,0): 162, 198, 255, (425,274,0): 163, 198, 255, (425,275,0): 163, 198, 255, (425,276,0): 162, 197, 255, (425,277,0): 162, 197, 255, (425,278,0): 164, 196, 255, (425,279,0): 164, 196, 255, (425,280,0): 166, 196, 255, (425,281,0): 166, 196, 255, (425,282,0): 166, 196, 255, (425,283,0): 166, 196, 255, (425,284,0): 166, 195, 255, (425,285,0): 166, 195, 255, (425,286,0): 166, 195, 255, (425,287,0): 165, 195, 255, (425,288,0): 161, 192, 255, (425,289,0): 159, 192, 255, (425,290,0): 158, 191, 255, (425,291,0): 157, 190, 255, (425,292,0): 155, 189, 255, (425,293,0): 154, 189, 255, (425,294,0): 151, 188, 255, (425,295,0): 151, 189, 254, (425,296,0): 152, 190, 255, (425,297,0): 152, 190, 253, (425,298,0): 151, 191, 253, (425,299,0): 151, 191, 253, (425,300,0): 151, 191, 253, (425,301,0): 150, 192, 252, (425,302,0): 150, 191, 253, (425,303,0): 150, 191, 253, (425,304,0): 151, 190, 255, (425,305,0): 152, 190, 255, (425,306,0): 153, 187, 255, (425,307,0): 153, 183, 255, (425,308,0): 157, 183, 255, (425,309,0): 167, 186, 255, (425,310,0): 171, 183, 255, (425,311,0): 171, 175, 249, (425,312,0): 171, 168, 239, (425,313,0): 167, 155, 219, (425,314,0): 144, 125, 180, (425,315,0): 114, 91, 133, (425,316,0): 99, 70, 98, (425,317,0): 96, 65, 81, (425,318,0): 92, 59, 66, (425,319,0): 82, 50, 55, (425,320,0): 71, 40, 48, (425,321,0): 65, 35, 47, (425,322,0): 58, 28, 40, (425,323,0): 53, 25, 37, (425,324,0): 52, 24, 38, (425,325,0): 50, 24, 37, (425,326,0): 46, 22, 35, (425,327,0): 43, 21, 34, (425,328,0): 44, 22, 35, (425,329,0): 43, 23, 35, (425,330,0): 40, 22, 36, (425,331,0): 38, 22, 33, (425,332,0): 37, 21, 32, (425,333,0): 36, 20, 30, (425,334,0): 35, 19, 29, (425,335,0): 35, 19, 29, (425,336,0): 33, 17, 27, (425,337,0): 33, 17, 27, (425,338,0): 33, 17, 27, (425,339,0): 33, 17, 27, (425,340,0): 33, 17, 27, (425,341,0): 33, 17, 27, (425,342,0): 33, 17, 27, (425,343,0): 33, 17, 27, (425,344,0): 31, 15, 25, (425,345,0): 31, 15, 25, (425,346,0): 31, 15, 25, (425,347,0): 30, 14, 24, (425,348,0): 30, 14, 24, (425,349,0): 29, 13, 23, (425,350,0): 29, 13, 23, (425,351,0): 29, 13, 23, (425,352,0): 29, 16, 25, (425,353,0): 29, 16, 25, (425,354,0): 30, 17, 26, (425,355,0): 30, 17, 26, (425,356,0): 31, 18, 27, (425,357,0): 33, 17, 27, (425,358,0): 34, 18, 28, (425,359,0): 34, 18, 28, (425,360,0): 34, 18, 28, (425,361,0): 35, 18, 28, (425,362,0): 35, 18, 28, (425,363,0): 35, 18, 28, (425,364,0): 35, 18, 28, (425,365,0): 35, 18, 28, (425,366,0): 35, 18, 28, (425,367,0): 34, 18, 29, (425,368,0): 32, 18, 31, (425,369,0): 32, 18, 31, (425,370,0): 31, 17, 30, (425,371,0): 31, 17, 30, (425,372,0): 30, 16, 29, (425,373,0): 30, 16, 29, (425,374,0): 30, 16, 29, (425,375,0): 29, 15, 28, (425,376,0): 30, 16, 29, (425,377,0): 31, 17, 30, (425,378,0): 31, 17, 30, (425,379,0): 32, 18, 31, (425,380,0): 32, 18, 31, (425,381,0): 33, 19, 32, (425,382,0): 33, 19, 32, (425,383,0): 33, 19, 32, (425,384,0): 33, 19, 32, (425,385,0): 33, 19, 32, (425,386,0): 33, 19, 32, (425,387,0): 32, 18, 31, (425,388,0): 32, 18, 31, (425,389,0): 31, 17, 30, (425,390,0): 31, 17, 30, (425,391,0): 30, 16, 29, (425,392,0): 30, 16, 29, (425,393,0): 30, 16, 29, (425,394,0): 30, 16, 29, (425,395,0): 29, 15, 28, (425,396,0): 29, 15, 28, (425,397,0): 28, 14, 27, (425,398,0): 28, 14, 27, (425,399,0): 27, 13, 26, (425,400,0): 27, 13, 28, (425,401,0): 27, 13, 28, (425,402,0): 27, 13, 28, (425,403,0): 25, 13, 27, (425,404,0): 25, 13, 27, (425,405,0): 24, 12, 26, (425,406,0): 24, 12, 26, (425,407,0): 22, 11, 25, (425,408,0): 25, 14, 28, (425,409,0): 22, 14, 27, (425,410,0): 22, 14, 27, (425,411,0): 21, 13, 26, (425,412,0): 20, 12, 25, (425,413,0): 19, 13, 25, (425,414,0): 18, 12, 24, (425,415,0): 18, 12, 24, (425,416,0): 23, 15, 28, (425,417,0): 22, 14, 27, (425,418,0): 21, 13, 26, (425,419,0): 21, 13, 26, (425,420,0): 21, 13, 26, (425,421,0): 23, 15, 28, (425,422,0): 25, 17, 30, (425,423,0): 26, 18, 31, (425,424,0): 29, 21, 34, (425,425,0): 29, 21, 34, (425,426,0): 28, 20, 33, (425,427,0): 28, 20, 33, (425,428,0): 29, 21, 34, (425,429,0): 30, 22, 35, (425,430,0): 32, 24, 37, (425,431,0): 33, 25, 38, (425,432,0): 34, 24, 35, (425,433,0): 40, 28, 40, (425,434,0): 46, 34, 46, (425,435,0): 51, 39, 51, (425,436,0): 55, 43, 55, (425,437,0): 60, 48, 58, (425,438,0): 66, 55, 63, (425,439,0): 71, 60, 68, (425,440,0): 77, 66, 72, (425,441,0): 75, 64, 70, (425,442,0): 75, 64, 68, (425,443,0): 77, 67, 68, (425,444,0): 80, 70, 71, (425,445,0): 81, 71, 72, (425,446,0): 79, 69, 70, (425,447,0): 76, 66, 67, (425,448,0): 77, 62, 65, (425,449,0): 84, 69, 72, (425,450,0): 93, 78, 83, (425,451,0): 101, 86, 89, (425,452,0): 105, 90, 95, (425,453,0): 103, 88, 91, (425,454,0): 99, 84, 87, (425,455,0): 96, 82, 82, (425,456,0): 89, 75, 75, (425,457,0): 86, 72, 71, (425,458,0): 82, 68, 67, (425,459,0): 80, 66, 63, (425,460,0): 79, 65, 64, (425,461,0): 77, 63, 60, (425,462,0): 72, 58, 57, (425,463,0): 69, 55, 54, (425,464,0): 66, 47, 49, (425,465,0): 64, 48, 49, (425,466,0): 67, 51, 52, (425,467,0): 69, 58, 56, (425,468,0): 68, 59, 54, (425,469,0): 68, 61, 53, (425,470,0): 76, 72, 63, (425,471,0): 86, 86, 74, (425,472,0): 88, 89, 75, (425,473,0): 91, 94, 77, (425,474,0): 99, 102, 85, (425,475,0): 109, 112, 93, (425,476,0): 118, 120, 99, (425,477,0): 119, 121, 99, (425,478,0): 116, 115, 94, (425,479,0): 112, 111, 83, (425,480,0): 106, 103, 68, (425,481,0): 104, 100, 62, (425,482,0): 105, 97, 58, (425,483,0): 111, 98, 63, (425,484,0): 117, 101, 68, (425,485,0): 118, 99, 69, (425,486,0): 111, 91, 66, (425,487,0): 103, 85, 61, (425,488,0): 97, 79, 57, (425,489,0): 104, 79, 59, (425,490,0): 113, 78, 59, (425,491,0): 132, 79, 61, (425,492,0): 167, 90, 72, (425,493,0): 203, 104, 85, (425,494,0): 227, 107, 90, (425,495,0): 220, 107, 89, (425,496,0): 186, 103, 87, (425,497,0): 161, 100, 82, (425,498,0): 139, 91, 69, (425,499,0): 126, 86, 61, (425,500,0): 118, 84, 59, (425,501,0): 114, 79, 57, (425,502,0): 111, 70, 52, (425,503,0): 109, 60, 45, (425,504,0): 124, 66, 55, (425,505,0): 125, 65, 57, (425,506,0): 122, 63, 57, (425,507,0): 113, 58, 51, (425,508,0): 102, 55, 47, (425,509,0): 91, 51, 41, (425,510,0): 86, 50, 38, (425,511,0): 86, 48, 37, (425,512,0): 79, 31, 21, (425,513,0): 91, 31, 23, (425,514,0): 107, 31, 31, (425,515,0): 117, 30, 36, (425,516,0): 125, 29, 40, (425,517,0): 129, 31, 46, (425,518,0): 128, 37, 52, (425,519,0): 124, 44, 57, (425,520,0): 100, 32, 43, (425,521,0): 86, 25, 33, (425,522,0): 89, 29, 37, (425,523,0): 98, 35, 43, (425,524,0): 104, 32, 43, (425,525,0): 117, 35, 47, (425,526,0): 125, 33, 48, (425,527,0): 112, 24, 38, (425,528,0): 94, 27, 36, (425,529,0): 91, 36, 41, (425,530,0): 87, 36, 41, (425,531,0): 77, 28, 32, (425,532,0): 69, 24, 27, (425,533,0): 71, 26, 29, (425,534,0): 74, 27, 33, (425,535,0): 74, 25, 31, (425,536,0): 84, 28, 39, (425,537,0): 90, 28, 41, (425,538,0): 99, 33, 47, (425,539,0): 105, 37, 52, (425,540,0): 103, 32, 50, (425,541,0): 98, 27, 45, (425,542,0): 101, 30, 48, (425,543,0): 108, 39, 57, (425,544,0): 97, 33, 47, (425,545,0): 83, 21, 34, (425,546,0): 84, 26, 38, (425,547,0): 90, 34, 45, (425,548,0): 81, 30, 39, (425,549,0): 74, 27, 35, (425,550,0): 71, 28, 35, (425,551,0): 63, 24, 29, (425,552,0): 69, 33, 37, (425,553,0): 70, 34, 38, (425,554,0): 73, 38, 42, (425,555,0): 75, 40, 44, (425,556,0): 70, 34, 38, (425,557,0): 65, 29, 33, (425,558,0): 73, 34, 39, (425,559,0): 83, 47, 49, (425,560,0): 74, 45, 41, (425,561,0): 68, 39, 33, (425,562,0): 73, 40, 31, (425,563,0): 90, 50, 38, (425,564,0): 102, 53, 38, (425,565,0): 115, 48, 31, (425,566,0): 144, 53, 35, (425,567,0): 178, 62, 47, (425,568,0): 218, 76, 64, (425,569,0): 236, 79, 72, (425,570,0): 235, 73, 71, (425,571,0): 205, 57, 57, (425,572,0): 165, 47, 45, (425,573,0): 132, 49, 45, (425,574,0): 101, 54, 46, (425,575,0): 81, 54, 45, (425,576,0): 84, 56, 53, (425,577,0): 81, 55, 54, (425,578,0): 80, 54, 53, (425,579,0): 76, 55, 52, (425,580,0): 75, 54, 53, (425,581,0): 74, 56, 54, (425,582,0): 75, 57, 55, (425,583,0): 73, 58, 55, (425,584,0): 74, 60, 59, (425,585,0): 76, 62, 61, (425,586,0): 77, 61, 62, (425,587,0): 75, 59, 60, (425,588,0): 74, 55, 57, (425,589,0): 73, 54, 56, (425,590,0): 77, 56, 61, (425,591,0): 79, 60, 64, (425,592,0): 77, 62, 67, (425,593,0): 76, 64, 68, (425,594,0): 77, 65, 69, (425,595,0): 77, 66, 70, (425,596,0): 76, 67, 70, (425,597,0): 72, 66, 68, (425,598,0): 71, 65, 67, (425,599,0): 69, 65, 66, (426,0,0): 69, 81, 67, (426,1,0): 69, 81, 67, (426,2,0): 69, 81, 67, (426,3,0): 70, 82, 68, (426,4,0): 71, 82, 68, (426,5,0): 72, 83, 69, (426,6,0): 72, 83, 69, (426,7,0): 72, 83, 69, (426,8,0): 75, 83, 70, (426,9,0): 75, 83, 70, (426,10,0): 76, 82, 70, (426,11,0): 76, 82, 70, (426,12,0): 76, 82, 70, (426,13,0): 76, 82, 70, (426,14,0): 78, 81, 70, (426,15,0): 78, 81, 70, (426,16,0): 79, 82, 73, (426,17,0): 79, 82, 73, (426,18,0): 78, 81, 72, (426,19,0): 78, 81, 72, (426,20,0): 77, 80, 71, (426,21,0): 77, 80, 69, (426,22,0): 77, 79, 68, (426,23,0): 77, 79, 66, (426,24,0): 80, 80, 68, (426,25,0): 81, 81, 69, (426,26,0): 83, 81, 69, (426,27,0): 84, 82, 69, (426,28,0): 84, 82, 69, (426,29,0): 85, 83, 70, (426,30,0): 85, 83, 70, (426,31,0): 85, 83, 68, (426,32,0): 85, 84, 66, (426,33,0): 85, 84, 66, (426,34,0): 86, 83, 66, (426,35,0): 87, 84, 67, (426,36,0): 87, 84, 67, (426,37,0): 90, 84, 68, (426,38,0): 91, 84, 68, (426,39,0): 91, 84, 68, (426,40,0): 89, 80, 65, (426,41,0): 91, 79, 65, (426,42,0): 93, 79, 66, (426,43,0): 94, 80, 67, (426,44,0): 98, 82, 69, (426,45,0): 101, 85, 72, (426,46,0): 103, 87, 74, (426,47,0): 103, 89, 76, (426,48,0): 105, 93, 77, (426,49,0): 104, 95, 78, (426,50,0): 105, 96, 79, (426,51,0): 105, 98, 80, (426,52,0): 105, 98, 80, (426,53,0): 103, 98, 79, (426,54,0): 102, 97, 78, (426,55,0): 101, 96, 77, (426,56,0): 103, 98, 79, (426,57,0): 100, 97, 78, (426,58,0): 100, 97, 78, (426,59,0): 99, 98, 78, (426,60,0): 98, 97, 77, (426,61,0): 97, 96, 76, (426,62,0): 97, 96, 76, (426,63,0): 97, 96, 76, (426,64,0): 98, 96, 81, (426,65,0): 98, 96, 83, (426,66,0): 97, 95, 82, (426,67,0): 97, 95, 82, (426,68,0): 96, 94, 81, (426,69,0): 96, 94, 81, (426,70,0): 95, 93, 80, (426,71,0): 95, 93, 80, (426,72,0): 95, 93, 80, (426,73,0): 95, 93, 80, (426,74,0): 95, 93, 80, (426,75,0): 94, 92, 79, (426,76,0): 92, 90, 77, (426,77,0): 90, 88, 75, (426,78,0): 88, 86, 73, (426,79,0): 87, 85, 72, (426,80,0): 82, 78, 67, (426,81,0): 80, 76, 67, (426,82,0): 77, 73, 64, (426,83,0): 77, 73, 62, (426,84,0): 81, 74, 64, (426,85,0): 80, 73, 63, (426,86,0): 78, 72, 60, (426,87,0): 75, 69, 57, (426,88,0): 75, 67, 56, (426,89,0): 74, 66, 53, (426,90,0): 72, 62, 50, (426,91,0): 69, 59, 47, (426,92,0): 66, 57, 42, (426,93,0): 63, 54, 39, (426,94,0): 63, 51, 37, (426,95,0): 62, 50, 34, (426,96,0): 63, 50, 33, (426,97,0): 62, 49, 30, (426,98,0): 61, 48, 31, (426,99,0): 60, 47, 30, (426,100,0): 59, 46, 29, (426,101,0): 59, 46, 29, (426,102,0): 60, 47, 31, (426,103,0): 61, 48, 32, (426,104,0): 59, 45, 32, (426,105,0): 59, 45, 32, (426,106,0): 58, 44, 31, (426,107,0): 58, 44, 31, (426,108,0): 57, 43, 32, (426,109,0): 57, 43, 32, (426,110,0): 57, 43, 32, (426,111,0): 58, 41, 31, (426,112,0): 58, 40, 30, (426,113,0): 59, 39, 30, (426,114,0): 60, 40, 31, (426,115,0): 60, 40, 31, (426,116,0): 61, 41, 32, (426,117,0): 61, 41, 32, (426,118,0): 62, 42, 33, (426,119,0): 62, 42, 33, (426,120,0): 63, 43, 34, (426,121,0): 63, 43, 34, (426,122,0): 64, 44, 35, (426,123,0): 65, 45, 36, (426,124,0): 66, 46, 37, (426,125,0): 67, 47, 38, (426,126,0): 68, 48, 39, (426,127,0): 68, 48, 39, (426,128,0): 65, 44, 39, (426,129,0): 64, 43, 38, (426,130,0): 64, 43, 38, (426,131,0): 64, 43, 38, (426,132,0): 64, 43, 38, (426,133,0): 65, 44, 39, (426,134,0): 67, 46, 41, (426,135,0): 68, 47, 42, (426,136,0): 71, 50, 45, (426,137,0): 71, 50, 45, (426,138,0): 72, 51, 46, (426,139,0): 74, 53, 48, (426,140,0): 75, 54, 49, (426,141,0): 77, 56, 51, (426,142,0): 78, 57, 52, (426,143,0): 79, 58, 53, (426,144,0): 88, 64, 64, (426,145,0): 92, 68, 68, (426,146,0): 94, 73, 72, (426,147,0): 96, 75, 74, (426,148,0): 97, 76, 75, (426,149,0): 99, 78, 77, (426,150,0): 102, 82, 81, (426,151,0): 105, 85, 84, (426,152,0): 102, 84, 82, (426,153,0): 102, 84, 82, (426,154,0): 103, 85, 83, (426,155,0): 104, 86, 84, (426,156,0): 103, 88, 85, (426,157,0): 104, 89, 86, (426,158,0): 105, 90, 87, (426,159,0): 106, 91, 88, (426,160,0): 104, 90, 89, (426,161,0): 103, 92, 88, (426,162,0): 107, 93, 90, (426,163,0): 109, 95, 92, (426,164,0): 111, 96, 93, (426,165,0): 111, 96, 91, (426,166,0): 113, 95, 91, (426,167,0): 113, 96, 89, (426,168,0): 114, 95, 89, (426,169,0): 115, 94, 89, (426,170,0): 118, 94, 90, (426,171,0): 120, 97, 91, (426,172,0): 123, 98, 93, (426,173,0): 124, 99, 94, (426,174,0): 125, 100, 95, (426,175,0): 128, 100, 96, (426,176,0): 129, 100, 96, (426,177,0): 130, 101, 97, (426,178,0): 131, 102, 98, (426,179,0): 132, 103, 99, (426,180,0): 131, 103, 99, (426,181,0): 130, 102, 98, (426,182,0): 127, 102, 97, (426,183,0): 126, 101, 96, (426,184,0): 120, 95, 90, (426,185,0): 118, 93, 88, (426,186,0): 116, 93, 87, (426,187,0): 117, 94, 88, (426,188,0): 117, 97, 90, (426,189,0): 118, 98, 91, (426,190,0): 116, 96, 89, (426,191,0): 116, 93, 85, (426,192,0): 117, 93, 83, (426,193,0): 118, 91, 80, (426,194,0): 117, 88, 80, (426,195,0): 114, 85, 77, (426,196,0): 112, 82, 74, (426,197,0): 111, 78, 71, (426,198,0): 110, 75, 71, (426,199,0): 109, 74, 70, (426,200,0): 107, 72, 70, (426,201,0): 107, 73, 71, (426,202,0): 108, 74, 72, (426,203,0): 106, 75, 72, (426,204,0): 107, 77, 75, (426,205,0): 112, 84, 81, (426,206,0): 121, 93, 90, (426,207,0): 128, 100, 97, (426,208,0): 149, 118, 116, (426,209,0): 173, 142, 140, (426,210,0): 197, 169, 168, (426,211,0): 205, 184, 183, (426,212,0): 207, 188, 190, (426,213,0): 203, 192, 196, (426,214,0): 197, 192, 198, (426,215,0): 189, 189, 197, (426,216,0): 185, 191, 203, (426,217,0): 180, 192, 204, (426,218,0): 177, 193, 209, (426,219,0): 174, 191, 209, (426,220,0): 170, 191, 212, (426,221,0): 168, 190, 213, (426,222,0): 168, 190, 214, (426,223,0): 165, 189, 215, (426,224,0): 168, 189, 220, (426,225,0): 166, 189, 220, (426,226,0): 164, 187, 219, (426,227,0): 162, 187, 218, (426,228,0): 160, 184, 218, (426,229,0): 158, 184, 219, (426,230,0): 156, 182, 219, (426,231,0): 154, 182, 219, (426,232,0): 152, 182, 220, (426,233,0): 151, 181, 219, (426,234,0): 148, 180, 219, (426,235,0): 147, 179, 220, (426,236,0): 145, 178, 221, (426,237,0): 144, 177, 220, (426,238,0): 142, 177, 219, (426,239,0): 142, 176, 221, (426,240,0): 141, 173, 224, (426,241,0): 141, 172, 226, (426,242,0): 140, 173, 226, (426,243,0): 141, 174, 227, (426,244,0): 141, 174, 228, (426,245,0): 142, 175, 229, (426,246,0): 143, 176, 230, (426,247,0): 141, 176, 230, (426,248,0): 143, 178, 234, (426,249,0): 142, 179, 234, (426,250,0): 143, 179, 237, (426,251,0): 143, 179, 237, (426,252,0): 142, 181, 238, (426,253,0): 142, 181, 238, (426,254,0): 143, 182, 241, (426,255,0): 142, 182, 241, (426,256,0): 139, 185, 245, (426,257,0): 137, 186, 245, (426,258,0): 138, 186, 248, (426,259,0): 140, 189, 248, (426,260,0): 141, 189, 251, (426,261,0): 143, 192, 251, (426,262,0): 144, 192, 254, (426,263,0): 144, 193, 252, (426,264,0): 145, 193, 255, (426,265,0): 145, 194, 253, (426,266,0): 146, 194, 255, (426,267,0): 146, 195, 254, (426,268,0): 147, 195, 255, (426,269,0): 147, 196, 255, (426,270,0): 148, 196, 255, (426,271,0): 150, 196, 255, (426,272,0): 156, 198, 255, (426,273,0): 157, 197, 255, (426,274,0): 157, 197, 255, (426,275,0): 157, 197, 255, (426,276,0): 159, 198, 255, (426,277,0): 159, 198, 255, (426,278,0): 159, 198, 255, (426,279,0): 159, 198, 255, (426,280,0): 161, 197, 255, (426,281,0): 161, 197, 255, (426,282,0): 161, 195, 255, (426,283,0): 161, 195, 255, (426,284,0): 160, 194, 255, (426,285,0): 159, 193, 254, (426,286,0): 160, 192, 253, (426,287,0): 158, 192, 255, (426,288,0): 153, 187, 255, (426,289,0): 151, 188, 255, (426,290,0): 151, 188, 255, (426,291,0): 151, 188, 255, (426,292,0): 150, 188, 255, (426,293,0): 149, 188, 255, (426,294,0): 149, 188, 255, (426,295,0): 149, 188, 255, (426,296,0): 149, 190, 255, (426,297,0): 149, 190, 254, (426,298,0): 149, 190, 254, (426,299,0): 147, 191, 254, (426,300,0): 147, 191, 254, (426,301,0): 147, 191, 252, (426,302,0): 147, 191, 254, (426,303,0): 147, 191, 254, (426,304,0): 148, 193, 255, (426,305,0): 149, 192, 255, (426,306,0): 149, 187, 255, (426,307,0): 149, 181, 254, (426,308,0): 158, 181, 255, (426,309,0): 170, 186, 255, (426,310,0): 175, 182, 255, (426,311,0): 176, 174, 249, (426,312,0): 169, 159, 228, (426,313,0): 148, 133, 192, (426,314,0): 119, 97, 144, (426,315,0): 96, 70, 105, (426,316,0): 86, 58, 80, (426,317,0): 86, 56, 66, (426,318,0): 85, 53, 56, (426,319,0): 80, 50, 50, (426,320,0): 70, 41, 46, (426,321,0): 63, 36, 45, (426,322,0): 57, 30, 39, (426,323,0): 52, 26, 37, (426,324,0): 51, 25, 38, (426,325,0): 48, 24, 37, (426,326,0): 47, 23, 37, (426,327,0): 44, 21, 37, (426,328,0): 41, 20, 35, (426,329,0): 39, 21, 35, (426,330,0): 38, 20, 36, (426,331,0): 36, 20, 33, (426,332,0): 35, 19, 32, (426,333,0): 32, 19, 29, (426,334,0): 31, 18, 28, (426,335,0): 31, 18, 28, (426,336,0): 32, 16, 26, (426,337,0): 32, 16, 26, (426,338,0): 32, 16, 26, (426,339,0): 32, 16, 26, (426,340,0): 32, 16, 26, (426,341,0): 32, 16, 26, (426,342,0): 32, 16, 26, (426,343,0): 32, 16, 26, (426,344,0): 31, 15, 25, (426,345,0): 31, 15, 25, (426,346,0): 31, 15, 25, (426,347,0): 30, 14, 24, (426,348,0): 30, 14, 24, (426,349,0): 29, 13, 23, (426,350,0): 29, 13, 23, (426,351,0): 27, 14, 23, (426,352,0): 27, 15, 25, (426,353,0): 27, 15, 25, (426,354,0): 28, 16, 26, (426,355,0): 28, 16, 26, (426,356,0): 29, 17, 27, (426,357,0): 30, 17, 27, (426,358,0): 31, 18, 28, (426,359,0): 31, 18, 28, (426,360,0): 32, 19, 29, (426,361,0): 34, 18, 29, (426,362,0): 34, 18, 29, (426,363,0): 34, 18, 29, (426,364,0): 35, 17, 29, (426,365,0): 35, 17, 29, (426,366,0): 35, 17, 29, (426,367,0): 34, 18, 29, (426,368,0): 32, 18, 31, (426,369,0): 30, 18, 30, (426,370,0): 30, 18, 30, (426,371,0): 30, 18, 30, (426,372,0): 29, 17, 29, (426,373,0): 28, 16, 28, (426,374,0): 28, 16, 28, (426,375,0): 28, 16, 28, (426,376,0): 29, 17, 29, (426,377,0): 29, 17, 29, (426,378,0): 29, 17, 29, (426,379,0): 30, 18, 30, (426,380,0): 30, 18, 30, (426,381,0): 31, 19, 31, (426,382,0): 31, 19, 31, (426,383,0): 31, 19, 31, (426,384,0): 31, 19, 31, (426,385,0): 31, 19, 31, (426,386,0): 31, 19, 31, (426,387,0): 30, 18, 30, (426,388,0): 30, 18, 30, (426,389,0): 29, 17, 29, (426,390,0): 29, 17, 29, (426,391,0): 29, 17, 29, (426,392,0): 28, 16, 28, (426,393,0): 28, 16, 28, (426,394,0): 28, 16, 28, (426,395,0): 27, 15, 27, (426,396,0): 27, 15, 27, (426,397,0): 26, 14, 26, (426,398,0): 26, 14, 26, (426,399,0): 26, 14, 26, (426,400,0): 25, 13, 27, (426,401,0): 25, 12, 29, (426,402,0): 25, 12, 29, (426,403,0): 23, 12, 28, (426,404,0): 23, 12, 28, (426,405,0): 22, 11, 27, (426,406,0): 22, 11, 27, (426,407,0): 20, 12, 27, (426,408,0): 21, 13, 28, (426,409,0): 20, 14, 28, (426,410,0): 20, 14, 28, (426,411,0): 20, 14, 28, (426,412,0): 19, 13, 27, (426,413,0): 17, 13, 27, (426,414,0): 16, 12, 26, (426,415,0): 16, 12, 26, (426,416,0): 22, 16, 28, (426,417,0): 22, 16, 28, (426,418,0): 21, 15, 27, (426,419,0): 21, 15, 27, (426,420,0): 21, 15, 27, (426,421,0): 23, 17, 29, (426,422,0): 24, 18, 30, (426,423,0): 25, 19, 31, (426,424,0): 27, 21, 33, (426,425,0): 26, 20, 32, (426,426,0): 26, 20, 32, (426,427,0): 26, 20, 32, (426,428,0): 28, 22, 34, (426,429,0): 30, 24, 36, (426,430,0): 32, 26, 38, (426,431,0): 34, 26, 39, (426,432,0): 37, 26, 40, (426,433,0): 42, 30, 44, (426,434,0): 47, 35, 49, (426,435,0): 51, 39, 51, (426,436,0): 53, 41, 53, (426,437,0): 57, 45, 55, (426,438,0): 62, 51, 59, (426,439,0): 66, 55, 63, (426,440,0): 76, 65, 71, (426,441,0): 74, 63, 69, (426,442,0): 72, 61, 65, (426,443,0): 73, 63, 64, (426,444,0): 77, 67, 68, (426,445,0): 80, 70, 69, (426,446,0): 81, 71, 70, (426,447,0): 80, 70, 69, (426,448,0): 79, 65, 65, (426,449,0): 85, 71, 71, (426,450,0): 94, 79, 82, (426,451,0): 103, 89, 89, (426,452,0): 109, 94, 97, (426,453,0): 109, 95, 95, (426,454,0): 106, 92, 92, (426,455,0): 103, 89, 88, (426,456,0): 94, 80, 79, (426,457,0): 90, 76, 73, (426,458,0): 84, 70, 67, (426,459,0): 81, 68, 62, (426,460,0): 79, 65, 62, (426,461,0): 77, 64, 58, (426,462,0): 73, 59, 56, (426,463,0): 70, 56, 53, (426,464,0): 67, 49, 49, (426,465,0): 64, 48, 48, (426,466,0): 67, 51, 51, (426,467,0): 68, 57, 53, (426,468,0): 68, 59, 54, (426,469,0): 67, 60, 52, (426,470,0): 74, 70, 61, (426,471,0): 83, 83, 71, (426,472,0): 90, 91, 77, (426,473,0): 93, 96, 79, (426,474,0): 102, 103, 87, (426,475,0): 112, 113, 95, (426,476,0): 120, 121, 103, (426,477,0): 123, 125, 104, (426,478,0): 124, 123, 103, (426,479,0): 121, 121, 95, (426,480,0): 110, 110, 74, (426,481,0): 109, 107, 68, (426,482,0): 109, 104, 66, (426,483,0): 114, 104, 68, (426,484,0): 120, 105, 72, (426,485,0): 118, 103, 72, (426,486,0): 113, 97, 71, (426,487,0): 107, 91, 66, (426,488,0): 100, 84, 61, (426,489,0): 97, 75, 54, (426,490,0): 100, 65, 45, (426,491,0): 123, 68, 48, (426,492,0): 167, 84, 66, (426,493,0): 214, 102, 88, (426,494,0): 243, 105, 92, (426,495,0): 243, 105, 95, (426,496,0): 225, 112, 106, (426,497,0): 198, 105, 98, (426,498,0): 171, 94, 84, (426,499,0): 147, 88, 72, (426,500,0): 133, 88, 69, (426,501,0): 124, 86, 65, (426,502,0): 118, 80, 61, (426,503,0): 116, 73, 56, (426,504,0): 121, 69, 56, (426,505,0): 123, 64, 56, (426,506,0): 122, 61, 56, (426,507,0): 121, 60, 55, (426,508,0): 114, 59, 54, (426,509,0): 106, 57, 50, (426,510,0): 96, 51, 45, (426,511,0): 93, 46, 38, (426,512,0): 101, 46, 39, (426,513,0): 115, 50, 44, (426,514,0): 130, 52, 52, (426,515,0): 136, 49, 55, (426,516,0): 140, 44, 55, (426,517,0): 139, 43, 57, (426,518,0): 132, 44, 58, (426,519,0): 123, 45, 58, (426,520,0): 95, 32, 41, (426,521,0): 82, 27, 33, (426,522,0): 81, 28, 34, (426,523,0): 87, 32, 38, (426,524,0): 94, 31, 40, (426,525,0): 107, 34, 45, (426,526,0): 117, 33, 48, (426,527,0): 111, 27, 42, (426,528,0): 100, 30, 40, (426,529,0): 97, 36, 43, (426,530,0): 92, 35, 42, (426,531,0): 84, 29, 35, (426,532,0): 78, 25, 31, (426,533,0): 79, 26, 32, (426,534,0): 82, 26, 35, (426,535,0): 82, 25, 34, (426,536,0): 85, 21, 35, (426,537,0): 89, 21, 36, (426,538,0): 97, 24, 41, (426,539,0): 102, 28, 45, (426,540,0): 102, 25, 45, (426,541,0): 96, 21, 41, (426,542,0): 98, 23, 43, (426,543,0): 102, 31, 49, (426,544,0): 93, 27, 41, (426,545,0): 84, 20, 34, (426,546,0): 86, 26, 38, (426,547,0): 89, 33, 44, (426,548,0): 83, 32, 41, (426,549,0): 76, 29, 37, (426,550,0): 69, 28, 34, (426,551,0): 62, 23, 28, (426,552,0): 65, 29, 33, (426,553,0): 62, 27, 31, (426,554,0): 65, 30, 34, (426,555,0): 69, 34, 38, (426,556,0): 70, 34, 38, (426,557,0): 69, 30, 35, (426,558,0): 75, 34, 40, (426,559,0): 84, 43, 47, (426,560,0): 82, 44, 43, (426,561,0): 79, 38, 34, (426,562,0): 88, 41, 35, (426,563,0): 108, 51, 42, (426,564,0): 125, 55, 43, (426,565,0): 143, 54, 40, (426,566,0): 171, 59, 45, (426,567,0): 203, 67, 55, (426,568,0): 253, 94, 88, (426,569,0): 255, 100, 97, (426,570,0): 255, 91, 92, (426,571,0): 220, 65, 69, (426,572,0): 172, 49, 52, (426,573,0): 137, 51, 50, (426,574,0): 105, 56, 51, (426,575,0): 82, 53, 47, (426,576,0): 82, 54, 51, (426,577,0): 79, 53, 52, (426,578,0): 77, 51, 50, (426,579,0): 73, 52, 49, (426,580,0): 72, 51, 50, (426,581,0): 70, 52, 50, (426,582,0): 70, 52, 50, (426,583,0): 69, 54, 51, (426,584,0): 71, 57, 56, (426,585,0): 72, 58, 57, (426,586,0): 74, 58, 59, (426,587,0): 73, 57, 58, (426,588,0): 73, 54, 56, (426,589,0): 74, 55, 57, (426,590,0): 77, 56, 61, (426,591,0): 79, 60, 64, (426,592,0): 78, 61, 67, (426,593,0): 78, 63, 70, (426,594,0): 78, 63, 70, (426,595,0): 76, 63, 70, (426,596,0): 74, 63, 69, (426,597,0): 72, 63, 68, (426,598,0): 71, 62, 67, (426,599,0): 68, 62, 66, (427,0,0): 69, 81, 67, (427,1,0): 69, 81, 67, (427,2,0): 69, 81, 67, (427,3,0): 70, 82, 68, (427,4,0): 71, 82, 68, (427,5,0): 72, 83, 69, (427,6,0): 72, 83, 69, (427,7,0): 72, 83, 69, (427,8,0): 75, 83, 70, (427,9,0): 75, 83, 70, (427,10,0): 76, 82, 70, (427,11,0): 76, 82, 70, (427,12,0): 76, 82, 70, (427,13,0): 76, 82, 70, (427,14,0): 78, 81, 70, (427,15,0): 78, 81, 70, (427,16,0): 79, 82, 75, (427,17,0): 79, 82, 75, (427,18,0): 78, 81, 72, (427,19,0): 78, 81, 72, (427,20,0): 77, 80, 71, (427,21,0): 77, 80, 71, (427,22,0): 77, 79, 68, (427,23,0): 77, 79, 68, (427,24,0): 80, 80, 70, (427,25,0): 80, 80, 68, (427,26,0): 82, 80, 68, (427,27,0): 83, 81, 69, (427,28,0): 84, 82, 69, (427,29,0): 84, 82, 69, (427,30,0): 84, 82, 69, (427,31,0): 85, 83, 70, (427,32,0): 84, 82, 67, (427,33,0): 84, 83, 65, (427,34,0): 84, 83, 65, (427,35,0): 85, 84, 66, (427,36,0): 86, 83, 66, (427,37,0): 87, 84, 67, (427,38,0): 89, 83, 67, (427,39,0): 90, 83, 67, (427,40,0): 89, 80, 65, (427,41,0): 89, 80, 65, (427,42,0): 93, 79, 66, (427,43,0): 94, 80, 67, (427,44,0): 97, 81, 68, (427,45,0): 100, 84, 71, (427,46,0): 102, 86, 73, (427,47,0): 104, 88, 75, (427,48,0): 103, 91, 75, (427,49,0): 102, 93, 76, (427,50,0): 104, 95, 78, (427,51,0): 105, 96, 79, (427,52,0): 105, 96, 79, (427,53,0): 104, 97, 79, (427,54,0): 103, 96, 78, (427,55,0): 101, 96, 77, (427,56,0): 101, 96, 77, (427,57,0): 101, 96, 77, (427,58,0): 101, 96, 77, (427,59,0): 98, 95, 76, (427,60,0): 98, 95, 76, (427,61,0): 96, 95, 75, (427,62,0): 97, 94, 75, (427,63,0): 96, 95, 77, (427,64,0): 97, 95, 80, (427,65,0): 97, 95, 82, (427,66,0): 97, 95, 82, (427,67,0): 97, 95, 82, (427,68,0): 96, 94, 81, (427,69,0): 96, 94, 81, (427,70,0): 96, 94, 81, (427,71,0): 96, 94, 81, (427,72,0): 95, 93, 80, (427,73,0): 95, 93, 80, (427,74,0): 95, 93, 80, (427,75,0): 94, 92, 79, (427,76,0): 92, 90, 77, (427,77,0): 90, 88, 75, (427,78,0): 88, 86, 73, (427,79,0): 87, 85, 73, (427,80,0): 83, 79, 70, (427,81,0): 81, 77, 68, (427,82,0): 78, 74, 65, (427,83,0): 78, 74, 65, (427,84,0): 82, 75, 65, (427,85,0): 81, 74, 64, (427,86,0): 79, 72, 62, (427,87,0): 76, 70, 58, (427,88,0): 76, 68, 57, (427,89,0): 74, 66, 55, (427,90,0): 73, 63, 51, (427,91,0): 71, 61, 49, (427,92,0): 68, 59, 44, (427,93,0): 65, 56, 41, (427,94,0): 65, 53, 39, (427,95,0): 64, 52, 36, (427,96,0): 66, 53, 36, (427,97,0): 65, 52, 33, (427,98,0): 63, 50, 33, (427,99,0): 62, 49, 32, (427,100,0): 61, 48, 31, (427,101,0): 62, 49, 32, (427,102,0): 62, 49, 33, (427,103,0): 63, 50, 34, (427,104,0): 61, 47, 34, (427,105,0): 61, 47, 34, (427,106,0): 61, 47, 34, (427,107,0): 60, 46, 33, (427,108,0): 60, 46, 35, (427,109,0): 59, 45, 34, (427,110,0): 59, 45, 34, (427,111,0): 61, 44, 34, (427,112,0): 59, 41, 31, (427,113,0): 60, 40, 31, (427,114,0): 61, 41, 32, (427,115,0): 61, 41, 32, (427,116,0): 62, 42, 33, (427,117,0): 62, 42, 33, (427,118,0): 63, 43, 34, (427,119,0): 63, 43, 34, (427,120,0): 64, 44, 35, (427,121,0): 65, 45, 36, (427,122,0): 66, 46, 37, (427,123,0): 67, 47, 38, (427,124,0): 68, 48, 39, (427,125,0): 69, 49, 40, (427,126,0): 70, 50, 41, (427,127,0): 70, 50, 41, (427,128,0): 67, 46, 41, (427,129,0): 67, 46, 41, (427,130,0): 67, 46, 41, (427,131,0): 68, 47, 42, (427,132,0): 68, 47, 42, (427,133,0): 70, 49, 44, (427,134,0): 71, 50, 45, (427,135,0): 71, 50, 45, (427,136,0): 73, 52, 47, (427,137,0): 73, 52, 47, (427,138,0): 74, 53, 48, (427,139,0): 76, 55, 50, (427,140,0): 77, 56, 51, (427,141,0): 78, 57, 52, (427,142,0): 79, 58, 53, (427,143,0): 79, 58, 55, (427,144,0): 89, 65, 65, (427,145,0): 92, 68, 68, (427,146,0): 94, 73, 72, (427,147,0): 96, 75, 74, (427,148,0): 97, 76, 75, (427,149,0): 99, 78, 77, (427,150,0): 102, 82, 81, (427,151,0): 106, 86, 85, (427,152,0): 103, 85, 83, (427,153,0): 104, 86, 84, (427,154,0): 104, 86, 84, (427,155,0): 105, 87, 85, (427,156,0): 105, 90, 87, (427,157,0): 106, 91, 88, (427,158,0): 106, 91, 88, (427,159,0): 106, 92, 89, (427,160,0): 105, 94, 92, (427,161,0): 106, 95, 93, (427,162,0): 110, 96, 93, (427,163,0): 112, 98, 95, (427,164,0): 114, 99, 96, (427,165,0): 114, 99, 96, (427,166,0): 116, 98, 94, (427,167,0): 116, 98, 94, (427,168,0): 117, 96, 93, (427,169,0): 117, 96, 91, (427,170,0): 121, 97, 93, (427,171,0): 122, 98, 94, (427,172,0): 125, 100, 95, (427,173,0): 126, 101, 96, (427,174,0): 129, 101, 97, (427,175,0): 130, 102, 98, (427,176,0): 133, 104, 100, (427,177,0): 133, 104, 100, (427,178,0): 134, 105, 101, (427,179,0): 135, 106, 102, (427,180,0): 133, 105, 101, (427,181,0): 132, 104, 100, (427,182,0): 129, 104, 99, (427,183,0): 128, 103, 98, (427,184,0): 123, 98, 93, (427,185,0): 121, 96, 91, (427,186,0): 118, 95, 89, (427,187,0): 119, 96, 90, (427,188,0): 119, 99, 92, (427,189,0): 120, 100, 93, (427,190,0): 118, 98, 91, (427,191,0): 118, 95, 87, (427,192,0): 121, 97, 87, (427,193,0): 122, 95, 84, (427,194,0): 120, 91, 83, (427,195,0): 117, 88, 80, (427,196,0): 116, 83, 76, (427,197,0): 113, 80, 73, (427,198,0): 111, 76, 72, (427,199,0): 110, 75, 71, (427,200,0): 107, 72, 70, (427,201,0): 108, 73, 71, (427,202,0): 107, 73, 71, (427,203,0): 105, 74, 71, (427,204,0): 105, 74, 72, (427,205,0): 109, 79, 77, (427,206,0): 115, 87, 84, (427,207,0): 122, 92, 90, (427,208,0): 140, 105, 103, (427,209,0): 160, 125, 123, (427,210,0): 182, 151, 149, (427,211,0): 197, 171, 170, (427,212,0): 207, 185, 187, (427,213,0): 210, 195, 198, (427,214,0): 204, 195, 200, (427,215,0): 191, 190, 198, (427,216,0): 188, 192, 203, (427,217,0): 184, 192, 205, (427,218,0): 181, 193, 209, (427,219,0): 176, 191, 210, (427,220,0): 173, 191, 213, (427,221,0): 170, 190, 214, (427,222,0): 170, 190, 215, (427,223,0): 168, 189, 216, (427,224,0): 169, 188, 218, (427,225,0): 168, 189, 220, (427,226,0): 166, 186, 219, (427,227,0): 163, 186, 218, (427,228,0): 161, 184, 218, (427,229,0): 159, 183, 217, (427,230,0): 157, 181, 217, (427,231,0): 156, 182, 219, (427,232,0): 152, 180, 219, (427,233,0): 151, 181, 219, (427,234,0): 148, 180, 219, (427,235,0): 147, 179, 218, (427,236,0): 145, 178, 219, (427,237,0): 144, 177, 220, (427,238,0): 142, 177, 219, (427,239,0): 142, 176, 221, (427,240,0): 140, 172, 223, (427,241,0): 140, 171, 225, (427,242,0): 140, 173, 226, (427,243,0): 140, 173, 226, (427,244,0): 141, 174, 228, (427,245,0): 142, 175, 229, (427,246,0): 141, 176, 230, (427,247,0): 141, 176, 230, (427,248,0): 142, 179, 234, (427,249,0): 142, 179, 234, (427,250,0): 143, 179, 237, (427,251,0): 143, 179, 237, (427,252,0): 142, 181, 238, (427,253,0): 142, 181, 238, (427,254,0): 143, 182, 241, (427,255,0): 141, 183, 243, (427,256,0): 136, 184, 246, (427,257,0): 136, 186, 249, (427,258,0): 136, 186, 249, (427,259,0): 137, 187, 250, (427,260,0): 138, 188, 251, (427,261,0): 139, 189, 252, (427,262,0): 140, 190, 253, (427,263,0): 140, 190, 253, (427,264,0): 141, 191, 254, (427,265,0): 142, 192, 255, (427,266,0): 142, 192, 255, (427,267,0): 143, 193, 255, (427,268,0): 143, 193, 255, (427,269,0): 144, 194, 255, (427,270,0): 144, 194, 255, (427,271,0): 144, 194, 255, (427,272,0): 150, 196, 255, (427,273,0): 151, 195, 255, (427,274,0): 152, 196, 255, (427,275,0): 152, 196, 255, (427,276,0): 155, 196, 255, (427,277,0): 156, 197, 255, (427,278,0): 156, 197, 255, (427,279,0): 157, 198, 255, (427,280,0): 157, 197, 255, (427,281,0): 156, 196, 255, (427,282,0): 156, 194, 255, (427,283,0): 155, 193, 255, (427,284,0): 153, 191, 254, (427,285,0): 152, 190, 253, (427,286,0): 153, 188, 252, (427,287,0): 151, 189, 254, (427,288,0): 145, 183, 254, (427,289,0): 144, 184, 255, (427,290,0): 145, 185, 255, (427,291,0): 145, 185, 255, (427,292,0): 144, 187, 255, (427,293,0): 145, 188, 255, (427,294,0): 145, 188, 255, (427,295,0): 145, 188, 255, (427,296,0): 146, 189, 255, (427,297,0): 145, 190, 255, (427,298,0): 146, 190, 255, (427,299,0): 145, 190, 255, (427,300,0): 145, 190, 255, (427,301,0): 145, 191, 253, (427,302,0): 145, 191, 253, (427,303,0): 143, 191, 253, (427,304,0): 143, 191, 255, (427,305,0): 147, 192, 255, (427,306,0): 149, 188, 255, (427,307,0): 150, 182, 255, (427,308,0): 160, 182, 255, (427,309,0): 171, 182, 255, (427,310,0): 172, 174, 251, (427,311,0): 170, 163, 233, (427,312,0): 151, 137, 199, (427,313,0): 123, 103, 154, (427,314,0): 93, 68, 107, (427,315,0): 79, 53, 80, (427,316,0): 78, 50, 65, (427,317,0): 77, 48, 53, (427,318,0): 77, 47, 47, (427,319,0): 79, 49, 49, (427,320,0): 68, 41, 46, (427,321,0): 62, 37, 43, (427,322,0): 55, 29, 38, (427,323,0): 50, 27, 37, (427,324,0): 49, 25, 38, (427,325,0): 47, 25, 38, (427,326,0): 45, 22, 38, (427,327,0): 42, 21, 38, (427,328,0): 38, 20, 36, (427,329,0): 36, 19, 35, (427,330,0): 35, 18, 34, (427,331,0): 32, 18, 33, (427,332,0): 31, 17, 32, (427,333,0): 29, 17, 29, (427,334,0): 28, 16, 26, (427,335,0): 28, 16, 26, (427,336,0): 30, 17, 26, (427,337,0): 32, 16, 26, (427,338,0): 32, 16, 26, (427,339,0): 32, 16, 26, (427,340,0): 32, 16, 26, (427,341,0): 32, 16, 26, (427,342,0): 32, 16, 26, (427,343,0): 32, 16, 26, (427,344,0): 31, 15, 25, (427,345,0): 31, 15, 25, (427,346,0): 31, 15, 25, (427,347,0): 30, 14, 24, (427,348,0): 30, 14, 24, (427,349,0): 29, 13, 23, (427,350,0): 29, 13, 23, (427,351,0): 27, 14, 23, (427,352,0): 25, 15, 24, (427,353,0): 23, 16, 24, (427,354,0): 26, 16, 25, (427,355,0): 26, 16, 25, (427,356,0): 27, 17, 26, (427,357,0): 28, 16, 26, (427,358,0): 29, 17, 27, (427,359,0): 30, 17, 27, (427,360,0): 31, 18, 28, (427,361,0): 31, 18, 28, (427,362,0): 33, 17, 28, (427,363,0): 33, 17, 28, (427,364,0): 34, 16, 28, (427,365,0): 34, 16, 28, (427,366,0): 34, 16, 28, (427,367,0): 33, 17, 28, (427,368,0): 31, 17, 30, (427,369,0): 30, 18, 30, (427,370,0): 30, 18, 30, (427,371,0): 29, 17, 29, (427,372,0): 29, 17, 29, (427,373,0): 28, 16, 28, (427,374,0): 28, 16, 28, (427,375,0): 27, 15, 27, (427,376,0): 28, 16, 28, (427,377,0): 28, 16, 28, (427,378,0): 28, 16, 28, (427,379,0): 29, 17, 29, (427,380,0): 29, 17, 29, (427,381,0): 30, 18, 30, (427,382,0): 30, 18, 30, (427,383,0): 30, 18, 30, (427,384,0): 30, 18, 30, (427,385,0): 30, 18, 30, (427,386,0): 30, 18, 30, (427,387,0): 29, 17, 29, (427,388,0): 29, 17, 29, (427,389,0): 28, 16, 28, (427,390,0): 28, 16, 28, (427,391,0): 28, 16, 28, (427,392,0): 27, 15, 27, (427,393,0): 27, 15, 27, (427,394,0): 27, 15, 27, (427,395,0): 26, 14, 26, (427,396,0): 26, 14, 26, (427,397,0): 25, 13, 25, (427,398,0): 25, 13, 25, (427,399,0): 25, 13, 27, (427,400,0): 24, 11, 28, (427,401,0): 23, 12, 28, (427,402,0): 23, 12, 28, (427,403,0): 22, 11, 27, (427,404,0): 22, 11, 27, (427,405,0): 19, 11, 26, (427,406,0): 19, 11, 26, (427,407,0): 18, 12, 26, (427,408,0): 19, 13, 27, (427,409,0): 19, 13, 27, (427,410,0): 19, 13, 27, (427,411,0): 17, 13, 27, (427,412,0): 17, 13, 27, (427,413,0): 17, 13, 27, (427,414,0): 16, 12, 26, (427,415,0): 16, 12, 26, (427,416,0): 22, 16, 28, (427,417,0): 22, 16, 28, (427,418,0): 22, 16, 28, (427,419,0): 22, 16, 28, (427,420,0): 23, 17, 29, (427,421,0): 23, 17, 29, (427,422,0): 24, 18, 30, (427,423,0): 25, 19, 31, (427,424,0): 25, 19, 31, (427,425,0): 25, 19, 31, (427,426,0): 25, 19, 31, (427,427,0): 26, 20, 32, (427,428,0): 28, 22, 34, (427,429,0): 31, 25, 37, (427,430,0): 33, 27, 39, (427,431,0): 36, 28, 41, (427,432,0): 40, 29, 43, (427,433,0): 45, 33, 47, (427,434,0): 49, 37, 51, (427,435,0): 51, 39, 53, (427,436,0): 53, 41, 53, (427,437,0): 55, 43, 55, (427,438,0): 59, 47, 57, (427,439,0): 63, 52, 60, (427,440,0): 72, 61, 67, (427,441,0): 70, 59, 63, (427,442,0): 70, 59, 63, (427,443,0): 73, 63, 64, (427,444,0): 78, 68, 67, (427,445,0): 81, 71, 70, (427,446,0): 81, 71, 70, (427,447,0): 80, 70, 69, (427,448,0): 80, 66, 66, (427,449,0): 84, 70, 69, (427,450,0): 93, 79, 79, (427,451,0): 104, 90, 89, (427,452,0): 112, 98, 97, (427,453,0): 115, 101, 100, (427,454,0): 112, 98, 97, (427,455,0): 109, 95, 92, (427,456,0): 101, 87, 84, (427,457,0): 96, 83, 77, (427,458,0): 89, 76, 70, (427,459,0): 84, 71, 63, (427,460,0): 81, 68, 62, (427,461,0): 77, 64, 56, (427,462,0): 72, 59, 51, (427,463,0): 69, 56, 50, (427,464,0): 67, 52, 49, (427,465,0): 65, 50, 47, (427,466,0): 66, 52, 49, (427,467,0): 68, 57, 51, (427,468,0): 66, 59, 51, (427,469,0): 64, 60, 51, (427,470,0): 70, 68, 56, (427,471,0): 78, 78, 66, (427,472,0): 90, 91, 77, (427,473,0): 93, 95, 81, (427,474,0): 101, 102, 86, (427,475,0): 109, 110, 94, (427,476,0): 116, 117, 101, (427,477,0): 122, 121, 103, (427,478,0): 123, 122, 104, (427,479,0): 123, 122, 101, (427,480,0): 111, 112, 80, (427,481,0): 110, 110, 74, (427,482,0): 111, 107, 72, (427,483,0): 115, 106, 73, (427,484,0): 119, 105, 76, (427,485,0): 119, 104, 75, (427,486,0): 115, 99, 74, (427,487,0): 110, 94, 71, (427,488,0): 105, 88, 68, (427,489,0): 98, 76, 55, (427,490,0): 95, 63, 42, (427,491,0): 113, 60, 42, (427,492,0): 154, 73, 56, (427,493,0): 202, 92, 79, (427,494,0): 239, 103, 91, (427,495,0): 251, 108, 102, (427,496,0): 246, 112, 113, (427,497,0): 229, 110, 112, (427,498,0): 204, 104, 102, (427,499,0): 176, 98, 88, (427,500,0): 149, 91, 77, (427,501,0): 131, 88, 69, (427,502,0): 123, 86, 67, (427,503,0): 122, 85, 67, (427,504,0): 117, 73, 60, (427,505,0): 117, 67, 56, (427,506,0): 119, 60, 54, (427,507,0): 122, 61, 56, (427,508,0): 124, 65, 61, (427,509,0): 122, 64, 60, (427,510,0): 113, 60, 56, (427,511,0): 107, 54, 48, (427,512,0): 123, 64, 58, (427,513,0): 134, 69, 63, (427,514,0): 144, 68, 68, (427,515,0): 142, 60, 64, (427,516,0): 137, 50, 59, (427,517,0): 128, 42, 53, (427,518,0): 116, 36, 49, (427,519,0): 102, 32, 43, (427,520,0): 88, 31, 38, (427,521,0): 80, 29, 36, (427,522,0): 78, 29, 35, (427,523,0): 81, 30, 37, (427,524,0): 92, 32, 42, (427,525,0): 102, 34, 45, (427,526,0): 111, 35, 48, (427,527,0): 110, 32, 45, (427,528,0): 101, 28, 39, (427,529,0): 100, 30, 40, (427,530,0): 98, 32, 42, (427,531,0): 94, 31, 40, (427,532,0): 91, 30, 38, (427,533,0): 91, 30, 38, (427,534,0): 91, 28, 39, (427,535,0): 93, 25, 38, (427,536,0): 93, 20, 37, (427,537,0): 95, 18, 36, (427,538,0): 96, 17, 36, (427,539,0): 97, 16, 35, (427,540,0): 93, 14, 35, (427,541,0): 91, 12, 33, (427,542,0): 89, 14, 34, (427,543,0): 90, 17, 36, (427,544,0): 85, 17, 32, (427,545,0): 79, 15, 29, (427,546,0): 80, 18, 31, (427,547,0): 83, 25, 37, (427,548,0): 82, 31, 40, (427,549,0): 80, 33, 41, (427,550,0): 75, 34, 40, (427,551,0): 70, 34, 38, (427,552,0): 64, 28, 32, (427,553,0): 60, 25, 29, (427,554,0): 63, 28, 32, (427,555,0): 72, 36, 40, (427,556,0): 77, 38, 43, (427,557,0): 75, 34, 40, (427,558,0): 75, 34, 40, (427,559,0): 82, 37, 42, (427,560,0): 91, 43, 43, (427,561,0): 96, 40, 39, (427,562,0): 109, 45, 43, (427,563,0): 131, 56, 51, (427,564,0): 151, 61, 53, (427,565,0): 166, 59, 51, (427,566,0): 185, 61, 51, (427,567,0): 208, 65, 57, (427,568,0): 249, 90, 87, (427,569,0): 255, 98, 100, (427,570,0): 253, 89, 96, (427,571,0): 207, 62, 69, (427,572,0): 160, 45, 50, (427,573,0): 131, 49, 51, (427,574,0): 104, 56, 52, (427,575,0): 82, 53, 47, (427,576,0): 83, 53, 51, (427,577,0): 79, 53, 52, (427,578,0): 77, 51, 50, (427,579,0): 72, 51, 48, (427,580,0): 71, 50, 49, (427,581,0): 69, 51, 49, (427,582,0): 70, 52, 50, (427,583,0): 68, 53, 50, (427,584,0): 69, 55, 54, (427,585,0): 69, 55, 54, (427,586,0): 70, 54, 55, (427,587,0): 70, 54, 55, (427,588,0): 73, 54, 56, (427,589,0): 75, 56, 58, (427,590,0): 78, 57, 62, (427,591,0): 80, 59, 66, (427,592,0): 80, 60, 69, (427,593,0): 77, 60, 68, (427,594,0): 77, 60, 68, (427,595,0): 75, 60, 67, (427,596,0): 73, 60, 67, (427,597,0): 70, 59, 65, (427,598,0): 69, 58, 64, (427,599,0): 68, 59, 64, (428,0,0): 69, 81, 67, (428,1,0): 69, 81, 67, (428,2,0): 69, 81, 67, (428,3,0): 70, 82, 68, (428,4,0): 71, 82, 68, (428,5,0): 72, 83, 69, (428,6,0): 72, 83, 69, (428,7,0): 72, 83, 69, (428,8,0): 75, 83, 70, (428,9,0): 75, 83, 70, (428,10,0): 76, 82, 70, (428,11,0): 76, 82, 70, (428,12,0): 76, 82, 70, (428,13,0): 76, 82, 70, (428,14,0): 78, 81, 70, (428,15,0): 78, 81, 70, (428,16,0): 77, 82, 75, (428,17,0): 77, 82, 75, (428,18,0): 76, 81, 74, (428,19,0): 76, 81, 74, (428,20,0): 77, 80, 71, (428,21,0): 77, 80, 71, (428,22,0): 77, 78, 70, (428,23,0): 77, 79, 68, (428,24,0): 78, 80, 69, (428,25,0): 79, 81, 70, (428,26,0): 80, 80, 68, (428,27,0): 80, 80, 68, (428,28,0): 83, 81, 69, (428,29,0): 84, 82, 70, (428,30,0): 84, 82, 69, (428,31,0): 84, 82, 69, (428,32,0): 81, 82, 66, (428,33,0): 81, 82, 66, (428,34,0): 81, 82, 66, (428,35,0): 82, 83, 67, (428,36,0): 84, 82, 67, (428,37,0): 86, 83, 68, (428,38,0): 88, 82, 68, (428,39,0): 89, 81, 68, (428,40,0): 90, 80, 68, (428,41,0): 90, 80, 68, (428,42,0): 93, 79, 68, (428,43,0): 93, 79, 68, (428,44,0): 97, 80, 70, (428,45,0): 99, 82, 72, (428,46,0): 102, 84, 74, (428,47,0): 102, 86, 73, (428,48,0): 102, 89, 73, (428,49,0): 102, 90, 74, (428,50,0): 104, 92, 76, (428,51,0): 105, 93, 77, (428,52,0): 106, 94, 78, (428,53,0): 104, 95, 78, (428,54,0): 103, 94, 77, (428,55,0): 102, 95, 77, (428,56,0): 102, 95, 77, (428,57,0): 102, 95, 77, (428,58,0): 101, 94, 76, (428,59,0): 100, 95, 76, (428,60,0): 99, 94, 75, (428,61,0): 97, 94, 75, (428,62,0): 98, 93, 74, (428,63,0): 96, 93, 76, (428,64,0): 96, 94, 81, (428,65,0): 96, 94, 82, (428,66,0): 96, 94, 82, (428,67,0): 96, 94, 82, (428,68,0): 97, 95, 83, (428,69,0): 97, 95, 83, (428,70,0): 97, 95, 83, (428,71,0): 97, 95, 83, (428,72,0): 95, 93, 81, (428,73,0): 95, 93, 81, (428,74,0): 95, 93, 81, (428,75,0): 94, 92, 80, (428,76,0): 92, 90, 78, (428,77,0): 90, 88, 76, (428,78,0): 88, 86, 74, (428,79,0): 87, 85, 73, (428,80,0): 85, 81, 72, (428,81,0): 82, 78, 69, (428,82,0): 80, 76, 67, (428,83,0): 79, 75, 66, (428,84,0): 83, 76, 68, (428,85,0): 83, 76, 66, (428,86,0): 80, 73, 63, (428,87,0): 78, 71, 61, (428,88,0): 76, 68, 57, (428,89,0): 75, 67, 56, (428,90,0): 74, 64, 52, (428,91,0): 72, 62, 50, (428,92,0): 70, 60, 48, (428,93,0): 67, 57, 45, (428,94,0): 67, 55, 43, (428,95,0): 66, 54, 40, (428,96,0): 67, 54, 37, (428,97,0): 66, 53, 34, (428,98,0): 65, 52, 35, (428,99,0): 64, 51, 34, (428,100,0): 63, 50, 33, (428,101,0): 63, 50, 33, (428,102,0): 64, 51, 35, (428,103,0): 65, 52, 36, (428,104,0): 63, 49, 36, (428,105,0): 63, 49, 36, (428,106,0): 62, 48, 35, (428,107,0): 62, 48, 35, (428,108,0): 61, 47, 36, (428,109,0): 61, 47, 36, (428,110,0): 60, 46, 35, (428,111,0): 62, 45, 35, (428,112,0): 60, 42, 32, (428,113,0): 61, 41, 32, (428,114,0): 62, 42, 33, (428,115,0): 62, 42, 33, (428,116,0): 63, 43, 34, (428,117,0): 63, 43, 34, (428,118,0): 64, 44, 35, (428,119,0): 64, 44, 35, (428,120,0): 66, 46, 37, (428,121,0): 66, 46, 37, (428,122,0): 67, 47, 38, (428,123,0): 68, 48, 39, (428,124,0): 69, 49, 40, (428,125,0): 70, 50, 41, (428,126,0): 71, 51, 42, (428,127,0): 71, 51, 42, (428,128,0): 70, 49, 44, (428,129,0): 71, 50, 45, (428,130,0): 72, 51, 46, (428,131,0): 73, 52, 47, (428,132,0): 75, 54, 49, (428,133,0): 76, 55, 50, (428,134,0): 76, 55, 50, (428,135,0): 76, 55, 50, (428,136,0): 75, 54, 49, (428,137,0): 76, 55, 50, (428,138,0): 76, 55, 50, (428,139,0): 77, 56, 51, (428,140,0): 78, 57, 52, (428,141,0): 79, 58, 53, (428,142,0): 80, 59, 54, (428,143,0): 80, 59, 56, (428,144,0): 88, 64, 64, (428,145,0): 91, 66, 69, (428,146,0): 93, 71, 73, (428,147,0): 96, 74, 76, (428,148,0): 97, 75, 77, (428,149,0): 99, 77, 79, (428,150,0): 102, 82, 83, (428,151,0): 105, 85, 86, (428,152,0): 104, 86, 86, (428,153,0): 104, 86, 86, (428,154,0): 105, 87, 87, (428,155,0): 106, 88, 88, (428,156,0): 105, 89, 89, (428,157,0): 106, 90, 90, (428,158,0): 107, 91, 91, (428,159,0): 106, 92, 91, (428,160,0): 107, 96, 94, (428,161,0): 107, 97, 95, (428,162,0): 110, 99, 97, (428,163,0): 112, 101, 99, (428,164,0): 115, 101, 98, (428,165,0): 116, 101, 98, (428,166,0): 118, 100, 98, (428,167,0): 117, 99, 95, (428,168,0): 118, 97, 94, (428,169,0): 119, 98, 95, (428,170,0): 122, 98, 94, (428,171,0): 124, 100, 96, (428,172,0): 126, 101, 97, (428,173,0): 130, 102, 99, (428,174,0): 132, 103, 99, (428,175,0): 133, 104, 100, (428,176,0): 135, 105, 103, (428,177,0): 135, 105, 103, (428,178,0): 136, 106, 104, (428,179,0): 136, 106, 104, (428,180,0): 134, 106, 103, (428,181,0): 133, 105, 102, (428,182,0): 129, 104, 100, (428,183,0): 128, 103, 99, (428,184,0): 124, 99, 95, (428,185,0): 122, 97, 93, (428,186,0): 120, 96, 92, (428,187,0): 120, 96, 92, (428,188,0): 121, 100, 95, (428,189,0): 122, 101, 96, (428,190,0): 120, 99, 94, (428,191,0): 120, 97, 91, (428,192,0): 122, 98, 88, (428,193,0): 123, 96, 85, (428,194,0): 121, 93, 82, (428,195,0): 118, 90, 79, (428,196,0): 117, 84, 77, (428,197,0): 114, 81, 74, (428,198,0): 113, 78, 72, (428,199,0): 111, 76, 70, (428,200,0): 107, 72, 68, (428,201,0): 108, 73, 69, (428,202,0): 107, 73, 71, (428,203,0): 104, 73, 70, (428,204,0): 103, 72, 69, (428,205,0): 105, 76, 72, (428,206,0): 110, 82, 79, (428,207,0): 117, 86, 83, (428,208,0): 134, 96, 93, (428,209,0): 151, 111, 109, (428,210,0): 170, 135, 133, (428,211,0): 187, 157, 155, (428,212,0): 205, 179, 180, (428,213,0): 215, 196, 198, (428,214,0): 209, 198, 202, (428,215,0): 198, 193, 200, (428,216,0): 192, 192, 202, (428,217,0): 186, 192, 204, (428,218,0): 184, 193, 208, (428,219,0): 180, 193, 210, (428,220,0): 176, 193, 213, (428,221,0): 173, 191, 215, (428,222,0): 173, 190, 216, (428,223,0): 170, 190, 217, (428,224,0): 171, 188, 218, (428,225,0): 169, 188, 220, (428,226,0): 167, 186, 219, (428,227,0): 165, 185, 218, (428,228,0): 161, 184, 218, (428,229,0): 159, 183, 217, (428,230,0): 157, 181, 217, (428,231,0): 156, 182, 219, (428,232,0): 151, 179, 218, (428,233,0): 150, 180, 218, (428,234,0): 147, 179, 218, (428,235,0): 146, 178, 217, (428,236,0): 144, 177, 218, (428,237,0): 143, 176, 217, (428,238,0): 141, 176, 218, (428,239,0): 141, 175, 220, (428,240,0): 138, 171, 222, (428,241,0): 139, 172, 225, (428,242,0): 140, 173, 227, (428,243,0): 141, 174, 228, (428,244,0): 140, 175, 229, (428,245,0): 141, 176, 230, (428,246,0): 142, 177, 233, (428,247,0): 143, 178, 234, (428,248,0): 143, 179, 237, (428,249,0): 144, 180, 238, (428,250,0): 142, 181, 238, (428,251,0): 142, 181, 238, (428,252,0): 143, 182, 241, (428,253,0): 144, 183, 242, (428,254,0): 143, 183, 242, (428,255,0): 142, 184, 244, (428,256,0): 137, 185, 249, (428,257,0): 135, 186, 251, (428,258,0): 135, 186, 251, (428,259,0): 136, 187, 252, (428,260,0): 136, 187, 252, (428,261,0): 136, 187, 252, (428,262,0): 136, 187, 252, (428,263,0): 136, 187, 252, (428,264,0): 138, 189, 254, (428,265,0): 138, 189, 254, (428,266,0): 139, 190, 255, (428,267,0): 139, 190, 255, (428,268,0): 140, 191, 255, (428,269,0): 140, 191, 255, (428,270,0): 141, 192, 255, (428,271,0): 141, 192, 255, (428,272,0): 144, 194, 255, (428,273,0): 144, 194, 255, (428,274,0): 145, 195, 255, (428,275,0): 146, 196, 255, (428,276,0): 147, 195, 255, (428,277,0): 148, 196, 255, (428,278,0): 149, 197, 255, (428,279,0): 149, 197, 255, (428,280,0): 149, 195, 255, (428,281,0): 149, 195, 255, (428,282,0): 149, 193, 255, (428,283,0): 148, 192, 255, (428,284,0): 146, 190, 253, (428,285,0): 145, 189, 252, (428,286,0): 146, 187, 251, (428,287,0): 143, 187, 252, (428,288,0): 138, 182, 253, (428,289,0): 136, 183, 255, (428,290,0): 137, 184, 255, (428,291,0): 138, 185, 255, (428,292,0): 141, 185, 255, (428,293,0): 142, 186, 255, (428,294,0): 143, 187, 255, (428,295,0): 143, 188, 255, (428,296,0): 144, 189, 255, (428,297,0): 142, 190, 255, (428,298,0): 144, 189, 255, (428,299,0): 142, 190, 255, (428,300,0): 142, 190, 255, (428,301,0): 142, 190, 254, (428,302,0): 142, 190, 254, (428,303,0): 142, 190, 254, (428,304,0): 139, 189, 250, (428,305,0): 143, 191, 255, (428,306,0): 148, 188, 255, (428,307,0): 154, 184, 255, (428,308,0): 162, 181, 255, (428,309,0): 167, 174, 252, (428,310,0): 160, 156, 230, (428,311,0): 151, 139, 203, (428,312,0): 124, 106, 158, (428,313,0): 100, 75, 117, (428,314,0): 75, 49, 78, (428,315,0): 71, 44, 61, (428,316,0): 75, 45, 55, (428,317,0): 73, 44, 48, (428,318,0): 72, 43, 45, (428,319,0): 75, 46, 48, (428,320,0): 66, 39, 44, (428,321,0): 60, 35, 41, (428,322,0): 54, 28, 37, (428,323,0): 49, 26, 36, (428,324,0): 48, 24, 37, (428,325,0): 46, 24, 37, (428,326,0): 44, 21, 37, (428,327,0): 41, 20, 37, (428,328,0): 36, 17, 36, (428,329,0): 35, 18, 36, (428,330,0): 34, 17, 35, (428,331,0): 31, 17, 32, (428,332,0): 30, 16, 31, (428,333,0): 28, 16, 28, (428,334,0): 27, 15, 25, (428,335,0): 27, 15, 25, (428,336,0): 29, 16, 25, (428,337,0): 31, 15, 25, (428,338,0): 31, 15, 25, (428,339,0): 31, 15, 25, (428,340,0): 31, 15, 25, (428,341,0): 31, 15, 25, (428,342,0): 31, 15, 25, (428,343,0): 31, 15, 25, (428,344,0): 31, 15, 25, (428,345,0): 31, 15, 25, (428,346,0): 31, 15, 25, (428,347,0): 30, 14, 24, (428,348,0): 30, 14, 24, (428,349,0): 29, 13, 23, (428,350,0): 29, 13, 23, (428,351,0): 27, 14, 23, (428,352,0): 24, 14, 23, (428,353,0): 21, 16, 23, (428,354,0): 23, 16, 24, (428,355,0): 23, 16, 24, (428,356,0): 24, 17, 25, (428,357,0): 26, 16, 25, (428,358,0): 27, 17, 26, (428,359,0): 28, 16, 26, (428,360,0): 30, 18, 28, (428,361,0): 31, 18, 28, (428,362,0): 33, 17, 28, (428,363,0): 33, 17, 28, (428,364,0): 33, 17, 28, (428,365,0): 33, 17, 28, (428,366,0): 34, 16, 28, (428,367,0): 33, 17, 28, (428,368,0): 31, 17, 30, (428,369,0): 29, 17, 31, (428,370,0): 29, 17, 31, (428,371,0): 28, 16, 30, (428,372,0): 28, 16, 30, (428,373,0): 27, 15, 29, (428,374,0): 27, 15, 29, (428,375,0): 27, 15, 29, (428,376,0): 27, 15, 29, (428,377,0): 27, 15, 29, (428,378,0): 27, 15, 29, (428,379,0): 28, 16, 30, (428,380,0): 28, 16, 30, (428,381,0): 29, 17, 31, (428,382,0): 29, 17, 31, (428,383,0): 29, 17, 31, (428,384,0): 29, 17, 31, (428,385,0): 29, 17, 31, (428,386,0): 29, 17, 31, (428,387,0): 28, 16, 30, (428,388,0): 28, 16, 30, (428,389,0): 27, 15, 29, (428,390,0): 27, 15, 29, (428,391,0): 27, 15, 29, (428,392,0): 26, 14, 28, (428,393,0): 26, 14, 28, (428,394,0): 26, 14, 28, (428,395,0): 25, 13, 27, (428,396,0): 25, 13, 27, (428,397,0): 24, 12, 26, (428,398,0): 24, 12, 26, (428,399,0): 24, 12, 26, (428,400,0): 22, 11, 27, (428,401,0): 22, 11, 28, (428,402,0): 22, 11, 28, (428,403,0): 19, 10, 27, (428,404,0): 19, 10, 27, (428,405,0): 18, 9, 26, (428,406,0): 18, 9, 26, (428,407,0): 17, 10, 26, (428,408,0): 18, 11, 27, (428,409,0): 16, 12, 27, (428,410,0): 16, 12, 27, (428,411,0): 16, 12, 27, (428,412,0): 16, 12, 27, (428,413,0): 15, 13, 27, (428,414,0): 16, 14, 28, (428,415,0): 17, 13, 27, (428,416,0): 21, 15, 27, (428,417,0): 22, 16, 28, (428,418,0): 23, 17, 29, (428,419,0): 23, 17, 29, (428,420,0): 24, 18, 30, (428,421,0): 24, 18, 30, (428,422,0): 24, 18, 30, (428,423,0): 24, 18, 30, (428,424,0): 25, 19, 31, (428,425,0): 25, 19, 31, (428,426,0): 26, 20, 32, (428,427,0): 27, 21, 33, (428,428,0): 30, 24, 36, (428,429,0): 33, 27, 39, (428,430,0): 36, 30, 42, (428,431,0): 38, 30, 43, (428,432,0): 45, 34, 50, (428,433,0): 49, 36, 53, (428,434,0): 52, 39, 56, (428,435,0): 54, 42, 56, (428,436,0): 54, 42, 54, (428,437,0): 55, 43, 55, (428,438,0): 59, 47, 57, (428,439,0): 62, 51, 59, (428,440,0): 67, 56, 62, (428,441,0): 67, 56, 60, (428,442,0): 70, 59, 63, (428,443,0): 75, 65, 66, (428,444,0): 80, 70, 69, (428,445,0): 81, 71, 70, (428,446,0): 79, 69, 67, (428,447,0): 76, 66, 64, (428,448,0): 79, 65, 64, (428,449,0): 83, 69, 66, (428,450,0): 91, 77, 76, (428,451,0): 103, 89, 86, (428,452,0): 113, 99, 96, (428,453,0): 117, 103, 100, (428,454,0): 115, 101, 98, (428,455,0): 112, 99, 93, (428,456,0): 108, 95, 89, (428,457,0): 103, 90, 82, (428,458,0): 96, 83, 75, (428,459,0): 90, 77, 68, (428,460,0): 85, 72, 64, (428,461,0): 79, 66, 57, (428,462,0): 73, 60, 51, (428,463,0): 68, 55, 46, (428,464,0): 67, 54, 46, (428,465,0): 64, 51, 45, (428,466,0): 63, 52, 46, (428,467,0): 67, 58, 49, (428,468,0): 66, 59, 49, (428,469,0): 63, 59, 48, (428,470,0): 66, 64, 52, (428,471,0): 72, 72, 60, (428,472,0): 86, 87, 73, (428,473,0): 90, 91, 77, (428,474,0): 96, 97, 83, (428,475,0): 103, 104, 90, (428,476,0): 109, 107, 94, (428,477,0): 113, 110, 95, (428,478,0): 115, 112, 97, (428,479,0): 116, 113, 96, (428,480,0): 110, 110, 86, (428,481,0): 108, 108, 80, (428,482,0): 110, 106, 79, (428,483,0): 112, 105, 77, (428,484,0): 115, 103, 77, (428,485,0): 117, 101, 76, (428,486,0): 116, 98, 74, (428,487,0): 113, 95, 73, (428,488,0): 112, 94, 74, (428,489,0): 105, 83, 62, (428,490,0): 100, 69, 49, (428,491,0): 106, 61, 42, (428,492,0): 131, 62, 46, (428,493,0): 167, 75, 60, (428,494,0): 209, 95, 84, (428,495,0): 240, 108, 103, (428,496,0): 245, 101, 110, (428,497,0): 245, 108, 118, (428,498,0): 231, 112, 118, (428,499,0): 199, 104, 102, (428,500,0): 158, 88, 80, (428,501,0): 126, 77, 62, (428,502,0): 114, 77, 59, (428,503,0): 113, 82, 62, (428,504,0): 114, 81, 64, (428,505,0): 112, 72, 60, (428,506,0): 113, 64, 57, (428,507,0): 119, 64, 59, (428,508,0): 128, 68, 67, (428,509,0): 132, 72, 71, (428,510,0): 130, 70, 70, (428,511,0): 124, 66, 64, (428,512,0): 107, 50, 43, (428,513,0): 119, 59, 51, (428,514,0): 128, 60, 57, (428,515,0): 123, 51, 52, (428,516,0): 118, 43, 48, (428,517,0): 111, 40, 46, (428,518,0): 100, 35, 43, (428,519,0): 85, 28, 35, (428,520,0): 90, 39, 46, (428,521,0): 88, 38, 47, (428,522,0): 86, 35, 44, (428,523,0): 87, 34, 44, (428,524,0): 96, 36, 48, (428,525,0): 98, 35, 46, (428,526,0): 100, 32, 45, (428,527,0): 103, 31, 43, (428,528,0): 101, 23, 36, (428,529,0): 102, 24, 37, (428,530,0): 104, 28, 41, (428,531,0): 106, 32, 45, (428,532,0): 106, 34, 46, (428,533,0): 103, 31, 43, (428,534,0): 101, 27, 42, (428,535,0): 102, 25, 41, (428,536,0): 110, 29, 48, (428,537,0): 109, 26, 46, (428,538,0): 105, 20, 41, (428,539,0): 101, 18, 38, (428,540,0): 100, 18, 40, (428,541,0): 101, 22, 43, (428,542,0): 100, 25, 45, (428,543,0): 98, 25, 44, (428,544,0): 82, 13, 31, (428,545,0): 82, 15, 32, (428,546,0): 78, 14, 30, (428,547,0): 75, 17, 31, (428,548,0): 78, 26, 38, (428,549,0): 81, 34, 44, (428,550,0): 78, 37, 45, (428,551,0): 75, 38, 45, (428,552,0): 72, 35, 42, (428,553,0): 65, 30, 36, (428,554,0): 65, 28, 35, (428,555,0): 70, 33, 40, (428,556,0): 75, 35, 43, (428,557,0): 76, 35, 43, (428,558,0): 79, 36, 45, (428,559,0): 89, 40, 46, (428,560,0): 103, 42, 47, (428,561,0): 113, 43, 45, (428,562,0): 132, 50, 52, (428,563,0): 157, 61, 62, (428,564,0): 174, 66, 64, (428,565,0): 181, 61, 60, (428,566,0): 187, 57, 55, (428,567,0): 194, 56, 54, (428,568,0): 209, 66, 68, (428,569,0): 218, 75, 79, (428,570,0): 206, 71, 78, (428,571,0): 169, 49, 58, (428,572,0): 133, 38, 44, (428,573,0): 114, 44, 46, (428,574,0): 95, 51, 48, (428,575,0): 80, 51, 47, (428,576,0): 84, 54, 52, (428,577,0): 80, 54, 53, (428,578,0): 78, 52, 51, (428,579,0): 74, 53, 50, (428,580,0): 73, 52, 51, (428,581,0): 72, 54, 52, (428,582,0): 72, 54, 52, (428,583,0): 71, 56, 53, (428,584,0): 68, 54, 53, (428,585,0): 68, 54, 53, (428,586,0): 68, 52, 53, (428,587,0): 69, 53, 54, (428,588,0): 73, 54, 56, (428,589,0): 76, 57, 59, (428,590,0): 78, 57, 62, (428,591,0): 79, 58, 65, (428,592,0): 79, 59, 68, (428,593,0): 76, 59, 69, (428,594,0): 75, 58, 68, (428,595,0): 73, 57, 67, (428,596,0): 69, 56, 65, (428,597,0): 67, 56, 64, (428,598,0): 67, 56, 64, (428,599,0): 67, 56, 64, (429,0,0): 69, 81, 67, (429,1,0): 69, 81, 67, (429,2,0): 69, 81, 67, (429,3,0): 70, 82, 68, (429,4,0): 71, 82, 68, (429,5,0): 72, 83, 69, (429,6,0): 72, 83, 69, (429,7,0): 72, 83, 69, (429,8,0): 75, 83, 70, (429,9,0): 75, 83, 70, (429,10,0): 76, 82, 70, (429,11,0): 76, 82, 70, (429,12,0): 76, 82, 70, (429,13,0): 76, 82, 70, (429,14,0): 78, 81, 70, (429,15,0): 78, 81, 70, (429,16,0): 77, 82, 75, (429,17,0): 77, 82, 75, (429,18,0): 76, 81, 74, (429,19,0): 76, 81, 74, (429,20,0): 77, 80, 71, (429,21,0): 77, 80, 71, (429,22,0): 77, 78, 70, (429,23,0): 77, 78, 70, (429,24,0): 78, 80, 69, (429,25,0): 78, 80, 69, (429,26,0): 79, 79, 67, (429,27,0): 80, 80, 68, (429,28,0): 82, 80, 68, (429,29,0): 83, 81, 69, (429,30,0): 83, 81, 68, (429,31,0): 82, 83, 69, (429,32,0): 79, 82, 65, (429,33,0): 79, 82, 65, (429,34,0): 80, 81, 65, (429,35,0): 81, 82, 66, (429,36,0): 83, 81, 66, (429,37,0): 84, 82, 67, (429,38,0): 87, 81, 67, (429,39,0): 87, 81, 67, (429,40,0): 90, 80, 68, (429,41,0): 90, 80, 68, (429,42,0): 93, 79, 68, (429,43,0): 93, 79, 68, (429,44,0): 96, 79, 69, (429,45,0): 98, 81, 71, (429,46,0): 101, 83, 73, (429,47,0): 102, 84, 74, (429,48,0): 103, 87, 74, (429,49,0): 102, 89, 73, (429,50,0): 104, 91, 75, (429,51,0): 104, 92, 76, (429,52,0): 105, 93, 77, (429,53,0): 105, 93, 77, (429,54,0): 105, 93, 77, (429,55,0): 103, 94, 77, (429,56,0): 103, 94, 77, (429,57,0): 102, 95, 77, (429,58,0): 101, 94, 76, (429,59,0): 101, 94, 76, (429,60,0): 100, 93, 75, (429,61,0): 99, 94, 75, (429,62,0): 99, 94, 75, (429,63,0): 98, 92, 76, (429,64,0): 96, 92, 80, (429,65,0): 95, 93, 81, (429,66,0): 96, 94, 82, (429,67,0): 96, 94, 82, (429,68,0): 97, 95, 83, (429,69,0): 97, 95, 83, (429,70,0): 98, 96, 84, (429,71,0): 98, 96, 84, (429,72,0): 95, 93, 81, (429,73,0): 95, 93, 81, (429,74,0): 95, 93, 81, (429,75,0): 94, 92, 80, (429,76,0): 92, 90, 78, (429,77,0): 90, 88, 76, (429,78,0): 88, 86, 74, (429,79,0): 87, 85, 73, (429,80,0): 86, 82, 73, (429,81,0): 83, 79, 70, (429,82,0): 81, 77, 68, (429,83,0): 80, 76, 67, (429,84,0): 84, 77, 69, (429,85,0): 84, 77, 69, (429,86,0): 81, 74, 64, (429,87,0): 79, 72, 62, (429,88,0): 77, 69, 58, (429,89,0): 76, 68, 57, (429,90,0): 76, 66, 54, (429,91,0): 73, 63, 51, (429,92,0): 71, 61, 49, (429,93,0): 69, 59, 47, (429,94,0): 69, 57, 45, (429,95,0): 69, 57, 43, (429,96,0): 68, 55, 38, (429,97,0): 67, 54, 35, (429,98,0): 66, 53, 36, (429,99,0): 64, 51, 34, (429,100,0): 64, 51, 34, (429,101,0): 64, 51, 34, (429,102,0): 65, 52, 36, (429,103,0): 65, 52, 36, (429,104,0): 64, 50, 37, (429,105,0): 64, 50, 37, (429,106,0): 63, 49, 36, (429,107,0): 63, 49, 36, (429,108,0): 62, 48, 37, (429,109,0): 62, 48, 37, (429,110,0): 61, 47, 36, (429,111,0): 63, 46, 36, (429,112,0): 61, 43, 33, (429,113,0): 62, 42, 33, (429,114,0): 63, 43, 34, (429,115,0): 63, 43, 34, (429,116,0): 64, 44, 35, (429,117,0): 64, 44, 35, (429,118,0): 65, 45, 36, (429,119,0): 65, 45, 36, (429,120,0): 66, 46, 37, (429,121,0): 66, 46, 37, (429,122,0): 67, 47, 38, (429,123,0): 68, 48, 39, (429,124,0): 69, 49, 40, (429,125,0): 70, 50, 41, (429,126,0): 71, 51, 42, (429,127,0): 71, 51, 42, (429,128,0): 72, 51, 46, (429,129,0): 73, 52, 47, (429,130,0): 75, 54, 49, (429,131,0): 77, 56, 51, (429,132,0): 79, 58, 53, (429,133,0): 80, 59, 54, (429,134,0): 80, 59, 54, (429,135,0): 80, 59, 54, (429,136,0): 78, 57, 52, (429,137,0): 78, 57, 52, (429,138,0): 78, 57, 52, (429,139,0): 79, 58, 53, (429,140,0): 80, 59, 54, (429,141,0): 80, 59, 54, (429,142,0): 81, 60, 55, (429,143,0): 81, 60, 57, (429,144,0): 87, 63, 63, (429,145,0): 90, 65, 68, (429,146,0): 92, 70, 72, (429,147,0): 94, 72, 74, (429,148,0): 95, 73, 75, (429,149,0): 97, 75, 77, (429,150,0): 100, 80, 81, (429,151,0): 104, 84, 85, (429,152,0): 104, 86, 86, (429,153,0): 104, 86, 86, (429,154,0): 105, 87, 87, (429,155,0): 106, 88, 88, (429,156,0): 105, 89, 89, (429,157,0): 106, 90, 90, (429,158,0): 107, 91, 91, (429,159,0): 106, 92, 91, (429,160,0): 107, 96, 94, (429,161,0): 107, 97, 95, (429,162,0): 110, 99, 97, (429,163,0): 112, 101, 99, (429,164,0): 115, 101, 98, (429,165,0): 115, 101, 98, (429,166,0): 118, 100, 98, (429,167,0): 117, 99, 97, (429,168,0): 119, 98, 95, (429,169,0): 120, 99, 96, (429,170,0): 123, 99, 95, (429,171,0): 126, 101, 97, (429,172,0): 129, 101, 98, (429,173,0): 131, 103, 100, (429,174,0): 133, 104, 100, (429,175,0): 134, 105, 101, (429,176,0): 135, 105, 103, (429,177,0): 135, 105, 103, (429,178,0): 136, 106, 104, (429,179,0): 135, 105, 103, (429,180,0): 133, 105, 102, (429,181,0): 132, 104, 101, (429,182,0): 128, 103, 99, (429,183,0): 127, 102, 98, (429,184,0): 125, 100, 96, (429,185,0): 123, 98, 94, (429,186,0): 120, 96, 92, (429,187,0): 121, 97, 93, (429,188,0): 122, 101, 96, (429,189,0): 122, 101, 96, (429,190,0): 121, 100, 95, (429,191,0): 121, 98, 92, (429,192,0): 120, 96, 86, (429,193,0): 121, 94, 83, (429,194,0): 120, 92, 81, (429,195,0): 118, 88, 78, (429,196,0): 117, 84, 77, (429,197,0): 114, 81, 74, (429,198,0): 113, 78, 72, (429,199,0): 112, 77, 71, (429,200,0): 106, 71, 67, (429,201,0): 107, 72, 68, (429,202,0): 107, 73, 71, (429,203,0): 105, 71, 69, (429,204,0): 103, 72, 69, (429,205,0): 104, 75, 71, (429,206,0): 108, 80, 77, (429,207,0): 114, 83, 80, (429,208,0): 129, 90, 85, (429,209,0): 143, 102, 98, (429,210,0): 160, 120, 118, (429,211,0): 177, 143, 141, (429,212,0): 197, 169, 168, (429,213,0): 212, 192, 193, (429,214,0): 211, 199, 203, (429,215,0): 202, 195, 202, (429,216,0): 194, 192, 203, (429,217,0): 189, 193, 205, (429,218,0): 186, 193, 209, (429,219,0): 181, 194, 211, (429,220,0): 178, 193, 214, (429,221,0): 175, 191, 214, (429,222,0): 175, 191, 216, (429,223,0): 173, 190, 218, (429,224,0): 171, 188, 218, (429,225,0): 171, 187, 220, (429,226,0): 167, 186, 219, (429,227,0): 166, 185, 218, (429,228,0): 163, 183, 218, (429,229,0): 160, 183, 217, (429,230,0): 157, 181, 217, (429,231,0): 156, 182, 217, (429,232,0): 153, 179, 216, (429,233,0): 150, 180, 218, (429,234,0): 149, 178, 218, (429,235,0): 146, 178, 217, (429,236,0): 144, 177, 218, (429,237,0): 143, 176, 217, (429,238,0): 141, 176, 218, (429,239,0): 140, 174, 219, (429,240,0): 139, 172, 223, (429,241,0): 139, 172, 225, (429,242,0): 140, 173, 227, (429,243,0): 142, 175, 229, (429,244,0): 142, 177, 231, (429,245,0): 143, 178, 232, (429,246,0): 144, 179, 235, (429,247,0): 145, 180, 236, (429,248,0): 145, 181, 239, (429,249,0): 145, 181, 239, (429,250,0): 144, 183, 240, (429,251,0): 144, 183, 240, (429,252,0): 145, 184, 243, (429,253,0): 145, 184, 243, (429,254,0): 145, 185, 244, (429,255,0): 144, 185, 247, (429,256,0): 138, 186, 252, (429,257,0): 136, 187, 253, (429,258,0): 136, 187, 253, (429,259,0): 136, 187, 253, (429,260,0): 135, 186, 252, (429,261,0): 135, 186, 252, (429,262,0): 134, 185, 251, (429,263,0): 134, 185, 251, (429,264,0): 137, 188, 254, (429,265,0): 137, 188, 254, (429,266,0): 138, 189, 255, (429,267,0): 138, 189, 255, (429,268,0): 139, 190, 255, (429,269,0): 139, 190, 255, (429,270,0): 139, 190, 255, (429,271,0): 140, 191, 255, (429,272,0): 139, 193, 255, (429,273,0): 139, 193, 255, (429,274,0): 139, 193, 255, (429,275,0): 139, 193, 255, (429,276,0): 142, 193, 255, (429,277,0): 142, 193, 255, (429,278,0): 142, 193, 255, (429,279,0): 142, 193, 255, (429,280,0): 142, 191, 255, (429,281,0): 142, 192, 255, (429,282,0): 142, 190, 255, (429,283,0): 141, 189, 253, (429,284,0): 140, 188, 254, (429,285,0): 140, 188, 252, (429,286,0): 141, 186, 253, (429,287,0): 139, 187, 253, (429,288,0): 134, 183, 252, (429,289,0): 134, 184, 255, (429,290,0): 135, 183, 255, (429,291,0): 136, 184, 255, (429,292,0): 137, 185, 255, (429,293,0): 137, 186, 255, (429,294,0): 138, 187, 255, (429,295,0): 139, 186, 255, (429,296,0): 141, 188, 255, (429,297,0): 141, 188, 255, (429,298,0): 141, 188, 255, (429,299,0): 141, 189, 255, (429,300,0): 141, 189, 255, (429,301,0): 141, 189, 255, (429,302,0): 141, 189, 253, (429,303,0): 140, 190, 253, (429,304,0): 136, 187, 250, (429,305,0): 141, 191, 254, (429,306,0): 149, 189, 255, (429,307,0): 154, 184, 255, (429,308,0): 159, 177, 253, (429,309,0): 158, 162, 236, (429,310,0): 141, 134, 202, (429,311,0): 126, 111, 170, (429,312,0): 99, 76, 122, (429,313,0): 83, 56, 89, (429,314,0): 69, 40, 60, (429,315,0): 70, 40, 52, (429,316,0): 72, 43, 48, (429,317,0): 70, 41, 45, (429,318,0): 69, 40, 44, (429,319,0): 70, 44, 47, (429,320,0): 64, 39, 43, (429,321,0): 59, 34, 38, (429,322,0): 51, 28, 34, (429,323,0): 47, 24, 34, (429,324,0): 45, 23, 35, (429,325,0): 44, 21, 37, (429,326,0): 41, 20, 37, (429,327,0): 37, 18, 37, (429,328,0): 35, 18, 37, (429,329,0): 35, 18, 37, (429,330,0): 32, 18, 35, (429,331,0): 30, 17, 34, (429,332,0): 29, 17, 31, (429,333,0): 28, 16, 30, (429,334,0): 26, 16, 27, (429,335,0): 27, 15, 25, (429,336,0): 29, 16, 25, (429,337,0): 31, 15, 25, (429,338,0): 31, 15, 25, (429,339,0): 31, 15, 25, (429,340,0): 31, 15, 25, (429,341,0): 31, 15, 25, (429,342,0): 31, 15, 25, (429,343,0): 31, 15, 25, (429,344,0): 31, 15, 25, (429,345,0): 31, 15, 25, (429,346,0): 31, 15, 25, (429,347,0): 30, 14, 24, (429,348,0): 30, 14, 24, (429,349,0): 29, 13, 23, (429,350,0): 29, 13, 23, (429,351,0): 27, 14, 23, (429,352,0): 21, 14, 22, (429,353,0): 20, 15, 22, (429,354,0): 21, 16, 23, (429,355,0): 21, 16, 23, (429,356,0): 23, 16, 24, (429,357,0): 23, 16, 24, (429,358,0): 26, 16, 25, (429,359,0): 26, 16, 25, (429,360,0): 29, 17, 27, (429,361,0): 29, 17, 27, (429,362,0): 30, 17, 27, (429,363,0): 32, 16, 27, (429,364,0): 32, 16, 27, (429,365,0): 32, 16, 27, (429,366,0): 33, 15, 27, (429,367,0): 32, 16, 29, (429,368,0): 30, 16, 31, (429,369,0): 29, 17, 31, (429,370,0): 29, 17, 31, (429,371,0): 28, 16, 30, (429,372,0): 27, 15, 29, (429,373,0): 27, 15, 29, (429,374,0): 27, 15, 29, (429,375,0): 26, 14, 28, (429,376,0): 26, 14, 28, (429,377,0): 26, 14, 28, (429,378,0): 26, 14, 28, (429,379,0): 27, 15, 29, (429,380,0): 27, 15, 29, (429,381,0): 28, 16, 30, (429,382,0): 28, 16, 30, (429,383,0): 28, 16, 30, (429,384,0): 28, 16, 30, (429,385,0): 28, 16, 30, (429,386,0): 28, 16, 30, (429,387,0): 27, 15, 29, (429,388,0): 27, 15, 29, (429,389,0): 26, 14, 28, (429,390,0): 26, 14, 28, (429,391,0): 26, 14, 28, (429,392,0): 25, 13, 27, (429,393,0): 25, 13, 27, (429,394,0): 25, 13, 27, (429,395,0): 24, 12, 26, (429,396,0): 24, 12, 26, (429,397,0): 23, 11, 25, (429,398,0): 23, 11, 25, (429,399,0): 23, 11, 25, (429,400,0): 21, 10, 27, (429,401,0): 21, 10, 27, (429,402,0): 19, 10, 27, (429,403,0): 18, 9, 26, (429,404,0): 18, 9, 26, (429,405,0): 16, 9, 25, (429,406,0): 16, 9, 25, (429,407,0): 16, 9, 25, (429,408,0): 15, 11, 26, (429,409,0): 15, 11, 26, (429,410,0): 15, 11, 26, (429,411,0): 14, 12, 26, (429,412,0): 15, 13, 27, (429,413,0): 15, 13, 27, (429,414,0): 16, 14, 28, (429,415,0): 16, 14, 27, (429,416,0): 19, 15, 29, (429,417,0): 22, 16, 28, (429,418,0): 23, 17, 29, (429,419,0): 25, 19, 31, (429,420,0): 25, 19, 31, (429,421,0): 25, 19, 31, (429,422,0): 24, 18, 30, (429,423,0): 24, 18, 30, (429,424,0): 25, 19, 31, (429,425,0): 25, 19, 31, (429,426,0): 26, 20, 32, (429,427,0): 29, 23, 35, (429,428,0): 32, 26, 38, (429,429,0): 36, 30, 42, (429,430,0): 39, 33, 45, (429,431,0): 42, 34, 47, (429,432,0): 49, 38, 54, (429,433,0): 53, 40, 57, (429,434,0): 56, 43, 60, (429,435,0): 57, 44, 61, (429,436,0): 57, 45, 59, (429,437,0): 58, 46, 58, (429,438,0): 61, 49, 59, (429,439,0): 64, 53, 61, (429,440,0): 65, 54, 62, (429,441,0): 66, 55, 59, (429,442,0): 69, 58, 62, (429,443,0): 75, 65, 66, (429,444,0): 80, 70, 69, (429,445,0): 81, 71, 69, (429,446,0): 77, 67, 65, (429,447,0): 74, 65, 60, (429,448,0): 78, 64, 61, (429,449,0): 80, 66, 63, (429,450,0): 87, 73, 70, (429,451,0): 99, 86, 80, (429,452,0): 111, 98, 92, (429,453,0): 117, 104, 98, (429,454,0): 115, 102, 96, (429,455,0): 111, 98, 90, (429,456,0): 110, 97, 89, (429,457,0): 106, 93, 84, (429,458,0): 101, 88, 79, (429,459,0): 96, 83, 74, (429,460,0): 91, 78, 69, (429,461,0): 84, 72, 60, (429,462,0): 76, 64, 52, (429,463,0): 71, 59, 47, (429,464,0): 69, 56, 47, (429,465,0): 63, 53, 43, (429,466,0): 62, 53, 44, (429,467,0): 65, 58, 48, (429,468,0): 64, 60, 49, (429,469,0): 60, 58, 46, (429,470,0): 61, 61, 49, (429,471,0): 67, 67, 55, (429,472,0): 78, 79, 65, (429,473,0): 83, 84, 70, (429,474,0): 90, 91, 77, (429,475,0): 97, 95, 82, (429,476,0): 101, 97, 85, (429,477,0): 102, 98, 86, (429,478,0): 106, 99, 89, (429,479,0): 107, 101, 89, (429,480,0): 107, 105, 90, (429,481,0): 106, 105, 87, (429,482,0): 108, 103, 83, (429,483,0): 109, 103, 81, (429,484,0): 114, 102, 78, (429,485,0): 116, 100, 77, (429,486,0): 119, 98, 77, (429,487,0): 119, 97, 76, (429,488,0): 118, 95, 77, (429,489,0): 114, 89, 69, (429,490,0): 107, 78, 60, (429,491,0): 105, 68, 49, (429,492,0): 112, 59, 41, (429,493,0): 133, 64, 48, (429,494,0): 171, 83, 69, (429,495,0): 210, 99, 92, (429,496,0): 241, 100, 109, (429,497,0): 255, 109, 122, (429,498,0): 250, 120, 130, (429,499,0): 220, 114, 116, (429,500,0): 175, 94, 90, (429,501,0): 137, 79, 67, (429,502,0): 116, 77, 60, (429,503,0): 110, 81, 63, (429,504,0): 116, 89, 72, (429,505,0): 113, 81, 66, (429,506,0): 113, 73, 63, (429,507,0): 119, 72, 64, (429,508,0): 130, 77, 73, (429,509,0): 137, 79, 77, (429,510,0): 136, 78, 77, (429,511,0): 133, 75, 73, (429,512,0): 104, 49, 42, (429,513,0): 117, 60, 51, (429,514,0): 124, 60, 58, (429,515,0): 116, 50, 51, (429,516,0): 111, 45, 47, (429,517,0): 108, 46, 51, (429,518,0): 99, 44, 50, (429,519,0): 87, 36, 43, (429,520,0): 85, 35, 44, (429,521,0): 92, 41, 50, (429,522,0): 96, 38, 50, (429,523,0): 102, 38, 52, (429,524,0): 112, 44, 59, (429,525,0): 110, 42, 57, (429,526,0): 105, 37, 52, (429,527,0): 110, 38, 52, (429,528,0): 118, 35, 51, (429,529,0): 119, 32, 48, (429,530,0): 119, 35, 51, (429,531,0): 125, 42, 58, (429,532,0): 126, 45, 60, (429,533,0): 123, 42, 57, (429,534,0): 120, 37, 55, (429,535,0): 121, 36, 55, (429,536,0): 128, 40, 62, (429,537,0): 125, 36, 58, (429,538,0): 117, 28, 50, (429,539,0): 106, 21, 42, (429,540,0): 105, 21, 44, (429,541,0): 103, 26, 46, (429,542,0): 98, 25, 44, (429,543,0): 92, 21, 39, (429,544,0): 90, 19, 37, (429,545,0): 90, 23, 40, (429,546,0): 80, 16, 32, (429,547,0): 71, 13, 27, (429,548,0): 75, 21, 34, (429,549,0): 76, 29, 39, (429,550,0): 71, 30, 38, (429,551,0): 70, 33, 40, (429,552,0): 80, 43, 50, (429,553,0): 70, 35, 41, (429,554,0): 64, 27, 34, (429,555,0): 65, 28, 35, (429,556,0): 71, 30, 38, (429,557,0): 75, 32, 41, (429,558,0): 86, 40, 50, (429,559,0): 101, 48, 56, (429,560,0): 112, 42, 50, (429,561,0): 127, 45, 51, (429,562,0): 150, 54, 58, (429,563,0): 172, 63, 68, (429,564,0): 186, 65, 70, (429,565,0): 187, 61, 64, (429,566,0): 180, 52, 53, (429,567,0): 173, 47, 50, (429,568,0): 165, 44, 49, (429,569,0): 164, 49, 56, (429,570,0): 154, 49, 56, (429,571,0): 131, 40, 47, (429,572,0): 107, 35, 39, (429,573,0): 94, 40, 40, (429,574,0): 85, 47, 44, (429,575,0): 79, 50, 46, (429,576,0): 82, 54, 51, (429,577,0): 79, 53, 52, (429,578,0): 78, 52, 51, (429,579,0): 75, 54, 51, (429,580,0): 75, 54, 53, (429,581,0): 74, 56, 54, (429,582,0): 75, 57, 55, (429,583,0): 74, 59, 56, (429,584,0): 70, 56, 55, (429,585,0): 68, 54, 53, (429,586,0): 68, 52, 53, (429,587,0): 69, 53, 54, (429,588,0): 74, 55, 57, (429,589,0): 77, 58, 60, (429,590,0): 78, 57, 62, (429,591,0): 78, 57, 64, (429,592,0): 79, 58, 67, (429,593,0): 77, 57, 68, (429,594,0): 75, 55, 66, (429,595,0): 71, 54, 64, (429,596,0): 68, 52, 62, (429,597,0): 66, 53, 62, (429,598,0): 65, 52, 61, (429,599,0): 64, 53, 61, (430,0,0): 69, 81, 67, (430,1,0): 69, 81, 67, (430,2,0): 69, 81, 67, (430,3,0): 70, 82, 68, (430,4,0): 71, 82, 68, (430,5,0): 72, 83, 69, (430,6,0): 72, 83, 69, (430,7,0): 72, 83, 69, (430,8,0): 75, 83, 70, (430,9,0): 75, 83, 70, (430,10,0): 76, 82, 70, (430,11,0): 76, 82, 70, (430,12,0): 76, 82, 70, (430,13,0): 76, 82, 70, (430,14,0): 78, 81, 70, (430,15,0): 78, 81, 70, (430,16,0): 77, 82, 75, (430,17,0): 77, 82, 75, (430,18,0): 76, 81, 74, (430,19,0): 76, 81, 74, (430,20,0): 77, 80, 71, (430,21,0): 77, 80, 71, (430,22,0): 76, 79, 70, (430,23,0): 76, 79, 70, (430,24,0): 77, 79, 68, (430,25,0): 78, 80, 69, (430,26,0): 79, 79, 67, (430,27,0): 80, 80, 68, (430,28,0): 80, 80, 68, (430,29,0): 81, 81, 69, (430,30,0): 83, 81, 68, (430,31,0): 81, 82, 68, (430,32,0): 78, 81, 64, (430,33,0): 77, 81, 64, (430,34,0): 78, 81, 64, (430,35,0): 80, 81, 65, (430,36,0): 82, 80, 65, (430,37,0): 83, 81, 66, (430,38,0): 86, 80, 66, (430,39,0): 87, 81, 67, (430,40,0): 90, 80, 68, (430,41,0): 90, 80, 68, (430,42,0): 92, 78, 67, (430,43,0): 93, 79, 68, (430,44,0): 95, 78, 68, (430,45,0): 97, 80, 70, (430,46,0): 100, 82, 72, (430,47,0): 101, 83, 73, (430,48,0): 101, 85, 72, (430,49,0): 102, 86, 73, (430,50,0): 104, 88, 75, (430,51,0): 104, 90, 77, (430,52,0): 106, 92, 79, (430,53,0): 105, 93, 79, (430,54,0): 105, 93, 79, (430,55,0): 105, 93, 79, (430,56,0): 106, 94, 80, (430,57,0): 104, 95, 80, (430,58,0): 103, 94, 79, (430,59,0): 102, 95, 79, (430,60,0): 101, 94, 78, (430,61,0): 101, 94, 78, (430,62,0): 100, 93, 77, (430,63,0): 99, 93, 79, (430,64,0): 96, 92, 80, (430,65,0): 95, 93, 81, (430,66,0): 95, 93, 81, (430,67,0): 96, 94, 82, (430,68,0): 97, 95, 83, (430,69,0): 98, 96, 84, (430,70,0): 98, 96, 84, (430,71,0): 98, 96, 84, (430,72,0): 95, 93, 81, (430,73,0): 95, 93, 81, (430,74,0): 95, 93, 81, (430,75,0): 94, 92, 80, (430,76,0): 92, 90, 78, (430,77,0): 90, 88, 76, (430,78,0): 88, 86, 74, (430,79,0): 87, 85, 73, (430,80,0): 86, 82, 73, (430,81,0): 84, 79, 73, (430,82,0): 81, 77, 68, (430,83,0): 81, 77, 68, (430,84,0): 84, 77, 69, (430,85,0): 84, 77, 69, (430,86,0): 82, 75, 65, (430,87,0): 79, 72, 62, (430,88,0): 78, 70, 59, (430,89,0): 77, 69, 58, (430,90,0): 76, 66, 56, (430,91,0): 75, 65, 55, (430,92,0): 73, 63, 51, (430,93,0): 71, 61, 49, (430,94,0): 71, 59, 47, (430,95,0): 70, 58, 44, (430,96,0): 68, 55, 38, (430,97,0): 67, 54, 35, (430,98,0): 66, 53, 36, (430,99,0): 64, 51, 34, (430,100,0): 64, 51, 34, (430,101,0): 64, 51, 34, (430,102,0): 65, 52, 36, (430,103,0): 65, 52, 36, (430,104,0): 64, 50, 37, (430,105,0): 64, 50, 37, (430,106,0): 63, 49, 36, (430,107,0): 63, 49, 36, (430,108,0): 62, 48, 37, (430,109,0): 62, 48, 37, (430,110,0): 61, 47, 36, (430,111,0): 63, 46, 36, (430,112,0): 62, 44, 34, (430,113,0): 63, 43, 34, (430,114,0): 64, 44, 35, (430,115,0): 64, 44, 35, (430,116,0): 65, 45, 36, (430,117,0): 65, 45, 36, (430,118,0): 66, 46, 37, (430,119,0): 66, 46, 37, (430,120,0): 66, 46, 37, (430,121,0): 66, 46, 37, (430,122,0): 67, 47, 38, (430,123,0): 68, 48, 39, (430,124,0): 69, 49, 40, (430,125,0): 70, 50, 41, (430,126,0): 71, 51, 42, (430,127,0): 71, 51, 42, (430,128,0): 71, 50, 45, (430,129,0): 73, 52, 47, (430,130,0): 75, 54, 49, (430,131,0): 78, 57, 52, (430,132,0): 80, 59, 54, (430,133,0): 81, 60, 55, (430,134,0): 80, 59, 54, (430,135,0): 80, 59, 54, (430,136,0): 80, 59, 54, (430,137,0): 80, 59, 54, (430,138,0): 80, 59, 54, (430,139,0): 80, 59, 54, (430,140,0): 81, 60, 55, (430,141,0): 81, 60, 55, (430,142,0): 81, 60, 55, (430,143,0): 81, 60, 57, (430,144,0): 85, 61, 61, (430,145,0): 89, 64, 67, (430,146,0): 91, 69, 71, (430,147,0): 93, 71, 73, (430,148,0): 94, 72, 74, (430,149,0): 96, 74, 76, (430,150,0): 99, 79, 80, (430,151,0): 102, 82, 83, (430,152,0): 103, 85, 85, (430,153,0): 103, 85, 85, (430,154,0): 104, 86, 86, (430,155,0): 105, 87, 87, (430,156,0): 104, 88, 88, (430,157,0): 105, 89, 89, (430,158,0): 106, 90, 90, (430,159,0): 105, 91, 90, (430,160,0): 105, 95, 93, (430,161,0): 105, 97, 94, (430,162,0): 108, 98, 96, (430,163,0): 111, 100, 98, (430,164,0): 114, 100, 97, (430,165,0): 114, 100, 97, (430,166,0): 117, 99, 97, (430,167,0): 116, 98, 96, (430,168,0): 119, 98, 95, (430,169,0): 120, 99, 96, (430,170,0): 123, 99, 95, (430,171,0): 126, 101, 97, (430,172,0): 129, 101, 98, (430,173,0): 131, 103, 100, (430,174,0): 133, 104, 100, (430,175,0): 134, 105, 101, (430,176,0): 134, 104, 102, (430,177,0): 134, 104, 102, (430,178,0): 135, 105, 103, (430,179,0): 134, 104, 102, (430,180,0): 132, 104, 101, (430,181,0): 130, 102, 99, (430,182,0): 126, 101, 97, (430,183,0): 125, 100, 96, (430,184,0): 125, 100, 96, (430,185,0): 123, 98, 94, (430,186,0): 120, 96, 92, (430,187,0): 121, 97, 93, (430,188,0): 122, 101, 96, (430,189,0): 123, 102, 97, (430,190,0): 121, 100, 95, (430,191,0): 121, 98, 92, (430,192,0): 117, 93, 83, (430,193,0): 118, 91, 80, (430,194,0): 118, 90, 79, (430,195,0): 116, 86, 76, (430,196,0): 116, 83, 76, (430,197,0): 114, 81, 74, (430,198,0): 113, 78, 72, (430,199,0): 114, 77, 71, (430,200,0): 107, 69, 66, (430,201,0): 107, 72, 68, (430,202,0): 106, 72, 70, (430,203,0): 106, 72, 70, (430,204,0): 103, 72, 69, (430,205,0): 103, 74, 70, (430,206,0): 107, 79, 76, (430,207,0): 113, 82, 79, (430,208,0): 126, 85, 81, (430,209,0): 138, 95, 89, (430,210,0): 150, 109, 105, (430,211,0): 164, 129, 125, (430,212,0): 185, 157, 154, (430,213,0): 204, 183, 182, (430,214,0): 210, 195, 198, (430,215,0): 206, 197, 202, (430,216,0): 195, 194, 202, (430,217,0): 190, 194, 205, (430,218,0): 186, 193, 209, (430,219,0): 182, 193, 211, (430,220,0): 180, 193, 212, (430,221,0): 176, 192, 215, (430,222,0): 175, 191, 216, (430,223,0): 175, 191, 217, (430,224,0): 171, 188, 218, (430,225,0): 171, 187, 220, (430,226,0): 169, 185, 218, (430,227,0): 166, 185, 217, (430,228,0): 163, 183, 216, (430,229,0): 160, 183, 217, (430,230,0): 157, 181, 217, (430,231,0): 156, 182, 217, (430,232,0): 153, 179, 216, (430,233,0): 149, 179, 217, (430,234,0): 148, 177, 217, (430,235,0): 145, 177, 216, (430,236,0): 143, 176, 217, (430,237,0): 142, 175, 216, (430,238,0): 140, 175, 215, (430,239,0): 140, 174, 219, (430,240,0): 140, 173, 224, (430,241,0): 140, 173, 226, (430,242,0): 142, 175, 229, (430,243,0): 143, 176, 230, (430,244,0): 143, 178, 232, (430,245,0): 145, 180, 234, (430,246,0): 145, 182, 237, (430,247,0): 146, 183, 238, (430,248,0): 147, 183, 241, (430,249,0): 147, 183, 241, (430,250,0): 146, 185, 242, (430,251,0): 146, 185, 242, (430,252,0): 146, 186, 245, (430,253,0): 146, 186, 245, (430,254,0): 147, 187, 246, (430,255,0): 146, 187, 249, (430,256,0): 140, 188, 254, (430,257,0): 139, 188, 255, (430,258,0): 138, 187, 255, (430,259,0): 137, 186, 255, (430,260,0): 136, 185, 254, (430,261,0): 135, 184, 253, (430,262,0): 135, 184, 253, (430,263,0): 134, 183, 252, (430,264,0): 137, 186, 255, (430,265,0): 138, 187, 255, (430,266,0): 138, 187, 255, (430,267,0): 139, 188, 255, (430,268,0): 139, 188, 255, (430,269,0): 140, 189, 255, (430,270,0): 140, 189, 255, (430,271,0): 139, 190, 255, (430,272,0): 136, 191, 255, (430,273,0): 134, 192, 255, (430,274,0): 136, 191, 255, (430,275,0): 136, 191, 255, (430,276,0): 135, 190, 255, (430,277,0): 135, 190, 254, (430,278,0): 136, 189, 255, (430,279,0): 136, 190, 254, (430,280,0): 137, 188, 254, (430,281,0): 137, 188, 253, (430,282,0): 137, 188, 254, (430,283,0): 137, 188, 253, (430,284,0): 137, 186, 253, (430,285,0): 137, 186, 252, (430,286,0): 137, 186, 253, (430,287,0): 137, 186, 253, (430,288,0): 134, 184, 255, (430,289,0): 132, 184, 255, (430,290,0): 134, 184, 255, (430,291,0): 135, 185, 255, (430,292,0): 135, 185, 255, (430,293,0): 135, 185, 255, (430,294,0): 136, 186, 255, (430,295,0): 137, 186, 255, (430,296,0): 139, 188, 255, (430,297,0): 139, 188, 255, (430,298,0): 139, 188, 255, (430,299,0): 139, 188, 255, (430,300,0): 140, 188, 254, (430,301,0): 140, 188, 254, (430,302,0): 140, 188, 254, (430,303,0): 139, 189, 252, (430,304,0): 137, 191, 253, (430,305,0): 142, 192, 255, (430,306,0): 147, 187, 255, (430,307,0): 150, 180, 252, (430,308,0): 151, 167, 242, (430,309,0): 144, 147, 218, (430,310,0): 124, 113, 179, (430,311,0): 104, 86, 138, (430,312,0): 82, 56, 95, (430,313,0): 78, 48, 72, (430,314,0): 72, 41, 56, (430,315,0): 69, 40, 45, (430,316,0): 68, 39, 43, (430,317,0): 67, 38, 42, (430,318,0): 65, 38, 43, (430,319,0): 65, 40, 46, (430,320,0): 62, 37, 41, (430,321,0): 55, 33, 36, (430,322,0): 49, 26, 32, (430,323,0): 45, 22, 30, (430,324,0): 43, 21, 33, (430,325,0): 42, 19, 35, (430,326,0): 40, 19, 36, (430,327,0): 36, 17, 36, (430,328,0): 35, 18, 37, (430,329,0): 35, 18, 37, (430,330,0): 32, 17, 36, (430,331,0): 30, 17, 34, (430,332,0): 29, 17, 31, (430,333,0): 27, 16, 30, (430,334,0): 26, 16, 27, (430,335,0): 27, 15, 25, (430,336,0): 28, 15, 24, (430,337,0): 30, 14, 24, (430,338,0): 30, 14, 24, (430,339,0): 30, 14, 24, (430,340,0): 30, 14, 24, (430,341,0): 30, 14, 24, (430,342,0): 30, 14, 24, (430,343,0): 30, 14, 24, (430,344,0): 31, 15, 25, (430,345,0): 31, 15, 25, (430,346,0): 31, 15, 25, (430,347,0): 30, 14, 24, (430,348,0): 30, 14, 24, (430,349,0): 29, 13, 23, (430,350,0): 29, 13, 23, (430,351,0): 27, 14, 23, (430,352,0): 20, 13, 21, (430,353,0): 17, 14, 23, (430,354,0): 18, 15, 24, (430,355,0): 18, 15, 24, (430,356,0): 21, 15, 25, (430,357,0): 22, 14, 25, (430,358,0): 25, 15, 26, (430,359,0): 25, 15, 26, (430,360,0): 29, 17, 29, (430,361,0): 29, 17, 29, (430,362,0): 30, 16, 29, (430,363,0): 30, 16, 29, (430,364,0): 32, 16, 29, (430,365,0): 32, 16, 29, (430,366,0): 33, 15, 29, (430,367,0): 32, 16, 29, (430,368,0): 30, 16, 31, (430,369,0): 28, 16, 30, (430,370,0): 28, 16, 30, (430,371,0): 28, 16, 30, (430,372,0): 27, 15, 29, (430,373,0): 27, 15, 29, (430,374,0): 26, 14, 28, (430,375,0): 26, 14, 28, (430,376,0): 25, 13, 27, (430,377,0): 25, 13, 27, (430,378,0): 25, 13, 27, (430,379,0): 26, 14, 28, (430,380,0): 26, 14, 28, (430,381,0): 27, 15, 29, (430,382,0): 27, 15, 29, (430,383,0): 28, 16, 30, (430,384,0): 28, 16, 30, (430,385,0): 27, 15, 29, (430,386,0): 27, 15, 29, (430,387,0): 26, 14, 28, (430,388,0): 26, 14, 28, (430,389,0): 25, 13, 27, (430,390,0): 25, 13, 27, (430,391,0): 25, 13, 27, (430,392,0): 25, 13, 27, (430,393,0): 24, 12, 26, (430,394,0): 24, 12, 26, (430,395,0): 23, 11, 25, (430,396,0): 23, 11, 25, (430,397,0): 22, 10, 24, (430,398,0): 22, 10, 24, (430,399,0): 22, 10, 24, (430,400,0): 21, 10, 27, (430,401,0): 18, 9, 26, (430,402,0): 18, 9, 26, (430,403,0): 17, 8, 25, (430,404,0): 16, 9, 25, (430,405,0): 15, 8, 24, (430,406,0): 15, 8, 24, (430,407,0): 13, 9, 24, (430,408,0): 13, 9, 24, (430,409,0): 14, 10, 25, (430,410,0): 13, 11, 25, (430,411,0): 14, 12, 26, (430,412,0): 15, 13, 27, (430,413,0): 14, 13, 27, (430,414,0): 15, 14, 28, (430,415,0): 16, 14, 27, (430,416,0): 19, 15, 29, (430,417,0): 20, 17, 28, (430,418,0): 22, 19, 30, (430,419,0): 24, 21, 32, (430,420,0): 24, 21, 32, (430,421,0): 24, 21, 32, (430,422,0): 23, 20, 31, (430,423,0): 22, 19, 30, (430,424,0): 23, 20, 31, (430,425,0): 24, 21, 32, (430,426,0): 26, 23, 34, (430,427,0): 28, 25, 36, (430,428,0): 32, 29, 40, (430,429,0): 36, 33, 44, (430,430,0): 40, 37, 48, (430,431,0): 44, 38, 50, (430,432,0): 52, 41, 57, (430,433,0): 56, 43, 61, (430,434,0): 59, 46, 63, (430,435,0): 60, 47, 64, (430,436,0): 60, 48, 62, (430,437,0): 61, 49, 61, (430,438,0): 64, 52, 62, (430,439,0): 67, 56, 64, (430,440,0): 67, 56, 64, (430,441,0): 67, 56, 60, (430,442,0): 68, 57, 61, (430,443,0): 72, 62, 63, (430,444,0): 77, 67, 66, (430,445,0): 78, 68, 66, (430,446,0): 77, 67, 65, (430,447,0): 74, 65, 60, (430,448,0): 76, 62, 59, (430,449,0): 77, 64, 58, (430,450,0): 83, 70, 64, (430,451,0): 95, 82, 74, (430,452,0): 108, 95, 87, (430,453,0): 115, 102, 94, (430,454,0): 113, 100, 92, (430,455,0): 109, 96, 87, (430,456,0): 107, 94, 85, (430,457,0): 105, 93, 81, (430,458,0): 103, 91, 79, (430,459,0): 101, 89, 77, (430,460,0): 98, 86, 74, (430,461,0): 92, 80, 66, (430,462,0): 83, 71, 57, (430,463,0): 77, 65, 53, (430,464,0): 68, 58, 46, (430,465,0): 63, 53, 41, (430,466,0): 62, 54, 43, (430,467,0): 65, 59, 47, (430,468,0): 64, 60, 48, (430,469,0): 60, 58, 45, (430,470,0): 59, 60, 46, (430,471,0): 63, 64, 50, (430,472,0): 69, 69, 57, (430,473,0): 76, 76, 64, (430,474,0): 86, 84, 72, (430,475,0): 92, 90, 78, (430,476,0): 95, 91, 80, (430,477,0): 97, 90, 80, (430,478,0): 100, 91, 84, (430,479,0): 100, 93, 85, (430,480,0): 108, 101, 93, (430,481,0): 108, 101, 93, (430,482,0): 108, 102, 90, (430,483,0): 110, 101, 84, (430,484,0): 116, 101, 82, (430,485,0): 118, 100, 78, (430,486,0): 124, 99, 79, (430,487,0): 127, 99, 78, (430,488,0): 121, 94, 75, (430,489,0): 116, 89, 70, (430,490,0): 110, 85, 65, (430,491,0): 105, 78, 59, (430,492,0): 102, 67, 47, (430,493,0): 107, 64, 45, (430,494,0): 131, 75, 58, (430,495,0): 167, 85, 74, (430,496,0): 225, 98, 105, (430,497,0): 245, 103, 117, (430,498,0): 245, 115, 127, (430,499,0): 229, 116, 122, (430,500,0): 195, 107, 106, (430,501,0): 162, 95, 87, (430,502,0): 135, 91, 78, (430,503,0): 123, 92, 74, (430,504,0): 121, 95, 78, (430,505,0): 117, 91, 76, (430,506,0): 118, 86, 75, (430,507,0): 122, 84, 75, (430,508,0): 130, 85, 80, (430,509,0): 133, 85, 81, (430,510,0): 131, 81, 80, (430,511,0): 128, 79, 75, (430,512,0): 122, 72, 63, (430,513,0): 134, 80, 70, (430,514,0): 135, 76, 72, (430,515,0): 120, 59, 58, (430,516,0): 111, 49, 52, (430,517,0): 108, 52, 55, (430,518,0): 101, 50, 55, (430,519,0): 90, 41, 47, (430,520,0): 84, 31, 41, (430,521,0): 101, 40, 55, (430,522,0): 113, 40, 59, (430,523,0): 124, 42, 64, (430,524,0): 134, 50, 73, (430,525,0): 130, 46, 69, (430,526,0): 115, 40, 60, (430,527,0): 121, 42, 61, (430,528,0): 136, 47, 65, (430,529,0): 132, 38, 56, (430,530,0): 129, 36, 55, (430,531,0): 133, 42, 60, (430,532,0): 133, 44, 62, (430,533,0): 129, 40, 58, (430,534,0): 129, 37, 58, (430,535,0): 131, 39, 60, (430,536,0): 132, 38, 62, (430,537,0): 129, 35, 59, (430,538,0): 121, 29, 52, (430,539,0): 111, 23, 45, (430,540,0): 106, 24, 46, (430,541,0): 102, 27, 47, (430,542,0): 92, 21, 39, (430,543,0): 78, 9, 27, (430,544,0): 92, 21, 39, (430,545,0): 96, 27, 45, (430,546,0): 84, 20, 36, (430,547,0): 71, 13, 27, (430,548,0): 75, 21, 34, (430,549,0): 74, 27, 37, (430,550,0): 65, 24, 32, (430,551,0): 62, 25, 32, (430,552,0): 71, 34, 41, (430,553,0): 65, 30, 36, (430,554,0): 64, 27, 34, (430,555,0): 68, 31, 38, (430,556,0): 73, 32, 40, (430,557,0): 76, 33, 42, (430,558,0): 86, 40, 50, (430,559,0): 103, 47, 56, (430,560,0): 117, 44, 51, (430,561,0): 136, 47, 53, (430,562,0): 159, 52, 62, (430,563,0): 179, 59, 69, (430,564,0): 189, 62, 71, (430,565,0): 187, 57, 65, (430,566,0): 170, 49, 56, (430,567,0): 153, 44, 49, (430,568,0): 136, 41, 45, (430,569,0): 123, 41, 47, (430,570,0): 111, 40, 46, (430,571,0): 102, 43, 49, (430,572,0): 91, 42, 45, (430,573,0): 79, 41, 40, (430,574,0): 74, 45, 41, (430,575,0): 75, 50, 45, (430,576,0): 79, 51, 48, (430,577,0): 77, 51, 50, (430,578,0): 76, 50, 49, (430,579,0): 73, 52, 49, (430,580,0): 75, 54, 53, (430,581,0): 74, 56, 54, (430,582,0): 76, 58, 56, (430,583,0): 75, 60, 57, (430,584,0): 72, 58, 57, (430,585,0): 69, 55, 54, (430,586,0): 68, 52, 53, (430,587,0): 69, 53, 54, (430,588,0): 75, 56, 58, (430,589,0): 77, 58, 60, (430,590,0): 78, 57, 62, (430,591,0): 77, 56, 63, (430,592,0): 79, 58, 67, (430,593,0): 77, 55, 67, (430,594,0): 75, 53, 65, (430,595,0): 71, 51, 62, (430,596,0): 67, 50, 60, (430,597,0): 65, 49, 59, (430,598,0): 66, 50, 60, (430,599,0): 64, 51, 60, (431,0,0): 70, 81, 67, (431,1,0): 70, 81, 67, (431,2,0): 70, 81, 67, (431,3,0): 71, 82, 68, (431,4,0): 71, 82, 68, (431,5,0): 72, 83, 69, (431,6,0): 74, 82, 69, (431,7,0): 74, 82, 69, (431,8,0): 75, 83, 70, (431,9,0): 75, 83, 70, (431,10,0): 76, 82, 70, (431,11,0): 76, 82, 70, (431,12,0): 76, 82, 70, (431,13,0): 76, 82, 70, (431,14,0): 78, 81, 70, (431,15,0): 78, 81, 70, (431,16,0): 77, 83, 73, (431,17,0): 77, 83, 73, (431,18,0): 76, 81, 74, (431,19,0): 76, 82, 72, (431,20,0): 77, 80, 71, (431,21,0): 77, 80, 71, (431,22,0): 76, 79, 70, (431,23,0): 76, 79, 70, (431,24,0): 76, 79, 68, (431,25,0): 77, 79, 68, (431,26,0): 78, 80, 67, (431,27,0): 78, 80, 67, (431,28,0): 79, 81, 68, (431,29,0): 79, 81, 68, (431,30,0): 81, 81, 69, (431,31,0): 81, 82, 68, (431,32,0): 77, 79, 65, (431,33,0): 78, 80, 66, (431,34,0): 78, 80, 66, (431,35,0): 79, 80, 66, (431,36,0): 82, 80, 67, (431,37,0): 83, 81, 68, (431,38,0): 84, 80, 68, (431,39,0): 86, 80, 66, (431,40,0): 89, 81, 68, (431,41,0): 90, 80, 68, (431,42,0): 91, 79, 67, (431,43,0): 91, 79, 67, (431,44,0): 93, 79, 68, (431,45,0): 95, 81, 70, (431,46,0): 98, 81, 71, (431,47,0): 99, 82, 72, (431,48,0): 98, 84, 71, (431,49,0): 100, 86, 73, (431,50,0): 102, 88, 75, (431,51,0): 104, 90, 77, (431,52,0): 104, 92, 78, (431,53,0): 105, 93, 79, (431,54,0): 105, 93, 79, (431,55,0): 102, 93, 78, (431,56,0): 106, 94, 80, (431,57,0): 104, 95, 80, (431,58,0): 104, 95, 80, (431,59,0): 103, 94, 79, (431,60,0): 102, 95, 79, (431,61,0): 101, 94, 78, (431,62,0): 101, 94, 78, (431,63,0): 100, 94, 78, (431,64,0): 95, 91, 79, (431,65,0): 95, 93, 80, (431,66,0): 95, 93, 81, (431,67,0): 96, 94, 81, (431,68,0): 97, 95, 83, (431,69,0): 98, 96, 83, (431,70,0): 99, 95, 84, (431,71,0): 100, 96, 84, (431,72,0): 96, 92, 81, (431,73,0): 96, 92, 80, (431,74,0): 96, 92, 81, (431,75,0): 95, 91, 79, (431,76,0): 93, 89, 78, (431,77,0): 91, 87, 75, (431,78,0): 89, 85, 74, (431,79,0): 88, 84, 73, (431,80,0): 87, 83, 74, (431,81,0): 84, 80, 71, (431,82,0): 84, 77, 67, (431,83,0): 84, 77, 67, (431,84,0): 85, 78, 68, (431,85,0): 85, 78, 68, (431,86,0): 82, 75, 65, (431,87,0): 80, 74, 62, (431,88,0): 78, 70, 59, (431,89,0): 77, 69, 58, (431,90,0): 77, 67, 57, (431,91,0): 75, 65, 55, (431,92,0): 73, 63, 51, (431,93,0): 71, 61, 49, (431,94,0): 70, 60, 48, (431,95,0): 71, 59, 45, (431,96,0): 68, 55, 38, (431,97,0): 67, 54, 37, (431,98,0): 68, 52, 36, (431,99,0): 64, 51, 34, (431,100,0): 66, 50, 34, (431,101,0): 64, 51, 34, (431,102,0): 67, 51, 36, (431,103,0): 65, 52, 36, (431,104,0): 66, 50, 37, (431,105,0): 64, 50, 37, (431,106,0): 65, 49, 36, (431,107,0): 63, 49, 36, (431,108,0): 64, 48, 35, (431,109,0): 62, 48, 35, (431,110,0): 63, 46, 36, (431,111,0): 63, 46, 36, (431,112,0): 62, 44, 34, (431,113,0): 64, 44, 35, (431,114,0): 64, 44, 35, (431,115,0): 65, 45, 36, (431,116,0): 65, 45, 36, (431,117,0): 66, 46, 37, (431,118,0): 66, 46, 37, (431,119,0): 66, 46, 37, (431,120,0): 65, 45, 36, (431,121,0): 66, 46, 37, (431,122,0): 66, 46, 37, (431,123,0): 67, 47, 38, (431,124,0): 69, 49, 40, (431,125,0): 70, 50, 41, (431,126,0): 70, 50, 41, (431,127,0): 71, 51, 42, (431,128,0): 69, 48, 43, (431,129,0): 71, 50, 45, (431,130,0): 74, 53, 48, (431,131,0): 77, 56, 51, (431,132,0): 79, 58, 53, (431,133,0): 80, 59, 54, (431,134,0): 79, 58, 53, (431,135,0): 79, 58, 53, (431,136,0): 81, 60, 55, (431,137,0): 81, 60, 55, (431,138,0): 81, 60, 55, (431,139,0): 81, 60, 55, (431,140,0): 81, 60, 55, (431,141,0): 82, 61, 56, (431,142,0): 82, 61, 56, (431,143,0): 82, 61, 58, (431,144,0): 82, 61, 60, (431,145,0): 86, 65, 64, (431,146,0): 90, 68, 70, (431,147,0): 91, 71, 72, (431,148,0): 93, 71, 73, (431,149,0): 94, 74, 75, (431,150,0): 98, 78, 79, (431,151,0): 100, 82, 82, (431,152,0): 102, 84, 84, (431,153,0): 101, 85, 85, (431,154,0): 104, 86, 86, (431,155,0): 103, 87, 87, (431,156,0): 104, 88, 88, (431,157,0): 104, 90, 89, (431,158,0): 105, 89, 90, (431,159,0): 105, 91, 90, (431,160,0): 104, 94, 92, (431,161,0): 105, 95, 93, (431,162,0): 107, 97, 95, (431,163,0): 110, 99, 97, (431,164,0): 113, 99, 96, (431,165,0): 113, 99, 96, (431,166,0): 114, 99, 96, (431,167,0): 116, 98, 96, (431,168,0): 118, 98, 97, (431,169,0): 120, 99, 96, (431,170,0): 123, 99, 97, (431,171,0): 125, 101, 99, (431,172,0): 127, 101, 100, (431,173,0): 129, 103, 102, (431,174,0): 132, 104, 101, (431,175,0): 133, 105, 102, (431,176,0): 132, 104, 101, (431,177,0): 133, 105, 102, (431,178,0): 133, 105, 102, (431,179,0): 132, 104, 101, (431,180,0): 129, 104, 100, (431,181,0): 127, 102, 98, (431,182,0): 125, 100, 96, (431,183,0): 123, 98, 94, (431,184,0): 125, 100, 96, (431,185,0): 123, 98, 94, (431,186,0): 120, 96, 92, (431,187,0): 121, 97, 93, (431,188,0): 124, 100, 96, (431,189,0): 122, 101, 96, (431,190,0): 123, 99, 95, (431,191,0): 121, 98, 92, (431,192,0): 115, 91, 81, (431,193,0): 116, 89, 78, (431,194,0): 116, 88, 77, (431,195,0): 115, 85, 75, (431,196,0): 113, 83, 75, (431,197,0): 113, 80, 73, (431,198,0): 113, 78, 72, (431,199,0): 112, 77, 71, (431,200,0): 105, 70, 64, (431,201,0): 106, 71, 67, (431,202,0): 106, 73, 68, (431,203,0): 106, 73, 68, (431,204,0): 105, 72, 67, (431,205,0): 105, 74, 69, (431,206,0): 108, 79, 75, (431,207,0): 113, 82, 77, (431,208,0): 122, 85, 79, (431,209,0): 131, 92, 85, (431,210,0): 141, 104, 98, (431,211,0): 155, 122, 117, (431,212,0): 177, 147, 145, (431,213,0): 200, 176, 176, (431,214,0): 212, 192, 194, (431,215,0): 210, 195, 200, (431,216,0): 201, 191, 200, (431,217,0): 196, 193, 204, (431,218,0): 191, 193, 208, (431,219,0): 187, 192, 211, (431,220,0): 184, 192, 211, (431,221,0): 180, 192, 214, (431,222,0): 177, 192, 215, (431,223,0): 177, 191, 217, (431,224,0): 172, 187, 216, (431,225,0): 172, 187, 218, (431,226,0): 170, 185, 216, (431,227,0): 168, 185, 215, (431,228,0): 164, 183, 215, (431,229,0): 162, 182, 215, (431,230,0): 157, 181, 215, (431,231,0): 156, 182, 217, (431,232,0): 150, 178, 215, (431,233,0): 149, 179, 217, (431,234,0): 146, 178, 217, (431,235,0): 144, 177, 218, (431,236,0): 143, 176, 217, (431,237,0): 142, 175, 218, (431,238,0): 140, 175, 217, (431,239,0): 140, 174, 219, (431,240,0): 140, 174, 222, (431,241,0): 141, 174, 225, (431,242,0): 142, 175, 226, (431,243,0): 144, 177, 230, (431,244,0): 144, 180, 232, (431,245,0): 146, 181, 235, (431,246,0): 147, 182, 236, (431,247,0): 147, 184, 239, (431,248,0): 148, 184, 242, (431,249,0): 148, 184, 242, (431,250,0): 147, 186, 245, (431,251,0): 147, 186, 245, (431,252,0): 147, 187, 248, (431,253,0): 147, 187, 248, (431,254,0): 148, 188, 249, (431,255,0): 147, 188, 252, (431,256,0): 141, 189, 255, (431,257,0): 140, 189, 255, (431,258,0): 139, 188, 255, (431,259,0): 138, 187, 254, (431,260,0): 136, 185, 252, (431,261,0): 135, 184, 251, (431,262,0): 135, 184, 253, (431,263,0): 133, 183, 252, (431,264,0): 136, 186, 255, (431,265,0): 137, 187, 255, (431,266,0): 137, 187, 255, (431,267,0): 137, 187, 255, (431,268,0): 138, 188, 255, (431,269,0): 139, 189, 255, (431,270,0): 139, 189, 255, (431,271,0): 137, 190, 255, (431,272,0): 134, 191, 255, (431,273,0): 132, 192, 255, (431,274,0): 132, 191, 255, (431,275,0): 131, 191, 254, (431,276,0): 131, 188, 255, (431,277,0): 131, 189, 253, (431,278,0): 130, 187, 254, (431,279,0): 130, 188, 252, (431,280,0): 132, 187, 254, (431,281,0): 132, 187, 252, (431,282,0): 132, 187, 254, (431,283,0): 132, 187, 252, (431,284,0): 133, 186, 254, (431,285,0): 134, 187, 253, (431,286,0): 134, 187, 255, (431,287,0): 134, 187, 255, (431,288,0): 132, 186, 255, (431,289,0): 132, 186, 255, (431,290,0): 133, 185, 255, (431,291,0): 133, 185, 255, (431,292,0): 135, 185, 255, (431,293,0): 135, 185, 255, (431,294,0): 136, 185, 254, (431,295,0): 136, 185, 254, (431,296,0): 139, 188, 255, (431,297,0): 139, 188, 255, (431,298,0): 139, 188, 255, (431,299,0): 139, 188, 255, (431,300,0): 139, 188, 255, (431,301,0): 140, 187, 255, (431,302,0): 140, 187, 255, (431,303,0): 140, 187, 255, (431,304,0): 142, 193, 255, (431,305,0): 145, 193, 255, (431,306,0): 148, 185, 255, (431,307,0): 151, 174, 244, (431,308,0): 151, 160, 229, (431,309,0): 141, 136, 200, (431,310,0): 116, 101, 156, (431,311,0): 94, 71, 115, (431,312,0): 76, 50, 79, (431,313,0): 78, 49, 67, (431,314,0): 73, 46, 53, (431,315,0): 67, 41, 44, (431,316,0): 62, 36, 39, (431,317,0): 61, 36, 40, (431,318,0): 62, 36, 45, (431,319,0): 62, 39, 47, (431,320,0): 58, 37, 42, (431,321,0): 53, 32, 37, (431,322,0): 46, 25, 32, (431,323,0): 43, 22, 31, (431,324,0): 41, 21, 32, (431,325,0): 40, 19, 34, (431,326,0): 36, 18, 34, (431,327,0): 34, 16, 32, (431,328,0): 36, 19, 37, (431,329,0): 35, 18, 36, (431,330,0): 33, 19, 36, (431,331,0): 31, 18, 35, (431,332,0): 29, 17, 31, (431,333,0): 28, 16, 28, (431,334,0): 28, 16, 28, (431,335,0): 27, 15, 25, (431,336,0): 28, 15, 25, (431,337,0): 30, 14, 24, (431,338,0): 30, 14, 24, (431,339,0): 30, 14, 24, (431,340,0): 30, 14, 24, (431,341,0): 30, 14, 24, (431,342,0): 30, 14, 24, (431,343,0): 30, 14, 24, (431,344,0): 31, 15, 25, (431,345,0): 31, 15, 25, (431,346,0): 31, 15, 25, (431,347,0): 30, 14, 24, (431,348,0): 30, 14, 24, (431,349,0): 29, 13, 23, (431,350,0): 29, 13, 23, (431,351,0): 27, 14, 24, (431,352,0): 20, 12, 23, (431,353,0): 19, 13, 23, (431,354,0): 19, 13, 23, (431,355,0): 20, 14, 24, (431,356,0): 20, 14, 24, (431,357,0): 22, 14, 25, (431,358,0): 24, 14, 25, (431,359,0): 25, 15, 26, (431,360,0): 28, 18, 29, (431,361,0): 29, 17, 29, (431,362,0): 29, 17, 29, (431,363,0): 29, 17, 29, (431,364,0): 30, 16, 29, (431,365,0): 30, 16, 29, (431,366,0): 30, 16, 29, (431,367,0): 30, 16, 29, (431,368,0): 29, 17, 31, (431,369,0): 28, 16, 30, (431,370,0): 28, 16, 30, (431,371,0): 27, 15, 29, (431,372,0): 27, 15, 29, (431,373,0): 26, 14, 28, (431,374,0): 26, 14, 28, (431,375,0): 26, 14, 28, (431,376,0): 24, 12, 26, (431,377,0): 25, 13, 27, (431,378,0): 25, 13, 27, (431,379,0): 25, 13, 27, (431,380,0): 26, 14, 28, (431,381,0): 27, 15, 29, (431,382,0): 27, 15, 29, (431,383,0): 27, 15, 29, (431,384,0): 27, 15, 29, (431,385,0): 26, 15, 29, (431,386,0): 27, 14, 31, (431,387,0): 25, 14, 28, (431,388,0): 25, 12, 29, (431,389,0): 24, 13, 27, (431,390,0): 25, 12, 29, (431,391,0): 23, 12, 26, (431,392,0): 24, 11, 28, (431,393,0): 23, 12, 26, (431,394,0): 24, 11, 28, (431,395,0): 22, 11, 25, (431,396,0): 22, 9, 26, (431,397,0): 21, 10, 24, (431,398,0): 22, 9, 26, (431,399,0): 20, 9, 25, (431,400,0): 17, 10, 26, (431,401,0): 17, 10, 26, (431,402,0): 17, 10, 26, (431,403,0): 16, 9, 25, (431,404,0): 13, 9, 24, (431,405,0): 13, 9, 24, (431,406,0): 12, 10, 24, (431,407,0): 11, 9, 23, (431,408,0): 12, 10, 24, (431,409,0): 12, 10, 24, (431,410,0): 13, 11, 25, (431,411,0): 13, 12, 26, (431,412,0): 14, 13, 27, (431,413,0): 14, 13, 27, (431,414,0): 15, 14, 28, (431,415,0): 15, 15, 27, (431,416,0): 18, 16, 29, (431,417,0): 20, 17, 28, (431,418,0): 22, 19, 30, (431,419,0): 24, 21, 32, (431,420,0): 25, 22, 33, (431,421,0): 24, 21, 32, (431,422,0): 23, 20, 31, (431,423,0): 22, 19, 30, (431,424,0): 24, 21, 32, (431,425,0): 25, 22, 33, (431,426,0): 26, 23, 34, (431,427,0): 29, 26, 37, (431,428,0): 33, 30, 41, (431,429,0): 38, 35, 46, (431,430,0): 44, 38, 50, (431,431,0): 46, 40, 54, (431,432,0): 54, 43, 60, (431,433,0): 57, 46, 63, (431,434,0): 61, 48, 66, (431,435,0): 62, 49, 66, (431,436,0): 62, 49, 66, (431,437,0): 63, 51, 65, (431,438,0): 66, 54, 66, (431,439,0): 69, 57, 67, (431,440,0): 71, 60, 68, (431,441,0): 69, 58, 64, (431,442,0): 67, 56, 60, (431,443,0): 69, 59, 60, (431,444,0): 73, 63, 62, (431,445,0): 76, 66, 64, (431,446,0): 77, 67, 65, (431,447,0): 76, 67, 62, (431,448,0): 72, 63, 58, (431,449,0): 72, 63, 58, (431,450,0): 78, 69, 62, (431,451,0): 90, 81, 74, (431,452,0): 104, 93, 87, (431,453,0): 111, 100, 94, (431,454,0): 109, 99, 90, (431,455,0): 104, 94, 85, (431,456,0): 103, 90, 81, (431,457,0): 102, 89, 80, (431,458,0): 103, 90, 81, (431,459,0): 104, 92, 80, (431,460,0): 103, 91, 79, (431,461,0): 99, 85, 72, (431,462,0): 90, 76, 65, (431,463,0): 82, 70, 56, (431,464,0): 68, 59, 44, (431,465,0): 62, 55, 39, (431,466,0): 61, 55, 39, (431,467,0): 63, 60, 45, (431,468,0): 63, 61, 46, (431,469,0): 57, 58, 44, (431,470,0): 57, 58, 44, (431,471,0): 61, 61, 49, (431,472,0): 63, 63, 53, (431,473,0): 73, 70, 61, (431,474,0): 83, 80, 71, (431,475,0): 90, 85, 79, (431,476,0): 92, 87, 81, (431,477,0): 95, 88, 82, (431,478,0): 96, 89, 83, (431,479,0): 96, 91, 87, (431,480,0): 105, 101, 98, (431,481,0): 105, 102, 97, (431,482,0): 109, 102, 92, (431,483,0): 111, 102, 87, (431,484,0): 115, 102, 83, (431,485,0): 120, 102, 80, (431,486,0): 127, 102, 82, (431,487,0): 129, 102, 83, (431,488,0): 122, 93, 75, (431,489,0): 115, 88, 71, (431,490,0): 109, 86, 68, (431,491,0): 106, 83, 65, (431,492,0): 101, 76, 56, (431,493,0): 96, 67, 49, (431,494,0): 108, 69, 54, (431,495,0): 135, 72, 65, (431,496,0): 190, 87, 91, (431,497,0): 209, 87, 98, (431,498,0): 215, 98, 107, (431,499,0): 214, 105, 111, (431,500,0): 199, 107, 108, (431,501,0): 177, 102, 97, (431,502,0): 151, 97, 85, (431,503,0): 132, 95, 77, (431,504,0): 125, 98, 79, (431,505,0): 121, 98, 80, (431,506,0): 123, 95, 81, (431,507,0): 126, 94, 83, (431,508,0): 129, 92, 84, (431,509,0): 128, 87, 83, (431,510,0): 123, 81, 82, (431,511,0): 121, 77, 76, (431,512,0): 128, 81, 75, (431,513,0): 137, 87, 80, (431,514,0): 137, 77, 76, (431,515,0): 119, 57, 58, (431,516,0): 108, 46, 49, (431,517,0): 109, 48, 55, (431,518,0): 101, 45, 54, (431,519,0): 92, 36, 47, (431,520,0): 98, 37, 52, (431,521,0): 117, 48, 66, (431,522,0): 131, 48, 68, (431,523,0): 137, 48, 68, (431,524,0): 147, 54, 73, (431,525,0): 136, 45, 63, (431,526,0): 116, 31, 50, (431,527,0): 117, 33, 49, (431,528,0): 136, 42, 60, (431,529,0): 127, 30, 49, (431,530,0): 117, 24, 43, (431,531,0): 115, 26, 46, (431,532,0): 113, 28, 47, (431,533,0): 109, 26, 46, (431,534,0): 109, 26, 46, (431,535,0): 114, 31, 51, (431,536,0): 115, 30, 51, (431,537,0): 119, 30, 50, (431,538,0): 120, 28, 49, (431,539,0): 118, 26, 47, (431,540,0): 120, 33, 52, (431,541,0): 120, 37, 55, (431,542,0): 109, 31, 47, (431,543,0): 92, 18, 35, (431,544,0): 88, 17, 35, (431,545,0): 94, 27, 44, (431,546,0): 84, 22, 37, (431,547,0): 74, 13, 28, (431,548,0): 80, 24, 37, (431,549,0): 78, 26, 38, (431,550,0): 69, 19, 30, (431,551,0): 63, 20, 29, (431,552,0): 57, 17, 25, (431,553,0): 58, 21, 28, (431,554,0): 66, 29, 36, (431,555,0): 80, 39, 47, (431,556,0): 85, 39, 50, (431,557,0): 85, 35, 47, (431,558,0): 89, 35, 49, (431,559,0): 101, 37, 51, (431,560,0): 125, 43, 57, (431,561,0): 139, 46, 57, (431,562,0): 157, 51, 63, (431,563,0): 170, 58, 70, (431,564,0): 178, 62, 75, (431,565,0): 172, 60, 72, (431,566,0): 155, 53, 67, (431,567,0): 135, 47, 61, (431,568,0): 121, 47, 62, (431,569,0): 103, 41, 54, (431,570,0): 92, 40, 52, (431,571,0): 91, 48, 57, (431,572,0): 86, 50, 54, (431,573,0): 73, 43, 43, (431,574,0): 70, 42, 39, (431,575,0): 74, 49, 45, (431,576,0): 76, 48, 47, (431,577,0): 76, 48, 47, (431,578,0): 74, 48, 47, (431,579,0): 74, 50, 48, (431,580,0): 73, 52, 51, (431,581,0): 75, 54, 53, (431,582,0): 77, 57, 56, (431,583,0): 77, 59, 59, (431,584,0): 77, 59, 59, (431,585,0): 72, 56, 57, (431,586,0): 71, 52, 54, (431,587,0): 72, 53, 57, (431,588,0): 75, 56, 60, (431,589,0): 79, 58, 63, (431,590,0): 78, 57, 64, (431,591,0): 76, 55, 62, (431,592,0): 79, 58, 67, (431,593,0): 77, 55, 67, (431,594,0): 74, 52, 64, (431,595,0): 70, 50, 61, (431,596,0): 68, 48, 59, (431,597,0): 65, 48, 58, (431,598,0): 66, 49, 59, (431,599,0): 65, 49, 59, (432,0,0): 74, 82, 69, (432,1,0): 74, 82, 69, (432,2,0): 74, 82, 69, (432,3,0): 73, 81, 68, (432,4,0): 73, 81, 68, (432,5,0): 72, 80, 67, (432,6,0): 73, 79, 67, (432,7,0): 72, 78, 66, (432,8,0): 74, 80, 68, (432,9,0): 74, 80, 68, (432,10,0): 74, 80, 68, (432,11,0): 74, 80, 68, (432,12,0): 74, 80, 68, (432,13,0): 74, 80, 68, (432,14,0): 74, 80, 68, (432,15,0): 74, 80, 68, (432,16,0): 73, 79, 67, (432,17,0): 73, 79, 67, (432,18,0): 73, 79, 69, (432,19,0): 74, 80, 68, (432,20,0): 74, 80, 68, (432,21,0): 75, 81, 69, (432,22,0): 75, 81, 69, (432,23,0): 75, 81, 69, (432,24,0): 74, 80, 68, (432,25,0): 76, 79, 68, (432,26,0): 76, 79, 68, (432,27,0): 76, 79, 68, (432,28,0): 76, 79, 68, (432,29,0): 76, 79, 68, (432,30,0): 76, 79, 68, (432,31,0): 76, 80, 66, (432,32,0): 75, 77, 64, (432,33,0): 76, 76, 64, (432,34,0): 77, 77, 65, (432,35,0): 81, 79, 67, (432,36,0): 82, 80, 68, (432,37,0): 84, 82, 70, (432,38,0): 86, 82, 71, (432,39,0): 88, 82, 70, (432,40,0): 86, 80, 68, (432,41,0): 88, 80, 69, (432,42,0): 88, 80, 67, (432,43,0): 89, 81, 68, (432,44,0): 91, 81, 69, (432,45,0): 92, 82, 70, (432,46,0): 93, 83, 71, (432,47,0): 94, 84, 72, (432,48,0): 93, 84, 69, (432,49,0): 94, 85, 68, (432,50,0): 96, 87, 70, (432,51,0): 97, 88, 71, (432,52,0): 99, 90, 73, (432,53,0): 101, 92, 75, (432,54,0): 103, 94, 77, (432,55,0): 102, 95, 77, (432,56,0): 101, 92, 75, (432,57,0): 100, 93, 75, (432,58,0): 100, 93, 75, (432,59,0): 100, 93, 75, (432,60,0): 100, 93, 75, (432,61,0): 100, 93, 75, (432,62,0): 100, 93, 75, (432,63,0): 99, 93, 77, (432,64,0): 96, 93, 78, (432,65,0): 96, 93, 78, (432,66,0): 96, 92, 80, (432,67,0): 96, 93, 78, (432,68,0): 96, 92, 80, (432,69,0): 96, 93, 78, (432,70,0): 98, 92, 80, (432,71,0): 98, 92, 78, (432,72,0): 97, 91, 79, (432,73,0): 97, 91, 77, (432,74,0): 97, 89, 78, (432,75,0): 95, 87, 74, (432,76,0): 93, 85, 74, (432,77,0): 92, 84, 71, (432,78,0): 92, 82, 72, (432,79,0): 90, 82, 71, (432,80,0): 89, 81, 70, (432,81,0): 87, 81, 69, (432,82,0): 86, 78, 67, (432,83,0): 85, 77, 66, (432,84,0): 84, 76, 65, (432,85,0): 85, 77, 66, (432,86,0): 87, 79, 68, (432,87,0): 88, 80, 67, (432,88,0): 83, 75, 62, (432,89,0): 82, 74, 61, (432,90,0): 81, 73, 60, (432,91,0): 79, 71, 58, (432,92,0): 76, 68, 55, (432,93,0): 73, 65, 52, (432,94,0): 69, 61, 48, (432,95,0): 68, 59, 44, (432,96,0): 72, 56, 41, (432,97,0): 70, 54, 39, (432,98,0): 70, 52, 38, (432,99,0): 67, 51, 36, (432,100,0): 67, 49, 35, (432,101,0): 65, 49, 34, (432,102,0): 67, 49, 35, (432,103,0): 66, 50, 35, (432,104,0): 64, 46, 32, (432,105,0): 63, 47, 32, (432,106,0): 64, 46, 32, (432,107,0): 63, 47, 32, (432,108,0): 64, 46, 32, (432,109,0): 63, 47, 32, (432,110,0): 64, 46, 34, (432,111,0): 64, 46, 34, (432,112,0): 61, 41, 32, (432,113,0): 62, 42, 33, (432,114,0): 62, 42, 33, (432,115,0): 63, 43, 34, (432,116,0): 64, 44, 35, (432,117,0): 65, 45, 36, (432,118,0): 65, 45, 36, (432,119,0): 66, 46, 37, (432,120,0): 67, 47, 38, (432,121,0): 66, 46, 37, (432,122,0): 66, 46, 37, (432,123,0): 66, 46, 37, (432,124,0): 67, 47, 38, (432,125,0): 69, 49, 40, (432,126,0): 71, 51, 42, (432,127,0): 72, 52, 43, (432,128,0): 72, 53, 47, (432,129,0): 72, 53, 47, (432,130,0): 73, 54, 48, (432,131,0): 74, 55, 49, (432,132,0): 75, 56, 50, (432,133,0): 76, 57, 51, (432,134,0): 77, 58, 52, (432,135,0): 77, 58, 52, (432,136,0): 78, 59, 53, (432,137,0): 78, 59, 53, (432,138,0): 79, 60, 54, (432,139,0): 80, 61, 55, (432,140,0): 81, 62, 56, (432,141,0): 82, 63, 57, (432,142,0): 83, 64, 58, (432,143,0): 83, 64, 58, (432,144,0): 86, 67, 63, (432,145,0): 86, 67, 63, (432,146,0): 87, 67, 66, (432,147,0): 87, 69, 67, (432,148,0): 91, 71, 70, (432,149,0): 93, 75, 73, (432,150,0): 96, 78, 78, (432,151,0): 95, 79, 79, (432,152,0): 99, 83, 83, (432,153,0): 98, 84, 83, (432,154,0): 100, 84, 85, (432,155,0): 100, 86, 86, (432,156,0): 101, 87, 87, (432,157,0): 99, 87, 87, (432,158,0): 102, 87, 90, (432,159,0): 100, 88, 88, (432,160,0): 99, 88, 86, (432,161,0): 100, 89, 87, (432,162,0): 102, 91, 89, (432,163,0): 106, 92, 91, (432,164,0): 109, 95, 94, (432,165,0): 111, 97, 96, (432,166,0): 114, 98, 98, (432,167,0): 117, 99, 99, (432,168,0): 115, 97, 97, (432,169,0): 117, 97, 96, (432,170,0): 119, 99, 98, (432,171,0): 121, 101, 100, (432,172,0): 123, 102, 101, (432,173,0): 124, 103, 102, (432,174,0): 124, 103, 102, (432,175,0): 124, 103, 102, (432,176,0): 132, 111, 108, (432,177,0): 131, 110, 107, (432,178,0): 128, 107, 104, (432,179,0): 126, 105, 102, (432,180,0): 122, 101, 98, (432,181,0): 120, 99, 96, (432,182,0): 117, 96, 93, (432,183,0): 118, 94, 92, (432,184,0): 119, 95, 93, (432,185,0): 119, 95, 93, (432,186,0): 120, 96, 94, (432,187,0): 121, 97, 95, (432,188,0): 120, 96, 94, (432,189,0): 119, 95, 93, (432,190,0): 119, 93, 92, (432,191,0): 118, 93, 89, (432,192,0): 116, 89, 80, (432,193,0): 115, 88, 77, (432,194,0): 114, 86, 75, (432,195,0): 113, 85, 74, (432,196,0): 111, 83, 72, (432,197,0): 110, 80, 70, (432,198,0): 109, 79, 69, (432,199,0): 110, 77, 68, (432,200,0): 106, 73, 64, (432,201,0): 104, 71, 64, (432,202,0): 102, 69, 62, (432,203,0): 101, 68, 61, (432,204,0): 103, 70, 63, (432,205,0): 106, 73, 66, (432,206,0): 109, 76, 69, (432,207,0): 109, 79, 71, (432,208,0): 112, 83, 77, (432,209,0): 120, 93, 86, (432,210,0): 124, 95, 89, (432,211,0): 133, 104, 100, (432,212,0): 160, 130, 128, (432,213,0): 183, 155, 154, (432,214,0): 201, 175, 176, (432,215,0): 221, 196, 200, (432,216,0): 207, 188, 194, (432,217,0): 205, 189, 199, (432,218,0): 203, 192, 206, (432,219,0): 198, 194, 209, (432,220,0): 190, 191, 209, (432,221,0): 181, 188, 207, (432,222,0): 178, 189, 209, (432,223,0): 179, 191, 213, (432,224,0): 180, 190, 217, (432,225,0): 178, 190, 216, (432,226,0): 176, 187, 215, (432,227,0): 171, 187, 213, (432,228,0): 168, 185, 213, (432,229,0): 162, 183, 212, (432,230,0): 158, 183, 214, (432,231,0): 156, 182, 215, (432,232,0): 151, 181, 215, (432,233,0): 148, 180, 218, (432,234,0): 145, 179, 217, (432,235,0): 142, 177, 217, (432,236,0): 141, 176, 218, (432,237,0): 141, 175, 220, (432,238,0): 141, 175, 220, (432,239,0): 142, 176, 221, (432,240,0): 145, 178, 223, (432,241,0): 146, 179, 224, (432,242,0): 146, 180, 226, (432,243,0): 148, 182, 230, (432,244,0): 150, 184, 232, (432,245,0): 150, 186, 236, (432,246,0): 151, 186, 240, (432,247,0): 152, 187, 243, (432,248,0): 150, 186, 244, (432,249,0): 151, 187, 247, (432,250,0): 149, 187, 249, (432,251,0): 150, 188, 251, (432,252,0): 148, 187, 252, (432,253,0): 147, 186, 253, (432,254,0): 145, 184, 251, (432,255,0): 143, 183, 252, (432,256,0): 141, 189, 255, (432,257,0): 139, 190, 255, (432,258,0): 138, 189, 254, (432,259,0): 138, 189, 254, (432,260,0): 137, 188, 253, (432,261,0): 137, 188, 253, (432,262,0): 136, 187, 253, (432,263,0): 134, 187, 253, (432,264,0): 134, 187, 253, (432,265,0): 134, 187, 253, (432,266,0): 133, 188, 255, (432,267,0): 133, 188, 255, (432,268,0): 133, 188, 255, (432,269,0): 133, 188, 255, (432,270,0): 133, 187, 255, (432,271,0): 131, 188, 255, (432,272,0): 127, 186, 254, (432,273,0): 126, 187, 252, (432,274,0): 126, 187, 254, (432,275,0): 126, 187, 252, (432,276,0): 127, 186, 254, (432,277,0): 127, 186, 252, (432,278,0): 127, 186, 254, (432,279,0): 127, 186, 252, (432,280,0): 128, 187, 255, (432,281,0): 128, 187, 253, (432,282,0): 128, 187, 255, (432,283,0): 127, 186, 252, (432,284,0): 127, 186, 254, (432,285,0): 126, 185, 251, (432,286,0): 126, 185, 253, (432,287,0): 126, 185, 253, (432,288,0): 126, 185, 253, (432,289,0): 127, 184, 253, (432,290,0): 129, 183, 253, (432,291,0): 130, 183, 253, (432,292,0): 133, 181, 253, (432,293,0): 133, 181, 253, (432,294,0): 134, 181, 253, (432,295,0): 134, 181, 253, (432,296,0): 137, 185, 255, (432,297,0): 136, 186, 255, (432,298,0): 136, 186, 255, (432,299,0): 136, 186, 255, (432,300,0): 137, 186, 255, (432,301,0): 138, 185, 255, (432,302,0): 140, 184, 255, (432,303,0): 140, 184, 255, (432,304,0): 144, 188, 255, (432,305,0): 144, 182, 253, (432,306,0): 150, 174, 244, (432,307,0): 155, 166, 232, (432,308,0): 154, 148, 208, (432,309,0): 136, 119, 171, (432,310,0): 109, 84, 126, (432,311,0): 90, 61, 91, (432,312,0): 71, 42, 62, (432,313,0): 70, 44, 55, (432,314,0): 67, 45, 48, (432,315,0): 64, 44, 45, (432,316,0): 61, 41, 43, (432,317,0): 56, 35, 40, (432,318,0): 53, 30, 40, (432,319,0): 49, 28, 37, (432,320,0): 43, 23, 34, (432,321,0): 41, 24, 34, (432,322,0): 41, 24, 34, (432,323,0): 40, 23, 33, (432,324,0): 40, 22, 34, (432,325,0): 39, 21, 33, (432,326,0): 38, 22, 35, (432,327,0): 37, 21, 34, (432,328,0): 36, 20, 33, (432,329,0): 36, 20, 33, (432,330,0): 35, 19, 32, (432,331,0): 33, 19, 32, (432,332,0): 32, 18, 31, (432,333,0): 32, 19, 29, (432,334,0): 31, 18, 28, (432,335,0): 31, 18, 28, (432,336,0): 33, 17, 28, (432,337,0): 32, 16, 27, (432,338,0): 31, 15, 26, (432,339,0): 30, 14, 25, (432,340,0): 30, 14, 25, (432,341,0): 31, 15, 26, (432,342,0): 32, 16, 27, (432,343,0): 33, 17, 28, (432,344,0): 31, 15, 26, (432,345,0): 31, 15, 26, (432,346,0): 31, 15, 26, (432,347,0): 30, 14, 25, (432,348,0): 30, 14, 25, (432,349,0): 29, 13, 24, (432,350,0): 29, 13, 24, (432,351,0): 27, 14, 24, (432,352,0): 26, 14, 26, (432,353,0): 25, 14, 28, (432,354,0): 25, 14, 28, (432,355,0): 25, 14, 28, (432,356,0): 25, 14, 28, (432,357,0): 25, 14, 28, (432,358,0): 25, 14, 28, (432,359,0): 25, 14, 28, (432,360,0): 22, 11, 25, (432,361,0): 22, 14, 27, (432,362,0): 24, 16, 29, (432,363,0): 26, 18, 31, (432,364,0): 26, 18, 31, (432,365,0): 26, 18, 31, (432,366,0): 24, 16, 29, (432,367,0): 23, 15, 28, (432,368,0): 26, 15, 29, (432,369,0): 27, 15, 29, (432,370,0): 26, 14, 28, (432,371,0): 26, 14, 28, (432,372,0): 25, 13, 27, (432,373,0): 25, 13, 27, (432,374,0): 24, 12, 26, (432,375,0): 24, 12, 26, (432,376,0): 26, 14, 28, (432,377,0): 26, 14, 28, (432,378,0): 26, 14, 28, (432,379,0): 26, 14, 28, (432,380,0): 26, 14, 28, (432,381,0): 26, 14, 28, (432,382,0): 26, 14, 28, (432,383,0): 26, 14, 28, (432,384,0): 26, 15, 31, (432,385,0): 23, 15, 30, (432,386,0): 24, 13, 30, (432,387,0): 21, 13, 28, (432,388,0): 23, 12, 29, (432,389,0): 22, 14, 29, (432,390,0): 25, 14, 31, (432,391,0): 24, 16, 31, (432,392,0): 23, 12, 29, (432,393,0): 21, 13, 28, (432,394,0): 23, 12, 29, (432,395,0): 20, 12, 27, (432,396,0): 21, 10, 27, (432,397,0): 19, 11, 26, (432,398,0): 21, 10, 27, (432,399,0): 17, 10, 26, (432,400,0): 18, 16, 30, (432,401,0): 16, 15, 29, (432,402,0): 15, 14, 28, (432,403,0): 14, 13, 27, (432,404,0): 12, 11, 25, (432,405,0): 11, 10, 24, (432,406,0): 10, 9, 23, (432,407,0): 10, 9, 23, (432,408,0): 13, 12, 26, (432,409,0): 12, 11, 25, (432,410,0): 12, 11, 25, (432,411,0): 11, 13, 26, (432,412,0): 12, 14, 27, (432,413,0): 14, 16, 29, (432,414,0): 16, 18, 31, (432,415,0): 19, 19, 31, (432,416,0): 20, 20, 32, (432,417,0): 24, 22, 33, (432,418,0): 27, 25, 36, (432,419,0): 27, 25, 36, (432,420,0): 23, 21, 32, (432,421,0): 21, 19, 30, (432,422,0): 21, 18, 29, (432,423,0): 22, 19, 30, (432,424,0): 26, 20, 32, (432,425,0): 27, 21, 33, (432,426,0): 28, 22, 34, (432,427,0): 28, 22, 34, (432,428,0): 31, 25, 37, (432,429,0): 38, 32, 44, (432,430,0): 49, 41, 54, (432,431,0): 57, 49, 64, (432,432,0): 62, 53, 70, (432,433,0): 62, 53, 70, (432,434,0): 64, 53, 70, (432,435,0): 65, 54, 70, (432,436,0): 66, 55, 71, (432,437,0): 68, 57, 71, (432,438,0): 69, 59, 70, (432,439,0): 70, 60, 69, (432,440,0): 72, 61, 69, (432,441,0): 70, 59, 65, (432,442,0): 68, 56, 60, (432,443,0): 66, 54, 56, (432,444,0): 66, 54, 54, (432,445,0): 68, 57, 55, (432,446,0): 71, 60, 58, (432,447,0): 72, 62, 60, (432,448,0): 68, 64, 61, (432,449,0): 66, 65, 61, (432,450,0): 73, 69, 66, (432,451,0): 84, 80, 77, (432,452,0): 97, 92, 88, (432,453,0): 105, 97, 94, (432,454,0): 103, 96, 90, (432,455,0): 99, 90, 85, (432,456,0): 91, 80, 74, (432,457,0): 97, 84, 76, (432,458,0): 101, 88, 80, (432,459,0): 103, 89, 80, (432,460,0): 103, 89, 80, (432,461,0): 101, 84, 74, (432,462,0): 91, 74, 66, (432,463,0): 79, 65, 54, (432,464,0): 69, 62, 44, (432,465,0): 65, 63, 42, (432,466,0): 62, 61, 41, (432,467,0): 59, 60, 42, (432,468,0): 58, 61, 44, (432,469,0): 60, 62, 48, (432,470,0): 62, 64, 51, (432,471,0): 64, 66, 55, (432,472,0): 59, 59, 51, (432,473,0): 62, 59, 54, (432,474,0): 68, 63, 60, (432,475,0): 76, 70, 70, (432,476,0): 79, 73, 73, (432,477,0): 83, 77, 77, (432,478,0): 95, 91, 90, (432,479,0): 107, 107, 105, (432,480,0): 99, 109, 101, (432,481,0): 106, 114, 103, (432,482,0): 113, 111, 98, (432,483,0): 114, 107, 89, (432,484,0): 118, 107, 87, (432,485,0): 126, 111, 88, (432,486,0): 128, 110, 88, (432,487,0): 127, 104, 86, (432,488,0): 120, 94, 77, (432,489,0): 121, 94, 77, (432,490,0): 116, 93, 75, (432,491,0): 112, 89, 71, (432,492,0): 106, 83, 67, (432,493,0): 104, 76, 64, (432,494,0): 107, 68, 63, (432,495,0): 114, 63, 62, (432,496,0): 129, 61, 62, (432,497,0): 151, 69, 73, (432,498,0): 179, 88, 93, (432,499,0): 199, 104, 108, (432,500,0): 199, 105, 105, (432,501,0): 180, 97, 91, (432,502,0): 162, 96, 84, (432,503,0): 151, 102, 85, (432,504,0): 144, 112, 89, (432,505,0): 131, 107, 83, (432,506,0): 124, 98, 81, (432,507,0): 126, 98, 86, (432,508,0): 132, 99, 94, (432,509,0): 133, 97, 97, (432,510,0): 130, 94, 98, (432,511,0): 129, 88, 94, (432,512,0): 130, 85, 88, (432,513,0): 130, 80, 81, (432,514,0): 122, 63, 65, (432,515,0): 112, 47, 51, (432,516,0): 119, 48, 56, (432,517,0): 130, 58, 70, (432,518,0): 123, 52, 68, (432,519,0): 107, 36, 54, (432,520,0): 113, 40, 59, (432,521,0): 126, 49, 67, (432,522,0): 136, 49, 65, (432,523,0): 140, 48, 59, (432,524,0): 142, 46, 57, (432,525,0): 133, 36, 47, (432,526,0): 132, 36, 48, (432,527,0): 146, 52, 66, (432,528,0): 145, 48, 65, (432,529,0): 125, 32, 50, (432,530,0): 107, 20, 39, (432,531,0): 101, 22, 41, (432,532,0): 98, 26, 46, (432,533,0): 90, 27, 46, (432,534,0): 88, 29, 47, (432,535,0): 92, 34, 49, (432,536,0): 96, 30, 44, (432,537,0): 101, 25, 38, (432,538,0): 119, 28, 45, (432,539,0): 142, 43, 61, (432,540,0): 152, 49, 68, (432,541,0): 144, 41, 60, (432,542,0): 126, 27, 45, (432,543,0): 112, 23, 41, (432,544,0): 89, 18, 34, (432,545,0): 83, 22, 38, (432,546,0): 79, 18, 33, (432,547,0): 74, 13, 28, (432,548,0): 80, 16, 30, (432,549,0): 87, 23, 37, (432,550,0): 86, 24, 37, (432,551,0): 75, 19, 30, (432,552,0): 68, 21, 29, (432,553,0): 61, 20, 28, (432,554,0): 62, 21, 29, (432,555,0): 70, 24, 35, (432,556,0): 85, 28, 45, (432,557,0): 96, 31, 53, (432,558,0): 105, 33, 57, (432,559,0): 115, 32, 58, (432,560,0): 135, 43, 66, (432,561,0): 146, 49, 69, (432,562,0): 147, 53, 69, (432,563,0): 144, 54, 66, (432,564,0): 141, 57, 70, (432,565,0): 140, 62, 78, (432,566,0): 126, 56, 80, (432,567,0): 111, 48, 77, (432,568,0): 110, 53, 85, (432,569,0): 100, 50, 79, (432,570,0): 92, 44, 66, (432,571,0): 86, 44, 58, (432,572,0): 83, 46, 53, (432,573,0): 84, 50, 51, (432,574,0): 82, 50, 51, (432,575,0): 79, 49, 49, (432,576,0): 76, 46, 46, (432,577,0): 75, 47, 46, (432,578,0): 76, 47, 49, (432,579,0): 75, 49, 50, (432,580,0): 76, 50, 51, (432,581,0): 77, 51, 52, (432,582,0): 77, 52, 55, (432,583,0): 76, 54, 57, (432,584,0): 76, 54, 57, (432,585,0): 78, 55, 61, (432,586,0): 80, 57, 63, (432,587,0): 82, 59, 67, (432,588,0): 81, 58, 66, (432,589,0): 79, 56, 64, (432,590,0): 75, 52, 62, (432,591,0): 72, 51, 60, (432,592,0): 73, 51, 63, (432,593,0): 71, 51, 62, (432,594,0): 70, 50, 61, (432,595,0): 68, 48, 59, (432,596,0): 67, 47, 58, (432,597,0): 65, 45, 56, (432,598,0): 64, 44, 55, (432,599,0): 61, 44, 54, (433,0,0): 75, 81, 69, (433,1,0): 75, 81, 69, (433,2,0): 74, 80, 68, (433,3,0): 74, 80, 68, (433,4,0): 73, 79, 67, (433,5,0): 73, 79, 67, (433,6,0): 73, 79, 67, (433,7,0): 72, 78, 66, (433,8,0): 74, 80, 68, (433,9,0): 74, 80, 68, (433,10,0): 74, 80, 68, (433,11,0): 74, 80, 68, (433,12,0): 74, 80, 68, (433,13,0): 74, 80, 68, (433,14,0): 74, 80, 68, (433,15,0): 74, 80, 68, (433,16,0): 73, 79, 67, (433,17,0): 73, 79, 67, (433,18,0): 73, 79, 67, (433,19,0): 74, 80, 68, (433,20,0): 74, 80, 68, (433,21,0): 75, 81, 69, (433,22,0): 75, 81, 69, (433,23,0): 75, 81, 69, (433,24,0): 73, 79, 67, (433,25,0): 73, 79, 67, (433,26,0): 73, 79, 67, (433,27,0): 73, 79, 67, (433,28,0): 73, 79, 67, (433,29,0): 73, 79, 67, (433,30,0): 73, 79, 67, (433,31,0): 75, 78, 67, (433,32,0): 75, 77, 66, (433,33,0): 77, 77, 67, (433,34,0): 80, 77, 68, (433,35,0): 81, 78, 69, (433,36,0): 82, 79, 70, (433,37,0): 83, 80, 71, (433,38,0): 85, 81, 70, (433,39,0): 86, 82, 71, (433,40,0): 86, 80, 68, (433,41,0): 86, 80, 68, (433,42,0): 87, 81, 67, (433,43,0): 88, 82, 68, (433,44,0): 90, 82, 69, (433,45,0): 91, 83, 70, (433,46,0): 92, 84, 71, (433,47,0): 92, 85, 69, (433,48,0): 93, 86, 70, (433,49,0): 93, 86, 68, (433,50,0): 95, 88, 70, (433,51,0): 96, 89, 71, (433,52,0): 98, 91, 73, (433,53,0): 100, 93, 75, (433,54,0): 101, 94, 76, (433,55,0): 102, 95, 77, (433,56,0): 101, 94, 76, (433,57,0): 101, 94, 76, (433,58,0): 101, 94, 76, (433,59,0): 101, 94, 76, (433,60,0): 101, 94, 76, (433,61,0): 101, 94, 76, (433,62,0): 101, 94, 76, (433,63,0): 100, 95, 76, (433,64,0): 97, 91, 77, (433,65,0): 95, 92, 77, (433,66,0): 95, 92, 77, (433,67,0): 95, 92, 77, (433,68,0): 97, 91, 77, (433,69,0): 97, 91, 77, (433,70,0): 97, 91, 77, (433,71,0): 97, 91, 77, (433,72,0): 98, 90, 77, (433,73,0): 97, 89, 76, (433,74,0): 97, 87, 75, (433,75,0): 96, 86, 74, (433,76,0): 94, 84, 72, (433,77,0): 92, 82, 70, (433,78,0): 93, 81, 69, (433,79,0): 91, 81, 69, (433,80,0): 90, 80, 68, (433,81,0): 88, 80, 67, (433,82,0): 86, 78, 65, (433,83,0): 85, 77, 64, (433,84,0): 84, 76, 63, (433,85,0): 85, 77, 64, (433,86,0): 86, 78, 65, (433,87,0): 87, 79, 66, (433,88,0): 83, 75, 62, (433,89,0): 83, 75, 62, (433,90,0): 82, 74, 61, (433,91,0): 80, 72, 59, (433,92,0): 77, 69, 56, (433,93,0): 73, 65, 52, (433,94,0): 70, 62, 49, (433,95,0): 69, 60, 45, (433,96,0): 72, 56, 43, (433,97,0): 71, 53, 39, (433,98,0): 70, 52, 38, (433,99,0): 68, 50, 36, (433,100,0): 67, 49, 35, (433,101,0): 66, 48, 34, (433,102,0): 67, 49, 35, (433,103,0): 67, 49, 35, (433,104,0): 64, 46, 32, (433,105,0): 64, 46, 32, (433,106,0): 64, 46, 32, (433,107,0): 64, 46, 32, (433,108,0): 64, 46, 32, (433,109,0): 64, 46, 32, (433,110,0): 64, 46, 32, (433,111,0): 64, 46, 32, (433,112,0): 62, 42, 33, (433,113,0): 62, 42, 33, (433,114,0): 63, 43, 34, (433,115,0): 63, 43, 34, (433,116,0): 64, 44, 35, (433,117,0): 65, 45, 36, (433,118,0): 65, 45, 36, (433,119,0): 66, 46, 37, (433,120,0): 67, 47, 38, (433,121,0): 66, 46, 37, (433,122,0): 66, 46, 37, (433,123,0): 66, 46, 37, (433,124,0): 67, 47, 38, (433,125,0): 69, 49, 40, (433,126,0): 71, 51, 42, (433,127,0): 72, 52, 43, (433,128,0): 72, 53, 47, (433,129,0): 72, 53, 47, (433,130,0): 73, 54, 48, (433,131,0): 74, 55, 49, (433,132,0): 75, 56, 50, (433,133,0): 76, 57, 51, (433,134,0): 77, 58, 52, (433,135,0): 77, 58, 52, (433,136,0): 77, 58, 52, (433,137,0): 78, 59, 53, (433,138,0): 78, 59, 53, (433,139,0): 79, 60, 54, (433,140,0): 80, 61, 55, (433,141,0): 81, 62, 56, (433,142,0): 82, 63, 57, (433,143,0): 83, 64, 58, (433,144,0): 85, 66, 62, (433,145,0): 85, 66, 62, (433,146,0): 85, 67, 63, (433,147,0): 86, 68, 64, (433,148,0): 89, 71, 69, (433,149,0): 92, 74, 72, (433,150,0): 92, 76, 76, (433,151,0): 94, 78, 78, (433,152,0): 98, 82, 82, (433,153,0): 97, 83, 82, (433,154,0): 98, 84, 84, (433,155,0): 99, 85, 85, (433,156,0): 99, 87, 89, (433,157,0): 100, 88, 90, (433,158,0): 101, 89, 91, (433,159,0): 101, 89, 89, (433,160,0): 100, 88, 88, (433,161,0): 101, 90, 88, (433,162,0): 104, 90, 89, (433,163,0): 106, 92, 91, (433,164,0): 109, 95, 94, (433,165,0): 111, 97, 96, (433,166,0): 114, 98, 98, (433,167,0): 115, 99, 99, (433,168,0): 114, 96, 96, (433,169,0): 115, 97, 97, (433,170,0): 117, 99, 99, (433,171,0): 119, 101, 101, (433,172,0): 122, 102, 103, (433,173,0): 122, 102, 103, (433,174,0): 122, 102, 103, (433,175,0): 122, 102, 101, (433,176,0): 126, 108, 106, (433,177,0): 125, 107, 103, (433,178,0): 124, 105, 101, (433,179,0): 122, 103, 99, (433,180,0): 120, 101, 97, (433,181,0): 117, 98, 94, (433,182,0): 117, 96, 93, (433,183,0): 116, 95, 92, (433,184,0): 119, 95, 93, (433,185,0): 119, 95, 93, (433,186,0): 120, 96, 94, (433,187,0): 121, 97, 95, (433,188,0): 122, 96, 95, (433,189,0): 121, 95, 94, (433,190,0): 120, 94, 93, (433,191,0): 119, 94, 90, (433,192,0): 118, 91, 82, (433,193,0): 117, 90, 79, (433,194,0): 116, 88, 77, (433,195,0): 114, 86, 75, (433,196,0): 111, 83, 72, (433,197,0): 109, 81, 70, (433,198,0): 108, 78, 68, (433,199,0): 107, 77, 67, (433,200,0): 106, 73, 64, (433,201,0): 105, 72, 63, (433,202,0): 103, 70, 61, (433,203,0): 101, 68, 59, (433,204,0): 103, 69, 60, (433,205,0): 105, 71, 62, (433,206,0): 108, 74, 65, (433,207,0): 107, 77, 69, (433,208,0): 104, 79, 72, (433,209,0): 113, 90, 84, (433,210,0): 116, 91, 86, (433,211,0): 125, 100, 95, (433,212,0): 151, 121, 119, (433,213,0): 174, 144, 142, (433,214,0): 197, 167, 169, (433,215,0): 220, 191, 195, (433,216,0): 215, 190, 196, (433,217,0): 211, 191, 200, (433,218,0): 207, 191, 204, (433,219,0): 200, 192, 207, (433,220,0): 192, 189, 206, (433,221,0): 186, 189, 206, (433,222,0): 182, 189, 208, (433,223,0): 181, 189, 210, (433,224,0): 181, 189, 212, (433,225,0): 181, 188, 214, (433,226,0): 177, 187, 214, (433,227,0): 172, 186, 212, (433,228,0): 168, 185, 213, (433,229,0): 164, 185, 214, (433,230,0): 159, 184, 214, (433,231,0): 155, 184, 216, (433,232,0): 153, 183, 217, (433,233,0): 150, 182, 220, (433,234,0): 147, 181, 219, (433,235,0): 144, 179, 219, (433,236,0): 143, 178, 220, (433,237,0): 143, 177, 222, (433,238,0): 143, 177, 223, (433,239,0): 143, 177, 222, (433,240,0): 146, 179, 222, (433,241,0): 146, 179, 220, (433,242,0): 147, 181, 226, (433,243,0): 148, 182, 227, (433,244,0): 150, 184, 232, (433,245,0): 152, 185, 236, (433,246,0): 151, 187, 239, (433,247,0): 152, 187, 243, (433,248,0): 150, 186, 244, (433,249,0): 151, 187, 247, (433,250,0): 150, 188, 251, (433,251,0): 150, 188, 253, (433,252,0): 148, 187, 254, (433,253,0): 147, 186, 255, (433,254,0): 146, 184, 255, (433,255,0): 142, 185, 254, (433,256,0): 140, 189, 255, (433,257,0): 138, 189, 252, (433,258,0): 138, 189, 252, (433,259,0): 137, 188, 251, (433,260,0): 137, 188, 253, (433,261,0): 136, 187, 252, (433,262,0): 134, 188, 252, (433,263,0): 134, 187, 253, (433,264,0): 133, 188, 253, (433,265,0): 133, 188, 253, (433,266,0): 131, 188, 255, (433,267,0): 131, 188, 255, (433,268,0): 131, 188, 255, (433,269,0): 131, 188, 255, (433,270,0): 131, 188, 255, (433,271,0): 130, 189, 255, (433,272,0): 127, 186, 254, (433,273,0): 126, 187, 254, (433,274,0): 126, 187, 254, (433,275,0): 126, 187, 254, (433,276,0): 126, 187, 254, (433,277,0): 126, 187, 254, (433,278,0): 126, 187, 254, (433,279,0): 126, 187, 254, (433,280,0): 127, 188, 255, (433,281,0): 127, 188, 255, (433,282,0): 127, 188, 255, (433,283,0): 126, 187, 254, (433,284,0): 126, 187, 254, (433,285,0): 125, 186, 253, (433,286,0): 125, 186, 253, (433,287,0): 125, 186, 253, (433,288,0): 125, 186, 253, (433,289,0): 125, 186, 253, (433,290,0): 127, 184, 253, (433,291,0): 130, 183, 253, (433,292,0): 133, 181, 253, (433,293,0): 134, 181, 253, (433,294,0): 134, 181, 253, (433,295,0): 134, 181, 253, (433,296,0): 135, 185, 255, (433,297,0): 133, 186, 255, (433,298,0): 133, 186, 255, (433,299,0): 133, 186, 255, (433,300,0): 135, 185, 255, (433,301,0): 137, 184, 255, (433,302,0): 139, 183, 255, (433,303,0): 140, 182, 255, (433,304,0): 141, 180, 255, (433,305,0): 147, 179, 252, (433,306,0): 156, 175, 243, (433,307,0): 158, 162, 225, (433,308,0): 151, 138, 192, (433,309,0): 128, 105, 149, (433,310,0): 102, 72, 106, (433,311,0): 84, 52, 75, (433,312,0): 70, 42, 56, (433,313,0): 69, 43, 52, (433,314,0): 65, 45, 47, (433,315,0): 62, 43, 45, (433,316,0): 58, 39, 43, (433,317,0): 54, 35, 41, (433,318,0): 51, 30, 39, (433,319,0): 49, 27, 39, (433,320,0): 41, 23, 35, (433,321,0): 40, 24, 35, (433,322,0): 39, 23, 34, (433,323,0): 39, 23, 34, (433,324,0): 38, 22, 33, (433,325,0): 38, 22, 33, (433,326,0): 37, 21, 32, (433,327,0): 37, 21, 32, (433,328,0): 36, 20, 31, (433,329,0): 35, 19, 30, (433,330,0): 35, 19, 30, (433,331,0): 34, 18, 29, (433,332,0): 34, 18, 29, (433,333,0): 33, 17, 28, (433,334,0): 33, 17, 28, (433,335,0): 33, 17, 28, (433,336,0): 33, 17, 28, (433,337,0): 32, 16, 27, (433,338,0): 31, 15, 26, (433,339,0): 30, 14, 25, (433,340,0): 30, 14, 25, (433,341,0): 31, 15, 26, (433,342,0): 32, 16, 27, (433,343,0): 33, 17, 28, (433,344,0): 31, 15, 26, (433,345,0): 31, 15, 26, (433,346,0): 31, 15, 26, (433,347,0): 30, 14, 25, (433,348,0): 30, 14, 25, (433,349,0): 29, 13, 24, (433,350,0): 29, 13, 24, (433,351,0): 27, 14, 24, (433,352,0): 27, 13, 28, (433,353,0): 26, 14, 28, (433,354,0): 26, 14, 28, (433,355,0): 26, 14, 28, (433,356,0): 25, 14, 28, (433,357,0): 25, 14, 28, (433,358,0): 25, 14, 28, (433,359,0): 25, 14, 28, (433,360,0): 22, 14, 27, (433,361,0): 22, 14, 27, (433,362,0): 23, 17, 29, (433,363,0): 24, 18, 30, (433,364,0): 24, 18, 30, (433,365,0): 24, 18, 30, (433,366,0): 22, 19, 30, (433,367,0): 23, 17, 29, (433,368,0): 26, 15, 29, (433,369,0): 27, 15, 29, (433,370,0): 27, 15, 29, (433,371,0): 26, 14, 28, (433,372,0): 26, 14, 28, (433,373,0): 25, 13, 27, (433,374,0): 25, 13, 27, (433,375,0): 24, 12, 26, (433,376,0): 26, 14, 28, (433,377,0): 26, 14, 28, (433,378,0): 26, 14, 28, (433,379,0): 26, 14, 28, (433,380,0): 26, 14, 28, (433,381,0): 26, 14, 28, (433,382,0): 26, 14, 28, (433,383,0): 25, 14, 28, (433,384,0): 26, 15, 32, (433,385,0): 23, 14, 31, (433,386,0): 22, 13, 30, (433,387,0): 21, 12, 29, (433,388,0): 21, 12, 29, (433,389,0): 22, 13, 30, (433,390,0): 23, 14, 31, (433,391,0): 24, 15, 32, (433,392,0): 22, 13, 30, (433,393,0): 21, 12, 29, (433,394,0): 21, 12, 29, (433,395,0): 20, 11, 28, (433,396,0): 20, 11, 28, (433,397,0): 19, 10, 27, (433,398,0): 19, 10, 27, (433,399,0): 18, 11, 27, (433,400,0): 17, 16, 30, (433,401,0): 14, 16, 29, (433,402,0): 13, 15, 28, (433,403,0): 12, 14, 27, (433,404,0): 11, 13, 26, (433,405,0): 9, 11, 24, (433,406,0): 9, 11, 24, (433,407,0): 8, 10, 23, (433,408,0): 10, 12, 25, (433,409,0): 10, 12, 25, (433,410,0): 10, 12, 25, (433,411,0): 11, 13, 26, (433,412,0): 12, 14, 27, (433,413,0): 14, 16, 29, (433,414,0): 17, 19, 32, (433,415,0): 18, 20, 32, (433,416,0): 22, 22, 34, (433,417,0): 25, 25, 35, (433,418,0): 29, 27, 38, (433,419,0): 29, 27, 38, (433,420,0): 26, 24, 35, (433,421,0): 24, 22, 33, (433,422,0): 25, 22, 33, (433,423,0): 26, 23, 34, (433,424,0): 29, 23, 35, (433,425,0): 30, 24, 36, (433,426,0): 30, 24, 36, (433,427,0): 31, 25, 37, (433,428,0): 35, 27, 40, (433,429,0): 42, 34, 47, (433,430,0): 53, 45, 58, (433,431,0): 60, 52, 67, (433,432,0): 65, 56, 73, (433,433,0): 66, 57, 76, (433,434,0): 66, 57, 76, (433,435,0): 67, 58, 75, (433,436,0): 70, 59, 76, (433,437,0): 71, 60, 76, (433,438,0): 72, 61, 75, (433,439,0): 73, 63, 74, (433,440,0): 75, 63, 73, (433,441,0): 73, 62, 70, (433,442,0): 71, 58, 65, (433,443,0): 69, 57, 61, (433,444,0): 68, 56, 58, (433,445,0): 70, 58, 58, (433,446,0): 74, 60, 60, (433,447,0): 72, 62, 61, (433,448,0): 67, 66, 64, (433,449,0): 65, 67, 64, (433,450,0): 69, 69, 67, (433,451,0): 80, 79, 77, (433,452,0): 94, 90, 89, (433,453,0): 100, 96, 93, (433,454,0): 103, 95, 93, (433,455,0): 99, 91, 88, (433,456,0): 97, 86, 82, (433,457,0): 96, 85, 79, (433,458,0): 99, 84, 79, (433,459,0): 103, 88, 81, (433,460,0): 104, 87, 80, (433,461,0): 97, 80, 72, (433,462,0): 90, 71, 65, (433,463,0): 84, 67, 57, (433,464,0): 70, 61, 44, (433,465,0): 66, 61, 41, (433,466,0): 61, 58, 39, (433,467,0): 58, 57, 39, (433,468,0): 57, 58, 42, (433,469,0): 58, 60, 46, (433,470,0): 62, 64, 51, (433,471,0): 66, 66, 56, (433,472,0): 65, 62, 57, (433,473,0): 66, 61, 58, (433,474,0): 70, 65, 62, (433,475,0): 78, 72, 72, (433,476,0): 81, 77, 76, (433,477,0): 83, 83, 81, (433,478,0): 94, 96, 95, (433,479,0): 102, 111, 108, (433,480,0): 108, 125, 119, (433,481,0): 116, 131, 124, (433,482,0): 127, 130, 121, (433,483,0): 130, 124, 112, (433,484,0): 129, 120, 103, (433,485,0): 132, 121, 103, (433,486,0): 130, 117, 98, (433,487,0): 128, 111, 93, (433,488,0): 119, 98, 81, (433,489,0): 120, 97, 81, (433,490,0): 119, 98, 79, (433,491,0): 117, 98, 81, (433,492,0): 116, 97, 80, (433,493,0): 115, 91, 79, (433,494,0): 117, 82, 78, (433,495,0): 119, 75, 74, (433,496,0): 115, 67, 63, (433,497,0): 126, 71, 66, (433,498,0): 149, 79, 77, (433,499,0): 167, 88, 84, (433,500,0): 176, 88, 84, (433,501,0): 175, 90, 83, (433,502,0): 178, 104, 91, (433,503,0): 182, 121, 103, (433,504,0): 160, 112, 92, (433,505,0): 149, 111, 92, (433,506,0): 141, 108, 91, (433,507,0): 141, 109, 98, (433,508,0): 141, 110, 105, (433,509,0): 141, 110, 108, (433,510,0): 138, 106, 111, (433,511,0): 138, 102, 106, (433,512,0): 131, 85, 88, (433,513,0): 137, 81, 84, (433,514,0): 131, 66, 70, (433,515,0): 122, 50, 54, (433,516,0): 125, 45, 54, (433,517,0): 131, 49, 63, (433,518,0): 124, 41, 61, (433,519,0): 108, 24, 47, (433,520,0): 122, 38, 61, (433,521,0): 129, 44, 63, (433,522,0): 135, 47, 61, (433,523,0): 145, 55, 64, (433,524,0): 156, 63, 71, (433,525,0): 149, 54, 62, (433,526,0): 141, 45, 56, (433,527,0): 149, 53, 65, (433,528,0): 160, 59, 75, (433,529,0): 146, 49, 66, (433,530,0): 127, 38, 56, (433,531,0): 112, 31, 50, (433,532,0): 96, 27, 46, (433,533,0): 89, 28, 46, (433,534,0): 92, 35, 52, (433,535,0): 103, 42, 58, (433,536,0): 102, 29, 46, (433,537,0): 105, 18, 35, (433,538,0): 118, 15, 34, (433,539,0): 137, 26, 45, (433,540,0): 145, 34, 53, (433,541,0): 137, 28, 47, (433,542,0): 118, 17, 33, (433,543,0): 99, 12, 28, (433,544,0): 83, 19, 33, (433,545,0): 78, 24, 37, (433,546,0): 79, 23, 36, (433,547,0): 77, 17, 29, (433,548,0): 82, 18, 32, (433,549,0): 90, 24, 36, (433,550,0): 92, 26, 38, (433,551,0): 83, 23, 33, (433,552,0): 82, 31, 38, (433,553,0): 76, 29, 37, (433,554,0): 74, 27, 37, (433,555,0): 81, 27, 41, (433,556,0): 97, 29, 50, (433,557,0): 109, 33, 59, (433,558,0): 121, 36, 67, (433,559,0): 127, 36, 67, (433,560,0): 141, 42, 70, (433,561,0): 144, 46, 69, (433,562,0): 137, 48, 66, (433,563,0): 126, 48, 62, (433,564,0): 119, 52, 69, (433,565,0): 115, 57, 79, (433,566,0): 107, 53, 85, (433,567,0): 94, 47, 83, (433,568,0): 99, 53, 92, (433,569,0): 95, 51, 87, (433,570,0): 91, 46, 75, (433,571,0): 87, 45, 67, (433,572,0): 87, 46, 60, (433,573,0): 85, 48, 56, (433,574,0): 85, 48, 55, (433,575,0): 83, 48, 52, (433,576,0): 81, 49, 52, (433,577,0): 80, 50, 50, (433,578,0): 80, 51, 53, (433,579,0): 80, 51, 53, (433,580,0): 79, 50, 52, (433,581,0): 79, 50, 54, (433,582,0): 76, 49, 54, (433,583,0): 75, 48, 53, (433,584,0): 77, 52, 58, (433,585,0): 79, 54, 60, (433,586,0): 81, 55, 64, (433,587,0): 82, 56, 65, (433,588,0): 80, 57, 67, (433,589,0): 77, 54, 64, (433,590,0): 74, 50, 63, (433,591,0): 72, 48, 61, (433,592,0): 71, 49, 61, (433,593,0): 69, 49, 60, (433,594,0): 68, 48, 59, (433,595,0): 66, 46, 57, (433,596,0): 65, 45, 56, (433,597,0): 63, 43, 54, (433,598,0): 62, 42, 53, (433,599,0): 61, 41, 52, (434,0,0): 75, 81, 69, (434,1,0): 74, 80, 68, (434,2,0): 74, 80, 68, (434,3,0): 74, 80, 68, (434,4,0): 73, 79, 67, (434,5,0): 72, 78, 66, (434,6,0): 72, 78, 66, (434,7,0): 72, 78, 66, (434,8,0): 73, 79, 67, (434,9,0): 73, 79, 67, (434,10,0): 73, 79, 67, (434,11,0): 73, 79, 67, (434,12,0): 73, 79, 67, (434,13,0): 73, 79, 67, (434,14,0): 73, 79, 67, (434,15,0): 73, 79, 67, (434,16,0): 73, 79, 67, (434,17,0): 73, 79, 67, (434,18,0): 73, 79, 67, (434,19,0): 74, 80, 68, (434,20,0): 74, 80, 68, (434,21,0): 75, 81, 69, (434,22,0): 75, 81, 69, (434,23,0): 75, 81, 69, (434,24,0): 73, 79, 67, (434,25,0): 73, 79, 67, (434,26,0): 73, 79, 67, (434,27,0): 73, 79, 67, (434,28,0): 73, 79, 67, (434,29,0): 73, 79, 67, (434,30,0): 73, 79, 67, (434,31,0): 75, 78, 67, (434,32,0): 76, 78, 67, (434,33,0): 77, 77, 67, (434,34,0): 80, 77, 68, (434,35,0): 81, 78, 69, (434,36,0): 82, 79, 70, (434,37,0): 83, 80, 71, (434,38,0): 85, 81, 70, (434,39,0): 85, 81, 70, (434,40,0): 86, 80, 68, (434,41,0): 86, 80, 68, (434,42,0): 87, 81, 67, (434,43,0): 88, 82, 68, (434,44,0): 90, 82, 69, (434,45,0): 91, 83, 70, (434,46,0): 92, 84, 71, (434,47,0): 92, 85, 69, (434,48,0): 93, 86, 70, (434,49,0): 93, 86, 68, (434,50,0): 95, 88, 70, (434,51,0): 96, 89, 71, (434,52,0): 98, 91, 73, (434,53,0): 99, 92, 74, (434,54,0): 100, 93, 75, (434,55,0): 101, 94, 76, (434,56,0): 101, 94, 76, (434,57,0): 101, 94, 76, (434,58,0): 101, 94, 76, (434,59,0): 101, 94, 76, (434,60,0): 101, 94, 76, (434,61,0): 101, 94, 76, (434,62,0): 101, 94, 76, (434,63,0): 100, 95, 76, (434,64,0): 97, 91, 77, (434,65,0): 95, 92, 77, (434,66,0): 95, 92, 77, (434,67,0): 95, 92, 77, (434,68,0): 97, 91, 77, (434,69,0): 97, 91, 77, (434,70,0): 97, 91, 77, (434,71,0): 97, 91, 77, (434,72,0): 97, 89, 76, (434,73,0): 97, 89, 76, (434,74,0): 96, 86, 74, (434,75,0): 95, 85, 73, (434,76,0): 93, 83, 71, (434,77,0): 92, 82, 70, (434,78,0): 93, 81, 69, (434,79,0): 90, 80, 68, (434,80,0): 89, 79, 67, (434,81,0): 87, 79, 66, (434,82,0): 85, 77, 64, (434,83,0): 84, 76, 63, (434,84,0): 83, 75, 62, (434,85,0): 83, 75, 62, (434,86,0): 84, 76, 63, (434,87,0): 84, 76, 63, (434,88,0): 83, 75, 62, (434,89,0): 82, 74, 61, (434,90,0): 81, 73, 60, (434,91,0): 80, 72, 59, (434,92,0): 77, 69, 56, (434,93,0): 74, 66, 53, (434,94,0): 71, 63, 50, (434,95,0): 70, 61, 46, (434,96,0): 72, 56, 43, (434,97,0): 71, 53, 39, (434,98,0): 70, 52, 38, (434,99,0): 68, 50, 36, (434,100,0): 67, 49, 35, (434,101,0): 66, 48, 34, (434,102,0): 67, 49, 35, (434,103,0): 67, 49, 35, (434,104,0): 65, 47, 33, (434,105,0): 65, 47, 33, (434,106,0): 65, 47, 33, (434,107,0): 65, 47, 33, (434,108,0): 65, 47, 33, (434,109,0): 65, 47, 33, (434,110,0): 65, 47, 33, (434,111,0): 65, 47, 33, (434,112,0): 63, 43, 34, (434,113,0): 63, 43, 34, (434,114,0): 64, 44, 35, (434,115,0): 64, 44, 35, (434,116,0): 64, 44, 35, (434,117,0): 65, 45, 36, (434,118,0): 65, 45, 36, (434,119,0): 65, 45, 36, (434,120,0): 67, 47, 38, (434,121,0): 66, 46, 37, (434,122,0): 66, 46, 37, (434,123,0): 66, 46, 37, (434,124,0): 67, 47, 38, (434,125,0): 69, 49, 40, (434,126,0): 71, 51, 42, (434,127,0): 72, 52, 43, (434,128,0): 72, 53, 47, (434,129,0): 72, 53, 47, (434,130,0): 73, 54, 48, (434,131,0): 74, 55, 49, (434,132,0): 75, 56, 50, (434,133,0): 76, 57, 51, (434,134,0): 77, 58, 52, (434,135,0): 77, 58, 52, (434,136,0): 76, 57, 51, (434,137,0): 77, 58, 52, (434,138,0): 78, 59, 53, (434,139,0): 79, 60, 54, (434,140,0): 80, 61, 55, (434,141,0): 81, 62, 56, (434,142,0): 82, 63, 57, (434,143,0): 82, 63, 57, (434,144,0): 84, 65, 61, (434,145,0): 84, 65, 61, (434,146,0): 85, 66, 62, (434,147,0): 86, 67, 63, (434,148,0): 87, 69, 67, (434,149,0): 90, 72, 70, (434,150,0): 92, 74, 72, (434,151,0): 92, 77, 74, (434,152,0): 96, 80, 80, (434,153,0): 96, 80, 80, (434,154,0): 97, 83, 83, (434,155,0): 99, 85, 85, (434,156,0): 101, 87, 87, (434,157,0): 103, 89, 89, (434,158,0): 102, 90, 92, (434,159,0): 103, 91, 91, (434,160,0): 100, 88, 88, (434,161,0): 101, 90, 88, (434,162,0): 104, 90, 89, (434,163,0): 106, 92, 91, (434,164,0): 108, 94, 93, (434,165,0): 110, 96, 95, (434,166,0): 113, 97, 97, (434,167,0): 114, 98, 98, (434,168,0): 113, 95, 95, (434,169,0): 114, 96, 96, (434,170,0): 116, 98, 98, (434,171,0): 118, 100, 100, (434,172,0): 120, 100, 101, (434,173,0): 120, 100, 101, (434,174,0): 120, 100, 101, (434,175,0): 119, 99, 98, (434,176,0): 119, 101, 99, (434,177,0): 119, 101, 97, (434,178,0): 119, 100, 96, (434,179,0): 118, 99, 95, (434,180,0): 116, 97, 93, (434,181,0): 115, 96, 92, (434,182,0): 115, 94, 91, (434,183,0): 115, 94, 91, (434,184,0): 118, 94, 92, (434,185,0): 119, 95, 93, (434,186,0): 120, 96, 94, (434,187,0): 121, 97, 95, (434,188,0): 122, 96, 95, (434,189,0): 121, 95, 94, (434,190,0): 120, 94, 93, (434,191,0): 119, 94, 90, (434,192,0): 120, 93, 84, (434,193,0): 119, 92, 81, (434,194,0): 118, 90, 79, (434,195,0): 115, 87, 76, (434,196,0): 112, 84, 73, (434,197,0): 109, 81, 70, (434,198,0): 108, 78, 68, (434,199,0): 107, 77, 67, (434,200,0): 107, 74, 65, (434,201,0): 105, 72, 63, (434,202,0): 103, 70, 61, (434,203,0): 101, 68, 59, (434,204,0): 102, 68, 59, (434,205,0): 103, 69, 60, (434,206,0): 105, 71, 62, (434,207,0): 103, 73, 65, (434,208,0): 98, 73, 68, (434,209,0): 107, 83, 79, (434,210,0): 111, 86, 82, (434,211,0): 117, 92, 88, (434,212,0): 139, 109, 107, (434,213,0): 160, 130, 128, (434,214,0): 186, 156, 158, (434,215,0): 213, 184, 188, (434,216,0): 219, 194, 200, (434,217,0): 214, 194, 203, (434,218,0): 208, 192, 203, (434,219,0): 198, 190, 203, (434,220,0): 192, 190, 204, (434,221,0): 189, 190, 208, (434,222,0): 184, 189, 209, (434,223,0): 180, 186, 208, (434,224,0): 182, 188, 212, (434,225,0): 180, 187, 213, (434,226,0): 178, 188, 215, (434,227,0): 175, 187, 213, (434,228,0): 171, 186, 215, (434,229,0): 167, 186, 216, (434,230,0): 163, 186, 217, (434,231,0): 160, 186, 219, (434,232,0): 156, 185, 219, (434,233,0): 152, 184, 222, (434,234,0): 149, 183, 221, (434,235,0): 148, 181, 222, (434,236,0): 147, 180, 223, (434,237,0): 146, 179, 224, (434,238,0): 147, 179, 226, (434,239,0): 147, 180, 225, (434,240,0): 147, 180, 223, (434,241,0): 148, 181, 222, (434,242,0): 149, 182, 227, (434,243,0): 150, 183, 228, (434,244,0): 151, 185, 233, (434,245,0): 152, 185, 236, (434,246,0): 151, 187, 239, (434,247,0): 152, 187, 243, (434,248,0): 151, 187, 245, (434,249,0): 151, 187, 247, (434,250,0): 150, 188, 251, (434,251,0): 150, 188, 253, (434,252,0): 149, 188, 255, (434,253,0): 147, 186, 255, (434,254,0): 145, 185, 255, (434,255,0): 142, 185, 254, (434,256,0): 139, 188, 254, (434,257,0): 138, 189, 254, (434,258,0): 138, 189, 254, (434,259,0): 137, 188, 253, (434,260,0): 137, 188, 254, (434,261,0): 136, 187, 253, (434,262,0): 134, 187, 253, (434,263,0): 133, 186, 254, (434,264,0): 134, 189, 255, (434,265,0): 134, 189, 255, (434,266,0): 132, 189, 255, (434,267,0): 132, 189, 255, (434,268,0): 132, 189, 255, (434,269,0): 132, 189, 255, (434,270,0): 132, 189, 255, (434,271,0): 131, 190, 255, (434,272,0): 127, 186, 254, (434,273,0): 126, 187, 254, (434,274,0): 126, 187, 254, (434,275,0): 126, 187, 254, (434,276,0): 126, 187, 254, (434,277,0): 126, 187, 254, (434,278,0): 126, 187, 254, (434,279,0): 126, 187, 254, (434,280,0): 127, 188, 255, (434,281,0): 127, 188, 255, (434,282,0): 127, 188, 255, (434,283,0): 126, 187, 254, (434,284,0): 126, 187, 254, (434,285,0): 125, 186, 253, (434,286,0): 125, 186, 253, (434,287,0): 125, 186, 253, (434,288,0): 125, 188, 255, (434,289,0): 127, 188, 255, (434,290,0): 129, 186, 255, (434,291,0): 131, 185, 255, (434,292,0): 134, 184, 255, (434,293,0): 135, 183, 255, (434,294,0): 135, 183, 255, (434,295,0): 135, 183, 255, (434,296,0): 135, 185, 255, (434,297,0): 133, 186, 255, (434,298,0): 133, 186, 255, (434,299,0): 133, 186, 255, (434,300,0): 135, 185, 255, (434,301,0): 137, 184, 255, (434,302,0): 139, 183, 255, (434,303,0): 142, 181, 255, (434,304,0): 137, 173, 247, (434,305,0): 151, 177, 251, (434,306,0): 161, 174, 242, (434,307,0): 154, 154, 214, (434,308,0): 133, 119, 170, (434,309,0): 109, 84, 126, (434,310,0): 87, 56, 88, (434,311,0): 74, 42, 65, (434,312,0): 68, 40, 54, (434,313,0): 66, 40, 49, (434,314,0): 61, 42, 46, (434,315,0): 56, 40, 43, (434,316,0): 53, 37, 40, (434,317,0): 52, 33, 39, (434,318,0): 49, 28, 37, (434,319,0): 46, 26, 37, (434,320,0): 40, 22, 34, (434,321,0): 39, 23, 34, (434,322,0): 38, 22, 33, (434,323,0): 38, 22, 33, (434,324,0): 37, 21, 32, (434,325,0): 37, 21, 32, (434,326,0): 36, 20, 31, (434,327,0): 36, 20, 31, (434,328,0): 35, 19, 30, (434,329,0): 35, 19, 30, (434,330,0): 35, 19, 30, (434,331,0): 34, 18, 29, (434,332,0): 34, 18, 29, (434,333,0): 33, 17, 28, (434,334,0): 33, 17, 28, (434,335,0): 32, 16, 27, (434,336,0): 33, 17, 28, (434,337,0): 32, 16, 27, (434,338,0): 31, 15, 26, (434,339,0): 30, 14, 25, (434,340,0): 30, 14, 25, (434,341,0): 31, 15, 26, (434,342,0): 32, 16, 27, (434,343,0): 33, 17, 28, (434,344,0): 31, 15, 26, (434,345,0): 31, 15, 26, (434,346,0): 31, 15, 26, (434,347,0): 30, 14, 25, (434,348,0): 30, 14, 25, (434,349,0): 29, 13, 24, (434,350,0): 29, 13, 24, (434,351,0): 27, 14, 24, (434,352,0): 27, 13, 28, (434,353,0): 26, 14, 28, (434,354,0): 26, 14, 28, (434,355,0): 26, 14, 28, (434,356,0): 25, 14, 28, (434,357,0): 25, 14, 28, (434,358,0): 25, 14, 28, (434,359,0): 25, 14, 28, (434,360,0): 24, 16, 29, (434,361,0): 23, 15, 28, (434,362,0): 22, 16, 28, (434,363,0): 22, 16, 28, (434,364,0): 22, 16, 28, (434,365,0): 23, 17, 29, (434,366,0): 23, 20, 31, (434,367,0): 25, 19, 31, (434,368,0): 27, 16, 30, (434,369,0): 27, 15, 29, (434,370,0): 27, 15, 29, (434,371,0): 26, 14, 28, (434,372,0): 26, 14, 28, (434,373,0): 25, 13, 27, (434,374,0): 25, 13, 27, (434,375,0): 25, 13, 27, (434,376,0): 26, 14, 28, (434,377,0): 26, 14, 28, (434,378,0): 26, 14, 28, (434,379,0): 26, 14, 28, (434,380,0): 26, 14, 28, (434,381,0): 26, 14, 28, (434,382,0): 26, 14, 28, (434,383,0): 25, 14, 28, (434,384,0): 26, 15, 32, (434,385,0): 23, 14, 31, (434,386,0): 22, 13, 30, (434,387,0): 21, 12, 29, (434,388,0): 21, 12, 29, (434,389,0): 22, 13, 30, (434,390,0): 23, 14, 31, (434,391,0): 24, 15, 32, (434,392,0): 22, 13, 30, (434,393,0): 22, 13, 30, (434,394,0): 22, 13, 30, (434,395,0): 21, 12, 29, (434,396,0): 21, 12, 29, (434,397,0): 20, 11, 28, (434,398,0): 20, 11, 28, (434,399,0): 19, 12, 28, (434,400,0): 16, 15, 29, (434,401,0): 14, 16, 29, (434,402,0): 13, 15, 28, (434,403,0): 12, 14, 27, (434,404,0): 11, 13, 26, (434,405,0): 10, 12, 25, (434,406,0): 10, 12, 25, (434,407,0): 9, 11, 24, (434,408,0): 10, 12, 25, (434,409,0): 10, 12, 25, (434,410,0): 10, 12, 25, (434,411,0): 11, 13, 26, (434,412,0): 13, 15, 28, (434,413,0): 15, 17, 30, (434,414,0): 18, 20, 33, (434,415,0): 19, 21, 33, (434,416,0): 23, 23, 35, (434,417,0): 27, 25, 36, (434,418,0): 30, 28, 39, (434,419,0): 30, 28, 39, (434,420,0): 29, 26, 37, (434,421,0): 28, 25, 36, (434,422,0): 29, 26, 37, (434,423,0): 30, 27, 38, (434,424,0): 31, 25, 37, (434,425,0): 32, 26, 38, (434,426,0): 35, 27, 40, (434,427,0): 36, 28, 41, (434,428,0): 39, 31, 44, (434,429,0): 46, 38, 51, (434,430,0): 58, 47, 61, (434,431,0): 65, 54, 70, (434,432,0): 70, 61, 80, (434,433,0): 71, 62, 81, (434,434,0): 72, 63, 82, (434,435,0): 73, 64, 81, (434,436,0): 76, 65, 82, (434,437,0): 77, 66, 82, (434,438,0): 78, 67, 81, (434,439,0): 78, 68, 79, (434,440,0): 81, 69, 79, (434,441,0): 79, 68, 76, (434,442,0): 77, 64, 71, (434,443,0): 74, 62, 66, (434,444,0): 72, 60, 64, (434,445,0): 72, 60, 62, (434,446,0): 75, 60, 63, (434,447,0): 73, 63, 64, (434,448,0): 71, 67, 66, (434,449,0): 67, 67, 67, (434,450,0): 70, 68, 69, (434,451,0): 77, 76, 74, (434,452,0): 90, 86, 85, (434,453,0): 98, 94, 91, (434,454,0): 102, 94, 92, (434,455,0): 101, 93, 90, (434,456,0): 104, 93, 91, (434,457,0): 99, 88, 84, (434,458,0): 106, 91, 88, (434,459,0): 116, 101, 96, (434,460,0): 116, 98, 94, (434,461,0): 101, 84, 77, (434,462,0): 90, 71, 67, (434,463,0): 86, 69, 61, (434,464,0): 73, 59, 46, (434,465,0): 67, 58, 41, (434,466,0): 62, 53, 36, (434,467,0): 58, 51, 35, (434,468,0): 56, 53, 38, (434,469,0): 60, 56, 44, (434,470,0): 65, 63, 51, (434,471,0): 69, 66, 57, (434,472,0): 71, 67, 58, (434,473,0): 70, 65, 59, (434,474,0): 74, 69, 63, (434,475,0): 81, 81, 73, (434,476,0): 85, 88, 81, (434,477,0): 85, 95, 86, (434,478,0): 93, 106, 96, (434,479,0): 99, 119, 110, (434,480,0): 111, 136, 132, (434,481,0): 123, 145, 143, (434,482,0): 138, 146, 148, (434,483,0): 142, 141, 139, (434,484,0): 140, 135, 129, (434,485,0): 140, 131, 122, (434,486,0): 137, 127, 115, (434,487,0): 133, 121, 105, (434,488,0): 122, 106, 90, (434,489,0): 121, 104, 86, (434,490,0): 119, 104, 85, (434,491,0): 118, 105, 86, (434,492,0): 120, 107, 88, (434,493,0): 121, 102, 87, (434,494,0): 121, 91, 80, (434,495,0): 120, 83, 74, (434,496,0): 113, 75, 64, (434,497,0): 117, 73, 60, (434,498,0): 129, 75, 63, (434,499,0): 141, 77, 65, (434,500,0): 151, 79, 67, (434,501,0): 164, 86, 74, (434,502,0): 186, 107, 94, (434,503,0): 205, 127, 115, (434,504,0): 190, 120, 110, (434,505,0): 183, 120, 111, (434,506,0): 172, 119, 111, (434,507,0): 160, 115, 109, (434,508,0): 150, 113, 107, (434,509,0): 141, 112, 108, (434,510,0): 133, 108, 104, (434,511,0): 135, 101, 99, (434,512,0): 140, 84, 85, (434,513,0): 150, 78, 81, (434,514,0): 144, 65, 68, (434,515,0): 132, 47, 52, (434,516,0): 131, 41, 50, (434,517,0): 136, 44, 57, (434,518,0): 133, 40, 59, (434,519,0): 124, 31, 52, (434,520,0): 135, 43, 66, (434,521,0): 134, 42, 63, (434,522,0): 130, 42, 58, (434,523,0): 140, 52, 66, (434,524,0): 157, 69, 81, (434,525,0): 153, 67, 80, (434,526,0): 140, 56, 72, (434,527,0): 147, 56, 73, (434,528,0): 155, 48, 64, (434,529,0): 158, 50, 65, (434,530,0): 148, 47, 65, (434,531,0): 128, 37, 55, (434,532,0): 110, 29, 48, (434,533,0): 106, 31, 51, (434,534,0): 116, 38, 60, (434,535,0): 128, 43, 66, (434,536,0): 140, 38, 62, (434,537,0): 146, 29, 55, (434,538,0): 155, 26, 54, (434,539,0): 162, 34, 59, (434,540,0): 155, 37, 59, (434,541,0): 135, 32, 51, (434,542,0): 107, 23, 36, (434,543,0): 87, 20, 29, (434,544,0): 75, 22, 32, (434,545,0): 75, 28, 36, (434,546,0): 79, 28, 37, (434,547,0): 79, 23, 32, (434,548,0): 82, 22, 32, (434,549,0): 87, 26, 34, (434,550,0): 87, 30, 37, (434,551,0): 85, 30, 36, (434,552,0): 78, 27, 32, (434,553,0): 77, 26, 33, (434,554,0): 82, 22, 34, (434,555,0): 89, 20, 38, (434,556,0): 104, 25, 47, (434,557,0): 119, 33, 60, (434,558,0): 129, 38, 69, (434,559,0): 133, 39, 66, (434,560,0): 149, 47, 69, (434,561,0): 145, 46, 66, (434,562,0): 133, 44, 64, (434,563,0): 120, 43, 63, (434,564,0): 110, 46, 70, (434,565,0): 105, 52, 78, (434,566,0): 98, 51, 83, (434,567,0): 89, 48, 82, (434,568,0): 92, 50, 86, (434,569,0): 92, 50, 86, (434,570,0): 94, 50, 83, (434,571,0): 91, 48, 76, (434,572,0): 89, 47, 69, (434,573,0): 87, 46, 64, (434,574,0): 85, 47, 60, (434,575,0): 85, 49, 59, (434,576,0): 85, 53, 58, (434,577,0): 84, 54, 56, (434,578,0): 85, 55, 57, (434,579,0): 84, 54, 56, (434,580,0): 81, 52, 56, (434,581,0): 78, 49, 53, (434,582,0): 73, 46, 51, (434,583,0): 71, 44, 49, (434,584,0): 77, 50, 57, (434,585,0): 78, 51, 58, (434,586,0): 79, 53, 62, (434,587,0): 80, 54, 63, (434,588,0): 77, 54, 64, (434,589,0): 75, 52, 62, (434,590,0): 73, 50, 60, (434,591,0): 71, 48, 58, (434,592,0): 69, 47, 59, (434,593,0): 68, 46, 58, (434,594,0): 67, 45, 57, (434,595,0): 66, 44, 56, (434,596,0): 64, 42, 54, (434,597,0): 62, 40, 52, (434,598,0): 61, 39, 51, (434,599,0): 61, 39, 51, (435,0,0): 74, 80, 68, (435,1,0): 74, 80, 68, (435,2,0): 74, 80, 68, (435,3,0): 73, 79, 67, (435,4,0): 73, 79, 67, (435,5,0): 72, 78, 66, (435,6,0): 72, 78, 66, (435,7,0): 71, 77, 65, (435,8,0): 73, 79, 67, (435,9,0): 73, 79, 67, (435,10,0): 73, 79, 67, (435,11,0): 73, 79, 67, (435,12,0): 73, 79, 67, (435,13,0): 73, 79, 67, (435,14,0): 73, 79, 67, (435,15,0): 73, 79, 67, (435,16,0): 73, 79, 67, (435,17,0): 73, 79, 67, (435,18,0): 73, 79, 67, (435,19,0): 74, 80, 68, (435,20,0): 74, 80, 68, (435,21,0): 75, 81, 69, (435,22,0): 75, 81, 69, (435,23,0): 75, 81, 69, (435,24,0): 72, 78, 66, (435,25,0): 72, 78, 66, (435,26,0): 72, 78, 66, (435,27,0): 72, 78, 66, (435,28,0): 72, 78, 66, (435,29,0): 72, 78, 66, (435,30,0): 72, 78, 66, (435,31,0): 74, 77, 66, (435,32,0): 77, 79, 68, (435,33,0): 78, 78, 68, (435,34,0): 80, 77, 68, (435,35,0): 81, 78, 69, (435,36,0): 82, 79, 70, (435,37,0): 83, 80, 71, (435,38,0): 84, 80, 69, (435,39,0): 84, 80, 69, (435,40,0): 85, 79, 67, (435,41,0): 85, 79, 67, (435,42,0): 86, 80, 66, (435,43,0): 87, 81, 67, (435,44,0): 89, 81, 68, (435,45,0): 90, 82, 69, (435,46,0): 91, 83, 70, (435,47,0): 92, 84, 71, (435,48,0): 93, 86, 70, (435,49,0): 94, 87, 69, (435,50,0): 94, 87, 69, (435,51,0): 96, 89, 71, (435,52,0): 97, 90, 72, (435,53,0): 98, 91, 73, (435,54,0): 99, 92, 74, (435,55,0): 99, 92, 74, (435,56,0): 101, 94, 76, (435,57,0): 101, 94, 76, (435,58,0): 101, 94, 76, (435,59,0): 101, 94, 76, (435,60,0): 101, 94, 76, (435,61,0): 101, 94, 76, (435,62,0): 101, 94, 76, (435,63,0): 100, 94, 78, (435,64,0): 96, 90, 76, (435,65,0): 94, 91, 76, (435,66,0): 94, 91, 76, (435,67,0): 94, 91, 76, (435,68,0): 96, 90, 76, (435,69,0): 96, 90, 76, (435,70,0): 96, 90, 76, (435,71,0): 96, 90, 76, (435,72,0): 96, 88, 75, (435,73,0): 96, 88, 75, (435,74,0): 95, 85, 73, (435,75,0): 94, 84, 72, (435,76,0): 92, 82, 70, (435,77,0): 91, 81, 69, (435,78,0): 92, 80, 68, (435,79,0): 89, 79, 67, (435,80,0): 87, 77, 65, (435,81,0): 85, 77, 64, (435,82,0): 84, 76, 63, (435,83,0): 83, 75, 62, (435,84,0): 82, 74, 61, (435,85,0): 82, 74, 61, (435,86,0): 81, 73, 60, (435,87,0): 81, 73, 60, (435,88,0): 82, 74, 61, (435,89,0): 81, 73, 60, (435,90,0): 81, 73, 60, (435,91,0): 79, 71, 58, (435,92,0): 77, 69, 56, (435,93,0): 74, 66, 53, (435,94,0): 71, 63, 50, (435,95,0): 71, 62, 47, (435,96,0): 72, 56, 43, (435,97,0): 71, 53, 39, (435,98,0): 70, 52, 38, (435,99,0): 68, 50, 36, (435,100,0): 67, 49, 35, (435,101,0): 66, 48, 34, (435,102,0): 67, 49, 35, (435,103,0): 67, 49, 35, (435,104,0): 65, 47, 33, (435,105,0): 65, 47, 33, (435,106,0): 65, 47, 33, (435,107,0): 65, 47, 33, (435,108,0): 65, 47, 33, (435,109,0): 65, 47, 33, (435,110,0): 65, 47, 33, (435,111,0): 65, 47, 33, (435,112,0): 64, 44, 35, (435,113,0): 64, 44, 35, (435,114,0): 64, 44, 35, (435,115,0): 65, 45, 36, (435,116,0): 65, 45, 36, (435,117,0): 65, 45, 36, (435,118,0): 65, 45, 36, (435,119,0): 65, 45, 36, (435,120,0): 67, 47, 38, (435,121,0): 66, 46, 37, (435,122,0): 66, 46, 37, (435,123,0): 66, 46, 37, (435,124,0): 67, 47, 38, (435,125,0): 69, 49, 40, (435,126,0): 71, 51, 42, (435,127,0): 72, 52, 43, (435,128,0): 72, 53, 47, (435,129,0): 72, 53, 47, (435,130,0): 73, 54, 48, (435,131,0): 74, 55, 49, (435,132,0): 75, 56, 50, (435,133,0): 76, 57, 51, (435,134,0): 77, 58, 52, (435,135,0): 77, 58, 52, (435,136,0): 76, 57, 51, (435,137,0): 77, 58, 52, (435,138,0): 77, 58, 52, (435,139,0): 78, 59, 53, (435,140,0): 79, 60, 54, (435,141,0): 80, 61, 55, (435,142,0): 81, 62, 56, (435,143,0): 82, 63, 57, (435,144,0): 84, 65, 61, (435,145,0): 84, 65, 61, (435,146,0): 84, 65, 61, (435,147,0): 85, 66, 62, (435,148,0): 86, 68, 66, (435,149,0): 88, 70, 68, (435,150,0): 90, 72, 70, (435,151,0): 92, 74, 72, (435,152,0): 93, 77, 77, (435,153,0): 94, 78, 78, (435,154,0): 95, 81, 81, (435,155,0): 97, 83, 83, (435,156,0): 100, 86, 86, (435,157,0): 102, 88, 88, (435,158,0): 102, 90, 92, (435,159,0): 103, 91, 91, (435,160,0): 99, 88, 86, (435,161,0): 100, 89, 87, (435,162,0): 103, 89, 88, (435,163,0): 105, 91, 90, (435,164,0): 107, 93, 92, (435,165,0): 109, 95, 94, (435,166,0): 111, 95, 95, (435,167,0): 112, 96, 96, (435,168,0): 111, 93, 93, (435,169,0): 112, 94, 94, (435,170,0): 114, 96, 96, (435,171,0): 115, 97, 97, (435,172,0): 117, 97, 98, (435,173,0): 117, 97, 98, (435,174,0): 116, 96, 97, (435,175,0): 116, 96, 95, (435,176,0): 112, 94, 92, (435,177,0): 112, 94, 90, (435,178,0): 113, 94, 90, (435,179,0): 113, 94, 90, (435,180,0): 113, 94, 90, (435,181,0): 113, 94, 90, (435,182,0): 113, 92, 89, (435,183,0): 113, 92, 89, (435,184,0): 116, 92, 90, (435,185,0): 117, 93, 91, (435,186,0): 119, 95, 93, (435,187,0): 120, 96, 94, (435,188,0): 121, 95, 94, (435,189,0): 121, 95, 94, (435,190,0): 120, 94, 93, (435,191,0): 119, 94, 90, (435,192,0): 122, 95, 86, (435,193,0): 121, 94, 83, (435,194,0): 119, 91, 80, (435,195,0): 116, 88, 77, (435,196,0): 113, 85, 74, (435,197,0): 109, 81, 70, (435,198,0): 108, 78, 68, (435,199,0): 106, 76, 66, (435,200,0): 107, 74, 65, (435,201,0): 106, 73, 64, (435,202,0): 104, 71, 62, (435,203,0): 102, 69, 60, (435,204,0): 101, 67, 58, (435,205,0): 101, 67, 58, (435,206,0): 102, 68, 59, (435,207,0): 101, 68, 61, (435,208,0): 97, 69, 65, (435,209,0): 103, 79, 75, (435,210,0): 107, 82, 78, (435,211,0): 114, 86, 83, (435,212,0): 129, 99, 97, (435,213,0): 146, 116, 114, (435,214,0): 173, 143, 145, (435,215,0): 206, 177, 181, (435,216,0): 220, 195, 201, (435,217,0): 217, 196, 205, (435,218,0): 209, 193, 204, (435,219,0): 199, 188, 202, (435,220,0): 193, 189, 204, (435,221,0): 193, 192, 208, (435,222,0): 188, 191, 210, (435,223,0): 181, 186, 206, (435,224,0): 183, 188, 210, (435,225,0): 182, 188, 212, (435,226,0): 180, 187, 213, (435,227,0): 177, 189, 215, (435,228,0): 173, 189, 215, (435,229,0): 169, 189, 216, (435,230,0): 165, 188, 219, (435,231,0): 163, 190, 220, (435,232,0): 159, 188, 222, (435,233,0): 157, 187, 223, (435,234,0): 153, 185, 223, (435,235,0): 150, 184, 222, (435,236,0): 149, 182, 225, (435,237,0): 149, 182, 227, (435,238,0): 149, 182, 227, (435,239,0): 150, 183, 228, (435,240,0): 149, 182, 225, (435,241,0): 149, 182, 223, (435,242,0): 150, 183, 228, (435,243,0): 151, 184, 229, (435,244,0): 152, 186, 234, (435,245,0): 153, 186, 237, (435,246,0): 152, 188, 240, (435,247,0): 152, 187, 243, (435,248,0): 151, 187, 245, (435,249,0): 150, 189, 248, (435,250,0): 151, 189, 252, (435,251,0): 150, 189, 254, (435,252,0): 149, 188, 255, (435,253,0): 147, 187, 255, (435,254,0): 146, 186, 255, (435,255,0): 143, 186, 255, (435,256,0): 139, 188, 255, (435,257,0): 137, 188, 253, (435,258,0): 137, 188, 254, (435,259,0): 137, 188, 254, (435,260,0): 136, 187, 253, (435,261,0): 135, 185, 254, (435,262,0): 133, 186, 254, (435,263,0): 133, 186, 254, (435,264,0): 133, 188, 255, (435,265,0): 133, 187, 255, (435,266,0): 131, 188, 255, (435,267,0): 131, 188, 255, (435,268,0): 131, 188, 255, (435,269,0): 131, 188, 255, (435,270,0): 131, 188, 255, (435,271,0): 130, 189, 255, (435,272,0): 127, 186, 254, (435,273,0): 126, 187, 254, (435,274,0): 126, 187, 254, (435,275,0): 126, 187, 254, (435,276,0): 126, 187, 254, (435,277,0): 126, 187, 254, (435,278,0): 126, 187, 254, (435,279,0): 126, 187, 254, (435,280,0): 127, 188, 255, (435,281,0): 127, 188, 255, (435,282,0): 127, 188, 255, (435,283,0): 126, 187, 254, (435,284,0): 126, 187, 254, (435,285,0): 125, 186, 253, (435,286,0): 125, 186, 253, (435,287,0): 125, 186, 253, (435,288,0): 125, 188, 255, (435,289,0): 125, 188, 255, (435,290,0): 128, 187, 255, (435,291,0): 131, 185, 255, (435,292,0): 134, 184, 255, (435,293,0): 134, 184, 255, (435,294,0): 135, 183, 255, (435,295,0): 134, 184, 255, (435,296,0): 132, 185, 255, (435,297,0): 131, 185, 255, (435,298,0): 131, 185, 255, (435,299,0): 132, 185, 255, (435,300,0): 134, 184, 255, (435,301,0): 136, 183, 255, (435,302,0): 138, 182, 255, (435,303,0): 142, 180, 255, (435,304,0): 142, 171, 247, (435,305,0): 157, 177, 250, (435,306,0): 160, 169, 236, (435,307,0): 142, 139, 196, (435,308,0): 112, 96, 143, (435,309,0): 89, 63, 102, (435,310,0): 75, 45, 73, (435,311,0): 69, 37, 58, (435,312,0): 65, 37, 52, (435,313,0): 63, 37, 48, (435,314,0): 57, 38, 44, (435,315,0): 53, 36, 42, (435,316,0): 50, 33, 39, (435,317,0): 47, 30, 36, (435,318,0): 46, 26, 35, (435,319,0): 45, 25, 34, (435,320,0): 38, 22, 33, (435,321,0): 38, 22, 33, (435,322,0): 37, 21, 32, (435,323,0): 37, 21, 32, (435,324,0): 36, 20, 31, (435,325,0): 36, 20, 31, (435,326,0): 35, 19, 30, (435,327,0): 35, 19, 30, (435,328,0): 35, 19, 30, (435,329,0): 34, 18, 29, (435,330,0): 34, 18, 29, (435,331,0): 34, 18, 29, (435,332,0): 33, 17, 28, (435,333,0): 32, 16, 27, (435,334,0): 32, 16, 27, (435,335,0): 32, 16, 27, (435,336,0): 33, 17, 28, (435,337,0): 32, 16, 27, (435,338,0): 31, 15, 26, (435,339,0): 30, 14, 25, (435,340,0): 30, 14, 25, (435,341,0): 31, 15, 26, (435,342,0): 32, 16, 27, (435,343,0): 33, 17, 28, (435,344,0): 31, 15, 26, (435,345,0): 31, 15, 26, (435,346,0): 31, 15, 26, (435,347,0): 30, 14, 25, (435,348,0): 30, 14, 25, (435,349,0): 29, 13, 24, (435,350,0): 29, 13, 24, (435,351,0): 27, 14, 24, (435,352,0): 26, 14, 28, (435,353,0): 26, 14, 28, (435,354,0): 26, 14, 28, (435,355,0): 26, 14, 28, (435,356,0): 25, 14, 28, (435,357,0): 25, 14, 28, (435,358,0): 25, 14, 28, (435,359,0): 25, 14, 28, (435,360,0): 25, 17, 30, (435,361,0): 24, 16, 29, (435,362,0): 21, 15, 27, (435,363,0): 21, 15, 27, (435,364,0): 21, 15, 27, (435,365,0): 23, 17, 29, (435,366,0): 23, 20, 31, (435,367,0): 27, 21, 33, (435,368,0): 27, 16, 30, (435,369,0): 28, 16, 30, (435,370,0): 28, 16, 30, (435,371,0): 27, 15, 29, (435,372,0): 26, 14, 28, (435,373,0): 26, 14, 28, (435,374,0): 26, 14, 28, (435,375,0): 25, 13, 27, (435,376,0): 27, 15, 29, (435,377,0): 27, 15, 29, (435,378,0): 27, 15, 29, (435,379,0): 27, 15, 29, (435,380,0): 27, 15, 29, (435,381,0): 27, 15, 29, (435,382,0): 27, 15, 29, (435,383,0): 26, 15, 29, (435,384,0): 26, 15, 32, (435,385,0): 23, 14, 31, (435,386,0): 22, 13, 30, (435,387,0): 21, 12, 29, (435,388,0): 21, 12, 29, (435,389,0): 22, 13, 30, (435,390,0): 23, 14, 31, (435,391,0): 24, 15, 32, (435,392,0): 23, 14, 31, (435,393,0): 23, 14, 31, (435,394,0): 23, 14, 31, (435,395,0): 22, 13, 30, (435,396,0): 22, 13, 30, (435,397,0): 21, 12, 29, (435,398,0): 21, 12, 29, (435,399,0): 20, 13, 29, (435,400,0): 16, 15, 29, (435,401,0): 14, 16, 29, (435,402,0): 13, 15, 28, (435,403,0): 13, 15, 28, (435,404,0): 12, 14, 27, (435,405,0): 11, 13, 26, (435,406,0): 11, 13, 26, (435,407,0): 10, 12, 25, (435,408,0): 11, 13, 26, (435,409,0): 11, 13, 26, (435,410,0): 11, 13, 26, (435,411,0): 12, 14, 27, (435,412,0): 14, 16, 29, (435,413,0): 17, 19, 32, (435,414,0): 19, 21, 34, (435,415,0): 23, 23, 35, (435,416,0): 24, 22, 35, (435,417,0): 27, 25, 36, (435,418,0): 29, 27, 38, (435,419,0): 29, 27, 38, (435,420,0): 29, 26, 37, (435,421,0): 28, 25, 36, (435,422,0): 30, 27, 38, (435,423,0): 33, 30, 41, (435,424,0): 31, 25, 37, (435,425,0): 33, 27, 39, (435,426,0): 36, 28, 41, (435,427,0): 38, 30, 43, (435,428,0): 42, 34, 47, (435,429,0): 49, 41, 54, (435,430,0): 60, 49, 63, (435,431,0): 67, 56, 72, (435,432,0): 75, 66, 85, (435,433,0): 76, 67, 88, (435,434,0): 78, 69, 90, (435,435,0): 79, 70, 89, (435,436,0): 82, 70, 90, (435,437,0): 83, 72, 89, (435,438,0): 83, 72, 88, (435,439,0): 83, 72, 86, (435,440,0): 85, 73, 85, (435,441,0): 84, 72, 82, (435,442,0): 82, 69, 78, (435,443,0): 78, 65, 72, (435,444,0): 76, 63, 70, (435,445,0): 75, 63, 67, (435,446,0): 77, 62, 67, (435,447,0): 74, 63, 67, (435,448,0): 71, 67, 68, (435,449,0): 68, 66, 67, (435,450,0): 68, 66, 67, (435,451,0): 74, 72, 73, (435,452,0): 86, 82, 83, (435,453,0): 94, 88, 88, (435,454,0): 100, 91, 92, (435,455,0): 102, 92, 91, (435,456,0): 107, 95, 95, (435,457,0): 104, 93, 91, (435,458,0): 117, 101, 101, (435,459,0): 135, 120, 117, (435,460,0): 136, 118, 116, (435,461,0): 112, 94, 92, (435,462,0): 93, 73, 72, (435,463,0): 88, 70, 66, (435,464,0): 77, 60, 50, (435,465,0): 70, 56, 43, (435,466,0): 64, 50, 39, (435,467,0): 59, 47, 35, (435,468,0): 57, 47, 35, (435,469,0): 62, 54, 41, (435,470,0): 68, 62, 50, (435,471,0): 73, 67, 55, (435,472,0): 74, 67, 57, (435,473,0): 72, 68, 57, (435,474,0): 79, 77, 65, (435,475,0): 89, 91, 78, (435,476,0): 94, 102, 87, (435,477,0): 93, 110, 92, (435,478,0): 97, 122, 101, (435,479,0): 100, 132, 117, (435,480,0): 108, 147, 142, (435,481,0): 122, 157, 159, (435,482,0): 140, 160, 167, (435,483,0): 142, 155, 161, (435,484,0): 141, 149, 151, (435,485,0): 141, 146, 142, (435,486,0): 139, 140, 132, (435,487,0): 136, 134, 121, (435,488,0): 128, 121, 103, (435,489,0): 125, 114, 96, (435,490,0): 118, 107, 89, (435,491,0): 117, 106, 86, (435,492,0): 119, 106, 87, (435,493,0): 122, 104, 84, (435,494,0): 122, 93, 77, (435,495,0): 120, 84, 68, (435,496,0): 110, 74, 60, (435,497,0): 111, 74, 58, (435,498,0): 118, 76, 60, (435,499,0): 129, 80, 63, (435,500,0): 142, 83, 67, (435,501,0): 161, 92, 77, (435,502,0): 193, 110, 102, (435,503,0): 218, 129, 125, (435,504,0): 213, 123, 125, (435,505,0): 209, 124, 129, (435,506,0): 192, 120, 124, (435,507,0): 170, 111, 115, (435,508,0): 151, 105, 107, (435,509,0): 139, 103, 103, (435,510,0): 130, 100, 98, (435,511,0): 131, 93, 92, (435,512,0): 139, 78, 83, (435,513,0): 147, 72, 79, (435,514,0): 139, 60, 66, (435,515,0): 129, 44, 51, (435,516,0): 129, 37, 48, (435,517,0): 139, 45, 59, (435,518,0): 149, 50, 70, (435,519,0): 149, 50, 71, (435,520,0): 150, 51, 72, (435,521,0): 145, 46, 67, (435,522,0): 132, 38, 54, (435,523,0): 136, 44, 57, (435,524,0): 148, 60, 72, (435,525,0): 144, 60, 73, (435,526,0): 138, 56, 70, (435,527,0): 151, 59, 74, (435,528,0): 162, 47, 62, (435,529,0): 176, 54, 69, (435,530,0): 168, 55, 73, (435,531,0): 149, 46, 65, (435,532,0): 132, 41, 59, (435,533,0): 130, 43, 62, (435,534,0): 133, 44, 66, (435,535,0): 136, 38, 61, (435,536,0): 158, 46, 71, (435,537,0): 172, 48, 76, (435,538,0): 182, 52, 78, (435,539,0): 180, 54, 78, (435,540,0): 160, 48, 70, (435,541,0): 130, 38, 53, (435,542,0): 102, 30, 41, (435,543,0): 85, 28, 35, (435,544,0): 73, 26, 32, (435,545,0): 76, 29, 35, (435,546,0): 82, 31, 38, (435,547,0): 83, 28, 34, (435,548,0): 84, 24, 32, (435,549,0): 84, 25, 31, (435,550,0): 84, 29, 34, (435,551,0): 87, 32, 37, (435,552,0): 75, 20, 25, (435,553,0): 84, 21, 30, (435,554,0): 96, 19, 35, (435,555,0): 107, 19, 41, (435,556,0): 123, 27, 54, (435,557,0): 139, 38, 68, (435,558,0): 141, 44, 75, (435,559,0): 140, 44, 71, (435,560,0): 147, 48, 68, (435,561,0): 141, 46, 66, (435,562,0): 129, 43, 72, (435,563,0): 117, 43, 78, (435,564,0): 107, 46, 87, (435,565,0): 100, 52, 94, (435,566,0): 95, 53, 93, (435,567,0): 90, 52, 91, (435,568,0): 86, 46, 83, (435,569,0): 89, 49, 84, (435,570,0): 95, 51, 87, (435,571,0): 95, 49, 85, (435,572,0): 91, 46, 77, (435,573,0): 87, 44, 71, (435,574,0): 85, 46, 65, (435,575,0): 86, 50, 62, (435,576,0): 85, 52, 59, (435,577,0): 85, 55, 57, (435,578,0): 86, 56, 58, (435,579,0): 85, 55, 57, (435,580,0): 82, 53, 57, (435,581,0): 79, 50, 54, (435,582,0): 75, 46, 51, (435,583,0): 71, 44, 49, (435,584,0): 75, 48, 55, (435,585,0): 76, 49, 56, (435,586,0): 76, 50, 59, (435,587,0): 76, 50, 59, (435,588,0): 74, 51, 61, (435,589,0): 72, 49, 59, (435,590,0): 70, 47, 57, (435,591,0): 69, 46, 56, (435,592,0): 69, 47, 59, (435,593,0): 68, 46, 58, (435,594,0): 67, 45, 57, (435,595,0): 66, 44, 56, (435,596,0): 64, 42, 54, (435,597,0): 63, 41, 53, (435,598,0): 61, 39, 51, (435,599,0): 61, 39, 51, (436,0,0): 74, 80, 68, (436,1,0): 73, 79, 67, (436,2,0): 73, 79, 67, (436,3,0): 72, 78, 66, (436,4,0): 72, 78, 66, (436,5,0): 71, 77, 65, (436,6,0): 71, 77, 65, (436,7,0): 71, 77, 65, (436,8,0): 72, 78, 66, (436,9,0): 72, 78, 66, (436,10,0): 72, 78, 66, (436,11,0): 72, 78, 66, (436,12,0): 72, 78, 66, (436,13,0): 72, 78, 66, (436,14,0): 72, 78, 66, (436,15,0): 72, 78, 66, (436,16,0): 73, 79, 67, (436,17,0): 73, 79, 67, (436,18,0): 73, 79, 67, (436,19,0): 74, 80, 68, (436,20,0): 74, 80, 68, (436,21,0): 75, 81, 69, (436,22,0): 75, 81, 69, (436,23,0): 75, 81, 69, (436,24,0): 73, 79, 67, (436,25,0): 73, 79, 67, (436,26,0): 73, 79, 67, (436,27,0): 73, 79, 67, (436,28,0): 73, 79, 67, (436,29,0): 73, 79, 67, (436,30,0): 73, 79, 67, (436,31,0): 75, 78, 67, (436,32,0): 78, 80, 69, (436,33,0): 79, 79, 69, (436,34,0): 81, 78, 69, (436,35,0): 81, 78, 69, (436,36,0): 82, 79, 70, (436,37,0): 82, 79, 70, (436,38,0): 83, 79, 68, (436,39,0): 83, 79, 68, (436,40,0): 84, 78, 66, (436,41,0): 85, 79, 67, (436,42,0): 86, 80, 66, (436,43,0): 87, 81, 67, (436,44,0): 89, 81, 68, (436,45,0): 90, 82, 69, (436,46,0): 91, 83, 70, (436,47,0): 91, 83, 70, (436,48,0): 93, 86, 70, (436,49,0): 94, 87, 71, (436,50,0): 94, 87, 71, (436,51,0): 95, 88, 72, (436,52,0): 96, 89, 73, (436,53,0): 97, 90, 74, (436,54,0): 98, 91, 75, (436,55,0): 98, 91, 75, (436,56,0): 100, 93, 77, (436,57,0): 100, 93, 77, (436,58,0): 100, 93, 77, (436,59,0): 100, 93, 77, (436,60,0): 100, 93, 77, (436,61,0): 100, 93, 77, (436,62,0): 100, 93, 77, (436,63,0): 99, 93, 77, (436,64,0): 94, 88, 74, (436,65,0): 92, 89, 74, (436,66,0): 94, 88, 74, (436,67,0): 94, 88, 74, (436,68,0): 94, 88, 74, (436,69,0): 94, 88, 74, (436,70,0): 95, 87, 74, (436,71,0): 95, 87, 74, (436,72,0): 96, 86, 74, (436,73,0): 95, 85, 73, (436,74,0): 94, 84, 72, (436,75,0): 93, 83, 71, (436,76,0): 93, 81, 69, (436,77,0): 92, 80, 68, (436,78,0): 90, 78, 66, (436,79,0): 88, 78, 66, (436,80,0): 85, 75, 63, (436,81,0): 84, 76, 63, (436,82,0): 84, 76, 63, (436,83,0): 83, 75, 62, (436,84,0): 81, 73, 60, (436,85,0): 80, 72, 59, (436,86,0): 79, 71, 58, (436,87,0): 78, 70, 57, (436,88,0): 80, 72, 59, (436,89,0): 80, 72, 59, (436,90,0): 79, 71, 58, (436,91,0): 78, 70, 57, (436,92,0): 76, 68, 55, (436,93,0): 73, 65, 52, (436,94,0): 71, 63, 50, (436,95,0): 70, 61, 46, (436,96,0): 72, 56, 43, (436,97,0): 71, 53, 39, (436,98,0): 70, 52, 38, (436,99,0): 68, 50, 36, (436,100,0): 67, 49, 35, (436,101,0): 66, 48, 34, (436,102,0): 67, 49, 35, (436,103,0): 67, 49, 35, (436,104,0): 66, 48, 34, (436,105,0): 66, 48, 34, (436,106,0): 66, 48, 34, (436,107,0): 66, 48, 34, (436,108,0): 66, 48, 34, (436,109,0): 66, 48, 34, (436,110,0): 66, 48, 34, (436,111,0): 66, 48, 34, (436,112,0): 66, 46, 37, (436,113,0): 66, 46, 37, (436,114,0): 66, 46, 37, (436,115,0): 65, 45, 36, (436,116,0): 65, 45, 36, (436,117,0): 65, 45, 36, (436,118,0): 65, 45, 36, (436,119,0): 65, 45, 36, (436,120,0): 67, 47, 38, (436,121,0): 66, 46, 37, (436,122,0): 66, 46, 37, (436,123,0): 66, 46, 37, (436,124,0): 67, 47, 38, (436,125,0): 69, 49, 40, (436,126,0): 71, 51, 42, (436,127,0): 72, 52, 43, (436,128,0): 72, 53, 47, (436,129,0): 72, 53, 47, (436,130,0): 73, 54, 48, (436,131,0): 74, 55, 49, (436,132,0): 75, 56, 50, (436,133,0): 76, 57, 51, (436,134,0): 77, 58, 52, (436,135,0): 77, 58, 52, (436,136,0): 77, 58, 52, (436,137,0): 77, 58, 52, (436,138,0): 78, 59, 53, (436,139,0): 79, 60, 54, (436,140,0): 80, 61, 55, (436,141,0): 81, 62, 56, (436,142,0): 82, 63, 57, (436,143,0): 82, 63, 57, (436,144,0): 85, 64, 59, (436,145,0): 85, 64, 59, (436,146,0): 84, 65, 61, (436,147,0): 84, 65, 61, (436,148,0): 86, 67, 63, (436,149,0): 88, 69, 65, (436,150,0): 89, 71, 69, (436,151,0): 90, 72, 70, (436,152,0): 91, 75, 75, (436,153,0): 92, 76, 76, (436,154,0): 94, 78, 78, (436,155,0): 96, 80, 80, (436,156,0): 97, 83, 83, (436,157,0): 100, 86, 86, (436,158,0): 101, 87, 87, (436,159,0): 102, 88, 88, (436,160,0): 98, 87, 85, (436,161,0): 99, 88, 86, (436,162,0): 102, 88, 87, (436,163,0): 103, 89, 88, (436,164,0): 104, 90, 89, (436,165,0): 106, 92, 91, (436,166,0): 108, 92, 92, (436,167,0): 108, 92, 92, (436,168,0): 108, 90, 90, (436,169,0): 109, 91, 91, (436,170,0): 110, 92, 92, (436,171,0): 111, 93, 93, (436,172,0): 113, 93, 94, (436,173,0): 112, 92, 93, (436,174,0): 112, 92, 93, (436,175,0): 111, 91, 90, (436,176,0): 106, 88, 86, (436,177,0): 106, 88, 84, (436,178,0): 108, 89, 85, (436,179,0): 108, 89, 85, (436,180,0): 109, 90, 86, (436,181,0): 110, 91, 87, (436,182,0): 111, 90, 87, (436,183,0): 111, 90, 87, (436,184,0): 114, 90, 88, (436,185,0): 115, 91, 89, (436,186,0): 116, 92, 90, (436,187,0): 118, 94, 92, (436,188,0): 120, 94, 93, (436,189,0): 120, 94, 93, (436,190,0): 119, 93, 92, (436,191,0): 118, 93, 89, (436,192,0): 122, 95, 88, (436,193,0): 121, 94, 85, (436,194,0): 119, 90, 82, (436,195,0): 116, 87, 79, (436,196,0): 113, 84, 76, (436,197,0): 109, 80, 72, (436,198,0): 108, 78, 70, (436,199,0): 106, 76, 68, (436,200,0): 107, 74, 67, (436,201,0): 106, 73, 66, (436,202,0): 105, 72, 65, (436,203,0): 103, 70, 63, (436,204,0): 102, 67, 61, (436,205,0): 101, 66, 60, (436,206,0): 101, 66, 60, (436,207,0): 100, 67, 62, (436,208,0): 97, 69, 65, (436,209,0): 103, 78, 74, (436,210,0): 106, 78, 75, (436,211,0): 111, 83, 80, (436,212,0): 123, 93, 91, (436,213,0): 134, 104, 102, (436,214,0): 161, 131, 133, (436,215,0): 196, 167, 171, (436,216,0): 215, 188, 193, (436,217,0): 216, 195, 202, (436,218,0): 211, 194, 204, (436,219,0): 200, 188, 200, (436,220,0): 194, 188, 202, (436,221,0): 196, 193, 210, (436,222,0): 192, 193, 211, (436,223,0): 185, 188, 207, (436,224,0): 187, 189, 212, (436,225,0): 185, 189, 214, (436,226,0): 182, 189, 215, (436,227,0): 179, 189, 216, (436,228,0): 175, 189, 216, (436,229,0): 173, 190, 218, (436,230,0): 169, 190, 221, (436,231,0): 166, 191, 222, (436,232,0): 163, 189, 224, (436,233,0): 159, 189, 225, (436,234,0): 157, 187, 225, (436,235,0): 154, 186, 225, (436,236,0): 153, 185, 226, (436,237,0): 152, 183, 227, (436,238,0): 153, 184, 230, (436,239,0): 153, 184, 230, (436,240,0): 152, 183, 227, (436,241,0): 152, 184, 225, (436,242,0): 152, 185, 230, (436,243,0): 153, 186, 231, (436,244,0): 153, 187, 235, (436,245,0): 153, 186, 237, (436,246,0): 152, 188, 240, (436,247,0): 152, 187, 243, (436,248,0): 152, 188, 246, (436,249,0): 150, 189, 248, (436,250,0): 151, 189, 252, (436,251,0): 150, 189, 254, (436,252,0): 150, 189, 255, (436,253,0): 148, 188, 255, (436,254,0): 146, 186, 255, (436,255,0): 142, 187, 255, (436,256,0): 138, 187, 254, (436,257,0): 137, 188, 254, (436,258,0): 137, 187, 255, (436,259,0): 136, 186, 255, (436,260,0): 135, 185, 254, (436,261,0): 135, 185, 255, (436,262,0): 133, 186, 255, (436,263,0): 132, 185, 255, (436,264,0): 132, 186, 255, (436,265,0): 132, 186, 255, (436,266,0): 130, 187, 255, (436,267,0): 130, 186, 255, (436,268,0): 130, 186, 255, (436,269,0): 130, 186, 255, (436,270,0): 130, 186, 255, (436,271,0): 129, 187, 255, (436,272,0): 127, 186, 255, (436,273,0): 126, 187, 254, (436,274,0): 126, 187, 254, (436,275,0): 126, 187, 254, (436,276,0): 126, 187, 254, (436,277,0): 126, 187, 254, (436,278,0): 126, 187, 254, (436,279,0): 126, 187, 254, (436,280,0): 127, 188, 255, (436,281,0): 127, 188, 255, (436,282,0): 127, 188, 255, (436,283,0): 126, 187, 254, (436,284,0): 126, 187, 254, (436,285,0): 125, 186, 253, (436,286,0): 125, 186, 253, (436,287,0): 123, 186, 253, (436,288,0): 124, 189, 255, (436,289,0): 124, 189, 255, (436,290,0): 127, 188, 255, (436,291,0): 129, 186, 255, (436,292,0): 132, 185, 255, (436,293,0): 132, 185, 255, (436,294,0): 134, 184, 255, (436,295,0): 132, 185, 255, (436,296,0): 129, 183, 253, (436,297,0): 127, 184, 253, (436,298,0): 127, 184, 253, (436,299,0): 129, 183, 253, (436,300,0): 132, 182, 253, (436,301,0): 134, 181, 253, (436,302,0): 137, 179, 253, (436,303,0): 143, 177, 251, (436,304,0): 149, 171, 247, (436,305,0): 159, 171, 245, (436,306,0): 153, 154, 219, (436,307,0): 123, 114, 169, (436,308,0): 91, 72, 117, (436,309,0): 74, 47, 82, (436,310,0): 71, 38, 65, (436,311,0): 68, 36, 57, (436,312,0): 61, 33, 48, (436,313,0): 57, 33, 46, (436,314,0): 53, 33, 44, (436,315,0): 48, 31, 41, (436,316,0): 45, 29, 39, (436,317,0): 43, 26, 34, (436,318,0): 42, 25, 31, (436,319,0): 41, 24, 32, (436,320,0): 37, 21, 32, (436,321,0): 35, 21, 34, (436,322,0): 34, 20, 33, (436,323,0): 34, 20, 33, (436,324,0): 33, 19, 32, (436,325,0): 33, 19, 32, (436,326,0): 32, 18, 31, (436,327,0): 32, 18, 31, (436,328,0): 32, 18, 31, (436,329,0): 32, 18, 31, (436,330,0): 32, 18, 31, (436,331,0): 31, 17, 30, (436,332,0): 30, 16, 29, (436,333,0): 30, 16, 29, (436,334,0): 30, 16, 29, (436,335,0): 29, 15, 28, (436,336,0): 31, 18, 28, (436,337,0): 30, 17, 27, (436,338,0): 29, 16, 26, (436,339,0): 28, 15, 25, (436,340,0): 28, 15, 25, (436,341,0): 29, 16, 26, (436,342,0): 30, 17, 27, (436,343,0): 31, 18, 28, (436,344,0): 29, 16, 26, (436,345,0): 29, 16, 26, (436,346,0): 29, 16, 26, (436,347,0): 28, 15, 25, (436,348,0): 28, 15, 25, (436,349,0): 27, 14, 24, (436,350,0): 27, 14, 24, (436,351,0): 27, 14, 24, (436,352,0): 26, 14, 28, (436,353,0): 26, 14, 28, (436,354,0): 26, 14, 28, (436,355,0): 26, 14, 28, (436,356,0): 25, 14, 28, (436,357,0): 25, 14, 28, (436,358,0): 25, 14, 28, (436,359,0): 25, 14, 28, (436,360,0): 25, 17, 30, (436,361,0): 24, 16, 29, (436,362,0): 21, 15, 27, (436,363,0): 21, 15, 27, (436,364,0): 21, 15, 27, (436,365,0): 23, 17, 29, (436,366,0): 23, 20, 31, (436,367,0): 27, 21, 33, (436,368,0): 28, 17, 31, (436,369,0): 28, 16, 30, (436,370,0): 28, 16, 30, (436,371,0): 28, 16, 30, (436,372,0): 27, 15, 29, (436,373,0): 26, 14, 28, (436,374,0): 26, 14, 28, (436,375,0): 26, 14, 28, (436,376,0): 27, 15, 29, (436,377,0): 27, 15, 29, (436,378,0): 27, 15, 29, (436,379,0): 27, 15, 29, (436,380,0): 27, 15, 29, (436,381,0): 27, 15, 29, (436,382,0): 27, 15, 29, (436,383,0): 26, 15, 29, (436,384,0): 26, 15, 32, (436,385,0): 23, 14, 31, (436,386,0): 22, 13, 30, (436,387,0): 21, 12, 29, (436,388,0): 21, 12, 29, (436,389,0): 22, 13, 30, (436,390,0): 23, 14, 31, (436,391,0): 24, 15, 32, (436,392,0): 24, 15, 32, (436,393,0): 24, 15, 32, (436,394,0): 24, 15, 32, (436,395,0): 23, 14, 31, (436,396,0): 23, 14, 31, (436,397,0): 22, 13, 30, (436,398,0): 22, 13, 30, (436,399,0): 21, 14, 30, (436,400,0): 17, 15, 29, (436,401,0): 16, 15, 29, (436,402,0): 15, 14, 28, (436,403,0): 15, 14, 28, (436,404,0): 15, 14, 28, (436,405,0): 14, 13, 27, (436,406,0): 14, 13, 27, (436,407,0): 14, 13, 27, (436,408,0): 14, 13, 27, (436,409,0): 14, 13, 27, (436,410,0): 15, 14, 28, (436,411,0): 16, 15, 29, (436,412,0): 19, 18, 32, (436,413,0): 22, 21, 35, (436,414,0): 24, 23, 37, (436,415,0): 26, 26, 38, (436,416,0): 23, 21, 34, (436,417,0): 26, 24, 35, (436,418,0): 29, 26, 37, (436,419,0): 28, 25, 36, (436,420,0): 27, 24, 35, (436,421,0): 27, 24, 35, (436,422,0): 31, 25, 37, (436,423,0): 34, 28, 40, (436,424,0): 32, 24, 37, (436,425,0): 35, 27, 40, (436,426,0): 38, 30, 43, (436,427,0): 40, 32, 45, (436,428,0): 46, 35, 49, (436,429,0): 53, 42, 56, (436,430,0): 62, 51, 65, (436,431,0): 69, 58, 74, (436,432,0): 78, 69, 90, (436,433,0): 79, 70, 91, (436,434,0): 83, 71, 93, (436,435,0): 85, 73, 93, (436,436,0): 86, 74, 94, (436,437,0): 86, 75, 92, (436,438,0): 87, 74, 92, (436,439,0): 86, 73, 90, (436,440,0): 89, 75, 90, (436,441,0): 87, 73, 86, (436,442,0): 85, 71, 84, (436,443,0): 82, 69, 79, (436,444,0): 81, 65, 76, (436,445,0): 79, 63, 73, (436,446,0): 78, 62, 72, (436,447,0): 75, 62, 69, (436,448,0): 70, 64, 68, (436,449,0): 68, 63, 67, (436,450,0): 69, 64, 68, (436,451,0): 74, 69, 73, (436,452,0): 82, 76, 80, (436,453,0): 90, 84, 86, (436,454,0): 97, 88, 91, (436,455,0): 100, 90, 91, (436,456,0): 108, 96, 98, (436,457,0): 104, 92, 92, (436,458,0): 117, 101, 102, (436,459,0): 135, 119, 120, (436,460,0): 135, 116, 118, (436,461,0): 113, 95, 95, (436,462,0): 95, 77, 77, (436,463,0): 92, 74, 72, (436,464,0): 81, 64, 57, (436,465,0): 75, 58, 50, (436,466,0): 68, 51, 43, (436,467,0): 60, 46, 37, (436,468,0): 59, 46, 37, (436,469,0): 65, 53, 41, (436,470,0): 70, 60, 48, (436,471,0): 75, 65, 53, (436,472,0): 74, 67, 51, (436,473,0): 77, 71, 55, (436,474,0): 86, 83, 66, (436,475,0): 98, 101, 82, (436,476,0): 102, 116, 93, (436,477,0): 103, 127, 101, (436,478,0): 107, 142, 112, (436,479,0): 110, 155, 132, (436,480,0): 118, 178, 170, (436,481,0): 127, 187, 188, (436,482,0): 143, 187, 196, (436,483,0): 146, 180, 190, (436,484,0): 144, 173, 179, (436,485,0): 142, 166, 168, (436,486,0): 136, 157, 150, (436,487,0): 134, 148, 135, (436,488,0): 132, 134, 120, (436,489,0): 127, 124, 107, (436,490,0): 119, 112, 94, (436,491,0): 117, 106, 88, (436,492,0): 122, 107, 88, (436,493,0): 129, 107, 86, (436,494,0): 136, 101, 81, (436,495,0): 135, 97, 78, (436,496,0): 115, 79, 67, (436,497,0): 110, 76, 66, (436,498,0): 111, 79, 64, (436,499,0): 122, 85, 67, (436,500,0): 137, 90, 74, (436,501,0): 160, 98, 87, (436,502,0): 194, 113, 112, (436,503,0): 223, 128, 136, (436,504,0): 225, 120, 137, (436,505,0): 223, 121, 142, (436,506,0): 206, 117, 139, (436,507,0): 180, 105, 125, (436,508,0): 160, 99, 114, (436,509,0): 150, 100, 111, (436,510,0): 141, 99, 103, (436,511,0): 135, 90, 97, (436,512,0): 125, 67, 82, (436,513,0): 128, 64, 81, (436,514,0): 124, 56, 71, (436,515,0): 119, 45, 60, (436,516,0): 123, 40, 56, (436,517,0): 133, 45, 61, (436,518,0): 147, 50, 70, (436,519,0): 153, 50, 71, (436,520,0): 162, 55, 75, (436,521,0): 161, 54, 70, (436,522,0): 153, 49, 60, (436,523,0): 150, 50, 58, (436,524,0): 152, 57, 61, (436,525,0): 143, 52, 57, (436,526,0): 139, 50, 56, (436,527,0): 157, 57, 67, (436,528,0): 194, 68, 80, (436,529,0): 201, 66, 81, (436,530,0): 186, 61, 77, (436,531,0): 164, 49, 66, (436,532,0): 147, 44, 63, (436,533,0): 142, 48, 66, (436,534,0): 137, 44, 63, (436,535,0): 130, 36, 54, (436,536,0): 145, 42, 61, (436,537,0): 155, 46, 65, (436,538,0): 161, 50, 69, (436,539,0): 153, 46, 64, (436,540,0): 133, 41, 56, (436,541,0): 112, 35, 45, (436,542,0): 92, 33, 39, (436,543,0): 81, 32, 36, (436,544,0): 78, 32, 35, (436,545,0): 82, 33, 36, (436,546,0): 89, 32, 38, (436,547,0): 92, 31, 36, (436,548,0): 90, 28, 33, (436,549,0): 86, 25, 30, (436,550,0): 85, 29, 32, (436,551,0): 90, 31, 35, (436,552,0): 95, 28, 35, (436,553,0): 112, 32, 43, (436,554,0): 130, 31, 51, (436,555,0): 142, 32, 57, (436,556,0): 156, 38, 70, (436,557,0): 164, 49, 82, (436,558,0): 158, 51, 81, (436,559,0): 146, 46, 72, (436,560,0): 133, 39, 57, (436,561,0): 127, 37, 62, (436,562,0): 116, 37, 82, (436,563,0): 109, 41, 100, (436,564,0): 102, 47, 114, (436,565,0): 94, 49, 116, (436,566,0): 89, 50, 107, (436,567,0): 87, 51, 99, (436,568,0): 81, 43, 84, (436,569,0): 87, 47, 84, (436,570,0): 94, 49, 88, (436,571,0): 95, 49, 88, (436,572,0): 92, 46, 83, (436,573,0): 88, 44, 77, (436,574,0): 85, 47, 72, (436,575,0): 84, 50, 66, (436,576,0): 81, 50, 56, (436,577,0): 81, 51, 53, (436,578,0): 82, 51, 56, (436,579,0): 83, 52, 57, (436,580,0): 82, 51, 56, (436,581,0): 79, 50, 54, (436,582,0): 77, 48, 53, (436,583,0): 76, 47, 52, (436,584,0): 73, 46, 53, (436,585,0): 73, 46, 53, (436,586,0): 73, 48, 54, (436,587,0): 73, 48, 54, (436,588,0): 72, 46, 55, (436,589,0): 71, 45, 54, (436,590,0): 70, 44, 53, (436,591,0): 67, 44, 52, (436,592,0): 70, 49, 58, (436,593,0): 69, 48, 57, (436,594,0): 68, 47, 56, (436,595,0): 66, 45, 54, (436,596,0): 65, 44, 53, (436,597,0): 63, 42, 51, (436,598,0): 62, 41, 50, (436,599,0): 61, 40, 49, (437,0,0): 73, 79, 67, (437,1,0): 73, 79, 67, (437,2,0): 73, 79, 67, (437,3,0): 72, 78, 66, (437,4,0): 71, 77, 65, (437,5,0): 71, 77, 65, (437,6,0): 71, 77, 65, (437,7,0): 70, 76, 64, (437,8,0): 72, 78, 66, (437,9,0): 72, 78, 66, (437,10,0): 72, 78, 66, (437,11,0): 72, 78, 66, (437,12,0): 72, 78, 66, (437,13,0): 72, 78, 66, (437,14,0): 72, 78, 66, (437,15,0): 72, 78, 66, (437,16,0): 73, 79, 67, (437,17,0): 73, 79, 67, (437,18,0): 73, 79, 67, (437,19,0): 74, 80, 68, (437,20,0): 74, 80, 68, (437,21,0): 75, 81, 69, (437,22,0): 75, 81, 69, (437,23,0): 75, 81, 69, (437,24,0): 74, 80, 68, (437,25,0): 74, 80, 68, (437,26,0): 74, 80, 68, (437,27,0): 74, 80, 68, (437,28,0): 74, 80, 68, (437,29,0): 74, 80, 68, (437,30,0): 74, 80, 68, (437,31,0): 76, 79, 68, (437,32,0): 78, 80, 69, (437,33,0): 79, 79, 69, (437,34,0): 81, 78, 69, (437,35,0): 81, 78, 69, (437,36,0): 82, 79, 70, (437,37,0): 82, 79, 70, (437,38,0): 83, 79, 68, (437,39,0): 83, 79, 68, (437,40,0): 84, 78, 66, (437,41,0): 84, 78, 66, (437,42,0): 85, 79, 65, (437,43,0): 86, 80, 66, (437,44,0): 88, 80, 67, (437,45,0): 89, 81, 68, (437,46,0): 90, 82, 69, (437,47,0): 90, 82, 69, (437,48,0): 94, 87, 71, (437,49,0): 94, 87, 71, (437,50,0): 94, 87, 71, (437,51,0): 95, 88, 72, (437,52,0): 96, 89, 73, (437,53,0): 96, 89, 73, (437,54,0): 97, 90, 74, (437,55,0): 97, 90, 74, (437,56,0): 98, 91, 75, (437,57,0): 98, 91, 75, (437,58,0): 98, 91, 75, (437,59,0): 98, 91, 75, (437,60,0): 98, 91, 75, (437,61,0): 98, 91, 75, (437,62,0): 98, 91, 75, (437,63,0): 98, 91, 75, (437,64,0): 93, 87, 73, (437,65,0): 91, 88, 73, (437,66,0): 93, 87, 73, (437,67,0): 93, 87, 73, (437,68,0): 93, 87, 73, (437,69,0): 93, 87, 73, (437,70,0): 94, 86, 73, (437,71,0): 94, 86, 73, (437,72,0): 95, 85, 73, (437,73,0): 94, 84, 72, (437,74,0): 93, 83, 71, (437,75,0): 92, 82, 70, (437,76,0): 92, 80, 68, (437,77,0): 91, 79, 67, (437,78,0): 89, 77, 65, (437,79,0): 89, 77, 65, (437,80,0): 84, 74, 62, (437,81,0): 83, 75, 62, (437,82,0): 83, 75, 62, (437,83,0): 82, 74, 61, (437,84,0): 81, 73, 60, (437,85,0): 78, 70, 57, (437,86,0): 76, 68, 55, (437,87,0): 75, 67, 54, (437,88,0): 77, 69, 56, (437,89,0): 77, 69, 56, (437,90,0): 77, 69, 56, (437,91,0): 76, 68, 55, (437,92,0): 74, 66, 53, (437,93,0): 72, 64, 51, (437,94,0): 70, 62, 49, (437,95,0): 69, 60, 45, (437,96,0): 72, 56, 43, (437,97,0): 71, 53, 39, (437,98,0): 70, 52, 38, (437,99,0): 68, 50, 36, (437,100,0): 67, 49, 35, (437,101,0): 66, 48, 34, (437,102,0): 67, 49, 35, (437,103,0): 67, 49, 35, (437,104,0): 66, 48, 34, (437,105,0): 66, 48, 34, (437,106,0): 66, 48, 34, (437,107,0): 66, 48, 34, (437,108,0): 66, 48, 34, (437,109,0): 66, 48, 34, (437,110,0): 66, 48, 34, (437,111,0): 66, 48, 34, (437,112,0): 67, 47, 38, (437,113,0): 67, 47, 38, (437,114,0): 66, 46, 37, (437,115,0): 66, 46, 37, (437,116,0): 66, 46, 37, (437,117,0): 65, 45, 36, (437,118,0): 65, 45, 36, (437,119,0): 65, 45, 36, (437,120,0): 67, 47, 38, (437,121,0): 66, 46, 37, (437,122,0): 66, 46, 37, (437,123,0): 66, 46, 37, (437,124,0): 67, 47, 38, (437,125,0): 69, 49, 40, (437,126,0): 71, 51, 42, (437,127,0): 72, 52, 43, (437,128,0): 72, 53, 47, (437,129,0): 72, 53, 47, (437,130,0): 73, 54, 48, (437,131,0): 74, 55, 49, (437,132,0): 75, 56, 50, (437,133,0): 76, 57, 51, (437,134,0): 77, 58, 52, (437,135,0): 77, 58, 52, (437,136,0): 78, 59, 53, (437,137,0): 78, 59, 53, (437,138,0): 79, 60, 54, (437,139,0): 80, 61, 55, (437,140,0): 81, 62, 56, (437,141,0): 82, 63, 57, (437,142,0): 83, 64, 58, (437,143,0): 84, 65, 59, (437,144,0): 86, 65, 60, (437,145,0): 86, 65, 60, (437,146,0): 84, 65, 61, (437,147,0): 85, 66, 62, (437,148,0): 86, 67, 63, (437,149,0): 88, 69, 65, (437,150,0): 89, 71, 69, (437,151,0): 90, 72, 70, (437,152,0): 91, 73, 73, (437,153,0): 90, 74, 74, (437,154,0): 92, 76, 76, (437,155,0): 93, 77, 77, (437,156,0): 94, 80, 80, (437,157,0): 96, 82, 82, (437,158,0): 98, 84, 84, (437,159,0): 98, 84, 84, (437,160,0): 96, 85, 83, (437,161,0): 96, 85, 83, (437,162,0): 99, 85, 84, (437,163,0): 100, 86, 85, (437,164,0): 101, 87, 86, (437,165,0): 103, 89, 88, (437,166,0): 104, 88, 88, (437,167,0): 105, 89, 89, (437,168,0): 105, 87, 87, (437,169,0): 105, 87, 87, (437,170,0): 106, 88, 88, (437,171,0): 107, 89, 89, (437,172,0): 108, 88, 89, (437,173,0): 108, 88, 89, (437,174,0): 107, 87, 88, (437,175,0): 106, 86, 85, (437,176,0): 103, 85, 83, (437,177,0): 103, 85, 81, (437,178,0): 105, 86, 82, (437,179,0): 106, 87, 83, (437,180,0): 106, 87, 83, (437,181,0): 107, 88, 84, (437,182,0): 109, 88, 85, (437,183,0): 109, 88, 85, (437,184,0): 111, 87, 85, (437,185,0): 112, 88, 86, (437,186,0): 114, 90, 88, (437,187,0): 115, 91, 89, (437,188,0): 118, 92, 91, (437,189,0): 118, 92, 91, (437,190,0): 117, 91, 90, (437,191,0): 117, 92, 88, (437,192,0): 120, 93, 86, (437,193,0): 119, 92, 83, (437,194,0): 118, 89, 81, (437,195,0): 115, 86, 78, (437,196,0): 112, 83, 75, (437,197,0): 109, 80, 72, (437,198,0): 108, 78, 70, (437,199,0): 107, 77, 69, (437,200,0): 107, 74, 67, (437,201,0): 106, 73, 66, (437,202,0): 105, 72, 65, (437,203,0): 104, 71, 64, (437,204,0): 104, 69, 63, (437,205,0): 102, 67, 61, (437,206,0): 102, 67, 61, (437,207,0): 100, 67, 62, (437,208,0): 98, 70, 67, (437,209,0): 101, 76, 72, (437,210,0): 103, 75, 72, (437,211,0): 108, 80, 77, (437,212,0): 118, 88, 86, (437,213,0): 125, 95, 93, (437,214,0): 148, 118, 118, (437,215,0): 182, 153, 155, (437,216,0): 205, 178, 183, (437,217,0): 212, 189, 197, (437,218,0): 212, 195, 205, (437,219,0): 202, 189, 199, (437,220,0): 195, 187, 202, (437,221,0): 198, 194, 209, (437,222,0): 197, 194, 211, (437,223,0): 191, 190, 208, (437,224,0): 191, 192, 213, (437,225,0): 189, 191, 214, (437,226,0): 185, 191, 215, (437,227,0): 183, 190, 216, (437,228,0): 179, 191, 217, (437,229,0): 174, 190, 216, (437,230,0): 171, 190, 220, (437,231,0): 167, 190, 221, (437,232,0): 165, 191, 224, (437,233,0): 162, 191, 225, (437,234,0): 160, 188, 225, (437,235,0): 157, 187, 225, (437,236,0): 156, 185, 225, (437,237,0): 156, 185, 227, (437,238,0): 156, 185, 229, (437,239,0): 156, 185, 229, (437,240,0): 154, 186, 227, (437,241,0): 154, 186, 227, (437,242,0): 154, 185, 231, (437,243,0): 154, 187, 232, (437,244,0): 154, 186, 235, (437,245,0): 154, 187, 238, (437,246,0): 152, 188, 240, (437,247,0): 152, 189, 244, (437,248,0): 152, 188, 246, (437,249,0): 151, 190, 249, (437,250,0): 151, 191, 253, (437,251,0): 150, 191, 255, (437,252,0): 149, 190, 255, (437,253,0): 146, 189, 255, (437,254,0): 145, 188, 255, (437,255,0): 143, 188, 255, (437,256,0): 138, 187, 255, (437,257,0): 136, 186, 255, (437,258,0): 136, 186, 255, (437,259,0): 135, 185, 254, (437,260,0): 135, 185, 255, (437,261,0): 134, 184, 255, (437,262,0): 132, 185, 255, (437,263,0): 132, 184, 255, (437,264,0): 130, 184, 255, (437,265,0): 130, 184, 255, (437,266,0): 128, 184, 255, (437,267,0): 128, 184, 255, (437,268,0): 128, 184, 255, (437,269,0): 128, 184, 255, (437,270,0): 128, 184, 255, (437,271,0): 127, 185, 255, (437,272,0): 127, 186, 255, (437,273,0): 126, 187, 254, (437,274,0): 126, 187, 254, (437,275,0): 126, 187, 254, (437,276,0): 126, 187, 254, (437,277,0): 126, 187, 254, (437,278,0): 126, 187, 254, (437,279,0): 126, 187, 254, (437,280,0): 127, 188, 255, (437,281,0): 127, 188, 255, (437,282,0): 127, 188, 255, (437,283,0): 126, 187, 254, (437,284,0): 126, 187, 254, (437,285,0): 125, 186, 253, (437,286,0): 125, 186, 253, (437,287,0): 123, 186, 253, (437,288,0): 124, 189, 255, (437,289,0): 124, 189, 255, (437,290,0): 127, 188, 255, (437,291,0): 128, 187, 255, (437,292,0): 131, 185, 255, (437,293,0): 131, 185, 255, (437,294,0): 132, 185, 255, (437,295,0): 131, 185, 255, (437,296,0): 126, 183, 252, (437,297,0): 126, 183, 252, (437,298,0): 126, 183, 252, (437,299,0): 128, 182, 252, (437,300,0): 131, 181, 252, (437,301,0): 133, 180, 252, (437,302,0): 136, 178, 252, (437,303,0): 143, 175, 250, (437,304,0): 152, 168, 245, (437,305,0): 156, 158, 232, (437,306,0): 135, 130, 194, (437,307,0): 99, 86, 139, (437,308,0): 74, 51, 93, (437,309,0): 68, 39, 70, (437,310,0): 68, 36, 60, (437,311,0): 65, 34, 52, (437,312,0): 58, 29, 47, (437,313,0): 54, 30, 44, (437,314,0): 49, 28, 43, (437,315,0): 43, 27, 38, (437,316,0): 41, 25, 36, (437,317,0): 40, 25, 32, (437,318,0): 39, 24, 29, (437,319,0): 39, 24, 29, (437,320,0): 34, 21, 31, (437,321,0): 34, 20, 33, (437,322,0): 33, 19, 32, (437,323,0): 33, 19, 32, (437,324,0): 32, 18, 31, (437,325,0): 32, 18, 31, (437,326,0): 31, 17, 30, (437,327,0): 31, 17, 30, (437,328,0): 32, 18, 31, (437,329,0): 31, 17, 30, (437,330,0): 31, 17, 30, (437,331,0): 30, 16, 29, (437,332,0): 30, 16, 29, (437,333,0): 29, 15, 28, (437,334,0): 29, 15, 28, (437,335,0): 29, 15, 28, (437,336,0): 31, 18, 28, (437,337,0): 30, 17, 27, (437,338,0): 29, 16, 26, (437,339,0): 28, 15, 25, (437,340,0): 28, 15, 25, (437,341,0): 29, 16, 26, (437,342,0): 30, 17, 27, (437,343,0): 31, 18, 28, (437,344,0): 29, 16, 26, (437,345,0): 29, 16, 26, (437,346,0): 29, 16, 26, (437,347,0): 28, 15, 25, (437,348,0): 28, 15, 25, (437,349,0): 27, 14, 24, (437,350,0): 27, 14, 24, (437,351,0): 27, 14, 24, (437,352,0): 26, 14, 28, (437,353,0): 26, 14, 28, (437,354,0): 26, 14, 28, (437,355,0): 26, 14, 28, (437,356,0): 25, 14, 28, (437,357,0): 25, 14, 28, (437,358,0): 25, 14, 28, (437,359,0): 25, 14, 28, (437,360,0): 24, 16, 29, (437,361,0): 23, 15, 28, (437,362,0): 22, 16, 28, (437,363,0): 22, 16, 28, (437,364,0): 22, 16, 28, (437,365,0): 23, 17, 29, (437,366,0): 23, 20, 31, (437,367,0): 25, 19, 31, (437,368,0): 28, 17, 31, (437,369,0): 29, 17, 31, (437,370,0): 29, 17, 31, (437,371,0): 28, 16, 30, (437,372,0): 28, 16, 30, (437,373,0): 27, 15, 29, (437,374,0): 27, 15, 29, (437,375,0): 26, 14, 28, (437,376,0): 28, 16, 30, (437,377,0): 28, 16, 30, (437,378,0): 28, 16, 30, (437,379,0): 28, 16, 30, (437,380,0): 28, 16, 30, (437,381,0): 28, 16, 30, (437,382,0): 28, 16, 30, (437,383,0): 27, 16, 30, (437,384,0): 26, 15, 32, (437,385,0): 23, 14, 31, (437,386,0): 22, 13, 30, (437,387,0): 21, 12, 29, (437,388,0): 21, 12, 29, (437,389,0): 22, 13, 30, (437,390,0): 23, 14, 31, (437,391,0): 24, 15, 32, (437,392,0): 25, 16, 33, (437,393,0): 25, 16, 33, (437,394,0): 25, 16, 33, (437,395,0): 24, 15, 32, (437,396,0): 24, 15, 32, (437,397,0): 23, 14, 31, (437,398,0): 23, 14, 31, (437,399,0): 22, 15, 31, (437,400,0): 16, 14, 28, (437,401,0): 15, 14, 28, (437,402,0): 15, 14, 28, (437,403,0): 15, 14, 28, (437,404,0): 15, 14, 28, (437,405,0): 15, 14, 28, (437,406,0): 15, 14, 28, (437,407,0): 15, 14, 28, (437,408,0): 16, 15, 29, (437,409,0): 16, 15, 29, (437,410,0): 17, 16, 30, (437,411,0): 19, 18, 32, (437,412,0): 22, 21, 35, (437,413,0): 25, 24, 38, (437,414,0): 28, 27, 41, (437,415,0): 30, 30, 42, (437,416,0): 26, 24, 37, (437,417,0): 27, 25, 36, (437,418,0): 29, 26, 37, (437,419,0): 28, 25, 36, (437,420,0): 26, 23, 34, (437,421,0): 26, 23, 34, (437,422,0): 31, 25, 37, (437,423,0): 34, 28, 40, (437,424,0): 34, 26, 39, (437,425,0): 37, 29, 42, (437,426,0): 41, 33, 46, (437,427,0): 45, 37, 50, (437,428,0): 51, 40, 54, (437,429,0): 57, 46, 60, (437,430,0): 66, 55, 69, (437,431,0): 72, 61, 77, (437,432,0): 80, 68, 90, (437,433,0): 79, 69, 93, (437,434,0): 84, 72, 94, (437,435,0): 87, 75, 97, (437,436,0): 88, 76, 96, (437,437,0): 87, 75, 95, (437,438,0): 87, 74, 92, (437,439,0): 86, 73, 91, (437,440,0): 88, 74, 91, (437,441,0): 87, 73, 88, (437,442,0): 85, 71, 86, (437,443,0): 83, 69, 82, (437,444,0): 82, 66, 79, (437,445,0): 80, 64, 75, (437,446,0): 78, 62, 73, (437,447,0): 76, 63, 72, (437,448,0): 68, 58, 66, (437,449,0): 65, 60, 66, (437,450,0): 68, 62, 66, (437,451,0): 72, 66, 70, (437,452,0): 79, 73, 77, (437,453,0): 87, 78, 83, (437,454,0): 93, 82, 88, (437,455,0): 96, 85, 89, (437,456,0): 107, 95, 99, (437,457,0): 102, 87, 92, (437,458,0): 104, 87, 93, (437,459,0): 113, 97, 100, (437,460,0): 116, 97, 101, (437,461,0): 105, 86, 90, (437,462,0): 98, 79, 83, (437,463,0): 99, 80, 82, (437,464,0): 84, 69, 66, (437,465,0): 78, 63, 58, (437,466,0): 72, 54, 50, (437,467,0): 66, 49, 42, (437,468,0): 63, 49, 40, (437,469,0): 67, 53, 42, (437,470,0): 73, 59, 46, (437,471,0): 77, 65, 49, (437,472,0): 78, 66, 50, (437,473,0): 81, 73, 54, (437,474,0): 91, 86, 66, (437,475,0): 102, 106, 83, (437,476,0): 107, 123, 94, (437,477,0): 111, 141, 107, (437,478,0): 123, 165, 127, (437,479,0): 131, 188, 156, (437,480,0): 151, 222, 208, (437,481,0): 157, 227, 227, (437,482,0): 169, 226, 235, (437,483,0): 169, 217, 229, (437,484,0): 162, 206, 215, (437,485,0): 154, 193, 198, (437,486,0): 141, 175, 174, (437,487,0): 134, 157, 149, (437,488,0): 130, 140, 129, (437,489,0): 128, 129, 115, (437,490,0): 124, 116, 103, (437,491,0): 123, 110, 94, (437,492,0): 129, 110, 93, (437,493,0): 141, 114, 93, (437,494,0): 154, 113, 91, (437,495,0): 157, 114, 95, (437,496,0): 143, 103, 93, (437,497,0): 127, 93, 84, (437,498,0): 116, 84, 71, (437,499,0): 116, 83, 66, (437,500,0): 126, 84, 68, (437,501,0): 145, 88, 79, (437,502,0): 174, 98, 102, (437,503,0): 201, 107, 121, (437,504,0): 230, 123, 149, (437,505,0): 233, 125, 157, (437,506,0): 218, 121, 154, (437,507,0): 194, 107, 139, (437,508,0): 177, 101, 127, (437,509,0): 169, 102, 120, (437,510,0): 157, 93, 107, (437,511,0): 142, 80, 93, (437,512,0): 125, 57, 78, (437,513,0): 125, 57, 80, (437,514,0): 124, 55, 74, (437,515,0): 122, 49, 66, (437,516,0): 125, 44, 59, (437,517,0): 131, 43, 59, (437,518,0): 140, 38, 59, (437,519,0): 144, 37, 57, (437,520,0): 165, 52, 72, (437,521,0): 174, 59, 76, (437,522,0): 172, 62, 73, (437,523,0): 170, 65, 72, (437,524,0): 166, 65, 71, (437,525,0): 150, 53, 60, (437,526,0): 140, 47, 55, (437,527,0): 156, 55, 63, (437,528,0): 187, 65, 76, (437,529,0): 185, 58, 69, (437,530,0): 167, 47, 59, (437,531,0): 149, 37, 51, (437,532,0): 137, 35, 49, (437,533,0): 136, 39, 56, (437,534,0): 136, 42, 58, (437,535,0): 137, 40, 57, (437,536,0): 143, 42, 58, (437,537,0): 143, 41, 55, (437,538,0): 139, 34, 49, (437,539,0): 127, 29, 42, (437,540,0): 118, 32, 43, (437,541,0): 111, 38, 47, (437,542,0): 101, 42, 48, (437,543,0): 92, 40, 44, (437,544,0): 88, 36, 40, (437,545,0): 90, 34, 37, (437,546,0): 99, 32, 39, (437,547,0): 106, 35, 41, (437,548,0): 104, 33, 39, (437,549,0): 101, 30, 34, (437,550,0): 98, 32, 34, (437,551,0): 104, 33, 37, (437,552,0): 123, 37, 46, (437,553,0): 144, 41, 58, (437,554,0): 162, 40, 65, (437,555,0): 166, 35, 66, (437,556,0): 170, 39, 73, (437,557,0): 171, 46, 80, (437,558,0): 154, 44, 73, (437,559,0): 132, 34, 59, (437,560,0): 115, 27, 49, (437,561,0): 104, 27, 61, (437,562,0): 98, 27, 93, (437,563,0): 97, 34, 123, (437,564,0): 91, 40, 141, (437,565,0): 83, 41, 141, (437,566,0): 79, 41, 124, (437,567,0): 78, 43, 109, (437,568,0): 79, 41, 90, (437,569,0): 85, 42, 85, (437,570,0): 91, 44, 86, (437,571,0): 93, 45, 87, (437,572,0): 90, 45, 86, (437,573,0): 87, 45, 81, (437,574,0): 84, 48, 74, (437,575,0): 83, 50, 67, (437,576,0): 78, 47, 55, (437,577,0): 78, 47, 52, (437,578,0): 78, 47, 52, (437,579,0): 78, 47, 52, (437,580,0): 78, 47, 52, (437,581,0): 78, 47, 52, (437,582,0): 77, 48, 53, (437,583,0): 78, 49, 54, (437,584,0): 73, 43, 51, (437,585,0): 71, 44, 51, (437,586,0): 71, 44, 51, (437,587,0): 70, 45, 51, (437,588,0): 69, 43, 52, (437,589,0): 68, 42, 51, (437,590,0): 68, 42, 51, (437,591,0): 68, 42, 51, (437,592,0): 69, 46, 56, (437,593,0): 68, 47, 56, (437,594,0): 67, 46, 55, (437,595,0): 65, 44, 53, (437,596,0): 63, 42, 51, (437,597,0): 62, 41, 50, (437,598,0): 61, 40, 49, (437,599,0): 60, 39, 48, (438,0,0): 73, 79, 67, (438,1,0): 72, 78, 66, (438,2,0): 72, 78, 66, (438,3,0): 72, 78, 66, (438,4,0): 71, 77, 65, (438,5,0): 71, 77, 65, (438,6,0): 70, 76, 64, (438,7,0): 70, 76, 64, (438,8,0): 71, 77, 65, (438,9,0): 71, 77, 65, (438,10,0): 71, 77, 65, (438,11,0): 71, 77, 65, (438,12,0): 71, 77, 65, (438,13,0): 71, 77, 65, (438,14,0): 71, 77, 65, (438,15,0): 71, 77, 65, (438,16,0): 73, 79, 67, (438,17,0): 73, 79, 67, (438,18,0): 73, 79, 67, (438,19,0): 74, 80, 68, (438,20,0): 74, 80, 68, (438,21,0): 75, 81, 69, (438,22,0): 75, 81, 69, (438,23,0): 75, 81, 69, (438,24,0): 76, 82, 70, (438,25,0): 76, 82, 70, (438,26,0): 76, 82, 70, (438,27,0): 76, 82, 70, (438,28,0): 76, 82, 70, (438,29,0): 76, 82, 70, (438,30,0): 76, 82, 70, (438,31,0): 78, 81, 70, (438,32,0): 79, 81, 70, (438,33,0): 80, 80, 70, (438,34,0): 82, 79, 70, (438,35,0): 82, 79, 70, (438,36,0): 81, 78, 69, (438,37,0): 81, 78, 69, (438,38,0): 82, 78, 67, (438,39,0): 82, 78, 67, (438,40,0): 84, 78, 66, (438,41,0): 84, 78, 66, (438,42,0): 85, 79, 65, (438,43,0): 86, 80, 66, (438,44,0): 88, 80, 67, (438,45,0): 89, 81, 68, (438,46,0): 90, 82, 69, (438,47,0): 90, 82, 69, (438,48,0): 94, 86, 73, (438,49,0): 94, 86, 73, (438,50,0): 94, 86, 73, (438,51,0): 95, 87, 74, (438,52,0): 95, 87, 74, (438,53,0): 95, 87, 74, (438,54,0): 96, 88, 75, (438,55,0): 96, 88, 75, (438,56,0): 96, 88, 75, (438,57,0): 96, 88, 75, (438,58,0): 96, 88, 75, (438,59,0): 96, 88, 75, (438,60,0): 96, 88, 75, (438,61,0): 96, 88, 75, (438,62,0): 96, 88, 75, (438,63,0): 96, 88, 75, (438,64,0): 93, 87, 73, (438,65,0): 93, 87, 73, (438,66,0): 94, 86, 73, (438,67,0): 94, 86, 73, (438,68,0): 94, 86, 73, (438,69,0): 94, 86, 73, (438,70,0): 95, 85, 73, (438,71,0): 95, 85, 73, (438,72,0): 96, 84, 72, (438,73,0): 96, 84, 72, (438,74,0): 95, 83, 71, (438,75,0): 93, 81, 69, (438,76,0): 92, 78, 67, (438,77,0): 91, 77, 66, (438,78,0): 90, 76, 65, (438,79,0): 88, 76, 64, (438,80,0): 83, 73, 61, (438,81,0): 83, 73, 61, (438,82,0): 83, 73, 61, (438,83,0): 83, 73, 61, (438,84,0): 81, 71, 59, (438,85,0): 78, 68, 56, (438,86,0): 75, 65, 53, (438,87,0): 74, 64, 52, (438,88,0): 76, 66, 54, (438,89,0): 76, 66, 54, (438,90,0): 76, 66, 54, (438,91,0): 75, 65, 53, (438,92,0): 74, 64, 52, (438,93,0): 72, 62, 50, (438,94,0): 69, 59, 47, (438,95,0): 70, 58, 44, (438,96,0): 72, 56, 43, (438,97,0): 71, 53, 39, (438,98,0): 70, 52, 38, (438,99,0): 68, 50, 36, (438,100,0): 67, 49, 35, (438,101,0): 66, 48, 34, (438,102,0): 67, 49, 35, (438,103,0): 67, 49, 35, (438,104,0): 67, 49, 35, (438,105,0): 67, 49, 35, (438,106,0): 67, 49, 35, (438,107,0): 67, 49, 35, (438,108,0): 67, 49, 35, (438,109,0): 67, 49, 35, (438,110,0): 67, 49, 35, (438,111,0): 67, 49, 35, (438,112,0): 68, 48, 39, (438,113,0): 68, 48, 39, (438,114,0): 67, 47, 38, (438,115,0): 67, 47, 38, (438,116,0): 66, 46, 37, (438,117,0): 65, 45, 36, (438,118,0): 65, 45, 36, (438,119,0): 64, 44, 35, (438,120,0): 67, 47, 38, (438,121,0): 66, 46, 37, (438,122,0): 66, 46, 37, (438,123,0): 66, 46, 37, (438,124,0): 67, 47, 38, (438,125,0): 69, 49, 40, (438,126,0): 71, 51, 42, (438,127,0): 72, 52, 43, (438,128,0): 72, 53, 47, (438,129,0): 72, 53, 47, (438,130,0): 73, 54, 48, (438,131,0): 74, 55, 49, (438,132,0): 75, 56, 50, (438,133,0): 76, 57, 51, (438,134,0): 77, 58, 52, (438,135,0): 77, 58, 52, (438,136,0): 79, 60, 54, (438,137,0): 80, 61, 55, (438,138,0): 81, 62, 56, (438,139,0): 82, 63, 57, (438,140,0): 83, 64, 58, (438,141,0): 84, 65, 59, (438,142,0): 85, 66, 60, (438,143,0): 85, 66, 60, (438,144,0): 87, 66, 61, (438,145,0): 87, 66, 61, (438,146,0): 87, 66, 61, (438,147,0): 87, 66, 61, (438,148,0): 87, 68, 62, (438,149,0): 88, 69, 63, (438,150,0): 90, 71, 67, (438,151,0): 90, 72, 68, (438,152,0): 90, 72, 70, (438,153,0): 91, 73, 71, (438,154,0): 90, 74, 74, (438,155,0): 91, 75, 75, (438,156,0): 92, 76, 76, (438,157,0): 94, 78, 78, (438,158,0): 94, 80, 79, (438,159,0): 94, 80, 79, (438,160,0): 94, 83, 81, (438,161,0): 94, 83, 81, (438,162,0): 97, 83, 82, (438,163,0): 98, 84, 83, (438,164,0): 99, 85, 84, (438,165,0): 100, 86, 85, (438,166,0): 101, 85, 85, (438,167,0): 102, 86, 86, (438,168,0): 101, 83, 83, (438,169,0): 102, 84, 84, (438,170,0): 103, 85, 85, (438,171,0): 104, 86, 86, (438,172,0): 104, 84, 85, (438,173,0): 104, 84, 85, (438,174,0): 102, 82, 83, (438,175,0): 101, 81, 80, (438,176,0): 102, 84, 82, (438,177,0): 102, 84, 80, (438,178,0): 104, 85, 81, (438,179,0): 104, 85, 81, (438,180,0): 105, 86, 82, (438,181,0): 105, 86, 82, (438,182,0): 107, 86, 83, (438,183,0): 107, 86, 83, (438,184,0): 108, 84, 82, (438,185,0): 109, 85, 83, (438,186,0): 111, 87, 85, (438,187,0): 113, 89, 87, (438,188,0): 115, 89, 88, (438,189,0): 116, 90, 89, (438,190,0): 116, 90, 89, (438,191,0): 115, 90, 86, (438,192,0): 118, 90, 86, (438,193,0): 117, 90, 83, (438,194,0): 116, 87, 81, (438,195,0): 114, 85, 79, (438,196,0): 111, 82, 76, (438,197,0): 109, 80, 74, (438,198,0): 108, 77, 72, (438,199,0): 107, 76, 71, (438,200,0): 107, 74, 69, (438,201,0): 106, 73, 68, (438,202,0): 106, 73, 68, (438,203,0): 105, 72, 67, (438,204,0): 105, 70, 66, (438,205,0): 104, 69, 65, (438,206,0): 103, 68, 64, (438,207,0): 102, 69, 64, (438,208,0): 99, 69, 67, (438,209,0): 100, 72, 71, (438,210,0): 100, 70, 68, (438,211,0): 105, 75, 73, (438,212,0): 114, 84, 82, (438,213,0): 116, 86, 84, (438,214,0): 135, 105, 105, (438,215,0): 168, 139, 141, (438,216,0): 193, 166, 171, (438,217,0): 207, 184, 190, (438,218,0): 215, 195, 204, (438,219,0): 205, 189, 199, (438,220,0): 197, 186, 200, (438,221,0): 201, 193, 208, (438,222,0): 203, 196, 212, (438,223,0): 196, 193, 210, (438,224,0): 196, 194, 215, (438,225,0): 193, 193, 217, (438,226,0): 188, 193, 215, (438,227,0): 186, 192, 216, (438,228,0): 181, 191, 216, (438,229,0): 176, 190, 216, (438,230,0): 172, 189, 217, (438,231,0): 169, 190, 219, (438,232,0): 166, 191, 222, (438,233,0): 164, 190, 223, (438,234,0): 162, 188, 225, (438,235,0): 158, 186, 225, (438,236,0): 157, 185, 225, (438,237,0): 157, 184, 227, (438,238,0): 157, 184, 227, (438,239,0): 158, 185, 228, (438,240,0): 157, 186, 228, (438,241,0): 157, 186, 228, (438,242,0): 157, 185, 232, (438,243,0): 156, 187, 233, (438,244,0): 155, 187, 236, (438,245,0): 154, 187, 238, (438,246,0): 153, 189, 241, (438,247,0): 152, 189, 244, (438,248,0): 153, 189, 247, (438,249,0): 151, 190, 249, (438,250,0): 151, 191, 253, (438,251,0): 150, 191, 255, (438,252,0): 150, 191, 255, (438,253,0): 146, 189, 255, (438,254,0): 145, 188, 255, (438,255,0): 141, 188, 255, (438,256,0): 137, 186, 255, (438,257,0): 136, 186, 255, (438,258,0): 136, 186, 255, (438,259,0): 135, 185, 255, (438,260,0): 135, 185, 255, (438,261,0): 134, 184, 255, (438,262,0): 132, 184, 255, (438,263,0): 131, 183, 255, (438,264,0): 129, 183, 255, (438,265,0): 129, 183, 255, (438,266,0): 127, 183, 255, (438,267,0): 127, 183, 255, (438,268,0): 127, 183, 255, (438,269,0): 127, 183, 255, (438,270,0): 127, 183, 255, (438,271,0): 126, 184, 255, (438,272,0): 127, 186, 255, (438,273,0): 126, 187, 254, (438,274,0): 126, 187, 254, (438,275,0): 126, 187, 254, (438,276,0): 126, 187, 254, (438,277,0): 126, 187, 254, (438,278,0): 126, 187, 254, (438,279,0): 126, 187, 254, (438,280,0): 127, 188, 255, (438,281,0): 127, 188, 255, (438,282,0): 127, 188, 255, (438,283,0): 126, 187, 254, (438,284,0): 126, 187, 254, (438,285,0): 125, 186, 253, (438,286,0): 125, 186, 253, (438,287,0): 123, 186, 253, (438,288,0): 122, 187, 255, (438,289,0): 122, 187, 255, (438,290,0): 123, 186, 255, (438,291,0): 126, 185, 255, (438,292,0): 127, 184, 255, (438,293,0): 127, 184, 255, (438,294,0): 129, 183, 255, (438,295,0): 127, 184, 255, (438,296,0): 126, 183, 254, (438,297,0): 125, 184, 254, (438,298,0): 126, 183, 254, (438,299,0): 128, 182, 254, (438,300,0): 132, 180, 254, (438,301,0): 135, 179, 254, (438,302,0): 138, 177, 254, (438,303,0): 146, 173, 250, (438,304,0): 152, 160, 235, (438,305,0): 148, 142, 212, (438,306,0): 117, 106, 166, (438,307,0): 80, 62, 110, (438,308,0): 62, 38, 74, (438,309,0): 64, 35, 63, (438,310,0): 66, 34, 55, (438,311,0): 56, 27, 45, (438,312,0): 55, 28, 45, (438,313,0): 50, 27, 43, (438,314,0): 44, 26, 42, (438,315,0): 40, 23, 39, (438,316,0): 38, 22, 33, (438,317,0): 35, 22, 31, (438,318,0): 35, 23, 27, (438,319,0): 36, 24, 28, (438,320,0): 33, 20, 30, (438,321,0): 32, 20, 34, (438,322,0): 31, 19, 33, (438,323,0): 31, 19, 33, (438,324,0): 30, 18, 32, (438,325,0): 30, 18, 32, (438,326,0): 29, 17, 31, (438,327,0): 29, 17, 31, (438,328,0): 30, 18, 32, (438,329,0): 30, 18, 32, (438,330,0): 30, 18, 32, (438,331,0): 29, 17, 31, (438,332,0): 29, 17, 31, (438,333,0): 28, 16, 30, (438,334,0): 28, 16, 30, (438,335,0): 27, 15, 27, (438,336,0): 30, 18, 28, (438,337,0): 29, 17, 27, (438,338,0): 28, 16, 26, (438,339,0): 27, 15, 25, (438,340,0): 27, 15, 25, (438,341,0): 28, 16, 26, (438,342,0): 29, 17, 27, (438,343,0): 30, 18, 28, (438,344,0): 28, 16, 26, (438,345,0): 28, 16, 26, (438,346,0): 28, 16, 26, (438,347,0): 27, 15, 25, (438,348,0): 27, 15, 25, (438,349,0): 26, 14, 24, (438,350,0): 26, 14, 24, (438,351,0): 26, 14, 24, (438,352,0): 26, 14, 28, (438,353,0): 26, 14, 28, (438,354,0): 26, 14, 28, (438,355,0): 26, 14, 28, (438,356,0): 25, 14, 28, (438,357,0): 25, 14, 28, (438,358,0): 25, 14, 28, (438,359,0): 25, 14, 28, (438,360,0): 22, 14, 27, (438,361,0): 22, 14, 27, (438,362,0): 23, 17, 29, (438,363,0): 24, 18, 30, (438,364,0): 24, 18, 30, (438,365,0): 24, 18, 30, (438,366,0): 22, 19, 30, (438,367,0): 23, 17, 29, (438,368,0): 29, 18, 32, (438,369,0): 29, 17, 31, (438,370,0): 29, 17, 31, (438,371,0): 28, 16, 30, (438,372,0): 28, 16, 30, (438,373,0): 27, 15, 29, (438,374,0): 27, 15, 29, (438,375,0): 27, 15, 29, (438,376,0): 28, 16, 30, (438,377,0): 28, 16, 30, (438,378,0): 28, 16, 30, (438,379,0): 28, 16, 30, (438,380,0): 28, 16, 30, (438,381,0): 28, 16, 30, (438,382,0): 28, 16, 30, (438,383,0): 27, 16, 30, (438,384,0): 26, 15, 32, (438,385,0): 23, 14, 31, (438,386,0): 22, 13, 30, (438,387,0): 21, 12, 29, (438,388,0): 21, 12, 29, (438,389,0): 22, 13, 30, (438,390,0): 23, 14, 31, (438,391,0): 24, 15, 32, (438,392,0): 26, 17, 34, (438,393,0): 26, 17, 34, (438,394,0): 26, 17, 34, (438,395,0): 25, 16, 33, (438,396,0): 25, 16, 33, (438,397,0): 24, 15, 32, (438,398,0): 24, 15, 32, (438,399,0): 22, 15, 31, (438,400,0): 17, 13, 28, (438,401,0): 16, 14, 28, (438,402,0): 16, 14, 28, (438,403,0): 17, 15, 29, (438,404,0): 17, 15, 29, (438,405,0): 17, 15, 29, (438,406,0): 17, 15, 29, (438,407,0): 17, 15, 29, (438,408,0): 19, 17, 31, (438,409,0): 20, 18, 32, (438,410,0): 21, 19, 33, (438,411,0): 22, 20, 34, (438,412,0): 25, 23, 37, (438,413,0): 29, 27, 41, (438,414,0): 32, 30, 44, (438,415,0): 34, 32, 45, (438,416,0): 31, 27, 41, (438,417,0): 32, 29, 40, (438,418,0): 32, 29, 40, (438,419,0): 30, 27, 38, (438,420,0): 29, 23, 35, (438,421,0): 29, 23, 35, (438,422,0): 32, 26, 38, (438,423,0): 35, 29, 41, (438,424,0): 38, 30, 43, (438,425,0): 42, 34, 47, (438,426,0): 48, 37, 51, (438,427,0): 52, 41, 55, (438,428,0): 57, 46, 60, (438,429,0): 64, 53, 67, (438,430,0): 73, 61, 75, (438,431,0): 78, 67, 83, (438,432,0): 78, 66, 88, (438,433,0): 80, 68, 92, (438,434,0): 85, 71, 94, (438,435,0): 87, 73, 96, (438,436,0): 89, 76, 96, (438,437,0): 88, 75, 95, (438,438,0): 87, 72, 93, (438,439,0): 86, 71, 90, (438,440,0): 88, 71, 89, (438,441,0): 87, 70, 88, (438,442,0): 86, 69, 87, (438,443,0): 85, 68, 84, (438,444,0): 84, 66, 82, (438,445,0): 81, 63, 77, (438,446,0): 80, 62, 76, (438,447,0): 78, 62, 73, (438,448,0): 65, 54, 62, (438,449,0): 64, 57, 64, (438,450,0): 69, 59, 67, (438,451,0): 73, 63, 71, (438,452,0): 78, 68, 76, (438,453,0): 85, 74, 82, (438,454,0): 89, 78, 86, (438,455,0): 93, 80, 87, (438,456,0): 104, 89, 96, (438,457,0): 99, 84, 91, (438,458,0): 97, 80, 88, (438,459,0): 99, 82, 88, (438,460,0): 101, 84, 90, (438,461,0): 101, 84, 90, (438,462,0): 103, 84, 90, (438,463,0): 101, 85, 88, (438,464,0): 85, 73, 73, (438,465,0): 80, 69, 67, (438,466,0): 75, 60, 57, (438,467,0): 69, 54, 49, (438,468,0): 68, 51, 44, (438,469,0): 71, 54, 44, (438,470,0): 75, 59, 46, (438,471,0): 78, 62, 47, (438,472,0): 84, 69, 50, (438,473,0): 86, 73, 54, (438,474,0): 96, 85, 63, (438,475,0): 103, 103, 77, (438,476,0): 107, 122, 89, (438,477,0): 117, 149, 110, (438,478,0): 140, 189, 144, (438,479,0): 160, 220, 184, (438,480,0): 182, 251, 233, (438,481,0): 189, 255, 253, (438,482,0): 199, 255, 255, (438,483,0): 198, 250, 255, (438,484,0): 191, 241, 252, (438,485,0): 175, 222, 230, (438,486,0): 152, 193, 197, (438,487,0): 136, 166, 166, (438,488,0): 128, 140, 136, (438,489,0): 130, 129, 124, (438,490,0): 129, 119, 110, (438,491,0): 130, 112, 100, (438,492,0): 136, 110, 93, (438,493,0): 145, 113, 92, (438,494,0): 160, 114, 91, (438,495,0): 165, 117, 97, (438,496,0): 160, 113, 105, (438,497,0): 138, 98, 90, (438,498,0): 121, 83, 70, (438,499,0): 116, 79, 63, (438,500,0): 121, 79, 63, (438,501,0): 132, 79, 71, (438,502,0): 149, 80, 83, (438,503,0): 165, 83, 97, (438,504,0): 204, 110, 136, (438,505,0): 215, 115, 151, (438,506,0): 214, 116, 155, (438,507,0): 205, 109, 147, (438,508,0): 201, 107, 141, (438,509,0): 201, 108, 135, (438,510,0): 187, 93, 117, (438,511,0): 167, 75, 96, (438,512,0): 152, 64, 86, (438,513,0): 144, 61, 81, (438,514,0): 137, 56, 71, (438,515,0): 133, 51, 65, (438,516,0): 134, 48, 61, (438,517,0): 138, 46, 59, (438,518,0): 148, 43, 60, (438,519,0): 154, 41, 59, (438,520,0): 166, 47, 67, (438,521,0): 173, 54, 73, (438,522,0): 173, 58, 75, (438,523,0): 174, 63, 79, (438,524,0): 172, 67, 82, (438,525,0): 157, 56, 72, (438,526,0): 145, 48, 67, (438,527,0): 153, 57, 71, (438,528,0): 151, 52, 57, (438,529,0): 148, 49, 52, (438,530,0): 143, 47, 51, (438,531,0): 137, 44, 52, (438,532,0): 131, 39, 50, (438,533,0): 129, 37, 50, (438,534,0): 138, 42, 56, (438,535,0): 150, 49, 63, (438,536,0): 157, 52, 66, (438,537,0): 158, 50, 63, (438,538,0): 150, 44, 56, (438,539,0): 139, 37, 48, (438,540,0): 132, 41, 50, (438,541,0): 129, 48, 55, (438,542,0): 118, 48, 56, (438,543,0): 107, 42, 48, (438,544,0): 103, 38, 44, (438,545,0): 103, 32, 38, (438,546,0): 113, 30, 40, (438,547,0): 124, 37, 46, (438,548,0): 127, 40, 49, (438,549,0): 123, 38, 45, (438,550,0): 120, 38, 44, (438,551,0): 129, 38, 47, (438,552,0): 152, 41, 57, (438,553,0): 172, 44, 67, (438,554,0): 185, 40, 71, (438,555,0): 182, 32, 67, (438,556,0): 176, 35, 69, (438,557,0): 171, 42, 73, (438,558,0): 150, 37, 65, (438,559,0): 121, 27, 53, (438,560,0): 103, 29, 56, (438,561,0): 89, 25, 75, (438,562,0): 83, 24, 116, (438,563,0): 84, 30, 154, (438,564,0): 80, 35, 180, (438,565,0): 74, 33, 174, (438,566,0): 72, 35, 149, (438,567,0): 75, 39, 127, (438,568,0): 79, 39, 101, (438,569,0): 83, 40, 86, (438,570,0): 87, 38, 85, (438,571,0): 89, 40, 85, (438,572,0): 89, 44, 87, (438,573,0): 87, 47, 84, (438,574,0): 80, 50, 76, (438,575,0): 79, 50, 68, (438,576,0): 78, 46, 57, (438,577,0): 77, 44, 51, (438,578,0): 75, 42, 49, (438,579,0): 73, 40, 47, (438,580,0): 72, 41, 47, (438,581,0): 74, 43, 49, (438,582,0): 76, 45, 51, (438,583,0): 77, 48, 53, (438,584,0): 72, 42, 50, (438,585,0): 69, 42, 49, (438,586,0): 69, 42, 49, (438,587,0): 68, 41, 48, (438,588,0): 67, 40, 47, (438,589,0): 67, 40, 47, (438,590,0): 66, 41, 47, (438,591,0): 66, 41, 47, (438,592,0): 66, 43, 51, (438,593,0): 65, 42, 50, (438,594,0): 64, 41, 49, (438,595,0): 62, 39, 47, (438,596,0): 61, 38, 46, (438,597,0): 59, 36, 44, (438,598,0): 58, 35, 43, (438,599,0): 57, 34, 42, (439,0,0): 73, 79, 67, (439,1,0): 72, 78, 66, (439,2,0): 72, 78, 66, (439,3,0): 71, 77, 65, (439,4,0): 71, 77, 65, (439,5,0): 70, 76, 64, (439,6,0): 70, 76, 64, (439,7,0): 70, 76, 64, (439,8,0): 71, 77, 65, (439,9,0): 71, 77, 65, (439,10,0): 71, 77, 65, (439,11,0): 71, 77, 65, (439,12,0): 71, 77, 65, (439,13,0): 71, 77, 65, (439,14,0): 71, 77, 65, (439,15,0): 71, 77, 65, (439,16,0): 73, 79, 67, (439,17,0): 73, 79, 67, (439,18,0): 73, 79, 67, (439,19,0): 74, 80, 68, (439,20,0): 74, 80, 68, (439,21,0): 75, 81, 69, (439,22,0): 75, 81, 69, (439,23,0): 75, 81, 69, (439,24,0): 77, 83, 71, (439,25,0): 77, 83, 71, (439,26,0): 77, 83, 71, (439,27,0): 77, 83, 71, (439,28,0): 77, 83, 71, (439,29,0): 77, 83, 71, (439,30,0): 77, 83, 71, (439,31,0): 79, 82, 71, (439,32,0): 79, 81, 70, (439,33,0): 80, 80, 70, (439,34,0): 82, 79, 70, (439,35,0): 82, 79, 70, (439,36,0): 81, 78, 69, (439,37,0): 81, 78, 69, (439,38,0): 82, 78, 67, (439,39,0): 82, 78, 67, (439,40,0): 83, 77, 65, (439,41,0): 84, 78, 66, (439,42,0): 85, 79, 65, (439,43,0): 86, 80, 66, (439,44,0): 88, 80, 67, (439,45,0): 89, 81, 68, (439,46,0): 89, 81, 68, (439,47,0): 90, 82, 69, (439,48,0): 94, 86, 73, (439,49,0): 94, 86, 73, (439,50,0): 94, 86, 73, (439,51,0): 95, 87, 74, (439,52,0): 95, 87, 74, (439,53,0): 95, 87, 74, (439,54,0): 95, 87, 74, (439,55,0): 95, 87, 74, (439,56,0): 95, 87, 74, (439,57,0): 95, 87, 74, (439,58,0): 95, 87, 74, (439,59,0): 95, 87, 74, (439,60,0): 95, 87, 74, (439,61,0): 95, 87, 74, (439,62,0): 95, 87, 74, (439,63,0): 95, 87, 74, (439,64,0): 92, 86, 72, (439,65,0): 92, 86, 72, (439,66,0): 93, 85, 72, (439,67,0): 93, 85, 72, (439,68,0): 93, 85, 72, (439,69,0): 93, 85, 72, (439,70,0): 94, 84, 72, (439,71,0): 94, 84, 72, (439,72,0): 96, 84, 72, (439,73,0): 95, 83, 71, (439,74,0): 94, 82, 70, (439,75,0): 93, 81, 69, (439,76,0): 92, 78, 67, (439,77,0): 90, 76, 65, (439,78,0): 89, 75, 64, (439,79,0): 89, 75, 64, (439,80,0): 84, 72, 60, (439,81,0): 83, 73, 61, (439,82,0): 83, 73, 61, (439,83,0): 82, 72, 60, (439,84,0): 80, 70, 58, (439,85,0): 77, 67, 55, (439,86,0): 74, 64, 52, (439,87,0): 72, 62, 50, (439,88,0): 74, 64, 52, (439,89,0): 74, 64, 52, (439,90,0): 74, 64, 52, (439,91,0): 74, 64, 52, (439,92,0): 73, 63, 51, (439,93,0): 71, 61, 49, (439,94,0): 68, 58, 46, (439,95,0): 69, 57, 43, (439,96,0): 72, 56, 43, (439,97,0): 71, 53, 39, (439,98,0): 70, 52, 38, (439,99,0): 68, 50, 36, (439,100,0): 67, 49, 35, (439,101,0): 66, 48, 34, (439,102,0): 67, 49, 35, (439,103,0): 67, 49, 35, (439,104,0): 67, 49, 35, (439,105,0): 67, 49, 35, (439,106,0): 67, 49, 35, (439,107,0): 67, 49, 35, (439,108,0): 67, 49, 35, (439,109,0): 67, 49, 35, (439,110,0): 67, 49, 35, (439,111,0): 67, 49, 35, (439,112,0): 69, 49, 40, (439,113,0): 68, 48, 39, (439,114,0): 68, 48, 39, (439,115,0): 67, 47, 38, (439,116,0): 66, 46, 37, (439,117,0): 65, 45, 36, (439,118,0): 65, 45, 36, (439,119,0): 64, 44, 35, (439,120,0): 67, 47, 38, (439,121,0): 66, 46, 37, (439,122,0): 66, 46, 37, (439,123,0): 66, 46, 37, (439,124,0): 67, 47, 38, (439,125,0): 69, 49, 40, (439,126,0): 71, 51, 42, (439,127,0): 72, 52, 43, (439,128,0): 72, 53, 47, (439,129,0): 72, 53, 47, (439,130,0): 73, 54, 48, (439,131,0): 74, 55, 49, (439,132,0): 75, 56, 50, (439,133,0): 76, 57, 51, (439,134,0): 77, 58, 52, (439,135,0): 77, 58, 52, (439,136,0): 80, 61, 55, (439,137,0): 81, 62, 56, (439,138,0): 82, 63, 57, (439,139,0): 83, 64, 58, (439,140,0): 84, 65, 59, (439,141,0): 85, 66, 60, (439,142,0): 86, 67, 61, (439,143,0): 86, 67, 61, (439,144,0): 88, 67, 62, (439,145,0): 88, 67, 62, (439,146,0): 87, 66, 61, (439,147,0): 87, 66, 61, (439,148,0): 88, 67, 62, (439,149,0): 88, 69, 63, (439,150,0): 90, 71, 67, (439,151,0): 91, 72, 68, (439,152,0): 91, 71, 70, (439,153,0): 90, 72, 70, (439,154,0): 91, 73, 73, (439,155,0): 90, 74, 74, (439,156,0): 91, 75, 75, (439,157,0): 91, 75, 75, (439,158,0): 92, 76, 76, (439,159,0): 91, 77, 76, (439,160,0): 93, 82, 80, (439,161,0): 93, 82, 80, (439,162,0): 96, 82, 81, (439,163,0): 96, 82, 81, (439,164,0): 97, 83, 82, (439,165,0): 98, 84, 83, (439,166,0): 99, 83, 83, (439,167,0): 100, 84, 84, (439,168,0): 99, 81, 81, (439,169,0): 100, 82, 82, (439,170,0): 101, 83, 83, (439,171,0): 101, 83, 83, (439,172,0): 102, 82, 83, (439,173,0): 101, 81, 82, (439,174,0): 100, 80, 81, (439,175,0): 99, 79, 78, (439,176,0): 102, 84, 82, (439,177,0): 102, 84, 80, (439,178,0): 103, 84, 80, (439,179,0): 103, 84, 80, (439,180,0): 104, 85, 81, (439,181,0): 104, 85, 81, (439,182,0): 105, 84, 81, (439,183,0): 106, 85, 82, (439,184,0): 106, 82, 80, (439,185,0): 107, 83, 81, (439,186,0): 110, 86, 84, (439,187,0): 112, 88, 86, (439,188,0): 114, 88, 87, (439,189,0): 115, 89, 88, (439,190,0): 115, 89, 88, (439,191,0): 114, 89, 85, (439,192,0): 116, 88, 84, (439,193,0): 115, 88, 81, (439,194,0): 114, 85, 79, (439,195,0): 113, 84, 78, (439,196,0): 111, 82, 76, (439,197,0): 109, 80, 74, (439,198,0): 109, 78, 73, (439,199,0): 108, 77, 72, (439,200,0): 106, 73, 68, (439,201,0): 106, 73, 68, (439,202,0): 106, 73, 68, (439,203,0): 106, 73, 68, (439,204,0): 107, 72, 68, (439,205,0): 106, 71, 67, (439,206,0): 105, 70, 66, (439,207,0): 103, 69, 67, (439,208,0): 98, 68, 66, (439,209,0): 98, 68, 68, (439,210,0): 96, 66, 64, (439,211,0): 102, 72, 70, (439,212,0): 111, 81, 79, (439,213,0): 111, 81, 79, (439,214,0): 127, 97, 97, (439,215,0): 158, 129, 131, (439,216,0): 185, 159, 162, (439,217,0): 204, 182, 185, (439,218,0): 215, 196, 202, (439,219,0): 207, 190, 200, (439,220,0): 199, 185, 198, (439,221,0): 203, 192, 206, (439,222,0): 205, 197, 212, (439,223,0): 201, 194, 210, (439,224,0): 198, 195, 216, (439,225,0): 196, 194, 216, (439,226,0): 192, 194, 215, (439,227,0): 187, 192, 214, (439,228,0): 183, 191, 214, (439,229,0): 178, 190, 214, (439,230,0): 174, 188, 215, (439,231,0): 171, 188, 216, (439,232,0): 169, 190, 221, (439,233,0): 165, 190, 221, (439,234,0): 163, 187, 223, (439,235,0): 160, 186, 223, (439,236,0): 160, 183, 224, (439,237,0): 159, 184, 225, (439,238,0): 160, 183, 227, (439,239,0): 160, 184, 228, (439,240,0): 159, 186, 229, (439,241,0): 158, 187, 229, (439,242,0): 158, 186, 233, (439,243,0): 158, 186, 233, (439,244,0): 156, 186, 236, (439,245,0): 156, 188, 239, (439,246,0): 155, 188, 241, (439,247,0): 153, 188, 244, (439,248,0): 153, 189, 247, (439,249,0): 151, 191, 250, (439,250,0): 151, 191, 253, (439,251,0): 150, 191, 255, (439,252,0): 148, 192, 255, (439,253,0): 146, 191, 255, (439,254,0): 144, 189, 255, (439,255,0): 141, 188, 255, (439,256,0): 137, 185, 255, (439,257,0): 136, 186, 255, (439,258,0): 135, 185, 255, (439,259,0): 135, 185, 255, (439,260,0): 134, 184, 255, (439,261,0): 134, 184, 255, (439,262,0): 131, 183, 255, (439,263,0): 131, 183, 255, (439,264,0): 127, 181, 255, (439,265,0): 127, 181, 255, (439,266,0): 125, 181, 255, (439,267,0): 125, 181, 255, (439,268,0): 125, 181, 255, (439,269,0): 125, 181, 255, (439,270,0): 125, 181, 255, (439,271,0): 124, 182, 255, (439,272,0): 127, 186, 255, (439,273,0): 126, 187, 254, (439,274,0): 126, 187, 254, (439,275,0): 126, 187, 254, (439,276,0): 126, 187, 254, (439,277,0): 126, 187, 254, (439,278,0): 126, 187, 254, (439,279,0): 126, 187, 254, (439,280,0): 127, 188, 255, (439,281,0): 127, 188, 255, (439,282,0): 127, 188, 255, (439,283,0): 126, 187, 254, (439,284,0): 126, 187, 254, (439,285,0): 125, 186, 253, (439,286,0): 125, 186, 253, (439,287,0): 123, 186, 253, (439,288,0): 122, 187, 255, (439,289,0): 122, 187, 255, (439,290,0): 123, 186, 255, (439,291,0): 125, 185, 255, (439,292,0): 126, 185, 255, (439,293,0): 127, 184, 255, (439,294,0): 127, 184, 255, (439,295,0): 126, 185, 255, (439,296,0): 124, 183, 253, (439,297,0): 124, 183, 253, (439,298,0): 125, 182, 253, (439,299,0): 128, 180, 253, (439,300,0): 131, 179, 253, (439,301,0): 135, 177, 253, (439,302,0): 138, 175, 253, (439,303,0): 148, 171, 247, (439,304,0): 149, 151, 225, (439,305,0): 140, 129, 195, (439,306,0): 105, 90, 145, (439,307,0): 67, 48, 93, (439,308,0): 57, 32, 64, (439,309,0): 63, 35, 58, (439,310,0): 61, 32, 50, (439,311,0): 50, 22, 37, (439,312,0): 51, 27, 43, (439,313,0): 49, 26, 44, (439,314,0): 43, 24, 43, (439,315,0): 37, 23, 40, (439,316,0): 35, 21, 34, (439,317,0): 34, 21, 30, (439,318,0): 34, 22, 26, (439,319,0): 35, 22, 29, (439,320,0): 32, 20, 32, (439,321,0): 31, 19, 33, (439,322,0): 31, 19, 33, (439,323,0): 30, 18, 32, (439,324,0): 30, 18, 32, (439,325,0): 29, 17, 31, (439,326,0): 29, 17, 31, (439,327,0): 29, 17, 31, (439,328,0): 30, 18, 32, (439,329,0): 30, 18, 32, (439,330,0): 29, 17, 31, (439,331,0): 29, 17, 31, (439,332,0): 28, 16, 30, (439,333,0): 28, 16, 30, (439,334,0): 27, 15, 29, (439,335,0): 27, 15, 27, (439,336,0): 30, 18, 30, (439,337,0): 29, 17, 27, (439,338,0): 28, 16, 26, (439,339,0): 27, 15, 25, (439,340,0): 27, 15, 25, (439,341,0): 28, 16, 26, (439,342,0): 29, 17, 27, (439,343,0): 30, 18, 28, (439,344,0): 28, 16, 26, (439,345,0): 28, 16, 26, (439,346,0): 28, 16, 26, (439,347,0): 27, 15, 25, (439,348,0): 27, 15, 25, (439,349,0): 26, 14, 24, (439,350,0): 26, 14, 24, (439,351,0): 26, 14, 24, (439,352,0): 26, 14, 28, (439,353,0): 26, 14, 28, (439,354,0): 26, 14, 28, (439,355,0): 26, 14, 28, (439,356,0): 25, 14, 28, (439,357,0): 25, 14, 28, (439,358,0): 25, 14, 28, (439,359,0): 25, 14, 28, (439,360,0): 20, 12, 25, (439,361,0): 22, 14, 27, (439,362,0): 23, 17, 29, (439,363,0): 25, 19, 31, (439,364,0): 25, 19, 31, (439,365,0): 25, 19, 31, (439,366,0): 21, 18, 29, (439,367,0): 22, 16, 28, (439,368,0): 29, 18, 32, (439,369,0): 30, 18, 32, (439,370,0): 29, 17, 31, (439,371,0): 29, 17, 31, (439,372,0): 28, 16, 30, (439,373,0): 28, 16, 30, (439,374,0): 27, 15, 29, (439,375,0): 27, 15, 29, (439,376,0): 28, 16, 30, (439,377,0): 28, 16, 30, (439,378,0): 28, 16, 30, (439,379,0): 28, 16, 30, (439,380,0): 28, 16, 30, (439,381,0): 28, 16, 30, (439,382,0): 28, 16, 30, (439,383,0): 27, 16, 30, (439,384,0): 26, 15, 32, (439,385,0): 23, 14, 31, (439,386,0): 22, 13, 30, (439,387,0): 21, 12, 29, (439,388,0): 21, 12, 29, (439,389,0): 22, 13, 30, (439,390,0): 23, 14, 31, (439,391,0): 24, 15, 32, (439,392,0): 27, 18, 35, (439,393,0): 26, 17, 34, (439,394,0): 26, 17, 34, (439,395,0): 26, 17, 34, (439,396,0): 25, 16, 33, (439,397,0): 24, 15, 32, (439,398,0): 24, 15, 32, (439,399,0): 23, 16, 32, (439,400,0): 17, 13, 28, (439,401,0): 16, 14, 28, (439,402,0): 16, 14, 28, (439,403,0): 17, 15, 29, (439,404,0): 17, 15, 29, (439,405,0): 17, 15, 29, (439,406,0): 18, 16, 30, (439,407,0): 18, 16, 30, (439,408,0): 20, 18, 32, (439,409,0): 21, 19, 33, (439,410,0): 22, 20, 34, (439,411,0): 24, 22, 36, (439,412,0): 27, 25, 39, (439,413,0): 31, 29, 43, (439,414,0): 34, 32, 46, (439,415,0): 36, 34, 47, (439,416,0): 35, 31, 45, (439,417,0): 36, 33, 44, (439,418,0): 35, 32, 43, (439,419,0): 33, 30, 41, (439,420,0): 31, 25, 37, (439,421,0): 31, 25, 37, (439,422,0): 34, 28, 40, (439,423,0): 37, 31, 43, (439,424,0): 42, 34, 47, (439,425,0): 46, 38, 51, (439,426,0): 53, 42, 56, (439,427,0): 57, 46, 60, (439,428,0): 62, 51, 65, (439,429,0): 68, 57, 71, (439,430,0): 77, 65, 79, (439,431,0): 83, 70, 87, (439,432,0): 78, 65, 85, (439,433,0): 79, 67, 89, (439,434,0): 84, 70, 93, (439,435,0): 87, 73, 96, (439,436,0): 88, 75, 95, (439,437,0): 87, 74, 94, (439,438,0): 86, 71, 92, (439,439,0): 84, 69, 88, (439,440,0): 86, 69, 88, (439,441,0): 86, 69, 87, (439,442,0): 85, 68, 86, (439,443,0): 84, 67, 85, (439,444,0): 83, 65, 81, (439,445,0): 81, 63, 79, (439,446,0): 79, 61, 77, (439,447,0): 77, 61, 74, (439,448,0): 62, 50, 60, (439,449,0): 64, 54, 62, (439,450,0): 69, 58, 66, (439,451,0): 74, 63, 71, (439,452,0): 78, 67, 75, (439,453,0): 83, 72, 80, (439,454,0): 88, 75, 84, (439,455,0): 90, 77, 86, (439,456,0): 98, 82, 92, (439,457,0): 98, 82, 92, (439,458,0): 99, 82, 92, (439,459,0): 99, 82, 90, (439,460,0): 103, 86, 96, (439,461,0): 106, 89, 97, (439,462,0): 107, 87, 98, (439,463,0): 101, 84, 92, (439,464,0): 87, 77, 78, (439,465,0): 82, 72, 71, (439,466,0): 78, 64, 63, (439,467,0): 74, 56, 54, (439,468,0): 71, 54, 47, (439,469,0): 72, 55, 45, (439,470,0): 76, 58, 46, (439,471,0): 79, 62, 46, (439,472,0): 88, 71, 53, (439,473,0): 91, 74, 54, (439,474,0): 96, 84, 62, (439,475,0): 100, 99, 71, (439,476,0): 104, 119, 86, (439,477,0): 119, 154, 114, (439,478,0): 150, 203, 157, (439,479,0): 180, 240, 202, (439,480,0): 199, 255, 237, (439,481,0): 211, 255, 255, (439,482,0): 221, 255, 255, (439,483,0): 222, 255, 255, (439,484,0): 212, 255, 255, (439,485,0): 193, 239, 252, (439,486,0): 163, 203, 213, (439,487,0): 142, 171, 179, (439,488,0): 126, 137, 141, (439,489,0): 133, 129, 130, (439,490,0): 133, 120, 114, (439,491,0): 133, 111, 100, (439,492,0): 133, 106, 89, (439,493,0): 140, 105, 85, (439,494,0): 151, 106, 83, (439,495,0): 156, 108, 88, (439,496,0): 144, 96, 82, (439,497,0): 128, 82, 69, (439,498,0): 115, 72, 55, (439,499,0): 120, 75, 56, (439,500,0): 128, 81, 63, (439,501,0): 135, 81, 69, (439,502,0): 141, 80, 77, (439,503,0): 150, 78, 89, (439,504,0): 157, 78, 99, (439,505,0): 176, 90, 119, (439,506,0): 194, 100, 136, (439,507,0): 204, 104, 142, (439,508,0): 221, 113, 149, (439,509,0): 233, 119, 152, (439,510,0): 225, 105, 133, (439,511,0): 203, 85, 109, (439,512,0): 186, 77, 98, (439,513,0): 169, 68, 86, (439,514,0): 151, 55, 69, (439,515,0): 141, 48, 59, (439,516,0): 144, 48, 59, (439,517,0): 153, 53, 65, (439,518,0): 169, 58, 74, (439,519,0): 179, 62, 80, (439,520,0): 168, 47, 66, (439,521,0): 169, 47, 68, (439,522,0): 162, 44, 66, (439,523,0): 163, 49, 72, (439,524,0): 168, 60, 84, (439,525,0): 158, 54, 81, (439,526,0): 151, 48, 77, (439,527,0): 158, 56, 80, (439,528,0): 150, 50, 60, (439,529,0): 155, 56, 61, (439,530,0): 161, 66, 72, (439,531,0): 162, 69, 77, (439,532,0): 149, 57, 68, (439,533,0): 134, 42, 53, (439,534,0): 140, 42, 55, (439,535,0): 158, 53, 67, (439,536,0): 168, 56, 70, (439,537,0): 176, 61, 74, (439,538,0): 176, 61, 74, (439,539,0): 163, 56, 66, (439,540,0): 151, 51, 61, (439,541,0): 137, 50, 58, (439,542,0): 121, 44, 52, (439,543,0): 106, 33, 40, (439,544,0): 115, 38, 46, (439,545,0): 115, 29, 38, (439,546,0): 125, 27, 40, (439,547,0): 141, 36, 50, (439,548,0): 146, 44, 57, (439,549,0): 143, 43, 53, (439,550,0): 142, 42, 52, (439,551,0): 152, 42, 55, (439,552,0): 176, 47, 67, (439,553,0): 197, 50, 78, (439,554,0): 204, 46, 79, (439,555,0): 196, 38, 73, (439,556,0): 185, 41, 74, (439,557,0): 176, 52, 80, (439,558,0): 157, 49, 73, (439,559,0): 125, 39, 64, (439,560,0): 101, 38, 69, (439,561,0): 82, 30, 92, (439,562,0): 76, 26, 141, (439,563,0): 77, 30, 184, (439,564,0): 74, 33, 211, (439,565,0): 70, 32, 207, (439,566,0): 69, 34, 176, (439,567,0): 77, 41, 149, (439,568,0): 79, 39, 112, (439,569,0): 81, 37, 90, (439,570,0): 84, 34, 83, (439,571,0): 88, 36, 82, (439,572,0): 88, 43, 86, (439,573,0): 86, 48, 85, (439,574,0): 79, 50, 78, (439,575,0): 77, 50, 69, (439,576,0): 79, 47, 58, (439,577,0): 77, 44, 51, (439,578,0): 73, 40, 47, (439,579,0): 70, 37, 44, (439,580,0): 70, 37, 44, (439,581,0): 70, 39, 45, (439,582,0): 73, 42, 48, (439,583,0): 76, 45, 51, (439,584,0): 71, 41, 49, (439,585,0): 71, 41, 49, (439,586,0): 70, 40, 48, (439,587,0): 67, 40, 47, (439,588,0): 66, 39, 46, (439,589,0): 66, 39, 46, (439,590,0): 65, 40, 46, (439,591,0): 65, 40, 46, (439,592,0): 64, 38, 47, (439,593,0): 61, 38, 46, (439,594,0): 60, 37, 45, (439,595,0): 59, 36, 44, (439,596,0): 57, 34, 42, (439,597,0): 55, 32, 40, (439,598,0): 54, 31, 39, (439,599,0): 54, 31, 39, (440,0,0): 72, 78, 66, (440,1,0): 72, 78, 66, (440,2,0): 72, 78, 66, (440,3,0): 71, 77, 65, (440,4,0): 71, 77, 65, (440,5,0): 70, 76, 64, (440,6,0): 70, 76, 64, (440,7,0): 70, 76, 64, (440,8,0): 71, 77, 65, (440,9,0): 71, 77, 65, (440,10,0): 72, 78, 66, (440,11,0): 72, 78, 66, (440,12,0): 73, 79, 67, (440,13,0): 73, 79, 67, (440,14,0): 74, 80, 68, (440,15,0): 74, 80, 68, (440,16,0): 73, 79, 67, (440,17,0): 73, 79, 67, (440,18,0): 73, 79, 67, (440,19,0): 74, 80, 68, (440,20,0): 74, 80, 68, (440,21,0): 75, 81, 69, (440,22,0): 75, 81, 69, (440,23,0): 75, 81, 69, (440,24,0): 77, 83, 71, (440,25,0): 77, 83, 71, (440,26,0): 77, 83, 71, (440,27,0): 77, 83, 71, (440,28,0): 77, 83, 71, (440,29,0): 77, 83, 71, (440,30,0): 77, 83, 71, (440,31,0): 79, 82, 71, (440,32,0): 81, 83, 72, (440,33,0): 82, 82, 72, (440,34,0): 84, 81, 72, (440,35,0): 83, 80, 71, (440,36,0): 83, 80, 71, (440,37,0): 82, 79, 70, (440,38,0): 83, 79, 68, (440,39,0): 83, 79, 68, (440,40,0): 84, 78, 66, (440,41,0): 84, 78, 66, (440,42,0): 84, 78, 64, (440,43,0): 84, 78, 64, (440,44,0): 86, 78, 65, (440,45,0): 86, 78, 65, (440,46,0): 86, 78, 65, (440,47,0): 86, 78, 65, (440,48,0): 92, 84, 71, (440,49,0): 93, 85, 72, (440,50,0): 93, 85, 72, (440,51,0): 94, 86, 73, (440,52,0): 94, 86, 73, (440,53,0): 95, 87, 74, (440,54,0): 95, 87, 74, (440,55,0): 95, 87, 74, (440,56,0): 95, 87, 74, (440,57,0): 95, 87, 74, (440,58,0): 95, 87, 74, (440,59,0): 94, 86, 73, (440,60,0): 94, 86, 73, (440,61,0): 94, 86, 73, (440,62,0): 93, 85, 72, (440,63,0): 93, 85, 72, (440,64,0): 93, 85, 72, (440,65,0): 93, 85, 72, (440,66,0): 94, 86, 73, (440,67,0): 94, 86, 73, (440,68,0): 95, 85, 73, (440,69,0): 96, 86, 74, (440,70,0): 96, 86, 74, (440,71,0): 96, 86, 74, (440,72,0): 97, 85, 73, (440,73,0): 96, 84, 72, (440,74,0): 96, 82, 71, (440,75,0): 93, 79, 68, (440,76,0): 91, 77, 66, (440,77,0): 89, 75, 64, (440,78,0): 89, 72, 62, (440,79,0): 86, 72, 61, (440,80,0): 84, 72, 60, (440,81,0): 83, 71, 59, (440,82,0): 82, 70, 58, (440,83,0): 80, 68, 56, (440,84,0): 79, 67, 55, (440,85,0): 77, 65, 53, (440,86,0): 76, 64, 52, (440,87,0): 75, 63, 51, (440,88,0): 77, 65, 53, (440,89,0): 76, 64, 52, (440,90,0): 75, 63, 51, (440,91,0): 74, 62, 50, (440,92,0): 73, 61, 49, (440,93,0): 72, 60, 48, (440,94,0): 71, 59, 47, (440,95,0): 72, 58, 45, (440,96,0): 72, 56, 43, (440,97,0): 72, 54, 40, (440,98,0): 69, 51, 37, (440,99,0): 66, 48, 34, (440,100,0): 64, 46, 32, (440,101,0): 64, 46, 32, (440,102,0): 65, 47, 33, (440,103,0): 65, 47, 33, (440,104,0): 66, 48, 34, (440,105,0): 66, 48, 34, (440,106,0): 66, 48, 34, (440,107,0): 66, 48, 34, (440,108,0): 68, 50, 36, (440,109,0): 70, 52, 38, (440,110,0): 72, 54, 40, (440,111,0): 73, 55, 41, (440,112,0): 74, 54, 45, (440,113,0): 73, 53, 44, (440,114,0): 71, 51, 42, (440,115,0): 69, 49, 40, (440,116,0): 68, 48, 39, (440,117,0): 67, 47, 38, (440,118,0): 67, 47, 38, (440,119,0): 67, 47, 38, (440,120,0): 64, 44, 35, (440,121,0): 65, 45, 36, (440,122,0): 66, 46, 37, (440,123,0): 67, 47, 38, (440,124,0): 69, 49, 40, (440,125,0): 70, 50, 41, (440,126,0): 71, 51, 42, (440,127,0): 72, 52, 43, (440,128,0): 73, 54, 48, (440,129,0): 74, 55, 49, (440,130,0): 74, 55, 49, (440,131,0): 75, 56, 50, (440,132,0): 76, 57, 51, (440,133,0): 77, 58, 52, (440,134,0): 78, 59, 53, (440,135,0): 79, 60, 54, (440,136,0): 81, 62, 56, (440,137,0): 81, 62, 56, (440,138,0): 82, 63, 57, (440,139,0): 83, 64, 58, (440,140,0): 84, 65, 59, (440,141,0): 85, 66, 60, (440,142,0): 86, 67, 61, (440,143,0): 86, 67, 61, (440,144,0): 89, 69, 62, (440,145,0): 90, 67, 61, (440,146,0): 88, 65, 59, (440,147,0): 85, 65, 58, (440,148,0): 85, 64, 59, (440,149,0): 86, 65, 60, (440,150,0): 88, 67, 62, (440,151,0): 88, 69, 63, (440,152,0): 92, 73, 69, (440,153,0): 91, 73, 69, (440,154,0): 91, 73, 71, (440,155,0): 92, 74, 72, (440,156,0): 93, 75, 73, (440,157,0): 91, 76, 73, (440,158,0): 91, 75, 75, (440,159,0): 91, 77, 76, (440,160,0): 87, 76, 74, (440,161,0): 88, 77, 75, (440,162,0): 92, 78, 77, (440,163,0): 95, 81, 80, (440,164,0): 96, 82, 81, (440,165,0): 97, 83, 82, (440,166,0): 98, 82, 82, (440,167,0): 98, 82, 82, (440,168,0): 103, 85, 85, (440,169,0): 102, 84, 84, (440,170,0): 102, 84, 84, (440,171,0): 102, 84, 84, (440,172,0): 103, 83, 84, (440,173,0): 103, 83, 84, (440,174,0): 102, 82, 83, (440,175,0): 102, 82, 81, (440,176,0): 103, 85, 83, (440,177,0): 103, 85, 81, (440,178,0): 103, 84, 80, (440,179,0): 103, 84, 80, (440,180,0): 103, 84, 80, (440,181,0): 105, 86, 82, (440,182,0): 107, 86, 83, (440,183,0): 108, 87, 84, (440,184,0): 107, 83, 81, (440,185,0): 108, 84, 82, (440,186,0): 110, 86, 84, (440,187,0): 112, 88, 86, (440,188,0): 113, 87, 86, (440,189,0): 113, 87, 86, (440,190,0): 113, 87, 86, (440,191,0): 112, 87, 83, (440,192,0): 114, 86, 82, (440,193,0): 116, 89, 82, (440,194,0): 118, 89, 83, (440,195,0): 115, 86, 80, (440,196,0): 111, 82, 76, (440,197,0): 108, 79, 73, (440,198,0): 110, 79, 74, (440,199,0): 112, 81, 76, (440,200,0): 111, 78, 73, (440,201,0): 110, 77, 72, (440,202,0): 108, 75, 70, (440,203,0): 107, 74, 69, (440,204,0): 106, 71, 67, (440,205,0): 104, 69, 65, (440,206,0): 102, 67, 63, (440,207,0): 101, 67, 65, (440,208,0): 99, 68, 66, (440,209,0): 99, 67, 68, (440,210,0): 103, 71, 72, (440,211,0): 108, 76, 77, (440,212,0): 109, 78, 76, (440,213,0): 112, 81, 79, (440,214,0): 125, 95, 95, (440,215,0): 139, 110, 112, (440,216,0): 173, 147, 150, (440,217,0): 193, 168, 172, (440,218,0): 209, 188, 195, (440,219,0): 211, 191, 200, (440,220,0): 204, 188, 199, (440,221,0): 203, 189, 202, (440,222,0): 202, 190, 204, (440,223,0): 199, 188, 204, (440,224,0): 198, 190, 211, (440,225,0): 193, 190, 211, (440,226,0): 190, 188, 210, (440,227,0): 185, 187, 210, (440,228,0): 182, 188, 212, (440,229,0): 179, 189, 214, (440,230,0): 180, 191, 219, (440,231,0): 178, 193, 222, (440,232,0): 167, 186, 218, (440,233,0): 166, 186, 219, (440,234,0): 164, 187, 221, (440,235,0): 163, 187, 223, (440,236,0): 164, 186, 227, (440,237,0): 163, 186, 227, (440,238,0): 164, 185, 228, (440,239,0): 163, 186, 228, (440,240,0): 161, 185, 229, (440,241,0): 159, 186, 229, (440,242,0): 158, 185, 232, (440,243,0): 157, 185, 232, (440,244,0): 156, 186, 236, (440,245,0): 156, 188, 239, (440,246,0): 157, 190, 243, (440,247,0): 156, 191, 247, (440,248,0): 155, 191, 249, (440,249,0): 152, 192, 251, (440,250,0): 151, 191, 253, (440,251,0): 148, 189, 253, (440,252,0): 145, 189, 254, (440,253,0): 143, 188, 255, (440,254,0): 142, 187, 255, (440,255,0): 139, 186, 254, (440,256,0): 137, 185, 255, (440,257,0): 136, 186, 255, (440,258,0): 135, 185, 255, (440,259,0): 135, 185, 255, (440,260,0): 134, 184, 255, (440,261,0): 134, 184, 255, (440,262,0): 131, 183, 255, (440,263,0): 131, 183, 255, (440,264,0): 130, 184, 255, (440,265,0): 130, 184, 255, (440,266,0): 128, 184, 255, (440,267,0): 128, 184, 255, (440,268,0): 128, 184, 255, (440,269,0): 128, 184, 255, (440,270,0): 128, 184, 255, (440,271,0): 127, 185, 255, (440,272,0): 129, 188, 255, (440,273,0): 128, 189, 255, (440,274,0): 128, 189, 255, (440,275,0): 128, 189, 255, (440,276,0): 128, 189, 255, (440,277,0): 128, 189, 255, (440,278,0): 128, 189, 255, (440,279,0): 128, 189, 255, (440,280,0): 125, 186, 253, (440,281,0): 125, 186, 253, (440,282,0): 126, 187, 254, (440,283,0): 126, 187, 254, (440,284,0): 126, 187, 254, (440,285,0): 127, 188, 255, (440,286,0): 127, 188, 255, (440,287,0): 125, 188, 255, (440,288,0): 123, 188, 255, (440,289,0): 123, 187, 255, (440,290,0): 124, 187, 255, (440,291,0): 126, 186, 255, (440,292,0): 127, 185, 255, (440,293,0): 127, 185, 255, (440,294,0): 126, 184, 255, (440,295,0): 126, 184, 255, (440,296,0): 123, 181, 254, (440,297,0): 119, 177, 250, (440,298,0): 126, 182, 255, (440,299,0): 132, 184, 255, (440,300,0): 129, 175, 252, (440,301,0): 135, 174, 253, (440,302,0): 144, 177, 255, (440,303,0): 151, 170, 247, (440,304,0): 153, 150, 221, (440,305,0): 128, 112, 174, (440,306,0): 93, 75, 125, (440,307,0): 66, 45, 84, (440,308,0): 52, 27, 56, (440,309,0): 57, 32, 53, (440,310,0): 63, 36, 51, (440,311,0): 52, 28, 42, (440,312,0): 48, 25, 41, (440,313,0): 46, 25, 42, (440,314,0): 42, 25, 43, (440,315,0): 38, 24, 41, (440,316,0): 36, 22, 37, (440,317,0): 33, 21, 31, (440,318,0): 32, 21, 27, (440,319,0): 31, 20, 26, (440,320,0): 31, 19, 31, (440,321,0): 31, 19, 33, (440,322,0): 31, 19, 33, (440,323,0): 30, 18, 32, (440,324,0): 30, 18, 32, (440,325,0): 29, 17, 31, (440,326,0): 29, 17, 31, (440,327,0): 29, 17, 31, (440,328,0): 30, 18, 32, (440,329,0): 30, 18, 32, (440,330,0): 30, 18, 32, (440,331,0): 30, 18, 32, (440,332,0): 30, 18, 32, (440,333,0): 30, 18, 32, (440,334,0): 30, 18, 32, (440,335,0): 30, 18, 30, (440,336,0): 27, 15, 27, (440,337,0): 27, 15, 25, (440,338,0): 27, 15, 25, (440,339,0): 27, 15, 25, (440,340,0): 27, 15, 25, (440,341,0): 27, 15, 25, (440,342,0): 27, 15, 25, (440,343,0): 27, 15, 25, (440,344,0): 25, 13, 23, (440,345,0): 25, 13, 23, (440,346,0): 26, 14, 24, (440,347,0): 26, 14, 24, (440,348,0): 26, 14, 24, (440,349,0): 26, 14, 24, (440,350,0): 25, 13, 23, (440,351,0): 25, 13, 23, (440,352,0): 27, 15, 29, (440,353,0): 26, 14, 28, (440,354,0): 23, 11, 25, (440,355,0): 21, 9, 23, (440,356,0): 19, 8, 22, (440,357,0): 19, 8, 22, (440,358,0): 20, 9, 23, (440,359,0): 21, 10, 24, (440,360,0): 17, 9, 22, (440,361,0): 18, 10, 23, (440,362,0): 18, 12, 24, (440,363,0): 19, 13, 25, (440,364,0): 21, 15, 27, (440,365,0): 22, 16, 28, (440,366,0): 21, 18, 29, (440,367,0): 23, 17, 29, (440,368,0): 30, 19, 33, (440,369,0): 30, 18, 32, (440,370,0): 30, 18, 32, (440,371,0): 29, 17, 31, (440,372,0): 28, 16, 30, (440,373,0): 27, 15, 29, (440,374,0): 27, 15, 29, (440,375,0): 26, 14, 28, (440,376,0): 31, 19, 33, (440,377,0): 30, 18, 32, (440,378,0): 30, 18, 32, (440,379,0): 29, 17, 31, (440,380,0): 28, 16, 30, (440,381,0): 27, 15, 29, (440,382,0): 27, 15, 29, (440,383,0): 25, 14, 28, (440,384,0): 28, 17, 34, (440,385,0): 26, 17, 34, (440,386,0): 26, 17, 34, (440,387,0): 26, 17, 34, (440,388,0): 26, 17, 34, (440,389,0): 26, 17, 34, (440,390,0): 26, 17, 34, (440,391,0): 26, 17, 34, (440,392,0): 25, 16, 33, (440,393,0): 25, 16, 33, (440,394,0): 24, 15, 32, (440,395,0): 23, 14, 31, (440,396,0): 22, 13, 30, (440,397,0): 21, 12, 29, (440,398,0): 21, 12, 29, (440,399,0): 20, 13, 29, (440,400,0): 18, 14, 29, (440,401,0): 17, 15, 29, (440,402,0): 17, 15, 29, (440,403,0): 18, 16, 30, (440,404,0): 20, 18, 32, (440,405,0): 23, 21, 35, (440,406,0): 25, 23, 37, (440,407,0): 27, 25, 39, (440,408,0): 25, 23, 37, (440,409,0): 24, 22, 36, (440,410,0): 24, 22, 36, (440,411,0): 25, 23, 37, (440,412,0): 28, 26, 40, (440,413,0): 33, 31, 45, (440,414,0): 37, 35, 49, (440,415,0): 40, 38, 51, (440,416,0): 38, 34, 48, (440,417,0): 40, 34, 46, (440,418,0): 39, 33, 45, (440,419,0): 39, 33, 45, (440,420,0): 39, 31, 44, (440,421,0): 39, 31, 44, (440,422,0): 38, 30, 43, (440,423,0): 38, 30, 43, (440,424,0): 44, 33, 47, (440,425,0): 47, 36, 50, (440,426,0): 53, 41, 55, (440,427,0): 60, 48, 62, (440,428,0): 68, 56, 70, (440,429,0): 75, 63, 77, (440,430,0): 81, 67, 82, (440,431,0): 83, 70, 87, (440,432,0): 79, 66, 86, (440,433,0): 80, 67, 87, (440,434,0): 81, 68, 88, (440,435,0): 83, 70, 90, (440,436,0): 85, 70, 91, (440,437,0): 87, 72, 93, (440,438,0): 88, 73, 92, (440,439,0): 89, 74, 93, (440,440,0): 84, 67, 86, (440,441,0): 85, 68, 87, (440,442,0): 86, 67, 86, (440,443,0): 85, 66, 85, (440,444,0): 82, 63, 82, (440,445,0): 78, 59, 78, (440,446,0): 76, 55, 74, (440,447,0): 71, 53, 69, (440,448,0): 59, 46, 56, (440,449,0): 62, 51, 59, (440,450,0): 69, 56, 65, (440,451,0): 76, 63, 72, (440,452,0): 81, 68, 77, (440,453,0): 84, 71, 80, (440,454,0): 88, 72, 82, (440,455,0): 88, 72, 82, (440,456,0): 99, 83, 94, (440,457,0): 98, 82, 93, (440,458,0): 98, 80, 92, (440,459,0): 97, 80, 90, (440,460,0): 98, 80, 92, (440,461,0): 99, 82, 92, (440,462,0): 101, 83, 95, (440,463,0): 102, 86, 96, (440,464,0): 91, 78, 85, (440,465,0): 83, 71, 75, (440,466,0): 78, 62, 63, (440,467,0): 78, 58, 59, (440,468,0): 72, 53, 49, (440,469,0): 68, 49, 42, (440,470,0): 76, 56, 45, (440,471,0): 88, 69, 54, (440,472,0): 98, 79, 62, (440,473,0): 100, 82, 62, (440,474,0): 100, 85, 64, (440,475,0): 95, 93, 68, (440,476,0): 99, 116, 84, (440,477,0): 121, 159, 120, (440,478,0): 154, 213, 167, (440,479,0): 188, 246, 208, (440,480,0): 219, 253, 237, (440,481,0): 239, 255, 255, (440,482,0): 240, 255, 255, (440,483,0): 235, 255, 255, (440,484,0): 227, 255, 255, (440,485,0): 211, 247, 255, (440,486,0): 179, 212, 229, (440,487,0): 151, 174, 190, (440,488,0): 132, 138, 152, (440,489,0): 131, 124, 132, (440,490,0): 128, 112, 112, (440,491,0): 134, 112, 101, (440,492,0): 137, 114, 96, (440,493,0): 138, 110, 88, (440,494,0): 141, 105, 83, (440,495,0): 144, 102, 80, (440,496,0): 132, 87, 66, (440,497,0): 124, 78, 55, (440,498,0): 126, 74, 50, (440,499,0): 138, 82, 59, (440,500,0): 144, 86, 64, (440,501,0): 141, 82, 64, (440,502,0): 138, 80, 69, (440,503,0): 138, 80, 78, (440,504,0): 141, 80, 88, (440,505,0): 161, 90, 108, (440,506,0): 172, 88, 114, (440,507,0): 187, 88, 117, (440,508,0): 217, 102, 133, (440,509,0): 236, 107, 137, (440,510,0): 239, 99, 126, (440,511,0): 238, 96, 120, (440,512,0): 212, 79, 100, (440,513,0): 199, 74, 90, (440,514,0): 189, 71, 87, (440,515,0): 167, 55, 67, (440,516,0): 156, 46, 57, (440,517,0): 160, 50, 61, (440,518,0): 167, 51, 64, (440,519,0): 182, 61, 78, (440,520,0): 181, 58, 78, (440,521,0): 165, 41, 65, (440,522,0): 164, 46, 72, (440,523,0): 184, 69, 100, (440,524,0): 183, 72, 105, (440,525,0): 162, 54, 90, (440,526,0): 160, 51, 90, (440,527,0): 182, 68, 102, (440,528,0): 191, 65, 89, (440,529,0): 196, 69, 88, (440,530,0): 192, 75, 93, (440,531,0): 170, 63, 79, (440,532,0): 149, 48, 62, (440,533,0): 151, 53, 66, (440,534,0): 160, 55, 70, (440,535,0): 153, 43, 56, (440,536,0): 173, 52, 67, (440,537,0): 186, 60, 72, (440,538,0): 182, 56, 68, (440,539,0): 174, 54, 64, (440,540,0): 167, 60, 68, (440,541,0): 147, 52, 58, (440,542,0): 123, 42, 48, (440,543,0): 123, 44, 50, (440,544,0): 123, 33, 43, (440,545,0): 142, 42, 54, (440,546,0): 163, 51, 67, (440,547,0): 171, 54, 70, (440,548,0): 167, 52, 67, (440,549,0): 164, 49, 62, (440,550,0): 168, 52, 65, (440,551,0): 180, 53, 70, (440,552,0): 192, 46, 69, (440,553,0): 216, 57, 87, (440,554,0): 213, 49, 83, (440,555,0): 190, 35, 67, (440,556,0): 172, 39, 66, (440,557,0): 152, 40, 62, (440,558,0): 123, 29, 47, (440,559,0): 100, 26, 49, (440,560,0): 83, 31, 67, (440,561,0): 70, 28, 100, (440,562,0): 66, 25, 155, (440,563,0): 68, 28, 202, (440,564,0): 72, 35, 237, (440,565,0): 72, 38, 238, (440,566,0): 67, 34, 199, (440,567,0): 65, 30, 156, (440,568,0): 77, 38, 121, (440,569,0): 80, 36, 95, (440,570,0): 83, 33, 84, (440,571,0): 83, 34, 79, (440,572,0): 83, 37, 83, (440,573,0): 78, 40, 79, (440,574,0): 72, 41, 72, (440,575,0): 68, 40, 62, (440,576,0): 72, 40, 53, (440,577,0): 75, 39, 49, (440,578,0): 75, 39, 49, (440,579,0): 72, 39, 48, (440,580,0): 72, 39, 48, (440,581,0): 72, 39, 48, (440,582,0): 71, 40, 48, (440,583,0): 71, 40, 48, (440,584,0): 68, 37, 43, (440,585,0): 67, 38, 43, (440,586,0): 66, 37, 42, (440,587,0): 66, 37, 42, (440,588,0): 63, 36, 41, (440,589,0): 63, 36, 41, (440,590,0): 62, 35, 40, (440,591,0): 61, 36, 42, (440,592,0): 63, 37, 46, (440,593,0): 60, 34, 43, (440,594,0): 58, 32, 41, (440,595,0): 57, 31, 40, (440,596,0): 59, 33, 42, (440,597,0): 59, 33, 42, (440,598,0): 56, 30, 39, (440,599,0): 54, 28, 37, (441,0,0): 73, 79, 67, (441,1,0): 72, 78, 66, (441,2,0): 72, 78, 66, (441,3,0): 72, 78, 66, (441,4,0): 71, 77, 65, (441,5,0): 71, 77, 65, (441,6,0): 70, 76, 64, (441,7,0): 70, 76, 64, (441,8,0): 71, 77, 65, (441,9,0): 71, 77, 65, (441,10,0): 71, 77, 65, (441,11,0): 72, 78, 66, (441,12,0): 72, 78, 66, (441,13,0): 73, 79, 67, (441,14,0): 73, 79, 67, (441,15,0): 74, 80, 68, (441,16,0): 73, 79, 67, (441,17,0): 73, 79, 67, (441,18,0): 73, 79, 67, (441,19,0): 74, 80, 68, (441,20,0): 74, 80, 68, (441,21,0): 75, 81, 69, (441,22,0): 75, 81, 69, (441,23,0): 75, 81, 69, (441,24,0): 78, 84, 72, (441,25,0): 78, 84, 72, (441,26,0): 78, 84, 72, (441,27,0): 78, 84, 72, (441,28,0): 78, 84, 72, (441,29,0): 78, 84, 72, (441,30,0): 78, 84, 72, (441,31,0): 80, 83, 72, (441,32,0): 81, 83, 72, (441,33,0): 82, 82, 72, (441,34,0): 84, 81, 72, (441,35,0): 83, 80, 71, (441,36,0): 83, 80, 71, (441,37,0): 82, 79, 70, (441,38,0): 83, 79, 68, (441,39,0): 83, 79, 68, (441,40,0): 84, 78, 66, (441,41,0): 84, 78, 66, (441,42,0): 84, 78, 64, (441,43,0): 84, 78, 64, (441,44,0): 85, 77, 64, (441,45,0): 85, 77, 64, (441,46,0): 86, 78, 65, (441,47,0): 86, 78, 65, (441,48,0): 91, 83, 70, (441,49,0): 91, 83, 70, (441,50,0): 91, 83, 70, (441,51,0): 92, 84, 71, (441,52,0): 93, 85, 72, (441,53,0): 93, 85, 72, (441,54,0): 93, 85, 72, (441,55,0): 94, 86, 73, (441,56,0): 94, 86, 73, (441,57,0): 94, 86, 73, (441,58,0): 94, 86, 73, (441,59,0): 94, 86, 73, (441,60,0): 93, 85, 72, (441,61,0): 93, 85, 72, (441,62,0): 93, 85, 72, (441,63,0): 93, 85, 72, (441,64,0): 93, 85, 72, (441,65,0): 93, 85, 72, (441,66,0): 93, 85, 72, (441,67,0): 93, 85, 72, (441,68,0): 95, 85, 73, (441,69,0): 95, 85, 73, (441,70,0): 95, 85, 73, (441,71,0): 95, 85, 73, (441,72,0): 96, 84, 72, (441,73,0): 95, 83, 71, (441,74,0): 94, 80, 69, (441,75,0): 92, 78, 67, (441,76,0): 90, 76, 65, (441,77,0): 88, 74, 63, (441,78,0): 88, 71, 61, (441,79,0): 87, 70, 60, (441,80,0): 83, 69, 58, (441,81,0): 82, 70, 58, (441,82,0): 81, 69, 57, (441,83,0): 80, 68, 56, (441,84,0): 79, 67, 55, (441,85,0): 78, 66, 54, (441,86,0): 78, 66, 54, (441,87,0): 77, 65, 53, (441,88,0): 78, 66, 54, (441,89,0): 77, 65, 53, (441,90,0): 76, 64, 52, (441,91,0): 75, 63, 51, (441,92,0): 74, 62, 50, (441,93,0): 73, 61, 49, (441,94,0): 72, 60, 48, (441,95,0): 73, 59, 46, (441,96,0): 73, 57, 44, (441,97,0): 72, 54, 40, (441,98,0): 69, 51, 37, (441,99,0): 67, 49, 35, (441,100,0): 65, 47, 33, (441,101,0): 65, 47, 33, (441,102,0): 65, 47, 33, (441,103,0): 65, 47, 33, (441,104,0): 66, 48, 34, (441,105,0): 66, 48, 34, (441,106,0): 65, 47, 33, (441,107,0): 66, 48, 34, (441,108,0): 67, 49, 35, (441,109,0): 69, 51, 37, (441,110,0): 71, 53, 39, (441,111,0): 72, 54, 40, (441,112,0): 73, 53, 44, (441,113,0): 72, 52, 43, (441,114,0): 71, 51, 42, (441,115,0): 70, 50, 41, (441,116,0): 68, 48, 39, (441,117,0): 68, 48, 39, (441,118,0): 67, 47, 38, (441,119,0): 67, 47, 38, (441,120,0): 65, 45, 36, (441,121,0): 65, 45, 36, (441,122,0): 66, 46, 37, (441,123,0): 67, 47, 38, (441,124,0): 69, 49, 40, (441,125,0): 70, 50, 41, (441,126,0): 71, 51, 42, (441,127,0): 71, 51, 42, (441,128,0): 73, 54, 48, (441,129,0): 73, 54, 48, (441,130,0): 74, 55, 49, (441,131,0): 75, 56, 50, (441,132,0): 76, 57, 51, (441,133,0): 77, 58, 52, (441,134,0): 78, 59, 53, (441,135,0): 78, 59, 53, (441,136,0): 80, 61, 55, (441,137,0): 81, 62, 56, (441,138,0): 82, 63, 57, (441,139,0): 83, 64, 58, (441,140,0): 84, 65, 59, (441,141,0): 85, 66, 60, (441,142,0): 86, 67, 61, (441,143,0): 87, 66, 61, (441,144,0): 90, 67, 61, (441,145,0): 89, 66, 60, (441,146,0): 88, 65, 59, (441,147,0): 87, 64, 58, (441,148,0): 85, 64, 59, (441,149,0): 86, 65, 60, (441,150,0): 87, 66, 61, (441,151,0): 88, 67, 62, (441,152,0): 90, 71, 67, (441,153,0): 90, 71, 67, (441,154,0): 89, 71, 69, (441,155,0): 90, 72, 70, (441,156,0): 90, 72, 70, (441,157,0): 91, 73, 71, (441,158,0): 89, 73, 73, (441,159,0): 90, 74, 74, (441,160,0): 88, 74, 73, (441,161,0): 87, 76, 74, (441,162,0): 91, 77, 76, (441,163,0): 94, 80, 79, (441,164,0): 95, 81, 80, (441,165,0): 96, 82, 81, (441,166,0): 97, 81, 81, (441,167,0): 97, 81, 81, (441,168,0): 101, 83, 83, (441,169,0): 101, 83, 83, (441,170,0): 101, 83, 83, (441,171,0): 102, 84, 84, (441,172,0): 103, 83, 84, (441,173,0): 103, 83, 84, (441,174,0): 103, 83, 84, (441,175,0): 103, 83, 82, (441,176,0): 103, 85, 83, (441,177,0): 103, 85, 81, (441,178,0): 103, 84, 80, (441,179,0): 103, 84, 80, (441,180,0): 103, 84, 80, (441,181,0): 104, 85, 81, (441,182,0): 107, 86, 83, (441,183,0): 108, 87, 84, (441,184,0): 108, 84, 82, (441,185,0): 109, 85, 83, (441,186,0): 111, 87, 85, (441,187,0): 112, 88, 86, (441,188,0): 114, 88, 87, (441,189,0): 114, 88, 87, (441,190,0): 114, 88, 87, (441,191,0): 114, 89, 85, (441,192,0): 115, 87, 83, (441,193,0): 116, 89, 82, (441,194,0): 118, 89, 83, (441,195,0): 115, 86, 80, (441,196,0): 111, 82, 76, (441,197,0): 109, 80, 74, (441,198,0): 110, 79, 74, (441,199,0): 112, 81, 76, (441,200,0): 111, 78, 73, (441,201,0): 110, 77, 72, (441,202,0): 109, 76, 71, (441,203,0): 107, 74, 69, (441,204,0): 107, 72, 68, (441,205,0): 105, 70, 66, (441,206,0): 104, 69, 65, (441,207,0): 103, 68, 66, (441,208,0): 102, 68, 69, (441,209,0): 100, 68, 69, (441,210,0): 102, 70, 71, (441,211,0): 107, 75, 76, (441,212,0): 108, 77, 75, (441,213,0): 110, 79, 77, (441,214,0): 122, 92, 92, (441,215,0): 135, 107, 106, (441,216,0): 161, 132, 134, (441,217,0): 178, 153, 156, (441,218,0): 197, 174, 180, (441,219,0): 205, 184, 191, (441,220,0): 205, 188, 198, (441,221,0): 207, 191, 202, (441,222,0): 208, 192, 205, (441,223,0): 203, 190, 207, (441,224,0): 197, 188, 207, (441,225,0): 194, 189, 209, (441,226,0): 193, 190, 211, (441,227,0): 190, 191, 212, (441,228,0): 188, 190, 213, (441,229,0): 182, 190, 213, (441,230,0): 179, 189, 216, (441,231,0): 176, 190, 217, (441,232,0): 170, 187, 217, (441,233,0): 168, 187, 219, (441,234,0): 167, 187, 220, (441,235,0): 165, 188, 222, (441,236,0): 167, 186, 226, (441,237,0): 165, 187, 228, (441,238,0): 167, 186, 228, (441,239,0): 165, 186, 229, (441,240,0): 163, 186, 230, (441,241,0): 162, 186, 230, (441,242,0): 161, 185, 233, (441,243,0): 159, 186, 233, (441,244,0): 159, 187, 237, (441,245,0): 158, 188, 240, (441,246,0): 159, 190, 244, (441,247,0): 157, 192, 248, (441,248,0): 155, 191, 249, (441,249,0): 152, 192, 251, (441,250,0): 150, 191, 253, (441,251,0): 146, 190, 253, (441,252,0): 144, 189, 254, (441,253,0): 141, 189, 255, (441,254,0): 140, 187, 255, (441,255,0): 139, 188, 255, (441,256,0): 136, 186, 255, (441,257,0): 136, 186, 255, (441,258,0): 135, 185, 255, (441,259,0): 135, 185, 255, (441,260,0): 134, 184, 255, (441,261,0): 134, 184, 255, (441,262,0): 131, 183, 255, (441,263,0): 131, 183, 255, (441,264,0): 129, 183, 255, (441,265,0): 129, 183, 255, (441,266,0): 127, 183, 255, (441,267,0): 127, 183, 255, (441,268,0): 127, 183, 255, (441,269,0): 127, 183, 255, (441,270,0): 127, 183, 255, (441,271,0): 126, 184, 255, (441,272,0): 128, 187, 255, (441,273,0): 127, 188, 255, (441,274,0): 127, 188, 255, (441,275,0): 127, 188, 255, (441,276,0): 127, 188, 255, (441,277,0): 127, 188, 255, (441,278,0): 127, 188, 255, (441,279,0): 127, 188, 255, (441,280,0): 126, 187, 254, (441,281,0): 126, 187, 254, (441,282,0): 126, 187, 254, (441,283,0): 126, 187, 254, (441,284,0): 126, 187, 254, (441,285,0): 127, 188, 255, (441,286,0): 127, 188, 255, (441,287,0): 125, 188, 255, (441,288,0): 124, 188, 255, (441,289,0): 123, 187, 255, (441,290,0): 126, 186, 255, (441,291,0): 126, 186, 255, (441,292,0): 126, 184, 255, (441,293,0): 126, 184, 255, (441,294,0): 126, 184, 255, (441,295,0): 126, 184, 255, (441,296,0): 123, 183, 255, (441,297,0): 119, 177, 250, (441,298,0): 128, 182, 255, (441,299,0): 134, 183, 255, (441,300,0): 131, 174, 252, (441,301,0): 137, 174, 254, (441,302,0): 147, 175, 255, (441,303,0): 151, 167, 244, (441,304,0): 146, 139, 206, (441,305,0): 118, 99, 154, (441,306,0): 83, 64, 110, (441,307,0): 63, 41, 77, (441,308,0): 52, 29, 55, (441,309,0): 54, 31, 49, (441,310,0): 57, 35, 48, (441,311,0): 50, 28, 41, (441,312,0): 46, 25, 40, (441,313,0): 44, 26, 42, (441,314,0): 39, 25, 42, (441,315,0): 37, 24, 41, (441,316,0): 35, 22, 39, (441,317,0): 33, 21, 33, (441,318,0): 32, 21, 29, (441,319,0): 31, 20, 28, (441,320,0): 31, 19, 31, (441,321,0): 31, 19, 33, (441,322,0): 31, 19, 33, (441,323,0): 30, 18, 32, (441,324,0): 30, 18, 32, (441,325,0): 29, 17, 31, (441,326,0): 29, 17, 31, (441,327,0): 29, 17, 31, (441,328,0): 30, 18, 32, (441,329,0): 30, 18, 32, (441,330,0): 30, 18, 32, (441,331,0): 30, 18, 32, (441,332,0): 30, 18, 32, (441,333,0): 30, 18, 32, (441,334,0): 30, 18, 32, (441,335,0): 30, 18, 32, (441,336,0): 27, 15, 27, (441,337,0): 27, 15, 25, (441,338,0): 27, 15, 25, (441,339,0): 27, 15, 25, (441,340,0): 27, 15, 25, (441,341,0): 27, 15, 25, (441,342,0): 27, 15, 25, (441,343,0): 27, 15, 25, (441,344,0): 25, 13, 23, (441,345,0): 25, 13, 23, (441,346,0): 26, 14, 24, (441,347,0): 26, 14, 24, (441,348,0): 26, 14, 24, (441,349,0): 26, 14, 24, (441,350,0): 25, 13, 23, (441,351,0): 25, 13, 23, (441,352,0): 27, 15, 29, (441,353,0): 26, 14, 28, (441,354,0): 24, 12, 26, (441,355,0): 22, 10, 24, (441,356,0): 20, 9, 23, (441,357,0): 20, 9, 23, (441,358,0): 20, 9, 23, (441,359,0): 21, 10, 24, (441,360,0): 17, 9, 22, (441,361,0): 18, 10, 23, (441,362,0): 18, 12, 24, (441,363,0): 19, 13, 25, (441,364,0): 20, 14, 26, (441,365,0): 22, 16, 28, (441,366,0): 20, 17, 28, (441,367,0): 23, 17, 29, (441,368,0): 29, 18, 32, (441,369,0): 30, 18, 32, (441,370,0): 29, 17, 31, (441,371,0): 29, 17, 31, (441,372,0): 28, 16, 30, (441,373,0): 27, 15, 29, (441,374,0): 27, 15, 29, (441,375,0): 26, 14, 28, (441,376,0): 30, 18, 32, (441,377,0): 30, 18, 32, (441,378,0): 30, 18, 32, (441,379,0): 29, 17, 31, (441,380,0): 28, 16, 30, (441,381,0): 27, 15, 29, (441,382,0): 27, 15, 29, (441,383,0): 26, 15, 29, (441,384,0): 28, 17, 34, (441,385,0): 26, 17, 34, (441,386,0): 26, 17, 34, (441,387,0): 26, 17, 34, (441,388,0): 26, 17, 34, (441,389,0): 26, 17, 34, (441,390,0): 26, 17, 34, (441,391,0): 26, 17, 34, (441,392,0): 25, 16, 33, (441,393,0): 25, 16, 33, (441,394,0): 24, 15, 32, (441,395,0): 24, 15, 32, (441,396,0): 23, 14, 31, (441,397,0): 22, 13, 30, (441,398,0): 22, 13, 30, (441,399,0): 20, 13, 29, (441,400,0): 19, 15, 30, (441,401,0): 18, 16, 30, (441,402,0): 18, 16, 30, (441,403,0): 19, 17, 31, (441,404,0): 21, 19, 33, (441,405,0): 23, 21, 35, (441,406,0): 25, 23, 37, (441,407,0): 27, 25, 39, (441,408,0): 27, 25, 39, (441,409,0): 27, 25, 39, (441,410,0): 26, 24, 38, (441,411,0): 27, 25, 39, (441,412,0): 30, 28, 42, (441,413,0): 33, 31, 45, (441,414,0): 37, 35, 49, (441,415,0): 41, 37, 51, (441,416,0): 41, 35, 49, (441,417,0): 41, 35, 47, (441,418,0): 41, 35, 47, (441,419,0): 40, 34, 46, (441,420,0): 41, 33, 46, (441,421,0): 40, 32, 45, (441,422,0): 40, 32, 45, (441,423,0): 40, 32, 45, (441,424,0): 47, 36, 50, (441,425,0): 50, 39, 53, (441,426,0): 55, 43, 57, (441,427,0): 62, 50, 64, (441,428,0): 69, 57, 71, (441,429,0): 75, 63, 77, (441,430,0): 81, 67, 82, (441,431,0): 83, 69, 86, (441,432,0): 78, 65, 83, (441,433,0): 79, 66, 84, (441,434,0): 80, 67, 87, (441,435,0): 81, 68, 86, (441,436,0): 84, 69, 90, (441,437,0): 85, 70, 89, (441,438,0): 87, 72, 91, (441,439,0): 87, 72, 91, (441,440,0): 85, 68, 87, (441,441,0): 85, 68, 87, (441,442,0): 86, 67, 86, (441,443,0): 85, 66, 85, (441,444,0): 82, 63, 82, (441,445,0): 77, 58, 77, (441,446,0): 75, 54, 73, (441,447,0): 72, 51, 68, (441,448,0): 61, 45, 56, (441,449,0): 62, 49, 56, (441,450,0): 69, 53, 63, (441,451,0): 73, 60, 69, (441,452,0): 80, 64, 74, (441,453,0): 85, 69, 79, (441,454,0): 88, 72, 82, (441,455,0): 89, 73, 83, (441,456,0): 96, 80, 91, (441,457,0): 95, 79, 90, (441,458,0): 95, 77, 89, (441,459,0): 93, 75, 87, (441,460,0): 93, 75, 87, (441,461,0): 94, 76, 88, (441,462,0): 96, 78, 90, (441,463,0): 97, 79, 91, (441,464,0): 90, 74, 84, (441,465,0): 82, 67, 72, (441,466,0): 81, 60, 65, (441,467,0): 79, 57, 59, (441,468,0): 76, 52, 50, (441,469,0): 72, 49, 43, (441,470,0): 76, 56, 45, (441,471,0): 85, 66, 52, (441,472,0): 93, 71, 57, (441,473,0): 96, 77, 62, (441,474,0): 100, 85, 66, (441,475,0): 97, 95, 72, (441,476,0): 99, 118, 90, (441,477,0): 120, 162, 126, (441,478,0): 152, 217, 175, (441,479,0): 191, 251, 217, (441,480,0): 232, 255, 244, (441,481,0): 247, 255, 255, (441,482,0): 244, 255, 255, (441,483,0): 235, 254, 255, (441,484,0): 225, 255, 255, (441,485,0): 211, 244, 255, (441,486,0): 178, 209, 230, (441,487,0): 149, 170, 191, (441,488,0): 132, 137, 156, (441,489,0): 129, 121, 132, (441,490,0): 128, 112, 112, (441,491,0): 135, 115, 104, (441,492,0): 135, 117, 97, (441,493,0): 130, 108, 84, (441,494,0): 128, 100, 78, (441,495,0): 133, 98, 76, (441,496,0): 127, 87, 61, (441,497,0): 132, 85, 57, (441,498,0): 147, 87, 61, (441,499,0): 160, 94, 70, (441,500,0): 162, 94, 71, (441,501,0): 151, 86, 68, (441,502,0): 137, 81, 68, (441,503,0): 131, 81, 74, (441,504,0): 126, 76, 79, (441,505,0): 140, 82, 94, (441,506,0): 153, 78, 98, (441,507,0): 176, 80, 107, (441,508,0): 217, 100, 129, (441,509,0): 242, 107, 137, (441,510,0): 244, 95, 124, (441,511,0): 242, 90, 115, (441,512,0): 236, 89, 108, (441,513,0): 217, 76, 93, (441,514,0): 197, 64, 81, (441,515,0): 172, 47, 61, (441,516,0): 159, 41, 53, (441,517,0): 161, 45, 58, (441,518,0): 160, 42, 56, (441,519,0): 166, 48, 64, (441,520,0): 180, 58, 79, (441,521,0): 166, 48, 72, (441,522,0): 161, 46, 75, (441,523,0): 165, 54, 87, (441,524,0): 162, 52, 89, (441,525,0): 151, 42, 83, (441,526,0): 155, 44, 87, (441,527,0): 174, 53, 94, (441,528,0): 198, 57, 89, (441,529,0): 200, 56, 83, (441,530,0): 187, 57, 81, (441,531,0): 168, 49, 71, (441,532,0): 156, 47, 66, (441,533,0): 174, 69, 86, (441,534,0): 187, 79, 95, (441,535,0): 181, 64, 80, (441,536,0): 179, 54, 68, (441,537,0): 192, 62, 74, (441,538,0): 193, 61, 74, (441,539,0): 188, 61, 72, (441,540,0): 183, 66, 75, (441,541,0): 164, 57, 67, (441,542,0): 142, 45, 54, (441,543,0): 141, 45, 56, (441,544,0): 150, 48, 61, (441,545,0): 153, 42, 58, (441,546,0): 159, 36, 54, (441,547,0): 163, 36, 55, (441,548,0): 167, 42, 58, (441,549,0): 173, 51, 66, (441,550,0): 182, 56, 70, (441,551,0): 191, 56, 73, (441,552,0): 198, 41, 68, (441,553,0): 214, 51, 80, (441,554,0): 210, 49, 82, (441,555,0): 191, 47, 74, (441,556,0): 172, 53, 75, (441,557,0): 144, 48, 62, (441,558,0): 114, 34, 47, (441,559,0): 95, 32, 51, (441,560,0): 80, 34, 70, (441,561,0): 70, 34, 108, (441,562,0): 68, 31, 163, (441,563,0): 70, 33, 209, (441,564,0): 70, 36, 244, (441,565,0): 71, 38, 243, (441,566,0): 68, 36, 205, (441,567,0): 67, 34, 165, (441,568,0): 69, 31, 118, (441,569,0): 71, 30, 90, (441,570,0): 76, 28, 78, (441,571,0): 78, 29, 74, (441,572,0): 78, 32, 78, (441,573,0): 76, 35, 77, (441,574,0): 70, 36, 69, (441,575,0): 68, 36, 60, (441,576,0): 75, 41, 57, (441,577,0): 77, 41, 51, (441,578,0): 76, 40, 50, (441,579,0): 75, 39, 49, (441,580,0): 73, 40, 49, (441,581,0): 72, 39, 48, (441,582,0): 71, 38, 47, (441,583,0): 70, 39, 47, (441,584,0): 68, 37, 43, (441,585,0): 68, 37, 43, (441,586,0): 67, 38, 43, (441,587,0): 66, 37, 42, (441,588,0): 66, 37, 42, (441,589,0): 63, 36, 41, (441,590,0): 63, 36, 41, (441,591,0): 62, 35, 40, (441,592,0): 63, 38, 44, (441,593,0): 60, 34, 43, (441,594,0): 58, 32, 41, (441,595,0): 58, 32, 41, (441,596,0): 59, 33, 42, (441,597,0): 59, 33, 42, (441,598,0): 56, 30, 39, (441,599,0): 54, 28, 37, (442,0,0): 73, 79, 67, (442,1,0): 73, 79, 67, (442,2,0): 72, 78, 66, (442,3,0): 72, 78, 66, (442,4,0): 71, 77, 65, (442,5,0): 71, 77, 65, (442,6,0): 70, 76, 64, (442,7,0): 70, 76, 64, (442,8,0): 70, 76, 64, (442,9,0): 71, 77, 65, (442,10,0): 71, 77, 65, (442,11,0): 72, 78, 66, (442,12,0): 72, 78, 66, (442,13,0): 73, 79, 67, (442,14,0): 73, 79, 67, (442,15,0): 73, 79, 67, (442,16,0): 73, 79, 67, (442,17,0): 73, 79, 67, (442,18,0): 73, 79, 67, (442,19,0): 74, 80, 68, (442,20,0): 74, 80, 68, (442,21,0): 75, 81, 69, (442,22,0): 75, 81, 69, (442,23,0): 75, 81, 69, (442,24,0): 78, 84, 72, (442,25,0): 78, 84, 72, (442,26,0): 78, 84, 72, (442,27,0): 78, 84, 72, (442,28,0): 78, 84, 72, (442,29,0): 78, 84, 72, (442,30,0): 78, 84, 72, (442,31,0): 80, 83, 72, (442,32,0): 81, 83, 72, (442,33,0): 82, 82, 72, (442,34,0): 84, 81, 72, (442,35,0): 83, 80, 71, (442,36,0): 83, 80, 71, (442,37,0): 82, 79, 70, (442,38,0): 83, 79, 68, (442,39,0): 83, 79, 68, (442,40,0): 84, 78, 66, (442,41,0): 84, 78, 66, (442,42,0): 84, 78, 64, (442,43,0): 84, 78, 64, (442,44,0): 85, 77, 64, (442,45,0): 85, 77, 64, (442,46,0): 85, 77, 64, (442,47,0): 85, 77, 64, (442,48,0): 88, 80, 69, (442,49,0): 88, 80, 69, (442,50,0): 89, 81, 70, (442,51,0): 89, 81, 70, (442,52,0): 90, 82, 71, (442,53,0): 90, 82, 71, (442,54,0): 91, 83, 72, (442,55,0): 91, 83, 72, (442,56,0): 92, 84, 73, (442,57,0): 92, 84, 73, (442,58,0): 92, 84, 73, (442,59,0): 92, 84, 73, (442,60,0): 92, 84, 73, (442,61,0): 92, 84, 73, (442,62,0): 92, 84, 73, (442,63,0): 93, 85, 74, (442,64,0): 94, 84, 72, (442,65,0): 93, 83, 71, (442,66,0): 93, 83, 71, (442,67,0): 93, 83, 71, (442,68,0): 95, 83, 71, (442,69,0): 95, 83, 71, (442,70,0): 95, 83, 71, (442,71,0): 95, 83, 71, (442,72,0): 94, 80, 69, (442,73,0): 94, 80, 69, (442,74,0): 94, 77, 67, (442,75,0): 92, 75, 65, (442,76,0): 90, 73, 63, (442,77,0): 88, 71, 61, (442,78,0): 87, 69, 59, (442,79,0): 86, 69, 59, (442,80,0): 82, 68, 57, (442,81,0): 82, 68, 57, (442,82,0): 81, 67, 56, (442,83,0): 81, 67, 56, (442,84,0): 81, 67, 56, (442,85,0): 81, 67, 56, (442,86,0): 81, 67, 56, (442,87,0): 81, 67, 56, (442,88,0): 80, 66, 55, (442,89,0): 80, 66, 55, (442,90,0): 79, 65, 54, (442,91,0): 78, 64, 53, (442,92,0): 77, 63, 52, (442,93,0): 76, 62, 51, (442,94,0): 75, 61, 50, (442,95,0): 74, 60, 47, (442,96,0): 73, 57, 44, (442,97,0): 72, 54, 40, (442,98,0): 70, 52, 38, (442,99,0): 68, 50, 36, (442,100,0): 66, 48, 34, (442,101,0): 66, 48, 34, (442,102,0): 65, 47, 33, (442,103,0): 65, 47, 33, (442,104,0): 66, 48, 34, (442,105,0): 65, 47, 33, (442,106,0): 65, 47, 33, (442,107,0): 65, 47, 33, (442,108,0): 66, 48, 34, (442,109,0): 68, 50, 36, (442,110,0): 70, 52, 38, (442,111,0): 71, 53, 39, (442,112,0): 72, 52, 43, (442,113,0): 72, 52, 43, (442,114,0): 71, 51, 42, (442,115,0): 70, 50, 41, (442,116,0): 69, 49, 40, (442,117,0): 68, 48, 39, (442,118,0): 67, 47, 38, (442,119,0): 67, 47, 38, (442,120,0): 65, 45, 36, (442,121,0): 66, 46, 37, (442,122,0): 67, 47, 38, (442,123,0): 67, 47, 38, (442,124,0): 69, 49, 40, (442,125,0): 69, 49, 40, (442,126,0): 70, 50, 41, (442,127,0): 71, 51, 42, (442,128,0): 73, 54, 48, (442,129,0): 73, 54, 48, (442,130,0): 74, 55, 49, (442,131,0): 75, 56, 50, (442,132,0): 76, 57, 51, (442,133,0): 77, 58, 52, (442,134,0): 78, 59, 53, (442,135,0): 78, 59, 53, (442,136,0): 80, 61, 55, (442,137,0): 80, 61, 55, (442,138,0): 81, 62, 56, (442,139,0): 82, 63, 57, (442,140,0): 83, 64, 58, (442,141,0): 84, 65, 59, (442,142,0): 85, 66, 60, (442,143,0): 87, 66, 61, (442,144,0): 89, 66, 60, (442,145,0): 89, 64, 57, (442,146,0): 87, 64, 56, (442,147,0): 86, 63, 55, (442,148,0): 86, 63, 57, (442,149,0): 87, 64, 58, (442,150,0): 86, 65, 60, (442,151,0): 87, 66, 61, (442,152,0): 86, 67, 61, (442,153,0): 87, 68, 62, (442,154,0): 87, 68, 64, (442,155,0): 88, 69, 65, (442,156,0): 87, 69, 67, (442,157,0): 88, 70, 68, (442,158,0): 88, 70, 68, (442,159,0): 86, 71, 68, (442,160,0): 86, 72, 71, (442,161,0): 86, 75, 73, (442,162,0): 90, 76, 75, (442,163,0): 92, 78, 77, (442,164,0): 94, 80, 79, (442,165,0): 95, 81, 80, (442,166,0): 96, 80, 80, (442,167,0): 96, 80, 80, (442,168,0): 99, 81, 81, (442,169,0): 99, 81, 81, (442,170,0): 100, 82, 82, (442,171,0): 101, 83, 83, (442,172,0): 103, 83, 84, (442,173,0): 104, 84, 85, (442,174,0): 104, 84, 85, (442,175,0): 104, 84, 83, (442,176,0): 103, 85, 83, (442,177,0): 102, 84, 80, (442,178,0): 102, 83, 79, (442,179,0): 102, 83, 79, (442,180,0): 103, 84, 80, (442,181,0): 104, 85, 81, (442,182,0): 106, 85, 82, (442,183,0): 107, 86, 83, (442,184,0): 108, 84, 82, (442,185,0): 109, 85, 83, (442,186,0): 111, 87, 85, (442,187,0): 113, 89, 87, (442,188,0): 115, 89, 88, (442,189,0): 116, 90, 89, (442,190,0): 115, 89, 88, (442,191,0): 115, 90, 86, (442,192,0): 116, 88, 84, (442,193,0): 117, 89, 85, (442,194,0): 118, 89, 85, (442,195,0): 115, 86, 82, (442,196,0): 112, 83, 79, (442,197,0): 110, 81, 77, (442,198,0): 111, 80, 77, (442,199,0): 112, 81, 78, (442,200,0): 112, 78, 76, (442,201,0): 111, 77, 75, (442,202,0): 110, 76, 74, (442,203,0): 108, 74, 72, (442,204,0): 108, 73, 71, (442,205,0): 106, 71, 69, (442,206,0): 105, 70, 68, (442,207,0): 105, 70, 68, (442,208,0): 104, 70, 71, (442,209,0): 102, 67, 71, (442,210,0): 104, 70, 71, (442,211,0): 108, 74, 75, (442,212,0): 106, 75, 73, (442,213,0): 108, 77, 75, (442,214,0): 117, 87, 85, (442,215,0): 128, 100, 99, (442,216,0): 145, 116, 118, (442,217,0): 161, 135, 138, (442,218,0): 182, 157, 163, (442,219,0): 195, 172, 180, (442,220,0): 205, 184, 193, (442,221,0): 210, 190, 201, (442,222,0): 211, 191, 203, (442,223,0): 205, 188, 204, (442,224,0): 199, 188, 205, (442,225,0): 197, 189, 210, (442,226,0): 196, 191, 211, (442,227,0): 195, 193, 214, (442,228,0): 191, 192, 213, (442,229,0): 184, 190, 212, (442,230,0): 180, 187, 213, (442,231,0): 175, 187, 213, (442,232,0): 174, 189, 218, (442,233,0): 173, 190, 220, (442,234,0): 171, 190, 223, (442,235,0): 170, 190, 225, (442,236,0): 171, 189, 227, (442,237,0): 170, 189, 229, (442,238,0): 171, 189, 229, (442,239,0): 170, 189, 231, (442,240,0): 165, 188, 230, (442,241,0): 164, 188, 232, (442,242,0): 163, 187, 235, (442,243,0): 161, 188, 235, (442,244,0): 160, 188, 238, (442,245,0): 159, 189, 241, (442,246,0): 160, 191, 245, (442,247,0): 158, 193, 249, (442,248,0): 155, 191, 249, (442,249,0): 151, 191, 250, (442,250,0): 150, 191, 253, (442,251,0): 147, 191, 254, (442,252,0): 145, 190, 255, (442,253,0): 142, 190, 255, (442,254,0): 141, 188, 255, (442,255,0): 140, 189, 255, (442,256,0): 136, 186, 255, (442,257,0): 136, 186, 255, (442,258,0): 135, 185, 254, (442,259,0): 135, 185, 254, (442,260,0): 134, 184, 255, (442,261,0): 134, 184, 255, (442,262,0): 131, 184, 254, (442,263,0): 131, 183, 255, (442,264,0): 129, 183, 255, (442,265,0): 129, 183, 255, (442,266,0): 127, 183, 255, (442,267,0): 127, 183, 255, (442,268,0): 127, 183, 255, (442,269,0): 127, 183, 255, (442,270,0): 127, 183, 255, (442,271,0): 126, 184, 255, (442,272,0): 128, 187, 255, (442,273,0): 127, 188, 255, (442,274,0): 127, 188, 255, (442,275,0): 127, 188, 255, (442,276,0): 127, 188, 255, (442,277,0): 127, 188, 255, (442,278,0): 127, 188, 255, (442,279,0): 127, 188, 255, (442,280,0): 127, 188, 255, (442,281,0): 127, 188, 255, (442,282,0): 127, 188, 255, (442,283,0): 127, 188, 255, (442,284,0): 127, 188, 255, (442,285,0): 127, 188, 255, (442,286,0): 127, 188, 255, (442,287,0): 127, 187, 255, (442,288,0): 125, 188, 255, (442,289,0): 125, 187, 255, (442,290,0): 126, 186, 255, (442,291,0): 127, 185, 255, (442,292,0): 127, 183, 255, (442,293,0): 126, 182, 255, (442,294,0): 125, 183, 255, (442,295,0): 125, 183, 255, (442,296,0): 126, 184, 255, (442,297,0): 122, 178, 253, (442,298,0): 128, 180, 255, (442,299,0): 133, 180, 255, (442,300,0): 134, 172, 253, (442,301,0): 141, 173, 255, (442,302,0): 148, 172, 255, (442,303,0): 148, 159, 238, (442,304,0): 130, 122, 182, (442,305,0): 98, 78, 127, (442,306,0): 68, 47, 88, (442,307,0): 57, 38, 70, (442,308,0): 50, 31, 53, (442,309,0): 50, 29, 44, (442,310,0): 50, 32, 44, (442,311,0): 45, 27, 39, (442,312,0): 42, 26, 39, (442,313,0): 40, 26, 41, (442,314,0): 38, 25, 42, (442,315,0): 35, 24, 40, (442,316,0): 33, 22, 38, (442,317,0): 32, 22, 33, (442,318,0): 32, 20, 30, (442,319,0): 31, 19, 29, (442,320,0): 30, 19, 33, (442,321,0): 30, 19, 35, (442,322,0): 30, 19, 35, (442,323,0): 29, 18, 34, (442,324,0): 29, 18, 34, (442,325,0): 28, 17, 33, (442,326,0): 28, 17, 33, (442,327,0): 28, 17, 33, (442,328,0): 28, 17, 33, (442,329,0): 28, 17, 33, (442,330,0): 28, 17, 33, (442,331,0): 28, 17, 33, (442,332,0): 28, 17, 33, (442,333,0): 28, 17, 33, (442,334,0): 28, 17, 33, (442,335,0): 28, 17, 31, (442,336,0): 26, 16, 27, (442,337,0): 26, 16, 25, (442,338,0): 26, 16, 25, (442,339,0): 26, 16, 25, (442,340,0): 26, 16, 25, (442,341,0): 26, 16, 25, (442,342,0): 26, 16, 25, (442,343,0): 26, 16, 25, (442,344,0): 25, 15, 24, (442,345,0): 25, 15, 24, (442,346,0): 24, 14, 23, (442,347,0): 24, 14, 23, (442,348,0): 24, 14, 23, (442,349,0): 24, 14, 23, (442,350,0): 25, 15, 24, (442,351,0): 25, 15, 24, (442,352,0): 27, 15, 29, (442,353,0): 26, 14, 28, (442,354,0): 24, 12, 26, (442,355,0): 23, 11, 25, (442,356,0): 21, 10, 24, (442,357,0): 20, 9, 23, (442,358,0): 20, 9, 23, (442,359,0): 21, 10, 24, (442,360,0): 18, 10, 23, (442,361,0): 18, 10, 23, (442,362,0): 18, 12, 24, (442,363,0): 19, 13, 25, (442,364,0): 20, 14, 26, (442,365,0): 21, 15, 27, (442,366,0): 19, 16, 27, (442,367,0): 22, 16, 28, (442,368,0): 28, 17, 31, (442,369,0): 29, 17, 31, (442,370,0): 28, 16, 30, (442,371,0): 28, 16, 30, (442,372,0): 28, 16, 30, (442,373,0): 27, 15, 29, (442,374,0): 27, 15, 29, (442,375,0): 27, 15, 29, (442,376,0): 30, 18, 32, (442,377,0): 30, 18, 32, (442,378,0): 29, 17, 31, (442,379,0): 29, 17, 31, (442,380,0): 28, 16, 30, (442,381,0): 28, 16, 30, (442,382,0): 27, 15, 29, (442,383,0): 26, 15, 29, (442,384,0): 28, 17, 34, (442,385,0): 26, 17, 34, (442,386,0): 26, 17, 34, (442,387,0): 26, 17, 34, (442,388,0): 26, 17, 34, (442,389,0): 26, 17, 34, (442,390,0): 26, 17, 34, (442,391,0): 26, 17, 34, (442,392,0): 25, 16, 33, (442,393,0): 25, 16, 33, (442,394,0): 25, 16, 33, (442,395,0): 24, 15, 32, (442,396,0): 24, 15, 32, (442,397,0): 23, 14, 31, (442,398,0): 23, 14, 31, (442,399,0): 22, 15, 31, (442,400,0): 20, 16, 31, (442,401,0): 20, 16, 31, (442,402,0): 20, 16, 31, (442,403,0): 21, 17, 32, (442,404,0): 23, 19, 34, (442,405,0): 25, 21, 36, (442,406,0): 27, 23, 38, (442,407,0): 28, 24, 39, (442,408,0): 32, 28, 43, (442,409,0): 31, 27, 42, (442,410,0): 30, 26, 41, (442,411,0): 31, 27, 42, (442,412,0): 33, 29, 44, (442,413,0): 36, 32, 47, (442,414,0): 39, 35, 50, (442,415,0): 42, 38, 52, (442,416,0): 44, 38, 52, (442,417,0): 43, 37, 49, (442,418,0): 44, 36, 49, (442,419,0): 43, 35, 48, (442,420,0): 43, 35, 48, (442,421,0): 42, 34, 47, (442,422,0): 44, 33, 47, (442,423,0): 44, 33, 47, (442,424,0): 51, 39, 53, (442,425,0): 53, 41, 55, (442,426,0): 57, 45, 59, (442,427,0): 63, 51, 65, (442,428,0): 69, 55, 70, (442,429,0): 74, 60, 75, (442,430,0): 78, 64, 79, (442,431,0): 80, 66, 81, (442,432,0): 77, 63, 80, (442,433,0): 77, 63, 80, (442,434,0): 78, 63, 82, (442,435,0): 80, 66, 83, (442,436,0): 84, 67, 86, (442,437,0): 85, 68, 86, (442,438,0): 86, 69, 87, (442,439,0): 87, 70, 88, (442,440,0): 88, 69, 88, (442,441,0): 88, 69, 88, (442,442,0): 89, 68, 87, (442,443,0): 88, 67, 86, (442,444,0): 84, 63, 82, (442,445,0): 79, 58, 77, (442,446,0): 75, 52, 72, (442,447,0): 72, 51, 68, (442,448,0): 62, 45, 55, (442,449,0): 63, 48, 53, (442,450,0): 67, 50, 58, (442,451,0): 71, 56, 63, (442,452,0): 77, 60, 68, (442,453,0): 83, 66, 74, (442,454,0): 88, 71, 81, (442,455,0): 91, 74, 84, (442,456,0): 94, 77, 87, (442,457,0): 93, 76, 86, (442,458,0): 91, 73, 85, (442,459,0): 89, 71, 83, (442,460,0): 88, 70, 84, (442,461,0): 88, 70, 84, (442,462,0): 89, 71, 85, (442,463,0): 89, 71, 83, (442,464,0): 88, 68, 79, (442,465,0): 85, 64, 73, (442,466,0): 85, 58, 67, (442,467,0): 85, 56, 61, (442,468,0): 79, 53, 54, (442,469,0): 76, 51, 47, (442,470,0): 78, 55, 47, (442,471,0): 82, 62, 51, (442,472,0): 86, 64, 53, (442,473,0): 92, 73, 59, (442,474,0): 99, 83, 70, (442,475,0): 97, 96, 78, (442,476,0): 100, 119, 97, (442,477,0): 119, 164, 135, (442,478,0): 151, 223, 186, (442,479,0): 191, 255, 227, (442,480,0): 233, 255, 253, (442,481,0): 242, 255, 255, (442,482,0): 241, 255, 255, (442,483,0): 234, 255, 255, (442,484,0): 226, 255, 255, (442,485,0): 209, 246, 255, (442,486,0): 172, 207, 229, (442,487,0): 142, 167, 189, (442,488,0): 127, 134, 152, (442,489,0): 122, 116, 126, (442,490,0): 121, 110, 108, (442,491,0): 133, 117, 104, (442,492,0): 131, 116, 95, (442,493,0): 118, 102, 79, (442,494,0): 114, 92, 71, (442,495,0): 121, 93, 72, (442,496,0): 118, 82, 56, (442,497,0): 136, 89, 63, (442,498,0): 161, 99, 76, (442,499,0): 174, 103, 83, (442,500,0): 170, 94, 78, (442,501,0): 149, 80, 65, (442,502,0): 132, 74, 63, (442,503,0): 124, 73, 69, (442,504,0): 126, 80, 82, (442,505,0): 134, 83, 92, (442,506,0): 145, 76, 95, (442,507,0): 171, 83, 108, (442,508,0): 219, 106, 136, (442,509,0): 246, 115, 147, (442,510,0): 249, 106, 136, (442,511,0): 249, 99, 126, (442,512,0): 249, 97, 118, (442,513,0): 230, 83, 101, (442,514,0): 209, 71, 87, (442,515,0): 188, 57, 73, (442,516,0): 175, 53, 68, (442,517,0): 169, 51, 67, (442,518,0): 158, 43, 58, (442,519,0): 153, 41, 55, (442,520,0): 170, 59, 76, (442,521,0): 168, 59, 80, (442,522,0): 164, 57, 85, (442,523,0): 156, 51, 82, (442,524,0): 152, 46, 82, (442,525,0): 156, 50, 88, (442,526,0): 171, 62, 103, (442,527,0): 191, 71, 109, (442,528,0): 207, 63, 98, (442,529,0): 204, 55, 87, (442,530,0): 186, 47, 76, (442,531,0): 162, 33, 61, (442,532,0): 154, 36, 60, (442,533,0): 176, 63, 83, (442,534,0): 190, 74, 93, (442,535,0): 177, 59, 75, (442,536,0): 183, 57, 69, (442,537,0): 194, 64, 76, (442,538,0): 197, 65, 78, (442,539,0): 197, 65, 78, (442,540,0): 198, 67, 81, (442,541,0): 186, 57, 75, (442,542,0): 171, 46, 64, (442,543,0): 166, 45, 64, (442,544,0): 160, 48, 64, (442,545,0): 160, 45, 62, (442,546,0): 166, 39, 58, (442,547,0): 171, 38, 59, (442,548,0): 173, 44, 62, (442,549,0): 182, 55, 72, (442,550,0): 197, 66, 82, (442,551,0): 209, 70, 89, (442,552,0): 214, 57, 84, (442,553,0): 213, 53, 81, (442,554,0): 193, 43, 72, (442,555,0): 169, 40, 62, (442,556,0): 145, 44, 60, (442,557,0): 121, 41, 50, (442,558,0): 103, 38, 46, (442,559,0): 97, 43, 57, (442,560,0): 82, 38, 71, (442,561,0): 76, 39, 108, (442,562,0): 76, 38, 159, (442,563,0): 74, 38, 200, (442,564,0): 70, 38, 227, (442,565,0): 68, 38, 224, (442,566,0): 67, 37, 195, (442,567,0): 68, 38, 160, (442,568,0): 63, 28, 112, (442,569,0): 67, 27, 87, (442,570,0): 72, 25, 77, (442,571,0): 75, 28, 74, (442,572,0): 79, 32, 78, (442,573,0): 78, 35, 78, (442,574,0): 76, 36, 73, (442,575,0): 72, 36, 64, (442,576,0): 78, 41, 58, (442,577,0): 78, 40, 53, (442,578,0): 77, 41, 53, (442,579,0): 76, 40, 52, (442,580,0): 76, 40, 50, (442,581,0): 73, 40, 49, (442,582,0): 73, 40, 49, (442,583,0): 72, 39, 48, (442,584,0): 69, 38, 44, (442,585,0): 68, 37, 43, (442,586,0): 68, 37, 42, (442,587,0): 66, 37, 41, (442,588,0): 66, 37, 41, (442,589,0): 65, 36, 40, (442,590,0): 65, 36, 40, (442,591,0): 63, 37, 40, (442,592,0): 63, 38, 44, (442,593,0): 61, 36, 42, (442,594,0): 58, 33, 39, (442,595,0): 58, 33, 39, (442,596,0): 59, 34, 40, (442,597,0): 59, 34, 40, (442,598,0): 57, 32, 38, (442,599,0): 54, 29, 35, (443,0,0): 73, 79, 67, (443,1,0): 73, 79, 67, (443,2,0): 72, 78, 66, (443,3,0): 72, 78, 66, (443,4,0): 71, 77, 65, (443,5,0): 71, 77, 65, (443,6,0): 70, 76, 64, (443,7,0): 70, 76, 64, (443,8,0): 70, 76, 64, (443,9,0): 70, 76, 64, (443,10,0): 70, 76, 64, (443,11,0): 71, 77, 65, (443,12,0): 72, 78, 66, (443,13,0): 72, 78, 66, (443,14,0): 72, 78, 66, (443,15,0): 73, 79, 67, (443,16,0): 73, 79, 67, (443,17,0): 73, 79, 67, (443,18,0): 73, 79, 67, (443,19,0): 74, 80, 68, (443,20,0): 74, 80, 68, (443,21,0): 75, 81, 69, (443,22,0): 75, 81, 69, (443,23,0): 75, 81, 69, (443,24,0): 79, 85, 73, (443,25,0): 79, 85, 73, (443,26,0): 79, 85, 73, (443,27,0): 79, 85, 73, (443,28,0): 79, 85, 73, (443,29,0): 79, 85, 73, (443,30,0): 79, 85, 73, (443,31,0): 81, 84, 73, (443,32,0): 81, 83, 72, (443,33,0): 82, 82, 72, (443,34,0): 84, 81, 72, (443,35,0): 83, 80, 71, (443,36,0): 83, 80, 71, (443,37,0): 82, 79, 70, (443,38,0): 83, 79, 68, (443,39,0): 83, 79, 68, (443,40,0): 84, 78, 66, (443,41,0): 84, 78, 66, (443,42,0): 84, 78, 64, (443,43,0): 83, 77, 63, (443,44,0): 84, 76, 63, (443,45,0): 84, 76, 63, (443,46,0): 83, 75, 62, (443,47,0): 83, 75, 62, (443,48,0): 85, 77, 66, (443,49,0): 86, 78, 67, (443,50,0): 86, 78, 67, (443,51,0): 87, 79, 68, (443,52,0): 87, 79, 68, (443,53,0): 88, 80, 69, (443,54,0): 88, 80, 69, (443,55,0): 88, 80, 69, (443,56,0): 90, 82, 71, (443,57,0): 90, 82, 71, (443,58,0): 90, 82, 71, (443,59,0): 91, 83, 72, (443,60,0): 91, 83, 72, (443,61,0): 91, 83, 72, (443,62,0): 92, 84, 73, (443,63,0): 92, 84, 73, (443,64,0): 93, 83, 71, (443,65,0): 93, 83, 71, (443,66,0): 92, 82, 70, (443,67,0): 92, 82, 70, (443,68,0): 94, 82, 70, (443,69,0): 93, 81, 69, (443,70,0): 93, 81, 69, (443,71,0): 93, 81, 69, (443,72,0): 92, 78, 67, (443,73,0): 91, 77, 66, (443,74,0): 92, 75, 65, (443,75,0): 90, 73, 63, (443,76,0): 88, 71, 61, (443,77,0): 87, 70, 60, (443,78,0): 86, 68, 58, (443,79,0): 85, 68, 58, (443,80,0): 82, 65, 55, (443,81,0): 80, 66, 55, (443,82,0): 81, 67, 56, (443,83,0): 81, 67, 56, (443,84,0): 82, 68, 57, (443,85,0): 83, 69, 58, (443,86,0): 83, 69, 58, (443,87,0): 83, 69, 58, (443,88,0): 81, 67, 56, (443,89,0): 81, 67, 56, (443,90,0): 80, 66, 55, (443,91,0): 79, 65, 54, (443,92,0): 78, 64, 53, (443,93,0): 77, 63, 52, (443,94,0): 76, 62, 51, (443,95,0): 76, 62, 49, (443,96,0): 74, 56, 44, (443,97,0): 73, 55, 41, (443,98,0): 72, 54, 40, (443,99,0): 70, 52, 38, (443,100,0): 68, 50, 36, (443,101,0): 67, 49, 35, (443,102,0): 66, 48, 34, (443,103,0): 66, 48, 34, (443,104,0): 66, 48, 34, (443,105,0): 65, 47, 33, (443,106,0): 64, 46, 32, (443,107,0): 64, 46, 32, (443,108,0): 65, 47, 33, (443,109,0): 67, 49, 35, (443,110,0): 68, 50, 36, (443,111,0): 69, 51, 37, (443,112,0): 70, 50, 41, (443,113,0): 71, 51, 42, (443,114,0): 71, 51, 42, (443,115,0): 71, 51, 42, (443,116,0): 70, 50, 41, (443,117,0): 69, 49, 40, (443,118,0): 68, 48, 39, (443,119,0): 67, 47, 38, (443,120,0): 66, 46, 37, (443,121,0): 66, 46, 37, (443,122,0): 67, 47, 38, (443,123,0): 68, 48, 39, (443,124,0): 68, 48, 39, (443,125,0): 69, 49, 40, (443,126,0): 70, 50, 41, (443,127,0): 70, 50, 41, (443,128,0): 72, 53, 47, (443,129,0): 72, 53, 47, (443,130,0): 73, 54, 48, (443,131,0): 74, 55, 49, (443,132,0): 75, 56, 50, (443,133,0): 76, 57, 51, (443,134,0): 77, 58, 52, (443,135,0): 78, 59, 53, (443,136,0): 80, 61, 55, (443,137,0): 80, 61, 55, (443,138,0): 81, 62, 56, (443,139,0): 82, 63, 57, (443,140,0): 83, 64, 58, (443,141,0): 84, 65, 59, (443,142,0): 85, 66, 60, (443,143,0): 86, 66, 59, (443,144,0): 87, 64, 58, (443,145,0): 88, 63, 56, (443,146,0): 87, 64, 56, (443,147,0): 86, 63, 55, (443,148,0): 86, 63, 57, (443,149,0): 87, 64, 58, (443,150,0): 85, 64, 59, (443,151,0): 85, 64, 59, (443,152,0): 84, 63, 58, (443,153,0): 84, 65, 59, (443,154,0): 84, 65, 61, (443,155,0): 84, 65, 61, (443,156,0): 84, 66, 64, (443,157,0): 85, 67, 65, (443,158,0): 85, 67, 65, (443,159,0): 83, 68, 65, (443,160,0): 85, 71, 70, (443,161,0): 84, 73, 71, (443,162,0): 89, 75, 74, (443,163,0): 91, 77, 76, (443,164,0): 93, 79, 78, (443,165,0): 93, 79, 78, (443,166,0): 94, 78, 78, (443,167,0): 94, 78, 78, (443,168,0): 97, 79, 79, (443,169,0): 98, 80, 80, (443,170,0): 99, 81, 81, (443,171,0): 100, 82, 82, (443,172,0): 102, 82, 83, (443,173,0): 104, 84, 85, (443,174,0): 105, 85, 86, (443,175,0): 105, 85, 84, (443,176,0): 102, 84, 82, (443,177,0): 102, 84, 80, (443,178,0): 102, 83, 79, (443,179,0): 102, 83, 79, (443,180,0): 102, 83, 79, (443,181,0): 104, 85, 81, (443,182,0): 106, 85, 82, (443,183,0): 107, 86, 83, (443,184,0): 108, 84, 82, (443,185,0): 110, 86, 84, (443,186,0): 112, 88, 86, (443,187,0): 114, 90, 88, (443,188,0): 116, 90, 89, (443,189,0): 117, 91, 90, (443,190,0): 117, 91, 90, (443,191,0): 117, 91, 90, (443,192,0): 117, 89, 86, (443,193,0): 117, 89, 85, (443,194,0): 117, 88, 84, (443,195,0): 115, 86, 82, (443,196,0): 113, 84, 80, (443,197,0): 111, 82, 78, (443,198,0): 112, 81, 78, (443,199,0): 111, 80, 77, (443,200,0): 112, 78, 76, (443,201,0): 111, 77, 75, (443,202,0): 110, 76, 74, (443,203,0): 109, 75, 73, (443,204,0): 109, 74, 72, (443,205,0): 107, 72, 70, (443,206,0): 107, 72, 70, (443,207,0): 106, 70, 70, (443,208,0): 106, 72, 73, (443,209,0): 103, 68, 72, (443,210,0): 104, 70, 71, (443,211,0): 107, 73, 74, (443,212,0): 105, 74, 72, (443,213,0): 105, 74, 72, (443,214,0): 112, 82, 80, (443,215,0): 121, 93, 90, (443,216,0): 134, 106, 105, (443,217,0): 146, 120, 121, (443,218,0): 165, 140, 144, (443,219,0): 186, 161, 167, (443,220,0): 199, 176, 184, (443,221,0): 207, 186, 195, (443,222,0): 209, 187, 199, (443,223,0): 204, 186, 200, (443,224,0): 202, 189, 207, (443,225,0): 199, 190, 209, (443,226,0): 198, 190, 211, (443,227,0): 195, 192, 211, (443,228,0): 190, 191, 211, (443,229,0): 185, 190, 210, (443,230,0): 181, 189, 212, (443,231,0): 176, 188, 212, (443,232,0): 177, 191, 218, (443,233,0): 176, 191, 220, (443,234,0): 175, 191, 224, (443,235,0): 173, 192, 225, (443,236,0): 175, 191, 227, (443,237,0): 173, 191, 229, (443,238,0): 175, 190, 231, (443,239,0): 173, 190, 233, (443,240,0): 168, 189, 232, (443,241,0): 167, 190, 234, (443,242,0): 166, 188, 237, (443,243,0): 164, 188, 236, (443,244,0): 162, 188, 239, (443,245,0): 160, 190, 242, (443,246,0): 160, 191, 245, (443,247,0): 158, 193, 249, (443,248,0): 155, 191, 249, (443,249,0): 151, 191, 250, (443,250,0): 150, 191, 253, (443,251,0): 146, 192, 254, (443,252,0): 143, 191, 255, (443,253,0): 142, 191, 255, (443,254,0): 141, 190, 255, (443,255,0): 141, 190, 255, (443,256,0): 137, 188, 254, (443,257,0): 137, 188, 254, (443,258,0): 136, 186, 255, (443,259,0): 136, 186, 255, (443,260,0): 135, 185, 254, (443,261,0): 135, 185, 255, (443,262,0): 132, 185, 255, (443,263,0): 132, 185, 255, (443,264,0): 128, 182, 252, (443,265,0): 128, 182, 254, (443,266,0): 126, 183, 254, (443,267,0): 126, 182, 255, (443,268,0): 126, 182, 255, (443,269,0): 126, 182, 255, (443,270,0): 126, 182, 255, (443,271,0): 125, 183, 255, (443,272,0): 128, 187, 255, (443,273,0): 127, 188, 255, (443,274,0): 127, 188, 255, (443,275,0): 127, 188, 255, (443,276,0): 127, 188, 255, (443,277,0): 127, 188, 255, (443,278,0): 127, 188, 255, (443,279,0): 127, 188, 255, (443,280,0): 128, 189, 255, (443,281,0): 128, 189, 255, (443,282,0): 128, 189, 255, (443,283,0): 127, 188, 255, (443,284,0): 127, 188, 255, (443,285,0): 127, 188, 255, (443,286,0): 126, 187, 254, (443,287,0): 126, 186, 255, (443,288,0): 127, 187, 255, (443,289,0): 127, 187, 255, (443,290,0): 127, 185, 255, (443,291,0): 127, 183, 255, (443,292,0): 126, 182, 255, (443,293,0): 125, 181, 255, (443,294,0): 125, 181, 255, (443,295,0): 123, 181, 255, (443,296,0): 129, 185, 255, (443,297,0): 124, 177, 253, (443,298,0): 129, 178, 255, (443,299,0): 134, 177, 255, (443,300,0): 136, 171, 253, (443,301,0): 145, 173, 255, (443,302,0): 146, 168, 254, (443,303,0): 140, 149, 226, (443,304,0): 110, 99, 155, (443,305,0): 76, 58, 100, (443,306,0): 50, 33, 69, (443,307,0): 51, 32, 60, (443,308,0): 48, 31, 50, (443,309,0): 44, 28, 41, (443,310,0): 43, 30, 40, (443,311,0): 40, 27, 37, (443,312,0): 38, 26, 36, (443,313,0): 38, 26, 38, (443,314,0): 36, 25, 41, (443,315,0): 34, 23, 39, (443,316,0): 33, 22, 38, (443,317,0): 32, 21, 35, (443,318,0): 32, 20, 32, (443,319,0): 32, 20, 32, (443,320,0): 30, 19, 35, (443,321,0): 30, 19, 35, (443,322,0): 30, 19, 35, (443,323,0): 29, 18, 34, (443,324,0): 29, 18, 34, (443,325,0): 28, 17, 33, (443,326,0): 28, 17, 33, (443,327,0): 28, 17, 33, (443,328,0): 28, 17, 33, (443,329,0): 28, 17, 33, (443,330,0): 28, 17, 33, (443,331,0): 28, 17, 33, (443,332,0): 28, 17, 33, (443,333,0): 28, 17, 33, (443,334,0): 28, 17, 33, (443,335,0): 28, 17, 31, (443,336,0): 26, 16, 27, (443,337,0): 26, 16, 25, (443,338,0): 26, 16, 25, (443,339,0): 26, 16, 25, (443,340,0): 26, 16, 25, (443,341,0): 26, 16, 25, (443,342,0): 26, 16, 25, (443,343,0): 26, 16, 25, (443,344,0): 25, 15, 24, (443,345,0): 25, 15, 24, (443,346,0): 24, 14, 23, (443,347,0): 24, 14, 23, (443,348,0): 24, 14, 23, (443,349,0): 24, 14, 23, (443,350,0): 25, 15, 24, (443,351,0): 25, 15, 24, (443,352,0): 27, 15, 29, (443,353,0): 26, 14, 28, (443,354,0): 25, 13, 27, (443,355,0): 24, 12, 26, (443,356,0): 22, 11, 25, (443,357,0): 21, 10, 24, (443,358,0): 21, 10, 24, (443,359,0): 20, 9, 23, (443,360,0): 18, 10, 23, (443,361,0): 18, 10, 23, (443,362,0): 18, 12, 24, (443,363,0): 18, 12, 24, (443,364,0): 19, 13, 25, (443,365,0): 20, 14, 26, (443,366,0): 18, 15, 26, (443,367,0): 21, 15, 27, (443,368,0): 27, 16, 30, (443,369,0): 28, 16, 30, (443,370,0): 28, 16, 30, (443,371,0): 27, 15, 29, (443,372,0): 27, 15, 29, (443,373,0): 27, 15, 29, (443,374,0): 27, 15, 29, (443,375,0): 27, 15, 29, (443,376,0): 29, 17, 31, (443,377,0): 29, 17, 31, (443,378,0): 29, 17, 31, (443,379,0): 29, 17, 31, (443,380,0): 28, 16, 30, (443,381,0): 28, 16, 30, (443,382,0): 28, 16, 30, (443,383,0): 27, 16, 30, (443,384,0): 28, 17, 34, (443,385,0): 26, 17, 34, (443,386,0): 26, 17, 34, (443,387,0): 26, 17, 34, (443,388,0): 26, 17, 34, (443,389,0): 26, 17, 34, (443,390,0): 26, 17, 34, (443,391,0): 26, 17, 34, (443,392,0): 25, 16, 33, (443,393,0): 25, 16, 33, (443,394,0): 25, 16, 33, (443,395,0): 25, 16, 33, (443,396,0): 25, 16, 33, (443,397,0): 25, 16, 33, (443,398,0): 25, 16, 33, (443,399,0): 25, 16, 33, (443,400,0): 25, 18, 34, (443,401,0): 23, 19, 34, (443,402,0): 22, 18, 33, (443,403,0): 23, 19, 34, (443,404,0): 24, 20, 35, (443,405,0): 26, 22, 37, (443,406,0): 28, 24, 39, (443,407,0): 29, 25, 40, (443,408,0): 36, 32, 47, (443,409,0): 35, 31, 46, (443,410,0): 33, 29, 44, (443,411,0): 33, 29, 44, (443,412,0): 35, 31, 46, (443,413,0): 37, 33, 48, (443,414,0): 41, 37, 52, (443,415,0): 43, 39, 53, (443,416,0): 46, 40, 54, (443,417,0): 46, 40, 52, (443,418,0): 46, 38, 51, (443,419,0): 46, 38, 51, (443,420,0): 45, 37, 50, (443,421,0): 45, 37, 50, (443,422,0): 46, 35, 49, (443,423,0): 46, 35, 49, (443,424,0): 52, 40, 54, (443,425,0): 54, 42, 56, (443,426,0): 57, 45, 59, (443,427,0): 61, 49, 63, (443,428,0): 66, 52, 67, (443,429,0): 71, 57, 72, (443,430,0): 74, 60, 75, (443,431,0): 75, 61, 76, (443,432,0): 74, 60, 75, (443,433,0): 75, 61, 76, (443,434,0): 76, 62, 77, (443,435,0): 78, 64, 79, (443,436,0): 81, 64, 80, (443,437,0): 83, 66, 82, (443,438,0): 84, 67, 83, (443,439,0): 85, 68, 84, (443,440,0): 89, 70, 89, (443,441,0): 89, 70, 89, (443,442,0): 90, 69, 88, (443,443,0): 88, 67, 86, (443,444,0): 84, 63, 82, (443,445,0): 79, 58, 77, (443,446,0): 76, 53, 73, (443,447,0): 73, 50, 66, (443,448,0): 65, 45, 54, (443,449,0): 63, 47, 50, (443,450,0): 65, 48, 54, (443,451,0): 68, 51, 57, (443,452,0): 74, 57, 63, (443,453,0): 80, 63, 71, (443,454,0): 87, 70, 78, (443,455,0): 91, 74, 84, (443,456,0): 92, 75, 85, (443,457,0): 91, 74, 84, (443,458,0): 89, 71, 83, (443,459,0): 88, 70, 82, (443,460,0): 86, 68, 82, (443,461,0): 85, 67, 81, (443,462,0): 84, 66, 80, (443,463,0): 83, 65, 77, (443,464,0): 85, 65, 77, (443,465,0): 85, 62, 72, (443,466,0): 89, 59, 69, (443,467,0): 88, 57, 63, (443,468,0): 85, 56, 58, (443,469,0): 81, 55, 54, (443,470,0): 79, 59, 52, (443,471,0): 81, 61, 54, (443,472,0): 82, 62, 53, (443,473,0): 90, 70, 63, (443,474,0): 97, 80, 73, (443,475,0): 95, 91, 82, (443,476,0): 94, 115, 100, (443,477,0): 115, 160, 140, (443,478,0): 147, 220, 193, (443,479,0): 184, 255, 235, (443,480,0): 212, 255, 251, (443,481,0): 230, 255, 255, (443,482,0): 233, 255, 255, (443,483,0): 229, 255, 255, (443,484,0): 214, 253, 255, (443,485,0): 188, 229, 247, (443,486,0): 152, 187, 209, (443,487,0): 124, 149, 171, (443,488,0): 117, 124, 140, (443,489,0): 111, 106, 113, (443,490,0): 111, 100, 96, (443,491,0): 122, 108, 95, (443,492,0): 121, 108, 89, (443,493,0): 108, 93, 72, (443,494,0): 106, 85, 68, (443,495,0): 118, 89, 71, (443,496,0): 113, 75, 52, (443,497,0): 137, 87, 64, (443,498,0): 163, 98, 80, (443,499,0): 169, 97, 82, (443,500,0): 156, 82, 69, (443,501,0): 136, 68, 59, (443,502,0): 122, 65, 58, (443,503,0): 116, 68, 64, (443,504,0): 125, 83, 85, (443,505,0): 133, 86, 96, (443,506,0): 142, 79, 98, (443,507,0): 163, 83, 108, (443,508,0): 205, 102, 132, (443,509,0): 229, 109, 144, (443,510,0): 238, 107, 141, (443,511,0): 251, 108, 138, (443,512,0): 251, 98, 118, (443,513,0): 247, 92, 108, (443,514,0): 234, 87, 105, (443,515,0): 218, 79, 98, (443,516,0): 203, 72, 90, (443,517,0): 186, 63, 81, (443,518,0): 168, 53, 68, (443,519,0): 158, 47, 63, (443,520,0): 165, 58, 76, (443,521,0): 168, 64, 87, (443,522,0): 167, 64, 93, (443,523,0): 157, 53, 88, (443,524,0): 152, 48, 85, (443,525,0): 162, 56, 96, (443,526,0): 180, 71, 110, (443,527,0): 199, 79, 115, (443,528,0): 207, 66, 100, (443,529,0): 210, 61, 93, (443,530,0): 199, 54, 87, (443,531,0): 178, 39, 70, (443,532,0): 169, 34, 64, (443,533,0): 187, 54, 81, (443,534,0): 195, 61, 86, (443,535,0): 178, 45, 66, (443,536,0): 188, 56, 70, (443,537,0): 192, 60, 73, (443,538,0): 191, 64, 75, (443,539,0): 190, 64, 75, (443,540,0): 189, 63, 77, (443,541,0): 184, 57, 76, (443,542,0): 177, 48, 70, (443,543,0): 173, 47, 69, (443,544,0): 159, 43, 62, (443,545,0): 174, 55, 74, (443,546,0): 195, 61, 85, (443,547,0): 198, 60, 83, (443,548,0): 188, 55, 76, (443,549,0): 185, 54, 72, (443,550,0): 194, 63, 81, (443,551,0): 209, 70, 89, (443,552,0): 220, 66, 92, (443,553,0): 207, 53, 81, (443,554,0): 180, 38, 64, (443,555,0): 148, 29, 49, (443,556,0): 119, 31, 43, (443,557,0): 101, 34, 41, (443,558,0): 95, 36, 42, (443,559,0): 92, 42, 54, (443,560,0): 87, 42, 71, (443,561,0): 86, 45, 103, (443,562,0): 85, 44, 146, (443,563,0): 80, 43, 175, (443,564,0): 72, 37, 193, (443,565,0): 67, 33, 189, (443,566,0): 64, 34, 166, (443,567,0): 68, 37, 141, (443,568,0): 67, 31, 105, (443,569,0): 70, 29, 85, (443,570,0): 75, 29, 76, (443,571,0): 78, 31, 75, (443,572,0): 82, 35, 77, (443,573,0): 84, 39, 78, (443,574,0): 82, 41, 75, (443,575,0): 79, 41, 66, (443,576,0): 76, 37, 55, (443,577,0): 77, 39, 52, (443,578,0): 76, 40, 52, (443,579,0): 77, 41, 53, (443,580,0): 77, 41, 53, (443,581,0): 78, 42, 52, (443,582,0): 76, 43, 52, (443,583,0): 76, 43, 52, (443,584,0): 70, 37, 44, (443,585,0): 69, 38, 44, (443,586,0): 69, 38, 43, (443,587,0): 68, 37, 42, (443,588,0): 66, 37, 41, (443,589,0): 66, 37, 41, (443,590,0): 66, 37, 39, (443,591,0): 65, 36, 40, (443,592,0): 65, 38, 43, (443,593,0): 61, 36, 42, (443,594,0): 59, 34, 40, (443,595,0): 59, 34, 40, (443,596,0): 60, 35, 41, (443,597,0): 60, 35, 41, (443,598,0): 57, 32, 38, (443,599,0): 55, 30, 36, (444,0,0): 72, 78, 66, (444,1,0): 71, 77, 65, (444,2,0): 71, 77, 65, (444,3,0): 71, 77, 65, (444,4,0): 70, 76, 64, (444,5,0): 69, 75, 63, (444,6,0): 69, 75, 63, (444,7,0): 69, 75, 63, (444,8,0): 69, 75, 63, (444,9,0): 70, 76, 64, (444,10,0): 70, 76, 64, (444,11,0): 70, 76, 64, (444,12,0): 71, 77, 65, (444,13,0): 72, 78, 66, (444,14,0): 72, 78, 66, (444,15,0): 72, 78, 66, (444,16,0): 73, 79, 67, (444,17,0): 73, 79, 67, (444,18,0): 73, 79, 67, (444,19,0): 74, 80, 68, (444,20,0): 74, 80, 68, (444,21,0): 75, 81, 69, (444,22,0): 75, 81, 69, (444,23,0): 75, 81, 69, (444,24,0): 78, 84, 72, (444,25,0): 78, 84, 72, (444,26,0): 78, 84, 72, (444,27,0): 78, 84, 72, (444,28,0): 78, 84, 72, (444,29,0): 78, 84, 72, (444,30,0): 78, 84, 72, (444,31,0): 80, 83, 72, (444,32,0): 81, 83, 72, (444,33,0): 82, 82, 72, (444,34,0): 84, 81, 72, (444,35,0): 83, 80, 71, (444,36,0): 83, 80, 71, (444,37,0): 82, 79, 70, (444,38,0): 83, 79, 68, (444,39,0): 83, 79, 68, (444,40,0): 85, 79, 67, (444,41,0): 84, 78, 66, (444,42,0): 84, 78, 64, (444,43,0): 83, 77, 63, (444,44,0): 83, 75, 62, (444,45,0): 83, 75, 62, (444,46,0): 82, 74, 61, (444,47,0): 82, 74, 61, (444,48,0): 83, 75, 64, (444,49,0): 83, 74, 65, (444,50,0): 84, 75, 66, (444,51,0): 84, 75, 66, (444,52,0): 85, 76, 67, (444,53,0): 85, 76, 67, (444,54,0): 86, 77, 68, (444,55,0): 86, 77, 68, (444,56,0): 87, 78, 69, (444,57,0): 88, 79, 70, (444,58,0): 88, 79, 70, (444,59,0): 89, 80, 71, (444,60,0): 90, 81, 72, (444,61,0): 90, 81, 72, (444,62,0): 91, 82, 73, (444,63,0): 91, 83, 72, (444,64,0): 92, 82, 70, (444,65,0): 92, 82, 70, (444,66,0): 93, 81, 69, (444,67,0): 93, 81, 69, (444,68,0): 92, 80, 68, (444,69,0): 91, 79, 67, (444,70,0): 92, 78, 67, (444,71,0): 91, 77, 66, (444,72,0): 92, 75, 65, (444,73,0): 91, 74, 64, (444,74,0): 90, 73, 63, (444,75,0): 89, 72, 62, (444,76,0): 88, 70, 60, (444,77,0): 87, 69, 59, (444,78,0): 86, 68, 58, (444,79,0): 84, 67, 57, (444,80,0): 82, 65, 55, (444,81,0): 80, 66, 55, (444,82,0): 81, 67, 56, (444,83,0): 82, 68, 57, (444,84,0): 83, 69, 58, (444,85,0): 84, 70, 59, (444,86,0): 84, 70, 59, (444,87,0): 85, 71, 60, (444,88,0): 82, 68, 57, (444,89,0): 81, 67, 56, (444,90,0): 81, 67, 56, (444,91,0): 80, 66, 55, (444,92,0): 79, 65, 54, (444,93,0): 78, 64, 53, (444,94,0): 77, 63, 52, (444,95,0): 76, 62, 49, (444,96,0): 74, 56, 44, (444,97,0): 74, 56, 42, (444,98,0): 73, 55, 41, (444,99,0): 72, 54, 40, (444,100,0): 70, 52, 38, (444,101,0): 68, 50, 36, (444,102,0): 67, 49, 35, (444,103,0): 66, 48, 34, (444,104,0): 65, 47, 33, (444,105,0): 65, 47, 33, (444,106,0): 64, 46, 32, (444,107,0): 63, 45, 31, (444,108,0): 64, 46, 32, (444,109,0): 65, 47, 33, (444,110,0): 66, 48, 34, (444,111,0): 67, 49, 35, (444,112,0): 69, 49, 40, (444,113,0): 70, 50, 41, (444,114,0): 71, 51, 42, (444,115,0): 71, 51, 42, (444,116,0): 71, 51, 42, (444,117,0): 70, 50, 41, (444,118,0): 68, 48, 39, (444,119,0): 67, 47, 38, (444,120,0): 67, 47, 38, (444,121,0): 67, 47, 38, (444,122,0): 67, 47, 38, (444,123,0): 68, 48, 39, (444,124,0): 68, 48, 39, (444,125,0): 69, 49, 40, (444,126,0): 69, 49, 40, (444,127,0): 69, 49, 40, (444,128,0): 71, 52, 46, (444,129,0): 72, 53, 47, (444,130,0): 73, 54, 48, (444,131,0): 74, 55, 49, (444,132,0): 75, 56, 50, (444,133,0): 76, 57, 51, (444,134,0): 77, 58, 52, (444,135,0): 77, 58, 52, (444,136,0): 79, 60, 54, (444,137,0): 79, 60, 54, (444,138,0): 80, 61, 55, (444,139,0): 81, 62, 56, (444,140,0): 82, 63, 57, (444,141,0): 83, 64, 58, (444,142,0): 84, 65, 59, (444,143,0): 85, 65, 58, (444,144,0): 86, 63, 57, (444,145,0): 88, 63, 56, (444,146,0): 88, 63, 56, (444,147,0): 88, 63, 56, (444,148,0): 87, 64, 56, (444,149,0): 87, 64, 56, (444,150,0): 87, 64, 58, (444,151,0): 84, 64, 57, (444,152,0): 83, 62, 57, (444,153,0): 83, 62, 57, (444,154,0): 82, 63, 59, (444,155,0): 83, 64, 60, (444,156,0): 83, 64, 60, (444,157,0): 84, 65, 61, (444,158,0): 83, 65, 61, (444,159,0): 81, 66, 63, (444,160,0): 84, 70, 69, (444,161,0): 84, 73, 71, (444,162,0): 88, 74, 73, (444,163,0): 90, 76, 75, (444,164,0): 92, 78, 77, (444,165,0): 93, 79, 78, (444,166,0): 94, 78, 78, (444,167,0): 94, 78, 78, (444,168,0): 97, 79, 79, (444,169,0): 97, 79, 79, (444,170,0): 98, 80, 80, (444,171,0): 100, 82, 82, (444,172,0): 102, 82, 83, (444,173,0): 103, 83, 84, (444,174,0): 104, 84, 85, (444,175,0): 105, 85, 84, (444,176,0): 102, 84, 82, (444,177,0): 101, 83, 79, (444,178,0): 101, 82, 78, (444,179,0): 101, 82, 78, (444,180,0): 102, 83, 79, (444,181,0): 103, 84, 80, (444,182,0): 105, 84, 81, (444,183,0): 106, 85, 82, (444,184,0): 107, 83, 81, (444,185,0): 109, 85, 83, (444,186,0): 111, 87, 85, (444,187,0): 114, 90, 88, (444,188,0): 117, 91, 90, (444,189,0): 117, 91, 90, (444,190,0): 118, 92, 91, (444,191,0): 118, 92, 91, (444,192,0): 118, 90, 87, (444,193,0): 117, 89, 86, (444,194,0): 117, 87, 85, (444,195,0): 115, 85, 83, (444,196,0): 114, 84, 82, (444,197,0): 113, 83, 81, (444,198,0): 112, 81, 79, (444,199,0): 111, 80, 78, (444,200,0): 111, 77, 76, (444,201,0): 110, 76, 75, (444,202,0): 110, 76, 75, (444,203,0): 109, 75, 74, (444,204,0): 109, 73, 73, (444,205,0): 108, 72, 72, (444,206,0): 107, 71, 71, (444,207,0): 107, 71, 71, (444,208,0): 108, 72, 74, (444,209,0): 105, 69, 73, (444,210,0): 103, 69, 70, (444,211,0): 107, 73, 74, (444,212,0): 105, 74, 72, (444,213,0): 104, 73, 71, (444,214,0): 108, 78, 76, (444,215,0): 116, 88, 85, (444,216,0): 122, 94, 93, (444,217,0): 129, 103, 104, (444,218,0): 148, 122, 125, (444,219,0): 171, 146, 150, (444,220,0): 191, 165, 174, (444,221,0): 201, 178, 188, (444,222,0): 208, 184, 197, (444,223,0): 210, 188, 201, (444,224,0): 205, 191, 208, (444,225,0): 201, 190, 207, (444,226,0): 196, 189, 207, (444,227,0): 192, 187, 207, (444,228,0): 189, 187, 208, (444,229,0): 186, 188, 209, (444,230,0): 183, 189, 213, (444,231,0): 181, 191, 216, (444,232,0): 181, 192, 220, (444,233,0): 178, 193, 222, (444,234,0): 178, 193, 226, (444,235,0): 177, 193, 227, (444,236,0): 178, 192, 229, (444,237,0): 177, 193, 229, (444,238,0): 178, 192, 231, (444,239,0): 177, 192, 233, (444,240,0): 172, 191, 234, (444,241,0): 168, 191, 235, (444,242,0): 167, 189, 238, (444,243,0): 165, 189, 237, (444,244,0): 163, 189, 240, (444,245,0): 160, 190, 242, (444,246,0): 160, 191, 245, (444,247,0): 158, 193, 249, (444,248,0): 154, 190, 248, (444,249,0): 151, 191, 250, (444,250,0): 148, 192, 253, (444,251,0): 146, 192, 254, (444,252,0): 144, 192, 255, (444,253,0): 143, 192, 255, (444,254,0): 142, 191, 255, (444,255,0): 141, 192, 255, (444,256,0): 138, 189, 255, (444,257,0): 138, 189, 254, (444,258,0): 138, 189, 255, (444,259,0): 137, 188, 254, (444,260,0): 137, 188, 254, (444,261,0): 136, 186, 255, (444,262,0): 134, 187, 255, (444,263,0): 134, 187, 255, (444,264,0): 129, 184, 251, (444,265,0): 129, 183, 253, (444,266,0): 127, 184, 253, (444,267,0): 127, 184, 255, (444,268,0): 127, 184, 255, (444,269,0): 127, 184, 255, (444,270,0): 127, 184, 255, (444,271,0): 126, 185, 255, (444,272,0): 129, 188, 255, (444,273,0): 128, 189, 255, (444,274,0): 128, 189, 255, (444,275,0): 128, 189, 255, (444,276,0): 128, 189, 255, (444,277,0): 128, 189, 255, (444,278,0): 128, 189, 255, (444,279,0): 128, 189, 255, (444,280,0): 130, 191, 255, (444,281,0): 129, 190, 255, (444,282,0): 129, 190, 255, (444,283,0): 128, 189, 255, (444,284,0): 127, 188, 255, (444,285,0): 127, 188, 255, (444,286,0): 126, 187, 254, (444,287,0): 126, 186, 255, (444,288,0): 128, 186, 255, (444,289,0): 129, 185, 255, (444,290,0): 128, 184, 255, (444,291,0): 129, 182, 255, (444,292,0): 128, 181, 255, (444,293,0): 126, 179, 255, (444,294,0): 125, 178, 254, (444,295,0): 123, 179, 254, (444,296,0): 130, 183, 255, (444,297,0): 125, 177, 253, (444,298,0): 128, 175, 253, (444,299,0): 132, 173, 253, (444,300,0): 137, 169, 252, (444,301,0): 146, 170, 255, (444,302,0): 141, 158, 246, (444,303,0): 126, 132, 208, (444,304,0): 88, 78, 130, (444,305,0): 59, 42, 78, (444,306,0): 41, 25, 54, (444,307,0): 45, 31, 54, (444,308,0): 43, 30, 48, (444,309,0): 39, 27, 39, (444,310,0): 38, 28, 37, (444,311,0): 35, 25, 34, (444,312,0): 36, 26, 35, (444,313,0): 35, 25, 36, (444,314,0): 33, 25, 38, (444,315,0): 32, 24, 39, (444,316,0): 33, 22, 38, (444,317,0): 32, 21, 37, (444,318,0): 32, 20, 34, (444,319,0): 32, 19, 36, (444,320,0): 30, 19, 35, (444,321,0): 28, 19, 36, (444,322,0): 28, 19, 36, (444,323,0): 27, 18, 35, (444,324,0): 27, 18, 35, (444,325,0): 26, 17, 34, (444,326,0): 26, 17, 34, (444,327,0): 26, 17, 34, (444,328,0): 25, 16, 33, (444,329,0): 25, 16, 33, (444,330,0): 25, 16, 33, (444,331,0): 25, 16, 33, (444,332,0): 25, 16, 33, (444,333,0): 25, 16, 33, (444,334,0): 25, 16, 33, (444,335,0): 25, 17, 32, (444,336,0): 24, 16, 27, (444,337,0): 24, 17, 25, (444,338,0): 24, 17, 25, (444,339,0): 24, 17, 25, (444,340,0): 24, 17, 25, (444,341,0): 24, 17, 25, (444,342,0): 24, 17, 25, (444,343,0): 24, 17, 25, (444,344,0): 24, 17, 25, (444,345,0): 23, 16, 24, (444,346,0): 22, 15, 23, (444,347,0): 21, 14, 22, (444,348,0): 21, 14, 22, (444,349,0): 22, 15, 23, (444,350,0): 23, 16, 24, (444,351,0): 26, 16, 25, (444,352,0): 27, 15, 29, (444,353,0): 26, 14, 28, (444,354,0): 26, 14, 28, (444,355,0): 25, 13, 27, (444,356,0): 23, 12, 26, (444,357,0): 22, 11, 25, (444,358,0): 21, 10, 24, (444,359,0): 20, 9, 23, (444,360,0): 18, 10, 23, (444,361,0): 18, 10, 23, (444,362,0): 18, 12, 24, (444,363,0): 18, 12, 24, (444,364,0): 18, 12, 24, (444,365,0): 19, 13, 25, (444,366,0): 17, 14, 25, (444,367,0): 19, 13, 25, (444,368,0): 25, 14, 28, (444,369,0): 26, 14, 28, (444,370,0): 26, 14, 28, (444,371,0): 27, 15, 29, (444,372,0): 27, 15, 29, (444,373,0): 27, 15, 29, (444,374,0): 27, 15, 29, (444,375,0): 27, 15, 29, (444,376,0): 28, 16, 30, (444,377,0): 28, 16, 30, (444,378,0): 28, 16, 30, (444,379,0): 28, 16, 30, (444,380,0): 29, 17, 31, (444,381,0): 29, 17, 31, (444,382,0): 29, 17, 31, (444,383,0): 28, 17, 31, (444,384,0): 28, 17, 34, (444,385,0): 26, 17, 34, (444,386,0): 26, 17, 34, (444,387,0): 26, 17, 34, (444,388,0): 26, 17, 34, (444,389,0): 26, 17, 34, (444,390,0): 26, 17, 34, (444,391,0): 26, 17, 34, (444,392,0): 26, 17, 34, (444,393,0): 26, 17, 34, (444,394,0): 26, 17, 34, (444,395,0): 26, 17, 34, (444,396,0): 26, 17, 34, (444,397,0): 26, 17, 34, (444,398,0): 26, 17, 34, (444,399,0): 26, 17, 34, (444,400,0): 27, 20, 36, (444,401,0): 27, 20, 36, (444,402,0): 26, 19, 35, (444,403,0): 27, 20, 36, (444,404,0): 27, 20, 36, (444,405,0): 29, 22, 38, (444,406,0): 31, 24, 40, (444,407,0): 32, 25, 41, (444,408,0): 39, 32, 48, (444,409,0): 38, 31, 47, (444,410,0): 37, 30, 46, (444,411,0): 37, 30, 46, (444,412,0): 38, 31, 47, (444,413,0): 41, 34, 50, (444,414,0): 44, 37, 53, (444,415,0): 46, 40, 54, (444,416,0): 49, 41, 56, (444,417,0): 48, 40, 53, (444,418,0): 48, 40, 53, (444,419,0): 47, 39, 52, (444,420,0): 49, 38, 52, (444,421,0): 48, 37, 51, (444,422,0): 48, 37, 51, (444,423,0): 48, 37, 51, (444,424,0): 51, 39, 53, (444,425,0): 52, 40, 54, (444,426,0): 56, 42, 57, (444,427,0): 59, 45, 60, (444,428,0): 63, 49, 64, (444,429,0): 67, 53, 68, (444,430,0): 71, 54, 70, (444,431,0): 73, 56, 72, (444,432,0): 73, 59, 72, (444,433,0): 73, 59, 72, (444,434,0): 77, 61, 74, (444,435,0): 78, 62, 75, (444,436,0): 80, 64, 77, (444,437,0): 81, 65, 78, (444,438,0): 83, 65, 79, (444,439,0): 84, 66, 80, (444,440,0): 90, 69, 86, (444,441,0): 90, 69, 86, (444,442,0): 90, 69, 86, (444,443,0): 89, 68, 85, (444,444,0): 86, 63, 81, (444,445,0): 82, 59, 77, (444,446,0): 77, 54, 72, (444,447,0): 74, 51, 67, (444,448,0): 66, 47, 53, (444,449,0): 66, 47, 49, (444,450,0): 66, 47, 51, (444,451,0): 68, 49, 53, (444,452,0): 73, 54, 58, (444,453,0): 80, 61, 67, (444,454,0): 85, 68, 74, (444,455,0): 89, 72, 80, (444,456,0): 91, 74, 82, (444,457,0): 90, 73, 81, (444,458,0): 89, 72, 82, (444,459,0): 88, 71, 81, (444,460,0): 85, 69, 80, (444,461,0): 82, 66, 77, (444,462,0): 81, 65, 78, (444,463,0): 81, 63, 75, (444,464,0): 83, 63, 75, (444,465,0): 85, 62, 72, (444,466,0): 89, 59, 69, (444,467,0): 89, 58, 66, (444,468,0): 88, 59, 63, (444,469,0): 85, 61, 61, (444,470,0): 81, 62, 58, (444,471,0): 79, 60, 54, (444,472,0): 83, 62, 59, (444,473,0): 89, 68, 67, (444,474,0): 93, 75, 75, (444,475,0): 88, 82, 82, (444,476,0): 86, 102, 99, (444,477,0): 103, 144, 136, (444,478,0): 130, 201, 185, (444,479,0): 161, 239, 226, (444,480,0): 183, 247, 247, (444,481,0): 200, 255, 255, (444,482,0): 210, 255, 255, (444,483,0): 200, 245, 255, (444,484,0): 175, 220, 243, (444,485,0): 145, 185, 210, (444,486,0): 115, 150, 172, (444,487,0): 102, 123, 142, (444,488,0): 107, 111, 123, (444,489,0): 101, 95, 99, (444,490,0): 101, 88, 82, (444,491,0): 111, 95, 80, (444,492,0): 110, 94, 78, (444,493,0): 102, 85, 67, (444,494,0): 105, 82, 68, (444,495,0): 120, 86, 74, (444,496,0): 123, 76, 60, (444,497,0): 144, 86, 72, (444,498,0): 158, 94, 82, (444,499,0): 154, 87, 78, (444,500,0): 136, 72, 63, (444,501,0): 121, 62, 56, (444,502,0): 116, 65, 62, (444,503,0): 116, 72, 73, (444,504,0): 120, 77, 84, (444,505,0): 129, 83, 96, (444,506,0): 136, 78, 100, (444,507,0): 149, 76, 105, (444,508,0): 172, 85, 117, (444,509,0): 189, 87, 124, (444,510,0): 204, 92, 130, (444,511,0): 232, 103, 134, (444,512,0): 251, 100, 117, (444,513,0): 255, 102, 114, (444,514,0): 255, 100, 117, (444,515,0): 242, 90, 111, (444,516,0): 217, 76, 95, (444,517,0): 193, 61, 82, (444,518,0): 180, 59, 76, (444,519,0): 172, 59, 77, (444,520,0): 165, 59, 79, (444,521,0): 161, 59, 83, (444,522,0): 157, 53, 86, (444,523,0): 153, 48, 88, (444,524,0): 153, 46, 88, (444,525,0): 159, 50, 92, (444,526,0): 164, 55, 96, (444,527,0): 175, 57, 92, (444,528,0): 186, 51, 83, (444,529,0): 201, 56, 87, (444,530,0): 214, 64, 99, (444,531,0): 213, 59, 95, (444,532,0): 210, 50, 88, (444,533,0): 223, 61, 98, (444,534,0): 232, 68, 103, (444,535,0): 218, 59, 89, (444,536,0): 201, 52, 74, (444,537,0): 191, 54, 70, (444,538,0): 180, 58, 69, (444,539,0): 172, 61, 70, (444,540,0): 164, 58, 70, (444,541,0): 162, 57, 72, (444,542,0): 162, 55, 75, (444,543,0): 161, 52, 73, (444,544,0): 165, 54, 73, (444,545,0): 186, 65, 84, (444,546,0): 210, 72, 97, (444,547,0): 214, 70, 95, (444,548,0): 199, 60, 83, (444,549,0): 186, 50, 70, (444,550,0): 180, 49, 67, (444,551,0): 187, 50, 70, (444,552,0): 205, 55, 82, (444,553,0): 196, 46, 73, (444,554,0): 175, 41, 65, (444,555,0): 149, 38, 55, (444,556,0): 121, 40, 49, (444,557,0): 105, 43, 48, (444,558,0): 99, 40, 46, (444,559,0): 87, 33, 46, (444,560,0): 97, 44, 70, (444,561,0): 96, 47, 92, (444,562,0): 95, 47, 121, (444,563,0): 88, 44, 139, (444,564,0): 76, 37, 146, (444,565,0): 69, 32, 138, (444,566,0): 66, 31, 123, (444,567,0): 67, 33, 107, (444,568,0): 70, 32, 89, (444,569,0): 73, 31, 77, (444,570,0): 76, 29, 71, (444,571,0): 79, 31, 69, (444,572,0): 83, 36, 72, (444,573,0): 84, 39, 70, (444,574,0): 83, 41, 65, (444,575,0): 79, 40, 59, (444,576,0): 72, 34, 49, (444,577,0): 73, 35, 50, (444,578,0): 75, 37, 52, (444,579,0): 77, 39, 52, (444,580,0): 78, 42, 54, (444,581,0): 80, 44, 56, (444,582,0): 81, 45, 55, (444,583,0): 80, 47, 56, (444,584,0): 71, 38, 45, (444,585,0): 70, 37, 44, (444,586,0): 69, 38, 43, (444,587,0): 69, 38, 43, (444,588,0): 68, 38, 40, (444,589,0): 67, 37, 39, (444,590,0): 66, 37, 39, (444,591,0): 66, 37, 41, (444,592,0): 65, 38, 43, (444,593,0): 63, 36, 41, (444,594,0): 60, 33, 38, (444,595,0): 60, 33, 38, (444,596,0): 61, 34, 39, (444,597,0): 61, 34, 39, (444,598,0): 59, 32, 37, (444,599,0): 56, 29, 34, (445,0,0): 70, 76, 64, (445,1,0): 70, 76, 64, (445,2,0): 69, 75, 63, (445,3,0): 69, 75, 63, (445,4,0): 68, 74, 62, (445,5,0): 68, 74, 62, (445,6,0): 67, 73, 61, (445,7,0): 67, 73, 61, (445,8,0): 69, 75, 63, (445,9,0): 69, 75, 63, (445,10,0): 69, 75, 63, (445,11,0): 70, 76, 64, (445,12,0): 70, 76, 64, (445,13,0): 71, 77, 65, (445,14,0): 71, 77, 65, (445,15,0): 72, 78, 66, (445,16,0): 73, 79, 67, (445,17,0): 73, 79, 67, (445,18,0): 73, 79, 67, (445,19,0): 74, 80, 68, (445,20,0): 74, 80, 68, (445,21,0): 75, 81, 69, (445,22,0): 75, 81, 69, (445,23,0): 75, 81, 69, (445,24,0): 77, 83, 71, (445,25,0): 77, 83, 71, (445,26,0): 77, 83, 71, (445,27,0): 77, 83, 71, (445,28,0): 77, 83, 71, (445,29,0): 77, 83, 71, (445,30,0): 77, 83, 71, (445,31,0): 79, 82, 71, (445,32,0): 81, 83, 72, (445,33,0): 82, 82, 72, (445,34,0): 84, 81, 72, (445,35,0): 83, 80, 71, (445,36,0): 83, 80, 71, (445,37,0): 82, 79, 70, (445,38,0): 83, 79, 68, (445,39,0): 83, 79, 68, (445,40,0): 85, 79, 67, (445,41,0): 84, 78, 66, (445,42,0): 84, 78, 64, (445,43,0): 83, 77, 63, (445,44,0): 83, 75, 62, (445,45,0): 82, 74, 61, (445,46,0): 81, 73, 60, (445,47,0): 81, 73, 60, (445,48,0): 82, 73, 64, (445,49,0): 82, 73, 64, (445,50,0): 83, 74, 65, (445,51,0): 83, 74, 65, (445,52,0): 84, 75, 66, (445,53,0): 84, 75, 66, (445,54,0): 84, 75, 66, (445,55,0): 85, 76, 67, (445,56,0): 85, 76, 67, (445,57,0): 85, 76, 67, (445,58,0): 86, 77, 68, (445,59,0): 87, 78, 69, (445,60,0): 88, 79, 70, (445,61,0): 89, 80, 71, (445,62,0): 90, 81, 72, (445,63,0): 90, 82, 71, (445,64,0): 91, 81, 71, (445,65,0): 91, 81, 69, (445,66,0): 92, 80, 68, (445,67,0): 91, 79, 67, (445,68,0): 90, 78, 66, (445,69,0): 89, 77, 65, (445,70,0): 89, 75, 64, (445,71,0): 89, 75, 64, (445,72,0): 91, 74, 64, (445,73,0): 90, 73, 63, (445,74,0): 90, 73, 63, (445,75,0): 88, 71, 61, (445,76,0): 88, 70, 60, (445,77,0): 87, 69, 59, (445,78,0): 86, 68, 58, (445,79,0): 85, 68, 58, (445,80,0): 83, 66, 56, (445,81,0): 81, 67, 56, (445,82,0): 82, 68, 57, (445,83,0): 82, 68, 57, (445,84,0): 83, 69, 58, (445,85,0): 84, 70, 59, (445,86,0): 85, 71, 60, (445,87,0): 85, 71, 60, (445,88,0): 82, 68, 57, (445,89,0): 81, 67, 56, (445,90,0): 80, 66, 55, (445,91,0): 79, 65, 54, (445,92,0): 78, 64, 53, (445,93,0): 77, 63, 52, (445,94,0): 76, 62, 51, (445,95,0): 76, 62, 49, (445,96,0): 75, 57, 45, (445,97,0): 75, 57, 43, (445,98,0): 74, 56, 42, (445,99,0): 74, 56, 42, (445,100,0): 72, 54, 40, (445,101,0): 70, 52, 38, (445,102,0): 68, 50, 36, (445,103,0): 66, 48, 34, (445,104,0): 65, 47, 33, (445,105,0): 64, 46, 32, (445,106,0): 63, 45, 31, (445,107,0): 63, 45, 31, (445,108,0): 63, 45, 31, (445,109,0): 63, 45, 31, (445,110,0): 65, 47, 33, (445,111,0): 65, 47, 33, (445,112,0): 67, 47, 38, (445,113,0): 69, 49, 40, (445,114,0): 71, 51, 42, (445,115,0): 72, 52, 43, (445,116,0): 72, 52, 43, (445,117,0): 70, 50, 41, (445,118,0): 68, 48, 39, (445,119,0): 67, 47, 38, (445,120,0): 68, 48, 39, (445,121,0): 68, 48, 39, (445,122,0): 68, 48, 39, (445,123,0): 68, 48, 39, (445,124,0): 68, 48, 39, (445,125,0): 68, 48, 39, (445,126,0): 68, 48, 39, (445,127,0): 68, 48, 39, (445,128,0): 71, 52, 46, (445,129,0): 71, 52, 46, (445,130,0): 72, 53, 47, (445,131,0): 73, 54, 48, (445,132,0): 74, 55, 49, (445,133,0): 75, 56, 50, (445,134,0): 76, 57, 51, (445,135,0): 76, 57, 51, (445,136,0): 78, 59, 53, (445,137,0): 79, 60, 54, (445,138,0): 80, 61, 55, (445,139,0): 81, 62, 56, (445,140,0): 82, 63, 57, (445,141,0): 83, 64, 58, (445,142,0): 84, 65, 59, (445,143,0): 85, 65, 58, (445,144,0): 86, 63, 55, (445,145,0): 88, 63, 56, (445,146,0): 89, 64, 57, (445,147,0): 90, 65, 58, (445,148,0): 89, 66, 58, (445,149,0): 88, 65, 57, (445,150,0): 87, 64, 58, (445,151,0): 86, 63, 57, (445,152,0): 83, 62, 57, (445,153,0): 83, 62, 57, (445,154,0): 82, 63, 59, (445,155,0): 83, 64, 60, (445,156,0): 83, 64, 60, (445,157,0): 84, 65, 61, (445,158,0): 83, 65, 61, (445,159,0): 81, 66, 61, (445,160,0): 85, 71, 70, (445,161,0): 84, 73, 71, (445,162,0): 88, 74, 73, (445,163,0): 91, 77, 76, (445,164,0): 92, 78, 77, (445,165,0): 93, 79, 78, (445,166,0): 94, 78, 78, (445,167,0): 94, 78, 78, (445,168,0): 98, 80, 80, (445,169,0): 98, 80, 80, (445,170,0): 98, 80, 80, (445,171,0): 99, 81, 81, (445,172,0): 101, 81, 82, (445,173,0): 102, 82, 83, (445,174,0): 103, 83, 84, (445,175,0): 103, 83, 82, (445,176,0): 101, 83, 81, (445,177,0): 101, 83, 79, (445,178,0): 101, 82, 78, (445,179,0): 101, 82, 78, (445,180,0): 101, 82, 78, (445,181,0): 102, 83, 79, (445,182,0): 105, 84, 81, (445,183,0): 106, 85, 82, (445,184,0): 106, 82, 80, (445,185,0): 107, 83, 81, (445,186,0): 110, 86, 84, (445,187,0): 113, 89, 87, (445,188,0): 116, 90, 89, (445,189,0): 117, 91, 90, (445,190,0): 118, 92, 91, (445,191,0): 118, 92, 91, (445,192,0): 120, 92, 89, (445,193,0): 118, 90, 87, (445,194,0): 116, 86, 84, (445,195,0): 115, 85, 83, (445,196,0): 115, 85, 83, (445,197,0): 114, 84, 82, (445,198,0): 113, 82, 80, (445,199,0): 111, 80, 78, (445,200,0): 109, 75, 74, (445,201,0): 109, 75, 74, (445,202,0): 108, 74, 73, (445,203,0): 108, 74, 73, (445,204,0): 108, 72, 72, (445,205,0): 108, 72, 72, (445,206,0): 107, 71, 71, (445,207,0): 107, 71, 71, (445,208,0): 109, 73, 77, (445,209,0): 105, 69, 73, (445,210,0): 104, 68, 70, (445,211,0): 107, 73, 74, (445,212,0): 106, 75, 73, (445,213,0): 104, 73, 71, (445,214,0): 107, 77, 75, (445,215,0): 114, 84, 82, (445,216,0): 112, 84, 83, (445,217,0): 115, 89, 88, (445,218,0): 130, 104, 107, (445,219,0): 154, 127, 132, (445,220,0): 175, 148, 155, (445,221,0): 190, 164, 173, (445,222,0): 205, 177, 189, (445,223,0): 212, 188, 202, (445,224,0): 204, 187, 205, (445,225,0): 199, 188, 205, (445,226,0): 194, 185, 204, (445,227,0): 189, 185, 202, (445,228,0): 188, 185, 206, (445,229,0): 186, 187, 208, (445,230,0): 184, 190, 212, (445,231,0): 182, 192, 217, (445,232,0): 181, 193, 219, (445,233,0): 179, 193, 222, (445,234,0): 179, 192, 224, (445,235,0): 178, 193, 226, (445,236,0): 178, 192, 227, (445,237,0): 178, 192, 229, (445,238,0): 178, 192, 231, (445,239,0): 177, 192, 233, (445,240,0): 172, 191, 234, (445,241,0): 169, 190, 235, (445,242,0): 167, 189, 238, (445,243,0): 165, 189, 237, (445,244,0): 162, 188, 239, (445,245,0): 160, 190, 242, (445,246,0): 159, 190, 244, (445,247,0): 157, 192, 248, (445,248,0): 154, 190, 248, (445,249,0): 151, 191, 250, (445,250,0): 148, 192, 253, (445,251,0): 145, 193, 255, (445,252,0): 145, 193, 255, (445,253,0): 144, 193, 255, (445,254,0): 143, 194, 255, (445,255,0): 143, 194, 255, (445,256,0): 141, 192, 255, (445,257,0): 140, 191, 255, (445,258,0): 140, 191, 255, (445,259,0): 140, 191, 255, (445,260,0): 139, 190, 255, (445,261,0): 139, 190, 255, (445,262,0): 136, 189, 255, (445,263,0): 136, 189, 255, (445,264,0): 130, 185, 252, (445,265,0): 130, 185, 252, (445,266,0): 128, 185, 254, (445,267,0): 128, 185, 254, (445,268,0): 128, 185, 254, (445,269,0): 128, 185, 255, (445,270,0): 128, 185, 255, (445,271,0): 127, 186, 255, (445,272,0): 131, 190, 255, (445,273,0): 130, 191, 255, (445,274,0): 130, 191, 255, (445,275,0): 130, 191, 255, (445,276,0): 130, 191, 255, (445,277,0): 130, 191, 255, (445,278,0): 130, 191, 255, (445,279,0): 130, 191, 255, (445,280,0): 131, 192, 255, (445,281,0): 130, 191, 255, (445,282,0): 130, 191, 255, (445,283,0): 129, 190, 255, (445,284,0): 128, 189, 255, (445,285,0): 127, 188, 255, (445,286,0): 126, 187, 254, (445,287,0): 127, 186, 255, (445,288,0): 130, 186, 255, (445,289,0): 129, 185, 255, (445,290,0): 130, 183, 255, (445,291,0): 129, 182, 255, (445,292,0): 128, 180, 255, (445,293,0): 126, 178, 254, (445,294,0): 125, 177, 253, (445,295,0): 124, 177, 253, (445,296,0): 129, 182, 255, (445,297,0): 123, 175, 251, (445,298,0): 127, 173, 251, (445,299,0): 132, 170, 251, (445,300,0): 139, 167, 251, (445,301,0): 145, 167, 253, (445,302,0): 132, 146, 235, (445,303,0): 109, 113, 187, (445,304,0): 69, 60, 107, (445,305,0): 49, 34, 63, (445,306,0): 38, 24, 49, (445,307,0): 42, 30, 50, (445,308,0): 40, 29, 45, (445,309,0): 36, 28, 41, (445,310,0): 35, 27, 38, (445,311,0): 29, 24, 31, (445,312,0): 31, 26, 33, (445,313,0): 32, 25, 33, (445,314,0): 32, 24, 35, (445,315,0): 31, 23, 36, (445,316,0): 32, 21, 37, (445,317,0): 32, 21, 37, (445,318,0): 32, 19, 36, (445,319,0): 31, 20, 37, (445,320,0): 30, 19, 36, (445,321,0): 28, 19, 36, (445,322,0): 28, 19, 36, (445,323,0): 27, 18, 35, (445,324,0): 27, 18, 35, (445,325,0): 26, 17, 34, (445,326,0): 26, 17, 34, (445,327,0): 26, 17, 34, (445,328,0): 25, 16, 33, (445,329,0): 25, 16, 33, (445,330,0): 25, 16, 33, (445,331,0): 25, 16, 33, (445,332,0): 25, 16, 33, (445,333,0): 25, 16, 33, (445,334,0): 25, 16, 33, (445,335,0): 25, 17, 32, (445,336,0): 24, 16, 27, (445,337,0): 24, 17, 25, (445,338,0): 24, 17, 25, (445,339,0): 24, 17, 25, (445,340,0): 24, 17, 25, (445,341,0): 24, 17, 25, (445,342,0): 24, 17, 25, (445,343,0): 24, 17, 25, (445,344,0): 25, 18, 26, (445,345,0): 24, 17, 25, (445,346,0): 21, 14, 22, (445,347,0): 20, 13, 21, (445,348,0): 20, 13, 21, (445,349,0): 21, 14, 22, (445,350,0): 24, 17, 25, (445,351,0): 25, 18, 26, (445,352,0): 26, 14, 28, (445,353,0): 27, 15, 29, (445,354,0): 27, 15, 29, (445,355,0): 26, 14, 28, (445,356,0): 24, 13, 27, (445,357,0): 23, 12, 26, (445,358,0): 21, 10, 24, (445,359,0): 20, 9, 23, (445,360,0): 19, 11, 24, (445,361,0): 19, 11, 24, (445,362,0): 18, 12, 24, (445,363,0): 18, 12, 24, (445,364,0): 18, 12, 24, (445,365,0): 18, 12, 24, (445,366,0): 16, 13, 24, (445,367,0): 18, 12, 24, (445,368,0): 24, 13, 27, (445,369,0): 25, 13, 27, (445,370,0): 26, 14, 28, (445,371,0): 26, 14, 28, (445,372,0): 26, 14, 28, (445,373,0): 27, 15, 29, (445,374,0): 27, 15, 29, (445,375,0): 27, 15, 29, (445,376,0): 27, 15, 29, (445,377,0): 27, 15, 29, (445,378,0): 28, 16, 30, (445,379,0): 28, 16, 30, (445,380,0): 29, 17, 31, (445,381,0): 29, 17, 31, (445,382,0): 30, 18, 32, (445,383,0): 29, 18, 32, (445,384,0): 28, 17, 34, (445,385,0): 26, 17, 34, (445,386,0): 26, 17, 34, (445,387,0): 26, 17, 34, (445,388,0): 26, 17, 34, (445,389,0): 26, 17, 34, (445,390,0): 26, 17, 34, (445,391,0): 26, 17, 34, (445,392,0): 26, 17, 34, (445,393,0): 26, 17, 34, (445,394,0): 26, 17, 34, (445,395,0): 27, 18, 35, (445,396,0): 27, 18, 35, (445,397,0): 28, 19, 36, (445,398,0): 28, 19, 36, (445,399,0): 28, 19, 36, (445,400,0): 30, 23, 39, (445,401,0): 29, 22, 38, (445,402,0): 28, 21, 37, (445,403,0): 28, 21, 37, (445,404,0): 29, 22, 38, (445,405,0): 30, 23, 39, (445,406,0): 32, 25, 41, (445,407,0): 33, 26, 42, (445,408,0): 39, 32, 48, (445,409,0): 38, 31, 47, (445,410,0): 37, 30, 46, (445,411,0): 37, 30, 46, (445,412,0): 39, 32, 48, (445,413,0): 43, 36, 52, (445,414,0): 46, 39, 55, (445,415,0): 48, 42, 56, (445,416,0): 49, 41, 56, (445,417,0): 49, 41, 54, (445,418,0): 49, 41, 54, (445,419,0): 48, 40, 53, (445,420,0): 50, 39, 53, (445,421,0): 49, 38, 52, (445,422,0): 49, 38, 52, (445,423,0): 49, 38, 52, (445,424,0): 50, 38, 52, (445,425,0): 52, 40, 54, (445,426,0): 55, 41, 56, (445,427,0): 59, 45, 60, (445,428,0): 62, 48, 63, (445,429,0): 66, 52, 67, (445,430,0): 70, 53, 69, (445,431,0): 72, 56, 69, (445,432,0): 72, 59, 69, (445,433,0): 73, 60, 70, (445,434,0): 76, 60, 71, (445,435,0): 77, 61, 72, (445,436,0): 79, 63, 74, (445,437,0): 80, 64, 75, (445,438,0): 83, 65, 77, (445,439,0): 83, 65, 79, (445,440,0): 89, 68, 83, (445,441,0): 89, 68, 83, (445,442,0): 90, 69, 86, (445,443,0): 89, 68, 85, (445,444,0): 87, 64, 82, (445,445,0): 83, 60, 78, (445,446,0): 79, 56, 74, (445,447,0): 77, 55, 68, (445,448,0): 68, 49, 53, (445,449,0): 68, 49, 51, (445,450,0): 68, 49, 51, (445,451,0): 69, 50, 52, (445,452,0): 73, 54, 58, (445,453,0): 78, 59, 63, (445,454,0): 82, 65, 71, (445,455,0): 85, 68, 74, (445,456,0): 89, 72, 80, (445,457,0): 88, 71, 79, (445,458,0): 88, 71, 81, (445,459,0): 87, 70, 80, (445,460,0): 84, 68, 79, (445,461,0): 82, 66, 77, (445,462,0): 79, 63, 76, (445,463,0): 78, 62, 73, (445,464,0): 77, 60, 70, (445,465,0): 82, 61, 70, (445,466,0): 85, 57, 69, (445,467,0): 85, 55, 63, (445,468,0): 84, 57, 62, (445,469,0): 85, 63, 65, (445,470,0): 81, 63, 61, (445,471,0): 76, 58, 56, (445,472,0): 81, 61, 60, (445,473,0): 86, 64, 67, (445,474,0): 87, 66, 73, (445,475,0): 81, 70, 78, (445,476,0): 76, 87, 93, (445,477,0): 83, 121, 122, (445,478,0): 101, 166, 162, (445,479,0): 121, 197, 195, (445,480,0): 162, 232, 242, (445,481,0): 173, 235, 255, (445,482,0): 181, 230, 255, (445,483,0): 168, 208, 243, (445,484,0): 140, 176, 212, (445,485,0): 113, 143, 177, (445,486,0): 100, 121, 150, (445,487,0): 98, 109, 129, (445,488,0): 99, 96, 107, (445,489,0): 101, 86, 89, (445,490,0): 100, 83, 75, (445,491,0): 102, 84, 70, (445,492,0): 102, 85, 69, (445,493,0): 101, 82, 67, (445,494,0): 109, 82, 71, (445,495,0): 123, 83, 73, (445,496,0): 139, 81, 70, (445,497,0): 155, 88, 79, (445,498,0): 155, 93, 82, (445,499,0): 141, 83, 72, (445,500,0): 124, 71, 63, (445,501,0): 117, 70, 64, (445,502,0): 116, 75, 71, (445,503,0): 119, 79, 80, (445,504,0): 121, 80, 88, (445,505,0): 130, 86, 99, (445,506,0): 137, 84, 104, (445,507,0): 143, 81, 106, (445,508,0): 155, 80, 111, (445,509,0): 161, 75, 110, (445,510,0): 176, 80, 118, (445,511,0): 211, 93, 128, (445,512,0): 247, 101, 122, (445,513,0): 255, 105, 123, (445,514,0): 255, 100, 126, (445,515,0): 245, 88, 117, (445,516,0): 217, 68, 98, (445,517,0): 193, 53, 80, (445,518,0): 187, 57, 81, (445,519,0): 181, 62, 84, (445,520,0): 170, 53, 79, (445,521,0): 161, 48, 76, (445,522,0): 160, 44, 79, (445,523,0): 170, 50, 88, (445,524,0): 182, 55, 96, (445,525,0): 184, 55, 94, (445,526,0): 181, 51, 87, (445,527,0): 182, 48, 81, (445,528,0): 176, 37, 66, (445,529,0): 187, 42, 71, (445,530,0): 213, 59, 93, (445,531,0): 226, 66, 102, (445,532,0): 229, 58, 100, (445,533,0): 237, 60, 102, (445,534,0): 248, 68, 107, (445,535,0): 242, 68, 103, (445,536,0): 216, 56, 82, (445,537,0): 197, 54, 72, (445,538,0): 181, 59, 72, (445,539,0): 168, 61, 71, (445,540,0): 155, 54, 68, (445,541,0): 153, 56, 73, (445,542,0): 157, 60, 80, (445,543,0): 158, 54, 77, (445,544,0): 168, 59, 78, (445,545,0): 179, 56, 77, (445,546,0): 197, 53, 80, (445,547,0): 206, 56, 85, (445,548,0): 206, 59, 85, (445,549,0): 197, 58, 81, (445,550,0): 184, 51, 70, (445,551,0): 179, 43, 63, (445,552,0): 205, 57, 83, (445,553,0): 192, 45, 71, (445,554,0): 174, 42, 66, (445,555,0): 152, 43, 62, (445,556,0): 127, 47, 58, (445,557,0): 119, 54, 62, (445,558,0): 118, 55, 64, (445,559,0): 109, 47, 60, (445,560,0): 104, 45, 67, (445,561,0): 103, 47, 82, (445,562,0): 102, 48, 98, (445,563,0): 95, 45, 104, (445,564,0): 85, 39, 104, (445,565,0): 76, 34, 98, (445,566,0): 73, 32, 88, (445,567,0): 73, 34, 81, (445,568,0): 75, 33, 73, (445,569,0): 76, 30, 66, (445,570,0): 75, 28, 64, (445,571,0): 77, 30, 64, (445,572,0): 79, 33, 62, (445,573,0): 79, 35, 58, (445,574,0): 75, 37, 50, (445,575,0): 72, 36, 46, (445,576,0): 71, 33, 46, (445,577,0): 72, 34, 49, (445,578,0): 74, 36, 51, (445,579,0): 76, 38, 53, (445,580,0): 77, 41, 53, (445,581,0): 79, 43, 55, (445,582,0): 81, 45, 55, (445,583,0): 82, 46, 56, (445,584,0): 71, 38, 45, (445,585,0): 71, 38, 45, (445,586,0): 70, 39, 44, (445,587,0): 69, 38, 43, (445,588,0): 69, 39, 41, (445,589,0): 68, 38, 40, (445,590,0): 67, 38, 40, (445,591,0): 66, 37, 39, (445,592,0): 66, 40, 43, (445,593,0): 63, 36, 41, (445,594,0): 61, 34, 39, (445,595,0): 61, 34, 39, (445,596,0): 62, 35, 40, (445,597,0): 62, 35, 40, (445,598,0): 59, 32, 37, (445,599,0): 57, 30, 35, (446,0,0): 68, 74, 62, (446,1,0): 68, 74, 62, (446,2,0): 67, 73, 61, (446,3,0): 67, 73, 61, (446,4,0): 66, 72, 60, (446,5,0): 66, 72, 60, (446,6,0): 65, 71, 59, (446,7,0): 65, 71, 59, (446,8,0): 68, 74, 62, (446,9,0): 69, 75, 63, (446,10,0): 69, 75, 63, (446,11,0): 70, 76, 64, (446,12,0): 70, 76, 64, (446,13,0): 71, 77, 65, (446,14,0): 71, 77, 65, (446,15,0): 71, 77, 65, (446,16,0): 73, 79, 67, (446,17,0): 73, 79, 67, (446,18,0): 73, 79, 67, (446,19,0): 74, 80, 68, (446,20,0): 74, 80, 68, (446,21,0): 75, 81, 69, (446,22,0): 75, 81, 69, (446,23,0): 75, 81, 69, (446,24,0): 75, 81, 69, (446,25,0): 75, 81, 69, (446,26,0): 75, 81, 69, (446,27,0): 75, 81, 69, (446,28,0): 75, 81, 69, (446,29,0): 75, 81, 69, (446,30,0): 75, 81, 69, (446,31,0): 77, 80, 69, (446,32,0): 81, 83, 72, (446,33,0): 82, 82, 72, (446,34,0): 84, 81, 72, (446,35,0): 83, 80, 71, (446,36,0): 83, 80, 71, (446,37,0): 82, 79, 70, (446,38,0): 83, 79, 68, (446,39,0): 83, 79, 68, (446,40,0): 85, 79, 67, (446,41,0): 85, 79, 67, (446,42,0): 84, 78, 64, (446,43,0): 82, 76, 62, (446,44,0): 82, 74, 61, (446,45,0): 81, 73, 60, (446,46,0): 80, 72, 59, (446,47,0): 80, 72, 59, (446,48,0): 81, 72, 63, (446,49,0): 82, 73, 64, (446,50,0): 82, 73, 64, (446,51,0): 83, 74, 65, (446,52,0): 83, 74, 65, (446,53,0): 84, 75, 66, (446,54,0): 84, 75, 66, (446,55,0): 84, 75, 66, (446,56,0): 83, 74, 65, (446,57,0): 84, 75, 66, (446,58,0): 85, 76, 67, (446,59,0): 86, 77, 68, (446,60,0): 87, 78, 69, (446,61,0): 88, 79, 70, (446,62,0): 89, 80, 71, (446,63,0): 90, 82, 71, (446,64,0): 91, 81, 71, (446,65,0): 90, 80, 68, (446,66,0): 91, 79, 67, (446,67,0): 90, 78, 66, (446,68,0): 89, 77, 65, (446,69,0): 88, 76, 64, (446,70,0): 88, 74, 63, (446,71,0): 87, 73, 62, (446,72,0): 91, 74, 64, (446,73,0): 90, 73, 63, (446,74,0): 90, 73, 63, (446,75,0): 89, 72, 62, (446,76,0): 89, 71, 61, (446,77,0): 88, 70, 60, (446,78,0): 87, 69, 59, (446,79,0): 86, 69, 59, (446,80,0): 84, 67, 57, (446,81,0): 82, 68, 57, (446,82,0): 83, 69, 58, (446,83,0): 83, 69, 58, (446,84,0): 83, 69, 58, (446,85,0): 84, 70, 59, (446,86,0): 84, 70, 59, (446,87,0): 84, 70, 59, (446,88,0): 81, 67, 56, (446,89,0): 80, 66, 55, (446,90,0): 80, 66, 55, (446,91,0): 79, 65, 54, (446,92,0): 78, 64, 53, (446,93,0): 77, 63, 52, (446,94,0): 76, 62, 51, (446,95,0): 75, 61, 48, (446,96,0): 75, 57, 45, (446,97,0): 75, 57, 43, (446,98,0): 75, 57, 43, (446,99,0): 75, 57, 43, (446,100,0): 73, 55, 41, (446,101,0): 71, 53, 39, (446,102,0): 68, 50, 36, (446,103,0): 66, 48, 34, (446,104,0): 65, 47, 33, (446,105,0): 64, 46, 32, (446,106,0): 63, 45, 31, (446,107,0): 62, 44, 30, (446,108,0): 62, 44, 30, (446,109,0): 62, 44, 30, (446,110,0): 63, 45, 31, (446,111,0): 64, 46, 32, (446,112,0): 66, 46, 37, (446,113,0): 68, 48, 39, (446,114,0): 71, 51, 42, (446,115,0): 72, 52, 43, (446,116,0): 73, 53, 44, (446,117,0): 71, 51, 42, (446,118,0): 69, 49, 40, (446,119,0): 67, 47, 38, (446,120,0): 68, 48, 39, (446,121,0): 68, 48, 39, (446,122,0): 68, 48, 39, (446,123,0): 68, 48, 39, (446,124,0): 68, 48, 39, (446,125,0): 68, 48, 39, (446,126,0): 68, 48, 39, (446,127,0): 68, 48, 39, (446,128,0): 71, 52, 46, (446,129,0): 71, 52, 46, (446,130,0): 72, 53, 47, (446,131,0): 73, 54, 48, (446,132,0): 74, 55, 49, (446,133,0): 75, 56, 50, (446,134,0): 76, 57, 51, (446,135,0): 76, 57, 51, (446,136,0): 78, 59, 53, (446,137,0): 78, 59, 53, (446,138,0): 79, 60, 54, (446,139,0): 80, 61, 55, (446,140,0): 81, 62, 56, (446,141,0): 82, 63, 57, (446,142,0): 83, 64, 58, (446,143,0): 85, 65, 58, (446,144,0): 88, 63, 56, (446,145,0): 91, 64, 55, (446,146,0): 90, 65, 58, (446,147,0): 91, 66, 59, (446,148,0): 91, 66, 59, (446,149,0): 90, 65, 58, (446,150,0): 88, 65, 59, (446,151,0): 87, 64, 58, (446,152,0): 84, 63, 58, (446,153,0): 84, 63, 58, (446,154,0): 84, 63, 58, (446,155,0): 85, 64, 59, (446,156,0): 84, 65, 61, (446,157,0): 85, 66, 62, (446,158,0): 85, 66, 62, (446,159,0): 84, 66, 62, (446,160,0): 85, 71, 70, (446,161,0): 85, 74, 72, (446,162,0): 89, 75, 74, (446,163,0): 91, 77, 76, (446,164,0): 93, 79, 78, (446,165,0): 94, 80, 79, (446,166,0): 95, 79, 79, (446,167,0): 95, 79, 79, (446,168,0): 99, 81, 81, (446,169,0): 99, 81, 81, (446,170,0): 99, 81, 81, (446,171,0): 99, 81, 81, (446,172,0): 100, 80, 81, (446,173,0): 101, 81, 82, (446,174,0): 101, 81, 82, (446,175,0): 101, 81, 80, (446,176,0): 101, 83, 81, (446,177,0): 100, 82, 78, (446,178,0): 100, 81, 77, (446,179,0): 100, 81, 77, (446,180,0): 101, 82, 78, (446,181,0): 102, 83, 79, (446,182,0): 105, 84, 81, (446,183,0): 106, 85, 82, (446,184,0): 104, 80, 78, (446,185,0): 106, 82, 80, (446,186,0): 109, 85, 83, (446,187,0): 112, 88, 86, (446,188,0): 115, 89, 88, (446,189,0): 116, 90, 89, (446,190,0): 117, 91, 90, (446,191,0): 117, 91, 90, (446,192,0): 121, 93, 90, (446,193,0): 118, 90, 87, (446,194,0): 116, 86, 84, (446,195,0): 115, 85, 83, (446,196,0): 116, 86, 84, (446,197,0): 116, 86, 84, (446,198,0): 114, 83, 81, (446,199,0): 111, 80, 78, (446,200,0): 107, 73, 72, (446,201,0): 107, 73, 72, (446,202,0): 107, 73, 72, (446,203,0): 107, 73, 72, (446,204,0): 107, 71, 71, (446,205,0): 107, 71, 71, (446,206,0): 107, 71, 71, (446,207,0): 107, 71, 71, (446,208,0): 112, 73, 78, (446,209,0): 105, 69, 73, (446,210,0): 104, 68, 70, (446,211,0): 107, 73, 74, (446,212,0): 107, 76, 74, (446,213,0): 105, 74, 72, (446,214,0): 107, 77, 75, (446,215,0): 113, 83, 81, (446,216,0): 112, 84, 83, (446,217,0): 113, 85, 84, (446,218,0): 120, 94, 97, (446,219,0): 138, 111, 116, (446,220,0): 155, 128, 135, (446,221,0): 170, 143, 152, (446,222,0): 190, 160, 172, (446,223,0): 203, 177, 190, (446,224,0): 200, 182, 198, (446,225,0): 195, 182, 200, (446,226,0): 194, 182, 202, (446,227,0): 191, 184, 202, (446,228,0): 189, 186, 207, (446,229,0): 187, 188, 209, (446,230,0): 185, 190, 212, (446,231,0): 183, 190, 216, (446,232,0): 183, 193, 220, (446,233,0): 180, 194, 223, (446,234,0): 180, 193, 225, (446,235,0): 180, 193, 227, (446,236,0): 179, 193, 228, (446,237,0): 179, 193, 230, (446,238,0): 179, 193, 232, (446,239,0): 178, 193, 234, (446,240,0): 172, 191, 234, (446,241,0): 169, 190, 235, (446,242,0): 167, 189, 238, (446,243,0): 164, 188, 236, (446,244,0): 161, 187, 238, (446,245,0): 159, 189, 241, (446,246,0): 158, 189, 243, (446,247,0): 156, 191, 247, (446,248,0): 152, 191, 248, (446,249,0): 150, 192, 250, (446,250,0): 148, 192, 253, (446,251,0): 145, 193, 255, (446,252,0): 145, 193, 255, (446,253,0): 144, 193, 255, (446,254,0): 144, 195, 255, (446,255,0): 142, 195, 255, (446,256,0): 143, 194, 255, (446,257,0): 143, 194, 255, (446,258,0): 142, 193, 255, (446,259,0): 142, 193, 255, (446,260,0): 141, 192, 255, (446,261,0): 141, 192, 255, (446,262,0): 138, 192, 255, (446,263,0): 138, 191, 255, (446,264,0): 132, 187, 252, (446,265,0): 132, 187, 252, (446,266,0): 130, 187, 254, (446,267,0): 130, 187, 254, (446,268,0): 130, 187, 254, (446,269,0): 130, 187, 255, (446,270,0): 130, 187, 255, (446,271,0): 129, 188, 255, (446,272,0): 133, 192, 255, (446,273,0): 132, 193, 255, (446,274,0): 132, 193, 255, (446,275,0): 132, 193, 255, (446,276,0): 132, 193, 255, (446,277,0): 132, 193, 255, (446,278,0): 132, 193, 255, (446,279,0): 132, 193, 255, (446,280,0): 132, 193, 255, (446,281,0): 131, 192, 255, (446,282,0): 131, 192, 255, (446,283,0): 129, 190, 255, (446,284,0): 128, 189, 255, (446,285,0): 127, 188, 255, (446,286,0): 126, 187, 254, (446,287,0): 126, 185, 255, (446,288,0): 130, 186, 255, (446,289,0): 131, 184, 255, (446,290,0): 131, 183, 255, (446,291,0): 129, 181, 255, (446,292,0): 129, 178, 255, (446,293,0): 126, 178, 254, (446,294,0): 124, 176, 252, (446,295,0): 124, 176, 252, (446,296,0): 127, 179, 255, (446,297,0): 124, 173, 250, (446,298,0): 127, 170, 249, (446,299,0): 131, 168, 249, (446,300,0): 138, 164, 249, (446,301,0): 144, 161, 249, (446,302,0): 126, 135, 226, (446,303,0): 93, 95, 170, (446,304,0): 56, 47, 90, (446,305,0): 46, 32, 57, (446,306,0): 40, 28, 50, (446,307,0): 40, 31, 50, (446,308,0): 34, 28, 42, (446,309,0): 33, 30, 41, (446,310,0): 33, 30, 39, (446,311,0): 24, 21, 28, (446,312,0): 28, 26, 31, (446,313,0): 30, 25, 32, (446,314,0): 31, 24, 32, (446,315,0): 31, 23, 34, (446,316,0): 32, 21, 35, (446,317,0): 32, 21, 37, (446,318,0): 33, 20, 38, (446,319,0): 31, 20, 37, (446,320,0): 30, 19, 36, (446,321,0): 28, 19, 36, (446,322,0): 28, 19, 36, (446,323,0): 27, 18, 35, (446,324,0): 27, 18, 35, (446,325,0): 26, 17, 34, (446,326,0): 26, 17, 34, (446,327,0): 26, 17, 34, (446,328,0): 24, 15, 32, (446,329,0): 24, 15, 32, (446,330,0): 24, 15, 32, (446,331,0): 24, 15, 32, (446,332,0): 24, 15, 32, (446,333,0): 24, 15, 32, (446,334,0): 24, 15, 32, (446,335,0): 24, 16, 31, (446,336,0): 24, 16, 27, (446,337,0): 24, 17, 25, (446,338,0): 24, 17, 25, (446,339,0): 24, 17, 25, (446,340,0): 24, 17, 25, (446,341,0): 24, 17, 25, (446,342,0): 24, 17, 25, (446,343,0): 24, 17, 25, (446,344,0): 26, 19, 27, (446,345,0): 24, 17, 25, (446,346,0): 21, 14, 22, (446,347,0): 19, 12, 20, (446,348,0): 19, 12, 20, (446,349,0): 21, 14, 22, (446,350,0): 24, 17, 25, (446,351,0): 26, 19, 27, (446,352,0): 26, 14, 28, (446,353,0): 27, 15, 29, (446,354,0): 27, 15, 29, (446,355,0): 27, 15, 29, (446,356,0): 25, 14, 28, (446,357,0): 23, 12, 26, (446,358,0): 21, 10, 24, (446,359,0): 20, 9, 23, (446,360,0): 19, 11, 24, (446,361,0): 19, 11, 24, (446,362,0): 18, 12, 24, (446,363,0): 17, 11, 23, (446,364,0): 17, 11, 23, (446,365,0): 17, 11, 23, (446,366,0): 15, 12, 23, (446,367,0): 17, 11, 23, (446,368,0): 23, 12, 26, (446,369,0): 24, 12, 26, (446,370,0): 25, 13, 27, (446,371,0): 25, 13, 27, (446,372,0): 26, 14, 28, (446,373,0): 27, 15, 29, (446,374,0): 27, 15, 29, (446,375,0): 28, 16, 30, (446,376,0): 27, 15, 29, (446,377,0): 27, 15, 29, (446,378,0): 27, 15, 29, (446,379,0): 28, 16, 30, (446,380,0): 29, 17, 31, (446,381,0): 30, 18, 32, (446,382,0): 30, 18, 32, (446,383,0): 29, 18, 32, (446,384,0): 28, 17, 34, (446,385,0): 26, 17, 34, (446,386,0): 26, 17, 34, (446,387,0): 26, 17, 34, (446,388,0): 26, 17, 34, (446,389,0): 26, 17, 34, (446,390,0): 26, 17, 34, (446,391,0): 26, 17, 34, (446,392,0): 26, 17, 34, (446,393,0): 26, 17, 34, (446,394,0): 27, 18, 35, (446,395,0): 27, 18, 35, (446,396,0): 28, 19, 36, (446,397,0): 29, 20, 37, (446,398,0): 29, 20, 37, (446,399,0): 30, 21, 38, (446,400,0): 31, 24, 40, (446,401,0): 31, 24, 40, (446,402,0): 30, 23, 39, (446,403,0): 30, 23, 39, (446,404,0): 30, 23, 39, (446,405,0): 31, 24, 40, (446,406,0): 32, 25, 41, (446,407,0): 33, 26, 42, (446,408,0): 37, 30, 46, (446,409,0): 37, 30, 46, (446,410,0): 36, 29, 45, (446,411,0): 37, 30, 46, (446,412,0): 40, 33, 49, (446,413,0): 44, 37, 53, (446,414,0): 47, 40, 56, (446,415,0): 50, 44, 58, (446,416,0): 49, 41, 56, (446,417,0): 49, 41, 54, (446,418,0): 51, 40, 54, (446,419,0): 50, 39, 53, (446,420,0): 50, 39, 53, (446,421,0): 49, 38, 52, (446,422,0): 50, 38, 52, (446,423,0): 50, 38, 52, (446,424,0): 53, 39, 54, (446,425,0): 55, 41, 56, (446,426,0): 57, 43, 58, (446,427,0): 61, 47, 62, (446,428,0): 67, 50, 66, (446,429,0): 70, 53, 69, (446,430,0): 73, 56, 72, (446,431,0): 75, 59, 72, (446,432,0): 72, 59, 68, (446,433,0): 72, 59, 68, (446,434,0): 76, 60, 70, (446,435,0): 77, 61, 71, (446,436,0): 79, 63, 73, (446,437,0): 80, 64, 74, (446,438,0): 83, 66, 76, (446,439,0): 83, 65, 77, (446,440,0): 87, 67, 79, (446,441,0): 88, 68, 80, (446,442,0): 89, 68, 83, (446,443,0): 89, 68, 83, (446,444,0): 88, 65, 81, (446,445,0): 85, 62, 78, (446,446,0): 82, 59, 75, (446,447,0): 79, 57, 69, (446,448,0): 71, 51, 53, (446,449,0): 71, 51, 52, (446,450,0): 71, 51, 52, (446,451,0): 72, 52, 53, (446,452,0): 74, 55, 57, (446,453,0): 78, 59, 61, (446,454,0): 81, 62, 66, (446,455,0): 83, 64, 68, (446,456,0): 84, 67, 73, (446,457,0): 84, 67, 75, (446,458,0): 85, 68, 78, (446,459,0): 84, 67, 77, (446,460,0): 82, 66, 77, (446,461,0): 79, 63, 74, (446,462,0): 77, 61, 72, (446,463,0): 75, 59, 70, (446,464,0): 69, 56, 65, (446,465,0): 74, 57, 65, (446,466,0): 76, 53, 63, (446,467,0): 75, 50, 56, (446,468,0): 76, 54, 57, (446,469,0): 81, 61, 62, (446,470,0): 76, 60, 60, (446,471,0): 70, 54, 54, (446,472,0): 75, 55, 57, (446,473,0): 78, 55, 63, (446,474,0): 81, 55, 68, (446,475,0): 75, 58, 74, (446,476,0): 67, 70, 85, (446,477,0): 64, 94, 104, (446,478,0): 68, 126, 130, (446,479,0): 76, 146, 156, (446,480,0): 118, 182, 209, (446,481,0): 128, 181, 221, (446,482,0): 137, 175, 224, (446,483,0): 133, 158, 212, (446,484,0): 118, 135, 189, (446,485,0): 105, 113, 160, (446,486,0): 100, 100, 136, (446,487,0): 104, 96, 119, (446,488,0): 102, 82, 93, (446,489,0): 109, 83, 84, (446,490,0): 108, 83, 76, (446,491,0): 104, 80, 68, (446,492,0): 103, 81, 68, (446,493,0): 107, 83, 71, (446,494,0): 113, 83, 73, (446,495,0): 124, 77, 69, (446,496,0): 151, 78, 71, (446,497,0): 161, 84, 74, (446,498,0): 151, 89, 76, (446,499,0): 131, 84, 68, (446,500,0): 117, 80, 64, (446,501,0): 111, 82, 68, (446,502,0): 113, 83, 73, (446,503,0): 113, 82, 79, (446,504,0): 121, 85, 87, (446,505,0): 130, 89, 97, (446,506,0): 133, 87, 98, (446,507,0): 140, 87, 105, (446,508,0): 150, 88, 113, (446,509,0): 150, 77, 107, (446,510,0): 156, 72, 106, (446,511,0): 183, 79, 114, (446,512,0): 230, 92, 126, (446,513,0): 250, 96, 132, (446,514,0): 250, 94, 134, (446,515,0): 246, 89, 134, (446,516,0): 229, 73, 120, (446,517,0): 208, 57, 100, (446,518,0): 198, 57, 92, (446,519,0): 189, 54, 84, (446,520,0): 183, 48, 78, (446,521,0): 185, 48, 78, (446,522,0): 196, 52, 87, (446,523,0): 212, 60, 98, (446,524,0): 224, 62, 99, (446,525,0): 227, 59, 94, (446,526,0): 227, 57, 84, (446,527,0): 225, 58, 84, (446,528,0): 205, 48, 75, (446,529,0): 190, 40, 69, (446,530,0): 203, 48, 80, (446,531,0): 220, 60, 94, (446,532,0): 224, 55, 94, (446,533,0): 226, 51, 90, (446,534,0): 238, 58, 97, (446,535,0): 241, 63, 99, (446,536,0): 232, 65, 93, (446,537,0): 213, 61, 84, (446,538,0): 199, 66, 85, (446,539,0): 185, 66, 85, (446,540,0): 166, 59, 79, (446,541,0): 160, 61, 82, (446,542,0): 164, 64, 92, (446,543,0): 160, 57, 84, (446,544,0): 173, 61, 83, (446,545,0): 180, 54, 76, (446,546,0): 195, 46, 75, (446,547,0): 207, 50, 81, (446,548,0): 209, 59, 86, (446,549,0): 207, 63, 88, (446,550,0): 193, 60, 81, (446,551,0): 187, 51, 73, (446,552,0): 212, 65, 91, (446,553,0): 190, 46, 71, (446,554,0): 171, 41, 65, (446,555,0): 157, 46, 65, (446,556,0): 134, 48, 61, (446,557,0): 125, 52, 63, (446,558,0): 129, 55, 68, (446,559,0): 123, 50, 67, (446,560,0): 110, 42, 63, (446,561,0): 108, 46, 71, (446,562,0): 106, 47, 75, (446,563,0): 103, 47, 76, (446,564,0): 97, 44, 72, (446,565,0): 90, 42, 66, (446,566,0): 88, 40, 62, (446,567,0): 87, 39, 61, (446,568,0): 87, 37, 62, (446,569,0): 84, 34, 61, (446,570,0): 82, 31, 62, (446,571,0): 80, 31, 60, (446,572,0): 78, 35, 55, (446,573,0): 77, 37, 48, (446,574,0): 71, 37, 36, (446,575,0): 67, 36, 34, (446,576,0): 72, 36, 46, (446,577,0): 74, 35, 53, (446,578,0): 74, 36, 51, (446,579,0): 75, 37, 52, (446,580,0): 77, 39, 52, (446,581,0): 78, 40, 53, (446,582,0): 77, 41, 51, (446,583,0): 78, 42, 52, (446,584,0): 72, 39, 46, (446,585,0): 71, 38, 45, (446,586,0): 70, 39, 44, (446,587,0): 69, 39, 41, (446,588,0): 69, 39, 41, (446,589,0): 68, 38, 40, (446,590,0): 68, 38, 38, (446,591,0): 67, 38, 40, (446,592,0): 66, 40, 43, (446,593,0): 64, 37, 42, (446,594,0): 61, 34, 39, (446,595,0): 61, 34, 39, (446,596,0): 62, 35, 40, (446,597,0): 62, 35, 40, (446,598,0): 60, 33, 38, (446,599,0): 57, 30, 35, (447,0,0): 67, 73, 61, (447,1,0): 67, 73, 61, (447,2,0): 66, 72, 60, (447,3,0): 66, 72, 60, (447,4,0): 65, 71, 59, (447,5,0): 65, 71, 59, (447,6,0): 64, 70, 58, (447,7,0): 64, 70, 58, (447,8,0): 68, 74, 62, (447,9,0): 68, 74, 62, (447,10,0): 69, 75, 63, (447,11,0): 69, 75, 63, (447,12,0): 70, 76, 64, (447,13,0): 70, 76, 64, (447,14,0): 71, 77, 65, (447,15,0): 71, 77, 65, (447,16,0): 73, 79, 69, (447,17,0): 73, 79, 69, (447,18,0): 73, 79, 69, (447,19,0): 74, 80, 70, (447,20,0): 74, 80, 70, (447,21,0): 75, 81, 71, (447,22,0): 75, 81, 71, (447,23,0): 75, 81, 71, (447,24,0): 74, 80, 70, (447,25,0): 74, 80, 70, (447,26,0): 74, 80, 70, (447,27,0): 74, 80, 70, (447,28,0): 74, 80, 70, (447,29,0): 74, 80, 70, (447,30,0): 74, 80, 70, (447,31,0): 74, 80, 70, (447,32,0): 81, 82, 74, (447,33,0): 82, 82, 72, (447,34,0): 82, 82, 74, (447,35,0): 83, 80, 71, (447,36,0): 83, 80, 71, (447,37,0): 82, 79, 70, (447,38,0): 82, 79, 70, (447,39,0): 83, 79, 68, (447,40,0): 83, 79, 68, (447,41,0): 85, 79, 67, (447,42,0): 84, 78, 66, (447,43,0): 82, 76, 62, (447,44,0): 81, 75, 63, (447,45,0): 81, 73, 60, (447,46,0): 80, 72, 59, (447,47,0): 79, 71, 60, (447,48,0): 81, 73, 62, (447,49,0): 82, 74, 63, (447,50,0): 83, 73, 64, (447,51,0): 82, 74, 63, (447,52,0): 84, 74, 65, (447,53,0): 84, 76, 65, (447,54,0): 85, 75, 66, (447,55,0): 84, 76, 65, (447,56,0): 83, 73, 64, (447,57,0): 83, 75, 64, (447,58,0): 85, 75, 66, (447,59,0): 85, 77, 66, (447,60,0): 88, 78, 69, (447,61,0): 88, 80, 69, (447,62,0): 90, 80, 71, (447,63,0): 90, 80, 70, (447,64,0): 90, 80, 68, (447,65,0): 90, 80, 68, (447,66,0): 91, 79, 67, (447,67,0): 90, 78, 66, (447,68,0): 88, 76, 64, (447,69,0): 87, 75, 63, (447,70,0): 86, 74, 62, (447,71,0): 86, 72, 61, (447,72,0): 89, 75, 64, (447,73,0): 88, 74, 63, (447,74,0): 88, 74, 63, (447,75,0): 87, 73, 62, (447,76,0): 88, 71, 61, (447,77,0): 87, 70, 60, (447,78,0): 87, 70, 60, (447,79,0): 87, 70, 60, (447,80,0): 83, 69, 58, (447,81,0): 83, 69, 56, (447,82,0): 83, 69, 58, (447,83,0): 83, 69, 56, (447,84,0): 83, 69, 58, (447,85,0): 83, 69, 56, (447,86,0): 83, 69, 58, (447,87,0): 84, 70, 57, (447,88,0): 80, 66, 55, (447,89,0): 82, 66, 53, (447,90,0): 81, 64, 54, (447,91,0): 80, 64, 51, (447,92,0): 79, 62, 52, (447,93,0): 78, 62, 49, (447,94,0): 77, 60, 50, (447,95,0): 77, 61, 48, (447,96,0): 75, 57, 43, (447,97,0): 75, 57, 43, (447,98,0): 76, 58, 44, (447,99,0): 76, 58, 44, (447,100,0): 74, 56, 42, (447,101,0): 71, 53, 39, (447,102,0): 68, 50, 36, (447,103,0): 67, 49, 35, (447,104,0): 65, 47, 33, (447,105,0): 64, 46, 32, (447,106,0): 63, 45, 31, (447,107,0): 62, 44, 30, (447,108,0): 61, 43, 29, (447,109,0): 62, 44, 30, (447,110,0): 63, 45, 31, (447,111,0): 63, 45, 31, (447,112,0): 65, 45, 36, (447,113,0): 67, 47, 38, (447,114,0): 70, 50, 41, (447,115,0): 73, 53, 44, (447,116,0): 73, 53, 44, (447,117,0): 71, 51, 42, (447,118,0): 69, 49, 40, (447,119,0): 67, 47, 38, (447,120,0): 69, 49, 40, (447,121,0): 69, 49, 40, (447,122,0): 68, 48, 39, (447,123,0): 68, 48, 39, (447,124,0): 68, 48, 39, (447,125,0): 68, 48, 39, (447,126,0): 67, 47, 38, (447,127,0): 67, 47, 38, (447,128,0): 70, 51, 45, (447,129,0): 71, 52, 46, (447,130,0): 72, 53, 47, (447,131,0): 73, 54, 48, (447,132,0): 74, 55, 49, (447,133,0): 75, 56, 50, (447,134,0): 75, 56, 50, (447,135,0): 76, 57, 51, (447,136,0): 78, 59, 53, (447,137,0): 78, 59, 53, (447,138,0): 79, 60, 54, (447,139,0): 80, 61, 55, (447,140,0): 81, 62, 56, (447,141,0): 82, 63, 57, (447,142,0): 83, 64, 58, (447,143,0): 84, 64, 57, (447,144,0): 87, 64, 56, (447,145,0): 89, 64, 57, (447,146,0): 90, 67, 59, (447,147,0): 91, 68, 60, (447,148,0): 91, 68, 62, (447,149,0): 90, 67, 61, (447,150,0): 88, 65, 59, (447,151,0): 85, 65, 58, (447,152,0): 85, 64, 59, (447,153,0): 85, 64, 59, (447,154,0): 85, 64, 59, (447,155,0): 86, 65, 60, (447,156,0): 85, 66, 62, (447,157,0): 86, 67, 63, (447,158,0): 86, 67, 63, (447,159,0): 85, 67, 63, (447,160,0): 87, 72, 69, (447,161,0): 87, 73, 70, (447,162,0): 91, 75, 75, (447,163,0): 93, 78, 75, (447,164,0): 95, 79, 79, (447,165,0): 95, 80, 77, (447,166,0): 95, 79, 79, (447,167,0): 97, 79, 77, (447,168,0): 100, 82, 82, (447,169,0): 100, 82, 80, (447,170,0): 99, 81, 81, (447,171,0): 99, 81, 79, (447,172,0): 100, 80, 81, (447,173,0): 100, 80, 79, (447,174,0): 100, 80, 81, (447,175,0): 99, 79, 78, (447,176,0): 101, 83, 81, (447,177,0): 100, 82, 78, (447,178,0): 99, 81, 77, (447,179,0): 99, 81, 77, (447,180,0): 101, 81, 80, (447,181,0): 102, 82, 81, (447,182,0): 103, 83, 82, (447,183,0): 104, 84, 83, (447,184,0): 101, 80, 79, (447,185,0): 103, 82, 81, (447,186,0): 106, 85, 84, (447,187,0): 109, 88, 87, (447,188,0): 113, 89, 89, (447,189,0): 115, 91, 91, (447,190,0): 116, 92, 92, (447,191,0): 116, 92, 92, (447,192,0): 119, 93, 92, (447,193,0): 116, 90, 89, (447,194,0): 115, 87, 86, (447,195,0): 114, 86, 83, (447,196,0): 116, 88, 87, (447,197,0): 116, 86, 84, (447,198,0): 113, 83, 81, (447,199,0): 110, 79, 77, (447,200,0): 104, 73, 71, (447,201,0): 106, 72, 71, (447,202,0): 106, 72, 71, (447,203,0): 106, 72, 71, (447,204,0): 107, 71, 71, (447,205,0): 106, 70, 70, (447,206,0): 106, 70, 70, (447,207,0): 106, 70, 70, (447,208,0): 112, 73, 76, (447,209,0): 107, 68, 71, (447,210,0): 104, 68, 70, (447,211,0): 109, 73, 73, (447,212,0): 110, 76, 75, (447,213,0): 106, 75, 73, (447,214,0): 109, 78, 76, (447,215,0): 114, 83, 81, (447,216,0): 120, 90, 90, (447,217,0): 117, 87, 87, (447,218,0): 120, 91, 93, (447,219,0): 131, 102, 106, (447,220,0): 143, 112, 118, (447,221,0): 155, 124, 132, (447,222,0): 174, 142, 153, (447,223,0): 189, 161, 173, (447,224,0): 196, 175, 192, (447,225,0): 195, 178, 196, (447,226,0): 196, 181, 200, (447,227,0): 196, 184, 204, (447,228,0): 194, 186, 207, (447,229,0): 191, 188, 209, (447,230,0): 187, 187, 211, (447,231,0): 183, 187, 212, (447,232,0): 185, 191, 217, (447,233,0): 184, 191, 219, (447,234,0): 182, 191, 222, (447,235,0): 181, 192, 224, (447,236,0): 179, 192, 226, (447,237,0): 179, 192, 227, (447,238,0): 178, 192, 227, (447,239,0): 177, 192, 231, (447,240,0): 172, 191, 233, (447,241,0): 168, 191, 235, (447,242,0): 165, 189, 235, (447,243,0): 162, 189, 236, (447,244,0): 160, 188, 236, (447,245,0): 157, 189, 240, (447,246,0): 156, 189, 242, (447,247,0): 154, 191, 246, (447,248,0): 152, 191, 250, (447,249,0): 150, 192, 252, (447,250,0): 148, 192, 253, (447,251,0): 147, 193, 255, (447,252,0): 146, 194, 255, (447,253,0): 146, 194, 255, (447,254,0): 145, 194, 255, (447,255,0): 144, 195, 255, (447,256,0): 144, 195, 255, (447,257,0): 144, 195, 255, (447,258,0): 144, 195, 255, (447,259,0): 143, 194, 255, (447,260,0): 143, 194, 255, (447,261,0): 140, 194, 255, (447,262,0): 140, 194, 255, (447,263,0): 139, 194, 255, (447,264,0): 133, 188, 253, (447,265,0): 131, 189, 253, (447,266,0): 131, 188, 255, (447,267,0): 131, 188, 255, (447,268,0): 131, 188, 255, (447,269,0): 130, 189, 255, (447,270,0): 131, 188, 255, (447,271,0): 130, 189, 255, (447,272,0): 134, 193, 255, (447,273,0): 133, 194, 255, (447,274,0): 133, 194, 255, (447,275,0): 133, 194, 255, (447,276,0): 133, 194, 255, (447,277,0): 133, 194, 255, (447,278,0): 133, 194, 255, (447,279,0): 133, 194, 255, (447,280,0): 132, 193, 255, (447,281,0): 132, 193, 255, (447,282,0): 131, 192, 255, (447,283,0): 130, 191, 255, (447,284,0): 128, 189, 255, (447,285,0): 127, 188, 255, (447,286,0): 126, 187, 254, (447,287,0): 126, 185, 255, (447,288,0): 130, 186, 255, (447,289,0): 129, 185, 255, (447,290,0): 130, 184, 255, (447,291,0): 129, 181, 255, (447,292,0): 127, 179, 254, (447,293,0): 125, 177, 252, (447,294,0): 124, 176, 251, (447,295,0): 122, 176, 250, (447,296,0): 124, 177, 253, (447,297,0): 119, 172, 250, (447,298,0): 122, 171, 250, (447,299,0): 127, 168, 250, (447,300,0): 136, 164, 248, (447,301,0): 143, 159, 246, (447,302,0): 122, 128, 214, (447,303,0): 87, 84, 155, (447,304,0): 49, 41, 80, (447,305,0): 43, 34, 55, (447,306,0): 42, 33, 52, (447,307,0): 39, 32, 48, (447,308,0): 31, 27, 42, (447,309,0): 33, 29, 43, (447,310,0): 34, 31, 42, (447,311,0): 22, 19, 28, (447,312,0): 30, 25, 32, (447,313,0): 30, 25, 32, (447,314,0): 30, 22, 33, (447,315,0): 32, 21, 35, (447,316,0): 32, 21, 37, (447,317,0): 33, 20, 38, (447,318,0): 33, 20, 38, (447,319,0): 33, 20, 38, (447,320,0): 30, 19, 36, (447,321,0): 28, 20, 35, (447,322,0): 30, 19, 36, (447,323,0): 27, 19, 34, (447,324,0): 29, 18, 35, (447,325,0): 26, 18, 33, (447,326,0): 28, 17, 34, (447,327,0): 26, 18, 33, (447,328,0): 26, 15, 32, (447,329,0): 24, 16, 31, (447,330,0): 26, 15, 32, (447,331,0): 24, 16, 31, (447,332,0): 26, 15, 32, (447,333,0): 24, 16, 31, (447,334,0): 26, 15, 32, (447,335,0): 24, 16, 31, (447,336,0): 26, 16, 27, (447,337,0): 24, 17, 25, (447,338,0): 26, 16, 25, (447,339,0): 24, 17, 25, (447,340,0): 26, 16, 25, (447,341,0): 24, 17, 25, (447,342,0): 26, 16, 25, (447,343,0): 24, 17, 25, (447,344,0): 28, 18, 27, (447,345,0): 24, 17, 25, (447,346,0): 23, 13, 22, (447,347,0): 19, 12, 20, (447,348,0): 21, 11, 20, (447,349,0): 21, 14, 22, (447,350,0): 26, 16, 25, (447,351,0): 28, 18, 27, (447,352,0): 26, 14, 28, (447,353,0): 27, 15, 29, (447,354,0): 28, 16, 30, (447,355,0): 28, 16, 30, (447,356,0): 26, 15, 29, (447,357,0): 24, 13, 27, (447,358,0): 21, 10, 24, (447,359,0): 20, 9, 23, (447,360,0): 19, 11, 24, (447,361,0): 19, 11, 24, (447,362,0): 18, 12, 24, (447,363,0): 17, 11, 23, (447,364,0): 17, 11, 23, (447,365,0): 17, 11, 23, (447,366,0): 14, 11, 22, (447,367,0): 16, 10, 22, (447,368,0): 20, 12, 25, (447,369,0): 23, 12, 26, (447,370,0): 23, 12, 26, (447,371,0): 24, 13, 27, (447,372,0): 25, 14, 28, (447,373,0): 26, 15, 29, (447,374,0): 26, 15, 29, (447,375,0): 28, 16, 30, (447,376,0): 26, 14, 28, (447,377,0): 27, 15, 29, (447,378,0): 27, 15, 29, (447,379,0): 28, 16, 30, (447,380,0): 29, 17, 31, (447,381,0): 30, 18, 30, (447,382,0): 30, 18, 32, (447,383,0): 31, 19, 33, (447,384,0): 28, 17, 33, (447,385,0): 28, 17, 33, (447,386,0): 28, 17, 33, (447,387,0): 28, 17, 33, (447,388,0): 28, 17, 33, (447,389,0): 28, 17, 33, (447,390,0): 28, 17, 33, (447,391,0): 28, 17, 33, (447,392,0): 28, 17, 33, (447,393,0): 28, 17, 33, (447,394,0): 29, 18, 34, (447,395,0): 30, 19, 35, (447,396,0): 31, 20, 36, (447,397,0): 32, 21, 37, (447,398,0): 32, 21, 37, (447,399,0): 32, 21, 37, (447,400,0): 33, 25, 40, (447,401,0): 32, 26, 40, (447,402,0): 32, 23, 40, (447,403,0): 30, 24, 38, (447,404,0): 31, 22, 39, (447,405,0): 31, 25, 39, (447,406,0): 34, 25, 42, (447,407,0): 34, 28, 42, (447,408,0): 37, 28, 45, (447,409,0): 35, 29, 43, (447,410,0): 36, 27, 44, (447,411,0): 37, 31, 45, (447,412,0): 41, 32, 49, (447,413,0): 44, 38, 52, (447,414,0): 49, 40, 57, (447,415,0): 52, 44, 59, (447,416,0): 51, 40, 54, (447,417,0): 51, 40, 54, (447,418,0): 52, 40, 54, (447,419,0): 51, 39, 53, (447,420,0): 51, 39, 53, (447,421,0): 50, 38, 52, (447,422,0): 51, 37, 52, (447,423,0): 50, 36, 51, (447,424,0): 56, 42, 57, (447,425,0): 57, 43, 58, (447,426,0): 62, 45, 61, (447,427,0): 66, 49, 65, (447,428,0): 70, 53, 69, (447,429,0): 73, 56, 72, (447,430,0): 76, 59, 75, (447,431,0): 78, 62, 75, (447,432,0): 74, 58, 69, (447,433,0): 75, 59, 69, (447,434,0): 77, 60, 70, (447,435,0): 78, 61, 71, (447,436,0): 80, 62, 74, (447,437,0): 82, 65, 75, (447,438,0): 85, 65, 77, (447,439,0): 85, 65, 77, (447,440,0): 85, 65, 77, (447,441,0): 87, 67, 79, (447,442,0): 89, 66, 82, (447,443,0): 90, 67, 83, (447,444,0): 88, 65, 81, (447,445,0): 86, 63, 79, (447,446,0): 83, 60, 76, (447,447,0): 81, 59, 71, (447,448,0): 73, 52, 59, (447,449,0): 73, 53, 55, (447,450,0): 74, 52, 55, (447,451,0): 74, 53, 58, (447,452,0): 76, 55, 60, (447,453,0): 78, 57, 62, (447,454,0): 81, 60, 67, (447,455,0): 82, 61, 68, (447,456,0): 82, 63, 69, (447,457,0): 83, 63, 72, (447,458,0): 84, 64, 73, (447,459,0): 84, 64, 75, (447,460,0): 81, 64, 74, (447,461,0): 78, 61, 71, (447,462,0): 76, 59, 69, (447,463,0): 74, 57, 67, (447,464,0): 67, 52, 59, (447,465,0): 69, 54, 61, (447,466,0): 70, 51, 57, (447,467,0): 67, 46, 51, (447,468,0): 70, 50, 52, (447,469,0): 77, 59, 59, (447,470,0): 73, 59, 58, (447,471,0): 65, 51, 51, (447,472,0): 68, 49, 51, (447,473,0): 71, 50, 57, (447,474,0): 74, 50, 63, (447,475,0): 71, 53, 67, (447,476,0): 63, 61, 75, (447,477,0): 58, 75, 85, (447,478,0): 56, 93, 101, (447,479,0): 57, 105, 119, (447,480,0): 73, 117, 146, (447,481,0): 82, 117, 159, (447,482,0): 96, 116, 166, (447,483,0): 104, 114, 167, (447,484,0): 103, 105, 156, (447,485,0): 98, 92, 136, (447,486,0): 93, 82, 114, (447,487,0): 95, 76, 96, (447,488,0): 106, 76, 86, (447,489,0): 116, 84, 85, (447,490,0): 117, 86, 81, (447,491,0): 110, 80, 72, (447,492,0): 108, 80, 69, (447,493,0): 114, 86, 75, (447,494,0): 120, 83, 75, (447,495,0): 120, 71, 64, (447,496,0): 144, 74, 66, (447,497,0): 154, 80, 69, (447,498,0): 143, 85, 71, (447,499,0): 128, 82, 66, (447,500,0): 115, 82, 67, (447,501,0): 113, 85, 73, (447,502,0): 112, 82, 74, (447,503,0): 109, 75, 73, (447,504,0): 115, 76, 79, (447,505,0): 119, 78, 86, (447,506,0): 122, 76, 87, (447,507,0): 132, 81, 96, (447,508,0): 144, 85, 107, (447,509,0): 140, 72, 97, (447,510,0): 135, 59, 87, (447,511,0): 155, 60, 92, (447,512,0): 207, 82, 116, (447,513,0): 230, 87, 130, (447,514,0): 236, 92, 145, (447,515,0): 244, 98, 161, (447,516,0): 240, 90, 164, (447,517,0): 221, 71, 145, (447,518,0): 208, 59, 123, (447,519,0): 192, 45, 97, (447,520,0): 195, 47, 83, (447,521,0): 212, 58, 86, (447,522,0): 235, 68, 96, (447,523,0): 245, 68, 97, (447,524,0): 244, 56, 89, (447,525,0): 238, 47, 80, (447,526,0): 242, 49, 80, (447,527,0): 245, 58, 87, (447,528,0): 242, 67, 96, (447,529,0): 212, 45, 75, (447,530,0): 206, 42, 76, (447,531,0): 221, 57, 94, (447,532,0): 226, 56, 95, (447,533,0): 228, 53, 94, (447,534,0): 240, 60, 97, (447,535,0): 247, 68, 100, (447,536,0): 249, 72, 100, (447,537,0): 232, 66, 90, (447,538,0): 222, 70, 91, (447,539,0): 209, 72, 92, (447,540,0): 188, 62, 86, (447,541,0): 182, 62, 90, (447,542,0): 182, 64, 98, (447,543,0): 175, 56, 88, (447,544,0): 194, 67, 94, (447,545,0): 204, 66, 92, (447,546,0): 218, 63, 94, (447,547,0): 221, 62, 92, (447,548,0): 211, 61, 88, (447,549,0): 198, 59, 82, (447,550,0): 183, 58, 76, (447,551,0): 175, 57, 73, (447,552,0): 192, 69, 87, (447,553,0): 170, 49, 68, (447,554,0): 162, 51, 70, (447,555,0): 161, 64, 81, (447,556,0): 138, 60, 74, (447,557,0): 118, 50, 63, (447,558,0): 111, 43, 58, (447,559,0): 101, 34, 51, (447,560,0): 106, 45, 63, (447,561,0): 105, 46, 66, (447,562,0): 106, 47, 65, (447,563,0): 105, 48, 63, (447,564,0): 105, 49, 60, (447,565,0): 103, 47, 58, (447,566,0): 101, 45, 54, (447,567,0): 98, 45, 55, (447,568,0): 99, 45, 61, (447,569,0): 95, 42, 62, (447,570,0): 90, 38, 61, (447,571,0): 86, 39, 59, (447,572,0): 83, 41, 55, (447,573,0): 78, 42, 46, (447,574,0): 72, 41, 36, (447,575,0): 69, 38, 35, (447,576,0): 75, 40, 47, (447,577,0): 75, 39, 53, (447,578,0): 75, 39, 51, (447,579,0): 74, 38, 50, (447,580,0): 72, 39, 50, (447,581,0): 72, 39, 48, (447,582,0): 71, 40, 48, (447,583,0): 70, 39, 47, (447,584,0): 70, 41, 46, (447,585,0): 70, 41, 46, (447,586,0): 69, 40, 44, (447,587,0): 69, 40, 42, (447,588,0): 68, 39, 43, (447,589,0): 68, 39, 41, (447,590,0): 67, 38, 40, (447,591,0): 67, 38, 40, (447,592,0): 66, 40, 43, (447,593,0): 63, 38, 42, (447,594,0): 61, 34, 39, (447,595,0): 60, 35, 39, (447,596,0): 63, 36, 41, (447,597,0): 61, 36, 40, (447,598,0): 60, 33, 38, (447,599,0): 56, 31, 35, (448,0,0): 68, 74, 62, (448,1,0): 67, 73, 61, (448,2,0): 65, 71, 59, (448,3,0): 64, 70, 58, (448,4,0): 63, 69, 57, (448,5,0): 64, 70, 58, (448,6,0): 64, 70, 58, (448,7,0): 65, 71, 59, (448,8,0): 65, 71, 59, (448,9,0): 65, 71, 59, (448,10,0): 66, 72, 60, (448,11,0): 67, 73, 61, (448,12,0): 69, 75, 63, (448,13,0): 70, 76, 64, (448,14,0): 71, 77, 65, (448,15,0): 71, 77, 67, (448,16,0): 71, 78, 70, (448,17,0): 72, 79, 71, (448,18,0): 72, 79, 71, (448,19,0): 73, 80, 72, (448,20,0): 73, 80, 72, (448,21,0): 74, 81, 73, (448,22,0): 74, 81, 73, (448,23,0): 74, 81, 73, (448,24,0): 74, 81, 73, (448,25,0): 74, 81, 73, (448,26,0): 74, 81, 73, (448,27,0): 74, 81, 73, (448,28,0): 74, 81, 73, (448,29,0): 74, 81, 73, (448,30,0): 74, 81, 73, (448,31,0): 75, 80, 73, (448,32,0): 77, 78, 72, (448,33,0): 77, 78, 70, (448,34,0): 78, 79, 73, (448,35,0): 79, 79, 71, (448,36,0): 80, 80, 72, (448,37,0): 80, 80, 72, (448,38,0): 81, 81, 73, (448,39,0): 83, 80, 71, (448,40,0): 79, 76, 67, (448,41,0): 79, 75, 64, (448,42,0): 79, 75, 64, (448,43,0): 78, 74, 62, (448,44,0): 78, 74, 63, (448,45,0): 79, 73, 61, (448,46,0): 79, 73, 61, (448,47,0): 80, 72, 61, (448,48,0): 81, 71, 61, (448,49,0): 82, 72, 60, (448,50,0): 84, 71, 62, (448,51,0): 83, 73, 61, (448,52,0): 86, 73, 64, (448,53,0): 85, 75, 63, (448,54,0): 87, 74, 65, (448,55,0): 86, 76, 64, (448,56,0): 86, 73, 64, (448,57,0): 84, 74, 62, (448,58,0): 87, 74, 65, (448,59,0): 86, 76, 64, (448,60,0): 89, 76, 67, (448,61,0): 87, 77, 65, (448,62,0): 90, 77, 68, (448,63,0): 88, 78, 66, (448,64,0): 85, 75, 63, (448,65,0): 85, 75, 63, (448,66,0): 85, 75, 63, (448,67,0): 85, 75, 63, (448,68,0): 85, 75, 63, (448,69,0): 85, 75, 63, (448,70,0): 85, 75, 63, (448,71,0): 87, 75, 63, (448,72,0): 87, 75, 63, (448,73,0): 86, 74, 62, (448,74,0): 85, 73, 61, (448,75,0): 84, 72, 60, (448,76,0): 83, 71, 59, (448,77,0): 82, 70, 58, (448,78,0): 82, 70, 58, (448,79,0): 81, 69, 57, (448,80,0): 86, 74, 60, (448,81,0): 86, 74, 58, (448,82,0): 86, 74, 60, (448,83,0): 85, 73, 57, (448,84,0): 84, 70, 57, (448,85,0): 81, 68, 52, (448,86,0): 81, 65, 52, (448,87,0): 79, 63, 48, (448,88,0): 84, 68, 55, (448,89,0): 84, 66, 52, (448,90,0): 83, 63, 52, (448,91,0): 81, 62, 48, (448,92,0): 81, 59, 48, (448,93,0): 79, 57, 44, (448,94,0): 77, 55, 44, (448,95,0): 74, 55, 41, (448,96,0): 68, 50, 36, (448,97,0): 68, 50, 36, (448,98,0): 68, 50, 36, (448,99,0): 68, 50, 36, (448,100,0): 68, 50, 36, (448,101,0): 69, 51, 37, (448,102,0): 69, 51, 37, (448,103,0): 69, 51, 37, (448,104,0): 64, 46, 32, (448,105,0): 64, 46, 32, (448,106,0): 63, 45, 31, (448,107,0): 63, 45, 31, (448,108,0): 62, 44, 30, (448,109,0): 62, 44, 30, (448,110,0): 61, 43, 29, (448,111,0): 61, 43, 29, (448,112,0): 61, 43, 33, (448,113,0): 62, 44, 34, (448,114,0): 64, 46, 36, (448,115,0): 66, 48, 38, (448,116,0): 67, 49, 39, (448,117,0): 68, 50, 40, (448,118,0): 68, 50, 40, (448,119,0): 68, 50, 40, (448,120,0): 68, 50, 40, (448,121,0): 67, 49, 39, (448,122,0): 67, 49, 39, (448,123,0): 66, 48, 38, (448,124,0): 65, 47, 37, (448,125,0): 64, 46, 36, (448,126,0): 64, 46, 36, (448,127,0): 63, 45, 35, (448,128,0): 66, 47, 41, (448,129,0): 67, 48, 42, (448,130,0): 68, 49, 43, (448,131,0): 70, 51, 45, (448,132,0): 73, 54, 48, (448,133,0): 75, 56, 50, (448,134,0): 76, 57, 51, (448,135,0): 77, 58, 52, (448,136,0): 79, 60, 54, (448,137,0): 79, 60, 54, (448,138,0): 80, 61, 55, (448,139,0): 80, 61, 55, (448,140,0): 81, 62, 56, (448,141,0): 81, 62, 56, (448,142,0): 82, 63, 57, (448,143,0): 82, 63, 57, (448,144,0): 86, 66, 59, (448,145,0): 86, 66, 59, (448,146,0): 86, 66, 59, (448,147,0): 86, 66, 59, (448,148,0): 86, 65, 60, (448,149,0): 86, 65, 60, (448,150,0): 86, 65, 60, (448,151,0): 85, 66, 60, (448,152,0): 85, 66, 60, (448,153,0): 85, 66, 60, (448,154,0): 86, 67, 61, (448,155,0): 86, 67, 61, (448,156,0): 87, 68, 62, (448,157,0): 87, 68, 62, (448,158,0): 88, 69, 63, (448,159,0): 88, 69, 65, (448,160,0): 89, 71, 67, (448,161,0): 89, 71, 67, (448,162,0): 90, 72, 70, (448,163,0): 91, 73, 69, (448,164,0): 92, 74, 72, (448,165,0): 93, 75, 71, (448,166,0): 94, 76, 74, (448,167,0): 95, 76, 72, (448,168,0): 94, 74, 73, (448,169,0): 95, 76, 72, (448,170,0): 96, 76, 75, (448,171,0): 97, 78, 74, (448,172,0): 98, 78, 77, (448,173,0): 99, 80, 76, (448,174,0): 99, 79, 78, (448,175,0): 100, 80, 79, (448,176,0): 100, 82, 80, (448,177,0): 98, 83, 80, (448,178,0): 97, 82, 79, (448,179,0): 97, 82, 79, (448,180,0): 99, 81, 81, (448,181,0): 99, 81, 81, (448,182,0): 99, 81, 81, (448,183,0): 98, 80, 80, (448,184,0): 104, 85, 87, (448,185,0): 104, 85, 87, (448,186,0): 104, 85, 87, (448,187,0): 104, 85, 87, (448,188,0): 106, 87, 91, (448,189,0): 108, 89, 93, (448,190,0): 111, 92, 96, (448,191,0): 113, 93, 95, (448,192,0): 111, 89, 91, (448,193,0): 114, 90, 90, (448,194,0): 115, 89, 90, (448,195,0): 114, 88, 87, (448,196,0): 112, 86, 87, (448,197,0): 110, 82, 81, (448,198,0): 106, 78, 77, (448,199,0): 104, 74, 74, (448,200,0): 102, 71, 69, (448,201,0): 102, 71, 69, (448,202,0): 104, 70, 69, (448,203,0): 104, 70, 69, (448,204,0): 104, 69, 67, (448,205,0): 103, 68, 66, (448,206,0): 104, 66, 65, (448,207,0): 103, 65, 64, (448,208,0): 104, 68, 68, (448,209,0): 105, 69, 69, (448,210,0): 106, 70, 70, (448,211,0): 108, 72, 72, (448,212,0): 110, 74, 74, (448,213,0): 111, 77, 76, (448,214,0): 113, 79, 78, (448,215,0): 114, 80, 79, (448,216,0): 118, 84, 85, (448,217,0): 120, 86, 87, (448,218,0): 122, 87, 91, (448,219,0): 126, 91, 95, (448,220,0): 133, 98, 104, (448,221,0): 144, 109, 115, (448,222,0): 158, 123, 130, (448,223,0): 165, 133, 144, (448,224,0): 167, 140, 157, (448,225,0): 173, 150, 170, (448,226,0): 186, 164, 185, (448,227,0): 197, 178, 200, (448,228,0): 204, 186, 208, (448,229,0): 203, 189, 212, (448,230,0): 198, 188, 212, (448,231,0): 193, 188, 211, (448,232,0): 190, 188, 212, (448,233,0): 187, 189, 214, (448,234,0): 185, 189, 218, (448,235,0): 184, 191, 220, (448,236,0): 183, 192, 223, (448,237,0): 183, 194, 224, (448,238,0): 182, 196, 225, (448,239,0): 181, 197, 230, (448,240,0): 166, 188, 225, (448,241,0): 162, 190, 229, (448,242,0): 162, 191, 233, (448,243,0): 161, 192, 236, (448,244,0): 161, 193, 240, (448,245,0): 159, 195, 245, (448,246,0): 159, 196, 249, (448,247,0): 157, 196, 251, (448,248,0): 155, 195, 254, (448,249,0): 152, 194, 254, (448,250,0): 149, 193, 254, (448,251,0): 147, 191, 254, (448,252,0): 147, 191, 254, (448,253,0): 148, 192, 255, (448,254,0): 149, 193, 255, (448,255,0): 147, 195, 255, (448,256,0): 147, 198, 255, (448,257,0): 144, 198, 255, (448,258,0): 144, 198, 255, (448,259,0): 144, 198, 255, (448,260,0): 143, 197, 255, (448,261,0): 141, 197, 255, (448,262,0): 141, 196, 255, (448,263,0): 139, 197, 255, (448,264,0): 134, 192, 255, (448,265,0): 134, 192, 255, (448,266,0): 133, 191, 255, (448,267,0): 132, 192, 255, (448,268,0): 131, 190, 255, (448,269,0): 130, 191, 255, (448,270,0): 130, 189, 255, (448,271,0): 130, 189, 255, (448,272,0): 131, 190, 255, (448,273,0): 132, 191, 255, (448,274,0): 133, 192, 255, (448,275,0): 134, 193, 255, (448,276,0): 136, 196, 255, (448,277,0): 137, 197, 255, (448,278,0): 138, 198, 255, (448,279,0): 138, 198, 255, (448,280,0): 136, 196, 255, (448,281,0): 134, 194, 255, (448,282,0): 131, 191, 254, (448,283,0): 131, 191, 254, (448,284,0): 132, 191, 255, (448,285,0): 132, 191, 255, (448,286,0): 130, 189, 255, (448,287,0): 127, 186, 255, (448,288,0): 129, 188, 255, (448,289,0): 128, 187, 255, (448,290,0): 127, 184, 255, (448,291,0): 125, 182, 253, (448,292,0): 125, 179, 249, (448,293,0): 124, 178, 248, (448,294,0): 124, 179, 246, (448,295,0): 122, 179, 248, (448,296,0): 116, 176, 249, (448,297,0): 118, 180, 255, (448,298,0): 118, 176, 255, (448,299,0): 120, 168, 252, (448,300,0): 129, 161, 246, (448,301,0): 130, 147, 229, (448,302,0): 108, 107, 185, (448,303,0): 78, 68, 129, (448,304,0): 45, 38, 71, (448,305,0): 39, 35, 52, (448,306,0): 32, 28, 43, (448,307,0): 28, 24, 39, (448,308,0): 28, 24, 39, (448,309,0): 30, 26, 41, (448,310,0): 33, 27, 41, (448,311,0): 32, 26, 40, (448,312,0): 33, 25, 40, (448,313,0): 35, 24, 40, (448,314,0): 34, 23, 39, (448,315,0): 35, 22, 39, (448,316,0): 34, 21, 39, (448,317,0): 35, 20, 39, (448,318,0): 34, 19, 38, (448,319,0): 34, 19, 38, (448,320,0): 32, 19, 36, (448,321,0): 30, 19, 33, (448,322,0): 31, 18, 35, (448,323,0): 29, 18, 32, (448,324,0): 30, 17, 34, (448,325,0): 28, 17, 31, (448,326,0): 29, 16, 33, (448,327,0): 28, 17, 31, (448,328,0): 30, 17, 34, (448,329,0): 29, 18, 32, (448,330,0): 29, 16, 33, (448,331,0): 28, 17, 31, (448,332,0): 28, 15, 32, (448,333,0): 27, 16, 30, (448,334,0): 27, 14, 31, (448,335,0): 26, 15, 29, (448,336,0): 27, 15, 27, (448,337,0): 26, 16, 25, (448,338,0): 27, 15, 25, (448,339,0): 26, 16, 25, (448,340,0): 27, 15, 25, (448,341,0): 26, 16, 25, (448,342,0): 27, 15, 25, (448,343,0): 26, 16, 25, (448,344,0): 24, 12, 22, (448,345,0): 23, 13, 22, (448,346,0): 24, 12, 22, (448,347,0): 23, 13, 22, (448,348,0): 24, 12, 22, (448,349,0): 23, 13, 22, (448,350,0): 24, 12, 22, (448,351,0): 24, 12, 22, (448,352,0): 28, 16, 30, (448,353,0): 25, 13, 27, (448,354,0): 23, 11, 25, (448,355,0): 24, 12, 26, (448,356,0): 26, 15, 29, (448,357,0): 27, 16, 30, (448,358,0): 25, 14, 28, (448,359,0): 22, 11, 25, (448,360,0): 25, 17, 30, (448,361,0): 23, 15, 28, (448,362,0): 20, 14, 26, (448,363,0): 17, 11, 23, (448,364,0): 16, 10, 22, (448,365,0): 16, 10, 22, (448,366,0): 14, 11, 22, (448,367,0): 15, 12, 23, (448,368,0): 14, 8, 22, (448,369,0): 14, 8, 22, (448,370,0): 16, 8, 23, (448,371,0): 17, 9, 24, (448,372,0): 19, 11, 26, (448,373,0): 22, 14, 29, (448,374,0): 25, 17, 30, (448,375,0): 28, 17, 31, (448,376,0): 25, 15, 26, (448,377,0): 25, 15, 26, (448,378,0): 26, 16, 27, (448,379,0): 27, 17, 28, (448,380,0): 29, 17, 29, (448,381,0): 30, 18, 28, (448,382,0): 31, 19, 31, (448,383,0): 31, 19, 31, (448,384,0): 32, 18, 31, (448,385,0): 32, 18, 31, (448,386,0): 31, 17, 30, (448,387,0): 30, 16, 29, (448,388,0): 29, 15, 28, (448,389,0): 28, 14, 27, (448,390,0): 28, 14, 27, (448,391,0): 28, 14, 27, (448,392,0): 31, 17, 30, (448,393,0): 31, 17, 30, (448,394,0): 32, 18, 31, (448,395,0): 32, 18, 31, (448,396,0): 33, 19, 32, (448,397,0): 33, 19, 32, (448,398,0): 34, 20, 33, (448,399,0): 33, 21, 33, (448,400,0): 37, 26, 40, (448,401,0): 35, 27, 40, (448,402,0): 37, 26, 42, (448,403,0): 35, 27, 40, (448,404,0): 36, 25, 41, (448,405,0): 34, 26, 39, (448,406,0): 36, 25, 41, (448,407,0): 34, 26, 39, (448,408,0): 39, 28, 44, (448,409,0): 37, 29, 42, (448,410,0): 40, 29, 45, (448,411,0): 40, 32, 45, (448,412,0): 44, 33, 49, (448,413,0): 43, 35, 48, (448,414,0): 46, 35, 51, (448,415,0): 47, 36, 50, (448,416,0): 52, 38, 53, (448,417,0): 54, 38, 51, (448,418,0): 54, 38, 51, (448,419,0): 54, 38, 51, (448,420,0): 54, 38, 51, (448,421,0): 55, 39, 52, (448,422,0): 55, 39, 52, (448,423,0): 55, 39, 52, (448,424,0): 57, 41, 54, (448,425,0): 59, 43, 56, (448,426,0): 62, 44, 58, (448,427,0): 65, 47, 61, (448,428,0): 69, 51, 65, (448,429,0): 72, 54, 68, (448,430,0): 74, 56, 70, (448,431,0): 75, 57, 71, (448,432,0): 78, 57, 72, (448,433,0): 79, 57, 70, (448,434,0): 79, 57, 70, (448,435,0): 80, 58, 71, (448,436,0): 81, 58, 74, (448,437,0): 81, 59, 72, (448,438,0): 81, 58, 74, (448,439,0): 82, 59, 75, (448,440,0): 88, 65, 81, (448,441,0): 88, 65, 81, (448,442,0): 90, 66, 82, (448,443,0): 89, 65, 81, (448,444,0): 88, 64, 80, (448,445,0): 86, 62, 78, (448,446,0): 84, 60, 76, (448,447,0): 82, 58, 72, (448,448,0): 82, 58, 72, (448,449,0): 81, 57, 70, (448,450,0): 83, 57, 70, (448,451,0): 81, 57, 70, (448,452,0): 81, 57, 70, (448,453,0): 82, 58, 71, (448,454,0): 82, 59, 69, (448,455,0): 83, 60, 70, (448,456,0): 80, 57, 67, (448,457,0): 79, 56, 66, (448,458,0): 79, 56, 66, (448,459,0): 82, 59, 69, (448,460,0): 84, 61, 71, (448,461,0): 84, 61, 71, (448,462,0): 81, 58, 68, (448,463,0): 77, 56, 63, (448,464,0): 69, 50, 54, (448,465,0): 66, 50, 53, (448,466,0): 67, 48, 52, (448,467,0): 66, 47, 49, (448,468,0): 65, 46, 48, (448,469,0): 64, 48, 49, (448,470,0): 65, 49, 50, (448,471,0): 65, 49, 50, (448,472,0): 62, 46, 47, (448,473,0): 63, 47, 50, (448,474,0): 65, 49, 52, (448,475,0): 64, 49, 54, (448,476,0): 61, 52, 57, (448,477,0): 61, 59, 62, (448,478,0): 64, 68, 71, (448,479,0): 66, 75, 82, (448,480,0): 78, 86, 107, (448,481,0): 86, 91, 120, (448,482,0): 100, 95, 127, (448,483,0): 101, 92, 123, (448,484,0): 94, 84, 111, (448,485,0): 90, 76, 101, (448,486,0): 90, 73, 91, (448,487,0): 95, 73, 85, (448,488,0): 105, 74, 82, (448,489,0): 116, 80, 84, (448,490,0): 122, 87, 85, (448,491,0): 124, 86, 83, (448,492,0): 117, 82, 76, (448,493,0): 115, 78, 70, (448,494,0): 122, 77, 72, (448,495,0): 129, 79, 72, (448,496,0): 140, 83, 72, (448,497,0): 139, 83, 70, (448,498,0): 135, 83, 69, (448,499,0): 130, 82, 68, (448,500,0): 127, 83, 74, (448,501,0): 126, 83, 77, (448,502,0): 126, 82, 83, (448,503,0): 127, 82, 87, (448,504,0): 127, 79, 91, (448,505,0): 127, 76, 93, (448,506,0): 132, 77, 98, (448,507,0): 140, 81, 101, (448,508,0): 141, 76, 98, (448,509,0): 141, 69, 89, (448,510,0): 147, 70, 90, (448,511,0): 166, 74, 95, (448,512,0): 178, 64, 89, (448,513,0): 207, 83, 119, (448,514,0): 209, 87, 148, (448,515,0): 202, 78, 164, (448,516,0): 212, 79, 194, (448,517,0): 219, 79, 202, (448,518,0): 223, 75, 187, (448,519,0): 234, 80, 166, (448,520,0): 227, 70, 115, (448,521,0): 234, 67, 87, (448,522,0): 241, 61, 72, (448,523,0): 249, 58, 73, (448,524,0): 255, 56, 85, (448,525,0): 255, 54, 92, (448,526,0): 253, 54, 97, (448,527,0): 251, 55, 95, (448,528,0): 255, 65, 97, (448,529,0): 242, 53, 85, (448,530,0): 240, 58, 98, (448,531,0): 250, 73, 117, (448,532,0): 250, 74, 121, (448,533,0): 250, 73, 119, (448,534,0): 252, 70, 108, (448,535,0): 248, 63, 94, (448,536,0): 251, 65, 86, (448,537,0): 251, 68, 86, (448,538,0): 247, 72, 89, (448,539,0): 238, 71, 91, (448,540,0): 227, 67, 95, (448,541,0): 220, 65, 99, (448,542,0): 220, 65, 107, (448,543,0): 222, 67, 109, (448,544,0): 226, 67, 105, (448,545,0): 228, 68, 102, (448,546,0): 225, 61, 95, (448,547,0): 217, 58, 88, (448,548,0): 204, 58, 81, (448,549,0): 178, 51, 68, (448,550,0): 161, 55, 65, (448,551,0): 164, 75, 81, (448,552,0): 147, 66, 72, (448,553,0): 131, 56, 63, (448,554,0): 129, 57, 68, (448,555,0): 124, 58, 70, (448,556,0): 100, 42, 56, (448,557,0): 84, 33, 48, (448,558,0): 85, 38, 54, (448,559,0): 85, 43, 57, (448,560,0): 94, 50, 67, (448,561,0): 100, 53, 71, (448,562,0): 101, 50, 69, (448,563,0): 97, 42, 61, (448,564,0): 101, 42, 62, (448,565,0): 110, 49, 67, (448,566,0): 113, 50, 67, (448,567,0): 108, 47, 63, (448,568,0): 102, 45, 62, (448,569,0): 99, 46, 62, (448,570,0): 95, 47, 61, (448,571,0): 92, 48, 61, (448,572,0): 89, 49, 57, (448,573,0): 84, 48, 52, (448,574,0): 79, 45, 44, (448,575,0): 75, 43, 44, (448,576,0): 77, 44, 51, (448,577,0): 77, 44, 53, (448,578,0): 75, 44, 52, (448,579,0): 73, 43, 51, (448,580,0): 70, 43, 50, (448,581,0): 68, 43, 47, (448,582,0): 65, 43, 46, (448,583,0): 64, 42, 45, (448,584,0): 68, 46, 49, (448,585,0): 66, 44, 47, (448,586,0): 66, 44, 47, (448,587,0): 67, 45, 47, (448,588,0): 69, 47, 50, (448,589,0): 69, 47, 49, (448,590,0): 68, 43, 46, (448,591,0): 65, 40, 43, (448,592,0): 63, 38, 42, (448,593,0): 61, 39, 42, (448,594,0): 62, 37, 41, (448,595,0): 58, 36, 39, (448,596,0): 58, 33, 37, (448,597,0): 53, 31, 34, (448,598,0): 52, 27, 31, (448,599,0): 49, 27, 30, (449,0,0): 68, 74, 62, (449,1,0): 67, 73, 61, (449,2,0): 66, 72, 60, (449,3,0): 64, 70, 58, (449,4,0): 64, 70, 58, (449,5,0): 64, 70, 58, (449,6,0): 65, 71, 59, (449,7,0): 65, 71, 59, (449,8,0): 66, 72, 60, (449,9,0): 66, 72, 60, (449,10,0): 67, 73, 61, (449,11,0): 68, 74, 62, (449,12,0): 69, 75, 63, (449,13,0): 70, 76, 64, (449,14,0): 70, 76, 64, (449,15,0): 71, 77, 67, (449,16,0): 71, 78, 70, (449,17,0): 71, 78, 71, (449,18,0): 72, 79, 72, (449,19,0): 72, 79, 72, (449,20,0): 73, 80, 73, (449,21,0): 73, 80, 73, (449,22,0): 74, 81, 74, (449,23,0): 74, 81, 74, (449,24,0): 74, 81, 74, (449,25,0): 74, 81, 74, (449,26,0): 74, 81, 74, (449,27,0): 74, 81, 74, (449,28,0): 74, 81, 74, (449,29,0): 74, 81, 74, (449,30,0): 74, 81, 74, (449,31,0): 75, 80, 74, (449,32,0): 77, 80, 73, (449,33,0): 78, 79, 73, (449,34,0): 78, 79, 73, (449,35,0): 79, 80, 74, (449,36,0): 80, 80, 72, (449,37,0): 81, 81, 73, (449,38,0): 81, 81, 73, (449,39,0): 82, 82, 74, (449,40,0): 79, 76, 67, (449,41,0): 78, 75, 66, (449,42,0): 79, 75, 64, (449,43,0): 79, 75, 64, (449,44,0): 78, 74, 63, (449,45,0): 78, 74, 63, (449,46,0): 79, 73, 61, (449,47,0): 80, 72, 61, (449,48,0): 82, 72, 60, (449,49,0): 84, 72, 60, (449,50,0): 84, 72, 60, (449,51,0): 85, 73, 61, (449,52,0): 86, 74, 62, (449,53,0): 87, 75, 63, (449,54,0): 87, 75, 63, (449,55,0): 87, 75, 63, (449,56,0): 86, 74, 62, (449,57,0): 87, 75, 63, (449,58,0): 87, 75, 63, (449,59,0): 87, 75, 63, (449,60,0): 87, 75, 63, (449,61,0): 88, 76, 64, (449,62,0): 88, 76, 64, (449,63,0): 88, 76, 64, (449,64,0): 86, 76, 64, (449,65,0): 86, 76, 64, (449,66,0): 86, 76, 64, (449,67,0): 86, 76, 64, (449,68,0): 86, 76, 64, (449,69,0): 86, 76, 64, (449,70,0): 86, 76, 64, (449,71,0): 86, 76, 64, (449,72,0): 84, 74, 62, (449,73,0): 84, 74, 62, (449,74,0): 83, 73, 61, (449,75,0): 82, 72, 60, (449,76,0): 81, 71, 59, (449,77,0): 80, 70, 58, (449,78,0): 79, 69, 57, (449,79,0): 79, 70, 55, (449,80,0): 83, 74, 59, (449,81,0): 83, 74, 57, (449,82,0): 85, 73, 57, (449,83,0): 84, 72, 56, (449,84,0): 83, 70, 54, (449,85,0): 81, 68, 52, (449,86,0): 80, 64, 49, (449,87,0): 79, 63, 48, (449,88,0): 81, 63, 49, (449,89,0): 81, 63, 49, (449,90,0): 80, 61, 47, (449,91,0): 80, 58, 45, (449,92,0): 79, 55, 43, (449,93,0): 77, 53, 41, (449,94,0): 75, 51, 39, (449,95,0): 73, 51, 38, (449,96,0): 68, 49, 35, (449,97,0): 67, 49, 35, (449,98,0): 67, 49, 35, (449,99,0): 67, 49, 35, (449,100,0): 68, 50, 36, (449,101,0): 68, 50, 36, (449,102,0): 68, 50, 36, (449,103,0): 68, 50, 36, (449,104,0): 65, 47, 33, (449,105,0): 64, 46, 32, (449,106,0): 64, 46, 32, (449,107,0): 63, 45, 31, (449,108,0): 63, 45, 31, (449,109,0): 62, 44, 30, (449,110,0): 62, 44, 30, (449,111,0): 62, 44, 30, (449,112,0): 61, 43, 33, (449,113,0): 62, 44, 34, (449,114,0): 64, 46, 36, (449,115,0): 66, 48, 38, (449,116,0): 67, 49, 39, (449,117,0): 68, 50, 40, (449,118,0): 67, 49, 39, (449,119,0): 67, 49, 39, (449,120,0): 68, 50, 40, (449,121,0): 67, 49, 39, (449,122,0): 67, 49, 39, (449,123,0): 66, 48, 38, (449,124,0): 65, 47, 37, (449,125,0): 65, 47, 37, (449,126,0): 64, 46, 36, (449,127,0): 64, 46, 36, (449,128,0): 66, 47, 41, (449,129,0): 67, 48, 42, (449,130,0): 69, 50, 44, (449,131,0): 71, 52, 46, (449,132,0): 73, 54, 48, (449,133,0): 75, 56, 50, (449,134,0): 77, 58, 52, (449,135,0): 77, 58, 52, (449,136,0): 79, 60, 54, (449,137,0): 79, 60, 54, (449,138,0): 80, 61, 55, (449,139,0): 80, 61, 55, (449,140,0): 81, 62, 56, (449,141,0): 81, 62, 56, (449,142,0): 82, 63, 57, (449,143,0): 82, 63, 57, (449,144,0): 85, 66, 60, (449,145,0): 85, 66, 60, (449,146,0): 85, 66, 60, (449,147,0): 85, 66, 60, (449,148,0): 85, 66, 60, (449,149,0): 85, 66, 60, (449,150,0): 85, 66, 60, (449,151,0): 85, 66, 60, (449,152,0): 85, 66, 60, (449,153,0): 85, 66, 60, (449,154,0): 85, 66, 60, (449,155,0): 86, 67, 61, (449,156,0): 86, 67, 61, (449,157,0): 87, 68, 62, (449,158,0): 87, 68, 62, (449,159,0): 88, 69, 63, (449,160,0): 89, 70, 66, (449,161,0): 90, 71, 67, (449,162,0): 91, 72, 68, (449,163,0): 92, 73, 69, (449,164,0): 93, 74, 70, (449,165,0): 94, 75, 71, (449,166,0): 95, 76, 72, (449,167,0): 95, 76, 72, (449,168,0): 95, 76, 72, (449,169,0): 95, 76, 72, (449,170,0): 96, 77, 73, (449,171,0): 97, 78, 74, (449,172,0): 98, 79, 75, (449,173,0): 99, 80, 76, (449,174,0): 100, 81, 77, (449,175,0): 99, 81, 77, (449,176,0): 99, 81, 79, (449,177,0): 97, 82, 79, (449,178,0): 97, 81, 81, (449,179,0): 98, 82, 82, (449,180,0): 98, 82, 82, (449,181,0): 98, 82, 82, (449,182,0): 98, 82, 83, (449,183,0): 98, 82, 83, (449,184,0): 103, 87, 90, (449,185,0): 103, 87, 90, (449,186,0): 103, 87, 90, (449,187,0): 103, 87, 90, (449,188,0): 104, 87, 93, (449,189,0): 106, 89, 95, (449,190,0): 108, 91, 97, (449,191,0): 112, 93, 97, (449,192,0): 111, 91, 93, (449,193,0): 113, 91, 93, (449,194,0): 115, 91, 91, (449,195,0): 114, 90, 90, (449,196,0): 113, 87, 88, (449,197,0): 109, 83, 84, (449,198,0): 107, 79, 78, (449,199,0): 105, 77, 76, (449,200,0): 101, 71, 71, (449,201,0): 102, 71, 69, (449,202,0): 104, 70, 69, (449,203,0): 103, 69, 68, (449,204,0): 103, 68, 66, (449,205,0): 102, 67, 65, (449,206,0): 103, 65, 64, (449,207,0): 103, 65, 64, (449,208,0): 103, 68, 66, (449,209,0): 104, 69, 67, (449,210,0): 106, 71, 69, (449,211,0): 108, 73, 71, (449,212,0): 110, 74, 74, (449,213,0): 112, 76, 76, (449,214,0): 114, 78, 78, (449,215,0): 114, 78, 78, (449,216,0): 118, 82, 84, (449,217,0): 120, 84, 86, (449,218,0): 123, 87, 91, (449,219,0): 126, 90, 94, (449,220,0): 132, 96, 100, (449,221,0): 142, 106, 110, (449,222,0): 154, 117, 124, (449,223,0): 162, 126, 136, (449,224,0): 161, 130, 146, (449,225,0): 166, 138, 160, (449,226,0): 180, 152, 174, (449,227,0): 192, 168, 190, (449,228,0): 202, 180, 201, (449,229,0): 204, 186, 208, (449,230,0): 200, 186, 209, (449,231,0): 194, 184, 208, (449,232,0): 196, 188, 212, (449,233,0): 194, 190, 215, (449,234,0): 191, 191, 217, (449,235,0): 189, 193, 220, (449,236,0): 188, 193, 222, (449,237,0): 185, 195, 222, (449,238,0): 184, 196, 222, (449,239,0): 181, 196, 225, (449,240,0): 168, 191, 223, (449,241,0): 164, 193, 227, (449,242,0): 164, 192, 231, (449,243,0): 162, 194, 235, (449,244,0): 161, 194, 239, (449,245,0): 159, 195, 243, (449,246,0): 158, 195, 247, (449,247,0): 155, 196, 250, (449,248,0): 155, 196, 252, (449,249,0): 153, 195, 253, (449,250,0): 151, 192, 254, (449,251,0): 148, 192, 253, (449,252,0): 150, 191, 253, (449,253,0): 151, 192, 254, (449,254,0): 152, 193, 255, (449,255,0): 151, 195, 255, (449,256,0): 148, 198, 255, (449,257,0): 145, 199, 255, (449,258,0): 144, 198, 255, (449,259,0): 144, 198, 255, (449,260,0): 143, 197, 255, (449,261,0): 142, 198, 255, (449,262,0): 141, 197, 255, (449,263,0): 139, 198, 255, (449,264,0): 136, 194, 255, (449,265,0): 136, 194, 255, (449,266,0): 136, 194, 255, (449,267,0): 134, 194, 255, (449,268,0): 134, 194, 255, (449,269,0): 132, 193, 255, (449,270,0): 133, 193, 255, (449,271,0): 133, 193, 255, (449,272,0): 133, 192, 255, (449,273,0): 133, 192, 255, (449,274,0): 134, 193, 255, (449,275,0): 135, 195, 255, (449,276,0): 136, 196, 255, (449,277,0): 138, 198, 255, (449,278,0): 139, 199, 255, (449,279,0): 139, 199, 255, (449,280,0): 136, 196, 255, (449,281,0): 133, 193, 253, (449,282,0): 131, 191, 253, (449,283,0): 131, 191, 253, (449,284,0): 132, 192, 255, (449,285,0): 132, 191, 255, (449,286,0): 130, 189, 255, (449,287,0): 127, 186, 255, (449,288,0): 129, 188, 255, (449,289,0): 128, 187, 255, (449,290,0): 126, 185, 255, (449,291,0): 125, 182, 253, (449,292,0): 125, 179, 249, (449,293,0): 125, 178, 246, (449,294,0): 125, 178, 246, (449,295,0): 122, 179, 248, (449,296,0): 114, 176, 249, (449,297,0): 116, 179, 255, (449,298,0): 116, 177, 255, (449,299,0): 118, 170, 254, (449,300,0): 130, 165, 247, (449,301,0): 133, 149, 227, (449,302,0): 112, 106, 178, (449,303,0): 80, 67, 123, (449,304,0): 43, 37, 65, (449,305,0): 37, 35, 49, (449,306,0): 31, 29, 43, (449,307,0): 28, 26, 40, (449,308,0): 29, 25, 40, (449,309,0): 32, 25, 41, (449,310,0): 33, 24, 41, (449,311,0): 32, 23, 40, (449,312,0): 35, 24, 41, (449,313,0): 35, 24, 41, (449,314,0): 35, 22, 40, (449,315,0): 35, 22, 40, (449,316,0): 35, 20, 39, (449,317,0): 35, 20, 39, (449,318,0): 36, 19, 38, (449,319,0): 34, 20, 37, (449,320,0): 32, 19, 36, (449,321,0): 32, 20, 34, (449,322,0): 32, 20, 34, (449,323,0): 31, 19, 33, (449,324,0): 31, 19, 33, (449,325,0): 30, 18, 32, (449,326,0): 30, 18, 32, (449,327,0): 30, 18, 32, (449,328,0): 30, 18, 32, (449,329,0): 30, 18, 32, (449,330,0): 29, 17, 31, (449,331,0): 29, 17, 31, (449,332,0): 28, 16, 30, (449,333,0): 28, 16, 30, (449,334,0): 27, 15, 29, (449,335,0): 27, 15, 27, (449,336,0): 27, 15, 27, (449,337,0): 27, 15, 25, (449,338,0): 27, 15, 25, (449,339,0): 27, 15, 25, (449,340,0): 27, 15, 25, (449,341,0): 27, 15, 25, (449,342,0): 27, 15, 25, (449,343,0): 27, 15, 25, (449,344,0): 25, 13, 23, (449,345,0): 25, 13, 23, (449,346,0): 25, 13, 23, (449,347,0): 25, 13, 23, (449,348,0): 25, 13, 23, (449,349,0): 25, 13, 23, (449,350,0): 25, 13, 23, (449,351,0): 25, 13, 23, (449,352,0): 27, 15, 29, (449,353,0): 25, 13, 27, (449,354,0): 23, 11, 25, (449,355,0): 24, 12, 26, (449,356,0): 26, 15, 29, (449,357,0): 27, 16, 30, (449,358,0): 25, 14, 28, (449,359,0): 23, 12, 26, (449,360,0): 25, 17, 30, (449,361,0): 23, 15, 28, (449,362,0): 20, 14, 26, (449,363,0): 18, 12, 24, (449,364,0): 16, 10, 22, (449,365,0): 16, 10, 22, (449,366,0): 15, 12, 23, (449,367,0): 15, 12, 23, (449,368,0): 13, 9, 24, (449,369,0): 13, 9, 24, (449,370,0): 15, 9, 23, (449,371,0): 15, 9, 23, (449,372,0): 17, 11, 25, (449,373,0): 19, 13, 27, (449,374,0): 23, 15, 28, (449,375,0): 24, 16, 29, (449,376,0): 25, 15, 26, (449,377,0): 25, 15, 26, (449,378,0): 26, 16, 27, (449,379,0): 27, 17, 28, (449,380,0): 29, 17, 27, (449,381,0): 30, 18, 28, (449,382,0): 31, 19, 29, (449,383,0): 31, 19, 29, (449,384,0): 34, 18, 29, (449,385,0): 34, 18, 29, (449,386,0): 34, 18, 29, (449,387,0): 33, 17, 28, (449,388,0): 32, 16, 27, (449,389,0): 31, 15, 26, (449,390,0): 31, 15, 26, (449,391,0): 31, 15, 26, (449,392,0): 33, 17, 28, (449,393,0): 34, 18, 29, (449,394,0): 34, 18, 29, (449,395,0): 35, 19, 30, (449,396,0): 35, 19, 30, (449,397,0): 36, 20, 31, (449,398,0): 36, 20, 31, (449,399,0): 34, 21, 31, (449,400,0): 37, 25, 39, (449,401,0): 36, 25, 39, (449,402,0): 36, 25, 39, (449,403,0): 37, 26, 40, (449,404,0): 37, 26, 40, (449,405,0): 37, 26, 40, (449,406,0): 37, 26, 40, (449,407,0): 37, 26, 40, (449,408,0): 39, 28, 42, (449,409,0): 40, 29, 43, (449,410,0): 41, 30, 44, (449,411,0): 42, 31, 45, (449,412,0): 44, 33, 47, (449,413,0): 46, 35, 49, (449,414,0): 47, 36, 50, (449,415,0): 48, 36, 50, (449,416,0): 54, 38, 51, (449,417,0): 55, 37, 51, (449,418,0): 55, 37, 51, (449,419,0): 55, 37, 51, (449,420,0): 56, 38, 52, (449,421,0): 56, 38, 52, (449,422,0): 56, 38, 52, (449,423,0): 57, 39, 53, (449,424,0): 59, 41, 55, (449,425,0): 60, 42, 56, (449,426,0): 62, 44, 58, (449,427,0): 65, 47, 61, (449,428,0): 68, 50, 64, (449,429,0): 71, 53, 67, (449,430,0): 73, 55, 69, (449,431,0): 76, 55, 70, (449,432,0): 78, 55, 71, (449,433,0): 80, 56, 72, (449,434,0): 80, 56, 72, (449,435,0): 81, 57, 73, (449,436,0): 81, 57, 73, (449,437,0): 82, 58, 74, (449,438,0): 82, 58, 74, (449,439,0): 82, 58, 74, (449,440,0): 88, 64, 80, (449,441,0): 88, 64, 80, (449,442,0): 89, 65, 81, (449,443,0): 89, 65, 81, (449,444,0): 88, 64, 80, (449,445,0): 86, 62, 78, (449,446,0): 84, 60, 76, (449,447,0): 83, 59, 75, (449,448,0): 85, 58, 75, (449,449,0): 85, 58, 75, (449,450,0): 84, 57, 72, (449,451,0): 84, 57, 72, (449,452,0): 84, 57, 72, (449,453,0): 84, 57, 72, (449,454,0): 84, 58, 71, (449,455,0): 84, 58, 71, (449,456,0): 81, 55, 66, (449,457,0): 80, 54, 65, (449,458,0): 80, 54, 65, (449,459,0): 82, 56, 67, (449,460,0): 85, 59, 68, (449,461,0): 85, 59, 68, (449,462,0): 82, 56, 65, (449,463,0): 77, 54, 60, (449,464,0): 69, 48, 53, (449,465,0): 67, 48, 50, (449,466,0): 65, 46, 48, (449,467,0): 63, 44, 46, (449,468,0): 63, 44, 46, (449,469,0): 61, 45, 46, (449,470,0): 63, 47, 48, (449,471,0): 64, 48, 49, (449,472,0): 61, 45, 46, (449,473,0): 61, 47, 47, (449,474,0): 62, 48, 48, (449,475,0): 61, 47, 47, (449,476,0): 60, 46, 46, (449,477,0): 61, 49, 49, (449,478,0): 69, 55, 55, (449,479,0): 71, 58, 65, (449,480,0): 80, 69, 85, (449,481,0): 87, 75, 95, (449,482,0): 97, 79, 101, (449,483,0): 97, 78, 98, (449,484,0): 89, 72, 88, (449,485,0): 82, 66, 79, (449,486,0): 81, 64, 74, (449,487,0): 86, 63, 71, (449,488,0): 100, 69, 75, (449,489,0): 110, 75, 79, (449,490,0): 119, 80, 81, (449,491,0): 119, 81, 80, (449,492,0): 115, 78, 72, (449,493,0): 114, 75, 68, (449,494,0): 122, 74, 70, (449,495,0): 126, 77, 70, (449,496,0): 135, 88, 78, (449,497,0): 134, 88, 75, (449,498,0): 133, 85, 73, (449,499,0): 131, 83, 73, (449,500,0): 131, 82, 77, (449,501,0): 132, 82, 83, (449,502,0): 135, 82, 88, (449,503,0): 136, 82, 95, (449,504,0): 144, 89, 108, (449,505,0): 140, 81, 103, (449,506,0): 140, 76, 100, (449,507,0): 149, 79, 103, (449,508,0): 155, 80, 101, (449,509,0): 156, 75, 92, (449,510,0): 157, 70, 86, (449,511,0): 163, 69, 85, (449,512,0): 180, 71, 90, (449,513,0): 200, 86, 120, (449,514,0): 195, 83, 142, (449,515,0): 184, 70, 158, (449,516,0): 200, 74, 197, (449,517,0): 223, 87, 221, (449,518,0): 237, 92, 213, (449,519,0): 251, 98, 188, (449,520,0): 238, 78, 122, (449,521,0): 240, 74, 88, (449,522,0): 244, 65, 68, (449,523,0): 250, 61, 68, (449,524,0): 255, 59, 86, (449,525,0): 255, 59, 99, (449,526,0): 255, 61, 106, (449,527,0): 255, 60, 103, (449,528,0): 255, 67, 102, (449,529,0): 252, 53, 86, (449,530,0): 245, 55, 99, (449,531,0): 249, 67, 116, (449,532,0): 247, 68, 123, (449,533,0): 250, 72, 124, (449,534,0): 255, 75, 119, (449,535,0): 255, 72, 105, (449,536,0): 253, 63, 88, (449,537,0): 253, 64, 84, (449,538,0): 251, 65, 86, (449,539,0): 247, 65, 90, (449,540,0): 243, 65, 99, (449,541,0): 240, 65, 108, (449,542,0): 241, 67, 116, (449,543,0): 243, 69, 120, (449,544,0): 235, 62, 107, (449,545,0): 229, 59, 98, (449,546,0): 215, 49, 85, (449,547,0): 204, 49, 80, (449,548,0): 196, 57, 80, (449,549,0): 171, 53, 69, (449,550,0): 146, 51, 59, (449,551,0): 142, 63, 66, (449,552,0): 130, 66, 66, (449,553,0): 110, 54, 55, (449,554,0): 108, 51, 57, (449,555,0): 107, 54, 62, (449,556,0): 100, 48, 60, (449,557,0): 98, 52, 65, (449,558,0): 99, 58, 72, (449,559,0): 92, 56, 70, (449,560,0): 92, 54, 69, (449,561,0): 100, 57, 76, (449,562,0): 103, 56, 76, (449,563,0): 101, 48, 68, (449,564,0): 104, 45, 67, (449,565,0): 111, 48, 69, (449,566,0): 114, 49, 69, (449,567,0): 110, 47, 66, (449,568,0): 102, 44, 59, (449,569,0): 99, 45, 59, (449,570,0): 95, 48, 58, (449,571,0): 92, 49, 58, (449,572,0): 90, 51, 56, (449,573,0): 87, 51, 55, (449,574,0): 85, 51, 52, (449,575,0): 82, 50, 53, (449,576,0): 79, 48, 53, (449,577,0): 78, 47, 53, (449,578,0): 76, 47, 52, (449,579,0): 73, 46, 51, (449,580,0): 70, 45, 49, (449,581,0): 67, 45, 48, (449,582,0): 65, 45, 47, (449,583,0): 63, 44, 46, (449,584,0): 66, 47, 49, (449,585,0): 65, 46, 48, (449,586,0): 64, 45, 47, (449,587,0): 65, 46, 48, (449,588,0): 68, 48, 50, (449,589,0): 68, 48, 50, (449,590,0): 66, 44, 47, (449,591,0): 63, 41, 44, (449,592,0): 61, 39, 42, (449,593,0): 60, 38, 41, (449,594,0): 59, 37, 40, (449,595,0): 57, 35, 38, (449,596,0): 55, 33, 36, (449,597,0): 53, 31, 34, (449,598,0): 52, 30, 33, (449,599,0): 51, 29, 32, (450,0,0): 68, 74, 62, (450,1,0): 67, 73, 61, (450,2,0): 66, 72, 60, (450,3,0): 65, 71, 59, (450,4,0): 64, 70, 58, (450,5,0): 64, 70, 58, (450,6,0): 65, 71, 59, (450,7,0): 66, 72, 60, (450,8,0): 68, 74, 62, (450,9,0): 68, 74, 62, (450,10,0): 68, 74, 62, (450,11,0): 69, 75, 63, (450,12,0): 69, 75, 63, (450,13,0): 69, 75, 63, (450,14,0): 69, 75, 63, (450,15,0): 69, 75, 65, (450,16,0): 70, 77, 69, (450,17,0): 70, 77, 70, (450,18,0): 71, 78, 71, (450,19,0): 71, 78, 71, (450,20,0): 72, 79, 72, (450,21,0): 72, 79, 72, (450,22,0): 73, 80, 73, (450,23,0): 73, 80, 73, (450,24,0): 74, 81, 74, (450,25,0): 74, 81, 74, (450,26,0): 74, 81, 74, (450,27,0): 74, 81, 74, (450,28,0): 74, 81, 74, (450,29,0): 74, 81, 74, (450,30,0): 74, 81, 74, (450,31,0): 75, 80, 74, (450,32,0): 77, 80, 73, (450,33,0): 79, 80, 74, (450,34,0): 79, 80, 74, (450,35,0): 80, 81, 75, (450,36,0): 81, 81, 73, (450,37,0): 82, 82, 74, (450,38,0): 82, 82, 74, (450,39,0): 82, 82, 74, (450,40,0): 79, 76, 67, (450,41,0): 79, 76, 67, (450,42,0): 80, 76, 65, (450,43,0): 79, 75, 64, (450,44,0): 78, 74, 63, (450,45,0): 78, 74, 63, (450,46,0): 80, 74, 62, (450,47,0): 80, 72, 61, (450,48,0): 82, 72, 60, (450,49,0): 84, 72, 60, (450,50,0): 85, 73, 61, (450,51,0): 85, 73, 61, (450,52,0): 86, 74, 62, (450,53,0): 86, 74, 62, (450,54,0): 87, 75, 63, (450,55,0): 87, 75, 63, (450,56,0): 87, 75, 63, (450,57,0): 86, 74, 62, (450,58,0): 86, 74, 62, (450,59,0): 86, 74, 62, (450,60,0): 86, 74, 62, (450,61,0): 85, 73, 61, (450,62,0): 85, 73, 61, (450,63,0): 85, 73, 61, (450,64,0): 88, 76, 64, (450,65,0): 88, 76, 64, (450,66,0): 88, 76, 64, (450,67,0): 88, 76, 64, (450,68,0): 88, 76, 64, (450,69,0): 88, 76, 64, (450,70,0): 88, 76, 64, (450,71,0): 88, 76, 64, (450,72,0): 86, 74, 62, (450,73,0): 86, 74, 62, (450,74,0): 85, 73, 61, (450,75,0): 84, 72, 60, (450,76,0): 83, 71, 59, (450,77,0): 82, 70, 58, (450,78,0): 81, 69, 57, (450,79,0): 81, 69, 55, (450,80,0): 84, 72, 58, (450,81,0): 84, 72, 56, (450,82,0): 84, 72, 56, (450,83,0): 83, 71, 55, (450,84,0): 83, 70, 54, (450,85,0): 80, 67, 51, (450,86,0): 80, 64, 49, (450,87,0): 79, 63, 48, (450,88,0): 78, 60, 46, (450,89,0): 77, 59, 45, (450,90,0): 77, 58, 44, (450,91,0): 75, 56, 42, (450,92,0): 75, 53, 40, (450,93,0): 73, 51, 38, (450,94,0): 72, 48, 36, (450,95,0): 70, 48, 35, (450,96,0): 68, 49, 35, (450,97,0): 67, 49, 35, (450,98,0): 67, 49, 35, (450,99,0): 67, 49, 35, (450,100,0): 66, 48, 34, (450,101,0): 66, 48, 34, (450,102,0): 66, 48, 34, (450,103,0): 66, 48, 34, (450,104,0): 65, 47, 33, (450,105,0): 65, 47, 33, (450,106,0): 65, 47, 33, (450,107,0): 64, 46, 32, (450,108,0): 64, 46, 32, (450,109,0): 63, 45, 31, (450,110,0): 63, 45, 31, (450,111,0): 62, 44, 30, (450,112,0): 61, 43, 33, (450,113,0): 62, 44, 34, (450,114,0): 64, 46, 36, (450,115,0): 66, 48, 38, (450,116,0): 67, 49, 39, (450,117,0): 67, 49, 39, (450,118,0): 66, 48, 38, (450,119,0): 66, 48, 38, (450,120,0): 67, 49, 39, (450,121,0): 67, 49, 39, (450,122,0): 67, 49, 39, (450,123,0): 66, 48, 38, (450,124,0): 66, 48, 38, (450,125,0): 65, 47, 37, (450,126,0): 65, 47, 37, (450,127,0): 65, 47, 37, (450,128,0): 67, 48, 42, (450,129,0): 67, 48, 42, (450,130,0): 69, 50, 44, (450,131,0): 71, 52, 46, (450,132,0): 73, 54, 48, (450,133,0): 75, 56, 50, (450,134,0): 77, 58, 52, (450,135,0): 78, 59, 53, (450,136,0): 79, 60, 54, (450,137,0): 79, 60, 54, (450,138,0): 80, 61, 55, (450,139,0): 80, 61, 55, (450,140,0): 81, 62, 56, (450,141,0): 81, 62, 56, (450,142,0): 82, 63, 57, (450,143,0): 82, 63, 57, (450,144,0): 85, 66, 60, (450,145,0): 85, 66, 60, (450,146,0): 85, 66, 60, (450,147,0): 85, 66, 60, (450,148,0): 85, 66, 60, (450,149,0): 85, 66, 60, (450,150,0): 85, 66, 60, (450,151,0): 85, 66, 60, (450,152,0): 84, 65, 59, (450,153,0): 85, 66, 60, (450,154,0): 85, 66, 60, (450,155,0): 86, 67, 61, (450,156,0): 86, 67, 61, (450,157,0): 87, 68, 62, (450,158,0): 87, 68, 62, (450,159,0): 87, 68, 62, (450,160,0): 89, 70, 66, (450,161,0): 89, 70, 66, (450,162,0): 90, 71, 67, (450,163,0): 91, 72, 68, (450,164,0): 92, 73, 69, (450,165,0): 93, 74, 70, (450,166,0): 94, 75, 71, (450,167,0): 95, 76, 72, (450,168,0): 96, 77, 73, (450,169,0): 96, 77, 73, (450,170,0): 97, 78, 74, (450,171,0): 98, 79, 75, (450,172,0): 99, 80, 76, (450,173,0): 100, 81, 77, (450,174,0): 101, 82, 78, (450,175,0): 100, 82, 78, (450,176,0): 98, 80, 78, (450,177,0): 96, 81, 78, (450,178,0): 97, 81, 81, (450,179,0): 98, 82, 82, (450,180,0): 99, 83, 83, (450,181,0): 100, 84, 84, (450,182,0): 100, 84, 85, (450,183,0): 101, 85, 86, (450,184,0): 105, 89, 92, (450,185,0): 105, 89, 92, (450,186,0): 104, 88, 91, (450,187,0): 104, 88, 91, (450,188,0): 105, 88, 94, (450,189,0): 106, 89, 95, (450,190,0): 108, 91, 97, (450,191,0): 111, 92, 96, (450,192,0): 112, 92, 94, (450,193,0): 114, 92, 94, (450,194,0): 115, 93, 95, (450,195,0): 114, 92, 94, (450,196,0): 114, 90, 90, (450,197,0): 112, 86, 87, (450,198,0): 110, 81, 83, (450,199,0): 107, 79, 78, (450,200,0): 103, 73, 73, (450,201,0): 103, 71, 72, (450,202,0): 104, 70, 69, (450,203,0): 103, 69, 68, (450,204,0): 103, 67, 67, (450,205,0): 102, 66, 66, (450,206,0): 101, 66, 64, (450,207,0): 101, 66, 64, (450,208,0): 103, 68, 66, (450,209,0): 103, 68, 66, (450,210,0): 105, 69, 69, (450,211,0): 107, 71, 71, (450,212,0): 109, 73, 73, (450,213,0): 111, 75, 75, (450,214,0): 113, 77, 79, (450,215,0): 114, 78, 80, (450,216,0): 118, 82, 86, (450,217,0): 119, 83, 87, (450,218,0): 122, 86, 90, (450,219,0): 124, 88, 92, (450,220,0): 128, 91, 98, (450,221,0): 136, 99, 106, (450,222,0): 147, 110, 117, (450,223,0): 153, 117, 127, (450,224,0): 152, 119, 136, (450,225,0): 154, 125, 145, (450,226,0): 165, 138, 157, (450,227,0): 179, 154, 175, (450,228,0): 194, 171, 191, (450,229,0): 201, 182, 202, (450,230,0): 200, 185, 206, (450,231,0): 196, 184, 206, (450,232,0): 200, 190, 214, (450,233,0): 198, 193, 216, (450,234,0): 197, 195, 219, (450,235,0): 195, 197, 222, (450,236,0): 193, 197, 222, (450,237,0): 190, 196, 222, (450,238,0): 187, 194, 220, (450,239,0): 180, 194, 221, (450,240,0): 174, 193, 223, (450,241,0): 170, 195, 226, (450,242,0): 170, 194, 230, (450,243,0): 166, 194, 231, (450,244,0): 165, 194, 234, (450,245,0): 162, 195, 238, (450,246,0): 158, 194, 242, (450,247,0): 157, 194, 246, (450,248,0): 156, 196, 248, (450,249,0): 155, 196, 250, (450,250,0): 153, 195, 253, (450,251,0): 152, 194, 252, (450,252,0): 152, 194, 254, (450,253,0): 153, 195, 255, (450,254,0): 155, 195, 255, (450,255,0): 153, 198, 255, (450,256,0): 148, 198, 255, (450,257,0): 147, 199, 255, (450,258,0): 147, 199, 255, (450,259,0): 144, 199, 255, (450,260,0): 144, 199, 255, (450,261,0): 143, 198, 255, (450,262,0): 143, 198, 255, (450,263,0): 141, 197, 254, (450,264,0): 141, 197, 255, (450,265,0): 141, 197, 255, (450,266,0): 140, 196, 255, (450,267,0): 138, 197, 255, (450,268,0): 137, 196, 254, (450,269,0): 136, 197, 254, (450,270,0): 136, 195, 253, (450,271,0): 135, 195, 255, (450,272,0): 135, 195, 255, (450,273,0): 135, 195, 255, (450,274,0): 136, 196, 255, (450,275,0): 137, 197, 255, (450,276,0): 138, 198, 255, (450,277,0): 139, 200, 255, (450,278,0): 140, 201, 255, (450,279,0): 140, 201, 255, (450,280,0): 136, 197, 254, (450,281,0): 134, 195, 252, (450,282,0): 131, 191, 251, (450,283,0): 131, 191, 253, (450,284,0): 132, 192, 255, (450,285,0): 132, 191, 255, (450,286,0): 130, 189, 255, (450,287,0): 127, 186, 254, (450,288,0): 130, 187, 255, (450,289,0): 129, 186, 255, (450,290,0): 127, 183, 255, (450,291,0): 127, 181, 255, (450,292,0): 128, 177, 253, (450,293,0): 127, 177, 250, (450,294,0): 127, 177, 250, (450,295,0): 125, 177, 252, (450,296,0): 117, 174, 251, (450,297,0): 118, 177, 255, (450,298,0): 118, 174, 255, (450,299,0): 123, 171, 255, (450,300,0): 135, 166, 248, (450,301,0): 134, 146, 222, (450,302,0): 109, 102, 170, (450,303,0): 77, 63, 116, (450,304,0): 41, 35, 63, (450,305,0): 36, 34, 48, (450,306,0): 32, 28, 43, (450,307,0): 30, 26, 41, (450,308,0): 32, 25, 41, (450,309,0): 32, 25, 41, (450,310,0): 31, 22, 39, (450,311,0): 29, 20, 37, (450,312,0): 35, 24, 41, (450,313,0): 35, 24, 41, (450,314,0): 35, 22, 40, (450,315,0): 35, 22, 40, (450,316,0): 35, 20, 39, (450,317,0): 35, 20, 39, (450,318,0): 34, 19, 38, (450,319,0): 34, 20, 37, (450,320,0): 33, 20, 37, (450,321,0): 33, 21, 35, (450,322,0): 33, 21, 35, (450,323,0): 32, 20, 34, (450,324,0): 32, 20, 34, (450,325,0): 31, 19, 33, (450,326,0): 31, 19, 33, (450,327,0): 31, 19, 33, (450,328,0): 30, 18, 32, (450,329,0): 30, 18, 32, (450,330,0): 29, 17, 31, (450,331,0): 29, 17, 31, (450,332,0): 28, 16, 30, (450,333,0): 28, 16, 30, (450,334,0): 27, 15, 29, (450,335,0): 27, 15, 27, (450,336,0): 27, 15, 27, (450,337,0): 27, 15, 25, (450,338,0): 27, 15, 25, (450,339,0): 27, 15, 25, (450,340,0): 27, 15, 25, (450,341,0): 27, 15, 25, (450,342,0): 27, 15, 25, (450,343,0): 27, 15, 25, (450,344,0): 26, 14, 24, (450,345,0): 26, 14, 24, (450,346,0): 26, 14, 24, (450,347,0): 26, 14, 24, (450,348,0): 26, 14, 24, (450,349,0): 26, 14, 24, (450,350,0): 26, 14, 24, (450,351,0): 26, 14, 24, (450,352,0): 27, 15, 29, (450,353,0): 25, 13, 27, (450,354,0): 24, 12, 26, (450,355,0): 25, 13, 27, (450,356,0): 25, 14, 28, (450,357,0): 26, 15, 29, (450,358,0): 25, 14, 28, (450,359,0): 23, 12, 26, (450,360,0): 24, 16, 29, (450,361,0): 23, 15, 28, (450,362,0): 20, 14, 26, (450,363,0): 19, 13, 25, (450,364,0): 18, 12, 24, (450,365,0): 17, 11, 23, (450,366,0): 15, 12, 23, (450,367,0): 16, 13, 24, (450,368,0): 14, 10, 25, (450,369,0): 14, 10, 25, (450,370,0): 15, 9, 23, (450,371,0): 15, 9, 23, (450,372,0): 16, 10, 24, (450,373,0): 17, 11, 25, (450,374,0): 20, 12, 25, (450,375,0): 21, 13, 26, (450,376,0): 25, 15, 26, (450,377,0): 25, 15, 26, (450,378,0): 26, 16, 27, (450,379,0): 27, 17, 28, (450,380,0): 29, 17, 27, (450,381,0): 30, 18, 28, (450,382,0): 31, 19, 29, (450,383,0): 31, 19, 29, (450,384,0): 35, 19, 30, (450,385,0): 35, 19, 30, (450,386,0): 34, 18, 29, (450,387,0): 34, 18, 29, (450,388,0): 33, 17, 28, (450,389,0): 33, 17, 28, (450,390,0): 33, 17, 28, (450,391,0): 32, 16, 27, (450,392,0): 34, 18, 29, (450,393,0): 34, 18, 29, (450,394,0): 34, 18, 29, (450,395,0): 35, 19, 30, (450,396,0): 35, 19, 30, (450,397,0): 36, 20, 31, (450,398,0): 36, 20, 31, (450,399,0): 35, 22, 32, (450,400,0): 36, 24, 38, (450,401,0): 36, 24, 38, (450,402,0): 37, 25, 39, (450,403,0): 38, 26, 40, (450,404,0): 39, 27, 41, (450,405,0): 39, 27, 41, (450,406,0): 40, 28, 42, (450,407,0): 40, 28, 42, (450,408,0): 41, 29, 43, (450,409,0): 41, 29, 43, (450,410,0): 43, 31, 45, (450,411,0): 44, 32, 46, (450,412,0): 46, 34, 48, (450,413,0): 47, 35, 49, (450,414,0): 48, 36, 50, (450,415,0): 50, 36, 51, (450,416,0): 54, 38, 51, (450,417,0): 55, 37, 49, (450,418,0): 56, 38, 50, (450,419,0): 56, 38, 50, (450,420,0): 57, 39, 51, (450,421,0): 57, 39, 51, (450,422,0): 58, 40, 52, (450,423,0): 58, 40, 52, (450,424,0): 59, 41, 53, (450,425,0): 60, 42, 54, (450,426,0): 62, 44, 56, (450,427,0): 64, 46, 58, (450,428,0): 67, 49, 61, (450,429,0): 69, 51, 63, (450,430,0): 71, 53, 65, (450,431,0): 74, 54, 66, (450,432,0): 78, 56, 69, (450,433,0): 79, 55, 69, (450,434,0): 79, 55, 69, (450,435,0): 80, 56, 70, (450,436,0): 80, 56, 70, (450,437,0): 81, 57, 71, (450,438,0): 81, 57, 71, (450,439,0): 81, 57, 71, (450,440,0): 85, 61, 75, (450,441,0): 86, 62, 76, (450,442,0): 87, 63, 77, (450,443,0): 87, 63, 77, (450,444,0): 87, 63, 77, (450,445,0): 86, 62, 76, (450,446,0): 85, 61, 75, (450,447,0): 84, 60, 74, (450,448,0): 85, 61, 77, (450,449,0): 85, 61, 77, (450,450,0): 84, 60, 74, (450,451,0): 83, 59, 73, (450,452,0): 83, 59, 73, (450,453,0): 82, 58, 72, (450,454,0): 81, 57, 70, (450,455,0): 80, 56, 69, (450,456,0): 78, 55, 65, (450,457,0): 76, 53, 63, (450,458,0): 76, 53, 63, (450,459,0): 77, 54, 64, (450,460,0): 80, 57, 65, (450,461,0): 80, 57, 65, (450,462,0): 77, 54, 62, (450,463,0): 74, 51, 57, (450,464,0): 68, 47, 52, (450,465,0): 66, 46, 48, (450,466,0): 62, 42, 44, (450,467,0): 59, 40, 42, (450,468,0): 58, 39, 41, (450,469,0): 60, 41, 43, (450,470,0): 62, 43, 45, (450,471,0): 64, 45, 47, (450,472,0): 61, 42, 44, (450,473,0): 60, 44, 45, (450,474,0): 59, 43, 44, (450,475,0): 57, 41, 42, (450,476,0): 55, 39, 40, (450,477,0): 55, 41, 41, (450,478,0): 60, 44, 45, (450,479,0): 62, 47, 52, (450,480,0): 72, 60, 74, (450,481,0): 78, 65, 82, (450,482,0): 89, 70, 89, (450,483,0): 89, 71, 87, (450,484,0): 82, 66, 79, (450,485,0): 76, 60, 71, (450,486,0): 74, 59, 66, (450,487,0): 77, 58, 62, (450,488,0): 90, 63, 68, (450,489,0): 100, 70, 72, (450,490,0): 109, 75, 76, (450,491,0): 111, 77, 75, (450,492,0): 109, 76, 71, (450,493,0): 109, 74, 68, (450,494,0): 117, 74, 68, (450,495,0): 121, 76, 71, (450,496,0): 132, 89, 82, (450,497,0): 132, 87, 81, (450,498,0): 131, 84, 78, (450,499,0): 131, 82, 78, (450,500,0): 133, 81, 83, (450,501,0): 136, 83, 89, (450,502,0): 141, 85, 96, (450,503,0): 143, 86, 101, (450,504,0): 151, 89, 110, (450,505,0): 142, 77, 101, (450,506,0): 141, 67, 92, (450,507,0): 151, 69, 92, (450,508,0): 165, 73, 94, (450,509,0): 169, 70, 88, (450,510,0): 166, 61, 75, (450,511,0): 162, 54, 69, (450,512,0): 180, 68, 90, (450,513,0): 189, 78, 110, (450,514,0): 184, 72, 122, (450,515,0): 179, 62, 133, (450,516,0): 202, 72, 170, (450,517,0): 233, 93, 198, (450,518,0): 250, 105, 198, (450,519,0): 255, 109, 177, (450,520,0): 243, 94, 126, (450,521,0): 244, 90, 100, (450,522,0): 242, 79, 84, (450,523,0): 244, 70, 80, (450,524,0): 251, 64, 91, (450,525,0): 255, 64, 101, (450,526,0): 255, 65, 104, (450,527,0): 255, 64, 101, (450,528,0): 255, 66, 99, (450,529,0): 250, 54, 90, (450,530,0): 244, 56, 104, (450,531,0): 245, 64, 119, (450,532,0): 241, 63, 123, (450,533,0): 243, 65, 125, (450,534,0): 251, 68, 122, (450,535,0): 251, 63, 111, (450,536,0): 255, 66, 104, (450,537,0): 254, 64, 98, (450,538,0): 249, 64, 96, (450,539,0): 246, 65, 100, (450,540,0): 247, 68, 110, (450,541,0): 247, 69, 119, (450,542,0): 248, 69, 125, (450,543,0): 248, 69, 124, (450,544,0): 246, 70, 117, (450,545,0): 234, 65, 106, (450,546,0): 211, 51, 89, (450,547,0): 197, 52, 85, (450,548,0): 194, 64, 90, (450,549,0): 174, 61, 81, (450,550,0): 149, 51, 64, (450,551,0): 139, 53, 62, (450,552,0): 143, 68, 72, (450,553,0): 126, 57, 60, (450,554,0): 118, 53, 57, (450,555,0): 115, 54, 59, (450,556,0): 111, 54, 60, (450,557,0): 113, 60, 68, (450,558,0): 108, 58, 67, (450,559,0): 89, 41, 53, (450,560,0): 100, 53, 69, (450,561,0): 105, 58, 76, (450,562,0): 111, 60, 79, (450,563,0): 107, 54, 74, (450,564,0): 106, 48, 70, (450,565,0): 108, 49, 69, (450,566,0): 110, 49, 67, (450,567,0): 107, 48, 66, (450,568,0): 102, 44, 59, (450,569,0): 99, 45, 59, (450,570,0): 97, 47, 58, (450,571,0): 94, 48, 58, (450,572,0): 91, 50, 56, (450,573,0): 89, 53, 57, (450,574,0): 90, 55, 59, (450,575,0): 90, 58, 61, (450,576,0): 83, 52, 57, (450,577,0): 82, 51, 57, (450,578,0): 80, 51, 56, (450,579,0): 76, 49, 54, (450,580,0): 73, 48, 52, (450,581,0): 69, 47, 50, (450,582,0): 67, 47, 49, (450,583,0): 66, 46, 48, (450,584,0): 67, 48, 50, (450,585,0): 66, 47, 49, (450,586,0): 65, 46, 48, (450,587,0): 66, 47, 49, (450,588,0): 68, 48, 50, (450,589,0): 69, 47, 50, (450,590,0): 68, 43, 47, (450,591,0): 65, 40, 44, (450,592,0): 60, 38, 41, (450,593,0): 59, 37, 40, (450,594,0): 58, 36, 39, (450,595,0): 57, 35, 38, (450,596,0): 55, 33, 36, (450,597,0): 54, 32, 35, (450,598,0): 53, 31, 34, (450,599,0): 53, 31, 34, (451,0,0): 68, 74, 62, (451,1,0): 67, 73, 61, (451,2,0): 66, 72, 60, (451,3,0): 64, 70, 58, (451,4,0): 64, 70, 58, (451,5,0): 64, 70, 58, (451,6,0): 65, 71, 59, (451,7,0): 65, 71, 59, (451,8,0): 69, 75, 63, (451,9,0): 69, 75, 63, (451,10,0): 69, 75, 63, (451,11,0): 68, 74, 62, (451,12,0): 68, 74, 62, (451,13,0): 68, 74, 62, (451,14,0): 68, 74, 62, (451,15,0): 68, 74, 64, (451,16,0): 69, 76, 68, (451,17,0): 69, 76, 69, (451,18,0): 70, 77, 70, (451,19,0): 70, 77, 70, (451,20,0): 71, 78, 71, (451,21,0): 71, 78, 71, (451,22,0): 72, 79, 72, (451,23,0): 72, 79, 72, (451,24,0): 73, 80, 73, (451,25,0): 73, 80, 73, (451,26,0): 73, 80, 73, (451,27,0): 73, 80, 73, (451,28,0): 73, 80, 73, (451,29,0): 73, 80, 73, (451,30,0): 73, 80, 73, (451,31,0): 74, 79, 73, (451,32,0): 78, 81, 74, (451,33,0): 79, 80, 74, (451,34,0): 79, 80, 74, (451,35,0): 80, 81, 75, (451,36,0): 81, 81, 73, (451,37,0): 82, 82, 74, (451,38,0): 82, 82, 74, (451,39,0): 82, 82, 74, (451,40,0): 80, 77, 68, (451,41,0): 79, 76, 67, (451,42,0): 80, 76, 65, (451,43,0): 79, 75, 64, (451,44,0): 79, 75, 64, (451,45,0): 78, 74, 63, (451,46,0): 80, 74, 62, (451,47,0): 81, 73, 62, (451,48,0): 83, 73, 61, (451,49,0): 85, 73, 61, (451,50,0): 85, 73, 61, (451,51,0): 85, 73, 61, (451,52,0): 86, 74, 62, (451,53,0): 86, 74, 62, (451,54,0): 86, 74, 62, (451,55,0): 86, 74, 62, (451,56,0): 87, 75, 63, (451,57,0): 86, 74, 62, (451,58,0): 86, 74, 62, (451,59,0): 85, 73, 61, (451,60,0): 84, 72, 60, (451,61,0): 83, 71, 59, (451,62,0): 83, 71, 59, (451,63,0): 82, 70, 58, (451,64,0): 89, 77, 65, (451,65,0): 89, 77, 65, (451,66,0): 89, 77, 65, (451,67,0): 89, 77, 65, (451,68,0): 89, 77, 65, (451,69,0): 89, 77, 65, (451,70,0): 89, 77, 65, (451,71,0): 89, 77, 65, (451,72,0): 86, 74, 62, (451,73,0): 85, 73, 61, (451,74,0): 84, 72, 60, (451,75,0): 83, 71, 59, (451,76,0): 82, 70, 58, (451,77,0): 81, 69, 57, (451,78,0): 80, 68, 56, (451,79,0): 80, 68, 54, (451,80,0): 82, 70, 56, (451,81,0): 82, 70, 54, (451,82,0): 82, 70, 54, (451,83,0): 82, 70, 54, (451,84,0): 82, 69, 53, (451,85,0): 80, 67, 51, (451,86,0): 80, 64, 49, (451,87,0): 79, 63, 48, (451,88,0): 78, 60, 46, (451,89,0): 77, 59, 45, (451,90,0): 76, 57, 43, (451,91,0): 74, 55, 41, (451,92,0): 74, 52, 39, (451,93,0): 72, 50, 37, (451,94,0): 72, 48, 36, (451,95,0): 70, 48, 35, (451,96,0): 68, 49, 35, (451,97,0): 66, 48, 34, (451,98,0): 66, 48, 34, (451,99,0): 66, 48, 34, (451,100,0): 65, 47, 33, (451,101,0): 65, 47, 33, (451,102,0): 65, 47, 33, (451,103,0): 65, 47, 33, (451,104,0): 65, 47, 33, (451,105,0): 65, 47, 33, (451,106,0): 65, 47, 33, (451,107,0): 64, 46, 32, (451,108,0): 64, 46, 32, (451,109,0): 63, 45, 31, (451,110,0): 63, 45, 31, (451,111,0): 63, 45, 31, (451,112,0): 61, 43, 33, (451,113,0): 62, 44, 34, (451,114,0): 64, 46, 36, (451,115,0): 65, 47, 37, (451,116,0): 66, 48, 38, (451,117,0): 66, 48, 38, (451,118,0): 65, 47, 37, (451,119,0): 65, 47, 37, (451,120,0): 66, 48, 38, (451,121,0): 66, 48, 38, (451,122,0): 66, 48, 38, (451,123,0): 66, 48, 38, (451,124,0): 66, 48, 38, (451,125,0): 66, 48, 38, (451,126,0): 65, 47, 37, (451,127,0): 65, 47, 37, (451,128,0): 66, 47, 41, (451,129,0): 67, 48, 42, (451,130,0): 69, 50, 44, (451,131,0): 71, 52, 46, (451,132,0): 73, 54, 48, (451,133,0): 75, 56, 50, (451,134,0): 77, 58, 52, (451,135,0): 77, 58, 52, (451,136,0): 78, 59, 53, (451,137,0): 78, 59, 53, (451,138,0): 79, 60, 54, (451,139,0): 79, 60, 54, (451,140,0): 80, 61, 55, (451,141,0): 80, 61, 55, (451,142,0): 81, 62, 56, (451,143,0): 81, 62, 56, (451,144,0): 84, 65, 59, (451,145,0): 84, 65, 59, (451,146,0): 84, 65, 59, (451,147,0): 84, 65, 59, (451,148,0): 84, 65, 59, (451,149,0): 84, 65, 59, (451,150,0): 84, 65, 59, (451,151,0): 84, 65, 59, (451,152,0): 84, 65, 59, (451,153,0): 84, 65, 59, (451,154,0): 84, 65, 59, (451,155,0): 85, 66, 60, (451,156,0): 86, 67, 61, (451,157,0): 86, 67, 61, (451,158,0): 86, 67, 61, (451,159,0): 87, 68, 62, (451,160,0): 89, 70, 66, (451,161,0): 89, 70, 66, (451,162,0): 90, 71, 67, (451,163,0): 91, 72, 68, (451,164,0): 92, 73, 69, (451,165,0): 93, 74, 70, (451,166,0): 94, 75, 71, (451,167,0): 94, 75, 71, (451,168,0): 96, 77, 73, (451,169,0): 96, 77, 73, (451,170,0): 97, 78, 74, (451,171,0): 98, 79, 75, (451,172,0): 99, 80, 76, (451,173,0): 100, 81, 77, (451,174,0): 101, 82, 78, (451,175,0): 100, 82, 78, (451,176,0): 97, 79, 77, (451,177,0): 96, 81, 78, (451,178,0): 97, 81, 81, (451,179,0): 98, 82, 82, (451,180,0): 99, 83, 83, (451,181,0): 101, 85, 85, (451,182,0): 101, 85, 86, (451,183,0): 102, 86, 87, (451,184,0): 106, 90, 93, (451,185,0): 105, 89, 92, (451,186,0): 105, 89, 92, (451,187,0): 104, 88, 91, (451,188,0): 105, 88, 94, (451,189,0): 107, 90, 96, (451,190,0): 108, 91, 97, (451,191,0): 111, 92, 96, (451,192,0): 113, 93, 95, (451,193,0): 115, 93, 95, (451,194,0): 116, 94, 96, (451,195,0): 116, 94, 96, (451,196,0): 116, 92, 92, (451,197,0): 113, 89, 89, (451,198,0): 110, 84, 85, (451,199,0): 110, 81, 83, (451,200,0): 104, 74, 74, (451,201,0): 103, 73, 73, (451,202,0): 102, 71, 69, (451,203,0): 102, 68, 67, (451,204,0): 102, 66, 66, (451,205,0): 101, 65, 65, (451,206,0): 101, 66, 64, (451,207,0): 101, 66, 64, (451,208,0): 102, 67, 65, (451,209,0): 102, 67, 65, (451,210,0): 104, 68, 68, (451,211,0): 106, 70, 70, (451,212,0): 108, 72, 72, (451,213,0): 110, 74, 74, (451,214,0): 112, 76, 78, (451,215,0): 113, 77, 79, (451,216,0): 116, 80, 84, (451,217,0): 118, 82, 86, (451,218,0): 120, 84, 88, (451,219,0): 122, 86, 90, (451,220,0): 124, 87, 94, (451,221,0): 130, 93, 100, (451,222,0): 138, 101, 108, (451,223,0): 143, 107, 117, (451,224,0): 144, 112, 127, (451,225,0): 146, 115, 133, (451,226,0): 152, 123, 141, (451,227,0): 166, 139, 156, (451,228,0): 182, 159, 177, (451,229,0): 196, 175, 194, (451,230,0): 203, 184, 204, (451,231,0): 202, 187, 208, (451,232,0): 203, 191, 213, (451,233,0): 202, 194, 215, (451,234,0): 202, 197, 220, (451,235,0): 201, 199, 221, (451,236,0): 198, 198, 222, (451,237,0): 194, 196, 219, (451,238,0): 189, 193, 218, (451,239,0): 185, 192, 218, (451,240,0): 181, 197, 223, (451,241,0): 177, 197, 224, (451,242,0): 175, 196, 227, (451,243,0): 171, 196, 227, (451,244,0): 169, 195, 232, (451,245,0): 165, 194, 234, (451,246,0): 161, 194, 237, (451,247,0): 158, 194, 242, (451,248,0): 159, 197, 246, (451,249,0): 157, 197, 249, (451,250,0): 156, 197, 251, (451,251,0): 155, 198, 251, (451,252,0): 155, 198, 253, (451,253,0): 156, 199, 254, (451,254,0): 157, 198, 254, (451,255,0): 155, 200, 255, (451,256,0): 150, 199, 255, (451,257,0): 148, 201, 255, (451,258,0): 148, 201, 255, (451,259,0): 147, 200, 254, (451,260,0): 145, 200, 254, (451,261,0): 144, 199, 253, (451,262,0): 144, 199, 253, (451,263,0): 144, 199, 253, (451,264,0): 143, 198, 254, (451,265,0): 142, 199, 254, (451,266,0): 141, 198, 253, (451,267,0): 141, 198, 253, (451,268,0): 140, 197, 252, (451,269,0): 138, 198, 250, (451,270,0): 139, 196, 251, (451,271,0): 137, 196, 252, (451,272,0): 139, 198, 255, (451,273,0): 138, 198, 255, (451,274,0): 138, 198, 255, (451,275,0): 139, 199, 255, (451,276,0): 140, 201, 255, (451,277,0): 140, 201, 255, (451,278,0): 141, 202, 255, (451,279,0): 141, 202, 255, (451,280,0): 137, 198, 253, (451,281,0): 134, 195, 252, (451,282,0): 132, 193, 250, (451,283,0): 132, 192, 252, (451,284,0): 133, 193, 255, (451,285,0): 133, 193, 255, (451,286,0): 130, 189, 255, (451,287,0): 129, 186, 255, (451,288,0): 132, 186, 255, (451,289,0): 131, 185, 255, (451,290,0): 130, 182, 255, (451,291,0): 128, 180, 255, (451,292,0): 129, 176, 254, (451,293,0): 129, 175, 252, (451,294,0): 129, 175, 252, (451,295,0): 128, 175, 253, (451,296,0): 122, 175, 255, (451,297,0): 120, 175, 255, (451,298,0): 121, 173, 255, (451,299,0): 125, 170, 255, (451,300,0): 135, 162, 243, (451,301,0): 129, 139, 211, (451,302,0): 101, 92, 157, (451,303,0): 67, 53, 102, (451,304,0): 39, 33, 59, (451,305,0): 35, 33, 47, (451,306,0): 32, 28, 43, (451,307,0): 31, 27, 42, (451,308,0): 33, 26, 42, (451,309,0): 32, 25, 41, (451,310,0): 30, 21, 38, (451,311,0): 28, 19, 36, (451,312,0): 35, 24, 41, (451,313,0): 35, 24, 41, (451,314,0): 35, 22, 40, (451,315,0): 35, 22, 40, (451,316,0): 35, 20, 39, (451,317,0): 35, 20, 39, (451,318,0): 34, 19, 38, (451,319,0): 34, 20, 37, (451,320,0): 34, 22, 36, (451,321,0): 34, 22, 36, (451,322,0): 34, 22, 36, (451,323,0): 33, 21, 35, (451,324,0): 33, 21, 35, (451,325,0): 32, 20, 34, (451,326,0): 32, 20, 34, (451,327,0): 31, 19, 33, (451,328,0): 30, 18, 32, (451,329,0): 30, 18, 32, (451,330,0): 29, 17, 31, (451,331,0): 29, 17, 31, (451,332,0): 28, 16, 30, (451,333,0): 28, 16, 30, (451,334,0): 27, 15, 29, (451,335,0): 27, 15, 29, (451,336,0): 27, 15, 27, (451,337,0): 27, 15, 25, (451,338,0): 27, 15, 25, (451,339,0): 27, 15, 25, (451,340,0): 27, 15, 25, (451,341,0): 27, 15, 25, (451,342,0): 27, 15, 25, (451,343,0): 27, 15, 25, (451,344,0): 27, 15, 25, (451,345,0): 27, 15, 25, (451,346,0): 27, 15, 25, (451,347,0): 27, 15, 25, (451,348,0): 27, 15, 25, (451,349,0): 27, 15, 25, (451,350,0): 27, 15, 25, (451,351,0): 27, 15, 27, (451,352,0): 26, 14, 28, (451,353,0): 25, 13, 27, (451,354,0): 25, 13, 27, (451,355,0): 25, 13, 27, (451,356,0): 25, 14, 28, (451,357,0): 25, 14, 28, (451,358,0): 25, 14, 28, (451,359,0): 24, 13, 27, (451,360,0): 23, 15, 28, (451,361,0): 22, 14, 27, (451,362,0): 21, 15, 27, (451,363,0): 20, 14, 26, (451,364,0): 19, 13, 25, (451,365,0): 19, 13, 25, (451,366,0): 16, 13, 24, (451,367,0): 16, 13, 24, (451,368,0): 15, 11, 26, (451,369,0): 14, 10, 25, (451,370,0): 15, 9, 23, (451,371,0): 14, 8, 22, (451,372,0): 14, 8, 22, (451,373,0): 15, 9, 23, (451,374,0): 17, 9, 22, (451,375,0): 18, 10, 23, (451,376,0): 25, 15, 26, (451,377,0): 25, 15, 26, (451,378,0): 26, 16, 27, (451,379,0): 27, 17, 28, (451,380,0): 29, 17, 27, (451,381,0): 30, 18, 28, (451,382,0): 31, 19, 29, (451,383,0): 31, 19, 29, (451,384,0): 35, 19, 30, (451,385,0): 35, 19, 30, (451,386,0): 35, 19, 30, (451,387,0): 34, 18, 29, (451,388,0): 34, 18, 29, (451,389,0): 34, 18, 29, (451,390,0): 34, 18, 29, (451,391,0): 34, 18, 29, (451,392,0): 34, 18, 29, (451,393,0): 35, 19, 30, (451,394,0): 35, 19, 30, (451,395,0): 35, 19, 30, (451,396,0): 36, 20, 31, (451,397,0): 37, 21, 32, (451,398,0): 37, 21, 32, (451,399,0): 37, 21, 32, (451,400,0): 36, 22, 35, (451,401,0): 36, 24, 38, (451,402,0): 37, 25, 39, (451,403,0): 38, 26, 40, (451,404,0): 39, 27, 41, (451,405,0): 41, 29, 43, (451,406,0): 42, 30, 44, (451,407,0): 42, 30, 44, (451,408,0): 42, 30, 44, (451,409,0): 42, 30, 44, (451,410,0): 44, 32, 46, (451,411,0): 45, 33, 47, (451,412,0): 47, 35, 49, (451,413,0): 48, 36, 50, (451,414,0): 49, 37, 51, (451,415,0): 51, 37, 50, (451,416,0): 55, 37, 49, (451,417,0): 55, 37, 49, (451,418,0): 56, 38, 50, (451,419,0): 57, 39, 51, (451,420,0): 58, 40, 52, (451,421,0): 59, 41, 53, (451,422,0): 59, 41, 53, (451,423,0): 60, 42, 54, (451,424,0): 60, 42, 54, (451,425,0): 61, 43, 55, (451,426,0): 63, 45, 57, (451,427,0): 64, 46, 58, (451,428,0): 66, 48, 60, (451,429,0): 68, 50, 62, (451,430,0): 70, 52, 64, (451,431,0): 72, 52, 64, (451,432,0): 77, 55, 68, (451,433,0): 78, 54, 68, (451,434,0): 78, 54, 68, (451,435,0): 79, 55, 69, (451,436,0): 79, 55, 69, (451,437,0): 80, 56, 70, (451,438,0): 80, 56, 70, (451,439,0): 80, 56, 70, (451,440,0): 82, 58, 72, (451,441,0): 83, 59, 73, (451,442,0): 84, 60, 74, (451,443,0): 85, 61, 75, (451,444,0): 86, 62, 76, (451,445,0): 85, 61, 75, (451,446,0): 84, 60, 74, (451,447,0): 84, 60, 74, (451,448,0): 86, 62, 78, (451,449,0): 86, 62, 78, (451,450,0): 85, 61, 75, (451,451,0): 85, 61, 75, (451,452,0): 83, 59, 73, (451,453,0): 82, 58, 72, (451,454,0): 80, 56, 69, (451,455,0): 79, 55, 68, (451,456,0): 76, 53, 63, (451,457,0): 74, 51, 61, (451,458,0): 73, 50, 60, (451,459,0): 74, 51, 61, (451,460,0): 76, 53, 61, (451,461,0): 76, 53, 61, (451,462,0): 74, 51, 59, (451,463,0): 71, 48, 54, (451,464,0): 66, 45, 50, (451,465,0): 63, 43, 45, (451,466,0): 59, 39, 41, (451,467,0): 56, 36, 38, (451,468,0): 55, 35, 37, (451,469,0): 56, 37, 39, (451,470,0): 59, 39, 41, (451,471,0): 60, 41, 43, (451,472,0): 58, 38, 40, (451,473,0): 58, 39, 41, (451,474,0): 58, 39, 41, (451,475,0): 56, 37, 39, (451,476,0): 54, 35, 37, (451,477,0): 54, 35, 37, (451,478,0): 57, 38, 40, (451,479,0): 58, 41, 47, (451,480,0): 74, 58, 69, (451,481,0): 80, 63, 79, (451,482,0): 89, 68, 83, (451,483,0): 90, 69, 84, (451,484,0): 85, 67, 79, (451,485,0): 79, 63, 73, (451,486,0): 78, 61, 67, (451,487,0): 79, 60, 64, (451,488,0): 86, 60, 63, (451,489,0): 94, 64, 66, (451,490,0): 102, 70, 71, (451,491,0): 107, 73, 72, (451,492,0): 108, 74, 72, (451,493,0): 111, 73, 70, (451,494,0): 117, 73, 70, (451,495,0): 119, 75, 72, (451,496,0): 126, 85, 83, (451,497,0): 124, 83, 81, (451,498,0): 126, 80, 80, (451,499,0): 128, 78, 81, (451,500,0): 132, 79, 85, (451,501,0): 138, 82, 93, (451,502,0): 142, 85, 100, (451,503,0): 146, 87, 105, (451,504,0): 147, 83, 107, (451,505,0): 143, 73, 99, (451,506,0): 145, 65, 92, (451,507,0): 157, 65, 90, (451,508,0): 171, 69, 90, (451,509,0): 180, 69, 86, (451,510,0): 183, 62, 77, (451,511,0): 177, 56, 71, (451,512,0): 176, 62, 85, (451,513,0): 176, 66, 95, (451,514,0): 177, 61, 100, (451,515,0): 185, 61, 115, (451,516,0): 208, 73, 142, (451,517,0): 234, 89, 164, (451,518,0): 246, 99, 167, (451,519,0): 249, 102, 154, (451,520,0): 250, 107, 135, (451,521,0): 254, 112, 128, (451,522,0): 254, 105, 124, (451,523,0): 247, 89, 114, (451,524,0): 243, 71, 111, (451,525,0): 244, 64, 111, (451,526,0): 247, 64, 108, (451,527,0): 250, 63, 108, (451,528,0): 255, 65, 115, (451,529,0): 252, 61, 115, (451,530,0): 253, 68, 135, (451,531,0): 253, 76, 148, (451,532,0): 245, 70, 149, (451,533,0): 242, 67, 144, (451,534,0): 245, 63, 137, (451,535,0): 239, 55, 119, (451,536,0): 255, 71, 124, (451,537,0): 255, 69, 116, (451,538,0): 250, 68, 109, (451,539,0): 249, 70, 109, (451,540,0): 250, 71, 113, (451,541,0): 250, 70, 115, (451,542,0): 247, 65, 114, (451,543,0): 243, 61, 109, (451,544,0): 249, 72, 114, (451,545,0): 238, 69, 108, (451,546,0): 212, 58, 94, (451,547,0): 193, 56, 86, (451,548,0): 188, 65, 93, (451,549,0): 169, 61, 84, (451,550,0): 149, 50, 68, (451,551,0): 141, 51, 63, (451,552,0): 137, 51, 60, (451,553,0): 130, 51, 56, (451,554,0): 130, 55, 59, (451,555,0): 129, 58, 62, (451,556,0): 126, 61, 65, (451,557,0): 132, 71, 78, (451,558,0): 127, 67, 75, (451,559,0): 103, 47, 60, (451,560,0): 103, 52, 67, (451,561,0): 106, 57, 76, (451,562,0): 110, 61, 80, (451,563,0): 109, 58, 75, (451,564,0): 103, 52, 69, (451,565,0): 100, 49, 64, (451,566,0): 101, 48, 64, (451,567,0): 101, 49, 62, (451,568,0): 99, 47, 60, (451,569,0): 99, 47, 60, (451,570,0): 98, 48, 59, (451,571,0): 94, 48, 58, (451,572,0): 89, 48, 54, (451,573,0): 86, 51, 55, (451,574,0): 88, 56, 59, (451,575,0): 90, 60, 62, (451,576,0): 87, 56, 62, (451,577,0): 86, 55, 61, (451,578,0): 83, 54, 59, (451,579,0): 79, 52, 57, (451,580,0): 77, 50, 55, (451,581,0): 72, 50, 53, (451,582,0): 71, 49, 52, (451,583,0): 69, 49, 51, (451,584,0): 69, 50, 52, (451,585,0): 68, 49, 51, (451,586,0): 66, 47, 49, (451,587,0): 68, 48, 50, (451,588,0): 71, 49, 52, (451,589,0): 70, 48, 51, (451,590,0): 68, 43, 47, (451,591,0): 65, 40, 44, (451,592,0): 59, 37, 40, (451,593,0): 58, 36, 39, (451,594,0): 57, 35, 38, (451,595,0): 56, 34, 37, (451,596,0): 55, 33, 36, (451,597,0): 54, 32, 35, (451,598,0): 55, 33, 36, (451,599,0): 55, 33, 36, (452,0,0): 67, 73, 63, (452,1,0): 66, 72, 62, (452,2,0): 64, 70, 60, (452,3,0): 63, 69, 59, (452,4,0): 63, 69, 59, (452,5,0): 63, 69, 59, (452,6,0): 64, 70, 60, (452,7,0): 64, 70, 60, (452,8,0): 68, 74, 64, (452,9,0): 68, 74, 64, (452,10,0): 68, 74, 64, (452,11,0): 67, 73, 63, (452,12,0): 67, 73, 63, (452,13,0): 67, 73, 63, (452,14,0): 67, 73, 63, (452,15,0): 67, 73, 63, (452,16,0): 68, 75, 67, (452,17,0): 68, 75, 68, (452,18,0): 69, 76, 69, (452,19,0): 69, 76, 69, (452,20,0): 70, 77, 70, (452,21,0): 70, 77, 70, (452,22,0): 71, 78, 71, (452,23,0): 71, 78, 71, (452,24,0): 73, 80, 73, (452,25,0): 73, 80, 73, (452,26,0): 73, 80, 73, (452,27,0): 73, 80, 73, (452,28,0): 73, 80, 73, (452,29,0): 73, 80, 73, (452,30,0): 73, 80, 73, (452,31,0): 74, 79, 73, (452,32,0): 77, 80, 73, (452,33,0): 78, 79, 73, (452,34,0): 79, 80, 74, (452,35,0): 79, 80, 74, (452,36,0): 81, 81, 73, (452,37,0): 81, 81, 73, (452,38,0): 82, 82, 74, (452,39,0): 82, 82, 74, (452,40,0): 80, 77, 68, (452,41,0): 80, 77, 68, (452,42,0): 81, 77, 66, (452,43,0): 80, 76, 65, (452,44,0): 80, 76, 65, (452,45,0): 79, 75, 64, (452,46,0): 81, 75, 63, (452,47,0): 81, 73, 62, (452,48,0): 84, 74, 62, (452,49,0): 86, 74, 62, (452,50,0): 86, 74, 62, (452,51,0): 86, 74, 62, (452,52,0): 85, 73, 61, (452,53,0): 85, 73, 61, (452,54,0): 85, 73, 61, (452,55,0): 85, 73, 61, (452,56,0): 86, 74, 62, (452,57,0): 86, 74, 62, (452,58,0): 85, 73, 61, (452,59,0): 84, 72, 60, (452,60,0): 84, 72, 60, (452,61,0): 83, 71, 59, (452,62,0): 82, 70, 58, (452,63,0): 82, 70, 58, (452,64,0): 88, 76, 64, (452,65,0): 88, 76, 64, (452,66,0): 88, 76, 64, (452,67,0): 88, 76, 64, (452,68,0): 88, 76, 64, (452,69,0): 88, 76, 64, (452,70,0): 88, 76, 64, (452,71,0): 88, 76, 64, (452,72,0): 85, 73, 61, (452,73,0): 85, 73, 61, (452,74,0): 84, 72, 60, (452,75,0): 83, 71, 59, (452,76,0): 82, 70, 58, (452,77,0): 81, 69, 57, (452,78,0): 80, 68, 56, (452,79,0): 79, 67, 53, (452,80,0): 81, 67, 54, (452,81,0): 81, 68, 52, (452,82,0): 82, 69, 53, (452,83,0): 82, 69, 53, (452,84,0): 83, 67, 52, (452,85,0): 81, 65, 50, (452,86,0): 79, 63, 48, (452,87,0): 78, 62, 47, (452,88,0): 80, 62, 48, (452,89,0): 79, 61, 47, (452,90,0): 78, 59, 45, (452,91,0): 76, 57, 43, (452,92,0): 74, 55, 41, (452,93,0): 72, 53, 39, (452,94,0): 72, 50, 37, (452,95,0): 72, 50, 37, (452,96,0): 69, 50, 36, (452,97,0): 67, 49, 35, (452,98,0): 67, 49, 35, (452,99,0): 66, 48, 34, (452,100,0): 65, 47, 33, (452,101,0): 65, 47, 33, (452,102,0): 64, 46, 32, (452,103,0): 64, 46, 32, (452,104,0): 65, 47, 33, (452,105,0): 65, 47, 33, (452,106,0): 64, 46, 32, (452,107,0): 64, 46, 32, (452,108,0): 63, 45, 31, (452,109,0): 63, 45, 31, (452,110,0): 62, 44, 30, (452,111,0): 62, 44, 30, (452,112,0): 61, 43, 33, (452,113,0): 62, 44, 34, (452,114,0): 64, 46, 36, (452,115,0): 65, 47, 37, (452,116,0): 65, 47, 37, (452,117,0): 65, 47, 37, (452,118,0): 64, 46, 36, (452,119,0): 63, 45, 35, (452,120,0): 64, 46, 36, (452,121,0): 64, 46, 36, (452,122,0): 65, 47, 37, (452,123,0): 65, 47, 37, (452,124,0): 65, 47, 37, (452,125,0): 65, 47, 37, (452,126,0): 65, 47, 37, (452,127,0): 65, 47, 37, (452,128,0): 65, 46, 40, (452,129,0): 66, 47, 41, (452,130,0): 68, 49, 43, (452,131,0): 70, 51, 45, (452,132,0): 72, 53, 47, (452,133,0): 74, 55, 49, (452,134,0): 75, 56, 50, (452,135,0): 76, 57, 51, (452,136,0): 77, 58, 52, (452,137,0): 77, 58, 52, (452,138,0): 77, 58, 52, (452,139,0): 78, 59, 53, (452,140,0): 78, 59, 53, (452,141,0): 79, 60, 54, (452,142,0): 79, 60, 54, (452,143,0): 79, 60, 54, (452,144,0): 82, 63, 57, (452,145,0): 82, 63, 57, (452,146,0): 82, 63, 57, (452,147,0): 82, 63, 57, (452,148,0): 82, 63, 57, (452,149,0): 82, 63, 57, (452,150,0): 82, 63, 57, (452,151,0): 82, 63, 57, (452,152,0): 83, 64, 58, (452,153,0): 84, 65, 59, (452,154,0): 84, 65, 59, (452,155,0): 84, 65, 59, (452,156,0): 85, 66, 60, (452,157,0): 86, 67, 61, (452,158,0): 86, 67, 61, (452,159,0): 86, 67, 61, (452,160,0): 88, 69, 65, (452,161,0): 88, 69, 65, (452,162,0): 89, 70, 66, (452,163,0): 90, 71, 67, (452,164,0): 91, 72, 68, (452,165,0): 92, 73, 69, (452,166,0): 93, 74, 70, (452,167,0): 93, 74, 70, (452,168,0): 95, 76, 72, (452,169,0): 96, 77, 73, (452,170,0): 96, 77, 73, (452,171,0): 97, 78, 74, (452,172,0): 99, 80, 76, (452,173,0): 100, 81, 77, (452,174,0): 100, 81, 77, (452,175,0): 100, 82, 78, (452,176,0): 97, 79, 77, (452,177,0): 95, 80, 77, (452,178,0): 96, 80, 80, (452,179,0): 97, 81, 81, (452,180,0): 99, 83, 83, (452,181,0): 100, 84, 84, (452,182,0): 101, 85, 86, (452,183,0): 101, 85, 86, (452,184,0): 104, 88, 91, (452,185,0): 104, 88, 91, (452,186,0): 104, 88, 91, (452,187,0): 104, 88, 91, (452,188,0): 105, 88, 94, (452,189,0): 106, 89, 95, (452,190,0): 108, 91, 97, (452,191,0): 111, 92, 96, (452,192,0): 113, 93, 95, (452,193,0): 114, 94, 96, (452,194,0): 116, 96, 97, (452,195,0): 116, 96, 97, (452,196,0): 115, 93, 95, (452,197,0): 114, 89, 92, (452,198,0): 112, 86, 87, (452,199,0): 110, 84, 85, (452,200,0): 105, 77, 76, (452,201,0): 104, 74, 74, (452,202,0): 102, 70, 71, (452,203,0): 100, 68, 69, (452,204,0): 100, 66, 65, (452,205,0): 99, 65, 64, (452,206,0): 99, 65, 64, (452,207,0): 100, 66, 65, (452,208,0): 99, 65, 64, (452,209,0): 100, 66, 65, (452,210,0): 102, 68, 67, (452,211,0): 104, 70, 69, (452,212,0): 106, 72, 73, (452,213,0): 108, 74, 75, (452,214,0): 110, 76, 77, (452,215,0): 110, 76, 77, (452,216,0): 113, 78, 82, (452,217,0): 116, 81, 85, (452,218,0): 118, 83, 89, (452,219,0): 119, 84, 90, (452,220,0): 121, 86, 92, (452,221,0): 124, 89, 95, (452,222,0): 129, 94, 101, (452,223,0): 134, 98, 108, (452,224,0): 140, 106, 120, (452,225,0): 140, 107, 124, (452,226,0): 144, 113, 129, (452,227,0): 154, 126, 141, (452,228,0): 172, 145, 162, (452,229,0): 188, 165, 181, (452,230,0): 202, 181, 198, (452,231,0): 206, 189, 207, (452,232,0): 203, 188, 207, (452,233,0): 203, 192, 209, (452,234,0): 204, 195, 216, (452,235,0): 205, 197, 218, (452,236,0): 202, 197, 219, (452,237,0): 198, 196, 217, (452,238,0): 195, 193, 214, (452,239,0): 190, 192, 213, (452,240,0): 187, 198, 220, (452,241,0): 184, 199, 222, (452,242,0): 180, 197, 223, (452,243,0): 177, 197, 224, (452,244,0): 173, 196, 228, (452,245,0): 169, 195, 230, (452,246,0): 163, 195, 234, (452,247,0): 161, 194, 237, (452,248,0): 160, 197, 242, (452,249,0): 160, 198, 247, (452,250,0): 159, 199, 250, (452,251,0): 159, 200, 252, (452,252,0): 159, 200, 254, (452,253,0): 160, 201, 255, (452,254,0): 160, 201, 255, (452,255,0): 157, 203, 255, (452,256,0): 153, 203, 255, (452,257,0): 150, 203, 255, (452,258,0): 150, 203, 255, (452,259,0): 150, 203, 255, (452,260,0): 149, 202, 254, (452,261,0): 149, 202, 254, (452,262,0): 148, 201, 253, (452,263,0): 148, 201, 253, (452,264,0): 145, 198, 248, (452,265,0): 143, 199, 248, (452,266,0): 143, 199, 248, (452,267,0): 142, 198, 247, (452,268,0): 142, 198, 247, (452,269,0): 140, 198, 244, (452,270,0): 141, 197, 246, (452,271,0): 140, 198, 248, (452,272,0): 142, 201, 255, (452,273,0): 142, 201, 255, (452,274,0): 142, 201, 255, (452,275,0): 142, 201, 255, (452,276,0): 143, 203, 255, (452,277,0): 143, 203, 255, (452,278,0): 143, 203, 255, (452,279,0): 144, 204, 255, (452,280,0): 140, 200, 254, (452,281,0): 137, 197, 251, (452,282,0): 135, 194, 250, (452,283,0): 134, 193, 251, (452,284,0): 136, 195, 255, (452,285,0): 136, 194, 255, (452,286,0): 133, 191, 255, (452,287,0): 130, 187, 254, (452,288,0): 133, 185, 255, (452,289,0): 132, 184, 255, (452,290,0): 132, 181, 255, (452,291,0): 130, 179, 255, (452,292,0): 130, 175, 255, (452,293,0): 131, 174, 253, (452,294,0): 131, 174, 253, (452,295,0): 129, 174, 255, (452,296,0): 126, 174, 255, (452,297,0): 123, 173, 255, (452,298,0): 124, 172, 255, (452,299,0): 127, 167, 252, (452,300,0): 130, 156, 233, (452,301,0): 118, 127, 196, (452,302,0): 91, 81, 141, (452,303,0): 61, 46, 89, (452,304,0): 42, 34, 58, (452,305,0): 36, 32, 46, (452,306,0): 35, 29, 43, (452,307,0): 33, 27, 41, (452,308,0): 34, 28, 42, (452,309,0): 33, 27, 41, (452,310,0): 31, 23, 38, (452,311,0): 28, 20, 35, (452,312,0): 35, 24, 40, (452,313,0): 35, 24, 40, (452,314,0): 34, 23, 39, (452,315,0): 34, 23, 39, (452,316,0): 34, 21, 38, (452,317,0): 34, 21, 38, (452,318,0): 33, 20, 37, (452,319,0): 33, 20, 37, (452,320,0): 34, 22, 36, (452,321,0): 34, 22, 36, (452,322,0): 34, 22, 36, (452,323,0): 33, 21, 35, (452,324,0): 33, 21, 35, (452,325,0): 32, 20, 34, (452,326,0): 32, 20, 34, (452,327,0): 31, 19, 33, (452,328,0): 30, 18, 32, (452,329,0): 30, 18, 32, (452,330,0): 29, 17, 31, (452,331,0): 29, 17, 31, (452,332,0): 28, 16, 30, (452,333,0): 28, 16, 30, (452,334,0): 27, 15, 29, (452,335,0): 27, 15, 29, (452,336,0): 26, 16, 27, (452,337,0): 26, 16, 27, (452,338,0): 26, 16, 27, (452,339,0): 26, 16, 27, (452,340,0): 26, 16, 27, (452,341,0): 26, 16, 27, (452,342,0): 26, 16, 27, (452,343,0): 26, 16, 27, (452,344,0): 26, 16, 27, (452,345,0): 26, 16, 27, (452,346,0): 26, 16, 27, (452,347,0): 26, 16, 27, (452,348,0): 26, 16, 27, (452,349,0): 26, 16, 27, (452,350,0): 26, 16, 27, (452,351,0): 26, 16, 27, (452,352,0): 25, 13, 27, (452,353,0): 26, 14, 28, (452,354,0): 26, 14, 28, (452,355,0): 26, 14, 28, (452,356,0): 24, 13, 27, (452,357,0): 24, 13, 27, (452,358,0): 24, 13, 27, (452,359,0): 25, 14, 28, (452,360,0): 22, 14, 27, (452,361,0): 22, 14, 27, (452,362,0): 21, 15, 27, (452,363,0): 21, 15, 27, (452,364,0): 20, 14, 26, (452,365,0): 20, 14, 26, (452,366,0): 17, 14, 25, (452,367,0): 17, 14, 25, (452,368,0): 16, 12, 27, (452,369,0): 15, 11, 26, (452,370,0): 16, 10, 24, (452,371,0): 15, 9, 23, (452,372,0): 14, 8, 22, (452,373,0): 15, 9, 23, (452,374,0): 16, 8, 21, (452,375,0): 17, 9, 22, (452,376,0): 25, 15, 26, (452,377,0): 25, 15, 26, (452,378,0): 26, 16, 27, (452,379,0): 27, 17, 28, (452,380,0): 29, 17, 27, (452,381,0): 30, 18, 28, (452,382,0): 31, 19, 29, (452,383,0): 31, 19, 29, (452,384,0): 34, 18, 29, (452,385,0): 34, 18, 29, (452,386,0): 34, 18, 29, (452,387,0): 34, 18, 29, (452,388,0): 34, 18, 29, (452,389,0): 35, 19, 30, (452,390,0): 35, 19, 30, (452,391,0): 35, 19, 30, (452,392,0): 35, 19, 30, (452,393,0): 35, 19, 30, (452,394,0): 35, 19, 30, (452,395,0): 36, 20, 31, (452,396,0): 37, 21, 32, (452,397,0): 37, 21, 32, (452,398,0): 37, 21, 32, (452,399,0): 38, 22, 33, (452,400,0): 37, 23, 36, (452,401,0): 37, 23, 36, (452,402,0): 38, 24, 37, (452,403,0): 40, 26, 39, (452,404,0): 41, 27, 40, (452,405,0): 42, 28, 41, (452,406,0): 43, 29, 42, (452,407,0): 44, 30, 43, (452,408,0): 44, 30, 43, (452,409,0): 45, 31, 44, (452,410,0): 46, 32, 45, (452,411,0): 47, 33, 46, (452,412,0): 49, 35, 48, (452,413,0): 50, 36, 49, (452,414,0): 52, 38, 51, (452,415,0): 52, 38, 51, (452,416,0): 55, 37, 49, (452,417,0): 58, 38, 50, (452,418,0): 59, 39, 51, (452,419,0): 60, 40, 52, (452,420,0): 61, 41, 53, (452,421,0): 62, 42, 54, (452,422,0): 63, 43, 55, (452,423,0): 64, 44, 56, (452,424,0): 65, 45, 57, (452,425,0): 65, 45, 57, (452,426,0): 66, 46, 58, (452,427,0): 67, 47, 59, (452,428,0): 69, 49, 61, (452,429,0): 70, 50, 62, (452,430,0): 71, 51, 63, (452,431,0): 71, 51, 63, (452,432,0): 76, 54, 67, (452,433,0): 77, 53, 67, (452,434,0): 77, 53, 67, (452,435,0): 78, 54, 68, (452,436,0): 78, 54, 68, (452,437,0): 79, 55, 69, (452,438,0): 79, 55, 69, (452,439,0): 79, 55, 69, (452,440,0): 79, 55, 69, (452,441,0): 80, 56, 70, (452,442,0): 82, 58, 72, (452,443,0): 83, 59, 73, (452,444,0): 83, 59, 73, (452,445,0): 82, 58, 72, (452,446,0): 81, 57, 71, (452,447,0): 81, 57, 71, (452,448,0): 84, 60, 76, (452,449,0): 85, 61, 77, (452,450,0): 85, 61, 75, (452,451,0): 85, 61, 75, (452,452,0): 84, 60, 74, (452,453,0): 81, 57, 71, (452,454,0): 79, 55, 68, (452,455,0): 77, 53, 66, (452,456,0): 75, 52, 62, (452,457,0): 72, 49, 59, (452,458,0): 70, 47, 57, (452,459,0): 70, 47, 57, (452,460,0): 71, 48, 56, (452,461,0): 72, 49, 57, (452,462,0): 70, 47, 55, (452,463,0): 68, 45, 51, (452,464,0): 64, 41, 47, (452,465,0): 62, 40, 43, (452,466,0): 58, 36, 39, (452,467,0): 55, 33, 36, (452,468,0): 54, 32, 35, (452,469,0): 54, 34, 36, (452,470,0): 56, 34, 37, (452,471,0): 57, 37, 39, (452,472,0): 54, 32, 35, (452,473,0): 55, 35, 37, (452,474,0): 56, 36, 38, (452,475,0): 56, 36, 38, (452,476,0): 54, 34, 36, (452,477,0): 54, 34, 36, (452,478,0): 57, 37, 39, (452,479,0): 60, 39, 44, (452,480,0): 75, 55, 66, (452,481,0): 80, 60, 72, (452,482,0): 88, 64, 77, (452,483,0): 91, 67, 80, (452,484,0): 88, 68, 77, (452,485,0): 83, 66, 72, (452,486,0): 82, 63, 67, (452,487,0): 82, 62, 64, (452,488,0): 83, 57, 60, (452,489,0): 91, 61, 63, (452,490,0): 100, 66, 67, (452,491,0): 106, 70, 70, (452,492,0): 110, 71, 72, (452,493,0): 113, 71, 72, (452,494,0): 120, 71, 74, (452,495,0): 120, 74, 74, (452,496,0): 117, 77, 77, (452,497,0): 115, 77, 76, (452,498,0): 119, 74, 77, (452,499,0): 124, 75, 81, (452,500,0): 129, 76, 86, (452,501,0): 136, 80, 93, (452,502,0): 139, 85, 101, (452,503,0): 144, 86, 108, (452,504,0): 145, 83, 108, (452,505,0): 149, 79, 107, (452,506,0): 157, 74, 102, (452,507,0): 167, 71, 98, (452,508,0): 182, 73, 94, (452,509,0): 198, 77, 94, (452,510,0): 208, 77, 91, (452,511,0): 206, 78, 93, (452,512,0): 186, 70, 91, (452,513,0): 174, 62, 86, (452,514,0): 180, 60, 87, (452,515,0): 198, 67, 101, (452,516,0): 217, 72, 115, (452,517,0): 230, 78, 125, (452,518,0): 240, 89, 134, (452,519,0): 243, 97, 136, (452,520,0): 255, 120, 153, (452,521,0): 255, 135, 168, (452,522,0): 255, 137, 181, (452,523,0): 255, 116, 171, (452,524,0): 246, 87, 154, (452,525,0): 240, 73, 142, (452,526,0): 243, 70, 133, (452,527,0): 247, 68, 134, (452,528,0): 255, 73, 154, (452,529,0): 255, 71, 164, (452,530,0): 255, 82, 182, (452,531,0): 255, 87, 192, (452,532,0): 251, 79, 187, (452,533,0): 249, 78, 184, (452,534,0): 255, 77, 175, (452,535,0): 247, 67, 154, (452,536,0): 252, 72, 143, (452,537,0): 252, 73, 131, (452,538,0): 251, 74, 120, (452,539,0): 251, 75, 113, (452,540,0): 251, 76, 109, (452,541,0): 251, 72, 102, (452,542,0): 248, 64, 92, (452,543,0): 241, 57, 85, (452,544,0): 240, 61, 91, (452,545,0): 234, 67, 97, (452,546,0): 208, 61, 89, (452,547,0): 183, 53, 79, (452,548,0): 168, 56, 80, (452,549,0): 152, 50, 72, (452,550,0): 141, 44, 64, (452,551,0): 143, 49, 67, (452,552,0): 149, 55, 69, (452,553,0): 149, 58, 67, (452,554,0): 151, 64, 72, (452,555,0): 142, 61, 67, (452,556,0): 129, 54, 61, (452,557,0): 132, 62, 70, (452,558,0): 134, 66, 79, (452,559,0): 117, 55, 70, (452,560,0): 105, 52, 68, (452,561,0): 103, 56, 72, (452,562,0): 103, 59, 74, (452,563,0): 102, 60, 72, (452,564,0): 96, 56, 67, (452,565,0): 91, 51, 62, (452,566,0): 90, 48, 60, (452,567,0): 92, 50, 60, (452,568,0): 95, 52, 62, (452,569,0): 98, 52, 62, (452,570,0): 98, 52, 62, (452,571,0): 91, 50, 58, (452,572,0): 84, 48, 52, (452,573,0): 80, 48, 51, (452,574,0): 81, 52, 54, (452,575,0): 85, 56, 58, (452,576,0): 89, 58, 64, (452,577,0): 88, 57, 63, (452,578,0): 86, 57, 62, (452,579,0): 82, 55, 60, (452,580,0): 80, 53, 58, (452,581,0): 76, 54, 57, (452,582,0): 74, 52, 55, (452,583,0): 73, 53, 55, (452,584,0): 72, 53, 55, (452,585,0): 71, 52, 54, (452,586,0): 70, 50, 52, (452,587,0): 71, 51, 53, (452,588,0): 73, 51, 54, (452,589,0): 72, 50, 53, (452,590,0): 70, 45, 49, (452,591,0): 67, 42, 46, (452,592,0): 60, 38, 41, (452,593,0): 59, 37, 40, (452,594,0): 56, 34, 37, (452,595,0): 55, 33, 36, (452,596,0): 54, 32, 35, (452,597,0): 54, 32, 35, (452,598,0): 55, 33, 36, (452,599,0): 56, 34, 37, (453,0,0): 65, 71, 61, (453,1,0): 64, 70, 60, (453,2,0): 63, 69, 59, (453,3,0): 61, 67, 57, (453,4,0): 61, 67, 57, (453,5,0): 61, 67, 57, (453,6,0): 62, 68, 58, (453,7,0): 62, 68, 58, (453,8,0): 65, 71, 61, (453,9,0): 65, 71, 61, (453,10,0): 65, 71, 61, (453,11,0): 65, 71, 61, (453,12,0): 66, 72, 62, (453,13,0): 66, 72, 62, (453,14,0): 66, 72, 62, (453,15,0): 66, 72, 62, (453,16,0): 67, 74, 67, (453,17,0): 67, 74, 67, (453,18,0): 68, 75, 68, (453,19,0): 68, 75, 68, (453,20,0): 69, 76, 69, (453,21,0): 69, 76, 69, (453,22,0): 70, 77, 70, (453,23,0): 70, 77, 70, (453,24,0): 72, 79, 72, (453,25,0): 72, 79, 72, (453,26,0): 72, 79, 72, (453,27,0): 72, 79, 72, (453,28,0): 72, 79, 72, (453,29,0): 72, 79, 72, (453,30,0): 72, 79, 72, (453,31,0): 73, 78, 72, (453,32,0): 76, 79, 72, (453,33,0): 77, 78, 72, (453,34,0): 77, 78, 72, (453,35,0): 78, 79, 73, (453,36,0): 80, 80, 72, (453,37,0): 80, 80, 72, (453,38,0): 80, 80, 72, (453,39,0): 81, 81, 73, (453,40,0): 81, 78, 69, (453,41,0): 80, 77, 68, (453,42,0): 81, 77, 66, (453,43,0): 81, 77, 66, (453,44,0): 80, 76, 65, (453,45,0): 79, 75, 64, (453,46,0): 81, 75, 63, (453,47,0): 82, 74, 63, (453,48,0): 85, 75, 63, (453,49,0): 87, 75, 63, (453,50,0): 86, 74, 62, (453,51,0): 86, 74, 62, (453,52,0): 85, 73, 61, (453,53,0): 85, 73, 61, (453,54,0): 84, 72, 60, (453,55,0): 84, 72, 60, (453,56,0): 85, 73, 61, (453,57,0): 85, 73, 61, (453,58,0): 85, 73, 61, (453,59,0): 84, 72, 60, (453,60,0): 84, 72, 60, (453,61,0): 84, 72, 60, (453,62,0): 83, 71, 59, (453,63,0): 83, 71, 59, (453,64,0): 87, 75, 63, (453,65,0): 87, 75, 63, (453,66,0): 87, 75, 63, (453,67,0): 87, 75, 63, (453,68,0): 87, 75, 63, (453,69,0): 87, 75, 63, (453,70,0): 87, 75, 63, (453,71,0): 87, 75, 63, (453,72,0): 84, 72, 60, (453,73,0): 84, 72, 60, (453,74,0): 83, 71, 59, (453,75,0): 82, 70, 58, (453,76,0): 81, 69, 57, (453,77,0): 80, 68, 56, (453,78,0): 79, 67, 55, (453,79,0): 79, 67, 53, (453,80,0): 79, 65, 52, (453,81,0): 80, 67, 51, (453,82,0): 80, 67, 51, (453,83,0): 81, 68, 52, (453,84,0): 82, 66, 51, (453,85,0): 81, 65, 50, (453,86,0): 79, 63, 48, (453,87,0): 78, 62, 47, (453,88,0): 81, 63, 49, (453,89,0): 80, 62, 48, (453,90,0): 79, 60, 46, (453,91,0): 77, 58, 44, (453,92,0): 75, 56, 42, (453,93,0): 73, 54, 40, (453,94,0): 72, 53, 39, (453,95,0): 71, 52, 38, (453,96,0): 69, 51, 37, (453,97,0): 69, 51, 37, (453,98,0): 68, 50, 36, (453,99,0): 67, 49, 35, (453,100,0): 66, 48, 34, (453,101,0): 65, 47, 33, (453,102,0): 64, 46, 32, (453,103,0): 64, 46, 32, (453,104,0): 64, 46, 32, (453,105,0): 63, 45, 31, (453,106,0): 63, 45, 31, (453,107,0): 63, 45, 31, (453,108,0): 62, 44, 30, (453,109,0): 61, 43, 29, (453,110,0): 61, 43, 29, (453,111,0): 61, 43, 29, (453,112,0): 62, 44, 34, (453,113,0): 63, 45, 35, (453,114,0): 64, 46, 36, (453,115,0): 64, 46, 36, (453,116,0): 65, 47, 37, (453,117,0): 64, 46, 36, (453,118,0): 63, 45, 35, (453,119,0): 62, 44, 34, (453,120,0): 62, 44, 34, (453,121,0): 62, 44, 34, (453,122,0): 62, 44, 34, (453,123,0): 63, 45, 35, (453,124,0): 63, 45, 35, (453,125,0): 64, 46, 36, (453,126,0): 64, 46, 36, (453,127,0): 64, 46, 36, (453,128,0): 63, 44, 38, (453,129,0): 64, 45, 39, (453,130,0): 66, 47, 41, (453,131,0): 68, 49, 43, (453,132,0): 70, 51, 45, (453,133,0): 72, 53, 47, (453,134,0): 74, 55, 49, (453,135,0): 75, 56, 50, (453,136,0): 74, 55, 49, (453,137,0): 75, 56, 50, (453,138,0): 75, 56, 50, (453,139,0): 75, 56, 50, (453,140,0): 76, 57, 51, (453,141,0): 76, 57, 51, (453,142,0): 77, 58, 52, (453,143,0): 77, 58, 52, (453,144,0): 80, 61, 55, (453,145,0): 80, 61, 55, (453,146,0): 80, 61, 55, (453,147,0): 80, 61, 55, (453,148,0): 80, 61, 55, (453,149,0): 80, 61, 55, (453,150,0): 80, 61, 55, (453,151,0): 80, 61, 55, (453,152,0): 83, 64, 58, (453,153,0): 83, 64, 58, (453,154,0): 83, 64, 58, (453,155,0): 84, 65, 59, (453,156,0): 84, 65, 59, (453,157,0): 85, 66, 60, (453,158,0): 85, 66, 60, (453,159,0): 86, 67, 61, (453,160,0): 87, 68, 64, (453,161,0): 88, 69, 65, (453,162,0): 89, 70, 66, (453,163,0): 90, 71, 67, (453,164,0): 91, 72, 68, (453,165,0): 92, 73, 69, (453,166,0): 93, 74, 70, (453,167,0): 93, 74, 70, (453,168,0): 94, 75, 71, (453,169,0): 94, 75, 71, (453,170,0): 95, 76, 72, (453,171,0): 96, 77, 73, (453,172,0): 97, 78, 74, (453,173,0): 98, 79, 75, (453,174,0): 99, 80, 76, (453,175,0): 99, 81, 77, (453,176,0): 97, 79, 77, (453,177,0): 95, 80, 77, (453,178,0): 95, 79, 79, (453,179,0): 96, 80, 80, (453,180,0): 97, 81, 81, (453,181,0): 98, 82, 82, (453,182,0): 99, 83, 84, (453,183,0): 99, 83, 84, (453,184,0): 101, 85, 88, (453,185,0): 101, 85, 88, (453,186,0): 101, 85, 88, (453,187,0): 102, 86, 89, (453,188,0): 104, 87, 93, (453,189,0): 106, 89, 95, (453,190,0): 109, 92, 98, (453,191,0): 110, 94, 97, (453,192,0): 112, 93, 97, (453,193,0): 114, 94, 96, (453,194,0): 115, 95, 96, (453,195,0): 116, 96, 97, (453,196,0): 116, 94, 96, (453,197,0): 113, 91, 93, (453,198,0): 112, 88, 88, (453,199,0): 111, 85, 86, (453,200,0): 104, 78, 79, (453,201,0): 104, 76, 75, (453,202,0): 102, 72, 72, (453,203,0): 99, 67, 68, (453,204,0): 97, 66, 64, (453,205,0): 98, 64, 63, (453,206,0): 99, 65, 64, (453,207,0): 100, 66, 65, (453,208,0): 98, 64, 63, (453,209,0): 97, 66, 64, (453,210,0): 101, 67, 66, (453,211,0): 101, 70, 68, (453,212,0): 105, 71, 72, (453,213,0): 105, 73, 74, (453,214,0): 109, 75, 76, (453,215,0): 107, 75, 76, (453,216,0): 111, 76, 80, (453,217,0): 112, 80, 83, (453,218,0): 117, 82, 88, (453,219,0): 117, 85, 90, (453,220,0): 119, 84, 90, (453,221,0): 119, 87, 92, (453,222,0): 124, 89, 96, (453,223,0): 126, 93, 102, (453,224,0): 133, 99, 113, (453,225,0): 135, 101, 115, (453,226,0): 140, 108, 123, (453,227,0): 149, 118, 133, (453,228,0): 163, 135, 149, (453,229,0): 180, 153, 168, (453,230,0): 195, 171, 187, (453,231,0): 203, 182, 197, (453,232,0): 202, 184, 200, (453,233,0): 203, 186, 204, (453,234,0): 203, 188, 207, (453,235,0): 205, 192, 210, (453,236,0): 204, 195, 214, (453,237,0): 203, 196, 214, (453,238,0): 202, 195, 213, (453,239,0): 198, 195, 214, (453,240,0): 192, 197, 216, (453,241,0): 188, 199, 219, (453,242,0): 186, 198, 220, (453,243,0): 182, 198, 223, (453,244,0): 177, 197, 224, (453,245,0): 173, 196, 228, (453,246,0): 168, 196, 233, (453,247,0): 164, 196, 235, (453,248,0): 163, 198, 240, (453,249,0): 162, 199, 244, (453,250,0): 163, 201, 250, (453,251,0): 162, 202, 251, (453,252,0): 163, 203, 254, (453,253,0): 163, 205, 255, (453,254,0): 162, 204, 254, (453,255,0): 161, 204, 255, (453,256,0): 155, 205, 255, (453,257,0): 153, 206, 255, (453,258,0): 153, 206, 255, (453,259,0): 152, 206, 253, (453,260,0): 152, 205, 255, (453,261,0): 151, 205, 252, (453,262,0): 151, 205, 252, (453,263,0): 151, 205, 252, (453,264,0): 148, 202, 249, (453,265,0): 147, 201, 247, (453,266,0): 145, 202, 247, (453,267,0): 145, 202, 247, (453,268,0): 144, 201, 246, (453,269,0): 144, 201, 244, (453,270,0): 143, 200, 243, (453,271,0): 143, 199, 246, (453,272,0): 146, 204, 254, (453,273,0): 145, 205, 255, (453,274,0): 145, 205, 255, (453,275,0): 145, 205, 255, (453,276,0): 145, 205, 255, (453,277,0): 145, 205, 255, (453,278,0): 145, 206, 253, (453,279,0): 145, 206, 253, (453,280,0): 142, 202, 252, (453,281,0): 139, 199, 251, (453,282,0): 137, 197, 251, (453,283,0): 137, 196, 252, (453,284,0): 138, 197, 255, (453,285,0): 138, 197, 255, (453,286,0): 135, 193, 255, (453,287,0): 135, 190, 255, (453,288,0): 135, 185, 255, (453,289,0): 134, 183, 255, (453,290,0): 132, 181, 255, (453,291,0): 131, 178, 255, (453,292,0): 130, 175, 255, (453,293,0): 131, 173, 255, (453,294,0): 132, 173, 255, (453,295,0): 131, 173, 255, (453,296,0): 127, 173, 255, (453,297,0): 127, 173, 255, (453,298,0): 127, 173, 255, (453,299,0): 129, 167, 248, (453,300,0): 127, 151, 225, (453,301,0): 110, 118, 181, (453,302,0): 85, 76, 129, (453,303,0): 61, 46, 85, (453,304,0): 44, 36, 57, (453,305,0): 40, 34, 48, (453,306,0): 36, 30, 44, (453,307,0): 33, 27, 41, (453,308,0): 34, 28, 42, (453,309,0): 33, 27, 41, (453,310,0): 33, 25, 40, (453,311,0): 31, 23, 38, (453,312,0): 35, 24, 40, (453,313,0): 35, 24, 40, (453,314,0): 34, 23, 39, (453,315,0): 34, 23, 39, (453,316,0): 34, 21, 38, (453,317,0): 34, 21, 38, (453,318,0): 33, 20, 37, (453,319,0): 33, 20, 37, (453,320,0): 33, 21, 35, (453,321,0): 33, 21, 35, (453,322,0): 33, 21, 35, (453,323,0): 32, 20, 34, (453,324,0): 32, 20, 34, (453,325,0): 31, 19, 33, (453,326,0): 31, 19, 33, (453,327,0): 31, 19, 33, (453,328,0): 30, 18, 32, (453,329,0): 30, 18, 32, (453,330,0): 29, 17, 31, (453,331,0): 29, 17, 31, (453,332,0): 28, 16, 30, (453,333,0): 28, 16, 30, (453,334,0): 27, 15, 29, (453,335,0): 27, 15, 29, (453,336,0): 26, 16, 27, (453,337,0): 26, 16, 27, (453,338,0): 26, 16, 27, (453,339,0): 26, 16, 27, (453,340,0): 26, 16, 27, (453,341,0): 26, 16, 27, (453,342,0): 26, 16, 27, (453,343,0): 26, 16, 27, (453,344,0): 25, 15, 26, (453,345,0): 25, 15, 26, (453,346,0): 25, 15, 26, (453,347,0): 25, 15, 26, (453,348,0): 25, 15, 26, (453,349,0): 25, 15, 26, (453,350,0): 25, 15, 26, (453,351,0): 25, 15, 26, (453,352,0): 24, 12, 26, (453,353,0): 26, 14, 28, (453,354,0): 27, 15, 29, (453,355,0): 26, 14, 28, (453,356,0): 24, 13, 27, (453,357,0): 23, 12, 26, (453,358,0): 24, 13, 27, (453,359,0): 26, 15, 29, (453,360,0): 21, 13, 26, (453,361,0): 21, 13, 26, (453,362,0): 21, 15, 27, (453,363,0): 22, 16, 28, (453,364,0): 22, 16, 28, (453,365,0): 21, 15, 27, (453,366,0): 18, 15, 26, (453,367,0): 17, 14, 25, (453,368,0): 16, 12, 27, (453,369,0): 16, 12, 27, (453,370,0): 16, 10, 24, (453,371,0): 15, 9, 23, (453,372,0): 15, 9, 23, (453,373,0): 16, 10, 24, (453,374,0): 17, 9, 22, (453,375,0): 18, 10, 23, (453,376,0): 25, 15, 26, (453,377,0): 25, 15, 26, (453,378,0): 26, 16, 27, (453,379,0): 27, 17, 28, (453,380,0): 29, 17, 27, (453,381,0): 30, 18, 28, (453,382,0): 31, 19, 29, (453,383,0): 31, 19, 29, (453,384,0): 32, 16, 27, (453,385,0): 33, 17, 28, (453,386,0): 33, 17, 28, (453,387,0): 33, 17, 28, (453,388,0): 34, 18, 29, (453,389,0): 34, 18, 29, (453,390,0): 35, 19, 30, (453,391,0): 35, 19, 30, (453,392,0): 35, 19, 30, (453,393,0): 36, 20, 31, (453,394,0): 36, 20, 31, (453,395,0): 37, 21, 32, (453,396,0): 37, 21, 32, (453,397,0): 38, 22, 33, (453,398,0): 38, 22, 33, (453,399,0): 38, 22, 33, (453,400,0): 39, 26, 36, (453,401,0): 39, 26, 36, (453,402,0): 40, 26, 39, (453,403,0): 40, 27, 37, (453,404,0): 41, 27, 40, (453,405,0): 42, 29, 39, (453,406,0): 43, 29, 42, (453,407,0): 43, 30, 40, (453,408,0): 45, 31, 44, (453,409,0): 46, 33, 43, (453,410,0): 47, 33, 46, (453,411,0): 48, 35, 45, (453,412,0): 50, 36, 49, (453,413,0): 51, 38, 48, (453,414,0): 53, 39, 52, (453,415,0): 55, 39, 50, (453,416,0): 56, 38, 50, (453,417,0): 58, 38, 50, (453,418,0): 59, 39, 51, (453,419,0): 61, 41, 53, (453,420,0): 62, 42, 54, (453,421,0): 64, 44, 56, (453,422,0): 65, 45, 57, (453,423,0): 66, 46, 58, (453,424,0): 68, 48, 60, (453,425,0): 68, 48, 60, (453,426,0): 68, 48, 60, (453,427,0): 69, 49, 61, (453,428,0): 70, 50, 62, (453,429,0): 70, 50, 62, (453,430,0): 71, 51, 63, (453,431,0): 71, 51, 63, (453,432,0): 76, 52, 66, (453,433,0): 76, 52, 66, (453,434,0): 76, 52, 66, (453,435,0): 77, 53, 67, (453,436,0): 77, 53, 67, (453,437,0): 78, 54, 68, (453,438,0): 78, 54, 68, (453,439,0): 78, 54, 68, (453,440,0): 77, 53, 67, (453,441,0): 78, 54, 68, (453,442,0): 79, 55, 69, (453,443,0): 80, 56, 70, (453,444,0): 79, 55, 69, (453,445,0): 78, 54, 68, (453,446,0): 77, 53, 67, (453,447,0): 76, 52, 66, (453,448,0): 81, 57, 73, (453,449,0): 82, 58, 74, (453,450,0): 84, 60, 74, (453,451,0): 84, 60, 74, (453,452,0): 83, 59, 73, (453,453,0): 81, 57, 71, (453,454,0): 78, 54, 67, (453,455,0): 77, 53, 66, (453,456,0): 73, 50, 60, (453,457,0): 70, 47, 57, (453,458,0): 67, 44, 54, (453,459,0): 66, 43, 53, (453,460,0): 67, 44, 52, (453,461,0): 68, 45, 53, (453,462,0): 66, 43, 51, (453,463,0): 65, 42, 48, (453,464,0): 61, 38, 44, (453,465,0): 60, 38, 41, (453,466,0): 58, 36, 39, (453,467,0): 56, 34, 37, (453,468,0): 54, 32, 35, (453,469,0): 53, 31, 34, (453,470,0): 53, 31, 34, (453,471,0): 53, 31, 34, (453,472,0): 51, 26, 30, (453,473,0): 54, 29, 33, (453,474,0): 56, 31, 35, (453,475,0): 57, 32, 36, (453,476,0): 56, 31, 35, (453,477,0): 56, 31, 35, (453,478,0): 59, 34, 38, (453,479,0): 62, 37, 43, (453,480,0): 72, 46, 55, (453,481,0): 76, 50, 61, (453,482,0): 83, 56, 65, (453,483,0): 86, 60, 69, (453,484,0): 85, 62, 68, (453,485,0): 82, 61, 66, (453,486,0): 80, 58, 61, (453,487,0): 80, 55, 58, (453,488,0): 84, 54, 56, (453,489,0): 91, 56, 60, (453,490,0): 99, 60, 63, (453,491,0): 106, 64, 68, (453,492,0): 112, 67, 70, (453,493,0): 117, 68, 72, (453,494,0): 122, 67, 73, (453,495,0): 121, 69, 73, (453,496,0): 109, 67, 68, (453,497,0): 109, 69, 70, (453,498,0): 118, 69, 73, (453,499,0): 124, 71, 79, (453,500,0): 131, 73, 85, (453,501,0): 138, 77, 93, (453,502,0): 141, 82, 102, (453,503,0): 143, 83, 108, (453,504,0): 142, 79, 106, (453,505,0): 147, 77, 105, (453,506,0): 155, 70, 99, (453,507,0): 163, 64, 92, (453,508,0): 182, 66, 89, (453,509,0): 203, 74, 92, (453,510,0): 219, 81, 96, (453,511,0): 220, 83, 99, (453,512,0): 198, 79, 101, (453,513,0): 182, 66, 89, (453,514,0): 192, 65, 86, (453,515,0): 213, 74, 97, (453,516,0): 222, 70, 95, (453,517,0): 227, 68, 98, (453,518,0): 241, 83, 116, (453,519,0): 250, 98, 136, (453,520,0): 255, 123, 165, (453,521,0): 255, 143, 198, (453,522,0): 255, 151, 226, (453,523,0): 255, 135, 220, (453,524,0): 254, 109, 204, (453,525,0): 249, 95, 189, (453,526,0): 249, 90, 174, (453,527,0): 248, 84, 170, (453,528,0): 250, 80, 179, (453,529,0): 250, 80, 189, (453,530,0): 252, 89, 204, (453,531,0): 249, 90, 209, (453,532,0): 241, 81, 205, (453,533,0): 247, 85, 207, (453,534,0): 255, 90, 205, (453,535,0): 255, 86, 190, (453,536,0): 247, 74, 163, (453,537,0): 248, 76, 148, (453,538,0): 250, 78, 134, (453,539,0): 251, 80, 124, (453,540,0): 253, 78, 111, (453,541,0): 253, 73, 100, (453,542,0): 253, 65, 89, (453,543,0): 249, 62, 83, (453,544,0): 239, 60, 81, (453,545,0): 238, 72, 92, (453,546,0): 214, 68, 89, (453,547,0): 182, 56, 78, (453,548,0): 162, 53, 76, (453,549,0): 149, 49, 73, (453,550,0): 147, 49, 72, (453,551,0): 157, 58, 79, (453,552,0): 179, 78, 96, (453,553,0): 174, 73, 87, (453,554,0): 168, 73, 81, (453,555,0): 150, 60, 69, (453,556,0): 126, 43, 51, (453,557,0): 123, 47, 57, (453,558,0): 131, 59, 73, (453,559,0): 125, 61, 77, (453,560,0): 110, 56, 72, (453,561,0): 101, 55, 68, (453,562,0): 97, 55, 67, (453,563,0): 96, 58, 69, (453,564,0): 92, 59, 68, (453,565,0): 86, 55, 61, (453,566,0): 84, 51, 58, (453,567,0): 88, 53, 60, (453,568,0): 95, 55, 63, (453,569,0): 99, 58, 66, (453,570,0): 100, 57, 66, (453,571,0): 95, 54, 62, (453,572,0): 86, 50, 54, (453,573,0): 79, 47, 50, (453,574,0): 79, 50, 52, (453,575,0): 83, 54, 56, (453,576,0): 89, 56, 63, (453,577,0): 89, 56, 63, (453,578,0): 87, 56, 62, (453,579,0): 85, 56, 61, (453,580,0): 82, 55, 60, (453,581,0): 81, 56, 60, (453,582,0): 78, 56, 59, (453,583,0): 77, 57, 59, (453,584,0): 77, 57, 59, (453,585,0): 74, 55, 57, (453,586,0): 73, 53, 55, (453,587,0): 74, 54, 56, (453,588,0): 75, 53, 56, (453,589,0): 74, 52, 55, (453,590,0): 72, 47, 51, (453,591,0): 69, 44, 48, (453,592,0): 62, 40, 43, (453,593,0): 60, 38, 41, (453,594,0): 57, 35, 38, (453,595,0): 54, 32, 35, (453,596,0): 53, 31, 34, (453,597,0): 53, 31, 34, (453,598,0): 54, 32, 35, (453,599,0): 55, 33, 36, (454,0,0): 63, 69, 59, (454,1,0): 62, 68, 58, (454,2,0): 61, 67, 57, (454,3,0): 60, 66, 56, (454,4,0): 59, 65, 55, (454,5,0): 59, 65, 55, (454,6,0): 60, 66, 56, (454,7,0): 61, 67, 57, (454,8,0): 61, 67, 57, (454,9,0): 62, 68, 58, (454,10,0): 62, 68, 58, (454,11,0): 63, 69, 59, (454,12,0): 64, 70, 60, (454,13,0): 65, 71, 61, (454,14,0): 65, 71, 61, (454,15,0): 66, 72, 62, (454,16,0): 66, 73, 66, (454,17,0): 66, 73, 66, (454,18,0): 67, 74, 67, (454,19,0): 67, 74, 67, (454,20,0): 68, 75, 68, (454,21,0): 68, 75, 68, (454,22,0): 69, 76, 69, (454,23,0): 69, 76, 69, (454,24,0): 72, 79, 72, (454,25,0): 72, 79, 72, (454,26,0): 72, 79, 72, (454,27,0): 72, 79, 72, (454,28,0): 72, 79, 72, (454,29,0): 72, 79, 72, (454,30,0): 72, 79, 72, (454,31,0): 73, 78, 72, (454,32,0): 74, 77, 70, (454,33,0): 76, 77, 71, (454,34,0): 76, 77, 71, (454,35,0): 77, 78, 72, (454,36,0): 78, 78, 70, (454,37,0): 79, 79, 71, (454,38,0): 79, 79, 71, (454,39,0): 79, 79, 71, (454,40,0): 81, 78, 69, (454,41,0): 81, 78, 69, (454,42,0): 81, 77, 66, (454,43,0): 81, 77, 66, (454,44,0): 80, 76, 65, (454,45,0): 80, 76, 65, (454,46,0): 82, 76, 64, (454,47,0): 82, 74, 63, (454,48,0): 85, 75, 63, (454,49,0): 87, 75, 63, (454,50,0): 87, 75, 63, (454,51,0): 86, 74, 62, (454,52,0): 85, 73, 61, (454,53,0): 84, 72, 60, (454,54,0): 84, 72, 60, (454,55,0): 84, 72, 60, (454,56,0): 84, 72, 60, (454,57,0): 84, 72, 60, (454,58,0): 84, 72, 60, (454,59,0): 85, 73, 61, (454,60,0): 85, 73, 61, (454,61,0): 85, 73, 61, (454,62,0): 86, 74, 62, (454,63,0): 86, 74, 62, (454,64,0): 86, 72, 61, (454,65,0): 86, 72, 61, (454,66,0): 86, 72, 61, (454,67,0): 86, 72, 61, (454,68,0): 86, 72, 61, (454,69,0): 86, 72, 61, (454,70,0): 86, 72, 61, (454,71,0): 86, 72, 61, (454,72,0): 85, 71, 60, (454,73,0): 85, 71, 60, (454,74,0): 84, 70, 59, (454,75,0): 83, 69, 58, (454,76,0): 82, 68, 57, (454,77,0): 81, 67, 56, (454,78,0): 80, 66, 55, (454,79,0): 80, 66, 53, (454,80,0): 80, 64, 51, (454,81,0): 80, 64, 49, (454,82,0): 81, 65, 50, (454,83,0): 82, 66, 51, (454,84,0): 81, 65, 50, (454,85,0): 80, 64, 49, (454,86,0): 80, 62, 48, (454,87,0): 79, 61, 47, (454,88,0): 80, 62, 48, (454,89,0): 79, 61, 47, (454,90,0): 77, 59, 45, (454,91,0): 75, 57, 43, (454,92,0): 73, 55, 41, (454,93,0): 71, 53, 39, (454,94,0): 70, 52, 38, (454,95,0): 69, 51, 37, (454,96,0): 71, 53, 39, (454,97,0): 70, 52, 38, (454,98,0): 69, 51, 37, (454,99,0): 68, 50, 36, (454,100,0): 67, 49, 35, (454,101,0): 66, 48, 34, (454,102,0): 65, 47, 33, (454,103,0): 64, 46, 32, (454,104,0): 62, 44, 30, (454,105,0): 62, 44, 30, (454,106,0): 62, 44, 30, (454,107,0): 61, 43, 29, (454,108,0): 61, 43, 29, (454,109,0): 60, 42, 28, (454,110,0): 60, 42, 28, (454,111,0): 59, 41, 27, (454,112,0): 62, 44, 34, (454,113,0): 63, 45, 35, (454,114,0): 64, 46, 36, (454,115,0): 64, 46, 36, (454,116,0): 64, 46, 36, (454,117,0): 63, 45, 35, (454,118,0): 62, 44, 34, (454,119,0): 61, 43, 33, (454,120,0): 59, 41, 31, (454,121,0): 60, 42, 32, (454,122,0): 60, 42, 32, (454,123,0): 61, 43, 33, (454,124,0): 61, 43, 33, (454,125,0): 62, 44, 34, (454,126,0): 63, 45, 35, (454,127,0): 63, 45, 35, (454,128,0): 62, 43, 37, (454,129,0): 62, 43, 37, (454,130,0): 64, 45, 39, (454,131,0): 66, 47, 41, (454,132,0): 68, 49, 43, (454,133,0): 70, 51, 45, (454,134,0): 72, 53, 47, (454,135,0): 73, 54, 48, (454,136,0): 72, 53, 47, (454,137,0): 72, 53, 47, (454,138,0): 73, 54, 48, (454,139,0): 73, 54, 48, (454,140,0): 74, 55, 49, (454,141,0): 74, 55, 49, (454,142,0): 75, 56, 50, (454,143,0): 75, 56, 50, (454,144,0): 78, 59, 53, (454,145,0): 78, 59, 53, (454,146,0): 78, 59, 53, (454,147,0): 78, 59, 53, (454,148,0): 78, 59, 53, (454,149,0): 78, 59, 53, (454,150,0): 78, 59, 53, (454,151,0): 78, 59, 53, (454,152,0): 82, 63, 57, (454,153,0): 83, 64, 58, (454,154,0): 83, 64, 58, (454,155,0): 84, 65, 59, (454,156,0): 84, 65, 59, (454,157,0): 85, 66, 60, (454,158,0): 85, 66, 60, (454,159,0): 85, 66, 60, (454,160,0): 87, 68, 64, (454,161,0): 87, 68, 64, (454,162,0): 88, 69, 65, (454,163,0): 89, 70, 66, (454,164,0): 90, 71, 67, (454,165,0): 91, 72, 68, (454,166,0): 92, 73, 69, (454,167,0): 93, 74, 70, (454,168,0): 93, 74, 70, (454,169,0): 93, 74, 70, (454,170,0): 94, 75, 71, (454,171,0): 95, 76, 72, (454,172,0): 96, 77, 73, (454,173,0): 97, 78, 74, (454,174,0): 98, 79, 75, (454,175,0): 97, 79, 75, (454,176,0): 97, 79, 77, (454,177,0): 95, 80, 77, (454,178,0): 95, 79, 79, (454,179,0): 95, 79, 79, (454,180,0): 95, 79, 79, (454,181,0): 96, 80, 80, (454,182,0): 96, 80, 81, (454,183,0): 96, 80, 81, (454,184,0): 97, 81, 84, (454,185,0): 98, 82, 85, (454,186,0): 98, 82, 85, (454,187,0): 100, 84, 87, (454,188,0): 103, 86, 92, (454,189,0): 106, 89, 95, (454,190,0): 109, 92, 98, (454,191,0): 111, 95, 98, (454,192,0): 109, 93, 96, (454,193,0): 112, 93, 95, (454,194,0): 114, 95, 97, (454,195,0): 114, 95, 97, (454,196,0): 114, 94, 95, (454,197,0): 113, 91, 93, (454,198,0): 110, 88, 90, (454,199,0): 110, 86, 86, (454,200,0): 106, 80, 81, (454,201,0): 105, 76, 78, (454,202,0): 101, 73, 72, (454,203,0): 98, 68, 68, (454,204,0): 95, 65, 65, (454,205,0): 96, 64, 65, (454,206,0): 97, 66, 64, (454,207,0): 98, 67, 65, (454,208,0): 96, 65, 63, (454,209,0): 95, 65, 63, (454,210,0): 98, 66, 67, (454,211,0): 99, 69, 69, (454,212,0): 102, 70, 71, (454,213,0): 103, 73, 73, (454,214,0): 106, 74, 77, (454,215,0): 106, 76, 78, (454,216,0): 107, 75, 80, (454,217,0): 109, 78, 83, (454,218,0): 114, 82, 87, (454,219,0): 115, 84, 89, (454,220,0): 116, 83, 90, (454,221,0): 116, 85, 91, (454,222,0): 120, 87, 94, (454,223,0): 122, 89, 98, (454,224,0): 121, 88, 99, (454,225,0): 128, 95, 106, (454,226,0): 139, 105, 119, (454,227,0): 148, 116, 129, (454,228,0): 159, 127, 140, (454,229,0): 172, 141, 156, (454,230,0): 185, 157, 171, (454,231,0): 192, 168, 182, (454,232,0): 200, 177, 193, (454,233,0): 200, 179, 194, (454,234,0): 201, 183, 199, (454,235,0): 203, 186, 202, (454,236,0): 206, 189, 205, (454,237,0): 207, 193, 208, (454,238,0): 209, 195, 212, (454,239,0): 206, 197, 214, (454,240,0): 195, 197, 212, (454,241,0): 191, 198, 216, (454,242,0): 189, 197, 216, (454,243,0): 187, 198, 220, (454,244,0): 182, 198, 224, (454,245,0): 178, 197, 227, (454,246,0): 173, 197, 231, (454,247,0): 170, 198, 235, (454,248,0): 165, 197, 238, (454,249,0): 165, 200, 242, (454,250,0): 165, 202, 247, (454,251,0): 166, 204, 251, (454,252,0): 166, 206, 255, (454,253,0): 166, 206, 255, (454,254,0): 165, 205, 254, (454,255,0): 163, 207, 255, (454,256,0): 160, 208, 255, (454,257,0): 157, 209, 255, (454,258,0): 157, 209, 255, (454,259,0): 156, 208, 255, (454,260,0): 155, 207, 255, (454,261,0): 155, 207, 254, (454,262,0): 155, 207, 254, (454,263,0): 154, 207, 251, (454,264,0): 152, 206, 250, (454,265,0): 152, 206, 250, (454,266,0): 152, 206, 250, (454,267,0): 151, 206, 247, (454,268,0): 149, 207, 247, (454,269,0): 148, 206, 246, (454,270,0): 148, 206, 246, (454,271,0): 148, 205, 248, (454,272,0): 149, 207, 253, (454,273,0): 149, 207, 255, (454,274,0): 148, 206, 254, (454,275,0): 148, 206, 254, (454,276,0): 148, 206, 252, (454,277,0): 148, 206, 252, (454,278,0): 148, 206, 252, (454,279,0): 148, 206, 252, (454,280,0): 146, 204, 252, (454,281,0): 144, 202, 250, (454,282,0): 141, 199, 249, (454,283,0): 141, 198, 251, (454,284,0): 142, 198, 255, (454,285,0): 142, 198, 255, (454,286,0): 140, 196, 255, (454,287,0): 137, 192, 255, (454,288,0): 135, 185, 255, (454,289,0): 135, 182, 255, (454,290,0): 132, 181, 255, (454,291,0): 131, 178, 255, (454,292,0): 130, 175, 255, (454,293,0): 131, 173, 255, (454,294,0): 132, 173, 255, (454,295,0): 132, 172, 255, (454,296,0): 127, 172, 255, (454,297,0): 129, 173, 255, (454,298,0): 130, 175, 255, (454,299,0): 132, 169, 249, (454,300,0): 125, 149, 219, (454,301,0): 106, 116, 175, (454,302,0): 85, 79, 125, (454,303,0): 67, 56, 88, (454,304,0): 49, 40, 59, (454,305,0): 43, 35, 48, (454,306,0): 37, 29, 42, (454,307,0): 34, 26, 39, (454,308,0): 34, 26, 39, (454,309,0): 35, 27, 40, (454,310,0): 35, 27, 40, (454,311,0): 34, 26, 39, (454,312,0): 33, 25, 38, (454,313,0): 33, 25, 38, (454,314,0): 34, 23, 37, (454,315,0): 34, 23, 37, (454,316,0): 33, 22, 36, (454,317,0): 33, 22, 36, (454,318,0): 32, 21, 35, (454,319,0): 32, 21, 35, (454,320,0): 32, 20, 34, (454,321,0): 32, 20, 34, (454,322,0): 32, 20, 34, (454,323,0): 31, 19, 33, (454,324,0): 31, 19, 33, (454,325,0): 30, 18, 32, (454,326,0): 30, 18, 32, (454,327,0): 30, 18, 32, (454,328,0): 30, 18, 32, (454,329,0): 30, 18, 32, (454,330,0): 29, 17, 31, (454,331,0): 29, 17, 31, (454,332,0): 28, 16, 30, (454,333,0): 28, 16, 30, (454,334,0): 27, 15, 29, (454,335,0): 27, 15, 29, (454,336,0): 26, 15, 29, (454,337,0): 26, 15, 29, (454,338,0): 26, 15, 29, (454,339,0): 26, 15, 29, (454,340,0): 26, 15, 29, (454,341,0): 26, 15, 29, (454,342,0): 26, 15, 29, (454,343,0): 26, 15, 29, (454,344,0): 24, 13, 27, (454,345,0): 24, 13, 27, (454,346,0): 24, 13, 27, (454,347,0): 24, 13, 27, (454,348,0): 24, 13, 27, (454,349,0): 24, 13, 27, (454,350,0): 24, 13, 27, (454,351,0): 24, 13, 27, (454,352,0): 24, 12, 26, (454,353,0): 26, 14, 28, (454,354,0): 28, 16, 30, (454,355,0): 27, 15, 29, (454,356,0): 23, 12, 26, (454,357,0): 22, 11, 25, (454,358,0): 24, 13, 27, (454,359,0): 26, 15, 29, (454,360,0): 20, 12, 25, (454,361,0): 21, 13, 26, (454,362,0): 22, 16, 28, (454,363,0): 23, 17, 29, (454,364,0): 23, 17, 29, (454,365,0): 22, 16, 28, (454,366,0): 19, 16, 27, (454,367,0): 18, 15, 26, (454,368,0): 16, 12, 27, (454,369,0): 16, 12, 27, (454,370,0): 17, 11, 25, (454,371,0): 16, 10, 24, (454,372,0): 16, 10, 24, (454,373,0): 17, 11, 25, (454,374,0): 19, 11, 24, (454,375,0): 20, 12, 25, (454,376,0): 25, 15, 26, (454,377,0): 25, 15, 26, (454,378,0): 26, 16, 27, (454,379,0): 27, 17, 28, (454,380,0): 29, 17, 27, (454,381,0): 30, 18, 28, (454,382,0): 31, 19, 29, (454,383,0): 31, 19, 29, (454,384,0): 31, 15, 26, (454,385,0): 31, 15, 26, (454,386,0): 31, 15, 26, (454,387,0): 32, 16, 27, (454,388,0): 33, 17, 28, (454,389,0): 34, 18, 29, (454,390,0): 34, 18, 29, (454,391,0): 34, 18, 29, (454,392,0): 36, 20, 31, (454,393,0): 36, 20, 31, (454,394,0): 36, 20, 31, (454,395,0): 37, 21, 32, (454,396,0): 37, 21, 32, (454,397,0): 38, 22, 33, (454,398,0): 38, 22, 33, (454,399,0): 39, 23, 34, (454,400,0): 43, 27, 38, (454,401,0): 43, 27, 37, (454,402,0): 43, 27, 38, (454,403,0): 43, 27, 37, (454,404,0): 43, 27, 38, (454,405,0): 44, 28, 38, (454,406,0): 44, 28, 39, (454,407,0): 44, 28, 38, (454,408,0): 48, 32, 43, (454,409,0): 48, 32, 42, (454,410,0): 49, 33, 44, (454,411,0): 51, 35, 45, (454,412,0): 53, 37, 48, (454,413,0): 54, 38, 48, (454,414,0): 55, 39, 50, (454,415,0): 56, 40, 50, (454,416,0): 56, 39, 49, (454,417,0): 58, 38, 49, (454,418,0): 60, 40, 51, (454,419,0): 61, 41, 52, (454,420,0): 63, 43, 54, (454,421,0): 65, 45, 56, (454,422,0): 66, 46, 57, (454,423,0): 67, 47, 58, (454,424,0): 70, 50, 61, (454,425,0): 70, 50, 61, (454,426,0): 70, 50, 61, (454,427,0): 71, 51, 62, (454,428,0): 71, 51, 62, (454,429,0): 71, 51, 62, (454,430,0): 71, 51, 62, (454,431,0): 71, 51, 62, (454,432,0): 75, 51, 64, (454,433,0): 75, 51, 64, (454,434,0): 75, 51, 64, (454,435,0): 76, 52, 65, (454,436,0): 76, 52, 65, (454,437,0): 77, 53, 66, (454,438,0): 77, 53, 66, (454,439,0): 78, 54, 67, (454,440,0): 76, 52, 65, (454,441,0): 76, 52, 65, (454,442,0): 77, 53, 66, (454,443,0): 77, 53, 66, (454,444,0): 76, 52, 65, (454,445,0): 74, 50, 63, (454,446,0): 73, 49, 62, (454,447,0): 72, 48, 62, (454,448,0): 76, 53, 69, (454,449,0): 78, 55, 71, (454,450,0): 80, 58, 71, (454,451,0): 82, 60, 73, (454,452,0): 82, 60, 73, (454,453,0): 80, 58, 71, (454,454,0): 77, 55, 67, (454,455,0): 75, 53, 65, (454,456,0): 71, 50, 59, (454,457,0): 67, 46, 55, (454,458,0): 63, 42, 51, (454,459,0): 62, 41, 50, (454,460,0): 63, 42, 49, (454,461,0): 64, 43, 50, (454,462,0): 63, 42, 49, (454,463,0): 62, 39, 45, (454,464,0): 58, 35, 41, (454,465,0): 61, 36, 40, (454,466,0): 60, 35, 39, (454,467,0): 59, 34, 38, (454,468,0): 58, 33, 37, (454,469,0): 55, 30, 34, (454,470,0): 53, 28, 32, (454,471,0): 51, 26, 30, (454,472,0): 49, 22, 27, (454,473,0): 52, 25, 30, (454,474,0): 55, 28, 33, (454,475,0): 55, 28, 33, (454,476,0): 53, 26, 31, (454,477,0): 53, 26, 31, (454,478,0): 55, 28, 33, (454,479,0): 59, 30, 35, (454,480,0): 68, 39, 44, (454,481,0): 72, 41, 47, (454,482,0): 78, 47, 53, (454,483,0): 83, 52, 58, (454,484,0): 85, 56, 61, (454,485,0): 82, 56, 59, (454,486,0): 81, 52, 56, (454,487,0): 79, 49, 51, (454,488,0): 84, 49, 53, (454,489,0): 91, 50, 56, (454,490,0): 99, 54, 59, (454,491,0): 107, 58, 64, (454,492,0): 115, 59, 68, (454,493,0): 120, 60, 70, (454,494,0): 122, 59, 70, (454,495,0): 121, 60, 68, (454,496,0): 110, 60, 61, (454,497,0): 112, 64, 64, (454,498,0): 122, 65, 71, (454,499,0): 132, 69, 78, (454,500,0): 141, 73, 88, (454,501,0): 145, 76, 94, (454,502,0): 145, 80, 102, (454,503,0): 145, 81, 107, (454,504,0): 146, 82, 109, (454,505,0): 144, 73, 103, (454,506,0): 145, 60, 91, (454,507,0): 152, 52, 80, (454,508,0): 175, 57, 81, (454,509,0): 203, 70, 91, (454,510,0): 217, 74, 92, (454,511,0): 213, 72, 89, (454,512,0): 193, 67, 91, (454,513,0): 184, 60, 86, (454,514,0): 205, 69, 89, (454,515,0): 228, 79, 98, (454,516,0): 228, 67, 85, (454,517,0): 228, 60, 83, (454,518,0): 242, 74, 107, (454,519,0): 249, 89, 135, (454,520,0): 255, 106, 170, (454,521,0): 255, 124, 210, (454,522,0): 255, 134, 241, (454,523,0): 255, 128, 248, (454,524,0): 255, 121, 245, (454,525,0): 255, 120, 239, (454,526,0): 255, 114, 219, (454,527,0): 245, 100, 201, (454,528,0): 245, 98, 202, (454,529,0): 249, 103, 212, (454,530,0): 253, 112, 227, (454,531,0): 248, 108, 230, (454,532,0): 236, 96, 221, (454,533,0): 244, 98, 225, (454,534,0): 255, 103, 227, (454,535,0): 255, 96, 212, (454,536,0): 251, 88, 193, (454,537,0): 253, 89, 178, (454,538,0): 253, 87, 161, (454,539,0): 252, 83, 142, (454,540,0): 251, 75, 122, (454,541,0): 251, 69, 107, (454,542,0): 255, 64, 95, (454,543,0): 255, 65, 88, (454,544,0): 246, 66, 78, (454,545,0): 243, 77, 87, (454,546,0): 217, 70, 86, (454,547,0): 184, 55, 75, (454,548,0): 167, 55, 79, (454,549,0): 159, 56, 83, (454,550,0): 157, 59, 84, (454,551,0): 166, 66, 90, (454,552,0): 182, 76, 96, (454,553,0): 172, 65, 81, (454,554,0): 170, 64, 76, (454,555,0): 161, 61, 71, (454,556,0): 139, 49, 59, (454,557,0): 132, 52, 65, (454,558,0): 138, 65, 82, (454,559,0): 137, 74, 91, (454,560,0): 115, 63, 76, (454,561,0): 102, 56, 67, (454,562,0): 93, 53, 62, (454,563,0): 94, 59, 66, (454,564,0): 94, 63, 69, (454,565,0): 89, 60, 64, (454,566,0): 87, 56, 61, (454,567,0): 89, 57, 62, (454,568,0): 95, 58, 65, (454,569,0): 101, 61, 69, (454,570,0): 105, 64, 72, (454,571,0): 101, 60, 68, (454,572,0): 94, 53, 61, (454,573,0): 86, 49, 56, (454,574,0): 86, 51, 55, (454,575,0): 87, 55, 58, (454,576,0): 90, 55, 62, (454,577,0): 88, 55, 62, (454,578,0): 87, 56, 62, (454,579,0): 86, 57, 62, (454,580,0): 84, 57, 62, (454,581,0): 83, 58, 62, (454,582,0): 81, 59, 62, (454,583,0): 80, 60, 62, (454,584,0): 80, 60, 62, (454,585,0): 78, 58, 60, (454,586,0): 77, 55, 58, (454,587,0): 77, 55, 58, (454,588,0): 80, 55, 59, (454,589,0): 78, 53, 57, (454,590,0): 75, 48, 53, (454,591,0): 71, 46, 50, (454,592,0): 64, 42, 45, (454,593,0): 61, 39, 42, (454,594,0): 58, 36, 39, (454,595,0): 54, 32, 35, (454,596,0): 52, 30, 33, (454,597,0): 52, 30, 33, (454,598,0): 53, 31, 34, (454,599,0): 54, 32, 35, (455,0,0): 62, 68, 58, (455,1,0): 61, 67, 57, (455,2,0): 60, 66, 56, (455,3,0): 58, 64, 54, (455,4,0): 58, 64, 54, (455,5,0): 58, 64, 54, (455,6,0): 59, 65, 55, (455,7,0): 59, 65, 55, (455,8,0): 59, 65, 55, (455,9,0): 60, 66, 56, (455,10,0): 60, 66, 56, (455,11,0): 62, 68, 58, (455,12,0): 63, 69, 59, (455,13,0): 64, 70, 60, (455,14,0): 65, 71, 61, (455,15,0): 66, 71, 64, (455,16,0): 66, 73, 66, (455,17,0): 66, 73, 66, (455,18,0): 66, 73, 66, (455,19,0): 67, 74, 67, (455,20,0): 67, 74, 67, (455,21,0): 68, 75, 68, (455,22,0): 68, 75, 68, (455,23,0): 69, 76, 69, (455,24,0): 72, 79, 72, (455,25,0): 72, 79, 72, (455,26,0): 72, 79, 72, (455,27,0): 72, 79, 72, (455,28,0): 72, 79, 72, (455,29,0): 72, 79, 72, (455,30,0): 72, 79, 72, (455,31,0): 73, 78, 72, (455,32,0): 73, 76, 69, (455,33,0): 75, 76, 70, (455,34,0): 75, 76, 70, (455,35,0): 76, 77, 71, (455,36,0): 77, 77, 69, (455,37,0): 78, 78, 70, (455,38,0): 78, 78, 70, (455,39,0): 78, 78, 70, (455,40,0): 81, 78, 69, (455,41,0): 81, 78, 69, (455,42,0): 82, 78, 67, (455,43,0): 81, 77, 66, (455,44,0): 81, 77, 66, (455,45,0): 80, 76, 65, (455,46,0): 82, 76, 64, (455,47,0): 82, 74, 63, (455,48,0): 86, 76, 64, (455,49,0): 87, 75, 63, (455,50,0): 87, 75, 63, (455,51,0): 86, 74, 62, (455,52,0): 85, 73, 61, (455,53,0): 84, 72, 60, (455,54,0): 84, 72, 60, (455,55,0): 83, 71, 59, (455,56,0): 83, 71, 59, (455,57,0): 84, 72, 60, (455,58,0): 84, 72, 60, (455,59,0): 85, 73, 61, (455,60,0): 86, 74, 62, (455,61,0): 87, 75, 63, (455,62,0): 87, 75, 63, (455,63,0): 87, 75, 63, (455,64,0): 85, 71, 60, (455,65,0): 85, 71, 60, (455,66,0): 85, 71, 60, (455,67,0): 85, 71, 60, (455,68,0): 85, 71, 60, (455,69,0): 85, 71, 60, (455,70,0): 85, 71, 60, (455,71,0): 85, 71, 60, (455,72,0): 85, 71, 60, (455,73,0): 84, 70, 59, (455,74,0): 84, 70, 59, (455,75,0): 83, 69, 58, (455,76,0): 82, 68, 57, (455,77,0): 81, 67, 56, (455,78,0): 80, 66, 55, (455,79,0): 79, 65, 52, (455,80,0): 79, 63, 50, (455,81,0): 80, 64, 49, (455,82,0): 81, 65, 50, (455,83,0): 81, 65, 50, (455,84,0): 81, 65, 50, (455,85,0): 80, 64, 49, (455,86,0): 80, 62, 48, (455,87,0): 79, 61, 47, (455,88,0): 78, 60, 46, (455,89,0): 77, 59, 45, (455,90,0): 76, 58, 44, (455,91,0): 74, 56, 42, (455,92,0): 72, 54, 40, (455,93,0): 70, 52, 38, (455,94,0): 68, 50, 36, (455,95,0): 67, 49, 35, (455,96,0): 72, 54, 40, (455,97,0): 71, 53, 39, (455,98,0): 70, 52, 38, (455,99,0): 69, 51, 37, (455,100,0): 68, 50, 36, (455,101,0): 66, 48, 34, (455,102,0): 65, 47, 33, (455,103,0): 65, 47, 33, (455,104,0): 61, 43, 29, (455,105,0): 61, 43, 29, (455,106,0): 61, 43, 29, (455,107,0): 60, 42, 28, (455,108,0): 60, 42, 28, (455,109,0): 59, 41, 27, (455,110,0): 59, 41, 27, (455,111,0): 58, 40, 26, (455,112,0): 62, 44, 34, (455,113,0): 63, 45, 35, (455,114,0): 64, 46, 36, (455,115,0): 64, 46, 36, (455,116,0): 64, 46, 36, (455,117,0): 63, 45, 35, (455,118,0): 61, 43, 33, (455,119,0): 61, 43, 33, (455,120,0): 58, 40, 30, (455,121,0): 58, 40, 30, (455,122,0): 59, 41, 31, (455,123,0): 59, 41, 31, (455,124,0): 60, 42, 32, (455,125,0): 61, 43, 33, (455,126,0): 62, 44, 34, (455,127,0): 62, 44, 34, (455,128,0): 60, 41, 35, (455,129,0): 61, 42, 36, (455,130,0): 63, 44, 38, (455,131,0): 65, 46, 40, (455,132,0): 67, 48, 42, (455,133,0): 69, 50, 44, (455,134,0): 71, 52, 46, (455,135,0): 71, 52, 46, (455,136,0): 71, 52, 46, (455,137,0): 71, 52, 46, (455,138,0): 71, 52, 46, (455,139,0): 72, 53, 47, (455,140,0): 72, 53, 47, (455,141,0): 73, 54, 48, (455,142,0): 73, 54, 48, (455,143,0): 73, 54, 48, (455,144,0): 77, 58, 52, (455,145,0): 77, 58, 52, (455,146,0): 77, 58, 52, (455,147,0): 77, 58, 52, (455,148,0): 77, 58, 52, (455,149,0): 77, 58, 52, (455,150,0): 77, 58, 52, (455,151,0): 77, 58, 52, (455,152,0): 82, 63, 57, (455,153,0): 82, 63, 57, (455,154,0): 83, 64, 58, (455,155,0): 83, 64, 58, (455,156,0): 84, 65, 59, (455,157,0): 84, 65, 59, (455,158,0): 85, 66, 60, (455,159,0): 85, 66, 60, (455,160,0): 87, 68, 64, (455,161,0): 87, 68, 64, (455,162,0): 88, 69, 65, (455,163,0): 89, 70, 66, (455,164,0): 90, 71, 67, (455,165,0): 91, 72, 68, (455,166,0): 92, 73, 69, (455,167,0): 92, 73, 69, (455,168,0): 92, 73, 69, (455,169,0): 92, 73, 69, (455,170,0): 93, 74, 70, (455,171,0): 94, 75, 71, (455,172,0): 95, 76, 72, (455,173,0): 96, 77, 73, (455,174,0): 97, 78, 74, (455,175,0): 96, 78, 74, (455,176,0): 97, 79, 77, (455,177,0): 95, 80, 77, (455,178,0): 95, 79, 79, (455,179,0): 94, 78, 78, (455,180,0): 94, 78, 78, (455,181,0): 94, 78, 78, (455,182,0): 94, 78, 79, (455,183,0): 94, 78, 79, (455,184,0): 95, 79, 82, (455,185,0): 95, 79, 82, (455,186,0): 97, 81, 84, (455,187,0): 99, 83, 86, (455,188,0): 102, 85, 91, (455,189,0): 106, 89, 95, (455,190,0): 109, 92, 98, (455,191,0): 111, 94, 100, (455,192,0): 108, 92, 95, (455,193,0): 110, 94, 95, (455,194,0): 111, 95, 96, (455,195,0): 114, 95, 97, (455,196,0): 113, 94, 96, (455,197,0): 112, 92, 93, (455,198,0): 109, 89, 90, (455,199,0): 108, 86, 88, (455,200,0): 105, 80, 83, (455,201,0): 103, 77, 78, (455,202,0): 99, 73, 74, (455,203,0): 96, 68, 67, (455,204,0): 95, 65, 65, (455,205,0): 95, 65, 65, (455,206,0): 96, 66, 66, (455,207,0): 97, 67, 65, (455,208,0): 94, 64, 62, (455,209,0): 95, 65, 63, (455,210,0): 97, 67, 67, (455,211,0): 99, 69, 69, (455,212,0): 101, 71, 71, (455,213,0): 103, 73, 73, (455,214,0): 104, 74, 76, (455,215,0): 105, 75, 77, (455,216,0): 105, 74, 79, (455,217,0): 108, 77, 82, (455,218,0): 113, 82, 87, (455,219,0): 115, 84, 89, (455,220,0): 115, 84, 90, (455,221,0): 115, 84, 90, (455,222,0): 118, 87, 93, (455,223,0): 120, 89, 97, (455,224,0): 112, 79, 88, (455,225,0): 125, 89, 101, (455,226,0): 139, 106, 117, (455,227,0): 150, 117, 128, (455,228,0): 157, 124, 135, (455,229,0): 165, 133, 146, (455,230,0): 176, 146, 158, (455,231,0): 184, 156, 170, (455,232,0): 200, 174, 187, (455,233,0): 201, 175, 188, (455,234,0): 201, 177, 191, (455,235,0): 204, 182, 195, (455,236,0): 208, 186, 199, (455,237,0): 212, 192, 204, (455,238,0): 216, 195, 210, (455,239,0): 213, 199, 214, (455,240,0): 199, 195, 210, (455,241,0): 195, 197, 212, (455,242,0): 194, 197, 216, (455,243,0): 190, 196, 218, (455,244,0): 186, 196, 221, (455,245,0): 182, 197, 226, (455,246,0): 178, 197, 229, (455,247,0): 174, 198, 234, (455,248,0): 168, 196, 235, (455,249,0): 167, 199, 240, (455,250,0): 169, 202, 245, (455,251,0): 170, 204, 249, (455,252,0): 170, 207, 252, (455,253,0): 169, 207, 252, (455,254,0): 168, 206, 253, (455,255,0): 166, 207, 253, (455,256,0): 165, 209, 255, (455,257,0): 162, 210, 255, (455,258,0): 161, 209, 255, (455,259,0): 159, 210, 255, (455,260,0): 158, 209, 254, (455,261,0): 158, 209, 254, (455,262,0): 157, 208, 253, (455,263,0): 156, 209, 251, (455,264,0): 157, 210, 252, (455,265,0): 157, 210, 252, (455,266,0): 156, 211, 252, (455,267,0): 155, 210, 249, (455,268,0): 155, 210, 249, (455,269,0): 152, 210, 248, (455,270,0): 152, 210, 248, (455,271,0): 152, 210, 248, (455,272,0): 151, 208, 251, (455,273,0): 151, 208, 253, (455,274,0): 151, 208, 253, (455,275,0): 150, 207, 250, (455,276,0): 150, 207, 250, (455,277,0): 150, 207, 250, (455,278,0): 149, 206, 249, (455,279,0): 149, 206, 249, (455,280,0): 149, 206, 251, (455,281,0): 146, 202, 249, (455,282,0): 143, 199, 248, (455,283,0): 143, 199, 250, (455,284,0): 145, 200, 255, (455,285,0): 144, 199, 255, (455,286,0): 142, 196, 255, (455,287,0): 139, 193, 255, (455,288,0): 135, 185, 255, (455,289,0): 134, 183, 255, (455,290,0): 132, 181, 255, (455,291,0): 130, 179, 255, (455,292,0): 129, 176, 255, (455,293,0): 131, 173, 255, (455,294,0): 132, 173, 255, (455,295,0): 132, 173, 255, (455,296,0): 128, 170, 254, (455,297,0): 131, 173, 255, (455,298,0): 134, 176, 255, (455,299,0): 135, 171, 247, (455,300,0): 125, 150, 216, (455,301,0): 106, 118, 170, (455,302,0): 87, 85, 125, (455,303,0): 76, 66, 93, (455,304,0): 51, 42, 61, (455,305,0): 45, 37, 50, (455,306,0): 38, 30, 43, (455,307,0): 34, 26, 39, (455,308,0): 34, 26, 39, (455,309,0): 36, 28, 41, (455,310,0): 36, 28, 41, (455,311,0): 36, 28, 41, (455,312,0): 33, 25, 38, (455,313,0): 33, 25, 38, (455,314,0): 34, 23, 37, (455,315,0): 34, 23, 37, (455,316,0): 33, 22, 36, (455,317,0): 33, 22, 36, (455,318,0): 32, 21, 35, (455,319,0): 32, 21, 35, (455,320,0): 32, 20, 34, (455,321,0): 31, 19, 33, (455,322,0): 31, 19, 33, (455,323,0): 30, 18, 32, (455,324,0): 30, 18, 32, (455,325,0): 29, 17, 31, (455,326,0): 29, 17, 31, (455,327,0): 29, 17, 31, (455,328,0): 30, 18, 32, (455,329,0): 30, 18, 32, (455,330,0): 29, 17, 31, (455,331,0): 29, 17, 31, (455,332,0): 28, 16, 30, (455,333,0): 28, 16, 30, (455,334,0): 27, 15, 29, (455,335,0): 27, 15, 29, (455,336,0): 26, 15, 29, (455,337,0): 26, 15, 29, (455,338,0): 26, 15, 29, (455,339,0): 26, 15, 29, (455,340,0): 26, 15, 29, (455,341,0): 26, 15, 29, (455,342,0): 26, 15, 29, (455,343,0): 26, 15, 29, (455,344,0): 23, 12, 26, (455,345,0): 23, 12, 26, (455,346,0): 23, 12, 26, (455,347,0): 23, 12, 26, (455,348,0): 23, 12, 26, (455,349,0): 23, 12, 26, (455,350,0): 23, 12, 26, (455,351,0): 23, 12, 26, (455,352,0): 23, 11, 25, (455,353,0): 26, 14, 28, (455,354,0): 28, 16, 30, (455,355,0): 27, 15, 29, (455,356,0): 23, 12, 26, (455,357,0): 22, 11, 25, (455,358,0): 24, 13, 27, (455,359,0): 27, 16, 30, (455,360,0): 20, 12, 25, (455,361,0): 21, 13, 26, (455,362,0): 22, 16, 28, (455,363,0): 23, 17, 29, (455,364,0): 24, 18, 30, (455,365,0): 23, 17, 29, (455,366,0): 19, 16, 27, (455,367,0): 18, 15, 26, (455,368,0): 16, 12, 27, (455,369,0): 16, 12, 27, (455,370,0): 17, 11, 25, (455,371,0): 17, 11, 25, (455,372,0): 17, 11, 25, (455,373,0): 18, 12, 26, (455,374,0): 21, 13, 26, (455,375,0): 22, 14, 27, (455,376,0): 25, 15, 26, (455,377,0): 25, 15, 26, (455,378,0): 26, 16, 27, (455,379,0): 27, 17, 28, (455,380,0): 29, 17, 27, (455,381,0): 30, 18, 28, (455,382,0): 31, 19, 29, (455,383,0): 31, 19, 29, (455,384,0): 30, 14, 25, (455,385,0): 30, 14, 25, (455,386,0): 30, 14, 25, (455,387,0): 31, 15, 26, (455,388,0): 32, 16, 27, (455,389,0): 33, 17, 28, (455,390,0): 34, 18, 29, (455,391,0): 34, 18, 29, (455,392,0): 36, 20, 31, (455,393,0): 36, 20, 31, (455,394,0): 37, 21, 32, (455,395,0): 37, 21, 32, (455,396,0): 38, 22, 33, (455,397,0): 38, 22, 33, (455,398,0): 39, 23, 34, (455,399,0): 39, 23, 34, (455,400,0): 44, 28, 38, (455,401,0): 44, 28, 38, (455,402,0): 45, 28, 38, (455,403,0): 44, 28, 38, (455,404,0): 44, 27, 37, (455,405,0): 43, 27, 37, (455,406,0): 44, 27, 37, (455,407,0): 43, 27, 37, (455,408,0): 49, 32, 42, (455,409,0): 49, 33, 43, (455,410,0): 51, 34, 44, (455,411,0): 51, 35, 45, (455,412,0): 54, 37, 47, (455,413,0): 55, 39, 49, (455,414,0): 57, 40, 50, (455,415,0): 57, 40, 50, (455,416,0): 58, 38, 49, (455,417,0): 59, 39, 50, (455,418,0): 60, 40, 51, (455,419,0): 62, 42, 53, (455,420,0): 64, 44, 55, (455,421,0): 66, 46, 57, (455,422,0): 67, 47, 58, (455,423,0): 68, 48, 59, (455,424,0): 72, 52, 63, (455,425,0): 72, 52, 63, (455,426,0): 72, 52, 63, (455,427,0): 72, 52, 63, (455,428,0): 72, 52, 63, (455,429,0): 72, 52, 63, (455,430,0): 72, 52, 63, (455,431,0): 73, 51, 63, (455,432,0): 74, 50, 63, (455,433,0): 75, 51, 64, (455,434,0): 75, 51, 64, (455,435,0): 75, 51, 64, (455,436,0): 76, 52, 65, (455,437,0): 77, 53, 66, (455,438,0): 77, 53, 66, (455,439,0): 77, 53, 66, (455,440,0): 75, 51, 64, (455,441,0): 76, 52, 65, (455,442,0): 76, 52, 65, (455,443,0): 75, 51, 64, (455,444,0): 74, 50, 63, (455,445,0): 72, 48, 61, (455,446,0): 70, 46, 59, (455,447,0): 69, 45, 58, (455,448,0): 74, 52, 65, (455,449,0): 76, 53, 69, (455,450,0): 79, 57, 70, (455,451,0): 81, 59, 72, (455,452,0): 81, 59, 72, (455,453,0): 80, 58, 71, (455,454,0): 77, 55, 67, (455,455,0): 75, 53, 65, (455,456,0): 71, 50, 59, (455,457,0): 67, 46, 55, (455,458,0): 62, 41, 50, (455,459,0): 61, 40, 49, (455,460,0): 62, 41, 48, (455,461,0): 62, 41, 48, (455,462,0): 61, 40, 47, (455,463,0): 60, 39, 44, (455,464,0): 57, 34, 40, (455,465,0): 60, 35, 39, (455,466,0): 61, 36, 40, (455,467,0): 61, 36, 40, (455,468,0): 59, 34, 38, (455,469,0): 55, 30, 34, (455,470,0): 53, 26, 31, (455,471,0): 50, 23, 28, (455,472,0): 48, 21, 26, (455,473,0): 50, 23, 28, (455,474,0): 55, 26, 31, (455,475,0): 54, 25, 30, (455,476,0): 52, 23, 28, (455,477,0): 51, 22, 27, (455,478,0): 53, 22, 28, (455,479,0): 55, 24, 30, (455,480,0): 68, 36, 41, (455,481,0): 73, 38, 42, (455,482,0): 79, 44, 48, (455,483,0): 83, 51, 54, (455,484,0): 86, 54, 57, (455,485,0): 85, 53, 56, (455,486,0): 82, 50, 53, (455,487,0): 82, 48, 49, (455,488,0): 84, 45, 50, (455,489,0): 89, 47, 51, (455,490,0): 98, 49, 55, (455,491,0): 105, 52, 60, (455,492,0): 112, 55, 64, (455,493,0): 117, 55, 66, (455,494,0): 120, 54, 66, (455,495,0): 118, 55, 64, (455,496,0): 111, 56, 59, (455,497,0): 116, 60, 63, (455,498,0): 130, 63, 72, (455,499,0): 143, 67, 80, (455,500,0): 150, 72, 88, (455,501,0): 153, 76, 96, (455,502,0): 152, 78, 101, (455,503,0): 149, 81, 106, (455,504,0): 163, 94, 123, (455,505,0): 154, 81, 110, (455,506,0): 148, 59, 89, (455,507,0): 153, 48, 78, (455,508,0): 181, 59, 84, (455,509,0): 212, 74, 97, (455,510,0): 223, 74, 93, (455,511,0): 213, 66, 85, (455,512,0): 179, 42, 70, (455,513,0): 181, 46, 76, (455,514,0): 216, 68, 92, (455,515,0): 240, 83, 104, (455,516,0): 235, 66, 85, (455,517,0): 230, 56, 79, (455,518,0): 240, 66, 101, (455,519,0): 241, 72, 127, (455,520,0): 244, 87, 168, (455,521,0): 246, 99, 203, (455,522,0): 245, 109, 235, (455,523,0): 243, 113, 249, (455,524,0): 250, 126, 255, (455,525,0): 255, 138, 255, (455,526,0): 251, 131, 239, (455,527,0): 232, 113, 213, (455,528,0): 250, 130, 228, (455,529,0): 255, 138, 238, (455,530,0): 255, 150, 255, (455,531,0): 255, 146, 255, (455,532,0): 247, 128, 246, (455,533,0): 249, 123, 246, (455,534,0): 255, 119, 243, (455,535,0): 251, 106, 227, (455,536,0): 255, 107, 218, (455,537,0): 255, 104, 203, (455,538,0): 255, 97, 181, (455,539,0): 250, 85, 153, (455,540,0): 246, 71, 126, (455,541,0): 247, 65, 106, (455,542,0): 255, 61, 95, (455,543,0): 255, 65, 88, (455,544,0): 243, 62, 71, (455,545,0): 237, 70, 77, (455,546,0): 211, 59, 72, (455,547,0): 179, 43, 63, (455,548,0): 167, 47, 74, (455,549,0): 161, 54, 82, (455,550,0): 157, 57, 85, (455,551,0): 162, 62, 88, (455,552,0): 190, 84, 104, (455,553,0): 177, 69, 84, (455,554,0): 179, 67, 79, (455,555,0): 177, 70, 80, (455,556,0): 154, 58, 69, (455,557,0): 135, 51, 64, (455,558,0): 128, 57, 71, (455,559,0): 120, 59, 74, (455,560,0): 121, 67, 80, (455,561,0): 104, 57, 67, (455,562,0): 93, 51, 61, (455,563,0): 96, 59, 66, (455,564,0): 98, 66, 71, (455,565,0): 94, 63, 68, (455,566,0): 91, 60, 65, (455,567,0): 92, 60, 65, (455,568,0): 96, 59, 66, (455,569,0): 103, 63, 71, (455,570,0): 109, 66, 75, (455,571,0): 109, 63, 73, (455,572,0): 102, 56, 66, (455,573,0): 95, 52, 61, (455,574,0): 94, 53, 59, (455,575,0): 96, 56, 64, (455,576,0): 90, 53, 61, (455,577,0): 89, 54, 61, (455,578,0): 87, 54, 61, (455,579,0): 87, 56, 62, (455,580,0): 86, 57, 62, (455,581,0): 85, 58, 63, (455,582,0): 84, 59, 63, (455,583,0): 83, 61, 64, (455,584,0): 83, 61, 64, (455,585,0): 80, 60, 62, (455,586,0): 79, 57, 60, (455,587,0): 79, 57, 60, (455,588,0): 81, 56, 60, (455,589,0): 80, 55, 59, (455,590,0): 77, 50, 55, (455,591,0): 73, 46, 51, (455,592,0): 68, 43, 47, (455,593,0): 63, 41, 44, (455,594,0): 58, 36, 39, (455,595,0): 54, 32, 35, (455,596,0): 51, 29, 32, (455,597,0): 51, 29, 32, (455,598,0): 52, 30, 33, (455,599,0): 53, 31, 34, (456,0,0): 65, 70, 63, (456,1,0): 64, 69, 62, (456,2,0): 62, 67, 60, (456,3,0): 60, 65, 58, (456,4,0): 59, 64, 57, (456,5,0): 59, 64, 57, (456,6,0): 59, 64, 57, (456,7,0): 59, 64, 57, (456,8,0): 61, 66, 59, (456,9,0): 61, 66, 59, (456,10,0): 61, 66, 59, (456,11,0): 62, 67, 60, (456,12,0): 62, 67, 60, (456,13,0): 63, 68, 61, (456,14,0): 63, 68, 61, (456,15,0): 63, 68, 61, (456,16,0): 59, 66, 59, (456,17,0): 60, 67, 60, (456,18,0): 61, 68, 61, (456,19,0): 63, 70, 63, (456,20,0): 64, 71, 64, (456,21,0): 64, 71, 64, (456,22,0): 65, 72, 65, (456,23,0): 64, 71, 64, (456,24,0): 69, 76, 69, (456,25,0): 69, 76, 69, (456,26,0): 70, 77, 70, (456,27,0): 71, 78, 71, (456,28,0): 72, 79, 72, (456,29,0): 73, 80, 73, (456,30,0): 74, 81, 74, (456,31,0): 75, 80, 74, (456,32,0): 75, 78, 71, (456,33,0): 77, 78, 72, (456,34,0): 78, 79, 73, (456,35,0): 79, 80, 74, (456,36,0): 80, 80, 72, (456,37,0): 78, 78, 70, (456,38,0): 76, 76, 68, (456,39,0): 75, 75, 67, (456,40,0): 83, 80, 71, (456,41,0): 83, 80, 71, (456,42,0): 83, 79, 68, (456,43,0): 83, 79, 68, (456,44,0): 82, 78, 67, (456,45,0): 82, 78, 67, (456,46,0): 83, 77, 65, (456,47,0): 84, 76, 65, (456,48,0): 84, 74, 62, (456,49,0): 85, 73, 61, (456,50,0): 85, 73, 61, (456,51,0): 84, 72, 60, (456,52,0): 84, 72, 60, (456,53,0): 83, 71, 59, (456,54,0): 83, 71, 59, (456,55,0): 83, 71, 59, (456,56,0): 85, 73, 61, (456,57,0): 85, 73, 61, (456,58,0): 85, 73, 61, (456,59,0): 84, 72, 60, (456,60,0): 84, 72, 60, (456,61,0): 83, 71, 59, (456,62,0): 83, 71, 59, (456,63,0): 82, 70, 58, (456,64,0): 88, 74, 63, (456,65,0): 90, 73, 63, (456,66,0): 89, 72, 62, (456,67,0): 88, 71, 61, (456,68,0): 86, 69, 59, (456,69,0): 85, 68, 58, (456,70,0): 84, 67, 57, (456,71,0): 84, 67, 57, (456,72,0): 85, 68, 58, (456,73,0): 85, 68, 58, (456,74,0): 84, 67, 57, (456,75,0): 83, 66, 56, (456,76,0): 82, 65, 55, (456,77,0): 81, 64, 54, (456,78,0): 80, 63, 53, (456,79,0): 80, 64, 51, (456,80,0): 80, 62, 50, (456,81,0): 80, 62, 48, (456,82,0): 80, 62, 48, (456,83,0): 79, 61, 47, (456,84,0): 79, 61, 47, (456,85,0): 78, 60, 46, (456,86,0): 78, 60, 46, (456,87,0): 78, 60, 46, (456,88,0): 73, 55, 41, (456,89,0): 73, 55, 41, (456,90,0): 73, 57, 42, (456,91,0): 73, 57, 42, (456,92,0): 74, 58, 43, (456,93,0): 74, 58, 43, (456,94,0): 75, 59, 44, (456,95,0): 75, 59, 44, (456,96,0): 71, 53, 39, (456,97,0): 72, 54, 40, (456,98,0): 72, 54, 40, (456,99,0): 71, 53, 39, (456,100,0): 69, 51, 37, (456,101,0): 67, 49, 35, (456,102,0): 65, 47, 33, (456,103,0): 63, 45, 31, (456,104,0): 61, 43, 29, (456,105,0): 61, 43, 29, (456,106,0): 60, 42, 28, (456,107,0): 60, 42, 28, (456,108,0): 59, 41, 27, (456,109,0): 59, 41, 27, (456,110,0): 58, 40, 26, (456,111,0): 58, 40, 26, (456,112,0): 60, 42, 32, (456,113,0): 60, 42, 32, (456,114,0): 60, 42, 32, (456,115,0): 60, 42, 32, (456,116,0): 60, 42, 32, (456,117,0): 60, 42, 32, (456,118,0): 60, 42, 32, (456,119,0): 60, 42, 32, (456,120,0): 62, 44, 34, (456,121,0): 62, 44, 34, (456,122,0): 62, 44, 34, (456,123,0): 61, 43, 33, (456,124,0): 61, 43, 33, (456,125,0): 60, 42, 32, (456,126,0): 60, 42, 32, (456,127,0): 60, 42, 32, (456,128,0): 59, 40, 34, (456,129,0): 59, 40, 34, (456,130,0): 60, 41, 35, (456,131,0): 62, 43, 37, (456,132,0): 63, 44, 38, (456,133,0): 64, 45, 39, (456,134,0): 65, 46, 40, (456,135,0): 66, 47, 41, (456,136,0): 67, 48, 42, (456,137,0): 68, 49, 43, (456,138,0): 69, 50, 44, (456,139,0): 70, 51, 45, (456,140,0): 72, 53, 47, (456,141,0): 74, 55, 49, (456,142,0): 75, 56, 50, (456,143,0): 75, 56, 50, (456,144,0): 76, 57, 51, (456,145,0): 76, 57, 51, (456,146,0): 76, 57, 51, (456,147,0): 77, 58, 52, (456,148,0): 78, 59, 53, (456,149,0): 78, 59, 53, (456,150,0): 78, 59, 53, (456,151,0): 79, 60, 54, (456,152,0): 80, 61, 55, (456,153,0): 80, 61, 55, (456,154,0): 80, 61, 55, (456,155,0): 80, 61, 55, (456,156,0): 81, 62, 56, (456,157,0): 81, 62, 56, (456,158,0): 81, 62, 56, (456,159,0): 81, 62, 56, (456,160,0): 86, 67, 63, (456,161,0): 86, 67, 63, (456,162,0): 86, 67, 63, (456,163,0): 86, 67, 63, (456,164,0): 86, 67, 63, (456,165,0): 86, 67, 63, (456,166,0): 86, 67, 63, (456,167,0): 86, 67, 63, (456,168,0): 91, 72, 68, (456,169,0): 91, 72, 68, (456,170,0): 91, 72, 68, (456,171,0): 92, 73, 69, (456,172,0): 92, 73, 69, (456,173,0): 93, 74, 70, (456,174,0): 93, 74, 70, (456,175,0): 92, 74, 70, (456,176,0): 95, 77, 75, (456,177,0): 93, 78, 75, (456,178,0): 94, 78, 78, (456,179,0): 94, 78, 78, (456,180,0): 94, 78, 78, (456,181,0): 94, 78, 78, (456,182,0): 95, 79, 80, (456,183,0): 95, 79, 80, (456,184,0): 97, 81, 84, (456,185,0): 98, 82, 85, (456,186,0): 99, 83, 86, (456,187,0): 102, 86, 89, (456,188,0): 104, 87, 93, (456,189,0): 107, 90, 96, (456,190,0): 108, 91, 97, (456,191,0): 109, 92, 98, (456,192,0): 109, 94, 97, (456,193,0): 109, 94, 97, (456,194,0): 110, 95, 98, (456,195,0): 111, 95, 96, (456,196,0): 109, 93, 94, (456,197,0): 110, 91, 93, (456,198,0): 109, 89, 91, (456,199,0): 109, 87, 89, (456,200,0): 102, 80, 82, (456,201,0): 102, 78, 78, (456,202,0): 100, 74, 75, (456,203,0): 97, 71, 72, (456,204,0): 97, 68, 70, (456,205,0): 96, 68, 67, (456,206,0): 95, 67, 66, (456,207,0): 95, 67, 66, (456,208,0): 92, 64, 63, (456,209,0): 93, 65, 64, (456,210,0): 94, 65, 67, (456,211,0): 96, 67, 69, (456,212,0): 98, 69, 71, (456,213,0): 100, 71, 73, (456,214,0): 101, 72, 76, (456,215,0): 102, 73, 77, (456,216,0): 107, 78, 83, (456,217,0): 108, 79, 84, (456,218,0): 109, 80, 85, (456,219,0): 111, 82, 87, (456,220,0): 112, 82, 90, (456,221,0): 114, 84, 92, (456,222,0): 115, 85, 93, (456,223,0): 117, 86, 94, (456,224,0): 122, 89, 98, (456,225,0): 126, 90, 100, (456,226,0): 131, 95, 105, (456,227,0): 138, 105, 114, (456,228,0): 149, 116, 125, (456,229,0): 160, 128, 139, (456,230,0): 171, 139, 150, (456,231,0): 176, 146, 158, (456,232,0): 182, 152, 164, (456,233,0): 187, 157, 169, (456,234,0): 193, 165, 179, (456,235,0): 199, 173, 186, (456,236,0): 204, 178, 191, (456,237,0): 210, 184, 197, (456,238,0): 215, 189, 202, (456,239,0): 215, 195, 207, (456,240,0): 204, 193, 207, (456,241,0): 199, 195, 210, (456,242,0): 196, 195, 213, (456,243,0): 192, 194, 215, (456,244,0): 189, 195, 219, (456,245,0): 184, 195, 223, (456,246,0): 180, 195, 226, (456,247,0): 176, 196, 231, (456,248,0): 172, 196, 234, (456,249,0): 170, 198, 237, (456,250,0): 172, 201, 241, (456,251,0): 173, 205, 246, (456,252,0): 175, 208, 251, (456,253,0): 176, 209, 252, (456,254,0): 177, 210, 255, (456,255,0): 174, 211, 255, (456,256,0): 173, 214, 255, (456,257,0): 172, 215, 255, (456,258,0): 172, 215, 255, (456,259,0): 170, 214, 255, (456,260,0): 170, 214, 255, (456,261,0): 166, 213, 255, (456,262,0): 165, 212, 255, (456,263,0): 163, 212, 253, (456,264,0): 162, 211, 252, (456,265,0): 160, 212, 252, (456,266,0): 159, 212, 252, (456,267,0): 158, 214, 251, (456,268,0): 159, 215, 252, (456,269,0): 160, 216, 253, (456,270,0): 160, 218, 255, (456,271,0): 160, 218, 255, (456,272,0): 157, 212, 251, (456,273,0): 155, 210, 249, (456,274,0): 153, 208, 247, (456,275,0): 154, 209, 248, (456,276,0): 157, 212, 251, (456,277,0): 158, 214, 251, (456,278,0): 157, 212, 251, (456,279,0): 155, 210, 249, (456,280,0): 153, 208, 249, (456,281,0): 153, 207, 251, (456,282,0): 151, 205, 251, (456,283,0): 149, 203, 250, (456,284,0): 147, 200, 252, (456,285,0): 146, 199, 253, (456,286,0): 144, 196, 253, (456,287,0): 144, 196, 255, (456,288,0): 137, 187, 255, (456,289,0): 136, 186, 255, (456,290,0): 134, 183, 255, (456,291,0): 131, 180, 255, (456,292,0): 131, 178, 255, (456,293,0): 131, 177, 255, (456,294,0): 134, 175, 255, (456,295,0): 136, 174, 255, (456,296,0): 131, 172, 254, (456,297,0): 134, 175, 255, (456,298,0): 132, 173, 253, (456,299,0): 127, 164, 235, (456,300,0): 124, 150, 211, (456,301,0): 117, 131, 178, (456,302,0): 102, 102, 138, (456,303,0): 87, 79, 103, (456,304,0): 57, 48, 65, (456,305,0): 43, 32, 46, (456,306,0): 40, 29, 43, (456,307,0): 41, 30, 44, (456,308,0): 33, 22, 36, (456,309,0): 31, 20, 34, (456,310,0): 33, 25, 38, (456,311,0): 31, 23, 36, (456,312,0): 31, 23, 36, (456,313,0): 30, 22, 35, (456,314,0): 29, 21, 34, (456,315,0): 27, 19, 32, (456,316,0): 27, 19, 32, (456,317,0): 27, 19, 32, (456,318,0): 28, 20, 33, (456,319,0): 30, 19, 33, (456,320,0): 29, 17, 31, (456,321,0): 29, 17, 31, (456,322,0): 31, 19, 33, (456,323,0): 31, 19, 33, (456,324,0): 31, 19, 33, (456,325,0): 31, 19, 33, (456,326,0): 29, 17, 31, (456,327,0): 29, 17, 31, (456,328,0): 30, 18, 32, (456,329,0): 29, 17, 31, (456,330,0): 27, 15, 29, (456,331,0): 26, 14, 28, (456,332,0): 25, 13, 27, (456,333,0): 26, 14, 28, (456,334,0): 26, 14, 28, (456,335,0): 27, 15, 29, (456,336,0): 24, 13, 27, (456,337,0): 22, 14, 27, (456,338,0): 23, 15, 28, (456,339,0): 23, 15, 28, (456,340,0): 24, 16, 29, (456,341,0): 25, 17, 30, (456,342,0): 26, 18, 31, (456,343,0): 26, 18, 31, (456,344,0): 21, 13, 26, (456,345,0): 23, 15, 28, (456,346,0): 24, 16, 29, (456,347,0): 22, 14, 27, (456,348,0): 20, 12, 25, (456,349,0): 18, 10, 23, (456,350,0): 19, 11, 24, (456,351,0): 23, 12, 26, (456,352,0): 26, 14, 28, (456,353,0): 26, 14, 28, (456,354,0): 26, 14, 28, (456,355,0): 26, 14, 28, (456,356,0): 25, 14, 28, (456,357,0): 25, 14, 28, (456,358,0): 25, 14, 28, (456,359,0): 25, 14, 28, (456,360,0): 20, 12, 25, (456,361,0): 21, 13, 26, (456,362,0): 22, 16, 28, (456,363,0): 22, 16, 28, (456,364,0): 22, 16, 28, (456,365,0): 20, 14, 26, (456,366,0): 16, 13, 24, (456,367,0): 14, 11, 22, (456,368,0): 15, 11, 26, (456,369,0): 16, 12, 27, (456,370,0): 18, 12, 26, (456,371,0): 19, 13, 27, (456,372,0): 21, 15, 29, (456,373,0): 22, 16, 30, (456,374,0): 23, 15, 28, (456,375,0): 24, 16, 29, (456,376,0): 25, 15, 26, (456,377,0): 25, 15, 26, (456,378,0): 25, 15, 26, (456,379,0): 26, 16, 27, (456,380,0): 27, 15, 25, (456,381,0): 28, 16, 26, (456,382,0): 28, 16, 26, (456,383,0): 29, 17, 27, (456,384,0): 34, 18, 29, (456,385,0): 34, 18, 29, (456,386,0): 33, 17, 28, (456,387,0): 33, 17, 28, (456,388,0): 33, 17, 28, (456,389,0): 35, 19, 30, (456,390,0): 36, 20, 31, (456,391,0): 37, 21, 32, (456,392,0): 36, 20, 31, (456,393,0): 36, 20, 31, (456,394,0): 37, 21, 32, (456,395,0): 37, 21, 32, (456,396,0): 38, 22, 33, (456,397,0): 38, 22, 33, (456,398,0): 39, 23, 34, (456,399,0): 39, 23, 34, (456,400,0): 46, 29, 39, (456,401,0): 46, 29, 37, (456,402,0): 48, 28, 37, (456,403,0): 46, 29, 37, (456,404,0): 48, 28, 37, (456,405,0): 46, 29, 37, (456,406,0): 48, 28, 37, (456,407,0): 46, 29, 37, (456,408,0): 49, 29, 38, (456,409,0): 49, 32, 40, (456,410,0): 52, 32, 41, (456,411,0): 50, 33, 41, (456,412,0): 50, 30, 39, (456,413,0): 49, 32, 40, (456,414,0): 55, 35, 44, (456,415,0): 58, 38, 47, (456,416,0): 59, 39, 48, (456,417,0): 60, 39, 48, (456,418,0): 62, 41, 50, (456,419,0): 63, 42, 51, (456,420,0): 65, 44, 53, (456,421,0): 67, 46, 55, (456,422,0): 68, 47, 56, (456,423,0): 69, 48, 57, (456,424,0): 71, 50, 59, (456,425,0): 70, 49, 58, (456,426,0): 70, 49, 58, (456,427,0): 70, 49, 58, (456,428,0): 70, 49, 58, (456,429,0): 70, 49, 58, (456,430,0): 69, 48, 57, (456,431,0): 69, 48, 57, (456,432,0): 76, 53, 63, (456,433,0): 76, 53, 63, (456,434,0): 76, 53, 63, (456,435,0): 76, 53, 63, (456,436,0): 76, 53, 63, (456,437,0): 76, 53, 63, (456,438,0): 76, 53, 63, (456,439,0): 76, 53, 63, (456,440,0): 75, 52, 62, (456,441,0): 74, 51, 61, (456,442,0): 72, 49, 59, (456,443,0): 70, 47, 57, (456,444,0): 69, 46, 56, (456,445,0): 69, 46, 56, (456,446,0): 69, 46, 56, (456,447,0): 70, 46, 59, (456,448,0): 73, 51, 64, (456,449,0): 73, 52, 67, (456,450,0): 75, 55, 67, (456,451,0): 77, 57, 69, (456,452,0): 78, 58, 70, (456,453,0): 78, 58, 70, (456,454,0): 78, 58, 69, (456,455,0): 78, 58, 69, (456,456,0): 69, 49, 58, (456,457,0): 66, 46, 55, (456,458,0): 62, 42, 51, (456,459,0): 59, 39, 48, (456,460,0): 57, 38, 44, (456,461,0): 58, 39, 45, (456,462,0): 59, 40, 46, (456,463,0): 62, 41, 46, (456,464,0): 60, 37, 43, (456,465,0): 60, 38, 41, (456,466,0): 62, 37, 41, (456,467,0): 61, 36, 40, (456,468,0): 60, 35, 39, (456,469,0): 58, 33, 37, (456,470,0): 57, 30, 35, (456,471,0): 56, 29, 34, (456,472,0): 54, 25, 30, (456,473,0): 56, 27, 32, (456,474,0): 58, 27, 33, (456,475,0): 56, 25, 31, (456,476,0): 53, 22, 28, (456,477,0): 53, 22, 28, (456,478,0): 57, 24, 31, (456,479,0): 60, 28, 33, (456,480,0): 63, 27, 31, (456,481,0): 69, 30, 33, (456,482,0): 72, 36, 38, (456,483,0): 74, 40, 41, (456,484,0): 75, 41, 42, (456,485,0): 75, 41, 42, (456,486,0): 78, 42, 44, (456,487,0): 79, 43, 43, (456,488,0): 79, 38, 42, (456,489,0): 88, 46, 48, (456,490,0): 99, 53, 56, (456,491,0): 106, 55, 60, (456,492,0): 108, 53, 59, (456,493,0): 112, 52, 60, (456,494,0): 119, 58, 66, (456,495,0): 125, 64, 72, (456,496,0): 118, 59, 63, (456,497,0): 126, 61, 67, (456,498,0): 141, 63, 76, (456,499,0): 155, 68, 85, (456,500,0): 164, 72, 93, (456,501,0): 164, 75, 97, (456,502,0): 157, 75, 98, (456,503,0): 148, 72, 98, (456,504,0): 148, 75, 102, (456,505,0): 151, 75, 103, (456,506,0): 162, 69, 98, (456,507,0): 163, 55, 81, (456,508,0): 173, 45, 70, (456,509,0): 204, 60, 83, (456,510,0): 227, 72, 90, (456,511,0): 219, 63, 84, (456,512,0): 203, 54, 84, (456,513,0): 220, 70, 105, (456,514,0): 240, 81, 113, (456,515,0): 245, 76, 105, (456,516,0): 244, 67, 93, (456,517,0): 247, 66, 97, (456,518,0): 253, 72, 115, (456,519,0): 253, 77, 141, (456,520,0): 253, 84, 175, (456,521,0): 241, 82, 198, (456,522,0): 235, 91, 223, (456,523,0): 236, 108, 244, (456,524,0): 247, 135, 255, (456,525,0): 255, 165, 255, (456,526,0): 255, 165, 255, (456,527,0): 224, 136, 220, (456,528,0): 251, 163, 247, (456,529,0): 242, 154, 240, (456,530,0): 239, 155, 243, (456,531,0): 248, 161, 255, (456,532,0): 245, 153, 254, (456,533,0): 232, 130, 239, (456,534,0): 228, 114, 228, (456,535,0): 239, 112, 227, (456,536,0): 255, 139, 250, (456,537,0): 255, 142, 241, (456,538,0): 255, 122, 207, (456,539,0): 255, 95, 165, (456,540,0): 255, 83, 139, (456,541,0): 255, 73, 114, (456,542,0): 255, 62, 96, (456,543,0): 255, 68, 89, (456,544,0): 252, 71, 78, (456,545,0): 240, 71, 76, (456,546,0): 225, 62, 79, (456,547,0): 208, 60, 84, (456,548,0): 190, 56, 89, (456,549,0): 161, 43, 77, (456,550,0): 149, 46, 76, (456,551,0): 167, 69, 94, (456,552,0): 160, 57, 76, (456,553,0): 174, 64, 77, (456,554,0): 197, 80, 89, (456,555,0): 196, 80, 89, (456,556,0): 164, 60, 69, (456,557,0): 136, 50, 59, (456,558,0): 125, 60, 68, (456,559,0): 121, 65, 74, (456,560,0): 121, 68, 78, (456,561,0): 114, 63, 72, (456,562,0): 105, 58, 68, (456,563,0): 100, 57, 64, (456,564,0): 100, 61, 66, (456,565,0): 100, 65, 69, (456,566,0): 100, 65, 69, (456,567,0): 101, 65, 69, (456,568,0): 102, 62, 70, (456,569,0): 103, 60, 69, (456,570,0): 106, 59, 69, (456,571,0): 107, 57, 68, (456,572,0): 106, 56, 67, (456,573,0): 105, 55, 66, (456,574,0): 105, 55, 66, (456,575,0): 102, 56, 66, (456,576,0): 96, 56, 65, (456,577,0): 91, 56, 63, (456,578,0): 87, 54, 61, (456,579,0): 84, 53, 59, (456,580,0): 84, 55, 60, (456,581,0): 84, 57, 62, (456,582,0): 86, 61, 65, (456,583,0): 86, 64, 67, (456,584,0): 81, 59, 62, (456,585,0): 80, 58, 61, (456,586,0): 79, 57, 60, (456,587,0): 80, 58, 61, (456,588,0): 82, 57, 61, (456,589,0): 80, 53, 58, (456,590,0): 76, 47, 52, (456,591,0): 69, 42, 47, (456,592,0): 64, 39, 43, (456,593,0): 60, 38, 41, (456,594,0): 58, 36, 39, (456,595,0): 54, 32, 35, (456,596,0): 52, 30, 33, (456,597,0): 50, 28, 31, (456,598,0): 50, 28, 31, (456,599,0): 50, 28, 31, (457,0,0): 65, 70, 63, (457,1,0): 64, 69, 62, (457,2,0): 62, 67, 60, (457,3,0): 60, 65, 58, (457,4,0): 59, 64, 57, (457,5,0): 59, 64, 57, (457,6,0): 59, 64, 57, (457,7,0): 59, 64, 57, (457,8,0): 61, 66, 59, (457,9,0): 61, 66, 59, (457,10,0): 61, 66, 59, (457,11,0): 62, 67, 60, (457,12,0): 62, 67, 60, (457,13,0): 63, 68, 61, (457,14,0): 63, 68, 61, (457,15,0): 63, 68, 61, (457,16,0): 60, 67, 60, (457,17,0): 60, 67, 60, (457,18,0): 61, 68, 61, (457,19,0): 62, 69, 62, (457,20,0): 63, 70, 63, (457,21,0): 64, 71, 64, (457,22,0): 65, 72, 65, (457,23,0): 66, 73, 66, (457,24,0): 68, 75, 68, (457,25,0): 69, 76, 69, (457,26,0): 70, 77, 70, (457,27,0): 71, 78, 71, (457,28,0): 72, 79, 72, (457,29,0): 73, 80, 73, (457,30,0): 74, 81, 74, (457,31,0): 75, 80, 74, (457,32,0): 76, 79, 72, (457,33,0): 77, 78, 72, (457,34,0): 78, 79, 73, (457,35,0): 78, 79, 73, (457,36,0): 79, 79, 71, (457,37,0): 78, 78, 70, (457,38,0): 77, 77, 69, (457,39,0): 77, 77, 69, (457,40,0): 83, 80, 71, (457,41,0): 83, 80, 71, (457,42,0): 83, 79, 68, (457,43,0): 83, 79, 68, (457,44,0): 82, 78, 67, (457,45,0): 82, 78, 67, (457,46,0): 83, 77, 65, (457,47,0): 84, 76, 65, (457,48,0): 84, 74, 62, (457,49,0): 86, 74, 62, (457,50,0): 86, 74, 62, (457,51,0): 85, 73, 61, (457,52,0): 85, 73, 61, (457,53,0): 84, 72, 60, (457,54,0): 84, 72, 60, (457,55,0): 84, 72, 60, (457,56,0): 85, 73, 61, (457,57,0): 85, 73, 61, (457,58,0): 84, 72, 60, (457,59,0): 84, 72, 60, (457,60,0): 83, 71, 59, (457,61,0): 83, 71, 59, (457,62,0): 83, 71, 59, (457,63,0): 82, 70, 58, (457,64,0): 86, 69, 59, (457,65,0): 86, 69, 59, (457,66,0): 85, 68, 58, (457,67,0): 85, 68, 58, (457,68,0): 84, 67, 57, (457,69,0): 83, 66, 56, (457,70,0): 82, 65, 55, (457,71,0): 82, 65, 55, (457,72,0): 82, 65, 55, (457,73,0): 82, 65, 55, (457,74,0): 81, 64, 54, (457,75,0): 80, 63, 53, (457,76,0): 79, 62, 52, (457,77,0): 78, 61, 51, (457,78,0): 77, 60, 50, (457,79,0): 77, 61, 48, (457,80,0): 78, 60, 48, (457,81,0): 78, 60, 46, (457,82,0): 77, 59, 45, (457,83,0): 77, 59, 45, (457,84,0): 76, 58, 44, (457,85,0): 76, 58, 44, (457,86,0): 75, 57, 43, (457,87,0): 75, 57, 43, (457,88,0): 73, 55, 41, (457,89,0): 73, 55, 41, (457,90,0): 73, 57, 42, (457,91,0): 73, 57, 42, (457,92,0): 74, 58, 43, (457,93,0): 74, 58, 43, (457,94,0): 75, 59, 44, (457,95,0): 75, 59, 44, (457,96,0): 72, 54, 40, (457,97,0): 72, 54, 40, (457,98,0): 72, 54, 40, (457,99,0): 71, 53, 39, (457,100,0): 69, 51, 37, (457,101,0): 67, 49, 35, (457,102,0): 65, 47, 33, (457,103,0): 63, 45, 31, (457,104,0): 61, 43, 29, (457,105,0): 61, 43, 29, (457,106,0): 60, 42, 28, (457,107,0): 60, 42, 28, (457,108,0): 59, 41, 27, (457,109,0): 59, 41, 27, (457,110,0): 58, 40, 26, (457,111,0): 58, 40, 26, (457,112,0): 60, 42, 32, (457,113,0): 60, 42, 32, (457,114,0): 60, 42, 32, (457,115,0): 60, 42, 32, (457,116,0): 60, 42, 32, (457,117,0): 60, 42, 32, (457,118,0): 60, 42, 32, (457,119,0): 60, 42, 32, (457,120,0): 62, 44, 34, (457,121,0): 62, 44, 34, (457,122,0): 62, 44, 34, (457,123,0): 61, 43, 33, (457,124,0): 61, 43, 33, (457,125,0): 60, 42, 32, (457,126,0): 60, 42, 32, (457,127,0): 60, 42, 32, (457,128,0): 59, 40, 34, (457,129,0): 59, 40, 34, (457,130,0): 60, 41, 35, (457,131,0): 62, 43, 37, (457,132,0): 63, 44, 38, (457,133,0): 64, 45, 39, (457,134,0): 65, 46, 40, (457,135,0): 65, 46, 40, (457,136,0): 66, 47, 41, (457,137,0): 67, 48, 42, (457,138,0): 68, 49, 43, (457,139,0): 70, 51, 45, (457,140,0): 71, 52, 46, (457,141,0): 73, 54, 48, (457,142,0): 74, 55, 49, (457,143,0): 75, 56, 50, (457,144,0): 75, 56, 50, (457,145,0): 76, 57, 51, (457,146,0): 76, 57, 51, (457,147,0): 77, 58, 52, (457,148,0): 77, 58, 52, (457,149,0): 78, 59, 53, (457,150,0): 78, 59, 53, (457,151,0): 78, 59, 53, (457,152,0): 80, 61, 55, (457,153,0): 80, 61, 55, (457,154,0): 81, 62, 56, (457,155,0): 81, 62, 56, (457,156,0): 81, 62, 56, (457,157,0): 82, 63, 57, (457,158,0): 82, 63, 57, (457,159,0): 82, 63, 57, (457,160,0): 86, 67, 63, (457,161,0): 86, 67, 63, (457,162,0): 86, 67, 63, (457,163,0): 86, 67, 63, (457,164,0): 86, 67, 63, (457,165,0): 86, 67, 63, (457,166,0): 86, 67, 63, (457,167,0): 86, 67, 63, (457,168,0): 89, 70, 66, (457,169,0): 89, 70, 66, (457,170,0): 90, 71, 67, (457,171,0): 90, 71, 67, (457,172,0): 91, 72, 68, (457,173,0): 91, 72, 68, (457,174,0): 92, 73, 69, (457,175,0): 91, 73, 69, (457,176,0): 91, 73, 71, (457,177,0): 89, 74, 71, (457,178,0): 90, 74, 74, (457,179,0): 91, 75, 75, (457,180,0): 92, 76, 76, (457,181,0): 92, 76, 76, (457,182,0): 93, 77, 78, (457,183,0): 93, 77, 78, (457,184,0): 94, 78, 81, (457,185,0): 95, 79, 82, (457,186,0): 97, 81, 84, (457,187,0): 99, 83, 86, (457,188,0): 101, 84, 90, (457,189,0): 104, 87, 93, (457,190,0): 105, 88, 94, (457,191,0): 106, 89, 95, (457,192,0): 106, 91, 94, (457,193,0): 106, 91, 94, (457,194,0): 107, 92, 95, (457,195,0): 106, 91, 94, (457,196,0): 106, 90, 91, (457,197,0): 104, 88, 89, (457,198,0): 105, 86, 88, (457,199,0): 104, 84, 86, (457,200,0): 100, 80, 81, (457,201,0): 99, 77, 79, (457,202,0): 99, 75, 75, (457,203,0): 97, 71, 72, (457,204,0): 95, 69, 70, (457,205,0): 95, 66, 68, (457,206,0): 95, 67, 66, (457,207,0): 95, 67, 66, (457,208,0): 90, 62, 61, (457,209,0): 88, 62, 61, (457,210,0): 92, 63, 65, (457,211,0): 91, 65, 66, (457,212,0): 95, 66, 68, (457,213,0): 95, 69, 70, (457,214,0): 98, 69, 73, (457,215,0): 97, 71, 74, (457,216,0): 104, 75, 80, (457,217,0): 103, 76, 81, (457,218,0): 106, 77, 82, (457,219,0): 105, 78, 83, (457,220,0): 109, 79, 87, (457,221,0): 109, 82, 89, (457,222,0): 112, 82, 90, (457,223,0): 112, 82, 90, (457,224,0): 122, 89, 98, (457,225,0): 126, 90, 100, (457,226,0): 130, 94, 104, (457,227,0): 137, 101, 111, (457,228,0): 144, 111, 120, (457,229,0): 154, 121, 130, (457,230,0): 163, 130, 141, (457,231,0): 167, 135, 146, (457,232,0): 169, 136, 147, (457,233,0): 174, 142, 153, (457,234,0): 183, 151, 162, (457,235,0): 192, 160, 171, (457,236,0): 201, 171, 183, (457,237,0): 212, 182, 192, (457,238,0): 223, 193, 205, (457,239,0): 228, 202, 215, (457,240,0): 221, 205, 218, (457,241,0): 216, 205, 221, (457,242,0): 213, 204, 223, (457,243,0): 208, 203, 223, (457,244,0): 202, 202, 226, (457,245,0): 198, 202, 229, (457,246,0): 194, 200, 232, (457,247,0): 189, 202, 236, (457,248,0): 181, 197, 231, (457,249,0): 180, 200, 237, (457,250,0): 181, 203, 242, (457,251,0): 183, 207, 245, (457,252,0): 185, 210, 250, (457,253,0): 187, 212, 252, (457,254,0): 187, 212, 253, (457,255,0): 186, 214, 254, (457,256,0): 183, 216, 255, (457,257,0): 182, 217, 255, (457,258,0): 182, 217, 255, (457,259,0): 180, 217, 255, (457,260,0): 179, 216, 255, (457,261,0): 177, 216, 255, (457,262,0): 175, 217, 255, (457,263,0): 173, 216, 255, (457,264,0): 172, 217, 255, (457,265,0): 170, 218, 255, (457,266,0): 169, 219, 255, (457,267,0): 167, 219, 255, (457,268,0): 165, 219, 255, (457,269,0): 164, 218, 254, (457,270,0): 161, 217, 254, (457,271,0): 160, 216, 251, (457,272,0): 165, 217, 254, (457,273,0): 163, 215, 252, (457,274,0): 161, 213, 250, (457,275,0): 162, 214, 251, (457,276,0): 165, 218, 252, (457,277,0): 166, 219, 253, (457,278,0): 164, 216, 253, (457,279,0): 162, 214, 251, (457,280,0): 160, 212, 251, (457,281,0): 159, 211, 251, (457,282,0): 157, 208, 253, (457,283,0): 155, 206, 253, (457,284,0): 153, 203, 254, (457,285,0): 150, 200, 253, (457,286,0): 149, 198, 254, (457,287,0): 148, 197, 255, (457,288,0): 143, 192, 255, (457,289,0): 141, 191, 255, (457,290,0): 138, 188, 255, (457,291,0): 135, 184, 255, (457,292,0): 134, 182, 255, (457,293,0): 136, 180, 255, (457,294,0): 138, 177, 254, (457,295,0): 139, 176, 254, (457,296,0): 144, 183, 255, (457,297,0): 147, 186, 255, (457,298,0): 146, 185, 255, (457,299,0): 142, 177, 245, (457,300,0): 138, 163, 220, (457,301,0): 130, 143, 188, (457,302,0): 112, 113, 144, (457,303,0): 96, 88, 111, (457,304,0): 60, 52, 67, (457,305,0): 46, 35, 49, (457,306,0): 42, 31, 45, (457,307,0): 43, 32, 46, (457,308,0): 35, 24, 38, (457,309,0): 33, 22, 36, (457,310,0): 35, 27, 40, (457,311,0): 33, 25, 38, (457,312,0): 31, 23, 36, (457,313,0): 30, 22, 35, (457,314,0): 28, 20, 33, (457,315,0): 27, 19, 32, (457,316,0): 26, 18, 31, (457,317,0): 27, 19, 32, (457,318,0): 27, 19, 32, (457,319,0): 28, 20, 33, (457,320,0): 28, 17, 31, (457,321,0): 29, 17, 31, (457,322,0): 31, 19, 33, (457,323,0): 31, 19, 33, (457,324,0): 31, 19, 33, (457,325,0): 31, 19, 33, (457,326,0): 29, 17, 31, (457,327,0): 29, 17, 31, (457,328,0): 30, 18, 32, (457,329,0): 29, 17, 31, (457,330,0): 27, 15, 29, (457,331,0): 26, 14, 28, (457,332,0): 25, 13, 27, (457,333,0): 26, 14, 28, (457,334,0): 26, 14, 28, (457,335,0): 26, 15, 29, (457,336,0): 22, 14, 27, (457,337,0): 22, 14, 27, (457,338,0): 23, 15, 28, (457,339,0): 23, 15, 28, (457,340,0): 24, 16, 29, (457,341,0): 25, 17, 30, (457,342,0): 25, 17, 30, (457,343,0): 26, 18, 31, (457,344,0): 21, 13, 26, (457,345,0): 23, 15, 28, (457,346,0): 24, 16, 29, (457,347,0): 22, 14, 27, (457,348,0): 20, 12, 25, (457,349,0): 18, 10, 23, (457,350,0): 19, 11, 24, (457,351,0): 21, 13, 26, (457,352,0): 25, 14, 28, (457,353,0): 26, 14, 28, (457,354,0): 26, 14, 28, (457,355,0): 26, 14, 28, (457,356,0): 25, 14, 28, (457,357,0): 25, 14, 28, (457,358,0): 25, 14, 28, (457,359,0): 25, 14, 28, (457,360,0): 21, 13, 26, (457,361,0): 22, 14, 27, (457,362,0): 21, 15, 27, (457,363,0): 21, 15, 27, (457,364,0): 21, 15, 27, (457,365,0): 20, 14, 26, (457,366,0): 16, 13, 24, (457,367,0): 16, 13, 24, (457,368,0): 15, 11, 26, (457,369,0): 16, 12, 27, (457,370,0): 18, 12, 26, (457,371,0): 19, 13, 27, (457,372,0): 21, 15, 29, (457,373,0): 22, 16, 30, (457,374,0): 23, 15, 28, (457,375,0): 24, 16, 29, (457,376,0): 25, 15, 26, (457,377,0): 25, 15, 26, (457,378,0): 26, 16, 27, (457,379,0): 26, 16, 27, (457,380,0): 28, 16, 26, (457,381,0): 28, 16, 26, (457,382,0): 28, 16, 26, (457,383,0): 29, 17, 27, (457,384,0): 33, 17, 28, (457,385,0): 33, 17, 28, (457,386,0): 32, 16, 27, (457,387,0): 32, 16, 27, (457,388,0): 33, 17, 28, (457,389,0): 34, 18, 29, (457,390,0): 35, 19, 30, (457,391,0): 36, 20, 31, (457,392,0): 36, 20, 31, (457,393,0): 37, 21, 32, (457,394,0): 37, 21, 32, (457,395,0): 38, 22, 33, (457,396,0): 38, 22, 33, (457,397,0): 39, 23, 34, (457,398,0): 39, 23, 34, (457,399,0): 40, 23, 33, (457,400,0): 48, 28, 37, (457,401,0): 48, 29, 35, (457,402,0): 48, 28, 37, (457,403,0): 48, 29, 35, (457,404,0): 48, 28, 37, (457,405,0): 48, 29, 35, (457,406,0): 48, 28, 37, (457,407,0): 48, 29, 35, (457,408,0): 49, 29, 38, (457,409,0): 50, 31, 37, (457,410,0): 52, 32, 41, (457,411,0): 51, 32, 38, (457,412,0): 50, 30, 39, (457,413,0): 51, 32, 38, (457,414,0): 54, 34, 43, (457,415,0): 58, 38, 47, (457,416,0): 60, 39, 48, (457,417,0): 61, 40, 49, (457,418,0): 62, 41, 50, (457,419,0): 64, 43, 52, (457,420,0): 66, 45, 54, (457,421,0): 68, 47, 56, (457,422,0): 70, 49, 58, (457,423,0): 70, 49, 58, (457,424,0): 74, 53, 62, (457,425,0): 73, 52, 61, (457,426,0): 73, 52, 61, (457,427,0): 73, 52, 61, (457,428,0): 72, 51, 60, (457,429,0): 72, 51, 60, (457,430,0): 72, 51, 60, (457,431,0): 72, 51, 60, (457,432,0): 76, 53, 63, (457,433,0): 76, 53, 63, (457,434,0): 76, 53, 63, (457,435,0): 76, 53, 63, (457,436,0): 76, 53, 63, (457,437,0): 76, 53, 63, (457,438,0): 76, 53, 63, (457,439,0): 76, 53, 63, (457,440,0): 75, 52, 62, (457,441,0): 74, 51, 61, (457,442,0): 72, 49, 59, (457,443,0): 70, 47, 57, (457,444,0): 69, 46, 56, (457,445,0): 69, 46, 56, (457,446,0): 69, 46, 56, (457,447,0): 69, 47, 59, (457,448,0): 72, 50, 63, (457,449,0): 72, 51, 66, (457,450,0): 74, 54, 66, (457,451,0): 76, 56, 68, (457,452,0): 77, 57, 69, (457,453,0): 77, 57, 69, (457,454,0): 77, 57, 68, (457,455,0): 77, 57, 68, (457,456,0): 70, 50, 59, (457,457,0): 68, 48, 57, (457,458,0): 63, 43, 52, (457,459,0): 60, 40, 49, (457,460,0): 57, 38, 44, (457,461,0): 57, 38, 44, (457,462,0): 58, 39, 45, (457,463,0): 59, 40, 44, (457,464,0): 58, 37, 42, (457,465,0): 59, 37, 40, (457,466,0): 60, 38, 41, (457,467,0): 61, 36, 40, (457,468,0): 60, 35, 39, (457,469,0): 58, 33, 37, (457,470,0): 57, 30, 35, (457,471,0): 56, 29, 34, (457,472,0): 54, 25, 30, (457,473,0): 56, 27, 32, (457,474,0): 57, 26, 32, (457,475,0): 56, 25, 31, (457,476,0): 54, 21, 28, (457,477,0): 54, 21, 28, (457,478,0): 57, 24, 31, (457,479,0): 62, 27, 33, (457,480,0): 63, 24, 27, (457,481,0): 66, 27, 28, (457,482,0): 71, 32, 33, (457,483,0): 71, 35, 35, (457,484,0): 73, 34, 35, (457,485,0): 74, 35, 36, (457,486,0): 77, 37, 38, (457,487,0): 79, 39, 40, (457,488,0): 76, 36, 37, (457,489,0): 86, 44, 46, (457,490,0): 98, 53, 56, (457,491,0): 105, 56, 60, (457,492,0): 107, 54, 60, (457,493,0): 106, 54, 58, (457,494,0): 111, 56, 62, (457,495,0): 114, 59, 64, (457,496,0): 117, 60, 66, (457,497,0): 126, 61, 69, (457,498,0): 144, 62, 76, (457,499,0): 161, 68, 87, (457,500,0): 173, 76, 96, (457,501,0): 173, 78, 100, (457,502,0): 163, 75, 99, (457,503,0): 152, 73, 95, (457,504,0): 138, 64, 87, (457,505,0): 141, 63, 85, (457,506,0): 154, 60, 84, (457,507,0): 161, 52, 75, (457,508,0): 176, 47, 69, (457,509,0): 210, 64, 83, (457,510,0): 233, 74, 92, (457,511,0): 226, 64, 85, (457,512,0): 216, 55, 86, (457,513,0): 230, 69, 103, (457,514,0): 246, 76, 112, (457,515,0): 247, 72, 105, (457,516,0): 246, 65, 96, (457,517,0): 252, 68, 102, (457,518,0): 255, 74, 120, (457,519,0): 255, 77, 142, (457,520,0): 251, 73, 169, (457,521,0): 245, 81, 196, (457,522,0): 247, 101, 228, (457,523,0): 250, 124, 250, (457,524,0): 254, 152, 255, (457,525,0): 255, 185, 255, (457,526,0): 255, 195, 255, (457,527,0): 237, 177, 237, (457,528,0): 240, 180, 240, (457,529,0): 236, 178, 239, (457,530,0): 242, 186, 249, (457,531,0): 255, 200, 255, (457,532,0): 255, 194, 255, (457,533,0): 246, 168, 254, (457,534,0): 239, 143, 241, (457,535,0): 244, 133, 236, (457,536,0): 253, 126, 231, (457,537,0): 255, 128, 229, (457,538,0): 255, 112, 200, (457,539,0): 246, 90, 164, (457,540,0): 250, 81, 140, (457,541,0): 253, 73, 120, (457,542,0): 255, 64, 101, (457,543,0): 255, 70, 95, (457,544,0): 253, 74, 80, (457,545,0): 250, 77, 81, (457,546,0): 245, 74, 92, (457,547,0): 237, 77, 105, (457,548,0): 222, 76, 112, (457,549,0): 187, 58, 96, (457,550,0): 163, 54, 85, (457,551,0): 171, 69, 93, (457,552,0): 168, 63, 80, (457,553,0): 174, 62, 74, (457,554,0): 197, 73, 83, (457,555,0): 201, 77, 87, (457,556,0): 171, 60, 69, (457,557,0): 141, 50, 57, (457,558,0): 127, 60, 67, (457,559,0): 124, 69, 75, (457,560,0): 123, 67, 76, (457,561,0): 117, 64, 72, (457,562,0): 111, 61, 70, (457,563,0): 108, 63, 70, (457,564,0): 109, 68, 74, (457,565,0): 112, 73, 78, (457,566,0): 112, 76, 80, (457,567,0): 113, 77, 81, (457,568,0): 102, 61, 69, (457,569,0): 103, 60, 69, (457,570,0): 105, 59, 69, (457,571,0): 108, 61, 71, (457,572,0): 112, 62, 73, (457,573,0): 113, 63, 74, (457,574,0): 111, 61, 72, (457,575,0): 106, 60, 70, (457,576,0): 97, 57, 66, (457,577,0): 92, 57, 64, (457,578,0): 90, 55, 62, (457,579,0): 86, 53, 60, (457,580,0): 85, 54, 60, (457,581,0): 84, 57, 62, (457,582,0): 86, 59, 64, (457,583,0): 87, 62, 66, (457,584,0): 80, 58, 61, (457,585,0): 79, 57, 60, (457,586,0): 78, 56, 59, (457,587,0): 81, 56, 60, (457,588,0): 82, 55, 60, (457,589,0): 79, 52, 57, (457,590,0): 75, 46, 51, (457,591,0): 69, 42, 47, (457,592,0): 65, 40, 44, (457,593,0): 61, 39, 42, (457,594,0): 58, 36, 39, (457,595,0): 55, 33, 36, (457,596,0): 52, 30, 33, (457,597,0): 50, 28, 31, (457,598,0): 49, 27, 30, (457,599,0): 48, 26, 29, (458,0,0): 65, 70, 64, (458,1,0): 64, 69, 63, (458,2,0): 62, 67, 61, (458,3,0): 60, 65, 59, (458,4,0): 59, 64, 58, (458,5,0): 59, 64, 58, (458,6,0): 59, 64, 58, (458,7,0): 60, 65, 59, (458,8,0): 61, 66, 60, (458,9,0): 61, 66, 60, (458,10,0): 61, 66, 60, (458,11,0): 62, 67, 61, (458,12,0): 62, 67, 61, (458,13,0): 63, 68, 62, (458,14,0): 63, 68, 62, (458,15,0): 63, 68, 62, (458,16,0): 62, 69, 62, (458,17,0): 61, 68, 61, (458,18,0): 60, 67, 60, (458,19,0): 60, 67, 60, (458,20,0): 61, 68, 61, (458,21,0): 63, 70, 63, (458,22,0): 66, 73, 66, (458,23,0): 67, 74, 67, (458,24,0): 68, 75, 68, (458,25,0): 68, 75, 68, (458,26,0): 69, 76, 69, (458,27,0): 70, 77, 70, (458,28,0): 71, 78, 71, (458,29,0): 72, 79, 72, (458,30,0): 73, 80, 73, (458,31,0): 75, 80, 74, (458,32,0): 77, 80, 73, (458,33,0): 77, 78, 72, (458,34,0): 77, 78, 72, (458,35,0): 76, 77, 71, (458,36,0): 77, 77, 69, (458,37,0): 78, 78, 70, (458,38,0): 79, 79, 71, (458,39,0): 79, 79, 71, (458,40,0): 83, 80, 71, (458,41,0): 83, 80, 71, (458,42,0): 83, 79, 68, (458,43,0): 83, 79, 68, (458,44,0): 82, 78, 67, (458,45,0): 82, 78, 67, (458,46,0): 83, 77, 65, (458,47,0): 84, 76, 65, (458,48,0): 85, 75, 63, (458,49,0): 87, 75, 63, (458,50,0): 87, 75, 63, (458,51,0): 86, 74, 62, (458,52,0): 86, 74, 62, (458,53,0): 85, 73, 61, (458,54,0): 85, 73, 61, (458,55,0): 85, 73, 61, (458,56,0): 85, 73, 61, (458,57,0): 84, 72, 60, (458,58,0): 84, 72, 60, (458,59,0): 84, 72, 60, (458,60,0): 83, 71, 59, (458,61,0): 82, 70, 58, (458,62,0): 82, 70, 58, (458,63,0): 82, 70, 58, (458,64,0): 82, 65, 55, (458,65,0): 82, 65, 55, (458,66,0): 82, 65, 55, (458,67,0): 81, 64, 54, (458,68,0): 81, 64, 54, (458,69,0): 81, 64, 54, (458,70,0): 81, 64, 54, (458,71,0): 81, 64, 54, (458,72,0): 80, 63, 53, (458,73,0): 79, 62, 52, (458,74,0): 78, 61, 51, (458,75,0): 77, 60, 50, (458,76,0): 76, 59, 49, (458,77,0): 75, 58, 48, (458,78,0): 74, 57, 47, (458,79,0): 75, 57, 45, (458,80,0): 76, 56, 45, (458,81,0): 76, 57, 43, (458,82,0): 76, 57, 43, (458,83,0): 75, 56, 42, (458,84,0): 75, 56, 42, (458,85,0): 74, 55, 41, (458,86,0): 73, 55, 41, (458,87,0): 73, 55, 41, (458,88,0): 72, 56, 41, (458,89,0): 72, 56, 41, (458,90,0): 73, 57, 42, (458,91,0): 73, 57, 42, (458,92,0): 72, 59, 43, (458,93,0): 72, 59, 43, (458,94,0): 73, 60, 44, (458,95,0): 75, 59, 44, (458,96,0): 72, 54, 40, (458,97,0): 72, 54, 40, (458,98,0): 72, 54, 40, (458,99,0): 71, 53, 39, (458,100,0): 70, 52, 38, (458,101,0): 67, 49, 35, (458,102,0): 65, 47, 33, (458,103,0): 64, 46, 32, (458,104,0): 61, 43, 29, (458,105,0): 61, 43, 29, (458,106,0): 60, 42, 28, (458,107,0): 60, 42, 28, (458,108,0): 59, 41, 27, (458,109,0): 59, 41, 27, (458,110,0): 58, 40, 26, (458,111,0): 58, 40, 26, (458,112,0): 60, 42, 32, (458,113,0): 60, 42, 32, (458,114,0): 60, 42, 32, (458,115,0): 60, 42, 32, (458,116,0): 60, 42, 32, (458,117,0): 60, 42, 32, (458,118,0): 60, 42, 32, (458,119,0): 60, 42, 32, (458,120,0): 62, 44, 34, (458,121,0): 62, 44, 34, (458,122,0): 62, 44, 34, (458,123,0): 61, 43, 33, (458,124,0): 61, 43, 33, (458,125,0): 60, 42, 32, (458,126,0): 60, 42, 32, (458,127,0): 60, 42, 32, (458,128,0): 59, 40, 34, (458,129,0): 60, 41, 35, (458,130,0): 60, 41, 35, (458,131,0): 61, 42, 36, (458,132,0): 62, 43, 37, (458,133,0): 63, 44, 38, (458,134,0): 64, 45, 39, (458,135,0): 64, 45, 39, (458,136,0): 65, 46, 40, (458,137,0): 66, 47, 41, (458,138,0): 67, 48, 42, (458,139,0): 69, 50, 44, (458,140,0): 70, 51, 45, (458,141,0): 72, 53, 47, (458,142,0): 73, 54, 48, (458,143,0): 74, 55, 49, (458,144,0): 75, 56, 50, (458,145,0): 75, 56, 50, (458,146,0): 75, 56, 50, (458,147,0): 76, 57, 51, (458,148,0): 76, 57, 51, (458,149,0): 77, 58, 52, (458,150,0): 77, 58, 52, (458,151,0): 77, 58, 52, (458,152,0): 80, 61, 55, (458,153,0): 80, 61, 55, (458,154,0): 81, 62, 56, (458,155,0): 82, 63, 57, (458,156,0): 82, 63, 57, (458,157,0): 83, 64, 58, (458,158,0): 83, 64, 58, (458,159,0): 83, 64, 58, (458,160,0): 85, 66, 62, (458,161,0): 85, 66, 62, (458,162,0): 85, 66, 62, (458,163,0): 85, 66, 62, (458,164,0): 85, 66, 62, (458,165,0): 85, 66, 62, (458,166,0): 85, 66, 62, (458,167,0): 85, 66, 62, (458,168,0): 87, 68, 64, (458,169,0): 87, 68, 64, (458,170,0): 88, 69, 65, (458,171,0): 88, 69, 65, (458,172,0): 89, 70, 66, (458,173,0): 89, 70, 66, (458,174,0): 89, 70, 66, (458,175,0): 89, 71, 67, (458,176,0): 87, 69, 67, (458,177,0): 85, 70, 67, (458,178,0): 86, 70, 70, (458,179,0): 88, 72, 72, (458,180,0): 89, 73, 73, (458,181,0): 90, 74, 74, (458,182,0): 91, 75, 76, (458,183,0): 92, 76, 77, (458,184,0): 92, 76, 79, (458,185,0): 93, 77, 80, (458,186,0): 94, 78, 81, (458,187,0): 96, 80, 83, (458,188,0): 98, 81, 87, (458,189,0): 100, 83, 89, (458,190,0): 102, 85, 91, (458,191,0): 102, 87, 92, (458,192,0): 100, 88, 92, (458,193,0): 101, 89, 93, (458,194,0): 101, 89, 91, (458,195,0): 101, 89, 91, (458,196,0): 102, 87, 90, (458,197,0): 101, 85, 88, (458,198,0): 99, 83, 84, (458,199,0): 100, 81, 83, (458,200,0): 99, 79, 80, (458,201,0): 98, 76, 78, (458,202,0): 95, 73, 75, (458,203,0): 95, 70, 73, (458,204,0): 92, 68, 68, (458,205,0): 92, 66, 67, (458,206,0): 92, 66, 67, (458,207,0): 92, 66, 67, (458,208,0): 85, 59, 60, (458,209,0): 85, 61, 61, (458,210,0): 87, 61, 62, (458,211,0): 87, 63, 63, (458,212,0): 90, 64, 67, (458,213,0): 91, 66, 69, (458,214,0): 93, 67, 70, (458,215,0): 92, 67, 70, (458,216,0): 98, 71, 76, (458,217,0): 98, 73, 77, (458,218,0): 100, 73, 80, (458,219,0): 100, 75, 81, (458,220,0): 103, 76, 83, (458,221,0): 103, 78, 84, (458,222,0): 106, 79, 88, (458,223,0): 108, 78, 88, (458,224,0): 117, 84, 93, (458,225,0): 120, 84, 94, (458,226,0): 123, 87, 97, (458,227,0): 128, 92, 102, (458,228,0): 134, 98, 108, (458,229,0): 142, 106, 116, (458,230,0): 149, 113, 123, (458,231,0): 151, 118, 127, (458,232,0): 153, 117, 127, (458,233,0): 157, 124, 133, (458,234,0): 165, 132, 141, (458,235,0): 176, 143, 152, (458,236,0): 189, 156, 167, (458,237,0): 206, 173, 182, (458,238,0): 223, 190, 201, (458,239,0): 233, 203, 215, (458,240,0): 232, 208, 222, (458,241,0): 227, 209, 225, (458,242,0): 224, 207, 225, (458,243,0): 218, 205, 225, (458,244,0): 212, 202, 226, (458,245,0): 207, 201, 227, (458,246,0): 203, 200, 229, (458,247,0): 197, 200, 231, (458,248,0): 199, 205, 237, (458,249,0): 199, 208, 241, (458,250,0): 200, 210, 245, (458,251,0): 201, 214, 249, (458,252,0): 202, 216, 251, (458,253,0): 203, 217, 252, (458,254,0): 204, 218, 253, (458,255,0): 203, 219, 255, (458,256,0): 195, 215, 252, (458,257,0): 192, 216, 254, (458,258,0): 192, 215, 255, (458,259,0): 191, 216, 255, (458,260,0): 189, 217, 255, (458,261,0): 188, 218, 255, (458,262,0): 185, 219, 255, (458,263,0): 185, 220, 255, (458,264,0): 182, 220, 255, (458,265,0): 182, 222, 255, (458,266,0): 180, 224, 255, (458,267,0): 179, 225, 255, (458,268,0): 176, 224, 255, (458,269,0): 172, 222, 255, (458,270,0): 168, 220, 255, (458,271,0): 166, 219, 253, (458,272,0): 175, 224, 255, (458,273,0): 172, 221, 253, (458,274,0): 171, 220, 252, (458,275,0): 172, 221, 253, (458,276,0): 174, 223, 255, (458,277,0): 175, 224, 255, (458,278,0): 173, 222, 255, (458,279,0): 171, 220, 253, (458,280,0): 169, 217, 253, (458,281,0): 167, 215, 253, (458,282,0): 165, 212, 254, (458,283,0): 162, 209, 255, (458,284,0): 159, 205, 255, (458,285,0): 156, 202, 254, (458,286,0): 154, 199, 254, (458,287,0): 153, 198, 255, (458,288,0): 151, 196, 255, (458,289,0): 147, 194, 255, (458,290,0): 143, 192, 255, (458,291,0): 140, 188, 255, (458,292,0): 139, 186, 255, (458,293,0): 140, 182, 254, (458,294,0): 143, 181, 252, (458,295,0): 144, 181, 252, (458,296,0): 144, 178, 252, (458,297,0): 148, 182, 255, (458,298,0): 149, 183, 255, (458,299,0): 146, 177, 242, (458,300,0): 145, 166, 221, (458,301,0): 135, 147, 189, (458,302,0): 116, 115, 146, (458,303,0): 96, 88, 109, (458,304,0): 66, 55, 71, (458,305,0): 50, 38, 50, (458,306,0): 44, 32, 44, (458,307,0): 45, 33, 45, (458,308,0): 36, 26, 37, (458,309,0): 34, 24, 35, (458,310,0): 38, 28, 39, (458,311,0): 35, 25, 36, (458,312,0): 30, 22, 33, (458,313,0): 29, 21, 32, (458,314,0): 26, 20, 30, (458,315,0): 25, 19, 29, (458,316,0): 25, 19, 29, (458,317,0): 25, 19, 29, (458,318,0): 26, 20, 30, (458,319,0): 26, 20, 30, (458,320,0): 28, 17, 31, (458,321,0): 29, 17, 31, (458,322,0): 31, 19, 33, (458,323,0): 31, 19, 33, (458,324,0): 31, 19, 33, (458,325,0): 31, 19, 33, (458,326,0): 29, 17, 31, (458,327,0): 29, 17, 31, (458,328,0): 30, 18, 32, (458,329,0): 29, 17, 31, (458,330,0): 27, 15, 29, (458,331,0): 26, 14, 28, (458,332,0): 25, 13, 27, (458,333,0): 26, 14, 28, (458,334,0): 26, 14, 28, (458,335,0): 26, 15, 29, (458,336,0): 22, 14, 29, (458,337,0): 21, 15, 29, (458,338,0): 22, 16, 30, (458,339,0): 22, 16, 30, (458,340,0): 23, 17, 31, (458,341,0): 23, 17, 31, (458,342,0): 23, 17, 31, (458,343,0): 23, 17, 31, (458,344,0): 20, 14, 28, (458,345,0): 22, 16, 30, (458,346,0): 23, 17, 31, (458,347,0): 21, 15, 29, (458,348,0): 19, 13, 27, (458,349,0): 17, 11, 25, (458,350,0): 18, 12, 26, (458,351,0): 21, 13, 28, (458,352,0): 25, 14, 28, (458,353,0): 26, 14, 28, (458,354,0): 26, 14, 28, (458,355,0): 26, 14, 28, (458,356,0): 25, 14, 28, (458,357,0): 25, 14, 28, (458,358,0): 25, 14, 28, (458,359,0): 25, 14, 28, (458,360,0): 23, 15, 28, (458,361,0): 23, 15, 28, (458,362,0): 20, 14, 26, (458,363,0): 19, 13, 25, (458,364,0): 19, 13, 25, (458,365,0): 19, 13, 25, (458,366,0): 17, 14, 25, (458,367,0): 18, 15, 26, (458,368,0): 15, 11, 26, (458,369,0): 16, 12, 27, (458,370,0): 18, 12, 26, (458,371,0): 19, 13, 27, (458,372,0): 21, 15, 29, (458,373,0): 22, 16, 30, (458,374,0): 23, 15, 28, (458,375,0): 24, 16, 29, (458,376,0): 25, 15, 26, (458,377,0): 26, 16, 27, (458,378,0): 26, 16, 27, (458,379,0): 26, 16, 27, (458,380,0): 28, 16, 26, (458,381,0): 29, 17, 27, (458,382,0): 29, 17, 27, (458,383,0): 29, 17, 27, (458,384,0): 32, 16, 27, (458,385,0): 32, 16, 27, (458,386,0): 31, 15, 26, (458,387,0): 31, 15, 26, (458,388,0): 31, 15, 26, (458,389,0): 33, 17, 28, (458,390,0): 34, 18, 29, (458,391,0): 35, 19, 30, (458,392,0): 37, 21, 32, (458,393,0): 37, 21, 32, (458,394,0): 37, 21, 32, (458,395,0): 38, 22, 33, (458,396,0): 38, 22, 33, (458,397,0): 39, 23, 34, (458,398,0): 39, 23, 34, (458,399,0): 41, 24, 34, (458,400,0): 49, 30, 36, (458,401,0): 50, 29, 34, (458,402,0): 50, 29, 36, (458,403,0): 50, 29, 34, (458,404,0): 50, 29, 36, (458,405,0): 50, 29, 34, (458,406,0): 50, 29, 36, (458,407,0): 50, 29, 34, (458,408,0): 49, 28, 35, (458,409,0): 51, 30, 35, (458,410,0): 52, 31, 38, (458,411,0): 52, 31, 36, (458,412,0): 50, 29, 36, (458,413,0): 51, 30, 35, (458,414,0): 55, 34, 41, (458,415,0): 58, 37, 44, (458,416,0): 62, 39, 49, (458,417,0): 63, 40, 50, (458,418,0): 65, 42, 52, (458,419,0): 67, 44, 54, (458,420,0): 69, 46, 56, (458,421,0): 71, 48, 58, (458,422,0): 73, 50, 60, (458,423,0): 73, 50, 60, (458,424,0): 78, 55, 65, (458,425,0): 77, 54, 64, (458,426,0): 77, 54, 64, (458,427,0): 76, 53, 63, (458,428,0): 76, 53, 63, (458,429,0): 75, 52, 62, (458,430,0): 75, 52, 62, (458,431,0): 74, 51, 61, (458,432,0): 76, 53, 63, (458,433,0): 76, 53, 63, (458,434,0): 76, 53, 63, (458,435,0): 76, 53, 63, (458,436,0): 76, 53, 63, (458,437,0): 76, 53, 63, (458,438,0): 76, 53, 63, (458,439,0): 76, 53, 63, (458,440,0): 75, 52, 62, (458,441,0): 74, 51, 61, (458,442,0): 72, 49, 59, (458,443,0): 70, 47, 57, (458,444,0): 69, 46, 56, (458,445,0): 69, 46, 56, (458,446,0): 69, 46, 56, (458,447,0): 69, 47, 59, (458,448,0): 71, 49, 62, (458,449,0): 71, 50, 65, (458,450,0): 73, 53, 65, (458,451,0): 75, 55, 67, (458,452,0): 76, 56, 68, (458,453,0): 76, 56, 68, (458,454,0): 76, 56, 67, (458,455,0): 75, 55, 66, (458,456,0): 72, 52, 61, (458,457,0): 69, 49, 58, (458,458,0): 65, 45, 54, (458,459,0): 61, 41, 50, (458,460,0): 57, 38, 44, (458,461,0): 56, 37, 43, (458,462,0): 56, 37, 43, (458,463,0): 56, 37, 41, (458,464,0): 57, 36, 41, (458,465,0): 57, 37, 39, (458,466,0): 58, 38, 40, (458,467,0): 59, 37, 40, (458,468,0): 58, 36, 39, (458,469,0): 58, 33, 37, (458,470,0): 57, 30, 35, (458,471,0): 56, 29, 34, (458,472,0): 54, 25, 30, (458,473,0): 55, 26, 31, (458,474,0): 56, 25, 31, (458,475,0): 56, 23, 30, (458,476,0): 56, 21, 28, (458,477,0): 56, 21, 28, (458,478,0): 59, 24, 31, (458,479,0): 62, 25, 32, (458,480,0): 61, 22, 25, (458,481,0): 64, 25, 26, (458,482,0): 67, 29, 28, (458,483,0): 68, 30, 29, (458,484,0): 68, 28, 28, (458,485,0): 69, 29, 29, (458,486,0): 74, 32, 33, (458,487,0): 77, 35, 36, (458,488,0): 80, 40, 40, (458,489,0): 89, 49, 49, (458,490,0): 100, 58, 59, (458,491,0): 108, 64, 65, (458,492,0): 108, 62, 64, (458,493,0): 106, 60, 60, (458,494,0): 105, 61, 62, (458,495,0): 106, 62, 63, (458,496,0): 104, 55, 61, (458,497,0): 113, 53, 63, (458,498,0): 132, 54, 70, (458,499,0): 154, 63, 81, (458,500,0): 171, 72, 93, (458,501,0): 173, 74, 95, (458,502,0): 158, 71, 90, (458,503,0): 144, 66, 82, (458,504,0): 133, 60, 77, (458,505,0): 134, 57, 73, (458,506,0): 150, 57, 75, (458,507,0): 162, 54, 70, (458,508,0): 184, 53, 69, (458,509,0): 215, 68, 84, (458,510,0): 236, 75, 90, (458,511,0): 230, 63, 80, (458,512,0): 227, 57, 83, (458,513,0): 240, 67, 97, (458,514,0): 250, 72, 106, (458,515,0): 249, 68, 103, (458,516,0): 250, 67, 98, (458,517,0): 255, 71, 107, (458,518,0): 255, 76, 122, (458,519,0): 255, 76, 140, (458,520,0): 252, 73, 164, (458,521,0): 245, 78, 184, (458,522,0): 242, 95, 209, (458,523,0): 238, 117, 222, (458,524,0): 235, 146, 230, (458,525,0): 253, 189, 250, (458,526,0): 255, 222, 255, (458,527,0): 255, 226, 255, (458,528,0): 254, 221, 250, (458,529,0): 254, 221, 250, (458,530,0): 255, 230, 255, (458,531,0): 255, 238, 255, (458,532,0): 255, 226, 255, (458,533,0): 254, 196, 254, (458,534,0): 246, 168, 243, (458,535,0): 252, 154, 241, (458,536,0): 232, 116, 213, (458,537,0): 249, 117, 216, (458,538,0): 249, 106, 196, (458,539,0): 243, 90, 170, (458,540,0): 250, 84, 150, (458,541,0): 255, 79, 134, (458,542,0): 255, 73, 118, (458,543,0): 255, 74, 106, (458,544,0): 252, 72, 83, (458,545,0): 251, 76, 81, (458,546,0): 250, 73, 93, (458,547,0): 250, 77, 107, (458,548,0): 239, 80, 118, (458,549,0): 204, 64, 103, (458,550,0): 174, 55, 87, (458,551,0): 172, 64, 88, (458,552,0): 181, 70, 87, (458,553,0): 177, 61, 72, (458,554,0): 198, 68, 80, (458,555,0): 210, 78, 89, (458,556,0): 185, 65, 75, (458,557,0): 154, 52, 63, (458,558,0): 138, 62, 72, (458,559,0): 135, 74, 82, (458,560,0): 125, 65, 73, (458,561,0): 119, 64, 70, (458,562,0): 112, 61, 68, (458,563,0): 108, 61, 67, (458,564,0): 107, 66, 70, (458,565,0): 110, 71, 74, (458,566,0): 111, 75, 77, (458,567,0): 112, 76, 78, (458,568,0): 98, 62, 66, (458,569,0): 98, 59, 64, (458,570,0): 99, 58, 66, (458,571,0): 101, 60, 68, (458,572,0): 106, 63, 72, (458,573,0): 106, 63, 72, (458,574,0): 102, 60, 70, (458,575,0): 97, 57, 66, (458,576,0): 98, 61, 69, (458,577,0): 95, 60, 67, (458,578,0): 92, 57, 64, (458,579,0): 88, 55, 62, (458,580,0): 86, 55, 61, (458,581,0): 84, 57, 62, (458,582,0): 85, 58, 63, (458,583,0): 85, 60, 64, (458,584,0): 82, 57, 61, (458,585,0): 80, 55, 59, (458,586,0): 79, 54, 58, (458,587,0): 79, 54, 58, (458,588,0): 80, 53, 58, (458,589,0): 78, 51, 56, (458,590,0): 75, 46, 51, (458,591,0): 68, 41, 46, (458,592,0): 67, 42, 46, (458,593,0): 63, 41, 44, (458,594,0): 59, 37, 40, (458,595,0): 55, 33, 36, (458,596,0): 51, 29, 32, (458,597,0): 49, 27, 30, (458,598,0): 47, 25, 28, (458,599,0): 47, 25, 28, (459,0,0): 66, 71, 65, (459,1,0): 65, 70, 64, (459,2,0): 63, 68, 62, (459,3,0): 61, 66, 60, (459,4,0): 60, 65, 59, (459,5,0): 60, 65, 59, (459,6,0): 60, 65, 59, (459,7,0): 60, 65, 59, (459,8,0): 61, 66, 60, (459,9,0): 61, 66, 60, (459,10,0): 61, 66, 60, (459,11,0): 62, 67, 61, (459,12,0): 62, 67, 61, (459,13,0): 63, 68, 62, (459,14,0): 63, 68, 62, (459,15,0): 63, 68, 62, (459,16,0): 63, 70, 63, (459,17,0): 62, 69, 62, (459,18,0): 60, 67, 60, (459,19,0): 59, 66, 59, (459,20,0): 60, 67, 60, (459,21,0): 63, 70, 63, (459,22,0): 66, 73, 66, (459,23,0): 69, 76, 69, (459,24,0): 68, 75, 68, (459,25,0): 68, 75, 68, (459,26,0): 69, 76, 69, (459,27,0): 70, 77, 70, (459,28,0): 71, 78, 71, (459,29,0): 72, 79, 72, (459,30,0): 73, 80, 73, (459,31,0): 74, 79, 73, (459,32,0): 77, 80, 73, (459,33,0): 77, 78, 72, (459,34,0): 76, 77, 71, (459,35,0): 75, 76, 70, (459,36,0): 76, 76, 68, (459,37,0): 78, 78, 70, (459,38,0): 80, 80, 72, (459,39,0): 81, 81, 73, (459,40,0): 83, 80, 71, (459,41,0): 83, 80, 71, (459,42,0): 83, 79, 68, (459,43,0): 83, 79, 68, (459,44,0): 82, 78, 67, (459,45,0): 82, 78, 67, (459,46,0): 83, 77, 65, (459,47,0): 84, 76, 65, (459,48,0): 86, 76, 64, (459,49,0): 88, 76, 64, (459,50,0): 88, 76, 64, (459,51,0): 87, 75, 63, (459,52,0): 87, 75, 63, (459,53,0): 86, 74, 62, (459,54,0): 86, 74, 62, (459,55,0): 85, 73, 61, (459,56,0): 84, 72, 60, (459,57,0): 84, 72, 60, (459,58,0): 84, 72, 60, (459,59,0): 83, 71, 59, (459,60,0): 83, 71, 59, (459,61,0): 82, 70, 58, (459,62,0): 82, 70, 58, (459,63,0): 82, 68, 57, (459,64,0): 80, 63, 53, (459,65,0): 80, 63, 53, (459,66,0): 80, 63, 53, (459,67,0): 81, 64, 54, (459,68,0): 81, 64, 54, (459,69,0): 81, 64, 54, (459,70,0): 81, 64, 54, (459,71,0): 81, 64, 54, (459,72,0): 79, 62, 52, (459,73,0): 79, 62, 52, (459,74,0): 78, 61, 51, (459,75,0): 77, 60, 50, (459,76,0): 76, 59, 49, (459,77,0): 75, 58, 48, (459,78,0): 74, 57, 47, (459,79,0): 74, 56, 44, (459,80,0): 78, 56, 45, (459,81,0): 78, 56, 43, (459,82,0): 78, 56, 43, (459,83,0): 75, 56, 42, (459,84,0): 75, 56, 42, (459,85,0): 74, 55, 41, (459,86,0): 73, 55, 41, (459,87,0): 72, 54, 40, (459,88,0): 72, 56, 41, (459,89,0): 72, 56, 41, (459,90,0): 73, 57, 42, (459,91,0): 71, 58, 42, (459,92,0): 72, 59, 43, (459,93,0): 72, 59, 43, (459,94,0): 73, 60, 44, (459,95,0): 73, 60, 44, (459,96,0): 72, 56, 41, (459,97,0): 73, 55, 41, (459,98,0): 73, 55, 41, (459,99,0): 72, 54, 40, (459,100,0): 70, 52, 38, (459,101,0): 68, 50, 36, (459,102,0): 66, 48, 34, (459,103,0): 64, 46, 32, (459,104,0): 61, 43, 29, (459,105,0): 61, 43, 29, (459,106,0): 60, 42, 28, (459,107,0): 60, 42, 28, (459,108,0): 59, 41, 27, (459,109,0): 59, 41, 27, (459,110,0): 58, 40, 26, (459,111,0): 58, 40, 26, (459,112,0): 60, 42, 32, (459,113,0): 60, 42, 32, (459,114,0): 60, 42, 32, (459,115,0): 60, 42, 32, (459,116,0): 60, 42, 32, (459,117,0): 60, 42, 32, (459,118,0): 60, 42, 32, (459,119,0): 60, 42, 32, (459,120,0): 62, 44, 34, (459,121,0): 62, 44, 34, (459,122,0): 62, 44, 34, (459,123,0): 61, 43, 33, (459,124,0): 61, 43, 33, (459,125,0): 60, 42, 32, (459,126,0): 60, 42, 32, (459,127,0): 60, 42, 32, (459,128,0): 59, 40, 34, (459,129,0): 60, 41, 35, (459,130,0): 60, 41, 35, (459,131,0): 61, 42, 36, (459,132,0): 62, 43, 37, (459,133,0): 62, 43, 37, (459,134,0): 63, 44, 38, (459,135,0): 63, 44, 38, (459,136,0): 64, 45, 39, (459,137,0): 64, 45, 39, (459,138,0): 65, 46, 40, (459,139,0): 67, 48, 42, (459,140,0): 69, 50, 44, (459,141,0): 70, 51, 45, (459,142,0): 71, 52, 46, (459,143,0): 72, 53, 47, (459,144,0): 74, 55, 49, (459,145,0): 74, 55, 49, (459,146,0): 74, 55, 49, (459,147,0): 75, 56, 50, (459,148,0): 75, 56, 50, (459,149,0): 76, 57, 51, (459,150,0): 76, 57, 51, (459,151,0): 76, 57, 51, (459,152,0): 80, 61, 55, (459,153,0): 80, 61, 55, (459,154,0): 81, 62, 56, (459,155,0): 82, 63, 57, (459,156,0): 83, 64, 58, (459,157,0): 83, 64, 58, (459,158,0): 84, 65, 59, (459,159,0): 84, 65, 59, (459,160,0): 84, 65, 61, (459,161,0): 84, 65, 61, (459,162,0): 84, 65, 61, (459,163,0): 84, 65, 61, (459,164,0): 84, 65, 61, (459,165,0): 84, 65, 61, (459,166,0): 84, 65, 61, (459,167,0): 84, 65, 61, (459,168,0): 85, 66, 62, (459,169,0): 85, 66, 62, (459,170,0): 85, 66, 62, (459,171,0): 86, 67, 63, (459,172,0): 86, 67, 63, (459,173,0): 87, 68, 64, (459,174,0): 87, 68, 64, (459,175,0): 86, 68, 64, (459,176,0): 85, 67, 65, (459,177,0): 84, 69, 66, (459,178,0): 85, 69, 69, (459,179,0): 87, 71, 71, (459,180,0): 89, 73, 73, (459,181,0): 90, 74, 74, (459,182,0): 92, 76, 77, (459,183,0): 92, 76, 77, (459,184,0): 92, 76, 79, (459,185,0): 93, 77, 80, (459,186,0): 94, 78, 81, (459,187,0): 96, 80, 83, (459,188,0): 98, 81, 87, (459,189,0): 99, 82, 88, (459,190,0): 101, 84, 90, (459,191,0): 100, 85, 90, (459,192,0): 99, 87, 91, (459,193,0): 98, 87, 91, (459,194,0): 99, 87, 89, (459,195,0): 99, 87, 89, (459,196,0): 100, 85, 88, (459,197,0): 98, 83, 86, (459,198,0): 97, 81, 82, (459,199,0): 96, 80, 81, (459,200,0): 96, 77, 79, (459,201,0): 96, 76, 77, (459,202,0): 94, 72, 74, (459,203,0): 91, 69, 71, (459,204,0): 91, 67, 67, (459,205,0): 90, 66, 66, (459,206,0): 90, 64, 65, (459,207,0): 89, 65, 65, (459,208,0): 84, 60, 60, (459,209,0): 85, 61, 61, (459,210,0): 86, 62, 62, (459,211,0): 87, 63, 63, (459,212,0): 88, 63, 66, (459,213,0): 89, 64, 67, (459,214,0): 90, 65, 68, (459,215,0): 91, 66, 69, (459,216,0): 95, 70, 74, (459,217,0): 95, 70, 74, (459,218,0): 97, 72, 78, (459,219,0): 98, 73, 79, (459,220,0): 100, 75, 81, (459,221,0): 101, 76, 82, (459,222,0): 102, 76, 85, (459,223,0): 104, 77, 86, (459,224,0): 108, 77, 85, (459,225,0): 110, 77, 86, (459,226,0): 115, 79, 89, (459,227,0): 119, 83, 93, (459,228,0): 124, 88, 98, (459,229,0): 130, 94, 104, (459,230,0): 135, 99, 109, (459,231,0): 138, 102, 112, (459,232,0): 143, 107, 117, (459,233,0): 147, 111, 121, (459,234,0): 154, 118, 128, (459,235,0): 163, 127, 137, (459,236,0): 176, 140, 150, (459,237,0): 197, 161, 171, (459,238,0): 221, 183, 194, (459,239,0): 236, 200, 212, (459,240,0): 247, 215, 230, (459,241,0): 243, 215, 230, (459,242,0): 240, 213, 230, (459,243,0): 235, 212, 232, (459,244,0): 230, 211, 233, (459,245,0): 225, 210, 233, (459,246,0): 221, 208, 234, (459,247,0): 218, 209, 236, (459,248,0): 215, 211, 238, (459,249,0): 215, 212, 241, (459,250,0): 214, 213, 244, (459,251,0): 215, 214, 245, (459,252,0): 214, 215, 245, (459,253,0): 214, 215, 245, (459,254,0): 213, 214, 244, (459,255,0): 210, 213, 244, (459,256,0): 204, 210, 242, (459,257,0): 201, 212, 244, (459,258,0): 201, 211, 246, (459,259,0): 198, 213, 246, (459,260,0): 198, 214, 248, (459,261,0): 198, 217, 250, (459,262,0): 196, 219, 253, (459,263,0): 195, 221, 254, (459,264,0): 192, 221, 255, (459,265,0): 189, 222, 255, (459,266,0): 187, 223, 255, (459,267,0): 184, 224, 255, (459,268,0): 182, 225, 255, (459,269,0): 180, 224, 255, (459,270,0): 179, 225, 255, (459,271,0): 179, 225, 255, (459,272,0): 180, 225, 255, (459,273,0): 178, 223, 252, (459,274,0): 176, 221, 250, (459,275,0): 176, 221, 250, (459,276,0): 178, 223, 252, (459,277,0): 179, 224, 253, (459,278,0): 177, 222, 253, (459,279,0): 175, 220, 253, (459,280,0): 175, 219, 254, (459,281,0): 174, 218, 255, (459,282,0): 171, 214, 255, (459,283,0): 168, 211, 254, (459,284,0): 164, 206, 255, (459,285,0): 161, 202, 254, (459,286,0): 158, 199, 253, (459,287,0): 157, 197, 255, (459,288,0): 153, 194, 255, (459,289,0): 150, 193, 255, (459,290,0): 147, 192, 255, (459,291,0): 145, 190, 255, (459,292,0): 145, 188, 255, (459,293,0): 147, 186, 253, (459,294,0): 150, 185, 251, (459,295,0): 153, 184, 251, (459,296,0): 155, 184, 254, (459,297,0): 159, 188, 255, (459,298,0): 162, 191, 255, (459,299,0): 163, 188, 254, (459,300,0): 163, 180, 234, (459,301,0): 154, 161, 203, (459,302,0): 132, 129, 158, (459,303,0): 110, 101, 120, (459,304,0): 70, 58, 72, (459,305,0): 51, 39, 51, (459,306,0): 44, 32, 44, (459,307,0): 44, 32, 44, (459,308,0): 36, 24, 36, (459,309,0): 34, 24, 35, (459,310,0): 37, 27, 38, (459,311,0): 33, 23, 34, (459,312,0): 30, 22, 33, (459,313,0): 29, 21, 32, (459,314,0): 26, 20, 30, (459,315,0): 25, 19, 29, (459,316,0): 24, 18, 28, (459,317,0): 23, 20, 29, (459,318,0): 23, 20, 29, (459,319,0): 26, 20, 30, (459,320,0): 28, 17, 31, (459,321,0): 29, 17, 31, (459,322,0): 31, 19, 33, (459,323,0): 31, 19, 33, (459,324,0): 31, 19, 33, (459,325,0): 31, 19, 33, (459,326,0): 29, 17, 31, (459,327,0): 29, 17, 31, (459,328,0): 30, 18, 32, (459,329,0): 29, 17, 31, (459,330,0): 27, 15, 29, (459,331,0): 26, 14, 28, (459,332,0): 25, 13, 27, (459,333,0): 26, 14, 28, (459,334,0): 26, 14, 28, (459,335,0): 26, 15, 29, (459,336,0): 22, 14, 29, (459,337,0): 21, 15, 29, (459,338,0): 22, 16, 30, (459,339,0): 22, 16, 30, (459,340,0): 22, 16, 30, (459,341,0): 22, 16, 30, (459,342,0): 22, 16, 30, (459,343,0): 22, 16, 30, (459,344,0): 20, 14, 28, (459,345,0): 22, 16, 30, (459,346,0): 23, 17, 31, (459,347,0): 21, 15, 29, (459,348,0): 19, 13, 27, (459,349,0): 17, 11, 25, (459,350,0): 18, 12, 26, (459,351,0): 21, 13, 28, (459,352,0): 25, 14, 28, (459,353,0): 26, 14, 28, (459,354,0): 26, 14, 28, (459,355,0): 26, 14, 28, (459,356,0): 25, 14, 28, (459,357,0): 25, 14, 28, (459,358,0): 25, 14, 28, (459,359,0): 25, 14, 28, (459,360,0): 25, 17, 30, (459,361,0): 23, 15, 28, (459,362,0): 20, 14, 26, (459,363,0): 18, 12, 24, (459,364,0): 18, 12, 24, (459,365,0): 18, 12, 24, (459,366,0): 18, 15, 26, (459,367,0): 19, 16, 27, (459,368,0): 15, 11, 26, (459,369,0): 16, 12, 27, (459,370,0): 18, 12, 26, (459,371,0): 19, 13, 27, (459,372,0): 21, 15, 29, (459,373,0): 22, 16, 30, (459,374,0): 23, 15, 28, (459,375,0): 24, 16, 29, (459,376,0): 26, 16, 27, (459,377,0): 26, 16, 27, (459,378,0): 26, 16, 27, (459,379,0): 27, 17, 28, (459,380,0): 28, 16, 26, (459,381,0): 29, 17, 27, (459,382,0): 29, 17, 27, (459,383,0): 30, 18, 28, (459,384,0): 32, 16, 27, (459,385,0): 31, 15, 26, (459,386,0): 30, 14, 25, (459,387,0): 30, 14, 25, (459,388,0): 31, 15, 26, (459,389,0): 32, 16, 27, (459,390,0): 33, 17, 28, (459,391,0): 34, 18, 29, (459,392,0): 37, 21, 32, (459,393,0): 38, 22, 33, (459,394,0): 38, 22, 33, (459,395,0): 38, 22, 33, (459,396,0): 39, 23, 34, (459,397,0): 40, 24, 35, (459,398,0): 40, 24, 35, (459,399,0): 41, 24, 34, (459,400,0): 49, 30, 36, (459,401,0): 50, 29, 34, (459,402,0): 50, 29, 34, (459,403,0): 50, 29, 34, (459,404,0): 50, 29, 34, (459,405,0): 50, 29, 34, (459,406,0): 50, 29, 34, (459,407,0): 50, 29, 34, (459,408,0): 49, 28, 33, (459,409,0): 51, 30, 35, (459,410,0): 52, 31, 36, (459,411,0): 51, 30, 35, (459,412,0): 50, 29, 34, (459,413,0): 51, 30, 35, (459,414,0): 54, 33, 38, (459,415,0): 58, 37, 42, (459,416,0): 63, 40, 48, (459,417,0): 64, 41, 51, (459,418,0): 65, 42, 52, (459,419,0): 68, 45, 55, (459,420,0): 70, 47, 57, (459,421,0): 73, 50, 60, (459,422,0): 75, 52, 62, (459,423,0): 76, 53, 63, (459,424,0): 78, 55, 65, (459,425,0): 78, 55, 65, (459,426,0): 77, 54, 64, (459,427,0): 77, 54, 64, (459,428,0): 76, 53, 63, (459,429,0): 75, 52, 62, (459,430,0): 74, 51, 61, (459,431,0): 74, 51, 61, (459,432,0): 76, 53, 63, (459,433,0): 76, 53, 63, (459,434,0): 76, 53, 63, (459,435,0): 76, 53, 63, (459,436,0): 76, 53, 63, (459,437,0): 76, 53, 63, (459,438,0): 76, 53, 63, (459,439,0): 76, 53, 63, (459,440,0): 75, 52, 62, (459,441,0): 74, 51, 61, (459,442,0): 72, 49, 59, (459,443,0): 70, 47, 57, (459,444,0): 69, 46, 56, (459,445,0): 69, 46, 56, (459,446,0): 69, 46, 56, (459,447,0): 69, 47, 59, (459,448,0): 68, 48, 60, (459,449,0): 70, 49, 64, (459,450,0): 71, 51, 63, (459,451,0): 73, 53, 65, (459,452,0): 74, 54, 66, (459,453,0): 75, 55, 67, (459,454,0): 74, 54, 65, (459,455,0): 74, 54, 65, (459,456,0): 73, 53, 62, (459,457,0): 71, 51, 60, (459,458,0): 66, 46, 55, (459,459,0): 62, 42, 51, (459,460,0): 58, 39, 45, (459,461,0): 55, 36, 42, (459,462,0): 54, 35, 41, (459,463,0): 53, 34, 38, (459,464,0): 55, 36, 40, (459,465,0): 55, 36, 38, (459,466,0): 56, 37, 39, (459,467,0): 57, 37, 39, (459,468,0): 56, 36, 38, (459,469,0): 56, 34, 37, (459,470,0): 56, 31, 35, (459,471,0): 56, 29, 34, (459,472,0): 53, 26, 31, (459,473,0): 54, 25, 30, (459,474,0): 55, 24, 30, (459,475,0): 55, 22, 29, (459,476,0): 56, 21, 28, (459,477,0): 57, 22, 29, (459,478,0): 58, 23, 30, (459,479,0): 61, 24, 31, (459,480,0): 61, 22, 25, (459,481,0): 64, 25, 26, (459,482,0): 64, 29, 27, (459,483,0): 65, 27, 26, (459,484,0): 64, 22, 23, (459,485,0): 69, 23, 25, (459,486,0): 78, 29, 32, (459,487,0): 84, 35, 38, (459,488,0): 79, 33, 35, (459,489,0): 86, 40, 40, (459,490,0): 95, 49, 51, (459,491,0): 102, 54, 54, (459,492,0): 102, 54, 54, (459,493,0): 100, 52, 50, (459,494,0): 97, 53, 52, (459,495,0): 98, 54, 55, (459,496,0): 97, 50, 56, (459,497,0): 107, 47, 59, (459,498,0): 129, 48, 65, (459,499,0): 152, 57, 77, (459,500,0): 175, 67, 90, (459,501,0): 177, 71, 91, (459,502,0): 160, 66, 84, (459,503,0): 142, 58, 71, (459,504,0): 138, 60, 73, (459,505,0): 138, 56, 68, (459,506,0): 152, 56, 70, (459,507,0): 170, 55, 70, (459,508,0): 192, 55, 71, (459,509,0): 220, 68, 83, (459,510,0): 235, 70, 84, (459,511,0): 228, 56, 72, (459,512,0): 232, 52, 77, (459,513,0): 244, 61, 91, (459,514,0): 251, 65, 104, (459,515,0): 251, 65, 104, (459,516,0): 252, 68, 104, (459,517,0): 255, 74, 112, (459,518,0): 255, 77, 124, (459,519,0): 252, 74, 136, (459,520,0): 254, 76, 164, (459,521,0): 249, 84, 186, (459,522,0): 255, 112, 217, (459,523,0): 255, 147, 239, (459,524,0): 255, 179, 243, (459,525,0): 255, 215, 255, (459,526,0): 255, 243, 255, (459,527,0): 255, 246, 255, (459,528,0): 255, 249, 255, (459,529,0): 255, 249, 255, (459,530,0): 255, 250, 255, (459,531,0): 255, 249, 255, (459,532,0): 255, 229, 254, (459,533,0): 245, 203, 241, (459,534,0): 251, 185, 246, (459,535,0): 255, 181, 255, (459,536,0): 229, 118, 210, (459,537,0): 245, 117, 214, (459,538,0): 248, 109, 200, (459,539,0): 248, 96, 179, (459,540,0): 253, 89, 158, (459,541,0): 255, 86, 145, (459,542,0): 255, 80, 129, (459,543,0): 255, 77, 111, (459,544,0): 255, 77, 89, (459,545,0): 253, 76, 84, (459,546,0): 248, 66, 88, (459,547,0): 245, 66, 98, (459,548,0): 241, 72, 113, (459,549,0): 215, 63, 104, (459,550,0): 188, 57, 91, (459,551,0): 186, 66, 93, (459,552,0): 192, 73, 92, (459,553,0): 183, 59, 70, (459,554,0): 203, 65, 78, (459,555,0): 223, 83, 96, (459,556,0): 204, 73, 87, (459,557,0): 173, 58, 71, (459,558,0): 155, 63, 74, (459,559,0): 150, 74, 84, (459,560,0): 137, 67, 77, (459,561,0): 129, 66, 75, (459,562,0): 120, 63, 70, (459,563,0): 113, 62, 67, (459,564,0): 109, 62, 68, (459,565,0): 106, 65, 69, (459,566,0): 107, 68, 71, (459,567,0): 108, 69, 72, (459,568,0): 108, 69, 74, (459,569,0): 105, 64, 70, (459,570,0): 101, 60, 68, (459,571,0): 100, 60, 68, (459,572,0): 103, 63, 71, (459,573,0): 101, 64, 71, (459,574,0): 96, 63, 70, (459,575,0): 92, 59, 66, (459,576,0): 100, 63, 71, (459,577,0): 98, 61, 69, (459,578,0): 95, 60, 67, (459,579,0): 90, 57, 64, (459,580,0): 87, 56, 62, (459,581,0): 86, 57, 62, (459,582,0): 84, 57, 62, (459,583,0): 83, 58, 62, (459,584,0): 82, 57, 61, (459,585,0): 80, 55, 59, (459,586,0): 78, 53, 57, (459,587,0): 78, 53, 57, (459,588,0): 79, 52, 57, (459,589,0): 77, 50, 55, (459,590,0): 74, 45, 50, (459,591,0): 68, 41, 46, (459,592,0): 68, 43, 47, (459,593,0): 64, 42, 45, (459,594,0): 60, 38, 41, (459,595,0): 55, 33, 36, (459,596,0): 51, 29, 32, (459,597,0): 48, 26, 29, (459,598,0): 46, 24, 27, (459,599,0): 45, 23, 26, (460,0,0): 66, 71, 65, (460,1,0): 65, 70, 64, (460,2,0): 63, 68, 62, (460,3,0): 62, 67, 61, (460,4,0): 60, 65, 59, (460,5,0): 60, 65, 59, (460,6,0): 60, 65, 59, (460,7,0): 61, 66, 60, (460,8,0): 61, 66, 60, (460,9,0): 61, 66, 60, (460,10,0): 61, 66, 60, (460,11,0): 62, 67, 61, (460,12,0): 62, 67, 61, (460,13,0): 63, 68, 62, (460,14,0): 63, 68, 62, (460,15,0): 63, 68, 62, (460,16,0): 63, 70, 63, (460,17,0): 62, 69, 62, (460,18,0): 60, 67, 60, (460,19,0): 59, 66, 59, (460,20,0): 60, 67, 60, (460,21,0): 63, 70, 63, (460,22,0): 66, 73, 66, (460,23,0): 69, 76, 69, (460,24,0): 67, 74, 67, (460,25,0): 67, 74, 67, (460,26,0): 68, 75, 68, (460,27,0): 69, 76, 69, (460,28,0): 70, 77, 70, (460,29,0): 71, 78, 71, (460,30,0): 72, 79, 72, (460,31,0): 73, 78, 72, (460,32,0): 76, 79, 72, (460,33,0): 76, 77, 71, (460,34,0): 75, 76, 70, (460,35,0): 75, 76, 70, (460,36,0): 76, 76, 68, (460,37,0): 78, 78, 70, (460,38,0): 80, 80, 72, (460,39,0): 82, 82, 74, (460,40,0): 83, 80, 71, (460,41,0): 83, 80, 71, (460,42,0): 83, 79, 68, (460,43,0): 83, 79, 68, (460,44,0): 82, 78, 67, (460,45,0): 82, 78, 67, (460,46,0): 83, 77, 65, (460,47,0): 84, 76, 65, (460,48,0): 86, 76, 64, (460,49,0): 88, 76, 64, (460,50,0): 88, 76, 64, (460,51,0): 87, 75, 63, (460,52,0): 87, 75, 63, (460,53,0): 86, 74, 62, (460,54,0): 86, 74, 62, (460,55,0): 85, 73, 61, (460,56,0): 84, 72, 60, (460,57,0): 83, 71, 59, (460,58,0): 83, 71, 59, (460,59,0): 82, 70, 58, (460,60,0): 82, 70, 58, (460,61,0): 81, 69, 57, (460,62,0): 81, 69, 57, (460,63,0): 82, 68, 57, (460,64,0): 81, 64, 54, (460,65,0): 82, 64, 54, (460,66,0): 82, 64, 54, (460,67,0): 82, 64, 54, (460,68,0): 82, 64, 54, (460,69,0): 83, 65, 55, (460,70,0): 83, 65, 55, (460,71,0): 83, 65, 55, (460,72,0): 81, 63, 53, (460,73,0): 80, 62, 52, (460,74,0): 79, 61, 51, (460,75,0): 78, 60, 50, (460,76,0): 77, 59, 49, (460,77,0): 76, 58, 48, (460,78,0): 75, 57, 47, (460,79,0): 75, 57, 45, (460,80,0): 80, 58, 47, (460,81,0): 79, 57, 44, (460,82,0): 79, 57, 44, (460,83,0): 78, 56, 43, (460,84,0): 76, 57, 43, (460,85,0): 75, 56, 42, (460,86,0): 74, 56, 42, (460,87,0): 74, 56, 42, (460,88,0): 72, 56, 41, (460,89,0): 72, 56, 41, (460,90,0): 71, 58, 42, (460,91,0): 71, 58, 42, (460,92,0): 72, 59, 43, (460,93,0): 71, 59, 43, (460,94,0): 72, 60, 44, (460,95,0): 73, 60, 44, (460,96,0): 72, 56, 41, (460,97,0): 73, 55, 41, (460,98,0): 73, 55, 41, (460,99,0): 72, 54, 40, (460,100,0): 71, 53, 39, (460,101,0): 68, 50, 36, (460,102,0): 66, 48, 34, (460,103,0): 65, 47, 33, (460,104,0): 61, 43, 29, (460,105,0): 61, 43, 29, (460,106,0): 60, 42, 28, (460,107,0): 60, 42, 28, (460,108,0): 59, 41, 27, (460,109,0): 59, 41, 27, (460,110,0): 58, 40, 26, (460,111,0): 58, 40, 26, (460,112,0): 60, 42, 32, (460,113,0): 60, 42, 32, (460,114,0): 60, 42, 32, (460,115,0): 60, 42, 32, (460,116,0): 60, 42, 32, (460,117,0): 60, 42, 32, (460,118,0): 60, 42, 32, (460,119,0): 60, 42, 32, (460,120,0): 62, 44, 34, (460,121,0): 62, 44, 34, (460,122,0): 62, 44, 34, (460,123,0): 61, 43, 33, (460,124,0): 61, 43, 33, (460,125,0): 60, 42, 32, (460,126,0): 60, 42, 32, (460,127,0): 60, 42, 32, (460,128,0): 60, 41, 35, (460,129,0): 60, 41, 35, (460,130,0): 60, 41, 35, (460,131,0): 61, 42, 36, (460,132,0): 61, 42, 36, (460,133,0): 61, 42, 36, (460,134,0): 62, 43, 37, (460,135,0): 62, 43, 37, (460,136,0): 62, 43, 37, (460,137,0): 63, 44, 38, (460,138,0): 64, 45, 39, (460,139,0): 65, 46, 40, (460,140,0): 67, 48, 42, (460,141,0): 69, 50, 44, (460,142,0): 70, 51, 45, (460,143,0): 70, 51, 45, (460,144,0): 73, 54, 48, (460,145,0): 73, 54, 48, (460,146,0): 73, 54, 48, (460,147,0): 74, 55, 49, (460,148,0): 74, 55, 49, (460,149,0): 75, 56, 50, (460,150,0): 75, 56, 50, (460,151,0): 75, 56, 50, (460,152,0): 78, 59, 53, (460,153,0): 79, 60, 54, (460,154,0): 80, 61, 55, (460,155,0): 81, 62, 56, (460,156,0): 82, 63, 57, (460,157,0): 83, 64, 58, (460,158,0): 84, 65, 59, (460,159,0): 85, 66, 60, (460,160,0): 83, 64, 60, (460,161,0): 83, 64, 60, (460,162,0): 83, 64, 60, (460,163,0): 83, 64, 60, (460,164,0): 83, 64, 60, (460,165,0): 83, 64, 60, (460,166,0): 83, 64, 60, (460,167,0): 83, 64, 60, (460,168,0): 83, 64, 60, (460,169,0): 83, 64, 60, (460,170,0): 84, 65, 61, (460,171,0): 84, 65, 61, (460,172,0): 85, 66, 62, (460,173,0): 85, 66, 62, (460,174,0): 86, 67, 63, (460,175,0): 85, 67, 63, (460,176,0): 86, 68, 66, (460,177,0): 84, 69, 66, (460,178,0): 86, 70, 70, (460,179,0): 87, 71, 71, (460,180,0): 89, 73, 73, (460,181,0): 91, 75, 75, (460,182,0): 92, 76, 77, (460,183,0): 93, 77, 78, (460,184,0): 94, 78, 81, (460,185,0): 94, 78, 81, (460,186,0): 95, 79, 82, (460,187,0): 97, 81, 84, (460,188,0): 98, 81, 87, (460,189,0): 99, 82, 88, (460,190,0): 101, 84, 90, (460,191,0): 100, 85, 90, (460,192,0): 97, 86, 90, (460,193,0): 97, 88, 91, (460,194,0): 98, 87, 91, (460,195,0): 98, 87, 91, (460,196,0): 98, 86, 88, (460,197,0): 96, 84, 86, (460,198,0): 96, 81, 84, (460,199,0): 96, 80, 81, (460,200,0): 95, 76, 78, (460,201,0): 93, 74, 76, (460,202,0): 91, 71, 72, (460,203,0): 88, 68, 69, (460,204,0): 87, 65, 67, (460,205,0): 86, 64, 66, (460,206,0): 88, 64, 64, (460,207,0): 87, 63, 63, (460,208,0): 86, 62, 62, (460,209,0): 84, 63, 62, (460,210,0): 85, 63, 65, (460,211,0): 86, 64, 66, (460,212,0): 87, 65, 67, (460,213,0): 88, 66, 68, (460,214,0): 88, 66, 69, (460,215,0): 89, 67, 70, (460,216,0): 92, 69, 75, (460,217,0): 93, 70, 76, (460,218,0): 94, 71, 77, (460,219,0): 95, 72, 78, (460,220,0): 97, 74, 82, (460,221,0): 98, 75, 83, (460,222,0): 100, 77, 85, (460,223,0): 102, 76, 85, (460,224,0): 104, 74, 84, (460,225,0): 107, 75, 86, (460,226,0): 111, 78, 89, (460,227,0): 115, 82, 93, (460,228,0): 120, 87, 98, (460,229,0): 126, 93, 104, (460,230,0): 132, 96, 106, (460,231,0): 134, 98, 108, (460,232,0): 138, 102, 112, (460,233,0): 143, 107, 117, (460,234,0): 150, 112, 123, (460,235,0): 158, 120, 131, (460,236,0): 172, 135, 143, (460,237,0): 195, 158, 166, (460,238,0): 225, 185, 194, (460,239,0): 245, 205, 216, (460,240,0): 251, 210, 224, (460,241,0): 250, 209, 225, (460,242,0): 248, 209, 227, (460,243,0): 244, 210, 227, (460,244,0): 241, 209, 230, (460,245,0): 237, 209, 231, (460,246,0): 234, 209, 231, (460,247,0): 232, 210, 233, (460,248,0): 229, 211, 235, (460,249,0): 227, 212, 235, (460,250,0): 227, 211, 237, (460,251,0): 225, 211, 236, (460,252,0): 223, 209, 234, (460,253,0): 220, 206, 231, (460,254,0): 218, 204, 227, (460,255,0): 215, 203, 227, (460,256,0): 214, 205, 232, (460,257,0): 211, 207, 234, (460,258,0): 211, 206, 236, (460,259,0): 209, 209, 237, (460,260,0): 210, 211, 241, (460,261,0): 210, 215, 245, (460,262,0): 210, 219, 250, (460,263,0): 209, 223, 252, (460,264,0): 205, 224, 254, (460,265,0): 200, 223, 254, (460,266,0): 196, 223, 253, (460,267,0): 191, 222, 253, (460,268,0): 187, 222, 254, (460,269,0): 186, 222, 254, (460,270,0): 185, 224, 255, (460,271,0): 185, 224, 255, (460,272,0): 183, 224, 252, (460,273,0): 181, 222, 250, (460,274,0): 179, 220, 248, (460,275,0): 179, 220, 248, (460,276,0): 180, 221, 249, (460,277,0): 181, 222, 250, (460,278,0): 178, 219, 249, (460,279,0): 176, 217, 247, (460,280,0): 179, 219, 254, (460,281,0): 178, 218, 254, (460,282,0): 175, 214, 255, (460,283,0): 172, 211, 254, (460,284,0): 168, 206, 255, (460,285,0): 165, 202, 254, (460,286,0): 162, 199, 252, (460,287,0): 161, 197, 255, (460,288,0): 155, 191, 253, (460,289,0): 153, 191, 255, (460,290,0): 150, 189, 255, (460,291,0): 149, 188, 253, (460,292,0): 150, 188, 251, (460,293,0): 154, 188, 251, (460,294,0): 158, 187, 247, (460,295,0): 161, 187, 248, (460,296,0): 165, 188, 255, (460,297,0): 169, 192, 255, (460,298,0): 170, 193, 255, (460,299,0): 172, 190, 254, (460,300,0): 171, 182, 236, (460,301,0): 161, 162, 206, (460,302,0): 137, 128, 159, (460,303,0): 112, 99, 119, (460,304,0): 74, 60, 75, (460,305,0): 53, 40, 50, (460,306,0): 44, 31, 41, (460,307,0): 42, 30, 40, (460,308,0): 35, 23, 33, (460,309,0): 34, 22, 32, (460,310,0): 35, 25, 34, (460,311,0): 31, 21, 30, (460,312,0): 30, 23, 31, (460,313,0): 29, 22, 30, (460,314,0): 27, 22, 29, (460,315,0): 25, 20, 27, (460,316,0): 23, 20, 27, (460,317,0): 23, 20, 27, (460,318,0): 24, 21, 28, (460,319,0): 24, 21, 30, (460,320,0): 28, 17, 31, (460,321,0): 29, 17, 31, (460,322,0): 31, 19, 33, (460,323,0): 31, 19, 33, (460,324,0): 31, 19, 33, (460,325,0): 31, 19, 33, (460,326,0): 29, 17, 31, (460,327,0): 29, 17, 31, (460,328,0): 30, 18, 32, (460,329,0): 29, 17, 31, (460,330,0): 27, 15, 29, (460,331,0): 26, 14, 28, (460,332,0): 25, 13, 27, (460,333,0): 26, 14, 28, (460,334,0): 26, 14, 28, (460,335,0): 26, 15, 29, (460,336,0): 23, 15, 30, (460,337,0): 22, 15, 31, (460,338,0): 21, 14, 30, (460,339,0): 21, 14, 30, (460,340,0): 21, 14, 30, (460,341,0): 21, 14, 30, (460,342,0): 21, 14, 30, (460,343,0): 21, 14, 30, (460,344,0): 20, 13, 29, (460,345,0): 22, 15, 31, (460,346,0): 23, 16, 32, (460,347,0): 21, 14, 30, (460,348,0): 19, 12, 28, (460,349,0): 17, 10, 26, (460,350,0): 18, 11, 27, (460,351,0): 21, 13, 28, (460,352,0): 25, 14, 28, (460,353,0): 26, 14, 28, (460,354,0): 26, 14, 28, (460,355,0): 26, 14, 28, (460,356,0): 25, 14, 28, (460,357,0): 25, 14, 28, (460,358,0): 25, 14, 28, (460,359,0): 25, 14, 28, (460,360,0): 25, 17, 30, (460,361,0): 23, 15, 28, (460,362,0): 20, 14, 26, (460,363,0): 18, 12, 24, (460,364,0): 18, 12, 24, (460,365,0): 18, 12, 24, (460,366,0): 18, 15, 26, (460,367,0): 19, 16, 27, (460,368,0): 15, 11, 26, (460,369,0): 16, 12, 27, (460,370,0): 18, 12, 26, (460,371,0): 19, 13, 27, (460,372,0): 21, 15, 29, (460,373,0): 22, 16, 30, (460,374,0): 23, 15, 28, (460,375,0): 24, 16, 29, (460,376,0): 26, 16, 27, (460,377,0): 27, 17, 28, (460,378,0): 27, 17, 28, (460,379,0): 28, 18, 29, (460,380,0): 29, 17, 27, (460,381,0): 30, 18, 28, (460,382,0): 30, 18, 28, (460,383,0): 30, 18, 28, (460,384,0): 32, 16, 27, (460,385,0): 31, 15, 26, (460,386,0): 30, 14, 25, (460,387,0): 30, 14, 25, (460,388,0): 31, 15, 26, (460,389,0): 32, 16, 27, (460,390,0): 33, 17, 28, (460,391,0): 34, 18, 29, (460,392,0): 38, 22, 33, (460,393,0): 38, 22, 33, (460,394,0): 38, 22, 33, (460,395,0): 39, 23, 34, (460,396,0): 40, 24, 35, (460,397,0): 40, 24, 35, (460,398,0): 40, 24, 35, (460,399,0): 42, 25, 35, (460,400,0): 51, 30, 35, (460,401,0): 52, 30, 33, (460,402,0): 52, 30, 33, (460,403,0): 52, 30, 33, (460,404,0): 52, 30, 33, (460,405,0): 52, 30, 33, (460,406,0): 52, 30, 33, (460,407,0): 52, 30, 33, (460,408,0): 50, 28, 31, (460,409,0): 52, 30, 33, (460,410,0): 53, 31, 34, (460,411,0): 53, 31, 34, (460,412,0): 52, 30, 33, (460,413,0): 52, 30, 33, (460,414,0): 56, 34, 37, (460,415,0): 59, 36, 42, (460,416,0): 62, 39, 47, (460,417,0): 63, 40, 48, (460,418,0): 65, 42, 50, (460,419,0): 68, 45, 53, (460,420,0): 71, 48, 56, (460,421,0): 74, 51, 59, (460,422,0): 76, 53, 61, (460,423,0): 77, 54, 62, (460,424,0): 78, 55, 63, (460,425,0): 78, 55, 63, (460,426,0): 77, 54, 62, (460,427,0): 76, 53, 61, (460,428,0): 74, 51, 59, (460,429,0): 73, 50, 58, (460,430,0): 72, 49, 57, (460,431,0): 72, 49, 57, (460,432,0): 76, 53, 61, (460,433,0): 76, 53, 61, (460,434,0): 76, 53, 61, (460,435,0): 76, 53, 61, (460,436,0): 76, 53, 61, (460,437,0): 76, 53, 61, (460,438,0): 76, 53, 61, (460,439,0): 76, 53, 61, (460,440,0): 75, 52, 60, (460,441,0): 74, 51, 59, (460,442,0): 72, 49, 57, (460,443,0): 70, 47, 55, (460,444,0): 69, 46, 54, (460,445,0): 69, 46, 54, (460,446,0): 69, 46, 54, (460,447,0): 69, 48, 57, (460,448,0): 68, 48, 60, (460,449,0): 67, 49, 63, (460,450,0): 69, 51, 63, (460,451,0): 71, 53, 65, (460,452,0): 72, 54, 66, (460,453,0): 72, 54, 66, (460,454,0): 72, 55, 65, (460,455,0): 71, 54, 64, (460,456,0): 71, 54, 62, (460,457,0): 69, 52, 60, (460,458,0): 65, 48, 56, (460,459,0): 61, 44, 52, (460,460,0): 56, 39, 45, (460,461,0): 53, 36, 42, (460,462,0): 51, 34, 40, (460,463,0): 50, 34, 37, (460,464,0): 51, 35, 38, (460,465,0): 52, 36, 37, (460,466,0): 53, 37, 38, (460,467,0): 55, 36, 38, (460,468,0): 55, 36, 38, (460,469,0): 55, 35, 37, (460,470,0): 54, 32, 35, (460,471,0): 55, 30, 34, (460,472,0): 53, 26, 31, (460,473,0): 54, 25, 30, (460,474,0): 53, 22, 28, (460,475,0): 53, 22, 28, (460,476,0): 54, 21, 28, (460,477,0): 55, 22, 29, (460,478,0): 58, 23, 30, (460,479,0): 59, 22, 29, (460,480,0): 63, 24, 27, (460,481,0): 66, 27, 28, (460,482,0): 65, 29, 29, (460,483,0): 64, 24, 25, (460,484,0): 65, 19, 21, (460,485,0): 72, 20, 24, (460,486,0): 85, 29, 32, (460,487,0): 95, 36, 40, (460,488,0): 91, 35, 38, (460,489,0): 96, 40, 41, (460,490,0): 101, 45, 48, (460,491,0): 107, 48, 50, (460,492,0): 109, 49, 51, (460,493,0): 109, 51, 50, (460,494,0): 107, 53, 53, (460,495,0): 106, 54, 56, (460,496,0): 102, 51, 58, (460,497,0): 111, 48, 59, (460,498,0): 134, 47, 64, (460,499,0): 162, 56, 76, (460,500,0): 184, 67, 86, (460,501,0): 187, 70, 88, (460,502,0): 171, 64, 80, (460,503,0): 153, 57, 68, (460,504,0): 142, 55, 64, (460,505,0): 140, 49, 58, (460,506,0): 155, 49, 61, (460,507,0): 176, 51, 67, (460,508,0): 196, 51, 68, (460,509,0): 222, 59, 78, (460,510,0): 236, 60, 80, (460,511,0): 229, 46, 68, (460,512,0): 232, 45, 72, (460,513,0): 243, 53, 87, (460,514,0): 252, 59, 103, (460,515,0): 253, 63, 107, (460,516,0): 252, 70, 110, (460,517,0): 255, 77, 119, (460,518,0): 253, 77, 124, (460,519,0): 245, 72, 136, (460,520,0): 248, 78, 167, (460,521,0): 243, 84, 186, (460,522,0): 254, 120, 219, (460,523,0): 255, 166, 249, (460,524,0): 255, 203, 255, (460,525,0): 255, 233, 255, (460,526,0): 255, 250, 255, (460,527,0): 255, 252, 255, (460,528,0): 255, 249, 255, (460,529,0): 255, 251, 255, (460,530,0): 255, 253, 255, (460,531,0): 255, 249, 255, (460,532,0): 240, 225, 244, (460,533,0): 237, 203, 236, (460,534,0): 255, 196, 252, (460,535,0): 255, 197, 255, (460,536,0): 232, 126, 214, (460,537,0): 245, 120, 214, (460,538,0): 252, 113, 204, (460,539,0): 251, 102, 184, (460,540,0): 252, 93, 160, (460,541,0): 255, 89, 143, (460,542,0): 255, 82, 128, (460,543,0): 251, 73, 105, (460,544,0): 255, 84, 97, (460,545,0): 255, 81, 92, (460,546,0): 251, 67, 91, (460,547,0): 248, 64, 98, (460,548,0): 247, 72, 113, (460,549,0): 230, 67, 110, (460,550,0): 208, 62, 99, (460,551,0): 207, 70, 100, (460,552,0): 200, 67, 88, (460,553,0): 188, 52, 66, (460,554,0): 206, 60, 73, (460,555,0): 228, 80, 94, (460,556,0): 216, 74, 90, (460,557,0): 188, 57, 73, (460,558,0): 173, 58, 75, (460,559,0): 166, 65, 81, (460,560,0): 156, 65, 80, (460,561,0): 146, 66, 79, (460,562,0): 136, 64, 75, (460,563,0): 125, 62, 70, (460,564,0): 117, 62, 68, (460,565,0): 113, 64, 68, (460,566,0): 113, 66, 72, (460,567,0): 114, 69, 74, (460,568,0): 120, 75, 82, (460,569,0): 115, 70, 77, (460,570,0): 109, 63, 73, (460,571,0): 104, 63, 71, (460,572,0): 103, 66, 74, (460,573,0): 101, 70, 76, (460,574,0): 98, 71, 76, (460,575,0): 98, 71, 76, (460,576,0): 100, 65, 72, (460,577,0): 100, 63, 71, (460,578,0): 97, 62, 69, (460,579,0): 92, 59, 66, (460,580,0): 89, 58, 64, (460,581,0): 87, 58, 63, (460,582,0): 84, 57, 62, (460,583,0): 84, 57, 62, (460,584,0): 83, 58, 62, (460,585,0): 80, 55, 59, (460,586,0): 79, 52, 57, (460,587,0): 78, 51, 56, (460,588,0): 80, 51, 56, (460,589,0): 78, 49, 54, (460,590,0): 76, 45, 51, (460,591,0): 71, 42, 47, (460,592,0): 68, 43, 47, (460,593,0): 64, 42, 45, (460,594,0): 60, 38, 41, (460,595,0): 55, 33, 36, (460,596,0): 51, 29, 32, (460,597,0): 48, 26, 29, (460,598,0): 46, 24, 27, (460,599,0): 45, 23, 26, (461,0,0): 67, 72, 66, (461,1,0): 66, 71, 65, (461,2,0): 64, 69, 63, (461,3,0): 62, 67, 61, (461,4,0): 61, 66, 60, (461,5,0): 61, 66, 60, (461,6,0): 61, 66, 60, (461,7,0): 61, 66, 60, (461,8,0): 61, 66, 60, (461,9,0): 61, 66, 60, (461,10,0): 61, 66, 60, (461,11,0): 62, 67, 61, (461,12,0): 62, 67, 61, (461,13,0): 63, 68, 62, (461,14,0): 63, 68, 62, (461,15,0): 63, 68, 62, (461,16,0): 62, 69, 62, (461,17,0): 61, 68, 61, (461,18,0): 60, 67, 60, (461,19,0): 60, 67, 60, (461,20,0): 61, 68, 61, (461,21,0): 63, 70, 63, (461,22,0): 66, 73, 66, (461,23,0): 67, 74, 67, (461,24,0): 66, 73, 66, (461,25,0): 67, 74, 67, (461,26,0): 68, 75, 68, (461,27,0): 69, 76, 69, (461,28,0): 70, 77, 70, (461,29,0): 71, 78, 71, (461,30,0): 72, 79, 72, (461,31,0): 73, 78, 72, (461,32,0): 74, 77, 70, (461,33,0): 75, 76, 70, (461,34,0): 75, 76, 70, (461,35,0): 76, 77, 71, (461,36,0): 78, 78, 70, (461,37,0): 79, 79, 71, (461,38,0): 81, 81, 73, (461,39,0): 81, 81, 73, (461,40,0): 83, 80, 71, (461,41,0): 83, 80, 71, (461,42,0): 83, 79, 68, (461,43,0): 83, 79, 68, (461,44,0): 82, 78, 67, (461,45,0): 82, 78, 67, (461,46,0): 83, 77, 65, (461,47,0): 84, 76, 65, (461,48,0): 85, 75, 63, (461,49,0): 87, 75, 63, (461,50,0): 87, 75, 63, (461,51,0): 86, 74, 62, (461,52,0): 86, 74, 62, (461,53,0): 85, 73, 61, (461,54,0): 85, 73, 61, (461,55,0): 85, 73, 61, (461,56,0): 83, 71, 59, (461,57,0): 83, 71, 59, (461,58,0): 83, 71, 59, (461,59,0): 82, 70, 58, (461,60,0): 81, 69, 57, (461,61,0): 81, 69, 57, (461,62,0): 81, 69, 57, (461,63,0): 81, 67, 56, (461,64,0): 81, 64, 54, (461,65,0): 82, 64, 54, (461,66,0): 82, 64, 54, (461,67,0): 82, 64, 54, (461,68,0): 82, 64, 54, (461,69,0): 81, 63, 53, (461,70,0): 81, 63, 53, (461,71,0): 81, 63, 53, (461,72,0): 80, 62, 52, (461,73,0): 80, 62, 52, (461,74,0): 79, 61, 51, (461,75,0): 78, 60, 50, (461,76,0): 77, 59, 49, (461,77,0): 76, 58, 48, (461,78,0): 75, 57, 47, (461,79,0): 75, 55, 44, (461,80,0): 79, 57, 46, (461,81,0): 80, 56, 44, (461,82,0): 79, 57, 44, (461,83,0): 78, 56, 43, (461,84,0): 78, 56, 43, (461,85,0): 75, 56, 42, (461,86,0): 74, 56, 42, (461,87,0): 74, 56, 42, (461,88,0): 72, 56, 41, (461,89,0): 72, 56, 41, (461,90,0): 71, 58, 42, (461,91,0): 71, 58, 42, (461,92,0): 71, 59, 43, (461,93,0): 71, 59, 43, (461,94,0): 72, 60, 44, (461,95,0): 73, 60, 44, (461,96,0): 73, 57, 42, (461,97,0): 74, 56, 42, (461,98,0): 74, 56, 42, (461,99,0): 73, 55, 41, (461,100,0): 71, 53, 39, (461,101,0): 69, 51, 37, (461,102,0): 67, 49, 35, (461,103,0): 65, 47, 33, (461,104,0): 61, 43, 29, (461,105,0): 61, 43, 29, (461,106,0): 60, 42, 28, (461,107,0): 60, 42, 28, (461,108,0): 59, 41, 27, (461,109,0): 59, 41, 27, (461,110,0): 58, 40, 26, (461,111,0): 58, 40, 26, (461,112,0): 60, 42, 32, (461,113,0): 60, 42, 32, (461,114,0): 60, 42, 32, (461,115,0): 60, 42, 32, (461,116,0): 60, 42, 32, (461,117,0): 60, 42, 32, (461,118,0): 60, 42, 32, (461,119,0): 60, 42, 32, (461,120,0): 62, 44, 34, (461,121,0): 62, 44, 34, (461,122,0): 62, 44, 34, (461,123,0): 61, 43, 33, (461,124,0): 61, 43, 33, (461,125,0): 60, 42, 32, (461,126,0): 60, 42, 32, (461,127,0): 60, 42, 32, (461,128,0): 60, 41, 35, (461,129,0): 60, 41, 35, (461,130,0): 60, 41, 35, (461,131,0): 60, 41, 35, (461,132,0): 60, 41, 35, (461,133,0): 60, 41, 35, (461,134,0): 60, 41, 35, (461,135,0): 60, 41, 35, (461,136,0): 60, 41, 35, (461,137,0): 61, 42, 36, (461,138,0): 62, 43, 37, (461,139,0): 64, 45, 39, (461,140,0): 65, 46, 40, (461,141,0): 67, 48, 42, (461,142,0): 68, 49, 43, (461,143,0): 69, 50, 44, (461,144,0): 72, 53, 47, (461,145,0): 72, 53, 47, (461,146,0): 72, 53, 47, (461,147,0): 73, 54, 48, (461,148,0): 73, 54, 48, (461,149,0): 74, 55, 49, (461,150,0): 74, 55, 49, (461,151,0): 74, 55, 49, (461,152,0): 76, 57, 51, (461,153,0): 77, 58, 52, (461,154,0): 78, 59, 53, (461,155,0): 79, 60, 54, (461,156,0): 81, 62, 56, (461,157,0): 83, 64, 58, (461,158,0): 84, 65, 59, (461,159,0): 84, 65, 59, (461,160,0): 82, 63, 59, (461,161,0): 82, 63, 59, (461,162,0): 82, 63, 59, (461,163,0): 82, 63, 59, (461,164,0): 82, 63, 59, (461,165,0): 82, 63, 59, (461,166,0): 82, 63, 59, (461,167,0): 82, 63, 59, (461,168,0): 82, 63, 59, (461,169,0): 82, 63, 59, (461,170,0): 83, 64, 60, (461,171,0): 83, 64, 60, (461,172,0): 84, 65, 61, (461,173,0): 84, 65, 61, (461,174,0): 85, 66, 62, (461,175,0): 84, 66, 62, (461,176,0): 86, 68, 66, (461,177,0): 85, 70, 67, (461,178,0): 86, 70, 70, (461,179,0): 87, 71, 71, (461,180,0): 88, 72, 72, (461,181,0): 90, 74, 74, (461,182,0): 91, 75, 76, (461,183,0): 91, 75, 76, (461,184,0): 94, 78, 81, (461,185,0): 94, 78, 81, (461,186,0): 95, 79, 82, (461,187,0): 96, 80, 83, (461,188,0): 97, 80, 86, (461,189,0): 98, 81, 87, (461,190,0): 99, 82, 88, (461,191,0): 99, 84, 89, (461,192,0): 96, 85, 89, (461,193,0): 95, 86, 89, (461,194,0): 96, 85, 89, (461,195,0): 96, 85, 89, (461,196,0): 96, 84, 86, (461,197,0): 94, 82, 84, (461,198,0): 94, 79, 82, (461,199,0): 93, 78, 81, (461,200,0): 91, 75, 76, (461,201,0): 91, 72, 74, (461,202,0): 90, 70, 71, (461,203,0): 87, 67, 68, (461,204,0): 86, 64, 66, (461,205,0): 84, 62, 64, (461,206,0): 86, 62, 62, (461,207,0): 86, 62, 62, (461,208,0): 84, 63, 62, (461,209,0): 84, 63, 62, (461,210,0): 85, 63, 65, (461,211,0): 85, 63, 65, (461,212,0): 86, 64, 66, (461,213,0): 87, 65, 67, (461,214,0): 87, 65, 68, (461,215,0): 87, 65, 68, (461,216,0): 90, 67, 73, (461,217,0): 90, 67, 73, (461,218,0): 92, 69, 75, (461,219,0): 93, 70, 76, (461,220,0): 95, 72, 80, (461,221,0): 96, 73, 81, (461,222,0): 97, 74, 82, (461,223,0): 100, 74, 83, (461,224,0): 106, 76, 86, (461,225,0): 108, 76, 87, (461,226,0): 112, 80, 91, (461,227,0): 116, 84, 95, (461,228,0): 122, 89, 100, (461,229,0): 126, 93, 104, (461,230,0): 132, 96, 106, (461,231,0): 134, 98, 108, (461,232,0): 133, 97, 107, (461,233,0): 138, 102, 112, (461,234,0): 146, 108, 119, (461,235,0): 155, 117, 128, (461,236,0): 171, 131, 140, (461,237,0): 196, 156, 165, (461,238,0): 228, 188, 197, (461,239,0): 251, 209, 219, (461,240,0): 254, 206, 218, (461,241,0): 254, 206, 218, (461,242,0): 254, 206, 220, (461,243,0): 250, 206, 221, (461,244,0): 248, 207, 225, (461,245,0): 244, 207, 225, (461,246,0): 242, 207, 227, (461,247,0): 240, 207, 228, (461,248,0): 242, 213, 233, (461,249,0): 241, 214, 233, (461,250,0): 240, 213, 232, (461,251,0): 238, 211, 230, (461,252,0): 235, 208, 227, (461,253,0): 232, 205, 222, (461,254,0): 229, 202, 219, (461,255,0): 225, 200, 219, (461,256,0): 220, 198, 219, (461,257,0): 216, 198, 220, (461,258,0): 214, 199, 222, (461,259,0): 215, 201, 224, (461,260,0): 215, 205, 230, (461,261,0): 216, 210, 236, (461,262,0): 219, 216, 243, (461,263,0): 216, 220, 247, (461,264,0): 216, 226, 253, (461,265,0): 211, 225, 252, (461,266,0): 205, 225, 252, (461,267,0): 199, 223, 251, (461,268,0): 195, 222, 252, (461,269,0): 190, 221, 250, (461,270,0): 190, 221, 252, (461,271,0): 187, 220, 251, (461,272,0): 189, 226, 253, (461,273,0): 186, 223, 249, (461,274,0): 184, 221, 248, (461,275,0): 184, 221, 247, (461,276,0): 185, 222, 249, (461,277,0): 185, 222, 249, (461,278,0): 183, 220, 247, (461,279,0): 180, 217, 246, (461,280,0): 183, 219, 253, (461,281,0): 182, 218, 254, (461,282,0): 180, 215, 255, (461,283,0): 177, 211, 255, (461,284,0): 174, 208, 255, (461,285,0): 171, 204, 255, (461,286,0): 169, 202, 255, (461,287,0): 167, 199, 255, (461,288,0): 161, 193, 254, (461,289,0): 160, 191, 255, (461,290,0): 156, 190, 254, (461,291,0): 155, 189, 252, (461,292,0): 157, 189, 250, (461,293,0): 160, 189, 247, (461,294,0): 166, 188, 246, (461,295,0): 168, 187, 246, (461,296,0): 170, 188, 250, (461,297,0): 172, 190, 254, (461,298,0): 174, 189, 255, (461,299,0): 174, 185, 247, (461,300,0): 173, 178, 233, (461,301,0): 162, 159, 202, (461,302,0): 137, 123, 156, (461,303,0): 111, 93, 115, (461,304,0): 79, 65, 80, (461,305,0): 56, 43, 53, (461,306,0): 45, 32, 42, (461,307,0): 43, 30, 40, (461,308,0): 36, 24, 34, (461,309,0): 35, 23, 33, (461,310,0): 36, 26, 35, (461,311,0): 30, 20, 29, (461,312,0): 31, 24, 32, (461,313,0): 30, 23, 31, (461,314,0): 28, 23, 30, (461,315,0): 25, 22, 29, (461,316,0): 24, 21, 28, (461,317,0): 24, 21, 28, (461,318,0): 24, 23, 29, (461,319,0): 26, 23, 30, (461,320,0): 28, 17, 31, (461,321,0): 29, 17, 31, (461,322,0): 31, 19, 33, (461,323,0): 31, 19, 33, (461,324,0): 31, 19, 33, (461,325,0): 31, 19, 33, (461,326,0): 29, 17, 31, (461,327,0): 29, 17, 31, (461,328,0): 30, 18, 32, (461,329,0): 29, 17, 31, (461,330,0): 27, 15, 29, (461,331,0): 26, 14, 28, (461,332,0): 25, 13, 27, (461,333,0): 26, 14, 28, (461,334,0): 26, 14, 28, (461,335,0): 26, 15, 29, (461,336,0): 23, 14, 31, (461,337,0): 22, 15, 31, (461,338,0): 21, 14, 30, (461,339,0): 21, 14, 30, (461,340,0): 20, 13, 29, (461,341,0): 20, 13, 29, (461,342,0): 20, 13, 29, (461,343,0): 20, 13, 29, (461,344,0): 20, 13, 29, (461,345,0): 22, 15, 31, (461,346,0): 23, 16, 32, (461,347,0): 21, 14, 30, (461,348,0): 19, 12, 28, (461,349,0): 17, 10, 26, (461,350,0): 18, 11, 27, (461,351,0): 21, 13, 28, (461,352,0): 25, 14, 30, (461,353,0): 26, 14, 28, (461,354,0): 26, 14, 28, (461,355,0): 26, 14, 28, (461,356,0): 25, 14, 28, (461,357,0): 25, 14, 28, (461,358,0): 25, 14, 28, (461,359,0): 25, 14, 28, (461,360,0): 23, 15, 28, (461,361,0): 23, 15, 28, (461,362,0): 20, 14, 26, (461,363,0): 19, 13, 25, (461,364,0): 19, 13, 25, (461,365,0): 19, 13, 25, (461,366,0): 17, 14, 25, (461,367,0): 18, 15, 26, (461,368,0): 15, 11, 26, (461,369,0): 16, 12, 27, (461,370,0): 18, 12, 26, (461,371,0): 19, 13, 27, (461,372,0): 21, 15, 29, (461,373,0): 22, 16, 30, (461,374,0): 23, 15, 28, (461,375,0): 24, 16, 29, (461,376,0): 27, 17, 28, (461,377,0): 27, 17, 28, (461,378,0): 27, 17, 28, (461,379,0): 28, 18, 29, (461,380,0): 30, 18, 28, (461,381,0): 30, 18, 28, (461,382,0): 30, 18, 28, (461,383,0): 31, 19, 29, (461,384,0): 32, 16, 27, (461,385,0): 32, 16, 27, (461,386,0): 31, 15, 26, (461,387,0): 31, 15, 26, (461,388,0): 31, 15, 26, (461,389,0): 33, 17, 28, (461,390,0): 34, 18, 29, (461,391,0): 35, 19, 30, (461,392,0): 38, 22, 33, (461,393,0): 39, 23, 34, (461,394,0): 39, 23, 34, (461,395,0): 40, 24, 35, (461,396,0): 40, 24, 35, (461,397,0): 41, 25, 36, (461,398,0): 41, 25, 36, (461,399,0): 42, 25, 35, (461,400,0): 51, 30, 35, (461,401,0): 52, 30, 33, (461,402,0): 52, 30, 33, (461,403,0): 52, 30, 33, (461,404,0): 52, 30, 33, (461,405,0): 52, 30, 33, (461,406,0): 52, 30, 33, (461,407,0): 52, 30, 33, (461,408,0): 52, 30, 33, (461,409,0): 53, 31, 34, (461,410,0): 55, 33, 36, (461,411,0): 54, 32, 35, (461,412,0): 53, 31, 34, (461,413,0): 54, 32, 35, (461,414,0): 57, 35, 38, (461,415,0): 61, 39, 42, (461,416,0): 61, 38, 46, (461,417,0): 62, 39, 47, (461,418,0): 65, 42, 50, (461,419,0): 68, 45, 53, (461,420,0): 71, 48, 56, (461,421,0): 74, 51, 59, (461,422,0): 76, 53, 61, (461,423,0): 77, 54, 62, (461,424,0): 79, 56, 64, (461,425,0): 78, 55, 63, (461,426,0): 77, 54, 62, (461,427,0): 76, 53, 61, (461,428,0): 74, 51, 59, (461,429,0): 73, 50, 58, (461,430,0): 72, 49, 57, (461,431,0): 71, 48, 56, (461,432,0): 76, 53, 61, (461,433,0): 76, 53, 61, (461,434,0): 76, 53, 61, (461,435,0): 76, 53, 61, (461,436,0): 76, 53, 61, (461,437,0): 76, 53, 61, (461,438,0): 76, 53, 61, (461,439,0): 76, 53, 61, (461,440,0): 75, 52, 60, (461,441,0): 74, 51, 59, (461,442,0): 72, 49, 57, (461,443,0): 70, 47, 55, (461,444,0): 69, 46, 54, (461,445,0): 69, 46, 54, (461,446,0): 69, 46, 54, (461,447,0): 69, 48, 57, (461,448,0): 68, 48, 60, (461,449,0): 67, 49, 63, (461,450,0): 69, 51, 63, (461,451,0): 71, 53, 65, (461,452,0): 72, 54, 66, (461,453,0): 72, 54, 66, (461,454,0): 72, 55, 65, (461,455,0): 72, 55, 65, (461,456,0): 70, 53, 61, (461,457,0): 68, 51, 59, (461,458,0): 65, 48, 56, (461,459,0): 61, 44, 52, (461,460,0): 57, 40, 46, (461,461,0): 54, 37, 43, (461,462,0): 51, 34, 40, (461,463,0): 49, 33, 36, (461,464,0): 49, 34, 37, (461,465,0): 50, 36, 36, (461,466,0): 52, 36, 37, (461,467,0): 53, 37, 38, (461,468,0): 54, 35, 37, (461,469,0): 54, 35, 37, (461,470,0): 54, 34, 36, (461,471,0): 54, 32, 35, (461,472,0): 52, 27, 31, (461,473,0): 51, 24, 29, (461,474,0): 51, 22, 27, (461,475,0): 52, 21, 27, (461,476,0): 54, 21, 28, (461,477,0): 56, 23, 30, (461,478,0): 58, 23, 30, (461,479,0): 57, 22, 28, (461,480,0): 60, 24, 26, (461,481,0): 63, 27, 27, (461,482,0): 64, 28, 28, (461,483,0): 64, 22, 24, (461,484,0): 66, 16, 19, (461,485,0): 77, 18, 24, (461,486,0): 94, 27, 34, (461,487,0): 108, 38, 46, (461,488,0): 101, 32, 37, (461,489,0): 103, 34, 39, (461,490,0): 108, 37, 43, (461,491,0): 113, 41, 45, (461,492,0): 118, 43, 48, (461,493,0): 118, 46, 49, (461,494,0): 118, 49, 52, (461,495,0): 116, 51, 55, (461,496,0): 108, 43, 51, (461,497,0): 118, 40, 53, (461,498,0): 142, 39, 58, (461,499,0): 168, 47, 66, (461,500,0): 190, 54, 76, (461,501,0): 192, 57, 74, (461,502,0): 178, 53, 69, (461,503,0): 163, 48, 61, (461,504,0): 151, 45, 55, (461,505,0): 147, 40, 50, (461,506,0): 164, 42, 57, (461,507,0): 184, 45, 64, (461,508,0): 205, 43, 67, (461,509,0): 227, 49, 75, (461,510,0): 242, 52, 80, (461,511,0): 237, 42, 72, (461,512,0): 234, 38, 74, (461,513,0): 243, 48, 92, (461,514,0): 252, 55, 109, (461,515,0): 253, 60, 115, (461,516,0): 252, 68, 118, (461,517,0): 254, 78, 125, (461,518,0): 253, 82, 135, (461,519,0): 246, 79, 148, (461,520,0): 244, 79, 173, (461,521,0): 233, 82, 187, (461,522,0): 243, 117, 217, (461,523,0): 255, 166, 248, (461,524,0): 255, 204, 253, (461,525,0): 255, 232, 255, (461,526,0): 255, 253, 255, (461,527,0): 254, 255, 255, (461,528,0): 249, 247, 255, (461,529,0): 254, 253, 255, (461,530,0): 252, 255, 255, (461,531,0): 252, 253, 255, (461,532,0): 240, 232, 245, (461,533,0): 234, 208, 235, (461,534,0): 245, 191, 243, (461,535,0): 255, 182, 255, (461,536,0): 237, 131, 223, (461,537,0): 247, 121, 221, (461,538,0): 254, 114, 213, (461,539,0): 253, 102, 195, (461,540,0): 247, 90, 169, (461,541,0): 250, 87, 154, (461,542,0): 251, 79, 137, (461,543,0): 239, 66, 109, (461,544,0): 248, 74, 97, (461,545,0): 253, 76, 94, (461,546,0): 251, 68, 98, (461,547,0): 250, 66, 104, (461,548,0): 251, 71, 116, (461,549,0): 237, 66, 111, (461,550,0): 217, 58, 98, (461,551,0): 212, 63, 95, (461,552,0): 207, 59, 81, (461,553,0): 196, 48, 64, (461,554,0): 212, 57, 71, (461,555,0): 231, 75, 88, (461,556,0): 223, 68, 82, (461,557,0): 203, 56, 72, (461,558,0): 192, 55, 71, (461,559,0): 184, 59, 77, (461,560,0): 166, 53, 71, (461,561,0): 156, 55, 73, (461,562,0): 146, 55, 72, (461,563,0): 134, 54, 67, (461,564,0): 125, 53, 65, (461,565,0): 119, 56, 65, (461,566,0): 121, 59, 70, (461,567,0): 124, 64, 74, (461,568,0): 121, 61, 73, (461,569,0): 117, 59, 71, (461,570,0): 113, 57, 70, (461,571,0): 107, 55, 67, (461,572,0): 100, 57, 67, (461,573,0): 97, 62, 69, (461,574,0): 94, 67, 72, (461,575,0): 96, 69, 74, (461,576,0): 100, 65, 72, (461,577,0): 100, 63, 71, (461,578,0): 99, 62, 70, (461,579,0): 94, 61, 68, (461,580,0): 92, 59, 66, (461,581,0): 88, 59, 64, (461,582,0): 87, 58, 63, (461,583,0): 84, 57, 62, (461,584,0): 84, 59, 63, (461,585,0): 81, 56, 60, (461,586,0): 79, 52, 57, (461,587,0): 78, 51, 56, (461,588,0): 80, 51, 56, (461,589,0): 79, 50, 55, (461,590,0): 77, 46, 52, (461,591,0): 72, 43, 48, (461,592,0): 67, 42, 46, (461,593,0): 63, 41, 44, (461,594,0): 59, 37, 40, (461,595,0): 55, 33, 36, (461,596,0): 51, 29, 32, (461,597,0): 49, 27, 30, (461,598,0): 47, 25, 28, (461,599,0): 47, 25, 28, (462,0,0): 67, 72, 68, (462,1,0): 66, 71, 67, (462,2,0): 64, 69, 65, (462,3,0): 62, 67, 63, (462,4,0): 61, 66, 62, (462,5,0): 61, 66, 62, (462,6,0): 61, 66, 62, (462,7,0): 62, 67, 63, (462,8,0): 61, 66, 62, (462,9,0): 61, 66, 62, (462,10,0): 61, 66, 62, (462,11,0): 62, 67, 63, (462,12,0): 62, 67, 63, (462,13,0): 63, 68, 64, (462,14,0): 63, 68, 64, (462,15,0): 63, 68, 64, (462,16,0): 60, 67, 60, (462,17,0): 60, 67, 60, (462,18,0): 61, 68, 61, (462,19,0): 62, 69, 62, (462,20,0): 63, 70, 63, (462,21,0): 64, 71, 64, (462,22,0): 65, 72, 65, (462,23,0): 66, 73, 66, (462,24,0): 66, 73, 66, (462,25,0): 66, 73, 66, (462,26,0): 67, 74, 67, (462,27,0): 68, 75, 68, (462,28,0): 69, 76, 69, (462,29,0): 70, 77, 70, (462,30,0): 71, 78, 71, (462,31,0): 73, 78, 72, (462,32,0): 72, 75, 68, (462,33,0): 74, 75, 69, (462,34,0): 76, 77, 71, (462,35,0): 77, 78, 72, (462,36,0): 80, 80, 72, (462,37,0): 80, 80, 72, (462,38,0): 80, 80, 72, (462,39,0): 80, 80, 72, (462,40,0): 83, 80, 71, (462,41,0): 83, 80, 71, (462,42,0): 83, 79, 68, (462,43,0): 83, 79, 68, (462,44,0): 82, 78, 67, (462,45,0): 82, 78, 67, (462,46,0): 83, 77, 65, (462,47,0): 84, 76, 65, (462,48,0): 84, 74, 62, (462,49,0): 86, 74, 62, (462,50,0): 86, 74, 62, (462,51,0): 85, 73, 61, (462,52,0): 85, 73, 61, (462,53,0): 84, 72, 60, (462,54,0): 84, 72, 60, (462,55,0): 84, 72, 60, (462,56,0): 83, 71, 59, (462,57,0): 82, 70, 58, (462,58,0): 82, 70, 58, (462,59,0): 82, 70, 58, (462,60,0): 81, 69, 57, (462,61,0): 81, 69, 57, (462,62,0): 80, 68, 56, (462,63,0): 81, 67, 56, (462,64,0): 80, 63, 53, (462,65,0): 81, 63, 53, (462,66,0): 80, 62, 52, (462,67,0): 79, 61, 51, (462,68,0): 78, 60, 50, (462,69,0): 78, 60, 50, (462,70,0): 77, 59, 49, (462,71,0): 77, 59, 49, (462,72,0): 77, 59, 49, (462,73,0): 77, 59, 49, (462,74,0): 76, 58, 48, (462,75,0): 75, 57, 47, (462,76,0): 74, 56, 46, (462,77,0): 73, 55, 45, (462,78,0): 72, 54, 44, (462,79,0): 73, 53, 42, (462,80,0): 77, 55, 44, (462,81,0): 78, 54, 42, (462,82,0): 77, 53, 41, (462,83,0): 76, 54, 41, (462,84,0): 75, 53, 40, (462,85,0): 73, 54, 40, (462,86,0): 71, 53, 39, (462,87,0): 71, 53, 39, (462,88,0): 72, 56, 41, (462,89,0): 72, 56, 41, (462,90,0): 71, 58, 42, (462,91,0): 71, 58, 42, (462,92,0): 71, 59, 43, (462,93,0): 71, 59, 43, (462,94,0): 70, 61, 44, (462,95,0): 72, 60, 44, (462,96,0): 73, 57, 42, (462,97,0): 74, 56, 42, (462,98,0): 74, 56, 42, (462,99,0): 73, 55, 41, (462,100,0): 72, 54, 40, (462,101,0): 69, 51, 37, (462,102,0): 67, 49, 35, (462,103,0): 66, 48, 34, (462,104,0): 61, 43, 29, (462,105,0): 61, 43, 29, (462,106,0): 60, 42, 28, (462,107,0): 60, 42, 28, (462,108,0): 59, 41, 27, (462,109,0): 59, 41, 27, (462,110,0): 58, 40, 26, (462,111,0): 58, 40, 26, (462,112,0): 60, 42, 32, (462,113,0): 60, 42, 32, (462,114,0): 60, 42, 32, (462,115,0): 60, 42, 32, (462,116,0): 60, 42, 32, (462,117,0): 60, 42, 32, (462,118,0): 60, 42, 32, (462,119,0): 60, 42, 32, (462,120,0): 62, 44, 34, (462,121,0): 62, 44, 34, (462,122,0): 62, 44, 34, (462,123,0): 61, 43, 33, (462,124,0): 61, 43, 33, (462,125,0): 60, 42, 32, (462,126,0): 60, 42, 32, (462,127,0): 60, 42, 32, (462,128,0): 60, 41, 35, (462,129,0): 60, 41, 35, (462,130,0): 60, 41, 35, (462,131,0): 60, 41, 35, (462,132,0): 60, 41, 35, (462,133,0): 60, 41, 35, (462,134,0): 59, 40, 34, (462,135,0): 59, 40, 34, (462,136,0): 59, 40, 34, (462,137,0): 60, 41, 35, (462,138,0): 61, 42, 36, (462,139,0): 63, 44, 38, (462,140,0): 64, 45, 39, (462,141,0): 66, 47, 41, (462,142,0): 67, 48, 42, (462,143,0): 68, 49, 43, (462,144,0): 71, 52, 46, (462,145,0): 71, 52, 46, (462,146,0): 71, 52, 46, (462,147,0): 72, 53, 47, (462,148,0): 72, 53, 47, (462,149,0): 73, 54, 48, (462,150,0): 73, 54, 48, (462,151,0): 74, 55, 49, (462,152,0): 74, 55, 49, (462,153,0): 75, 56, 50, (462,154,0): 76, 57, 51, (462,155,0): 78, 59, 53, (462,156,0): 80, 61, 55, (462,157,0): 81, 62, 56, (462,158,0): 83, 64, 58, (462,159,0): 83, 64, 58, (462,160,0): 81, 62, 58, (462,161,0): 81, 62, 58, (462,162,0): 81, 62, 58, (462,163,0): 81, 62, 58, (462,164,0): 81, 62, 58, (462,165,0): 81, 62, 58, (462,166,0): 81, 62, 58, (462,167,0): 81, 62, 58, (462,168,0): 82, 63, 59, (462,169,0): 82, 63, 59, (462,170,0): 83, 64, 60, (462,171,0): 83, 64, 60, (462,172,0): 84, 65, 61, (462,173,0): 84, 65, 61, (462,174,0): 85, 66, 62, (462,175,0): 84, 66, 62, (462,176,0): 85, 67, 65, (462,177,0): 83, 68, 65, (462,178,0): 84, 68, 68, (462,179,0): 84, 68, 68, (462,180,0): 85, 69, 69, (462,181,0): 86, 70, 70, (462,182,0): 87, 71, 72, (462,183,0): 87, 71, 72, (462,184,0): 92, 76, 79, (462,185,0): 92, 76, 79, (462,186,0): 93, 77, 80, (462,187,0): 93, 77, 80, (462,188,0): 94, 77, 83, (462,189,0): 95, 78, 84, (462,190,0): 96, 79, 85, (462,191,0): 95, 80, 85, (462,192,0): 92, 81, 87, (462,193,0): 91, 82, 87, (462,194,0): 92, 83, 86, (462,195,0): 91, 82, 85, (462,196,0): 91, 80, 84, (462,197,0): 91, 79, 83, (462,198,0): 91, 76, 79, (462,199,0): 89, 74, 77, (462,200,0): 90, 74, 75, (462,201,0): 90, 71, 73, (462,202,0): 89, 69, 71, (462,203,0): 86, 66, 68, (462,204,0): 85, 63, 65, (462,205,0): 83, 61, 63, (462,206,0): 83, 61, 63, (462,207,0): 83, 61, 63, (462,208,0): 82, 60, 62, (462,209,0): 82, 60, 62, (462,210,0): 82, 60, 62, (462,211,0): 83, 61, 63, (462,212,0): 83, 61, 64, (462,213,0): 83, 61, 64, (462,214,0): 84, 62, 65, (462,215,0): 84, 62, 65, (462,216,0): 86, 63, 69, (462,217,0): 86, 63, 69, (462,218,0): 87, 64, 72, (462,219,0): 89, 66, 74, (462,220,0): 91, 68, 76, (462,221,0): 92, 69, 77, (462,222,0): 93, 70, 80, (462,223,0): 96, 70, 81, (462,224,0): 100, 72, 84, (462,225,0): 103, 73, 85, (462,226,0): 106, 76, 88, (462,227,0): 110, 80, 92, (462,228,0): 115, 83, 94, (462,229,0): 118, 86, 97, (462,230,0): 121, 88, 99, (462,231,0): 122, 89, 100, (462,232,0): 125, 89, 99, (462,233,0): 130, 94, 104, (462,234,0): 137, 99, 110, (462,235,0): 146, 106, 117, (462,236,0): 158, 118, 127, (462,237,0): 182, 142, 151, (462,238,0): 214, 172, 182, (462,239,0): 240, 194, 204, (462,240,0): 255, 202, 215, (462,241,0): 255, 201, 212, (462,242,0): 255, 200, 213, (462,243,0): 252, 200, 213, (462,244,0): 249, 198, 213, (462,245,0): 245, 198, 214, (462,246,0): 242, 198, 215, (462,247,0): 239, 198, 216, (462,248,0): 233, 194, 212, (462,249,0): 232, 195, 212, (462,250,0): 232, 195, 212, (462,251,0): 231, 195, 209, (462,252,0): 229, 193, 207, (462,253,0): 226, 190, 202, (462,254,0): 225, 187, 200, (462,255,0): 222, 186, 198, (462,256,0): 212, 180, 195, (462,257,0): 209, 180, 198, (462,258,0): 208, 181, 200, (462,259,0): 207, 184, 202, (462,260,0): 207, 188, 208, (462,261,0): 210, 195, 216, (462,262,0): 211, 202, 223, (462,263,0): 210, 207, 228, (462,264,0): 215, 217, 240, (462,265,0): 214, 220, 244, (462,266,0): 212, 224, 250, (462,267,0): 211, 228, 254, (462,268,0): 208, 229, 255, (462,269,0): 204, 228, 255, (462,270,0): 200, 225, 255, (462,271,0): 195, 225, 253, (462,272,0): 197, 231, 255, (462,273,0): 194, 230, 254, (462,274,0): 191, 227, 253, (462,275,0): 191, 227, 251, (462,276,0): 192, 228, 254, (462,277,0): 192, 228, 254, (462,278,0): 189, 225, 251, (462,279,0): 186, 221, 249, (462,280,0): 186, 221, 253, (462,281,0): 185, 219, 254, (462,282,0): 184, 218, 255, (462,283,0): 181, 214, 255, (462,284,0): 179, 211, 255, (462,285,0): 177, 209, 255, (462,286,0): 175, 206, 255, (462,287,0): 175, 204, 255, (462,288,0): 170, 199, 255, (462,289,0): 169, 197, 255, (462,290,0): 166, 196, 255, (462,291,0): 163, 193, 255, (462,292,0): 162, 191, 249, (462,293,0): 165, 190, 246, (462,294,0): 168, 187, 243, (462,295,0): 171, 186, 243, (462,296,0): 178, 190, 250, (462,297,0): 181, 192, 254, (462,298,0): 183, 192, 255, (462,299,0): 186, 192, 254, (462,300,0): 190, 190, 244, (462,301,0): 183, 174, 219, (462,302,0): 160, 143, 177, (462,303,0): 134, 114, 139, (462,304,0): 87, 70, 86, (462,305,0): 63, 47, 58, (462,306,0): 48, 35, 45, (462,307,0): 46, 33, 43, (462,308,0): 40, 28, 38, (462,309,0): 39, 27, 37, (462,310,0): 39, 29, 38, (462,311,0): 33, 23, 32, (462,312,0): 33, 26, 34, (462,313,0): 32, 25, 33, (462,314,0): 29, 24, 31, (462,315,0): 26, 23, 30, (462,316,0): 26, 23, 30, (462,317,0): 25, 24, 30, (462,318,0): 26, 25, 31, (462,319,0): 27, 24, 31, (462,320,0): 28, 17, 31, (462,321,0): 29, 17, 31, (462,322,0): 31, 19, 33, (462,323,0): 31, 19, 33, (462,324,0): 31, 19, 33, (462,325,0): 31, 19, 33, (462,326,0): 29, 17, 31, (462,327,0): 29, 17, 31, (462,328,0): 30, 18, 32, (462,329,0): 29, 17, 31, (462,330,0): 27, 15, 29, (462,331,0): 26, 14, 28, (462,332,0): 25, 13, 27, (462,333,0): 26, 14, 28, (462,334,0): 26, 14, 28, (462,335,0): 26, 15, 29, (462,336,0): 22, 15, 31, (462,337,0): 20, 16, 31, (462,338,0): 19, 15, 30, (462,339,0): 19, 15, 30, (462,340,0): 18, 14, 29, (462,341,0): 17, 13, 28, (462,342,0): 17, 13, 28, (462,343,0): 16, 12, 27, (462,344,0): 18, 14, 29, (462,345,0): 20, 16, 31, (462,346,0): 21, 17, 32, (462,347,0): 19, 15, 30, (462,348,0): 17, 13, 28, (462,349,0): 15, 11, 26, (462,350,0): 16, 12, 27, (462,351,0): 20, 14, 28, (462,352,0): 25, 14, 30, (462,353,0): 26, 14, 28, (462,354,0): 26, 14, 28, (462,355,0): 26, 14, 28, (462,356,0): 25, 14, 28, (462,357,0): 25, 14, 28, (462,358,0): 25, 14, 28, (462,359,0): 25, 14, 28, (462,360,0): 21, 13, 26, (462,361,0): 22, 14, 27, (462,362,0): 21, 15, 27, (462,363,0): 21, 15, 27, (462,364,0): 21, 15, 27, (462,365,0): 20, 14, 26, (462,366,0): 16, 13, 24, (462,367,0): 16, 13, 24, (462,368,0): 15, 11, 26, (462,369,0): 16, 12, 27, (462,370,0): 18, 12, 26, (462,371,0): 19, 13, 27, (462,372,0): 21, 15, 29, (462,373,0): 22, 16, 30, (462,374,0): 23, 15, 28, (462,375,0): 24, 16, 29, (462,376,0): 27, 17, 28, (462,377,0): 28, 18, 29, (462,378,0): 28, 18, 29, (462,379,0): 28, 18, 29, (462,380,0): 30, 18, 28, (462,381,0): 30, 18, 28, (462,382,0): 31, 19, 29, (462,383,0): 31, 19, 29, (462,384,0): 33, 17, 28, (462,385,0): 33, 17, 28, (462,386,0): 32, 16, 27, (462,387,0): 32, 16, 27, (462,388,0): 33, 17, 28, (462,389,0): 34, 18, 29, (462,390,0): 35, 19, 30, (462,391,0): 36, 20, 31, (462,392,0): 39, 23, 34, (462,393,0): 39, 23, 34, (462,394,0): 39, 23, 34, (462,395,0): 40, 24, 35, (462,396,0): 40, 24, 35, (462,397,0): 41, 25, 36, (462,398,0): 41, 25, 36, (462,399,0): 43, 26, 36, (462,400,0): 53, 30, 36, (462,401,0): 55, 30, 34, (462,402,0): 55, 30, 34, (462,403,0): 55, 30, 34, (462,404,0): 55, 30, 34, (462,405,0): 55, 30, 34, (462,406,0): 55, 30, 34, (462,407,0): 55, 30, 34, (462,408,0): 55, 30, 34, (462,409,0): 57, 32, 36, (462,410,0): 58, 33, 37, (462,411,0): 58, 33, 37, (462,412,0): 56, 31, 35, (462,413,0): 57, 32, 36, (462,414,0): 61, 36, 40, (462,415,0): 64, 39, 43, (462,416,0): 62, 36, 45, (462,417,0): 63, 37, 46, (462,418,0): 66, 40, 49, (462,419,0): 69, 43, 52, (462,420,0): 72, 46, 55, (462,421,0): 76, 50, 59, (462,422,0): 78, 52, 61, (462,423,0): 79, 53, 62, (462,424,0): 84, 58, 67, (462,425,0): 83, 57, 66, (462,426,0): 82, 56, 65, (462,427,0): 80, 54, 63, (462,428,0): 79, 53, 62, (462,429,0): 77, 51, 60, (462,430,0): 76, 50, 59, (462,431,0): 75, 49, 58, (462,432,0): 76, 53, 61, (462,433,0): 76, 53, 61, (462,434,0): 76, 53, 61, (462,435,0): 76, 53, 61, (462,436,0): 76, 53, 61, (462,437,0): 76, 53, 61, (462,438,0): 76, 53, 61, (462,439,0): 76, 53, 61, (462,440,0): 75, 52, 60, (462,441,0): 74, 51, 59, (462,442,0): 72, 49, 57, (462,443,0): 70, 47, 55, (462,444,0): 69, 46, 54, (462,445,0): 69, 46, 54, (462,446,0): 69, 46, 54, (462,447,0): 69, 48, 57, (462,448,0): 69, 49, 61, (462,449,0): 68, 50, 64, (462,450,0): 70, 52, 64, (462,451,0): 72, 54, 66, (462,452,0): 73, 55, 67, (462,453,0): 73, 55, 67, (462,454,0): 73, 56, 66, (462,455,0): 72, 55, 65, (462,456,0): 68, 51, 59, (462,457,0): 67, 50, 58, (462,458,0): 65, 48, 56, (462,459,0): 62, 45, 53, (462,460,0): 58, 41, 47, (462,461,0): 54, 37, 43, (462,462,0): 51, 34, 40, (462,463,0): 50, 34, 37, (462,464,0): 48, 33, 36, (462,465,0): 47, 35, 35, (462,466,0): 50, 36, 36, (462,467,0): 51, 37, 37, (462,468,0): 52, 36, 37, (462,469,0): 54, 35, 37, (462,470,0): 54, 34, 36, (462,471,0): 54, 32, 35, (462,472,0): 53, 28, 32, (462,473,0): 50, 23, 28, (462,474,0): 50, 21, 26, (462,475,0): 51, 20, 26, (462,476,0): 54, 21, 28, (462,477,0): 56, 23, 30, (462,478,0): 55, 22, 29, (462,479,0): 56, 21, 27, (462,480,0): 56, 21, 25, (462,481,0): 60, 24, 26, (462,482,0): 61, 25, 25, (462,483,0): 62, 17, 20, (462,484,0): 67, 10, 16, (462,485,0): 80, 13, 22, (462,486,0): 102, 25, 35, (462,487,0): 119, 37, 49, (462,488,0): 101, 18, 28, (462,489,0): 106, 20, 31, (462,490,0): 115, 25, 35, (462,491,0): 122, 31, 40, (462,492,0): 129, 33, 44, (462,493,0): 129, 36, 44, (462,494,0): 125, 38, 46, (462,495,0): 124, 39, 46, (462,496,0): 128, 42, 53, (462,497,0): 141, 40, 54, (462,498,0): 166, 39, 60, (462,499,0): 189, 43, 64, (462,500,0): 207, 47, 71, (462,501,0): 211, 49, 70, (462,502,0): 197, 48, 67, (462,503,0): 185, 47, 62, (462,504,0): 179, 51, 66, (462,505,0): 176, 45, 63, (462,506,0): 191, 47, 70, (462,507,0): 209, 49, 77, (462,508,0): 223, 42, 77, (462,509,0): 242, 43, 82, (462,510,0): 255, 46, 87, (462,511,0): 252, 41, 86, (462,512,0): 241, 37, 90, (462,513,0): 247, 48, 107, (462,514,0): 254, 53, 123, (462,515,0): 252, 57, 127, (462,516,0): 250, 64, 127, (462,517,0): 254, 79, 138, (462,518,0): 255, 90, 152, (462,519,0): 254, 92, 168, (462,520,0): 243, 84, 186, (462,521,0): 239, 95, 206, (462,522,0): 255, 141, 246, (462,523,0): 255, 193, 255, (462,524,0): 255, 219, 255, (462,525,0): 255, 233, 255, (462,526,0): 253, 251, 255, (462,527,0): 252, 255, 255, (462,528,0): 254, 254, 255, (462,529,0): 254, 254, 255, (462,530,0): 251, 255, 255, (462,531,0): 252, 255, 253, (462,532,0): 254, 249, 253, (462,533,0): 249, 226, 246, (462,534,0): 242, 190, 239, (462,535,0): 241, 160, 237, (462,536,0): 243, 135, 236, (462,537,0): 252, 121, 237, (462,538,0): 255, 114, 232, (462,539,0): 255, 103, 217, (462,540,0): 250, 89, 193, (462,541,0): 253, 88, 182, (462,542,0): 253, 83, 171, (462,543,0): 241, 67, 136, (462,544,0): 243, 68, 109, (462,545,0): 253, 74, 104, (462,546,0): 253, 68, 109, (462,547,0): 251, 65, 112, (462,548,0): 252, 70, 121, (462,549,0): 241, 65, 114, (462,550,0): 227, 58, 101, (462,551,0): 222, 61, 95, (462,552,0): 223, 63, 87, (462,553,0): 215, 57, 72, (462,554,0): 227, 65, 76, (462,555,0): 239, 75, 84, (462,556,0): 230, 69, 77, (462,557,0): 223, 63, 73, (462,558,0): 221, 65, 78, (462,559,0): 213, 65, 81, (462,560,0): 194, 54, 80, (462,561,0): 185, 57, 82, (462,562,0): 174, 56, 80, (462,563,0): 160, 54, 74, (462,564,0): 146, 53, 71, (462,565,0): 138, 54, 69, (462,566,0): 139, 58, 73, (462,567,0): 140, 62, 78, (462,568,0): 135, 54, 73, (462,569,0): 135, 56, 75, (462,570,0): 133, 58, 78, (462,571,0): 125, 56, 74, (462,572,0): 110, 53, 68, (462,573,0): 98, 52, 63, (462,574,0): 89, 56, 63, (462,575,0): 90, 59, 65, (462,576,0): 100, 63, 71, (462,577,0): 100, 63, 71, (462,578,0): 99, 62, 70, (462,579,0): 95, 62, 69, (462,580,0): 94, 61, 68, (462,581,0): 90, 61, 66, (462,582,0): 88, 59, 64, (462,583,0): 86, 59, 64, (462,584,0): 86, 61, 65, (462,585,0): 82, 57, 61, (462,586,0): 80, 53, 58, (462,587,0): 79, 52, 57, (462,588,0): 81, 52, 57, (462,589,0): 80, 51, 56, (462,590,0): 78, 47, 53, (462,591,0): 74, 45, 50, (462,592,0): 65, 40, 44, (462,593,0): 61, 39, 42, (462,594,0): 58, 36, 39, (462,595,0): 55, 33, 36, (462,596,0): 52, 30, 33, (462,597,0): 50, 28, 31, (462,598,0): 49, 27, 30, (462,599,0): 48, 26, 29, (463,0,0): 66, 72, 68, (463,1,0): 65, 71, 67, (463,2,0): 63, 69, 65, (463,3,0): 62, 68, 64, (463,4,0): 61, 67, 63, (463,5,0): 60, 66, 62, (463,6,0): 61, 67, 63, (463,7,0): 61, 67, 63, (463,8,0): 60, 66, 62, (463,9,0): 60, 66, 62, (463,10,0): 61, 66, 62, (463,11,0): 62, 67, 63, (463,12,0): 62, 67, 63, (463,13,0): 63, 68, 64, (463,14,0): 63, 68, 64, (463,15,0): 62, 68, 64, (463,16,0): 59, 66, 59, (463,17,0): 60, 67, 60, (463,18,0): 61, 68, 61, (463,19,0): 63, 70, 63, (463,20,0): 64, 71, 64, (463,21,0): 64, 71, 64, (463,22,0): 65, 72, 65, (463,23,0): 64, 71, 64, (463,24,0): 66, 73, 66, (463,25,0): 66, 73, 66, (463,26,0): 68, 73, 67, (463,27,0): 69, 74, 68, (463,28,0): 70, 75, 69, (463,29,0): 71, 76, 70, (463,30,0): 72, 77, 71, (463,31,0): 72, 77, 71, (463,32,0): 71, 72, 66, (463,33,0): 73, 74, 68, (463,34,0): 76, 77, 71, (463,35,0): 79, 78, 73, (463,36,0): 81, 81, 73, (463,37,0): 81, 81, 73, (463,38,0): 80, 80, 72, (463,39,0): 81, 78, 71, (463,40,0): 83, 80, 71, (463,41,0): 84, 80, 71, (463,42,0): 83, 79, 68, (463,43,0): 83, 79, 68, (463,44,0): 82, 78, 67, (463,45,0): 84, 77, 67, (463,46,0): 83, 77, 65, (463,47,0): 84, 76, 65, (463,48,0): 84, 74, 64, (463,49,0): 83, 73, 61, (463,50,0): 85, 72, 63, (463,51,0): 82, 72, 60, (463,52,0): 84, 71, 62, (463,53,0): 83, 71, 59, (463,54,0): 83, 70, 61, (463,55,0): 83, 71, 59, (463,56,0): 83, 70, 61, (463,57,0): 82, 70, 58, (463,58,0): 82, 69, 60, (463,59,0): 81, 69, 57, (463,60,0): 81, 68, 59, (463,61,0): 80, 68, 56, (463,62,0): 80, 67, 58, (463,63,0): 81, 67, 56, (463,64,0): 78, 61, 51, (463,65,0): 79, 61, 49, (463,66,0): 78, 60, 50, (463,67,0): 77, 59, 47, (463,68,0): 75, 57, 47, (463,69,0): 74, 56, 44, (463,70,0): 73, 55, 45, (463,71,0): 73, 55, 43, (463,72,0): 74, 56, 46, (463,73,0): 74, 56, 44, (463,74,0): 73, 55, 45, (463,75,0): 72, 54, 42, (463,76,0): 71, 53, 43, (463,77,0): 70, 52, 40, (463,78,0): 69, 51, 41, (463,79,0): 70, 50, 39, (463,80,0): 74, 52, 39, (463,81,0): 74, 52, 39, (463,82,0): 75, 51, 39, (463,83,0): 73, 51, 38, (463,84,0): 73, 51, 38, (463,85,0): 70, 51, 37, (463,86,0): 70, 51, 37, (463,87,0): 69, 51, 37, (463,88,0): 73, 55, 41, (463,89,0): 72, 56, 41, (463,90,0): 73, 57, 42, (463,91,0): 73, 57, 42, (463,92,0): 72, 59, 43, (463,93,0): 72, 59, 43, (463,94,0): 72, 60, 44, (463,95,0): 73, 60, 44, (463,96,0): 74, 56, 42, (463,97,0): 74, 56, 42, (463,98,0): 74, 56, 42, (463,99,0): 74, 56, 42, (463,100,0): 72, 54, 40, (463,101,0): 70, 52, 38, (463,102,0): 67, 49, 35, (463,103,0): 66, 48, 34, (463,104,0): 61, 43, 29, (463,105,0): 61, 43, 29, (463,106,0): 60, 42, 28, (463,107,0): 60, 42, 28, (463,108,0): 59, 41, 27, (463,109,0): 59, 41, 27, (463,110,0): 58, 40, 26, (463,111,0): 58, 40, 26, (463,112,0): 60, 42, 32, (463,113,0): 60, 42, 32, (463,114,0): 60, 42, 32, (463,115,0): 60, 42, 32, (463,116,0): 60, 42, 32, (463,117,0): 60, 42, 32, (463,118,0): 60, 42, 32, (463,119,0): 60, 42, 32, (463,120,0): 62, 44, 34, (463,121,0): 62, 44, 34, (463,122,0): 62, 44, 34, (463,123,0): 61, 43, 33, (463,124,0): 61, 43, 33, (463,125,0): 60, 42, 32, (463,126,0): 60, 42, 32, (463,127,0): 60, 42, 32, (463,128,0): 60, 41, 35, (463,129,0): 60, 41, 35, (463,130,0): 60, 41, 35, (463,131,0): 60, 41, 35, (463,132,0): 59, 40, 34, (463,133,0): 59, 40, 34, (463,134,0): 59, 40, 34, (463,135,0): 59, 40, 34, (463,136,0): 59, 40, 34, (463,137,0): 59, 40, 34, (463,138,0): 60, 41, 35, (463,139,0): 62, 43, 37, (463,140,0): 64, 45, 39, (463,141,0): 65, 46, 40, (463,142,0): 66, 47, 41, (463,143,0): 67, 48, 42, (463,144,0): 70, 51, 45, (463,145,0): 70, 53, 46, (463,146,0): 71, 52, 46, (463,147,0): 70, 53, 46, (463,148,0): 72, 53, 47, (463,149,0): 72, 55, 48, (463,150,0): 73, 54, 48, (463,151,0): 72, 55, 48, (463,152,0): 73, 54, 48, (463,153,0): 73, 56, 49, (463,154,0): 75, 56, 50, (463,155,0): 76, 59, 52, (463,156,0): 79, 60, 54, (463,157,0): 80, 63, 56, (463,158,0): 82, 63, 57, (463,159,0): 82, 65, 58, (463,160,0): 80, 62, 58, (463,161,0): 80, 62, 58, (463,162,0): 80, 62, 58, (463,163,0): 80, 62, 58, (463,164,0): 80, 62, 58, (463,165,0): 80, 62, 58, (463,166,0): 80, 62, 58, (463,167,0): 80, 62, 58, (463,168,0): 81, 63, 59, (463,169,0): 81, 63, 59, (463,170,0): 82, 64, 60, (463,171,0): 82, 64, 60, (463,172,0): 83, 65, 61, (463,173,0): 83, 65, 61, (463,174,0): 84, 66, 62, (463,175,0): 84, 66, 62, (463,176,0): 81, 66, 63, (463,177,0): 80, 66, 63, (463,178,0): 81, 67, 66, (463,179,0): 81, 67, 66, (463,180,0): 81, 67, 66, (463,181,0): 81, 67, 66, (463,182,0): 82, 68, 68, (463,183,0): 82, 68, 68, (463,184,0): 88, 74, 74, (463,185,0): 88, 74, 74, (463,186,0): 89, 74, 77, (463,187,0): 90, 75, 78, (463,188,0): 90, 75, 78, (463,189,0): 91, 76, 79, (463,190,0): 92, 77, 80, (463,191,0): 92, 77, 80, (463,192,0): 89, 78, 82, (463,193,0): 89, 78, 82, (463,194,0): 89, 78, 82, (463,195,0): 89, 79, 80, (463,196,0): 88, 77, 81, (463,197,0): 87, 75, 77, (463,198,0): 87, 72, 75, (463,199,0): 86, 71, 74, (463,200,0): 89, 73, 74, (463,201,0): 88, 72, 73, (463,202,0): 87, 68, 70, (463,203,0): 84, 65, 67, (463,204,0): 83, 63, 64, (463,205,0): 82, 62, 63, (463,206,0): 81, 61, 62, (463,207,0): 81, 61, 62, (463,208,0): 78, 58, 59, (463,209,0): 79, 59, 60, (463,210,0): 79, 59, 60, (463,211,0): 79, 59, 60, (463,212,0): 79, 59, 61, (463,213,0): 79, 59, 61, (463,214,0): 80, 60, 62, (463,215,0): 80, 60, 62, (463,216,0): 81, 60, 65, (463,217,0): 82, 61, 66, (463,218,0): 83, 62, 67, (463,219,0): 85, 64, 69, (463,220,0): 86, 65, 72, (463,221,0): 88, 67, 74, (463,222,0): 89, 68, 75, (463,223,0): 91, 68, 76, (463,224,0): 91, 65, 74, (463,225,0): 94, 67, 76, (463,226,0): 96, 69, 78, (463,227,0): 99, 72, 81, (463,228,0): 103, 73, 83, (463,229,0): 105, 75, 83, (463,230,0): 108, 76, 87, (463,231,0): 108, 77, 85, (463,232,0): 117, 84, 93, (463,233,0): 123, 87, 97, (463,234,0): 128, 90, 101, (463,235,0): 131, 93, 104, (463,236,0): 140, 103, 111, (463,237,0): 162, 122, 131, (463,238,0): 192, 152, 161, (463,239,0): 218, 172, 182, (463,240,0): 227, 170, 177, (463,241,0): 230, 167, 175, (463,242,0): 227, 166, 174, (463,243,0): 224, 164, 172, (463,244,0): 219, 162, 171, (463,245,0): 214, 161, 171, (463,246,0): 210, 160, 171, (463,247,0): 206, 160, 170, (463,248,0): 204, 161, 170, (463,249,0): 204, 163, 171, (463,250,0): 204, 163, 171, (463,251,0): 204, 163, 171, (463,252,0): 203, 162, 168, (463,253,0): 203, 161, 165, (463,254,0): 203, 158, 163, (463,255,0): 200, 158, 162, (463,256,0): 202, 161, 167, (463,257,0): 199, 162, 169, (463,258,0): 198, 163, 170, (463,259,0): 198, 165, 174, (463,260,0): 201, 169, 180, (463,261,0): 204, 176, 188, (463,262,0): 206, 184, 197, (463,263,0): 207, 189, 203, (463,264,0): 213, 200, 217, (463,265,0): 216, 209, 227, (463,266,0): 222, 219, 240, (463,267,0): 227, 229, 250, (463,268,0): 228, 234, 255, (463,269,0): 227, 234, 255, (463,270,0): 221, 231, 255, (463,271,0): 215, 229, 255, (463,272,0): 214, 234, 255, (463,273,0): 208, 232, 255, (463,274,0): 205, 229, 255, (463,275,0): 204, 230, 255, (463,276,0): 205, 231, 255, (463,277,0): 203, 230, 255, (463,278,0): 201, 228, 255, (463,279,0): 196, 226, 254, (463,280,0): 194, 220, 253, (463,281,0): 194, 220, 255, (463,282,0): 192, 217, 255, (463,283,0): 192, 215, 255, (463,284,0): 190, 212, 255, (463,285,0): 189, 209, 255, (463,286,0): 187, 207, 255, (463,287,0): 189, 206, 255, (463,288,0): 188, 203, 255, (463,289,0): 186, 201, 255, (463,290,0): 181, 197, 255, (463,291,0): 177, 194, 250, (463,292,0): 175, 191, 243, (463,293,0): 176, 188, 240, (463,294,0): 177, 185, 234, (463,295,0): 180, 183, 234, (463,296,0): 170, 172, 223, (463,297,0): 175, 175, 229, (463,298,0): 179, 179, 233, (463,299,0): 188, 184, 235, (463,300,0): 196, 187, 232, (463,301,0): 195, 179, 218, (463,302,0): 175, 152, 181, (463,303,0): 150, 125, 147, (463,304,0): 96, 73, 89, (463,305,0): 71, 49, 62, (463,306,0): 57, 37, 49, (463,307,0): 52, 36, 47, (463,308,0): 44, 31, 41, (463,309,0): 42, 30, 40, (463,310,0): 43, 31, 41, (463,311,0): 36, 26, 35, (463,312,0): 36, 26, 35, (463,313,0): 33, 26, 34, (463,314,0): 31, 24, 32, (463,315,0): 29, 24, 30, (463,316,0): 27, 24, 31, (463,317,0): 26, 25, 30, (463,318,0): 27, 26, 32, (463,319,0): 28, 25, 32, (463,320,0): 28, 18, 29, (463,321,0): 29, 17, 29, (463,322,0): 31, 19, 33, (463,323,0): 31, 19, 33, (463,324,0): 31, 19, 33, (463,325,0): 31, 19, 33, (463,326,0): 29, 17, 31, (463,327,0): 29, 17, 31, (463,328,0): 30, 18, 32, (463,329,0): 28, 17, 31, (463,330,0): 26, 15, 29, (463,331,0): 25, 14, 28, (463,332,0): 24, 13, 27, (463,333,0): 25, 14, 28, (463,334,0): 25, 14, 28, (463,335,0): 24, 16, 31, (463,336,0): 22, 15, 31, (463,337,0): 20, 16, 31, (463,338,0): 19, 15, 30, (463,339,0): 19, 15, 30, (463,340,0): 18, 14, 29, (463,341,0): 17, 13, 28, (463,342,0): 16, 12, 27, (463,343,0): 16, 12, 27, (463,344,0): 18, 14, 29, (463,345,0): 20, 16, 31, (463,346,0): 21, 17, 32, (463,347,0): 19, 15, 30, (463,348,0): 17, 13, 28, (463,349,0): 15, 11, 26, (463,350,0): 16, 12, 27, (463,351,0): 20, 13, 29, (463,352,0): 25, 14, 30, (463,353,0): 26, 14, 28, (463,354,0): 26, 13, 30, (463,355,0): 25, 14, 28, (463,356,0): 25, 14, 30, (463,357,0): 25, 14, 28, (463,358,0): 25, 14, 30, (463,359,0): 23, 15, 28, (463,360,0): 20, 12, 27, (463,361,0): 20, 14, 26, (463,362,0): 22, 16, 30, (463,363,0): 22, 16, 28, (463,364,0): 22, 16, 30, (463,365,0): 18, 15, 26, (463,366,0): 16, 12, 26, (463,367,0): 14, 10, 24, (463,368,0): 15, 11, 25, (463,369,0): 16, 12, 26, (463,370,0): 18, 12, 26, (463,371,0): 19, 13, 27, (463,372,0): 21, 15, 29, (463,373,0): 22, 16, 28, (463,374,0): 23, 15, 28, (463,375,0): 24, 16, 27, (463,376,0): 27, 17, 28, (463,377,0): 28, 18, 29, (463,378,0): 28, 18, 29, (463,379,0): 29, 19, 28, (463,380,0): 30, 18, 28, (463,381,0): 31, 19, 29, (463,382,0): 31, 19, 29, (463,383,0): 31, 19, 29, (463,384,0): 32, 18, 31, (463,385,0): 34, 18, 31, (463,386,0): 33, 17, 30, (463,387,0): 33, 17, 30, (463,388,0): 33, 17, 30, (463,389,0): 35, 19, 30, (463,390,0): 36, 20, 31, (463,391,0): 37, 21, 32, (463,392,0): 39, 23, 34, (463,393,0): 39, 23, 33, (463,394,0): 41, 24, 34, (463,395,0): 41, 24, 34, (463,396,0): 42, 25, 35, (463,397,0): 42, 25, 33, (463,398,0): 43, 26, 34, (463,399,0): 45, 26, 32, (463,400,0): 53, 30, 36, (463,401,0): 55, 30, 34, (463,402,0): 55, 30, 34, (463,403,0): 55, 30, 34, (463,404,0): 55, 30, 34, (463,405,0): 55, 30, 34, (463,406,0): 55, 30, 34, (463,407,0): 55, 30, 34, (463,408,0): 56, 31, 35, (463,409,0): 58, 33, 37, (463,410,0): 59, 34, 38, (463,411,0): 59, 34, 38, (463,412,0): 57, 32, 36, (463,413,0): 58, 33, 37, (463,414,0): 62, 37, 41, (463,415,0): 65, 40, 44, (463,416,0): 59, 36, 42, (463,417,0): 60, 37, 43, (463,418,0): 63, 40, 46, (463,419,0): 66, 43, 49, (463,420,0): 72, 46, 55, (463,421,0): 75, 49, 58, (463,422,0): 78, 52, 61, (463,423,0): 79, 53, 62, (463,424,0): 87, 61, 72, (463,425,0): 86, 60, 71, (463,426,0): 85, 59, 70, (463,427,0): 83, 57, 68, (463,428,0): 81, 55, 66, (463,429,0): 79, 53, 66, (463,430,0): 78, 52, 65, (463,431,0): 77, 51, 64, (463,432,0): 76, 53, 63, (463,433,0): 75, 54, 63, (463,434,0): 76, 53, 63, (463,435,0): 76, 53, 63, (463,436,0): 76, 53, 63, (463,437,0): 76, 53, 63, (463,438,0): 76, 53, 63, (463,439,0): 76, 53, 61, (463,440,0): 75, 52, 62, (463,441,0): 74, 51, 59, (463,442,0): 72, 49, 57, (463,443,0): 70, 47, 55, (463,444,0): 69, 46, 54, (463,445,0): 69, 46, 54, (463,446,0): 71, 45, 54, (463,447,0): 70, 47, 57, (463,448,0): 70, 48, 60, (463,449,0): 72, 50, 63, (463,450,0): 73, 51, 64, (463,451,0): 74, 54, 66, (463,452,0): 75, 55, 67, (463,453,0): 76, 56, 68, (463,454,0): 75, 55, 67, (463,455,0): 73, 56, 66, (463,456,0): 67, 50, 60, (463,457,0): 66, 49, 59, (463,458,0): 65, 48, 58, (463,459,0): 62, 45, 53, (463,460,0): 61, 41, 50, (463,461,0): 57, 38, 44, (463,462,0): 54, 35, 41, (463,463,0): 50, 34, 37, (463,464,0): 48, 33, 36, (463,465,0): 48, 34, 34, (463,466,0): 51, 35, 36, (463,467,0): 52, 36, 37, (463,468,0): 52, 36, 37, (463,469,0): 54, 35, 37, (463,470,0): 54, 34, 36, (463,471,0): 54, 32, 35, (463,472,0): 53, 28, 32, (463,473,0): 49, 24, 28, (463,474,0): 47, 20, 25, (463,475,0): 49, 20, 25, (463,476,0): 53, 22, 28, (463,477,0): 55, 24, 30, (463,478,0): 54, 23, 29, (463,479,0): 52, 21, 26, (463,480,0): 52, 20, 23, (463,481,0): 56, 22, 23, (463,482,0): 58, 22, 24, (463,483,0): 59, 14, 17, (463,484,0): 64, 7, 14, (463,485,0): 80, 10, 20, (463,486,0): 105, 23, 37, (463,487,0): 123, 35, 49, (463,488,0): 124, 33, 48, (463,489,0): 130, 38, 51, (463,490,0): 139, 46, 57, (463,491,0): 149, 53, 64, (463,492,0): 158, 58, 70, (463,493,0): 157, 60, 69, (463,494,0): 153, 58, 66, (463,495,0): 149, 56, 66, (463,496,0): 154, 58, 70, (463,497,0): 165, 59, 73, (463,498,0): 187, 58, 76, (463,499,0): 208, 60, 82, (463,500,0): 225, 63, 86, (463,501,0): 229, 63, 85, (463,502,0): 221, 64, 83, (463,503,0): 212, 64, 80, (463,504,0): 208, 67, 84, (463,505,0): 203, 61, 83, (463,506,0): 215, 62, 90, (463,507,0): 228, 60, 95, (463,508,0): 235, 48, 91, (463,509,0): 247, 45, 93, (463,510,0): 255, 49, 100, (463,511,0): 255, 45, 100, (463,512,0): 241, 41, 106, (463,513,0): 246, 50, 122, (463,514,0): 252, 54, 131, (463,515,0): 251, 55, 131, (463,516,0): 251, 61, 131, (463,517,0): 255, 77, 146, (463,518,0): 255, 92, 167, (463,519,0): 255, 99, 190, (463,520,0): 255, 93, 205, (463,521,0): 249, 101, 221, (463,522,0): 255, 139, 255, (463,523,0): 255, 179, 255, (463,524,0): 252, 194, 255, (463,525,0): 236, 207, 238, (463,526,0): 245, 235, 246, (463,527,0): 254, 255, 255, (463,528,0): 255, 254, 255, (463,529,0): 252, 254, 253, (463,530,0): 244, 251, 243, (463,531,0): 252, 255, 250, (463,532,0): 255, 253, 253, (463,533,0): 255, 245, 255, (463,534,0): 255, 202, 252, (463,535,0): 244, 161, 241, (463,536,0): 251, 139, 247, (463,537,0): 255, 124, 246, (463,538,0): 255, 117, 244, (463,539,0): 255, 108, 234, (463,540,0): 254, 95, 214, (463,541,0): 255, 95, 208, (463,542,0): 255, 91, 200, (463,543,0): 248, 75, 165, (463,544,0): 254, 79, 138, (463,545,0): 255, 86, 132, (463,546,0): 255, 79, 127, (463,547,0): 251, 73, 123, (463,548,0): 255, 77, 129, (463,549,0): 247, 75, 125, (463,550,0): 237, 72, 114, (463,551,0): 238, 80, 113, (463,552,0): 232, 78, 102, (463,553,0): 226, 73, 91, (463,554,0): 234, 80, 92, (463,555,0): 238, 84, 92, (463,556,0): 229, 78, 83, (463,557,0): 227, 78, 82, (463,558,0): 236, 82, 90, (463,559,0): 232, 82, 94, (463,560,0): 224, 82, 106, (463,561,0): 216, 83, 110, (463,562,0): 201, 81, 106, (463,563,0): 184, 77, 97, (463,564,0): 166, 72, 90, (463,565,0): 157, 69, 85, (463,566,0): 158, 71, 87, (463,567,0): 158, 74, 90, (463,568,0): 158, 71, 90, (463,569,0): 161, 76, 95, (463,570,0): 160, 81, 100, (463,571,0): 149, 76, 93, (463,572,0): 127, 67, 79, (463,573,0): 109, 58, 67, (463,574,0): 97, 56, 64, (463,575,0): 94, 57, 64, (463,576,0): 99, 62, 70, (463,577,0): 99, 62, 70, (463,578,0): 98, 63, 70, (463,579,0): 96, 63, 70, (463,580,0): 94, 61, 68, (463,581,0): 92, 61, 67, (463,582,0): 90, 61, 66, (463,583,0): 87, 60, 65, (463,584,0): 88, 61, 66, (463,585,0): 84, 57, 62, (463,586,0): 81, 54, 59, (463,587,0): 79, 52, 57, (463,588,0): 81, 52, 57, (463,589,0): 80, 51, 56, (463,590,0): 78, 49, 54, (463,591,0): 75, 46, 51, (463,592,0): 65, 38, 43, (463,593,0): 62, 37, 41, (463,594,0): 60, 35, 39, (463,595,0): 56, 31, 35, (463,596,0): 52, 30, 33, (463,597,0): 50, 28, 31, (463,598,0): 50, 28, 31, (463,599,0): 50, 28, 31, (464,0,0): 63, 76, 67, (464,1,0): 63, 76, 67, (464,2,0): 64, 75, 67, (464,3,0): 63, 74, 66, (464,4,0): 62, 73, 65, (464,5,0): 59, 70, 62, (464,6,0): 58, 68, 60, (464,7,0): 57, 67, 59, (464,8,0): 59, 69, 61, (464,9,0): 59, 69, 61, (464,10,0): 61, 68, 61, (464,11,0): 61, 68, 61, (464,12,0): 61, 68, 61, (464,13,0): 61, 68, 61, (464,14,0): 61, 68, 61, (464,15,0): 61, 68, 61, (464,16,0): 63, 70, 63, (464,17,0): 61, 71, 63, (464,18,0): 62, 69, 62, (464,19,0): 62, 69, 62, (464,20,0): 63, 70, 63, (464,21,0): 65, 72, 65, (464,22,0): 67, 72, 66, (464,23,0): 68, 73, 67, (464,24,0): 68, 73, 67, (464,25,0): 68, 73, 67, (464,26,0): 70, 72, 67, (464,27,0): 71, 73, 68, (464,28,0): 72, 74, 69, (464,29,0): 72, 74, 69, (464,30,0): 72, 74, 69, (464,31,0): 74, 75, 70, (464,32,0): 75, 76, 70, (464,33,0): 76, 75, 70, (464,34,0): 76, 75, 70, (464,35,0): 78, 75, 70, (464,36,0): 78, 75, 68, (464,37,0): 78, 75, 68, (464,38,0): 78, 75, 68, (464,39,0): 79, 74, 68, (464,40,0): 81, 77, 68, (464,41,0): 83, 76, 68, (464,42,0): 83, 76, 66, (464,43,0): 82, 75, 65, (464,44,0): 81, 74, 64, (464,45,0): 81, 72, 63, (464,46,0): 80, 72, 61, (464,47,0): 80, 72, 61, (464,48,0): 80, 72, 61, (464,49,0): 80, 72, 61, (464,50,0): 81, 71, 62, (464,51,0): 80, 72, 61, (464,52,0): 81, 71, 62, (464,53,0): 81, 71, 61, (464,54,0): 81, 71, 62, (464,55,0): 81, 71, 61, (464,56,0): 81, 68, 60, (464,57,0): 80, 67, 58, (464,58,0): 81, 66, 59, (464,59,0): 80, 66, 57, (464,60,0): 78, 63, 56, (464,61,0): 77, 63, 54, (464,62,0): 77, 62, 55, (464,63,0): 76, 62, 53, (464,64,0): 78, 62, 49, (464,65,0): 77, 59, 45, (464,66,0): 76, 58, 46, (464,67,0): 74, 56, 42, (464,68,0): 73, 55, 43, (464,69,0): 72, 54, 40, (464,70,0): 73, 55, 43, (464,71,0): 73, 55, 41, (464,72,0): 73, 55, 43, (464,73,0): 73, 55, 41, (464,74,0): 72, 54, 42, (464,75,0): 72, 54, 40, (464,76,0): 71, 53, 41, (464,77,0): 71, 53, 39, (464,78,0): 70, 52, 40, (464,79,0): 70, 52, 38, (464,80,0): 69, 50, 36, (464,81,0): 69, 50, 36, (464,82,0): 71, 49, 36, (464,83,0): 69, 50, 36, (464,84,0): 69, 50, 36, (464,85,0): 69, 50, 36, (464,86,0): 69, 50, 36, (464,87,0): 69, 50, 36, (464,88,0): 71, 52, 38, (464,89,0): 70, 52, 38, (464,90,0): 69, 51, 37, (464,91,0): 69, 51, 37, (464,92,0): 70, 52, 38, (464,93,0): 72, 54, 40, (464,94,0): 73, 55, 41, (464,95,0): 74, 56, 42, (464,96,0): 78, 59, 45, (464,97,0): 78, 59, 45, (464,98,0): 77, 58, 44, (464,99,0): 76, 57, 43, (464,100,0): 74, 55, 41, (464,101,0): 73, 54, 40, (464,102,0): 72, 53, 39, (464,103,0): 71, 52, 38, (464,104,0): 66, 47, 33, (464,105,0): 65, 46, 32, (464,106,0): 63, 44, 30, (464,107,0): 61, 42, 28, (464,108,0): 60, 41, 27, (464,109,0): 60, 41, 27, (464,110,0): 60, 41, 27, (464,111,0): 60, 41, 27, (464,112,0): 57, 37, 28, (464,113,0): 57, 37, 28, (464,114,0): 58, 38, 29, (464,115,0): 58, 38, 29, (464,116,0): 59, 39, 30, (464,117,0): 60, 40, 31, (464,118,0): 61, 41, 32, (464,119,0): 61, 41, 32, (464,120,0): 59, 39, 30, (464,121,0): 59, 39, 30, (464,122,0): 59, 39, 30, (464,123,0): 60, 40, 31, (464,124,0): 61, 41, 32, (464,125,0): 61, 41, 32, (464,126,0): 61, 41, 32, (464,127,0): 62, 42, 33, (464,128,0): 59, 40, 34, (464,129,0): 59, 40, 34, (464,130,0): 59, 40, 34, (464,131,0): 59, 40, 34, (464,132,0): 59, 40, 34, (464,133,0): 59, 40, 34, (464,134,0): 59, 40, 34, (464,135,0): 59, 40, 34, (464,136,0): 62, 43, 37, (464,137,0): 61, 42, 36, (464,138,0): 60, 41, 35, (464,139,0): 59, 40, 34, (464,140,0): 59, 40, 34, (464,141,0): 61, 42, 36, (464,142,0): 63, 44, 38, (464,143,0): 65, 46, 40, (464,144,0): 64, 46, 42, (464,145,0): 62, 47, 42, (464,146,0): 65, 47, 43, (464,147,0): 65, 50, 45, (464,148,0): 68, 50, 46, (464,149,0): 67, 52, 47, (464,150,0): 70, 52, 48, (464,151,0): 69, 54, 49, (464,152,0): 71, 53, 49, (464,153,0): 69, 54, 49, (464,154,0): 72, 54, 50, (464,155,0): 72, 57, 52, (464,156,0): 75, 57, 53, (464,157,0): 75, 60, 55, (464,158,0): 78, 60, 56, (464,159,0): 76, 61, 56, (464,160,0): 75, 60, 55, (464,161,0): 75, 60, 55, (464,162,0): 76, 61, 56, (464,163,0): 76, 61, 56, (464,164,0): 77, 62, 57, (464,165,0): 77, 62, 57, (464,166,0): 78, 63, 58, (464,167,0): 78, 63, 58, (464,168,0): 76, 61, 56, (464,169,0): 76, 61, 56, (464,170,0): 77, 62, 57, (464,171,0): 78, 63, 58, (464,172,0): 79, 64, 59, (464,173,0): 80, 65, 60, (464,174,0): 81, 66, 61, (464,175,0): 80, 67, 61, (464,176,0): 74, 63, 59, (464,177,0): 74, 63, 61, (464,178,0): 75, 64, 62, (464,179,0): 76, 65, 63, (464,180,0): 77, 66, 64, (464,181,0): 78, 67, 65, (464,182,0): 79, 68, 66, (464,183,0): 80, 69, 67, (464,184,0): 84, 73, 71, (464,185,0): 84, 73, 71, (464,186,0): 85, 73, 73, (464,187,0): 85, 73, 73, (464,188,0): 86, 74, 74, (464,189,0): 86, 74, 74, (464,190,0): 87, 75, 75, (464,191,0): 87, 75, 75, (464,192,0): 84, 72, 74, (464,193,0): 84, 72, 74, (464,194,0): 84, 72, 74, (464,195,0): 83, 71, 71, (464,196,0): 83, 71, 73, (464,197,0): 84, 70, 70, (464,198,0): 84, 70, 70, (464,199,0): 83, 69, 69, (464,200,0): 79, 65, 65, (464,201,0): 79, 65, 65, (464,202,0): 79, 63, 64, (464,203,0): 78, 62, 63, (464,204,0): 77, 61, 62, (464,205,0): 76, 60, 61, (464,206,0): 75, 59, 60, (464,207,0): 74, 58, 59, (464,208,0): 75, 59, 60, (464,209,0): 75, 59, 60, (464,210,0): 75, 59, 60, (464,211,0): 75, 59, 60, (464,212,0): 75, 59, 60, (464,213,0): 75, 59, 60, (464,214,0): 75, 59, 60, (464,215,0): 75, 59, 60, (464,216,0): 77, 61, 62, (464,217,0): 77, 61, 62, (464,218,0): 78, 62, 63, (464,219,0): 78, 62, 63, (464,220,0): 79, 63, 66, (464,221,0): 79, 63, 66, (464,222,0): 80, 64, 67, (464,223,0): 82, 63, 67, (464,224,0): 84, 63, 68, (464,225,0): 85, 64, 69, (464,226,0): 88, 65, 71, (464,227,0): 90, 67, 73, (464,228,0): 95, 70, 76, (464,229,0): 97, 72, 76, (464,230,0): 100, 73, 80, (464,231,0): 103, 74, 79, (464,232,0): 106, 75, 81, (464,233,0): 109, 78, 84, (464,234,0): 114, 81, 88, (464,235,0): 120, 87, 94, (464,236,0): 131, 96, 103, (464,237,0): 145, 108, 116, (464,238,0): 160, 123, 131, (464,239,0): 176, 131, 138, (464,240,0): 203, 143, 145, (464,241,0): 206, 138, 139, (464,242,0): 201, 135, 137, (464,243,0): 197, 131, 133, (464,244,0): 193, 128, 132, (464,245,0): 189, 129, 131, (464,246,0): 185, 130, 133, (464,247,0): 181, 133, 133, (464,248,0): 184, 140, 139, (464,249,0): 181, 141, 139, (464,250,0): 181, 141, 139, (464,251,0): 182, 143, 138, (464,252,0): 184, 143, 139, (464,253,0): 189, 146, 140, (464,254,0): 192, 147, 142, (464,255,0): 195, 148, 142, (464,256,0): 195, 150, 144, (464,257,0): 195, 150, 144, (464,258,0): 193, 150, 143, (464,259,0): 195, 152, 146, (464,260,0): 198, 155, 149, (464,261,0): 200, 159, 155, (464,262,0): 204, 164, 164, (464,263,0): 203, 167, 169, (464,264,0): 210, 178, 183, (464,265,0): 216, 186, 194, (464,266,0): 224, 198, 209, (464,267,0): 231, 209, 222, (464,268,0): 235, 217, 233, (464,269,0): 238, 223, 242, (464,270,0): 243, 230, 250, (464,271,0): 244, 234, 255, (464,272,0): 233, 230, 255, (464,273,0): 225, 229, 255, (464,274,0): 221, 227, 253, (464,275,0): 217, 224, 252, (464,276,0): 214, 226, 252, (464,277,0): 212, 228, 254, (464,278,0): 211, 228, 255, (464,279,0): 210, 229, 255, (464,280,0): 210, 226, 255, (464,281,0): 209, 225, 255, (464,282,0): 207, 221, 255, (464,283,0): 208, 217, 255, (464,284,0): 208, 212, 255, (464,285,0): 208, 210, 255, (464,286,0): 208, 208, 255, (464,287,0): 210, 208, 255, (464,288,0): 207, 203, 254, (464,289,0): 203, 199, 250, (464,290,0): 196, 192, 243, (464,291,0): 190, 183, 234, (464,292,0): 184, 178, 224, (464,293,0): 180, 173, 217, (464,294,0): 181, 170, 212, (464,295,0): 181, 169, 207, (464,296,0): 173, 157, 194, (464,297,0): 173, 156, 192, (464,298,0): 172, 155, 189, (464,299,0): 177, 158, 188, (464,300,0): 189, 166, 194, (464,301,0): 195, 171, 193, (464,302,0): 189, 162, 181, (464,303,0): 177, 146, 164, (464,304,0): 118, 84, 101, (464,305,0): 87, 53, 70, (464,306,0): 67, 39, 54, (464,307,0): 61, 37, 51, (464,308,0): 48, 30, 42, (464,309,0): 41, 25, 36, (464,310,0): 41, 30, 38, (464,311,0): 41, 30, 38, (464,312,0): 44, 33, 41, (464,313,0): 41, 30, 38, (464,314,0): 36, 25, 33, (464,315,0): 33, 24, 29, (464,316,0): 32, 25, 32, (464,317,0): 28, 26, 29, (464,318,0): 25, 24, 29, (464,319,0): 24, 22, 27, (464,320,0): 31, 21, 30, (464,321,0): 32, 20, 30, (464,322,0): 32, 20, 32, (464,323,0): 31, 19, 31, (464,324,0): 30, 20, 31, (464,325,0): 30, 20, 31, (464,326,0): 30, 20, 31, (464,327,0): 30, 20, 31, (464,328,0): 27, 16, 30, (464,329,0): 25, 17, 30, (464,330,0): 25, 17, 32, (464,331,0): 24, 16, 31, (464,332,0): 24, 16, 31, (464,333,0): 23, 15, 30, (464,334,0): 22, 16, 30, (464,335,0): 21, 14, 30, (464,336,0): 21, 14, 30, (464,337,0): 21, 14, 30, (464,338,0): 21, 14, 30, (464,339,0): 20, 13, 29, (464,340,0): 20, 13, 29, (464,341,0): 19, 12, 28, (464,342,0): 19, 12, 28, (464,343,0): 19, 12, 28, (464,344,0): 19, 12, 28, (464,345,0): 19, 12, 28, (464,346,0): 19, 12, 28, (464,347,0): 19, 12, 28, (464,348,0): 19, 12, 28, (464,349,0): 19, 12, 28, (464,350,0): 19, 12, 28, (464,351,0): 19, 12, 28, (464,352,0): 23, 12, 29, (464,353,0): 24, 13, 29, (464,354,0): 24, 13, 30, (464,355,0): 23, 15, 30, (464,356,0): 22, 13, 30, (464,357,0): 21, 13, 28, (464,358,0): 19, 10, 27, (464,359,0): 17, 11, 25, (464,360,0): 20, 13, 29, (464,361,0): 18, 14, 28, (464,362,0): 18, 14, 29, (464,363,0): 18, 14, 28, (464,364,0): 18, 14, 29, (464,365,0): 17, 15, 28, (464,366,0): 17, 15, 29, (464,367,0): 17, 15, 28, (464,368,0): 17, 13, 27, (464,369,0): 16, 13, 24, (464,370,0): 16, 13, 24, (464,371,0): 16, 13, 24, (464,372,0): 19, 13, 25, (464,373,0): 21, 15, 25, (464,374,0): 23, 17, 27, (464,375,0): 24, 18, 28, (464,376,0): 29, 21, 32, (464,377,0): 29, 22, 30, (464,378,0): 31, 21, 30, (464,379,0): 30, 20, 28, (464,380,0): 30, 20, 28, (464,381,0): 30, 20, 28, (464,382,0): 31, 20, 28, (464,383,0): 31, 19, 29, (464,384,0): 31, 17, 32, (464,385,0): 31, 17, 34, (464,386,0): 33, 16, 32, (464,387,0): 33, 16, 32, (464,388,0): 33, 16, 32, (464,389,0): 33, 17, 30, (464,390,0): 34, 16, 28, (464,391,0): 34, 16, 28, (464,392,0): 38, 21, 31, (464,393,0): 37, 20, 28, (464,394,0): 38, 19, 25, (464,395,0): 38, 19, 25, (464,396,0): 39, 20, 24, (464,397,0): 41, 22, 24, (464,398,0): 44, 25, 27, (464,399,0): 47, 27, 29, (464,400,0): 51, 29, 32, (464,401,0): 54, 29, 33, (464,402,0): 54, 29, 33, (464,403,0): 55, 30, 34, (464,404,0): 55, 30, 34, (464,405,0): 56, 31, 35, (464,406,0): 56, 31, 35, (464,407,0): 56, 31, 35, (464,408,0): 60, 35, 39, (464,409,0): 60, 35, 39, (464,410,0): 59, 34, 38, (464,411,0): 58, 33, 37, (464,412,0): 58, 33, 37, (464,413,0): 59, 34, 38, (464,414,0): 60, 35, 39, (464,415,0): 58, 36, 39, (464,416,0): 59, 39, 41, (464,417,0): 59, 39, 41, (464,418,0): 61, 41, 43, (464,419,0): 63, 43, 45, (464,420,0): 68, 45, 51, (464,421,0): 72, 49, 57, (464,422,0): 76, 53, 61, (464,423,0): 78, 55, 65, (464,424,0): 84, 58, 71, (464,425,0): 85, 58, 73, (464,426,0): 87, 60, 75, (464,427,0): 87, 60, 77, (464,428,0): 87, 58, 76, (464,429,0): 85, 56, 76, (464,430,0): 82, 53, 73, (464,431,0): 79, 52, 71, (464,432,0): 77, 54, 70, (464,433,0): 75, 55, 67, (464,434,0): 75, 53, 66, (464,435,0): 74, 52, 65, (464,436,0): 73, 51, 63, (464,437,0): 73, 51, 63, (464,438,0): 74, 50, 63, (464,439,0): 75, 52, 62, (464,440,0): 77, 53, 66, (464,441,0): 75, 52, 62, (464,442,0): 75, 49, 60, (464,443,0): 73, 47, 58, (464,444,0): 71, 45, 54, (464,445,0): 70, 44, 53, (464,446,0): 70, 43, 52, (464,447,0): 70, 43, 52, (464,448,0): 70, 42, 54, (464,449,0): 72, 44, 56, (464,450,0): 74, 46, 58, (464,451,0): 76, 50, 63, (464,452,0): 76, 52, 66, (464,453,0): 77, 53, 67, (464,454,0): 76, 54, 67, (464,455,0): 75, 55, 67, (464,456,0): 72, 52, 64, (464,457,0): 71, 51, 63, (464,458,0): 69, 49, 61, (464,459,0): 66, 46, 57, (464,460,0): 64, 43, 52, (464,461,0): 61, 40, 49, (464,462,0): 60, 37, 45, (464,463,0): 57, 36, 41, (464,464,0): 55, 36, 40, (464,465,0): 52, 36, 37, (464,466,0): 54, 35, 37, (464,467,0): 53, 34, 36, (464,468,0): 52, 33, 35, (464,469,0): 53, 33, 35, (464,470,0): 52, 32, 34, (464,471,0): 53, 31, 34, (464,472,0): 57, 32, 36, (464,473,0): 56, 31, 35, (464,474,0): 53, 28, 32, (464,475,0): 51, 24, 29, (464,476,0): 48, 21, 26, (464,477,0): 48, 19, 24, (464,478,0): 47, 18, 23, (464,479,0): 46, 17, 22, (464,480,0): 49, 18, 23, (464,481,0): 48, 16, 19, (464,482,0): 49, 14, 18, (464,483,0): 55, 13, 17, (464,484,0): 71, 15, 24, (464,485,0): 90, 22, 33, (464,486,0): 110, 29, 44, (464,487,0): 122, 34, 50, (464,488,0): 128, 37, 52, (464,489,0): 119, 29, 41, (464,490,0): 122, 34, 46, (464,491,0): 128, 41, 50, (464,492,0): 126, 39, 48, (464,493,0): 137, 47, 56, (464,494,0): 147, 54, 64, (464,495,0): 140, 47, 57, (464,496,0): 147, 54, 65, (464,497,0): 155, 57, 70, (464,498,0): 162, 54, 67, (464,499,0): 171, 49, 64, (464,500,0): 185, 48, 64, (464,501,0): 197, 50, 68, (464,502,0): 198, 47, 66, (464,503,0): 194, 45, 64, (464,504,0): 188, 45, 63, (464,505,0): 190, 46, 69, (464,506,0): 191, 41, 70, (464,507,0): 199, 37, 74, (464,508,0): 223, 46, 92, (464,509,0): 246, 57, 111, (464,510,0): 250, 55, 113, (464,511,0): 238, 44, 107, (464,512,0): 206, 22, 96, (464,513,0): 221, 41, 115, (464,514,0): 244, 56, 130, (464,515,0): 252, 61, 131, (464,516,0): 251, 55, 127, (464,517,0): 253, 58, 136, (464,518,0): 255, 72, 165, (464,519,0): 255, 87, 196, (464,520,0): 255, 85, 213, (464,521,0): 251, 87, 220, (464,522,0): 255, 118, 244, (464,523,0): 255, 154, 255, (464,524,0): 246, 165, 241, (464,525,0): 218, 169, 216, (464,526,0): 247, 224, 244, (464,527,0): 255, 253, 255, (464,528,0): 255, 255, 253, (464,529,0): 247, 252, 245, (464,530,0): 246, 254, 241, (464,531,0): 250, 253, 244, (464,532,0): 255, 250, 254, (464,533,0): 255, 243, 255, (464,534,0): 255, 213, 255, (464,535,0): 246, 158, 242, (464,536,0): 234, 122, 230, (464,537,0): 251, 121, 243, (464,538,0): 255, 119, 247, (464,539,0): 255, 111, 239, (464,540,0): 255, 102, 229, (464,541,0): 255, 96, 221, (464,542,0): 255, 90, 215, (464,543,0): 255, 87, 195, (464,544,0): 255, 91, 167, (464,545,0): 255, 94, 154, (464,546,0): 254, 87, 143, (464,547,0): 251, 84, 136, (464,548,0): 253, 87, 137, (464,549,0): 236, 76, 120, (464,550,0): 207, 63, 99, (464,551,0): 197, 62, 92, (464,552,0): 204, 72, 96, (464,553,0): 198, 66, 87, (464,554,0): 202, 69, 88, (464,555,0): 211, 84, 95, (464,556,0): 202, 86, 89, (464,557,0): 187, 71, 71, (464,558,0): 190, 62, 63, (464,559,0): 194, 68, 72, (464,560,0): 184, 66, 82, (464,561,0): 172, 63, 84, (464,562,0): 169, 70, 88, (464,563,0): 163, 75, 89, (464,564,0): 151, 71, 82, (464,565,0): 151, 75, 85, (464,566,0): 156, 80, 90, (464,567,0): 151, 75, 87, (464,568,0): 153, 77, 89, (464,569,0): 150, 77, 88, (464,570,0): 143, 76, 85, (464,571,0): 135, 74, 81, (464,572,0): 127, 70, 76, (464,573,0): 118, 66, 70, (464,574,0): 111, 60, 65, (464,575,0): 105, 58, 64, (464,576,0): 106, 66, 74, (464,577,0): 103, 68, 75, (464,578,0): 103, 68, 75, (464,579,0): 101, 68, 75, (464,580,0): 99, 66, 73, (464,581,0): 95, 64, 70, (464,582,0): 92, 61, 67, (464,583,0): 89, 60, 65, (464,584,0): 88, 59, 64, (464,585,0): 87, 58, 63, (464,586,0): 86, 57, 62, (464,587,0): 84, 55, 60, (464,588,0): 78, 51, 56, (464,589,0): 75, 48, 53, (464,590,0): 71, 44, 49, (464,591,0): 71, 42, 47, (464,592,0): 67, 38, 43, (464,593,0): 62, 33, 38, (464,594,0): 55, 28, 33, (464,595,0): 52, 25, 30, (464,596,0): 51, 26, 30, (464,597,0): 49, 24, 28, (464,598,0): 44, 22, 25, (464,599,0): 42, 20, 23, (465,0,0): 60, 76, 66, (465,1,0): 60, 76, 66, (465,2,0): 62, 75, 66, (465,3,0): 62, 75, 66, (465,4,0): 61, 74, 65, (465,5,0): 59, 72, 63, (465,6,0): 58, 69, 61, (465,7,0): 57, 68, 60, (465,8,0): 60, 70, 62, (465,9,0): 60, 70, 62, (465,10,0): 60, 70, 62, (465,11,0): 60, 70, 62, (465,12,0): 62, 69, 62, (465,13,0): 62, 69, 62, (465,14,0): 62, 69, 62, (465,15,0): 62, 69, 62, (465,16,0): 61, 71, 63, (465,17,0): 61, 71, 63, (465,18,0): 62, 69, 62, (465,19,0): 62, 69, 62, (465,20,0): 63, 70, 63, (465,21,0): 64, 71, 64, (465,22,0): 67, 72, 66, (465,23,0): 68, 73, 67, (465,24,0): 69, 71, 66, (465,25,0): 70, 72, 67, (465,26,0): 70, 72, 67, (465,27,0): 71, 73, 68, (465,28,0): 72, 73, 68, (465,29,0): 73, 74, 69, (465,30,0): 73, 74, 69, (465,31,0): 73, 74, 69, (465,32,0): 76, 75, 70, (465,33,0): 76, 75, 70, (465,34,0): 78, 75, 70, (465,35,0): 78, 75, 70, (465,36,0): 78, 75, 68, (465,37,0): 78, 75, 68, (465,38,0): 79, 74, 68, (465,39,0): 79, 74, 68, (465,40,0): 83, 76, 68, (465,41,0): 82, 75, 67, (465,42,0): 82, 75, 65, (465,43,0): 81, 74, 64, (465,44,0): 81, 72, 63, (465,45,0): 81, 72, 63, (465,46,0): 80, 72, 61, (465,47,0): 80, 72, 61, (465,48,0): 80, 71, 62, (465,49,0): 80, 71, 62, (465,50,0): 80, 71, 62, (465,51,0): 80, 71, 62, (465,52,0): 80, 71, 62, (465,53,0): 80, 71, 62, (465,54,0): 81, 71, 62, (465,55,0): 81, 71, 62, (465,56,0): 81, 68, 60, (465,57,0): 80, 67, 59, (465,58,0): 81, 66, 59, (465,59,0): 80, 65, 58, (465,60,0): 78, 63, 56, (465,61,0): 77, 62, 55, (465,62,0): 77, 62, 55, (465,63,0): 76, 62, 53, (465,64,0): 79, 61, 49, (465,65,0): 77, 59, 45, (465,66,0): 76, 58, 44, (465,67,0): 74, 56, 42, (465,68,0): 73, 55, 41, (465,69,0): 72, 54, 40, (465,70,0): 73, 55, 41, (465,71,0): 73, 55, 41, (465,72,0): 73, 55, 41, (465,73,0): 73, 55, 41, (465,74,0): 72, 54, 40, (465,75,0): 72, 54, 40, (465,76,0): 71, 53, 39, (465,77,0): 71, 53, 39, (465,78,0): 70, 52, 38, (465,79,0): 70, 52, 38, (465,80,0): 69, 50, 36, (465,81,0): 69, 50, 36, (465,82,0): 69, 50, 36, (465,83,0): 69, 50, 36, (465,84,0): 69, 50, 36, (465,85,0): 69, 50, 36, (465,86,0): 69, 50, 36, (465,87,0): 69, 50, 36, (465,88,0): 70, 51, 37, (465,89,0): 70, 51, 37, (465,90,0): 69, 50, 36, (465,91,0): 69, 50, 36, (465,92,0): 70, 51, 37, (465,93,0): 71, 52, 38, (465,94,0): 73, 54, 40, (465,95,0): 74, 55, 41, (465,96,0): 76, 57, 43, (465,97,0): 76, 57, 43, (465,98,0): 75, 56, 42, (465,99,0): 74, 55, 41, (465,100,0): 73, 54, 40, (465,101,0): 71, 52, 38, (465,102,0): 71, 52, 38, (465,103,0): 70, 51, 37, (465,104,0): 66, 47, 33, (465,105,0): 65, 46, 32, (465,106,0): 63, 44, 30, (465,107,0): 61, 42, 28, (465,108,0): 60, 41, 27, (465,109,0): 60, 41, 27, (465,110,0): 60, 41, 27, (465,111,0): 60, 41, 27, (465,112,0): 57, 37, 28, (465,113,0): 57, 37, 28, (465,114,0): 58, 38, 29, (465,115,0): 58, 38, 29, (465,116,0): 59, 39, 30, (465,117,0): 60, 40, 31, (465,118,0): 60, 40, 31, (465,119,0): 61, 41, 32, (465,120,0): 58, 38, 29, (465,121,0): 59, 39, 30, (465,122,0): 59, 39, 30, (465,123,0): 60, 40, 31, (465,124,0): 60, 40, 31, (465,125,0): 61, 41, 32, (465,126,0): 61, 41, 32, (465,127,0): 61, 41, 32, (465,128,0): 60, 41, 35, (465,129,0): 60, 41, 35, (465,130,0): 60, 41, 35, (465,131,0): 60, 41, 35, (465,132,0): 60, 41, 35, (465,133,0): 60, 41, 35, (465,134,0): 60, 41, 35, (465,135,0): 60, 41, 35, (465,136,0): 59, 40, 34, (465,137,0): 58, 39, 33, (465,138,0): 57, 38, 32, (465,139,0): 57, 38, 32, (465,140,0): 57, 38, 32, (465,141,0): 59, 40, 34, (465,142,0): 61, 42, 36, (465,143,0): 61, 44, 37, (465,144,0): 60, 42, 38, (465,145,0): 59, 44, 39, (465,146,0): 60, 45, 40, (465,147,0): 61, 46, 41, (465,148,0): 62, 47, 42, (465,149,0): 63, 48, 43, (465,150,0): 64, 49, 44, (465,151,0): 65, 50, 45, (465,152,0): 65, 50, 45, (465,153,0): 66, 51, 46, (465,154,0): 67, 52, 47, (465,155,0): 68, 53, 48, (465,156,0): 69, 54, 49, (465,157,0): 70, 55, 50, (465,158,0): 71, 56, 51, (465,159,0): 72, 57, 52, (465,160,0): 72, 59, 53, (465,161,0): 72, 59, 53, (465,162,0): 73, 60, 54, (465,163,0): 73, 60, 54, (465,164,0): 74, 61, 55, (465,165,0): 74, 61, 55, (465,166,0): 75, 62, 56, (465,167,0): 75, 62, 56, (465,168,0): 71, 58, 52, (465,169,0): 71, 58, 52, (465,170,0): 72, 59, 53, (465,171,0): 73, 60, 54, (465,172,0): 74, 61, 55, (465,173,0): 75, 62, 56, (465,174,0): 76, 63, 57, (465,175,0): 75, 64, 58, (465,176,0): 72, 61, 59, (465,177,0): 72, 62, 60, (465,178,0): 73, 63, 61, (465,179,0): 74, 64, 62, (465,180,0): 75, 65, 63, (465,181,0): 76, 66, 64, (465,182,0): 77, 67, 65, (465,183,0): 77, 67, 65, (465,184,0): 81, 71, 69, (465,185,0): 81, 71, 69, (465,186,0): 82, 72, 70, (465,187,0): 82, 72, 70, (465,188,0): 83, 73, 71, (465,189,0): 83, 73, 71, (465,190,0): 84, 74, 72, (465,191,0): 84, 74, 72, (465,192,0): 85, 71, 71, (465,193,0): 85, 71, 71, (465,194,0): 84, 70, 70, (465,195,0): 84, 70, 70, (465,196,0): 83, 69, 69, (465,197,0): 83, 69, 69, (465,198,0): 82, 68, 68, (465,199,0): 82, 68, 68, (465,200,0): 78, 64, 64, (465,201,0): 78, 64, 64, (465,202,0): 77, 63, 63, (465,203,0): 76, 62, 62, (465,204,0): 75, 61, 61, (465,205,0): 74, 60, 60, (465,206,0): 73, 59, 59, (465,207,0): 73, 59, 59, (465,208,0): 73, 59, 59, (465,209,0): 73, 59, 59, (465,210,0): 73, 59, 59, (465,211,0): 73, 59, 59, (465,212,0): 73, 59, 59, (465,213,0): 73, 59, 59, (465,214,0): 73, 59, 59, (465,215,0): 73, 59, 59, (465,216,0): 75, 61, 61, (465,217,0): 76, 62, 62, (465,218,0): 76, 62, 62, (465,219,0): 76, 62, 62, (465,220,0): 77, 63, 63, (465,221,0): 78, 64, 64, (465,222,0): 78, 64, 64, (465,223,0): 78, 64, 64, (465,224,0): 82, 63, 65, (465,225,0): 83, 64, 66, (465,226,0): 86, 66, 68, (465,227,0): 88, 68, 70, (465,228,0): 92, 70, 73, (465,229,0): 94, 72, 75, (465,230,0): 97, 72, 76, (465,231,0): 99, 72, 77, (465,232,0): 105, 76, 81, (465,233,0): 107, 78, 83, (465,234,0): 111, 80, 86, (465,235,0): 116, 85, 91, (465,236,0): 123, 90, 97, (465,237,0): 136, 101, 108, (465,238,0): 149, 114, 121, (465,239,0): 163, 121, 125, (465,240,0): 188, 128, 128, (465,241,0): 193, 125, 122, (465,242,0): 192, 124, 123, (465,243,0): 190, 122, 121, (465,244,0): 186, 120, 121, (465,245,0): 182, 121, 120, (465,246,0): 177, 122, 119, (465,247,0): 173, 124, 119, (465,248,0): 172, 129, 122, (465,249,0): 169, 131, 122, (465,250,0): 168, 131, 122, (465,251,0): 169, 132, 123, (465,252,0): 174, 134, 124, (465,253,0): 178, 135, 126, (465,254,0): 184, 137, 127, (465,255,0): 186, 138, 128, (465,256,0): 191, 143, 131, (465,257,0): 191, 143, 131, (465,258,0): 192, 144, 132, (465,259,0): 193, 145, 133, (465,260,0): 196, 148, 136, (465,261,0): 198, 151, 141, (465,262,0): 201, 154, 148, (465,263,0): 200, 155, 150, (465,264,0): 202, 158, 157, (465,265,0): 204, 164, 165, (465,266,0): 210, 173, 180, (465,267,0): 215, 182, 191, (465,268,0): 222, 192, 204, (465,269,0): 229, 202, 217, (465,270,0): 239, 212, 231, (465,271,0): 242, 220, 241, (465,272,0): 245, 231, 255, (465,273,0): 242, 233, 255, (465,274,0): 241, 235, 255, (465,275,0): 239, 236, 255, (465,276,0): 232, 236, 255, (465,277,0): 227, 234, 255, (465,278,0): 224, 233, 255, (465,279,0): 223, 234, 255, (465,280,0): 217, 228, 255, (465,281,0): 218, 226, 255, (465,282,0): 220, 224, 255, (465,283,0): 219, 221, 255, (465,284,0): 221, 215, 255, (465,285,0): 218, 209, 255, (465,286,0): 217, 205, 253, (465,287,0): 215, 201, 250, (465,288,0): 208, 192, 239, (465,289,0): 204, 188, 233, (465,290,0): 197, 182, 225, (465,291,0): 191, 174, 216, (465,292,0): 184, 168, 207, (465,293,0): 181, 164, 200, (465,294,0): 180, 161, 193, (465,295,0): 180, 160, 188, (465,296,0): 175, 150, 179, (465,297,0): 176, 150, 175, (465,298,0): 176, 148, 170, (465,299,0): 177, 148, 166, (465,300,0): 185, 157, 172, (465,301,0): 193, 162, 177, (465,302,0): 188, 156, 169, (465,303,0): 178, 144, 158, (465,304,0): 130, 89, 107, (465,305,0): 97, 56, 74, (465,306,0): 72, 38, 55, (465,307,0): 65, 37, 51, (465,308,0): 53, 31, 44, (465,309,0): 44, 28, 38, (465,310,0): 45, 32, 41, (465,311,0): 43, 32, 40, (465,312,0): 46, 33, 42, (465,313,0): 43, 30, 39, (465,314,0): 39, 26, 33, (465,315,0): 36, 25, 31, (465,316,0): 36, 27, 32, (465,317,0): 33, 28, 32, (465,318,0): 28, 28, 30, (465,319,0): 27, 25, 30, (465,320,0): 31, 21, 30, (465,321,0): 32, 20, 30, (465,322,0): 32, 20, 30, (465,323,0): 31, 19, 29, (465,324,0): 30, 20, 31, (465,325,0): 30, 20, 31, (465,326,0): 29, 19, 30, (465,327,0): 29, 19, 30, (465,328,0): 24, 16, 29, (465,329,0): 24, 16, 29, (465,330,0): 23, 17, 31, (465,331,0): 22, 16, 30, (465,332,0): 22, 16, 30, (465,333,0): 21, 15, 29, (465,334,0): 19, 15, 30, (465,335,0): 19, 15, 30, (465,336,0): 21, 14, 30, (465,337,0): 21, 14, 30, (465,338,0): 21, 14, 30, (465,339,0): 20, 13, 29, (465,340,0): 20, 13, 29, (465,341,0): 19, 12, 28, (465,342,0): 19, 12, 28, (465,343,0): 19, 12, 28, (465,344,0): 19, 12, 28, (465,345,0): 19, 12, 28, (465,346,0): 19, 12, 28, (465,347,0): 19, 12, 28, (465,348,0): 19, 12, 28, (465,349,0): 19, 12, 28, (465,350,0): 19, 12, 28, (465,351,0): 19, 12, 28, (465,352,0): 23, 12, 29, (465,353,0): 24, 13, 30, (465,354,0): 22, 13, 30, (465,355,0): 23, 14, 31, (465,356,0): 22, 13, 30, (465,357,0): 21, 12, 29, (465,358,0): 18, 11, 27, (465,359,0): 17, 10, 26, (465,360,0): 18, 14, 29, (465,361,0): 18, 14, 29, (465,362,0): 18, 14, 29, (465,363,0): 18, 14, 29, (465,364,0): 17, 15, 29, (465,365,0): 17, 15, 29, (465,366,0): 17, 15, 29, (465,367,0): 17, 15, 28, (465,368,0): 17, 13, 27, (465,369,0): 17, 14, 25, (465,370,0): 17, 14, 25, (465,371,0): 17, 14, 25, (465,372,0): 20, 14, 24, (465,373,0): 22, 16, 26, (465,374,0): 24, 18, 28, (465,375,0): 26, 18, 29, (465,376,0): 27, 20, 28, (465,377,0): 27, 20, 28, (465,378,0): 29, 19, 27, (465,379,0): 29, 19, 27, (465,380,0): 30, 20, 28, (465,381,0): 31, 20, 28, (465,382,0): 31, 20, 26, (465,383,0): 31, 20, 28, (465,384,0): 31, 17, 32, (465,385,0): 31, 16, 35, (465,386,0): 33, 16, 34, (465,387,0): 33, 16, 34, (465,388,0): 33, 16, 32, (465,389,0): 33, 17, 30, (465,390,0): 34, 16, 28, (465,391,0): 34, 17, 27, (465,392,0): 40, 20, 31, (465,393,0): 39, 20, 26, (465,394,0): 40, 21, 27, (465,395,0): 40, 21, 25, (465,396,0): 42, 22, 24, (465,397,0): 44, 24, 25, (465,398,0): 45, 25, 26, (465,399,0): 46, 26, 27, (465,400,0): 51, 29, 32, (465,401,0): 53, 28, 32, (465,402,0): 54, 29, 33, (465,403,0): 54, 29, 33, (465,404,0): 55, 30, 34, (465,405,0): 55, 30, 34, (465,406,0): 56, 31, 35, (465,407,0): 56, 31, 35, (465,408,0): 60, 35, 39, (465,409,0): 59, 34, 38, (465,410,0): 58, 33, 37, (465,411,0): 57, 32, 36, (465,412,0): 57, 32, 36, (465,413,0): 58, 33, 37, (465,414,0): 59, 34, 38, (465,415,0): 58, 36, 39, (465,416,0): 57, 37, 38, (465,417,0): 56, 38, 38, (465,418,0): 58, 38, 39, (465,419,0): 60, 40, 42, (465,420,0): 63, 42, 47, (465,421,0): 66, 45, 50, (465,422,0): 70, 47, 57, (465,423,0): 72, 49, 59, (465,424,0): 80, 53, 68, (465,425,0): 82, 55, 70, (465,426,0): 84, 57, 74, (465,427,0): 85, 58, 77, (465,428,0): 86, 57, 79, (465,429,0): 85, 56, 78, (465,430,0): 82, 52, 76, (465,431,0): 80, 52, 74, (465,432,0): 77, 54, 72, (465,433,0): 75, 54, 69, (465,434,0): 74, 53, 68, (465,435,0): 73, 52, 67, (465,436,0): 73, 51, 64, (465,437,0): 73, 51, 64, (465,438,0): 73, 49, 62, (465,439,0): 73, 49, 62, (465,440,0): 75, 51, 64, (465,441,0): 74, 50, 63, (465,442,0): 75, 49, 60, (465,443,0): 74, 48, 59, (465,444,0): 73, 46, 55, (465,445,0): 71, 44, 53, (465,446,0): 69, 42, 51, (465,447,0): 68, 41, 50, (465,448,0): 72, 40, 51, (465,449,0): 74, 42, 53, (465,450,0): 75, 45, 57, (465,451,0): 75, 47, 59, (465,452,0): 77, 49, 64, (465,453,0): 75, 51, 65, (465,454,0): 75, 51, 67, (465,455,0): 74, 51, 67, (465,456,0): 72, 51, 66, (465,457,0): 71, 50, 65, (465,458,0): 68, 48, 60, (465,459,0): 65, 45, 56, (465,460,0): 64, 40, 53, (465,461,0): 61, 38, 48, (465,462,0): 60, 34, 43, (465,463,0): 57, 34, 40, (465,464,0): 55, 34, 39, (465,465,0): 54, 35, 37, (465,466,0): 55, 35, 37, (465,467,0): 55, 35, 37, (465,468,0): 54, 34, 36, (465,469,0): 54, 34, 36, (465,470,0): 55, 33, 36, (465,471,0): 55, 33, 36, (465,472,0): 58, 33, 37, (465,473,0): 57, 32, 36, (465,474,0): 54, 29, 33, (465,475,0): 51, 26, 30, (465,476,0): 49, 22, 27, (465,477,0): 46, 19, 24, (465,478,0): 44, 17, 22, (465,479,0): 43, 16, 21, (465,480,0): 54, 25, 29, (465,481,0): 53, 22, 27, (465,482,0): 54, 19, 23, (465,483,0): 57, 16, 22, (465,484,0): 66, 13, 23, (465,485,0): 76, 13, 24, (465,486,0): 90, 12, 26, (465,487,0): 96, 12, 28, (465,488,0): 94, 6, 22, (465,489,0): 86, 0, 13, (465,490,0): 88, 7, 16, (465,491,0): 91, 14, 22, (465,492,0): 92, 13, 19, (465,493,0): 101, 18, 26, (465,494,0): 112, 22, 31, (465,495,0): 107, 15, 26, (465,496,0): 114, 24, 36, (465,497,0): 117, 25, 38, (465,498,0): 118, 22, 33, (465,499,0): 125, 19, 31, (465,500,0): 147, 25, 38, (465,501,0): 169, 34, 49, (465,502,0): 173, 30, 48, (465,503,0): 165, 19, 38, (465,504,0): 162, 21, 40, (465,505,0): 165, 23, 45, (465,506,0): 173, 26, 54, (465,507,0): 186, 32, 66, (465,508,0): 206, 39, 83, (465,509,0): 221, 43, 95, (465,510,0): 219, 36, 93, (465,511,0): 210, 25, 92, (465,512,0): 199, 21, 95, (465,513,0): 213, 35, 109, (465,514,0): 234, 47, 116, (465,515,0): 243, 48, 116, (465,516,0): 243, 41, 114, (465,517,0): 243, 40, 121, (465,518,0): 249, 49, 147, (465,519,0): 254, 60, 175, (465,520,0): 254, 67, 198, (465,521,0): 251, 76, 213, (465,522,0): 255, 101, 234, (465,523,0): 255, 138, 254, (465,524,0): 255, 165, 252, (465,525,0): 233, 165, 224, (465,526,0): 242, 205, 238, (465,527,0): 255, 242, 254, (465,528,0): 255, 253, 255, (465,529,0): 255, 255, 250, (465,530,0): 255, 255, 248, (465,531,0): 255, 255, 250, (465,532,0): 255, 244, 252, (465,533,0): 255, 234, 255, (465,534,0): 255, 202, 255, (465,535,0): 247, 157, 245, (465,536,0): 244, 130, 243, (465,537,0): 255, 132, 255, (465,538,0): 255, 128, 255, (465,539,0): 255, 113, 240, (465,540,0): 253, 101, 222, (465,541,0): 253, 94, 212, (465,542,0): 252, 85, 199, (465,543,0): 246, 76, 175, (465,544,0): 255, 94, 167, (465,545,0): 255, 94, 150, (465,546,0): 240, 77, 130, (465,547,0): 225, 65, 113, (465,548,0): 226, 65, 109, (465,549,0): 211, 59, 98, (465,550,0): 179, 48, 79, (465,551,0): 166, 46, 73, (465,552,0): 173, 57, 80, (465,553,0): 165, 49, 70, (465,554,0): 167, 51, 70, (465,555,0): 175, 65, 78, (465,556,0): 166, 70, 74, (465,557,0): 154, 59, 57, (465,558,0): 161, 49, 48, (465,559,0): 166, 53, 59, (465,560,0): 152, 54, 67, (465,561,0): 137, 50, 66, (465,562,0): 133, 57, 69, (465,563,0): 127, 60, 69, (465,564,0): 114, 53, 60, (465,565,0): 112, 55, 61, (465,566,0): 119, 58, 65, (465,567,0): 114, 53, 60, (465,568,0): 110, 49, 56, (465,569,0): 111, 52, 58, (465,570,0): 109, 57, 61, (465,571,0): 111, 62, 65, (465,572,0): 111, 65, 67, (465,573,0): 112, 66, 68, (465,574,0): 113, 64, 67, (465,575,0): 110, 65, 68, (465,576,0): 107, 67, 75, (465,577,0): 105, 70, 77, (465,578,0): 104, 71, 78, (465,579,0): 103, 70, 77, (465,580,0): 101, 68, 75, (465,581,0): 97, 64, 71, (465,582,0): 92, 61, 67, (465,583,0): 89, 58, 64, (465,584,0): 89, 60, 65, (465,585,0): 89, 60, 65, (465,586,0): 87, 58, 63, (465,587,0): 85, 56, 61, (465,588,0): 80, 53, 58, (465,589,0): 76, 49, 54, (465,590,0): 72, 45, 50, (465,591,0): 70, 43, 48, (465,592,0): 69, 38, 44, (465,593,0): 64, 33, 39, (465,594,0): 58, 29, 34, (465,595,0): 53, 26, 31, (465,596,0): 52, 25, 30, (465,597,0): 50, 25, 29, (465,598,0): 45, 23, 26, (465,599,0): 43, 21, 24, (466,0,0): 58, 74, 64, (466,1,0): 59, 75, 65, (466,2,0): 61, 74, 65, (466,3,0): 62, 75, 66, (466,4,0): 62, 75, 66, (466,5,0): 61, 74, 65, (466,6,0): 61, 72, 64, (466,7,0): 60, 71, 63, (466,8,0): 60, 70, 62, (466,9,0): 60, 70, 62, (466,10,0): 60, 70, 62, (466,11,0): 60, 70, 62, (466,12,0): 62, 69, 62, (466,13,0): 62, 69, 62, (466,14,0): 62, 69, 62, (466,15,0): 62, 69, 62, (466,16,0): 61, 71, 63, (466,17,0): 61, 71, 63, (466,18,0): 62, 69, 62, (466,19,0): 62, 69, 62, (466,20,0): 62, 69, 62, (466,21,0): 63, 70, 63, (466,22,0): 66, 71, 65, (466,23,0): 67, 72, 66, (466,24,0): 69, 71, 66, (466,25,0): 69, 71, 66, (466,26,0): 69, 71, 66, (466,27,0): 70, 72, 67, (466,28,0): 71, 72, 67, (466,29,0): 72, 73, 68, (466,30,0): 72, 73, 68, (466,31,0): 72, 73, 68, (466,32,0): 74, 73, 68, (466,33,0): 74, 73, 68, (466,34,0): 76, 73, 68, (466,35,0): 76, 73, 68, (466,36,0): 76, 73, 66, (466,37,0): 76, 73, 66, (466,38,0): 77, 72, 66, (466,39,0): 77, 72, 66, (466,40,0): 81, 74, 66, (466,41,0): 81, 74, 66, (466,42,0): 81, 74, 64, (466,43,0): 80, 73, 63, (466,44,0): 81, 72, 63, (466,45,0): 80, 71, 62, (466,46,0): 80, 72, 61, (466,47,0): 80, 72, 61, (466,48,0): 80, 71, 62, (466,49,0): 80, 71, 62, (466,50,0): 80, 71, 62, (466,51,0): 80, 71, 62, (466,52,0): 80, 71, 62, (466,53,0): 80, 71, 62, (466,54,0): 81, 71, 62, (466,55,0): 81, 71, 62, (466,56,0): 81, 68, 60, (466,57,0): 80, 67, 59, (466,58,0): 81, 66, 59, (466,59,0): 80, 65, 58, (466,60,0): 78, 63, 56, (466,61,0): 77, 62, 55, (466,62,0): 77, 62, 55, (466,63,0): 76, 62, 53, (466,64,0): 79, 61, 49, (466,65,0): 77, 59, 45, (466,66,0): 76, 58, 44, (466,67,0): 74, 56, 42, (466,68,0): 73, 55, 41, (466,69,0): 72, 54, 40, (466,70,0): 73, 55, 41, (466,71,0): 73, 55, 41, (466,72,0): 73, 55, 41, (466,73,0): 73, 55, 41, (466,74,0): 72, 54, 40, (466,75,0): 72, 54, 40, (466,76,0): 71, 53, 39, (466,77,0): 71, 53, 39, (466,78,0): 70, 52, 38, (466,79,0): 70, 52, 38, (466,80,0): 67, 48, 34, (466,81,0): 67, 48, 34, (466,82,0): 67, 48, 34, (466,83,0): 67, 48, 34, (466,84,0): 67, 48, 34, (466,85,0): 67, 48, 34, (466,86,0): 67, 48, 34, (466,87,0): 67, 48, 34, (466,88,0): 68, 49, 35, (466,89,0): 68, 49, 35, (466,90,0): 67, 48, 34, (466,91,0): 67, 48, 34, (466,92,0): 67, 48, 34, (466,93,0): 68, 49, 35, (466,94,0): 70, 51, 37, (466,95,0): 71, 52, 38, (466,96,0): 73, 54, 40, (466,97,0): 73, 54, 40, (466,98,0): 72, 53, 39, (466,99,0): 71, 52, 38, (466,100,0): 70, 51, 37, (466,101,0): 69, 50, 36, (466,102,0): 68, 49, 35, (466,103,0): 68, 49, 35, (466,104,0): 65, 46, 32, (466,105,0): 64, 45, 31, (466,106,0): 62, 43, 29, (466,107,0): 61, 42, 28, (466,108,0): 59, 40, 26, (466,109,0): 59, 40, 26, (466,110,0): 59, 40, 26, (466,111,0): 60, 41, 27, (466,112,0): 57, 37, 28, (466,113,0): 57, 37, 28, (466,114,0): 58, 38, 29, (466,115,0): 58, 38, 29, (466,116,0): 59, 39, 30, (466,117,0): 59, 39, 30, (466,118,0): 59, 39, 30, (466,119,0): 59, 39, 30, (466,120,0): 58, 38, 29, (466,121,0): 58, 38, 29, (466,122,0): 58, 38, 29, (466,123,0): 59, 39, 30, (466,124,0): 59, 39, 30, (466,125,0): 60, 40, 31, (466,126,0): 60, 40, 31, (466,127,0): 60, 40, 31, (466,128,0): 60, 41, 35, (466,129,0): 60, 41, 35, (466,130,0): 60, 41, 35, (466,131,0): 60, 41, 35, (466,132,0): 60, 41, 35, (466,133,0): 60, 41, 35, (466,134,0): 60, 41, 35, (466,135,0): 60, 41, 35, (466,136,0): 56, 37, 31, (466,137,0): 56, 37, 31, (466,138,0): 55, 36, 30, (466,139,0): 55, 36, 30, (466,140,0): 56, 37, 31, (466,141,0): 57, 38, 32, (466,142,0): 58, 39, 33, (466,143,0): 58, 41, 34, (466,144,0): 57, 39, 35, (466,145,0): 56, 41, 36, (466,146,0): 56, 41, 36, (466,147,0): 57, 42, 37, (466,148,0): 58, 43, 38, (466,149,0): 59, 44, 39, (466,150,0): 60, 45, 40, (466,151,0): 60, 45, 40, (466,152,0): 61, 46, 41, (466,153,0): 62, 47, 42, (466,154,0): 62, 47, 42, (466,155,0): 63, 48, 43, (466,156,0): 64, 49, 44, (466,157,0): 65, 50, 45, (466,158,0): 66, 51, 46, (466,159,0): 66, 51, 46, (466,160,0): 69, 56, 50, (466,161,0): 69, 56, 50, (466,162,0): 69, 56, 50, (466,163,0): 70, 57, 51, (466,164,0): 70, 57, 51, (466,165,0): 71, 58, 52, (466,166,0): 71, 58, 52, (466,167,0): 72, 59, 53, (466,168,0): 67, 54, 48, (466,169,0): 67, 54, 48, (466,170,0): 68, 55, 49, (466,171,0): 69, 56, 50, (466,172,0): 70, 57, 51, (466,173,0): 71, 58, 52, (466,174,0): 72, 59, 53, (466,175,0): 70, 59, 53, (466,176,0): 70, 59, 57, (466,177,0): 69, 59, 57, (466,178,0): 70, 60, 58, (466,179,0): 71, 61, 59, (466,180,0): 72, 62, 60, (466,181,0): 73, 63, 61, (466,182,0): 74, 64, 62, (466,183,0): 74, 64, 62, (466,184,0): 78, 68, 66, (466,185,0): 78, 68, 66, (466,186,0): 78, 68, 66, (466,187,0): 79, 69, 67, (466,188,0): 79, 69, 67, (466,189,0): 80, 70, 68, (466,190,0): 80, 70, 68, (466,191,0): 81, 71, 69, (466,192,0): 83, 69, 69, (466,193,0): 82, 68, 68, (466,194,0): 82, 68, 68, (466,195,0): 81, 67, 67, (466,196,0): 81, 67, 67, (466,197,0): 80, 66, 66, (466,198,0): 80, 66, 66, (466,199,0): 80, 66, 66, (466,200,0): 77, 63, 63, (466,201,0): 77, 63, 63, (466,202,0): 76, 62, 62, (466,203,0): 75, 61, 61, (466,204,0): 74, 60, 60, (466,205,0): 73, 59, 59, (466,206,0): 72, 58, 58, (466,207,0): 72, 58, 58, (466,208,0): 71, 57, 57, (466,209,0): 71, 57, 57, (466,210,0): 71, 57, 57, (466,211,0): 71, 57, 57, (466,212,0): 71, 57, 57, (466,213,0): 71, 57, 57, (466,214,0): 71, 57, 57, (466,215,0): 71, 57, 57, (466,216,0): 74, 60, 60, (466,217,0): 74, 60, 60, (466,218,0): 74, 60, 60, (466,219,0): 75, 61, 61, (466,220,0): 75, 61, 61, (466,221,0): 76, 62, 62, (466,222,0): 76, 62, 62, (466,223,0): 77, 63, 63, (466,224,0): 81, 62, 64, (466,225,0): 82, 63, 65, (466,226,0): 84, 64, 66, (466,227,0): 86, 66, 68, (466,228,0): 90, 68, 71, (466,229,0): 91, 69, 72, (466,230,0): 95, 70, 74, (466,231,0): 97, 70, 75, (466,232,0): 103, 74, 79, (466,233,0): 105, 76, 81, (466,234,0): 108, 77, 83, (466,235,0): 110, 79, 85, (466,236,0): 116, 83, 90, (466,237,0): 124, 91, 98, (466,238,0): 136, 101, 108, (466,239,0): 149, 107, 111, (466,240,0): 169, 111, 110, (466,241,0): 175, 110, 108, (466,242,0): 177, 112, 110, (466,243,0): 178, 113, 111, (466,244,0): 176, 112, 112, (466,245,0): 171, 111, 110, (466,246,0): 164, 111, 107, (466,247,0): 158, 111, 105, (466,248,0): 157, 114, 107, (466,249,0): 154, 116, 107, (466,250,0): 153, 116, 107, (466,251,0): 155, 118, 109, (466,252,0): 158, 120, 109, (466,253,0): 163, 123, 113, (466,254,0): 168, 124, 115, (466,255,0): 172, 125, 117, (466,256,0): 178, 131, 121, (466,257,0): 180, 133, 123, (466,258,0): 182, 135, 125, (466,259,0): 184, 137, 127, (466,260,0): 186, 139, 129, (466,261,0): 187, 140, 132, (466,262,0): 188, 141, 135, (466,263,0): 185, 141, 138, (466,264,0): 182, 141, 139, (466,265,0): 183, 144, 145, (466,266,0): 185, 149, 153, (466,267,0): 186, 153, 160, (466,268,0): 190, 160, 170, (466,269,0): 197, 171, 184, (466,270,0): 209, 182, 199, (466,271,0): 213, 192, 211, (466,272,0): 227, 209, 235, (466,273,0): 230, 217, 243, (466,274,0): 236, 226, 253, (466,275,0): 236, 230, 255, (466,276,0): 232, 229, 255, (466,277,0): 227, 228, 255, (466,278,0): 225, 229, 255, (466,279,0): 226, 231, 255, (466,280,0): 220, 225, 255, (466,281,0): 221, 226, 255, (466,282,0): 223, 223, 255, (466,283,0): 223, 218, 255, (466,284,0): 218, 209, 252, (466,285,0): 211, 198, 244, (466,286,0): 203, 187, 234, (466,287,0): 198, 181, 226, (466,288,0): 189, 173, 212, (466,289,0): 186, 170, 207, (466,290,0): 181, 165, 201, (466,291,0): 177, 160, 194, (466,292,0): 176, 157, 189, (466,293,0): 175, 154, 185, (466,294,0): 176, 153, 181, (466,295,0): 177, 153, 177, (466,296,0): 169, 144, 166, (466,297,0): 172, 145, 164, (466,298,0): 170, 141, 159, (466,299,0): 169, 138, 153, (466,300,0): 174, 142, 155, (466,301,0): 182, 150, 161, (466,302,0): 183, 150, 159, (466,303,0): 180, 144, 156, (466,304,0): 140, 99, 115, (466,305,0): 103, 62, 78, (466,306,0): 74, 40, 56, (466,307,0): 65, 37, 49, (466,308,0): 55, 33, 45, (466,309,0): 49, 32, 40, (466,310,0): 51, 36, 43, (466,311,0): 47, 34, 41, (466,312,0): 47, 34, 43, (466,313,0): 43, 30, 39, (466,314,0): 39, 26, 35, (466,315,0): 37, 26, 34, (466,316,0): 37, 27, 35, (466,317,0): 35, 30, 36, (466,318,0): 31, 29, 34, (466,319,0): 29, 27, 32, (466,320,0): 31, 21, 30, (466,321,0): 32, 20, 30, (466,322,0): 32, 20, 30, (466,323,0): 31, 19, 29, (466,324,0): 29, 19, 30, (466,325,0): 29, 19, 30, (466,326,0): 28, 18, 29, (466,327,0): 28, 18, 29, (466,328,0): 23, 15, 28, (466,329,0): 23, 15, 28, (466,330,0): 22, 16, 30, (466,331,0): 21, 15, 29, (466,332,0): 21, 15, 29, (466,333,0): 20, 14, 28, (466,334,0): 18, 14, 29, (466,335,0): 18, 14, 29, (466,336,0): 21, 14, 30, (466,337,0): 21, 14, 30, (466,338,0): 21, 14, 30, (466,339,0): 20, 13, 29, (466,340,0): 20, 13, 29, (466,341,0): 19, 12, 28, (466,342,0): 19, 12, 28, (466,343,0): 19, 12, 28, (466,344,0): 19, 12, 28, (466,345,0): 19, 12, 28, (466,346,0): 19, 12, 28, (466,347,0): 19, 12, 28, (466,348,0): 19, 12, 28, (466,349,0): 19, 12, 28, (466,350,0): 19, 12, 28, (466,351,0): 19, 12, 28, (466,352,0): 23, 12, 29, (466,353,0): 24, 13, 30, (466,354,0): 22, 13, 30, (466,355,0): 23, 14, 31, (466,356,0): 22, 13, 30, (466,357,0): 21, 12, 29, (466,358,0): 18, 11, 27, (466,359,0): 17, 10, 26, (466,360,0): 18, 14, 29, (466,361,0): 18, 14, 29, (466,362,0): 18, 14, 29, (466,363,0): 18, 14, 29, (466,364,0): 17, 15, 29, (466,365,0): 17, 15, 29, (466,366,0): 17, 15, 29, (466,367,0): 17, 15, 28, (466,368,0): 18, 14, 28, (466,369,0): 20, 14, 26, (466,370,0): 19, 13, 25, (466,371,0): 20, 14, 26, (466,372,0): 22, 14, 25, (466,373,0): 23, 15, 26, (466,374,0): 25, 17, 28, (466,375,0): 29, 19, 30, (466,376,0): 26, 16, 25, (466,377,0): 27, 17, 26, (466,378,0): 28, 17, 25, (466,379,0): 29, 18, 26, (466,380,0): 30, 19, 27, (466,381,0): 32, 19, 28, (466,382,0): 32, 19, 26, (466,383,0): 33, 20, 29, (466,384,0): 32, 18, 33, (466,385,0): 32, 18, 35, (466,386,0): 34, 17, 35, (466,387,0): 34, 17, 35, (466,388,0): 34, 17, 33, (466,389,0): 34, 18, 31, (466,390,0): 35, 17, 29, (466,391,0): 35, 18, 28, (466,392,0): 39, 19, 30, (466,393,0): 40, 21, 27, (466,394,0): 41, 22, 28, (466,395,0): 43, 24, 28, (466,396,0): 45, 25, 27, (466,397,0): 45, 25, 26, (466,398,0): 46, 26, 27, (466,399,0): 45, 25, 26, (466,400,0): 50, 28, 31, (466,401,0): 50, 28, 31, (466,402,0): 51, 29, 32, (466,403,0): 51, 29, 32, (466,404,0): 52, 30, 33, (466,405,0): 52, 30, 33, (466,406,0): 53, 31, 34, (466,407,0): 53, 31, 34, (466,408,0): 57, 35, 38, (466,409,0): 56, 34, 37, (466,410,0): 55, 33, 36, (466,411,0): 54, 32, 35, (466,412,0): 54, 32, 35, (466,413,0): 55, 33, 36, (466,414,0): 56, 34, 37, (466,415,0): 57, 35, 38, (466,416,0): 55, 35, 36, (466,417,0): 54, 36, 36, (466,418,0): 55, 35, 37, (466,419,0): 56, 36, 38, (466,420,0): 57, 36, 41, (466,421,0): 60, 39, 44, (466,422,0): 63, 40, 50, (466,423,0): 64, 41, 51, (466,424,0): 75, 48, 63, (466,425,0): 77, 50, 65, (466,426,0): 80, 53, 70, (466,427,0): 82, 55, 74, (466,428,0): 84, 55, 77, (466,429,0): 84, 55, 77, (466,430,0): 82, 53, 75, (466,431,0): 80, 52, 74, (466,432,0): 77, 54, 72, (466,433,0): 76, 55, 70, (466,434,0): 76, 54, 67, (466,435,0): 75, 53, 66, (466,436,0): 73, 51, 64, (466,437,0): 72, 50, 63, (466,438,0): 72, 48, 61, (466,439,0): 71, 47, 60, (466,440,0): 73, 47, 58, (466,441,0): 74, 48, 59, (466,442,0): 75, 49, 60, (466,443,0): 75, 49, 60, (466,444,0): 74, 47, 56, (466,445,0): 71, 44, 53, (466,446,0): 68, 41, 50, (466,447,0): 66, 39, 48, (466,448,0): 71, 39, 50, (466,449,0): 72, 40, 51, (466,450,0): 73, 43, 55, (466,451,0): 73, 45, 57, (466,452,0): 75, 47, 62, (466,453,0): 73, 49, 63, (466,454,0): 73, 49, 65, (466,455,0): 71, 48, 64, (466,456,0): 71, 50, 65, (466,457,0): 70, 49, 64, (466,458,0): 67, 47, 59, (466,459,0): 64, 44, 55, (466,460,0): 63, 39, 52, (466,461,0): 59, 36, 46, (466,462,0): 59, 33, 42, (466,463,0): 56, 33, 39, (466,464,0): 55, 34, 39, (466,465,0): 54, 35, 37, (466,466,0): 55, 35, 37, (466,467,0): 55, 35, 37, (466,468,0): 56, 36, 38, (466,469,0): 56, 36, 38, (466,470,0): 57, 35, 38, (466,471,0): 57, 35, 38, (466,472,0): 59, 34, 38, (466,473,0): 58, 33, 37, (466,474,0): 56, 31, 35, (466,475,0): 52, 27, 31, (466,476,0): 50, 23, 28, (466,477,0): 46, 19, 24, (466,478,0): 44, 17, 22, (466,479,0): 42, 15, 20, (466,480,0): 42, 13, 17, (466,481,0): 44, 13, 18, (466,482,0): 48, 16, 21, (466,483,0): 55, 16, 21, (466,484,0): 64, 14, 23, (466,485,0): 74, 12, 23, (466,486,0): 81, 9, 21, (466,487,0): 88, 7, 22, (466,488,0): 90, 10, 23, (466,489,0): 82, 5, 15, (466,490,0): 82, 9, 16, (466,491,0): 86, 15, 21, (466,492,0): 87, 16, 20, (466,493,0): 96, 21, 26, (466,494,0): 105, 24, 31, (466,495,0): 103, 17, 26, (466,496,0): 108, 24, 37, (466,497,0): 111, 25, 38, (466,498,0): 111, 21, 31, (466,499,0): 116, 19, 30, (466,500,0): 142, 27, 40, (466,501,0): 172, 46, 60, (466,502,0): 180, 43, 59, (466,503,0): 167, 26, 43, (466,504,0): 156, 19, 37, (466,505,0): 164, 27, 47, (466,506,0): 179, 39, 65, (466,507,0): 195, 47, 79, (466,508,0): 203, 42, 83, (466,509,0): 205, 35, 82, (466,510,0): 213, 34, 89, (466,511,0): 223, 41, 100, (466,512,0): 207, 24, 90, (466,513,0): 221, 32, 100, (466,514,0): 239, 40, 107, (466,515,0): 247, 42, 109, (466,516,0): 248, 38, 109, (466,517,0): 246, 38, 116, (466,518,0): 247, 42, 133, (466,519,0): 249, 49, 156, (466,520,0): 244, 51, 176, (466,521,0): 246, 64, 198, (466,522,0): 244, 76, 211, (466,523,0): 251, 105, 229, (466,524,0): 255, 148, 246, (466,525,0): 243, 160, 232, (466,526,0): 238, 186, 232, (466,527,0): 250, 220, 244, (466,528,0): 255, 243, 255, (466,529,0): 255, 250, 255, (466,530,0): 255, 252, 251, (466,531,0): 255, 250, 253, (466,532,0): 255, 233, 248, (466,533,0): 255, 217, 253, (466,534,0): 255, 188, 255, (466,535,0): 250, 154, 252, (466,536,0): 241, 126, 247, (466,537,0): 255, 129, 255, (466,538,0): 255, 125, 254, (466,539,0): 249, 107, 227, (466,540,0): 243, 96, 200, (466,541,0): 250, 95, 186, (466,542,0): 250, 87, 166, (466,543,0): 241, 75, 139, (466,544,0): 248, 80, 129, (466,545,0): 249, 83, 123, (466,546,0): 234, 70, 107, (466,547,0): 221, 59, 96, (466,548,0): 230, 68, 105, (466,549,0): 223, 73, 108, (466,550,0): 197, 68, 98, (466,551,0): 178, 64, 89, (466,552,0): 188, 80, 103, (466,553,0): 171, 68, 87, (466,554,0): 164, 61, 78, (466,555,0): 166, 69, 80, (466,556,0): 162, 75, 81, (466,557,0): 161, 72, 74, (466,558,0): 176, 69, 77, (466,559,0): 182, 78, 89, (466,560,0): 150, 70, 83, (466,561,0): 128, 66, 77, (466,562,0): 122, 69, 77, (466,563,0): 116, 71, 76, (466,564,0): 102, 63, 66, (466,565,0): 100, 64, 66, (466,566,0): 106, 65, 69, (466,567,0): 99, 58, 62, (466,568,0): 96, 54, 58, (466,569,0): 98, 57, 61, (466,570,0): 99, 63, 65, (466,571,0): 100, 68, 69, (466,572,0): 102, 72, 72, (466,573,0): 103, 73, 73, (466,574,0): 103, 71, 72, (466,575,0): 105, 70, 74, (466,576,0): 104, 69, 75, (466,577,0): 106, 71, 78, (466,578,0): 106, 73, 80, (466,579,0): 107, 74, 81, (466,580,0): 105, 72, 79, (466,581,0): 100, 67, 74, (466,582,0): 93, 62, 68, (466,583,0): 89, 58, 64, (466,584,0): 91, 62, 67, (466,585,0): 90, 61, 66, (466,586,0): 89, 60, 65, (466,587,0): 87, 58, 63, (466,588,0): 82, 55, 60, (466,589,0): 78, 51, 56, (466,590,0): 74, 47, 52, (466,591,0): 72, 45, 50, (466,592,0): 70, 39, 45, (466,593,0): 66, 35, 41, (466,594,0): 60, 31, 36, (466,595,0): 55, 28, 33, (466,596,0): 54, 27, 32, (466,597,0): 52, 27, 31, (466,598,0): 47, 25, 28, (466,599,0): 44, 22, 25, (467,0,0): 56, 72, 62, (467,1,0): 57, 73, 63, (467,2,0): 61, 74, 65, (467,3,0): 62, 75, 66, (467,4,0): 63, 76, 67, (467,5,0): 63, 76, 67, (467,6,0): 63, 74, 66, (467,7,0): 63, 74, 66, (467,8,0): 61, 71, 63, (467,9,0): 61, 71, 63, (467,10,0): 61, 71, 63, (467,11,0): 61, 71, 63, (467,12,0): 63, 70, 63, (467,13,0): 63, 70, 63, (467,14,0): 63, 70, 63, (467,15,0): 63, 70, 63, (467,16,0): 62, 72, 64, (467,17,0): 61, 71, 63, (467,18,0): 62, 69, 62, (467,19,0): 61, 68, 61, (467,20,0): 62, 69, 62, (467,21,0): 62, 69, 62, (467,22,0): 65, 70, 64, (467,23,0): 66, 71, 65, (467,24,0): 68, 70, 65, (467,25,0): 68, 70, 65, (467,26,0): 68, 70, 65, (467,27,0): 69, 71, 66, (467,28,0): 70, 71, 66, (467,29,0): 71, 72, 67, (467,30,0): 71, 72, 67, (467,31,0): 71, 72, 67, (467,32,0): 73, 72, 67, (467,33,0): 73, 72, 67, (467,34,0): 75, 72, 67, (467,35,0): 75, 72, 67, (467,36,0): 75, 72, 65, (467,37,0): 75, 72, 65, (467,38,0): 76, 71, 65, (467,39,0): 76, 71, 65, (467,40,0): 79, 72, 64, (467,41,0): 79, 72, 64, (467,42,0): 79, 72, 62, (467,43,0): 79, 72, 62, (467,44,0): 80, 71, 62, (467,45,0): 80, 71, 62, (467,46,0): 80, 72, 61, (467,47,0): 80, 72, 61, (467,48,0): 80, 71, 62, (467,49,0): 80, 71, 62, (467,50,0): 80, 71, 62, (467,51,0): 80, 71, 62, (467,52,0): 80, 71, 62, (467,53,0): 80, 71, 62, (467,54,0): 81, 71, 62, (467,55,0): 81, 71, 62, (467,56,0): 81, 68, 60, (467,57,0): 80, 67, 59, (467,58,0): 81, 66, 59, (467,59,0): 80, 65, 58, (467,60,0): 78, 63, 56, (467,61,0): 77, 62, 55, (467,62,0): 77, 62, 55, (467,63,0): 76, 62, 53, (467,64,0): 79, 61, 49, (467,65,0): 77, 59, 45, (467,66,0): 76, 58, 44, (467,67,0): 74, 56, 42, (467,68,0): 73, 55, 41, (467,69,0): 72, 54, 40, (467,70,0): 73, 55, 41, (467,71,0): 73, 55, 41, (467,72,0): 73, 55, 41, (467,73,0): 73, 55, 41, (467,74,0): 72, 54, 40, (467,75,0): 72, 54, 40, (467,76,0): 71, 53, 39, (467,77,0): 71, 53, 39, (467,78,0): 70, 52, 38, (467,79,0): 70, 52, 38, (467,80,0): 67, 48, 34, (467,81,0): 67, 48, 34, (467,82,0): 67, 48, 34, (467,83,0): 67, 48, 34, (467,84,0): 67, 48, 34, (467,85,0): 67, 48, 34, (467,86,0): 67, 48, 34, (467,87,0): 67, 48, 34, (467,88,0): 67, 48, 34, (467,89,0): 66, 47, 33, (467,90,0): 65, 46, 32, (467,91,0): 65, 46, 32, (467,92,0): 65, 46, 32, (467,93,0): 66, 47, 33, (467,94,0): 67, 48, 34, (467,95,0): 68, 49, 35, (467,96,0): 70, 51, 37, (467,97,0): 69, 50, 36, (467,98,0): 69, 50, 36, (467,99,0): 68, 49, 35, (467,100,0): 67, 48, 34, (467,101,0): 67, 48, 34, (467,102,0): 66, 47, 33, (467,103,0): 66, 47, 33, (467,104,0): 65, 46, 32, (467,105,0): 64, 45, 31, (467,106,0): 62, 43, 29, (467,107,0): 60, 41, 27, (467,108,0): 59, 40, 26, (467,109,0): 59, 40, 26, (467,110,0): 59, 40, 26, (467,111,0): 59, 40, 26, (467,112,0): 57, 37, 28, (467,113,0): 57, 37, 28, (467,114,0): 58, 38, 29, (467,115,0): 58, 38, 29, (467,116,0): 58, 38, 29, (467,117,0): 58, 38, 29, (467,118,0): 58, 38, 29, (467,119,0): 58, 38, 29, (467,120,0): 57, 37, 28, (467,121,0): 57, 37, 28, (467,122,0): 57, 37, 28, (467,123,0): 58, 38, 29, (467,124,0): 58, 38, 29, (467,125,0): 59, 39, 30, (467,126,0): 59, 39, 30, (467,127,0): 59, 39, 30, (467,128,0): 60, 41, 35, (467,129,0): 60, 41, 35, (467,130,0): 60, 41, 35, (467,131,0): 60, 41, 35, (467,132,0): 60, 41, 35, (467,133,0): 60, 41, 35, (467,134,0): 60, 41, 35, (467,135,0): 60, 41, 35, (467,136,0): 56, 37, 31, (467,137,0): 56, 37, 31, (467,138,0): 56, 37, 31, (467,139,0): 56, 37, 31, (467,140,0): 57, 38, 32, (467,141,0): 58, 39, 33, (467,142,0): 58, 39, 33, (467,143,0): 58, 41, 34, (467,144,0): 57, 39, 35, (467,145,0): 55, 40, 35, (467,146,0): 55, 40, 35, (467,147,0): 56, 41, 36, (467,148,0): 57, 42, 37, (467,149,0): 57, 42, 37, (467,150,0): 58, 43, 38, (467,151,0): 58, 43, 38, (467,152,0): 60, 45, 40, (467,153,0): 60, 45, 40, (467,154,0): 60, 45, 40, (467,155,0): 61, 46, 41, (467,156,0): 62, 47, 42, (467,157,0): 62, 47, 42, (467,158,0): 63, 48, 43, (467,159,0): 63, 48, 43, (467,160,0): 65, 52, 46, (467,161,0): 65, 52, 46, (467,162,0): 66, 53, 47, (467,163,0): 66, 53, 47, (467,164,0): 67, 54, 48, (467,165,0): 67, 54, 48, (467,166,0): 68, 55, 49, (467,167,0): 68, 55, 49, (467,168,0): 65, 52, 46, (467,169,0): 65, 52, 46, (467,170,0): 66, 53, 47, (467,171,0): 67, 54, 48, (467,172,0): 68, 55, 49, (467,173,0): 69, 56, 50, (467,174,0): 70, 57, 51, (467,175,0): 68, 57, 51, (467,176,0): 67, 56, 54, (467,177,0): 66, 56, 54, (467,178,0): 67, 57, 55, (467,179,0): 68, 58, 56, (467,180,0): 69, 59, 57, (467,181,0): 70, 60, 58, (467,182,0): 71, 61, 59, (467,183,0): 72, 62, 60, (467,184,0): 74, 64, 62, (467,185,0): 74, 64, 62, (467,186,0): 75, 65, 63, (467,187,0): 75, 65, 63, (467,188,0): 76, 66, 64, (467,189,0): 76, 66, 64, (467,190,0): 77, 67, 65, (467,191,0): 77, 67, 65, (467,192,0): 78, 66, 66, (467,193,0): 79, 65, 65, (467,194,0): 79, 65, 65, (467,195,0): 78, 64, 64, (467,196,0): 78, 64, 64, (467,197,0): 77, 63, 63, (467,198,0): 77, 63, 63, (467,199,0): 77, 63, 63, (467,200,0): 76, 62, 62, (467,201,0): 75, 61, 61, (467,202,0): 74, 60, 60, (467,203,0): 73, 59, 59, (467,204,0): 72, 58, 58, (467,205,0): 71, 57, 57, (467,206,0): 70, 56, 56, (467,207,0): 70, 56, 56, (467,208,0): 69, 55, 55, (467,209,0): 69, 55, 55, (467,210,0): 69, 55, 55, (467,211,0): 69, 55, 55, (467,212,0): 69, 55, 55, (467,213,0): 69, 55, 55, (467,214,0): 69, 55, 55, (467,215,0): 69, 55, 55, (467,216,0): 72, 58, 58, (467,217,0): 72, 58, 58, (467,218,0): 72, 58, 58, (467,219,0): 73, 59, 59, (467,220,0): 73, 59, 59, (467,221,0): 74, 60, 60, (467,222,0): 74, 60, 60, (467,223,0): 74, 60, 60, (467,224,0): 77, 61, 62, (467,225,0): 80, 61, 63, (467,226,0): 82, 62, 64, (467,227,0): 84, 64, 66, (467,228,0): 87, 65, 68, (467,229,0): 88, 66, 69, (467,230,0): 92, 67, 71, (467,231,0): 92, 67, 71, (467,232,0): 98, 71, 76, (467,233,0): 102, 73, 78, (467,234,0): 105, 74, 80, (467,235,0): 106, 75, 81, (467,236,0): 110, 77, 84, (467,237,0): 117, 84, 91, (467,238,0): 128, 93, 100, (467,239,0): 139, 98, 104, (467,240,0): 155, 101, 101, (467,241,0): 163, 102, 99, (467,242,0): 168, 104, 104, (467,243,0): 171, 107, 107, (467,244,0): 168, 107, 106, (467,245,0): 162, 104, 102, (467,246,0): 152, 101, 97, (467,247,0): 145, 100, 94, (467,248,0): 144, 104, 96, (467,249,0): 143, 106, 97, (467,250,0): 141, 107, 97, (467,251,0): 143, 109, 99, (467,252,0): 148, 111, 102, (467,253,0): 152, 114, 103, (467,254,0): 158, 115, 108, (467,255,0): 161, 116, 110, (467,256,0): 166, 121, 115, (467,257,0): 169, 124, 118, (467,258,0): 174, 127, 121, (467,259,0): 177, 130, 124, (467,260,0): 179, 132, 126, (467,261,0): 176, 131, 125, (467,262,0): 175, 130, 125, (467,263,0): 172, 128, 125, (467,264,0): 174, 133, 131, (467,265,0): 172, 133, 134, (467,266,0): 170, 134, 138, (467,267,0): 166, 133, 140, (467,268,0): 164, 134, 144, (467,269,0): 166, 140, 151, (467,270,0): 174, 147, 162, (467,271,0): 177, 154, 172, (467,272,0): 182, 162, 187, (467,273,0): 189, 173, 199, (467,274,0): 200, 186, 211, (467,275,0): 204, 194, 219, (467,276,0): 202, 196, 222, (467,277,0): 202, 198, 223, (467,278,0): 205, 205, 233, (467,279,0): 209, 210, 238, (467,280,0): 210, 209, 240, (467,281,0): 211, 210, 241, (467,282,0): 214, 208, 244, (467,283,0): 211, 203, 240, (467,284,0): 204, 192, 232, (467,285,0): 192, 175, 219, (467,286,0): 178, 159, 204, (467,287,0): 170, 149, 190, (467,288,0): 165, 146, 178, (467,289,0): 164, 145, 173, (467,290,0): 162, 143, 171, (467,291,0): 162, 144, 170, (467,292,0): 166, 143, 169, (467,293,0): 168, 146, 169, (467,294,0): 173, 148, 170, (467,295,0): 175, 150, 169, (467,296,0): 166, 138, 153, (467,297,0): 170, 139, 154, (467,298,0): 168, 136, 149, (467,299,0): 163, 130, 141, (467,300,0): 166, 130, 140, (467,301,0): 175, 140, 147, (467,302,0): 181, 144, 152, (467,303,0): 182, 142, 151, (467,304,0): 147, 105, 117, (467,305,0): 106, 65, 79, (467,306,0): 77, 41, 53, (467,307,0): 68, 38, 48, (467,308,0): 58, 35, 43, (467,309,0): 54, 34, 43, (467,310,0): 53, 38, 45, (467,311,0): 47, 34, 41, (467,312,0): 45, 32, 41, (467,313,0): 42, 29, 38, (467,314,0): 38, 25, 34, (467,315,0): 36, 25, 33, (467,316,0): 37, 27, 35, (467,317,0): 35, 28, 35, (467,318,0): 31, 29, 34, (467,319,0): 31, 26, 33, (467,320,0): 32, 22, 31, (467,321,0): 32, 20, 30, (467,322,0): 32, 20, 30, (467,323,0): 31, 19, 29, (467,324,0): 29, 19, 30, (467,325,0): 28, 18, 29, (467,326,0): 27, 17, 28, (467,327,0): 27, 17, 28, (467,328,0): 23, 15, 28, (467,329,0): 22, 14, 27, (467,330,0): 21, 15, 29, (467,331,0): 20, 14, 28, (467,332,0): 20, 14, 28, (467,333,0): 19, 13, 27, (467,334,0): 17, 13, 28, (467,335,0): 17, 13, 28, (467,336,0): 21, 14, 30, (467,337,0): 21, 14, 30, (467,338,0): 21, 14, 30, (467,339,0): 20, 13, 29, (467,340,0): 20, 13, 29, (467,341,0): 19, 12, 28, (467,342,0): 19, 12, 28, (467,343,0): 19, 12, 28, (467,344,0): 19, 12, 28, (467,345,0): 19, 12, 28, (467,346,0): 19, 12, 28, (467,347,0): 19, 12, 28, (467,348,0): 19, 12, 28, (467,349,0): 19, 12, 28, (467,350,0): 19, 12, 28, (467,351,0): 19, 12, 28, (467,352,0): 23, 12, 29, (467,353,0): 24, 13, 30, (467,354,0): 22, 13, 30, (467,355,0): 23, 14, 31, (467,356,0): 22, 13, 30, (467,357,0): 21, 12, 29, (467,358,0): 18, 11, 27, (467,359,0): 17, 10, 26, (467,360,0): 18, 14, 29, (467,361,0): 18, 14, 29, (467,362,0): 18, 14, 29, (467,363,0): 18, 14, 29, (467,364,0): 17, 15, 29, (467,365,0): 17, 15, 29, (467,366,0): 17, 15, 29, (467,367,0): 18, 14, 28, (467,368,0): 21, 15, 29, (467,369,0): 21, 15, 27, (467,370,0): 21, 13, 26, (467,371,0): 22, 14, 27, (467,372,0): 23, 15, 26, (467,373,0): 26, 16, 27, (467,374,0): 28, 18, 29, (467,375,0): 30, 20, 31, (467,376,0): 24, 14, 23, (467,377,0): 26, 14, 24, (467,378,0): 27, 16, 24, (467,379,0): 29, 16, 25, (467,380,0): 30, 17, 26, (467,381,0): 32, 19, 28, (467,382,0): 33, 20, 27, (467,383,0): 33, 20, 29, (467,384,0): 32, 18, 33, (467,385,0): 32, 18, 35, (467,386,0): 34, 17, 35, (467,387,0): 34, 17, 33, (467,388,0): 34, 18, 31, (467,389,0): 34, 18, 31, (467,390,0): 35, 17, 29, (467,391,0): 35, 18, 28, (467,392,0): 38, 18, 27, (467,393,0): 40, 21, 27, (467,394,0): 43, 24, 30, (467,395,0): 45, 26, 30, (467,396,0): 47, 27, 29, (467,397,0): 47, 27, 29, (467,398,0): 46, 26, 27, (467,399,0): 45, 25, 26, (467,400,0): 49, 27, 30, (467,401,0): 49, 27, 30, (467,402,0): 50, 28, 31, (467,403,0): 50, 28, 31, (467,404,0): 51, 29, 32, (467,405,0): 51, 29, 32, (467,406,0): 52, 30, 33, (467,407,0): 52, 30, 33, (467,408,0): 55, 33, 36, (467,409,0): 54, 32, 35, (467,410,0): 53, 31, 34, (467,411,0): 53, 31, 34, (467,412,0): 53, 31, 34, (467,413,0): 53, 31, 34, (467,414,0): 54, 32, 35, (467,415,0): 54, 34, 36, (467,416,0): 55, 35, 36, (467,417,0): 54, 36, 36, (467,418,0): 54, 34, 36, (467,419,0): 54, 34, 36, (467,420,0): 54, 33, 38, (467,421,0): 56, 35, 40, (467,422,0): 58, 35, 43, (467,423,0): 59, 36, 46, (467,424,0): 68, 42, 55, (467,425,0): 71, 44, 59, (467,426,0): 74, 47, 64, (467,427,0): 78, 51, 68, (467,428,0): 81, 52, 72, (467,429,0): 82, 53, 75, (467,430,0): 81, 52, 74, (467,431,0): 79, 52, 71, (467,432,0): 76, 53, 69, (467,433,0): 75, 54, 69, (467,434,0): 76, 54, 67, (467,435,0): 75, 53, 66, (467,436,0): 73, 51, 64, (467,437,0): 71, 49, 61, (467,438,0): 71, 47, 60, (467,439,0): 70, 46, 59, (467,440,0): 70, 44, 55, (467,441,0): 72, 46, 57, (467,442,0): 74, 48, 59, (467,443,0): 75, 49, 58, (467,444,0): 74, 47, 56, (467,445,0): 71, 44, 53, (467,446,0): 67, 40, 49, (467,447,0): 67, 37, 47, (467,448,0): 69, 37, 48, (467,449,0): 70, 38, 49, (467,450,0): 71, 41, 53, (467,451,0): 71, 43, 55, (467,452,0): 72, 44, 58, (467,453,0): 70, 46, 60, (467,454,0): 70, 46, 62, (467,455,0): 68, 45, 61, (467,456,0): 69, 48, 63, (467,457,0): 68, 48, 60, (467,458,0): 66, 46, 58, (467,459,0): 62, 42, 53, (467,460,0): 61, 38, 48, (467,461,0): 58, 35, 43, (467,462,0): 58, 32, 41, (467,463,0): 54, 31, 37, (467,464,0): 54, 34, 36, (467,465,0): 54, 35, 37, (467,466,0): 55, 35, 37, (467,467,0): 56, 36, 38, (467,468,0): 57, 37, 39, (467,469,0): 57, 37, 39, (467,470,0): 59, 37, 40, (467,471,0): 59, 37, 40, (467,472,0): 60, 35, 39, (467,473,0): 59, 34, 38, (467,474,0): 57, 32, 36, (467,475,0): 54, 29, 33, (467,476,0): 51, 24, 29, (467,477,0): 47, 20, 25, (467,478,0): 44, 17, 22, (467,479,0): 42, 15, 20, (467,480,0): 31, 5, 8, (467,481,0): 36, 7, 11, (467,482,0): 42, 11, 16, (467,483,0): 51, 14, 21, (467,484,0): 61, 16, 23, (467,485,0): 71, 15, 26, (467,486,0): 80, 12, 25, (467,487,0): 84, 12, 24, (467,488,0): 89, 16, 27, (467,489,0): 83, 11, 22, (467,490,0): 77, 12, 18, (467,491,0): 77, 15, 18, (467,492,0): 81, 19, 22, (467,493,0): 90, 24, 26, (467,494,0): 101, 26, 31, (467,495,0): 102, 25, 33, (467,496,0): 105, 25, 38, (467,497,0): 110, 28, 42, (467,498,0): 112, 28, 41, (467,499,0): 114, 22, 33, (467,500,0): 130, 24, 38, (467,501,0): 161, 43, 57, (467,502,0): 178, 47, 63, (467,503,0): 166, 31, 48, (467,504,0): 158, 25, 42, (467,505,0): 155, 22, 41, (467,506,0): 162, 28, 52, (467,507,0): 177, 37, 64, (467,508,0): 186, 32, 68, (467,509,0): 183, 20, 63, (467,510,0): 196, 24, 72, (467,511,0): 218, 37, 92, (467,512,0): 207, 22, 80, (467,513,0): 220, 26, 87, (467,514,0): 235, 32, 95, (467,515,0): 246, 37, 102, (467,516,0): 251, 41, 106, (467,517,0): 252, 45, 115, (467,518,0): 252, 49, 130, (467,519,0): 251, 53, 148, (467,520,0): 249, 56, 171, (467,521,0): 252, 69, 196, (467,522,0): 245, 73, 207, (467,523,0): 240, 86, 216, (467,524,0): 253, 127, 237, (467,525,0): 255, 163, 250, (467,526,0): 255, 189, 250, (467,527,0): 249, 202, 244, (467,528,0): 255, 221, 255, (467,529,0): 255, 224, 254, (467,530,0): 255, 230, 252, (467,531,0): 255, 229, 252, (467,532,0): 255, 221, 252, (467,533,0): 255, 203, 254, (467,534,0): 255, 174, 255, (467,535,0): 249, 148, 254, (467,536,0): 232, 113, 241, (467,537,0): 246, 119, 252, (467,538,0): 247, 114, 241, (467,539,0): 235, 97, 209, (467,540,0): 235, 92, 182, (467,541,0): 251, 100, 171, (467,542,0): 255, 96, 153, (467,543,0): 250, 85, 128, (467,544,0): 243, 78, 110, (467,545,0): 252, 85, 111, (467,546,0): 244, 77, 105, (467,547,0): 237, 72, 104, (467,548,0): 246, 85, 119, (467,549,0): 239, 91, 125, (467,550,0): 206, 83, 111, (467,551,0): 181, 75, 98, (467,552,0): 198, 99, 119, (467,553,0): 177, 83, 99, (467,554,0): 160, 68, 79, (467,555,0): 155, 68, 76, (467,556,0): 154, 75, 78, (467,557,0): 164, 79, 82, (467,558,0): 189, 85, 96, (467,559,0): 196, 98, 111, (467,560,0): 142, 74, 87, (467,561,0): 118, 71, 81, (467,562,0): 112, 72, 80, (467,563,0): 104, 73, 78, (467,564,0): 92, 66, 69, (467,565,0): 92, 67, 70, (467,566,0): 95, 69, 72, (467,567,0): 90, 61, 65, (467,568,0): 102, 71, 76, (467,569,0): 103, 74, 78, (467,570,0): 104, 78, 81, (467,571,0): 104, 79, 82, (467,572,0): 101, 79, 81, (467,573,0): 98, 76, 78, (467,574,0): 97, 72, 75, (467,575,0): 98, 69, 73, (467,576,0): 98, 65, 72, (467,577,0): 104, 69, 76, (467,578,0): 106, 73, 80, (467,579,0): 108, 75, 82, (467,580,0): 107, 74, 81, (467,581,0): 103, 70, 77, (467,582,0): 96, 65, 71, (467,583,0): 92, 61, 67, (467,584,0): 92, 63, 68, (467,585,0): 91, 62, 67, (467,586,0): 90, 61, 66, (467,587,0): 88, 59, 64, (467,588,0): 83, 56, 61, (467,589,0): 79, 52, 57, (467,590,0): 75, 48, 53, (467,591,0): 73, 46, 51, (467,592,0): 71, 40, 46, (467,593,0): 67, 36, 42, (467,594,0): 61, 32, 37, (467,595,0): 56, 29, 34, (467,596,0): 55, 28, 33, (467,597,0): 53, 28, 32, (467,598,0): 48, 26, 29, (467,599,0): 45, 23, 26, (468,0,0): 56, 71, 64, (468,1,0): 57, 72, 65, (468,2,0): 59, 74, 67, (468,3,0): 61, 76, 69, (468,4,0): 64, 77, 70, (468,5,0): 64, 77, 70, (468,6,0): 63, 76, 69, (468,7,0): 63, 76, 69, (468,8,0): 62, 73, 67, (468,9,0): 62, 73, 67, (468,10,0): 63, 72, 67, (468,11,0): 63, 72, 67, (468,12,0): 63, 72, 67, (468,13,0): 63, 72, 67, (468,14,0): 65, 71, 67, (468,15,0): 65, 71, 67, (468,16,0): 62, 72, 64, (468,17,0): 61, 71, 63, (468,18,0): 62, 69, 62, (468,19,0): 61, 68, 61, (468,20,0): 61, 68, 61, (468,21,0): 61, 68, 61, (468,22,0): 63, 68, 62, (468,23,0): 64, 69, 63, (468,24,0): 67, 69, 64, (468,25,0): 67, 69, 64, (468,26,0): 67, 69, 64, (468,27,0): 68, 70, 65, (468,28,0): 69, 70, 65, (468,29,0): 70, 71, 66, (468,30,0): 70, 71, 66, (468,31,0): 70, 71, 66, (468,32,0): 71, 70, 65, (468,33,0): 71, 70, 65, (468,34,0): 73, 70, 65, (468,35,0): 73, 70, 65, (468,36,0): 73, 70, 63, (468,37,0): 73, 70, 63, (468,38,0): 74, 69, 63, (468,39,0): 74, 69, 63, (468,40,0): 78, 71, 63, (468,41,0): 78, 71, 63, (468,42,0): 78, 71, 61, (468,43,0): 78, 71, 61, (468,44,0): 79, 70, 61, (468,45,0): 79, 70, 61, (468,46,0): 79, 71, 60, (468,47,0): 79, 71, 60, (468,48,0): 80, 71, 62, (468,49,0): 80, 71, 62, (468,50,0): 80, 71, 62, (468,51,0): 80, 71, 62, (468,52,0): 80, 71, 62, (468,53,0): 80, 71, 62, (468,54,0): 81, 71, 62, (468,55,0): 81, 71, 62, (468,56,0): 81, 68, 60, (468,57,0): 80, 67, 59, (468,58,0): 81, 66, 59, (468,59,0): 80, 65, 58, (468,60,0): 78, 63, 56, (468,61,0): 77, 62, 55, (468,62,0): 77, 62, 55, (468,63,0): 76, 62, 53, (468,64,0): 79, 61, 51, (468,65,0): 77, 59, 47, (468,66,0): 76, 58, 46, (468,67,0): 74, 56, 44, (468,68,0): 73, 55, 43, (468,69,0): 72, 54, 42, (468,70,0): 73, 55, 43, (468,71,0): 73, 55, 43, (468,72,0): 73, 55, 43, (468,73,0): 73, 55, 43, (468,74,0): 72, 54, 42, (468,75,0): 72, 54, 42, (468,76,0): 71, 53, 41, (468,77,0): 71, 53, 41, (468,78,0): 70, 52, 40, (468,79,0): 70, 52, 40, (468,80,0): 67, 48, 34, (468,81,0): 67, 48, 34, (468,82,0): 67, 48, 34, (468,83,0): 67, 48, 34, (468,84,0): 67, 48, 34, (468,85,0): 67, 48, 34, (468,86,0): 67, 48, 34, (468,87,0): 67, 48, 34, (468,88,0): 66, 47, 33, (468,89,0): 65, 46, 32, (468,90,0): 64, 45, 31, (468,91,0): 63, 44, 30, (468,92,0): 63, 44, 30, (468,93,0): 64, 45, 31, (468,94,0): 65, 46, 32, (468,95,0): 65, 46, 32, (468,96,0): 67, 48, 34, (468,97,0): 66, 47, 33, (468,98,0): 66, 47, 33, (468,99,0): 66, 47, 33, (468,100,0): 65, 46, 32, (468,101,0): 65, 46, 32, (468,102,0): 65, 46, 32, (468,103,0): 65, 46, 32, (468,104,0): 64, 45, 31, (468,105,0): 63, 44, 30, (468,106,0): 61, 42, 28, (468,107,0): 59, 40, 26, (468,108,0): 58, 39, 25, (468,109,0): 58, 39, 25, (468,110,0): 58, 39, 25, (468,111,0): 59, 40, 26, (468,112,0): 58, 38, 29, (468,113,0): 58, 38, 29, (468,114,0): 57, 37, 28, (468,115,0): 57, 37, 28, (468,116,0): 57, 37, 28, (468,117,0): 57, 37, 28, (468,118,0): 57, 37, 28, (468,119,0): 57, 37, 28, (468,120,0): 56, 36, 27, (468,121,0): 56, 36, 27, (468,122,0): 56, 36, 27, (468,123,0): 57, 37, 28, (468,124,0): 57, 37, 28, (468,125,0): 58, 38, 29, (468,126,0): 58, 38, 29, (468,127,0): 58, 38, 29, (468,128,0): 59, 40, 34, (468,129,0): 59, 40, 34, (468,130,0): 59, 40, 34, (468,131,0): 59, 40, 34, (468,132,0): 59, 40, 34, (468,133,0): 59, 40, 34, (468,134,0): 59, 40, 34, (468,135,0): 59, 40, 34, (468,136,0): 57, 38, 32, (468,137,0): 58, 39, 33, (468,138,0): 58, 39, 33, (468,139,0): 59, 40, 34, (468,140,0): 60, 41, 35, (468,141,0): 60, 41, 35, (468,142,0): 60, 41, 35, (468,143,0): 59, 42, 35, (468,144,0): 58, 40, 36, (468,145,0): 56, 41, 36, (468,146,0): 56, 41, 36, (468,147,0): 57, 42, 37, (468,148,0): 57, 42, 37, (468,149,0): 58, 43, 38, (468,150,0): 58, 43, 38, (468,151,0): 58, 43, 38, (468,152,0): 60, 45, 40, (468,153,0): 60, 45, 40, (468,154,0): 60, 45, 40, (468,155,0): 61, 46, 41, (468,156,0): 61, 46, 41, (468,157,0): 62, 47, 42, (468,158,0): 62, 47, 42, (468,159,0): 62, 47, 42, (468,160,0): 62, 49, 43, (468,161,0): 62, 49, 43, (468,162,0): 62, 49, 43, (468,163,0): 63, 50, 44, (468,164,0): 63, 50, 44, (468,165,0): 64, 51, 45, (468,166,0): 64, 51, 45, (468,167,0): 64, 51, 45, (468,168,0): 65, 52, 46, (468,169,0): 65, 52, 46, (468,170,0): 66, 53, 47, (468,171,0): 67, 54, 48, (468,172,0): 68, 55, 49, (468,173,0): 69, 56, 50, (468,174,0): 70, 57, 51, (468,175,0): 69, 58, 52, (468,176,0): 65, 54, 52, (468,177,0): 64, 54, 52, (468,178,0): 65, 55, 53, (468,179,0): 66, 56, 54, (468,180,0): 67, 57, 55, (468,181,0): 68, 58, 56, (468,182,0): 69, 59, 57, (468,183,0): 69, 59, 57, (468,184,0): 71, 61, 59, (468,185,0): 71, 61, 59, (468,186,0): 71, 61, 59, (468,187,0): 72, 62, 60, (468,188,0): 72, 62, 60, (468,189,0): 73, 63, 61, (468,190,0): 73, 63, 61, (468,191,0): 73, 63, 61, (468,192,0): 74, 62, 62, (468,193,0): 74, 62, 62, (468,194,0): 74, 62, 62, (468,195,0): 73, 61, 61, (468,196,0): 73, 61, 61, (468,197,0): 72, 60, 60, (468,198,0): 72, 60, 60, (468,199,0): 71, 59, 59, (468,200,0): 72, 60, 60, (468,201,0): 72, 60, 60, (468,202,0): 71, 59, 59, (468,203,0): 70, 58, 58, (468,204,0): 69, 57, 57, (468,205,0): 68, 56, 56, (468,206,0): 67, 55, 55, (468,207,0): 66, 54, 54, (468,208,0): 65, 53, 55, (468,209,0): 65, 53, 55, (468,210,0): 65, 53, 55, (468,211,0): 65, 53, 55, (468,212,0): 65, 53, 55, (468,213,0): 65, 53, 55, (468,214,0): 65, 53, 55, (468,215,0): 65, 53, 55, (468,216,0): 68, 56, 58, (468,217,0): 68, 56, 58, (468,218,0): 68, 56, 58, (468,219,0): 69, 57, 59, (468,220,0): 69, 57, 59, (468,221,0): 70, 58, 60, (468,222,0): 70, 58, 60, (468,223,0): 72, 57, 60, (468,224,0): 75, 59, 62, (468,225,0): 78, 59, 63, (468,226,0): 79, 60, 64, (468,227,0): 80, 61, 65, (468,228,0): 83, 62, 67, (468,229,0): 85, 62, 68, (468,230,0): 88, 63, 69, (468,231,0): 89, 64, 70, (468,232,0): 94, 67, 74, (468,233,0): 98, 68, 76, (468,234,0): 102, 71, 79, (468,235,0): 103, 72, 80, (468,236,0): 107, 74, 83, (468,237,0): 113, 80, 89, (468,238,0): 121, 88, 97, (468,239,0): 133, 94, 99, (468,240,0): 147, 95, 97, (468,241,0): 156, 98, 96, (468,242,0): 162, 102, 102, (468,243,0): 165, 105, 105, (468,244,0): 163, 105, 104, (468,245,0): 156, 102, 100, (468,246,0): 146, 97, 92, (468,247,0): 138, 95, 88, (468,248,0): 139, 101, 92, (468,249,0): 137, 103, 93, (468,250,0): 136, 103, 94, (468,251,0): 137, 104, 95, (468,252,0): 141, 107, 98, (468,253,0): 146, 109, 100, (468,254,0): 150, 109, 103, (468,255,0): 154, 111, 105, (468,256,0): 158, 114, 111, (468,257,0): 160, 116, 113, (468,258,0): 165, 120, 115, (468,259,0): 169, 124, 119, (468,260,0): 170, 125, 120, (468,261,0): 169, 124, 119, (468,262,0): 167, 122, 119, (468,263,0): 163, 122, 118, (468,264,0): 164, 124, 122, (468,265,0): 162, 126, 126, (468,266,0): 161, 127, 128, (468,267,0): 155, 124, 129, (468,268,0): 151, 121, 129, (468,269,0): 148, 122, 131, (468,270,0): 151, 125, 136, (468,271,0): 151, 129, 142, (468,272,0): 152, 128, 150, (468,273,0): 157, 137, 162, (468,274,0): 166, 148, 172, (468,275,0): 168, 153, 176, (468,276,0): 168, 156, 180, (468,277,0): 171, 161, 185, (468,278,0): 177, 171, 197, (468,279,0): 184, 180, 205, (468,280,0): 187, 181, 209, (468,281,0): 189, 183, 211, (468,282,0): 194, 183, 217, (468,283,0): 194, 180, 215, (468,284,0): 188, 170, 208, (468,285,0): 176, 155, 194, (468,286,0): 163, 141, 180, (468,287,0): 156, 132, 168, (468,288,0): 151, 128, 154, (468,289,0): 150, 129, 148, (468,290,0): 150, 129, 148, (468,291,0): 150, 129, 146, (468,292,0): 155, 130, 149, (468,293,0): 159, 135, 151, (468,294,0): 166, 138, 153, (468,295,0): 168, 140, 152, (468,296,0): 163, 131, 142, (468,297,0): 167, 134, 143, (468,298,0): 166, 130, 140, (468,299,0): 160, 123, 131, (468,300,0): 163, 123, 131, (468,301,0): 172, 133, 138, (468,302,0): 180, 139, 145, (468,303,0): 181, 140, 146, (468,304,0): 149, 106, 115, (468,305,0): 108, 68, 77, (468,306,0): 79, 43, 53, (468,307,0): 72, 42, 50, (468,308,0): 64, 39, 45, (468,309,0): 58, 37, 44, (468,310,0): 55, 38, 44, (468,311,0): 50, 35, 40, (468,312,0): 47, 32, 39, (468,313,0): 44, 29, 36, (468,314,0): 38, 25, 34, (468,315,0): 35, 24, 32, (468,316,0): 35, 25, 34, (468,317,0): 33, 26, 34, (468,318,0): 31, 26, 33, (468,319,0): 29, 24, 31, (468,320,0): 32, 22, 31, (468,321,0): 32, 20, 30, (468,322,0): 32, 20, 30, (468,323,0): 30, 18, 28, (468,324,0): 28, 18, 29, (468,325,0): 27, 17, 28, (468,326,0): 26, 16, 27, (468,327,0): 26, 16, 27, (468,328,0): 23, 15, 28, (468,329,0): 22, 14, 27, (468,330,0): 21, 15, 29, (468,331,0): 20, 14, 28, (468,332,0): 20, 14, 28, (468,333,0): 19, 13, 27, (468,334,0): 17, 13, 28, (468,335,0): 17, 13, 28, (468,336,0): 21, 14, 30, (468,337,0): 21, 14, 30, (468,338,0): 21, 14, 30, (468,339,0): 20, 13, 29, (468,340,0): 20, 13, 29, (468,341,0): 19, 12, 28, (468,342,0): 19, 12, 28, (468,343,0): 19, 12, 28, (468,344,0): 19, 12, 28, (468,345,0): 19, 12, 28, (468,346,0): 19, 12, 28, (468,347,0): 19, 12, 28, (468,348,0): 19, 12, 28, (468,349,0): 19, 12, 28, (468,350,0): 19, 12, 28, (468,351,0): 19, 12, 28, (468,352,0): 23, 12, 29, (468,353,0): 24, 13, 30, (468,354,0): 22, 13, 30, (468,355,0): 23, 14, 31, (468,356,0): 22, 13, 30, (468,357,0): 21, 12, 29, (468,358,0): 18, 11, 27, (468,359,0): 17, 10, 26, (468,360,0): 18, 14, 29, (468,361,0): 18, 14, 29, (468,362,0): 18, 14, 29, (468,363,0): 18, 14, 29, (468,364,0): 17, 15, 29, (468,365,0): 17, 15, 29, (468,366,0): 17, 15, 29, (468,367,0): 18, 14, 28, (468,368,0): 23, 15, 30, (468,369,0): 23, 15, 28, (468,370,0): 24, 13, 27, (468,371,0): 25, 14, 28, (468,372,0): 26, 16, 27, (468,373,0): 29, 17, 29, (468,374,0): 30, 18, 30, (468,375,0): 32, 20, 32, (468,376,0): 25, 13, 23, (468,377,0): 27, 14, 24, (468,378,0): 28, 15, 24, (468,379,0): 31, 15, 25, (468,380,0): 32, 16, 26, (468,381,0): 34, 18, 28, (468,382,0): 35, 20, 27, (468,383,0): 35, 19, 29, (468,384,0): 33, 19, 32, (468,385,0): 33, 19, 34, (468,386,0): 35, 18, 34, (468,387,0): 35, 18, 34, (468,388,0): 35, 19, 32, (468,389,0): 35, 19, 32, (468,390,0): 36, 18, 30, (468,391,0): 36, 19, 29, (468,392,0): 38, 18, 27, (468,393,0): 40, 21, 27, (468,394,0): 43, 24, 30, (468,395,0): 45, 26, 30, (468,396,0): 47, 27, 29, (468,397,0): 47, 27, 29, (468,398,0): 46, 26, 28, (468,399,0): 45, 25, 27, (468,400,0): 48, 26, 29, (468,401,0): 48, 26, 29, (468,402,0): 49, 27, 30, (468,403,0): 49, 27, 30, (468,404,0): 50, 28, 31, (468,405,0): 50, 28, 31, (468,406,0): 51, 29, 32, (468,407,0): 51, 29, 32, (468,408,0): 53, 31, 34, (468,409,0): 53, 31, 34, (468,410,0): 52, 30, 33, (468,411,0): 51, 29, 32, (468,412,0): 51, 29, 32, (468,413,0): 52, 30, 33, (468,414,0): 53, 31, 34, (468,415,0): 52, 32, 34, (468,416,0): 56, 36, 37, (468,417,0): 55, 37, 37, (468,418,0): 55, 35, 37, (468,419,0): 54, 34, 36, (468,420,0): 54, 33, 38, (468,421,0): 54, 33, 38, (468,422,0): 56, 33, 41, (468,423,0): 57, 34, 44, (468,424,0): 63, 37, 50, (468,425,0): 65, 39, 52, (468,426,0): 70, 43, 58, (468,427,0): 74, 47, 64, (468,428,0): 78, 49, 67, (468,429,0): 79, 50, 70, (468,430,0): 78, 49, 69, (468,431,0): 77, 50, 69, (468,432,0): 75, 51, 67, (468,433,0): 75, 53, 66, (468,434,0): 75, 53, 66, (468,435,0): 75, 53, 66, (468,436,0): 75, 51, 64, (468,437,0): 73, 49, 62, (468,438,0): 72, 46, 59, (468,439,0): 71, 45, 56, (468,440,0): 68, 42, 53, (468,441,0): 70, 44, 55, (468,442,0): 73, 46, 55, (468,443,0): 74, 47, 56, (468,444,0): 75, 45, 55, (468,445,0): 73, 43, 51, (468,446,0): 69, 39, 47, (468,447,0): 67, 37, 45, (468,448,0): 68, 37, 45, (468,449,0): 69, 38, 46, (468,450,0): 70, 40, 50, (468,451,0): 70, 42, 54, (468,452,0): 71, 43, 57, (468,453,0): 68, 44, 57, (468,454,0): 67, 43, 57, (468,455,0): 66, 44, 57, (468,456,0): 66, 46, 58, (468,457,0): 65, 45, 57, (468,458,0): 63, 43, 55, (468,459,0): 61, 41, 52, (468,460,0): 60, 37, 47, (468,461,0): 57, 34, 42, (468,462,0): 57, 31, 40, (468,463,0): 54, 31, 37, (468,464,0): 54, 34, 36, (468,465,0): 54, 35, 37, (468,466,0): 55, 35, 37, (468,467,0): 56, 36, 38, (468,468,0): 57, 37, 39, (468,469,0): 57, 37, 39, (468,470,0): 59, 37, 40, (468,471,0): 59, 37, 40, (468,472,0): 59, 34, 38, (468,473,0): 59, 34, 38, (468,474,0): 58, 33, 37, (468,475,0): 56, 31, 35, (468,476,0): 54, 27, 32, (468,477,0): 49, 22, 27, (468,478,0): 46, 19, 24, (468,479,0): 43, 16, 21, (468,480,0): 44, 17, 22, (468,481,0): 44, 17, 22, (468,482,0): 46, 17, 21, (468,483,0): 48, 16, 21, (468,484,0): 55, 14, 20, (468,485,0): 62, 11, 20, (468,486,0): 69, 9, 19, (468,487,0): 73, 7, 17, (468,488,0): 85, 20, 28, (468,489,0): 78, 15, 23, (468,490,0): 67, 11, 14, (468,491,0): 64, 10, 10, (468,492,0): 71, 15, 16, (468,493,0): 81, 22, 24, (468,494,0): 91, 25, 27, (468,495,0): 99, 28, 34, (468,496,0): 96, 22, 35, (468,497,0): 104, 27, 43, (468,498,0): 114, 36, 50, (468,499,0): 111, 27, 40, (468,500,0): 113, 15, 28, (468,501,0): 138, 27, 43, (468,502,0): 163, 38, 54, (468,503,0): 158, 27, 45, (468,504,0): 163, 32, 50, (468,505,0): 146, 17, 35, (468,506,0): 144, 15, 35, (468,507,0): 163, 27, 51, (468,508,0): 174, 29, 60, (468,509,0): 175, 19, 56, (468,510,0): 182, 15, 58, (468,511,0): 200, 22, 70, (468,512,0): 207, 20, 73, (468,513,0): 215, 22, 77, (468,514,0): 228, 26, 84, (468,515,0): 237, 32, 91, (468,516,0): 246, 38, 98, (468,517,0): 249, 45, 106, (468,518,0): 249, 50, 117, (468,519,0): 245, 54, 132, (468,520,0): 253, 67, 166, (468,521,0): 255, 80, 197, (468,522,0): 255, 90, 222, (468,523,0): 247, 93, 227, (468,524,0): 246, 117, 236, (468,525,0): 255, 170, 255, (468,526,0): 255, 195, 255, (468,527,0): 247, 181, 245, (468,528,0): 255, 188, 255, (468,529,0): 246, 184, 249, (468,530,0): 239, 184, 241, (468,531,0): 248, 195, 251, (468,532,0): 255, 203, 255, (468,533,0): 255, 191, 255, (468,534,0): 252, 160, 255, (468,535,0): 246, 137, 254, (468,536,0): 241, 120, 249, (468,537,0): 250, 123, 252, (468,538,0): 245, 116, 234, (468,539,0): 232, 100, 201, (468,540,0): 234, 96, 174, (468,541,0): 251, 103, 165, (468,542,0): 255, 99, 149, (468,543,0): 255, 90, 128, (468,544,0): 250, 87, 108, (468,545,0): 255, 93, 110, (468,546,0): 250, 84, 106, (468,547,0): 241, 77, 104, (468,548,0): 245, 85, 119, (468,549,0): 227, 86, 120, (468,550,0): 192, 75, 104, (468,551,0): 166, 68, 91, (468,552,0): 183, 94, 112, (468,553,0): 167, 84, 94, (468,554,0): 154, 72, 78, (468,555,0): 150, 70, 71, (468,556,0): 150, 75, 72, (468,557,0): 161, 80, 79, (468,558,0): 185, 83, 94, (468,559,0): 189, 95, 109, (468,560,0): 136, 74, 89, (468,561,0): 111, 69, 83, (468,562,0): 102, 69, 80, (468,563,0): 97, 70, 79, (468,564,0): 88, 65, 73, (468,565,0): 89, 68, 75, (468,566,0): 93, 70, 78, (468,567,0): 87, 61, 70, (468,568,0): 92, 65, 74, (468,569,0): 94, 67, 76, (468,570,0): 97, 71, 80, (468,571,0): 98, 75, 83, (468,572,0): 98, 75, 83, (468,573,0): 96, 73, 81, (468,574,0): 92, 69, 77, (468,575,0): 93, 66, 73, (468,576,0): 94, 61, 68, (468,577,0): 100, 65, 72, (468,578,0): 103, 70, 77, (468,579,0): 107, 74, 81, (468,580,0): 108, 75, 82, (468,581,0): 105, 72, 79, (468,582,0): 99, 68, 74, (468,583,0): 96, 65, 71, (468,584,0): 91, 62, 67, (468,585,0): 91, 62, 67, (468,586,0): 90, 61, 66, (468,587,0): 87, 58, 63, (468,588,0): 82, 55, 60, (468,589,0): 78, 51, 56, (468,590,0): 75, 48, 53, (468,591,0): 73, 46, 51, (468,592,0): 72, 41, 47, (468,593,0): 68, 37, 43, (468,594,0): 62, 33, 38, (468,595,0): 57, 30, 35, (468,596,0): 56, 29, 34, (468,597,0): 53, 28, 32, (468,598,0): 48, 26, 29, (468,599,0): 46, 24, 27, (469,0,0): 57, 72, 65, (469,1,0): 58, 73, 66, (469,2,0): 60, 75, 68, (469,3,0): 61, 76, 69, (469,4,0): 64, 77, 70, (469,5,0): 64, 77, 70, (469,6,0): 64, 77, 70, (469,7,0): 63, 76, 69, (469,8,0): 63, 74, 68, (469,9,0): 63, 74, 68, (469,10,0): 64, 73, 68, (469,11,0): 64, 73, 68, (469,12,0): 64, 73, 68, (469,13,0): 64, 73, 68, (469,14,0): 66, 72, 68, (469,15,0): 66, 72, 68, (469,16,0): 62, 72, 64, (469,17,0): 61, 71, 63, (469,18,0): 62, 69, 62, (469,19,0): 61, 68, 61, (469,20,0): 60, 67, 60, (469,21,0): 60, 67, 60, (469,22,0): 62, 67, 61, (469,23,0): 63, 68, 62, (469,24,0): 66, 68, 63, (469,25,0): 66, 68, 63, (469,26,0): 66, 68, 63, (469,27,0): 67, 69, 64, (469,28,0): 68, 69, 64, (469,29,0): 69, 70, 65, (469,30,0): 69, 70, 65, (469,31,0): 69, 70, 65, (469,32,0): 70, 69, 64, (469,33,0): 70, 69, 64, (469,34,0): 72, 69, 64, (469,35,0): 72, 69, 64, (469,36,0): 72, 69, 62, (469,37,0): 72, 69, 62, (469,38,0): 73, 68, 62, (469,39,0): 73, 68, 62, (469,40,0): 76, 69, 61, (469,41,0): 76, 69, 61, (469,42,0): 76, 69, 59, (469,43,0): 77, 70, 60, (469,44,0): 78, 69, 60, (469,45,0): 79, 70, 61, (469,46,0): 79, 71, 60, (469,47,0): 79, 71, 60, (469,48,0): 80, 71, 62, (469,49,0): 80, 71, 62, (469,50,0): 80, 71, 62, (469,51,0): 80, 71, 62, (469,52,0): 80, 71, 62, (469,53,0): 80, 71, 62, (469,54,0): 81, 71, 62, (469,55,0): 81, 71, 62, (469,56,0): 81, 68, 60, (469,57,0): 80, 67, 59, (469,58,0): 81, 66, 59, (469,59,0): 80, 65, 58, (469,60,0): 78, 63, 56, (469,61,0): 77, 62, 55, (469,62,0): 77, 62, 55, (469,63,0): 76, 62, 53, (469,64,0): 79, 61, 51, (469,65,0): 77, 59, 47, (469,66,0): 76, 58, 46, (469,67,0): 74, 56, 44, (469,68,0): 73, 55, 43, (469,69,0): 72, 54, 42, (469,70,0): 73, 55, 43, (469,71,0): 73, 55, 43, (469,72,0): 73, 55, 43, (469,73,0): 73, 55, 43, (469,74,0): 72, 54, 42, (469,75,0): 72, 54, 42, (469,76,0): 71, 53, 41, (469,77,0): 71, 53, 41, (469,78,0): 70, 52, 40, (469,79,0): 70, 52, 40, (469,80,0): 67, 48, 34, (469,81,0): 67, 48, 34, (469,82,0): 67, 48, 34, (469,83,0): 67, 48, 34, (469,84,0): 67, 48, 34, (469,85,0): 67, 48, 34, (469,86,0): 67, 48, 34, (469,87,0): 67, 48, 34, (469,88,0): 66, 47, 33, (469,89,0): 65, 46, 32, (469,90,0): 64, 45, 31, (469,91,0): 63, 44, 30, (469,92,0): 62, 43, 29, (469,93,0): 62, 43, 29, (469,94,0): 63, 44, 30, (469,95,0): 64, 45, 31, (469,96,0): 64, 45, 31, (469,97,0): 64, 45, 31, (469,98,0): 64, 45, 31, (469,99,0): 64, 45, 31, (469,100,0): 64, 45, 31, (469,101,0): 64, 45, 31, (469,102,0): 64, 45, 31, (469,103,0): 64, 45, 31, (469,104,0): 64, 45, 31, (469,105,0): 63, 44, 30, (469,106,0): 61, 42, 28, (469,107,0): 59, 40, 26, (469,108,0): 58, 39, 25, (469,109,0): 58, 39, 25, (469,110,0): 58, 39, 25, (469,111,0): 58, 39, 25, (469,112,0): 58, 38, 29, (469,113,0): 58, 38, 29, (469,114,0): 57, 37, 28, (469,115,0): 57, 37, 28, (469,116,0): 56, 36, 27, (469,117,0): 56, 36, 27, (469,118,0): 56, 36, 27, (469,119,0): 56, 36, 27, (469,120,0): 55, 35, 26, (469,121,0): 55, 35, 26, (469,122,0): 55, 35, 26, (469,123,0): 56, 36, 27, (469,124,0): 56, 36, 27, (469,125,0): 57, 37, 28, (469,126,0): 57, 37, 28, (469,127,0): 57, 37, 28, (469,128,0): 57, 38, 32, (469,129,0): 57, 38, 32, (469,130,0): 57, 38, 32, (469,131,0): 57, 38, 32, (469,132,0): 57, 38, 32, (469,133,0): 57, 38, 32, (469,134,0): 57, 38, 32, (469,135,0): 57, 38, 32, (469,136,0): 57, 38, 32, (469,137,0): 58, 39, 33, (469,138,0): 59, 40, 34, (469,139,0): 60, 41, 35, (469,140,0): 61, 42, 36, (469,141,0): 61, 42, 36, (469,142,0): 60, 41, 35, (469,143,0): 59, 42, 35, (469,144,0): 59, 41, 37, (469,145,0): 57, 42, 37, (469,146,0): 57, 42, 37, (469,147,0): 57, 42, 37, (469,148,0): 57, 42, 37, (469,149,0): 57, 42, 37, (469,150,0): 57, 42, 37, (469,151,0): 57, 42, 37, (469,152,0): 60, 45, 40, (469,153,0): 60, 45, 40, (469,154,0): 60, 45, 40, (469,155,0): 60, 45, 40, (469,156,0): 60, 45, 40, (469,157,0): 60, 45, 40, (469,158,0): 60, 45, 40, (469,159,0): 60, 45, 40, (469,160,0): 59, 46, 40, (469,161,0): 60, 47, 41, (469,162,0): 60, 47, 41, (469,163,0): 60, 47, 41, (469,164,0): 61, 48, 42, (469,165,0): 62, 49, 43, (469,166,0): 62, 49, 43, (469,167,0): 62, 49, 43, (469,168,0): 65, 52, 46, (469,169,0): 65, 52, 46, (469,170,0): 66, 53, 47, (469,171,0): 67, 54, 48, (469,172,0): 68, 55, 49, (469,173,0): 69, 56, 50, (469,174,0): 70, 57, 51, (469,175,0): 68, 57, 51, (469,176,0): 64, 53, 51, (469,177,0): 63, 53, 51, (469,178,0): 64, 54, 52, (469,179,0): 65, 55, 53, (469,180,0): 66, 56, 54, (469,181,0): 67, 57, 55, (469,182,0): 68, 58, 56, (469,183,0): 68, 58, 56, (469,184,0): 68, 58, 56, (469,185,0): 69, 59, 57, (469,186,0): 69, 59, 57, (469,187,0): 69, 59, 57, (469,188,0): 70, 60, 58, (469,189,0): 71, 61, 59, (469,190,0): 71, 61, 59, (469,191,0): 71, 61, 59, (469,192,0): 71, 59, 59, (469,193,0): 71, 59, 59, (469,194,0): 71, 59, 59, (469,195,0): 70, 58, 58, (469,196,0): 70, 58, 58, (469,197,0): 69, 57, 57, (469,198,0): 69, 57, 57, (469,199,0): 68, 56, 56, (469,200,0): 70, 58, 58, (469,201,0): 70, 58, 58, (469,202,0): 69, 57, 57, (469,203,0): 68, 56, 56, (469,204,0): 67, 55, 55, (469,205,0): 66, 54, 54, (469,206,0): 65, 53, 53, (469,207,0): 65, 53, 53, (469,208,0): 64, 52, 54, (469,209,0): 64, 52, 54, (469,210,0): 64, 52, 54, (469,211,0): 64, 52, 54, (469,212,0): 64, 52, 54, (469,213,0): 64, 52, 54, (469,214,0): 64, 52, 54, (469,215,0): 64, 52, 54, (469,216,0): 65, 53, 55, (469,217,0): 66, 54, 56, (469,218,0): 66, 54, 56, (469,219,0): 67, 55, 57, (469,220,0): 67, 55, 57, (469,221,0): 68, 56, 58, (469,222,0): 68, 56, 58, (469,223,0): 68, 56, 58, (469,224,0): 74, 58, 61, (469,225,0): 76, 57, 61, (469,226,0): 77, 58, 62, (469,227,0): 78, 59, 63, (469,228,0): 80, 59, 64, (469,229,0): 81, 60, 65, (469,230,0): 83, 60, 66, (469,231,0): 86, 61, 67, (469,232,0): 90, 63, 70, (469,233,0): 93, 66, 73, (469,234,0): 97, 67, 75, (469,235,0): 100, 69, 77, (469,236,0): 104, 71, 80, (469,237,0): 109, 76, 85, (469,238,0): 116, 83, 92, (469,239,0): 127, 87, 95, (469,240,0): 139, 90, 93, (469,241,0): 147, 93, 93, (469,242,0): 153, 99, 99, (469,243,0): 158, 102, 101, (469,244,0): 157, 103, 101, (469,245,0): 151, 100, 97, (469,246,0): 143, 96, 90, (469,247,0): 134, 94, 86, (469,248,0): 137, 100, 91, (469,249,0): 133, 101, 90, (469,250,0): 131, 101, 91, (469,251,0): 132, 102, 92, (469,252,0): 136, 103, 94, (469,253,0): 139, 104, 98, (469,254,0): 144, 105, 100, (469,255,0): 145, 106, 101, (469,256,0): 149, 108, 106, (469,257,0): 151, 109, 110, (469,258,0): 155, 114, 112, (469,259,0): 161, 117, 116, (469,260,0): 163, 119, 118, (469,261,0): 163, 119, 116, (469,262,0): 161, 117, 114, (469,263,0): 158, 117, 115, (469,264,0): 151, 113, 112, (469,265,0): 151, 115, 115, (469,266,0): 152, 118, 119, (469,267,0): 148, 118, 120, (469,268,0): 145, 116, 121, (469,269,0): 140, 115, 121, (469,270,0): 139, 116, 124, (469,271,0): 141, 117, 130, (469,272,0): 145, 122, 142, (469,273,0): 148, 124, 146, (469,274,0): 150, 128, 149, (469,275,0): 148, 129, 149, (469,276,0): 146, 131, 152, (469,277,0): 149, 135, 158, (469,278,0): 154, 144, 168, (469,279,0): 160, 150, 174, (469,280,0): 159, 149, 174, (469,281,0): 163, 153, 178, (469,282,0): 170, 155, 184, (469,283,0): 173, 156, 188, (469,284,0): 173, 151, 187, (469,285,0): 168, 144, 180, (469,286,0): 160, 134, 171, (469,287,0): 154, 129, 159, (469,288,0): 148, 123, 142, (469,289,0): 146, 122, 135, (469,290,0): 144, 120, 133, (469,291,0): 143, 120, 130, (469,292,0): 145, 119, 130, (469,293,0): 148, 121, 130, (469,294,0): 152, 122, 132, (469,295,0): 155, 124, 132, (469,296,0): 157, 124, 131, (469,297,0): 163, 126, 133, (469,298,0): 164, 124, 132, (469,299,0): 160, 119, 125, (469,300,0): 162, 119, 126, (469,301,0): 171, 128, 135, (469,302,0): 178, 133, 138, (469,303,0): 178, 133, 138, (469,304,0): 146, 103, 110, (469,305,0): 110, 69, 75, (469,306,0): 87, 50, 57, (469,307,0): 81, 50, 55, (469,308,0): 72, 45, 50, (469,309,0): 64, 41, 47, (469,310,0): 60, 41, 45, (469,311,0): 53, 36, 42, (469,312,0): 50, 35, 40, (469,313,0): 46, 31, 38, (469,314,0): 40, 27, 36, (469,315,0): 38, 25, 34, (469,316,0): 37, 25, 35, (469,317,0): 35, 25, 34, (469,318,0): 31, 23, 34, (469,319,0): 29, 21, 32, (469,320,0): 32, 22, 31, (469,321,0): 33, 21, 31, (469,322,0): 31, 19, 29, (469,323,0): 30, 18, 28, (469,324,0): 27, 17, 28, (469,325,0): 26, 16, 27, (469,326,0): 25, 15, 26, (469,327,0): 24, 14, 25, (469,328,0): 23, 15, 28, (469,329,0): 23, 15, 28, (469,330,0): 22, 16, 30, (469,331,0): 21, 15, 29, (469,332,0): 21, 15, 29, (469,333,0): 20, 14, 28, (469,334,0): 18, 14, 29, (469,335,0): 18, 14, 29, (469,336,0): 21, 14, 30, (469,337,0): 21, 14, 30, (469,338,0): 21, 14, 30, (469,339,0): 20, 13, 29, (469,340,0): 20, 13, 29, (469,341,0): 19, 12, 28, (469,342,0): 19, 12, 28, (469,343,0): 19, 12, 28, (469,344,0): 19, 12, 28, (469,345,0): 19, 12, 28, (469,346,0): 19, 12, 28, (469,347,0): 19, 12, 28, (469,348,0): 19, 12, 28, (469,349,0): 19, 12, 28, (469,350,0): 19, 12, 28, (469,351,0): 19, 12, 28, (469,352,0): 23, 12, 29, (469,353,0): 24, 13, 30, (469,354,0): 22, 13, 30, (469,355,0): 23, 14, 31, (469,356,0): 22, 13, 30, (469,357,0): 21, 12, 29, (469,358,0): 18, 11, 27, (469,359,0): 17, 10, 26, (469,360,0): 18, 14, 29, (469,361,0): 18, 14, 29, (469,362,0): 18, 14, 29, (469,363,0): 18, 14, 29, (469,364,0): 17, 15, 29, (469,365,0): 17, 15, 29, (469,366,0): 17, 15, 29, (469,367,0): 18, 14, 28, (469,368,0): 24, 16, 31, (469,369,0): 26, 15, 29, (469,370,0): 25, 14, 28, (469,371,0): 26, 15, 29, (469,372,0): 28, 16, 28, (469,373,0): 30, 18, 30, (469,374,0): 31, 19, 31, (469,375,0): 34, 20, 33, (469,376,0): 28, 15, 25, (469,377,0): 29, 16, 26, (469,378,0): 31, 15, 25, (469,379,0): 32, 16, 26, (469,380,0): 33, 17, 27, (469,381,0): 35, 18, 28, (469,382,0): 35, 18, 26, (469,383,0): 36, 19, 29, (469,384,0): 35, 19, 32, (469,385,0): 33, 19, 34, (469,386,0): 35, 18, 34, (469,387,0): 35, 19, 32, (469,388,0): 35, 19, 32, (469,389,0): 35, 19, 30, (469,390,0): 36, 19, 29, (469,391,0): 36, 19, 29, (469,392,0): 39, 19, 28, (469,393,0): 40, 20, 29, (469,394,0): 41, 22, 28, (469,395,0): 43, 24, 28, (469,396,0): 45, 24, 29, (469,397,0): 45, 25, 27, (469,398,0): 46, 26, 28, (469,399,0): 45, 25, 27, (469,400,0): 47, 25, 28, (469,401,0): 47, 25, 28, (469,402,0): 48, 26, 29, (469,403,0): 48, 26, 29, (469,404,0): 49, 27, 30, (469,405,0): 49, 27, 30, (469,406,0): 50, 28, 31, (469,407,0): 50, 28, 31, (469,408,0): 52, 30, 33, (469,409,0): 51, 29, 32, (469,410,0): 50, 28, 31, (469,411,0): 49, 27, 30, (469,412,0): 49, 27, 30, (469,413,0): 50, 28, 31, (469,414,0): 51, 29, 32, (469,415,0): 51, 31, 33, (469,416,0): 55, 37, 37, (469,417,0): 54, 36, 36, (469,418,0): 54, 34, 36, (469,419,0): 53, 33, 35, (469,420,0): 53, 32, 37, (469,421,0): 53, 32, 37, (469,422,0): 55, 32, 40, (469,423,0): 56, 33, 41, (469,424,0): 59, 33, 44, (469,425,0): 62, 36, 49, (469,426,0): 66, 39, 54, (469,427,0): 70, 43, 58, (469,428,0): 74, 45, 63, (469,429,0): 75, 46, 64, (469,430,0): 75, 46, 64, (469,431,0): 74, 47, 64, (469,432,0): 72, 48, 62, (469,433,0): 72, 50, 63, (469,434,0): 74, 52, 65, (469,435,0): 75, 53, 65, (469,436,0): 75, 51, 64, (469,437,0): 74, 50, 63, (469,438,0): 73, 47, 58, (469,439,0): 72, 46, 57, (469,440,0): 68, 42, 53, (469,441,0): 69, 43, 52, (469,442,0): 71, 44, 53, (469,443,0): 72, 45, 54, (469,444,0): 73, 43, 51, (469,445,0): 71, 41, 49, (469,446,0): 69, 39, 47, (469,447,0): 68, 38, 46, (469,448,0): 68, 37, 45, (469,449,0): 69, 38, 46, (469,450,0): 70, 40, 50, (469,451,0): 69, 42, 51, (469,452,0): 70, 42, 54, (469,453,0): 67, 43, 56, (469,454,0): 66, 42, 56, (469,455,0): 64, 42, 55, (469,456,0): 62, 42, 54, (469,457,0): 61, 41, 52, (469,458,0): 60, 40, 51, (469,459,0): 58, 38, 47, (469,460,0): 59, 36, 44, (469,461,0): 57, 34, 40, (469,462,0): 58, 33, 39, (469,463,0): 56, 33, 39, (469,464,0): 55, 35, 37, (469,465,0): 54, 35, 37, (469,466,0): 55, 35, 37, (469,467,0): 55, 35, 37, (469,468,0): 56, 36, 38, (469,469,0): 56, 36, 38, (469,470,0): 57, 35, 38, (469,471,0): 57, 35, 38, (469,472,0): 58, 33, 37, (469,473,0): 58, 33, 37, (469,474,0): 58, 33, 37, (469,475,0): 57, 32, 36, (469,476,0): 56, 29, 34, (469,477,0): 52, 25, 30, (469,478,0): 48, 21, 26, (469,479,0): 46, 19, 24, (469,480,0): 48, 23, 27, (469,481,0): 47, 22, 26, (469,482,0): 46, 19, 24, (469,483,0): 47, 16, 21, (469,484,0): 50, 13, 20, (469,485,0): 57, 12, 19, (469,486,0): 65, 9, 20, (469,487,0): 69, 9, 19, (469,488,0): 83, 23, 31, (469,489,0): 78, 21, 27, (469,490,0): 64, 14, 17, (469,491,0): 60, 10, 11, (469,492,0): 70, 18, 20, (469,493,0): 80, 24, 25, (469,494,0): 90, 25, 29, (469,495,0): 101, 31, 39, (469,496,0): 98, 26, 40, (469,497,0): 101, 28, 45, (469,498,0): 115, 43, 57, (469,499,0): 116, 38, 52, (469,500,0): 109, 17, 32, (469,501,0): 126, 21, 36, (469,502,0): 155, 34, 53, (469,503,0): 157, 28, 48, (469,504,0): 157, 26, 44, (469,505,0): 159, 28, 46, (469,506,0): 167, 38, 58, (469,507,0): 179, 45, 69, (469,508,0): 176, 33, 61, (469,509,0): 170, 16, 50, (469,510,0): 186, 20, 60, (469,511,0): 214, 34, 81, (469,512,0): 220, 32, 82, (469,513,0): 227, 30, 84, (469,514,0): 233, 31, 89, (469,515,0): 238, 33, 90, (469,516,0): 246, 39, 95, (469,517,0): 248, 45, 100, (469,518,0): 250, 51, 106, (469,519,0): 248, 55, 122, (469,520,0): 242, 55, 142, (469,521,0): 250, 73, 181, (469,522,0): 255, 92, 221, (469,523,0): 251, 96, 232, (469,524,0): 238, 103, 231, (469,525,0): 255, 148, 255, (469,526,0): 255, 161, 253, (469,527,0): 234, 142, 229, (469,528,0): 249, 155, 252, (469,529,0): 234, 144, 240, (469,530,0): 222, 142, 227, (469,531,0): 239, 162, 242, (469,532,0): 255, 185, 255, (469,533,0): 255, 175, 255, (469,534,0): 248, 144, 255, (469,535,0): 244, 126, 249, (469,536,0): 255, 140, 255, (469,537,0): 255, 136, 255, (469,538,0): 255, 127, 245, (469,539,0): 245, 115, 213, (469,540,0): 245, 107, 184, (469,541,0): 251, 103, 161, (469,542,0): 255, 95, 142, (469,543,0): 253, 88, 120, (469,544,0): 255, 93, 110, (469,545,0): 255, 95, 110, (469,546,0): 248, 85, 106, (469,547,0): 241, 81, 109, (469,548,0): 238, 87, 122, (469,549,0): 217, 83, 120, (469,550,0): 185, 76, 108, (469,551,0): 172, 80, 105, (469,552,0): 167, 82, 101, (469,553,0): 163, 82, 91, (469,554,0): 163, 81, 83, (469,555,0): 163, 82, 79, (469,556,0): 163, 84, 79, (469,557,0): 168, 82, 81, (469,558,0): 183, 79, 90, (469,559,0): 180, 83, 100, (469,560,0): 144, 81, 98, (469,561,0): 117, 74, 91, (469,562,0): 110, 74, 88, (469,563,0): 105, 75, 87, (469,564,0): 98, 72, 83, (469,565,0): 99, 76, 86, (469,566,0): 102, 79, 89, (469,567,0): 96, 70, 81, (469,568,0): 91, 63, 75, (469,569,0): 94, 66, 78, (469,570,0): 98, 70, 82, (469,571,0): 100, 74, 85, (469,572,0): 100, 74, 85, (469,573,0): 97, 71, 82, (469,574,0): 93, 67, 78, (469,575,0): 91, 64, 73, (469,576,0): 93, 60, 69, (469,577,0): 98, 63, 70, (469,578,0): 100, 67, 74, (469,579,0): 104, 71, 78, (469,580,0): 104, 71, 78, (469,581,0): 102, 69, 76, (469,582,0): 98, 67, 73, (469,583,0): 95, 64, 70, (469,584,0): 89, 60, 65, (469,585,0): 89, 60, 65, (469,586,0): 88, 59, 64, (469,587,0): 85, 56, 61, (469,588,0): 80, 53, 58, (469,589,0): 76, 49, 54, (469,590,0): 73, 46, 51, (469,591,0): 71, 44, 49, (469,592,0): 72, 41, 47, (469,593,0): 67, 36, 42, (469,594,0): 61, 32, 37, (469,595,0): 56, 29, 34, (469,596,0): 56, 29, 34, (469,597,0): 53, 28, 32, (469,598,0): 48, 26, 29, (469,599,0): 46, 24, 27, (470,0,0): 57, 74, 68, (470,1,0): 58, 75, 69, (470,2,0): 60, 77, 71, (470,3,0): 61, 78, 72, (470,4,0): 62, 77, 72, (470,5,0): 62, 77, 72, (470,6,0): 61, 76, 71, (470,7,0): 60, 75, 70, (470,8,0): 62, 74, 70, (470,9,0): 62, 74, 70, (470,10,0): 63, 74, 70, (470,11,0): 63, 74, 70, (470,12,0): 63, 74, 70, (470,13,0): 63, 74, 70, (470,14,0): 64, 73, 70, (470,15,0): 64, 73, 68, (470,16,0): 62, 72, 64, (470,17,0): 61, 71, 63, (470,18,0): 62, 69, 62, (470,19,0): 60, 67, 60, (470,20,0): 60, 67, 60, (470,21,0): 60, 67, 60, (470,22,0): 61, 66, 60, (470,23,0): 62, 67, 61, (470,24,0): 65, 67, 62, (470,25,0): 65, 67, 62, (470,26,0): 65, 67, 62, (470,27,0): 66, 68, 63, (470,28,0): 67, 68, 63, (470,29,0): 68, 69, 64, (470,30,0): 68, 69, 64, (470,31,0): 69, 70, 65, (470,32,0): 68, 67, 62, (470,33,0): 68, 67, 62, (470,34,0): 70, 67, 62, (470,35,0): 70, 67, 62, (470,36,0): 70, 67, 60, (470,37,0): 70, 67, 60, (470,38,0): 71, 66, 60, (470,39,0): 71, 66, 60, (470,40,0): 74, 67, 59, (470,41,0): 75, 68, 60, (470,42,0): 75, 68, 58, (470,43,0): 76, 69, 59, (470,44,0): 78, 69, 60, (470,45,0): 78, 69, 60, (470,46,0): 79, 71, 60, (470,47,0): 79, 71, 60, (470,48,0): 80, 71, 62, (470,49,0): 80, 71, 62, (470,50,0): 80, 71, 62, (470,51,0): 80, 71, 62, (470,52,0): 80, 71, 62, (470,53,0): 80, 71, 62, (470,54,0): 81, 71, 62, (470,55,0): 81, 71, 62, (470,56,0): 81, 68, 60, (470,57,0): 80, 67, 59, (470,58,0): 81, 66, 59, (470,59,0): 80, 65, 58, (470,60,0): 78, 63, 56, (470,61,0): 77, 62, 55, (470,62,0): 77, 62, 55, (470,63,0): 76, 62, 53, (470,64,0): 79, 61, 51, (470,65,0): 77, 59, 49, (470,66,0): 76, 58, 48, (470,67,0): 74, 56, 46, (470,68,0): 73, 55, 45, (470,69,0): 72, 54, 44, (470,70,0): 73, 55, 45, (470,71,0): 73, 55, 45, (470,72,0): 73, 55, 45, (470,73,0): 73, 55, 45, (470,74,0): 72, 54, 44, (470,75,0): 72, 54, 44, (470,76,0): 71, 53, 43, (470,77,0): 71, 53, 43, (470,78,0): 70, 52, 42, (470,79,0): 70, 52, 40, (470,80,0): 69, 50, 36, (470,81,0): 69, 50, 36, (470,82,0): 69, 50, 36, (470,83,0): 69, 50, 36, (470,84,0): 69, 50, 36, (470,85,0): 69, 50, 36, (470,86,0): 69, 50, 36, (470,87,0): 69, 50, 36, (470,88,0): 67, 48, 34, (470,89,0): 66, 47, 33, (470,90,0): 64, 45, 31, (470,91,0): 63, 44, 30, (470,92,0): 62, 43, 29, (470,93,0): 62, 43, 29, (470,94,0): 62, 43, 29, (470,95,0): 63, 44, 30, (470,96,0): 63, 44, 30, (470,97,0): 63, 44, 30, (470,98,0): 64, 45, 31, (470,99,0): 64, 45, 31, (470,100,0): 64, 45, 31, (470,101,0): 64, 45, 31, (470,102,0): 64, 45, 31, (470,103,0): 64, 45, 31, (470,104,0): 63, 44, 30, (470,105,0): 62, 43, 29, (470,106,0): 60, 41, 27, (470,107,0): 59, 40, 26, (470,108,0): 57, 38, 24, (470,109,0): 57, 38, 24, (470,110,0): 58, 39, 25, (470,111,0): 58, 39, 25, (470,112,0): 58, 38, 29, (470,113,0): 58, 38, 29, (470,114,0): 57, 37, 28, (470,115,0): 57, 37, 28, (470,116,0): 56, 36, 27, (470,117,0): 55, 35, 26, (470,118,0): 55, 35, 26, (470,119,0): 54, 34, 25, (470,120,0): 54, 34, 25, (470,121,0): 54, 34, 25, (470,122,0): 54, 34, 25, (470,123,0): 55, 35, 26, (470,124,0): 55, 35, 26, (470,125,0): 56, 36, 27, (470,126,0): 56, 36, 27, (470,127,0): 57, 37, 28, (470,128,0): 55, 36, 30, (470,129,0): 55, 36, 30, (470,130,0): 55, 36, 30, (470,131,0): 55, 36, 30, (470,132,0): 55, 36, 30, (470,133,0): 55, 36, 30, (470,134,0): 55, 36, 30, (470,135,0): 55, 36, 30, (470,136,0): 54, 35, 29, (470,137,0): 55, 36, 30, (470,138,0): 57, 38, 32, (470,139,0): 59, 40, 34, (470,140,0): 59, 40, 34, (470,141,0): 59, 40, 34, (470,142,0): 58, 39, 33, (470,143,0): 56, 39, 32, (470,144,0): 58, 40, 36, (470,145,0): 56, 41, 36, (470,146,0): 56, 41, 36, (470,147,0): 56, 41, 36, (470,148,0): 55, 40, 35, (470,149,0): 55, 40, 35, (470,150,0): 55, 40, 35, (470,151,0): 55, 40, 35, (470,152,0): 58, 43, 38, (470,153,0): 58, 43, 38, (470,154,0): 58, 43, 38, (470,155,0): 58, 43, 38, (470,156,0): 57, 42, 37, (470,157,0): 57, 42, 37, (470,158,0): 57, 42, 37, (470,159,0): 57, 42, 37, (470,160,0): 58, 45, 39, (470,161,0): 58, 45, 39, (470,162,0): 59, 46, 40, (470,163,0): 59, 46, 40, (470,164,0): 60, 47, 41, (470,165,0): 60, 47, 41, (470,166,0): 61, 48, 42, (470,167,0): 61, 48, 42, (470,168,0): 62, 49, 43, (470,169,0): 63, 50, 44, (470,170,0): 64, 51, 45, (470,171,0): 65, 52, 46, (470,172,0): 66, 53, 47, (470,173,0): 67, 54, 48, (470,174,0): 68, 55, 49, (470,175,0): 66, 55, 49, (470,176,0): 63, 52, 50, (470,177,0): 62, 52, 50, (470,178,0): 63, 53, 51, (470,179,0): 64, 54, 52, (470,180,0): 65, 55, 53, (470,181,0): 66, 56, 54, (470,182,0): 67, 57, 55, (470,183,0): 68, 58, 56, (470,184,0): 67, 57, 55, (470,185,0): 67, 57, 55, (470,186,0): 68, 58, 56, (470,187,0): 68, 58, 56, (470,188,0): 69, 59, 57, (470,189,0): 69, 59, 57, (470,190,0): 70, 60, 58, (470,191,0): 70, 60, 58, (470,192,0): 68, 58, 57, (470,193,0): 68, 58, 57, (470,194,0): 67, 57, 56, (470,195,0): 67, 57, 56, (470,196,0): 66, 56, 55, (470,197,0): 66, 56, 55, (470,198,0): 65, 55, 54, (470,199,0): 65, 55, 54, (470,200,0): 68, 58, 57, (470,201,0): 68, 58, 57, (470,202,0): 67, 57, 56, (470,203,0): 66, 56, 55, (470,204,0): 65, 55, 54, (470,205,0): 64, 54, 53, (470,206,0): 63, 53, 52, (470,207,0): 63, 53, 52, (470,208,0): 63, 53, 54, (470,209,0): 63, 52, 56, (470,210,0): 63, 52, 56, (470,211,0): 63, 52, 56, (470,212,0): 63, 52, 56, (470,213,0): 63, 52, 56, (470,214,0): 63, 52, 56, (470,215,0): 63, 52, 56, (470,216,0): 63, 52, 56, (470,217,0): 63, 52, 56, (470,218,0): 63, 52, 56, (470,219,0): 64, 53, 57, (470,220,0): 65, 54, 58, (470,221,0): 65, 54, 58, (470,222,0): 65, 54, 58, (470,223,0): 67, 55, 59, (470,224,0): 72, 55, 61, (470,225,0): 73, 56, 62, (470,226,0): 75, 56, 62, (470,227,0): 76, 57, 63, (470,228,0): 78, 57, 64, (470,229,0): 79, 58, 65, (470,230,0): 81, 58, 66, (470,231,0): 83, 57, 66, (470,232,0): 88, 61, 70, (470,233,0): 90, 63, 72, (470,234,0): 94, 64, 74, (470,235,0): 96, 66, 76, (470,236,0): 98, 66, 77, (470,237,0): 102, 70, 81, (470,238,0): 109, 76, 87, (470,239,0): 117, 80, 88, (470,240,0): 124, 79, 82, (470,241,0): 132, 84, 84, (470,242,0): 140, 90, 91, (470,243,0): 146, 96, 95, (470,244,0): 149, 98, 95, (470,245,0): 147, 98, 94, (470,246,0): 140, 95, 90, (470,247,0): 134, 93, 87, (470,248,0): 133, 96, 88, (470,249,0): 130, 97, 88, (470,250,0): 126, 98, 87, (470,251,0): 126, 98, 87, (470,252,0): 127, 97, 89, (470,253,0): 131, 98, 93, (470,254,0): 133, 98, 94, (470,255,0): 136, 98, 97, (470,256,0): 141, 101, 102, (470,257,0): 143, 102, 106, (470,258,0): 147, 107, 108, (470,259,0): 151, 109, 111, (470,260,0): 154, 112, 113, (470,261,0): 155, 114, 112, (470,262,0): 155, 114, 112, (470,263,0): 154, 114, 112, (470,264,0): 142, 104, 103, (470,265,0): 142, 108, 107, (470,266,0): 142, 110, 111, (470,267,0): 139, 110, 112, (470,268,0): 135, 109, 112, (470,269,0): 133, 108, 112, (470,270,0): 133, 111, 114, (470,271,0): 134, 113, 120, (470,272,0): 139, 115, 131, (470,273,0): 137, 114, 134, (470,274,0): 136, 115, 134, (470,275,0): 133, 114, 133, (470,276,0): 133, 116, 135, (470,277,0): 134, 119, 138, (470,278,0): 138, 125, 145, (470,279,0): 140, 128, 148, (470,280,0): 139, 127, 149, (470,281,0): 143, 129, 152, (470,282,0): 149, 133, 159, (470,283,0): 154, 136, 162, (470,284,0): 155, 135, 163, (470,285,0): 153, 130, 159, (470,286,0): 150, 125, 155, (470,287,0): 148, 122, 147, (470,288,0): 146, 120, 133, (470,289,0): 144, 119, 125, (470,290,0): 142, 115, 122, (470,291,0): 140, 113, 120, (470,292,0): 141, 111, 119, (470,293,0): 143, 112, 118, (470,294,0): 146, 113, 120, (470,295,0): 149, 114, 120, (470,296,0): 152, 115, 122, (470,297,0): 159, 118, 124, (470,298,0): 159, 116, 123, (470,299,0): 157, 114, 121, (470,300,0): 162, 117, 124, (470,301,0): 170, 125, 130, (470,302,0): 173, 126, 132, (470,303,0): 169, 122, 128, (470,304,0): 146, 101, 106, (470,305,0): 113, 72, 76, (470,306,0): 96, 60, 64, (470,307,0): 94, 62, 65, (470,308,0): 84, 55, 59, (470,309,0): 72, 47, 50, (470,310,0): 66, 46, 48, (470,311,0): 60, 41, 45, (470,312,0): 57, 40, 46, (470,313,0): 52, 37, 44, (470,314,0): 45, 32, 41, (470,315,0): 42, 29, 38, (470,316,0): 40, 28, 38, (470,317,0): 38, 26, 36, (470,318,0): 34, 24, 35, (470,319,0): 32, 22, 33, (470,320,0): 33, 21, 31, (470,321,0): 33, 21, 31, (470,322,0): 31, 19, 29, (470,323,0): 30, 18, 28, (470,324,0): 27, 17, 28, (470,325,0): 25, 15, 26, (470,326,0): 24, 14, 25, (470,327,0): 23, 13, 24, (470,328,0): 24, 16, 29, (470,329,0): 24, 16, 29, (470,330,0): 23, 17, 31, (470,331,0): 22, 16, 30, (470,332,0): 22, 16, 30, (470,333,0): 21, 15, 29, (470,334,0): 19, 15, 30, (470,335,0): 19, 15, 30, (470,336,0): 21, 14, 30, (470,337,0): 21, 14, 30, (470,338,0): 21, 14, 30, (470,339,0): 20, 13, 29, (470,340,0): 20, 13, 29, (470,341,0): 19, 12, 28, (470,342,0): 19, 12, 28, (470,343,0): 19, 12, 28, (470,344,0): 19, 12, 28, (470,345,0): 19, 12, 28, (470,346,0): 19, 12, 28, (470,347,0): 19, 12, 28, (470,348,0): 19, 12, 28, (470,349,0): 19, 12, 28, (470,350,0): 19, 12, 28, (470,351,0): 19, 12, 28, (470,352,0): 23, 12, 29, (470,353,0): 24, 13, 30, (470,354,0): 22, 13, 30, (470,355,0): 23, 14, 31, (470,356,0): 22, 13, 30, (470,357,0): 21, 12, 29, (470,358,0): 18, 11, 27, (470,359,0): 17, 10, 26, (470,360,0): 18, 14, 29, (470,361,0): 18, 14, 29, (470,362,0): 18, 14, 29, (470,363,0): 18, 14, 29, (470,364,0): 17, 15, 29, (470,365,0): 17, 15, 29, (470,366,0): 17, 15, 29, (470,367,0): 18, 14, 28, (470,368,0): 27, 16, 32, (470,369,0): 28, 16, 30, (470,370,0): 27, 15, 29, (470,371,0): 27, 15, 29, (470,372,0): 30, 16, 29, (470,373,0): 31, 17, 30, (470,374,0): 33, 19, 32, (470,375,0): 36, 20, 33, (470,376,0): 33, 17, 28, (470,377,0): 33, 17, 28, (470,378,0): 34, 17, 27, (470,379,0): 34, 17, 27, (470,380,0): 35, 18, 28, (470,381,0): 37, 17, 28, (470,382,0): 37, 17, 26, (470,383,0): 35, 18, 28, (470,384,0): 36, 20, 31, (470,385,0): 34, 20, 33, (470,386,0): 36, 20, 33, (470,387,0): 36, 20, 33, (470,388,0): 36, 20, 33, (470,389,0): 36, 20, 31, (470,390,0): 37, 20, 30, (470,391,0): 37, 20, 30, (470,392,0): 40, 20, 29, (470,393,0): 39, 19, 28, (470,394,0): 40, 21, 27, (470,395,0): 40, 21, 25, (470,396,0): 42, 21, 26, (470,397,0): 44, 23, 28, (470,398,0): 45, 24, 29, (470,399,0): 46, 25, 30, (470,400,0): 45, 25, 27, (470,401,0): 45, 25, 27, (470,402,0): 46, 26, 28, (470,403,0): 46, 26, 28, (470,404,0): 47, 27, 29, (470,405,0): 47, 27, 29, (470,406,0): 48, 28, 30, (470,407,0): 48, 28, 30, (470,408,0): 50, 30, 32, (470,409,0): 49, 29, 31, (470,410,0): 48, 28, 30, (470,411,0): 47, 27, 29, (470,412,0): 47, 27, 29, (470,413,0): 48, 28, 30, (470,414,0): 49, 29, 31, (470,415,0): 50, 30, 32, (470,416,0): 52, 33, 35, (470,417,0): 51, 32, 34, (470,418,0): 51, 31, 33, (470,419,0): 50, 30, 32, (470,420,0): 50, 29, 34, (470,421,0): 51, 30, 35, (470,422,0): 53, 30, 38, (470,423,0): 54, 31, 39, (470,424,0): 57, 31, 42, (470,425,0): 59, 33, 44, (470,426,0): 63, 37, 50, (470,427,0): 68, 42, 55, (470,428,0): 71, 43, 58, (470,429,0): 72, 44, 59, (470,430,0): 72, 44, 59, (470,431,0): 71, 44, 59, (470,432,0): 68, 44, 58, (470,433,0): 70, 46, 59, (470,434,0): 73, 49, 62, (470,435,0): 76, 52, 65, (470,436,0): 78, 52, 65, (470,437,0): 77, 51, 62, (470,438,0): 75, 49, 60, (470,439,0): 73, 47, 58, (470,440,0): 69, 42, 51, (470,441,0): 69, 42, 51, (470,442,0): 71, 41, 51, (470,443,0): 71, 41, 49, (470,444,0): 71, 41, 49, (470,445,0): 70, 40, 48, (470,446,0): 71, 40, 46, (470,447,0): 70, 39, 45, (470,448,0): 69, 38, 44, (470,449,0): 70, 39, 45, (470,450,0): 70, 40, 48, (470,451,0): 69, 42, 51, (470,452,0): 69, 41, 53, (470,453,0): 66, 43, 53, (470,454,0): 65, 41, 54, (470,455,0): 64, 42, 54, (470,456,0): 58, 38, 49, (470,457,0): 57, 37, 48, (470,458,0): 57, 37, 48, (470,459,0): 57, 37, 46, (470,460,0): 58, 35, 43, (470,461,0): 58, 35, 41, (470,462,0): 60, 35, 41, (470,463,0): 57, 35, 38, (470,464,0): 55, 35, 37, (470,465,0): 54, 35, 37, (470,466,0): 55, 35, 37, (470,467,0): 55, 35, 37, (470,468,0): 54, 34, 36, (470,469,0): 54, 34, 36, (470,470,0): 55, 33, 36, (470,471,0): 55, 33, 36, (470,472,0): 56, 31, 35, (470,473,0): 57, 32, 36, (470,474,0): 58, 33, 37, (470,475,0): 58, 33, 37, (470,476,0): 58, 31, 36, (470,477,0): 54, 27, 32, (470,478,0): 50, 23, 28, (470,479,0): 48, 21, 26, (470,480,0): 40, 15, 21, (470,481,0): 38, 16, 19, (470,482,0): 41, 16, 20, (470,483,0): 43, 17, 20, (470,484,0): 49, 17, 22, (470,485,0): 57, 16, 22, (470,486,0): 65, 15, 24, (470,487,0): 69, 16, 24, (470,488,0): 69, 14, 20, (470,489,0): 69, 17, 21, (470,490,0): 58, 9, 12, (470,491,0): 55, 7, 7, (470,492,0): 67, 17, 18, (470,493,0): 74, 18, 19, (470,494,0): 80, 15, 19, (470,495,0): 91, 21, 31, (470,496,0): 94, 23, 39, (470,497,0): 86, 14, 34, (470,498,0): 100, 32, 47, (470,499,0): 112, 38, 53, (470,500,0): 106, 19, 35, (470,501,0): 119, 18, 34, (470,502,0): 148, 29, 49, (470,503,0): 153, 24, 46, (470,504,0): 147, 14, 35, (470,505,0): 158, 25, 46, (470,506,0): 170, 38, 59, (470,507,0): 175, 39, 61, (470,508,0): 166, 22, 49, (470,509,0): 165, 7, 40, (470,510,0): 189, 19, 56, (470,511,0): 221, 38, 84, (470,512,0): 231, 37, 90, (470,513,0): 236, 34, 92, (470,514,0): 236, 32, 93, (470,515,0): 238, 33, 92, (470,516,0): 244, 35, 90, (470,517,0): 249, 41, 91, (470,518,0): 255, 48, 98, (470,519,0): 255, 54, 112, (470,520,0): 239, 46, 125, (470,521,0): 243, 63, 163, (470,522,0): 249, 83, 207, (470,523,0): 244, 92, 227, (470,524,0): 233, 91, 225, (470,525,0): 243, 110, 235, (470,526,0): 240, 110, 218, (470,527,0): 240, 114, 222, (470,528,0): 252, 126, 252, (470,529,0): 236, 117, 243, (470,530,0): 222, 116, 224, (470,531,0): 240, 140, 236, (470,532,0): 255, 166, 255, (470,533,0): 255, 156, 251, (470,534,0): 245, 127, 241, (470,535,0): 243, 116, 245, (470,536,0): 255, 137, 255, (470,537,0): 255, 130, 255, (470,538,0): 255, 126, 252, (470,539,0): 255, 124, 230, (470,540,0): 255, 117, 198, (470,541,0): 253, 105, 163, (470,542,0): 253, 92, 133, (470,543,0): 252, 88, 115, (470,544,0): 254, 95, 113, (470,545,0): 252, 95, 112, (470,546,0): 249, 89, 113, (470,547,0): 248, 93, 124, (470,548,0): 239, 97, 135, (470,549,0): 208, 83, 123, (470,550,0): 176, 76, 112, (470,551,0): 175, 86, 116, (470,552,0): 155, 70, 91, (470,553,0): 161, 75, 88, (470,554,0): 170, 80, 82, (470,555,0): 170, 79, 76, (470,556,0): 167, 76, 71, (470,557,0): 170, 72, 73, (470,558,0): 180, 68, 80, (470,559,0): 175, 72, 91, (470,560,0): 149, 77, 97, (470,561,0): 121, 69, 91, (470,562,0): 112, 67, 87, (470,563,0): 107, 68, 86, (470,564,0): 99, 65, 81, (470,565,0): 103, 71, 86, (470,566,0): 105, 73, 88, (470,567,0): 97, 63, 79, (470,568,0): 100, 66, 82, (470,569,0): 103, 69, 85, (470,570,0): 107, 73, 89, (470,571,0): 109, 75, 91, (470,572,0): 109, 75, 91, (470,573,0): 103, 71, 86, (470,574,0): 98, 66, 81, (470,575,0): 95, 63, 76, (470,576,0): 95, 62, 71, (470,577,0): 99, 64, 71, (470,578,0): 99, 66, 73, (470,579,0): 100, 67, 74, (470,580,0): 100, 67, 74, (470,581,0): 97, 64, 71, (470,582,0): 93, 62, 68, (470,583,0): 91, 60, 66, (470,584,0): 87, 58, 63, (470,585,0): 86, 57, 62, (470,586,0): 85, 56, 61, (470,587,0): 83, 54, 59, (470,588,0): 77, 50, 55, (470,589,0): 74, 47, 52, (470,590,0): 70, 43, 48, (470,591,0): 68, 41, 46, (470,592,0): 71, 40, 46, (470,593,0): 67, 36, 42, (470,594,0): 61, 32, 37, (470,595,0): 56, 29, 34, (470,596,0): 55, 28, 33, (470,597,0): 52, 27, 31, (470,598,0): 48, 26, 29, (470,599,0): 45, 23, 26, (471,0,0): 58, 75, 69, (471,1,0): 59, 76, 70, (471,2,0): 60, 77, 71, (471,3,0): 61, 78, 72, (471,4,0): 62, 77, 72, (471,5,0): 61, 76, 71, (471,6,0): 60, 75, 70, (471,7,0): 60, 75, 70, (471,8,0): 63, 75, 71, (471,9,0): 63, 75, 71, (471,10,0): 64, 75, 71, (471,11,0): 64, 75, 71, (471,12,0): 64, 75, 71, (471,13,0): 64, 75, 71, (471,14,0): 65, 74, 71, (471,15,0): 65, 74, 69, (471,16,0): 63, 72, 67, (471,17,0): 62, 72, 64, (471,18,0): 62, 69, 62, (471,19,0): 60, 67, 60, (471,20,0): 59, 66, 59, (471,21,0): 59, 66, 59, (471,22,0): 61, 66, 60, (471,23,0): 61, 66, 60, (471,24,0): 64, 66, 61, (471,25,0): 65, 67, 62, (471,26,0): 65, 67, 62, (471,27,0): 65, 67, 62, (471,28,0): 67, 68, 63, (471,29,0): 68, 69, 64, (471,30,0): 68, 69, 64, (471,31,0): 68, 69, 64, (471,32,0): 68, 67, 62, (471,33,0): 68, 67, 62, (471,34,0): 70, 67, 62, (471,35,0): 70, 67, 62, (471,36,0): 70, 67, 60, (471,37,0): 70, 67, 60, (471,38,0): 71, 66, 60, (471,39,0): 71, 66, 60, (471,40,0): 74, 67, 59, (471,41,0): 74, 67, 59, (471,42,0): 74, 67, 57, (471,43,0): 75, 68, 58, (471,44,0): 77, 68, 59, (471,45,0): 78, 69, 60, (471,46,0): 79, 71, 60, (471,47,0): 79, 71, 60, (471,48,0): 80, 71, 62, (471,49,0): 80, 71, 62, (471,50,0): 80, 71, 62, (471,51,0): 80, 71, 62, (471,52,0): 80, 71, 62, (471,53,0): 80, 71, 62, (471,54,0): 81, 71, 62, (471,55,0): 81, 71, 62, (471,56,0): 81, 68, 60, (471,57,0): 80, 67, 59, (471,58,0): 81, 66, 59, (471,59,0): 80, 65, 58, (471,60,0): 78, 63, 56, (471,61,0): 77, 62, 55, (471,62,0): 77, 62, 55, (471,63,0): 76, 62, 53, (471,64,0): 79, 60, 53, (471,65,0): 77, 59, 49, (471,66,0): 76, 58, 48, (471,67,0): 74, 56, 46, (471,68,0): 73, 55, 45, (471,69,0): 72, 54, 44, (471,70,0): 73, 55, 45, (471,71,0): 73, 55, 45, (471,72,0): 73, 55, 45, (471,73,0): 73, 55, 45, (471,74,0): 72, 54, 44, (471,75,0): 72, 54, 44, (471,76,0): 71, 53, 43, (471,77,0): 71, 53, 43, (471,78,0): 70, 52, 42, (471,79,0): 70, 52, 40, (471,80,0): 69, 49, 38, (471,81,0): 69, 50, 36, (471,82,0): 69, 50, 36, (471,83,0): 69, 50, 36, (471,84,0): 69, 50, 36, (471,85,0): 69, 50, 36, (471,86,0): 69, 50, 36, (471,87,0): 69, 50, 36, (471,88,0): 67, 48, 34, (471,89,0): 66, 47, 33, (471,90,0): 64, 45, 31, (471,91,0): 63, 44, 30, (471,92,0): 62, 43, 29, (471,93,0): 62, 43, 29, (471,94,0): 62, 43, 29, (471,95,0): 63, 44, 30, (471,96,0): 63, 44, 30, (471,97,0): 63, 44, 30, (471,98,0): 63, 44, 30, (471,99,0): 64, 45, 31, (471,100,0): 64, 45, 31, (471,101,0): 64, 45, 31, (471,102,0): 64, 45, 31, (471,103,0): 65, 46, 32, (471,104,0): 63, 44, 30, (471,105,0): 62, 43, 29, (471,106,0): 60, 41, 27, (471,107,0): 58, 39, 25, (471,108,0): 57, 38, 24, (471,109,0): 57, 38, 24, (471,110,0): 57, 38, 24, (471,111,0): 58, 39, 25, (471,112,0): 58, 38, 29, (471,113,0): 58, 38, 29, (471,114,0): 57, 37, 28, (471,115,0): 57, 37, 28, (471,116,0): 56, 36, 27, (471,117,0): 55, 35, 26, (471,118,0): 54, 34, 25, (471,119,0): 54, 34, 25, (471,120,0): 53, 33, 24, (471,121,0): 54, 34, 25, (471,122,0): 54, 34, 25, (471,123,0): 54, 34, 25, (471,124,0): 55, 35, 26, (471,125,0): 56, 36, 27, (471,126,0): 56, 36, 27, (471,127,0): 56, 36, 27, (471,128,0): 54, 35, 29, (471,129,0): 54, 35, 29, (471,130,0): 54, 35, 29, (471,131,0): 54, 35, 29, (471,132,0): 54, 35, 29, (471,133,0): 54, 35, 29, (471,134,0): 54, 35, 29, (471,135,0): 54, 35, 29, (471,136,0): 51, 32, 26, (471,137,0): 53, 34, 28, (471,138,0): 55, 36, 30, (471,139,0): 57, 38, 32, (471,140,0): 57, 38, 32, (471,141,0): 56, 37, 31, (471,142,0): 55, 36, 30, (471,143,0): 53, 36, 29, (471,144,0): 56, 38, 34, (471,145,0): 54, 39, 34, (471,146,0): 54, 39, 34, (471,147,0): 54, 39, 34, (471,148,0): 53, 38, 33, (471,149,0): 53, 38, 33, (471,150,0): 53, 38, 33, (471,151,0): 53, 38, 33, (471,152,0): 56, 41, 36, (471,153,0): 56, 41, 36, (471,154,0): 56, 41, 36, (471,155,0): 55, 40, 35, (471,156,0): 55, 40, 35, (471,157,0): 55, 40, 35, (471,158,0): 54, 39, 34, (471,159,0): 54, 39, 34, (471,160,0): 58, 45, 39, (471,161,0): 58, 45, 39, (471,162,0): 58, 45, 39, (471,163,0): 59, 46, 40, (471,164,0): 59, 46, 40, (471,165,0): 60, 47, 41, (471,166,0): 60, 47, 41, (471,167,0): 60, 47, 41, (471,168,0): 60, 47, 41, (471,169,0): 61, 48, 42, (471,170,0): 61, 48, 42, (471,171,0): 62, 49, 43, (471,172,0): 64, 51, 45, (471,173,0): 65, 52, 46, (471,174,0): 65, 52, 46, (471,175,0): 64, 53, 47, (471,176,0): 63, 52, 50, (471,177,0): 62, 52, 50, (471,178,0): 63, 53, 51, (471,179,0): 64, 54, 52, (471,180,0): 65, 55, 53, (471,181,0): 66, 56, 54, (471,182,0): 67, 57, 55, (471,183,0): 68, 58, 56, (471,184,0): 67, 57, 55, (471,185,0): 67, 57, 55, (471,186,0): 67, 57, 55, (471,187,0): 68, 58, 56, (471,188,0): 68, 58, 56, (471,189,0): 69, 59, 57, (471,190,0): 69, 59, 57, (471,191,0): 69, 59, 57, (471,192,0): 67, 57, 56, (471,193,0): 66, 56, 55, (471,194,0): 66, 56, 55, (471,195,0): 65, 55, 54, (471,196,0): 65, 55, 54, (471,197,0): 64, 54, 53, (471,198,0): 64, 54, 53, (471,199,0): 64, 54, 53, (471,200,0): 68, 58, 57, (471,201,0): 67, 57, 56, (471,202,0): 66, 56, 55, (471,203,0): 65, 55, 54, (471,204,0): 64, 54, 53, (471,205,0): 63, 53, 52, (471,206,0): 62, 52, 51, (471,207,0): 62, 52, 51, (471,208,0): 63, 52, 56, (471,209,0): 63, 52, 56, (471,210,0): 63, 52, 56, (471,211,0): 63, 52, 56, (471,212,0): 63, 52, 56, (471,213,0): 63, 52, 56, (471,214,0): 63, 52, 56, (471,215,0): 63, 52, 56, (471,216,0): 62, 51, 55, (471,217,0): 62, 51, 55, (471,218,0): 63, 52, 56, (471,219,0): 63, 52, 56, (471,220,0): 64, 53, 57, (471,221,0): 64, 53, 57, (471,222,0): 65, 54, 58, (471,223,0): 66, 54, 58, (471,224,0): 71, 56, 61, (471,225,0): 72, 55, 61, (471,226,0): 74, 55, 61, (471,227,0): 75, 56, 62, (471,228,0): 77, 56, 63, (471,229,0): 78, 57, 64, (471,230,0): 79, 56, 64, (471,231,0): 80, 57, 65, (471,232,0): 85, 59, 68, (471,233,0): 89, 62, 71, (471,234,0): 92, 62, 72, (471,235,0): 93, 63, 73, (471,236,0): 94, 62, 73, (471,237,0): 97, 65, 76, (471,238,0): 103, 70, 81, (471,239,0): 109, 74, 81, (471,240,0): 112, 71, 75, (471,241,0): 120, 76, 77, (471,242,0): 129, 83, 85, (471,243,0): 138, 90, 90, (471,244,0): 142, 94, 92, (471,245,0): 143, 95, 91, (471,246,0): 138, 95, 89, (471,247,0): 134, 93, 87, (471,248,0): 128, 94, 85, (471,249,0): 124, 94, 84, (471,250,0): 122, 94, 83, (471,251,0): 120, 93, 84, (471,252,0): 121, 92, 86, (471,253,0): 123, 92, 89, (471,254,0): 126, 92, 90, (471,255,0): 128, 92, 92, (471,256,0): 133, 97, 101, (471,257,0): 137, 98, 103, (471,258,0): 140, 101, 106, (471,259,0): 144, 105, 108, (471,260,0): 147, 108, 109, (471,261,0): 149, 111, 110, (471,262,0): 151, 111, 111, (471,263,0): 151, 113, 110, (471,264,0): 140, 105, 103, (471,265,0): 140, 106, 104, (471,266,0): 138, 106, 107, (471,267,0): 133, 105, 104, (471,268,0): 128, 102, 103, (471,269,0): 125, 103, 105, (471,270,0): 127, 105, 108, (471,271,0): 129, 108, 115, (471,272,0): 125, 103, 116, (471,273,0): 124, 101, 117, (471,274,0): 122, 101, 118, (471,275,0): 122, 104, 120, (471,276,0): 124, 107, 123, (471,277,0): 125, 111, 128, (471,278,0): 127, 114, 131, (471,279,0): 128, 115, 132, (471,280,0): 131, 118, 136, (471,281,0): 132, 119, 137, (471,282,0): 135, 120, 141, (471,283,0): 138, 120, 142, (471,284,0): 139, 119, 144, (471,285,0): 138, 115, 141, (471,286,0): 137, 113, 139, (471,287,0): 136, 111, 132, (471,288,0): 141, 113, 125, (471,289,0): 139, 112, 117, (471,290,0): 140, 111, 116, (471,291,0): 138, 109, 114, (471,292,0): 140, 109, 114, (471,293,0): 143, 111, 116, (471,294,0): 147, 112, 118, (471,295,0): 150, 113, 120, (471,296,0): 148, 108, 116, (471,297,0): 153, 112, 118, (471,298,0): 157, 111, 121, (471,299,0): 156, 111, 118, (471,300,0): 162, 115, 123, (471,301,0): 169, 122, 130, (471,302,0): 171, 121, 130, (471,303,0): 162, 115, 121, (471,304,0): 144, 99, 102, (471,305,0): 116, 76, 77, (471,306,0): 105, 66, 67, (471,307,0): 104, 70, 71, (471,308,0): 92, 62, 62, (471,309,0): 78, 52, 53, (471,310,0): 71, 49, 51, (471,311,0): 65, 45, 47, (471,312,0): 62, 46, 49, (471,313,0): 56, 41, 46, (471,314,0): 49, 36, 43, (471,315,0): 45, 32, 41, (471,316,0): 43, 32, 40, (471,317,0): 41, 29, 39, (471,318,0): 38, 26, 38, (471,319,0): 35, 23, 35, (471,320,0): 34, 22, 32, (471,321,0): 33, 21, 31, (471,322,0): 31, 19, 29, (471,323,0): 30, 18, 28, (471,324,0): 27, 17, 28, (471,325,0): 25, 15, 26, (471,326,0): 23, 13, 24, (471,327,0): 23, 13, 24, (471,328,0): 25, 17, 30, (471,329,0): 25, 17, 30, (471,330,0): 24, 18, 32, (471,331,0): 23, 17, 31, (471,332,0): 23, 17, 31, (471,333,0): 22, 16, 30, (471,334,0): 20, 16, 31, (471,335,0): 19, 15, 30, (471,336,0): 21, 14, 30, (471,337,0): 21, 14, 30, (471,338,0): 21, 14, 30, (471,339,0): 20, 13, 29, (471,340,0): 20, 13, 29, (471,341,0): 19, 12, 28, (471,342,0): 19, 12, 28, (471,343,0): 19, 12, 28, (471,344,0): 19, 12, 28, (471,345,0): 19, 12, 28, (471,346,0): 19, 12, 28, (471,347,0): 19, 12, 28, (471,348,0): 19, 12, 28, (471,349,0): 19, 12, 28, (471,350,0): 19, 12, 28, (471,351,0): 19, 12, 28, (471,352,0): 23, 12, 29, (471,353,0): 24, 13, 30, (471,354,0): 22, 13, 30, (471,355,0): 23, 14, 31, (471,356,0): 22, 13, 30, (471,357,0): 21, 12, 29, (471,358,0): 18, 11, 27, (471,359,0): 17, 10, 26, (471,360,0): 18, 14, 29, (471,361,0): 18, 14, 29, (471,362,0): 18, 14, 29, (471,363,0): 18, 14, 29, (471,364,0): 17, 15, 29, (471,365,0): 17, 15, 29, (471,366,0): 17, 15, 29, (471,367,0): 18, 14, 28, (471,368,0): 27, 16, 32, (471,369,0): 28, 16, 30, (471,370,0): 28, 16, 30, (471,371,0): 28, 16, 30, (471,372,0): 30, 16, 29, (471,373,0): 32, 18, 31, (471,374,0): 36, 20, 33, (471,375,0): 37, 21, 34, (471,376,0): 35, 19, 30, (471,377,0): 35, 19, 30, (471,378,0): 36, 19, 29, (471,379,0): 35, 18, 28, (471,380,0): 37, 17, 28, (471,381,0): 37, 17, 28, (471,382,0): 37, 17, 26, (471,383,0): 35, 18, 28, (471,384,0): 36, 20, 31, (471,385,0): 34, 20, 33, (471,386,0): 36, 20, 33, (471,387,0): 36, 20, 31, (471,388,0): 36, 20, 31, (471,389,0): 36, 20, 31, (471,390,0): 37, 20, 30, (471,391,0): 37, 20, 30, (471,392,0): 40, 20, 29, (471,393,0): 39, 19, 28, (471,394,0): 38, 19, 25, (471,395,0): 38, 19, 25, (471,396,0): 40, 19, 26, (471,397,0): 42, 21, 26, (471,398,0): 45, 24, 29, (471,399,0): 47, 26, 31, (471,400,0): 45, 25, 27, (471,401,0): 45, 25, 27, (471,402,0): 45, 25, 27, (471,403,0): 46, 26, 28, (471,404,0): 46, 26, 28, (471,405,0): 47, 27, 29, (471,406,0): 47, 27, 29, (471,407,0): 48, 28, 30, (471,408,0): 49, 29, 31, (471,409,0): 48, 28, 30, (471,410,0): 47, 27, 29, (471,411,0): 47, 27, 29, (471,412,0): 47, 27, 29, (471,413,0): 47, 27, 29, (471,414,0): 48, 28, 30, (471,415,0): 49, 29, 31, (471,416,0): 49, 30, 32, (471,417,0): 48, 29, 31, (471,418,0): 48, 28, 30, (471,419,0): 48, 28, 30, (471,420,0): 48, 27, 32, (471,421,0): 49, 28, 33, (471,422,0): 51, 28, 36, (471,423,0): 52, 29, 37, (471,424,0): 56, 30, 41, (471,425,0): 58, 32, 43, (471,426,0): 62, 36, 47, (471,427,0): 66, 40, 53, (471,428,0): 70, 42, 56, (471,429,0): 71, 43, 57, (471,430,0): 70, 42, 57, (471,431,0): 69, 43, 56, (471,432,0): 68, 42, 55, (471,433,0): 69, 45, 58, (471,434,0): 72, 48, 61, (471,435,0): 75, 51, 64, (471,436,0): 79, 53, 64, (471,437,0): 78, 52, 63, (471,438,0): 76, 50, 61, (471,439,0): 74, 48, 57, (471,440,0): 70, 43, 52, (471,441,0): 69, 42, 51, (471,442,0): 70, 40, 48, (471,443,0): 70, 40, 48, (471,444,0): 69, 39, 47, (471,445,0): 70, 40, 48, (471,446,0): 71, 40, 46, (471,447,0): 71, 40, 46, (471,448,0): 69, 38, 44, (471,449,0): 70, 39, 45, (471,450,0): 70, 40, 48, (471,451,0): 69, 42, 49, (471,452,0): 70, 42, 54, (471,453,0): 66, 43, 53, (471,454,0): 65, 41, 54, (471,455,0): 63, 41, 53, (471,456,0): 55, 35, 46, (471,457,0): 55, 35, 46, (471,458,0): 55, 35, 44, (471,459,0): 56, 37, 43, (471,460,0): 58, 35, 43, (471,461,0): 58, 35, 41, (471,462,0): 61, 36, 40, (471,463,0): 59, 37, 40, (471,464,0): 56, 36, 38, (471,465,0): 54, 35, 37, (471,466,0): 55, 35, 37, (471,467,0): 54, 34, 36, (471,468,0): 53, 33, 35, (471,469,0): 53, 33, 35, (471,470,0): 53, 31, 34, (471,471,0): 53, 31, 34, (471,472,0): 54, 29, 33, (471,473,0): 56, 31, 35, (471,474,0): 58, 33, 37, (471,475,0): 59, 34, 38, (471,476,0): 59, 32, 37, (471,477,0): 56, 29, 34, (471,478,0): 52, 25, 30, (471,479,0): 49, 24, 28, (471,480,0): 39, 14, 20, (471,481,0): 38, 15, 21, (471,482,0): 39, 17, 20, (471,483,0): 43, 18, 22, (471,484,0): 48, 17, 23, (471,485,0): 53, 16, 23, (471,486,0): 60, 13, 21, (471,487,0): 63, 12, 21, (471,488,0): 66, 15, 22, (471,489,0): 71, 20, 25, (471,490,0): 61, 15, 17, (471,491,0): 62, 13, 16, (471,492,0): 76, 24, 26, (471,493,0): 82, 21, 26, (471,494,0): 84, 15, 20, (471,495,0): 92, 19, 30, (471,496,0): 100, 29, 47, (471,497,0): 82, 13, 34, (471,498,0): 97, 28, 46, (471,499,0): 118, 45, 62, (471,500,0): 116, 32, 48, (471,501,0): 128, 29, 49, (471,502,0): 156, 37, 59, (471,503,0): 160, 30, 54, (471,504,0): 168, 30, 55, (471,505,0): 158, 20, 43, (471,506,0): 150, 14, 36, (471,507,0): 155, 16, 39, (471,508,0): 169, 20, 49, (471,509,0): 183, 24, 56, (471,510,0): 203, 27, 65, (471,511,0): 218, 31, 76, (471,512,0): 223, 26, 82, (471,513,0): 223, 23, 85, (471,514,0): 223, 23, 85, (471,515,0): 225, 23, 81, (471,516,0): 229, 25, 78, (471,517,0): 241, 31, 80, (471,518,0): 253, 40, 88, (471,519,0): 255, 47, 104, (471,520,0): 253, 57, 131, (471,521,0): 250, 71, 165, (471,522,0): 242, 83, 201, (471,523,0): 243, 96, 228, (471,524,0): 238, 94, 226, (471,525,0): 235, 90, 217, (471,526,0): 236, 84, 195, (471,527,0): 255, 116, 230, (471,528,0): 255, 109, 243, (471,529,0): 247, 103, 235, (471,530,0): 233, 104, 220, (471,531,0): 249, 128, 231, (471,532,0): 255, 153, 250, (471,533,0): 255, 139, 244, (471,534,0): 244, 112, 232, (471,535,0): 249, 109, 242, (471,536,0): 255, 118, 255, (471,537,0): 252, 111, 251, (471,538,0): 250, 114, 238, (471,539,0): 255, 125, 228, (471,540,0): 255, 124, 201, (471,541,0): 255, 108, 163, (471,542,0): 252, 93, 133, (471,543,0): 253, 90, 119, (471,544,0): 237, 81, 103, (471,545,0): 237, 84, 105, (471,546,0): 242, 88, 116, (471,547,0): 247, 102, 135, (471,548,0): 236, 106, 144, (471,549,0): 195, 83, 123, (471,550,0): 164, 70, 107, (471,551,0): 167, 80, 114, (471,552,0): 167, 77, 103, (471,553,0): 176, 82, 98, (471,554,0): 184, 83, 89, (471,555,0): 183, 77, 79, (471,556,0): 179, 71, 71, (471,557,0): 182, 69, 73, (471,558,0): 193, 72, 87, (471,559,0): 189, 82, 102, (471,560,0): 159, 81, 103, (471,561,0): 130, 72, 94, (471,562,0): 121, 68, 88, (471,563,0): 115, 68, 86, (471,564,0): 107, 66, 82, (471,565,0): 108, 70, 85, (471,566,0): 109, 73, 87, (471,567,0): 100, 64, 78, (471,568,0): 93, 55, 70, (471,569,0): 97, 59, 74, (471,570,0): 103, 65, 80, (471,571,0): 108, 70, 85, (471,572,0): 109, 73, 87, (471,573,0): 105, 71, 85, (471,574,0): 101, 69, 82, (471,575,0): 98, 66, 77, (471,576,0): 98, 65, 74, (471,577,0): 100, 65, 72, (471,578,0): 99, 66, 73, (471,579,0): 98, 65, 72, (471,580,0): 96, 63, 70, (471,581,0): 93, 60, 67, (471,582,0): 89, 58, 64, (471,583,0): 87, 56, 62, (471,584,0): 85, 56, 61, (471,585,0): 85, 56, 61, (471,586,0): 83, 54, 59, (471,587,0): 81, 52, 57, (471,588,0): 76, 49, 54, (471,589,0): 72, 45, 50, (471,590,0): 68, 41, 46, (471,591,0): 66, 39, 44, (471,592,0): 70, 39, 45, (471,593,0): 66, 35, 41, (471,594,0): 60, 31, 36, (471,595,0): 55, 28, 33, (471,596,0): 54, 27, 32, (471,597,0): 52, 27, 31, (471,598,0): 47, 25, 28, (471,599,0): 44, 22, 25, (472,0,0): 55, 74, 68, (472,1,0): 55, 74, 68, (472,2,0): 58, 75, 69, (472,3,0): 58, 75, 69, (472,4,0): 59, 76, 70, (472,5,0): 59, 76, 70, (472,6,0): 61, 76, 71, (472,7,0): 61, 76, 71, (472,8,0): 63, 75, 71, (472,9,0): 63, 75, 71, (472,10,0): 63, 75, 71, (472,11,0): 63, 75, 71, (472,12,0): 64, 75, 71, (472,13,0): 64, 75, 71, (472,14,0): 64, 75, 71, (472,15,0): 64, 75, 69, (472,16,0): 64, 73, 68, (472,17,0): 63, 73, 65, (472,18,0): 63, 70, 63, (472,19,0): 61, 68, 61, (472,20,0): 61, 68, 61, (472,21,0): 61, 68, 61, (472,22,0): 62, 67, 61, (472,23,0): 63, 68, 62, (472,24,0): 63, 65, 60, (472,25,0): 64, 66, 61, (472,26,0): 65, 67, 62, (472,27,0): 66, 68, 63, (472,28,0): 69, 70, 65, (472,29,0): 70, 71, 66, (472,30,0): 71, 72, 67, (472,31,0): 71, 72, 67, (472,32,0): 68, 67, 62, (472,33,0): 69, 68, 63, (472,34,0): 71, 68, 63, (472,35,0): 71, 68, 63, (472,36,0): 71, 68, 61, (472,37,0): 71, 68, 61, (472,38,0): 73, 68, 62, (472,39,0): 73, 68, 62, (472,40,0): 75, 68, 60, (472,41,0): 75, 68, 60, (472,42,0): 75, 68, 58, (472,43,0): 75, 68, 58, (472,44,0): 76, 67, 58, (472,45,0): 76, 67, 58, (472,46,0): 76, 68, 57, (472,47,0): 76, 68, 57, (472,48,0): 78, 69, 60, (472,49,0): 78, 69, 60, (472,50,0): 78, 69, 60, (472,51,0): 78, 69, 60, (472,52,0): 78, 69, 60, (472,53,0): 78, 69, 60, (472,54,0): 79, 69, 60, (472,55,0): 79, 69, 60, (472,56,0): 79, 66, 58, (472,57,0): 79, 66, 58, (472,58,0): 79, 64, 57, (472,59,0): 79, 64, 57, (472,60,0): 78, 63, 56, (472,61,0): 78, 63, 56, (472,62,0): 77, 62, 55, (472,63,0): 77, 63, 54, (472,64,0): 76, 57, 50, (472,65,0): 76, 58, 48, (472,66,0): 75, 57, 47, (472,67,0): 75, 57, 47, (472,68,0): 74, 56, 46, (472,69,0): 74, 56, 46, (472,70,0): 73, 55, 45, (472,71,0): 73, 55, 45, (472,72,0): 74, 56, 46, (472,73,0): 74, 56, 46, (472,74,0): 74, 56, 46, (472,75,0): 73, 55, 45, (472,76,0): 73, 55, 45, (472,77,0): 72, 54, 44, (472,78,0): 72, 54, 44, (472,79,0): 71, 53, 41, (472,80,0): 72, 52, 41, (472,81,0): 72, 53, 39, (472,82,0): 72, 53, 39, (472,83,0): 71, 52, 38, (472,84,0): 71, 52, 38, (472,85,0): 70, 51, 37, (472,86,0): 70, 51, 37, (472,87,0): 69, 50, 36, (472,88,0): 65, 46, 32, (472,89,0): 64, 45, 31, (472,90,0): 62, 43, 29, (472,91,0): 61, 42, 28, (472,92,0): 60, 41, 27, (472,93,0): 61, 42, 28, (472,94,0): 61, 42, 28, (472,95,0): 62, 43, 29, (472,96,0): 63, 44, 30, (472,97,0): 62, 43, 29, (472,98,0): 62, 43, 29, (472,99,0): 61, 42, 28, (472,100,0): 60, 41, 27, (472,101,0): 59, 40, 26, (472,102,0): 59, 40, 26, (472,103,0): 58, 39, 25, (472,104,0): 62, 43, 29, (472,105,0): 62, 43, 29, (472,106,0): 61, 42, 28, (472,107,0): 61, 42, 28, (472,108,0): 60, 41, 27, (472,109,0): 60, 41, 27, (472,110,0): 59, 40, 26, (472,111,0): 59, 40, 26, (472,112,0): 59, 39, 30, (472,113,0): 59, 39, 30, (472,114,0): 58, 38, 29, (472,115,0): 58, 38, 29, (472,116,0): 57, 37, 28, (472,117,0): 57, 37, 28, (472,118,0): 56, 36, 27, (472,119,0): 56, 36, 27, (472,120,0): 56, 36, 27, (472,121,0): 56, 36, 27, (472,122,0): 55, 35, 26, (472,123,0): 55, 35, 26, (472,124,0): 54, 34, 25, (472,125,0): 54, 34, 25, (472,126,0): 53, 33, 24, (472,127,0): 53, 33, 24, (472,128,0): 54, 35, 29, (472,129,0): 54, 35, 29, (472,130,0): 54, 35, 29, (472,131,0): 54, 35, 29, (472,132,0): 54, 35, 29, (472,133,0): 54, 35, 29, (472,134,0): 54, 35, 29, (472,135,0): 54, 35, 29, (472,136,0): 56, 37, 31, (472,137,0): 56, 37, 31, (472,138,0): 56, 37, 31, (472,139,0): 56, 37, 31, (472,140,0): 56, 37, 31, (472,141,0): 56, 37, 31, (472,142,0): 56, 37, 31, (472,143,0): 55, 38, 31, (472,144,0): 55, 37, 33, (472,145,0): 53, 38, 33, (472,146,0): 53, 38, 33, (472,147,0): 53, 38, 33, (472,148,0): 53, 38, 33, (472,149,0): 53, 38, 33, (472,150,0): 53, 38, 33, (472,151,0): 53, 38, 33, (472,152,0): 55, 40, 35, (472,153,0): 55, 40, 35, (472,154,0): 55, 40, 35, (472,155,0): 55, 40, 35, (472,156,0): 55, 40, 35, (472,157,0): 55, 40, 35, (472,158,0): 55, 40, 35, (472,159,0): 55, 40, 35, (472,160,0): 55, 42, 36, (472,161,0): 56, 43, 37, (472,162,0): 56, 43, 37, (472,163,0): 57, 44, 38, (472,164,0): 57, 44, 38, (472,165,0): 58, 45, 39, (472,166,0): 58, 45, 39, (472,167,0): 58, 45, 39, (472,168,0): 59, 46, 40, (472,169,0): 60, 47, 41, (472,170,0): 61, 48, 42, (472,171,0): 62, 49, 43, (472,172,0): 63, 50, 44, (472,173,0): 65, 52, 46, (472,174,0): 66, 53, 47, (472,175,0): 64, 53, 47, (472,176,0): 65, 54, 52, (472,177,0): 64, 54, 52, (472,178,0): 64, 54, 52, (472,179,0): 64, 54, 52, (472,180,0): 64, 54, 52, (472,181,0): 64, 54, 52, (472,182,0): 64, 54, 52, (472,183,0): 64, 54, 52, (472,184,0): 64, 54, 52, (472,185,0): 64, 54, 52, (472,186,0): 65, 55, 53, (472,187,0): 65, 55, 53, (472,188,0): 66, 56, 54, (472,189,0): 66, 56, 54, (472,190,0): 67, 57, 55, (472,191,0): 67, 57, 55, (472,192,0): 64, 54, 53, (472,193,0): 64, 54, 53, (472,194,0): 64, 54, 53, (472,195,0): 64, 54, 53, (472,196,0): 64, 54, 53, (472,197,0): 64, 54, 53, (472,198,0): 64, 54, 53, (472,199,0): 64, 54, 53, (472,200,0): 64, 54, 53, (472,201,0): 64, 54, 53, (472,202,0): 64, 54, 53, (472,203,0): 64, 54, 53, (472,204,0): 64, 54, 53, (472,205,0): 64, 54, 53, (472,206,0): 64, 54, 53, (472,207,0): 64, 54, 53, (472,208,0): 60, 49, 53, (472,209,0): 60, 49, 53, (472,210,0): 60, 49, 53, (472,211,0): 60, 49, 53, (472,212,0): 60, 49, 53, (472,213,0): 60, 49, 53, (472,214,0): 60, 49, 53, (472,215,0): 60, 49, 53, (472,216,0): 60, 49, 53, (472,217,0): 60, 49, 53, (472,218,0): 60, 49, 53, (472,219,0): 61, 50, 54, (472,220,0): 62, 51, 55, (472,221,0): 62, 51, 55, (472,222,0): 62, 51, 55, (472,223,0): 64, 52, 56, (472,224,0): 66, 51, 56, (472,225,0): 67, 52, 57, (472,226,0): 68, 51, 57, (472,227,0): 69, 52, 58, (472,228,0): 72, 53, 59, (472,229,0): 73, 54, 60, (472,230,0): 75, 54, 61, (472,231,0): 77, 54, 62, (472,232,0): 80, 54, 63, (472,233,0): 81, 55, 64, (472,234,0): 84, 57, 66, (472,235,0): 87, 60, 69, (472,236,0): 92, 62, 72, (472,237,0): 95, 65, 75, (472,238,0): 98, 66, 77, (472,239,0): 100, 67, 76, (472,240,0): 111, 75, 79, (472,241,0): 117, 77, 78, (472,242,0): 123, 81, 83, (472,243,0): 130, 86, 87, (472,244,0): 135, 90, 87, (472,245,0): 138, 93, 90, (472,246,0): 138, 95, 89, (472,247,0): 135, 96, 89, (472,248,0): 128, 94, 85, (472,249,0): 123, 93, 83, (472,250,0): 121, 92, 84, (472,251,0): 118, 91, 82, (472,252,0): 119, 90, 86, (472,253,0): 122, 91, 89, (472,254,0): 125, 91, 90, (472,255,0): 127, 93, 94, (472,256,0): 128, 93, 99, (472,257,0): 130, 93, 100, (472,258,0): 132, 96, 100, (472,259,0): 134, 98, 100, (472,260,0): 137, 101, 103, (472,261,0): 139, 103, 103, (472,262,0): 143, 105, 104, (472,263,0): 142, 107, 105, (472,264,0): 138, 103, 101, (472,265,0): 135, 101, 99, (472,266,0): 131, 99, 100, (472,267,0): 127, 99, 98, (472,268,0): 125, 99, 100, (472,269,0): 123, 101, 103, (472,270,0): 124, 102, 105, (472,271,0): 124, 103, 108, (472,272,0): 118, 98, 109, (472,273,0): 117, 99, 111, (472,274,0): 117, 99, 113, (472,275,0): 117, 101, 114, (472,276,0): 118, 102, 115, (472,277,0): 117, 103, 118, (472,278,0): 116, 104, 118, (472,279,0): 117, 105, 119, (472,280,0): 121, 108, 125, (472,281,0): 121, 108, 125, (472,282,0): 122, 108, 125, (472,283,0): 125, 108, 126, (472,284,0): 125, 108, 127, (472,285,0): 126, 107, 127, (472,286,0): 126, 107, 127, (472,287,0): 130, 107, 125, (472,288,0): 132, 105, 114, (472,289,0): 134, 105, 110, (472,290,0): 133, 104, 109, (472,291,0): 132, 103, 108, (472,292,0): 133, 102, 108, (472,293,0): 135, 102, 109, (472,294,0): 139, 104, 111, (472,295,0): 140, 103, 111, (472,296,0): 142, 102, 111, (472,297,0): 145, 104, 112, (472,298,0): 151, 105, 116, (472,299,0): 153, 107, 117, (472,300,0): 156, 109, 119, (472,301,0): 158, 108, 119, (472,302,0): 159, 107, 119, (472,303,0): 157, 107, 116, (472,304,0): 144, 99, 102, (472,305,0): 133, 91, 92, (472,306,0): 122, 82, 82, (472,307,0): 113, 77, 77, (472,308,0): 107, 75, 76, (472,309,0): 99, 70, 72, (472,310,0): 86, 61, 64, (472,311,0): 75, 53, 56, (472,312,0): 73, 54, 58, (472,313,0): 65, 50, 55, (472,314,0): 57, 45, 49, (472,315,0): 52, 39, 46, (472,316,0): 50, 37, 46, (472,317,0): 47, 34, 43, (472,318,0): 43, 30, 40, (472,319,0): 39, 26, 36, (472,320,0): 34, 22, 32, (472,321,0): 33, 21, 31, (472,322,0): 31, 19, 29, (472,323,0): 29, 17, 27, (472,324,0): 26, 16, 27, (472,325,0): 25, 15, 26, (472,326,0): 24, 14, 25, (472,327,0): 24, 14, 25, (472,328,0): 19, 11, 24, (472,329,0): 19, 11, 24, (472,330,0): 19, 13, 27, (472,331,0): 20, 14, 28, (472,332,0): 21, 15, 29, (472,333,0): 21, 15, 29, (472,334,0): 20, 16, 31, (472,335,0): 20, 16, 31, (472,336,0): 19, 12, 28, (472,337,0): 19, 12, 28, (472,338,0): 19, 12, 28, (472,339,0): 19, 12, 28, (472,340,0): 19, 12, 28, (472,341,0): 19, 12, 28, (472,342,0): 19, 12, 28, (472,343,0): 19, 12, 28, (472,344,0): 20, 13, 29, (472,345,0): 19, 12, 28, (472,346,0): 18, 11, 27, (472,347,0): 17, 10, 26, (472,348,0): 17, 10, 26, (472,349,0): 18, 11, 27, (472,350,0): 19, 12, 28, (472,351,0): 20, 13, 29, (472,352,0): 22, 11, 28, (472,353,0): 22, 11, 28, (472,354,0): 20, 11, 28, (472,355,0): 20, 11, 28, (472,356,0): 20, 11, 28, (472,357,0): 20, 11, 28, (472,358,0): 19, 12, 28, (472,359,0): 19, 12, 28, (472,360,0): 16, 12, 27, (472,361,0): 16, 12, 27, (472,362,0): 17, 13, 28, (472,363,0): 17, 13, 28, (472,364,0): 17, 15, 29, (472,365,0): 18, 16, 30, (472,366,0): 19, 17, 31, (472,367,0): 20, 16, 30, (472,368,0): 26, 15, 31, (472,369,0): 27, 15, 29, (472,370,0): 28, 16, 30, (472,371,0): 29, 17, 31, (472,372,0): 31, 17, 30, (472,373,0): 32, 18, 31, (472,374,0): 35, 19, 32, (472,375,0): 35, 19, 32, (472,376,0): 34, 18, 29, (472,377,0): 34, 18, 29, (472,378,0): 35, 18, 28, (472,379,0): 35, 18, 28, (472,380,0): 37, 17, 28, (472,381,0): 37, 17, 28, (472,382,0): 37, 17, 26, (472,383,0): 35, 18, 28, (472,384,0): 36, 20, 31, (472,385,0): 33, 20, 30, (472,386,0): 34, 18, 29, (472,387,0): 34, 18, 29, (472,388,0): 35, 19, 30, (472,389,0): 36, 20, 30, (472,390,0): 39, 22, 32, (472,391,0): 40, 23, 33, (472,392,0): 41, 21, 30, (472,393,0): 41, 21, 30, (472,394,0): 41, 21, 30, (472,395,0): 41, 21, 30, (472,396,0): 42, 21, 30, (472,397,0): 42, 21, 28, (472,398,0): 42, 21, 28, (472,399,0): 42, 21, 26, (472,400,0): 41, 22, 24, (472,401,0): 42, 23, 25, (472,402,0): 43, 24, 26, (472,403,0): 44, 25, 27, (472,404,0): 45, 26, 28, (472,405,0): 45, 26, 28, (472,406,0): 44, 25, 27, (472,407,0): 43, 24, 26, (472,408,0): 45, 26, 28, (472,409,0): 45, 26, 28, (472,410,0): 45, 26, 28, (472,411,0): 45, 26, 28, (472,412,0): 45, 26, 28, (472,413,0): 45, 26, 28, (472,414,0): 45, 26, 28, (472,415,0): 45, 26, 28, (472,416,0): 49, 30, 32, (472,417,0): 48, 29, 31, (472,418,0): 49, 28, 33, (472,419,0): 48, 27, 32, (472,420,0): 48, 27, 32, (472,421,0): 49, 28, 33, (472,422,0): 50, 27, 33, (472,423,0): 51, 28, 34, (472,424,0): 56, 30, 39, (472,425,0): 57, 31, 40, (472,426,0): 59, 33, 42, (472,427,0): 62, 36, 47, (472,428,0): 64, 36, 48, (472,429,0): 65, 37, 49, (472,430,0): 65, 37, 51, (472,431,0): 64, 38, 51, (472,432,0): 64, 38, 51, (472,433,0): 63, 39, 52, (472,434,0): 65, 39, 50, (472,435,0): 67, 41, 52, (472,436,0): 70, 44, 55, (472,437,0): 73, 47, 58, (472,438,0): 77, 50, 59, (472,439,0): 78, 51, 60, (472,440,0): 78, 48, 58, (472,441,0): 76, 46, 54, (472,442,0): 72, 42, 50, (472,443,0): 69, 39, 47, (472,444,0): 68, 37, 43, (472,445,0): 69, 38, 44, (472,446,0): 71, 40, 46, (472,447,0): 72, 41, 47, (472,448,0): 66, 35, 41, (472,449,0): 69, 38, 44, (472,450,0): 72, 42, 50, (472,451,0): 72, 45, 52, (472,452,0): 72, 44, 56, (472,453,0): 67, 44, 54, (472,454,0): 63, 39, 52, (472,455,0): 59, 37, 49, (472,456,0): 55, 35, 46, (472,457,0): 55, 35, 46, (472,458,0): 55, 35, 44, (472,459,0): 55, 36, 42, (472,460,0): 57, 34, 42, (472,461,0): 58, 35, 41, (472,462,0): 60, 35, 39, (472,463,0): 58, 36, 39, (472,464,0): 55, 35, 37, (472,465,0): 55, 36, 38, (472,466,0): 57, 37, 39, (472,467,0): 58, 38, 40, (472,468,0): 59, 39, 41, (472,469,0): 59, 39, 41, (472,470,0): 59, 37, 40, (472,471,0): 59, 37, 40, (472,472,0): 61, 36, 40, (472,473,0): 61, 36, 40, (472,474,0): 61, 36, 40, (472,475,0): 59, 34, 38, (472,476,0): 57, 30, 35, (472,477,0): 54, 27, 32, (472,478,0): 51, 24, 29, (472,479,0): 49, 24, 28, (472,480,0): 40, 15, 21, (472,481,0): 39, 16, 22, (472,482,0): 39, 18, 23, (472,483,0): 43, 18, 22, (472,484,0): 47, 18, 23, (472,485,0): 50, 15, 21, (472,486,0): 56, 11, 18, (472,487,0): 58, 8, 17, (472,488,0): 68, 17, 24, (472,489,0): 76, 25, 30, (472,490,0): 76, 27, 30, (472,491,0): 71, 21, 24, (472,492,0): 73, 17, 20, (472,493,0): 84, 19, 25, (472,494,0): 94, 17, 27, (472,495,0): 93, 12, 27, (472,496,0): 85, 12, 32, (472,497,0): 89, 20, 41, (472,498,0): 93, 24, 43, (472,499,0): 102, 27, 47, (472,500,0): 110, 25, 44, (472,501,0): 109, 10, 31, (472,502,0): 136, 16, 41, (472,503,0): 182, 49, 76, (472,504,0): 178, 38, 65, (472,505,0): 163, 19, 46, (472,506,0): 147, 5, 29, (472,507,0): 153, 9, 34, (472,508,0): 178, 25, 53, (472,509,0): 203, 40, 71, (472,510,0): 221, 41, 78, (472,511,0): 229, 39, 85, (472,512,0): 213, 20, 75, (472,513,0): 207, 13, 74, (472,514,0): 220, 30, 90, (472,515,0): 235, 43, 100, (472,516,0): 238, 40, 93, (472,517,0): 236, 28, 78, (472,518,0): 241, 25, 74, (472,519,0): 255, 47, 105, (472,520,0): 255, 59, 134, (472,521,0): 250, 73, 164, (472,522,0): 251, 98, 212, (472,523,0): 255, 118, 241, (472,524,0): 249, 109, 234, (472,525,0): 236, 84, 203, (472,526,0): 244, 71, 179, (472,527,0): 255, 76, 183, (472,528,0): 253, 80, 195, (472,529,0): 255, 115, 230, (472,530,0): 255, 118, 225, (472,531,0): 249, 108, 212, (472,532,0): 255, 119, 225, (472,533,0): 255, 117, 234, (472,534,0): 245, 98, 230, (472,535,0): 246, 95, 234, (472,536,0): 254, 101, 241, (472,537,0): 248, 99, 229, (472,538,0): 255, 119, 231, (472,539,0): 255, 140, 231, (472,540,0): 255, 137, 204, (472,541,0): 255, 119, 173, (472,542,0): 255, 103, 145, (472,543,0): 246, 88, 123, (472,544,0): 244, 91, 122, (472,545,0): 242, 93, 123, (472,546,0): 233, 88, 121, (472,547,0): 229, 94, 127, (472,548,0): 222, 103, 141, (472,549,0): 195, 93, 132, (472,550,0): 173, 81, 120, (472,551,0): 177, 87, 123, (472,552,0): 176, 77, 108, (472,553,0): 179, 71, 94, (472,554,0): 200, 82, 96, (472,555,0): 215, 90, 98, (472,556,0): 204, 77, 86, (472,557,0): 201, 70, 84, (472,558,0): 207, 78, 100, (472,559,0): 197, 83, 108, (472,560,0): 153, 74, 96, (472,561,0): 138, 76, 97, (472,562,0): 130, 73, 92, (472,563,0): 121, 70, 87, (472,564,0): 112, 68, 83, (472,565,0): 106, 65, 79, (472,566,0): 102, 64, 77, (472,567,0): 102, 66, 78, (472,568,0): 97, 61, 73, (472,569,0): 101, 65, 77, (472,570,0): 107, 69, 82, (472,571,0): 110, 74, 86, (472,572,0): 108, 75, 86, (472,573,0): 104, 72, 83, (472,574,0): 96, 69, 78, (472,575,0): 93, 66, 73, (472,576,0): 93, 60, 67, (472,577,0): 95, 60, 67, (472,578,0): 92, 59, 66, (472,579,0): 91, 58, 65, (472,580,0): 89, 56, 63, (472,581,0): 86, 53, 60, (472,582,0): 82, 51, 57, (472,583,0): 81, 50, 56, (472,584,0): 79, 50, 55, (472,585,0): 77, 48, 53, (472,586,0): 75, 46, 51, (472,587,0): 72, 43, 48, (472,588,0): 68, 41, 46, (472,589,0): 67, 40, 45, (472,590,0): 67, 40, 45, (472,591,0): 67, 40, 45, (472,592,0): 69, 38, 44, (472,593,0): 67, 36, 42, (472,594,0): 63, 34, 39, (472,595,0): 58, 31, 36, (472,596,0): 54, 27, 32, (472,597,0): 49, 24, 28, (472,598,0): 45, 23, 26, (472,599,0): 43, 21, 24, (473,0,0): 55, 74, 68, (473,1,0): 55, 74, 68, (473,2,0): 57, 74, 68, (473,3,0): 58, 75, 69, (473,4,0): 58, 75, 69, (473,5,0): 59, 76, 70, (473,6,0): 60, 75, 70, (473,7,0): 61, 76, 71, (473,8,0): 64, 76, 72, (473,9,0): 64, 76, 72, (473,10,0): 64, 76, 72, (473,11,0): 64, 76, 72, (473,12,0): 65, 76, 72, (473,13,0): 65, 76, 72, (473,14,0): 65, 76, 72, (473,15,0): 65, 76, 72, (473,16,0): 64, 73, 68, (473,17,0): 63, 73, 65, (473,18,0): 63, 70, 63, (473,19,0): 61, 68, 61, (473,20,0): 60, 67, 60, (473,21,0): 60, 67, 60, (473,22,0): 62, 67, 61, (473,23,0): 62, 67, 61, (473,24,0): 63, 65, 60, (473,25,0): 64, 66, 61, (473,26,0): 65, 67, 62, (473,27,0): 66, 68, 63, (473,28,0): 68, 69, 64, (473,29,0): 70, 71, 66, (473,30,0): 70, 71, 66, (473,31,0): 71, 72, 67, (473,32,0): 70, 69, 64, (473,33,0): 70, 69, 64, (473,34,0): 72, 69, 64, (473,35,0): 72, 69, 64, (473,36,0): 72, 69, 62, (473,37,0): 71, 68, 61, (473,38,0): 72, 67, 61, (473,39,0): 72, 67, 61, (473,40,0): 75, 68, 60, (473,41,0): 75, 68, 60, (473,42,0): 75, 68, 58, (473,43,0): 75, 68, 58, (473,44,0): 76, 67, 58, (473,45,0): 76, 67, 58, (473,46,0): 76, 68, 57, (473,47,0): 76, 68, 57, (473,48,0): 77, 68, 59, (473,49,0): 77, 68, 59, (473,50,0): 77, 68, 59, (473,51,0): 77, 68, 59, (473,52,0): 77, 68, 59, (473,53,0): 77, 68, 59, (473,54,0): 78, 68, 59, (473,55,0): 78, 68, 59, (473,56,0): 78, 65, 57, (473,57,0): 78, 65, 57, (473,58,0): 79, 64, 57, (473,59,0): 78, 63, 56, (473,60,0): 77, 62, 55, (473,61,0): 77, 62, 55, (473,62,0): 77, 62, 55, (473,63,0): 76, 61, 54, (473,64,0): 76, 57, 50, (473,65,0): 76, 58, 48, (473,66,0): 76, 58, 48, (473,67,0): 75, 57, 47, (473,68,0): 75, 57, 47, (473,69,0): 74, 56, 46, (473,70,0): 74, 56, 46, (473,71,0): 73, 55, 45, (473,72,0): 74, 56, 46, (473,73,0): 74, 56, 46, (473,74,0): 73, 55, 45, (473,75,0): 73, 55, 45, (473,76,0): 72, 54, 44, (473,77,0): 72, 54, 44, (473,78,0): 71, 53, 43, (473,79,0): 71, 53, 43, (473,80,0): 72, 52, 41, (473,81,0): 72, 53, 39, (473,82,0): 71, 52, 38, (473,83,0): 71, 52, 38, (473,84,0): 70, 51, 37, (473,85,0): 70, 51, 37, (473,86,0): 69, 50, 36, (473,87,0): 69, 50, 36, (473,88,0): 65, 46, 32, (473,89,0): 64, 45, 31, (473,90,0): 62, 43, 29, (473,91,0): 61, 42, 28, (473,92,0): 60, 41, 27, (473,93,0): 61, 42, 28, (473,94,0): 61, 42, 28, (473,95,0): 62, 43, 29, (473,96,0): 63, 44, 30, (473,97,0): 62, 43, 29, (473,98,0): 62, 43, 29, (473,99,0): 61, 42, 28, (473,100,0): 60, 41, 27, (473,101,0): 60, 41, 27, (473,102,0): 59, 40, 26, (473,103,0): 59, 40, 26, (473,104,0): 62, 43, 29, (473,105,0): 61, 42, 28, (473,106,0): 61, 42, 28, (473,107,0): 60, 41, 27, (473,108,0): 60, 41, 27, (473,109,0): 59, 40, 26, (473,110,0): 59, 40, 26, (473,111,0): 59, 40, 26, (473,112,0): 59, 39, 30, (473,113,0): 58, 38, 29, (473,114,0): 58, 38, 29, (473,115,0): 57, 37, 28, (473,116,0): 57, 37, 28, (473,117,0): 56, 36, 27, (473,118,0): 56, 36, 27, (473,119,0): 56, 36, 27, (473,120,0): 56, 36, 27, (473,121,0): 56, 36, 27, (473,122,0): 56, 36, 27, (473,123,0): 55, 35, 26, (473,124,0): 55, 35, 26, (473,125,0): 54, 34, 25, (473,126,0): 54, 34, 25, (473,127,0): 53, 33, 24, (473,128,0): 54, 35, 29, (473,129,0): 54, 35, 29, (473,130,0): 54, 35, 29, (473,131,0): 54, 35, 29, (473,132,0): 54, 35, 29, (473,133,0): 54, 35, 29, (473,134,0): 54, 35, 29, (473,135,0): 54, 35, 29, (473,136,0): 56, 37, 31, (473,137,0): 56, 37, 31, (473,138,0): 56, 37, 31, (473,139,0): 56, 37, 31, (473,140,0): 56, 37, 31, (473,141,0): 56, 37, 31, (473,142,0): 56, 37, 31, (473,143,0): 55, 38, 31, (473,144,0): 55, 37, 33, (473,145,0): 53, 38, 33, (473,146,0): 53, 38, 33, (473,147,0): 53, 38, 33, (473,148,0): 53, 38, 33, (473,149,0): 53, 38, 33, (473,150,0): 53, 38, 33, (473,151,0): 53, 38, 33, (473,152,0): 55, 40, 35, (473,153,0): 55, 40, 35, (473,154,0): 55, 40, 35, (473,155,0): 55, 40, 35, (473,156,0): 55, 40, 35, (473,157,0): 55, 40, 35, (473,158,0): 55, 40, 35, (473,159,0): 55, 40, 35, (473,160,0): 55, 42, 36, (473,161,0): 56, 43, 37, (473,162,0): 56, 43, 37, (473,163,0): 56, 43, 37, (473,164,0): 57, 44, 38, (473,165,0): 57, 44, 38, (473,166,0): 58, 45, 39, (473,167,0): 58, 45, 39, (473,168,0): 59, 46, 40, (473,169,0): 60, 47, 41, (473,170,0): 61, 48, 42, (473,171,0): 62, 49, 43, (473,172,0): 63, 50, 44, (473,173,0): 64, 51, 45, (473,174,0): 65, 52, 46, (473,175,0): 64, 53, 47, (473,176,0): 65, 54, 52, (473,177,0): 64, 54, 52, (473,178,0): 64, 54, 52, (473,179,0): 64, 54, 52, (473,180,0): 64, 54, 52, (473,181,0): 64, 54, 52, (473,182,0): 64, 54, 52, (473,183,0): 64, 54, 52, (473,184,0): 64, 54, 52, (473,185,0): 64, 54, 52, (473,186,0): 64, 54, 52, (473,187,0): 65, 55, 53, (473,188,0): 65, 55, 53, (473,189,0): 66, 56, 54, (473,190,0): 66, 56, 54, (473,191,0): 66, 56, 54, (473,192,0): 64, 54, 53, (473,193,0): 64, 54, 53, (473,194,0): 64, 54, 53, (473,195,0): 64, 54, 53, (473,196,0): 64, 54, 53, (473,197,0): 64, 54, 53, (473,198,0): 64, 54, 53, (473,199,0): 64, 54, 53, (473,200,0): 63, 53, 52, (473,201,0): 63, 53, 52, (473,202,0): 63, 53, 52, (473,203,0): 63, 53, 52, (473,204,0): 63, 53, 52, (473,205,0): 63, 53, 52, (473,206,0): 63, 53, 52, (473,207,0): 63, 53, 54, (473,208,0): 60, 49, 53, (473,209,0): 60, 49, 53, (473,210,0): 60, 49, 53, (473,211,0): 60, 49, 53, (473,212,0): 60, 49, 53, (473,213,0): 60, 49, 53, (473,214,0): 60, 49, 53, (473,215,0): 60, 49, 53, (473,216,0): 59, 48, 52, (473,217,0): 60, 49, 53, (473,218,0): 60, 49, 53, (473,219,0): 61, 50, 54, (473,220,0): 61, 50, 54, (473,221,0): 62, 51, 55, (473,222,0): 62, 51, 55, (473,223,0): 62, 51, 55, (473,224,0): 64, 52, 56, (473,225,0): 66, 51, 56, (473,226,0): 68, 51, 57, (473,227,0): 69, 52, 58, (473,228,0): 72, 53, 59, (473,229,0): 73, 54, 60, (473,230,0): 75, 54, 61, (473,231,0): 75, 54, 61, (473,232,0): 78, 55, 63, (473,233,0): 81, 55, 64, (473,234,0): 84, 57, 66, (473,235,0): 87, 60, 69, (473,236,0): 92, 62, 72, (473,237,0): 95, 65, 75, (473,238,0): 98, 66, 77, (473,239,0): 99, 68, 76, (473,240,0): 108, 73, 79, (473,241,0): 112, 76, 78, (473,242,0): 120, 79, 83, (473,243,0): 127, 85, 87, (473,244,0): 133, 89, 88, (473,245,0): 136, 91, 88, (473,246,0): 135, 92, 86, (473,247,0): 132, 93, 86, (473,248,0): 126, 92, 83, (473,249,0): 122, 92, 82, (473,250,0): 119, 90, 82, (473,251,0): 117, 90, 83, (473,252,0): 118, 88, 86, (473,253,0): 119, 89, 89, (473,254,0): 124, 90, 91, (473,255,0): 125, 90, 94, (473,256,0): 125, 93, 98, (473,257,0): 126, 93, 100, (473,258,0): 127, 95, 100, (473,259,0): 131, 96, 100, (473,260,0): 134, 100, 101, (473,261,0): 137, 101, 103, (473,262,0): 139, 103, 103, (473,263,0): 139, 105, 103, (473,264,0): 136, 102, 100, (473,265,0): 132, 101, 99, (473,266,0): 129, 99, 99, (473,267,0): 126, 97, 99, (473,268,0): 123, 97, 98, (473,269,0): 120, 98, 100, (473,270,0): 120, 98, 101, (473,271,0): 119, 100, 104, (473,272,0): 112, 95, 105, (473,273,0): 111, 95, 106, (473,274,0): 112, 96, 107, (473,275,0): 110, 97, 107, (473,276,0): 111, 97, 110, (473,277,0): 112, 98, 111, (473,278,0): 111, 99, 111, (473,279,0): 112, 100, 112, (473,280,0): 115, 103, 115, (473,281,0): 115, 103, 115, (473,282,0): 116, 102, 117, (473,283,0): 117, 103, 118, (473,284,0): 118, 104, 119, (473,285,0): 121, 104, 120, (473,286,0): 121, 104, 120, (473,287,0): 125, 104, 119, (473,288,0): 129, 103, 112, (473,289,0): 131, 101, 109, (473,290,0): 130, 100, 108, (473,291,0): 130, 100, 108, (473,292,0): 131, 100, 108, (473,293,0): 133, 100, 109, (473,294,0): 137, 101, 111, (473,295,0): 139, 101, 112, (473,296,0): 140, 100, 111, (473,297,0): 143, 101, 111, (473,298,0): 146, 102, 115, (473,299,0): 151, 105, 116, (473,300,0): 154, 106, 120, (473,301,0): 156, 106, 118, (473,302,0): 156, 105, 120, (473,303,0): 156, 106, 117, (473,304,0): 146, 101, 104, (473,305,0): 136, 94, 95, (473,306,0): 128, 86, 87, (473,307,0): 121, 83, 82, (473,308,0): 115, 79, 79, (473,309,0): 106, 74, 75, (473,310,0): 94, 65, 67, (473,311,0): 81, 59, 61, (473,312,0): 75, 56, 58, (473,313,0): 68, 52, 55, (473,314,0): 60, 45, 48, (473,315,0): 53, 41, 45, (473,316,0): 50, 37, 44, (473,317,0): 49, 34, 41, (473,318,0): 45, 29, 39, (473,319,0): 42, 26, 36, (473,320,0): 36, 23, 33, (473,321,0): 34, 22, 32, (473,322,0): 32, 20, 30, (473,323,0): 30, 18, 28, (473,324,0): 27, 17, 28, (473,325,0): 25, 15, 26, (473,326,0): 25, 15, 26, (473,327,0): 24, 14, 25, (473,328,0): 19, 11, 24, (473,329,0): 20, 12, 25, (473,330,0): 19, 13, 27, (473,331,0): 20, 14, 28, (473,332,0): 21, 15, 29, (473,333,0): 21, 15, 29, (473,334,0): 20, 16, 31, (473,335,0): 20, 16, 31, (473,336,0): 19, 12, 28, (473,337,0): 19, 12, 28, (473,338,0): 19, 12, 28, (473,339,0): 19, 12, 28, (473,340,0): 19, 12, 28, (473,341,0): 19, 12, 28, (473,342,0): 19, 12, 28, (473,343,0): 19, 12, 28, (473,344,0): 20, 13, 29, (473,345,0): 19, 12, 28, (473,346,0): 18, 11, 27, (473,347,0): 17, 10, 26, (473,348,0): 17, 10, 26, (473,349,0): 18, 11, 27, (473,350,0): 19, 12, 28, (473,351,0): 20, 13, 29, (473,352,0): 22, 11, 28, (473,353,0): 22, 11, 28, (473,354,0): 20, 11, 28, (473,355,0): 20, 11, 28, (473,356,0): 20, 11, 28, (473,357,0): 20, 11, 28, (473,358,0): 19, 12, 28, (473,359,0): 19, 12, 28, (473,360,0): 16, 12, 27, (473,361,0): 16, 12, 27, (473,362,0): 17, 13, 28, (473,363,0): 17, 13, 28, (473,364,0): 17, 15, 29, (473,365,0): 18, 16, 30, (473,366,0): 18, 16, 30, (473,367,0): 20, 16, 30, (473,368,0): 25, 14, 30, (473,369,0): 26, 14, 28, (473,370,0): 27, 15, 29, (473,371,0): 28, 16, 30, (473,372,0): 30, 16, 29, (473,373,0): 31, 17, 30, (473,374,0): 32, 18, 31, (473,375,0): 34, 18, 31, (473,376,0): 34, 18, 29, (473,377,0): 34, 18, 29, (473,378,0): 35, 18, 28, (473,379,0): 35, 18, 28, (473,380,0): 35, 18, 28, (473,381,0): 37, 17, 28, (473,382,0): 37, 17, 26, (473,383,0): 35, 18, 26, (473,384,0): 35, 19, 29, (473,385,0): 32, 19, 29, (473,386,0): 34, 18, 29, (473,387,0): 33, 17, 28, (473,388,0): 34, 18, 28, (473,389,0): 35, 19, 29, (473,390,0): 38, 21, 31, (473,391,0): 39, 22, 32, (473,392,0): 41, 21, 30, (473,393,0): 41, 21, 30, (473,394,0): 41, 21, 30, (473,395,0): 41, 21, 30, (473,396,0): 42, 21, 30, (473,397,0): 42, 21, 30, (473,398,0): 42, 21, 30, (473,399,0): 42, 21, 28, (473,400,0): 40, 21, 25, (473,401,0): 41, 22, 24, (473,402,0): 43, 24, 26, (473,403,0): 44, 25, 27, (473,404,0): 45, 26, 28, (473,405,0): 45, 26, 28, (473,406,0): 44, 25, 27, (473,407,0): 43, 24, 26, (473,408,0): 45, 26, 28, (473,409,0): 45, 26, 28, (473,410,0): 45, 26, 28, (473,411,0): 45, 26, 28, (473,412,0): 45, 26, 28, (473,413,0): 45, 26, 28, (473,414,0): 45, 26, 28, (473,415,0): 45, 26, 28, (473,416,0): 48, 29, 31, (473,417,0): 48, 29, 31, (473,418,0): 49, 28, 33, (473,419,0): 48, 27, 32, (473,420,0): 48, 27, 32, (473,421,0): 49, 28, 33, (473,422,0): 50, 27, 33, (473,423,0): 50, 27, 33, (473,424,0): 53, 27, 36, (473,425,0): 54, 28, 37, (473,426,0): 57, 31, 40, (473,427,0): 59, 33, 42, (473,428,0): 62, 35, 44, (473,429,0): 62, 35, 44, (473,430,0): 62, 34, 46, (473,431,0): 62, 34, 46, (473,432,0): 63, 37, 48, (473,433,0): 61, 37, 50, (473,434,0): 64, 38, 49, (473,435,0): 66, 40, 51, (473,436,0): 69, 43, 54, (473,437,0): 72, 46, 55, (473,438,0): 76, 49, 58, (473,439,0): 78, 51, 60, (473,440,0): 77, 47, 55, (473,441,0): 75, 45, 53, (473,442,0): 71, 41, 49, (473,443,0): 67, 38, 43, (473,444,0): 66, 35, 41, (473,445,0): 66, 35, 41, (473,446,0): 67, 36, 42, (473,447,0): 69, 38, 44, (473,448,0): 66, 35, 41, (473,449,0): 68, 37, 43, (473,450,0): 71, 41, 49, (473,451,0): 71, 44, 51, (473,452,0): 71, 44, 53, (473,453,0): 66, 43, 53, (473,454,0): 62, 38, 51, (473,455,0): 59, 37, 49, (473,456,0): 55, 35, 46, (473,457,0): 55, 35, 44, (473,458,0): 55, 35, 44, (473,459,0): 55, 36, 42, (473,460,0): 58, 35, 41, (473,461,0): 58, 36, 39, (473,462,0): 60, 35, 39, (473,463,0): 58, 36, 39, (473,464,0): 55, 35, 37, (473,465,0): 54, 35, 37, (473,466,0): 56, 36, 38, (473,467,0): 57, 37, 39, (473,468,0): 57, 37, 39, (473,469,0): 58, 38, 40, (473,470,0): 59, 37, 40, (473,471,0): 59, 37, 40, (473,472,0): 61, 36, 40, (473,473,0): 61, 36, 40, (473,474,0): 60, 35, 39, (473,475,0): 59, 34, 38, (473,476,0): 57, 30, 35, (473,477,0): 54, 27, 32, (473,478,0): 52, 25, 30, (473,479,0): 50, 23, 28, (473,480,0): 46, 21, 27, (473,481,0): 43, 20, 26, (473,482,0): 41, 20, 25, (473,483,0): 41, 18, 24, (473,484,0): 43, 16, 21, (473,485,0): 46, 13, 20, (473,486,0): 52, 9, 18, (473,487,0): 55, 8, 16, (473,488,0): 66, 17, 23, (473,489,0): 72, 23, 29, (473,490,0): 74, 25, 29, (473,491,0): 72, 20, 24, (473,492,0): 77, 16, 23, (473,493,0): 89, 18, 26, (473,494,0): 99, 17, 29, (473,495,0): 99, 15, 31, (473,496,0): 88, 13, 34, (473,497,0): 90, 18, 40, (473,498,0): 92, 20, 40, (473,499,0): 100, 25, 45, (473,500,0): 114, 29, 50, (473,501,0): 118, 18, 42, (473,502,0): 135, 17, 43, (473,503,0): 164, 34, 62, (473,504,0): 169, 29, 58, (473,505,0): 160, 15, 44, (473,506,0): 149, 5, 32, (473,507,0): 154, 7, 33, (473,508,0): 171, 18, 46, (473,509,0): 193, 30, 61, (473,510,0): 211, 33, 69, (473,511,0): 218, 33, 75, (473,512,0): 217, 30, 83, (473,513,0): 209, 24, 81, (473,514,0): 207, 28, 84, (473,515,0): 208, 27, 82, (473,516,0): 218, 27, 78, (473,517,0): 235, 33, 83, (473,518,0): 252, 38, 90, (473,519,0): 255, 53, 115, (473,520,0): 255, 64, 139, (473,521,0): 255, 97, 186, (473,522,0): 255, 141, 245, (473,523,0): 255, 160, 255, (473,524,0): 255, 132, 244, (473,525,0): 242, 85, 192, (473,526,0): 244, 58, 157, (473,527,0): 255, 60, 154, (473,528,0): 254, 66, 161, (473,529,0): 255, 95, 191, (473,530,0): 255, 97, 195, (473,531,0): 251, 91, 197, (473,532,0): 255, 102, 219, (473,533,0): 255, 99, 226, (473,534,0): 244, 84, 220, (473,535,0): 248, 86, 223, (473,536,0): 254, 94, 220, (473,537,0): 251, 95, 205, (473,538,0): 255, 114, 202, (473,539,0): 255, 130, 202, (473,540,0): 255, 126, 188, (473,541,0): 255, 119, 176, (473,542,0): 255, 109, 169, (473,543,0): 252, 97, 154, (473,544,0): 241, 89, 136, (473,545,0): 237, 90, 132, (473,546,0): 226, 84, 124, (473,547,0): 217, 87, 125, (473,548,0): 207, 95, 131, (473,549,0): 185, 85, 121, (473,550,0): 168, 73, 113, (473,551,0): 173, 77, 115, (473,552,0): 185, 80, 113, (473,553,0): 196, 79, 106, (473,554,0): 213, 84, 102, (473,555,0): 216, 78, 93, (473,556,0): 204, 62, 78, (473,557,0): 201, 60, 77, (473,558,0): 198, 64, 89, (473,559,0): 177, 63, 88, (473,560,0): 142, 60, 82, (473,561,0): 131, 66, 86, (473,562,0): 126, 65, 83, (473,563,0): 116, 62, 78, (473,564,0): 111, 60, 75, (473,565,0): 106, 62, 75, (473,566,0): 100, 62, 73, (473,567,0): 97, 61, 71, (473,568,0): 97, 61, 71, (473,569,0): 101, 63, 74, (473,570,0): 105, 67, 78, (473,571,0): 108, 70, 81, (473,572,0): 104, 71, 80, (473,573,0): 99, 69, 77, (473,574,0): 92, 67, 73, (473,575,0): 89, 64, 70, (473,576,0): 93, 60, 67, (473,577,0): 95, 60, 67, (473,578,0): 92, 59, 66, (473,579,0): 91, 58, 65, (473,580,0): 89, 56, 63, (473,581,0): 86, 53, 60, (473,582,0): 82, 51, 57, (473,583,0): 81, 50, 56, (473,584,0): 77, 48, 53, (473,585,0): 76, 47, 52, (473,586,0): 73, 44, 49, (473,587,0): 70, 41, 46, (473,588,0): 66, 39, 44, (473,589,0): 65, 38, 43, (473,590,0): 65, 38, 43, (473,591,0): 65, 38, 43, (473,592,0): 67, 36, 42, (473,593,0): 66, 35, 41, (473,594,0): 62, 33, 38, (473,595,0): 57, 30, 35, (473,596,0): 54, 27, 32, (473,597,0): 50, 25, 29, (473,598,0): 46, 24, 27, (473,599,0): 44, 22, 25, (474,0,0): 53, 74, 69, (474,1,0): 54, 75, 70, (474,2,0): 55, 74, 70, (474,3,0): 56, 75, 71, (474,4,0): 56, 75, 71, (474,5,0): 57, 76, 72, (474,6,0): 59, 75, 72, (474,7,0): 59, 75, 72, (474,8,0): 62, 77, 74, (474,9,0): 62, 77, 74, (474,10,0): 62, 77, 74, (474,11,0): 62, 77, 74, (474,12,0): 64, 76, 74, (474,13,0): 64, 76, 74, (474,14,0): 64, 76, 74, (474,15,0): 65, 76, 72, (474,16,0): 64, 73, 68, (474,17,0): 63, 73, 65, (474,18,0): 63, 70, 63, (474,19,0): 61, 68, 61, (474,20,0): 60, 67, 60, (474,21,0): 60, 67, 60, (474,22,0): 61, 66, 60, (474,23,0): 61, 66, 60, (474,24,0): 64, 66, 61, (474,25,0): 64, 66, 61, (474,26,0): 65, 67, 62, (474,27,0): 66, 68, 63, (474,28,0): 68, 69, 64, (474,29,0): 69, 70, 65, (474,30,0): 69, 70, 65, (474,31,0): 70, 71, 66, (474,32,0): 73, 72, 67, (474,33,0): 72, 71, 66, (474,34,0): 74, 71, 66, (474,35,0): 73, 70, 65, (474,36,0): 72, 69, 62, (474,37,0): 71, 68, 61, (474,38,0): 71, 66, 60, (474,39,0): 71, 66, 60, (474,40,0): 74, 67, 59, (474,41,0): 74, 67, 59, (474,42,0): 74, 67, 57, (474,43,0): 74, 67, 57, (474,44,0): 75, 66, 57, (474,45,0): 75, 66, 57, (474,46,0): 75, 67, 56, (474,47,0): 75, 67, 56, (474,48,0): 76, 67, 58, (474,49,0): 76, 67, 58, (474,50,0): 76, 67, 58, (474,51,0): 76, 67, 58, (474,52,0): 76, 67, 58, (474,53,0): 76, 67, 58, (474,54,0): 77, 67, 58, (474,55,0): 77, 67, 58, (474,56,0): 77, 64, 56, (474,57,0): 76, 63, 55, (474,58,0): 77, 62, 55, (474,59,0): 76, 61, 54, (474,60,0): 76, 61, 54, (474,61,0): 75, 60, 53, (474,62,0): 75, 60, 53, (474,63,0): 75, 60, 53, (474,64,0): 77, 58, 51, (474,65,0): 76, 57, 50, (474,66,0): 76, 57, 50, (474,67,0): 75, 56, 49, (474,68,0): 75, 56, 49, (474,69,0): 74, 55, 48, (474,70,0): 74, 55, 48, (474,71,0): 74, 55, 48, (474,72,0): 73, 54, 47, (474,73,0): 73, 54, 47, (474,74,0): 72, 53, 46, (474,75,0): 72, 53, 46, (474,76,0): 71, 52, 45, (474,77,0): 71, 52, 45, (474,78,0): 70, 51, 44, (474,79,0): 70, 52, 42, (474,80,0): 71, 51, 40, (474,81,0): 71, 52, 38, (474,82,0): 70, 51, 37, (474,83,0): 70, 51, 37, (474,84,0): 69, 50, 36, (474,85,0): 69, 50, 36, (474,86,0): 68, 49, 35, (474,87,0): 68, 49, 35, (474,88,0): 65, 46, 32, (474,89,0): 64, 45, 31, (474,90,0): 62, 43, 29, (474,91,0): 61, 42, 28, (474,92,0): 60, 41, 27, (474,93,0): 61, 42, 28, (474,94,0): 61, 42, 28, (474,95,0): 62, 43, 29, (474,96,0): 62, 43, 29, (474,97,0): 62, 43, 29, (474,98,0): 62, 43, 29, (474,99,0): 61, 42, 28, (474,100,0): 61, 42, 28, (474,101,0): 61, 42, 28, (474,102,0): 60, 41, 27, (474,103,0): 60, 41, 27, (474,104,0): 61, 42, 28, (474,105,0): 61, 42, 28, (474,106,0): 61, 42, 28, (474,107,0): 60, 41, 27, (474,108,0): 60, 41, 27, (474,109,0): 59, 40, 26, (474,110,0): 59, 40, 26, (474,111,0): 58, 39, 25, (474,112,0): 58, 38, 29, (474,113,0): 58, 38, 29, (474,114,0): 58, 38, 29, (474,115,0): 57, 37, 28, (474,116,0): 57, 37, 28, (474,117,0): 56, 36, 27, (474,118,0): 56, 36, 27, (474,119,0): 55, 35, 26, (474,120,0): 57, 37, 28, (474,121,0): 56, 36, 27, (474,122,0): 56, 36, 27, (474,123,0): 55, 35, 26, (474,124,0): 55, 35, 26, (474,125,0): 54, 34, 25, (474,126,0): 54, 34, 25, (474,127,0): 54, 34, 25, (474,128,0): 54, 35, 29, (474,129,0): 54, 35, 29, (474,130,0): 54, 35, 29, (474,131,0): 54, 35, 29, (474,132,0): 54, 35, 29, (474,133,0): 54, 35, 29, (474,134,0): 54, 35, 29, (474,135,0): 54, 35, 29, (474,136,0): 56, 37, 31, (474,137,0): 56, 37, 31, (474,138,0): 56, 37, 31, (474,139,0): 56, 37, 31, (474,140,0): 56, 37, 31, (474,141,0): 56, 37, 31, (474,142,0): 56, 37, 31, (474,143,0): 55, 38, 31, (474,144,0): 55, 37, 33, (474,145,0): 53, 38, 33, (474,146,0): 53, 38, 33, (474,147,0): 53, 38, 33, (474,148,0): 53, 38, 33, (474,149,0): 53, 38, 33, (474,150,0): 53, 38, 33, (474,151,0): 53, 38, 33, (474,152,0): 54, 39, 34, (474,153,0): 54, 39, 34, (474,154,0): 54, 39, 34, (474,155,0): 54, 39, 34, (474,156,0): 54, 39, 34, (474,157,0): 54, 39, 34, (474,158,0): 54, 39, 34, (474,159,0): 54, 39, 34, (474,160,0): 55, 42, 36, (474,161,0): 55, 42, 36, (474,162,0): 55, 42, 36, (474,163,0): 56, 43, 37, (474,164,0): 57, 44, 38, (474,165,0): 57, 44, 38, (474,166,0): 57, 44, 38, (474,167,0): 58, 45, 39, (474,168,0): 59, 46, 40, (474,169,0): 59, 46, 40, (474,170,0): 60, 47, 41, (474,171,0): 61, 48, 42, (474,172,0): 62, 49, 43, (474,173,0): 63, 50, 44, (474,174,0): 64, 51, 45, (474,175,0): 62, 51, 45, (474,176,0): 63, 52, 50, (474,177,0): 62, 52, 50, (474,178,0): 62, 52, 50, (474,179,0): 62, 52, 50, (474,180,0): 62, 52, 50, (474,181,0): 62, 52, 50, (474,182,0): 62, 52, 50, (474,183,0): 62, 52, 50, (474,184,0): 62, 52, 50, (474,185,0): 63, 53, 51, (474,186,0): 63, 53, 51, (474,187,0): 64, 54, 52, (474,188,0): 64, 54, 52, (474,189,0): 65, 55, 53, (474,190,0): 65, 55, 53, (474,191,0): 65, 55, 53, (474,192,0): 62, 54, 52, (474,193,0): 62, 54, 52, (474,194,0): 62, 54, 52, (474,195,0): 62, 54, 52, (474,196,0): 62, 54, 52, (474,197,0): 62, 54, 52, (474,198,0): 62, 54, 52, (474,199,0): 62, 54, 52, (474,200,0): 60, 52, 50, (474,201,0): 60, 52, 50, (474,202,0): 60, 52, 50, (474,203,0): 60, 52, 50, (474,204,0): 60, 52, 50, (474,205,0): 60, 52, 50, (474,206,0): 60, 52, 50, (474,207,0): 60, 51, 52, (474,208,0): 58, 49, 52, (474,209,0): 58, 49, 54, (474,210,0): 58, 49, 54, (474,211,0): 58, 49, 54, (474,212,0): 58, 49, 54, (474,213,0): 58, 49, 54, (474,214,0): 58, 49, 54, (474,215,0): 58, 49, 54, (474,216,0): 58, 49, 54, (474,217,0): 58, 49, 54, (474,218,0): 58, 49, 54, (474,219,0): 59, 50, 55, (474,220,0): 59, 50, 55, (474,221,0): 60, 51, 56, (474,222,0): 60, 51, 56, (474,223,0): 61, 50, 56, (474,224,0): 64, 51, 58, (474,225,0): 64, 51, 58, (474,226,0): 67, 52, 59, (474,227,0): 68, 53, 60, (474,228,0): 70, 53, 61, (474,229,0): 73, 53, 62, (474,230,0): 75, 54, 63, (474,231,0): 75, 54, 63, (474,232,0): 78, 55, 65, (474,233,0): 79, 56, 66, (474,234,0): 83, 57, 68, (474,235,0): 86, 58, 70, (474,236,0): 91, 61, 73, (474,237,0): 93, 63, 75, (474,238,0): 95, 65, 77, (474,239,0): 97, 65, 76, (474,240,0): 104, 71, 78, (474,241,0): 109, 74, 80, (474,242,0): 117, 78, 83, (474,243,0): 124, 82, 86, (474,244,0): 129, 85, 86, (474,245,0): 132, 87, 84, (474,246,0): 132, 89, 83, (474,247,0): 130, 89, 83, (474,248,0): 125, 88, 80, (474,249,0): 121, 88, 79, (474,250,0): 118, 88, 80, (474,251,0): 117, 88, 84, (474,252,0): 117, 87, 87, (474,253,0): 117, 87, 89, (474,254,0): 121, 86, 92, (474,255,0): 120, 88, 93, (474,256,0): 121, 90, 96, (474,257,0): 122, 91, 97, (474,258,0): 123, 92, 97, (474,259,0): 126, 94, 97, (474,260,0): 128, 96, 97, (474,261,0): 132, 98, 99, (474,262,0): 134, 100, 99, (474,263,0): 135, 101, 100, (474,264,0): 134, 100, 99, (474,265,0): 131, 100, 98, (474,266,0): 127, 97, 97, (474,267,0): 124, 95, 97, (474,268,0): 120, 94, 97, (474,269,0): 115, 93, 96, (474,270,0): 115, 93, 96, (474,271,0): 113, 94, 100, (474,272,0): 105, 89, 99, (474,273,0): 103, 90, 100, (474,274,0): 104, 91, 101, (474,275,0): 103, 91, 101, (474,276,0): 104, 92, 102, (474,277,0): 104, 92, 102, (474,278,0): 104, 92, 102, (474,279,0): 105, 93, 103, (474,280,0): 106, 94, 104, (474,281,0): 106, 94, 104, (474,282,0): 107, 95, 107, (474,283,0): 109, 97, 109, (474,284,0): 110, 98, 110, (474,285,0): 113, 99, 112, (474,286,0): 114, 100, 113, (474,287,0): 116, 100, 111, (474,288,0): 122, 99, 109, (474,289,0): 125, 98, 107, (474,290,0): 124, 97, 106, (474,291,0): 126, 96, 106, (474,292,0): 126, 96, 106, (474,293,0): 129, 97, 108, (474,294,0): 131, 98, 109, (474,295,0): 134, 98, 110, (474,296,0): 137, 96, 110, (474,297,0): 140, 98, 110, (474,298,0): 143, 99, 114, (474,299,0): 147, 101, 114, (474,300,0): 149, 102, 118, (474,301,0): 151, 103, 117, (474,302,0): 151, 103, 119, (474,303,0): 151, 103, 115, (474,304,0): 147, 102, 107, (474,305,0): 139, 97, 98, (474,306,0): 133, 91, 92, (474,307,0): 128, 88, 88, (474,308,0): 124, 85, 86, (474,309,0): 114, 80, 81, (474,310,0): 102, 72, 74, (474,311,0): 90, 65, 68, (474,312,0): 82, 62, 63, (474,313,0): 73, 57, 58, (474,314,0): 65, 51, 51, (474,315,0): 57, 45, 47, (474,316,0): 56, 41, 44, (474,317,0): 54, 37, 43, (474,318,0): 51, 32, 38, (474,319,0): 46, 29, 37, (474,320,0): 39, 26, 35, (474,321,0): 36, 24, 34, (474,322,0): 33, 21, 31, (474,323,0): 30, 18, 28, (474,324,0): 27, 17, 28, (474,325,0): 26, 16, 27, (474,326,0): 25, 15, 26, (474,327,0): 25, 15, 26, (474,328,0): 21, 13, 26, (474,329,0): 21, 13, 26, (474,330,0): 20, 14, 28, (474,331,0): 20, 14, 28, (474,332,0): 21, 15, 29, (474,333,0): 21, 15, 29, (474,334,0): 20, 16, 31, (474,335,0): 20, 16, 31, (474,336,0): 19, 12, 28, (474,337,0): 19, 12, 28, (474,338,0): 19, 12, 28, (474,339,0): 19, 12, 28, (474,340,0): 19, 12, 28, (474,341,0): 19, 12, 28, (474,342,0): 19, 12, 28, (474,343,0): 19, 12, 28, (474,344,0): 20, 13, 29, (474,345,0): 19, 12, 28, (474,346,0): 18, 11, 27, (474,347,0): 17, 10, 26, (474,348,0): 17, 10, 26, (474,349,0): 18, 11, 27, (474,350,0): 19, 12, 28, (474,351,0): 20, 13, 29, (474,352,0): 22, 11, 28, (474,353,0): 22, 11, 28, (474,354,0): 20, 11, 28, (474,355,0): 20, 11, 28, (474,356,0): 20, 11, 28, (474,357,0): 20, 11, 28, (474,358,0): 19, 12, 28, (474,359,0): 19, 12, 28, (474,360,0): 16, 12, 27, (474,361,0): 16, 12, 27, (474,362,0): 17, 13, 28, (474,363,0): 17, 13, 28, (474,364,0): 17, 15, 29, (474,365,0): 17, 15, 29, (474,366,0): 17, 15, 29, (474,367,0): 18, 14, 28, (474,368,0): 21, 13, 28, (474,369,0): 24, 13, 27, (474,370,0): 25, 14, 28, (474,371,0): 26, 15, 29, (474,372,0): 28, 16, 28, (474,373,0): 29, 17, 29, (474,374,0): 30, 18, 30, (474,375,0): 31, 17, 30, (474,376,0): 32, 19, 29, (474,377,0): 32, 19, 29, (474,378,0): 34, 18, 28, (474,379,0): 34, 18, 28, (474,380,0): 34, 18, 28, (474,381,0): 35, 18, 28, (474,382,0): 35, 18, 26, (474,383,0): 35, 18, 26, (474,384,0): 34, 18, 28, (474,385,0): 31, 18, 27, (474,386,0): 33, 17, 27, (474,387,0): 32, 16, 26, (474,388,0): 33, 17, 27, (474,389,0): 34, 18, 28, (474,390,0): 37, 20, 30, (474,391,0): 38, 21, 31, (474,392,0): 41, 21, 32, (474,393,0): 41, 21, 32, (474,394,0): 41, 21, 32, (474,395,0): 41, 21, 32, (474,396,0): 42, 20, 32, (474,397,0): 42, 20, 32, (474,398,0): 42, 20, 32, (474,399,0): 42, 21, 30, (474,400,0): 40, 21, 25, (474,401,0): 41, 22, 24, (474,402,0): 43, 24, 26, (474,403,0): 44, 25, 27, (474,404,0): 44, 25, 27, (474,405,0): 44, 25, 27, (474,406,0): 43, 24, 26, (474,407,0): 43, 24, 26, (474,408,0): 44, 25, 27, (474,409,0): 44, 25, 27, (474,410,0): 44, 25, 27, (474,411,0): 44, 25, 27, (474,412,0): 44, 25, 27, (474,413,0): 44, 25, 27, (474,414,0): 44, 25, 27, (474,415,0): 44, 25, 27, (474,416,0): 47, 28, 32, (474,417,0): 47, 28, 32, (474,418,0): 48, 27, 32, (474,419,0): 48, 27, 32, (474,420,0): 48, 27, 32, (474,421,0): 48, 27, 32, (474,422,0): 49, 26, 32, (474,423,0): 49, 26, 32, (474,424,0): 51, 26, 32, (474,425,0): 52, 27, 33, (474,426,0): 54, 29, 35, (474,427,0): 56, 31, 37, (474,428,0): 59, 32, 39, (474,429,0): 60, 33, 40, (474,430,0): 60, 33, 42, (474,431,0): 60, 33, 42, (474,432,0): 61, 35, 46, (474,433,0): 61, 35, 46, (474,434,0): 62, 36, 47, (474,435,0): 64, 38, 49, (474,436,0): 68, 41, 50, (474,437,0): 72, 45, 54, (474,438,0): 77, 47, 57, (474,439,0): 79, 49, 57, (474,440,0): 76, 46, 54, (474,441,0): 74, 44, 52, (474,442,0): 71, 40, 46, (474,443,0): 67, 36, 42, (474,444,0): 65, 32, 39, (474,445,0): 64, 32, 37, (474,446,0): 65, 33, 38, (474,447,0): 65, 33, 38, (474,448,0): 65, 34, 39, (474,449,0): 67, 36, 41, (474,450,0): 69, 40, 45, (474,451,0): 70, 43, 50, (474,452,0): 70, 43, 52, (474,453,0): 64, 41, 49, (474,454,0): 61, 38, 48, (474,455,0): 58, 37, 46, (474,456,0): 56, 36, 45, (474,457,0): 56, 36, 45, (474,458,0): 56, 36, 45, (474,459,0): 55, 36, 42, (474,460,0): 57, 34, 40, (474,461,0): 57, 35, 38, (474,462,0): 59, 34, 38, (474,463,0): 57, 35, 37, (474,464,0): 54, 34, 36, (474,465,0): 53, 34, 36, (474,466,0): 54, 34, 36, (474,467,0): 55, 35, 37, (474,468,0): 55, 35, 37, (474,469,0): 56, 36, 38, (474,470,0): 57, 35, 38, (474,471,0): 58, 36, 39, (474,472,0): 60, 35, 39, (474,473,0): 60, 35, 39, (474,474,0): 59, 34, 38, (474,475,0): 58, 33, 37, (474,476,0): 57, 30, 35, (474,477,0): 54, 27, 32, (474,478,0): 52, 25, 30, (474,479,0): 50, 23, 28, (474,480,0): 53, 28, 34, (474,481,0): 48, 25, 33, (474,482,0): 44, 23, 28, (474,483,0): 41, 18, 24, (474,484,0): 42, 15, 20, (474,485,0): 44, 13, 19, (474,486,0): 51, 10, 18, (474,487,0): 54, 9, 16, (474,488,0): 61, 14, 20, (474,489,0): 69, 20, 26, (474,490,0): 71, 22, 26, (474,491,0): 73, 18, 23, (474,492,0): 79, 16, 24, (474,493,0): 92, 19, 30, (474,494,0): 106, 20, 33, (474,495,0): 107, 20, 37, (474,496,0): 91, 14, 34, (474,497,0): 91, 19, 39, (474,498,0): 91, 18, 38, (474,499,0): 99, 22, 42, (474,500,0): 115, 30, 51, (474,501,0): 126, 28, 51, (474,502,0): 132, 18, 44, (474,503,0): 144, 15, 45, (474,504,0): 154, 15, 46, (474,505,0): 153, 10, 40, (474,506,0): 153, 10, 38, (474,507,0): 158, 14, 41, (474,508,0): 165, 16, 45, (474,509,0): 174, 17, 48, (474,510,0): 187, 16, 50, (474,511,0): 195, 19, 58, (474,512,0): 207, 31, 77, (474,513,0): 198, 26, 74, (474,514,0): 187, 21, 69, (474,515,0): 178, 10, 59, (474,516,0): 194, 14, 62, (474,517,0): 224, 32, 83, (474,518,0): 246, 37, 94, (474,519,0): 251, 41, 106, (474,520,0): 254, 58, 134, (474,521,0): 255, 99, 184, (474,522,0): 255, 152, 245, (474,523,0): 255, 170, 255, (474,524,0): 255, 136, 230, (474,525,0): 243, 83, 171, (474,526,0): 243, 50, 131, (474,527,0): 253, 48, 123, (474,528,0): 249, 52, 124, (474,529,0): 255, 70, 148, (474,530,0): 252, 72, 163, (474,531,0): 248, 72, 180, (474,532,0): 255, 83, 209, (474,533,0): 248, 76, 212, (474,534,0): 240, 65, 202, (474,535,0): 249, 75, 199, (474,536,0): 245, 74, 176, (474,537,0): 246, 83, 162, (474,538,0): 255, 103, 160, (474,539,0): 255, 111, 161, (474,540,0): 252, 107, 164, (474,541,0): 255, 108, 178, (474,542,0): 255, 105, 195, (474,543,0): 249, 94, 185, (474,544,0): 241, 90, 161, (474,545,0): 237, 89, 147, (474,546,0): 224, 82, 132, (474,547,0): 212, 83, 124, (474,548,0): 202, 88, 124, (474,549,0): 185, 81, 116, (474,550,0): 173, 73, 109, (474,551,0): 177, 75, 112, (474,552,0): 188, 77, 110, (474,553,0): 201, 81, 108, (474,554,0): 214, 81, 102, (474,555,0): 213, 68, 85, (474,556,0): 207, 54, 74, (474,557,0): 207, 59, 81, (474,558,0): 192, 60, 83, (474,559,0): 158, 49, 72, (474,560,0): 134, 50, 73, (474,561,0): 128, 61, 79, (474,562,0): 126, 62, 79, (474,563,0): 116, 58, 73, (474,564,0): 111, 57, 71, (474,565,0): 110, 64, 75, (474,566,0): 104, 64, 73, (474,567,0): 96, 59, 67, (474,568,0): 100, 63, 71, (474,569,0): 101, 64, 72, (474,570,0): 105, 65, 74, (474,571,0): 106, 66, 75, (474,572,0): 102, 67, 74, (474,573,0): 97, 66, 72, (474,574,0): 90, 65, 69, (474,575,0): 87, 62, 66, (474,576,0): 93, 60, 67, (474,577,0): 95, 60, 67, (474,578,0): 92, 59, 66, (474,579,0): 91, 58, 65, (474,580,0): 89, 56, 63, (474,581,0): 86, 53, 60, (474,582,0): 82, 51, 57, (474,583,0): 81, 50, 56, (474,584,0): 75, 46, 51, (474,585,0): 74, 45, 50, (474,586,0): 71, 42, 47, (474,587,0): 68, 39, 44, (474,588,0): 64, 37, 42, (474,589,0): 62, 35, 40, (474,590,0): 62, 35, 40, (474,591,0): 62, 35, 40, (474,592,0): 64, 33, 39, (474,593,0): 63, 32, 38, (474,594,0): 61, 32, 37, (474,595,0): 56, 29, 34, (474,596,0): 54, 27, 32, (474,597,0): 51, 26, 30, (474,598,0): 47, 25, 28, (474,599,0): 46, 24, 27, (475,0,0): 53, 74, 69, (475,1,0): 53, 74, 69, (475,2,0): 54, 73, 69, (475,3,0): 55, 74, 70, (475,4,0): 56, 75, 71, (475,5,0): 56, 75, 71, (475,6,0): 58, 74, 71, (475,7,0): 59, 75, 72, (475,8,0): 63, 78, 75, (475,9,0): 63, 78, 75, (475,10,0): 63, 78, 75, (475,11,0): 63, 78, 75, (475,12,0): 65, 77, 75, (475,13,0): 65, 77, 75, (475,14,0): 65, 77, 75, (475,15,0): 65, 77, 73, (475,16,0): 64, 73, 68, (475,17,0): 63, 73, 65, (475,18,0): 63, 70, 63, (475,19,0): 61, 68, 61, (475,20,0): 59, 66, 59, (475,21,0): 59, 66, 59, (475,22,0): 60, 65, 59, (475,23,0): 60, 65, 59, (475,24,0): 64, 66, 61, (475,25,0): 64, 66, 61, (475,26,0): 65, 67, 62, (475,27,0): 65, 67, 62, (475,28,0): 67, 68, 63, (475,29,0): 68, 69, 64, (475,30,0): 68, 69, 64, (475,31,0): 69, 70, 65, (475,32,0): 74, 73, 68, (475,33,0): 73, 72, 67, (475,34,0): 75, 72, 67, (475,35,0): 73, 70, 65, (475,36,0): 72, 69, 62, (475,37,0): 71, 68, 61, (475,38,0): 71, 66, 60, (475,39,0): 70, 65, 59, (475,40,0): 73, 66, 58, (475,41,0): 73, 66, 58, (475,42,0): 73, 66, 56, (475,43,0): 73, 66, 56, (475,44,0): 74, 65, 56, (475,45,0): 74, 65, 56, (475,46,0): 74, 66, 55, (475,47,0): 74, 66, 55, (475,48,0): 74, 65, 56, (475,49,0): 74, 65, 56, (475,50,0): 74, 65, 56, (475,51,0): 74, 65, 56, (475,52,0): 74, 65, 56, (475,53,0): 74, 65, 56, (475,54,0): 75, 65, 56, (475,55,0): 75, 65, 56, (475,56,0): 74, 61, 53, (475,57,0): 74, 61, 53, (475,58,0): 75, 60, 53, (475,59,0): 74, 59, 52, (475,60,0): 74, 59, 52, (475,61,0): 73, 58, 51, (475,62,0): 73, 58, 51, (475,63,0): 73, 58, 51, (475,64,0): 76, 57, 50, (475,65,0): 76, 57, 50, (475,66,0): 76, 57, 50, (475,67,0): 75, 56, 49, (475,68,0): 75, 56, 49, (475,69,0): 74, 55, 48, (475,70,0): 74, 55, 48, (475,71,0): 73, 54, 47, (475,72,0): 72, 53, 46, (475,73,0): 72, 53, 46, (475,74,0): 71, 52, 45, (475,75,0): 71, 52, 45, (475,76,0): 70, 51, 44, (475,77,0): 70, 51, 44, (475,78,0): 69, 50, 43, (475,79,0): 69, 51, 41, (475,80,0): 70, 50, 39, (475,81,0): 70, 51, 37, (475,82,0): 69, 50, 36, (475,83,0): 69, 50, 36, (475,84,0): 68, 49, 35, (475,85,0): 68, 49, 35, (475,86,0): 67, 48, 34, (475,87,0): 67, 48, 34, (475,88,0): 65, 46, 32, (475,89,0): 64, 45, 31, (475,90,0): 62, 43, 29, (475,91,0): 61, 42, 28, (475,92,0): 60, 41, 27, (475,93,0): 61, 42, 28, (475,94,0): 61, 42, 28, (475,95,0): 62, 43, 29, (475,96,0): 62, 43, 29, (475,97,0): 62, 43, 29, (475,98,0): 62, 43, 29, (475,99,0): 62, 43, 29, (475,100,0): 62, 43, 29, (475,101,0): 61, 42, 28, (475,102,0): 61, 42, 28, (475,103,0): 61, 42, 28, (475,104,0): 62, 43, 29, (475,105,0): 61, 42, 28, (475,106,0): 61, 42, 28, (475,107,0): 60, 41, 27, (475,108,0): 60, 41, 27, (475,109,0): 59, 40, 26, (475,110,0): 59, 40, 26, (475,111,0): 59, 40, 26, (475,112,0): 59, 39, 30, (475,113,0): 58, 38, 29, (475,114,0): 58, 38, 29, (475,115,0): 57, 37, 28, (475,116,0): 57, 37, 28, (475,117,0): 56, 36, 27, (475,118,0): 56, 36, 27, (475,119,0): 56, 36, 27, (475,120,0): 57, 37, 28, (475,121,0): 57, 37, 28, (475,122,0): 57, 37, 28, (475,123,0): 56, 36, 27, (475,124,0): 55, 35, 26, (475,125,0): 55, 35, 26, (475,126,0): 55, 35, 26, (475,127,0): 54, 34, 25, (475,128,0): 55, 36, 30, (475,129,0): 55, 36, 30, (475,130,0): 55, 36, 30, (475,131,0): 55, 36, 30, (475,132,0): 55, 36, 30, (475,133,0): 55, 36, 30, (475,134,0): 55, 36, 30, (475,135,0): 55, 36, 30, (475,136,0): 55, 36, 30, (475,137,0): 55, 36, 30, (475,138,0): 55, 36, 30, (475,139,0): 55, 36, 30, (475,140,0): 55, 36, 30, (475,141,0): 55, 36, 30, (475,142,0): 55, 36, 30, (475,143,0): 54, 37, 30, (475,144,0): 54, 36, 32, (475,145,0): 52, 37, 32, (475,146,0): 52, 37, 32, (475,147,0): 52, 37, 32, (475,148,0): 52, 37, 32, (475,149,0): 52, 37, 32, (475,150,0): 52, 37, 32, (475,151,0): 52, 37, 32, (475,152,0): 54, 39, 34, (475,153,0): 54, 39, 34, (475,154,0): 54, 39, 34, (475,155,0): 54, 39, 34, (475,156,0): 54, 39, 34, (475,157,0): 54, 39, 34, (475,158,0): 54, 39, 34, (475,159,0): 54, 39, 34, (475,160,0): 54, 41, 35, (475,161,0): 55, 42, 36, (475,162,0): 55, 42, 36, (475,163,0): 56, 43, 37, (475,164,0): 56, 43, 37, (475,165,0): 57, 44, 38, (475,166,0): 57, 44, 38, (475,167,0): 57, 44, 38, (475,168,0): 59, 46, 40, (475,169,0): 59, 46, 40, (475,170,0): 60, 47, 41, (475,171,0): 60, 47, 41, (475,172,0): 61, 48, 42, (475,173,0): 62, 49, 43, (475,174,0): 62, 49, 43, (475,175,0): 60, 49, 43, (475,176,0): 62, 51, 49, (475,177,0): 61, 51, 49, (475,178,0): 61, 51, 49, (475,179,0): 61, 51, 49, (475,180,0): 61, 51, 49, (475,181,0): 61, 51, 49, (475,182,0): 61, 51, 49, (475,183,0): 61, 51, 49, (475,184,0): 61, 51, 49, (475,185,0): 61, 51, 49, (475,186,0): 62, 52, 50, (475,187,0): 62, 52, 50, (475,188,0): 63, 53, 51, (475,189,0): 63, 53, 51, (475,190,0): 63, 53, 51, (475,191,0): 64, 54, 52, (475,192,0): 61, 53, 51, (475,193,0): 61, 53, 51, (475,194,0): 61, 53, 51, (475,195,0): 61, 53, 51, (475,196,0): 61, 53, 51, (475,197,0): 61, 53, 51, (475,198,0): 61, 53, 51, (475,199,0): 61, 53, 51, (475,200,0): 58, 50, 48, (475,201,0): 58, 50, 48, (475,202,0): 58, 50, 48, (475,203,0): 58, 50, 48, (475,204,0): 58, 50, 48, (475,205,0): 58, 50, 48, (475,206,0): 58, 50, 48, (475,207,0): 58, 49, 50, (475,208,0): 58, 49, 52, (475,209,0): 58, 49, 54, (475,210,0): 58, 49, 54, (475,211,0): 58, 49, 54, (475,212,0): 58, 49, 54, (475,213,0): 58, 49, 54, (475,214,0): 58, 49, 54, (475,215,0): 58, 49, 54, (475,216,0): 57, 48, 53, (475,217,0): 57, 48, 53, (475,218,0): 57, 48, 53, (475,219,0): 58, 49, 54, (475,220,0): 58, 49, 54, (475,221,0): 59, 50, 55, (475,222,0): 59, 50, 55, (475,223,0): 59, 50, 55, (475,224,0): 62, 51, 57, (475,225,0): 63, 50, 57, (475,226,0): 66, 51, 58, (475,227,0): 67, 52, 59, (475,228,0): 69, 52, 60, (475,229,0): 70, 53, 61, (475,230,0): 73, 53, 62, (475,231,0): 75, 54, 63, (475,232,0): 78, 55, 65, (475,233,0): 78, 55, 65, (475,234,0): 82, 56, 67, (475,235,0): 84, 58, 69, (475,236,0): 88, 60, 72, (475,237,0): 92, 62, 74, (475,238,0): 94, 64, 76, (475,239,0): 95, 65, 77, (475,240,0): 100, 69, 77, (475,241,0): 106, 71, 78, (475,242,0): 114, 74, 82, (475,243,0): 120, 78, 82, (475,244,0): 126, 82, 83, (475,245,0): 129, 83, 83, (475,246,0): 128, 84, 81, (475,247,0): 126, 85, 79, (475,248,0): 122, 85, 77, (475,249,0): 120, 85, 79, (475,250,0): 116, 85, 80, (475,251,0): 115, 86, 82, (475,252,0): 115, 85, 85, (475,253,0): 116, 84, 89, (475,254,0): 119, 84, 91, (475,255,0): 117, 84, 91, (475,256,0): 117, 88, 93, (475,257,0): 117, 88, 92, (475,258,0): 119, 90, 94, (475,259,0): 121, 91, 93, (475,260,0): 123, 93, 93, (475,261,0): 126, 94, 95, (475,262,0): 127, 96, 94, (475,263,0): 128, 97, 95, (475,264,0): 129, 98, 96, (475,265,0): 127, 97, 97, (475,266,0): 124, 95, 97, (475,267,0): 119, 93, 96, (475,268,0): 115, 90, 94, (475,269,0): 111, 88, 94, (475,270,0): 108, 87, 92, (475,271,0): 106, 87, 93, (475,272,0): 100, 87, 96, (475,273,0): 99, 87, 97, (475,274,0): 99, 87, 97, (475,275,0): 99, 87, 97, (475,276,0): 99, 87, 97, (475,277,0): 99, 87, 97, (475,278,0): 100, 87, 97, (475,279,0): 99, 87, 97, (475,280,0): 100, 87, 97, (475,281,0): 100, 88, 98, (475,282,0): 102, 89, 99, (475,283,0): 103, 91, 101, (475,284,0): 105, 93, 103, (475,285,0): 107, 95, 105, (475,286,0): 108, 96, 106, (475,287,0): 112, 96, 106, (475,288,0): 116, 94, 106, (475,289,0): 117, 94, 104, (475,290,0): 118, 92, 105, (475,291,0): 118, 92, 103, (475,292,0): 120, 92, 104, (475,293,0): 124, 94, 106, (475,294,0): 127, 95, 108, (475,295,0): 129, 95, 109, (475,296,0): 132, 94, 107, (475,297,0): 135, 94, 108, (475,298,0): 138, 96, 110, (475,299,0): 139, 97, 111, (475,300,0): 142, 98, 113, (475,301,0): 143, 99, 114, (475,302,0): 146, 99, 115, (475,303,0): 147, 101, 112, (475,304,0): 145, 100, 105, (475,305,0): 142, 98, 99, (475,306,0): 137, 92, 95, (475,307,0): 132, 90, 92, (475,308,0): 127, 87, 88, (475,309,0): 118, 82, 84, (475,310,0): 106, 74, 75, (475,311,0): 95, 69, 70, (475,312,0): 89, 69, 68, (475,313,0): 81, 65, 65, (475,314,0): 73, 59, 58, (475,315,0): 68, 54, 54, (475,316,0): 66, 50, 51, (475,317,0): 64, 45, 47, (475,318,0): 59, 39, 41, (475,319,0): 54, 35, 39, (475,320,0): 42, 29, 38, (475,321,0): 39, 27, 37, (475,322,0): 35, 23, 33, (475,323,0): 31, 19, 29, (475,324,0): 28, 18, 29, (475,325,0): 27, 17, 28, (475,326,0): 27, 17, 28, (475,327,0): 27, 17, 28, (475,328,0): 22, 14, 27, (475,329,0): 22, 14, 27, (475,330,0): 21, 15, 29, (475,331,0): 21, 15, 29, (475,332,0): 21, 15, 29, (475,333,0): 21, 15, 29, (475,334,0): 20, 16, 31, (475,335,0): 20, 16, 31, (475,336,0): 20, 13, 29, (475,337,0): 20, 13, 29, (475,338,0): 20, 13, 29, (475,339,0): 20, 13, 29, (475,340,0): 20, 13, 29, (475,341,0): 20, 13, 29, (475,342,0): 20, 13, 29, (475,343,0): 20, 13, 29, (475,344,0): 20, 13, 29, (475,345,0): 19, 12, 28, (475,346,0): 18, 11, 27, (475,347,0): 17, 10, 26, (475,348,0): 17, 10, 26, (475,349,0): 18, 11, 27, (475,350,0): 19, 12, 28, (475,351,0): 20, 13, 29, (475,352,0): 22, 11, 28, (475,353,0): 22, 11, 28, (475,354,0): 20, 11, 28, (475,355,0): 20, 11, 28, (475,356,0): 20, 11, 28, (475,357,0): 20, 11, 28, (475,358,0): 19, 12, 28, (475,359,0): 19, 12, 28, (475,360,0): 16, 12, 27, (475,361,0): 16, 12, 27, (475,362,0): 17, 13, 28, (475,363,0): 17, 13, 28, (475,364,0): 16, 14, 28, (475,365,0): 16, 14, 28, (475,366,0): 16, 14, 28, (475,367,0): 17, 13, 27, (475,368,0): 20, 12, 27, (475,369,0): 21, 13, 26, (475,370,0): 23, 12, 26, (475,371,0): 24, 13, 27, (475,372,0): 26, 16, 27, (475,373,0): 28, 16, 28, (475,374,0): 28, 16, 28, (475,375,0): 29, 17, 29, (475,376,0): 30, 18, 28, (475,377,0): 31, 18, 28, (475,378,0): 31, 18, 27, (475,379,0): 33, 17, 27, (475,380,0): 33, 17, 27, (475,381,0): 33, 17, 27, (475,382,0): 33, 18, 25, (475,383,0): 33, 18, 25, (475,384,0): 31, 18, 27, (475,385,0): 31, 18, 27, (475,386,0): 32, 16, 26, (475,387,0): 32, 16, 26, (475,388,0): 32, 16, 26, (475,389,0): 33, 17, 27, (475,390,0): 36, 19, 29, (475,391,0): 37, 20, 30, (475,392,0): 41, 21, 32, (475,393,0): 41, 21, 32, (475,394,0): 41, 21, 32, (475,395,0): 41, 21, 32, (475,396,0): 42, 20, 32, (475,397,0): 42, 20, 32, (475,398,0): 42, 20, 32, (475,399,0): 42, 21, 30, (475,400,0): 40, 21, 25, (475,401,0): 41, 22, 24, (475,402,0): 42, 23, 25, (475,403,0): 43, 24, 26, (475,404,0): 44, 25, 27, (475,405,0): 44, 25, 27, (475,406,0): 43, 24, 26, (475,407,0): 42, 23, 25, (475,408,0): 44, 25, 27, (475,409,0): 44, 25, 27, (475,410,0): 44, 25, 27, (475,411,0): 44, 25, 27, (475,412,0): 44, 25, 27, (475,413,0): 44, 25, 27, (475,414,0): 44, 25, 27, (475,415,0): 44, 25, 27, (475,416,0): 46, 27, 31, (475,417,0): 46, 27, 31, (475,418,0): 48, 27, 32, (475,419,0): 49, 28, 33, (475,420,0): 49, 28, 33, (475,421,0): 48, 27, 32, (475,422,0): 48, 25, 31, (475,423,0): 48, 25, 31, (475,424,0): 50, 25, 31, (475,425,0): 52, 27, 33, (475,426,0): 54, 29, 35, (475,427,0): 56, 31, 37, (475,428,0): 59, 32, 39, (475,429,0): 60, 33, 40, (475,430,0): 60, 33, 40, (475,431,0): 60, 33, 40, (475,432,0): 59, 33, 42, (475,433,0): 60, 34, 45, (475,434,0): 61, 35, 46, (475,435,0): 62, 36, 45, (475,436,0): 66, 39, 48, (475,437,0): 70, 43, 52, (475,438,0): 75, 45, 53, (475,439,0): 76, 46, 54, (475,440,0): 76, 46, 54, (475,441,0): 74, 45, 50, (475,442,0): 71, 40, 46, (475,443,0): 68, 37, 43, (475,444,0): 65, 33, 38, (475,445,0): 64, 32, 37, (475,446,0): 63, 31, 36, (475,447,0): 63, 31, 36, (475,448,0): 64, 33, 38, (475,449,0): 66, 35, 40, (475,450,0): 68, 39, 44, (475,451,0): 67, 40, 45, (475,452,0): 67, 40, 47, (475,453,0): 63, 40, 48, (475,454,0): 60, 37, 47, (475,455,0): 57, 36, 45, (475,456,0): 56, 36, 45, (475,457,0): 55, 36, 42, (475,458,0): 55, 36, 42, (475,459,0): 55, 36, 40, (475,460,0): 56, 34, 37, (475,461,0): 56, 34, 36, (475,462,0): 58, 33, 36, (475,463,0): 56, 34, 36, (475,464,0): 53, 33, 35, (475,465,0): 51, 32, 34, (475,466,0): 52, 32, 34, (475,467,0): 52, 32, 34, (475,468,0): 52, 32, 34, (475,469,0): 54, 34, 36, (475,470,0): 56, 34, 37, (475,471,0): 56, 34, 37, (475,472,0): 59, 34, 38, (475,473,0): 59, 34, 38, (475,474,0): 58, 33, 37, (475,475,0): 58, 33, 37, (475,476,0): 57, 30, 35, (475,477,0): 54, 27, 32, (475,478,0): 52, 25, 30, (475,479,0): 50, 23, 30, (475,480,0): 56, 29, 38, (475,481,0): 52, 26, 35, (475,482,0): 45, 22, 30, (475,483,0): 40, 17, 23, (475,484,0): 40, 15, 21, (475,485,0): 45, 14, 20, (475,486,0): 51, 14, 22, (475,487,0): 55, 14, 22, (475,488,0): 59, 14, 21, (475,489,0): 62, 17, 22, (475,490,0): 66, 19, 25, (475,491,0): 71, 18, 24, (475,492,0): 80, 17, 26, (475,493,0): 92, 19, 30, (475,494,0): 107, 20, 36, (475,495,0): 111, 24, 41, (475,496,0): 91, 14, 32, (475,497,0): 93, 22, 40, (475,498,0): 95, 20, 40, (475,499,0): 97, 18, 39, (475,500,0): 109, 24, 45, (475,501,0): 122, 27, 51, (475,502,0): 128, 20, 46, (475,503,0): 128, 8, 36, (475,504,0): 159, 26, 57, (475,505,0): 158, 21, 51, (475,506,0): 160, 23, 51, (475,507,0): 165, 28, 54, (475,508,0): 161, 23, 49, (475,509,0): 158, 11, 39, (475,510,0): 170, 13, 44, (475,511,0): 189, 24, 58, (475,512,0): 208, 39, 78, (475,513,0): 201, 34, 77, (475,514,0): 192, 31, 73, (475,515,0): 192, 29, 72, (475,516,0): 210, 37, 83, (475,517,0): 235, 47, 98, (475,518,0): 250, 45, 104, (475,519,0): 249, 40, 106, (475,520,0): 240, 42, 117, (475,521,0): 248, 70, 148, (475,522,0): 255, 105, 188, (475,523,0): 255, 121, 202, (475,524,0): 255, 104, 181, (475,525,0): 241, 69, 143, (475,526,0): 247, 46, 116, (475,527,0): 255, 44, 110, (475,528,0): 251, 45, 110, (475,529,0): 253, 51, 125, (475,530,0): 247, 53, 140, (475,531,0): 249, 60, 163, (475,532,0): 255, 68, 188, (475,533,0): 244, 59, 186, (475,534,0): 237, 53, 173, (475,535,0): 249, 66, 172, (475,536,0): 235, 56, 137, (475,537,0): 240, 68, 126, (475,538,0): 249, 87, 128, (475,539,0): 247, 91, 131, (475,540,0): 239, 87, 144, (475,541,0): 246, 98, 176, (475,542,0): 253, 103, 210, (475,543,0): 244, 94, 202, (475,544,0): 251, 99, 186, (475,545,0): 245, 96, 164, (475,546,0): 232, 87, 142, (475,547,0): 218, 85, 128, (475,548,0): 207, 88, 120, (475,549,0): 195, 85, 114, (475,550,0): 189, 80, 111, (475,551,0): 189, 78, 110, (475,552,0): 183, 70, 100, (475,553,0): 191, 71, 98, (475,554,0): 200, 68, 89, (475,555,0): 205, 64, 81, (475,556,0): 218, 66, 87, (475,557,0): 222, 76, 97, (475,558,0): 192, 69, 90, (475,559,0): 152, 50, 71, (475,560,0): 134, 52, 74, (475,561,0): 133, 64, 83, (475,562,0): 133, 66, 84, (475,563,0): 123, 60, 77, (475,564,0): 118, 61, 76, (475,565,0): 118, 68, 80, (475,566,0): 110, 68, 78, (475,567,0): 100, 60, 69, (475,568,0): 105, 65, 74, (475,569,0): 105, 65, 74, (475,570,0): 108, 65, 75, (475,571,0): 108, 65, 75, (475,572,0): 104, 64, 73, (475,573,0): 99, 64, 71, (475,574,0): 92, 63, 68, (475,575,0): 89, 62, 67, (475,576,0): 93, 60, 67, (475,577,0): 95, 60, 67, (475,578,0): 92, 59, 66, (475,579,0): 91, 58, 65, (475,580,0): 89, 56, 63, (475,581,0): 86, 53, 60, (475,582,0): 82, 51, 57, (475,583,0): 81, 50, 56, (475,584,0): 74, 45, 50, (475,585,0): 72, 43, 48, (475,586,0): 69, 40, 45, (475,587,0): 66, 37, 42, (475,588,0): 62, 35, 40, (475,589,0): 60, 33, 38, (475,590,0): 59, 32, 37, (475,591,0): 59, 32, 37, (475,592,0): 62, 31, 37, (475,593,0): 61, 30, 36, (475,594,0): 59, 30, 35, (475,595,0): 56, 29, 34, (475,596,0): 54, 27, 32, (475,597,0): 52, 27, 31, (475,598,0): 48, 26, 29, (475,599,0): 48, 26, 29, (476,0,0): 52, 72, 70, (476,1,0): 53, 73, 71, (476,2,0): 53, 73, 71, (476,3,0): 53, 73, 71, (476,4,0): 55, 74, 72, (476,5,0): 56, 75, 73, (476,6,0): 56, 75, 73, (476,7,0): 56, 75, 73, (476,8,0): 61, 77, 76, (476,9,0): 61, 77, 76, (476,10,0): 62, 76, 76, (476,11,0): 62, 76, 76, (476,12,0): 62, 76, 76, (476,13,0): 62, 76, 76, (476,14,0): 64, 76, 76, (476,15,0): 64, 76, 74, (476,16,0): 65, 74, 69, (476,17,0): 63, 73, 65, (476,18,0): 63, 70, 63, (476,19,0): 60, 67, 60, (476,20,0): 58, 65, 58, (476,21,0): 58, 65, 58, (476,22,0): 58, 63, 57, (476,23,0): 58, 63, 57, (476,24,0): 64, 66, 61, (476,25,0): 64, 66, 61, (476,26,0): 65, 67, 62, (476,27,0): 65, 67, 62, (476,28,0): 66, 67, 62, (476,29,0): 67, 68, 63, (476,30,0): 67, 68, 63, (476,31,0): 67, 68, 63, (476,32,0): 73, 72, 67, (476,33,0): 73, 72, 67, (476,34,0): 74, 71, 66, (476,35,0): 73, 70, 65, (476,36,0): 71, 68, 61, (476,37,0): 70, 67, 60, (476,38,0): 70, 65, 59, (476,39,0): 70, 65, 59, (476,40,0): 72, 65, 57, (476,41,0): 72, 65, 57, (476,42,0): 72, 65, 55, (476,43,0): 72, 65, 55, (476,44,0): 73, 64, 55, (476,45,0): 73, 64, 55, (476,46,0): 73, 65, 54, (476,47,0): 73, 65, 54, (476,48,0): 73, 64, 55, (476,49,0): 73, 64, 55, (476,50,0): 73, 64, 55, (476,51,0): 73, 64, 55, (476,52,0): 73, 64, 55, (476,53,0): 73, 64, 55, (476,54,0): 74, 64, 55, (476,55,0): 74, 64, 55, (476,56,0): 72, 59, 51, (476,57,0): 72, 59, 51, (476,58,0): 73, 58, 51, (476,59,0): 72, 57, 50, (476,60,0): 72, 57, 50, (476,61,0): 71, 56, 49, (476,62,0): 71, 56, 49, (476,63,0): 71, 56, 49, (476,64,0): 75, 56, 50, (476,65,0): 75, 56, 50, (476,66,0): 75, 56, 50, (476,67,0): 74, 55, 49, (476,68,0): 73, 54, 48, (476,69,0): 73, 54, 48, (476,70,0): 73, 54, 48, (476,71,0): 72, 53, 47, (476,72,0): 71, 52, 46, (476,73,0): 71, 52, 46, (476,74,0): 70, 51, 45, (476,75,0): 70, 51, 45, (476,76,0): 69, 50, 44, (476,77,0): 69, 50, 44, (476,78,0): 68, 49, 43, (476,79,0): 68, 49, 42, (476,80,0): 69, 49, 38, (476,81,0): 69, 50, 36, (476,82,0): 68, 49, 35, (476,83,0): 68, 49, 35, (476,84,0): 67, 48, 34, (476,85,0): 67, 48, 34, (476,86,0): 66, 47, 33, (476,87,0): 66, 47, 33, (476,88,0): 65, 46, 32, (476,89,0): 64, 45, 31, (476,90,0): 62, 43, 29, (476,91,0): 61, 42, 28, (476,92,0): 60, 41, 27, (476,93,0): 61, 42, 28, (476,94,0): 61, 42, 28, (476,95,0): 62, 43, 29, (476,96,0): 62, 43, 29, (476,97,0): 62, 43, 29, (476,98,0): 62, 43, 29, (476,99,0): 62, 43, 29, (476,100,0): 62, 43, 29, (476,101,0): 63, 44, 30, (476,102,0): 63, 44, 30, (476,103,0): 63, 44, 30, (476,104,0): 63, 44, 30, (476,105,0): 62, 43, 29, (476,106,0): 62, 43, 29, (476,107,0): 62, 43, 29, (476,108,0): 61, 42, 28, (476,109,0): 60, 41, 27, (476,110,0): 60, 41, 27, (476,111,0): 60, 41, 27, (476,112,0): 60, 40, 31, (476,113,0): 59, 39, 30, (476,114,0): 59, 39, 30, (476,115,0): 59, 39, 30, (476,116,0): 58, 38, 29, (476,117,0): 57, 37, 28, (476,118,0): 57, 37, 28, (476,119,0): 57, 37, 28, (476,120,0): 58, 38, 29, (476,121,0): 57, 37, 28, (476,122,0): 57, 37, 28, (476,123,0): 57, 37, 28, (476,124,0): 56, 36, 27, (476,125,0): 55, 35, 26, (476,126,0): 55, 35, 26, (476,127,0): 55, 35, 26, (476,128,0): 55, 36, 30, (476,129,0): 55, 36, 30, (476,130,0): 55, 36, 30, (476,131,0): 55, 36, 30, (476,132,0): 55, 36, 30, (476,133,0): 55, 36, 30, (476,134,0): 55, 36, 30, (476,135,0): 55, 36, 30, (476,136,0): 55, 36, 30, (476,137,0): 55, 36, 30, (476,138,0): 55, 36, 30, (476,139,0): 55, 36, 30, (476,140,0): 55, 36, 30, (476,141,0): 55, 36, 30, (476,142,0): 55, 36, 30, (476,143,0): 54, 37, 30, (476,144,0): 54, 36, 32, (476,145,0): 52, 37, 32, (476,146,0): 52, 37, 32, (476,147,0): 52, 37, 32, (476,148,0): 52, 37, 32, (476,149,0): 52, 37, 32, (476,150,0): 52, 37, 32, (476,151,0): 52, 37, 32, (476,152,0): 53, 38, 33, (476,153,0): 53, 38, 33, (476,154,0): 53, 38, 33, (476,155,0): 53, 38, 33, (476,156,0): 53, 38, 33, (476,157,0): 53, 38, 33, (476,158,0): 53, 38, 33, (476,159,0): 53, 38, 33, (476,160,0): 54, 41, 35, (476,161,0): 54, 41, 35, (476,162,0): 54, 41, 35, (476,163,0): 55, 42, 36, (476,164,0): 55, 42, 36, (476,165,0): 56, 43, 37, (476,166,0): 56, 43, 37, (476,167,0): 57, 44, 38, (476,168,0): 58, 45, 39, (476,169,0): 59, 46, 40, (476,170,0): 59, 46, 40, (476,171,0): 59, 46, 40, (476,172,0): 60, 47, 41, (476,173,0): 60, 47, 41, (476,174,0): 60, 47, 41, (476,175,0): 58, 47, 41, (476,176,0): 60, 49, 47, (476,177,0): 59, 49, 47, (476,178,0): 59, 49, 47, (476,179,0): 59, 49, 47, (476,180,0): 59, 49, 47, (476,181,0): 59, 49, 47, (476,182,0): 59, 49, 47, (476,183,0): 59, 49, 47, (476,184,0): 59, 49, 47, (476,185,0): 60, 50, 48, (476,186,0): 60, 50, 48, (476,187,0): 60, 50, 48, (476,188,0): 61, 51, 49, (476,189,0): 61, 51, 49, (476,190,0): 62, 52, 50, (476,191,0): 62, 52, 50, (476,192,0): 60, 52, 50, (476,193,0): 58, 53, 50, (476,194,0): 58, 53, 50, (476,195,0): 58, 53, 50, (476,196,0): 58, 53, 50, (476,197,0): 58, 53, 50, (476,198,0): 58, 53, 50, (476,199,0): 58, 53, 50, (476,200,0): 55, 50, 47, (476,201,0): 55, 50, 47, (476,202,0): 55, 50, 47, (476,203,0): 55, 50, 47, (476,204,0): 55, 50, 47, (476,205,0): 55, 50, 47, (476,206,0): 55, 50, 47, (476,207,0): 55, 49, 49, (476,208,0): 55, 49, 53, (476,209,0): 55, 48, 55, (476,210,0): 55, 48, 55, (476,211,0): 55, 48, 55, (476,212,0): 55, 48, 55, (476,213,0): 55, 48, 55, (476,214,0): 55, 48, 55, (476,215,0): 55, 48, 55, (476,216,0): 54, 47, 54, (476,217,0): 54, 47, 54, (476,218,0): 54, 47, 54, (476,219,0): 55, 48, 55, (476,220,0): 55, 48, 55, (476,221,0): 56, 49, 56, (476,222,0): 56, 49, 56, (476,223,0): 58, 48, 56, (476,224,0): 61, 50, 58, (476,225,0): 63, 50, 59, (476,226,0): 66, 50, 60, (476,227,0): 67, 51, 61, (476,228,0): 69, 52, 62, (476,229,0): 70, 53, 63, (476,230,0): 73, 53, 64, (476,231,0): 74, 52, 64, (476,232,0): 77, 53, 66, (476,233,0): 78, 54, 67, (476,234,0): 82, 56, 69, (476,235,0): 83, 57, 70, (476,236,0): 86, 58, 72, (476,237,0): 88, 60, 74, (476,238,0): 92, 61, 76, (476,239,0): 93, 63, 75, (476,240,0): 98, 66, 77, (476,241,0): 102, 69, 78, (476,242,0): 109, 72, 79, (476,243,0): 117, 76, 82, (476,244,0): 123, 78, 81, (476,245,0): 125, 79, 79, (476,246,0): 125, 80, 77, (476,247,0): 124, 81, 75, (476,248,0): 120, 81, 74, (476,249,0): 120, 83, 77, (476,250,0): 117, 84, 79, (476,251,0): 115, 84, 82, (476,252,0): 115, 83, 86, (476,253,0): 115, 83, 88, (476,254,0): 117, 81, 91, (476,255,0): 114, 81, 90, (476,256,0): 114, 85, 90, (476,257,0): 113, 87, 90, (476,258,0): 114, 88, 91, (476,259,0): 117, 88, 90, (476,260,0): 119, 91, 90, (476,261,0): 121, 91, 91, (476,262,0): 122, 92, 90, (476,263,0): 123, 93, 91, (476,264,0): 125, 95, 95, (476,265,0): 124, 94, 94, (476,266,0): 121, 92, 94, (476,267,0): 117, 91, 94, (476,268,0): 112, 87, 93, (476,269,0): 107, 84, 92, (476,270,0): 104, 83, 90, (476,271,0): 101, 81, 90, (476,272,0): 100, 84, 94, (476,273,0): 98, 85, 95, (476,274,0): 98, 85, 95, (476,275,0): 97, 84, 94, (476,276,0): 97, 84, 94, (476,277,0): 97, 84, 94, (476,278,0): 99, 83, 94, (476,279,0): 97, 84, 94, (476,280,0): 99, 83, 93, (476,281,0): 97, 84, 93, (476,282,0): 101, 85, 95, (476,283,0): 100, 87, 96, (476,284,0): 102, 89, 98, (476,285,0): 104, 91, 100, (476,286,0): 105, 92, 101, (476,287,0): 108, 92, 102, (476,288,0): 110, 90, 101, (476,289,0): 111, 89, 101, (476,290,0): 112, 88, 102, (476,291,0): 112, 88, 101, (476,292,0): 116, 90, 103, (476,293,0): 118, 92, 105, (476,294,0): 121, 93, 105, (476,295,0): 124, 94, 106, (476,296,0): 127, 94, 105, (476,297,0): 129, 93, 105, (476,298,0): 131, 93, 104, (476,299,0): 134, 94, 105, (476,300,0): 137, 95, 107, (476,301,0): 139, 97, 109, (476,302,0): 141, 97, 110, (476,303,0): 142, 99, 108, (476,304,0): 143, 98, 105, (476,305,0): 140, 95, 98, (476,306,0): 135, 90, 95, (476,307,0): 131, 86, 91, (476,308,0): 125, 83, 87, (476,309,0): 117, 78, 81, (476,310,0): 107, 73, 74, (476,311,0): 98, 70, 69, (476,312,0): 95, 74, 71, (476,313,0): 88, 73, 70, (476,314,0): 83, 69, 66, (476,315,0): 80, 66, 65, (476,316,0): 77, 61, 61, (476,317,0): 74, 56, 56, (476,318,0): 69, 47, 49, (476,319,0): 63, 43, 45, (476,320,0): 47, 32, 39, (476,321,0): 41, 29, 39, (476,322,0): 37, 25, 35, (476,323,0): 32, 20, 30, (476,324,0): 28, 18, 29, (476,325,0): 27, 17, 28, (476,326,0): 28, 18, 29, (476,327,0): 28, 18, 29, (476,328,0): 23, 15, 28, (476,329,0): 23, 15, 28, (476,330,0): 22, 16, 30, (476,331,0): 22, 16, 30, (476,332,0): 22, 16, 30, (476,333,0): 22, 16, 30, (476,334,0): 19, 15, 30, (476,335,0): 19, 15, 30, (476,336,0): 20, 13, 29, (476,337,0): 20, 13, 29, (476,338,0): 20, 13, 29, (476,339,0): 20, 13, 29, (476,340,0): 20, 13, 29, (476,341,0): 20, 13, 29, (476,342,0): 20, 13, 29, (476,343,0): 20, 13, 29, (476,344,0): 20, 13, 29, (476,345,0): 19, 12, 28, (476,346,0): 18, 11, 27, (476,347,0): 17, 10, 26, (476,348,0): 17, 10, 26, (476,349,0): 18, 11, 27, (476,350,0): 19, 12, 28, (476,351,0): 20, 13, 29, (476,352,0): 22, 11, 28, (476,353,0): 22, 11, 28, (476,354,0): 20, 11, 28, (476,355,0): 20, 11, 28, (476,356,0): 20, 11, 28, (476,357,0): 20, 11, 28, (476,358,0): 19, 12, 28, (476,359,0): 19, 12, 28, (476,360,0): 17, 13, 28, (476,361,0): 17, 13, 28, (476,362,0): 16, 12, 27, (476,363,0): 16, 12, 27, (476,364,0): 15, 13, 27, (476,365,0): 15, 13, 27, (476,366,0): 15, 13, 27, (476,367,0): 16, 12, 26, (476,368,0): 19, 13, 27, (476,369,0): 19, 13, 25, (476,370,0): 21, 13, 26, (476,371,0): 22, 14, 27, (476,372,0): 23, 15, 26, (476,373,0): 26, 16, 27, (476,374,0): 27, 17, 28, (476,375,0): 27, 17, 28, (476,376,0): 29, 19, 28, (476,377,0): 30, 18, 28, (476,378,0): 30, 19, 27, (476,379,0): 31, 18, 27, (476,380,0): 31, 18, 27, (476,381,0): 31, 18, 27, (476,382,0): 31, 18, 25, (476,383,0): 31, 18, 25, (476,384,0): 31, 18, 25, (476,385,0): 31, 18, 25, (476,386,0): 32, 17, 24, (476,387,0): 32, 17, 24, (476,388,0): 32, 17, 24, (476,389,0): 33, 18, 25, (476,390,0): 36, 19, 27, (476,391,0): 37, 20, 28, (476,392,0): 41, 21, 32, (476,393,0): 41, 21, 32, (476,394,0): 41, 21, 32, (476,395,0): 41, 21, 32, (476,396,0): 42, 20, 32, (476,397,0): 42, 20, 32, (476,398,0): 42, 20, 33, (476,399,0): 42, 20, 32, (476,400,0): 39, 20, 24, (476,401,0): 38, 22, 23, (476,402,0): 39, 23, 24, (476,403,0): 41, 25, 26, (476,404,0): 41, 25, 26, (476,405,0): 41, 25, 26, (476,406,0): 40, 24, 25, (476,407,0): 40, 24, 25, (476,408,0): 41, 25, 26, (476,409,0): 41, 25, 26, (476,410,0): 41, 25, 26, (476,411,0): 41, 25, 26, (476,412,0): 41, 25, 26, (476,413,0): 41, 25, 26, (476,414,0): 41, 25, 26, (476,415,0): 41, 25, 26, (476,416,0): 45, 26, 30, (476,417,0): 46, 27, 31, (476,418,0): 48, 27, 32, (476,419,0): 49, 28, 33, (476,420,0): 49, 28, 33, (476,421,0): 48, 27, 32, (476,422,0): 48, 25, 31, (476,423,0): 47, 24, 30, (476,424,0): 52, 27, 31, (476,425,0): 53, 28, 32, (476,426,0): 55, 30, 34, (476,427,0): 58, 33, 37, (476,428,0): 60, 33, 38, (476,429,0): 61, 34, 39, (476,430,0): 61, 34, 39, (476,431,0): 61, 34, 39, (476,432,0): 60, 33, 42, (476,433,0): 60, 33, 42, (476,434,0): 60, 33, 42, (476,435,0): 62, 35, 44, (476,436,0): 66, 36, 46, (476,437,0): 68, 38, 46, (476,438,0): 71, 41, 49, (476,439,0): 73, 43, 51, (476,440,0): 76, 45, 51, (476,441,0): 75, 44, 50, (476,442,0): 73, 40, 47, (476,443,0): 69, 37, 42, (476,444,0): 66, 34, 39, (476,445,0): 64, 32, 37, (476,446,0): 65, 30, 34, (476,447,0): 62, 30, 33, (476,448,0): 63, 33, 35, (476,449,0): 65, 35, 37, (476,450,0): 66, 37, 41, (476,451,0): 65, 38, 43, (476,452,0): 65, 38, 45, (476,453,0): 61, 38, 44, (476,454,0): 59, 36, 44, (476,455,0): 56, 35, 42, (476,456,0): 55, 36, 42, (476,457,0): 55, 36, 42, (476,458,0): 54, 35, 41, (476,459,0): 53, 34, 38, (476,460,0): 55, 33, 36, (476,461,0): 54, 32, 34, (476,462,0): 55, 30, 33, (476,463,0): 53, 31, 33, (476,464,0): 51, 31, 33, (476,465,0): 49, 30, 32, (476,466,0): 49, 29, 31, (476,467,0): 49, 29, 31, (476,468,0): 49, 29, 31, (476,469,0): 51, 31, 33, (476,470,0): 54, 32, 35, (476,471,0): 55, 33, 36, (476,472,0): 57, 32, 36, (476,473,0): 57, 32, 36, (476,474,0): 57, 32, 36, (476,475,0): 57, 32, 36, (476,476,0): 56, 29, 34, (476,477,0): 54, 27, 32, (476,478,0): 52, 25, 30, (476,479,0): 51, 24, 31, (476,480,0): 54, 27, 36, (476,481,0): 51, 24, 33, (476,482,0): 43, 20, 28, (476,483,0): 39, 16, 22, (476,484,0): 41, 16, 22, (476,485,0): 46, 17, 22, (476,486,0): 54, 19, 26, (476,487,0): 58, 21, 28, (476,488,0): 56, 15, 21, (476,489,0): 57, 16, 20, (476,490,0): 60, 18, 22, (476,491,0): 68, 19, 23, (476,492,0): 77, 17, 25, (476,493,0): 88, 18, 28, (476,494,0): 104, 20, 35, (476,495,0): 111, 27, 43, (476,496,0): 88, 14, 31, (476,497,0): 94, 23, 39, (476,498,0): 99, 25, 42, (476,499,0): 96, 17, 36, (476,500,0): 97, 14, 34, (476,501,0): 109, 20, 42, (476,502,0): 120, 20, 44, (476,503,0): 121, 11, 36, (476,504,0): 169, 49, 76, (476,505,0): 158, 34, 60, (476,506,0): 153, 29, 55, (476,507,0): 154, 30, 54, (476,508,0): 145, 22, 43, (476,509,0): 137, 10, 31, (476,510,0): 157, 19, 44, (476,511,0): 189, 40, 69, (476,512,0): 195, 31, 65, (476,513,0): 193, 25, 60, (476,514,0): 188, 26, 63, (476,515,0): 204, 39, 79, (476,516,0): 222, 49, 94, (476,517,0): 235, 49, 99, (476,518,0): 247, 45, 103, (476,519,0): 250, 41, 106, (476,520,0): 240, 36, 105, (476,521,0): 236, 42, 113, (476,522,0): 232, 55, 125, (476,523,0): 235, 64, 132, (476,524,0): 237, 61, 125, (476,525,0): 239, 51, 112, (476,526,0): 250, 40, 101, (476,527,0): 255, 38, 102, (476,528,0): 255, 43, 118, (476,529,0): 254, 43, 124, (476,530,0): 250, 43, 131, (476,531,0): 253, 54, 145, (476,532,0): 255, 61, 157, (476,533,0): 244, 53, 148, (476,534,0): 239, 49, 137, (476,535,0): 248, 60, 136, (476,536,0): 244, 59, 117, (476,537,0): 245, 64, 109, (476,538,0): 248, 73, 112, (476,539,0): 241, 74, 118, (476,540,0): 233, 77, 138, (476,541,0): 248, 99, 183, (476,542,0): 255, 120, 228, (476,543,0): 255, 120, 233, (476,544,0): 255, 109, 204, (476,545,0): 255, 102, 178, (476,546,0): 245, 96, 152, (476,547,0): 232, 90, 130, (476,548,0): 218, 85, 112, (476,549,0): 209, 83, 104, (476,550,0): 202, 78, 102, (476,551,0): 192, 72, 97, (476,552,0): 181, 67, 92, (476,553,0): 176, 63, 83, (476,554,0): 176, 58, 74, (476,555,0): 195, 67, 82, (476,556,0): 226, 85, 104, (476,557,0): 225, 92, 113, (476,558,0): 185, 78, 98, (476,559,0): 147, 60, 79, (476,560,0): 136, 59, 79, (476,561,0): 137, 65, 87, (476,562,0): 135, 66, 87, (476,563,0): 126, 61, 81, (476,564,0): 119, 60, 78, (476,565,0): 117, 64, 80, (476,566,0): 107, 63, 76, (476,567,0): 99, 57, 69, (476,568,0): 108, 66, 78, (476,569,0): 109, 65, 78, (476,570,0): 113, 65, 79, (476,571,0): 112, 64, 78, (476,572,0): 110, 64, 77, (476,573,0): 105, 63, 75, (476,574,0): 96, 63, 72, (476,575,0): 94, 63, 71, (476,576,0): 93, 60, 67, (476,577,0): 95, 60, 67, (476,578,0): 92, 59, 66, (476,579,0): 91, 58, 65, (476,580,0): 89, 56, 63, (476,581,0): 86, 53, 60, (476,582,0): 82, 51, 57, (476,583,0): 81, 50, 56, (476,584,0): 74, 45, 50, (476,585,0): 72, 43, 48, (476,586,0): 69, 40, 45, (476,587,0): 66, 37, 42, (476,588,0): 61, 34, 39, (476,589,0): 59, 32, 37, (476,590,0): 58, 31, 36, (476,591,0): 58, 31, 36, (476,592,0): 60, 29, 35, (476,593,0): 60, 29, 35, (476,594,0): 58, 29, 34, (476,595,0): 55, 28, 33, (476,596,0): 54, 27, 32, (476,597,0): 51, 26, 30, (476,598,0): 49, 27, 30, (476,599,0): 48, 26, 29, (477,0,0): 52, 72, 70, (477,1,0): 52, 72, 70, (477,2,0): 52, 72, 70, (477,3,0): 53, 73, 71, (477,4,0): 54, 73, 71, (477,5,0): 55, 74, 72, (477,6,0): 55, 74, 72, (477,7,0): 56, 75, 73, (477,8,0): 60, 76, 75, (477,9,0): 60, 76, 75, (477,10,0): 61, 75, 75, (477,11,0): 61, 75, 75, (477,12,0): 61, 75, 75, (477,13,0): 61, 75, 75, (477,14,0): 63, 75, 75, (477,15,0): 63, 75, 73, (477,16,0): 65, 74, 69, (477,17,0): 63, 73, 65, (477,18,0): 63, 70, 63, (477,19,0): 60, 67, 60, (477,20,0): 58, 65, 58, (477,21,0): 57, 64, 57, (477,22,0): 57, 62, 56, (477,23,0): 57, 62, 56, (477,24,0): 65, 67, 62, (477,25,0): 65, 67, 62, (477,26,0): 65, 67, 62, (477,27,0): 65, 67, 62, (477,28,0): 66, 67, 62, (477,29,0): 66, 67, 62, (477,30,0): 66, 67, 62, (477,31,0): 66, 67, 62, (477,32,0): 71, 70, 65, (477,33,0): 71, 70, 65, (477,34,0): 72, 69, 64, (477,35,0): 71, 68, 63, (477,36,0): 70, 67, 60, (477,37,0): 69, 66, 59, (477,38,0): 70, 65, 59, (477,39,0): 70, 65, 59, (477,40,0): 71, 64, 56, (477,41,0): 71, 64, 56, (477,42,0): 71, 64, 54, (477,43,0): 71, 64, 54, (477,44,0): 72, 63, 54, (477,45,0): 72, 63, 54, (477,46,0): 72, 64, 53, (477,47,0): 72, 64, 53, (477,48,0): 71, 62, 53, (477,49,0): 71, 62, 53, (477,50,0): 71, 62, 53, (477,51,0): 71, 62, 53, (477,52,0): 71, 62, 53, (477,53,0): 71, 62, 53, (477,54,0): 72, 62, 53, (477,55,0): 72, 62, 53, (477,56,0): 70, 57, 49, (477,57,0): 70, 57, 49, (477,58,0): 71, 56, 49, (477,59,0): 70, 55, 48, (477,60,0): 70, 55, 48, (477,61,0): 69, 54, 47, (477,62,0): 69, 54, 47, (477,63,0): 68, 53, 46, (477,64,0): 73, 54, 48, (477,65,0): 73, 54, 48, (477,66,0): 73, 54, 48, (477,67,0): 72, 53, 47, (477,68,0): 72, 53, 47, (477,69,0): 71, 52, 46, (477,70,0): 71, 52, 46, (477,71,0): 71, 52, 46, (477,72,0): 70, 51, 45, (477,73,0): 70, 51, 45, (477,74,0): 69, 50, 44, (477,75,0): 69, 50, 44, (477,76,0): 68, 49, 43, (477,77,0): 68, 49, 43, (477,78,0): 67, 48, 42, (477,79,0): 67, 48, 41, (477,80,0): 68, 48, 37, (477,81,0): 68, 49, 35, (477,82,0): 67, 48, 34, (477,83,0): 67, 48, 34, (477,84,0): 66, 47, 33, (477,85,0): 66, 47, 33, (477,86,0): 65, 46, 32, (477,87,0): 65, 46, 32, (477,88,0): 65, 46, 32, (477,89,0): 64, 45, 31, (477,90,0): 62, 43, 29, (477,91,0): 61, 42, 28, (477,92,0): 60, 41, 27, (477,93,0): 61, 42, 28, (477,94,0): 61, 42, 28, (477,95,0): 62, 43, 29, (477,96,0): 62, 43, 29, (477,97,0): 62, 43, 29, (477,98,0): 62, 43, 29, (477,99,0): 63, 44, 30, (477,100,0): 63, 44, 30, (477,101,0): 63, 44, 30, (477,102,0): 64, 45, 31, (477,103,0): 64, 45, 31, (477,104,0): 64, 45, 31, (477,105,0): 64, 45, 31, (477,106,0): 64, 45, 31, (477,107,0): 63, 44, 30, (477,108,0): 63, 44, 30, (477,109,0): 62, 43, 29, (477,110,0): 62, 43, 29, (477,111,0): 62, 43, 29, (477,112,0): 61, 41, 32, (477,113,0): 61, 41, 32, (477,114,0): 61, 41, 32, (477,115,0): 60, 40, 31, (477,116,0): 60, 40, 31, (477,117,0): 59, 39, 30, (477,118,0): 59, 39, 30, (477,119,0): 59, 39, 30, (477,120,0): 58, 38, 29, (477,121,0): 58, 38, 29, (477,122,0): 58, 38, 29, (477,123,0): 57, 37, 28, (477,124,0): 57, 37, 28, (477,125,0): 56, 36, 27, (477,126,0): 56, 36, 27, (477,127,0): 55, 35, 26, (477,128,0): 56, 37, 31, (477,129,0): 56, 37, 31, (477,130,0): 56, 37, 31, (477,131,0): 56, 37, 31, (477,132,0): 56, 37, 31, (477,133,0): 56, 37, 31, (477,134,0): 56, 37, 31, (477,135,0): 56, 37, 31, (477,136,0): 54, 35, 29, (477,137,0): 54, 35, 29, (477,138,0): 54, 35, 29, (477,139,0): 54, 35, 29, (477,140,0): 54, 35, 29, (477,141,0): 54, 35, 29, (477,142,0): 54, 35, 29, (477,143,0): 53, 36, 29, (477,144,0): 53, 35, 31, (477,145,0): 51, 36, 31, (477,146,0): 51, 36, 31, (477,147,0): 51, 36, 31, (477,148,0): 51, 36, 31, (477,149,0): 51, 36, 31, (477,150,0): 51, 36, 31, (477,151,0): 51, 36, 31, (477,152,0): 53, 38, 33, (477,153,0): 53, 38, 33, (477,154,0): 53, 38, 33, (477,155,0): 53, 38, 33, (477,156,0): 53, 38, 33, (477,157,0): 53, 38, 33, (477,158,0): 53, 38, 33, (477,159,0): 53, 38, 33, (477,160,0): 53, 40, 34, (477,161,0): 54, 41, 35, (477,162,0): 54, 41, 35, (477,163,0): 54, 41, 35, (477,164,0): 55, 42, 36, (477,165,0): 56, 43, 37, (477,166,0): 56, 43, 37, (477,167,0): 56, 43, 37, (477,168,0): 58, 45, 39, (477,169,0): 58, 45, 39, (477,170,0): 58, 45, 39, (477,171,0): 58, 45, 39, (477,172,0): 58, 45, 39, (477,173,0): 59, 46, 40, (477,174,0): 59, 46, 40, (477,175,0): 57, 46, 40, (477,176,0): 59, 48, 46, (477,177,0): 58, 48, 46, (477,178,0): 58, 48, 46, (477,179,0): 58, 48, 46, (477,180,0): 58, 48, 46, (477,181,0): 58, 48, 46, (477,182,0): 58, 48, 46, (477,183,0): 58, 48, 46, (477,184,0): 58, 48, 46, (477,185,0): 58, 48, 46, (477,186,0): 58, 48, 46, (477,187,0): 59, 49, 47, (477,188,0): 59, 49, 47, (477,189,0): 60, 50, 48, (477,190,0): 60, 50, 48, (477,191,0): 60, 52, 49, (477,192,0): 59, 51, 49, (477,193,0): 57, 52, 49, (477,194,0): 57, 52, 49, (477,195,0): 57, 52, 49, (477,196,0): 57, 52, 49, (477,197,0): 57, 52, 49, (477,198,0): 57, 52, 49, (477,199,0): 57, 52, 49, (477,200,0): 55, 50, 47, (477,201,0): 55, 50, 47, (477,202,0): 55, 50, 47, (477,203,0): 55, 50, 47, (477,204,0): 55, 50, 47, (477,205,0): 55, 50, 47, (477,206,0): 55, 50, 47, (477,207,0): 55, 49, 49, (477,208,0): 55, 49, 53, (477,209,0): 55, 48, 55, (477,210,0): 55, 48, 55, (477,211,0): 55, 48, 55, (477,212,0): 55, 48, 55, (477,213,0): 55, 48, 55, (477,214,0): 55, 48, 55, (477,215,0): 55, 48, 55, (477,216,0): 53, 46, 53, (477,217,0): 53, 46, 53, (477,218,0): 53, 46, 53, (477,219,0): 54, 47, 54, (477,220,0): 54, 47, 54, (477,221,0): 55, 48, 55, (477,222,0): 55, 48, 55, (477,223,0): 57, 47, 55, (477,224,0): 61, 50, 58, (477,225,0): 62, 49, 58, (477,226,0): 65, 49, 59, (477,227,0): 66, 50, 60, (477,228,0): 68, 51, 61, (477,229,0): 69, 52, 62, (477,230,0): 72, 52, 63, (477,231,0): 72, 52, 63, (477,232,0): 76, 54, 66, (477,233,0): 78, 54, 67, (477,234,0): 81, 55, 68, (477,235,0): 83, 57, 70, (477,236,0): 85, 57, 71, (477,237,0): 87, 59, 73, (477,238,0): 90, 59, 74, (477,239,0): 91, 60, 75, (477,240,0): 97, 65, 78, (477,241,0): 101, 68, 77, (477,242,0): 108, 71, 79, (477,243,0): 115, 74, 80, (477,244,0): 121, 76, 79, (477,245,0): 123, 77, 77, (477,246,0): 123, 78, 75, (477,247,0): 122, 79, 73, (477,248,0): 120, 79, 73, (477,249,0): 119, 82, 76, (477,250,0): 118, 83, 79, (477,251,0): 117, 83, 82, (477,252,0): 117, 82, 86, (477,253,0): 115, 82, 89, (477,254,0): 116, 80, 92, (477,255,0): 113, 80, 89, (477,256,0): 111, 84, 89, (477,257,0): 110, 86, 86, (477,258,0): 112, 86, 87, (477,259,0): 113, 87, 86, (477,260,0): 116, 88, 87, (477,261,0): 117, 89, 88, (477,262,0): 119, 89, 87, (477,263,0): 120, 90, 88, (477,264,0): 122, 92, 92, (477,265,0): 120, 91, 93, (477,266,0): 117, 91, 94, (477,267,0): 114, 89, 93, (477,268,0): 111, 85, 94, (477,269,0): 105, 82, 92, (477,270,0): 101, 80, 89, (477,271,0): 98, 78, 89, (477,272,0): 98, 82, 93, (477,273,0): 95, 82, 92, (477,274,0): 97, 81, 92, (477,275,0): 97, 81, 92, (477,276,0): 96, 80, 91, (477,277,0): 97, 79, 91, (477,278,0): 96, 78, 90, (477,279,0): 96, 78, 90, (477,280,0): 97, 80, 90, (477,281,0): 97, 80, 90, (477,282,0): 98, 81, 91, (477,283,0): 99, 83, 93, (477,284,0): 100, 84, 94, (477,285,0): 99, 86, 95, (477,286,0): 102, 86, 96, (477,287,0): 103, 87, 97, (477,288,0): 105, 87, 99, (477,289,0): 107, 87, 99, (477,290,0): 107, 87, 99, (477,291,0): 108, 86, 99, (477,292,0): 110, 88, 100, (477,293,0): 113, 89, 102, (477,294,0): 117, 91, 102, (477,295,0): 120, 93, 102, (477,296,0): 124, 92, 103, (477,297,0): 125, 92, 101, (477,298,0): 127, 91, 101, (477,299,0): 129, 91, 102, (477,300,0): 131, 93, 104, (477,301,0): 135, 95, 104, (477,302,0): 137, 97, 106, (477,303,0): 140, 99, 107, (477,304,0): 140, 97, 104, (477,305,0): 138, 93, 98, (477,306,0): 134, 87, 93, (477,307,0): 128, 81, 87, (477,308,0): 122, 77, 82, (477,309,0): 113, 72, 76, (477,310,0): 105, 71, 72, (477,311,0): 98, 70, 69, (477,312,0): 96, 75, 72, (477,313,0): 93, 75, 71, (477,314,0): 90, 75, 70, (477,315,0): 89, 76, 70, (477,316,0): 88, 73, 68, (477,317,0): 83, 65, 61, (477,318,0): 76, 55, 52, (477,319,0): 68, 48, 49, (477,320,0): 50, 35, 42, (477,321,0): 44, 32, 42, (477,322,0): 38, 26, 36, (477,323,0): 33, 21, 31, (477,324,0): 29, 19, 30, (477,325,0): 28, 18, 29, (477,326,0): 29, 19, 30, (477,327,0): 30, 20, 31, (477,328,0): 24, 16, 29, (477,329,0): 24, 16, 29, (477,330,0): 23, 17, 31, (477,331,0): 23, 17, 31, (477,332,0): 22, 16, 30, (477,333,0): 22, 16, 30, (477,334,0): 19, 15, 30, (477,335,0): 19, 15, 30, (477,336,0): 21, 14, 30, (477,337,0): 21, 14, 30, (477,338,0): 21, 14, 30, (477,339,0): 21, 14, 30, (477,340,0): 21, 14, 30, (477,341,0): 21, 14, 30, (477,342,0): 21, 14, 30, (477,343,0): 21, 14, 30, (477,344,0): 20, 13, 29, (477,345,0): 19, 12, 28, (477,346,0): 18, 11, 27, (477,347,0): 17, 10, 26, (477,348,0): 17, 10, 26, (477,349,0): 18, 11, 27, (477,350,0): 19, 12, 28, (477,351,0): 20, 13, 29, (477,352,0): 22, 11, 28, (477,353,0): 22, 11, 28, (477,354,0): 20, 11, 28, (477,355,0): 20, 11, 28, (477,356,0): 20, 11, 28, (477,357,0): 20, 11, 28, (477,358,0): 19, 12, 28, (477,359,0): 19, 12, 28, (477,360,0): 17, 13, 28, (477,361,0): 17, 13, 28, (477,362,0): 16, 12, 27, (477,363,0): 16, 12, 27, (477,364,0): 14, 12, 26, (477,365,0): 14, 12, 26, (477,366,0): 14, 12, 26, (477,367,0): 14, 12, 25, (477,368,0): 17, 13, 27, (477,369,0): 19, 13, 25, (477,370,0): 20, 14, 26, (477,371,0): 21, 15, 27, (477,372,0): 23, 15, 26, (477,373,0): 24, 16, 27, (477,374,0): 25, 17, 28, (477,375,0): 27, 17, 28, (477,376,0): 28, 18, 27, (477,377,0): 28, 18, 27, (477,378,0): 29, 18, 26, (477,379,0): 29, 18, 26, (477,380,0): 29, 18, 26, (477,381,0): 30, 17, 26, (477,382,0): 30, 17, 24, (477,383,0): 30, 17, 24, (477,384,0): 32, 19, 26, (477,385,0): 31, 18, 25, (477,386,0): 33, 18, 25, (477,387,0): 32, 17, 24, (477,388,0): 33, 18, 25, (477,389,0): 34, 19, 26, (477,390,0): 37, 20, 28, (477,391,0): 38, 21, 29, (477,392,0): 41, 21, 32, (477,393,0): 41, 21, 32, (477,394,0): 41, 21, 32, (477,395,0): 41, 21, 32, (477,396,0): 42, 20, 32, (477,397,0): 42, 20, 32, (477,398,0): 42, 20, 33, (477,399,0): 41, 21, 32, (477,400,0): 39, 20, 24, (477,401,0): 38, 22, 23, (477,402,0): 39, 23, 24, (477,403,0): 40, 24, 25, (477,404,0): 41, 25, 26, (477,405,0): 41, 25, 26, (477,406,0): 40, 24, 25, (477,407,0): 39, 23, 24, (477,408,0): 41, 25, 26, (477,409,0): 41, 25, 26, (477,410,0): 41, 25, 26, (477,411,0): 41, 25, 26, (477,412,0): 41, 25, 26, (477,413,0): 41, 25, 26, (477,414,0): 41, 25, 26, (477,415,0): 41, 25, 26, (477,416,0): 43, 24, 28, (477,417,0): 45, 26, 30, (477,418,0): 48, 27, 32, (477,419,0): 49, 28, 33, (477,420,0): 49, 28, 33, (477,421,0): 48, 27, 32, (477,422,0): 47, 24, 30, (477,423,0): 45, 22, 28, (477,424,0): 52, 27, 31, (477,425,0): 53, 28, 32, (477,426,0): 55, 30, 34, (477,427,0): 57, 32, 36, (477,428,0): 60, 33, 38, (477,429,0): 61, 34, 39, (477,430,0): 61, 35, 38, (477,431,0): 61, 34, 39, (477,432,0): 61, 34, 41, (477,433,0): 60, 33, 42, (477,434,0): 60, 33, 42, (477,435,0): 60, 33, 42, (477,436,0): 63, 33, 41, (477,437,0): 65, 35, 43, (477,438,0): 67, 37, 45, (477,439,0): 68, 38, 46, (477,440,0): 73, 42, 48, (477,441,0): 71, 40, 46, (477,442,0): 71, 39, 44, (477,443,0): 68, 36, 41, (477,444,0): 66, 34, 39, (477,445,0): 63, 31, 36, (477,446,0): 64, 29, 33, (477,447,0): 61, 29, 32, (477,448,0): 64, 32, 35, (477,449,0): 64, 34, 36, (477,450,0): 64, 35, 39, (477,451,0): 63, 37, 40, (477,452,0): 63, 36, 43, (477,453,0): 59, 36, 42, (477,454,0): 58, 35, 43, (477,455,0): 56, 35, 42, (477,456,0): 53, 34, 40, (477,457,0): 53, 34, 40, (477,458,0): 52, 33, 37, (477,459,0): 51, 32, 34, (477,460,0): 52, 30, 33, (477,461,0): 51, 29, 31, (477,462,0): 52, 28, 28, (477,463,0): 50, 29, 28, (477,464,0): 50, 30, 32, (477,465,0): 48, 29, 31, (477,466,0): 47, 27, 29, (477,467,0): 46, 26, 28, (477,468,0): 47, 27, 29, (477,469,0): 49, 29, 31, (477,470,0): 52, 30, 33, (477,471,0): 54, 32, 35, (477,472,0): 56, 31, 35, (477,473,0): 56, 31, 35, (477,474,0): 56, 31, 35, (477,475,0): 56, 31, 35, (477,476,0): 56, 29, 34, (477,477,0): 54, 27, 32, (477,478,0): 52, 25, 30, (477,479,0): 51, 24, 31, (477,480,0): 52, 22, 32, (477,481,0): 49, 19, 31, (477,482,0): 43, 17, 26, (477,483,0): 39, 16, 24, (477,484,0): 41, 16, 22, (477,485,0): 46, 19, 26, (477,486,0): 53, 22, 28, (477,487,0): 59, 24, 30, (477,488,0): 54, 17, 24, (477,489,0): 53, 17, 21, (477,490,0): 56, 17, 20, (477,491,0): 61, 19, 23, (477,492,0): 70, 17, 23, (477,493,0): 81, 15, 25, (477,494,0): 98, 18, 31, (477,495,0): 107, 26, 41, (477,496,0): 88, 16, 30, (477,497,0): 92, 21, 37, (477,498,0): 99, 25, 42, (477,499,0): 94, 17, 35, (477,500,0): 87, 8, 27, (477,501,0): 99, 14, 35, (477,502,0): 114, 22, 43, (477,503,0): 116, 16, 40, (477,504,0): 143, 33, 58, (477,505,0): 134, 20, 45, (477,506,0): 129, 15, 40, (477,507,0): 129, 17, 39, (477,508,0): 119, 10, 29, (477,509,0): 112, 1, 18, (477,510,0): 129, 10, 30, (477,511,0): 161, 27, 51, (477,512,0): 172, 15, 42, (477,513,0): 177, 10, 40, (477,514,0): 174, 11, 42, (477,515,0): 191, 27, 62, (477,516,0): 207, 37, 76, (477,517,0): 215, 35, 82, (477,518,0): 233, 39, 92, (477,519,0): 244, 42, 100, (477,520,0): 243, 39, 100, (477,521,0): 237, 38, 97, (477,522,0): 231, 38, 93, (477,523,0): 231, 40, 94, (477,524,0): 234, 41, 94, (477,525,0): 239, 38, 90, (477,526,0): 245, 34, 87, (477,527,0): 249, 31, 91, (477,528,0): 255, 44, 116, (477,529,0): 255, 39, 118, (477,530,0): 252, 40, 117, (477,531,0): 255, 49, 124, (477,532,0): 255, 55, 128, (477,533,0): 246, 51, 119, (477,534,0): 242, 48, 111, (477,535,0): 247, 54, 107, (477,536,0): 255, 69, 113, (477,537,0): 252, 62, 98, (477,538,0): 247, 63, 97, (477,539,0): 240, 65, 106, (477,540,0): 235, 73, 132, (477,541,0): 251, 103, 181, (477,542,0): 255, 135, 235, (477,543,0): 255, 143, 247, (477,544,0): 255, 111, 204, (477,545,0): 255, 103, 180, (477,546,0): 255, 99, 154, (477,547,0): 242, 91, 126, (477,548,0): 224, 81, 99, (477,549,0): 216, 79, 89, (477,550,0): 209, 72, 88, (477,551,0): 188, 61, 80, (477,552,0): 184, 73, 90, (477,553,0): 169, 64, 81, (477,554,0): 163, 57, 71, (477,555,0): 185, 70, 87, (477,556,0): 217, 88, 110, (477,557,0): 207, 85, 108, (477,558,0): 164, 71, 92, (477,559,0): 138, 63, 83, (477,560,0): 130, 61, 82, (477,561,0): 128, 60, 81, (477,562,0): 124, 59, 81, (477,563,0): 121, 58, 77, (477,564,0): 113, 56, 75, (477,565,0): 105, 54, 69, (477,566,0): 97, 53, 68, (477,567,0): 93, 53, 64, (477,568,0): 105, 63, 77, (477,569,0): 108, 64, 77, (477,570,0): 115, 64, 81, (477,571,0): 116, 65, 80, (477,572,0): 113, 65, 81, (477,573,0): 107, 63, 76, (477,574,0): 100, 62, 75, (477,575,0): 95, 62, 71, (477,576,0): 95, 60, 67, (477,577,0): 95, 60, 67, (477,578,0): 92, 59, 66, (477,579,0): 91, 58, 65, (477,580,0): 89, 56, 63, (477,581,0): 86, 53, 60, (477,582,0): 82, 51, 57, (477,583,0): 81, 50, 56, (477,584,0): 76, 47, 52, (477,585,0): 74, 45, 50, (477,586,0): 71, 42, 47, (477,587,0): 67, 38, 43, (477,588,0): 62, 35, 40, (477,589,0): 59, 32, 37, (477,590,0): 58, 31, 36, (477,591,0): 58, 31, 36, (477,592,0): 60, 29, 35, (477,593,0): 60, 29, 35, (477,594,0): 58, 29, 34, (477,595,0): 54, 27, 32, (477,596,0): 53, 26, 31, (477,597,0): 51, 26, 30, (477,598,0): 48, 26, 29, (477,599,0): 47, 25, 28, (478,0,0): 51, 71, 69, (478,1,0): 52, 72, 70, (478,2,0): 52, 72, 70, (478,3,0): 53, 73, 71, (478,4,0): 54, 73, 71, (478,5,0): 55, 74, 72, (478,6,0): 55, 74, 72, (478,7,0): 55, 74, 72, (478,8,0): 58, 74, 73, (478,9,0): 58, 74, 73, (478,10,0): 59, 73, 73, (478,11,0): 59, 73, 73, (478,12,0): 59, 73, 73, (478,13,0): 59, 73, 73, (478,14,0): 61, 73, 73, (478,15,0): 61, 73, 71, (478,16,0): 65, 74, 69, (478,17,0): 63, 73, 65, (478,18,0): 63, 70, 63, (478,19,0): 60, 67, 60, (478,20,0): 57, 64, 57, (478,21,0): 56, 63, 56, (478,22,0): 56, 61, 55, (478,23,0): 56, 61, 55, (478,24,0): 65, 67, 62, (478,25,0): 65, 67, 62, (478,26,0): 65, 67, 62, (478,27,0): 64, 66, 61, (478,28,0): 65, 66, 61, (478,29,0): 65, 66, 61, (478,30,0): 65, 66, 61, (478,31,0): 65, 66, 61, (478,32,0): 68, 67, 62, (478,33,0): 68, 67, 62, (478,34,0): 70, 67, 62, (478,35,0): 69, 66, 61, (478,36,0): 69, 66, 59, (478,37,0): 69, 66, 59, (478,38,0): 70, 65, 59, (478,39,0): 70, 65, 59, (478,40,0): 70, 63, 55, (478,41,0): 70, 63, 55, (478,42,0): 70, 63, 53, (478,43,0): 70, 63, 53, (478,44,0): 71, 62, 53, (478,45,0): 71, 62, 53, (478,46,0): 71, 63, 52, (478,47,0): 71, 63, 52, (478,48,0): 70, 61, 52, (478,49,0): 70, 61, 52, (478,50,0): 70, 61, 52, (478,51,0): 70, 61, 52, (478,52,0): 70, 61, 52, (478,53,0): 70, 61, 52, (478,54,0): 71, 61, 52, (478,55,0): 71, 61, 52, (478,56,0): 69, 56, 48, (478,57,0): 68, 55, 47, (478,58,0): 69, 54, 47, (478,59,0): 69, 54, 47, (478,60,0): 68, 53, 46, (478,61,0): 67, 52, 45, (478,62,0): 67, 52, 45, (478,63,0): 67, 52, 45, (478,64,0): 71, 52, 46, (478,65,0): 71, 52, 46, (478,66,0): 71, 52, 46, (478,67,0): 70, 51, 45, (478,68,0): 70, 51, 45, (478,69,0): 69, 50, 44, (478,70,0): 69, 50, 44, (478,71,0): 69, 50, 44, (478,72,0): 69, 50, 44, (478,73,0): 69, 50, 44, (478,74,0): 68, 49, 43, (478,75,0): 68, 49, 43, (478,76,0): 67, 48, 42, (478,77,0): 67, 48, 42, (478,78,0): 66, 47, 41, (478,79,0): 66, 47, 40, (478,80,0): 67, 47, 36, (478,81,0): 67, 48, 34, (478,82,0): 66, 47, 33, (478,83,0): 66, 47, 33, (478,84,0): 65, 46, 32, (478,85,0): 65, 46, 32, (478,86,0): 64, 45, 31, (478,87,0): 64, 45, 31, (478,88,0): 65, 46, 32, (478,89,0): 64, 45, 31, (478,90,0): 62, 43, 29, (478,91,0): 61, 42, 28, (478,92,0): 60, 41, 27, (478,93,0): 61, 42, 28, (478,94,0): 61, 42, 28, (478,95,0): 62, 43, 29, (478,96,0): 61, 42, 28, (478,97,0): 62, 43, 29, (478,98,0): 62, 43, 29, (478,99,0): 63, 44, 30, (478,100,0): 64, 45, 31, (478,101,0): 64, 45, 31, (478,102,0): 65, 46, 32, (478,103,0): 65, 46, 32, (478,104,0): 66, 47, 33, (478,105,0): 66, 47, 33, (478,106,0): 66, 47, 33, (478,107,0): 65, 46, 32, (478,108,0): 65, 46, 32, (478,109,0): 64, 45, 31, (478,110,0): 64, 45, 31, (478,111,0): 64, 45, 31, (478,112,0): 63, 43, 34, (478,113,0): 63, 43, 34, (478,114,0): 63, 43, 34, (478,115,0): 62, 42, 33, (478,116,0): 62, 42, 33, (478,117,0): 61, 41, 32, (478,118,0): 61, 41, 32, (478,119,0): 61, 41, 32, (478,120,0): 59, 39, 30, (478,121,0): 58, 38, 29, (478,122,0): 58, 38, 29, (478,123,0): 57, 37, 28, (478,124,0): 57, 37, 28, (478,125,0): 56, 36, 27, (478,126,0): 56, 36, 27, (478,127,0): 56, 36, 27, (478,128,0): 56, 37, 31, (478,129,0): 56, 37, 31, (478,130,0): 56, 37, 31, (478,131,0): 56, 37, 31, (478,132,0): 56, 37, 31, (478,133,0): 56, 37, 31, (478,134,0): 56, 37, 31, (478,135,0): 56, 37, 31, (478,136,0): 54, 35, 29, (478,137,0): 54, 35, 29, (478,138,0): 54, 35, 29, (478,139,0): 54, 35, 29, (478,140,0): 54, 35, 29, (478,141,0): 54, 35, 29, (478,142,0): 54, 35, 29, (478,143,0): 53, 36, 29, (478,144,0): 53, 35, 31, (478,145,0): 51, 36, 31, (478,146,0): 51, 36, 31, (478,147,0): 51, 36, 31, (478,148,0): 51, 36, 31, (478,149,0): 51, 36, 31, (478,150,0): 51, 36, 31, (478,151,0): 51, 36, 31, (478,152,0): 52, 37, 32, (478,153,0): 52, 37, 32, (478,154,0): 52, 37, 32, (478,155,0): 52, 37, 32, (478,156,0): 52, 37, 32, (478,157,0): 52, 37, 32, (478,158,0): 52, 37, 32, (478,159,0): 52, 37, 32, (478,160,0): 53, 40, 34, (478,161,0): 53, 40, 34, (478,162,0): 54, 41, 35, (478,163,0): 54, 41, 35, (478,164,0): 55, 42, 36, (478,165,0): 55, 42, 36, (478,166,0): 55, 42, 36, (478,167,0): 56, 43, 37, (478,168,0): 58, 45, 39, (478,169,0): 58, 45, 39, (478,170,0): 58, 45, 39, (478,171,0): 58, 45, 39, (478,172,0): 58, 45, 39, (478,173,0): 57, 44, 38, (478,174,0): 57, 44, 38, (478,175,0): 55, 44, 38, (478,176,0): 57, 46, 44, (478,177,0): 56, 46, 44, (478,178,0): 56, 46, 44, (478,179,0): 56, 46, 44, (478,180,0): 56, 46, 44, (478,181,0): 56, 46, 44, (478,182,0): 56, 46, 44, (478,183,0): 56, 46, 44, (478,184,0): 57, 47, 45, (478,185,0): 57, 47, 45, (478,186,0): 57, 47, 45, (478,187,0): 58, 48, 46, (478,188,0): 58, 48, 46, (478,189,0): 59, 49, 47, (478,190,0): 59, 49, 47, (478,191,0): 58, 50, 47, (478,192,0): 58, 50, 48, (478,193,0): 56, 51, 48, (478,194,0): 56, 51, 48, (478,195,0): 56, 51, 48, (478,196,0): 56, 51, 48, (478,197,0): 56, 51, 48, (478,198,0): 56, 51, 48, (478,199,0): 56, 51, 48, (478,200,0): 55, 50, 47, (478,201,0): 55, 50, 47, (478,202,0): 55, 50, 47, (478,203,0): 55, 50, 47, (478,204,0): 55, 50, 47, (478,205,0): 55, 50, 47, (478,206,0): 55, 50, 47, (478,207,0): 55, 49, 49, (478,208,0): 54, 48, 52, (478,209,0): 54, 47, 54, (478,210,0): 54, 47, 54, (478,211,0): 54, 47, 54, (478,212,0): 54, 47, 54, (478,213,0): 54, 47, 54, (478,214,0): 54, 47, 54, (478,215,0): 54, 47, 54, (478,216,0): 52, 45, 52, (478,217,0): 52, 45, 52, (478,218,0): 52, 45, 52, (478,219,0): 53, 46, 53, (478,220,0): 53, 46, 53, (478,221,0): 54, 47, 54, (478,222,0): 54, 47, 54, (478,223,0): 57, 47, 55, (478,224,0): 61, 50, 58, (478,225,0): 62, 49, 58, (478,226,0): 63, 50, 59, (478,227,0): 64, 51, 60, (478,228,0): 67, 51, 61, (478,229,0): 69, 52, 62, (478,230,0): 72, 52, 63, (478,231,0): 72, 52, 63, (478,232,0): 76, 54, 66, (478,233,0): 77, 53, 66, (478,234,0): 81, 55, 68, (478,235,0): 82, 56, 69, (478,236,0): 84, 56, 70, (478,237,0): 86, 58, 72, (478,238,0): 87, 59, 73, (478,239,0): 87, 59, 73, (478,240,0): 96, 66, 78, (478,241,0): 100, 68, 79, (478,242,0): 108, 70, 81, (478,243,0): 114, 73, 81, (478,244,0): 121, 75, 78, (478,245,0): 124, 76, 76, (478,246,0): 124, 76, 74, (478,247,0): 121, 76, 71, (478,248,0): 121, 78, 72, (478,249,0): 119, 80, 75, (478,250,0): 120, 82, 79, (478,251,0): 118, 84, 83, (478,252,0): 118, 83, 89, (478,253,0): 117, 82, 89, (478,254,0): 116, 78, 91, (478,255,0): 112, 79, 90, (478,256,0): 110, 84, 87, (478,257,0): 108, 87, 86, (478,258,0): 110, 86, 86, (478,259,0): 112, 86, 85, (478,260,0): 115, 87, 86, (478,261,0): 116, 88, 85, (478,262,0): 117, 87, 85, (478,263,0): 118, 88, 86, (478,264,0): 118, 90, 89, (478,265,0): 118, 89, 91, (478,266,0): 115, 89, 92, (478,267,0): 113, 88, 92, (478,268,0): 110, 84, 93, (478,269,0): 105, 82, 92, (478,270,0): 101, 79, 91, (478,271,0): 98, 78, 90, (478,272,0): 95, 77, 89, (478,273,0): 94, 78, 91, (478,274,0): 94, 76, 90, (478,275,0): 94, 76, 90, (478,276,0): 93, 75, 87, (478,277,0): 94, 74, 86, (478,278,0): 94, 74, 86, (478,279,0): 94, 74, 86, (478,280,0): 96, 76, 87, (478,281,0): 96, 76, 87, (478,282,0): 96, 76, 87, (478,283,0): 95, 78, 88, (478,284,0): 96, 79, 87, (478,285,0): 96, 81, 88, (478,286,0): 97, 80, 88, (478,287,0): 96, 80, 90, (478,288,0): 103, 85, 97, (478,289,0): 102, 84, 96, (478,290,0): 103, 85, 97, (478,291,0): 104, 86, 98, (478,292,0): 107, 87, 98, (478,293,0): 111, 89, 101, (478,294,0): 114, 91, 101, (478,295,0): 118, 92, 101, (478,296,0): 121, 94, 103, (478,297,0): 122, 92, 100, (478,298,0): 124, 91, 100, (478,299,0): 126, 91, 98, (478,300,0): 128, 93, 100, (478,301,0): 132, 95, 102, (478,302,0): 134, 97, 104, (478,303,0): 138, 99, 104, (478,304,0): 141, 98, 105, (478,305,0): 139, 94, 101, (478,306,0): 133, 86, 94, (478,307,0): 125, 78, 86, (478,308,0): 118, 73, 78, (478,309,0): 110, 69, 73, (478,310,0): 103, 69, 70, (478,311,0): 98, 70, 69, (478,312,0): 92, 71, 66, (478,313,0): 92, 75, 68, (478,314,0): 93, 78, 71, (478,315,0): 94, 81, 73, (478,316,0): 93, 78, 71, (478,317,0): 89, 70, 64, (478,318,0): 80, 56, 52, (478,319,0): 69, 48, 47, (478,320,0): 53, 38, 45, (478,321,0): 46, 34, 44, (478,322,0): 40, 28, 38, (478,323,0): 34, 22, 32, (478,324,0): 29, 19, 30, (478,325,0): 29, 19, 30, (478,326,0): 30, 20, 31, (478,327,0): 31, 21, 32, (478,328,0): 26, 18, 31, (478,329,0): 25, 17, 30, (478,330,0): 24, 18, 32, (478,331,0): 23, 17, 31, (478,332,0): 22, 16, 30, (478,333,0): 22, 16, 30, (478,334,0): 19, 15, 30, (478,335,0): 19, 15, 30, (478,336,0): 21, 14, 30, (478,337,0): 21, 14, 30, (478,338,0): 21, 14, 30, (478,339,0): 21, 14, 30, (478,340,0): 21, 14, 30, (478,341,0): 21, 14, 30, (478,342,0): 21, 14, 30, (478,343,0): 21, 14, 30, (478,344,0): 20, 13, 29, (478,345,0): 19, 12, 28, (478,346,0): 18, 11, 27, (478,347,0): 17, 10, 26, (478,348,0): 17, 10, 26, (478,349,0): 18, 11, 27, (478,350,0): 19, 12, 28, (478,351,0): 20, 13, 29, (478,352,0): 22, 11, 28, (478,353,0): 22, 11, 28, (478,354,0): 20, 11, 28, (478,355,0): 20, 11, 28, (478,356,0): 20, 11, 28, (478,357,0): 20, 11, 28, (478,358,0): 19, 12, 28, (478,359,0): 19, 12, 28, (478,360,0): 17, 13, 28, (478,361,0): 17, 13, 28, (478,362,0): 16, 12, 27, (478,363,0): 16, 12, 27, (478,364,0): 14, 12, 26, (478,365,0): 13, 11, 25, (478,366,0): 13, 11, 25, (478,367,0): 12, 10, 23, (478,368,0): 18, 14, 28, (478,369,0): 18, 15, 26, (478,370,0): 19, 16, 27, (478,371,0): 20, 17, 28, (478,372,0): 23, 17, 27, (478,373,0): 24, 18, 28, (478,374,0): 25, 19, 29, (478,375,0): 26, 18, 29, (478,376,0): 26, 19, 27, (478,377,0): 26, 19, 27, (478,378,0): 28, 18, 26, (478,379,0): 28, 18, 26, (478,380,0): 28, 18, 26, (478,381,0): 29, 18, 26, (478,382,0): 29, 18, 24, (478,383,0): 29, 18, 24, (478,384,0): 33, 21, 25, (478,385,0): 32, 20, 24, (478,386,0): 34, 19, 24, (478,387,0): 33, 18, 23, (478,388,0): 34, 19, 26, (478,389,0): 35, 20, 27, (478,390,0): 38, 21, 29, (478,391,0): 39, 22, 30, (478,392,0): 41, 21, 32, (478,393,0): 41, 21, 32, (478,394,0): 41, 21, 32, (478,395,0): 41, 21, 32, (478,396,0): 42, 20, 33, (478,397,0): 42, 20, 33, (478,398,0): 42, 20, 33, (478,399,0): 41, 21, 32, (478,400,0): 38, 19, 23, (478,401,0): 37, 21, 22, (478,402,0): 39, 23, 24, (478,403,0): 40, 24, 25, (478,404,0): 40, 24, 25, (478,405,0): 40, 24, 25, (478,406,0): 39, 23, 24, (478,407,0): 39, 23, 24, (478,408,0): 40, 24, 25, (478,409,0): 40, 24, 25, (478,410,0): 40, 24, 25, (478,411,0): 40, 24, 25, (478,412,0): 40, 24, 25, (478,413,0): 40, 24, 25, (478,414,0): 40, 24, 25, (478,415,0): 40, 24, 25, (478,416,0): 42, 23, 27, (478,417,0): 44, 25, 31, (478,418,0): 48, 27, 32, (478,419,0): 49, 28, 33, (478,420,0): 49, 28, 33, (478,421,0): 48, 27, 32, (478,422,0): 46, 24, 27, (478,423,0): 44, 22, 25, (478,424,0): 49, 24, 28, (478,425,0): 50, 25, 29, (478,426,0): 53, 28, 31, (478,427,0): 55, 30, 33, (478,428,0): 58, 32, 35, (478,429,0): 58, 32, 35, (478,430,0): 59, 33, 36, (478,431,0): 58, 31, 36, (478,432,0): 62, 35, 42, (478,433,0): 61, 34, 43, (478,434,0): 60, 33, 42, (478,435,0): 59, 32, 41, (478,436,0): 61, 31, 39, (478,437,0): 62, 32, 40, (478,438,0): 64, 33, 39, (478,439,0): 64, 33, 39, (478,440,0): 66, 35, 41, (478,441,0): 65, 34, 40, (478,442,0): 66, 34, 39, (478,443,0): 64, 32, 37, (478,444,0): 64, 29, 33, (478,445,0): 62, 27, 31, (478,446,0): 60, 25, 29, (478,447,0): 58, 26, 29, (478,448,0): 63, 31, 34, (478,449,0): 63, 33, 35, (478,450,0): 62, 33, 37, (478,451,0): 61, 35, 38, (478,452,0): 61, 34, 41, (478,453,0): 57, 34, 40, (478,454,0): 57, 34, 42, (478,455,0): 55, 34, 41, (478,456,0): 52, 33, 39, (478,457,0): 51, 32, 38, (478,458,0): 50, 31, 35, (478,459,0): 49, 30, 32, (478,460,0): 50, 28, 31, (478,461,0): 49, 27, 29, (478,462,0): 50, 26, 26, (478,463,0): 47, 26, 25, (478,464,0): 49, 29, 31, (478,465,0): 46, 27, 29, (478,466,0): 45, 25, 27, (478,467,0): 44, 24, 26, (478,468,0): 45, 25, 27, (478,469,0): 47, 27, 29, (478,470,0): 51, 29, 32, (478,471,0): 53, 31, 34, (478,472,0): 55, 30, 34, (478,473,0): 55, 30, 34, (478,474,0): 56, 31, 35, (478,475,0): 56, 31, 35, (478,476,0): 56, 29, 34, (478,477,0): 54, 27, 32, (478,478,0): 52, 25, 30, (478,479,0): 53, 23, 31, (478,480,0): 51, 19, 30, (478,481,0): 49, 17, 30, (478,482,0): 44, 17, 26, (478,483,0): 41, 15, 24, (478,484,0): 40, 17, 23, (478,485,0): 45, 20, 26, (478,486,0): 51, 22, 27, (478,487,0): 54, 23, 28, (478,488,0): 53, 21, 26, (478,489,0): 50, 18, 21, (478,490,0): 50, 18, 19, (478,491,0): 58, 19, 22, (478,492,0): 66, 17, 21, (478,493,0): 73, 13, 21, (478,494,0): 89, 16, 27, (478,495,0): 101, 25, 38, (478,496,0): 88, 20, 33, (478,497,0): 85, 17, 30, (478,498,0): 92, 20, 34, (478,499,0): 93, 19, 34, (478,500,0): 87, 10, 26, (478,501,0): 94, 16, 32, (478,502,0): 106, 23, 41, (478,503,0): 106, 17, 37, (478,504,0): 107, 8, 29, (478,505,0): 108, 6, 27, (478,506,0): 109, 7, 28, (478,507,0): 109, 10, 28, (478,508,0): 105, 11, 27, (478,509,0): 105, 9, 23, (478,510,0): 113, 10, 27, (478,511,0): 130, 11, 30, (478,512,0): 171, 22, 44, (478,513,0): 189, 27, 51, (478,514,0): 186, 26, 52, (478,515,0): 189, 28, 59, (478,516,0): 195, 31, 65, (478,517,0): 205, 35, 74, (478,518,0): 226, 45, 90, (478,519,0): 233, 43, 89, (478,520,0): 234, 37, 83, (478,521,0): 234, 33, 77, (478,522,0): 232, 29, 72, (478,523,0): 235, 30, 71, (478,524,0): 239, 34, 77, (478,525,0): 241, 35, 81, (478,526,0): 239, 33, 82, (478,527,0): 240, 29, 84, (478,528,0): 255, 41, 102, (478,529,0): 255, 36, 100, (478,530,0): 251, 37, 97, (478,531,0): 252, 43, 100, (478,532,0): 251, 48, 101, (478,533,0): 247, 49, 98, (478,534,0): 246, 49, 94, (478,535,0): 245, 49, 87, (478,536,0): 255, 64, 94, (478,537,0): 247, 50, 77, (478,538,0): 241, 51, 77, (478,539,0): 239, 60, 92, (478,540,0): 230, 68, 115, (478,541,0): 234, 88, 150, (478,542,0): 242, 114, 191, (478,543,0): 249, 119, 205, (478,544,0): 251, 102, 186, (478,545,0): 255, 94, 164, (478,546,0): 255, 96, 143, (478,547,0): 252, 92, 118, (478,548,0): 239, 84, 92, (478,549,0): 234, 84, 85, (478,550,0): 225, 78, 86, (478,551,0): 197, 65, 76, (478,552,0): 180, 72, 85, (478,553,0): 165, 69, 83, (478,554,0): 155, 61, 75, (478,555,0): 168, 67, 85, (478,556,0): 190, 73, 100, (478,557,0): 172, 62, 91, (478,558,0): 136, 58, 84, (478,559,0): 129, 67, 90, (478,560,0): 123, 64, 86, (478,561,0): 114, 55, 75, (478,562,0): 111, 52, 74, (478,563,0): 114, 57, 76, (478,564,0): 106, 55, 74, (478,565,0): 94, 47, 63, (478,566,0): 88, 47, 63, (478,567,0): 92, 56, 68, (478,568,0): 97, 59, 74, (478,569,0): 103, 61, 75, (478,570,0): 111, 62, 81, (478,571,0): 115, 64, 81, (478,572,0): 113, 64, 83, (478,573,0): 107, 63, 78, (478,574,0): 99, 61, 76, (478,575,0): 93, 60, 71, (478,576,0): 95, 59, 69, (478,577,0): 95, 60, 67, (478,578,0): 92, 59, 66, (478,579,0): 91, 58, 65, (478,580,0): 89, 56, 63, (478,581,0): 86, 53, 60, (478,582,0): 82, 51, 57, (478,583,0): 81, 50, 56, (478,584,0): 78, 49, 54, (478,585,0): 76, 47, 52, (478,586,0): 73, 44, 49, (478,587,0): 69, 40, 45, (478,588,0): 63, 36, 41, (478,589,0): 61, 34, 39, (478,590,0): 60, 33, 38, (478,591,0): 59, 32, 37, (478,592,0): 61, 30, 36, (478,593,0): 60, 29, 35, (478,594,0): 58, 29, 34, (478,595,0): 54, 27, 32, (478,596,0): 52, 25, 30, (478,597,0): 50, 25, 29, (478,598,0): 46, 24, 27, (478,599,0): 46, 24, 27, (479,0,0): 51, 71, 69, (479,1,0): 51, 71, 69, (479,2,0): 52, 72, 70, (479,3,0): 52, 72, 70, (479,4,0): 53, 73, 71, (479,5,0): 53, 73, 71, (479,6,0): 55, 74, 72, (479,7,0): 55, 74, 72, (479,8,0): 55, 74, 72, (479,9,0): 55, 74, 72, (479,10,0): 57, 73, 72, (479,11,0): 57, 73, 72, (479,12,0): 57, 73, 72, (479,13,0): 57, 73, 72, (479,14,0): 58, 72, 72, (479,15,0): 58, 72, 72, (479,16,0): 64, 75, 71, (479,17,0): 63, 74, 68, (479,18,0): 61, 70, 65, (479,19,0): 58, 67, 62, (479,20,0): 55, 64, 59, (479,21,0): 55, 61, 57, (479,22,0): 55, 61, 57, (479,23,0): 56, 61, 55, (479,24,0): 65, 67, 62, (479,25,0): 65, 67, 62, (479,26,0): 65, 67, 62, (479,27,0): 64, 66, 61, (479,28,0): 65, 66, 61, (479,29,0): 65, 66, 60, (479,30,0): 64, 65, 60, (479,31,0): 64, 65, 59, (479,32,0): 66, 65, 60, (479,33,0): 66, 65, 60, (479,34,0): 68, 65, 60, (479,35,0): 68, 65, 60, (479,36,0): 68, 65, 58, (479,37,0): 69, 66, 59, (479,38,0): 70, 65, 59, (479,39,0): 70, 66, 57, (479,40,0): 70, 63, 55, (479,41,0): 70, 63, 55, (479,42,0): 70, 63, 53, (479,43,0): 70, 63, 53, (479,44,0): 71, 62, 53, (479,45,0): 71, 62, 53, (479,46,0): 71, 63, 52, (479,47,0): 71, 63, 52, (479,48,0): 69, 60, 51, (479,49,0): 69, 60, 51, (479,50,0): 69, 60, 51, (479,51,0): 69, 60, 51, (479,52,0): 69, 60, 51, (479,53,0): 69, 60, 51, (479,54,0): 70, 60, 51, (479,55,0): 72, 59, 51, (479,56,0): 68, 55, 47, (479,57,0): 69, 54, 47, (479,58,0): 68, 53, 46, (479,59,0): 70, 53, 45, (479,60,0): 69, 52, 45, (479,61,0): 69, 52, 44, (479,62,0): 68, 51, 44, (479,63,0): 68, 51, 43, (479,64,0): 70, 51, 44, (479,65,0): 70, 51, 44, (479,66,0): 70, 51, 44, (479,67,0): 69, 50, 43, (479,68,0): 69, 50, 43, (479,69,0): 68, 49, 42, (479,70,0): 68, 49, 42, (479,71,0): 68, 49, 42, (479,72,0): 69, 50, 43, (479,73,0): 68, 49, 42, (479,74,0): 68, 49, 42, (479,75,0): 67, 48, 41, (479,76,0): 67, 48, 41, (479,77,0): 66, 47, 40, (479,78,0): 66, 47, 40, (479,79,0): 66, 48, 38, (479,80,0): 67, 47, 36, (479,81,0): 66, 47, 33, (479,82,0): 66, 46, 35, (479,83,0): 65, 46, 32, (479,84,0): 65, 45, 34, (479,85,0): 64, 45, 31, (479,86,0): 64, 44, 33, (479,87,0): 64, 45, 31, (479,88,0): 65, 45, 34, (479,89,0): 64, 45, 31, (479,90,0): 62, 42, 31, (479,91,0): 61, 42, 28, (479,92,0): 60, 40, 29, (479,93,0): 61, 42, 28, (479,94,0): 61, 41, 30, (479,95,0): 62, 43, 29, (479,96,0): 63, 41, 30, (479,97,0): 64, 42, 29, (479,98,0): 64, 42, 31, (479,99,0): 63, 44, 30, (479,100,0): 66, 44, 33, (479,101,0): 65, 46, 32, (479,102,0): 65, 45, 34, (479,103,0): 66, 47, 33, (479,104,0): 67, 47, 36, (479,105,0): 67, 48, 34, (479,106,0): 67, 47, 36, (479,107,0): 66, 47, 33, (479,108,0): 66, 46, 35, (479,109,0): 65, 46, 32, (479,110,0): 65, 45, 34, (479,111,0): 65, 45, 34, (479,112,0): 64, 44, 35, (479,113,0): 64, 44, 35, (479,114,0): 64, 44, 37, (479,115,0): 63, 43, 34, (479,116,0): 63, 43, 36, (479,117,0): 62, 42, 33, (479,118,0): 62, 42, 35, (479,119,0): 62, 42, 33, (479,120,0): 59, 39, 32, (479,121,0): 59, 39, 30, (479,122,0): 58, 38, 31, (479,123,0): 58, 38, 29, (479,124,0): 57, 37, 30, (479,125,0): 57, 37, 28, (479,126,0): 56, 36, 29, (479,127,0): 56, 36, 29, (479,128,0): 56, 37, 30, (479,129,0): 56, 37, 31, (479,130,0): 56, 37, 31, (479,131,0): 56, 37, 31, (479,132,0): 56, 37, 31, (479,133,0): 56, 37, 31, (479,134,0): 56, 37, 31, (479,135,0): 56, 37, 31, (479,136,0): 54, 35, 29, (479,137,0): 53, 36, 29, (479,138,0): 53, 36, 29, (479,139,0): 53, 36, 29, (479,140,0): 53, 36, 29, (479,141,0): 53, 36, 29, (479,142,0): 53, 36, 29, (479,143,0): 53, 36, 29, (479,144,0): 51, 36, 31, (479,145,0): 51, 36, 31, (479,146,0): 51, 36, 33, (479,147,0): 51, 36, 31, (479,148,0): 51, 36, 33, (479,149,0): 51, 36, 31, (479,150,0): 51, 36, 33, (479,151,0): 51, 36, 31, (479,152,0): 52, 37, 34, (479,153,0): 52, 37, 32, (479,154,0): 52, 37, 34, (479,155,0): 52, 37, 32, (479,156,0): 52, 37, 34, (479,157,0): 52, 37, 32, (479,158,0): 52, 37, 34, (479,159,0): 51, 38, 32, (479,160,0): 53, 40, 34, (479,161,0): 51, 40, 34, (479,162,0): 53, 40, 34, (479,163,0): 52, 41, 35, (479,164,0): 54, 41, 35, (479,165,0): 53, 42, 36, (479,166,0): 55, 42, 36, (479,167,0): 54, 43, 37, (479,168,0): 58, 45, 39, (479,169,0): 56, 45, 39, (479,170,0): 58, 45, 39, (479,171,0): 55, 44, 38, (479,172,0): 57, 44, 38, (479,173,0): 55, 44, 38, (479,174,0): 57, 44, 38, (479,175,0): 54, 43, 39, (479,176,0): 57, 46, 42, (479,177,0): 56, 46, 44, (479,178,0): 57, 46, 44, (479,179,0): 56, 46, 44, (479,180,0): 57, 46, 44, (479,181,0): 56, 46, 44, (479,182,0): 57, 46, 44, (479,183,0): 56, 46, 44, (479,184,0): 57, 46, 44, (479,185,0): 56, 46, 44, (479,186,0): 58, 47, 45, (479,187,0): 57, 47, 45, (479,188,0): 59, 48, 46, (479,189,0): 58, 48, 46, (479,190,0): 60, 49, 47, (479,191,0): 59, 49, 47, (479,192,0): 58, 50, 48, (479,193,0): 56, 51, 48, (479,194,0): 58, 50, 48, (479,195,0): 56, 51, 48, (479,196,0): 58, 50, 48, (479,197,0): 56, 51, 48, (479,198,0): 58, 50, 48, (479,199,0): 56, 51, 48, (479,200,0): 58, 50, 48, (479,201,0): 56, 51, 48, (479,202,0): 58, 50, 48, (479,203,0): 56, 51, 48, (479,204,0): 58, 50, 48, (479,205,0): 56, 51, 48, (479,206,0): 58, 50, 48, (479,207,0): 56, 50, 50, (479,208,0): 54, 48, 52, (479,209,0): 54, 47, 54, (479,210,0): 54, 47, 54, (479,211,0): 54, 47, 54, (479,212,0): 54, 47, 54, (479,213,0): 54, 47, 54, (479,214,0): 54, 47, 54, (479,215,0): 54, 47, 54, (479,216,0): 51, 44, 51, (479,217,0): 52, 45, 52, (479,218,0): 52, 45, 52, (479,219,0): 52, 45, 52, (479,220,0): 53, 46, 53, (479,221,0): 54, 47, 54, (479,222,0): 54, 47, 54, (479,223,0): 56, 46, 54, (479,224,0): 60, 49, 57, (479,225,0): 62, 49, 56, (479,226,0): 63, 50, 59, (479,227,0): 64, 51, 58, (479,228,0): 67, 51, 61, (479,229,0): 68, 53, 60, (479,230,0): 69, 52, 62, (479,231,0): 72, 52, 61, (479,232,0): 76, 54, 66, (479,233,0): 76, 55, 64, (479,234,0): 78, 54, 67, (479,235,0): 82, 56, 67, (479,236,0): 84, 56, 70, (479,237,0): 85, 57, 69, (479,238,0): 86, 58, 72, (479,239,0): 87, 59, 71, (479,240,0): 96, 66, 78, (479,241,0): 100, 68, 79, (479,242,0): 106, 70, 80, (479,243,0): 113, 73, 81, (479,244,0): 118, 76, 80, (479,245,0): 120, 76, 77, (479,246,0): 121, 75, 75, (479,247,0): 119, 75, 74, (479,248,0): 119, 78, 76, (479,249,0): 119, 79, 77, (479,250,0): 120, 82, 81, (479,251,0): 119, 83, 83, (479,252,0): 119, 83, 87, (479,253,0): 117, 82, 89, (479,254,0): 116, 78, 89, (479,255,0): 112, 79, 86, (479,256,0): 112, 83, 87, (479,257,0): 109, 85, 85, (479,258,0): 110, 86, 84, (479,259,0): 112, 86, 85, (479,260,0): 112, 86, 85, (479,261,0): 115, 87, 86, (479,262,0): 116, 88, 87, (479,263,0): 114, 88, 87, (479,264,0): 114, 88, 89, (479,265,0): 114, 88, 91, (479,266,0): 114, 89, 93, (479,267,0): 113, 88, 94, (479,268,0): 108, 85, 93, (479,269,0): 105, 82, 92, (479,270,0): 102, 78, 91, (479,271,0): 99, 77, 90, (479,272,0): 92, 74, 86, (479,273,0): 92, 74, 88, (479,274,0): 91, 73, 87, (479,275,0): 90, 72, 86, (479,276,0): 90, 72, 84, (479,277,0): 91, 71, 83, (479,278,0): 90, 70, 82, (479,279,0): 90, 70, 82, (479,280,0): 93, 73, 84, (479,281,0): 93, 73, 84, (479,282,0): 93, 73, 84, (479,283,0): 92, 75, 85, (479,284,0): 92, 75, 85, (479,285,0): 92, 75, 83, (479,286,0): 92, 75, 85, (479,287,0): 93, 76, 86, (479,288,0): 100, 84, 95, (479,289,0): 100, 84, 95, (479,290,0): 101, 85, 98, (479,291,0): 103, 85, 97, (479,292,0): 107, 87, 99, (479,293,0): 110, 88, 100, (479,294,0): 114, 91, 101, (479,295,0): 115, 92, 100, (479,296,0): 120, 93, 102, (479,297,0): 122, 92, 100, (479,298,0): 122, 91, 99, (479,299,0): 124, 91, 98, (479,300,0): 125, 92, 99, (479,301,0): 130, 95, 101, (479,302,0): 133, 98, 104, (479,303,0): 138, 99, 104, (479,304,0): 143, 100, 107, (479,305,0): 142, 95, 103, (479,306,0): 134, 87, 95, (479,307,0): 126, 77, 83, (479,308,0): 117, 70, 76, (479,309,0): 109, 67, 71, (479,310,0): 106, 67, 70, (479,311,0): 100, 70, 68, (479,312,0): 90, 66, 62, (479,313,0): 90, 71, 65, (479,314,0): 92, 77, 70, (479,315,0): 96, 81, 74, (479,316,0): 97, 80, 73, (479,317,0): 90, 71, 65, (479,318,0): 80, 56, 52, (479,319,0): 68, 47, 46, (479,320,0): 55, 38, 44, (479,321,0): 48, 35, 42, (479,322,0): 41, 28, 37, (479,323,0): 34, 23, 31, (479,324,0): 31, 20, 28, (479,325,0): 29, 19, 28, (479,326,0): 30, 20, 29, (479,327,0): 32, 22, 31, (479,328,0): 28, 18, 29, (479,329,0): 26, 18, 31, (479,330,0): 25, 17, 30, (479,331,0): 24, 16, 31, (479,332,0): 23, 15, 30, (479,333,0): 23, 15, 30, (479,334,0): 22, 13, 30, (479,335,0): 22, 13, 30, (479,336,0): 21, 14, 30, (479,337,0): 21, 14, 30, (479,338,0): 21, 14, 30, (479,339,0): 21, 14, 30, (479,340,0): 21, 14, 30, (479,341,0): 21, 14, 30, (479,342,0): 21, 14, 30, (479,343,0): 21, 14, 30, (479,344,0): 20, 13, 29, (479,345,0): 19, 12, 28, (479,346,0): 18, 11, 27, (479,347,0): 17, 10, 26, (479,348,0): 17, 10, 26, (479,349,0): 18, 11, 27, (479,350,0): 19, 12, 28, (479,351,0): 20, 13, 29, (479,352,0): 20, 11, 28, (479,353,0): 20, 11, 28, (479,354,0): 20, 11, 28, (479,355,0): 19, 12, 28, (479,356,0): 19, 12, 28, (479,357,0): 19, 12, 28, (479,358,0): 19, 12, 28, (479,359,0): 17, 13, 28, (479,360,0): 17, 13, 28, (479,361,0): 16, 14, 28, (479,362,0): 15, 13, 27, (479,363,0): 15, 13, 27, (479,364,0): 14, 12, 26, (479,365,0): 12, 11, 25, (479,366,0): 11, 10, 24, (479,367,0): 12, 10, 23, (479,368,0): 18, 14, 28, (479,369,0): 19, 16, 27, (479,370,0): 21, 15, 27, (479,371,0): 22, 16, 28, (479,372,0): 23, 17, 27, (479,373,0): 24, 18, 28, (479,374,0): 26, 18, 29, (479,375,0): 27, 19, 30, (479,376,0): 26, 19, 27, (479,377,0): 28, 18, 27, (479,378,0): 28, 18, 26, (479,379,0): 28, 18, 26, (479,380,0): 29, 18, 26, (479,381,0): 29, 18, 26, (479,382,0): 29, 18, 24, (479,383,0): 30, 17, 24, (479,384,0): 34, 21, 28, (479,385,0): 33, 21, 25, (479,386,0): 34, 19, 26, (479,387,0): 34, 19, 26, (479,388,0): 35, 20, 27, (479,389,0): 36, 21, 28, (479,390,0): 39, 22, 30, (479,391,0): 40, 23, 31, (479,392,0): 41, 21, 30, (479,393,0): 41, 21, 30, (479,394,0): 41, 21, 30, (479,395,0): 41, 21, 30, (479,396,0): 42, 20, 32, (479,397,0): 42, 20, 32, (479,398,0): 42, 20, 32, (479,399,0): 41, 21, 30, (479,400,0): 38, 19, 23, (479,401,0): 37, 21, 22, (479,402,0): 38, 22, 23, (479,403,0): 40, 24, 25, (479,404,0): 40, 24, 25, (479,405,0): 40, 24, 25, (479,406,0): 39, 23, 24, (479,407,0): 39, 23, 24, (479,408,0): 40, 24, 25, (479,409,0): 42, 23, 25, (479,410,0): 42, 23, 25, (479,411,0): 42, 23, 25, (479,412,0): 42, 23, 25, (479,413,0): 42, 23, 25, (479,414,0): 42, 23, 25, (479,415,0): 42, 23, 25, (479,416,0): 42, 23, 27, (479,417,0): 44, 25, 29, (479,418,0): 48, 28, 30, (479,419,0): 49, 29, 31, (479,420,0): 49, 29, 31, (479,421,0): 48, 28, 30, (479,422,0): 46, 24, 27, (479,423,0): 46, 21, 24, (479,424,0): 47, 22, 26, (479,425,0): 49, 23, 26, (479,426,0): 51, 25, 28, (479,427,0): 53, 27, 30, (479,428,0): 57, 28, 32, (479,429,0): 58, 29, 33, (479,430,0): 58, 29, 33, (479,431,0): 58, 29, 33, (479,432,0): 65, 36, 41, (479,433,0): 64, 34, 42, (479,434,0): 62, 32, 40, (479,435,0): 61, 31, 39, (479,436,0): 60, 30, 38, (479,437,0): 60, 31, 36, (479,438,0): 61, 30, 36, (479,439,0): 61, 32, 37, (479,440,0): 60, 31, 36, (479,441,0): 60, 31, 36, (479,442,0): 59, 30, 35, (479,443,0): 58, 29, 33, (479,444,0): 57, 28, 32, (479,445,0): 55, 26, 30, (479,446,0): 54, 25, 29, (479,447,0): 51, 25, 28, (479,448,0): 59, 33, 36, (479,449,0): 59, 32, 37, (479,450,0): 59, 34, 38, (479,451,0): 59, 34, 38, (479,452,0): 57, 34, 40, (479,453,0): 56, 35, 42, (479,454,0): 55, 34, 41, (479,455,0): 54, 35, 41, (479,456,0): 51, 32, 38, (479,457,0): 50, 31, 37, (479,458,0): 49, 30, 34, (479,459,0): 48, 29, 33, (479,460,0): 47, 27, 29, (479,461,0): 47, 25, 27, (479,462,0): 46, 24, 26, (479,463,0): 45, 23, 25, (479,464,0): 47, 28, 30, (479,465,0): 46, 27, 31, (479,466,0): 43, 24, 28, (479,467,0): 43, 22, 27, (479,468,0): 43, 22, 27, (479,469,0): 46, 25, 30, (479,470,0): 50, 27, 33, (479,471,0): 52, 30, 33, (479,472,0): 54, 29, 35, (479,473,0): 55, 30, 34, (479,474,0): 55, 30, 34, (479,475,0): 56, 29, 34, (479,476,0): 56, 29, 34, (479,477,0): 54, 27, 32, (479,478,0): 54, 25, 30, (479,479,0): 53, 24, 29, (479,480,0): 51, 20, 28, (479,481,0): 48, 18, 26, (479,482,0): 44, 17, 24, (479,483,0): 42, 17, 23, (479,484,0): 42, 17, 21, (479,485,0): 45, 18, 23, (479,486,0): 49, 20, 24, (479,487,0): 52, 21, 26, (479,488,0): 55, 23, 26, (479,489,0): 50, 18, 21, (479,490,0): 51, 17, 18, (479,491,0): 58, 19, 22, (479,492,0): 62, 16, 19, (479,493,0): 67, 12, 18, (479,494,0): 82, 14, 25, (479,495,0): 94, 24, 35, (479,496,0): 91, 23, 34, (479,497,0): 80, 12, 25, (479,498,0): 84, 16, 31, (479,499,0): 91, 20, 36, (479,500,0): 87, 16, 34, (479,501,0): 91, 20, 38, (479,502,0): 98, 23, 44, (479,503,0): 94, 15, 37, (479,504,0): 94, 9, 32, (479,505,0): 105, 16, 38, (479,506,0): 111, 18, 39, (479,507,0): 110, 15, 35, (479,508,0): 116, 19, 38, (479,509,0): 126, 28, 43, (479,510,0): 131, 28, 45, (479,511,0): 137, 18, 37, (479,512,0): 168, 18, 43, (479,513,0): 200, 36, 63, (479,514,0): 197, 34, 61, (479,515,0): 184, 25, 53, (479,516,0): 179, 20, 50, (479,517,0): 187, 28, 60, (479,518,0): 199, 37, 74, (479,519,0): 195, 26, 65, (479,520,0): 206, 30, 68, (479,521,0): 209, 25, 61, (479,522,0): 212, 21, 55, (479,523,0): 219, 24, 58, (479,524,0): 230, 32, 68, (479,525,0): 237, 38, 79, (479,526,0): 234, 38, 86, (479,527,0): 233, 32, 84, (479,528,0): 251, 37, 89, (479,529,0): 251, 33, 83, (479,530,0): 248, 35, 81, (479,531,0): 246, 40, 79, (479,532,0): 245, 44, 80, (479,533,0): 247, 49, 84, (479,534,0): 245, 50, 82, (479,535,0): 239, 46, 73, (479,536,0): 239, 49, 74, (479,537,0): 224, 38, 61, (479,538,0): 223, 43, 68, (479,539,0): 228, 61, 91, (479,540,0): 215, 64, 105, (479,541,0): 203, 69, 120, (479,542,0): 194, 78, 139, (479,543,0): 197, 77, 141, (479,544,0): 240, 92, 154, (479,545,0): 249, 87, 137, (479,546,0): 255, 94, 126, (479,547,0): 255, 95, 112, (479,548,0): 254, 89, 93, (479,549,0): 255, 93, 94, (479,550,0): 248, 92, 96, (479,551,0): 218, 77, 86, (479,552,0): 179, 65, 75, (479,553,0): 166, 70, 82, (479,554,0): 152, 66, 79, (479,555,0): 151, 64, 83, (479,556,0): 156, 60, 87, (479,557,0): 137, 46, 77, (479,558,0): 117, 48, 77, (479,559,0): 128, 69, 97, (479,560,0): 125, 67, 89, (479,561,0): 109, 55, 71, (479,562,0): 105, 51, 67, (479,563,0): 112, 59, 75, (479,564,0): 106, 58, 72, (479,565,0): 93, 47, 60, (479,566,0): 89, 47, 59, (479,567,0): 100, 60, 71, (479,568,0): 94, 54, 65, (479,569,0): 99, 57, 69, (479,570,0): 105, 61, 76, (479,571,0): 111, 64, 80, (479,572,0): 109, 65, 80, (479,573,0): 104, 63, 79, (479,574,0): 96, 60, 74, (479,575,0): 90, 57, 68, (479,576,0): 93, 60, 69, (479,577,0): 93, 60, 67, (479,578,0): 92, 59, 66, (479,579,0): 90, 59, 65, (479,580,0): 88, 57, 63, (479,581,0): 85, 54, 60, (479,582,0): 81, 52, 57, (479,583,0): 80, 51, 56, (479,584,0): 78, 51, 56, (479,585,0): 76, 49, 54, (479,586,0): 72, 45, 50, (479,587,0): 68, 41, 46, (479,588,0): 65, 38, 43, (479,589,0): 62, 35, 40, (479,590,0): 61, 34, 39, (479,591,0): 62, 33, 38, (479,592,0): 61, 32, 37, (479,593,0): 60, 31, 36, (479,594,0): 56, 29, 36, (479,595,0): 54, 27, 32, (479,596,0): 51, 26, 32, (479,597,0): 47, 25, 28, (479,598,0): 46, 23, 29, (479,599,0): 45, 23, 26, (480,0,0): 50, 72, 70, (480,1,0): 50, 72, 70, (480,2,0): 51, 73, 71, (480,3,0): 51, 73, 71, (480,4,0): 52, 74, 72, (480,5,0): 52, 74, 72, (480,6,0): 54, 74, 73, (480,7,0): 54, 74, 73, (480,8,0): 52, 72, 71, (480,9,0): 53, 73, 72, (480,10,0): 53, 73, 72, (480,11,0): 54, 74, 73, (480,12,0): 54, 74, 73, (480,13,0): 55, 75, 74, (480,14,0): 55, 75, 74, (480,15,0): 56, 74, 74, (480,16,0): 59, 73, 74, (480,17,0): 61, 73, 73, (480,18,0): 62, 72, 73, (480,19,0): 62, 72, 73, (480,20,0): 60, 70, 69, (480,21,0): 59, 68, 67, (480,22,0): 59, 65, 63, (480,23,0): 58, 64, 60, (480,24,0): 59, 64, 60, (480,25,0): 60, 65, 61, (480,26,0): 63, 65, 60, (480,27,0): 64, 66, 61, (480,28,0): 66, 67, 61, (480,29,0): 67, 67, 59, (480,30,0): 67, 66, 61, (480,31,0): 67, 66, 61, (480,32,0): 70, 67, 62, (480,33,0): 70, 67, 62, (480,34,0): 69, 66, 59, (480,35,0): 68, 65, 58, (480,36,0): 67, 64, 57, (480,37,0): 67, 64, 57, (480,38,0): 67, 63, 54, (480,39,0): 67, 63, 54, (480,40,0): 69, 62, 54, (480,41,0): 69, 62, 52, (480,42,0): 70, 61, 52, (480,43,0): 70, 61, 52, (480,44,0): 70, 62, 51, (480,45,0): 70, 62, 51, (480,46,0): 70, 62, 51, (480,47,0): 70, 62, 51, (480,48,0): 65, 58, 48, (480,49,0): 65, 58, 50, (480,50,0): 66, 57, 50, (480,51,0): 66, 57, 50, (480,52,0): 67, 56, 50, (480,53,0): 67, 56, 50, (480,54,0): 69, 56, 48, (480,55,0): 69, 56, 48, (480,56,0): 72, 58, 49, (480,57,0): 74, 57, 49, (480,58,0): 73, 56, 48, (480,59,0): 74, 56, 46, (480,60,0): 73, 54, 47, (480,61,0): 72, 54, 44, (480,62,0): 72, 52, 45, (480,63,0): 72, 52, 43, (480,64,0): 72, 52, 41, (480,65,0): 71, 51, 40, (480,66,0): 70, 50, 39, (480,67,0): 69, 49, 38, (480,68,0): 68, 48, 37, (480,69,0): 68, 48, 37, (480,70,0): 69, 49, 38, (480,71,0): 70, 50, 39, (480,72,0): 71, 51, 40, (480,73,0): 71, 51, 40, (480,74,0): 70, 50, 39, (480,75,0): 70, 50, 39, (480,76,0): 69, 49, 38, (480,77,0): 69, 49, 38, (480,78,0): 68, 48, 37, (480,79,0): 68, 48, 37, (480,80,0): 68, 46, 35, (480,81,0): 68, 46, 35, (480,82,0): 68, 45, 37, (480,83,0): 67, 45, 34, (480,84,0): 67, 44, 36, (480,85,0): 66, 44, 33, (480,86,0): 66, 43, 35, (480,87,0): 66, 44, 33, (480,88,0): 64, 41, 33, (480,89,0): 64, 42, 31, (480,90,0): 64, 41, 33, (480,91,0): 64, 42, 31, (480,92,0): 64, 41, 33, (480,93,0): 64, 42, 31, (480,94,0): 64, 41, 33, (480,95,0): 64, 42, 31, (480,96,0): 66, 41, 34, (480,97,0): 66, 42, 32, (480,98,0): 67, 42, 35, (480,99,0): 67, 45, 34, (480,100,0): 69, 44, 37, (480,101,0): 68, 46, 35, (480,102,0): 69, 46, 38, (480,103,0): 69, 47, 36, (480,104,0): 66, 46, 37, (480,105,0): 66, 46, 35, (480,106,0): 66, 46, 37, (480,107,0): 66, 46, 35, (480,108,0): 65, 47, 37, (480,109,0): 65, 47, 35, (480,110,0): 65, 47, 37, (480,111,0): 65, 47, 37, (480,112,0): 64, 45, 38, (480,113,0): 64, 45, 38, (480,114,0): 64, 45, 39, (480,115,0): 64, 45, 38, (480,116,0): 64, 45, 39, (480,117,0): 64, 45, 38, (480,118,0): 64, 45, 39, (480,119,0): 64, 45, 38, (480,120,0): 61, 42, 36, (480,121,0): 61, 42, 35, (480,122,0): 61, 42, 36, (480,123,0): 60, 41, 34, (480,124,0): 59, 40, 34, (480,125,0): 59, 40, 33, (480,126,0): 59, 40, 34, (480,127,0): 58, 39, 32, (480,128,0): 57, 38, 31, (480,129,0): 57, 38, 31, (480,130,0): 58, 39, 32, (480,131,0): 58, 39, 32, (480,132,0): 57, 40, 32, (480,133,0): 57, 40, 32, (480,134,0): 58, 41, 33, (480,135,0): 58, 41, 33, (480,136,0): 54, 37, 29, (480,137,0): 52, 38, 29, (480,138,0): 51, 37, 28, (480,139,0): 51, 37, 28, (480,140,0): 50, 36, 27, (480,141,0): 50, 36, 27, (480,142,0): 48, 35, 26, (480,143,0): 48, 35, 27, (480,144,0): 48, 34, 31, (480,145,0): 48, 34, 31, (480,146,0): 48, 34, 33, (480,147,0): 48, 34, 31, (480,148,0): 48, 34, 33, (480,149,0): 48, 34, 31, (480,150,0): 48, 34, 33, (480,151,0): 48, 34, 31, (480,152,0): 50, 36, 35, (480,153,0): 50, 36, 33, (480,154,0): 50, 36, 35, (480,155,0): 50, 36, 33, (480,156,0): 50, 36, 35, (480,157,0): 50, 36, 33, (480,158,0): 50, 36, 35, (480,159,0): 50, 36, 33, (480,160,0): 48, 37, 33, (480,161,0): 47, 38, 33, (480,162,0): 48, 37, 33, (480,163,0): 48, 39, 34, (480,164,0): 49, 38, 34, (480,165,0): 49, 40, 35, (480,166,0): 50, 39, 35, (480,167,0): 49, 40, 35, (480,168,0): 53, 42, 38, (480,169,0): 52, 43, 38, (480,170,0): 53, 42, 38, (480,171,0): 52, 43, 38, (480,172,0): 53, 42, 38, (480,173,0): 52, 43, 38, (480,174,0): 53, 42, 38, (480,175,0): 53, 42, 38, (480,176,0): 53, 42, 38, (480,177,0): 54, 43, 39, (480,178,0): 56, 42, 39, (480,179,0): 55, 44, 40, (480,180,0): 57, 43, 40, (480,181,0): 56, 45, 41, (480,182,0): 58, 44, 41, (480,183,0): 56, 45, 41, (480,184,0): 58, 44, 41, (480,185,0): 56, 45, 41, (480,186,0): 58, 44, 41, (480,187,0): 56, 45, 41, (480,188,0): 58, 44, 41, (480,189,0): 56, 45, 41, (480,190,0): 58, 44, 41, (480,191,0): 56, 45, 43, (480,192,0): 55, 45, 44, (480,193,0): 55, 47, 45, (480,194,0): 56, 46, 45, (480,195,0): 56, 48, 46, (480,196,0): 57, 47, 46, (480,197,0): 57, 49, 47, (480,198,0): 58, 48, 47, (480,199,0): 57, 49, 47, (480,200,0): 59, 49, 48, (480,201,0): 58, 50, 48, (480,202,0): 58, 48, 47, (480,203,0): 56, 48, 46, (480,204,0): 56, 46, 45, (480,205,0): 55, 47, 45, (480,206,0): 55, 45, 44, (480,207,0): 54, 45, 46, (480,208,0): 52, 46, 48, (480,209,0): 52, 46, 50, (480,210,0): 52, 46, 50, (480,211,0): 52, 46, 50, (480,212,0): 52, 46, 50, (480,213,0): 52, 46, 50, (480,214,0): 52, 46, 50, (480,215,0): 52, 46, 50, (480,216,0): 52, 46, 50, (480,217,0): 53, 47, 51, (480,218,0): 53, 47, 51, (480,219,0): 54, 48, 52, (480,220,0): 54, 48, 52, (480,221,0): 55, 49, 53, (480,222,0): 55, 49, 53, (480,223,0): 57, 48, 53, (480,224,0): 60, 49, 55, (480,225,0): 60, 49, 53, (480,226,0): 61, 50, 56, (480,227,0): 62, 51, 55, (480,228,0): 64, 51, 58, (480,229,0): 67, 52, 57, (480,230,0): 69, 52, 60, (480,231,0): 70, 53, 59, (480,232,0): 74, 54, 63, (480,233,0): 75, 54, 61, (480,234,0): 77, 54, 64, (480,235,0): 78, 55, 63, (480,236,0): 81, 55, 66, (480,237,0): 82, 56, 65, (480,238,0): 83, 57, 68, (480,239,0): 83, 57, 66, (480,240,0): 90, 63, 70, (480,241,0): 95, 65, 73, (480,242,0): 100, 69, 75, (480,243,0): 105, 73, 78, (480,244,0): 111, 74, 81, (480,245,0): 115, 76, 81, (480,246,0): 117, 76, 80, (480,247,0): 117, 76, 80, (480,248,0): 118, 77, 81, (480,249,0): 117, 78, 79, (480,250,0): 116, 77, 80, (480,251,0): 114, 78, 80, (480,252,0): 113, 77, 79, (480,253,0): 113, 77, 81, (480,254,0): 111, 76, 80, (480,255,0): 111, 76, 80, (480,256,0): 115, 85, 87, (480,257,0): 113, 84, 86, (480,258,0): 113, 84, 86, (480,259,0): 110, 84, 85, (480,260,0): 110, 84, 85, (480,261,0): 110, 86, 86, (480,262,0): 110, 85, 88, (480,263,0): 109, 87, 89, (480,264,0): 106, 84, 86, (480,265,0): 106, 86, 88, (480,266,0): 108, 86, 89, (480,267,0): 107, 84, 90, (480,268,0): 105, 82, 90, (480,269,0): 102, 79, 87, (480,270,0): 98, 75, 85, (480,271,0): 95, 74, 83, (480,272,0): 90, 72, 84, (480,273,0): 88, 72, 83, (480,274,0): 87, 71, 82, (480,275,0): 86, 70, 81, (480,276,0): 85, 69, 80, (480,277,0): 86, 68, 80, (480,278,0): 87, 69, 81, (480,279,0): 88, 70, 82, (480,280,0): 84, 66, 78, (480,281,0): 85, 67, 79, (480,282,0): 86, 68, 80, (480,283,0): 86, 70, 81, (480,284,0): 87, 71, 82, (480,285,0): 89, 73, 83, (480,286,0): 90, 74, 85, (480,287,0): 90, 74, 85, (480,288,0): 91, 73, 87, (480,289,0): 93, 75, 89, (480,290,0): 96, 78, 94, (480,291,0): 99, 78, 93, (480,292,0): 98, 77, 92, (480,293,0): 100, 78, 91, (480,294,0): 104, 80, 93, (480,295,0): 106, 83, 93, (480,296,0): 115, 87, 99, (480,297,0): 115, 88, 97, (480,298,0): 118, 88, 96, (480,299,0): 120, 89, 95, (480,300,0): 121, 90, 96, (480,301,0): 124, 91, 98, (480,302,0): 126, 93, 100, (480,303,0): 130, 93, 100, (480,304,0): 137, 92, 99, (480,305,0): 146, 96, 105, (480,306,0): 146, 95, 102, (480,307,0): 135, 84, 91, (480,308,0): 125, 74, 81, (480,309,0): 118, 72, 75, (480,310,0): 111, 69, 71, (480,311,0): 102, 68, 67, (480,312,0): 97, 69, 66, (480,313,0): 89, 68, 63, (480,314,0): 86, 68, 64, (480,315,0): 88, 70, 66, (480,316,0): 89, 71, 69, (480,317,0): 87, 65, 67, (480,318,0): 80, 55, 58, (480,319,0): 71, 46, 50, (480,320,0): 63, 44, 46, (480,321,0): 55, 39, 40, (480,322,0): 46, 31, 34, (480,323,0): 41, 26, 29, (480,324,0): 36, 24, 26, (480,325,0): 33, 22, 26, (480,326,0): 29, 18, 24, (480,327,0): 27, 16, 22, (480,328,0): 32, 21, 29, (480,329,0): 30, 18, 28, (480,330,0): 26, 14, 26, (480,331,0): 24, 12, 26, (480,332,0): 24, 10, 27, (480,333,0): 26, 11, 30, (480,334,0): 28, 13, 34, (480,335,0): 29, 16, 36, (480,336,0): 26, 15, 32, (480,337,0): 24, 15, 32, (480,338,0): 23, 14, 31, (480,339,0): 23, 14, 31, (480,340,0): 22, 13, 30, (480,341,0): 22, 13, 30, (480,342,0): 21, 12, 29, (480,343,0): 21, 12, 29, (480,344,0): 23, 14, 31, (480,345,0): 23, 14, 31, (480,346,0): 22, 13, 30, (480,347,0): 21, 12, 29, (480,348,0): 21, 12, 29, (480,349,0): 20, 11, 28, (480,350,0): 19, 10, 27, (480,351,0): 18, 11, 27, (480,352,0): 20, 13, 29, (480,353,0): 20, 13, 29, (480,354,0): 19, 12, 28, (480,355,0): 17, 13, 28, (480,356,0): 16, 12, 27, (480,357,0): 16, 12, 27, (480,358,0): 15, 11, 26, (480,359,0): 14, 12, 26, (480,360,0): 16, 14, 28, (480,361,0): 15, 14, 28, (480,362,0): 15, 14, 28, (480,363,0): 15, 14, 28, (480,364,0): 15, 14, 28, (480,365,0): 13, 15, 28, (480,366,0): 13, 15, 28, (480,367,0): 15, 15, 27, (480,368,0): 18, 14, 28, (480,369,0): 20, 14, 26, (480,370,0): 22, 14, 27, (480,371,0): 22, 14, 27, (480,372,0): 23, 15, 26, (480,373,0): 23, 15, 26, (480,374,0): 26, 16, 27, (480,375,0): 26, 16, 27, (480,376,0): 28, 18, 27, (480,377,0): 29, 17, 27, (480,378,0): 29, 18, 26, (480,379,0): 29, 18, 26, (480,380,0): 30, 17, 26, (480,381,0): 30, 17, 26, (480,382,0): 30, 17, 24, (480,383,0): 30, 17, 24, (480,384,0): 32, 19, 26, (480,385,0): 33, 20, 27, (480,386,0): 35, 19, 29, (480,387,0): 36, 21, 28, (480,388,0): 36, 21, 28, (480,389,0): 37, 22, 29, (480,390,0): 38, 21, 27, (480,391,0): 38, 21, 27, (480,392,0): 39, 20, 26, (480,393,0): 39, 20, 26, (480,394,0): 40, 21, 27, (480,395,0): 40, 21, 27, (480,396,0): 42, 21, 26, (480,397,0): 42, 21, 26, (480,398,0): 43, 22, 27, (480,399,0): 42, 23, 27, (480,400,0): 41, 22, 24, (480,401,0): 39, 23, 24, (480,402,0): 39, 23, 24, (480,403,0): 39, 23, 24, (480,404,0): 41, 22, 24, (480,405,0): 41, 22, 24, (480,406,0): 41, 22, 24, (480,407,0): 41, 22, 24, (480,408,0): 46, 27, 29, (480,409,0): 47, 27, 29, (480,410,0): 47, 27, 29, (480,411,0): 46, 26, 28, (480,412,0): 46, 26, 28, (480,413,0): 46, 26, 28, (480,414,0): 46, 24, 27, (480,415,0): 46, 24, 27, (480,416,0): 48, 28, 29, (480,417,0): 48, 28, 29, (480,418,0): 48, 28, 29, (480,419,0): 48, 28, 29, (480,420,0): 49, 27, 29, (480,421,0): 49, 27, 29, (480,422,0): 51, 26, 29, (480,423,0): 51, 27, 27, (480,424,0): 50, 24, 27, (480,425,0): 53, 24, 26, (480,426,0): 54, 25, 27, (480,427,0): 56, 27, 29, (480,428,0): 58, 28, 30, (480,429,0): 60, 30, 32, (480,430,0): 61, 31, 33, (480,431,0): 63, 31, 34, (480,432,0): 65, 30, 36, (480,433,0): 65, 30, 36, (480,434,0): 64, 29, 35, (480,435,0): 61, 29, 34, (480,436,0): 60, 28, 33, (480,437,0): 59, 28, 34, (480,438,0): 58, 29, 34, (480,439,0): 57, 30, 35, (480,440,0): 58, 33, 37, (480,441,0): 54, 32, 35, (480,442,0): 49, 29, 31, (480,443,0): 46, 25, 30, (480,444,0): 42, 23, 27, (480,445,0): 40, 24, 27, (480,446,0): 40, 24, 27, (480,447,0): 40, 25, 28, (480,448,0): 45, 28, 34, (480,449,0): 45, 28, 34, (480,450,0): 48, 29, 35, (480,451,0): 49, 30, 36, (480,452,0): 49, 32, 38, (480,453,0): 51, 34, 40, (480,454,0): 54, 37, 43, (480,455,0): 57, 38, 44, (480,456,0): 51, 32, 36, (480,457,0): 51, 32, 36, (480,458,0): 49, 30, 34, (480,459,0): 47, 28, 32, (480,460,0): 46, 26, 28, (480,461,0): 45, 25, 27, (480,462,0): 43, 23, 25, (480,463,0): 42, 22, 24, (480,464,0): 41, 22, 28, (480,465,0): 39, 22, 30, (480,466,0): 39, 22, 30, (480,467,0): 41, 21, 30, (480,468,0): 43, 24, 30, (480,469,0): 46, 25, 32, (480,470,0): 49, 26, 34, (480,471,0): 50, 27, 33, (480,472,0): 56, 30, 39, (480,473,0): 56, 31, 37, (480,474,0): 58, 31, 38, (480,475,0): 61, 31, 39, (480,476,0): 61, 32, 37, (480,477,0): 60, 31, 36, (480,478,0): 59, 28, 34, (480,479,0): 57, 28, 33, (480,480,0): 47, 21, 24, (480,481,0): 47, 21, 22, (480,482,0): 47, 21, 22, (480,483,0): 46, 20, 21, (480,484,0): 48, 19, 21, (480,485,0): 48, 18, 20, (480,486,0): 49, 17, 20, (480,487,0): 50, 15, 19, (480,488,0): 55, 19, 21, (480,489,0): 59, 20, 23, (480,490,0): 55, 14, 18, (480,491,0): 60, 15, 20, (480,492,0): 72, 23, 29, (480,493,0): 66, 13, 21, (480,494,0): 65, 8, 17, (480,495,0): 81, 18, 27, (480,496,0): 90, 20, 31, (480,497,0): 82, 11, 25, (480,498,0): 75, 11, 27, (480,499,0): 78, 17, 33, (480,500,0): 80, 18, 41, (480,501,0): 77, 15, 40, (480,502,0): 81, 14, 45, (480,503,0): 90, 21, 52, (480,504,0): 92, 19, 49, (480,505,0): 101, 22, 53, (480,506,0): 105, 15, 43, (480,507,0): 116, 16, 44, (480,508,0): 143, 31, 56, (480,509,0): 148, 30, 52, (480,510,0): 141, 22, 41, (480,511,0): 153, 20, 41, (480,512,0): 186, 27, 57, (480,513,0): 204, 33, 67, (480,514,0): 212, 45, 75, (480,515,0): 196, 36, 62, (480,516,0): 170, 18, 43, (480,517,0): 163, 19, 46, (480,518,0): 163, 24, 55, (480,519,0): 153, 15, 48, (480,520,0): 167, 26, 60, (480,521,0): 166, 18, 52, (480,522,0): 176, 18, 51, (480,523,0): 196, 28, 63, (480,524,0): 212, 38, 75, (480,525,0): 215, 38, 80, (480,526,0): 213, 35, 83, (480,527,0): 220, 32, 80, (480,528,0): 245, 36, 78, (480,529,0): 246, 32, 70, (480,530,0): 241, 33, 67, (480,531,0): 236, 36, 65, (480,532,0): 236, 39, 66, (480,533,0): 233, 41, 66, (480,534,0): 229, 41, 66, (480,535,0): 220, 41, 63, (480,536,0): 226, 58, 81, (480,537,0): 205, 47, 72, (480,538,0): 189, 40, 69, (480,539,0): 194, 54, 89, (480,540,0): 192, 65, 106, (480,541,0): 165, 52, 98, (480,542,0): 147, 50, 101, (480,543,0): 173, 68, 111, (480,544,0): 200, 58, 84, (480,545,0): 232, 70, 85, (480,546,0): 252, 86, 96, (480,547,0): 255, 93, 100, (480,548,0): 255, 91, 97, (480,549,0): 253, 82, 88, (480,550,0): 240, 73, 83, (480,551,0): 226, 74, 87, (480,552,0): 182, 54, 67, (480,553,0): 167, 61, 75, (480,554,0): 150, 66, 81, (480,555,0): 136, 63, 80, (480,556,0): 123, 53, 77, (480,557,0): 113, 47, 75, (480,558,0): 111, 47, 81, (480,559,0): 113, 53, 81, (480,560,0): 116, 57, 75, (480,561,0): 118, 62, 73, (480,562,0): 115, 64, 71, (480,563,0): 107, 58, 64, (480,564,0): 98, 49, 53, (480,565,0): 94, 45, 49, (480,566,0): 99, 48, 53, (480,567,0): 104, 55, 59, (480,568,0): 108, 62, 65, (480,569,0): 103, 61, 65, (480,570,0): 99, 59, 67, (480,571,0): 94, 59, 66, (480,572,0): 92, 59, 68, (480,573,0): 94, 61, 72, (480,574,0): 96, 62, 76, (480,575,0): 98, 64, 78, (480,576,0): 94, 61, 70, (480,577,0): 92, 61, 67, (480,578,0): 90, 59, 65, (480,579,0): 86, 57, 62, (480,580,0): 81, 54, 59, (480,581,0): 78, 51, 56, (480,582,0): 75, 50, 54, (480,583,0): 74, 49, 53, (480,584,0): 75, 50, 54, (480,585,0): 74, 49, 53, (480,586,0): 73, 48, 52, (480,587,0): 72, 45, 50, (480,588,0): 70, 43, 48, (480,589,0): 70, 41, 46, (480,590,0): 69, 40, 45, (480,591,0): 68, 39, 44, (480,592,0): 57, 32, 38, (480,593,0): 54, 31, 37, (480,594,0): 50, 27, 35, (480,595,0): 47, 24, 30, (480,596,0): 44, 21, 29, (480,597,0): 42, 21, 26, (480,598,0): 41, 20, 27, (480,599,0): 40, 19, 24, (481,0,0): 50, 72, 70, (481,1,0): 50, 72, 70, (481,2,0): 50, 72, 70, (481,3,0): 51, 73, 71, (481,4,0): 51, 73, 71, (481,5,0): 52, 74, 72, (481,6,0): 52, 74, 72, (481,7,0): 53, 75, 73, (481,8,0): 51, 73, 71, (481,9,0): 52, 74, 72, (481,10,0): 52, 74, 72, (481,11,0): 52, 74, 72, (481,12,0): 53, 75, 73, (481,13,0): 53, 75, 73, (481,14,0): 54, 76, 74, (481,15,0): 55, 75, 74, (481,16,0): 58, 73, 76, (481,17,0): 59, 73, 76, (481,18,0): 61, 72, 74, (481,19,0): 61, 72, 74, (481,20,0): 60, 70, 71, (481,21,0): 59, 69, 70, (481,22,0): 58, 67, 66, (481,23,0): 58, 64, 62, (481,24,0): 59, 64, 60, (481,25,0): 60, 65, 61, (481,26,0): 62, 64, 59, (481,27,0): 63, 65, 60, (481,28,0): 65, 66, 60, (481,29,0): 67, 67, 59, (481,30,0): 67, 67, 59, (481,31,0): 67, 67, 59, (481,32,0): 70, 67, 62, (481,33,0): 69, 66, 61, (481,34,0): 69, 66, 59, (481,35,0): 68, 65, 58, (481,36,0): 67, 64, 57, (481,37,0): 67, 64, 57, (481,38,0): 67, 63, 54, (481,39,0): 67, 63, 54, (481,40,0): 69, 62, 54, (481,41,0): 69, 62, 52, (481,42,0): 70, 61, 52, (481,43,0): 70, 61, 52, (481,44,0): 70, 62, 51, (481,45,0): 70, 62, 51, (481,46,0): 70, 62, 51, (481,47,0): 70, 62, 51, (481,48,0): 65, 58, 50, (481,49,0): 65, 58, 50, (481,50,0): 66, 57, 50, (481,51,0): 66, 57, 50, (481,52,0): 67, 56, 50, (481,53,0): 67, 56, 50, (481,54,0): 69, 56, 48, (481,55,0): 69, 56, 48, (481,56,0): 74, 57, 49, (481,57,0): 74, 57, 49, (481,58,0): 74, 56, 46, (481,59,0): 74, 56, 46, (481,60,0): 74, 54, 45, (481,61,0): 73, 53, 44, (481,62,0): 75, 52, 44, (481,63,0): 74, 52, 41, (481,64,0): 73, 53, 42, (481,65,0): 72, 53, 39, (481,66,0): 70, 51, 37, (481,67,0): 69, 50, 36, (481,68,0): 69, 50, 36, (481,69,0): 69, 50, 36, (481,70,0): 70, 51, 37, (481,71,0): 70, 51, 37, (481,72,0): 71, 52, 38, (481,73,0): 71, 52, 38, (481,74,0): 70, 51, 37, (481,75,0): 70, 51, 37, (481,76,0): 69, 50, 36, (481,77,0): 69, 50, 36, (481,78,0): 68, 49, 35, (481,79,0): 68, 49, 35, (481,80,0): 68, 45, 37, (481,81,0): 68, 45, 37, (481,82,0): 68, 45, 37, (481,83,0): 67, 44, 36, (481,84,0): 67, 44, 36, (481,85,0): 66, 43, 35, (481,86,0): 66, 43, 35, (481,87,0): 66, 43, 35, (481,88,0): 65, 42, 34, (481,89,0): 65, 42, 34, (481,90,0): 65, 42, 34, (481,91,0): 65, 42, 34, (481,92,0): 65, 42, 34, (481,93,0): 65, 42, 34, (481,94,0): 65, 42, 34, (481,95,0): 65, 42, 34, (481,96,0): 66, 41, 34, (481,97,0): 69, 42, 35, (481,98,0): 67, 42, 35, (481,99,0): 68, 43, 36, (481,100,0): 69, 44, 37, (481,101,0): 69, 44, 37, (481,102,0): 69, 46, 38, (481,103,0): 69, 46, 38, (481,104,0): 66, 46, 37, (481,105,0): 66, 46, 37, (481,106,0): 66, 46, 37, (481,107,0): 66, 46, 37, (481,108,0): 65, 47, 37, (481,109,0): 65, 47, 37, (481,110,0): 65, 47, 37, (481,111,0): 65, 47, 37, (481,112,0): 64, 45, 39, (481,113,0): 64, 45, 39, (481,114,0): 64, 45, 39, (481,115,0): 64, 45, 39, (481,116,0): 64, 45, 39, (481,117,0): 64, 45, 39, (481,118,0): 64, 45, 39, (481,119,0): 64, 45, 39, (481,120,0): 62, 43, 37, (481,121,0): 61, 42, 36, (481,122,0): 61, 42, 36, (481,123,0): 60, 41, 35, (481,124,0): 60, 41, 35, (481,125,0): 59, 40, 34, (481,126,0): 59, 40, 34, (481,127,0): 59, 40, 34, (481,128,0): 58, 39, 32, (481,129,0): 58, 39, 32, (481,130,0): 58, 39, 32, (481,131,0): 58, 39, 32, (481,132,0): 57, 40, 32, (481,133,0): 57, 40, 32, (481,134,0): 57, 40, 32, (481,135,0): 57, 40, 32, (481,136,0): 52, 38, 29, (481,137,0): 52, 38, 29, (481,138,0): 50, 37, 28, (481,139,0): 50, 37, 28, (481,140,0): 49, 36, 27, (481,141,0): 49, 36, 27, (481,142,0): 46, 36, 26, (481,143,0): 46, 36, 27, (481,144,0): 49, 35, 32, (481,145,0): 49, 35, 34, (481,146,0): 49, 35, 34, (481,147,0): 49, 35, 34, (481,148,0): 49, 35, 34, (481,149,0): 49, 35, 34, (481,150,0): 49, 35, 34, (481,151,0): 49, 35, 34, (481,152,0): 50, 36, 35, (481,153,0): 50, 36, 35, (481,154,0): 50, 36, 35, (481,155,0): 50, 36, 35, (481,156,0): 50, 36, 35, (481,157,0): 50, 36, 35, (481,158,0): 50, 36, 35, (481,159,0): 48, 37, 35, (481,160,0): 48, 37, 33, (481,161,0): 47, 38, 33, (481,162,0): 47, 38, 33, (481,163,0): 48, 39, 34, (481,164,0): 48, 39, 34, (481,165,0): 49, 40, 35, (481,166,0): 49, 40, 35, (481,167,0): 49, 40, 35, (481,168,0): 52, 43, 38, (481,169,0): 52, 43, 38, (481,170,0): 52, 43, 38, (481,171,0): 52, 43, 38, (481,172,0): 52, 43, 38, (481,173,0): 52, 43, 38, (481,174,0): 52, 43, 38, (481,175,0): 52, 43, 38, (481,176,0): 55, 41, 38, (481,177,0): 56, 42, 39, (481,178,0): 56, 42, 39, (481,179,0): 56, 42, 39, (481,180,0): 57, 43, 40, (481,181,0): 57, 43, 40, (481,182,0): 58, 44, 41, (481,183,0): 58, 44, 41, (481,184,0): 58, 44, 41, (481,185,0): 58, 44, 41, (481,186,0): 58, 44, 41, (481,187,0): 58, 44, 41, (481,188,0): 58, 44, 41, (481,189,0): 58, 44, 41, (481,190,0): 58, 44, 41, (481,191,0): 56, 45, 43, (481,192,0): 56, 44, 44, (481,193,0): 55, 45, 44, (481,194,0): 56, 46, 45, (481,195,0): 56, 46, 45, (481,196,0): 57, 47, 46, (481,197,0): 57, 47, 46, (481,198,0): 58, 48, 47, (481,199,0): 58, 48, 47, (481,200,0): 58, 48, 47, (481,201,0): 58, 48, 47, (481,202,0): 57, 47, 46, (481,203,0): 57, 47, 46, (481,204,0): 56, 46, 45, (481,205,0): 55, 45, 44, (481,206,0): 55, 45, 44, (481,207,0): 54, 45, 46, (481,208,0): 54, 45, 48, (481,209,0): 52, 46, 50, (481,210,0): 52, 46, 50, (481,211,0): 52, 46, 50, (481,212,0): 52, 46, 50, (481,213,0): 52, 46, 50, (481,214,0): 52, 46, 50, (481,215,0): 52, 46, 50, (481,216,0): 52, 46, 50, (481,217,0): 52, 46, 50, (481,218,0): 53, 47, 51, (481,219,0): 53, 47, 51, (481,220,0): 54, 48, 52, (481,221,0): 54, 48, 52, (481,222,0): 55, 49, 53, (481,223,0): 55, 49, 53, (481,224,0): 59, 50, 53, (481,225,0): 60, 49, 53, (481,226,0): 61, 50, 54, (481,227,0): 62, 51, 55, (481,228,0): 64, 52, 56, (481,229,0): 65, 53, 57, (481,230,0): 68, 53, 58, (481,231,0): 69, 52, 58, (481,232,0): 73, 54, 60, (481,233,0): 74, 55, 61, (481,234,0): 76, 55, 62, (481,235,0): 78, 55, 63, (481,236,0): 81, 55, 64, (481,237,0): 82, 56, 65, (481,238,0): 83, 57, 66, (481,239,0): 83, 57, 66, (481,240,0): 89, 62, 69, (481,241,0): 92, 65, 70, (481,242,0): 97, 68, 73, (481,243,0): 102, 71, 77, (481,244,0): 107, 75, 80, (481,245,0): 111, 76, 82, (481,246,0): 113, 76, 83, (481,247,0): 115, 75, 83, (481,248,0): 116, 77, 82, (481,249,0): 116, 77, 82, (481,250,0): 116, 77, 80, (481,251,0): 113, 77, 79, (481,252,0): 113, 77, 79, (481,253,0): 111, 77, 78, (481,254,0): 111, 77, 76, (481,255,0): 109, 77, 78, (481,256,0): 114, 82, 85, (481,257,0): 113, 83, 85, (481,258,0): 111, 82, 84, (481,259,0): 109, 83, 84, (481,260,0): 109, 83, 86, (481,261,0): 106, 84, 86, (481,262,0): 107, 85, 88, (481,263,0): 106, 86, 88, (481,264,0): 103, 84, 86, (481,265,0): 104, 85, 87, (481,266,0): 106, 85, 90, (481,267,0): 106, 85, 90, (481,268,0): 105, 82, 90, (481,269,0): 102, 79, 87, (481,270,0): 100, 74, 83, (481,271,0): 96, 73, 83, (481,272,0): 89, 72, 82, (481,273,0): 87, 71, 82, (481,274,0): 86, 70, 81, (481,275,0): 85, 69, 80, (481,276,0): 84, 68, 79, (481,277,0): 84, 68, 79, (481,278,0): 85, 69, 80, (481,279,0): 86, 70, 81, (481,280,0): 82, 66, 77, (481,281,0): 83, 67, 78, (481,282,0): 84, 68, 79, (481,283,0): 85, 69, 80, (481,284,0): 86, 70, 81, (481,285,0): 87, 71, 82, (481,286,0): 88, 72, 83, (481,287,0): 89, 73, 84, (481,288,0): 89, 71, 87, (481,289,0): 92, 74, 90, (481,290,0): 95, 77, 93, (481,291,0): 97, 76, 93, (481,292,0): 97, 76, 91, (481,293,0): 98, 76, 89, (481,294,0): 101, 79, 92, (481,295,0): 105, 81, 94, (481,296,0): 112, 86, 97, (481,297,0): 113, 86, 95, (481,298,0): 114, 87, 96, (481,299,0): 118, 88, 96, (481,300,0): 120, 89, 95, (481,301,0): 122, 91, 97, (481,302,0): 123, 92, 98, (481,303,0): 127, 92, 98, (481,304,0): 136, 90, 100, (481,305,0): 144, 94, 103, (481,306,0): 145, 94, 101, (481,307,0): 138, 85, 93, (481,308,0): 131, 78, 84, (481,309,0): 126, 77, 81, (481,310,0): 118, 74, 75, (481,311,0): 108, 70, 69, (481,312,0): 100, 70, 68, (481,313,0): 93, 68, 64, (481,314,0): 86, 65, 62, (481,315,0): 84, 64, 63, (481,316,0): 86, 66, 67, (481,317,0): 84, 62, 65, (481,318,0): 78, 53, 59, (481,319,0): 71, 46, 50, (481,320,0): 64, 44, 46, (481,321,0): 57, 39, 39, (481,322,0): 47, 31, 32, (481,323,0): 41, 27, 27, (481,324,0): 36, 24, 24, (481,325,0): 33, 23, 24, (481,326,0): 30, 19, 23, (481,327,0): 27, 16, 22, (481,328,0): 31, 20, 28, (481,329,0): 29, 17, 27, (481,330,0): 27, 15, 27, (481,331,0): 25, 11, 26, (481,332,0): 25, 11, 28, (481,333,0): 28, 11, 30, (481,334,0): 31, 12, 34, (481,335,0): 32, 14, 36, (481,336,0): 26, 15, 32, (481,337,0): 23, 14, 31, (481,338,0): 23, 14, 31, (481,339,0): 22, 13, 30, (481,340,0): 22, 13, 30, (481,341,0): 21, 12, 29, (481,342,0): 21, 12, 29, (481,343,0): 21, 12, 29, (481,344,0): 23, 14, 31, (481,345,0): 23, 14, 31, (481,346,0): 22, 13, 30, (481,347,0): 21, 12, 29, (481,348,0): 21, 12, 29, (481,349,0): 20, 11, 28, (481,350,0): 19, 10, 27, (481,351,0): 19, 10, 27, (481,352,0): 20, 13, 29, (481,353,0): 18, 14, 29, (481,354,0): 18, 14, 29, (481,355,0): 17, 13, 28, (481,356,0): 17, 13, 28, (481,357,0): 15, 13, 27, (481,358,0): 15, 13, 27, (481,359,0): 14, 12, 26, (481,360,0): 16, 14, 28, (481,361,0): 15, 14, 28, (481,362,0): 15, 14, 28, (481,363,0): 13, 15, 28, (481,364,0): 13, 15, 28, (481,365,0): 13, 15, 28, (481,366,0): 13, 15, 28, (481,367,0): 15, 15, 27, (481,368,0): 20, 14, 28, (481,369,0): 21, 13, 26, (481,370,0): 22, 14, 27, (481,371,0): 22, 14, 27, (481,372,0): 25, 15, 26, (481,373,0): 25, 15, 26, (481,374,0): 26, 16, 27, (481,375,0): 26, 16, 27, (481,376,0): 29, 17, 27, (481,377,0): 29, 17, 27, (481,378,0): 30, 17, 26, (481,379,0): 30, 17, 26, (481,380,0): 30, 17, 26, (481,381,0): 30, 17, 26, (481,382,0): 32, 17, 24, (481,383,0): 32, 17, 24, (481,384,0): 32, 19, 28, (481,385,0): 33, 20, 29, (481,386,0): 35, 19, 29, (481,387,0): 35, 19, 29, (481,388,0): 36, 21, 28, (481,389,0): 36, 21, 28, (481,390,0): 38, 21, 27, (481,391,0): 38, 21, 27, (481,392,0): 39, 20, 26, (481,393,0): 39, 20, 26, (481,394,0): 40, 21, 25, (481,395,0): 40, 21, 25, (481,396,0): 42, 22, 24, (481,397,0): 42, 22, 24, (481,398,0): 43, 23, 25, (481,399,0): 42, 23, 25, (481,400,0): 41, 22, 24, (481,401,0): 39, 23, 24, (481,402,0): 39, 23, 24, (481,403,0): 39, 23, 24, (481,404,0): 41, 22, 24, (481,405,0): 41, 22, 24, (481,406,0): 41, 22, 24, (481,407,0): 41, 22, 24, (481,408,0): 47, 27, 29, (481,409,0): 47, 27, 29, (481,410,0): 48, 26, 29, (481,411,0): 47, 25, 28, (481,412,0): 47, 25, 28, (481,413,0): 47, 25, 28, (481,414,0): 49, 24, 28, (481,415,0): 47, 25, 28, (481,416,0): 49, 27, 29, (481,417,0): 48, 28, 27, (481,418,0): 48, 28, 27, (481,419,0): 48, 28, 27, (481,420,0): 49, 28, 27, (481,421,0): 49, 28, 27, (481,422,0): 51, 27, 27, (481,423,0): 51, 27, 27, (481,424,0): 53, 24, 26, (481,425,0): 53, 24, 26, (481,426,0): 55, 25, 27, (481,427,0): 57, 27, 29, (481,428,0): 59, 27, 30, (481,429,0): 61, 29, 32, (481,430,0): 62, 30, 33, (481,431,0): 64, 29, 33, (481,432,0): 66, 30, 34, (481,433,0): 66, 30, 34, (481,434,0): 65, 29, 33, (481,435,0): 63, 28, 32, (481,436,0): 61, 29, 34, (481,437,0): 60, 29, 34, (481,438,0): 58, 29, 34, (481,439,0): 56, 31, 35, (481,440,0): 54, 32, 35, (481,441,0): 49, 30, 32, (481,442,0): 46, 27, 31, (481,443,0): 40, 25, 28, (481,444,0): 38, 23, 28, (481,445,0): 37, 25, 29, (481,446,0): 37, 26, 30, (481,447,0): 37, 26, 30, (481,448,0): 40, 27, 36, (481,449,0): 40, 27, 36, (481,450,0): 42, 27, 34, (481,451,0): 43, 28, 35, (481,452,0): 45, 30, 37, (481,453,0): 47, 32, 39, (481,454,0): 51, 34, 40, (481,455,0): 52, 35, 41, (481,456,0): 51, 32, 36, (481,457,0): 50, 31, 35, (481,458,0): 49, 30, 34, (481,459,0): 47, 28, 32, (481,460,0): 46, 26, 28, (481,461,0): 45, 25, 27, (481,462,0): 43, 23, 25, (481,463,0): 42, 23, 27, (481,464,0): 41, 21, 30, (481,465,0): 39, 22, 32, (481,466,0): 39, 22, 32, (481,467,0): 39, 22, 32, (481,468,0): 43, 23, 32, (481,469,0): 44, 24, 33, (481,470,0): 48, 25, 33, (481,471,0): 50, 27, 35, (481,472,0): 53, 27, 36, (481,473,0): 53, 27, 36, (481,474,0): 57, 27, 35, (481,475,0): 57, 27, 35, (481,476,0): 58, 27, 33, (481,477,0): 57, 26, 32, (481,478,0): 56, 25, 31, (481,479,0): 54, 25, 29, (481,480,0): 49, 20, 22, (481,481,0): 47, 21, 20, (481,482,0): 49, 21, 20, (481,483,0): 49, 21, 20, (481,484,0): 51, 19, 20, (481,485,0): 51, 19, 20, (481,486,0): 54, 18, 20, (481,487,0): 56, 17, 20, (481,488,0): 59, 18, 22, (481,489,0): 65, 20, 25, (481,490,0): 62, 15, 21, (481,491,0): 67, 18, 24, (481,492,0): 73, 22, 29, (481,493,0): 65, 12, 20, (481,494,0): 60, 4, 13, (481,495,0): 71, 11, 21, (481,496,0): 86, 16, 27, (481,497,0): 81, 10, 24, (481,498,0): 73, 12, 27, (481,499,0): 72, 15, 32, (481,500,0): 72, 14, 38, (481,501,0): 69, 10, 38, (481,502,0): 73, 12, 45, (481,503,0): 80, 19, 53, (481,504,0): 71, 10, 43, (481,505,0): 83, 14, 45, (481,506,0): 94, 11, 41, (481,507,0): 113, 14, 43, (481,508,0): 146, 29, 56, (481,509,0): 158, 32, 56, (481,510,0): 153, 26, 47, (481,511,0): 163, 25, 50, (481,512,0): 170, 12, 47, (481,513,0): 182, 16, 52, (481,514,0): 196, 33, 64, (481,515,0): 196, 39, 66, (481,516,0): 180, 32, 56, (481,517,0): 172, 34, 57, (481,518,0): 168, 38, 64, (481,519,0): 158, 31, 60, (481,520,0): 149, 20, 50, (481,521,0): 154, 19, 51, (481,522,0): 168, 23, 54, (481,523,0): 183, 32, 65, (481,524,0): 192, 34, 69, (481,525,0): 191, 32, 72, (481,526,0): 190, 34, 81, (481,527,0): 204, 37, 81, (481,528,0): 223, 31, 68, (481,529,0): 227, 28, 57, (481,530,0): 218, 30, 55, (481,531,0): 215, 33, 56, (481,532,0): 217, 35, 58, (481,533,0): 212, 32, 57, (481,534,0): 203, 25, 51, (481,535,0): 191, 21, 48, (481,536,0): 189, 35, 63, (481,537,0): 171, 31, 60, (481,538,0): 161, 30, 62, (481,539,0): 171, 47, 84, (481,540,0): 180, 63, 105, (481,541,0): 166, 56, 101, (481,542,0): 149, 52, 97, (481,543,0): 170, 62, 96, (481,544,0): 206, 66, 77, (481,545,0): 226, 68, 69, (481,546,0): 236, 75, 80, (481,547,0): 248, 83, 90, (481,548,0): 255, 86, 97, (481,549,0): 254, 82, 98, (481,550,0): 241, 72, 93, (481,551,0): 226, 68, 91, (481,552,0): 190, 54, 76, (481,553,0): 166, 57, 76, (481,554,0): 139, 58, 75, (481,555,0): 119, 58, 76, (481,556,0): 107, 55, 77, (481,557,0): 102, 52, 77, (481,558,0): 104, 47, 80, (481,559,0): 106, 46, 74, (481,560,0): 115, 52, 69, (481,561,0): 116, 55, 63, (481,562,0): 111, 56, 62, (481,563,0): 105, 53, 57, (481,564,0): 98, 48, 51, (481,565,0): 97, 45, 47, (481,566,0): 104, 48, 51, (481,567,0): 107, 52, 55, (481,568,0): 104, 54, 55, (481,569,0): 98, 54, 55, (481,570,0): 90, 54, 56, (481,571,0): 84, 53, 58, (481,572,0): 81, 54, 59, (481,573,0): 83, 56, 65, (481,574,0): 88, 56, 69, (481,575,0): 91, 57, 71, (481,576,0): 90, 59, 67, (481,577,0): 89, 58, 64, (481,578,0): 87, 58, 63, (481,579,0): 83, 56, 61, (481,580,0): 81, 54, 59, (481,581,0): 78, 53, 57, (481,582,0): 75, 53, 56, (481,583,0): 74, 52, 55, (481,584,0): 72, 50, 53, (481,585,0): 71, 49, 52, (481,586,0): 72, 47, 51, (481,587,0): 71, 46, 50, (481,588,0): 72, 43, 48, (481,589,0): 71, 42, 47, (481,590,0): 71, 40, 46, (481,591,0): 69, 40, 45, (481,592,0): 56, 33, 41, (481,593,0): 53, 32, 39, (481,594,0): 50, 29, 36, (481,595,0): 47, 26, 33, (481,596,0): 44, 23, 30, (481,597,0): 42, 21, 28, (481,598,0): 41, 20, 27, (481,599,0): 41, 20, 27, (482,0,0): 49, 71, 69, (482,1,0): 50, 72, 70, (482,2,0): 50, 72, 70, (482,3,0): 51, 73, 71, (482,4,0): 51, 73, 71, (482,5,0): 52, 74, 72, (482,6,0): 52, 74, 72, (482,7,0): 52, 74, 72, (482,8,0): 51, 73, 71, (482,9,0): 51, 73, 71, (482,10,0): 51, 73, 71, (482,11,0): 52, 74, 72, (482,12,0): 53, 75, 73, (482,13,0): 53, 75, 73, (482,14,0): 53, 75, 73, (482,15,0): 55, 75, 74, (482,16,0): 58, 73, 76, (482,17,0): 59, 73, 76, (482,18,0): 59, 73, 74, (482,19,0): 61, 72, 74, (482,20,0): 61, 71, 72, (482,21,0): 59, 69, 70, (482,22,0): 58, 67, 66, (482,23,0): 57, 66, 63, (482,24,0): 59, 65, 61, (482,25,0): 60, 65, 61, (482,26,0): 62, 64, 59, (482,27,0): 62, 64, 59, (482,28,0): 64, 65, 59, (482,29,0): 64, 65, 59, (482,30,0): 66, 66, 58, (482,31,0): 66, 66, 58, (482,32,0): 66, 65, 60, (482,33,0): 66, 65, 60, (482,34,0): 68, 65, 60, (482,35,0): 68, 65, 60, (482,36,0): 67, 64, 57, (482,37,0): 67, 64, 57, (482,38,0): 67, 62, 56, (482,39,0): 67, 63, 54, (482,40,0): 67, 60, 52, (482,41,0): 67, 60, 52, (482,42,0): 67, 60, 50, (482,43,0): 67, 60, 50, (482,44,0): 68, 59, 50, (482,45,0): 68, 59, 50, (482,46,0): 68, 60, 49, (482,47,0): 68, 60, 49, (482,48,0): 66, 59, 51, (482,49,0): 66, 59, 51, (482,50,0): 67, 58, 51, (482,51,0): 67, 58, 51, (482,52,0): 68, 57, 51, (482,53,0): 68, 57, 51, (482,54,0): 70, 57, 49, (482,55,0): 70, 57, 49, (482,56,0): 74, 57, 49, (482,57,0): 74, 57, 49, (482,58,0): 74, 56, 46, (482,59,0): 74, 56, 46, (482,60,0): 74, 54, 45, (482,61,0): 74, 54, 45, (482,62,0): 76, 53, 45, (482,63,0): 76, 54, 43, (482,64,0): 74, 54, 43, (482,65,0): 73, 54, 40, (482,66,0): 71, 52, 38, (482,67,0): 70, 51, 37, (482,68,0): 69, 50, 36, (482,69,0): 70, 51, 37, (482,70,0): 70, 51, 37, (482,71,0): 71, 52, 38, (482,72,0): 71, 52, 38, (482,73,0): 71, 52, 38, (482,74,0): 70, 51, 37, (482,75,0): 70, 51, 37, (482,76,0): 69, 50, 36, (482,77,0): 69, 50, 36, (482,78,0): 68, 49, 35, (482,79,0): 68, 49, 35, (482,80,0): 66, 46, 37, (482,81,0): 66, 46, 37, (482,82,0): 66, 46, 37, (482,83,0): 65, 45, 36, (482,84,0): 65, 45, 36, (482,85,0): 64, 44, 35, (482,86,0): 64, 44, 35, (482,87,0): 64, 44, 35, (482,88,0): 63, 43, 34, (482,89,0): 63, 43, 34, (482,90,0): 63, 43, 34, (482,91,0): 63, 43, 34, (482,92,0): 63, 43, 34, (482,93,0): 63, 43, 34, (482,94,0): 63, 43, 34, (482,95,0): 65, 42, 34, (482,96,0): 68, 43, 36, (482,97,0): 68, 43, 36, (482,98,0): 68, 43, 36, (482,99,0): 68, 43, 36, (482,100,0): 68, 45, 37, (482,101,0): 68, 45, 37, (482,102,0): 69, 46, 38, (482,103,0): 69, 46, 38, (482,104,0): 64, 44, 35, (482,105,0): 64, 44, 35, (482,106,0): 63, 45, 35, (482,107,0): 63, 45, 35, (482,108,0): 63, 45, 35, (482,109,0): 63, 45, 35, (482,110,0): 62, 45, 35, (482,111,0): 62, 45, 35, (482,112,0): 64, 45, 39, (482,113,0): 64, 45, 39, (482,114,0): 64, 45, 39, (482,115,0): 64, 45, 39, (482,116,0): 64, 45, 39, (482,117,0): 64, 45, 39, (482,118,0): 64, 45, 39, (482,119,0): 64, 45, 39, (482,120,0): 62, 43, 37, (482,121,0): 62, 43, 37, (482,122,0): 62, 43, 37, (482,123,0): 61, 42, 36, (482,124,0): 61, 42, 36, (482,125,0): 60, 41, 35, (482,126,0): 60, 41, 35, (482,127,0): 60, 41, 35, (482,128,0): 58, 39, 33, (482,129,0): 58, 39, 33, (482,130,0): 58, 39, 33, (482,131,0): 58, 39, 33, (482,132,0): 57, 40, 33, (482,133,0): 57, 40, 33, (482,134,0): 57, 40, 33, (482,135,0): 57, 40, 33, (482,136,0): 52, 37, 30, (482,137,0): 52, 37, 30, (482,138,0): 50, 37, 29, (482,139,0): 50, 37, 29, (482,140,0): 49, 36, 28, (482,141,0): 49, 36, 28, (482,142,0): 46, 36, 27, (482,143,0): 46, 35, 29, (482,144,0): 49, 35, 32, (482,145,0): 49, 35, 34, (482,146,0): 49, 35, 34, (482,147,0): 49, 35, 34, (482,148,0): 49, 35, 34, (482,149,0): 49, 35, 34, (482,150,0): 49, 35, 34, (482,151,0): 49, 35, 34, (482,152,0): 50, 36, 35, (482,153,0): 50, 36, 35, (482,154,0): 50, 36, 35, (482,155,0): 50, 36, 35, (482,156,0): 50, 36, 35, (482,157,0): 50, 36, 35, (482,158,0): 50, 36, 35, (482,159,0): 48, 37, 35, (482,160,0): 48, 37, 35, (482,161,0): 47, 37, 35, (482,162,0): 47, 37, 35, (482,163,0): 48, 38, 36, (482,164,0): 48, 38, 36, (482,165,0): 49, 39, 37, (482,166,0): 49, 39, 37, (482,167,0): 49, 39, 37, (482,168,0): 52, 42, 40, (482,169,0): 52, 42, 40, (482,170,0): 52, 42, 40, (482,171,0): 52, 42, 40, (482,172,0): 52, 42, 40, (482,173,0): 52, 42, 40, (482,174,0): 52, 42, 40, (482,175,0): 52, 42, 40, (482,176,0): 55, 41, 40, (482,177,0): 55, 41, 40, (482,178,0): 55, 41, 40, (482,179,0): 56, 42, 41, (482,180,0): 57, 43, 42, (482,181,0): 57, 43, 42, (482,182,0): 57, 43, 42, (482,183,0): 58, 44, 43, (482,184,0): 57, 43, 42, (482,185,0): 57, 43, 42, (482,186,0): 57, 43, 42, (482,187,0): 57, 43, 42, (482,188,0): 57, 43, 42, (482,189,0): 57, 43, 42, (482,190,0): 57, 43, 42, (482,191,0): 55, 44, 42, (482,192,0): 55, 43, 43, (482,193,0): 54, 44, 43, (482,194,0): 55, 45, 44, (482,195,0): 55, 45, 44, (482,196,0): 56, 46, 45, (482,197,0): 56, 46, 45, (482,198,0): 57, 47, 46, (482,199,0): 57, 47, 46, (482,200,0): 57, 47, 46, (482,201,0): 57, 47, 46, (482,202,0): 56, 46, 45, (482,203,0): 56, 46, 45, (482,204,0): 55, 45, 44, (482,205,0): 55, 45, 44, (482,206,0): 55, 45, 44, (482,207,0): 53, 44, 45, (482,208,0): 54, 45, 50, (482,209,0): 52, 45, 52, (482,210,0): 52, 45, 52, (482,211,0): 52, 45, 52, (482,212,0): 52, 45, 52, (482,213,0): 52, 45, 52, (482,214,0): 52, 45, 52, (482,215,0): 52, 45, 52, (482,216,0): 51, 44, 51, (482,217,0): 51, 44, 51, (482,218,0): 52, 45, 52, (482,219,0): 52, 45, 52, (482,220,0): 53, 46, 53, (482,221,0): 53, 46, 53, (482,222,0): 54, 47, 54, (482,223,0): 54, 48, 52, (482,224,0): 58, 49, 52, (482,225,0): 58, 49, 52, (482,226,0): 60, 49, 53, (482,227,0): 61, 50, 54, (482,228,0): 63, 51, 55, (482,229,0): 64, 52, 56, (482,230,0): 67, 52, 57, (482,231,0): 68, 51, 57, (482,232,0): 73, 54, 60, (482,233,0): 73, 54, 60, (482,234,0): 75, 54, 61, (482,235,0): 76, 55, 62, (482,236,0): 78, 55, 63, (482,237,0): 79, 56, 64, (482,238,0): 82, 56, 65, (482,239,0): 83, 57, 66, (482,240,0): 87, 62, 68, (482,241,0): 90, 63, 70, (482,242,0): 95, 66, 71, (482,243,0): 100, 69, 75, (482,244,0): 104, 71, 78, (482,245,0): 109, 74, 81, (482,246,0): 111, 74, 81, (482,247,0): 112, 75, 82, (482,248,0): 115, 76, 81, (482,249,0): 115, 76, 81, (482,250,0): 113, 77, 81, (482,251,0): 112, 76, 80, (482,252,0): 112, 76, 78, (482,253,0): 110, 76, 77, (482,254,0): 110, 76, 77, (482,255,0): 107, 75, 76, (482,256,0): 111, 79, 82, (482,257,0): 110, 80, 82, (482,258,0): 109, 80, 84, (482,259,0): 107, 81, 84, (482,260,0): 107, 81, 84, (482,261,0): 104, 82, 84, (482,262,0): 104, 82, 85, (482,263,0): 103, 83, 85, (482,264,0): 101, 82, 86, (482,265,0): 102, 83, 87, (482,266,0): 103, 84, 88, (482,267,0): 104, 83, 88, (482,268,0): 104, 81, 89, (482,269,0): 101, 78, 86, (482,270,0): 99, 73, 82, (482,271,0): 95, 72, 82, (482,272,0): 88, 71, 81, (482,273,0): 86, 70, 81, (482,274,0): 84, 68, 79, (482,275,0): 83, 67, 78, (482,276,0): 83, 67, 78, (482,277,0): 83, 67, 78, (482,278,0): 84, 68, 79, (482,279,0): 84, 68, 79, (482,280,0): 81, 65, 76, (482,281,0): 81, 65, 76, (482,282,0): 82, 66, 77, (482,283,0): 83, 67, 78, (482,284,0): 84, 68, 79, (482,285,0): 85, 69, 80, (482,286,0): 86, 70, 81, (482,287,0): 86, 70, 81, (482,288,0): 86, 69, 85, (482,289,0): 89, 72, 88, (482,290,0): 92, 75, 91, (482,291,0): 93, 75, 91, (482,292,0): 92, 74, 88, (482,293,0): 95, 75, 87, (482,294,0): 99, 77, 90, (482,295,0): 103, 79, 92, (482,296,0): 107, 84, 94, (482,297,0): 109, 83, 92, (482,298,0): 112, 85, 94, (482,299,0): 113, 86, 93, (482,300,0): 117, 88, 93, (482,301,0): 119, 90, 95, (482,302,0): 120, 91, 96, (482,303,0): 122, 90, 95, (482,304,0): 132, 89, 98, (482,305,0): 139, 92, 100, (482,306,0): 143, 92, 99, (482,307,0): 139, 88, 95, (482,308,0): 138, 87, 92, (482,309,0): 137, 88, 92, (482,310,0): 126, 82, 83, (482,311,0): 113, 73, 73, (482,312,0): 106, 72, 70, (482,313,0): 95, 67, 64, (482,314,0): 84, 60, 58, (482,315,0): 78, 58, 57, (482,316,0): 79, 59, 60, (482,317,0): 79, 57, 59, (482,318,0): 76, 51, 55, (482,319,0): 69, 47, 50, (482,320,0): 63, 43, 45, (482,321,0): 57, 38, 40, (482,322,0): 48, 32, 35, (482,323,0): 41, 26, 29, (482,324,0): 37, 25, 27, (482,325,0): 34, 23, 27, (482,326,0): 31, 20, 24, (482,327,0): 27, 18, 23, (482,328,0): 30, 20, 28, (482,329,0): 28, 18, 27, (482,330,0): 26, 16, 27, (482,331,0): 25, 13, 27, (482,332,0): 25, 11, 28, (482,333,0): 26, 12, 29, (482,334,0): 30, 13, 32, (482,335,0): 29, 14, 33, (482,336,0): 25, 14, 31, (482,337,0): 23, 14, 31, (482,338,0): 23, 14, 31, (482,339,0): 22, 13, 30, (482,340,0): 22, 13, 30, (482,341,0): 21, 12, 29, (482,342,0): 21, 12, 29, (482,343,0): 20, 11, 28, (482,344,0): 22, 13, 30, (482,345,0): 22, 13, 30, (482,346,0): 22, 13, 30, (482,347,0): 21, 12, 29, (482,348,0): 21, 12, 29, (482,349,0): 20, 11, 28, (482,350,0): 20, 11, 28, (482,351,0): 20, 11, 28, (482,352,0): 22, 13, 30, (482,353,0): 20, 13, 29, (482,354,0): 20, 13, 29, (482,355,0): 19, 12, 28, (482,356,0): 19, 12, 28, (482,357,0): 16, 12, 27, (482,358,0): 16, 12, 27, (482,359,0): 15, 13, 27, (482,360,0): 16, 14, 28, (482,361,0): 16, 14, 28, (482,362,0): 16, 14, 28, (482,363,0): 15, 14, 28, (482,364,0): 15, 14, 28, (482,365,0): 15, 14, 28, (482,366,0): 15, 14, 28, (482,367,0): 16, 14, 27, (482,368,0): 20, 14, 28, (482,369,0): 21, 13, 26, (482,370,0): 22, 14, 27, (482,371,0): 22, 14, 27, (482,372,0): 25, 15, 26, (482,373,0): 25, 15, 26, (482,374,0): 26, 16, 27, (482,375,0): 26, 16, 27, (482,376,0): 29, 17, 27, (482,377,0): 29, 17, 27, (482,378,0): 30, 17, 26, (482,379,0): 30, 17, 26, (482,380,0): 30, 17, 26, (482,381,0): 30, 17, 26, (482,382,0): 32, 17, 24, (482,383,0): 32, 17, 24, (482,384,0): 32, 19, 28, (482,385,0): 32, 19, 28, (482,386,0): 34, 18, 28, (482,387,0): 35, 19, 29, (482,388,0): 36, 21, 28, (482,389,0): 36, 21, 28, (482,390,0): 37, 20, 26, (482,391,0): 38, 21, 27, (482,392,0): 39, 20, 26, (482,393,0): 39, 20, 26, (482,394,0): 40, 21, 25, (482,395,0): 40, 21, 25, (482,396,0): 42, 22, 24, (482,397,0): 42, 22, 24, (482,398,0): 43, 23, 25, (482,399,0): 42, 23, 25, (482,400,0): 43, 24, 26, (482,401,0): 41, 25, 26, (482,402,0): 41, 25, 26, (482,403,0): 41, 25, 26, (482,404,0): 43, 24, 26, (482,405,0): 43, 24, 26, (482,406,0): 43, 24, 26, (482,407,0): 43, 24, 26, (482,408,0): 47, 27, 29, (482,409,0): 47, 27, 29, (482,410,0): 48, 26, 29, (482,411,0): 48, 26, 29, (482,412,0): 48, 26, 29, (482,413,0): 48, 26, 29, (482,414,0): 50, 25, 29, (482,415,0): 48, 26, 29, (482,416,0): 50, 28, 30, (482,417,0): 49, 29, 30, (482,418,0): 50, 28, 30, (482,419,0): 50, 28, 30, (482,420,0): 50, 28, 30, (482,421,0): 50, 28, 30, (482,422,0): 52, 27, 30, (482,423,0): 52, 27, 30, (482,424,0): 54, 25, 29, (482,425,0): 54, 25, 29, (482,426,0): 56, 25, 30, (482,427,0): 57, 26, 31, (482,428,0): 58, 27, 32, (482,429,0): 59, 28, 33, (482,430,0): 61, 29, 34, (482,431,0): 63, 28, 34, (482,432,0): 66, 30, 34, (482,433,0): 66, 30, 34, (482,434,0): 65, 28, 35, (482,435,0): 64, 29, 35, (482,436,0): 61, 29, 34, (482,437,0): 60, 29, 34, (482,438,0): 58, 29, 34, (482,439,0): 55, 30, 34, (482,440,0): 49, 26, 32, (482,441,0): 46, 27, 31, (482,442,0): 43, 24, 28, (482,443,0): 38, 23, 26, (482,444,0): 37, 22, 27, (482,445,0): 36, 24, 28, (482,446,0): 37, 26, 30, (482,447,0): 38, 27, 31, (482,448,0): 38, 25, 34, (482,449,0): 37, 24, 33, (482,450,0): 39, 23, 33, (482,451,0): 40, 24, 34, (482,452,0): 42, 27, 34, (482,453,0): 44, 29, 36, (482,454,0): 47, 30, 36, (482,455,0): 49, 32, 38, (482,456,0): 50, 31, 37, (482,457,0): 49, 30, 36, (482,458,0): 48, 29, 33, (482,459,0): 47, 28, 32, (482,460,0): 46, 26, 28, (482,461,0): 45, 25, 27, (482,462,0): 43, 23, 25, (482,463,0): 42, 23, 27, (482,464,0): 41, 21, 30, (482,465,0): 39, 22, 32, (482,466,0): 39, 22, 32, (482,467,0): 39, 22, 32, (482,468,0): 42, 22, 31, (482,469,0): 44, 24, 33, (482,470,0): 48, 25, 33, (482,471,0): 49, 26, 34, (482,472,0): 50, 24, 33, (482,473,0): 50, 24, 33, (482,474,0): 54, 24, 32, (482,475,0): 54, 24, 32, (482,476,0): 54, 23, 29, (482,477,0): 53, 22, 28, (482,478,0): 52, 21, 27, (482,479,0): 51, 20, 25, (482,480,0): 50, 20, 22, (482,481,0): 51, 21, 21, (482,482,0): 52, 20, 21, (482,483,0): 53, 21, 22, (482,484,0): 57, 21, 23, (482,485,0): 58, 22, 24, (482,486,0): 62, 21, 25, (482,487,0): 63, 21, 25, (482,488,0): 65, 20, 25, (482,489,0): 71, 22, 28, (482,490,0): 70, 19, 26, (482,491,0): 72, 19, 27, (482,492,0): 76, 20, 29, (482,493,0): 67, 11, 20, (482,494,0): 60, 3, 12, (482,495,0): 66, 4, 15, (482,496,0): 79, 11, 24, (482,497,0): 77, 11, 25, (482,498,0): 73, 12, 27, (482,499,0): 71, 12, 30, (482,500,0): 67, 8, 30, (482,501,0): 64, 4, 30, (482,502,0): 68, 7, 38, (482,503,0): 75, 16, 46, (482,504,0): 65, 10, 39, (482,505,0): 74, 14, 40, (482,506,0): 86, 12, 39, (482,507,0): 105, 15, 41, (482,508,0): 136, 26, 51, (482,509,0): 151, 29, 54, (482,510,0): 152, 24, 47, (482,511,0): 158, 24, 49, (482,512,0): 169, 25, 61, (482,513,0): 167, 17, 54, (482,514,0): 175, 26, 56, (482,515,0): 185, 38, 64, (482,516,0): 177, 36, 55, (482,517,0): 170, 31, 50, (482,518,0): 167, 31, 55, (482,519,0): 161, 24, 50, (482,520,0): 168, 28, 55, (482,521,0): 171, 26, 55, (482,522,0): 179, 28, 59, (482,523,0): 185, 32, 63, (482,524,0): 176, 28, 62, (482,525,0): 163, 21, 59, (482,526,0): 156, 23, 66, (482,527,0): 168, 27, 69, (482,528,0): 196, 33, 64, (482,529,0): 195, 27, 52, (482,530,0): 184, 28, 50, (482,531,0): 182, 33, 53, (482,532,0): 191, 37, 63, (482,533,0): 197, 38, 68, (482,534,0): 199, 31, 67, (482,535,0): 192, 27, 67, (482,536,0): 184, 34, 72, (482,537,0): 174, 35, 74, (482,538,0): 161, 35, 73, (482,539,0): 168, 48, 86, (482,540,0): 186, 65, 108, (482,541,0): 182, 61, 106, (482,542,0): 171, 49, 96, (482,543,0): 179, 50, 89, (482,544,0): 205, 64, 81, (482,545,0): 204, 57, 67, (482,546,0): 206, 58, 70, (482,547,0): 221, 68, 86, (482,548,0): 237, 78, 100, (482,549,0): 243, 78, 108, (482,550,0): 237, 71, 107, (482,551,0): 220, 64, 101, (482,552,0): 189, 55, 90, (482,553,0): 159, 54, 85, (482,554,0): 125, 51, 76, (482,555,0): 102, 48, 71, (482,556,0): 95, 51, 74, (482,557,0): 95, 53, 77, (482,558,0): 98, 45, 75, (482,559,0): 97, 37, 65, (482,560,0): 115, 46, 65, (482,561,0): 116, 45, 59, (482,562,0): 109, 46, 57, (482,563,0): 105, 45, 53, (482,564,0): 102, 45, 51, (482,565,0): 103, 46, 52, (482,566,0): 107, 48, 54, (482,567,0): 107, 50, 56, (482,568,0): 102, 50, 54, (482,569,0): 95, 50, 53, (482,570,0): 86, 52, 53, (482,571,0): 81, 52, 56, (482,572,0): 78, 53, 57, (482,573,0): 77, 54, 62, (482,574,0): 82, 54, 66, (482,575,0): 86, 56, 66, (482,576,0): 87, 56, 64, (482,577,0): 86, 55, 61, (482,578,0): 84, 55, 60, (482,579,0): 81, 54, 59, (482,580,0): 80, 53, 58, (482,581,0): 78, 53, 57, (482,582,0): 75, 53, 56, (482,583,0): 75, 53, 56, (482,584,0): 70, 48, 51, (482,585,0): 70, 48, 51, (482,586,0): 71, 46, 50, (482,587,0): 70, 45, 49, (482,588,0): 73, 44, 49, (482,589,0): 72, 43, 48, (482,590,0): 72, 41, 47, (482,591,0): 71, 42, 47, (482,592,0): 57, 34, 42, (482,593,0): 54, 33, 40, (482,594,0): 51, 30, 37, (482,595,0): 47, 26, 33, (482,596,0): 45, 24, 31, (482,597,0): 43, 22, 29, (482,598,0): 42, 21, 28, (482,599,0): 42, 21, 28, (483,0,0): 49, 71, 69, (483,1,0): 49, 71, 69, (483,2,0): 49, 71, 69, (483,3,0): 50, 72, 70, (483,4,0): 51, 73, 71, (483,5,0): 51, 73, 71, (483,6,0): 51, 73, 71, (483,7,0): 52, 74, 72, (483,8,0): 50, 72, 70, (483,9,0): 51, 73, 71, (483,10,0): 51, 73, 71, (483,11,0): 52, 74, 72, (483,12,0): 52, 74, 72, (483,13,0): 53, 75, 73, (483,14,0): 53, 75, 73, (483,15,0): 54, 74, 73, (483,16,0): 57, 72, 75, (483,17,0): 59, 73, 76, (483,18,0): 59, 73, 74, (483,19,0): 59, 73, 74, (483,20,0): 61, 72, 74, (483,21,0): 60, 70, 71, (483,22,0): 59, 69, 68, (483,23,0): 59, 68, 67, (483,24,0): 59, 65, 63, (483,25,0): 59, 65, 61, (483,26,0): 59, 64, 58, (483,27,0): 61, 63, 58, (483,28,0): 62, 63, 57, (483,29,0): 62, 63, 57, (483,30,0): 63, 64, 56, (483,31,0): 65, 65, 57, (483,32,0): 65, 64, 59, (483,33,0): 65, 64, 59, (483,34,0): 67, 64, 59, (483,35,0): 67, 64, 59, (483,36,0): 67, 64, 57, (483,37,0): 67, 64, 57, (483,38,0): 67, 62, 56, (483,39,0): 67, 62, 56, (483,40,0): 67, 60, 52, (483,41,0): 67, 60, 52, (483,42,0): 67, 60, 50, (483,43,0): 67, 60, 50, (483,44,0): 68, 59, 50, (483,45,0): 68, 59, 50, (483,46,0): 68, 60, 49, (483,47,0): 68, 59, 50, (483,48,0): 66, 59, 51, (483,49,0): 66, 59, 51, (483,50,0): 67, 58, 51, (483,51,0): 67, 58, 51, (483,52,0): 68, 57, 51, (483,53,0): 68, 57, 51, (483,54,0): 70, 57, 49, (483,55,0): 70, 57, 49, (483,56,0): 74, 57, 49, (483,57,0): 74, 57, 49, (483,58,0): 74, 56, 46, (483,59,0): 74, 56, 46, (483,60,0): 75, 55, 46, (483,61,0): 75, 55, 46, (483,62,0): 77, 54, 46, (483,63,0): 77, 54, 46, (483,64,0): 75, 55, 44, (483,65,0): 74, 55, 41, (483,66,0): 72, 53, 39, (483,67,0): 71, 52, 38, (483,68,0): 70, 51, 37, (483,69,0): 71, 52, 38, (483,70,0): 71, 52, 38, (483,71,0): 72, 53, 39, (483,72,0): 71, 52, 38, (483,73,0): 71, 52, 38, (483,74,0): 70, 51, 37, (483,75,0): 70, 51, 37, (483,76,0): 69, 50, 36, (483,77,0): 69, 50, 36, (483,78,0): 68, 49, 35, (483,79,0): 68, 48, 37, (483,80,0): 66, 46, 37, (483,81,0): 66, 46, 37, (483,82,0): 66, 46, 37, (483,83,0): 65, 45, 36, (483,84,0): 65, 45, 36, (483,85,0): 64, 44, 35, (483,86,0): 64, 44, 35, (483,87,0): 64, 44, 35, (483,88,0): 64, 44, 35, (483,89,0): 64, 44, 35, (483,90,0): 64, 44, 35, (483,91,0): 64, 44, 35, (483,92,0): 64, 44, 35, (483,93,0): 64, 44, 35, (483,94,0): 64, 44, 35, (483,95,0): 64, 44, 35, (483,96,0): 69, 44, 37, (483,97,0): 69, 44, 37, (483,98,0): 69, 44, 37, (483,99,0): 69, 44, 37, (483,100,0): 68, 45, 37, (483,101,0): 68, 45, 37, (483,102,0): 69, 46, 38, (483,103,0): 67, 47, 38, (483,104,0): 64, 44, 35, (483,105,0): 64, 44, 35, (483,106,0): 63, 45, 35, (483,107,0): 63, 45, 35, (483,108,0): 63, 45, 35, (483,109,0): 63, 45, 35, (483,110,0): 62, 45, 35, (483,111,0): 62, 45, 35, (483,112,0): 64, 45, 39, (483,113,0): 64, 45, 39, (483,114,0): 64, 45, 39, (483,115,0): 64, 45, 39, (483,116,0): 64, 45, 39, (483,117,0): 64, 45, 39, (483,118,0): 64, 45, 39, (483,119,0): 64, 45, 39, (483,120,0): 63, 44, 38, (483,121,0): 63, 44, 38, (483,122,0): 63, 44, 38, (483,123,0): 62, 43, 37, (483,124,0): 62, 43, 37, (483,125,0): 61, 42, 36, (483,126,0): 61, 42, 36, (483,127,0): 61, 42, 36, (483,128,0): 59, 40, 34, (483,129,0): 59, 40, 34, (483,130,0): 59, 40, 34, (483,131,0): 58, 39, 33, (483,132,0): 57, 40, 33, (483,133,0): 56, 39, 32, (483,134,0): 56, 39, 32, (483,135,0): 54, 39, 32, (483,136,0): 52, 37, 30, (483,137,0): 52, 37, 30, (483,138,0): 50, 37, 29, (483,139,0): 50, 37, 29, (483,140,0): 49, 36, 28, (483,141,0): 49, 36, 28, (483,142,0): 46, 36, 27, (483,143,0): 46, 35, 29, (483,144,0): 50, 36, 33, (483,145,0): 50, 36, 35, (483,146,0): 50, 36, 35, (483,147,0): 50, 36, 35, (483,148,0): 50, 36, 35, (483,149,0): 50, 36, 35, (483,150,0): 50, 36, 35, (483,151,0): 50, 36, 35, (483,152,0): 50, 36, 35, (483,153,0): 50, 36, 35, (483,154,0): 50, 36, 35, (483,155,0): 50, 36, 35, (483,156,0): 50, 36, 35, (483,157,0): 50, 36, 35, (483,158,0): 50, 36, 35, (483,159,0): 48, 37, 35, (483,160,0): 47, 37, 35, (483,161,0): 47, 37, 35, (483,162,0): 47, 37, 35, (483,163,0): 48, 38, 36, (483,164,0): 48, 38, 36, (483,165,0): 49, 39, 37, (483,166,0): 49, 39, 37, (483,167,0): 49, 39, 37, (483,168,0): 51, 41, 39, (483,169,0): 51, 41, 39, (483,170,0): 51, 41, 39, (483,171,0): 51, 41, 39, (483,172,0): 51, 41, 39, (483,173,0): 51, 41, 39, (483,174,0): 51, 41, 39, (483,175,0): 51, 41, 39, (483,176,0): 52, 41, 39, (483,177,0): 55, 41, 40, (483,178,0): 55, 41, 40, (483,179,0): 56, 42, 41, (483,180,0): 56, 42, 41, (483,181,0): 57, 43, 42, (483,182,0): 57, 43, 42, (483,183,0): 57, 43, 42, (483,184,0): 56, 42, 41, (483,185,0): 56, 42, 41, (483,186,0): 56, 42, 41, (483,187,0): 56, 42, 41, (483,188,0): 56, 42, 41, (483,189,0): 56, 42, 41, (483,190,0): 56, 42, 41, (483,191,0): 54, 43, 41, (483,192,0): 53, 43, 42, (483,193,0): 53, 43, 42, (483,194,0): 54, 44, 43, (483,195,0): 54, 44, 43, (483,196,0): 55, 45, 44, (483,197,0): 55, 45, 44, (483,198,0): 56, 46, 45, (483,199,0): 56, 46, 45, (483,200,0): 55, 45, 44, (483,201,0): 55, 45, 44, (483,202,0): 55, 45, 44, (483,203,0): 55, 45, 44, (483,204,0): 54, 44, 43, (483,205,0): 54, 44, 43, (483,206,0): 54, 44, 43, (483,207,0): 53, 44, 45, (483,208,0): 53, 44, 49, (483,209,0): 51, 44, 51, (483,210,0): 51, 44, 51, (483,211,0): 51, 44, 51, (483,212,0): 51, 44, 51, (483,213,0): 51, 44, 51, (483,214,0): 51, 44, 51, (483,215,0): 51, 44, 51, (483,216,0): 50, 43, 50, (483,217,0): 50, 43, 50, (483,218,0): 51, 44, 51, (483,219,0): 51, 44, 51, (483,220,0): 52, 45, 52, (483,221,0): 52, 45, 52, (483,222,0): 53, 46, 53, (483,223,0): 53, 46, 53, (483,224,0): 57, 48, 53, (483,225,0): 57, 48, 51, (483,226,0): 59, 48, 52, (483,227,0): 60, 49, 53, (483,228,0): 62, 50, 54, (483,229,0): 63, 51, 55, (483,230,0): 66, 51, 56, (483,231,0): 66, 51, 56, (483,232,0): 71, 54, 60, (483,233,0): 73, 54, 60, (483,234,0): 75, 54, 61, (483,235,0): 76, 55, 62, (483,236,0): 78, 55, 63, (483,237,0): 79, 56, 64, (483,238,0): 82, 56, 65, (483,239,0): 82, 56, 65, (483,240,0): 85, 59, 68, (483,241,0): 87, 62, 68, (483,242,0): 90, 63, 70, (483,243,0): 96, 67, 72, (483,244,0): 100, 69, 75, (483,245,0): 104, 71, 78, (483,246,0): 108, 73, 80, (483,247,0): 110, 73, 80, (483,248,0): 114, 74, 82, (483,249,0): 111, 75, 79, (483,250,0): 111, 75, 79, (483,251,0): 110, 75, 79, (483,252,0): 109, 74, 78, (483,253,0): 107, 75, 76, (483,254,0): 106, 74, 75, (483,255,0): 106, 74, 75, (483,256,0): 107, 77, 79, (483,257,0): 108, 78, 80, (483,258,0): 107, 78, 82, (483,259,0): 106, 80, 83, (483,260,0): 105, 80, 83, (483,261,0): 102, 80, 82, (483,262,0): 101, 81, 83, (483,263,0): 99, 80, 82, (483,264,0): 99, 80, 84, (483,265,0): 100, 81, 85, (483,266,0): 101, 82, 86, (483,267,0): 102, 83, 87, (483,268,0): 101, 80, 87, (483,269,0): 100, 77, 85, (483,270,0): 99, 73, 82, (483,271,0): 94, 71, 81, (483,272,0): 87, 70, 80, (483,273,0): 85, 69, 80, (483,274,0): 83, 67, 78, (483,275,0): 82, 66, 77, (483,276,0): 81, 65, 76, (483,277,0): 82, 66, 77, (483,278,0): 82, 66, 77, (483,279,0): 83, 67, 78, (483,280,0): 80, 64, 75, (483,281,0): 80, 64, 75, (483,282,0): 81, 65, 76, (483,283,0): 81, 65, 76, (483,284,0): 82, 66, 77, (483,285,0): 83, 67, 78, (483,286,0): 83, 67, 78, (483,287,0): 84, 68, 79, (483,288,0): 84, 67, 83, (483,289,0): 86, 69, 85, (483,290,0): 89, 72, 88, (483,291,0): 90, 73, 89, (483,292,0): 90, 72, 86, (483,293,0): 91, 73, 85, (483,294,0): 96, 76, 88, (483,295,0): 99, 77, 89, (483,296,0): 102, 81, 90, (483,297,0): 104, 81, 89, (483,298,0): 108, 82, 91, (483,299,0): 111, 84, 91, (483,300,0): 113, 86, 91, (483,301,0): 116, 87, 92, (483,302,0): 116, 87, 92, (483,303,0): 119, 86, 93, (483,304,0): 128, 88, 96, (483,305,0): 135, 90, 97, (483,306,0): 139, 90, 96, (483,307,0): 139, 90, 96, (483,308,0): 144, 93, 98, (483,309,0): 145, 96, 100, (483,310,0): 134, 88, 90, (483,311,0): 119, 77, 78, (483,312,0): 110, 75, 73, (483,313,0): 97, 66, 63, (483,314,0): 83, 58, 54, (483,315,0): 76, 52, 50, (483,316,0): 74, 53, 52, (483,317,0): 75, 53, 55, (483,318,0): 72, 50, 52, (483,319,0): 69, 47, 50, (483,320,0): 63, 42, 47, (483,321,0): 55, 39, 42, (483,322,0): 48, 32, 35, (483,323,0): 40, 28, 32, (483,324,0): 37, 25, 29, (483,325,0): 35, 24, 30, (483,326,0): 31, 22, 27, (483,327,0): 27, 20, 27, (483,328,0): 27, 20, 28, (483,329,0): 26, 19, 27, (483,330,0): 26, 16, 27, (483,331,0): 25, 14, 28, (483,332,0): 25, 13, 27, (483,333,0): 27, 13, 30, (483,334,0): 28, 14, 31, (483,335,0): 28, 13, 32, (483,336,0): 25, 14, 31, (483,337,0): 22, 13, 30, (483,338,0): 22, 13, 30, (483,339,0): 22, 13, 30, (483,340,0): 21, 12, 29, (483,341,0): 20, 11, 28, (483,342,0): 20, 11, 28, (483,343,0): 20, 11, 28, (483,344,0): 21, 12, 29, (483,345,0): 21, 12, 29, (483,346,0): 21, 12, 29, (483,347,0): 21, 12, 29, (483,348,0): 21, 12, 29, (483,349,0): 21, 12, 29, (483,350,0): 21, 12, 29, (483,351,0): 21, 12, 29, (483,352,0): 22, 13, 30, (483,353,0): 22, 13, 30, (483,354,0): 22, 13, 30, (483,355,0): 21, 12, 29, (483,356,0): 20, 11, 28, (483,357,0): 19, 12, 28, (483,358,0): 19, 12, 28, (483,359,0): 16, 12, 27, (483,360,0): 18, 14, 29, (483,361,0): 18, 14, 29, (483,362,0): 18, 14, 29, (483,363,0): 17, 15, 29, (483,364,0): 17, 15, 29, (483,365,0): 16, 15, 29, (483,366,0): 17, 15, 29, (483,367,0): 17, 15, 28, (483,368,0): 20, 14, 26, (483,369,0): 21, 13, 26, (483,370,0): 22, 14, 27, (483,371,0): 22, 14, 27, (483,372,0): 25, 15, 26, (483,373,0): 25, 15, 26, (483,374,0): 26, 16, 27, (483,375,0): 26, 16, 27, (483,376,0): 29, 17, 27, (483,377,0): 29, 17, 27, (483,378,0): 30, 17, 26, (483,379,0): 30, 17, 26, (483,380,0): 30, 17, 26, (483,381,0): 30, 17, 26, (483,382,0): 32, 17, 24, (483,383,0): 32, 17, 24, (483,384,0): 31, 18, 27, (483,385,0): 32, 19, 28, (483,386,0): 34, 18, 28, (483,387,0): 35, 19, 29, (483,388,0): 35, 20, 27, (483,389,0): 36, 21, 28, (483,390,0): 37, 20, 26, (483,391,0): 37, 20, 26, (483,392,0): 39, 20, 26, (483,393,0): 39, 20, 26, (483,394,0): 40, 21, 25, (483,395,0): 40, 21, 25, (483,396,0): 42, 22, 24, (483,397,0): 42, 22, 24, (483,398,0): 43, 23, 25, (483,399,0): 42, 23, 25, (483,400,0): 43, 24, 26, (483,401,0): 41, 25, 26, (483,402,0): 41, 25, 26, (483,403,0): 41, 25, 26, (483,404,0): 43, 24, 26, (483,405,0): 43, 24, 26, (483,406,0): 43, 24, 26, (483,407,0): 43, 24, 26, (483,408,0): 46, 26, 28, (483,409,0): 46, 26, 28, (483,410,0): 48, 26, 29, (483,411,0): 48, 26, 29, (483,412,0): 48, 26, 29, (483,413,0): 49, 27, 30, (483,414,0): 51, 26, 30, (483,415,0): 51, 26, 30, (483,416,0): 51, 29, 31, (483,417,0): 50, 30, 31, (483,418,0): 51, 29, 31, (483,419,0): 51, 29, 31, (483,420,0): 51, 29, 31, (483,421,0): 51, 29, 31, (483,422,0): 53, 28, 31, (483,423,0): 54, 28, 31, (483,424,0): 54, 28, 31, (483,425,0): 56, 27, 31, (483,426,0): 57, 26, 31, (483,427,0): 57, 26, 31, (483,428,0): 58, 27, 32, (483,429,0): 58, 27, 32, (483,430,0): 59, 27, 32, (483,431,0): 59, 27, 32, (483,432,0): 63, 28, 32, (483,433,0): 63, 28, 32, (483,434,0): 64, 29, 35, (483,435,0): 62, 30, 35, (483,436,0): 60, 29, 34, (483,437,0): 58, 29, 33, (483,438,0): 55, 28, 33, (483,439,0): 53, 28, 32, (483,440,0): 46, 23, 29, (483,441,0): 42, 23, 27, (483,442,0): 40, 21, 25, (483,443,0): 36, 21, 24, (483,444,0): 36, 21, 26, (483,445,0): 35, 23, 27, (483,446,0): 37, 26, 30, (483,447,0): 38, 27, 33, (483,448,0): 38, 25, 34, (483,449,0): 37, 24, 33, (483,450,0): 39, 23, 33, (483,451,0): 40, 24, 34, (483,452,0): 41, 26, 33, (483,453,0): 43, 28, 35, (483,454,0): 46, 29, 37, (483,455,0): 47, 30, 36, (483,456,0): 48, 29, 35, (483,457,0): 48, 29, 35, (483,458,0): 47, 28, 32, (483,459,0): 46, 27, 31, (483,460,0): 46, 26, 28, (483,461,0): 44, 24, 26, (483,462,0): 44, 24, 26, (483,463,0): 42, 23, 27, (483,464,0): 42, 22, 31, (483,465,0): 39, 22, 32, (483,466,0): 39, 22, 32, (483,467,0): 39, 22, 32, (483,468,0): 41, 21, 30, (483,469,0): 43, 23, 32, (483,470,0): 46, 23, 31, (483,471,0): 47, 24, 32, (483,472,0): 50, 24, 33, (483,473,0): 50, 24, 33, (483,474,0): 53, 23, 31, (483,475,0): 53, 23, 31, (483,476,0): 53, 22, 28, (483,477,0): 52, 21, 27, (483,478,0): 50, 19, 25, (483,479,0): 49, 18, 23, (483,480,0): 53, 18, 22, (483,481,0): 53, 19, 20, (483,482,0): 56, 20, 22, (483,483,0): 57, 21, 23, (483,484,0): 61, 22, 25, (483,485,0): 64, 23, 27, (483,486,0): 66, 24, 28, (483,487,0): 69, 24, 29, (483,488,0): 73, 24, 30, (483,489,0): 75, 24, 31, (483,490,0): 74, 21, 29, (483,491,0): 76, 20, 29, (483,492,0): 76, 19, 28, (483,493,0): 73, 13, 23, (483,494,0): 68, 8, 18, (483,495,0): 69, 7, 18, (483,496,0): 76, 10, 22, (483,497,0): 76, 12, 26, (483,498,0): 75, 14, 29, (483,499,0): 69, 12, 29, (483,500,0): 64, 5, 27, (483,501,0): 61, 1, 26, (483,502,0): 66, 8, 33, (483,503,0): 70, 16, 42, (483,504,0): 59, 10, 32, (483,505,0): 66, 11, 34, (483,506,0): 79, 9, 33, (483,507,0): 101, 13, 37, (483,508,0): 128, 21, 47, (483,509,0): 145, 27, 53, (483,510,0): 152, 30, 53, (483,511,0): 158, 31, 58, (483,512,0): 176, 45, 79, (483,513,0): 155, 21, 54, (483,514,0): 152, 18, 45, (483,515,0): 161, 28, 49, (483,516,0): 155, 24, 42, (483,517,0): 146, 17, 35, (483,518,0): 144, 17, 38, (483,519,0): 144, 14, 38, (483,520,0): 174, 40, 67, (483,521,0): 172, 34, 60, (483,522,0): 173, 28, 57, (483,523,0): 172, 29, 57, (483,524,0): 163, 25, 58, (483,525,0): 149, 21, 56, (483,526,0): 138, 22, 61, (483,527,0): 145, 23, 60, (483,528,0): 180, 37, 67, (483,529,0): 175, 27, 51, (483,530,0): 156, 22, 46, (483,531,0): 152, 24, 47, (483,532,0): 165, 30, 60, (483,533,0): 181, 37, 73, (483,534,0): 194, 37, 82, (483,535,0): 195, 37, 86, (483,536,0): 185, 39, 86, (483,537,0): 178, 42, 88, (483,538,0): 161, 39, 80, (483,539,0): 162, 43, 83, (483,540,0): 181, 59, 100, (483,541,0): 188, 61, 104, (483,542,0): 186, 50, 96, (483,543,0): 187, 48, 87, (483,544,0): 192, 53, 76, (483,545,0): 184, 43, 60, (483,546,0): 186, 47, 66, (483,547,0): 201, 59, 83, (483,548,0): 212, 63, 95, (483,549,0): 217, 65, 103, (483,550,0): 219, 64, 108, (483,551,0): 206, 58, 106, (483,552,0): 181, 51, 97, (483,553,0): 159, 53, 93, (483,554,0): 129, 50, 82, (483,555,0): 104, 44, 72, (483,556,0): 93, 45, 69, (483,557,0): 92, 47, 70, (483,558,0): 93, 43, 68, (483,559,0): 94, 36, 60, (483,560,0): 116, 47, 66, (483,561,0): 114, 43, 59, (483,562,0): 105, 41, 55, (483,563,0): 103, 41, 52, (483,564,0): 104, 44, 52, (483,565,0): 107, 47, 55, (483,566,0): 108, 47, 55, (483,567,0): 106, 46, 54, (483,568,0): 107, 52, 58, (483,569,0): 100, 53, 59, (483,570,0): 91, 55, 59, (483,571,0): 84, 55, 59, (483,572,0): 81, 56, 60, (483,573,0): 81, 58, 64, (483,574,0): 85, 59, 68, (483,575,0): 87, 60, 69, (483,576,0): 85, 55, 63, (483,577,0): 86, 55, 61, (483,578,0): 84, 55, 60, (483,579,0): 80, 53, 58, (483,580,0): 78, 53, 57, (483,581,0): 76, 51, 55, (483,582,0): 73, 51, 54, (483,583,0): 72, 50, 53, (483,584,0): 68, 46, 49, (483,585,0): 68, 46, 49, (483,586,0): 70, 45, 49, (483,587,0): 69, 44, 48, (483,588,0): 70, 43, 48, (483,589,0): 72, 43, 48, (483,590,0): 73, 42, 48, (483,591,0): 71, 41, 49, (483,592,0): 57, 34, 42, (483,593,0): 54, 33, 40, (483,594,0): 51, 30, 37, (483,595,0): 48, 27, 34, (483,596,0): 45, 24, 31, (483,597,0): 43, 22, 29, (483,598,0): 42, 21, 28, (483,599,0): 42, 21, 28, (484,0,0): 46, 70, 70, (484,1,0): 47, 71, 71, (484,2,0): 47, 71, 71, (484,3,0): 47, 71, 71, (484,4,0): 48, 72, 72, (484,5,0): 49, 73, 73, (484,6,0): 49, 73, 73, (484,7,0): 49, 73, 73, (484,8,0): 48, 72, 72, (484,9,0): 48, 72, 72, (484,10,0): 48, 72, 72, (484,11,0): 49, 73, 73, (484,12,0): 49, 73, 73, (484,13,0): 50, 74, 74, (484,14,0): 50, 74, 74, (484,15,0): 53, 74, 75, (484,16,0): 55, 73, 75, (484,17,0): 58, 73, 76, (484,18,0): 58, 73, 76, (484,19,0): 60, 74, 75, (484,20,0): 59, 73, 74, (484,21,0): 60, 72, 72, (484,22,0): 60, 70, 69, (484,23,0): 59, 69, 68, (484,24,0): 58, 67, 64, (484,25,0): 59, 65, 61, (484,26,0): 58, 63, 57, (484,27,0): 57, 62, 56, (484,28,0): 59, 62, 55, (484,29,0): 59, 62, 55, (484,30,0): 61, 64, 57, (484,31,0): 63, 64, 58, (484,32,0): 64, 63, 59, (484,33,0): 64, 63, 59, (484,34,0): 64, 63, 58, (484,35,0): 64, 63, 58, (484,36,0): 66, 63, 58, (484,37,0): 66, 63, 58, (484,38,0): 67, 64, 57, (484,39,0): 67, 64, 57, (484,40,0): 65, 61, 52, (484,41,0): 65, 61, 52, (484,42,0): 67, 60, 52, (484,43,0): 67, 60, 52, (484,44,0): 67, 60, 50, (484,45,0): 67, 60, 50, (484,46,0): 68, 59, 50, (484,47,0): 68, 59, 50, (484,48,0): 67, 60, 52, (484,49,0): 67, 60, 52, (484,50,0): 68, 59, 52, (484,51,0): 68, 59, 52, (484,52,0): 69, 58, 52, (484,53,0): 69, 58, 52, (484,54,0): 71, 58, 50, (484,55,0): 71, 58, 50, (484,56,0): 73, 56, 48, (484,57,0): 73, 56, 48, (484,58,0): 75, 57, 47, (484,59,0): 75, 57, 47, (484,60,0): 76, 56, 47, (484,61,0): 76, 56, 47, (484,62,0): 78, 55, 47, (484,63,0): 78, 55, 47, (484,64,0): 76, 56, 45, (484,65,0): 75, 55, 44, (484,66,0): 73, 53, 42, (484,67,0): 72, 52, 41, (484,68,0): 71, 51, 40, (484,69,0): 72, 52, 41, (484,70,0): 72, 52, 41, (484,71,0): 73, 53, 42, (484,72,0): 71, 51, 40, (484,73,0): 71, 51, 40, (484,74,0): 70, 50, 39, (484,75,0): 70, 50, 39, (484,76,0): 69, 49, 38, (484,77,0): 69, 49, 38, (484,78,0): 68, 48, 37, (484,79,0): 68, 48, 37, (484,80,0): 66, 46, 37, (484,81,0): 66, 46, 37, (484,82,0): 66, 46, 37, (484,83,0): 65, 45, 36, (484,84,0): 65, 45, 36, (484,85,0): 64, 44, 35, (484,86,0): 64, 44, 35, (484,87,0): 64, 44, 35, (484,88,0): 66, 46, 37, (484,89,0): 66, 46, 37, (484,90,0): 66, 46, 37, (484,91,0): 66, 46, 37, (484,92,0): 66, 46, 37, (484,93,0): 66, 46, 37, (484,94,0): 66, 46, 37, (484,95,0): 66, 46, 37, (484,96,0): 70, 45, 38, (484,97,0): 70, 45, 38, (484,98,0): 69, 46, 38, (484,99,0): 69, 46, 38, (484,100,0): 69, 46, 38, (484,101,0): 69, 46, 38, (484,102,0): 66, 46, 37, (484,103,0): 66, 46, 37, (484,104,0): 64, 44, 35, (484,105,0): 63, 45, 35, (484,106,0): 63, 45, 35, (484,107,0): 63, 45, 35, (484,108,0): 62, 45, 35, (484,109,0): 62, 45, 35, (484,110,0): 62, 45, 35, (484,111,0): 62, 45, 35, (484,112,0): 63, 46, 39, (484,113,0): 63, 46, 39, (484,114,0): 63, 46, 39, (484,115,0): 63, 46, 39, (484,116,0): 63, 46, 39, (484,117,0): 63, 46, 39, (484,118,0): 63, 46, 39, (484,119,0): 63, 46, 39, (484,120,0): 63, 46, 39, (484,121,0): 63, 46, 39, (484,122,0): 63, 46, 39, (484,123,0): 62, 45, 38, (484,124,0): 62, 45, 38, (484,125,0): 61, 44, 37, (484,126,0): 61, 44, 37, (484,127,0): 61, 44, 37, (484,128,0): 60, 41, 35, (484,129,0): 60, 41, 35, (484,130,0): 58, 41, 34, (484,131,0): 57, 40, 33, (484,132,0): 57, 40, 33, (484,133,0): 56, 39, 32, (484,134,0): 53, 38, 31, (484,135,0): 53, 38, 31, (484,136,0): 52, 37, 30, (484,137,0): 51, 38, 30, (484,138,0): 50, 37, 29, (484,139,0): 50, 37, 29, (484,140,0): 47, 37, 28, (484,141,0): 47, 37, 28, (484,142,0): 46, 36, 27, (484,143,0): 46, 35, 29, (484,144,0): 47, 36, 32, (484,145,0): 47, 36, 34, (484,146,0): 47, 36, 34, (484,147,0): 47, 36, 34, (484,148,0): 47, 36, 34, (484,149,0): 47, 36, 34, (484,150,0): 47, 36, 34, (484,151,0): 47, 36, 34, (484,152,0): 48, 37, 35, (484,153,0): 48, 37, 35, (484,154,0): 48, 37, 35, (484,155,0): 48, 37, 35, (484,156,0): 48, 37, 35, (484,157,0): 48, 37, 35, (484,158,0): 48, 37, 35, (484,159,0): 48, 37, 35, (484,160,0): 47, 37, 35, (484,161,0): 46, 38, 35, (484,162,0): 46, 38, 35, (484,163,0): 47, 39, 36, (484,164,0): 47, 39, 36, (484,165,0): 48, 40, 37, (484,166,0): 48, 40, 37, (484,167,0): 48, 40, 37, (484,168,0): 50, 42, 39, (484,169,0): 50, 42, 39, (484,170,0): 50, 42, 39, (484,171,0): 50, 42, 39, (484,172,0): 50, 42, 39, (484,173,0): 50, 42, 39, (484,174,0): 50, 42, 39, (484,175,0): 51, 41, 39, (484,176,0): 52, 41, 39, (484,177,0): 52, 41, 39, (484,178,0): 52, 41, 39, (484,179,0): 53, 42, 40, (484,180,0): 53, 42, 40, (484,181,0): 54, 43, 41, (484,182,0): 54, 43, 41, (484,183,0): 55, 44, 42, (484,184,0): 53, 42, 40, (484,185,0): 53, 42, 40, (484,186,0): 53, 42, 40, (484,187,0): 53, 42, 40, (484,188,0): 53, 42, 40, (484,189,0): 53, 42, 40, (484,190,0): 53, 42, 40, (484,191,0): 53, 42, 40, (484,192,0): 52, 42, 41, (484,193,0): 52, 42, 43, (484,194,0): 53, 43, 44, (484,195,0): 53, 43, 44, (484,196,0): 54, 44, 45, (484,197,0): 54, 44, 45, (484,198,0): 55, 45, 46, (484,199,0): 55, 45, 46, (484,200,0): 53, 43, 44, (484,201,0): 53, 43, 44, (484,202,0): 53, 43, 44, (484,203,0): 53, 43, 44, (484,204,0): 54, 44, 45, (484,205,0): 54, 44, 45, (484,206,0): 54, 44, 45, (484,207,0): 53, 44, 47, (484,208,0): 53, 44, 49, (484,209,0): 51, 44, 51, (484,210,0): 51, 44, 51, (484,211,0): 51, 44, 51, (484,212,0): 51, 44, 51, (484,213,0): 51, 44, 51, (484,214,0): 51, 44, 51, (484,215,0): 51, 44, 51, (484,216,0): 49, 42, 49, (484,217,0): 49, 42, 49, (484,218,0): 50, 43, 50, (484,219,0): 50, 43, 50, (484,220,0): 51, 44, 51, (484,221,0): 51, 44, 51, (484,222,0): 52, 45, 52, (484,223,0): 52, 45, 52, (484,224,0): 56, 47, 52, (484,225,0): 56, 47, 52, (484,226,0): 57, 48, 53, (484,227,0): 58, 49, 54, (484,228,0): 60, 49, 55, (484,229,0): 62, 49, 56, (484,230,0): 65, 50, 57, (484,231,0): 65, 50, 57, (484,232,0): 70, 53, 61, (484,233,0): 72, 52, 61, (484,234,0): 74, 53, 62, (484,235,0): 75, 54, 63, (484,236,0): 77, 54, 64, (484,237,0): 78, 55, 65, (484,238,0): 79, 56, 66, (484,239,0): 79, 56, 64, (484,240,0): 81, 58, 66, (484,241,0): 84, 59, 65, (484,242,0): 87, 60, 67, (484,243,0): 92, 62, 70, (484,244,0): 96, 65, 73, (484,245,0): 101, 68, 75, (484,246,0): 105, 70, 77, (484,247,0): 107, 72, 78, (484,248,0): 110, 73, 80, (484,249,0): 110, 73, 80, (484,250,0): 109, 72, 79, (484,251,0): 108, 73, 77, (484,252,0): 107, 72, 76, (484,253,0): 105, 73, 76, (484,254,0): 105, 73, 76, (484,255,0): 103, 73, 75, (484,256,0): 105, 74, 79, (484,257,0): 106, 75, 80, (484,258,0): 106, 77, 81, (484,259,0): 105, 79, 82, (484,260,0): 104, 79, 83, (484,261,0): 101, 79, 82, (484,262,0): 99, 78, 83, (484,263,0): 97, 78, 82, (484,264,0): 96, 77, 81, (484,265,0): 96, 80, 83, (484,266,0): 99, 80, 86, (484,267,0): 100, 81, 87, (484,268,0): 100, 79, 88, (484,269,0): 97, 76, 85, (484,270,0): 96, 73, 83, (484,271,0): 93, 72, 81, (484,272,0): 86, 69, 79, (484,273,0): 84, 68, 79, (484,274,0): 83, 67, 78, (484,275,0): 81, 65, 76, (484,276,0): 81, 65, 76, (484,277,0): 81, 65, 76, (484,278,0): 82, 66, 77, (484,279,0): 82, 66, 77, (484,280,0): 80, 64, 75, (484,281,0): 80, 64, 75, (484,282,0): 80, 64, 75, (484,283,0): 80, 64, 75, (484,284,0): 81, 65, 76, (484,285,0): 81, 65, 76, (484,286,0): 81, 65, 76, (484,287,0): 82, 66, 77, (484,288,0): 80, 66, 81, (484,289,0): 83, 69, 84, (484,290,0): 86, 72, 87, (484,291,0): 86, 72, 87, (484,292,0): 88, 72, 85, (484,293,0): 89, 71, 83, (484,294,0): 92, 74, 86, (484,295,0): 97, 77, 88, (484,296,0): 99, 78, 87, (484,297,0): 102, 79, 87, (484,298,0): 104, 81, 89, (484,299,0): 109, 84, 90, (484,300,0): 111, 86, 90, (484,301,0): 112, 85, 90, (484,302,0): 112, 85, 90, (484,303,0): 115, 84, 90, (484,304,0): 123, 86, 93, (484,305,0): 129, 88, 94, (484,306,0): 133, 88, 93, (484,307,0): 136, 89, 95, (484,308,0): 145, 96, 100, (484,309,0): 149, 98, 103, (484,310,0): 139, 90, 93, (484,311,0): 123, 79, 78, (484,312,0): 113, 73, 71, (484,313,0): 100, 65, 63, (484,314,0): 85, 55, 53, (484,315,0): 76, 50, 49, (484,316,0): 75, 51, 49, (484,317,0): 74, 53, 52, (484,318,0): 72, 50, 52, (484,319,0): 69, 47, 50, (484,320,0): 63, 42, 47, (484,321,0): 54, 37, 43, (484,322,0): 48, 31, 37, (484,323,0): 40, 27, 34, (484,324,0): 38, 25, 32, (484,325,0): 36, 25, 33, (484,326,0): 32, 22, 30, (484,327,0): 28, 21, 29, (484,328,0): 26, 19, 27, (484,329,0): 25, 19, 29, (484,330,0): 24, 16, 29, (484,331,0): 25, 14, 28, (484,332,0): 25, 14, 28, (484,333,0): 26, 14, 28, (484,334,0): 26, 14, 28, (484,335,0): 27, 14, 31, (484,336,0): 24, 13, 29, (484,337,0): 22, 14, 29, (484,338,0): 22, 14, 29, (484,339,0): 21, 13, 28, (484,340,0): 20, 12, 27, (484,341,0): 20, 12, 27, (484,342,0): 20, 12, 27, (484,343,0): 19, 11, 26, (484,344,0): 21, 13, 28, (484,345,0): 21, 13, 28, (484,346,0): 21, 13, 28, (484,347,0): 21, 13, 28, (484,348,0): 21, 13, 28, (484,349,0): 21, 13, 28, (484,350,0): 21, 13, 28, (484,351,0): 21, 13, 28, (484,352,0): 25, 14, 30, (484,353,0): 24, 13, 29, (484,354,0): 24, 13, 29, (484,355,0): 24, 13, 29, (484,356,0): 23, 12, 28, (484,357,0): 20, 12, 27, (484,358,0): 20, 12, 27, (484,359,0): 19, 13, 27, (484,360,0): 20, 14, 28, (484,361,0): 20, 14, 28, (484,362,0): 20, 14, 28, (484,363,0): 18, 14, 28, (484,364,0): 18, 14, 28, (484,365,0): 17, 15, 28, (484,366,0): 18, 14, 28, (484,367,0): 18, 14, 28, (484,368,0): 20, 14, 26, (484,369,0): 21, 13, 26, (484,370,0): 22, 14, 27, (484,371,0): 22, 14, 27, (484,372,0): 25, 15, 26, (484,373,0): 25, 15, 26, (484,374,0): 26, 16, 27, (484,375,0): 26, 16, 27, (484,376,0): 29, 17, 27, (484,377,0): 29, 17, 27, (484,378,0): 30, 17, 26, (484,379,0): 30, 17, 26, (484,380,0): 30, 17, 26, (484,381,0): 30, 17, 26, (484,382,0): 32, 17, 24, (484,383,0): 32, 17, 24, (484,384,0): 31, 18, 27, (484,385,0): 31, 18, 27, (484,386,0): 33, 17, 27, (484,387,0): 34, 18, 28, (484,388,0): 34, 19, 26, (484,389,0): 35, 20, 27, (484,390,0): 36, 19, 25, (484,391,0): 37, 20, 26, (484,392,0): 39, 20, 26, (484,393,0): 39, 20, 26, (484,394,0): 40, 21, 25, (484,395,0): 40, 21, 25, (484,396,0): 42, 22, 24, (484,397,0): 42, 22, 24, (484,398,0): 43, 23, 25, (484,399,0): 42, 23, 25, (484,400,0): 43, 24, 26, (484,401,0): 41, 25, 26, (484,402,0): 41, 25, 26, (484,403,0): 41, 25, 26, (484,404,0): 43, 24, 26, (484,405,0): 43, 24, 26, (484,406,0): 43, 24, 26, (484,407,0): 43, 24, 26, (484,408,0): 46, 26, 28, (484,409,0): 46, 26, 28, (484,410,0): 48, 26, 29, (484,411,0): 48, 26, 29, (484,412,0): 49, 27, 30, (484,413,0): 50, 28, 31, (484,414,0): 52, 27, 31, (484,415,0): 53, 28, 32, (484,416,0): 52, 30, 32, (484,417,0): 52, 30, 32, (484,418,0): 52, 30, 32, (484,419,0): 52, 30, 32, (484,420,0): 54, 29, 32, (484,421,0): 54, 29, 32, (484,422,0): 55, 29, 32, (484,423,0): 55, 29, 32, (484,424,0): 55, 29, 32, (484,425,0): 55, 29, 32, (484,426,0): 57, 28, 32, (484,427,0): 57, 28, 32, (484,428,0): 57, 26, 31, (484,429,0): 57, 26, 31, (484,430,0): 57, 26, 31, (484,431,0): 58, 26, 31, (484,432,0): 61, 26, 32, (484,433,0): 61, 26, 32, (484,434,0): 62, 27, 33, (484,435,0): 61, 29, 34, (484,436,0): 59, 28, 34, (484,437,0): 57, 28, 33, (484,438,0): 53, 26, 33, (484,439,0): 51, 26, 32, (484,440,0): 44, 21, 27, (484,441,0): 40, 21, 25, (484,442,0): 38, 19, 25, (484,443,0): 34, 19, 24, (484,444,0): 35, 20, 27, (484,445,0): 35, 22, 29, (484,446,0): 36, 25, 31, (484,447,0): 38, 27, 33, (484,448,0): 39, 26, 35, (484,449,0): 39, 26, 35, (484,450,0): 40, 24, 34, (484,451,0): 41, 25, 35, (484,452,0): 42, 26, 36, (484,453,0): 43, 28, 35, (484,454,0): 46, 29, 37, (484,455,0): 47, 30, 38, (484,456,0): 47, 28, 34, (484,457,0): 47, 28, 34, (484,458,0): 46, 27, 31, (484,459,0): 45, 26, 30, (484,460,0): 45, 24, 29, (484,461,0): 44, 23, 28, (484,462,0): 44, 23, 28, (484,463,0): 42, 23, 29, (484,464,0): 42, 22, 31, (484,465,0): 39, 22, 32, (484,466,0): 39, 22, 32, (484,467,0): 38, 21, 31, (484,468,0): 41, 21, 30, (484,469,0): 42, 22, 31, (484,470,0): 45, 22, 30, (484,471,0): 46, 23, 31, (484,472,0): 52, 26, 35, (484,473,0): 52, 26, 35, (484,474,0): 55, 25, 33, (484,475,0): 55, 25, 33, (484,476,0): 54, 23, 29, (484,477,0): 53, 22, 28, (484,478,0): 51, 20, 26, (484,479,0): 50, 18, 23, (484,480,0): 53, 17, 21, (484,481,0): 56, 17, 22, (484,482,0): 57, 18, 23, (484,483,0): 60, 19, 25, (484,484,0): 63, 20, 27, (484,485,0): 67, 22, 29, (484,486,0): 70, 23, 31, (484,487,0): 72, 22, 31, (484,488,0): 78, 27, 36, (484,489,0): 77, 24, 34, (484,490,0): 78, 20, 32, (484,491,0): 77, 17, 29, (484,492,0): 75, 15, 27, (484,493,0): 77, 15, 28, (484,494,0): 79, 17, 30, (484,495,0): 78, 14, 28, (484,496,0): 76, 10, 24, (484,497,0): 79, 15, 31, (484,498,0): 75, 18, 33, (484,499,0): 67, 13, 29, (484,500,0): 61, 6, 25, (484,501,0): 61, 6, 27, (484,502,0): 65, 11, 34, (484,503,0): 69, 17, 39, (484,504,0): 69, 18, 37, (484,505,0): 71, 14, 33, (484,506,0): 85, 11, 34, (484,507,0): 101, 13, 37, (484,508,0): 122, 15, 41, (484,509,0): 136, 22, 48, (484,510,0): 144, 30, 55, (484,511,0): 147, 30, 56, (484,512,0): 156, 39, 66, (484,513,0): 130, 12, 38, (484,514,0): 125, 8, 27, (484,515,0): 136, 21, 38, (484,516,0): 132, 20, 34, (484,517,0): 121, 13, 28, (484,518,0): 119, 13, 33, (484,519,0): 120, 12, 35, (484,520,0): 143, 31, 56, (484,521,0): 141, 24, 50, (484,522,0): 144, 22, 45, (484,523,0): 147, 23, 47, (484,524,0): 144, 24, 49, (484,525,0): 137, 23, 49, (484,526,0): 133, 28, 59, (484,527,0): 144, 33, 65, (484,528,0): 169, 36, 67, (484,529,0): 162, 25, 53, (484,530,0): 142, 19, 47, (484,531,0): 136, 19, 48, (484,532,0): 145, 21, 57, (484,533,0): 160, 25, 68, (484,534,0): 172, 24, 76, (484,535,0): 173, 24, 80, (484,536,0): 167, 25, 81, (484,537,0): 162, 31, 81, (484,538,0): 146, 25, 70, (484,539,0): 142, 23, 65, (484,540,0): 161, 36, 76, (484,541,0): 176, 46, 84, (484,542,0): 184, 45, 86, (484,543,0): 190, 49, 84, (484,544,0): 184, 46, 71, (484,545,0): 173, 37, 59, (484,546,0): 181, 47, 72, (484,547,0): 190, 57, 88, (484,548,0): 182, 48, 85, (484,549,0): 178, 43, 86, (484,550,0): 183, 45, 96, (484,551,0): 177, 43, 96, (484,552,0): 170, 43, 96, (484,553,0): 166, 52, 103, (484,554,0): 151, 54, 97, (484,555,0): 127, 45, 83, (484,556,0): 109, 40, 69, (484,557,0): 101, 43, 67, (484,558,0): 96, 43, 63, (484,559,0): 93, 38, 57, (484,560,0): 115, 51, 68, (484,561,0): 112, 45, 62, (484,562,0): 102, 41, 56, (484,563,0): 100, 42, 54, (484,564,0): 102, 44, 56, (484,565,0): 105, 48, 57, (484,566,0): 108, 45, 56, (484,567,0): 105, 42, 53, (484,568,0): 111, 51, 61, (484,569,0): 104, 53, 60, (484,570,0): 94, 53, 59, (484,571,0): 87, 55, 60, (484,572,0): 85, 56, 61, (484,573,0): 84, 57, 64, (484,574,0): 87, 60, 67, (484,575,0): 90, 60, 68, (484,576,0): 88, 57, 65, (484,577,0): 87, 56, 64, (484,578,0): 84, 54, 62, (484,579,0): 79, 52, 59, (484,580,0): 75, 50, 56, (484,581,0): 73, 48, 54, (484,582,0): 69, 46, 52, (484,583,0): 67, 46, 51, (484,584,0): 65, 44, 49, (484,585,0): 66, 43, 49, (484,586,0): 68, 43, 49, (484,587,0): 68, 43, 49, (484,588,0): 68, 41, 48, (484,589,0): 70, 40, 48, (484,590,0): 71, 40, 48, (484,591,0): 70, 40, 48, (484,592,0): 56, 33, 41, (484,593,0): 53, 32, 39, (484,594,0): 50, 29, 36, (484,595,0): 47, 26, 33, (484,596,0): 44, 23, 30, (484,597,0): 43, 22, 29, (484,598,0): 42, 21, 28, (484,599,0): 41, 20, 27, (485,0,0): 46, 70, 70, (485,1,0): 46, 70, 70, (485,2,0): 46, 70, 70, (485,3,0): 47, 71, 71, (485,4,0): 47, 71, 71, (485,5,0): 48, 72, 72, (485,6,0): 48, 72, 72, (485,7,0): 49, 73, 73, (485,8,0): 47, 71, 71, (485,9,0): 48, 72, 72, (485,10,0): 48, 72, 72, (485,11,0): 48, 72, 72, (485,12,0): 49, 73, 73, (485,13,0): 50, 74, 74, (485,14,0): 50, 74, 74, (485,15,0): 52, 73, 74, (485,16,0): 55, 73, 75, (485,17,0): 57, 72, 75, (485,18,0): 58, 73, 76, (485,19,0): 59, 74, 77, (485,20,0): 60, 74, 75, (485,21,0): 59, 73, 74, (485,22,0): 60, 72, 72, (485,23,0): 60, 70, 69, (485,24,0): 57, 68, 64, (485,25,0): 56, 65, 62, (485,26,0): 56, 62, 58, (485,27,0): 55, 60, 54, (485,28,0): 55, 60, 54, (485,29,0): 58, 61, 54, (485,30,0): 59, 62, 55, (485,31,0): 61, 64, 57, (485,32,0): 62, 63, 58, (485,33,0): 63, 62, 58, (485,34,0): 63, 62, 57, (485,35,0): 63, 62, 57, (485,36,0): 66, 63, 58, (485,37,0): 66, 63, 58, (485,38,0): 67, 64, 57, (485,39,0): 67, 64, 57, (485,40,0): 65, 60, 54, (485,41,0): 65, 61, 52, (485,42,0): 67, 60, 52, (485,43,0): 67, 60, 52, (485,44,0): 67, 60, 50, (485,45,0): 67, 60, 50, (485,46,0): 68, 59, 50, (485,47,0): 68, 59, 50, (485,48,0): 67, 60, 52, (485,49,0): 67, 60, 52, (485,50,0): 68, 59, 52, (485,51,0): 68, 59, 52, (485,52,0): 69, 58, 52, (485,53,0): 69, 58, 52, (485,54,0): 71, 58, 50, (485,55,0): 71, 58, 50, (485,56,0): 73, 56, 48, (485,57,0): 73, 56, 48, (485,58,0): 75, 57, 47, (485,59,0): 75, 57, 47, (485,60,0): 77, 57, 48, (485,61,0): 77, 57, 48, (485,62,0): 79, 56, 48, (485,63,0): 79, 56, 48, (485,64,0): 77, 57, 46, (485,65,0): 76, 56, 45, (485,66,0): 74, 54, 43, (485,67,0): 73, 53, 42, (485,68,0): 72, 52, 41, (485,69,0): 73, 53, 42, (485,70,0): 73, 53, 42, (485,71,0): 74, 54, 43, (485,72,0): 71, 51, 40, (485,73,0): 71, 51, 40, (485,74,0): 70, 50, 39, (485,75,0): 70, 50, 39, (485,76,0): 69, 49, 38, (485,77,0): 69, 49, 38, (485,78,0): 68, 48, 37, (485,79,0): 68, 48, 37, (485,80,0): 66, 46, 37, (485,81,0): 66, 46, 37, (485,82,0): 66, 46, 37, (485,83,0): 65, 45, 36, (485,84,0): 65, 45, 36, (485,85,0): 64, 44, 35, (485,86,0): 64, 44, 35, (485,87,0): 64, 44, 35, (485,88,0): 67, 47, 38, (485,89,0): 67, 47, 38, (485,90,0): 67, 47, 38, (485,91,0): 67, 47, 38, (485,92,0): 67, 47, 38, (485,93,0): 67, 47, 38, (485,94,0): 67, 47, 38, (485,95,0): 67, 47, 38, (485,96,0): 70, 47, 39, (485,97,0): 71, 46, 39, (485,98,0): 70, 47, 39, (485,99,0): 70, 47, 39, (485,100,0): 69, 46, 38, (485,101,0): 69, 46, 38, (485,102,0): 66, 46, 37, (485,103,0): 66, 46, 37, (485,104,0): 63, 45, 35, (485,105,0): 63, 45, 35, (485,106,0): 63, 45, 35, (485,107,0): 63, 45, 35, (485,108,0): 62, 45, 35, (485,109,0): 62, 45, 35, (485,110,0): 62, 45, 35, (485,111,0): 62, 45, 37, (485,112,0): 63, 46, 39, (485,113,0): 63, 46, 39, (485,114,0): 63, 46, 39, (485,115,0): 63, 46, 39, (485,116,0): 63, 46, 39, (485,117,0): 63, 46, 39, (485,118,0): 63, 46, 39, (485,119,0): 63, 46, 39, (485,120,0): 64, 47, 40, (485,121,0): 64, 47, 40, (485,122,0): 64, 47, 40, (485,123,0): 63, 46, 39, (485,124,0): 63, 46, 39, (485,125,0): 62, 45, 38, (485,126,0): 62, 45, 38, (485,127,0): 62, 45, 38, (485,128,0): 61, 42, 36, (485,129,0): 59, 42, 35, (485,130,0): 58, 41, 34, (485,131,0): 58, 41, 34, (485,132,0): 56, 39, 32, (485,133,0): 54, 39, 32, (485,134,0): 53, 38, 31, (485,135,0): 51, 38, 30, (485,136,0): 51, 38, 30, (485,137,0): 51, 38, 30, (485,138,0): 50, 37, 29, (485,139,0): 48, 38, 29, (485,140,0): 47, 37, 28, (485,141,0): 47, 37, 28, (485,142,0): 46, 36, 27, (485,143,0): 46, 35, 29, (485,144,0): 46, 35, 31, (485,145,0): 46, 35, 33, (485,146,0): 46, 35, 33, (485,147,0): 46, 35, 33, (485,148,0): 46, 35, 33, (485,149,0): 46, 35, 33, (485,150,0): 46, 35, 33, (485,151,0): 46, 35, 33, (485,152,0): 48, 37, 35, (485,153,0): 48, 37, 35, (485,154,0): 48, 37, 35, (485,155,0): 48, 37, 35, (485,156,0): 48, 37, 35, (485,157,0): 48, 37, 35, (485,158,0): 48, 37, 35, (485,159,0): 47, 37, 35, (485,160,0): 46, 38, 35, (485,161,0): 46, 38, 35, (485,162,0): 46, 38, 35, (485,163,0): 47, 39, 36, (485,164,0): 47, 39, 36, (485,165,0): 48, 40, 37, (485,166,0): 48, 40, 37, (485,167,0): 48, 40, 37, (485,168,0): 49, 41, 38, (485,169,0): 49, 41, 38, (485,170,0): 49, 41, 38, (485,171,0): 49, 41, 38, (485,172,0): 49, 41, 38, (485,173,0): 49, 41, 38, (485,174,0): 49, 41, 38, (485,175,0): 49, 41, 38, (485,176,0): 50, 40, 38, (485,177,0): 52, 41, 39, (485,178,0): 52, 41, 39, (485,179,0): 52, 41, 39, (485,180,0): 53, 42, 40, (485,181,0): 54, 43, 41, (485,182,0): 54, 43, 41, (485,183,0): 54, 43, 41, (485,184,0): 52, 41, 39, (485,185,0): 52, 41, 39, (485,186,0): 52, 41, 39, (485,187,0): 52, 41, 39, (485,188,0): 52, 41, 39, (485,189,0): 52, 41, 39, (485,190,0): 52, 41, 39, (485,191,0): 52, 40, 40, (485,192,0): 51, 41, 42, (485,193,0): 51, 41, 42, (485,194,0): 52, 42, 43, (485,195,0): 52, 42, 43, (485,196,0): 53, 43, 44, (485,197,0): 53, 43, 44, (485,198,0): 54, 44, 45, (485,199,0): 54, 44, 45, (485,200,0): 51, 41, 42, (485,201,0): 51, 41, 42, (485,202,0): 52, 42, 43, (485,203,0): 52, 42, 43, (485,204,0): 53, 43, 44, (485,205,0): 53, 43, 44, (485,206,0): 53, 43, 44, (485,207,0): 53, 44, 47, (485,208,0): 52, 42, 50, (485,209,0): 50, 43, 50, (485,210,0): 50, 43, 50, (485,211,0): 50, 43, 50, (485,212,0): 50, 43, 50, (485,213,0): 50, 43, 50, (485,214,0): 50, 43, 50, (485,215,0): 50, 43, 50, (485,216,0): 48, 41, 48, (485,217,0): 48, 41, 48, (485,218,0): 49, 42, 49, (485,219,0): 49, 42, 49, (485,220,0): 50, 43, 50, (485,221,0): 50, 43, 50, (485,222,0): 51, 44, 51, (485,223,0): 51, 44, 51, (485,224,0): 55, 46, 51, (485,225,0): 55, 46, 51, (485,226,0): 56, 47, 52, (485,227,0): 57, 48, 53, (485,228,0): 59, 48, 54, (485,229,0): 60, 49, 55, (485,230,0): 62, 49, 56, (485,231,0): 64, 49, 56, (485,232,0): 69, 52, 60, (485,233,0): 70, 53, 61, (485,234,0): 73, 53, 62, (485,235,0): 75, 54, 63, (485,236,0): 77, 54, 64, (485,237,0): 78, 55, 65, (485,238,0): 79, 56, 66, (485,239,0): 79, 56, 66, (485,240,0): 79, 56, 64, (485,241,0): 80, 57, 65, (485,242,0): 83, 57, 66, (485,243,0): 87, 60, 67, (485,244,0): 92, 62, 70, (485,245,0): 97, 66, 74, (485,246,0): 101, 68, 77, (485,247,0): 105, 70, 77, (485,248,0): 108, 73, 80, (485,249,0): 107, 72, 78, (485,250,0): 107, 72, 78, (485,251,0): 104, 72, 77, (485,252,0): 104, 72, 77, (485,253,0): 102, 72, 74, (485,254,0): 102, 72, 74, (485,255,0): 102, 72, 74, (485,256,0): 103, 72, 77, (485,257,0): 104, 75, 79, (485,258,0): 104, 78, 81, (485,259,0): 104, 79, 82, (485,260,0): 102, 80, 83, (485,261,0): 100, 80, 82, (485,262,0): 97, 78, 82, (485,263,0): 95, 76, 80, (485,264,0): 92, 76, 79, (485,265,0): 93, 77, 80, (485,266,0): 97, 78, 84, (485,267,0): 98, 79, 85, (485,268,0): 98, 77, 86, (485,269,0): 96, 75, 84, (485,270,0): 95, 72, 82, (485,271,0): 92, 70, 82, (485,272,0): 86, 68, 80, (485,273,0): 84, 68, 79, (485,274,0): 83, 67, 78, (485,275,0): 82, 66, 77, (485,276,0): 81, 65, 76, (485,277,0): 81, 65, 76, (485,278,0): 82, 66, 77, (485,279,0): 83, 67, 78, (485,280,0): 80, 64, 75, (485,281,0): 80, 64, 75, (485,282,0): 80, 64, 75, (485,283,0): 80, 64, 75, (485,284,0): 80, 64, 75, (485,285,0): 80, 64, 75, (485,286,0): 81, 65, 76, (485,287,0): 79, 66, 76, (485,288,0): 78, 66, 80, (485,289,0): 81, 69, 83, (485,290,0): 84, 72, 86, (485,291,0): 85, 71, 86, (485,292,0): 85, 71, 84, (485,293,0): 87, 71, 82, (485,294,0): 90, 74, 85, (485,295,0): 94, 77, 87, (485,296,0): 96, 76, 85, (485,297,0): 99, 78, 85, (485,298,0): 102, 81, 88, (485,299,0): 106, 83, 89, (485,300,0): 110, 85, 89, (485,301,0): 110, 85, 89, (485,302,0): 109, 84, 88, (485,303,0): 112, 83, 88, (485,304,0): 120, 85, 91, (485,305,0): 125, 85, 93, (485,306,0): 128, 85, 92, (485,307,0): 132, 87, 92, (485,308,0): 141, 92, 96, (485,309,0): 146, 96, 99, (485,310,0): 138, 89, 92, (485,311,0): 125, 79, 79, (485,312,0): 114, 70, 69, (485,313,0): 102, 62, 60, (485,314,0): 89, 55, 53, (485,315,0): 81, 51, 49, (485,316,0): 79, 54, 50, (485,317,0): 78, 54, 52, (485,318,0): 73, 52, 51, (485,319,0): 69, 49, 50, (485,320,0): 63, 42, 47, (485,321,0): 56, 37, 43, (485,322,0): 48, 31, 39, (485,323,0): 42, 27, 34, (485,324,0): 39, 26, 35, (485,325,0): 36, 26, 34, (485,326,0): 33, 23, 32, (485,327,0): 29, 22, 30, (485,328,0): 25, 19, 29, (485,329,0): 24, 18, 28, (485,330,0): 24, 18, 30, (485,331,0): 24, 16, 29, (485,332,0): 24, 16, 29, (485,333,0): 25, 14, 28, (485,334,0): 25, 14, 28, (485,335,0): 25, 14, 28, (485,336,0): 22, 14, 27, (485,337,0): 21, 13, 28, (485,338,0): 21, 13, 28, (485,339,0): 20, 12, 27, (485,340,0): 20, 12, 27, (485,341,0): 19, 11, 26, (485,342,0): 19, 11, 26, (485,343,0): 19, 11, 26, (485,344,0): 20, 12, 27, (485,345,0): 20, 12, 27, (485,346,0): 20, 12, 27, (485,347,0): 21, 13, 28, (485,348,0): 21, 13, 28, (485,349,0): 22, 14, 29, (485,350,0): 22, 14, 29, (485,351,0): 24, 13, 29, (485,352,0): 26, 13, 30, (485,353,0): 26, 13, 30, (485,354,0): 27, 13, 30, (485,355,0): 25, 12, 29, (485,356,0): 25, 12, 29, (485,357,0): 23, 12, 28, (485,358,0): 23, 12, 28, (485,359,0): 20, 12, 27, (485,360,0): 24, 13, 29, (485,361,0): 22, 14, 29, (485,362,0): 22, 14, 29, (485,363,0): 21, 15, 29, (485,364,0): 21, 15, 29, (485,365,0): 19, 15, 29, (485,366,0): 21, 15, 29, (485,367,0): 21, 15, 29, (485,368,0): 21, 13, 26, (485,369,0): 21, 13, 26, (485,370,0): 22, 14, 27, (485,371,0): 22, 14, 27, (485,372,0): 25, 15, 26, (485,373,0): 25, 15, 26, (485,374,0): 26, 16, 27, (485,375,0): 26, 16, 27, (485,376,0): 29, 17, 27, (485,377,0): 29, 17, 27, (485,378,0): 30, 17, 26, (485,379,0): 30, 17, 26, (485,380,0): 30, 17, 26, (485,381,0): 30, 17, 26, (485,382,0): 32, 17, 24, (485,383,0): 32, 17, 24, (485,384,0): 30, 17, 26, (485,385,0): 31, 18, 27, (485,386,0): 33, 17, 27, (485,387,0): 33, 17, 27, (485,388,0): 34, 19, 26, (485,389,0): 35, 20, 27, (485,390,0): 36, 19, 25, (485,391,0): 36, 19, 25, (485,392,0): 39, 20, 26, (485,393,0): 39, 20, 26, (485,394,0): 40, 21, 25, (485,395,0): 40, 21, 25, (485,396,0): 42, 22, 24, (485,397,0): 42, 22, 24, (485,398,0): 43, 23, 25, (485,399,0): 42, 23, 25, (485,400,0): 43, 24, 26, (485,401,0): 41, 25, 26, (485,402,0): 41, 25, 26, (485,403,0): 41, 25, 26, (485,404,0): 43, 24, 26, (485,405,0): 43, 24, 26, (485,406,0): 43, 24, 26, (485,407,0): 43, 24, 26, (485,408,0): 46, 26, 28, (485,409,0): 46, 26, 28, (485,410,0): 48, 26, 29, (485,411,0): 49, 27, 30, (485,412,0): 50, 28, 31, (485,413,0): 51, 29, 32, (485,414,0): 53, 28, 32, (485,415,0): 54, 29, 33, (485,416,0): 53, 31, 33, (485,417,0): 53, 31, 33, (485,418,0): 53, 31, 33, (485,419,0): 53, 31, 33, (485,420,0): 55, 30, 33, (485,421,0): 55, 30, 33, (485,422,0): 56, 30, 33, (485,423,0): 56, 30, 33, (485,424,0): 57, 31, 34, (485,425,0): 57, 31, 34, (485,426,0): 58, 29, 33, (485,427,0): 57, 28, 32, (485,428,0): 57, 26, 31, (485,429,0): 56, 25, 30, (485,430,0): 55, 24, 29, (485,431,0): 55, 24, 29, (485,432,0): 56, 24, 29, (485,433,0): 57, 25, 30, (485,434,0): 58, 26, 31, (485,435,0): 58, 27, 32, (485,436,0): 57, 28, 33, (485,437,0): 53, 26, 31, (485,438,0): 49, 24, 30, (485,439,0): 46, 23, 29, (485,440,0): 43, 22, 27, (485,441,0): 40, 21, 25, (485,442,0): 36, 19, 25, (485,443,0): 34, 19, 24, (485,444,0): 34, 19, 26, (485,445,0): 34, 21, 28, (485,446,0): 36, 25, 31, (485,447,0): 37, 26, 32, (485,448,0): 39, 26, 35, (485,449,0): 39, 26, 35, (485,450,0): 40, 24, 34, (485,451,0): 40, 24, 34, (485,452,0): 41, 25, 35, (485,453,0): 42, 26, 36, (485,454,0): 45, 28, 36, (485,455,0): 46, 29, 37, (485,456,0): 46, 26, 35, (485,457,0): 46, 27, 33, (485,458,0): 45, 26, 32, (485,459,0): 45, 26, 30, (485,460,0): 45, 24, 29, (485,461,0): 44, 23, 28, (485,462,0): 44, 23, 28, (485,463,0): 43, 24, 30, (485,464,0): 42, 22, 31, (485,465,0): 40, 23, 33, (485,466,0): 39, 22, 32, (485,467,0): 38, 21, 31, (485,468,0): 40, 20, 29, (485,469,0): 41, 21, 30, (485,470,0): 44, 21, 29, (485,471,0): 45, 22, 30, (485,472,0): 53, 27, 36, (485,473,0): 53, 27, 36, (485,474,0): 56, 26, 34, (485,475,0): 56, 26, 34, (485,476,0): 55, 24, 30, (485,477,0): 53, 22, 28, (485,478,0): 51, 20, 26, (485,479,0): 50, 18, 23, (485,480,0): 54, 14, 22, (485,481,0): 55, 14, 20, (485,482,0): 57, 16, 22, (485,483,0): 59, 18, 24, (485,484,0): 62, 19, 26, (485,485,0): 65, 20, 27, (485,486,0): 68, 21, 29, (485,487,0): 70, 20, 29, (485,488,0): 77, 26, 35, (485,489,0): 75, 22, 32, (485,490,0): 77, 19, 31, (485,491,0): 75, 15, 27, (485,492,0): 71, 11, 23, (485,493,0): 78, 16, 29, (485,494,0): 84, 22, 35, (485,495,0): 80, 16, 30, (485,496,0): 76, 9, 26, (485,497,0): 78, 16, 31, (485,498,0): 72, 18, 32, (485,499,0): 64, 14, 26, (485,500,0): 60, 9, 24, (485,501,0): 63, 12, 27, (485,502,0): 68, 15, 33, (485,503,0): 71, 16, 35, (485,504,0): 83, 26, 43, (485,505,0): 86, 18, 39, (485,506,0): 100, 18, 41, (485,507,0): 113, 17, 44, (485,508,0): 120, 13, 41, (485,509,0): 128, 18, 45, (485,510,0): 129, 25, 48, (485,511,0): 125, 23, 45, (485,512,0): 128, 25, 46, (485,513,0): 112, 6, 26, (485,514,0): 114, 9, 24, (485,515,0): 126, 24, 37, (485,516,0): 118, 22, 34, (485,517,0): 105, 13, 28, (485,518,0): 98, 10, 32, (485,519,0): 93, 8, 31, (485,520,0): 111, 21, 47, (485,521,0): 114, 19, 43, (485,522,0): 124, 20, 43, (485,523,0): 132, 23, 44, (485,524,0): 132, 21, 40, (485,525,0): 127, 18, 39, (485,526,0): 127, 23, 48, (485,527,0): 139, 31, 57, (485,528,0): 148, 23, 53, (485,529,0): 149, 22, 52, (485,530,0): 139, 26, 54, (485,531,0): 139, 30, 61, (485,532,0): 147, 31, 68, (485,533,0): 156, 31, 75, (485,534,0): 163, 26, 78, (485,535,0): 163, 24, 79, (485,536,0): 159, 26, 79, (485,537,0): 160, 33, 84, (485,538,0): 149, 28, 73, (485,539,0): 141, 20, 61, (485,540,0): 151, 25, 62, (485,541,0): 160, 29, 63, (485,542,0): 169, 34, 67, (485,543,0): 185, 46, 77, (485,544,0): 186, 48, 74, (485,545,0): 174, 38, 62, (485,546,0): 182, 49, 78, (485,547,0): 186, 57, 88, (485,548,0): 160, 36, 73, (485,549,0): 144, 25, 67, (485,550,0): 147, 29, 77, (485,551,0): 146, 28, 78, (485,552,0): 161, 40, 93, (485,553,0): 176, 53, 107, (485,554,0): 180, 58, 109, (485,555,0): 162, 49, 93, (485,556,0): 140, 43, 78, (485,557,0): 127, 44, 70, (485,558,0): 109, 45, 62, (485,559,0): 98, 40, 54, (485,560,0): 110, 49, 65, (485,561,0): 103, 45, 60, (485,562,0): 95, 41, 54, (485,563,0): 93, 41, 53, (485,564,0): 96, 44, 56, (485,565,0): 101, 45, 56, (485,566,0): 104, 42, 55, (485,567,0): 104, 41, 52, (485,568,0): 107, 45, 58, (485,569,0): 102, 46, 57, (485,570,0): 94, 47, 57, (485,571,0): 87, 47, 55, (485,572,0): 82, 49, 56, (485,573,0): 83, 52, 58, (485,574,0): 86, 53, 62, (485,575,0): 87, 54, 63, (485,576,0): 87, 56, 64, (485,577,0): 85, 55, 63, (485,578,0): 81, 54, 61, (485,579,0): 78, 51, 58, (485,580,0): 74, 49, 55, (485,581,0): 69, 46, 52, (485,582,0): 65, 44, 49, (485,583,0): 64, 43, 48, (485,584,0): 64, 43, 48, (485,585,0): 64, 43, 48, (485,586,0): 64, 41, 47, (485,587,0): 66, 41, 47, (485,588,0): 66, 39, 46, (485,589,0): 65, 38, 45, (485,590,0): 67, 37, 45, (485,591,0): 66, 36, 44, (485,592,0): 55, 32, 40, (485,593,0): 52, 31, 38, (485,594,0): 49, 28, 35, (485,595,0): 46, 25, 32, (485,596,0): 43, 22, 29, (485,597,0): 41, 20, 27, (485,598,0): 40, 19, 26, (485,599,0): 40, 19, 26, (486,0,0): 44, 70, 71, (486,1,0): 45, 71, 72, (486,2,0): 45, 71, 72, (486,3,0): 46, 72, 73, (486,4,0): 46, 72, 73, (486,5,0): 47, 73, 74, (486,6,0): 47, 73, 74, (486,7,0): 47, 73, 74, (486,8,0): 46, 72, 73, (486,9,0): 46, 72, 73, (486,10,0): 47, 73, 74, (486,11,0): 47, 73, 74, (486,12,0): 48, 74, 75, (486,13,0): 48, 74, 75, (486,14,0): 48, 74, 75, (486,15,0): 50, 74, 76, (486,16,0): 53, 72, 76, (486,17,0): 55, 73, 77, (486,18,0): 56, 74, 76, (486,19,0): 57, 75, 77, (486,20,0): 60, 76, 76, (486,21,0): 60, 74, 75, (486,22,0): 59, 73, 73, (486,23,0): 60, 72, 70, (486,24,0): 57, 68, 64, (486,25,0): 56, 65, 62, (486,26,0): 53, 62, 57, (486,27,0): 53, 60, 53, (486,28,0): 52, 59, 52, (486,29,0): 54, 59, 53, (486,30,0): 56, 61, 54, (486,31,0): 60, 63, 56, (486,32,0): 60, 61, 56, (486,33,0): 61, 62, 57, (486,34,0): 61, 62, 57, (486,35,0): 62, 63, 58, (486,36,0): 64, 63, 58, (486,37,0): 64, 63, 58, (486,38,0): 67, 64, 59, (486,39,0): 67, 64, 57, (486,40,0): 66, 63, 56, (486,41,0): 66, 63, 56, (486,42,0): 67, 63, 54, (486,43,0): 67, 63, 54, (486,44,0): 69, 62, 54, (486,45,0): 69, 62, 54, (486,46,0): 69, 62, 52, (486,47,0): 69, 62, 52, (486,48,0): 68, 61, 53, (486,49,0): 68, 61, 53, (486,50,0): 69, 60, 53, (486,51,0): 69, 60, 53, (486,52,0): 70, 59, 53, (486,53,0): 70, 59, 53, (486,54,0): 72, 59, 51, (486,55,0): 72, 59, 51, (486,56,0): 73, 56, 48, (486,57,0): 73, 56, 48, (486,58,0): 75, 57, 47, (486,59,0): 75, 57, 47, (486,60,0): 77, 57, 48, (486,61,0): 78, 58, 49, (486,62,0): 80, 57, 49, (486,63,0): 81, 58, 50, (486,64,0): 78, 58, 49, (486,65,0): 77, 57, 48, (486,66,0): 75, 55, 46, (486,67,0): 74, 54, 45, (486,68,0): 73, 53, 44, (486,69,0): 74, 54, 45, (486,70,0): 74, 54, 45, (486,71,0): 75, 55, 46, (486,72,0): 71, 51, 42, (486,73,0): 71, 51, 42, (486,74,0): 70, 50, 41, (486,75,0): 70, 50, 41, (486,76,0): 69, 49, 40, (486,77,0): 69, 49, 40, (486,78,0): 68, 48, 39, (486,79,0): 68, 48, 39, (486,80,0): 65, 46, 39, (486,81,0): 65, 46, 39, (486,82,0): 65, 46, 39, (486,83,0): 64, 45, 38, (486,84,0): 64, 45, 38, (486,85,0): 63, 44, 37, (486,86,0): 63, 44, 37, (486,87,0): 63, 44, 37, (486,88,0): 66, 47, 40, (486,89,0): 66, 47, 40, (486,90,0): 66, 47, 40, (486,91,0): 66, 47, 40, (486,92,0): 66, 47, 40, (486,93,0): 66, 47, 40, (486,94,0): 66, 47, 40, (486,95,0): 67, 47, 40, (486,96,0): 72, 49, 43, (486,97,0): 71, 48, 42, (486,98,0): 71, 48, 42, (486,99,0): 70, 47, 41, (486,100,0): 67, 47, 40, (486,101,0): 67, 47, 40, (486,102,0): 66, 46, 39, (486,103,0): 66, 46, 39, (486,104,0): 65, 46, 39, (486,105,0): 65, 46, 39, (486,106,0): 64, 47, 39, (486,107,0): 64, 47, 39, (486,108,0): 64, 47, 39, (486,109,0): 64, 47, 39, (486,110,0): 62, 48, 39, (486,111,0): 62, 48, 39, (486,112,0): 63, 46, 39, (486,113,0): 63, 46, 39, (486,114,0): 63, 46, 39, (486,115,0): 63, 46, 39, (486,116,0): 63, 46, 39, (486,117,0): 63, 46, 39, (486,118,0): 63, 46, 39, (486,119,0): 63, 46, 39, (486,120,0): 65, 48, 41, (486,121,0): 65, 48, 41, (486,122,0): 65, 48, 41, (486,123,0): 64, 47, 40, (486,124,0): 64, 47, 40, (486,125,0): 63, 46, 39, (486,126,0): 63, 46, 39, (486,127,0): 62, 45, 38, (486,128,0): 60, 42, 38, (486,129,0): 60, 42, 38, (486,130,0): 59, 41, 37, (486,131,0): 56, 41, 36, (486,132,0): 54, 39, 34, (486,133,0): 53, 38, 33, (486,134,0): 52, 37, 32, (486,135,0): 51, 38, 32, (486,136,0): 51, 38, 32, (486,137,0): 49, 38, 32, (486,138,0): 48, 37, 31, (486,139,0): 48, 37, 31, (486,140,0): 47, 36, 30, (486,141,0): 46, 37, 30, (486,142,0): 45, 36, 29, (486,143,0): 45, 36, 29, (486,144,0): 43, 34, 29, (486,145,0): 43, 33, 31, (486,146,0): 43, 33, 31, (486,147,0): 43, 33, 31, (486,148,0): 43, 33, 31, (486,149,0): 43, 33, 31, (486,150,0): 43, 33, 31, (486,151,0): 43, 33, 31, (486,152,0): 47, 37, 35, (486,153,0): 47, 37, 35, (486,154,0): 47, 37, 35, (486,155,0): 47, 37, 35, (486,156,0): 47, 37, 35, (486,157,0): 47, 37, 35, (486,158,0): 47, 37, 35, (486,159,0): 47, 37, 35, (486,160,0): 46, 38, 36, (486,161,0): 46, 38, 36, (486,162,0): 46, 38, 36, (486,163,0): 47, 39, 37, (486,164,0): 47, 39, 37, (486,165,0): 48, 40, 38, (486,166,0): 48, 40, 38, (486,167,0): 48, 40, 38, (486,168,0): 49, 41, 39, (486,169,0): 49, 41, 39, (486,170,0): 49, 41, 39, (486,171,0): 49, 41, 39, (486,172,0): 49, 41, 39, (486,173,0): 49, 41, 39, (486,174,0): 49, 41, 39, (486,175,0): 49, 41, 39, (486,176,0): 50, 40, 39, (486,177,0): 50, 40, 39, (486,178,0): 51, 41, 40, (486,179,0): 51, 41, 40, (486,180,0): 52, 42, 41, (486,181,0): 52, 42, 41, (486,182,0): 52, 42, 41, (486,183,0): 53, 43, 42, (486,184,0): 50, 40, 39, (486,185,0): 50, 40, 39, (486,186,0): 50, 40, 39, (486,187,0): 50, 40, 39, (486,188,0): 50, 40, 39, (486,189,0): 50, 40, 39, (486,190,0): 50, 40, 39, (486,191,0): 50, 40, 39, (486,192,0): 50, 40, 41, (486,193,0): 50, 39, 43, (486,194,0): 51, 40, 44, (486,195,0): 51, 40, 44, (486,196,0): 52, 41, 45, (486,197,0): 52, 41, 45, (486,198,0): 53, 42, 46, (486,199,0): 53, 42, 46, (486,200,0): 50, 39, 43, (486,201,0): 50, 39, 43, (486,202,0): 51, 40, 44, (486,203,0): 51, 40, 44, (486,204,0): 52, 41, 45, (486,205,0): 53, 42, 46, (486,206,0): 53, 42, 46, (486,207,0): 52, 43, 46, (486,208,0): 52, 42, 50, (486,209,0): 50, 43, 51, (486,210,0): 50, 43, 51, (486,211,0): 50, 43, 51, (486,212,0): 50, 43, 51, (486,213,0): 50, 43, 51, (486,214,0): 50, 43, 51, (486,215,0): 50, 43, 51, (486,216,0): 47, 40, 48, (486,217,0): 47, 40, 48, (486,218,0): 48, 41, 49, (486,219,0): 48, 41, 49, (486,220,0): 49, 42, 50, (486,221,0): 49, 42, 50, (486,222,0): 50, 43, 51, (486,223,0): 50, 43, 50, (486,224,0): 52, 46, 50, (486,225,0): 52, 46, 50, (486,226,0): 55, 46, 51, (486,227,0): 56, 47, 52, (486,228,0): 58, 47, 53, (486,229,0): 59, 48, 54, (486,230,0): 61, 48, 55, (486,231,0): 63, 48, 55, (486,232,0): 69, 52, 60, (486,233,0): 69, 52, 60, (486,234,0): 72, 52, 61, (486,235,0): 73, 53, 62, (486,236,0): 75, 54, 63, (486,237,0): 76, 55, 64, (486,238,0): 78, 55, 65, (486,239,0): 79, 56, 66, (486,240,0): 77, 56, 65, (486,241,0): 78, 55, 65, (486,242,0): 79, 56, 66, (486,243,0): 83, 57, 66, (486,244,0): 90, 60, 70, (486,245,0): 95, 63, 74, (486,246,0): 98, 66, 77, (486,247,0): 102, 69, 78, (486,248,0): 104, 71, 80, (486,249,0): 104, 71, 78, (486,250,0): 104, 71, 78, (486,251,0): 103, 70, 77, (486,252,0): 102, 71, 77, (486,253,0): 100, 71, 75, (486,254,0): 100, 71, 75, (486,255,0): 100, 71, 75, (486,256,0): 101, 72, 77, (486,257,0): 103, 74, 79, (486,258,0): 104, 77, 82, (486,259,0): 105, 80, 84, (486,260,0): 103, 80, 86, (486,261,0): 100, 79, 84, (486,262,0): 96, 77, 81, (486,263,0): 92, 76, 79, (486,264,0): 90, 73, 79, (486,265,0): 92, 75, 81, (486,266,0): 94, 77, 85, (486,267,0): 95, 78, 86, (486,268,0): 96, 76, 85, (486,269,0): 95, 75, 84, (486,270,0): 93, 71, 83, (486,271,0): 90, 70, 81, (486,272,0): 87, 69, 81, (486,273,0): 85, 69, 80, (486,274,0): 84, 68, 79, (486,275,0): 82, 66, 77, (486,276,0): 82, 66, 77, (486,277,0): 82, 66, 77, (486,278,0): 83, 67, 78, (486,279,0): 83, 67, 78, (486,280,0): 81, 65, 76, (486,281,0): 81, 65, 76, (486,282,0): 81, 65, 76, (486,283,0): 81, 65, 76, (486,284,0): 81, 65, 76, (486,285,0): 80, 64, 75, (486,286,0): 80, 64, 75, (486,287,0): 78, 65, 75, (486,288,0): 78, 66, 80, (486,289,0): 80, 69, 83, (486,290,0): 83, 72, 86, (486,291,0): 84, 72, 86, (486,292,0): 84, 72, 84, (486,293,0): 85, 72, 82, (486,294,0): 90, 74, 85, (486,295,0): 94, 77, 87, (486,296,0): 93, 76, 84, (486,297,0): 98, 79, 85, (486,298,0): 102, 81, 88, (486,299,0): 106, 85, 90, (486,300,0): 108, 86, 89, (486,301,0): 108, 86, 89, (486,302,0): 107, 85, 88, (486,303,0): 108, 81, 86, (486,304,0): 116, 84, 89, (486,305,0): 122, 85, 92, (486,306,0): 125, 84, 90, (486,307,0): 126, 84, 88, (486,308,0): 133, 87, 90, (486,309,0): 139, 90, 93, (486,310,0): 136, 86, 89, (486,311,0): 125, 77, 77, (486,312,0): 112, 66, 66, (486,313,0): 103, 62, 60, (486,314,0): 94, 56, 53, (486,315,0): 89, 55, 53, (486,316,0): 87, 57, 55, (486,317,0): 83, 57, 56, (486,318,0): 77, 53, 51, (486,319,0): 69, 49, 50, (486,320,0): 62, 41, 46, (486,321,0): 56, 37, 43, (486,322,0): 48, 31, 39, (486,323,0): 43, 28, 35, (486,324,0): 39, 26, 35, (486,325,0): 36, 26, 34, (486,326,0): 34, 24, 33, (486,327,0): 30, 22, 33, (486,328,0): 24, 18, 30, (486,329,0): 22, 19, 30, (486,330,0): 22, 19, 30, (486,331,0): 24, 18, 30, (486,332,0): 23, 17, 27, (486,333,0): 23, 15, 26, (486,334,0): 23, 15, 26, (486,335,0): 22, 14, 25, (486,336,0): 21, 13, 26, (486,337,0): 21, 13, 26, (486,338,0): 21, 13, 26, (486,339,0): 20, 12, 25, (486,340,0): 20, 12, 25, (486,341,0): 19, 11, 24, (486,342,0): 19, 11, 24, (486,343,0): 18, 10, 23, (486,344,0): 19, 11, 24, (486,345,0): 19, 11, 24, (486,346,0): 20, 12, 25, (486,347,0): 21, 13, 26, (486,348,0): 21, 13, 26, (486,349,0): 22, 14, 27, (486,350,0): 23, 15, 28, (486,351,0): 25, 14, 28, (486,352,0): 28, 14, 29, (486,353,0): 27, 13, 28, (486,354,0): 29, 12, 28, (486,355,0): 26, 12, 27, (486,356,0): 26, 12, 27, (486,357,0): 24, 12, 26, (486,358,0): 24, 12, 26, (486,359,0): 23, 12, 26, (486,360,0): 25, 13, 27, (486,361,0): 24, 13, 27, (486,362,0): 24, 13, 27, (486,363,0): 22, 14, 27, (486,364,0): 22, 14, 27, (486,365,0): 21, 15, 27, (486,366,0): 22, 14, 27, (486,367,0): 22, 14, 27, (486,368,0): 21, 13, 26, (486,369,0): 21, 13, 26, (486,370,0): 22, 14, 27, (486,371,0): 22, 14, 27, (486,372,0): 25, 15, 26, (486,373,0): 25, 15, 26, (486,374,0): 26, 16, 27, (486,375,0): 26, 16, 27, (486,376,0): 29, 17, 27, (486,377,0): 29, 17, 27, (486,378,0): 30, 17, 26, (486,379,0): 30, 17, 26, (486,380,0): 30, 17, 26, (486,381,0): 30, 17, 26, (486,382,0): 32, 17, 24, (486,383,0): 32, 17, 24, (486,384,0): 30, 17, 26, (486,385,0): 30, 17, 26, (486,386,0): 33, 17, 27, (486,387,0): 33, 17, 27, (486,388,0): 34, 19, 26, (486,389,0): 34, 19, 26, (486,390,0): 35, 18, 24, (486,391,0): 36, 19, 25, (486,392,0): 39, 20, 26, (486,393,0): 39, 20, 26, (486,394,0): 40, 21, 25, (486,395,0): 40, 21, 25, (486,396,0): 42, 22, 24, (486,397,0): 42, 22, 24, (486,398,0): 43, 23, 25, (486,399,0): 42, 23, 25, (486,400,0): 41, 22, 24, (486,401,0): 39, 23, 24, (486,402,0): 39, 23, 24, (486,403,0): 39, 23, 24, (486,404,0): 41, 22, 24, (486,405,0): 41, 22, 24, (486,406,0): 41, 22, 24, (486,407,0): 41, 22, 24, (486,408,0): 45, 25, 27, (486,409,0): 46, 26, 28, (486,410,0): 48, 26, 29, (486,411,0): 49, 27, 30, (486,412,0): 50, 28, 31, (486,413,0): 52, 30, 33, (486,414,0): 54, 29, 33, (486,415,0): 55, 30, 34, (486,416,0): 56, 31, 35, (486,417,0): 56, 31, 35, (486,418,0): 56, 31, 35, (486,419,0): 56, 31, 35, (486,420,0): 57, 30, 35, (486,421,0): 57, 30, 35, (486,422,0): 57, 30, 35, (486,423,0): 57, 30, 35, (486,424,0): 58, 31, 36, (486,425,0): 58, 31, 36, (486,426,0): 57, 30, 35, (486,427,0): 55, 28, 33, (486,428,0): 56, 27, 32, (486,429,0): 54, 25, 30, (486,430,0): 53, 24, 29, (486,431,0): 54, 23, 29, (486,432,0): 52, 21, 27, (486,433,0): 53, 22, 28, (486,434,0): 55, 24, 30, (486,435,0): 56, 27, 32, (486,436,0): 55, 25, 33, (486,437,0): 51, 24, 31, (486,438,0): 47, 22, 28, (486,439,0): 43, 20, 26, (486,440,0): 44, 23, 30, (486,441,0): 42, 23, 29, (486,442,0): 37, 20, 28, (486,443,0): 35, 20, 27, (486,444,0): 34, 19, 26, (486,445,0): 34, 21, 28, (486,446,0): 36, 23, 32, (486,447,0): 37, 24, 33, (486,448,0): 37, 24, 34, (486,449,0): 37, 24, 34, (486,450,0): 38, 22, 33, (486,451,0): 37, 21, 32, (486,452,0): 38, 22, 32, (486,453,0): 39, 23, 33, (486,454,0): 41, 24, 34, (486,455,0): 42, 25, 33, (486,456,0): 45, 25, 34, (486,457,0): 45, 26, 32, (486,458,0): 44, 25, 31, (486,459,0): 44, 25, 31, (486,460,0): 45, 24, 31, (486,461,0): 44, 23, 30, (486,462,0): 44, 23, 28, (486,463,0): 43, 24, 30, (486,464,0): 43, 23, 32, (486,465,0): 40, 23, 33, (486,466,0): 39, 22, 32, (486,467,0): 38, 21, 31, (486,468,0): 39, 19, 28, (486,469,0): 40, 20, 29, (486,470,0): 43, 20, 28, (486,471,0): 44, 21, 29, (486,472,0): 52, 26, 35, (486,473,0): 52, 26, 35, (486,474,0): 55, 25, 33, (486,475,0): 54, 24, 32, (486,476,0): 53, 22, 28, (486,477,0): 51, 20, 26, (486,478,0): 49, 18, 24, (486,479,0): 48, 16, 21, (486,480,0): 51, 14, 21, (486,481,0): 53, 14, 19, (486,482,0): 55, 14, 20, (486,483,0): 57, 16, 22, (486,484,0): 59, 16, 23, (486,485,0): 63, 18, 25, (486,486,0): 65, 18, 26, (486,487,0): 67, 17, 26, (486,488,0): 73, 22, 31, (486,489,0): 70, 17, 27, (486,490,0): 73, 20, 30, (486,491,0): 71, 15, 26, (486,492,0): 65, 7, 19, (486,493,0): 75, 15, 27, (486,494,0): 81, 21, 33, (486,495,0): 72, 10, 23, (486,496,0): 72, 8, 24, (486,497,0): 74, 13, 29, (486,498,0): 67, 15, 28, (486,499,0): 57, 11, 22, (486,500,0): 54, 11, 21, (486,501,0): 63, 15, 27, (486,502,0): 70, 16, 30, (486,503,0): 74, 13, 29, (486,504,0): 88, 16, 36, (486,505,0): 94, 10, 34, (486,506,0): 117, 17, 45, (486,507,0): 132, 23, 54, (486,508,0): 129, 18, 50, (486,509,0): 127, 23, 50, (486,510,0): 120, 31, 53, (486,511,0): 109, 24, 43, (486,512,0): 113, 21, 36, (486,513,0): 104, 11, 22, (486,514,0): 113, 17, 28, (486,515,0): 120, 28, 39, (486,516,0): 108, 22, 35, (486,517,0): 96, 15, 34, (486,518,0): 88, 16, 40, (486,519,0): 82, 13, 41, (486,520,0): 92, 22, 50, (486,521,0): 97, 21, 47, (486,522,0): 113, 25, 47, (486,523,0): 129, 32, 51, (486,524,0): 137, 30, 48, (486,525,0): 134, 23, 40, (486,526,0): 132, 21, 40, (486,527,0): 136, 22, 47, (486,528,0): 135, 16, 44, (486,529,0): 137, 22, 51, (486,530,0): 139, 32, 60, (486,531,0): 142, 37, 67, (486,532,0): 148, 38, 73, (486,533,0): 153, 37, 76, (486,534,0): 160, 35, 79, (486,535,0): 160, 34, 81, (486,536,0): 155, 32, 78, (486,537,0): 165, 44, 87, (486,538,0): 167, 42, 82, (486,539,0): 162, 36, 73, (486,540,0): 161, 31, 67, (486,541,0): 153, 24, 55, (486,542,0): 156, 32, 60, (486,543,0): 178, 50, 75, (486,544,0): 190, 50, 76, (486,545,0): 174, 32, 56, (486,546,0): 181, 42, 71, (486,547,0): 181, 52, 82, (486,548,0): 148, 33, 66, (486,549,0): 128, 24, 59, (486,550,0): 128, 34, 70, (486,551,0): 128, 30, 69, (486,552,0): 157, 44, 90, (486,553,0): 186, 53, 106, (486,554,0): 207, 56, 111, (486,555,0): 202, 50, 101, (486,556,0): 187, 48, 90, (486,557,0): 168, 50, 82, (486,558,0): 131, 47, 63, (486,559,0): 99, 36, 45, (486,560,0): 97, 41, 54, (486,561,0): 89, 41, 53, (486,562,0): 83, 40, 50, (486,563,0): 82, 41, 49, (486,564,0): 85, 42, 51, (486,565,0): 93, 43, 54, (486,566,0): 99, 41, 55, (486,567,0): 103, 41, 54, (486,568,0): 105, 41, 57, (486,569,0): 102, 41, 56, (486,570,0): 95, 41, 54, (486,571,0): 89, 42, 52, (486,572,0): 85, 43, 53, (486,573,0): 86, 46, 55, (486,574,0): 89, 47, 57, (486,575,0): 89, 49, 60, (486,576,0): 85, 52, 61, (486,577,0): 82, 52, 62, (486,578,0): 78, 51, 60, (486,579,0): 76, 49, 58, (486,580,0): 73, 47, 56, (486,581,0): 69, 46, 54, (486,582,0): 66, 45, 52, (486,583,0): 65, 44, 51, (486,584,0): 64, 43, 50, (486,585,0): 63, 42, 49, (486,586,0): 63, 40, 48, (486,587,0): 64, 38, 47, (486,588,0): 63, 36, 45, (486,589,0): 62, 35, 44, (486,590,0): 63, 33, 43, (486,591,0): 60, 33, 42, (486,592,0): 54, 31, 39, (486,593,0): 51, 30, 37, (486,594,0): 48, 27, 34, (486,595,0): 44, 23, 30, (486,596,0): 42, 21, 28, (486,597,0): 40, 19, 26, (486,598,0): 39, 18, 25, (486,599,0): 39, 18, 25, (487,0,0): 44, 70, 71, (487,1,0): 44, 70, 71, (487,2,0): 45, 71, 72, (487,3,0): 45, 71, 72, (487,4,0): 46, 72, 73, (487,5,0): 46, 72, 73, (487,6,0): 47, 73, 74, (487,7,0): 47, 73, 74, (487,8,0): 46, 72, 73, (487,9,0): 46, 72, 73, (487,10,0): 46, 72, 73, (487,11,0): 47, 73, 74, (487,12,0): 47, 73, 74, (487,13,0): 48, 74, 75, (487,14,0): 48, 74, 75, (487,15,0): 50, 74, 76, (487,16,0): 52, 73, 76, (487,17,0): 54, 73, 77, (487,18,0): 56, 74, 78, (487,19,0): 58, 76, 78, (487,20,0): 60, 75, 78, (487,21,0): 59, 75, 75, (487,22,0): 59, 73, 74, (487,23,0): 59, 73, 73, (487,24,0): 57, 69, 67, (487,25,0): 55, 66, 62, (487,26,0): 53, 62, 59, (487,27,0): 50, 59, 54, (487,28,0): 51, 57, 53, (487,29,0): 53, 60, 53, (487,30,0): 56, 61, 55, (487,31,0): 57, 62, 55, (487,32,0): 59, 61, 56, (487,33,0): 60, 61, 56, (487,34,0): 61, 62, 57, (487,35,0): 62, 63, 58, (487,36,0): 64, 63, 59, (487,37,0): 64, 63, 58, (487,38,0): 67, 64, 59, (487,39,0): 67, 64, 59, (487,40,0): 66, 63, 58, (487,41,0): 66, 63, 56, (487,42,0): 67, 62, 56, (487,43,0): 67, 63, 54, (487,44,0): 69, 62, 54, (487,45,0): 69, 62, 54, (487,46,0): 69, 62, 54, (487,47,0): 69, 62, 52, (487,48,0): 68, 61, 53, (487,49,0): 68, 61, 53, (487,50,0): 69, 60, 53, (487,51,0): 69, 60, 53, (487,52,0): 70, 59, 53, (487,53,0): 70, 59, 53, (487,54,0): 72, 59, 51, (487,55,0): 72, 59, 51, (487,56,0): 73, 56, 48, (487,57,0): 73, 56, 48, (487,58,0): 75, 57, 47, (487,59,0): 75, 57, 47, (487,60,0): 77, 57, 48, (487,61,0): 78, 58, 49, (487,62,0): 81, 58, 50, (487,63,0): 81, 58, 50, (487,64,0): 78, 58, 49, (487,65,0): 77, 57, 48, (487,66,0): 76, 56, 47, (487,67,0): 74, 54, 45, (487,68,0): 74, 54, 45, (487,69,0): 74, 54, 45, (487,70,0): 75, 55, 46, (487,71,0): 75, 55, 46, (487,72,0): 71, 51, 42, (487,73,0): 71, 51, 42, (487,74,0): 70, 50, 41, (487,75,0): 70, 50, 41, (487,76,0): 69, 49, 40, (487,77,0): 69, 49, 40, (487,78,0): 68, 48, 39, (487,79,0): 68, 48, 39, (487,80,0): 65, 46, 39, (487,81,0): 65, 46, 39, (487,82,0): 65, 46, 39, (487,83,0): 64, 45, 38, (487,84,0): 64, 45, 38, (487,85,0): 63, 44, 37, (487,86,0): 63, 44, 37, (487,87,0): 63, 44, 37, (487,88,0): 67, 48, 41, (487,89,0): 67, 48, 41, (487,90,0): 67, 48, 41, (487,91,0): 67, 48, 41, (487,92,0): 67, 48, 41, (487,93,0): 67, 48, 41, (487,94,0): 67, 48, 41, (487,95,0): 67, 48, 41, (487,96,0): 70, 50, 43, (487,97,0): 72, 49, 43, (487,98,0): 71, 48, 42, (487,99,0): 68, 48, 41, (487,100,0): 67, 47, 40, (487,101,0): 67, 47, 40, (487,102,0): 66, 46, 39, (487,103,0): 65, 46, 39, (487,104,0): 65, 46, 39, (487,105,0): 64, 47, 39, (487,106,0): 64, 47, 39, (487,107,0): 64, 47, 39, (487,108,0): 64, 47, 39, (487,109,0): 62, 48, 39, (487,110,0): 62, 48, 39, (487,111,0): 62, 48, 39, (487,112,0): 63, 46, 39, (487,113,0): 63, 46, 39, (487,114,0): 63, 46, 39, (487,115,0): 63, 46, 39, (487,116,0): 63, 46, 39, (487,117,0): 63, 46, 39, (487,118,0): 63, 46, 39, (487,119,0): 63, 46, 39, (487,120,0): 66, 49, 42, (487,121,0): 65, 48, 41, (487,122,0): 65, 48, 41, (487,123,0): 65, 48, 41, (487,124,0): 64, 47, 40, (487,125,0): 63, 46, 39, (487,126,0): 63, 46, 39, (487,127,0): 63, 46, 39, (487,128,0): 61, 43, 39, (487,129,0): 60, 42, 38, (487,130,0): 57, 42, 37, (487,131,0): 56, 41, 36, (487,132,0): 54, 39, 34, (487,133,0): 53, 38, 33, (487,134,0): 51, 38, 32, (487,135,0): 50, 37, 31, (487,136,0): 49, 38, 32, (487,137,0): 49, 38, 32, (487,138,0): 48, 37, 31, (487,139,0): 48, 37, 31, (487,140,0): 46, 37, 30, (487,141,0): 46, 37, 30, (487,142,0): 45, 36, 29, (487,143,0): 45, 36, 31, (487,144,0): 42, 32, 30, (487,145,0): 42, 32, 30, (487,146,0): 42, 32, 30, (487,147,0): 42, 32, 30, (487,148,0): 42, 32, 30, (487,149,0): 42, 32, 30, (487,150,0): 42, 32, 30, (487,151,0): 42, 32, 30, (487,152,0): 47, 37, 35, (487,153,0): 47, 37, 35, (487,154,0): 47, 37, 35, (487,155,0): 47, 37, 35, (487,156,0): 47, 37, 35, (487,157,0): 47, 37, 35, (487,158,0): 47, 37, 35, (487,159,0): 47, 37, 35, (487,160,0): 46, 38, 36, (487,161,0): 46, 38, 36, (487,162,0): 46, 38, 36, (487,163,0): 47, 39, 37, (487,164,0): 47, 39, 37, (487,165,0): 48, 40, 38, (487,166,0): 48, 40, 38, (487,167,0): 48, 40, 38, (487,168,0): 49, 41, 39, (487,169,0): 49, 41, 39, (487,170,0): 49, 41, 39, (487,171,0): 49, 41, 39, (487,172,0): 49, 41, 39, (487,173,0): 49, 41, 39, (487,174,0): 49, 41, 39, (487,175,0): 49, 41, 39, (487,176,0): 50, 40, 39, (487,177,0): 50, 40, 39, (487,178,0): 50, 40, 39, (487,179,0): 51, 41, 40, (487,180,0): 51, 41, 40, (487,181,0): 52, 42, 41, (487,182,0): 52, 42, 41, (487,183,0): 53, 43, 42, (487,184,0): 50, 40, 39, (487,185,0): 50, 40, 39, (487,186,0): 50, 40, 39, (487,187,0): 50, 40, 39, (487,188,0): 50, 40, 39, (487,189,0): 50, 40, 39, (487,190,0): 50, 40, 39, (487,191,0): 50, 40, 41, (487,192,0): 50, 39, 43, (487,193,0): 50, 39, 43, (487,194,0): 50, 39, 43, (487,195,0): 51, 40, 44, (487,196,0): 51, 40, 44, (487,197,0): 52, 41, 45, (487,198,0): 52, 41, 45, (487,199,0): 53, 42, 46, (487,200,0): 49, 38, 42, (487,201,0): 49, 38, 42, (487,202,0): 50, 39, 43, (487,203,0): 51, 40, 44, (487,204,0): 52, 41, 45, (487,205,0): 52, 41, 45, (487,206,0): 53, 42, 46, (487,207,0): 52, 43, 48, (487,208,0): 52, 42, 50, (487,209,0): 50, 43, 51, (487,210,0): 50, 43, 51, (487,211,0): 50, 43, 51, (487,212,0): 50, 43, 51, (487,213,0): 50, 43, 51, (487,214,0): 50, 43, 51, (487,215,0): 50, 43, 51, (487,216,0): 47, 40, 48, (487,217,0): 47, 40, 48, (487,218,0): 47, 40, 48, (487,219,0): 48, 41, 49, (487,220,0): 48, 41, 49, (487,221,0): 49, 42, 50, (487,222,0): 49, 42, 50, (487,223,0): 50, 43, 51, (487,224,0): 51, 44, 51, (487,225,0): 52, 46, 50, (487,226,0): 55, 46, 51, (487,227,0): 56, 47, 52, (487,228,0): 58, 47, 53, (487,229,0): 59, 48, 54, (487,230,0): 61, 48, 55, (487,231,0): 61, 48, 55, (487,232,0): 68, 53, 60, (487,233,0): 69, 52, 60, (487,234,0): 72, 52, 61, (487,235,0): 73, 53, 62, (487,236,0): 75, 54, 63, (487,237,0): 76, 55, 64, (487,238,0): 78, 55, 65, (487,239,0): 77, 56, 65, (487,240,0): 76, 55, 64, (487,241,0): 76, 55, 64, (487,242,0): 77, 56, 65, (487,243,0): 80, 57, 67, (487,244,0): 86, 58, 70, (487,245,0): 92, 62, 72, (487,246,0): 96, 66, 76, (487,247,0): 100, 68, 79, (487,248,0): 104, 71, 82, (487,249,0): 104, 71, 80, (487,250,0): 103, 70, 79, (487,251,0): 102, 71, 77, (487,252,0): 100, 71, 76, (487,253,0): 100, 71, 76, (487,254,0): 99, 70, 75, (487,255,0): 99, 70, 75, (487,256,0): 101, 72, 77, (487,257,0): 101, 74, 79, (487,258,0): 104, 77, 82, (487,259,0): 105, 80, 84, (487,260,0): 103, 80, 86, (487,261,0): 99, 80, 84, (487,262,0): 96, 77, 81, (487,263,0): 92, 76, 79, (487,264,0): 89, 72, 78, (487,265,0): 91, 74, 80, (487,266,0): 93, 76, 84, (487,267,0): 94, 77, 85, (487,268,0): 96, 76, 85, (487,269,0): 94, 74, 83, (487,270,0): 93, 71, 83, (487,271,0): 90, 70, 81, (487,272,0): 88, 70, 82, (487,273,0): 86, 70, 81, (487,274,0): 84, 68, 79, (487,275,0): 83, 67, 78, (487,276,0): 82, 66, 77, (487,277,0): 83, 67, 78, (487,278,0): 83, 67, 78, (487,279,0): 84, 68, 79, (487,280,0): 82, 66, 77, (487,281,0): 82, 66, 77, (487,282,0): 81, 65, 76, (487,283,0): 81, 65, 76, (487,284,0): 81, 65, 76, (487,285,0): 81, 65, 76, (487,286,0): 80, 64, 75, (487,287,0): 78, 65, 75, (487,288,0): 78, 66, 80, (487,289,0): 80, 69, 83, (487,290,0): 83, 72, 86, (487,291,0): 84, 73, 87, (487,292,0): 84, 72, 84, (487,293,0): 84, 72, 82, (487,294,0): 90, 74, 85, (487,295,0): 93, 77, 87, (487,296,0): 93, 76, 84, (487,297,0): 95, 78, 84, (487,298,0): 102, 81, 88, (487,299,0): 106, 85, 90, (487,300,0): 108, 86, 89, (487,301,0): 108, 86, 89, (487,302,0): 106, 84, 87, (487,303,0): 107, 82, 86, (487,304,0): 114, 83, 88, (487,305,0): 120, 85, 91, (487,306,0): 123, 84, 89, (487,307,0): 122, 81, 85, (487,308,0): 128, 81, 87, (487,309,0): 135, 86, 89, (487,310,0): 133, 83, 86, (487,311,0): 125, 75, 76, (487,312,0): 112, 64, 64, (487,313,0): 105, 59, 59, (487,314,0): 97, 56, 54, (487,315,0): 93, 58, 54, (487,316,0): 91, 60, 57, (487,317,0): 88, 60, 57, (487,318,0): 80, 55, 51, (487,319,0): 71, 50, 49, (487,320,0): 62, 42, 44, (487,321,0): 56, 37, 41, (487,322,0): 50, 31, 37, (487,323,0): 43, 28, 35, (487,324,0): 40, 27, 34, (487,325,0): 38, 27, 35, (487,326,0): 35, 25, 34, (487,327,0): 31, 23, 34, (487,328,0): 24, 18, 30, (487,329,0): 22, 19, 30, (487,330,0): 22, 19, 30, (487,331,0): 22, 19, 28, (487,332,0): 23, 17, 27, (487,333,0): 23, 18, 25, (487,334,0): 23, 16, 24, (487,335,0): 22, 15, 23, (487,336,0): 21, 13, 24, (487,337,0): 21, 13, 26, (487,338,0): 20, 12, 25, (487,339,0): 20, 12, 25, (487,340,0): 19, 11, 24, (487,341,0): 19, 11, 24, (487,342,0): 18, 10, 23, (487,343,0): 18, 10, 23, (487,344,0): 19, 11, 24, (487,345,0): 19, 11, 24, (487,346,0): 20, 12, 25, (487,347,0): 21, 13, 26, (487,348,0): 21, 13, 26, (487,349,0): 22, 14, 27, (487,350,0): 23, 15, 28, (487,351,0): 25, 14, 28, (487,352,0): 28, 14, 29, (487,353,0): 30, 13, 29, (487,354,0): 29, 12, 28, (487,355,0): 29, 12, 28, (487,356,0): 26, 12, 27, (487,357,0): 26, 12, 27, (487,358,0): 25, 11, 26, (487,359,0): 24, 12, 26, (487,360,0): 25, 13, 27, (487,361,0): 25, 13, 27, (487,362,0): 24, 13, 27, (487,363,0): 24, 13, 27, (487,364,0): 24, 13, 27, (487,365,0): 22, 14, 27, (487,366,0): 22, 14, 27, (487,367,0): 22, 14, 27, (487,368,0): 21, 13, 26, (487,369,0): 21, 13, 26, (487,370,0): 22, 14, 27, (487,371,0): 22, 14, 27, (487,372,0): 25, 15, 26, (487,373,0): 25, 15, 26, (487,374,0): 26, 16, 27, (487,375,0): 26, 16, 27, (487,376,0): 29, 17, 27, (487,377,0): 29, 17, 27, (487,378,0): 30, 17, 26, (487,379,0): 30, 17, 26, (487,380,0): 30, 17, 26, (487,381,0): 30, 17, 26, (487,382,0): 32, 17, 24, (487,383,0): 32, 17, 24, (487,384,0): 30, 17, 26, (487,385,0): 30, 17, 26, (487,386,0): 32, 16, 26, (487,387,0): 33, 17, 27, (487,388,0): 33, 18, 25, (487,389,0): 34, 19, 26, (487,390,0): 35, 18, 24, (487,391,0): 36, 19, 25, (487,392,0): 39, 20, 26, (487,393,0): 39, 20, 26, (487,394,0): 40, 21, 25, (487,395,0): 40, 21, 25, (487,396,0): 42, 22, 24, (487,397,0): 42, 22, 24, (487,398,0): 43, 23, 25, (487,399,0): 42, 23, 25, (487,400,0): 41, 22, 24, (487,401,0): 39, 23, 24, (487,402,0): 39, 23, 24, (487,403,0): 39, 23, 24, (487,404,0): 41, 22, 24, (487,405,0): 41, 22, 24, (487,406,0): 41, 22, 24, (487,407,0): 41, 22, 24, (487,408,0): 45, 25, 27, (487,409,0): 46, 26, 28, (487,410,0): 48, 26, 29, (487,411,0): 49, 27, 30, (487,412,0): 51, 29, 32, (487,413,0): 52, 30, 33, (487,414,0): 55, 30, 34, (487,415,0): 55, 30, 34, (487,416,0): 56, 31, 35, (487,417,0): 56, 31, 35, (487,418,0): 57, 30, 35, (487,419,0): 57, 30, 35, (487,420,0): 57, 30, 35, (487,421,0): 57, 30, 35, (487,422,0): 57, 30, 35, (487,423,0): 57, 30, 35, (487,424,0): 59, 32, 37, (487,425,0): 58, 31, 36, (487,426,0): 57, 30, 35, (487,427,0): 55, 28, 33, (487,428,0): 54, 27, 32, (487,429,0): 52, 25, 30, (487,430,0): 53, 24, 29, (487,431,0): 52, 23, 28, (487,432,0): 49, 20, 25, (487,433,0): 51, 22, 27, (487,434,0): 53, 24, 29, (487,435,0): 53, 26, 31, (487,436,0): 52, 25, 32, (487,437,0): 49, 24, 30, (487,438,0): 43, 20, 26, (487,439,0): 40, 19, 24, (487,440,0): 44, 25, 31, (487,441,0): 43, 24, 30, (487,442,0): 38, 21, 29, (487,443,0): 36, 19, 27, (487,444,0): 35, 20, 27, (487,445,0): 34, 21, 28, (487,446,0): 36, 23, 32, (487,447,0): 37, 24, 33, (487,448,0): 35, 22, 32, (487,449,0): 34, 21, 31, (487,450,0): 35, 19, 30, (487,451,0): 35, 19, 30, (487,452,0): 35, 19, 30, (487,453,0): 36, 20, 30, (487,454,0): 38, 21, 31, (487,455,0): 39, 22, 32, (487,456,0): 44, 24, 33, (487,457,0): 44, 24, 33, (487,458,0): 44, 24, 33, (487,459,0): 44, 25, 31, (487,460,0): 45, 24, 31, (487,461,0): 44, 23, 30, (487,462,0): 44, 23, 28, (487,463,0): 43, 24, 30, (487,464,0): 43, 23, 32, (487,465,0): 40, 23, 33, (487,466,0): 39, 22, 32, (487,467,0): 37, 20, 30, (487,468,0): 39, 19, 28, (487,469,0): 40, 20, 29, (487,470,0): 43, 20, 28, (487,471,0): 43, 20, 28, (487,472,0): 51, 25, 34, (487,473,0): 51, 25, 34, (487,474,0): 54, 24, 32, (487,475,0): 53, 23, 31, (487,476,0): 52, 21, 27, (487,477,0): 49, 18, 24, (487,478,0): 47, 16, 22, (487,479,0): 46, 13, 20, (487,480,0): 49, 14, 20, (487,481,0): 50, 14, 18, (487,482,0): 53, 14, 19, (487,483,0): 54, 15, 20, (487,484,0): 56, 15, 21, (487,485,0): 58, 17, 23, (487,486,0): 61, 16, 23, (487,487,0): 62, 17, 24, (487,488,0): 65, 18, 26, (487,489,0): 65, 15, 24, (487,490,0): 71, 20, 29, (487,491,0): 68, 17, 26, (487,492,0): 60, 7, 17, (487,493,0): 67, 14, 24, (487,494,0): 73, 17, 28, (487,495,0): 60, 4, 17, (487,496,0): 68, 7, 22, (487,497,0): 70, 12, 27, (487,498,0): 60, 12, 24, (487,499,0): 54, 8, 18, (487,500,0): 55, 9, 19, (487,501,0): 67, 16, 25, (487,502,0): 76, 14, 29, (487,503,0): 79, 6, 23, (487,504,0): 97, 13, 36, (487,505,0): 108, 9, 37, (487,506,0): 133, 19, 52, (487,507,0): 147, 29, 63, (487,508,0): 137, 22, 55, (487,509,0): 124, 24, 52, (487,510,0): 108, 29, 50, (487,511,0): 91, 18, 35, (487,512,0): 100, 20, 31, (487,513,0): 96, 13, 21, (487,514,0): 106, 19, 28, (487,515,0): 112, 24, 36, (487,516,0): 102, 18, 34, (487,517,0): 98, 19, 40, (487,518,0): 101, 28, 55, (487,519,0): 99, 30, 59, (487,520,0): 86, 17, 46, (487,521,0): 90, 16, 43, (487,522,0): 108, 23, 46, (487,523,0): 135, 38, 57, (487,524,0): 155, 46, 65, (487,525,0): 157, 41, 60, (487,526,0): 150, 32, 54, (487,527,0): 144, 28, 51, (487,528,0): 131, 21, 46, (487,529,0): 130, 26, 51, (487,530,0): 131, 31, 57, (487,531,0): 129, 31, 56, (487,532,0): 130, 26, 53, (487,533,0): 134, 23, 55, (487,534,0): 140, 25, 58, (487,535,0): 146, 28, 62, (487,536,0): 134, 19, 52, (487,537,0): 154, 36, 68, (487,538,0): 169, 46, 77, (487,539,0): 173, 46, 76, (487,540,0): 168, 39, 70, (487,541,0): 154, 27, 56, (487,542,0): 153, 35, 59, (487,543,0): 180, 58, 79, (487,544,0): 188, 49, 72, (487,545,0): 171, 23, 49, (487,546,0): 175, 32, 60, (487,547,0): 177, 47, 75, (487,548,0): 145, 35, 62, (487,549,0): 127, 33, 60, (487,550,0): 126, 46, 73, (487,551,0): 125, 42, 72, (487,552,0): 155, 51, 88, (487,553,0): 188, 56, 103, (487,554,0): 216, 55, 109, (487,555,0): 223, 50, 104, (487,556,0): 217, 54, 101, (487,557,0): 198, 57, 92, (487,558,0): 153, 46, 66, (487,559,0): 108, 28, 41, (487,560,0): 93, 31, 44, (487,561,0): 84, 34, 45, (487,562,0): 78, 37, 45, (487,563,0): 77, 37, 45, (487,564,0): 79, 39, 47, (487,565,0): 84, 41, 50, (487,566,0): 94, 42, 54, (487,567,0): 100, 42, 56, (487,568,0): 105, 44, 59, (487,569,0): 103, 42, 57, (487,570,0): 96, 42, 55, (487,571,0): 93, 43, 54, (487,572,0): 90, 44, 55, (487,573,0): 89, 46, 56, (487,574,0): 93, 47, 58, (487,575,0): 92, 50, 60, (487,576,0): 82, 49, 60, (487,577,0): 77, 50, 59, (487,578,0): 76, 49, 58, (487,579,0): 74, 48, 57, (487,580,0): 71, 48, 56, (487,581,0): 68, 47, 54, (487,582,0): 68, 47, 54, (487,583,0): 67, 46, 53, (487,584,0): 63, 42, 49, (487,585,0): 63, 42, 49, (487,586,0): 62, 39, 47, (487,587,0): 60, 37, 45, (487,588,0): 61, 35, 44, (487,589,0): 60, 33, 42, (487,590,0): 60, 30, 40, (487,591,0): 58, 31, 40, (487,592,0): 53, 30, 38, (487,593,0): 50, 29, 36, (487,594,0): 47, 26, 33, (487,595,0): 43, 22, 29, (487,596,0): 41, 20, 27, (487,597,0): 39, 18, 25, (487,598,0): 38, 17, 24, (487,599,0): 38, 17, 24, (488,0,0): 44, 70, 71, (488,1,0): 44, 70, 71, (488,2,0): 44, 70, 71, (488,3,0): 44, 70, 71, (488,4,0): 44, 70, 71, (488,5,0): 44, 70, 71, (488,6,0): 44, 70, 71, (488,7,0): 44, 70, 71, (488,8,0): 46, 72, 73, (488,9,0): 46, 72, 73, (488,10,0): 46, 72, 73, (488,11,0): 47, 73, 74, (488,12,0): 47, 73, 74, (488,13,0): 48, 74, 75, (488,14,0): 48, 74, 75, (488,15,0): 49, 73, 75, (488,16,0): 52, 73, 78, (488,17,0): 52, 73, 76, (488,18,0): 53, 72, 76, (488,19,0): 54, 74, 75, (488,20,0): 55, 73, 75, (488,21,0): 56, 74, 74, (488,22,0): 58, 74, 74, (488,23,0): 59, 73, 73, (488,24,0): 56, 68, 66, (488,25,0): 55, 67, 63, (488,26,0): 56, 67, 63, (488,27,0): 55, 66, 60, (488,28,0): 54, 63, 58, (488,29,0): 53, 63, 55, (488,30,0): 54, 61, 54, (488,31,0): 55, 60, 54, (488,32,0): 57, 59, 56, (488,33,0): 58, 60, 57, (488,34,0): 59, 59, 57, (488,35,0): 60, 61, 56, (488,36,0): 61, 62, 57, (488,37,0): 62, 63, 58, (488,38,0): 63, 62, 58, (488,39,0): 64, 63, 58, (488,40,0): 67, 64, 59, (488,41,0): 67, 64, 57, (488,42,0): 67, 64, 57, (488,43,0): 67, 64, 57, (488,44,0): 67, 62, 56, (488,45,0): 67, 63, 54, (488,46,0): 67, 63, 54, (488,47,0): 67, 63, 54, (488,48,0): 69, 62, 54, (488,49,0): 69, 62, 54, (488,50,0): 70, 61, 54, (488,51,0): 69, 60, 53, (488,52,0): 70, 59, 53, (488,53,0): 69, 58, 52, (488,54,0): 71, 58, 50, (488,55,0): 71, 58, 50, (488,56,0): 74, 57, 49, (488,57,0): 75, 58, 50, (488,58,0): 77, 59, 49, (488,59,0): 79, 61, 51, (488,60,0): 80, 60, 51, (488,61,0): 80, 60, 51, (488,62,0): 81, 58, 50, (488,63,0): 81, 58, 50, (488,64,0): 76, 56, 47, (488,65,0): 75, 55, 46, (488,66,0): 75, 55, 46, (488,67,0): 74, 54, 45, (488,68,0): 74, 54, 45, (488,69,0): 73, 53, 44, (488,70,0): 73, 53, 44, (488,71,0): 73, 53, 44, (488,72,0): 73, 53, 44, (488,73,0): 73, 53, 44, (488,74,0): 72, 52, 43, (488,75,0): 72, 52, 43, (488,76,0): 71, 51, 42, (488,77,0): 70, 50, 41, (488,78,0): 69, 49, 40, (488,79,0): 69, 49, 40, (488,80,0): 65, 46, 39, (488,81,0): 65, 48, 41, (488,82,0): 65, 48, 41, (488,83,0): 66, 49, 42, (488,84,0): 67, 50, 43, (488,85,0): 68, 51, 44, (488,86,0): 68, 51, 44, (488,87,0): 69, 52, 45, (488,88,0): 66, 49, 42, (488,89,0): 67, 50, 43, (488,90,0): 67, 50, 43, (488,91,0): 68, 51, 44, (488,92,0): 68, 51, 44, (488,93,0): 69, 52, 45, (488,94,0): 69, 52, 45, (488,95,0): 70, 51, 45, (488,96,0): 73, 52, 47, (488,97,0): 73, 52, 47, (488,98,0): 72, 51, 46, (488,99,0): 71, 50, 45, (488,100,0): 69, 48, 43, (488,101,0): 67, 48, 42, (488,102,0): 66, 47, 41, (488,103,0): 65, 46, 40, (488,104,0): 69, 50, 44, (488,105,0): 67, 50, 43, (488,106,0): 67, 50, 43, (488,107,0): 64, 49, 42, (488,108,0): 64, 49, 42, (488,109,0): 63, 48, 41, (488,110,0): 63, 48, 41, (488,111,0): 62, 49, 41, (488,112,0): 59, 44, 37, (488,113,0): 60, 45, 38, (488,114,0): 62, 47, 40, (488,115,0): 63, 48, 41, (488,116,0): 64, 49, 42, (488,117,0): 64, 49, 42, (488,118,0): 64, 49, 42, (488,119,0): 64, 49, 42, (488,120,0): 64, 49, 42, (488,121,0): 64, 49, 42, (488,122,0): 63, 48, 41, (488,123,0): 63, 48, 41, (488,124,0): 62, 47, 40, (488,125,0): 62, 47, 40, (488,126,0): 61, 46, 39, (488,127,0): 61, 46, 39, (488,128,0): 59, 44, 39, (488,129,0): 59, 44, 41, (488,130,0): 59, 44, 41, (488,131,0): 58, 43, 40, (488,132,0): 57, 43, 40, (488,133,0): 56, 42, 39, (488,134,0): 56, 42, 39, (488,135,0): 55, 41, 38, (488,136,0): 49, 38, 34, (488,137,0): 48, 37, 33, (488,138,0): 47, 38, 33, (488,139,0): 46, 37, 32, (488,140,0): 44, 35, 30, (488,141,0): 43, 34, 29, (488,142,0): 42, 35, 29, (488,143,0): 41, 34, 28, (488,144,0): 44, 34, 32, (488,145,0): 44, 34, 32, (488,146,0): 44, 34, 32, (488,147,0): 44, 34, 32, (488,148,0): 44, 34, 32, (488,149,0): 44, 34, 32, (488,150,0): 44, 34, 32, (488,151,0): 44, 34, 32, (488,152,0): 45, 35, 33, (488,153,0): 45, 35, 33, (488,154,0): 45, 35, 33, (488,155,0): 45, 35, 33, (488,156,0): 45, 35, 33, (488,157,0): 45, 35, 33, (488,158,0): 45, 35, 33, (488,159,0): 45, 35, 33, (488,160,0): 45, 37, 35, (488,161,0): 43, 37, 37, (488,162,0): 43, 37, 37, (488,163,0): 43, 37, 37, (488,164,0): 43, 37, 37, (488,165,0): 43, 37, 37, (488,166,0): 43, 37, 37, (488,167,0): 43, 37, 37, (488,168,0): 45, 39, 39, (488,169,0): 45, 39, 39, (488,170,0): 45, 39, 39, (488,171,0): 45, 39, 39, (488,172,0): 45, 39, 39, (488,173,0): 45, 39, 39, (488,174,0): 45, 39, 39, (488,175,0): 47, 38, 39, (488,176,0): 47, 37, 38, (488,177,0): 47, 37, 38, (488,178,0): 48, 38, 39, (488,179,0): 49, 39, 40, (488,180,0): 49, 39, 40, (488,181,0): 48, 38, 39, (488,182,0): 47, 37, 38, (488,183,0): 47, 37, 38, (488,184,0): 49, 39, 40, (488,185,0): 49, 39, 40, (488,186,0): 49, 39, 40, (488,187,0): 49, 39, 40, (488,188,0): 49, 39, 40, (488,189,0): 49, 39, 40, (488,190,0): 49, 39, 40, (488,191,0): 49, 39, 40, (488,192,0): 52, 41, 45, (488,193,0): 51, 40, 44, (488,194,0): 51, 40, 44, (488,195,0): 50, 39, 43, (488,196,0): 49, 38, 42, (488,197,0): 48, 37, 41, (488,198,0): 48, 37, 41, (488,199,0): 47, 36, 40, (488,200,0): 50, 39, 43, (488,201,0): 50, 39, 43, (488,202,0): 50, 39, 43, (488,203,0): 50, 39, 43, (488,204,0): 50, 39, 43, (488,205,0): 50, 39, 43, (488,206,0): 50, 39, 43, (488,207,0): 49, 40, 45, (488,208,0): 51, 41, 50, (488,209,0): 47, 39, 50, (488,210,0): 46, 38, 49, (488,211,0): 44, 36, 47, (488,212,0): 44, 36, 47, (488,213,0): 46, 38, 49, (488,214,0): 47, 39, 50, (488,215,0): 49, 41, 52, (488,216,0): 49, 41, 52, (488,217,0): 49, 41, 52, (488,218,0): 49, 41, 52, (488,219,0): 49, 41, 52, (488,220,0): 49, 41, 52, (488,221,0): 49, 41, 52, (488,222,0): 49, 41, 52, (488,223,0): 49, 42, 50, (488,224,0): 51, 46, 52, (488,225,0): 52, 47, 53, (488,226,0): 53, 46, 53, (488,227,0): 54, 47, 54, (488,228,0): 56, 46, 54, (488,229,0): 57, 47, 55, (488,230,0): 58, 47, 55, (488,231,0): 59, 46, 55, (488,232,0): 65, 49, 59, (488,233,0): 65, 49, 59, (488,234,0): 67, 50, 60, (488,235,0): 69, 52, 62, (488,236,0): 73, 53, 64, (488,237,0): 74, 54, 65, (488,238,0): 76, 54, 66, (488,239,0): 77, 55, 67, (488,240,0): 76, 56, 67, (488,241,0): 76, 56, 67, (488,242,0): 77, 55, 67, (488,243,0): 79, 55, 68, (488,244,0): 83, 57, 70, (488,245,0): 86, 58, 70, (488,246,0): 90, 60, 72, (488,247,0): 92, 62, 72, (488,248,0): 97, 65, 76, (488,249,0): 98, 66, 77, (488,250,0): 99, 67, 78, (488,251,0): 98, 68, 76, (488,252,0): 98, 68, 76, (488,253,0): 95, 68, 75, (488,254,0): 93, 66, 73, (488,255,0): 93, 66, 71, (488,256,0): 96, 69, 74, (488,257,0): 98, 71, 76, (488,258,0): 101, 74, 81, (488,259,0): 102, 77, 83, (488,260,0): 101, 78, 84, (488,261,0): 98, 79, 83, (488,262,0): 96, 77, 83, (488,263,0): 93, 76, 82, (488,264,0): 91, 76, 83, (488,265,0): 92, 77, 84, (488,266,0): 93, 78, 85, (488,267,0): 95, 78, 86, (488,268,0): 96, 76, 87, (488,269,0): 94, 74, 85, (488,270,0): 92, 70, 82, (488,271,0): 90, 70, 81, (488,272,0): 83, 65, 77, (488,273,0): 82, 66, 77, (488,274,0): 82, 66, 77, (488,275,0): 81, 65, 76, (488,276,0): 81, 65, 76, (488,277,0): 80, 64, 75, (488,278,0): 80, 64, 75, (488,279,0): 79, 63, 74, (488,280,0): 79, 63, 74, (488,281,0): 80, 64, 75, (488,282,0): 80, 64, 75, (488,283,0): 81, 65, 76, (488,284,0): 81, 65, 76, (488,285,0): 82, 66, 77, (488,286,0): 82, 66, 77, (488,287,0): 80, 67, 77, (488,288,0): 79, 67, 81, (488,289,0): 80, 69, 83, (488,290,0): 83, 72, 86, (488,291,0): 85, 74, 88, (488,292,0): 88, 76, 88, (488,293,0): 88, 76, 86, (488,294,0): 91, 75, 86, (488,295,0): 90, 74, 84, (488,296,0): 95, 78, 86, (488,297,0): 96, 79, 85, (488,298,0): 100, 79, 86, (488,299,0): 101, 80, 85, (488,300,0): 104, 82, 85, (488,301,0): 104, 82, 85, (488,302,0): 104, 82, 85, (488,303,0): 106, 81, 85, (488,304,0): 108, 77, 83, (488,305,0): 113, 78, 84, (488,306,0): 117, 81, 85, (488,307,0): 122, 83, 86, (488,308,0): 127, 82, 87, (488,309,0): 129, 83, 85, (488,310,0): 130, 81, 84, (488,311,0): 130, 80, 81, (488,312,0): 118, 68, 67, (488,313,0): 114, 66, 64, (488,314,0): 107, 63, 60, (488,315,0): 103, 63, 61, (488,316,0): 100, 65, 61, (488,317,0): 93, 64, 60, (488,318,0): 86, 58, 54, (488,319,0): 79, 54, 50, (488,320,0): 69, 48, 47, (488,321,0): 64, 44, 45, (488,322,0): 59, 40, 42, (488,323,0): 52, 36, 39, (488,324,0): 46, 31, 38, (488,325,0): 38, 27, 35, (488,326,0): 34, 24, 33, (488,327,0): 31, 23, 34, (488,328,0): 30, 24, 36, (488,329,0): 26, 20, 32, (488,330,0): 21, 18, 27, (488,331,0): 20, 17, 26, (488,332,0): 23, 17, 27, (488,333,0): 23, 18, 25, (488,334,0): 22, 17, 24, (488,335,0): 20, 15, 22, (488,336,0): 23, 15, 26, (488,337,0): 22, 14, 27, (488,338,0): 22, 14, 27, (488,339,0): 21, 13, 26, (488,340,0): 21, 13, 26, (488,341,0): 20, 12, 25, (488,342,0): 20, 12, 25, (488,343,0): 20, 12, 25, (488,344,0): 20, 12, 25, (488,345,0): 21, 13, 26, (488,346,0): 21, 13, 26, (488,347,0): 22, 14, 27, (488,348,0): 23, 15, 28, (488,349,0): 24, 16, 29, (488,350,0): 24, 16, 29, (488,351,0): 27, 16, 30, (488,352,0): 30, 13, 29, (488,353,0): 31, 13, 29, (488,354,0): 29, 12, 28, (488,355,0): 29, 12, 28, (488,356,0): 28, 11, 27, (488,357,0): 26, 12, 27, (488,358,0): 25, 11, 26, (488,359,0): 25, 11, 26, (488,360,0): 25, 13, 27, (488,361,0): 25, 13, 27, (488,362,0): 25, 13, 27, (488,363,0): 24, 13, 27, (488,364,0): 24, 13, 27, (488,365,0): 24, 13, 27, (488,366,0): 24, 13, 27, (488,367,0): 24, 13, 27, (488,368,0): 21, 13, 26, (488,369,0): 21, 13, 26, (488,370,0): 22, 14, 27, (488,371,0): 22, 14, 27, (488,372,0): 25, 15, 26, (488,373,0): 25, 15, 26, (488,374,0): 26, 16, 27, (488,375,0): 26, 16, 27, (488,376,0): 29, 17, 27, (488,377,0): 29, 17, 27, (488,378,0): 30, 17, 26, (488,379,0): 31, 18, 27, (488,380,0): 31, 18, 27, (488,381,0): 32, 19, 28, (488,382,0): 34, 19, 26, (488,383,0): 34, 19, 26, (488,384,0): 31, 18, 27, (488,385,0): 30, 17, 26, (488,386,0): 32, 16, 26, (488,387,0): 32, 16, 26, (488,388,0): 32, 17, 24, (488,389,0): 33, 18, 25, (488,390,0): 36, 19, 25, (488,391,0): 37, 20, 26, (488,392,0): 43, 24, 30, (488,393,0): 40, 21, 27, (488,394,0): 39, 20, 24, (488,395,0): 40, 21, 25, (488,396,0): 45, 25, 27, (488,397,0): 47, 27, 29, (488,398,0): 45, 25, 27, (488,399,0): 41, 22, 24, (488,400,0): 43, 24, 26, (488,401,0): 40, 24, 25, (488,402,0): 39, 23, 24, (488,403,0): 37, 21, 22, (488,404,0): 39, 20, 22, (488,405,0): 39, 20, 22, (488,406,0): 40, 21, 23, (488,407,0): 40, 21, 23, (488,408,0): 45, 25, 27, (488,409,0): 46, 26, 28, (488,410,0): 48, 26, 29, (488,411,0): 49, 27, 30, (488,412,0): 51, 29, 32, (488,413,0): 52, 30, 33, (488,414,0): 55, 30, 34, (488,415,0): 55, 30, 34, (488,416,0): 57, 30, 37, (488,417,0): 58, 31, 38, (488,418,0): 61, 31, 39, (488,419,0): 60, 33, 40, (488,420,0): 60, 33, 40, (488,421,0): 60, 33, 40, (488,422,0): 59, 32, 39, (488,423,0): 58, 31, 38, (488,424,0): 56, 29, 36, (488,425,0): 57, 30, 37, (488,426,0): 57, 30, 37, (488,427,0): 57, 30, 37, (488,428,0): 55, 28, 35, (488,429,0): 52, 27, 33, (488,430,0): 50, 23, 30, (488,431,0): 48, 21, 28, (488,432,0): 49, 22, 27, (488,433,0): 48, 21, 26, (488,434,0): 46, 19, 26, (488,435,0): 44, 19, 25, (488,436,0): 43, 18, 24, (488,437,0): 41, 18, 24, (488,438,0): 41, 18, 26, (488,439,0): 41, 20, 27, (488,440,0): 41, 21, 30, (488,441,0): 41, 21, 30, (488,442,0): 39, 22, 30, (488,443,0): 39, 22, 30, (488,444,0): 38, 22, 32, (488,445,0): 38, 22, 32, (488,446,0): 36, 23, 32, (488,447,0): 36, 23, 32, (488,448,0): 34, 21, 31, (488,449,0): 32, 18, 31, (488,450,0): 33, 17, 30, (488,451,0): 31, 15, 26, (488,452,0): 32, 16, 27, (488,453,0): 34, 18, 29, (488,454,0): 38, 21, 31, (488,455,0): 39, 22, 32, (488,456,0): 42, 22, 33, (488,457,0): 43, 23, 32, (488,458,0): 44, 24, 33, (488,459,0): 45, 25, 34, (488,460,0): 46, 25, 32, (488,461,0): 45, 24, 31, (488,462,0): 44, 23, 30, (488,463,0): 42, 23, 29, (488,464,0): 41, 21, 30, (488,465,0): 37, 20, 30, (488,466,0): 34, 17, 27, (488,467,0): 32, 15, 25, (488,468,0): 34, 14, 23, (488,469,0): 36, 16, 25, (488,470,0): 41, 18, 26, (488,471,0): 43, 20, 28, (488,472,0): 43, 17, 26, (488,473,0): 41, 15, 24, (488,474,0): 43, 13, 21, (488,475,0): 45, 15, 23, (488,476,0): 50, 19, 25, (488,477,0): 52, 21, 27, (488,478,0): 51, 20, 26, (488,479,0): 49, 18, 24, (488,480,0): 47, 15, 20, (488,481,0): 49, 14, 20, (488,482,0): 50, 13, 20, (488,483,0): 51, 14, 21, (488,484,0): 52, 15, 22, (488,485,0): 54, 17, 24, (488,486,0): 58, 17, 25, (488,487,0): 59, 18, 26, (488,488,0): 60, 17, 26, (488,489,0): 58, 15, 24, (488,490,0): 61, 15, 25, (488,491,0): 64, 17, 27, (488,492,0): 59, 12, 22, (488,493,0): 51, 4, 14, (488,494,0): 52, 2, 13, (488,495,0): 57, 7, 18, (488,496,0): 60, 8, 20, (488,497,0): 51, 1, 12, (488,498,0): 47, 0, 10, (488,499,0): 55, 8, 16, (488,500,0): 68, 12, 23, (488,501,0): 77, 14, 25, (488,502,0): 95, 18, 36, (488,503,0): 112, 25, 44, (488,504,0): 121, 23, 48, (488,505,0): 130, 21, 50, (488,506,0): 141, 20, 53, (488,507,0): 143, 22, 57, (488,508,0): 137, 22, 55, (488,509,0): 116, 20, 48, (488,510,0): 88, 16, 36, (488,511,0): 73, 11, 26, (488,512,0): 81, 13, 26, (488,513,0): 92, 18, 31, (488,514,0): 101, 19, 31, (488,515,0): 111, 24, 40, (488,516,0): 118, 29, 47, (488,517,0): 103, 15, 39, (488,518,0): 87, 2, 31, (488,519,0): 91, 6, 39, (488,520,0): 105, 20, 53, (488,521,0): 112, 21, 52, (488,522,0): 119, 19, 45, (488,523,0): 125, 17, 40, (488,524,0): 140, 24, 47, (488,525,0): 156, 34, 59, (488,526,0): 157, 34, 62, (488,527,0): 146, 29, 56, (488,528,0): 125, 21, 46, (488,529,0): 132, 37, 59, (488,530,0): 115, 24, 42, (488,531,0): 103, 12, 29, (488,532,0): 125, 26, 44, (488,533,0): 133, 28, 45, (488,534,0): 131, 18, 38, (488,535,0): 141, 25, 44, (488,536,0): 148, 35, 53, (488,537,0): 139, 23, 42, (488,538,0): 140, 21, 41, (488,539,0): 157, 33, 57, (488,540,0): 166, 40, 64, (488,541,0): 156, 34, 59, (488,542,0): 147, 35, 57, (488,543,0): 157, 39, 61, (488,544,0): 181, 39, 63, (488,545,0): 189, 39, 66, (488,546,0): 189, 42, 70, (488,547,0): 176, 42, 69, (488,548,0): 150, 38, 62, (488,549,0): 126, 34, 55, (488,550,0): 108, 35, 54, (488,551,0): 106, 33, 53, (488,552,0): 141, 48, 75, (488,553,0): 159, 39, 75, (488,554,0): 192, 39, 86, (488,555,0): 221, 48, 101, (488,556,0): 225, 53, 103, (488,557,0): 205, 44, 86, (488,558,0): 171, 38, 69, (488,559,0): 145, 39, 61, (488,560,0): 110, 32, 48, (488,561,0): 93, 33, 45, (488,562,0): 88, 37, 46, (488,563,0): 89, 46, 53, (488,564,0): 88, 49, 54, (488,565,0): 83, 42, 48, (488,566,0): 84, 38, 48, (488,567,0): 89, 39, 50, (488,568,0): 93, 41, 54, (488,569,0): 92, 40, 53, (488,570,0): 88, 40, 52, (488,571,0): 86, 40, 51, (488,572,0): 84, 41, 51, (488,573,0): 84, 41, 51, (488,574,0): 87, 41, 52, (488,575,0): 85, 43, 53, (488,576,0): 75, 43, 54, (488,577,0): 72, 45, 54, (488,578,0): 71, 44, 53, (488,579,0): 69, 43, 52, (488,580,0): 65, 42, 50, (488,581,0): 63, 42, 49, (488,582,0): 62, 41, 48, (488,583,0): 60, 41, 47, (488,584,0): 60, 41, 47, (488,585,0): 59, 40, 46, (488,586,0): 58, 37, 44, (488,587,0): 56, 33, 41, (488,588,0): 57, 31, 40, (488,589,0): 56, 30, 39, (488,590,0): 57, 30, 39, (488,591,0): 56, 30, 39, (488,592,0): 50, 27, 35, (488,593,0): 47, 26, 33, (488,594,0): 44, 23, 30, (488,595,0): 41, 20, 27, (488,596,0): 39, 18, 25, (488,597,0): 38, 17, 24, (488,598,0): 38, 17, 24, (488,599,0): 38, 17, 24, (489,0,0): 44, 70, 71, (489,1,0): 44, 70, 71, (489,2,0): 44, 70, 71, (489,3,0): 44, 70, 71, (489,4,0): 44, 70, 71, (489,5,0): 44, 70, 71, (489,6,0): 44, 70, 71, (489,7,0): 44, 70, 71, (489,8,0): 46, 72, 73, (489,9,0): 46, 72, 73, (489,10,0): 46, 72, 73, (489,11,0): 47, 73, 74, (489,12,0): 47, 73, 74, (489,13,0): 48, 74, 75, (489,14,0): 48, 74, 75, (489,15,0): 48, 74, 75, (489,16,0): 50, 74, 78, (489,17,0): 52, 73, 78, (489,18,0): 52, 73, 78, (489,19,0): 54, 73, 77, (489,20,0): 54, 73, 77, (489,21,0): 56, 74, 76, (489,22,0): 56, 74, 74, (489,23,0): 58, 74, 74, (489,24,0): 56, 70, 70, (489,25,0): 57, 69, 67, (489,26,0): 56, 68, 66, (489,27,0): 56, 67, 63, (489,28,0): 55, 64, 59, (489,29,0): 54, 63, 58, (489,30,0): 53, 63, 55, (489,31,0): 54, 61, 54, (489,32,0): 54, 59, 55, (489,33,0): 57, 59, 56, (489,34,0): 59, 59, 57, (489,35,0): 60, 60, 58, (489,36,0): 61, 62, 57, (489,37,0): 62, 63, 58, (489,38,0): 64, 63, 59, (489,39,0): 64, 63, 59, (489,40,0): 66, 63, 58, (489,41,0): 66, 63, 58, (489,42,0): 66, 63, 56, (489,43,0): 66, 63, 56, (489,44,0): 68, 63, 57, (489,45,0): 68, 63, 57, (489,46,0): 68, 64, 55, (489,47,0): 68, 64, 55, (489,48,0): 69, 62, 54, (489,49,0): 69, 62, 54, (489,50,0): 70, 61, 54, (489,51,0): 69, 60, 53, (489,52,0): 70, 59, 53, (489,53,0): 69, 58, 52, (489,54,0): 71, 58, 50, (489,55,0): 71, 58, 50, (489,56,0): 74, 57, 49, (489,57,0): 75, 58, 50, (489,58,0): 77, 59, 49, (489,59,0): 79, 61, 51, (489,60,0): 80, 60, 51, (489,61,0): 80, 60, 51, (489,62,0): 81, 58, 50, (489,63,0): 81, 58, 50, (489,64,0): 76, 56, 47, (489,65,0): 76, 56, 47, (489,66,0): 75, 55, 46, (489,67,0): 75, 55, 46, (489,68,0): 74, 54, 45, (489,69,0): 74, 54, 45, (489,70,0): 73, 53, 44, (489,71,0): 73, 53, 44, (489,72,0): 73, 53, 44, (489,73,0): 73, 53, 44, (489,74,0): 73, 53, 44, (489,75,0): 72, 52, 43, (489,76,0): 71, 51, 42, (489,77,0): 71, 51, 42, (489,78,0): 70, 50, 41, (489,79,0): 69, 50, 43, (489,80,0): 66, 47, 41, (489,81,0): 65, 48, 41, (489,82,0): 66, 49, 42, (489,83,0): 67, 50, 43, (489,84,0): 67, 50, 43, (489,85,0): 68, 51, 44, (489,86,0): 69, 52, 45, (489,87,0): 69, 52, 45, (489,88,0): 67, 50, 43, (489,89,0): 68, 51, 44, (489,90,0): 68, 51, 44, (489,91,0): 69, 52, 45, (489,92,0): 69, 52, 45, (489,93,0): 70, 53, 46, (489,94,0): 70, 53, 46, (489,95,0): 70, 53, 46, (489,96,0): 74, 53, 48, (489,97,0): 74, 53, 48, (489,98,0): 73, 52, 47, (489,99,0): 71, 50, 45, (489,100,0): 69, 50, 44, (489,101,0): 68, 49, 43, (489,102,0): 67, 48, 42, (489,103,0): 66, 49, 42, (489,104,0): 68, 51, 44, (489,105,0): 68, 51, 44, (489,106,0): 65, 50, 43, (489,107,0): 65, 50, 43, (489,108,0): 64, 49, 42, (489,109,0): 64, 49, 42, (489,110,0): 62, 49, 41, (489,111,0): 62, 49, 41, (489,112,0): 60, 45, 38, (489,113,0): 61, 46, 39, (489,114,0): 61, 46, 39, (489,115,0): 61, 46, 39, (489,116,0): 62, 47, 40, (489,117,0): 63, 48, 41, (489,118,0): 64, 49, 42, (489,119,0): 64, 49, 42, (489,120,0): 64, 49, 42, (489,121,0): 63, 48, 41, (489,122,0): 63, 48, 41, (489,123,0): 62, 47, 40, (489,124,0): 62, 47, 40, (489,125,0): 61, 46, 39, (489,126,0): 61, 46, 39, (489,127,0): 61, 46, 39, (489,128,0): 59, 44, 41, (489,129,0): 59, 44, 41, (489,130,0): 58, 43, 40, (489,131,0): 57, 43, 40, (489,132,0): 56, 42, 39, (489,133,0): 56, 42, 39, (489,134,0): 56, 42, 39, (489,135,0): 53, 42, 38, (489,136,0): 49, 38, 34, (489,137,0): 47, 38, 33, (489,138,0): 47, 38, 33, (489,139,0): 46, 37, 32, (489,140,0): 44, 35, 30, (489,141,0): 42, 35, 29, (489,142,0): 42, 35, 29, (489,143,0): 41, 34, 28, (489,144,0): 44, 34, 32, (489,145,0): 44, 34, 32, (489,146,0): 44, 34, 32, (489,147,0): 44, 34, 32, (489,148,0): 44, 34, 32, (489,149,0): 44, 34, 32, (489,150,0): 44, 34, 32, (489,151,0): 44, 34, 32, (489,152,0): 45, 35, 33, (489,153,0): 45, 35, 33, (489,154,0): 45, 35, 33, (489,155,0): 45, 35, 33, (489,156,0): 45, 35, 33, (489,157,0): 45, 35, 33, (489,158,0): 45, 35, 33, (489,159,0): 44, 36, 33, (489,160,0): 43, 37, 37, (489,161,0): 43, 37, 37, (489,162,0): 43, 37, 37, (489,163,0): 43, 37, 37, (489,164,0): 43, 37, 37, (489,165,0): 43, 37, 37, (489,166,0): 43, 37, 37, (489,167,0): 43, 37, 37, (489,168,0): 45, 39, 39, (489,169,0): 45, 39, 39, (489,170,0): 45, 39, 39, (489,171,0): 45, 39, 39, (489,172,0): 45, 39, 39, (489,173,0): 45, 39, 39, (489,174,0): 45, 39, 39, (489,175,0): 45, 39, 39, (489,176,0): 45, 36, 37, (489,177,0): 47, 37, 38, (489,178,0): 48, 38, 39, (489,179,0): 49, 39, 40, (489,180,0): 49, 39, 40, (489,181,0): 48, 38, 39, (489,182,0): 47, 37, 38, (489,183,0): 46, 36, 37, (489,184,0): 49, 39, 40, (489,185,0): 49, 39, 40, (489,186,0): 49, 39, 40, (489,187,0): 49, 39, 40, (489,188,0): 49, 39, 40, (489,189,0): 49, 39, 40, (489,190,0): 49, 39, 40, (489,191,0): 49, 39, 40, (489,192,0): 52, 41, 45, (489,193,0): 52, 41, 45, (489,194,0): 51, 40, 44, (489,195,0): 50, 39, 43, (489,196,0): 50, 39, 43, (489,197,0): 49, 38, 42, (489,198,0): 49, 38, 42, (489,199,0): 48, 37, 41, (489,200,0): 50, 39, 43, (489,201,0): 50, 39, 43, (489,202,0): 50, 39, 43, (489,203,0): 50, 39, 43, (489,204,0): 50, 39, 43, (489,205,0): 50, 39, 43, (489,206,0): 50, 39, 43, (489,207,0): 49, 40, 45, (489,208,0): 50, 40, 49, (489,209,0): 47, 39, 50, (489,210,0): 46, 38, 49, (489,211,0): 45, 37, 48, (489,212,0): 45, 37, 48, (489,213,0): 46, 38, 49, (489,214,0): 47, 39, 50, (489,215,0): 48, 40, 51, (489,216,0): 49, 41, 52, (489,217,0): 49, 41, 52, (489,218,0): 49, 41, 52, (489,219,0): 49, 41, 52, (489,220,0): 49, 41, 52, (489,221,0): 49, 41, 52, (489,222,0): 49, 41, 52, (489,223,0): 49, 41, 52, (489,224,0): 51, 46, 53, (489,225,0): 51, 46, 52, (489,226,0): 53, 46, 53, (489,227,0): 53, 46, 53, (489,228,0): 56, 46, 54, (489,229,0): 56, 46, 54, (489,230,0): 58, 47, 55, (489,231,0): 58, 47, 55, (489,232,0): 62, 49, 58, (489,233,0): 65, 49, 59, (489,234,0): 67, 50, 60, (489,235,0): 69, 52, 62, (489,236,0): 72, 52, 63, (489,237,0): 74, 54, 65, (489,238,0): 76, 54, 66, (489,239,0): 76, 56, 67, (489,240,0): 74, 56, 68, (489,241,0): 74, 56, 68, (489,242,0): 76, 56, 68, (489,243,0): 77, 55, 67, (489,244,0): 80, 56, 69, (489,245,0): 84, 58, 71, (489,246,0): 88, 60, 74, (489,247,0): 91, 61, 73, (489,248,0): 95, 65, 77, (489,249,0): 96, 66, 76, (489,250,0): 97, 67, 77, (489,251,0): 95, 68, 77, (489,252,0): 95, 68, 77, (489,253,0): 93, 68, 74, (489,254,0): 92, 67, 73, (489,255,0): 91, 66, 72, (489,256,0): 96, 69, 76, (489,257,0): 97, 70, 75, (489,258,0): 99, 74, 80, (489,259,0): 99, 76, 82, (489,260,0): 99, 78, 83, (489,261,0): 97, 78, 82, (489,262,0): 93, 76, 82, (489,263,0): 91, 76, 81, (489,264,0): 90, 75, 82, (489,265,0): 91, 76, 83, (489,266,0): 92, 77, 84, (489,267,0): 92, 77, 84, (489,268,0): 93, 76, 86, (489,269,0): 93, 73, 84, (489,270,0): 92, 70, 82, (489,271,0): 90, 70, 81, (489,272,0): 83, 65, 77, (489,273,0): 82, 66, 77, (489,274,0): 81, 65, 76, (489,275,0): 81, 65, 76, (489,276,0): 80, 64, 75, (489,277,0): 80, 64, 75, (489,278,0): 80, 64, 75, (489,279,0): 79, 63, 74, (489,280,0): 79, 63, 74, (489,281,0): 80, 64, 75, (489,282,0): 80, 64, 75, (489,283,0): 80, 64, 75, (489,284,0): 81, 65, 76, (489,285,0): 81, 65, 76, (489,286,0): 82, 66, 77, (489,287,0): 80, 67, 77, (489,288,0): 78, 66, 80, (489,289,0): 79, 68, 82, (489,290,0): 82, 71, 85, (489,291,0): 85, 73, 87, (489,292,0): 87, 75, 87, (489,293,0): 88, 75, 85, (489,294,0): 90, 74, 85, (489,295,0): 91, 74, 84, (489,296,0): 95, 78, 86, (489,297,0): 98, 79, 85, (489,298,0): 100, 79, 86, (489,299,0): 101, 80, 85, (489,300,0): 103, 81, 84, (489,301,0): 103, 81, 84, (489,302,0): 103, 81, 84, (489,303,0): 106, 79, 84, (489,304,0): 108, 77, 83, (489,305,0): 113, 78, 85, (489,306,0): 116, 81, 87, (489,307,0): 121, 82, 87, (489,308,0): 124, 83, 87, (489,309,0): 127, 83, 84, (489,310,0): 130, 82, 82, (489,311,0): 130, 82, 80, (489,312,0): 121, 72, 68, (489,313,0): 117, 69, 65, (489,314,0): 111, 66, 61, (489,315,0): 108, 64, 61, (489,316,0): 102, 65, 59, (489,317,0): 96, 63, 58, (489,318,0): 88, 57, 52, (489,319,0): 81, 53, 49, (489,320,0): 78, 53, 48, (489,321,0): 72, 51, 46, (489,322,0): 66, 46, 45, (489,323,0): 60, 42, 42, (489,324,0): 51, 35, 38, (489,325,0): 42, 29, 36, (489,326,0): 36, 25, 33, (489,327,0): 33, 23, 32, (489,328,0): 32, 24, 35, (489,329,0): 28, 22, 34, (489,330,0): 24, 18, 28, (489,331,0): 23, 17, 27, (489,332,0): 23, 18, 25, (489,333,0): 24, 19, 25, (489,334,0): 22, 17, 23, (489,335,0): 20, 15, 21, (489,336,0): 23, 15, 26, (489,337,0): 23, 15, 28, (489,338,0): 22, 14, 27, (489,339,0): 22, 14, 27, (489,340,0): 21, 13, 26, (489,341,0): 21, 13, 26, (489,342,0): 20, 12, 25, (489,343,0): 20, 12, 25, (489,344,0): 21, 13, 26, (489,345,0): 21, 13, 26, (489,346,0): 21, 13, 26, (489,347,0): 22, 14, 27, (489,348,0): 23, 15, 28, (489,349,0): 24, 16, 29, (489,350,0): 24, 16, 29, (489,351,0): 26, 15, 29, (489,352,0): 30, 13, 29, (489,353,0): 30, 12, 28, (489,354,0): 29, 12, 28, (489,355,0): 28, 11, 27, (489,356,0): 28, 11, 27, (489,357,0): 27, 10, 26, (489,358,0): 25, 11, 26, (489,359,0): 25, 11, 26, (489,360,0): 25, 13, 27, (489,361,0): 25, 13, 27, (489,362,0): 25, 13, 27, (489,363,0): 25, 13, 27, (489,364,0): 24, 13, 27, (489,365,0): 24, 13, 27, (489,366,0): 24, 13, 27, (489,367,0): 24, 13, 27, (489,368,0): 21, 13, 26, (489,369,0): 21, 13, 26, (489,370,0): 22, 14, 27, (489,371,0): 22, 14, 27, (489,372,0): 25, 15, 26, (489,373,0): 25, 15, 26, (489,374,0): 26, 16, 27, (489,375,0): 26, 16, 27, (489,376,0): 29, 17, 27, (489,377,0): 29, 17, 27, (489,378,0): 30, 17, 26, (489,379,0): 31, 18, 27, (489,380,0): 31, 18, 27, (489,381,0): 32, 19, 28, (489,382,0): 34, 19, 26, (489,383,0): 34, 19, 26, (489,384,0): 31, 18, 27, (489,385,0): 31, 18, 27, (489,386,0): 32, 16, 26, (489,387,0): 32, 16, 26, (489,388,0): 32, 17, 24, (489,389,0): 34, 19, 26, (489,390,0): 36, 19, 25, (489,391,0): 37, 20, 26, (489,392,0): 43, 24, 30, (489,393,0): 41, 22, 28, (489,394,0): 40, 21, 25, (489,395,0): 41, 22, 26, (489,396,0): 45, 25, 27, (489,397,0): 47, 27, 29, (489,398,0): 45, 25, 27, (489,399,0): 42, 23, 25, (489,400,0): 43, 24, 26, (489,401,0): 40, 24, 25, (489,402,0): 39, 23, 24, (489,403,0): 37, 21, 22, (489,404,0): 39, 20, 22, (489,405,0): 39, 20, 22, (489,406,0): 40, 21, 23, (489,407,0): 40, 21, 23, (489,408,0): 44, 24, 26, (489,409,0): 45, 25, 27, (489,410,0): 47, 25, 28, (489,411,0): 49, 27, 30, (489,412,0): 51, 29, 32, (489,413,0): 52, 30, 33, (489,414,0): 56, 31, 35, (489,415,0): 57, 30, 35, (489,416,0): 59, 29, 37, (489,417,0): 60, 30, 38, (489,418,0): 61, 31, 39, (489,419,0): 62, 32, 40, (489,420,0): 62, 32, 40, (489,421,0): 60, 33, 40, (489,422,0): 59, 32, 39, (489,423,0): 58, 31, 38, (489,424,0): 56, 29, 36, (489,425,0): 57, 30, 37, (489,426,0): 57, 30, 37, (489,427,0): 55, 30, 36, (489,428,0): 54, 29, 35, (489,429,0): 51, 26, 32, (489,430,0): 49, 24, 30, (489,431,0): 47, 22, 28, (489,432,0): 48, 23, 27, (489,433,0): 47, 22, 26, (489,434,0): 45, 20, 26, (489,435,0): 42, 19, 25, (489,436,0): 41, 18, 24, (489,437,0): 40, 19, 24, (489,438,0): 40, 19, 26, (489,439,0): 40, 21, 27, (489,440,0): 41, 21, 30, (489,441,0): 41, 21, 30, (489,442,0): 39, 22, 30, (489,443,0): 39, 22, 30, (489,444,0): 38, 22, 32, (489,445,0): 38, 22, 32, (489,446,0): 36, 23, 32, (489,447,0): 36, 23, 33, (489,448,0): 33, 19, 32, (489,449,0): 32, 18, 31, (489,450,0): 32, 16, 29, (489,451,0): 31, 15, 28, (489,452,0): 32, 16, 27, (489,453,0): 34, 18, 29, (489,454,0): 37, 19, 31, (489,455,0): 39, 22, 32, (489,456,0): 43, 23, 34, (489,457,0): 43, 23, 34, (489,458,0): 44, 24, 33, (489,459,0): 45, 25, 34, (489,460,0): 46, 25, 34, (489,461,0): 45, 24, 31, (489,462,0): 44, 23, 30, (489,463,0): 43, 23, 32, (489,464,0): 41, 21, 32, (489,465,0): 37, 20, 30, (489,466,0): 34, 17, 27, (489,467,0): 32, 15, 25, (489,468,0): 34, 14, 23, (489,469,0): 36, 16, 25, (489,470,0): 41, 18, 26, (489,471,0): 43, 20, 28, (489,472,0): 43, 17, 26, (489,473,0): 41, 15, 24, (489,474,0): 42, 12, 20, (489,475,0): 44, 14, 22, (489,476,0): 49, 18, 24, (489,477,0): 50, 19, 25, (489,478,0): 49, 18, 24, (489,479,0): 47, 16, 22, (489,480,0): 45, 14, 19, (489,481,0): 47, 15, 20, (489,482,0): 47, 15, 20, (489,483,0): 48, 16, 21, (489,484,0): 49, 17, 22, (489,485,0): 52, 17, 23, (489,486,0): 54, 17, 24, (489,487,0): 55, 18, 25, (489,488,0): 56, 16, 24, (489,489,0): 54, 14, 22, (489,490,0): 57, 16, 24, (489,491,0): 60, 19, 27, (489,492,0): 57, 14, 23, (489,493,0): 49, 6, 15, (489,494,0): 47, 4, 13, (489,495,0): 51, 8, 17, (489,496,0): 58, 15, 24, (489,497,0): 57, 12, 19, (489,498,0): 62, 12, 21, (489,499,0): 70, 14, 23, (489,500,0): 79, 11, 24, (489,501,0): 87, 6, 23, (489,502,0): 100, 8, 29, (489,503,0): 114, 16, 39, (489,504,0): 121, 19, 43, (489,505,0): 129, 21, 47, (489,506,0): 139, 20, 52, (489,507,0): 137, 19, 51, (489,508,0): 123, 14, 46, (489,509,0): 103, 10, 37, (489,510,0): 80, 12, 33, (489,511,0): 70, 13, 28, (489,512,0): 75, 17, 32, (489,513,0): 86, 22, 38, (489,514,0): 95, 21, 36, (489,515,0): 107, 26, 41, (489,516,0): 118, 31, 50, (489,517,0): 109, 17, 40, (489,518,0): 96, 6, 34, (489,519,0): 104, 11, 42, (489,520,0): 124, 29, 61, (489,521,0): 132, 31, 63, (489,522,0): 136, 28, 54, (489,523,0): 132, 18, 43, (489,524,0): 134, 14, 41, (489,525,0): 141, 18, 46, (489,526,0): 142, 21, 52, (489,527,0): 136, 21, 52, (489,528,0): 116, 14, 38, (489,529,0): 127, 34, 53, (489,530,0): 116, 30, 43, (489,531,0): 112, 24, 36, (489,532,0): 134, 38, 49, (489,533,0): 141, 35, 45, (489,534,0): 136, 20, 31, (489,535,0): 143, 23, 35, (489,536,0): 144, 26, 38, (489,537,0): 136, 18, 30, (489,538,0): 142, 21, 36, (489,539,0): 155, 34, 51, (489,540,0): 160, 37, 58, (489,541,0): 151, 29, 54, (489,542,0): 146, 29, 55, (489,543,0): 157, 35, 60, (489,544,0): 176, 36, 63, (489,545,0): 185, 36, 65, (489,546,0): 183, 38, 67, (489,547,0): 173, 40, 67, (489,548,0): 153, 39, 64, (489,549,0): 131, 38, 57, (489,550,0): 111, 37, 52, (489,551,0): 105, 34, 50, (489,552,0): 123, 41, 63, (489,553,0): 134, 31, 60, (489,554,0): 159, 29, 67, (489,555,0): 192, 41, 86, (489,556,0): 214, 52, 101, (489,557,0): 215, 53, 100, (489,558,0): 200, 49, 90, (489,559,0): 183, 52, 86, (489,560,0): 152, 48, 71, (489,561,0): 125, 41, 57, (489,562,0): 105, 35, 46, (489,563,0): 98, 41, 50, (489,564,0): 94, 47, 53, (489,565,0): 89, 46, 53, (489,566,0): 87, 44, 51, (489,567,0): 87, 44, 53, (489,568,0): 87, 44, 54, (489,569,0): 86, 43, 53, (489,570,0): 82, 42, 51, (489,571,0): 78, 41, 49, (489,572,0): 76, 39, 47, (489,573,0): 76, 39, 47, (489,574,0): 79, 37, 47, (489,575,0): 78, 38, 49, (489,576,0): 74, 42, 53, (489,577,0): 69, 43, 52, (489,578,0): 68, 42, 51, (489,579,0): 65, 42, 50, (489,580,0): 63, 42, 49, (489,581,0): 60, 41, 47, (489,582,0): 59, 40, 46, (489,583,0): 59, 40, 46, (489,584,0): 58, 39, 45, (489,585,0): 57, 38, 44, (489,586,0): 56, 35, 42, (489,587,0): 54, 33, 40, (489,588,0): 54, 31, 39, (489,589,0): 56, 30, 39, (489,590,0): 57, 30, 39, (489,591,0): 56, 30, 39, (489,592,0): 52, 29, 37, (489,593,0): 49, 28, 35, (489,594,0): 45, 24, 31, (489,595,0): 42, 21, 28, (489,596,0): 39, 18, 25, (489,597,0): 38, 17, 24, (489,598,0): 38, 17, 24, (489,599,0): 38, 17, 24, (490,0,0): 42, 70, 73, (490,1,0): 42, 70, 73, (490,2,0): 42, 70, 73, (490,3,0): 42, 70, 73, (490,4,0): 42, 70, 73, (490,5,0): 42, 70, 73, (490,6,0): 42, 70, 73, (490,7,0): 42, 70, 73, (490,8,0): 44, 72, 75, (490,9,0): 44, 72, 75, (490,10,0): 44, 72, 75, (490,11,0): 45, 73, 76, (490,12,0): 45, 73, 76, (490,13,0): 46, 74, 77, (490,14,0): 46, 74, 77, (490,15,0): 48, 73, 77, (490,16,0): 50, 73, 79, (490,17,0): 50, 74, 78, (490,18,0): 50, 74, 78, (490,19,0): 53, 74, 77, (490,20,0): 53, 74, 77, (490,21,0): 55, 75, 76, (490,22,0): 56, 74, 74, (490,23,0): 58, 74, 74, (490,24,0): 57, 73, 72, (490,25,0): 57, 72, 69, (490,26,0): 58, 70, 68, (490,27,0): 56, 68, 64, (490,28,0): 55, 66, 60, (490,29,0): 54, 65, 59, (490,30,0): 52, 63, 57, (490,31,0): 52, 61, 56, (490,32,0): 54, 58, 57, (490,33,0): 56, 58, 57, (490,34,0): 57, 59, 56, (490,35,0): 58, 60, 57, (490,36,0): 60, 62, 59, (490,37,0): 61, 63, 60, (490,38,0): 63, 64, 59, (490,39,0): 63, 64, 59, (490,40,0): 62, 61, 56, (490,41,0): 63, 62, 57, (490,42,0): 65, 62, 57, (490,43,0): 66, 63, 58, (490,44,0): 67, 64, 57, (490,45,0): 68, 65, 58, (490,46,0): 68, 65, 58, (490,47,0): 70, 65, 59, (490,48,0): 69, 62, 54, (490,49,0): 69, 62, 54, (490,50,0): 70, 61, 54, (490,51,0): 69, 60, 53, (490,52,0): 70, 59, 53, (490,53,0): 69, 58, 52, (490,54,0): 71, 58, 50, (490,55,0): 71, 58, 50, (490,56,0): 74, 57, 49, (490,57,0): 75, 58, 50, (490,58,0): 77, 59, 49, (490,59,0): 79, 61, 51, (490,60,0): 80, 60, 51, (490,61,0): 80, 60, 51, (490,62,0): 81, 58, 50, (490,63,0): 81, 58, 50, (490,64,0): 77, 57, 50, (490,65,0): 77, 57, 50, (490,66,0): 76, 56, 49, (490,67,0): 76, 56, 49, (490,68,0): 75, 55, 48, (490,69,0): 75, 55, 48, (490,70,0): 74, 54, 47, (490,71,0): 74, 54, 47, (490,72,0): 74, 54, 47, (490,73,0): 73, 53, 46, (490,74,0): 73, 53, 46, (490,75,0): 73, 53, 46, (490,76,0): 72, 52, 45, (490,77,0): 72, 52, 45, (490,78,0): 71, 51, 44, (490,79,0): 70, 51, 44, (490,80,0): 68, 49, 43, (490,81,0): 67, 49, 45, (490,82,0): 67, 49, 45, (490,83,0): 68, 50, 46, (490,84,0): 68, 50, 46, (490,85,0): 69, 51, 47, (490,86,0): 69, 51, 47, (490,87,0): 69, 51, 47, (490,88,0): 69, 51, 47, (490,89,0): 69, 51, 47, (490,90,0): 69, 51, 47, (490,91,0): 70, 52, 48, (490,92,0): 71, 53, 49, (490,93,0): 71, 53, 49, (490,94,0): 71, 53, 49, (490,95,0): 72, 54, 50, (490,96,0): 75, 54, 51, (490,97,0): 74, 53, 50, (490,98,0): 73, 54, 50, (490,99,0): 72, 53, 49, (490,100,0): 71, 52, 48, (490,101,0): 70, 51, 47, (490,102,0): 68, 50, 46, (490,103,0): 68, 50, 46, (490,104,0): 69, 51, 47, (490,105,0): 67, 52, 47, (490,106,0): 66, 51, 46, (490,107,0): 66, 51, 46, (490,108,0): 64, 51, 45, (490,109,0): 64, 51, 45, (490,110,0): 63, 50, 44, (490,111,0): 63, 50, 44, (490,112,0): 61, 48, 40, (490,113,0): 60, 47, 39, (490,114,0): 59, 46, 38, (490,115,0): 58, 45, 37, (490,116,0): 58, 45, 37, (490,117,0): 60, 47, 39, (490,118,0): 62, 49, 41, (490,119,0): 64, 51, 43, (490,120,0): 62, 49, 41, (490,121,0): 62, 49, 41, (490,122,0): 62, 49, 41, (490,123,0): 61, 48, 40, (490,124,0): 61, 48, 40, (490,125,0): 60, 47, 39, (490,126,0): 60, 47, 39, (490,127,0): 59, 46, 38, (490,128,0): 58, 44, 41, (490,129,0): 57, 43, 40, (490,130,0): 57, 43, 40, (490,131,0): 57, 43, 40, (490,132,0): 56, 42, 39, (490,133,0): 53, 42, 38, (490,134,0): 53, 42, 38, (490,135,0): 53, 42, 38, (490,136,0): 49, 38, 34, (490,137,0): 47, 38, 33, (490,138,0): 47, 38, 33, (490,139,0): 45, 38, 32, (490,140,0): 43, 36, 30, (490,141,0): 42, 35, 29, (490,142,0): 42, 35, 29, (490,143,0): 39, 34, 28, (490,144,0): 43, 35, 32, (490,145,0): 43, 35, 32, (490,146,0): 43, 35, 32, (490,147,0): 43, 35, 32, (490,148,0): 43, 35, 32, (490,149,0): 43, 35, 32, (490,150,0): 43, 35, 32, (490,151,0): 43, 35, 32, (490,152,0): 43, 35, 32, (490,153,0): 43, 35, 32, (490,154,0): 43, 35, 32, (490,155,0): 43, 35, 32, (490,156,0): 43, 35, 32, (490,157,0): 43, 35, 32, (490,158,0): 43, 35, 32, (490,159,0): 43, 35, 32, (490,160,0): 43, 37, 37, (490,161,0): 42, 38, 37, (490,162,0): 42, 38, 37, (490,163,0): 42, 38, 37, (490,164,0): 42, 38, 37, (490,165,0): 42, 38, 37, (490,166,0): 42, 38, 37, (490,167,0): 42, 38, 37, (490,168,0): 43, 39, 38, (490,169,0): 43, 39, 38, (490,170,0): 43, 39, 38, (490,171,0): 43, 39, 38, (490,172,0): 43, 39, 38, (490,173,0): 43, 39, 38, (490,174,0): 43, 39, 38, (490,175,0): 44, 38, 38, (490,176,0): 45, 36, 37, (490,177,0): 46, 37, 38, (490,178,0): 47, 38, 39, (490,179,0): 48, 39, 40, (490,180,0): 48, 39, 40, (490,181,0): 47, 38, 39, (490,182,0): 46, 37, 38, (490,183,0): 45, 36, 37, (490,184,0): 48, 39, 40, (490,185,0): 48, 39, 40, (490,186,0): 48, 39, 40, (490,187,0): 48, 39, 40, (490,188,0): 48, 39, 40, (490,189,0): 48, 39, 40, (490,190,0): 48, 39, 40, (490,191,0): 48, 39, 40, (490,192,0): 52, 41, 45, (490,193,0): 52, 41, 47, (490,194,0): 52, 41, 47, (490,195,0): 51, 40, 46, (490,196,0): 51, 40, 46, (490,197,0): 50, 39, 45, (490,198,0): 50, 39, 45, (490,199,0): 50, 39, 45, (490,200,0): 50, 39, 45, (490,201,0): 50, 39, 45, (490,202,0): 50, 39, 45, (490,203,0): 50, 39, 45, (490,204,0): 50, 39, 45, (490,205,0): 50, 39, 45, (490,206,0): 50, 39, 45, (490,207,0): 49, 39, 47, (490,208,0): 50, 40, 49, (490,209,0): 47, 39, 50, (490,210,0): 46, 38, 49, (490,211,0): 45, 37, 48, (490,212,0): 45, 37, 48, (490,213,0): 46, 38, 49, (490,214,0): 47, 39, 50, (490,215,0): 48, 40, 51, (490,216,0): 49, 41, 52, (490,217,0): 49, 41, 52, (490,218,0): 49, 41, 52, (490,219,0): 49, 41, 52, (490,220,0): 49, 41, 52, (490,221,0): 49, 41, 52, (490,222,0): 49, 41, 52, (490,223,0): 49, 41, 52, (490,224,0): 50, 45, 52, (490,225,0): 50, 45, 52, (490,226,0): 51, 46, 53, (490,227,0): 51, 46, 53, (490,228,0): 53, 46, 54, (490,229,0): 55, 45, 54, (490,230,0): 57, 45, 55, (490,231,0): 57, 45, 55, (490,232,0): 61, 48, 58, (490,233,0): 64, 48, 59, (490,234,0): 66, 48, 60, (490,235,0): 68, 50, 62, (490,236,0): 71, 51, 63, (490,237,0): 73, 53, 65, (490,238,0): 74, 54, 66, (490,239,0): 75, 55, 67, (490,240,0): 72, 54, 68, (490,241,0): 72, 54, 68, (490,242,0): 72, 54, 68, (490,243,0): 75, 55, 67, (490,244,0): 79, 55, 69, (490,245,0): 83, 56, 71, (490,246,0): 86, 58, 73, (490,247,0): 88, 60, 74, (490,248,0): 91, 63, 77, (490,249,0): 92, 64, 76, (490,250,0): 93, 65, 77, (490,251,0): 94, 66, 78, (490,252,0): 94, 66, 78, (490,253,0): 92, 66, 75, (490,254,0): 91, 65, 74, (490,255,0): 91, 66, 72, (490,256,0): 95, 68, 75, (490,257,0): 97, 70, 77, (490,258,0): 98, 73, 79, (490,259,0): 98, 75, 81, (490,260,0): 98, 77, 84, (490,261,0): 96, 77, 83, (490,262,0): 92, 75, 83, (490,263,0): 89, 74, 81, (490,264,0): 89, 74, 81, (490,265,0): 87, 74, 81, (490,266,0): 90, 74, 84, (490,267,0): 90, 74, 84, (490,268,0): 91, 73, 85, (490,269,0): 89, 71, 83, (490,270,0): 90, 70, 82, (490,271,0): 89, 69, 81, (490,272,0): 83, 65, 77, (490,273,0): 81, 65, 76, (490,274,0): 81, 65, 76, (490,275,0): 81, 65, 76, (490,276,0): 80, 64, 75, (490,277,0): 79, 63, 74, (490,278,0): 79, 63, 74, (490,279,0): 79, 63, 74, (490,280,0): 79, 63, 74, (490,281,0): 79, 63, 74, (490,282,0): 79, 63, 74, (490,283,0): 80, 64, 75, (490,284,0): 81, 65, 76, (490,285,0): 81, 65, 76, (490,286,0): 81, 65, 76, (490,287,0): 80, 67, 77, (490,288,0): 77, 65, 79, (490,289,0): 79, 67, 81, (490,290,0): 81, 69, 83, (490,291,0): 84, 70, 85, (490,292,0): 86, 72, 85, (490,293,0): 89, 73, 84, (490,294,0): 89, 73, 84, (490,295,0): 90, 73, 83, (490,296,0): 97, 77, 86, (490,297,0): 99, 78, 85, (490,298,0): 100, 79, 86, (490,299,0): 103, 80, 86, (490,300,0): 105, 80, 84, (490,301,0): 104, 79, 83, (490,302,0): 103, 78, 82, (490,303,0): 105, 76, 81, (490,304,0): 109, 76, 83, (490,305,0): 113, 78, 85, (490,306,0): 115, 80, 86, (490,307,0): 118, 82, 86, (490,308,0): 122, 83, 86, (490,309,0): 124, 84, 84, (490,310,0): 127, 83, 82, (490,311,0): 128, 83, 80, (490,312,0): 124, 76, 72, (490,313,0): 122, 73, 69, (490,314,0): 118, 70, 66, (490,315,0): 113, 68, 63, (490,316,0): 106, 65, 59, (490,317,0): 100, 63, 57, (490,318,0): 92, 57, 51, (490,319,0): 85, 55, 47, (490,320,0): 91, 63, 52, (490,321,0): 87, 63, 53, (490,322,0): 82, 59, 53, (490,323,0): 71, 52, 48, (490,324,0): 62, 44, 44, (490,325,0): 52, 36, 39, (490,326,0): 42, 29, 36, (490,327,0): 35, 24, 32, (490,328,0): 34, 26, 37, (490,329,0): 31, 23, 34, (490,330,0): 27, 19, 30, (490,331,0): 25, 17, 28, (490,332,0): 26, 19, 27, (490,333,0): 26, 19, 26, (490,334,0): 24, 17, 24, (490,335,0): 22, 15, 22, (490,336,0): 24, 16, 27, (490,337,0): 24, 16, 27, (490,338,0): 23, 15, 26, (490,339,0): 23, 15, 26, (490,340,0): 22, 14, 25, (490,341,0): 22, 14, 25, (490,342,0): 21, 13, 24, (490,343,0): 21, 13, 24, (490,344,0): 21, 13, 24, (490,345,0): 21, 13, 24, (490,346,0): 22, 14, 25, (490,347,0): 22, 14, 25, (490,348,0): 23, 15, 26, (490,349,0): 23, 15, 26, (490,350,0): 24, 16, 27, (490,351,0): 26, 16, 27, (490,352,0): 27, 13, 26, (490,353,0): 29, 13, 26, (490,354,0): 29, 13, 26, (490,355,0): 28, 12, 25, (490,356,0): 26, 12, 25, (490,357,0): 25, 11, 24, (490,358,0): 25, 11, 24, (490,359,0): 24, 10, 23, (490,360,0): 25, 13, 25, (490,361,0): 25, 13, 25, (490,362,0): 24, 14, 25, (490,363,0): 24, 14, 25, (490,364,0): 24, 14, 25, (490,365,0): 24, 14, 25, (490,366,0): 22, 14, 25, (490,367,0): 22, 14, 25, (490,368,0): 21, 13, 26, (490,369,0): 21, 13, 26, (490,370,0): 22, 14, 27, (490,371,0): 22, 14, 27, (490,372,0): 25, 15, 26, (490,373,0): 25, 15, 26, (490,374,0): 26, 16, 27, (490,375,0): 26, 16, 27, (490,376,0): 29, 17, 27, (490,377,0): 29, 17, 27, (490,378,0): 30, 17, 26, (490,379,0): 31, 18, 27, (490,380,0): 31, 18, 27, (490,381,0): 32, 19, 28, (490,382,0): 34, 19, 26, (490,383,0): 34, 19, 26, (490,384,0): 32, 19, 28, (490,385,0): 31, 18, 27, (490,386,0): 32, 16, 26, (490,387,0): 32, 16, 26, (490,388,0): 33, 18, 25, (490,389,0): 34, 19, 26, (490,390,0): 36, 19, 25, (490,391,0): 37, 20, 26, (490,392,0): 43, 24, 30, (490,393,0): 42, 23, 29, (490,394,0): 41, 22, 26, (490,395,0): 42, 23, 27, (490,396,0): 45, 25, 27, (490,397,0): 47, 27, 29, (490,398,0): 46, 26, 28, (490,399,0): 43, 24, 26, (490,400,0): 43, 24, 26, (490,401,0): 40, 24, 25, (490,402,0): 39, 23, 24, (490,403,0): 37, 21, 22, (490,404,0): 39, 20, 22, (490,405,0): 39, 20, 22, (490,406,0): 40, 21, 23, (490,407,0): 40, 21, 23, (490,408,0): 42, 22, 24, (490,409,0): 43, 23, 25, (490,410,0): 46, 24, 27, (490,411,0): 48, 26, 29, (490,412,0): 51, 29, 32, (490,413,0): 53, 31, 34, (490,414,0): 57, 32, 36, (490,415,0): 59, 32, 37, (490,416,0): 60, 30, 38, (490,417,0): 62, 31, 39, (490,418,0): 63, 32, 40, (490,419,0): 62, 32, 40, (490,420,0): 62, 32, 40, (490,421,0): 61, 31, 39, (490,422,0): 58, 31, 38, (490,423,0): 58, 31, 38, (490,424,0): 56, 29, 36, (490,425,0): 56, 29, 36, (490,426,0): 55, 30, 36, (490,427,0): 54, 29, 35, (490,428,0): 52, 27, 33, (490,429,0): 48, 25, 31, (490,430,0): 46, 23, 29, (490,431,0): 45, 22, 28, (490,432,0): 45, 22, 28, (490,433,0): 44, 21, 27, (490,434,0): 43, 20, 26, (490,435,0): 40, 19, 24, (490,436,0): 40, 19, 26, (490,437,0): 40, 19, 26, (490,438,0): 41, 20, 29, (490,439,0): 41, 21, 30, (490,440,0): 41, 21, 30, (490,441,0): 39, 22, 30, (490,442,0): 39, 22, 32, (490,443,0): 39, 22, 32, (490,444,0): 38, 22, 33, (490,445,0): 38, 22, 33, (490,446,0): 38, 22, 33, (490,447,0): 38, 22, 33, (490,448,0): 33, 19, 32, (490,449,0): 32, 18, 33, (490,450,0): 32, 16, 29, (490,451,0): 31, 15, 28, (490,452,0): 31, 15, 28, (490,453,0): 33, 17, 28, (490,454,0): 37, 19, 31, (490,455,0): 39, 21, 33, (490,456,0): 43, 23, 34, (490,457,0): 44, 24, 35, (490,458,0): 45, 25, 36, (490,459,0): 45, 25, 34, (490,460,0): 46, 25, 34, (490,461,0): 46, 25, 34, (490,462,0): 45, 24, 33, (490,463,0): 43, 23, 32, (490,464,0): 40, 20, 31, (490,465,0): 37, 20, 30, (490,466,0): 34, 17, 27, (490,467,0): 33, 16, 26, (490,468,0): 35, 15, 24, (490,469,0): 36, 16, 25, (490,470,0): 41, 18, 26, (490,471,0): 42, 19, 27, (490,472,0): 41, 15, 24, (490,473,0): 40, 14, 23, (490,474,0): 42, 12, 20, (490,475,0): 43, 13, 21, (490,476,0): 46, 15, 21, (490,477,0): 47, 16, 22, (490,478,0): 46, 15, 21, (490,479,0): 45, 14, 20, (490,480,0): 44, 13, 19, (490,481,0): 45, 14, 20, (490,482,0): 46, 15, 21, (490,483,0): 47, 16, 22, (490,484,0): 48, 17, 23, (490,485,0): 49, 18, 24, (490,486,0): 50, 17, 24, (490,487,0): 51, 18, 25, (490,488,0): 50, 15, 22, (490,489,0): 49, 14, 21, (490,490,0): 54, 17, 25, (490,491,0): 58, 21, 29, (490,492,0): 54, 17, 25, (490,493,0): 45, 8, 16, (490,494,0): 43, 6, 14, (490,495,0): 47, 10, 17, (490,496,0): 48, 12, 16, (490,497,0): 53, 11, 15, (490,498,0): 66, 10, 19, (490,499,0): 80, 10, 21, (490,500,0): 93, 6, 23, (490,501,0): 104, 5, 26, (490,502,0): 118, 12, 35, (490,503,0): 129, 23, 46, (490,504,0): 118, 16, 40, (490,505,0): 119, 19, 43, (490,506,0): 126, 19, 47, (490,507,0): 119, 15, 42, (490,508,0): 106, 7, 36, (490,509,0): 90, 4, 29, (490,510,0): 76, 9, 27, (490,511,0): 68, 14, 30, (490,512,0): 67, 14, 34, (490,513,0): 75, 18, 37, (490,514,0): 84, 17, 34, (490,515,0): 96, 22, 39, (490,516,0): 109, 28, 45, (490,517,0): 105, 17, 39, (490,518,0): 98, 8, 34, (490,519,0): 108, 15, 44, (490,520,0): 124, 25, 56, (490,521,0): 135, 30, 60, (490,522,0): 141, 31, 58, (490,523,0): 139, 22, 48, (490,524,0): 133, 15, 41, (490,525,0): 130, 13, 42, (490,526,0): 129, 15, 48, (490,527,0): 126, 19, 49, (490,528,0): 110, 8, 32, (490,529,0): 120, 26, 44, (490,530,0): 113, 27, 38, (490,531,0): 114, 29, 36, (490,532,0): 140, 43, 50, (490,533,0): 153, 42, 49, (490,534,0): 156, 29, 40, (490,535,0): 166, 32, 43, (490,536,0): 157, 25, 36, (490,537,0): 148, 21, 32, (490,538,0): 147, 25, 36, (490,539,0): 157, 36, 51, (490,540,0): 162, 36, 58, (490,541,0): 157, 27, 55, (490,542,0): 156, 23, 54, (490,543,0): 163, 28, 60, (490,544,0): 177, 38, 69, (490,545,0): 176, 37, 68, (490,546,0): 173, 38, 68, (490,547,0): 167, 40, 69, (490,548,0): 154, 40, 66, (490,549,0): 135, 37, 60, (490,550,0): 115, 32, 52, (490,551,0): 101, 28, 45, (490,552,0): 108, 37, 55, (490,553,0): 106, 28, 50, (490,554,0): 118, 25, 52, (490,555,0): 147, 35, 71, (490,556,0): 182, 51, 93, (490,557,0): 207, 59, 107, (490,558,0): 222, 61, 113, (490,559,0): 221, 65, 112, (490,560,0): 202, 64, 97, (490,561,0): 167, 49, 71, (490,562,0): 132, 34, 49, (490,563,0): 113, 33, 44, (490,564,0): 101, 40, 47, (490,565,0): 94, 45, 49, (490,566,0): 87, 44, 51, (490,567,0): 82, 45, 52, (490,568,0): 82, 47, 54, (490,569,0): 78, 45, 52, (490,570,0): 74, 45, 50, (490,571,0): 69, 42, 47, (490,572,0): 67, 40, 45, (490,573,0): 67, 38, 43, (490,574,0): 69, 36, 43, (490,575,0): 69, 36, 45, (490,576,0): 71, 41, 51, (490,577,0): 67, 41, 52, (490,578,0): 66, 40, 51, (490,579,0): 62, 39, 49, (490,580,0): 60, 39, 48, (490,581,0): 57, 37, 46, (490,582,0): 56, 36, 45, (490,583,0): 53, 36, 44, (490,584,0): 52, 35, 43, (490,585,0): 51, 34, 42, (490,586,0): 52, 32, 41, (490,587,0): 52, 31, 40, (490,588,0): 53, 30, 40, (490,589,0): 53, 30, 40, (490,590,0): 56, 30, 41, (490,591,0): 57, 31, 42, (490,592,0): 53, 30, 38, (490,593,0): 50, 29, 36, (490,594,0): 47, 26, 33, (490,595,0): 44, 23, 30, (490,596,0): 41, 20, 27, (490,597,0): 39, 18, 25, (490,598,0): 38, 17, 24, (490,599,0): 37, 16, 23, (491,0,0): 42, 70, 73, (491,1,0): 42, 70, 73, (491,2,0): 42, 70, 73, (491,3,0): 42, 70, 73, (491,4,0): 42, 70, 73, (491,5,0): 42, 70, 73, (491,6,0): 42, 70, 73, (491,7,0): 42, 70, 73, (491,8,0): 44, 72, 75, (491,9,0): 44, 72, 75, (491,10,0): 44, 72, 75, (491,11,0): 45, 73, 76, (491,12,0): 45, 73, 76, (491,13,0): 46, 74, 77, (491,14,0): 46, 74, 77, (491,15,0): 46, 74, 77, (491,16,0): 49, 74, 79, (491,17,0): 50, 73, 79, (491,18,0): 50, 74, 78, (491,19,0): 51, 75, 79, (491,20,0): 53, 74, 77, (491,21,0): 54, 75, 78, (491,22,0): 55, 75, 76, (491,23,0): 56, 74, 74, (491,24,0): 60, 76, 75, (491,25,0): 59, 75, 74, (491,26,0): 58, 73, 70, (491,27,0): 58, 70, 68, (491,28,0): 56, 68, 64, (491,29,0): 55, 66, 60, (491,30,0): 54, 65, 59, (491,31,0): 54, 63, 58, (491,32,0): 54, 58, 57, (491,33,0): 57, 59, 58, (491,34,0): 58, 60, 57, (491,35,0): 59, 61, 58, (491,36,0): 60, 62, 59, (491,37,0): 61, 63, 60, (491,38,0): 63, 64, 59, (491,39,0): 63, 64, 59, (491,40,0): 61, 60, 56, (491,41,0): 62, 61, 56, (491,42,0): 65, 62, 57, (491,43,0): 66, 63, 58, (491,44,0): 67, 64, 57, (491,45,0): 68, 65, 58, (491,46,0): 69, 66, 59, (491,47,0): 70, 67, 60, (491,48,0): 69, 62, 54, (491,49,0): 69, 62, 54, (491,50,0): 70, 61, 54, (491,51,0): 69, 60, 53, (491,52,0): 70, 59, 53, (491,53,0): 69, 58, 52, (491,54,0): 71, 58, 50, (491,55,0): 71, 58, 50, (491,56,0): 74, 57, 49, (491,57,0): 75, 58, 50, (491,58,0): 77, 59, 49, (491,59,0): 79, 61, 51, (491,60,0): 80, 60, 51, (491,61,0): 80, 60, 51, (491,62,0): 81, 58, 50, (491,63,0): 81, 58, 50, (491,64,0): 78, 58, 51, (491,65,0): 78, 58, 51, (491,66,0): 77, 57, 50, (491,67,0): 77, 57, 50, (491,68,0): 76, 56, 49, (491,69,0): 76, 56, 49, (491,70,0): 75, 55, 48, (491,71,0): 75, 55, 48, (491,72,0): 74, 54, 47, (491,73,0): 74, 54, 47, (491,74,0): 74, 54, 47, (491,75,0): 74, 54, 47, (491,76,0): 73, 53, 46, (491,77,0): 73, 53, 46, (491,78,0): 73, 53, 46, (491,79,0): 72, 53, 47, (491,80,0): 69, 51, 47, (491,81,0): 69, 51, 47, (491,82,0): 69, 51, 47, (491,83,0): 70, 52, 48, (491,84,0): 70, 52, 48, (491,85,0): 70, 52, 48, (491,86,0): 70, 52, 48, (491,87,0): 70, 52, 48, (491,88,0): 70, 52, 48, (491,89,0): 70, 52, 48, (491,90,0): 71, 53, 49, (491,91,0): 71, 53, 49, (491,92,0): 72, 54, 50, (491,93,0): 72, 54, 50, (491,94,0): 73, 55, 51, (491,95,0): 73, 55, 51, (491,96,0): 74, 55, 51, (491,97,0): 75, 54, 51, (491,98,0): 74, 55, 51, (491,99,0): 73, 54, 50, (491,100,0): 72, 53, 49, (491,101,0): 71, 52, 48, (491,102,0): 70, 52, 48, (491,103,0): 70, 52, 48, (491,104,0): 68, 53, 48, (491,105,0): 68, 53, 48, (491,106,0): 67, 52, 47, (491,107,0): 67, 52, 47, (491,108,0): 65, 52, 46, (491,109,0): 65, 52, 46, (491,110,0): 64, 51, 45, (491,111,0): 64, 51, 45, (491,112,0): 63, 50, 42, (491,113,0): 61, 48, 40, (491,114,0): 58, 45, 37, (491,115,0): 56, 43, 35, (491,116,0): 57, 44, 36, (491,117,0): 59, 46, 38, (491,118,0): 62, 49, 41, (491,119,0): 64, 51, 43, (491,120,0): 62, 49, 41, (491,121,0): 61, 48, 40, (491,122,0): 61, 48, 40, (491,123,0): 61, 48, 40, (491,124,0): 60, 47, 39, (491,125,0): 59, 46, 38, (491,126,0): 59, 46, 38, (491,127,0): 59, 46, 40, (491,128,0): 57, 43, 40, (491,129,0): 57, 43, 40, (491,130,0): 57, 43, 40, (491,131,0): 56, 42, 39, (491,132,0): 54, 43, 39, (491,133,0): 53, 42, 38, (491,134,0): 53, 42, 38, (491,135,0): 51, 42, 37, (491,136,0): 48, 39, 34, (491,137,0): 47, 38, 33, (491,138,0): 46, 39, 33, (491,139,0): 45, 38, 32, (491,140,0): 43, 36, 30, (491,141,0): 42, 35, 29, (491,142,0): 40, 35, 29, (491,143,0): 39, 34, 28, (491,144,0): 43, 35, 32, (491,145,0): 43, 35, 32, (491,146,0): 43, 35, 32, (491,147,0): 43, 35, 32, (491,148,0): 43, 35, 32, (491,149,0): 43, 35, 32, (491,150,0): 43, 35, 32, (491,151,0): 43, 35, 32, (491,152,0): 43, 35, 32, (491,153,0): 43, 35, 32, (491,154,0): 43, 35, 32, (491,155,0): 43, 35, 32, (491,156,0): 43, 35, 32, (491,157,0): 43, 35, 32, (491,158,0): 43, 35, 32, (491,159,0): 41, 36, 33, (491,160,0): 41, 37, 36, (491,161,0): 41, 37, 36, (491,162,0): 41, 37, 36, (491,163,0): 41, 37, 36, (491,164,0): 41, 37, 36, (491,165,0): 41, 37, 36, (491,166,0): 41, 37, 36, (491,167,0): 41, 37, 36, (491,168,0): 43, 39, 38, (491,169,0): 43, 39, 38, (491,170,0): 43, 39, 38, (491,171,0): 43, 39, 38, (491,172,0): 43, 39, 38, (491,173,0): 43, 39, 38, (491,174,0): 43, 39, 38, (491,175,0): 43, 39, 38, (491,176,0): 42, 36, 36, (491,177,0): 45, 36, 37, (491,178,0): 46, 37, 38, (491,179,0): 47, 38, 39, (491,180,0): 47, 38, 39, (491,181,0): 46, 37, 38, (491,182,0): 45, 36, 37, (491,183,0): 44, 35, 36, (491,184,0): 47, 38, 39, (491,185,0): 47, 38, 39, (491,186,0): 47, 38, 39, (491,187,0): 47, 38, 39, (491,188,0): 47, 38, 39, (491,189,0): 47, 38, 39, (491,190,0): 47, 38, 39, (491,191,0): 47, 38, 41, (491,192,0): 52, 41, 47, (491,193,0): 51, 40, 46, (491,194,0): 51, 40, 46, (491,195,0): 51, 40, 46, (491,196,0): 51, 40, 46, (491,197,0): 51, 40, 46, (491,198,0): 51, 40, 46, (491,199,0): 51, 40, 46, (491,200,0): 50, 39, 45, (491,201,0): 50, 39, 45, (491,202,0): 50, 39, 45, (491,203,0): 50, 39, 45, (491,204,0): 50, 39, 45, (491,205,0): 50, 39, 45, (491,206,0): 50, 39, 45, (491,207,0): 49, 39, 47, (491,208,0): 49, 39, 50, (491,209,0): 47, 39, 50, (491,210,0): 46, 38, 49, (491,211,0): 46, 38, 49, (491,212,0): 46, 38, 49, (491,213,0): 46, 38, 49, (491,214,0): 47, 39, 50, (491,215,0): 47, 39, 50, (491,216,0): 48, 40, 51, (491,217,0): 48, 40, 51, (491,218,0): 48, 40, 51, (491,219,0): 48, 40, 51, (491,220,0): 48, 40, 51, (491,221,0): 48, 40, 51, (491,222,0): 48, 40, 51, (491,223,0): 48, 40, 51, (491,224,0): 49, 44, 51, (491,225,0): 49, 44, 51, (491,226,0): 50, 45, 52, (491,227,0): 50, 45, 52, (491,228,0): 52, 45, 53, (491,229,0): 52, 45, 53, (491,230,0): 55, 45, 54, (491,231,0): 56, 44, 54, (491,232,0): 60, 47, 57, (491,233,0): 61, 48, 58, (491,234,0): 64, 48, 59, (491,235,0): 67, 49, 61, (491,236,0): 70, 50, 62, (491,237,0): 72, 52, 64, (491,238,0): 73, 53, 65, (491,239,0): 72, 54, 66, (491,240,0): 70, 54, 67, (491,241,0): 70, 54, 67, (491,242,0): 71, 53, 67, (491,243,0): 72, 54, 68, (491,244,0): 76, 53, 69, (491,245,0): 80, 56, 70, (491,246,0): 84, 57, 72, (491,247,0): 86, 58, 73, (491,248,0): 89, 61, 76, (491,249,0): 90, 62, 76, (491,250,0): 91, 63, 77, (491,251,0): 91, 65, 76, (491,252,0): 92, 66, 77, (491,253,0): 89, 66, 76, (491,254,0): 89, 66, 76, (491,255,0): 88, 65, 73, (491,256,0): 93, 67, 76, (491,257,0): 95, 70, 76, (491,258,0): 95, 72, 78, (491,259,0): 96, 75, 80, (491,260,0): 95, 76, 82, (491,261,0): 92, 75, 81, (491,262,0): 89, 74, 81, (491,263,0): 87, 72, 79, (491,264,0): 85, 72, 79, (491,265,0): 85, 72, 79, (491,266,0): 87, 71, 81, (491,267,0): 87, 71, 81, (491,268,0): 88, 70, 82, (491,269,0): 88, 70, 82, (491,270,0): 89, 69, 81, (491,271,0): 87, 69, 81, (491,272,0): 81, 65, 76, (491,273,0): 81, 65, 76, (491,274,0): 81, 65, 76, (491,275,0): 80, 64, 75, (491,276,0): 80, 64, 75, (491,277,0): 79, 63, 74, (491,278,0): 79, 63, 74, (491,279,0): 78, 62, 73, (491,280,0): 78, 62, 73, (491,281,0): 79, 63, 74, (491,282,0): 79, 63, 74, (491,283,0): 80, 64, 75, (491,284,0): 80, 64, 75, (491,285,0): 81, 65, 76, (491,286,0): 81, 65, 76, (491,287,0): 81, 65, 76, (491,288,0): 78, 64, 79, (491,289,0): 79, 65, 80, (491,290,0): 80, 66, 81, (491,291,0): 82, 68, 83, (491,292,0): 86, 70, 83, (491,293,0): 88, 70, 82, (491,294,0): 89, 71, 83, (491,295,0): 91, 71, 82, (491,296,0): 97, 76, 85, (491,297,0): 100, 77, 85, (491,298,0): 102, 79, 87, (491,299,0): 105, 80, 86, (491,300,0): 105, 80, 84, (491,301,0): 105, 78, 83, (491,302,0): 103, 76, 81, (491,303,0): 104, 75, 80, (491,304,0): 110, 77, 84, (491,305,0): 113, 78, 85, (491,306,0): 114, 79, 85, (491,307,0): 116, 81, 85, (491,308,0): 119, 83, 85, (491,309,0): 122, 84, 83, (491,310,0): 125, 84, 82, (491,311,0): 127, 83, 80, (491,312,0): 128, 80, 76, (491,313,0): 128, 79, 74, (491,314,0): 124, 75, 70, (491,315,0): 121, 72, 67, (491,316,0): 113, 68, 63, (491,317,0): 104, 63, 57, (491,318,0): 98, 59, 52, (491,319,0): 92, 58, 48, (491,320,0): 108, 76, 61, (491,321,0): 106, 79, 62, (491,322,0): 101, 75, 62, (491,323,0): 88, 65, 57, (491,324,0): 75, 54, 49, (491,325,0): 64, 46, 46, (491,326,0): 51, 36, 39, (491,327,0): 39, 26, 33, (491,328,0): 39, 29, 38, (491,329,0): 35, 25, 36, (491,330,0): 29, 21, 32, (491,331,0): 27, 20, 28, (491,332,0): 28, 21, 28, (491,333,0): 28, 21, 28, (491,334,0): 26, 20, 24, (491,335,0): 23, 16, 23, (491,336,0): 25, 18, 26, (491,337,0): 25, 17, 28, (491,338,0): 24, 16, 27, (491,339,0): 24, 16, 27, (491,340,0): 23, 15, 26, (491,341,0): 23, 15, 26, (491,342,0): 22, 14, 25, (491,343,0): 22, 14, 25, (491,344,0): 22, 14, 25, (491,345,0): 22, 14, 25, (491,346,0): 22, 14, 25, (491,347,0): 22, 14, 25, (491,348,0): 23, 15, 26, (491,349,0): 23, 15, 26, (491,350,0): 23, 15, 26, (491,351,0): 25, 15, 26, (491,352,0): 27, 13, 26, (491,353,0): 28, 12, 25, (491,354,0): 28, 12, 25, (491,355,0): 26, 12, 25, (491,356,0): 25, 11, 24, (491,357,0): 24, 10, 23, (491,358,0): 24, 10, 23, (491,359,0): 23, 11, 23, (491,360,0): 24, 12, 24, (491,361,0): 23, 13, 24, (491,362,0): 23, 13, 24, (491,363,0): 23, 13, 24, (491,364,0): 23, 13, 24, (491,365,0): 21, 13, 24, (491,366,0): 21, 13, 24, (491,367,0): 21, 13, 24, (491,368,0): 21, 13, 26, (491,369,0): 21, 13, 26, (491,370,0): 22, 14, 27, (491,371,0): 22, 14, 27, (491,372,0): 25, 15, 26, (491,373,0): 25, 15, 26, (491,374,0): 26, 16, 27, (491,375,0): 26, 16, 27, (491,376,0): 29, 17, 27, (491,377,0): 29, 17, 27, (491,378,0): 30, 17, 26, (491,379,0): 31, 18, 27, (491,380,0): 31, 18, 27, (491,381,0): 32, 19, 28, (491,382,0): 34, 19, 26, (491,383,0): 34, 19, 26, (491,384,0): 32, 19, 28, (491,385,0): 32, 19, 28, (491,386,0): 33, 17, 27, (491,387,0): 33, 17, 27, (491,388,0): 33, 18, 25, (491,389,0): 34, 19, 26, (491,390,0): 37, 20, 26, (491,391,0): 38, 21, 27, (491,392,0): 43, 24, 30, (491,393,0): 42, 23, 29, (491,394,0): 42, 23, 27, (491,395,0): 43, 24, 28, (491,396,0): 45, 25, 27, (491,397,0): 46, 26, 28, (491,398,0): 46, 26, 28, (491,399,0): 45, 26, 28, (491,400,0): 43, 24, 26, (491,401,0): 40, 24, 25, (491,402,0): 39, 23, 24, (491,403,0): 37, 21, 22, (491,404,0): 39, 20, 22, (491,405,0): 39, 20, 22, (491,406,0): 40, 21, 23, (491,407,0): 40, 21, 23, (491,408,0): 40, 20, 22, (491,409,0): 41, 21, 23, (491,410,0): 44, 22, 25, (491,411,0): 47, 25, 28, (491,412,0): 50, 28, 31, (491,413,0): 53, 31, 34, (491,414,0): 57, 32, 36, (491,415,0): 59, 32, 37, (491,416,0): 61, 31, 39, (491,417,0): 62, 31, 39, (491,418,0): 63, 32, 40, (491,419,0): 63, 32, 40, (491,420,0): 62, 32, 40, (491,421,0): 61, 31, 39, (491,422,0): 60, 30, 38, (491,423,0): 57, 30, 37, (491,424,0): 56, 29, 36, (491,425,0): 54, 29, 35, (491,426,0): 54, 29, 35, (491,427,0): 52, 27, 33, (491,428,0): 49, 26, 32, (491,429,0): 47, 24, 30, (491,430,0): 45, 22, 28, (491,431,0): 44, 21, 27, (491,432,0): 44, 21, 27, (491,433,0): 42, 21, 26, (491,434,0): 41, 20, 25, (491,435,0): 40, 19, 24, (491,436,0): 40, 19, 26, (491,437,0): 40, 21, 27, (491,438,0): 41, 21, 30, (491,439,0): 41, 21, 30, (491,440,0): 39, 22, 30, (491,441,0): 39, 22, 30, (491,442,0): 39, 22, 32, (491,443,0): 39, 22, 32, (491,444,0): 38, 22, 33, (491,445,0): 38, 22, 33, (491,446,0): 38, 22, 33, (491,447,0): 38, 22, 35, (491,448,0): 33, 19, 34, (491,449,0): 31, 17, 32, (491,450,0): 31, 15, 28, (491,451,0): 30, 14, 27, (491,452,0): 31, 15, 28, (491,453,0): 33, 17, 30, (491,454,0): 37, 19, 31, (491,455,0): 38, 20, 32, (491,456,0): 43, 23, 35, (491,457,0): 43, 23, 34, (491,458,0): 44, 24, 35, (491,459,0): 45, 25, 36, (491,460,0): 46, 25, 34, (491,461,0): 45, 24, 33, (491,462,0): 44, 23, 32, (491,463,0): 43, 23, 32, (491,464,0): 39, 19, 30, (491,465,0): 36, 19, 29, (491,466,0): 35, 18, 28, (491,467,0): 34, 17, 27, (491,468,0): 36, 16, 25, (491,469,0): 37, 17, 26, (491,470,0): 40, 17, 25, (491,471,0): 41, 18, 26, (491,472,0): 40, 14, 23, (491,473,0): 40, 14, 23, (491,474,0): 42, 12, 20, (491,475,0): 42, 12, 20, (491,476,0): 43, 12, 18, (491,477,0): 43, 12, 18, (491,478,0): 43, 12, 18, (491,479,0): 42, 11, 17, (491,480,0): 41, 12, 17, (491,481,0): 42, 13, 18, (491,482,0): 44, 15, 20, (491,483,0): 45, 16, 21, (491,484,0): 47, 18, 23, (491,485,0): 47, 18, 23, (491,486,0): 48, 17, 23, (491,487,0): 48, 17, 23, (491,488,0): 46, 13, 20, (491,489,0): 45, 12, 19, (491,490,0): 50, 17, 24, (491,491,0): 56, 21, 28, (491,492,0): 53, 18, 25, (491,493,0): 45, 10, 17, (491,494,0): 43, 8, 15, (491,495,0): 47, 12, 18, (491,496,0): 50, 11, 14, (491,497,0): 55, 6, 10, (491,498,0): 66, 3, 12, (491,499,0): 86, 3, 19, (491,500,0): 109, 7, 29, (491,501,0): 124, 12, 37, (491,502,0): 131, 19, 44, (491,503,0): 131, 25, 48, (491,504,0): 110, 17, 38, (491,505,0): 105, 18, 37, (491,506,0): 103, 14, 36, (491,507,0): 99, 9, 34, (491,508,0): 95, 7, 31, (491,509,0): 87, 8, 30, (491,510,0): 75, 12, 29, (491,511,0): 68, 15, 31, (491,512,0): 57, 8, 29, (491,513,0): 63, 11, 33, (491,514,0): 70, 9, 27, (491,515,0): 80, 13, 30, (491,516,0): 95, 21, 38, (491,517,0): 92, 13, 32, (491,518,0): 90, 7, 33, (491,519,0): 102, 16, 43, (491,520,0): 103, 13, 41, (491,521,0): 115, 16, 44, (491,522,0): 127, 23, 48, (491,523,0): 133, 25, 48, (491,524,0): 134, 24, 49, (491,525,0): 132, 24, 50, (491,526,0): 126, 21, 52, (491,527,0): 121, 20, 50, (491,528,0): 111, 11, 35, (491,529,0): 114, 21, 39, (491,530,0): 103, 19, 32, (491,531,0): 105, 22, 30, (491,532,0): 135, 38, 47, (491,533,0): 155, 44, 53, (491,534,0): 173, 41, 55, (491,535,0): 189, 48, 64, (491,536,0): 173, 37, 51, (491,537,0): 159, 28, 42, (491,538,0): 150, 28, 41, (491,539,0): 157, 36, 53, (491,540,0): 168, 40, 63, (491,541,0): 169, 34, 64, (491,542,0): 170, 26, 61, (491,543,0): 168, 27, 62, (491,544,0): 174, 39, 72, (491,545,0): 166, 39, 69, (491,546,0): 160, 37, 66, (491,547,0): 155, 38, 65, (491,548,0): 148, 40, 66, (491,549,0): 134, 36, 61, (491,550,0): 113, 28, 49, (491,551,0): 96, 21, 41, (491,552,0): 102, 38, 55, (491,553,0): 96, 35, 51, (491,554,0): 97, 32, 52, (491,555,0): 114, 34, 59, (491,556,0): 146, 40, 76, (491,557,0): 181, 51, 95, (491,558,0): 216, 62, 116, (491,559,0): 237, 71, 121, (491,560,0): 231, 71, 107, (491,561,0): 205, 58, 84, (491,562,0): 165, 42, 60, (491,563,0): 133, 32, 46, (491,564,0): 108, 33, 40, (491,565,0): 92, 35, 41, (491,566,0): 84, 37, 43, (491,567,0): 80, 41, 46, (491,568,0): 78, 46, 51, (491,569,0): 75, 46, 51, (491,570,0): 70, 45, 49, (491,571,0): 65, 43, 46, (491,572,0): 64, 42, 45, (491,573,0): 65, 40, 44, (491,574,0): 68, 39, 44, (491,575,0): 69, 38, 46, (491,576,0): 67, 40, 49, (491,577,0): 65, 39, 50, (491,578,0): 62, 39, 49, (491,579,0): 59, 38, 47, (491,580,0): 57, 36, 45, (491,581,0): 54, 34, 43, (491,582,0): 50, 33, 41, (491,583,0): 50, 33, 41, (491,584,0): 47, 30, 38, (491,585,0): 47, 30, 38, (491,586,0): 48, 28, 37, (491,587,0): 48, 28, 37, (491,588,0): 50, 27, 37, (491,589,0): 52, 29, 39, (491,590,0): 55, 29, 40, (491,591,0): 54, 31, 41, (491,592,0): 54, 31, 39, (491,593,0): 51, 30, 37, (491,594,0): 49, 28, 35, (491,595,0): 45, 24, 31, (491,596,0): 42, 21, 28, (491,597,0): 40, 19, 26, (491,598,0): 38, 17, 24, (491,599,0): 37, 16, 23, (492,0,0): 41, 70, 74, (492,1,0): 41, 70, 74, (492,2,0): 41, 70, 74, (492,3,0): 41, 70, 74, (492,4,0): 41, 70, 74, (492,5,0): 41, 70, 74, (492,6,0): 41, 70, 74, (492,7,0): 41, 70, 74, (492,8,0): 43, 72, 76, (492,9,0): 43, 72, 76, (492,10,0): 43, 72, 76, (492,11,0): 44, 73, 77, (492,12,0): 44, 73, 77, (492,13,0): 45, 74, 78, (492,14,0): 45, 74, 78, (492,15,0): 46, 74, 78, (492,16,0): 47, 75, 79, (492,17,0): 49, 74, 79, (492,18,0): 49, 74, 78, (492,19,0): 50, 75, 79, (492,20,0): 51, 75, 77, (492,21,0): 54, 75, 78, (492,22,0): 55, 75, 76, (492,23,0): 55, 75, 74, (492,24,0): 59, 78, 76, (492,25,0): 60, 76, 75, (492,26,0): 59, 75, 72, (492,27,0): 58, 73, 70, (492,28,0): 59, 71, 67, (492,29,0): 57, 69, 65, (492,30,0): 56, 69, 62, (492,31,0): 56, 67, 61, (492,32,0): 56, 62, 60, (492,33,0): 57, 61, 60, (492,34,0): 58, 62, 61, (492,35,0): 58, 62, 61, (492,36,0): 60, 62, 59, (492,37,0): 61, 63, 60, (492,38,0): 62, 62, 60, (492,39,0): 62, 63, 58, (492,40,0): 60, 61, 56, (492,41,0): 61, 62, 57, (492,42,0): 63, 62, 57, (492,43,0): 64, 63, 58, (492,44,0): 67, 64, 59, (492,45,0): 68, 65, 60, (492,46,0): 69, 66, 59, (492,47,0): 70, 67, 60, (492,48,0): 69, 62, 54, (492,49,0): 69, 62, 54, (492,50,0): 70, 61, 54, (492,51,0): 69, 60, 53, (492,52,0): 70, 59, 53, (492,53,0): 69, 58, 52, (492,54,0): 71, 58, 50, (492,55,0): 71, 58, 50, (492,56,0): 74, 57, 49, (492,57,0): 75, 58, 50, (492,58,0): 77, 59, 49, (492,59,0): 79, 61, 51, (492,60,0): 80, 60, 51, (492,61,0): 80, 60, 51, (492,62,0): 81, 58, 50, (492,63,0): 81, 58, 50, (492,64,0): 79, 59, 52, (492,65,0): 79, 58, 53, (492,66,0): 78, 57, 52, (492,67,0): 78, 57, 52, (492,68,0): 77, 56, 51, (492,69,0): 77, 56, 51, (492,70,0): 76, 55, 50, (492,71,0): 76, 55, 50, (492,72,0): 74, 53, 48, (492,73,0): 74, 53, 48, (492,74,0): 74, 53, 48, (492,75,0): 74, 53, 48, (492,76,0): 75, 54, 49, (492,77,0): 75, 54, 49, (492,78,0): 75, 54, 49, (492,79,0): 74, 55, 49, (492,80,0): 72, 54, 50, (492,81,0): 70, 55, 50, (492,82,0): 70, 55, 50, (492,83,0): 69, 54, 49, (492,84,0): 69, 54, 49, (492,85,0): 69, 54, 49, (492,86,0): 69, 54, 49, (492,87,0): 69, 54, 49, (492,88,0): 69, 54, 49, (492,89,0): 69, 54, 49, (492,90,0): 69, 54, 49, (492,91,0): 70, 55, 50, (492,92,0): 70, 55, 50, (492,93,0): 71, 56, 51, (492,94,0): 71, 56, 51, (492,95,0): 73, 55, 51, (492,96,0): 74, 55, 51, (492,97,0): 74, 55, 51, (492,98,0): 74, 55, 51, (492,99,0): 73, 54, 50, (492,100,0): 72, 54, 50, (492,101,0): 72, 54, 50, (492,102,0): 71, 53, 49, (492,103,0): 71, 53, 49, (492,104,0): 69, 54, 49, (492,105,0): 69, 54, 49, (492,106,0): 67, 54, 48, (492,107,0): 67, 54, 48, (492,108,0): 66, 53, 47, (492,109,0): 66, 53, 47, (492,110,0): 63, 52, 46, (492,111,0): 63, 52, 46, (492,112,0): 64, 51, 43, (492,113,0): 62, 49, 41, (492,114,0): 59, 46, 38, (492,115,0): 57, 44, 36, (492,116,0): 57, 44, 36, (492,117,0): 59, 46, 38, (492,118,0): 62, 49, 41, (492,119,0): 63, 50, 42, (492,120,0): 61, 48, 40, (492,121,0): 61, 48, 40, (492,122,0): 61, 48, 40, (492,123,0): 60, 47, 39, (492,124,0): 59, 46, 38, (492,125,0): 59, 46, 38, (492,126,0): 59, 46, 38, (492,127,0): 58, 45, 39, (492,128,0): 57, 43, 40, (492,129,0): 56, 42, 41, (492,130,0): 54, 43, 41, (492,131,0): 53, 42, 40, (492,132,0): 53, 42, 40, (492,133,0): 52, 41, 39, (492,134,0): 51, 41, 39, (492,135,0): 51, 41, 39, (492,136,0): 48, 38, 36, (492,137,0): 46, 38, 35, (492,138,0): 46, 38, 35, (492,139,0): 45, 37, 34, (492,140,0): 41, 36, 32, (492,141,0): 40, 35, 31, (492,142,0): 40, 35, 31, (492,143,0): 39, 34, 30, (492,144,0): 41, 36, 32, (492,145,0): 41, 36, 32, (492,146,0): 41, 36, 32, (492,147,0): 41, 36, 32, (492,148,0): 41, 36, 32, (492,149,0): 41, 36, 32, (492,150,0): 41, 36, 32, (492,151,0): 41, 36, 32, (492,152,0): 40, 35, 31, (492,153,0): 40, 35, 31, (492,154,0): 40, 35, 31, (492,155,0): 40, 35, 31, (492,156,0): 40, 35, 31, (492,157,0): 40, 35, 31, (492,158,0): 40, 35, 31, (492,159,0): 40, 35, 32, (492,160,0): 41, 37, 36, (492,161,0): 41, 37, 38, (492,162,0): 41, 37, 38, (492,163,0): 41, 37, 38, (492,164,0): 41, 37, 38, (492,165,0): 41, 37, 38, (492,166,0): 41, 37, 38, (492,167,0): 41, 37, 38, (492,168,0): 42, 38, 39, (492,169,0): 42, 38, 39, (492,170,0): 42, 38, 39, (492,171,0): 42, 38, 39, (492,172,0): 42, 38, 39, (492,173,0): 42, 38, 39, (492,174,0): 42, 38, 39, (492,175,0): 42, 38, 39, (492,176,0): 42, 36, 38, (492,177,0): 43, 37, 39, (492,178,0): 44, 38, 40, (492,179,0): 45, 39, 41, (492,180,0): 45, 39, 41, (492,181,0): 44, 38, 40, (492,182,0): 43, 37, 39, (492,183,0): 42, 36, 38, (492,184,0): 45, 39, 41, (492,185,0): 45, 39, 41, (492,186,0): 45, 39, 41, (492,187,0): 45, 39, 41, (492,188,0): 45, 39, 41, (492,189,0): 45, 39, 41, (492,190,0): 45, 39, 41, (492,191,0): 47, 38, 41, (492,192,0): 50, 39, 45, (492,193,0): 50, 39, 47, (492,194,0): 50, 39, 47, (492,195,0): 50, 39, 47, (492,196,0): 51, 40, 48, (492,197,0): 51, 40, 48, (492,198,0): 51, 40, 48, (492,199,0): 51, 40, 48, (492,200,0): 50, 39, 47, (492,201,0): 50, 39, 47, (492,202,0): 50, 39, 47, (492,203,0): 50, 39, 47, (492,204,0): 50, 39, 47, (492,205,0): 50, 39, 47, (492,206,0): 50, 39, 47, (492,207,0): 49, 39, 47, (492,208,0): 48, 38, 49, (492,209,0): 46, 38, 51, (492,210,0): 47, 39, 52, (492,211,0): 47, 39, 52, (492,212,0): 47, 39, 52, (492,213,0): 47, 39, 52, (492,214,0): 46, 38, 51, (492,215,0): 46, 38, 51, (492,216,0): 48, 40, 53, (492,217,0): 48, 40, 53, (492,218,0): 48, 40, 53, (492,219,0): 48, 40, 53, (492,220,0): 48, 40, 53, (492,221,0): 48, 40, 53, (492,222,0): 48, 40, 53, (492,223,0): 48, 40, 51, (492,224,0): 48, 43, 50, (492,225,0): 46, 43, 50, (492,226,0): 49, 44, 51, (492,227,0): 49, 44, 51, (492,228,0): 51, 44, 52, (492,229,0): 51, 44, 52, (492,230,0): 54, 44, 53, (492,231,0): 55, 43, 53, (492,232,0): 59, 46, 56, (492,233,0): 60, 47, 57, (492,234,0): 63, 47, 58, (492,235,0): 65, 49, 60, (492,236,0): 67, 49, 61, (492,237,0): 69, 51, 63, (492,238,0): 72, 52, 64, (492,239,0): 71, 53, 65, (492,240,0): 68, 52, 65, (492,241,0): 66, 52, 67, (492,242,0): 68, 51, 67, (492,243,0): 70, 52, 66, (492,244,0): 75, 52, 68, (492,245,0): 78, 54, 70, (492,246,0): 82, 55, 72, (492,247,0): 84, 57, 72, (492,248,0): 86, 59, 74, (492,249,0): 87, 61, 74, (492,250,0): 88, 62, 75, (492,251,0): 90, 64, 77, (492,252,0): 90, 64, 77, (492,253,0): 88, 65, 75, (492,254,0): 88, 65, 75, (492,255,0): 87, 64, 72, (492,256,0): 93, 67, 76, (492,257,0): 94, 68, 77, (492,258,0): 94, 71, 79, (492,259,0): 94, 73, 80, (492,260,0): 93, 73, 82, (492,261,0): 90, 73, 81, (492,262,0): 86, 71, 78, (492,263,0): 83, 70, 77, (492,264,0): 82, 69, 78, (492,265,0): 82, 69, 78, (492,266,0): 82, 69, 79, (492,267,0): 82, 69, 79, (492,268,0): 84, 68, 79, (492,269,0): 84, 68, 79, (492,270,0): 86, 68, 82, (492,271,0): 86, 68, 82, (492,272,0): 81, 65, 76, (492,273,0): 80, 64, 75, (492,274,0): 80, 64, 75, (492,275,0): 79, 63, 74, (492,276,0): 79, 63, 74, (492,277,0): 78, 62, 73, (492,278,0): 78, 62, 73, (492,279,0): 78, 62, 73, (492,280,0): 78, 62, 73, (492,281,0): 78, 62, 73, (492,282,0): 78, 62, 73, (492,283,0): 79, 63, 74, (492,284,0): 79, 63, 74, (492,285,0): 80, 64, 75, (492,286,0): 80, 64, 75, (492,287,0): 81, 65, 76, (492,288,0): 80, 63, 79, (492,289,0): 81, 64, 80, (492,290,0): 81, 64, 80, (492,291,0): 83, 66, 82, (492,292,0): 85, 67, 81, (492,293,0): 87, 69, 81, (492,294,0): 91, 71, 83, (492,295,0): 92, 70, 82, (492,296,0): 96, 75, 84, (492,297,0): 99, 76, 84, (492,298,0): 104, 78, 87, (492,299,0): 107, 80, 87, (492,300,0): 108, 81, 86, (492,301,0): 108, 79, 84, (492,302,0): 106, 77, 82, (492,303,0): 106, 75, 81, (492,304,0): 112, 76, 86, (492,305,0): 113, 76, 84, (492,306,0): 113, 78, 84, (492,307,0): 114, 79, 83, (492,308,0): 116, 82, 83, (492,309,0): 119, 84, 82, (492,310,0): 123, 83, 81, (492,311,0): 125, 84, 80, (492,312,0): 129, 84, 79, (492,313,0): 132, 83, 78, (492,314,0): 131, 80, 76, (492,315,0): 127, 77, 70, (492,316,0): 121, 72, 67, (492,317,0): 113, 68, 62, (492,318,0): 108, 65, 58, (492,319,0): 103, 65, 54, (492,320,0): 123, 91, 70, (492,321,0): 126, 95, 74, (492,322,0): 121, 92, 74, (492,323,0): 106, 80, 67, (492,324,0): 91, 68, 60, (492,325,0): 78, 59, 55, (492,326,0): 61, 45, 46, (492,327,0): 47, 32, 37, (492,328,0): 44, 31, 40, (492,329,0): 39, 27, 37, (492,330,0): 34, 24, 33, (492,331,0): 32, 22, 31, (492,332,0): 32, 22, 30, (492,333,0): 31, 21, 29, (492,334,0): 29, 20, 25, (492,335,0): 27, 17, 25, (492,336,0): 26, 19, 27, (492,337,0): 26, 19, 27, (492,338,0): 25, 18, 26, (492,339,0): 25, 18, 26, (492,340,0): 24, 17, 25, (492,341,0): 24, 17, 25, (492,342,0): 23, 16, 24, (492,343,0): 23, 16, 24, (492,344,0): 23, 16, 24, (492,345,0): 23, 16, 24, (492,346,0): 23, 16, 24, (492,347,0): 23, 16, 24, (492,348,0): 22, 15, 23, (492,349,0): 22, 15, 23, (492,350,0): 22, 15, 23, (492,351,0): 24, 14, 23, (492,352,0): 25, 13, 23, (492,353,0): 26, 13, 23, (492,354,0): 26, 13, 23, (492,355,0): 25, 12, 22, (492,356,0): 24, 11, 21, (492,357,0): 23, 11, 21, (492,358,0): 23, 11, 21, (492,359,0): 21, 11, 20, (492,360,0): 23, 13, 22, (492,361,0): 23, 13, 22, (492,362,0): 23, 13, 22, (492,363,0): 21, 14, 22, (492,364,0): 21, 14, 22, (492,365,0): 20, 15, 22, (492,366,0): 20, 15, 22, (492,367,0): 20, 14, 24, (492,368,0): 21, 13, 26, (492,369,0): 21, 13, 26, (492,370,0): 22, 14, 27, (492,371,0): 22, 14, 27, (492,372,0): 25, 15, 26, (492,373,0): 25, 15, 26, (492,374,0): 26, 16, 27, (492,375,0): 26, 16, 27, (492,376,0): 29, 17, 27, (492,377,0): 29, 17, 27, (492,378,0): 30, 17, 26, (492,379,0): 31, 18, 27, (492,380,0): 31, 18, 27, (492,381,0): 32, 19, 28, (492,382,0): 34, 19, 26, (492,383,0): 34, 19, 26, (492,384,0): 33, 20, 29, (492,385,0): 32, 19, 28, (492,386,0): 33, 17, 27, (492,387,0): 33, 17, 27, (492,388,0): 34, 19, 26, (492,389,0): 35, 20, 27, (492,390,0): 37, 20, 26, (492,391,0): 38, 21, 27, (492,392,0): 41, 22, 28, (492,393,0): 42, 23, 29, (492,394,0): 43, 24, 28, (492,395,0): 43, 24, 28, (492,396,0): 44, 24, 26, (492,397,0): 44, 24, 26, (492,398,0): 45, 25, 27, (492,399,0): 45, 26, 28, (492,400,0): 43, 24, 26, (492,401,0): 40, 24, 25, (492,402,0): 39, 23, 24, (492,403,0): 37, 21, 22, (492,404,0): 39, 20, 22, (492,405,0): 39, 20, 22, (492,406,0): 40, 21, 23, (492,407,0): 40, 21, 23, (492,408,0): 40, 20, 22, (492,409,0): 41, 21, 23, (492,410,0): 44, 22, 25, (492,411,0): 47, 25, 28, (492,412,0): 50, 28, 31, (492,413,0): 53, 31, 34, (492,414,0): 57, 32, 36, (492,415,0): 59, 32, 37, (492,416,0): 63, 32, 40, (492,417,0): 64, 31, 42, (492,418,0): 64, 32, 43, (492,419,0): 64, 32, 43, (492,420,0): 63, 31, 42, (492,421,0): 61, 31, 41, (492,422,0): 59, 29, 39, (492,423,0): 56, 29, 38, (492,424,0): 56, 29, 38, (492,425,0): 54, 28, 37, (492,426,0): 52, 26, 35, (492,427,0): 48, 25, 33, (492,428,0): 47, 24, 32, (492,429,0): 45, 22, 30, (492,430,0): 44, 23, 30, (492,431,0): 43, 22, 29, (492,432,0): 42, 21, 28, (492,433,0): 41, 22, 28, (492,434,0): 40, 21, 27, (492,435,0): 39, 20, 26, (492,436,0): 39, 19, 28, (492,437,0): 40, 20, 29, (492,438,0): 41, 21, 30, (492,439,0): 40, 23, 31, (492,440,0): 39, 22, 32, (492,441,0): 39, 22, 32, (492,442,0): 39, 21, 33, (492,443,0): 39, 21, 33, (492,444,0): 38, 22, 33, (492,445,0): 38, 22, 33, (492,446,0): 38, 22, 35, (492,447,0): 38, 22, 35, (492,448,0): 32, 18, 33, (492,449,0): 31, 17, 32, (492,450,0): 31, 14, 30, (492,451,0): 30, 13, 29, (492,452,0): 30, 14, 27, (492,453,0): 32, 16, 29, (492,454,0): 36, 18, 32, (492,455,0): 38, 20, 32, (492,456,0): 41, 21, 33, (492,457,0): 42, 22, 34, (492,458,0): 43, 23, 34, (492,459,0): 44, 24, 35, (492,460,0): 45, 23, 35, (492,461,0): 44, 22, 34, (492,462,0): 43, 22, 31, (492,463,0): 41, 21, 30, (492,464,0): 38, 18, 29, (492,465,0): 36, 19, 29, (492,466,0): 35, 18, 28, (492,467,0): 35, 18, 28, (492,468,0): 37, 17, 26, (492,469,0): 37, 17, 26, (492,470,0): 40, 17, 25, (492,471,0): 40, 17, 25, (492,472,0): 40, 14, 23, (492,473,0): 40, 14, 23, (492,474,0): 43, 13, 21, (492,475,0): 42, 12, 20, (492,476,0): 41, 10, 16, (492,477,0): 40, 9, 15, (492,478,0): 40, 9, 15, (492,479,0): 40, 9, 15, (492,480,0): 39, 10, 15, (492,481,0): 41, 12, 17, (492,482,0): 43, 14, 19, (492,483,0): 45, 16, 21, (492,484,0): 46, 17, 22, (492,485,0): 46, 17, 22, (492,486,0): 47, 16, 22, (492,487,0): 46, 15, 21, (492,488,0): 43, 12, 18, (492,489,0): 43, 12, 18, (492,490,0): 47, 16, 22, (492,491,0): 53, 20, 27, (492,492,0): 50, 17, 24, (492,493,0): 43, 10, 17, (492,494,0): 42, 9, 16, (492,495,0): 50, 13, 20, (492,496,0): 65, 19, 22, (492,497,0): 72, 13, 19, (492,498,0): 86, 8, 21, (492,499,0): 108, 14, 32, (492,500,0): 134, 22, 47, (492,501,0): 142, 25, 52, (492,502,0): 129, 19, 46, (492,503,0): 109, 11, 34, (492,504,0): 98, 19, 38, (492,505,0): 86, 15, 31, (492,506,0): 81, 8, 27, (492,507,0): 82, 7, 27, (492,508,0): 90, 13, 33, (492,509,0): 90, 19, 37, (492,510,0): 78, 20, 34, (492,511,0): 68, 17, 32, (492,512,0): 56, 9, 29, (492,513,0): 60, 11, 32, (492,514,0): 65, 8, 25, (492,515,0): 74, 13, 28, (492,516,0): 85, 21, 37, (492,517,0): 83, 16, 33, (492,518,0): 80, 12, 35, (492,519,0): 92, 22, 46, (492,520,0): 96, 22, 47, (492,521,0): 95, 16, 38, (492,522,0): 101, 12, 32, (492,523,0): 112, 19, 38, (492,524,0): 124, 27, 47, (492,525,0): 127, 29, 52, (492,526,0): 121, 25, 52, (492,527,0): 115, 21, 47, (492,528,0): 116, 21, 45, (492,529,0): 111, 22, 40, (492,530,0): 100, 20, 33, (492,531,0): 102, 22, 33, (492,532,0): 125, 33, 48, (492,533,0): 146, 37, 56, (492,534,0): 167, 37, 61, (492,535,0): 184, 46, 71, (492,536,0): 170, 36, 60, (492,537,0): 153, 24, 46, (492,538,0): 141, 18, 38, (492,539,0): 150, 27, 48, (492,540,0): 167, 37, 63, (492,541,0): 178, 39, 68, (492,542,0): 180, 32, 66, (492,543,0): 172, 28, 63, (492,544,0): 158, 33, 65, (492,545,0): 145, 32, 60, (492,546,0): 138, 31, 57, (492,547,0): 135, 35, 61, (492,548,0): 134, 39, 63, (492,549,0): 130, 38, 63, (492,550,0): 115, 30, 53, (492,551,0): 99, 24, 45, (492,552,0): 97, 34, 51, (492,553,0): 94, 40, 54, (492,554,0): 93, 42, 57, (492,555,0): 96, 37, 55, (492,556,0): 115, 32, 58, (492,557,0): 149, 41, 75, (492,558,0): 194, 57, 103, (492,559,0): 228, 68, 114, (492,560,0): 242, 68, 103, (492,561,0): 233, 65, 90, (492,562,0): 201, 58, 78, (492,563,0): 162, 46, 59, (492,564,0): 124, 34, 43, (492,565,0): 100, 31, 36, (492,566,0): 90, 35, 40, (492,567,0): 85, 40, 45, (492,568,0): 82, 42, 50, (492,569,0): 76, 44, 49, (492,570,0): 70, 43, 48, (492,571,0): 68, 43, 47, (492,572,0): 66, 44, 47, (492,573,0): 68, 43, 47, (492,574,0): 72, 43, 48, (492,575,0): 72, 42, 50, (492,576,0): 66, 38, 50, (492,577,0): 64, 38, 51, (492,578,0): 60, 36, 49, (492,579,0): 57, 35, 47, (492,580,0): 54, 32, 44, (492,581,0): 51, 31, 42, (492,582,0): 48, 31, 41, (492,583,0): 47, 30, 40, (492,584,0): 43, 26, 36, (492,585,0): 43, 26, 36, (492,586,0): 45, 25, 36, (492,587,0): 45, 25, 36, (492,588,0): 48, 24, 37, (492,589,0): 49, 25, 38, (492,590,0): 53, 27, 40, (492,591,0): 52, 29, 39, (492,592,0): 52, 29, 37, (492,593,0): 50, 29, 36, (492,594,0): 49, 28, 35, (492,595,0): 46, 25, 32, (492,596,0): 43, 22, 29, (492,597,0): 40, 19, 26, (492,598,0): 38, 17, 24, (492,599,0): 37, 16, 23, (493,0,0): 41, 70, 74, (493,1,0): 41, 70, 74, (493,2,0): 41, 70, 74, (493,3,0): 41, 70, 74, (493,4,0): 41, 70, 74, (493,5,0): 41, 70, 74, (493,6,0): 41, 70, 74, (493,7,0): 41, 70, 74, (493,8,0): 43, 72, 76, (493,9,0): 43, 72, 76, (493,10,0): 43, 72, 76, (493,11,0): 44, 73, 77, (493,12,0): 44, 73, 77, (493,13,0): 45, 74, 78, (493,14,0): 45, 74, 78, (493,15,0): 45, 74, 78, (493,16,0): 47, 75, 79, (493,17,0): 47, 75, 79, (493,18,0): 49, 74, 78, (493,19,0): 50, 75, 79, (493,20,0): 51, 75, 79, (493,21,0): 52, 76, 78, (493,22,0): 54, 75, 76, (493,23,0): 55, 75, 76, (493,24,0): 59, 77, 77, (493,25,0): 59, 78, 76, (493,26,0): 60, 76, 73, (493,27,0): 59, 75, 72, (493,28,0): 59, 74, 69, (493,29,0): 60, 72, 68, (493,30,0): 60, 73, 66, (493,31,0): 60, 71, 65, (493,32,0): 61, 67, 65, (493,33,0): 61, 65, 64, (493,34,0): 61, 65, 64, (493,35,0): 60, 64, 63, (493,36,0): 62, 64, 61, (493,37,0): 61, 63, 60, (493,38,0): 62, 62, 60, (493,39,0): 61, 61, 59, (493,40,0): 61, 62, 57, (493,41,0): 62, 63, 58, (493,42,0): 63, 62, 57, (493,43,0): 64, 63, 58, (493,44,0): 67, 64, 59, (493,45,0): 68, 65, 60, (493,46,0): 68, 65, 58, (493,47,0): 69, 66, 59, (493,48,0): 69, 62, 54, (493,49,0): 69, 62, 54, (493,50,0): 70, 61, 54, (493,51,0): 69, 60, 53, (493,52,0): 70, 59, 53, (493,53,0): 69, 58, 52, (493,54,0): 71, 58, 50, (493,55,0): 71, 58, 50, (493,56,0): 74, 57, 49, (493,57,0): 75, 58, 50, (493,58,0): 77, 59, 49, (493,59,0): 79, 61, 51, (493,60,0): 80, 60, 51, (493,61,0): 80, 60, 51, (493,62,0): 81, 58, 50, (493,63,0): 81, 58, 50, (493,64,0): 80, 59, 54, (493,65,0): 80, 59, 54, (493,66,0): 79, 58, 53, (493,67,0): 79, 58, 53, (493,68,0): 78, 57, 52, (493,69,0): 78, 57, 52, (493,70,0): 77, 56, 51, (493,71,0): 77, 56, 51, (493,72,0): 74, 53, 48, (493,73,0): 75, 54, 49, (493,74,0): 75, 54, 49, (493,75,0): 75, 54, 49, (493,76,0): 76, 55, 50, (493,77,0): 76, 55, 50, (493,78,0): 77, 56, 51, (493,79,0): 76, 57, 51, (493,80,0): 74, 56, 52, (493,81,0): 72, 57, 52, (493,82,0): 72, 57, 52, (493,83,0): 71, 56, 51, (493,84,0): 71, 56, 51, (493,85,0): 70, 55, 50, (493,86,0): 70, 55, 50, (493,87,0): 70, 55, 50, (493,88,0): 68, 53, 48, (493,89,0): 69, 54, 49, (493,90,0): 69, 54, 49, (493,91,0): 70, 55, 50, (493,92,0): 70, 55, 50, (493,93,0): 71, 56, 51, (493,94,0): 71, 56, 51, (493,95,0): 71, 56, 51, (493,96,0): 73, 54, 50, (493,97,0): 73, 54, 50, (493,98,0): 73, 54, 50, (493,99,0): 73, 54, 50, (493,100,0): 72, 54, 50, (493,101,0): 72, 54, 50, (493,102,0): 72, 54, 50, (493,103,0): 70, 55, 50, (493,104,0): 70, 55, 50, (493,105,0): 70, 55, 50, (493,106,0): 68, 55, 49, (493,107,0): 68, 55, 49, (493,108,0): 67, 54, 48, (493,109,0): 67, 54, 48, (493,110,0): 64, 53, 47, (493,111,0): 64, 53, 47, (493,112,0): 65, 52, 44, (493,113,0): 64, 51, 43, (493,114,0): 62, 49, 41, (493,115,0): 60, 47, 39, (493,116,0): 59, 46, 38, (493,117,0): 60, 47, 39, (493,118,0): 62, 49, 41, (493,119,0): 63, 50, 42, (493,120,0): 61, 48, 40, (493,121,0): 60, 47, 39, (493,122,0): 60, 47, 39, (493,123,0): 59, 46, 38, (493,124,0): 59, 46, 38, (493,125,0): 58, 45, 37, (493,126,0): 58, 45, 37, (493,127,0): 58, 45, 39, (493,128,0): 56, 42, 39, (493,129,0): 56, 42, 41, (493,130,0): 54, 43, 41, (493,131,0): 53, 42, 40, (493,132,0): 52, 41, 39, (493,133,0): 52, 41, 39, (493,134,0): 51, 41, 39, (493,135,0): 50, 40, 38, (493,136,0): 47, 39, 36, (493,137,0): 46, 38, 35, (493,138,0): 46, 38, 35, (493,139,0): 45, 37, 34, (493,140,0): 41, 36, 32, (493,141,0): 40, 35, 31, (493,142,0): 40, 35, 31, (493,143,0): 39, 34, 30, (493,144,0): 41, 36, 32, (493,145,0): 41, 36, 32, (493,146,0): 41, 36, 32, (493,147,0): 41, 36, 32, (493,148,0): 41, 36, 32, (493,149,0): 41, 36, 32, (493,150,0): 41, 36, 32, (493,151,0): 41, 36, 32, (493,152,0): 40, 35, 31, (493,153,0): 40, 35, 31, (493,154,0): 40, 35, 31, (493,155,0): 40, 35, 31, (493,156,0): 40, 35, 31, (493,157,0): 40, 35, 31, (493,158,0): 40, 35, 31, (493,159,0): 40, 35, 32, (493,160,0): 40, 36, 35, (493,161,0): 40, 36, 37, (493,162,0): 40, 36, 37, (493,163,0): 40, 36, 37, (493,164,0): 40, 36, 37, (493,165,0): 40, 36, 37, (493,166,0): 40, 36, 37, (493,167,0): 40, 36, 37, (493,168,0): 42, 38, 39, (493,169,0): 42, 38, 39, (493,170,0): 42, 38, 39, (493,171,0): 42, 38, 39, (493,172,0): 42, 38, 39, (493,173,0): 42, 38, 39, (493,174,0): 42, 38, 39, (493,175,0): 42, 38, 39, (493,176,0): 41, 35, 37, (493,177,0): 42, 36, 38, (493,178,0): 43, 37, 39, (493,179,0): 44, 38, 40, (493,180,0): 44, 38, 40, (493,181,0): 43, 37, 39, (493,182,0): 42, 36, 38, (493,183,0): 41, 35, 37, (493,184,0): 44, 38, 40, (493,185,0): 44, 38, 40, (493,186,0): 44, 38, 40, (493,187,0): 44, 38, 40, (493,188,0): 44, 38, 40, (493,189,0): 44, 38, 40, (493,190,0): 44, 38, 40, (493,191,0): 44, 38, 40, (493,192,0): 48, 37, 45, (493,193,0): 48, 37, 45, (493,194,0): 49, 38, 46, (493,195,0): 49, 38, 46, (493,196,0): 49, 38, 46, (493,197,0): 50, 39, 47, (493,198,0): 50, 39, 47, (493,199,0): 50, 39, 47, (493,200,0): 50, 39, 47, (493,201,0): 50, 39, 47, (493,202,0): 50, 39, 47, (493,203,0): 50, 39, 47, (493,204,0): 50, 39, 47, (493,205,0): 50, 39, 47, (493,206,0): 50, 39, 47, (493,207,0): 49, 39, 48, (493,208,0): 47, 37, 48, (493,209,0): 46, 38, 51, (493,210,0): 47, 39, 52, (493,211,0): 48, 40, 53, (493,212,0): 48, 40, 53, (493,213,0): 47, 39, 52, (493,214,0): 46, 38, 51, (493,215,0): 45, 37, 50, (493,216,0): 47, 39, 52, (493,217,0): 47, 39, 52, (493,218,0): 47, 39, 52, (493,219,0): 47, 39, 52, (493,220,0): 47, 39, 52, (493,221,0): 47, 39, 52, (493,222,0): 47, 39, 52, (493,223,0): 46, 40, 52, (493,224,0): 47, 41, 51, (493,225,0): 45, 42, 49, (493,226,0): 48, 43, 50, (493,227,0): 48, 43, 50, (493,228,0): 50, 43, 51, (493,229,0): 50, 43, 51, (493,230,0): 53, 43, 52, (493,231,0): 53, 43, 52, (493,232,0): 57, 45, 55, (493,233,0): 59, 46, 56, (493,234,0): 62, 46, 57, (493,235,0): 64, 48, 59, (493,236,0): 66, 48, 60, (493,237,0): 68, 50, 62, (493,238,0): 71, 51, 63, (493,239,0): 70, 52, 66, (493,240,0): 67, 50, 66, (493,241,0): 65, 51, 66, (493,242,0): 67, 50, 66, (493,243,0): 69, 51, 67, (493,244,0): 72, 51, 66, (493,245,0): 75, 52, 68, (493,246,0): 79, 55, 71, (493,247,0): 82, 55, 72, (493,248,0): 83, 56, 71, (493,249,0): 84, 57, 72, (493,250,0): 86, 60, 73, (493,251,0): 86, 62, 75, (493,252,0): 87, 63, 76, (493,253,0): 86, 64, 76, (493,254,0): 86, 65, 74, (493,255,0): 85, 64, 73, (493,256,0): 90, 67, 75, (493,257,0): 93, 67, 76, (493,258,0): 93, 70, 78, (493,259,0): 93, 72, 79, (493,260,0): 92, 72, 81, (493,261,0): 87, 72, 79, (493,262,0): 84, 69, 76, (493,263,0): 80, 67, 74, (493,264,0): 80, 67, 76, (493,265,0): 80, 67, 76, (493,266,0): 79, 66, 76, (493,267,0): 79, 66, 76, (493,268,0): 81, 65, 76, (493,269,0): 83, 67, 78, (493,270,0): 85, 67, 81, (493,271,0): 86, 68, 82, (493,272,0): 80, 64, 75, (493,273,0): 80, 64, 75, (493,274,0): 80, 64, 75, (493,275,0): 79, 63, 74, (493,276,0): 78, 62, 73, (493,277,0): 78, 62, 73, (493,278,0): 78, 62, 73, (493,279,0): 77, 61, 72, (493,280,0): 77, 61, 72, (493,281,0): 78, 62, 73, (493,282,0): 78, 62, 73, (493,283,0): 78, 62, 73, (493,284,0): 79, 63, 74, (493,285,0): 80, 64, 75, (493,286,0): 80, 64, 75, (493,287,0): 80, 64, 75, (493,288,0): 81, 64, 80, (493,289,0): 81, 64, 80, (493,290,0): 81, 64, 80, (493,291,0): 83, 65, 81, (493,292,0): 85, 67, 81, (493,293,0): 89, 69, 81, (493,294,0): 92, 70, 83, (493,295,0): 94, 70, 83, (493,296,0): 96, 73, 83, (493,297,0): 101, 75, 84, (493,298,0): 106, 79, 88, (493,299,0): 109, 82, 89, (493,300,0): 112, 83, 88, (493,301,0): 111, 82, 87, (493,302,0): 109, 80, 85, (493,303,0): 109, 76, 83, (493,304,0): 113, 75, 86, (493,305,0): 115, 75, 84, (493,306,0): 113, 76, 84, (493,307,0): 113, 78, 82, (493,308,0): 113, 81, 82, (493,309,0): 117, 83, 81, (493,310,0): 122, 84, 81, (493,311,0): 126, 85, 79, (493,312,0): 130, 85, 79, (493,313,0): 134, 85, 80, (493,314,0): 136, 86, 79, (493,315,0): 135, 82, 76, (493,316,0): 128, 77, 73, (493,317,0): 123, 74, 69, (493,318,0): 118, 73, 67, (493,319,0): 115, 76, 61, (493,320,0): 138, 102, 78, (493,321,0): 143, 112, 84, (493,322,0): 139, 108, 87, (493,323,0): 122, 95, 76, (493,324,0): 108, 81, 70, (493,325,0): 93, 73, 66, (493,326,0): 75, 55, 56, (493,327,0): 55, 38, 44, (493,328,0): 49, 33, 43, (493,329,0): 43, 30, 40, (493,330,0): 37, 25, 35, (493,331,0): 34, 24, 33, (493,332,0): 34, 24, 32, (493,333,0): 33, 23, 31, (493,334,0): 30, 21, 26, (493,335,0): 28, 19, 24, (493,336,0): 27, 20, 28, (493,337,0): 27, 20, 28, (493,338,0): 26, 19, 27, (493,339,0): 26, 19, 27, (493,340,0): 25, 18, 26, (493,341,0): 25, 18, 26, (493,342,0): 24, 17, 25, (493,343,0): 24, 17, 25, (493,344,0): 24, 17, 25, (493,345,0): 24, 17, 25, (493,346,0): 23, 16, 24, (493,347,0): 23, 16, 24, (493,348,0): 22, 15, 23, (493,349,0): 22, 15, 23, (493,350,0): 21, 14, 22, (493,351,0): 23, 13, 22, (493,352,0): 25, 13, 23, (493,353,0): 25, 12, 22, (493,354,0): 25, 12, 22, (493,355,0): 23, 11, 21, (493,356,0): 23, 11, 21, (493,357,0): 21, 11, 20, (493,358,0): 21, 11, 20, (493,359,0): 21, 11, 20, (493,360,0): 22, 12, 21, (493,361,0): 20, 13, 21, (493,362,0): 20, 13, 21, (493,363,0): 19, 14, 21, (493,364,0): 19, 14, 21, (493,365,0): 19, 14, 21, (493,366,0): 19, 14, 21, (493,367,0): 19, 14, 21, (493,368,0): 21, 13, 26, (493,369,0): 21, 13, 26, (493,370,0): 22, 14, 27, (493,371,0): 22, 14, 27, (493,372,0): 25, 15, 26, (493,373,0): 25, 15, 26, (493,374,0): 26, 16, 27, (493,375,0): 26, 16, 27, (493,376,0): 29, 17, 27, (493,377,0): 29, 17, 27, (493,378,0): 30, 17, 26, (493,379,0): 31, 18, 27, (493,380,0): 31, 18, 27, (493,381,0): 32, 19, 28, (493,382,0): 34, 19, 26, (493,383,0): 34, 19, 26, (493,384,0): 33, 20, 29, (493,385,0): 33, 20, 29, (493,386,0): 34, 18, 28, (493,387,0): 34, 18, 28, (493,388,0): 34, 19, 26, (493,389,0): 36, 21, 28, (493,390,0): 38, 21, 27, (493,391,0): 39, 22, 28, (493,392,0): 39, 20, 26, (493,393,0): 41, 22, 28, (493,394,0): 42, 23, 27, (493,395,0): 42, 23, 27, (493,396,0): 42, 22, 24, (493,397,0): 42, 22, 24, (493,398,0): 44, 24, 26, (493,399,0): 44, 25, 27, (493,400,0): 43, 24, 26, (493,401,0): 40, 24, 25, (493,402,0): 39, 23, 24, (493,403,0): 37, 21, 22, (493,404,0): 39, 20, 22, (493,405,0): 39, 20, 22, (493,406,0): 40, 21, 23, (493,407,0): 40, 21, 23, (493,408,0): 40, 20, 22, (493,409,0): 41, 21, 23, (493,410,0): 44, 22, 25, (493,411,0): 46, 24, 27, (493,412,0): 49, 27, 30, (493,413,0): 51, 29, 32, (493,414,0): 55, 30, 34, (493,415,0): 57, 30, 35, (493,416,0): 63, 31, 42, (493,417,0): 65, 32, 43, (493,418,0): 64, 32, 43, (493,419,0): 64, 32, 43, (493,420,0): 63, 31, 42, (493,421,0): 61, 29, 40, (493,422,0): 58, 28, 38, (493,423,0): 55, 28, 37, (493,424,0): 55, 28, 37, (493,425,0): 53, 27, 36, (493,426,0): 49, 26, 34, (493,427,0): 47, 24, 32, (493,428,0): 45, 22, 30, (493,429,0): 44, 21, 29, (493,430,0): 43, 22, 29, (493,431,0): 43, 22, 29, (493,432,0): 41, 22, 28, (493,433,0): 40, 21, 27, (493,434,0): 39, 20, 26, (493,435,0): 39, 20, 26, (493,436,0): 39, 19, 28, (493,437,0): 41, 21, 30, (493,438,0): 40, 23, 31, (493,439,0): 41, 24, 32, (493,440,0): 39, 22, 32, (493,441,0): 39, 22, 32, (493,442,0): 39, 21, 33, (493,443,0): 39, 21, 33, (493,444,0): 38, 22, 33, (493,445,0): 38, 22, 33, (493,446,0): 38, 22, 35, (493,447,0): 38, 22, 35, (493,448,0): 31, 17, 32, (493,449,0): 30, 16, 31, (493,450,0): 30, 13, 29, (493,451,0): 29, 12, 28, (493,452,0): 30, 14, 27, (493,453,0): 32, 16, 29, (493,454,0): 35, 17, 31, (493,455,0): 37, 19, 33, (493,456,0): 40, 20, 32, (493,457,0): 40, 20, 32, (493,458,0): 42, 22, 33, (493,459,0): 42, 22, 33, (493,460,0): 43, 21, 33, (493,461,0): 43, 21, 33, (493,462,0): 41, 20, 29, (493,463,0): 40, 20, 29, (493,464,0): 38, 18, 29, (493,465,0): 36, 19, 29, (493,466,0): 35, 18, 28, (493,467,0): 35, 18, 28, (493,468,0): 37, 17, 26, (493,469,0): 37, 17, 26, (493,470,0): 40, 17, 25, (493,471,0): 40, 17, 25, (493,472,0): 40, 14, 23, (493,473,0): 41, 15, 24, (493,474,0): 45, 15, 23, (493,475,0): 43, 13, 21, (493,476,0): 40, 9, 15, (493,477,0): 38, 7, 13, (493,478,0): 38, 7, 13, (493,479,0): 39, 8, 14, (493,480,0): 38, 9, 14, (493,481,0): 40, 11, 16, (493,482,0): 42, 13, 18, (493,483,0): 45, 16, 21, (493,484,0): 47, 16, 22, (493,485,0): 47, 16, 22, (493,486,0): 45, 14, 20, (493,487,0): 44, 13, 19, (493,488,0): 43, 12, 18, (493,489,0): 42, 11, 17, (493,490,0): 44, 13, 19, (493,491,0): 49, 18, 24, (493,492,0): 48, 15, 22, (493,493,0): 43, 10, 17, (493,494,0): 44, 11, 18, (493,495,0): 56, 15, 23, (493,496,0): 70, 13, 19, (493,497,0): 85, 12, 21, (493,498,0): 104, 16, 30, (493,499,0): 129, 26, 45, (493,500,0): 153, 36, 62, (493,501,0): 154, 37, 64, (493,502,0): 127, 23, 48, (493,503,0): 94, 7, 26, (493,504,0): 83, 17, 31, (493,505,0): 71, 13, 25, (493,506,0): 68, 7, 22, (493,507,0): 73, 11, 26, (493,508,0): 84, 17, 34, (493,509,0): 86, 22, 38, (493,510,0): 76, 22, 35, (493,511,0): 66, 18, 32, (493,512,0): 60, 15, 36, (493,513,0): 65, 17, 39, (493,514,0): 68, 13, 32, (493,515,0): 78, 17, 33, (493,516,0): 89, 25, 41, (493,517,0): 85, 21, 38, (493,518,0): 81, 18, 39, (493,519,0): 91, 28, 49, (493,520,0): 106, 41, 63, (493,521,0): 93, 24, 43, (493,522,0): 86, 9, 25, (493,523,0): 92, 9, 25, (493,524,0): 105, 16, 34, (493,525,0): 110, 21, 41, (493,526,0): 109, 19, 45, (493,527,0): 107, 17, 43, (493,528,0): 118, 26, 49, (493,529,0): 111, 24, 43, (493,530,0): 102, 23, 42, (493,531,0): 107, 29, 45, (493,532,0): 119, 31, 53, (493,533,0): 128, 28, 52, (493,534,0): 140, 23, 52, (493,535,0): 148, 25, 56, (493,536,0): 142, 22, 50, (493,537,0): 131, 14, 41, (493,538,0): 124, 10, 35, (493,539,0): 132, 18, 41, (493,540,0): 151, 29, 54, (493,541,0): 162, 36, 60, (493,542,0): 165, 32, 59, (493,543,0): 157, 30, 57, (493,544,0): 134, 22, 47, (493,545,0): 124, 21, 48, (493,546,0): 116, 22, 46, (493,547,0): 116, 28, 50, (493,548,0): 120, 36, 59, (493,549,0): 121, 39, 61, (493,550,0): 115, 36, 58, (493,551,0): 106, 33, 53, (493,552,0): 91, 27, 44, (493,553,0): 93, 39, 53, (493,554,0): 93, 45, 57, (493,555,0): 90, 38, 51, (493,556,0): 101, 29, 49, (493,557,0): 129, 36, 63, (493,558,0): 169, 51, 86, (493,559,0): 205, 59, 96, (493,560,0): 234, 57, 86, (493,561,0): 243, 63, 88, (493,562,0): 221, 68, 86, (493,563,0): 184, 58, 70, (493,564,0): 144, 44, 52, (493,565,0): 116, 37, 43, (493,566,0): 103, 38, 44, (493,567,0): 94, 41, 47, (493,568,0): 85, 38, 46, (493,569,0): 80, 40, 48, (493,570,0): 74, 41, 48, (493,571,0): 71, 42, 47, (493,572,0): 69, 42, 47, (493,573,0): 69, 42, 47, (493,574,0): 72, 43, 48, (493,575,0): 73, 43, 51, (493,576,0): 65, 37, 49, (493,577,0): 63, 37, 50, (493,578,0): 59, 35, 48, (493,579,0): 56, 34, 46, (493,580,0): 52, 32, 43, (493,581,0): 49, 29, 40, (493,582,0): 46, 29, 39, (493,583,0): 45, 28, 38, (493,584,0): 41, 24, 34, (493,585,0): 41, 24, 34, (493,586,0): 42, 22, 33, (493,587,0): 42, 22, 33, (493,588,0): 44, 22, 34, (493,589,0): 47, 23, 36, (493,590,0): 50, 24, 37, (493,591,0): 49, 26, 36, (493,592,0): 49, 26, 36, (493,593,0): 47, 26, 33, (493,594,0): 47, 26, 33, (493,595,0): 46, 25, 32, (493,596,0): 44, 23, 30, (493,597,0): 41, 20, 27, (493,598,0): 39, 18, 25, (493,599,0): 37, 16, 23, (494,0,0): 41, 70, 74, (494,1,0): 41, 70, 74, (494,2,0): 41, 70, 74, (494,3,0): 41, 70, 74, (494,4,0): 41, 70, 74, (494,5,0): 41, 70, 74, (494,6,0): 41, 70, 74, (494,7,0): 41, 70, 74, (494,8,0): 43, 72, 76, (494,9,0): 43, 72, 76, (494,10,0): 43, 72, 76, (494,11,0): 44, 73, 77, (494,12,0): 44, 73, 77, (494,13,0): 45, 74, 78, (494,14,0): 45, 74, 78, (494,15,0): 45, 74, 78, (494,16,0): 47, 75, 79, (494,17,0): 47, 75, 79, (494,18,0): 47, 75, 79, (494,19,0): 50, 75, 79, (494,20,0): 51, 75, 79, (494,21,0): 52, 76, 78, (494,22,0): 54, 75, 76, (494,23,0): 54, 75, 76, (494,24,0): 57, 77, 76, (494,25,0): 58, 77, 75, (494,26,0): 60, 76, 73, (494,27,0): 60, 76, 73, (494,28,0): 61, 76, 71, (494,29,0): 61, 76, 71, (494,30,0): 63, 75, 71, (494,31,0): 64, 75, 71, (494,32,0): 65, 71, 71, (494,33,0): 66, 70, 71, (494,34,0): 64, 68, 67, (494,35,0): 63, 67, 66, (494,36,0): 63, 65, 64, (494,37,0): 61, 63, 62, (494,38,0): 60, 62, 59, (494,39,0): 59, 61, 58, (494,40,0): 63, 64, 59, (494,41,0): 63, 64, 59, (494,42,0): 64, 63, 59, (494,43,0): 64, 63, 59, (494,44,0): 65, 64, 59, (494,45,0): 65, 64, 59, (494,46,0): 67, 64, 59, (494,47,0): 67, 64, 57, (494,48,0): 69, 62, 54, (494,49,0): 69, 62, 54, (494,50,0): 70, 61, 54, (494,51,0): 69, 60, 53, (494,52,0): 70, 59, 53, (494,53,0): 69, 58, 52, (494,54,0): 71, 58, 50, (494,55,0): 71, 58, 50, (494,56,0): 74, 57, 49, (494,57,0): 75, 58, 50, (494,58,0): 77, 59, 49, (494,59,0): 79, 61, 51, (494,60,0): 80, 60, 51, (494,61,0): 80, 60, 51, (494,62,0): 81, 58, 50, (494,63,0): 81, 58, 50, (494,64,0): 81, 60, 55, (494,65,0): 81, 60, 55, (494,66,0): 80, 59, 54, (494,67,0): 80, 59, 54, (494,68,0): 79, 58, 53, (494,69,0): 79, 58, 53, (494,70,0): 78, 57, 52, (494,71,0): 78, 57, 52, (494,72,0): 75, 54, 49, (494,73,0): 75, 54, 49, (494,74,0): 75, 54, 49, (494,75,0): 76, 55, 50, (494,76,0): 77, 56, 51, (494,77,0): 77, 56, 51, (494,78,0): 78, 57, 52, (494,79,0): 77, 58, 52, (494,80,0): 76, 58, 54, (494,81,0): 74, 59, 54, (494,82,0): 73, 58, 53, (494,83,0): 72, 57, 52, (494,84,0): 72, 57, 52, (494,85,0): 71, 56, 51, (494,86,0): 70, 55, 50, (494,87,0): 70, 55, 50, (494,88,0): 68, 53, 48, (494,89,0): 68, 53, 48, (494,90,0): 68, 53, 48, (494,91,0): 69, 54, 49, (494,92,0): 69, 54, 49, (494,93,0): 70, 55, 50, (494,94,0): 70, 55, 50, (494,95,0): 71, 56, 51, (494,96,0): 72, 53, 49, (494,97,0): 72, 53, 49, (494,98,0): 71, 53, 49, (494,99,0): 71, 53, 49, (494,100,0): 71, 53, 49, (494,101,0): 71, 53, 49, (494,102,0): 69, 54, 49, (494,103,0): 70, 55, 50, (494,104,0): 71, 56, 51, (494,105,0): 70, 57, 51, (494,106,0): 69, 56, 50, (494,107,0): 69, 56, 50, (494,108,0): 66, 55, 49, (494,109,0): 66, 55, 49, (494,110,0): 65, 54, 48, (494,111,0): 65, 54, 48, (494,112,0): 63, 53, 44, (494,113,0): 63, 53, 44, (494,114,0): 62, 52, 43, (494,115,0): 61, 51, 42, (494,116,0): 60, 50, 41, (494,117,0): 60, 50, 41, (494,118,0): 60, 50, 41, (494,119,0): 60, 50, 41, (494,120,0): 58, 48, 39, (494,121,0): 58, 48, 39, (494,122,0): 58, 48, 39, (494,123,0): 57, 47, 38, (494,124,0): 57, 47, 38, (494,125,0): 56, 46, 37, (494,126,0): 56, 46, 37, (494,127,0): 55, 44, 38, (494,128,0): 56, 42, 39, (494,129,0): 55, 41, 40, (494,130,0): 53, 42, 40, (494,131,0): 53, 42, 40, (494,132,0): 52, 41, 39, (494,133,0): 52, 41, 39, (494,134,0): 50, 40, 38, (494,135,0): 50, 40, 38, (494,136,0): 47, 39, 36, (494,137,0): 46, 38, 35, (494,138,0): 46, 38, 35, (494,139,0): 45, 37, 34, (494,140,0): 41, 36, 32, (494,141,0): 40, 35, 31, (494,142,0): 40, 35, 31, (494,143,0): 39, 34, 30, (494,144,0): 41, 36, 32, (494,145,0): 41, 36, 32, (494,146,0): 41, 36, 32, (494,147,0): 41, 36, 32, (494,148,0): 41, 36, 32, (494,149,0): 41, 36, 32, (494,150,0): 41, 36, 32, (494,151,0): 41, 36, 32, (494,152,0): 39, 34, 30, (494,153,0): 39, 34, 30, (494,154,0): 39, 34, 30, (494,155,0): 39, 34, 30, (494,156,0): 39, 34, 30, (494,157,0): 39, 34, 30, (494,158,0): 39, 34, 30, (494,159,0): 39, 34, 31, (494,160,0): 40, 36, 35, (494,161,0): 38, 36, 37, (494,162,0): 38, 36, 37, (494,163,0): 38, 36, 37, (494,164,0): 38, 36, 37, (494,165,0): 38, 36, 37, (494,166,0): 38, 36, 37, (494,167,0): 38, 36, 37, (494,168,0): 39, 37, 38, (494,169,0): 39, 37, 38, (494,170,0): 39, 37, 38, (494,171,0): 39, 37, 38, (494,172,0): 39, 37, 38, (494,173,0): 39, 37, 38, (494,174,0): 39, 37, 38, (494,175,0): 41, 37, 38, (494,176,0): 41, 35, 37, (494,177,0): 42, 36, 38, (494,178,0): 43, 37, 39, (494,179,0): 44, 38, 40, (494,180,0): 44, 38, 40, (494,181,0): 43, 37, 39, (494,182,0): 42, 36, 38, (494,183,0): 41, 35, 37, (494,184,0): 44, 38, 40, (494,185,0): 44, 38, 40, (494,186,0): 44, 38, 40, (494,187,0): 44, 38, 40, (494,188,0): 44, 38, 40, (494,189,0): 44, 38, 40, (494,190,0): 44, 38, 40, (494,191,0): 44, 38, 40, (494,192,0): 46, 35, 43, (494,193,0): 46, 35, 43, (494,194,0): 47, 36, 44, (494,195,0): 47, 36, 44, (494,196,0): 48, 37, 45, (494,197,0): 49, 38, 46, (494,198,0): 49, 38, 46, (494,199,0): 50, 39, 47, (494,200,0): 50, 39, 47, (494,201,0): 50, 39, 47, (494,202,0): 50, 39, 47, (494,203,0): 50, 39, 47, (494,204,0): 50, 39, 47, (494,205,0): 50, 39, 47, (494,206,0): 50, 39, 47, (494,207,0): 49, 39, 48, (494,208,0): 47, 37, 48, (494,209,0): 46, 38, 51, (494,210,0): 47, 39, 52, (494,211,0): 48, 40, 53, (494,212,0): 48, 40, 53, (494,213,0): 47, 39, 52, (494,214,0): 46, 38, 51, (494,215,0): 45, 37, 50, (494,216,0): 47, 39, 52, (494,217,0): 47, 39, 52, (494,218,0): 47, 39, 52, (494,219,0): 47, 39, 52, (494,220,0): 47, 39, 52, (494,221,0): 47, 39, 52, (494,222,0): 47, 39, 52, (494,223,0): 46, 40, 52, (494,224,0): 46, 40, 50, (494,225,0): 44, 41, 50, (494,226,0): 45, 42, 51, (494,227,0): 45, 42, 51, (494,228,0): 48, 42, 52, (494,229,0): 49, 41, 52, (494,230,0): 52, 42, 53, (494,231,0): 52, 42, 53, (494,232,0): 56, 44, 56, (494,233,0): 58, 44, 57, (494,234,0): 61, 45, 58, (494,235,0): 63, 47, 60, (494,236,0): 65, 47, 61, (494,237,0): 67, 49, 63, (494,238,0): 68, 50, 64, (494,239,0): 68, 52, 65, (494,240,0): 64, 50, 65, (494,241,0): 63, 49, 66, (494,242,0): 66, 49, 65, (494,243,0): 67, 49, 65, (494,244,0): 71, 50, 67, (494,245,0): 74, 51, 69, (494,246,0): 78, 54, 70, (494,247,0): 79, 55, 71, (494,248,0): 81, 54, 69, (494,249,0): 83, 56, 71, (494,250,0): 83, 59, 73, (494,251,0): 85, 61, 75, (494,252,0): 86, 62, 75, (494,253,0): 85, 63, 75, (494,254,0): 85, 63, 75, (494,255,0): 85, 64, 73, (494,256,0): 89, 66, 74, (494,257,0): 92, 66, 75, (494,258,0): 92, 69, 77, (494,259,0): 92, 71, 78, (494,260,0): 90, 70, 79, (494,261,0): 85, 70, 77, (494,262,0): 82, 66, 76, (494,263,0): 79, 66, 75, (494,264,0): 78, 67, 75, (494,265,0): 77, 66, 74, (494,266,0): 77, 64, 74, (494,267,0): 77, 64, 74, (494,268,0): 79, 63, 76, (494,269,0): 81, 65, 78, (494,270,0): 84, 66, 80, (494,271,0): 85, 67, 81, (494,272,0): 80, 64, 75, (494,273,0): 79, 63, 74, (494,274,0): 79, 63, 74, (494,275,0): 79, 63, 74, (494,276,0): 78, 62, 73, (494,277,0): 78, 62, 73, (494,278,0): 77, 61, 72, (494,279,0): 77, 61, 72, (494,280,0): 77, 61, 72, (494,281,0): 77, 61, 72, (494,282,0): 78, 62, 73, (494,283,0): 78, 62, 73, (494,284,0): 79, 63, 74, (494,285,0): 79, 63, 74, (494,286,0): 79, 63, 74, (494,287,0): 80, 64, 75, (494,288,0): 83, 65, 81, (494,289,0): 83, 65, 81, (494,290,0): 83, 65, 81, (494,291,0): 85, 64, 81, (494,292,0): 87, 66, 81, (494,293,0): 91, 69, 82, (494,294,0): 93, 71, 84, (494,295,0): 96, 72, 85, (494,296,0): 96, 70, 81, (494,297,0): 101, 74, 83, (494,298,0): 106, 79, 88, (494,299,0): 112, 82, 90, (494,300,0): 116, 85, 91, (494,301,0): 115, 84, 90, (494,302,0): 113, 82, 88, (494,303,0): 114, 79, 86, (494,304,0): 115, 75, 86, (494,305,0): 115, 75, 84, (494,306,0): 113, 76, 84, (494,307,0): 112, 77, 81, (494,308,0): 112, 80, 81, (494,309,0): 114, 83, 80, (494,310,0): 120, 85, 81, (494,311,0): 125, 86, 79, (494,312,0): 129, 86, 79, (494,313,0): 135, 88, 80, (494,314,0): 139, 89, 82, (494,315,0): 139, 86, 80, (494,316,0): 136, 83, 77, (494,317,0): 131, 81, 74, (494,318,0): 129, 82, 74, (494,319,0): 127, 85, 69, (494,320,0): 149, 112, 85, (494,321,0): 156, 123, 90, (494,322,0): 153, 122, 94, (494,323,0): 135, 107, 85, (494,324,0): 120, 92, 78, (494,325,0): 106, 83, 75, (494,326,0): 85, 64, 63, (494,327,0): 63, 44, 48, (494,328,0): 51, 36, 43, (494,329,0): 45, 32, 41, (494,330,0): 40, 27, 37, (494,331,0): 37, 25, 35, (494,332,0): 36, 25, 33, (494,333,0): 35, 24, 32, (494,334,0): 32, 21, 27, (494,335,0): 29, 20, 25, (494,336,0): 28, 21, 29, (494,337,0): 28, 21, 29, (494,338,0): 27, 20, 28, (494,339,0): 27, 20, 28, (494,340,0): 26, 19, 27, (494,341,0): 26, 19, 27, (494,342,0): 25, 18, 26, (494,343,0): 25, 18, 26, (494,344,0): 24, 17, 25, (494,345,0): 24, 17, 25, (494,346,0): 24, 17, 25, (494,347,0): 23, 16, 24, (494,348,0): 22, 15, 23, (494,349,0): 21, 14, 22, (494,350,0): 21, 14, 22, (494,351,0): 23, 13, 22, (494,352,0): 24, 12, 22, (494,353,0): 24, 12, 22, (494,354,0): 24, 12, 22, (494,355,0): 23, 11, 21, (494,356,0): 23, 11, 21, (494,357,0): 21, 11, 20, (494,358,0): 21, 11, 20, (494,359,0): 18, 11, 19, (494,360,0): 20, 13, 21, (494,361,0): 20, 13, 21, (494,362,0): 20, 13, 21, (494,363,0): 19, 14, 21, (494,364,0): 19, 14, 21, (494,365,0): 17, 14, 21, (494,366,0): 17, 14, 21, (494,367,0): 19, 14, 21, (494,368,0): 21, 13, 26, (494,369,0): 21, 13, 26, (494,370,0): 22, 14, 27, (494,371,0): 22, 14, 27, (494,372,0): 25, 15, 26, (494,373,0): 25, 15, 26, (494,374,0): 26, 16, 27, (494,375,0): 26, 16, 27, (494,376,0): 29, 17, 27, (494,377,0): 29, 17, 27, (494,378,0): 30, 17, 26, (494,379,0): 31, 18, 27, (494,380,0): 31, 18, 27, (494,381,0): 32, 19, 28, (494,382,0): 34, 19, 26, (494,383,0): 34, 19, 26, (494,384,0): 34, 21, 30, (494,385,0): 33, 20, 29, (494,386,0): 34, 18, 28, (494,387,0): 34, 18, 28, (494,388,0): 35, 20, 27, (494,389,0): 36, 21, 28, (494,390,0): 38, 21, 27, (494,391,0): 39, 22, 28, (494,392,0): 37, 18, 24, (494,393,0): 40, 21, 27, (494,394,0): 42, 23, 27, (494,395,0): 41, 22, 26, (494,396,0): 40, 20, 22, (494,397,0): 40, 20, 22, (494,398,0): 42, 22, 24, (494,399,0): 44, 25, 27, (494,400,0): 43, 24, 26, (494,401,0): 40, 24, 25, (494,402,0): 39, 23, 24, (494,403,0): 37, 21, 22, (494,404,0): 39, 20, 22, (494,405,0): 39, 20, 22, (494,406,0): 40, 21, 23, (494,407,0): 40, 21, 23, (494,408,0): 42, 22, 24, (494,409,0): 42, 22, 24, (494,410,0): 45, 23, 26, (494,411,0): 46, 24, 27, (494,412,0): 48, 26, 29, (494,413,0): 50, 28, 31, (494,414,0): 53, 28, 32, (494,415,0): 55, 28, 33, (494,416,0): 64, 32, 43, (494,417,0): 65, 32, 43, (494,418,0): 65, 32, 43, (494,419,0): 65, 32, 43, (494,420,0): 63, 31, 42, (494,421,0): 61, 29, 40, (494,422,0): 58, 28, 38, (494,423,0): 54, 27, 36, (494,424,0): 55, 28, 37, (494,425,0): 52, 26, 35, (494,426,0): 48, 25, 33, (494,427,0): 45, 22, 30, (494,428,0): 43, 22, 29, (494,429,0): 42, 21, 28, (494,430,0): 42, 21, 28, (494,431,0): 43, 22, 29, (494,432,0): 40, 21, 27, (494,433,0): 37, 20, 26, (494,434,0): 37, 20, 26, (494,435,0): 37, 20, 26, (494,436,0): 38, 21, 29, (494,437,0): 39, 22, 30, (494,438,0): 41, 24, 34, (494,439,0): 42, 25, 35, (494,440,0): 39, 22, 32, (494,441,0): 39, 22, 32, (494,442,0): 39, 21, 33, (494,443,0): 39, 21, 33, (494,444,0): 38, 22, 35, (494,445,0): 38, 22, 35, (494,446,0): 38, 22, 35, (494,447,0): 38, 22, 35, (494,448,0): 31, 17, 32, (494,449,0): 30, 16, 31, (494,450,0): 30, 13, 29, (494,451,0): 29, 12, 28, (494,452,0): 29, 12, 28, (494,453,0): 32, 15, 31, (494,454,0): 35, 17, 31, (494,455,0): 37, 19, 33, (494,456,0): 38, 18, 30, (494,457,0): 39, 19, 31, (494,458,0): 40, 20, 31, (494,459,0): 40, 20, 31, (494,460,0): 41, 19, 31, (494,461,0): 41, 19, 31, (494,462,0): 40, 18, 30, (494,463,0): 38, 18, 29, (494,464,0): 37, 17, 28, (494,465,0): 35, 18, 28, (494,466,0): 36, 19, 29, (494,467,0): 36, 19, 29, (494,468,0): 38, 18, 27, (494,469,0): 38, 18, 27, (494,470,0): 39, 16, 24, (494,471,0): 39, 16, 24, (494,472,0): 41, 15, 24, (494,473,0): 43, 17, 26, (494,474,0): 46, 16, 24, (494,475,0): 43, 13, 21, (494,476,0): 40, 9, 15, (494,477,0): 37, 6, 12, (494,478,0): 37, 6, 12, (494,479,0): 39, 8, 14, (494,480,0): 37, 6, 14, (494,481,0): 40, 9, 17, (494,482,0): 43, 12, 20, (494,483,0): 46, 15, 23, (494,484,0): 48, 15, 24, (494,485,0): 47, 14, 23, (494,486,0): 45, 12, 21, (494,487,0): 44, 11, 20, (494,488,0): 45, 12, 21, (494,489,0): 42, 9, 18, (494,490,0): 43, 10, 19, (494,491,0): 47, 14, 23, (494,492,0): 45, 12, 21, (494,493,0): 42, 9, 18, (494,494,0): 45, 12, 21, (494,495,0): 62, 16, 26, (494,496,0): 77, 5, 16, (494,497,0): 99, 9, 21, (494,498,0): 115, 14, 30, (494,499,0): 127, 20, 40, (494,500,0): 138, 24, 49, (494,501,0): 135, 27, 51, (494,502,0): 113, 20, 41, (494,503,0): 85, 11, 28, (494,504,0): 64, 8, 21, (494,505,0): 60, 13, 23, (494,506,0): 65, 15, 27, (494,507,0): 70, 16, 30, (494,508,0): 77, 16, 31, (494,509,0): 74, 16, 30, (494,510,0): 65, 20, 27, (494,511,0): 61, 19, 31, (494,512,0): 63, 19, 42, (494,513,0): 69, 21, 47, (494,514,0): 74, 16, 38, (494,515,0): 83, 18, 38, (494,516,0): 97, 24, 44, (494,517,0): 91, 18, 38, (494,518,0): 84, 15, 36, (494,519,0): 90, 25, 47, (494,520,0): 100, 37, 56, (494,521,0): 86, 22, 38, (494,522,0): 81, 10, 24, (494,523,0): 87, 11, 24, (494,524,0): 96, 13, 29, (494,525,0): 99, 14, 35, (494,526,0): 101, 15, 42, (494,527,0): 106, 17, 45, (494,528,0): 115, 25, 50, (494,529,0): 108, 20, 44, (494,530,0): 102, 23, 45, (494,531,0): 107, 29, 53, (494,532,0): 112, 29, 57, (494,533,0): 111, 22, 54, (494,534,0): 113, 16, 51, (494,535,0): 113, 16, 51, (494,536,0): 108, 13, 45, (494,537,0): 111, 18, 47, (494,538,0): 116, 22, 48, (494,539,0): 121, 23, 46, (494,540,0): 124, 22, 43, (494,541,0): 125, 24, 40, (494,542,0): 123, 27, 39, (494,543,0): 122, 29, 40, (494,544,0): 118, 21, 40, (494,545,0): 111, 18, 39, (494,546,0): 102, 19, 37, (494,547,0): 99, 25, 40, (494,548,0): 103, 32, 48, (494,549,0): 105, 37, 52, (494,550,0): 108, 37, 55, (494,551,0): 105, 36, 54, (494,552,0): 94, 25, 43, (494,553,0): 99, 35, 49, (494,554,0): 100, 40, 52, (494,555,0): 97, 35, 48, (494,556,0): 104, 32, 46, (494,557,0): 121, 38, 54, (494,558,0): 141, 46, 66, (494,559,0): 168, 42, 64, (494,560,0): 210, 41, 64, (494,561,0): 230, 48, 70, (494,562,0): 215, 60, 74, (494,563,0): 187, 57, 67, (494,564,0): 155, 50, 57, (494,565,0): 131, 46, 53, (494,566,0): 114, 41, 48, (494,567,0): 101, 38, 46, (494,568,0): 92, 35, 44, (494,569,0): 87, 35, 47, (494,570,0): 79, 36, 46, (494,571,0): 74, 37, 45, (494,572,0): 72, 36, 46, (494,573,0): 70, 37, 46, (494,574,0): 72, 37, 44, (494,575,0): 71, 38, 47, (494,576,0): 65, 37, 49, (494,577,0): 63, 37, 50, (494,578,0): 59, 35, 48, (494,579,0): 55, 33, 45, (494,580,0): 51, 31, 42, (494,581,0): 49, 29, 40, (494,582,0): 45, 28, 38, (494,583,0): 42, 26, 36, (494,584,0): 39, 23, 33, (494,585,0): 40, 23, 33, (494,586,0): 41, 21, 32, (494,587,0): 41, 21, 32, (494,588,0): 42, 20, 32, (494,589,0): 44, 20, 33, (494,590,0): 48, 22, 35, (494,591,0): 46, 23, 33, (494,592,0): 45, 22, 32, (494,593,0): 44, 23, 30, (494,594,0): 45, 24, 31, (494,595,0): 45, 24, 31, (494,596,0): 44, 23, 30, (494,597,0): 42, 21, 28, (494,598,0): 39, 18, 25, (494,599,0): 38, 17, 24, (495,0,0): 42, 70, 74, (495,1,0): 41, 70, 74, (495,2,0): 42, 70, 74, (495,3,0): 41, 70, 74, (495,4,0): 42, 70, 74, (495,5,0): 41, 70, 74, (495,6,0): 42, 70, 74, (495,7,0): 41, 70, 74, (495,8,0): 44, 72, 76, (495,9,0): 43, 72, 76, (495,10,0): 44, 72, 76, (495,11,0): 44, 73, 77, (495,12,0): 45, 73, 77, (495,13,0): 45, 74, 78, (495,14,0): 46, 74, 78, (495,15,0): 46, 74, 78, (495,16,0): 47, 75, 79, (495,17,0): 49, 74, 79, (495,18,0): 49, 74, 79, (495,19,0): 50, 75, 80, (495,20,0): 51, 75, 79, (495,21,0): 52, 76, 80, (495,22,0): 54, 75, 78, (495,23,0): 54, 75, 76, (495,24,0): 57, 77, 78, (495,25,0): 58, 76, 76, (495,26,0): 60, 76, 76, (495,27,0): 61, 77, 76, (495,28,0): 62, 76, 76, (495,29,0): 63, 78, 75, (495,30,0): 63, 77, 77, (495,31,0): 65, 77, 75, (495,32,0): 66, 75, 74, (495,33,0): 67, 73, 73, (495,34,0): 66, 72, 70, (495,35,0): 64, 68, 67, (495,36,0): 62, 66, 65, (495,37,0): 61, 63, 62, (495,38,0): 60, 62, 61, (495,39,0): 59, 61, 58, (495,40,0): 64, 64, 62, (495,41,0): 64, 65, 60, (495,42,0): 65, 64, 60, (495,43,0): 65, 64, 60, (495,44,0): 64, 63, 58, (495,45,0): 64, 63, 58, (495,46,0): 66, 63, 58, (495,47,0): 67, 62, 58, (495,48,0): 69, 62, 56, (495,49,0): 70, 61, 54, (495,50,0): 70, 61, 56, (495,51,0): 70, 59, 53, (495,52,0): 70, 59, 53, (495,53,0): 71, 58, 52, (495,54,0): 71, 58, 52, (495,55,0): 72, 57, 50, (495,56,0): 74, 57, 50, (495,57,0): 76, 57, 50, (495,58,0): 77, 58, 51, (495,59,0): 80, 60, 51, (495,60,0): 82, 59, 51, (495,61,0): 82, 59, 51, (495,62,0): 81, 58, 50, (495,63,0): 81, 58, 50, (495,64,0): 83, 60, 54, (495,65,0): 83, 60, 54, (495,66,0): 83, 60, 54, (495,67,0): 82, 58, 54, (495,68,0): 82, 58, 54, (495,69,0): 81, 57, 53, (495,70,0): 81, 57, 53, (495,71,0): 78, 57, 52, (495,72,0): 75, 54, 49, (495,73,0): 75, 54, 51, (495,74,0): 76, 55, 52, (495,75,0): 76, 55, 52, (495,76,0): 77, 56, 53, (495,77,0): 77, 58, 54, (495,78,0): 79, 58, 55, (495,79,0): 78, 59, 55, (495,80,0): 75, 60, 55, (495,81,0): 74, 59, 54, (495,82,0): 74, 59, 56, (495,83,0): 73, 58, 53, (495,84,0): 72, 57, 54, (495,85,0): 71, 56, 51, (495,86,0): 71, 56, 53, (495,87,0): 70, 55, 50, (495,88,0): 67, 52, 49, (495,89,0): 67, 52, 47, (495,90,0): 68, 53, 50, (495,91,0): 68, 53, 48, (495,92,0): 69, 54, 51, (495,93,0): 69, 54, 49, (495,94,0): 70, 55, 52, (495,95,0): 70, 55, 52, (495,96,0): 70, 52, 50, (495,97,0): 70, 52, 50, (495,98,0): 70, 52, 50, (495,99,0): 70, 52, 50, (495,100,0): 71, 53, 51, (495,101,0): 69, 54, 51, (495,102,0): 69, 54, 51, (495,103,0): 68, 54, 51, (495,104,0): 70, 56, 53, (495,105,0): 70, 56, 53, (495,106,0): 70, 56, 53, (495,107,0): 67, 56, 52, (495,108,0): 67, 56, 52, (495,109,0): 66, 55, 51, (495,110,0): 66, 55, 51, (495,111,0): 65, 54, 48, (495,112,0): 64, 53, 47, (495,113,0): 64, 54, 45, (495,114,0): 64, 54, 45, (495,115,0): 63, 53, 44, (495,116,0): 63, 53, 44, (495,117,0): 61, 51, 42, (495,118,0): 60, 50, 41, (495,119,0): 59, 49, 40, (495,120,0): 58, 48, 39, (495,121,0): 58, 48, 39, (495,122,0): 57, 47, 38, (495,123,0): 57, 47, 38, (495,124,0): 56, 46, 37, (495,125,0): 56, 46, 37, (495,126,0): 55, 45, 36, (495,127,0): 55, 44, 38, (495,128,0): 54, 43, 39, (495,129,0): 53, 42, 40, (495,130,0): 53, 42, 40, (495,131,0): 51, 41, 39, (495,132,0): 52, 41, 39, (495,133,0): 50, 40, 38, (495,134,0): 50, 40, 38, (495,135,0): 50, 40, 38, (495,136,0): 47, 39, 36, (495,137,0): 46, 38, 35, (495,138,0): 46, 38, 35, (495,139,0): 45, 37, 34, (495,140,0): 41, 36, 32, (495,141,0): 40, 35, 31, (495,142,0): 40, 35, 31, (495,143,0): 39, 34, 30, (495,144,0): 41, 36, 32, (495,145,0): 41, 36, 32, (495,146,0): 41, 36, 32, (495,147,0): 41, 36, 32, (495,148,0): 41, 36, 32, (495,149,0): 41, 36, 32, (495,150,0): 41, 36, 32, (495,151,0): 41, 36, 32, (495,152,0): 39, 34, 30, (495,153,0): 39, 34, 30, (495,154,0): 39, 34, 30, (495,155,0): 39, 34, 30, (495,156,0): 39, 34, 30, (495,157,0): 39, 34, 30, (495,158,0): 39, 34, 30, (495,159,0): 38, 34, 31, (495,160,0): 40, 36, 35, (495,161,0): 38, 37, 35, (495,162,0): 40, 36, 37, (495,163,0): 38, 37, 35, (495,164,0): 40, 36, 37, (495,165,0): 38, 37, 35, (495,166,0): 40, 36, 37, (495,167,0): 38, 37, 35, (495,168,0): 41, 37, 38, (495,169,0): 39, 38, 36, (495,170,0): 41, 37, 38, (495,171,0): 39, 38, 36, (495,172,0): 41, 37, 38, (495,173,0): 39, 38, 36, (495,174,0): 41, 37, 38, (495,175,0): 41, 37, 38, (495,176,0): 40, 36, 37, (495,177,0): 42, 36, 38, (495,178,0): 43, 37, 39, (495,179,0): 43, 37, 39, (495,180,0): 43, 37, 39, (495,181,0): 43, 37, 39, (495,182,0): 42, 36, 38, (495,183,0): 41, 35, 37, (495,184,0): 44, 38, 40, (495,185,0): 44, 38, 40, (495,186,0): 44, 38, 40, (495,187,0): 44, 38, 40, (495,188,0): 44, 38, 40, (495,189,0): 44, 38, 40, (495,190,0): 44, 38, 40, (495,191,0): 44, 38, 42, (495,192,0): 44, 34, 42, (495,193,0): 44, 34, 42, (495,194,0): 45, 35, 43, (495,195,0): 45, 35, 43, (495,196,0): 46, 36, 44, (495,197,0): 47, 37, 45, (495,198,0): 48, 38, 46, (495,199,0): 48, 38, 46, (495,200,0): 49, 39, 47, (495,201,0): 49, 39, 47, (495,202,0): 49, 39, 47, (495,203,0): 49, 39, 47, (495,204,0): 49, 39, 47, (495,205,0): 49, 39, 47, (495,206,0): 49, 39, 47, (495,207,0): 49, 39, 48, (495,208,0): 44, 36, 47, (495,209,0): 46, 38, 51, (495,210,0): 47, 39, 52, (495,211,0): 49, 41, 54, (495,212,0): 49, 41, 54, (495,213,0): 47, 39, 52, (495,214,0): 46, 38, 51, (495,215,0): 44, 36, 49, (495,216,0): 47, 39, 52, (495,217,0): 47, 39, 52, (495,218,0): 47, 39, 52, (495,219,0): 47, 39, 52, (495,220,0): 47, 39, 52, (495,221,0): 47, 39, 52, (495,222,0): 47, 39, 52, (495,223,0): 46, 40, 52, (495,224,0): 46, 40, 50, (495,225,0): 46, 40, 50, (495,226,0): 46, 40, 50, (495,227,0): 47, 41, 51, (495,228,0): 47, 41, 51, (495,229,0): 49, 41, 52, (495,230,0): 51, 41, 52, (495,231,0): 52, 42, 53, (495,232,0): 56, 44, 56, (495,233,0): 58, 44, 57, (495,234,0): 59, 45, 58, (495,235,0): 62, 46, 59, (495,236,0): 65, 47, 61, (495,237,0): 67, 49, 63, (495,238,0): 68, 50, 64, (495,239,0): 67, 51, 64, (495,240,0): 63, 49, 64, (495,241,0): 63, 49, 64, (495,242,0): 65, 48, 64, (495,243,0): 67, 49, 63, (495,244,0): 68, 50, 64, (495,245,0): 73, 52, 67, (495,246,0): 76, 53, 69, (495,247,0): 77, 55, 68, (495,248,0): 78, 54, 68, (495,249,0): 80, 56, 69, (495,250,0): 81, 59, 71, (495,251,0): 83, 61, 73, (495,252,0): 84, 62, 74, (495,253,0): 84, 64, 73, (495,254,0): 84, 64, 73, (495,255,0): 84, 64, 73, (495,256,0): 89, 66, 76, (495,257,0): 90, 67, 75, (495,258,0): 91, 70, 79, (495,259,0): 90, 70, 79, (495,260,0): 90, 70, 79, (495,261,0): 85, 68, 76, (495,262,0): 81, 65, 75, (495,263,0): 78, 65, 74, (495,264,0): 78, 65, 74, (495,265,0): 77, 64, 73, (495,266,0): 76, 63, 73, (495,267,0): 75, 62, 72, (495,268,0): 78, 62, 73, (495,269,0): 80, 64, 75, (495,270,0): 83, 67, 80, (495,271,0): 84, 68, 79, (495,272,0): 80, 64, 75, (495,273,0): 79, 63, 74, (495,274,0): 79, 63, 74, (495,275,0): 78, 62, 73, (495,276,0): 78, 62, 73, (495,277,0): 77, 61, 72, (495,278,0): 77, 61, 72, (495,279,0): 77, 61, 72, (495,280,0): 77, 61, 72, (495,281,0): 77, 61, 72, (495,282,0): 77, 61, 72, (495,283,0): 78, 62, 73, (495,284,0): 78, 62, 73, (495,285,0): 79, 63, 74, (495,286,0): 79, 63, 74, (495,287,0): 80, 64, 75, (495,288,0): 83, 67, 80, (495,289,0): 84, 66, 82, (495,290,0): 83, 65, 81, (495,291,0): 84, 66, 80, (495,292,0): 87, 66, 81, (495,293,0): 90, 70, 82, (495,294,0): 94, 72, 84, (495,295,0): 97, 73, 86, (495,296,0): 96, 70, 81, (495,297,0): 100, 72, 84, (495,298,0): 108, 78, 88, (495,299,0): 114, 83, 91, (495,300,0): 117, 86, 94, (495,301,0): 118, 85, 92, (495,302,0): 118, 82, 92, (495,303,0): 118, 81, 89, (495,304,0): 116, 76, 85, (495,305,0): 115, 75, 84, (495,306,0): 112, 75, 82, (495,307,0): 112, 77, 81, (495,308,0): 111, 80, 78, (495,309,0): 116, 82, 80, (495,310,0): 120, 85, 81, (495,311,0): 125, 86, 81, (495,312,0): 129, 86, 80, (495,313,0): 136, 87, 82, (495,314,0): 142, 89, 85, (495,315,0): 143, 88, 83, (495,316,0): 142, 85, 78, (495,317,0): 140, 83, 74, (495,318,0): 139, 85, 73, (495,319,0): 140, 89, 70, (495,320,0): 160, 115, 82, (495,321,0): 167, 128, 89, (495,322,0): 164, 128, 96, (495,323,0): 144, 113, 85, (495,324,0): 126, 99, 80, (495,325,0): 113, 89, 77, (495,326,0): 90, 71, 65, (495,327,0): 65, 49, 49, (495,328,0): 52, 37, 42, (495,329,0): 46, 33, 40, (495,330,0): 41, 28, 37, (495,331,0): 39, 26, 35, (495,332,0): 38, 25, 34, (495,333,0): 37, 24, 33, (495,334,0): 34, 21, 30, (495,335,0): 31, 18, 27, (495,336,0): 31, 20, 28, (495,337,0): 30, 20, 29, (495,338,0): 30, 20, 29, (495,339,0): 29, 19, 28, (495,340,0): 29, 19, 28, (495,341,0): 28, 18, 27, (495,342,0): 28, 18, 27, (495,343,0): 27, 17, 26, (495,344,0): 27, 17, 26, (495,345,0): 26, 16, 25, (495,346,0): 26, 16, 25, (495,347,0): 23, 16, 24, (495,348,0): 24, 14, 25, (495,349,0): 21, 14, 22, (495,350,0): 21, 13, 24, (495,351,0): 22, 12, 23, (495,352,0): 23, 13, 24, (495,353,0): 23, 13, 24, (495,354,0): 23, 11, 23, (495,355,0): 22, 12, 23, (495,356,0): 21, 11, 22, (495,357,0): 21, 11, 22, (495,358,0): 18, 10, 21, (495,359,0): 18, 10, 21, (495,360,0): 20, 12, 23, (495,361,0): 20, 12, 23, (495,362,0): 19, 13, 23, (495,363,0): 19, 13, 23, (495,364,0): 19, 13, 23, (495,365,0): 17, 14, 23, (495,366,0): 19, 13, 23, (495,367,0): 19, 13, 23, (495,368,0): 21, 13, 26, (495,369,0): 21, 13, 26, (495,370,0): 24, 13, 27, (495,371,0): 24, 13, 27, (495,372,0): 25, 15, 26, (495,373,0): 25, 15, 26, (495,374,0): 27, 15, 27, (495,375,0): 27, 15, 27, (495,376,0): 29, 17, 27, (495,377,0): 30, 17, 27, (495,378,0): 30, 17, 26, (495,379,0): 31, 18, 27, (495,380,0): 33, 17, 27, (495,381,0): 34, 18, 28, (495,382,0): 34, 19, 26, (495,383,0): 34, 19, 26, (495,384,0): 36, 21, 28, (495,385,0): 35, 20, 27, (495,386,0): 35, 19, 29, (495,387,0): 34, 19, 26, (495,388,0): 35, 20, 27, (495,389,0): 36, 21, 28, (495,390,0): 39, 22, 28, (495,391,0): 40, 23, 29, (495,392,0): 36, 17, 23, (495,393,0): 39, 20, 26, (495,394,0): 41, 22, 26, (495,395,0): 41, 22, 26, (495,396,0): 38, 19, 23, (495,397,0): 37, 18, 20, (495,398,0): 41, 20, 25, (495,399,0): 43, 24, 26, (495,400,0): 43, 24, 26, (495,401,0): 42, 23, 25, (495,402,0): 41, 22, 24, (495,403,0): 39, 20, 22, (495,404,0): 40, 20, 22, (495,405,0): 40, 20, 22, (495,406,0): 41, 21, 23, (495,407,0): 41, 21, 23, (495,408,0): 43, 23, 25, (495,409,0): 44, 22, 25, (495,410,0): 45, 23, 26, (495,411,0): 46, 24, 27, (495,412,0): 48, 26, 29, (495,413,0): 49, 27, 30, (495,414,0): 52, 27, 31, (495,415,0): 54, 27, 32, (495,416,0): 63, 33, 43, (495,417,0): 64, 32, 43, (495,418,0): 65, 33, 44, (495,419,0): 63, 33, 43, (495,420,0): 62, 32, 42, (495,421,0): 58, 31, 40, (495,422,0): 55, 28, 37, (495,423,0): 53, 27, 36, (495,424,0): 52, 29, 37, (495,425,0): 49, 28, 37, (495,426,0): 46, 25, 34, (495,427,0): 43, 23, 32, (495,428,0): 39, 22, 30, (495,429,0): 39, 22, 30, (495,430,0): 39, 22, 30, (495,431,0): 40, 23, 31, (495,432,0): 37, 22, 29, (495,433,0): 36, 21, 26, (495,434,0): 36, 21, 28, (495,435,0): 36, 21, 28, (495,436,0): 37, 22, 29, (495,437,0): 38, 23, 30, (495,438,0): 40, 24, 34, (495,439,0): 42, 25, 35, (495,440,0): 39, 22, 32, (495,441,0): 39, 22, 32, (495,442,0): 39, 21, 33, (495,443,0): 39, 21, 33, (495,444,0): 38, 22, 33, (495,445,0): 38, 22, 33, (495,446,0): 38, 22, 35, (495,447,0): 38, 22, 35, (495,448,0): 31, 17, 30, (495,449,0): 29, 17, 31, (495,450,0): 28, 14, 29, (495,451,0): 27, 13, 28, (495,452,0): 27, 13, 28, (495,453,0): 31, 14, 30, (495,454,0): 34, 18, 31, (495,455,0): 37, 19, 33, (495,456,0): 35, 17, 29, (495,457,0): 37, 17, 29, (495,458,0): 38, 18, 30, (495,459,0): 39, 19, 30, (495,460,0): 40, 18, 31, (495,461,0): 39, 17, 29, (495,462,0): 38, 16, 29, (495,463,0): 37, 17, 28, (495,464,0): 37, 17, 26, (495,465,0): 37, 17, 26, (495,466,0): 38, 18, 27, (495,467,0): 38, 18, 27, (495,468,0): 39, 18, 25, (495,469,0): 39, 18, 25, (495,470,0): 39, 16, 24, (495,471,0): 41, 15, 24, (495,472,0): 42, 16, 25, (495,473,0): 44, 18, 27, (495,474,0): 45, 18, 27, (495,475,0): 42, 15, 22, (495,476,0): 37, 10, 17, (495,477,0): 34, 7, 14, (495,478,0): 34, 7, 14, (495,479,0): 36, 9, 16, (495,480,0): 34, 7, 16, (495,481,0): 38, 8, 18, (495,482,0): 42, 12, 22, (495,483,0): 46, 15, 23, (495,484,0): 47, 16, 24, (495,485,0): 46, 15, 23, (495,486,0): 44, 13, 21, (495,487,0): 43, 10, 19, (495,488,0): 45, 12, 21, (495,489,0): 42, 9, 16, (495,490,0): 44, 9, 16, (495,491,0): 47, 12, 19, (495,492,0): 49, 9, 18, (495,493,0): 46, 6, 15, (495,494,0): 52, 10, 20, (495,495,0): 71, 15, 26, (495,496,0): 96, 12, 27, (495,497,0): 113, 15, 30, (495,498,0): 116, 13, 32, (495,499,0): 108, 5, 24, (495,500,0): 101, 0, 21, (495,501,0): 96, 3, 24, (495,502,0): 84, 7, 25, (495,503,0): 70, 8, 23, (495,504,0): 47, 1, 11, (495,505,0): 55, 13, 23, (495,506,0): 66, 23, 33, (495,507,0): 70, 22, 36, (495,508,0): 66, 13, 29, (495,509,0): 60, 10, 22, (495,510,0): 56, 14, 24, (495,511,0): 60, 19, 33, (495,512,0): 62, 17, 38, (495,513,0): 70, 17, 43, (495,514,0): 75, 13, 36, (495,515,0): 83, 15, 36, (495,516,0): 95, 20, 41, (495,517,0): 90, 12, 34, (495,518,0): 82, 8, 31, (495,519,0): 88, 19, 40, (495,520,0): 79, 15, 32, (495,521,0): 74, 10, 26, (495,522,0): 79, 11, 24, (495,523,0): 91, 17, 30, (495,524,0): 101, 18, 36, (495,525,0): 100, 15, 36, (495,526,0): 104, 16, 41, (495,527,0): 110, 21, 49, (495,528,0): 109, 23, 48, (495,529,0): 98, 16, 39, (495,530,0): 93, 18, 41, (495,531,0): 98, 26, 50, (495,532,0): 99, 26, 53, (495,533,0): 97, 22, 52, (495,534,0): 100, 21, 53, (495,535,0): 102, 21, 54, (495,536,0): 96, 15, 47, (495,537,0): 112, 29, 59, (495,538,0): 127, 38, 66, (495,539,0): 125, 33, 58, (495,540,0): 111, 19, 40, (495,541,0): 98, 11, 27, (495,542,0): 94, 17, 27, (495,543,0): 98, 23, 30, (495,544,0): 110, 28, 42, (495,545,0): 106, 23, 39, (495,546,0): 99, 21, 35, (495,547,0): 94, 22, 36, (495,548,0): 94, 26, 39, (495,549,0): 96, 30, 42, (495,550,0): 99, 31, 46, (495,551,0): 101, 30, 46, (495,552,0): 102, 30, 44, (495,553,0): 106, 34, 48, (495,554,0): 106, 34, 48, (495,555,0): 104, 30, 43, (495,556,0): 108, 35, 46, (495,557,0): 118, 42, 54, (495,558,0): 118, 42, 52, (495,559,0): 126, 30, 42, (495,560,0): 170, 34, 54, (495,561,0): 188, 40, 62, (495,562,0): 182, 50, 71, (495,563,0): 168, 51, 69, (495,564,0): 153, 48, 63, (495,565,0): 142, 46, 60, (495,566,0): 129, 36, 47, (495,567,0): 112, 26, 37, (495,568,0): 106, 29, 39, (495,569,0): 97, 31, 41, (495,570,0): 84, 33, 42, (495,571,0): 75, 33, 43, (495,572,0): 67, 34, 43, (495,573,0): 66, 33, 42, (495,574,0): 68, 31, 39, (495,575,0): 67, 31, 41, (495,576,0): 68, 36, 49, (495,577,0): 64, 36, 48, (495,578,0): 58, 36, 48, (495,579,0): 54, 34, 45, (495,580,0): 49, 32, 42, (495,581,0): 46, 29, 39, (495,582,0): 46, 26, 37, (495,583,0): 45, 25, 36, (495,584,0): 43, 21, 33, (495,585,0): 42, 20, 32, (495,586,0): 40, 20, 31, (495,587,0): 40, 20, 31, (495,588,0): 38, 21, 31, (495,589,0): 39, 22, 32, (495,590,0): 43, 21, 33, (495,591,0): 43, 21, 33, (495,592,0): 41, 19, 31, (495,593,0): 42, 20, 32, (495,594,0): 43, 21, 33, (495,595,0): 44, 22, 35, (495,596,0): 43, 21, 34, (495,597,0): 41, 21, 33, (495,598,0): 39, 18, 33, (495,599,0): 37, 16, 31, (496,0,0): 44, 69, 76, (496,1,0): 42, 69, 76, (496,2,0): 44, 69, 76, (496,3,0): 42, 69, 76, (496,4,0): 44, 69, 76, (496,5,0): 42, 69, 76, (496,6,0): 44, 69, 76, (496,7,0): 42, 69, 76, (496,8,0): 45, 70, 77, (496,9,0): 44, 71, 78, (496,10,0): 46, 71, 78, (496,11,0): 45, 72, 79, (496,12,0): 47, 72, 79, (496,13,0): 46, 73, 80, (496,14,0): 48, 73, 80, (496,15,0): 48, 73, 78, (496,16,0): 49, 72, 78, (496,17,0): 50, 74, 78, (496,18,0): 50, 74, 78, (496,19,0): 51, 75, 79, (496,20,0): 53, 74, 79, (496,21,0): 54, 75, 80, (496,22,0): 55, 74, 80, (496,23,0): 55, 74, 78, (496,24,0): 55, 73, 77, (496,25,0): 56, 74, 78, (496,26,0): 60, 75, 80, (496,27,0): 61, 76, 81, (496,28,0): 61, 76, 81, (496,29,0): 61, 76, 79, (496,30,0): 61, 76, 81, (496,31,0): 61, 75, 78, (496,32,0): 67, 77, 78, (496,33,0): 67, 76, 75, (496,34,0): 66, 75, 74, (496,35,0): 67, 73, 73, (496,36,0): 65, 71, 71, (496,37,0): 64, 68, 67, (496,38,0): 63, 67, 66, (496,39,0): 64, 66, 63, (496,40,0): 61, 61, 59, (496,41,0): 62, 62, 60, (496,42,0): 66, 65, 61, (496,43,0): 67, 66, 62, (496,44,0): 69, 65, 62, (496,45,0): 68, 64, 61, (496,46,0): 68, 63, 60, (496,47,0): 68, 60, 57, (496,48,0): 69, 59, 57, (496,49,0): 70, 59, 55, (496,50,0): 70, 59, 57, (496,51,0): 72, 58, 55, (496,52,0): 72, 58, 55, (496,53,0): 73, 58, 53, (496,54,0): 75, 57, 53, (496,55,0): 76, 57, 53, (496,56,0): 80, 61, 57, (496,57,0): 81, 60, 55, (496,58,0): 83, 59, 55, (496,59,0): 83, 60, 54, (496,60,0): 85, 60, 55, (496,61,0): 85, 60, 55, (496,62,0): 85, 60, 55, (496,63,0): 87, 60, 53, (496,64,0): 87, 60, 53, (496,65,0): 86, 59, 52, (496,66,0): 86, 59, 52, (496,67,0): 85, 57, 53, (496,68,0): 83, 58, 53, (496,69,0): 82, 57, 52, (496,70,0): 82, 57, 53, (496,71,0): 81, 57, 53, (496,72,0): 78, 57, 54, (496,73,0): 77, 56, 55, (496,74,0): 75, 55, 54, (496,75,0): 74, 54, 53, (496,76,0): 74, 54, 55, (496,77,0): 75, 57, 57, (496,78,0): 78, 58, 59, (496,79,0): 79, 61, 61, (496,80,0): 78, 62, 62, (496,81,0): 77, 63, 60, (496,82,0): 76, 62, 61, (496,83,0): 74, 60, 57, (496,84,0): 73, 59, 58, (496,85,0): 72, 58, 55, (496,86,0): 71, 57, 56, (496,87,0): 70, 56, 53, (496,88,0): 69, 55, 54, (496,89,0): 69, 55, 52, (496,90,0): 69, 55, 54, (496,91,0): 69, 55, 52, (496,92,0): 69, 55, 54, (496,93,0): 69, 55, 52, (496,94,0): 69, 55, 54, (496,95,0): 70, 54, 54, (496,96,0): 74, 56, 56, (496,97,0): 73, 55, 55, (496,98,0): 71, 53, 53, (496,99,0): 67, 51, 51, (496,100,0): 66, 50, 50, (496,101,0): 67, 51, 51, (496,102,0): 68, 52, 52, (496,103,0): 68, 54, 53, (496,104,0): 72, 58, 57, (496,105,0): 69, 58, 56, (496,106,0): 69, 58, 56, (496,107,0): 68, 57, 55, (496,108,0): 66, 55, 53, (496,109,0): 64, 54, 52, (496,110,0): 64, 54, 52, (496,111,0): 63, 53, 51, (496,112,0): 63, 54, 47, (496,113,0): 63, 54, 47, (496,114,0): 62, 53, 46, (496,115,0): 62, 53, 46, (496,116,0): 61, 52, 45, (496,117,0): 61, 52, 45, (496,118,0): 60, 51, 44, (496,119,0): 60, 51, 44, (496,120,0): 56, 47, 40, (496,121,0): 55, 46, 39, (496,122,0): 55, 46, 39, (496,123,0): 54, 45, 38, (496,124,0): 54, 45, 38, (496,125,0): 53, 44, 37, (496,126,0): 53, 44, 37, (496,127,0): 53, 44, 37, (496,128,0): 50, 41, 36, (496,129,0): 50, 41, 36, (496,130,0): 49, 40, 35, (496,131,0): 48, 41, 35, (496,132,0): 48, 39, 34, (496,133,0): 46, 39, 33, (496,134,0): 45, 38, 32, (496,135,0): 45, 38, 32, (496,136,0): 47, 40, 34, (496,137,0): 47, 40, 34, (496,138,0): 46, 39, 33, (496,139,0): 45, 38, 32, (496,140,0): 43, 36, 30, (496,141,0): 42, 35, 29, (496,142,0): 41, 34, 28, (496,143,0): 38, 33, 29, (496,144,0): 41, 36, 32, (496,145,0): 40, 36, 33, (496,146,0): 40, 36, 33, (496,147,0): 40, 36, 33, (496,148,0): 40, 36, 33, (496,149,0): 40, 36, 33, (496,150,0): 40, 36, 33, (496,151,0): 40, 36, 33, (496,152,0): 38, 34, 31, (496,153,0): 38, 34, 31, (496,154,0): 38, 34, 31, (496,155,0): 38, 34, 31, (496,156,0): 38, 34, 31, (496,157,0): 38, 34, 31, (496,158,0): 38, 34, 31, (496,159,0): 38, 34, 31, (496,160,0): 39, 35, 32, (496,161,0): 39, 35, 32, (496,162,0): 40, 34, 34, (496,163,0): 39, 35, 32, (496,164,0): 40, 34, 34, (496,165,0): 39, 35, 32, (496,166,0): 40, 34, 34, (496,167,0): 39, 35, 32, (496,168,0): 39, 33, 33, (496,169,0): 38, 34, 31, (496,170,0): 40, 34, 34, (496,171,0): 39, 35, 32, (496,172,0): 41, 35, 35, (496,173,0): 40, 36, 33, (496,174,0): 42, 36, 36, (496,175,0): 41, 37, 36, (496,176,0): 41, 37, 38, (496,177,0): 41, 37, 38, (496,178,0): 41, 37, 38, (496,179,0): 41, 37, 38, (496,180,0): 41, 37, 38, (496,181,0): 41, 37, 38, (496,182,0): 41, 37, 38, (496,183,0): 41, 37, 38, (496,184,0): 43, 39, 40, (496,185,0): 43, 39, 40, (496,186,0): 43, 39, 40, (496,187,0): 43, 39, 40, (496,188,0): 43, 39, 40, (496,189,0): 43, 39, 40, (496,190,0): 43, 39, 40, (496,191,0): 43, 38, 42, (496,192,0): 42, 35, 42, (496,193,0): 42, 35, 43, (496,194,0): 43, 36, 44, (496,195,0): 43, 36, 44, (496,196,0): 44, 37, 45, (496,197,0): 44, 37, 45, (496,198,0): 45, 38, 46, (496,199,0): 45, 38, 46, (496,200,0): 46, 39, 47, (496,201,0): 46, 39, 47, (496,202,0): 46, 39, 47, (496,203,0): 46, 39, 47, (496,204,0): 46, 39, 47, (496,205,0): 46, 39, 47, (496,206,0): 46, 39, 47, (496,207,0): 46, 39, 47, (496,208,0): 44, 38, 48, (496,209,0): 44, 38, 50, (496,210,0): 45, 39, 51, (496,211,0): 45, 39, 51, (496,212,0): 46, 40, 52, (496,213,0): 46, 40, 52, (496,214,0): 47, 41, 53, (496,215,0): 47, 41, 53, (496,216,0): 44, 38, 50, (496,217,0): 44, 38, 50, (496,218,0): 44, 38, 50, (496,219,0): 44, 38, 50, (496,220,0): 44, 38, 50, (496,221,0): 44, 38, 50, (496,222,0): 44, 38, 50, (496,223,0): 44, 38, 50, (496,224,0): 45, 39, 51, (496,225,0): 46, 38, 51, (496,226,0): 47, 39, 52, (496,227,0): 49, 41, 54, (496,228,0): 50, 42, 55, (496,229,0): 53, 42, 56, (496,230,0): 54, 43, 57, (496,231,0): 56, 44, 58, (496,232,0): 58, 44, 59, (496,233,0): 58, 44, 59, (496,234,0): 59, 45, 60, (496,235,0): 60, 46, 61, (496,236,0): 63, 46, 62, (496,237,0): 64, 47, 63, (496,238,0): 65, 48, 64, (496,239,0): 65, 49, 62, (496,240,0): 63, 47, 60, (496,241,0): 64, 48, 61, (496,242,0): 65, 49, 62, (496,243,0): 68, 50, 62, (496,244,0): 69, 51, 63, (496,245,0): 71, 53, 65, (496,246,0): 74, 54, 66, (496,247,0): 75, 55, 66, (496,248,0): 77, 57, 68, (496,249,0): 77, 57, 66, (496,250,0): 79, 59, 68, (496,251,0): 80, 60, 69, (496,252,0): 82, 62, 71, (496,253,0): 81, 64, 70, (496,254,0): 82, 65, 71, (496,255,0): 85, 66, 72, (496,256,0): 89, 68, 77, (496,257,0): 89, 68, 77, (496,258,0): 89, 67, 79, (496,259,0): 87, 67, 78, (496,260,0): 87, 67, 78, (496,261,0): 84, 67, 77, (496,262,0): 84, 67, 77, (496,263,0): 82, 66, 76, (496,264,0): 78, 62, 72, (496,265,0): 78, 62, 72, (496,266,0): 79, 63, 73, (496,267,0): 79, 63, 73, (496,268,0): 78, 65, 74, (496,269,0): 78, 65, 74, (496,270,0): 79, 66, 76, (496,271,0): 81, 65, 76, (496,272,0): 77, 61, 72, (496,273,0): 78, 60, 72, (496,274,0): 78, 60, 72, (496,275,0): 79, 61, 73, (496,276,0): 79, 61, 73, (496,277,0): 80, 62, 74, (496,278,0): 80, 62, 74, (496,279,0): 81, 63, 75, (496,280,0): 81, 63, 75, (496,281,0): 81, 63, 75, (496,282,0): 81, 63, 75, (496,283,0): 81, 63, 75, (496,284,0): 81, 63, 75, (496,285,0): 81, 63, 75, (496,286,0): 81, 63, 75, (496,287,0): 80, 64, 75, (496,288,0): 82, 66, 79, (496,289,0): 83, 67, 80, (496,290,0): 83, 67, 80, (496,291,0): 84, 68, 79, (496,292,0): 84, 68, 79, (496,293,0): 85, 69, 80, (496,294,0): 86, 69, 79, (496,295,0): 88, 68, 79, (496,296,0): 94, 71, 81, (496,297,0): 99, 73, 84, (496,298,0): 107, 77, 89, (496,299,0): 113, 81, 92, (496,300,0): 119, 83, 95, (496,301,0): 121, 83, 94, (496,302,0): 122, 81, 95, (496,303,0): 121, 81, 92, (496,304,0): 117, 77, 85, (496,305,0): 114, 78, 82, (496,306,0): 113, 77, 79, (496,307,0): 113, 77, 77, (496,308,0): 115, 79, 79, (496,309,0): 120, 82, 81, (496,310,0): 124, 84, 84, (496,311,0): 128, 86, 87, (496,312,0): 135, 89, 91, (496,313,0): 140, 88, 90, (496,314,0): 145, 89, 88, (496,315,0): 149, 90, 86, (496,316,0): 152, 89, 80, (496,317,0): 155, 92, 77, (496,318,0): 161, 96, 78, (496,319,0): 164, 100, 73, (496,320,0): 179, 121, 81, (496,321,0): 180, 129, 84, (496,322,0): 173, 129, 90, (496,323,0): 156, 120, 88, (496,324,0): 136, 108, 84, (496,325,0): 116, 95, 78, (496,326,0): 94, 77, 69, (496,327,0): 75, 61, 58, (496,328,0): 58, 46, 46, (496,329,0): 46, 34, 36, (496,330,0): 37, 25, 29, (496,331,0): 39, 24, 29, (496,332,0): 42, 25, 33, (496,333,0): 39, 22, 32, (496,334,0): 39, 19, 30, (496,335,0): 39, 22, 32, (496,336,0): 34, 18, 28, (496,337,0): 34, 18, 28, (496,338,0): 33, 17, 27, (496,339,0): 33, 17, 27, (496,340,0): 31, 18, 27, (496,341,0): 31, 18, 27, (496,342,0): 31, 18, 28, (496,343,0): 31, 18, 28, (496,344,0): 27, 15, 27, (496,345,0): 27, 15, 27, (496,346,0): 27, 15, 27, (496,347,0): 26, 16, 27, (496,348,0): 27, 15, 29, (496,349,0): 26, 16, 27, (496,350,0): 26, 15, 29, (496,351,0): 26, 15, 29, (496,352,0): 24, 13, 29, (496,353,0): 22, 14, 29, (496,354,0): 24, 13, 29, (496,355,0): 21, 13, 28, (496,356,0): 21, 13, 28, (496,357,0): 20, 12, 27, (496,358,0): 20, 12, 27, (496,359,0): 20, 12, 27, (496,360,0): 20, 12, 27, (496,361,0): 20, 12, 27, (496,362,0): 20, 12, 27, (496,363,0): 20, 12, 27, (496,364,0): 20, 12, 27, (496,365,0): 19, 13, 27, (496,366,0): 20, 12, 27, (496,367,0): 20, 12, 27, (496,368,0): 23, 12, 26, (496,369,0): 22, 11, 25, (496,370,0): 22, 10, 24, (496,371,0): 22, 10, 24, (496,372,0): 23, 11, 25, (496,373,0): 24, 12, 26, (496,374,0): 27, 13, 26, (496,375,0): 28, 14, 27, (496,376,0): 29, 16, 26, (496,377,0): 32, 16, 27, (496,378,0): 32, 16, 26, (496,379,0): 33, 17, 27, (496,380,0): 34, 17, 27, (496,381,0): 35, 18, 28, (496,382,0): 35, 18, 28, (496,383,0): 35, 18, 26, (496,384,0): 35, 18, 26, (496,385,0): 35, 18, 24, (496,386,0): 35, 18, 26, (496,387,0): 35, 18, 24, (496,388,0): 35, 18, 24, (496,389,0): 35, 18, 24, (496,390,0): 35, 18, 24, (496,391,0): 35, 18, 24, (496,392,0): 35, 18, 24, (496,393,0): 36, 19, 25, (496,394,0): 36, 19, 25, (496,395,0): 37, 20, 26, (496,396,0): 37, 20, 26, (496,397,0): 38, 22, 25, (496,398,0): 40, 21, 27, (496,399,0): 40, 21, 25, (496,400,0): 42, 22, 24, (496,401,0): 43, 21, 24, (496,402,0): 43, 21, 24, (496,403,0): 43, 21, 24, (496,404,0): 42, 20, 23, (496,405,0): 42, 20, 23, (496,406,0): 42, 20, 23, (496,407,0): 42, 20, 23, (496,408,0): 43, 21, 24, (496,409,0): 45, 20, 24, (496,410,0): 45, 20, 24, (496,411,0): 46, 21, 25, (496,412,0): 49, 24, 28, (496,413,0): 52, 27, 31, (496,414,0): 54, 29, 33, (496,415,0): 56, 31, 35, (496,416,0): 56, 29, 38, (496,417,0): 57, 30, 39, (496,418,0): 56, 30, 39, (496,419,0): 56, 30, 39, (496,420,0): 54, 31, 41, (496,421,0): 54, 33, 42, (496,422,0): 54, 33, 42, (496,423,0): 53, 33, 42, (496,424,0): 47, 32, 39, (496,425,0): 43, 30, 39, (496,426,0): 40, 27, 36, (496,427,0): 36, 25, 33, (496,428,0): 33, 23, 31, (496,429,0): 31, 21, 29, (496,430,0): 28, 21, 29, (496,431,0): 30, 20, 29, (496,432,0): 31, 20, 28, (496,433,0): 31, 18, 25, (496,434,0): 31, 18, 27, (496,435,0): 31, 18, 27, (496,436,0): 32, 19, 28, (496,437,0): 33, 20, 29, (496,438,0): 35, 22, 31, (496,439,0): 38, 22, 32, (496,440,0): 41, 25, 35, (496,441,0): 41, 25, 35, (496,442,0): 42, 25, 35, (496,443,0): 42, 25, 35, (496,444,0): 41, 24, 34, (496,445,0): 41, 24, 34, (496,446,0): 41, 23, 35, (496,447,0): 40, 24, 35, (496,448,0): 33, 21, 33, (496,449,0): 32, 22, 33, (496,450,0): 32, 20, 32, (496,451,0): 31, 19, 31, (496,452,0): 29, 17, 29, (496,453,0): 28, 16, 28, (496,454,0): 28, 14, 27, (496,455,0): 30, 14, 27, (496,456,0): 27, 11, 24, (496,457,0): 30, 12, 26, (496,458,0): 32, 14, 28, (496,459,0): 34, 16, 28, (496,460,0): 37, 16, 31, (496,461,0): 36, 16, 28, (496,462,0): 35, 14, 29, (496,463,0): 34, 14, 25, (496,464,0): 37, 18, 24, (496,465,0): 38, 17, 22, (496,466,0): 37, 16, 21, (496,467,0): 37, 16, 21, (496,468,0): 38, 15, 21, (496,469,0): 41, 16, 22, (496,470,0): 43, 18, 24, (496,471,0): 44, 19, 25, (496,472,0): 40, 14, 23, (496,473,0): 39, 13, 22, (496,474,0): 35, 12, 20, (496,475,0): 34, 11, 19, (496,476,0): 32, 11, 18, (496,477,0): 31, 12, 18, (496,478,0): 32, 13, 19, (496,479,0): 32, 13, 19, (496,480,0): 32, 12, 21, (496,481,0): 33, 12, 21, (496,482,0): 36, 10, 21, (496,483,0): 38, 11, 20, (496,484,0): 38, 11, 20, (496,485,0): 41, 11, 21, (496,486,0): 41, 11, 19, (496,487,0): 42, 11, 19, (496,488,0): 43, 12, 18, (496,489,0): 46, 14, 19, (496,490,0): 50, 13, 20, (496,491,0): 49, 8, 16, (496,492,0): 52, 2, 11, (496,493,0): 58, 5, 15, (496,494,0): 75, 15, 25, (496,495,0): 94, 22, 34, (496,496,0): 110, 16, 34, (496,497,0): 113, 10, 29, (496,498,0): 105, 11, 29, (496,499,0): 99, 12, 29, (496,500,0): 93, 15, 31, (496,501,0): 82, 14, 29, (496,502,0): 67, 11, 22, (496,503,0): 55, 8, 18, (496,504,0): 57, 15, 25, (496,505,0): 54, 14, 25, (496,506,0): 54, 12, 26, (496,507,0): 53, 10, 27, (496,508,0): 56, 12, 29, (496,509,0): 59, 15, 32, (496,510,0): 59, 18, 34, (496,511,0): 63, 19, 36, (496,512,0): 73, 18, 39, (496,513,0): 75, 13, 34, (496,514,0): 73, 10, 29, (496,515,0): 77, 10, 28, (496,516,0): 84, 11, 31, (496,517,0): 90, 12, 34, (496,518,0): 91, 13, 35, (496,519,0): 89, 16, 35, (496,520,0): 75, 8, 25, (496,521,0): 80, 14, 28, (496,522,0): 86, 15, 31, (496,523,0): 92, 15, 31, (496,524,0): 105, 18, 37, (496,525,0): 114, 22, 43, (496,526,0): 112, 20, 43, (496,527,0): 103, 15, 39, (496,528,0): 101, 19, 42, (496,529,0): 89, 15, 38, (496,530,0): 83, 18, 38, (496,531,0): 85, 26, 44, (496,532,0): 84, 29, 48, (496,533,0): 82, 25, 44, (496,534,0): 90, 27, 48, (496,535,0): 103, 33, 57, (496,536,0): 114, 34, 61, (496,537,0): 121, 32, 62, (496,538,0): 120, 25, 55, (496,539,0): 111, 15, 43, (496,540,0): 106, 13, 40, (496,541,0): 104, 19, 42, (496,542,0): 100, 23, 43, (496,543,0): 92, 21, 35, (496,544,0): 87, 17, 28, (496,545,0): 94, 22, 33, (496,546,0): 104, 26, 39, (496,547,0): 108, 27, 42, (496,548,0): 104, 26, 40, (496,549,0): 102, 26, 39, (496,550,0): 105, 31, 44, (496,551,0): 109, 35, 48, (496,552,0): 112, 36, 49, (496,553,0): 119, 38, 53, (496,554,0): 120, 36, 52, (496,555,0): 112, 28, 43, (496,556,0): 107, 27, 40, (496,557,0): 105, 33, 44, (496,558,0): 101, 42, 48, (496,559,0): 100, 40, 48, (496,560,0): 102, 31, 49, (496,561,0): 114, 36, 62, (496,562,0): 125, 44, 76, (496,563,0): 137, 50, 84, (496,564,0): 153, 52, 86, (496,565,0): 163, 50, 80, (496,566,0): 167, 41, 63, (496,567,0): 159, 37, 50, (496,568,0): 145, 38, 46, (496,569,0): 116, 29, 35, (496,570,0): 86, 29, 35, (496,571,0): 75, 38, 45, (496,572,0): 67, 40, 49, (496,573,0): 60, 33, 42, (496,574,0): 64, 28, 38, (496,575,0): 72, 32, 43, (496,576,0): 66, 28, 41, (496,577,0): 61, 29, 40, (496,578,0): 53, 32, 41, (496,579,0): 47, 32, 39, (496,580,0): 43, 30, 37, (496,581,0): 43, 28, 35, (496,582,0): 47, 24, 34, (496,583,0): 51, 21, 33, (496,584,0): 50, 18, 33, (496,585,0): 49, 18, 33, (496,586,0): 43, 19, 33, (496,587,0): 38, 20, 32, (496,588,0): 33, 21, 31, (496,589,0): 30, 20, 29, (496,590,0): 32, 19, 29, (496,591,0): 33, 17, 30, (496,592,0): 39, 16, 36, (496,593,0): 40, 15, 37, (496,594,0): 40, 16, 38, (496,595,0): 42, 18, 42, (496,596,0): 43, 20, 46, (496,597,0): 40, 20, 47, (496,598,0): 36, 16, 44, (496,599,0): 31, 11, 39, (497,0,0): 44, 69, 76, (497,1,0): 44, 69, 76, (497,2,0): 44, 69, 76, (497,3,0): 44, 69, 76, (497,4,0): 44, 69, 76, (497,5,0): 44, 69, 76, (497,6,0): 44, 69, 76, (497,7,0): 44, 69, 76, (497,8,0): 45, 70, 77, (497,9,0): 45, 70, 77, (497,10,0): 45, 70, 77, (497,11,0): 46, 71, 78, (497,12,0): 46, 71, 78, (497,13,0): 47, 72, 79, (497,14,0): 47, 72, 79, (497,15,0): 47, 72, 79, (497,16,0): 49, 72, 78, (497,17,0): 52, 73, 78, (497,18,0): 52, 73, 78, (497,19,0): 52, 73, 78, (497,20,0): 53, 74, 79, (497,21,0): 53, 74, 79, (497,22,0): 55, 74, 80, (497,23,0): 55, 74, 80, (497,24,0): 55, 72, 79, (497,25,0): 56, 73, 80, (497,26,0): 59, 74, 81, (497,27,0): 61, 76, 83, (497,28,0): 61, 76, 83, (497,29,0): 61, 76, 83, (497,30,0): 60, 75, 82, (497,31,0): 61, 74, 80, (497,32,0): 65, 76, 78, (497,33,0): 66, 76, 75, (497,34,0): 66, 75, 74, (497,35,0): 65, 74, 73, (497,36,0): 66, 72, 72, (497,37,0): 65, 71, 71, (497,38,0): 65, 69, 68, (497,39,0): 65, 69, 68, (497,40,0): 65, 67, 64, (497,41,0): 65, 65, 63, (497,42,0): 66, 65, 63, (497,43,0): 65, 64, 60, (497,44,0): 67, 63, 60, (497,45,0): 67, 63, 60, (497,46,0): 69, 64, 61, (497,47,0): 71, 63, 61, (497,48,0): 73, 62, 60, (497,49,0): 75, 61, 60, (497,50,0): 75, 61, 60, (497,51,0): 75, 61, 58, (497,52,0): 76, 61, 58, (497,53,0): 76, 61, 58, (497,54,0): 79, 60, 56, (497,55,0): 79, 60, 56, (497,56,0): 81, 60, 57, (497,57,0): 81, 60, 55, (497,58,0): 85, 60, 56, (497,59,0): 85, 60, 56, (497,60,0): 87, 59, 55, (497,61,0): 87, 59, 55, (497,62,0): 87, 59, 55, (497,63,0): 87, 60, 53, (497,64,0): 88, 59, 53, (497,65,0): 88, 59, 51, (497,66,0): 87, 58, 52, (497,67,0): 86, 59, 52, (497,68,0): 85, 57, 53, (497,69,0): 83, 58, 53, (497,70,0): 82, 57, 53, (497,71,0): 81, 57, 55, (497,72,0): 77, 56, 55, (497,73,0): 77, 56, 55, (497,74,0): 76, 56, 57, (497,75,0): 76, 56, 57, (497,76,0): 76, 57, 59, (497,77,0): 77, 58, 60, (497,78,0): 79, 60, 62, (497,79,0): 78, 62, 63, (497,80,0): 78, 64, 63, (497,81,0): 77, 63, 62, (497,82,0): 76, 62, 61, (497,83,0): 75, 61, 60, (497,84,0): 74, 60, 59, (497,85,0): 73, 59, 58, (497,86,0): 72, 58, 57, (497,87,0): 71, 57, 56, (497,88,0): 69, 55, 54, (497,89,0): 69, 55, 54, (497,90,0): 69, 55, 54, (497,91,0): 69, 55, 54, (497,92,0): 69, 55, 54, (497,93,0): 69, 55, 54, (497,94,0): 69, 55, 54, (497,95,0): 69, 55, 54, (497,96,0): 72, 56, 57, (497,97,0): 73, 54, 56, (497,98,0): 69, 53, 54, (497,99,0): 68, 52, 53, (497,100,0): 67, 51, 52, (497,101,0): 68, 52, 53, (497,102,0): 68, 54, 54, (497,103,0): 68, 54, 54, (497,104,0): 70, 58, 58, (497,105,0): 69, 57, 57, (497,106,0): 69, 57, 57, (497,107,0): 68, 56, 56, (497,108,0): 65, 55, 54, (497,109,0): 64, 54, 53, (497,110,0): 64, 54, 53, (497,111,0): 63, 53, 51, (497,112,0): 63, 54, 49, (497,113,0): 63, 54, 47, (497,114,0): 62, 53, 46, (497,115,0): 62, 53, 46, (497,116,0): 61, 52, 45, (497,117,0): 61, 52, 45, (497,118,0): 60, 51, 44, (497,119,0): 60, 51, 44, (497,120,0): 56, 47, 40, (497,121,0): 56, 47, 40, (497,122,0): 55, 46, 39, (497,123,0): 55, 46, 39, (497,124,0): 54, 45, 38, (497,125,0): 54, 45, 38, (497,126,0): 53, 44, 37, (497,127,0): 53, 44, 37, (497,128,0): 51, 44, 38, (497,129,0): 50, 43, 37, (497,130,0): 50, 43, 37, (497,131,0): 48, 41, 35, (497,132,0): 47, 40, 34, (497,133,0): 46, 39, 33, (497,134,0): 45, 38, 32, (497,135,0): 44, 37, 31, (497,136,0): 46, 39, 33, (497,137,0): 45, 38, 32, (497,138,0): 45, 38, 32, (497,139,0): 44, 37, 31, (497,140,0): 43, 36, 30, (497,141,0): 42, 35, 29, (497,142,0): 42, 35, 29, (497,143,0): 39, 34, 30, (497,144,0): 40, 36, 33, (497,145,0): 40, 36, 33, (497,146,0): 40, 36, 33, (497,147,0): 40, 36, 33, (497,148,0): 40, 36, 33, (497,149,0): 40, 36, 33, (497,150,0): 40, 36, 33, (497,151,0): 40, 36, 33, (497,152,0): 38, 34, 31, (497,153,0): 38, 34, 31, (497,154,0): 38, 34, 31, (497,155,0): 38, 34, 31, (497,156,0): 38, 34, 31, (497,157,0): 38, 34, 31, (497,158,0): 38, 34, 31, (497,159,0): 38, 34, 31, (497,160,0): 40, 35, 32, (497,161,0): 40, 35, 32, (497,162,0): 40, 35, 32, (497,163,0): 40, 35, 32, (497,164,0): 40, 35, 32, (497,165,0): 40, 35, 32, (497,166,0): 40, 35, 32, (497,167,0): 40, 35, 32, (497,168,0): 39, 34, 31, (497,169,0): 39, 34, 31, (497,170,0): 40, 35, 32, (497,171,0): 40, 35, 32, (497,172,0): 41, 36, 33, (497,173,0): 41, 36, 33, (497,174,0): 42, 37, 34, (497,175,0): 42, 37, 34, (497,176,0): 41, 37, 38, (497,177,0): 41, 37, 38, (497,178,0): 41, 37, 38, (497,179,0): 41, 37, 38, (497,180,0): 41, 37, 38, (497,181,0): 41, 37, 38, (497,182,0): 41, 37, 38, (497,183,0): 41, 37, 38, (497,184,0): 43, 39, 40, (497,185,0): 43, 39, 40, (497,186,0): 43, 39, 40, (497,187,0): 43, 39, 40, (497,188,0): 43, 39, 40, (497,189,0): 43, 39, 40, (497,190,0): 43, 39, 40, (497,191,0): 43, 38, 42, (497,192,0): 41, 36, 42, (497,193,0): 41, 36, 43, (497,194,0): 42, 37, 44, (497,195,0): 42, 37, 44, (497,196,0): 43, 38, 45, (497,197,0): 43, 38, 45, (497,198,0): 44, 39, 46, (497,199,0): 44, 39, 46, (497,200,0): 45, 40, 47, (497,201,0): 45, 40, 47, (497,202,0): 45, 40, 47, (497,203,0): 45, 40, 47, (497,204,0): 45, 40, 47, (497,205,0): 45, 40, 47, (497,206,0): 45, 40, 47, (497,207,0): 45, 40, 47, (497,208,0): 44, 38, 50, (497,209,0): 44, 38, 50, (497,210,0): 44, 38, 50, (497,211,0): 45, 39, 51, (497,212,0): 45, 39, 51, (497,213,0): 46, 40, 52, (497,214,0): 46, 40, 52, (497,215,0): 47, 41, 53, (497,216,0): 44, 38, 50, (497,217,0): 44, 38, 50, (497,218,0): 44, 38, 50, (497,219,0): 44, 38, 50, (497,220,0): 44, 38, 50, (497,221,0): 44, 38, 50, (497,222,0): 44, 38, 50, (497,223,0): 44, 38, 50, (497,224,0): 46, 38, 51, (497,225,0): 46, 38, 51, (497,226,0): 49, 38, 52, (497,227,0): 51, 40, 54, (497,228,0): 52, 41, 55, (497,229,0): 53, 42, 56, (497,230,0): 55, 43, 57, (497,231,0): 55, 43, 57, (497,232,0): 57, 43, 58, (497,233,0): 58, 44, 59, (497,234,0): 58, 44, 59, (497,235,0): 59, 45, 60, (497,236,0): 63, 46, 62, (497,237,0): 64, 47, 63, (497,238,0): 64, 47, 63, (497,239,0): 65, 48, 64, (497,240,0): 63, 47, 60, (497,241,0): 64, 48, 59, (497,242,0): 66, 48, 60, (497,243,0): 67, 49, 61, (497,244,0): 69, 52, 62, (497,245,0): 71, 54, 64, (497,246,0): 72, 55, 65, (497,247,0): 72, 55, 65, (497,248,0): 75, 58, 66, (497,249,0): 75, 58, 66, (497,250,0): 76, 59, 65, (497,251,0): 78, 61, 67, (497,252,0): 80, 63, 69, (497,253,0): 81, 64, 70, (497,254,0): 84, 65, 69, (497,255,0): 85, 66, 72, (497,256,0): 89, 68, 77, (497,257,0): 89, 67, 79, (497,258,0): 87, 67, 78, (497,259,0): 87, 67, 78, (497,260,0): 86, 66, 77, (497,261,0): 86, 66, 77, (497,262,0): 83, 66, 76, (497,263,0): 83, 66, 76, (497,264,0): 79, 62, 72, (497,265,0): 78, 62, 72, (497,266,0): 78, 62, 72, (497,267,0): 79, 63, 73, (497,268,0): 77, 64, 73, (497,269,0): 78, 65, 74, (497,270,0): 78, 65, 74, (497,271,0): 79, 66, 75, (497,272,0): 79, 61, 73, (497,273,0): 79, 61, 73, (497,274,0): 79, 61, 73, (497,275,0): 80, 62, 74, (497,276,0): 80, 62, 74, (497,277,0): 81, 63, 75, (497,278,0): 81, 63, 75, (497,279,0): 81, 63, 75, (497,280,0): 81, 63, 75, (497,281,0): 81, 63, 75, (497,282,0): 81, 63, 75, (497,283,0): 81, 63, 75, (497,284,0): 81, 63, 75, (497,285,0): 81, 63, 75, (497,286,0): 81, 63, 75, (497,287,0): 81, 63, 75, (497,288,0): 82, 66, 79, (497,289,0): 81, 67, 80, (497,290,0): 81, 68, 78, (497,291,0): 81, 68, 78, (497,292,0): 82, 69, 79, (497,293,0): 84, 68, 79, (497,294,0): 86, 69, 79, (497,295,0): 88, 68, 79, (497,296,0): 92, 71, 80, (497,297,0): 98, 72, 83, (497,298,0): 106, 76, 88, (497,299,0): 112, 78, 92, (497,300,0): 117, 81, 93, (497,301,0): 121, 80, 94, (497,302,0): 122, 80, 94, (497,303,0): 121, 79, 91, (497,304,0): 117, 77, 85, (497,305,0): 114, 78, 80, (497,306,0): 113, 77, 79, (497,307,0): 113, 77, 77, (497,308,0): 117, 79, 78, (497,309,0): 121, 81, 81, (497,310,0): 125, 83, 85, (497,311,0): 129, 84, 87, (497,312,0): 138, 87, 92, (497,313,0): 143, 88, 93, (497,314,0): 148, 89, 91, (497,315,0): 153, 89, 87, (497,316,0): 157, 90, 81, (497,317,0): 163, 94, 79, (497,318,0): 172, 99, 80, (497,319,0): 177, 106, 76, (497,320,0): 193, 129, 85, (497,321,0): 194, 136, 88, (497,322,0): 185, 136, 93, (497,323,0): 167, 127, 92, (497,324,0): 144, 114, 88, (497,325,0): 121, 100, 81, (497,326,0): 96, 82, 69, (497,327,0): 77, 67, 58, (497,328,0): 64, 53, 51, (497,329,0): 51, 39, 39, (497,330,0): 42, 28, 28, (497,331,0): 43, 27, 30, (497,332,0): 45, 26, 32, (497,333,0): 42, 22, 31, (497,334,0): 40, 18, 30, (497,335,0): 40, 20, 31, (497,336,0): 35, 18, 28, (497,337,0): 35, 18, 28, (497,338,0): 35, 18, 28, (497,339,0): 35, 18, 28, (497,340,0): 33, 17, 27, (497,341,0): 33, 17, 27, (497,342,0): 33, 17, 28, (497,343,0): 32, 16, 27, (497,344,0): 28, 14, 27, (497,345,0): 28, 14, 27, (497,346,0): 27, 15, 29, (497,347,0): 27, 15, 29, (497,348,0): 27, 15, 29, (497,349,0): 27, 15, 29, (497,350,0): 26, 15, 29, (497,351,0): 26, 15, 29, (497,352,0): 22, 13, 30, (497,353,0): 22, 13, 30, (497,354,0): 22, 13, 30, (497,355,0): 21, 12, 29, (497,356,0): 21, 12, 29, (497,357,0): 20, 11, 28, (497,358,0): 20, 11, 28, (497,359,0): 20, 11, 28, (497,360,0): 20, 11, 28, (497,361,0): 20, 11, 28, (497,362,0): 20, 11, 28, (497,363,0): 20, 11, 28, (497,364,0): 20, 11, 28, (497,365,0): 20, 11, 28, (497,366,0): 20, 11, 28, (497,367,0): 20, 12, 27, (497,368,0): 22, 11, 27, (497,369,0): 22, 10, 24, (497,370,0): 22, 10, 24, (497,371,0): 21, 9, 23, (497,372,0): 23, 9, 24, (497,373,0): 24, 10, 25, (497,374,0): 26, 12, 25, (497,375,0): 27, 13, 26, (497,376,0): 31, 15, 26, (497,377,0): 32, 16, 27, (497,378,0): 33, 16, 26, (497,379,0): 33, 16, 26, (497,380,0): 34, 17, 27, (497,381,0): 34, 17, 27, (497,382,0): 37, 17, 28, (497,383,0): 37, 17, 26, (497,384,0): 35, 18, 24, (497,385,0): 35, 18, 24, (497,386,0): 35, 18, 24, (497,387,0): 35, 18, 24, (497,388,0): 35, 18, 24, (497,389,0): 35, 18, 24, (497,390,0): 35, 18, 24, (497,391,0): 35, 18, 24, (497,392,0): 35, 18, 24, (497,393,0): 36, 19, 25, (497,394,0): 36, 19, 25, (497,395,0): 36, 19, 25, (497,396,0): 37, 20, 26, (497,397,0): 37, 20, 26, (497,398,0): 38, 21, 27, (497,399,0): 40, 21, 25, (497,400,0): 44, 21, 27, (497,401,0): 45, 20, 24, (497,402,0): 45, 20, 24, (497,403,0): 45, 20, 24, (497,404,0): 45, 20, 24, (497,405,0): 45, 20, 24, (497,406,0): 45, 20, 24, (497,407,0): 45, 20, 24, (497,408,0): 46, 21, 25, (497,409,0): 46, 21, 25, (497,410,0): 46, 21, 25, (497,411,0): 47, 22, 26, (497,412,0): 48, 23, 27, (497,413,0): 50, 25, 29, (497,414,0): 53, 28, 32, (497,415,0): 54, 29, 33, (497,416,0): 54, 28, 37, (497,417,0): 54, 28, 37, (497,418,0): 52, 29, 37, (497,419,0): 52, 31, 38, (497,420,0): 53, 32, 41, (497,421,0): 53, 33, 42, (497,422,0): 51, 34, 42, (497,423,0): 50, 35, 42, (497,424,0): 45, 32, 41, (497,425,0): 43, 32, 40, (497,426,0): 39, 29, 38, (497,427,0): 34, 27, 35, (497,428,0): 31, 24, 32, (497,429,0): 29, 24, 31, (497,430,0): 26, 23, 32, (497,431,0): 28, 23, 30, (497,432,0): 30, 20, 29, (497,433,0): 30, 19, 27, (497,434,0): 30, 19, 27, (497,435,0): 30, 19, 27, (497,436,0): 31, 20, 28, (497,437,0): 32, 21, 29, (497,438,0): 35, 22, 31, (497,439,0): 36, 23, 32, (497,440,0): 41, 25, 35, (497,441,0): 41, 25, 35, (497,442,0): 41, 24, 34, (497,443,0): 41, 24, 34, (497,444,0): 41, 24, 34, (497,445,0): 41, 24, 34, (497,446,0): 41, 24, 34, (497,447,0): 40, 24, 34, (497,448,0): 33, 21, 31, (497,449,0): 32, 22, 33, (497,450,0): 31, 21, 32, (497,451,0): 29, 19, 30, (497,452,0): 28, 18, 29, (497,453,0): 28, 16, 28, (497,454,0): 28, 14, 27, (497,455,0): 27, 13, 26, (497,456,0): 27, 11, 24, (497,457,0): 28, 12, 25, (497,458,0): 31, 13, 27, (497,459,0): 33, 15, 29, (497,460,0): 35, 14, 29, (497,461,0): 35, 14, 29, (497,462,0): 34, 13, 28, (497,463,0): 33, 13, 24, (497,464,0): 37, 16, 23, (497,465,0): 37, 17, 19, (497,466,0): 37, 15, 18, (497,467,0): 37, 15, 18, (497,468,0): 39, 14, 18, (497,469,0): 40, 15, 21, (497,470,0): 43, 16, 23, (497,471,0): 43, 18, 24, (497,472,0): 39, 13, 22, (497,473,0): 36, 13, 21, (497,474,0): 34, 13, 22, (497,475,0): 31, 11, 20, (497,476,0): 28, 11, 19, (497,477,0): 27, 12, 19, (497,478,0): 25, 12, 19, (497,479,0): 26, 13, 22, (497,480,0): 27, 10, 20, (497,481,0): 29, 9, 20, (497,482,0): 31, 10, 19, (497,483,0): 32, 9, 19, (497,484,0): 35, 9, 20, (497,485,0): 36, 9, 18, (497,486,0): 37, 10, 17, (497,487,0): 39, 9, 17, (497,488,0): 42, 11, 17, (497,489,0): 47, 12, 18, (497,490,0): 51, 12, 17, (497,491,0): 54, 9, 16, (497,492,0): 61, 5, 14, (497,493,0): 70, 8, 19, (497,494,0): 85, 15, 26, (497,495,0): 99, 18, 33, (497,496,0): 112, 17, 37, (497,497,0): 110, 13, 33, (497,498,0): 99, 12, 29, (497,499,0): 89, 12, 28, (497,500,0): 78, 14, 28, (497,501,0): 67, 14, 24, (497,502,0): 55, 9, 19, (497,503,0): 46, 6, 15, (497,504,0): 57, 17, 28, (497,505,0): 54, 14, 25, (497,506,0): 50, 9, 23, (497,507,0): 50, 7, 24, (497,508,0): 51, 8, 27, (497,509,0): 56, 13, 33, (497,510,0): 61, 19, 39, (497,511,0): 68, 21, 41, (497,512,0): 74, 12, 33, (497,513,0): 80, 12, 33, (497,514,0): 79, 15, 32, (497,515,0): 79, 12, 30, (497,516,0): 81, 8, 28, (497,517,0): 85, 7, 29, (497,518,0): 91, 12, 33, (497,519,0): 94, 19, 39, (497,520,0): 83, 15, 30, (497,521,0): 81, 15, 29, (497,522,0): 87, 16, 32, (497,523,0): 99, 20, 39, (497,524,0): 114, 25, 45, (497,525,0): 122, 29, 50, (497,526,0): 123, 30, 51, (497,527,0): 121, 32, 54, (497,528,0): 113, 29, 53, (497,529,0): 103, 28, 51, (497,530,0): 97, 29, 50, (497,531,0): 93, 32, 50, (497,532,0): 87, 33, 49, (497,533,0): 82, 29, 45, (497,534,0): 86, 27, 45, (497,535,0): 93, 28, 48, (497,536,0): 108, 30, 54, (497,537,0): 110, 26, 52, (497,538,0): 108, 18, 46, (497,539,0): 102, 12, 40, (497,540,0): 101, 17, 43, (497,541,0): 102, 24, 48, (497,542,0): 91, 23, 44, (497,543,0): 81, 17, 33, (497,544,0): 81, 18, 29, (497,545,0): 94, 24, 34, (497,546,0): 106, 28, 41, (497,547,0): 111, 27, 42, (497,548,0): 106, 22, 37, (497,549,0): 104, 22, 36, (497,550,0): 103, 27, 39, (497,551,0): 106, 33, 44, (497,552,0): 113, 37, 49, (497,553,0): 122, 42, 55, (497,554,0): 127, 39, 55, (497,555,0): 119, 31, 47, (497,556,0): 108, 26, 40, (497,557,0): 100, 30, 40, (497,558,0): 89, 37, 41, (497,559,0): 81, 38, 45, (497,560,0): 77, 36, 52, (497,561,0): 82, 38, 63, (497,562,0): 91, 37, 71, (497,563,0): 109, 39, 76, (497,564,0): 145, 47, 86, (497,565,0): 181, 60, 93, (497,566,0): 206, 59, 85, (497,567,0): 206, 55, 70, (497,568,0): 194, 55, 62, (497,569,0): 155, 40, 45, (497,570,0): 106, 27, 33, (497,571,0): 75, 24, 31, (497,572,0): 62, 29, 38, (497,573,0): 59, 31, 43, (497,574,0): 62, 29, 40, (497,575,0): 64, 28, 38, (497,576,0): 60, 27, 38, (497,577,0): 58, 28, 38, (497,578,0): 50, 31, 37, (497,579,0): 43, 31, 35, (497,580,0): 42, 29, 36, (497,581,0): 44, 27, 35, (497,582,0): 49, 23, 34, (497,583,0): 52, 20, 33, (497,584,0): 51, 17, 33, (497,585,0): 48, 17, 32, (497,586,0): 42, 20, 33, (497,587,0): 37, 21, 32, (497,588,0): 32, 22, 31, (497,589,0): 29, 22, 30, (497,590,0): 30, 20, 31, (497,591,0): 32, 18, 33, (497,592,0): 39, 15, 37, (497,593,0): 40, 14, 39, (497,594,0): 39, 15, 41, (497,595,0): 42, 17, 46, (497,596,0): 43, 20, 49, (497,597,0): 39, 18, 49, (497,598,0): 35, 14, 47, (497,599,0): 31, 9, 45, (498,0,0): 44, 69, 76, (498,1,0): 44, 69, 76, (498,2,0): 44, 69, 76, (498,3,0): 44, 69, 76, (498,4,0): 44, 69, 76, (498,5,0): 44, 69, 76, (498,6,0): 44, 69, 76, (498,7,0): 44, 69, 76, (498,8,0): 44, 69, 76, (498,9,0): 44, 69, 76, (498,10,0): 44, 69, 76, (498,11,0): 45, 70, 77, (498,12,0): 45, 70, 77, (498,13,0): 46, 71, 78, (498,14,0): 46, 71, 78, (498,15,0): 46, 71, 78, (498,16,0): 49, 72, 78, (498,17,0): 49, 72, 78, (498,18,0): 51, 71, 78, (498,19,0): 52, 72, 79, (498,20,0): 53, 73, 80, (498,21,0): 53, 73, 80, (498,22,0): 54, 73, 80, (498,23,0): 55, 74, 81, (498,24,0): 55, 72, 80, (498,25,0): 56, 73, 81, (498,26,0): 57, 74, 82, (498,27,0): 58, 75, 83, (498,28,0): 61, 75, 84, (498,29,0): 61, 75, 84, (498,30,0): 60, 74, 83, (498,31,0): 60, 73, 79, (498,32,0): 64, 75, 77, (498,33,0): 65, 75, 76, (498,34,0): 65, 75, 76, (498,35,0): 65, 75, 76, (498,36,0): 65, 74, 73, (498,37,0): 67, 73, 73, (498,38,0): 68, 72, 71, (498,39,0): 68, 72, 71, (498,40,0): 70, 72, 71, (498,41,0): 69, 69, 67, (498,42,0): 67, 66, 64, (498,43,0): 65, 64, 62, (498,44,0): 66, 62, 59, (498,45,0): 67, 63, 60, (498,46,0): 69, 65, 62, (498,47,0): 71, 66, 63, (498,48,0): 76, 65, 63, (498,49,0): 78, 64, 61, (498,50,0): 78, 64, 61, (498,51,0): 78, 64, 61, (498,52,0): 79, 64, 61, (498,53,0): 79, 64, 59, (498,54,0): 82, 63, 59, (498,55,0): 82, 63, 59, (498,56,0): 82, 61, 56, (498,57,0): 82, 61, 56, (498,58,0): 85, 60, 56, (498,59,0): 85, 60, 55, (498,60,0): 87, 59, 55, (498,61,0): 87, 59, 55, (498,62,0): 87, 60, 53, (498,63,0): 87, 60, 53, (498,64,0): 88, 61, 54, (498,65,0): 88, 61, 54, (498,66,0): 87, 59, 55, (498,67,0): 87, 59, 55, (498,68,0): 86, 58, 55, (498,69,0): 84, 59, 55, (498,70,0): 83, 57, 56, (498,71,0): 82, 58, 56, (498,72,0): 75, 54, 53, (498,73,0): 76, 55, 54, (498,74,0): 77, 57, 58, (498,75,0): 79, 59, 60, (498,76,0): 79, 60, 62, (498,77,0): 80, 61, 63, (498,78,0): 78, 62, 63, (498,79,0): 78, 62, 63, (498,80,0): 78, 64, 63, (498,81,0): 78, 64, 63, (498,82,0): 77, 63, 62, (498,83,0): 76, 62, 61, (498,84,0): 75, 61, 60, (498,85,0): 74, 60, 59, (498,86,0): 73, 59, 58, (498,87,0): 73, 59, 58, (498,88,0): 70, 56, 55, (498,89,0): 70, 56, 55, (498,90,0): 70, 56, 55, (498,91,0): 70, 56, 55, (498,92,0): 70, 56, 55, (498,93,0): 70, 56, 55, (498,94,0): 70, 56, 55, (498,95,0): 70, 56, 55, (498,96,0): 72, 56, 57, (498,97,0): 72, 56, 57, (498,98,0): 70, 54, 55, (498,99,0): 69, 53, 54, (498,100,0): 69, 53, 54, (498,101,0): 69, 53, 54, (498,102,0): 68, 54, 54, (498,103,0): 69, 55, 55, (498,104,0): 70, 58, 58, (498,105,0): 69, 57, 57, (498,106,0): 68, 58, 57, (498,107,0): 67, 57, 56, (498,108,0): 65, 55, 54, (498,109,0): 64, 54, 53, (498,110,0): 64, 54, 53, (498,111,0): 63, 53, 51, (498,112,0): 63, 54, 49, (498,113,0): 63, 54, 47, (498,114,0): 62, 53, 46, (498,115,0): 62, 53, 46, (498,116,0): 61, 52, 45, (498,117,0): 61, 52, 45, (498,118,0): 60, 51, 44, (498,119,0): 60, 51, 44, (498,120,0): 57, 48, 41, (498,121,0): 57, 48, 41, (498,122,0): 56, 47, 40, (498,123,0): 56, 47, 40, (498,124,0): 55, 46, 39, (498,125,0): 55, 46, 39, (498,126,0): 54, 45, 38, (498,127,0): 54, 45, 38, (498,128,0): 53, 46, 40, (498,129,0): 51, 46, 42, (498,130,0): 49, 44, 40, (498,131,0): 47, 42, 38, (498,132,0): 45, 40, 36, (498,133,0): 44, 39, 35, (498,134,0): 42, 37, 33, (498,135,0): 41, 36, 32, (498,136,0): 41, 36, 32, (498,137,0): 41, 36, 32, (498,138,0): 41, 36, 32, (498,139,0): 41, 36, 32, (498,140,0): 41, 36, 32, (498,141,0): 40, 35, 31, (498,142,0): 40, 35, 31, (498,143,0): 40, 35, 31, (498,144,0): 40, 36, 33, (498,145,0): 40, 36, 33, (498,146,0): 40, 36, 33, (498,147,0): 40, 36, 33, (498,148,0): 40, 36, 33, (498,149,0): 40, 36, 33, (498,150,0): 40, 36, 33, (498,151,0): 40, 36, 33, (498,152,0): 39, 35, 32, (498,153,0): 39, 35, 32, (498,154,0): 39, 35, 32, (498,155,0): 39, 35, 32, (498,156,0): 39, 35, 32, (498,157,0): 39, 35, 32, (498,158,0): 39, 35, 32, (498,159,0): 39, 35, 32, (498,160,0): 38, 33, 30, (498,161,0): 38, 33, 30, (498,162,0): 38, 33, 30, (498,163,0): 38, 33, 30, (498,164,0): 38, 33, 30, (498,165,0): 38, 33, 30, (498,166,0): 38, 33, 30, (498,167,0): 38, 33, 30, (498,168,0): 39, 34, 31, (498,169,0): 39, 34, 31, (498,170,0): 40, 35, 32, (498,171,0): 40, 35, 32, (498,172,0): 41, 36, 33, (498,173,0): 41, 36, 33, (498,174,0): 42, 37, 34, (498,175,0): 42, 37, 34, (498,176,0): 41, 37, 38, (498,177,0): 41, 37, 38, (498,178,0): 41, 37, 38, (498,179,0): 41, 37, 38, (498,180,0): 41, 37, 38, (498,181,0): 41, 37, 38, (498,182,0): 41, 37, 38, (498,183,0): 41, 37, 38, (498,184,0): 43, 39, 40, (498,185,0): 43, 39, 40, (498,186,0): 43, 39, 40, (498,187,0): 43, 39, 40, (498,188,0): 43, 39, 40, (498,189,0): 43, 39, 40, (498,190,0): 43, 39, 40, (498,191,0): 43, 38, 42, (498,192,0): 41, 36, 42, (498,193,0): 41, 36, 43, (498,194,0): 42, 37, 44, (498,195,0): 42, 37, 44, (498,196,0): 43, 38, 45, (498,197,0): 43, 38, 45, (498,198,0): 44, 39, 46, (498,199,0): 44, 39, 46, (498,200,0): 45, 40, 47, (498,201,0): 45, 40, 47, (498,202,0): 45, 40, 47, (498,203,0): 45, 40, 47, (498,204,0): 45, 40, 47, (498,205,0): 45, 40, 47, (498,206,0): 45, 40, 47, (498,207,0): 45, 40, 47, (498,208,0): 43, 37, 49, (498,209,0): 44, 38, 50, (498,210,0): 44, 38, 50, (498,211,0): 45, 39, 51, (498,212,0): 45, 39, 51, (498,213,0): 46, 40, 52, (498,214,0): 46, 40, 52, (498,215,0): 46, 40, 52, (498,216,0): 44, 38, 50, (498,217,0): 44, 38, 50, (498,218,0): 44, 38, 50, (498,219,0): 44, 38, 50, (498,220,0): 44, 38, 50, (498,221,0): 44, 38, 50, (498,222,0): 44, 38, 50, (498,223,0): 44, 38, 50, (498,224,0): 46, 38, 51, (498,225,0): 47, 39, 52, (498,226,0): 47, 39, 52, (498,227,0): 48, 40, 53, (498,228,0): 51, 40, 54, (498,229,0): 52, 41, 55, (498,230,0): 53, 42, 56, (498,231,0): 53, 42, 56, (498,232,0): 55, 43, 57, (498,233,0): 55, 43, 57, (498,234,0): 57, 43, 58, (498,235,0): 58, 44, 59, (498,236,0): 59, 45, 60, (498,237,0): 60, 46, 61, (498,238,0): 63, 46, 62, (498,239,0): 64, 47, 63, (498,240,0): 64, 46, 60, (498,241,0): 64, 46, 60, (498,242,0): 65, 47, 59, (498,243,0): 67, 49, 61, (498,244,0): 69, 51, 63, (498,245,0): 70, 52, 64, (498,246,0): 73, 53, 64, (498,247,0): 74, 54, 65, (498,248,0): 76, 56, 65, (498,249,0): 77, 57, 66, (498,250,0): 78, 58, 67, (498,251,0): 79, 59, 68, (498,252,0): 81, 62, 68, (498,253,0): 83, 64, 70, (498,254,0): 85, 64, 71, (498,255,0): 85, 64, 71, (498,256,0): 88, 67, 76, (498,257,0): 88, 66, 78, (498,258,0): 87, 65, 77, (498,259,0): 87, 65, 77, (498,260,0): 85, 65, 76, (498,261,0): 85, 65, 76, (498,262,0): 84, 64, 75, (498,263,0): 82, 65, 75, (498,264,0): 78, 61, 71, (498,265,0): 79, 62, 72, (498,266,0): 78, 62, 72, (498,267,0): 79, 63, 73, (498,268,0): 79, 63, 73, (498,269,0): 80, 64, 74, (498,270,0): 78, 65, 74, (498,271,0): 78, 65, 74, (498,272,0): 80, 62, 74, (498,273,0): 80, 62, 74, (498,274,0): 80, 62, 74, (498,275,0): 81, 63, 75, (498,276,0): 81, 63, 75, (498,277,0): 82, 64, 76, (498,278,0): 82, 64, 76, (498,279,0): 82, 64, 76, (498,280,0): 83, 65, 77, (498,281,0): 83, 65, 77, (498,282,0): 83, 65, 77, (498,283,0): 83, 65, 77, (498,284,0): 83, 65, 77, (498,285,0): 83, 65, 77, (498,286,0): 83, 65, 77, (498,287,0): 83, 65, 77, (498,288,0): 82, 66, 79, (498,289,0): 82, 66, 79, (498,290,0): 82, 66, 77, (498,291,0): 83, 67, 78, (498,292,0): 84, 68, 79, (498,293,0): 84, 68, 79, (498,294,0): 85, 68, 78, (498,295,0): 88, 68, 79, (498,296,0): 91, 70, 79, (498,297,0): 97, 71, 82, (498,298,0): 101, 73, 85, (498,299,0): 108, 76, 89, (498,300,0): 114, 78, 90, (498,301,0): 118, 77, 91, (498,302,0): 119, 77, 91, (498,303,0): 119, 77, 89, (498,304,0): 117, 77, 85, (498,305,0): 114, 78, 80, (498,306,0): 115, 76, 79, (498,307,0): 115, 76, 77, (498,308,0): 117, 77, 78, (498,309,0): 121, 81, 82, (498,310,0): 127, 82, 85, (498,311,0): 130, 84, 87, (498,312,0): 139, 86, 94, (498,313,0): 144, 87, 94, (498,314,0): 150, 90, 92, (498,315,0): 155, 90, 88, (498,316,0): 161, 92, 85, (498,317,0): 171, 99, 85, (498,318,0): 182, 109, 90, (498,319,0): 190, 119, 89, (498,320,0): 211, 143, 98, (498,321,0): 211, 149, 100, (498,322,0): 202, 149, 105, (498,323,0): 182, 138, 103, (498,324,0): 155, 124, 96, (498,325,0): 129, 107, 86, (498,326,0): 103, 87, 72, (498,327,0): 82, 69, 60, (498,328,0): 70, 59, 55, (498,329,0): 56, 45, 43, (498,330,0): 46, 32, 31, (498,331,0): 45, 29, 30, (498,332,0): 47, 28, 32, (498,333,0): 42, 23, 29, (498,334,0): 40, 20, 29, (498,335,0): 41, 21, 30, (498,336,0): 36, 19, 27, (498,337,0): 36, 19, 27, (498,338,0): 36, 19, 29, (498,339,0): 35, 18, 28, (498,340,0): 34, 17, 27, (498,341,0): 34, 17, 27, (498,342,0): 32, 16, 27, (498,343,0): 32, 16, 27, (498,344,0): 28, 14, 27, (498,345,0): 28, 14, 27, (498,346,0): 27, 15, 27, (498,347,0): 27, 15, 27, (498,348,0): 27, 15, 29, (498,349,0): 27, 15, 29, (498,350,0): 27, 15, 29, (498,351,0): 26, 15, 29, (498,352,0): 22, 13, 30, (498,353,0): 22, 13, 30, (498,354,0): 22, 13, 30, (498,355,0): 21, 12, 29, (498,356,0): 21, 12, 29, (498,357,0): 20, 11, 28, (498,358,0): 20, 11, 28, (498,359,0): 20, 11, 28, (498,360,0): 20, 11, 28, (498,361,0): 20, 11, 28, (498,362,0): 20, 11, 28, (498,363,0): 20, 11, 28, (498,364,0): 20, 11, 28, (498,365,0): 20, 11, 28, (498,366,0): 20, 11, 28, (498,367,0): 20, 12, 27, (498,368,0): 21, 10, 26, (498,369,0): 20, 9, 23, (498,370,0): 20, 9, 23, (498,371,0): 19, 8, 22, (498,372,0): 21, 9, 21, (498,373,0): 22, 10, 22, (498,374,0): 24, 12, 24, (498,375,0): 25, 13, 25, (498,376,0): 29, 16, 26, (498,377,0): 29, 16, 26, (498,378,0): 31, 15, 25, (498,379,0): 32, 16, 26, (498,380,0): 33, 17, 27, (498,381,0): 33, 17, 27, (498,382,0): 34, 17, 25, (498,383,0): 35, 18, 26, (498,384,0): 35, 18, 24, (498,385,0): 35, 18, 24, (498,386,0): 35, 18, 24, (498,387,0): 35, 18, 24, (498,388,0): 35, 18, 24, (498,389,0): 35, 18, 24, (498,390,0): 35, 18, 24, (498,391,0): 35, 18, 24, (498,392,0): 35, 18, 24, (498,393,0): 35, 18, 24, (498,394,0): 35, 18, 24, (498,395,0): 36, 19, 25, (498,396,0): 37, 20, 26, (498,397,0): 37, 20, 26, (498,398,0): 37, 20, 26, (498,399,0): 40, 21, 25, (498,400,0): 43, 22, 27, (498,401,0): 44, 22, 25, (498,402,0): 44, 22, 25, (498,403,0): 44, 22, 25, (498,404,0): 44, 22, 25, (498,405,0): 44, 22, 25, (498,406,0): 44, 22, 25, (498,407,0): 44, 22, 25, (498,408,0): 46, 24, 27, (498,409,0): 45, 23, 26, (498,410,0): 45, 23, 26, (498,411,0): 45, 23, 26, (498,412,0): 45, 23, 26, (498,413,0): 47, 25, 28, (498,414,0): 48, 26, 29, (498,415,0): 49, 27, 30, (498,416,0): 49, 26, 34, (498,417,0): 49, 26, 34, (498,418,0): 50, 27, 35, (498,419,0): 51, 30, 37, (498,420,0): 52, 31, 40, (498,421,0): 52, 32, 41, (498,422,0): 51, 34, 42, (498,423,0): 51, 36, 43, (498,424,0): 46, 33, 42, (498,425,0): 43, 32, 40, (498,426,0): 40, 30, 39, (498,427,0): 35, 28, 36, (498,428,0): 33, 26, 34, (498,429,0): 30, 25, 32, (498,430,0): 30, 24, 34, (498,431,0): 31, 24, 32, (498,432,0): 31, 21, 30, (498,433,0): 31, 20, 28, (498,434,0): 30, 19, 27, (498,435,0): 30, 19, 27, (498,436,0): 30, 19, 27, (498,437,0): 32, 21, 29, (498,438,0): 34, 21, 30, (498,439,0): 35, 22, 31, (498,440,0): 40, 24, 34, (498,441,0): 40, 24, 34, (498,442,0): 41, 24, 34, (498,443,0): 41, 24, 34, (498,444,0): 41, 24, 34, (498,445,0): 41, 24, 34, (498,446,0): 41, 24, 34, (498,447,0): 40, 24, 34, (498,448,0): 34, 22, 32, (498,449,0): 33, 21, 31, (498,450,0): 32, 20, 30, (498,451,0): 30, 18, 28, (498,452,0): 29, 17, 27, (498,453,0): 28, 15, 25, (498,454,0): 27, 14, 24, (498,455,0): 26, 13, 23, (498,456,0): 26, 10, 21, (498,457,0): 27, 11, 22, (498,458,0): 29, 13, 24, (498,459,0): 30, 14, 25, (498,460,0): 31, 13, 25, (498,461,0): 31, 13, 25, (498,462,0): 30, 12, 24, (498,463,0): 30, 13, 23, (498,464,0): 35, 16, 22, (498,465,0): 34, 15, 19, (498,466,0): 34, 13, 18, (498,467,0): 34, 13, 18, (498,468,0): 36, 13, 19, (498,469,0): 37, 14, 22, (498,470,0): 40, 14, 23, (498,471,0): 41, 15, 24, (498,472,0): 39, 13, 24, (498,473,0): 35, 12, 22, (498,474,0): 32, 10, 22, (498,475,0): 30, 10, 21, (498,476,0): 26, 9, 19, (498,477,0): 25, 9, 19, (498,478,0): 23, 10, 19, (498,479,0): 24, 11, 20, (498,480,0): 25, 8, 18, (498,481,0): 28, 6, 18, (498,482,0): 29, 5, 18, (498,483,0): 30, 7, 17, (498,484,0): 30, 7, 17, (498,485,0): 33, 7, 16, (498,486,0): 33, 8, 14, (498,487,0): 34, 7, 14, (498,488,0): 41, 10, 16, (498,489,0): 45, 10, 16, (498,490,0): 52, 11, 17, (498,491,0): 59, 12, 20, (498,492,0): 70, 13, 22, (498,493,0): 78, 15, 26, (498,494,0): 88, 17, 31, (498,495,0): 96, 18, 34, (498,496,0): 104, 19, 38, (498,497,0): 100, 15, 34, (498,498,0): 89, 12, 28, (498,499,0): 78, 10, 25, (498,500,0): 67, 9, 21, (498,501,0): 58, 8, 19, (498,502,0): 49, 6, 16, (498,503,0): 44, 4, 13, (498,504,0): 51, 11, 22, (498,505,0): 51, 11, 22, (498,506,0): 53, 9, 24, (498,507,0): 52, 8, 25, (498,508,0): 56, 9, 27, (498,509,0): 59, 12, 32, (498,510,0): 61, 16, 36, (498,511,0): 69, 18, 37, (498,512,0): 73, 10, 31, (498,513,0): 83, 14, 35, (498,514,0): 84, 20, 37, (498,515,0): 82, 15, 33, (498,516,0): 80, 7, 27, (498,517,0): 83, 5, 27, (498,518,0): 92, 13, 34, (498,519,0): 100, 23, 43, (498,520,0): 91, 20, 36, (498,521,0): 84, 16, 31, (498,522,0): 88, 15, 32, (498,523,0): 104, 23, 42, (498,524,0): 118, 26, 47, (498,525,0): 123, 28, 50, (498,526,0): 126, 31, 53, (498,527,0): 130, 36, 60, (498,528,0): 127, 35, 60, (498,529,0): 123, 35, 60, (498,530,0): 115, 33, 56, (498,531,0): 102, 29, 49, (498,532,0): 95, 28, 46, (498,533,0): 92, 29, 46, (498,534,0): 90, 27, 44, (498,535,0): 89, 22, 40, (498,536,0): 96, 24, 44, (498,537,0): 97, 22, 43, (498,538,0): 94, 16, 38, (498,539,0): 88, 15, 35, (498,540,0): 87, 20, 38, (498,541,0): 87, 29, 44, (498,542,0): 79, 27, 40, (498,543,0): 71, 17, 30, (498,544,0): 83, 17, 29, (498,545,0): 98, 24, 37, (498,546,0): 112, 29, 45, (498,547,0): 115, 28, 45, (498,548,0): 108, 21, 38, (498,549,0): 101, 18, 34, (498,550,0): 97, 25, 37, (498,551,0): 99, 31, 42, (498,552,0): 107, 37, 48, (498,553,0): 118, 44, 57, (498,554,0): 127, 44, 60, (498,555,0): 120, 36, 52, (498,556,0): 108, 27, 42, (498,557,0): 98, 26, 38, (498,558,0): 88, 28, 36, (498,559,0): 79, 30, 36, (498,560,0): 80, 38, 48, (498,561,0): 81, 38, 55, (498,562,0): 83, 35, 59, (498,563,0): 97, 33, 60, (498,564,0): 137, 44, 73, (498,565,0): 186, 64, 89, (498,566,0): 223, 67, 88, (498,567,0): 232, 60, 74, (498,568,0): 234, 63, 72, (498,569,0): 200, 46, 54, (498,570,0): 143, 26, 35, (498,571,0): 97, 13, 26, (498,572,0): 75, 21, 35, (498,573,0): 69, 33, 47, (498,574,0): 60, 32, 44, (498,575,0): 47, 24, 34, (498,576,0): 48, 27, 34, (498,577,0): 47, 28, 34, (498,578,0): 43, 28, 33, (498,579,0): 43, 28, 33, (498,580,0): 42, 27, 34, (498,581,0): 44, 24, 33, (498,582,0): 49, 21, 33, (498,583,0): 50, 20, 32, (498,584,0): 48, 17, 32, (498,585,0): 45, 19, 32, (498,586,0): 38, 20, 32, (498,587,0): 34, 22, 32, (498,588,0): 33, 23, 32, (498,589,0): 30, 23, 31, (498,590,0): 33, 21, 33, (498,591,0): 36, 20, 33, (498,592,0): 40, 17, 35, (498,593,0): 40, 15, 36, (498,594,0): 39, 15, 37, (498,595,0): 41, 17, 41, (498,596,0): 43, 19, 45, (498,597,0): 41, 18, 46, (498,598,0): 36, 13, 42, (498,599,0): 33, 10, 39, (499,0,0): 44, 69, 76, (499,1,0): 44, 69, 76, (499,2,0): 44, 69, 76, (499,3,0): 44, 69, 76, (499,4,0): 44, 69, 76, (499,5,0): 44, 69, 76, (499,6,0): 44, 69, 76, (499,7,0): 44, 69, 76, (499,8,0): 43, 68, 75, (499,9,0): 43, 68, 75, (499,10,0): 43, 68, 75, (499,11,0): 44, 69, 76, (499,12,0): 44, 69, 76, (499,13,0): 45, 70, 77, (499,14,0): 45, 70, 77, (499,15,0): 46, 71, 78, (499,16,0): 48, 71, 77, (499,17,0): 49, 72, 78, (499,18,0): 51, 71, 78, (499,19,0): 52, 72, 79, (499,20,0): 52, 72, 79, (499,21,0): 53, 73, 80, (499,22,0): 54, 73, 80, (499,23,0): 54, 73, 80, (499,24,0): 54, 71, 79, (499,25,0): 55, 72, 80, (499,26,0): 57, 74, 82, (499,27,0): 58, 75, 83, (499,28,0): 60, 74, 83, (499,29,0): 60, 74, 83, (499,30,0): 59, 73, 82, (499,31,0): 60, 73, 81, (499,32,0): 63, 74, 76, (499,33,0): 64, 74, 75, (499,34,0): 64, 74, 75, (499,35,0): 65, 75, 76, (499,36,0): 67, 75, 77, (499,37,0): 67, 76, 75, (499,38,0): 70, 76, 76, (499,39,0): 71, 75, 74, (499,40,0): 70, 74, 73, (499,41,0): 71, 73, 72, (499,42,0): 70, 70, 70, (499,43,0): 69, 68, 66, (499,44,0): 67, 66, 64, (499,45,0): 69, 65, 62, (499,46,0): 69, 65, 62, (499,47,0): 71, 66, 63, (499,48,0): 76, 65, 63, (499,49,0): 78, 64, 61, (499,50,0): 78, 64, 61, (499,51,0): 78, 64, 61, (499,52,0): 79, 64, 59, (499,53,0): 79, 64, 59, (499,54,0): 81, 63, 59, (499,55,0): 82, 63, 57, (499,56,0): 84, 63, 58, (499,57,0): 84, 63, 58, (499,58,0): 85, 62, 56, (499,59,0): 86, 61, 56, (499,60,0): 88, 60, 56, (499,61,0): 87, 59, 55, (499,62,0): 87, 60, 53, (499,63,0): 87, 60, 53, (499,64,0): 89, 62, 55, (499,65,0): 87, 62, 57, (499,66,0): 88, 60, 56, (499,67,0): 86, 61, 56, (499,68,0): 85, 60, 56, (499,69,0): 84, 60, 56, (499,70,0): 83, 59, 57, (499,71,0): 81, 60, 57, (499,72,0): 75, 54, 53, (499,73,0): 76, 56, 55, (499,74,0): 79, 59, 60, (499,75,0): 81, 61, 62, (499,76,0): 82, 63, 65, (499,77,0): 82, 63, 65, (499,78,0): 79, 63, 64, (499,79,0): 79, 63, 64, (499,80,0): 78, 64, 63, (499,81,0): 78, 64, 63, (499,82,0): 77, 63, 62, (499,83,0): 77, 63, 62, (499,84,0): 76, 62, 61, (499,85,0): 75, 61, 60, (499,86,0): 75, 61, 60, (499,87,0): 74, 60, 59, (499,88,0): 70, 56, 55, (499,89,0): 70, 56, 55, (499,90,0): 70, 56, 55, (499,91,0): 70, 56, 55, (499,92,0): 70, 56, 55, (499,93,0): 70, 56, 55, (499,94,0): 70, 56, 55, (499,95,0): 70, 56, 55, (499,96,0): 73, 57, 58, (499,97,0): 72, 56, 57, (499,98,0): 72, 56, 57, (499,99,0): 71, 55, 56, (499,100,0): 70, 54, 55, (499,101,0): 69, 55, 55, (499,102,0): 69, 55, 55, (499,103,0): 69, 55, 55, (499,104,0): 70, 58, 58, (499,105,0): 69, 57, 57, (499,106,0): 68, 58, 57, (499,107,0): 67, 57, 56, (499,108,0): 65, 55, 54, (499,109,0): 64, 54, 53, (499,110,0): 64, 54, 53, (499,111,0): 63, 53, 51, (499,112,0): 63, 54, 49, (499,113,0): 63, 54, 47, (499,114,0): 62, 53, 46, (499,115,0): 62, 53, 46, (499,116,0): 61, 52, 45, (499,117,0): 61, 52, 45, (499,118,0): 60, 51, 44, (499,119,0): 60, 51, 44, (499,120,0): 58, 49, 42, (499,121,0): 58, 49, 42, (499,122,0): 57, 48, 41, (499,123,0): 57, 48, 41, (499,124,0): 56, 47, 40, (499,125,0): 56, 47, 40, (499,126,0): 55, 46, 39, (499,127,0): 54, 47, 41, (499,128,0): 54, 49, 45, (499,129,0): 53, 48, 44, (499,130,0): 51, 46, 42, (499,131,0): 49, 44, 40, (499,132,0): 46, 41, 37, (499,133,0): 44, 39, 35, (499,134,0): 42, 37, 33, (499,135,0): 41, 36, 32, (499,136,0): 40, 35, 31, (499,137,0): 40, 35, 31, (499,138,0): 40, 35, 31, (499,139,0): 40, 35, 31, (499,140,0): 41, 36, 32, (499,141,0): 41, 36, 32, (499,142,0): 41, 36, 32, (499,143,0): 41, 36, 32, (499,144,0): 40, 36, 33, (499,145,0): 40, 36, 33, (499,146,0): 40, 36, 33, (499,147,0): 40, 36, 33, (499,148,0): 40, 36, 33, (499,149,0): 40, 36, 33, (499,150,0): 40, 36, 33, (499,151,0): 40, 36, 33, (499,152,0): 39, 35, 32, (499,153,0): 39, 35, 32, (499,154,0): 39, 35, 32, (499,155,0): 39, 35, 32, (499,156,0): 39, 35, 32, (499,157,0): 39, 35, 32, (499,158,0): 39, 35, 32, (499,159,0): 39, 35, 32, (499,160,0): 38, 33, 30, (499,161,0): 38, 33, 30, (499,162,0): 38, 33, 30, (499,163,0): 38, 33, 30, (499,164,0): 38, 33, 30, (499,165,0): 38, 33, 30, (499,166,0): 38, 33, 30, (499,167,0): 38, 33, 30, (499,168,0): 39, 34, 31, (499,169,0): 39, 34, 31, (499,170,0): 40, 35, 32, (499,171,0): 40, 35, 32, (499,172,0): 41, 36, 33, (499,173,0): 41, 36, 33, (499,174,0): 42, 37, 34, (499,175,0): 42, 37, 34, (499,176,0): 41, 37, 38, (499,177,0): 41, 37, 38, (499,178,0): 41, 37, 38, (499,179,0): 41, 37, 38, (499,180,0): 41, 37, 38, (499,181,0): 41, 37, 38, (499,182,0): 41, 37, 38, (499,183,0): 41, 37, 38, (499,184,0): 43, 39, 40, (499,185,0): 43, 39, 40, (499,186,0): 43, 39, 40, (499,187,0): 43, 39, 40, (499,188,0): 43, 39, 40, (499,189,0): 43, 39, 40, (499,190,0): 43, 39, 40, (499,191,0): 43, 38, 42, (499,192,0): 41, 36, 42, (499,193,0): 41, 36, 43, (499,194,0): 42, 37, 44, (499,195,0): 42, 37, 44, (499,196,0): 43, 38, 45, (499,197,0): 43, 38, 45, (499,198,0): 44, 39, 46, (499,199,0): 44, 39, 46, (499,200,0): 44, 39, 46, (499,201,0): 44, 39, 46, (499,202,0): 44, 39, 46, (499,203,0): 44, 39, 46, (499,204,0): 44, 39, 46, (499,205,0): 44, 39, 46, (499,206,0): 44, 39, 46, (499,207,0): 44, 39, 46, (499,208,0): 43, 37, 49, (499,209,0): 43, 37, 49, (499,210,0): 43, 37, 49, (499,211,0): 44, 38, 50, (499,212,0): 45, 39, 51, (499,213,0): 45, 39, 51, (499,214,0): 45, 39, 51, (499,215,0): 46, 40, 52, (499,216,0): 44, 38, 50, (499,217,0): 44, 38, 50, (499,218,0): 44, 38, 50, (499,219,0): 44, 38, 50, (499,220,0): 44, 38, 50, (499,221,0): 44, 38, 50, (499,222,0): 44, 38, 50, (499,223,0): 44, 38, 50, (499,224,0): 46, 38, 51, (499,225,0): 47, 39, 52, (499,226,0): 47, 39, 52, (499,227,0): 48, 40, 53, (499,228,0): 51, 40, 54, (499,229,0): 51, 40, 54, (499,230,0): 52, 41, 55, (499,231,0): 52, 41, 55, (499,232,0): 54, 42, 56, (499,233,0): 54, 42, 56, (499,234,0): 56, 42, 57, (499,235,0): 57, 43, 58, (499,236,0): 58, 44, 59, (499,237,0): 59, 45, 60, (499,238,0): 62, 45, 61, (499,239,0): 62, 45, 61, (499,240,0): 63, 45, 59, (499,241,0): 64, 46, 60, (499,242,0): 65, 47, 59, (499,243,0): 66, 48, 60, (499,244,0): 68, 50, 62, (499,245,0): 70, 52, 64, (499,246,0): 73, 53, 64, (499,247,0): 73, 53, 64, (499,248,0): 76, 56, 67, (499,249,0): 76, 56, 65, (499,250,0): 77, 57, 66, (499,251,0): 80, 59, 68, (499,252,0): 82, 61, 68, (499,253,0): 83, 62, 69, (499,254,0): 85, 62, 70, (499,255,0): 85, 64, 71, (499,256,0): 87, 65, 77, (499,257,0): 87, 65, 77, (499,258,0): 86, 64, 76, (499,259,0): 86, 64, 76, (499,260,0): 84, 64, 75, (499,261,0): 84, 64, 75, (499,262,0): 83, 63, 74, (499,263,0): 83, 63, 74, (499,264,0): 78, 61, 71, (499,265,0): 78, 61, 71, (499,266,0): 77, 61, 71, (499,267,0): 78, 62, 72, (499,268,0): 79, 63, 73, (499,269,0): 79, 63, 73, (499,270,0): 77, 64, 73, (499,271,0): 80, 64, 74, (499,272,0): 80, 62, 74, (499,273,0): 81, 63, 75, (499,274,0): 81, 63, 75, (499,275,0): 82, 64, 76, (499,276,0): 82, 64, 76, (499,277,0): 83, 65, 77, (499,278,0): 83, 65, 77, (499,279,0): 83, 65, 77, (499,280,0): 83, 65, 77, (499,281,0): 83, 65, 77, (499,282,0): 83, 65, 77, (499,283,0): 83, 65, 77, (499,284,0): 83, 65, 77, (499,285,0): 83, 65, 77, (499,286,0): 83, 65, 77, (499,287,0): 83, 65, 77, (499,288,0): 81, 65, 78, (499,289,0): 82, 66, 79, (499,290,0): 82, 66, 77, (499,291,0): 83, 67, 78, (499,292,0): 83, 67, 78, (499,293,0): 84, 68, 79, (499,294,0): 85, 68, 78, (499,295,0): 87, 67, 78, (499,296,0): 90, 69, 78, (499,297,0): 95, 69, 80, (499,298,0): 99, 71, 83, (499,299,0): 106, 74, 87, (499,300,0): 111, 75, 87, (499,301,0): 113, 75, 88, (499,302,0): 115, 74, 88, (499,303,0): 115, 75, 86, (499,304,0): 116, 76, 84, (499,305,0): 113, 77, 81, (499,306,0): 114, 75, 78, (499,307,0): 114, 75, 76, (499,308,0): 117, 77, 78, (499,309,0): 121, 79, 81, (499,310,0): 127, 81, 84, (499,311,0): 132, 83, 87, (499,312,0): 139, 86, 94, (499,313,0): 147, 87, 95, (499,314,0): 152, 90, 93, (499,315,0): 159, 91, 90, (499,316,0): 165, 94, 88, (499,317,0): 178, 104, 91, (499,318,0): 194, 119, 100, (499,319,0): 206, 131, 102, (499,320,0): 227, 156, 110, (499,321,0): 229, 163, 113, (499,322,0): 220, 163, 118, (499,323,0): 199, 151, 115, (499,324,0): 169, 134, 106, (499,325,0): 140, 113, 92, (499,326,0): 109, 90, 75, (499,327,0): 85, 71, 60, (499,328,0): 75, 62, 56, (499,329,0): 61, 47, 44, (499,330,0): 49, 34, 31, (499,331,0): 46, 30, 30, (499,332,0): 47, 28, 30, (499,333,0): 43, 24, 28, (499,334,0): 41, 22, 28, (499,335,0): 42, 22, 31, (499,336,0): 38, 21, 29, (499,337,0): 37, 20, 28, (499,338,0): 37, 20, 30, (499,339,0): 36, 19, 29, (499,340,0): 35, 18, 28, (499,341,0): 34, 17, 27, (499,342,0): 32, 16, 27, (499,343,0): 32, 16, 27, (499,344,0): 28, 14, 27, (499,345,0): 28, 14, 27, (499,346,0): 28, 14, 27, (499,347,0): 27, 15, 27, (499,348,0): 27, 15, 29, (499,349,0): 27, 15, 29, (499,350,0): 27, 15, 29, (499,351,0): 27, 15, 29, (499,352,0): 24, 13, 29, (499,353,0): 22, 13, 30, (499,354,0): 22, 13, 30, (499,355,0): 21, 12, 29, (499,356,0): 21, 12, 29, (499,357,0): 20, 11, 28, (499,358,0): 20, 11, 28, (499,359,0): 20, 11, 28, (499,360,0): 20, 11, 28, (499,361,0): 20, 11, 28, (499,362,0): 20, 11, 28, (499,363,0): 20, 11, 28, (499,364,0): 20, 11, 28, (499,365,0): 20, 11, 28, (499,366,0): 20, 11, 28, (499,367,0): 20, 12, 27, (499,368,0): 20, 9, 23, (499,369,0): 20, 9, 23, (499,370,0): 19, 8, 22, (499,371,0): 19, 8, 22, (499,372,0): 19, 9, 20, (499,373,0): 21, 9, 21, (499,374,0): 23, 11, 23, (499,375,0): 24, 12, 22, (499,376,0): 28, 15, 25, (499,377,0): 29, 16, 26, (499,378,0): 31, 15, 25, (499,379,0): 32, 16, 26, (499,380,0): 32, 16, 26, (499,381,0): 33, 17, 27, (499,382,0): 33, 18, 25, (499,383,0): 34, 17, 25, (499,384,0): 34, 17, 23, (499,385,0): 34, 17, 23, (499,386,0): 34, 17, 23, (499,387,0): 34, 17, 23, (499,388,0): 34, 17, 23, (499,389,0): 34, 17, 23, (499,390,0): 34, 17, 23, (499,391,0): 34, 17, 23, (499,392,0): 34, 17, 23, (499,393,0): 35, 18, 24, (499,394,0): 35, 18, 24, (499,395,0): 36, 19, 25, (499,396,0): 36, 19, 25, (499,397,0): 37, 20, 26, (499,398,0): 37, 20, 26, (499,399,0): 39, 20, 26, (499,400,0): 42, 21, 26, (499,401,0): 43, 21, 24, (499,402,0): 44, 22, 25, (499,403,0): 44, 22, 25, (499,404,0): 44, 22, 25, (499,405,0): 45, 23, 26, (499,406,0): 45, 23, 26, (499,407,0): 45, 23, 26, (499,408,0): 47, 25, 28, (499,409,0): 47, 25, 28, (499,410,0): 45, 23, 26, (499,411,0): 45, 23, 26, (499,412,0): 44, 22, 25, (499,413,0): 45, 23, 26, (499,414,0): 46, 24, 27, (499,415,0): 47, 24, 30, (499,416,0): 46, 23, 31, (499,417,0): 47, 24, 32, (499,418,0): 48, 25, 33, (499,419,0): 49, 28, 35, (499,420,0): 50, 30, 39, (499,421,0): 50, 33, 41, (499,422,0): 51, 34, 42, (499,423,0): 51, 36, 43, (499,424,0): 46, 33, 42, (499,425,0): 43, 32, 40, (499,426,0): 41, 29, 39, (499,427,0): 37, 27, 36, (499,428,0): 34, 27, 35, (499,429,0): 32, 27, 34, (499,430,0): 31, 25, 35, (499,431,0): 33, 26, 34, (499,432,0): 31, 21, 30, (499,433,0): 32, 21, 29, (499,434,0): 31, 20, 28, (499,435,0): 30, 19, 27, (499,436,0): 30, 19, 27, (499,437,0): 31, 20, 28, (499,438,0): 33, 20, 29, (499,439,0): 34, 21, 30, (499,440,0): 38, 22, 32, (499,441,0): 38, 22, 32, (499,442,0): 40, 23, 33, (499,443,0): 40, 23, 33, (499,444,0): 40, 23, 33, (499,445,0): 41, 24, 34, (499,446,0): 41, 24, 34, (499,447,0): 40, 24, 34, (499,448,0): 36, 23, 33, (499,449,0): 35, 22, 32, (499,450,0): 34, 21, 31, (499,451,0): 32, 19, 29, (499,452,0): 30, 17, 27, (499,453,0): 28, 15, 25, (499,454,0): 26, 13, 23, (499,455,0): 26, 13, 23, (499,456,0): 27, 11, 22, (499,457,0): 27, 11, 22, (499,458,0): 27, 11, 22, (499,459,0): 28, 12, 23, (499,460,0): 28, 12, 23, (499,461,0): 28, 12, 23, (499,462,0): 29, 11, 23, (499,463,0): 28, 11, 21, (499,464,0): 31, 14, 20, (499,465,0): 33, 14, 18, (499,466,0): 32, 13, 19, (499,467,0): 33, 12, 19, (499,468,0): 33, 12, 19, (499,469,0): 36, 13, 21, (499,470,0): 37, 14, 22, (499,471,0): 38, 15, 25, (499,472,0): 36, 13, 23, (499,473,0): 34, 12, 24, (499,474,0): 31, 11, 22, (499,475,0): 26, 9, 19, (499,476,0): 24, 8, 19, (499,477,0): 21, 8, 18, (499,478,0): 20, 8, 18, (499,479,0): 22, 9, 19, (499,480,0): 26, 6, 18, (499,481,0): 28, 6, 18, (499,482,0): 29, 5, 18, (499,483,0): 30, 6, 19, (499,484,0): 30, 7, 17, (499,485,0): 31, 8, 18, (499,486,0): 33, 7, 16, (499,487,0): 34, 7, 14, (499,488,0): 41, 8, 15, (499,489,0): 45, 8, 16, (499,490,0): 53, 10, 19, (499,491,0): 65, 14, 23, (499,492,0): 78, 18, 30, (499,493,0): 86, 20, 32, (499,494,0): 89, 18, 32, (499,495,0): 89, 15, 30, (499,496,0): 92, 18, 35, (499,497,0): 86, 15, 31, (499,498,0): 77, 11, 25, (499,499,0): 65, 7, 21, (499,500,0): 56, 6, 17, (499,501,0): 50, 4, 14, (499,502,0): 46, 4, 14, (499,503,0): 44, 4, 13, (499,504,0): 44, 4, 15, (499,505,0): 49, 7, 19, (499,506,0): 57, 10, 26, (499,507,0): 61, 13, 29, (499,508,0): 61, 13, 29, (499,509,0): 61, 12, 31, (499,510,0): 61, 12, 31, (499,511,0): 66, 11, 32, (499,512,0): 80, 15, 37, (499,513,0): 85, 16, 37, (499,514,0): 85, 18, 36, (499,515,0): 83, 16, 34, (499,516,0): 85, 12, 32, (499,517,0): 89, 11, 33, (499,518,0): 95, 16, 37, (499,519,0): 100, 23, 43, (499,520,0): 89, 18, 34, (499,521,0): 84, 16, 31, (499,522,0): 90, 16, 33, (499,523,0): 101, 20, 39, (499,524,0): 114, 22, 43, (499,525,0): 117, 22, 44, (499,526,0): 118, 23, 45, (499,527,0): 118, 24, 48, (499,528,0): 117, 29, 53, (499,529,0): 115, 31, 54, (499,530,0): 106, 29, 49, (499,531,0): 93, 20, 39, (499,532,0): 90, 21, 39, (499,533,0): 94, 30, 46, (499,534,0): 94, 30, 46, (499,535,0): 88, 24, 40, (499,536,0): 92, 23, 41, (499,537,0): 97, 26, 44, (499,538,0): 94, 23, 41, (499,539,0): 85, 16, 34, (499,540,0): 80, 18, 33, (499,541,0): 81, 23, 37, (499,542,0): 79, 25, 38, (499,543,0): 78, 22, 33, (499,544,0): 88, 20, 33, (499,545,0): 103, 27, 40, (499,546,0): 117, 33, 49, (499,547,0): 118, 31, 48, (499,548,0): 107, 23, 39, (499,549,0): 97, 19, 33, (499,550,0): 94, 24, 35, (499,551,0): 95, 32, 41, (499,552,0): 93, 30, 39, (499,553,0): 110, 40, 51, (499,554,0): 122, 44, 58, (499,555,0): 119, 36, 52, (499,556,0): 110, 27, 43, (499,557,0): 103, 27, 40, (499,558,0): 94, 26, 37, (499,559,0): 84, 27, 36, (499,560,0): 83, 33, 42, (499,561,0): 82, 36, 47, (499,562,0): 83, 36, 54, (499,563,0): 95, 36, 56, (499,564,0): 127, 42, 63, (499,565,0): 170, 53, 72, (499,566,0): 214, 58, 72, (499,567,0): 237, 57, 69, (499,568,0): 241, 54, 63, (499,569,0): 225, 49, 60, (499,570,0): 178, 36, 50, (499,571,0): 127, 20, 36, (499,572,0): 92, 23, 41, (499,573,0): 78, 35, 52, (499,574,0): 57, 33, 46, (499,575,0): 36, 20, 30, (499,576,0): 39, 26, 33, (499,577,0): 39, 27, 31, (499,578,0): 38, 26, 30, (499,579,0): 40, 25, 30, (499,580,0): 43, 23, 32, (499,581,0): 45, 22, 32, (499,582,0): 46, 20, 31, (499,583,0): 46, 20, 31, (499,584,0): 42, 18, 31, (499,585,0): 40, 20, 31, (499,586,0): 35, 22, 32, (499,587,0): 33, 23, 32, (499,588,0): 31, 24, 32, (499,589,0): 34, 24, 33, (499,590,0): 36, 22, 35, (499,591,0): 39, 21, 35, (499,592,0): 43, 19, 33, (499,593,0): 42, 18, 32, (499,594,0): 41, 17, 33, (499,595,0): 41, 18, 36, (499,596,0): 42, 19, 39, (499,597,0): 41, 17, 39, (499,598,0): 37, 13, 37, (499,599,0): 34, 10, 34, (500,0,0): 44, 69, 76, (500,1,0): 44, 69, 76, (500,2,0): 44, 69, 76, (500,3,0): 44, 69, 76, (500,4,0): 44, 69, 76, (500,5,0): 44, 69, 76, (500,6,0): 44, 69, 76, (500,7,0): 44, 69, 76, (500,8,0): 43, 68, 75, (500,9,0): 43, 68, 75, (500,10,0): 43, 68, 75, (500,11,0): 44, 69, 76, (500,12,0): 44, 69, 76, (500,13,0): 45, 70, 77, (500,14,0): 45, 70, 77, (500,15,0): 46, 71, 78, (500,16,0): 48, 71, 77, (500,17,0): 48, 71, 77, (500,18,0): 48, 71, 77, (500,19,0): 49, 72, 78, (500,20,0): 51, 71, 78, (500,21,0): 52, 72, 79, (500,22,0): 52, 72, 79, (500,23,0): 53, 73, 80, (500,24,0): 53, 72, 79, (500,25,0): 54, 73, 80, (500,26,0): 56, 73, 81, (500,27,0): 57, 74, 82, (500,28,0): 58, 75, 83, (500,29,0): 58, 75, 83, (500,30,0): 59, 73, 82, (500,31,0): 58, 73, 80, (500,32,0): 60, 74, 77, (500,33,0): 62, 73, 75, (500,34,0): 63, 74, 76, (500,35,0): 64, 76, 76, (500,36,0): 66, 76, 77, (500,37,0): 68, 77, 76, (500,38,0): 68, 77, 76, (500,39,0): 71, 77, 77, (500,40,0): 69, 73, 74, (500,41,0): 72, 74, 73, (500,42,0): 72, 74, 73, (500,43,0): 73, 73, 71, (500,44,0): 71, 71, 69, (500,45,0): 70, 69, 67, (500,46,0): 68, 67, 65, (500,47,0): 69, 65, 62, (500,48,0): 75, 65, 63, (500,49,0): 76, 65, 61, (500,50,0): 78, 65, 59, (500,51,0): 78, 65, 59, (500,52,0): 79, 64, 59, (500,53,0): 79, 64, 59, (500,54,0): 81, 64, 57, (500,55,0): 82, 63, 57, (500,56,0): 85, 64, 59, (500,57,0): 85, 65, 58, (500,58,0): 86, 63, 57, (500,59,0): 86, 63, 57, (500,60,0): 86, 61, 54, (500,61,0): 85, 60, 53, (500,62,0): 87, 60, 53, (500,63,0): 86, 59, 52, (500,64,0): 88, 63, 58, (500,65,0): 87, 63, 59, (500,66,0): 87, 62, 58, (500,67,0): 86, 62, 58, (500,68,0): 85, 61, 59, (500,69,0): 83, 62, 59, (500,70,0): 82, 61, 58, (500,71,0): 82, 61, 58, (500,72,0): 76, 55, 54, (500,73,0): 77, 57, 56, (500,74,0): 80, 60, 61, (500,75,0): 81, 63, 63, (500,76,0): 82, 64, 64, (500,77,0): 82, 64, 64, (500,78,0): 79, 63, 64, (500,79,0): 78, 62, 63, (500,80,0): 77, 63, 62, (500,81,0): 77, 63, 62, (500,82,0): 77, 63, 62, (500,83,0): 77, 63, 62, (500,84,0): 76, 62, 61, (500,85,0): 76, 62, 61, (500,86,0): 76, 62, 61, (500,87,0): 75, 61, 60, (500,88,0): 71, 57, 56, (500,89,0): 71, 57, 56, (500,90,0): 71, 57, 56, (500,91,0): 71, 57, 56, (500,92,0): 71, 57, 56, (500,93,0): 71, 57, 56, (500,94,0): 71, 57, 56, (500,95,0): 71, 57, 56, (500,96,0): 73, 57, 58, (500,97,0): 73, 57, 58, (500,98,0): 73, 57, 58, (500,99,0): 73, 57, 58, (500,100,0): 71, 57, 57, (500,101,0): 70, 56, 56, (500,102,0): 70, 56, 56, (500,103,0): 67, 55, 55, (500,104,0): 70, 58, 58, (500,105,0): 69, 57, 57, (500,106,0): 68, 58, 57, (500,107,0): 67, 57, 56, (500,108,0): 64, 56, 54, (500,109,0): 63, 55, 53, (500,110,0): 63, 55, 53, (500,111,0): 62, 54, 51, (500,112,0): 62, 55, 49, (500,113,0): 62, 55, 49, (500,114,0): 61, 54, 48, (500,115,0): 61, 54, 48, (500,116,0): 60, 53, 47, (500,117,0): 60, 53, 47, (500,118,0): 59, 52, 46, (500,119,0): 59, 52, 46, (500,120,0): 58, 51, 45, (500,121,0): 58, 51, 45, (500,122,0): 57, 50, 44, (500,123,0): 57, 50, 44, (500,124,0): 56, 49, 43, (500,125,0): 56, 49, 43, (500,126,0): 55, 48, 42, (500,127,0): 55, 48, 42, (500,128,0): 55, 50, 46, (500,129,0): 54, 49, 45, (500,130,0): 52, 47, 43, (500,131,0): 50, 45, 41, (500,132,0): 47, 42, 38, (500,133,0): 45, 40, 36, (500,134,0): 43, 38, 34, (500,135,0): 42, 37, 33, (500,136,0): 40, 35, 31, (500,137,0): 40, 35, 31, (500,138,0): 41, 36, 32, (500,139,0): 41, 36, 32, (500,140,0): 41, 36, 32, (500,141,0): 41, 36, 32, (500,142,0): 42, 37, 33, (500,143,0): 42, 37, 33, (500,144,0): 40, 36, 33, (500,145,0): 40, 36, 33, (500,146,0): 40, 36, 33, (500,147,0): 40, 36, 33, (500,148,0): 40, 36, 33, (500,149,0): 40, 36, 33, (500,150,0): 40, 36, 33, (500,151,0): 40, 36, 33, (500,152,0): 40, 36, 33, (500,153,0): 40, 36, 33, (500,154,0): 40, 36, 33, (500,155,0): 40, 36, 33, (500,156,0): 40, 36, 33, (500,157,0): 40, 36, 33, (500,158,0): 40, 36, 33, (500,159,0): 40, 36, 33, (500,160,0): 38, 33, 30, (500,161,0): 38, 33, 30, (500,162,0): 38, 33, 30, (500,163,0): 38, 33, 30, (500,164,0): 38, 33, 30, (500,165,0): 38, 33, 30, (500,166,0): 38, 33, 30, (500,167,0): 38, 33, 30, (500,168,0): 39, 34, 31, (500,169,0): 39, 34, 31, (500,170,0): 40, 35, 32, (500,171,0): 40, 35, 32, (500,172,0): 41, 36, 33, (500,173,0): 41, 36, 33, (500,174,0): 42, 37, 34, (500,175,0): 42, 37, 34, (500,176,0): 41, 37, 38, (500,177,0): 41, 37, 38, (500,178,0): 41, 37, 38, (500,179,0): 41, 37, 38, (500,180,0): 41, 37, 38, (500,181,0): 41, 37, 38, (500,182,0): 41, 37, 38, (500,183,0): 41, 37, 38, (500,184,0): 43, 39, 40, (500,185,0): 43, 39, 40, (500,186,0): 43, 39, 40, (500,187,0): 43, 39, 40, (500,188,0): 43, 39, 40, (500,189,0): 43, 39, 40, (500,190,0): 43, 39, 40, (500,191,0): 43, 38, 42, (500,192,0): 41, 36, 42, (500,193,0): 41, 36, 43, (500,194,0): 42, 37, 44, (500,195,0): 42, 37, 44, (500,196,0): 43, 38, 45, (500,197,0): 43, 38, 45, (500,198,0): 44, 39, 46, (500,199,0): 44, 39, 46, (500,200,0): 44, 39, 46, (500,201,0): 44, 39, 46, (500,202,0): 44, 39, 46, (500,203,0): 44, 39, 46, (500,204,0): 44, 39, 46, (500,205,0): 44, 39, 46, (500,206,0): 44, 39, 46, (500,207,0): 44, 39, 46, (500,208,0): 42, 36, 48, (500,209,0): 43, 37, 49, (500,210,0): 43, 37, 49, (500,211,0): 43, 37, 49, (500,212,0): 44, 38, 50, (500,213,0): 45, 39, 51, (500,214,0): 45, 39, 51, (500,215,0): 45, 39, 51, (500,216,0): 44, 38, 50, (500,217,0): 44, 38, 50, (500,218,0): 44, 38, 50, (500,219,0): 44, 38, 50, (500,220,0): 44, 38, 50, (500,221,0): 44, 38, 50, (500,222,0): 44, 38, 50, (500,223,0): 44, 38, 50, (500,224,0): 46, 40, 52, (500,225,0): 46, 40, 52, (500,226,0): 47, 39, 52, (500,227,0): 48, 40, 53, (500,228,0): 48, 40, 53, (500,229,0): 48, 40, 53, (500,230,0): 51, 40, 54, (500,231,0): 51, 40, 54, (500,232,0): 52, 40, 54, (500,233,0): 52, 40, 54, (500,234,0): 53, 41, 55, (500,235,0): 54, 42, 56, (500,236,0): 56, 42, 57, (500,237,0): 57, 43, 58, (500,238,0): 58, 44, 59, (500,239,0): 60, 43, 59, (500,240,0): 63, 45, 59, (500,241,0): 63, 45, 59, (500,242,0): 64, 46, 60, (500,243,0): 66, 48, 62, (500,244,0): 70, 50, 62, (500,245,0): 71, 51, 63, (500,246,0): 73, 51, 64, (500,247,0): 74, 52, 64, (500,248,0): 76, 54, 66, (500,249,0): 77, 55, 67, (500,250,0): 78, 57, 66, (500,251,0): 80, 57, 67, (500,252,0): 82, 59, 69, (500,253,0): 84, 61, 71, (500,254,0): 87, 61, 70, (500,255,0): 85, 62, 70, (500,256,0): 87, 63, 76, (500,257,0): 87, 63, 76, (500,258,0): 85, 63, 75, (500,259,0): 85, 63, 75, (500,260,0): 84, 62, 74, (500,261,0): 84, 62, 74, (500,262,0): 82, 62, 73, (500,263,0): 82, 62, 73, (500,264,0): 77, 60, 70, (500,265,0): 78, 61, 71, (500,266,0): 78, 61, 71, (500,267,0): 78, 61, 71, (500,268,0): 78, 62, 72, (500,269,0): 79, 63, 73, (500,270,0): 79, 63, 73, (500,271,0): 79, 63, 73, (500,272,0): 80, 62, 74, (500,273,0): 81, 63, 75, (500,274,0): 81, 63, 75, (500,275,0): 82, 64, 76, (500,276,0): 82, 64, 76, (500,277,0): 83, 65, 77, (500,278,0): 83, 65, 77, (500,279,0): 83, 65, 77, (500,280,0): 83, 65, 77, (500,281,0): 83, 65, 77, (500,282,0): 83, 65, 77, (500,283,0): 83, 65, 77, (500,284,0): 83, 65, 77, (500,285,0): 83, 65, 77, (500,286,0): 83, 65, 77, (500,287,0): 83, 65, 77, (500,288,0): 82, 64, 78, (500,289,0): 82, 64, 78, (500,290,0): 81, 65, 76, (500,291,0): 82, 66, 77, (500,292,0): 82, 66, 77, (500,293,0): 83, 67, 78, (500,294,0): 84, 67, 77, (500,295,0): 87, 67, 78, (500,296,0): 90, 69, 78, (500,297,0): 93, 70, 80, (500,298,0): 98, 70, 82, (500,299,0): 103, 71, 84, (500,300,0): 106, 73, 84, (500,301,0): 111, 73, 86, (500,302,0): 113, 72, 86, (500,303,0): 114, 74, 85, (500,304,0): 116, 76, 85, (500,305,0): 115, 76, 81, (500,306,0): 115, 74, 78, (500,307,0): 115, 74, 78, (500,308,0): 117, 75, 77, (500,309,0): 120, 78, 80, (500,310,0): 127, 80, 86, (500,311,0): 132, 81, 88, (500,312,0): 141, 85, 94, (500,313,0): 149, 88, 96, (500,314,0): 156, 91, 97, (500,315,0): 162, 92, 94, (500,316,0): 170, 97, 91, (500,317,0): 184, 108, 95, (500,318,0): 203, 124, 107, (500,319,0): 216, 139, 111, (500,320,0): 240, 163, 119, (500,321,0): 243, 173, 122, (500,322,0): 237, 176, 131, (500,323,0): 217, 165, 128, (500,324,0): 187, 148, 119, (500,325,0): 155, 124, 103, (500,326,0): 118, 97, 80, (500,327,0): 92, 74, 62, (500,328,0): 79, 64, 57, (500,329,0): 64, 49, 44, (500,330,0): 51, 36, 31, (500,331,0): 50, 32, 30, (500,332,0): 48, 30, 30, (500,333,0): 45, 26, 28, (500,334,0): 43, 24, 28, (500,335,0): 45, 26, 32, (500,336,0): 41, 21, 30, (500,337,0): 41, 21, 30, (500,338,0): 40, 20, 29, (500,339,0): 38, 18, 27, (500,340,0): 35, 18, 28, (500,341,0): 34, 17, 27, (500,342,0): 32, 16, 26, (500,343,0): 32, 16, 26, (500,344,0): 30, 14, 25, (500,345,0): 28, 15, 25, (500,346,0): 28, 14, 27, (500,347,0): 28, 14, 27, (500,348,0): 27, 15, 27, (500,349,0): 27, 15, 27, (500,350,0): 27, 15, 29, (500,351,0): 27, 15, 29, (500,352,0): 24, 13, 29, (500,353,0): 24, 13, 29, (500,354,0): 24, 13, 29, (500,355,0): 23, 12, 28, (500,356,0): 23, 12, 28, (500,357,0): 22, 11, 27, (500,358,0): 22, 11, 27, (500,359,0): 22, 11, 27, (500,360,0): 22, 11, 27, (500,361,0): 22, 11, 27, (500,362,0): 22, 11, 27, (500,363,0): 22, 11, 27, (500,364,0): 22, 11, 27, (500,365,0): 22, 11, 27, (500,366,0): 22, 11, 27, (500,367,0): 22, 11, 27, (500,368,0): 18, 10, 23, (500,369,0): 18, 10, 23, (500,370,0): 17, 9, 20, (500,371,0): 17, 9, 20, (500,372,0): 17, 9, 20, (500,373,0): 20, 10, 21, (500,374,0): 22, 12, 21, (500,375,0): 23, 13, 22, (500,376,0): 27, 15, 25, (500,377,0): 27, 16, 24, (500,378,0): 28, 15, 24, (500,379,0): 29, 16, 25, (500,380,0): 29, 16, 23, (500,381,0): 30, 17, 24, (500,382,0): 30, 17, 24, (500,383,0): 33, 18, 25, (500,384,0): 34, 17, 23, (500,385,0): 34, 17, 23, (500,386,0): 34, 17, 23, (500,387,0): 34, 17, 23, (500,388,0): 34, 17, 23, (500,389,0): 34, 17, 23, (500,390,0): 34, 17, 23, (500,391,0): 34, 17, 23, (500,392,0): 34, 17, 23, (500,393,0): 34, 17, 23, (500,394,0): 34, 17, 23, (500,395,0): 35, 18, 24, (500,396,0): 35, 18, 24, (500,397,0): 36, 19, 25, (500,398,0): 36, 19, 25, (500,399,0): 39, 20, 26, (500,400,0): 41, 20, 25, (500,401,0): 42, 19, 25, (500,402,0): 42, 19, 25, (500,403,0): 43, 20, 26, (500,404,0): 44, 21, 27, (500,405,0): 45, 22, 28, (500,406,0): 45, 22, 28, (500,407,0): 45, 22, 28, (500,408,0): 48, 25, 31, (500,409,0): 47, 24, 30, (500,410,0): 45, 22, 28, (500,411,0): 44, 21, 27, (500,412,0): 44, 21, 27, (500,413,0): 44, 21, 27, (500,414,0): 45, 22, 28, (500,415,0): 45, 22, 28, (500,416,0): 43, 22, 29, (500,417,0): 44, 23, 30, (500,418,0): 45, 24, 31, (500,419,0): 47, 26, 33, (500,420,0): 48, 28, 37, (500,421,0): 48, 31, 39, (500,422,0): 49, 32, 40, (500,423,0): 49, 34, 41, (500,424,0): 45, 32, 41, (500,425,0): 43, 32, 40, (500,426,0): 40, 28, 38, (500,427,0): 37, 27, 36, (500,428,0): 34, 27, 35, (500,429,0): 33, 26, 34, (500,430,0): 33, 25, 36, (500,431,0): 33, 26, 34, (500,432,0): 32, 22, 31, (500,433,0): 32, 21, 29, (500,434,0): 31, 20, 28, (500,435,0): 30, 19, 27, (500,436,0): 30, 19, 27, (500,437,0): 31, 20, 28, (500,438,0): 33, 20, 29, (500,439,0): 33, 20, 29, (500,440,0): 37, 21, 31, (500,441,0): 37, 21, 31, (500,442,0): 39, 22, 32, (500,443,0): 39, 22, 32, (500,444,0): 40, 23, 33, (500,445,0): 41, 24, 34, (500,446,0): 41, 24, 34, (500,447,0): 42, 25, 35, (500,448,0): 40, 24, 35, (500,449,0): 39, 23, 34, (500,450,0): 37, 21, 32, (500,451,0): 35, 19, 30, (500,452,0): 33, 17, 28, (500,453,0): 30, 14, 25, (500,454,0): 29, 13, 24, (500,455,0): 28, 12, 23, (500,456,0): 28, 12, 23, (500,457,0): 27, 11, 22, (500,458,0): 25, 12, 22, (500,459,0): 25, 12, 22, (500,460,0): 24, 11, 21, (500,461,0): 24, 11, 21, (500,462,0): 27, 11, 22, (500,463,0): 27, 11, 21, (500,464,0): 30, 15, 22, (500,465,0): 30, 13, 19, (500,466,0): 30, 13, 21, (500,467,0): 31, 11, 20, (500,468,0): 32, 12, 21, (500,469,0): 34, 13, 22, (500,470,0): 36, 15, 24, (500,471,0): 37, 15, 27, (500,472,0): 35, 13, 25, (500,473,0): 33, 13, 25, (500,474,0): 28, 10, 22, (500,475,0): 25, 9, 20, (500,476,0): 21, 7, 20, (500,477,0): 19, 7, 19, (500,478,0): 18, 8, 19, (500,479,0): 19, 7, 17, (500,480,0): 28, 8, 20, (500,481,0): 30, 6, 20, (500,482,0): 29, 7, 19, (500,483,0): 30, 8, 20, (500,484,0): 30, 9, 18, (500,485,0): 31, 10, 19, (500,486,0): 32, 9, 17, (500,487,0): 38, 8, 16, (500,488,0): 44, 9, 16, (500,489,0): 48, 6, 16, (500,490,0): 57, 10, 20, (500,491,0): 70, 14, 25, (500,492,0): 82, 20, 33, (500,493,0): 88, 22, 36, (500,494,0): 87, 16, 30, (500,495,0): 80, 12, 27, (500,496,0): 74, 12, 27, (500,497,0): 68, 12, 25, (500,498,0): 60, 8, 20, (500,499,0): 52, 4, 16, (500,500,0): 46, 3, 13, (500,501,0): 44, 4, 13, (500,502,0): 46, 6, 15, (500,503,0): 48, 8, 17, (500,504,0): 47, 5, 15, (500,505,0): 52, 9, 19, (500,506,0): 59, 11, 25, (500,507,0): 61, 10, 25, (500,508,0): 60, 9, 24, (500,509,0): 60, 9, 26, (500,510,0): 63, 12, 29, (500,511,0): 70, 13, 32, (500,512,0): 89, 21, 42, (500,513,0): 85, 16, 37, (500,514,0): 78, 14, 31, (500,515,0): 81, 14, 32, (500,516,0): 90, 17, 37, (500,517,0): 97, 19, 41, (500,518,0): 98, 19, 40, (500,519,0): 96, 19, 39, (500,520,0): 81, 10, 26, (500,521,0): 83, 15, 30, (500,522,0): 91, 17, 34, (500,523,0): 101, 20, 39, (500,524,0): 113, 21, 42, (500,525,0): 119, 24, 46, (500,526,0): 116, 21, 43, (500,527,0): 103, 18, 37, (500,528,0): 88, 20, 35, (500,529,0): 84, 24, 36, (500,530,0): 78, 20, 32, (500,531,0): 72, 14, 26, (500,532,0): 78, 20, 32, (500,533,0): 92, 32, 44, (500,534,0): 97, 35, 48, (500,535,0): 93, 29, 43, (500,536,0): 100, 32, 47, (500,537,0): 103, 32, 48, (500,538,0): 99, 26, 43, (500,539,0): 91, 17, 34, (500,540,0): 89, 15, 32, (500,541,0): 93, 20, 37, (500,542,0): 95, 22, 39, (500,543,0): 92, 21, 35, (500,544,0): 94, 24, 35, (500,545,0): 103, 31, 43, (500,546,0): 116, 35, 50, (500,547,0): 115, 32, 48, (500,548,0): 106, 25, 40, (500,549,0): 95, 21, 34, (500,550,0): 92, 26, 36, (500,551,0): 92, 32, 40, (500,552,0): 81, 21, 29, (500,553,0): 95, 32, 41, (500,554,0): 111, 37, 50, (500,555,0): 114, 33, 48, (500,556,0): 112, 28, 44, (500,557,0): 111, 28, 44, (500,558,0): 108, 30, 44, (500,559,0): 100, 30, 41, (500,560,0): 86, 26, 36, (500,561,0): 81, 30, 39, (500,562,0): 81, 33, 47, (500,563,0): 89, 35, 49, (500,564,0): 107, 33, 48, (500,565,0): 140, 35, 49, (500,566,0): 190, 44, 55, (500,567,0): 231, 57, 67, (500,568,0): 235, 45, 55, (500,569,0): 234, 52, 64, (500,570,0): 201, 46, 62, (500,571,0): 146, 27, 46, (500,572,0): 100, 21, 40, (500,573,0): 75, 31, 48, (500,574,0): 54, 32, 45, (500,575,0): 33, 23, 32, (500,576,0): 33, 27, 31, (500,577,0): 35, 26, 29, (500,578,0): 37, 25, 29, (500,579,0): 40, 23, 29, (500,580,0): 42, 21, 30, (500,581,0): 43, 20, 30, (500,582,0): 45, 19, 30, (500,583,0): 42, 21, 30, (500,584,0): 37, 20, 30, (500,585,0): 34, 21, 30, (500,586,0): 31, 24, 32, (500,587,0): 30, 25, 32, (500,588,0): 32, 25, 33, (500,589,0): 36, 24, 34, (500,590,0): 40, 24, 37, (500,591,0): 43, 23, 35, (500,592,0): 46, 23, 33, (500,593,0): 44, 21, 31, (500,594,0): 42, 19, 29, (500,595,0): 41, 19, 31, (500,596,0): 41, 21, 33, (500,597,0): 41, 18, 34, (500,598,0): 38, 15, 31, (500,599,0): 36, 11, 30, (501,0,0): 44, 69, 76, (501,1,0): 44, 69, 76, (501,2,0): 44, 69, 76, (501,3,0): 44, 69, 76, (501,4,0): 44, 69, 76, (501,5,0): 44, 69, 76, (501,6,0): 44, 69, 76, (501,7,0): 44, 69, 76, (501,8,0): 44, 69, 76, (501,9,0): 44, 69, 76, (501,10,0): 44, 69, 76, (501,11,0): 45, 70, 77, (501,12,0): 45, 70, 77, (501,13,0): 46, 71, 78, (501,14,0): 46, 71, 78, (501,15,0): 46, 71, 78, (501,16,0): 47, 70, 76, (501,17,0): 48, 71, 77, (501,18,0): 48, 71, 77, (501,19,0): 48, 71, 77, (501,20,0): 51, 71, 78, (501,21,0): 52, 72, 79, (501,22,0): 52, 72, 79, (501,23,0): 52, 72, 79, (501,24,0): 52, 71, 78, (501,25,0): 53, 72, 79, (501,26,0): 55, 72, 80, (501,27,0): 57, 74, 82, (501,28,0): 57, 74, 82, (501,29,0): 57, 74, 82, (501,30,0): 58, 72, 81, (501,31,0): 58, 73, 80, (501,32,0): 58, 73, 76, (501,33,0): 60, 74, 75, (501,34,0): 60, 74, 75, (501,35,0): 61, 75, 76, (501,36,0): 64, 75, 77, (501,37,0): 66, 76, 77, (501,38,0): 66, 76, 77, (501,39,0): 68, 77, 76, (501,40,0): 68, 74, 74, (501,41,0): 70, 74, 75, (501,42,0): 72, 76, 77, (501,43,0): 75, 77, 76, (501,44,0): 74, 76, 75, (501,45,0): 73, 73, 71, (501,46,0): 70, 70, 70, (501,47,0): 71, 67, 66, (501,48,0): 74, 66, 63, (501,49,0): 76, 65, 61, (501,50,0): 76, 65, 59, (501,51,0): 78, 65, 59, (501,52,0): 78, 65, 59, (501,53,0): 79, 64, 59, (501,54,0): 79, 64, 57, (501,55,0): 81, 64, 57, (501,56,0): 85, 66, 59, (501,57,0): 86, 66, 59, (501,58,0): 85, 65, 58, (501,59,0): 86, 63, 57, (501,60,0): 86, 61, 54, (501,61,0): 85, 60, 53, (501,62,0): 85, 60, 53, (501,63,0): 84, 59, 54, (501,64,0): 88, 64, 60, (501,65,0): 86, 65, 60, (501,66,0): 85, 64, 61, (501,67,0): 85, 64, 61, (501,68,0): 84, 63, 60, (501,69,0): 83, 64, 60, (501,70,0): 83, 62, 59, (501,71,0): 82, 63, 59, (501,72,0): 78, 58, 57, (501,73,0): 79, 59, 58, (501,74,0): 79, 61, 61, (501,75,0): 80, 62, 62, (501,76,0): 80, 62, 62, (501,77,0): 80, 62, 62, (501,78,0): 78, 62, 63, (501,79,0): 77, 61, 62, (501,80,0): 76, 62, 61, (501,81,0): 76, 62, 61, (501,82,0): 76, 62, 61, (501,83,0): 76, 62, 61, (501,84,0): 75, 61, 60, (501,85,0): 75, 61, 60, (501,86,0): 75, 61, 60, (501,87,0): 75, 61, 60, (501,88,0): 71, 57, 56, (501,89,0): 71, 57, 56, (501,90,0): 71, 57, 56, (501,91,0): 71, 57, 56, (501,92,0): 71, 57, 56, (501,93,0): 71, 57, 56, (501,94,0): 71, 57, 56, (501,95,0): 71, 57, 56, (501,96,0): 73, 57, 58, (501,97,0): 74, 58, 59, (501,98,0): 74, 58, 59, (501,99,0): 73, 59, 59, (501,100,0): 73, 59, 59, (501,101,0): 72, 58, 58, (501,102,0): 68, 56, 56, (501,103,0): 68, 56, 56, (501,104,0): 70, 58, 58, (501,105,0): 68, 58, 57, (501,106,0): 68, 58, 57, (501,107,0): 67, 57, 56, (501,108,0): 64, 56, 54, (501,109,0): 63, 55, 53, (501,110,0): 63, 55, 53, (501,111,0): 62, 54, 51, (501,112,0): 62, 54, 51, (501,113,0): 62, 55, 49, (501,114,0): 61, 54, 48, (501,115,0): 61, 54, 48, (501,116,0): 60, 53, 47, (501,117,0): 60, 53, 47, (501,118,0): 59, 52, 46, (501,119,0): 59, 52, 46, (501,120,0): 59, 52, 46, (501,121,0): 59, 52, 46, (501,122,0): 58, 51, 45, (501,123,0): 58, 51, 45, (501,124,0): 57, 50, 44, (501,125,0): 57, 50, 44, (501,126,0): 56, 49, 43, (501,127,0): 56, 49, 43, (501,128,0): 55, 50, 46, (501,129,0): 54, 49, 45, (501,130,0): 52, 47, 43, (501,131,0): 51, 46, 42, (501,132,0): 49, 44, 40, (501,133,0): 47, 42, 38, (501,134,0): 45, 40, 36, (501,135,0): 45, 40, 36, (501,136,0): 43, 38, 34, (501,137,0): 43, 38, 34, (501,138,0): 43, 38, 34, (501,139,0): 42, 37, 33, (501,140,0): 42, 37, 33, (501,141,0): 42, 37, 33, (501,142,0): 42, 37, 33, (501,143,0): 42, 37, 33, (501,144,0): 40, 36, 33, (501,145,0): 40, 36, 33, (501,146,0): 40, 36, 33, (501,147,0): 40, 36, 33, (501,148,0): 40, 36, 33, (501,149,0): 40, 36, 33, (501,150,0): 40, 36, 33, (501,151,0): 40, 36, 33, (501,152,0): 40, 36, 33, (501,153,0): 40, 36, 33, (501,154,0): 40, 36, 33, (501,155,0): 40, 36, 33, (501,156,0): 40, 36, 33, (501,157,0): 40, 36, 33, (501,158,0): 40, 36, 33, (501,159,0): 40, 36, 33, (501,160,0): 38, 33, 30, (501,161,0): 38, 33, 30, (501,162,0): 38, 33, 30, (501,163,0): 38, 33, 30, (501,164,0): 38, 33, 30, (501,165,0): 38, 33, 30, (501,166,0): 38, 33, 30, (501,167,0): 38, 33, 30, (501,168,0): 39, 34, 31, (501,169,0): 39, 34, 31, (501,170,0): 40, 35, 32, (501,171,0): 40, 35, 32, (501,172,0): 41, 36, 33, (501,173,0): 41, 36, 33, (501,174,0): 42, 37, 34, (501,175,0): 42, 37, 34, (501,176,0): 41, 37, 38, (501,177,0): 41, 37, 38, (501,178,0): 41, 37, 38, (501,179,0): 41, 37, 38, (501,180,0): 41, 37, 38, (501,181,0): 41, 37, 38, (501,182,0): 41, 37, 38, (501,183,0): 41, 37, 38, (501,184,0): 43, 39, 40, (501,185,0): 43, 39, 40, (501,186,0): 43, 39, 40, (501,187,0): 43, 39, 40, (501,188,0): 43, 39, 40, (501,189,0): 43, 39, 40, (501,190,0): 43, 39, 40, (501,191,0): 43, 38, 42, (501,192,0): 41, 36, 42, (501,193,0): 41, 36, 43, (501,194,0): 42, 37, 44, (501,195,0): 42, 37, 44, (501,196,0): 43, 38, 45, (501,197,0): 43, 38, 45, (501,198,0): 44, 39, 46, (501,199,0): 44, 39, 46, (501,200,0): 43, 38, 45, (501,201,0): 43, 38, 45, (501,202,0): 43, 38, 45, (501,203,0): 43, 38, 45, (501,204,0): 43, 38, 45, (501,205,0): 43, 38, 45, (501,206,0): 43, 38, 45, (501,207,0): 43, 38, 45, (501,208,0): 42, 36, 48, (501,209,0): 42, 36, 48, (501,210,0): 42, 36, 48, (501,211,0): 43, 37, 49, (501,212,0): 43, 37, 49, (501,213,0): 44, 38, 50, (501,214,0): 44, 38, 50, (501,215,0): 45, 39, 51, (501,216,0): 44, 38, 50, (501,217,0): 44, 38, 50, (501,218,0): 44, 38, 50, (501,219,0): 44, 38, 50, (501,220,0): 44, 38, 50, (501,221,0): 44, 38, 50, (501,222,0): 44, 38, 50, (501,223,0): 44, 38, 50, (501,224,0): 46, 40, 52, (501,225,0): 46, 40, 52, (501,226,0): 47, 39, 52, (501,227,0): 47, 39, 52, (501,228,0): 47, 39, 52, (501,229,0): 47, 39, 52, (501,230,0): 49, 38, 52, (501,231,0): 49, 38, 52, (501,232,0): 50, 38, 52, (501,233,0): 51, 39, 53, (501,234,0): 52, 40, 54, (501,235,0): 53, 41, 55, (501,236,0): 55, 41, 56, (501,237,0): 56, 42, 57, (501,238,0): 57, 43, 58, (501,239,0): 57, 43, 58, (501,240,0): 61, 45, 58, (501,241,0): 63, 45, 59, (501,242,0): 64, 46, 60, (501,243,0): 65, 47, 61, (501,244,0): 69, 49, 61, (501,245,0): 71, 51, 63, (501,246,0): 73, 51, 64, (501,247,0): 73, 51, 64, (501,248,0): 76, 54, 66, (501,249,0): 76, 54, 66, (501,250,0): 78, 55, 65, (501,251,0): 80, 57, 67, (501,252,0): 84, 58, 69, (501,253,0): 85, 59, 70, (501,254,0): 86, 60, 69, (501,255,0): 87, 61, 72, (501,256,0): 86, 62, 75, (501,257,0): 86, 62, 75, (501,258,0): 84, 62, 74, (501,259,0): 84, 62, 74, (501,260,0): 83, 61, 73, (501,261,0): 83, 61, 73, (501,262,0): 81, 61, 72, (501,263,0): 81, 61, 72, (501,264,0): 79, 59, 70, (501,265,0): 77, 60, 70, (501,266,0): 77, 60, 70, (501,267,0): 78, 61, 71, (501,268,0): 77, 61, 71, (501,269,0): 78, 62, 72, (501,270,0): 78, 62, 72, (501,271,0): 79, 63, 73, (501,272,0): 80, 62, 74, (501,273,0): 80, 62, 74, (501,274,0): 80, 62, 74, (501,275,0): 81, 63, 75, (501,276,0): 81, 63, 75, (501,277,0): 82, 64, 76, (501,278,0): 82, 64, 76, (501,279,0): 82, 64, 76, (501,280,0): 83, 65, 77, (501,281,0): 83, 65, 77, (501,282,0): 83, 65, 77, (501,283,0): 83, 65, 77, (501,284,0): 83, 65, 77, (501,285,0): 83, 65, 77, (501,286,0): 83, 65, 77, (501,287,0): 83, 65, 77, (501,288,0): 81, 63, 77, (501,289,0): 82, 64, 78, (501,290,0): 82, 64, 76, (501,291,0): 81, 65, 76, (501,292,0): 82, 66, 77, (501,293,0): 83, 67, 78, (501,294,0): 84, 67, 77, (501,295,0): 84, 67, 77, (501,296,0): 91, 70, 79, (501,297,0): 93, 70, 80, (501,298,0): 97, 69, 81, (501,299,0): 101, 71, 83, (501,300,0): 105, 72, 83, (501,301,0): 108, 72, 84, (501,302,0): 110, 72, 85, (501,303,0): 113, 73, 84, (501,304,0): 115, 75, 84, (501,305,0): 114, 74, 82, (501,306,0): 114, 73, 79, (501,307,0): 114, 73, 77, (501,308,0): 117, 75, 79, (501,309,0): 122, 77, 80, (501,310,0): 128, 79, 85, (501,311,0): 131, 80, 87, (501,312,0): 142, 85, 94, (501,313,0): 151, 88, 97, (501,314,0): 160, 93, 100, (501,315,0): 166, 94, 97, (501,316,0): 172, 97, 92, (501,317,0): 186, 108, 98, (501,318,0): 207, 125, 111, (501,319,0): 222, 141, 114, (501,320,0): 245, 164, 119, (501,321,0): 251, 178, 127, (501,322,0): 252, 185, 140, (501,323,0): 235, 180, 141, (501,324,0): 208, 164, 135, (501,325,0): 173, 141, 118, (501,326,0): 136, 110, 93, (501,327,0): 106, 87, 73, (501,328,0): 90, 73, 65, (501,329,0): 72, 57, 50, (501,330,0): 59, 42, 35, (501,331,0): 54, 36, 32, (501,332,0): 52, 34, 32, (501,333,0): 47, 29, 29, (501,334,0): 45, 26, 28, (501,335,0): 47, 28, 32, (501,336,0): 42, 23, 29, (501,337,0): 42, 22, 31, (501,338,0): 41, 21, 30, (501,339,0): 39, 19, 28, (501,340,0): 35, 18, 28, (501,341,0): 34, 17, 27, (501,342,0): 33, 16, 26, (501,343,0): 31, 15, 25, (501,344,0): 30, 14, 25, (501,345,0): 30, 14, 25, (501,346,0): 28, 14, 27, (501,347,0): 28, 14, 27, (501,348,0): 28, 14, 27, (501,349,0): 27, 15, 27, (501,350,0): 27, 15, 29, (501,351,0): 27, 15, 29, (501,352,0): 25, 12, 29, (501,353,0): 24, 13, 29, (501,354,0): 24, 13, 29, (501,355,0): 23, 12, 28, (501,356,0): 23, 12, 28, (501,357,0): 22, 11, 27, (501,358,0): 22, 11, 27, (501,359,0): 22, 11, 27, (501,360,0): 22, 11, 27, (501,361,0): 22, 11, 27, (501,362,0): 22, 11, 27, (501,363,0): 22, 11, 27, (501,364,0): 22, 11, 27, (501,365,0): 22, 11, 27, (501,366,0): 22, 11, 27, (501,367,0): 22, 11, 25, (501,368,0): 19, 11, 24, (501,369,0): 18, 10, 23, (501,370,0): 18, 10, 21, (501,371,0): 17, 9, 20, (501,372,0): 18, 10, 21, (501,373,0): 19, 12, 20, (501,374,0): 23, 13, 22, (501,375,0): 24, 14, 23, (501,376,0): 26, 15, 23, (501,377,0): 27, 16, 24, (501,378,0): 28, 15, 24, (501,379,0): 28, 15, 22, (501,380,0): 29, 16, 23, (501,381,0): 30, 17, 24, (501,382,0): 30, 17, 24, (501,383,0): 30, 17, 24, (501,384,0): 33, 16, 22, (501,385,0): 33, 16, 22, (501,386,0): 33, 16, 22, (501,387,0): 33, 16, 22, (501,388,0): 33, 16, 22, (501,389,0): 33, 16, 22, (501,390,0): 33, 16, 22, (501,391,0): 33, 16, 22, (501,392,0): 33, 16, 22, (501,393,0): 34, 17, 23, (501,394,0): 34, 17, 23, (501,395,0): 34, 17, 23, (501,396,0): 35, 18, 24, (501,397,0): 36, 19, 25, (501,398,0): 36, 19, 25, (501,399,0): 38, 19, 25, (501,400,0): 39, 18, 23, (501,401,0): 40, 17, 23, (501,402,0): 41, 18, 24, (501,403,0): 42, 19, 25, (501,404,0): 43, 20, 26, (501,405,0): 44, 21, 27, (501,406,0): 44, 21, 27, (501,407,0): 45, 22, 28, (501,408,0): 47, 24, 30, (501,409,0): 46, 23, 29, (501,410,0): 45, 22, 28, (501,411,0): 44, 21, 27, (501,412,0): 43, 20, 26, (501,413,0): 44, 21, 27, (501,414,0): 45, 22, 28, (501,415,0): 44, 23, 28, (501,416,0): 43, 22, 29, (501,417,0): 44, 23, 30, (501,418,0): 45, 24, 31, (501,419,0): 45, 26, 32, (501,420,0): 46, 26, 35, (501,421,0): 46, 29, 37, (501,422,0): 46, 31, 38, (501,423,0): 46, 31, 38, (501,424,0): 43, 30, 39, (501,425,0): 42, 29, 38, (501,426,0): 39, 27, 37, (501,427,0): 36, 26, 35, (501,428,0): 35, 25, 34, (501,429,0): 33, 26, 34, (501,430,0): 33, 25, 36, (501,431,0): 35, 25, 34, (501,432,0): 34, 22, 32, (501,433,0): 33, 22, 30, (501,434,0): 32, 21, 29, (501,435,0): 30, 19, 27, (501,436,0): 30, 19, 27, (501,437,0): 30, 19, 27, (501,438,0): 32, 19, 28, (501,439,0): 33, 20, 29, (501,440,0): 36, 20, 30, (501,441,0): 36, 20, 30, (501,442,0): 38, 21, 31, (501,443,0): 39, 22, 32, (501,444,0): 40, 23, 33, (501,445,0): 41, 24, 34, (501,446,0): 41, 24, 34, (501,447,0): 42, 25, 35, (501,448,0): 45, 25, 37, (501,449,0): 44, 24, 36, (501,450,0): 42, 22, 34, (501,451,0): 38, 20, 32, (501,452,0): 37, 17, 29, (501,453,0): 33, 15, 27, (501,454,0): 31, 13, 25, (501,455,0): 29, 13, 24, (501,456,0): 30, 14, 25, (501,457,0): 29, 13, 24, (501,458,0): 25, 12, 22, (501,459,0): 24, 11, 21, (501,460,0): 24, 11, 21, (501,461,0): 24, 11, 21, (501,462,0): 25, 12, 22, (501,463,0): 25, 12, 21, (501,464,0): 30, 14, 24, (501,465,0): 30, 15, 22, (501,466,0): 30, 13, 21, (501,467,0): 30, 13, 21, (501,468,0): 32, 12, 21, (501,469,0): 33, 13, 24, (501,470,0): 36, 14, 26, (501,471,0): 36, 16, 27, (501,472,0): 35, 15, 27, (501,473,0): 32, 14, 26, (501,474,0): 28, 12, 25, (501,475,0): 23, 9, 22, (501,476,0): 20, 8, 20, (501,477,0): 18, 8, 19, (501,478,0): 16, 8, 19, (501,479,0): 19, 7, 19, (501,480,0): 28, 8, 20, (501,481,0): 29, 7, 20, (501,482,0): 29, 7, 19, (501,483,0): 29, 9, 20, (501,484,0): 29, 9, 20, (501,485,0): 31, 10, 19, (501,486,0): 34, 8, 17, (501,487,0): 38, 6, 17, (501,488,0): 46, 8, 19, (501,489,0): 53, 7, 18, (501,490,0): 61, 9, 21, (501,491,0): 72, 14, 28, (501,492,0): 80, 18, 31, (501,493,0): 84, 18, 32, (501,494,0): 79, 11, 24, (501,495,0): 70, 8, 21, (501,496,0): 58, 8, 20, (501,497,0): 52, 9, 19, (501,498,0): 49, 7, 17, (501,499,0): 45, 5, 14, (501,500,0): 40, 3, 11, (501,501,0): 40, 5, 12, (501,502,0): 45, 8, 16, (501,503,0): 48, 11, 19, (501,504,0): 55, 13, 23, (501,505,0): 57, 14, 24, (501,506,0): 59, 11, 25, (501,507,0): 57, 6, 21, (501,508,0): 53, 2, 17, (501,509,0): 56, 6, 18, (501,510,0): 66, 13, 29, (501,511,0): 76, 19, 36, (501,512,0): 88, 23, 43, (501,513,0): 82, 14, 35, (501,514,0): 72, 9, 26, (501,515,0): 75, 12, 29, (501,516,0): 87, 18, 37, (501,517,0): 95, 22, 42, (501,518,0): 94, 19, 39, (501,519,0): 88, 15, 34, (501,520,0): 72, 6, 20, (501,521,0): 80, 14, 28, (501,522,0): 92, 19, 36, (501,523,0): 101, 22, 41, (501,524,0): 116, 27, 47, (501,525,0): 125, 32, 53, (501,526,0): 121, 29, 50, (501,527,0): 106, 25, 42, (501,528,0): 75, 15, 23, (501,529,0): 67, 18, 22, (501,530,0): 68, 17, 22, (501,531,0): 71, 18, 24, (501,532,0): 84, 27, 34, (501,533,0): 96, 36, 44, (501,534,0): 101, 38, 47, (501,535,0): 100, 34, 44, (501,536,0): 106, 40, 50, (501,537,0): 104, 36, 47, (501,538,0): 99, 27, 39, (501,539,0): 93, 19, 32, (501,540,0): 99, 21, 35, (501,541,0): 107, 26, 41, (501,542,0): 106, 23, 39, (501,543,0): 96, 18, 32, (501,544,0): 98, 26, 38, (501,545,0): 101, 31, 42, (501,546,0): 109, 31, 45, (501,547,0): 109, 28, 43, (501,548,0): 101, 23, 37, (501,549,0): 94, 22, 34, (501,550,0): 89, 26, 35, (501,551,0): 88, 31, 38, (501,552,0): 74, 19, 25, (501,553,0): 86, 26, 34, (501,554,0): 100, 30, 41, (501,555,0): 105, 27, 41, (501,556,0): 111, 27, 43, (501,557,0): 118, 31, 48, (501,558,0): 118, 34, 50, (501,559,0): 111, 33, 47, (501,560,0): 110, 40, 51, (501,561,0): 96, 34, 45, (501,562,0): 85, 33, 46, (501,563,0): 82, 30, 43, (501,564,0): 84, 20, 34, (501,565,0): 102, 14, 26, (501,566,0): 150, 24, 35, (501,567,0): 194, 43, 52, (501,568,0): 212, 42, 53, (501,569,0): 215, 49, 61, (501,570,0): 189, 44, 61, (501,571,0): 139, 23, 42, (501,572,0): 92, 13, 34, (501,573,0): 71, 20, 39, (501,574,0): 55, 27, 42, (501,575,0): 42, 26, 37, (501,576,0): 38, 25, 32, (501,577,0): 39, 24, 29, (501,578,0): 40, 23, 29, (501,579,0): 41, 22, 28, (501,580,0): 42, 19, 29, (501,581,0): 41, 18, 28, (501,582,0): 41, 18, 28, (501,583,0): 39, 19, 28, (501,584,0): 32, 19, 28, (501,585,0): 31, 21, 29, (501,586,0): 29, 24, 31, (501,587,0): 31, 26, 33, (501,588,0): 35, 25, 34, (501,589,0): 38, 25, 35, (501,590,0): 43, 25, 39, (501,591,0): 46, 24, 37, (501,592,0): 51, 25, 34, (501,593,0): 48, 23, 29, (501,594,0): 43, 22, 29, (501,595,0): 41, 22, 28, (501,596,0): 42, 22, 31, (501,597,0): 41, 21, 30, (501,598,0): 39, 17, 29, (501,599,0): 37, 15, 27, (502,0,0): 44, 69, 76, (502,1,0): 44, 69, 76, (502,2,0): 44, 69, 76, (502,3,0): 44, 69, 76, (502,4,0): 44, 69, 76, (502,5,0): 44, 69, 76, (502,6,0): 44, 69, 76, (502,7,0): 44, 69, 76, (502,8,0): 45, 70, 77, (502,9,0): 45, 70, 77, (502,10,0): 45, 70, 77, (502,11,0): 46, 71, 78, (502,12,0): 46, 71, 78, (502,13,0): 47, 72, 79, (502,14,0): 47, 72, 79, (502,15,0): 47, 72, 79, (502,16,0): 46, 71, 78, (502,17,0): 46, 71, 78, (502,18,0): 47, 72, 79, (502,19,0): 47, 72, 79, (502,20,0): 49, 72, 80, (502,21,0): 49, 72, 80, (502,22,0): 51, 71, 80, (502,23,0): 52, 72, 81, (502,24,0): 51, 71, 80, (502,25,0): 52, 72, 81, (502,26,0): 54, 72, 82, (502,27,0): 55, 73, 83, (502,28,0): 57, 74, 84, (502,29,0): 57, 74, 84, (502,30,0): 56, 73, 83, (502,31,0): 55, 72, 80, (502,32,0): 56, 74, 78, (502,33,0): 59, 74, 77, (502,34,0): 59, 74, 77, (502,35,0): 59, 74, 77, (502,36,0): 61, 75, 78, (502,37,0): 61, 75, 76, (502,38,0): 63, 74, 76, (502,39,0): 64, 74, 75, (502,40,0): 67, 77, 78, (502,41,0): 68, 77, 76, (502,42,0): 71, 77, 77, (502,43,0): 72, 76, 77, (502,44,0): 72, 76, 77, (502,45,0): 73, 75, 74, (502,46,0): 73, 74, 76, (502,47,0): 73, 73, 71, (502,48,0): 77, 69, 66, (502,49,0): 78, 69, 64, (502,50,0): 78, 69, 62, (502,51,0): 79, 68, 62, (502,52,0): 79, 68, 62, (502,53,0): 81, 68, 62, (502,54,0): 82, 67, 60, (502,55,0): 84, 67, 60, (502,56,0): 85, 68, 60, (502,57,0): 86, 67, 60, (502,58,0): 86, 66, 59, (502,59,0): 85, 65, 58, (502,60,0): 86, 63, 55, (502,61,0): 84, 61, 53, (502,62,0): 83, 60, 52, (502,63,0): 83, 60, 54, (502,64,0): 87, 66, 63, (502,65,0): 86, 67, 63, (502,66,0): 85, 65, 64, (502,67,0): 85, 65, 64, (502,68,0): 84, 64, 63, (502,69,0): 83, 65, 63, (502,70,0): 83, 63, 62, (502,71,0): 82, 64, 62, (502,72,0): 81, 63, 63, (502,73,0): 80, 62, 62, (502,74,0): 79, 61, 61, (502,75,0): 78, 60, 60, (502,76,0): 75, 59, 59, (502,77,0): 76, 60, 60, (502,78,0): 76, 60, 60, (502,79,0): 76, 60, 60, (502,80,0): 74, 60, 59, (502,81,0): 74, 60, 59, (502,82,0): 74, 60, 59, (502,83,0): 74, 60, 59, (502,84,0): 75, 61, 60, (502,85,0): 75, 61, 60, (502,86,0): 75, 61, 60, (502,87,0): 75, 61, 60, (502,88,0): 72, 58, 57, (502,89,0): 72, 58, 57, (502,90,0): 72, 58, 57, (502,91,0): 72, 58, 57, (502,92,0): 72, 58, 57, (502,93,0): 72, 58, 57, (502,94,0): 72, 58, 57, (502,95,0): 72, 58, 57, (502,96,0): 73, 59, 59, (502,97,0): 73, 59, 59, (502,98,0): 74, 60, 60, (502,99,0): 75, 61, 61, (502,100,0): 74, 60, 60, (502,101,0): 71, 59, 59, (502,102,0): 69, 57, 57, (502,103,0): 68, 56, 56, (502,104,0): 69, 59, 58, (502,105,0): 68, 58, 57, (502,106,0): 68, 58, 57, (502,107,0): 66, 58, 56, (502,108,0): 64, 56, 54, (502,109,0): 63, 55, 53, (502,110,0): 61, 56, 53, (502,111,0): 60, 55, 51, (502,112,0): 62, 54, 51, (502,113,0): 62, 55, 49, (502,114,0): 61, 54, 48, (502,115,0): 61, 54, 48, (502,116,0): 60, 53, 47, (502,117,0): 60, 53, 47, (502,118,0): 59, 52, 46, (502,119,0): 59, 52, 46, (502,120,0): 60, 53, 47, (502,121,0): 60, 53, 47, (502,122,0): 59, 52, 46, (502,123,0): 59, 52, 46, (502,124,0): 58, 51, 45, (502,125,0): 58, 51, 45, (502,126,0): 57, 50, 44, (502,127,0): 57, 50, 44, (502,128,0): 54, 49, 45, (502,129,0): 52, 48, 45, (502,130,0): 51, 47, 44, (502,131,0): 50, 46, 43, (502,132,0): 49, 45, 42, (502,133,0): 47, 43, 40, (502,134,0): 47, 43, 40, (502,135,0): 46, 42, 39, (502,136,0): 45, 41, 38, (502,137,0): 45, 41, 38, (502,138,0): 44, 40, 37, (502,139,0): 43, 39, 36, (502,140,0): 42, 38, 35, (502,141,0): 41, 37, 34, (502,142,0): 41, 37, 34, (502,143,0): 41, 37, 34, (502,144,0): 40, 36, 33, (502,145,0): 40, 36, 33, (502,146,0): 40, 36, 33, (502,147,0): 40, 36, 33, (502,148,0): 40, 36, 33, (502,149,0): 40, 36, 33, (502,150,0): 40, 36, 33, (502,151,0): 40, 36, 33, (502,152,0): 41, 37, 34, (502,153,0): 41, 37, 34, (502,154,0): 41, 37, 34, (502,155,0): 41, 37, 34, (502,156,0): 41, 37, 34, (502,157,0): 41, 37, 34, (502,158,0): 41, 37, 34, (502,159,0): 41, 37, 34, (502,160,0): 40, 35, 32, (502,161,0): 40, 35, 32, (502,162,0): 40, 35, 32, (502,163,0): 40, 35, 32, (502,164,0): 40, 35, 32, (502,165,0): 40, 35, 32, (502,166,0): 40, 35, 32, (502,167,0): 40, 35, 32, (502,168,0): 39, 34, 31, (502,169,0): 39, 34, 31, (502,170,0): 40, 35, 32, (502,171,0): 40, 35, 32, (502,172,0): 41, 36, 33, (502,173,0): 41, 36, 33, (502,174,0): 42, 37, 34, (502,175,0): 42, 37, 34, (502,176,0): 41, 37, 38, (502,177,0): 41, 37, 38, (502,178,0): 41, 37, 38, (502,179,0): 41, 37, 38, (502,180,0): 41, 37, 38, (502,181,0): 41, 37, 38, (502,182,0): 41, 37, 38, (502,183,0): 41, 37, 38, (502,184,0): 43, 39, 40, (502,185,0): 43, 39, 40, (502,186,0): 43, 39, 40, (502,187,0): 43, 39, 40, (502,188,0): 43, 39, 40, (502,189,0): 43, 39, 40, (502,190,0): 43, 39, 40, (502,191,0): 43, 38, 42, (502,192,0): 41, 36, 42, (502,193,0): 41, 36, 43, (502,194,0): 42, 37, 44, (502,195,0): 42, 37, 44, (502,196,0): 43, 38, 45, (502,197,0): 43, 38, 45, (502,198,0): 44, 39, 46, (502,199,0): 44, 39, 46, (502,200,0): 43, 38, 45, (502,201,0): 43, 38, 45, (502,202,0): 43, 38, 45, (502,203,0): 43, 38, 45, (502,204,0): 43, 38, 45, (502,205,0): 43, 38, 45, (502,206,0): 43, 38, 45, (502,207,0): 43, 38, 45, (502,208,0): 41, 35, 47, (502,209,0): 42, 36, 48, (502,210,0): 42, 36, 48, (502,211,0): 43, 37, 49, (502,212,0): 43, 37, 49, (502,213,0): 44, 38, 50, (502,214,0): 44, 38, 50, (502,215,0): 44, 38, 50, (502,216,0): 44, 38, 50, (502,217,0): 44, 38, 50, (502,218,0): 44, 38, 50, (502,219,0): 44, 38, 50, (502,220,0): 44, 38, 50, (502,221,0): 44, 38, 50, (502,222,0): 44, 38, 50, (502,223,0): 44, 38, 50, (502,224,0): 46, 40, 52, (502,225,0): 46, 40, 52, (502,226,0): 46, 40, 52, (502,227,0): 46, 40, 52, (502,228,0): 47, 39, 52, (502,229,0): 47, 39, 52, (502,230,0): 46, 38, 51, (502,231,0): 46, 38, 51, (502,232,0): 48, 37, 51, (502,233,0): 49, 38, 52, (502,234,0): 50, 38, 52, (502,235,0): 51, 39, 53, (502,236,0): 53, 41, 55, (502,237,0): 54, 42, 56, (502,238,0): 55, 41, 56, (502,239,0): 56, 42, 57, (502,240,0): 61, 44, 60, (502,241,0): 61, 44, 60, (502,242,0): 63, 45, 59, (502,243,0): 65, 47, 61, (502,244,0): 69, 48, 63, (502,245,0): 70, 49, 64, (502,246,0): 72, 50, 63, (502,247,0): 73, 51, 64, (502,248,0): 76, 52, 65, (502,249,0): 77, 53, 66, (502,250,0): 80, 54, 67, (502,251,0): 81, 55, 68, (502,252,0): 84, 56, 68, (502,253,0): 86, 58, 70, (502,254,0): 87, 59, 71, (502,255,0): 87, 59, 71, (502,256,0): 87, 61, 74, (502,257,0): 85, 61, 74, (502,258,0): 84, 60, 73, (502,259,0): 84, 60, 73, (502,260,0): 82, 60, 72, (502,261,0): 82, 60, 72, (502,262,0): 81, 59, 71, (502,263,0): 80, 60, 71, (502,264,0): 78, 58, 69, (502,265,0): 79, 59, 70, (502,266,0): 77, 60, 70, (502,267,0): 78, 61, 71, (502,268,0): 78, 61, 71, (502,269,0): 79, 62, 72, (502,270,0): 78, 62, 72, (502,271,0): 78, 62, 72, (502,272,0): 79, 61, 73, (502,273,0): 79, 61, 73, (502,274,0): 79, 61, 73, (502,275,0): 80, 62, 74, (502,276,0): 80, 62, 74, (502,277,0): 81, 63, 75, (502,278,0): 81, 63, 75, (502,279,0): 81, 63, 75, (502,280,0): 81, 63, 75, (502,281,0): 81, 63, 75, (502,282,0): 81, 63, 75, (502,283,0): 81, 63, 75, (502,284,0): 81, 63, 75, (502,285,0): 81, 63, 75, (502,286,0): 81, 63, 75, (502,287,0): 81, 63, 75, (502,288,0): 83, 62, 77, (502,289,0): 81, 63, 77, (502,290,0): 82, 64, 76, (502,291,0): 82, 64, 76, (502,292,0): 83, 65, 77, (502,293,0): 83, 65, 77, (502,294,0): 83, 66, 76, (502,295,0): 84, 67, 77, (502,296,0): 92, 71, 80, (502,297,0): 94, 71, 81, (502,298,0): 96, 70, 81, (502,299,0): 100, 70, 82, (502,300,0): 104, 71, 82, (502,301,0): 107, 71, 83, (502,302,0): 110, 72, 85, (502,303,0): 111, 73, 84, (502,304,0): 115, 75, 84, (502,305,0): 114, 74, 82, (502,306,0): 114, 73, 79, (502,307,0): 114, 73, 77, (502,308,0): 117, 75, 79, (502,309,0): 122, 77, 82, (502,310,0): 128, 78, 87, (502,311,0): 132, 79, 89, (502,312,0): 143, 83, 95, (502,313,0): 152, 89, 100, (502,314,0): 163, 93, 103, (502,315,0): 170, 95, 100, (502,316,0): 175, 97, 95, (502,317,0): 186, 106, 97, (502,318,0): 206, 123, 109, (502,319,0): 223, 137, 110, (502,320,0): 243, 159, 113, (502,321,0): 254, 177, 125, (502,322,0): 255, 192, 146, (502,323,0): 253, 194, 154, (502,324,0): 229, 182, 152, (502,325,0): 196, 160, 136, (502,326,0): 157, 130, 111, (502,327,0): 127, 105, 91, (502,328,0): 105, 87, 77, (502,329,0): 87, 70, 62, (502,330,0): 71, 52, 45, (502,331,0): 63, 44, 38, (502,332,0): 58, 39, 35, (502,333,0): 51, 31, 30, (502,334,0): 47, 29, 29, (502,335,0): 48, 29, 31, (502,336,0): 44, 23, 30, (502,337,0): 44, 23, 30, (502,338,0): 41, 22, 28, (502,339,0): 40, 21, 27, (502,340,0): 38, 18, 27, (502,341,0): 34, 17, 25, (502,342,0): 33, 16, 26, (502,343,0): 32, 15, 25, (502,344,0): 30, 14, 24, (502,345,0): 30, 14, 24, (502,346,0): 30, 14, 25, (502,347,0): 28, 15, 25, (502,348,0): 28, 14, 27, (502,349,0): 28, 14, 27, (502,350,0): 28, 14, 27, (502,351,0): 27, 15, 27, (502,352,0): 25, 13, 27, (502,353,0): 25, 13, 27, (502,354,0): 25, 13, 27, (502,355,0): 24, 12, 26, (502,356,0): 24, 12, 26, (502,357,0): 23, 11, 25, (502,358,0): 23, 11, 25, (502,359,0): 23, 11, 25, (502,360,0): 23, 11, 25, (502,361,0): 23, 11, 25, (502,362,0): 23, 11, 25, (502,363,0): 23, 11, 25, (502,364,0): 23, 11, 25, (502,365,0): 23, 11, 25, (502,366,0): 23, 11, 25, (502,367,0): 22, 11, 25, (502,368,0): 20, 12, 25, (502,369,0): 18, 12, 22, (502,370,0): 18, 12, 22, (502,371,0): 17, 11, 21, (502,372,0): 19, 12, 20, (502,373,0): 20, 13, 21, (502,374,0): 24, 14, 23, (502,375,0): 25, 15, 23, (502,376,0): 25, 15, 23, (502,377,0): 25, 15, 23, (502,378,0): 27, 16, 22, (502,379,0): 27, 16, 22, (502,380,0): 29, 16, 23, (502,381,0): 29, 17, 21, (502,382,0): 29, 17, 21, (502,383,0): 30, 18, 22, (502,384,0): 33, 16, 22, (502,385,0): 33, 16, 22, (502,386,0): 33, 16, 22, (502,387,0): 33, 16, 22, (502,388,0): 33, 16, 22, (502,389,0): 33, 16, 22, (502,390,0): 33, 16, 22, (502,391,0): 33, 16, 22, (502,392,0): 33, 16, 22, (502,393,0): 33, 16, 22, (502,394,0): 34, 17, 23, (502,395,0): 34, 17, 23, (502,396,0): 35, 18, 24, (502,397,0): 35, 18, 24, (502,398,0): 35, 18, 24, (502,399,0): 38, 19, 25, (502,400,0): 37, 16, 23, (502,401,0): 37, 16, 23, (502,402,0): 38, 17, 24, (502,403,0): 39, 18, 25, (502,404,0): 40, 19, 26, (502,405,0): 42, 21, 28, (502,406,0): 43, 22, 29, (502,407,0): 43, 22, 29, (502,408,0): 44, 23, 30, (502,409,0): 44, 23, 30, (502,410,0): 43, 22, 29, (502,411,0): 42, 21, 28, (502,412,0): 42, 21, 28, (502,413,0): 43, 22, 29, (502,414,0): 44, 23, 30, (502,415,0): 45, 24, 31, (502,416,0): 44, 23, 30, (502,417,0): 43, 24, 30, (502,418,0): 43, 24, 30, (502,419,0): 44, 25, 31, (502,420,0): 45, 25, 34, (502,421,0): 44, 27, 35, (502,422,0): 43, 28, 35, (502,423,0): 43, 28, 35, (502,424,0): 42, 29, 38, (502,425,0): 40, 27, 36, (502,426,0): 38, 26, 36, (502,427,0): 35, 25, 34, (502,428,0): 34, 24, 33, (502,429,0): 34, 24, 33, (502,430,0): 35, 25, 36, (502,431,0): 35, 25, 34, (502,432,0): 35, 23, 33, (502,433,0): 34, 23, 31, (502,434,0): 32, 21, 29, (502,435,0): 31, 20, 28, (502,436,0): 30, 19, 27, (502,437,0): 30, 19, 27, (502,438,0): 31, 18, 27, (502,439,0): 32, 19, 28, (502,440,0): 35, 19, 29, (502,441,0): 35, 19, 29, (502,442,0): 37, 20, 30, (502,443,0): 38, 21, 31, (502,444,0): 39, 22, 32, (502,445,0): 41, 24, 34, (502,446,0): 42, 25, 35, (502,447,0): 44, 24, 35, (502,448,0): 49, 27, 39, (502,449,0): 48, 26, 38, (502,450,0): 46, 24, 36, (502,451,0): 42, 22, 33, (502,452,0): 40, 18, 30, (502,453,0): 36, 16, 27, (502,454,0): 32, 15, 25, (502,455,0): 31, 14, 24, (502,456,0): 31, 15, 25, (502,457,0): 30, 14, 24, (502,458,0): 26, 13, 22, (502,459,0): 25, 12, 21, (502,460,0): 23, 12, 20, (502,461,0): 23, 12, 20, (502,462,0): 24, 13, 21, (502,463,0): 25, 14, 22, (502,464,0): 29, 16, 25, (502,465,0): 28, 15, 24, (502,466,0): 30, 14, 24, (502,467,0): 29, 13, 23, (502,468,0): 31, 14, 24, (502,469,0): 32, 14, 26, (502,470,0): 36, 16, 28, (502,471,0): 37, 17, 29, (502,472,0): 37, 16, 31, (502,473,0): 33, 15, 29, (502,474,0): 29, 12, 28, (502,475,0): 24, 10, 25, (502,476,0): 21, 9, 23, (502,477,0): 18, 7, 21, (502,478,0): 16, 8, 21, (502,479,0): 18, 7, 21, (502,480,0): 23, 5, 19, (502,481,0): 25, 5, 17, (502,482,0): 26, 6, 18, (502,483,0): 26, 6, 17, (502,484,0): 27, 7, 18, (502,485,0): 28, 7, 16, (502,486,0): 33, 6, 15, (502,487,0): 37, 4, 15, (502,488,0): 51, 7, 20, (502,489,0): 58, 8, 20, (502,490,0): 66, 10, 23, (502,491,0): 74, 13, 28, (502,492,0): 76, 14, 27, (502,493,0): 74, 12, 25, (502,494,0): 69, 7, 20, (502,495,0): 59, 5, 18, (502,496,0): 46, 6, 17, (502,497,0): 42, 9, 18, (502,498,0): 41, 10, 18, (502,499,0): 38, 7, 15, (502,500,0): 37, 4, 13, (502,501,0): 37, 4, 13, (502,502,0): 43, 7, 17, (502,503,0): 47, 9, 20, (502,504,0): 55, 13, 23, (502,505,0): 59, 16, 26, (502,506,0): 62, 16, 27, (502,507,0): 59, 11, 23, (502,508,0): 54, 6, 18, (502,509,0): 54, 7, 17, (502,510,0): 63, 13, 25, (502,511,0): 71, 17, 31, (502,512,0): 79, 16, 35, (502,513,0): 74, 11, 30, (502,514,0): 67, 9, 24, (502,515,0): 68, 10, 25, (502,516,0): 76, 13, 30, (502,517,0): 83, 16, 34, (502,518,0): 86, 15, 33, (502,519,0): 83, 14, 32, (502,520,0): 73, 11, 24, (502,521,0): 77, 15, 28, (502,522,0): 87, 19, 34, (502,523,0): 101, 24, 42, (502,524,0): 114, 29, 48, (502,525,0): 119, 32, 51, (502,526,0): 116, 31, 50, (502,527,0): 107, 31, 44, (502,528,0): 82, 23, 29, (502,529,0): 74, 22, 26, (502,530,0): 80, 23, 29, (502,531,0): 93, 34, 40, (502,532,0): 105, 42, 50, (502,533,0): 108, 41, 50, (502,534,0): 104, 37, 46, (502,535,0): 101, 34, 43, (502,536,0): 102, 35, 44, (502,537,0): 101, 36, 44, (502,538,0): 99, 32, 41, (502,539,0): 98, 28, 38, (502,540,0): 103, 30, 41, (502,541,0): 111, 33, 46, (502,542,0): 109, 27, 41, (502,543,0): 99, 19, 32, (502,544,0): 97, 27, 38, (502,545,0): 97, 26, 40, (502,546,0): 100, 22, 38, (502,547,0): 100, 19, 36, (502,548,0): 96, 18, 34, (502,549,0): 92, 20, 34, (502,550,0): 86, 23, 34, (502,551,0): 83, 27, 36, (502,552,0): 77, 24, 32, (502,553,0): 84, 27, 36, (502,554,0): 91, 25, 37, (502,555,0): 96, 22, 37, (502,556,0): 106, 25, 42, (502,557,0): 116, 31, 50, (502,558,0): 117, 34, 52, (502,559,0): 113, 30, 48, (502,560,0): 129, 48, 65, (502,561,0): 111, 38, 55, (502,562,0): 90, 31, 49, (502,563,0): 79, 26, 42, (502,564,0): 73, 19, 33, (502,565,0): 80, 12, 23, (502,566,0): 107, 14, 24, (502,567,0): 133, 22, 29, (502,568,0): 158, 33, 41, (502,569,0): 160, 36, 47, (502,570,0): 142, 31, 47, (502,571,0): 111, 18, 37, (502,572,0): 85, 13, 33, (502,573,0): 75, 18, 37, (502,574,0): 71, 24, 40, (502,575,0): 63, 25, 38, (502,576,0): 52, 20, 31, (502,577,0): 49, 22, 31, (502,578,0): 47, 21, 30, (502,579,0): 43, 20, 28, (502,580,0): 42, 19, 29, (502,581,0): 39, 18, 27, (502,582,0): 37, 17, 26, (502,583,0): 35, 18, 26, (502,584,0): 32, 19, 28, (502,585,0): 30, 20, 28, (502,586,0): 30, 23, 31, (502,587,0): 31, 26, 33, (502,588,0): 36, 26, 35, (502,589,0): 40, 27, 37, (502,590,0): 46, 25, 40, (502,591,0): 49, 25, 39, (502,592,0): 54, 28, 37, (502,593,0): 51, 26, 30, (502,594,0): 45, 24, 29, (502,595,0): 41, 25, 28, (502,596,0): 40, 25, 30, (502,597,0): 40, 25, 30, (502,598,0): 40, 20, 29, (502,599,0): 37, 17, 26, (503,0,0): 44, 69, 76, (503,1,0): 44, 69, 76, (503,2,0): 44, 69, 76, (503,3,0): 44, 69, 76, (503,4,0): 44, 69, 76, (503,5,0): 44, 69, 76, (503,6,0): 44, 69, 76, (503,7,0): 44, 69, 76, (503,8,0): 45, 70, 77, (503,9,0): 46, 71, 78, (503,10,0): 46, 71, 78, (503,11,0): 47, 72, 79, (503,12,0): 47, 72, 79, (503,13,0): 48, 73, 80, (503,14,0): 48, 73, 80, (503,15,0): 48, 73, 80, (503,16,0): 46, 71, 78, (503,17,0): 46, 71, 78, (503,18,0): 46, 71, 78, (503,19,0): 47, 72, 79, (503,20,0): 48, 71, 79, (503,21,0): 49, 72, 80, (503,22,0): 51, 71, 80, (503,23,0): 52, 72, 81, (503,24,0): 50, 70, 79, (503,25,0): 51, 71, 80, (503,26,0): 54, 72, 82, (503,27,0): 55, 73, 83, (503,28,0): 57, 74, 84, (503,29,0): 56, 73, 83, (503,30,0): 56, 73, 83, (503,31,0): 55, 72, 80, (503,32,0): 57, 75, 79, (503,33,0): 56, 76, 77, (503,34,0): 57, 75, 79, (503,35,0): 57, 75, 77, (503,36,0): 57, 75, 77, (503,37,0): 59, 74, 77, (503,38,0): 60, 74, 77, (503,39,0): 62, 73, 75, (503,40,0): 69, 80, 82, (503,41,0): 68, 78, 79, (503,42,0): 68, 76, 78, (503,43,0): 69, 75, 75, (503,44,0): 69, 75, 75, (503,45,0): 70, 76, 76, (503,46,0): 74, 78, 79, (503,47,0): 77, 79, 78, (503,48,0): 78, 73, 70, (503,49,0): 80, 73, 67, (503,50,0): 80, 73, 67, (503,51,0): 80, 73, 65, (503,52,0): 81, 72, 65, (503,53,0): 82, 71, 65, (503,54,0): 84, 71, 65, (503,55,0): 84, 71, 63, (503,56,0): 84, 69, 62, (503,57,0): 85, 68, 60, (503,58,0): 85, 66, 59, (503,59,0): 84, 65, 58, (503,60,0): 84, 64, 57, (503,61,0): 82, 62, 53, (503,62,0): 81, 61, 52, (503,63,0): 81, 61, 54, (503,64,0): 86, 67, 63, (503,65,0): 85, 67, 65, (503,66,0): 85, 67, 67, (503,67,0): 82, 67, 64, (503,68,0): 84, 66, 64, (503,69,0): 81, 66, 63, (503,70,0): 83, 65, 63, (503,71,0): 82, 64, 62, (503,72,0): 83, 65, 65, (503,73,0): 81, 63, 63, (503,74,0): 79, 61, 61, (503,75,0): 77, 59, 59, (503,76,0): 73, 57, 57, (503,77,0): 74, 58, 58, (503,78,0): 75, 59, 59, (503,79,0): 75, 59, 59, (503,80,0): 73, 59, 58, (503,81,0): 73, 59, 58, (503,82,0): 73, 59, 58, (503,83,0): 74, 60, 59, (503,84,0): 74, 60, 59, (503,85,0): 74, 60, 59, (503,86,0): 74, 60, 59, (503,87,0): 74, 60, 59, (503,88,0): 72, 58, 57, (503,89,0): 72, 58, 57, (503,90,0): 72, 58, 57, (503,91,0): 72, 58, 57, (503,92,0): 72, 58, 57, (503,93,0): 72, 58, 57, (503,94,0): 72, 58, 57, (503,95,0): 72, 58, 57, (503,96,0): 73, 59, 59, (503,97,0): 74, 60, 60, (503,98,0): 75, 61, 61, (503,99,0): 76, 62, 62, (503,100,0): 73, 61, 61, (503,101,0): 71, 59, 59, (503,102,0): 69, 57, 57, (503,103,0): 67, 57, 56, (503,104,0): 69, 59, 58, (503,105,0): 67, 59, 57, (503,106,0): 67, 59, 57, (503,107,0): 66, 58, 56, (503,108,0): 64, 56, 54, (503,109,0): 63, 55, 53, (503,110,0): 61, 56, 53, (503,111,0): 60, 55, 52, (503,112,0): 62, 54, 51, (503,113,0): 62, 55, 49, (503,114,0): 61, 54, 48, (503,115,0): 61, 54, 48, (503,116,0): 60, 53, 47, (503,117,0): 60, 53, 47, (503,118,0): 59, 52, 46, (503,119,0): 59, 52, 46, (503,120,0): 60, 53, 47, (503,121,0): 60, 53, 47, (503,122,0): 60, 53, 47, (503,123,0): 59, 52, 46, (503,124,0): 59, 52, 46, (503,125,0): 58, 51, 45, (503,126,0): 58, 51, 45, (503,127,0): 55, 50, 46, (503,128,0): 52, 48, 45, (503,129,0): 52, 48, 45, (503,130,0): 51, 47, 44, (503,131,0): 50, 46, 43, (503,132,0): 49, 45, 42, (503,133,0): 49, 45, 42, (503,134,0): 48, 44, 41, (503,135,0): 48, 44, 41, (503,136,0): 47, 43, 40, (503,137,0): 47, 43, 40, (503,138,0): 46, 42, 39, (503,139,0): 44, 40, 37, (503,140,0): 43, 39, 36, (503,141,0): 42, 38, 35, (503,142,0): 41, 37, 34, (503,143,0): 40, 36, 33, (503,144,0): 40, 36, 33, (503,145,0): 40, 36, 33, (503,146,0): 40, 36, 33, (503,147,0): 40, 36, 33, (503,148,0): 40, 36, 33, (503,149,0): 40, 36, 33, (503,150,0): 40, 36, 33, (503,151,0): 40, 36, 33, (503,152,0): 41, 37, 34, (503,153,0): 41, 37, 34, (503,154,0): 41, 37, 34, (503,155,0): 41, 37, 34, (503,156,0): 41, 37, 34, (503,157,0): 41, 37, 34, (503,158,0): 41, 37, 34, (503,159,0): 41, 37, 34, (503,160,0): 40, 35, 32, (503,161,0): 40, 35, 32, (503,162,0): 40, 35, 32, (503,163,0): 40, 35, 32, (503,164,0): 40, 35, 32, (503,165,0): 40, 35, 32, (503,166,0): 40, 35, 32, (503,167,0): 40, 35, 32, (503,168,0): 39, 34, 31, (503,169,0): 39, 34, 31, (503,170,0): 40, 35, 32, (503,171,0): 40, 35, 32, (503,172,0): 41, 36, 33, (503,173,0): 41, 36, 33, (503,174,0): 42, 37, 34, (503,175,0): 42, 37, 34, (503,176,0): 41, 37, 38, (503,177,0): 41, 37, 38, (503,178,0): 41, 37, 38, (503,179,0): 41, 37, 38, (503,180,0): 41, 37, 38, (503,181,0): 41, 37, 38, (503,182,0): 41, 37, 38, (503,183,0): 41, 37, 38, (503,184,0): 43, 39, 40, (503,185,0): 43, 39, 40, (503,186,0): 43, 39, 40, (503,187,0): 43, 39, 40, (503,188,0): 43, 39, 40, (503,189,0): 43, 39, 40, (503,190,0): 43, 39, 40, (503,191,0): 43, 38, 42, (503,192,0): 41, 36, 42, (503,193,0): 41, 36, 43, (503,194,0): 42, 37, 44, (503,195,0): 42, 37, 44, (503,196,0): 43, 38, 45, (503,197,0): 43, 38, 45, (503,198,0): 44, 39, 46, (503,199,0): 44, 39, 46, (503,200,0): 43, 38, 45, (503,201,0): 43, 38, 45, (503,202,0): 43, 38, 45, (503,203,0): 43, 38, 45, (503,204,0): 43, 38, 45, (503,205,0): 43, 38, 45, (503,206,0): 43, 38, 45, (503,207,0): 43, 38, 45, (503,208,0): 41, 35, 47, (503,209,0): 41, 35, 47, (503,210,0): 42, 36, 48, (503,211,0): 42, 36, 48, (503,212,0): 43, 37, 49, (503,213,0): 43, 37, 49, (503,214,0): 44, 38, 50, (503,215,0): 44, 38, 50, (503,216,0): 44, 38, 50, (503,217,0): 44, 38, 50, (503,218,0): 44, 38, 50, (503,219,0): 44, 38, 50, (503,220,0): 44, 38, 50, (503,221,0): 44, 38, 50, (503,222,0): 44, 38, 50, (503,223,0): 44, 38, 50, (503,224,0): 46, 40, 52, (503,225,0): 46, 40, 52, (503,226,0): 46, 40, 52, (503,227,0): 46, 40, 52, (503,228,0): 46, 38, 51, (503,229,0): 46, 38, 51, (503,230,0): 46, 38, 51, (503,231,0): 46, 38, 51, (503,232,0): 48, 37, 51, (503,233,0): 48, 37, 51, (503,234,0): 50, 38, 52, (503,235,0): 51, 39, 53, (503,236,0): 52, 40, 54, (503,237,0): 53, 41, 55, (503,238,0): 55, 41, 56, (503,239,0): 55, 41, 56, (503,240,0): 58, 44, 59, (503,241,0): 61, 44, 60, (503,242,0): 62, 45, 61, (503,243,0): 65, 47, 61, (503,244,0): 66, 48, 62, (503,245,0): 70, 49, 64, (503,246,0): 71, 50, 65, (503,247,0): 73, 51, 64, (503,248,0): 76, 52, 66, (503,249,0): 77, 53, 66, (503,250,0): 80, 54, 67, (503,251,0): 81, 55, 68, (503,252,0): 84, 56, 70, (503,253,0): 85, 57, 69, (503,254,0): 89, 59, 71, (503,255,0): 87, 59, 71, (503,256,0): 87, 61, 74, (503,257,0): 84, 60, 73, (503,258,0): 84, 60, 73, (503,259,0): 83, 59, 72, (503,260,0): 83, 59, 72, (503,261,0): 81, 59, 71, (503,262,0): 81, 59, 71, (503,263,0): 81, 59, 71, (503,264,0): 79, 57, 69, (503,265,0): 78, 58, 69, (503,266,0): 79, 59, 70, (503,267,0): 77, 60, 70, (503,268,0): 78, 61, 71, (503,269,0): 78, 61, 71, (503,270,0): 79, 62, 72, (503,271,0): 78, 62, 72, (503,272,0): 78, 60, 72, (503,273,0): 78, 60, 72, (503,274,0): 78, 60, 72, (503,275,0): 79, 61, 73, (503,276,0): 79, 61, 73, (503,277,0): 80, 62, 74, (503,278,0): 80, 62, 74, (503,279,0): 81, 63, 75, (503,280,0): 81, 63, 75, (503,281,0): 81, 63, 75, (503,282,0): 81, 63, 75, (503,283,0): 81, 63, 75, (503,284,0): 81, 63, 75, (503,285,0): 81, 63, 75, (503,286,0): 81, 63, 75, (503,287,0): 81, 63, 75, (503,288,0): 83, 62, 77, (503,289,0): 83, 62, 77, (503,290,0): 83, 63, 75, (503,291,0): 82, 64, 76, (503,292,0): 82, 64, 76, (503,293,0): 83, 65, 77, (503,294,0): 83, 66, 76, (503,295,0): 86, 66, 77, (503,296,0): 93, 72, 81, (503,297,0): 94, 71, 81, (503,298,0): 96, 70, 81, (503,299,0): 98, 70, 82, (503,300,0): 103, 71, 82, (503,301,0): 105, 72, 83, (503,302,0): 109, 73, 85, (503,303,0): 111, 73, 84, (503,304,0): 115, 75, 84, (503,305,0): 114, 74, 82, (503,306,0): 114, 73, 79, (503,307,0): 114, 73, 79, (503,308,0): 116, 74, 78, (503,309,0): 122, 75, 81, (503,310,0): 128, 78, 87, (503,311,0): 132, 79, 89, (503,312,0): 142, 82, 94, (503,313,0): 154, 88, 100, (503,314,0): 166, 94, 105, (503,315,0): 171, 96, 101, (503,316,0): 176, 96, 95, (503,317,0): 188, 105, 97, (503,318,0): 207, 121, 108, (503,319,0): 222, 135, 108, (503,320,0): 241, 154, 109, (503,321,0): 255, 176, 123, (503,322,0): 255, 195, 150, (503,323,0): 255, 203, 163, (503,324,0): 244, 195, 163, (503,325,0): 212, 175, 149, (503,326,0): 172, 143, 125, (503,327,0): 141, 119, 105, (503,328,0): 116, 98, 86, (503,329,0): 97, 80, 70, (503,330,0): 79, 60, 53, (503,331,0): 69, 50, 43, (503,332,0): 62, 43, 37, (503,333,0): 54, 35, 31, (503,334,0): 48, 30, 28, (503,335,0): 49, 31, 31, (503,336,0): 45, 24, 29, (503,337,0): 44, 23, 30, (503,338,0): 42, 23, 29, (503,339,0): 40, 21, 27, (503,340,0): 38, 18, 27, (503,341,0): 36, 16, 25, (503,342,0): 35, 15, 26, (503,343,0): 32, 15, 25, (503,344,0): 31, 14, 24, (503,345,0): 30, 14, 24, (503,346,0): 30, 14, 25, (503,347,0): 30, 14, 25, (503,348,0): 28, 14, 27, (503,349,0): 28, 14, 27, (503,350,0): 28, 14, 27, (503,351,0): 28, 14, 27, (503,352,0): 25, 13, 27, (503,353,0): 25, 13, 27, (503,354,0): 25, 13, 27, (503,355,0): 24, 12, 26, (503,356,0): 24, 12, 26, (503,357,0): 23, 11, 25, (503,358,0): 23, 11, 25, (503,359,0): 23, 11, 25, (503,360,0): 23, 11, 25, (503,361,0): 23, 11, 25, (503,362,0): 23, 11, 25, (503,363,0): 23, 11, 25, (503,364,0): 23, 11, 25, (503,365,0): 23, 11, 25, (503,366,0): 23, 11, 25, (503,367,0): 22, 11, 25, (503,368,0): 21, 13, 24, (503,369,0): 19, 13, 23, (503,370,0): 18, 12, 22, (503,371,0): 18, 13, 20, (503,372,0): 20, 13, 21, (503,373,0): 21, 14, 22, (503,374,0): 25, 15, 23, (503,375,0): 26, 16, 24, (503,376,0): 25, 15, 23, (503,377,0): 25, 16, 21, (503,378,0): 26, 15, 21, (503,379,0): 27, 16, 22, (503,380,0): 28, 16, 20, (503,381,0): 29, 17, 21, (503,382,0): 29, 17, 21, (503,383,0): 32, 17, 22, (503,384,0): 33, 16, 22, (503,385,0): 33, 16, 22, (503,386,0): 33, 16, 22, (503,387,0): 33, 16, 22, (503,388,0): 33, 16, 22, (503,389,0): 33, 16, 22, (503,390,0): 33, 16, 22, (503,391,0): 33, 16, 22, (503,392,0): 33, 16, 22, (503,393,0): 33, 16, 22, (503,394,0): 33, 16, 22, (503,395,0): 34, 17, 23, (503,396,0): 34, 17, 23, (503,397,0): 35, 18, 24, (503,398,0): 35, 18, 24, (503,399,0): 36, 19, 25, (503,400,0): 34, 15, 21, (503,401,0): 36, 15, 22, (503,402,0): 37, 16, 23, (503,403,0): 38, 17, 24, (503,404,0): 40, 19, 26, (503,405,0): 41, 20, 27, (503,406,0): 42, 21, 28, (503,407,0): 42, 21, 28, (503,408,0): 43, 22, 29, (503,409,0): 43, 22, 29, (503,410,0): 42, 21, 28, (503,411,0): 42, 21, 28, (503,412,0): 42, 21, 28, (503,413,0): 43, 22, 29, (503,414,0): 45, 24, 31, (503,415,0): 45, 26, 32, (503,416,0): 43, 24, 30, (503,417,0): 43, 24, 30, (503,418,0): 43, 24, 30, (503,419,0): 42, 25, 31, (503,420,0): 42, 25, 33, (503,421,0): 42, 25, 33, (503,422,0): 41, 26, 33, (503,423,0): 42, 27, 34, (503,424,0): 40, 27, 36, (503,425,0): 39, 26, 35, (503,426,0): 37, 25, 35, (503,427,0): 35, 23, 33, (503,428,0): 34, 22, 32, (503,429,0): 34, 24, 33, (503,430,0): 34, 24, 35, (503,431,0): 35, 25, 34, (503,432,0): 35, 23, 33, (503,433,0): 34, 23, 31, (503,434,0): 32, 21, 29, (503,435,0): 31, 20, 28, (503,436,0): 30, 19, 27, (503,437,0): 30, 19, 27, (503,438,0): 31, 18, 27, (503,439,0): 32, 19, 28, (503,440,0): 34, 18, 28, (503,441,0): 35, 19, 29, (503,442,0): 37, 20, 30, (503,443,0): 38, 21, 31, (503,444,0): 39, 22, 32, (503,445,0): 41, 24, 34, (503,446,0): 42, 25, 35, (503,447,0): 44, 24, 35, (503,448,0): 50, 28, 40, (503,449,0): 50, 26, 39, (503,450,0): 48, 24, 37, (503,451,0): 44, 22, 34, (503,452,0): 41, 19, 31, (503,453,0): 38, 16, 28, (503,454,0): 35, 15, 26, (503,455,0): 32, 15, 25, (503,456,0): 34, 17, 27, (503,457,0): 31, 15, 25, (503,458,0): 29, 13, 23, (503,459,0): 25, 12, 21, (503,460,0): 24, 11, 20, (503,461,0): 23, 12, 20, (503,462,0): 24, 13, 21, (503,463,0): 25, 14, 22, (503,464,0): 29, 16, 25, (503,465,0): 29, 16, 25, (503,466,0): 30, 14, 24, (503,467,0): 30, 14, 24, (503,468,0): 31, 13, 25, (503,469,0): 33, 15, 27, (503,470,0): 36, 16, 28, (503,471,0): 37, 17, 29, (503,472,0): 36, 18, 32, (503,473,0): 33, 17, 30, (503,474,0): 30, 13, 29, (503,475,0): 24, 12, 26, (503,476,0): 21, 9, 23, (503,477,0): 17, 9, 22, (503,478,0): 16, 8, 23, (503,479,0): 16, 8, 21, (503,480,0): 20, 4, 17, (503,481,0): 21, 3, 15, (503,482,0): 21, 3, 15, (503,483,0): 22, 4, 16, (503,484,0): 24, 4, 16, (503,485,0): 27, 3, 16, (503,486,0): 32, 2, 14, (503,487,0): 37, 0, 12, (503,488,0): 54, 6, 22, (503,489,0): 61, 7, 23, (503,490,0): 68, 10, 25, (503,491,0): 73, 12, 27, (503,492,0): 72, 11, 26, (503,493,0): 67, 9, 21, (503,494,0): 59, 6, 16, (503,495,0): 51, 5, 15, (503,496,0): 39, 6, 15, (503,497,0): 37, 10, 19, (503,498,0): 38, 11, 18, (503,499,0): 38, 8, 16, (503,500,0): 36, 5, 13, (503,501,0): 36, 3, 12, (503,502,0): 41, 5, 15, (503,503,0): 45, 7, 18, (503,504,0): 47, 7, 16, (503,505,0): 56, 14, 24, (503,506,0): 66, 23, 33, (503,507,0): 67, 24, 34, (503,508,0): 63, 17, 27, (503,509,0): 57, 11, 21, (503,510,0): 55, 9, 19, (503,511,0): 59, 9, 20, (503,512,0): 67, 8, 26, (503,513,0): 67, 8, 26, (503,514,0): 63, 11, 24, (503,515,0): 61, 11, 23, (503,516,0): 64, 7, 22, (503,517,0): 69, 8, 24, (503,518,0): 75, 13, 28, (503,519,0): 78, 16, 31, (503,520,0): 77, 19, 31, (503,521,0): 74, 16, 28, (503,522,0): 81, 17, 31, (503,523,0): 95, 24, 40, (503,524,0): 105, 27, 43, (503,525,0): 106, 25, 42, (503,526,0): 103, 25, 41, (503,527,0): 100, 28, 40, (503,528,0): 94, 31, 39, (503,529,0): 89, 28, 33, (503,530,0): 98, 33, 39, (503,531,0): 117, 47, 55, (503,532,0): 126, 55, 63, (503,533,0): 118, 45, 54, (503,534,0): 107, 34, 43, (503,535,0): 101, 30, 38, (503,536,0): 92, 25, 32, (503,537,0): 98, 33, 39, (503,538,0): 103, 38, 44, (503,539,0): 101, 36, 42, (503,540,0): 105, 35, 43, (503,541,0): 108, 35, 44, (503,542,0): 107, 30, 40, (503,543,0): 99, 21, 34, (503,544,0): 97, 25, 37, (503,545,0): 93, 21, 35, (503,546,0): 93, 15, 31, (503,547,0): 93, 12, 29, (503,548,0): 94, 13, 30, (503,549,0): 90, 16, 31, (503,550,0): 84, 21, 32, (503,551,0): 80, 23, 32, (503,552,0): 84, 31, 39, (503,553,0): 84, 31, 39, (503,554,0): 86, 24, 35, (503,555,0): 87, 21, 33, (503,556,0): 97, 25, 39, (503,557,0): 108, 34, 49, (503,558,0): 110, 36, 51, (503,559,0): 107, 30, 46, (503,560,0): 121, 38, 56, (503,561,0): 107, 30, 48, (503,562,0): 88, 25, 42, (503,563,0): 80, 27, 43, (503,564,0): 80, 29, 44, (503,565,0): 81, 27, 40, (503,566,0): 87, 20, 29, (503,567,0): 94, 14, 23, (503,568,0): 104, 18, 27, (503,569,0): 106, 20, 31, (503,570,0): 98, 20, 34, (503,571,0): 90, 17, 34, (503,572,0): 88, 19, 37, (503,573,0): 93, 22, 40, (503,574,0): 95, 21, 38, (503,575,0): 88, 17, 33, (503,576,0): 71, 12, 30, (503,577,0): 63, 16, 32, (503,578,0): 55, 17, 30, (503,579,0): 49, 19, 29, (503,580,0): 41, 20, 29, (503,581,0): 36, 19, 27, (503,582,0): 35, 18, 26, (503,583,0): 33, 18, 25, (503,584,0): 31, 18, 27, (503,585,0): 31, 20, 28, (503,586,0): 32, 22, 31, (503,587,0): 34, 24, 33, (503,588,0): 37, 25, 35, (503,589,0): 42, 26, 37, (503,590,0): 48, 25, 41, (503,591,0): 50, 26, 40, (503,592,0): 57, 30, 39, (503,593,0): 53, 28, 34, (503,594,0): 45, 26, 30, (503,595,0): 41, 26, 29, (503,596,0): 39, 27, 29, (503,597,0): 41, 26, 29, (503,598,0): 39, 22, 28, (503,599,0): 39, 20, 26, (504,0,0): 42, 67, 74, (504,1,0): 42, 67, 74, (504,2,0): 40, 65, 72, (504,3,0): 40, 65, 72, (504,4,0): 40, 65, 72, (504,5,0): 40, 65, 72, (504,6,0): 42, 67, 74, (504,7,0): 42, 67, 74, (504,8,0): 44, 69, 76, (504,9,0): 44, 69, 76, (504,10,0): 45, 70, 77, (504,11,0): 45, 70, 77, (504,12,0): 46, 71, 78, (504,13,0): 46, 71, 78, (504,14,0): 47, 72, 79, (504,15,0): 47, 72, 79, (504,16,0): 45, 72, 81, (504,17,0): 45, 72, 81, (504,18,0): 47, 71, 81, (504,19,0): 47, 71, 81, (504,20,0): 47, 71, 81, (504,21,0): 47, 71, 81, (504,22,0): 48, 70, 81, (504,23,0): 48, 70, 81, (504,24,0): 53, 73, 84, (504,25,0): 53, 73, 84, (504,26,0): 53, 73, 84, (504,27,0): 54, 74, 85, (504,28,0): 55, 73, 85, (504,29,0): 56, 74, 86, (504,30,0): 56, 74, 86, (504,31,0): 57, 75, 85, (504,32,0): 55, 74, 80, (504,33,0): 55, 76, 79, (504,34,0): 56, 75, 81, (504,35,0): 57, 76, 80, (504,36,0): 57, 76, 80, (504,37,0): 59, 77, 79, (504,38,0): 61, 76, 79, (504,39,0): 62, 76, 79, (504,40,0): 63, 77, 80, (504,41,0): 65, 76, 78, (504,42,0): 67, 77, 79, (504,43,0): 69, 77, 79, (504,44,0): 70, 78, 80, (504,45,0): 71, 79, 81, (504,46,0): 74, 79, 82, (504,47,0): 75, 79, 78, (504,48,0): 80, 79, 75, (504,49,0): 83, 78, 74, (504,50,0): 83, 78, 74, (504,51,0): 83, 78, 72, (504,52,0): 85, 78, 72, (504,53,0): 84, 77, 71, (504,54,0): 85, 76, 71, (504,55,0): 86, 75, 69, (504,56,0): 86, 73, 67, (504,57,0): 85, 72, 64, (504,58,0): 84, 69, 62, (504,59,0): 84, 67, 60, (504,60,0): 85, 66, 60, (504,61,0): 85, 66, 59, (504,62,0): 87, 68, 61, (504,63,0): 87, 70, 63, (504,64,0): 84, 69, 66, (504,65,0): 85, 69, 69, (504,66,0): 86, 70, 71, (504,67,0): 85, 71, 70, (504,68,0): 85, 69, 69, (504,69,0): 82, 68, 67, (504,70,0): 80, 64, 64, (504,71,0): 79, 63, 63, (504,72,0): 78, 62, 62, (504,73,0): 77, 61, 61, (504,74,0): 76, 60, 60, (504,75,0): 75, 59, 59, (504,76,0): 75, 59, 59, (504,77,0): 75, 59, 59, (504,78,0): 76, 61, 58, (504,79,0): 77, 62, 59, (504,80,0): 74, 60, 59, (504,81,0): 74, 60, 59, (504,82,0): 74, 60, 59, (504,83,0): 74, 60, 59, (504,84,0): 74, 60, 59, (504,85,0): 74, 60, 59, (504,86,0): 74, 60, 59, (504,87,0): 74, 60, 59, (504,88,0): 73, 59, 58, (504,89,0): 73, 59, 58, (504,90,0): 73, 59, 58, (504,91,0): 73, 59, 58, (504,92,0): 74, 60, 59, (504,93,0): 74, 60, 59, (504,94,0): 74, 60, 59, (504,95,0): 74, 60, 59, (504,96,0): 73, 61, 61, (504,97,0): 73, 61, 61, (504,98,0): 73, 61, 61, (504,99,0): 73, 61, 61, (504,100,0): 73, 61, 61, (504,101,0): 73, 61, 61, (504,102,0): 72, 62, 61, (504,103,0): 72, 62, 61, (504,104,0): 70, 60, 59, (504,105,0): 68, 60, 58, (504,106,0): 67, 59, 57, (504,107,0): 64, 59, 56, (504,108,0): 62, 57, 54, (504,109,0): 61, 56, 53, (504,110,0): 60, 55, 52, (504,111,0): 59, 54, 51, (504,112,0): 59, 54, 50, (504,113,0): 59, 54, 50, (504,114,0): 59, 54, 50, (504,115,0): 59, 54, 50, (504,116,0): 59, 54, 50, (504,117,0): 59, 54, 50, (504,118,0): 59, 54, 50, (504,119,0): 59, 54, 50, (504,120,0): 60, 55, 51, (504,121,0): 59, 54, 50, (504,122,0): 59, 54, 50, (504,123,0): 58, 53, 49, (504,124,0): 57, 52, 48, (504,125,0): 56, 51, 47, (504,126,0): 55, 50, 46, (504,127,0): 54, 49, 45, (504,128,0): 54, 50, 47, (504,129,0): 50, 49, 47, (504,130,0): 48, 47, 45, (504,131,0): 49, 48, 46, (504,132,0): 53, 52, 50, (504,133,0): 54, 53, 51, (504,134,0): 52, 51, 49, (504,135,0): 49, 48, 46, (504,136,0): 48, 47, 45, (504,137,0): 47, 46, 44, (504,138,0): 46, 45, 43, (504,139,0): 44, 43, 41, (504,140,0): 43, 42, 40, (504,141,0): 41, 40, 38, (504,142,0): 40, 39, 37, (504,143,0): 39, 38, 36, (504,144,0): 41, 37, 34, (504,145,0): 41, 37, 34, (504,146,0): 41, 37, 34, (504,147,0): 41, 37, 34, (504,148,0): 41, 37, 34, (504,149,0): 41, 37, 34, (504,150,0): 41, 37, 34, (504,151,0): 41, 37, 34, (504,152,0): 44, 40, 37, (504,153,0): 43, 39, 36, (504,154,0): 41, 37, 34, (504,155,0): 39, 35, 32, (504,156,0): 39, 35, 32, (504,157,0): 39, 35, 32, (504,158,0): 41, 37, 34, (504,159,0): 42, 38, 35, (504,160,0): 41, 36, 33, (504,161,0): 41, 36, 33, (504,162,0): 41, 36, 33, (504,163,0): 41, 36, 33, (504,164,0): 41, 36, 33, (504,165,0): 41, 36, 33, (504,166,0): 41, 36, 33, (504,167,0): 41, 36, 33, (504,168,0): 41, 36, 33, (504,169,0): 41, 36, 33, (504,170,0): 41, 36, 33, (504,171,0): 41, 36, 33, (504,172,0): 41, 36, 33, (504,173,0): 41, 36, 33, (504,174,0): 41, 36, 33, (504,175,0): 41, 36, 33, (504,176,0): 40, 36, 37, (504,177,0): 40, 36, 37, (504,178,0): 40, 36, 37, (504,179,0): 40, 36, 37, (504,180,0): 40, 36, 37, (504,181,0): 40, 36, 37, (504,182,0): 40, 36, 37, (504,183,0): 40, 36, 37, (504,184,0): 42, 38, 39, (504,185,0): 41, 37, 38, (504,186,0): 41, 37, 38, (504,187,0): 41, 37, 38, (504,188,0): 41, 37, 38, (504,189,0): 41, 37, 38, (504,190,0): 40, 36, 37, (504,191,0): 40, 35, 39, (504,192,0): 43, 38, 44, (504,193,0): 42, 37, 44, (504,194,0): 40, 35, 42, (504,195,0): 39, 34, 41, (504,196,0): 39, 34, 41, (504,197,0): 40, 35, 42, (504,198,0): 42, 37, 44, (504,199,0): 43, 38, 45, (504,200,0): 41, 36, 43, (504,201,0): 41, 36, 43, (504,202,0): 41, 36, 43, (504,203,0): 41, 36, 43, (504,204,0): 41, 36, 43, (504,205,0): 41, 36, 43, (504,206,0): 41, 36, 43, (504,207,0): 41, 36, 43, (504,208,0): 39, 33, 45, (504,209,0): 40, 34, 46, (504,210,0): 40, 34, 46, (504,211,0): 41, 35, 47, (504,212,0): 41, 35, 47, (504,213,0): 42, 36, 48, (504,214,0): 42, 36, 48, (504,215,0): 42, 36, 48, (504,216,0): 42, 36, 48, (504,217,0): 42, 36, 48, (504,218,0): 42, 36, 48, (504,219,0): 42, 36, 48, (504,220,0): 42, 36, 48, (504,221,0): 42, 36, 48, (504,222,0): 42, 36, 48, (504,223,0): 42, 36, 48, (504,224,0): 42, 39, 50, (504,225,0): 42, 39, 50, (504,226,0): 42, 39, 50, (504,227,0): 42, 39, 50, (504,228,0): 44, 38, 50, (504,229,0): 44, 38, 50, (504,230,0): 44, 38, 50, (504,231,0): 44, 38, 50, (504,232,0): 46, 38, 51, (504,233,0): 47, 39, 52, (504,234,0): 49, 38, 52, (504,235,0): 50, 39, 53, (504,236,0): 50, 39, 53, (504,237,0): 51, 40, 54, (504,238,0): 52, 40, 54, (504,239,0): 52, 40, 54, (504,240,0): 53, 40, 57, (504,241,0): 55, 41, 56, (504,242,0): 57, 43, 58, (504,243,0): 61, 44, 60, (504,244,0): 64, 47, 63, (504,245,0): 67, 49, 63, (504,246,0): 71, 50, 65, (504,247,0): 73, 51, 64, (504,248,0): 75, 51, 65, (504,249,0): 76, 52, 66, (504,250,0): 80, 53, 68, (504,251,0): 82, 56, 69, (504,252,0): 85, 57, 71, (504,253,0): 87, 56, 71, (504,254,0): 87, 56, 71, (504,255,0): 85, 57, 71, (504,256,0): 86, 60, 73, (504,257,0): 86, 60, 73, (504,258,0): 86, 60, 73, (504,259,0): 83, 59, 72, (504,260,0): 83, 59, 72, (504,261,0): 82, 58, 71, (504,262,0): 82, 58, 71, (504,263,0): 80, 58, 70, (504,264,0): 79, 57, 69, (504,265,0): 78, 58, 69, (504,266,0): 78, 58, 69, (504,267,0): 78, 58, 69, (504,268,0): 78, 58, 69, (504,269,0): 76, 59, 69, (504,270,0): 76, 59, 69, (504,271,0): 76, 59, 69, (504,272,0): 77, 59, 71, (504,273,0): 78, 60, 72, (504,274,0): 78, 60, 72, (504,275,0): 79, 61, 73, (504,276,0): 79, 61, 73, (504,277,0): 80, 62, 74, (504,278,0): 80, 62, 74, (504,279,0): 80, 62, 74, (504,280,0): 81, 63, 75, (504,281,0): 81, 63, 75, (504,282,0): 81, 63, 75, (504,283,0): 82, 64, 76, (504,284,0): 82, 64, 76, (504,285,0): 83, 65, 77, (504,286,0): 83, 65, 77, (504,287,0): 83, 65, 77, (504,288,0): 85, 64, 79, (504,289,0): 87, 64, 80, (504,290,0): 87, 65, 78, (504,291,0): 87, 67, 79, (504,292,0): 87, 67, 79, (504,293,0): 88, 68, 80, (504,294,0): 88, 68, 79, (504,295,0): 88, 68, 79, (504,296,0): 89, 68, 77, (504,297,0): 91, 68, 78, (504,298,0): 94, 68, 79, (504,299,0): 97, 69, 81, (504,300,0): 102, 70, 81, (504,301,0): 105, 72, 83, (504,302,0): 108, 72, 84, (504,303,0): 109, 73, 83, (504,304,0): 108, 71, 79, (504,305,0): 110, 73, 80, (504,306,0): 114, 75, 80, (504,307,0): 114, 73, 79, (504,308,0): 114, 71, 78, (504,309,0): 118, 73, 80, (504,310,0): 124, 74, 83, (504,311,0): 130, 77, 87, (504,312,0): 141, 80, 95, (504,313,0): 151, 85, 99, (504,314,0): 163, 91, 102, (504,315,0): 173, 96, 102, (504,316,0): 181, 99, 101, (504,317,0): 191, 106, 101, (504,318,0): 205, 117, 107, (504,319,0): 215, 127, 103, (504,320,0): 239, 153, 106, (504,321,0): 252, 171, 116, (504,322,0): 255, 190, 142, (504,323,0): 255, 200, 158, (504,324,0): 247, 198, 166, (504,325,0): 223, 186, 160, (504,326,0): 189, 161, 140, (504,327,0): 163, 140, 124, (504,328,0): 136, 117, 103, (504,329,0): 118, 100, 88, (504,330,0): 95, 77, 67, (504,331,0): 77, 58, 51, (504,332,0): 68, 49, 43, (504,333,0): 63, 44, 40, (504,334,0): 57, 37, 36, (504,335,0): 53, 33, 34, (504,336,0): 49, 28, 33, (504,337,0): 48, 27, 32, (504,338,0): 46, 25, 32, (504,339,0): 43, 22, 29, (504,340,0): 41, 20, 27, (504,341,0): 39, 20, 26, (504,342,0): 39, 19, 28, (504,343,0): 37, 20, 28, (504,344,0): 34, 17, 27, (504,345,0): 33, 16, 26, (504,346,0): 32, 16, 26, (504,347,0): 31, 15, 25, (504,348,0): 30, 14, 25, (504,349,0): 29, 13, 24, (504,350,0): 28, 12, 23, (504,351,0): 25, 11, 24, (504,352,0): 26, 14, 28, (504,353,0): 26, 14, 28, (504,354,0): 25, 13, 27, (504,355,0): 24, 12, 26, (504,356,0): 24, 12, 26, (504,357,0): 23, 11, 25, (504,358,0): 22, 10, 24, (504,359,0): 22, 10, 24, (504,360,0): 21, 9, 23, (504,361,0): 21, 9, 23, (504,362,0): 21, 9, 23, (504,363,0): 21, 9, 23, (504,364,0): 21, 9, 23, (504,365,0): 21, 9, 23, (504,366,0): 21, 9, 23, (504,367,0): 20, 9, 23, (504,368,0): 18, 10, 21, (504,369,0): 18, 11, 19, (504,370,0): 19, 12, 20, (504,371,0): 19, 12, 20, (504,372,0): 22, 12, 21, (504,373,0): 22, 12, 20, (504,374,0): 23, 13, 21, (504,375,0): 23, 13, 21, (504,376,0): 26, 15, 21, (504,377,0): 26, 15, 21, (504,378,0): 27, 14, 21, (504,379,0): 27, 15, 19, (504,380,0): 27, 15, 19, (504,381,0): 27, 15, 19, (504,382,0): 29, 14, 17, (504,383,0): 29, 14, 17, (504,384,0): 31, 14, 20, (504,385,0): 31, 14, 20, (504,386,0): 31, 14, 20, (504,387,0): 31, 14, 20, (504,388,0): 31, 14, 20, (504,389,0): 31, 14, 20, (504,390,0): 31, 14, 20, (504,391,0): 31, 14, 20, (504,392,0): 34, 17, 23, (504,393,0): 34, 17, 23, (504,394,0): 34, 17, 23, (504,395,0): 34, 17, 23, (504,396,0): 34, 17, 23, (504,397,0): 34, 17, 23, (504,398,0): 34, 17, 23, (504,399,0): 34, 17, 23, (504,400,0): 37, 18, 24, (504,401,0): 38, 19, 25, (504,402,0): 38, 19, 25, (504,403,0): 39, 20, 26, (504,404,0): 39, 20, 26, (504,405,0): 40, 21, 27, (504,406,0): 40, 21, 27, (504,407,0): 40, 21, 27, (504,408,0): 39, 20, 26, (504,409,0): 39, 20, 26, (504,410,0): 39, 20, 26, (504,411,0): 39, 20, 26, (504,412,0): 39, 20, 26, (504,413,0): 39, 20, 26, (504,414,0): 39, 20, 26, (504,415,0): 39, 20, 26, (504,416,0): 41, 22, 28, (504,417,0): 39, 22, 28, (504,418,0): 39, 22, 28, (504,419,0): 39, 22, 28, (504,420,0): 38, 21, 29, (504,421,0): 37, 22, 29, (504,422,0): 37, 22, 29, (504,423,0): 37, 22, 29, (504,424,0): 38, 25, 34, (504,425,0): 38, 25, 34, (504,426,0): 38, 25, 35, (504,427,0): 38, 26, 36, (504,428,0): 38, 26, 36, (504,429,0): 38, 26, 36, (504,430,0): 39, 27, 39, (504,431,0): 39, 27, 37, (504,432,0): 38, 26, 36, (504,433,0): 37, 26, 34, (504,434,0): 34, 23, 31, (504,435,0): 32, 21, 29, (504,436,0): 31, 20, 28, (504,437,0): 31, 20, 28, (504,438,0): 32, 19, 28, (504,439,0): 32, 19, 28, (504,440,0): 33, 17, 27, (504,441,0): 33, 17, 27, (504,442,0): 33, 16, 26, (504,443,0): 34, 17, 27, (504,444,0): 36, 19, 29, (504,445,0): 39, 22, 32, (504,446,0): 42, 25, 35, (504,447,0): 46, 26, 37, (504,448,0): 48, 25, 35, (504,449,0): 49, 26, 36, (504,450,0): 48, 25, 35, (504,451,0): 47, 24, 34, (504,452,0): 44, 23, 32, (504,453,0): 40, 19, 28, (504,454,0): 36, 16, 25, (504,455,0): 32, 15, 23, (504,456,0): 35, 18, 26, (504,457,0): 32, 17, 24, (504,458,0): 29, 14, 21, (504,459,0): 24, 11, 18, (504,460,0): 24, 11, 18, (504,461,0): 25, 12, 19, (504,462,0): 26, 15, 21, (504,463,0): 28, 17, 23, (504,464,0): 29, 16, 25, (504,465,0): 27, 14, 23, (504,466,0): 28, 12, 22, (504,467,0): 29, 13, 23, (504,468,0): 33, 15, 27, (504,469,0): 34, 16, 28, (504,470,0): 34, 14, 26, (504,471,0): 32, 12, 24, (504,472,0): 35, 17, 31, (504,473,0): 32, 16, 29, (504,474,0): 29, 12, 28, (504,475,0): 23, 11, 25, (504,476,0): 21, 9, 23, (504,477,0): 15, 7, 20, (504,478,0): 14, 6, 21, (504,479,0): 13, 5, 18, (504,480,0): 19, 7, 19, (504,481,0): 18, 4, 17, (504,482,0): 17, 1, 14, (504,483,0): 17, 0, 11, (504,484,0): 21, 0, 12, (504,485,0): 28, 2, 15, (504,486,0): 38, 4, 18, (504,487,0): 48, 6, 20, (504,488,0): 61, 10, 27, (504,489,0): 66, 9, 26, (504,490,0): 68, 10, 25, (504,491,0): 66, 8, 22, (504,492,0): 60, 6, 19, (504,493,0): 56, 6, 17, (504,494,0): 54, 8, 18, (504,495,0): 52, 12, 21, (504,496,0): 33, 3, 11, (504,497,0): 32, 6, 15, (504,498,0): 35, 8, 15, (504,499,0): 36, 6, 14, (504,500,0): 34, 3, 11, (504,501,0): 33, 0, 9, (504,502,0): 37, 1, 11, (504,503,0): 40, 4, 14, (504,504,0): 43, 6, 14, (504,505,0): 46, 6, 15, (504,506,0): 48, 8, 17, (504,507,0): 50, 10, 19, (504,508,0): 53, 13, 21, (504,509,0): 55, 15, 23, (504,510,0): 57, 17, 25, (504,511,0): 60, 17, 26, (504,512,0): 58, 5, 21, (504,513,0): 61, 8, 24, (504,514,0): 60, 17, 27, (504,515,0): 63, 20, 30, (504,516,0): 67, 19, 31, (504,517,0): 66, 14, 27, (504,518,0): 63, 9, 22, (504,519,0): 60, 6, 19, (504,520,0): 71, 21, 30, (504,521,0): 70, 19, 28, (504,522,0): 75, 17, 29, (504,523,0): 85, 21, 35, (504,524,0): 97, 25, 39, (504,525,0): 98, 24, 39, (504,526,0): 89, 18, 32, (504,527,0): 81, 13, 24, (504,528,0): 101, 30, 38, (504,529,0): 102, 29, 36, (504,530,0): 107, 32, 39, (504,531,0): 115, 35, 44, (504,532,0): 121, 40, 49, (504,533,0): 120, 40, 49, (504,534,0): 116, 36, 45, (504,535,0): 108, 33, 40, (504,536,0): 105, 36, 41, (504,537,0): 100, 35, 39, (504,538,0): 103, 41, 44, (504,539,0): 107, 47, 49, (504,540,0): 105, 40, 44, (504,541,0): 95, 29, 33, (504,542,0): 97, 26, 32, (504,543,0): 105, 32, 41, (504,544,0): 99, 25, 40, (504,545,0): 94, 17, 35, (504,546,0): 95, 12, 32, (504,547,0): 101, 16, 37, (504,548,0): 104, 19, 40, (504,549,0): 97, 18, 37, (504,550,0): 88, 20, 35, (504,551,0): 84, 24, 36, (504,552,0): 85, 29, 40, (504,553,0): 80, 29, 38, (504,554,0): 82, 26, 37, (504,555,0): 81, 23, 35, (504,556,0): 83, 23, 35, (504,557,0): 84, 24, 36, (504,558,0): 83, 25, 37, (504,559,0): 88, 25, 36, (504,560,0): 101, 27, 40, (504,561,0): 102, 28, 43, (504,562,0): 89, 27, 42, (504,563,0): 77, 23, 39, (504,564,0): 74, 23, 38, (504,565,0): 75, 27, 41, (504,566,0): 74, 24, 36, (504,567,0): 68, 18, 29, (504,568,0): 67, 20, 30, (504,569,0): 69, 23, 34, (504,570,0): 69, 23, 36, (504,571,0): 77, 23, 37, (504,572,0): 102, 30, 44, (504,573,0): 131, 39, 54, (504,574,0): 150, 33, 49, (504,575,0): 142, 26, 45, (504,576,0): 110, 18, 43, (504,577,0): 75, 5, 29, (504,578,0): 53, 2, 19, (504,579,0): 50, 17, 28, (504,580,0): 48, 27, 36, (504,581,0): 37, 24, 31, (504,582,0): 34, 21, 28, (504,583,0): 38, 25, 32, (504,584,0): 42, 26, 36, (504,585,0): 41, 25, 35, (504,586,0): 38, 25, 35, (504,587,0): 36, 24, 34, (504,588,0): 37, 24, 34, (504,589,0): 40, 24, 35, (504,590,0): 45, 22, 38, (504,591,0): 47, 23, 37, (504,592,0): 47, 19, 31, (504,593,0): 52, 29, 37, (504,594,0): 49, 32, 38, (504,595,0): 40, 28, 32, (504,596,0): 35, 23, 27, (504,597,0): 37, 25, 29, (504,598,0): 42, 23, 27, (504,599,0): 38, 17, 22, (505,0,0): 42, 67, 74, (505,1,0): 42, 67, 74, (505,2,0): 40, 65, 72, (505,3,0): 40, 65, 72, (505,4,0): 40, 65, 72, (505,5,0): 40, 65, 72, (505,6,0): 42, 67, 74, (505,7,0): 42, 67, 74, (505,8,0): 44, 69, 76, (505,9,0): 44, 69, 76, (505,10,0): 44, 69, 76, (505,11,0): 45, 70, 77, (505,12,0): 45, 70, 77, (505,13,0): 46, 71, 78, (505,14,0): 46, 71, 78, (505,15,0): 47, 72, 79, (505,16,0): 45, 72, 81, (505,17,0): 45, 72, 81, (505,18,0): 47, 71, 81, (505,19,0): 47, 71, 81, (505,20,0): 47, 71, 81, (505,21,0): 47, 71, 81, (505,22,0): 48, 70, 81, (505,23,0): 48, 70, 81, (505,24,0): 52, 72, 83, (505,25,0): 52, 72, 83, (505,26,0): 52, 72, 83, (505,27,0): 53, 73, 84, (505,28,0): 54, 72, 84, (505,29,0): 55, 73, 85, (505,30,0): 55, 73, 85, (505,31,0): 55, 75, 84, (505,32,0): 54, 74, 81, (505,33,0): 53, 77, 81, (505,34,0): 53, 77, 81, (505,35,0): 55, 76, 81, (505,36,0): 56, 77, 82, (505,37,0): 57, 76, 80, (505,38,0): 59, 77, 81, (505,39,0): 61, 76, 79, (505,40,0): 61, 76, 79, (505,41,0): 63, 77, 80, (505,42,0): 66, 77, 81, (505,43,0): 67, 78, 80, (505,44,0): 69, 79, 81, (505,45,0): 70, 80, 81, (505,46,0): 71, 81, 82, (505,47,0): 74, 80, 80, (505,48,0): 80, 80, 78, (505,49,0): 81, 80, 76, (505,50,0): 81, 80, 76, (505,51,0): 81, 80, 75, (505,52,0): 82, 79, 74, (505,53,0): 82, 79, 74, (505,54,0): 85, 77, 74, (505,55,0): 85, 78, 72, (505,56,0): 85, 76, 71, (505,57,0): 83, 74, 67, (505,58,0): 85, 72, 66, (505,59,0): 83, 70, 64, (505,60,0): 83, 68, 63, (505,61,0): 84, 69, 62, (505,62,0): 85, 70, 63, (505,63,0): 86, 71, 66, (505,64,0): 84, 70, 69, (505,65,0): 82, 70, 70, (505,66,0): 82, 70, 70, (505,67,0): 82, 70, 70, (505,68,0): 81, 69, 69, (505,69,0): 81, 67, 66, (505,70,0): 79, 65, 64, (505,71,0): 79, 65, 64, (505,72,0): 77, 63, 62, (505,73,0): 77, 61, 61, (505,74,0): 76, 60, 60, (505,75,0): 75, 59, 59, (505,76,0): 74, 58, 58, (505,77,0): 75, 59, 59, (505,78,0): 75, 60, 57, (505,79,0): 76, 61, 58, (505,80,0): 74, 60, 59, (505,81,0): 74, 60, 59, (505,82,0): 74, 60, 59, (505,83,0): 74, 60, 59, (505,84,0): 74, 60, 59, (505,85,0): 74, 60, 59, (505,86,0): 74, 60, 59, (505,87,0): 74, 60, 59, (505,88,0): 73, 59, 58, (505,89,0): 73, 59, 58, (505,90,0): 74, 60, 59, (505,91,0): 74, 60, 59, (505,92,0): 74, 60, 59, (505,93,0): 74, 60, 59, (505,94,0): 74, 60, 59, (505,95,0): 74, 60, 59, (505,96,0): 73, 61, 61, (505,97,0): 73, 61, 61, (505,98,0): 73, 61, 61, (505,99,0): 73, 61, 61, (505,100,0): 73, 61, 61, (505,101,0): 72, 62, 61, (505,102,0): 72, 62, 61, (505,103,0): 71, 63, 61, (505,104,0): 68, 60, 58, (505,105,0): 68, 60, 58, (505,106,0): 65, 60, 57, (505,107,0): 64, 59, 56, (505,108,0): 62, 57, 54, (505,109,0): 61, 56, 53, (505,110,0): 60, 55, 52, (505,111,0): 60, 55, 52, (505,112,0): 59, 54, 50, (505,113,0): 59, 54, 50, (505,114,0): 59, 54, 50, (505,115,0): 59, 54, 50, (505,116,0): 59, 54, 50, (505,117,0): 59, 54, 50, (505,118,0): 59, 54, 50, (505,119,0): 59, 54, 50, (505,120,0): 60, 55, 51, (505,121,0): 60, 55, 51, (505,122,0): 59, 54, 50, (505,123,0): 58, 53, 49, (505,124,0): 57, 52, 48, (505,125,0): 56, 51, 47, (505,126,0): 55, 50, 46, (505,127,0): 54, 50, 47, (505,128,0): 52, 51, 49, (505,129,0): 50, 49, 47, (505,130,0): 48, 47, 45, (505,131,0): 49, 48, 46, (505,132,0): 52, 51, 49, (505,133,0): 53, 52, 50, (505,134,0): 51, 50, 48, (505,135,0): 49, 48, 46, (505,136,0): 48, 47, 45, (505,137,0): 47, 46, 44, (505,138,0): 46, 45, 43, (505,139,0): 45, 44, 42, (505,140,0): 43, 42, 40, (505,141,0): 41, 40, 38, (505,142,0): 40, 39, 37, (505,143,0): 40, 39, 37, (505,144,0): 41, 37, 34, (505,145,0): 41, 37, 34, (505,146,0): 41, 37, 34, (505,147,0): 41, 37, 34, (505,148,0): 41, 37, 34, (505,149,0): 41, 37, 34, (505,150,0): 41, 37, 34, (505,151,0): 41, 37, 34, (505,152,0): 44, 40, 37, (505,153,0): 43, 39, 36, (505,154,0): 41, 37, 34, (505,155,0): 40, 36, 33, (505,156,0): 39, 35, 32, (505,157,0): 40, 36, 33, (505,158,0): 41, 37, 34, (505,159,0): 41, 37, 34, (505,160,0): 41, 36, 33, (505,161,0): 41, 36, 33, (505,162,0): 41, 36, 33, (505,163,0): 41, 36, 33, (505,164,0): 41, 36, 33, (505,165,0): 41, 36, 33, (505,166,0): 41, 36, 33, (505,167,0): 41, 36, 33, (505,168,0): 41, 36, 33, (505,169,0): 41, 36, 33, (505,170,0): 41, 36, 33, (505,171,0): 41, 36, 33, (505,172,0): 41, 36, 33, (505,173,0): 41, 36, 33, (505,174,0): 41, 36, 33, (505,175,0): 41, 36, 33, (505,176,0): 40, 36, 37, (505,177,0): 40, 36, 37, (505,178,0): 40, 36, 37, (505,179,0): 40, 36, 37, (505,180,0): 40, 36, 37, (505,181,0): 40, 36, 37, (505,182,0): 40, 36, 37, (505,183,0): 40, 36, 37, (505,184,0): 40, 36, 37, (505,185,0): 40, 36, 37, (505,186,0): 40, 36, 37, (505,187,0): 41, 37, 38, (505,188,0): 41, 37, 38, (505,189,0): 41, 37, 38, (505,190,0): 41, 37, 38, (505,191,0): 41, 36, 40, (505,192,0): 42, 37, 43, (505,193,0): 41, 36, 43, (505,194,0): 40, 35, 42, (505,195,0): 39, 34, 41, (505,196,0): 39, 34, 41, (505,197,0): 40, 35, 42, (505,198,0): 41, 36, 43, (505,199,0): 42, 37, 44, (505,200,0): 41, 36, 43, (505,201,0): 41, 36, 43, (505,202,0): 41, 36, 43, (505,203,0): 41, 36, 43, (505,204,0): 41, 36, 43, (505,205,0): 41, 36, 43, (505,206,0): 41, 36, 43, (505,207,0): 41, 36, 43, (505,208,0): 39, 33, 45, (505,209,0): 40, 34, 46, (505,210,0): 40, 34, 46, (505,211,0): 40, 34, 46, (505,212,0): 41, 35, 47, (505,213,0): 41, 35, 47, (505,214,0): 42, 36, 48, (505,215,0): 42, 36, 48, (505,216,0): 42, 36, 48, (505,217,0): 42, 36, 48, (505,218,0): 42, 36, 48, (505,219,0): 42, 36, 48, (505,220,0): 42, 36, 48, (505,221,0): 42, 36, 48, (505,222,0): 42, 36, 48, (505,223,0): 42, 36, 48, (505,224,0): 41, 38, 49, (505,225,0): 41, 38, 49, (505,226,0): 41, 38, 49, (505,227,0): 41, 38, 49, (505,228,0): 43, 37, 49, (505,229,0): 43, 37, 49, (505,230,0): 43, 37, 49, (505,231,0): 43, 37, 49, (505,232,0): 46, 38, 51, (505,233,0): 46, 38, 51, (505,234,0): 49, 38, 52, (505,235,0): 49, 38, 52, (505,236,0): 50, 39, 53, (505,237,0): 50, 39, 53, (505,238,0): 52, 40, 54, (505,239,0): 52, 40, 54, (505,240,0): 52, 41, 57, (505,241,0): 53, 42, 58, (505,242,0): 56, 44, 58, (505,243,0): 59, 45, 60, (505,244,0): 61, 47, 62, (505,245,0): 65, 48, 64, (505,246,0): 68, 50, 64, (505,247,0): 71, 50, 65, (505,248,0): 74, 51, 67, (505,249,0): 76, 52, 66, (505,250,0): 78, 54, 68, (505,251,0): 83, 56, 71, (505,252,0): 85, 57, 71, (505,253,0): 88, 57, 72, (505,254,0): 88, 57, 72, (505,255,0): 87, 56, 71, (505,256,0): 87, 59, 73, (505,257,0): 86, 60, 73, (505,258,0): 85, 59, 72, (505,259,0): 85, 59, 72, (505,260,0): 82, 58, 71, (505,261,0): 82, 58, 71, (505,262,0): 82, 58, 71, (505,263,0): 81, 57, 70, (505,264,0): 79, 57, 69, (505,265,0): 79, 57, 69, (505,266,0): 78, 58, 69, (505,267,0): 78, 58, 69, (505,268,0): 78, 58, 69, (505,269,0): 78, 58, 69, (505,270,0): 76, 59, 69, (505,271,0): 76, 59, 69, (505,272,0): 77, 59, 71, (505,273,0): 77, 59, 71, (505,274,0): 78, 60, 72, (505,275,0): 78, 60, 72, (505,276,0): 79, 61, 73, (505,277,0): 79, 61, 73, (505,278,0): 80, 62, 74, (505,279,0): 80, 62, 74, (505,280,0): 81, 63, 75, (505,281,0): 81, 63, 75, (505,282,0): 82, 64, 76, (505,283,0): 82, 64, 76, (505,284,0): 83, 65, 77, (505,285,0): 83, 65, 77, (505,286,0): 83, 65, 77, (505,287,0): 86, 66, 78, (505,288,0): 86, 63, 79, (505,289,0): 87, 64, 80, (505,290,0): 87, 65, 78, (505,291,0): 87, 65, 78, (505,292,0): 87, 67, 79, (505,293,0): 87, 67, 79, (505,294,0): 88, 68, 79, (505,295,0): 88, 68, 79, (505,296,0): 89, 68, 77, (505,297,0): 90, 69, 78, (505,298,0): 94, 68, 79, (505,299,0): 97, 69, 81, (505,300,0): 101, 71, 81, (505,301,0): 103, 71, 82, (505,302,0): 106, 73, 84, (505,303,0): 108, 72, 84, (505,304,0): 107, 71, 81, (505,305,0): 109, 74, 81, (505,306,0): 111, 74, 81, (505,307,0): 113, 74, 79, (505,308,0): 113, 72, 78, (505,309,0): 115, 72, 79, (505,310,0): 124, 74, 83, (505,311,0): 130, 77, 87, (505,312,0): 139, 81, 95, (505,313,0): 149, 85, 99, (505,314,0): 163, 91, 102, (505,315,0): 172, 95, 101, (505,316,0): 180, 98, 100, (505,317,0): 191, 106, 101, (505,318,0): 206, 118, 108, (505,319,0): 216, 128, 104, (505,320,0): 236, 149, 104, (505,321,0): 251, 170, 115, (505,322,0): 255, 191, 142, (505,323,0): 255, 200, 158, (505,324,0): 246, 200, 167, (505,325,0): 223, 187, 161, (505,326,0): 193, 165, 144, (505,327,0): 168, 145, 129, (505,328,0): 146, 127, 113, (505,329,0): 128, 110, 98, (505,330,0): 104, 86, 76, (505,331,0): 84, 65, 58, (505,332,0): 72, 53, 47, (505,333,0): 65, 46, 42, (505,334,0): 59, 39, 38, (505,335,0): 54, 34, 35, (505,336,0): 51, 31, 33, (505,337,0): 49, 28, 33, (505,338,0): 47, 26, 33, (505,339,0): 44, 23, 30, (505,340,0): 42, 21, 28, (505,341,0): 41, 20, 27, (505,342,0): 40, 20, 29, (505,343,0): 40, 20, 29, (505,344,0): 36, 16, 27, (505,345,0): 34, 17, 27, (505,346,0): 33, 16, 26, (505,347,0): 31, 15, 25, (505,348,0): 30, 14, 25, (505,349,0): 29, 13, 24, (505,350,0): 28, 12, 23, (505,351,0): 28, 12, 23, (505,352,0): 26, 12, 25, (505,353,0): 25, 13, 27, (505,354,0): 24, 12, 26, (505,355,0): 24, 12, 26, (505,356,0): 24, 12, 26, (505,357,0): 24, 12, 26, (505,358,0): 23, 11, 25, (505,359,0): 23, 11, 25, (505,360,0): 22, 10, 24, (505,361,0): 22, 10, 24, (505,362,0): 22, 10, 24, (505,363,0): 22, 10, 24, (505,364,0): 22, 10, 24, (505,365,0): 22, 10, 24, (505,366,0): 22, 10, 24, (505,367,0): 22, 10, 22, (505,368,0): 20, 10, 19, (505,369,0): 19, 12, 20, (505,370,0): 21, 11, 20, (505,371,0): 22, 12, 21, (505,372,0): 22, 12, 20, (505,373,0): 23, 13, 21, (505,374,0): 24, 13, 21, (505,375,0): 24, 13, 19, (505,376,0): 26, 15, 21, (505,377,0): 27, 15, 19, (505,378,0): 27, 15, 19, (505,379,0): 27, 15, 19, (505,380,0): 29, 14, 19, (505,381,0): 29, 14, 19, (505,382,0): 29, 14, 17, (505,383,0): 30, 14, 17, (505,384,0): 31, 14, 20, (505,385,0): 31, 14, 20, (505,386,0): 31, 14, 20, (505,387,0): 31, 14, 20, (505,388,0): 31, 14, 20, (505,389,0): 31, 14, 20, (505,390,0): 31, 14, 20, (505,391,0): 31, 14, 20, (505,392,0): 34, 17, 23, (505,393,0): 34, 17, 23, (505,394,0): 34, 17, 23, (505,395,0): 34, 17, 23, (505,396,0): 34, 17, 23, (505,397,0): 34, 17, 23, (505,398,0): 34, 17, 23, (505,399,0): 34, 17, 23, (505,400,0): 37, 18, 24, (505,401,0): 37, 18, 24, (505,402,0): 38, 19, 25, (505,403,0): 38, 19, 25, (505,404,0): 39, 20, 26, (505,405,0): 39, 20, 26, (505,406,0): 40, 21, 27, (505,407,0): 40, 21, 27, (505,408,0): 39, 20, 26, (505,409,0): 39, 20, 26, (505,410,0): 39, 20, 26, (505,411,0): 39, 20, 26, (505,412,0): 39, 20, 26, (505,413,0): 39, 20, 26, (505,414,0): 39, 20, 26, (505,415,0): 39, 20, 26, (505,416,0): 39, 22, 28, (505,417,0): 39, 22, 28, (505,418,0): 39, 22, 28, (505,419,0): 39, 22, 28, (505,420,0): 38, 23, 30, (505,421,0): 38, 23, 30, (505,422,0): 37, 22, 29, (505,423,0): 37, 22, 29, (505,424,0): 38, 25, 34, (505,425,0): 38, 25, 34, (505,426,0): 39, 26, 36, (505,427,0): 40, 27, 37, (505,428,0): 40, 27, 37, (505,429,0): 40, 28, 38, (505,430,0): 42, 28, 41, (505,431,0): 41, 29, 39, (505,432,0): 38, 26, 36, (505,433,0): 37, 26, 34, (505,434,0): 35, 24, 32, (505,435,0): 33, 22, 30, (505,436,0): 31, 20, 28, (505,437,0): 31, 20, 28, (505,438,0): 32, 19, 28, (505,439,0): 32, 19, 28, (505,440,0): 33, 17, 27, (505,441,0): 33, 17, 27, (505,442,0): 33, 16, 26, (505,443,0): 34, 17, 27, (505,444,0): 36, 19, 29, (505,445,0): 39, 22, 32, (505,446,0): 41, 24, 34, (505,447,0): 45, 25, 36, (505,448,0): 47, 24, 34, (505,449,0): 47, 24, 34, (505,450,0): 48, 25, 35, (505,451,0): 47, 24, 34, (505,452,0): 44, 23, 32, (505,453,0): 41, 20, 29, (505,454,0): 38, 18, 27, (505,455,0): 36, 16, 25, (505,456,0): 37, 20, 28, (505,457,0): 35, 18, 26, (505,458,0): 32, 15, 23, (505,459,0): 29, 14, 21, (505,460,0): 28, 13, 20, (505,461,0): 27, 14, 21, (505,462,0): 29, 16, 23, (505,463,0): 31, 18, 25, (505,464,0): 31, 18, 27, (505,465,0): 29, 16, 25, (505,466,0): 29, 13, 23, (505,467,0): 30, 14, 24, (505,468,0): 34, 17, 27, (505,469,0): 35, 17, 29, (505,470,0): 35, 15, 27, (505,471,0): 33, 13, 25, (505,472,0): 36, 15, 30, (505,473,0): 32, 14, 28, (505,474,0): 29, 12, 28, (505,475,0): 25, 11, 26, (505,476,0): 21, 9, 23, (505,477,0): 18, 7, 21, (505,478,0): 15, 7, 20, (505,479,0): 14, 6, 19, (505,480,0): 17, 6, 20, (505,481,0): 17, 3, 16, (505,482,0): 17, 1, 14, (505,483,0): 17, 0, 13, (505,484,0): 22, 0, 13, (505,485,0): 31, 3, 18, (505,486,0): 42, 5, 22, (505,487,0): 50, 6, 23, (505,488,0): 61, 10, 27, (505,489,0): 64, 9, 28, (505,490,0): 64, 10, 26, (505,491,0): 60, 8, 21, (505,492,0): 52, 4, 16, (505,493,0): 46, 3, 12, (505,494,0): 44, 4, 12, (505,495,0): 40, 7, 14, (505,496,0): 31, 4, 11, (505,497,0): 32, 7, 13, (505,498,0): 34, 7, 14, (505,499,0): 35, 5, 13, (505,500,0): 36, 3, 12, (505,501,0): 38, 2, 12, (505,502,0): 39, 3, 13, (505,503,0): 40, 4, 14, (505,504,0): 39, 4, 11, (505,505,0): 40, 5, 12, (505,506,0): 42, 7, 14, (505,507,0): 44, 9, 16, (505,508,0): 46, 11, 18, (505,509,0): 48, 13, 19, (505,510,0): 50, 15, 22, (505,511,0): 54, 14, 23, (505,512,0): 65, 19, 32, (505,513,0): 64, 18, 31, (505,514,0): 60, 20, 29, (505,515,0): 56, 19, 27, (505,516,0): 57, 15, 25, (505,517,0): 54, 11, 21, (505,518,0): 54, 7, 17, (505,519,0): 52, 5, 15, (505,520,0): 49, 4, 11, (505,521,0): 56, 9, 17, (505,522,0): 68, 15, 25, (505,523,0): 79, 19, 31, (505,524,0): 84, 18, 30, (505,525,0): 83, 15, 28, (505,526,0): 78, 15, 26, (505,527,0): 76, 13, 22, (505,528,0): 90, 20, 28, (505,529,0): 91, 18, 25, (505,530,0): 95, 18, 26, (505,531,0): 99, 22, 30, (505,532,0): 107, 27, 36, (505,533,0): 109, 29, 38, (505,534,0): 106, 29, 37, (505,535,0): 103, 28, 35, (505,536,0): 110, 39, 45, (505,537,0): 107, 41, 45, (505,538,0): 107, 42, 46, (505,539,0): 108, 43, 47, (505,540,0): 105, 39, 43, (505,541,0): 99, 30, 35, (505,542,0): 96, 25, 31, (505,543,0): 98, 25, 34, (505,544,0): 101, 27, 42, (505,545,0): 98, 21, 39, (505,546,0): 102, 21, 40, (505,547,0): 109, 26, 46, (505,548,0): 110, 27, 47, (505,549,0): 101, 22, 41, (505,550,0): 93, 22, 38, (505,551,0): 89, 27, 40, (505,552,0): 83, 27, 38, (505,553,0): 78, 27, 36, (505,554,0): 77, 26, 35, (505,555,0): 74, 24, 33, (505,556,0): 73, 23, 32, (505,557,0): 73, 23, 32, (505,558,0): 72, 25, 33, (505,559,0): 76, 25, 32, (505,560,0): 90, 27, 35, (505,561,0): 95, 28, 37, (505,562,0): 88, 28, 40, (505,563,0): 81, 25, 38, (505,564,0): 77, 24, 40, (505,565,0): 76, 28, 42, (505,566,0): 68, 24, 39, (505,567,0): 56, 18, 33, (505,568,0): 45, 17, 29, (505,569,0): 46, 20, 31, (505,570,0): 52, 22, 34, (505,571,0): 71, 23, 35, (505,572,0): 109, 31, 44, (505,573,0): 152, 42, 55, (505,574,0): 186, 38, 52, (505,575,0): 184, 35, 54, (505,576,0): 144, 27, 56, (505,577,0): 99, 13, 42, (505,578,0): 67, 5, 26, (505,579,0): 54, 13, 27, (505,580,0): 43, 22, 31, (505,581,0): 31, 20, 26, (505,582,0): 31, 20, 26, (505,583,0): 37, 24, 31, (505,584,0): 44, 24, 35, (505,585,0): 44, 24, 35, (505,586,0): 41, 23, 35, (505,587,0): 39, 23, 34, (505,588,0): 37, 24, 34, (505,589,0): 40, 24, 35, (505,590,0): 44, 23, 38, (505,591,0): 46, 22, 36, (505,592,0): 45, 19, 32, (505,593,0): 49, 26, 36, (505,594,0): 47, 30, 38, (505,595,0): 39, 27, 31, (505,596,0): 37, 25, 29, (505,597,0): 43, 26, 32, (505,598,0): 46, 23, 29, (505,599,0): 43, 18, 24, (506,0,0): 42, 67, 74, (506,1,0): 42, 67, 74, (506,2,0): 40, 65, 72, (506,3,0): 40, 65, 72, (506,4,0): 40, 65, 72, (506,5,0): 40, 65, 72, (506,6,0): 42, 67, 74, (506,7,0): 42, 67, 74, (506,8,0): 43, 68, 75, (506,9,0): 44, 69, 76, (506,10,0): 44, 69, 76, (506,11,0): 45, 70, 77, (506,12,0): 45, 70, 77, (506,13,0): 46, 71, 78, (506,14,0): 46, 71, 78, (506,15,0): 46, 71, 78, (506,16,0): 44, 71, 80, (506,17,0): 44, 71, 80, (506,18,0): 44, 71, 80, (506,19,0): 44, 71, 80, (506,20,0): 44, 71, 80, (506,21,0): 44, 71, 80, (506,22,0): 46, 70, 80, (506,23,0): 46, 70, 80, (506,24,0): 48, 70, 81, (506,25,0): 49, 71, 82, (506,26,0): 51, 71, 82, (506,27,0): 51, 71, 82, (506,28,0): 52, 72, 83, (506,29,0): 53, 73, 84, (506,30,0): 53, 73, 84, (506,31,0): 53, 73, 82, (506,32,0): 51, 76, 81, (506,33,0): 51, 76, 81, (506,34,0): 51, 76, 81, (506,35,0): 53, 77, 81, (506,36,0): 54, 78, 82, (506,37,0): 56, 77, 82, (506,38,0): 56, 77, 82, (506,39,0): 58, 77, 81, (506,40,0): 59, 77, 81, (506,41,0): 61, 76, 79, (506,42,0): 62, 77, 80, (506,43,0): 64, 78, 81, (506,44,0): 67, 78, 82, (506,45,0): 68, 79, 81, (506,46,0): 69, 80, 82, (506,47,0): 72, 80, 82, (506,48,0): 77, 81, 80, (506,49,0): 79, 81, 78, (506,50,0): 79, 81, 78, (506,51,0): 79, 81, 78, (506,52,0): 81, 81, 79, (506,53,0): 81, 82, 77, (506,54,0): 84, 80, 77, (506,55,0): 84, 81, 76, (506,56,0): 83, 78, 74, (506,57,0): 82, 77, 73, (506,58,0): 84, 74, 72, (506,59,0): 83, 74, 69, (506,60,0): 83, 72, 68, (506,61,0): 83, 72, 66, (506,62,0): 84, 73, 67, (506,63,0): 84, 73, 69, (506,64,0): 83, 73, 72, (506,65,0): 82, 72, 73, (506,66,0): 80, 70, 71, (506,67,0): 79, 69, 70, (506,68,0): 77, 67, 68, (506,69,0): 78, 66, 66, (506,70,0): 78, 66, 66, (506,71,0): 78, 66, 66, (506,72,0): 75, 64, 62, (506,73,0): 76, 62, 61, (506,74,0): 75, 61, 60, (506,75,0): 73, 59, 58, (506,76,0): 74, 59, 56, (506,77,0): 74, 59, 56, (506,78,0): 75, 60, 57, (506,79,0): 75, 60, 57, (506,80,0): 74, 60, 59, (506,81,0): 74, 60, 59, (506,82,0): 74, 60, 59, (506,83,0): 74, 60, 59, (506,84,0): 74, 60, 59, (506,85,0): 74, 60, 59, (506,86,0): 74, 60, 59, (506,87,0): 74, 60, 59, (506,88,0): 74, 60, 59, (506,89,0): 74, 60, 59, (506,90,0): 74, 60, 59, (506,91,0): 74, 60, 59, (506,92,0): 74, 60, 59, (506,93,0): 74, 60, 59, (506,94,0): 74, 60, 59, (506,95,0): 74, 60, 59, (506,96,0): 72, 60, 60, (506,97,0): 72, 60, 60, (506,98,0): 71, 61, 60, (506,99,0): 71, 61, 60, (506,100,0): 71, 61, 60, (506,101,0): 71, 61, 60, (506,102,0): 71, 61, 60, (506,103,0): 70, 62, 60, (506,104,0): 68, 60, 58, (506,105,0): 65, 60, 57, (506,106,0): 64, 59, 56, (506,107,0): 64, 59, 56, (506,108,0): 61, 57, 54, (506,109,0): 61, 57, 54, (506,110,0): 60, 56, 53, (506,111,0): 59, 55, 52, (506,112,0): 58, 54, 51, (506,113,0): 58, 54, 51, (506,114,0): 58, 54, 51, (506,115,0): 58, 54, 51, (506,116,0): 58, 54, 51, (506,117,0): 58, 54, 51, (506,118,0): 58, 54, 51, (506,119,0): 58, 54, 51, (506,120,0): 59, 55, 52, (506,121,0): 59, 55, 52, (506,122,0): 58, 54, 51, (506,123,0): 57, 53, 50, (506,124,0): 56, 52, 49, (506,125,0): 55, 51, 48, (506,126,0): 54, 50, 47, (506,127,0): 54, 50, 47, (506,128,0): 51, 50, 48, (506,129,0): 50, 49, 47, (506,130,0): 48, 47, 45, (506,131,0): 49, 48, 46, (506,132,0): 51, 50, 48, (506,133,0): 51, 50, 48, (506,134,0): 50, 49, 47, (506,135,0): 48, 47, 45, (506,136,0): 48, 47, 45, (506,137,0): 48, 47, 45, (506,138,0): 47, 46, 44, (506,139,0): 45, 44, 42, (506,140,0): 43, 42, 40, (506,141,0): 42, 41, 39, (506,142,0): 41, 40, 38, (506,143,0): 40, 39, 37, (506,144,0): 42, 38, 35, (506,145,0): 42, 38, 35, (506,146,0): 42, 38, 35, (506,147,0): 42, 38, 35, (506,148,0): 42, 38, 35, (506,149,0): 42, 38, 35, (506,150,0): 42, 38, 35, (506,151,0): 42, 38, 35, (506,152,0): 44, 40, 37, (506,153,0): 43, 39, 36, (506,154,0): 41, 37, 34, (506,155,0): 40, 36, 33, (506,156,0): 40, 36, 33, (506,157,0): 40, 36, 33, (506,158,0): 40, 36, 33, (506,159,0): 41, 37, 34, (506,160,0): 41, 36, 33, (506,161,0): 41, 36, 33, (506,162,0): 41, 36, 33, (506,163,0): 41, 36, 33, (506,164,0): 41, 36, 33, (506,165,0): 41, 36, 33, (506,166,0): 41, 36, 33, (506,167,0): 41, 36, 33, (506,168,0): 41, 36, 33, (506,169,0): 41, 36, 33, (506,170,0): 41, 36, 33, (506,171,0): 41, 36, 33, (506,172,0): 41, 36, 33, (506,173,0): 41, 36, 33, (506,174,0): 41, 36, 33, (506,175,0): 41, 36, 33, (506,176,0): 40, 36, 37, (506,177,0): 40, 36, 37, (506,178,0): 40, 36, 37, (506,179,0): 40, 36, 37, (506,180,0): 40, 36, 37, (506,181,0): 40, 36, 37, (506,182,0): 40, 36, 37, (506,183,0): 40, 36, 37, (506,184,0): 38, 34, 35, (506,185,0): 38, 34, 35, (506,186,0): 39, 35, 36, (506,187,0): 40, 36, 37, (506,188,0): 41, 37, 38, (506,189,0): 42, 38, 39, (506,190,0): 42, 38, 39, (506,191,0): 42, 37, 41, (506,192,0): 41, 36, 42, (506,193,0): 41, 36, 43, (506,194,0): 40, 35, 42, (506,195,0): 39, 34, 41, (506,196,0): 39, 34, 41, (506,197,0): 40, 35, 42, (506,198,0): 41, 36, 43, (506,199,0): 41, 36, 43, (506,200,0): 40, 35, 42, (506,201,0): 40, 35, 42, (506,202,0): 40, 35, 42, (506,203,0): 40, 35, 42, (506,204,0): 40, 35, 42, (506,205,0): 40, 35, 42, (506,206,0): 40, 35, 42, (506,207,0): 40, 35, 42, (506,208,0): 39, 33, 45, (506,209,0): 39, 33, 45, (506,210,0): 39, 33, 45, (506,211,0): 40, 34, 46, (506,212,0): 41, 35, 47, (506,213,0): 41, 35, 47, (506,214,0): 41, 35, 47, (506,215,0): 42, 36, 48, (506,216,0): 42, 36, 48, (506,217,0): 42, 36, 48, (506,218,0): 42, 36, 48, (506,219,0): 42, 36, 48, (506,220,0): 42, 36, 48, (506,221,0): 42, 36, 48, (506,222,0): 42, 36, 48, (506,223,0): 42, 36, 48, (506,224,0): 41, 38, 49, (506,225,0): 40, 38, 49, (506,226,0): 41, 38, 49, (506,227,0): 41, 38, 49, (506,228,0): 41, 38, 49, (506,229,0): 41, 38, 49, (506,230,0): 43, 37, 49, (506,231,0): 43, 37, 49, (506,232,0): 45, 37, 50, (506,233,0): 45, 37, 50, (506,234,0): 46, 38, 51, (506,235,0): 46, 38, 51, (506,236,0): 49, 38, 52, (506,237,0): 49, 38, 52, (506,238,0): 50, 39, 53, (506,239,0): 50, 39, 53, (506,240,0): 49, 41, 56, (506,241,0): 50, 42, 57, (506,242,0): 54, 43, 59, (506,243,0): 56, 45, 61, (506,244,0): 59, 47, 61, (506,245,0): 62, 48, 63, (506,246,0): 65, 48, 64, (506,247,0): 67, 49, 63, (506,248,0): 72, 51, 66, (506,249,0): 75, 52, 68, (506,250,0): 78, 54, 68, (506,251,0): 82, 55, 70, (506,252,0): 85, 57, 72, (506,253,0): 86, 58, 73, (506,254,0): 88, 57, 72, (506,255,0): 88, 57, 72, (506,256,0): 87, 59, 73, (506,257,0): 86, 58, 72, (506,258,0): 85, 59, 72, (506,259,0): 85, 59, 72, (506,260,0): 84, 58, 71, (506,261,0): 83, 57, 70, (506,262,0): 81, 57, 70, (506,263,0): 81, 57, 70, (506,264,0): 78, 56, 68, (506,265,0): 78, 56, 68, (506,266,0): 78, 56, 68, (506,267,0): 78, 56, 68, (506,268,0): 77, 57, 68, (506,269,0): 77, 57, 68, (506,270,0): 77, 57, 68, (506,271,0): 77, 57, 68, (506,272,0): 76, 58, 70, (506,273,0): 76, 58, 70, (506,274,0): 77, 59, 71, (506,275,0): 77, 59, 71, (506,276,0): 78, 60, 72, (506,277,0): 78, 60, 72, (506,278,0): 79, 61, 73, (506,279,0): 79, 61, 73, (506,280,0): 81, 63, 75, (506,281,0): 81, 63, 75, (506,282,0): 82, 64, 76, (506,283,0): 82, 64, 76, (506,284,0): 83, 65, 77, (506,285,0): 83, 65, 77, (506,286,0): 84, 66, 78, (506,287,0): 86, 66, 78, (506,288,0): 87, 63, 79, (506,289,0): 87, 63, 79, (506,290,0): 87, 63, 77, (506,291,0): 87, 65, 78, (506,292,0): 87, 67, 79, (506,293,0): 87, 67, 79, (506,294,0): 87, 67, 78, (506,295,0): 88, 68, 79, (506,296,0): 89, 68, 77, (506,297,0): 90, 69, 78, (506,298,0): 94, 68, 79, (506,299,0): 96, 68, 80, (506,300,0): 100, 70, 80, (506,301,0): 103, 71, 82, (506,302,0): 104, 72, 83, (506,303,0): 105, 72, 83, (506,304,0): 103, 70, 79, (506,305,0): 105, 72, 79, (506,306,0): 109, 74, 80, (506,307,0): 109, 74, 80, (506,308,0): 111, 72, 77, (506,309,0): 114, 73, 79, (506,310,0): 122, 75, 85, (506,311,0): 128, 76, 88, (506,312,0): 138, 80, 94, (506,313,0): 148, 84, 98, (506,314,0): 162, 90, 102, (506,315,0): 171, 94, 102, (506,316,0): 180, 98, 100, (506,317,0): 192, 107, 102, (506,318,0): 207, 119, 109, (506,319,0): 218, 130, 106, (506,320,0): 234, 150, 104, (506,321,0): 248, 171, 117, (506,322,0): 255, 192, 145, (506,323,0): 255, 201, 161, (506,324,0): 245, 199, 166, (506,325,0): 224, 188, 162, (506,326,0): 196, 167, 149, (506,327,0): 173, 151, 137, (506,328,0): 159, 139, 128, (506,329,0): 140, 122, 112, (506,330,0): 116, 96, 89, (506,331,0): 94, 74, 67, (506,332,0): 80, 59, 54, (506,333,0): 70, 49, 46, (506,334,0): 63, 42, 41, (506,335,0): 59, 37, 39, (506,336,0): 54, 32, 35, (506,337,0): 53, 30, 36, (506,338,0): 50, 27, 33, (506,339,0): 47, 24, 30, (506,340,0): 44, 23, 28, (506,341,0): 43, 22, 27, (506,342,0): 42, 21, 28, (506,343,0): 41, 22, 28, (506,344,0): 36, 16, 25, (506,345,0): 34, 17, 25, (506,346,0): 33, 16, 26, (506,347,0): 32, 15, 25, (506,348,0): 31, 14, 24, (506,349,0): 30, 13, 23, (506,350,0): 28, 12, 22, (506,351,0): 28, 12, 23, (506,352,0): 24, 10, 23, (506,353,0): 24, 10, 23, (506,354,0): 25, 11, 24, (506,355,0): 25, 11, 24, (506,356,0): 25, 11, 24, (506,357,0): 25, 11, 24, (506,358,0): 26, 12, 25, (506,359,0): 26, 12, 25, (506,360,0): 23, 9, 22, (506,361,0): 23, 9, 22, (506,362,0): 23, 9, 22, (506,363,0): 23, 9, 22, (506,364,0): 23, 9, 22, (506,365,0): 23, 9, 22, (506,366,0): 23, 9, 22, (506,367,0): 22, 10, 22, (506,368,0): 22, 10, 20, (506,369,0): 21, 11, 19, (506,370,0): 22, 11, 19, (506,371,0): 23, 12, 20, (506,372,0): 23, 12, 20, (506,373,0): 24, 13, 21, (506,374,0): 25, 12, 19, (506,375,0): 26, 13, 20, (506,376,0): 27, 14, 21, (506,377,0): 29, 14, 19, (506,378,0): 29, 14, 19, (506,379,0): 29, 14, 17, (506,380,0): 30, 14, 17, (506,381,0): 30, 14, 17, (506,382,0): 30, 14, 17, (506,383,0): 30, 14, 17, (506,384,0): 31, 14, 20, (506,385,0): 31, 14, 20, (506,386,0): 31, 14, 20, (506,387,0): 31, 14, 20, (506,388,0): 31, 14, 20, (506,389,0): 31, 14, 20, (506,390,0): 31, 14, 20, (506,391,0): 31, 14, 20, (506,392,0): 33, 16, 22, (506,393,0): 33, 16, 22, (506,394,0): 33, 16, 22, (506,395,0): 33, 16, 22, (506,396,0): 33, 16, 22, (506,397,0): 33, 16, 22, (506,398,0): 33, 16, 22, (506,399,0): 33, 16, 22, (506,400,0): 36, 16, 25, (506,401,0): 36, 16, 25, (506,402,0): 37, 17, 26, (506,403,0): 37, 17, 26, (506,404,0): 38, 18, 27, (506,405,0): 38, 18, 27, (506,406,0): 39, 19, 28, (506,407,0): 39, 19, 28, (506,408,0): 38, 18, 27, (506,409,0): 38, 18, 27, (506,410,0): 38, 18, 27, (506,411,0): 38, 18, 27, (506,412,0): 38, 18, 27, (506,413,0): 38, 18, 27, (506,414,0): 38, 18, 27, (506,415,0): 38, 18, 27, (506,416,0): 39, 22, 28, (506,417,0): 38, 23, 28, (506,418,0): 38, 23, 28, (506,419,0): 38, 23, 28, (506,420,0): 38, 23, 30, (506,421,0): 38, 23, 30, (506,422,0): 38, 23, 30, (506,423,0): 38, 23, 30, (506,424,0): 40, 24, 34, (506,425,0): 41, 25, 35, (506,426,0): 42, 26, 37, (506,427,0): 43, 27, 38, (506,428,0): 45, 29, 40, (506,429,0): 44, 31, 41, (506,430,0): 47, 31, 44, (506,431,0): 46, 33, 43, (506,432,0): 39, 27, 37, (506,433,0): 38, 27, 35, (506,434,0): 36, 25, 33, (506,435,0): 33, 22, 30, (506,436,0): 32, 21, 29, (506,437,0): 31, 20, 28, (506,438,0): 32, 19, 28, (506,439,0): 32, 19, 28, (506,440,0): 32, 16, 26, (506,441,0): 32, 16, 26, (506,442,0): 34, 17, 27, (506,443,0): 34, 17, 27, (506,444,0): 36, 19, 29, (506,445,0): 38, 21, 31, (506,446,0): 40, 23, 33, (506,447,0): 43, 23, 34, (506,448,0): 44, 23, 32, (506,449,0): 46, 23, 33, (506,450,0): 46, 23, 33, (506,451,0): 45, 24, 33, (506,452,0): 44, 23, 32, (506,453,0): 43, 22, 31, (506,454,0): 41, 21, 30, (506,455,0): 40, 20, 29, (506,456,0): 42, 22, 31, (506,457,0): 38, 21, 29, (506,458,0): 35, 18, 26, (506,459,0): 34, 17, 25, (506,460,0): 33, 16, 24, (506,461,0): 33, 18, 25, (506,462,0): 35, 20, 27, (506,463,0): 36, 21, 28, (506,464,0): 35, 20, 27, (506,465,0): 33, 18, 25, (506,466,0): 32, 15, 23, (506,467,0): 33, 16, 24, (506,468,0): 38, 18, 27, (506,469,0): 38, 18, 29, (506,470,0): 38, 16, 28, (506,471,0): 35, 15, 26, (506,472,0): 34, 14, 26, (506,473,0): 32, 14, 26, (506,474,0): 29, 13, 26, (506,475,0): 26, 12, 25, (506,476,0): 22, 10, 22, (506,477,0): 19, 9, 20, (506,478,0): 16, 8, 19, (506,479,0): 15, 7, 20, (506,480,0): 15, 4, 18, (506,481,0): 16, 2, 17, (506,482,0): 17, 1, 14, (506,483,0): 20, 0, 14, (506,484,0): 25, 1, 15, (506,485,0): 35, 4, 20, (506,486,0): 44, 7, 24, (506,487,0): 51, 8, 25, (506,488,0): 58, 10, 26, (506,489,0): 61, 10, 27, (506,490,0): 60, 9, 24, (506,491,0): 53, 7, 18, (506,492,0): 44, 2, 12, (506,493,0): 37, 0, 8, (506,494,0): 33, 1, 6, (506,495,0): 32, 3, 7, (506,496,0): 35, 6, 11, (506,497,0): 34, 5, 10, (506,498,0): 35, 4, 10, (506,499,0): 37, 4, 11, (506,500,0): 41, 6, 13, (506,501,0): 43, 6, 14, (506,502,0): 43, 6, 14, (506,503,0): 41, 6, 13, (506,504,0): 34, 1, 8, (506,505,0): 34, 3, 9, (506,506,0): 35, 4, 12, (506,507,0): 36, 6, 14, (506,508,0): 40, 9, 17, (506,509,0): 41, 10, 16, (506,510,0): 44, 11, 20, (506,511,0): 47, 11, 21, (506,512,0): 66, 24, 36, (506,513,0): 63, 21, 33, (506,514,0): 53, 20, 27, (506,515,0): 48, 17, 23, (506,516,0): 48, 13, 20, (506,517,0): 47, 10, 18, (506,518,0): 50, 9, 17, (506,519,0): 51, 8, 17, (506,520,0): 45, 4, 10, (506,521,0): 54, 11, 18, (506,522,0): 68, 18, 27, (506,523,0): 75, 19, 30, (506,524,0): 77, 15, 26, (506,525,0): 78, 15, 26, (506,526,0): 80, 23, 32, (506,527,0): 86, 29, 36, (506,528,0): 92, 32, 34, (506,529,0): 93, 29, 30, (506,530,0): 92, 28, 29, (506,531,0): 94, 28, 30, (506,532,0): 99, 30, 33, (506,533,0): 102, 33, 36, (506,534,0): 104, 33, 37, (506,535,0): 104, 33, 37, (506,536,0): 110, 39, 43, (506,537,0): 112, 40, 44, (506,538,0): 111, 39, 43, (506,539,0): 111, 36, 41, (506,540,0): 110, 35, 40, (506,541,0): 111, 34, 40, (506,542,0): 108, 29, 35, (506,543,0): 99, 22, 32, (506,544,0): 96, 24, 38, (506,545,0): 95, 22, 39, (506,546,0): 101, 24, 42, (506,547,0): 107, 30, 48, (506,548,0): 105, 28, 46, (506,549,0): 95, 21, 38, (506,550,0): 89, 21, 36, (506,551,0): 87, 25, 38, (506,552,0): 81, 25, 36, (506,553,0): 77, 26, 35, (506,554,0): 74, 24, 33, (506,555,0): 70, 23, 31, (506,556,0): 65, 22, 29, (506,557,0): 64, 23, 29, (506,558,0): 63, 24, 29, (506,559,0): 64, 23, 27, (506,560,0): 77, 27, 28, (506,561,0): 84, 29, 32, (506,562,0): 84, 29, 34, (506,563,0): 81, 25, 34, (506,564,0): 81, 25, 38, (506,565,0): 80, 26, 40, (506,566,0): 70, 22, 38, (506,567,0): 53, 15, 30, (506,568,0): 43, 15, 30, (506,569,0): 41, 17, 30, (506,570,0): 48, 18, 30, (506,571,0): 70, 20, 31, (506,572,0): 115, 27, 39, (506,573,0): 166, 39, 50, (506,574,0): 209, 39, 50, (506,575,0): 212, 41, 59, (506,576,0): 168, 35, 66, (506,577,0): 119, 19, 53, (506,578,0): 77, 7, 31, (506,579,0): 54, 10, 25, (506,580,0): 38, 17, 26, (506,581,0): 29, 18, 24, (506,582,0): 33, 20, 27, (506,583,0): 42, 27, 34, (506,584,0): 45, 23, 35, (506,585,0): 44, 22, 34, (506,586,0): 42, 22, 34, (506,587,0): 39, 21, 33, (506,588,0): 38, 22, 33, (506,589,0): 39, 23, 34, (506,590,0): 43, 22, 37, (506,591,0): 45, 23, 36, (506,592,0): 45, 19, 32, (506,593,0): 47, 24, 34, (506,594,0): 44, 27, 35, (506,595,0): 41, 26, 33, (506,596,0): 43, 26, 32, (506,597,0): 49, 26, 34, (506,598,0): 54, 23, 31, (506,599,0): 52, 17, 24, (507,0,0): 42, 67, 74, (507,1,0): 42, 67, 74, (507,2,0): 40, 65, 72, (507,3,0): 40, 65, 72, (507,4,0): 40, 65, 72, (507,5,0): 40, 65, 72, (507,6,0): 42, 67, 74, (507,7,0): 42, 67, 74, (507,8,0): 43, 68, 75, (507,9,0): 43, 68, 75, (507,10,0): 43, 68, 75, (507,11,0): 44, 69, 76, (507,12,0): 45, 70, 77, (507,13,0): 45, 70, 77, (507,14,0): 45, 70, 77, (507,15,0): 46, 71, 78, (507,16,0): 44, 71, 80, (507,17,0): 44, 71, 80, (507,18,0): 44, 71, 80, (507,19,0): 44, 71, 80, (507,20,0): 44, 71, 80, (507,21,0): 44, 71, 80, (507,22,0): 46, 70, 80, (507,23,0): 46, 70, 80, (507,24,0): 47, 69, 80, (507,25,0): 47, 69, 80, (507,26,0): 50, 70, 81, (507,27,0): 50, 70, 81, (507,28,0): 51, 71, 82, (507,29,0): 51, 71, 82, (507,30,0): 52, 72, 83, (507,31,0): 50, 72, 83, (507,32,0): 50, 75, 82, (507,33,0): 49, 77, 81, (507,34,0): 49, 77, 81, (507,35,0): 52, 77, 82, (507,36,0): 52, 77, 82, (507,37,0): 54, 78, 82, (507,38,0): 54, 78, 82, (507,39,0): 56, 77, 82, (507,40,0): 58, 77, 83, (507,41,0): 59, 77, 81, (507,42,0): 60, 78, 82, (507,43,0): 63, 78, 81, (507,44,0): 65, 79, 82, (507,45,0): 66, 80, 83, (507,46,0): 67, 81, 84, (507,47,0): 69, 80, 82, (507,48,0): 74, 83, 82, (507,49,0): 77, 83, 83, (507,50,0): 77, 83, 83, (507,51,0): 77, 83, 81, (507,52,0): 79, 83, 82, (507,53,0): 79, 84, 80, (507,54,0): 82, 82, 80, (507,55,0): 82, 82, 80, (507,56,0): 82, 81, 79, (507,57,0): 81, 80, 76, (507,58,0): 84, 79, 76, (507,59,0): 83, 78, 74, (507,60,0): 84, 76, 73, (507,61,0): 84, 76, 73, (507,62,0): 84, 76, 73, (507,63,0): 84, 76, 74, (507,64,0): 83, 74, 75, (507,65,0): 79, 73, 75, (507,66,0): 79, 70, 73, (507,67,0): 77, 68, 69, (507,68,0): 75, 66, 67, (507,69,0): 77, 67, 68, (507,70,0): 78, 68, 69, (507,71,0): 80, 68, 68, (507,72,0): 76, 64, 64, (507,73,0): 75, 64, 62, (507,74,0): 75, 61, 60, (507,75,0): 74, 60, 59, (507,76,0): 74, 59, 56, (507,77,0): 74, 59, 56, (507,78,0): 74, 59, 56, (507,79,0): 75, 60, 57, (507,80,0): 75, 61, 60, (507,81,0): 75, 61, 60, (507,82,0): 75, 61, 60, (507,83,0): 75, 61, 60, (507,84,0): 75, 61, 60, (507,85,0): 75, 61, 60, (507,86,0): 75, 61, 60, (507,87,0): 75, 61, 60, (507,88,0): 76, 62, 61, (507,89,0): 76, 62, 61, (507,90,0): 75, 61, 60, (507,91,0): 75, 61, 60, (507,92,0): 75, 61, 60, (507,93,0): 74, 60, 59, (507,94,0): 74, 60, 59, (507,95,0): 74, 60, 59, (507,96,0): 72, 60, 60, (507,97,0): 72, 60, 60, (507,98,0): 71, 61, 60, (507,99,0): 71, 61, 60, (507,100,0): 71, 61, 60, (507,101,0): 71, 61, 60, (507,102,0): 70, 62, 60, (507,103,0): 70, 62, 60, (507,104,0): 65, 60, 57, (507,105,0): 65, 60, 57, (507,106,0): 64, 59, 56, (507,107,0): 63, 58, 55, (507,108,0): 62, 58, 55, (507,109,0): 61, 57, 54, (507,110,0): 60, 56, 53, (507,111,0): 60, 56, 53, (507,112,0): 59, 55, 52, (507,113,0): 59, 55, 52, (507,114,0): 59, 55, 52, (507,115,0): 59, 55, 52, (507,116,0): 59, 55, 52, (507,117,0): 59, 55, 52, (507,118,0): 59, 55, 52, (507,119,0): 59, 55, 52, (507,120,0): 60, 56, 53, (507,121,0): 60, 56, 53, (507,122,0): 59, 55, 52, (507,123,0): 58, 54, 51, (507,124,0): 57, 53, 50, (507,125,0): 56, 52, 49, (507,126,0): 55, 51, 48, (507,127,0): 54, 50, 47, (507,128,0): 51, 50, 48, (507,129,0): 50, 49, 47, (507,130,0): 49, 48, 46, (507,131,0): 49, 48, 46, (507,132,0): 50, 49, 47, (507,133,0): 49, 48, 46, (507,134,0): 49, 48, 46, (507,135,0): 48, 47, 45, (507,136,0): 49, 48, 46, (507,137,0): 48, 47, 45, (507,138,0): 47, 46, 44, (507,139,0): 46, 45, 43, (507,140,0): 44, 43, 41, (507,141,0): 42, 41, 39, (507,142,0): 41, 40, 38, (507,143,0): 41, 40, 38, (507,144,0): 42, 38, 35, (507,145,0): 42, 38, 35, (507,146,0): 42, 38, 35, (507,147,0): 42, 38, 35, (507,148,0): 42, 38, 35, (507,149,0): 42, 38, 35, (507,150,0): 42, 38, 35, (507,151,0): 42, 38, 35, (507,152,0): 43, 39, 36, (507,153,0): 42, 38, 35, (507,154,0): 42, 38, 35, (507,155,0): 41, 37, 34, (507,156,0): 40, 36, 33, (507,157,0): 40, 36, 33, (507,158,0): 40, 36, 33, (507,159,0): 40, 36, 33, (507,160,0): 41, 36, 33, (507,161,0): 41, 36, 33, (507,162,0): 41, 36, 33, (507,163,0): 41, 36, 33, (507,164,0): 41, 36, 33, (507,165,0): 41, 36, 33, (507,166,0): 41, 36, 33, (507,167,0): 41, 36, 33, (507,168,0): 41, 36, 33, (507,169,0): 41, 36, 33, (507,170,0): 41, 36, 33, (507,171,0): 41, 36, 33, (507,172,0): 41, 36, 33, (507,173,0): 41, 36, 33, (507,174,0): 41, 36, 33, (507,175,0): 41, 36, 33, (507,176,0): 40, 36, 37, (507,177,0): 40, 36, 37, (507,178,0): 40, 36, 37, (507,179,0): 40, 36, 37, (507,180,0): 40, 36, 37, (507,181,0): 40, 36, 37, (507,182,0): 40, 36, 37, (507,183,0): 40, 36, 37, (507,184,0): 36, 32, 33, (507,185,0): 37, 33, 34, (507,186,0): 38, 34, 35, (507,187,0): 39, 35, 36, (507,188,0): 40, 36, 37, (507,189,0): 42, 38, 39, (507,190,0): 43, 39, 40, (507,191,0): 43, 38, 42, (507,192,0): 40, 35, 41, (507,193,0): 40, 35, 42, (507,194,0): 40, 35, 42, (507,195,0): 39, 34, 41, (507,196,0): 39, 34, 41, (507,197,0): 40, 35, 42, (507,198,0): 40, 35, 42, (507,199,0): 40, 35, 42, (507,200,0): 40, 35, 42, (507,201,0): 40, 35, 42, (507,202,0): 40, 35, 42, (507,203,0): 40, 35, 42, (507,204,0): 40, 35, 42, (507,205,0): 40, 35, 42, (507,206,0): 40, 35, 42, (507,207,0): 40, 35, 42, (507,208,0): 38, 32, 44, (507,209,0): 39, 33, 45, (507,210,0): 39, 33, 45, (507,211,0): 40, 34, 46, (507,212,0): 40, 34, 46, (507,213,0): 41, 35, 47, (507,214,0): 41, 35, 47, (507,215,0): 41, 35, 47, (507,216,0): 41, 35, 47, (507,217,0): 41, 35, 47, (507,218,0): 41, 35, 47, (507,219,0): 41, 35, 47, (507,220,0): 41, 35, 47, (507,221,0): 41, 35, 47, (507,222,0): 41, 35, 47, (507,223,0): 39, 36, 47, (507,224,0): 40, 37, 48, (507,225,0): 39, 37, 48, (507,226,0): 40, 37, 48, (507,227,0): 40, 37, 48, (507,228,0): 40, 37, 48, (507,229,0): 40, 37, 48, (507,230,0): 42, 36, 48, (507,231,0): 42, 36, 48, (507,232,0): 44, 36, 49, (507,233,0): 44, 36, 49, (507,234,0): 45, 37, 50, (507,235,0): 45, 37, 50, (507,236,0): 48, 37, 51, (507,237,0): 48, 37, 51, (507,238,0): 49, 38, 52, (507,239,0): 47, 39, 52, (507,240,0): 48, 42, 56, (507,241,0): 46, 42, 56, (507,242,0): 50, 44, 58, (507,243,0): 52, 44, 59, (507,244,0): 56, 45, 59, (507,245,0): 59, 47, 61, (507,246,0): 61, 47, 62, (507,247,0): 64, 47, 63, (507,248,0): 69, 51, 65, (507,249,0): 72, 51, 66, (507,250,0): 76, 54, 67, (507,251,0): 79, 55, 69, (507,252,0): 83, 56, 71, (507,253,0): 86, 58, 73, (507,254,0): 86, 58, 72, (507,255,0): 86, 58, 72, (507,256,0): 86, 58, 72, (507,257,0): 86, 58, 72, (507,258,0): 85, 59, 72, (507,259,0): 84, 58, 71, (507,260,0): 84, 58, 71, (507,261,0): 83, 57, 70, (507,262,0): 81, 57, 70, (507,263,0): 80, 56, 69, (507,264,0): 79, 55, 68, (507,265,0): 78, 56, 68, (507,266,0): 78, 56, 68, (507,267,0): 78, 56, 68, (507,268,0): 77, 57, 68, (507,269,0): 77, 57, 68, (507,270,0): 77, 57, 68, (507,271,0): 77, 57, 68, (507,272,0): 75, 57, 69, (507,273,0): 75, 57, 69, (507,274,0): 76, 58, 70, (507,275,0): 76, 58, 70, (507,276,0): 77, 59, 71, (507,277,0): 77, 59, 71, (507,278,0): 78, 60, 72, (507,279,0): 78, 60, 72, (507,280,0): 81, 63, 75, (507,281,0): 81, 63, 75, (507,282,0): 82, 64, 76, (507,283,0): 82, 64, 76, (507,284,0): 83, 65, 77, (507,285,0): 83, 65, 77, (507,286,0): 84, 66, 78, (507,287,0): 86, 66, 78, (507,288,0): 86, 62, 78, (507,289,0): 89, 62, 79, (507,290,0): 87, 63, 77, (507,291,0): 88, 64, 78, (507,292,0): 87, 65, 78, (507,293,0): 87, 67, 79, (507,294,0): 87, 67, 78, (507,295,0): 87, 67, 78, (507,296,0): 90, 69, 78, (507,297,0): 90, 69, 78, (507,298,0): 92, 69, 79, (507,299,0): 95, 69, 80, (507,300,0): 97, 70, 79, (507,301,0): 101, 71, 81, (507,302,0): 103, 71, 82, (507,303,0): 103, 71, 82, (507,304,0): 100, 69, 77, (507,305,0): 103, 72, 80, (507,306,0): 105, 74, 80, (507,307,0): 106, 74, 79, (507,308,0): 109, 72, 79, (507,309,0): 112, 73, 78, (507,310,0): 121, 75, 85, (507,311,0): 127, 77, 88, (507,312,0): 136, 80, 93, (507,313,0): 146, 84, 97, (507,314,0): 160, 90, 101, (507,315,0): 169, 94, 101, (507,316,0): 179, 99, 100, (507,317,0): 192, 107, 104, (507,318,0): 209, 120, 112, (507,319,0): 219, 133, 110, (507,320,0): 237, 155, 108, (507,321,0): 252, 177, 122, (507,322,0): 255, 198, 150, (507,323,0): 255, 204, 163, (507,324,0): 243, 198, 165, (507,325,0): 221, 187, 160, (507,326,0): 196, 169, 150, (507,327,0): 175, 153, 139, (507,328,0): 163, 145, 133, (507,329,0): 147, 129, 119, (507,330,0): 124, 104, 97, (507,331,0): 102, 81, 76, (507,332,0): 85, 64, 61, (507,333,0): 75, 54, 53, (507,334,0): 67, 45, 47, (507,335,0): 63, 41, 44, (507,336,0): 57, 35, 38, (507,337,0): 55, 32, 38, (507,338,0): 52, 29, 35, (507,339,0): 49, 26, 32, (507,340,0): 46, 25, 30, (507,341,0): 44, 23, 28, (507,342,0): 43, 22, 29, (507,343,0): 43, 22, 29, (507,344,0): 37, 17, 26, (507,345,0): 37, 17, 26, (507,346,0): 34, 17, 27, (507,347,0): 33, 16, 26, (507,348,0): 32, 15, 25, (507,349,0): 31, 14, 24, (507,350,0): 29, 13, 23, (507,351,0): 28, 12, 22, (507,352,0): 25, 9, 20, (507,353,0): 23, 9, 22, (507,354,0): 24, 10, 23, (507,355,0): 25, 11, 24, (507,356,0): 25, 11, 24, (507,357,0): 26, 12, 25, (507,358,0): 27, 13, 26, (507,359,0): 27, 13, 26, (507,360,0): 24, 10, 23, (507,361,0): 24, 10, 23, (507,362,0): 24, 10, 23, (507,363,0): 24, 10, 23, (507,364,0): 24, 10, 23, (507,365,0): 24, 10, 23, (507,366,0): 24, 10, 23, (507,367,0): 24, 11, 21, (507,368,0): 23, 10, 19, (507,369,0): 23, 12, 20, (507,370,0): 24, 11, 20, (507,371,0): 24, 11, 20, (507,372,0): 25, 12, 21, (507,373,0): 28, 13, 20, (507,374,0): 28, 13, 20, (507,375,0): 28, 13, 20, (507,376,0): 30, 15, 20, (507,377,0): 31, 14, 20, (507,378,0): 31, 15, 18, (507,379,0): 33, 14, 18, (507,380,0): 33, 14, 18, (507,381,0): 33, 14, 18, (507,382,0): 33, 14, 18, (507,383,0): 33, 14, 18, (507,384,0): 31, 14, 20, (507,385,0): 31, 14, 20, (507,386,0): 31, 14, 20, (507,387,0): 31, 14, 20, (507,388,0): 31, 14, 20, (507,389,0): 31, 14, 20, (507,390,0): 31, 14, 20, (507,391,0): 31, 14, 20, (507,392,0): 33, 16, 22, (507,393,0): 33, 16, 22, (507,394,0): 33, 16, 22, (507,395,0): 33, 16, 22, (507,396,0): 33, 16, 22, (507,397,0): 33, 16, 22, (507,398,0): 33, 16, 22, (507,399,0): 33, 16, 22, (507,400,0): 35, 15, 24, (507,401,0): 35, 15, 24, (507,402,0): 36, 16, 25, (507,403,0): 36, 16, 25, (507,404,0): 37, 17, 26, (507,405,0): 37, 17, 26, (507,406,0): 38, 18, 27, (507,407,0): 38, 18, 27, (507,408,0): 38, 18, 27, (507,409,0): 38, 18, 27, (507,410,0): 38, 18, 27, (507,411,0): 38, 18, 27, (507,412,0): 38, 18, 27, (507,413,0): 38, 18, 27, (507,414,0): 38, 18, 27, (507,415,0): 36, 19, 27, (507,416,0): 38, 23, 28, (507,417,0): 38, 23, 28, (507,418,0): 38, 23, 28, (507,419,0): 39, 24, 29, (507,420,0): 39, 24, 31, (507,421,0): 39, 24, 31, (507,422,0): 40, 25, 32, (507,423,0): 40, 25, 32, (507,424,0): 41, 25, 35, (507,425,0): 42, 26, 36, (507,426,0): 43, 27, 38, (507,427,0): 45, 29, 40, (507,428,0): 47, 31, 42, (507,429,0): 48, 32, 43, (507,430,0): 50, 34, 47, (507,431,0): 49, 36, 46, (507,432,0): 42, 29, 39, (507,433,0): 39, 28, 36, (507,434,0): 37, 26, 34, (507,435,0): 34, 23, 31, (507,436,0): 32, 21, 29, (507,437,0): 31, 20, 28, (507,438,0): 31, 18, 27, (507,439,0): 31, 18, 27, (507,440,0): 32, 16, 26, (507,441,0): 32, 16, 26, (507,442,0): 34, 17, 27, (507,443,0): 35, 18, 28, (507,444,0): 36, 19, 29, (507,445,0): 37, 20, 30, (507,446,0): 39, 22, 32, (507,447,0): 41, 21, 32, (507,448,0): 42, 21, 30, (507,449,0): 42, 21, 30, (507,450,0): 43, 22, 31, (507,451,0): 44, 23, 32, (507,452,0): 44, 23, 32, (507,453,0): 44, 23, 32, (507,454,0): 43, 23, 32, (507,455,0): 43, 23, 32, (507,456,0): 44, 24, 33, (507,457,0): 43, 23, 32, (507,458,0): 41, 21, 30, (507,459,0): 39, 19, 28, (507,460,0): 39, 19, 28, (507,461,0): 39, 19, 28, (507,462,0): 40, 20, 29, (507,463,0): 39, 22, 30, (507,464,0): 39, 22, 30, (507,465,0): 37, 20, 26, (507,466,0): 35, 18, 26, (507,467,0): 37, 17, 26, (507,468,0): 39, 19, 28, (507,469,0): 41, 20, 29, (507,470,0): 39, 18, 27, (507,471,0): 37, 15, 27, (507,472,0): 34, 12, 24, (507,473,0): 33, 13, 25, (507,474,0): 31, 13, 25, (507,475,0): 29, 13, 24, (507,476,0): 26, 12, 25, (507,477,0): 23, 11, 23, (507,478,0): 20, 10, 21, (507,479,0): 19, 9, 20, (507,480,0): 17, 5, 19, (507,481,0): 17, 3, 18, (507,482,0): 19, 1, 15, (507,483,0): 23, 0, 16, (507,484,0): 29, 2, 19, (507,485,0): 36, 5, 21, (507,486,0): 44, 7, 24, (507,487,0): 50, 9, 27, (507,488,0): 51, 8, 25, (507,489,0): 52, 10, 24, (507,490,0): 51, 9, 21, (507,491,0): 47, 7, 18, (507,492,0): 39, 4, 11, (507,493,0): 32, 1, 7, (507,494,0): 31, 2, 6, (507,495,0): 30, 4, 7, (507,496,0): 36, 7, 11, (507,497,0): 34, 3, 8, (507,498,0): 34, 2, 7, (507,499,0): 39, 4, 11, (507,500,0): 44, 7, 15, (507,501,0): 46, 9, 17, (507,502,0): 45, 8, 16, (507,503,0): 42, 7, 14, (507,504,0): 33, 2, 8, (507,505,0): 33, 4, 9, (507,506,0): 32, 5, 12, (507,507,0): 34, 7, 14, (507,508,0): 35, 8, 15, (507,509,0): 39, 9, 19, (507,510,0): 41, 9, 20, (507,511,0): 45, 9, 21, (507,512,0): 57, 15, 27, (507,513,0): 54, 14, 25, (507,514,0): 46, 15, 21, (507,515,0): 44, 15, 20, (507,516,0): 45, 14, 20, (507,517,0): 50, 15, 22, (507,518,0): 55, 15, 23, (507,519,0): 56, 16, 24, (507,520,0): 54, 18, 22, (507,521,0): 59, 18, 24, (507,522,0): 64, 17, 25, (507,523,0): 67, 14, 24, (507,524,0): 73, 13, 23, (507,525,0): 79, 19, 29, (507,526,0): 83, 30, 38, (507,527,0): 91, 38, 44, (507,528,0): 100, 41, 43, (507,529,0): 99, 39, 39, (507,530,0): 98, 38, 38, (507,531,0): 96, 38, 37, (507,532,0): 96, 38, 37, (507,533,0): 98, 38, 38, (507,534,0): 101, 37, 38, (507,535,0): 102, 36, 38, (507,536,0): 105, 34, 38, (507,537,0): 109, 37, 41, (507,538,0): 110, 33, 39, (507,539,0): 107, 30, 36, (507,540,0): 114, 35, 41, (507,541,0): 119, 42, 48, (507,542,0): 114, 37, 43, (507,543,0): 100, 27, 36, (507,544,0): 86, 18, 31, (507,545,0): 84, 18, 32, (507,546,0): 89, 21, 36, (507,547,0): 94, 23, 39, (507,548,0): 90, 19, 35, (507,549,0): 79, 13, 27, (507,550,0): 77, 13, 27, (507,551,0): 81, 21, 33, (507,552,0): 81, 25, 36, (507,553,0): 77, 26, 35, (507,554,0): 74, 24, 33, (507,555,0): 69, 24, 31, (507,556,0): 64, 23, 29, (507,557,0): 60, 24, 28, (507,558,0): 58, 23, 27, (507,559,0): 58, 22, 24, (507,560,0): 69, 28, 26, (507,561,0): 75, 29, 29, (507,562,0): 77, 27, 30, (507,563,0): 75, 22, 28, (507,564,0): 79, 21, 33, (507,565,0): 80, 23, 38, (507,566,0): 71, 20, 37, (507,567,0): 57, 14, 31, (507,568,0): 52, 21, 37, (507,569,0): 46, 19, 34, (507,570,0): 48, 18, 30, (507,571,0): 68, 16, 28, (507,572,0): 108, 20, 32, (507,573,0): 153, 27, 38, (507,574,0): 195, 29, 39, (507,575,0): 203, 35, 52, (507,576,0): 164, 30, 63, (507,577,0): 120, 19, 53, (507,578,0): 79, 7, 31, (507,579,0): 55, 8, 24, (507,580,0): 37, 14, 24, (507,581,0): 30, 17, 24, (507,582,0): 35, 22, 29, (507,583,0): 45, 28, 36, (507,584,0): 45, 23, 35, (507,585,0): 45, 21, 34, (507,586,0): 42, 22, 34, (507,587,0): 39, 21, 33, (507,588,0): 36, 23, 33, (507,589,0): 37, 24, 34, (507,590,0): 41, 23, 37, (507,591,0): 44, 24, 36, (507,592,0): 46, 22, 35, (507,593,0): 45, 24, 33, (507,594,0): 42, 25, 33, (507,595,0): 43, 26, 32, (507,596,0): 49, 26, 34, (507,597,0): 57, 26, 34, (507,598,0): 66, 20, 31, (507,599,0): 66, 16, 27, (508,0,0): 42, 67, 74, (508,1,0): 42, 67, 74, (508,2,0): 40, 65, 72, (508,3,0): 40, 65, 72, (508,4,0): 40, 65, 72, (508,5,0): 40, 65, 72, (508,6,0): 42, 67, 74, (508,7,0): 42, 67, 74, (508,8,0): 42, 67, 74, (508,9,0): 43, 68, 75, (508,10,0): 43, 68, 75, (508,11,0): 43, 68, 75, (508,12,0): 44, 69, 76, (508,13,0): 45, 70, 77, (508,14,0): 45, 70, 77, (508,15,0): 45, 70, 77, (508,16,0): 43, 70, 79, (508,17,0): 42, 70, 81, (508,18,0): 42, 70, 81, (508,19,0): 42, 70, 81, (508,20,0): 43, 70, 81, (508,21,0): 43, 70, 81, (508,22,0): 45, 69, 81, (508,23,0): 45, 69, 81, (508,24,0): 46, 70, 82, (508,25,0): 46, 70, 82, (508,26,0): 47, 69, 82, (508,27,0): 48, 70, 83, (508,28,0): 50, 69, 83, (508,29,0): 51, 70, 84, (508,30,0): 51, 70, 84, (508,31,0): 49, 71, 82, (508,32,0): 48, 75, 82, (508,33,0): 47, 76, 82, (508,34,0): 47, 76, 82, (508,35,0): 49, 76, 83, (508,36,0): 49, 76, 83, (508,37,0): 52, 77, 82, (508,38,0): 53, 76, 82, (508,39,0): 56, 77, 82, (508,40,0): 56, 77, 82, (508,41,0): 57, 76, 80, (508,42,0): 59, 77, 81, (508,43,0): 60, 78, 82, (508,44,0): 63, 78, 83, (508,45,0): 64, 79, 84, (508,46,0): 65, 80, 85, (508,47,0): 66, 80, 83, (508,48,0): 71, 82, 84, (508,49,0): 73, 83, 84, (508,50,0): 73, 83, 84, (508,51,0): 74, 84, 83, (508,52,0): 76, 85, 84, (508,53,0): 76, 85, 84, (508,54,0): 80, 84, 85, (508,55,0): 80, 84, 83, (508,56,0): 81, 83, 82, (508,57,0): 81, 83, 80, (508,58,0): 83, 82, 80, (508,59,0): 82, 81, 79, (508,60,0): 84, 80, 79, (508,61,0): 83, 79, 76, (508,62,0): 82, 78, 75, (508,63,0): 82, 78, 77, (508,64,0): 81, 77, 78, (508,65,0): 79, 74, 78, (508,66,0): 78, 72, 76, (508,67,0): 76, 70, 72, (508,68,0): 75, 69, 71, (508,69,0): 77, 68, 69, (508,70,0): 78, 69, 70, (508,71,0): 80, 70, 69, (508,72,0): 77, 67, 66, (508,73,0): 77, 65, 65, (508,74,0): 77, 63, 62, (508,75,0): 75, 61, 60, (508,76,0): 74, 60, 57, (508,77,0): 73, 59, 56, (508,78,0): 75, 60, 57, (508,79,0): 75, 60, 57, (508,80,0): 75, 61, 60, (508,81,0): 75, 61, 60, (508,82,0): 75, 61, 60, (508,83,0): 75, 61, 60, (508,84,0): 75, 61, 60, (508,85,0): 75, 61, 60, (508,86,0): 75, 61, 60, (508,87,0): 75, 61, 60, (508,88,0): 77, 63, 62, (508,89,0): 77, 63, 62, (508,90,0): 76, 62, 61, (508,91,0): 76, 62, 61, (508,92,0): 75, 61, 60, (508,93,0): 74, 60, 59, (508,94,0): 74, 60, 59, (508,95,0): 73, 59, 58, (508,96,0): 71, 59, 59, (508,97,0): 70, 60, 59, (508,98,0): 70, 60, 59, (508,99,0): 70, 60, 59, (508,100,0): 69, 61, 59, (508,101,0): 69, 61, 59, (508,102,0): 69, 61, 59, (508,103,0): 69, 61, 59, (508,104,0): 64, 59, 56, (508,105,0): 64, 59, 56, (508,106,0): 63, 59, 56, (508,107,0): 62, 58, 55, (508,108,0): 62, 58, 55, (508,109,0): 61, 57, 54, (508,110,0): 59, 58, 54, (508,111,0): 59, 58, 54, (508,112,0): 59, 55, 52, (508,113,0): 59, 55, 52, (508,114,0): 59, 55, 52, (508,115,0): 59, 55, 52, (508,116,0): 59, 55, 52, (508,117,0): 59, 55, 52, (508,118,0): 59, 55, 52, (508,119,0): 59, 55, 52, (508,120,0): 61, 57, 54, (508,121,0): 60, 56, 53, (508,122,0): 59, 55, 52, (508,123,0): 58, 54, 51, (508,124,0): 57, 53, 50, (508,125,0): 56, 52, 49, (508,126,0): 55, 51, 48, (508,127,0): 55, 51, 48, (508,128,0): 51, 50, 48, (508,129,0): 51, 51, 51, (508,130,0): 51, 51, 51, (508,131,0): 50, 50, 50, (508,132,0): 48, 48, 48, (508,133,0): 47, 47, 47, (508,134,0): 47, 47, 47, (508,135,0): 48, 48, 48, (508,136,0): 48, 48, 48, (508,137,0): 48, 48, 48, (508,138,0): 47, 47, 47, (508,139,0): 45, 45, 45, (508,140,0): 43, 43, 43, (508,141,0): 42, 42, 42, (508,142,0): 41, 41, 41, (508,143,0): 41, 40, 38, (508,144,0): 43, 39, 36, (508,145,0): 43, 39, 36, (508,146,0): 43, 39, 36, (508,147,0): 43, 39, 36, (508,148,0): 43, 39, 36, (508,149,0): 43, 39, 36, (508,150,0): 43, 39, 36, (508,151,0): 43, 39, 36, (508,152,0): 42, 38, 35, (508,153,0): 42, 38, 35, (508,154,0): 42, 38, 35, (508,155,0): 42, 38, 35, (508,156,0): 41, 37, 34, (508,157,0): 40, 36, 33, (508,158,0): 40, 36, 33, (508,159,0): 39, 35, 32, (508,160,0): 41, 36, 33, (508,161,0): 41, 36, 33, (508,162,0): 41, 36, 33, (508,163,0): 41, 36, 33, (508,164,0): 41, 36, 33, (508,165,0): 41, 36, 33, (508,166,0): 41, 36, 33, (508,167,0): 41, 36, 33, (508,168,0): 41, 36, 33, (508,169,0): 41, 36, 33, (508,170,0): 41, 36, 33, (508,171,0): 41, 36, 33, (508,172,0): 41, 36, 33, (508,173,0): 41, 36, 33, (508,174,0): 41, 36, 33, (508,175,0): 41, 36, 33, (508,176,0): 40, 36, 37, (508,177,0): 40, 36, 37, (508,178,0): 40, 36, 37, (508,179,0): 40, 36, 37, (508,180,0): 40, 36, 37, (508,181,0): 40, 36, 37, (508,182,0): 40, 36, 37, (508,183,0): 40, 36, 37, (508,184,0): 36, 32, 33, (508,185,0): 36, 32, 33, (508,186,0): 37, 33, 34, (508,187,0): 39, 35, 36, (508,188,0): 40, 36, 37, (508,189,0): 41, 37, 38, (508,190,0): 42, 38, 39, (508,191,0): 43, 38, 42, (508,192,0): 39, 34, 40, (508,193,0): 39, 34, 41, (508,194,0): 39, 34, 41, (508,195,0): 40, 35, 42, (508,196,0): 40, 35, 42, (508,197,0): 39, 34, 41, (508,198,0): 39, 34, 41, (508,199,0): 39, 34, 41, (508,200,0): 39, 34, 41, (508,201,0): 39, 34, 41, (508,202,0): 39, 34, 41, (508,203,0): 39, 34, 41, (508,204,0): 39, 34, 41, (508,205,0): 39, 34, 41, (508,206,0): 39, 34, 41, (508,207,0): 39, 34, 41, (508,208,0): 38, 32, 44, (508,209,0): 38, 32, 44, (508,210,0): 38, 32, 44, (508,211,0): 39, 33, 45, (508,212,0): 39, 33, 45, (508,213,0): 40, 34, 46, (508,214,0): 40, 34, 46, (508,215,0): 41, 35, 47, (508,216,0): 41, 35, 47, (508,217,0): 41, 35, 47, (508,218,0): 41, 35, 47, (508,219,0): 41, 35, 47, (508,220,0): 41, 35, 47, (508,221,0): 41, 35, 47, (508,222,0): 41, 35, 47, (508,223,0): 39, 36, 47, (508,224,0): 38, 35, 46, (508,225,0): 37, 35, 46, (508,226,0): 37, 35, 46, (508,227,0): 37, 35, 46, (508,228,0): 38, 35, 46, (508,229,0): 38, 35, 46, (508,230,0): 38, 35, 46, (508,231,0): 38, 35, 46, (508,232,0): 42, 36, 48, (508,233,0): 42, 36, 48, (508,234,0): 44, 36, 49, (508,235,0): 44, 36, 49, (508,236,0): 45, 37, 50, (508,237,0): 45, 37, 50, (508,238,0): 48, 37, 51, (508,239,0): 46, 38, 51, (508,240,0): 45, 41, 55, (508,241,0): 45, 43, 57, (508,242,0): 47, 43, 57, (508,243,0): 48, 44, 58, (508,244,0): 51, 45, 59, (508,245,0): 54, 46, 61, (508,246,0): 57, 46, 60, (508,247,0): 58, 46, 60, (508,248,0): 65, 49, 62, (508,249,0): 68, 50, 64, (508,250,0): 73, 52, 67, (508,251,0): 77, 54, 70, (508,252,0): 80, 56, 70, (508,253,0): 83, 56, 71, (508,254,0): 84, 57, 72, (508,255,0): 85, 57, 72, (508,256,0): 86, 58, 72, (508,257,0): 85, 57, 71, (508,258,0): 85, 57, 71, (508,259,0): 84, 56, 70, (508,260,0): 83, 57, 70, (508,261,0): 82, 56, 69, (508,262,0): 82, 56, 69, (508,263,0): 80, 56, 69, (508,264,0): 78, 54, 67, (508,265,0): 78, 54, 67, (508,266,0): 77, 55, 67, (508,267,0): 77, 55, 67, (508,268,0): 77, 55, 67, (508,269,0): 77, 55, 67, (508,270,0): 76, 56, 67, (508,271,0): 76, 56, 67, (508,272,0): 74, 56, 68, (508,273,0): 74, 56, 68, (508,274,0): 75, 57, 69, (508,275,0): 75, 57, 69, (508,276,0): 76, 58, 70, (508,277,0): 76, 58, 70, (508,278,0): 77, 59, 71, (508,279,0): 77, 59, 71, (508,280,0): 80, 62, 74, (508,281,0): 80, 62, 74, (508,282,0): 80, 62, 74, (508,283,0): 81, 63, 75, (508,284,0): 82, 64, 76, (508,285,0): 82, 64, 76, (508,286,0): 82, 64, 76, (508,287,0): 85, 65, 77, (508,288,0): 88, 61, 78, (508,289,0): 88, 61, 78, (508,290,0): 86, 62, 76, (508,291,0): 87, 63, 77, (508,292,0): 86, 64, 77, (508,293,0): 87, 65, 78, (508,294,0): 86, 66, 77, (508,295,0): 87, 67, 78, (508,296,0): 89, 69, 78, (508,297,0): 90, 69, 78, (508,298,0): 92, 69, 79, (508,299,0): 95, 69, 80, (508,300,0): 97, 70, 79, (508,301,0): 98, 71, 80, (508,302,0): 100, 70, 80, (508,303,0): 101, 71, 81, (508,304,0): 97, 67, 75, (508,305,0): 100, 70, 78, (508,306,0): 102, 73, 78, (508,307,0): 104, 73, 78, (508,308,0): 107, 72, 78, (508,309,0): 110, 73, 80, (508,310,0): 118, 75, 85, (508,311,0): 125, 77, 89, (508,312,0): 135, 78, 93, (508,313,0): 145, 83, 98, (508,314,0): 158, 87, 101, (508,315,0): 168, 92, 102, (508,316,0): 178, 98, 101, (508,317,0): 192, 109, 105, (508,318,0): 210, 123, 114, (508,319,0): 222, 136, 113, (508,320,0): 242, 164, 118, (508,321,0): 255, 186, 132, (508,322,0): 255, 206, 159, (508,323,0): 255, 208, 168, (508,324,0): 239, 198, 166, (508,325,0): 215, 183, 158, (508,326,0): 192, 166, 149, (508,327,0): 173, 154, 140, (508,328,0): 162, 144, 134, (508,329,0): 148, 129, 122, (508,330,0): 129, 108, 103, (508,331,0): 108, 87, 82, (508,332,0): 93, 69, 67, (508,333,0): 80, 56, 56, (508,334,0): 72, 47, 50, (508,335,0): 68, 43, 47, (508,336,0): 61, 36, 40, (508,337,0): 59, 34, 38, (508,338,0): 54, 32, 35, (508,339,0): 51, 29, 32, (508,340,0): 48, 25, 31, (508,341,0): 46, 23, 29, (508,342,0): 44, 23, 30, (508,343,0): 43, 22, 29, (508,344,0): 38, 19, 25, (508,345,0): 37, 18, 24, (508,346,0): 36, 16, 25, (508,347,0): 35, 15, 24, (508,348,0): 32, 15, 25, (508,349,0): 31, 14, 24, (508,350,0): 30, 13, 23, (508,351,0): 29, 13, 23, (508,352,0): 25, 9, 20, (508,353,0): 25, 9, 20, (508,354,0): 26, 10, 21, (508,355,0): 27, 11, 22, (508,356,0): 27, 11, 22, (508,357,0): 28, 12, 23, (508,358,0): 29, 13, 24, (508,359,0): 29, 13, 24, (508,360,0): 28, 12, 23, (508,361,0): 28, 12, 23, (508,362,0): 28, 12, 23, (508,363,0): 28, 12, 23, (508,364,0): 28, 12, 23, (508,365,0): 28, 12, 23, (508,366,0): 28, 12, 23, (508,367,0): 28, 12, 23, (508,368,0): 26, 10, 20, (508,369,0): 24, 11, 20, (508,370,0): 26, 10, 20, (508,371,0): 27, 11, 21, (508,372,0): 28, 13, 20, (508,373,0): 29, 12, 20, (508,374,0): 29, 12, 20, (508,375,0): 30, 13, 19, (508,376,0): 31, 14, 20, (508,377,0): 33, 14, 20, (508,378,0): 33, 14, 18, (508,379,0): 34, 13, 18, (508,380,0): 34, 14, 16, (508,381,0): 34, 14, 16, (508,382,0): 34, 14, 16, (508,383,0): 34, 13, 18, (508,384,0): 33, 14, 20, (508,385,0): 31, 14, 20, (508,386,0): 31, 14, 20, (508,387,0): 31, 14, 20, (508,388,0): 31, 14, 20, (508,389,0): 31, 14, 20, (508,390,0): 31, 14, 20, (508,391,0): 31, 14, 20, (508,392,0): 32, 15, 21, (508,393,0): 32, 15, 21, (508,394,0): 32, 15, 21, (508,395,0): 32, 15, 21, (508,396,0): 32, 15, 21, (508,397,0): 32, 15, 21, (508,398,0): 32, 15, 21, (508,399,0): 32, 15, 21, (508,400,0): 32, 15, 23, (508,401,0): 32, 15, 25, (508,402,0): 33, 16, 26, (508,403,0): 33, 16, 26, (508,404,0): 34, 17, 27, (508,405,0): 34, 17, 27, (508,406,0): 35, 18, 28, (508,407,0): 35, 18, 28, (508,408,0): 35, 18, 28, (508,409,0): 35, 18, 28, (508,410,0): 35, 18, 28, (508,411,0): 35, 18, 28, (508,412,0): 35, 18, 28, (508,413,0): 35, 18, 28, (508,414,0): 35, 18, 28, (508,415,0): 35, 18, 26, (508,416,0): 37, 22, 27, (508,417,0): 36, 24, 28, (508,418,0): 36, 24, 28, (508,419,0): 37, 25, 29, (508,420,0): 38, 25, 32, (508,421,0): 38, 25, 32, (508,422,0): 39, 26, 33, (508,423,0): 39, 26, 33, (508,424,0): 42, 26, 36, (508,425,0): 43, 27, 37, (508,426,0): 44, 28, 39, (508,427,0): 46, 30, 41, (508,428,0): 48, 32, 43, (508,429,0): 50, 34, 45, (508,430,0): 51, 35, 48, (508,431,0): 50, 37, 47, (508,432,0): 43, 30, 40, (508,433,0): 40, 29, 37, (508,434,0): 38, 27, 35, (508,435,0): 35, 24, 32, (508,436,0): 32, 21, 29, (508,437,0): 31, 20, 28, (508,438,0): 31, 18, 27, (508,439,0): 31, 18, 27, (508,440,0): 31, 15, 25, (508,441,0): 32, 16, 26, (508,442,0): 34, 17, 27, (508,443,0): 35, 18, 28, (508,444,0): 36, 19, 29, (508,445,0): 37, 20, 30, (508,446,0): 37, 20, 30, (508,447,0): 37, 20, 30, (508,448,0): 39, 19, 28, (508,449,0): 39, 20, 26, (508,450,0): 39, 20, 26, (508,451,0): 40, 21, 27, (508,452,0): 41, 22, 28, (508,453,0): 43, 24, 30, (508,454,0): 44, 25, 31, (508,455,0): 45, 26, 32, (508,456,0): 46, 25, 32, (508,457,0): 45, 24, 31, (508,458,0): 44, 23, 30, (508,459,0): 43, 22, 29, (508,460,0): 42, 21, 28, (508,461,0): 42, 21, 28, (508,462,0): 43, 22, 29, (508,463,0): 43, 22, 29, (508,464,0): 43, 24, 30, (508,465,0): 40, 21, 25, (508,466,0): 38, 19, 25, (508,467,0): 40, 19, 26, (508,468,0): 41, 20, 27, (508,469,0): 42, 19, 27, (508,470,0): 40, 17, 25, (508,471,0): 38, 15, 25, (508,472,0): 35, 12, 22, (508,473,0): 35, 13, 25, (508,474,0): 35, 15, 26, (508,475,0): 33, 16, 26, (508,476,0): 31, 15, 26, (508,477,0): 27, 14, 24, (508,478,0): 24, 12, 22, (508,479,0): 23, 11, 23, (508,480,0): 23, 6, 22, (508,481,0): 23, 5, 21, (508,482,0): 25, 2, 20, (508,483,0): 27, 3, 19, (508,484,0): 31, 2, 20, (508,485,0): 36, 5, 21, (508,486,0): 40, 8, 23, (508,487,0): 43, 9, 25, (508,488,0): 40, 6, 20, (508,489,0): 41, 8, 19, (508,490,0): 41, 10, 18, (508,491,0): 38, 8, 16, (508,492,0): 35, 6, 11, (508,493,0): 31, 4, 9, (508,494,0): 32, 5, 10, (508,495,0): 34, 8, 11, (508,496,0): 37, 7, 9, (508,497,0): 35, 3, 6, (508,498,0): 36, 1, 5, (508,499,0): 40, 3, 10, (508,500,0): 44, 7, 14, (508,501,0): 46, 9, 16, (508,502,0): 45, 8, 16, (508,503,0): 40, 7, 14, (508,504,0): 34, 4, 12, (508,505,0): 33, 6, 13, (508,506,0): 33, 7, 16, (508,507,0): 34, 8, 17, (508,508,0): 37, 10, 19, (508,509,0): 40, 10, 22, (508,510,0): 42, 10, 23, (508,511,0): 46, 10, 24, (508,512,0): 48, 6, 20, (508,513,0): 48, 8, 19, (508,514,0): 44, 13, 19, (508,515,0): 43, 16, 21, (508,516,0): 47, 18, 23, (508,517,0): 51, 18, 25, (508,518,0): 54, 17, 24, (508,519,0): 57, 17, 25, (508,520,0): 56, 20, 24, (508,521,0): 56, 15, 21, (508,522,0): 57, 10, 18, (508,523,0): 64, 11, 21, (508,524,0): 75, 15, 25, (508,525,0): 80, 20, 30, (508,526,0): 78, 25, 33, (508,527,0): 77, 24, 30, (508,528,0): 87, 26, 31, (508,529,0): 90, 28, 31, (508,530,0): 90, 31, 33, (508,531,0): 88, 32, 33, (508,532,0): 85, 34, 33, (508,533,0): 85, 34, 33, (508,534,0): 88, 32, 33, (508,535,0): 91, 31, 33, (508,536,0): 103, 37, 41, (508,537,0): 107, 36, 42, (508,538,0): 107, 32, 39, (508,539,0): 104, 29, 36, (508,540,0): 108, 35, 42, (508,541,0): 114, 45, 50, (508,542,0): 106, 41, 45, (508,543,0): 92, 30, 35, (508,544,0): 81, 21, 31, (508,545,0): 78, 17, 32, (508,546,0): 78, 17, 32, (508,547,0): 79, 18, 33, (508,548,0): 74, 13, 28, (508,549,0): 67, 9, 23, (508,550,0): 69, 13, 26, (508,551,0): 74, 20, 33, (508,552,0): 79, 25, 38, (508,553,0): 77, 25, 37, (508,554,0): 75, 25, 36, (508,555,0): 72, 25, 35, (508,556,0): 67, 24, 33, (508,557,0): 63, 23, 31, (508,558,0): 58, 23, 29, (508,559,0): 57, 22, 26, (508,560,0): 66, 27, 28, (508,561,0): 69, 27, 28, (508,562,0): 70, 24, 27, (508,563,0): 68, 19, 25, (508,564,0): 71, 18, 28, (508,565,0): 78, 22, 35, (508,566,0): 74, 20, 36, (508,567,0): 62, 15, 31, (508,568,0): 61, 22, 40, (508,569,0): 52, 20, 35, (508,570,0): 48, 14, 28, (508,571,0): 61, 13, 25, (508,572,0): 90, 14, 26, (508,573,0): 122, 18, 29, (508,574,0): 155, 19, 31, (508,575,0): 166, 25, 42, (508,576,0): 142, 25, 54, (508,577,0): 110, 17, 48, (508,578,0): 78, 8, 32, (508,579,0): 57, 10, 26, (508,580,0): 42, 14, 26, (508,581,0): 34, 17, 25, (508,582,0): 36, 19, 27, (508,583,0): 39, 22, 30, (508,584,0): 44, 22, 34, (508,585,0): 43, 21, 33, (508,586,0): 39, 21, 33, (508,587,0): 37, 21, 32, (508,588,0): 35, 22, 32, (508,589,0): 36, 23, 33, (508,590,0): 39, 23, 36, (508,591,0): 41, 23, 35, (508,592,0): 46, 26, 37, (508,593,0): 45, 25, 34, (508,594,0): 44, 25, 31, (508,595,0): 48, 25, 31, (508,596,0): 55, 24, 30, (508,597,0): 65, 22, 31, (508,598,0): 80, 18, 33, (508,599,0): 87, 19, 34, (509,0,0): 42, 67, 74, (509,1,0): 42, 67, 74, (509,2,0): 40, 65, 72, (509,3,0): 40, 65, 72, (509,4,0): 40, 65, 72, (509,5,0): 40, 65, 72, (509,6,0): 42, 67, 74, (509,7,0): 42, 67, 74, (509,8,0): 42, 67, 74, (509,9,0): 42, 67, 74, (509,10,0): 42, 67, 74, (509,11,0): 43, 68, 75, (509,12,0): 43, 68, 75, (509,13,0): 44, 69, 76, (509,14,0): 44, 69, 76, (509,15,0): 43, 70, 77, (509,16,0): 43, 70, 81, (509,17,0): 42, 70, 81, (509,18,0): 42, 70, 81, (509,19,0): 42, 70, 81, (509,20,0): 43, 70, 81, (509,21,0): 43, 70, 81, (509,22,0): 45, 69, 81, (509,23,0): 45, 69, 81, (509,24,0): 46, 70, 82, (509,25,0): 46, 70, 82, (509,26,0): 47, 69, 82, (509,27,0): 48, 70, 83, (509,28,0): 50, 69, 83, (509,29,0): 51, 70, 84, (509,30,0): 51, 70, 84, (509,31,0): 50, 72, 85, (509,32,0): 47, 74, 83, (509,33,0): 47, 76, 82, (509,34,0): 47, 76, 82, (509,35,0): 47, 76, 82, (509,36,0): 49, 76, 83, (509,37,0): 50, 77, 84, (509,38,0): 52, 77, 82, (509,39,0): 53, 76, 82, (509,40,0): 55, 76, 81, (509,41,0): 56, 77, 82, (509,42,0): 58, 77, 83, (509,43,0): 60, 78, 82, (509,44,0): 63, 78, 83, (509,45,0): 64, 79, 84, (509,46,0): 65, 80, 85, (509,47,0): 65, 80, 85, (509,48,0): 68, 82, 85, (509,49,0): 68, 82, 83, (509,50,0): 69, 83, 84, (509,51,0): 72, 84, 84, (509,52,0): 73, 84, 86, (509,53,0): 75, 85, 86, (509,54,0): 77, 85, 87, (509,55,0): 79, 85, 85, (509,56,0): 78, 84, 84, (509,57,0): 79, 83, 82, (509,58,0): 82, 83, 85, (509,59,0): 82, 84, 83, (509,60,0): 82, 82, 82, (509,61,0): 81, 81, 79, (509,62,0): 80, 80, 80, (509,63,0): 80, 78, 79, (509,64,0): 80, 78, 81, (509,65,0): 81, 76, 80, (509,66,0): 79, 74, 78, (509,67,0): 78, 73, 77, (509,68,0): 78, 72, 76, (509,69,0): 77, 71, 73, (509,70,0): 79, 70, 71, (509,71,0): 79, 70, 71, (509,72,0): 80, 70, 69, (509,73,0): 78, 68, 67, (509,74,0): 77, 66, 64, (509,75,0): 77, 63, 62, (509,76,0): 75, 61, 58, (509,77,0): 75, 61, 58, (509,78,0): 76, 61, 58, (509,79,0): 76, 61, 58, (509,80,0): 76, 62, 61, (509,81,0): 76, 62, 61, (509,82,0): 76, 62, 61, (509,83,0): 76, 62, 61, (509,84,0): 76, 62, 61, (509,85,0): 76, 62, 61, (509,86,0): 76, 62, 61, (509,87,0): 76, 62, 61, (509,88,0): 78, 64, 63, (509,89,0): 78, 64, 63, (509,90,0): 77, 63, 62, (509,91,0): 76, 62, 61, (509,92,0): 75, 61, 60, (509,93,0): 74, 60, 59, (509,94,0): 74, 60, 59, (509,95,0): 71, 60, 58, (509,96,0): 71, 59, 59, (509,97,0): 70, 60, 59, (509,98,0): 70, 60, 59, (509,99,0): 70, 60, 59, (509,100,0): 69, 61, 59, (509,101,0): 69, 61, 59, (509,102,0): 69, 61, 59, (509,103,0): 69, 61, 59, (509,104,0): 63, 58, 55, (509,105,0): 63, 58, 55, (509,106,0): 62, 58, 55, (509,107,0): 62, 58, 55, (509,108,0): 62, 58, 55, (509,109,0): 62, 58, 55, (509,110,0): 60, 59, 55, (509,111,0): 60, 59, 55, (509,112,0): 60, 56, 53, (509,113,0): 60, 56, 53, (509,114,0): 60, 56, 53, (509,115,0): 60, 56, 53, (509,116,0): 60, 56, 53, (509,117,0): 60, 56, 53, (509,118,0): 60, 56, 53, (509,119,0): 60, 56, 53, (509,120,0): 61, 57, 54, (509,121,0): 61, 57, 54, (509,122,0): 60, 56, 53, (509,123,0): 59, 55, 52, (509,124,0): 58, 54, 51, (509,125,0): 57, 53, 50, (509,126,0): 56, 52, 49, (509,127,0): 54, 53, 51, (509,128,0): 52, 52, 52, (509,129,0): 53, 53, 53, (509,130,0): 53, 53, 53, (509,131,0): 52, 52, 52, (509,132,0): 49, 49, 49, (509,133,0): 47, 47, 47, (509,134,0): 48, 48, 48, (509,135,0): 49, 49, 49, (509,136,0): 49, 49, 49, (509,137,0): 48, 48, 48, (509,138,0): 47, 47, 47, (509,139,0): 46, 46, 46, (509,140,0): 44, 44, 44, (509,141,0): 42, 42, 42, (509,142,0): 41, 41, 41, (509,143,0): 41, 41, 39, (509,144,0): 43, 39, 38, (509,145,0): 43, 39, 36, (509,146,0): 43, 39, 36, (509,147,0): 43, 39, 36, (509,148,0): 43, 39, 36, (509,149,0): 43, 39, 36, (509,150,0): 43, 39, 36, (509,151,0): 43, 39, 36, (509,152,0): 41, 37, 34, (509,153,0): 42, 38, 35, (509,154,0): 42, 38, 35, (509,155,0): 42, 38, 35, (509,156,0): 42, 38, 35, (509,157,0): 41, 37, 34, (509,158,0): 39, 35, 32, (509,159,0): 38, 34, 31, (509,160,0): 41, 36, 33, (509,161,0): 41, 36, 33, (509,162,0): 41, 36, 33, (509,163,0): 41, 36, 33, (509,164,0): 41, 36, 33, (509,165,0): 41, 36, 33, (509,166,0): 41, 36, 33, (509,167,0): 41, 36, 33, (509,168,0): 41, 36, 33, (509,169,0): 41, 36, 33, (509,170,0): 41, 36, 33, (509,171,0): 41, 36, 33, (509,172,0): 41, 36, 33, (509,173,0): 41, 36, 33, (509,174,0): 41, 36, 33, (509,175,0): 41, 36, 33, (509,176,0): 40, 36, 37, (509,177,0): 40, 36, 37, (509,178,0): 40, 36, 37, (509,179,0): 40, 36, 37, (509,180,0): 40, 36, 37, (509,181,0): 40, 36, 37, (509,182,0): 40, 36, 37, (509,183,0): 40, 36, 37, (509,184,0): 37, 33, 34, (509,185,0): 37, 33, 34, (509,186,0): 37, 33, 34, (509,187,0): 38, 34, 35, (509,188,0): 39, 35, 36, (509,189,0): 40, 36, 37, (509,190,0): 41, 37, 38, (509,191,0): 41, 36, 40, (509,192,0): 38, 33, 39, (509,193,0): 38, 33, 40, (509,194,0): 39, 34, 41, (509,195,0): 40, 35, 42, (509,196,0): 40, 35, 42, (509,197,0): 39, 34, 41, (509,198,0): 38, 33, 40, (509,199,0): 38, 33, 40, (509,200,0): 39, 34, 41, (509,201,0): 39, 34, 41, (509,202,0): 39, 34, 41, (509,203,0): 39, 34, 41, (509,204,0): 39, 34, 41, (509,205,0): 39, 34, 41, (509,206,0): 39, 34, 41, (509,207,0): 39, 34, 41, (509,208,0): 37, 31, 43, (509,209,0): 38, 32, 44, (509,210,0): 38, 32, 44, (509,211,0): 38, 32, 44, (509,212,0): 39, 33, 45, (509,213,0): 40, 34, 46, (509,214,0): 40, 34, 46, (509,215,0): 40, 34, 46, (509,216,0): 40, 34, 46, (509,217,0): 40, 34, 46, (509,218,0): 40, 34, 46, (509,219,0): 40, 34, 46, (509,220,0): 40, 34, 46, (509,221,0): 40, 34, 46, (509,222,0): 40, 34, 46, (509,223,0): 38, 35, 46, (509,224,0): 36, 34, 45, (509,225,0): 36, 34, 45, (509,226,0): 36, 34, 45, (509,227,0): 36, 34, 45, (509,228,0): 37, 34, 45, (509,229,0): 37, 34, 45, (509,230,0): 37, 34, 45, (509,231,0): 37, 34, 45, (509,232,0): 41, 35, 47, (509,233,0): 41, 35, 47, (509,234,0): 43, 35, 48, (509,235,0): 43, 35, 48, (509,236,0): 44, 36, 49, (509,237,0): 44, 36, 49, (509,238,0): 47, 36, 50, (509,239,0): 44, 38, 50, (509,240,0): 43, 41, 55, (509,241,0): 43, 42, 56, (509,242,0): 43, 43, 55, (509,243,0): 46, 44, 57, (509,244,0): 48, 44, 58, (509,245,0): 51, 45, 59, (509,246,0): 53, 45, 58, (509,247,0): 55, 44, 58, (509,248,0): 60, 46, 61, (509,249,0): 64, 48, 61, (509,250,0): 68, 50, 64, (509,251,0): 73, 52, 67, (509,252,0): 77, 55, 68, (509,253,0): 80, 56, 70, (509,254,0): 82, 55, 70, (509,255,0): 83, 56, 71, (509,256,0): 85, 57, 71, (509,257,0): 85, 57, 71, (509,258,0): 85, 57, 71, (509,259,0): 84, 56, 70, (509,260,0): 82, 56, 69, (509,261,0): 82, 56, 69, (509,262,0): 82, 56, 69, (509,263,0): 81, 55, 68, (509,264,0): 78, 54, 67, (509,265,0): 78, 54, 67, (509,266,0): 77, 55, 67, (509,267,0): 77, 55, 67, (509,268,0): 77, 55, 67, (509,269,0): 77, 55, 67, (509,270,0): 76, 56, 67, (509,271,0): 76, 56, 67, (509,272,0): 73, 55, 67, (509,273,0): 73, 55, 67, (509,274,0): 74, 56, 68, (509,275,0): 74, 56, 68, (509,276,0): 75, 57, 69, (509,277,0): 75, 57, 69, (509,278,0): 76, 58, 70, (509,279,0): 76, 58, 70, (509,280,0): 78, 60, 72, (509,281,0): 78, 60, 72, (509,282,0): 79, 61, 73, (509,283,0): 79, 61, 73, (509,284,0): 80, 62, 74, (509,285,0): 80, 62, 74, (509,286,0): 81, 63, 75, (509,287,0): 83, 63, 75, (509,288,0): 87, 60, 77, (509,289,0): 89, 60, 78, (509,290,0): 88, 61, 76, (509,291,0): 86, 62, 76, (509,292,0): 86, 64, 77, (509,293,0): 87, 65, 78, (509,294,0): 86, 66, 77, (509,295,0): 86, 66, 77, (509,296,0): 89, 69, 78, (509,297,0): 89, 69, 78, (509,298,0): 92, 69, 79, (509,299,0): 92, 69, 79, (509,300,0): 96, 69, 78, (509,301,0): 97, 70, 79, (509,302,0): 99, 69, 79, (509,303,0): 99, 69, 79, (509,304,0): 94, 67, 74, (509,305,0): 96, 69, 76, (509,306,0): 99, 72, 77, (509,307,0): 101, 72, 77, (509,308,0): 104, 72, 77, (509,309,0): 109, 72, 79, (509,310,0): 117, 75, 85, (509,311,0): 124, 78, 89, (509,312,0): 132, 78, 92, (509,313,0): 143, 82, 97, (509,314,0): 155, 87, 100, (509,315,0): 165, 92, 101, (509,316,0): 177, 98, 101, (509,317,0): 193, 110, 106, (509,318,0): 211, 124, 115, (509,319,0): 223, 139, 115, (509,320,0): 247, 170, 124, (509,321,0): 255, 195, 140, (509,322,0): 255, 212, 165, (509,323,0): 255, 212, 171, (509,324,0): 236, 197, 164, (509,325,0): 211, 181, 155, (509,326,0): 189, 166, 148, (509,327,0): 173, 155, 141, (509,328,0): 158, 141, 131, (509,329,0): 148, 131, 123, (509,330,0): 133, 112, 107, (509,331,0): 114, 93, 90, (509,332,0): 99, 75, 75, (509,333,0): 84, 59, 62, (509,334,0): 75, 48, 53, (509,335,0): 69, 42, 47, (509,336,0): 62, 37, 41, (509,337,0): 60, 35, 39, (509,338,0): 55, 33, 36, (509,339,0): 51, 29, 32, (509,340,0): 48, 25, 31, (509,341,0): 45, 22, 28, (509,342,0): 43, 22, 29, (509,343,0): 43, 22, 29, (509,344,0): 38, 19, 25, (509,345,0): 38, 19, 25, (509,346,0): 37, 17, 26, (509,347,0): 36, 16, 25, (509,348,0): 33, 16, 26, (509,349,0): 32, 15, 25, (509,350,0): 31, 14, 24, (509,351,0): 31, 14, 24, (509,352,0): 26, 10, 21, (509,353,0): 26, 10, 21, (509,354,0): 27, 11, 22, (509,355,0): 27, 11, 22, (509,356,0): 27, 11, 22, (509,357,0): 27, 11, 22, (509,358,0): 28, 12, 23, (509,359,0): 28, 12, 23, (509,360,0): 29, 13, 24, (509,361,0): 29, 13, 24, (509,362,0): 29, 13, 24, (509,363,0): 29, 13, 24, (509,364,0): 29, 13, 24, (509,365,0): 29, 13, 24, (509,366,0): 29, 13, 24, (509,367,0): 29, 13, 24, (509,368,0): 26, 10, 20, (509,369,0): 27, 11, 21, (509,370,0): 28, 11, 21, (509,371,0): 29, 12, 22, (509,372,0): 29, 12, 20, (509,373,0): 30, 13, 21, (509,374,0): 32, 13, 19, (509,375,0): 32, 13, 19, (509,376,0): 34, 15, 21, (509,377,0): 35, 14, 21, (509,378,0): 35, 14, 19, (509,379,0): 36, 13, 19, (509,380,0): 36, 14, 17, (509,381,0): 36, 14, 17, (509,382,0): 36, 14, 17, (509,383,0): 35, 15, 17, (509,384,0): 33, 14, 20, (509,385,0): 31, 14, 20, (509,386,0): 31, 14, 20, (509,387,0): 31, 14, 20, (509,388,0): 31, 14, 20, (509,389,0): 31, 14, 20, (509,390,0): 31, 14, 20, (509,391,0): 31, 14, 20, (509,392,0): 32, 15, 21, (509,393,0): 32, 15, 21, (509,394,0): 32, 15, 21, (509,395,0): 32, 15, 21, (509,396,0): 32, 15, 21, (509,397,0): 32, 15, 21, (509,398,0): 32, 15, 21, (509,399,0): 32, 15, 21, (509,400,0): 31, 14, 24, (509,401,0): 31, 14, 24, (509,402,0): 32, 15, 25, (509,403,0): 32, 15, 25, (509,404,0): 33, 16, 26, (509,405,0): 33, 16, 26, (509,406,0): 34, 17, 27, (509,407,0): 34, 17, 27, (509,408,0): 35, 18, 28, (509,409,0): 35, 18, 28, (509,410,0): 35, 18, 28, (509,411,0): 35, 18, 28, (509,412,0): 35, 18, 28, (509,413,0): 35, 18, 28, (509,414,0): 35, 18, 28, (509,415,0): 34, 19, 26, (509,416,0): 35, 22, 29, (509,417,0): 36, 24, 28, (509,418,0): 36, 24, 28, (509,419,0): 37, 25, 29, (509,420,0): 38, 25, 32, (509,421,0): 39, 26, 33, (509,422,0): 40, 27, 34, (509,423,0): 40, 27, 34, (509,424,0): 44, 28, 38, (509,425,0): 44, 28, 38, (509,426,0): 45, 29, 40, (509,427,0): 46, 30, 41, (509,428,0): 48, 32, 43, (509,429,0): 49, 33, 44, (509,430,0): 50, 34, 47, (509,431,0): 51, 35, 46, (509,432,0): 44, 31, 41, (509,433,0): 42, 31, 39, (509,434,0): 39, 28, 36, (509,435,0): 35, 24, 32, (509,436,0): 33, 22, 30, (509,437,0): 31, 20, 28, (509,438,0): 31, 18, 27, (509,439,0): 31, 18, 27, (509,440,0): 31, 15, 25, (509,441,0): 32, 16, 26, (509,442,0): 34, 17, 27, (509,443,0): 36, 19, 29, (509,444,0): 36, 19, 29, (509,445,0): 36, 19, 29, (509,446,0): 36, 19, 29, (509,447,0): 35, 18, 26, (509,448,0): 35, 18, 26, (509,449,0): 35, 18, 24, (509,450,0): 35, 18, 24, (509,451,0): 38, 19, 25, (509,452,0): 39, 20, 26, (509,453,0): 41, 22, 28, (509,454,0): 43, 24, 30, (509,455,0): 44, 25, 31, (509,456,0): 45, 24, 31, (509,457,0): 45, 24, 31, (509,458,0): 44, 23, 30, (509,459,0): 45, 22, 30, (509,460,0): 44, 21, 29, (509,461,0): 44, 21, 29, (509,462,0): 45, 19, 28, (509,463,0): 43, 20, 28, (509,464,0): 45, 24, 29, (509,465,0): 41, 22, 26, (509,466,0): 40, 19, 24, (509,467,0): 40, 19, 24, (509,468,0): 42, 19, 25, (509,469,0): 42, 19, 27, (509,470,0): 42, 16, 25, (509,471,0): 39, 13, 22, (509,472,0): 37, 11, 22, (509,473,0): 37, 14, 24, (509,474,0): 38, 16, 28, (509,475,0): 38, 18, 29, (509,476,0): 36, 19, 29, (509,477,0): 33, 17, 27, (509,478,0): 29, 16, 25, (509,479,0): 28, 15, 25, (509,480,0): 29, 11, 27, (509,481,0): 31, 8, 26, (509,482,0): 30, 5, 24, (509,483,0): 31, 4, 23, (509,484,0): 32, 3, 21, (509,485,0): 35, 4, 22, (509,486,0): 36, 5, 21, (509,487,0): 34, 6, 20, (509,488,0): 29, 3, 14, (509,489,0): 31, 5, 16, (509,490,0): 31, 8, 16, (509,491,0): 30, 9, 14, (509,492,0): 29, 6, 12, (509,493,0): 29, 7, 10, (509,494,0): 33, 8, 12, (509,495,0): 36, 10, 13, (509,496,0): 36, 6, 6, (509,497,0): 38, 4, 5, (509,498,0): 39, 3, 5, (509,499,0): 40, 4, 8, (509,500,0): 44, 5, 10, (509,501,0): 45, 5, 13, (509,502,0): 42, 7, 14, (509,503,0): 39, 6, 13, (509,504,0): 36, 6, 14, (509,505,0): 33, 8, 14, (509,506,0): 32, 9, 17, (509,507,0): 35, 9, 20, (509,508,0): 37, 9, 21, (509,509,0): 40, 9, 24, (509,510,0): 43, 9, 25, (509,511,0): 46, 8, 23, (509,512,0): 47, 5, 19, (509,513,0): 48, 8, 19, (509,514,0): 45, 14, 20, (509,515,0): 45, 18, 23, (509,516,0): 48, 19, 24, (509,517,0): 48, 17, 23, (509,518,0): 50, 13, 20, (509,519,0): 51, 11, 19, (509,520,0): 59, 20, 25, (509,521,0): 59, 18, 24, (509,522,0): 66, 16, 25, (509,523,0): 77, 21, 32, (509,524,0): 88, 28, 38, (509,525,0): 89, 29, 39, (509,526,0): 77, 24, 32, (509,527,0): 70, 17, 23, (509,528,0): 78, 16, 21, (509,529,0): 82, 20, 23, (509,530,0): 84, 25, 27, (509,531,0): 82, 31, 30, (509,532,0): 79, 34, 31, (509,533,0): 80, 35, 32, (509,534,0): 85, 35, 34, (509,535,0): 89, 35, 35, (509,536,0): 107, 45, 48, (509,537,0): 109, 40, 45, (509,538,0): 106, 33, 40, (509,539,0): 103, 30, 37, (509,540,0): 104, 35, 40, (509,541,0): 101, 39, 42, (509,542,0): 92, 36, 37, (509,543,0): 80, 28, 32, (509,544,0): 84, 28, 39, (509,545,0): 78, 22, 35, (509,546,0): 75, 19, 32, (509,547,0): 73, 19, 32, (509,548,0): 69, 17, 29, (509,549,0): 65, 13, 25, (509,550,0): 67, 17, 28, (509,551,0): 74, 24, 35, (509,552,0): 74, 24, 35, (509,553,0): 74, 24, 35, (509,554,0): 74, 24, 35, (509,555,0): 71, 25, 35, (509,556,0): 66, 25, 33, (509,557,0): 61, 24, 31, (509,558,0): 56, 24, 29, (509,559,0): 55, 23, 28, (509,560,0): 63, 24, 29, (509,561,0): 65, 24, 30, (509,562,0): 63, 20, 27, (509,563,0): 61, 15, 25, (509,564,0): 66, 16, 27, (509,565,0): 72, 22, 34, (509,566,0): 72, 21, 36, (509,567,0): 63, 16, 32, (509,568,0): 60, 19, 35, (509,569,0): 49, 15, 29, (509,570,0): 45, 13, 26, (509,571,0): 53, 13, 24, (509,572,0): 69, 13, 24, (509,573,0): 88, 12, 24, (509,574,0): 111, 13, 26, (509,575,0): 124, 19, 36, (509,576,0): 115, 19, 46, (509,577,0): 98, 15, 43, (509,578,0): 77, 14, 35, (509,579,0): 62, 15, 31, (509,580,0): 50, 18, 31, (509,581,0): 40, 17, 27, (509,582,0): 35, 15, 24, (509,583,0): 33, 13, 22, (509,584,0): 43, 23, 34, (509,585,0): 42, 22, 33, (509,586,0): 38, 22, 33, (509,587,0): 35, 22, 32, (509,588,0): 34, 22, 32, (509,589,0): 35, 23, 33, (509,590,0): 37, 23, 36, (509,591,0): 40, 24, 35, (509,592,0): 43, 26, 34, (509,593,0): 43, 24, 30, (509,594,0): 44, 25, 29, (509,595,0): 51, 24, 29, (509,596,0): 61, 21, 29, (509,597,0): 75, 19, 30, (509,598,0): 98, 21, 39, (509,599,0): 115, 28, 47, (510,0,0): 42, 67, 74, (510,1,0): 42, 67, 74, (510,2,0): 40, 65, 72, (510,3,0): 40, 65, 72, (510,4,0): 40, 65, 72, (510,5,0): 40, 65, 72, (510,6,0): 42, 67, 74, (510,7,0): 42, 67, 74, (510,8,0): 41, 66, 73, (510,9,0): 42, 67, 74, (510,10,0): 42, 67, 74, (510,11,0): 43, 68, 75, (510,12,0): 43, 68, 75, (510,13,0): 44, 69, 76, (510,14,0): 44, 69, 76, (510,15,0): 42, 69, 76, (510,16,0): 42, 69, 80, (510,17,0): 41, 69, 80, (510,18,0): 41, 69, 80, (510,19,0): 41, 69, 80, (510,20,0): 42, 69, 80, (510,21,0): 42, 69, 80, (510,22,0): 42, 69, 80, (510,23,0): 42, 69, 80, (510,24,0): 46, 70, 82, (510,25,0): 47, 71, 83, (510,26,0): 48, 70, 83, (510,27,0): 49, 71, 84, (510,28,0): 49, 71, 84, (510,29,0): 50, 72, 85, (510,30,0): 52, 71, 85, (510,31,0): 50, 72, 85, (510,32,0): 46, 75, 83, (510,33,0): 45, 75, 83, (510,34,0): 47, 76, 84, (510,35,0): 47, 76, 84, (510,36,0): 49, 76, 83, (510,37,0): 49, 76, 83, (510,38,0): 51, 76, 81, (510,39,0): 53, 76, 82, (510,40,0): 55, 75, 82, (510,41,0): 55, 76, 81, (510,42,0): 57, 76, 82, (510,43,0): 58, 77, 83, (510,44,0): 60, 78, 82, (510,45,0): 61, 79, 83, (510,46,0): 64, 79, 84, (510,47,0): 65, 80, 85, (510,48,0): 65, 80, 85, (510,49,0): 66, 81, 84, (510,50,0): 67, 82, 85, (510,51,0): 69, 83, 84, (510,52,0): 70, 84, 87, (510,53,0): 73, 84, 86, (510,54,0): 74, 85, 87, (510,55,0): 76, 86, 87, (510,56,0): 75, 83, 85, (510,57,0): 78, 84, 84, (510,58,0): 79, 84, 87, (510,59,0): 80, 84, 85, (510,60,0): 82, 83, 85, (510,61,0): 80, 82, 81, (510,62,0): 79, 80, 82, (510,63,0): 78, 78, 80, (510,64,0): 80, 78, 81, (510,65,0): 80, 78, 83, (510,66,0): 80, 78, 83, (510,67,0): 79, 77, 80, (510,68,0): 80, 75, 79, (510,69,0): 80, 74, 76, (510,70,0): 80, 71, 72, (510,71,0): 79, 70, 71, (510,72,0): 82, 72, 71, (510,73,0): 81, 71, 70, (510,74,0): 79, 68, 66, (510,75,0): 77, 66, 64, (510,76,0): 77, 63, 60, (510,77,0): 76, 62, 59, (510,78,0): 77, 62, 57, (510,79,0): 77, 62, 59, (510,80,0): 76, 62, 61, (510,81,0): 76, 62, 61, (510,82,0): 76, 62, 61, (510,83,0): 76, 62, 61, (510,84,0): 76, 62, 61, (510,85,0): 76, 62, 61, (510,86,0): 76, 62, 61, (510,87,0): 76, 62, 61, (510,88,0): 79, 65, 64, (510,89,0): 79, 65, 64, (510,90,0): 78, 64, 63, (510,91,0): 77, 63, 62, (510,92,0): 76, 62, 61, (510,93,0): 74, 60, 59, (510,94,0): 73, 59, 58, (510,95,0): 71, 60, 58, (510,96,0): 70, 58, 58, (510,97,0): 69, 59, 58, (510,98,0): 69, 59, 58, (510,99,0): 69, 59, 58, (510,100,0): 68, 60, 58, (510,101,0): 68, 60, 58, (510,102,0): 66, 61, 58, (510,103,0): 66, 61, 58, (510,104,0): 63, 58, 55, (510,105,0): 63, 58, 55, (510,106,0): 62, 58, 55, (510,107,0): 62, 58, 55, (510,108,0): 60, 59, 55, (510,109,0): 60, 59, 55, (510,110,0): 60, 59, 55, (510,111,0): 60, 59, 55, (510,112,0): 58, 57, 55, (510,113,0): 58, 57, 55, (510,114,0): 58, 57, 55, (510,115,0): 58, 57, 55, (510,116,0): 58, 57, 55, (510,117,0): 58, 57, 55, (510,118,0): 58, 57, 55, (510,119,0): 58, 57, 55, (510,120,0): 59, 58, 56, (510,121,0): 59, 58, 56, (510,122,0): 58, 57, 55, (510,123,0): 57, 56, 54, (510,124,0): 56, 55, 53, (510,125,0): 55, 54, 52, (510,126,0): 54, 53, 51, (510,127,0): 54, 53, 51, (510,128,0): 53, 53, 53, (510,129,0): 55, 55, 55, (510,130,0): 56, 56, 56, (510,131,0): 54, 54, 54, (510,132,0): 50, 50, 50, (510,133,0): 48, 48, 48, (510,134,0): 49, 49, 49, (510,135,0): 50, 50, 50, (510,136,0): 49, 49, 49, (510,137,0): 49, 49, 49, (510,138,0): 48, 48, 48, (510,139,0): 46, 46, 46, (510,140,0): 44, 44, 44, (510,141,0): 43, 43, 43, (510,142,0): 42, 42, 42, (510,143,0): 41, 41, 39, (510,144,0): 44, 40, 39, (510,145,0): 44, 40, 37, (510,146,0): 44, 40, 37, (510,147,0): 44, 40, 37, (510,148,0): 44, 40, 37, (510,149,0): 44, 40, 37, (510,150,0): 44, 40, 37, (510,151,0): 44, 40, 37, (510,152,0): 41, 37, 34, (510,153,0): 41, 37, 34, (510,154,0): 42, 38, 35, (510,155,0): 43, 39, 36, (510,156,0): 42, 38, 35, (510,157,0): 41, 37, 34, (510,158,0): 39, 35, 32, (510,159,0): 38, 34, 31, (510,160,0): 41, 36, 33, (510,161,0): 41, 36, 33, (510,162,0): 41, 36, 33, (510,163,0): 41, 36, 33, (510,164,0): 41, 36, 33, (510,165,0): 41, 36, 33, (510,166,0): 41, 36, 33, (510,167,0): 41, 36, 33, (510,168,0): 41, 36, 33, (510,169,0): 41, 36, 33, (510,170,0): 41, 36, 33, (510,171,0): 41, 36, 33, (510,172,0): 41, 36, 33, (510,173,0): 41, 36, 33, (510,174,0): 41, 36, 33, (510,175,0): 41, 36, 33, (510,176,0): 40, 36, 37, (510,177,0): 40, 36, 37, (510,178,0): 40, 36, 37, (510,179,0): 40, 36, 37, (510,180,0): 40, 36, 37, (510,181,0): 40, 36, 37, (510,182,0): 40, 36, 37, (510,183,0): 40, 36, 37, (510,184,0): 38, 34, 35, (510,185,0): 38, 34, 35, (510,186,0): 38, 34, 35, (510,187,0): 38, 34, 35, (510,188,0): 38, 34, 35, (510,189,0): 39, 35, 36, (510,190,0): 39, 35, 36, (510,191,0): 39, 34, 38, (510,192,0): 37, 32, 38, (510,193,0): 38, 33, 40, (510,194,0): 39, 34, 41, (510,195,0): 40, 35, 42, (510,196,0): 40, 35, 42, (510,197,0): 39, 34, 41, (510,198,0): 38, 33, 40, (510,199,0): 37, 32, 39, (510,200,0): 38, 33, 40, (510,201,0): 38, 33, 40, (510,202,0): 38, 33, 40, (510,203,0): 38, 33, 40, (510,204,0): 38, 33, 40, (510,205,0): 38, 33, 40, (510,206,0): 38, 33, 40, (510,207,0): 38, 33, 40, (510,208,0): 37, 31, 43, (510,209,0): 37, 31, 43, (510,210,0): 38, 32, 44, (510,211,0): 38, 32, 44, (510,212,0): 39, 33, 45, (510,213,0): 39, 33, 45, (510,214,0): 39, 33, 45, (510,215,0): 40, 34, 46, (510,216,0): 40, 34, 46, (510,217,0): 40, 34, 46, (510,218,0): 40, 34, 46, (510,219,0): 40, 34, 46, (510,220,0): 40, 34, 46, (510,221,0): 40, 34, 46, (510,222,0): 40, 34, 46, (510,223,0): 38, 35, 46, (510,224,0): 36, 34, 45, (510,225,0): 35, 35, 45, (510,226,0): 36, 34, 45, (510,227,0): 36, 34, 45, (510,228,0): 36, 34, 45, (510,229,0): 36, 34, 45, (510,230,0): 37, 34, 45, (510,231,0): 37, 34, 45, (510,232,0): 40, 34, 46, (510,233,0): 40, 34, 46, (510,234,0): 41, 35, 47, (510,235,0): 41, 35, 47, (510,236,0): 43, 35, 48, (510,237,0): 43, 35, 48, (510,238,0): 44, 36, 49, (510,239,0): 43, 37, 49, (510,240,0): 42, 41, 55, (510,241,0): 40, 42, 55, (510,242,0): 41, 43, 56, (510,243,0): 44, 43, 57, (510,244,0): 45, 43, 56, (510,245,0): 47, 43, 57, (510,246,0): 51, 43, 58, (510,247,0): 53, 42, 56, (510,248,0): 57, 43, 58, (510,249,0): 61, 44, 60, (510,250,0): 65, 47, 61, (510,251,0): 71, 50, 65, (510,252,0): 75, 52, 68, (510,253,0): 77, 54, 70, (510,254,0): 79, 55, 69, (510,255,0): 81, 54, 69, (510,256,0): 85, 57, 71, (510,257,0): 86, 55, 70, (510,258,0): 84, 56, 70, (510,259,0): 84, 56, 70, (510,260,0): 83, 55, 69, (510,261,0): 83, 55, 69, (510,262,0): 81, 55, 68, (510,263,0): 81, 55, 68, (510,264,0): 77, 53, 66, (510,265,0): 77, 53, 66, (510,266,0): 77, 53, 66, (510,267,0): 77, 53, 66, (510,268,0): 76, 54, 66, (510,269,0): 76, 54, 66, (510,270,0): 76, 54, 66, (510,271,0): 75, 55, 66, (510,272,0): 72, 54, 66, (510,273,0): 72, 54, 66, (510,274,0): 73, 55, 67, (510,275,0): 73, 55, 67, (510,276,0): 74, 56, 68, (510,277,0): 74, 56, 68, (510,278,0): 75, 57, 69, (510,279,0): 75, 57, 69, (510,280,0): 76, 58, 70, (510,281,0): 76, 58, 70, (510,282,0): 77, 59, 71, (510,283,0): 77, 59, 71, (510,284,0): 78, 60, 72, (510,285,0): 78, 60, 72, (510,286,0): 79, 61, 73, (510,287,0): 81, 61, 73, (510,288,0): 87, 60, 77, (510,289,0): 88, 59, 77, (510,290,0): 88, 61, 76, (510,291,0): 86, 62, 76, (510,292,0): 86, 64, 77, (510,293,0): 86, 64, 77, (510,294,0): 85, 65, 76, (510,295,0): 86, 66, 77, (510,296,0): 89, 69, 78, (510,297,0): 90, 70, 79, (510,298,0): 92, 69, 79, (510,299,0): 92, 69, 79, (510,300,0): 96, 69, 78, (510,301,0): 96, 69, 78, (510,302,0): 98, 68, 78, (510,303,0): 96, 69, 78, (510,304,0): 91, 65, 74, (510,305,0): 94, 69, 75, (510,306,0): 97, 72, 76, (510,307,0): 99, 72, 77, (510,308,0): 102, 71, 76, (510,309,0): 108, 73, 79, (510,310,0): 116, 76, 85, (510,311,0): 124, 78, 89, (510,312,0): 132, 78, 92, (510,313,0): 142, 81, 96, (510,314,0): 154, 86, 99, (510,315,0): 164, 91, 100, (510,316,0): 176, 97, 100, (510,317,0): 193, 110, 106, (510,318,0): 210, 126, 116, (510,319,0): 223, 141, 119, (510,320,0): 248, 174, 129, (510,321,0): 255, 199, 145, (510,322,0): 255, 217, 170, (510,323,0): 255, 213, 173, (510,324,0): 234, 198, 166, (510,325,0): 208, 180, 156, (510,326,0): 188, 167, 150, (510,327,0): 176, 158, 146, (510,328,0): 159, 142, 134, (510,329,0): 152, 135, 128, (510,330,0): 140, 119, 116, (510,331,0): 122, 101, 98, (510,332,0): 105, 81, 81, (510,333,0): 88, 62, 65, (510,334,0): 77, 48, 53, (510,335,0): 68, 41, 48, (510,336,0): 62, 37, 41, (510,337,0): 60, 35, 39, (510,338,0): 57, 32, 36, (510,339,0): 53, 28, 32, (510,340,0): 47, 24, 30, (510,341,0): 45, 22, 28, (510,342,0): 42, 21, 26, (510,343,0): 42, 21, 26, (510,344,0): 39, 18, 25, (510,345,0): 39, 18, 25, (510,346,0): 37, 17, 26, (510,347,0): 36, 16, 25, (510,348,0): 33, 16, 24, (510,349,0): 32, 15, 23, (510,350,0): 31, 14, 24, (510,351,0): 31, 14, 24, (510,352,0): 28, 12, 23, (510,353,0): 28, 12, 23, (510,354,0): 27, 11, 22, (510,355,0): 27, 11, 22, (510,356,0): 27, 11, 22, (510,357,0): 27, 11, 22, (510,358,0): 26, 10, 21, (510,359,0): 26, 10, 21, (510,360,0): 29, 13, 24, (510,361,0): 29, 13, 24, (510,362,0): 29, 13, 24, (510,363,0): 29, 13, 24, (510,364,0): 29, 13, 24, (510,365,0): 29, 13, 24, (510,366,0): 29, 13, 24, (510,367,0): 29, 13, 24, (510,368,0): 28, 11, 21, (510,369,0): 28, 11, 21, (510,370,0): 30, 10, 19, (510,371,0): 31, 11, 20, (510,372,0): 31, 11, 20, (510,373,0): 32, 12, 21, (510,374,0): 33, 12, 19, (510,375,0): 34, 13, 20, (510,376,0): 35, 14, 19, (510,377,0): 36, 13, 19, (510,378,0): 36, 13, 19, (510,379,0): 38, 13, 19, (510,380,0): 38, 13, 17, (510,381,0): 38, 13, 17, (510,382,0): 38, 13, 17, (510,383,0): 36, 14, 17, (510,384,0): 33, 14, 20, (510,385,0): 31, 14, 20, (510,386,0): 31, 14, 20, (510,387,0): 31, 14, 20, (510,388,0): 31, 14, 20, (510,389,0): 31, 14, 20, (510,390,0): 31, 14, 20, (510,391,0): 31, 14, 20, (510,392,0): 31, 14, 20, (510,393,0): 31, 14, 20, (510,394,0): 31, 14, 20, (510,395,0): 31, 14, 20, (510,396,0): 31, 14, 20, (510,397,0): 31, 14, 20, (510,398,0): 31, 14, 20, (510,399,0): 31, 14, 20, (510,400,0): 30, 13, 23, (510,401,0): 30, 13, 23, (510,402,0): 31, 14, 24, (510,403,0): 31, 14, 24, (510,404,0): 32, 15, 25, (510,405,0): 32, 15, 25, (510,406,0): 33, 16, 26, (510,407,0): 33, 16, 26, (510,408,0): 34, 17, 27, (510,409,0): 34, 17, 27, (510,410,0): 34, 17, 27, (510,411,0): 34, 17, 27, (510,412,0): 34, 17, 27, (510,413,0): 34, 17, 27, (510,414,0): 34, 17, 27, (510,415,0): 33, 18, 25, (510,416,0): 35, 22, 29, (510,417,0): 34, 23, 27, (510,418,0): 35, 24, 28, (510,419,0): 37, 26, 30, (510,420,0): 39, 26, 33, (510,421,0): 40, 27, 34, (510,422,0): 41, 28, 35, (510,423,0): 41, 28, 35, (510,424,0): 45, 29, 39, (510,425,0): 45, 29, 39, (510,426,0): 46, 30, 41, (510,427,0): 46, 30, 41, (510,428,0): 48, 30, 42, (510,429,0): 49, 31, 43, (510,430,0): 49, 31, 45, (510,431,0): 49, 33, 44, (510,432,0): 45, 32, 42, (510,433,0): 42, 31, 39, (510,434,0): 39, 28, 36, (510,435,0): 36, 25, 33, (510,436,0): 33, 22, 30, (510,437,0): 31, 20, 28, (510,438,0): 31, 18, 27, (510,439,0): 31, 18, 27, (510,440,0): 31, 15, 25, (510,441,0): 32, 16, 26, (510,442,0): 34, 17, 27, (510,443,0): 36, 19, 29, (510,444,0): 36, 19, 29, (510,445,0): 36, 19, 29, (510,446,0): 34, 17, 27, (510,447,0): 34, 17, 25, (510,448,0): 33, 18, 25, (510,449,0): 33, 18, 23, (510,450,0): 32, 17, 22, (510,451,0): 33, 16, 22, (510,452,0): 34, 17, 23, (510,453,0): 36, 19, 25, (510,454,0): 41, 22, 28, (510,455,0): 42, 23, 29, (510,456,0): 43, 22, 29, (510,457,0): 44, 21, 29, (510,458,0): 44, 21, 29, (510,459,0): 46, 20, 29, (510,460,0): 46, 20, 29, (510,461,0): 45, 19, 28, (510,462,0): 45, 18, 27, (510,463,0): 44, 18, 27, (510,464,0): 45, 24, 29, (510,465,0): 43, 23, 25, (510,466,0): 41, 19, 22, (510,467,0): 41, 19, 22, (510,468,0): 44, 19, 23, (510,469,0): 44, 19, 25, (510,470,0): 42, 15, 22, (510,471,0): 38, 13, 19, (510,472,0): 38, 12, 21, (510,473,0): 38, 15, 23, (510,474,0): 40, 19, 28, (510,475,0): 41, 21, 30, (510,476,0): 39, 22, 30, (510,477,0): 37, 22, 29, (510,478,0): 33, 20, 27, (510,479,0): 33, 17, 28, (510,480,0): 37, 14, 32, (510,481,0): 39, 11, 33, (510,482,0): 37, 8, 28, (510,483,0): 35, 6, 26, (510,484,0): 34, 3, 21, (510,485,0): 31, 2, 20, (510,486,0): 29, 2, 17, (510,487,0): 25, 3, 15, (510,488,0): 21, 1, 10, (510,489,0): 21, 4, 12, (510,490,0): 22, 7, 12, (510,491,0): 22, 7, 10, (510,492,0): 24, 5, 9, (510,493,0): 25, 4, 9, (510,494,0): 30, 5, 9, (510,495,0): 36, 7, 11, (510,496,0): 35, 3, 4, (510,497,0): 39, 5, 4, (510,498,0): 41, 5, 5, (510,499,0): 42, 3, 6, (510,500,0): 42, 1, 7, (510,501,0): 41, 2, 7, (510,502,0): 39, 4, 10, (510,503,0): 37, 6, 12, (510,504,0): 33, 6, 13, (510,505,0): 32, 7, 13, (510,506,0): 31, 8, 16, (510,507,0): 34, 8, 19, (510,508,0): 36, 8, 22, (510,509,0): 39, 6, 23, (510,510,0): 43, 6, 24, (510,511,0): 46, 5, 23, (510,512,0): 48, 4, 19, (510,513,0): 49, 7, 19, (510,514,0): 46, 13, 20, (510,515,0): 46, 17, 22, (510,516,0): 48, 17, 23, (510,517,0): 48, 15, 22, (510,518,0): 51, 11, 19, (510,519,0): 51, 10, 18, (510,520,0): 61, 20, 26, (510,521,0): 65, 22, 29, (510,522,0): 75, 24, 33, (510,523,0): 84, 26, 38, (510,524,0): 90, 28, 39, (510,525,0): 90, 28, 39, (510,526,0): 81, 28, 36, (510,527,0): 81, 26, 32, (510,528,0): 86, 23, 31, (510,529,0): 88, 26, 31, (510,530,0): 85, 30, 33, (510,531,0): 79, 33, 33, (510,532,0): 74, 34, 32, (510,533,0): 76, 36, 34, (510,534,0): 82, 38, 37, (510,535,0): 90, 40, 41, (510,536,0): 107, 48, 52, (510,537,0): 105, 38, 45, (510,538,0): 103, 32, 40, (510,539,0): 104, 33, 41, (510,540,0): 100, 35, 41, (510,541,0): 91, 35, 38, (510,542,0): 81, 33, 33, (510,543,0): 78, 32, 34, (510,544,0): 87, 31, 42, (510,545,0): 80, 22, 36, (510,546,0): 75, 19, 32, (510,547,0): 74, 22, 34, (510,548,0): 72, 22, 33, (510,549,0): 66, 19, 29, (510,550,0): 65, 19, 29, (510,551,0): 68, 22, 32, (510,552,0): 67, 20, 30, (510,553,0): 67, 21, 31, (510,554,0): 68, 22, 32, (510,555,0): 66, 23, 32, (510,556,0): 63, 23, 31, (510,557,0): 58, 23, 29, (510,558,0): 53, 24, 28, (510,559,0): 52, 21, 27, (510,560,0): 59, 17, 29, (510,561,0): 65, 18, 34, (510,562,0): 61, 19, 33, (510,563,0): 58, 18, 29, (510,564,0): 60, 20, 31, (510,565,0): 66, 24, 36, (510,566,0): 64, 22, 36, (510,567,0): 58, 16, 30, (510,568,0): 55, 19, 33, (510,569,0): 46, 14, 27, (510,570,0): 40, 14, 27, (510,571,0): 44, 18, 31, (510,572,0): 49, 17, 30, (510,573,0): 52, 14, 27, (510,574,0): 63, 15, 29, (510,575,0): 77, 19, 34, (510,576,0): 83, 13, 37, (510,577,0): 81, 13, 36, (510,578,0): 72, 15, 34, (510,579,0): 65, 18, 34, (510,580,0): 58, 22, 36, (510,581,0): 50, 22, 34, (510,582,0): 43, 20, 30, (510,583,0): 37, 17, 26, (510,584,0): 40, 23, 33, (510,585,0): 38, 22, 32, (510,586,0): 35, 22, 32, (510,587,0): 34, 22, 32, (510,588,0): 34, 22, 32, (510,589,0): 34, 22, 32, (510,590,0): 36, 22, 35, (510,591,0): 39, 23, 34, (510,592,0): 38, 21, 29, (510,593,0): 40, 21, 25, (510,594,0): 43, 23, 25, (510,595,0): 54, 23, 28, (510,596,0): 66, 19, 25, (510,597,0): 86, 18, 29, (510,598,0): 119, 28, 46, (510,599,0): 144, 42, 64, (511,0,0): 42, 67, 74, (511,1,0): 42, 67, 74, (511,2,0): 40, 65, 72, (511,3,0): 40, 65, 72, (511,4,0): 40, 65, 72, (511,5,0): 40, 65, 72, (511,6,0): 42, 67, 74, (511,7,0): 42, 67, 74, (511,8,0): 41, 66, 73, (511,9,0): 41, 66, 73, (511,10,0): 42, 67, 74, (511,11,0): 42, 67, 74, (511,12,0): 43, 68, 75, (511,13,0): 43, 68, 75, (511,14,0): 44, 69, 76, (511,15,0): 44, 69, 76, (511,16,0): 42, 69, 78, (511,17,0): 41, 70, 78, (511,18,0): 42, 69, 80, (511,19,0): 42, 69, 78, (511,20,0): 42, 69, 80, (511,21,0): 42, 69, 78, (511,22,0): 42, 69, 80, (511,23,0): 42, 69, 78, (511,24,0): 47, 71, 83, (511,25,0): 47, 71, 81, (511,26,0): 49, 71, 84, (511,27,0): 49, 71, 82, (511,28,0): 50, 72, 85, (511,29,0): 50, 72, 83, (511,30,0): 51, 73, 86, (511,31,0): 51, 73, 84, (511,32,0): 47, 74, 83, (511,33,0): 46, 75, 83, (511,34,0): 47, 74, 83, (511,35,0): 48, 75, 84, (511,36,0): 50, 75, 82, (511,37,0): 51, 76, 83, (511,38,0): 52, 75, 81, (511,39,0): 53, 76, 82, (511,40,0): 55, 75, 82, (511,41,0): 56, 75, 82, (511,42,0): 57, 76, 83, (511,43,0): 58, 77, 83, (511,44,0): 60, 77, 84, (511,45,0): 61, 78, 85, (511,46,0): 64, 79, 86, (511,47,0): 64, 79, 86, (511,48,0): 64, 79, 86, (511,49,0): 65, 80, 87, (511,50,0): 66, 81, 86, (511,51,0): 68, 81, 87, (511,52,0): 69, 82, 88, (511,53,0): 71, 84, 90, (511,54,0): 74, 85, 89, (511,55,0): 75, 84, 89, (511,56,0): 75, 83, 86, (511,57,0): 76, 84, 87, (511,58,0): 79, 84, 88, (511,59,0): 80, 85, 89, (511,60,0): 80, 84, 87, (511,61,0): 78, 82, 85, (511,62,0): 76, 80, 83, (511,63,0): 77, 78, 82, (511,64,0): 79, 78, 83, (511,65,0): 81, 79, 84, (511,66,0): 82, 80, 85, (511,67,0): 82, 80, 83, (511,68,0): 83, 78, 82, (511,69,0): 80, 76, 77, (511,70,0): 79, 73, 75, (511,71,0): 79, 70, 71, (511,72,0): 83, 74, 75, (511,73,0): 81, 73, 71, (511,74,0): 80, 70, 69, (511,75,0): 77, 67, 65, (511,76,0): 76, 65, 63, (511,77,0): 75, 64, 60, (511,78,0): 77, 63, 60, (511,79,0): 77, 63, 60, (511,80,0): 76, 62, 59, (511,81,0): 74, 63, 61, (511,82,0): 76, 62, 61, (511,83,0): 74, 63, 61, (511,84,0): 76, 62, 61, (511,85,0): 74, 63, 61, (511,86,0): 76, 62, 61, (511,87,0): 74, 63, 61, (511,88,0): 80, 66, 65, (511,89,0): 77, 66, 64, (511,90,0): 78, 64, 63, (511,91,0): 75, 64, 62, (511,92,0): 76, 62, 61, (511,93,0): 72, 61, 59, (511,94,0): 73, 59, 58, (511,95,0): 71, 60, 58, (511,96,0): 68, 60, 58, (511,97,0): 68, 60, 58, (511,98,0): 68, 60, 58, (511,99,0): 68, 60, 58, (511,100,0): 66, 61, 58, (511,101,0): 66, 61, 58, (511,102,0): 66, 61, 58, (511,103,0): 66, 61, 58, (511,104,0): 62, 57, 54, (511,105,0): 62, 57, 54, (511,106,0): 62, 58, 55, (511,107,0): 62, 58, 55, (511,108,0): 62, 58, 55, (511,109,0): 60, 59, 55, (511,110,0): 63, 59, 56, (511,111,0): 61, 60, 56, (511,112,0): 58, 57, 55, (511,113,0): 58, 57, 55, (511,114,0): 58, 57, 55, (511,115,0): 58, 57, 55, (511,116,0): 58, 57, 55, (511,117,0): 58, 57, 55, (511,118,0): 58, 57, 55, (511,119,0): 58, 57, 55, (511,120,0): 60, 59, 57, (511,121,0): 59, 58, 56, (511,122,0): 58, 57, 55, (511,123,0): 56, 56, 54, (511,124,0): 56, 54, 55, (511,125,0): 54, 54, 52, (511,126,0): 54, 54, 54, (511,127,0): 53, 53, 53, (511,128,0): 53, 55, 54, (511,129,0): 55, 56, 58, (511,130,0): 56, 57, 59, (511,131,0): 54, 55, 57, (511,132,0): 49, 50, 52, (511,133,0): 47, 49, 48, (511,134,0): 48, 49, 51, (511,135,0): 51, 51, 51, (511,136,0): 50, 50, 50, (511,137,0): 49, 49, 49, (511,138,0): 48, 48, 48, (511,139,0): 46, 46, 46, (511,140,0): 45, 45, 45, (511,141,0): 43, 43, 43, (511,142,0): 42, 42, 42, (511,143,0): 42, 41, 39, (511,144,0): 44, 40, 37, (511,145,0): 44, 41, 36, (511,146,0): 45, 40, 37, (511,147,0): 44, 41, 36, (511,148,0): 45, 40, 37, (511,149,0): 44, 41, 36, (511,150,0): 45, 40, 37, (511,151,0): 44, 41, 36, (511,152,0): 41, 36, 33, (511,153,0): 41, 38, 33, (511,154,0): 44, 39, 36, (511,155,0): 43, 40, 35, (511,156,0): 44, 39, 36, (511,157,0): 41, 38, 33, (511,158,0): 40, 35, 32, (511,159,0): 39, 34, 31, (511,160,0): 41, 36, 33, (511,161,0): 41, 36, 33, (511,162,0): 41, 36, 33, (511,163,0): 41, 36, 33, (511,164,0): 41, 36, 33, (511,165,0): 41, 36, 33, (511,166,0): 41, 36, 33, (511,167,0): 41, 36, 33, (511,168,0): 41, 36, 33, (511,169,0): 41, 36, 33, (511,170,0): 41, 36, 33, (511,171,0): 41, 36, 33, (511,172,0): 41, 36, 33, (511,173,0): 41, 36, 33, (511,174,0): 41, 36, 33, (511,175,0): 41, 36, 33, (511,176,0): 40, 36, 37, (511,177,0): 40, 36, 37, (511,178,0): 40, 36, 37, (511,179,0): 40, 36, 37, (511,180,0): 40, 36, 37, (511,181,0): 40, 36, 37, (511,182,0): 40, 36, 37, (511,183,0): 40, 36, 37, (511,184,0): 39, 35, 36, (511,185,0): 39, 35, 36, (511,186,0): 38, 34, 35, (511,187,0): 38, 34, 35, (511,188,0): 38, 34, 35, (511,189,0): 38, 34, 35, (511,190,0): 38, 34, 35, (511,191,0): 37, 32, 36, (511,192,0): 36, 31, 37, (511,193,0): 37, 32, 39, (511,194,0): 39, 34, 41, (511,195,0): 40, 35, 42, (511,196,0): 40, 35, 42, (511,197,0): 39, 34, 41, (511,198,0): 37, 32, 39, (511,199,0): 36, 31, 38, (511,200,0): 38, 33, 40, (511,201,0): 38, 33, 40, (511,202,0): 38, 33, 40, (511,203,0): 38, 33, 40, (511,204,0): 38, 33, 40, (511,205,0): 38, 33, 40, (511,206,0): 38, 33, 40, (511,207,0): 38, 33, 40, (511,208,0): 37, 31, 41, (511,209,0): 35, 32, 41, (511,210,0): 37, 31, 41, (511,211,0): 36, 33, 42, (511,212,0): 38, 32, 42, (511,213,0): 37, 34, 43, (511,214,0): 39, 33, 43, (511,215,0): 38, 35, 44, (511,216,0): 40, 34, 44, (511,217,0): 38, 35, 44, (511,218,0): 40, 34, 44, (511,219,0): 38, 35, 44, (511,220,0): 40, 34, 44, (511,221,0): 38, 35, 44, (511,222,0): 40, 34, 44, (511,223,0): 38, 35, 44, (511,224,0): 35, 34, 42, (511,225,0): 34, 34, 42, (511,226,0): 35, 33, 44, (511,227,0): 35, 34, 42, (511,228,0): 35, 33, 44, (511,229,0): 35, 34, 42, (511,230,0): 36, 33, 44, (511,231,0): 36, 33, 42, (511,232,0): 38, 35, 46, (511,233,0): 38, 35, 44, (511,234,0): 40, 34, 46, (511,235,0): 41, 35, 45, (511,236,0): 41, 35, 47, (511,237,0): 42, 36, 46, (511,238,0): 42, 36, 48, (511,239,0): 41, 38, 49, (511,240,0): 41, 41, 53, (511,241,0): 40, 42, 54, (511,242,0): 42, 41, 55, (511,243,0): 43, 43, 55, (511,244,0): 45, 43, 56, (511,245,0): 46, 42, 56, (511,246,0): 49, 43, 57, (511,247,0): 52, 41, 57, (511,248,0): 55, 42, 59, (511,249,0): 57, 43, 58, (511,250,0): 63, 46, 62, (511,251,0): 67, 49, 65, (511,252,0): 70, 52, 68, (511,253,0): 74, 53, 70, (511,254,0): 76, 55, 70, (511,255,0): 77, 54, 70, (511,256,0): 84, 57, 72, (511,257,0): 84, 56, 71, (511,258,0): 84, 56, 71, (511,259,0): 83, 55, 70, (511,260,0): 83, 55, 70, (511,261,0): 82, 54, 68, (511,262,0): 82, 54, 68, (511,263,0): 81, 55, 68, (511,264,0): 79, 53, 66, (511,265,0): 79, 53, 66, (511,266,0): 79, 53, 66, (511,267,0): 77, 53, 66, (511,268,0): 77, 53, 66, (511,269,0): 76, 54, 66, (511,270,0): 76, 54, 66, (511,271,0): 75, 55, 66, (511,272,0): 72, 54, 66, (511,273,0): 71, 55, 66, (511,274,0): 71, 55, 68, (511,275,0): 72, 56, 67, (511,276,0): 72, 56, 69, (511,277,0): 73, 57, 68, (511,278,0): 73, 57, 70, (511,279,0): 74, 58, 69, (511,280,0): 74, 58, 71, (511,281,0): 74, 58, 69, (511,282,0): 75, 59, 72, (511,283,0): 75, 59, 70, (511,284,0): 77, 59, 73, (511,285,0): 77, 59, 71, (511,286,0): 78, 60, 74, (511,287,0): 80, 59, 74, (511,288,0): 85, 61, 77, (511,289,0): 87, 60, 77, (511,290,0): 85, 61, 77, (511,291,0): 86, 62, 76, (511,292,0): 85, 62, 78, (511,293,0): 85, 65, 77, (511,294,0): 85, 65, 77, (511,295,0): 86, 66, 77, (511,296,0): 90, 70, 81, (511,297,0): 91, 70, 79, (511,298,0): 92, 69, 79, (511,299,0): 92, 69, 79, (511,300,0): 94, 68, 79, (511,301,0): 95, 68, 77, (511,302,0): 96, 68, 80, (511,303,0): 96, 68, 80, (511,304,0): 91, 65, 76, (511,305,0): 93, 67, 76, (511,306,0): 96, 71, 77, (511,307,0): 98, 71, 76, (511,308,0): 102, 71, 76, (511,309,0): 105, 73, 78, (511,310,0): 115, 75, 83, (511,311,0): 122, 79, 88, (511,312,0): 130, 78, 90, (511,313,0): 140, 82, 94, (511,314,0): 153, 87, 97, (511,315,0): 163, 92, 100, (511,316,0): 174, 98, 100, (511,317,0): 191, 110, 107, (511,318,0): 210, 127, 119, (511,319,0): 223, 142, 121, (511,320,0): 247, 174, 131, (511,321,0): 255, 200, 147, (511,322,0): 255, 218, 171, (511,323,0): 255, 214, 174, (511,324,0): 235, 196, 165, (511,325,0): 210, 180, 156, (511,326,0): 191, 168, 150, (511,327,0): 179, 160, 146, (511,328,0): 163, 145, 135, (511,329,0): 156, 139, 131, (511,330,0): 144, 125, 119, (511,331,0): 128, 107, 102, (511,332,0): 109, 85, 85, (511,333,0): 90, 64, 65, (511,334,0): 75, 49, 52, (511,335,0): 67, 40, 45, (511,336,0): 60, 38, 41, (511,337,0): 58, 36, 39, (511,338,0): 55, 32, 38, (511,339,0): 50, 27, 33, (511,340,0): 46, 25, 30, (511,341,0): 43, 22, 27, (511,342,0): 41, 22, 28, (511,343,0): 40, 21, 27, (511,344,0): 39, 20, 26, (511,345,0): 38, 18, 27, (511,346,0): 37, 17, 26, (511,347,0): 34, 17, 25, (511,348,0): 33, 16, 26, (511,349,0): 32, 15, 25, (511,350,0): 32, 15, 25, (511,351,0): 31, 13, 25, (511,352,0): 29, 13, 24, (511,353,0): 29, 13, 24, (511,354,0): 28, 12, 23, (511,355,0): 27, 11, 22, (511,356,0): 27, 11, 22, (511,357,0): 26, 10, 21, (511,358,0): 25, 9, 20, (511,359,0): 25, 9, 20, (511,360,0): 30, 14, 25, (511,361,0): 30, 14, 25, (511,362,0): 30, 14, 25, (511,363,0): 30, 14, 25, (511,364,0): 30, 14, 25, (511,365,0): 30, 14, 25, (511,366,0): 30, 14, 25, (511,367,0): 30, 14, 25, (511,368,0): 28, 11, 21, (511,369,0): 28, 11, 21, (511,370,0): 31, 11, 20, (511,371,0): 29, 12, 20, (511,372,0): 32, 12, 21, (511,373,0): 32, 12, 21, (511,374,0): 33, 13, 22, (511,375,0): 33, 14, 20, (511,376,0): 35, 14, 21, (511,377,0): 35, 14, 21, (511,378,0): 36, 13, 21, (511,379,0): 36, 13, 21, (511,380,0): 36, 13, 19, (511,381,0): 36, 13, 19, (511,382,0): 36, 13, 19, (511,383,0): 35, 14, 19, (511,384,0): 33, 14, 20, (511,385,0): 31, 14, 22, (511,386,0): 31, 14, 22, (511,387,0): 31, 14, 22, (511,388,0): 31, 14, 22, (511,389,0): 31, 14, 20, (511,390,0): 31, 14, 22, (511,391,0): 31, 14, 20, (511,392,0): 31, 14, 20, (511,393,0): 31, 14, 20, (511,394,0): 31, 14, 20, (511,395,0): 31, 14, 20, (511,396,0): 31, 14, 20, (511,397,0): 31, 14, 20, (511,398,0): 31, 14, 20, (511,399,0): 31, 14, 20, (511,400,0): 30, 13, 21, (511,401,0): 30, 13, 21, (511,402,0): 30, 13, 23, (511,403,0): 31, 14, 22, (511,404,0): 31, 14, 24, (511,405,0): 32, 15, 23, (511,406,0): 32, 15, 25, (511,407,0): 33, 16, 24, (511,408,0): 34, 17, 27, (511,409,0): 34, 17, 25, (511,410,0): 34, 17, 27, (511,411,0): 34, 17, 25, (511,412,0): 34, 17, 27, (511,413,0): 34, 17, 25, (511,414,0): 34, 17, 27, (511,415,0): 33, 18, 25, (511,416,0): 35, 23, 27, (511,417,0): 34, 23, 27, (511,418,0): 36, 24, 28, (511,419,0): 38, 26, 30, (511,420,0): 39, 26, 33, (511,421,0): 40, 27, 34, (511,422,0): 41, 28, 35, (511,423,0): 42, 29, 36, (511,424,0): 46, 31, 38, (511,425,0): 46, 30, 40, (511,426,0): 46, 30, 40, (511,427,0): 46, 30, 40, (511,428,0): 48, 31, 41, (511,429,0): 48, 31, 41, (511,430,0): 48, 30, 42, (511,431,0): 47, 31, 41, (511,432,0): 48, 32, 42, (511,433,0): 44, 31, 38, (511,434,0): 41, 28, 35, (511,435,0): 37, 24, 31, (511,436,0): 34, 21, 28, (511,437,0): 32, 19, 26, (511,438,0): 33, 18, 25, (511,439,0): 32, 17, 24, (511,440,0): 31, 14, 22, (511,441,0): 33, 16, 24, (511,442,0): 35, 18, 26, (511,443,0): 36, 19, 27, (511,444,0): 38, 18, 27, (511,445,0): 35, 18, 26, (511,446,0): 36, 16, 25, (511,447,0): 33, 16, 24, (511,448,0): 33, 18, 23, (511,449,0): 32, 17, 22, (511,450,0): 31, 16, 21, (511,451,0): 31, 16, 21, (511,452,0): 32, 17, 22, (511,453,0): 35, 18, 24, (511,454,0): 37, 20, 26, (511,455,0): 41, 22, 28, (511,456,0): 41, 22, 28, (511,457,0): 42, 21, 28, (511,458,0): 43, 22, 29, (511,459,0): 44, 21, 29, (511,460,0): 43, 20, 28, (511,461,0): 42, 19, 27, (511,462,0): 41, 18, 26, (511,463,0): 40, 17, 23, (511,464,0): 46, 23, 29, (511,465,0): 44, 22, 25, (511,466,0): 41, 19, 22, (511,467,0): 42, 17, 21, (511,468,0): 43, 18, 22, (511,469,0): 43, 18, 22, (511,470,0): 40, 15, 21, (511,471,0): 38, 13, 19, (511,472,0): 39, 14, 20, (511,473,0): 39, 16, 24, (511,474,0): 42, 19, 27, (511,475,0): 45, 22, 30, (511,476,0): 45, 24, 31, (511,477,0): 43, 22, 29, (511,478,0): 40, 21, 27, (511,479,0): 39, 18, 27, (511,480,0): 44, 17, 32, (511,481,0): 43, 14, 32, (511,482,0): 42, 11, 29, (511,483,0): 38, 7, 25, (511,484,0): 34, 3, 19, (511,485,0): 28, 1, 16, (511,486,0): 23, 1, 14, (511,487,0): 21, 1, 12, (511,488,0): 15, 0, 9, (511,489,0): 16, 3, 10, (511,490,0): 18, 5, 12, (511,491,0): 17, 4, 11, (511,492,0): 18, 1, 7, (511,493,0): 21, 0, 7, (511,494,0): 24, 1, 9, (511,495,0): 29, 2, 7, (511,496,0): 34, 4, 6, (511,497,0): 37, 5, 6, (511,498,0): 41, 6, 10, (511,499,0): 40, 5, 9, (511,500,0): 38, 1, 8, (511,501,0): 36, 0, 6, (511,502,0): 35, 2, 9, (511,503,0): 37, 6, 12, (511,504,0): 31, 4, 11, (511,505,0): 31, 5, 14, (511,506,0): 31, 5, 16, (511,507,0): 33, 5, 17, (511,508,0): 36, 5, 20, (511,509,0): 37, 5, 20, (511,510,0): 41, 4, 22, (511,511,0): 44, 3, 19, (511,512,0): 46, 2, 15, (511,513,0): 47, 5, 15, (511,514,0): 45, 10, 17, (511,515,0): 45, 13, 18, (511,516,0): 47, 15, 20, (511,517,0): 51, 14, 21, (511,518,0): 55, 14, 22, (511,519,0): 56, 13, 20, (511,520,0): 58, 15, 22, (511,521,0): 64, 17, 23, (511,522,0): 70, 17, 25, (511,523,0): 71, 14, 23, (511,524,0): 72, 10, 21, (511,525,0): 75, 14, 22, (511,526,0): 80, 25, 31, (511,527,0): 89, 32, 39, (511,528,0): 95, 32, 40, (511,529,0): 94, 33, 40, (511,530,0): 87, 32, 37, (511,531,0): 76, 30, 32, (511,532,0): 67, 27, 27, (511,533,0): 66, 28, 27, (511,534,0): 72, 32, 32, (511,535,0): 80, 34, 36, (511,536,0): 98, 46, 50, (511,537,0): 94, 35, 41, (511,538,0): 93, 30, 38, (511,539,0): 98, 35, 43, (511,540,0): 97, 38, 44, (511,541,0): 85, 35, 38, (511,542,0): 79, 35, 36, (511,543,0): 83, 38, 41, (511,544,0): 81, 30, 39, (511,545,0): 74, 20, 33, (511,546,0): 69, 17, 29, (511,547,0): 70, 23, 33, (511,548,0): 70, 24, 34, (511,549,0): 63, 20, 29, (511,550,0): 59, 18, 26, (511,551,0): 59, 18, 26, (511,552,0): 60, 17, 26, (511,553,0): 61, 18, 27, (511,554,0): 61, 20, 28, (511,555,0): 61, 21, 29, (511,556,0): 59, 22, 29, (511,557,0): 54, 22, 27, (511,558,0): 51, 22, 26, (511,559,0): 50, 19, 25, (511,560,0): 55, 12, 29, (511,561,0): 59, 16, 35, (511,562,0): 58, 20, 35, (511,563,0): 56, 20, 34, (511,564,0): 57, 23, 37, (511,565,0): 61, 28, 39, (511,566,0): 59, 23, 37, (511,567,0): 51, 15, 29, (511,568,0): 54, 22, 35, (511,569,0): 45, 17, 31, (511,570,0): 41, 17, 30, (511,571,0): 42, 22, 34, (511,572,0): 40, 20, 32, (511,573,0): 34, 14, 26, (511,574,0): 36, 12, 26, (511,575,0): 48, 16, 31, (511,576,0): 57, 10, 28, (511,577,0): 63, 10, 28, (511,578,0): 65, 14, 31, (511,579,0): 66, 19, 35, (511,580,0): 67, 25, 39, (511,581,0): 66, 28, 41, (511,582,0): 59, 27, 38, (511,583,0): 52, 25, 34, (511,584,0): 43, 22, 29, (511,585,0): 39, 22, 30, (511,586,0): 35, 22, 29, (511,587,0): 33, 22, 30, (511,588,0): 33, 22, 30, (511,589,0): 34, 22, 32, (511,590,0): 36, 23, 33, (511,591,0): 39, 23, 34, (511,592,0): 34, 17, 25, (511,593,0): 36, 17, 21, (511,594,0): 42, 19, 25, (511,595,0): 55, 23, 28, (511,596,0): 71, 18, 28, (511,597,0): 92, 18, 33, (511,598,0): 131, 32, 53, (511,599,0): 162, 52, 77, (512,0,0): 41, 66, 73, (512,1,0): 41, 66, 73, (512,2,0): 41, 66, 73, (512,3,0): 41, 66, 73, (512,4,0): 41, 66, 73, (512,5,0): 41, 66, 73, (512,6,0): 41, 66, 73, (512,7,0): 41, 66, 73, (512,8,0): 41, 66, 73, (512,9,0): 41, 66, 73, (512,10,0): 42, 67, 74, (512,11,0): 42, 67, 74, (512,12,0): 43, 68, 75, (512,13,0): 43, 68, 75, (512,14,0): 44, 69, 76, (512,15,0): 44, 69, 76, (512,16,0): 44, 69, 76, (512,17,0): 42, 69, 76, (512,18,0): 44, 68, 78, (512,19,0): 44, 69, 76, (512,20,0): 44, 68, 78, (512,21,0): 44, 69, 76, (512,22,0): 44, 68, 78, (512,23,0): 44, 69, 76, (512,24,0): 47, 71, 81, (512,25,0): 47, 72, 79, (512,26,0): 48, 72, 82, (512,27,0): 48, 73, 80, (512,28,0): 49, 73, 83, (512,29,0): 49, 74, 81, (512,30,0): 50, 74, 84, (512,31,0): 50, 75, 82, (512,32,0): 49, 74, 81, (512,33,0): 49, 74, 81, (512,34,0): 50, 73, 81, (512,35,0): 51, 74, 82, (512,36,0): 51, 74, 82, (512,37,0): 52, 75, 83, (512,38,0): 54, 74, 83, (512,39,0): 56, 74, 84, (512,40,0): 56, 74, 84, (512,41,0): 57, 74, 84, (512,42,0): 57, 74, 84, (512,43,0): 58, 75, 83, (512,44,0): 60, 74, 83, (512,45,0): 61, 75, 84, (512,46,0): 61, 75, 84, (512,47,0): 62, 76, 85, (512,48,0): 64, 78, 87, (512,49,0): 66, 79, 88, (512,50,0): 66, 79, 88, (512,51,0): 69, 79, 89, (512,52,0): 69, 79, 89, (512,53,0): 70, 80, 90, (512,54,0): 71, 80, 89, (512,55,0): 71, 80, 89, (512,56,0): 74, 81, 89, (512,57,0): 74, 81, 89, (512,58,0): 75, 82, 88, (512,59,0): 75, 82, 88, (512,60,0): 78, 83, 89, (512,61,0): 78, 83, 89, (512,62,0): 79, 84, 90, (512,63,0): 80, 83, 88, (512,64,0): 82, 81, 86, (512,65,0): 82, 82, 84, (512,66,0): 82, 82, 84, (512,67,0): 82, 82, 84, (512,68,0): 83, 81, 84, (512,69,0): 84, 80, 81, (512,70,0): 84, 80, 81, (512,71,0): 85, 79, 79, (512,72,0): 84, 78, 78, (512,73,0): 83, 78, 75, (512,74,0): 83, 75, 73, (512,75,0): 82, 74, 72, (512,76,0): 81, 71, 70, (512,77,0): 79, 69, 67, (512,78,0): 77, 67, 65, (512,79,0): 77, 68, 63, (512,80,0): 76, 67, 62, (512,81,0): 75, 66, 61, (512,82,0): 76, 65, 61, (512,83,0): 75, 66, 61, (512,84,0): 75, 64, 60, (512,85,0): 73, 64, 59, (512,86,0): 74, 63, 59, (512,87,0): 73, 64, 59, (512,88,0): 81, 70, 66, (512,89,0): 80, 71, 66, (512,90,0): 79, 68, 64, (512,91,0): 76, 67, 62, (512,92,0): 75, 64, 60, (512,93,0): 73, 64, 59, (512,94,0): 72, 61, 57, (512,95,0): 69, 61, 58, (512,96,0): 69, 65, 62, (512,97,0): 67, 66, 62, (512,98,0): 68, 67, 63, (512,99,0): 68, 67, 63, (512,100,0): 69, 65, 62, (512,101,0): 68, 64, 61, (512,102,0): 66, 62, 59, (512,103,0): 65, 61, 58, (512,104,0): 64, 60, 57, (512,105,0): 63, 59, 56, (512,106,0): 63, 59, 56, (512,107,0): 62, 58, 55, (512,108,0): 62, 58, 55, (512,109,0): 61, 57, 54, (512,110,0): 62, 57, 54, (512,111,0): 61, 57, 54, (512,112,0): 64, 60, 57, (512,113,0): 64, 60, 57, (512,114,0): 64, 60, 57, (512,115,0): 64, 60, 57, (512,116,0): 62, 61, 57, (512,117,0): 62, 61, 57, (512,118,0): 62, 61, 59, (512,119,0): 62, 61, 59, (512,120,0): 59, 59, 59, (512,121,0): 59, 59, 59, (512,122,0): 60, 60, 60, (512,123,0): 59, 61, 60, (512,124,0): 59, 59, 61, (512,125,0): 56, 58, 57, (512,126,0): 54, 55, 57, (512,127,0): 51, 55, 56, (512,128,0): 50, 55, 58, (512,129,0): 50, 55, 58, (512,130,0): 51, 55, 58, (512,131,0): 51, 55, 58, (512,132,0): 50, 54, 57, (512,133,0): 50, 54, 55, (512,134,0): 50, 54, 57, (512,135,0): 52, 53, 55, (512,136,0): 48, 49, 51, (512,137,0): 48, 49, 51, (512,138,0): 47, 49, 48, (512,139,0): 47, 49, 48, (512,140,0): 47, 47, 47, (512,141,0): 47, 47, 47, (512,142,0): 46, 46, 44, (512,143,0): 47, 46, 44, (512,144,0): 50, 45, 41, (512,145,0): 49, 44, 38, (512,146,0): 50, 42, 39, (512,147,0): 47, 42, 36, (512,148,0): 49, 41, 38, (512,149,0): 47, 42, 36, (512,150,0): 50, 42, 39, (512,151,0): 49, 44, 38, (512,152,0): 46, 38, 35, (512,153,0): 44, 39, 33, (512,154,0): 46, 38, 35, (512,155,0): 44, 39, 33, (512,156,0): 46, 38, 35, (512,157,0): 44, 39, 33, (512,158,0): 46, 38, 35, (512,159,0): 44, 39, 35, (512,160,0): 42, 37, 34, (512,161,0): 41, 37, 34, (512,162,0): 41, 37, 34, (512,163,0): 41, 37, 34, (512,164,0): 41, 37, 34, (512,165,0): 41, 37, 34, (512,166,0): 41, 37, 34, (512,167,0): 41, 37, 34, (512,168,0): 41, 37, 34, (512,169,0): 41, 37, 34, (512,170,0): 40, 36, 33, (512,171,0): 40, 36, 33, (512,172,0): 39, 35, 32, (512,173,0): 39, 35, 32, (512,174,0): 38, 34, 31, (512,175,0): 38, 34, 31, (512,176,0): 40, 36, 37, (512,177,0): 40, 36, 37, (512,178,0): 40, 36, 37, (512,179,0): 40, 36, 37, (512,180,0): 40, 36, 37, (512,181,0): 40, 36, 37, (512,182,0): 40, 36, 37, (512,183,0): 40, 36, 37, (512,184,0): 38, 34, 35, (512,185,0): 38, 34, 35, (512,186,0): 38, 34, 35, (512,187,0): 38, 34, 35, (512,188,0): 38, 34, 35, (512,189,0): 38, 34, 35, (512,190,0): 38, 34, 35, (512,191,0): 38, 33, 37, (512,192,0): 39, 34, 40, (512,193,0): 39, 34, 40, (512,194,0): 39, 34, 40, (512,195,0): 39, 34, 40, (512,196,0): 39, 34, 40, (512,197,0): 39, 34, 40, (512,198,0): 39, 34, 40, (512,199,0): 39, 34, 40, (512,200,0): 39, 34, 40, (512,201,0): 39, 34, 40, (512,202,0): 39, 34, 40, (512,203,0): 39, 34, 40, (512,204,0): 39, 34, 40, (512,205,0): 39, 34, 40, (512,206,0): 39, 34, 40, (512,207,0): 39, 34, 40, (512,208,0): 37, 34, 41, (512,209,0): 36, 35, 41, (512,210,0): 37, 34, 41, (512,211,0): 36, 35, 41, (512,212,0): 37, 34, 41, (512,213,0): 36, 35, 41, (512,214,0): 37, 34, 41, (512,215,0): 36, 35, 41, (512,216,0): 36, 33, 40, (512,217,0): 35, 34, 40, (512,218,0): 36, 33, 40, (512,219,0): 35, 34, 40, (512,220,0): 36, 33, 40, (512,221,0): 35, 34, 40, (512,222,0): 36, 33, 40, (512,223,0): 35, 34, 40, (512,224,0): 36, 35, 41, (512,225,0): 36, 35, 41, (512,226,0): 36, 35, 43, (512,227,0): 36, 35, 41, (512,228,0): 36, 35, 43, (512,229,0): 36, 35, 41, (512,230,0): 36, 35, 43, (512,231,0): 36, 35, 41, (512,232,0): 36, 35, 43, (512,233,0): 36, 35, 41, (512,234,0): 37, 34, 43, (512,235,0): 37, 34, 41, (512,236,0): 37, 34, 43, (512,237,0): 37, 34, 41, (512,238,0): 37, 34, 43, (512,239,0): 37, 34, 43, (512,240,0): 40, 37, 48, (512,241,0): 41, 38, 49, (512,242,0): 41, 37, 51, (512,243,0): 42, 39, 50, (512,244,0): 42, 39, 50, (512,245,0): 45, 39, 51, (512,246,0): 46, 38, 53, (512,247,0): 46, 38, 53, (512,248,0): 54, 43, 59, (512,249,0): 55, 42, 60, (512,250,0): 57, 44, 62, (512,251,0): 61, 46, 65, (512,252,0): 63, 48, 67, (512,253,0): 65, 50, 69, (512,254,0): 67, 52, 71, (512,255,0): 71, 52, 71, (512,256,0): 78, 55, 73, (512,257,0): 80, 56, 72, (512,258,0): 82, 58, 74, (512,259,0): 85, 58, 75, (512,260,0): 86, 57, 75, (512,261,0): 83, 55, 70, (512,262,0): 79, 51, 66, (512,263,0): 77, 49, 64, (512,264,0): 77, 49, 64, (512,265,0): 78, 50, 65, (512,266,0): 80, 52, 66, (512,267,0): 81, 55, 68, (512,268,0): 79, 56, 66, (512,269,0): 78, 55, 65, (512,270,0): 76, 55, 64, (512,271,0): 74, 54, 65, (512,272,0): 70, 56, 69, (512,273,0): 68, 58, 69, (512,274,0): 68, 57, 71, (512,275,0): 68, 58, 69, (512,276,0): 69, 57, 71, (512,277,0): 69, 57, 69, (512,278,0): 69, 57, 71, (512,279,0): 69, 57, 69, (512,280,0): 74, 60, 75, (512,281,0): 74, 60, 73, (512,282,0): 74, 60, 75, (512,283,0): 73, 59, 72, (512,284,0): 75, 58, 74, (512,285,0): 74, 58, 71, (512,286,0): 74, 57, 73, (512,287,0): 74, 56, 72, (512,288,0): 83, 62, 79, (512,289,0): 83, 62, 79, (512,290,0): 83, 62, 79, (512,291,0): 84, 63, 78, (512,292,0): 84, 63, 80, (512,293,0): 85, 64, 79, (512,294,0): 85, 64, 79, (512,295,0): 85, 65, 77, (512,296,0): 89, 67, 80, (512,297,0): 90, 68, 80, (512,298,0): 91, 67, 80, (512,299,0): 91, 67, 80, (512,300,0): 92, 68, 81, (512,301,0): 94, 68, 79, (512,302,0): 95, 69, 82, (512,303,0): 95, 69, 82, (512,304,0): 96, 70, 83, (512,305,0): 99, 71, 85, (512,306,0): 100, 73, 82, (512,307,0): 101, 71, 79, (512,308,0): 100, 69, 74, (512,309,0): 104, 69, 73, (512,310,0): 108, 72, 76, (512,311,0): 115, 72, 79, (512,312,0): 126, 76, 85, (512,313,0): 135, 79, 88, (512,314,0): 146, 85, 92, (512,315,0): 155, 89, 93, (512,316,0): 167, 95, 96, (512,317,0): 182, 107, 102, (512,318,0): 202, 123, 116, (512,319,0): 214, 137, 117, (512,320,0): 237, 168, 126, (512,321,0): 255, 197, 146, (512,322,0): 255, 214, 170, (512,323,0): 255, 210, 173, (512,324,0): 240, 195, 166, (512,325,0): 221, 185, 163, (512,326,0): 199, 170, 154, (512,327,0): 181, 158, 144, (512,328,0): 171, 153, 139, (512,329,0): 161, 145, 132, (512,330,0): 145, 128, 118, (512,331,0): 125, 108, 98, (512,332,0): 105, 86, 80, (512,333,0): 87, 66, 61, (512,334,0): 75, 51, 49, (512,335,0): 66, 45, 44, (512,336,0): 56, 37, 39, (512,337,0): 50, 34, 37, (512,338,0): 47, 30, 36, (512,339,0): 45, 28, 34, (512,340,0): 45, 28, 34, (512,341,0): 43, 26, 32, (512,342,0): 39, 22, 30, (512,343,0): 36, 19, 27, (512,344,0): 37, 20, 28, (512,345,0): 34, 17, 27, (512,346,0): 30, 13, 23, (512,347,0): 28, 12, 22, (512,348,0): 29, 13, 24, (512,349,0): 30, 14, 25, (512,350,0): 29, 13, 24, (512,351,0): 27, 11, 22, (512,352,0): 31, 15, 26, (512,353,0): 30, 14, 25, (512,354,0): 29, 13, 24, (512,355,0): 28, 12, 23, (512,356,0): 26, 10, 21, (512,357,0): 25, 9, 20, (512,358,0): 24, 8, 19, (512,359,0): 24, 8, 19, (512,360,0): 26, 10, 21, (512,361,0): 26, 10, 21, (512,362,0): 26, 10, 21, (512,363,0): 26, 10, 21, (512,364,0): 26, 10, 21, (512,365,0): 26, 10, 21, (512,366,0): 26, 10, 21, (512,367,0): 26, 10, 21, (512,368,0): 28, 12, 22, (512,369,0): 27, 11, 21, (512,370,0): 27, 10, 20, (512,371,0): 26, 10, 20, (512,372,0): 27, 10, 20, (512,373,0): 28, 11, 21, (512,374,0): 29, 12, 22, (512,375,0): 29, 12, 20, (512,376,0): 29, 12, 20, (512,377,0): 30, 13, 21, (512,378,0): 30, 13, 21, (512,379,0): 31, 14, 22, (512,380,0): 31, 14, 22, (512,381,0): 32, 15, 23, (512,382,0): 32, 15, 23, (512,383,0): 32, 15, 23, (512,384,0): 31, 14, 24, (512,385,0): 31, 15, 25, (512,386,0): 32, 16, 26, (512,387,0): 33, 17, 27, (512,388,0): 33, 17, 27, (512,389,0): 32, 17, 24, (512,390,0): 31, 15, 25, (512,391,0): 30, 15, 22, (512,392,0): 28, 13, 20, (512,393,0): 28, 13, 20, (512,394,0): 28, 13, 18, (512,395,0): 28, 13, 18, (512,396,0): 28, 13, 18, (512,397,0): 28, 13, 18, (512,398,0): 28, 13, 16, (512,399,0): 28, 13, 18, (512,400,0): 30, 15, 20, (512,401,0): 30, 15, 20, (512,402,0): 30, 15, 22, (512,403,0): 30, 15, 20, (512,404,0): 30, 15, 22, (512,405,0): 30, 15, 20, (512,406,0): 30, 15, 22, (512,407,0): 30, 15, 20, (512,408,0): 30, 15, 22, (512,409,0): 30, 15, 20, (512,410,0): 30, 15, 22, (512,411,0): 31, 16, 21, (512,412,0): 32, 17, 24, (512,413,0): 32, 17, 22, (512,414,0): 32, 17, 24, (512,415,0): 33, 18, 23, (512,416,0): 35, 20, 25, (512,417,0): 34, 22, 26, (512,418,0): 37, 22, 27, (512,419,0): 39, 24, 29, (512,420,0): 41, 26, 31, (512,421,0): 43, 28, 33, (512,422,0): 44, 29, 34, (512,423,0): 45, 30, 35, (512,424,0): 44, 29, 34, (512,425,0): 43, 28, 35, (512,426,0): 42, 27, 34, (512,427,0): 41, 26, 33, (512,428,0): 42, 27, 34, (512,429,0): 43, 28, 35, (512,430,0): 45, 30, 37, (512,431,0): 48, 31, 37, (512,432,0): 48, 31, 37, (512,433,0): 49, 30, 34, (512,434,0): 48, 29, 33, (512,435,0): 46, 27, 31, (512,436,0): 44, 25, 29, (512,437,0): 42, 23, 27, (512,438,0): 41, 22, 26, (512,439,0): 40, 21, 25, (512,440,0): 38, 19, 23, (512,441,0): 38, 19, 23, (512,442,0): 37, 18, 22, (512,443,0): 37, 18, 22, (512,444,0): 37, 16, 21, (512,445,0): 35, 16, 20, (512,446,0): 35, 14, 19, (512,447,0): 34, 15, 19, (512,448,0): 26, 11, 16, (512,449,0): 25, 13, 17, (512,450,0): 26, 14, 18, (512,451,0): 27, 15, 19, (512,452,0): 29, 17, 21, (512,453,0): 32, 17, 22, (512,454,0): 33, 18, 23, (512,455,0): 33, 18, 23, (512,456,0): 34, 19, 24, (512,457,0): 34, 19, 24, (512,458,0): 35, 20, 25, (512,459,0): 36, 19, 25, (512,460,0): 37, 20, 26, (512,461,0): 37, 20, 26, (512,462,0): 38, 21, 27, (512,463,0): 40, 21, 25, (512,464,0): 42, 17, 23, (512,465,0): 44, 17, 22, (512,466,0): 45, 18, 23, (512,467,0): 45, 20, 24, (512,468,0): 46, 21, 25, (512,469,0): 44, 22, 25, (512,470,0): 42, 22, 24, (512,471,0): 41, 21, 23, (512,472,0): 39, 19, 21, (512,473,0): 40, 17, 23, (512,474,0): 42, 17, 23, (512,475,0): 44, 17, 24, (512,476,0): 48, 18, 26, (512,477,0): 49, 19, 27, (512,478,0): 52, 21, 29, (512,479,0): 53, 22, 30, (512,480,0): 52, 18, 32, (512,481,0): 48, 16, 29, (512,482,0): 42, 10, 23, (512,483,0): 36, 6, 18, (512,484,0): 30, 2, 16, (512,485,0): 25, 1, 14, (512,486,0): 23, 3, 14, (512,487,0): 22, 5, 15, (512,488,0): 20, 4, 14, (512,489,0): 17, 4, 13, (512,490,0): 16, 3, 12, (512,491,0): 17, 1, 11, (512,492,0): 19, 2, 12, (512,493,0): 22, 2, 13, (512,494,0): 26, 4, 16, (512,495,0): 28, 4, 17, (512,496,0): 28, 2, 11, (512,497,0): 28, 1, 8, (512,498,0): 30, 0, 8, (512,499,0): 30, 0, 8, (512,500,0): 33, 1, 12, (512,501,0): 34, 2, 13, (512,502,0): 36, 4, 15, (512,503,0): 36, 6, 16, (512,504,0): 41, 11, 21, (512,505,0): 41, 11, 23, (512,506,0): 41, 11, 23, (512,507,0): 40, 10, 22, (512,508,0): 41, 9, 22, (512,509,0): 41, 7, 21, (512,510,0): 41, 7, 23, (512,511,0): 44, 6, 19, (512,512,0): 52, 12, 21, (512,513,0): 52, 11, 19, (512,514,0): 49, 9, 17, (512,515,0): 48, 9, 14, (512,516,0): 50, 11, 16, (512,517,0): 55, 14, 20, (512,518,0): 62, 17, 24, (512,519,0): 65, 18, 24, (512,520,0): 63, 16, 22, (512,521,0): 73, 22, 27, (512,522,0): 81, 28, 34, (512,523,0): 83, 26, 33, (512,524,0): 78, 18, 26, (512,525,0): 73, 14, 20, (512,526,0): 73, 16, 22, (512,527,0): 78, 19, 25, (512,528,0): 84, 23, 31, (512,529,0): 85, 24, 32, (512,530,0): 83, 26, 33, (512,531,0): 82, 29, 35, (512,532,0): 78, 32, 35, (512,533,0): 75, 30, 33, (512,534,0): 72, 30, 32, (512,535,0): 71, 29, 31, (512,536,0): 79, 34, 37, (512,537,0): 79, 33, 36, (512,538,0): 81, 32, 36, (512,539,0): 80, 31, 35, (512,540,0): 80, 31, 35, (512,541,0): 78, 32, 35, (512,542,0): 78, 32, 35, (512,543,0): 78, 33, 38, (512,544,0): 69, 26, 35, (512,545,0): 68, 25, 35, (512,546,0): 65, 23, 33, (512,547,0): 63, 21, 31, (512,548,0): 59, 19, 28, (512,549,0): 57, 17, 26, (512,550,0): 55, 15, 24, (512,551,0): 54, 14, 23, (512,552,0): 57, 17, 26, (512,553,0): 58, 18, 27, (512,554,0): 60, 20, 29, (512,555,0): 59, 22, 30, (512,556,0): 59, 22, 30, (512,557,0): 57, 22, 29, (512,558,0): 55, 20, 27, (512,559,0): 52, 19, 28, (512,560,0): 54, 18, 32, (512,561,0): 51, 17, 33, (512,562,0): 48, 16, 31, (512,563,0): 46, 15, 30, (512,564,0): 46, 15, 30, (512,565,0): 47, 17, 29, (512,566,0): 49, 18, 33, (512,567,0): 48, 20, 34, (512,568,0): 47, 19, 33, (512,569,0): 45, 19, 32, (512,570,0): 42, 18, 31, (512,571,0): 40, 18, 30, (512,572,0): 40, 18, 30, (512,573,0): 41, 19, 31, (512,574,0): 42, 20, 32, (512,575,0): 46, 20, 33, (512,576,0): 47, 17, 29, (512,577,0): 50, 14, 26, (512,578,0): 57, 15, 27, (512,579,0): 69, 21, 33, (512,580,0): 81, 29, 42, (512,581,0): 82, 30, 42, (512,582,0): 75, 25, 36, (512,583,0): 62, 21, 29, (512,584,0): 46, 15, 20, (512,585,0): 43, 21, 23, (512,586,0): 40, 26, 26, (512,587,0): 37, 27, 28, (512,588,0): 34, 23, 27, (512,589,0): 32, 19, 26, (512,590,0): 34, 18, 29, (512,591,0): 37, 19, 31, (512,592,0): 36, 16, 27, (512,593,0): 41, 20, 29, (512,594,0): 49, 23, 34, (512,595,0): 59, 21, 32, (512,596,0): 77, 19, 34, (512,597,0): 101, 22, 43, (512,598,0): 131, 31, 57, (512,599,0): 152, 39, 69, (513,0,0): 41, 66, 73, (513,1,0): 41, 66, 73, (513,2,0): 41, 66, 73, (513,3,0): 41, 66, 73, (513,4,0): 41, 66, 73, (513,5,0): 41, 66, 73, (513,6,0): 41, 66, 73, (513,7,0): 41, 66, 73, (513,8,0): 41, 66, 73, (513,9,0): 41, 66, 73, (513,10,0): 42, 67, 74, (513,11,0): 42, 67, 74, (513,12,0): 43, 68, 75, (513,13,0): 43, 68, 75, (513,14,0): 44, 69, 76, (513,15,0): 44, 69, 76, (513,16,0): 44, 69, 76, (513,17,0): 44, 69, 76, (513,18,0): 44, 69, 76, (513,19,0): 44, 69, 76, (513,20,0): 44, 69, 76, (513,21,0): 44, 69, 76, (513,22,0): 44, 69, 76, (513,23,0): 44, 69, 76, (513,24,0): 47, 72, 79, (513,25,0): 47, 72, 79, (513,26,0): 48, 73, 80, (513,27,0): 48, 73, 80, (513,28,0): 49, 74, 81, (513,29,0): 49, 74, 81, (513,30,0): 50, 75, 82, (513,31,0): 50, 75, 82, (513,32,0): 50, 73, 81, (513,33,0): 50, 73, 81, (513,34,0): 53, 73, 82, (513,35,0): 53, 73, 82, (513,36,0): 54, 74, 83, (513,37,0): 54, 74, 83, (513,38,0): 55, 73, 83, (513,39,0): 56, 74, 84, (513,40,0): 57, 74, 84, (513,41,0): 57, 74, 84, (513,42,0): 58, 75, 85, (513,43,0): 58, 75, 85, (513,44,0): 61, 75, 86, (513,45,0): 61, 75, 86, (513,46,0): 61, 75, 86, (513,47,0): 62, 76, 87, (513,48,0): 65, 77, 89, (513,49,0): 66, 78, 90, (513,50,0): 68, 78, 90, (513,51,0): 68, 78, 90, (513,52,0): 69, 79, 91, (513,53,0): 69, 79, 91, (513,54,0): 71, 79, 90, (513,55,0): 71, 79, 90, (513,56,0): 74, 81, 91, (513,57,0): 74, 81, 91, (513,58,0): 74, 81, 89, (513,59,0): 75, 82, 90, (513,60,0): 77, 81, 90, (513,61,0): 78, 82, 91, (513,62,0): 78, 82, 91, (513,63,0): 80, 83, 90, (513,64,0): 82, 83, 87, (513,65,0): 83, 83, 85, (513,66,0): 83, 83, 85, (513,67,0): 83, 83, 85, (513,68,0): 83, 81, 84, (513,69,0): 83, 81, 82, (513,70,0): 85, 81, 82, (513,71,0): 85, 81, 82, (513,72,0): 84, 80, 81, (513,73,0): 83, 79, 78, (513,74,0): 83, 77, 77, (513,75,0): 81, 76, 73, (513,76,0): 81, 73, 71, (513,77,0): 80, 72, 70, (513,78,0): 78, 70, 68, (513,79,0): 78, 70, 67, (513,80,0): 77, 67, 65, (513,81,0): 77, 68, 63, (513,82,0): 77, 68, 63, (513,83,0): 76, 67, 62, (513,84,0): 76, 67, 62, (513,85,0): 75, 66, 61, (513,86,0): 75, 66, 61, (513,87,0): 75, 66, 61, (513,88,0): 81, 72, 67, (513,89,0): 80, 71, 66, (513,90,0): 79, 70, 65, (513,91,0): 77, 68, 63, (513,92,0): 75, 66, 61, (513,93,0): 74, 65, 60, (513,94,0): 72, 63, 58, (513,95,0): 71, 63, 60, (513,96,0): 67, 66, 62, (513,97,0): 67, 68, 63, (513,98,0): 67, 68, 63, (513,99,0): 67, 68, 63, (513,100,0): 67, 66, 62, (513,101,0): 66, 65, 61, (513,102,0): 64, 63, 59, (513,103,0): 63, 62, 58, (513,104,0): 64, 60, 57, (513,105,0): 64, 60, 57, (513,106,0): 63, 59, 56, (513,107,0): 63, 59, 56, (513,108,0): 63, 58, 55, (513,109,0): 63, 58, 55, (513,110,0): 62, 57, 54, (513,111,0): 62, 57, 54, (513,112,0): 64, 60, 57, (513,113,0): 64, 60, 57, (513,114,0): 64, 60, 57, (513,115,0): 64, 60, 57, (513,116,0): 62, 61, 57, (513,117,0): 62, 61, 57, (513,118,0): 62, 61, 59, (513,119,0): 62, 61, 59, (513,120,0): 59, 59, 59, (513,121,0): 59, 59, 59, (513,122,0): 59, 60, 62, (513,123,0): 59, 60, 62, (513,124,0): 58, 59, 61, (513,125,0): 57, 58, 60, (513,126,0): 53, 57, 58, (513,127,0): 51, 56, 59, (513,128,0): 51, 56, 60, (513,129,0): 49, 57, 60, (513,130,0): 51, 56, 60, (513,131,0): 50, 55, 59, (513,132,0): 50, 55, 58, (513,133,0): 50, 55, 58, (513,134,0): 50, 54, 57, (513,135,0): 50, 54, 57, (513,136,0): 49, 50, 52, (513,137,0): 48, 49, 51, (513,138,0): 48, 50, 49, (513,139,0): 48, 50, 49, (513,140,0): 48, 48, 48, (513,141,0): 47, 47, 47, (513,142,0): 47, 47, 45, (513,143,0): 48, 47, 43, (513,144,0): 51, 46, 42, (513,145,0): 52, 45, 39, (513,146,0): 50, 43, 37, (513,147,0): 49, 42, 36, (513,148,0): 49, 42, 36, (513,149,0): 49, 42, 36, (513,150,0): 50, 43, 37, (513,151,0): 51, 44, 38, (513,152,0): 46, 39, 33, (513,153,0): 46, 39, 33, (513,154,0): 46, 39, 33, (513,155,0): 46, 39, 33, (513,156,0): 46, 39, 33, (513,157,0): 46, 39, 33, (513,158,0): 46, 39, 33, (513,159,0): 44, 39, 35, (513,160,0): 41, 37, 34, (513,161,0): 41, 37, 34, (513,162,0): 41, 37, 34, (513,163,0): 41, 37, 34, (513,164,0): 41, 37, 34, (513,165,0): 41, 37, 34, (513,166,0): 41, 37, 34, (513,167,0): 41, 37, 34, (513,168,0): 41, 37, 34, (513,169,0): 41, 37, 34, (513,170,0): 41, 37, 34, (513,171,0): 40, 36, 33, (513,172,0): 40, 36, 33, (513,173,0): 39, 35, 32, (513,174,0): 39, 35, 32, (513,175,0): 38, 34, 31, (513,176,0): 40, 36, 37, (513,177,0): 40, 36, 37, (513,178,0): 40, 36, 37, (513,179,0): 40, 36, 37, (513,180,0): 40, 36, 37, (513,181,0): 40, 36, 37, (513,182,0): 40, 36, 37, (513,183,0): 40, 36, 37, (513,184,0): 38, 34, 35, (513,185,0): 38, 34, 35, (513,186,0): 38, 34, 35, (513,187,0): 38, 34, 35, (513,188,0): 38, 34, 35, (513,189,0): 38, 34, 35, (513,190,0): 38, 34, 35, (513,191,0): 38, 34, 35, (513,192,0): 39, 34, 40, (513,193,0): 39, 34, 40, (513,194,0): 39, 34, 40, (513,195,0): 39, 34, 40, (513,196,0): 39, 34, 40, (513,197,0): 39, 34, 40, (513,198,0): 39, 34, 40, (513,199,0): 39, 34, 40, (513,200,0): 39, 34, 40, (513,201,0): 39, 34, 40, (513,202,0): 39, 34, 40, (513,203,0): 39, 34, 40, (513,204,0): 39, 34, 40, (513,205,0): 39, 34, 40, (513,206,0): 39, 34, 40, (513,207,0): 37, 35, 40, (513,208,0): 37, 35, 40, (513,209,0): 36, 35, 40, (513,210,0): 36, 35, 40, (513,211,0): 36, 35, 40, (513,212,0): 36, 35, 40, (513,213,0): 36, 35, 40, (513,214,0): 36, 35, 40, (513,215,0): 36, 35, 40, (513,216,0): 35, 34, 39, (513,217,0): 35, 34, 39, (513,218,0): 35, 34, 39, (513,219,0): 35, 34, 39, (513,220,0): 35, 34, 39, (513,221,0): 35, 34, 39, (513,222,0): 35, 34, 39, (513,223,0): 35, 34, 39, (513,224,0): 36, 35, 41, (513,225,0): 36, 35, 41, (513,226,0): 36, 35, 41, (513,227,0): 36, 35, 41, (513,228,0): 36, 35, 41, (513,229,0): 36, 35, 41, (513,230,0): 36, 35, 41, (513,231,0): 36, 35, 41, (513,232,0): 36, 35, 41, (513,233,0): 36, 35, 41, (513,234,0): 36, 35, 41, (513,235,0): 36, 35, 41, (513,236,0): 36, 35, 41, (513,237,0): 36, 35, 41, (513,238,0): 36, 35, 41, (513,239,0): 36, 35, 41, (513,240,0): 40, 37, 48, (513,241,0): 43, 37, 49, (513,242,0): 43, 37, 49, (513,243,0): 43, 37, 49, (513,244,0): 44, 38, 50, (513,245,0): 44, 38, 50, (513,246,0): 46, 38, 53, (513,247,0): 46, 38, 53, (513,248,0): 52, 41, 58, (513,249,0): 53, 42, 59, (513,250,0): 56, 43, 63, (513,251,0): 58, 45, 65, (513,252,0): 60, 47, 67, (513,253,0): 63, 50, 70, (513,254,0): 64, 51, 71, (513,255,0): 66, 51, 70, (513,256,0): 75, 54, 73, (513,257,0): 78, 55, 73, (513,258,0): 81, 56, 75, (513,259,0): 82, 57, 76, (513,260,0): 84, 57, 74, (513,261,0): 83, 54, 72, (513,262,0): 82, 51, 67, (513,263,0): 80, 49, 65, (513,264,0): 80, 49, 65, (513,265,0): 79, 51, 66, (513,266,0): 80, 52, 66, (513,267,0): 80, 54, 67, (513,268,0): 78, 55, 65, (513,269,0): 77, 56, 65, (513,270,0): 75, 54, 63, (513,271,0): 71, 54, 64, (513,272,0): 68, 56, 68, (513,273,0): 65, 57, 70, (513,274,0): 65, 57, 70, (513,275,0): 65, 57, 70, (513,276,0): 67, 56, 70, (513,277,0): 67, 56, 70, (513,278,0): 67, 56, 70, (513,279,0): 67, 56, 70, (513,280,0): 72, 60, 74, (513,281,0): 72, 60, 74, (513,282,0): 73, 59, 74, (513,283,0): 73, 59, 74, (513,284,0): 73, 59, 74, (513,285,0): 73, 59, 74, (513,286,0): 75, 58, 74, (513,287,0): 75, 58, 74, (513,288,0): 81, 63, 79, (513,289,0): 81, 63, 79, (513,290,0): 81, 63, 79, (513,291,0): 82, 64, 80, (513,292,0): 82, 64, 80, (513,293,0): 83, 65, 81, (513,294,0): 85, 64, 79, (513,295,0): 85, 64, 79, (513,296,0): 88, 66, 79, (513,297,0): 89, 67, 80, (513,298,0): 90, 66, 79, (513,299,0): 90, 66, 79, (513,300,0): 91, 67, 80, (513,301,0): 92, 68, 81, (513,302,0): 92, 68, 81, (513,303,0): 94, 68, 81, (513,304,0): 96, 68, 83, (513,305,0): 98, 70, 84, (513,306,0): 101, 71, 83, (513,307,0): 101, 71, 79, (513,308,0): 101, 69, 74, (513,309,0): 104, 69, 73, (513,310,0): 108, 72, 74, (513,311,0): 116, 74, 78, (513,312,0): 125, 76, 82, (513,313,0): 133, 80, 86, (513,314,0): 147, 86, 93, (513,315,0): 156, 91, 95, (513,316,0): 166, 96, 96, (513,317,0): 181, 108, 102, (513,318,0): 199, 122, 114, (513,319,0): 211, 136, 115, (513,320,0): 233, 164, 123, (513,321,0): 255, 193, 145, (513,322,0): 255, 213, 173, (513,323,0): 255, 206, 172, (513,324,0): 237, 190, 164, (513,325,0): 217, 179, 160, (513,326,0): 199, 167, 152, (513,327,0): 180, 156, 144, (513,328,0): 174, 156, 144, (513,329,0): 165, 149, 136, (513,330,0): 148, 134, 123, (513,331,0): 128, 114, 105, (513,332,0): 110, 91, 85, (513,333,0): 90, 71, 65, (513,334,0): 78, 54, 52, (513,335,0): 68, 47, 46, (513,336,0): 54, 38, 41, (513,337,0): 50, 35, 40, (513,338,0): 47, 32, 37, (513,339,0): 45, 30, 35, (513,340,0): 45, 30, 37, (513,341,0): 43, 28, 35, (513,342,0): 39, 24, 31, (513,343,0): 36, 21, 28, (513,344,0): 36, 20, 30, (513,345,0): 33, 17, 27, (513,346,0): 29, 13, 24, (513,347,0): 28, 12, 23, (513,348,0): 30, 14, 25, (513,349,0): 30, 14, 25, (513,350,0): 29, 13, 26, (513,351,0): 27, 11, 24, (513,352,0): 31, 15, 26, (513,353,0): 30, 14, 25, (513,354,0): 29, 13, 24, (513,355,0): 28, 12, 23, (513,356,0): 27, 11, 22, (513,357,0): 25, 9, 20, (513,358,0): 25, 9, 20, (513,359,0): 24, 8, 19, (513,360,0): 26, 10, 21, (513,361,0): 26, 10, 21, (513,362,0): 26, 10, 21, (513,363,0): 26, 10, 21, (513,364,0): 26, 10, 21, (513,365,0): 26, 10, 21, (513,366,0): 26, 10, 21, (513,367,0): 26, 10, 21, (513,368,0): 27, 11, 21, (513,369,0): 27, 11, 21, (513,370,0): 26, 10, 20, (513,371,0): 25, 9, 19, (513,372,0): 26, 10, 20, (513,373,0): 27, 11, 21, (513,374,0): 28, 12, 22, (513,375,0): 29, 13, 23, (513,376,0): 28, 12, 22, (513,377,0): 29, 13, 23, (513,378,0): 29, 13, 23, (513,379,0): 29, 13, 23, (513,380,0): 30, 14, 24, (513,381,0): 30, 14, 24, (513,382,0): 31, 15, 25, (513,383,0): 31, 15, 25, (513,384,0): 30, 14, 25, (513,385,0): 30, 14, 25, (513,386,0): 31, 15, 26, (513,387,0): 32, 16, 27, (513,388,0): 32, 16, 27, (513,389,0): 31, 15, 25, (513,390,0): 30, 14, 24, (513,391,0): 30, 14, 24, (513,392,0): 28, 12, 22, (513,393,0): 28, 13, 20, (513,394,0): 28, 13, 20, (513,395,0): 28, 13, 18, (513,396,0): 28, 13, 18, (513,397,0): 28, 13, 18, (513,398,0): 28, 13, 18, (513,399,0): 28, 13, 16, (513,400,0): 29, 14, 19, (513,401,0): 29, 14, 19, (513,402,0): 29, 14, 19, (513,403,0): 29, 14, 19, (513,404,0): 29, 14, 19, (513,405,0): 29, 14, 19, (513,406,0): 29, 14, 19, (513,407,0): 29, 14, 19, (513,408,0): 29, 14, 19, (513,409,0): 30, 15, 20, (513,410,0): 30, 15, 20, (513,411,0): 31, 16, 21, (513,412,0): 31, 16, 21, (513,413,0): 32, 17, 22, (513,414,0): 32, 17, 22, (513,415,0): 32, 17, 22, (513,416,0): 35, 20, 25, (513,417,0): 36, 21, 26, (513,418,0): 37, 22, 27, (513,419,0): 39, 24, 29, (513,420,0): 40, 25, 30, (513,421,0): 42, 27, 32, (513,422,0): 43, 28, 33, (513,423,0): 44, 29, 34, (513,424,0): 44, 29, 34, (513,425,0): 43, 28, 33, (513,426,0): 42, 27, 32, (513,427,0): 42, 27, 32, (513,428,0): 42, 27, 32, (513,429,0): 44, 29, 34, (513,430,0): 46, 31, 36, (513,431,0): 48, 32, 35, (513,432,0): 51, 32, 36, (513,433,0): 51, 31, 33, (513,434,0): 50, 30, 32, (513,435,0): 48, 28, 30, (513,436,0): 46, 26, 28, (513,437,0): 45, 25, 27, (513,438,0): 43, 23, 25, (513,439,0): 43, 23, 25, (513,440,0): 41, 21, 23, (513,441,0): 41, 21, 23, (513,442,0): 40, 20, 22, (513,443,0): 39, 19, 21, (513,444,0): 37, 17, 19, (513,445,0): 36, 16, 18, (513,446,0): 35, 15, 17, (513,447,0): 34, 15, 17, (513,448,0): 26, 11, 16, (513,449,0): 25, 13, 17, (513,450,0): 26, 14, 18, (513,451,0): 27, 15, 19, (513,452,0): 28, 16, 20, (513,453,0): 30, 18, 22, (513,454,0): 30, 18, 22, (513,455,0): 31, 19, 23, (513,456,0): 32, 20, 24, (513,457,0): 32, 20, 24, (513,458,0): 32, 20, 24, (513,459,0): 33, 21, 25, (513,460,0): 33, 21, 25, (513,461,0): 34, 22, 26, (513,462,0): 34, 22, 26, (513,463,0): 37, 21, 24, (513,464,0): 41, 16, 22, (513,465,0): 45, 16, 21, (513,466,0): 45, 18, 23, (513,467,0): 45, 20, 24, (513,468,0): 44, 22, 25, (513,469,0): 44, 22, 25, (513,470,0): 42, 22, 24, (513,471,0): 40, 21, 23, (513,472,0): 40, 20, 22, (513,473,0): 41, 19, 22, (513,474,0): 43, 18, 22, (513,475,0): 47, 18, 23, (513,476,0): 50, 19, 25, (513,477,0): 52, 19, 26, (513,478,0): 56, 19, 27, (513,479,0): 57, 20, 28, (513,480,0): 54, 18, 30, (513,481,0): 48, 15, 26, (513,482,0): 42, 10, 21, (513,483,0): 36, 6, 16, (513,484,0): 29, 3, 14, (513,485,0): 25, 4, 13, (513,486,0): 24, 4, 13, (513,487,0): 21, 6, 13, (513,488,0): 20, 4, 14, (513,489,0): 18, 5, 14, (513,490,0): 19, 3, 14, (513,491,0): 19, 3, 14, (513,492,0): 20, 2, 14, (513,493,0): 20, 2, 14, (513,494,0): 23, 2, 17, (513,495,0): 24, 2, 15, (513,496,0): 25, 1, 14, (513,497,0): 27, 1, 12, (513,498,0): 27, 1, 12, (513,499,0): 27, 1, 12, (513,500,0): 28, 2, 13, (513,501,0): 31, 3, 15, (513,502,0): 33, 5, 17, (513,503,0): 36, 6, 18, (513,504,0): 37, 7, 19, (513,505,0): 37, 7, 19, (513,506,0): 37, 7, 19, (513,507,0): 38, 6, 19, (513,508,0): 38, 6, 19, (513,509,0): 38, 6, 19, (513,510,0): 40, 6, 20, (513,511,0): 40, 7, 18, (513,512,0): 49, 12, 20, (513,513,0): 50, 11, 16, (513,514,0): 48, 9, 14, (513,515,0): 49, 8, 14, (513,516,0): 51, 10, 16, (513,517,0): 55, 13, 17, (513,518,0): 61, 16, 21, (513,519,0): 64, 17, 23, (513,520,0): 71, 22, 28, (513,521,0): 78, 27, 32, (513,522,0): 84, 31, 37, (513,523,0): 86, 31, 36, (513,524,0): 84, 27, 33, (513,525,0): 80, 23, 29, (513,526,0): 81, 24, 30, (513,527,0): 84, 25, 31, (513,528,0): 82, 22, 30, (513,529,0): 81, 24, 33, (513,530,0): 82, 25, 34, (513,531,0): 80, 27, 35, (513,532,0): 78, 29, 35, (513,533,0): 75, 28, 34, (513,534,0): 71, 29, 33, (513,535,0): 69, 28, 32, (513,536,0): 74, 33, 37, (513,537,0): 74, 33, 37, (513,538,0): 75, 33, 37, (513,539,0): 75, 33, 37, (513,540,0): 77, 32, 37, (513,541,0): 77, 32, 37, (513,542,0): 79, 32, 38, (513,543,0): 78, 33, 40, (513,544,0): 66, 26, 34, (513,545,0): 63, 26, 34, (513,546,0): 61, 24, 32, (513,547,0): 59, 22, 30, (513,548,0): 57, 20, 28, (513,549,0): 54, 17, 25, (513,550,0): 53, 16, 24, (513,551,0): 52, 15, 23, (513,552,0): 55, 18, 26, (513,553,0): 56, 19, 27, (513,554,0): 57, 20, 28, (513,555,0): 57, 20, 28, (513,556,0): 57, 20, 28, (513,557,0): 57, 20, 28, (513,558,0): 56, 19, 27, (513,559,0): 54, 18, 28, (513,560,0): 48, 16, 29, (513,561,0): 46, 15, 30, (513,562,0): 43, 15, 29, (513,563,0): 42, 14, 28, (513,564,0): 42, 14, 28, (513,565,0): 43, 15, 29, (513,566,0): 43, 17, 30, (513,567,0): 44, 18, 31, (513,568,0): 42, 18, 31, (513,569,0): 41, 17, 30, (513,570,0): 40, 16, 29, (513,571,0): 39, 15, 28, (513,572,0): 38, 16, 28, (513,573,0): 39, 17, 29, (513,574,0): 40, 18, 30, (513,575,0): 41, 19, 31, (513,576,0): 40, 19, 28, (513,577,0): 42, 16, 25, (513,578,0): 51, 15, 25, (513,579,0): 64, 21, 31, (513,580,0): 78, 26, 38, (513,581,0): 84, 28, 39, (513,582,0): 77, 24, 34, (513,583,0): 70, 21, 27, (513,584,0): 52, 13, 16, (513,585,0): 49, 19, 21, (513,586,0): 43, 23, 24, (513,587,0): 39, 23, 24, (513,588,0): 35, 20, 23, (513,589,0): 33, 18, 23, (513,590,0): 35, 18, 28, (513,591,0): 37, 20, 30, (513,592,0): 35, 17, 29, (513,593,0): 40, 20, 31, (513,594,0): 45, 21, 34, (513,595,0): 52, 19, 30, (513,596,0): 66, 15, 32, (513,597,0): 85, 16, 35, (513,598,0): 111, 23, 48, (513,599,0): 129, 30, 58, (514,0,0): 41, 66, 73, (514,1,0): 41, 66, 73, (514,2,0): 41, 66, 73, (514,3,0): 41, 66, 73, (514,4,0): 41, 66, 73, (514,5,0): 41, 66, 73, (514,6,0): 41, 66, 73, (514,7,0): 41, 66, 73, (514,8,0): 41, 66, 73, (514,9,0): 41, 66, 73, (514,10,0): 42, 67, 74, (514,11,0): 42, 67, 74, (514,12,0): 43, 68, 75, (514,13,0): 43, 68, 75, (514,14,0): 44, 69, 76, (514,15,0): 44, 69, 76, (514,16,0): 44, 69, 76, (514,17,0): 44, 69, 76, (514,18,0): 44, 69, 76, (514,19,0): 44, 69, 76, (514,20,0): 44, 69, 76, (514,21,0): 44, 69, 76, (514,22,0): 44, 69, 76, (514,23,0): 44, 69, 76, (514,24,0): 47, 72, 79, (514,25,0): 47, 72, 79, (514,26,0): 48, 73, 80, (514,27,0): 48, 73, 80, (514,28,0): 49, 74, 81, (514,29,0): 49, 74, 81, (514,30,0): 50, 75, 82, (514,31,0): 50, 75, 82, (514,32,0): 50, 73, 81, (514,33,0): 51, 74, 82, (514,34,0): 53, 73, 82, (514,35,0): 53, 73, 82, (514,36,0): 54, 74, 83, (514,37,0): 55, 75, 84, (514,38,0): 56, 74, 84, (514,39,0): 56, 74, 84, (514,40,0): 57, 74, 84, (514,41,0): 58, 75, 85, (514,42,0): 58, 75, 85, (514,43,0): 58, 75, 85, (514,44,0): 61, 75, 86, (514,45,0): 62, 76, 87, (514,46,0): 62, 76, 87, (514,47,0): 62, 76, 87, (514,48,0): 65, 77, 89, (514,49,0): 65, 77, 89, (514,50,0): 67, 77, 89, (514,51,0): 68, 78, 90, (514,52,0): 69, 79, 91, (514,53,0): 69, 79, 91, (514,54,0): 70, 78, 89, (514,55,0): 71, 79, 90, (514,56,0): 73, 80, 90, (514,57,0): 74, 81, 91, (514,58,0): 74, 81, 89, (514,59,0): 75, 82, 90, (514,60,0): 77, 81, 90, (514,61,0): 78, 82, 91, (514,62,0): 78, 82, 91, (514,63,0): 79, 82, 89, (514,64,0): 82, 83, 88, (514,65,0): 83, 82, 87, (514,66,0): 83, 82, 87, (514,67,0): 83, 82, 87, (514,68,0): 85, 83, 88, (514,69,0): 85, 83, 86, (514,70,0): 85, 83, 86, (514,71,0): 85, 83, 84, (514,72,0): 86, 82, 83, (514,73,0): 85, 81, 82, (514,74,0): 85, 79, 81, (514,75,0): 84, 78, 78, (514,76,0): 82, 76, 76, (514,77,0): 81, 75, 75, (514,78,0): 82, 73, 74, (514,79,0): 81, 73, 71, (514,80,0): 81, 71, 69, (514,81,0): 80, 70, 68, (514,82,0): 80, 70, 68, (514,83,0): 79, 69, 67, (514,84,0): 79, 69, 67, (514,85,0): 78, 68, 66, (514,86,0): 78, 68, 66, (514,87,0): 78, 68, 66, (514,88,0): 82, 72, 70, (514,89,0): 81, 71, 69, (514,90,0): 80, 70, 68, (514,91,0): 79, 69, 67, (514,92,0): 77, 67, 65, (514,93,0): 76, 66, 64, (514,94,0): 74, 64, 62, (514,95,0): 73, 65, 62, (514,96,0): 70, 66, 63, (514,97,0): 69, 68, 64, (514,98,0): 69, 68, 64, (514,99,0): 69, 68, 64, (514,100,0): 68, 67, 63, (514,101,0): 66, 65, 61, (514,102,0): 64, 63, 59, (514,103,0): 63, 62, 58, (514,104,0): 65, 61, 58, (514,105,0): 65, 61, 58, (514,106,0): 64, 60, 57, (514,107,0): 64, 60, 57, (514,108,0): 63, 59, 56, (514,109,0): 63, 59, 56, (514,110,0): 63, 58, 55, (514,111,0): 63, 58, 55, (514,112,0): 64, 60, 57, (514,113,0): 64, 60, 57, (514,114,0): 64, 60, 57, (514,115,0): 64, 60, 57, (514,116,0): 62, 61, 59, (514,117,0): 62, 61, 59, (514,118,0): 61, 61, 61, (514,119,0): 61, 61, 61, (514,120,0): 60, 60, 60, (514,121,0): 60, 60, 60, (514,122,0): 60, 61, 63, (514,123,0): 60, 61, 63, (514,124,0): 58, 62, 65, (514,125,0): 57, 61, 64, (514,126,0): 55, 59, 62, (514,127,0): 53, 58, 61, (514,128,0): 53, 58, 62, (514,129,0): 51, 58, 64, (514,130,0): 53, 58, 62, (514,131,0): 52, 57, 61, (514,132,0): 52, 57, 61, (514,133,0): 51, 56, 60, (514,134,0): 52, 56, 59, (514,135,0): 51, 55, 58, (514,136,0): 50, 51, 53, (514,137,0): 50, 51, 53, (514,138,0): 50, 51, 53, (514,139,0): 49, 50, 52, (514,140,0): 50, 50, 50, (514,141,0): 49, 49, 49, (514,142,0): 49, 49, 49, (514,143,0): 49, 48, 46, (514,144,0): 51, 47, 44, (514,145,0): 51, 46, 42, (514,146,0): 49, 44, 40, (514,147,0): 48, 43, 39, (514,148,0): 47, 42, 38, (514,149,0): 47, 42, 38, (514,150,0): 48, 43, 39, (514,151,0): 48, 43, 39, (514,152,0): 44, 39, 35, (514,153,0): 44, 39, 35, (514,154,0): 44, 39, 35, (514,155,0): 44, 39, 35, (514,156,0): 44, 39, 35, (514,157,0): 44, 39, 35, (514,158,0): 44, 39, 35, (514,159,0): 44, 39, 35, (514,160,0): 42, 38, 35, (514,161,0): 42, 38, 35, (514,162,0): 42, 38, 35, (514,163,0): 42, 38, 35, (514,164,0): 42, 38, 35, (514,165,0): 42, 38, 35, (514,166,0): 42, 38, 35, (514,167,0): 42, 38, 35, (514,168,0): 42, 38, 35, (514,169,0): 41, 37, 34, (514,170,0): 41, 37, 34, (514,171,0): 40, 36, 33, (514,172,0): 40, 36, 33, (514,173,0): 39, 35, 32, (514,174,0): 39, 35, 32, (514,175,0): 39, 35, 32, (514,176,0): 40, 36, 37, (514,177,0): 40, 36, 37, (514,178,0): 40, 36, 37, (514,179,0): 40, 36, 37, (514,180,0): 40, 36, 37, (514,181,0): 40, 36, 37, (514,182,0): 40, 36, 37, (514,183,0): 40, 36, 37, (514,184,0): 38, 34, 35, (514,185,0): 38, 34, 35, (514,186,0): 38, 34, 35, (514,187,0): 38, 34, 35, (514,188,0): 38, 34, 35, (514,189,0): 38, 34, 35, (514,190,0): 38, 34, 35, (514,191,0): 38, 34, 35, (514,192,0): 39, 34, 40, (514,193,0): 39, 34, 40, (514,194,0): 39, 34, 40, (514,195,0): 39, 34, 40, (514,196,0): 39, 34, 40, (514,197,0): 39, 34, 40, (514,198,0): 39, 34, 40, (514,199,0): 39, 34, 40, (514,200,0): 39, 34, 40, (514,201,0): 39, 34, 40, (514,202,0): 39, 34, 40, (514,203,0): 39, 34, 40, (514,204,0): 39, 34, 40, (514,205,0): 39, 34, 40, (514,206,0): 39, 34, 40, (514,207,0): 37, 35, 40, (514,208,0): 37, 35, 40, (514,209,0): 36, 35, 40, (514,210,0): 36, 35, 40, (514,211,0): 36, 35, 40, (514,212,0): 36, 35, 40, (514,213,0): 36, 35, 40, (514,214,0): 36, 35, 40, (514,215,0): 36, 35, 40, (514,216,0): 34, 33, 38, (514,217,0): 34, 33, 38, (514,218,0): 34, 33, 38, (514,219,0): 34, 33, 38, (514,220,0): 34, 33, 38, (514,221,0): 34, 33, 38, (514,222,0): 34, 33, 38, (514,223,0): 34, 33, 38, (514,224,0): 36, 35, 41, (514,225,0): 36, 35, 41, (514,226,0): 36, 35, 41, (514,227,0): 36, 35, 41, (514,228,0): 36, 35, 41, (514,229,0): 36, 35, 41, (514,230,0): 36, 35, 41, (514,231,0): 36, 35, 41, (514,232,0): 36, 35, 41, (514,233,0): 36, 35, 41, (514,234,0): 36, 35, 41, (514,235,0): 36, 35, 41, (514,236,0): 36, 35, 41, (514,237,0): 36, 35, 41, (514,238,0): 36, 35, 41, (514,239,0): 36, 35, 41, (514,240,0): 40, 37, 48, (514,241,0): 40, 37, 48, (514,242,0): 42, 36, 48, (514,243,0): 43, 37, 49, (514,244,0): 44, 38, 50, (514,245,0): 44, 38, 50, (514,246,0): 45, 37, 52, (514,247,0): 46, 38, 53, (514,248,0): 50, 39, 56, (514,249,0): 51, 40, 57, (514,250,0): 53, 41, 61, (514,251,0): 55, 43, 63, (514,252,0): 58, 45, 65, (514,253,0): 60, 47, 67, (514,254,0): 61, 48, 68, (514,255,0): 63, 48, 67, (514,256,0): 71, 52, 71, (514,257,0): 74, 53, 70, (514,258,0): 78, 55, 73, (514,259,0): 80, 55, 74, (514,260,0): 82, 55, 72, (514,261,0): 81, 54, 71, (514,262,0): 80, 51, 69, (514,263,0): 79, 50, 68, (514,264,0): 78, 50, 65, (514,265,0): 79, 51, 66, (514,266,0): 80, 52, 66, (514,267,0): 79, 53, 66, (514,268,0): 77, 53, 66, (514,269,0): 76, 54, 66, (514,270,0): 75, 54, 63, (514,271,0): 71, 54, 64, (514,272,0): 68, 56, 68, (514,273,0): 65, 57, 70, (514,274,0): 65, 57, 70, (514,275,0): 65, 57, 70, (514,276,0): 67, 56, 70, (514,277,0): 67, 56, 70, (514,278,0): 67, 56, 70, (514,279,0): 67, 56, 70, (514,280,0): 69, 57, 71, (514,281,0): 69, 57, 71, (514,282,0): 71, 57, 72, (514,283,0): 72, 58, 73, (514,284,0): 73, 59, 74, (514,285,0): 74, 60, 75, (514,286,0): 76, 59, 75, (514,287,0): 77, 60, 76, (514,288,0): 81, 63, 79, (514,289,0): 81, 63, 79, (514,290,0): 81, 63, 79, (514,291,0): 82, 64, 80, (514,292,0): 84, 63, 78, (514,293,0): 85, 64, 79, (514,294,0): 85, 64, 79, (514,295,0): 85, 64, 79, (514,296,0): 87, 65, 78, (514,297,0): 87, 65, 78, (514,298,0): 88, 64, 77, (514,299,0): 89, 65, 78, (514,300,0): 90, 66, 79, (514,301,0): 90, 66, 79, (514,302,0): 92, 66, 77, (514,303,0): 93, 67, 80, (514,304,0): 95, 67, 82, (514,305,0): 97, 69, 83, (514,306,0): 101, 71, 83, (514,307,0): 100, 70, 78, (514,308,0): 101, 69, 74, (514,309,0): 104, 69, 73, (514,310,0): 110, 71, 74, (514,311,0): 116, 74, 78, (514,312,0): 125, 76, 82, (514,313,0): 134, 81, 87, (514,314,0): 148, 87, 94, (514,315,0): 157, 92, 96, (514,316,0): 167, 97, 97, (514,317,0): 181, 106, 101, (514,318,0): 197, 120, 112, (514,319,0): 207, 132, 111, (514,320,0): 227, 158, 119, (514,321,0): 253, 189, 143, (514,322,0): 255, 209, 172, (514,323,0): 255, 202, 170, (514,324,0): 230, 184, 161, (514,325,0): 209, 172, 154, (514,326,0): 193, 163, 152, (514,327,0): 179, 154, 147, (514,328,0): 177, 158, 151, (514,329,0): 169, 152, 145, (514,330,0): 153, 138, 133, (514,331,0): 134, 119, 114, (514,332,0): 116, 96, 95, (514,333,0): 94, 74, 73, (514,334,0): 80, 55, 58, (514,335,0): 68, 46, 49, (514,336,0): 56, 40, 43, (514,337,0): 52, 37, 42, (514,338,0): 48, 33, 38, (514,339,0): 46, 31, 36, (514,340,0): 46, 31, 38, (514,341,0): 44, 29, 36, (514,342,0): 41, 26, 33, (514,343,0): 38, 23, 30, (514,344,0): 37, 21, 31, (514,345,0): 33, 17, 27, (514,346,0): 30, 14, 25, (514,347,0): 29, 13, 24, (514,348,0): 30, 14, 25, (514,349,0): 31, 15, 26, (514,350,0): 29, 13, 26, (514,351,0): 27, 11, 24, (514,352,0): 30, 14, 25, (514,353,0): 30, 14, 25, (514,354,0): 29, 13, 24, (514,355,0): 28, 12, 23, (514,356,0): 27, 11, 22, (514,357,0): 26, 10, 21, (514,358,0): 26, 10, 21, (514,359,0): 25, 9, 20, (514,360,0): 26, 10, 21, (514,361,0): 26, 10, 21, (514,362,0): 26, 10, 21, (514,363,0): 26, 10, 21, (514,364,0): 26, 10, 21, (514,365,0): 26, 10, 21, (514,366,0): 26, 10, 21, (514,367,0): 26, 10, 21, (514,368,0): 26, 10, 20, (514,369,0): 26, 10, 20, (514,370,0): 25, 9, 19, (514,371,0): 25, 9, 19, (514,372,0): 26, 10, 20, (514,373,0): 28, 12, 22, (514,374,0): 29, 13, 23, (514,375,0): 30, 14, 24, (514,376,0): 28, 12, 22, (514,377,0): 28, 12, 22, (514,378,0): 28, 12, 22, (514,379,0): 29, 13, 23, (514,380,0): 30, 14, 24, (514,381,0): 30, 14, 24, (514,382,0): 30, 14, 24, (514,383,0): 31, 15, 25, (514,384,0): 29, 13, 24, (514,385,0): 30, 14, 27, (514,386,0): 31, 15, 28, (514,387,0): 31, 15, 26, (514,388,0): 31, 15, 26, (514,389,0): 31, 15, 26, (514,390,0): 30, 14, 25, (514,391,0): 29, 13, 23, (514,392,0): 28, 12, 22, (514,393,0): 28, 13, 20, (514,394,0): 28, 13, 20, (514,395,0): 28, 13, 20, (514,396,0): 28, 13, 20, (514,397,0): 28, 13, 18, (514,398,0): 28, 13, 18, (514,399,0): 28, 13, 18, (514,400,0): 27, 12, 17, (514,401,0): 27, 12, 17, (514,402,0): 27, 12, 17, (514,403,0): 27, 12, 17, (514,404,0): 27, 12, 17, (514,405,0): 27, 12, 17, (514,406,0): 27, 12, 17, (514,407,0): 27, 12, 17, (514,408,0): 29, 14, 19, (514,409,0): 29, 14, 19, (514,410,0): 29, 14, 19, (514,411,0): 30, 15, 20, (514,412,0): 30, 15, 20, (514,413,0): 31, 16, 21, (514,414,0): 31, 16, 21, (514,415,0): 31, 16, 21, (514,416,0): 34, 19, 24, (514,417,0): 35, 20, 25, (514,418,0): 36, 21, 26, (514,419,0): 38, 23, 28, (514,420,0): 39, 24, 29, (514,421,0): 41, 26, 31, (514,422,0): 42, 27, 32, (514,423,0): 42, 27, 32, (514,424,0): 44, 29, 34, (514,425,0): 43, 28, 33, (514,426,0): 43, 28, 33, (514,427,0): 43, 28, 33, (514,428,0): 43, 28, 33, (514,429,0): 44, 29, 34, (514,430,0): 46, 31, 36, (514,431,0): 48, 32, 35, (514,432,0): 52, 33, 37, (514,433,0): 52, 32, 34, (514,434,0): 51, 31, 33, (514,435,0): 49, 29, 31, (514,436,0): 48, 28, 30, (514,437,0): 46, 26, 28, (514,438,0): 45, 25, 27, (514,439,0): 45, 25, 27, (514,440,0): 44, 24, 26, (514,441,0): 43, 23, 25, (514,442,0): 42, 22, 24, (514,443,0): 40, 20, 22, (514,444,0): 38, 18, 20, (514,445,0): 36, 16, 18, (514,446,0): 35, 15, 17, (514,447,0): 33, 14, 16, (514,448,0): 28, 11, 17, (514,449,0): 27, 12, 17, (514,450,0): 28, 13, 18, (514,451,0): 29, 14, 19, (514,452,0): 30, 15, 20, (514,453,0): 31, 16, 21, (514,454,0): 31, 16, 21, (514,455,0): 32, 17, 22, (514,456,0): 32, 17, 22, (514,457,0): 33, 18, 23, (514,458,0): 33, 18, 23, (514,459,0): 34, 19, 24, (514,460,0): 34, 19, 24, (514,461,0): 35, 20, 25, (514,462,0): 35, 20, 25, (514,463,0): 38, 19, 23, (514,464,0): 41, 16, 22, (514,465,0): 45, 16, 21, (514,466,0): 45, 18, 23, (514,467,0): 45, 20, 24, (514,468,0): 43, 21, 24, (514,469,0): 43, 21, 24, (514,470,0): 41, 21, 23, (514,471,0): 41, 21, 23, (514,472,0): 42, 20, 23, (514,473,0): 42, 20, 23, (514,474,0): 45, 20, 24, (514,475,0): 49, 20, 25, (514,476,0): 51, 20, 26, (514,477,0): 53, 20, 27, (514,478,0): 57, 20, 28, (514,479,0): 57, 20, 28, (514,480,0): 52, 16, 28, (514,481,0): 48, 15, 26, (514,482,0): 42, 10, 21, (514,483,0): 35, 8, 17, (514,484,0): 31, 5, 16, (514,485,0): 26, 5, 14, (514,486,0): 25, 5, 14, (514,487,0): 22, 7, 14, (514,488,0): 21, 5, 15, (514,489,0): 19, 6, 15, (514,490,0): 19, 6, 16, (514,491,0): 21, 5, 16, (514,492,0): 21, 3, 15, (514,493,0): 20, 2, 14, (514,494,0): 20, 0, 14, (514,495,0): 19, 0, 11, (514,496,0): 24, 2, 14, (514,497,0): 24, 0, 13, (514,498,0): 24, 0, 13, (514,499,0): 24, 0, 13, (514,500,0): 25, 1, 14, (514,501,0): 29, 3, 16, (514,502,0): 31, 5, 18, (514,503,0): 33, 5, 19, (514,504,0): 31, 3, 17, (514,505,0): 31, 3, 17, (514,506,0): 32, 4, 18, (514,507,0): 35, 4, 19, (514,508,0): 35, 4, 19, (514,509,0): 36, 5, 20, (514,510,0): 38, 6, 21, (514,511,0): 38, 6, 19, (514,512,0): 46, 10, 20, (514,513,0): 46, 9, 16, (514,514,0): 45, 8, 15, (514,515,0): 48, 8, 16, (514,516,0): 49, 9, 17, (514,517,0): 53, 12, 18, (514,518,0): 57, 14, 21, (514,519,0): 61, 16, 21, (514,520,0): 66, 19, 25, (514,521,0): 70, 21, 27, (514,522,0): 74, 23, 30, (514,523,0): 77, 24, 30, (514,524,0): 78, 25, 31, (514,525,0): 79, 24, 30, (514,526,0): 78, 23, 29, (514,527,0): 78, 23, 29, (514,528,0): 78, 22, 31, (514,529,0): 77, 24, 32, (514,530,0): 78, 25, 33, (514,531,0): 76, 27, 33, (514,532,0): 74, 27, 33, (514,533,0): 73, 28, 33, (514,534,0): 70, 28, 32, (514,535,0): 68, 27, 31, (514,536,0): 71, 30, 34, (514,537,0): 71, 32, 35, (514,538,0): 72, 31, 35, (514,539,0): 74, 32, 36, (514,540,0): 77, 32, 37, (514,541,0): 78, 33, 38, (514,542,0): 79, 32, 38, (514,543,0): 79, 34, 41, (514,544,0): 64, 24, 32, (514,545,0): 62, 25, 33, (514,546,0): 60, 23, 31, (514,547,0): 58, 21, 29, (514,548,0): 56, 19, 27, (514,549,0): 54, 17, 25, (514,550,0): 53, 16, 24, (514,551,0): 52, 15, 23, (514,552,0): 56, 19, 27, (514,553,0): 56, 19, 27, (514,554,0): 55, 18, 26, (514,555,0): 55, 18, 26, (514,556,0): 55, 18, 26, (514,557,0): 55, 18, 26, (514,558,0): 56, 19, 27, (514,559,0): 55, 19, 29, (514,560,0): 44, 14, 26, (514,561,0): 42, 14, 28, (514,562,0): 41, 13, 27, (514,563,0): 40, 12, 26, (514,564,0): 39, 13, 26, (514,565,0): 40, 14, 27, (514,566,0): 41, 15, 28, (514,567,0): 41, 15, 28, (514,568,0): 40, 16, 29, (514,569,0): 39, 15, 28, (514,570,0): 37, 15, 27, (514,571,0): 36, 14, 26, (514,572,0): 36, 14, 26, (514,573,0): 37, 15, 27, (514,574,0): 37, 17, 28, (514,575,0): 38, 18, 29, (514,576,0): 39, 19, 30, (514,577,0): 38, 17, 26, (514,578,0): 43, 16, 25, (514,579,0): 55, 19, 29, (514,580,0): 66, 24, 34, (514,581,0): 73, 27, 37, (514,582,0): 72, 25, 33, (514,583,0): 69, 22, 30, (514,584,0): 58, 15, 22, (514,585,0): 57, 18, 23, (514,586,0): 52, 20, 25, (514,587,0): 46, 19, 24, (514,588,0): 38, 17, 22, (514,589,0): 33, 16, 22, (514,590,0): 34, 19, 24, (514,591,0): 34, 21, 28, (514,592,0): 35, 19, 29, (514,593,0): 37, 21, 31, (514,594,0): 38, 21, 31, (514,595,0): 41, 18, 26, (514,596,0): 48, 12, 24, (514,597,0): 61, 13, 25, (514,598,0): 79, 18, 34, (514,599,0): 90, 23, 40, (515,0,0): 41, 66, 73, (515,1,0): 41, 66, 73, (515,2,0): 41, 66, 73, (515,3,0): 41, 66, 73, (515,4,0): 41, 66, 73, (515,5,0): 41, 66, 73, (515,6,0): 41, 66, 73, (515,7,0): 41, 66, 73, (515,8,0): 41, 66, 73, (515,9,0): 41, 66, 73, (515,10,0): 42, 67, 74, (515,11,0): 42, 67, 74, (515,12,0): 43, 68, 75, (515,13,0): 43, 68, 75, (515,14,0): 44, 69, 76, (515,15,0): 44, 69, 76, (515,16,0): 44, 69, 76, (515,17,0): 44, 69, 76, (515,18,0): 44, 69, 76, (515,19,0): 44, 69, 76, (515,20,0): 44, 69, 76, (515,21,0): 44, 69, 76, (515,22,0): 44, 69, 76, (515,23,0): 44, 69, 76, (515,24,0): 47, 72, 79, (515,25,0): 47, 72, 79, (515,26,0): 48, 73, 80, (515,27,0): 48, 73, 80, (515,28,0): 49, 74, 81, (515,29,0): 49, 74, 81, (515,30,0): 50, 75, 82, (515,31,0): 50, 75, 82, (515,32,0): 51, 74, 82, (515,33,0): 51, 74, 82, (515,34,0): 53, 73, 82, (515,35,0): 54, 74, 83, (515,36,0): 54, 74, 83, (515,37,0): 55, 75, 84, (515,38,0): 56, 74, 84, (515,39,0): 57, 75, 85, (515,40,0): 58, 75, 85, (515,41,0): 58, 75, 85, (515,42,0): 58, 75, 85, (515,43,0): 59, 76, 86, (515,44,0): 61, 75, 86, (515,45,0): 62, 76, 87, (515,46,0): 62, 76, 87, (515,47,0): 63, 77, 88, (515,48,0): 64, 76, 88, (515,49,0): 65, 77, 89, (515,50,0): 67, 77, 89, (515,51,0): 68, 78, 90, (515,52,0): 68, 78, 90, (515,53,0): 69, 79, 91, (515,54,0): 70, 78, 89, (515,55,0): 70, 78, 89, (515,56,0): 73, 80, 90, (515,57,0): 73, 80, 90, (515,58,0): 73, 80, 88, (515,59,0): 74, 81, 89, (515,60,0): 77, 81, 90, (515,61,0): 77, 81, 90, (515,62,0): 77, 81, 90, (515,63,0): 79, 82, 91, (515,64,0): 82, 82, 90, (515,65,0): 84, 83, 89, (515,66,0): 84, 83, 89, (515,67,0): 84, 83, 89, (515,68,0): 86, 83, 90, (515,69,0): 86, 84, 89, (515,70,0): 86, 84, 89, (515,71,0): 86, 84, 87, (515,72,0): 88, 83, 87, (515,73,0): 87, 82, 86, (515,74,0): 88, 82, 86, (515,75,0): 86, 80, 82, (515,76,0): 85, 79, 81, (515,77,0): 84, 78, 78, (515,78,0): 85, 76, 79, (515,79,0): 84, 75, 76, (515,80,0): 84, 74, 73, (515,81,0): 84, 74, 72, (515,82,0): 83, 73, 71, (515,83,0): 83, 73, 71, (515,84,0): 82, 72, 70, (515,85,0): 82, 72, 70, (515,86,0): 81, 71, 69, (515,87,0): 81, 71, 69, (515,88,0): 83, 73, 71, (515,89,0): 83, 73, 71, (515,90,0): 82, 72, 70, (515,91,0): 81, 71, 69, (515,92,0): 79, 69, 67, (515,93,0): 78, 68, 66, (515,94,0): 77, 67, 65, (515,95,0): 76, 68, 65, (515,96,0): 73, 69, 66, (515,97,0): 71, 70, 66, (515,98,0): 71, 70, 66, (515,99,0): 70, 69, 65, (515,100,0): 69, 68, 64, (515,101,0): 67, 66, 62, (515,102,0): 64, 63, 59, (515,103,0): 63, 62, 58, (515,104,0): 66, 62, 59, (515,105,0): 66, 62, 59, (515,106,0): 65, 61, 58, (515,107,0): 65, 61, 58, (515,108,0): 64, 60, 57, (515,109,0): 64, 60, 57, (515,110,0): 64, 59, 56, (515,111,0): 63, 59, 56, (515,112,0): 65, 61, 58, (515,113,0): 65, 61, 58, (515,114,0): 65, 61, 58, (515,115,0): 65, 61, 58, (515,116,0): 63, 62, 60, (515,117,0): 63, 62, 60, (515,118,0): 62, 62, 62, (515,119,0): 62, 62, 62, (515,120,0): 60, 60, 60, (515,121,0): 60, 62, 61, (515,122,0): 61, 62, 64, (515,123,0): 62, 63, 65, (515,124,0): 59, 63, 66, (515,125,0): 58, 62, 65, (515,126,0): 57, 61, 64, (515,127,0): 55, 60, 64, (515,128,0): 56, 61, 67, (515,129,0): 54, 61, 67, (515,130,0): 55, 60, 64, (515,131,0): 54, 59, 63, (515,132,0): 53, 58, 62, (515,133,0): 53, 58, 62, (515,134,0): 53, 57, 60, (515,135,0): 53, 57, 60, (515,136,0): 52, 53, 57, (515,137,0): 52, 53, 55, (515,138,0): 52, 53, 55, (515,139,0): 51, 52, 54, (515,140,0): 52, 52, 52, (515,141,0): 51, 51, 51, (515,142,0): 51, 51, 51, (515,143,0): 52, 51, 49, (515,144,0): 52, 48, 45, (515,145,0): 52, 47, 43, (515,146,0): 50, 45, 41, (515,147,0): 48, 43, 39, (515,148,0): 47, 42, 38, (515,149,0): 47, 42, 38, (515,150,0): 48, 43, 39, (515,151,0): 48, 43, 39, (515,152,0): 45, 40, 36, (515,153,0): 45, 40, 36, (515,154,0): 45, 40, 36, (515,155,0): 45, 40, 36, (515,156,0): 45, 40, 36, (515,157,0): 45, 40, 36, (515,158,0): 45, 40, 36, (515,159,0): 45, 40, 36, (515,160,0): 42, 38, 35, (515,161,0): 42, 38, 35, (515,162,0): 42, 38, 35, (515,163,0): 42, 38, 35, (515,164,0): 42, 38, 35, (515,165,0): 42, 38, 35, (515,166,0): 42, 38, 35, (515,167,0): 42, 38, 35, (515,168,0): 42, 38, 35, (515,169,0): 42, 38, 35, (515,170,0): 42, 38, 35, (515,171,0): 41, 37, 34, (515,172,0): 40, 36, 33, (515,173,0): 40, 36, 33, (515,174,0): 40, 36, 33, (515,175,0): 39, 35, 32, (515,176,0): 40, 36, 37, (515,177,0): 40, 36, 37, (515,178,0): 40, 36, 37, (515,179,0): 40, 36, 37, (515,180,0): 40, 36, 37, (515,181,0): 40, 36, 37, (515,182,0): 40, 36, 37, (515,183,0): 40, 36, 37, (515,184,0): 38, 34, 35, (515,185,0): 38, 34, 35, (515,186,0): 38, 34, 35, (515,187,0): 38, 34, 35, (515,188,0): 38, 34, 35, (515,189,0): 38, 34, 35, (515,190,0): 38, 34, 35, (515,191,0): 38, 34, 35, (515,192,0): 38, 33, 39, (515,193,0): 38, 33, 39, (515,194,0): 38, 33, 39, (515,195,0): 38, 33, 39, (515,196,0): 38, 33, 39, (515,197,0): 38, 33, 39, (515,198,0): 38, 33, 39, (515,199,0): 38, 33, 39, (515,200,0): 38, 33, 39, (515,201,0): 38, 33, 39, (515,202,0): 38, 33, 39, (515,203,0): 38, 33, 39, (515,204,0): 38, 33, 39, (515,205,0): 38, 33, 39, (515,206,0): 38, 33, 39, (515,207,0): 36, 34, 39, (515,208,0): 36, 34, 39, (515,209,0): 35, 34, 39, (515,210,0): 35, 34, 39, (515,211,0): 35, 34, 39, (515,212,0): 35, 34, 39, (515,213,0): 35, 34, 39, (515,214,0): 35, 34, 39, (515,215,0): 35, 34, 39, (515,216,0): 34, 33, 38, (515,217,0): 34, 33, 38, (515,218,0): 34, 33, 38, (515,219,0): 34, 33, 38, (515,220,0): 34, 33, 38, (515,221,0): 34, 33, 38, (515,222,0): 34, 33, 38, (515,223,0): 34, 33, 38, (515,224,0): 35, 34, 40, (515,225,0): 35, 34, 40, (515,226,0): 35, 34, 40, (515,227,0): 35, 34, 40, (515,228,0): 35, 34, 40, (515,229,0): 35, 34, 40, (515,230,0): 35, 34, 40, (515,231,0): 35, 34, 40, (515,232,0): 35, 34, 40, (515,233,0): 35, 34, 40, (515,234,0): 35, 34, 40, (515,235,0): 35, 34, 40, (515,236,0): 35, 34, 40, (515,237,0): 35, 34, 40, (515,238,0): 35, 34, 40, (515,239,0): 35, 34, 40, (515,240,0): 39, 36, 47, (515,241,0): 40, 37, 48, (515,242,0): 42, 36, 48, (515,243,0): 43, 37, 49, (515,244,0): 43, 37, 49, (515,245,0): 44, 38, 50, (515,246,0): 45, 37, 52, (515,247,0): 45, 37, 52, (515,248,0): 48, 37, 54, (515,249,0): 49, 38, 55, (515,250,0): 50, 38, 58, (515,251,0): 52, 40, 60, (515,252,0): 55, 42, 62, (515,253,0): 56, 43, 63, (515,254,0): 58, 45, 65, (515,255,0): 59, 44, 63, (515,256,0): 68, 49, 68, (515,257,0): 71, 50, 67, (515,258,0): 74, 51, 69, (515,259,0): 76, 53, 71, (515,260,0): 79, 55, 71, (515,261,0): 81, 54, 71, (515,262,0): 81, 52, 70, (515,263,0): 80, 51, 69, (515,264,0): 79, 51, 66, (515,265,0): 78, 51, 66, (515,266,0): 78, 52, 65, (515,267,0): 76, 52, 65, (515,268,0): 75, 53, 65, (515,269,0): 73, 53, 64, (515,270,0): 73, 53, 62, (515,271,0): 69, 53, 63, (515,272,0): 66, 56, 67, (515,273,0): 64, 56, 69, (515,274,0): 64, 56, 69, (515,275,0): 64, 56, 69, (515,276,0): 66, 55, 69, (515,277,0): 66, 55, 69, (515,278,0): 66, 55, 69, (515,279,0): 66, 55, 69, (515,280,0): 66, 54, 68, (515,281,0): 67, 55, 69, (515,282,0): 69, 55, 70, (515,283,0): 71, 57, 72, (515,284,0): 73, 59, 74, (515,285,0): 74, 60, 75, (515,286,0): 77, 60, 76, (515,287,0): 78, 61, 77, (515,288,0): 81, 63, 79, (515,289,0): 81, 63, 79, (515,290,0): 81, 63, 79, (515,291,0): 82, 64, 80, (515,292,0): 84, 63, 78, (515,293,0): 85, 64, 79, (515,294,0): 85, 64, 79, (515,295,0): 85, 65, 77, (515,296,0): 86, 64, 77, (515,297,0): 86, 64, 77, (515,298,0): 87, 63, 76, (515,299,0): 88, 64, 77, (515,300,0): 88, 64, 77, (515,301,0): 89, 65, 78, (515,302,0): 91, 65, 76, (515,303,0): 91, 65, 76, (515,304,0): 94, 66, 80, (515,305,0): 96, 68, 82, (515,306,0): 100, 70, 82, (515,307,0): 99, 69, 77, (515,308,0): 101, 69, 74, (515,309,0): 104, 69, 73, (515,310,0): 111, 72, 77, (515,311,0): 116, 74, 78, (515,312,0): 125, 76, 82, (515,313,0): 136, 81, 87, (515,314,0): 150, 89, 96, (515,315,0): 160, 94, 96, (515,316,0): 170, 99, 97, (515,317,0): 181, 106, 100, (515,318,0): 195, 118, 108, (515,319,0): 205, 130, 109, (515,320,0): 223, 155, 116, (515,321,0): 249, 186, 142, (515,322,0): 255, 206, 168, (515,323,0): 247, 196, 165, (515,324,0): 220, 175, 154, (515,325,0): 201, 165, 151, (515,326,0): 189, 159, 151, (515,327,0): 177, 153, 149, (515,328,0): 176, 157, 153, (515,329,0): 169, 151, 149, (515,330,0): 155, 139, 139, (515,331,0): 139, 121, 121, (515,332,0): 118, 98, 100, (515,333,0): 95, 74, 79, (515,334,0): 77, 54, 62, (515,335,0): 66, 43, 51, (515,336,0): 57, 40, 46, (515,337,0): 53, 38, 43, (515,338,0): 49, 34, 39, (515,339,0): 48, 33, 38, (515,340,0): 47, 32, 39, (515,341,0): 46, 31, 38, (515,342,0): 42, 27, 34, (515,343,0): 39, 24, 31, (515,344,0): 37, 21, 31, (515,345,0): 34, 18, 28, (515,346,0): 30, 14, 25, (515,347,0): 29, 13, 24, (515,348,0): 31, 15, 26, (515,349,0): 31, 15, 26, (515,350,0): 30, 14, 27, (515,351,0): 28, 12, 25, (515,352,0): 30, 14, 25, (515,353,0): 30, 14, 25, (515,354,0): 29, 13, 24, (515,355,0): 29, 13, 24, (515,356,0): 28, 12, 23, (515,357,0): 27, 11, 22, (515,358,0): 27, 11, 22, (515,359,0): 26, 10, 21, (515,360,0): 27, 11, 22, (515,361,0): 27, 11, 22, (515,362,0): 27, 11, 22, (515,363,0): 27, 11, 22, (515,364,0): 27, 11, 22, (515,365,0): 27, 11, 22, (515,366,0): 27, 11, 22, (515,367,0): 27, 11, 22, (515,368,0): 26, 10, 20, (515,369,0): 25, 9, 19, (515,370,0): 25, 9, 19, (515,371,0): 25, 9, 19, (515,372,0): 26, 10, 20, (515,373,0): 28, 12, 22, (515,374,0): 30, 14, 24, (515,375,0): 31, 15, 25, (515,376,0): 27, 11, 21, (515,377,0): 28, 12, 22, (515,378,0): 28, 12, 22, (515,379,0): 29, 13, 23, (515,380,0): 29, 13, 23, (515,381,0): 30, 14, 24, (515,382,0): 30, 14, 24, (515,383,0): 30, 14, 25, (515,384,0): 28, 12, 25, (515,385,0): 29, 13, 26, (515,386,0): 30, 13, 29, (515,387,0): 30, 14, 27, (515,388,0): 30, 14, 27, (515,389,0): 30, 14, 25, (515,390,0): 29, 13, 26, (515,391,0): 28, 12, 23, (515,392,0): 27, 11, 22, (515,393,0): 27, 11, 21, (515,394,0): 27, 11, 21, (515,395,0): 27, 12, 19, (515,396,0): 27, 11, 21, (515,397,0): 27, 12, 19, (515,398,0): 27, 12, 19, (515,399,0): 27, 12, 17, (515,400,0): 26, 11, 16, (515,401,0): 26, 11, 16, (515,402,0): 26, 11, 16, (515,403,0): 26, 11, 16, (515,404,0): 26, 11, 16, (515,405,0): 26, 11, 16, (515,406,0): 26, 11, 16, (515,407,0): 26, 11, 16, (515,408,0): 28, 13, 18, (515,409,0): 28, 13, 18, (515,410,0): 28, 13, 18, (515,411,0): 29, 14, 19, (515,412,0): 29, 14, 19, (515,413,0): 30, 15, 20, (515,414,0): 30, 15, 20, (515,415,0): 30, 15, 20, (515,416,0): 34, 19, 24, (515,417,0): 34, 19, 24, (515,418,0): 35, 20, 25, (515,419,0): 36, 21, 26, (515,420,0): 37, 22, 27, (515,421,0): 39, 24, 29, (515,422,0): 40, 25, 30, (515,423,0): 40, 25, 30, (515,424,0): 43, 28, 33, (515,425,0): 43, 28, 33, (515,426,0): 43, 28, 33, (515,427,0): 43, 28, 33, (515,428,0): 44, 29, 34, (515,429,0): 44, 29, 34, (515,430,0): 45, 30, 35, (515,431,0): 47, 31, 34, (515,432,0): 51, 32, 36, (515,433,0): 52, 32, 34, (515,434,0): 51, 31, 33, (515,435,0): 50, 30, 32, (515,436,0): 49, 29, 31, (515,437,0): 47, 27, 29, (515,438,0): 46, 26, 28, (515,439,0): 46, 26, 28, (515,440,0): 46, 26, 28, (515,441,0): 45, 25, 27, (515,442,0): 43, 23, 25, (515,443,0): 41, 21, 23, (515,444,0): 39, 19, 21, (515,445,0): 36, 16, 18, (515,446,0): 35, 15, 17, (515,447,0): 33, 14, 16, (515,448,0): 28, 11, 17, (515,449,0): 27, 12, 17, (515,450,0): 28, 13, 18, (515,451,0): 28, 13, 18, (515,452,0): 29, 14, 19, (515,453,0): 30, 15, 20, (515,454,0): 30, 15, 20, (515,455,0): 31, 16, 21, (515,456,0): 31, 16, 21, (515,457,0): 31, 16, 21, (515,458,0): 32, 17, 22, (515,459,0): 32, 17, 22, (515,460,0): 33, 18, 23, (515,461,0): 33, 18, 23, (515,462,0): 33, 18, 23, (515,463,0): 37, 18, 22, (515,464,0): 41, 16, 22, (515,465,0): 43, 16, 21, (515,466,0): 43, 18, 22, (515,467,0): 44, 19, 23, (515,468,0): 43, 21, 24, (515,469,0): 43, 21, 24, (515,470,0): 41, 21, 23, (515,471,0): 40, 20, 22, (515,472,0): 43, 21, 24, (515,473,0): 45, 20, 24, (515,474,0): 48, 21, 26, (515,475,0): 51, 22, 27, (515,476,0): 53, 22, 28, (515,477,0): 54, 21, 28, (515,478,0): 55, 20, 27, (515,479,0): 55, 20, 27, (515,480,0): 48, 15, 26, (515,481,0): 45, 13, 24, (515,482,0): 41, 11, 21, (515,483,0): 36, 9, 18, (515,484,0): 32, 6, 17, (515,485,0): 28, 7, 16, (515,486,0): 26, 6, 15, (515,487,0): 25, 8, 16, (515,488,0): 22, 6, 16, (515,489,0): 20, 7, 16, (515,490,0): 21, 8, 18, (515,491,0): 20, 7, 17, (515,492,0): 21, 5, 16, (515,493,0): 19, 1, 13, (515,494,0): 16, 0, 12, (515,495,0): 16, 0, 8, (515,496,0): 22, 2, 14, (515,497,0): 21, 1, 12, (515,498,0): 22, 0, 12, (515,499,0): 22, 0, 12, (515,500,0): 23, 1, 13, (515,501,0): 25, 3, 15, (515,502,0): 28, 4, 17, (515,503,0): 29, 5, 18, (515,504,0): 27, 1, 14, (515,505,0): 28, 2, 15, (515,506,0): 29, 3, 16, (515,507,0): 31, 5, 18, (515,508,0): 34, 6, 20, (515,509,0): 35, 7, 21, (515,510,0): 37, 9, 23, (515,511,0): 39, 9, 21, (515,512,0): 42, 9, 18, (515,513,0): 43, 8, 15, (515,514,0): 43, 8, 15, (515,515,0): 44, 9, 16, (515,516,0): 46, 9, 17, (515,517,0): 51, 11, 19, (515,518,0): 55, 14, 22, (515,519,0): 57, 14, 21, (515,520,0): 63, 18, 25, (515,521,0): 62, 17, 24, (515,522,0): 66, 16, 25, (515,523,0): 69, 20, 26, (515,524,0): 75, 24, 31, (515,525,0): 76, 25, 32, (515,526,0): 75, 22, 30, (515,527,0): 72, 21, 28, (515,528,0): 74, 23, 30, (515,529,0): 73, 24, 30, (515,530,0): 71, 24, 30, (515,531,0): 71, 26, 31, (515,532,0): 69, 27, 31, (515,533,0): 68, 26, 30, (515,534,0): 67, 26, 30, (515,535,0): 66, 27, 30, (515,536,0): 66, 27, 30, (515,537,0): 67, 28, 31, (515,538,0): 70, 29, 33, (515,539,0): 72, 31, 35, (515,540,0): 74, 32, 36, (515,541,0): 77, 32, 37, (515,542,0): 78, 31, 37, (515,543,0): 75, 32, 39, (515,544,0): 63, 23, 31, (515,545,0): 60, 23, 31, (515,546,0): 59, 22, 30, (515,547,0): 57, 20, 28, (515,548,0): 55, 18, 26, (515,549,0): 53, 16, 24, (515,550,0): 52, 15, 23, (515,551,0): 51, 14, 22, (515,552,0): 57, 20, 28, (515,553,0): 55, 18, 26, (515,554,0): 54, 17, 25, (515,555,0): 52, 15, 23, (515,556,0): 52, 15, 23, (515,557,0): 54, 17, 25, (515,558,0): 55, 18, 26, (515,559,0): 56, 20, 30, (515,560,0): 44, 14, 26, (515,561,0): 42, 14, 28, (515,562,0): 41, 13, 27, (515,563,0): 41, 13, 27, (515,564,0): 40, 14, 27, (515,565,0): 40, 14, 27, (515,566,0): 41, 15, 28, (515,567,0): 39, 15, 28, (515,568,0): 40, 16, 29, (515,569,0): 39, 15, 28, (515,570,0): 37, 15, 27, (515,571,0): 36, 14, 26, (515,572,0): 36, 14, 26, (515,573,0): 37, 15, 27, (515,574,0): 37, 17, 28, (515,575,0): 38, 18, 29, (515,576,0): 36, 19, 29, (515,577,0): 34, 17, 27, (515,578,0): 37, 16, 25, (515,579,0): 44, 18, 27, (515,580,0): 54, 23, 31, (515,581,0): 63, 26, 34, (515,582,0): 66, 25, 33, (515,583,0): 68, 23, 30, (515,584,0): 69, 22, 30, (515,585,0): 68, 23, 30, (515,586,0): 64, 23, 31, (515,587,0): 55, 20, 26, (515,588,0): 44, 17, 22, (515,589,0): 37, 16, 21, (515,590,0): 31, 19, 21, (515,591,0): 32, 21, 25, (515,592,0): 33, 20, 29, (515,593,0): 36, 20, 30, (515,594,0): 36, 21, 28, (515,595,0): 36, 17, 23, (515,596,0): 38, 12, 21, (515,597,0): 44, 13, 21, (515,598,0): 55, 15, 24, (515,599,0): 62, 19, 28, (516,0,0): 41, 66, 73, (516,1,0): 41, 66, 73, (516,2,0): 41, 66, 73, (516,3,0): 41, 66, 73, (516,4,0): 41, 66, 73, (516,5,0): 41, 66, 73, (516,6,0): 41, 66, 73, (516,7,0): 41, 66, 73, (516,8,0): 41, 66, 73, (516,9,0): 41, 66, 73, (516,10,0): 42, 67, 74, (516,11,0): 42, 67, 74, (516,12,0): 43, 68, 75, (516,13,0): 43, 68, 75, (516,14,0): 44, 69, 76, (516,15,0): 44, 69, 76, (516,16,0): 44, 69, 76, (516,17,0): 44, 69, 76, (516,18,0): 44, 69, 76, (516,19,0): 44, 69, 76, (516,20,0): 44, 69, 76, (516,21,0): 44, 69, 76, (516,22,0): 44, 69, 76, (516,23,0): 44, 69, 76, (516,24,0): 47, 72, 79, (516,25,0): 47, 72, 79, (516,26,0): 48, 73, 80, (516,27,0): 48, 73, 80, (516,28,0): 49, 74, 81, (516,29,0): 49, 74, 81, (516,30,0): 50, 75, 82, (516,31,0): 50, 75, 82, (516,32,0): 51, 74, 82, (516,33,0): 52, 75, 83, (516,34,0): 54, 74, 83, (516,35,0): 55, 75, 84, (516,36,0): 55, 75, 84, (516,37,0): 56, 76, 85, (516,38,0): 57, 75, 85, (516,39,0): 57, 75, 85, (516,40,0): 58, 75, 85, (516,41,0): 59, 76, 86, (516,42,0): 59, 76, 86, (516,43,0): 60, 77, 87, (516,44,0): 62, 76, 87, (516,45,0): 63, 77, 88, (516,46,0): 63, 77, 88, (516,47,0): 63, 77, 88, (516,48,0): 64, 76, 88, (516,49,0): 64, 76, 88, (516,50,0): 66, 76, 88, (516,51,0): 67, 77, 89, (516,52,0): 67, 77, 89, (516,53,0): 68, 78, 90, (516,54,0): 69, 77, 88, (516,55,0): 70, 78, 89, (516,56,0): 72, 79, 89, (516,57,0): 73, 80, 90, (516,58,0): 73, 80, 88, (516,59,0): 73, 80, 88, (516,60,0): 76, 80, 89, (516,61,0): 77, 81, 90, (516,62,0): 77, 81, 90, (516,63,0): 78, 81, 90, (516,64,0): 81, 81, 91, (516,65,0): 82, 82, 90, (516,66,0): 82, 82, 90, (516,67,0): 83, 83, 91, (516,68,0): 85, 84, 92, (516,69,0): 85, 84, 90, (516,70,0): 87, 84, 91, (516,71,0): 87, 85, 90, (516,72,0): 87, 85, 90, (516,73,0): 87, 85, 90, (516,74,0): 88, 83, 89, (516,75,0): 87, 82, 86, (516,76,0): 87, 81, 85, (516,77,0): 87, 81, 83, (516,78,0): 86, 80, 84, (516,79,0): 86, 80, 82, (516,80,0): 86, 78, 76, (516,81,0): 85, 77, 75, (516,82,0): 85, 77, 75, (516,83,0): 84, 76, 74, (516,84,0): 84, 76, 74, (516,85,0): 83, 75, 73, (516,86,0): 83, 75, 73, (516,87,0): 83, 75, 73, (516,88,0): 83, 75, 73, (516,89,0): 83, 75, 73, (516,90,0): 82, 74, 72, (516,91,0): 82, 74, 72, (516,92,0): 81, 73, 71, (516,93,0): 80, 72, 70, (516,94,0): 79, 71, 69, (516,95,0): 79, 71, 69, (516,96,0): 76, 72, 71, (516,97,0): 76, 72, 71, (516,98,0): 75, 71, 70, (516,99,0): 75, 71, 70, (516,100,0): 73, 69, 68, (516,101,0): 70, 66, 65, (516,102,0): 68, 64, 63, (516,103,0): 66, 62, 61, (516,104,0): 67, 63, 62, (516,105,0): 67, 63, 62, (516,106,0): 66, 62, 61, (516,107,0): 66, 62, 61, (516,108,0): 65, 61, 60, (516,109,0): 65, 61, 60, (516,110,0): 64, 60, 59, (516,111,0): 64, 60, 59, (516,112,0): 65, 61, 60, (516,113,0): 63, 62, 60, (516,114,0): 63, 62, 60, (516,115,0): 63, 62, 60, (516,116,0): 63, 61, 62, (516,117,0): 63, 61, 62, (516,118,0): 62, 62, 64, (516,119,0): 62, 62, 64, (516,120,0): 60, 61, 63, (516,121,0): 61, 62, 64, (516,122,0): 62, 63, 67, (516,123,0): 61, 65, 68, (516,124,0): 61, 64, 69, (516,125,0): 61, 64, 69, (516,126,0): 60, 63, 68, (516,127,0): 58, 63, 67, (516,128,0): 59, 64, 70, (516,129,0): 57, 64, 70, (516,130,0): 58, 63, 69, (516,131,0): 57, 62, 68, (516,132,0): 55, 60, 64, (516,133,0): 54, 59, 63, (516,134,0): 54, 57, 62, (516,135,0): 54, 58, 61, (516,136,0): 54, 55, 59, (516,137,0): 54, 55, 59, (516,138,0): 54, 55, 57, (516,139,0): 53, 54, 56, (516,140,0): 54, 54, 56, (516,141,0): 53, 53, 55, (516,142,0): 53, 53, 53, (516,143,0): 54, 53, 51, (516,144,0): 53, 49, 46, (516,145,0): 53, 48, 44, (516,146,0): 51, 46, 42, (516,147,0): 49, 44, 40, (516,148,0): 48, 43, 39, (516,149,0): 47, 42, 38, (516,150,0): 48, 43, 39, (516,151,0): 48, 43, 39, (516,152,0): 45, 40, 36, (516,153,0): 45, 40, 36, (516,154,0): 45, 40, 36, (516,155,0): 45, 40, 36, (516,156,0): 45, 40, 36, (516,157,0): 45, 40, 36, (516,158,0): 45, 40, 36, (516,159,0): 45, 40, 36, (516,160,0): 43, 39, 36, (516,161,0): 43, 39, 36, (516,162,0): 43, 39, 36, (516,163,0): 43, 39, 36, (516,164,0): 43, 39, 36, (516,165,0): 43, 39, 36, (516,166,0): 43, 39, 36, (516,167,0): 43, 39, 36, (516,168,0): 43, 39, 36, (516,169,0): 42, 38, 35, (516,170,0): 42, 38, 35, (516,171,0): 42, 38, 35, (516,172,0): 41, 37, 34, (516,173,0): 40, 36, 33, (516,174,0): 40, 36, 33, (516,175,0): 40, 36, 33, (516,176,0): 40, 36, 37, (516,177,0): 40, 36, 37, (516,178,0): 40, 36, 37, (516,179,0): 40, 36, 37, (516,180,0): 40, 36, 37, (516,181,0): 40, 36, 37, (516,182,0): 40, 36, 37, (516,183,0): 40, 36, 37, (516,184,0): 38, 34, 35, (516,185,0): 38, 34, 35, (516,186,0): 38, 34, 35, (516,187,0): 38, 34, 35, (516,188,0): 38, 34, 35, (516,189,0): 38, 34, 35, (516,190,0): 38, 34, 35, (516,191,0): 38, 34, 35, (516,192,0): 38, 33, 39, (516,193,0): 38, 33, 39, (516,194,0): 38, 33, 39, (516,195,0): 38, 33, 39, (516,196,0): 38, 33, 39, (516,197,0): 38, 33, 39, (516,198,0): 38, 33, 39, (516,199,0): 38, 33, 39, (516,200,0): 38, 33, 39, (516,201,0): 38, 33, 39, (516,202,0): 38, 33, 39, (516,203,0): 38, 33, 39, (516,204,0): 38, 33, 39, (516,205,0): 38, 33, 39, (516,206,0): 38, 33, 39, (516,207,0): 36, 34, 39, (516,208,0): 36, 34, 39, (516,209,0): 35, 34, 39, (516,210,0): 35, 34, 39, (516,211,0): 35, 34, 39, (516,212,0): 35, 34, 39, (516,213,0): 35, 34, 39, (516,214,0): 35, 34, 39, (516,215,0): 35, 34, 39, (516,216,0): 33, 32, 37, (516,217,0): 33, 32, 37, (516,218,0): 33, 32, 37, (516,219,0): 33, 32, 37, (516,220,0): 33, 32, 37, (516,221,0): 33, 32, 37, (516,222,0): 33, 32, 37, (516,223,0): 33, 32, 37, (516,224,0): 35, 34, 40, (516,225,0): 35, 34, 40, (516,226,0): 35, 34, 40, (516,227,0): 35, 34, 40, (516,228,0): 35, 34, 40, (516,229,0): 35, 34, 40, (516,230,0): 35, 34, 40, (516,231,0): 35, 34, 40, (516,232,0): 35, 34, 40, (516,233,0): 35, 34, 40, (516,234,0): 35, 34, 40, (516,235,0): 35, 34, 40, (516,236,0): 35, 34, 40, (516,237,0): 35, 34, 40, (516,238,0): 35, 34, 40, (516,239,0): 35, 34, 40, (516,240,0): 39, 36, 47, (516,241,0): 39, 36, 47, (516,242,0): 39, 36, 47, (516,243,0): 40, 37, 48, (516,244,0): 42, 36, 48, (516,245,0): 43, 37, 49, (516,246,0): 43, 37, 51, (516,247,0): 44, 38, 52, (516,248,0): 45, 36, 53, (516,249,0): 45, 36, 53, (516,250,0): 48, 36, 56, (516,251,0): 50, 38, 58, (516,252,0): 51, 39, 59, (516,253,0): 53, 41, 61, (516,254,0): 55, 42, 62, (516,255,0): 56, 41, 60, (516,256,0): 63, 46, 64, (516,257,0): 66, 47, 66, (516,258,0): 70, 49, 66, (516,259,0): 73, 50, 68, (516,260,0): 77, 52, 71, (516,261,0): 78, 53, 72, (516,262,0): 81, 54, 71, (516,263,0): 81, 54, 71, (516,264,0): 79, 52, 67, (516,265,0): 79, 52, 67, (516,266,0): 78, 51, 66, (516,267,0): 75, 51, 65, (516,268,0): 73, 51, 63, (516,269,0): 72, 52, 63, (516,270,0): 72, 52, 63, (516,271,0): 69, 53, 64, (516,272,0): 64, 54, 65, (516,273,0): 62, 54, 67, (516,274,0): 62, 54, 67, (516,275,0): 62, 54, 67, (516,276,0): 64, 53, 67, (516,277,0): 64, 53, 67, (516,278,0): 64, 53, 67, (516,279,0): 64, 53, 67, (516,280,0): 65, 53, 67, (516,281,0): 66, 54, 68, (516,282,0): 68, 54, 69, (516,283,0): 70, 56, 71, (516,284,0): 72, 58, 73, (516,285,0): 74, 60, 75, (516,286,0): 78, 61, 77, (516,287,0): 78, 61, 77, (516,288,0): 81, 63, 79, (516,289,0): 81, 63, 79, (516,290,0): 83, 62, 77, (516,291,0): 84, 63, 78, (516,292,0): 84, 63, 78, (516,293,0): 85, 64, 79, (516,294,0): 86, 64, 77, (516,295,0): 86, 64, 77, (516,296,0): 86, 62, 76, (516,297,0): 86, 62, 75, (516,298,0): 87, 63, 76, (516,299,0): 87, 63, 76, (516,300,0): 90, 64, 75, (516,301,0): 90, 64, 75, (516,302,0): 91, 65, 76, (516,303,0): 91, 65, 76, (516,304,0): 93, 65, 79, (516,305,0): 97, 67, 79, (516,306,0): 99, 69, 79, (516,307,0): 99, 69, 77, (516,308,0): 100, 68, 73, (516,309,0): 104, 69, 73, (516,310,0): 111, 72, 77, (516,311,0): 116, 73, 80, (516,312,0): 126, 77, 83, (516,313,0): 138, 83, 89, (516,314,0): 151, 90, 95, (516,315,0): 161, 95, 97, (516,316,0): 171, 100, 96, (516,317,0): 182, 108, 99, (516,318,0): 196, 120, 107, (516,319,0): 206, 131, 108, (516,320,0): 225, 157, 118, (516,321,0): 248, 187, 143, (516,322,0): 255, 202, 165, (516,323,0): 239, 189, 162, (516,324,0): 211, 168, 151, (516,325,0): 193, 159, 149, (516,326,0): 184, 155, 151, (516,327,0): 176, 152, 152, (516,328,0): 172, 152, 154, (516,329,0): 165, 146, 150, (516,330,0): 154, 135, 141, (516,331,0): 137, 118, 124, (516,332,0): 117, 96, 105, (516,333,0): 94, 73, 82, (516,334,0): 75, 51, 64, (516,335,0): 63, 41, 53, (516,336,0): 58, 41, 49, (516,337,0): 54, 39, 44, (516,338,0): 50, 35, 40, (516,339,0): 48, 33, 38, (516,340,0): 48, 33, 40, (516,341,0): 46, 31, 38, (516,342,0): 43, 28, 35, (516,343,0): 39, 24, 31, (516,344,0): 38, 22, 32, (516,345,0): 34, 18, 28, (516,346,0): 31, 15, 26, (516,347,0): 30, 14, 25, (516,348,0): 31, 15, 26, (516,349,0): 32, 16, 27, (516,350,0): 30, 14, 27, (516,351,0): 29, 13, 26, (516,352,0): 30, 14, 25, (516,353,0): 30, 14, 25, (516,354,0): 29, 13, 24, (516,355,0): 29, 13, 24, (516,356,0): 29, 13, 24, (516,357,0): 28, 12, 23, (516,358,0): 28, 12, 23, (516,359,0): 28, 12, 23, (516,360,0): 27, 11, 22, (516,361,0): 27, 11, 22, (516,362,0): 27, 11, 22, (516,363,0): 27, 11, 22, (516,364,0): 27, 11, 22, (516,365,0): 27, 11, 22, (516,366,0): 27, 11, 22, (516,367,0): 27, 11, 22, (516,368,0): 25, 12, 21, (516,369,0): 24, 11, 20, (516,370,0): 24, 11, 20, (516,371,0): 23, 10, 19, (516,372,0): 24, 11, 20, (516,373,0): 25, 12, 21, (516,374,0): 27, 14, 23, (516,375,0): 28, 15, 24, (516,376,0): 25, 12, 21, (516,377,0): 25, 12, 21, (516,378,0): 25, 12, 21, (516,379,0): 26, 13, 22, (516,380,0): 26, 13, 22, (516,381,0): 27, 14, 23, (516,382,0): 27, 14, 23, (516,383,0): 28, 15, 25, (516,384,0): 25, 11, 26, (516,385,0): 25, 11, 26, (516,386,0): 26, 12, 29, (516,387,0): 27, 13, 28, (516,388,0): 27, 13, 28, (516,389,0): 26, 12, 25, (516,390,0): 25, 11, 26, (516,391,0): 25, 11, 24, (516,392,0): 25, 11, 24, (516,393,0): 25, 12, 22, (516,394,0): 25, 12, 22, (516,395,0): 25, 12, 21, (516,396,0): 25, 12, 22, (516,397,0): 25, 12, 21, (516,398,0): 25, 12, 21, (516,399,0): 25, 12, 19, (516,400,0): 25, 10, 15, (516,401,0): 25, 10, 15, (516,402,0): 25, 10, 15, (516,403,0): 25, 10, 15, (516,404,0): 25, 10, 15, (516,405,0): 25, 10, 15, (516,406,0): 25, 10, 15, (516,407,0): 25, 10, 15, (516,408,0): 27, 12, 17, (516,409,0): 27, 12, 17, (516,410,0): 27, 12, 17, (516,411,0): 28, 13, 18, (516,412,0): 28, 13, 18, (516,413,0): 29, 14, 19, (516,414,0): 29, 14, 19, (516,415,0): 29, 14, 19, (516,416,0): 33, 18, 23, (516,417,0): 33, 18, 23, (516,418,0): 34, 19, 24, (516,419,0): 35, 20, 25, (516,420,0): 36, 21, 26, (516,421,0): 37, 22, 27, (516,422,0): 37, 22, 27, (516,423,0): 38, 23, 28, (516,424,0): 41, 26, 31, (516,425,0): 41, 26, 31, (516,426,0): 42, 27, 32, (516,427,0): 43, 28, 33, (516,428,0): 43, 28, 33, (516,429,0): 44, 29, 34, (516,430,0): 44, 29, 34, (516,431,0): 45, 29, 32, (516,432,0): 49, 30, 34, (516,433,0): 50, 30, 32, (516,434,0): 49, 29, 31, (516,435,0): 49, 29, 31, (516,436,0): 48, 28, 30, (516,437,0): 47, 27, 29, (516,438,0): 46, 26, 28, (516,439,0): 46, 26, 28, (516,440,0): 46, 26, 28, (516,441,0): 45, 25, 27, (516,442,0): 43, 23, 25, (516,443,0): 41, 21, 23, (516,444,0): 39, 19, 21, (516,445,0): 36, 16, 18, (516,446,0): 35, 15, 17, (516,447,0): 33, 14, 16, (516,448,0): 28, 11, 17, (516,449,0): 27, 12, 17, (516,450,0): 28, 13, 18, (516,451,0): 28, 13, 18, (516,452,0): 28, 13, 18, (516,453,0): 29, 14, 19, (516,454,0): 29, 14, 19, (516,455,0): 29, 14, 19, (516,456,0): 29, 14, 19, (516,457,0): 30, 15, 20, (516,458,0): 30, 15, 20, (516,459,0): 30, 15, 20, (516,460,0): 31, 16, 21, (516,461,0): 31, 16, 21, (516,462,0): 32, 17, 22, (516,463,0): 35, 16, 20, (516,464,0): 40, 15, 21, (516,465,0): 42, 15, 20, (516,466,0): 42, 17, 21, (516,467,0): 44, 19, 23, (516,468,0): 42, 20, 23, (516,469,0): 42, 20, 23, (516,470,0): 41, 19, 22, (516,471,0): 41, 19, 22, (516,472,0): 45, 20, 24, (516,473,0): 46, 21, 25, (516,474,0): 48, 21, 26, (516,475,0): 52, 23, 28, (516,476,0): 53, 22, 28, (516,477,0): 54, 21, 28, (516,478,0): 54, 19, 26, (516,479,0): 54, 19, 26, (516,480,0): 46, 13, 24, (516,481,0): 44, 12, 23, (516,482,0): 41, 11, 21, (516,483,0): 37, 10, 19, (516,484,0): 34, 8, 19, (516,485,0): 30, 9, 18, (516,486,0): 28, 8, 17, (516,487,0): 26, 9, 17, (516,488,0): 23, 7, 17, (516,489,0): 23, 7, 17, (516,490,0): 21, 8, 18, (516,491,0): 21, 8, 18, (516,492,0): 21, 5, 16, (516,493,0): 17, 1, 12, (516,494,0): 14, 0, 11, (516,495,0): 13, 0, 7, (516,496,0): 18, 0, 12, (516,497,0): 18, 1, 11, (516,498,0): 20, 0, 11, (516,499,0): 20, 0, 11, (516,500,0): 21, 1, 12, (516,501,0): 23, 3, 14, (516,502,0): 26, 4, 16, (516,503,0): 27, 5, 17, (516,504,0): 26, 2, 15, (516,505,0): 27, 3, 16, (516,506,0): 28, 4, 17, (516,507,0): 30, 6, 19, (516,508,0): 34, 8, 21, (516,509,0): 36, 10, 23, (516,510,0): 38, 12, 25, (516,511,0): 39, 11, 23, (516,512,0): 38, 6, 17, (516,513,0): 40, 7, 16, (516,514,0): 40, 7, 16, (516,515,0): 41, 8, 17, (516,516,0): 45, 9, 19, (516,517,0): 47, 12, 19, (516,518,0): 50, 13, 21, (516,519,0): 53, 13, 22, (516,520,0): 64, 22, 32, (516,521,0): 62, 21, 29, (516,522,0): 64, 18, 28, (516,523,0): 68, 23, 30, (516,524,0): 75, 28, 36, (516,525,0): 78, 31, 39, (516,526,0): 76, 29, 37, (516,527,0): 73, 26, 34, (516,528,0): 68, 23, 30, (516,529,0): 66, 23, 30, (516,530,0): 66, 23, 30, (516,531,0): 64, 23, 29, (516,532,0): 63, 24, 29, (516,533,0): 64, 25, 30, (516,534,0): 62, 26, 30, (516,535,0): 62, 26, 30, (516,536,0): 61, 25, 29, (516,537,0): 62, 26, 30, (516,538,0): 67, 28, 33, (516,539,0): 70, 29, 35, (516,540,0): 72, 29, 36, (516,541,0): 73, 30, 37, (516,542,0): 74, 29, 36, (516,543,0): 72, 29, 36, (516,544,0): 61, 21, 29, (516,545,0): 57, 22, 29, (516,546,0): 56, 21, 28, (516,547,0): 55, 20, 27, (516,548,0): 53, 18, 25, (516,549,0): 52, 17, 24, (516,550,0): 51, 16, 23, (516,551,0): 50, 15, 22, (516,552,0): 55, 20, 27, (516,553,0): 53, 18, 25, (516,554,0): 52, 17, 24, (516,555,0): 50, 15, 22, (516,556,0): 50, 15, 22, (516,557,0): 52, 17, 24, (516,558,0): 53, 18, 25, (516,559,0): 53, 20, 29, (516,560,0): 45, 15, 27, (516,561,0): 43, 15, 29, (516,562,0): 43, 17, 30, (516,563,0): 43, 17, 30, (516,564,0): 43, 17, 30, (516,565,0): 43, 17, 30, (516,566,0): 40, 16, 29, (516,567,0): 40, 16, 29, (516,568,0): 42, 18, 31, (516,569,0): 40, 18, 30, (516,570,0): 39, 17, 29, (516,571,0): 38, 16, 28, (516,572,0): 37, 17, 28, (516,573,0): 38, 18, 29, (516,574,0): 39, 19, 30, (516,575,0): 38, 21, 31, (516,576,0): 33, 17, 28, (516,577,0): 30, 17, 27, (516,578,0): 30, 17, 26, (516,579,0): 34, 19, 26, (516,580,0): 43, 22, 29, (516,581,0): 50, 23, 30, (516,582,0): 58, 23, 30, (516,583,0): 62, 21, 29, (516,584,0): 78, 28, 37, (516,585,0): 79, 28, 37, (516,586,0): 77, 26, 35, (516,587,0): 68, 22, 32, (516,588,0): 52, 20, 25, (516,589,0): 40, 18, 21, (516,590,0): 32, 20, 20, (516,591,0): 31, 21, 22, (516,592,0): 34, 19, 26, (516,593,0): 36, 19, 29, (516,594,0): 36, 19, 27, (516,595,0): 35, 18, 24, (516,596,0): 36, 15, 22, (516,597,0): 38, 15, 21, (516,598,0): 44, 17, 22, (516,599,0): 49, 20, 25, (517,0,0): 41, 66, 73, (517,1,0): 41, 66, 73, (517,2,0): 41, 66, 73, (517,3,0): 41, 66, 73, (517,4,0): 41, 66, 73, (517,5,0): 41, 66, 73, (517,6,0): 41, 66, 73, (517,7,0): 41, 66, 73, (517,8,0): 41, 66, 73, (517,9,0): 41, 66, 73, (517,10,0): 42, 67, 74, (517,11,0): 42, 67, 74, (517,12,0): 43, 68, 75, (517,13,0): 43, 68, 75, (517,14,0): 44, 69, 76, (517,15,0): 44, 69, 76, (517,16,0): 44, 69, 76, (517,17,0): 44, 69, 76, (517,18,0): 44, 69, 76, (517,19,0): 44, 69, 76, (517,20,0): 44, 69, 76, (517,21,0): 44, 69, 76, (517,22,0): 44, 69, 76, (517,23,0): 44, 69, 76, (517,24,0): 47, 72, 79, (517,25,0): 47, 72, 79, (517,26,0): 48, 73, 80, (517,27,0): 48, 73, 80, (517,28,0): 49, 74, 81, (517,29,0): 49, 74, 81, (517,30,0): 50, 75, 82, (517,31,0): 50, 75, 82, (517,32,0): 52, 75, 83, (517,33,0): 52, 75, 83, (517,34,0): 54, 74, 83, (517,35,0): 55, 75, 84, (517,36,0): 56, 76, 85, (517,37,0): 56, 76, 85, (517,38,0): 57, 75, 85, (517,39,0): 58, 76, 86, (517,40,0): 59, 76, 86, (517,41,0): 59, 76, 86, (517,42,0): 59, 76, 86, (517,43,0): 60, 77, 87, (517,44,0): 63, 77, 88, (517,45,0): 63, 77, 88, (517,46,0): 63, 77, 88, (517,47,0): 64, 78, 89, (517,48,0): 63, 75, 87, (517,49,0): 64, 76, 88, (517,50,0): 66, 76, 88, (517,51,0): 66, 76, 88, (517,52,0): 67, 77, 89, (517,53,0): 68, 78, 90, (517,54,0): 69, 77, 88, (517,55,0): 69, 77, 88, (517,56,0): 72, 79, 89, (517,57,0): 72, 79, 89, (517,58,0): 72, 79, 87, (517,59,0): 73, 80, 88, (517,60,0): 75, 79, 88, (517,61,0): 76, 80, 89, (517,62,0): 76, 80, 89, (517,63,0): 77, 81, 90, (517,64,0): 78, 81, 90, (517,65,0): 80, 80, 90, (517,66,0): 81, 81, 93, (517,67,0): 82, 82, 92, (517,68,0): 84, 82, 93, (517,69,0): 85, 84, 92, (517,70,0): 87, 84, 93, (517,71,0): 87, 84, 91, (517,72,0): 88, 85, 94, (517,73,0): 88, 85, 92, (517,74,0): 89, 84, 91, (517,75,0): 88, 83, 89, (517,76,0): 89, 82, 89, (517,77,0): 88, 82, 86, (517,78,0): 88, 81, 88, (517,79,0): 88, 82, 86, (517,80,0): 87, 78, 79, (517,81,0): 87, 79, 77, (517,82,0): 87, 79, 77, (517,83,0): 86, 78, 76, (517,84,0): 86, 78, 76, (517,85,0): 85, 77, 75, (517,86,0): 85, 77, 75, (517,87,0): 85, 77, 75, (517,88,0): 85, 77, 75, (517,89,0): 84, 76, 74, (517,90,0): 84, 76, 74, (517,91,0): 83, 75, 73, (517,92,0): 83, 75, 73, (517,93,0): 82, 74, 72, (517,94,0): 82, 74, 72, (517,95,0): 82, 74, 72, (517,96,0): 80, 74, 74, (517,97,0): 79, 75, 74, (517,98,0): 79, 75, 74, (517,99,0): 77, 73, 72, (517,100,0): 75, 71, 70, (517,101,0): 73, 69, 68, (517,102,0): 70, 66, 65, (517,103,0): 68, 64, 63, (517,104,0): 68, 64, 63, (517,105,0): 68, 64, 63, (517,106,0): 67, 63, 62, (517,107,0): 67, 63, 62, (517,108,0): 66, 62, 61, (517,109,0): 66, 62, 61, (517,110,0): 65, 61, 60, (517,111,0): 63, 62, 60, (517,112,0): 64, 63, 61, (517,113,0): 64, 63, 61, (517,114,0): 64, 62, 63, (517,115,0): 64, 62, 63, (517,116,0): 64, 62, 63, (517,117,0): 63, 63, 63, (517,118,0): 63, 63, 65, (517,119,0): 62, 63, 65, (517,120,0): 61, 62, 64, (517,121,0): 62, 63, 67, (517,122,0): 61, 65, 68, (517,123,0): 62, 65, 70, (517,124,0): 63, 66, 71, (517,125,0): 63, 66, 71, (517,126,0): 62, 65, 70, (517,127,0): 60, 65, 69, (517,128,0): 60, 67, 73, (517,129,0): 60, 67, 73, (517,130,0): 60, 65, 71, (517,131,0): 59, 64, 70, (517,132,0): 57, 62, 66, (517,133,0): 56, 61, 65, (517,134,0): 56, 59, 64, (517,135,0): 55, 58, 63, (517,136,0): 57, 58, 62, (517,137,0): 56, 57, 61, (517,138,0): 56, 57, 59, (517,139,0): 55, 56, 58, (517,140,0): 56, 56, 58, (517,141,0): 55, 55, 57, (517,142,0): 55, 55, 55, (517,143,0): 56, 55, 53, (517,144,0): 55, 51, 48, (517,145,0): 54, 49, 45, (517,146,0): 52, 47, 43, (517,147,0): 50, 45, 41, (517,148,0): 48, 43, 39, (517,149,0): 47, 42, 38, (517,150,0): 47, 42, 38, (517,151,0): 48, 43, 39, (517,152,0): 46, 41, 37, (517,153,0): 46, 41, 37, (517,154,0): 46, 41, 37, (517,155,0): 46, 41, 37, (517,156,0): 46, 41, 37, (517,157,0): 46, 41, 37, (517,158,0): 46, 41, 37, (517,159,0): 46, 41, 37, (517,160,0): 43, 39, 36, (517,161,0): 43, 39, 36, (517,162,0): 43, 39, 36, (517,163,0): 43, 39, 36, (517,164,0): 43, 39, 36, (517,165,0): 43, 39, 36, (517,166,0): 43, 39, 36, (517,167,0): 43, 39, 36, (517,168,0): 43, 39, 36, (517,169,0): 43, 39, 36, (517,170,0): 43, 39, 36, (517,171,0): 42, 38, 35, (517,172,0): 42, 38, 35, (517,173,0): 41, 37, 34, (517,174,0): 41, 37, 34, (517,175,0): 40, 36, 33, (517,176,0): 40, 36, 37, (517,177,0): 40, 36, 37, (517,178,0): 40, 36, 37, (517,179,0): 40, 36, 37, (517,180,0): 40, 36, 37, (517,181,0): 40, 36, 37, (517,182,0): 40, 36, 37, (517,183,0): 40, 36, 37, (517,184,0): 38, 34, 35, (517,185,0): 38, 34, 35, (517,186,0): 38, 34, 35, (517,187,0): 38, 34, 35, (517,188,0): 38, 34, 35, (517,189,0): 38, 34, 35, (517,190,0): 38, 34, 35, (517,191,0): 38, 34, 35, (517,192,0): 37, 32, 38, (517,193,0): 37, 32, 38, (517,194,0): 37, 32, 38, (517,195,0): 37, 32, 38, (517,196,0): 37, 32, 38, (517,197,0): 37, 32, 38, (517,198,0): 37, 32, 38, (517,199,0): 37, 32, 38, (517,200,0): 37, 32, 38, (517,201,0): 37, 32, 38, (517,202,0): 37, 32, 38, (517,203,0): 37, 32, 38, (517,204,0): 37, 32, 38, (517,205,0): 37, 32, 38, (517,206,0): 37, 32, 38, (517,207,0): 35, 33, 38, (517,208,0): 35, 33, 38, (517,209,0): 34, 33, 38, (517,210,0): 34, 33, 38, (517,211,0): 34, 33, 38, (517,212,0): 34, 33, 38, (517,213,0): 34, 33, 38, (517,214,0): 34, 33, 38, (517,215,0): 34, 33, 38, (517,216,0): 33, 32, 37, (517,217,0): 33, 32, 37, (517,218,0): 33, 32, 37, (517,219,0): 33, 32, 37, (517,220,0): 33, 32, 37, (517,221,0): 33, 32, 37, (517,222,0): 33, 32, 37, (517,223,0): 33, 32, 37, (517,224,0): 34, 33, 39, (517,225,0): 34, 33, 39, (517,226,0): 34, 33, 39, (517,227,0): 34, 33, 39, (517,228,0): 34, 33, 39, (517,229,0): 34, 33, 39, (517,230,0): 34, 33, 39, (517,231,0): 34, 33, 39, (517,232,0): 34, 33, 39, (517,233,0): 34, 33, 39, (517,234,0): 34, 33, 39, (517,235,0): 34, 33, 39, (517,236,0): 34, 33, 39, (517,237,0): 34, 33, 39, (517,238,0): 34, 33, 39, (517,239,0): 34, 33, 39, (517,240,0): 38, 35, 46, (517,241,0): 39, 36, 47, (517,242,0): 39, 36, 47, (517,243,0): 39, 36, 47, (517,244,0): 42, 36, 48, (517,245,0): 43, 37, 49, (517,246,0): 43, 37, 51, (517,247,0): 43, 37, 51, (517,248,0): 44, 35, 52, (517,249,0): 45, 36, 53, (517,250,0): 48, 36, 56, (517,251,0): 49, 37, 57, (517,252,0): 50, 38, 58, (517,253,0): 51, 39, 59, (517,254,0): 53, 40, 60, (517,255,0): 53, 40, 58, (517,256,0): 60, 43, 62, (517,257,0): 62, 43, 62, (517,258,0): 65, 47, 63, (517,259,0): 70, 49, 66, (517,260,0): 74, 51, 69, (517,261,0): 78, 53, 72, (517,262,0): 80, 55, 74, (517,263,0): 81, 57, 73, (517,264,0): 80, 53, 70, (517,265,0): 77, 53, 67, (517,266,0): 76, 52, 66, (517,267,0): 73, 51, 64, (517,268,0): 71, 51, 62, (517,269,0): 69, 52, 62, (517,270,0): 69, 52, 62, (517,271,0): 66, 53, 63, (517,272,0): 63, 53, 64, (517,273,0): 61, 53, 66, (517,274,0): 61, 53, 66, (517,275,0): 61, 53, 66, (517,276,0): 63, 52, 66, (517,277,0): 63, 52, 66, (517,278,0): 63, 52, 66, (517,279,0): 63, 52, 66, (517,280,0): 65, 53, 67, (517,281,0): 66, 54, 68, (517,282,0): 68, 54, 69, (517,283,0): 70, 56, 71, (517,284,0): 72, 58, 73, (517,285,0): 73, 59, 74, (517,286,0): 77, 60, 76, (517,287,0): 78, 61, 77, (517,288,0): 81, 63, 79, (517,289,0): 81, 63, 79, (517,290,0): 83, 62, 77, (517,291,0): 84, 63, 78, (517,292,0): 84, 63, 78, (517,293,0): 85, 65, 77, (517,294,0): 86, 64, 77, (517,295,0): 86, 64, 77, (517,296,0): 86, 62, 75, (517,297,0): 87, 63, 76, (517,298,0): 87, 63, 76, (517,299,0): 87, 64, 74, (517,300,0): 90, 64, 75, (517,301,0): 90, 64, 75, (517,302,0): 91, 65, 76, (517,303,0): 92, 64, 76, (517,304,0): 93, 62, 77, (517,305,0): 96, 66, 78, (517,306,0): 98, 68, 78, (517,307,0): 99, 68, 74, (517,308,0): 100, 67, 74, (517,309,0): 104, 69, 75, (517,310,0): 111, 72, 77, (517,311,0): 117, 74, 81, (517,312,0): 128, 79, 85, (517,313,0): 139, 84, 90, (517,314,0): 151, 90, 95, (517,315,0): 162, 96, 97, (517,316,0): 172, 101, 95, (517,317,0): 184, 110, 99, (517,318,0): 201, 124, 108, (517,319,0): 210, 136, 111, (517,320,0): 231, 166, 126, (517,321,0): 248, 189, 145, (517,322,0): 253, 199, 163, (517,323,0): 230, 183, 155, (517,324,0): 202, 163, 146, (517,325,0): 188, 155, 146, (517,326,0): 180, 155, 151, (517,327,0): 173, 151, 153, (517,328,0): 167, 148, 154, (517,329,0): 161, 141, 150, (517,330,0): 151, 131, 140, (517,331,0): 134, 114, 125, (517,332,0): 114, 92, 104, (517,333,0): 92, 70, 83, (517,334,0): 75, 51, 67, (517,335,0): 63, 41, 54, (517,336,0): 58, 41, 49, (517,337,0): 53, 38, 43, (517,338,0): 50, 35, 40, (517,339,0): 48, 33, 38, (517,340,0): 48, 33, 40, (517,341,0): 46, 31, 38, (517,342,0): 42, 27, 34, (517,343,0): 39, 24, 31, (517,344,0): 38, 22, 32, (517,345,0): 35, 19, 29, (517,346,0): 31, 15, 26, (517,347,0): 30, 14, 25, (517,348,0): 32, 16, 27, (517,349,0): 32, 16, 27, (517,350,0): 31, 15, 28, (517,351,0): 29, 13, 26, (517,352,0): 29, 13, 24, (517,353,0): 29, 13, 24, (517,354,0): 29, 13, 24, (517,355,0): 29, 13, 24, (517,356,0): 29, 13, 24, (517,357,0): 29, 13, 24, (517,358,0): 29, 13, 24, (517,359,0): 29, 13, 24, (517,360,0): 28, 12, 23, (517,361,0): 28, 12, 23, (517,362,0): 28, 12, 23, (517,363,0): 28, 12, 23, (517,364,0): 28, 12, 23, (517,365,0): 28, 12, 23, (517,366,0): 28, 12, 23, (517,367,0): 28, 12, 23, (517,368,0): 27, 14, 23, (517,369,0): 26, 13, 22, (517,370,0): 25, 12, 21, (517,371,0): 24, 11, 20, (517,372,0): 24, 11, 20, (517,373,0): 24, 11, 20, (517,374,0): 25, 12, 21, (517,375,0): 26, 13, 22, (517,376,0): 24, 11, 20, (517,377,0): 25, 12, 21, (517,378,0): 25, 12, 21, (517,379,0): 25, 12, 21, (517,380,0): 26, 13, 22, (517,381,0): 27, 14, 23, (517,382,0): 27, 14, 23, (517,383,0): 27, 14, 24, (517,384,0): 24, 10, 25, (517,385,0): 24, 10, 27, (517,386,0): 25, 11, 28, (517,387,0): 26, 12, 29, (517,388,0): 26, 12, 29, (517,389,0): 25, 11, 26, (517,390,0): 24, 10, 25, (517,391,0): 24, 10, 25, (517,392,0): 24, 10, 25, (517,393,0): 24, 10, 23, (517,394,0): 24, 10, 23, (517,395,0): 24, 11, 21, (517,396,0): 24, 11, 21, (517,397,0): 24, 11, 21, (517,398,0): 24, 11, 21, (517,399,0): 24, 11, 20, (517,400,0): 26, 11, 18, (517,401,0): 26, 11, 16, (517,402,0): 26, 11, 16, (517,403,0): 26, 11, 16, (517,404,0): 26, 11, 16, (517,405,0): 26, 11, 16, (517,406,0): 26, 11, 16, (517,407,0): 26, 11, 16, (517,408,0): 26, 11, 16, (517,409,0): 26, 11, 16, (517,410,0): 26, 11, 16, (517,411,0): 27, 12, 17, (517,412,0): 27, 12, 17, (517,413,0): 28, 13, 18, (517,414,0): 28, 13, 18, (517,415,0): 28, 13, 18, (517,416,0): 32, 17, 22, (517,417,0): 32, 17, 22, (517,418,0): 33, 18, 23, (517,419,0): 33, 18, 23, (517,420,0): 34, 19, 24, (517,421,0): 35, 20, 25, (517,422,0): 35, 20, 25, (517,423,0): 35, 20, 25, (517,424,0): 38, 23, 28, (517,425,0): 39, 24, 29, (517,426,0): 41, 26, 31, (517,427,0): 42, 27, 32, (517,428,0): 42, 27, 32, (517,429,0): 42, 27, 32, (517,430,0): 42, 27, 32, (517,431,0): 42, 26, 29, (517,432,0): 46, 27, 31, (517,433,0): 47, 27, 29, (517,434,0): 46, 26, 28, (517,435,0): 46, 26, 28, (517,436,0): 45, 25, 27, (517,437,0): 45, 25, 27, (517,438,0): 44, 24, 26, (517,439,0): 44, 24, 26, (517,440,0): 44, 24, 26, (517,441,0): 43, 23, 25, (517,442,0): 42, 22, 24, (517,443,0): 40, 20, 22, (517,444,0): 38, 18, 20, (517,445,0): 36, 16, 18, (517,446,0): 35, 15, 17, (517,447,0): 33, 14, 16, (517,448,0): 29, 12, 18, (517,449,0): 28, 13, 18, (517,450,0): 28, 13, 18, (517,451,0): 28, 13, 18, (517,452,0): 28, 13, 18, (517,453,0): 28, 13, 18, (517,454,0): 28, 13, 18, (517,455,0): 28, 13, 18, (517,456,0): 28, 13, 18, (517,457,0): 28, 13, 18, (517,458,0): 28, 13, 18, (517,459,0): 29, 14, 19, (517,460,0): 29, 14, 19, (517,461,0): 30, 15, 20, (517,462,0): 30, 15, 20, (517,463,0): 34, 15, 19, (517,464,0): 38, 15, 21, (517,465,0): 42, 15, 20, (517,466,0): 42, 17, 21, (517,467,0): 43, 18, 22, (517,468,0): 42, 20, 23, (517,469,0): 42, 20, 23, (517,470,0): 41, 19, 22, (517,471,0): 40, 18, 21, (517,472,0): 44, 19, 23, (517,473,0): 45, 20, 24, (517,474,0): 48, 21, 26, (517,475,0): 52, 23, 28, (517,476,0): 53, 22, 28, (517,477,0): 52, 21, 27, (517,478,0): 51, 18, 25, (517,479,0): 49, 16, 23, (517,480,0): 44, 12, 23, (517,481,0): 42, 12, 22, (517,482,0): 39, 12, 21, (517,483,0): 37, 11, 20, (517,484,0): 34, 11, 21, (517,485,0): 31, 10, 19, (517,486,0): 30, 10, 19, (517,487,0): 27, 10, 18, (517,488,0): 23, 7, 17, (517,489,0): 23, 7, 17, (517,490,0): 21, 8, 18, (517,491,0): 19, 6, 16, (517,492,0): 19, 3, 14, (517,493,0): 17, 1, 12, (517,494,0): 15, 0, 12, (517,495,0): 12, 0, 11, (517,496,0): 16, 0, 11, (517,497,0): 16, 0, 10, (517,498,0): 16, 0, 10, (517,499,0): 16, 0, 10, (517,500,0): 17, 1, 11, (517,501,0): 20, 3, 13, (517,502,0): 22, 5, 15, (517,503,0): 23, 6, 16, (517,504,0): 24, 4, 15, (517,505,0): 25, 5, 16, (517,506,0): 26, 6, 17, (517,507,0): 29, 7, 19, (517,508,0): 31, 9, 21, (517,509,0): 33, 11, 23, (517,510,0): 34, 12, 24, (517,511,0): 36, 12, 25, (517,512,0): 35, 5, 17, (517,513,0): 36, 6, 16, (517,514,0): 38, 6, 19, (517,515,0): 39, 7, 18, (517,516,0): 41, 9, 20, (517,517,0): 43, 10, 19, (517,518,0): 47, 11, 23, (517,519,0): 47, 11, 21, (517,520,0): 55, 17, 28, (517,521,0): 55, 15, 24, (517,522,0): 56, 14, 24, (517,523,0): 59, 18, 26, (517,524,0): 65, 22, 32, (517,525,0): 67, 24, 33, (517,526,0): 66, 23, 32, (517,527,0): 63, 22, 28, (517,528,0): 63, 24, 29, (517,529,0): 60, 24, 28, (517,530,0): 59, 23, 27, (517,531,0): 59, 23, 27, (517,532,0): 58, 23, 27, (517,533,0): 58, 23, 27, (517,534,0): 59, 24, 28, (517,535,0): 60, 25, 29, (517,536,0): 57, 22, 26, (517,537,0): 60, 24, 28, (517,538,0): 64, 25, 30, (517,539,0): 67, 28, 33, (517,540,0): 69, 28, 34, (517,541,0): 69, 26, 33, (517,542,0): 67, 24, 31, (517,543,0): 65, 24, 30, (517,544,0): 57, 20, 28, (517,545,0): 53, 20, 27, (517,546,0): 55, 20, 27, (517,547,0): 52, 19, 26, (517,548,0): 52, 17, 24, (517,549,0): 49, 16, 23, (517,550,0): 50, 15, 22, (517,551,0): 48, 15, 22, (517,552,0): 52, 17, 24, (517,553,0): 50, 17, 24, (517,554,0): 51, 16, 23, (517,555,0): 49, 16, 23, (517,556,0): 51, 16, 23, (517,557,0): 49, 16, 23, (517,558,0): 52, 17, 24, (517,559,0): 50, 17, 26, (517,560,0): 45, 15, 27, (517,561,0): 43, 15, 29, (517,562,0): 43, 17, 30, (517,563,0): 44, 18, 31, (517,564,0): 44, 18, 31, (517,565,0): 43, 17, 30, (517,566,0): 40, 16, 29, (517,567,0): 40, 16, 29, (517,568,0): 41, 19, 31, (517,569,0): 40, 18, 30, (517,570,0): 39, 17, 29, (517,571,0): 38, 16, 28, (517,572,0): 37, 17, 28, (517,573,0): 38, 18, 29, (517,574,0): 39, 19, 30, (517,575,0): 38, 20, 32, (517,576,0): 32, 16, 29, (517,577,0): 29, 17, 29, (517,578,0): 28, 18, 27, (517,579,0): 30, 19, 27, (517,580,0): 33, 20, 27, (517,581,0): 41, 22, 28, (517,582,0): 49, 19, 27, (517,583,0): 54, 17, 25, (517,584,0): 75, 28, 38, (517,585,0): 81, 28, 38, (517,586,0): 80, 27, 37, (517,587,0): 74, 24, 33, (517,588,0): 59, 22, 29, (517,589,0): 46, 20, 23, (517,590,0): 35, 21, 20, (517,591,0): 33, 21, 21, (517,592,0): 35, 18, 24, (517,593,0): 38, 18, 27, (517,594,0): 38, 18, 27, (517,595,0): 36, 19, 25, (517,596,0): 37, 18, 24, (517,597,0): 37, 18, 22, (517,598,0): 39, 18, 23, (517,599,0): 40, 20, 22, (518,0,0): 41, 66, 73, (518,1,0): 41, 66, 73, (518,2,0): 41, 66, 73, (518,3,0): 41, 66, 73, (518,4,0): 41, 66, 73, (518,5,0): 41, 66, 73, (518,6,0): 41, 66, 73, (518,7,0): 41, 66, 73, (518,8,0): 41, 66, 73, (518,9,0): 41, 66, 73, (518,10,0): 42, 67, 74, (518,11,0): 42, 67, 74, (518,12,0): 43, 68, 75, (518,13,0): 43, 68, 75, (518,14,0): 44, 69, 76, (518,15,0): 44, 69, 76, (518,16,0): 44, 69, 76, (518,17,0): 44, 69, 76, (518,18,0): 44, 69, 76, (518,19,0): 44, 69, 76, (518,20,0): 44, 69, 76, (518,21,0): 44, 69, 76, (518,22,0): 44, 69, 76, (518,23,0): 44, 69, 76, (518,24,0): 47, 72, 79, (518,25,0): 47, 72, 79, (518,26,0): 48, 73, 80, (518,27,0): 48, 73, 80, (518,28,0): 49, 74, 81, (518,29,0): 49, 74, 81, (518,30,0): 50, 75, 82, (518,31,0): 50, 75, 82, (518,32,0): 52, 75, 83, (518,33,0): 53, 76, 84, (518,34,0): 55, 75, 84, (518,35,0): 55, 75, 84, (518,36,0): 56, 76, 85, (518,37,0): 56, 76, 85, (518,38,0): 58, 76, 86, (518,39,0): 58, 76, 86, (518,40,0): 59, 76, 86, (518,41,0): 60, 77, 87, (518,42,0): 60, 77, 87, (518,43,0): 60, 77, 87, (518,44,0): 63, 77, 88, (518,45,0): 63, 77, 88, (518,46,0): 64, 78, 89, (518,47,0): 64, 78, 89, (518,48,0): 63, 75, 87, (518,49,0): 63, 75, 87, (518,50,0): 66, 76, 88, (518,51,0): 66, 76, 88, (518,52,0): 67, 77, 89, (518,53,0): 67, 77, 89, (518,54,0): 68, 76, 87, (518,55,0): 69, 77, 88, (518,56,0): 71, 78, 88, (518,57,0): 72, 79, 89, (518,58,0): 72, 79, 87, (518,59,0): 73, 80, 88, (518,60,0): 75, 79, 88, (518,61,0): 76, 80, 89, (518,62,0): 76, 80, 89, (518,63,0): 76, 80, 89, (518,64,0): 76, 78, 90, (518,65,0): 77, 79, 91, (518,66,0): 80, 79, 93, (518,67,0): 81, 81, 93, (518,68,0): 82, 82, 94, (518,69,0): 83, 83, 93, (518,70,0): 85, 83, 94, (518,71,0): 86, 85, 93, (518,72,0): 88, 85, 96, (518,73,0): 87, 84, 93, (518,74,0): 87, 84, 93, (518,75,0): 87, 84, 91, (518,76,0): 88, 83, 90, (518,77,0): 88, 83, 89, (518,78,0): 88, 83, 90, (518,79,0): 89, 82, 89, (518,80,0): 88, 79, 82, (518,81,0): 88, 79, 80, (518,82,0): 88, 79, 80, (518,83,0): 87, 78, 79, (518,84,0): 87, 78, 79, (518,85,0): 86, 77, 78, (518,86,0): 86, 77, 78, (518,87,0): 85, 76, 77, (518,88,0): 86, 77, 78, (518,89,0): 86, 77, 78, (518,90,0): 85, 76, 77, (518,91,0): 85, 76, 77, (518,92,0): 85, 76, 77, (518,93,0): 84, 75, 76, (518,94,0): 84, 75, 76, (518,95,0): 84, 75, 76, (518,96,0): 83, 77, 79, (518,97,0): 83, 77, 79, (518,98,0): 83, 77, 79, (518,99,0): 81, 75, 77, (518,100,0): 78, 74, 75, (518,101,0): 75, 71, 72, (518,102,0): 72, 68, 69, (518,103,0): 70, 66, 67, (518,104,0): 67, 65, 66, (518,105,0): 67, 65, 66, (518,106,0): 66, 64, 65, (518,107,0): 66, 64, 65, (518,108,0): 65, 63, 64, (518,109,0): 65, 63, 64, (518,110,0): 64, 62, 63, (518,111,0): 64, 62, 63, (518,112,0): 64, 62, 63, (518,113,0): 64, 62, 63, (518,114,0): 63, 63, 65, (518,115,0): 63, 63, 65, (518,116,0): 63, 63, 65, (518,117,0): 63, 63, 65, (518,118,0): 63, 62, 67, (518,119,0): 62, 63, 67, (518,120,0): 61, 62, 66, (518,121,0): 60, 63, 68, (518,122,0): 62, 65, 70, (518,123,0): 63, 66, 73, (518,124,0): 63, 68, 74, (518,125,0): 63, 68, 74, (518,126,0): 63, 68, 74, (518,127,0): 62, 67, 73, (518,128,0): 62, 69, 77, (518,129,0): 62, 69, 77, (518,130,0): 62, 67, 73, (518,131,0): 61, 66, 72, (518,132,0): 59, 64, 70, (518,133,0): 57, 62, 68, (518,134,0): 57, 60, 65, (518,135,0): 56, 59, 64, (518,136,0): 58, 59, 63, (518,137,0): 58, 59, 63, (518,138,0): 58, 59, 63, (518,139,0): 57, 58, 62, (518,140,0): 57, 57, 59, (518,141,0): 57, 57, 59, (518,142,0): 57, 57, 59, (518,143,0): 57, 55, 56, (518,144,0): 56, 52, 51, (518,145,0): 54, 50, 47, (518,146,0): 52, 48, 45, (518,147,0): 49, 45, 42, (518,148,0): 47, 43, 40, (518,149,0): 47, 43, 40, (518,150,0): 46, 42, 39, (518,151,0): 46, 42, 39, (518,152,0): 45, 41, 38, (518,153,0): 45, 41, 38, (518,154,0): 45, 41, 38, (518,155,0): 45, 41, 38, (518,156,0): 45, 41, 38, (518,157,0): 45, 41, 38, (518,158,0): 45, 41, 38, (518,159,0): 45, 41, 38, (518,160,0): 44, 40, 37, (518,161,0): 44, 40, 37, (518,162,0): 44, 40, 37, (518,163,0): 44, 40, 37, (518,164,0): 44, 40, 37, (518,165,0): 44, 40, 37, (518,166,0): 44, 40, 37, (518,167,0): 44, 40, 37, (518,168,0): 44, 40, 37, (518,169,0): 43, 39, 36, (518,170,0): 43, 39, 36, (518,171,0): 42, 38, 35, (518,172,0): 42, 38, 35, (518,173,0): 41, 37, 34, (518,174,0): 41, 37, 34, (518,175,0): 41, 37, 34, (518,176,0): 40, 36, 37, (518,177,0): 40, 36, 37, (518,178,0): 40, 36, 37, (518,179,0): 40, 36, 37, (518,180,0): 40, 36, 37, (518,181,0): 40, 36, 37, (518,182,0): 40, 36, 37, (518,183,0): 40, 36, 37, (518,184,0): 38, 34, 35, (518,185,0): 38, 34, 35, (518,186,0): 38, 34, 35, (518,187,0): 38, 34, 35, (518,188,0): 38, 34, 35, (518,189,0): 38, 34, 35, (518,190,0): 38, 34, 35, (518,191,0): 38, 34, 35, (518,192,0): 37, 32, 38, (518,193,0): 37, 32, 38, (518,194,0): 37, 32, 38, (518,195,0): 37, 32, 38, (518,196,0): 37, 32, 38, (518,197,0): 37, 32, 38, (518,198,0): 37, 32, 38, (518,199,0): 37, 32, 38, (518,200,0): 37, 32, 38, (518,201,0): 37, 32, 38, (518,202,0): 37, 32, 38, (518,203,0): 37, 32, 38, (518,204,0): 37, 32, 38, (518,205,0): 37, 32, 38, (518,206,0): 37, 32, 38, (518,207,0): 35, 33, 38, (518,208,0): 35, 33, 38, (518,209,0): 34, 33, 38, (518,210,0): 34, 33, 38, (518,211,0): 34, 33, 38, (518,212,0): 34, 33, 38, (518,213,0): 34, 33, 38, (518,214,0): 34, 33, 38, (518,215,0): 34, 33, 38, (518,216,0): 32, 31, 36, (518,217,0): 32, 31, 36, (518,218,0): 32, 31, 36, (518,219,0): 32, 31, 36, (518,220,0): 32, 31, 36, (518,221,0): 32, 31, 36, (518,222,0): 32, 31, 36, (518,223,0): 32, 31, 36, (518,224,0): 34, 33, 39, (518,225,0): 34, 33, 39, (518,226,0): 34, 33, 39, (518,227,0): 34, 33, 39, (518,228,0): 34, 33, 39, (518,229,0): 34, 33, 39, (518,230,0): 34, 33, 39, (518,231,0): 34, 33, 39, (518,232,0): 34, 33, 39, (518,233,0): 34, 33, 39, (518,234,0): 34, 33, 39, (518,235,0): 34, 33, 39, (518,236,0): 34, 33, 39, (518,237,0): 34, 33, 39, (518,238,0): 34, 33, 39, (518,239,0): 34, 33, 39, (518,240,0): 37, 35, 46, (518,241,0): 37, 35, 46, (518,242,0): 38, 36, 47, (518,243,0): 38, 36, 47, (518,244,0): 40, 37, 48, (518,245,0): 40, 37, 48, (518,246,0): 42, 36, 50, (518,247,0): 43, 37, 51, (518,248,0): 44, 37, 53, (518,249,0): 44, 37, 53, (518,250,0): 46, 37, 56, (518,251,0): 46, 37, 56, (518,252,0): 49, 37, 57, (518,253,0): 50, 38, 58, (518,254,0): 51, 39, 59, (518,255,0): 52, 39, 57, (518,256,0): 56, 41, 60, (518,257,0): 59, 42, 60, (518,258,0): 61, 44, 62, (518,259,0): 66, 47, 66, (518,260,0): 71, 50, 69, (518,261,0): 76, 53, 71, (518,262,0): 79, 56, 74, (518,263,0): 81, 58, 74, (518,264,0): 79, 55, 71, (518,265,0): 77, 54, 70, (518,266,0): 74, 52, 65, (518,267,0): 71, 51, 63, (518,268,0): 68, 50, 62, (518,269,0): 67, 51, 62, (518,270,0): 67, 51, 62, (518,271,0): 66, 53, 63, (518,272,0): 63, 53, 64, (518,273,0): 61, 53, 66, (518,274,0): 61, 53, 66, (518,275,0): 61, 53, 66, (518,276,0): 63, 52, 66, (518,277,0): 63, 52, 66, (518,278,0): 63, 52, 66, (518,279,0): 63, 52, 66, (518,280,0): 66, 54, 68, (518,281,0): 66, 54, 68, (518,282,0): 68, 54, 69, (518,283,0): 70, 56, 71, (518,284,0): 71, 57, 72, (518,285,0): 72, 58, 73, (518,286,0): 76, 59, 75, (518,287,0): 76, 59, 75, (518,288,0): 81, 63, 77, (518,289,0): 83, 62, 77, (518,290,0): 83, 62, 77, (518,291,0): 84, 63, 78, (518,292,0): 85, 63, 76, (518,293,0): 86, 64, 77, (518,294,0): 87, 63, 77, (518,295,0): 87, 63, 76, (518,296,0): 87, 63, 76, (518,297,0): 87, 63, 76, (518,298,0): 90, 64, 75, (518,299,0): 90, 64, 75, (518,300,0): 92, 64, 76, (518,301,0): 92, 65, 74, (518,302,0): 93, 66, 75, (518,303,0): 93, 65, 77, (518,304,0): 92, 61, 76, (518,305,0): 95, 65, 77, (518,306,0): 98, 66, 77, (518,307,0): 98, 67, 73, (518,308,0): 100, 67, 74, (518,309,0): 105, 68, 75, (518,310,0): 112, 71, 77, (518,311,0): 119, 74, 81, (518,312,0): 131, 80, 87, (518,313,0): 140, 85, 91, (518,314,0): 151, 91, 93, (518,315,0): 161, 96, 94, (518,316,0): 172, 102, 94, (518,317,0): 186, 112, 99, (518,318,0): 205, 128, 110, (518,319,0): 215, 141, 112, (518,320,0): 240, 175, 133, (518,321,0): 251, 194, 149, (518,322,0): 250, 198, 161, (518,323,0): 223, 179, 150, (518,324,0): 196, 161, 142, (518,325,0): 184, 155, 147, (518,326,0): 179, 155, 153, (518,327,0): 172, 152, 154, (518,328,0): 165, 145, 154, (518,329,0): 157, 140, 150, (518,330,0): 148, 128, 139, (518,331,0): 132, 112, 124, (518,332,0): 113, 91, 104, (518,333,0): 93, 71, 84, (518,334,0): 76, 53, 69, (518,335,0): 65, 45, 57, (518,336,0): 57, 40, 48, (518,337,0): 53, 38, 43, (518,338,0): 49, 34, 39, (518,339,0): 47, 32, 37, (518,340,0): 47, 32, 39, (518,341,0): 45, 30, 37, (518,342,0): 42, 27, 34, (518,343,0): 38, 23, 30, (518,344,0): 39, 23, 33, (518,345,0): 35, 19, 29, (518,346,0): 32, 16, 27, (518,347,0): 31, 15, 26, (518,348,0): 32, 16, 27, (518,349,0): 33, 17, 28, (518,350,0): 31, 15, 28, (518,351,0): 29, 13, 26, (518,352,0): 29, 13, 24, (518,353,0): 29, 13, 24, (518,354,0): 29, 13, 24, (518,355,0): 30, 14, 25, (518,356,0): 30, 14, 25, (518,357,0): 30, 14, 25, (518,358,0): 30, 14, 25, (518,359,0): 30, 14, 25, (518,360,0): 28, 12, 23, (518,361,0): 28, 12, 23, (518,362,0): 28, 12, 23, (518,363,0): 28, 12, 23, (518,364,0): 28, 12, 23, (518,365,0): 28, 12, 23, (518,366,0): 28, 12, 23, (518,367,0): 28, 12, 23, (518,368,0): 29, 16, 25, (518,369,0): 27, 16, 24, (518,370,0): 25, 14, 22, (518,371,0): 23, 12, 20, (518,372,0): 22, 11, 19, (518,373,0): 22, 11, 19, (518,374,0): 22, 11, 19, (518,375,0): 23, 12, 20, (518,376,0): 23, 12, 20, (518,377,0): 23, 12, 20, (518,378,0): 24, 13, 21, (518,379,0): 24, 13, 21, (518,380,0): 25, 14, 22, (518,381,0): 25, 14, 22, (518,382,0): 25, 14, 22, (518,383,0): 26, 14, 24, (518,384,0): 22, 9, 26, (518,385,0): 23, 10, 28, (518,386,0): 24, 11, 29, (518,387,0): 24, 11, 28, (518,388,0): 24, 11, 28, (518,389,0): 24, 11, 28, (518,390,0): 23, 10, 27, (518,391,0): 22, 10, 24, (518,392,0): 23, 11, 25, (518,393,0): 23, 11, 23, (518,394,0): 23, 11, 23, (518,395,0): 23, 11, 23, (518,396,0): 23, 11, 23, (518,397,0): 23, 11, 21, (518,398,0): 23, 11, 21, (518,399,0): 24, 11, 20, (518,400,0): 26, 11, 18, (518,401,0): 26, 11, 16, (518,402,0): 26, 11, 16, (518,403,0): 26, 11, 16, (518,404,0): 26, 11, 16, (518,405,0): 26, 11, 16, (518,406,0): 26, 11, 16, (518,407,0): 26, 11, 16, (518,408,0): 25, 10, 15, (518,409,0): 25, 10, 15, (518,410,0): 25, 10, 15, (518,411,0): 26, 11, 16, (518,412,0): 26, 11, 16, (518,413,0): 27, 12, 17, (518,414,0): 27, 12, 17, (518,415,0): 28, 13, 18, (518,416,0): 32, 17, 22, (518,417,0): 32, 17, 22, (518,418,0): 32, 17, 22, (518,419,0): 32, 17, 22, (518,420,0): 33, 18, 23, (518,421,0): 33, 18, 23, (518,422,0): 33, 18, 23, (518,423,0): 33, 18, 23, (518,424,0): 36, 21, 26, (518,425,0): 37, 22, 27, (518,426,0): 39, 24, 29, (518,427,0): 41, 26, 31, (518,428,0): 41, 26, 31, (518,429,0): 41, 26, 31, (518,430,0): 40, 25, 30, (518,431,0): 40, 24, 27, (518,432,0): 43, 24, 28, (518,433,0): 43, 23, 25, (518,434,0): 43, 23, 25, (518,435,0): 43, 23, 25, (518,436,0): 42, 22, 24, (518,437,0): 42, 22, 24, (518,438,0): 42, 22, 24, (518,439,0): 42, 22, 24, (518,440,0): 41, 21, 23, (518,441,0): 41, 21, 23, (518,442,0): 40, 20, 22, (518,443,0): 39, 19, 21, (518,444,0): 37, 17, 19, (518,445,0): 36, 16, 18, (518,446,0): 35, 15, 17, (518,447,0): 34, 15, 17, (518,448,0): 29, 12, 18, (518,449,0): 29, 12, 18, (518,450,0): 29, 12, 18, (518,451,0): 28, 11, 17, (518,452,0): 28, 11, 17, (518,453,0): 28, 11, 17, (518,454,0): 28, 11, 17, (518,455,0): 28, 11, 17, (518,456,0): 28, 11, 17, (518,457,0): 28, 11, 17, (518,458,0): 28, 11, 17, (518,459,0): 29, 12, 18, (518,460,0): 29, 12, 18, (518,461,0): 30, 13, 19, (518,462,0): 30, 13, 19, (518,463,0): 32, 13, 17, (518,464,0): 37, 14, 20, (518,465,0): 40, 15, 19, (518,466,0): 42, 17, 21, (518,467,0): 43, 18, 22, (518,468,0): 43, 18, 22, (518,469,0): 43, 18, 22, (518,470,0): 42, 17, 21, (518,471,0): 42, 17, 21, (518,472,0): 44, 17, 22, (518,473,0): 46, 19, 24, (518,474,0): 50, 21, 26, (518,475,0): 52, 23, 28, (518,476,0): 52, 21, 27, (518,477,0): 50, 19, 25, (518,478,0): 49, 16, 23, (518,479,0): 47, 14, 21, (518,480,0): 41, 11, 21, (518,481,0): 39, 12, 21, (518,482,0): 39, 12, 21, (518,483,0): 37, 11, 20, (518,484,0): 35, 12, 22, (518,485,0): 33, 12, 21, (518,486,0): 31, 11, 20, (518,487,0): 28, 11, 19, (518,488,0): 24, 8, 18, (518,489,0): 23, 7, 17, (518,490,0): 19, 6, 16, (518,491,0): 17, 4, 14, (518,492,0): 16, 3, 13, (518,493,0): 15, 2, 12, (518,494,0): 15, 1, 14, (518,495,0): 14, 2, 14, (518,496,0): 14, 1, 11, (518,497,0): 13, 0, 10, (518,498,0): 13, 0, 10, (518,499,0): 13, 0, 10, (518,500,0): 14, 1, 11, (518,501,0): 18, 2, 13, (518,502,0): 20, 4, 15, (518,503,0): 21, 5, 16, (518,504,0): 21, 3, 15, (518,505,0): 21, 3, 15, (518,506,0): 22, 4, 16, (518,507,0): 26, 6, 18, (518,508,0): 27, 7, 19, (518,509,0): 29, 9, 21, (518,510,0): 30, 10, 22, (518,511,0): 31, 9, 21, (518,512,0): 31, 3, 17, (518,513,0): 32, 4, 16, (518,514,0): 36, 5, 20, (518,515,0): 38, 8, 20, (518,516,0): 39, 9, 21, (518,517,0): 41, 9, 20, (518,518,0): 42, 10, 23, (518,519,0): 44, 11, 22, (518,520,0): 46, 10, 22, (518,521,0): 45, 9, 19, (518,522,0): 46, 8, 19, (518,523,0): 48, 11, 19, (518,524,0): 50, 12, 23, (518,525,0): 53, 16, 24, (518,526,0): 55, 15, 24, (518,527,0): 53, 16, 23, (518,528,0): 57, 25, 28, (518,529,0): 55, 25, 27, (518,530,0): 54, 24, 26, (518,531,0): 53, 23, 25, (518,532,0): 53, 23, 25, (518,533,0): 54, 24, 26, (518,534,0): 55, 25, 27, (518,535,0): 57, 25, 28, (518,536,0): 55, 20, 24, (518,537,0): 57, 22, 26, (518,538,0): 61, 25, 29, (518,539,0): 65, 26, 31, (518,540,0): 65, 26, 31, (518,541,0): 64, 23, 29, (518,542,0): 62, 21, 27, (518,543,0): 59, 20, 25, (518,544,0): 54, 19, 26, (518,545,0): 51, 20, 26, (518,546,0): 51, 18, 25, (518,547,0): 50, 19, 25, (518,548,0): 50, 17, 24, (518,549,0): 48, 17, 23, (518,550,0): 48, 15, 22, (518,551,0): 47, 16, 22, (518,552,0): 48, 15, 22, (518,553,0): 47, 16, 22, (518,554,0): 49, 16, 23, (518,555,0): 49, 18, 24, (518,556,0): 50, 17, 24, (518,557,0): 48, 17, 23, (518,558,0): 48, 15, 22, (518,559,0): 47, 16, 24, (518,560,0): 40, 12, 24, (518,561,0): 40, 14, 27, (518,562,0): 41, 15, 28, (518,563,0): 42, 16, 29, (518,564,0): 40, 16, 29, (518,565,0): 39, 15, 28, (518,566,0): 38, 14, 27, (518,567,0): 37, 13, 26, (518,568,0): 39, 17, 29, (518,569,0): 38, 16, 28, (518,570,0): 36, 16, 27, (518,571,0): 35, 15, 26, (518,572,0): 35, 15, 26, (518,573,0): 36, 16, 27, (518,574,0): 35, 18, 28, (518,575,0): 36, 18, 30, (518,576,0): 31, 15, 28, (518,577,0): 29, 17, 29, (518,578,0): 29, 19, 30, (518,579,0): 29, 19, 28, (518,580,0): 31, 20, 28, (518,581,0): 34, 19, 26, (518,582,0): 39, 16, 24, (518,583,0): 46, 13, 22, (518,584,0): 63, 20, 30, (518,585,0): 72, 22, 33, (518,586,0): 75, 25, 34, (518,587,0): 72, 25, 33, (518,588,0): 62, 23, 28, (518,589,0): 50, 21, 23, (518,590,0): 40, 22, 20, (518,591,0): 37, 21, 21, (518,592,0): 39, 18, 25, (518,593,0): 39, 18, 27, (518,594,0): 38, 18, 27, (518,595,0): 38, 19, 25, (518,596,0): 38, 19, 25, (518,597,0): 38, 17, 22, (518,598,0): 37, 14, 20, (518,599,0): 37, 14, 20, (519,0,0): 41, 66, 73, (519,1,0): 41, 66, 73, (519,2,0): 41, 66, 73, (519,3,0): 41, 66, 73, (519,4,0): 41, 66, 73, (519,5,0): 41, 66, 73, (519,6,0): 41, 66, 73, (519,7,0): 41, 66, 73, (519,8,0): 41, 66, 73, (519,9,0): 41, 66, 73, (519,10,0): 42, 67, 74, (519,11,0): 42, 67, 74, (519,12,0): 43, 68, 75, (519,13,0): 43, 68, 75, (519,14,0): 44, 69, 76, (519,15,0): 44, 69, 76, (519,16,0): 44, 69, 76, (519,17,0): 44, 69, 76, (519,18,0): 44, 69, 76, (519,19,0): 44, 69, 76, (519,20,0): 44, 69, 76, (519,21,0): 44, 69, 76, (519,22,0): 44, 69, 76, (519,23,0): 44, 69, 76, (519,24,0): 47, 72, 79, (519,25,0): 47, 72, 79, (519,26,0): 48, 73, 80, (519,27,0): 48, 73, 80, (519,28,0): 49, 74, 81, (519,29,0): 49, 74, 81, (519,30,0): 50, 75, 82, (519,31,0): 50, 75, 82, (519,32,0): 52, 75, 83, (519,33,0): 53, 76, 84, (519,34,0): 55, 75, 84, (519,35,0): 56, 76, 85, (519,36,0): 56, 76, 85, (519,37,0): 57, 77, 86, (519,38,0): 58, 76, 86, (519,39,0): 58, 76, 86, (519,40,0): 59, 76, 86, (519,41,0): 60, 77, 87, (519,42,0): 60, 77, 87, (519,43,0): 61, 78, 88, (519,44,0): 63, 77, 88, (519,45,0): 64, 78, 89, (519,46,0): 64, 78, 89, (519,47,0): 64, 78, 89, (519,48,0): 63, 75, 87, (519,49,0): 63, 75, 87, (519,50,0): 65, 75, 87, (519,51,0): 66, 76, 88, (519,52,0): 66, 76, 88, (519,53,0): 67, 77, 89, (519,54,0): 68, 76, 87, (519,55,0): 69, 77, 88, (519,56,0): 71, 78, 88, (519,57,0): 71, 78, 88, (519,58,0): 72, 79, 87, (519,59,0): 72, 79, 87, (519,60,0): 75, 79, 88, (519,61,0): 75, 79, 88, (519,62,0): 76, 80, 89, (519,63,0): 76, 80, 91, (519,64,0): 75, 77, 90, (519,65,0): 76, 78, 91, (519,66,0): 79, 78, 92, (519,67,0): 80, 79, 93, (519,68,0): 81, 81, 93, (519,69,0): 83, 83, 95, (519,70,0): 85, 83, 96, (519,71,0): 85, 83, 94, (519,72,0): 87, 84, 95, (519,73,0): 87, 84, 95, (519,74,0): 87, 84, 93, (519,75,0): 87, 84, 93, (519,76,0): 89, 83, 93, (519,77,0): 88, 83, 90, (519,78,0): 88, 83, 90, (519,79,0): 88, 83, 89, (519,80,0): 87, 81, 83, (519,81,0): 88, 79, 80, (519,82,0): 88, 79, 82, (519,83,0): 87, 78, 79, (519,84,0): 87, 78, 81, (519,85,0): 86, 77, 78, (519,86,0): 86, 77, 80, (519,87,0): 86, 77, 78, (519,88,0): 86, 77, 80, (519,89,0): 86, 77, 78, (519,90,0): 86, 77, 80, (519,91,0): 86, 77, 78, (519,92,0): 85, 76, 79, (519,93,0): 85, 76, 77, (519,94,0): 85, 76, 79, (519,95,0): 85, 76, 79, (519,96,0): 85, 79, 81, (519,97,0): 85, 79, 81, (519,98,0): 84, 78, 80, (519,99,0): 83, 77, 79, (519,100,0): 80, 74, 76, (519,101,0): 76, 72, 73, (519,102,0): 73, 69, 70, (519,103,0): 72, 68, 69, (519,104,0): 67, 65, 66, (519,105,0): 67, 65, 66, (519,106,0): 67, 65, 66, (519,107,0): 66, 64, 65, (519,108,0): 66, 64, 65, (519,109,0): 64, 64, 64, (519,110,0): 64, 64, 64, (519,111,0): 63, 63, 63, (519,112,0): 64, 62, 65, (519,113,0): 64, 62, 65, (519,114,0): 63, 63, 65, (519,115,0): 63, 63, 65, (519,116,0): 63, 63, 65, (519,117,0): 62, 63, 67, (519,118,0): 62, 63, 67, (519,119,0): 62, 63, 68, (519,120,0): 60, 63, 68, (519,121,0): 61, 64, 69, (519,122,0): 62, 65, 72, (519,123,0): 63, 68, 74, (519,124,0): 64, 69, 75, (519,125,0): 64, 69, 75, (519,126,0): 63, 67, 76, (519,127,0): 63, 67, 76, (519,128,0): 64, 71, 79, (519,129,0): 63, 70, 78, (519,130,0): 63, 67, 76, (519,131,0): 62, 67, 73, (519,132,0): 60, 65, 71, (519,133,0): 58, 63, 69, (519,134,0): 57, 60, 67, (519,135,0): 57, 60, 65, (519,136,0): 59, 60, 65, (519,137,0): 59, 60, 64, (519,138,0): 58, 59, 63, (519,139,0): 58, 59, 63, (519,140,0): 58, 57, 62, (519,141,0): 58, 58, 60, (519,142,0): 57, 57, 59, (519,143,0): 57, 57, 57, (519,144,0): 54, 53, 51, (519,145,0): 55, 51, 48, (519,146,0): 52, 48, 45, (519,147,0): 50, 46, 43, (519,148,0): 48, 44, 41, (519,149,0): 47, 43, 40, (519,150,0): 46, 42, 39, (519,151,0): 46, 42, 39, (519,152,0): 45, 41, 38, (519,153,0): 45, 41, 38, (519,154,0): 45, 41, 38, (519,155,0): 45, 41, 38, (519,156,0): 45, 41, 38, (519,157,0): 45, 41, 38, (519,158,0): 45, 41, 38, (519,159,0): 45, 41, 38, (519,160,0): 44, 40, 37, (519,161,0): 44, 40, 37, (519,162,0): 44, 40, 37, (519,163,0): 44, 40, 37, (519,164,0): 44, 40, 37, (519,165,0): 44, 40, 37, (519,166,0): 44, 40, 37, (519,167,0): 44, 40, 37, (519,168,0): 44, 40, 37, (519,169,0): 44, 40, 37, (519,170,0): 43, 39, 36, (519,171,0): 43, 39, 36, (519,172,0): 42, 38, 35, (519,173,0): 42, 38, 35, (519,174,0): 41, 37, 34, (519,175,0): 41, 37, 34, (519,176,0): 40, 36, 37, (519,177,0): 40, 36, 37, (519,178,0): 40, 36, 37, (519,179,0): 40, 36, 37, (519,180,0): 40, 36, 37, (519,181,0): 40, 36, 37, (519,182,0): 40, 36, 37, (519,183,0): 40, 36, 37, (519,184,0): 38, 34, 35, (519,185,0): 38, 34, 35, (519,186,0): 38, 34, 35, (519,187,0): 38, 34, 35, (519,188,0): 38, 34, 35, (519,189,0): 38, 34, 35, (519,190,0): 38, 34, 35, (519,191,0): 38, 34, 35, (519,192,0): 37, 32, 38, (519,193,0): 37, 32, 38, (519,194,0): 37, 32, 38, (519,195,0): 37, 32, 38, (519,196,0): 37, 32, 38, (519,197,0): 37, 32, 38, (519,198,0): 37, 32, 38, (519,199,0): 37, 32, 38, (519,200,0): 37, 32, 38, (519,201,0): 37, 32, 38, (519,202,0): 37, 32, 38, (519,203,0): 37, 32, 38, (519,204,0): 37, 32, 38, (519,205,0): 37, 32, 38, (519,206,0): 37, 32, 38, (519,207,0): 35, 33, 38, (519,208,0): 35, 33, 38, (519,209,0): 34, 33, 38, (519,210,0): 34, 33, 38, (519,211,0): 34, 33, 38, (519,212,0): 34, 33, 38, (519,213,0): 34, 33, 38, (519,214,0): 34, 33, 38, (519,215,0): 34, 33, 38, (519,216,0): 32, 31, 36, (519,217,0): 32, 31, 36, (519,218,0): 32, 31, 36, (519,219,0): 32, 31, 36, (519,220,0): 32, 31, 36, (519,221,0): 32, 31, 36, (519,222,0): 32, 31, 36, (519,223,0): 32, 31, 36, (519,224,0): 34, 33, 39, (519,225,0): 34, 33, 39, (519,226,0): 34, 33, 39, (519,227,0): 34, 33, 39, (519,228,0): 34, 33, 39, (519,229,0): 34, 33, 39, (519,230,0): 34, 33, 39, (519,231,0): 34, 33, 39, (519,232,0): 34, 33, 39, (519,233,0): 34, 33, 39, (519,234,0): 34, 33, 39, (519,235,0): 34, 33, 39, (519,236,0): 34, 33, 39, (519,237,0): 34, 33, 39, (519,238,0): 34, 33, 39, (519,239,0): 34, 33, 39, (519,240,0): 37, 35, 46, (519,241,0): 37, 35, 46, (519,242,0): 37, 35, 46, (519,243,0): 38, 36, 47, (519,244,0): 39, 36, 47, (519,245,0): 40, 37, 48, (519,246,0): 42, 36, 50, (519,247,0): 43, 37, 51, (519,248,0): 44, 37, 53, (519,249,0): 44, 37, 53, (519,250,0): 46, 37, 56, (519,251,0): 46, 37, 56, (519,252,0): 49, 37, 57, (519,253,0): 50, 38, 58, (519,254,0): 50, 38, 58, (519,255,0): 51, 39, 59, (519,256,0): 53, 40, 58, (519,257,0): 55, 42, 59, (519,258,0): 58, 44, 61, (519,259,0): 63, 46, 64, (519,260,0): 69, 50, 69, (519,261,0): 73, 54, 73, (519,262,0): 79, 58, 75, (519,263,0): 81, 60, 77, (519,264,0): 78, 57, 74, (519,265,0): 76, 55, 70, (519,266,0): 73, 52, 67, (519,267,0): 69, 51, 63, (519,268,0): 66, 50, 61, (519,269,0): 64, 51, 61, (519,270,0): 65, 52, 62, (519,271,0): 65, 53, 63, (519,272,0): 62, 51, 65, (519,273,0): 60, 52, 65, (519,274,0): 60, 52, 65, (519,275,0): 60, 52, 65, (519,276,0): 62, 51, 65, (519,277,0): 62, 51, 65, (519,278,0): 62, 51, 65, (519,279,0): 62, 51, 65, (519,280,0): 66, 54, 68, (519,281,0): 67, 55, 69, (519,282,0): 68, 54, 69, (519,283,0): 70, 56, 71, (519,284,0): 71, 57, 72, (519,285,0): 72, 58, 73, (519,286,0): 75, 58, 74, (519,287,0): 76, 58, 74, (519,288,0): 83, 62, 77, (519,289,0): 83, 62, 77, (519,290,0): 83, 62, 77, (519,291,0): 84, 64, 76, (519,292,0): 85, 63, 76, (519,293,0): 86, 64, 77, (519,294,0): 87, 63, 76, (519,295,0): 87, 63, 76, (519,296,0): 88, 64, 77, (519,297,0): 88, 65, 75, (519,298,0): 90, 64, 75, (519,299,0): 91, 65, 76, (519,300,0): 92, 65, 74, (519,301,0): 93, 66, 75, (519,302,0): 93, 66, 75, (519,303,0): 93, 66, 75, (519,304,0): 92, 62, 74, (519,305,0): 94, 64, 76, (519,306,0): 98, 66, 77, (519,307,0): 99, 66, 75, (519,308,0): 101, 66, 73, (519,309,0): 105, 68, 75, (519,310,0): 112, 71, 79, (519,311,0): 119, 74, 81, (519,312,0): 132, 81, 90, (519,313,0): 142, 85, 92, (519,314,0): 152, 90, 93, (519,315,0): 163, 95, 94, (519,316,0): 174, 101, 94, (519,317,0): 190, 114, 100, (519,318,0): 209, 131, 109, (519,319,0): 219, 146, 114, (519,320,0): 245, 182, 138, (519,321,0): 252, 198, 151, (519,322,0): 245, 197, 157, (519,323,0): 217, 176, 146, (519,324,0): 191, 158, 141, (519,325,0): 183, 156, 147, (519,326,0): 177, 156, 155, (519,327,0): 171, 152, 156, (519,328,0): 163, 146, 154, (519,329,0): 157, 140, 150, (519,330,0): 148, 128, 139, (519,331,0): 131, 111, 122, (519,332,0): 113, 91, 104, (519,333,0): 94, 72, 85, (519,334,0): 78, 56, 69, (519,335,0): 68, 48, 59, (519,336,0): 56, 39, 47, (519,337,0): 52, 37, 42, (519,338,0): 48, 33, 38, (519,339,0): 47, 32, 37, (519,340,0): 46, 31, 38, (519,341,0): 45, 30, 37, (519,342,0): 41, 26, 33, (519,343,0): 38, 23, 30, (519,344,0): 39, 23, 33, (519,345,0): 35, 19, 29, (519,346,0): 32, 16, 27, (519,347,0): 31, 15, 26, (519,348,0): 32, 16, 27, (519,349,0): 33, 17, 28, (519,350,0): 31, 15, 28, (519,351,0): 30, 14, 27, (519,352,0): 29, 13, 24, (519,353,0): 29, 13, 24, (519,354,0): 29, 13, 24, (519,355,0): 30, 14, 25, (519,356,0): 30, 14, 25, (519,357,0): 30, 14, 25, (519,358,0): 31, 15, 26, (519,359,0): 31, 15, 26, (519,360,0): 28, 12, 23, (519,361,0): 28, 12, 23, (519,362,0): 28, 12, 23, (519,363,0): 28, 12, 23, (519,364,0): 28, 12, 23, (519,365,0): 28, 12, 23, (519,366,0): 28, 12, 23, (519,367,0): 26, 13, 23, (519,368,0): 31, 18, 27, (519,369,0): 28, 17, 25, (519,370,0): 26, 15, 23, (519,371,0): 24, 13, 21, (519,372,0): 22, 11, 19, (519,373,0): 21, 10, 18, (519,374,0): 21, 10, 18, (519,375,0): 21, 10, 18, (519,376,0): 23, 12, 20, (519,377,0): 23, 12, 20, (519,378,0): 23, 12, 20, (519,379,0): 24, 13, 21, (519,380,0): 24, 13, 21, (519,381,0): 25, 14, 22, (519,382,0): 25, 14, 22, (519,383,0): 26, 14, 24, (519,384,0): 21, 8, 25, (519,385,0): 22, 9, 27, (519,386,0): 23, 10, 28, (519,387,0): 24, 11, 29, (519,388,0): 24, 11, 28, (519,389,0): 23, 10, 27, (519,390,0): 22, 9, 26, (519,391,0): 21, 8, 25, (519,392,0): 23, 11, 25, (519,393,0): 23, 11, 25, (519,394,0): 23, 11, 23, (519,395,0): 23, 11, 23, (519,396,0): 23, 11, 23, (519,397,0): 23, 11, 23, (519,398,0): 23, 11, 21, (519,399,0): 23, 12, 20, (519,400,0): 27, 12, 19, (519,401,0): 27, 12, 17, (519,402,0): 27, 12, 17, (519,403,0): 27, 12, 17, (519,404,0): 27, 12, 17, (519,405,0): 27, 12, 17, (519,406,0): 27, 12, 17, (519,407,0): 27, 12, 17, (519,408,0): 24, 9, 14, (519,409,0): 25, 10, 15, (519,410,0): 25, 10, 15, (519,411,0): 25, 10, 15, (519,412,0): 26, 11, 16, (519,413,0): 27, 12, 17, (519,414,0): 27, 12, 17, (519,415,0): 27, 12, 17, (519,416,0): 31, 16, 21, (519,417,0): 31, 16, 21, (519,418,0): 31, 16, 21, (519,419,0): 32, 17, 22, (519,420,0): 32, 17, 22, (519,421,0): 32, 17, 22, (519,422,0): 32, 17, 22, (519,423,0): 32, 17, 22, (519,424,0): 34, 19, 24, (519,425,0): 36, 21, 26, (519,426,0): 38, 23, 28, (519,427,0): 40, 25, 30, (519,428,0): 40, 25, 30, (519,429,0): 40, 25, 30, (519,430,0): 38, 23, 28, (519,431,0): 38, 22, 25, (519,432,0): 40, 21, 25, (519,433,0): 41, 21, 23, (519,434,0): 41, 21, 23, (519,435,0): 41, 21, 23, (519,436,0): 41, 21, 23, (519,437,0): 40, 20, 22, (519,438,0): 40, 20, 22, (519,439,0): 40, 20, 22, (519,440,0): 39, 19, 21, (519,441,0): 39, 19, 21, (519,442,0): 38, 18, 20, (519,443,0): 38, 18, 20, (519,444,0): 37, 17, 19, (519,445,0): 36, 16, 18, (519,446,0): 35, 15, 17, (519,447,0): 35, 15, 17, (519,448,0): 31, 12, 18, (519,449,0): 29, 12, 18, (519,450,0): 29, 12, 18, (519,451,0): 28, 11, 17, (519,452,0): 28, 11, 17, (519,453,0): 28, 11, 17, (519,454,0): 27, 10, 16, (519,455,0): 27, 10, 16, (519,456,0): 27, 10, 16, (519,457,0): 27, 10, 16, (519,458,0): 28, 11, 17, (519,459,0): 28, 11, 17, (519,460,0): 29, 12, 18, (519,461,0): 29, 12, 18, (519,462,0): 30, 13, 19, (519,463,0): 32, 13, 17, (519,464,0): 37, 14, 20, (519,465,0): 40, 15, 19, (519,466,0): 41, 16, 20, (519,467,0): 43, 18, 22, (519,468,0): 43, 18, 22, (519,469,0): 43, 18, 22, (519,470,0): 42, 17, 21, (519,471,0): 42, 17, 21, (519,472,0): 43, 16, 21, (519,473,0): 45, 18, 23, (519,474,0): 50, 21, 26, (519,475,0): 51, 22, 27, (519,476,0): 52, 21, 27, (519,477,0): 50, 19, 25, (519,478,0): 47, 16, 22, (519,479,0): 45, 14, 20, (519,480,0): 38, 11, 20, (519,481,0): 38, 12, 21, (519,482,0): 38, 12, 21, (519,483,0): 36, 13, 21, (519,484,0): 34, 13, 22, (519,485,0): 33, 12, 21, (519,486,0): 32, 12, 21, (519,487,0): 31, 11, 20, (519,488,0): 26, 9, 19, (519,489,0): 23, 7, 17, (519,490,0): 18, 5, 15, (519,491,0): 16, 3, 13, (519,492,0): 15, 2, 12, (519,493,0): 14, 2, 12, (519,494,0): 15, 3, 15, (519,495,0): 15, 5, 16, (519,496,0): 12, 0, 10, (519,497,0): 12, 0, 10, (519,498,0): 12, 0, 10, (519,499,0): 12, 0, 10, (519,500,0): 13, 1, 11, (519,501,0): 16, 3, 13, (519,502,0): 18, 5, 15, (519,503,0): 19, 6, 16, (519,504,0): 18, 2, 13, (519,505,0): 19, 3, 14, (519,506,0): 19, 3, 14, (519,507,0): 21, 3, 15, (519,508,0): 23, 5, 17, (519,509,0): 24, 6, 18, (519,510,0): 24, 6, 18, (519,511,0): 28, 6, 19, (519,512,0): 29, 2, 17, (519,513,0): 32, 4, 18, (519,514,0): 33, 5, 19, (519,515,0): 35, 7, 21, (519,516,0): 37, 9, 21, (519,517,0): 40, 10, 22, (519,518,0): 41, 11, 23, (519,519,0): 42, 10, 23, (519,520,0): 46, 14, 25, (519,521,0): 46, 14, 25, (519,522,0): 48, 15, 24, (519,523,0): 48, 15, 24, (519,524,0): 49, 16, 25, (519,525,0): 51, 18, 27, (519,526,0): 54, 19, 26, (519,527,0): 53, 20, 27, (519,528,0): 54, 25, 29, (519,529,0): 51, 25, 26, (519,530,0): 50, 24, 25, (519,531,0): 50, 21, 23, (519,532,0): 50, 21, 23, (519,533,0): 52, 23, 25, (519,534,0): 54, 24, 26, (519,535,0): 55, 25, 27, (519,536,0): 52, 20, 23, (519,537,0): 56, 21, 25, (519,538,0): 60, 24, 28, (519,539,0): 61, 25, 29, (519,540,0): 61, 25, 29, (519,541,0): 61, 22, 27, (519,542,0): 58, 19, 24, (519,543,0): 54, 17, 24, (519,544,0): 52, 19, 26, (519,545,0): 50, 19, 25, (519,546,0): 50, 19, 25, (519,547,0): 49, 18, 24, (519,548,0): 48, 17, 23, (519,549,0): 48, 17, 23, (519,550,0): 47, 16, 22, (519,551,0): 47, 16, 22, (519,552,0): 45, 14, 20, (519,553,0): 46, 15, 21, (519,554,0): 48, 17, 23, (519,555,0): 49, 18, 24, (519,556,0): 49, 18, 24, (519,557,0): 48, 17, 23, (519,558,0): 46, 15, 21, (519,559,0): 44, 14, 22, (519,560,0): 37, 9, 21, (519,561,0): 37, 11, 24, (519,562,0): 39, 13, 26, (519,563,0): 38, 14, 27, (519,564,0): 38, 14, 27, (519,565,0): 37, 13, 26, (519,566,0): 35, 11, 24, (519,567,0): 33, 11, 23, (519,568,0): 37, 15, 27, (519,569,0): 35, 15, 26, (519,570,0): 34, 14, 25, (519,571,0): 33, 13, 24, (519,572,0): 33, 13, 24, (519,573,0): 32, 15, 25, (519,574,0): 33, 16, 26, (519,575,0): 33, 17, 28, (519,576,0): 31, 15, 28, (519,577,0): 30, 16, 31, (519,578,0): 31, 19, 31, (519,579,0): 30, 20, 31, (519,580,0): 30, 18, 28, (519,581,0): 32, 16, 26, (519,582,0): 35, 14, 23, (519,583,0): 38, 11, 20, (519,584,0): 50, 14, 24, (519,585,0): 58, 18, 27, (519,586,0): 66, 23, 32, (519,587,0): 67, 26, 32, (519,588,0): 60, 25, 29, (519,589,0): 52, 22, 24, (519,590,0): 43, 22, 19, (519,591,0): 40, 20, 19, (519,592,0): 42, 17, 23, (519,593,0): 42, 16, 25, (519,594,0): 39, 18, 25, (519,595,0): 38, 19, 25, (519,596,0): 35, 18, 24, (519,597,0): 35, 16, 22, (519,598,0): 33, 12, 19, (519,599,0): 32, 9, 15, (520,0,0): 41, 66, 73, (520,1,0): 41, 66, 73, (520,2,0): 41, 66, 73, (520,3,0): 41, 66, 73, (520,4,0): 41, 66, 73, (520,5,0): 41, 66, 73, (520,6,0): 41, 66, 73, (520,7,0): 41, 66, 73, (520,8,0): 40, 65, 72, (520,9,0): 40, 65, 72, (520,10,0): 40, 65, 72, (520,11,0): 41, 66, 73, (520,12,0): 41, 66, 73, (520,13,0): 42, 67, 74, (520,14,0): 42, 67, 74, (520,15,0): 43, 68, 75, (520,16,0): 43, 68, 75, (520,17,0): 43, 68, 75, (520,18,0): 43, 68, 75, (520,19,0): 44, 69, 76, (520,20,0): 44, 69, 76, (520,21,0): 45, 70, 77, (520,22,0): 45, 70, 77, (520,23,0): 46, 71, 78, (520,24,0): 47, 72, 79, (520,25,0): 47, 72, 79, (520,26,0): 48, 73, 80, (520,27,0): 48, 73, 80, (520,28,0): 49, 74, 81, (520,29,0): 49, 74, 81, (520,30,0): 50, 75, 82, (520,31,0): 50, 75, 82, (520,32,0): 51, 74, 82, (520,33,0): 51, 74, 82, (520,34,0): 54, 74, 83, (520,35,0): 54, 74, 83, (520,36,0): 55, 75, 84, (520,37,0): 55, 75, 84, (520,38,0): 57, 75, 85, (520,39,0): 57, 75, 85, (520,40,0): 58, 75, 85, (520,41,0): 58, 75, 85, (520,42,0): 59, 76, 86, (520,43,0): 59, 76, 86, (520,44,0): 62, 76, 87, (520,45,0): 62, 76, 87, (520,46,0): 63, 77, 88, (520,47,0): 63, 77, 88, (520,48,0): 63, 75, 87, (520,49,0): 63, 75, 87, (520,50,0): 65, 75, 87, (520,51,0): 66, 76, 88, (520,52,0): 66, 76, 88, (520,53,0): 67, 77, 89, (520,54,0): 68, 76, 87, (520,55,0): 68, 76, 87, (520,56,0): 70, 77, 87, (520,57,0): 70, 77, 87, (520,58,0): 70, 77, 85, (520,59,0): 71, 78, 86, (520,60,0): 73, 77, 86, (520,61,0): 74, 78, 87, (520,62,0): 74, 78, 87, (520,63,0): 74, 78, 89, (520,64,0): 76, 78, 91, (520,65,0): 76, 78, 93, (520,66,0): 77, 79, 92, (520,67,0): 78, 80, 93, (520,68,0): 81, 80, 94, (520,69,0): 82, 82, 94, (520,70,0): 83, 83, 95, (520,71,0): 83, 83, 95, (520,72,0): 83, 81, 92, (520,73,0): 84, 82, 93, (520,74,0): 85, 82, 93, (520,75,0): 86, 83, 92, (520,76,0): 87, 84, 93, (520,77,0): 88, 85, 94, (520,78,0): 91, 85, 95, (520,79,0): 92, 87, 94, (520,80,0): 92, 86, 90, (520,81,0): 91, 85, 87, (520,82,0): 88, 82, 86, (520,83,0): 86, 80, 82, (520,84,0): 85, 79, 83, (520,85,0): 85, 79, 81, (520,86,0): 86, 80, 84, (520,87,0): 86, 80, 82, (520,88,0): 83, 77, 81, (520,89,0): 84, 78, 80, (520,90,0): 84, 78, 82, (520,91,0): 85, 79, 81, (520,92,0): 85, 79, 83, (520,93,0): 85, 79, 81, (520,94,0): 84, 78, 82, (520,95,0): 84, 78, 80, (520,96,0): 87, 78, 81, (520,97,0): 88, 79, 82, (520,98,0): 89, 80, 83, (520,99,0): 87, 81, 83, (520,100,0): 85, 79, 81, (520,101,0): 81, 75, 77, (520,102,0): 76, 72, 73, (520,103,0): 73, 69, 70, (520,104,0): 71, 69, 70, (520,105,0): 71, 69, 70, (520,106,0): 69, 69, 69, (520,107,0): 69, 69, 69, (520,108,0): 68, 68, 68, (520,109,0): 67, 69, 68, (520,110,0): 66, 68, 67, (520,111,0): 66, 68, 67, (520,112,0): 65, 65, 67, (520,113,0): 65, 64, 69, (520,114,0): 65, 64, 69, (520,115,0): 65, 64, 69, (520,116,0): 65, 66, 70, (520,117,0): 65, 66, 71, (520,118,0): 65, 66, 71, (520,119,0): 63, 66, 73, (520,120,0): 60, 63, 70, (520,121,0): 61, 64, 71, (520,122,0): 62, 66, 75, (520,123,0): 64, 68, 77, (520,124,0): 66, 70, 79, (520,125,0): 65, 72, 80, (520,126,0): 66, 73, 83, (520,127,0): 66, 73, 83, (520,128,0): 66, 73, 83, (520,129,0): 66, 73, 81, (520,130,0): 68, 72, 81, (520,131,0): 67, 71, 80, (520,132,0): 64, 68, 77, (520,133,0): 62, 67, 73, (520,134,0): 60, 63, 70, (520,135,0): 58, 61, 66, (520,136,0): 61, 62, 67, (520,137,0): 59, 60, 65, (520,138,0): 58, 59, 64, (520,139,0): 59, 60, 64, (520,140,0): 63, 62, 67, (520,141,0): 63, 62, 67, (520,142,0): 61, 60, 65, (520,143,0): 58, 58, 60, (520,144,0): 55, 53, 54, (520,145,0): 54, 53, 51, (520,146,0): 51, 50, 48, (520,147,0): 49, 48, 46, (520,148,0): 47, 46, 44, (520,149,0): 47, 46, 44, (520,150,0): 46, 45, 43, (520,151,0): 47, 46, 44, (520,152,0): 43, 42, 40, (520,153,0): 43, 42, 40, (520,154,0): 44, 43, 41, (520,155,0): 44, 43, 41, (520,156,0): 44, 43, 41, (520,157,0): 44, 43, 41, (520,158,0): 44, 43, 41, (520,159,0): 45, 44, 42, (520,160,0): 45, 41, 38, (520,161,0): 45, 41, 38, (520,162,0): 46, 42, 39, (520,163,0): 47, 43, 40, (520,164,0): 48, 44, 41, (520,165,0): 48, 44, 41, (520,166,0): 49, 45, 42, (520,167,0): 49, 45, 42, (520,168,0): 46, 42, 39, (520,169,0): 46, 42, 39, (520,170,0): 45, 41, 38, (520,171,0): 45, 41, 38, (520,172,0): 44, 40, 37, (520,173,0): 44, 40, 37, (520,174,0): 43, 39, 36, (520,175,0): 43, 39, 36, (520,176,0): 42, 38, 39, (520,177,0): 41, 37, 38, (520,178,0): 40, 36, 37, (520,179,0): 40, 36, 37, (520,180,0): 40, 36, 37, (520,181,0): 41, 37, 38, (520,182,0): 42, 38, 39, (520,183,0): 43, 39, 40, (520,184,0): 40, 36, 37, (520,185,0): 40, 36, 37, (520,186,0): 40, 36, 37, (520,187,0): 40, 36, 37, (520,188,0): 40, 36, 37, (520,189,0): 40, 36, 37, (520,190,0): 40, 36, 37, (520,191,0): 40, 36, 37, (520,192,0): 38, 33, 39, (520,193,0): 38, 33, 39, (520,194,0): 37, 32, 38, (520,195,0): 37, 32, 38, (520,196,0): 36, 31, 37, (520,197,0): 36, 31, 37, (520,198,0): 35, 30, 36, (520,199,0): 35, 30, 36, (520,200,0): 35, 30, 36, (520,201,0): 35, 30, 36, (520,202,0): 35, 30, 36, (520,203,0): 35, 30, 36, (520,204,0): 35, 30, 36, (520,205,0): 35, 30, 36, (520,206,0): 35, 30, 36, (520,207,0): 33, 31, 36, (520,208,0): 33, 31, 36, (520,209,0): 32, 31, 36, (520,210,0): 32, 31, 36, (520,211,0): 32, 31, 36, (520,212,0): 32, 31, 36, (520,213,0): 32, 31, 36, (520,214,0): 32, 31, 36, (520,215,0): 32, 31, 36, (520,216,0): 34, 33, 38, (520,217,0): 34, 33, 38, (520,218,0): 34, 33, 38, (520,219,0): 34, 33, 38, (520,220,0): 34, 33, 38, (520,221,0): 34, 33, 38, (520,222,0): 34, 33, 38, (520,223,0): 34, 33, 38, (520,224,0): 34, 33, 39, (520,225,0): 34, 33, 39, (520,226,0): 34, 33, 39, (520,227,0): 34, 33, 39, (520,228,0): 34, 33, 39, (520,229,0): 34, 33, 39, (520,230,0): 34, 33, 39, (520,231,0): 34, 33, 39, (520,232,0): 34, 33, 39, (520,233,0): 34, 33, 39, (520,234,0): 34, 33, 39, (520,235,0): 34, 33, 39, (520,236,0): 34, 33, 39, (520,237,0): 34, 33, 39, (520,238,0): 34, 33, 39, (520,239,0): 34, 33, 39, (520,240,0): 35, 35, 45, (520,241,0): 36, 36, 46, (520,242,0): 37, 35, 46, (520,243,0): 38, 36, 47, (520,244,0): 38, 36, 47, (520,245,0): 39, 37, 48, (520,246,0): 40, 36, 50, (520,247,0): 40, 36, 50, (520,248,0): 42, 35, 51, (520,249,0): 43, 36, 52, (520,250,0): 43, 36, 54, (520,251,0): 44, 37, 55, (520,252,0): 45, 36, 55, (520,253,0): 46, 37, 56, (520,254,0): 46, 37, 56, (520,255,0): 46, 37, 56, (520,256,0): 49, 38, 55, (520,257,0): 50, 39, 56, (520,258,0): 53, 40, 58, (520,259,0): 56, 43, 61, (520,260,0): 61, 47, 64, (520,261,0): 66, 49, 67, (520,262,0): 69, 50, 69, (520,263,0): 71, 53, 69, (520,264,0): 70, 52, 68, (520,265,0): 69, 53, 66, (520,266,0): 68, 52, 65, (520,267,0): 64, 50, 63, (520,268,0): 62, 50, 62, (520,269,0): 60, 50, 61, (520,270,0): 59, 49, 58, (520,271,0): 58, 48, 57, (520,272,0): 56, 48, 61, (520,273,0): 56, 48, 61, (520,274,0): 57, 49, 62, (520,275,0): 58, 50, 63, (520,276,0): 61, 50, 64, (520,277,0): 62, 51, 65, (520,278,0): 63, 52, 66, (520,279,0): 63, 52, 66, (520,280,0): 68, 56, 70, (520,281,0): 67, 55, 69, (520,282,0): 68, 54, 69, (520,283,0): 69, 55, 70, (520,284,0): 71, 57, 72, (520,285,0): 73, 59, 74, (520,286,0): 77, 60, 76, (520,287,0): 80, 62, 78, (520,288,0): 84, 63, 78, (520,289,0): 86, 64, 77, (520,290,0): 86, 64, 77, (520,291,0): 87, 65, 78, (520,292,0): 89, 65, 79, (520,293,0): 90, 66, 79, (520,294,0): 91, 67, 80, (520,295,0): 92, 68, 81, (520,296,0): 91, 65, 76, (520,297,0): 91, 65, 76, (520,298,0): 92, 64, 76, (520,299,0): 92, 65, 74, (520,300,0): 92, 65, 74, (520,301,0): 92, 65, 74, (520,302,0): 94, 64, 72, (520,303,0): 94, 64, 74, (520,304,0): 96, 64, 77, (520,305,0): 95, 63, 76, (520,306,0): 95, 62, 73, (520,307,0): 96, 63, 72, (520,308,0): 101, 66, 73, (520,309,0): 108, 68, 76, (520,310,0): 115, 72, 81, (520,311,0): 121, 74, 82, (520,312,0): 130, 77, 87, (520,313,0): 141, 84, 91, (520,314,0): 154, 92, 95, (520,315,0): 164, 96, 93, (520,316,0): 173, 100, 91, (520,317,0): 189, 113, 97, (520,318,0): 212, 134, 111, (520,319,0): 226, 153, 120, (520,320,0): 253, 191, 144, (520,321,0): 251, 199, 151, (520,322,0): 242, 197, 156, (520,323,0): 218, 182, 150, (520,324,0): 195, 166, 148, (520,325,0): 180, 158, 147, (520,326,0): 171, 153, 151, (520,327,0): 164, 147, 153, (520,328,0): 159, 142, 150, (520,329,0): 155, 138, 148, (520,330,0): 146, 126, 137, (520,331,0): 128, 107, 116, (520,332,0): 106, 84, 96, (520,333,0): 88, 66, 78, (520,334,0): 76, 56, 67, (520,335,0): 69, 52, 60, (520,336,0): 58, 43, 48, (520,337,0): 53, 38, 43, (520,338,0): 46, 31, 36, (520,339,0): 42, 27, 32, (520,340,0): 41, 26, 33, (520,341,0): 41, 26, 33, (520,342,0): 40, 25, 32, (520,343,0): 38, 23, 30, (520,344,0): 36, 20, 30, (520,345,0): 35, 19, 29, (520,346,0): 34, 18, 29, (520,347,0): 33, 17, 28, (520,348,0): 32, 16, 27, (520,349,0): 31, 15, 26, (520,350,0): 31, 15, 28, (520,351,0): 30, 14, 27, (520,352,0): 27, 11, 22, (520,353,0): 27, 11, 22, (520,354,0): 27, 11, 22, (520,355,0): 27, 11, 22, (520,356,0): 27, 11, 22, (520,357,0): 27, 11, 22, (520,358,0): 27, 11, 22, (520,359,0): 27, 11, 22, (520,360,0): 30, 14, 25, (520,361,0): 29, 13, 24, (520,362,0): 29, 13, 24, (520,363,0): 28, 12, 23, (520,364,0): 28, 12, 23, (520,365,0): 27, 11, 22, (520,366,0): 27, 11, 22, (520,367,0): 25, 12, 22, (520,368,0): 27, 14, 23, (520,369,0): 25, 14, 22, (520,370,0): 24, 13, 21, (520,371,0): 23, 12, 20, (520,372,0): 22, 11, 19, (520,373,0): 22, 11, 19, (520,374,0): 23, 12, 20, (520,375,0): 24, 13, 21, (520,376,0): 21, 10, 18, (520,377,0): 21, 10, 18, (520,378,0): 21, 10, 18, (520,379,0): 21, 10, 18, (520,380,0): 21, 10, 18, (520,381,0): 21, 10, 18, (520,382,0): 21, 10, 18, (520,383,0): 21, 9, 19, (520,384,0): 26, 13, 30, (520,385,0): 25, 12, 30, (520,386,0): 24, 11, 29, (520,387,0): 23, 10, 28, (520,388,0): 22, 9, 26, (520,389,0): 20, 7, 24, (520,390,0): 19, 6, 23, (520,391,0): 19, 6, 23, (520,392,0): 21, 9, 23, (520,393,0): 21, 9, 23, (520,394,0): 22, 10, 22, (520,395,0): 22, 10, 22, (520,396,0): 23, 11, 23, (520,397,0): 23, 11, 23, (520,398,0): 24, 12, 22, (520,399,0): 24, 13, 21, (520,400,0): 27, 12, 19, (520,401,0): 27, 12, 17, (520,402,0): 27, 12, 17, (520,403,0): 27, 12, 17, (520,404,0): 27, 12, 17, (520,405,0): 27, 12, 17, (520,406,0): 27, 12, 17, (520,407,0): 27, 12, 17, (520,408,0): 26, 11, 16, (520,409,0): 26, 11, 16, (520,410,0): 26, 11, 16, (520,411,0): 26, 11, 16, (520,412,0): 26, 11, 16, (520,413,0): 26, 11, 16, (520,414,0): 26, 11, 16, (520,415,0): 26, 11, 16, (520,416,0): 28, 13, 18, (520,417,0): 28, 13, 18, (520,418,0): 28, 13, 18, (520,419,0): 28, 13, 18, (520,420,0): 28, 13, 18, (520,421,0): 28, 13, 18, (520,422,0): 28, 13, 18, (520,423,0): 28, 13, 18, (520,424,0): 33, 18, 23, (520,425,0): 34, 19, 24, (520,426,0): 36, 21, 26, (520,427,0): 38, 23, 28, (520,428,0): 39, 24, 29, (520,429,0): 39, 24, 29, (520,430,0): 39, 24, 29, (520,431,0): 40, 24, 27, (520,432,0): 42, 23, 27, (520,433,0): 42, 22, 24, (520,434,0): 40, 20, 22, (520,435,0): 38, 18, 20, (520,436,0): 37, 17, 19, (520,437,0): 38, 18, 20, (520,438,0): 39, 19, 21, (520,439,0): 40, 20, 22, (520,440,0): 38, 18, 20, (520,441,0): 38, 18, 20, (520,442,0): 37, 17, 19, (520,443,0): 36, 16, 18, (520,444,0): 35, 15, 17, (520,445,0): 34, 14, 16, (520,446,0): 33, 13, 15, (520,447,0): 33, 13, 15, (520,448,0): 34, 15, 21, (520,449,0): 33, 14, 20, (520,450,0): 33, 14, 20, (520,451,0): 32, 13, 19, (520,452,0): 31, 12, 18, (520,453,0): 30, 11, 17, (520,454,0): 30, 11, 17, (520,455,0): 29, 10, 16, (520,456,0): 30, 11, 17, (520,457,0): 30, 11, 17, (520,458,0): 31, 12, 18, (520,459,0): 31, 12, 18, (520,460,0): 32, 13, 19, (520,461,0): 32, 13, 19, (520,462,0): 33, 14, 20, (520,463,0): 33, 14, 18, (520,464,0): 38, 17, 22, (520,465,0): 38, 16, 19, (520,466,0): 36, 14, 17, (520,467,0): 36, 14, 17, (520,468,0): 38, 13, 17, (520,469,0): 40, 15, 19, (520,470,0): 43, 16, 21, (520,471,0): 44, 17, 22, (520,472,0): 47, 18, 23, (520,473,0): 47, 18, 23, (520,474,0): 47, 18, 23, (520,475,0): 46, 17, 22, (520,476,0): 46, 17, 22, (520,477,0): 45, 16, 21, (520,478,0): 45, 16, 21, (520,479,0): 44, 15, 20, (520,480,0): 40, 14, 23, (520,481,0): 37, 14, 22, (520,482,0): 36, 13, 21, (520,483,0): 35, 12, 20, (520,484,0): 33, 12, 21, (520,485,0): 32, 11, 20, (520,486,0): 31, 11, 20, (520,487,0): 30, 10, 19, (520,488,0): 25, 8, 18, (520,489,0): 23, 7, 17, (520,490,0): 20, 7, 17, (520,491,0): 18, 5, 15, (520,492,0): 16, 4, 14, (520,493,0): 13, 3, 12, (520,494,0): 12, 2, 13, (520,495,0): 9, 1, 12, (520,496,0): 11, 1, 12, (520,497,0): 11, 1, 12, (520,498,0): 12, 2, 13, (520,499,0): 13, 3, 14, (520,500,0): 14, 4, 15, (520,501,0): 16, 4, 16, (520,502,0): 17, 5, 17, (520,503,0): 18, 6, 18, (520,504,0): 20, 6, 19, (520,505,0): 19, 5, 18, (520,506,0): 17, 3, 16, (520,507,0): 19, 3, 16, (520,508,0): 19, 3, 16, (520,509,0): 21, 5, 18, (520,510,0): 23, 7, 20, (520,511,0): 27, 7, 19, (520,512,0): 25, 1, 15, (520,513,0): 28, 1, 16, (520,514,0): 29, 3, 16, (520,515,0): 30, 4, 17, (520,516,0): 32, 6, 19, (520,517,0): 34, 6, 20, (520,518,0): 35, 7, 19, (520,519,0): 38, 8, 20, (520,520,0): 40, 10, 20, (520,521,0): 40, 10, 20, (520,522,0): 40, 8, 19, (520,523,0): 41, 9, 20, (520,524,0): 43, 12, 20, (520,525,0): 46, 15, 23, (520,526,0): 49, 18, 26, (520,527,0): 50, 21, 26, (520,528,0): 46, 20, 23, (520,529,0): 47, 22, 25, (520,530,0): 47, 22, 25, (520,531,0): 47, 21, 24, (520,532,0): 45, 19, 22, (520,533,0): 49, 20, 24, (520,534,0): 54, 23, 28, (520,535,0): 57, 26, 31, (520,536,0): 61, 29, 34, (520,537,0): 59, 27, 32, (520,538,0): 58, 23, 29, (520,539,0): 55, 20, 26, (520,540,0): 53, 18, 24, (520,541,0): 53, 16, 23, (520,542,0): 53, 16, 23, (520,543,0): 52, 17, 23, (520,544,0): 51, 20, 26, (520,545,0): 49, 20, 25, (520,546,0): 48, 19, 24, (520,547,0): 47, 18, 23, (520,548,0): 47, 18, 23, (520,549,0): 48, 19, 24, (520,550,0): 49, 20, 25, (520,551,0): 50, 21, 26, (520,552,0): 46, 17, 22, (520,553,0): 46, 17, 22, (520,554,0): 45, 16, 21, (520,555,0): 43, 14, 19, (520,556,0): 42, 13, 18, (520,557,0): 41, 12, 17, (520,558,0): 40, 11, 16, (520,559,0): 37, 10, 17, (520,560,0): 38, 12, 23, (520,561,0): 37, 13, 26, (520,562,0): 38, 14, 27, (520,563,0): 40, 16, 29, (520,564,0): 40, 16, 29, (520,565,0): 37, 15, 27, (520,566,0): 36, 14, 26, (520,567,0): 35, 13, 25, (520,568,0): 34, 12, 24, (520,569,0): 33, 13, 24, (520,570,0): 34, 14, 25, (520,571,0): 32, 15, 25, (520,572,0): 33, 16, 26, (520,573,0): 33, 16, 26, (520,574,0): 34, 17, 27, (520,575,0): 33, 17, 28, (520,576,0): 37, 21, 34, (520,577,0): 36, 19, 35, (520,578,0): 35, 19, 32, (520,579,0): 34, 18, 31, (520,580,0): 32, 16, 29, (520,581,0): 32, 14, 26, (520,582,0): 33, 13, 24, (520,583,0): 34, 11, 21, (520,584,0): 37, 11, 20, (520,585,0): 43, 16, 23, (520,586,0): 51, 20, 26, (520,587,0): 50, 19, 24, (520,588,0): 46, 16, 18, (520,589,0): 44, 15, 17, (520,590,0): 50, 22, 21, (520,591,0): 55, 26, 28, (520,592,0): 50, 17, 24, (520,593,0): 47, 17, 27, (520,594,0): 40, 19, 26, (520,595,0): 35, 18, 24, (520,596,0): 32, 17, 22, (520,597,0): 31, 16, 21, (520,598,0): 33, 14, 20, (520,599,0): 33, 12, 19, (521,0,0): 41, 66, 73, (521,1,0): 41, 66, 73, (521,2,0): 41, 66, 73, (521,3,0): 41, 66, 73, (521,4,0): 41, 66, 73, (521,5,0): 41, 66, 73, (521,6,0): 41, 66, 73, (521,7,0): 41, 66, 73, (521,8,0): 40, 65, 72, (521,9,0): 40, 65, 72, (521,10,0): 41, 66, 73, (521,11,0): 41, 66, 73, (521,12,0): 42, 67, 74, (521,13,0): 42, 67, 74, (521,14,0): 42, 67, 74, (521,15,0): 43, 68, 75, (521,16,0): 44, 69, 76, (521,17,0): 44, 69, 76, (521,18,0): 44, 69, 76, (521,19,0): 45, 70, 77, (521,20,0): 45, 70, 77, (521,21,0): 46, 71, 78, (521,22,0): 46, 71, 78, (521,23,0): 46, 71, 78, (521,24,0): 47, 72, 79, (521,25,0): 47, 72, 79, (521,26,0): 48, 73, 80, (521,27,0): 48, 73, 80, (521,28,0): 49, 74, 81, (521,29,0): 49, 74, 81, (521,30,0): 50, 75, 82, (521,31,0): 50, 75, 82, (521,32,0): 51, 74, 82, (521,33,0): 51, 74, 82, (521,34,0): 54, 74, 83, (521,35,0): 54, 74, 83, (521,36,0): 55, 75, 84, (521,37,0): 55, 75, 84, (521,38,0): 57, 75, 85, (521,39,0): 57, 75, 85, (521,40,0): 58, 75, 85, (521,41,0): 58, 75, 85, (521,42,0): 59, 76, 86, (521,43,0): 59, 76, 86, (521,44,0): 62, 76, 87, (521,45,0): 62, 76, 87, (521,46,0): 63, 77, 88, (521,47,0): 63, 77, 88, (521,48,0): 63, 75, 87, (521,49,0): 63, 75, 87, (521,50,0): 65, 75, 87, (521,51,0): 66, 76, 88, (521,52,0): 66, 76, 88, (521,53,0): 67, 77, 89, (521,54,0): 68, 76, 87, (521,55,0): 68, 76, 87, (521,56,0): 70, 77, 87, (521,57,0): 70, 77, 87, (521,58,0): 70, 77, 85, (521,59,0): 71, 78, 86, (521,60,0): 73, 77, 86, (521,61,0): 74, 78, 87, (521,62,0): 74, 78, 87, (521,63,0): 74, 78, 89, (521,64,0): 75, 77, 90, (521,65,0): 76, 78, 93, (521,66,0): 77, 79, 92, (521,67,0): 78, 80, 93, (521,68,0): 81, 80, 94, (521,69,0): 82, 81, 95, (521,70,0): 83, 83, 95, (521,71,0): 83, 83, 95, (521,72,0): 83, 81, 92, (521,73,0): 83, 81, 92, (521,74,0): 85, 82, 93, (521,75,0): 86, 83, 94, (521,76,0): 87, 84, 93, (521,77,0): 88, 85, 94, (521,78,0): 91, 85, 95, (521,79,0): 91, 86, 93, (521,80,0): 92, 85, 92, (521,81,0): 91, 85, 89, (521,82,0): 89, 83, 87, (521,83,0): 88, 82, 86, (521,84,0): 86, 80, 84, (521,85,0): 85, 79, 83, (521,86,0): 85, 79, 83, (521,87,0): 85, 79, 83, (521,88,0): 83, 77, 81, (521,89,0): 83, 77, 81, (521,90,0): 84, 78, 82, (521,91,0): 85, 79, 83, (521,92,0): 85, 79, 83, (521,93,0): 85, 79, 83, (521,94,0): 85, 79, 83, (521,95,0): 85, 79, 83, (521,96,0): 87, 78, 83, (521,97,0): 88, 79, 82, (521,98,0): 90, 81, 84, (521,99,0): 90, 81, 84, (521,100,0): 88, 79, 82, (521,101,0): 83, 77, 79, (521,102,0): 78, 74, 75, (521,103,0): 76, 72, 73, (521,104,0): 72, 70, 71, (521,105,0): 72, 70, 71, (521,106,0): 70, 70, 70, (521,107,0): 69, 71, 70, (521,108,0): 68, 70, 69, (521,109,0): 68, 70, 69, (521,110,0): 67, 69, 68, (521,111,0): 67, 68, 70, (521,112,0): 66, 65, 70, (521,113,0): 66, 65, 70, (521,114,0): 66, 65, 70, (521,115,0): 65, 66, 71, (521,116,0): 65, 66, 71, (521,117,0): 66, 67, 72, (521,118,0): 64, 67, 74, (521,119,0): 64, 67, 74, (521,120,0): 61, 64, 71, (521,121,0): 61, 65, 74, (521,122,0): 62, 66, 75, (521,123,0): 64, 68, 77, (521,124,0): 64, 71, 81, (521,125,0): 65, 72, 82, (521,126,0): 66, 73, 83, (521,127,0): 67, 74, 84, (521,128,0): 67, 74, 84, (521,129,0): 67, 74, 84, (521,130,0): 68, 72, 81, (521,131,0): 67, 71, 80, (521,132,0): 65, 69, 78, (521,133,0): 62, 66, 75, (521,134,0): 60, 63, 70, (521,135,0): 59, 62, 69, (521,136,0): 61, 61, 69, (521,137,0): 59, 60, 65, (521,138,0): 58, 59, 64, (521,139,0): 59, 60, 65, (521,140,0): 62, 61, 66, (521,141,0): 63, 62, 67, (521,142,0): 61, 60, 65, (521,143,0): 59, 59, 61, (521,144,0): 58, 56, 57, (521,145,0): 56, 55, 53, (521,146,0): 54, 53, 51, (521,147,0): 52, 51, 49, (521,148,0): 50, 49, 47, (521,149,0): 49, 48, 46, (521,150,0): 49, 48, 46, (521,151,0): 49, 48, 46, (521,152,0): 45, 44, 42, (521,153,0): 45, 44, 42, (521,154,0): 45, 44, 42, (521,155,0): 45, 44, 42, (521,156,0): 45, 44, 42, (521,157,0): 44, 43, 41, (521,158,0): 44, 43, 41, (521,159,0): 44, 43, 41, (521,160,0): 46, 42, 39, (521,161,0): 46, 42, 39, (521,162,0): 47, 43, 40, (521,163,0): 47, 43, 40, (521,164,0): 48, 44, 41, (521,165,0): 49, 45, 42, (521,166,0): 49, 45, 42, (521,167,0): 49, 45, 42, (521,168,0): 47, 43, 40, (521,169,0): 47, 43, 40, (521,170,0): 46, 42, 39, (521,171,0): 46, 42, 39, (521,172,0): 45, 41, 38, (521,173,0): 45, 41, 38, (521,174,0): 44, 40, 37, (521,175,0): 44, 40, 37, (521,176,0): 43, 39, 40, (521,177,0): 42, 38, 39, (521,178,0): 41, 37, 38, (521,179,0): 40, 36, 37, (521,180,0): 40, 36, 37, (521,181,0): 41, 37, 38, (521,182,0): 43, 39, 40, (521,183,0): 43, 39, 40, (521,184,0): 39, 35, 36, (521,185,0): 39, 35, 36, (521,186,0): 39, 35, 36, (521,187,0): 39, 35, 36, (521,188,0): 39, 35, 36, (521,189,0): 39, 35, 36, (521,190,0): 39, 35, 36, (521,191,0): 39, 35, 36, (521,192,0): 38, 33, 39, (521,193,0): 38, 33, 39, (521,194,0): 38, 33, 39, (521,195,0): 37, 32, 38, (521,196,0): 37, 32, 38, (521,197,0): 36, 31, 37, (521,198,0): 36, 31, 37, (521,199,0): 35, 30, 36, (521,200,0): 35, 30, 36, (521,201,0): 35, 30, 36, (521,202,0): 35, 30, 36, (521,203,0): 35, 30, 36, (521,204,0): 35, 30, 36, (521,205,0): 35, 30, 36, (521,206,0): 35, 30, 36, (521,207,0): 33, 31, 36, (521,208,0): 33, 31, 36, (521,209,0): 32, 31, 36, (521,210,0): 32, 31, 36, (521,211,0): 32, 31, 36, (521,212,0): 32, 31, 36, (521,213,0): 32, 31, 36, (521,214,0): 32, 31, 36, (521,215,0): 32, 31, 36, (521,216,0): 34, 33, 38, (521,217,0): 34, 33, 38, (521,218,0): 34, 33, 38, (521,219,0): 34, 33, 38, (521,220,0): 34, 33, 38, (521,221,0): 34, 33, 38, (521,222,0): 34, 33, 38, (521,223,0): 34, 33, 38, (521,224,0): 34, 33, 39, (521,225,0): 34, 33, 39, (521,226,0): 34, 33, 39, (521,227,0): 34, 33, 39, (521,228,0): 34, 33, 39, (521,229,0): 34, 33, 39, (521,230,0): 34, 33, 39, (521,231,0): 34, 33, 39, (521,232,0): 34, 33, 39, (521,233,0): 34, 33, 39, (521,234,0): 34, 33, 39, (521,235,0): 34, 33, 39, (521,236,0): 34, 33, 39, (521,237,0): 34, 33, 39, (521,238,0): 34, 33, 39, (521,239,0): 34, 33, 39, (521,240,0): 35, 35, 45, (521,241,0): 36, 36, 46, (521,242,0): 37, 35, 46, (521,243,0): 37, 35, 46, (521,244,0): 38, 36, 47, (521,245,0): 38, 36, 47, (521,246,0): 40, 36, 50, (521,247,0): 40, 36, 50, (521,248,0): 42, 35, 51, (521,249,0): 43, 36, 52, (521,250,0): 43, 36, 54, (521,251,0): 43, 36, 54, (521,252,0): 45, 36, 55, (521,253,0): 45, 36, 55, (521,254,0): 46, 37, 56, (521,255,0): 46, 37, 56, (521,256,0): 47, 38, 55, (521,257,0): 48, 39, 56, (521,258,0): 50, 41, 58, (521,259,0): 55, 44, 61, (521,260,0): 59, 46, 64, (521,261,0): 63, 49, 66, (521,262,0): 65, 51, 68, (521,263,0): 66, 52, 69, (521,264,0): 69, 52, 68, (521,265,0): 66, 52, 67, (521,266,0): 65, 51, 66, (521,267,0): 63, 51, 63, (521,268,0): 61, 51, 62, (521,269,0): 58, 50, 61, (521,270,0): 57, 50, 58, (521,271,0): 56, 48, 59, (521,272,0): 55, 47, 60, (521,273,0): 56, 48, 61, (521,274,0): 57, 49, 62, (521,275,0): 58, 50, 63, (521,276,0): 61, 50, 64, (521,277,0): 62, 51, 65, (521,278,0): 63, 52, 66, (521,279,0): 63, 52, 66, (521,280,0): 67, 55, 69, (521,281,0): 67, 55, 69, (521,282,0): 68, 54, 69, (521,283,0): 69, 55, 70, (521,284,0): 71, 57, 72, (521,285,0): 73, 59, 74, (521,286,0): 77, 60, 76, (521,287,0): 80, 62, 76, (521,288,0): 84, 64, 76, (521,289,0): 85, 63, 76, (521,290,0): 86, 64, 77, (521,291,0): 87, 65, 78, (521,292,0): 89, 65, 78, (521,293,0): 90, 66, 79, (521,294,0): 91, 67, 80, (521,295,0): 91, 68, 78, (521,296,0): 91, 65, 76, (521,297,0): 91, 65, 74, (521,298,0): 92, 65, 74, (521,299,0): 92, 65, 74, (521,300,0): 92, 65, 74, (521,301,0): 92, 65, 74, (521,302,0): 94, 64, 72, (521,303,0): 94, 64, 72, (521,304,0): 96, 64, 75, (521,305,0): 95, 63, 74, (521,306,0): 96, 63, 72, (521,307,0): 98, 62, 72, (521,308,0): 102, 65, 73, (521,309,0): 108, 68, 77, (521,310,0): 115, 72, 81, (521,311,0): 121, 74, 84, (521,312,0): 131, 78, 88, (521,313,0): 143, 83, 91, (521,314,0): 154, 89, 93, (521,315,0): 164, 95, 90, (521,316,0): 174, 100, 89, (521,317,0): 193, 116, 96, (521,318,0): 216, 139, 111, (521,319,0): 232, 158, 123, (521,320,0): 255, 194, 147, (521,321,0): 253, 203, 154, (521,322,0): 243, 199, 160, (521,323,0): 220, 185, 155, (521,324,0): 196, 169, 150, (521,325,0): 179, 159, 150, (521,326,0): 168, 152, 152, (521,327,0): 161, 146, 151, (521,328,0): 157, 141, 151, (521,329,0): 153, 136, 146, (521,330,0): 144, 124, 133, (521,331,0): 127, 106, 115, (521,332,0): 106, 85, 92, (521,333,0): 87, 68, 74, (521,334,0): 73, 56, 62, (521,335,0): 68, 51, 57, (521,336,0): 57, 42, 47, (521,337,0): 52, 37, 42, (521,338,0): 45, 30, 35, (521,339,0): 41, 26, 31, (521,340,0): 41, 26, 33, (521,341,0): 40, 25, 32, (521,342,0): 39, 24, 31, (521,343,0): 37, 22, 29, (521,344,0): 35, 19, 29, (521,345,0): 35, 19, 29, (521,346,0): 34, 18, 29, (521,347,0): 33, 17, 28, (521,348,0): 32, 16, 27, (521,349,0): 31, 15, 26, (521,350,0): 30, 14, 27, (521,351,0): 30, 14, 27, (521,352,0): 27, 11, 22, (521,353,0): 27, 11, 22, (521,354,0): 27, 11, 22, (521,355,0): 27, 11, 22, (521,356,0): 27, 11, 22, (521,357,0): 27, 11, 22, (521,358,0): 27, 11, 22, (521,359,0): 27, 11, 22, (521,360,0): 29, 13, 24, (521,361,0): 28, 12, 23, (521,362,0): 28, 12, 23, (521,363,0): 27, 11, 22, (521,364,0): 27, 11, 22, (521,365,0): 26, 10, 21, (521,366,0): 26, 10, 21, (521,367,0): 24, 11, 21, (521,368,0): 25, 14, 22, (521,369,0): 24, 13, 21, (521,370,0): 23, 12, 20, (521,371,0): 21, 10, 18, (521,372,0): 21, 10, 18, (521,373,0): 21, 10, 18, (521,374,0): 22, 11, 19, (521,375,0): 22, 11, 19, (521,376,0): 21, 10, 18, (521,377,0): 21, 10, 18, (521,378,0): 21, 10, 18, (521,379,0): 21, 10, 18, (521,380,0): 21, 10, 18, (521,381,0): 21, 10, 18, (521,382,0): 21, 10, 18, (521,383,0): 21, 9, 19, (521,384,0): 25, 12, 29, (521,385,0): 25, 12, 30, (521,386,0): 24, 11, 29, (521,387,0): 22, 9, 26, (521,388,0): 21, 8, 25, (521,389,0): 20, 7, 24, (521,390,0): 19, 6, 23, (521,391,0): 19, 7, 21, (521,392,0): 21, 9, 23, (521,393,0): 21, 9, 21, (521,394,0): 21, 9, 21, (521,395,0): 22, 10, 22, (521,396,0): 22, 10, 22, (521,397,0): 23, 11, 21, (521,398,0): 23, 11, 21, (521,399,0): 24, 13, 21, (521,400,0): 24, 11, 18, (521,401,0): 26, 11, 16, (521,402,0): 26, 11, 16, (521,403,0): 26, 11, 16, (521,404,0): 26, 11, 16, (521,405,0): 26, 11, 16, (521,406,0): 26, 11, 16, (521,407,0): 26, 11, 16, (521,408,0): 26, 11, 16, (521,409,0): 26, 11, 16, (521,410,0): 26, 11, 16, (521,411,0): 26, 11, 16, (521,412,0): 26, 11, 16, (521,413,0): 26, 11, 16, (521,414,0): 26, 11, 16, (521,415,0): 26, 11, 16, (521,416,0): 28, 13, 18, (521,417,0): 28, 13, 18, (521,418,0): 28, 13, 18, (521,419,0): 28, 13, 18, (521,420,0): 28, 13, 18, (521,421,0): 28, 13, 18, (521,422,0): 28, 13, 18, (521,423,0): 28, 13, 18, (521,424,0): 33, 18, 23, (521,425,0): 35, 20, 25, (521,426,0): 36, 21, 26, (521,427,0): 38, 23, 28, (521,428,0): 39, 24, 29, (521,429,0): 40, 25, 30, (521,430,0): 39, 24, 29, (521,431,0): 40, 24, 27, (521,432,0): 41, 22, 26, (521,433,0): 41, 21, 23, (521,434,0): 39, 19, 21, (521,435,0): 37, 17, 19, (521,436,0): 37, 17, 19, (521,437,0): 37, 17, 19, (521,438,0): 38, 18, 20, (521,439,0): 39, 19, 21, (521,440,0): 38, 18, 20, (521,441,0): 38, 18, 20, (521,442,0): 37, 17, 19, (521,443,0): 36, 16, 18, (521,444,0): 35, 15, 17, (521,445,0): 34, 14, 16, (521,446,0): 33, 13, 15, (521,447,0): 32, 12, 14, (521,448,0): 32, 13, 19, (521,449,0): 32, 13, 19, (521,450,0): 32, 13, 19, (521,451,0): 32, 13, 19, (521,452,0): 31, 12, 18, (521,453,0): 31, 12, 18, (521,454,0): 31, 12, 18, (521,455,0): 31, 12, 18, (521,456,0): 30, 11, 17, (521,457,0): 30, 11, 17, (521,458,0): 31, 12, 18, (521,459,0): 31, 12, 18, (521,460,0): 32, 13, 19, (521,461,0): 32, 13, 19, (521,462,0): 33, 14, 20, (521,463,0): 33, 14, 18, (521,464,0): 37, 16, 21, (521,465,0): 37, 17, 19, (521,466,0): 37, 15, 18, (521,467,0): 36, 14, 17, (521,468,0): 39, 14, 18, (521,469,0): 40, 15, 19, (521,470,0): 43, 16, 21, (521,471,0): 44, 17, 22, (521,472,0): 47, 18, 23, (521,473,0): 47, 18, 23, (521,474,0): 46, 17, 22, (521,475,0): 46, 17, 22, (521,476,0): 45, 16, 21, (521,477,0): 45, 16, 21, (521,478,0): 44, 15, 20, (521,479,0): 42, 15, 20, (521,480,0): 37, 14, 22, (521,481,0): 37, 14, 22, (521,482,0): 36, 13, 21, (521,483,0): 35, 12, 20, (521,484,0): 33, 12, 21, (521,485,0): 32, 11, 20, (521,486,0): 30, 10, 19, (521,487,0): 30, 10, 19, (521,488,0): 24, 7, 17, (521,489,0): 23, 7, 17, (521,490,0): 22, 6, 17, (521,491,0): 17, 5, 15, (521,492,0): 14, 4, 13, (521,493,0): 11, 4, 12, (521,494,0): 10, 2, 13, (521,495,0): 9, 1, 12, (521,496,0): 8, 0, 11, (521,497,0): 9, 1, 12, (521,498,0): 11, 1, 12, (521,499,0): 12, 2, 13, (521,500,0): 14, 4, 15, (521,501,0): 15, 5, 16, (521,502,0): 16, 4, 16, (521,503,0): 17, 5, 17, (521,504,0): 19, 5, 18, (521,505,0): 18, 4, 17, (521,506,0): 17, 3, 16, (521,507,0): 16, 2, 15, (521,508,0): 19, 3, 16, (521,509,0): 20, 4, 17, (521,510,0): 22, 6, 19, (521,511,0): 24, 6, 20, (521,512,0): 28, 4, 18, (521,513,0): 31, 4, 19, (521,514,0): 31, 5, 18, (521,515,0): 31, 5, 18, (521,516,0): 31, 5, 18, (521,517,0): 32, 6, 19, (521,518,0): 33, 5, 17, (521,519,0): 33, 5, 17, (521,520,0): 38, 11, 20, (521,521,0): 38, 11, 20, (521,522,0): 37, 10, 19, (521,523,0): 38, 11, 20, (521,524,0): 41, 11, 19, (521,525,0): 41, 14, 21, (521,526,0): 46, 16, 24, (521,527,0): 45, 18, 23, (521,528,0): 44, 19, 23, (521,529,0): 44, 22, 24, (521,530,0): 48, 23, 26, (521,531,0): 48, 22, 25, (521,532,0): 46, 20, 23, (521,533,0): 48, 19, 23, (521,534,0): 52, 21, 26, (521,535,0): 55, 24, 29, (521,536,0): 59, 27, 32, (521,537,0): 57, 25, 30, (521,538,0): 57, 22, 28, (521,539,0): 54, 19, 25, (521,540,0): 53, 18, 24, (521,541,0): 52, 17, 23, (521,542,0): 52, 17, 23, (521,543,0): 51, 19, 24, (521,544,0): 51, 22, 27, (521,545,0): 48, 21, 26, (521,546,0): 48, 19, 24, (521,547,0): 44, 17, 22, (521,548,0): 45, 16, 21, (521,549,0): 43, 16, 21, (521,550,0): 46, 17, 22, (521,551,0): 44, 17, 22, (521,552,0): 46, 17, 22, (521,553,0): 43, 16, 21, (521,554,0): 44, 15, 20, (521,555,0): 41, 14, 19, (521,556,0): 42, 13, 18, (521,557,0): 39, 12, 17, (521,558,0): 40, 11, 16, (521,559,0): 37, 10, 17, (521,560,0): 37, 11, 22, (521,561,0): 36, 12, 25, (521,562,0): 37, 13, 26, (521,563,0): 38, 14, 27, (521,564,0): 37, 15, 27, (521,565,0): 36, 14, 26, (521,566,0): 35, 13, 25, (521,567,0): 33, 13, 24, (521,568,0): 33, 13, 24, (521,569,0): 33, 13, 24, (521,570,0): 31, 14, 24, (521,571,0): 32, 15, 25, (521,572,0): 32, 15, 25, (521,573,0): 33, 16, 26, (521,574,0): 32, 16, 26, (521,575,0): 33, 17, 28, (521,576,0): 37, 19, 33, (521,577,0): 37, 19, 33, (521,578,0): 38, 17, 32, (521,579,0): 37, 16, 31, (521,580,0): 35, 14, 29, (521,581,0): 34, 13, 28, (521,582,0): 33, 13, 25, (521,583,0): 31, 14, 24, (521,584,0): 31, 14, 22, (521,585,0): 35, 18, 24, (521,586,0): 42, 21, 26, (521,587,0): 42, 20, 23, (521,588,0): 42, 16, 19, (521,589,0): 46, 17, 19, (521,590,0): 53, 23, 25, (521,591,0): 64, 28, 32, (521,592,0): 66, 23, 33, (521,593,0): 60, 20, 31, (521,594,0): 46, 19, 28, (521,595,0): 35, 16, 22, (521,596,0): 29, 14, 19, (521,597,0): 27, 15, 19, (521,598,0): 31, 14, 22, (521,599,0): 34, 14, 23, (522,0,0): 41, 66, 73, (522,1,0): 41, 66, 73, (522,2,0): 41, 66, 73, (522,3,0): 41, 66, 73, (522,4,0): 41, 66, 73, (522,5,0): 41, 66, 73, (522,6,0): 41, 66, 73, (522,7,0): 41, 66, 73, (522,8,0): 40, 65, 72, (522,9,0): 41, 66, 73, (522,10,0): 41, 66, 73, (522,11,0): 41, 66, 73, (522,12,0): 42, 67, 74, (522,13,0): 43, 68, 75, (522,14,0): 43, 68, 75, (522,15,0): 43, 68, 75, (522,16,0): 45, 70, 77, (522,17,0): 45, 70, 77, (522,18,0): 45, 70, 77, (522,19,0): 46, 71, 78, (522,20,0): 46, 71, 78, (522,21,0): 47, 72, 79, (522,22,0): 47, 72, 79, (522,23,0): 47, 72, 79, (522,24,0): 47, 72, 79, (522,25,0): 47, 72, 79, (522,26,0): 48, 73, 80, (522,27,0): 48, 73, 80, (522,28,0): 49, 74, 81, (522,29,0): 49, 74, 81, (522,30,0): 50, 75, 82, (522,31,0): 50, 75, 82, (522,32,0): 51, 74, 82, (522,33,0): 51, 74, 82, (522,34,0): 54, 74, 83, (522,35,0): 54, 74, 83, (522,36,0): 55, 75, 84, (522,37,0): 55, 75, 84, (522,38,0): 57, 75, 85, (522,39,0): 57, 75, 85, (522,40,0): 58, 75, 85, (522,41,0): 58, 75, 85, (522,42,0): 59, 76, 86, (522,43,0): 59, 76, 86, (522,44,0): 62, 76, 87, (522,45,0): 62, 76, 87, (522,46,0): 63, 77, 88, (522,47,0): 63, 77, 88, (522,48,0): 63, 75, 87, (522,49,0): 63, 75, 87, (522,50,0): 65, 75, 87, (522,51,0): 66, 76, 88, (522,52,0): 66, 76, 88, (522,53,0): 67, 77, 89, (522,54,0): 68, 76, 87, (522,55,0): 68, 76, 87, (522,56,0): 70, 77, 87, (522,57,0): 70, 77, 87, (522,58,0): 70, 77, 85, (522,59,0): 71, 78, 86, (522,60,0): 73, 77, 86, (522,61,0): 74, 78, 87, (522,62,0): 74, 78, 87, (522,63,0): 74, 78, 89, (522,64,0): 74, 78, 90, (522,65,0): 74, 78, 90, (522,66,0): 75, 79, 91, (522,67,0): 76, 80, 92, (522,68,0): 78, 80, 92, (522,69,0): 79, 81, 93, (522,70,0): 82, 82, 94, (522,71,0): 83, 83, 95, (522,72,0): 82, 82, 92, (522,73,0): 82, 82, 92, (522,74,0): 84, 83, 91, (522,75,0): 85, 84, 92, (522,76,0): 87, 84, 93, (522,77,0): 88, 85, 94, (522,78,0): 89, 86, 93, (522,79,0): 89, 86, 93, (522,80,0): 91, 86, 92, (522,81,0): 91, 86, 92, (522,82,0): 91, 86, 92, (522,83,0): 89, 84, 90, (522,84,0): 87, 82, 88, (522,85,0): 85, 80, 86, (522,86,0): 83, 78, 84, (522,87,0): 82, 77, 83, (522,88,0): 82, 77, 83, (522,89,0): 82, 77, 83, (522,90,0): 82, 77, 83, (522,91,0): 83, 78, 84, (522,92,0): 84, 79, 85, (522,93,0): 85, 80, 86, (522,94,0): 86, 81, 87, (522,95,0): 87, 81, 85, (522,96,0): 87, 78, 83, (522,97,0): 89, 78, 84, (522,98,0): 91, 80, 86, (522,99,0): 91, 82, 87, (522,100,0): 90, 81, 86, (522,101,0): 86, 80, 84, (522,102,0): 82, 77, 81, (522,103,0): 81, 76, 80, (522,104,0): 74, 72, 75, (522,105,0): 74, 72, 75, (522,106,0): 72, 72, 74, (522,107,0): 71, 72, 74, (522,108,0): 70, 71, 73, (522,109,0): 68, 72, 73, (522,110,0): 67, 71, 72, (522,111,0): 67, 71, 72, (522,112,0): 67, 68, 72, (522,113,0): 67, 68, 73, (522,114,0): 67, 68, 73, (522,115,0): 67, 67, 75, (522,116,0): 67, 67, 75, (522,117,0): 65, 68, 75, (522,118,0): 65, 68, 77, (522,119,0): 65, 68, 77, (522,120,0): 62, 66, 75, (522,121,0): 62, 66, 77, (522,122,0): 63, 67, 78, (522,123,0): 62, 69, 79, (522,124,0): 64, 70, 82, (522,125,0): 66, 72, 84, (522,126,0): 66, 74, 85, (522,127,0): 67, 75, 86, (522,128,0): 68, 75, 85, (522,129,0): 68, 75, 85, (522,130,0): 69, 73, 84, (522,131,0): 68, 72, 83, (522,132,0): 66, 70, 79, (522,133,0): 63, 67, 76, (522,134,0): 61, 64, 73, (522,135,0): 60, 63, 70, (522,136,0): 62, 62, 70, (522,137,0): 60, 60, 68, (522,138,0): 58, 59, 64, (522,139,0): 59, 60, 65, (522,140,0): 62, 61, 67, (522,141,0): 63, 62, 68, (522,142,0): 62, 61, 66, (522,143,0): 60, 60, 62, (522,144,0): 60, 58, 59, (522,145,0): 59, 58, 56, (522,146,0): 56, 55, 53, (522,147,0): 54, 53, 51, (522,148,0): 52, 51, 49, (522,149,0): 52, 51, 49, (522,150,0): 52, 51, 49, (522,151,0): 52, 51, 49, (522,152,0): 49, 48, 46, (522,153,0): 48, 47, 45, (522,154,0): 48, 47, 45, (522,155,0): 47, 46, 44, (522,156,0): 46, 45, 43, (522,157,0): 45, 44, 42, (522,158,0): 44, 43, 41, (522,159,0): 44, 43, 41, (522,160,0): 47, 43, 40, (522,161,0): 47, 43, 40, (522,162,0): 48, 44, 41, (522,163,0): 48, 44, 41, (522,164,0): 49, 45, 42, (522,165,0): 49, 45, 42, (522,166,0): 49, 45, 42, (522,167,0): 50, 46, 43, (522,168,0): 49, 45, 42, (522,169,0): 49, 45, 42, (522,170,0): 48, 44, 41, (522,171,0): 48, 44, 41, (522,172,0): 47, 43, 40, (522,173,0): 47, 43, 40, (522,174,0): 46, 42, 39, (522,175,0): 46, 42, 39, (522,176,0): 44, 40, 41, (522,177,0): 43, 39, 40, (522,178,0): 42, 38, 39, (522,179,0): 41, 37, 38, (522,180,0): 41, 37, 38, (522,181,0): 42, 38, 39, (522,182,0): 43, 39, 40, (522,183,0): 44, 40, 41, (522,184,0): 39, 35, 36, (522,185,0): 39, 35, 36, (522,186,0): 39, 35, 36, (522,187,0): 39, 35, 36, (522,188,0): 39, 35, 36, (522,189,0): 39, 35, 36, (522,190,0): 39, 35, 36, (522,191,0): 39, 35, 36, (522,192,0): 39, 34, 40, (522,193,0): 38, 33, 39, (522,194,0): 38, 33, 39, (522,195,0): 37, 32, 38, (522,196,0): 37, 32, 38, (522,197,0): 36, 31, 37, (522,198,0): 36, 31, 37, (522,199,0): 36, 31, 37, (522,200,0): 36, 31, 37, (522,201,0): 36, 31, 37, (522,202,0): 36, 31, 37, (522,203,0): 36, 31, 37, (522,204,0): 36, 31, 37, (522,205,0): 36, 31, 37, (522,206,0): 36, 31, 37, (522,207,0): 34, 32, 37, (522,208,0): 33, 31, 36, (522,209,0): 32, 31, 36, (522,210,0): 32, 31, 36, (522,211,0): 32, 31, 36, (522,212,0): 32, 31, 36, (522,213,0): 32, 31, 36, (522,214,0): 32, 31, 36, (522,215,0): 32, 31, 36, (522,216,0): 34, 33, 38, (522,217,0): 34, 33, 38, (522,218,0): 34, 33, 38, (522,219,0): 34, 33, 38, (522,220,0): 34, 33, 38, (522,221,0): 34, 33, 38, (522,222,0): 34, 33, 38, (522,223,0): 34, 33, 38, (522,224,0): 34, 33, 39, (522,225,0): 34, 33, 39, (522,226,0): 34, 33, 39, (522,227,0): 34, 33, 39, (522,228,0): 34, 33, 39, (522,229,0): 34, 33, 39, (522,230,0): 34, 33, 39, (522,231,0): 34, 33, 39, (522,232,0): 34, 33, 39, (522,233,0): 34, 33, 39, (522,234,0): 34, 33, 39, (522,235,0): 34, 33, 39, (522,236,0): 34, 33, 39, (522,237,0): 34, 33, 39, (522,238,0): 34, 33, 39, (522,239,0): 34, 33, 39, (522,240,0): 35, 35, 45, (522,241,0): 35, 35, 45, (522,242,0): 35, 35, 45, (522,243,0): 36, 36, 46, (522,244,0): 37, 37, 47, (522,245,0): 37, 37, 47, (522,246,0): 38, 36, 49, (522,247,0): 39, 37, 50, (522,248,0): 40, 36, 51, (522,249,0): 40, 36, 51, (522,250,0): 42, 35, 53, (522,251,0): 43, 36, 54, (522,252,0): 44, 37, 55, (522,253,0): 44, 37, 55, (522,254,0): 44, 37, 55, (522,255,0): 45, 38, 56, (522,256,0): 46, 39, 57, (522,257,0): 47, 40, 58, (522,258,0): 49, 42, 60, (522,259,0): 52, 43, 60, (522,260,0): 57, 46, 63, (522,261,0): 60, 47, 65, (522,262,0): 62, 49, 66, (522,263,0): 63, 50, 67, (522,264,0): 65, 51, 68, (522,265,0): 64, 52, 66, (522,266,0): 63, 51, 65, (522,267,0): 61, 50, 64, (522,268,0): 58, 50, 61, (522,269,0): 56, 50, 60, (522,270,0): 55, 49, 59, (522,271,0): 55, 49, 59, (522,272,0): 55, 47, 60, (522,273,0): 55, 47, 60, (522,274,0): 56, 48, 61, (522,275,0): 57, 49, 62, (522,276,0): 60, 49, 63, (522,277,0): 61, 50, 64, (522,278,0): 62, 51, 65, (522,279,0): 63, 52, 66, (522,280,0): 67, 55, 69, (522,281,0): 67, 55, 69, (522,282,0): 68, 54, 69, (522,283,0): 69, 55, 70, (522,284,0): 70, 56, 71, (522,285,0): 73, 59, 74, (522,286,0): 77, 60, 76, (522,287,0): 79, 61, 75, (522,288,0): 85, 63, 76, (522,289,0): 86, 62, 75, (522,290,0): 87, 63, 76, (522,291,0): 88, 64, 77, (522,292,0): 89, 65, 78, (522,293,0): 90, 66, 79, (522,294,0): 93, 67, 78, (522,295,0): 93, 67, 78, (522,296,0): 92, 64, 76, (522,297,0): 92, 65, 74, (522,298,0): 94, 64, 74, (522,299,0): 94, 64, 72, (522,300,0): 94, 64, 72, (522,301,0): 94, 64, 72, (522,302,0): 94, 64, 72, (522,303,0): 94, 64, 72, (522,304,0): 96, 64, 75, (522,305,0): 96, 63, 74, (522,306,0): 98, 62, 72, (522,307,0): 99, 63, 73, (522,308,0): 103, 66, 74, (522,309,0): 110, 68, 78, (522,310,0): 115, 72, 82, (522,311,0): 121, 74, 84, (522,312,0): 131, 78, 88, (522,313,0): 142, 82, 90, (522,314,0): 153, 89, 90, (522,315,0): 163, 94, 89, (522,316,0): 176, 102, 89, (522,317,0): 197, 121, 98, (522,318,0): 224, 145, 115, (522,319,0): 239, 165, 128, (522,320,0): 255, 196, 151, (522,321,0): 253, 205, 159, (522,322,0): 244, 201, 166, (522,323,0): 221, 187, 160, (522,324,0): 195, 172, 156, (522,325,0): 179, 162, 155, (522,326,0): 166, 151, 154, (522,327,0): 157, 144, 153, (522,328,0): 154, 138, 149, (522,329,0): 150, 132, 144, (522,330,0): 141, 121, 132, (522,331,0): 125, 104, 111, (522,332,0): 105, 84, 89, (522,333,0): 86, 67, 71, (522,334,0): 72, 56, 57, (522,335,0): 66, 52, 52, (522,336,0): 56, 41, 46, (522,337,0): 51, 36, 41, (522,338,0): 45, 30, 35, (522,339,0): 41, 26, 31, (522,340,0): 40, 25, 32, (522,341,0): 39, 24, 31, (522,342,0): 37, 22, 29, (522,343,0): 35, 20, 27, (522,344,0): 35, 19, 29, (522,345,0): 35, 19, 29, (522,346,0): 34, 18, 29, (522,347,0): 33, 17, 28, (522,348,0): 32, 16, 27, (522,349,0): 31, 15, 26, (522,350,0): 30, 14, 27, (522,351,0): 30, 14, 27, (522,352,0): 27, 11, 22, (522,353,0): 27, 11, 22, (522,354,0): 27, 11, 22, (522,355,0): 27, 11, 22, (522,356,0): 27, 11, 22, (522,357,0): 27, 11, 22, (522,358,0): 27, 11, 22, (522,359,0): 27, 11, 22, (522,360,0): 27, 11, 22, (522,361,0): 27, 11, 22, (522,362,0): 27, 11, 22, (522,363,0): 26, 10, 21, (522,364,0): 25, 9, 20, (522,365,0): 25, 9, 20, (522,366,0): 25, 9, 20, (522,367,0): 22, 9, 19, (522,368,0): 23, 12, 20, (522,369,0): 21, 11, 19, (522,370,0): 20, 10, 18, (522,371,0): 19, 9, 17, (522,372,0): 18, 8, 16, (522,373,0): 18, 8, 16, (522,374,0): 19, 9, 17, (522,375,0): 19, 9, 17, (522,376,0): 19, 9, 17, (522,377,0): 19, 9, 17, (522,378,0): 19, 9, 17, (522,379,0): 19, 9, 17, (522,380,0): 19, 9, 17, (522,381,0): 19, 9, 17, (522,382,0): 19, 9, 17, (522,383,0): 19, 9, 18, (522,384,0): 23, 12, 26, (522,385,0): 22, 11, 27, (522,386,0): 22, 11, 27, (522,387,0): 21, 10, 26, (522,388,0): 20, 9, 25, (522,389,0): 19, 8, 22, (522,390,0): 18, 7, 21, (522,391,0): 17, 6, 20, (522,392,0): 19, 8, 22, (522,393,0): 20, 10, 21, (522,394,0): 20, 10, 21, (522,395,0): 21, 11, 20, (522,396,0): 21, 11, 20, (522,397,0): 22, 12, 21, (522,398,0): 22, 12, 21, (522,399,0): 23, 12, 20, (522,400,0): 23, 10, 17, (522,401,0): 25, 10, 15, (522,402,0): 25, 10, 15, (522,403,0): 25, 10, 15, (522,404,0): 25, 10, 15, (522,405,0): 25, 10, 15, (522,406,0): 25, 10, 15, (522,407,0): 25, 10, 15, (522,408,0): 26, 11, 16, (522,409,0): 26, 11, 16, (522,410,0): 26, 11, 16, (522,411,0): 26, 11, 16, (522,412,0): 26, 11, 16, (522,413,0): 26, 11, 16, (522,414,0): 26, 11, 16, (522,415,0): 26, 11, 16, (522,416,0): 28, 13, 18, (522,417,0): 28, 13, 18, (522,418,0): 28, 13, 18, (522,419,0): 28, 13, 18, (522,420,0): 28, 13, 18, (522,421,0): 28, 13, 18, (522,422,0): 28, 13, 18, (522,423,0): 28, 13, 18, (522,424,0): 33, 18, 23, (522,425,0): 35, 20, 25, (522,426,0): 36, 21, 26, (522,427,0): 38, 23, 28, (522,428,0): 39, 24, 29, (522,429,0): 40, 25, 30, (522,430,0): 39, 24, 29, (522,431,0): 40, 24, 27, (522,432,0): 39, 20, 24, (522,433,0): 39, 19, 21, (522,434,0): 38, 18, 20, (522,435,0): 36, 16, 18, (522,436,0): 36, 16, 18, (522,437,0): 36, 16, 18, (522,438,0): 37, 17, 19, (522,439,0): 37, 17, 19, (522,440,0): 38, 18, 20, (522,441,0): 37, 17, 19, (522,442,0): 36, 16, 18, (522,443,0): 35, 15, 17, (522,444,0): 34, 14, 16, (522,445,0): 33, 13, 15, (522,446,0): 32, 12, 14, (522,447,0): 32, 12, 14, (522,448,0): 31, 12, 18, (522,449,0): 31, 12, 18, (522,450,0): 31, 12, 18, (522,451,0): 31, 12, 18, (522,452,0): 32, 13, 19, (522,453,0): 32, 13, 19, (522,454,0): 32, 13, 19, (522,455,0): 32, 13, 19, (522,456,0): 30, 11, 17, (522,457,0): 30, 11, 17, (522,458,0): 31, 12, 18, (522,459,0): 31, 12, 18, (522,460,0): 32, 13, 19, (522,461,0): 32, 13, 19, (522,462,0): 33, 14, 20, (522,463,0): 33, 14, 18, (522,464,0): 36, 17, 21, (522,465,0): 36, 16, 18, (522,466,0): 37, 15, 18, (522,467,0): 37, 15, 18, (522,468,0): 39, 14, 18, (522,469,0): 41, 14, 19, (522,470,0): 45, 16, 21, (522,471,0): 46, 17, 22, (522,472,0): 47, 16, 22, (522,473,0): 47, 16, 22, (522,474,0): 46, 15, 21, (522,475,0): 46, 15, 21, (522,476,0): 44, 15, 20, (522,477,0): 44, 15, 20, (522,478,0): 41, 14, 19, (522,479,0): 40, 15, 19, (522,480,0): 36, 15, 22, (522,481,0): 36, 15, 22, (522,482,0): 35, 14, 21, (522,483,0): 34, 13, 20, (522,484,0): 33, 12, 21, (522,485,0): 32, 11, 20, (522,486,0): 31, 10, 19, (522,487,0): 30, 10, 19, (522,488,0): 24, 7, 17, (522,489,0): 22, 6, 16, (522,490,0): 21, 5, 16, (522,491,0): 17, 5, 15, (522,492,0): 14, 4, 13, (522,493,0): 10, 3, 11, (522,494,0): 8, 2, 12, (522,495,0): 8, 2, 12, (522,496,0): 7, 0, 10, (522,497,0): 8, 0, 11, (522,498,0): 8, 0, 11, (522,499,0): 9, 1, 12, (522,500,0): 13, 3, 14, (522,501,0): 14, 4, 15, (522,502,0): 15, 3, 15, (522,503,0): 16, 4, 16, (522,504,0): 16, 4, 16, (522,505,0): 16, 4, 16, (522,506,0): 16, 2, 15, (522,507,0): 16, 2, 15, (522,508,0): 19, 3, 16, (522,509,0): 20, 4, 17, (522,510,0): 21, 5, 18, (522,511,0): 23, 5, 19, (522,512,0): 31, 7, 21, (522,513,0): 33, 7, 20, (522,514,0): 32, 6, 19, (522,515,0): 32, 6, 19, (522,516,0): 31, 5, 16, (522,517,0): 31, 5, 16, (522,518,0): 31, 5, 16, (522,519,0): 30, 4, 15, (522,520,0): 37, 11, 20, (522,521,0): 37, 11, 20, (522,522,0): 36, 11, 17, (522,523,0): 36, 11, 17, (522,524,0): 38, 11, 18, (522,525,0): 39, 14, 20, (522,526,0): 41, 14, 19, (522,527,0): 41, 16, 20, (522,528,0): 42, 17, 21, (522,529,0): 45, 20, 24, (522,530,0): 49, 22, 27, (522,531,0): 49, 22, 27, (522,532,0): 49, 20, 25, (522,533,0): 49, 18, 24, (522,534,0): 50, 19, 25, (522,535,0): 53, 20, 27, (522,536,0): 57, 22, 29, (522,537,0): 56, 21, 28, (522,538,0): 52, 19, 26, (522,539,0): 51, 18, 25, (522,540,0): 50, 17, 24, (522,541,0): 49, 18, 24, (522,542,0): 50, 19, 25, (522,543,0): 49, 20, 25, (522,544,0): 48, 21, 26, (522,545,0): 46, 21, 25, (522,546,0): 44, 17, 22, (522,547,0): 41, 16, 20, (522,548,0): 41, 14, 19, (522,549,0): 39, 14, 18, (522,550,0): 40, 13, 18, (522,551,0): 39, 14, 18, (522,552,0): 42, 15, 20, (522,553,0): 41, 16, 20, (522,554,0): 41, 14, 19, (522,555,0): 39, 14, 18, (522,556,0): 39, 12, 17, (522,557,0): 37, 12, 16, (522,558,0): 37, 10, 15, (522,559,0): 36, 11, 17, (522,560,0): 33, 10, 20, (522,561,0): 34, 10, 23, (522,562,0): 34, 12, 24, (522,563,0): 35, 13, 25, (522,564,0): 35, 13, 25, (522,565,0): 34, 12, 24, (522,566,0): 32, 12, 23, (522,567,0): 31, 11, 22, (522,568,0): 32, 12, 23, (522,569,0): 31, 14, 24, (522,570,0): 31, 14, 24, (522,571,0): 32, 15, 25, (522,572,0): 31, 15, 25, (522,573,0): 32, 16, 26, (522,574,0): 32, 16, 26, (522,575,0): 32, 16, 26, (522,576,0): 37, 19, 31, (522,577,0): 38, 18, 30, (522,578,0): 38, 16, 29, (522,579,0): 38, 16, 29, (522,580,0): 36, 13, 29, (522,581,0): 36, 13, 29, (522,582,0): 32, 14, 28, (522,583,0): 30, 14, 25, (522,584,0): 26, 15, 23, (522,585,0): 28, 19, 24, (522,586,0): 33, 21, 25, (522,587,0): 35, 19, 22, (522,588,0): 39, 17, 20, (522,589,0): 47, 18, 22, (522,590,0): 59, 24, 28, (522,591,0): 71, 28, 35, (522,592,0): 86, 28, 43, (522,593,0): 78, 21, 36, (522,594,0): 58, 18, 29, (522,595,0): 40, 13, 22, (522,596,0): 28, 11, 17, (522,597,0): 25, 12, 19, (522,598,0): 31, 14, 24, (522,599,0): 33, 16, 26, (523,0,0): 41, 66, 73, (523,1,0): 41, 66, 73, (523,2,0): 41, 66, 73, (523,3,0): 41, 66, 73, (523,4,0): 41, 66, 73, (523,5,0): 41, 66, 73, (523,6,0): 41, 66, 73, (523,7,0): 41, 66, 73, (523,8,0): 41, 66, 73, (523,9,0): 41, 66, 73, (523,10,0): 41, 66, 73, (523,11,0): 42, 67, 74, (523,12,0): 42, 67, 74, (523,13,0): 43, 68, 75, (523,14,0): 43, 68, 75, (523,15,0): 44, 69, 76, (523,16,0): 45, 70, 77, (523,17,0): 46, 71, 78, (523,18,0): 46, 71, 78, (523,19,0): 47, 72, 79, (523,20,0): 47, 72, 79, (523,21,0): 48, 73, 80, (523,22,0): 48, 73, 80, (523,23,0): 48, 73, 80, (523,24,0): 47, 72, 79, (523,25,0): 47, 72, 79, (523,26,0): 48, 73, 80, (523,27,0): 48, 73, 80, (523,28,0): 49, 74, 81, (523,29,0): 49, 74, 81, (523,30,0): 50, 75, 82, (523,31,0): 50, 75, 82, (523,32,0): 51, 74, 82, (523,33,0): 51, 74, 82, (523,34,0): 54, 74, 83, (523,35,0): 54, 74, 83, (523,36,0): 55, 75, 84, (523,37,0): 55, 75, 84, (523,38,0): 57, 75, 85, (523,39,0): 57, 75, 85, (523,40,0): 58, 75, 85, (523,41,0): 58, 75, 85, (523,42,0): 59, 76, 86, (523,43,0): 59, 76, 86, (523,44,0): 62, 76, 87, (523,45,0): 62, 76, 87, (523,46,0): 63, 77, 88, (523,47,0): 63, 77, 88, (523,48,0): 63, 75, 87, (523,49,0): 63, 75, 87, (523,50,0): 65, 75, 87, (523,51,0): 66, 76, 88, (523,52,0): 66, 76, 88, (523,53,0): 67, 77, 89, (523,54,0): 68, 76, 87, (523,55,0): 68, 76, 87, (523,56,0): 70, 77, 87, (523,57,0): 70, 77, 87, (523,58,0): 70, 77, 85, (523,59,0): 71, 78, 86, (523,60,0): 73, 77, 86, (523,61,0): 74, 78, 87, (523,62,0): 74, 78, 87, (523,63,0): 74, 78, 87, (523,64,0): 74, 78, 89, (523,65,0): 74, 78, 90, (523,66,0): 75, 79, 91, (523,67,0): 76, 80, 91, (523,68,0): 78, 80, 92, (523,69,0): 79, 81, 93, (523,70,0): 82, 82, 94, (523,71,0): 82, 82, 92, (523,72,0): 81, 81, 91, (523,73,0): 81, 81, 89, (523,74,0): 83, 82, 90, (523,75,0): 84, 83, 91, (523,76,0): 86, 83, 92, (523,77,0): 87, 84, 91, (523,78,0): 88, 85, 92, (523,79,0): 89, 86, 93, (523,80,0): 92, 87, 93, (523,81,0): 92, 87, 93, (523,82,0): 92, 87, 93, (523,83,0): 92, 87, 93, (523,84,0): 90, 85, 91, (523,85,0): 86, 81, 87, (523,86,0): 83, 78, 84, (523,87,0): 81, 76, 82, (523,88,0): 83, 78, 84, (523,89,0): 82, 77, 83, (523,90,0): 82, 77, 83, (523,91,0): 83, 78, 84, (523,92,0): 84, 79, 85, (523,93,0): 85, 80, 86, (523,94,0): 87, 82, 88, (523,95,0): 89, 82, 89, (523,96,0): 88, 78, 86, (523,97,0): 90, 79, 85, (523,98,0): 91, 80, 86, (523,99,0): 92, 81, 87, (523,100,0): 92, 83, 88, (523,101,0): 91, 82, 87, (523,102,0): 87, 81, 85, (523,103,0): 85, 80, 84, (523,104,0): 77, 75, 78, (523,105,0): 75, 75, 77, (523,106,0): 75, 75, 77, (523,107,0): 73, 74, 76, (523,108,0): 71, 75, 76, (523,109,0): 70, 74, 75, (523,110,0): 70, 74, 75, (523,111,0): 70, 74, 77, (523,112,0): 70, 71, 76, (523,113,0): 70, 70, 78, (523,114,0): 69, 69, 77, (523,115,0): 69, 69, 77, (523,116,0): 67, 70, 77, (523,117,0): 66, 69, 76, (523,118,0): 66, 69, 78, (523,119,0): 65, 69, 78, (523,120,0): 64, 68, 79, (523,121,0): 64, 68, 79, (523,122,0): 62, 69, 79, (523,123,0): 63, 69, 81, (523,124,0): 64, 70, 82, (523,125,0): 66, 72, 84, (523,126,0): 67, 75, 86, (523,127,0): 68, 76, 87, (523,128,0): 69, 75, 87, (523,129,0): 69, 76, 86, (523,130,0): 70, 74, 85, (523,131,0): 69, 73, 84, (523,132,0): 67, 71, 80, (523,133,0): 64, 68, 77, (523,134,0): 62, 65, 74, (523,135,0): 61, 64, 73, (523,136,0): 63, 63, 71, (523,137,0): 61, 61, 69, (523,138,0): 58, 59, 64, (523,139,0): 59, 60, 65, (523,140,0): 62, 61, 67, (523,141,0): 63, 62, 68, (523,142,0): 63, 62, 67, (523,143,0): 61, 61, 63, (523,144,0): 60, 58, 59, (523,145,0): 59, 58, 56, (523,146,0): 56, 55, 53, (523,147,0): 54, 53, 51, (523,148,0): 52, 51, 49, (523,149,0): 52, 51, 49, (523,150,0): 52, 51, 49, (523,151,0): 52, 51, 49, (523,152,0): 52, 51, 49, (523,153,0): 51, 50, 48, (523,154,0): 50, 49, 47, (523,155,0): 49, 48, 46, (523,156,0): 48, 47, 45, (523,157,0): 46, 45, 43, (523,158,0): 46, 45, 43, (523,159,0): 45, 44, 42, (523,160,0): 49, 45, 42, (523,161,0): 49, 45, 42, (523,162,0): 49, 45, 42, (523,163,0): 49, 45, 42, (523,164,0): 50, 46, 43, (523,165,0): 50, 46, 43, (523,166,0): 50, 46, 43, (523,167,0): 50, 46, 43, (523,168,0): 51, 47, 44, (523,169,0): 50, 46, 43, (523,170,0): 50, 46, 43, (523,171,0): 50, 46, 43, (523,172,0): 49, 45, 42, (523,173,0): 48, 44, 41, (523,174,0): 48, 44, 41, (523,175,0): 48, 44, 41, (523,176,0): 46, 42, 43, (523,177,0): 45, 41, 42, (523,178,0): 43, 39, 40, (523,179,0): 42, 38, 39, (523,180,0): 42, 38, 39, (523,181,0): 42, 38, 39, (523,182,0): 43, 39, 40, (523,183,0): 44, 40, 41, (523,184,0): 39, 35, 36, (523,185,0): 39, 35, 36, (523,186,0): 39, 35, 36, (523,187,0): 39, 35, 36, (523,188,0): 39, 35, 36, (523,189,0): 39, 35, 36, (523,190,0): 39, 35, 36, (523,191,0): 39, 35, 36, (523,192,0): 39, 34, 40, (523,193,0): 39, 34, 40, (523,194,0): 39, 34, 40, (523,195,0): 38, 33, 39, (523,196,0): 37, 32, 38, (523,197,0): 37, 32, 38, (523,198,0): 37, 32, 38, (523,199,0): 36, 31, 37, (523,200,0): 36, 31, 37, (523,201,0): 36, 31, 37, (523,202,0): 36, 31, 37, (523,203,0): 36, 31, 37, (523,204,0): 36, 31, 37, (523,205,0): 36, 31, 37, (523,206,0): 36, 31, 37, (523,207,0): 34, 32, 37, (523,208,0): 33, 31, 36, (523,209,0): 32, 31, 36, (523,210,0): 32, 31, 36, (523,211,0): 32, 31, 36, (523,212,0): 32, 31, 36, (523,213,0): 32, 31, 36, (523,214,0): 32, 31, 36, (523,215,0): 32, 31, 36, (523,216,0): 34, 33, 38, (523,217,0): 34, 33, 38, (523,218,0): 34, 33, 38, (523,219,0): 34, 33, 38, (523,220,0): 34, 33, 38, (523,221,0): 34, 33, 38, (523,222,0): 34, 33, 38, (523,223,0): 34, 33, 38, (523,224,0): 34, 33, 39, (523,225,0): 34, 33, 39, (523,226,0): 34, 33, 39, (523,227,0): 34, 33, 39, (523,228,0): 34, 33, 39, (523,229,0): 34, 33, 39, (523,230,0): 34, 33, 39, (523,231,0): 34, 33, 39, (523,232,0): 34, 33, 39, (523,233,0): 34, 33, 39, (523,234,0): 34, 33, 39, (523,235,0): 34, 33, 39, (523,236,0): 34, 33, 39, (523,237,0): 34, 33, 39, (523,238,0): 34, 33, 39, (523,239,0): 34, 33, 39, (523,240,0): 34, 34, 44, (523,241,0): 35, 35, 45, (523,242,0): 35, 35, 45, (523,243,0): 36, 36, 46, (523,244,0): 36, 36, 46, (523,245,0): 37, 37, 47, (523,246,0): 38, 36, 49, (523,247,0): 38, 36, 49, (523,248,0): 39, 35, 50, (523,249,0): 40, 36, 51, (523,250,0): 42, 35, 53, (523,251,0): 43, 36, 54, (523,252,0): 43, 36, 54, (523,253,0): 44, 37, 55, (523,254,0): 44, 37, 55, (523,255,0): 44, 37, 55, (523,256,0): 44, 40, 57, (523,257,0): 45, 41, 58, (523,258,0): 48, 41, 59, (523,259,0): 50, 43, 61, (523,260,0): 53, 44, 61, (523,261,0): 57, 46, 63, (523,262,0): 59, 46, 64, (523,263,0): 60, 47, 64, (523,264,0): 62, 49, 66, (523,265,0): 61, 50, 66, (523,266,0): 61, 50, 64, (523,267,0): 58, 50, 63, (523,268,0): 56, 50, 60, (523,269,0): 54, 51, 60, (523,270,0): 53, 50, 59, (523,271,0): 53, 50, 59, (523,272,0): 54, 48, 60, (523,273,0): 55, 47, 60, (523,274,0): 56, 48, 61, (523,275,0): 57, 49, 62, (523,276,0): 60, 49, 63, (523,277,0): 61, 50, 64, (523,278,0): 62, 51, 65, (523,279,0): 62, 51, 65, (523,280,0): 66, 54, 68, (523,281,0): 66, 54, 68, (523,282,0): 67, 53, 68, (523,283,0): 68, 54, 69, (523,284,0): 70, 56, 71, (523,285,0): 72, 58, 73, (523,286,0): 76, 59, 75, (523,287,0): 79, 61, 75, (523,288,0): 84, 62, 75, (523,289,0): 85, 61, 74, (523,290,0): 86, 62, 75, (523,291,0): 87, 63, 76, (523,292,0): 88, 64, 77, (523,293,0): 89, 66, 76, (523,294,0): 92, 66, 77, (523,295,0): 93, 67, 78, (523,296,0): 92, 65, 74, (523,297,0): 92, 65, 74, (523,298,0): 94, 64, 72, (523,299,0): 94, 64, 72, (523,300,0): 94, 64, 72, (523,301,0): 94, 64, 72, (523,302,0): 94, 64, 72, (523,303,0): 95, 64, 72, (523,304,0): 96, 63, 74, (523,305,0): 97, 64, 75, (523,306,0): 99, 63, 73, (523,307,0): 101, 65, 75, (523,308,0): 106, 66, 75, (523,309,0): 111, 69, 79, (523,310,0): 115, 72, 82, (523,311,0): 122, 72, 83, (523,312,0): 133, 77, 90, (523,313,0): 141, 81, 89, (523,314,0): 153, 87, 89, (523,315,0): 164, 95, 88, (523,316,0): 179, 106, 91, (523,317,0): 202, 126, 102, (523,318,0): 230, 151, 120, (523,319,0): 244, 170, 131, (523,320,0): 252, 193, 151, (523,321,0): 249, 202, 160, (523,322,0): 239, 198, 166, (523,323,0): 217, 187, 163, (523,324,0): 194, 172, 159, (523,325,0): 177, 163, 160, (523,326,0): 165, 152, 159, (523,327,0): 156, 144, 156, (523,328,0): 149, 135, 150, (523,329,0): 146, 128, 142, (523,330,0): 135, 115, 126, (523,331,0): 119, 98, 107, (523,332,0): 101, 80, 85, (523,333,0): 84, 65, 67, (523,334,0): 71, 55, 55, (523,335,0): 64, 50, 50, (523,336,0): 54, 39, 42, (523,337,0): 50, 35, 40, (523,338,0): 44, 29, 34, (523,339,0): 41, 26, 31, (523,340,0): 40, 25, 32, (523,341,0): 39, 24, 31, (523,342,0): 36, 21, 28, (523,343,0): 34, 19, 26, (523,344,0): 35, 19, 29, (523,345,0): 34, 18, 28, (523,346,0): 33, 17, 28, (523,347,0): 32, 16, 27, (523,348,0): 31, 15, 26, (523,349,0): 30, 14, 25, (523,350,0): 29, 13, 26, (523,351,0): 29, 13, 26, (523,352,0): 27, 11, 22, (523,353,0): 27, 11, 22, (523,354,0): 27, 11, 22, (523,355,0): 27, 11, 22, (523,356,0): 27, 11, 22, (523,357,0): 27, 11, 22, (523,358,0): 27, 11, 22, (523,359,0): 27, 11, 22, (523,360,0): 26, 10, 21, (523,361,0): 26, 10, 21, (523,362,0): 25, 9, 20, (523,363,0): 25, 9, 20, (523,364,0): 24, 8, 19, (523,365,0): 24, 8, 19, (523,366,0): 23, 7, 18, (523,367,0): 21, 8, 18, (523,368,0): 21, 10, 18, (523,369,0): 19, 9, 17, (523,370,0): 18, 8, 16, (523,371,0): 17, 7, 15, (523,372,0): 16, 6, 14, (523,373,0): 16, 6, 14, (523,374,0): 17, 7, 15, (523,375,0): 18, 8, 16, (523,376,0): 19, 9, 17, (523,377,0): 19, 9, 17, (523,378,0): 19, 9, 17, (523,379,0): 19, 9, 17, (523,380,0): 19, 9, 17, (523,381,0): 19, 9, 17, (523,382,0): 19, 9, 17, (523,383,0): 19, 9, 18, (523,384,0): 21, 10, 24, (523,385,0): 21, 10, 24, (523,386,0): 20, 9, 25, (523,387,0): 19, 8, 22, (523,388,0): 19, 8, 22, (523,389,0): 18, 8, 19, (523,390,0): 18, 7, 21, (523,391,0): 17, 7, 18, (523,392,0): 19, 9, 20, (523,393,0): 19, 9, 18, (523,394,0): 19, 9, 18, (523,395,0): 20, 10, 18, (523,396,0): 21, 11, 20, (523,397,0): 21, 11, 19, (523,398,0): 21, 11, 19, (523,399,0): 23, 12, 18, (523,400,0): 22, 10, 14, (523,401,0): 24, 9, 14, (523,402,0): 24, 9, 14, (523,403,0): 24, 9, 14, (523,404,0): 24, 9, 14, (523,405,0): 24, 9, 14, (523,406,0): 24, 9, 14, (523,407,0): 24, 9, 14, (523,408,0): 26, 11, 16, (523,409,0): 26, 11, 16, (523,410,0): 26, 11, 16, (523,411,0): 26, 11, 16, (523,412,0): 26, 11, 16, (523,413,0): 26, 11, 16, (523,414,0): 26, 11, 16, (523,415,0): 26, 11, 16, (523,416,0): 27, 12, 17, (523,417,0): 27, 12, 17, (523,418,0): 27, 12, 17, (523,419,0): 27, 12, 17, (523,420,0): 27, 12, 17, (523,421,0): 27, 12, 17, (523,422,0): 27, 12, 17, (523,423,0): 27, 12, 17, (523,424,0): 33, 18, 23, (523,425,0): 34, 19, 24, (523,426,0): 36, 21, 26, (523,427,0): 37, 22, 27, (523,428,0): 38, 23, 28, (523,429,0): 39, 24, 29, (523,430,0): 38, 23, 28, (523,431,0): 39, 23, 26, (523,432,0): 37, 18, 22, (523,433,0): 37, 17, 19, (523,434,0): 37, 17, 19, (523,435,0): 36, 16, 18, (523,436,0): 35, 15, 17, (523,437,0): 35, 15, 17, (523,438,0): 35, 15, 17, (523,439,0): 35, 15, 17, (523,440,0): 37, 17, 19, (523,441,0): 37, 17, 19, (523,442,0): 36, 16, 18, (523,443,0): 35, 15, 17, (523,444,0): 34, 14, 16, (523,445,0): 33, 13, 15, (523,446,0): 32, 12, 14, (523,447,0): 32, 12, 14, (523,448,0): 29, 10, 16, (523,449,0): 30, 11, 17, (523,450,0): 30, 11, 17, (523,451,0): 31, 12, 18, (523,452,0): 32, 13, 19, (523,453,0): 33, 14, 20, (523,454,0): 33, 14, 20, (523,455,0): 34, 15, 21, (523,456,0): 30, 11, 17, (523,457,0): 30, 11, 17, (523,458,0): 31, 12, 18, (523,459,0): 31, 12, 18, (523,460,0): 32, 13, 19, (523,461,0): 32, 13, 19, (523,462,0): 33, 14, 20, (523,463,0): 33, 14, 18, (523,464,0): 35, 16, 20, (523,465,0): 35, 16, 18, (523,466,0): 36, 16, 18, (523,467,0): 37, 15, 18, (523,468,0): 40, 15, 19, (523,469,0): 42, 15, 20, (523,470,0): 44, 15, 20, (523,471,0): 45, 16, 21, (523,472,0): 46, 15, 21, (523,473,0): 46, 15, 21, (523,474,0): 45, 14, 20, (523,475,0): 45, 14, 20, (523,476,0): 43, 14, 19, (523,477,0): 43, 14, 19, (523,478,0): 40, 13, 18, (523,479,0): 39, 14, 18, (523,480,0): 36, 15, 22, (523,481,0): 34, 15, 21, (523,482,0): 34, 13, 20, (523,483,0): 33, 12, 19, (523,484,0): 32, 11, 20, (523,485,0): 31, 10, 19, (523,486,0): 30, 9, 18, (523,487,0): 29, 9, 18, (523,488,0): 25, 5, 16, (523,489,0): 22, 6, 16, (523,490,0): 19, 6, 16, (523,491,0): 16, 4, 14, (523,492,0): 13, 3, 12, (523,493,0): 9, 4, 11, (523,494,0): 6, 3, 12, (523,495,0): 5, 2, 11, (523,496,0): 6, 0, 9, (523,497,0): 7, 0, 10, (523,498,0): 8, 0, 11, (523,499,0): 9, 1, 12, (523,500,0): 12, 2, 13, (523,501,0): 13, 3, 14, (523,502,0): 15, 3, 15, (523,503,0): 15, 3, 15, (523,504,0): 15, 3, 15, (523,505,0): 15, 3, 15, (523,506,0): 16, 2, 15, (523,507,0): 17, 3, 16, (523,508,0): 19, 3, 16, (523,509,0): 20, 4, 17, (523,510,0): 21, 5, 18, (523,511,0): 22, 4, 18, (523,512,0): 30, 6, 19, (523,513,0): 32, 6, 19, (523,514,0): 32, 6, 19, (523,515,0): 32, 6, 17, (523,516,0): 32, 6, 17, (523,517,0): 32, 6, 17, (523,518,0): 32, 6, 17, (523,519,0): 32, 6, 15, (523,520,0): 37, 11, 20, (523,521,0): 37, 12, 18, (523,522,0): 37, 12, 18, (523,523,0): 37, 12, 18, (523,524,0): 37, 12, 18, (523,525,0): 37, 12, 16, (523,526,0): 38, 13, 17, (523,527,0): 38, 13, 17, (523,528,0): 41, 16, 20, (523,529,0): 45, 18, 23, (523,530,0): 49, 22, 27, (523,531,0): 51, 22, 27, (523,532,0): 50, 19, 25, (523,533,0): 49, 16, 23, (523,534,0): 49, 16, 23, (523,535,0): 52, 17, 24, (523,536,0): 53, 18, 25, (523,537,0): 52, 17, 24, (523,538,0): 50, 17, 24, (523,539,0): 50, 17, 24, (523,540,0): 49, 18, 24, (523,541,0): 48, 19, 24, (523,542,0): 49, 20, 25, (523,543,0): 47, 20, 25, (523,544,0): 43, 18, 22, (523,545,0): 42, 17, 21, (523,546,0): 40, 15, 19, (523,547,0): 39, 14, 18, (523,548,0): 38, 13, 17, (523,549,0): 38, 13, 17, (523,550,0): 38, 13, 17, (523,551,0): 39, 14, 18, (523,552,0): 39, 14, 18, (523,553,0): 39, 14, 18, (523,554,0): 39, 14, 18, (523,555,0): 38, 13, 17, (523,556,0): 37, 12, 16, (523,557,0): 37, 12, 16, (523,558,0): 36, 11, 15, (523,559,0): 34, 11, 17, (523,560,0): 32, 9, 19, (523,561,0): 33, 9, 22, (523,562,0): 32, 10, 22, (523,563,0): 32, 10, 22, (523,564,0): 32, 10, 22, (523,565,0): 32, 10, 22, (523,566,0): 31, 11, 22, (523,567,0): 30, 10, 21, (523,568,0): 30, 13, 23, (523,569,0): 30, 13, 23, (523,570,0): 30, 13, 23, (523,571,0): 31, 14, 24, (523,572,0): 31, 15, 25, (523,573,0): 31, 15, 25, (523,574,0): 31, 15, 25, (523,575,0): 32, 16, 26, (523,576,0): 36, 19, 29, (523,577,0): 36, 19, 29, (523,578,0): 38, 16, 28, (523,579,0): 37, 15, 28, (523,580,0): 37, 15, 28, (523,581,0): 35, 14, 29, (523,582,0): 31, 15, 28, (523,583,0): 28, 16, 28, (523,584,0): 23, 16, 24, (523,585,0): 25, 18, 25, (523,586,0): 28, 19, 24, (523,587,0): 29, 17, 21, (523,588,0): 36, 15, 20, (523,589,0): 48, 19, 24, (523,590,0): 61, 26, 32, (523,591,0): 76, 29, 39, (523,592,0): 93, 29, 45, (523,593,0): 87, 23, 40, (523,594,0): 66, 18, 32, (523,595,0): 47, 14, 23, (523,596,0): 33, 12, 21, (523,597,0): 28, 11, 19, (523,598,0): 30, 13, 23, (523,599,0): 31, 14, 24, (524,0,0): 41, 66, 73, (524,1,0): 41, 66, 73, (524,2,0): 41, 66, 73, (524,3,0): 41, 66, 73, (524,4,0): 41, 66, 73, (524,5,0): 41, 66, 73, (524,6,0): 41, 66, 73, (524,7,0): 41, 66, 73, (524,8,0): 41, 66, 73, (524,9,0): 42, 67, 74, (524,10,0): 42, 67, 74, (524,11,0): 43, 68, 75, (524,12,0): 43, 68, 75, (524,13,0): 44, 69, 76, (524,14,0): 44, 69, 76, (524,15,0): 44, 69, 76, (524,16,0): 45, 70, 77, (524,17,0): 46, 71, 78, (524,18,0): 46, 71, 78, (524,19,0): 47, 72, 79, (524,20,0): 47, 72, 79, (524,21,0): 48, 73, 80, (524,22,0): 48, 73, 80, (524,23,0): 48, 73, 80, (524,24,0): 47, 72, 79, (524,25,0): 47, 72, 79, (524,26,0): 48, 73, 80, (524,27,0): 48, 73, 80, (524,28,0): 49, 74, 81, (524,29,0): 49, 74, 81, (524,30,0): 50, 75, 82, (524,31,0): 50, 75, 82, (524,32,0): 51, 74, 82, (524,33,0): 51, 74, 82, (524,34,0): 54, 74, 83, (524,35,0): 54, 74, 83, (524,36,0): 55, 75, 84, (524,37,0): 55, 75, 84, (524,38,0): 57, 75, 85, (524,39,0): 57, 75, 85, (524,40,0): 58, 75, 85, (524,41,0): 58, 75, 85, (524,42,0): 59, 76, 86, (524,43,0): 59, 76, 86, (524,44,0): 62, 76, 87, (524,45,0): 62, 76, 87, (524,46,0): 63, 77, 88, (524,47,0): 63, 77, 88, (524,48,0): 63, 75, 87, (524,49,0): 63, 75, 87, (524,50,0): 65, 75, 87, (524,51,0): 66, 76, 88, (524,52,0): 66, 76, 88, (524,53,0): 67, 77, 89, (524,54,0): 68, 76, 87, (524,55,0): 68, 76, 87, (524,56,0): 70, 77, 87, (524,57,0): 70, 77, 87, (524,58,0): 70, 77, 85, (524,59,0): 71, 78, 86, (524,60,0): 73, 77, 86, (524,61,0): 74, 78, 87, (524,62,0): 74, 78, 87, (524,63,0): 74, 78, 87, (524,64,0): 71, 78, 88, (524,65,0): 71, 78, 88, (524,66,0): 74, 78, 89, (524,67,0): 75, 79, 90, (524,68,0): 76, 80, 91, (524,69,0): 77, 81, 90, (524,70,0): 79, 82, 91, (524,71,0): 79, 82, 89, (524,72,0): 80, 80, 88, (524,73,0): 81, 81, 89, (524,74,0): 82, 82, 90, (524,75,0): 83, 84, 89, (524,76,0): 85, 84, 90, (524,77,0): 86, 85, 90, (524,78,0): 87, 86, 91, (524,79,0): 88, 86, 91, (524,80,0): 92, 87, 94, (524,81,0): 92, 87, 94, (524,82,0): 93, 88, 95, (524,83,0): 93, 88, 95, (524,84,0): 91, 86, 93, (524,85,0): 88, 83, 90, (524,86,0): 85, 80, 87, (524,87,0): 83, 78, 85, (524,88,0): 85, 80, 87, (524,89,0): 84, 79, 86, (524,90,0): 83, 78, 85, (524,91,0): 83, 78, 85, (524,92,0): 83, 78, 85, (524,93,0): 85, 80, 87, (524,94,0): 87, 82, 89, (524,95,0): 89, 82, 89, (524,96,0): 90, 79, 87, (524,97,0): 92, 79, 88, (524,98,0): 93, 80, 89, (524,99,0): 93, 82, 90, (524,100,0): 92, 82, 90, (524,101,0): 92, 82, 90, (524,102,0): 89, 82, 89, (524,103,0): 88, 83, 89, (524,104,0): 79, 77, 82, (524,105,0): 78, 77, 82, (524,106,0): 78, 77, 82, (524,107,0): 76, 77, 81, (524,108,0): 74, 78, 81, (524,109,0): 73, 77, 80, (524,110,0): 72, 77, 80, (524,111,0): 72, 76, 79, (524,112,0): 73, 73, 81, (524,113,0): 73, 73, 83, (524,114,0): 70, 73, 82, (524,115,0): 69, 72, 81, (524,116,0): 69, 72, 81, (524,117,0): 68, 71, 80, (524,118,0): 67, 71, 82, (524,119,0): 66, 70, 81, (524,120,0): 67, 71, 83, (524,121,0): 64, 70, 82, (524,122,0): 64, 70, 82, (524,123,0): 63, 69, 83, (524,124,0): 63, 71, 84, (524,125,0): 65, 73, 86, (524,126,0): 67, 75, 88, (524,127,0): 69, 77, 88, (524,128,0): 70, 76, 88, (524,129,0): 70, 76, 88, (524,130,0): 71, 75, 86, (524,131,0): 70, 74, 85, (524,132,0): 68, 72, 83, (524,133,0): 65, 69, 80, (524,134,0): 63, 66, 75, (524,135,0): 62, 65, 74, (524,136,0): 65, 65, 73, (524,137,0): 62, 62, 70, (524,138,0): 58, 58, 66, (524,139,0): 58, 58, 66, (524,140,0): 62, 61, 67, (524,141,0): 64, 63, 69, (524,142,0): 63, 62, 68, (524,143,0): 62, 61, 66, (524,144,0): 58, 58, 60, (524,145,0): 56, 56, 56, (524,146,0): 54, 54, 54, (524,147,0): 52, 52, 52, (524,148,0): 50, 50, 50, (524,149,0): 49, 49, 49, (524,150,0): 49, 49, 49, (524,151,0): 50, 50, 50, (524,152,0): 53, 53, 53, (524,153,0): 52, 52, 52, (524,154,0): 52, 52, 52, (524,155,0): 50, 50, 50, (524,156,0): 49, 49, 49, (524,157,0): 48, 48, 48, (524,158,0): 47, 47, 47, (524,159,0): 47, 46, 44, (524,160,0): 51, 47, 44, (524,161,0): 51, 47, 44, (524,162,0): 51, 47, 44, (524,163,0): 51, 47, 44, (524,164,0): 50, 46, 43, (524,165,0): 50, 46, 43, (524,166,0): 50, 46, 43, (524,167,0): 50, 46, 43, (524,168,0): 52, 48, 45, (524,169,0): 52, 48, 45, (524,170,0): 51, 47, 44, (524,171,0): 51, 47, 44, (524,172,0): 50, 46, 43, (524,173,0): 50, 46, 43, (524,174,0): 49, 45, 42, (524,175,0): 49, 45, 42, (524,176,0): 48, 44, 45, (524,177,0): 47, 43, 44, (524,178,0): 45, 41, 42, (524,179,0): 44, 40, 41, (524,180,0): 43, 39, 40, (524,181,0): 43, 39, 40, (524,182,0): 44, 40, 41, (524,183,0): 44, 40, 41, (524,184,0): 40, 36, 37, (524,185,0): 40, 36, 37, (524,186,0): 40, 36, 37, (524,187,0): 40, 36, 37, (524,188,0): 40, 36, 37, (524,189,0): 40, 36, 37, (524,190,0): 40, 36, 37, (524,191,0): 40, 36, 37, (524,192,0): 40, 35, 41, (524,193,0): 39, 34, 40, (524,194,0): 39, 34, 40, (524,195,0): 39, 34, 40, (524,196,0): 38, 33, 39, (524,197,0): 37, 32, 38, (524,198,0): 37, 32, 38, (524,199,0): 37, 32, 38, (524,200,0): 37, 32, 38, (524,201,0): 37, 32, 38, (524,202,0): 37, 32, 38, (524,203,0): 37, 32, 38, (524,204,0): 37, 32, 38, (524,205,0): 37, 32, 38, (524,206,0): 37, 32, 38, (524,207,0): 35, 33, 38, (524,208,0): 33, 31, 36, (524,209,0): 32, 31, 36, (524,210,0): 32, 31, 36, (524,211,0): 32, 31, 36, (524,212,0): 32, 31, 36, (524,213,0): 32, 31, 36, (524,214,0): 32, 31, 36, (524,215,0): 32, 31, 36, (524,216,0): 34, 33, 38, (524,217,0): 34, 33, 38, (524,218,0): 34, 33, 38, (524,219,0): 34, 33, 38, (524,220,0): 34, 33, 38, (524,221,0): 34, 33, 38, (524,222,0): 34, 33, 38, (524,223,0): 34, 33, 38, (524,224,0): 34, 33, 39, (524,225,0): 34, 33, 39, (524,226,0): 34, 33, 39, (524,227,0): 34, 33, 39, (524,228,0): 34, 33, 39, (524,229,0): 34, 33, 39, (524,230,0): 34, 33, 39, (524,231,0): 34, 33, 39, (524,232,0): 34, 33, 39, (524,233,0): 34, 33, 39, (524,234,0): 34, 33, 39, (524,235,0): 34, 33, 39, (524,236,0): 34, 33, 39, (524,237,0): 34, 33, 39, (524,238,0): 34, 33, 39, (524,239,0): 34, 33, 39, (524,240,0): 34, 34, 44, (524,241,0): 32, 35, 44, (524,242,0): 32, 35, 44, (524,243,0): 33, 36, 45, (524,244,0): 35, 35, 45, (524,245,0): 36, 36, 46, (524,246,0): 37, 35, 48, (524,247,0): 38, 36, 49, (524,248,0): 38, 36, 50, (524,249,0): 38, 36, 50, (524,250,0): 39, 35, 52, (524,251,0): 40, 36, 53, (524,252,0): 42, 35, 53, (524,253,0): 43, 36, 54, (524,254,0): 43, 36, 54, (524,255,0): 44, 37, 55, (524,256,0): 44, 40, 57, (524,257,0): 43, 40, 57, (524,258,0): 45, 41, 58, (524,259,0): 49, 42, 60, (524,260,0): 51, 42, 61, (524,261,0): 52, 43, 60, (524,262,0): 55, 44, 61, (524,263,0): 55, 44, 61, (524,264,0): 59, 48, 64, (524,265,0): 59, 48, 64, (524,266,0): 59, 48, 62, (524,267,0): 57, 49, 62, (524,268,0): 55, 49, 61, (524,269,0): 53, 50, 61, (524,270,0): 53, 50, 61, (524,271,0): 52, 49, 60, (524,272,0): 53, 47, 59, (524,273,0): 54, 46, 59, (524,274,0): 55, 47, 60, (524,275,0): 56, 48, 61, (524,276,0): 59, 48, 62, (524,277,0): 60, 49, 63, (524,278,0): 61, 50, 64, (524,279,0): 61, 50, 64, (524,280,0): 66, 54, 68, (524,281,0): 66, 54, 68, (524,282,0): 67, 53, 68, (524,283,0): 68, 54, 69, (524,284,0): 69, 55, 70, (524,285,0): 72, 58, 73, (524,286,0): 76, 59, 75, (524,287,0): 78, 60, 74, (524,288,0): 83, 61, 74, (524,289,0): 85, 61, 74, (524,290,0): 86, 62, 75, (524,291,0): 87, 63, 76, (524,292,0): 90, 64, 75, (524,293,0): 91, 65, 76, (524,294,0): 93, 65, 77, (524,295,0): 93, 66, 75, (524,296,0): 92, 65, 74, (524,297,0): 92, 65, 74, (524,298,0): 94, 64, 72, (524,299,0): 94, 64, 72, (524,300,0): 95, 64, 70, (524,301,0): 95, 64, 70, (524,302,0): 95, 64, 70, (524,303,0): 95, 64, 72, (524,304,0): 96, 63, 74, (524,305,0): 97, 64, 75, (524,306,0): 100, 64, 74, (524,307,0): 102, 66, 76, (524,308,0): 108, 68, 77, (524,309,0): 112, 70, 80, (524,310,0): 118, 72, 83, (524,311,0): 122, 72, 83, (524,312,0): 134, 78, 91, (524,313,0): 142, 82, 90, (524,314,0): 156, 90, 92, (524,315,0): 168, 99, 92, (524,316,0): 185, 112, 95, (524,317,0): 208, 131, 105, (524,318,0): 232, 153, 120, (524,319,0): 245, 171, 132, (524,320,0): 246, 186, 149, (524,321,0): 241, 193, 157, (524,322,0): 230, 190, 164, (524,323,0): 208, 179, 161, (524,324,0): 189, 169, 162, (524,325,0): 173, 161, 163, (524,326,0): 164, 152, 162, (524,327,0): 154, 143, 159, (524,328,0): 146, 131, 150, (524,329,0): 140, 121, 140, (524,330,0): 129, 106, 122, (524,331,0): 113, 89, 102, (524,332,0): 95, 74, 81, (524,333,0): 81, 62, 64, (524,334,0): 68, 54, 53, (524,335,0): 61, 49, 49, (524,336,0): 53, 38, 41, (524,337,0): 49, 34, 39, (524,338,0): 44, 29, 34, (524,339,0): 42, 27, 32, (524,340,0): 41, 26, 33, (524,341,0): 39, 24, 31, (524,342,0): 36, 21, 28, (524,343,0): 33, 18, 25, (524,344,0): 34, 18, 28, (524,345,0): 34, 18, 28, (524,346,0): 33, 17, 28, (524,347,0): 32, 16, 27, (524,348,0): 31, 15, 26, (524,349,0): 30, 14, 25, (524,350,0): 29, 13, 26, (524,351,0): 28, 12, 25, (524,352,0): 27, 11, 22, (524,353,0): 27, 11, 22, (524,354,0): 27, 11, 22, (524,355,0): 27, 11, 22, (524,356,0): 27, 11, 22, (524,357,0): 27, 11, 22, (524,358,0): 27, 11, 22, (524,359,0): 27, 11, 22, (524,360,0): 25, 9, 20, (524,361,0): 25, 9, 20, (524,362,0): 25, 9, 20, (524,363,0): 24, 8, 19, (524,364,0): 24, 8, 19, (524,365,0): 23, 7, 18, (524,366,0): 23, 7, 18, (524,367,0): 21, 8, 18, (524,368,0): 19, 9, 17, (524,369,0): 16, 9, 16, (524,370,0): 15, 8, 15, (524,371,0): 14, 7, 14, (524,372,0): 13, 6, 13, (524,373,0): 13, 6, 13, (524,374,0): 14, 7, 14, (524,375,0): 15, 8, 15, (524,376,0): 16, 9, 16, (524,377,0): 16, 9, 16, (524,378,0): 16, 9, 16, (524,379,0): 16, 9, 16, (524,380,0): 16, 9, 16, (524,381,0): 16, 9, 16, (524,382,0): 16, 9, 16, (524,383,0): 16, 9, 17, (524,384,0): 17, 9, 20, (524,385,0): 17, 9, 20, (524,386,0): 16, 8, 21, (524,387,0): 16, 8, 19, (524,388,0): 16, 8, 19, (524,389,0): 15, 8, 16, (524,390,0): 15, 7, 18, (524,391,0): 15, 8, 16, (524,392,0): 16, 9, 17, (524,393,0): 17, 10, 17, (524,394,0): 17, 10, 17, (524,395,0): 17, 11, 15, (524,396,0): 18, 11, 18, (524,397,0): 19, 13, 17, (524,398,0): 19, 13, 17, (524,399,0): 21, 12, 15, (524,400,0): 22, 10, 14, (524,401,0): 24, 9, 14, (524,402,0): 24, 9, 14, (524,403,0): 24, 9, 14, (524,404,0): 24, 9, 14, (524,405,0): 24, 9, 14, (524,406,0): 24, 9, 14, (524,407,0): 24, 9, 14, (524,408,0): 26, 11, 16, (524,409,0): 26, 11, 16, (524,410,0): 26, 11, 16, (524,411,0): 26, 11, 16, (524,412,0): 26, 11, 16, (524,413,0): 26, 11, 16, (524,414,0): 26, 11, 16, (524,415,0): 26, 11, 16, (524,416,0): 27, 12, 17, (524,417,0): 27, 12, 17, (524,418,0): 27, 12, 17, (524,419,0): 27, 12, 17, (524,420,0): 27, 12, 17, (524,421,0): 27, 12, 17, (524,422,0): 27, 12, 17, (524,423,0): 27, 12, 17, (524,424,0): 31, 16, 21, (524,425,0): 32, 17, 22, (524,426,0): 34, 19, 24, (524,427,0): 36, 21, 26, (524,428,0): 37, 22, 27, (524,429,0): 37, 22, 27, (524,430,0): 37, 22, 27, (524,431,0): 37, 21, 24, (524,432,0): 35, 16, 20, (524,433,0): 36, 16, 18, (524,434,0): 36, 16, 18, (524,435,0): 36, 16, 18, (524,436,0): 36, 16, 18, (524,437,0): 35, 15, 17, (524,438,0): 34, 14, 16, (524,439,0): 34, 14, 16, (524,440,0): 36, 16, 18, (524,441,0): 36, 16, 18, (524,442,0): 35, 15, 17, (524,443,0): 34, 14, 16, (524,444,0): 33, 13, 15, (524,445,0): 32, 12, 14, (524,446,0): 31, 11, 13, (524,447,0): 31, 11, 13, (524,448,0): 30, 9, 16, (524,449,0): 31, 10, 17, (524,450,0): 31, 10, 17, (524,451,0): 32, 11, 18, (524,452,0): 33, 12, 19, (524,453,0): 34, 13, 20, (524,454,0): 34, 13, 20, (524,455,0): 35, 14, 21, (524,456,0): 31, 10, 17, (524,457,0): 31, 10, 17, (524,458,0): 32, 11, 18, (524,459,0): 32, 11, 18, (524,460,0): 33, 12, 19, (524,461,0): 33, 12, 19, (524,462,0): 34, 13, 20, (524,463,0): 33, 14, 18, (524,464,0): 34, 15, 19, (524,465,0): 35, 16, 18, (524,466,0): 36, 16, 18, (524,467,0): 38, 16, 19, (524,468,0): 41, 16, 20, (524,469,0): 42, 15, 20, (524,470,0): 44, 15, 20, (524,471,0): 45, 14, 20, (524,472,0): 46, 13, 20, (524,473,0): 46, 13, 20, (524,474,0): 44, 13, 19, (524,475,0): 44, 13, 19, (524,476,0): 42, 13, 18, (524,477,0): 42, 13, 18, (524,478,0): 39, 12, 17, (524,479,0): 36, 14, 17, (524,480,0): 34, 15, 21, (524,481,0): 32, 15, 21, (524,482,0): 33, 14, 20, (524,483,0): 32, 13, 19, (524,484,0): 32, 11, 20, (524,485,0): 31, 10, 19, (524,486,0): 30, 9, 18, (524,487,0): 28, 8, 17, (524,488,0): 25, 5, 16, (524,489,0): 21, 5, 15, (524,490,0): 18, 5, 15, (524,491,0): 15, 5, 14, (524,492,0): 11, 4, 12, (524,493,0): 8, 3, 10, (524,494,0): 5, 2, 11, (524,495,0): 5, 2, 11, (524,496,0): 6, 0, 11, (524,497,0): 9, 0, 12, (524,498,0): 10, 0, 13, (524,499,0): 11, 0, 14, (524,500,0): 13, 1, 15, (524,501,0): 14, 2, 16, (524,502,0): 15, 3, 17, (524,503,0): 15, 3, 17, (524,504,0): 16, 2, 17, (524,505,0): 17, 3, 18, (524,506,0): 19, 2, 18, (524,507,0): 20, 3, 19, (524,508,0): 21, 4, 20, (524,509,0): 21, 4, 20, (524,510,0): 22, 4, 20, (524,511,0): 24, 3, 18, (524,512,0): 30, 4, 17, (524,513,0): 31, 3, 15, (524,514,0): 32, 4, 16, (524,515,0): 33, 5, 17, (524,516,0): 34, 6, 18, (524,517,0): 35, 8, 17, (524,518,0): 35, 9, 18, (524,519,0): 36, 10, 19, (524,520,0): 36, 10, 19, (524,521,0): 36, 11, 17, (524,522,0): 37, 12, 18, (524,523,0): 37, 12, 16, (524,524,0): 36, 14, 17, (524,525,0): 36, 14, 17, (524,526,0): 36, 14, 17, (524,527,0): 38, 13, 16, (524,528,0): 41, 14, 19, (524,529,0): 47, 18, 23, (524,530,0): 51, 20, 26, (524,531,0): 52, 19, 26, (524,532,0): 50, 17, 24, (524,533,0): 49, 14, 21, (524,534,0): 49, 14, 21, (524,535,0): 51, 14, 22, (524,536,0): 50, 13, 21, (524,537,0): 50, 15, 22, (524,538,0): 48, 15, 22, (524,539,0): 48, 17, 23, (524,540,0): 47, 18, 23, (524,541,0): 45, 18, 23, (524,542,0): 45, 18, 23, (524,543,0): 44, 19, 23, (524,544,0): 37, 12, 16, (524,545,0): 35, 13, 16, (524,546,0): 34, 12, 15, (524,547,0): 34, 12, 15, (524,548,0): 35, 13, 16, (524,549,0): 36, 14, 17, (524,550,0): 38, 16, 19, (524,551,0): 39, 17, 20, (524,552,0): 35, 13, 16, (524,553,0): 35, 13, 16, (524,554,0): 35, 13, 16, (524,555,0): 35, 13, 16, (524,556,0): 34, 12, 15, (524,557,0): 34, 12, 15, (524,558,0): 34, 12, 15, (524,559,0): 33, 10, 16, (524,560,0): 32, 9, 19, (524,561,0): 31, 9, 21, (524,562,0): 30, 8, 20, (524,563,0): 30, 8, 20, (524,564,0): 29, 9, 20, (524,565,0): 29, 9, 20, (524,566,0): 30, 10, 21, (524,567,0): 30, 10, 21, (524,568,0): 29, 12, 22, (524,569,0): 30, 13, 23, (524,570,0): 29, 13, 23, (524,571,0): 29, 13, 23, (524,572,0): 30, 14, 24, (524,573,0): 31, 15, 25, (524,574,0): 29, 16, 25, (524,575,0): 29, 16, 25, (524,576,0): 34, 19, 26, (524,577,0): 35, 18, 26, (524,578,0): 35, 18, 26, (524,579,0): 36, 16, 27, (524,580,0): 34, 16, 28, (524,581,0): 32, 16, 27, (524,582,0): 30, 16, 29, (524,583,0): 29, 17, 29, (524,584,0): 23, 15, 26, (524,585,0): 23, 16, 24, (524,586,0): 26, 15, 23, (524,587,0): 29, 14, 21, (524,588,0): 35, 14, 21, (524,589,0): 45, 18, 25, (524,590,0): 56, 23, 30, (524,591,0): 71, 25, 35, (524,592,0): 87, 25, 40, (524,593,0): 85, 21, 38, (524,594,0): 69, 18, 33, (524,595,0): 54, 16, 27, (524,596,0): 40, 14, 25, (524,597,0): 34, 13, 22, (524,598,0): 32, 10, 22, (524,599,0): 30, 10, 22, (525,0,0): 41, 66, 73, (525,1,0): 41, 66, 73, (525,2,0): 41, 66, 73, (525,3,0): 41, 66, 73, (525,4,0): 41, 66, 73, (525,5,0): 41, 66, 73, (525,6,0): 41, 66, 73, (525,7,0): 41, 66, 73, (525,8,0): 42, 67, 74, (525,9,0): 42, 67, 74, (525,10,0): 42, 67, 74, (525,11,0): 43, 68, 75, (525,12,0): 44, 69, 76, (525,13,0): 44, 69, 76, (525,14,0): 44, 69, 76, (525,15,0): 45, 70, 77, (525,16,0): 45, 70, 77, (525,17,0): 45, 70, 77, (525,18,0): 45, 70, 77, (525,19,0): 46, 71, 78, (525,20,0): 46, 71, 78, (525,21,0): 47, 72, 79, (525,22,0): 47, 72, 79, (525,23,0): 47, 72, 79, (525,24,0): 47, 72, 79, (525,25,0): 47, 72, 79, (525,26,0): 48, 73, 80, (525,27,0): 48, 73, 80, (525,28,0): 49, 74, 81, (525,29,0): 49, 74, 81, (525,30,0): 50, 75, 82, (525,31,0): 50, 75, 82, (525,32,0): 51, 74, 82, (525,33,0): 51, 74, 82, (525,34,0): 54, 74, 83, (525,35,0): 54, 74, 83, (525,36,0): 55, 75, 84, (525,37,0): 55, 75, 84, (525,38,0): 57, 75, 85, (525,39,0): 57, 75, 85, (525,40,0): 58, 75, 85, (525,41,0): 58, 75, 85, (525,42,0): 59, 76, 86, (525,43,0): 59, 76, 86, (525,44,0): 62, 76, 87, (525,45,0): 62, 76, 87, (525,46,0): 63, 77, 88, (525,47,0): 63, 77, 88, (525,48,0): 63, 75, 87, (525,49,0): 63, 75, 87, (525,50,0): 65, 75, 87, (525,51,0): 66, 76, 88, (525,52,0): 66, 76, 88, (525,53,0): 67, 77, 89, (525,54,0): 68, 76, 87, (525,55,0): 68, 76, 87, (525,56,0): 70, 77, 87, (525,57,0): 70, 77, 87, (525,58,0): 70, 77, 85, (525,59,0): 71, 78, 86, (525,60,0): 73, 77, 86, (525,61,0): 74, 78, 87, (525,62,0): 74, 78, 87, (525,63,0): 74, 78, 87, (525,64,0): 70, 77, 87, (525,65,0): 71, 78, 88, (525,66,0): 74, 78, 89, (525,67,0): 75, 79, 88, (525,68,0): 76, 80, 89, (525,69,0): 77, 82, 88, (525,70,0): 79, 82, 89, (525,71,0): 79, 82, 89, (525,72,0): 80, 80, 88, (525,73,0): 80, 81, 86, (525,74,0): 81, 82, 87, (525,75,0): 82, 83, 87, (525,76,0): 84, 83, 88, (525,77,0): 85, 84, 89, (525,78,0): 86, 85, 90, (525,79,0): 86, 85, 90, (525,80,0): 90, 87, 94, (525,81,0): 92, 87, 94, (525,82,0): 92, 87, 94, (525,83,0): 92, 87, 94, (525,84,0): 91, 86, 93, (525,85,0): 90, 85, 92, (525,86,0): 88, 83, 90, (525,87,0): 87, 82, 89, (525,88,0): 88, 83, 90, (525,89,0): 87, 82, 89, (525,90,0): 84, 79, 86, (525,91,0): 83, 78, 85, (525,92,0): 83, 78, 85, (525,93,0): 84, 79, 86, (525,94,0): 86, 81, 88, (525,95,0): 88, 81, 89, (525,96,0): 91, 80, 88, (525,97,0): 92, 79, 88, (525,98,0): 93, 80, 89, (525,99,0): 93, 80, 89, (525,100,0): 92, 81, 89, (525,101,0): 92, 82, 90, (525,102,0): 90, 83, 90, (525,103,0): 89, 84, 90, (525,104,0): 84, 79, 85, (525,105,0): 81, 80, 85, (525,106,0): 80, 79, 84, (525,107,0): 79, 80, 84, (525,108,0): 76, 80, 83, (525,109,0): 75, 80, 83, (525,110,0): 74, 79, 82, (525,111,0): 74, 79, 83, (525,112,0): 74, 77, 84, (525,113,0): 75, 75, 85, (525,114,0): 73, 76, 85, (525,115,0): 72, 75, 84, (525,116,0): 71, 74, 83, (525,117,0): 70, 73, 82, (525,118,0): 68, 72, 83, (525,119,0): 68, 72, 83, (525,120,0): 67, 73, 85, (525,121,0): 66, 72, 84, (525,122,0): 65, 71, 85, (525,123,0): 64, 70, 84, (525,124,0): 63, 71, 84, (525,125,0): 65, 73, 86, (525,126,0): 68, 76, 89, (525,127,0): 70, 78, 91, (525,128,0): 71, 77, 89, (525,129,0): 71, 77, 89, (525,130,0): 72, 76, 87, (525,131,0): 71, 75, 86, (525,132,0): 69, 73, 84, (525,133,0): 66, 70, 81, (525,134,0): 64, 67, 76, (525,135,0): 63, 66, 75, (525,136,0): 66, 66, 76, (525,137,0): 62, 62, 70, (525,138,0): 59, 59, 67, (525,139,0): 58, 58, 66, (525,140,0): 62, 61, 67, (525,141,0): 64, 63, 69, (525,142,0): 64, 63, 69, (525,143,0): 63, 62, 67, (525,144,0): 58, 58, 60, (525,145,0): 57, 57, 57, (525,146,0): 54, 54, 54, (525,147,0): 52, 52, 52, (525,148,0): 50, 50, 50, (525,149,0): 50, 50, 50, (525,150,0): 50, 50, 50, (525,151,0): 50, 50, 50, (525,152,0): 54, 54, 54, (525,153,0): 54, 54, 54, (525,154,0): 53, 53, 53, (525,155,0): 52, 52, 52, (525,156,0): 51, 51, 51, (525,157,0): 50, 50, 50, (525,158,0): 50, 50, 50, (525,159,0): 49, 49, 47, (525,160,0): 53, 49, 48, (525,161,0): 53, 49, 46, (525,162,0): 52, 48, 45, (525,163,0): 52, 48, 45, (525,164,0): 51, 47, 44, (525,165,0): 51, 47, 44, (525,166,0): 51, 47, 44, (525,167,0): 50, 46, 43, (525,168,0): 52, 48, 45, (525,169,0): 52, 48, 45, (525,170,0): 51, 47, 44, (525,171,0): 51, 47, 44, (525,172,0): 50, 46, 43, (525,173,0): 50, 46, 43, (525,174,0): 49, 45, 42, (525,175,0): 49, 45, 42, (525,176,0): 49, 45, 46, (525,177,0): 48, 44, 45, (525,178,0): 46, 42, 43, (525,179,0): 45, 41, 42, (525,180,0): 44, 40, 41, (525,181,0): 44, 40, 41, (525,182,0): 44, 40, 41, (525,183,0): 44, 40, 41, (525,184,0): 42, 38, 39, (525,185,0): 42, 38, 39, (525,186,0): 42, 38, 39, (525,187,0): 42, 38, 39, (525,188,0): 42, 38, 39, (525,189,0): 42, 38, 39, (525,190,0): 42, 38, 39, (525,191,0): 42, 38, 39, (525,192,0): 40, 35, 41, (525,193,0): 40, 35, 41, (525,194,0): 40, 35, 41, (525,195,0): 39, 34, 40, (525,196,0): 39, 34, 40, (525,197,0): 38, 33, 39, (525,198,0): 38, 33, 39, (525,199,0): 37, 32, 38, (525,200,0): 37, 32, 38, (525,201,0): 37, 32, 38, (525,202,0): 37, 32, 38, (525,203,0): 37, 32, 38, (525,204,0): 37, 32, 38, (525,205,0): 37, 32, 38, (525,206,0): 37, 32, 38, (525,207,0): 35, 33, 38, (525,208,0): 33, 31, 36, (525,209,0): 32, 31, 36, (525,210,0): 32, 31, 36, (525,211,0): 32, 31, 36, (525,212,0): 32, 31, 36, (525,213,0): 32, 31, 36, (525,214,0): 32, 31, 36, (525,215,0): 32, 31, 36, (525,216,0): 34, 33, 38, (525,217,0): 34, 33, 38, (525,218,0): 34, 33, 38, (525,219,0): 34, 33, 38, (525,220,0): 34, 33, 38, (525,221,0): 34, 33, 38, (525,222,0): 34, 33, 38, (525,223,0): 34, 33, 38, (525,224,0): 34, 33, 39, (525,225,0): 34, 33, 39, (525,226,0): 34, 33, 39, (525,227,0): 34, 33, 39, (525,228,0): 34, 33, 39, (525,229,0): 34, 33, 39, (525,230,0): 34, 33, 39, (525,231,0): 34, 33, 39, (525,232,0): 34, 33, 39, (525,233,0): 34, 33, 39, (525,234,0): 34, 33, 39, (525,235,0): 34, 33, 39, (525,236,0): 34, 33, 39, (525,237,0): 34, 33, 39, (525,238,0): 34, 33, 39, (525,239,0): 33, 34, 39, (525,240,0): 33, 33, 43, (525,241,0): 32, 35, 44, (525,242,0): 32, 35, 44, (525,243,0): 32, 35, 44, (525,244,0): 35, 35, 45, (525,245,0): 36, 36, 46, (525,246,0): 37, 35, 48, (525,247,0): 37, 35, 48, (525,248,0): 37, 35, 49, (525,249,0): 38, 36, 50, (525,250,0): 39, 35, 52, (525,251,0): 39, 35, 52, (525,252,0): 42, 35, 53, (525,253,0): 43, 36, 54, (525,254,0): 43, 36, 54, (525,255,0): 41, 37, 54, (525,256,0): 43, 40, 57, (525,257,0): 43, 40, 57, (525,258,0): 45, 41, 58, (525,259,0): 45, 41, 58, (525,260,0): 48, 41, 59, (525,261,0): 50, 41, 60, (525,262,0): 52, 41, 58, (525,263,0): 52, 41, 58, (525,264,0): 58, 47, 63, (525,265,0): 56, 48, 63, (525,266,0): 56, 48, 61, (525,267,0): 54, 48, 60, (525,268,0): 52, 49, 60, (525,269,0): 51, 49, 60, (525,270,0): 51, 49, 60, (525,271,0): 52, 49, 60, (525,272,0): 52, 46, 58, (525,273,0): 54, 46, 59, (525,274,0): 55, 47, 60, (525,275,0): 56, 48, 61, (525,276,0): 59, 48, 62, (525,277,0): 60, 49, 63, (525,278,0): 61, 50, 64, (525,279,0): 61, 50, 64, (525,280,0): 65, 53, 67, (525,281,0): 65, 53, 67, (525,282,0): 66, 52, 67, (525,283,0): 67, 53, 68, (525,284,0): 69, 55, 70, (525,285,0): 71, 57, 72, (525,286,0): 75, 58, 74, (525,287,0): 78, 60, 74, (525,288,0): 83, 61, 74, (525,289,0): 84, 60, 73, (525,290,0): 85, 61, 74, (525,291,0): 86, 62, 75, (525,292,0): 89, 63, 74, (525,293,0): 90, 64, 75, (525,294,0): 92, 65, 74, (525,295,0): 92, 65, 74, (525,296,0): 92, 65, 74, (525,297,0): 92, 65, 74, (525,298,0): 94, 64, 72, (525,299,0): 94, 64, 72, (525,300,0): 95, 64, 70, (525,301,0): 95, 64, 70, (525,302,0): 95, 64, 70, (525,303,0): 95, 64, 70, (525,304,0): 96, 63, 74, (525,305,0): 97, 64, 75, (525,306,0): 101, 65, 75, (525,307,0): 103, 67, 77, (525,308,0): 109, 69, 78, (525,309,0): 113, 71, 81, (525,310,0): 118, 72, 83, (525,311,0): 122, 72, 84, (525,312,0): 134, 78, 91, (525,313,0): 145, 84, 92, (525,314,0): 160, 94, 96, (525,315,0): 176, 105, 99, (525,316,0): 195, 119, 103, (525,317,0): 213, 136, 108, (525,318,0): 232, 154, 118, (525,319,0): 239, 167, 127, (525,320,0): 240, 180, 146, (525,321,0): 231, 184, 154, (525,322,0): 218, 180, 159, (525,323,0): 198, 168, 157, (525,324,0): 179, 159, 158, (525,325,0): 168, 155, 164, (525,326,0): 158, 147, 163, (525,327,0): 150, 138, 158, (525,328,0): 144, 129, 152, (525,329,0): 135, 116, 136, (525,330,0): 121, 98, 116, (525,331,0): 103, 79, 93, (525,332,0): 88, 67, 74, (525,333,0): 77, 58, 62, (525,334,0): 66, 52, 52, (525,335,0): 60, 48, 48, (525,336,0): 53, 38, 41, (525,337,0): 50, 35, 40, (525,338,0): 46, 31, 36, (525,339,0): 43, 28, 33, (525,340,0): 42, 27, 34, (525,341,0): 40, 25, 32, (525,342,0): 36, 21, 28, (525,343,0): 33, 18, 25, (525,344,0): 33, 17, 27, (525,345,0): 33, 17, 27, (525,346,0): 32, 16, 27, (525,347,0): 31, 15, 26, (525,348,0): 30, 14, 25, (525,349,0): 29, 13, 24, (525,350,0): 28, 12, 25, (525,351,0): 28, 12, 25, (525,352,0): 27, 11, 22, (525,353,0): 27, 11, 22, (525,354,0): 27, 11, 22, (525,355,0): 27, 11, 22, (525,356,0): 27, 11, 22, (525,357,0): 27, 11, 22, (525,358,0): 27, 11, 22, (525,359,0): 27, 11, 22, (525,360,0): 26, 10, 21, (525,361,0): 25, 9, 20, (525,362,0): 25, 9, 20, (525,363,0): 24, 8, 19, (525,364,0): 24, 8, 19, (525,365,0): 23, 7, 18, (525,366,0): 23, 7, 18, (525,367,0): 21, 8, 18, (525,368,0): 19, 9, 17, (525,369,0): 16, 9, 16, (525,370,0): 15, 8, 15, (525,371,0): 13, 6, 13, (525,372,0): 13, 6, 13, (525,373,0): 13, 6, 13, (525,374,0): 14, 7, 14, (525,375,0): 14, 7, 14, (525,376,0): 16, 9, 16, (525,377,0): 16, 9, 16, (525,378,0): 16, 9, 16, (525,379,0): 16, 9, 16, (525,380,0): 16, 9, 16, (525,381,0): 16, 9, 16, (525,382,0): 16, 9, 16, (525,383,0): 16, 9, 16, (525,384,0): 15, 8, 16, (525,385,0): 15, 7, 18, (525,386,0): 15, 7, 18, (525,387,0): 15, 8, 16, (525,388,0): 15, 8, 16, (525,389,0): 15, 8, 16, (525,390,0): 15, 8, 16, (525,391,0): 15, 8, 15, (525,392,0): 16, 9, 16, (525,393,0): 16, 10, 14, (525,394,0): 16, 10, 14, (525,395,0): 17, 11, 15, (525,396,0): 17, 11, 15, (525,397,0): 18, 12, 14, (525,398,0): 18, 12, 14, (525,399,0): 21, 12, 15, (525,400,0): 23, 11, 15, (525,401,0): 25, 10, 15, (525,402,0): 25, 10, 15, (525,403,0): 25, 10, 15, (525,404,0): 25, 10, 15, (525,405,0): 25, 10, 15, (525,406,0): 25, 10, 15, (525,407,0): 25, 10, 15, (525,408,0): 26, 11, 16, (525,409,0): 26, 11, 16, (525,410,0): 26, 11, 16, (525,411,0): 26, 11, 16, (525,412,0): 26, 11, 16, (525,413,0): 26, 11, 16, (525,414,0): 26, 11, 16, (525,415,0): 26, 11, 16, (525,416,0): 26, 11, 16, (525,417,0): 26, 11, 16, (525,418,0): 26, 11, 16, (525,419,0): 26, 11, 16, (525,420,0): 26, 11, 16, (525,421,0): 26, 11, 16, (525,422,0): 26, 11, 16, (525,423,0): 26, 11, 16, (525,424,0): 29, 14, 19, (525,425,0): 30, 15, 20, (525,426,0): 32, 17, 22, (525,427,0): 33, 18, 23, (525,428,0): 35, 20, 25, (525,429,0): 35, 20, 25, (525,430,0): 34, 19, 24, (525,431,0): 35, 19, 22, (525,432,0): 35, 16, 20, (525,433,0): 36, 16, 18, (525,434,0): 37, 17, 19, (525,435,0): 37, 17, 19, (525,436,0): 37, 17, 19, (525,437,0): 35, 15, 17, (525,438,0): 34, 14, 16, (525,439,0): 33, 13, 15, (525,440,0): 36, 16, 18, (525,441,0): 36, 16, 18, (525,442,0): 35, 15, 17, (525,443,0): 34, 14, 16, (525,444,0): 33, 13, 15, (525,445,0): 32, 12, 14, (525,446,0): 31, 11, 13, (525,447,0): 30, 10, 12, (525,448,0): 32, 11, 18, (525,449,0): 32, 11, 18, (525,450,0): 32, 11, 18, (525,451,0): 32, 11, 18, (525,452,0): 33, 12, 19, (525,453,0): 33, 12, 19, (525,454,0): 33, 12, 19, (525,455,0): 33, 12, 19, (525,456,0): 31, 10, 17, (525,457,0): 31, 10, 17, (525,458,0): 32, 11, 18, (525,459,0): 32, 11, 18, (525,460,0): 33, 12, 19, (525,461,0): 33, 12, 19, (525,462,0): 34, 13, 20, (525,463,0): 33, 14, 18, (525,464,0): 33, 14, 18, (525,465,0): 32, 16, 17, (525,466,0): 37, 17, 19, (525,467,0): 39, 17, 20, (525,468,0): 41, 16, 20, (525,469,0): 44, 15, 20, (525,470,0): 45, 14, 20, (525,471,0): 44, 13, 19, (525,472,0): 45, 12, 19, (525,473,0): 45, 12, 19, (525,474,0): 43, 12, 18, (525,475,0): 43, 12, 18, (525,476,0): 41, 12, 17, (525,477,0): 39, 12, 17, (525,478,0): 37, 12, 16, (525,479,0): 35, 13, 16, (525,480,0): 33, 14, 20, (525,481,0): 31, 14, 20, (525,482,0): 32, 13, 19, (525,483,0): 31, 12, 18, (525,484,0): 31, 10, 19, (525,485,0): 30, 9, 18, (525,486,0): 29, 8, 17, (525,487,0): 29, 8, 17, (525,488,0): 24, 4, 15, (525,489,0): 21, 5, 15, (525,490,0): 18, 5, 15, (525,491,0): 14, 4, 13, (525,492,0): 10, 3, 11, (525,493,0): 6, 3, 10, (525,494,0): 4, 3, 11, (525,495,0): 4, 1, 10, (525,496,0): 7, 0, 12, (525,497,0): 10, 0, 13, (525,498,0): 10, 0, 13, (525,499,0): 11, 0, 14, (525,500,0): 14, 2, 16, (525,501,0): 15, 3, 17, (525,502,0): 15, 3, 17, (525,503,0): 16, 4, 18, (525,504,0): 17, 3, 18, (525,505,0): 18, 4, 19, (525,506,0): 21, 4, 20, (525,507,0): 22, 5, 21, (525,508,0): 23, 6, 22, (525,509,0): 23, 6, 22, (525,510,0): 23, 5, 21, (525,511,0): 24, 3, 18, (525,512,0): 29, 3, 16, (525,513,0): 31, 3, 15, (525,514,0): 32, 4, 16, (525,515,0): 33, 6, 15, (525,516,0): 35, 8, 17, (525,517,0): 37, 10, 19, (525,518,0): 37, 11, 20, (525,519,0): 37, 12, 18, (525,520,0): 35, 10, 16, (525,521,0): 36, 11, 15, (525,522,0): 37, 12, 16, (525,523,0): 39, 14, 18, (525,524,0): 37, 15, 18, (525,525,0): 38, 16, 18, (525,526,0): 37, 15, 17, (525,527,0): 39, 14, 17, (525,528,0): 44, 15, 20, (525,529,0): 48, 17, 23, (525,530,0): 51, 18, 25, (525,531,0): 52, 17, 24, (525,532,0): 49, 14, 21, (525,533,0): 49, 12, 20, (525,534,0): 49, 12, 20, (525,535,0): 51, 14, 22, (525,536,0): 48, 11, 19, (525,537,0): 49, 12, 20, (525,538,0): 49, 14, 21, (525,539,0): 47, 16, 22, (525,540,0): 46, 17, 22, (525,541,0): 43, 18, 22, (525,542,0): 42, 17, 21, (525,543,0): 40, 18, 21, (525,544,0): 33, 11, 14, (525,545,0): 32, 10, 13, (525,546,0): 32, 10, 13, (525,547,0): 33, 11, 14, (525,548,0): 35, 13, 16, (525,549,0): 37, 15, 18, (525,550,0): 39, 17, 20, (525,551,0): 40, 18, 21, (525,552,0): 34, 12, 15, (525,553,0): 34, 12, 15, (525,554,0): 34, 12, 15, (525,555,0): 33, 11, 14, (525,556,0): 33, 11, 14, (525,557,0): 33, 11, 14, (525,558,0): 33, 11, 14, (525,559,0): 33, 10, 16, (525,560,0): 32, 11, 20, (525,561,0): 31, 9, 21, (525,562,0): 30, 8, 20, (525,563,0): 29, 7, 19, (525,564,0): 28, 8, 19, (525,565,0): 29, 9, 20, (525,566,0): 30, 10, 21, (525,567,0): 29, 12, 22, (525,568,0): 29, 12, 22, (525,569,0): 29, 12, 22, (525,570,0): 28, 12, 22, (525,571,0): 29, 13, 23, (525,572,0): 29, 13, 23, (525,573,0): 30, 14, 24, (525,574,0): 28, 15, 24, (525,575,0): 29, 16, 23, (525,576,0): 33, 18, 23, (525,577,0): 33, 18, 23, (525,578,0): 33, 18, 23, (525,579,0): 33, 18, 25, (525,580,0): 31, 18, 27, (525,581,0): 30, 18, 28, (525,582,0): 30, 18, 30, (525,583,0): 30, 18, 30, (525,584,0): 26, 16, 27, (525,585,0): 26, 14, 26, (525,586,0): 28, 12, 23, (525,587,0): 29, 12, 22, (525,588,0): 35, 12, 22, (525,589,0): 42, 15, 24, (525,590,0): 50, 19, 27, (525,591,0): 60, 20, 29, (525,592,0): 72, 18, 31, (525,593,0): 71, 17, 30, (525,594,0): 62, 18, 31, (525,595,0): 51, 18, 27, (525,596,0): 43, 17, 28, (525,597,0): 36, 15, 24, (525,598,0): 33, 11, 24, (525,599,0): 30, 10, 22, (526,0,0): 41, 66, 73, (526,1,0): 41, 66, 73, (526,2,0): 41, 66, 73, (526,3,0): 41, 66, 73, (526,4,0): 41, 66, 73, (526,5,0): 41, 66, 73, (526,6,0): 41, 66, 73, (526,7,0): 41, 66, 73, (526,8,0): 42, 67, 74, (526,9,0): 43, 68, 75, (526,10,0): 43, 68, 75, (526,11,0): 43, 68, 75, (526,12,0): 44, 69, 76, (526,13,0): 44, 69, 76, (526,14,0): 45, 70, 77, (526,15,0): 45, 70, 77, (526,16,0): 44, 69, 76, (526,17,0): 44, 69, 76, (526,18,0): 44, 69, 76, (526,19,0): 45, 70, 77, (526,20,0): 45, 70, 77, (526,21,0): 46, 71, 78, (526,22,0): 46, 71, 78, (526,23,0): 46, 71, 78, (526,24,0): 47, 72, 79, (526,25,0): 47, 72, 79, (526,26,0): 48, 73, 80, (526,27,0): 48, 73, 80, (526,28,0): 49, 74, 81, (526,29,0): 49, 74, 81, (526,30,0): 50, 75, 82, (526,31,0): 50, 75, 82, (526,32,0): 51, 74, 82, (526,33,0): 51, 74, 82, (526,34,0): 54, 74, 83, (526,35,0): 54, 74, 83, (526,36,0): 55, 75, 84, (526,37,0): 55, 75, 84, (526,38,0): 57, 75, 85, (526,39,0): 57, 75, 85, (526,40,0): 58, 75, 85, (526,41,0): 58, 75, 85, (526,42,0): 59, 76, 86, (526,43,0): 59, 76, 86, (526,44,0): 62, 76, 87, (526,45,0): 62, 76, 87, (526,46,0): 63, 77, 88, (526,47,0): 63, 77, 88, (526,48,0): 63, 75, 87, (526,49,0): 63, 75, 87, (526,50,0): 65, 75, 87, (526,51,0): 66, 76, 88, (526,52,0): 66, 76, 88, (526,53,0): 67, 77, 89, (526,54,0): 68, 76, 87, (526,55,0): 68, 76, 87, (526,56,0): 70, 77, 87, (526,57,0): 70, 77, 87, (526,58,0): 70, 77, 85, (526,59,0): 71, 78, 86, (526,60,0): 73, 77, 86, (526,61,0): 74, 78, 87, (526,62,0): 74, 78, 87, (526,63,0): 74, 78, 87, (526,64,0): 70, 77, 85, (526,65,0): 70, 77, 85, (526,66,0): 71, 78, 86, (526,67,0): 72, 79, 87, (526,68,0): 75, 79, 88, (526,69,0): 76, 81, 87, (526,70,0): 78, 81, 88, (526,71,0): 79, 82, 87, (526,72,0): 78, 81, 86, (526,73,0): 78, 81, 86, (526,74,0): 81, 82, 87, (526,75,0): 82, 83, 87, (526,76,0): 84, 83, 88, (526,77,0): 85, 85, 87, (526,78,0): 86, 86, 88, (526,79,0): 86, 85, 90, (526,80,0): 90, 87, 94, (526,81,0): 90, 87, 96, (526,82,0): 89, 86, 95, (526,83,0): 88, 85, 94, (526,84,0): 88, 85, 94, (526,85,0): 89, 86, 95, (526,86,0): 90, 87, 96, (526,87,0): 90, 87, 96, (526,88,0): 89, 86, 95, (526,89,0): 87, 84, 93, (526,90,0): 84, 81, 90, (526,91,0): 81, 78, 87, (526,92,0): 80, 77, 86, (526,93,0): 81, 78, 87, (526,94,0): 83, 80, 89, (526,95,0): 87, 80, 88, (526,96,0): 93, 82, 90, (526,97,0): 95, 79, 89, (526,98,0): 93, 80, 89, (526,99,0): 92, 79, 88, (526,100,0): 91, 80, 88, (526,101,0): 90, 80, 88, (526,102,0): 89, 82, 89, (526,103,0): 88, 83, 89, (526,104,0): 86, 81, 87, (526,105,0): 83, 82, 87, (526,106,0): 82, 81, 86, (526,107,0): 81, 82, 86, (526,108,0): 78, 82, 85, (526,109,0): 77, 82, 85, (526,110,0): 76, 81, 84, (526,111,0): 76, 81, 85, (526,112,0): 76, 79, 86, (526,113,0): 75, 78, 87, (526,114,0): 75, 78, 87, (526,115,0): 73, 76, 85, (526,116,0): 72, 74, 86, (526,117,0): 71, 73, 85, (526,118,0): 69, 73, 85, (526,119,0): 69, 73, 85, (526,120,0): 69, 75, 87, (526,121,0): 68, 74, 86, (526,122,0): 65, 73, 86, (526,123,0): 63, 71, 84, (526,124,0): 64, 71, 87, (526,125,0): 66, 73, 89, (526,126,0): 68, 75, 91, (526,127,0): 70, 78, 91, (526,128,0): 72, 78, 90, (526,129,0): 72, 78, 90, (526,130,0): 73, 77, 89, (526,131,0): 72, 76, 88, (526,132,0): 70, 74, 85, (526,133,0): 67, 71, 82, (526,134,0): 65, 67, 79, (526,135,0): 63, 66, 75, (526,136,0): 67, 67, 77, (526,137,0): 63, 63, 73, (526,138,0): 59, 59, 67, (526,139,0): 58, 58, 66, (526,140,0): 61, 60, 68, (526,141,0): 64, 63, 71, (526,142,0): 65, 64, 70, (526,143,0): 64, 63, 68, (526,144,0): 60, 60, 62, (526,145,0): 59, 59, 59, (526,146,0): 57, 57, 57, (526,147,0): 54, 54, 54, (526,148,0): 53, 53, 53, (526,149,0): 52, 52, 52, (526,150,0): 52, 52, 52, (526,151,0): 52, 52, 52, (526,152,0): 54, 54, 54, (526,153,0): 54, 54, 54, (526,154,0): 54, 54, 54, (526,155,0): 53, 53, 53, (526,156,0): 53, 53, 53, (526,157,0): 53, 53, 53, (526,158,0): 53, 53, 53, (526,159,0): 53, 53, 51, (526,160,0): 54, 50, 49, (526,161,0): 54, 50, 47, (526,162,0): 53, 49, 46, (526,163,0): 53, 49, 46, (526,164,0): 52, 48, 45, (526,165,0): 51, 47, 44, (526,166,0): 51, 47, 44, (526,167,0): 51, 47, 44, (526,168,0): 52, 48, 45, (526,169,0): 51, 47, 44, (526,170,0): 51, 47, 44, (526,171,0): 51, 47, 44, (526,172,0): 50, 46, 43, (526,173,0): 50, 46, 43, (526,174,0): 49, 45, 42, (526,175,0): 49, 45, 42, (526,176,0): 51, 47, 48, (526,177,0): 50, 46, 47, (526,178,0): 48, 44, 45, (526,179,0): 46, 42, 43, (526,180,0): 44, 40, 41, (526,181,0): 44, 40, 41, (526,182,0): 44, 40, 41, (526,183,0): 44, 40, 41, (526,184,0): 44, 40, 41, (526,185,0): 44, 40, 41, (526,186,0): 44, 40, 41, (526,187,0): 44, 40, 41, (526,188,0): 44, 40, 41, (526,189,0): 44, 40, 41, (526,190,0): 44, 40, 41, (526,191,0): 44, 40, 41, (526,192,0): 41, 36, 42, (526,193,0): 40, 35, 41, (526,194,0): 40, 35, 41, (526,195,0): 39, 34, 40, (526,196,0): 39, 34, 40, (526,197,0): 38, 33, 39, (526,198,0): 38, 33, 39, (526,199,0): 38, 33, 39, (526,200,0): 38, 33, 39, (526,201,0): 38, 33, 39, (526,202,0): 38, 33, 39, (526,203,0): 38, 33, 39, (526,204,0): 38, 33, 39, (526,205,0): 38, 33, 39, (526,206,0): 38, 33, 39, (526,207,0): 36, 34, 39, (526,208,0): 33, 31, 36, (526,209,0): 32, 31, 36, (526,210,0): 32, 31, 36, (526,211,0): 32, 31, 36, (526,212,0): 32, 31, 36, (526,213,0): 32, 31, 36, (526,214,0): 32, 31, 36, (526,215,0): 32, 31, 36, (526,216,0): 34, 33, 38, (526,217,0): 34, 33, 38, (526,218,0): 34, 33, 38, (526,219,0): 34, 33, 38, (526,220,0): 34, 33, 38, (526,221,0): 34, 33, 38, (526,222,0): 34, 33, 38, (526,223,0): 34, 33, 38, (526,224,0): 34, 33, 39, (526,225,0): 34, 33, 39, (526,226,0): 34, 33, 39, (526,227,0): 34, 33, 39, (526,228,0): 34, 33, 39, (526,229,0): 34, 33, 39, (526,230,0): 34, 33, 39, (526,231,0): 34, 33, 39, (526,232,0): 34, 33, 39, (526,233,0): 34, 33, 39, (526,234,0): 34, 33, 39, (526,235,0): 34, 33, 39, (526,236,0): 34, 33, 39, (526,237,0): 34, 33, 39, (526,238,0): 34, 33, 39, (526,239,0): 33, 34, 39, (526,240,0): 33, 33, 43, (526,241,0): 31, 34, 43, (526,242,0): 32, 35, 44, (526,243,0): 32, 35, 44, (526,244,0): 35, 35, 45, (526,245,0): 35, 35, 45, (526,246,0): 35, 35, 47, (526,247,0): 36, 36, 48, (526,248,0): 37, 35, 49, (526,249,0): 37, 35, 49, (526,250,0): 39, 35, 52, (526,251,0): 39, 35, 52, (526,252,0): 40, 36, 53, (526,253,0): 40, 36, 53, (526,254,0): 42, 35, 53, (526,255,0): 41, 37, 54, (526,256,0): 43, 40, 59, (526,257,0): 42, 41, 59, (526,258,0): 43, 40, 57, (526,259,0): 44, 40, 57, (526,260,0): 47, 40, 58, (526,261,0): 47, 40, 58, (526,262,0): 48, 39, 56, (526,263,0): 48, 39, 56, (526,264,0): 54, 46, 61, (526,265,0): 54, 46, 61, (526,266,0): 54, 46, 61, (526,267,0): 54, 48, 62, (526,268,0): 52, 49, 60, (526,269,0): 51, 49, 60, (526,270,0): 51, 49, 60, (526,271,0): 51, 49, 60, (526,272,0): 52, 46, 58, (526,273,0): 53, 45, 58, (526,274,0): 54, 46, 59, (526,275,0): 55, 47, 60, (526,276,0): 58, 47, 61, (526,277,0): 59, 48, 62, (526,278,0): 60, 49, 63, (526,279,0): 61, 50, 64, (526,280,0): 65, 53, 67, (526,281,0): 65, 53, 67, (526,282,0): 66, 52, 67, (526,283,0): 67, 53, 68, (526,284,0): 68, 54, 69, (526,285,0): 71, 57, 72, (526,286,0): 75, 58, 74, (526,287,0): 77, 59, 73, (526,288,0): 83, 61, 74, (526,289,0): 84, 60, 73, (526,290,0): 87, 61, 72, (526,291,0): 88, 62, 73, (526,292,0): 89, 63, 74, (526,293,0): 90, 64, 75, (526,294,0): 92, 65, 74, (526,295,0): 92, 65, 74, (526,296,0): 94, 64, 72, (526,297,0): 94, 64, 72, (526,298,0): 94, 64, 72, (526,299,0): 94, 64, 72, (526,300,0): 95, 64, 70, (526,301,0): 95, 64, 70, (526,302,0): 95, 64, 70, (526,303,0): 95, 64, 70, (526,304,0): 96, 63, 74, (526,305,0): 99, 63, 75, (526,306,0): 101, 65, 75, (526,307,0): 104, 68, 78, (526,308,0): 110, 70, 81, (526,309,0): 113, 71, 83, (526,310,0): 118, 72, 85, (526,311,0): 122, 72, 84, (526,312,0): 134, 78, 91, (526,313,0): 147, 86, 94, (526,314,0): 165, 99, 100, (526,315,0): 183, 113, 105, (526,316,0): 202, 127, 108, (526,317,0): 216, 139, 111, (526,318,0): 229, 151, 113, (526,319,0): 232, 160, 120, (526,320,0): 237, 176, 147, (526,321,0): 226, 178, 155, (526,322,0): 209, 172, 156, (526,323,0): 187, 158, 152, (526,324,0): 169, 150, 154, (526,325,0): 158, 146, 160, (526,326,0): 148, 139, 160, (526,327,0): 141, 131, 156, (526,328,0): 143, 127, 153, (526,329,0): 132, 112, 137, (526,330,0): 113, 89, 111, (526,331,0): 95, 71, 87, (526,332,0): 81, 60, 69, (526,333,0): 70, 54, 57, (526,334,0): 65, 51, 51, (526,335,0): 60, 48, 48, (526,336,0): 54, 39, 42, (526,337,0): 51, 36, 41, (526,338,0): 47, 32, 37, (526,339,0): 45, 30, 35, (526,340,0): 44, 29, 36, (526,341,0): 42, 27, 34, (526,342,0): 37, 22, 29, (526,343,0): 34, 19, 26, (526,344,0): 33, 17, 27, (526,345,0): 33, 17, 27, (526,346,0): 32, 16, 27, (526,347,0): 31, 15, 26, (526,348,0): 30, 14, 25, (526,349,0): 29, 13, 24, (526,350,0): 28, 12, 25, (526,351,0): 28, 12, 25, (526,352,0): 27, 11, 22, (526,353,0): 27, 11, 22, (526,354,0): 27, 11, 22, (526,355,0): 27, 11, 22, (526,356,0): 27, 11, 22, (526,357,0): 27, 11, 22, (526,358,0): 27, 11, 22, (526,359,0): 27, 11, 22, (526,360,0): 26, 10, 21, (526,361,0): 26, 10, 21, (526,362,0): 26, 10, 21, (526,363,0): 25, 9, 20, (526,364,0): 25, 9, 20, (526,365,0): 24, 8, 19, (526,366,0): 24, 8, 19, (526,367,0): 21, 8, 18, (526,368,0): 19, 9, 17, (526,369,0): 16, 9, 16, (526,370,0): 15, 8, 15, (526,371,0): 14, 7, 14, (526,372,0): 13, 6, 13, (526,373,0): 13, 6, 13, (526,374,0): 14, 7, 14, (526,375,0): 15, 8, 15, (526,376,0): 15, 8, 15, (526,377,0): 15, 8, 15, (526,378,0): 15, 8, 15, (526,379,0): 15, 8, 15, (526,380,0): 15, 8, 15, (526,381,0): 15, 8, 15, (526,382,0): 15, 8, 15, (526,383,0): 15, 8, 15, (526,384,0): 14, 7, 15, (526,385,0): 14, 7, 15, (526,386,0): 14, 7, 15, (526,387,0): 14, 7, 15, (526,388,0): 14, 7, 15, (526,389,0): 14, 7, 14, (526,390,0): 15, 8, 15, (526,391,0): 15, 8, 15, (526,392,0): 15, 8, 15, (526,393,0): 16, 10, 14, (526,394,0): 16, 10, 14, (526,395,0): 17, 11, 13, (526,396,0): 17, 11, 13, (526,397,0): 18, 12, 14, (526,398,0): 18, 12, 14, (526,399,0): 20, 11, 12, (526,400,0): 24, 12, 16, (526,401,0): 26, 11, 16, (526,402,0): 26, 11, 16, (526,403,0): 26, 11, 16, (526,404,0): 26, 11, 16, (526,405,0): 26, 11, 16, (526,406,0): 26, 11, 16, (526,407,0): 26, 11, 16, (526,408,0): 26, 11, 16, (526,409,0): 26, 11, 16, (526,410,0): 26, 11, 16, (526,411,0): 26, 11, 16, (526,412,0): 26, 11, 16, (526,413,0): 26, 11, 16, (526,414,0): 26, 11, 16, (526,415,0): 26, 11, 16, (526,416,0): 26, 11, 16, (526,417,0): 26, 11, 16, (526,418,0): 26, 11, 16, (526,419,0): 26, 11, 16, (526,420,0): 26, 11, 16, (526,421,0): 26, 11, 16, (526,422,0): 26, 11, 16, (526,423,0): 26, 11, 16, (526,424,0): 26, 11, 16, (526,425,0): 28, 13, 18, (526,426,0): 29, 14, 19, (526,427,0): 31, 16, 21, (526,428,0): 32, 17, 22, (526,429,0): 33, 18, 23, (526,430,0): 32, 17, 22, (526,431,0): 33, 17, 20, (526,432,0): 35, 16, 20, (526,433,0): 37, 17, 19, (526,434,0): 38, 18, 20, (526,435,0): 38, 18, 20, (526,436,0): 38, 18, 20, (526,437,0): 36, 16, 18, (526,438,0): 34, 14, 16, (526,439,0): 33, 13, 15, (526,440,0): 36, 16, 18, (526,441,0): 35, 15, 17, (526,442,0): 34, 14, 16, (526,443,0): 33, 13, 15, (526,444,0): 32, 12, 14, (526,445,0): 31, 11, 13, (526,446,0): 30, 10, 12, (526,447,0): 30, 10, 12, (526,448,0): 33, 12, 19, (526,449,0): 33, 12, 19, (526,450,0): 33, 12, 19, (526,451,0): 33, 12, 19, (526,452,0): 32, 11, 18, (526,453,0): 32, 11, 18, (526,454,0): 32, 11, 18, (526,455,0): 32, 11, 18, (526,456,0): 31, 10, 17, (526,457,0): 31, 10, 17, (526,458,0): 32, 11, 18, (526,459,0): 32, 11, 18, (526,460,0): 33, 12, 19, (526,461,0): 33, 12, 19, (526,462,0): 34, 13, 20, (526,463,0): 33, 14, 18, (526,464,0): 33, 14, 18, (526,465,0): 32, 16, 17, (526,466,0): 37, 17, 19, (526,467,0): 39, 17, 20, (526,468,0): 42, 17, 21, (526,469,0): 44, 15, 20, (526,470,0): 44, 13, 19, (526,471,0): 45, 12, 19, (526,472,0): 46, 11, 18, (526,473,0): 44, 11, 18, (526,474,0): 42, 11, 17, (526,475,0): 42, 11, 17, (526,476,0): 40, 11, 16, (526,477,0): 38, 11, 16, (526,478,0): 36, 11, 15, (526,479,0): 34, 12, 15, (526,480,0): 31, 14, 20, (526,481,0): 30, 15, 20, (526,482,0): 30, 13, 19, (526,483,0): 31, 12, 18, (526,484,0): 31, 10, 19, (526,485,0): 30, 9, 18, (526,486,0): 29, 8, 17, (526,487,0): 29, 8, 17, (526,488,0): 24, 4, 15, (526,489,0): 21, 4, 14, (526,490,0): 17, 4, 14, (526,491,0): 14, 4, 13, (526,492,0): 10, 3, 11, (526,493,0): 5, 2, 9, (526,494,0): 3, 2, 10, (526,495,0): 4, 1, 10, (526,496,0): 8, 0, 13, (526,497,0): 12, 0, 14, (526,498,0): 12, 0, 14, (526,499,0): 13, 1, 15, (526,500,0): 15, 3, 17, (526,501,0): 16, 4, 18, (526,502,0): 17, 3, 18, (526,503,0): 18, 4, 19, (526,504,0): 20, 3, 19, (526,505,0): 21, 4, 20, (526,506,0): 24, 6, 22, (526,507,0): 25, 7, 23, (526,508,0): 26, 8, 24, (526,509,0): 25, 7, 23, (526,510,0): 24, 6, 22, (526,511,0): 25, 4, 19, (526,512,0): 32, 6, 17, (526,513,0): 35, 5, 15, (526,514,0): 36, 6, 16, (526,515,0): 36, 6, 16, (526,516,0): 35, 8, 17, (526,517,0): 36, 9, 16, (526,518,0): 36, 9, 16, (526,519,0): 37, 10, 17, (526,520,0): 34, 9, 15, (526,521,0): 35, 10, 14, (526,522,0): 38, 13, 17, (526,523,0): 40, 15, 18, (526,524,0): 39, 17, 19, (526,525,0): 40, 18, 20, (526,526,0): 39, 17, 19, (526,527,0): 41, 16, 19, (526,528,0): 46, 17, 22, (526,529,0): 49, 16, 25, (526,530,0): 52, 16, 26, (526,531,0): 51, 13, 24, (526,532,0): 48, 10, 21, (526,533,0): 49, 9, 20, (526,534,0): 51, 11, 22, (526,535,0): 53, 13, 24, (526,536,0): 50, 10, 21, (526,537,0): 49, 11, 22, (526,538,0): 49, 13, 23, (526,539,0): 47, 16, 24, (526,540,0): 44, 17, 24, (526,541,0): 41, 16, 22, (526,542,0): 38, 15, 21, (526,543,0): 37, 14, 20, (526,544,0): 34, 12, 15, (526,545,0): 34, 12, 15, (526,546,0): 33, 11, 14, (526,547,0): 33, 11, 14, (526,548,0): 34, 12, 15, (526,549,0): 36, 14, 17, (526,550,0): 38, 16, 19, (526,551,0): 39, 17, 20, (526,552,0): 32, 10, 13, (526,553,0): 32, 10, 13, (526,554,0): 32, 10, 13, (526,555,0): 33, 11, 14, (526,556,0): 33, 11, 14, (526,557,0): 33, 11, 14, (526,558,0): 33, 11, 14, (526,559,0): 33, 10, 16, (526,560,0): 32, 11, 20, (526,561,0): 31, 9, 21, (526,562,0): 29, 9, 20, (526,563,0): 28, 8, 19, (526,564,0): 28, 8, 19, (526,565,0): 29, 9, 20, (526,566,0): 28, 11, 21, (526,567,0): 29, 12, 22, (526,568,0): 28, 11, 21, (526,569,0): 28, 12, 22, (526,570,0): 28, 12, 22, (526,571,0): 29, 13, 23, (526,572,0): 27, 14, 23, (526,573,0): 28, 15, 24, (526,574,0): 28, 15, 24, (526,575,0): 28, 15, 22, (526,576,0): 31, 19, 21, (526,577,0): 31, 19, 19, (526,578,0): 30, 19, 23, (526,579,0): 30, 19, 25, (526,580,0): 29, 19, 27, (526,581,0): 27, 20, 28, (526,582,0): 29, 19, 30, (526,583,0): 30, 18, 32, (526,584,0): 28, 14, 29, (526,585,0): 29, 13, 26, (526,586,0): 31, 10, 25, (526,587,0): 32, 10, 23, (526,588,0): 36, 10, 23, (526,589,0): 39, 11, 23, (526,590,0): 43, 13, 23, (526,591,0): 45, 14, 22, (526,592,0): 53, 16, 24, (526,593,0): 53, 16, 23, (526,594,0): 48, 17, 25, (526,595,0): 43, 18, 24, (526,596,0): 39, 18, 27, (526,597,0): 36, 16, 25, (526,598,0): 34, 14, 26, (526,599,0): 31, 13, 25, (527,0,0): 41, 65, 75, (527,1,0): 41, 66, 73, (527,2,0): 41, 65, 75, (527,3,0): 41, 66, 73, (527,4,0): 41, 65, 75, (527,5,0): 41, 66, 73, (527,6,0): 41, 65, 75, (527,7,0): 41, 66, 73, (527,8,0): 42, 66, 76, (527,9,0): 43, 68, 75, (527,10,0): 43, 67, 77, (527,11,0): 44, 69, 76, (527,12,0): 44, 68, 78, (527,13,0): 45, 70, 77, (527,14,0): 45, 69, 79, (527,15,0): 45, 70, 77, (527,16,0): 43, 67, 77, (527,17,0): 43, 68, 75, (527,18,0): 43, 67, 77, (527,19,0): 44, 69, 76, (527,20,0): 44, 68, 78, (527,21,0): 45, 70, 77, (527,22,0): 45, 69, 79, (527,23,0): 46, 71, 78, (527,24,0): 47, 71, 81, (527,25,0): 48, 71, 79, (527,26,0): 49, 71, 82, (527,27,0): 49, 72, 80, (527,28,0): 50, 72, 83, (527,29,0): 50, 73, 81, (527,30,0): 51, 73, 84, (527,31,0): 51, 74, 82, (527,32,0): 51, 74, 82, (527,33,0): 51, 74, 82, (527,34,0): 54, 74, 83, (527,35,0): 54, 74, 83, (527,36,0): 55, 75, 84, (527,37,0): 55, 75, 84, (527,38,0): 57, 75, 85, (527,39,0): 57, 75, 85, (527,40,0): 58, 75, 85, (527,41,0): 58, 75, 83, (527,42,0): 59, 76, 84, (527,43,0): 59, 76, 84, (527,44,0): 62, 76, 85, (527,45,0): 62, 76, 85, (527,46,0): 63, 77, 86, (527,47,0): 63, 77, 86, (527,48,0): 65, 75, 85, (527,49,0): 65, 75, 85, (527,50,0): 66, 74, 85, (527,51,0): 67, 75, 86, (527,52,0): 67, 75, 86, (527,53,0): 68, 76, 87, (527,54,0): 68, 76, 87, (527,55,0): 69, 76, 86, (527,56,0): 70, 77, 87, (527,57,0): 70, 77, 87, (527,58,0): 70, 77, 85, (527,59,0): 71, 78, 86, (527,60,0): 73, 77, 86, (527,61,0): 74, 78, 87, (527,62,0): 74, 78, 87, (527,63,0): 74, 78, 87, (527,64,0): 72, 76, 85, (527,65,0): 70, 77, 85, (527,66,0): 73, 77, 88, (527,67,0): 74, 78, 87, (527,68,0): 75, 79, 88, (527,69,0): 77, 80, 89, (527,70,0): 78, 81, 88, (527,71,0): 78, 81, 88, (527,72,0): 79, 79, 87, (527,73,0): 80, 80, 88, (527,74,0): 81, 82, 87, (527,75,0): 83, 82, 88, (527,76,0): 84, 83, 89, (527,77,0): 85, 84, 89, (527,78,0): 86, 83, 90, (527,79,0): 87, 84, 91, (527,80,0): 90, 87, 96, (527,81,0): 89, 86, 95, (527,82,0): 88, 85, 94, (527,83,0): 87, 84, 93, (527,84,0): 88, 85, 94, (527,85,0): 90, 87, 96, (527,86,0): 92, 89, 98, (527,87,0): 93, 90, 99, (527,88,0): 91, 88, 97, (527,89,0): 89, 86, 95, (527,90,0): 85, 82, 91, (527,91,0): 81, 78, 87, (527,92,0): 82, 76, 86, (527,93,0): 82, 76, 86, (527,94,0): 84, 78, 88, (527,95,0): 86, 78, 89, (527,96,0): 92, 82, 93, (527,97,0): 93, 81, 91, (527,98,0): 92, 80, 90, (527,99,0): 90, 80, 89, (527,100,0): 89, 79, 88, (527,101,0): 89, 79, 87, (527,102,0): 88, 81, 88, (527,103,0): 88, 81, 88, (527,104,0): 87, 82, 88, (527,105,0): 85, 82, 89, (527,106,0): 83, 82, 88, (527,107,0): 82, 83, 88, (527,108,0): 79, 82, 89, (527,109,0): 78, 83, 89, (527,110,0): 75, 82, 88, (527,111,0): 75, 82, 90, (527,112,0): 76, 80, 89, (527,113,0): 77, 80, 89, (527,114,0): 76, 79, 88, (527,115,0): 74, 77, 86, (527,116,0): 73, 75, 87, (527,117,0): 72, 74, 86, (527,118,0): 70, 74, 86, (527,119,0): 69, 73, 85, (527,120,0): 73, 77, 89, (527,121,0): 69, 75, 87, (527,122,0): 66, 72, 84, (527,123,0): 64, 70, 84, (527,124,0): 65, 71, 85, (527,125,0): 67, 73, 87, (527,126,0): 70, 76, 90, (527,127,0): 72, 78, 92, (527,128,0): 72, 78, 92, (527,129,0): 74, 78, 90, (527,130,0): 73, 77, 89, (527,131,0): 72, 76, 88, (527,132,0): 70, 74, 85, (527,133,0): 67, 71, 82, (527,134,0): 66, 68, 80, (527,135,0): 64, 67, 76, (527,136,0): 67, 67, 77, (527,137,0): 63, 63, 71, (527,138,0): 59, 59, 67, (527,139,0): 58, 58, 66, (527,140,0): 60, 60, 68, (527,141,0): 63, 64, 69, (527,142,0): 65, 64, 70, (527,143,0): 65, 64, 69, (527,144,0): 63, 62, 67, (527,145,0): 62, 61, 66, (527,146,0): 59, 58, 63, (527,147,0): 57, 56, 61, (527,148,0): 55, 54, 59, (527,149,0): 55, 55, 57, (527,150,0): 55, 55, 57, (527,151,0): 55, 55, 57, (527,152,0): 53, 53, 55, (527,153,0): 54, 54, 56, (527,154,0): 54, 54, 56, (527,155,0): 54, 54, 56, (527,156,0): 54, 54, 56, (527,157,0): 54, 54, 54, (527,158,0): 55, 55, 55, (527,159,0): 55, 55, 55, (527,160,0): 53, 51, 52, (527,161,0): 53, 51, 52, (527,162,0): 54, 50, 51, (527,163,0): 53, 49, 50, (527,164,0): 52, 48, 49, (527,165,0): 52, 48, 47, (527,166,0): 51, 47, 48, (527,167,0): 51, 47, 46, (527,168,0): 51, 47, 46, (527,169,0): 51, 47, 46, (527,170,0): 51, 47, 46, (527,171,0): 50, 46, 45, (527,172,0): 50, 46, 45, (527,173,0): 49, 45, 44, (527,174,0): 49, 45, 44, (527,175,0): 50, 44, 44, (527,176,0): 53, 47, 47, (527,177,0): 51, 45, 47, (527,178,0): 49, 43, 45, (527,179,0): 47, 41, 43, (527,180,0): 46, 40, 42, (527,181,0): 45, 39, 41, (527,182,0): 45, 39, 41, (527,183,0): 46, 40, 42, (527,184,0): 46, 40, 42, (527,185,0): 46, 40, 44, (527,186,0): 46, 40, 44, (527,187,0): 46, 40, 44, (527,188,0): 46, 40, 44, (527,189,0): 46, 40, 44, (527,190,0): 46, 40, 44, (527,191,0): 46, 40, 44, (527,192,0): 41, 36, 42, (527,193,0): 41, 36, 42, (527,194,0): 40, 35, 41, (527,195,0): 40, 35, 41, (527,196,0): 39, 34, 40, (527,197,0): 39, 34, 40, (527,198,0): 38, 33, 39, (527,199,0): 38, 33, 39, (527,200,0): 38, 33, 39, (527,201,0): 38, 33, 39, (527,202,0): 38, 33, 39, (527,203,0): 38, 33, 39, (527,204,0): 38, 33, 39, (527,205,0): 38, 33, 39, (527,206,0): 38, 33, 39, (527,207,0): 38, 33, 39, (527,208,0): 33, 31, 36, (527,209,0): 32, 31, 36, (527,210,0): 33, 31, 36, (527,211,0): 32, 31, 36, (527,212,0): 33, 31, 36, (527,213,0): 32, 31, 36, (527,214,0): 33, 31, 36, (527,215,0): 32, 31, 36, (527,216,0): 35, 33, 38, (527,217,0): 34, 33, 38, (527,218,0): 35, 33, 38, (527,219,0): 34, 33, 38, (527,220,0): 35, 33, 38, (527,221,0): 34, 33, 38, (527,222,0): 35, 33, 38, (527,223,0): 34, 33, 38, (527,224,0): 34, 33, 39, (527,225,0): 33, 34, 39, (527,226,0): 34, 33, 39, (527,227,0): 33, 34, 39, (527,228,0): 34, 33, 39, (527,229,0): 33, 34, 39, (527,230,0): 34, 33, 39, (527,231,0): 33, 34, 39, (527,232,0): 34, 33, 39, (527,233,0): 33, 34, 39, (527,234,0): 34, 33, 39, (527,235,0): 33, 34, 39, (527,236,0): 34, 33, 39, (527,237,0): 33, 34, 39, (527,238,0): 34, 33, 39, (527,239,0): 33, 34, 39, (527,240,0): 33, 33, 43, (527,241,0): 33, 33, 43, (527,242,0): 33, 33, 43, (527,243,0): 34, 34, 44, (527,244,0): 35, 33, 44, (527,245,0): 36, 34, 45, (527,246,0): 36, 34, 47, (527,247,0): 37, 35, 48, (527,248,0): 37, 35, 48, (527,249,0): 38, 34, 49, (527,250,0): 38, 34, 49, (527,251,0): 39, 35, 50, (527,252,0): 39, 35, 50, (527,253,0): 40, 36, 51, (527,254,0): 42, 35, 51, (527,255,0): 41, 37, 52, (527,256,0): 43, 40, 57, (527,257,0): 43, 40, 57, (527,258,0): 43, 41, 55, (527,259,0): 44, 40, 55, (527,260,0): 46, 39, 55, (527,261,0): 46, 39, 55, (527,262,0): 47, 38, 55, (527,263,0): 47, 39, 54, (527,264,0): 53, 45, 60, (527,265,0): 54, 46, 61, (527,266,0): 54, 46, 61, (527,267,0): 53, 47, 61, (527,268,0): 53, 47, 59, (527,269,0): 52, 49, 60, (527,270,0): 52, 49, 60, (527,271,0): 52, 49, 60, (527,272,0): 53, 45, 58, (527,273,0): 55, 44, 58, (527,274,0): 56, 45, 61, (527,275,0): 57, 46, 60, (527,276,0): 58, 47, 61, (527,277,0): 59, 48, 62, (527,278,0): 60, 49, 63, (527,279,0): 60, 49, 63, (527,280,0): 65, 53, 67, (527,281,0): 65, 53, 67, (527,282,0): 66, 52, 67, (527,283,0): 66, 52, 67, (527,284,0): 70, 53, 69, (527,285,0): 72, 55, 71, (527,286,0): 76, 58, 74, (527,287,0): 79, 58, 73, (527,288,0): 82, 60, 73, (527,289,0): 84, 60, 73, (527,290,0): 87, 61, 74, (527,291,0): 88, 62, 73, (527,292,0): 90, 62, 74, (527,293,0): 91, 64, 73, (527,294,0): 93, 63, 71, (527,295,0): 94, 64, 72, (527,296,0): 95, 64, 70, (527,297,0): 95, 64, 70, (527,298,0): 95, 64, 70, (527,299,0): 95, 64, 70, (527,300,0): 95, 64, 70, (527,301,0): 95, 64, 70, (527,302,0): 95, 64, 70, (527,303,0): 95, 64, 72, (527,304,0): 95, 64, 72, (527,305,0): 97, 64, 75, (527,306,0): 100, 67, 76, (527,307,0): 105, 69, 79, (527,308,0): 108, 70, 81, (527,309,0): 114, 72, 82, (527,310,0): 118, 72, 83, (527,311,0): 122, 72, 83, (527,312,0): 134, 78, 87, (527,313,0): 147, 88, 92, (527,314,0): 167, 103, 101, (527,315,0): 186, 120, 108, (527,316,0): 201, 133, 112, (527,317,0): 214, 143, 113, (527,318,0): 223, 151, 113, (527,319,0): 223, 157, 122, (527,320,0): 231, 177, 151, (527,321,0): 220, 177, 160, (527,322,0): 204, 167, 158, (527,323,0): 180, 152, 151, (527,324,0): 163, 142, 151, (527,325,0): 155, 138, 156, (527,326,0): 146, 130, 156, (527,327,0): 139, 123, 150, (527,328,0): 145, 125, 153, (527,329,0): 131, 108, 136, (527,330,0): 110, 85, 107, (527,331,0): 90, 65, 84, (527,332,0): 77, 55, 67, (527,333,0): 70, 51, 55, (527,334,0): 65, 49, 50, (527,335,0): 62, 48, 48, (527,336,0): 54, 39, 42, (527,337,0): 51, 36, 41, (527,338,0): 48, 33, 38, (527,339,0): 46, 31, 36, (527,340,0): 45, 30, 37, (527,341,0): 42, 27, 34, (527,342,0): 38, 23, 30, (527,343,0): 34, 19, 26, (527,344,0): 33, 17, 27, (527,345,0): 32, 16, 26, (527,346,0): 32, 16, 27, (527,347,0): 29, 16, 26, (527,348,0): 30, 14, 25, (527,349,0): 27, 14, 24, (527,350,0): 28, 12, 25, (527,351,0): 27, 11, 24, (527,352,0): 27, 11, 22, (527,353,0): 27, 11, 22, (527,354,0): 27, 11, 22, (527,355,0): 27, 11, 22, (527,356,0): 27, 11, 22, (527,357,0): 27, 11, 22, (527,358,0): 27, 11, 22, (527,359,0): 27, 11, 22, (527,360,0): 27, 11, 22, (527,361,0): 27, 11, 22, (527,362,0): 26, 10, 21, (527,363,0): 26, 10, 21, (527,364,0): 25, 9, 20, (527,365,0): 25, 9, 20, (527,366,0): 24, 8, 19, (527,367,0): 22, 9, 19, (527,368,0): 20, 10, 18, (527,369,0): 17, 10, 17, (527,370,0): 15, 8, 15, (527,371,0): 14, 7, 14, (527,372,0): 13, 6, 13, (527,373,0): 14, 7, 14, (527,374,0): 14, 7, 14, (527,375,0): 15, 8, 15, (527,376,0): 15, 8, 15, (527,377,0): 15, 8, 15, (527,378,0): 15, 8, 15, (527,379,0): 15, 8, 15, (527,380,0): 15, 8, 15, (527,381,0): 15, 8, 15, (527,382,0): 15, 8, 15, (527,383,0): 15, 8, 15, (527,384,0): 13, 6, 14, (527,385,0): 13, 6, 14, (527,386,0): 15, 5, 14, (527,387,0): 14, 7, 15, (527,388,0): 16, 6, 14, (527,389,0): 14, 7, 14, (527,390,0): 16, 6, 14, (527,391,0): 14, 7, 14, (527,392,0): 17, 8, 13, (527,393,0): 15, 9, 13, (527,394,0): 18, 9, 14, (527,395,0): 16, 10, 12, (527,396,0): 19, 10, 15, (527,397,0): 17, 11, 13, (527,398,0): 20, 11, 14, (527,399,0): 20, 11, 14, (527,400,0): 25, 13, 17, (527,401,0): 27, 12, 17, (527,402,0): 27, 12, 17, (527,403,0): 27, 12, 17, (527,404,0): 27, 12, 17, (527,405,0): 27, 12, 17, (527,406,0): 27, 12, 17, (527,407,0): 27, 12, 17, (527,408,0): 26, 11, 16, (527,409,0): 26, 11, 16, (527,410,0): 26, 11, 16, (527,411,0): 26, 11, 16, (527,412,0): 26, 11, 16, (527,413,0): 26, 11, 16, (527,414,0): 26, 11, 16, (527,415,0): 26, 11, 16, (527,416,0): 26, 11, 16, (527,417,0): 26, 11, 16, (527,418,0): 26, 11, 16, (527,419,0): 26, 11, 16, (527,420,0): 26, 11, 16, (527,421,0): 26, 11, 16, (527,422,0): 26, 11, 16, (527,423,0): 26, 11, 16, (527,424,0): 25, 10, 15, (527,425,0): 26, 11, 16, (527,426,0): 28, 13, 18, (527,427,0): 30, 15, 20, (527,428,0): 31, 16, 21, (527,429,0): 31, 16, 21, (527,430,0): 31, 16, 21, (527,431,0): 31, 15, 18, (527,432,0): 35, 16, 20, (527,433,0): 37, 17, 19, (527,434,0): 39, 19, 21, (527,435,0): 39, 19, 21, (527,436,0): 39, 19, 21, (527,437,0): 37, 17, 19, (527,438,0): 35, 15, 17, (527,439,0): 33, 13, 15, (527,440,0): 35, 15, 17, (527,441,0): 35, 15, 17, (527,442,0): 34, 14, 16, (527,443,0): 33, 13, 15, (527,444,0): 32, 12, 14, (527,445,0): 31, 11, 13, (527,446,0): 30, 10, 12, (527,447,0): 30, 10, 12, (527,448,0): 35, 14, 19, (527,449,0): 34, 13, 18, (527,450,0): 34, 13, 20, (527,451,0): 33, 12, 17, (527,452,0): 32, 11, 18, (527,453,0): 31, 10, 15, (527,454,0): 31, 10, 17, (527,455,0): 30, 9, 14, (527,456,0): 31, 10, 17, (527,457,0): 31, 10, 15, (527,458,0): 32, 11, 18, (527,459,0): 32, 11, 16, (527,460,0): 33, 12, 19, (527,461,0): 33, 12, 17, (527,462,0): 34, 13, 20, (527,463,0): 34, 13, 18, (527,464,0): 34, 14, 16, (527,465,0): 35, 15, 17, (527,466,0): 38, 16, 19, (527,467,0): 40, 18, 21, (527,468,0): 42, 17, 21, (527,469,0): 43, 16, 21, (527,470,0): 43, 14, 19, (527,471,0): 42, 13, 18, (527,472,0): 42, 13, 18, (527,473,0): 41, 12, 17, (527,474,0): 39, 12, 17, (527,475,0): 38, 11, 16, (527,476,0): 37, 12, 16, (527,477,0): 36, 11, 15, (527,478,0): 34, 12, 15, (527,479,0): 33, 13, 15, (527,480,0): 33, 14, 20, (527,481,0): 30, 13, 19, (527,482,0): 30, 13, 19, (527,483,0): 31, 12, 18, (527,484,0): 30, 10, 19, (527,485,0): 30, 9, 18, (527,486,0): 29, 8, 17, (527,487,0): 27, 7, 16, (527,488,0): 24, 4, 15, (527,489,0): 21, 4, 14, (527,490,0): 17, 4, 14, (527,491,0): 14, 2, 12, (527,492,0): 12, 2, 11, (527,493,0): 8, 1, 9, (527,494,0): 4, 1, 10, (527,495,0): 5, 0, 9, (527,496,0): 11, 1, 12, (527,497,0): 12, 0, 12, (527,498,0): 13, 1, 15, (527,499,0): 14, 2, 14, (527,500,0): 15, 3, 17, (527,501,0): 16, 4, 16, (527,502,0): 18, 4, 19, (527,503,0): 19, 5, 18, (527,504,0): 20, 3, 19, (527,505,0): 22, 6, 19, (527,506,0): 25, 7, 23, (527,507,0): 26, 8, 22, (527,508,0): 27, 9, 25, (527,509,0): 26, 8, 22, (527,510,0): 25, 7, 23, (527,511,0): 26, 6, 18, (527,512,0): 33, 9, 22, (527,513,0): 35, 9, 18, (527,514,0): 34, 8, 19, (527,515,0): 34, 8, 17, (527,516,0): 34, 8, 17, (527,517,0): 33, 8, 14, (527,518,0): 33, 8, 14, (527,519,0): 33, 8, 14, (527,520,0): 33, 8, 14, (527,521,0): 35, 10, 14, (527,522,0): 38, 13, 17, (527,523,0): 41, 16, 19, (527,524,0): 43, 18, 21, (527,525,0): 43, 18, 21, (527,526,0): 43, 18, 21, (527,527,0): 44, 18, 21, (527,528,0): 48, 17, 23, (527,529,0): 50, 17, 26, (527,530,0): 51, 15, 25, (527,531,0): 48, 12, 22, (527,532,0): 46, 8, 19, (527,533,0): 46, 8, 19, (527,534,0): 48, 10, 21, (527,535,0): 51, 13, 24, (527,536,0): 48, 10, 21, (527,537,0): 48, 12, 22, (527,538,0): 47, 14, 23, (527,539,0): 46, 16, 26, (527,540,0): 43, 16, 25, (527,541,0): 40, 14, 23, (527,542,0): 36, 13, 21, (527,543,0): 34, 13, 18, (527,544,0): 37, 14, 20, (527,545,0): 36, 14, 17, (527,546,0): 35, 12, 18, (527,547,0): 34, 12, 15, (527,548,0): 34, 11, 17, (527,549,0): 35, 13, 16, (527,550,0): 36, 13, 19, (527,551,0): 36, 14, 17, (527,552,0): 31, 8, 14, (527,553,0): 32, 10, 13, (527,554,0): 32, 9, 15, (527,555,0): 32, 10, 13, (527,556,0): 32, 9, 15, (527,557,0): 33, 11, 14, (527,558,0): 33, 10, 16, (527,559,0): 32, 11, 16, (527,560,0): 33, 12, 21, (527,561,0): 31, 11, 22, (527,562,0): 29, 9, 20, (527,563,0): 28, 8, 19, (527,564,0): 28, 8, 19, (527,565,0): 27, 10, 20, (527,566,0): 29, 12, 22, (527,567,0): 29, 13, 23, (527,568,0): 27, 11, 21, (527,569,0): 27, 11, 21, (527,570,0): 28, 12, 22, (527,571,0): 26, 13, 22, (527,572,0): 27, 14, 23, (527,573,0): 27, 14, 23, (527,574,0): 28, 15, 24, (527,575,0): 28, 15, 22, (527,576,0): 30, 18, 20, (527,577,0): 29, 19, 20, (527,578,0): 30, 19, 23, (527,579,0): 29, 20, 25, (527,580,0): 27, 20, 27, (527,581,0): 27, 20, 28, (527,582,0): 30, 20, 31, (527,583,0): 31, 19, 31, (527,584,0): 31, 15, 28, (527,585,0): 31, 13, 27, (527,586,0): 32, 11, 26, (527,587,0): 32, 10, 23, (527,588,0): 34, 10, 23, (527,589,0): 34, 10, 23, (527,590,0): 34, 11, 21, (527,591,0): 33, 10, 18, (527,592,0): 41, 16, 20, (527,593,0): 41, 16, 20, (527,594,0): 40, 15, 21, (527,595,0): 38, 15, 23, (527,596,0): 38, 15, 23, (527,597,0): 38, 15, 25, (527,598,0): 41, 15, 28, (527,599,0): 41, 15, 28, (528,0,0): 38, 62, 74, (528,1,0): 38, 62, 72, (528,2,0): 39, 63, 75, (528,3,0): 39, 63, 73, (528,4,0): 40, 64, 76, (528,5,0): 40, 64, 74, (528,6,0): 41, 65, 77, (528,7,0): 41, 65, 75, (528,8,0): 43, 67, 79, (528,9,0): 43, 67, 77, (528,10,0): 43, 67, 79, (528,11,0): 43, 67, 77, (528,12,0): 43, 67, 79, (528,13,0): 43, 67, 77, (528,14,0): 43, 67, 79, (528,15,0): 43, 67, 77, (528,16,0): 47, 71, 83, (528,17,0): 46, 70, 80, (528,18,0): 44, 68, 80, (528,19,0): 43, 67, 77, (528,20,0): 44, 66, 79, (528,21,0): 45, 67, 78, (528,22,0): 47, 69, 82, (528,23,0): 48, 70, 81, (528,24,0): 48, 70, 83, (528,25,0): 50, 70, 81, (528,26,0): 51, 70, 84, (528,27,0): 51, 71, 82, (528,28,0): 52, 71, 85, (528,29,0): 52, 72, 83, (528,30,0): 54, 72, 86, (528,31,0): 53, 73, 84, (528,32,0): 53, 73, 82, (528,33,0): 51, 74, 82, (528,34,0): 52, 75, 83, (528,35,0): 52, 75, 83, (528,36,0): 55, 75, 84, (528,37,0): 55, 75, 84, (528,38,0): 57, 76, 83, (528,39,0): 57, 76, 83, (528,40,0): 56, 75, 82, (528,41,0): 56, 75, 81, (528,42,0): 57, 74, 81, (528,43,0): 58, 75, 82, (528,44,0): 60, 75, 82, (528,45,0): 61, 76, 83, (528,46,0): 61, 76, 83, (528,47,0): 62, 75, 83, (528,48,0): 67, 76, 85, (528,49,0): 68, 75, 85, (528,50,0): 69, 76, 86, (528,51,0): 69, 76, 86, (528,52,0): 70, 77, 87, (528,53,0): 70, 77, 87, (528,54,0): 71, 78, 88, (528,55,0): 73, 77, 86, (528,56,0): 73, 77, 86, (528,57,0): 73, 77, 86, (528,58,0): 73, 77, 86, (528,59,0): 73, 77, 86, (528,60,0): 73, 77, 86, (528,61,0): 73, 77, 86, (528,62,0): 73, 77, 86, (528,63,0): 73, 77, 86, (528,64,0): 73, 77, 88, (528,65,0): 73, 77, 88, (528,66,0): 75, 77, 90, (528,67,0): 75, 77, 89, (528,68,0): 76, 78, 90, (528,69,0): 78, 78, 90, (528,70,0): 79, 79, 91, (528,71,0): 79, 79, 91, (528,72,0): 80, 78, 91, (528,73,0): 81, 79, 92, (528,74,0): 81, 79, 92, (528,75,0): 83, 79, 93, (528,76,0): 84, 80, 94, (528,77,0): 85, 82, 93, (528,78,0): 88, 82, 96, (528,79,0): 87, 84, 95, (528,80,0): 87, 84, 95, (528,81,0): 87, 85, 96, (528,82,0): 87, 85, 96, (528,83,0): 88, 86, 97, (528,84,0): 90, 87, 98, (528,85,0): 91, 88, 99, (528,86,0): 92, 89, 100, (528,87,0): 93, 90, 101, (528,88,0): 93, 87, 99, (528,89,0): 93, 87, 99, (528,90,0): 93, 87, 99, (528,91,0): 93, 87, 99, (528,92,0): 92, 84, 97, (528,93,0): 90, 82, 95, (528,94,0): 88, 80, 93, (528,95,0): 87, 79, 92, (528,96,0): 88, 82, 96, (528,97,0): 86, 82, 96, (528,98,0): 86, 83, 94, (528,99,0): 87, 81, 93, (528,100,0): 87, 81, 91, (528,101,0): 88, 81, 89, (528,102,0): 88, 81, 89, (528,103,0): 88, 81, 89, (528,104,0): 88, 81, 89, (528,105,0): 86, 80, 90, (528,106,0): 83, 81, 92, (528,107,0): 82, 82, 94, (528,108,0): 80, 82, 95, (528,109,0): 79, 82, 97, (528,110,0): 76, 82, 98, (528,111,0): 76, 82, 98, (528,112,0): 80, 84, 96, (528,113,0): 80, 82, 94, (528,114,0): 79, 81, 93, (528,115,0): 78, 80, 92, (528,116,0): 77, 79, 91, (528,117,0): 75, 77, 89, (528,118,0): 74, 76, 88, (528,119,0): 74, 76, 88, (528,120,0): 72, 74, 86, (528,121,0): 70, 74, 85, (528,122,0): 69, 73, 84, (528,123,0): 69, 73, 85, (528,124,0): 69, 73, 85, (528,125,0): 70, 74, 86, (528,126,0): 72, 76, 88, (528,127,0): 72, 76, 88, (528,128,0): 76, 79, 94, (528,129,0): 75, 77, 92, (528,130,0): 72, 74, 87, (528,131,0): 69, 71, 84, (528,132,0): 67, 69, 82, (528,133,0): 66, 68, 80, (528,134,0): 65, 67, 79, (528,135,0): 65, 68, 77, (528,136,0): 64, 67, 76, (528,137,0): 64, 67, 74, (528,138,0): 64, 67, 74, (528,139,0): 64, 67, 72, (528,140,0): 64, 67, 72, (528,141,0): 64, 68, 71, (528,142,0): 66, 67, 71, (528,143,0): 66, 67, 72, (528,144,0): 63, 61, 72, (528,145,0): 63, 61, 74, (528,146,0): 63, 61, 72, (528,147,0): 63, 61, 72, (528,148,0): 61, 59, 70, (528,149,0): 59, 58, 66, (528,150,0): 57, 56, 64, (528,151,0): 56, 55, 63, (528,152,0): 57, 56, 62, (528,153,0): 56, 55, 61, (528,154,0): 55, 54, 59, (528,155,0): 55, 54, 59, (528,156,0): 55, 54, 59, (528,157,0): 56, 56, 58, (528,158,0): 58, 58, 60, (528,159,0): 58, 58, 60, (528,160,0): 57, 56, 62, (528,161,0): 57, 56, 62, (528,162,0): 57, 54, 61, (528,163,0): 56, 53, 60, (528,164,0): 55, 52, 59, (528,165,0): 54, 52, 57, (528,166,0): 53, 50, 57, (528,167,0): 53, 51, 56, (528,168,0): 55, 50, 56, (528,169,0): 54, 49, 55, (528,170,0): 55, 49, 53, (528,171,0): 55, 49, 53, (528,172,0): 54, 48, 52, (528,173,0): 53, 47, 51, (528,174,0): 53, 47, 49, (528,175,0): 55, 46, 49, (528,176,0): 53, 44, 45, (528,177,0): 53, 44, 45, (528,178,0): 53, 44, 45, (528,179,0): 52, 43, 44, (528,180,0): 51, 42, 45, (528,181,0): 51, 42, 45, (528,182,0): 51, 42, 47, (528,183,0): 50, 41, 46, (528,184,0): 49, 40, 45, (528,185,0): 49, 39, 47, (528,186,0): 49, 39, 47, (528,187,0): 49, 39, 47, (528,188,0): 49, 39, 48, (528,189,0): 49, 39, 48, (528,190,0): 49, 39, 50, (528,191,0): 49, 39, 48, (528,192,0): 42, 35, 42, (528,193,0): 42, 35, 42, (528,194,0): 42, 35, 42, (528,195,0): 42, 35, 42, (528,196,0): 43, 36, 43, (528,197,0): 43, 36, 43, (528,198,0): 43, 36, 43, (528,199,0): 43, 36, 43, (528,200,0): 42, 35, 42, (528,201,0): 42, 35, 42, (528,202,0): 41, 34, 41, (528,203,0): 41, 34, 41, (528,204,0): 40, 33, 40, (528,205,0): 40, 33, 40, (528,206,0): 39, 32, 39, (528,207,0): 38, 33, 39, (528,208,0): 39, 34, 41, (528,209,0): 37, 34, 41, (528,210,0): 39, 34, 41, (528,211,0): 36, 33, 40, (528,212,0): 38, 33, 40, (528,213,0): 35, 32, 39, (528,214,0): 37, 32, 39, (528,215,0): 35, 32, 39, (528,216,0): 35, 30, 37, (528,217,0): 33, 30, 37, (528,218,0): 35, 30, 37, (528,219,0): 33, 30, 37, (528,220,0): 35, 30, 37, (528,221,0): 33, 30, 37, (528,222,0): 35, 30, 37, (528,223,0): 33, 30, 37, (528,224,0): 32, 33, 38, (528,225,0): 30, 33, 38, (528,226,0): 31, 32, 37, (528,227,0): 28, 31, 36, (528,228,0): 30, 31, 36, (528,229,0): 29, 32, 37, (528,230,0): 32, 33, 38, (528,231,0): 30, 33, 38, (528,232,0): 33, 34, 39, (528,233,0): 31, 34, 39, (528,234,0): 33, 34, 39, (528,235,0): 31, 34, 39, (528,236,0): 33, 34, 39, (528,237,0): 31, 34, 39, (528,238,0): 33, 34, 39, (528,239,0): 33, 34, 39, (528,240,0): 34, 32, 43, (528,241,0): 35, 32, 43, (528,242,0): 35, 32, 43, (528,243,0): 36, 33, 44, (528,244,0): 36, 33, 44, (528,245,0): 37, 34, 45, (528,246,0): 37, 34, 45, (528,247,0): 38, 35, 46, (528,248,0): 41, 38, 49, (528,249,0): 43, 37, 51, (528,250,0): 43, 37, 51, (528,251,0): 43, 37, 51, (528,252,0): 43, 37, 51, (528,253,0): 43, 37, 51, (528,254,0): 43, 37, 51, (528,255,0): 43, 37, 51, (528,256,0): 39, 35, 49, (528,257,0): 40, 36, 50, (528,258,0): 41, 37, 51, (528,259,0): 44, 38, 52, (528,260,0): 45, 39, 53, (528,261,0): 46, 40, 54, (528,262,0): 47, 39, 54, (528,263,0): 48, 40, 53, (528,264,0): 53, 42, 56, (528,265,0): 54, 43, 57, (528,266,0): 54, 43, 57, (528,267,0): 55, 44, 58, (528,268,0): 57, 46, 60, (528,269,0): 58, 47, 61, (528,270,0): 58, 47, 61, (528,271,0): 59, 48, 62, (528,272,0): 57, 44, 61, (528,273,0): 58, 44, 61, (528,274,0): 58, 45, 63, (528,275,0): 58, 45, 62, (528,276,0): 59, 46, 63, (528,277,0): 59, 46, 63, (528,278,0): 59, 48, 64, (528,279,0): 59, 48, 64, (528,280,0): 65, 53, 67, (528,281,0): 65, 53, 67, (528,282,0): 66, 52, 65, (528,283,0): 68, 52, 65, (528,284,0): 71, 53, 67, (528,285,0): 75, 54, 69, (528,286,0): 79, 56, 72, (528,287,0): 80, 58, 71, (528,288,0): 82, 59, 75, (528,289,0): 83, 59, 73, (528,290,0): 86, 60, 73, (528,291,0): 88, 60, 72, (528,292,0): 91, 61, 71, (528,293,0): 93, 62, 68, (528,294,0): 95, 63, 68, (528,295,0): 96, 64, 69, (528,296,0): 100, 65, 69, (528,297,0): 99, 64, 68, (528,298,0): 96, 64, 69, (528,299,0): 95, 63, 68, (528,300,0): 94, 63, 69, (528,301,0): 94, 63, 69, (528,302,0): 94, 64, 72, (528,303,0): 93, 66, 73, (528,304,0): 90, 63, 70, (528,305,0): 93, 66, 73, (528,306,0): 98, 68, 76, (528,307,0): 102, 69, 78, (528,308,0): 106, 69, 77, (528,309,0): 112, 71, 79, (528,310,0): 121, 74, 82, (528,311,0): 128, 77, 82, (528,312,0): 141, 86, 89, (528,313,0): 156, 98, 96, (528,314,0): 174, 116, 105, (528,315,0): 188, 129, 111, (528,316,0): 193, 135, 111, (528,317,0): 199, 140, 110, (528,318,0): 206, 148, 111, (528,319,0): 210, 157, 125, (528,320,0): 214, 173, 153, (528,321,0): 210, 176, 166, (528,322,0): 198, 167, 164, (528,323,0): 180, 149, 154, (528,324,0): 164, 136, 150, (528,325,0): 158, 130, 152, (528,326,0): 149, 123, 150, (528,327,0): 142, 115, 146, (528,328,0): 144, 117, 148, (528,329,0): 126, 97, 127, (528,330,0): 100, 72, 97, (528,331,0): 80, 55, 74, (528,332,0): 73, 49, 62, (528,333,0): 70, 49, 56, (528,334,0): 64, 44, 46, (528,335,0): 58, 39, 41, (528,336,0): 55, 39, 42, (528,337,0): 55, 38, 44, (528,338,0): 53, 36, 42, (528,339,0): 50, 33, 39, (528,340,0): 45, 28, 36, (528,341,0): 40, 23, 31, (528,342,0): 34, 19, 26, (528,343,0): 31, 16, 23, (528,344,0): 29, 16, 25, (528,345,0): 29, 16, 25, (528,346,0): 29, 16, 26, (528,347,0): 27, 15, 25, (528,348,0): 28, 15, 25, (528,349,0): 26, 14, 24, (528,350,0): 27, 13, 26, (528,351,0): 26, 12, 25, (528,352,0): 26, 10, 21, (528,353,0): 26, 10, 20, (528,354,0): 26, 10, 20, (528,355,0): 26, 10, 20, (528,356,0): 26, 10, 20, (528,357,0): 26, 10, 20, (528,358,0): 26, 10, 20, (528,359,0): 26, 10, 20, (528,360,0): 25, 9, 19, (528,361,0): 25, 9, 19, (528,362,0): 25, 9, 19, (528,363,0): 24, 8, 18, (528,364,0): 24, 8, 18, (528,365,0): 23, 7, 17, (528,366,0): 23, 7, 17, (528,367,0): 21, 8, 17, (528,368,0): 20, 10, 18, (528,369,0): 17, 10, 17, (528,370,0): 15, 8, 15, (528,371,0): 14, 7, 14, (528,372,0): 13, 6, 13, (528,373,0): 14, 7, 14, (528,374,0): 14, 7, 14, (528,375,0): 15, 8, 15, (528,376,0): 15, 8, 15, (528,377,0): 15, 8, 15, (528,378,0): 15, 8, 15, (528,379,0): 15, 8, 15, (528,380,0): 15, 8, 15, (528,381,0): 15, 8, 15, (528,382,0): 15, 8, 15, (528,383,0): 15, 8, 15, (528,384,0): 16, 6, 14, (528,385,0): 16, 6, 14, (528,386,0): 17, 6, 14, (528,387,0): 16, 6, 14, (528,388,0): 17, 6, 14, (528,389,0): 16, 6, 14, (528,390,0): 17, 6, 14, (528,391,0): 16, 6, 14, (528,392,0): 17, 6, 14, (528,393,0): 17, 7, 15, (528,394,0): 19, 8, 16, (528,395,0): 20, 11, 16, (528,396,0): 21, 10, 18, (528,397,0): 20, 11, 16, (528,398,0): 20, 9, 15, (528,399,0): 20, 9, 15, (528,400,0): 24, 12, 16, (528,401,0): 25, 10, 15, (528,402,0): 23, 8, 13, (528,403,0): 22, 7, 12, (528,404,0): 22, 7, 12, (528,405,0): 23, 8, 13, (528,406,0): 25, 10, 15, (528,407,0): 26, 11, 16, (528,408,0): 24, 9, 14, (528,409,0): 25, 10, 15, (528,410,0): 25, 10, 15, (528,411,0): 25, 10, 15, (528,412,0): 26, 11, 16, (528,413,0): 26, 11, 16, (528,414,0): 27, 12, 17, (528,415,0): 27, 12, 17, (528,416,0): 26, 11, 16, (528,417,0): 26, 11, 16, (528,418,0): 26, 11, 16, (528,419,0): 27, 12, 17, (528,420,0): 27, 12, 17, (528,421,0): 27, 12, 17, (528,422,0): 28, 13, 18, (528,423,0): 28, 13, 18, (528,424,0): 27, 12, 17, (528,425,0): 27, 12, 17, (528,426,0): 27, 12, 17, (528,427,0): 27, 12, 17, (528,428,0): 27, 12, 17, (528,429,0): 27, 12, 17, (528,430,0): 27, 12, 17, (528,431,0): 28, 12, 15, (528,432,0): 30, 11, 15, (528,433,0): 32, 12, 14, (528,434,0): 34, 14, 16, (528,435,0): 35, 15, 17, (528,436,0): 35, 15, 17, (528,437,0): 35, 15, 17, (528,438,0): 35, 15, 17, (528,439,0): 34, 14, 16, (528,440,0): 35, 15, 17, (528,441,0): 35, 15, 17, (528,442,0): 35, 15, 17, (528,443,0): 34, 14, 16, (528,444,0): 34, 14, 16, (528,445,0): 33, 13, 15, (528,446,0): 33, 13, 15, (528,447,0): 32, 12, 14, (528,448,0): 33, 13, 15, (528,449,0): 33, 13, 15, (528,450,0): 33, 12, 17, (528,451,0): 33, 13, 15, (528,452,0): 33, 12, 17, (528,453,0): 33, 13, 15, (528,454,0): 33, 12, 17, (528,455,0): 33, 13, 15, (528,456,0): 32, 11, 16, (528,457,0): 31, 11, 13, (528,458,0): 30, 9, 14, (528,459,0): 30, 10, 12, (528,460,0): 31, 10, 15, (528,461,0): 34, 14, 16, (528,462,0): 36, 15, 20, (528,463,0): 39, 17, 20, (528,464,0): 41, 16, 20, (528,465,0): 43, 16, 21, (528,466,0): 43, 16, 21, (528,467,0): 42, 17, 21, (528,468,0): 41, 16, 20, (528,469,0): 37, 15, 18, (528,470,0): 34, 14, 16, (528,471,0): 33, 13, 15, (528,472,0): 30, 10, 12, (528,473,0): 28, 9, 11, (528,474,0): 28, 9, 11, (528,475,0): 28, 9, 11, (528,476,0): 29, 10, 12, (528,477,0): 31, 12, 14, (528,478,0): 33, 14, 16, (528,479,0): 34, 15, 17, (528,480,0): 31, 12, 18, (528,481,0): 31, 12, 18, (528,482,0): 30, 11, 17, (528,483,0): 29, 10, 16, (528,484,0): 28, 8, 17, (528,485,0): 27, 7, 16, (528,486,0): 26, 6, 17, (528,487,0): 26, 6, 17, (528,488,0): 24, 4, 15, (528,489,0): 22, 5, 15, (528,490,0): 20, 4, 15, (528,491,0): 17, 4, 14, (528,492,0): 16, 2, 15, (528,493,0): 14, 2, 14, (528,494,0): 13, 1, 13, (528,495,0): 11, 1, 12, (528,496,0): 15, 3, 15, (528,497,0): 15, 3, 13, (528,498,0): 16, 4, 16, (528,499,0): 16, 4, 14, (528,500,0): 17, 5, 17, (528,501,0): 17, 5, 15, (528,502,0): 19, 5, 18, (528,503,0): 19, 6, 16, (528,504,0): 22, 6, 19, (528,505,0): 24, 8, 19, (528,506,0): 27, 9, 23, (528,507,0): 29, 11, 23, (528,508,0): 28, 10, 24, (528,509,0): 26, 8, 20, (528,510,0): 22, 4, 18, (528,511,0): 20, 2, 14, (528,512,0): 21, 5, 15, (528,513,0): 22, 7, 14, (528,514,0): 23, 7, 17, (528,515,0): 25, 8, 16, (528,516,0): 27, 10, 18, (528,517,0): 31, 12, 18, (528,518,0): 33, 12, 19, (528,519,0): 33, 12, 19, (528,520,0): 33, 10, 18, (528,521,0): 36, 11, 17, (528,522,0): 37, 12, 18, (528,523,0): 39, 12, 17, (528,524,0): 40, 13, 18, (528,525,0): 41, 14, 19, (528,526,0): 44, 15, 20, (528,527,0): 44, 15, 20, (528,528,0): 50, 19, 25, (528,529,0): 48, 17, 23, (528,530,0): 47, 14, 21, (528,531,0): 45, 12, 19, (528,532,0): 43, 12, 20, (528,533,0): 43, 12, 20, (528,534,0): 44, 12, 23, (528,535,0): 44, 12, 23, (528,536,0): 40, 8, 19, (528,537,0): 39, 9, 19, (528,538,0): 38, 11, 20, (528,539,0): 39, 11, 23, (528,540,0): 39, 13, 24, (528,541,0): 39, 13, 24, (528,542,0): 38, 15, 25, (528,543,0): 38, 15, 25, (528,544,0): 34, 13, 20, (528,545,0): 34, 13, 18, (528,546,0): 34, 13, 20, (528,547,0): 33, 12, 17, (528,548,0): 32, 11, 18, (528,549,0): 31, 10, 15, (528,550,0): 30, 9, 16, (528,551,0): 30, 9, 14, (528,552,0): 36, 15, 22, (528,553,0): 36, 15, 20, (528,554,0): 35, 14, 21, (528,555,0): 34, 13, 18, (528,556,0): 33, 12, 19, (528,557,0): 32, 11, 16, (528,558,0): 32, 11, 18, (528,559,0): 32, 11, 18, (528,560,0): 30, 10, 19, (528,561,0): 28, 11, 21, (528,562,0): 27, 10, 20, (528,563,0): 27, 10, 20, (528,564,0): 26, 9, 19, (528,565,0): 26, 9, 19, (528,566,0): 25, 8, 18, (528,567,0): 24, 8, 18, (528,568,0): 24, 8, 18, (528,569,0): 22, 9, 18, (528,570,0): 23, 10, 19, (528,571,0): 22, 11, 19, (528,572,0): 23, 12, 20, (528,573,0): 23, 12, 20, (528,574,0): 24, 13, 21, (528,575,0): 24, 13, 21, (528,576,0): 30, 19, 25, (528,577,0): 30, 19, 25, (528,578,0): 30, 19, 25, (528,579,0): 30, 19, 27, (528,580,0): 29, 19, 27, (528,581,0): 29, 19, 27, (528,582,0): 30, 18, 28, (528,583,0): 30, 18, 28, (528,584,0): 29, 16, 26, (528,585,0): 29, 16, 26, (528,586,0): 29, 16, 26, (528,587,0): 30, 14, 24, (528,588,0): 30, 14, 24, (528,589,0): 29, 13, 23, (528,590,0): 29, 13, 23, (528,591,0): 30, 13, 21, (528,592,0): 37, 18, 24, (528,593,0): 35, 14, 19, (528,594,0): 35, 12, 20, (528,595,0): 40, 13, 22, (528,596,0): 47, 15, 26, (528,597,0): 53, 17, 29, (528,598,0): 54, 13, 29, (528,599,0): 53, 10, 27, (529,0,0): 38, 62, 74, (529,1,0): 38, 62, 74, (529,2,0): 39, 63, 75, (529,3,0): 39, 63, 75, (529,4,0): 40, 64, 76, (529,5,0): 40, 64, 76, (529,6,0): 41, 65, 77, (529,7,0): 41, 65, 77, (529,8,0): 43, 67, 79, (529,9,0): 43, 67, 79, (529,10,0): 43, 67, 79, (529,11,0): 43, 67, 79, (529,12,0): 43, 67, 79, (529,13,0): 43, 67, 79, (529,14,0): 43, 67, 79, (529,15,0): 43, 67, 79, (529,16,0): 46, 70, 82, (529,17,0): 46, 70, 82, (529,18,0): 45, 69, 81, (529,19,0): 44, 68, 80, (529,20,0): 45, 67, 80, (529,21,0): 46, 68, 81, (529,22,0): 47, 69, 82, (529,23,0): 47, 69, 82, (529,24,0): 50, 69, 83, (529,25,0): 50, 69, 83, (529,26,0): 51, 69, 83, (529,27,0): 52, 70, 84, (529,28,0): 52, 70, 84, (529,29,0): 53, 71, 85, (529,30,0): 54, 70, 85, (529,31,0): 54, 72, 84, (529,32,0): 53, 73, 84, (529,33,0): 51, 74, 82, (529,34,0): 51, 74, 82, (529,35,0): 52, 75, 83, (529,36,0): 54, 74, 83, (529,37,0): 55, 75, 84, (529,38,0): 56, 75, 82, (529,39,0): 57, 76, 83, (529,40,0): 56, 75, 81, (529,41,0): 56, 75, 81, (529,42,0): 57, 75, 79, (529,43,0): 58, 76, 80, (529,44,0): 60, 75, 80, (529,45,0): 61, 76, 81, (529,46,0): 61, 76, 81, (529,47,0): 62, 75, 81, (529,48,0): 68, 75, 83, (529,49,0): 70, 74, 83, (529,50,0): 70, 74, 83, (529,51,0): 71, 75, 84, (529,52,0): 71, 75, 84, (529,53,0): 72, 76, 85, (529,54,0): 72, 76, 85, (529,55,0): 73, 77, 86, (529,56,0): 73, 77, 86, (529,57,0): 73, 77, 86, (529,58,0): 73, 77, 86, (529,59,0): 73, 77, 86, (529,60,0): 73, 77, 86, (529,61,0): 73, 77, 86, (529,62,0): 73, 77, 86, (529,63,0): 73, 77, 86, (529,64,0): 74, 76, 89, (529,65,0): 74, 76, 89, (529,66,0): 74, 76, 89, (529,67,0): 75, 77, 90, (529,68,0): 77, 76, 90, (529,69,0): 78, 77, 91, (529,70,0): 79, 77, 91, (529,71,0): 80, 78, 92, (529,72,0): 80, 78, 92, (529,73,0): 80, 78, 92, (529,74,0): 82, 78, 93, (529,75,0): 83, 79, 94, (529,76,0): 86, 79, 95, (529,77,0): 87, 80, 96, (529,78,0): 88, 81, 97, (529,79,0): 86, 82, 96, (529,80,0): 87, 83, 97, (529,81,0): 86, 84, 95, (529,82,0): 87, 85, 96, (529,83,0): 88, 86, 97, (529,84,0): 90, 87, 98, (529,85,0): 91, 88, 99, (529,86,0): 92, 89, 100, (529,87,0): 92, 89, 100, (529,88,0): 93, 87, 99, (529,89,0): 93, 87, 99, (529,90,0): 94, 86, 99, (529,91,0): 94, 86, 99, (529,92,0): 92, 84, 97, (529,93,0): 91, 83, 96, (529,94,0): 91, 80, 94, (529,95,0): 87, 79, 94, (529,96,0): 84, 82, 96, (529,97,0): 83, 82, 96, (529,98,0): 84, 82, 95, (529,99,0): 84, 81, 92, (529,100,0): 86, 80, 90, (529,101,0): 86, 80, 90, (529,102,0): 86, 79, 87, (529,103,0): 86, 79, 87, (529,104,0): 86, 78, 89, (529,105,0): 85, 79, 89, (529,106,0): 83, 80, 91, (529,107,0): 81, 80, 94, (529,108,0): 79, 80, 98, (529,109,0): 79, 82, 101, (529,110,0): 77, 82, 102, (529,111,0): 77, 82, 101, (529,112,0): 80, 83, 98, (529,113,0): 81, 83, 96, (529,114,0): 80, 82, 95, (529,115,0): 79, 81, 94, (529,116,0): 78, 80, 93, (529,117,0): 76, 78, 91, (529,118,0): 76, 78, 91, (529,119,0): 75, 77, 90, (529,120,0): 73, 75, 88, (529,121,0): 73, 75, 88, (529,122,0): 72, 74, 87, (529,123,0): 71, 73, 86, (529,124,0): 71, 73, 86, (529,125,0): 72, 74, 87, (529,126,0): 74, 76, 89, (529,127,0): 74, 76, 89, (529,128,0): 76, 78, 93, (529,129,0): 74, 76, 91, (529,130,0): 72, 74, 87, (529,131,0): 69, 71, 84, (529,132,0): 67, 69, 82, (529,133,0): 66, 68, 80, (529,134,0): 65, 68, 77, (529,135,0): 65, 68, 77, (529,136,0): 65, 68, 75, (529,137,0): 65, 68, 75, (529,138,0): 65, 68, 73, (529,139,0): 65, 68, 73, (529,140,0): 65, 69, 72, (529,141,0): 65, 69, 72, (529,142,0): 65, 69, 70, (529,143,0): 67, 68, 73, (529,144,0): 66, 64, 77, (529,145,0): 66, 63, 80, (529,146,0): 66, 64, 78, (529,147,0): 66, 64, 78, (529,148,0): 65, 63, 76, (529,149,0): 63, 61, 74, (529,150,0): 61, 59, 70, (529,151,0): 60, 58, 69, (529,152,0): 58, 57, 65, (529,153,0): 57, 56, 64, (529,154,0): 56, 55, 61, (529,155,0): 55, 54, 60, (529,156,0): 55, 54, 59, (529,157,0): 56, 55, 60, (529,158,0): 58, 58, 60, (529,159,0): 58, 57, 62, (529,160,0): 59, 58, 66, (529,161,0): 58, 56, 67, (529,162,0): 58, 56, 67, (529,163,0): 57, 56, 64, (529,164,0): 57, 54, 63, (529,165,0): 56, 53, 62, (529,166,0): 55, 52, 61, (529,167,0): 54, 51, 58, (529,168,0): 55, 50, 57, (529,169,0): 55, 50, 56, (529,170,0): 55, 48, 55, (529,171,0): 55, 48, 55, (529,172,0): 54, 47, 54, (529,173,0): 54, 48, 52, (529,174,0): 55, 46, 51, (529,175,0): 55, 46, 49, (529,176,0): 54, 44, 45, (529,177,0): 54, 44, 43, (529,178,0): 54, 44, 45, (529,179,0): 53, 43, 44, (529,180,0): 53, 42, 46, (529,181,0): 52, 41, 45, (529,182,0): 52, 41, 47, (529,183,0): 51, 40, 46, (529,184,0): 52, 41, 49, (529,185,0): 52, 41, 49, (529,186,0): 52, 40, 50, (529,187,0): 52, 40, 50, (529,188,0): 52, 40, 52, (529,189,0): 52, 40, 52, (529,190,0): 52, 40, 54, (529,191,0): 51, 41, 52, (529,192,0): 44, 34, 43, (529,193,0): 42, 35, 42, (529,194,0): 42, 35, 42, (529,195,0): 43, 36, 43, (529,196,0): 43, 36, 43, (529,197,0): 43, 36, 43, (529,198,0): 43, 36, 43, (529,199,0): 43, 36, 43, (529,200,0): 42, 35, 42, (529,201,0): 42, 35, 42, (529,202,0): 41, 34, 41, (529,203,0): 41, 34, 41, (529,204,0): 40, 33, 40, (529,205,0): 40, 33, 40, (529,206,0): 39, 32, 39, (529,207,0): 39, 32, 39, (529,208,0): 39, 34, 41, (529,209,0): 39, 34, 41, (529,210,0): 38, 33, 40, (529,211,0): 38, 33, 40, (529,212,0): 37, 32, 39, (529,213,0): 37, 32, 39, (529,214,0): 37, 32, 39, (529,215,0): 36, 31, 38, (529,216,0): 35, 30, 37, (529,217,0): 35, 30, 37, (529,218,0): 35, 30, 37, (529,219,0): 35, 30, 37, (529,220,0): 35, 30, 37, (529,221,0): 35, 30, 37, (529,222,0): 35, 30, 37, (529,223,0): 33, 30, 37, (529,224,0): 33, 34, 39, (529,225,0): 30, 33, 38, (529,226,0): 29, 32, 37, (529,227,0): 28, 31, 36, (529,228,0): 28, 31, 36, (529,229,0): 29, 32, 37, (529,230,0): 30, 33, 38, (529,231,0): 31, 34, 39, (529,232,0): 31, 34, 39, (529,233,0): 31, 34, 39, (529,234,0): 31, 34, 39, (529,235,0): 31, 34, 39, (529,236,0): 31, 34, 39, (529,237,0): 31, 34, 39, (529,238,0): 31, 34, 39, (529,239,0): 33, 34, 39, (529,240,0): 35, 32, 43, (529,241,0): 37, 31, 43, (529,242,0): 38, 32, 44, (529,243,0): 38, 32, 44, (529,244,0): 39, 33, 45, (529,245,0): 39, 33, 45, (529,246,0): 39, 33, 45, (529,247,0): 40, 34, 46, (529,248,0): 43, 37, 49, (529,249,0): 43, 37, 49, (529,250,0): 43, 37, 49, (529,251,0): 43, 37, 49, (529,252,0): 43, 37, 49, (529,253,0): 43, 37, 49, (529,254,0): 43, 37, 49, (529,255,0): 43, 37, 49, (529,256,0): 40, 37, 48, (529,257,0): 40, 37, 48, (529,258,0): 43, 37, 49, (529,259,0): 44, 38, 50, (529,260,0): 45, 39, 51, (529,261,0): 46, 40, 52, (529,262,0): 48, 40, 53, (529,263,0): 48, 40, 53, (529,264,0): 53, 42, 56, (529,265,0): 54, 43, 57, (529,266,0): 54, 43, 57, (529,267,0): 55, 44, 58, (529,268,0): 58, 46, 60, (529,269,0): 59, 47, 61, (529,270,0): 59, 47, 61, (529,271,0): 61, 47, 62, (529,272,0): 60, 43, 62, (529,273,0): 61, 44, 63, (529,274,0): 59, 44, 63, (529,275,0): 60, 45, 64, (529,276,0): 59, 46, 63, (529,277,0): 60, 47, 64, (529,278,0): 59, 48, 64, (529,279,0): 59, 48, 62, (529,280,0): 65, 53, 67, (529,281,0): 65, 53, 67, (529,282,0): 66, 52, 65, (529,283,0): 68, 52, 65, (529,284,0): 71, 53, 67, (529,285,0): 75, 54, 69, (529,286,0): 79, 57, 70, (529,287,0): 80, 58, 71, (529,288,0): 81, 58, 74, (529,289,0): 82, 60, 73, (529,290,0): 85, 59, 72, (529,291,0): 87, 59, 71, (529,292,0): 91, 61, 69, (529,293,0): 93, 62, 67, (529,294,0): 96, 61, 67, (529,295,0): 97, 62, 66, (529,296,0): 100, 64, 66, (529,297,0): 100, 64, 66, (529,298,0): 97, 62, 66, (529,299,0): 94, 62, 65, (529,300,0): 94, 61, 68, (529,301,0): 94, 63, 69, (529,302,0): 94, 64, 72, (529,303,0): 93, 66, 73, (529,304,0): 93, 66, 73, (529,305,0): 96, 67, 72, (529,306,0): 98, 67, 73, (529,307,0): 102, 67, 74, (529,308,0): 108, 68, 76, (529,309,0): 116, 74, 78, (529,310,0): 127, 81, 84, (529,311,0): 137, 87, 88, (529,312,0): 153, 100, 96, (529,313,0): 163, 109, 99, (529,314,0): 174, 121, 105, (529,315,0): 182, 130, 108, (529,316,0): 186, 135, 108, (529,317,0): 190, 139, 108, (529,318,0): 198, 148, 115, (529,319,0): 200, 156, 127, (529,320,0): 205, 172, 157, (529,321,0): 199, 170, 164, (529,322,0): 189, 159, 159, (529,323,0): 173, 142, 148, (529,324,0): 163, 132, 147, (529,325,0): 159, 127, 148, (529,326,0): 151, 121, 147, (529,327,0): 144, 114, 142, (529,328,0): 139, 108, 139, (529,329,0): 121, 91, 119, (529,330,0): 96, 68, 91, (529,331,0): 80, 53, 72, (529,332,0): 72, 48, 61, (529,333,0): 70, 47, 55, (529,334,0): 65, 43, 46, (529,335,0): 59, 39, 41, (529,336,0): 57, 38, 42, (529,337,0): 54, 37, 43, (529,338,0): 52, 35, 41, (529,339,0): 49, 32, 38, (529,340,0): 44, 27, 35, (529,341,0): 39, 22, 30, (529,342,0): 34, 19, 26, (529,343,0): 31, 16, 23, (529,344,0): 29, 16, 25, (529,345,0): 29, 16, 25, (529,346,0): 27, 15, 25, (529,347,0): 27, 15, 25, (529,348,0): 26, 14, 24, (529,349,0): 26, 14, 24, (529,350,0): 26, 14, 26, (529,351,0): 25, 13, 23, (529,352,0): 26, 10, 21, (529,353,0): 26, 10, 20, (529,354,0): 26, 10, 20, (529,355,0): 26, 10, 20, (529,356,0): 26, 10, 20, (529,357,0): 26, 10, 20, (529,358,0): 26, 10, 20, (529,359,0): 26, 10, 20, (529,360,0): 25, 9, 19, (529,361,0): 25, 9, 19, (529,362,0): 25, 9, 19, (529,363,0): 24, 8, 18, (529,364,0): 24, 8, 18, (529,365,0): 23, 7, 17, (529,366,0): 23, 7, 17, (529,367,0): 21, 8, 17, (529,368,0): 20, 10, 18, (529,369,0): 17, 10, 17, (529,370,0): 15, 8, 15, (529,371,0): 14, 7, 14, (529,372,0): 13, 6, 13, (529,373,0): 14, 7, 14, (529,374,0): 14, 7, 14, (529,375,0): 15, 8, 15, (529,376,0): 15, 8, 15, (529,377,0): 15, 8, 15, (529,378,0): 15, 8, 15, (529,379,0): 15, 8, 15, (529,380,0): 15, 8, 15, (529,381,0): 15, 8, 15, (529,382,0): 15, 8, 15, (529,383,0): 15, 8, 15, (529,384,0): 16, 6, 14, (529,385,0): 17, 6, 14, (529,386,0): 17, 6, 14, (529,387,0): 17, 6, 14, (529,388,0): 17, 6, 14, (529,389,0): 17, 6, 14, (529,390,0): 17, 6, 14, (529,391,0): 17, 6, 14, (529,392,0): 17, 6, 14, (529,393,0): 18, 7, 15, (529,394,0): 19, 8, 16, (529,395,0): 21, 10, 18, (529,396,0): 21, 10, 18, (529,397,0): 21, 10, 18, (529,398,0): 20, 9, 17, (529,399,0): 20, 9, 15, (529,400,0): 24, 11, 18, (529,401,0): 25, 10, 15, (529,402,0): 24, 9, 14, (529,403,0): 23, 8, 13, (529,404,0): 23, 8, 13, (529,405,0): 24, 9, 14, (529,406,0): 25, 10, 15, (529,407,0): 26, 11, 16, (529,408,0): 25, 10, 15, (529,409,0): 25, 10, 15, (529,410,0): 26, 11, 16, (529,411,0): 26, 11, 16, (529,412,0): 26, 11, 16, (529,413,0): 26, 11, 16, (529,414,0): 26, 11, 16, (529,415,0): 26, 11, 16, (529,416,0): 26, 11, 16, (529,417,0): 26, 11, 16, (529,418,0): 26, 11, 16, (529,419,0): 26, 11, 16, (529,420,0): 26, 11, 16, (529,421,0): 27, 12, 17, (529,422,0): 27, 12, 17, (529,423,0): 27, 12, 17, (529,424,0): 26, 11, 16, (529,425,0): 26, 11, 16, (529,426,0): 26, 11, 16, (529,427,0): 26, 11, 16, (529,428,0): 26, 11, 16, (529,429,0): 26, 11, 16, (529,430,0): 26, 11, 16, (529,431,0): 27, 11, 14, (529,432,0): 30, 11, 15, (529,433,0): 32, 12, 14, (529,434,0): 33, 13, 15, (529,435,0): 35, 15, 17, (529,436,0): 35, 15, 17, (529,437,0): 35, 15, 17, (529,438,0): 34, 14, 16, (529,439,0): 34, 14, 16, (529,440,0): 35, 15, 17, (529,441,0): 35, 15, 17, (529,442,0): 34, 14, 16, (529,443,0): 34, 14, 16, (529,444,0): 33, 13, 15, (529,445,0): 33, 13, 15, (529,446,0): 33, 13, 15, (529,447,0): 32, 12, 14, (529,448,0): 33, 13, 15, (529,449,0): 33, 13, 15, (529,450,0): 33, 13, 15, (529,451,0): 33, 13, 15, (529,452,0): 33, 13, 15, (529,453,0): 33, 13, 15, (529,454,0): 33, 13, 15, (529,455,0): 33, 13, 15, (529,456,0): 33, 13, 15, (529,457,0): 32, 12, 14, (529,458,0): 31, 11, 13, (529,459,0): 32, 12, 14, (529,460,0): 33, 13, 15, (529,461,0): 35, 15, 17, (529,462,0): 37, 17, 19, (529,463,0): 39, 17, 20, (529,464,0): 44, 15, 20, (529,465,0): 44, 15, 20, (529,466,0): 45, 16, 21, (529,467,0): 42, 17, 21, (529,468,0): 38, 16, 19, (529,469,0): 36, 16, 18, (529,470,0): 33, 14, 16, (529,471,0): 30, 14, 15, (529,472,0): 26, 12, 12, (529,473,0): 26, 12, 12, (529,474,0): 25, 11, 11, (529,475,0): 25, 11, 11, (529,476,0): 28, 12, 13, (529,477,0): 29, 13, 14, (529,478,0): 31, 15, 16, (529,479,0): 34, 15, 17, (529,480,0): 33, 12, 19, (529,481,0): 33, 12, 19, (529,482,0): 32, 11, 18, (529,483,0): 31, 10, 17, (529,484,0): 29, 9, 18, (529,485,0): 28, 8, 17, (529,486,0): 27, 7, 18, (529,487,0): 26, 6, 17, (529,488,0): 22, 5, 15, (529,489,0): 22, 5, 15, (529,490,0): 20, 4, 15, (529,491,0): 19, 3, 14, (529,492,0): 18, 2, 15, (529,493,0): 17, 1, 14, (529,494,0): 14, 0, 13, (529,495,0): 14, 0, 13, (529,496,0): 15, 3, 13, (529,497,0): 16, 4, 14, (529,498,0): 16, 4, 14, (529,499,0): 17, 5, 15, (529,500,0): 17, 5, 15, (529,501,0): 18, 6, 16, (529,502,0): 19, 6, 16, (529,503,0): 19, 6, 16, (529,504,0): 22, 6, 17, (529,505,0): 24, 8, 19, (529,506,0): 27, 9, 21, (529,507,0): 28, 10, 22, (529,508,0): 28, 10, 22, (529,509,0): 25, 7, 19, (529,510,0): 23, 5, 17, (529,511,0): 20, 4, 15, (529,512,0): 17, 6, 14, (529,513,0): 17, 7, 15, (529,514,0): 19, 8, 16, (529,515,0): 22, 9, 18, (529,516,0): 25, 10, 17, (529,517,0): 27, 12, 19, (529,518,0): 31, 12, 18, (529,519,0): 32, 13, 19, (529,520,0): 32, 9, 17, (529,521,0): 33, 10, 18, (529,522,0): 36, 11, 17, (529,523,0): 38, 11, 18, (529,524,0): 42, 13, 18, (529,525,0): 43, 14, 19, (529,526,0): 45, 14, 20, (529,527,0): 46, 15, 21, (529,528,0): 49, 18, 24, (529,529,0): 47, 16, 22, (529,530,0): 45, 14, 20, (529,531,0): 43, 12, 18, (529,532,0): 41, 11, 19, (529,533,0): 41, 11, 19, (529,534,0): 42, 12, 22, (529,535,0): 42, 12, 22, (529,536,0): 37, 10, 19, (529,537,0): 37, 10, 19, (529,538,0): 36, 10, 21, (529,539,0): 37, 11, 22, (529,540,0): 38, 12, 25, (529,541,0): 39, 13, 26, (529,542,0): 37, 13, 26, (529,543,0): 37, 14, 24, (529,544,0): 34, 13, 22, (529,545,0): 33, 12, 19, (529,546,0): 33, 12, 19, (529,547,0): 32, 11, 18, (529,548,0): 31, 10, 17, (529,549,0): 31, 10, 17, (529,550,0): 30, 9, 16, (529,551,0): 30, 9, 16, (529,552,0): 35, 14, 21, (529,553,0): 34, 13, 20, (529,554,0): 34, 13, 20, (529,555,0): 33, 12, 19, (529,556,0): 32, 11, 18, (529,557,0): 32, 11, 18, (529,558,0): 31, 10, 17, (529,559,0): 30, 11, 17, (529,560,0): 30, 10, 21, (529,561,0): 28, 11, 21, (529,562,0): 27, 10, 20, (529,563,0): 27, 10, 20, (529,564,0): 26, 9, 19, (529,565,0): 26, 9, 19, (529,566,0): 24, 8, 18, (529,567,0): 24, 8, 18, (529,568,0): 22, 9, 18, (529,569,0): 22, 9, 18, (529,570,0): 21, 10, 18, (529,571,0): 22, 11, 19, (529,572,0): 22, 11, 19, (529,573,0): 23, 12, 20, (529,574,0): 23, 12, 20, (529,575,0): 24, 13, 21, (529,576,0): 29, 18, 26, (529,577,0): 29, 18, 26, (529,578,0): 29, 18, 26, (529,579,0): 29, 18, 26, (529,580,0): 29, 18, 26, (529,581,0): 29, 18, 26, (529,582,0): 29, 18, 26, (529,583,0): 29, 18, 26, (529,584,0): 28, 17, 25, (529,585,0): 28, 17, 25, (529,586,0): 28, 17, 25, (529,587,0): 27, 16, 24, (529,588,0): 27, 16, 24, (529,589,0): 26, 15, 23, (529,590,0): 26, 15, 23, (529,591,0): 27, 14, 21, (529,592,0): 32, 17, 24, (529,593,0): 33, 14, 20, (529,594,0): 34, 11, 19, (529,595,0): 40, 13, 22, (529,596,0): 50, 14, 26, (529,597,0): 56, 14, 28, (529,598,0): 58, 11, 27, (529,599,0): 58, 10, 26, (530,0,0): 38, 62, 74, (530,1,0): 38, 62, 74, (530,2,0): 39, 63, 75, (530,3,0): 39, 63, 75, (530,4,0): 40, 64, 76, (530,5,0): 40, 64, 76, (530,6,0): 41, 65, 77, (530,7,0): 41, 65, 77, (530,8,0): 44, 68, 80, (530,9,0): 44, 68, 80, (530,10,0): 44, 68, 80, (530,11,0): 44, 68, 80, (530,12,0): 44, 68, 80, (530,13,0): 44, 68, 80, (530,14,0): 44, 68, 80, (530,15,0): 44, 68, 80, (530,16,0): 44, 68, 80, (530,17,0): 44, 68, 80, (530,18,0): 45, 69, 81, (530,19,0): 46, 70, 82, (530,20,0): 47, 69, 82, (530,21,0): 46, 68, 81, (530,22,0): 45, 67, 80, (530,23,0): 45, 67, 80, (530,24,0): 49, 68, 82, (530,25,0): 50, 69, 83, (530,26,0): 51, 69, 83, (530,27,0): 52, 70, 84, (530,28,0): 52, 70, 84, (530,29,0): 53, 71, 85, (530,30,0): 54, 70, 85, (530,31,0): 53, 71, 83, (530,32,0): 52, 72, 83, (530,33,0): 51, 74, 82, (530,34,0): 53, 73, 82, (530,35,0): 54, 74, 83, (530,36,0): 54, 74, 83, (530,37,0): 55, 75, 84, (530,38,0): 56, 75, 82, (530,39,0): 56, 75, 82, (530,40,0): 57, 74, 81, (530,41,0): 57, 74, 81, (530,42,0): 57, 75, 79, (530,43,0): 58, 76, 80, (530,44,0): 60, 75, 80, (530,45,0): 61, 76, 81, (530,46,0): 61, 76, 81, (530,47,0): 62, 75, 81, (530,48,0): 67, 74, 82, (530,49,0): 70, 74, 83, (530,50,0): 70, 74, 83, (530,51,0): 71, 75, 84, (530,52,0): 71, 75, 84, (530,53,0): 72, 76, 85, (530,54,0): 72, 76, 85, (530,55,0): 72, 76, 85, (530,56,0): 72, 76, 85, (530,57,0): 72, 76, 85, (530,58,0): 72, 76, 85, (530,59,0): 72, 76, 85, (530,60,0): 72, 76, 85, (530,61,0): 72, 76, 85, (530,62,0): 72, 76, 85, (530,63,0): 72, 76, 85, (530,64,0): 73, 75, 88, (530,65,0): 74, 76, 89, (530,66,0): 74, 76, 89, (530,67,0): 75, 77, 90, (530,68,0): 77, 76, 90, (530,69,0): 78, 77, 91, (530,70,0): 79, 77, 91, (530,71,0): 79, 77, 91, (530,72,0): 80, 78, 92, (530,73,0): 80, 78, 92, (530,74,0): 82, 78, 93, (530,75,0): 83, 79, 94, (530,76,0): 86, 79, 95, (530,77,0): 87, 80, 96, (530,78,0): 88, 81, 97, (530,79,0): 86, 82, 96, (530,80,0): 87, 83, 97, (530,81,0): 86, 84, 95, (530,82,0): 87, 85, 96, (530,83,0): 88, 86, 97, (530,84,0): 90, 87, 98, (530,85,0): 91, 88, 99, (530,86,0): 92, 89, 100, (530,87,0): 92, 89, 100, (530,88,0): 93, 87, 99, (530,89,0): 93, 87, 99, (530,90,0): 94, 86, 99, (530,91,0): 94, 86, 99, (530,92,0): 93, 85, 98, (530,93,0): 91, 83, 96, (530,94,0): 91, 80, 94, (530,95,0): 88, 80, 95, (530,96,0): 84, 80, 95, (530,97,0): 83, 81, 95, (530,98,0): 84, 80, 94, (530,99,0): 83, 80, 91, (530,100,0): 85, 79, 89, (530,101,0): 85, 77, 88, (530,102,0): 87, 77, 86, (530,103,0): 86, 76, 85, (530,104,0): 83, 76, 84, (530,105,0): 83, 77, 87, (530,106,0): 81, 78, 89, (530,107,0): 81, 79, 93, (530,108,0): 81, 80, 96, (530,109,0): 79, 82, 99, (530,110,0): 78, 83, 102, (530,111,0): 78, 83, 102, (530,112,0): 81, 84, 101, (530,113,0): 82, 84, 99, (530,114,0): 81, 83, 98, (530,115,0): 80, 82, 97, (530,116,0): 79, 81, 96, (530,117,0): 78, 80, 95, (530,118,0): 78, 80, 95, (530,119,0): 77, 79, 94, (530,120,0): 76, 78, 93, (530,121,0): 75, 77, 92, (530,122,0): 74, 76, 91, (530,123,0): 73, 75, 90, (530,124,0): 73, 75, 90, (530,125,0): 74, 76, 91, (530,126,0): 75, 77, 92, (530,127,0): 76, 78, 93, (530,128,0): 76, 75, 91, (530,129,0): 75, 74, 90, (530,130,0): 73, 72, 86, (530,131,0): 70, 69, 83, (530,132,0): 69, 69, 81, (530,133,0): 68, 68, 80, (530,134,0): 68, 68, 78, (530,135,0): 68, 68, 78, (530,136,0): 68, 68, 76, (530,137,0): 68, 68, 76, (530,138,0): 68, 69, 74, (530,139,0): 68, 69, 74, (530,140,0): 68, 69, 73, (530,141,0): 68, 69, 73, (530,142,0): 68, 69, 73, (530,143,0): 68, 69, 74, (530,144,0): 69, 67, 80, (530,145,0): 70, 66, 81, (530,146,0): 71, 67, 82, (530,147,0): 70, 66, 81, (530,148,0): 69, 65, 79, (530,149,0): 68, 64, 78, (530,150,0): 66, 63, 74, (530,151,0): 65, 62, 73, (530,152,0): 60, 57, 66, (530,153,0): 59, 56, 65, (530,154,0): 58, 55, 62, (530,155,0): 57, 54, 61, (530,156,0): 57, 55, 60, (530,157,0): 58, 56, 61, (530,158,0): 59, 57, 60, (530,159,0): 60, 58, 63, (530,160,0): 60, 59, 65, (530,161,0): 60, 59, 67, (530,162,0): 60, 57, 66, (530,163,0): 59, 56, 63, (530,164,0): 58, 55, 62, (530,165,0): 57, 54, 61, (530,166,0): 58, 53, 60, (530,167,0): 58, 53, 59, (530,168,0): 56, 49, 56, (530,169,0): 56, 50, 54, (530,170,0): 56, 50, 54, (530,171,0): 55, 49, 53, (530,172,0): 57, 48, 53, (530,173,0): 56, 47, 50, (530,174,0): 56, 47, 50, (530,175,0): 55, 46, 49, (530,176,0): 55, 45, 46, (530,177,0): 54, 44, 43, (530,178,0): 54, 44, 43, (530,179,0): 54, 44, 43, (530,180,0): 53, 43, 44, (530,181,0): 53, 43, 44, (530,182,0): 52, 41, 45, (530,183,0): 52, 41, 45, (530,184,0): 54, 43, 49, (530,185,0): 54, 43, 51, (530,186,0): 54, 42, 52, (530,187,0): 54, 42, 52, (530,188,0): 54, 42, 52, (530,189,0): 54, 42, 52, (530,190,0): 54, 42, 54, (530,191,0): 53, 43, 52, (530,192,0): 46, 36, 44, (530,193,0): 44, 38, 42, (530,194,0): 44, 38, 42, (530,195,0): 44, 38, 42, (530,196,0): 43, 37, 41, (530,197,0): 43, 37, 41, (530,198,0): 43, 37, 41, (530,199,0): 43, 37, 41, (530,200,0): 42, 36, 40, (530,201,0): 42, 36, 40, (530,202,0): 41, 35, 39, (530,203,0): 41, 35, 39, (530,204,0): 40, 34, 38, (530,205,0): 40, 34, 38, (530,206,0): 39, 33, 37, (530,207,0): 39, 32, 39, (530,208,0): 39, 34, 41, (530,209,0): 39, 34, 41, (530,210,0): 38, 33, 40, (530,211,0): 38, 33, 40, (530,212,0): 37, 32, 39, (530,213,0): 37, 32, 39, (530,214,0): 36, 31, 38, (530,215,0): 36, 31, 38, (530,216,0): 36, 31, 38, (530,217,0): 36, 31, 38, (530,218,0): 36, 31, 38, (530,219,0): 36, 31, 38, (530,220,0): 36, 31, 38, (530,221,0): 36, 31, 38, (530,222,0): 36, 31, 38, (530,223,0): 34, 31, 38, (530,224,0): 33, 34, 39, (530,225,0): 30, 33, 38, (530,226,0): 29, 32, 37, (530,227,0): 28, 31, 36, (530,228,0): 28, 31, 36, (530,229,0): 29, 32, 37, (530,230,0): 30, 33, 38, (530,231,0): 31, 34, 39, (530,232,0): 31, 34, 39, (530,233,0): 31, 34, 39, (530,234,0): 31, 34, 39, (530,235,0): 31, 34, 39, (530,236,0): 31, 34, 39, (530,237,0): 31, 34, 39, (530,238,0): 31, 34, 39, (530,239,0): 33, 34, 39, (530,240,0): 35, 32, 43, (530,241,0): 38, 32, 44, (530,242,0): 38, 32, 44, (530,243,0): 38, 32, 44, (530,244,0): 39, 33, 45, (530,245,0): 40, 34, 46, (530,246,0): 40, 34, 46, (530,247,0): 40, 34, 46, (530,248,0): 43, 37, 49, (530,249,0): 43, 37, 49, (530,250,0): 43, 37, 49, (530,251,0): 43, 37, 49, (530,252,0): 43, 37, 49, (530,253,0): 43, 37, 49, (530,254,0): 43, 37, 49, (530,255,0): 43, 37, 49, (530,256,0): 40, 37, 48, (530,257,0): 40, 37, 48, (530,258,0): 43, 37, 49, (530,259,0): 44, 38, 50, (530,260,0): 45, 39, 51, (530,261,0): 46, 40, 52, (530,262,0): 48, 40, 53, (530,263,0): 48, 40, 53, (530,264,0): 53, 42, 56, (530,265,0): 54, 43, 57, (530,266,0): 54, 43, 57, (530,267,0): 55, 44, 58, (530,268,0): 58, 46, 60, (530,269,0): 59, 47, 61, (530,270,0): 59, 47, 61, (530,271,0): 61, 47, 62, (530,272,0): 61, 44, 63, (530,273,0): 61, 44, 63, (530,274,0): 59, 45, 62, (530,275,0): 60, 46, 63, (530,276,0): 59, 46, 63, (530,277,0): 60, 47, 64, (530,278,0): 59, 48, 62, (530,279,0): 60, 49, 63, (530,280,0): 64, 53, 67, (530,281,0): 65, 53, 65, (530,282,0): 65, 53, 65, (530,283,0): 66, 52, 65, (530,284,0): 70, 54, 65, (530,285,0): 73, 55, 67, (530,286,0): 76, 58, 70, (530,287,0): 79, 59, 71, (530,288,0): 80, 58, 71, (530,289,0): 81, 59, 72, (530,290,0): 84, 58, 71, (530,291,0): 86, 59, 68, (530,292,0): 90, 60, 68, (530,293,0): 92, 61, 66, (530,294,0): 95, 60, 66, (530,295,0): 96, 61, 65, (530,296,0): 100, 64, 66, (530,297,0): 99, 63, 65, (530,298,0): 97, 62, 66, (530,299,0): 94, 62, 65, (530,300,0): 94, 61, 68, (530,301,0): 94, 63, 69, (530,302,0): 94, 64, 72, (530,303,0): 96, 65, 73, (530,304,0): 100, 67, 74, (530,305,0): 104, 67, 74, (530,306,0): 106, 66, 74, (530,307,0): 107, 66, 72, (530,308,0): 114, 69, 74, (530,309,0): 124, 78, 80, (530,310,0): 139, 89, 88, (530,311,0): 149, 98, 94, (530,312,0): 164, 111, 103, (530,313,0): 169, 117, 104, (530,314,0): 174, 123, 104, (530,315,0): 174, 126, 103, (530,316,0): 178, 131, 105, (530,317,0): 184, 139, 110, (530,318,0): 193, 148, 117, (530,319,0): 195, 155, 129, (530,320,0): 200, 168, 157, (530,321,0): 191, 161, 159, (530,322,0): 178, 148, 150, (530,323,0): 165, 134, 142, (530,324,0): 159, 128, 143, (530,325,0): 156, 125, 143, (530,326,0): 146, 116, 140, (530,327,0): 137, 107, 133, (530,328,0): 127, 97, 125, (530,329,0): 111, 81, 107, (530,330,0): 90, 62, 84, (530,331,0): 76, 49, 66, (530,332,0): 70, 46, 59, (530,333,0): 68, 45, 51, (530,334,0): 64, 42, 45, (530,335,0): 59, 39, 41, (530,336,0): 56, 37, 41, (530,337,0): 53, 36, 42, (530,338,0): 51, 34, 40, (530,339,0): 47, 30, 36, (530,340,0): 43, 26, 34, (530,341,0): 38, 21, 29, (530,342,0): 33, 18, 25, (530,343,0): 31, 16, 23, (530,344,0): 29, 16, 25, (530,345,0): 28, 15, 24, (530,346,0): 27, 15, 25, (530,347,0): 27, 15, 25, (530,348,0): 26, 14, 24, (530,349,0): 25, 13, 23, (530,350,0): 25, 13, 25, (530,351,0): 25, 13, 23, (530,352,0): 26, 10, 21, (530,353,0): 26, 10, 20, (530,354,0): 26, 10, 20, (530,355,0): 26, 10, 20, (530,356,0): 26, 10, 20, (530,357,0): 26, 10, 20, (530,358,0): 26, 10, 20, (530,359,0): 26, 10, 20, (530,360,0): 25, 9, 19, (530,361,0): 25, 9, 19, (530,362,0): 25, 9, 19, (530,363,0): 24, 8, 18, (530,364,0): 24, 8, 18, (530,365,0): 23, 7, 17, (530,366,0): 23, 7, 17, (530,367,0): 21, 8, 17, (530,368,0): 20, 10, 18, (530,369,0): 17, 10, 17, (530,370,0): 15, 8, 15, (530,371,0): 14, 7, 14, (530,372,0): 13, 6, 13, (530,373,0): 14, 7, 14, (530,374,0): 14, 7, 14, (530,375,0): 15, 8, 15, (530,376,0): 15, 8, 15, (530,377,0): 15, 8, 15, (530,378,0): 15, 8, 15, (530,379,0): 15, 8, 15, (530,380,0): 15, 8, 15, (530,381,0): 15, 8, 15, (530,382,0): 15, 8, 15, (530,383,0): 15, 8, 15, (530,384,0): 16, 6, 14, (530,385,0): 16, 6, 14, (530,386,0): 16, 6, 14, (530,387,0): 16, 6, 14, (530,388,0): 16, 6, 14, (530,389,0): 16, 6, 14, (530,390,0): 16, 6, 14, (530,391,0): 16, 6, 14, (530,392,0): 16, 6, 14, (530,393,0): 17, 7, 15, (530,394,0): 18, 8, 16, (530,395,0): 20, 10, 18, (530,396,0): 20, 10, 18, (530,397,0): 20, 10, 18, (530,398,0): 19, 9, 17, (530,399,0): 20, 9, 15, (530,400,0): 24, 11, 18, (530,401,0): 25, 10, 15, (530,402,0): 24, 9, 14, (530,403,0): 24, 9, 14, (530,404,0): 24, 9, 14, (530,405,0): 24, 9, 14, (530,406,0): 25, 10, 15, (530,407,0): 26, 11, 16, (530,408,0): 27, 12, 17, (530,409,0): 27, 12, 17, (530,410,0): 27, 12, 17, (530,411,0): 26, 11, 16, (530,412,0): 26, 11, 16, (530,413,0): 26, 11, 16, (530,414,0): 26, 11, 16, (530,415,0): 26, 11, 16, (530,416,0): 26, 11, 16, (530,417,0): 26, 11, 16, (530,418,0): 26, 11, 16, (530,419,0): 26, 11, 16, (530,420,0): 26, 11, 16, (530,421,0): 26, 11, 16, (530,422,0): 26, 11, 16, (530,423,0): 26, 11, 16, (530,424,0): 25, 10, 15, (530,425,0): 25, 10, 15, (530,426,0): 25, 10, 15, (530,427,0): 25, 10, 15, (530,428,0): 25, 10, 15, (530,429,0): 25, 10, 15, (530,430,0): 25, 10, 15, (530,431,0): 26, 10, 13, (530,432,0): 30, 11, 15, (530,433,0): 32, 12, 14, (530,434,0): 33, 13, 15, (530,435,0): 34, 14, 16, (530,436,0): 35, 15, 17, (530,437,0): 35, 15, 17, (530,438,0): 34, 14, 16, (530,439,0): 33, 13, 15, (530,440,0): 35, 15, 17, (530,441,0): 34, 14, 16, (530,442,0): 34, 14, 16, (530,443,0): 34, 14, 16, (530,444,0): 33, 13, 15, (530,445,0): 32, 12, 14, (530,446,0): 32, 12, 14, (530,447,0): 32, 12, 14, (530,448,0): 33, 13, 15, (530,449,0): 33, 13, 15, (530,450,0): 33, 13, 15, (530,451,0): 33, 13, 15, (530,452,0): 33, 13, 15, (530,453,0): 33, 13, 15, (530,454,0): 33, 13, 15, (530,455,0): 33, 13, 15, (530,456,0): 34, 14, 16, (530,457,0): 33, 13, 15, (530,458,0): 33, 13, 15, (530,459,0): 34, 14, 16, (530,460,0): 35, 15, 17, (530,461,0): 36, 16, 18, (530,462,0): 38, 18, 20, (530,463,0): 40, 18, 21, (530,464,0): 44, 15, 20, (530,465,0): 44, 15, 20, (530,466,0): 44, 15, 20, (530,467,0): 41, 16, 20, (530,468,0): 38, 16, 19, (530,469,0): 35, 15, 17, (530,470,0): 32, 13, 15, (530,471,0): 29, 13, 14, (530,472,0): 26, 12, 12, (530,473,0): 26, 12, 12, (530,474,0): 26, 12, 12, (530,475,0): 26, 12, 12, (530,476,0): 28, 12, 13, (530,477,0): 30, 14, 15, (530,478,0): 34, 15, 17, (530,479,0): 35, 16, 18, (530,480,0): 34, 13, 20, (530,481,0): 33, 12, 19, (530,482,0): 33, 12, 19, (530,483,0): 31, 10, 17, (530,484,0): 29, 9, 18, (530,485,0): 28, 8, 17, (530,486,0): 28, 8, 17, (530,487,0): 27, 7, 16, (530,488,0): 23, 6, 16, (530,489,0): 23, 6, 16, (530,490,0): 21, 5, 16, (530,491,0): 20, 4, 15, (530,492,0): 19, 3, 14, (530,493,0): 18, 2, 13, (530,494,0): 15, 1, 14, (530,495,0): 15, 1, 14, (530,496,0): 16, 4, 14, (530,497,0): 16, 4, 14, (530,498,0): 16, 4, 14, (530,499,0): 17, 5, 15, (530,500,0): 17, 5, 15, (530,501,0): 18, 6, 16, (530,502,0): 19, 6, 16, (530,503,0): 20, 7, 17, (530,504,0): 23, 7, 18, (530,505,0): 24, 8, 19, (530,506,0): 27, 9, 21, (530,507,0): 28, 10, 22, (530,508,0): 27, 9, 21, (530,509,0): 25, 7, 19, (530,510,0): 23, 5, 17, (530,511,0): 20, 4, 15, (530,512,0): 17, 4, 13, (530,513,0): 17, 6, 14, (530,514,0): 19, 6, 15, (530,515,0): 21, 8, 17, (530,516,0): 24, 9, 16, (530,517,0): 26, 11, 18, (530,518,0): 30, 11, 17, (530,519,0): 31, 12, 18, (530,520,0): 31, 8, 16, (530,521,0): 32, 9, 17, (530,522,0): 35, 10, 16, (530,523,0): 38, 11, 18, (530,524,0): 42, 13, 18, (530,525,0): 44, 15, 20, (530,526,0): 46, 15, 21, (530,527,0): 47, 16, 22, (530,528,0): 47, 16, 22, (530,529,0): 46, 15, 21, (530,530,0): 44, 13, 19, (530,531,0): 42, 11, 17, (530,532,0): 40, 10, 18, (530,533,0): 40, 10, 18, (530,534,0): 38, 11, 20, (530,535,0): 38, 11, 20, (530,536,0): 36, 9, 18, (530,537,0): 36, 9, 18, (530,538,0): 36, 10, 21, (530,539,0): 36, 10, 21, (530,540,0): 35, 11, 24, (530,541,0): 35, 11, 24, (530,542,0): 35, 11, 24, (530,543,0): 36, 13, 23, (530,544,0): 32, 11, 20, (530,545,0): 32, 11, 18, (530,546,0): 32, 11, 18, (530,547,0): 31, 10, 17, (530,548,0): 31, 10, 17, (530,549,0): 30, 9, 16, (530,550,0): 30, 9, 16, (530,551,0): 30, 9, 16, (530,552,0): 32, 11, 18, (530,553,0): 32, 11, 18, (530,554,0): 32, 11, 18, (530,555,0): 31, 10, 17, (530,556,0): 31, 10, 17, (530,557,0): 31, 10, 17, (530,558,0): 30, 9, 16, (530,559,0): 29, 10, 16, (530,560,0): 30, 10, 21, (530,561,0): 28, 11, 21, (530,562,0): 27, 10, 20, (530,563,0): 27, 10, 20, (530,564,0): 26, 9, 19, (530,565,0): 26, 9, 19, (530,566,0): 24, 8, 18, (530,567,0): 24, 8, 18, (530,568,0): 21, 8, 17, (530,569,0): 22, 9, 18, (530,570,0): 21, 10, 18, (530,571,0): 22, 11, 19, (530,572,0): 22, 11, 19, (530,573,0): 23, 12, 20, (530,574,0): 23, 12, 20, (530,575,0): 23, 12, 20, (530,576,0): 29, 18, 26, (530,577,0): 29, 18, 26, (530,578,0): 29, 18, 26, (530,579,0): 29, 18, 26, (530,580,0): 29, 18, 26, (530,581,0): 29, 18, 26, (530,582,0): 29, 18, 26, (530,583,0): 29, 18, 26, (530,584,0): 28, 17, 25, (530,585,0): 28, 17, 25, (530,586,0): 28, 17, 25, (530,587,0): 27, 16, 24, (530,588,0): 27, 16, 24, (530,589,0): 26, 15, 23, (530,590,0): 26, 15, 23, (530,591,0): 26, 15, 21, (530,592,0): 27, 14, 21, (530,593,0): 30, 13, 19, (530,594,0): 33, 12, 19, (530,595,0): 39, 12, 21, (530,596,0): 47, 14, 25, (530,597,0): 54, 13, 27, (530,598,0): 56, 12, 27, (530,599,0): 58, 11, 27, (531,0,0): 38, 62, 74, (531,1,0): 38, 62, 74, (531,2,0): 39, 63, 75, (531,3,0): 39, 63, 75, (531,4,0): 40, 64, 76, (531,5,0): 40, 64, 76, (531,6,0): 41, 65, 77, (531,7,0): 41, 65, 77, (531,8,0): 44, 68, 80, (531,9,0): 44, 68, 80, (531,10,0): 44, 68, 80, (531,11,0): 44, 68, 80, (531,12,0): 44, 68, 80, (531,13,0): 44, 68, 80, (531,14,0): 44, 68, 80, (531,15,0): 44, 68, 80, (531,16,0): 42, 66, 78, (531,17,0): 43, 67, 79, (531,18,0): 45, 69, 81, (531,19,0): 46, 70, 82, (531,20,0): 47, 69, 82, (531,21,0): 46, 68, 81, (531,22,0): 44, 66, 79, (531,23,0): 43, 65, 78, (531,24,0): 49, 68, 82, (531,25,0): 49, 68, 82, (531,26,0): 50, 68, 82, (531,27,0): 51, 69, 83, (531,28,0): 52, 70, 84, (531,29,0): 52, 70, 84, (531,30,0): 53, 69, 84, (531,31,0): 53, 71, 83, (531,32,0): 52, 72, 83, (531,33,0): 50, 73, 81, (531,34,0): 52, 72, 81, (531,35,0): 53, 73, 82, (531,36,0): 54, 74, 83, (531,37,0): 54, 74, 83, (531,38,0): 55, 74, 81, (531,39,0): 56, 75, 82, (531,40,0): 57, 74, 81, (531,41,0): 57, 74, 81, (531,42,0): 57, 75, 79, (531,43,0): 58, 76, 80, (531,44,0): 60, 75, 80, (531,45,0): 61, 76, 81, (531,46,0): 61, 76, 81, (531,47,0): 62, 75, 81, (531,48,0): 67, 74, 82, (531,49,0): 69, 73, 82, (531,50,0): 69, 73, 82, (531,51,0): 70, 74, 83, (531,52,0): 71, 75, 84, (531,53,0): 71, 75, 84, (531,54,0): 71, 75, 84, (531,55,0): 72, 76, 85, (531,56,0): 72, 76, 85, (531,57,0): 72, 76, 85, (531,58,0): 72, 76, 85, (531,59,0): 72, 76, 85, (531,60,0): 72, 76, 85, (531,61,0): 72, 76, 85, (531,62,0): 72, 76, 85, (531,63,0): 72, 76, 85, (531,64,0): 73, 75, 88, (531,65,0): 73, 75, 88, (531,66,0): 73, 75, 88, (531,67,0): 74, 76, 89, (531,68,0): 77, 76, 90, (531,69,0): 77, 76, 90, (531,70,0): 78, 76, 90, (531,71,0): 79, 77, 91, (531,72,0): 79, 77, 91, (531,73,0): 79, 77, 91, (531,74,0): 81, 77, 92, (531,75,0): 82, 78, 93, (531,76,0): 85, 78, 94, (531,77,0): 86, 79, 95, (531,78,0): 87, 80, 96, (531,79,0): 86, 82, 96, (531,80,0): 86, 82, 96, (531,81,0): 85, 83, 94, (531,82,0): 86, 84, 95, (531,83,0): 87, 85, 96, (531,84,0): 89, 86, 97, (531,85,0): 90, 87, 98, (531,86,0): 91, 88, 99, (531,87,0): 92, 89, 100, (531,88,0): 92, 86, 98, (531,89,0): 93, 87, 99, (531,90,0): 94, 86, 99, (531,91,0): 94, 86, 99, (531,92,0): 94, 86, 99, (531,93,0): 92, 84, 97, (531,94,0): 93, 82, 96, (531,95,0): 90, 82, 95, (531,96,0): 85, 81, 95, (531,97,0): 84, 80, 94, (531,98,0): 84, 81, 92, (531,99,0): 85, 79, 89, (531,100,0): 85, 77, 88, (531,101,0): 84, 77, 85, (531,102,0): 85, 75, 84, (531,103,0): 85, 75, 84, (531,104,0): 82, 75, 83, (531,105,0): 83, 75, 86, (531,106,0): 82, 76, 88, (531,107,0): 82, 78, 92, (531,108,0): 81, 80, 94, (531,109,0): 80, 82, 97, (531,110,0): 80, 83, 100, (531,111,0): 81, 84, 101, (531,112,0): 83, 84, 104, (531,113,0): 83, 84, 102, (531,114,0): 82, 83, 103, (531,115,0): 81, 82, 100, (531,116,0): 81, 82, 102, (531,117,0): 80, 81, 99, (531,118,0): 79, 80, 100, (531,119,0): 79, 80, 98, (531,120,0): 79, 80, 100, (531,121,0): 78, 79, 97, (531,122,0): 76, 77, 97, (531,123,0): 75, 76, 94, (531,124,0): 75, 76, 96, (531,125,0): 75, 76, 94, (531,126,0): 76, 77, 97, (531,127,0): 77, 78, 96, (531,128,0): 75, 74, 90, (531,129,0): 74, 73, 89, (531,130,0): 72, 71, 85, (531,131,0): 70, 69, 83, (531,132,0): 69, 69, 81, (531,133,0): 69, 69, 81, (531,134,0): 70, 70, 80, (531,135,0): 70, 70, 80, (531,136,0): 70, 70, 80, (531,137,0): 70, 70, 78, (531,138,0): 70, 70, 78, (531,139,0): 70, 71, 76, (531,140,0): 70, 71, 76, (531,141,0): 70, 71, 75, (531,142,0): 70, 71, 75, (531,143,0): 71, 70, 76, (531,144,0): 71, 67, 81, (531,145,0): 71, 67, 82, (531,146,0): 72, 68, 83, (531,147,0): 72, 68, 82, (531,148,0): 71, 67, 81, (531,149,0): 70, 67, 78, (531,150,0): 68, 65, 76, (531,151,0): 67, 64, 75, (531,152,0): 63, 60, 69, (531,153,0): 62, 59, 68, (531,154,0): 60, 57, 64, (531,155,0): 59, 56, 63, (531,156,0): 59, 57, 62, (531,157,0): 59, 57, 62, (531,158,0): 60, 58, 61, (531,159,0): 61, 59, 64, (531,160,0): 60, 59, 65, (531,161,0): 60, 59, 65, (531,162,0): 60, 57, 64, (531,163,0): 59, 56, 63, (531,164,0): 58, 55, 62, (531,165,0): 57, 55, 60, (531,166,0): 58, 53, 59, (531,167,0): 58, 53, 57, (531,168,0): 57, 51, 55, (531,169,0): 57, 51, 55, (531,170,0): 57, 51, 55, (531,171,0): 56, 50, 52, (531,172,0): 58, 49, 52, (531,173,0): 57, 48, 51, (531,174,0): 57, 48, 51, (531,175,0): 57, 48, 49, (531,176,0): 56, 46, 45, (531,177,0): 56, 46, 45, (531,178,0): 55, 45, 44, (531,179,0): 55, 45, 44, (531,180,0): 54, 44, 45, (531,181,0): 54, 44, 45, (531,182,0): 53, 42, 46, (531,183,0): 53, 42, 46, (531,184,0): 54, 43, 49, (531,185,0): 54, 43, 49, (531,186,0): 54, 43, 51, (531,187,0): 54, 42, 52, (531,188,0): 54, 42, 52, (531,189,0): 54, 42, 52, (531,190,0): 54, 42, 52, (531,191,0): 53, 43, 52, (531,192,0): 46, 40, 44, (531,193,0): 46, 40, 44, (531,194,0): 46, 40, 44, (531,195,0): 46, 40, 44, (531,196,0): 45, 39, 43, (531,197,0): 45, 39, 43, (531,198,0): 45, 39, 43, (531,199,0): 44, 38, 42, (531,200,0): 43, 37, 41, (531,201,0): 43, 37, 41, (531,202,0): 42, 36, 40, (531,203,0): 42, 36, 40, (531,204,0): 41, 35, 39, (531,205,0): 41, 35, 39, (531,206,0): 40, 34, 38, (531,207,0): 40, 34, 38, (531,208,0): 39, 34, 40, (531,209,0): 39, 34, 41, (531,210,0): 38, 33, 40, (531,211,0): 38, 33, 40, (531,212,0): 37, 32, 39, (531,213,0): 37, 32, 39, (531,214,0): 36, 31, 38, (531,215,0): 36, 31, 38, (531,216,0): 36, 31, 38, (531,217,0): 36, 31, 38, (531,218,0): 36, 31, 38, (531,219,0): 36, 31, 38, (531,220,0): 36, 31, 38, (531,221,0): 36, 31, 38, (531,222,0): 36, 31, 38, (531,223,0): 34, 31, 38, (531,224,0): 34, 35, 40, (531,225,0): 31, 34, 39, (531,226,0): 30, 33, 38, (531,227,0): 29, 32, 37, (531,228,0): 29, 32, 37, (531,229,0): 30, 33, 38, (531,230,0): 31, 34, 39, (531,231,0): 32, 35, 40, (531,232,0): 32, 35, 40, (531,233,0): 32, 35, 40, (531,234,0): 32, 35, 40, (531,235,0): 32, 35, 40, (531,236,0): 32, 35, 40, (531,237,0): 32, 35, 40, (531,238,0): 32, 35, 40, (531,239,0): 34, 35, 40, (531,240,0): 36, 33, 44, (531,241,0): 38, 32, 44, (531,242,0): 38, 32, 44, (531,243,0): 39, 33, 45, (531,244,0): 39, 33, 45, (531,245,0): 40, 34, 46, (531,246,0): 40, 34, 46, (531,247,0): 41, 35, 47, (531,248,0): 43, 37, 49, (531,249,0): 43, 37, 49, (531,250,0): 43, 37, 49, (531,251,0): 43, 37, 49, (531,252,0): 43, 37, 49, (531,253,0): 43, 37, 49, (531,254,0): 43, 37, 49, (531,255,0): 43, 37, 49, (531,256,0): 40, 37, 48, (531,257,0): 41, 38, 49, (531,258,0): 44, 38, 50, (531,259,0): 45, 39, 51, (531,260,0): 46, 40, 52, (531,261,0): 47, 41, 53, (531,262,0): 49, 41, 54, (531,263,0): 49, 41, 54, (531,264,0): 53, 42, 56, (531,265,0): 54, 43, 57, (531,266,0): 54, 43, 57, (531,267,0): 55, 44, 58, (531,268,0): 58, 46, 60, (531,269,0): 59, 47, 61, (531,270,0): 59, 47, 61, (531,271,0): 61, 47, 62, (531,272,0): 61, 44, 62, (531,273,0): 63, 44, 64, (531,274,0): 62, 45, 63, (531,275,0): 60, 46, 63, (531,276,0): 60, 47, 64, (531,277,0): 60, 49, 65, (531,278,0): 60, 49, 63, (531,279,0): 60, 49, 63, (531,280,0): 64, 54, 65, (531,281,0): 64, 54, 65, (531,282,0): 64, 54, 65, (531,283,0): 65, 53, 65, (531,284,0): 68, 55, 65, (531,285,0): 70, 57, 67, (531,286,0): 75, 59, 70, (531,287,0): 77, 59, 71, (531,288,0): 79, 57, 70, (531,289,0): 81, 57, 70, (531,290,0): 84, 58, 69, (531,291,0): 86, 59, 68, (531,292,0): 89, 59, 67, (531,293,0): 91, 60, 65, (531,294,0): 93, 61, 66, (531,295,0): 95, 60, 64, (531,296,0): 99, 63, 65, (531,297,0): 97, 63, 64, (531,298,0): 97, 62, 66, (531,299,0): 94, 62, 65, (531,300,0): 94, 63, 68, (531,301,0): 95, 64, 70, (531,302,0): 95, 65, 73, (531,303,0): 98, 65, 72, (531,304,0): 107, 67, 75, (531,305,0): 110, 67, 74, (531,306,0): 113, 71, 75, (531,307,0): 117, 72, 75, (531,308,0): 125, 77, 77, (531,309,0): 136, 87, 83, (531,310,0): 149, 99, 92, (531,311,0): 157, 107, 96, (531,312,0): 164, 115, 101, (531,313,0): 168, 119, 102, (531,314,0): 169, 121, 101, (531,315,0): 167, 121, 98, (531,316,0): 172, 128, 103, (531,317,0): 182, 140, 115, (531,318,0): 193, 152, 124, (531,319,0): 192, 156, 134, (531,320,0): 195, 162, 155, (531,321,0): 182, 152, 154, (531,322,0): 169, 138, 144, (531,323,0): 160, 128, 139, (531,324,0): 155, 124, 139, (531,325,0): 150, 119, 137, (531,326,0): 135, 106, 126, (531,327,0): 124, 95, 117, (531,328,0): 113, 83, 107, (531,329,0): 100, 71, 93, (531,330,0): 83, 56, 75, (531,331,0): 73, 46, 61, (531,332,0): 67, 44, 54, (531,333,0): 66, 43, 49, (531,334,0): 63, 41, 44, (531,335,0): 58, 38, 40, (531,336,0): 54, 35, 39, (531,337,0): 51, 34, 40, (531,338,0): 48, 31, 37, (531,339,0): 45, 28, 34, (531,340,0): 41, 24, 32, (531,341,0): 37, 20, 28, (531,342,0): 33, 18, 25, (531,343,0): 31, 16, 23, (531,344,0): 28, 15, 24, (531,345,0): 28, 15, 24, (531,346,0): 27, 15, 25, (531,347,0): 26, 14, 24, (531,348,0): 26, 14, 24, (531,349,0): 25, 13, 23, (531,350,0): 25, 13, 25, (531,351,0): 24, 12, 22, (531,352,0): 26, 10, 21, (531,353,0): 26, 10, 20, (531,354,0): 26, 10, 20, (531,355,0): 26, 10, 20, (531,356,0): 26, 10, 20, (531,357,0): 26, 10, 20, (531,358,0): 26, 10, 20, (531,359,0): 26, 10, 20, (531,360,0): 25, 9, 19, (531,361,0): 25, 9, 19, (531,362,0): 25, 9, 19, (531,363,0): 24, 8, 18, (531,364,0): 24, 8, 18, (531,365,0): 23, 7, 17, (531,366,0): 23, 7, 17, (531,367,0): 21, 8, 17, (531,368,0): 20, 10, 18, (531,369,0): 17, 10, 17, (531,370,0): 15, 8, 15, (531,371,0): 14, 7, 14, (531,372,0): 13, 6, 13, (531,373,0): 14, 7, 14, (531,374,0): 14, 7, 14, (531,375,0): 15, 8, 15, (531,376,0): 15, 8, 15, (531,377,0): 15, 8, 15, (531,378,0): 15, 8, 15, (531,379,0): 15, 8, 15, (531,380,0): 15, 8, 15, (531,381,0): 15, 8, 15, (531,382,0): 15, 8, 15, (531,383,0): 15, 8, 15, (531,384,0): 14, 7, 14, (531,385,0): 14, 7, 14, (531,386,0): 16, 6, 14, (531,387,0): 14, 7, 14, (531,388,0): 16, 6, 14, (531,389,0): 14, 7, 14, (531,390,0): 16, 6, 14, (531,391,0): 14, 7, 14, (531,392,0): 16, 6, 14, (531,393,0): 15, 8, 15, (531,394,0): 18, 8, 16, (531,395,0): 18, 11, 18, (531,396,0): 20, 10, 18, (531,397,0): 18, 11, 18, (531,398,0): 19, 9, 17, (531,399,0): 19, 10, 15, (531,400,0): 24, 11, 18, (531,401,0): 25, 10, 15, (531,402,0): 25, 10, 15, (531,403,0): 25, 10, 15, (531,404,0): 25, 10, 15, (531,405,0): 25, 10, 15, (531,406,0): 25, 10, 15, (531,407,0): 26, 11, 16, (531,408,0): 28, 13, 18, (531,409,0): 28, 13, 18, (531,410,0): 27, 12, 17, (531,411,0): 27, 12, 17, (531,412,0): 27, 12, 17, (531,413,0): 26, 11, 16, (531,414,0): 26, 11, 16, (531,415,0): 26, 11, 16, (531,416,0): 26, 11, 16, (531,417,0): 26, 11, 16, (531,418,0): 26, 11, 16, (531,419,0): 26, 11, 16, (531,420,0): 25, 10, 15, (531,421,0): 25, 10, 15, (531,422,0): 25, 10, 15, (531,423,0): 24, 9, 14, (531,424,0): 24, 9, 14, (531,425,0): 24, 9, 14, (531,426,0): 24, 9, 14, (531,427,0): 24, 9, 14, (531,428,0): 24, 9, 14, (531,429,0): 24, 9, 14, (531,430,0): 24, 9, 14, (531,431,0): 25, 9, 12, (531,432,0): 29, 10, 14, (531,433,0): 31, 11, 13, (531,434,0): 33, 13, 15, (531,435,0): 34, 14, 16, (531,436,0): 34, 14, 16, (531,437,0): 34, 14, 16, (531,438,0): 33, 13, 15, (531,439,0): 33, 13, 15, (531,440,0): 34, 14, 16, (531,441,0): 34, 14, 16, (531,442,0): 34, 14, 16, (531,443,0): 33, 13, 15, (531,444,0): 33, 13, 15, (531,445,0): 32, 12, 14, (531,446,0): 32, 12, 14, (531,447,0): 31, 11, 13, (531,448,0): 33, 13, 15, (531,449,0): 33, 13, 15, (531,450,0): 33, 13, 15, (531,451,0): 33, 13, 15, (531,452,0): 33, 13, 15, (531,453,0): 33, 13, 15, (531,454,0): 33, 13, 15, (531,455,0): 33, 13, 15, (531,456,0): 34, 14, 16, (531,457,0): 34, 14, 16, (531,458,0): 35, 15, 17, (531,459,0): 36, 16, 18, (531,460,0): 37, 17, 19, (531,461,0): 38, 18, 20, (531,462,0): 39, 19, 21, (531,463,0): 41, 19, 22, (531,464,0): 43, 14, 19, (531,465,0): 44, 15, 20, (531,466,0): 42, 15, 20, (531,467,0): 41, 16, 20, (531,468,0): 38, 16, 19, (531,469,0): 34, 15, 17, (531,470,0): 32, 13, 15, (531,471,0): 29, 13, 14, (531,472,0): 27, 13, 13, (531,473,0): 26, 12, 12, (531,474,0): 26, 12, 12, (531,475,0): 26, 12, 12, (531,476,0): 28, 12, 13, (531,477,0): 30, 14, 15, (531,478,0): 34, 15, 17, (531,479,0): 35, 16, 18, (531,480,0): 35, 14, 19, (531,481,0): 34, 13, 20, (531,482,0): 34, 13, 20, (531,483,0): 32, 11, 18, (531,484,0): 30, 10, 19, (531,485,0): 29, 9, 18, (531,486,0): 29, 9, 18, (531,487,0): 28, 8, 17, (531,488,0): 24, 7, 17, (531,489,0): 24, 7, 17, (531,490,0): 22, 6, 17, (531,491,0): 21, 5, 16, (531,492,0): 20, 4, 15, (531,493,0): 19, 3, 14, (531,494,0): 16, 2, 15, (531,495,0): 16, 2, 15, (531,496,0): 16, 4, 14, (531,497,0): 17, 5, 15, (531,498,0): 17, 5, 15, (531,499,0): 17, 5, 15, (531,500,0): 18, 6, 16, (531,501,0): 19, 7, 17, (531,502,0): 20, 7, 17, (531,503,0): 20, 7, 17, (531,504,0): 24, 8, 19, (531,505,0): 24, 8, 19, (531,506,0): 26, 8, 20, (531,507,0): 27, 9, 21, (531,508,0): 26, 8, 20, (531,509,0): 25, 7, 19, (531,510,0): 23, 5, 17, (531,511,0): 21, 5, 16, (531,512,0): 17, 4, 13, (531,513,0): 16, 5, 13, (531,514,0): 18, 5, 14, (531,515,0): 20, 7, 16, (531,516,0): 24, 9, 16, (531,517,0): 26, 9, 17, (531,518,0): 29, 10, 16, (531,519,0): 30, 11, 17, (531,520,0): 30, 7, 15, (531,521,0): 31, 8, 16, (531,522,0): 34, 9, 15, (531,523,0): 36, 11, 17, (531,524,0): 39, 12, 17, (531,525,0): 43, 14, 19, (531,526,0): 46, 15, 21, (531,527,0): 47, 16, 22, (531,528,0): 45, 14, 20, (531,529,0): 44, 13, 19, (531,530,0): 43, 12, 18, (531,531,0): 42, 11, 17, (531,532,0): 40, 10, 18, (531,533,0): 39, 9, 17, (531,534,0): 36, 9, 18, (531,535,0): 36, 9, 18, (531,536,0): 35, 8, 17, (531,537,0): 34, 8, 17, (531,538,0): 35, 9, 20, (531,539,0): 35, 9, 20, (531,540,0): 33, 9, 22, (531,541,0): 33, 9, 22, (531,542,0): 33, 9, 22, (531,543,0): 33, 9, 22, (531,544,0): 30, 9, 18, (531,545,0): 30, 9, 16, (531,546,0): 30, 9, 16, (531,547,0): 30, 9, 16, (531,548,0): 30, 9, 16, (531,549,0): 30, 9, 16, (531,550,0): 30, 9, 16, (531,551,0): 30, 9, 16, (531,552,0): 30, 9, 16, (531,553,0): 30, 9, 16, (531,554,0): 30, 9, 16, (531,555,0): 30, 9, 16, (531,556,0): 30, 9, 16, (531,557,0): 30, 9, 16, (531,558,0): 30, 9, 16, (531,559,0): 29, 9, 18, (531,560,0): 28, 11, 21, (531,561,0): 28, 11, 21, (531,562,0): 27, 10, 20, (531,563,0): 27, 10, 20, (531,564,0): 26, 9, 19, (531,565,0): 26, 9, 19, (531,566,0): 24, 8, 18, (531,567,0): 24, 8, 18, (531,568,0): 21, 8, 17, (531,569,0): 21, 8, 17, (531,570,0): 20, 9, 17, (531,571,0): 21, 10, 18, (531,572,0): 22, 11, 19, (531,573,0): 22, 11, 19, (531,574,0): 22, 11, 19, (531,575,0): 23, 12, 20, (531,576,0): 28, 17, 25, (531,577,0): 28, 17, 25, (531,578,0): 28, 17, 25, (531,579,0): 28, 17, 25, (531,580,0): 28, 17, 25, (531,581,0): 28, 17, 25, (531,582,0): 28, 17, 25, (531,583,0): 28, 17, 25, (531,584,0): 28, 17, 25, (531,585,0): 28, 17, 25, (531,586,0): 28, 17, 25, (531,587,0): 27, 16, 24, (531,588,0): 27, 16, 24, (531,589,0): 26, 15, 23, (531,590,0): 26, 15, 23, (531,591,0): 26, 15, 23, (531,592,0): 25, 12, 19, (531,593,0): 28, 13, 18, (531,594,0): 32, 13, 19, (531,595,0): 38, 12, 21, (531,596,0): 44, 12, 23, (531,597,0): 50, 14, 26, (531,598,0): 54, 13, 27, (531,599,0): 55, 13, 27, (532,0,0): 38, 62, 74, (532,1,0): 38, 62, 74, (532,2,0): 39, 63, 75, (532,3,0): 39, 63, 75, (532,4,0): 40, 64, 76, (532,5,0): 40, 64, 76, (532,6,0): 41, 65, 77, (532,7,0): 41, 65, 77, (532,8,0): 44, 68, 80, (532,9,0): 44, 68, 80, (532,10,0): 44, 68, 80, (532,11,0): 44, 68, 80, (532,12,0): 44, 68, 80, (532,13,0): 44, 68, 80, (532,14,0): 44, 68, 80, (532,15,0): 44, 68, 80, (532,16,0): 42, 66, 78, (532,17,0): 43, 67, 79, (532,18,0): 45, 69, 81, (532,19,0): 46, 70, 82, (532,20,0): 47, 69, 82, (532,21,0): 46, 68, 81, (532,22,0): 44, 66, 79, (532,23,0): 43, 65, 78, (532,24,0): 48, 67, 81, (532,25,0): 49, 68, 82, (532,26,0): 50, 68, 82, (532,27,0): 50, 68, 82, (532,28,0): 51, 69, 83, (532,29,0): 52, 70, 84, (532,30,0): 53, 69, 84, (532,31,0): 52, 70, 82, (532,32,0): 51, 71, 82, (532,33,0): 52, 72, 81, (532,34,0): 52, 72, 81, (532,35,0): 52, 72, 81, (532,36,0): 54, 72, 82, (532,37,0): 55, 73, 83, (532,38,0): 55, 74, 81, (532,39,0): 55, 74, 81, (532,40,0): 57, 74, 81, (532,41,0): 57, 74, 81, (532,42,0): 59, 74, 79, (532,43,0): 60, 75, 80, (532,44,0): 60, 75, 80, (532,45,0): 61, 76, 81, (532,46,0): 62, 75, 81, (532,47,0): 64, 75, 81, (532,48,0): 66, 73, 81, (532,49,0): 69, 73, 82, (532,50,0): 69, 73, 82, (532,51,0): 69, 73, 82, (532,52,0): 70, 74, 83, (532,53,0): 71, 75, 84, (532,54,0): 71, 75, 84, (532,55,0): 71, 75, 84, (532,56,0): 71, 75, 84, (532,57,0): 71, 75, 84, (532,58,0): 71, 75, 84, (532,59,0): 71, 75, 84, (532,60,0): 71, 75, 84, (532,61,0): 71, 75, 84, (532,62,0): 71, 75, 84, (532,63,0): 71, 75, 84, (532,64,0): 72, 74, 87, (532,65,0): 73, 75, 88, (532,66,0): 73, 75, 88, (532,67,0): 73, 75, 88, (532,68,0): 76, 75, 89, (532,69,0): 77, 76, 90, (532,70,0): 78, 76, 90, (532,71,0): 78, 76, 90, (532,72,0): 78, 76, 90, (532,73,0): 79, 77, 91, (532,74,0): 81, 77, 92, (532,75,0): 82, 78, 93, (532,76,0): 85, 78, 94, (532,77,0): 86, 79, 95, (532,78,0): 87, 80, 96, (532,79,0): 85, 81, 95, (532,80,0): 85, 81, 95, (532,81,0): 85, 83, 94, (532,82,0): 86, 84, 95, (532,83,0): 87, 85, 96, (532,84,0): 89, 86, 97, (532,85,0): 90, 87, 98, (532,86,0): 91, 88, 99, (532,87,0): 91, 88, 99, (532,88,0): 92, 86, 98, (532,89,0): 93, 87, 99, (532,90,0): 94, 86, 99, (532,91,0): 95, 87, 100, (532,92,0): 94, 86, 99, (532,93,0): 93, 85, 98, (532,94,0): 94, 83, 97, (532,95,0): 91, 83, 96, (532,96,0): 89, 83, 95, (532,97,0): 88, 82, 94, (532,98,0): 87, 81, 91, (532,99,0): 87, 79, 90, (532,100,0): 86, 78, 89, (532,101,0): 87, 77, 86, (532,102,0): 86, 76, 85, (532,103,0): 85, 75, 83, (532,104,0): 83, 76, 84, (532,105,0): 83, 75, 86, (532,106,0): 83, 77, 89, (532,107,0): 82, 78, 92, (532,108,0): 83, 81, 95, (532,109,0): 83, 82, 98, (532,110,0): 82, 84, 99, (532,111,0): 82, 83, 101, (532,112,0): 83, 84, 104, (532,113,0): 82, 83, 103, (532,114,0): 82, 83, 104, (532,115,0): 82, 83, 103, (532,116,0): 81, 82, 103, (532,117,0): 81, 82, 102, (532,118,0): 81, 82, 103, (532,119,0): 81, 82, 102, (532,120,0): 80, 81, 102, (532,121,0): 79, 80, 100, (532,122,0): 78, 79, 100, (532,123,0): 76, 77, 97, (532,124,0): 76, 77, 98, (532,125,0): 76, 77, 97, (532,126,0): 76, 77, 98, (532,127,0): 77, 78, 98, (532,128,0): 74, 73, 89, (532,129,0): 74, 72, 86, (532,130,0): 73, 71, 85, (532,131,0): 72, 70, 84, (532,132,0): 72, 70, 83, (532,133,0): 72, 70, 83, (532,134,0): 73, 71, 84, (532,135,0): 74, 72, 83, (532,136,0): 74, 72, 83, (532,137,0): 74, 73, 81, (532,138,0): 74, 73, 81, (532,139,0): 74, 73, 81, (532,140,0): 74, 73, 81, (532,141,0): 74, 73, 79, (532,142,0): 74, 73, 79, (532,143,0): 74, 73, 81, (532,144,0): 70, 67, 78, (532,145,0): 71, 67, 81, (532,146,0): 72, 68, 82, (532,147,0): 72, 68, 82, (532,148,0): 72, 68, 82, (532,149,0): 71, 68, 79, (532,150,0): 69, 66, 77, (532,151,0): 68, 65, 74, (532,152,0): 66, 63, 72, (532,153,0): 65, 62, 71, (532,154,0): 64, 61, 68, (532,155,0): 62, 59, 66, (532,156,0): 61, 59, 64, (532,157,0): 61, 59, 64, (532,158,0): 62, 60, 65, (532,159,0): 63, 61, 66, (532,160,0): 62, 60, 65, (532,161,0): 61, 59, 64, (532,162,0): 61, 59, 64, (532,163,0): 60, 58, 63, (532,164,0): 61, 56, 62, (532,165,0): 60, 55, 59, (532,166,0): 60, 54, 58, (532,167,0): 59, 53, 57, (532,168,0): 60, 54, 58, (532,169,0): 59, 53, 55, (532,170,0): 61, 52, 55, (532,171,0): 61, 52, 53, (532,172,0): 61, 51, 52, (532,173,0): 61, 51, 52, (532,174,0): 60, 50, 51, (532,175,0): 60, 50, 49, (532,176,0): 57, 49, 47, (532,177,0): 57, 49, 47, (532,178,0): 57, 48, 49, (532,179,0): 56, 47, 48, (532,180,0): 56, 47, 48, (532,181,0): 55, 46, 47, (532,182,0): 55, 46, 49, (532,183,0): 54, 45, 48, (532,184,0): 53, 44, 49, (532,185,0): 53, 44, 49, (532,186,0): 53, 44, 49, (532,187,0): 53, 43, 51, (532,188,0): 53, 43, 51, (532,189,0): 53, 43, 51, (532,190,0): 53, 43, 51, (532,191,0): 53, 43, 51, (532,192,0): 50, 44, 48, (532,193,0): 50, 44, 46, (532,194,0): 49, 43, 45, (532,195,0): 48, 42, 44, (532,196,0): 48, 42, 44, (532,197,0): 47, 41, 43, (532,198,0): 47, 41, 43, (532,199,0): 46, 40, 42, (532,200,0): 44, 38, 40, (532,201,0): 44, 38, 40, (532,202,0): 44, 38, 40, (532,203,0): 43, 37, 39, (532,204,0): 43, 37, 39, (532,205,0): 42, 36, 38, (532,206,0): 42, 36, 38, (532,207,0): 42, 36, 40, (532,208,0): 40, 35, 41, (532,209,0): 40, 35, 42, (532,210,0): 40, 35, 42, (532,211,0): 39, 34, 41, (532,212,0): 38, 33, 40, (532,213,0): 38, 33, 40, (532,214,0): 38, 33, 40, (532,215,0): 37, 32, 39, (532,216,0): 37, 32, 39, (532,217,0): 37, 32, 39, (532,218,0): 37, 32, 39, (532,219,0): 37, 32, 39, (532,220,0): 37, 32, 39, (532,221,0): 37, 32, 39, (532,222,0): 37, 32, 39, (532,223,0): 35, 32, 39, (532,224,0): 35, 34, 40, (532,225,0): 33, 34, 39, (532,226,0): 32, 33, 38, (532,227,0): 31, 32, 37, (532,228,0): 31, 32, 37, (532,229,0): 32, 33, 38, (532,230,0): 33, 34, 39, (532,231,0): 34, 35, 40, (532,232,0): 34, 35, 40, (532,233,0): 34, 35, 40, (532,234,0): 34, 35, 40, (532,235,0): 34, 35, 40, (532,236,0): 34, 35, 40, (532,237,0): 34, 35, 40, (532,238,0): 34, 35, 40, (532,239,0): 35, 34, 40, (532,240,0): 36, 33, 44, (532,241,0): 39, 33, 45, (532,242,0): 39, 33, 45, (532,243,0): 40, 34, 46, (532,244,0): 40, 34, 46, (532,245,0): 41, 35, 47, (532,246,0): 41, 35, 47, (532,247,0): 41, 35, 47, (532,248,0): 43, 37, 49, (532,249,0): 43, 37, 49, (532,250,0): 43, 37, 49, (532,251,0): 43, 37, 49, (532,252,0): 43, 37, 49, (532,253,0): 43, 37, 49, (532,254,0): 43, 37, 49, (532,255,0): 43, 37, 49, (532,256,0): 41, 38, 49, (532,257,0): 41, 38, 49, (532,258,0): 44, 38, 50, (532,259,0): 45, 39, 51, (532,260,0): 46, 40, 52, (532,261,0): 47, 41, 53, (532,262,0): 49, 41, 54, (532,263,0): 50, 42, 55, (532,264,0): 53, 42, 56, (532,265,0): 54, 43, 57, (532,266,0): 54, 43, 57, (532,267,0): 55, 44, 58, (532,268,0): 58, 46, 60, (532,269,0): 59, 47, 61, (532,270,0): 59, 47, 61, (532,271,0): 61, 47, 62, (532,272,0): 62, 45, 63, (532,273,0): 63, 44, 63, (532,274,0): 62, 45, 63, (532,275,0): 61, 47, 64, (532,276,0): 61, 49, 63, (532,277,0): 60, 49, 63, (532,278,0): 60, 49, 63, (532,279,0): 59, 51, 64, (532,280,0): 62, 54, 65, (532,281,0): 62, 54, 65, (532,282,0): 62, 55, 63, (532,283,0): 64, 54, 63, (532,284,0): 66, 56, 65, (532,285,0): 69, 57, 67, (532,286,0): 73, 60, 69, (532,287,0): 76, 60, 70, (532,288,0): 79, 57, 69, (532,289,0): 81, 57, 70, (532,290,0): 84, 58, 69, (532,291,0): 86, 59, 68, (532,292,0): 89, 59, 67, (532,293,0): 91, 60, 65, (532,294,0): 93, 61, 66, (532,295,0): 93, 61, 64, (532,296,0): 98, 63, 67, (532,297,0): 98, 63, 67, (532,298,0): 97, 62, 66, (532,299,0): 95, 63, 66, (532,300,0): 95, 64, 69, (532,301,0): 96, 65, 70, (532,302,0): 98, 67, 73, (532,303,0): 102, 67, 73, (532,304,0): 110, 67, 74, (532,305,0): 117, 71, 74, (532,306,0): 124, 78, 80, (532,307,0): 131, 83, 81, (532,308,0): 137, 90, 84, (532,309,0): 145, 97, 87, (532,310,0): 154, 105, 91, (532,311,0): 160, 111, 94, (532,312,0): 159, 111, 91, (532,313,0): 163, 117, 94, (532,314,0): 163, 118, 95, (532,315,0): 161, 119, 95, (532,316,0): 170, 129, 107, (532,317,0): 184, 146, 123, (532,318,0): 194, 156, 135, (532,319,0): 191, 155, 141, (532,320,0): 186, 154, 155, (532,321,0): 172, 141, 149, (532,322,0): 160, 128, 139, (532,323,0): 154, 122, 135, (532,324,0): 149, 118, 133, (532,325,0): 138, 107, 123, (532,326,0): 120, 91, 109, (532,327,0): 107, 78, 98, (532,328,0): 99, 70, 90, (532,329,0): 90, 61, 79, (532,330,0): 77, 50, 65, (532,331,0): 70, 44, 55, (532,332,0): 65, 42, 50, (532,333,0): 64, 41, 47, (532,334,0): 61, 39, 42, (532,335,0): 57, 37, 39, (532,336,0): 52, 33, 37, (532,337,0): 49, 32, 38, (532,338,0): 46, 29, 35, (532,339,0): 42, 25, 31, (532,340,0): 38, 21, 29, (532,341,0): 35, 18, 26, (532,342,0): 32, 17, 24, (532,343,0): 31, 16, 23, (532,344,0): 28, 15, 24, (532,345,0): 27, 14, 23, (532,346,0): 26, 14, 24, (532,347,0): 25, 13, 23, (532,348,0): 25, 13, 23, (532,349,0): 24, 12, 22, (532,350,0): 24, 12, 24, (532,351,0): 24, 12, 22, (532,352,0): 26, 10, 21, (532,353,0): 26, 10, 20, (532,354,0): 26, 10, 20, (532,355,0): 26, 10, 20, (532,356,0): 26, 10, 20, (532,357,0): 26, 10, 20, (532,358,0): 26, 10, 20, (532,359,0): 26, 10, 20, (532,360,0): 25, 9, 19, (532,361,0): 25, 9, 19, (532,362,0): 25, 9, 19, (532,363,0): 24, 8, 18, (532,364,0): 24, 8, 18, (532,365,0): 23, 7, 17, (532,366,0): 23, 7, 17, (532,367,0): 21, 8, 17, (532,368,0): 21, 10, 18, (532,369,0): 19, 9, 17, (532,370,0): 17, 7, 15, (532,371,0): 16, 6, 14, (532,372,0): 15, 5, 13, (532,373,0): 16, 6, 14, (532,374,0): 16, 6, 14, (532,375,0): 17, 7, 15, (532,376,0): 17, 7, 15, (532,377,0): 17, 7, 15, (532,378,0): 17, 7, 15, (532,379,0): 17, 7, 15, (532,380,0): 17, 7, 15, (532,381,0): 17, 7, 15, (532,382,0): 17, 7, 15, (532,383,0): 15, 8, 15, (532,384,0): 14, 7, 14, (532,385,0): 13, 8, 14, (532,386,0): 14, 7, 14, (532,387,0): 13, 8, 14, (532,388,0): 14, 7, 14, (532,389,0): 13, 8, 14, (532,390,0): 14, 7, 14, (532,391,0): 13, 8, 14, (532,392,0): 14, 7, 14, (532,393,0): 14, 9, 15, (532,394,0): 16, 9, 16, (532,395,0): 17, 12, 18, (532,396,0): 18, 11, 18, (532,397,0): 17, 12, 18, (532,398,0): 17, 10, 17, (532,399,0): 19, 10, 15, (532,400,0): 23, 10, 17, (532,401,0): 26, 11, 16, (532,402,0): 26, 11, 16, (532,403,0): 26, 11, 16, (532,404,0): 26, 11, 16, (532,405,0): 26, 11, 16, (532,406,0): 26, 11, 16, (532,407,0): 25, 10, 15, (532,408,0): 27, 12, 17, (532,409,0): 27, 12, 17, (532,410,0): 27, 12, 17, (532,411,0): 27, 12, 17, (532,412,0): 27, 12, 17, (532,413,0): 27, 12, 17, (532,414,0): 27, 12, 17, (532,415,0): 27, 12, 17, (532,416,0): 28, 13, 18, (532,417,0): 28, 13, 18, (532,418,0): 27, 12, 17, (532,419,0): 26, 11, 16, (532,420,0): 26, 11, 16, (532,421,0): 25, 10, 15, (532,422,0): 24, 9, 14, (532,423,0): 24, 9, 14, (532,424,0): 24, 9, 14, (532,425,0): 24, 9, 14, (532,426,0): 24, 9, 14, (532,427,0): 24, 9, 14, (532,428,0): 24, 9, 14, (532,429,0): 24, 9, 14, (532,430,0): 24, 9, 14, (532,431,0): 25, 9, 12, (532,432,0): 29, 10, 14, (532,433,0): 30, 11, 13, (532,434,0): 31, 12, 14, (532,435,0): 32, 13, 15, (532,436,0): 33, 14, 16, (532,437,0): 33, 14, 16, (532,438,0): 32, 13, 15, (532,439,0): 31, 12, 14, (532,440,0): 33, 14, 16, (532,441,0): 32, 13, 15, (532,442,0): 32, 13, 15, (532,443,0): 31, 12, 14, (532,444,0): 31, 12, 14, (532,445,0): 30, 11, 13, (532,446,0): 30, 11, 13, (532,447,0): 30, 11, 13, (532,448,0): 33, 13, 15, (532,449,0): 33, 13, 15, (532,450,0): 33, 13, 15, (532,451,0): 33, 13, 15, (532,452,0): 33, 13, 15, (532,453,0): 33, 13, 15, (532,454,0): 33, 13, 15, (532,455,0): 33, 13, 15, (532,456,0): 34, 14, 16, (532,457,0): 35, 15, 17, (532,458,0): 36, 16, 18, (532,459,0): 37, 17, 19, (532,460,0): 38, 18, 20, (532,461,0): 39, 19, 21, (532,462,0): 39, 19, 21, (532,463,0): 40, 18, 21, (532,464,0): 41, 14, 19, (532,465,0): 43, 14, 19, (532,466,0): 41, 14, 19, (532,467,0): 40, 15, 19, (532,468,0): 37, 15, 18, (532,469,0): 33, 14, 16, (532,470,0): 31, 12, 14, (532,471,0): 28, 12, 13, (532,472,0): 27, 13, 13, (532,473,0): 27, 13, 13, (532,474,0): 28, 12, 13, (532,475,0): 28, 12, 13, (532,476,0): 31, 12, 14, (532,477,0): 33, 14, 16, (532,478,0): 36, 16, 18, (532,479,0): 37, 17, 19, (532,480,0): 36, 15, 20, (532,481,0): 35, 14, 19, (532,482,0): 35, 14, 19, (532,483,0): 34, 13, 18, (532,484,0): 32, 13, 19, (532,485,0): 30, 11, 17, (532,486,0): 30, 10, 19, (532,487,0): 29, 9, 18, (532,488,0): 25, 8, 16, (532,489,0): 25, 8, 16, (532,490,0): 23, 7, 17, (532,491,0): 22, 6, 16, (532,492,0): 21, 5, 16, (532,493,0): 20, 4, 15, (532,494,0): 17, 4, 14, (532,495,0): 17, 4, 14, (532,496,0): 17, 5, 15, (532,497,0): 17, 5, 15, (532,498,0): 17, 5, 15, (532,499,0): 18, 6, 16, (532,500,0): 19, 7, 17, (532,501,0): 19, 7, 17, (532,502,0): 20, 7, 17, (532,503,0): 21, 8, 18, (532,504,0): 24, 8, 19, (532,505,0): 25, 9, 20, (532,506,0): 26, 8, 20, (532,507,0): 26, 8, 20, (532,508,0): 26, 8, 20, (532,509,0): 25, 7, 19, (532,510,0): 23, 5, 17, (532,511,0): 22, 6, 17, (532,512,0): 17, 4, 13, (532,513,0): 17, 4, 13, (532,514,0): 20, 4, 14, (532,515,0): 22, 6, 16, (532,516,0): 25, 8, 16, (532,517,0): 26, 9, 17, (532,518,0): 29, 10, 16, (532,519,0): 30, 11, 17, (532,520,0): 30, 7, 15, (532,521,0): 31, 8, 16, (532,522,0): 34, 9, 15, (532,523,0): 36, 11, 17, (532,524,0): 39, 12, 17, (532,525,0): 40, 13, 18, (532,526,0): 43, 14, 19, (532,527,0): 44, 15, 20, (532,528,0): 42, 13, 18, (532,529,0): 42, 13, 18, (532,530,0): 42, 13, 18, (532,531,0): 41, 12, 17, (532,532,0): 40, 10, 18, (532,533,0): 39, 9, 17, (532,534,0): 35, 8, 17, (532,535,0): 35, 8, 17, (532,536,0): 34, 8, 17, (532,537,0): 34, 8, 17, (532,538,0): 33, 7, 18, (532,539,0): 31, 8, 18, (532,540,0): 31, 7, 20, (532,541,0): 31, 7, 20, (532,542,0): 31, 7, 20, (532,543,0): 31, 7, 20, (532,544,0): 29, 8, 17, (532,545,0): 28, 8, 17, (532,546,0): 28, 8, 17, (532,547,0): 28, 8, 17, (532,548,0): 28, 8, 17, (532,549,0): 28, 8, 17, (532,550,0): 28, 8, 17, (532,551,0): 28, 8, 17, (532,552,0): 28, 8, 17, (532,553,0): 28, 8, 17, (532,554,0): 28, 8, 17, (532,555,0): 28, 8, 17, (532,556,0): 28, 8, 17, (532,557,0): 29, 9, 18, (532,558,0): 29, 9, 18, (532,559,0): 29, 9, 18, (532,560,0): 28, 11, 21, (532,561,0): 28, 11, 21, (532,562,0): 27, 10, 20, (532,563,0): 27, 10, 20, (532,564,0): 26, 9, 19, (532,565,0): 26, 9, 19, (532,566,0): 24, 8, 18, (532,567,0): 24, 8, 18, (532,568,0): 20, 7, 16, (532,569,0): 21, 8, 17, (532,570,0): 20, 9, 17, (532,571,0): 20, 9, 17, (532,572,0): 21, 10, 18, (532,573,0): 22, 11, 19, (532,574,0): 22, 11, 19, (532,575,0): 22, 11, 19, (532,576,0): 26, 15, 23, (532,577,0): 26, 15, 23, (532,578,0): 26, 15, 23, (532,579,0): 26, 15, 23, (532,580,0): 26, 15, 23, (532,581,0): 26, 15, 23, (532,582,0): 26, 15, 23, (532,583,0): 26, 15, 23, (532,584,0): 28, 17, 25, (532,585,0): 28, 17, 25, (532,586,0): 28, 17, 25, (532,587,0): 27, 16, 24, (532,588,0): 27, 16, 24, (532,589,0): 26, 15, 23, (532,590,0): 26, 15, 23, (532,591,0): 26, 15, 23, (532,592,0): 23, 12, 18, (532,593,0): 25, 12, 19, (532,594,0): 30, 13, 21, (532,595,0): 34, 13, 22, (532,596,0): 40, 12, 24, (532,597,0): 44, 12, 25, (532,598,0): 47, 13, 27, (532,599,0): 50, 14, 28, (533,0,0): 38, 62, 74, (533,1,0): 38, 62, 74, (533,2,0): 39, 63, 75, (533,3,0): 39, 63, 75, (533,4,0): 40, 64, 76, (533,5,0): 40, 64, 76, (533,6,0): 41, 65, 77, (533,7,0): 41, 65, 77, (533,8,0): 42, 66, 78, (533,9,0): 42, 66, 78, (533,10,0): 42, 66, 78, (533,11,0): 42, 66, 78, (533,12,0): 42, 66, 78, (533,13,0): 42, 66, 78, (533,14,0): 42, 66, 78, (533,15,0): 42, 66, 78, (533,16,0): 42, 66, 78, (533,17,0): 43, 67, 79, (533,18,0): 44, 68, 80, (533,19,0): 44, 68, 80, (533,20,0): 45, 67, 80, (533,21,0): 45, 67, 80, (533,22,0): 44, 66, 79, (533,23,0): 43, 65, 78, (533,24,0): 48, 67, 81, (533,25,0): 48, 67, 81, (533,26,0): 49, 67, 81, (533,27,0): 50, 68, 82, (533,28,0): 50, 68, 82, (533,29,0): 51, 69, 83, (533,30,0): 52, 68, 83, (533,31,0): 53, 69, 82, (533,32,0): 52, 70, 82, (533,33,0): 51, 71, 80, (533,34,0): 51, 71, 80, (533,35,0): 52, 72, 81, (533,36,0): 53, 71, 81, (533,37,0): 54, 72, 82, (533,38,0): 54, 73, 80, (533,39,0): 55, 74, 81, (533,40,0): 57, 74, 81, (533,41,0): 57, 74, 81, (533,42,0): 59, 74, 79, (533,43,0): 60, 75, 80, (533,44,0): 60, 75, 80, (533,45,0): 61, 76, 81, (533,46,0): 62, 75, 81, (533,47,0): 64, 75, 81, (533,48,0): 66, 73, 81, (533,49,0): 68, 72, 81, (533,50,0): 68, 72, 81, (533,51,0): 69, 73, 82, (533,52,0): 69, 73, 82, (533,53,0): 70, 74, 83, (533,54,0): 70, 74, 83, (533,55,0): 71, 75, 84, (533,56,0): 71, 75, 84, (533,57,0): 71, 75, 84, (533,58,0): 71, 75, 84, (533,59,0): 71, 75, 84, (533,60,0): 71, 75, 84, (533,61,0): 71, 75, 84, (533,62,0): 71, 75, 84, (533,63,0): 71, 75, 84, (533,64,0): 72, 74, 87, (533,65,0): 72, 74, 87, (533,66,0): 72, 74, 87, (533,67,0): 73, 75, 88, (533,68,0): 75, 74, 88, (533,69,0): 76, 75, 89, (533,70,0): 77, 75, 89, (533,71,0): 78, 76, 90, (533,72,0): 78, 76, 90, (533,73,0): 78, 76, 90, (533,74,0): 80, 76, 91, (533,75,0): 81, 77, 92, (533,76,0): 84, 77, 93, (533,77,0): 85, 78, 94, (533,78,0): 86, 79, 95, (533,79,0): 84, 80, 94, (533,80,0): 85, 81, 95, (533,81,0): 84, 82, 93, (533,82,0): 85, 83, 94, (533,83,0): 86, 84, 95, (533,84,0): 88, 85, 96, (533,85,0): 89, 86, 97, (533,86,0): 90, 87, 98, (533,87,0): 90, 87, 98, (533,88,0): 92, 86, 98, (533,89,0): 92, 86, 98, (533,90,0): 94, 86, 99, (533,91,0): 95, 87, 100, (533,92,0): 95, 87, 100, (533,93,0): 94, 86, 99, (533,94,0): 95, 84, 98, (533,95,0): 94, 83, 97, (533,96,0): 93, 85, 96, (533,97,0): 92, 84, 95, (533,98,0): 91, 83, 94, (533,99,0): 90, 82, 93, (533,100,0): 90, 80, 89, (533,101,0): 89, 79, 88, (533,102,0): 88, 78, 86, (533,103,0): 87, 77, 85, (533,104,0): 85, 78, 86, (533,105,0): 85, 77, 88, (533,106,0): 85, 79, 91, (533,107,0): 86, 80, 92, (533,108,0): 85, 81, 95, (533,109,0): 85, 83, 97, (533,110,0): 84, 83, 99, (533,111,0): 82, 84, 99, (533,112,0): 81, 82, 102, (533,113,0): 81, 82, 103, (533,114,0): 81, 82, 103, (533,115,0): 81, 82, 103, (533,116,0): 81, 82, 103, (533,117,0): 81, 82, 103, (533,118,0): 81, 82, 103, (533,119,0): 81, 82, 103, (533,120,0): 82, 83, 104, (533,121,0): 80, 81, 102, (533,122,0): 79, 80, 101, (533,123,0): 77, 78, 99, (533,124,0): 76, 77, 98, (533,125,0): 76, 77, 98, (533,126,0): 76, 77, 98, (533,127,0): 78, 76, 97, (533,128,0): 75, 72, 89, (533,129,0): 75, 73, 87, (533,130,0): 74, 72, 86, (533,131,0): 74, 72, 86, (533,132,0): 74, 72, 85, (533,133,0): 75, 73, 86, (533,134,0): 76, 74, 87, (533,135,0): 77, 75, 88, (533,136,0): 76, 74, 85, (533,137,0): 76, 74, 85, (533,138,0): 76, 74, 85, (533,139,0): 76, 75, 83, (533,140,0): 76, 74, 85, (533,141,0): 76, 75, 83, (533,142,0): 76, 75, 83, (533,143,0): 76, 75, 83, (533,144,0): 71, 68, 79, (533,145,0): 72, 68, 82, (533,146,0): 73, 69, 83, (533,147,0): 74, 70, 84, (533,148,0): 74, 71, 82, (533,149,0): 73, 70, 81, (533,150,0): 72, 69, 78, (533,151,0): 71, 68, 77, (533,152,0): 70, 67, 76, (533,153,0): 69, 66, 75, (533,154,0): 67, 64, 73, (533,155,0): 66, 63, 70, (533,156,0): 65, 62, 69, (533,157,0): 64, 62, 67, (533,158,0): 65, 62, 69, (533,159,0): 65, 63, 68, (533,160,0): 65, 63, 68, (533,161,0): 65, 63, 68, (533,162,0): 64, 62, 67, (533,163,0): 63, 61, 66, (533,164,0): 64, 59, 63, (533,165,0): 63, 58, 62, (533,166,0): 63, 57, 61, (533,167,0): 63, 57, 61, (533,168,0): 62, 56, 58, (533,169,0): 62, 56, 58, (533,170,0): 64, 55, 56, (533,171,0): 63, 54, 55, (533,172,0): 64, 54, 55, (533,173,0): 63, 53, 54, (533,174,0): 63, 53, 52, (533,175,0): 63, 53, 52, (533,176,0): 60, 52, 50, (533,177,0): 60, 51, 52, (533,178,0): 59, 50, 51, (533,179,0): 59, 50, 51, (533,180,0): 58, 49, 50, (533,181,0): 58, 49, 50, (533,182,0): 57, 48, 51, (533,183,0): 57, 48, 51, (533,184,0): 55, 46, 51, (533,185,0): 55, 46, 51, (533,186,0): 55, 46, 51, (533,187,0): 55, 46, 51, (533,188,0): 55, 45, 53, (533,189,0): 55, 45, 53, (533,190,0): 55, 45, 53, (533,191,0): 55, 46, 51, (533,192,0): 54, 48, 50, (533,193,0): 54, 48, 50, (533,194,0): 53, 47, 49, (533,195,0): 52, 46, 48, (533,196,0): 51, 45, 47, (533,197,0): 50, 44, 46, (533,198,0): 49, 43, 45, (533,199,0): 49, 43, 45, (533,200,0): 47, 41, 43, (533,201,0): 46, 40, 42, (533,202,0): 46, 40, 42, (533,203,0): 46, 40, 42, (533,204,0): 45, 39, 41, (533,205,0): 45, 39, 41, (533,206,0): 44, 38, 40, (533,207,0): 44, 38, 42, (533,208,0): 42, 37, 43, (533,209,0): 42, 37, 44, (533,210,0): 41, 36, 43, (533,211,0): 41, 36, 43, (533,212,0): 40, 35, 42, (533,213,0): 40, 35, 42, (533,214,0): 39, 34, 41, (533,215,0): 39, 34, 41, (533,216,0): 37, 32, 39, (533,217,0): 37, 32, 39, (533,218,0): 37, 32, 39, (533,219,0): 37, 32, 39, (533,220,0): 37, 32, 39, (533,221,0): 37, 32, 39, (533,222,0): 37, 32, 39, (533,223,0): 35, 32, 39, (533,224,0): 36, 35, 41, (533,225,0): 34, 35, 40, (533,226,0): 33, 34, 39, (533,227,0): 32, 33, 38, (533,228,0): 32, 33, 38, (533,229,0): 33, 34, 39, (533,230,0): 34, 35, 40, (533,231,0): 35, 36, 41, (533,232,0): 35, 36, 41, (533,233,0): 35, 36, 41, (533,234,0): 35, 36, 41, (533,235,0): 35, 36, 41, (533,236,0): 35, 36, 41, (533,237,0): 35, 36, 41, (533,238,0): 35, 36, 41, (533,239,0): 36, 35, 41, (533,240,0): 37, 34, 45, (533,241,0): 39, 33, 45, (533,242,0): 39, 33, 45, (533,243,0): 40, 34, 46, (533,244,0): 41, 35, 47, (533,245,0): 41, 35, 47, (533,246,0): 41, 35, 47, (533,247,0): 42, 36, 48, (533,248,0): 43, 37, 49, (533,249,0): 43, 37, 49, (533,250,0): 43, 37, 49, (533,251,0): 43, 37, 49, (533,252,0): 43, 37, 49, (533,253,0): 43, 37, 49, (533,254,0): 43, 37, 49, (533,255,0): 43, 37, 49, (533,256,0): 42, 39, 50, (533,257,0): 42, 39, 50, (533,258,0): 45, 39, 51, (533,259,0): 46, 40, 52, (533,260,0): 47, 41, 53, (533,261,0): 48, 42, 54, (533,262,0): 50, 42, 55, (533,263,0): 50, 42, 55, (533,264,0): 53, 42, 56, (533,265,0): 54, 43, 57, (533,266,0): 54, 43, 57, (533,267,0): 55, 44, 58, (533,268,0): 58, 46, 60, (533,269,0): 59, 47, 61, (533,270,0): 59, 47, 61, (533,271,0): 61, 47, 62, (533,272,0): 62, 45, 63, (533,273,0): 64, 45, 64, (533,274,0): 63, 46, 64, (533,275,0): 62, 48, 65, (533,276,0): 61, 49, 63, (533,277,0): 61, 50, 64, (533,278,0): 59, 51, 64, (533,279,0): 58, 52, 62, (533,280,0): 61, 55, 65, (533,281,0): 61, 55, 65, (533,282,0): 62, 55, 63, (533,283,0): 62, 55, 63, (533,284,0): 66, 56, 65, (533,285,0): 68, 58, 67, (533,286,0): 72, 61, 69, (533,287,0): 74, 61, 70, (533,288,0): 80, 58, 70, (533,289,0): 82, 59, 69, (533,290,0): 84, 58, 67, (533,291,0): 86, 59, 66, (533,292,0): 90, 61, 66, (533,293,0): 91, 62, 67, (533,294,0): 92, 61, 66, (533,295,0): 94, 62, 65, (533,296,0): 99, 64, 68, (533,297,0): 99, 64, 68, (533,298,0): 97, 65, 68, (533,299,0): 97, 65, 68, (533,300,0): 97, 66, 71, (533,301,0): 98, 67, 72, (533,302,0): 100, 69, 74, (533,303,0): 104, 69, 73, (533,304,0): 114, 72, 74, (533,305,0): 125, 77, 77, (533,306,0): 134, 86, 84, (533,307,0): 142, 95, 89, (533,308,0): 147, 101, 88, (533,309,0): 152, 105, 89, (533,310,0): 156, 109, 89, (533,311,0): 160, 114, 91, (533,312,0): 156, 110, 86, (533,313,0): 162, 118, 93, (533,314,0): 164, 122, 98, (533,315,0): 166, 124, 102, (533,316,0): 177, 136, 118, (533,317,0): 192, 153, 136, (533,318,0): 196, 157, 142, (533,319,0): 187, 150, 142, (533,320,0): 174, 141, 148, (533,321,0): 159, 127, 140, (533,322,0): 147, 115, 128, (533,323,0): 142, 110, 125, (533,324,0): 135, 104, 119, (533,325,0): 122, 91, 107, (533,326,0): 103, 75, 90, (533,327,0): 93, 65, 80, (533,328,0): 89, 61, 76, (533,329,0): 82, 54, 68, (533,330,0): 73, 47, 58, (533,331,0): 68, 42, 51, (533,332,0): 64, 41, 47, (533,333,0): 62, 40, 43, (533,334,0): 59, 37, 39, (533,335,0): 55, 35, 37, (533,336,0): 51, 32, 36, (533,337,0): 47, 30, 36, (533,338,0): 43, 26, 32, (533,339,0): 40, 23, 29, (533,340,0): 36, 19, 27, (533,341,0): 34, 17, 25, (533,342,0): 31, 16, 23, (533,343,0): 31, 16, 23, (533,344,0): 27, 14, 23, (533,345,0): 27, 14, 23, (533,346,0): 26, 14, 24, (533,347,0): 25, 13, 23, (533,348,0): 24, 12, 22, (533,349,0): 24, 12, 22, (533,350,0): 24, 12, 24, (533,351,0): 23, 11, 21, (533,352,0): 26, 10, 21, (533,353,0): 26, 10, 20, (533,354,0): 26, 10, 20, (533,355,0): 26, 10, 20, (533,356,0): 26, 10, 20, (533,357,0): 26, 10, 20, (533,358,0): 26, 10, 20, (533,359,0): 26, 10, 20, (533,360,0): 25, 9, 19, (533,361,0): 25, 9, 19, (533,362,0): 25, 9, 19, (533,363,0): 24, 8, 18, (533,364,0): 24, 8, 18, (533,365,0): 23, 7, 17, (533,366,0): 23, 7, 17, (533,367,0): 21, 8, 17, (533,368,0): 21, 10, 18, (533,369,0): 19, 9, 17, (533,370,0): 17, 7, 15, (533,371,0): 16, 6, 14, (533,372,0): 15, 5, 13, (533,373,0): 16, 6, 14, (533,374,0): 16, 6, 14, (533,375,0): 17, 7, 15, (533,376,0): 17, 7, 15, (533,377,0): 17, 7, 15, (533,378,0): 17, 7, 15, (533,379,0): 17, 7, 15, (533,380,0): 17, 7, 15, (533,381,0): 17, 7, 15, (533,382,0): 17, 7, 15, (533,383,0): 17, 7, 15, (533,384,0): 13, 8, 14, (533,385,0): 13, 8, 14, (533,386,0): 13, 8, 14, (533,387,0): 13, 8, 14, (533,388,0): 13, 8, 14, (533,389,0): 13, 8, 14, (533,390,0): 13, 8, 14, (533,391,0): 13, 8, 14, (533,392,0): 13, 8, 14, (533,393,0): 14, 9, 15, (533,394,0): 15, 10, 16, (533,395,0): 17, 12, 18, (533,396,0): 17, 12, 18, (533,397,0): 17, 12, 18, (533,398,0): 16, 11, 17, (533,399,0): 17, 11, 15, (533,400,0): 23, 10, 17, (533,401,0): 26, 11, 16, (533,402,0): 27, 12, 17, (533,403,0): 27, 12, 17, (533,404,0): 27, 12, 17, (533,405,0): 27, 12, 17, (533,406,0): 26, 11, 16, (533,407,0): 25, 10, 15, (533,408,0): 26, 11, 16, (533,409,0): 26, 11, 16, (533,410,0): 27, 12, 17, (533,411,0): 27, 12, 17, (533,412,0): 28, 13, 18, (533,413,0): 29, 14, 19, (533,414,0): 29, 14, 19, (533,415,0): 30, 15, 20, (533,416,0): 30, 15, 20, (533,417,0): 29, 14, 19, (533,418,0): 29, 14, 19, (533,419,0): 28, 13, 18, (533,420,0): 27, 12, 17, (533,421,0): 26, 11, 16, (533,422,0): 25, 10, 15, (533,423,0): 25, 10, 15, (533,424,0): 25, 10, 15, (533,425,0): 25, 10, 15, (533,426,0): 25, 10, 15, (533,427,0): 25, 10, 15, (533,428,0): 25, 10, 15, (533,429,0): 25, 10, 15, (533,430,0): 25, 10, 15, (533,431,0): 25, 10, 13, (533,432,0): 28, 9, 13, (533,433,0): 29, 10, 12, (533,434,0): 30, 11, 13, (533,435,0): 32, 13, 15, (533,436,0): 32, 13, 15, (533,437,0): 32, 13, 15, (533,438,0): 31, 12, 14, (533,439,0): 31, 12, 14, (533,440,0): 32, 13, 15, (533,441,0): 32, 13, 15, (533,442,0): 32, 13, 15, (533,443,0): 31, 12, 14, (533,444,0): 30, 11, 13, (533,445,0): 30, 11, 13, (533,446,0): 30, 11, 13, (533,447,0): 29, 10, 12, (533,448,0): 33, 13, 15, (533,449,0): 33, 13, 15, (533,450,0): 33, 13, 15, (533,451,0): 33, 13, 15, (533,452,0): 33, 13, 15, (533,453,0): 33, 13, 15, (533,454,0): 33, 13, 15, (533,455,0): 33, 13, 15, (533,456,0): 33, 13, 15, (533,457,0): 34, 14, 16, (533,458,0): 36, 16, 18, (533,459,0): 37, 17, 19, (533,460,0): 39, 19, 21, (533,461,0): 39, 19, 21, (533,462,0): 39, 19, 21, (533,463,0): 39, 17, 20, (533,464,0): 40, 13, 18, (533,465,0): 41, 14, 19, (533,466,0): 40, 15, 19, (533,467,0): 38, 16, 19, (533,468,0): 35, 15, 17, (533,469,0): 33, 14, 16, (533,470,0): 29, 13, 14, (533,471,0): 28, 12, 13, (533,472,0): 28, 14, 14, (533,473,0): 27, 13, 13, (533,474,0): 28, 12, 13, (533,475,0): 28, 12, 13, (533,476,0): 32, 13, 15, (533,477,0): 33, 14, 16, (533,478,0): 36, 16, 18, (533,479,0): 37, 17, 19, (533,480,0): 37, 16, 21, (533,481,0): 36, 15, 20, (533,482,0): 36, 15, 20, (533,483,0): 35, 14, 19, (533,484,0): 33, 14, 20, (533,485,0): 31, 12, 18, (533,486,0): 31, 11, 20, (533,487,0): 30, 10, 19, (533,488,0): 26, 9, 17, (533,489,0): 26, 9, 17, (533,490,0): 24, 8, 18, (533,491,0): 23, 7, 17, (533,492,0): 22, 6, 17, (533,493,0): 21, 5, 16, (533,494,0): 18, 5, 15, (533,495,0): 18, 5, 15, (533,496,0): 17, 5, 15, (533,497,0): 18, 6, 16, (533,498,0): 18, 6, 16, (533,499,0): 19, 7, 17, (533,500,0): 19, 7, 17, (533,501,0): 20, 8, 18, (533,502,0): 21, 8, 18, (533,503,0): 21, 8, 18, (533,504,0): 25, 9, 20, (533,505,0): 25, 9, 20, (533,506,0): 26, 8, 20, (533,507,0): 25, 7, 19, (533,508,0): 25, 7, 19, (533,509,0): 24, 6, 18, (533,510,0): 24, 6, 18, (533,511,0): 23, 5, 17, (533,512,0): 19, 3, 13, (533,513,0): 18, 5, 14, (533,514,0): 21, 5, 15, (533,515,0): 23, 7, 17, (533,516,0): 25, 8, 16, (533,517,0): 27, 10, 18, (533,518,0): 30, 11, 17, (533,519,0): 31, 12, 18, (533,520,0): 31, 10, 17, (533,521,0): 32, 9, 17, (533,522,0): 35, 10, 16, (533,523,0): 36, 11, 17, (533,524,0): 38, 11, 16, (533,525,0): 39, 12, 17, (533,526,0): 39, 12, 17, (533,527,0): 42, 13, 18, (533,528,0): 42, 13, 18, (533,529,0): 42, 13, 18, (533,530,0): 42, 13, 18, (533,531,0): 42, 13, 18, (533,532,0): 41, 11, 19, (533,533,0): 37, 10, 17, (533,534,0): 35, 8, 17, (533,535,0): 33, 7, 16, (533,536,0): 33, 7, 16, (533,537,0): 33, 7, 16, (533,538,0): 30, 7, 17, (533,539,0): 30, 7, 17, (533,540,0): 29, 5, 18, (533,541,0): 29, 5, 18, (533,542,0): 29, 5, 18, (533,543,0): 27, 5, 17, (533,544,0): 26, 6, 15, (533,545,0): 26, 6, 15, (533,546,0): 26, 6, 15, (533,547,0): 27, 7, 16, (533,548,0): 27, 7, 16, (533,549,0): 28, 8, 17, (533,550,0): 28, 8, 17, (533,551,0): 28, 8, 17, (533,552,0): 27, 7, 16, (533,553,0): 28, 8, 17, (533,554,0): 28, 8, 17, (533,555,0): 28, 8, 17, (533,556,0): 29, 9, 18, (533,557,0): 29, 9, 18, (533,558,0): 30, 10, 19, (533,559,0): 30, 10, 19, (533,560,0): 28, 11, 21, (533,561,0): 28, 11, 21, (533,562,0): 27, 10, 20, (533,563,0): 27, 10, 20, (533,564,0): 26, 9, 19, (533,565,0): 26, 9, 19, (533,566,0): 24, 8, 18, (533,567,0): 24, 8, 18, (533,568,0): 20, 7, 16, (533,569,0): 20, 7, 16, (533,570,0): 19, 8, 16, (533,571,0): 20, 9, 17, (533,572,0): 20, 9, 17, (533,573,0): 21, 10, 18, (533,574,0): 21, 10, 18, (533,575,0): 22, 11, 19, (533,576,0): 25, 14, 22, (533,577,0): 25, 14, 22, (533,578,0): 25, 14, 22, (533,579,0): 25, 14, 22, (533,580,0): 25, 14, 22, (533,581,0): 25, 14, 22, (533,582,0): 25, 14, 22, (533,583,0): 25, 14, 22, (533,584,0): 28, 17, 25, (533,585,0): 28, 17, 25, (533,586,0): 28, 17, 25, (533,587,0): 27, 16, 24, (533,588,0): 27, 16, 24, (533,589,0): 26, 15, 23, (533,590,0): 26, 15, 23, (533,591,0): 26, 15, 23, (533,592,0): 23, 12, 18, (533,593,0): 25, 14, 20, (533,594,0): 30, 15, 22, (533,595,0): 33, 13, 22, (533,596,0): 35, 12, 22, (533,597,0): 38, 10, 22, (533,598,0): 42, 12, 24, (533,599,0): 45, 13, 26, (534,0,0): 38, 62, 74, (534,1,0): 38, 62, 74, (534,2,0): 39, 63, 75, (534,3,0): 39, 63, 75, (534,4,0): 40, 64, 76, (534,5,0): 40, 64, 76, (534,6,0): 41, 65, 77, (534,7,0): 41, 65, 77, (534,8,0): 41, 65, 77, (534,9,0): 41, 65, 77, (534,10,0): 41, 65, 77, (534,11,0): 41, 65, 77, (534,12,0): 41, 65, 77, (534,13,0): 41, 65, 77, (534,14,0): 41, 65, 77, (534,15,0): 41, 65, 77, (534,16,0): 44, 68, 80, (534,17,0): 43, 67, 79, (534,18,0): 42, 66, 78, (534,19,0): 42, 66, 78, (534,20,0): 43, 65, 78, (534,21,0): 43, 65, 78, (534,22,0): 44, 66, 79, (534,23,0): 45, 67, 80, (534,24,0): 47, 66, 80, (534,25,0): 48, 67, 81, (534,26,0): 49, 67, 81, (534,27,0): 50, 68, 82, (534,28,0): 50, 68, 82, (534,29,0): 51, 69, 83, (534,30,0): 52, 68, 83, (534,31,0): 52, 68, 81, (534,32,0): 51, 69, 81, (534,33,0): 52, 70, 80, (534,34,0): 52, 70, 80, (534,35,0): 53, 71, 81, (534,36,0): 53, 71, 81, (534,37,0): 54, 72, 82, (534,38,0): 55, 72, 80, (534,39,0): 55, 72, 80, (534,40,0): 59, 74, 81, (534,41,0): 59, 74, 81, (534,42,0): 60, 73, 79, (534,43,0): 61, 74, 80, (534,44,0): 61, 74, 80, (534,45,0): 62, 75, 81, (534,46,0): 62, 75, 81, (534,47,0): 64, 75, 81, (534,48,0): 65, 72, 80, (534,49,0): 68, 72, 81, (534,50,0): 68, 72, 81, (534,51,0): 69, 73, 82, (534,52,0): 69, 73, 82, (534,53,0): 70, 74, 83, (534,54,0): 70, 74, 83, (534,55,0): 70, 74, 83, (534,56,0): 70, 74, 83, (534,57,0): 70, 74, 83, (534,58,0): 70, 74, 83, (534,59,0): 70, 74, 83, (534,60,0): 70, 74, 83, (534,61,0): 70, 74, 83, (534,62,0): 70, 74, 83, (534,63,0): 70, 74, 83, (534,64,0): 71, 73, 86, (534,65,0): 72, 74, 87, (534,66,0): 72, 74, 87, (534,67,0): 73, 75, 88, (534,68,0): 75, 74, 88, (534,69,0): 76, 75, 89, (534,70,0): 77, 75, 89, (534,71,0): 77, 75, 89, (534,72,0): 78, 76, 90, (534,73,0): 78, 76, 90, (534,74,0): 80, 76, 91, (534,75,0): 81, 77, 92, (534,76,0): 84, 77, 93, (534,77,0): 85, 78, 94, (534,78,0): 86, 79, 95, (534,79,0): 84, 80, 94, (534,80,0): 85, 81, 95, (534,81,0): 84, 82, 93, (534,82,0): 85, 83, 94, (534,83,0): 86, 84, 95, (534,84,0): 88, 85, 96, (534,85,0): 89, 86, 97, (534,86,0): 90, 87, 98, (534,87,0): 90, 87, 98, (534,88,0): 91, 85, 97, (534,89,0): 92, 86, 98, (534,90,0): 94, 86, 99, (534,91,0): 95, 87, 100, (534,92,0): 96, 88, 101, (534,93,0): 95, 87, 100, (534,94,0): 96, 85, 99, (534,95,0): 95, 84, 98, (534,96,0): 99, 89, 100, (534,97,0): 98, 88, 97, (534,98,0): 97, 87, 96, (534,99,0): 95, 85, 94, (534,100,0): 93, 83, 92, (534,101,0): 91, 81, 90, (534,102,0): 88, 81, 89, (534,103,0): 87, 80, 88, (534,104,0): 88, 80, 91, (534,105,0): 88, 80, 91, (534,106,0): 87, 81, 93, (534,107,0): 88, 82, 94, (534,108,0): 86, 82, 96, (534,109,0): 85, 83, 96, (534,110,0): 85, 83, 97, (534,111,0): 84, 83, 99, (534,112,0): 80, 81, 101, (534,113,0): 80, 81, 101, (534,114,0): 80, 81, 101, (534,115,0): 81, 82, 102, (534,116,0): 81, 82, 102, (534,117,0): 81, 82, 102, (534,118,0): 81, 82, 102, (534,119,0): 81, 82, 102, (534,120,0): 82, 83, 103, (534,121,0): 81, 82, 102, (534,122,0): 79, 80, 100, (534,123,0): 77, 78, 98, (534,124,0): 75, 76, 96, (534,125,0): 75, 76, 96, (534,126,0): 75, 76, 96, (534,127,0): 77, 76, 94, (534,128,0): 76, 73, 90, (534,129,0): 76, 72, 87, (534,130,0): 76, 72, 87, (534,131,0): 76, 72, 87, (534,132,0): 77, 73, 87, (534,133,0): 79, 75, 89, (534,134,0): 80, 76, 90, (534,135,0): 82, 78, 92, (534,136,0): 78, 74, 88, (534,137,0): 78, 74, 88, (534,138,0): 78, 74, 88, (534,139,0): 78, 75, 86, (534,140,0): 78, 74, 88, (534,141,0): 78, 75, 86, (534,142,0): 78, 75, 86, (534,143,0): 78, 75, 86, (534,144,0): 74, 70, 84, (534,145,0): 75, 71, 85, (534,146,0): 76, 73, 84, (534,147,0): 77, 74, 85, (534,148,0): 77, 74, 85, (534,149,0): 77, 74, 85, (534,150,0): 76, 73, 84, (534,151,0): 75, 72, 83, (534,152,0): 74, 71, 82, (534,153,0): 73, 70, 81, (534,154,0): 71, 68, 79, (534,155,0): 69, 66, 75, (534,156,0): 67, 64, 73, (534,157,0): 67, 64, 71, (534,158,0): 67, 64, 73, (534,159,0): 68, 65, 72, (534,160,0): 71, 68, 75, (534,161,0): 70, 67, 74, (534,162,0): 70, 68, 73, (534,163,0): 69, 67, 72, (534,164,0): 70, 65, 71, (534,165,0): 68, 63, 69, (534,166,0): 68, 63, 67, (534,167,0): 67, 62, 66, (534,168,0): 65, 59, 61, (534,169,0): 65, 59, 61, (534,170,0): 67, 58, 61, (534,171,0): 66, 57, 60, (534,172,0): 65, 56, 57, (534,173,0): 65, 56, 57, (534,174,0): 66, 56, 57, (534,175,0): 65, 55, 56, (534,176,0): 63, 54, 55, (534,177,0): 62, 53, 56, (534,178,0): 62, 53, 56, (534,179,0): 62, 53, 56, (534,180,0): 61, 52, 55, (534,181,0): 60, 51, 54, (534,182,0): 60, 51, 54, (534,183,0): 60, 51, 54, (534,184,0): 59, 50, 55, (534,185,0): 59, 50, 55, (534,186,0): 59, 50, 55, (534,187,0): 59, 50, 55, (534,188,0): 59, 50, 55, (534,189,0): 59, 50, 55, (534,190,0): 59, 50, 55, (534,191,0): 59, 50, 55, (534,192,0): 58, 52, 54, (534,193,0): 57, 51, 53, (534,194,0): 56, 50, 52, (534,195,0): 55, 49, 51, (534,196,0): 54, 48, 50, (534,197,0): 53, 47, 49, (534,198,0): 52, 46, 48, (534,199,0): 51, 45, 47, (534,200,0): 49, 43, 45, (534,201,0): 49, 43, 45, (534,202,0): 48, 42, 44, (534,203,0): 48, 42, 44, (534,204,0): 47, 41, 43, (534,205,0): 47, 41, 43, (534,206,0): 46, 40, 42, (534,207,0): 46, 40, 44, (534,208,0): 44, 39, 45, (534,209,0): 44, 39, 46, (534,210,0): 43, 38, 45, (534,211,0): 43, 38, 45, (534,212,0): 42, 37, 44, (534,213,0): 42, 37, 44, (534,214,0): 41, 36, 43, (534,215,0): 41, 36, 43, (534,216,0): 38, 33, 40, (534,217,0): 38, 33, 40, (534,218,0): 38, 33, 40, (534,219,0): 38, 33, 40, (534,220,0): 38, 33, 40, (534,221,0): 38, 33, 40, (534,222,0): 38, 33, 40, (534,223,0): 36, 33, 40, (534,224,0): 36, 35, 41, (534,225,0): 35, 34, 40, (534,226,0): 34, 33, 39, (534,227,0): 33, 32, 38, (534,228,0): 33, 32, 38, (534,229,0): 34, 33, 39, (534,230,0): 35, 34, 40, (534,231,0): 36, 35, 41, (534,232,0): 36, 35, 41, (534,233,0): 36, 35, 41, (534,234,0): 36, 35, 41, (534,235,0): 36, 35, 41, (534,236,0): 36, 35, 41, (534,237,0): 36, 35, 41, (534,238,0): 36, 35, 41, (534,239,0): 36, 35, 41, (534,240,0): 37, 34, 45, (534,241,0): 40, 34, 46, (534,242,0): 40, 34, 46, (534,243,0): 40, 34, 46, (534,244,0): 41, 35, 47, (534,245,0): 41, 35, 47, (534,246,0): 42, 36, 48, (534,247,0): 42, 36, 48, (534,248,0): 43, 37, 49, (534,249,0): 43, 37, 49, (534,250,0): 43, 37, 49, (534,251,0): 43, 37, 49, (534,252,0): 43, 37, 49, (534,253,0): 43, 37, 49, (534,254,0): 43, 37, 49, (534,255,0): 43, 37, 49, (534,256,0): 42, 39, 50, (534,257,0): 42, 39, 50, (534,258,0): 45, 39, 51, (534,259,0): 46, 40, 52, (534,260,0): 47, 41, 53, (534,261,0): 48, 42, 54, (534,262,0): 50, 42, 55, (534,263,0): 50, 42, 55, (534,264,0): 53, 42, 56, (534,265,0): 54, 43, 57, (534,266,0): 54, 43, 57, (534,267,0): 55, 44, 58, (534,268,0): 58, 46, 60, (534,269,0): 59, 47, 61, (534,270,0): 59, 47, 61, (534,271,0): 61, 47, 62, (534,272,0): 63, 46, 64, (534,273,0): 64, 45, 64, (534,274,0): 63, 46, 62, (534,275,0): 62, 48, 63, (534,276,0): 61, 49, 63, (534,277,0): 61, 50, 64, (534,278,0): 59, 51, 62, (534,279,0): 59, 53, 63, (534,280,0): 61, 55, 65, (534,281,0): 59, 56, 63, (534,282,0): 61, 56, 63, (534,283,0): 61, 56, 63, (534,284,0): 64, 57, 64, (534,285,0): 66, 59, 66, (534,286,0): 71, 61, 69, (534,287,0): 74, 61, 70, (534,288,0): 81, 60, 69, (534,289,0): 85, 59, 68, (534,290,0): 86, 59, 68, (534,291,0): 87, 60, 67, (534,292,0): 91, 62, 67, (534,293,0): 92, 63, 68, (534,294,0): 93, 62, 67, (534,295,0): 94, 63, 68, (534,296,0): 99, 67, 70, (534,297,0): 98, 66, 69, (534,298,0): 98, 66, 69, (534,299,0): 98, 66, 69, (534,300,0): 100, 68, 71, (534,301,0): 102, 70, 73, (534,302,0): 104, 72, 75, (534,303,0): 107, 73, 74, (534,304,0): 120, 79, 77, (534,305,0): 130, 85, 80, (534,306,0): 139, 94, 88, (534,307,0): 146, 102, 91, (534,308,0): 150, 107, 90, (534,309,0): 154, 109, 86, (534,310,0): 157, 113, 88, (534,311,0): 160, 116, 89, (534,312,0): 160, 116, 89, (534,313,0): 168, 127, 99, (534,314,0): 173, 131, 109, (534,315,0): 176, 133, 116, (534,316,0): 187, 145, 131, (534,317,0): 200, 157, 148, (534,318,0): 197, 154, 148, (534,319,0): 180, 140, 141, (534,320,0): 163, 127, 139, (534,321,0): 144, 111, 128, (534,322,0): 130, 97, 114, (534,323,0): 124, 92, 107, (534,324,0): 117, 86, 101, (534,325,0): 104, 73, 88, (534,326,0): 90, 62, 76, (534,327,0): 85, 57, 71, (534,328,0): 82, 54, 66, (534,329,0): 78, 51, 60, (534,330,0): 71, 46, 52, (534,331,0): 67, 42, 48, (534,332,0): 63, 41, 44, (534,333,0): 61, 39, 42, (534,334,0): 57, 35, 37, (534,335,0): 54, 34, 36, (534,336,0): 50, 31, 35, (534,337,0): 45, 28, 34, (534,338,0): 42, 25, 31, (534,339,0): 38, 21, 27, (534,340,0): 35, 18, 26, (534,341,0): 33, 16, 24, (534,342,0): 31, 16, 23, (534,343,0): 31, 16, 23, (534,344,0): 27, 14, 23, (534,345,0): 26, 13, 22, (534,346,0): 25, 13, 23, (534,347,0): 25, 13, 23, (534,348,0): 24, 12, 22, (534,349,0): 24, 12, 22, (534,350,0): 23, 11, 23, (534,351,0): 23, 11, 21, (534,352,0): 26, 10, 21, (534,353,0): 26, 10, 20, (534,354,0): 26, 10, 20, (534,355,0): 26, 10, 20, (534,356,0): 26, 10, 20, (534,357,0): 26, 10, 20, (534,358,0): 26, 10, 20, (534,359,0): 26, 10, 20, (534,360,0): 25, 9, 19, (534,361,0): 25, 9, 19, (534,362,0): 25, 9, 19, (534,363,0): 24, 8, 18, (534,364,0): 24, 8, 18, (534,365,0): 23, 7, 17, (534,366,0): 23, 7, 17, (534,367,0): 21, 8, 17, (534,368,0): 21, 10, 18, (534,369,0): 20, 9, 17, (534,370,0): 18, 7, 15, (534,371,0): 17, 6, 14, (534,372,0): 16, 5, 13, (534,373,0): 17, 6, 14, (534,374,0): 17, 6, 14, (534,375,0): 18, 7, 15, (534,376,0): 18, 7, 15, (534,377,0): 18, 7, 15, (534,378,0): 18, 7, 15, (534,379,0): 18, 7, 15, (534,380,0): 18, 7, 15, (534,381,0): 18, 7, 15, (534,382,0): 18, 7, 15, (534,383,0): 17, 7, 15, (534,384,0): 13, 8, 14, (534,385,0): 11, 9, 14, (534,386,0): 11, 9, 14, (534,387,0): 11, 9, 14, (534,388,0): 11, 9, 14, (534,389,0): 11, 9, 14, (534,390,0): 11, 9, 14, (534,391,0): 11, 9, 14, (534,392,0): 11, 9, 14, (534,393,0): 12, 10, 15, (534,394,0): 13, 11, 16, (534,395,0): 15, 13, 18, (534,396,0): 15, 13, 18, (534,397,0): 15, 13, 18, (534,398,0): 14, 12, 17, (534,399,0): 17, 11, 15, (534,400,0): 23, 10, 17, (534,401,0): 26, 11, 16, (534,402,0): 27, 12, 17, (534,403,0): 28, 13, 18, (534,404,0): 28, 13, 18, (534,405,0): 27, 12, 17, (534,406,0): 26, 11, 16, (534,407,0): 25, 10, 15, (534,408,0): 24, 9, 14, (534,409,0): 25, 10, 15, (534,410,0): 26, 11, 16, (534,411,0): 27, 12, 17, (534,412,0): 29, 14, 19, (534,413,0): 30, 15, 20, (534,414,0): 32, 17, 22, (534,415,0): 32, 17, 22, (534,416,0): 32, 17, 22, (534,417,0): 31, 16, 21, (534,418,0): 31, 16, 21, (534,419,0): 29, 14, 19, (534,420,0): 28, 13, 18, (534,421,0): 27, 12, 17, (534,422,0): 26, 11, 16, (534,423,0): 26, 11, 16, (534,424,0): 26, 11, 16, (534,425,0): 26, 11, 16, (534,426,0): 26, 11, 16, (534,427,0): 26, 11, 16, (534,428,0): 26, 11, 16, (534,429,0): 26, 11, 16, (534,430,0): 26, 11, 16, (534,431,0): 26, 11, 14, (534,432,0): 28, 9, 13, (534,433,0): 29, 10, 12, (534,434,0): 30, 11, 13, (534,435,0): 31, 12, 14, (534,436,0): 32, 13, 15, (534,437,0): 32, 13, 15, (534,438,0): 31, 12, 14, (534,439,0): 30, 11, 13, (534,440,0): 32, 13, 15, (534,441,0): 31, 12, 14, (534,442,0): 31, 12, 14, (534,443,0): 31, 12, 14, (534,444,0): 30, 11, 13, (534,445,0): 30, 11, 13, (534,446,0): 29, 10, 12, (534,447,0): 29, 10, 12, (534,448,0): 33, 13, 15, (534,449,0): 33, 13, 15, (534,450,0): 33, 13, 15, (534,451,0): 33, 13, 15, (534,452,0): 33, 13, 15, (534,453,0): 33, 13, 15, (534,454,0): 33, 13, 15, (534,455,0): 33, 13, 15, (534,456,0): 32, 12, 14, (534,457,0): 33, 13, 15, (534,458,0): 35, 15, 17, (534,459,0): 37, 17, 19, (534,460,0): 38, 18, 20, (534,461,0): 38, 18, 20, (534,462,0): 38, 18, 20, (534,463,0): 38, 16, 19, (534,464,0): 39, 14, 18, (534,465,0): 40, 13, 18, (534,466,0): 39, 14, 18, (534,467,0): 37, 15, 18, (534,468,0): 35, 15, 17, (534,469,0): 32, 13, 15, (534,470,0): 28, 12, 13, (534,471,0): 27, 11, 12, (534,472,0): 28, 14, 14, (534,473,0): 28, 14, 14, (534,474,0): 29, 13, 14, (534,475,0): 31, 12, 14, (534,476,0): 33, 13, 15, (534,477,0): 35, 15, 17, (534,478,0): 38, 16, 19, (534,479,0): 39, 17, 20, (534,480,0): 38, 18, 20, (534,481,0): 37, 17, 19, (534,482,0): 36, 15, 20, (534,483,0): 35, 14, 19, (534,484,0): 33, 14, 18, (534,485,0): 32, 13, 17, (534,486,0): 31, 12, 18, (534,487,0): 31, 12, 18, (534,488,0): 27, 10, 18, (534,489,0): 27, 10, 18, (534,490,0): 25, 10, 17, (534,491,0): 24, 9, 16, (534,492,0): 23, 7, 17, (534,493,0): 22, 6, 16, (534,494,0): 19, 6, 15, (534,495,0): 19, 6, 15, (534,496,0): 18, 6, 16, (534,497,0): 18, 6, 16, (534,498,0): 18, 6, 16, (534,499,0): 19, 7, 17, (534,500,0): 19, 7, 17, (534,501,0): 20, 8, 18, (534,502,0): 21, 8, 18, (534,503,0): 22, 9, 19, (534,504,0): 26, 10, 21, (534,505,0): 25, 9, 20, (534,506,0): 26, 8, 20, (534,507,0): 25, 7, 19, (534,508,0): 24, 6, 18, (534,509,0): 24, 6, 18, (534,510,0): 24, 6, 18, (534,511,0): 24, 6, 18, (534,512,0): 20, 4, 14, (534,513,0): 21, 5, 15, (534,514,0): 23, 6, 16, (534,515,0): 25, 8, 18, (534,516,0): 26, 9, 17, (534,517,0): 28, 11, 19, (534,518,0): 31, 12, 18, (534,519,0): 32, 13, 19, (534,520,0): 33, 12, 19, (534,521,0): 33, 12, 19, (534,522,0): 34, 11, 17, (534,523,0): 34, 11, 17, (534,524,0): 36, 11, 15, (534,525,0): 36, 11, 15, (534,526,0): 36, 11, 15, (534,527,0): 37, 10, 15, (534,528,0): 42, 13, 18, (534,529,0): 43, 14, 19, (534,530,0): 41, 14, 19, (534,531,0): 41, 14, 19, (534,532,0): 40, 13, 20, (534,533,0): 38, 11, 18, (534,534,0): 36, 9, 18, (534,535,0): 33, 7, 16, (534,536,0): 32, 6, 15, (534,537,0): 30, 7, 15, (534,538,0): 30, 7, 17, (534,539,0): 29, 6, 16, (534,540,0): 27, 5, 17, (534,541,0): 26, 4, 16, (534,542,0): 26, 4, 16, (534,543,0): 26, 4, 16, (534,544,0): 24, 4, 13, (534,545,0): 25, 5, 14, (534,546,0): 25, 5, 14, (534,547,0): 26, 6, 15, (534,548,0): 27, 7, 16, (534,549,0): 27, 7, 16, (534,550,0): 28, 8, 17, (534,551,0): 28, 8, 17, (534,552,0): 28, 8, 17, (534,553,0): 28, 8, 17, (534,554,0): 28, 8, 17, (534,555,0): 29, 9, 18, (534,556,0): 30, 10, 19, (534,557,0): 30, 10, 19, (534,558,0): 31, 11, 20, (534,559,0): 31, 11, 20, (534,560,0): 28, 11, 21, (534,561,0): 28, 11, 21, (534,562,0): 27, 10, 20, (534,563,0): 27, 10, 20, (534,564,0): 26, 9, 19, (534,565,0): 26, 9, 19, (534,566,0): 24, 8, 18, (534,567,0): 24, 8, 18, (534,568,0): 19, 6, 15, (534,569,0): 20, 7, 16, (534,570,0): 19, 8, 16, (534,571,0): 20, 9, 17, (534,572,0): 20, 9, 17, (534,573,0): 21, 10, 18, (534,574,0): 21, 10, 18, (534,575,0): 21, 10, 18, (534,576,0): 25, 14, 22, (534,577,0): 25, 14, 22, (534,578,0): 25, 14, 22, (534,579,0): 25, 14, 22, (534,580,0): 25, 14, 22, (534,581,0): 25, 14, 22, (534,582,0): 25, 14, 22, (534,583,0): 25, 14, 22, (534,584,0): 28, 17, 25, (534,585,0): 28, 17, 25, (534,586,0): 28, 17, 25, (534,587,0): 27, 16, 24, (534,588,0): 27, 16, 24, (534,589,0): 26, 15, 23, (534,590,0): 26, 15, 23, (534,591,0): 26, 15, 23, (534,592,0): 23, 14, 19, (534,593,0): 27, 16, 22, (534,594,0): 29, 16, 23, (534,595,0): 30, 15, 22, (534,596,0): 31, 11, 20, (534,597,0): 32, 9, 19, (534,598,0): 36, 10, 21, (534,599,0): 38, 12, 23, (535,0,0): 38, 62, 74, (535,1,0): 38, 62, 74, (535,2,0): 39, 63, 75, (535,3,0): 39, 63, 75, (535,4,0): 40, 64, 76, (535,5,0): 40, 64, 76, (535,6,0): 41, 65, 77, (535,7,0): 41, 65, 77, (535,8,0): 40, 64, 76, (535,9,0): 40, 64, 76, (535,10,0): 40, 64, 76, (535,11,0): 40, 64, 76, (535,12,0): 40, 64, 76, (535,13,0): 40, 64, 76, (535,14,0): 40, 64, 76, (535,15,0): 40, 64, 76, (535,16,0): 45, 69, 81, (535,17,0): 44, 68, 80, (535,18,0): 42, 66, 78, (535,19,0): 41, 65, 77, (535,20,0): 42, 64, 77, (535,21,0): 43, 65, 78, (535,22,0): 45, 67, 80, (535,23,0): 46, 68, 81, (535,24,0): 47, 66, 80, (535,25,0): 47, 66, 80, (535,26,0): 49, 67, 81, (535,27,0): 49, 67, 81, (535,28,0): 50, 68, 82, (535,29,0): 50, 68, 82, (535,30,0): 52, 68, 83, (535,31,0): 52, 68, 81, (535,32,0): 51, 69, 81, (535,33,0): 51, 69, 79, (535,34,0): 52, 70, 80, (535,35,0): 52, 70, 80, (535,36,0): 53, 71, 81, (535,37,0): 53, 71, 81, (535,38,0): 55, 72, 80, (535,39,0): 55, 72, 80, (535,40,0): 59, 74, 81, (535,41,0): 59, 74, 81, (535,42,0): 60, 73, 79, (535,43,0): 61, 74, 80, (535,44,0): 61, 74, 80, (535,45,0): 62, 75, 81, (535,46,0): 62, 75, 81, (535,47,0): 64, 75, 81, (535,48,0): 65, 72, 80, (535,49,0): 67, 71, 80, (535,50,0): 68, 72, 81, (535,51,0): 68, 72, 81, (535,52,0): 69, 73, 82, (535,53,0): 69, 73, 82, (535,54,0): 70, 74, 83, (535,55,0): 70, 74, 83, (535,56,0): 70, 74, 83, (535,57,0): 70, 74, 83, (535,58,0): 70, 74, 83, (535,59,0): 70, 74, 83, (535,60,0): 70, 74, 83, (535,61,0): 70, 74, 83, (535,62,0): 70, 74, 83, (535,63,0): 70, 74, 83, (535,64,0): 71, 73, 86, (535,65,0): 71, 73, 86, (535,66,0): 72, 74, 87, (535,67,0): 72, 74, 87, (535,68,0): 75, 74, 88, (535,69,0): 75, 74, 88, (535,70,0): 77, 75, 89, (535,71,0): 77, 75, 89, (535,72,0): 77, 75, 89, (535,73,0): 78, 76, 90, (535,74,0): 80, 76, 91, (535,75,0): 81, 77, 92, (535,76,0): 84, 77, 93, (535,77,0): 85, 78, 94, (535,78,0): 85, 78, 94, (535,79,0): 84, 80, 94, (535,80,0): 84, 80, 94, (535,81,0): 84, 82, 93, (535,82,0): 85, 83, 94, (535,83,0): 86, 84, 95, (535,84,0): 88, 85, 96, (535,85,0): 89, 86, 97, (535,86,0): 89, 86, 97, (535,87,0): 90, 87, 98, (535,88,0): 91, 85, 97, (535,89,0): 92, 86, 98, (535,90,0): 94, 86, 99, (535,91,0): 96, 88, 101, (535,92,0): 96, 88, 101, (535,93,0): 95, 87, 100, (535,94,0): 96, 85, 99, (535,95,0): 96, 86, 97, (535,96,0): 101, 91, 100, (535,97,0): 100, 90, 99, (535,98,0): 99, 89, 98, (535,99,0): 97, 87, 96, (535,100,0): 95, 85, 94, (535,101,0): 91, 84, 92, (535,102,0): 90, 83, 91, (535,103,0): 89, 81, 92, (535,104,0): 90, 82, 93, (535,105,0): 89, 83, 95, (535,106,0): 89, 83, 95, (535,107,0): 87, 84, 95, (535,108,0): 87, 83, 97, (535,109,0): 86, 82, 96, (535,110,0): 85, 83, 97, (535,111,0): 84, 83, 97, (535,112,0): 81, 80, 98, (535,113,0): 79, 80, 98, (535,114,0): 80, 81, 99, (535,115,0): 80, 81, 99, (535,116,0): 80, 81, 99, (535,117,0): 81, 82, 100, (535,118,0): 81, 82, 100, (535,119,0): 81, 82, 100, (535,120,0): 82, 83, 101, (535,121,0): 81, 82, 100, (535,122,0): 78, 79, 97, (535,123,0): 76, 77, 95, (535,124,0): 75, 76, 94, (535,125,0): 74, 75, 93, (535,126,0): 74, 75, 93, (535,127,0): 77, 76, 94, (535,128,0): 76, 74, 88, (535,129,0): 77, 73, 88, (535,130,0): 77, 73, 88, (535,131,0): 77, 73, 88, (535,132,0): 78, 74, 88, (535,133,0): 80, 76, 90, (535,134,0): 82, 78, 92, (535,135,0): 83, 79, 93, (535,136,0): 79, 75, 89, (535,137,0): 79, 75, 89, (535,138,0): 79, 75, 89, (535,139,0): 79, 75, 89, (535,140,0): 79, 75, 89, (535,141,0): 79, 75, 89, (535,142,0): 79, 75, 89, (535,143,0): 79, 75, 89, (535,144,0): 77, 73, 87, (535,145,0): 78, 74, 88, (535,146,0): 79, 75, 89, (535,147,0): 80, 77, 88, (535,148,0): 81, 77, 91, (535,149,0): 80, 77, 88, (535,150,0): 79, 75, 89, (535,151,0): 79, 76, 87, (535,152,0): 76, 72, 86, (535,153,0): 75, 72, 83, (535,154,0): 73, 69, 83, (535,155,0): 71, 68, 79, (535,156,0): 69, 66, 77, (535,157,0): 69, 66, 77, (535,158,0): 69, 66, 77, (535,159,0): 69, 66, 77, (535,160,0): 76, 73, 82, (535,161,0): 75, 72, 79, (535,162,0): 74, 71, 78, (535,163,0): 73, 70, 77, (535,164,0): 72, 69, 76, (535,165,0): 73, 68, 74, (535,166,0): 72, 67, 73, (535,167,0): 72, 67, 71, (535,168,0): 67, 61, 65, (535,169,0): 67, 61, 65, (535,170,0): 66, 60, 64, (535,171,0): 68, 59, 62, (535,172,0): 67, 58, 61, (535,173,0): 67, 58, 61, (535,174,0): 66, 57, 60, (535,175,0): 66, 57, 60, (535,176,0): 64, 55, 60, (535,177,0): 64, 55, 60, (535,178,0): 64, 55, 60, (535,179,0): 63, 54, 57, (535,180,0): 63, 54, 59, (535,181,0): 62, 53, 56, (535,182,0): 62, 53, 58, (535,183,0): 61, 52, 57, (535,184,0): 63, 54, 59, (535,185,0): 63, 54, 59, (535,186,0): 63, 54, 59, (535,187,0): 63, 54, 59, (535,188,0): 63, 54, 59, (535,189,0): 63, 54, 59, (535,190,0): 63, 54, 59, (535,191,0): 63, 54, 59, (535,192,0): 60, 54, 58, (535,193,0): 59, 53, 55, (535,194,0): 58, 52, 56, (535,195,0): 57, 51, 53, (535,196,0): 56, 50, 54, (535,197,0): 54, 48, 50, (535,198,0): 53, 47, 51, (535,199,0): 53, 47, 49, (535,200,0): 50, 44, 48, (535,201,0): 50, 44, 46, (535,202,0): 50, 44, 48, (535,203,0): 49, 43, 45, (535,204,0): 49, 43, 47, (535,205,0): 48, 42, 44, (535,206,0): 48, 42, 46, (535,207,0): 48, 42, 46, (535,208,0): 45, 40, 46, (535,209,0): 45, 40, 47, (535,210,0): 44, 39, 46, (535,211,0): 44, 39, 46, (535,212,0): 43, 38, 45, (535,213,0): 43, 38, 45, (535,214,0): 42, 37, 44, (535,215,0): 42, 37, 44, (535,216,0): 38, 33, 40, (535,217,0): 38, 33, 40, (535,218,0): 38, 33, 40, (535,219,0): 38, 33, 40, (535,220,0): 38, 33, 40, (535,221,0): 38, 33, 40, (535,222,0): 38, 33, 40, (535,223,0): 36, 33, 40, (535,224,0): 37, 34, 41, (535,225,0): 35, 34, 40, (535,226,0): 34, 33, 39, (535,227,0): 34, 33, 39, (535,228,0): 34, 33, 39, (535,229,0): 34, 33, 39, (535,230,0): 35, 34, 40, (535,231,0): 36, 35, 41, (535,232,0): 36, 35, 41, (535,233,0): 36, 35, 41, (535,234,0): 36, 35, 41, (535,235,0): 36, 35, 41, (535,236,0): 36, 35, 41, (535,237,0): 36, 35, 41, (535,238,0): 36, 35, 41, (535,239,0): 36, 35, 41, (535,240,0): 39, 33, 45, (535,241,0): 40, 34, 46, (535,242,0): 40, 34, 46, (535,243,0): 41, 35, 47, (535,244,0): 41, 35, 47, (535,245,0): 42, 36, 48, (535,246,0): 42, 36, 48, (535,247,0): 42, 36, 48, (535,248,0): 43, 37, 49, (535,249,0): 43, 37, 49, (535,250,0): 43, 37, 49, (535,251,0): 43, 37, 49, (535,252,0): 43, 37, 49, (535,253,0): 43, 37, 49, (535,254,0): 43, 37, 49, (535,255,0): 43, 37, 49, (535,256,0): 42, 39, 50, (535,257,0): 43, 40, 51, (535,258,0): 45, 39, 51, (535,259,0): 46, 40, 52, (535,260,0): 47, 41, 53, (535,261,0): 48, 42, 54, (535,262,0): 50, 42, 55, (535,263,0): 51, 43, 56, (535,264,0): 53, 42, 56, (535,265,0): 54, 43, 57, (535,266,0): 54, 43, 57, (535,267,0): 55, 44, 58, (535,268,0): 58, 46, 60, (535,269,0): 59, 47, 61, (535,270,0): 59, 47, 61, (535,271,0): 61, 47, 62, (535,272,0): 63, 46, 64, (535,273,0): 63, 46, 62, (535,274,0): 64, 47, 63, (535,275,0): 62, 48, 63, (535,276,0): 62, 50, 64, (535,277,0): 61, 51, 62, (535,278,0): 60, 52, 63, (535,279,0): 59, 54, 61, (535,280,0): 61, 56, 63, (535,281,0): 61, 56, 63, (535,282,0): 61, 56, 63, (535,283,0): 62, 55, 62, (535,284,0): 64, 57, 64, (535,285,0): 68, 58, 66, (535,286,0): 71, 61, 69, (535,287,0): 74, 61, 68, (535,288,0): 82, 61, 68, (535,289,0): 85, 60, 66, (535,290,0): 87, 60, 67, (535,291,0): 88, 61, 68, (535,292,0): 91, 62, 67, (535,293,0): 92, 63, 68, (535,294,0): 94, 63, 68, (535,295,0): 95, 64, 69, (535,296,0): 98, 68, 70, (535,297,0): 99, 67, 70, (535,298,0): 99, 67, 70, (535,299,0): 100, 68, 71, (535,300,0): 101, 69, 72, (535,301,0): 103, 71, 74, (535,302,0): 105, 73, 76, (535,303,0): 109, 73, 73, (535,304,0): 126, 85, 81, (535,305,0): 134, 91, 84, (535,306,0): 142, 98, 87, (535,307,0): 148, 105, 89, (535,308,0): 151, 108, 89, (535,309,0): 152, 112, 87, (535,310,0): 155, 116, 87, (535,311,0): 158, 119, 90, (535,312,0): 163, 124, 95, (535,313,0): 175, 135, 109, (535,314,0): 181, 140, 120, (535,315,0): 184, 142, 128, (535,316,0): 194, 151, 144, (535,317,0): 202, 161, 157, (535,318,0): 195, 151, 152, (535,319,0): 173, 132, 140, (535,320,0): 154, 117, 134, (535,321,0): 134, 101, 120, (535,322,0): 117, 84, 101, (535,323,0): 110, 77, 94, (535,324,0): 102, 71, 86, (535,325,0): 92, 62, 74, (535,326,0): 83, 55, 67, (535,327,0): 83, 56, 65, (535,328,0): 79, 52, 61, (535,329,0): 76, 49, 56, (535,330,0): 70, 45, 49, (535,331,0): 67, 42, 46, (535,332,0): 63, 41, 44, (535,333,0): 60, 38, 41, (535,334,0): 56, 34, 36, (535,335,0): 53, 33, 35, (535,336,0): 49, 30, 34, (535,337,0): 45, 28, 34, (535,338,0): 41, 24, 30, (535,339,0): 37, 20, 26, (535,340,0): 34, 17, 25, (535,341,0): 32, 15, 23, (535,342,0): 31, 16, 23, (535,343,0): 31, 16, 23, (535,344,0): 27, 14, 23, (535,345,0): 26, 13, 22, (535,346,0): 25, 13, 23, (535,347,0): 24, 12, 22, (535,348,0): 24, 12, 22, (535,349,0): 23, 11, 21, (535,350,0): 23, 11, 23, (535,351,0): 23, 11, 21, (535,352,0): 26, 10, 21, (535,353,0): 26, 10, 20, (535,354,0): 26, 10, 20, (535,355,0): 26, 10, 20, (535,356,0): 26, 10, 20, (535,357,0): 26, 10, 20, (535,358,0): 26, 10, 20, (535,359,0): 26, 10, 20, (535,360,0): 25, 9, 19, (535,361,0): 25, 9, 19, (535,362,0): 25, 9, 19, (535,363,0): 24, 8, 18, (535,364,0): 24, 8, 18, (535,365,0): 23, 7, 17, (535,366,0): 23, 7, 17, (535,367,0): 21, 8, 17, (535,368,0): 22, 9, 18, (535,369,0): 20, 9, 17, (535,370,0): 18, 7, 15, (535,371,0): 17, 6, 14, (535,372,0): 16, 5, 13, (535,373,0): 17, 6, 14, (535,374,0): 17, 6, 14, (535,375,0): 18, 7, 15, (535,376,0): 18, 7, 15, (535,377,0): 18, 7, 15, (535,378,0): 18, 7, 15, (535,379,0): 18, 7, 15, (535,380,0): 18, 7, 15, (535,381,0): 18, 7, 15, (535,382,0): 18, 7, 15, (535,383,0): 17, 7, 15, (535,384,0): 13, 8, 14, (535,385,0): 11, 9, 14, (535,386,0): 11, 9, 14, (535,387,0): 11, 9, 14, (535,388,0): 11, 9, 14, (535,389,0): 11, 9, 14, (535,390,0): 11, 9, 14, (535,391,0): 11, 9, 14, (535,392,0): 11, 9, 14, (535,393,0): 12, 10, 15, (535,394,0): 13, 11, 16, (535,395,0): 15, 13, 18, (535,396,0): 15, 13, 18, (535,397,0): 15, 13, 18, (535,398,0): 14, 12, 17, (535,399,0): 16, 11, 15, (535,400,0): 23, 10, 17, (535,401,0): 26, 11, 16, (535,402,0): 28, 13, 18, (535,403,0): 29, 14, 19, (535,404,0): 29, 14, 19, (535,405,0): 28, 13, 18, (535,406,0): 26, 11, 16, (535,407,0): 25, 10, 15, (535,408,0): 23, 8, 13, (535,409,0): 24, 9, 14, (535,410,0): 25, 10, 15, (535,411,0): 27, 12, 17, (535,412,0): 29, 14, 19, (535,413,0): 32, 17, 22, (535,414,0): 33, 18, 23, (535,415,0): 34, 19, 24, (535,416,0): 33, 18, 23, (535,417,0): 33, 18, 23, (535,418,0): 32, 17, 22, (535,419,0): 30, 15, 20, (535,420,0): 29, 14, 19, (535,421,0): 28, 13, 18, (535,422,0): 27, 12, 17, (535,423,0): 26, 11, 16, (535,424,0): 27, 12, 17, (535,425,0): 27, 12, 17, (535,426,0): 27, 12, 17, (535,427,0): 27, 12, 17, (535,428,0): 27, 12, 17, (535,429,0): 27, 12, 17, (535,430,0): 27, 12, 17, (535,431,0): 27, 12, 15, (535,432,0): 25, 9, 12, (535,433,0): 28, 9, 11, (535,434,0): 30, 11, 13, (535,435,0): 31, 12, 14, (535,436,0): 32, 13, 15, (535,437,0): 31, 12, 14, (535,438,0): 31, 12, 14, (535,439,0): 30, 11, 13, (535,440,0): 32, 13, 15, (535,441,0): 31, 12, 14, (535,442,0): 31, 12, 14, (535,443,0): 30, 11, 13, (535,444,0): 30, 11, 13, (535,445,0): 29, 10, 12, (535,446,0): 29, 10, 12, (535,447,0): 29, 10, 12, (535,448,0): 33, 13, 15, (535,449,0): 33, 13, 15, (535,450,0): 33, 13, 15, (535,451,0): 33, 13, 15, (535,452,0): 33, 13, 15, (535,453,0): 33, 13, 15, (535,454,0): 33, 13, 15, (535,455,0): 33, 13, 15, (535,456,0): 31, 11, 13, (535,457,0): 32, 12, 14, (535,458,0): 35, 15, 17, (535,459,0): 37, 17, 19, (535,460,0): 38, 18, 20, (535,461,0): 38, 18, 20, (535,462,0): 37, 17, 19, (535,463,0): 37, 15, 18, (535,464,0): 39, 14, 18, (535,465,0): 39, 14, 18, (535,466,0): 37, 15, 18, (535,467,0): 36, 16, 18, (535,468,0): 34, 15, 17, (535,469,0): 32, 13, 15, (535,470,0): 28, 12, 13, (535,471,0): 27, 11, 12, (535,472,0): 28, 14, 14, (535,473,0): 29, 13, 14, (535,474,0): 31, 12, 14, (535,475,0): 31, 12, 14, (535,476,0): 33, 13, 15, (535,477,0): 36, 14, 17, (535,478,0): 38, 16, 19, (535,479,0): 39, 17, 20, (535,480,0): 38, 18, 20, (535,481,0): 38, 18, 20, (535,482,0): 37, 16, 21, (535,483,0): 36, 15, 20, (535,484,0): 34, 15, 19, (535,485,0): 33, 14, 18, (535,486,0): 32, 13, 19, (535,487,0): 32, 13, 19, (535,488,0): 28, 11, 19, (535,489,0): 27, 10, 18, (535,490,0): 25, 10, 17, (535,491,0): 24, 9, 16, (535,492,0): 23, 7, 17, (535,493,0): 22, 6, 16, (535,494,0): 19, 6, 15, (535,495,0): 19, 6, 15, (535,496,0): 18, 6, 16, (535,497,0): 18, 6, 16, (535,498,0): 19, 7, 17, (535,499,0): 19, 7, 17, (535,500,0): 20, 8, 18, (535,501,0): 20, 8, 18, (535,502,0): 22, 9, 19, (535,503,0): 22, 9, 19, (535,504,0): 26, 10, 21, (535,505,0): 25, 9, 20, (535,506,0): 25, 7, 19, (535,507,0): 25, 7, 19, (535,508,0): 24, 6, 18, (535,509,0): 24, 6, 18, (535,510,0): 24, 6, 18, (535,511,0): 24, 6, 18, (535,512,0): 21, 5, 15, (535,513,0): 22, 6, 16, (535,514,0): 24, 7, 17, (535,515,0): 25, 8, 18, (535,516,0): 27, 10, 18, (535,517,0): 29, 12, 20, (535,518,0): 32, 13, 19, (535,519,0): 32, 13, 19, (535,520,0): 34, 13, 20, (535,521,0): 34, 13, 20, (535,522,0): 34, 11, 17, (535,523,0): 34, 11, 17, (535,524,0): 35, 10, 14, (535,525,0): 35, 10, 14, (535,526,0): 34, 9, 13, (535,527,0): 34, 9, 13, (535,528,0): 40, 13, 18, (535,529,0): 43, 14, 19, (535,530,0): 42, 15, 20, (535,531,0): 42, 15, 20, (535,532,0): 41, 14, 21, (535,533,0): 38, 13, 19, (535,534,0): 35, 9, 18, (535,535,0): 34, 8, 17, (535,536,0): 30, 7, 15, (535,537,0): 30, 7, 15, (535,538,0): 29, 6, 16, (535,539,0): 27, 6, 15, (535,540,0): 26, 4, 16, (535,541,0): 26, 4, 16, (535,542,0): 25, 3, 15, (535,543,0): 24, 4, 15, (535,544,0): 24, 4, 13, (535,545,0): 24, 4, 13, (535,546,0): 24, 4, 13, (535,547,0): 25, 5, 14, (535,548,0): 26, 6, 15, (535,549,0): 27, 7, 16, (535,550,0): 28, 8, 17, (535,551,0): 28, 8, 17, (535,552,0): 28, 8, 17, (535,553,0): 28, 8, 17, (535,554,0): 29, 9, 18, (535,555,0): 29, 9, 18, (535,556,0): 30, 10, 19, (535,557,0): 31, 11, 20, (535,558,0): 32, 12, 21, (535,559,0): 32, 12, 21, (535,560,0): 28, 11, 21, (535,561,0): 28, 11, 21, (535,562,0): 27, 10, 20, (535,563,0): 27, 10, 20, (535,564,0): 26, 9, 19, (535,565,0): 26, 9, 19, (535,566,0): 24, 8, 18, (535,567,0): 24, 8, 18, (535,568,0): 19, 6, 15, (535,569,0): 19, 6, 15, (535,570,0): 19, 8, 16, (535,571,0): 19, 8, 16, (535,572,0): 20, 9, 17, (535,573,0): 20, 9, 17, (535,574,0): 21, 10, 18, (535,575,0): 21, 10, 18, (535,576,0): 24, 13, 21, (535,577,0): 24, 13, 21, (535,578,0): 24, 13, 21, (535,579,0): 24, 13, 21, (535,580,0): 24, 13, 21, (535,581,0): 24, 13, 21, (535,582,0): 24, 13, 21, (535,583,0): 24, 13, 21, (535,584,0): 28, 17, 25, (535,585,0): 28, 17, 25, (535,586,0): 28, 17, 25, (535,587,0): 27, 16, 24, (535,588,0): 27, 16, 24, (535,589,0): 26, 15, 23, (535,590,0): 26, 15, 23, (535,591,0): 26, 15, 23, (535,592,0): 24, 15, 20, (535,593,0): 26, 17, 22, (535,594,0): 29, 18, 24, (535,595,0): 29, 16, 23, (535,596,0): 27, 12, 19, (535,597,0): 26, 9, 17, (535,598,0): 30, 10, 19, (535,599,0): 34, 13, 22, (536,0,0): 38, 62, 74, (536,1,0): 38, 62, 74, (536,2,0): 38, 62, 74, (536,3,0): 38, 62, 74, (536,4,0): 38, 62, 74, (536,5,0): 38, 62, 74, (536,6,0): 38, 62, 74, (536,7,0): 38, 62, 74, (536,8,0): 41, 65, 77, (536,9,0): 41, 65, 77, (536,10,0): 41, 65, 77, (536,11,0): 41, 65, 77, (536,12,0): 41, 65, 77, (536,13,0): 41, 65, 77, (536,14,0): 41, 65, 77, (536,15,0): 41, 65, 77, (536,16,0): 41, 65, 77, (536,17,0): 41, 65, 77, (536,18,0): 42, 66, 78, (536,19,0): 42, 66, 78, (536,20,0): 44, 66, 79, (536,21,0): 44, 66, 79, (536,22,0): 45, 67, 80, (536,23,0): 45, 67, 80, (536,24,0): 48, 67, 81, (536,25,0): 49, 68, 82, (536,26,0): 50, 68, 82, (536,27,0): 50, 68, 82, (536,28,0): 51, 69, 83, (536,29,0): 51, 69, 83, (536,30,0): 53, 69, 84, (536,31,0): 53, 69, 82, (536,32,0): 52, 70, 82, (536,33,0): 53, 71, 81, (536,34,0): 54, 71, 81, (536,35,0): 55, 72, 82, (536,36,0): 55, 72, 82, (536,37,0): 56, 73, 83, (536,38,0): 58, 72, 81, (536,39,0): 58, 72, 81, (536,40,0): 59, 72, 80, (536,41,0): 60, 73, 81, (536,42,0): 60, 73, 79, (536,43,0): 61, 74, 80, (536,44,0): 63, 74, 80, (536,45,0): 64, 75, 81, (536,46,0): 64, 75, 81, (536,47,0): 65, 74, 81, (536,48,0): 65, 72, 80, (536,49,0): 67, 71, 80, (536,50,0): 68, 72, 81, (536,51,0): 68, 72, 81, (536,52,0): 69, 73, 82, (536,53,0): 69, 73, 82, (536,54,0): 70, 74, 83, (536,55,0): 70, 74, 83, (536,56,0): 70, 74, 83, (536,57,0): 70, 74, 83, (536,58,0): 70, 74, 83, (536,59,0): 70, 74, 83, (536,60,0): 70, 74, 83, (536,61,0): 70, 74, 83, (536,62,0): 70, 74, 83, (536,63,0): 70, 74, 83, (536,64,0): 72, 74, 87, (536,65,0): 73, 75, 88, (536,66,0): 73, 75, 88, (536,67,0): 74, 76, 89, (536,68,0): 76, 75, 89, (536,69,0): 77, 76, 90, (536,70,0): 78, 76, 90, (536,71,0): 78, 76, 90, (536,72,0): 77, 75, 89, (536,73,0): 78, 76, 90, (536,74,0): 79, 75, 90, (536,75,0): 80, 76, 91, (536,76,0): 84, 77, 93, (536,77,0): 85, 78, 94, (536,78,0): 85, 78, 94, (536,79,0): 84, 80, 94, (536,80,0): 83, 79, 93, (536,81,0): 83, 81, 92, (536,82,0): 84, 82, 93, (536,83,0): 85, 83, 94, (536,84,0): 88, 85, 96, (536,85,0): 89, 86, 97, (536,86,0): 90, 87, 98, (536,87,0): 90, 87, 98, (536,88,0): 92, 86, 98, (536,89,0): 93, 87, 99, (536,90,0): 94, 86, 99, (536,91,0): 95, 87, 100, (536,92,0): 96, 88, 101, (536,93,0): 97, 89, 102, (536,94,0): 100, 89, 103, (536,95,0): 101, 91, 102, (536,96,0): 100, 90, 99, (536,97,0): 100, 90, 98, (536,98,0): 100, 90, 99, (536,99,0): 99, 89, 98, (536,100,0): 95, 87, 98, (536,101,0): 92, 84, 95, (536,102,0): 90, 82, 93, (536,103,0): 87, 81, 93, (536,104,0): 89, 83, 95, (536,105,0): 87, 83, 97, (536,106,0): 86, 82, 96, (536,107,0): 85, 83, 96, (536,108,0): 85, 83, 96, (536,109,0): 86, 84, 97, (536,110,0): 87, 85, 98, (536,111,0): 87, 86, 100, (536,112,0): 81, 80, 94, (536,113,0): 80, 82, 97, (536,114,0): 80, 82, 97, (536,115,0): 81, 83, 98, (536,116,0): 82, 84, 99, (536,117,0): 83, 85, 100, (536,118,0): 83, 85, 100, (536,119,0): 84, 86, 101, (536,120,0): 79, 81, 96, (536,121,0): 79, 81, 96, (536,122,0): 79, 81, 96, (536,123,0): 79, 81, 96, (536,124,0): 79, 81, 96, (536,125,0): 79, 81, 96, (536,126,0): 79, 81, 96, (536,127,0): 81, 80, 94, (536,128,0): 77, 75, 89, (536,129,0): 76, 74, 87, (536,130,0): 75, 73, 86, (536,131,0): 74, 72, 85, (536,132,0): 75, 73, 87, (536,133,0): 78, 76, 90, (536,134,0): 81, 79, 93, (536,135,0): 83, 81, 95, (536,136,0): 78, 76, 90, (536,137,0): 78, 76, 90, (536,138,0): 78, 76, 90, (536,139,0): 79, 77, 91, (536,140,0): 79, 77, 91, (536,141,0): 79, 77, 91, (536,142,0): 80, 78, 92, (536,143,0): 80, 78, 92, (536,144,0): 78, 76, 89, (536,145,0): 78, 76, 89, (536,146,0): 78, 76, 89, (536,147,0): 78, 76, 89, (536,148,0): 77, 75, 89, (536,149,0): 77, 75, 88, (536,150,0): 77, 75, 89, (536,151,0): 77, 75, 88, (536,152,0): 74, 72, 86, (536,153,0): 73, 71, 84, (536,154,0): 71, 69, 83, (536,155,0): 69, 67, 81, (536,156,0): 67, 65, 79, (536,157,0): 67, 65, 79, (536,158,0): 67, 65, 79, (536,159,0): 67, 65, 79, (536,160,0): 70, 68, 81, (536,161,0): 71, 69, 80, (536,162,0): 71, 69, 80, (536,163,0): 71, 70, 78, (536,164,0): 70, 69, 77, (536,165,0): 70, 67, 76, (536,166,0): 68, 65, 74, (536,167,0): 67, 64, 71, (536,168,0): 66, 61, 68, (536,169,0): 65, 60, 66, (536,170,0): 64, 59, 65, (536,171,0): 64, 57, 64, (536,172,0): 63, 56, 63, (536,173,0): 61, 55, 59, (536,174,0): 60, 54, 58, (536,175,0): 60, 54, 58, (536,176,0): 60, 53, 60, (536,177,0): 60, 53, 60, (536,178,0): 61, 54, 61, (536,179,0): 62, 56, 60, (536,180,0): 61, 54, 61, (536,181,0): 60, 54, 58, (536,182,0): 59, 52, 59, (536,183,0): 58, 51, 58, (536,184,0): 59, 52, 59, (536,185,0): 59, 52, 59, (536,186,0): 58, 51, 58, (536,187,0): 58, 51, 58, (536,188,0): 58, 52, 56, (536,189,0): 60, 54, 58, (536,190,0): 61, 55, 59, (536,191,0): 62, 56, 60, (536,192,0): 55, 49, 53, (536,193,0): 56, 50, 54, (536,194,0): 57, 50, 57, (536,195,0): 57, 51, 55, (536,196,0): 56, 49, 56, (536,197,0): 55, 49, 53, (536,198,0): 54, 47, 54, (536,199,0): 53, 47, 51, (536,200,0): 53, 46, 53, (536,201,0): 52, 46, 50, (536,202,0): 51, 44, 51, (536,203,0): 50, 44, 48, (536,204,0): 49, 42, 49, (536,205,0): 49, 43, 47, (536,206,0): 50, 43, 50, (536,207,0): 51, 44, 51, (536,208,0): 46, 41, 48, (536,209,0): 45, 40, 47, (536,210,0): 44, 39, 46, (536,211,0): 43, 38, 45, (536,212,0): 42, 37, 44, (536,213,0): 41, 36, 43, (536,214,0): 40, 35, 42, (536,215,0): 40, 35, 42, (536,216,0): 39, 34, 41, (536,217,0): 39, 34, 41, (536,218,0): 39, 34, 41, (536,219,0): 38, 33, 40, (536,220,0): 38, 33, 40, (536,221,0): 38, 33, 40, (536,222,0): 38, 33, 40, (536,223,0): 36, 33, 40, (536,224,0): 36, 33, 40, (536,225,0): 34, 33, 39, (536,226,0): 33, 32, 38, (536,227,0): 32, 31, 37, (536,228,0): 32, 31, 37, (536,229,0): 33, 32, 38, (536,230,0): 34, 33, 39, (536,231,0): 35, 34, 40, (536,232,0): 38, 37, 43, (536,233,0): 38, 37, 43, (536,234,0): 38, 37, 43, (536,235,0): 38, 37, 43, (536,236,0): 38, 37, 43, (536,237,0): 38, 37, 43, (536,238,0): 38, 37, 43, (536,239,0): 38, 37, 43, (536,240,0): 40, 34, 46, (536,241,0): 41, 35, 47, (536,242,0): 41, 35, 47, (536,243,0): 42, 36, 48, (536,244,0): 43, 37, 49, (536,245,0): 44, 38, 50, (536,246,0): 44, 38, 50, (536,247,0): 45, 39, 51, (536,248,0): 41, 35, 47, (536,249,0): 41, 35, 47, (536,250,0): 42, 36, 48, (536,251,0): 42, 36, 48, (536,252,0): 43, 37, 49, (536,253,0): 43, 37, 49, (536,254,0): 44, 38, 50, (536,255,0): 44, 38, 50, (536,256,0): 45, 42, 53, (536,257,0): 45, 42, 53, (536,258,0): 48, 42, 54, (536,259,0): 48, 42, 54, (536,260,0): 49, 43, 55, (536,261,0): 49, 43, 55, (536,262,0): 51, 43, 56, (536,263,0): 51, 43, 56, (536,264,0): 51, 40, 54, (536,265,0): 51, 40, 54, (536,266,0): 52, 41, 55, (536,267,0): 52, 41, 55, (536,268,0): 54, 42, 56, (536,269,0): 55, 43, 57, (536,270,0): 56, 44, 58, (536,271,0): 57, 43, 58, (536,272,0): 62, 45, 61, (536,273,0): 62, 45, 61, (536,274,0): 63, 46, 62, (536,275,0): 61, 47, 60, (536,276,0): 61, 49, 61, (536,277,0): 61, 51, 62, (536,278,0): 59, 51, 62, (536,279,0): 60, 53, 61, (536,280,0): 59, 52, 60, (536,281,0): 60, 53, 60, (536,282,0): 61, 54, 61, (536,283,0): 65, 55, 63, (536,284,0): 67, 57, 65, (536,285,0): 71, 60, 66, (536,286,0): 74, 63, 69, (536,287,0): 78, 63, 70, (536,288,0): 82, 59, 65, (536,289,0): 86, 59, 64, (536,290,0): 87, 60, 65, (536,291,0): 89, 62, 67, (536,292,0): 90, 63, 68, (536,293,0): 91, 64, 69, (536,294,0): 93, 64, 68, (536,295,0): 94, 65, 69, (536,296,0): 90, 61, 65, (536,297,0): 93, 62, 67, (536,298,0): 95, 65, 67, (536,299,0): 95, 65, 67, (536,300,0): 96, 64, 65, (536,301,0): 100, 68, 69, (536,302,0): 108, 74, 75, (536,303,0): 113, 78, 76, (536,304,0): 123, 83, 75, (536,305,0): 132, 88, 77, (536,306,0): 138, 96, 82, (536,307,0): 142, 100, 84, (536,308,0): 145, 104, 84, (536,309,0): 147, 110, 84, (536,310,0): 152, 115, 89, (536,311,0): 157, 120, 94, (536,312,0): 158, 121, 95, (536,313,0): 166, 128, 107, (536,314,0): 173, 136, 120, (536,315,0): 181, 143, 132, (536,316,0): 193, 154, 149, (536,317,0): 201, 161, 162, (536,318,0): 195, 152, 159, (536,319,0): 179, 139, 150, (536,320,0): 155, 121, 137, (536,321,0): 144, 111, 130, (536,322,0): 129, 96, 113, (536,323,0): 116, 83, 100, (536,324,0): 106, 75, 90, (536,325,0): 99, 69, 81, (536,326,0): 90, 63, 72, (536,327,0): 86, 59, 66, (536,328,0): 84, 57, 62, (536,329,0): 79, 52, 57, (536,330,0): 72, 47, 50, (536,331,0): 67, 42, 45, (536,332,0): 63, 41, 44, (536,333,0): 61, 39, 42, (536,334,0): 58, 36, 39, (536,335,0): 54, 34, 36, (536,336,0): 49, 30, 34, (536,337,0): 43, 26, 32, (536,338,0): 38, 21, 27, (536,339,0): 36, 19, 25, (536,340,0): 35, 18, 26, (536,341,0): 34, 17, 25, (536,342,0): 31, 16, 23, (536,343,0): 28, 13, 20, (536,344,0): 28, 15, 24, (536,345,0): 28, 15, 24, (536,346,0): 26, 14, 24, (536,347,0): 24, 12, 22, (536,348,0): 23, 11, 21, (536,349,0): 22, 10, 20, (536,350,0): 21, 9, 21, (536,351,0): 20, 8, 18, (536,352,0): 24, 8, 19, (536,353,0): 24, 8, 18, (536,354,0): 24, 8, 18, (536,355,0): 24, 8, 18, (536,356,0): 24, 8, 18, (536,357,0): 24, 8, 18, (536,358,0): 24, 8, 18, (536,359,0): 24, 8, 18, (536,360,0): 23, 7, 17, (536,361,0): 23, 7, 17, (536,362,0): 23, 7, 17, (536,363,0): 23, 7, 17, (536,364,0): 23, 7, 17, (536,365,0): 23, 7, 17, (536,366,0): 23, 7, 17, (536,367,0): 21, 8, 17, (536,368,0): 21, 8, 17, (536,369,0): 20, 9, 17, (536,370,0): 20, 9, 17, (536,371,0): 20, 9, 17, (536,372,0): 20, 9, 17, (536,373,0): 20, 9, 17, (536,374,0): 20, 9, 17, (536,375,0): 20, 9, 17, (536,376,0): 18, 7, 15, (536,377,0): 18, 7, 15, (536,378,0): 18, 7, 15, (536,379,0): 18, 7, 15, (536,380,0): 18, 7, 15, (536,381,0): 18, 7, 15, (536,382,0): 18, 7, 15, (536,383,0): 17, 7, 15, (536,384,0): 13, 8, 14, (536,385,0): 11, 9, 14, (536,386,0): 11, 9, 14, (536,387,0): 11, 9, 14, (536,388,0): 11, 9, 14, (536,389,0): 11, 9, 14, (536,390,0): 11, 9, 14, (536,391,0): 11, 9, 14, (536,392,0): 11, 9, 14, (536,393,0): 11, 9, 14, (536,394,0): 12, 10, 15, (536,395,0): 13, 11, 16, (536,396,0): 14, 12, 17, (536,397,0): 15, 13, 18, (536,398,0): 16, 14, 19, (536,399,0): 18, 13, 17, (536,400,0): 24, 11, 18, (536,401,0): 26, 11, 16, (536,402,0): 28, 13, 18, (536,403,0): 28, 13, 18, (536,404,0): 28, 13, 18, (536,405,0): 28, 13, 18, (536,406,0): 26, 11, 16, (536,407,0): 26, 11, 16, (536,408,0): 27, 12, 17, (536,409,0): 26, 11, 16, (536,410,0): 26, 11, 16, (536,411,0): 26, 11, 16, (536,412,0): 27, 12, 17, (536,413,0): 30, 15, 20, (536,414,0): 32, 17, 22, (536,415,0): 34, 19, 24, (536,416,0): 31, 16, 21, (536,417,0): 31, 16, 21, (536,418,0): 31, 16, 21, (536,419,0): 30, 15, 20, (536,420,0): 30, 15, 20, (536,421,0): 29, 14, 19, (536,422,0): 29, 14, 19, (536,423,0): 29, 14, 19, (536,424,0): 27, 12, 17, (536,425,0): 27, 12, 17, (536,426,0): 26, 11, 16, (536,427,0): 26, 11, 16, (536,428,0): 25, 10, 15, (536,429,0): 25, 10, 15, (536,430,0): 24, 9, 14, (536,431,0): 24, 9, 12, (536,432,0): 27, 11, 14, (536,433,0): 27, 11, 12, (536,434,0): 28, 12, 13, (536,435,0): 29, 13, 14, (536,436,0): 29, 13, 14, (536,437,0): 28, 12, 13, (536,438,0): 27, 11, 12, (536,439,0): 27, 11, 12, (536,440,0): 26, 10, 11, (536,441,0): 26, 10, 11, (536,442,0): 26, 10, 11, (536,443,0): 26, 10, 11, (536,444,0): 26, 10, 11, (536,445,0): 26, 10, 11, (536,446,0): 26, 10, 11, (536,447,0): 28, 9, 11, (536,448,0): 30, 10, 12, (536,449,0): 30, 10, 12, (536,450,0): 31, 11, 13, (536,451,0): 32, 12, 14, (536,452,0): 33, 13, 15, (536,453,0): 34, 14, 16, (536,454,0): 35, 15, 17, (536,455,0): 35, 15, 17, (536,456,0): 33, 13, 15, (536,457,0): 34, 14, 16, (536,458,0): 35, 15, 17, (536,459,0): 36, 16, 18, (536,460,0): 38, 18, 20, (536,461,0): 39, 19, 21, (536,462,0): 40, 20, 22, (536,463,0): 40, 20, 22, (536,464,0): 37, 15, 18, (536,465,0): 37, 15, 18, (536,466,0): 36, 14, 17, (536,467,0): 33, 13, 15, (536,468,0): 31, 12, 14, (536,469,0): 30, 11, 13, (536,470,0): 27, 11, 12, (536,471,0): 25, 11, 11, (536,472,0): 30, 14, 15, (536,473,0): 30, 14, 15, (536,474,0): 31, 12, 14, (536,475,0): 31, 12, 14, (536,476,0): 34, 14, 16, (536,477,0): 36, 14, 17, (536,478,0): 40, 15, 19, (536,479,0): 41, 16, 20, (536,480,0): 38, 16, 19, (536,481,0): 37, 17, 19, (536,482,0): 36, 16, 18, (536,483,0): 35, 15, 17, (536,484,0): 33, 14, 18, (536,485,0): 32, 13, 17, (536,486,0): 31, 12, 16, (536,487,0): 30, 11, 15, (536,488,0): 27, 10, 16, (536,489,0): 27, 10, 16, (536,490,0): 25, 10, 17, (536,491,0): 25, 10, 17, (536,492,0): 24, 9, 16, (536,493,0): 24, 9, 16, (536,494,0): 21, 8, 17, (536,495,0): 21, 8, 17, (536,496,0): 16, 4, 14, (536,497,0): 17, 5, 15, (536,498,0): 17, 5, 15, (536,499,0): 18, 6, 16, (536,500,0): 19, 7, 17, (536,501,0): 20, 8, 18, (536,502,0): 21, 8, 18, (536,503,0): 22, 9, 19, (536,504,0): 23, 7, 18, (536,505,0): 23, 7, 18, (536,506,0): 24, 6, 18, (536,507,0): 24, 6, 18, (536,508,0): 24, 6, 18, (536,509,0): 24, 6, 18, (536,510,0): 24, 6, 18, (536,511,0): 24, 6, 18, (536,512,0): 23, 6, 16, (536,513,0): 24, 7, 17, (536,514,0): 27, 7, 18, (536,515,0): 28, 8, 19, (536,516,0): 29, 9, 18, (536,517,0): 31, 11, 20, (536,518,0): 32, 13, 19, (536,519,0): 32, 13, 19, (536,520,0): 39, 18, 25, (536,521,0): 36, 15, 22, (536,522,0): 33, 12, 17, (536,523,0): 31, 10, 15, (536,524,0): 31, 9, 12, (536,525,0): 33, 11, 14, (536,526,0): 35, 13, 16, (536,527,0): 39, 14, 18, (536,528,0): 39, 12, 17, (536,529,0): 39, 12, 17, (536,530,0): 39, 12, 17, (536,531,0): 38, 11, 16, (536,532,0): 37, 12, 18, (536,533,0): 36, 11, 17, (536,534,0): 36, 10, 19, (536,535,0): 33, 10, 18, (536,536,0): 33, 10, 18, (536,537,0): 32, 9, 17, (536,538,0): 29, 8, 17, (536,539,0): 27, 6, 15, (536,540,0): 26, 4, 16, (536,541,0): 25, 5, 16, (536,542,0): 25, 5, 16, (536,543,0): 25, 5, 16, (536,544,0): 22, 2, 13, (536,545,0): 21, 4, 14, (536,546,0): 21, 4, 14, (536,547,0): 22, 5, 15, (536,548,0): 22, 5, 15, (536,549,0): 23, 6, 16, (536,550,0): 23, 6, 16, (536,551,0): 23, 6, 16, (536,552,0): 27, 10, 20, (536,553,0): 27, 10, 20, (536,554,0): 27, 10, 20, (536,555,0): 28, 11, 21, (536,556,0): 28, 11, 21, (536,557,0): 29, 12, 22, (536,558,0): 29, 12, 22, (536,559,0): 29, 12, 22, (536,560,0): 26, 9, 19, (536,561,0): 27, 10, 20, (536,562,0): 27, 10, 20, (536,563,0): 28, 11, 21, (536,564,0): 28, 11, 21, (536,565,0): 27, 10, 20, (536,566,0): 24, 8, 18, (536,567,0): 23, 7, 17, (536,568,0): 22, 9, 18, (536,569,0): 22, 9, 18, (536,570,0): 21, 10, 18, (536,571,0): 21, 10, 18, (536,572,0): 21, 10, 18, (536,573,0): 21, 10, 18, (536,574,0): 21, 10, 18, (536,575,0): 21, 10, 18, (536,576,0): 23, 12, 20, (536,577,0): 23, 12, 20, (536,578,0): 23, 12, 20, (536,579,0): 24, 13, 21, (536,580,0): 24, 13, 21, (536,581,0): 25, 14, 22, (536,582,0): 25, 14, 22, (536,583,0): 25, 14, 22, (536,584,0): 26, 15, 23, (536,585,0): 26, 15, 23, (536,586,0): 26, 15, 23, (536,587,0): 26, 15, 23, (536,588,0): 26, 15, 23, (536,589,0): 26, 15, 23, (536,590,0): 26, 15, 23, (536,591,0): 26, 15, 23, (536,592,0): 25, 15, 23, (536,593,0): 25, 15, 23, (536,594,0): 26, 15, 23, (536,595,0): 26, 15, 23, (536,596,0): 26, 13, 22, (536,597,0): 26, 13, 22, (536,598,0): 28, 12, 22, (536,599,0): 28, 12, 22, (537,0,0): 38, 62, 74, (537,1,0): 38, 62, 74, (537,2,0): 38, 62, 74, (537,3,0): 38, 62, 74, (537,4,0): 38, 62, 74, (537,5,0): 38, 62, 74, (537,6,0): 38, 62, 74, (537,7,0): 38, 62, 74, (537,8,0): 41, 65, 77, (537,9,0): 41, 65, 77, (537,10,0): 41, 65, 77, (537,11,0): 41, 65, 77, (537,12,0): 41, 65, 77, (537,13,0): 41, 65, 77, (537,14,0): 41, 65, 77, (537,15,0): 41, 65, 77, (537,16,0): 41, 65, 77, (537,17,0): 41, 65, 77, (537,18,0): 41, 65, 77, (537,19,0): 42, 66, 78, (537,20,0): 43, 65, 78, (537,21,0): 44, 66, 79, (537,22,0): 44, 66, 79, (537,23,0): 45, 67, 80, (537,24,0): 47, 66, 80, (537,25,0): 48, 67, 81, (537,26,0): 49, 67, 81, (537,27,0): 49, 67, 81, (537,28,0): 50, 68, 82, (537,29,0): 51, 69, 83, (537,30,0): 52, 68, 83, (537,31,0): 52, 68, 81, (537,32,0): 52, 70, 82, (537,33,0): 53, 71, 81, (537,34,0): 54, 71, 81, (537,35,0): 54, 71, 81, (537,36,0): 55, 72, 82, (537,37,0): 55, 72, 82, (537,38,0): 58, 72, 81, (537,39,0): 58, 72, 81, (537,40,0): 59, 72, 80, (537,41,0): 60, 73, 81, (537,42,0): 60, 73, 79, (537,43,0): 60, 73, 79, (537,44,0): 63, 74, 80, (537,45,0): 63, 74, 80, (537,46,0): 64, 75, 81, (537,47,0): 65, 74, 81, (537,48,0): 65, 72, 80, (537,49,0): 67, 71, 80, (537,50,0): 68, 72, 81, (537,51,0): 68, 72, 81, (537,52,0): 69, 73, 82, (537,53,0): 69, 73, 82, (537,54,0): 70, 74, 83, (537,55,0): 70, 74, 83, (537,56,0): 70, 74, 83, (537,57,0): 70, 74, 83, (537,58,0): 70, 74, 83, (537,59,0): 70, 74, 83, (537,60,0): 70, 74, 83, (537,61,0): 70, 74, 83, (537,62,0): 70, 74, 83, (537,63,0): 70, 74, 83, (537,64,0): 72, 74, 87, (537,65,0): 73, 75, 88, (537,66,0): 73, 75, 88, (537,67,0): 73, 75, 88, (537,68,0): 76, 75, 89, (537,69,0): 76, 75, 89, (537,70,0): 78, 76, 90, (537,71,0): 78, 76, 90, (537,72,0): 77, 75, 89, (537,73,0): 78, 76, 90, (537,74,0): 79, 75, 90, (537,75,0): 80, 76, 91, (537,76,0): 84, 77, 93, (537,77,0): 85, 78, 94, (537,78,0): 85, 78, 94, (537,79,0): 84, 80, 94, (537,80,0): 83, 79, 93, (537,81,0): 83, 81, 92, (537,82,0): 84, 82, 93, (537,83,0): 85, 83, 94, (537,84,0): 87, 84, 95, (537,85,0): 89, 86, 97, (537,86,0): 89, 86, 97, (537,87,0): 90, 87, 98, (537,88,0): 92, 86, 98, (537,89,0): 92, 86, 98, (537,90,0): 94, 86, 99, (537,91,0): 95, 87, 100, (537,92,0): 96, 88, 101, (537,93,0): 97, 89, 102, (537,94,0): 100, 89, 103, (537,95,0): 100, 90, 101, (537,96,0): 100, 90, 99, (537,97,0): 100, 90, 98, (537,98,0): 100, 90, 99, (537,99,0): 97, 89, 100, (537,100,0): 96, 88, 99, (537,101,0): 92, 86, 98, (537,102,0): 88, 85, 96, (537,103,0): 86, 82, 96, (537,104,0): 89, 87, 101, (537,105,0): 88, 86, 100, (537,106,0): 87, 85, 99, (537,107,0): 85, 83, 97, (537,108,0): 84, 82, 96, (537,109,0): 84, 82, 95, (537,110,0): 85, 83, 96, (537,111,0): 84, 84, 96, (537,112,0): 82, 82, 94, (537,113,0): 80, 82, 94, (537,114,0): 81, 83, 96, (537,115,0): 81, 83, 95, (537,116,0): 81, 83, 96, (537,117,0): 82, 84, 96, (537,118,0): 82, 84, 97, (537,119,0): 82, 84, 96, (537,120,0): 79, 81, 94, (537,121,0): 79, 81, 93, (537,122,0): 79, 81, 94, (537,123,0): 79, 81, 93, (537,124,0): 79, 81, 94, (537,125,0): 79, 81, 93, (537,126,0): 79, 81, 94, (537,127,0): 79, 81, 93, (537,128,0): 76, 76, 88, (537,129,0): 75, 75, 87, (537,130,0): 75, 73, 86, (537,131,0): 73, 73, 85, (537,132,0): 75, 73, 87, (537,133,0): 77, 76, 90, (537,134,0): 81, 79, 93, (537,135,0): 82, 81, 95, (537,136,0): 79, 77, 91, (537,137,0): 78, 77, 91, (537,138,0): 80, 78, 92, (537,139,0): 79, 78, 92, (537,140,0): 80, 77, 94, (537,141,0): 79, 78, 94, (537,142,0): 80, 77, 94, (537,143,0): 79, 78, 94, (537,144,0): 77, 76, 90, (537,145,0): 77, 76, 90, (537,146,0): 77, 76, 90, (537,147,0): 77, 76, 90, (537,148,0): 77, 76, 92, (537,149,0): 78, 77, 93, (537,150,0): 78, 77, 93, (537,151,0): 78, 77, 93, (537,152,0): 76, 75, 91, (537,153,0): 75, 74, 90, (537,154,0): 73, 72, 88, (537,155,0): 71, 70, 86, (537,156,0): 70, 69, 87, (537,157,0): 69, 68, 86, (537,158,0): 70, 69, 87, (537,159,0): 70, 69, 87, (537,160,0): 72, 71, 87, (537,161,0): 73, 72, 86, (537,162,0): 73, 72, 86, (537,163,0): 73, 73, 85, (537,164,0): 72, 72, 84, (537,165,0): 72, 70, 83, (537,166,0): 70, 68, 81, (537,167,0): 69, 67, 78, (537,168,0): 68, 65, 76, (537,169,0): 67, 64, 73, (537,170,0): 66, 63, 72, (537,171,0): 67, 61, 71, (537,172,0): 66, 60, 70, (537,173,0): 64, 59, 66, (537,174,0): 64, 59, 66, (537,175,0): 64, 57, 65, (537,176,0): 64, 56, 67, (537,177,0): 64, 56, 67, (537,178,0): 65, 58, 66, (537,179,0): 65, 58, 66, (537,180,0): 64, 57, 65, (537,181,0): 62, 55, 63, (537,182,0): 61, 54, 62, (537,183,0): 60, 53, 61, (537,184,0): 63, 56, 64, (537,185,0): 62, 55, 62, (537,186,0): 61, 54, 61, (537,187,0): 61, 54, 61, (537,188,0): 62, 55, 62, (537,189,0): 63, 57, 61, (537,190,0): 64, 57, 64, (537,191,0): 65, 58, 65, (537,192,0): 57, 50, 57, (537,193,0): 58, 51, 59, (537,194,0): 58, 51, 59, (537,195,0): 59, 52, 60, (537,196,0): 58, 51, 59, (537,197,0): 57, 50, 58, (537,198,0): 55, 48, 56, (537,199,0): 54, 47, 55, (537,200,0): 52, 45, 53, (537,201,0): 51, 44, 52, (537,202,0): 49, 42, 50, (537,203,0): 48, 41, 49, (537,204,0): 47, 40, 48, (537,205,0): 47, 40, 48, (537,206,0): 48, 41, 49, (537,207,0): 48, 41, 49, (537,208,0): 48, 43, 50, (537,209,0): 47, 42, 49, (537,210,0): 47, 42, 49, (537,211,0): 46, 41, 48, (537,212,0): 45, 40, 47, (537,213,0): 44, 39, 46, (537,214,0): 43, 38, 45, (537,215,0): 42, 37, 44, (537,216,0): 42, 37, 44, (537,217,0): 42, 37, 44, (537,218,0): 41, 36, 43, (537,219,0): 41, 36, 43, (537,220,0): 41, 36, 43, (537,221,0): 40, 35, 42, (537,222,0): 40, 35, 42, (537,223,0): 40, 35, 42, (537,224,0): 39, 36, 43, (537,225,0): 37, 36, 42, (537,226,0): 36, 35, 41, (537,227,0): 35, 34, 40, (537,228,0): 35, 34, 40, (537,229,0): 36, 35, 41, (537,230,0): 37, 36, 42, (537,231,0): 38, 37, 43, (537,232,0): 38, 37, 43, (537,233,0): 38, 37, 43, (537,234,0): 38, 37, 43, (537,235,0): 38, 37, 43, (537,236,0): 38, 37, 43, (537,237,0): 38, 37, 43, (537,238,0): 38, 37, 43, (537,239,0): 39, 36, 43, (537,240,0): 41, 35, 47, (537,241,0): 41, 35, 47, (537,242,0): 41, 35, 47, (537,243,0): 42, 36, 48, (537,244,0): 43, 37, 49, (537,245,0): 44, 38, 50, (537,246,0): 44, 38, 50, (537,247,0): 44, 38, 50, (537,248,0): 41, 35, 47, (537,249,0): 42, 36, 48, (537,250,0): 42, 36, 48, (537,251,0): 43, 37, 49, (537,252,0): 43, 37, 49, (537,253,0): 44, 38, 50, (537,254,0): 44, 38, 50, (537,255,0): 44, 38, 50, (537,256,0): 44, 41, 52, (537,257,0): 45, 42, 53, (537,258,0): 47, 41, 53, (537,259,0): 48, 42, 54, (537,260,0): 48, 42, 54, (537,261,0): 49, 43, 55, (537,262,0): 50, 42, 55, (537,263,0): 50, 42, 55, (537,264,0): 53, 42, 56, (537,265,0): 53, 42, 56, (537,266,0): 54, 43, 57, (537,267,0): 54, 43, 57, (537,268,0): 56, 44, 58, (537,269,0): 57, 45, 59, (537,270,0): 58, 46, 60, (537,271,0): 58, 46, 60, (537,272,0): 57, 43, 58, (537,273,0): 58, 44, 59, (537,274,0): 58, 44, 57, (537,275,0): 58, 46, 58, (537,276,0): 58, 48, 59, (537,277,0): 59, 49, 60, (537,278,0): 58, 51, 59, (537,279,0): 58, 51, 59, (537,280,0): 63, 56, 63, (537,281,0): 66, 56, 64, (537,282,0): 67, 57, 65, (537,283,0): 69, 58, 66, (537,284,0): 72, 59, 66, (537,285,0): 74, 61, 68, (537,286,0): 78, 63, 70, (537,287,0): 81, 62, 68, (537,288,0): 87, 62, 66, (537,289,0): 89, 62, 67, (537,290,0): 90, 63, 68, (537,291,0): 91, 64, 69, (537,292,0): 92, 65, 70, (537,293,0): 92, 65, 70, (537,294,0): 93, 67, 70, (537,295,0): 95, 66, 70, (537,296,0): 92, 63, 67, (537,297,0): 94, 65, 69, (537,298,0): 97, 67, 69, (537,299,0): 98, 68, 68, (537,300,0): 101, 69, 70, (537,301,0): 105, 74, 72, (537,302,0): 114, 80, 79, (537,303,0): 122, 84, 81, (537,304,0): 134, 91, 82, (537,305,0): 139, 95, 82, (537,306,0): 144, 100, 87, (537,307,0): 146, 104, 88, (537,308,0): 148, 110, 91, (537,309,0): 152, 116, 94, (537,310,0): 158, 123, 101, (537,311,0): 164, 129, 109, (537,312,0): 169, 134, 115, (537,313,0): 173, 140, 123, (537,314,0): 178, 144, 134, (537,315,0): 179, 144, 138, (537,316,0): 180, 144, 144, (537,317,0): 177, 141, 145, (537,318,0): 165, 128, 135, (537,319,0): 149, 113, 123, (537,320,0): 132, 98, 114, (537,321,0): 123, 90, 107, (537,322,0): 111, 78, 95, (537,323,0): 101, 69, 84, (537,324,0): 94, 64, 76, (537,325,0): 89, 59, 69, (537,326,0): 83, 56, 63, (537,327,0): 79, 52, 57, (537,328,0): 83, 56, 61, (537,329,0): 78, 52, 55, (537,330,0): 71, 46, 49, (537,331,0): 67, 42, 45, (537,332,0): 64, 42, 45, (537,333,0): 62, 40, 43, (537,334,0): 58, 36, 39, (537,335,0): 55, 34, 39, (537,336,0): 49, 30, 36, (537,337,0): 43, 26, 32, (537,338,0): 38, 21, 27, (537,339,0): 36, 19, 25, (537,340,0): 35, 18, 26, (537,341,0): 34, 17, 25, (537,342,0): 31, 16, 23, (537,343,0): 28, 13, 20, (537,344,0): 26, 13, 22, (537,345,0): 26, 13, 22, (537,346,0): 24, 12, 22, (537,347,0): 23, 11, 21, (537,348,0): 22, 10, 20, (537,349,0): 21, 9, 19, (537,350,0): 21, 9, 21, (537,351,0): 21, 9, 19, (537,352,0): 24, 8, 19, (537,353,0): 24, 8, 18, (537,354,0): 24, 8, 18, (537,355,0): 24, 8, 18, (537,356,0): 24, 8, 18, (537,357,0): 24, 8, 18, (537,358,0): 24, 8, 18, (537,359,0): 24, 8, 18, (537,360,0): 23, 7, 17, (537,361,0): 23, 7, 17, (537,362,0): 23, 7, 17, (537,363,0): 23, 7, 17, (537,364,0): 23, 7, 17, (537,365,0): 23, 7, 17, (537,366,0): 23, 7, 17, (537,367,0): 23, 7, 17, (537,368,0): 21, 8, 17, (537,369,0): 20, 9, 17, (537,370,0): 20, 9, 17, (537,371,0): 20, 9, 17, (537,372,0): 20, 9, 17, (537,373,0): 20, 9, 17, (537,374,0): 20, 9, 17, (537,375,0): 20, 9, 17, (537,376,0): 18, 7, 15, (537,377,0): 18, 7, 15, (537,378,0): 18, 7, 15, (537,379,0): 18, 7, 15, (537,380,0): 18, 7, 15, (537,381,0): 18, 7, 15, (537,382,0): 18, 7, 15, (537,383,0): 17, 7, 15, (537,384,0): 13, 8, 14, (537,385,0): 11, 9, 14, (537,386,0): 11, 9, 14, (537,387,0): 11, 9, 14, (537,388,0): 11, 9, 14, (537,389,0): 11, 9, 14, (537,390,0): 11, 9, 14, (537,391,0): 11, 9, 14, (537,392,0): 11, 9, 14, (537,393,0): 11, 9, 14, (537,394,0): 12, 10, 15, (537,395,0): 13, 11, 16, (537,396,0): 14, 12, 17, (537,397,0): 15, 13, 18, (537,398,0): 16, 14, 19, (537,399,0): 19, 13, 17, (537,400,0): 24, 11, 18, (537,401,0): 26, 11, 16, (537,402,0): 28, 13, 18, (537,403,0): 28, 13, 18, (537,404,0): 28, 13, 18, (537,405,0): 28, 13, 18, (537,406,0): 26, 11, 16, (537,407,0): 26, 11, 16, (537,408,0): 26, 11, 16, (537,409,0): 26, 11, 16, (537,410,0): 26, 11, 16, (537,411,0): 27, 12, 17, (537,412,0): 28, 13, 18, (537,413,0): 30, 15, 20, (537,414,0): 32, 17, 22, (537,415,0): 33, 18, 23, (537,416,0): 31, 16, 21, (537,417,0): 31, 16, 21, (537,418,0): 31, 16, 21, (537,419,0): 30, 15, 20, (537,420,0): 30, 15, 20, (537,421,0): 29, 14, 19, (537,422,0): 29, 14, 19, (537,423,0): 29, 14, 19, (537,424,0): 27, 12, 17, (537,425,0): 27, 12, 17, (537,426,0): 27, 12, 17, (537,427,0): 26, 11, 16, (537,428,0): 26, 11, 16, (537,429,0): 25, 10, 15, (537,430,0): 25, 10, 15, (537,431,0): 24, 9, 12, (537,432,0): 26, 10, 13, (537,433,0): 27, 11, 12, (537,434,0): 28, 12, 13, (537,435,0): 29, 13, 14, (537,436,0): 29, 13, 14, (537,437,0): 28, 12, 13, (537,438,0): 27, 11, 12, (537,439,0): 26, 10, 11, (537,440,0): 26, 10, 11, (537,441,0): 26, 10, 11, (537,442,0): 26, 10, 11, (537,443,0): 26, 10, 11, (537,444,0): 26, 10, 11, (537,445,0): 26, 10, 11, (537,446,0): 26, 10, 11, (537,447,0): 26, 10, 11, (537,448,0): 29, 10, 12, (537,449,0): 30, 10, 12, (537,450,0): 31, 11, 13, (537,451,0): 32, 12, 14, (537,452,0): 33, 13, 15, (537,453,0): 34, 14, 16, (537,454,0): 35, 15, 17, (537,455,0): 35, 15, 17, (537,456,0): 33, 13, 15, (537,457,0): 34, 14, 16, (537,458,0): 35, 15, 17, (537,459,0): 36, 16, 18, (537,460,0): 37, 17, 19, (537,461,0): 39, 19, 21, (537,462,0): 39, 19, 21, (537,463,0): 40, 20, 22, (537,464,0): 38, 16, 19, (537,465,0): 36, 16, 18, (537,466,0): 35, 15, 17, (537,467,0): 33, 14, 16, (537,468,0): 32, 13, 15, (537,469,0): 29, 13, 14, (537,470,0): 27, 13, 13, (537,471,0): 26, 12, 12, (537,472,0): 31, 15, 16, (537,473,0): 30, 14, 15, (537,474,0): 32, 13, 15, (537,475,0): 33, 13, 15, (537,476,0): 36, 14, 17, (537,477,0): 39, 14, 18, (537,478,0): 42, 15, 20, (537,479,0): 42, 17, 21, (537,480,0): 38, 16, 19, (537,481,0): 37, 17, 19, (537,482,0): 36, 16, 18, (537,483,0): 35, 15, 17, (537,484,0): 33, 14, 18, (537,485,0): 32, 13, 17, (537,486,0): 31, 12, 16, (537,487,0): 31, 12, 16, (537,488,0): 27, 10, 16, (537,489,0): 27, 10, 16, (537,490,0): 26, 11, 18, (537,491,0): 25, 10, 17, (537,492,0): 25, 10, 17, (537,493,0): 24, 9, 16, (537,494,0): 22, 9, 18, (537,495,0): 22, 9, 18, (537,496,0): 17, 5, 15, (537,497,0): 17, 5, 15, (537,498,0): 18, 6, 16, (537,499,0): 19, 7, 17, (537,500,0): 19, 7, 17, (537,501,0): 20, 8, 18, (537,502,0): 22, 9, 19, (537,503,0): 22, 9, 19, (537,504,0): 23, 7, 18, (537,505,0): 23, 7, 18, (537,506,0): 24, 6, 18, (537,507,0): 24, 6, 18, (537,508,0): 24, 6, 18, (537,509,0): 24, 6, 18, (537,510,0): 24, 6, 18, (537,511,0): 24, 6, 18, (537,512,0): 24, 7, 17, (537,513,0): 26, 6, 17, (537,514,0): 27, 7, 18, (537,515,0): 28, 8, 19, (537,516,0): 29, 9, 18, (537,517,0): 31, 11, 20, (537,518,0): 32, 13, 19, (537,519,0): 32, 13, 19, (537,520,0): 38, 17, 24, (537,521,0): 36, 15, 22, (537,522,0): 33, 12, 17, (537,523,0): 31, 10, 15, (537,524,0): 31, 9, 12, (537,525,0): 33, 11, 14, (537,526,0): 35, 13, 16, (537,527,0): 36, 14, 17, (537,528,0): 38, 13, 17, (537,529,0): 39, 12, 17, (537,530,0): 38, 11, 16, (537,531,0): 37, 12, 16, (537,532,0): 36, 11, 17, (537,533,0): 36, 11, 17, (537,534,0): 33, 10, 18, (537,535,0): 33, 10, 18, (537,536,0): 33, 10, 18, (537,537,0): 31, 10, 17, (537,538,0): 29, 8, 17, (537,539,0): 27, 6, 15, (537,540,0): 25, 5, 16, (537,541,0): 25, 5, 16, (537,542,0): 25, 5, 16, (537,543,0): 23, 6, 16, (537,544,0): 20, 3, 13, (537,545,0): 21, 4, 14, (537,546,0): 21, 4, 14, (537,547,0): 21, 4, 14, (537,548,0): 22, 5, 15, (537,549,0): 22, 5, 15, (537,550,0): 23, 6, 16, (537,551,0): 23, 6, 16, (537,552,0): 24, 7, 17, (537,553,0): 24, 7, 17, (537,554,0): 25, 8, 18, (537,555,0): 25, 8, 18, (537,556,0): 26, 9, 19, (537,557,0): 26, 9, 19, (537,558,0): 27, 10, 20, (537,559,0): 27, 10, 20, (537,560,0): 26, 9, 19, (537,561,0): 26, 9, 19, (537,562,0): 27, 10, 20, (537,563,0): 28, 11, 21, (537,564,0): 28, 11, 21, (537,565,0): 27, 10, 20, (537,566,0): 25, 9, 19, (537,567,0): 24, 8, 18, (537,568,0): 22, 9, 18, (537,569,0): 22, 9, 18, (537,570,0): 21, 10, 18, (537,571,0): 21, 10, 18, (537,572,0): 21, 10, 18, (537,573,0): 21, 10, 18, (537,574,0): 21, 10, 18, (537,575,0): 21, 10, 18, (537,576,0): 23, 12, 20, (537,577,0): 23, 12, 20, (537,578,0): 23, 12, 20, (537,579,0): 24, 13, 21, (537,580,0): 24, 13, 21, (537,581,0): 25, 14, 22, (537,582,0): 25, 14, 22, (537,583,0): 25, 14, 22, (537,584,0): 26, 15, 23, (537,585,0): 26, 15, 23, (537,586,0): 26, 15, 23, (537,587,0): 26, 15, 23, (537,588,0): 26, 15, 23, (537,589,0): 26, 15, 23, (537,590,0): 26, 15, 23, (537,591,0): 26, 15, 23, (537,592,0): 26, 16, 24, (537,593,0): 26, 16, 24, (537,594,0): 27, 16, 24, (537,595,0): 26, 15, 23, (537,596,0): 25, 14, 22, (537,597,0): 24, 13, 21, (537,598,0): 24, 13, 21, (537,599,0): 24, 13, 21, (538,0,0): 38, 62, 74, (538,1,0): 38, 62, 74, (538,2,0): 38, 62, 74, (538,3,0): 38, 62, 74, (538,4,0): 38, 62, 74, (538,5,0): 38, 62, 74, (538,6,0): 38, 62, 74, (538,7,0): 38, 62, 74, (538,8,0): 40, 64, 76, (538,9,0): 40, 64, 76, (538,10,0): 40, 64, 76, (538,11,0): 40, 64, 76, (538,12,0): 40, 64, 76, (538,13,0): 40, 64, 76, (538,14,0): 40, 64, 76, (538,15,0): 40, 64, 76, (538,16,0): 40, 64, 76, (538,17,0): 41, 65, 77, (538,18,0): 41, 65, 77, (538,19,0): 42, 66, 78, (538,20,0): 43, 65, 78, (538,21,0): 44, 66, 79, (538,22,0): 44, 66, 79, (538,23,0): 44, 66, 79, (538,24,0): 46, 65, 79, (538,25,0): 46, 65, 79, (538,26,0): 47, 65, 79, (538,27,0): 48, 66, 80, (538,28,0): 49, 67, 81, (538,29,0): 49, 67, 81, (538,30,0): 50, 66, 81, (538,31,0): 51, 67, 80, (538,32,0): 53, 69, 82, (538,33,0): 53, 70, 80, (538,34,0): 53, 70, 80, (538,35,0): 54, 71, 81, (538,36,0): 57, 71, 82, (538,37,0): 57, 71, 82, (538,38,0): 58, 71, 80, (538,39,0): 59, 72, 81, (538,40,0): 59, 72, 80, (538,41,0): 59, 72, 80, (538,42,0): 61, 72, 78, (538,43,0): 62, 73, 79, (538,44,0): 64, 73, 80, (538,45,0): 64, 73, 80, (538,46,0): 64, 73, 80, (538,47,0): 65, 74, 81, (538,48,0): 65, 72, 80, (538,49,0): 67, 71, 80, (538,50,0): 68, 72, 81, (538,51,0): 68, 72, 81, (538,52,0): 69, 73, 82, (538,53,0): 69, 73, 82, (538,54,0): 70, 74, 83, (538,55,0): 70, 74, 83, (538,56,0): 70, 74, 83, (538,57,0): 70, 74, 83, (538,58,0): 70, 74, 83, (538,59,0): 70, 74, 83, (538,60,0): 70, 74, 83, (538,61,0): 70, 74, 83, (538,62,0): 70, 74, 83, (538,63,0): 70, 74, 83, (538,64,0): 72, 74, 87, (538,65,0): 72, 74, 87, (538,66,0): 72, 74, 87, (538,67,0): 73, 75, 88, (538,68,0): 76, 75, 89, (538,69,0): 76, 75, 89, (538,70,0): 77, 75, 89, (538,71,0): 78, 76, 90, (538,72,0): 77, 75, 89, (538,73,0): 78, 76, 90, (538,74,0): 79, 75, 90, (538,75,0): 80, 76, 91, (538,76,0): 84, 77, 93, (538,77,0): 85, 78, 94, (538,78,0): 85, 78, 94, (538,79,0): 84, 80, 94, (538,80,0): 84, 80, 94, (538,81,0): 83, 81, 92, (538,82,0): 84, 82, 93, (538,83,0): 85, 83, 94, (538,84,0): 87, 84, 95, (538,85,0): 88, 85, 96, (538,86,0): 88, 85, 96, (538,87,0): 89, 86, 97, (538,88,0): 92, 86, 98, (538,89,0): 92, 86, 98, (538,90,0): 94, 86, 99, (538,91,0): 95, 87, 100, (538,92,0): 96, 88, 101, (538,93,0): 97, 89, 102, (538,94,0): 100, 89, 103, (538,95,0): 100, 90, 101, (538,96,0): 100, 90, 99, (538,97,0): 101, 91, 100, (538,98,0): 99, 91, 102, (538,99,0): 97, 91, 101, (538,100,0): 93, 90, 101, (538,101,0): 90, 88, 101, (538,102,0): 87, 86, 100, (538,103,0): 86, 85, 99, (538,104,0): 90, 89, 105, (538,105,0): 89, 88, 104, (538,106,0): 87, 86, 102, (538,107,0): 84, 83, 99, (538,108,0): 83, 82, 98, (538,109,0): 82, 81, 95, (538,110,0): 83, 81, 95, (538,111,0): 82, 82, 94, (538,112,0): 84, 84, 96, (538,113,0): 82, 85, 94, (538,114,0): 81, 83, 95, (538,115,0): 81, 84, 93, (538,116,0): 81, 83, 95, (538,117,0): 80, 83, 92, (538,118,0): 80, 82, 94, (538,119,0): 80, 83, 92, (538,120,0): 79, 81, 93, (538,121,0): 79, 82, 91, (538,122,0): 79, 81, 93, (538,123,0): 79, 82, 91, (538,124,0): 79, 81, 93, (538,125,0): 79, 82, 91, (538,126,0): 79, 81, 93, (538,127,0): 79, 81, 93, (538,128,0): 75, 77, 89, (538,129,0): 74, 76, 88, (538,130,0): 74, 74, 86, (538,131,0): 72, 74, 86, (538,132,0): 75, 74, 88, (538,133,0): 75, 77, 90, (538,134,0): 80, 79, 93, (538,135,0): 80, 82, 95, (538,136,0): 81, 80, 96, (538,137,0): 78, 80, 95, (538,138,0): 80, 79, 95, (538,139,0): 78, 80, 95, (538,140,0): 80, 79, 97, (538,141,0): 78, 79, 97, (538,142,0): 80, 79, 97, (538,143,0): 78, 79, 97, (538,144,0): 75, 76, 94, (538,145,0): 75, 77, 92, (538,146,0): 76, 78, 93, (538,147,0): 76, 78, 93, (538,148,0): 77, 78, 96, (538,149,0): 78, 79, 97, (538,150,0): 79, 80, 98, (538,151,0): 79, 80, 98, (538,152,0): 79, 80, 100, (538,153,0): 78, 79, 99, (538,154,0): 76, 77, 98, (538,155,0): 75, 76, 97, (538,156,0): 74, 75, 96, (538,157,0): 73, 74, 95, (538,158,0): 74, 75, 96, (538,159,0): 74, 75, 96, (538,160,0): 75, 76, 96, (538,161,0): 75, 76, 96, (538,162,0): 76, 77, 97, (538,163,0): 76, 77, 95, (538,164,0): 76, 77, 95, (538,165,0): 77, 76, 92, (538,166,0): 75, 74, 90, (538,167,0): 74, 73, 89, (538,168,0): 73, 70, 87, (538,169,0): 72, 70, 84, (538,170,0): 72, 70, 84, (538,171,0): 72, 68, 82, (538,172,0): 71, 67, 81, (538,173,0): 70, 66, 80, (538,174,0): 69, 65, 79, (538,175,0): 71, 65, 79, (538,176,0): 70, 64, 76, (538,177,0): 70, 64, 76, (538,178,0): 70, 64, 76, (538,179,0): 70, 64, 76, (538,180,0): 68, 62, 74, (538,181,0): 66, 60, 72, (538,182,0): 64, 58, 68, (538,183,0): 63, 57, 67, (538,184,0): 66, 60, 70, (538,185,0): 66, 61, 68, (538,186,0): 65, 60, 67, (538,187,0): 65, 60, 67, (538,188,0): 65, 60, 67, (538,189,0): 67, 62, 68, (538,190,0): 68, 63, 70, (538,191,0): 69, 64, 71, (538,192,0): 64, 56, 67, (538,193,0): 65, 57, 68, (538,194,0): 65, 57, 68, (538,195,0): 66, 58, 69, (538,196,0): 65, 57, 68, (538,197,0): 64, 56, 67, (538,198,0): 62, 54, 65, (538,199,0): 61, 53, 64, (538,200,0): 56, 48, 59, (538,201,0): 55, 47, 58, (538,202,0): 53, 45, 56, (538,203,0): 51, 43, 54, (538,204,0): 50, 42, 53, (538,205,0): 50, 42, 53, (538,206,0): 50, 42, 53, (538,207,0): 50, 42, 53, (538,208,0): 50, 45, 52, (538,209,0): 50, 45, 52, (538,210,0): 49, 44, 51, (538,211,0): 48, 43, 50, (538,212,0): 47, 42, 49, (538,213,0): 46, 41, 48, (538,214,0): 45, 40, 47, (538,215,0): 45, 40, 47, (538,216,0): 45, 40, 47, (538,217,0): 45, 40, 47, (538,218,0): 45, 40, 47, (538,219,0): 44, 39, 46, (538,220,0): 44, 39, 46, (538,221,0): 43, 38, 45, (538,222,0): 42, 37, 44, (538,223,0): 42, 37, 44, (538,224,0): 42, 39, 46, (538,225,0): 41, 38, 45, (538,226,0): 40, 37, 44, (538,227,0): 39, 36, 43, (538,228,0): 39, 36, 43, (538,229,0): 40, 37, 44, (538,230,0): 41, 38, 45, (538,231,0): 42, 39, 46, (538,232,0): 40, 37, 44, (538,233,0): 40, 37, 44, (538,234,0): 40, 37, 44, (538,235,0): 40, 37, 44, (538,236,0): 40, 37, 44, (538,237,0): 40, 37, 44, (538,238,0): 40, 37, 44, (538,239,0): 40, 37, 44, (538,240,0): 41, 35, 47, (538,241,0): 41, 35, 47, (538,242,0): 42, 36, 48, (538,243,0): 42, 36, 48, (538,244,0): 43, 37, 49, (538,245,0): 43, 37, 49, (538,246,0): 44, 38, 50, (538,247,0): 44, 38, 50, (538,248,0): 42, 36, 48, (538,249,0): 42, 36, 48, (538,250,0): 42, 36, 48, (538,251,0): 43, 37, 49, (538,252,0): 43, 37, 49, (538,253,0): 44, 38, 50, (538,254,0): 44, 38, 50, (538,255,0): 45, 39, 51, (538,256,0): 44, 41, 52, (538,257,0): 44, 41, 52, (538,258,0): 46, 40, 52, (538,259,0): 47, 41, 53, (538,260,0): 47, 41, 53, (538,261,0): 48, 42, 54, (538,262,0): 49, 41, 54, (538,263,0): 50, 42, 55, (538,264,0): 54, 43, 57, (538,265,0): 54, 43, 57, (538,266,0): 55, 44, 58, (538,267,0): 56, 45, 59, (538,268,0): 58, 46, 60, (538,269,0): 59, 47, 61, (538,270,0): 60, 48, 62, (538,271,0): 61, 49, 63, (538,272,0): 59, 45, 58, (538,273,0): 59, 45, 58, (538,274,0): 60, 46, 59, (538,275,0): 60, 48, 60, (538,276,0): 60, 50, 59, (538,277,0): 62, 52, 61, (538,278,0): 62, 52, 61, (538,279,0): 63, 53, 62, (538,280,0): 69, 59, 67, (538,281,0): 70, 59, 67, (538,282,0): 72, 59, 66, (538,283,0): 76, 61, 68, (538,284,0): 78, 61, 69, (538,285,0): 82, 62, 71, (538,286,0): 83, 62, 69, (538,287,0): 85, 62, 68, (538,288,0): 92, 66, 69, (538,289,0): 94, 65, 69, (538,290,0): 94, 65, 69, (538,291,0): 94, 65, 69, (538,292,0): 93, 67, 70, (538,293,0): 93, 67, 70, (538,294,0): 93, 66, 71, (538,295,0): 93, 66, 71, (538,296,0): 91, 65, 68, (538,297,0): 96, 67, 71, (538,298,0): 101, 71, 73, (538,299,0): 103, 73, 73, (538,300,0): 107, 76, 74, (538,301,0): 115, 81, 79, (538,302,0): 124, 89, 87, (538,303,0): 132, 95, 89, (538,304,0): 147, 103, 92, (538,305,0): 152, 106, 93, (538,306,0): 154, 110, 97, (538,307,0): 157, 115, 101, (538,308,0): 160, 121, 106, (538,309,0): 164, 128, 112, (538,310,0): 170, 137, 122, (538,311,0): 175, 143, 130, (538,312,0): 175, 145, 134, (538,313,0): 178, 149, 141, (538,314,0): 177, 148, 142, (538,315,0): 170, 140, 138, (538,316,0): 160, 130, 132, (538,317,0): 147, 116, 121, (538,318,0): 130, 99, 105, (538,319,0): 117, 86, 94, (538,320,0): 107, 75, 88, (538,321,0): 101, 69, 82, (538,322,0): 94, 62, 75, (538,323,0): 88, 56, 67, (538,324,0): 84, 54, 64, (538,325,0): 82, 52, 60, (538,326,0): 79, 52, 59, (538,327,0): 77, 50, 55, (538,328,0): 81, 54, 59, (538,329,0): 77, 50, 55, (538,330,0): 71, 46, 50, (538,331,0): 67, 42, 46, (538,332,0): 64, 42, 45, (538,333,0): 62, 40, 43, (538,334,0): 59, 36, 42, (538,335,0): 55, 34, 39, (538,336,0): 48, 29, 35, (538,337,0): 42, 25, 31, (538,338,0): 38, 21, 27, (538,339,0): 35, 18, 24, (538,340,0): 35, 18, 26, (538,341,0): 34, 17, 25, (538,342,0): 30, 15, 22, (538,343,0): 28, 13, 20, (538,344,0): 23, 10, 19, (538,345,0): 23, 10, 19, (538,346,0): 22, 10, 20, (538,347,0): 21, 9, 19, (538,348,0): 21, 9, 19, (538,349,0): 21, 9, 19, (538,350,0): 21, 9, 21, (538,351,0): 21, 9, 19, (538,352,0): 23, 7, 18, (538,353,0): 23, 7, 17, (538,354,0): 23, 7, 17, (538,355,0): 23, 7, 17, (538,356,0): 23, 7, 17, (538,357,0): 23, 7, 17, (538,358,0): 23, 7, 17, (538,359,0): 23, 7, 17, (538,360,0): 23, 7, 17, (538,361,0): 23, 7, 17, (538,362,0): 23, 7, 17, (538,363,0): 23, 7, 17, (538,364,0): 23, 7, 17, (538,365,0): 23, 7, 17, (538,366,0): 23, 7, 17, (538,367,0): 23, 7, 17, (538,368,0): 21, 8, 17, (538,369,0): 21, 8, 17, (538,370,0): 21, 8, 17, (538,371,0): 21, 8, 17, (538,372,0): 21, 8, 17, (538,373,0): 21, 8, 17, (538,374,0): 21, 8, 17, (538,375,0): 21, 8, 17, (538,376,0): 19, 6, 15, (538,377,0): 19, 6, 15, (538,378,0): 19, 6, 15, (538,379,0): 19, 6, 15, (538,380,0): 19, 6, 15, (538,381,0): 19, 6, 15, (538,382,0): 19, 6, 15, (538,383,0): 18, 7, 15, (538,384,0): 14, 7, 14, (538,385,0): 13, 8, 14, (538,386,0): 13, 8, 14, (538,387,0): 13, 8, 14, (538,388,0): 13, 8, 14, (538,389,0): 13, 8, 14, (538,390,0): 13, 8, 14, (538,391,0): 13, 8, 14, (538,392,0): 13, 8, 14, (538,393,0): 13, 8, 14, (538,394,0): 14, 9, 15, (538,395,0): 15, 10, 16, (538,396,0): 16, 11, 17, (538,397,0): 17, 12, 18, (538,398,0): 18, 13, 19, (538,399,0): 19, 13, 17, (538,400,0): 24, 11, 18, (538,401,0): 26, 11, 16, (538,402,0): 28, 13, 18, (538,403,0): 28, 13, 18, (538,404,0): 28, 13, 18, (538,405,0): 28, 13, 18, (538,406,0): 26, 11, 16, (538,407,0): 26, 11, 16, (538,408,0): 25, 10, 15, (538,409,0): 26, 11, 16, (538,410,0): 27, 12, 17, (538,411,0): 29, 14, 19, (538,412,0): 30, 15, 20, (538,413,0): 30, 15, 20, (538,414,0): 30, 15, 20, (538,415,0): 30, 15, 20, (538,416,0): 31, 16, 21, (538,417,0): 31, 16, 21, (538,418,0): 31, 16, 21, (538,419,0): 30, 15, 20, (538,420,0): 30, 15, 20, (538,421,0): 29, 14, 19, (538,422,0): 29, 14, 19, (538,423,0): 29, 14, 19, (538,424,0): 28, 13, 18, (538,425,0): 27, 12, 17, (538,426,0): 27, 12, 17, (538,427,0): 26, 11, 16, (538,428,0): 26, 11, 16, (538,429,0): 25, 10, 15, (538,430,0): 25, 10, 15, (538,431,0): 25, 10, 13, (538,432,0): 25, 10, 13, (538,433,0): 26, 12, 12, (538,434,0): 27, 13, 13, (538,435,0): 28, 14, 14, (538,436,0): 28, 14, 14, (538,437,0): 27, 13, 13, (538,438,0): 26, 12, 12, (538,439,0): 25, 11, 11, (538,440,0): 25, 11, 11, (538,441,0): 25, 11, 11, (538,442,0): 25, 11, 11, (538,443,0): 25, 11, 11, (538,444,0): 25, 11, 11, (538,445,0): 25, 11, 11, (538,446,0): 25, 11, 11, (538,447,0): 26, 10, 11, (538,448,0): 29, 10, 12, (538,449,0): 30, 10, 12, (538,450,0): 31, 11, 13, (538,451,0): 32, 12, 14, (538,452,0): 33, 13, 15, (538,453,0): 34, 14, 16, (538,454,0): 35, 15, 17, (538,455,0): 35, 15, 17, (538,456,0): 34, 14, 16, (538,457,0): 34, 14, 16, (538,458,0): 35, 15, 17, (538,459,0): 36, 16, 18, (538,460,0): 37, 17, 19, (538,461,0): 38, 18, 20, (538,462,0): 38, 18, 20, (538,463,0): 39, 19, 21, (538,464,0): 37, 17, 19, (538,465,0): 37, 17, 19, (538,466,0): 36, 16, 18, (538,467,0): 34, 15, 17, (538,468,0): 33, 14, 16, (538,469,0): 30, 14, 15, (538,470,0): 28, 14, 14, (538,471,0): 28, 14, 14, (538,472,0): 32, 16, 17, (538,473,0): 32, 16, 17, (538,474,0): 34, 15, 17, (538,475,0): 35, 15, 17, (538,476,0): 37, 15, 18, (538,477,0): 41, 16, 20, (538,478,0): 44, 17, 22, (538,479,0): 45, 18, 23, (538,480,0): 39, 17, 19, (538,481,0): 38, 18, 19, (538,482,0): 37, 17, 18, (538,483,0): 36, 16, 17, (538,484,0): 34, 15, 17, (538,485,0): 33, 14, 16, (538,486,0): 32, 13, 17, (538,487,0): 32, 13, 17, (538,488,0): 29, 13, 16, (538,489,0): 28, 12, 15, (538,490,0): 27, 12, 17, (538,491,0): 26, 11, 16, (538,492,0): 26, 11, 18, (538,493,0): 25, 10, 17, (538,494,0): 23, 10, 17, (538,495,0): 23, 10, 19, (538,496,0): 19, 7, 17, (538,497,0): 19, 7, 17, (538,498,0): 19, 7, 17, (538,499,0): 20, 8, 18, (538,500,0): 20, 8, 18, (538,501,0): 21, 9, 19, (538,502,0): 22, 9, 19, (538,503,0): 22, 9, 19, (538,504,0): 23, 7, 18, (538,505,0): 23, 7, 18, (538,506,0): 24, 6, 18, (538,507,0): 24, 6, 18, (538,508,0): 24, 6, 18, (538,509,0): 24, 6, 18, (538,510,0): 24, 6, 18, (538,511,0): 24, 6, 18, (538,512,0): 27, 7, 18, (538,513,0): 28, 6, 18, (538,514,0): 29, 7, 19, (538,515,0): 30, 8, 20, (538,516,0): 31, 10, 19, (538,517,0): 32, 11, 20, (538,518,0): 32, 11, 18, (538,519,0): 33, 12, 19, (538,520,0): 37, 16, 23, (538,521,0): 35, 14, 21, (538,522,0): 33, 12, 17, (538,523,0): 31, 10, 15, (538,524,0): 31, 11, 13, (538,525,0): 31, 11, 13, (538,526,0): 33, 13, 15, (538,527,0): 35, 13, 16, (538,528,0): 37, 12, 16, (538,529,0): 37, 12, 16, (538,530,0): 36, 11, 15, (538,531,0): 36, 11, 15, (538,532,0): 35, 10, 16, (538,533,0): 33, 10, 16, (538,534,0): 32, 9, 17, (538,535,0): 32, 9, 17, (538,536,0): 31, 10, 17, (538,537,0): 30, 9, 16, (538,538,0): 28, 7, 16, (538,539,0): 26, 6, 15, (538,540,0): 24, 4, 15, (538,541,0): 24, 4, 15, (538,542,0): 22, 5, 15, (538,543,0): 23, 6, 16, (538,544,0): 20, 2, 14, (538,545,0): 19, 3, 14, (538,546,0): 19, 3, 14, (538,547,0): 20, 4, 15, (538,548,0): 21, 5, 16, (538,549,0): 21, 5, 16, (538,550,0): 21, 5, 16, (538,551,0): 22, 6, 17, (538,552,0): 21, 5, 16, (538,553,0): 21, 5, 16, (538,554,0): 21, 5, 16, (538,555,0): 22, 6, 17, (538,556,0): 22, 6, 17, (538,557,0): 23, 7, 18, (538,558,0): 23, 7, 18, (538,559,0): 23, 7, 18, (538,560,0): 25, 8, 18, (538,561,0): 26, 9, 19, (538,562,0): 27, 10, 20, (538,563,0): 28, 11, 21, (538,564,0): 28, 11, 21, (538,565,0): 27, 10, 20, (538,566,0): 25, 9, 19, (538,567,0): 24, 8, 18, (538,568,0): 23, 10, 19, (538,569,0): 23, 10, 19, (538,570,0): 22, 11, 19, (538,571,0): 22, 11, 19, (538,572,0): 22, 11, 19, (538,573,0): 22, 11, 19, (538,574,0): 22, 11, 19, (538,575,0): 22, 11, 19, (538,576,0): 23, 12, 20, (538,577,0): 23, 12, 20, (538,578,0): 23, 12, 20, (538,579,0): 24, 13, 21, (538,580,0): 24, 13, 21, (538,581,0): 25, 14, 22, (538,582,0): 25, 14, 22, (538,583,0): 25, 14, 22, (538,584,0): 26, 15, 23, (538,585,0): 26, 15, 23, (538,586,0): 26, 15, 23, (538,587,0): 26, 15, 23, (538,588,0): 26, 15, 23, (538,589,0): 26, 15, 23, (538,590,0): 26, 15, 23, (538,591,0): 26, 15, 23, (538,592,0): 29, 17, 27, (538,593,0): 29, 17, 27, (538,594,0): 28, 16, 26, (538,595,0): 26, 14, 24, (538,596,0): 24, 14, 23, (538,597,0): 22, 12, 21, (538,598,0): 21, 11, 20, (538,599,0): 21, 11, 20, (539,0,0): 38, 62, 74, (539,1,0): 38, 62, 74, (539,2,0): 38, 62, 74, (539,3,0): 38, 62, 74, (539,4,0): 38, 62, 74, (539,5,0): 38, 62, 74, (539,6,0): 38, 62, 74, (539,7,0): 38, 62, 74, (539,8,0): 40, 64, 76, (539,9,0): 40, 64, 76, (539,10,0): 40, 64, 76, (539,11,0): 40, 64, 76, (539,12,0): 40, 64, 76, (539,13,0): 40, 64, 76, (539,14,0): 40, 64, 76, (539,15,0): 40, 64, 76, (539,16,0): 40, 64, 76, (539,17,0): 40, 64, 76, (539,18,0): 40, 64, 76, (539,19,0): 41, 65, 77, (539,20,0): 43, 65, 78, (539,21,0): 43, 65, 78, (539,22,0): 43, 65, 78, (539,23,0): 44, 66, 79, (539,24,0): 45, 64, 78, (539,25,0): 45, 64, 78, (539,26,0): 46, 64, 78, (539,27,0): 47, 65, 79, (539,28,0): 47, 65, 79, (539,29,0): 48, 66, 80, (539,30,0): 49, 65, 80, (539,31,0): 49, 65, 78, (539,32,0): 52, 68, 81, (539,33,0): 53, 70, 80, (539,34,0): 53, 70, 80, (539,35,0): 54, 71, 81, (539,36,0): 56, 70, 81, (539,37,0): 57, 71, 82, (539,38,0): 58, 71, 80, (539,39,0): 58, 71, 80, (539,40,0): 58, 71, 79, (539,41,0): 59, 72, 80, (539,42,0): 61, 72, 78, (539,43,0): 62, 73, 79, (539,44,0): 63, 72, 79, (539,45,0): 64, 73, 80, (539,46,0): 64, 73, 80, (539,47,0): 64, 73, 80, (539,48,0): 67, 71, 80, (539,49,0): 67, 71, 80, (539,50,0): 68, 72, 81, (539,51,0): 68, 72, 81, (539,52,0): 69, 73, 82, (539,53,0): 69, 73, 82, (539,54,0): 70, 74, 83, (539,55,0): 70, 74, 83, (539,56,0): 70, 74, 83, (539,57,0): 70, 74, 83, (539,58,0): 70, 74, 83, (539,59,0): 70, 74, 83, (539,60,0): 70, 74, 83, (539,61,0): 70, 74, 83, (539,62,0): 70, 74, 83, (539,63,0): 70, 74, 83, (539,64,0): 71, 73, 86, (539,65,0): 72, 74, 87, (539,66,0): 72, 74, 87, (539,67,0): 73, 75, 88, (539,68,0): 75, 74, 88, (539,69,0): 76, 75, 89, (539,70,0): 77, 75, 89, (539,71,0): 77, 75, 89, (539,72,0): 77, 75, 89, (539,73,0): 78, 76, 90, (539,74,0): 79, 75, 90, (539,75,0): 80, 76, 91, (539,76,0): 84, 77, 93, (539,77,0): 85, 78, 94, (539,78,0): 85, 78, 94, (539,79,0): 84, 80, 94, (539,80,0): 84, 80, 94, (539,81,0): 83, 81, 92, (539,82,0): 84, 82, 93, (539,83,0): 84, 82, 93, (539,84,0): 86, 83, 94, (539,85,0): 87, 84, 95, (539,86,0): 87, 84, 95, (539,87,0): 88, 85, 96, (539,88,0): 91, 85, 97, (539,89,0): 91, 85, 97, (539,90,0): 93, 85, 98, (539,91,0): 94, 86, 99, (539,92,0): 95, 87, 100, (539,93,0): 96, 88, 101, (539,94,0): 99, 88, 102, (539,95,0): 100, 89, 103, (539,96,0): 100, 90, 101, (539,97,0): 98, 90, 101, (539,98,0): 97, 91, 101, (539,99,0): 95, 92, 103, (539,100,0): 93, 91, 104, (539,101,0): 90, 89, 103, (539,102,0): 86, 88, 103, (539,103,0): 84, 87, 104, (539,104,0): 86, 89, 108, (539,105,0): 85, 88, 107, (539,106,0): 83, 86, 105, (539,107,0): 82, 83, 101, (539,108,0): 81, 82, 100, (539,109,0): 83, 82, 98, (539,110,0): 83, 82, 98, (539,111,0): 83, 82, 96, (539,112,0): 83, 85, 97, (539,113,0): 83, 85, 97, (539,114,0): 82, 84, 96, (539,115,0): 82, 84, 96, (539,116,0): 81, 83, 95, (539,117,0): 80, 82, 94, (539,118,0): 79, 81, 93, (539,119,0): 79, 81, 93, (539,120,0): 79, 81, 93, (539,121,0): 79, 81, 93, (539,122,0): 79, 81, 93, (539,123,0): 79, 81, 93, (539,124,0): 79, 81, 93, (539,125,0): 79, 81, 93, (539,126,0): 79, 81, 93, (539,127,0): 79, 81, 93, (539,128,0): 76, 78, 90, (539,129,0): 74, 78, 89, (539,130,0): 73, 75, 87, (539,131,0): 72, 76, 87, (539,132,0): 74, 76, 89, (539,133,0): 76, 80, 92, (539,134,0): 80, 82, 95, (539,135,0): 80, 84, 96, (539,136,0): 81, 83, 98, (539,137,0): 80, 83, 98, (539,138,0): 81, 82, 100, (539,139,0): 80, 83, 100, (539,140,0): 80, 81, 99, (539,141,0): 79, 82, 101, (539,142,0): 80, 81, 101, (539,143,0): 78, 81, 100, (539,144,0): 74, 77, 96, (539,145,0): 73, 79, 95, (539,146,0): 74, 79, 98, (539,147,0): 75, 80, 99, (539,148,0): 77, 82, 101, (539,149,0): 78, 83, 102, (539,150,0): 79, 84, 104, (539,151,0): 79, 84, 104, (539,152,0): 81, 86, 108, (539,153,0): 80, 85, 107, (539,154,0): 78, 82, 107, (539,155,0): 77, 81, 106, (539,156,0): 76, 80, 105, (539,157,0): 76, 80, 105, (539,158,0): 77, 81, 106, (539,159,0): 77, 81, 106, (539,160,0): 77, 81, 106, (539,161,0): 77, 82, 104, (539,162,0): 78, 83, 105, (539,163,0): 79, 84, 106, (539,164,0): 81, 83, 106, (539,165,0): 80, 82, 103, (539,166,0): 78, 80, 101, (539,167,0): 78, 81, 100, (539,168,0): 77, 78, 98, (539,169,0): 76, 77, 97, (539,170,0): 78, 76, 97, (539,171,0): 77, 76, 94, (539,172,0): 76, 75, 93, (539,173,0): 76, 75, 91, (539,174,0): 76, 73, 92, (539,175,0): 77, 73, 90, (539,176,0): 78, 71, 87, (539,177,0): 78, 71, 87, (539,178,0): 78, 71, 87, (539,179,0): 77, 70, 86, (539,180,0): 75, 68, 84, (539,181,0): 72, 66, 80, (539,182,0): 70, 64, 78, (539,183,0): 69, 63, 75, (539,184,0): 70, 64, 76, (539,185,0): 70, 64, 74, (539,186,0): 69, 63, 73, (539,187,0): 69, 63, 73, (539,188,0): 69, 63, 73, (539,189,0): 71, 66, 73, (539,190,0): 72, 66, 76, (539,191,0): 73, 67, 77, (539,192,0): 73, 65, 78, (539,193,0): 73, 65, 78, (539,194,0): 74, 66, 81, (539,195,0): 74, 66, 79, (539,196,0): 74, 66, 81, (539,197,0): 72, 64, 77, (539,198,0): 71, 63, 78, (539,199,0): 70, 62, 75, (539,200,0): 65, 57, 72, (539,201,0): 64, 56, 69, (539,202,0): 61, 53, 68, (539,203,0): 59, 51, 64, (539,204,0): 57, 49, 64, (539,205,0): 56, 48, 61, (539,206,0): 56, 48, 63, (539,207,0): 56, 48, 61, (539,208,0): 52, 46, 56, (539,209,0): 52, 47, 54, (539,210,0): 51, 46, 53, (539,211,0): 50, 45, 52, (539,212,0): 49, 44, 51, (539,213,0): 48, 43, 50, (539,214,0): 47, 42, 49, (539,215,0): 47, 42, 49, (539,216,0): 48, 43, 50, (539,217,0): 47, 42, 49, (539,218,0): 47, 42, 49, (539,219,0): 46, 41, 48, (539,220,0): 45, 40, 47, (539,221,0): 44, 39, 46, (539,222,0): 43, 38, 45, (539,223,0): 43, 38, 45, (539,224,0): 42, 39, 46, (539,225,0): 41, 38, 45, (539,226,0): 40, 37, 44, (539,227,0): 40, 37, 44, (539,228,0): 40, 37, 44, (539,229,0): 40, 37, 44, (539,230,0): 41, 38, 45, (539,231,0): 42, 39, 46, (539,232,0): 40, 37, 44, (539,233,0): 40, 37, 44, (539,234,0): 40, 37, 44, (539,235,0): 40, 37, 44, (539,236,0): 40, 37, 44, (539,237,0): 40, 37, 44, (539,238,0): 40, 37, 44, (539,239,0): 40, 37, 44, (539,240,0): 42, 36, 48, (539,241,0): 42, 36, 48, (539,242,0): 42, 36, 48, (539,243,0): 42, 36, 48, (539,244,0): 43, 37, 49, (539,245,0): 43, 37, 49, (539,246,0): 43, 37, 49, (539,247,0): 43, 37, 49, (539,248,0): 42, 36, 48, (539,249,0): 43, 37, 49, (539,250,0): 43, 37, 49, (539,251,0): 43, 37, 49, (539,252,0): 44, 38, 50, (539,253,0): 45, 39, 51, (539,254,0): 45, 39, 51, (539,255,0): 45, 39, 51, (539,256,0): 44, 41, 52, (539,257,0): 44, 41, 52, (539,258,0): 46, 40, 52, (539,259,0): 47, 41, 53, (539,260,0): 47, 41, 53, (539,261,0): 48, 42, 54, (539,262,0): 49, 41, 54, (539,263,0): 49, 41, 54, (539,264,0): 53, 42, 56, (539,265,0): 53, 42, 56, (539,266,0): 54, 43, 57, (539,267,0): 56, 45, 59, (539,268,0): 58, 46, 60, (539,269,0): 60, 48, 62, (539,270,0): 61, 49, 63, (539,271,0): 61, 49, 63, (539,272,0): 64, 50, 63, (539,273,0): 64, 50, 63, (539,274,0): 64, 52, 64, (539,275,0): 66, 54, 66, (539,276,0): 66, 56, 65, (539,277,0): 67, 57, 66, (539,278,0): 68, 58, 67, (539,279,0): 70, 59, 67, (539,280,0): 70, 59, 67, (539,281,0): 72, 59, 68, (539,282,0): 77, 60, 68, (539,283,0): 81, 61, 70, (539,284,0): 86, 63, 73, (539,285,0): 89, 63, 74, (539,286,0): 90, 64, 73, (539,287,0): 91, 64, 71, (539,288,0): 96, 67, 71, (539,289,0): 96, 66, 68, (539,290,0): 95, 66, 68, (539,291,0): 94, 65, 69, (539,292,0): 92, 66, 69, (539,293,0): 92, 66, 69, (539,294,0): 91, 66, 70, (539,295,0): 92, 67, 71, (539,296,0): 93, 67, 70, (539,297,0): 96, 70, 71, (539,298,0): 103, 74, 76, (539,299,0): 108, 78, 76, (539,300,0): 116, 82, 80, (539,301,0): 123, 90, 85, (539,302,0): 133, 98, 94, (539,303,0): 143, 104, 97, (539,304,0): 157, 115, 103, (539,305,0): 161, 118, 102, (539,306,0): 166, 124, 110, (539,307,0): 171, 131, 119, (539,308,0): 177, 139, 128, (539,309,0): 180, 146, 137, (539,310,0): 183, 152, 147, (539,311,0): 184, 156, 152, (539,312,0): 177, 149, 146, (539,313,0): 174, 148, 147, (539,314,0): 167, 143, 143, (539,315,0): 154, 129, 132, (539,316,0): 139, 112, 117, (539,317,0): 122, 95, 102, (539,318,0): 108, 81, 88, (539,319,0): 99, 72, 79, (539,320,0): 95, 65, 75, (539,321,0): 93, 61, 72, (539,322,0): 88, 57, 65, (539,323,0): 85, 54, 62, (539,324,0): 82, 52, 60, (539,325,0): 82, 52, 60, (539,326,0): 80, 53, 58, (539,327,0): 81, 54, 59, (539,328,0): 78, 51, 56, (539,329,0): 75, 48, 53, (539,330,0): 69, 44, 48, (539,331,0): 67, 42, 46, (539,332,0): 64, 42, 45, (539,333,0): 63, 41, 44, (539,334,0): 59, 36, 42, (539,335,0): 55, 34, 39, (539,336,0): 48, 29, 35, (539,337,0): 42, 25, 31, (539,338,0): 37, 20, 26, (539,339,0): 35, 18, 24, (539,340,0): 34, 17, 25, (539,341,0): 33, 16, 24, (539,342,0): 30, 15, 22, (539,343,0): 27, 12, 19, (539,344,0): 20, 7, 16, (539,345,0): 20, 7, 16, (539,346,0): 20, 8, 18, (539,347,0): 20, 8, 18, (539,348,0): 20, 8, 18, (539,349,0): 20, 8, 18, (539,350,0): 21, 9, 21, (539,351,0): 21, 9, 19, (539,352,0): 23, 7, 18, (539,353,0): 23, 7, 17, (539,354,0): 23, 7, 17, (539,355,0): 23, 7, 17, (539,356,0): 23, 7, 17, (539,357,0): 23, 7, 17, (539,358,0): 23, 7, 17, (539,359,0): 23, 7, 17, (539,360,0): 23, 7, 17, (539,361,0): 23, 7, 17, (539,362,0): 23, 7, 17, (539,363,0): 23, 7, 17, (539,364,0): 23, 7, 17, (539,365,0): 23, 7, 17, (539,366,0): 23, 7, 17, (539,367,0): 23, 7, 17, (539,368,0): 21, 8, 17, (539,369,0): 21, 8, 17, (539,370,0): 21, 8, 17, (539,371,0): 21, 8, 17, (539,372,0): 21, 8, 17, (539,373,0): 21, 8, 17, (539,374,0): 21, 8, 17, (539,375,0): 21, 8, 17, (539,376,0): 19, 6, 15, (539,377,0): 19, 6, 15, (539,378,0): 19, 6, 15, (539,379,0): 19, 6, 15, (539,380,0): 19, 6, 15, (539,381,0): 19, 6, 15, (539,382,0): 19, 6, 15, (539,383,0): 18, 7, 15, (539,384,0): 15, 8, 15, (539,385,0): 14, 9, 15, (539,386,0): 15, 8, 15, (539,387,0): 14, 9, 15, (539,388,0): 15, 8, 15, (539,389,0): 14, 9, 15, (539,390,0): 15, 8, 15, (539,391,0): 14, 9, 15, (539,392,0): 14, 7, 14, (539,393,0): 13, 8, 14, (539,394,0): 15, 8, 15, (539,395,0): 15, 10, 16, (539,396,0): 17, 10, 17, (539,397,0): 17, 12, 18, (539,398,0): 19, 12, 19, (539,399,0): 21, 12, 17, (539,400,0): 24, 11, 18, (539,401,0): 26, 11, 16, (539,402,0): 28, 13, 18, (539,403,0): 28, 13, 18, (539,404,0): 28, 13, 18, (539,405,0): 28, 13, 18, (539,406,0): 26, 11, 16, (539,407,0): 26, 11, 16, (539,408,0): 25, 10, 15, (539,409,0): 26, 11, 16, (539,410,0): 28, 13, 18, (539,411,0): 30, 15, 20, (539,412,0): 31, 16, 21, (539,413,0): 30, 15, 20, (539,414,0): 29, 14, 19, (539,415,0): 28, 13, 18, (539,416,0): 31, 16, 21, (539,417,0): 31, 16, 21, (539,418,0): 31, 16, 21, (539,419,0): 30, 15, 20, (539,420,0): 30, 15, 20, (539,421,0): 29, 14, 19, (539,422,0): 29, 14, 19, (539,423,0): 29, 14, 19, (539,424,0): 28, 13, 18, (539,425,0): 28, 13, 18, (539,426,0): 28, 13, 18, (539,427,0): 27, 12, 17, (539,428,0): 26, 11, 16, (539,429,0): 26, 11, 16, (539,430,0): 26, 11, 16, (539,431,0): 25, 10, 13, (539,432,0): 24, 9, 12, (539,433,0): 25, 11, 11, (539,434,0): 26, 12, 12, (539,435,0): 27, 13, 13, (539,436,0): 27, 13, 13, (539,437,0): 26, 12, 12, (539,438,0): 25, 11, 11, (539,439,0): 24, 10, 10, (539,440,0): 24, 10, 10, (539,441,0): 24, 10, 10, (539,442,0): 24, 10, 10, (539,443,0): 24, 10, 10, (539,444,0): 24, 10, 10, (539,445,0): 24, 10, 10, (539,446,0): 24, 10, 10, (539,447,0): 25, 9, 10, (539,448,0): 29, 10, 12, (539,449,0): 30, 10, 12, (539,450,0): 31, 11, 13, (539,451,0): 32, 12, 14, (539,452,0): 33, 13, 15, (539,453,0): 34, 14, 16, (539,454,0): 35, 15, 17, (539,455,0): 35, 15, 17, (539,456,0): 34, 14, 16, (539,457,0): 34, 14, 16, (539,458,0): 35, 15, 17, (539,459,0): 35, 15, 17, (539,460,0): 36, 16, 18, (539,461,0): 37, 17, 19, (539,462,0): 37, 17, 19, (539,463,0): 38, 18, 20, (539,464,0): 37, 17, 19, (539,465,0): 36, 17, 19, (539,466,0): 35, 16, 18, (539,467,0): 33, 17, 18, (539,468,0): 32, 16, 17, (539,469,0): 31, 15, 16, (539,470,0): 30, 16, 16, (539,471,0): 29, 15, 15, (539,472,0): 34, 18, 19, (539,473,0): 33, 17, 18, (539,474,0): 36, 16, 18, (539,475,0): 37, 15, 18, (539,476,0): 40, 15, 19, (539,477,0): 43, 16, 21, (539,478,0): 47, 18, 23, (539,479,0): 46, 19, 24, (539,480,0): 40, 18, 20, (539,481,0): 39, 19, 20, (539,482,0): 38, 18, 19, (539,483,0): 37, 17, 18, (539,484,0): 35, 16, 18, (539,485,0): 34, 15, 17, (539,486,0): 33, 14, 18, (539,487,0): 33, 14, 18, (539,488,0): 30, 14, 17, (539,489,0): 30, 14, 17, (539,490,0): 28, 13, 18, (539,491,0): 28, 13, 18, (539,492,0): 27, 12, 19, (539,493,0): 27, 12, 19, (539,494,0): 25, 12, 19, (539,495,0): 24, 11, 18, (539,496,0): 21, 10, 18, (539,497,0): 21, 9, 19, (539,498,0): 21, 9, 19, (539,499,0): 22, 10, 20, (539,500,0): 22, 10, 20, (539,501,0): 22, 10, 20, (539,502,0): 23, 10, 20, (539,503,0): 23, 10, 20, (539,504,0): 24, 8, 19, (539,505,0): 24, 8, 19, (539,506,0): 25, 7, 19, (539,507,0): 25, 7, 19, (539,508,0): 25, 7, 19, (539,509,0): 25, 7, 19, (539,510,0): 25, 7, 19, (539,511,0): 27, 7, 19, (539,512,0): 29, 7, 19, (539,513,0): 29, 7, 19, (539,514,0): 30, 8, 20, (539,515,0): 30, 8, 20, (539,516,0): 31, 10, 19, (539,517,0): 32, 11, 20, (539,518,0): 32, 11, 18, (539,519,0): 33, 12, 19, (539,520,0): 36, 15, 22, (539,521,0): 35, 14, 21, (539,522,0): 33, 12, 17, (539,523,0): 31, 10, 15, (539,524,0): 31, 11, 13, (539,525,0): 31, 11, 13, (539,526,0): 32, 12, 14, (539,527,0): 33, 13, 15, (539,528,0): 34, 12, 15, (539,529,0): 36, 11, 15, (539,530,0): 35, 10, 14, (539,531,0): 35, 10, 14, (539,532,0): 32, 9, 15, (539,533,0): 32, 9, 15, (539,534,0): 31, 8, 16, (539,535,0): 30, 9, 16, (539,536,0): 31, 10, 17, (539,537,0): 30, 9, 16, (539,538,0): 27, 7, 16, (539,539,0): 25, 5, 14, (539,540,0): 24, 4, 15, (539,541,0): 24, 4, 15, (539,542,0): 22, 5, 15, (539,543,0): 22, 5, 15, (539,544,0): 18, 2, 13, (539,545,0): 19, 3, 14, (539,546,0): 19, 3, 14, (539,547,0): 20, 4, 15, (539,548,0): 20, 4, 15, (539,549,0): 21, 5, 16, (539,550,0): 21, 5, 16, (539,551,0): 21, 5, 16, (539,552,0): 20, 4, 15, (539,553,0): 21, 5, 16, (539,554,0): 21, 5, 16, (539,555,0): 22, 6, 17, (539,556,0): 22, 6, 17, (539,557,0): 23, 7, 18, (539,558,0): 23, 7, 18, (539,559,0): 23, 7, 18, (539,560,0): 24, 7, 17, (539,561,0): 25, 8, 18, (539,562,0): 27, 10, 20, (539,563,0): 28, 11, 21, (539,564,0): 28, 11, 21, (539,565,0): 28, 11, 21, (539,566,0): 26, 10, 20, (539,567,0): 25, 9, 19, (539,568,0): 23, 10, 19, (539,569,0): 23, 10, 19, (539,570,0): 22, 11, 19, (539,571,0): 22, 11, 19, (539,572,0): 22, 11, 19, (539,573,0): 22, 11, 19, (539,574,0): 22, 11, 19, (539,575,0): 22, 11, 19, (539,576,0): 23, 12, 20, (539,577,0): 23, 12, 20, (539,578,0): 23, 12, 20, (539,579,0): 24, 13, 21, (539,580,0): 24, 13, 21, (539,581,0): 25, 14, 22, (539,582,0): 25, 14, 22, (539,583,0): 25, 14, 22, (539,584,0): 26, 15, 23, (539,585,0): 26, 15, 23, (539,586,0): 26, 15, 23, (539,587,0): 26, 15, 23, (539,588,0): 26, 15, 23, (539,589,0): 26, 15, 23, (539,590,0): 26, 15, 23, (539,591,0): 26, 15, 23, (539,592,0): 30, 18, 28, (539,593,0): 30, 18, 28, (539,594,0): 28, 16, 26, (539,595,0): 26, 14, 24, (539,596,0): 24, 14, 23, (539,597,0): 20, 13, 21, (539,598,0): 18, 11, 19, (539,599,0): 17, 12, 19, (540,0,0): 38, 62, 74, (540,1,0): 38, 62, 74, (540,2,0): 38, 62, 74, (540,3,0): 38, 62, 74, (540,4,0): 38, 62, 74, (540,5,0): 38, 62, 74, (540,6,0): 38, 62, 74, (540,7,0): 38, 62, 74, (540,8,0): 39, 63, 75, (540,9,0): 39, 63, 75, (540,10,0): 39, 63, 75, (540,11,0): 39, 63, 75, (540,12,0): 39, 63, 75, (540,13,0): 39, 63, 75, (540,14,0): 39, 63, 75, (540,15,0): 39, 63, 75, (540,16,0): 39, 63, 75, (540,17,0): 40, 64, 76, (540,18,0): 40, 64, 76, (540,19,0): 40, 64, 76, (540,20,0): 42, 64, 77, (540,21,0): 43, 65, 78, (540,22,0): 43, 65, 78, (540,23,0): 43, 65, 78, (540,24,0): 44, 63, 77, (540,25,0): 44, 63, 77, (540,26,0): 46, 64, 78, (540,27,0): 46, 64, 78, (540,28,0): 47, 65, 79, (540,29,0): 47, 65, 79, (540,30,0): 49, 65, 80, (540,31,0): 49, 65, 78, (540,32,0): 54, 68, 81, (540,33,0): 54, 68, 79, (540,34,0): 54, 68, 79, (540,35,0): 55, 69, 80, (540,36,0): 55, 69, 80, (540,37,0): 56, 70, 81, (540,38,0): 57, 70, 79, (540,39,0): 58, 71, 80, (540,40,0): 60, 70, 79, (540,41,0): 60, 70, 79, (540,42,0): 61, 70, 77, (540,43,0): 62, 71, 78, (540,44,0): 62, 71, 78, (540,45,0): 63, 72, 79, (540,46,0): 63, 72, 79, (540,47,0): 64, 73, 80, (540,48,0): 67, 71, 80, (540,49,0): 67, 71, 80, (540,50,0): 68, 72, 81, (540,51,0): 68, 72, 81, (540,52,0): 69, 73, 82, (540,53,0): 69, 73, 82, (540,54,0): 70, 74, 83, (540,55,0): 70, 74, 83, (540,56,0): 70, 74, 83, (540,57,0): 70, 74, 83, (540,58,0): 70, 74, 83, (540,59,0): 70, 74, 83, (540,60,0): 70, 74, 83, (540,61,0): 70, 74, 83, (540,62,0): 70, 74, 83, (540,63,0): 70, 74, 83, (540,64,0): 71, 73, 86, (540,65,0): 71, 73, 86, (540,66,0): 71, 73, 86, (540,67,0): 72, 74, 87, (540,68,0): 74, 73, 87, (540,69,0): 75, 74, 88, (540,70,0): 76, 74, 88, (540,71,0): 77, 75, 89, (540,72,0): 77, 75, 89, (540,73,0): 78, 76, 90, (540,74,0): 79, 75, 90, (540,75,0): 80, 76, 91, (540,76,0): 84, 77, 93, (540,77,0): 85, 78, 94, (540,78,0): 85, 78, 94, (540,79,0): 84, 80, 94, (540,80,0): 84, 80, 94, (540,81,0): 83, 81, 92, (540,82,0): 84, 82, 93, (540,83,0): 84, 82, 93, (540,84,0): 85, 82, 93, (540,85,0): 86, 83, 94, (540,86,0): 86, 83, 94, (540,87,0): 86, 83, 94, (540,88,0): 90, 84, 96, (540,89,0): 91, 85, 97, (540,90,0): 93, 85, 98, (540,91,0): 94, 86, 99, (540,92,0): 95, 87, 100, (540,93,0): 96, 88, 101, (540,94,0): 99, 88, 102, (540,95,0): 99, 88, 102, (540,96,0): 97, 89, 100, (540,97,0): 96, 90, 100, (540,98,0): 94, 91, 102, (540,99,0): 93, 91, 104, (540,100,0): 89, 91, 106, (540,101,0): 87, 90, 107, (540,102,0): 83, 88, 107, (540,103,0): 82, 87, 106, (540,104,0): 80, 87, 106, (540,105,0): 79, 86, 105, (540,106,0): 79, 84, 104, (540,107,0): 79, 84, 103, (540,108,0): 81, 84, 103, (540,109,0): 83, 84, 102, (540,110,0): 84, 86, 101, (540,111,0): 84, 86, 101, (540,112,0): 84, 86, 99, (540,113,0): 84, 86, 99, (540,114,0): 83, 85, 98, (540,115,0): 83, 85, 98, (540,116,0): 82, 84, 97, (540,117,0): 81, 83, 96, (540,118,0): 81, 83, 96, (540,119,0): 80, 82, 95, (540,120,0): 81, 83, 96, (540,121,0): 81, 83, 96, (540,122,0): 81, 83, 96, (540,123,0): 81, 83, 96, (540,124,0): 81, 83, 96, (540,125,0): 81, 83, 96, (540,126,0): 81, 83, 96, (540,127,0): 81, 83, 96, (540,128,0): 77, 81, 92, (540,129,0): 74, 81, 89, (540,130,0): 75, 79, 90, (540,131,0): 72, 79, 89, (540,132,0): 75, 79, 91, (540,133,0): 76, 82, 94, (540,134,0): 81, 84, 99, (540,135,0): 81, 87, 101, (540,136,0): 83, 86, 103, (540,137,0): 81, 87, 103, (540,138,0): 83, 86, 105, (540,139,0): 80, 85, 104, (540,140,0): 81, 84, 103, (540,141,0): 79, 84, 104, (540,142,0): 80, 82, 103, (540,143,0): 78, 83, 103, (540,144,0): 74, 81, 100, (540,145,0): 74, 81, 99, (540,146,0): 75, 82, 101, (540,147,0): 76, 83, 102, (540,148,0): 78, 85, 104, (540,149,0): 79, 86, 105, (540,150,0): 80, 86, 108, (540,151,0): 81, 87, 109, (540,152,0): 82, 88, 112, (540,153,0): 81, 87, 111, (540,154,0): 80, 86, 112, (540,155,0): 79, 85, 111, (540,156,0): 79, 84, 113, (540,157,0): 79, 84, 113, (540,158,0): 80, 85, 115, (540,159,0): 80, 85, 115, (540,160,0): 79, 84, 114, (540,161,0): 80, 85, 114, (540,162,0): 81, 86, 115, (540,163,0): 82, 87, 116, (540,164,0): 83, 87, 116, (540,165,0): 83, 87, 114, (540,166,0): 82, 86, 113, (540,167,0): 81, 85, 110, (540,168,0): 81, 83, 108, (540,169,0): 81, 83, 108, (540,170,0): 82, 82, 108, (540,171,0): 82, 82, 106, (540,172,0): 81, 81, 105, (540,173,0): 81, 82, 103, (540,174,0): 83, 81, 105, (540,175,0): 83, 79, 102, (540,176,0): 84, 79, 101, (540,177,0): 86, 78, 99, (540,178,0): 86, 78, 99, (540,179,0): 85, 77, 98, (540,180,0): 83, 76, 94, (540,181,0): 80, 73, 91, (540,182,0): 78, 71, 89, (540,183,0): 76, 69, 85, (540,184,0): 75, 68, 84, (540,185,0): 75, 69, 83, (540,186,0): 74, 68, 82, (540,187,0): 74, 68, 80, (540,188,0): 74, 68, 80, (540,189,0): 76, 70, 80, (540,190,0): 77, 71, 83, (540,191,0): 78, 72, 84, (540,192,0): 76, 68, 83, (540,193,0): 77, 69, 84, (540,194,0): 78, 69, 86, (540,195,0): 78, 70, 85, (540,196,0): 77, 68, 85, (540,197,0): 76, 68, 83, (540,198,0): 75, 66, 83, (540,199,0): 74, 66, 81, (540,200,0): 71, 62, 79, (540,201,0): 69, 61, 76, (540,202,0): 66, 57, 74, (540,203,0): 63, 55, 70, (540,204,0): 61, 52, 69, (540,205,0): 59, 51, 66, (540,206,0): 58, 49, 66, (540,207,0): 58, 50, 65, (540,208,0): 54, 48, 58, (540,209,0): 54, 49, 56, (540,210,0): 53, 48, 55, (540,211,0): 52, 47, 54, (540,212,0): 51, 46, 53, (540,213,0): 50, 45, 52, (540,214,0): 49, 44, 51, (540,215,0): 49, 44, 51, (540,216,0): 49, 44, 51, (540,217,0): 49, 44, 51, (540,218,0): 48, 43, 50, (540,219,0): 47, 42, 49, (540,220,0): 46, 41, 48, (540,221,0): 44, 39, 46, (540,222,0): 43, 38, 45, (540,223,0): 43, 38, 45, (540,224,0): 43, 38, 45, (540,225,0): 43, 38, 45, (540,226,0): 42, 37, 44, (540,227,0): 41, 36, 43, (540,228,0): 41, 36, 43, (540,229,0): 42, 37, 44, (540,230,0): 43, 38, 45, (540,231,0): 43, 38, 45, (540,232,0): 43, 38, 45, (540,233,0): 43, 38, 45, (540,234,0): 43, 38, 45, (540,235,0): 43, 38, 45, (540,236,0): 43, 38, 45, (540,237,0): 43, 38, 45, (540,238,0): 43, 38, 45, (540,239,0): 43, 38, 45, (540,240,0): 43, 37, 49, (540,241,0): 43, 37, 49, (540,242,0): 43, 37, 49, (540,243,0): 43, 37, 49, (540,244,0): 42, 36, 48, (540,245,0): 42, 36, 48, (540,246,0): 42, 36, 48, (540,247,0): 42, 36, 48, (540,248,0): 43, 37, 49, (540,249,0): 43, 37, 49, (540,250,0): 43, 37, 49, (540,251,0): 44, 38, 50, (540,252,0): 45, 39, 51, (540,253,0): 45, 39, 51, (540,254,0): 45, 39, 51, (540,255,0): 46, 40, 52, (540,256,0): 44, 41, 52, (540,257,0): 44, 41, 52, (540,258,0): 47, 41, 53, (540,259,0): 47, 41, 53, (540,260,0): 48, 42, 54, (540,261,0): 48, 42, 54, (540,262,0): 50, 42, 55, (540,263,0): 50, 42, 55, (540,264,0): 51, 40, 54, (540,265,0): 52, 41, 55, (540,266,0): 53, 42, 56, (540,267,0): 55, 44, 58, (540,268,0): 58, 46, 60, (540,269,0): 59, 47, 61, (540,270,0): 61, 49, 63, (540,271,0): 61, 49, 63, (540,272,0): 63, 51, 63, (540,273,0): 64, 52, 64, (540,274,0): 65, 53, 63, (540,275,0): 67, 55, 65, (540,276,0): 69, 57, 67, (540,277,0): 70, 58, 68, (540,278,0): 72, 61, 69, (540,279,0): 73, 60, 69, (540,280,0): 72, 56, 66, (540,281,0): 75, 58, 66, (540,282,0): 82, 61, 70, (540,283,0): 86, 63, 73, (540,284,0): 92, 65, 74, (540,285,0): 96, 66, 76, (540,286,0): 98, 66, 77, (540,287,0): 98, 67, 75, (540,288,0): 97, 67, 69, (540,289,0): 96, 66, 66, (540,290,0): 94, 65, 67, (540,291,0): 92, 63, 65, (540,292,0): 90, 64, 67, (540,293,0): 90, 65, 68, (540,294,0): 91, 66, 70, (540,295,0): 92, 67, 71, (540,296,0): 95, 70, 73, (540,297,0): 100, 74, 75, (540,298,0): 107, 78, 80, (540,299,0): 114, 84, 82, (540,300,0): 123, 89, 87, (540,301,0): 132, 99, 94, (540,302,0): 143, 108, 104, (540,303,0): 152, 115, 106, (540,304,0): 164, 125, 110, (540,305,0): 168, 129, 112, (540,306,0): 176, 138, 125, (540,307,0): 183, 149, 139, (540,308,0): 189, 156, 151, (540,309,0): 190, 160, 158, (540,310,0): 189, 160, 164, (540,311,0): 185, 160, 166, (540,312,0): 175, 149, 158, (540,313,0): 165, 142, 150, (540,314,0): 151, 128, 138, (540,315,0): 135, 112, 122, (540,316,0): 120, 94, 103, (540,317,0): 104, 78, 87, (540,318,0): 94, 69, 75, (540,319,0): 92, 65, 72, (540,320,0): 90, 61, 66, (540,321,0): 90, 59, 64, (540,322,0): 87, 56, 62, (540,323,0): 84, 53, 59, (540,324,0): 81, 52, 57, (540,325,0): 80, 51, 56, (540,326,0): 79, 52, 59, (540,327,0): 80, 53, 60, (540,328,0): 75, 48, 55, (540,329,0): 72, 45, 52, (540,330,0): 68, 43, 49, (540,331,0): 67, 42, 48, (540,332,0): 65, 42, 48, (540,333,0): 64, 41, 47, (540,334,0): 60, 37, 43, (540,335,0): 55, 34, 39, (540,336,0): 47, 28, 34, (540,337,0): 41, 24, 30, (540,338,0): 37, 20, 26, (540,339,0): 34, 17, 23, (540,340,0): 34, 17, 25, (540,341,0): 33, 16, 24, (540,342,0): 29, 14, 21, (540,343,0): 27, 12, 19, (540,344,0): 20, 7, 16, (540,345,0): 20, 7, 16, (540,346,0): 19, 7, 17, (540,347,0): 19, 7, 17, (540,348,0): 20, 8, 18, (540,349,0): 20, 8, 18, (540,350,0): 20, 8, 20, (540,351,0): 20, 8, 18, (540,352,0): 22, 6, 17, (540,353,0): 22, 6, 16, (540,354,0): 22, 6, 16, (540,355,0): 22, 6, 16, (540,356,0): 22, 6, 16, (540,357,0): 22, 6, 16, (540,358,0): 22, 6, 16, (540,359,0): 22, 6, 16, (540,360,0): 23, 7, 17, (540,361,0): 23, 7, 17, (540,362,0): 23, 7, 17, (540,363,0): 23, 7, 17, (540,364,0): 23, 7, 17, (540,365,0): 23, 7, 17, (540,366,0): 23, 7, 17, (540,367,0): 23, 7, 17, (540,368,0): 23, 7, 17, (540,369,0): 23, 7, 17, (540,370,0): 23, 7, 17, (540,371,0): 23, 7, 17, (540,372,0): 23, 7, 17, (540,373,0): 23, 7, 17, (540,374,0): 23, 7, 17, (540,375,0): 23, 7, 17, (540,376,0): 21, 5, 15, (540,377,0): 21, 5, 15, (540,378,0): 21, 5, 15, (540,379,0): 21, 5, 15, (540,380,0): 21, 5, 15, (540,381,0): 21, 5, 15, (540,382,0): 21, 5, 15, (540,383,0): 19, 6, 15, (540,384,0): 17, 7, 15, (540,385,0): 15, 8, 15, (540,386,0): 17, 7, 15, (540,387,0): 15, 8, 15, (540,388,0): 17, 7, 15, (540,389,0): 15, 8, 15, (540,390,0): 17, 7, 15, (540,391,0): 15, 8, 15, (540,392,0): 16, 6, 14, (540,393,0): 14, 7, 14, (540,394,0): 17, 7, 15, (540,395,0): 16, 9, 16, (540,396,0): 19, 9, 17, (540,397,0): 18, 11, 18, (540,398,0): 21, 11, 19, (540,399,0): 21, 12, 17, (540,400,0): 24, 11, 18, (540,401,0): 26, 11, 16, (540,402,0): 28, 13, 18, (540,403,0): 28, 13, 18, (540,404,0): 28, 13, 18, (540,405,0): 28, 13, 18, (540,406,0): 26, 11, 16, (540,407,0): 26, 11, 16, (540,408,0): 25, 10, 15, (540,409,0): 27, 12, 17, (540,410,0): 29, 14, 19, (540,411,0): 30, 15, 20, (540,412,0): 31, 16, 21, (540,413,0): 30, 15, 20, (540,414,0): 28, 13, 18, (540,415,0): 27, 12, 17, (540,416,0): 31, 16, 21, (540,417,0): 31, 16, 21, (540,418,0): 31, 16, 21, (540,419,0): 30, 15, 20, (540,420,0): 30, 15, 20, (540,421,0): 29, 14, 19, (540,422,0): 29, 14, 19, (540,423,0): 29, 14, 19, (540,424,0): 29, 14, 19, (540,425,0): 28, 13, 18, (540,426,0): 28, 13, 18, (540,427,0): 28, 13, 18, (540,428,0): 27, 12, 17, (540,429,0): 26, 11, 16, (540,430,0): 26, 11, 16, (540,431,0): 26, 11, 14, (540,432,0): 24, 9, 12, (540,433,0): 25, 11, 11, (540,434,0): 26, 12, 12, (540,435,0): 27, 13, 13, (540,436,0): 27, 13, 13, (540,437,0): 26, 12, 12, (540,438,0): 25, 11, 11, (540,439,0): 24, 10, 10, (540,440,0): 24, 10, 10, (540,441,0): 24, 10, 10, (540,442,0): 24, 10, 10, (540,443,0): 24, 10, 10, (540,444,0): 24, 10, 10, (540,445,0): 24, 10, 10, (540,446,0): 24, 10, 10, (540,447,0): 25, 9, 10, (540,448,0): 29, 10, 12, (540,449,0): 30, 10, 12, (540,450,0): 31, 11, 13, (540,451,0): 32, 12, 14, (540,452,0): 33, 13, 15, (540,453,0): 34, 14, 16, (540,454,0): 35, 15, 17, (540,455,0): 35, 15, 17, (540,456,0): 34, 14, 16, (540,457,0): 34, 14, 16, (540,458,0): 35, 15, 17, (540,459,0): 35, 15, 17, (540,460,0): 35, 15, 17, (540,461,0): 36, 16, 18, (540,462,0): 36, 16, 18, (540,463,0): 36, 16, 18, (540,464,0): 35, 16, 18, (540,465,0): 35, 16, 18, (540,466,0): 35, 16, 18, (540,467,0): 33, 17, 18, (540,468,0): 32, 16, 17, (540,469,0): 31, 17, 17, (540,470,0): 31, 17, 17, (540,471,0): 30, 16, 16, (540,472,0): 34, 18, 19, (540,473,0): 34, 18, 19, (540,474,0): 36, 16, 18, (540,475,0): 38, 16, 19, (540,476,0): 41, 16, 20, (540,477,0): 44, 17, 22, (540,478,0): 47, 18, 23, (540,479,0): 49, 20, 25, (540,480,0): 41, 19, 21, (540,481,0): 40, 20, 19, (540,482,0): 39, 19, 20, (540,483,0): 38, 18, 19, (540,484,0): 36, 18, 18, (540,485,0): 35, 17, 17, (540,486,0): 34, 15, 17, (540,487,0): 34, 15, 17, (540,488,0): 32, 16, 19, (540,489,0): 31, 15, 18, (540,490,0): 30, 15, 18, (540,491,0): 30, 15, 18, (540,492,0): 29, 14, 19, (540,493,0): 29, 14, 19, (540,494,0): 26, 14, 18, (540,495,0): 26, 13, 20, (540,496,0): 24, 13, 21, (540,497,0): 24, 12, 22, (540,498,0): 24, 12, 22, (540,499,0): 23, 11, 21, (540,500,0): 23, 11, 21, (540,501,0): 23, 11, 21, (540,502,0): 24, 11, 21, (540,503,0): 24, 11, 21, (540,504,0): 24, 8, 19, (540,505,0): 24, 8, 19, (540,506,0): 25, 7, 19, (540,507,0): 25, 7, 19, (540,508,0): 25, 7, 19, (540,509,0): 25, 7, 19, (540,510,0): 25, 7, 19, (540,511,0): 27, 7, 19, (540,512,0): 30, 8, 20, (540,513,0): 31, 7, 20, (540,514,0): 32, 8, 21, (540,515,0): 32, 8, 21, (540,516,0): 31, 10, 19, (540,517,0): 32, 11, 20, (540,518,0): 32, 11, 18, (540,519,0): 32, 11, 18, (540,520,0): 35, 14, 21, (540,521,0): 34, 13, 20, (540,522,0): 32, 13, 17, (540,523,0): 31, 12, 16, (540,524,0): 30, 11, 13, (540,525,0): 30, 11, 13, (540,526,0): 30, 11, 13, (540,527,0): 32, 12, 14, (540,528,0): 33, 11, 14, (540,529,0): 35, 10, 14, (540,530,0): 32, 10, 13, (540,531,0): 32, 10, 13, (540,532,0): 31, 8, 14, (540,533,0): 31, 8, 14, (540,534,0): 29, 8, 15, (540,535,0): 29, 8, 15, (540,536,0): 30, 9, 16, (540,537,0): 28, 9, 15, (540,538,0): 26, 6, 15, (540,539,0): 24, 4, 13, (540,540,0): 21, 4, 14, (540,541,0): 21, 4, 14, (540,542,0): 21, 4, 14, (540,543,0): 22, 5, 15, (540,544,0): 18, 2, 13, (540,545,0): 18, 2, 13, (540,546,0): 18, 2, 13, (540,547,0): 19, 3, 14, (540,548,0): 19, 3, 14, (540,549,0): 20, 4, 15, (540,550,0): 20, 4, 15, (540,551,0): 21, 5, 16, (540,552,0): 22, 6, 17, (540,553,0): 22, 6, 17, (540,554,0): 22, 6, 17, (540,555,0): 23, 7, 18, (540,556,0): 23, 7, 18, (540,557,0): 24, 8, 19, (540,558,0): 24, 8, 19, (540,559,0): 25, 9, 20, (540,560,0): 23, 6, 16, (540,561,0): 24, 7, 17, (540,562,0): 26, 9, 19, (540,563,0): 27, 10, 20, (540,564,0): 28, 11, 21, (540,565,0): 28, 11, 21, (540,566,0): 27, 11, 21, (540,567,0): 26, 10, 20, (540,568,0): 24, 11, 20, (540,569,0): 24, 11, 20, (540,570,0): 23, 12, 20, (540,571,0): 23, 12, 20, (540,572,0): 23, 12, 20, (540,573,0): 23, 12, 20, (540,574,0): 23, 12, 20, (540,575,0): 23, 12, 20, (540,576,0): 23, 12, 20, (540,577,0): 23, 12, 20, (540,578,0): 23, 12, 20, (540,579,0): 24, 13, 21, (540,580,0): 24, 13, 21, (540,581,0): 25, 14, 22, (540,582,0): 25, 14, 22, (540,583,0): 25, 14, 22, (540,584,0): 26, 15, 23, (540,585,0): 26, 15, 23, (540,586,0): 26, 15, 23, (540,587,0): 26, 15, 23, (540,588,0): 26, 15, 23, (540,589,0): 26, 15, 23, (540,590,0): 26, 15, 23, (540,591,0): 26, 15, 23, (540,592,0): 31, 18, 28, (540,593,0): 31, 18, 28, (540,594,0): 29, 16, 26, (540,595,0): 26, 14, 24, (540,596,0): 24, 14, 23, (540,597,0): 20, 13, 21, (540,598,0): 17, 12, 19, (540,599,0): 15, 12, 19, (541,0,0): 38, 62, 74, (541,1,0): 38, 62, 74, (541,2,0): 38, 62, 74, (541,3,0): 38, 62, 74, (541,4,0): 38, 62, 74, (541,5,0): 38, 62, 74, (541,6,0): 38, 62, 74, (541,7,0): 38, 62, 74, (541,8,0): 39, 63, 75, (541,9,0): 39, 63, 75, (541,10,0): 39, 63, 75, (541,11,0): 39, 63, 75, (541,12,0): 39, 63, 75, (541,13,0): 39, 63, 75, (541,14,0): 39, 63, 75, (541,15,0): 39, 63, 75, (541,16,0): 39, 63, 75, (541,17,0): 39, 63, 75, (541,18,0): 39, 63, 75, (541,19,0): 40, 64, 76, (541,20,0): 41, 63, 76, (541,21,0): 42, 64, 77, (541,22,0): 42, 64, 77, (541,23,0): 43, 65, 78, (541,24,0): 44, 63, 77, (541,25,0): 45, 64, 78, (541,26,0): 46, 64, 78, (541,27,0): 46, 64, 78, (541,28,0): 47, 65, 79, (541,29,0): 47, 65, 79, (541,30,0): 49, 65, 80, (541,31,0): 49, 65, 78, (541,32,0): 53, 67, 80, (541,33,0): 54, 68, 79, (541,34,0): 54, 68, 79, (541,35,0): 54, 68, 79, (541,36,0): 55, 69, 80, (541,37,0): 56, 70, 81, (541,38,0): 57, 70, 79, (541,39,0): 57, 70, 79, (541,40,0): 59, 69, 78, (541,41,0): 60, 70, 79, (541,42,0): 61, 70, 77, (541,43,0): 61, 70, 77, (541,44,0): 62, 71, 78, (541,45,0): 63, 72, 79, (541,46,0): 63, 72, 79, (541,47,0): 64, 71, 79, (541,48,0): 67, 71, 80, (541,49,0): 67, 71, 80, (541,50,0): 68, 72, 81, (541,51,0): 68, 72, 81, (541,52,0): 69, 73, 82, (541,53,0): 69, 73, 82, (541,54,0): 70, 74, 83, (541,55,0): 70, 74, 83, (541,56,0): 70, 74, 83, (541,57,0): 70, 74, 83, (541,58,0): 70, 74, 83, (541,59,0): 70, 74, 83, (541,60,0): 70, 74, 83, (541,61,0): 70, 74, 83, (541,62,0): 70, 74, 83, (541,63,0): 70, 74, 83, (541,64,0): 70, 72, 85, (541,65,0): 71, 73, 86, (541,66,0): 71, 73, 86, (541,67,0): 71, 73, 86, (541,68,0): 74, 73, 87, (541,69,0): 75, 74, 88, (541,70,0): 76, 74, 88, (541,71,0): 76, 74, 88, (541,72,0): 77, 75, 89, (541,73,0): 78, 76, 90, (541,74,0): 79, 75, 90, (541,75,0): 80, 76, 91, (541,76,0): 84, 77, 93, (541,77,0): 85, 78, 94, (541,78,0): 85, 78, 94, (541,79,0): 84, 80, 94, (541,80,0): 85, 81, 95, (541,81,0): 84, 82, 93, (541,82,0): 84, 82, 93, (541,83,0): 84, 82, 93, (541,84,0): 85, 82, 93, (541,85,0): 85, 82, 93, (541,86,0): 85, 82, 93, (541,87,0): 85, 82, 93, (541,88,0): 90, 84, 96, (541,89,0): 90, 84, 96, (541,90,0): 92, 84, 97, (541,91,0): 93, 85, 98, (541,92,0): 94, 86, 99, (541,93,0): 95, 87, 100, (541,94,0): 98, 87, 101, (541,95,0): 96, 88, 101, (541,96,0): 94, 88, 98, (541,97,0): 92, 89, 100, (541,98,0): 92, 90, 103, (541,99,0): 91, 90, 104, (541,100,0): 88, 89, 107, (541,101,0): 84, 89, 108, (541,102,0): 81, 88, 107, (541,103,0): 79, 87, 108, (541,104,0): 78, 86, 107, (541,105,0): 77, 85, 106, (541,106,0): 77, 85, 106, (541,107,0): 77, 84, 103, (541,108,0): 79, 84, 104, (541,109,0): 82, 85, 104, (541,110,0): 85, 86, 104, (541,111,0): 86, 88, 103, (541,112,0): 85, 87, 102, (541,113,0): 85, 87, 102, (541,114,0): 84, 85, 103, (541,115,0): 84, 86, 101, (541,116,0): 84, 85, 103, (541,117,0): 84, 86, 101, (541,118,0): 83, 84, 102, (541,119,0): 83, 85, 100, (541,120,0): 83, 84, 102, (541,121,0): 83, 85, 100, (541,122,0): 83, 84, 102, (541,123,0): 83, 85, 100, (541,124,0): 83, 84, 102, (541,125,0): 83, 85, 100, (541,126,0): 83, 84, 102, (541,127,0): 82, 85, 100, (541,128,0): 78, 85, 95, (541,129,0): 76, 85, 92, (541,130,0): 75, 82, 92, (541,131,0): 74, 83, 92, (541,132,0): 76, 82, 94, (541,133,0): 78, 86, 97, (541,134,0): 82, 88, 102, (541,135,0): 82, 90, 103, (541,136,0): 84, 90, 106, (541,137,0): 83, 90, 106, (541,138,0): 83, 88, 107, (541,139,0): 81, 88, 106, (541,140,0): 81, 86, 106, (541,141,0): 79, 86, 105, (541,142,0): 79, 84, 104, (541,143,0): 78, 85, 104, (541,144,0): 76, 84, 103, (541,145,0): 74, 85, 103, (541,146,0): 77, 85, 106, (541,147,0): 76, 87, 107, (541,148,0): 79, 87, 108, (541,149,0): 77, 88, 110, (541,150,0): 80, 88, 111, (541,151,0): 78, 88, 113, (541,152,0): 81, 88, 114, (541,153,0): 79, 89, 116, (541,154,0): 79, 86, 115, (541,155,0): 77, 86, 115, (541,156,0): 79, 85, 117, (541,157,0): 77, 86, 117, (541,158,0): 80, 86, 118, (541,159,0): 79, 88, 121, (541,160,0): 80, 86, 120, (541,161,0): 79, 88, 121, (541,162,0): 82, 88, 120, (541,163,0): 83, 89, 121, (541,164,0): 84, 90, 122, (541,165,0): 85, 90, 122, (541,166,0): 84, 89, 119, (541,167,0): 83, 88, 118, (541,168,0): 82, 87, 116, (541,169,0): 83, 87, 116, (541,170,0): 83, 87, 116, (541,171,0): 85, 86, 116, (541,172,0): 85, 86, 114, (541,173,0): 85, 86, 114, (541,174,0): 85, 86, 114, (541,175,0): 88, 85, 112, (541,176,0): 90, 84, 110, (541,177,0): 92, 84, 108, (541,178,0): 92, 84, 108, (541,179,0): 92, 84, 107, (541,180,0): 90, 82, 105, (541,181,0): 88, 80, 101, (541,182,0): 86, 78, 99, (541,183,0): 85, 78, 96, (541,184,0): 82, 75, 93, (541,185,0): 82, 75, 91, (541,186,0): 81, 74, 90, (541,187,0): 81, 75, 89, (541,188,0): 82, 76, 90, (541,189,0): 83, 77, 89, (541,190,0): 84, 78, 90, (541,191,0): 85, 79, 93, (541,192,0): 79, 70, 87, (541,193,0): 80, 71, 88, (541,194,0): 81, 72, 91, (541,195,0): 81, 72, 89, (541,196,0): 80, 71, 90, (541,197,0): 79, 70, 87, (541,198,0): 78, 69, 88, (541,199,0): 77, 68, 85, (541,200,0): 76, 67, 86, (541,201,0): 74, 65, 82, (541,202,0): 71, 62, 81, (541,203,0): 67, 58, 75, (541,204,0): 64, 55, 74, (541,205,0): 62, 53, 70, (541,206,0): 60, 51, 70, (541,207,0): 60, 52, 67, (541,208,0): 59, 53, 63, (541,209,0): 58, 53, 60, (541,210,0): 58, 53, 60, (541,211,0): 57, 52, 59, (541,212,0): 56, 51, 58, (541,213,0): 55, 50, 57, (541,214,0): 54, 49, 56, (541,215,0): 53, 48, 55, (541,216,0): 53, 48, 55, (541,217,0): 52, 47, 54, (541,218,0): 51, 46, 53, (541,219,0): 50, 45, 52, (541,220,0): 48, 43, 50, (541,221,0): 47, 42, 49, (541,222,0): 46, 41, 48, (541,223,0): 45, 40, 47, (541,224,0): 44, 39, 46, (541,225,0): 43, 38, 45, (541,226,0): 42, 37, 44, (541,227,0): 41, 36, 43, (541,228,0): 41, 36, 43, (541,229,0): 42, 37, 44, (541,230,0): 43, 38, 45, (541,231,0): 44, 39, 46, (541,232,0): 43, 38, 45, (541,233,0): 43, 38, 45, (541,234,0): 43, 38, 45, (541,235,0): 43, 38, 45, (541,236,0): 43, 38, 45, (541,237,0): 43, 38, 45, (541,238,0): 43, 38, 45, (541,239,0): 43, 38, 45, (541,240,0): 44, 38, 50, (541,241,0): 44, 38, 50, (541,242,0): 43, 37, 49, (541,243,0): 43, 37, 49, (541,244,0): 42, 36, 48, (541,245,0): 42, 36, 48, (541,246,0): 41, 35, 47, (541,247,0): 41, 35, 47, (541,248,0): 43, 37, 49, (541,249,0): 44, 38, 50, (541,250,0): 44, 38, 50, (541,251,0): 45, 39, 51, (541,252,0): 45, 39, 51, (541,253,0): 46, 40, 52, (541,254,0): 46, 40, 52, (541,255,0): 46, 40, 52, (541,256,0): 45, 42, 53, (541,257,0): 46, 43, 54, (541,258,0): 48, 42, 54, (541,259,0): 48, 42, 54, (541,260,0): 49, 43, 55, (541,261,0): 50, 44, 56, (541,262,0): 51, 43, 56, (541,263,0): 51, 43, 56, (541,264,0): 52, 41, 55, (541,265,0): 53, 42, 56, (541,266,0): 54, 43, 57, (541,267,0): 56, 45, 59, (541,268,0): 59, 47, 61, (541,269,0): 61, 49, 63, (541,270,0): 63, 51, 65, (541,271,0): 64, 52, 66, (541,272,0): 62, 50, 62, (541,273,0): 63, 51, 63, (541,274,0): 65, 53, 63, (541,275,0): 67, 55, 65, (541,276,0): 69, 57, 67, (541,277,0): 71, 59, 69, (541,278,0): 73, 60, 69, (541,279,0): 76, 60, 70, (541,280,0): 79, 62, 70, (541,281,0): 83, 63, 72, (541,282,0): 91, 65, 76, (541,283,0): 96, 68, 80, (541,284,0): 101, 69, 80, (541,285,0): 103, 70, 81, (541,286,0): 106, 68, 81, (541,287,0): 104, 69, 76, (541,288,0): 99, 67, 68, (541,289,0): 97, 67, 65, (541,290,0): 94, 66, 65, (541,291,0): 91, 65, 66, (541,292,0): 91, 65, 68, (541,293,0): 92, 67, 70, (541,294,0): 94, 69, 73, (541,295,0): 95, 70, 74, (541,296,0): 101, 76, 79, (541,297,0): 107, 81, 84, (541,298,0): 115, 86, 88, (541,299,0): 122, 92, 90, (541,300,0): 132, 98, 96, (541,301,0): 143, 108, 104, (541,302,0): 155, 118, 112, (541,303,0): 163, 126, 117, (541,304,0): 171, 135, 119, (541,305,0): 173, 140, 121, (541,306,0): 180, 148, 135, (541,307,0): 187, 157, 149, (541,308,0): 190, 162, 161, (541,309,0): 188, 161, 166, (541,310,0): 182, 156, 167, (541,311,0): 176, 152, 166, (541,312,0): 166, 143, 159, (541,313,0): 152, 129, 147, (541,314,0): 133, 110, 126, (541,315,0): 118, 94, 108, (541,316,0): 104, 78, 91, (541,317,0): 91, 63, 75, (541,318,0): 84, 57, 64, (541,319,0): 86, 57, 62, (541,320,0): 85, 55, 57, (541,321,0): 85, 55, 57, (541,322,0): 83, 53, 55, (541,323,0): 80, 49, 54, (541,324,0): 75, 46, 50, (541,325,0): 73, 44, 49, (541,326,0): 72, 45, 52, (541,327,0): 74, 47, 54, (541,328,0): 72, 45, 52, (541,329,0): 70, 43, 50, (541,330,0): 67, 41, 50, (541,331,0): 67, 42, 48, (541,332,0): 66, 43, 49, (541,333,0): 64, 41, 47, (541,334,0): 60, 37, 43, (541,335,0): 56, 35, 40, (541,336,0): 47, 28, 34, (541,337,0): 41, 24, 30, (541,338,0): 36, 19, 25, (541,339,0): 34, 17, 23, (541,340,0): 33, 16, 24, (541,341,0): 32, 15, 23, (541,342,0): 29, 14, 21, (541,343,0): 26, 11, 18, (541,344,0): 21, 8, 17, (541,345,0): 21, 8, 17, (541,346,0): 20, 8, 18, (541,347,0): 20, 8, 18, (541,348,0): 20, 8, 18, (541,349,0): 19, 7, 17, (541,350,0): 19, 7, 19, (541,351,0): 19, 7, 17, (541,352,0): 22, 6, 17, (541,353,0): 22, 6, 16, (541,354,0): 22, 6, 16, (541,355,0): 22, 6, 16, (541,356,0): 22, 6, 16, (541,357,0): 22, 6, 16, (541,358,0): 22, 6, 16, (541,359,0): 22, 6, 16, (541,360,0): 23, 7, 17, (541,361,0): 23, 7, 17, (541,362,0): 23, 7, 17, (541,363,0): 23, 7, 17, (541,364,0): 23, 7, 17, (541,365,0): 23, 7, 17, (541,366,0): 23, 7, 17, (541,367,0): 23, 7, 17, (541,368,0): 23, 7, 17, (541,369,0): 23, 7, 17, (541,370,0): 23, 7, 17, (541,371,0): 23, 7, 17, (541,372,0): 23, 7, 17, (541,373,0): 23, 7, 17, (541,374,0): 23, 7, 17, (541,375,0): 23, 7, 17, (541,376,0): 21, 5, 15, (541,377,0): 21, 5, 15, (541,378,0): 21, 5, 15, (541,379,0): 21, 5, 15, (541,380,0): 21, 5, 15, (541,381,0): 21, 5, 15, (541,382,0): 21, 5, 15, (541,383,0): 19, 6, 15, (541,384,0): 19, 8, 16, (541,385,0): 18, 8, 16, (541,386,0): 18, 8, 16, (541,387,0): 18, 8, 16, (541,388,0): 18, 8, 16, (541,389,0): 18, 8, 16, (541,390,0): 18, 8, 16, (541,391,0): 18, 8, 16, (541,392,0): 16, 6, 14, (541,393,0): 16, 6, 14, (541,394,0): 17, 7, 15, (541,395,0): 18, 8, 16, (541,396,0): 19, 9, 17, (541,397,0): 20, 10, 18, (541,398,0): 21, 11, 19, (541,399,0): 22, 11, 17, (541,400,0): 24, 11, 18, (541,401,0): 26, 11, 16, (541,402,0): 28, 13, 18, (541,403,0): 28, 13, 18, (541,404,0): 28, 13, 18, (541,405,0): 28, 13, 18, (541,406,0): 26, 11, 16, (541,407,0): 26, 11, 16, (541,408,0): 27, 12, 17, (541,409,0): 28, 13, 18, (541,410,0): 29, 14, 19, (541,411,0): 29, 14, 19, (541,412,0): 29, 14, 19, (541,413,0): 29, 14, 19, (541,414,0): 28, 13, 18, (541,415,0): 28, 13, 18, (541,416,0): 31, 16, 21, (541,417,0): 31, 16, 21, (541,418,0): 31, 16, 21, (541,419,0): 30, 15, 20, (541,420,0): 30, 15, 20, (541,421,0): 29, 14, 19, (541,422,0): 29, 14, 19, (541,423,0): 29, 14, 19, (541,424,0): 29, 14, 19, (541,425,0): 29, 14, 19, (541,426,0): 29, 14, 19, (541,427,0): 28, 13, 18, (541,428,0): 28, 13, 18, (541,429,0): 27, 12, 17, (541,430,0): 27, 12, 17, (541,431,0): 26, 11, 14, (541,432,0): 23, 8, 11, (541,433,0): 24, 10, 10, (541,434,0): 25, 11, 11, (541,435,0): 26, 12, 12, (541,436,0): 26, 12, 12, (541,437,0): 25, 11, 11, (541,438,0): 24, 10, 10, (541,439,0): 23, 9, 9, (541,440,0): 23, 9, 9, (541,441,0): 23, 9, 9, (541,442,0): 23, 9, 9, (541,443,0): 23, 9, 9, (541,444,0): 23, 9, 9, (541,445,0): 23, 9, 9, (541,446,0): 23, 9, 9, (541,447,0): 24, 8, 9, (541,448,0): 29, 10, 12, (541,449,0): 30, 10, 12, (541,450,0): 31, 11, 13, (541,451,0): 32, 12, 14, (541,452,0): 33, 13, 15, (541,453,0): 34, 14, 16, (541,454,0): 35, 15, 17, (541,455,0): 35, 15, 17, (541,456,0): 35, 15, 17, (541,457,0): 35, 15, 17, (541,458,0): 35, 15, 17, (541,459,0): 35, 15, 17, (541,460,0): 35, 15, 17, (541,461,0): 35, 15, 17, (541,462,0): 35, 15, 17, (541,463,0): 35, 15, 17, (541,464,0): 34, 15, 17, (541,465,0): 34, 15, 17, (541,466,0): 32, 16, 17, (541,467,0): 32, 16, 17, (541,468,0): 30, 16, 16, (541,469,0): 30, 16, 16, (541,470,0): 30, 16, 16, (541,471,0): 30, 16, 16, (541,472,0): 34, 18, 19, (541,473,0): 36, 17, 19, (541,474,0): 36, 16, 18, (541,475,0): 37, 15, 18, (541,476,0): 41, 16, 20, (541,477,0): 43, 16, 21, (541,478,0): 48, 17, 23, (541,479,0): 48, 19, 23, (541,480,0): 42, 20, 22, (541,481,0): 41, 21, 20, (541,482,0): 40, 20, 21, (541,483,0): 39, 19, 20, (541,484,0): 37, 19, 19, (541,485,0): 36, 18, 18, (541,486,0): 35, 16, 18, (541,487,0): 35, 16, 18, (541,488,0): 33, 17, 20, (541,489,0): 33, 17, 20, (541,490,0): 32, 17, 20, (541,491,0): 31, 16, 19, (541,492,0): 31, 16, 21, (541,493,0): 30, 15, 20, (541,494,0): 28, 16, 20, (541,495,0): 27, 14, 21, (541,496,0): 26, 15, 23, (541,497,0): 26, 14, 24, (541,498,0): 26, 14, 24, (541,499,0): 25, 13, 23, (541,500,0): 25, 13, 23, (541,501,0): 24, 12, 22, (541,502,0): 25, 12, 22, (541,503,0): 25, 12, 22, (541,504,0): 25, 9, 20, (541,505,0): 25, 9, 20, (541,506,0): 26, 8, 20, (541,507,0): 26, 8, 20, (541,508,0): 26, 8, 20, (541,509,0): 26, 8, 20, (541,510,0): 26, 8, 20, (541,511,0): 28, 8, 20, (541,512,0): 32, 10, 22, (541,513,0): 33, 9, 22, (541,514,0): 33, 9, 22, (541,515,0): 33, 9, 22, (541,516,0): 32, 11, 20, (541,517,0): 32, 11, 20, (541,518,0): 32, 11, 18, (541,519,0): 32, 11, 18, (541,520,0): 33, 12, 19, (541,521,0): 33, 12, 19, (541,522,0): 31, 12, 16, (541,523,0): 31, 12, 16, (541,524,0): 30, 11, 13, (541,525,0): 30, 11, 13, (541,526,0): 30, 11, 13, (541,527,0): 29, 10, 12, (541,528,0): 32, 10, 13, (541,529,0): 34, 9, 13, (541,530,0): 31, 9, 12, (541,531,0): 31, 9, 12, (541,532,0): 30, 7, 13, (541,533,0): 30, 7, 13, (541,534,0): 28, 7, 14, (541,535,0): 28, 7, 14, (541,536,0): 29, 10, 16, (541,537,0): 28, 9, 15, (541,538,0): 26, 6, 15, (541,539,0): 24, 4, 13, (541,540,0): 21, 4, 14, (541,541,0): 21, 4, 14, (541,542,0): 21, 4, 14, (541,543,0): 21, 4, 14, (541,544,0): 17, 1, 12, (541,545,0): 18, 2, 13, (541,546,0): 18, 2, 13, (541,547,0): 18, 2, 13, (541,548,0): 19, 3, 14, (541,549,0): 20, 4, 15, (541,550,0): 20, 4, 15, (541,551,0): 20, 4, 15, (541,552,0): 22, 6, 17, (541,553,0): 22, 6, 17, (541,554,0): 22, 6, 17, (541,555,0): 23, 7, 18, (541,556,0): 23, 7, 18, (541,557,0): 24, 8, 19, (541,558,0): 24, 8, 19, (541,559,0): 24, 8, 19, (541,560,0): 23, 6, 16, (541,561,0): 24, 7, 17, (541,562,0): 26, 9, 19, (541,563,0): 27, 10, 20, (541,564,0): 28, 11, 21, (541,565,0): 29, 12, 22, (541,566,0): 27, 11, 21, (541,567,0): 27, 11, 21, (541,568,0): 24, 11, 20, (541,569,0): 24, 11, 20, (541,570,0): 23, 12, 20, (541,571,0): 23, 12, 20, (541,572,0): 23, 12, 20, (541,573,0): 23, 12, 20, (541,574,0): 23, 12, 20, (541,575,0): 23, 12, 20, (541,576,0): 23, 12, 20, (541,577,0): 23, 12, 20, (541,578,0): 23, 12, 20, (541,579,0): 24, 13, 21, (541,580,0): 24, 13, 21, (541,581,0): 25, 14, 22, (541,582,0): 25, 14, 22, (541,583,0): 25, 14, 22, (541,584,0): 26, 15, 23, (541,585,0): 26, 15, 23, (541,586,0): 26, 15, 23, (541,587,0): 26, 15, 23, (541,588,0): 26, 15, 23, (541,589,0): 26, 15, 23, (541,590,0): 26, 15, 23, (541,591,0): 27, 14, 23, (541,592,0): 32, 16, 27, (541,593,0): 32, 16, 27, (541,594,0): 29, 16, 26, (541,595,0): 26, 14, 24, (541,596,0): 24, 14, 23, (541,597,0): 19, 14, 21, (541,598,0): 16, 13, 20, (541,599,0): 16, 13, 20, (542,0,0): 38, 62, 74, (542,1,0): 38, 62, 74, (542,2,0): 38, 62, 74, (542,3,0): 38, 62, 74, (542,4,0): 38, 62, 74, (542,5,0): 38, 62, 74, (542,6,0): 38, 62, 74, (542,7,0): 38, 62, 74, (542,8,0): 38, 62, 74, (542,9,0): 38, 62, 74, (542,10,0): 38, 62, 74, (542,11,0): 38, 62, 74, (542,12,0): 38, 62, 74, (542,13,0): 38, 62, 74, (542,14,0): 38, 62, 74, (542,15,0): 38, 62, 74, (542,16,0): 38, 62, 74, (542,17,0): 39, 63, 75, (542,18,0): 39, 63, 75, (542,19,0): 40, 64, 76, (542,20,0): 41, 63, 76, (542,21,0): 42, 64, 77, (542,22,0): 42, 64, 77, (542,23,0): 42, 64, 77, (542,24,0): 45, 64, 78, (542,25,0): 45, 64, 78, (542,26,0): 47, 65, 79, (542,27,0): 47, 65, 79, (542,28,0): 48, 66, 80, (542,29,0): 48, 66, 80, (542,30,0): 50, 66, 81, (542,31,0): 50, 66, 79, (542,32,0): 53, 67, 80, (542,33,0): 53, 67, 78, (542,34,0): 54, 68, 79, (542,35,0): 54, 68, 79, (542,36,0): 56, 68, 80, (542,37,0): 56, 68, 80, (542,38,0): 56, 69, 78, (542,39,0): 57, 70, 79, (542,40,0): 59, 69, 78, (542,41,0): 59, 69, 78, (542,42,0): 61, 70, 77, (542,43,0): 61, 70, 77, (542,44,0): 62, 71, 78, (542,45,0): 62, 71, 78, (542,46,0): 63, 70, 78, (542,47,0): 64, 71, 79, (542,48,0): 67, 71, 80, (542,49,0): 67, 71, 80, (542,50,0): 68, 72, 81, (542,51,0): 68, 72, 81, (542,52,0): 69, 73, 82, (542,53,0): 69, 73, 82, (542,54,0): 70, 74, 83, (542,55,0): 70, 74, 83, (542,56,0): 70, 74, 83, (542,57,0): 70, 74, 83, (542,58,0): 70, 74, 83, (542,59,0): 70, 74, 83, (542,60,0): 70, 74, 83, (542,61,0): 70, 74, 83, (542,62,0): 70, 74, 83, (542,63,0): 70, 74, 83, (542,64,0): 70, 72, 85, (542,65,0): 70, 72, 85, (542,66,0): 71, 73, 86, (542,67,0): 71, 73, 86, (542,68,0): 74, 73, 87, (542,69,0): 74, 73, 87, (542,70,0): 75, 73, 87, (542,71,0): 76, 74, 88, (542,72,0): 77, 75, 89, (542,73,0): 78, 76, 90, (542,74,0): 79, 75, 90, (542,75,0): 80, 76, 91, (542,76,0): 84, 77, 93, (542,77,0): 85, 78, 94, (542,78,0): 85, 78, 94, (542,79,0): 84, 80, 94, (542,80,0): 85, 81, 95, (542,81,0): 84, 82, 93, (542,82,0): 84, 82, 93, (542,83,0): 83, 81, 92, (542,84,0): 84, 81, 92, (542,85,0): 84, 81, 92, (542,86,0): 84, 81, 92, (542,87,0): 84, 81, 92, (542,88,0): 90, 84, 96, (542,89,0): 90, 84, 96, (542,90,0): 92, 84, 97, (542,91,0): 93, 85, 98, (542,92,0): 94, 86, 99, (542,93,0): 95, 87, 100, (542,94,0): 98, 87, 101, (542,95,0): 96, 88, 101, (542,96,0): 91, 85, 97, (542,97,0): 90, 87, 98, (542,98,0): 90, 88, 102, (542,99,0): 87, 89, 104, (542,100,0): 86, 89, 108, (542,101,0): 83, 88, 108, (542,102,0): 79, 87, 108, (542,103,0): 77, 88, 110, (542,104,0): 78, 89, 111, (542,105,0): 77, 88, 110, (542,106,0): 78, 86, 109, (542,107,0): 78, 84, 106, (542,108,0): 79, 84, 104, (542,109,0): 79, 84, 103, (542,110,0): 82, 85, 102, (542,111,0): 82, 85, 102, (542,112,0): 85, 86, 104, (542,113,0): 85, 86, 104, (542,114,0): 85, 86, 106, (542,115,0): 86, 87, 105, (542,116,0): 86, 87, 107, (542,117,0): 86, 87, 105, (542,118,0): 87, 88, 108, (542,119,0): 87, 88, 106, (542,120,0): 86, 87, 107, (542,121,0): 86, 87, 105, (542,122,0): 86, 87, 107, (542,123,0): 86, 87, 105, (542,124,0): 86, 87, 107, (542,125,0): 86, 87, 105, (542,126,0): 86, 87, 107, (542,127,0): 85, 88, 103, (542,128,0): 80, 89, 98, (542,129,0): 77, 88, 94, (542,130,0): 77, 86, 95, (542,131,0): 76, 86, 95, (542,132,0): 78, 87, 96, (542,133,0): 79, 89, 99, (542,134,0): 83, 91, 104, (542,135,0): 84, 94, 106, (542,136,0): 85, 92, 108, (542,137,0): 84, 93, 108, (542,138,0): 84, 91, 109, (542,139,0): 82, 91, 108, (542,140,0): 82, 89, 108, (542,141,0): 79, 87, 106, (542,142,0): 79, 85, 107, (542,143,0): 78, 86, 107, (542,144,0): 77, 88, 108, (542,145,0): 76, 89, 108, (542,146,0): 77, 88, 110, (542,147,0): 77, 89, 111, (542,148,0): 78, 89, 111, (542,149,0): 77, 89, 113, (542,150,0): 78, 88, 113, (542,151,0): 77, 89, 115, (542,152,0): 78, 87, 116, (542,153,0): 76, 87, 115, (542,154,0): 76, 85, 116, (542,155,0): 75, 86, 116, (542,156,0): 76, 85, 118, (542,157,0): 76, 87, 119, (542,158,0): 78, 87, 120, (542,159,0): 78, 88, 123, (542,160,0): 78, 86, 122, (542,161,0): 78, 88, 123, (542,162,0): 81, 89, 125, (542,163,0): 82, 90, 126, (542,164,0): 83, 92, 125, (542,165,0): 85, 91, 125, (542,166,0): 84, 90, 124, (542,167,0): 84, 90, 124, (542,168,0): 83, 89, 121, (542,169,0): 84, 89, 121, (542,170,0): 84, 89, 119, (542,171,0): 85, 88, 119, (542,172,0): 86, 89, 120, (542,173,0): 86, 89, 120, (542,174,0): 86, 90, 119, (542,175,0): 89, 89, 117, (542,176,0): 93, 89, 116, (542,177,0): 94, 88, 114, (542,178,0): 95, 89, 115, (542,179,0): 95, 90, 113, (542,180,0): 94, 89, 112, (542,181,0): 92, 87, 109, (542,182,0): 91, 86, 108, (542,183,0): 90, 85, 105, (542,184,0): 89, 84, 104, (542,185,0): 89, 85, 102, (542,186,0): 88, 84, 99, (542,187,0): 88, 84, 98, (542,188,0): 88, 84, 98, (542,189,0): 90, 86, 100, (542,190,0): 91, 87, 101, (542,191,0): 94, 88, 102, (542,192,0): 91, 82, 101, (542,193,0): 91, 82, 101, (542,194,0): 92, 83, 104, (542,195,0): 92, 83, 102, (542,196,0): 92, 83, 104, (542,197,0): 91, 82, 101, (542,198,0): 89, 80, 101, (542,199,0): 88, 79, 98, (542,200,0): 87, 78, 99, (542,201,0): 85, 76, 95, (542,202,0): 81, 72, 93, (542,203,0): 77, 68, 87, (542,204,0): 73, 64, 85, (542,205,0): 70, 61, 80, (542,206,0): 69, 60, 81, (542,207,0): 68, 59, 76, (542,208,0): 66, 60, 70, (542,209,0): 65, 60, 67, (542,210,0): 65, 60, 67, (542,211,0): 64, 59, 66, (542,212,0): 63, 58, 65, (542,213,0): 61, 56, 63, (542,214,0): 61, 56, 63, (542,215,0): 60, 55, 62, (542,216,0): 59, 54, 61, (542,217,0): 58, 53, 60, (542,218,0): 57, 52, 59, (542,219,0): 55, 50, 57, (542,220,0): 53, 48, 55, (542,221,0): 52, 47, 54, (542,222,0): 50, 45, 52, (542,223,0): 50, 45, 52, (542,224,0): 47, 42, 49, (542,225,0): 46, 41, 48, (542,226,0): 45, 40, 47, (542,227,0): 44, 39, 46, (542,228,0): 44, 39, 46, (542,229,0): 45, 40, 47, (542,230,0): 46, 41, 48, (542,231,0): 47, 42, 49, (542,232,0): 44, 39, 46, (542,233,0): 44, 39, 46, (542,234,0): 44, 39, 46, (542,235,0): 44, 39, 46, (542,236,0): 44, 39, 46, (542,237,0): 44, 39, 46, (542,238,0): 44, 39, 46, (542,239,0): 44, 39, 46, (542,240,0): 44, 38, 50, (542,241,0): 44, 38, 50, (542,242,0): 44, 38, 50, (542,243,0): 43, 37, 49, (542,244,0): 42, 36, 48, (542,245,0): 41, 35, 47, (542,246,0): 41, 35, 47, (542,247,0): 41, 35, 47, (542,248,0): 44, 38, 50, (542,249,0): 44, 38, 50, (542,250,0): 44, 38, 50, (542,251,0): 45, 39, 51, (542,252,0): 45, 39, 51, (542,253,0): 46, 40, 52, (542,254,0): 46, 40, 52, (542,255,0): 47, 41, 53, (542,256,0): 47, 44, 55, (542,257,0): 47, 44, 55, (542,258,0): 49, 43, 55, (542,259,0): 50, 44, 56, (542,260,0): 50, 44, 56, (542,261,0): 51, 45, 57, (542,262,0): 52, 44, 57, (542,263,0): 53, 45, 58, (542,264,0): 55, 44, 58, (542,265,0): 56, 45, 59, (542,266,0): 58, 47, 61, (542,267,0): 60, 49, 63, (542,268,0): 63, 51, 65, (542,269,0): 66, 54, 68, (542,270,0): 67, 55, 69, (542,271,0): 68, 56, 70, (542,272,0): 67, 57, 68, (542,273,0): 68, 58, 67, (542,274,0): 70, 60, 69, (542,275,0): 72, 62, 71, (542,276,0): 75, 64, 72, (542,277,0): 78, 67, 75, (542,278,0): 80, 67, 76, (542,279,0): 83, 67, 77, (542,280,0): 92, 72, 81, (542,281,0): 95, 74, 83, (542,282,0): 102, 75, 84, (542,283,0): 107, 75, 86, (542,284,0): 111, 75, 87, (542,285,0): 111, 73, 86, (542,286,0): 112, 70, 82, (542,287,0): 110, 70, 79, (542,288,0): 104, 70, 71, (542,289,0): 100, 70, 68, (542,290,0): 97, 69, 68, (542,291,0): 94, 68, 69, (542,292,0): 95, 69, 72, (542,293,0): 96, 71, 74, (542,294,0): 97, 75, 78, (542,295,0): 99, 77, 80, (542,296,0): 111, 86, 90, (542,297,0): 116, 90, 93, (542,298,0): 125, 96, 98, (542,299,0): 132, 102, 100, (542,300,0): 143, 109, 107, (542,301,0): 153, 118, 114, (542,302,0): 166, 129, 123, (542,303,0): 171, 137, 127, (542,304,0): 177, 148, 130, (542,305,0): 176, 151, 131, (542,306,0): 177, 154, 140, (542,307,0): 180, 157, 151, (542,308,0): 179, 157, 159, (542,309,0): 175, 154, 163, (542,310,0): 166, 145, 160, (542,311,0): 159, 137, 158, (542,312,0): 148, 126, 149, (542,313,0): 131, 107, 131, (542,314,0): 114, 89, 111, (542,315,0): 104, 77, 96, (542,316,0): 97, 66, 82, (542,317,0): 87, 55, 68, (542,318,0): 82, 51, 59, (542,319,0): 83, 51, 56, (542,320,0): 80, 50, 50, (542,321,0): 81, 51, 49, (542,322,0): 80, 50, 50, (542,323,0): 77, 47, 49, (542,324,0): 72, 43, 47, (542,325,0): 69, 40, 45, (542,326,0): 68, 41, 48, (542,327,0): 71, 44, 51, (542,328,0): 70, 43, 52, (542,329,0): 68, 41, 50, (542,330,0): 66, 40, 51, (542,331,0): 67, 41, 50, (542,332,0): 66, 43, 51, (542,333,0): 65, 42, 50, (542,334,0): 61, 38, 44, (542,335,0): 56, 35, 40, (542,336,0): 46, 27, 33, (542,337,0): 40, 23, 29, (542,338,0): 36, 19, 25, (542,339,0): 33, 16, 22, (542,340,0): 33, 16, 24, (542,341,0): 32, 15, 23, (542,342,0): 28, 13, 20, (542,343,0): 26, 11, 18, (542,344,0): 24, 11, 20, (542,345,0): 23, 10, 19, (542,346,0): 22, 10, 20, (542,347,0): 21, 9, 19, (542,348,0): 20, 8, 18, (542,349,0): 19, 7, 17, (542,350,0): 19, 7, 19, (542,351,0): 18, 6, 16, (542,352,0): 21, 5, 16, (542,353,0): 21, 5, 15, (542,354,0): 21, 5, 15, (542,355,0): 21, 5, 15, (542,356,0): 21, 5, 15, (542,357,0): 21, 5, 15, (542,358,0): 21, 5, 15, (542,359,0): 21, 5, 15, (542,360,0): 23, 7, 17, (542,361,0): 23, 7, 17, (542,362,0): 23, 7, 17, (542,363,0): 23, 7, 17, (542,364,0): 23, 7, 17, (542,365,0): 23, 7, 17, (542,366,0): 23, 7, 17, (542,367,0): 23, 7, 17, (542,368,0): 23, 7, 17, (542,369,0): 23, 7, 17, (542,370,0): 23, 7, 17, (542,371,0): 23, 7, 17, (542,372,0): 23, 7, 17, (542,373,0): 23, 7, 17, (542,374,0): 23, 7, 17, (542,375,0): 23, 7, 17, (542,376,0): 21, 5, 15, (542,377,0): 21, 5, 15, (542,378,0): 21, 5, 15, (542,379,0): 21, 5, 15, (542,380,0): 21, 5, 15, (542,381,0): 21, 5, 15, (542,382,0): 21, 5, 15, (542,383,0): 19, 6, 15, (542,384,0): 19, 8, 16, (542,385,0): 19, 8, 16, (542,386,0): 19, 8, 16, (542,387,0): 19, 8, 16, (542,388,0): 19, 8, 16, (542,389,0): 19, 8, 16, (542,390,0): 19, 8, 16, (542,391,0): 19, 8, 16, (542,392,0): 17, 6, 14, (542,393,0): 17, 6, 14, (542,394,0): 18, 7, 15, (542,395,0): 19, 8, 16, (542,396,0): 20, 9, 17, (542,397,0): 21, 10, 18, (542,398,0): 22, 11, 19, (542,399,0): 22, 11, 17, (542,400,0): 24, 11, 18, (542,401,0): 26, 11, 16, (542,402,0): 28, 13, 18, (542,403,0): 28, 13, 18, (542,404,0): 28, 13, 18, (542,405,0): 28, 13, 18, (542,406,0): 26, 11, 16, (542,407,0): 26, 11, 16, (542,408,0): 30, 15, 20, (542,409,0): 29, 14, 19, (542,410,0): 28, 13, 18, (542,411,0): 28, 13, 18, (542,412,0): 28, 13, 18, (542,413,0): 28, 13, 18, (542,414,0): 29, 14, 19, (542,415,0): 29, 14, 19, (542,416,0): 31, 16, 21, (542,417,0): 31, 16, 21, (542,418,0): 31, 16, 21, (542,419,0): 30, 15, 20, (542,420,0): 30, 15, 20, (542,421,0): 29, 14, 19, (542,422,0): 29, 14, 19, (542,423,0): 29, 14, 19, (542,424,0): 30, 15, 20, (542,425,0): 29, 14, 19, (542,426,0): 29, 14, 19, (542,427,0): 28, 13, 18, (542,428,0): 28, 13, 18, (542,429,0): 27, 12, 17, (542,430,0): 27, 12, 17, (542,431,0): 27, 12, 15, (542,432,0): 21, 9, 11, (542,433,0): 22, 10, 10, (542,434,0): 23, 11, 11, (542,435,0): 24, 12, 12, (542,436,0): 24, 12, 12, (542,437,0): 23, 11, 11, (542,438,0): 22, 10, 10, (542,439,0): 21, 9, 9, (542,440,0): 21, 9, 9, (542,441,0): 21, 9, 9, (542,442,0): 21, 9, 9, (542,443,0): 21, 9, 9, (542,444,0): 21, 9, 9, (542,445,0): 21, 9, 9, (542,446,0): 21, 9, 9, (542,447,0): 23, 9, 9, (542,448,0): 29, 10, 12, (542,449,0): 30, 10, 12, (542,450,0): 31, 11, 13, (542,451,0): 32, 12, 14, (542,452,0): 33, 13, 15, (542,453,0): 34, 14, 16, (542,454,0): 35, 15, 17, (542,455,0): 35, 15, 17, (542,456,0): 35, 15, 17, (542,457,0): 35, 15, 17, (542,458,0): 35, 15, 17, (542,459,0): 34, 14, 16, (542,460,0): 34, 14, 16, (542,461,0): 34, 14, 16, (542,462,0): 34, 14, 16, (542,463,0): 34, 14, 16, (542,464,0): 32, 13, 15, (542,465,0): 30, 14, 15, (542,466,0): 30, 14, 15, (542,467,0): 30, 14, 15, (542,468,0): 30, 16, 16, (542,469,0): 30, 16, 16, (542,470,0): 30, 16, 16, (542,471,0): 30, 16, 16, (542,472,0): 33, 17, 18, (542,473,0): 35, 16, 18, (542,474,0): 36, 16, 18, (542,475,0): 37, 15, 18, (542,476,0): 40, 15, 19, (542,477,0): 43, 16, 21, (542,478,0): 48, 17, 23, (542,479,0): 48, 19, 23, (542,480,0): 43, 21, 23, (542,481,0): 42, 22, 21, (542,482,0): 41, 21, 20, (542,483,0): 40, 20, 19, (542,484,0): 38, 20, 20, (542,485,0): 37, 19, 19, (542,486,0): 36, 17, 19, (542,487,0): 36, 17, 19, (542,488,0): 34, 18, 19, (542,489,0): 34, 18, 19, (542,490,0): 33, 18, 21, (542,491,0): 32, 17, 20, (542,492,0): 32, 17, 22, (542,493,0): 31, 16, 21, (542,494,0): 29, 17, 21, (542,495,0): 29, 16, 23, (542,496,0): 28, 17, 25, (542,497,0): 28, 16, 26, (542,498,0): 27, 15, 25, (542,499,0): 26, 14, 24, (542,500,0): 26, 14, 24, (542,501,0): 25, 13, 23, (542,502,0): 25, 12, 22, (542,503,0): 25, 12, 22, (542,504,0): 25, 9, 20, (542,505,0): 25, 9, 20, (542,506,0): 26, 8, 20, (542,507,0): 26, 8, 20, (542,508,0): 26, 8, 20, (542,509,0): 26, 8, 20, (542,510,0): 26, 8, 20, (542,511,0): 28, 8, 20, (542,512,0): 33, 11, 23, (542,513,0): 34, 10, 23, (542,514,0): 33, 9, 22, (542,515,0): 33, 9, 22, (542,516,0): 33, 10, 20, (542,517,0): 33, 10, 20, (542,518,0): 32, 11, 18, (542,519,0): 32, 11, 18, (542,520,0): 31, 12, 18, (542,521,0): 31, 12, 18, (542,522,0): 31, 12, 16, (542,523,0): 31, 12, 16, (542,524,0): 30, 11, 13, (542,525,0): 30, 11, 13, (542,526,0): 27, 11, 12, (542,527,0): 29, 10, 12, (542,528,0): 31, 9, 12, (542,529,0): 31, 9, 12, (542,530,0): 30, 8, 11, (542,531,0): 30, 8, 11, (542,532,0): 29, 6, 12, (542,533,0): 29, 6, 12, (542,534,0): 27, 6, 13, (542,535,0): 27, 6, 13, (542,536,0): 28, 9, 15, (542,537,0): 27, 8, 14, (542,538,0): 23, 6, 14, (542,539,0): 22, 5, 13, (542,540,0): 20, 3, 13, (542,541,0): 20, 3, 13, (542,542,0): 21, 4, 14, (542,543,0): 21, 4, 14, (542,544,0): 17, 1, 12, (542,545,0): 15, 1, 14, (542,546,0): 16, 2, 15, (542,547,0): 16, 2, 15, (542,548,0): 17, 3, 16, (542,549,0): 17, 3, 16, (542,550,0): 17, 3, 16, (542,551,0): 18, 4, 17, (542,552,0): 17, 3, 16, (542,553,0): 17, 3, 16, (542,554,0): 18, 4, 17, (542,555,0): 18, 4, 17, (542,556,0): 19, 5, 18, (542,557,0): 19, 5, 18, (542,558,0): 20, 6, 19, (542,559,0): 22, 6, 17, (542,560,0): 22, 5, 15, (542,561,0): 23, 6, 16, (542,562,0): 25, 8, 18, (542,563,0): 27, 10, 20, (542,564,0): 28, 11, 21, (542,565,0): 29, 12, 22, (542,566,0): 28, 12, 22, (542,567,0): 27, 11, 21, (542,568,0): 25, 12, 21, (542,569,0): 25, 12, 21, (542,570,0): 24, 13, 21, (542,571,0): 24, 13, 21, (542,572,0): 24, 13, 21, (542,573,0): 24, 13, 21, (542,574,0): 24, 13, 21, (542,575,0): 24, 13, 21, (542,576,0): 23, 12, 20, (542,577,0): 23, 12, 20, (542,578,0): 23, 12, 20, (542,579,0): 24, 13, 21, (542,580,0): 24, 13, 21, (542,581,0): 25, 14, 22, (542,582,0): 25, 14, 22, (542,583,0): 25, 14, 22, (542,584,0): 26, 15, 23, (542,585,0): 26, 15, 23, (542,586,0): 26, 15, 23, (542,587,0): 26, 15, 23, (542,588,0): 26, 15, 23, (542,589,0): 26, 15, 23, (542,590,0): 26, 15, 23, (542,591,0): 27, 14, 23, (542,592,0): 31, 13, 25, (542,593,0): 31, 13, 27, (542,594,0): 30, 14, 27, (542,595,0): 26, 14, 26, (542,596,0): 24, 14, 25, (542,597,0): 20, 14, 24, (542,598,0): 18, 15, 24, (542,599,0): 17, 16, 24, (543,0,0): 39, 61, 74, (543,1,0): 38, 62, 74, (543,2,0): 39, 61, 74, (543,3,0): 38, 62, 74, (543,4,0): 39, 61, 74, (543,5,0): 38, 62, 74, (543,6,0): 39, 61, 74, (543,7,0): 38, 62, 74, (543,8,0): 39, 61, 74, (543,9,0): 38, 62, 74, (543,10,0): 39, 61, 74, (543,11,0): 38, 62, 74, (543,12,0): 39, 61, 74, (543,13,0): 38, 62, 74, (543,14,0): 39, 61, 74, (543,15,0): 39, 61, 74, (543,16,0): 39, 61, 74, (543,17,0): 39, 61, 74, (543,18,0): 40, 62, 75, (543,19,0): 40, 62, 75, (543,20,0): 41, 63, 76, (543,21,0): 41, 63, 76, (543,22,0): 44, 63, 77, (543,23,0): 44, 63, 77, (543,24,0): 46, 65, 79, (543,25,0): 46, 65, 79, (543,26,0): 47, 65, 79, (543,27,0): 48, 66, 80, (543,28,0): 48, 66, 80, (543,29,0): 49, 67, 81, (543,30,0): 50, 66, 81, (543,31,0): 50, 66, 79, (543,32,0): 53, 67, 80, (543,33,0): 53, 67, 78, (543,34,0): 53, 67, 78, (543,35,0): 54, 68, 79, (543,36,0): 55, 67, 79, (543,37,0): 56, 68, 80, (543,38,0): 56, 69, 78, (543,39,0): 59, 69, 79, (543,40,0): 59, 69, 78, (543,41,0): 60, 69, 78, (543,42,0): 60, 69, 76, (543,43,0): 62, 69, 77, (543,44,0): 62, 69, 77, (543,45,0): 63, 70, 78, (543,46,0): 65, 69, 78, (543,47,0): 66, 70, 79, (543,48,0): 67, 71, 80, (543,49,0): 67, 71, 80, (543,50,0): 68, 72, 81, (543,51,0): 68, 72, 81, (543,52,0): 69, 73, 82, (543,53,0): 69, 73, 82, (543,54,0): 70, 74, 83, (543,55,0): 70, 74, 83, (543,56,0): 70, 74, 83, (543,57,0): 70, 74, 83, (543,58,0): 70, 74, 83, (543,59,0): 70, 74, 83, (543,60,0): 70, 74, 83, (543,61,0): 70, 74, 83, (543,62,0): 70, 74, 83, (543,63,0): 71, 74, 83, (543,64,0): 70, 72, 85, (543,65,0): 70, 72, 85, (543,66,0): 72, 71, 85, (543,67,0): 73, 72, 86, (543,68,0): 73, 72, 86, (543,69,0): 74, 73, 87, (543,70,0): 75, 73, 87, (543,71,0): 76, 74, 88, (543,72,0): 77, 75, 89, (543,73,0): 78, 76, 90, (543,74,0): 79, 75, 90, (543,75,0): 80, 76, 91, (543,76,0): 82, 78, 93, (543,77,0): 83, 79, 94, (543,78,0): 85, 78, 94, (543,79,0): 84, 80, 94, (543,80,0): 85, 81, 95, (543,81,0): 84, 82, 93, (543,82,0): 85, 82, 93, (543,83,0): 84, 81, 92, (543,84,0): 84, 81, 92, (543,85,0): 84, 81, 92, (543,86,0): 83, 80, 91, (543,87,0): 83, 80, 91, (543,88,0): 87, 84, 95, (543,89,0): 90, 84, 98, (543,90,0): 91, 85, 99, (543,91,0): 92, 86, 100, (543,92,0): 93, 87, 101, (543,93,0): 94, 88, 102, (543,94,0): 94, 88, 102, (543,95,0): 95, 89, 103, (543,96,0): 88, 84, 98, (543,97,0): 88, 86, 100, (543,98,0): 88, 87, 103, (543,99,0): 86, 87, 105, (543,100,0): 85, 88, 107, (543,101,0): 82, 87, 107, (543,102,0): 80, 86, 108, (543,103,0): 78, 86, 109, (543,104,0): 81, 92, 114, (543,105,0): 82, 90, 113, (543,106,0): 80, 88, 111, (543,107,0): 78, 84, 106, (543,108,0): 78, 83, 105, (543,109,0): 77, 82, 102, (543,110,0): 79, 82, 101, (543,111,0): 80, 83, 102, (543,112,0): 84, 86, 107, (543,113,0): 84, 86, 107, (543,114,0): 85, 87, 108, (543,115,0): 86, 88, 109, (543,116,0): 86, 88, 109, (543,117,0): 87, 89, 110, (543,118,0): 88, 90, 111, (543,119,0): 88, 90, 111, (543,120,0): 86, 88, 109, (543,121,0): 86, 88, 109, (543,122,0): 86, 88, 109, (543,123,0): 86, 88, 109, (543,124,0): 86, 88, 111, (543,125,0): 86, 88, 111, (543,126,0): 86, 88, 111, (543,127,0): 84, 89, 109, (543,128,0): 81, 88, 104, (543,129,0): 79, 89, 101, (543,130,0): 78, 87, 102, (543,131,0): 77, 86, 101, (543,132,0): 78, 87, 102, (543,133,0): 81, 90, 105, (543,134,0): 84, 93, 110, (543,135,0): 86, 95, 112, (543,136,0): 86, 94, 113, (543,137,0): 85, 93, 112, (543,138,0): 84, 92, 113, (543,139,0): 83, 91, 112, (543,140,0): 81, 89, 110, (543,141,0): 80, 88, 111, (543,142,0): 79, 87, 110, (543,143,0): 79, 87, 110, (543,144,0): 79, 89, 114, (543,145,0): 78, 90, 114, (543,146,0): 78, 90, 114, (543,147,0): 78, 90, 114, (543,148,0): 77, 89, 115, (543,149,0): 77, 89, 115, (543,150,0): 77, 88, 116, (543,151,0): 77, 88, 116, (543,152,0): 75, 86, 116, (543,153,0): 75, 86, 118, (543,154,0): 74, 84, 119, (543,155,0): 73, 83, 118, (543,156,0): 74, 84, 119, (543,157,0): 73, 86, 121, (543,158,0): 76, 86, 122, (543,159,0): 77, 87, 123, (543,160,0): 77, 87, 123, (543,161,0): 78, 88, 124, (543,162,0): 81, 89, 126, (543,163,0): 82, 90, 127, (543,164,0): 83, 91, 127, (543,165,0): 83, 91, 127, (543,166,0): 85, 91, 127, (543,167,0): 84, 90, 126, (543,168,0): 84, 90, 126, (543,169,0): 84, 90, 124, (543,170,0): 85, 89, 124, (543,171,0): 85, 89, 124, (543,172,0): 86, 90, 125, (543,173,0): 86, 90, 125, (543,174,0): 87, 90, 123, (543,175,0): 89, 90, 121, (543,176,0): 93, 90, 121, (543,177,0): 95, 90, 120, (543,178,0): 96, 91, 121, (543,179,0): 96, 92, 119, (543,180,0): 96, 92, 119, (543,181,0): 95, 91, 118, (543,182,0): 94, 90, 115, (543,183,0): 93, 89, 114, (543,184,0): 95, 91, 116, (543,185,0): 94, 90, 113, (543,186,0): 94, 90, 113, (543,187,0): 93, 90, 111, (543,188,0): 94, 91, 112, (543,189,0): 95, 92, 113, (543,190,0): 97, 94, 115, (543,191,0): 98, 95, 116, (543,192,0): 101, 96, 119, (543,193,0): 104, 95, 122, (543,194,0): 104, 95, 122, (543,195,0): 105, 96, 123, (543,196,0): 104, 95, 122, (543,197,0): 101, 95, 121, (543,198,0): 101, 92, 119, (543,199,0): 98, 92, 118, (543,200,0): 96, 90, 116, (543,201,0): 93, 87, 113, (543,202,0): 90, 84, 110, (543,203,0): 85, 79, 105, (543,204,0): 81, 75, 101, (543,205,0): 78, 72, 98, (543,206,0): 77, 71, 97, (543,207,0): 76, 71, 93, (543,208,0): 69, 65, 80, (543,209,0): 69, 66, 77, (543,210,0): 70, 64, 76, (543,211,0): 67, 64, 73, (543,212,0): 68, 62, 74, (543,213,0): 65, 62, 71, (543,214,0): 66, 60, 70, (543,215,0): 64, 61, 70, (543,216,0): 63, 57, 67, (543,217,0): 61, 58, 67, (543,218,0): 61, 55, 65, (543,219,0): 57, 54, 61, (543,220,0): 57, 52, 59, (543,221,0): 54, 51, 58, (543,222,0): 54, 49, 56, (543,223,0): 53, 48, 55, (543,224,0): 50, 45, 52, (543,225,0): 49, 44, 51, (543,226,0): 49, 42, 50, (543,227,0): 47, 42, 49, (543,228,0): 48, 41, 48, (543,229,0): 48, 43, 49, (543,230,0): 49, 44, 50, (543,231,0): 50, 45, 51, (543,232,0): 44, 39, 45, (543,233,0): 44, 39, 45, (543,234,0): 44, 39, 46, (543,235,0): 44, 39, 46, (543,236,0): 44, 38, 48, (543,237,0): 44, 38, 48, (543,238,0): 44, 38, 48, (543,239,0): 44, 38, 48, (543,240,0): 43, 40, 51, (543,241,0): 42, 39, 50, (543,242,0): 42, 39, 50, (543,243,0): 41, 38, 49, (543,244,0): 40, 37, 48, (543,245,0): 39, 36, 47, (543,246,0): 39, 36, 47, (543,247,0): 40, 34, 46, (543,248,0): 44, 38, 50, (543,249,0): 44, 38, 50, (543,250,0): 45, 39, 51, (543,251,0): 46, 38, 51, (543,252,0): 47, 39, 52, (543,253,0): 47, 39, 52, (543,254,0): 48, 40, 53, (543,255,0): 47, 41, 53, (543,256,0): 48, 45, 54, (543,257,0): 48, 45, 54, (543,258,0): 48, 45, 54, (543,259,0): 51, 45, 55, (543,260,0): 51, 45, 55, (543,261,0): 52, 46, 56, (543,262,0): 52, 46, 56, (543,263,0): 54, 46, 57, (543,264,0): 56, 48, 59, (543,265,0): 59, 49, 60, (543,266,0): 61, 51, 62, (543,267,0): 63, 53, 64, (543,268,0): 66, 55, 69, (543,269,0): 69, 57, 69, (543,270,0): 71, 59, 73, (543,271,0): 72, 60, 72, (543,272,0): 77, 65, 77, (543,273,0): 78, 66, 76, (543,274,0): 80, 68, 78, (543,275,0): 82, 70, 80, (543,276,0): 86, 73, 83, (543,277,0): 88, 75, 84, (543,278,0): 92, 76, 86, (543,279,0): 94, 77, 87, (543,280,0): 101, 81, 90, (543,281,0): 105, 82, 90, (543,282,0): 110, 83, 90, (543,283,0): 114, 83, 91, (543,284,0): 116, 81, 88, (543,285,0): 114, 77, 85, (543,286,0): 114, 73, 81, (543,287,0): 111, 72, 77, (543,288,0): 107, 73, 72, (543,289,0): 102, 73, 69, (543,290,0): 100, 70, 68, (543,291,0): 99, 71, 70, (543,292,0): 98, 72, 73, (543,293,0): 100, 76, 76, (543,294,0): 104, 79, 82, (543,295,0): 106, 81, 84, (543,296,0): 118, 93, 96, (543,297,0): 123, 97, 100, (543,298,0): 130, 104, 105, (543,299,0): 138, 110, 109, (543,300,0): 148, 117, 115, (543,301,0): 159, 125, 123, (543,302,0): 171, 136, 132, (543,303,0): 176, 145, 140, (543,304,0): 177, 157, 146, (543,305,0): 173, 156, 146, (543,306,0): 169, 154, 149, (543,307,0): 169, 153, 154, (543,308,0): 167, 150, 158, (543,309,0): 162, 144, 156, (543,310,0): 153, 134, 153, (543,311,0): 146, 127, 149, (543,312,0): 130, 108, 131, (543,313,0): 113, 89, 113, (543,314,0): 100, 72, 94, (543,315,0): 96, 67, 85, (543,316,0): 94, 63, 78, (543,317,0): 87, 55, 66, (543,318,0): 83, 50, 57, (543,319,0): 83, 51, 54, (543,320,0): 79, 49, 49, (543,321,0): 79, 51, 50, (543,322,0): 81, 51, 51, (543,323,0): 77, 48, 50, (543,324,0): 72, 43, 47, (543,325,0): 70, 41, 46, (543,326,0): 69, 42, 47, (543,327,0): 72, 45, 52, (543,328,0): 69, 42, 51, (543,329,0): 68, 41, 50, (543,330,0): 66, 40, 49, (543,331,0): 67, 41, 50, (543,332,0): 68, 42, 51, (543,333,0): 65, 42, 48, (543,334,0): 63, 38, 44, (543,335,0): 57, 34, 40, (543,336,0): 46, 27, 31, (543,337,0): 40, 24, 27, (543,338,0): 35, 18, 24, (543,339,0): 33, 16, 22, (543,340,0): 33, 16, 22, (543,341,0): 32, 15, 23, (543,342,0): 28, 13, 20, (543,343,0): 26, 11, 18, (543,344,0): 25, 12, 19, (543,345,0): 25, 12, 21, (543,346,0): 23, 12, 20, (543,347,0): 22, 10, 20, (543,348,0): 20, 8, 18, (543,349,0): 19, 7, 17, (543,350,0): 18, 6, 16, (543,351,0): 17, 5, 15, (543,352,0): 19, 6, 15, (543,353,0): 19, 6, 15, (543,354,0): 21, 5, 15, (543,355,0): 19, 6, 15, (543,356,0): 21, 5, 15, (543,357,0): 19, 6, 15, (543,358,0): 21, 5, 15, (543,359,0): 19, 6, 15, (543,360,0): 23, 7, 17, (543,361,0): 21, 8, 17, (543,362,0): 23, 7, 17, (543,363,0): 21, 8, 17, (543,364,0): 23, 7, 17, (543,365,0): 21, 8, 17, (543,366,0): 23, 7, 17, (543,367,0): 21, 8, 17, (543,368,0): 23, 7, 17, (543,369,0): 21, 8, 17, (543,370,0): 23, 7, 17, (543,371,0): 21, 8, 17, (543,372,0): 23, 7, 17, (543,373,0): 21, 8, 17, (543,374,0): 23, 7, 17, (543,375,0): 21, 8, 17, (543,376,0): 21, 5, 15, (543,377,0): 19, 6, 15, (543,378,0): 21, 5, 15, (543,379,0): 19, 6, 15, (543,380,0): 21, 5, 15, (543,381,0): 19, 6, 15, (543,382,0): 21, 5, 15, (543,383,0): 19, 6, 15, (543,384,0): 19, 8, 16, (543,385,0): 19, 8, 16, (543,386,0): 19, 8, 16, (543,387,0): 19, 8, 16, (543,388,0): 19, 8, 16, (543,389,0): 19, 8, 16, (543,390,0): 19, 8, 16, (543,391,0): 19, 8, 14, (543,392,0): 17, 6, 14, (543,393,0): 17, 6, 12, (543,394,0): 18, 7, 13, (543,395,0): 19, 8, 14, (543,396,0): 20, 9, 15, (543,397,0): 21, 10, 16, (543,398,0): 22, 11, 17, (543,399,0): 23, 10, 17, (543,400,0): 26, 11, 16, (543,401,0): 26, 11, 14, (543,402,0): 28, 13, 18, (543,403,0): 28, 13, 16, (543,404,0): 28, 13, 18, (543,405,0): 28, 13, 16, (543,406,0): 26, 11, 16, (543,407,0): 26, 11, 14, (543,408,0): 31, 16, 21, (543,409,0): 30, 15, 18, (543,410,0): 28, 13, 18, (543,411,0): 27, 12, 15, (543,412,0): 26, 11, 16, (543,413,0): 27, 12, 15, (543,414,0): 29, 14, 19, (543,415,0): 30, 15, 18, (543,416,0): 31, 16, 21, (543,417,0): 31, 16, 19, (543,418,0): 31, 16, 21, (543,419,0): 30, 15, 18, (543,420,0): 30, 15, 20, (543,421,0): 29, 14, 17, (543,422,0): 29, 14, 19, (543,423,0): 29, 14, 17, (543,424,0): 30, 15, 20, (543,425,0): 30, 15, 18, (543,426,0): 29, 14, 19, (543,427,0): 29, 14, 17, (543,428,0): 28, 13, 18, (543,429,0): 28, 13, 16, (543,430,0): 27, 12, 17, (543,431,0): 27, 12, 15, (543,432,0): 21, 9, 11, (543,433,0): 22, 10, 10, (543,434,0): 23, 11, 13, (543,435,0): 23, 11, 11, (543,436,0): 23, 11, 13, (543,437,0): 22, 12, 11, (543,438,0): 22, 10, 12, (543,439,0): 21, 9, 9, (543,440,0): 21, 9, 11, (543,441,0): 21, 9, 9, (543,442,0): 23, 8, 11, (543,443,0): 23, 9, 9, (543,444,0): 24, 8, 11, (543,445,0): 24, 8, 9, (543,446,0): 24, 8, 11, (543,447,0): 26, 7, 9, (543,448,0): 30, 10, 12, (543,449,0): 30, 10, 12, (543,450,0): 32, 10, 13, (543,451,0): 32, 12, 14, (543,452,0): 34, 12, 15, (543,453,0): 34, 14, 16, (543,454,0): 36, 14, 17, (543,455,0): 35, 15, 17, (543,456,0): 36, 14, 17, (543,457,0): 35, 15, 17, (543,458,0): 36, 14, 17, (543,459,0): 34, 14, 16, (543,460,0): 35, 13, 16, (543,461,0): 34, 14, 16, (543,462,0): 34, 12, 15, (543,463,0): 33, 13, 15, (543,464,0): 31, 12, 14, (543,465,0): 31, 12, 14, (543,466,0): 31, 12, 14, (543,467,0): 32, 13, 15, (543,468,0): 30, 14, 15, (543,469,0): 30, 14, 15, (543,470,0): 30, 14, 15, (543,471,0): 30, 14, 15, (543,472,0): 35, 16, 18, (543,473,0): 34, 15, 17, (543,474,0): 35, 15, 17, (543,475,0): 36, 14, 17, (543,476,0): 39, 14, 18, (543,477,0): 42, 15, 20, (543,478,0): 46, 17, 22, (543,479,0): 45, 19, 22, (543,480,0): 44, 22, 24, (543,481,0): 42, 22, 21, (543,482,0): 41, 21, 20, (543,483,0): 40, 20, 19, (543,484,0): 39, 19, 20, (543,485,0): 37, 19, 19, (543,486,0): 36, 17, 19, (543,487,0): 36, 17, 19, (543,488,0): 37, 18, 20, (543,489,0): 35, 19, 20, (543,490,0): 34, 18, 21, (543,491,0): 33, 18, 21, (543,492,0): 32, 17, 22, (543,493,0): 32, 17, 22, (543,494,0): 31, 16, 21, (543,495,0): 29, 16, 23, (543,496,0): 30, 17, 26, (543,497,0): 28, 17, 25, (543,498,0): 28, 17, 25, (543,499,0): 27, 16, 24, (543,500,0): 26, 15, 23, (543,501,0): 25, 14, 22, (543,502,0): 26, 13, 22, (543,503,0): 25, 12, 21, (543,504,0): 25, 9, 19, (543,505,0): 25, 9, 19, (543,506,0): 25, 9, 19, (543,507,0): 25, 9, 19, (543,508,0): 26, 9, 19, (543,509,0): 25, 9, 19, (543,510,0): 26, 9, 19, (543,511,0): 26, 9, 19, (543,512,0): 33, 11, 23, (543,513,0): 34, 11, 21, (543,514,0): 34, 10, 23, (543,515,0): 34, 11, 21, (543,516,0): 33, 10, 20, (543,517,0): 33, 10, 20, (543,518,0): 32, 11, 18, (543,519,0): 32, 11, 18, (543,520,0): 31, 12, 18, (543,521,0): 31, 12, 18, (543,522,0): 31, 12, 16, (543,523,0): 31, 12, 16, (543,524,0): 31, 12, 16, (543,525,0): 30, 11, 13, (543,526,0): 29, 10, 14, (543,527,0): 28, 9, 13, (543,528,0): 30, 9, 14, (543,529,0): 30, 7, 13, (543,530,0): 30, 7, 13, (543,531,0): 29, 6, 12, (543,532,0): 29, 6, 14, (543,533,0): 27, 6, 13, (543,534,0): 27, 6, 15, (543,535,0): 26, 6, 15, (543,536,0): 28, 8, 17, (543,537,0): 25, 8, 16, (543,538,0): 23, 6, 14, (543,539,0): 21, 4, 14, (543,540,0): 20, 3, 13, (543,541,0): 20, 3, 13, (543,542,0): 20, 3, 13, (543,543,0): 20, 4, 15, (543,544,0): 15, 2, 12, (543,545,0): 15, 1, 14, (543,546,0): 15, 1, 14, (543,547,0): 16, 2, 15, (543,548,0): 16, 2, 15, (543,549,0): 17, 3, 16, (543,550,0): 17, 3, 16, (543,551,0): 18, 4, 17, (543,552,0): 15, 1, 14, (543,553,0): 15, 1, 14, (543,554,0): 15, 1, 14, (543,555,0): 16, 2, 15, (543,556,0): 16, 2, 15, (543,557,0): 17, 3, 16, (543,558,0): 17, 3, 16, (543,559,0): 17, 4, 14, (543,560,0): 21, 5, 15, (543,561,0): 22, 6, 16, (543,562,0): 24, 8, 18, (543,563,0): 26, 10, 20, (543,564,0): 28, 12, 22, (543,565,0): 28, 12, 22, (543,566,0): 26, 13, 22, (543,567,0): 26, 13, 22, (543,568,0): 24, 13, 21, (543,569,0): 24, 13, 21, (543,570,0): 24, 13, 21, (543,571,0): 23, 13, 21, (543,572,0): 24, 13, 21, (543,573,0): 23, 13, 21, (543,574,0): 24, 13, 21, (543,575,0): 24, 13, 21, (543,576,0): 23, 12, 20, (543,577,0): 23, 12, 18, (543,578,0): 23, 12, 20, (543,579,0): 24, 13, 19, (543,580,0): 24, 13, 21, (543,581,0): 25, 14, 20, (543,582,0): 25, 14, 22, (543,583,0): 25, 14, 20, (543,584,0): 26, 15, 23, (543,585,0): 26, 15, 21, (543,586,0): 26, 15, 23, (543,587,0): 26, 15, 21, (543,588,0): 26, 15, 23, (543,589,0): 26, 15, 21, (543,590,0): 26, 15, 23, (543,591,0): 27, 14, 23, (543,592,0): 29, 13, 24, (543,593,0): 29, 13, 26, (543,594,0): 27, 13, 26, (543,595,0): 26, 14, 26, (543,596,0): 24, 14, 25, (543,597,0): 21, 15, 25, (543,598,0): 19, 16, 25, (543,599,0): 19, 16, 25, (544,0,0): 39, 58, 72, (544,1,0): 37, 59, 72, (544,2,0): 39, 58, 72, (544,3,0): 37, 59, 72, (544,4,0): 39, 58, 72, (544,5,0): 37, 59, 72, (544,6,0): 39, 58, 72, (544,7,0): 37, 59, 72, (544,8,0): 39, 58, 72, (544,9,0): 38, 60, 73, (544,10,0): 40, 59, 73, (544,11,0): 39, 61, 74, (544,12,0): 41, 60, 74, (544,13,0): 40, 62, 75, (544,14,0): 42, 61, 75, (544,15,0): 42, 61, 75, (544,16,0): 41, 60, 74, (544,17,0): 41, 60, 74, (544,18,0): 42, 61, 75, (544,19,0): 42, 61, 75, (544,20,0): 43, 62, 76, (544,21,0): 43, 62, 76, (544,22,0): 45, 63, 77, (544,23,0): 45, 63, 77, (544,24,0): 45, 63, 77, (544,25,0): 45, 63, 77, (544,26,0): 46, 64, 78, (544,27,0): 46, 64, 78, (544,28,0): 47, 65, 79, (544,29,0): 47, 65, 79, (544,30,0): 48, 66, 80, (544,31,0): 48, 66, 78, (544,32,0): 49, 65, 78, (544,33,0): 49, 66, 76, (544,34,0): 52, 66, 77, (544,35,0): 52, 66, 77, (544,36,0): 54, 66, 78, (544,37,0): 54, 66, 78, (544,38,0): 57, 67, 77, (544,39,0): 57, 67, 77, (544,40,0): 60, 69, 78, (544,41,0): 61, 68, 78, (544,42,0): 61, 68, 76, (544,43,0): 64, 68, 77, (544,44,0): 64, 68, 77, (544,45,0): 65, 69, 78, (544,46,0): 66, 69, 78, (544,47,0): 66, 69, 78, (544,48,0): 68, 71, 80, (544,49,0): 68, 71, 80, (544,50,0): 69, 72, 81, (544,51,0): 69, 72, 81, (544,52,0): 70, 73, 82, (544,53,0): 70, 73, 82, (544,54,0): 71, 74, 83, (544,55,0): 71, 74, 83, (544,56,0): 71, 74, 83, (544,57,0): 70, 73, 82, (544,58,0): 69, 72, 81, (544,59,0): 68, 71, 80, (544,60,0): 68, 71, 80, (544,61,0): 69, 72, 81, (544,62,0): 70, 73, 82, (544,63,0): 71, 74, 83, (544,64,0): 72, 71, 85, (544,65,0): 72, 71, 85, (544,66,0): 74, 72, 86, (544,67,0): 75, 73, 87, (544,68,0): 76, 74, 88, (544,69,0): 77, 75, 89, (544,70,0): 78, 76, 90, (544,71,0): 78, 76, 90, (544,72,0): 77, 75, 89, (544,73,0): 78, 76, 90, (544,74,0): 78, 76, 90, (544,75,0): 79, 77, 91, (544,76,0): 81, 79, 93, (544,77,0): 82, 80, 94, (544,78,0): 83, 79, 94, (544,79,0): 84, 80, 94, (544,80,0): 84, 80, 94, (544,81,0): 84, 81, 92, (544,82,0): 87, 81, 93, (544,83,0): 85, 82, 93, (544,84,0): 86, 83, 94, (544,85,0): 86, 83, 94, (544,86,0): 85, 83, 96, (544,87,0): 86, 84, 97, (544,88,0): 84, 82, 95, (544,89,0): 85, 83, 97, (544,90,0): 85, 83, 97, (544,91,0): 86, 84, 98, (544,92,0): 85, 84, 98, (544,93,0): 86, 85, 99, (544,94,0): 86, 85, 99, (544,95,0): 86, 85, 99, (544,96,0): 84, 86, 101, (544,97,0): 84, 86, 101, (544,98,0): 84, 85, 103, (544,99,0): 82, 85, 104, (544,100,0): 82, 85, 104, (544,101,0): 81, 83, 104, (544,102,0): 79, 84, 104, (544,103,0): 79, 84, 106, (544,104,0): 80, 85, 107, (544,105,0): 80, 85, 107, (544,106,0): 79, 84, 106, (544,107,0): 79, 84, 106, (544,108,0): 80, 82, 105, (544,109,0): 80, 82, 105, (544,110,0): 79, 81, 104, (544,111,0): 79, 81, 104, (544,112,0): 79, 84, 106, (544,113,0): 79, 84, 106, (544,114,0): 80, 85, 107, (544,115,0): 81, 86, 108, (544,116,0): 82, 86, 111, (544,117,0): 83, 87, 112, (544,118,0): 84, 88, 113, (544,119,0): 84, 88, 113, (544,120,0): 84, 88, 115, (544,121,0): 84, 88, 115, (544,122,0): 84, 88, 115, (544,123,0): 84, 88, 115, (544,124,0): 84, 88, 117, (544,125,0): 84, 88, 117, (544,126,0): 84, 88, 117, (544,127,0): 83, 88, 117, (544,128,0): 80, 86, 112, (544,129,0): 80, 86, 112, (544,130,0): 81, 87, 113, (544,131,0): 83, 89, 115, (544,132,0): 84, 90, 116, (544,133,0): 86, 92, 118, (544,134,0): 87, 92, 121, (544,135,0): 87, 92, 121, (544,136,0): 86, 91, 120, (544,137,0): 86, 91, 120, (544,138,0): 86, 91, 120, (544,139,0): 85, 90, 119, (544,140,0): 85, 90, 119, (544,141,0): 84, 89, 119, (544,142,0): 84, 89, 119, (544,143,0): 82, 89, 118, (544,144,0): 78, 84, 116, (544,145,0): 76, 85, 116, (544,146,0): 76, 85, 116, (544,147,0): 76, 85, 116, (544,148,0): 76, 85, 118, (544,149,0): 76, 85, 118, (544,150,0): 75, 86, 118, (544,151,0): 75, 86, 118, (544,152,0): 73, 86, 120, (544,153,0): 73, 86, 120, (544,154,0): 74, 87, 122, (544,155,0): 74, 87, 122, (544,156,0): 75, 88, 123, (544,157,0): 74, 88, 125, (544,158,0): 76, 88, 126, (544,159,0): 76, 88, 126, (544,160,0): 78, 86, 123, (544,161,0): 78, 86, 123, (544,162,0): 80, 85, 123, (544,163,0): 81, 86, 124, (544,164,0): 81, 86, 124, (544,165,0): 82, 87, 125, (544,166,0): 82, 87, 125, (544,167,0): 83, 88, 126, (544,168,0): 86, 91, 129, (544,169,0): 86, 92, 128, (544,170,0): 86, 92, 128, (544,171,0): 86, 92, 128, (544,172,0): 86, 92, 128, (544,173,0): 86, 92, 128, (544,174,0): 87, 91, 128, (544,175,0): 87, 91, 126, (544,176,0): 93, 93, 127, (544,177,0): 94, 93, 125, (544,178,0): 94, 93, 125, (544,179,0): 95, 94, 126, (544,180,0): 95, 94, 126, (544,181,0): 96, 95, 127, (544,182,0): 96, 95, 129, (544,183,0): 96, 95, 129, (544,184,0): 96, 95, 129, (544,185,0): 97, 96, 130, (544,186,0): 97, 96, 130, (544,187,0): 98, 97, 131, (544,188,0): 98, 97, 131, (544,189,0): 99, 98, 132, (544,190,0): 99, 98, 132, (544,191,0): 99, 98, 132, (544,192,0): 102, 98, 133, (544,193,0): 102, 98, 133, (544,194,0): 102, 98, 133, (544,195,0): 103, 99, 134, (544,196,0): 103, 99, 134, (544,197,0): 102, 101, 135, (544,198,0): 104, 100, 135, (544,199,0): 102, 101, 135, (544,200,0): 101, 100, 134, (544,201,0): 100, 99, 133, (544,202,0): 97, 97, 131, (544,203,0): 95, 95, 129, (544,204,0): 93, 93, 127, (544,205,0): 91, 91, 125, (544,206,0): 87, 90, 123, (544,207,0): 89, 90, 120, (544,208,0): 88, 86, 108, (544,209,0): 88, 85, 102, (544,210,0): 87, 83, 100, (544,211,0): 84, 82, 96, (544,212,0): 82, 78, 95, (544,213,0): 79, 77, 91, (544,214,0): 78, 74, 88, (544,215,0): 76, 74, 87, (544,216,0): 79, 76, 87, (544,217,0): 77, 75, 86, (544,218,0): 75, 72, 83, (544,219,0): 70, 69, 77, (544,220,0): 66, 63, 72, (544,221,0): 59, 58, 66, (544,222,0): 56, 53, 60, (544,223,0): 53, 50, 57, (544,224,0): 54, 47, 55, (544,225,0): 54, 47, 55, (544,226,0): 56, 46, 54, (544,227,0): 53, 46, 53, (544,228,0): 55, 46, 51, (544,229,0): 51, 45, 49, (544,230,0): 50, 44, 46, (544,231,0): 49, 43, 45, (544,232,0): 48, 42, 46, (544,233,0): 48, 42, 46, (544,234,0): 47, 42, 48, (544,235,0): 46, 40, 50, (544,236,0): 46, 40, 52, (544,237,0): 46, 40, 54, (544,238,0): 46, 40, 54, (544,239,0): 44, 40, 54, (544,240,0): 40, 40, 50, (544,241,0): 38, 41, 48, (544,242,0): 38, 41, 48, (544,243,0): 38, 41, 48, (544,244,0): 40, 40, 48, (544,245,0): 40, 40, 48, (544,246,0): 41, 40, 48, (544,247,0): 42, 39, 48, (544,248,0): 43, 37, 47, (544,249,0): 44, 38, 48, (544,250,0): 46, 38, 49, (544,251,0): 49, 39, 50, (544,252,0): 51, 41, 52, (544,253,0): 52, 42, 53, (544,254,0): 54, 42, 54, (544,255,0): 54, 44, 55, (544,256,0): 50, 47, 54, (544,257,0): 51, 50, 56, (544,258,0): 53, 52, 58, (544,259,0): 54, 51, 58, (544,260,0): 53, 50, 57, (544,261,0): 54, 51, 58, (544,262,0): 58, 55, 62, (544,263,0): 63, 58, 65, (544,264,0): 59, 54, 61, (544,265,0): 65, 58, 66, (544,266,0): 72, 65, 73, (544,267,0): 76, 69, 77, (544,268,0): 78, 70, 81, (544,269,0): 83, 73, 82, (544,270,0): 88, 78, 89, (544,271,0): 93, 81, 93, (544,272,0): 91, 75, 88, (544,273,0): 95, 77, 91, (544,274,0): 100, 82, 96, (544,275,0): 105, 87, 101, (544,276,0): 109, 93, 106, (544,277,0): 113, 97, 108, (544,278,0): 117, 99, 111, (544,279,0): 118, 101, 111, (544,280,0): 124, 104, 113, (544,281,0): 125, 102, 108, (544,282,0): 124, 99, 103, (544,283,0): 123, 94, 96, (544,284,0): 120, 90, 90, (544,285,0): 116, 85, 83, (544,286,0): 115, 80, 78, (544,287,0): 112, 79, 74, (544,288,0): 111, 80, 75, (544,289,0): 108, 79, 73, (544,290,0): 105, 76, 72, (544,291,0): 104, 76, 72, (544,292,0): 107, 79, 76, (544,293,0): 111, 86, 82, (544,294,0): 118, 92, 91, (544,295,0): 122, 96, 95, (544,296,0): 131, 105, 106, (544,297,0): 138, 112, 113, (544,298,0): 148, 122, 123, (544,299,0): 156, 130, 131, (544,300,0): 161, 135, 136, (544,301,0): 169, 140, 142, (544,302,0): 176, 147, 149, (544,303,0): 176, 154, 157, (544,304,0): 170, 160, 169, (544,305,0): 159, 155, 169, (544,306,0): 155, 149, 163, (544,307,0): 156, 148, 163, (544,308,0): 158, 147, 164, (544,309,0): 152, 139, 156, (544,310,0): 139, 122, 140, (544,311,0): 128, 107, 124, (544,312,0): 106, 83, 101, (544,313,0): 99, 75, 89, (544,314,0): 89, 63, 74, (544,315,0): 81, 54, 63, (544,316,0): 79, 50, 55, (544,317,0): 77, 48, 52, (544,318,0): 76, 46, 48, (544,319,0): 74, 46, 45, (544,320,0): 72, 43, 45, (544,321,0): 69, 43, 46, (544,322,0): 71, 42, 46, (544,323,0): 68, 42, 45, (544,324,0): 67, 40, 45, (544,325,0): 66, 39, 44, (544,326,0): 66, 39, 44, (544,327,0): 65, 38, 43, (544,328,0): 62, 35, 42, (544,329,0): 64, 37, 44, (544,330,0): 68, 41, 48, (544,331,0): 70, 43, 50, (544,332,0): 69, 42, 49, (544,333,0): 64, 39, 43, (544,334,0): 61, 34, 39, (544,335,0): 55, 33, 36, (544,336,0): 45, 26, 28, (544,337,0): 40, 24, 25, (544,338,0): 36, 20, 23, (544,339,0): 34, 18, 21, (544,340,0): 33, 18, 21, (544,341,0): 31, 16, 21, (544,342,0): 27, 12, 17, (544,343,0): 23, 8, 13, (544,344,0): 23, 11, 15, (544,345,0): 23, 10, 17, (544,346,0): 22, 11, 17, (544,347,0): 21, 10, 18, (544,348,0): 21, 10, 18, (544,349,0): 20, 9, 17, (544,350,0): 19, 9, 17, (544,351,0): 20, 9, 17, (544,352,0): 18, 7, 15, (544,353,0): 18, 7, 15, (544,354,0): 19, 6, 15, (544,355,0): 18, 7, 15, (544,356,0): 19, 6, 15, (544,357,0): 18, 7, 15, (544,358,0): 19, 6, 15, (544,359,0): 18, 7, 15, (544,360,0): 17, 4, 13, (544,361,0): 16, 5, 13, (544,362,0): 18, 5, 14, (544,363,0): 18, 7, 15, (544,364,0): 19, 6, 15, (544,365,0): 19, 8, 16, (544,366,0): 21, 8, 17, (544,367,0): 20, 9, 17, (544,368,0): 18, 5, 14, (544,369,0): 17, 6, 14, (544,370,0): 18, 5, 14, (544,371,0): 17, 6, 14, (544,372,0): 18, 5, 14, (544,373,0): 17, 6, 14, (544,374,0): 18, 5, 14, (544,375,0): 17, 6, 14, (544,376,0): 21, 8, 17, (544,377,0): 20, 9, 17, (544,378,0): 21, 8, 17, (544,379,0): 20, 9, 17, (544,380,0): 21, 8, 17, (544,381,0): 20, 9, 17, (544,382,0): 21, 8, 17, (544,383,0): 20, 9, 17, (544,384,0): 18, 7, 15, (544,385,0): 18, 7, 15, (544,386,0): 18, 7, 15, (544,387,0): 18, 7, 15, (544,388,0): 18, 7, 13, (544,389,0): 18, 7, 13, (544,390,0): 18, 7, 13, (544,391,0): 18, 7, 11, (544,392,0): 18, 7, 13, (544,393,0): 18, 7, 11, (544,394,0): 19, 8, 12, (544,395,0): 19, 8, 12, (544,396,0): 20, 10, 11, (544,397,0): 20, 10, 11, (544,398,0): 21, 11, 12, (544,399,0): 22, 10, 12, (544,400,0): 30, 15, 18, (544,401,0): 31, 15, 16, (544,402,0): 31, 15, 18, (544,403,0): 30, 14, 15, (544,404,0): 29, 13, 16, (544,405,0): 28, 12, 13, (544,406,0): 28, 12, 15, (544,407,0): 27, 11, 12, (544,408,0): 28, 12, 15, (544,409,0): 28, 12, 13, (544,410,0): 28, 12, 15, (544,411,0): 28, 12, 13, (544,412,0): 28, 12, 15, (544,413,0): 28, 12, 13, (544,414,0): 28, 12, 15, (544,415,0): 28, 12, 13, (544,416,0): 31, 16, 19, (544,417,0): 31, 17, 17, (544,418,0): 31, 16, 19, (544,419,0): 31, 17, 17, (544,420,0): 31, 16, 19, (544,421,0): 31, 17, 17, (544,422,0): 31, 16, 19, (544,423,0): 31, 17, 17, (544,424,0): 29, 14, 17, (544,425,0): 29, 15, 15, (544,426,0): 29, 14, 17, (544,427,0): 29, 15, 15, (544,428,0): 28, 13, 16, (544,429,0): 28, 14, 14, (544,430,0): 28, 13, 16, (544,431,0): 28, 13, 16, (544,432,0): 21, 9, 11, (544,433,0): 21, 9, 11, (544,434,0): 21, 10, 14, (544,435,0): 21, 11, 12, (544,436,0): 21, 10, 14, (544,437,0): 20, 11, 12, (544,438,0): 22, 11, 15, (544,439,0): 22, 12, 13, (544,440,0): 23, 11, 15, (544,441,0): 25, 10, 13, (544,442,0): 25, 8, 14, (544,443,0): 28, 7, 12, (544,444,0): 29, 6, 14, (544,445,0): 31, 6, 12, (544,446,0): 31, 4, 13, (544,447,0): 31, 4, 11, (544,448,0): 35, 10, 14, (544,449,0): 33, 11, 13, (544,450,0): 35, 10, 13, (544,451,0): 33, 11, 13, (544,452,0): 35, 10, 13, (544,453,0): 33, 11, 13, (544,454,0): 35, 10, 13, (544,455,0): 33, 11, 13, (544,456,0): 34, 9, 12, (544,457,0): 32, 10, 12, (544,458,0): 34, 9, 12, (544,459,0): 33, 11, 13, (544,460,0): 36, 11, 14, (544,461,0): 34, 12, 14, (544,462,0): 36, 11, 14, (544,463,0): 35, 13, 15, (544,464,0): 33, 11, 13, (544,465,0): 32, 12, 13, (544,466,0): 32, 12, 13, (544,467,0): 32, 12, 13, (544,468,0): 32, 12, 13, (544,469,0): 32, 12, 13, (544,470,0): 32, 12, 13, (544,471,0): 32, 12, 13, (544,472,0): 34, 14, 15, (544,473,0): 34, 14, 15, (544,474,0): 34, 12, 14, (544,475,0): 35, 13, 15, (544,476,0): 36, 14, 16, (544,477,0): 40, 15, 18, (544,478,0): 41, 16, 19, (544,479,0): 43, 18, 21, (544,480,0): 43, 21, 23, (544,481,0): 42, 20, 22, (544,482,0): 40, 18, 20, (544,483,0): 38, 16, 18, (544,484,0): 37, 15, 18, (544,485,0): 37, 17, 19, (544,486,0): 38, 18, 20, (544,487,0): 38, 19, 21, (544,488,0): 39, 20, 24, (544,489,0): 37, 21, 24, (544,490,0): 36, 19, 25, (544,491,0): 36, 19, 25, (544,492,0): 35, 18, 24, (544,493,0): 35, 18, 24, (544,494,0): 35, 18, 26, (544,495,0): 33, 18, 25, (544,496,0): 30, 17, 24, (544,497,0): 30, 17, 24, (544,498,0): 29, 16, 23, (544,499,0): 28, 15, 22, (544,500,0): 26, 13, 20, (544,501,0): 25, 12, 19, (544,502,0): 24, 11, 18, (544,503,0): 23, 10, 17, (544,504,0): 23, 10, 17, (544,505,0): 23, 10, 17, (544,506,0): 24, 11, 18, (544,507,0): 24, 11, 18, (544,508,0): 26, 11, 18, (544,509,0): 24, 11, 18, (544,510,0): 25, 10, 17, (544,511,0): 25, 10, 17, (544,512,0): 28, 8, 17, (544,513,0): 29, 8, 15, (544,514,0): 30, 9, 18, (544,515,0): 31, 10, 17, (544,516,0): 31, 10, 17, (544,517,0): 32, 11, 18, (544,518,0): 33, 12, 19, (544,519,0): 33, 12, 19, (544,520,0): 30, 9, 16, (544,521,0): 31, 10, 17, (544,522,0): 32, 11, 18, (544,523,0): 32, 11, 18, (544,524,0): 32, 11, 18, (544,525,0): 32, 11, 16, (544,526,0): 31, 10, 17, (544,527,0): 30, 9, 16, (544,528,0): 30, 9, 18, (544,529,0): 28, 6, 18, (544,530,0): 26, 4, 16, (544,531,0): 25, 3, 15, (544,532,0): 24, 2, 14, (544,533,0): 24, 4, 15, (544,534,0): 25, 5, 16, (544,535,0): 26, 6, 17, (544,536,0): 25, 5, 16, (544,537,0): 22, 5, 15, (544,538,0): 21, 4, 14, (544,539,0): 18, 2, 13, (544,540,0): 18, 2, 13, (544,541,0): 18, 2, 13, (544,542,0): 19, 3, 14, (544,543,0): 17, 4, 14, (544,544,0): 16, 3, 13, (544,545,0): 15, 3, 13, (544,546,0): 15, 3, 13, (544,547,0): 15, 3, 13, (544,548,0): 15, 3, 13, (544,549,0): 15, 3, 13, (544,550,0): 15, 3, 13, (544,551,0): 15, 3, 13, (544,552,0): 15, 3, 13, (544,553,0): 16, 4, 14, (544,554,0): 16, 4, 14, (544,555,0): 17, 5, 15, (544,556,0): 18, 6, 16, (544,557,0): 19, 7, 17, (544,558,0): 20, 8, 18, (544,559,0): 21, 9, 19, (544,560,0): 22, 11, 19, (544,561,0): 21, 11, 19, (544,562,0): 22, 12, 20, (544,563,0): 23, 13, 21, (544,564,0): 23, 13, 21, (544,565,0): 21, 11, 19, (544,566,0): 20, 10, 18, (544,567,0): 19, 9, 17, (544,568,0): 23, 13, 21, (544,569,0): 23, 13, 21, (544,570,0): 23, 13, 21, (544,571,0): 21, 14, 21, (544,572,0): 23, 13, 21, (544,573,0): 21, 14, 21, (544,574,0): 23, 13, 21, (544,575,0): 23, 13, 21, (544,576,0): 25, 14, 20, (544,577,0): 26, 15, 19, (544,578,0): 26, 15, 21, (544,579,0): 27, 16, 20, (544,580,0): 27, 16, 22, (544,581,0): 28, 17, 21, (544,582,0): 28, 17, 23, (544,583,0): 28, 17, 21, (544,584,0): 27, 16, 22, (544,585,0): 27, 16, 20, (544,586,0): 26, 15, 21, (544,587,0): 26, 15, 19, (544,588,0): 25, 14, 20, (544,589,0): 25, 14, 18, (544,590,0): 24, 13, 19, (544,591,0): 24, 13, 19, (544,592,0): 25, 13, 23, (544,593,0): 24, 14, 25, (544,594,0): 24, 14, 25, (544,595,0): 23, 13, 24, (544,596,0): 21, 13, 24, (544,597,0): 20, 12, 23, (544,598,0): 19, 13, 23, (544,599,0): 18, 12, 22, (545,0,0): 39, 58, 72, (545,1,0): 39, 58, 72, (545,2,0): 39, 58, 72, (545,3,0): 39, 58, 72, (545,4,0): 39, 58, 72, (545,5,0): 39, 58, 72, (545,6,0): 39, 58, 72, (545,7,0): 39, 58, 72, (545,8,0): 39, 58, 72, (545,9,0): 40, 59, 73, (545,10,0): 40, 59, 73, (545,11,0): 40, 59, 73, (545,12,0): 41, 60, 74, (545,13,0): 41, 60, 74, (545,14,0): 42, 61, 75, (545,15,0): 42, 61, 75, (545,16,0): 42, 60, 74, (545,17,0): 42, 60, 74, (545,18,0): 43, 61, 75, (545,19,0): 43, 61, 75, (545,20,0): 44, 62, 76, (545,21,0): 44, 62, 76, (545,22,0): 45, 63, 77, (545,23,0): 45, 63, 77, (545,24,0): 45, 63, 77, (545,25,0): 45, 63, 77, (545,26,0): 46, 64, 78, (545,27,0): 46, 64, 78, (545,28,0): 47, 65, 79, (545,29,0): 47, 65, 79, (545,30,0): 48, 66, 80, (545,31,0): 48, 66, 78, (545,32,0): 50, 66, 79, (545,33,0): 50, 67, 77, (545,34,0): 52, 66, 77, (545,35,0): 53, 67, 78, (545,36,0): 54, 66, 78, (545,37,0): 55, 67, 79, (545,38,0): 57, 67, 77, (545,39,0): 58, 68, 78, (545,40,0): 61, 68, 78, (545,41,0): 61, 68, 78, (545,42,0): 63, 67, 76, (545,43,0): 64, 68, 77, (545,44,0): 65, 68, 77, (545,45,0): 66, 69, 78, (545,46,0): 68, 68, 78, (545,47,0): 68, 68, 78, (545,48,0): 68, 71, 80, (545,49,0): 68, 71, 80, (545,50,0): 68, 71, 80, (545,51,0): 69, 72, 81, (545,52,0): 69, 72, 81, (545,53,0): 70, 73, 82, (545,54,0): 70, 73, 82, (545,55,0): 71, 74, 83, (545,56,0): 71, 74, 83, (545,57,0): 70, 73, 82, (545,58,0): 69, 72, 81, (545,59,0): 68, 71, 80, (545,60,0): 68, 71, 80, (545,61,0): 69, 72, 81, (545,62,0): 70, 73, 82, (545,63,0): 71, 74, 83, (545,64,0): 73, 71, 85, (545,65,0): 73, 71, 85, (545,66,0): 74, 72, 86, (545,67,0): 75, 73, 87, (545,68,0): 76, 74, 88, (545,69,0): 77, 75, 89, (545,70,0): 78, 76, 90, (545,71,0): 78, 76, 90, (545,72,0): 77, 75, 89, (545,73,0): 78, 76, 90, (545,74,0): 78, 76, 90, (545,75,0): 79, 77, 91, (545,76,0): 81, 79, 93, (545,77,0): 82, 80, 94, (545,78,0): 82, 80, 94, (545,79,0): 83, 81, 94, (545,80,0): 85, 79, 93, (545,81,0): 85, 79, 91, (545,82,0): 86, 80, 92, (545,83,0): 86, 80, 92, (545,84,0): 85, 82, 93, (545,85,0): 85, 82, 93, (545,86,0): 85, 83, 96, (545,87,0): 85, 83, 96, (545,88,0): 84, 82, 96, (545,89,0): 85, 83, 97, (545,90,0): 84, 83, 99, (545,91,0): 84, 83, 99, (545,92,0): 83, 85, 100, (545,93,0): 83, 85, 100, (545,94,0): 84, 86, 101, (545,95,0): 84, 86, 101, (545,96,0): 83, 86, 103, (545,97,0): 83, 86, 103, (545,98,0): 83, 86, 105, (545,99,0): 82, 85, 104, (545,100,0): 82, 85, 104, (545,101,0): 81, 84, 103, (545,102,0): 81, 83, 104, (545,103,0): 81, 83, 104, (545,104,0): 82, 84, 107, (545,105,0): 82, 84, 107, (545,106,0): 81, 83, 106, (545,107,0): 81, 83, 106, (545,108,0): 80, 82, 107, (545,109,0): 80, 82, 107, (545,110,0): 79, 81, 106, (545,111,0): 77, 81, 106, (545,112,0): 78, 82, 107, (545,113,0): 77, 83, 107, (545,114,0): 78, 84, 108, (545,115,0): 79, 85, 109, (545,116,0): 80, 86, 112, (545,117,0): 81, 87, 113, (545,118,0): 82, 88, 114, (545,119,0): 83, 89, 115, (545,120,0): 83, 88, 117, (545,121,0): 83, 88, 117, (545,122,0): 83, 88, 118, (545,123,0): 83, 88, 118, (545,124,0): 83, 88, 118, (545,125,0): 83, 88, 118, (545,126,0): 83, 88, 120, (545,127,0): 83, 88, 120, (545,128,0): 80, 85, 117, (545,129,0): 81, 86, 118, (545,130,0): 82, 87, 119, (545,131,0): 83, 88, 120, (545,132,0): 84, 89, 121, (545,133,0): 85, 90, 122, (545,134,0): 86, 91, 123, (545,135,0): 87, 92, 124, (545,136,0): 86, 91, 123, (545,137,0): 86, 91, 123, (545,138,0): 85, 90, 122, (545,139,0): 85, 90, 122, (545,140,0): 84, 89, 121, (545,141,0): 84, 89, 121, (545,142,0): 84, 89, 121, (545,143,0): 83, 88, 120, (545,144,0): 79, 85, 119, (545,145,0): 79, 85, 119, (545,146,0): 77, 86, 119, (545,147,0): 77, 86, 119, (545,148,0): 77, 85, 121, (545,149,0): 77, 85, 121, (545,150,0): 76, 86, 121, (545,151,0): 76, 86, 121, (545,152,0): 73, 86, 121, (545,153,0): 73, 86, 121, (545,154,0): 74, 86, 124, (545,155,0): 74, 86, 124, (545,156,0): 74, 88, 125, (545,157,0): 74, 88, 125, (545,158,0): 75, 89, 128, (545,159,0): 76, 88, 126, (545,160,0): 79, 87, 124, (545,161,0): 81, 86, 124, (545,162,0): 81, 86, 124, (545,163,0): 82, 87, 125, (545,164,0): 82, 87, 125, (545,165,0): 83, 88, 126, (545,166,0): 83, 88, 126, (545,167,0): 83, 88, 126, (545,168,0): 86, 91, 129, (545,169,0): 86, 91, 129, (545,170,0): 86, 91, 129, (545,171,0): 86, 91, 129, (545,172,0): 86, 91, 129, (545,173,0): 86, 91, 129, (545,174,0): 86, 91, 129, (545,175,0): 87, 91, 128, (545,176,0): 91, 94, 129, (545,177,0): 93, 93, 127, (545,178,0): 93, 93, 129, (545,179,0): 94, 94, 130, (545,180,0): 94, 94, 130, (545,181,0): 95, 95, 131, (545,182,0): 95, 95, 133, (545,183,0): 95, 95, 133, (545,184,0): 95, 94, 134, (545,185,0): 96, 95, 135, (545,186,0): 96, 95, 135, (545,187,0): 96, 95, 135, (545,188,0): 97, 96, 138, (545,189,0): 97, 96, 138, (545,190,0): 98, 97, 139, (545,191,0): 98, 97, 139, (545,192,0): 99, 98, 140, (545,193,0): 99, 98, 138, (545,194,0): 101, 98, 141, (545,195,0): 100, 99, 139, (545,196,0): 101, 100, 142, (545,197,0): 99, 101, 140, (545,198,0): 101, 100, 142, (545,199,0): 100, 102, 141, (545,200,0): 100, 102, 143, (545,201,0): 98, 102, 140, (545,202,0): 97, 100, 141, (545,203,0): 95, 100, 138, (545,204,0): 94, 97, 138, (545,205,0): 92, 97, 135, (545,206,0): 90, 95, 135, (545,207,0): 91, 95, 130, (545,208,0): 94, 94, 122, (545,209,0): 95, 93, 115, (545,210,0): 95, 91, 114, (545,211,0): 92, 90, 112, (545,212,0): 91, 87, 110, (545,213,0): 89, 87, 108, (545,214,0): 88, 85, 104, (545,215,0): 87, 86, 102, (545,216,0): 87, 84, 101, (545,217,0): 85, 84, 98, (545,218,0): 83, 81, 95, (545,219,0): 79, 79, 91, (545,220,0): 75, 73, 86, (545,221,0): 69, 69, 81, (545,222,0): 66, 64, 75, (545,223,0): 64, 62, 73, (545,224,0): 63, 57, 69, (545,225,0): 63, 55, 66, (545,226,0): 61, 53, 64, (545,227,0): 59, 52, 60, (545,228,0): 57, 50, 57, (545,229,0): 55, 49, 53, (545,230,0): 54, 48, 50, (545,231,0): 54, 48, 50, (545,232,0): 50, 44, 46, (545,233,0): 50, 44, 48, (545,234,0): 48, 43, 49, (545,235,0): 48, 42, 52, (545,236,0): 47, 41, 53, (545,237,0): 47, 41, 55, (545,238,0): 46, 39, 55, (545,239,0): 44, 40, 55, (545,240,0): 39, 42, 51, (545,241,0): 38, 43, 49, (545,242,0): 38, 43, 49, (545,243,0): 39, 42, 49, (545,244,0): 39, 42, 49, (545,245,0): 41, 41, 49, (545,246,0): 42, 41, 49, (545,247,0): 42, 41, 49, (545,248,0): 44, 41, 50, (545,249,0): 46, 40, 50, (545,250,0): 48, 40, 51, (545,251,0): 51, 41, 50, (545,252,0): 52, 42, 53, (545,253,0): 54, 42, 52, (545,254,0): 55, 43, 55, (545,255,0): 54, 44, 53, (545,256,0): 50, 47, 54, (545,257,0): 51, 52, 57, (545,258,0): 54, 55, 60, (545,259,0): 56, 55, 63, (545,260,0): 57, 56, 64, (545,261,0): 59, 58, 66, (545,262,0): 63, 62, 70, (545,263,0): 68, 65, 74, (545,264,0): 70, 67, 76, (545,265,0): 77, 71, 83, (545,266,0): 84, 78, 90, (545,267,0): 89, 83, 97, (545,268,0): 92, 86, 100, (545,269,0): 97, 89, 104, (545,270,0): 101, 93, 108, (545,271,0): 107, 96, 112, (545,272,0): 115, 98, 116, (545,273,0): 118, 99, 118, (545,274,0): 122, 103, 122, (545,275,0): 126, 109, 127, (545,276,0): 130, 113, 131, (545,277,0): 131, 117, 134, (545,278,0): 133, 119, 134, (545,279,0): 136, 120, 133, (545,280,0): 131, 113, 125, (545,281,0): 131, 111, 120, (545,282,0): 129, 106, 112, (545,283,0): 125, 100, 103, (545,284,0): 121, 95, 94, (545,285,0): 118, 90, 87, (545,286,0): 115, 86, 82, (545,287,0): 114, 85, 79, (545,288,0): 112, 84, 80, (545,289,0): 109, 84, 79, (545,290,0): 108, 83, 79, (545,291,0): 109, 84, 80, (545,292,0): 113, 87, 86, (545,293,0): 119, 95, 93, (545,294,0): 127, 101, 102, (545,295,0): 130, 106, 106, (545,296,0): 141, 116, 119, (545,297,0): 146, 124, 126, (545,298,0): 156, 131, 135, (545,299,0): 160, 138, 141, (545,300,0): 163, 140, 146, (545,301,0): 165, 142, 148, (545,302,0): 168, 145, 153, (545,303,0): 167, 149, 161, (545,304,0): 157, 152, 174, (545,305,0): 148, 148, 172, (545,306,0): 148, 144, 167, (545,307,0): 149, 144, 166, (545,308,0): 151, 142, 163, (545,309,0): 143, 130, 150, (545,310,0): 127, 110, 128, (545,311,0): 115, 94, 109, (545,312,0): 100, 76, 90, (545,313,0): 94, 68, 79, (545,314,0): 84, 57, 64, (545,315,0): 76, 50, 53, (545,316,0): 74, 45, 49, (545,317,0): 73, 44, 46, (545,318,0): 71, 43, 42, (545,319,0): 70, 42, 41, (545,320,0): 68, 42, 45, (545,321,0): 67, 40, 45, (545,322,0): 67, 40, 45, (545,323,0): 66, 39, 44, (545,324,0): 65, 38, 43, (545,325,0): 65, 38, 43, (545,326,0): 64, 37, 42, (545,327,0): 64, 37, 42, (545,328,0): 62, 35, 40, (545,329,0): 65, 38, 43, (545,330,0): 67, 40, 45, (545,331,0): 69, 42, 47, (545,332,0): 68, 41, 46, (545,333,0): 65, 38, 43, (545,334,0): 61, 34, 39, (545,335,0): 57, 32, 36, (545,336,0): 45, 26, 28, (545,337,0): 40, 24, 25, (545,338,0): 36, 20, 21, (545,339,0): 34, 18, 19, (545,340,0): 32, 17, 20, (545,341,0): 31, 16, 19, (545,342,0): 27, 12, 17, (545,343,0): 24, 9, 14, (545,344,0): 23, 11, 15, (545,345,0): 23, 11, 15, (545,346,0): 22, 11, 17, (545,347,0): 21, 10, 16, (545,348,0): 21, 10, 18, (545,349,0): 20, 9, 17, (545,350,0): 19, 9, 17, (545,351,0): 19, 9, 17, (545,352,0): 18, 7, 15, (545,353,0): 18, 7, 15, (545,354,0): 18, 7, 15, (545,355,0): 18, 7, 15, (545,356,0): 18, 7, 15, (545,357,0): 18, 7, 15, (545,358,0): 18, 7, 15, (545,359,0): 18, 7, 15, (545,360,0): 17, 6, 14, (545,361,0): 17, 6, 14, (545,362,0): 18, 7, 15, (545,363,0): 18, 7, 15, (545,364,0): 18, 7, 15, (545,365,0): 18, 7, 15, (545,366,0): 19, 8, 16, (545,367,0): 19, 8, 16, (545,368,0): 17, 6, 14, (545,369,0): 17, 6, 14, (545,370,0): 17, 6, 14, (545,371,0): 17, 6, 14, (545,372,0): 17, 6, 14, (545,373,0): 17, 6, 14, (545,374,0): 17, 6, 14, (545,375,0): 17, 6, 14, (545,376,0): 20, 9, 17, (545,377,0): 20, 9, 17, (545,378,0): 20, 9, 17, (545,379,0): 20, 9, 17, (545,380,0): 20, 9, 17, (545,381,0): 20, 9, 17, (545,382,0): 20, 9, 17, (545,383,0): 20, 9, 17, (545,384,0): 18, 7, 15, (545,385,0): 18, 7, 15, (545,386,0): 18, 7, 15, (545,387,0): 18, 7, 15, (545,388,0): 18, 7, 13, (545,389,0): 18, 7, 13, (545,390,0): 18, 7, 11, (545,391,0): 18, 7, 11, (545,392,0): 18, 7, 11, (545,393,0): 18, 7, 11, (545,394,0): 19, 9, 10, (545,395,0): 19, 9, 10, (545,396,0): 20, 10, 9, (545,397,0): 20, 10, 9, (545,398,0): 21, 11, 10, (545,399,0): 22, 10, 10, (545,400,0): 29, 15, 15, (545,401,0): 30, 14, 15, (545,402,0): 30, 14, 15, (545,403,0): 29, 13, 14, (545,404,0): 29, 13, 14, (545,405,0): 29, 13, 14, (545,406,0): 28, 12, 13, (545,407,0): 28, 12, 13, (545,408,0): 28, 12, 13, (545,409,0): 28, 12, 13, (545,410,0): 28, 12, 13, (545,411,0): 28, 12, 13, (545,412,0): 28, 12, 13, (545,413,0): 28, 12, 13, (545,414,0): 28, 12, 13, (545,415,0): 28, 12, 13, (545,416,0): 31, 17, 17, (545,417,0): 31, 17, 17, (545,418,0): 31, 17, 17, (545,419,0): 31, 17, 17, (545,420,0): 31, 17, 17, (545,421,0): 31, 17, 17, (545,422,0): 31, 17, 17, (545,423,0): 31, 17, 17, (545,424,0): 31, 17, 17, (545,425,0): 30, 16, 16, (545,426,0): 30, 16, 16, (545,427,0): 29, 15, 15, (545,428,0): 28, 14, 14, (545,429,0): 28, 14, 14, (545,430,0): 27, 13, 13, (545,431,0): 27, 13, 13, (545,432,0): 22, 10, 14, (545,433,0): 22, 10, 14, (545,434,0): 21, 10, 14, (545,435,0): 21, 10, 14, (545,436,0): 20, 11, 14, (545,437,0): 20, 11, 14, (545,438,0): 20, 11, 14, (545,439,0): 20, 11, 14, (545,440,0): 21, 9, 13, (545,441,0): 24, 9, 14, (545,442,0): 27, 8, 14, (545,443,0): 29, 6, 14, (545,444,0): 32, 5, 14, (545,445,0): 34, 4, 14, (545,446,0): 35, 3, 14, (545,447,0): 36, 5, 13, (545,448,0): 36, 9, 14, (545,449,0): 35, 10, 13, (545,450,0): 35, 10, 13, (545,451,0): 35, 10, 13, (545,452,0): 35, 10, 13, (545,453,0): 35, 10, 13, (545,454,0): 35, 10, 13, (545,455,0): 35, 10, 13, (545,456,0): 33, 8, 11, (545,457,0): 34, 9, 12, (545,458,0): 34, 9, 12, (545,459,0): 35, 10, 13, (545,460,0): 35, 10, 13, (545,461,0): 36, 11, 14, (545,462,0): 36, 11, 14, (545,463,0): 36, 11, 14, (545,464,0): 33, 11, 13, (545,465,0): 33, 11, 13, (545,466,0): 33, 11, 13, (545,467,0): 33, 11, 13, (545,468,0): 33, 11, 13, (545,469,0): 33, 11, 13, (545,470,0): 33, 11, 13, (545,471,0): 33, 11, 13, (545,472,0): 35, 13, 15, (545,473,0): 35, 13, 15, (545,474,0): 34, 12, 14, (545,475,0): 35, 13, 15, (545,476,0): 36, 14, 16, (545,477,0): 38, 16, 18, (545,478,0): 39, 17, 19, (545,479,0): 41, 19, 21, (545,480,0): 44, 22, 24, (545,481,0): 43, 21, 23, (545,482,0): 41, 19, 21, (545,483,0): 39, 17, 19, (545,484,0): 39, 17, 20, (545,485,0): 39, 17, 20, (545,486,0): 39, 19, 21, (545,487,0): 40, 20, 22, (545,488,0): 40, 21, 25, (545,489,0): 40, 21, 25, (545,490,0): 37, 20, 26, (545,491,0): 37, 20, 26, (545,492,0): 36, 19, 25, (545,493,0): 36, 19, 25, (545,494,0): 35, 18, 26, (545,495,0): 35, 18, 26, (545,496,0): 33, 18, 23, (545,497,0): 31, 19, 23, (545,498,0): 30, 18, 22, (545,499,0): 28, 16, 20, (545,500,0): 27, 15, 19, (545,501,0): 26, 14, 18, (545,502,0): 25, 13, 17, (545,503,0): 25, 13, 17, (545,504,0): 23, 11, 15, (545,505,0): 24, 12, 16, (545,506,0): 24, 12, 16, (545,507,0): 24, 12, 16, (545,508,0): 24, 12, 16, (545,509,0): 24, 12, 16, (545,510,0): 24, 12, 16, (545,511,0): 25, 10, 15, (545,512,0): 28, 9, 15, (545,513,0): 29, 8, 15, (545,514,0): 30, 9, 16, (545,515,0): 31, 10, 17, (545,516,0): 31, 10, 17, (545,517,0): 32, 11, 18, (545,518,0): 33, 12, 19, (545,519,0): 33, 12, 19, (545,520,0): 30, 9, 16, (545,521,0): 31, 10, 17, (545,522,0): 32, 11, 18, (545,523,0): 33, 12, 19, (545,524,0): 33, 12, 19, (545,525,0): 32, 11, 18, (545,526,0): 31, 10, 17, (545,527,0): 30, 9, 18, (545,528,0): 29, 7, 19, (545,529,0): 28, 6, 19, (545,530,0): 26, 4, 17, (545,531,0): 25, 3, 16, (545,532,0): 23, 3, 15, (545,533,0): 24, 4, 16, (545,534,0): 25, 5, 17, (545,535,0): 26, 6, 18, (545,536,0): 23, 5, 17, (545,537,0): 22, 4, 16, (545,538,0): 19, 3, 14, (545,539,0): 18, 2, 13, (545,540,0): 18, 2, 13, (545,541,0): 18, 2, 13, (545,542,0): 17, 4, 14, (545,543,0): 17, 4, 14, (545,544,0): 15, 3, 13, (545,545,0): 15, 3, 13, (545,546,0): 15, 3, 13, (545,547,0): 15, 3, 13, (545,548,0): 15, 3, 13, (545,549,0): 15, 3, 13, (545,550,0): 15, 3, 13, (545,551,0): 15, 3, 13, (545,552,0): 15, 3, 13, (545,553,0): 15, 3, 13, (545,554,0): 16, 4, 14, (545,555,0): 17, 5, 15, (545,556,0): 18, 6, 16, (545,557,0): 19, 7, 17, (545,558,0): 20, 8, 18, (545,559,0): 19, 9, 18, (545,560,0): 20, 10, 18, (545,561,0): 19, 12, 19, (545,562,0): 20, 13, 20, (545,563,0): 21, 14, 21, (545,564,0): 20, 13, 20, (545,565,0): 19, 12, 19, (545,566,0): 18, 11, 18, (545,567,0): 17, 10, 17, (545,568,0): 21, 14, 21, (545,569,0): 21, 14, 21, (545,570,0): 21, 14, 21, (545,571,0): 21, 14, 21, (545,572,0): 21, 14, 21, (545,573,0): 21, 14, 21, (545,574,0): 21, 14, 21, (545,575,0): 21, 15, 19, (545,576,0): 25, 14, 20, (545,577,0): 25, 14, 18, (545,578,0): 25, 14, 18, (545,579,0): 26, 15, 19, (545,580,0): 26, 15, 19, (545,581,0): 27, 16, 20, (545,582,0): 27, 16, 20, (545,583,0): 27, 16, 20, (545,584,0): 27, 16, 20, (545,585,0): 27, 16, 20, (545,586,0): 26, 15, 19, (545,587,0): 26, 15, 19, (545,588,0): 25, 14, 18, (545,589,0): 25, 14, 18, (545,590,0): 24, 13, 17, (545,591,0): 23, 14, 19, (545,592,0): 23, 13, 22, (545,593,0): 21, 13, 24, (545,594,0): 21, 13, 24, (545,595,0): 20, 12, 23, (545,596,0): 20, 12, 23, (545,597,0): 19, 11, 22, (545,598,0): 19, 11, 22, (545,599,0): 19, 11, 22, (546,0,0): 39, 58, 72, (546,1,0): 39, 58, 72, (546,2,0): 39, 58, 72, (546,3,0): 39, 58, 72, (546,4,0): 39, 58, 72, (546,5,0): 39, 58, 72, (546,6,0): 39, 58, 72, (546,7,0): 39, 58, 72, (546,8,0): 39, 58, 72, (546,9,0): 39, 58, 72, (546,10,0): 39, 58, 72, (546,11,0): 40, 59, 73, (546,12,0): 41, 60, 74, (546,13,0): 41, 60, 74, (546,14,0): 41, 60, 74, (546,15,0): 42, 61, 75, (546,16,0): 42, 60, 74, (546,17,0): 42, 60, 74, (546,18,0): 43, 61, 75, (546,19,0): 43, 61, 75, (546,20,0): 44, 62, 76, (546,21,0): 44, 62, 76, (546,22,0): 45, 63, 77, (546,23,0): 45, 63, 77, (546,24,0): 45, 63, 77, (546,25,0): 45, 63, 77, (546,26,0): 46, 64, 78, (546,27,0): 46, 64, 78, (546,28,0): 47, 65, 79, (546,29,0): 47, 65, 79, (546,30,0): 48, 66, 80, (546,31,0): 48, 66, 78, (546,32,0): 50, 66, 79, (546,33,0): 51, 68, 78, (546,34,0): 53, 67, 78, (546,35,0): 54, 68, 79, (546,36,0): 55, 67, 79, (546,37,0): 56, 68, 80, (546,38,0): 58, 68, 78, (546,39,0): 58, 68, 78, (546,40,0): 61, 68, 78, (546,41,0): 61, 68, 78, (546,42,0): 63, 67, 76, (546,43,0): 64, 68, 77, (546,44,0): 65, 68, 77, (546,45,0): 66, 69, 78, (546,46,0): 68, 68, 78, (546,47,0): 68, 68, 78, (546,48,0): 67, 70, 79, (546,49,0): 68, 71, 80, (546,50,0): 68, 71, 80, (546,51,0): 69, 72, 81, (546,52,0): 69, 72, 81, (546,53,0): 70, 73, 82, (546,54,0): 70, 73, 82, (546,55,0): 70, 73, 82, (546,56,0): 71, 74, 83, (546,57,0): 70, 73, 82, (546,58,0): 69, 72, 81, (546,59,0): 68, 71, 80, (546,60,0): 68, 71, 80, (546,61,0): 69, 72, 81, (546,62,0): 70, 73, 82, (546,63,0): 71, 74, 83, (546,64,0): 73, 71, 85, (546,65,0): 73, 71, 85, (546,66,0): 74, 72, 86, (546,67,0): 75, 73, 87, (546,68,0): 76, 74, 88, (546,69,0): 77, 75, 89, (546,70,0): 78, 76, 90, (546,71,0): 78, 76, 90, (546,72,0): 77, 75, 89, (546,73,0): 78, 76, 90, (546,74,0): 78, 76, 90, (546,75,0): 79, 77, 91, (546,76,0): 81, 79, 93, (546,77,0): 82, 80, 94, (546,78,0): 82, 80, 94, (546,79,0): 83, 81, 94, (546,80,0): 84, 78, 92, (546,81,0): 84, 78, 90, (546,82,0): 85, 79, 91, (546,83,0): 85, 79, 91, (546,84,0): 84, 81, 92, (546,85,0): 84, 81, 92, (546,86,0): 84, 82, 95, (546,87,0): 84, 82, 95, (546,88,0): 84, 82, 96, (546,89,0): 84, 82, 96, (546,90,0): 83, 82, 98, (546,91,0): 84, 83, 99, (546,92,0): 83, 85, 100, (546,93,0): 83, 85, 100, (546,94,0): 83, 85, 100, (546,95,0): 84, 86, 101, (546,96,0): 83, 86, 103, (546,97,0): 83, 86, 103, (546,98,0): 83, 86, 105, (546,99,0): 82, 85, 104, (546,100,0): 82, 85, 104, (546,101,0): 81, 84, 103, (546,102,0): 81, 83, 104, (546,103,0): 81, 83, 104, (546,104,0): 82, 84, 107, (546,105,0): 82, 84, 107, (546,106,0): 81, 83, 106, (546,107,0): 81, 83, 106, (546,108,0): 80, 82, 107, (546,109,0): 80, 82, 107, (546,110,0): 79, 81, 106, (546,111,0): 77, 81, 106, (546,112,0): 77, 81, 106, (546,113,0): 77, 83, 107, (546,114,0): 77, 83, 107, (546,115,0): 79, 85, 109, (546,116,0): 80, 86, 112, (546,117,0): 81, 87, 113, (546,118,0): 81, 87, 113, (546,119,0): 82, 88, 114, (546,120,0): 83, 88, 117, (546,121,0): 83, 88, 117, (546,122,0): 83, 88, 118, (546,123,0): 83, 88, 118, (546,124,0): 83, 88, 118, (546,125,0): 83, 88, 118, (546,126,0): 83, 88, 120, (546,127,0): 83, 88, 120, (546,128,0): 81, 86, 116, (546,129,0): 81, 86, 116, (546,130,0): 82, 87, 117, (546,131,0): 83, 88, 118, (546,132,0): 84, 89, 119, (546,133,0): 85, 90, 120, (546,134,0): 86, 91, 121, (546,135,0): 86, 91, 121, (546,136,0): 86, 91, 121, (546,137,0): 85, 90, 120, (546,138,0): 85, 90, 120, (546,139,0): 85, 90, 120, (546,140,0): 84, 89, 119, (546,141,0): 83, 88, 118, (546,142,0): 83, 88, 118, (546,143,0): 83, 88, 120, (546,144,0): 79, 85, 119, (546,145,0): 79, 85, 119, (546,146,0): 77, 86, 119, (546,147,0): 77, 86, 119, (546,148,0): 77, 86, 119, (546,149,0): 77, 86, 119, (546,150,0): 76, 86, 121, (546,151,0): 76, 86, 121, (546,152,0): 73, 86, 121, (546,153,0): 73, 86, 121, (546,154,0): 74, 86, 124, (546,155,0): 74, 86, 124, (546,156,0): 74, 88, 125, (546,157,0): 74, 88, 125, (546,158,0): 75, 89, 126, (546,159,0): 76, 88, 126, (546,160,0): 80, 88, 125, (546,161,0): 82, 87, 125, (546,162,0): 82, 87, 125, (546,163,0): 83, 88, 126, (546,164,0): 83, 88, 126, (546,165,0): 84, 89, 127, (546,166,0): 84, 89, 127, (546,167,0): 84, 89, 127, (546,168,0): 86, 91, 129, (546,169,0): 86, 91, 129, (546,170,0): 86, 91, 129, (546,171,0): 86, 91, 129, (546,172,0): 86, 91, 129, (546,173,0): 86, 91, 129, (546,174,0): 86, 91, 129, (546,175,0): 87, 91, 128, (546,176,0): 91, 94, 129, (546,177,0): 93, 93, 129, (546,178,0): 93, 93, 129, (546,179,0): 94, 94, 130, (546,180,0): 94, 94, 130, (546,181,0): 95, 95, 131, (546,182,0): 95, 95, 133, (546,183,0): 95, 95, 133, (546,184,0): 95, 94, 134, (546,185,0): 95, 94, 134, (546,186,0): 95, 94, 136, (546,187,0): 96, 95, 137, (546,188,0): 97, 96, 138, (546,189,0): 97, 96, 138, (546,190,0): 97, 96, 138, (546,191,0): 98, 97, 139, (546,192,0): 99, 98, 140, (546,193,0): 97, 99, 140, (546,194,0): 100, 99, 143, (546,195,0): 98, 100, 141, (546,196,0): 99, 100, 144, (546,197,0): 98, 101, 142, (546,198,0): 100, 101, 145, (546,199,0): 99, 102, 143, (546,200,0): 100, 103, 146, (546,201,0): 99, 104, 144, (546,202,0): 99, 104, 146, (546,203,0): 96, 104, 143, (546,204,0): 97, 102, 144, (546,205,0): 95, 103, 142, (546,206,0): 94, 101, 143, (546,207,0): 96, 101, 139, (546,208,0): 101, 102, 133, (546,209,0): 102, 102, 130, (546,210,0): 103, 100, 129, (546,211,0): 100, 100, 128, (546,212,0): 102, 99, 128, (546,213,0): 99, 99, 125, (546,214,0): 101, 98, 125, (546,215,0): 99, 99, 123, (546,216,0): 98, 96, 120, (546,217,0): 95, 96, 117, (546,218,0): 95, 93, 115, (546,219,0): 91, 92, 112, (546,220,0): 89, 87, 108, (546,221,0): 83, 84, 102, (546,222,0): 82, 81, 99, (546,223,0): 79, 78, 96, (546,224,0): 75, 71, 88, (546,225,0): 75, 68, 84, (546,226,0): 72, 66, 80, (546,227,0): 69, 63, 75, (546,228,0): 65, 59, 69, (546,229,0): 62, 57, 64, (546,230,0): 60, 55, 61, (546,231,0): 59, 54, 58, (546,232,0): 53, 48, 52, (546,233,0): 53, 48, 54, (546,234,0): 52, 47, 54, (546,235,0): 51, 45, 55, (546,236,0): 49, 43, 55, (546,237,0): 48, 42, 56, (546,238,0): 47, 41, 55, (546,239,0): 45, 41, 55, (546,240,0): 42, 42, 52, (546,241,0): 40, 43, 50, (546,242,0): 40, 43, 50, (546,243,0): 42, 42, 50, (546,244,0): 42, 43, 48, (546,245,0): 42, 43, 48, (546,246,0): 43, 42, 48, (546,247,0): 43, 42, 48, (546,248,0): 47, 44, 51, (546,249,0): 49, 44, 51, (546,250,0): 49, 44, 51, (546,251,0): 51, 44, 51, (546,252,0): 52, 45, 53, (546,253,0): 54, 44, 52, (546,254,0): 55, 45, 54, (546,255,0): 52, 47, 54, (546,256,0): 49, 49, 59, (546,257,0): 52, 54, 66, (546,258,0): 58, 60, 72, (546,259,0): 64, 63, 77, (546,260,0): 67, 66, 80, (546,261,0): 71, 70, 84, (546,262,0): 77, 76, 92, (546,263,0): 82, 79, 96, (546,264,0): 90, 87, 106, (546,265,0): 95, 90, 112, (546,266,0): 102, 97, 119, (546,267,0): 107, 102, 125, (546,268,0): 111, 106, 129, (546,269,0): 117, 109, 133, (546,270,0): 122, 114, 138, (546,271,0): 125, 117, 141, (546,272,0): 135, 123, 147, (546,273,0): 137, 125, 149, (546,274,0): 140, 128, 152, (546,275,0): 141, 131, 155, (546,276,0): 144, 134, 158, (546,277,0): 146, 136, 160, (546,278,0): 147, 138, 159, (546,279,0): 149, 137, 157, (546,280,0): 139, 128, 145, (546,281,0): 136, 123, 140, (546,282,0): 133, 117, 130, (546,283,0): 127, 110, 120, (546,284,0): 124, 103, 110, (546,285,0): 121, 99, 102, (546,286,0): 118, 96, 98, (546,287,0): 117, 95, 97, (546,288,0): 116, 94, 97, (546,289,0): 115, 95, 97, (546,290,0): 116, 96, 98, (546,291,0): 118, 98, 100, (546,292,0): 123, 102, 107, (546,293,0): 129, 110, 114, (546,294,0): 137, 116, 123, (546,295,0): 140, 121, 127, (546,296,0): 151, 131, 140, (546,297,0): 154, 137, 145, (546,298,0): 162, 142, 153, (546,299,0): 164, 147, 157, (546,300,0): 164, 146, 158, (546,301,0): 162, 144, 156, (546,302,0): 160, 142, 156, (546,303,0): 156, 142, 159, (546,304,0): 148, 140, 163, (546,305,0): 141, 137, 162, (546,306,0): 141, 133, 157, (546,307,0): 142, 132, 156, (546,308,0): 140, 128, 150, (546,309,0): 129, 114, 133, (546,310,0): 111, 92, 111, (546,311,0): 98, 75, 91, (546,312,0): 90, 66, 80, (546,313,0): 85, 59, 70, (546,314,0): 76, 49, 56, (546,315,0): 70, 44, 47, (546,316,0): 67, 41, 44, (546,317,0): 66, 40, 41, (546,318,0): 65, 39, 38, (546,319,0): 64, 38, 39, (546,320,0): 64, 38, 41, (546,321,0): 64, 37, 42, (546,322,0): 64, 37, 42, (546,323,0): 63, 36, 41, (546,324,0): 63, 36, 41, (546,325,0): 62, 35, 40, (546,326,0): 62, 35, 40, (546,327,0): 62, 35, 40, (546,328,0): 63, 36, 41, (546,329,0): 64, 37, 42, (546,330,0): 67, 40, 45, (546,331,0): 68, 41, 46, (546,332,0): 67, 40, 45, (546,333,0): 63, 36, 41, (546,334,0): 59, 32, 37, (546,335,0): 56, 31, 35, (546,336,0): 44, 25, 27, (546,337,0): 39, 23, 24, (546,338,0): 35, 19, 20, (546,339,0): 33, 17, 18, (546,340,0): 33, 17, 20, (546,341,0): 32, 16, 19, (546,342,0): 27, 12, 17, (546,343,0): 24, 9, 14, (546,344,0): 23, 11, 15, (546,345,0): 23, 11, 15, (546,346,0): 22, 11, 17, (546,347,0): 21, 10, 16, (546,348,0): 21, 10, 18, (546,349,0): 20, 9, 17, (546,350,0): 20, 9, 17, (546,351,0): 20, 9, 17, (546,352,0): 18, 7, 15, (546,353,0): 18, 7, 15, (546,354,0): 18, 7, 15, (546,355,0): 18, 7, 15, (546,356,0): 18, 7, 15, (546,357,0): 18, 7, 15, (546,358,0): 18, 7, 15, (546,359,0): 18, 7, 15, (546,360,0): 19, 8, 16, (546,361,0): 19, 8, 16, (546,362,0): 18, 7, 15, (546,363,0): 18, 7, 15, (546,364,0): 18, 7, 15, (546,365,0): 18, 7, 15, (546,366,0): 17, 6, 14, (546,367,0): 17, 6, 14, (546,368,0): 17, 6, 14, (546,369,0): 17, 6, 14, (546,370,0): 17, 6, 14, (546,371,0): 17, 6, 14, (546,372,0): 17, 6, 14, (546,373,0): 17, 6, 14, (546,374,0): 17, 6, 14, (546,375,0): 17, 6, 14, (546,376,0): 20, 9, 17, (546,377,0): 20, 9, 17, (546,378,0): 20, 9, 17, (546,379,0): 20, 9, 17, (546,380,0): 20, 9, 17, (546,381,0): 20, 9, 17, (546,382,0): 20, 9, 17, (546,383,0): 20, 9, 17, (546,384,0): 18, 7, 15, (546,385,0): 18, 7, 15, (546,386,0): 18, 7, 15, (546,387,0): 18, 7, 15, (546,388,0): 18, 7, 13, (546,389,0): 18, 7, 13, (546,390,0): 18, 7, 11, (546,391,0): 18, 7, 11, (546,392,0): 18, 7, 11, (546,393,0): 18, 7, 11, (546,394,0): 19, 9, 10, (546,395,0): 19, 9, 10, (546,396,0): 20, 10, 9, (546,397,0): 20, 10, 9, (546,398,0): 21, 11, 10, (546,399,0): 22, 10, 10, (546,400,0): 27, 13, 13, (546,401,0): 28, 12, 13, (546,402,0): 28, 12, 13, (546,403,0): 29, 13, 14, (546,404,0): 29, 13, 14, (546,405,0): 29, 13, 14, (546,406,0): 29, 13, 14, (546,407,0): 30, 14, 15, (546,408,0): 28, 12, 13, (546,409,0): 28, 12, 13, (546,410,0): 28, 12, 13, (546,411,0): 28, 12, 13, (546,412,0): 28, 12, 13, (546,413,0): 28, 12, 13, (546,414,0): 28, 12, 13, (546,415,0): 28, 12, 13, (546,416,0): 31, 17, 17, (546,417,0): 31, 17, 17, (546,418,0): 31, 17, 17, (546,419,0): 31, 17, 17, (546,420,0): 31, 17, 17, (546,421,0): 31, 17, 17, (546,422,0): 31, 17, 17, (546,423,0): 31, 17, 17, (546,424,0): 33, 19, 19, (546,425,0): 32, 18, 18, (546,426,0): 31, 17, 17, (546,427,0): 30, 16, 16, (546,428,0): 29, 15, 15, (546,429,0): 27, 13, 13, (546,430,0): 26, 12, 12, (546,431,0): 26, 12, 12, (546,432,0): 22, 10, 14, (546,433,0): 22, 10, 14, (546,434,0): 21, 10, 14, (546,435,0): 21, 10, 14, (546,436,0): 20, 11, 14, (546,437,0): 20, 11, 14, (546,438,0): 20, 11, 14, (546,439,0): 20, 11, 14, (546,440,0): 20, 8, 12, (546,441,0): 22, 7, 12, (546,442,0): 26, 7, 13, (546,443,0): 29, 6, 14, (546,444,0): 31, 5, 14, (546,445,0): 35, 5, 15, (546,446,0): 37, 5, 16, (546,447,0): 37, 6, 14, (546,448,0): 34, 9, 13, (546,449,0): 32, 10, 12, (546,450,0): 32, 10, 12, (546,451,0): 32, 10, 12, (546,452,0): 32, 10, 12, (546,453,0): 32, 10, 12, (546,454,0): 32, 10, 12, (546,455,0): 32, 10, 12, (546,456,0): 31, 9, 11, (546,457,0): 31, 9, 11, (546,458,0): 31, 9, 11, (546,459,0): 32, 10, 12, (546,460,0): 32, 10, 12, (546,461,0): 33, 11, 13, (546,462,0): 33, 11, 13, (546,463,0): 33, 11, 13, (546,464,0): 33, 11, 13, (546,465,0): 33, 11, 13, (546,466,0): 33, 11, 13, (546,467,0): 33, 11, 13, (546,468,0): 33, 11, 13, (546,469,0): 33, 11, 13, (546,470,0): 33, 11, 13, (546,471,0): 33, 11, 13, (546,472,0): 35, 13, 15, (546,473,0): 35, 13, 15, (546,474,0): 34, 12, 14, (546,475,0): 35, 13, 15, (546,476,0): 36, 14, 16, (546,477,0): 38, 16, 18, (546,478,0): 39, 17, 19, (546,479,0): 41, 19, 21, (546,480,0): 47, 23, 23, (546,481,0): 46, 22, 22, (546,482,0): 43, 21, 23, (546,483,0): 41, 19, 21, (546,484,0): 41, 19, 21, (546,485,0): 41, 19, 21, (546,486,0): 41, 21, 23, (546,487,0): 41, 21, 23, (546,488,0): 41, 22, 26, (546,489,0): 41, 22, 26, (546,490,0): 40, 21, 25, (546,491,0): 40, 21, 25, (546,492,0): 37, 20, 26, (546,493,0): 37, 20, 26, (546,494,0): 36, 19, 25, (546,495,0): 36, 19, 25, (546,496,0): 34, 19, 24, (546,497,0): 33, 18, 23, (546,498,0): 33, 18, 23, (546,499,0): 32, 17, 22, (546,500,0): 31, 16, 21, (546,501,0): 30, 15, 20, (546,502,0): 29, 14, 19, (546,503,0): 29, 14, 19, (546,504,0): 26, 11, 16, (546,505,0): 26, 11, 16, (546,506,0): 26, 11, 16, (546,507,0): 26, 11, 16, (546,508,0): 26, 11, 16, (546,509,0): 26, 11, 16, (546,510,0): 26, 11, 16, (546,511,0): 27, 10, 16, (546,512,0): 29, 10, 16, (546,513,0): 30, 9, 16, (546,514,0): 30, 9, 16, (546,515,0): 31, 10, 17, (546,516,0): 31, 10, 17, (546,517,0): 32, 11, 18, (546,518,0): 32, 11, 18, (546,519,0): 32, 11, 18, (546,520,0): 31, 10, 17, (546,521,0): 32, 11, 18, (546,522,0): 33, 12, 19, (546,523,0): 34, 13, 20, (546,524,0): 34, 13, 20, (546,525,0): 33, 12, 19, (546,526,0): 32, 11, 18, (546,527,0): 31, 10, 19, (546,528,0): 28, 6, 18, (546,529,0): 27, 5, 18, (546,530,0): 26, 4, 17, (546,531,0): 25, 3, 16, (546,532,0): 23, 3, 15, (546,533,0): 24, 4, 16, (546,534,0): 24, 4, 16, (546,535,0): 25, 5, 17, (546,536,0): 22, 4, 16, (546,537,0): 21, 3, 15, (546,538,0): 19, 3, 14, (546,539,0): 18, 2, 13, (546,540,0): 17, 1, 12, (546,541,0): 17, 1, 12, (546,542,0): 16, 3, 13, (546,543,0): 17, 4, 14, (546,544,0): 14, 2, 12, (546,545,0): 14, 2, 12, (546,546,0): 14, 2, 12, (546,547,0): 14, 2, 12, (546,548,0): 14, 2, 12, (546,549,0): 14, 2, 12, (546,550,0): 14, 2, 12, (546,551,0): 14, 2, 12, (546,552,0): 15, 3, 13, (546,553,0): 15, 3, 13, (546,554,0): 16, 4, 14, (546,555,0): 17, 5, 15, (546,556,0): 18, 6, 16, (546,557,0): 19, 7, 17, (546,558,0): 20, 8, 18, (546,559,0): 19, 9, 18, (546,560,0): 19, 9, 17, (546,561,0): 18, 11, 18, (546,562,0): 19, 12, 19, (546,563,0): 20, 13, 20, (546,564,0): 20, 13, 20, (546,565,0): 19, 12, 19, (546,566,0): 18, 11, 18, (546,567,0): 18, 11, 18, (546,568,0): 20, 13, 20, (546,569,0): 20, 13, 20, (546,570,0): 20, 13, 20, (546,571,0): 20, 13, 20, (546,572,0): 20, 13, 20, (546,573,0): 20, 13, 20, (546,574,0): 20, 13, 20, (546,575,0): 20, 14, 18, (546,576,0): 24, 13, 19, (546,577,0): 24, 13, 17, (546,578,0): 24, 13, 17, (546,579,0): 25, 14, 18, (546,580,0): 25, 14, 18, (546,581,0): 26, 15, 19, (546,582,0): 26, 15, 19, (546,583,0): 26, 15, 19, (546,584,0): 27, 16, 20, (546,585,0): 27, 16, 20, (546,586,0): 26, 15, 19, (546,587,0): 26, 15, 19, (546,588,0): 25, 14, 18, (546,589,0): 25, 14, 18, (546,590,0): 24, 13, 17, (546,591,0): 23, 14, 19, (546,592,0): 22, 12, 20, (546,593,0): 20, 13, 21, (546,594,0): 20, 13, 21, (546,595,0): 19, 12, 20, (546,596,0): 19, 12, 20, (546,597,0): 18, 11, 19, (546,598,0): 18, 11, 19, (546,599,0): 18, 11, 19, (547,0,0): 38, 57, 71, (547,1,0): 38, 57, 71, (547,2,0): 38, 57, 71, (547,3,0): 38, 57, 71, (547,4,0): 38, 57, 71, (547,5,0): 38, 57, 71, (547,6,0): 38, 57, 71, (547,7,0): 38, 57, 71, (547,8,0): 38, 57, 71, (547,9,0): 39, 58, 72, (547,10,0): 39, 58, 72, (547,11,0): 40, 59, 73, (547,12,0): 40, 59, 73, (547,13,0): 41, 60, 74, (547,14,0): 41, 60, 74, (547,15,0): 41, 60, 74, (547,16,0): 42, 60, 74, (547,17,0): 42, 60, 74, (547,18,0): 43, 61, 75, (547,19,0): 43, 61, 75, (547,20,0): 44, 62, 76, (547,21,0): 44, 62, 76, (547,22,0): 45, 63, 77, (547,23,0): 45, 63, 77, (547,24,0): 45, 63, 77, (547,25,0): 45, 63, 77, (547,26,0): 46, 64, 78, (547,27,0): 46, 64, 78, (547,28,0): 47, 65, 79, (547,29,0): 47, 65, 79, (547,30,0): 48, 66, 80, (547,31,0): 48, 66, 78, (547,32,0): 51, 67, 80, (547,33,0): 51, 68, 78, (547,34,0): 53, 67, 78, (547,35,0): 54, 68, 79, (547,36,0): 55, 67, 79, (547,37,0): 56, 68, 80, (547,38,0): 58, 68, 78, (547,39,0): 58, 68, 78, (547,40,0): 61, 68, 78, (547,41,0): 61, 68, 78, (547,42,0): 63, 67, 76, (547,43,0): 64, 68, 77, (547,44,0): 65, 68, 77, (547,45,0): 66, 69, 78, (547,46,0): 68, 68, 78, (547,47,0): 68, 68, 78, (547,48,0): 67, 70, 79, (547,49,0): 67, 70, 79, (547,50,0): 67, 70, 79, (547,51,0): 68, 71, 80, (547,52,0): 69, 72, 81, (547,53,0): 69, 72, 81, (547,54,0): 69, 72, 81, (547,55,0): 70, 73, 82, (547,56,0): 71, 74, 83, (547,57,0): 70, 73, 82, (547,58,0): 69, 72, 81, (547,59,0): 68, 71, 80, (547,60,0): 68, 71, 80, (547,61,0): 69, 72, 81, (547,62,0): 70, 73, 82, (547,63,0): 71, 74, 83, (547,64,0): 73, 71, 85, (547,65,0): 73, 71, 85, (547,66,0): 74, 72, 86, (547,67,0): 75, 73, 87, (547,68,0): 76, 74, 88, (547,69,0): 77, 75, 89, (547,70,0): 78, 76, 90, (547,71,0): 78, 76, 90, (547,72,0): 77, 75, 89, (547,73,0): 78, 76, 90, (547,74,0): 78, 76, 90, (547,75,0): 79, 77, 91, (547,76,0): 81, 79, 93, (547,77,0): 82, 80, 94, (547,78,0): 82, 80, 94, (547,79,0): 83, 81, 94, (547,80,0): 83, 77, 91, (547,81,0): 84, 78, 90, (547,82,0): 84, 78, 90, (547,83,0): 84, 78, 90, (547,84,0): 83, 80, 91, (547,85,0): 83, 80, 91, (547,86,0): 83, 81, 94, (547,87,0): 83, 81, 94, (547,88,0): 83, 81, 95, (547,89,0): 84, 82, 96, (547,90,0): 83, 82, 98, (547,91,0): 84, 83, 99, (547,92,0): 82, 84, 99, (547,93,0): 83, 85, 100, (547,94,0): 83, 85, 100, (547,95,0): 83, 85, 100, (547,96,0): 83, 86, 103, (547,97,0): 83, 86, 103, (547,98,0): 83, 86, 105, (547,99,0): 82, 85, 104, (547,100,0): 82, 85, 104, (547,101,0): 81, 84, 103, (547,102,0): 81, 83, 104, (547,103,0): 81, 83, 104, (547,104,0): 82, 84, 107, (547,105,0): 82, 84, 107, (547,106,0): 81, 83, 106, (547,107,0): 81, 83, 106, (547,108,0): 80, 82, 107, (547,109,0): 80, 82, 107, (547,110,0): 79, 81, 106, (547,111,0): 77, 81, 106, (547,112,0): 76, 80, 105, (547,113,0): 76, 82, 106, (547,114,0): 76, 82, 106, (547,115,0): 78, 84, 108, (547,116,0): 79, 85, 111, (547,117,0): 80, 86, 112, (547,118,0): 80, 86, 112, (547,119,0): 81, 87, 113, (547,120,0): 82, 87, 116, (547,121,0): 82, 87, 116, (547,122,0): 82, 87, 117, (547,123,0): 82, 87, 117, (547,124,0): 82, 87, 117, (547,125,0): 82, 87, 117, (547,126,0): 82, 87, 119, (547,127,0): 82, 87, 119, (547,128,0): 82, 87, 117, (547,129,0): 82, 87, 117, (547,130,0): 82, 87, 117, (547,131,0): 83, 88, 118, (547,132,0): 84, 89, 119, (547,133,0): 85, 90, 120, (547,134,0): 85, 90, 120, (547,135,0): 85, 90, 120, (547,136,0): 85, 90, 120, (547,137,0): 85, 90, 120, (547,138,0): 85, 90, 120, (547,139,0): 84, 89, 119, (547,140,0): 84, 89, 119, (547,141,0): 83, 88, 118, (547,142,0): 83, 88, 118, (547,143,0): 82, 87, 117, (547,144,0): 80, 86, 118, (547,145,0): 80, 86, 120, (547,146,0): 78, 87, 120, (547,147,0): 78, 87, 120, (547,148,0): 78, 87, 120, (547,149,0): 78, 87, 120, (547,150,0): 77, 87, 122, (547,151,0): 77, 87, 122, (547,152,0): 75, 85, 121, (547,153,0): 73, 86, 121, (547,154,0): 74, 86, 124, (547,155,0): 74, 86, 124, (547,156,0): 74, 88, 125, (547,157,0): 74, 88, 125, (547,158,0): 75, 89, 126, (547,159,0): 76, 88, 126, (547,160,0): 80, 88, 125, (547,161,0): 83, 88, 126, (547,162,0): 83, 88, 126, (547,163,0): 84, 89, 127, (547,164,0): 84, 89, 127, (547,165,0): 85, 90, 128, (547,166,0): 85, 90, 128, (547,167,0): 85, 90, 128, (547,168,0): 86, 91, 129, (547,169,0): 86, 91, 129, (547,170,0): 86, 91, 129, (547,171,0): 86, 91, 129, (547,172,0): 86, 91, 129, (547,173,0): 86, 91, 129, (547,174,0): 86, 91, 129, (547,175,0): 87, 91, 128, (547,176,0): 91, 93, 131, (547,177,0): 93, 93, 129, (547,178,0): 93, 93, 129, (547,179,0): 94, 94, 130, (547,180,0): 94, 94, 130, (547,181,0): 95, 95, 131, (547,182,0): 95, 95, 133, (547,183,0): 95, 95, 133, (547,184,0): 94, 93, 133, (547,185,0): 95, 94, 134, (547,186,0): 95, 94, 136, (547,187,0): 96, 95, 137, (547,188,0): 96, 95, 137, (547,189,0): 97, 96, 138, (547,190,0): 97, 96, 138, (547,191,0): 95, 96, 140, (547,192,0): 97, 98, 142, (547,193,0): 96, 99, 142, (547,194,0): 97, 100, 145, (547,195,0): 97, 100, 143, (547,196,0): 98, 101, 146, (547,197,0): 97, 102, 144, (547,198,0): 98, 102, 147, (547,199,0): 98, 103, 145, (547,200,0): 98, 102, 147, (547,201,0): 96, 103, 145, (547,202,0): 96, 103, 147, (547,203,0): 95, 104, 145, (547,204,0): 95, 104, 147, (547,205,0): 95, 104, 145, (547,206,0): 95, 104, 147, (547,207,0): 96, 104, 143, (547,208,0): 101, 103, 141, (547,209,0): 103, 103, 139, (547,210,0): 104, 104, 140, (547,211,0): 104, 104, 140, (547,212,0): 104, 104, 138, (547,213,0): 105, 105, 139, (547,214,0): 105, 106, 137, (547,215,0): 105, 106, 137, (547,216,0): 103, 104, 134, (547,217,0): 103, 104, 134, (547,218,0): 102, 103, 131, (547,219,0): 101, 102, 130, (547,220,0): 99, 100, 128, (547,221,0): 96, 98, 123, (547,222,0): 93, 95, 120, (547,223,0): 92, 92, 118, (547,224,0): 85, 83, 107, (547,225,0): 86, 83, 104, (547,226,0): 85, 82, 103, (547,227,0): 82, 79, 96, (547,228,0): 77, 75, 89, (547,229,0): 71, 69, 80, (547,230,0): 66, 65, 73, (547,231,0): 63, 60, 69, (547,232,0): 57, 54, 61, (547,233,0): 58, 53, 60, (547,234,0): 57, 52, 59, (547,235,0): 55, 49, 59, (547,236,0): 53, 47, 57, (547,237,0): 51, 45, 57, (547,238,0): 49, 43, 57, (547,239,0): 46, 43, 54, (547,240,0): 44, 43, 51, (547,241,0): 43, 44, 49, (547,242,0): 43, 43, 51, (547,243,0): 43, 44, 49, (547,244,0): 44, 43, 49, (547,245,0): 44, 43, 49, (547,246,0): 44, 43, 49, (547,247,0): 44, 43, 49, (547,248,0): 47, 44, 51, (547,249,0): 48, 45, 52, (547,250,0): 48, 46, 51, (547,251,0): 49, 47, 52, (547,252,0): 52, 47, 53, (547,253,0): 53, 48, 54, (547,254,0): 54, 49, 55, (547,255,0): 51, 50, 58, (547,256,0): 53, 56, 71, (547,257,0): 57, 62, 81, (547,258,0): 67, 70, 89, (547,259,0): 75, 77, 98, (547,260,0): 82, 84, 105, (547,261,0): 88, 90, 113, (547,262,0): 97, 97, 121, (547,263,0): 102, 102, 128, (547,264,0): 111, 108, 137, (547,265,0): 114, 111, 142, (547,266,0): 118, 114, 147, (547,267,0): 123, 119, 152, (547,268,0): 128, 122, 158, (547,269,0): 131, 125, 161, (547,270,0): 133, 127, 163, (547,271,0): 135, 129, 165, (547,272,0): 140, 133, 166, (547,273,0): 142, 135, 168, (547,274,0): 143, 138, 170, (547,275,0): 145, 140, 172, (547,276,0): 145, 142, 173, (547,277,0): 146, 143, 172, (547,278,0): 146, 141, 171, (547,279,0): 146, 142, 169, (547,280,0): 142, 136, 162, (547,281,0): 140, 132, 156, (547,282,0): 135, 126, 147, (547,283,0): 130, 119, 136, (547,284,0): 127, 113, 128, (547,285,0): 127, 111, 122, (547,286,0): 127, 109, 121, (547,287,0): 127, 110, 120, (547,288,0): 127, 111, 122, (547,289,0): 127, 111, 122, (547,290,0): 127, 114, 124, (547,291,0): 129, 116, 126, (547,292,0): 133, 119, 132, (547,293,0): 138, 124, 137, (547,294,0): 143, 129, 144, (547,295,0): 146, 132, 147, (547,296,0): 153, 139, 156, (547,297,0): 156, 143, 160, (547,298,0): 161, 146, 165, (547,299,0): 163, 150, 168, (547,300,0): 162, 147, 166, (547,301,0): 156, 143, 163, (547,302,0): 152, 137, 158, (547,303,0): 147, 133, 156, (547,304,0): 140, 130, 155, (547,305,0): 135, 125, 150, (547,306,0): 132, 119, 145, (547,307,0): 129, 115, 140, (547,308,0): 126, 108, 130, (547,309,0): 114, 95, 115, (547,310,0): 98, 75, 95, (547,311,0): 85, 61, 77, (547,312,0): 84, 57, 72, (547,313,0): 79, 51, 63, (547,314,0): 71, 44, 51, (547,315,0): 66, 40, 43, (547,316,0): 64, 38, 41, (547,317,0): 64, 38, 39, (547,318,0): 63, 37, 36, (547,319,0): 62, 36, 37, (547,320,0): 61, 35, 38, (547,321,0): 61, 34, 39, (547,322,0): 61, 34, 39, (547,323,0): 60, 33, 38, (547,324,0): 60, 33, 38, (547,325,0): 60, 33, 38, (547,326,0): 60, 33, 38, (547,327,0): 60, 33, 38, (547,328,0): 62, 35, 40, (547,329,0): 64, 37, 42, (547,330,0): 65, 38, 43, (547,331,0): 65, 38, 43, (547,332,0): 64, 37, 42, (547,333,0): 61, 34, 39, (547,334,0): 57, 30, 35, (547,335,0): 54, 29, 33, (547,336,0): 43, 24, 26, (547,337,0): 37, 21, 22, (547,338,0): 34, 18, 19, (547,339,0): 33, 17, 18, (547,340,0): 33, 17, 20, (547,341,0): 31, 15, 18, (547,342,0): 27, 12, 17, (547,343,0): 24, 9, 14, (547,344,0): 23, 11, 15, (547,345,0): 23, 11, 15, (547,346,0): 23, 10, 17, (547,347,0): 21, 10, 16, (547,348,0): 21, 10, 18, (547,349,0): 20, 9, 17, (547,350,0): 20, 9, 17, (547,351,0): 20, 9, 17, (547,352,0): 18, 7, 15, (547,353,0): 18, 7, 15, (547,354,0): 18, 7, 15, (547,355,0): 18, 7, 15, (547,356,0): 18, 7, 15, (547,357,0): 18, 7, 15, (547,358,0): 18, 7, 15, (547,359,0): 18, 7, 15, (547,360,0): 20, 9, 17, (547,361,0): 20, 9, 17, (547,362,0): 19, 8, 16, (547,363,0): 18, 7, 15, (547,364,0): 18, 7, 15, (547,365,0): 17, 6, 14, (547,366,0): 16, 5, 13, (547,367,0): 16, 5, 13, (547,368,0): 17, 6, 14, (547,369,0): 17, 6, 14, (547,370,0): 17, 6, 14, (547,371,0): 17, 6, 14, (547,372,0): 17, 6, 14, (547,373,0): 17, 6, 14, (547,374,0): 17, 6, 14, (547,375,0): 17, 6, 14, (547,376,0): 20, 9, 17, (547,377,0): 20, 9, 17, (547,378,0): 20, 9, 17, (547,379,0): 20, 9, 17, (547,380,0): 20, 9, 17, (547,381,0): 20, 9, 17, (547,382,0): 20, 9, 17, (547,383,0): 20, 9, 17, (547,384,0): 18, 7, 15, (547,385,0): 18, 7, 15, (547,386,0): 18, 7, 15, (547,387,0): 18, 7, 15, (547,388,0): 18, 7, 13, (547,389,0): 18, 7, 13, (547,390,0): 18, 7, 11, (547,391,0): 18, 7, 11, (547,392,0): 18, 7, 11, (547,393,0): 18, 7, 11, (547,394,0): 19, 9, 10, (547,395,0): 19, 9, 10, (547,396,0): 20, 10, 9, (547,397,0): 20, 10, 9, (547,398,0): 21, 11, 10, (547,399,0): 22, 10, 10, (547,400,0): 25, 11, 11, (547,401,0): 27, 11, 12, (547,402,0): 27, 11, 12, (547,403,0): 28, 12, 13, (547,404,0): 29, 13, 14, (547,405,0): 29, 13, 14, (547,406,0): 30, 14, 15, (547,407,0): 30, 14, 15, (547,408,0): 28, 12, 13, (547,409,0): 28, 12, 13, (547,410,0): 28, 12, 13, (547,411,0): 28, 12, 13, (547,412,0): 28, 12, 13, (547,413,0): 28, 12, 13, (547,414,0): 28, 12, 13, (547,415,0): 28, 12, 13, (547,416,0): 30, 16, 16, (547,417,0): 30, 16, 16, (547,418,0): 30, 16, 16, (547,419,0): 30, 16, 16, (547,420,0): 30, 16, 16, (547,421,0): 30, 16, 16, (547,422,0): 30, 16, 16, (547,423,0): 30, 16, 16, (547,424,0): 35, 21, 21, (547,425,0): 34, 20, 20, (547,426,0): 32, 18, 18, (547,427,0): 31, 17, 17, (547,428,0): 29, 15, 15, (547,429,0): 27, 13, 13, (547,430,0): 26, 12, 12, (547,431,0): 25, 11, 11, (547,432,0): 23, 11, 13, (547,433,0): 23, 11, 15, (547,434,0): 23, 11, 15, (547,435,0): 21, 10, 14, (547,436,0): 21, 10, 14, (547,437,0): 19, 10, 13, (547,438,0): 20, 9, 13, (547,439,0): 20, 9, 13, (547,440,0): 19, 7, 11, (547,441,0): 21, 6, 11, (547,442,0): 25, 6, 12, (547,443,0): 28, 5, 13, (547,444,0): 32, 6, 15, (547,445,0): 36, 6, 16, (547,446,0): 38, 6, 17, (547,447,0): 37, 7, 15, (547,448,0): 33, 8, 12, (547,449,0): 31, 9, 11, (547,450,0): 31, 9, 11, (547,451,0): 31, 9, 11, (547,452,0): 31, 9, 11, (547,453,0): 31, 9, 11, (547,454,0): 31, 9, 11, (547,455,0): 31, 9, 11, (547,456,0): 30, 8, 10, (547,457,0): 30, 8, 10, (547,458,0): 30, 8, 10, (547,459,0): 31, 9, 11, (547,460,0): 31, 9, 11, (547,461,0): 32, 10, 12, (547,462,0): 32, 10, 12, (547,463,0): 32, 10, 12, (547,464,0): 32, 10, 12, (547,465,0): 32, 10, 12, (547,466,0): 32, 10, 12, (547,467,0): 32, 10, 12, (547,468,0): 32, 10, 12, (547,469,0): 32, 10, 12, (547,470,0): 32, 10, 12, (547,471,0): 32, 10, 12, (547,472,0): 35, 13, 15, (547,473,0): 35, 13, 15, (547,474,0): 34, 12, 14, (547,475,0): 35, 13, 15, (547,476,0): 36, 14, 16, (547,477,0): 38, 16, 18, (547,478,0): 39, 17, 19, (547,479,0): 41, 19, 21, (547,480,0): 47, 23, 23, (547,481,0): 47, 23, 23, (547,482,0): 44, 22, 24, (547,483,0): 43, 21, 23, (547,484,0): 43, 21, 23, (547,485,0): 43, 21, 23, (547,486,0): 42, 22, 24, (547,487,0): 42, 22, 24, (547,488,0): 43, 22, 27, (547,489,0): 41, 22, 26, (547,490,0): 41, 22, 26, (547,491,0): 41, 22, 26, (547,492,0): 38, 21, 27, (547,493,0): 38, 21, 27, (547,494,0): 37, 20, 26, (547,495,0): 37, 20, 26, (547,496,0): 35, 18, 24, (547,497,0): 35, 18, 24, (547,498,0): 35, 18, 24, (547,499,0): 34, 17, 23, (547,500,0): 33, 16, 22, (547,501,0): 32, 15, 21, (547,502,0): 32, 15, 21, (547,503,0): 32, 15, 21, (547,504,0): 29, 12, 18, (547,505,0): 28, 11, 17, (547,506,0): 27, 10, 16, (547,507,0): 27, 10, 16, (547,508,0): 27, 10, 16, (547,509,0): 27, 10, 16, (547,510,0): 28, 11, 17, (547,511,0): 29, 12, 18, (547,512,0): 30, 11, 17, (547,513,0): 31, 10, 17, (547,514,0): 31, 10, 17, (547,515,0): 31, 10, 17, (547,516,0): 31, 10, 17, (547,517,0): 31, 10, 17, (547,518,0): 31, 10, 17, (547,519,0): 31, 10, 17, (547,520,0): 31, 10, 17, (547,521,0): 32, 11, 18, (547,522,0): 33, 12, 19, (547,523,0): 34, 13, 20, (547,524,0): 34, 13, 20, (547,525,0): 33, 12, 19, (547,526,0): 32, 11, 18, (547,527,0): 31, 10, 19, (547,528,0): 27, 5, 17, (547,529,0): 27, 5, 18, (547,530,0): 26, 4, 17, (547,531,0): 25, 3, 16, (547,532,0): 24, 4, 16, (547,533,0): 23, 3, 15, (547,534,0): 23, 3, 15, (547,535,0): 21, 3, 15, (547,536,0): 22, 4, 16, (547,537,0): 21, 3, 15, (547,538,0): 19, 3, 14, (547,539,0): 17, 1, 12, (547,540,0): 17, 1, 12, (547,541,0): 17, 1, 12, (547,542,0): 16, 3, 13, (547,543,0): 16, 3, 13, (547,544,0): 14, 2, 12, (547,545,0): 14, 2, 12, (547,546,0): 14, 2, 12, (547,547,0): 14, 2, 12, (547,548,0): 14, 2, 12, (547,549,0): 14, 2, 12, (547,550,0): 14, 2, 12, (547,551,0): 14, 2, 12, (547,552,0): 14, 2, 12, (547,553,0): 14, 2, 12, (547,554,0): 15, 3, 13, (547,555,0): 16, 4, 14, (547,556,0): 17, 5, 15, (547,557,0): 18, 6, 16, (547,558,0): 19, 7, 17, (547,559,0): 19, 9, 18, (547,560,0): 18, 8, 16, (547,561,0): 17, 10, 17, (547,562,0): 18, 11, 18, (547,563,0): 19, 12, 19, (547,564,0): 20, 13, 20, (547,565,0): 19, 12, 19, (547,566,0): 19, 12, 19, (547,567,0): 18, 11, 18, (547,568,0): 20, 13, 20, (547,569,0): 20, 13, 20, (547,570,0): 20, 13, 20, (547,571,0): 20, 13, 20, (547,572,0): 20, 13, 20, (547,573,0): 20, 13, 20, (547,574,0): 20, 13, 20, (547,575,0): 20, 14, 18, (547,576,0): 23, 12, 18, (547,577,0): 23, 12, 16, (547,578,0): 23, 12, 16, (547,579,0): 24, 13, 17, (547,580,0): 24, 13, 17, (547,581,0): 25, 14, 18, (547,582,0): 25, 14, 18, (547,583,0): 26, 15, 19, (547,584,0): 27, 16, 20, (547,585,0): 27, 16, 20, (547,586,0): 26, 15, 19, (547,587,0): 26, 15, 19, (547,588,0): 25, 14, 18, (547,589,0): 25, 14, 18, (547,590,0): 24, 13, 17, (547,591,0): 23, 14, 19, (547,592,0): 22, 12, 20, (547,593,0): 19, 12, 20, (547,594,0): 19, 12, 20, (547,595,0): 18, 11, 19, (547,596,0): 18, 11, 19, (547,597,0): 17, 10, 18, (547,598,0): 17, 10, 18, (547,599,0): 17, 10, 18, (548,0,0): 38, 57, 71, (548,1,0): 38, 57, 71, (548,2,0): 38, 57, 71, (548,3,0): 38, 57, 71, (548,4,0): 38, 57, 71, (548,5,0): 38, 57, 71, (548,6,0): 38, 57, 71, (548,7,0): 38, 57, 71, (548,8,0): 38, 57, 71, (548,9,0): 38, 57, 71, (548,10,0): 38, 57, 71, (548,11,0): 39, 58, 72, (548,12,0): 39, 58, 72, (548,13,0): 40, 59, 73, (548,14,0): 40, 59, 73, (548,15,0): 41, 60, 74, (548,16,0): 42, 60, 74, (548,17,0): 42, 60, 74, (548,18,0): 43, 61, 75, (548,19,0): 43, 61, 75, (548,20,0): 44, 62, 76, (548,21,0): 44, 62, 76, (548,22,0): 45, 63, 77, (548,23,0): 45, 63, 77, (548,24,0): 45, 63, 77, (548,25,0): 45, 63, 77, (548,26,0): 46, 64, 78, (548,27,0): 46, 64, 78, (548,28,0): 47, 65, 79, (548,29,0): 47, 65, 79, (548,30,0): 48, 66, 80, (548,31,0): 48, 66, 78, (548,32,0): 50, 66, 79, (548,33,0): 50, 67, 77, (548,34,0): 53, 67, 78, (548,35,0): 53, 67, 78, (548,36,0): 55, 67, 79, (548,37,0): 55, 67, 79, (548,38,0): 58, 68, 78, (548,39,0): 58, 68, 78, (548,40,0): 61, 68, 78, (548,41,0): 61, 68, 78, (548,42,0): 63, 67, 76, (548,43,0): 64, 68, 77, (548,44,0): 65, 68, 77, (548,45,0): 66, 69, 78, (548,46,0): 68, 68, 78, (548,47,0): 68, 68, 78, (548,48,0): 66, 69, 78, (548,49,0): 67, 70, 79, (548,50,0): 67, 70, 79, (548,51,0): 67, 70, 79, (548,52,0): 68, 71, 80, (548,53,0): 69, 72, 81, (548,54,0): 69, 72, 81, (548,55,0): 69, 72, 81, (548,56,0): 71, 74, 83, (548,57,0): 70, 73, 82, (548,58,0): 69, 72, 81, (548,59,0): 68, 71, 80, (548,60,0): 68, 71, 80, (548,61,0): 69, 72, 81, (548,62,0): 70, 73, 82, (548,63,0): 71, 74, 83, (548,64,0): 73, 71, 85, (548,65,0): 73, 71, 85, (548,66,0): 74, 72, 86, (548,67,0): 75, 73, 87, (548,68,0): 76, 74, 88, (548,69,0): 77, 75, 89, (548,70,0): 78, 76, 90, (548,71,0): 78, 76, 90, (548,72,0): 77, 75, 89, (548,73,0): 78, 76, 90, (548,74,0): 78, 76, 90, (548,75,0): 79, 77, 91, (548,76,0): 81, 79, 93, (548,77,0): 82, 80, 94, (548,78,0): 82, 80, 94, (548,79,0): 83, 81, 94, (548,80,0): 83, 77, 91, (548,81,0): 84, 78, 90, (548,82,0): 84, 78, 90, (548,83,0): 84, 78, 90, (548,84,0): 83, 80, 91, (548,85,0): 83, 80, 91, (548,86,0): 83, 81, 94, (548,87,0): 83, 81, 94, (548,88,0): 83, 81, 95, (548,89,0): 83, 81, 95, (548,90,0): 82, 81, 97, (548,91,0): 83, 82, 98, (548,92,0): 81, 83, 98, (548,93,0): 82, 84, 99, (548,94,0): 82, 84, 99, (548,95,0): 83, 85, 100, (548,96,0): 83, 86, 103, (548,97,0): 83, 86, 103, (548,98,0): 83, 86, 105, (548,99,0): 82, 85, 104, (548,100,0): 82, 85, 104, (548,101,0): 81, 84, 103, (548,102,0): 81, 83, 104, (548,103,0): 81, 83, 104, (548,104,0): 82, 84, 107, (548,105,0): 82, 84, 107, (548,106,0): 81, 83, 106, (548,107,0): 81, 83, 106, (548,108,0): 80, 82, 107, (548,109,0): 80, 82, 107, (548,110,0): 79, 81, 106, (548,111,0): 77, 81, 106, (548,112,0): 75, 79, 104, (548,113,0): 75, 81, 105, (548,114,0): 75, 81, 105, (548,115,0): 76, 82, 106, (548,116,0): 77, 83, 109, (548,117,0): 79, 85, 111, (548,118,0): 79, 85, 111, (548,119,0): 80, 86, 112, (548,120,0): 82, 87, 116, (548,121,0): 82, 87, 116, (548,122,0): 82, 87, 117, (548,123,0): 82, 87, 117, (548,124,0): 82, 87, 117, (548,125,0): 82, 87, 117, (548,126,0): 82, 87, 119, (548,127,0): 82, 87, 119, (548,128,0): 83, 88, 118, (548,129,0): 83, 88, 118, (548,130,0): 83, 88, 118, (548,131,0): 83, 88, 118, (548,132,0): 84, 89, 119, (548,133,0): 84, 89, 119, (548,134,0): 84, 89, 119, (548,135,0): 84, 89, 119, (548,136,0): 85, 90, 120, (548,137,0): 84, 89, 119, (548,138,0): 84, 89, 119, (548,139,0): 83, 88, 118, (548,140,0): 83, 88, 118, (548,141,0): 82, 87, 117, (548,142,0): 82, 87, 117, (548,143,0): 82, 87, 117, (548,144,0): 79, 85, 117, (548,145,0): 79, 85, 117, (548,146,0): 79, 85, 117, (548,147,0): 79, 85, 117, (548,148,0): 77, 86, 119, (548,149,0): 77, 86, 119, (548,150,0): 77, 85, 121, (548,151,0): 76, 86, 121, (548,152,0): 75, 85, 120, (548,153,0): 75, 85, 120, (548,154,0): 74, 87, 122, (548,155,0): 74, 87, 122, (548,156,0): 75, 87, 125, (548,157,0): 75, 87, 125, (548,158,0): 75, 89, 126, (548,159,0): 76, 88, 126, (548,160,0): 80, 88, 125, (548,161,0): 83, 88, 126, (548,162,0): 83, 88, 126, (548,163,0): 84, 89, 127, (548,164,0): 84, 89, 127, (548,165,0): 85, 90, 128, (548,166,0): 85, 90, 128, (548,167,0): 85, 90, 128, (548,168,0): 86, 91, 129, (548,169,0): 86, 91, 129, (548,170,0): 86, 91, 129, (548,171,0): 86, 91, 129, (548,172,0): 86, 91, 129, (548,173,0): 86, 91, 129, (548,174,0): 86, 91, 129, (548,175,0): 87, 91, 128, (548,176,0): 91, 93, 131, (548,177,0): 91, 94, 129, (548,178,0): 91, 94, 129, (548,179,0): 92, 95, 130, (548,180,0): 92, 94, 132, (548,181,0): 93, 95, 133, (548,182,0): 93, 95, 134, (548,183,0): 93, 95, 134, (548,184,0): 92, 94, 133, (548,185,0): 92, 94, 133, (548,186,0): 92, 94, 135, (548,187,0): 93, 95, 136, (548,188,0): 93, 94, 138, (548,189,0): 94, 95, 139, (548,190,0): 94, 95, 139, (548,191,0): 95, 96, 140, (548,192,0): 94, 98, 143, (548,193,0): 94, 98, 143, (548,194,0): 94, 98, 145, (548,195,0): 95, 99, 144, (548,196,0): 96, 100, 147, (548,197,0): 94, 101, 145, (548,198,0): 94, 101, 147, (548,199,0): 94, 103, 146, (548,200,0): 92, 100, 146, (548,201,0): 90, 102, 144, (548,202,0): 90, 101, 146, (548,203,0): 91, 103, 145, (548,204,0): 91, 102, 147, (548,205,0): 92, 104, 146, (548,206,0): 92, 103, 148, (548,207,0): 94, 103, 146, (548,208,0): 96, 101, 143, (548,209,0): 97, 100, 143, (548,210,0): 98, 101, 142, (548,211,0): 99, 102, 143, (548,212,0): 100, 103, 144, (548,213,0): 101, 104, 145, (548,214,0): 102, 106, 144, (548,215,0): 103, 107, 145, (548,216,0): 103, 107, 144, (548,217,0): 104, 108, 145, (548,218,0): 104, 108, 145, (548,219,0): 104, 108, 143, (548,220,0): 103, 107, 142, (548,221,0): 101, 105, 140, (548,222,0): 99, 103, 138, (548,223,0): 99, 102, 135, (548,224,0): 91, 92, 123, (548,225,0): 93, 94, 122, (548,226,0): 94, 95, 123, (548,227,0): 94, 96, 119, (548,228,0): 90, 91, 112, (548,229,0): 81, 82, 100, (548,230,0): 74, 73, 89, (548,231,0): 68, 67, 81, (548,232,0): 64, 62, 75, (548,233,0): 64, 61, 72, (548,234,0): 61, 58, 69, (548,235,0): 58, 55, 64, (548,236,0): 57, 51, 61, (548,237,0): 54, 48, 58, (548,238,0): 52, 46, 58, (548,239,0): 50, 44, 56, (548,240,0): 48, 45, 52, (548,241,0): 47, 46, 51, (548,242,0): 47, 46, 52, (548,243,0): 47, 46, 51, (548,244,0): 48, 46, 51, (548,245,0): 47, 46, 51, (548,246,0): 47, 46, 51, (548,247,0): 47, 46, 51, (548,248,0): 47, 46, 51, (548,249,0): 48, 47, 52, (548,250,0): 49, 48, 53, (548,251,0): 51, 50, 55, (548,252,0): 54, 53, 58, (548,253,0): 56, 55, 60, (548,254,0): 57, 58, 62, (548,255,0): 56, 59, 68, (548,256,0): 63, 70, 89, (548,257,0): 69, 76, 104, (548,258,0): 80, 85, 114, (548,259,0): 90, 95, 125, (548,260,0): 98, 103, 133, (548,261,0): 106, 111, 143, (548,262,0): 114, 117, 152, (548,263,0): 119, 121, 159, (548,264,0): 123, 122, 162, (548,265,0): 124, 123, 165, (548,266,0): 127, 126, 170, (548,267,0): 130, 129, 173, (548,268,0): 133, 130, 177, (548,269,0): 135, 131, 181, (548,270,0): 135, 131, 181, (548,271,0): 134, 131, 178, (548,272,0): 136, 135, 177, (548,273,0): 135, 137, 176, (548,274,0): 137, 139, 178, (548,275,0): 138, 140, 179, (548,276,0): 137, 141, 179, (548,277,0): 136, 140, 178, (548,278,0): 136, 140, 178, (548,279,0): 136, 138, 176, (548,280,0): 138, 138, 174, (548,281,0): 136, 135, 167, (548,282,0): 133, 130, 161, (548,283,0): 130, 126, 153, (548,284,0): 131, 123, 147, (548,285,0): 132, 123, 144, (548,286,0): 135, 123, 145, (548,287,0): 136, 124, 144, (548,288,0): 137, 128, 149, (548,289,0): 137, 128, 149, (548,290,0): 138, 129, 150, (548,291,0): 140, 131, 152, (548,292,0): 141, 132, 153, (548,293,0): 144, 135, 156, (548,294,0): 145, 135, 159, (548,295,0): 146, 136, 160, (548,296,0): 147, 137, 162, (548,297,0): 148, 140, 164, (548,298,0): 153, 143, 170, (548,299,0): 154, 145, 172, (548,300,0): 154, 144, 171, (548,301,0): 148, 139, 168, (548,302,0): 143, 132, 162, (548,303,0): 138, 128, 155, (548,304,0): 137, 123, 149, (548,305,0): 130, 114, 140, (548,306,0): 120, 104, 130, (548,307,0): 114, 96, 120, (548,308,0): 110, 88, 111, (548,309,0): 100, 77, 97, (548,310,0): 91, 64, 83, (548,311,0): 83, 55, 70, (548,312,0): 81, 53, 67, (548,313,0): 76, 49, 58, (548,314,0): 69, 42, 49, (548,315,0): 65, 39, 42, (548,316,0): 63, 38, 41, (548,317,0): 63, 39, 39, (548,318,0): 62, 38, 36, (548,319,0): 60, 36, 36, (548,320,0): 57, 32, 35, (548,321,0): 57, 32, 36, (548,322,0): 57, 32, 36, (548,323,0): 57, 32, 36, (548,324,0): 57, 32, 36, (548,325,0): 57, 32, 36, (548,326,0): 57, 32, 36, (548,327,0): 58, 33, 37, (548,328,0): 60, 35, 39, (548,329,0): 61, 36, 40, (548,330,0): 61, 36, 40, (548,331,0): 61, 36, 40, (548,332,0): 59, 34, 38, (548,333,0): 56, 31, 35, (548,334,0): 53, 28, 32, (548,335,0): 49, 27, 30, (548,336,0): 42, 22, 24, (548,337,0): 38, 19, 21, (548,338,0): 35, 16, 18, (548,339,0): 34, 15, 17, (548,340,0): 32, 16, 19, (548,341,0): 31, 15, 18, (548,342,0): 27, 12, 17, (548,343,0): 24, 9, 14, (548,344,0): 25, 10, 15, (548,345,0): 23, 11, 15, (548,346,0): 23, 10, 17, (548,347,0): 22, 9, 16, (548,348,0): 21, 10, 18, (548,349,0): 20, 9, 17, (548,350,0): 20, 9, 17, (548,351,0): 20, 9, 17, (548,352,0): 18, 7, 15, (548,353,0): 18, 7, 15, (548,354,0): 18, 7, 15, (548,355,0): 18, 7, 15, (548,356,0): 18, 7, 15, (548,357,0): 18, 7, 15, (548,358,0): 18, 7, 15, (548,359,0): 18, 7, 15, (548,360,0): 20, 9, 17, (548,361,0): 20, 9, 17, (548,362,0): 19, 8, 16, (548,363,0): 18, 7, 15, (548,364,0): 18, 7, 15, (548,365,0): 17, 6, 14, (548,366,0): 16, 5, 13, (548,367,0): 16, 5, 13, (548,368,0): 17, 6, 14, (548,369,0): 17, 6, 14, (548,370,0): 17, 6, 14, (548,371,0): 17, 6, 14, (548,372,0): 17, 6, 14, (548,373,0): 17, 6, 14, (548,374,0): 17, 6, 14, (548,375,0): 17, 6, 14, (548,376,0): 20, 9, 17, (548,377,0): 20, 9, 17, (548,378,0): 20, 9, 17, (548,379,0): 20, 9, 17, (548,380,0): 20, 9, 17, (548,381,0): 20, 9, 17, (548,382,0): 20, 9, 17, (548,383,0): 20, 9, 17, (548,384,0): 18, 7, 15, (548,385,0): 18, 7, 15, (548,386,0): 18, 7, 15, (548,387,0): 18, 7, 15, (548,388,0): 18, 7, 13, (548,389,0): 18, 7, 13, (548,390,0): 18, 7, 11, (548,391,0): 18, 7, 11, (548,392,0): 18, 7, 11, (548,393,0): 18, 7, 11, (548,394,0): 19, 9, 10, (548,395,0): 19, 9, 10, (548,396,0): 20, 10, 9, (548,397,0): 20, 10, 9, (548,398,0): 21, 11, 10, (548,399,0): 22, 10, 10, (548,400,0): 25, 11, 11, (548,401,0): 26, 10, 11, (548,402,0): 27, 11, 12, (548,403,0): 27, 11, 12, (548,404,0): 28, 12, 13, (548,405,0): 29, 13, 14, (548,406,0): 29, 13, 14, (548,407,0): 30, 14, 15, (548,408,0): 28, 12, 13, (548,409,0): 28, 12, 13, (548,410,0): 28, 12, 13, (548,411,0): 28, 12, 13, (548,412,0): 28, 12, 13, (548,413,0): 28, 12, 13, (548,414,0): 28, 12, 13, (548,415,0): 28, 12, 13, (548,416,0): 30, 16, 16, (548,417,0): 30, 16, 16, (548,418,0): 30, 16, 16, (548,419,0): 30, 16, 16, (548,420,0): 30, 16, 16, (548,421,0): 30, 16, 16, (548,422,0): 30, 16, 16, (548,423,0): 30, 16, 16, (548,424,0): 35, 21, 21, (548,425,0): 34, 20, 20, (548,426,0): 33, 19, 19, (548,427,0): 31, 17, 17, (548,428,0): 29, 15, 15, (548,429,0): 28, 14, 14, (548,430,0): 26, 12, 12, (548,431,0): 25, 11, 11, (548,432,0): 26, 11, 14, (548,433,0): 24, 12, 14, (548,434,0): 23, 11, 13, (548,435,0): 22, 10, 12, (548,436,0): 22, 10, 12, (548,437,0): 20, 10, 11, (548,438,0): 20, 8, 10, (548,439,0): 20, 8, 10, (548,440,0): 21, 6, 9, (548,441,0): 22, 6, 9, (548,442,0): 25, 6, 10, (548,443,0): 28, 5, 11, (548,444,0): 32, 7, 13, (548,445,0): 34, 7, 14, (548,446,0): 37, 7, 15, (548,447,0): 37, 7, 15, (548,448,0): 32, 7, 11, (548,449,0): 30, 8, 10, (548,450,0): 30, 8, 10, (548,451,0): 30, 8, 10, (548,452,0): 30, 8, 10, (548,453,0): 30, 8, 10, (548,454,0): 30, 8, 10, (548,455,0): 30, 8, 10, (548,456,0): 29, 7, 9, (548,457,0): 29, 7, 9, (548,458,0): 29, 7, 9, (548,459,0): 30, 8, 10, (548,460,0): 30, 8, 10, (548,461,0): 31, 9, 11, (548,462,0): 31, 9, 11, (548,463,0): 31, 9, 11, (548,464,0): 32, 10, 12, (548,465,0): 32, 10, 12, (548,466,0): 32, 10, 12, (548,467,0): 32, 10, 12, (548,468,0): 32, 10, 12, (548,469,0): 32, 10, 12, (548,470,0): 32, 10, 12, (548,471,0): 32, 10, 12, (548,472,0): 35, 13, 15, (548,473,0): 35, 13, 15, (548,474,0): 34, 12, 14, (548,475,0): 35, 13, 15, (548,476,0): 36, 14, 16, (548,477,0): 38, 16, 18, (548,478,0): 39, 17, 19, (548,479,0): 41, 19, 21, (548,480,0): 47, 23, 23, (548,481,0): 47, 23, 23, (548,482,0): 47, 23, 23, (548,483,0): 47, 23, 23, (548,484,0): 44, 22, 24, (548,485,0): 43, 21, 23, (548,486,0): 43, 21, 23, (548,487,0): 41, 21, 22, (548,488,0): 43, 23, 25, (548,489,0): 42, 22, 24, (548,490,0): 41, 22, 26, (548,491,0): 41, 22, 26, (548,492,0): 40, 21, 25, (548,493,0): 40, 21, 25, (548,494,0): 37, 20, 26, (548,495,0): 37, 20, 26, (548,496,0): 37, 18, 22, (548,497,0): 37, 18, 22, (548,498,0): 37, 18, 22, (548,499,0): 36, 17, 21, (548,500,0): 36, 17, 21, (548,501,0): 36, 17, 21, (548,502,0): 35, 16, 20, (548,503,0): 35, 16, 20, (548,504,0): 32, 13, 17, (548,505,0): 31, 12, 16, (548,506,0): 30, 11, 15, (548,507,0): 29, 10, 14, (548,508,0): 29, 10, 14, (548,509,0): 30, 11, 15, (548,510,0): 31, 12, 16, (548,511,0): 32, 13, 17, (548,512,0): 31, 10, 17, (548,513,0): 31, 10, 17, (548,514,0): 31, 10, 17, (548,515,0): 31, 10, 17, (548,516,0): 31, 10, 17, (548,517,0): 31, 10, 17, (548,518,0): 31, 10, 17, (548,519,0): 31, 10, 17, (548,520,0): 31, 10, 17, (548,521,0): 31, 10, 17, (548,522,0): 33, 12, 19, (548,523,0): 33, 12, 19, (548,524,0): 33, 12, 19, (548,525,0): 33, 12, 19, (548,526,0): 31, 10, 17, (548,527,0): 31, 10, 19, (548,528,0): 26, 4, 16, (548,529,0): 26, 4, 17, (548,530,0): 25, 5, 17, (548,531,0): 24, 4, 16, (548,532,0): 24, 4, 16, (548,533,0): 23, 3, 15, (548,534,0): 20, 2, 14, (548,535,0): 20, 2, 14, (548,536,0): 21, 3, 15, (548,537,0): 19, 3, 14, (548,538,0): 18, 2, 13, (548,539,0): 17, 1, 12, (548,540,0): 14, 1, 11, (548,541,0): 14, 1, 11, (548,542,0): 15, 2, 12, (548,543,0): 16, 3, 13, (548,544,0): 13, 1, 11, (548,545,0): 13, 1, 11, (548,546,0): 13, 1, 11, (548,547,0): 13, 1, 11, (548,548,0): 13, 1, 11, (548,549,0): 13, 1, 11, (548,550,0): 13, 1, 11, (548,551,0): 13, 1, 11, (548,552,0): 13, 1, 11, (548,553,0): 14, 2, 12, (548,554,0): 15, 3, 13, (548,555,0): 16, 4, 14, (548,556,0): 17, 5, 15, (548,557,0): 18, 6, 16, (548,558,0): 19, 7, 17, (548,559,0): 18, 8, 17, (548,560,0): 17, 7, 15, (548,561,0): 16, 9, 16, (548,562,0): 17, 10, 17, (548,563,0): 19, 12, 19, (548,564,0): 19, 12, 19, (548,565,0): 19, 12, 19, (548,566,0): 19, 12, 19, (548,567,0): 18, 11, 18, (548,568,0): 19, 12, 19, (548,569,0): 19, 12, 19, (548,570,0): 19, 12, 19, (548,571,0): 19, 12, 19, (548,572,0): 19, 12, 19, (548,573,0): 19, 12, 19, (548,574,0): 19, 12, 19, (548,575,0): 19, 13, 17, (548,576,0): 23, 12, 18, (548,577,0): 23, 12, 16, (548,578,0): 23, 12, 16, (548,579,0): 24, 13, 17, (548,580,0): 24, 13, 17, (548,581,0): 25, 14, 18, (548,582,0): 25, 14, 18, (548,583,0): 26, 15, 19, (548,584,0): 27, 16, 20, (548,585,0): 27, 16, 20, (548,586,0): 26, 15, 19, (548,587,0): 26, 15, 19, (548,588,0): 25, 14, 18, (548,589,0): 25, 14, 18, (548,590,0): 24, 13, 17, (548,591,0): 23, 14, 19, (548,592,0): 22, 12, 20, (548,593,0): 19, 12, 20, (548,594,0): 19, 12, 20, (548,595,0): 18, 11, 19, (548,596,0): 18, 11, 19, (548,597,0): 17, 10, 18, (548,598,0): 17, 10, 18, (548,599,0): 17, 10, 18, (549,0,0): 37, 56, 70, (549,1,0): 37, 56, 70, (549,2,0): 37, 56, 70, (549,3,0): 37, 56, 70, (549,4,0): 37, 56, 70, (549,5,0): 37, 56, 70, (549,6,0): 37, 56, 70, (549,7,0): 37, 56, 70, (549,8,0): 37, 56, 70, (549,9,0): 38, 57, 71, (549,10,0): 38, 57, 71, (549,11,0): 38, 57, 71, (549,12,0): 39, 58, 72, (549,13,0): 40, 59, 73, (549,14,0): 40, 59, 73, (549,15,0): 40, 59, 73, (549,16,0): 42, 60, 74, (549,17,0): 42, 60, 74, (549,18,0): 43, 61, 75, (549,19,0): 43, 61, 75, (549,20,0): 44, 62, 76, (549,21,0): 44, 62, 76, (549,22,0): 45, 63, 77, (549,23,0): 45, 63, 77, (549,24,0): 45, 63, 77, (549,25,0): 45, 63, 77, (549,26,0): 46, 64, 78, (549,27,0): 46, 64, 78, (549,28,0): 47, 65, 79, (549,29,0): 47, 65, 79, (549,30,0): 48, 66, 80, (549,31,0): 48, 66, 78, (549,32,0): 49, 65, 78, (549,33,0): 49, 66, 76, (549,34,0): 51, 65, 76, (549,35,0): 52, 66, 77, (549,36,0): 54, 66, 78, (549,37,0): 54, 66, 78, (549,38,0): 56, 66, 76, (549,39,0): 57, 67, 77, (549,40,0): 61, 68, 78, (549,41,0): 61, 68, 78, (549,42,0): 63, 67, 76, (549,43,0): 64, 68, 77, (549,44,0): 65, 68, 77, (549,45,0): 66, 69, 78, (549,46,0): 68, 68, 78, (549,47,0): 68, 68, 78, (549,48,0): 66, 69, 78, (549,49,0): 66, 69, 78, (549,50,0): 66, 69, 78, (549,51,0): 67, 70, 79, (549,52,0): 67, 70, 79, (549,53,0): 68, 71, 80, (549,54,0): 68, 71, 80, (549,55,0): 69, 72, 81, (549,56,0): 71, 74, 83, (549,57,0): 70, 73, 82, (549,58,0): 69, 72, 81, (549,59,0): 68, 71, 80, (549,60,0): 68, 71, 80, (549,61,0): 69, 72, 81, (549,62,0): 70, 73, 82, (549,63,0): 71, 74, 83, (549,64,0): 73, 71, 85, (549,65,0): 73, 71, 85, (549,66,0): 74, 72, 86, (549,67,0): 75, 73, 87, (549,68,0): 76, 74, 88, (549,69,0): 77, 75, 89, (549,70,0): 78, 76, 90, (549,71,0): 78, 76, 90, (549,72,0): 77, 75, 89, (549,73,0): 78, 76, 90, (549,74,0): 78, 76, 90, (549,75,0): 79, 77, 91, (549,76,0): 81, 79, 93, (549,77,0): 82, 80, 94, (549,78,0): 82, 80, 94, (549,79,0): 83, 81, 94, (549,80,0): 84, 78, 92, (549,81,0): 84, 78, 90, (549,82,0): 85, 79, 91, (549,83,0): 85, 79, 91, (549,84,0): 84, 81, 92, (549,85,0): 84, 81, 92, (549,86,0): 84, 82, 95, (549,87,0): 84, 82, 95, (549,88,0): 82, 80, 94, (549,89,0): 83, 81, 95, (549,90,0): 82, 81, 97, (549,91,0): 82, 81, 97, (549,92,0): 81, 83, 98, (549,93,0): 82, 84, 99, (549,94,0): 82, 84, 99, (549,95,0): 82, 84, 99, (549,96,0): 83, 86, 103, (549,97,0): 83, 86, 103, (549,98,0): 83, 86, 105, (549,99,0): 82, 85, 104, (549,100,0): 82, 85, 104, (549,101,0): 81, 84, 103, (549,102,0): 81, 83, 104, (549,103,0): 81, 83, 104, (549,104,0): 82, 84, 107, (549,105,0): 82, 84, 107, (549,106,0): 81, 83, 106, (549,107,0): 81, 83, 106, (549,108,0): 80, 82, 107, (549,109,0): 80, 82, 107, (549,110,0): 79, 81, 106, (549,111,0): 77, 81, 106, (549,112,0): 74, 78, 103, (549,113,0): 74, 80, 104, (549,114,0): 74, 80, 104, (549,115,0): 75, 81, 105, (549,116,0): 76, 82, 108, (549,117,0): 78, 84, 110, (549,118,0): 78, 84, 110, (549,119,0): 79, 85, 111, (549,120,0): 81, 86, 115, (549,121,0): 81, 86, 115, (549,122,0): 81, 86, 116, (549,123,0): 81, 86, 116, (549,124,0): 81, 86, 116, (549,125,0): 81, 86, 116, (549,126,0): 81, 86, 118, (549,127,0): 81, 86, 118, (549,128,0): 83, 88, 118, (549,129,0): 83, 88, 118, (549,130,0): 83, 88, 118, (549,131,0): 83, 88, 118, (549,132,0): 84, 89, 119, (549,133,0): 84, 89, 119, (549,134,0): 84, 89, 119, (549,135,0): 84, 89, 119, (549,136,0): 84, 89, 119, (549,137,0): 84, 89, 119, (549,138,0): 84, 89, 119, (549,139,0): 83, 88, 118, (549,140,0): 82, 87, 117, (549,141,0): 82, 87, 117, (549,142,0): 82, 87, 117, (549,143,0): 81, 86, 116, (549,144,0): 78, 84, 116, (549,145,0): 78, 84, 116, (549,146,0): 78, 84, 116, (549,147,0): 78, 84, 116, (549,148,0): 78, 84, 118, (549,149,0): 76, 85, 118, (549,150,0): 76, 84, 120, (549,151,0): 76, 84, 120, (549,152,0): 76, 84, 120, (549,153,0): 75, 85, 120, (549,154,0): 76, 86, 122, (549,155,0): 74, 87, 122, (549,156,0): 75, 87, 125, (549,157,0): 75, 87, 125, (549,158,0): 76, 88, 126, (549,159,0): 76, 88, 126, (549,160,0): 80, 88, 125, (549,161,0): 82, 87, 125, (549,162,0): 82, 87, 125, (549,163,0): 83, 88, 126, (549,164,0): 83, 88, 126, (549,165,0): 84, 89, 127, (549,166,0): 84, 89, 127, (549,167,0): 84, 89, 127, (549,168,0): 86, 91, 129, (549,169,0): 86, 91, 129, (549,170,0): 86, 91, 129, (549,171,0): 86, 91, 129, (549,172,0): 86, 91, 129, (549,173,0): 86, 91, 129, (549,174,0): 86, 91, 129, (549,175,0): 86, 91, 129, (549,176,0): 90, 94, 131, (549,177,0): 90, 94, 129, (549,178,0): 91, 94, 129, (549,179,0): 91, 95, 130, (549,180,0): 92, 94, 132, (549,181,0): 92, 96, 133, (549,182,0): 93, 95, 134, (549,183,0): 92, 96, 134, (549,184,0): 91, 93, 132, (549,185,0): 91, 95, 133, (549,186,0): 92, 94, 135, (549,187,0): 91, 94, 135, (549,188,0): 93, 94, 138, (549,189,0): 93, 96, 139, (549,190,0): 94, 95, 139, (549,191,0): 93, 96, 141, (549,192,0): 90, 97, 143, (549,193,0): 89, 97, 143, (549,194,0): 90, 98, 145, (549,195,0): 90, 98, 144, (549,196,0): 91, 99, 146, (549,197,0): 91, 99, 145, (549,198,0): 92, 100, 147, (549,199,0): 90, 101, 146, (549,200,0): 88, 99, 145, (549,201,0): 87, 100, 144, (549,202,0): 87, 100, 145, (549,203,0): 86, 101, 144, (549,204,0): 87, 101, 146, (549,205,0): 87, 102, 145, (549,206,0): 87, 101, 146, (549,207,0): 88, 101, 146, (549,208,0): 90, 98, 145, (549,209,0): 91, 97, 145, (549,210,0): 92, 99, 145, (549,211,0): 94, 101, 147, (549,212,0): 95, 102, 148, (549,213,0): 96, 103, 149, (549,214,0): 97, 104, 148, (549,215,0): 98, 105, 149, (549,216,0): 100, 107, 151, (549,217,0): 101, 108, 150, (549,218,0): 102, 109, 151, (549,219,0): 103, 110, 152, (549,220,0): 103, 110, 152, (549,221,0): 103, 111, 150, (549,222,0): 102, 109, 151, (549,223,0): 101, 109, 148, (549,224,0): 93, 98, 136, (549,225,0): 97, 101, 138, (549,226,0): 100, 104, 139, (549,227,0): 100, 105, 135, (549,228,0): 97, 101, 130, (549,229,0): 88, 92, 117, (549,230,0): 81, 83, 106, (549,231,0): 75, 78, 97, (549,232,0): 71, 70, 86, (549,233,0): 69, 68, 82, (549,234,0): 67, 65, 78, (549,235,0): 64, 60, 74, (549,236,0): 60, 57, 68, (549,237,0): 56, 53, 64, (549,238,0): 55, 49, 61, (549,239,0): 51, 48, 57, (549,240,0): 51, 49, 54, (549,241,0): 51, 49, 54, (549,242,0): 51, 49, 54, (549,243,0): 51, 49, 54, (549,244,0): 51, 49, 54, (549,245,0): 50, 49, 54, (549,246,0): 50, 49, 54, (549,247,0): 49, 50, 55, (549,248,0): 48, 49, 54, (549,249,0): 50, 51, 56, (549,250,0): 51, 54, 59, (549,251,0): 55, 58, 63, (549,252,0): 60, 63, 70, (549,253,0): 63, 68, 74, (549,254,0): 66, 71, 77, (549,255,0): 66, 72, 86, (549,256,0): 78, 87, 116, (549,257,0): 84, 94, 130, (549,258,0): 95, 103, 140, (549,259,0): 104, 112, 149, (549,260,0): 110, 118, 157, (549,261,0): 116, 123, 165, (549,262,0): 124, 128, 173, (549,263,0): 128, 132, 177, (549,264,0): 127, 129, 177, (549,265,0): 126, 128, 177, (549,266,0): 127, 129, 180, (549,267,0): 129, 130, 184, (549,268,0): 132, 131, 188, (549,269,0): 133, 132, 189, (549,270,0): 131, 130, 188, (549,271,0): 128, 129, 185, (549,272,0): 132, 135, 186, (549,273,0): 130, 137, 183, (549,274,0): 131, 137, 185, (549,275,0): 131, 139, 186, (549,276,0): 131, 139, 186, (549,277,0): 130, 138, 184, (549,278,0): 129, 137, 183, (549,279,0): 128, 137, 180, (549,280,0): 128, 135, 177, (549,281,0): 129, 134, 174, (549,282,0): 128, 132, 170, (549,283,0): 130, 130, 166, (549,284,0): 131, 130, 162, (549,285,0): 134, 131, 162, (549,286,0): 137, 132, 162, (549,287,0): 139, 133, 161, (549,288,0): 140, 135, 165, (549,289,0): 141, 136, 166, (549,290,0): 142, 137, 167, (549,291,0): 142, 137, 167, (549,292,0): 142, 137, 167, (549,293,0): 142, 137, 167, (549,294,0): 141, 136, 168, (549,295,0): 140, 135, 167, (549,296,0): 139, 134, 166, (549,297,0): 140, 134, 168, (549,298,0): 142, 136, 170, (549,299,0): 144, 138, 172, (549,300,0): 145, 137, 174, (549,301,0): 141, 135, 169, (549,302,0): 136, 128, 165, (549,303,0): 133, 123, 157, (549,304,0): 133, 117, 144, (549,305,0): 126, 106, 131, (549,306,0): 115, 92, 118, (549,307,0): 105, 81, 105, (549,308,0): 98, 73, 95, (549,309,0): 93, 65, 87, (549,310,0): 87, 58, 78, (549,311,0): 84, 53, 69, (549,312,0): 81, 50, 65, (549,313,0): 76, 46, 56, (549,314,0): 70, 40, 48, (549,315,0): 64, 37, 42, (549,316,0): 62, 37, 40, (549,317,0): 62, 38, 38, (549,318,0): 60, 36, 36, (549,319,0): 59, 35, 35, (549,320,0): 55, 30, 33, (549,321,0): 55, 30, 34, (549,322,0): 55, 30, 34, (549,323,0): 56, 31, 35, (549,324,0): 56, 31, 35, (549,325,0): 57, 32, 36, (549,326,0): 57, 32, 36, (549,327,0): 57, 32, 36, (549,328,0): 59, 34, 38, (549,329,0): 59, 34, 38, (549,330,0): 58, 33, 37, (549,331,0): 57, 32, 36, (549,332,0): 55, 30, 34, (549,333,0): 52, 27, 31, (549,334,0): 49, 24, 28, (549,335,0): 46, 24, 27, (549,336,0): 41, 21, 23, (549,337,0): 37, 18, 20, (549,338,0): 34, 15, 17, (549,339,0): 33, 14, 16, (549,340,0): 32, 16, 19, (549,341,0): 31, 15, 18, (549,342,0): 28, 11, 17, (549,343,0): 25, 10, 15, (549,344,0): 25, 10, 15, (549,345,0): 25, 10, 15, (549,346,0): 23, 10, 17, (549,347,0): 22, 9, 16, (549,348,0): 22, 9, 18, (549,349,0): 20, 9, 17, (549,350,0): 20, 9, 17, (549,351,0): 20, 9, 17, (549,352,0): 18, 7, 15, (549,353,0): 18, 7, 15, (549,354,0): 18, 7, 15, (549,355,0): 18, 7, 15, (549,356,0): 18, 7, 15, (549,357,0): 18, 7, 15, (549,358,0): 18, 7, 15, (549,359,0): 18, 7, 15, (549,360,0): 19, 8, 16, (549,361,0): 19, 8, 16, (549,362,0): 18, 7, 15, (549,363,0): 18, 7, 15, (549,364,0): 18, 7, 15, (549,365,0): 18, 7, 15, (549,366,0): 17, 6, 14, (549,367,0): 17, 6, 14, (549,368,0): 17, 6, 14, (549,369,0): 17, 6, 14, (549,370,0): 17, 6, 14, (549,371,0): 17, 6, 14, (549,372,0): 17, 6, 14, (549,373,0): 17, 6, 14, (549,374,0): 17, 6, 14, (549,375,0): 17, 6, 14, (549,376,0): 20, 9, 17, (549,377,0): 20, 9, 17, (549,378,0): 20, 9, 17, (549,379,0): 20, 9, 17, (549,380,0): 20, 9, 17, (549,381,0): 20, 9, 17, (549,382,0): 20, 9, 17, (549,383,0): 20, 9, 17, (549,384,0): 18, 7, 15, (549,385,0): 18, 7, 15, (549,386,0): 18, 7, 15, (549,387,0): 18, 7, 15, (549,388,0): 18, 7, 13, (549,389,0): 18, 7, 13, (549,390,0): 18, 7, 11, (549,391,0): 18, 7, 11, (549,392,0): 18, 7, 11, (549,393,0): 18, 7, 11, (549,394,0): 19, 9, 10, (549,395,0): 19, 9, 10, (549,396,0): 20, 10, 9, (549,397,0): 20, 10, 9, (549,398,0): 21, 11, 10, (549,399,0): 22, 10, 10, (549,400,0): 25, 11, 11, (549,401,0): 27, 11, 12, (549,402,0): 27, 11, 12, (549,403,0): 27, 11, 12, (549,404,0): 27, 11, 12, (549,405,0): 28, 12, 13, (549,406,0): 28, 12, 13, (549,407,0): 28, 12, 13, (549,408,0): 28, 12, 13, (549,409,0): 28, 12, 13, (549,410,0): 28, 12, 13, (549,411,0): 28, 12, 13, (549,412,0): 28, 12, 13, (549,413,0): 28, 12, 13, (549,414,0): 28, 12, 13, (549,415,0): 28, 12, 13, (549,416,0): 29, 15, 15, (549,417,0): 29, 15, 15, (549,418,0): 29, 15, 15, (549,419,0): 29, 15, 15, (549,420,0): 29, 15, 15, (549,421,0): 29, 15, 15, (549,422,0): 29, 15, 15, (549,423,0): 29, 15, 15, (549,424,0): 34, 20, 20, (549,425,0): 34, 20, 20, (549,426,0): 33, 19, 19, (549,427,0): 31, 17, 17, (549,428,0): 30, 16, 16, (549,429,0): 29, 15, 15, (549,430,0): 28, 14, 14, (549,431,0): 27, 13, 13, (549,432,0): 27, 12, 15, (549,433,0): 26, 11, 14, (549,434,0): 23, 11, 13, (549,435,0): 23, 11, 13, (549,436,0): 21, 9, 11, (549,437,0): 21, 9, 11, (549,438,0): 22, 7, 10, (549,439,0): 21, 6, 9, (549,440,0): 23, 7, 10, (549,441,0): 25, 6, 10, (549,442,0): 27, 6, 11, (549,443,0): 29, 6, 12, (549,444,0): 31, 6, 12, (549,445,0): 33, 6, 13, (549,446,0): 36, 6, 14, (549,447,0): 34, 7, 12, (549,448,0): 31, 6, 10, (549,449,0): 29, 7, 9, (549,450,0): 29, 7, 9, (549,451,0): 29, 7, 9, (549,452,0): 29, 7, 9, (549,453,0): 29, 7, 9, (549,454,0): 29, 7, 9, (549,455,0): 29, 7, 9, (549,456,0): 28, 6, 8, (549,457,0): 28, 6, 8, (549,458,0): 28, 6, 8, (549,459,0): 29, 7, 9, (549,460,0): 29, 7, 9, (549,461,0): 30, 8, 10, (549,462,0): 30, 8, 10, (549,463,0): 30, 8, 10, (549,464,0): 31, 9, 11, (549,465,0): 31, 9, 11, (549,466,0): 31, 9, 11, (549,467,0): 31, 9, 11, (549,468,0): 31, 9, 11, (549,469,0): 31, 9, 11, (549,470,0): 31, 9, 11, (549,471,0): 31, 9, 11, (549,472,0): 35, 13, 15, (549,473,0): 35, 13, 15, (549,474,0): 34, 12, 14, (549,475,0): 35, 13, 15, (549,476,0): 36, 14, 16, (549,477,0): 38, 16, 18, (549,478,0): 39, 17, 19, (549,479,0): 41, 19, 21, (549,480,0): 46, 22, 22, (549,481,0): 47, 23, 23, (549,482,0): 47, 23, 23, (549,483,0): 47, 23, 23, (549,484,0): 47, 22, 25, (549,485,0): 44, 22, 24, (549,486,0): 42, 20, 22, (549,487,0): 41, 19, 21, (549,488,0): 42, 22, 24, (549,489,0): 42, 22, 24, (549,490,0): 41, 20, 25, (549,491,0): 40, 21, 25, (549,492,0): 39, 20, 24, (549,493,0): 39, 20, 24, (549,494,0): 36, 19, 25, (549,495,0): 38, 19, 25, (549,496,0): 37, 16, 21, (549,497,0): 37, 16, 21, (549,498,0): 38, 15, 21, (549,499,0): 37, 16, 21, (549,500,0): 38, 15, 21, (549,501,0): 37, 16, 21, (549,502,0): 38, 15, 21, (549,503,0): 37, 16, 21, (549,504,0): 35, 12, 18, (549,505,0): 33, 12, 17, (549,506,0): 32, 9, 15, (549,507,0): 29, 8, 13, (549,508,0): 30, 7, 13, (549,509,0): 31, 10, 15, (549,510,0): 34, 11, 17, (549,511,0): 34, 13, 18, (549,512,0): 32, 11, 18, (549,513,0): 32, 11, 18, (549,514,0): 32, 11, 18, (549,515,0): 31, 10, 17, (549,516,0): 31, 10, 17, (549,517,0): 30, 9, 16, (549,518,0): 30, 9, 16, (549,519,0): 30, 9, 16, (549,520,0): 29, 8, 15, (549,521,0): 30, 9, 16, (549,522,0): 31, 10, 17, (549,523,0): 32, 11, 18, (549,524,0): 32, 11, 18, (549,525,0): 31, 10, 17, (549,526,0): 30, 9, 16, (549,527,0): 29, 8, 17, (549,528,0): 24, 2, 14, (549,529,0): 24, 4, 16, (549,530,0): 24, 4, 16, (549,531,0): 25, 5, 17, (549,532,0): 24, 4, 16, (549,533,0): 21, 3, 15, (549,534,0): 20, 2, 14, (549,535,0): 18, 2, 13, (549,536,0): 20, 4, 15, (549,537,0): 19, 3, 14, (549,538,0): 17, 1, 12, (549,539,0): 14, 1, 11, (549,540,0): 14, 1, 11, (549,541,0): 14, 1, 11, (549,542,0): 15, 2, 12, (549,543,0): 15, 2, 12, (549,544,0): 13, 1, 11, (549,545,0): 13, 1, 11, (549,546,0): 13, 1, 11, (549,547,0): 13, 1, 11, (549,548,0): 13, 1, 11, (549,549,0): 13, 1, 11, (549,550,0): 13, 1, 11, (549,551,0): 13, 1, 11, (549,552,0): 13, 1, 11, (549,553,0): 13, 1, 11, (549,554,0): 14, 2, 12, (549,555,0): 15, 3, 13, (549,556,0): 16, 4, 14, (549,557,0): 17, 5, 15, (549,558,0): 18, 6, 16, (549,559,0): 17, 7, 16, (549,560,0): 15, 5, 13, (549,561,0): 14, 7, 14, (549,562,0): 16, 9, 16, (549,563,0): 18, 11, 18, (549,564,0): 19, 12, 19, (549,565,0): 19, 12, 19, (549,566,0): 19, 12, 19, (549,567,0): 19, 12, 19, (549,568,0): 19, 12, 19, (549,569,0): 19, 12, 19, (549,570,0): 19, 12, 19, (549,571,0): 19, 12, 19, (549,572,0): 19, 12, 19, (549,573,0): 19, 12, 19, (549,574,0): 19, 12, 19, (549,575,0): 19, 13, 17, (549,576,0): 24, 13, 19, (549,577,0): 24, 13, 17, (549,578,0): 24, 13, 17, (549,579,0): 25, 14, 18, (549,580,0): 25, 14, 18, (549,581,0): 26, 15, 19, (549,582,0): 26, 15, 19, (549,583,0): 26, 15, 19, (549,584,0): 27, 16, 20, (549,585,0): 27, 16, 20, (549,586,0): 26, 15, 19, (549,587,0): 26, 15, 19, (549,588,0): 25, 14, 18, (549,589,0): 25, 14, 18, (549,590,0): 24, 13, 17, (549,591,0): 23, 14, 19, (549,592,0): 22, 12, 20, (549,593,0): 20, 13, 21, (549,594,0): 20, 13, 21, (549,595,0): 19, 12, 20, (549,596,0): 19, 12, 20, (549,597,0): 18, 11, 19, (549,598,0): 18, 11, 19, (549,599,0): 18, 11, 19, (550,0,0): 37, 56, 70, (550,1,0): 37, 56, 70, (550,2,0): 37, 56, 70, (550,3,0): 37, 56, 70, (550,4,0): 37, 56, 70, (550,5,0): 37, 56, 70, (550,6,0): 37, 56, 70, (550,7,0): 37, 56, 70, (550,8,0): 37, 56, 70, (550,9,0): 37, 56, 70, (550,10,0): 38, 57, 71, (550,11,0): 38, 57, 71, (550,12,0): 39, 58, 72, (550,13,0): 39, 58, 72, (550,14,0): 39, 58, 72, (550,15,0): 40, 59, 73, (550,16,0): 42, 60, 74, (550,17,0): 42, 60, 74, (550,18,0): 43, 61, 75, (550,19,0): 43, 61, 75, (550,20,0): 44, 62, 76, (550,21,0): 44, 62, 76, (550,22,0): 45, 63, 77, (550,23,0): 45, 63, 77, (550,24,0): 45, 63, 77, (550,25,0): 45, 63, 77, (550,26,0): 46, 64, 78, (550,27,0): 46, 64, 78, (550,28,0): 47, 65, 79, (550,29,0): 47, 65, 79, (550,30,0): 48, 66, 80, (550,31,0): 48, 66, 78, (550,32,0): 47, 63, 76, (550,33,0): 48, 65, 75, (550,34,0): 50, 64, 75, (550,35,0): 51, 65, 76, (550,36,0): 52, 64, 76, (550,37,0): 53, 65, 77, (550,38,0): 55, 65, 75, (550,39,0): 55, 65, 75, (550,40,0): 61, 68, 78, (550,41,0): 61, 68, 78, (550,42,0): 63, 67, 76, (550,43,0): 64, 68, 77, (550,44,0): 65, 68, 77, (550,45,0): 66, 69, 78, (550,46,0): 68, 68, 78, (550,47,0): 68, 68, 78, (550,48,0): 65, 68, 77, (550,49,0): 66, 69, 78, (550,50,0): 66, 69, 78, (550,51,0): 67, 70, 79, (550,52,0): 67, 70, 79, (550,53,0): 68, 71, 80, (550,54,0): 68, 71, 80, (550,55,0): 68, 71, 80, (550,56,0): 71, 74, 83, (550,57,0): 70, 73, 82, (550,58,0): 69, 72, 81, (550,59,0): 68, 71, 80, (550,60,0): 68, 71, 80, (550,61,0): 69, 72, 81, (550,62,0): 70, 73, 82, (550,63,0): 71, 74, 83, (550,64,0): 73, 71, 85, (550,65,0): 73, 71, 85, (550,66,0): 74, 72, 86, (550,67,0): 75, 73, 87, (550,68,0): 76, 74, 88, (550,69,0): 77, 75, 89, (550,70,0): 78, 76, 90, (550,71,0): 78, 76, 90, (550,72,0): 77, 75, 89, (550,73,0): 78, 76, 90, (550,74,0): 78, 76, 90, (550,75,0): 79, 77, 91, (550,76,0): 81, 79, 93, (550,77,0): 82, 80, 94, (550,78,0): 82, 80, 94, (550,79,0): 83, 81, 94, (550,80,0): 85, 79, 93, (550,81,0): 85, 79, 91, (550,82,0): 86, 80, 92, (550,83,0): 86, 80, 92, (550,84,0): 85, 82, 93, (550,85,0): 85, 82, 93, (550,86,0): 85, 83, 96, (550,87,0): 85, 83, 96, (550,88,0): 82, 80, 94, (550,89,0): 82, 80, 94, (550,90,0): 82, 81, 97, (550,91,0): 82, 81, 97, (550,92,0): 81, 83, 98, (550,93,0): 81, 83, 98, (550,94,0): 81, 83, 98, (550,95,0): 82, 84, 99, (550,96,0): 83, 86, 103, (550,97,0): 83, 86, 103, (550,98,0): 83, 86, 105, (550,99,0): 82, 85, 104, (550,100,0): 82, 85, 104, (550,101,0): 81, 84, 103, (550,102,0): 81, 83, 104, (550,103,0): 81, 83, 104, (550,104,0): 82, 84, 107, (550,105,0): 82, 84, 107, (550,106,0): 81, 83, 106, (550,107,0): 81, 83, 106, (550,108,0): 80, 82, 107, (550,109,0): 80, 82, 107, (550,110,0): 79, 81, 106, (550,111,0): 77, 81, 106, (550,112,0): 73, 77, 102, (550,113,0): 73, 79, 103, (550,114,0): 74, 80, 104, (550,115,0): 75, 81, 105, (550,116,0): 76, 82, 108, (550,117,0): 77, 83, 109, (550,118,0): 78, 84, 110, (550,119,0): 78, 84, 110, (550,120,0): 81, 86, 115, (550,121,0): 81, 86, 115, (550,122,0): 81, 86, 116, (550,123,0): 81, 86, 116, (550,124,0): 81, 86, 116, (550,125,0): 81, 86, 116, (550,126,0): 81, 86, 118, (550,127,0): 81, 86, 118, (550,128,0): 84, 89, 119, (550,129,0): 84, 89, 118, (550,130,0): 84, 89, 118, (550,131,0): 84, 89, 118, (550,132,0): 83, 88, 117, (550,133,0): 83, 88, 117, (550,134,0): 83, 88, 117, (550,135,0): 83, 88, 117, (550,136,0): 84, 89, 118, (550,137,0): 83, 88, 117, (550,138,0): 83, 88, 117, (550,139,0): 83, 88, 117, (550,140,0): 82, 87, 116, (550,141,0): 82, 87, 116, (550,142,0): 81, 86, 115, (550,143,0): 81, 86, 115, (550,144,0): 77, 82, 112, (550,145,0): 77, 82, 112, (550,146,0): 77, 82, 114, (550,147,0): 76, 82, 114, (550,148,0): 76, 82, 114, (550,149,0): 76, 82, 114, (550,150,0): 76, 82, 116, (550,151,0): 74, 83, 116, (550,152,0): 76, 84, 120, (550,153,0): 75, 85, 120, (550,154,0): 76, 86, 121, (550,155,0): 76, 86, 121, (550,156,0): 77, 87, 123, (550,157,0): 75, 88, 123, (550,158,0): 76, 89, 124, (550,159,0): 78, 88, 124, (550,160,0): 79, 87, 124, (550,161,0): 81, 86, 124, (550,162,0): 81, 86, 124, (550,163,0): 82, 87, 125, (550,164,0): 82, 87, 125, (550,165,0): 83, 88, 126, (550,166,0): 83, 88, 126, (550,167,0): 83, 88, 126, (550,168,0): 86, 91, 129, (550,169,0): 86, 91, 129, (550,170,0): 86, 91, 129, (550,171,0): 86, 91, 129, (550,172,0): 86, 91, 129, (550,173,0): 86, 91, 129, (550,174,0): 86, 91, 129, (550,175,0): 86, 91, 129, (550,176,0): 89, 95, 131, (550,177,0): 89, 95, 131, (550,178,0): 90, 94, 131, (550,179,0): 90, 96, 132, (550,180,0): 91, 95, 133, (550,181,0): 91, 96, 134, (550,182,0): 92, 96, 134, (550,183,0): 91, 96, 134, (550,184,0): 90, 93, 134, (550,185,0): 89, 94, 134, (550,186,0): 91, 94, 137, (550,187,0): 90, 95, 137, (550,188,0): 92, 95, 138, (550,189,0): 91, 96, 138, (550,190,0): 92, 95, 140, (550,191,0): 92, 96, 141, (550,192,0): 87, 95, 142, (550,193,0): 85, 96, 142, (550,194,0): 86, 96, 145, (550,195,0): 86, 97, 143, (550,196,0): 87, 97, 146, (550,197,0): 86, 99, 144, (550,198,0): 87, 99, 147, (550,199,0): 86, 100, 145, (550,200,0): 86, 100, 147, (550,201,0): 86, 100, 145, (550,202,0): 86, 100, 147, (550,203,0): 84, 101, 145, (550,204,0): 84, 101, 147, (550,205,0): 84, 101, 145, (550,206,0): 84, 101, 147, (550,207,0): 86, 100, 147, (550,208,0): 88, 100, 148, (550,209,0): 89, 99, 148, (550,210,0): 90, 100, 149, (550,211,0): 91, 101, 150, (550,212,0): 92, 102, 151, (550,213,0): 93, 103, 152, (550,214,0): 94, 104, 153, (550,215,0): 94, 104, 153, (550,216,0): 96, 106, 155, (550,217,0): 97, 108, 154, (550,218,0): 99, 110, 156, (550,219,0): 101, 112, 158, (550,220,0): 102, 113, 159, (550,221,0): 102, 113, 158, (550,222,0): 102, 113, 159, (550,223,0): 102, 113, 158, (550,224,0): 95, 106, 151, (550,225,0): 98, 107, 150, (550,226,0): 99, 108, 149, (550,227,0): 99, 107, 146, (550,228,0): 98, 104, 140, (550,229,0): 92, 98, 130, (550,230,0): 88, 93, 122, (550,231,0): 84, 90, 114, (550,232,0): 74, 76, 97, (550,233,0): 72, 75, 94, (550,234,0): 70, 71, 89, (550,235,0): 67, 66, 80, (550,236,0): 63, 61, 74, (550,237,0): 59, 57, 68, (550,238,0): 56, 53, 64, (550,239,0): 54, 51, 60, (550,240,0): 54, 52, 57, (550,241,0): 56, 51, 55, (550,242,0): 54, 52, 55, (550,243,0): 54, 52, 55, (550,244,0): 53, 52, 57, (550,245,0): 53, 52, 57, (550,246,0): 52, 53, 58, (550,247,0): 50, 53, 60, (550,248,0): 50, 53, 62, (550,249,0): 52, 56, 65, (550,250,0): 55, 62, 72, (550,251,0): 61, 68, 78, (550,252,0): 67, 75, 86, (550,253,0): 74, 82, 93, (550,254,0): 78, 86, 97, (550,255,0): 78, 89, 109, (550,256,0): 94, 107, 142, (550,257,0): 99, 112, 157, (550,258,0): 107, 118, 164, (550,259,0): 113, 124, 170, (550,260,0): 115, 125, 174, (550,261,0): 117, 127, 176, (550,262,0): 121, 128, 180, (550,263,0): 124, 131, 183, (550,264,0): 123, 128, 183, (550,265,0): 122, 127, 183, (550,266,0): 122, 127, 183, (550,267,0): 124, 129, 187, (550,268,0): 130, 132, 191, (550,269,0): 131, 133, 194, (550,270,0): 129, 131, 192, (550,271,0): 124, 129, 187, (550,272,0): 126, 133, 187, (550,273,0): 125, 135, 186, (550,274,0): 125, 137, 189, (550,275,0): 125, 137, 189, (550,276,0): 125, 137, 189, (550,277,0): 123, 136, 188, (550,278,0): 122, 135, 187, (550,279,0): 122, 134, 184, (550,280,0): 122, 132, 181, (550,281,0): 124, 132, 179, (550,282,0): 125, 132, 178, (550,283,0): 129, 132, 175, (550,284,0): 131, 133, 174, (550,285,0): 133, 133, 171, (550,286,0): 135, 133, 170, (550,287,0): 136, 134, 171, (550,288,0): 135, 133, 170, (550,289,0): 136, 134, 171, (550,290,0): 137, 135, 172, (550,291,0): 138, 136, 173, (550,292,0): 138, 136, 173, (550,293,0): 136, 134, 171, (550,294,0): 136, 132, 169, (550,295,0): 134, 130, 167, (550,296,0): 137, 133, 170, (550,297,0): 136, 131, 171, (550,298,0): 135, 130, 170, (550,299,0): 137, 132, 172, (550,300,0): 139, 132, 174, (550,301,0): 136, 131, 171, (550,302,0): 132, 125, 167, (550,303,0): 130, 120, 157, (550,304,0): 130, 110, 138, (550,305,0): 125, 99, 124, (550,306,0): 113, 85, 110, (550,307,0): 101, 73, 96, (550,308,0): 95, 65, 89, (550,309,0): 92, 60, 81, (550,310,0): 88, 57, 75, (550,311,0): 86, 53, 70, (550,312,0): 79, 47, 62, (550,313,0): 74, 44, 54, (550,314,0): 68, 38, 46, (550,315,0): 63, 36, 41, (550,316,0): 61, 36, 39, (550,317,0): 60, 36, 36, (550,318,0): 56, 35, 34, (550,319,0): 53, 32, 31, (550,320,0): 54, 29, 32, (550,321,0): 54, 29, 33, (550,322,0): 54, 29, 33, (550,323,0): 55, 30, 34, (550,324,0): 56, 31, 35, (550,325,0): 56, 31, 35, (550,326,0): 57, 32, 36, (550,327,0): 57, 32, 36, (550,328,0): 57, 32, 36, (550,329,0): 56, 31, 35, (550,330,0): 55, 30, 34, (550,331,0): 54, 29, 33, (550,332,0): 51, 26, 30, (550,333,0): 49, 24, 28, (550,334,0): 46, 21, 25, (550,335,0): 43, 21, 24, (550,336,0): 40, 20, 22, (550,337,0): 37, 17, 19, (550,338,0): 33, 14, 16, (550,339,0): 33, 14, 16, (550,340,0): 34, 15, 19, (550,341,0): 31, 15, 18, (550,342,0): 29, 12, 18, (550,343,0): 26, 9, 15, (550,344,0): 25, 10, 15, (550,345,0): 25, 10, 15, (550,346,0): 25, 10, 17, (550,347,0): 22, 9, 16, (550,348,0): 22, 9, 18, (550,349,0): 21, 8, 17, (550,350,0): 21, 8, 17, (550,351,0): 21, 8, 17, (550,352,0): 18, 7, 15, (550,353,0): 18, 7, 15, (550,354,0): 18, 7, 15, (550,355,0): 18, 7, 15, (550,356,0): 18, 7, 15, (550,357,0): 18, 7, 15, (550,358,0): 18, 7, 15, (550,359,0): 18, 7, 15, (550,360,0): 17, 6, 14, (550,361,0): 17, 6, 14, (550,362,0): 18, 7, 15, (550,363,0): 18, 7, 15, (550,364,0): 18, 7, 15, (550,365,0): 18, 7, 15, (550,366,0): 19, 8, 16, (550,367,0): 19, 8, 16, (550,368,0): 17, 6, 14, (550,369,0): 17, 6, 14, (550,370,0): 17, 6, 14, (550,371,0): 17, 6, 14, (550,372,0): 17, 6, 14, (550,373,0): 17, 6, 14, (550,374,0): 17, 6, 14, (550,375,0): 17, 6, 14, (550,376,0): 20, 9, 17, (550,377,0): 20, 9, 17, (550,378,0): 20, 9, 17, (550,379,0): 20, 9, 17, (550,380,0): 20, 9, 17, (550,381,0): 20, 9, 17, (550,382,0): 20, 9, 17, (550,383,0): 20, 9, 17, (550,384,0): 18, 7, 15, (550,385,0): 18, 7, 15, (550,386,0): 18, 7, 15, (550,387,0): 18, 7, 15, (550,388,0): 18, 7, 13, (550,389,0): 18, 7, 13, (550,390,0): 18, 7, 11, (550,391,0): 18, 7, 11, (550,392,0): 18, 7, 11, (550,393,0): 18, 7, 11, (550,394,0): 19, 9, 10, (550,395,0): 19, 9, 10, (550,396,0): 20, 10, 9, (550,397,0): 20, 10, 9, (550,398,0): 21, 11, 10, (550,399,0): 22, 10, 10, (550,400,0): 27, 13, 13, (550,401,0): 28, 12, 13, (550,402,0): 27, 11, 12, (550,403,0): 27, 11, 12, (550,404,0): 27, 11, 12, (550,405,0): 26, 10, 11, (550,406,0): 26, 10, 11, (550,407,0): 26, 10, 11, (550,408,0): 28, 12, 13, (550,409,0): 28, 12, 13, (550,410,0): 28, 12, 13, (550,411,0): 28, 12, 13, (550,412,0): 28, 12, 13, (550,413,0): 28, 12, 13, (550,414,0): 28, 12, 13, (550,415,0): 28, 12, 13, (550,416,0): 29, 15, 15, (550,417,0): 29, 15, 15, (550,418,0): 29, 15, 15, (550,419,0): 29, 15, 15, (550,420,0): 29, 15, 15, (550,421,0): 29, 15, 15, (550,422,0): 29, 15, 15, (550,423,0): 29, 15, 15, (550,424,0): 33, 19, 19, (550,425,0): 33, 19, 19, (550,426,0): 32, 18, 18, (550,427,0): 32, 18, 18, (550,428,0): 31, 17, 17, (550,429,0): 30, 16, 16, (550,430,0): 30, 16, 16, (550,431,0): 29, 15, 15, (550,432,0): 27, 12, 15, (550,433,0): 27, 12, 15, (550,434,0): 26, 11, 14, (550,435,0): 25, 10, 13, (550,436,0): 23, 8, 11, (550,437,0): 22, 7, 10, (550,438,0): 22, 6, 9, (550,439,0): 22, 6, 9, (550,440,0): 24, 8, 11, (550,441,0): 27, 8, 12, (550,442,0): 28, 7, 12, (550,443,0): 29, 6, 12, (550,444,0): 31, 6, 12, (550,445,0): 31, 6, 12, (550,446,0): 32, 5, 12, (550,447,0): 32, 7, 11, (550,448,0): 28, 6, 9, (550,449,0): 27, 7, 8, (550,450,0): 27, 7, 8, (550,451,0): 27, 7, 8, (550,452,0): 27, 7, 8, (550,453,0): 27, 7, 8, (550,454,0): 27, 7, 8, (550,455,0): 27, 7, 8, (550,456,0): 26, 6, 7, (550,457,0): 26, 6, 7, (550,458,0): 26, 6, 7, (550,459,0): 27, 7, 8, (550,460,0): 27, 7, 8, (550,461,0): 28, 8, 9, (550,462,0): 28, 8, 9, (550,463,0): 29, 9, 10, (550,464,0): 31, 9, 11, (550,465,0): 31, 9, 11, (550,466,0): 31, 9, 11, (550,467,0): 31, 9, 11, (550,468,0): 31, 9, 11, (550,469,0): 31, 9, 11, (550,470,0): 31, 9, 11, (550,471,0): 31, 9, 11, (550,472,0): 35, 13, 15, (550,473,0): 35, 13, 15, (550,474,0): 34, 12, 14, (550,475,0): 35, 13, 15, (550,476,0): 36, 14, 16, (550,477,0): 38, 16, 18, (550,478,0): 39, 17, 19, (550,479,0): 41, 19, 21, (550,480,0): 45, 21, 21, (550,481,0): 47, 21, 20, (550,482,0): 48, 22, 23, (550,483,0): 47, 23, 23, (550,484,0): 47, 23, 23, (550,485,0): 45, 21, 21, (550,486,0): 41, 19, 21, (550,487,0): 40, 18, 20, (550,488,0): 42, 20, 23, (550,489,0): 41, 21, 23, (550,490,0): 40, 20, 22, (550,491,0): 40, 20, 22, (550,492,0): 38, 19, 23, (550,493,0): 38, 19, 23, (550,494,0): 37, 18, 22, (550,495,0): 37, 18, 22, (550,496,0): 37, 14, 20, (550,497,0): 37, 14, 20, (550,498,0): 39, 14, 20, (550,499,0): 37, 14, 20, (550,500,0): 39, 14, 20, (550,501,0): 37, 14, 20, (550,502,0): 39, 14, 20, (550,503,0): 38, 15, 21, (550,504,0): 38, 13, 19, (550,505,0): 34, 11, 17, (550,506,0): 34, 9, 15, (550,507,0): 30, 7, 13, (550,508,0): 32, 7, 13, (550,509,0): 32, 9, 15, (550,510,0): 36, 11, 17, (550,511,0): 36, 13, 19, (550,512,0): 33, 12, 19, (550,513,0): 33, 12, 19, (550,514,0): 32, 11, 18, (550,515,0): 31, 10, 17, (550,516,0): 31, 10, 17, (550,517,0): 30, 9, 16, (550,518,0): 29, 8, 15, (550,519,0): 29, 8, 15, (550,520,0): 28, 7, 14, (550,521,0): 29, 8, 15, (550,522,0): 30, 9, 16, (550,523,0): 31, 10, 17, (550,524,0): 31, 10, 17, (550,525,0): 30, 9, 16, (550,526,0): 29, 8, 15, (550,527,0): 28, 7, 16, (550,528,0): 22, 2, 13, (550,529,0): 23, 3, 15, (550,530,0): 24, 4, 16, (550,531,0): 23, 5, 17, (550,532,0): 22, 4, 16, (550,533,0): 21, 3, 15, (550,534,0): 19, 1, 13, (550,535,0): 17, 1, 12, (550,536,0): 20, 4, 15, (550,537,0): 17, 4, 14, (550,538,0): 15, 2, 12, (550,539,0): 14, 1, 11, (550,540,0): 13, 0, 10, (550,541,0): 12, 0, 10, (550,542,0): 13, 1, 11, (550,543,0): 14, 2, 12, (550,544,0): 12, 0, 10, (550,545,0): 12, 0, 10, (550,546,0): 12, 0, 10, (550,547,0): 12, 0, 10, (550,548,0): 12, 0, 10, (550,549,0): 12, 0, 10, (550,550,0): 12, 0, 10, (550,551,0): 12, 0, 10, (550,552,0): 13, 1, 11, (550,553,0): 13, 1, 11, (550,554,0): 14, 2, 12, (550,555,0): 15, 3, 13, (550,556,0): 16, 4, 14, (550,557,0): 17, 5, 15, (550,558,0): 18, 6, 16, (550,559,0): 17, 7, 16, (550,560,0): 14, 4, 12, (550,561,0): 14, 7, 14, (550,562,0): 16, 9, 16, (550,563,0): 17, 10, 17, (550,564,0): 19, 12, 19, (550,565,0): 19, 12, 19, (550,566,0): 19, 12, 19, (550,567,0): 19, 12, 19, (550,568,0): 18, 11, 18, (550,569,0): 18, 11, 18, (550,570,0): 18, 11, 18, (550,571,0): 18, 11, 18, (550,572,0): 18, 11, 18, (550,573,0): 18, 11, 18, (550,574,0): 18, 11, 18, (550,575,0): 18, 12, 16, (550,576,0): 25, 14, 20, (550,577,0): 25, 14, 18, (550,578,0): 25, 14, 18, (550,579,0): 26, 15, 19, (550,580,0): 26, 15, 19, (550,581,0): 27, 16, 20, (550,582,0): 27, 16, 20, (550,583,0): 27, 16, 20, (550,584,0): 27, 16, 20, (550,585,0): 27, 16, 20, (550,586,0): 26, 15, 19, (550,587,0): 26, 15, 19, (550,588,0): 25, 14, 18, (550,589,0): 25, 14, 18, (550,590,0): 24, 13, 17, (550,591,0): 23, 14, 19, (550,592,0): 23, 13, 21, (550,593,0): 21, 14, 21, (550,594,0): 21, 14, 21, (550,595,0): 20, 13, 20, (550,596,0): 20, 13, 20, (550,597,0): 19, 12, 19, (550,598,0): 19, 12, 19, (550,599,0): 19, 12, 19, (551,0,0): 37, 56, 70, (551,1,0): 37, 56, 70, (551,2,0): 37, 56, 70, (551,3,0): 37, 56, 70, (551,4,0): 37, 56, 70, (551,5,0): 37, 56, 70, (551,6,0): 37, 56, 70, (551,7,0): 37, 56, 70, (551,8,0): 37, 56, 70, (551,9,0): 37, 56, 70, (551,10,0): 37, 56, 70, (551,11,0): 38, 57, 71, (551,12,0): 38, 57, 71, (551,13,0): 39, 58, 72, (551,14,0): 39, 58, 72, (551,15,0): 40, 59, 73, (551,16,0): 42, 60, 74, (551,17,0): 42, 60, 74, (551,18,0): 43, 61, 75, (551,19,0): 43, 61, 75, (551,20,0): 44, 62, 76, (551,21,0): 44, 62, 76, (551,22,0): 45, 63, 77, (551,23,0): 45, 63, 77, (551,24,0): 45, 63, 77, (551,25,0): 45, 63, 77, (551,26,0): 46, 64, 78, (551,27,0): 46, 64, 78, (551,28,0): 47, 65, 79, (551,29,0): 47, 65, 79, (551,30,0): 48, 66, 80, (551,31,0): 48, 66, 78, (551,32,0): 46, 62, 75, (551,33,0): 47, 64, 74, (551,34,0): 49, 63, 74, (551,35,0): 50, 64, 75, (551,36,0): 51, 63, 75, (551,37,0): 52, 64, 76, (551,38,0): 54, 64, 74, (551,39,0): 54, 64, 74, (551,40,0): 61, 68, 78, (551,41,0): 61, 68, 78, (551,42,0): 63, 67, 76, (551,43,0): 64, 68, 77, (551,44,0): 65, 68, 77, (551,45,0): 66, 69, 78, (551,46,0): 68, 68, 78, (551,47,0): 68, 68, 78, (551,48,0): 65, 68, 77, (551,49,0): 65, 68, 77, (551,50,0): 66, 69, 78, (551,51,0): 66, 69, 78, (551,52,0): 67, 70, 79, (551,53,0): 67, 70, 79, (551,54,0): 68, 71, 80, (551,55,0): 68, 71, 80, (551,56,0): 71, 74, 83, (551,57,0): 70, 73, 82, (551,58,0): 69, 72, 81, (551,59,0): 68, 71, 80, (551,60,0): 68, 71, 80, (551,61,0): 69, 72, 81, (551,62,0): 70, 73, 82, (551,63,0): 71, 74, 83, (551,64,0): 73, 71, 85, (551,65,0): 73, 71, 85, (551,66,0): 74, 72, 86, (551,67,0): 75, 73, 87, (551,68,0): 76, 74, 88, (551,69,0): 77, 75, 89, (551,70,0): 78, 76, 90, (551,71,0): 78, 76, 90, (551,72,0): 77, 75, 89, (551,73,0): 78, 76, 90, (551,74,0): 78, 76, 90, (551,75,0): 79, 77, 91, (551,76,0): 81, 79, 93, (551,77,0): 82, 80, 94, (551,78,0): 82, 80, 94, (551,79,0): 83, 81, 94, (551,80,0): 86, 80, 94, (551,81,0): 86, 80, 92, (551,82,0): 87, 81, 93, (551,83,0): 87, 81, 93, (551,84,0): 86, 83, 94, (551,85,0): 86, 83, 94, (551,86,0): 85, 83, 96, (551,87,0): 86, 84, 97, (551,88,0): 82, 80, 94, (551,89,0): 82, 80, 94, (551,90,0): 81, 80, 96, (551,91,0): 82, 81, 97, (551,92,0): 80, 82, 97, (551,93,0): 81, 83, 98, (551,94,0): 81, 83, 98, (551,95,0): 82, 84, 99, (551,96,0): 83, 86, 103, (551,97,0): 83, 86, 103, (551,98,0): 83, 86, 105, (551,99,0): 82, 85, 104, (551,100,0): 82, 85, 104, (551,101,0): 81, 84, 103, (551,102,0): 81, 83, 104, (551,103,0): 81, 83, 104, (551,104,0): 82, 84, 107, (551,105,0): 82, 84, 107, (551,106,0): 81, 83, 106, (551,107,0): 81, 83, 106, (551,108,0): 80, 82, 107, (551,109,0): 80, 82, 107, (551,110,0): 79, 81, 106, (551,111,0): 77, 81, 106, (551,112,0): 73, 77, 102, (551,113,0): 72, 78, 102, (551,114,0): 73, 79, 103, (551,115,0): 74, 80, 104, (551,116,0): 75, 81, 107, (551,117,0): 76, 82, 108, (551,118,0): 77, 83, 109, (551,119,0): 77, 83, 109, (551,120,0): 81, 86, 115, (551,121,0): 81, 86, 115, (551,122,0): 81, 86, 116, (551,123,0): 81, 86, 116, (551,124,0): 81, 86, 116, (551,125,0): 81, 86, 116, (551,126,0): 81, 86, 118, (551,127,0): 81, 86, 116, (551,128,0): 84, 89, 118, (551,129,0): 84, 89, 118, (551,130,0): 84, 89, 118, (551,131,0): 84, 89, 118, (551,132,0): 83, 88, 117, (551,133,0): 83, 88, 117, (551,134,0): 83, 88, 117, (551,135,0): 83, 88, 117, (551,136,0): 84, 89, 118, (551,137,0): 83, 88, 117, (551,138,0): 83, 88, 117, (551,139,0): 82, 87, 116, (551,140,0): 82, 87, 116, (551,141,0): 81, 86, 115, (551,142,0): 81, 86, 115, (551,143,0): 81, 86, 115, (551,144,0): 76, 81, 111, (551,145,0): 76, 81, 111, (551,146,0): 76, 81, 113, (551,147,0): 76, 81, 113, (551,148,0): 75, 81, 113, (551,149,0): 75, 81, 113, (551,150,0): 75, 81, 115, (551,151,0): 75, 81, 115, (551,152,0): 76, 84, 120, (551,153,0): 76, 84, 120, (551,154,0): 76, 86, 121, (551,155,0): 76, 86, 121, (551,156,0): 77, 87, 123, (551,157,0): 77, 87, 123, (551,158,0): 76, 89, 124, (551,159,0): 78, 88, 124, (551,160,0): 78, 86, 123, (551,161,0): 80, 85, 123, (551,162,0): 80, 85, 123, (551,163,0): 81, 86, 124, (551,164,0): 81, 86, 124, (551,165,0): 82, 87, 125, (551,166,0): 82, 87, 125, (551,167,0): 83, 88, 126, (551,168,0): 86, 91, 129, (551,169,0): 86, 91, 129, (551,170,0): 86, 91, 129, (551,171,0): 86, 91, 129, (551,172,0): 86, 91, 129, (551,173,0): 86, 91, 129, (551,174,0): 86, 91, 129, (551,175,0): 86, 91, 129, (551,176,0): 89, 95, 131, (551,177,0): 89, 95, 131, (551,178,0): 89, 95, 131, (551,179,0): 90, 96, 132, (551,180,0): 90, 95, 133, (551,181,0): 91, 96, 134, (551,182,0): 91, 96, 134, (551,183,0): 91, 96, 134, (551,184,0): 89, 94, 134, (551,185,0): 89, 94, 134, (551,186,0): 89, 94, 136, (551,187,0): 90, 95, 137, (551,188,0): 90, 95, 137, (551,189,0): 91, 96, 138, (551,190,0): 91, 95, 140, (551,191,0): 90, 97, 143, (551,192,0): 84, 95, 141, (551,193,0): 83, 95, 143, (551,194,0): 84, 96, 144, (551,195,0): 84, 96, 144, (551,196,0): 85, 97, 145, (551,197,0): 84, 98, 145, (551,198,0): 85, 99, 146, (551,199,0): 83, 100, 146, (551,200,0): 86, 103, 149, (551,201,0): 86, 103, 149, (551,202,0): 85, 102, 148, (551,203,0): 84, 102, 148, (551,204,0): 83, 101, 147, (551,205,0): 83, 101, 147, (551,206,0): 83, 101, 147, (551,207,0): 82, 100, 146, (551,208,0): 89, 103, 152, (551,209,0): 89, 103, 152, (551,210,0): 90, 104, 153, (551,211,0): 91, 105, 154, (551,212,0): 92, 106, 155, (551,213,0): 93, 107, 156, (551,214,0): 93, 107, 156, (551,215,0): 94, 108, 157, (551,216,0): 93, 107, 156, (551,217,0): 95, 109, 158, (551,218,0): 97, 111, 160, (551,219,0): 100, 114, 161, (551,220,0): 101, 115, 164, (551,221,0): 102, 116, 163, (551,222,0): 102, 116, 165, (551,223,0): 102, 116, 165, (551,224,0): 98, 112, 161, (551,225,0): 97, 111, 160, (551,226,0): 96, 108, 156, (551,227,0): 94, 107, 151, (551,228,0): 94, 103, 146, (551,229,0): 92, 101, 140, (551,230,0): 91, 99, 135, (551,231,0): 92, 98, 130, (551,232,0): 75, 80, 109, (551,233,0): 74, 78, 103, (551,234,0): 72, 74, 95, (551,235,0): 67, 70, 89, (551,236,0): 65, 64, 80, (551,237,0): 60, 59, 73, (551,238,0): 56, 55, 69, (551,239,0): 55, 53, 64, (551,240,0): 56, 54, 59, (551,241,0): 56, 54, 57, (551,242,0): 56, 54, 57, (551,243,0): 55, 54, 59, (551,244,0): 55, 54, 60, (551,245,0): 54, 54, 62, (551,246,0): 52, 55, 64, (551,247,0): 51, 55, 66, (551,248,0): 51, 57, 69, (551,249,0): 53, 61, 74, (551,250,0): 58, 67, 82, (551,251,0): 64, 76, 92, (551,252,0): 72, 83, 101, (551,253,0): 79, 92, 111, (551,254,0): 85, 98, 117, (551,255,0): 86, 100, 127, (551,256,0): 104, 118, 163, (551,257,0): 107, 123, 175, (551,258,0): 114, 127, 180, (551,259,0): 116, 129, 182, (551,260,0): 115, 128, 181, (551,261,0): 114, 127, 180, (551,262,0): 115, 126, 182, (551,263,0): 116, 127, 183, (551,264,0): 118, 127, 184, (551,265,0): 116, 125, 182, (551,266,0): 116, 125, 184, (551,267,0): 120, 129, 188, (551,268,0): 126, 132, 192, (551,269,0): 128, 134, 194, (551,270,0): 126, 132, 192, (551,271,0): 123, 129, 189, (551,272,0): 119, 130, 186, (551,273,0): 118, 131, 184, (551,274,0): 119, 132, 185, (551,275,0): 120, 133, 186, (551,276,0): 118, 133, 188, (551,277,0): 117, 132, 187, (551,278,0): 116, 131, 186, (551,279,0): 115, 131, 183, (551,280,0): 119, 132, 185, (551,281,0): 121, 133, 185, (551,282,0): 125, 133, 182, (551,283,0): 127, 133, 181, (551,284,0): 129, 133, 180, (551,285,0): 131, 134, 177, (551,286,0): 133, 132, 174, (551,287,0): 133, 132, 174, (551,288,0): 129, 128, 170, (551,289,0): 130, 129, 169, (551,290,0): 132, 131, 173, (551,291,0): 134, 133, 173, (551,292,0): 133, 132, 174, (551,293,0): 131, 130, 170, (551,294,0): 130, 127, 170, (551,295,0): 128, 126, 166, (551,296,0): 135, 132, 175, (551,297,0): 135, 129, 173, (551,298,0): 133, 127, 171, (551,299,0): 135, 128, 172, (551,300,0): 136, 129, 173, (551,301,0): 135, 128, 172, (551,302,0): 130, 123, 167, (551,303,0): 130, 118, 158, (551,304,0): 127, 104, 133, (551,305,0): 124, 94, 118, (551,306,0): 112, 82, 106, (551,307,0): 103, 71, 94, (551,308,0): 96, 64, 87, (551,309,0): 92, 59, 80, (551,310,0): 89, 56, 73, (551,311,0): 87, 55, 70, (551,312,0): 78, 46, 59, (551,313,0): 73, 41, 52, (551,314,0): 66, 36, 44, (551,315,0): 61, 34, 39, (551,316,0): 59, 34, 37, (551,317,0): 55, 33, 35, (551,318,0): 52, 32, 31, (551,319,0): 49, 29, 28, (551,320,0): 51, 29, 32, (551,321,0): 53, 28, 32, (551,322,0): 54, 29, 33, (551,323,0): 55, 30, 34, (551,324,0): 56, 31, 35, (551,325,0): 56, 31, 35, (551,326,0): 57, 32, 36, (551,327,0): 57, 32, 36, (551,328,0): 56, 31, 35, (551,329,0): 55, 30, 34, (551,330,0): 54, 29, 33, (551,331,0): 52, 27, 31, (551,332,0): 49, 24, 28, (551,333,0): 46, 21, 25, (551,334,0): 44, 19, 23, (551,335,0): 41, 19, 22, (551,336,0): 39, 19, 21, (551,337,0): 37, 17, 19, (551,338,0): 33, 14, 16, (551,339,0): 33, 14, 16, (551,340,0): 34, 15, 19, (551,341,0): 33, 14, 18, (551,342,0): 31, 12, 18, (551,343,0): 26, 9, 15, (551,344,0): 26, 9, 15, (551,345,0): 25, 10, 15, (551,346,0): 25, 10, 17, (551,347,0): 24, 9, 16, (551,348,0): 22, 9, 18, (551,349,0): 21, 8, 17, (551,350,0): 21, 8, 17, (551,351,0): 21, 8, 17, (551,352,0): 18, 7, 15, (551,353,0): 18, 7, 15, (551,354,0): 18, 7, 15, (551,355,0): 18, 7, 15, (551,356,0): 18, 7, 15, (551,357,0): 18, 7, 15, (551,358,0): 18, 7, 15, (551,359,0): 18, 7, 15, (551,360,0): 16, 5, 13, (551,361,0): 16, 5, 13, (551,362,0): 17, 6, 14, (551,363,0): 18, 7, 15, (551,364,0): 18, 7, 15, (551,365,0): 19, 8, 16, (551,366,0): 20, 9, 17, (551,367,0): 20, 9, 17, (551,368,0): 17, 6, 14, (551,369,0): 17, 6, 14, (551,370,0): 17, 6, 14, (551,371,0): 17, 6, 14, (551,372,0): 17, 6, 14, (551,373,0): 17, 6, 14, (551,374,0): 17, 6, 14, (551,375,0): 17, 6, 14, (551,376,0): 20, 9, 17, (551,377,0): 20, 9, 17, (551,378,0): 20, 9, 17, (551,379,0): 20, 9, 17, (551,380,0): 20, 9, 17, (551,381,0): 20, 9, 17, (551,382,0): 20, 9, 17, (551,383,0): 20, 9, 17, (551,384,0): 18, 7, 15, (551,385,0): 18, 7, 15, (551,386,0): 18, 7, 15, (551,387,0): 18, 7, 15, (551,388,0): 18, 7, 13, (551,389,0): 18, 7, 13, (551,390,0): 18, 7, 11, (551,391,0): 18, 7, 11, (551,392,0): 18, 7, 11, (551,393,0): 18, 7, 11, (551,394,0): 19, 9, 10, (551,395,0): 19, 9, 10, (551,396,0): 20, 10, 9, (551,397,0): 20, 10, 9, (551,398,0): 21, 11, 10, (551,399,0): 22, 10, 10, (551,400,0): 28, 14, 14, (551,401,0): 28, 12, 13, (551,402,0): 28, 12, 13, (551,403,0): 27, 11, 12, (551,404,0): 26, 10, 11, (551,405,0): 25, 9, 10, (551,406,0): 25, 9, 10, (551,407,0): 25, 9, 10, (551,408,0): 28, 12, 13, (551,409,0): 28, 12, 13, (551,410,0): 28, 12, 13, (551,411,0): 28, 12, 13, (551,412,0): 28, 12, 13, (551,413,0): 28, 12, 13, (551,414,0): 28, 12, 13, (551,415,0): 28, 12, 13, (551,416,0): 29, 15, 15, (551,417,0): 29, 15, 15, (551,418,0): 29, 15, 15, (551,419,0): 29, 15, 15, (551,420,0): 29, 15, 15, (551,421,0): 29, 15, 15, (551,422,0): 29, 15, 15, (551,423,0): 29, 15, 15, (551,424,0): 32, 18, 18, (551,425,0): 32, 18, 18, (551,426,0): 32, 18, 18, (551,427,0): 32, 18, 18, (551,428,0): 31, 17, 17, (551,429,0): 31, 17, 17, (551,430,0): 31, 17, 17, (551,431,0): 31, 17, 17, (551,432,0): 28, 13, 16, (551,433,0): 27, 12, 15, (551,434,0): 26, 11, 14, (551,435,0): 26, 10, 13, (551,436,0): 24, 8, 11, (551,437,0): 23, 7, 10, (551,438,0): 24, 5, 9, (551,439,0): 23, 4, 8, (551,440,0): 28, 9, 13, (551,441,0): 29, 8, 13, (551,442,0): 29, 6, 12, (551,443,0): 29, 6, 12, (551,444,0): 31, 6, 12, (551,445,0): 31, 6, 12, (551,446,0): 30, 5, 11, (551,447,0): 30, 5, 9, (551,448,0): 27, 7, 8, (551,449,0): 27, 7, 8, (551,450,0): 27, 7, 8, (551,451,0): 27, 7, 8, (551,452,0): 27, 7, 8, (551,453,0): 27, 7, 8, (551,454,0): 27, 7, 8, (551,455,0): 27, 7, 8, (551,456,0): 25, 5, 6, (551,457,0): 26, 6, 7, (551,458,0): 26, 6, 7, (551,459,0): 26, 6, 7, (551,460,0): 27, 7, 8, (551,461,0): 28, 8, 9, (551,462,0): 28, 8, 9, (551,463,0): 28, 8, 9, (551,464,0): 31, 9, 11, (551,465,0): 31, 9, 11, (551,466,0): 31, 9, 11, (551,467,0): 31, 9, 11, (551,468,0): 31, 9, 11, (551,469,0): 31, 9, 11, (551,470,0): 31, 9, 11, (551,471,0): 31, 9, 11, (551,472,0): 35, 13, 15, (551,473,0): 35, 13, 15, (551,474,0): 34, 12, 14, (551,475,0): 35, 13, 15, (551,476,0): 36, 14, 16, (551,477,0): 38, 16, 18, (551,478,0): 39, 17, 19, (551,479,0): 43, 19, 19, (551,480,0): 45, 19, 18, (551,481,0): 46, 20, 19, (551,482,0): 47, 21, 22, (551,483,0): 48, 22, 23, (551,484,0): 46, 22, 22, (551,485,0): 45, 21, 21, (551,486,0): 43, 18, 21, (551,487,0): 39, 17, 19, (551,488,0): 41, 19, 22, (551,489,0): 41, 19, 22, (551,490,0): 39, 19, 21, (551,491,0): 39, 19, 21, (551,492,0): 38, 17, 22, (551,493,0): 37, 18, 22, (551,494,0): 37, 18, 22, (551,495,0): 37, 16, 21, (551,496,0): 36, 13, 19, (551,497,0): 38, 13, 19, (551,498,0): 38, 13, 19, (551,499,0): 38, 13, 19, (551,500,0): 39, 14, 20, (551,501,0): 39, 14, 20, (551,502,0): 39, 14, 20, (551,503,0): 39, 14, 20, (551,504,0): 39, 14, 20, (551,505,0): 37, 12, 18, (551,506,0): 34, 9, 15, (551,507,0): 32, 7, 13, (551,508,0): 32, 7, 13, (551,509,0): 34, 9, 15, (551,510,0): 37, 12, 18, (551,511,0): 37, 14, 20, (551,512,0): 34, 11, 19, (551,513,0): 33, 12, 19, (551,514,0): 32, 11, 18, (551,515,0): 31, 10, 17, (551,516,0): 31, 10, 17, (551,517,0): 30, 9, 16, (551,518,0): 29, 8, 15, (551,519,0): 29, 8, 15, (551,520,0): 27, 6, 13, (551,521,0): 28, 7, 14, (551,522,0): 29, 8, 15, (551,523,0): 30, 9, 16, (551,524,0): 30, 9, 16, (551,525,0): 29, 8, 15, (551,526,0): 28, 7, 14, (551,527,0): 27, 6, 15, (551,528,0): 22, 2, 13, (551,529,0): 23, 3, 15, (551,530,0): 22, 4, 16, (551,531,0): 23, 5, 17, (551,532,0): 22, 4, 16, (551,533,0): 21, 3, 15, (551,534,0): 18, 2, 13, (551,535,0): 16, 0, 11, (551,536,0): 17, 4, 14, (551,537,0): 16, 3, 13, (551,538,0): 15, 2, 12, (551,539,0): 14, 1, 11, (551,540,0): 12, 0, 10, (551,541,0): 12, 0, 10, (551,542,0): 13, 1, 11, (551,543,0): 14, 2, 12, (551,544,0): 12, 0, 10, (551,545,0): 12, 0, 10, (551,546,0): 12, 0, 10, (551,547,0): 12, 0, 10, (551,548,0): 12, 0, 10, (551,549,0): 12, 0, 10, (551,550,0): 12, 0, 10, (551,551,0): 12, 0, 10, (551,552,0): 12, 0, 10, (551,553,0): 13, 1, 11, (551,554,0): 14, 2, 12, (551,555,0): 15, 3, 13, (551,556,0): 16, 4, 14, (551,557,0): 17, 5, 15, (551,558,0): 17, 5, 15, (551,559,0): 17, 7, 16, (551,560,0): 14, 4, 12, (551,561,0): 13, 6, 13, (551,562,0): 15, 8, 15, (551,563,0): 17, 10, 17, (551,564,0): 19, 12, 19, (551,565,0): 19, 12, 19, (551,566,0): 19, 12, 19, (551,567,0): 19, 12, 19, (551,568,0): 18, 11, 18, (551,569,0): 18, 11, 18, (551,570,0): 18, 11, 18, (551,571,0): 18, 11, 18, (551,572,0): 18, 11, 18, (551,573,0): 18, 11, 18, (551,574,0): 18, 11, 18, (551,575,0): 18, 12, 16, (551,576,0): 25, 14, 20, (551,577,0): 26, 15, 19, (551,578,0): 26, 15, 19, (551,579,0): 27, 16, 20, (551,580,0): 27, 16, 20, (551,581,0): 28, 17, 21, (551,582,0): 28, 17, 21, (551,583,0): 28, 17, 21, (551,584,0): 27, 16, 20, (551,585,0): 27, 16, 20, (551,586,0): 26, 15, 19, (551,587,0): 26, 15, 19, (551,588,0): 25, 14, 18, (551,589,0): 25, 14, 18, (551,590,0): 24, 13, 17, (551,591,0): 23, 14, 17, (551,592,0): 24, 15, 20, (551,593,0): 22, 15, 22, (551,594,0): 22, 15, 22, (551,595,0): 21, 14, 21, (551,596,0): 21, 14, 21, (551,597,0): 20, 13, 20, (551,598,0): 20, 13, 20, (551,599,0): 19, 12, 19, (552,0,0): 36, 55, 69, (552,1,0): 37, 56, 70, (552,2,0): 37, 56, 70, (552,3,0): 38, 57, 71, (552,4,0): 38, 57, 71, (552,5,0): 39, 58, 72, (552,6,0): 39, 58, 72, (552,7,0): 39, 58, 72, (552,8,0): 38, 57, 71, (552,9,0): 38, 57, 71, (552,10,0): 39, 58, 72, (552,11,0): 39, 58, 72, (552,12,0): 40, 59, 73, (552,13,0): 40, 59, 73, (552,14,0): 41, 60, 74, (552,15,0): 41, 60, 74, (552,16,0): 42, 60, 74, (552,17,0): 42, 60, 74, (552,18,0): 43, 61, 75, (552,19,0): 43, 61, 75, (552,20,0): 44, 62, 76, (552,21,0): 44, 62, 76, (552,22,0): 45, 63, 77, (552,23,0): 45, 63, 77, (552,24,0): 44, 62, 76, (552,25,0): 44, 62, 76, (552,26,0): 44, 62, 76, (552,27,0): 45, 63, 77, (552,28,0): 45, 63, 77, (552,29,0): 46, 64, 78, (552,30,0): 46, 64, 78, (552,31,0): 46, 64, 76, (552,32,0): 48, 64, 77, (552,33,0): 48, 65, 75, (552,34,0): 50, 64, 75, (552,35,0): 51, 65, 76, (552,36,0): 52, 64, 76, (552,37,0): 53, 65, 77, (552,38,0): 55, 65, 75, (552,39,0): 55, 65, 75, (552,40,0): 61, 68, 78, (552,41,0): 61, 68, 78, (552,42,0): 64, 68, 77, (552,43,0): 65, 69, 78, (552,44,0): 67, 70, 79, (552,45,0): 68, 71, 80, (552,46,0): 71, 71, 81, (552,47,0): 71, 71, 81, (552,48,0): 65, 68, 77, (552,49,0): 65, 68, 77, (552,50,0): 66, 69, 78, (552,51,0): 66, 69, 78, (552,52,0): 67, 70, 79, (552,53,0): 67, 70, 79, (552,54,0): 68, 71, 80, (552,55,0): 68, 71, 80, (552,56,0): 68, 71, 80, (552,57,0): 68, 71, 80, (552,58,0): 69, 72, 81, (552,59,0): 69, 72, 81, (552,60,0): 70, 73, 82, (552,61,0): 70, 73, 82, (552,62,0): 71, 74, 83, (552,63,0): 71, 74, 83, (552,64,0): 74, 72, 86, (552,65,0): 74, 72, 86, (552,66,0): 75, 73, 87, (552,67,0): 75, 73, 87, (552,68,0): 76, 74, 88, (552,69,0): 76, 74, 88, (552,70,0): 77, 75, 89, (552,71,0): 77, 75, 89, (552,72,0): 77, 75, 89, (552,73,0): 78, 76, 90, (552,74,0): 78, 76, 90, (552,75,0): 79, 77, 91, (552,76,0): 80, 78, 92, (552,77,0): 81, 79, 93, (552,78,0): 82, 80, 94, (552,79,0): 83, 81, 94, (552,80,0): 85, 79, 93, (552,81,0): 86, 80, 92, (552,82,0): 88, 82, 94, (552,83,0): 89, 83, 95, (552,84,0): 87, 84, 95, (552,85,0): 86, 83, 94, (552,86,0): 83, 81, 94, (552,87,0): 82, 80, 93, (552,88,0): 82, 80, 94, (552,89,0): 79, 77, 91, (552,90,0): 77, 76, 92, (552,91,0): 80, 79, 95, (552,92,0): 82, 84, 99, (552,93,0): 85, 87, 102, (552,94,0): 83, 85, 100, (552,95,0): 81, 83, 98, (552,96,0): 82, 85, 102, (552,97,0): 82, 85, 102, (552,98,0): 82, 85, 104, (552,99,0): 81, 84, 103, (552,100,0): 80, 83, 102, (552,101,0): 79, 82, 101, (552,102,0): 79, 81, 102, (552,103,0): 78, 80, 101, (552,104,0): 82, 84, 107, (552,105,0): 82, 84, 107, (552,106,0): 81, 83, 106, (552,107,0): 81, 83, 106, (552,108,0): 80, 82, 107, (552,109,0): 80, 82, 107, (552,110,0): 79, 81, 106, (552,111,0): 77, 81, 106, (552,112,0): 75, 79, 104, (552,113,0): 74, 80, 104, (552,114,0): 75, 81, 105, (552,115,0): 75, 81, 105, (552,116,0): 76, 82, 108, (552,117,0): 77, 83, 109, (552,118,0): 78, 84, 110, (552,119,0): 78, 84, 110, (552,120,0): 75, 80, 109, (552,121,0): 76, 81, 110, (552,122,0): 77, 82, 112, (552,123,0): 78, 83, 113, (552,124,0): 80, 85, 115, (552,125,0): 81, 86, 116, (552,126,0): 82, 87, 119, (552,127,0): 82, 87, 117, (552,128,0): 80, 85, 114, (552,129,0): 81, 87, 113, (552,130,0): 81, 87, 113, (552,131,0): 82, 88, 114, (552,132,0): 82, 88, 114, (552,133,0): 83, 89, 115, (552,134,0): 83, 89, 115, (552,135,0): 83, 89, 115, (552,136,0): 81, 87, 113, (552,137,0): 81, 87, 113, (552,138,0): 82, 88, 114, (552,139,0): 83, 89, 115, (552,140,0): 83, 89, 115, (552,141,0): 82, 88, 114, (552,142,0): 81, 87, 113, (552,143,0): 81, 86, 115, (552,144,0): 79, 82, 113, (552,145,0): 79, 82, 113, (552,146,0): 78, 83, 113, (552,147,0): 78, 83, 113, (552,148,0): 78, 83, 113, (552,149,0): 78, 83, 113, (552,150,0): 77, 83, 115, (552,151,0): 77, 83, 115, (552,152,0): 76, 85, 118, (552,153,0): 76, 85, 118, (552,154,0): 77, 85, 121, (552,155,0): 77, 85, 121, (552,156,0): 77, 87, 122, (552,157,0): 77, 87, 122, (552,158,0): 78, 88, 123, (552,159,0): 78, 88, 123, (552,160,0): 79, 87, 124, (552,161,0): 81, 86, 124, (552,162,0): 81, 86, 124, (552,163,0): 81, 86, 124, (552,164,0): 81, 86, 124, (552,165,0): 81, 86, 124, (552,166,0): 81, 86, 124, (552,167,0): 81, 86, 124, (552,168,0): 84, 89, 127, (552,169,0): 84, 89, 127, (552,170,0): 84, 89, 127, (552,171,0): 84, 89, 127, (552,172,0): 84, 89, 127, (552,173,0): 84, 89, 127, (552,174,0): 84, 89, 127, (552,175,0): 84, 89, 127, (552,176,0): 85, 93, 130, (552,177,0): 85, 93, 130, (552,178,0): 85, 93, 130, (552,179,0): 86, 94, 131, (552,180,0): 87, 95, 132, (552,181,0): 87, 95, 132, (552,182,0): 87, 95, 134, (552,183,0): 88, 96, 135, (552,184,0): 88, 95, 137, (552,185,0): 88, 95, 137, (552,186,0): 88, 95, 139, (552,187,0): 88, 95, 139, (552,188,0): 88, 95, 139, (552,189,0): 88, 95, 139, (552,190,0): 88, 95, 139, (552,191,0): 87, 95, 141, (552,192,0): 84, 96, 144, (552,193,0): 83, 97, 146, (552,194,0): 83, 97, 146, (552,195,0): 83, 97, 146, (552,196,0): 83, 97, 146, (552,197,0): 81, 97, 146, (552,198,0): 81, 97, 146, (552,199,0): 81, 97, 146, (552,200,0): 81, 97, 146, (552,201,0): 80, 98, 146, (552,202,0): 81, 99, 147, (552,203,0): 79, 100, 147, (552,204,0): 80, 101, 148, (552,205,0): 80, 101, 148, (552,206,0): 81, 102, 149, (552,207,0): 81, 102, 149, (552,208,0): 83, 101, 149, (552,209,0): 84, 100, 149, (552,210,0): 85, 101, 150, (552,211,0): 86, 102, 151, (552,212,0): 87, 103, 152, (552,213,0): 88, 104, 153, (552,214,0): 89, 105, 154, (552,215,0): 90, 106, 155, (552,216,0): 89, 105, 154, (552,217,0): 90, 106, 155, (552,218,0): 92, 108, 157, (552,219,0): 94, 110, 159, (552,220,0): 97, 113, 164, (552,221,0): 99, 115, 164, (552,222,0): 101, 117, 168, (552,223,0): 102, 118, 169, (552,224,0): 102, 118, 170, (552,225,0): 102, 118, 170, (552,226,0): 100, 116, 167, (552,227,0): 98, 114, 163, (552,228,0): 99, 111, 159, (552,229,0): 97, 110, 154, (552,230,0): 97, 109, 151, (552,231,0): 98, 107, 146, (552,232,0): 88, 96, 132, (552,233,0): 86, 92, 124, (552,234,0): 80, 85, 114, (552,235,0): 73, 79, 103, (552,236,0): 69, 71, 92, (552,237,0): 65, 68, 87, (552,238,0): 64, 65, 83, (552,239,0): 63, 65, 78, (552,240,0): 61, 62, 67, (552,241,0): 59, 58, 63, (552,242,0): 56, 55, 61, (552,243,0): 55, 55, 63, (552,244,0): 56, 59, 68, (552,245,0): 57, 61, 72, (552,246,0): 56, 62, 76, (552,247,0): 55, 62, 78, (552,248,0): 61, 69, 88, (552,249,0): 62, 73, 95, (552,250,0): 67, 79, 103, (552,251,0): 74, 88, 114, (552,252,0): 84, 98, 127, (552,253,0): 93, 108, 137, (552,254,0): 101, 116, 147, (552,255,0): 104, 119, 158, (552,256,0): 113, 130, 182, (552,257,0): 113, 129, 188, (552,258,0): 113, 128, 187, (552,259,0): 113, 128, 187, (552,260,0): 112, 127, 186, (552,261,0): 112, 127, 186, (552,262,0): 113, 125, 183, (552,263,0): 113, 125, 183, (552,264,0): 114, 124, 183, (552,265,0): 115, 125, 184, (552,266,0): 115, 126, 182, (552,267,0): 116, 127, 183, (552,268,0): 118, 127, 184, (552,269,0): 119, 128, 185, (552,270,0): 119, 128, 185, (552,271,0): 119, 130, 186, (552,272,0): 118, 129, 185, (552,273,0): 117, 130, 185, (552,274,0): 117, 130, 185, (552,275,0): 115, 130, 185, (552,276,0): 115, 130, 187, (552,277,0): 115, 130, 187, (552,278,0): 115, 130, 187, (552,279,0): 115, 130, 185, (552,280,0): 118, 131, 186, (552,281,0): 119, 130, 184, (552,282,0): 122, 129, 183, (552,283,0): 124, 130, 180, (552,284,0): 126, 130, 178, (552,285,0): 128, 130, 178, (552,286,0): 131, 129, 176, (552,287,0): 131, 130, 174, (552,288,0): 131, 130, 174, (552,289,0): 131, 130, 172, (552,290,0): 131, 128, 173, (552,291,0): 131, 128, 171, (552,292,0): 130, 127, 172, (552,293,0): 130, 127, 170, (552,294,0): 131, 125, 171, (552,295,0): 131, 125, 169, (552,296,0): 134, 128, 174, (552,297,0): 133, 126, 170, (552,298,0): 132, 125, 169, (552,299,0): 133, 124, 169, (552,300,0): 134, 125, 170, (552,301,0): 132, 123, 168, (552,302,0): 128, 119, 164, (552,303,0): 129, 114, 153, (552,304,0): 124, 99, 128, (552,305,0): 122, 90, 113, (552,306,0): 110, 78, 101, (552,307,0): 101, 67, 91, (552,308,0): 94, 61, 82, (552,309,0): 89, 54, 74, (552,310,0): 84, 50, 67, (552,311,0): 81, 47, 63, (552,312,0): 71, 37, 51, (552,313,0): 68, 36, 47, (552,314,0): 63, 33, 41, (552,315,0): 58, 31, 36, (552,316,0): 55, 30, 33, (552,317,0): 51, 29, 31, (552,318,0): 50, 30, 29, (552,319,0): 51, 31, 30, (552,320,0): 51, 29, 32, (552,321,0): 53, 31, 34, (552,322,0): 55, 33, 36, (552,323,0): 57, 35, 38, (552,324,0): 58, 36, 39, (552,325,0): 58, 36, 39, (552,326,0): 57, 35, 38, (552,327,0): 56, 34, 37, (552,328,0): 55, 33, 36, (552,329,0): 54, 32, 35, (552,330,0): 51, 29, 32, (552,331,0): 47, 25, 28, (552,332,0): 43, 21, 24, (552,333,0): 40, 18, 21, (552,334,0): 37, 15, 18, (552,335,0): 35, 13, 16, (552,336,0): 37, 17, 19, (552,337,0): 36, 16, 18, (552,338,0): 36, 16, 18, (552,339,0): 35, 15, 17, (552,340,0): 33, 12, 17, (552,341,0): 31, 12, 16, (552,342,0): 31, 12, 18, (552,343,0): 28, 11, 17, (552,344,0): 26, 9, 15, (552,345,0): 26, 9, 15, (552,346,0): 24, 9, 16, (552,347,0): 24, 9, 16, (552,348,0): 24, 8, 18, (552,349,0): 24, 8, 18, (552,350,0): 23, 7, 17, (552,351,0): 21, 8, 17, (552,352,0): 19, 8, 16, (552,353,0): 19, 8, 16, (552,354,0): 19, 8, 16, (552,355,0): 19, 8, 16, (552,356,0): 19, 8, 16, (552,357,0): 19, 8, 16, (552,358,0): 19, 8, 16, (552,359,0): 19, 8, 16, (552,360,0): 16, 5, 13, (552,361,0): 16, 5, 13, (552,362,0): 16, 5, 13, (552,363,0): 16, 5, 13, (552,364,0): 16, 5, 13, (552,365,0): 16, 5, 13, (552,366,0): 16, 5, 13, (552,367,0): 16, 5, 13, (552,368,0): 18, 7, 15, (552,369,0): 17, 6, 14, (552,370,0): 16, 5, 13, (552,371,0): 15, 4, 12, (552,372,0): 15, 4, 12, (552,373,0): 16, 5, 13, (552,374,0): 17, 6, 14, (552,375,0): 18, 7, 15, (552,376,0): 16, 5, 13, (552,377,0): 17, 6, 14, (552,378,0): 17, 6, 14, (552,379,0): 18, 7, 15, (552,380,0): 18, 7, 15, (552,381,0): 19, 8, 16, (552,382,0): 19, 8, 16, (552,383,0): 19, 8, 16, (552,384,0): 17, 6, 14, (552,385,0): 17, 6, 14, (552,386,0): 17, 6, 14, (552,387,0): 17, 6, 14, (552,388,0): 17, 6, 12, (552,389,0): 17, 6, 12, (552,390,0): 17, 6, 10, (552,391,0): 17, 6, 10, (552,392,0): 18, 7, 11, (552,393,0): 18, 7, 11, (552,394,0): 19, 9, 10, (552,395,0): 19, 9, 10, (552,396,0): 20, 10, 9, (552,397,0): 20, 10, 9, (552,398,0): 21, 11, 10, (552,399,0): 22, 10, 10, (552,400,0): 23, 9, 9, (552,401,0): 24, 8, 9, (552,402,0): 24, 8, 9, (552,403,0): 25, 9, 10, (552,404,0): 25, 9, 10, (552,405,0): 26, 10, 11, (552,406,0): 26, 10, 11, (552,407,0): 26, 10, 11, (552,408,0): 27, 11, 12, (552,409,0): 27, 11, 12, (552,410,0): 27, 11, 12, (552,411,0): 28, 12, 13, (552,412,0): 28, 12, 13, (552,413,0): 29, 13, 14, (552,414,0): 29, 13, 14, (552,415,0): 29, 13, 14, (552,416,0): 31, 17, 17, (552,417,0): 31, 17, 17, (552,418,0): 31, 17, 17, (552,419,0): 31, 17, 17, (552,420,0): 31, 17, 17, (552,421,0): 31, 17, 17, (552,422,0): 31, 17, 17, (552,423,0): 31, 17, 17, (552,424,0): 32, 18, 18, (552,425,0): 32, 18, 18, (552,426,0): 32, 18, 18, (552,427,0): 32, 18, 18, (552,428,0): 32, 18, 18, (552,429,0): 32, 18, 18, (552,430,0): 32, 18, 18, (552,431,0): 32, 18, 18, (552,432,0): 31, 15, 16, (552,433,0): 28, 12, 13, (552,434,0): 25, 9, 10, (552,435,0): 27, 8, 10, (552,436,0): 27, 8, 10, (552,437,0): 27, 8, 10, (552,438,0): 25, 5, 7, (552,439,0): 22, 2, 4, (552,440,0): 29, 9, 11, (552,441,0): 30, 8, 11, (552,442,0): 29, 7, 10, (552,443,0): 28, 6, 9, (552,444,0): 27, 5, 8, (552,445,0): 26, 4, 7, (552,446,0): 25, 3, 6, (552,447,0): 25, 3, 6, (552,448,0): 28, 8, 9, (552,449,0): 27, 9, 9, (552,450,0): 26, 8, 8, (552,451,0): 26, 8, 8, (552,452,0): 25, 7, 7, (552,453,0): 25, 7, 7, (552,454,0): 24, 6, 6, (552,455,0): 24, 6, 6, (552,456,0): 24, 6, 6, (552,457,0): 24, 6, 6, (552,458,0): 25, 7, 7, (552,459,0): 25, 7, 7, (552,460,0): 26, 8, 8, (552,461,0): 26, 8, 8, (552,462,0): 27, 9, 9, (552,463,0): 28, 8, 9, (552,464,0): 30, 8, 10, (552,465,0): 30, 8, 10, (552,466,0): 31, 9, 11, (552,467,0): 31, 9, 11, (552,468,0): 32, 10, 12, (552,469,0): 33, 11, 13, (552,470,0): 34, 12, 14, (552,471,0): 34, 12, 14, (552,472,0): 35, 13, 15, (552,473,0): 35, 13, 15, (552,474,0): 36, 14, 16, (552,475,0): 37, 15, 17, (552,476,0): 38, 16, 18, (552,477,0): 39, 17, 19, (552,478,0): 40, 18, 20, (552,479,0): 43, 19, 19, (552,480,0): 43, 17, 16, (552,481,0): 46, 18, 15, (552,482,0): 46, 20, 19, (552,483,0): 47, 21, 20, (552,484,0): 49, 23, 22, (552,485,0): 48, 24, 22, (552,486,0): 48, 24, 24, (552,487,0): 47, 23, 23, (552,488,0): 38, 16, 18, (552,489,0): 39, 17, 19, (552,490,0): 41, 19, 21, (552,491,0): 41, 21, 22, (552,492,0): 41, 21, 23, (552,493,0): 41, 21, 23, (552,494,0): 40, 20, 22, (552,495,0): 40, 20, 22, (552,496,0): 38, 16, 19, (552,497,0): 40, 15, 19, (552,498,0): 41, 16, 20, (552,499,0): 40, 15, 19, (552,500,0): 39, 14, 18, (552,501,0): 38, 13, 17, (552,502,0): 36, 11, 15, (552,503,0): 35, 10, 14, (552,504,0): 36, 11, 15, (552,505,0): 36, 11, 15, (552,506,0): 36, 11, 15, (552,507,0): 36, 11, 15, (552,508,0): 36, 11, 15, (552,509,0): 36, 11, 15, (552,510,0): 36, 11, 15, (552,511,0): 34, 11, 17, (552,512,0): 33, 10, 18, (552,513,0): 31, 10, 17, (552,514,0): 30, 9, 16, (552,515,0): 29, 8, 15, (552,516,0): 28, 7, 14, (552,517,0): 28, 7, 14, (552,518,0): 29, 8, 15, (552,519,0): 30, 9, 16, (552,520,0): 27, 6, 13, (552,521,0): 27, 6, 13, (552,522,0): 27, 6, 13, (552,523,0): 28, 7, 14, (552,524,0): 28, 7, 14, (552,525,0): 28, 7, 14, (552,526,0): 29, 8, 15, (552,527,0): 29, 8, 17, (552,528,0): 20, 0, 11, (552,529,0): 19, 1, 13, (552,530,0): 21, 3, 15, (552,531,0): 22, 4, 16, (552,532,0): 21, 5, 16, (552,533,0): 20, 4, 15, (552,534,0): 19, 3, 14, (552,535,0): 19, 3, 14, (552,536,0): 17, 4, 14, (552,537,0): 15, 2, 12, (552,538,0): 13, 1, 11, (552,539,0): 11, 0, 9, (552,540,0): 11, 0, 9, (552,541,0): 13, 1, 11, (552,542,0): 13, 3, 12, (552,543,0): 15, 5, 14, (552,544,0): 10, 0, 8, (552,545,0): 10, 0, 8, (552,546,0): 11, 0, 9, (552,547,0): 12, 0, 10, (552,548,0): 12, 0, 10, (552,549,0): 13, 1, 11, (552,550,0): 14, 2, 12, (552,551,0): 14, 2, 12, (552,552,0): 14, 2, 12, (552,553,0): 14, 2, 12, (552,554,0): 14, 2, 12, (552,555,0): 14, 2, 12, (552,556,0): 14, 2, 12, (552,557,0): 14, 2, 12, (552,558,0): 14, 2, 12, (552,559,0): 13, 3, 12, (552,560,0): 21, 11, 19, (552,561,0): 17, 10, 17, (552,562,0): 15, 8, 15, (552,563,0): 13, 6, 13, (552,564,0): 12, 5, 12, (552,565,0): 13, 6, 13, (552,566,0): 14, 7, 14, (552,567,0): 15, 8, 15, (552,568,0): 20, 13, 20, (552,569,0): 20, 13, 20, (552,570,0): 22, 15, 22, (552,571,0): 22, 15, 22, (552,572,0): 22, 15, 22, (552,573,0): 22, 15, 22, (552,574,0): 20, 13, 20, (552,575,0): 20, 14, 18, (552,576,0): 26, 15, 21, (552,577,0): 26, 15, 19, (552,578,0): 26, 15, 19, (552,579,0): 27, 16, 20, (552,580,0): 27, 16, 20, (552,581,0): 27, 16, 20, (552,582,0): 27, 16, 20, (552,583,0): 27, 16, 20, (552,584,0): 27, 16, 20, (552,585,0): 27, 16, 20, (552,586,0): 26, 15, 19, (552,587,0): 26, 15, 19, (552,588,0): 25, 14, 18, (552,589,0): 25, 14, 18, (552,590,0): 24, 13, 17, (552,591,0): 23, 14, 17, (552,592,0): 22, 13, 18, (552,593,0): 21, 15, 19, (552,594,0): 22, 16, 20, (552,595,0): 22, 16, 20, (552,596,0): 22, 16, 20, (552,597,0): 22, 16, 20, (552,598,0): 21, 15, 19, (552,599,0): 20, 14, 18, (553,0,0): 36, 55, 69, (553,1,0): 36, 55, 69, (553,2,0): 36, 55, 69, (553,3,0): 37, 56, 70, (553,4,0): 37, 56, 70, (553,5,0): 38, 57, 71, (553,6,0): 38, 57, 71, (553,7,0): 38, 57, 71, (553,8,0): 38, 57, 71, (553,9,0): 38, 57, 71, (553,10,0): 39, 58, 72, (553,11,0): 39, 58, 72, (553,12,0): 40, 59, 73, (553,13,0): 40, 59, 73, (553,14,0): 41, 60, 74, (553,15,0): 41, 60, 74, (553,16,0): 42, 60, 74, (553,17,0): 42, 60, 74, (553,18,0): 43, 61, 75, (553,19,0): 43, 61, 75, (553,20,0): 44, 62, 76, (553,21,0): 44, 62, 76, (553,22,0): 45, 63, 77, (553,23,0): 45, 63, 77, (553,24,0): 44, 62, 76, (553,25,0): 44, 62, 76, (553,26,0): 44, 62, 76, (553,27,0): 45, 63, 77, (553,28,0): 45, 63, 77, (553,29,0): 46, 64, 78, (553,30,0): 46, 64, 78, (553,31,0): 46, 64, 76, (553,32,0): 48, 64, 77, (553,33,0): 48, 65, 75, (553,34,0): 50, 64, 75, (553,35,0): 51, 65, 76, (553,36,0): 52, 64, 76, (553,37,0): 53, 65, 77, (553,38,0): 55, 65, 75, (553,39,0): 55, 65, 75, (553,40,0): 60, 67, 77, (553,41,0): 61, 68, 78, (553,42,0): 64, 68, 77, (553,43,0): 65, 69, 78, (553,44,0): 67, 70, 79, (553,45,0): 68, 71, 80, (553,46,0): 71, 71, 81, (553,47,0): 71, 71, 81, (553,48,0): 65, 68, 77, (553,49,0): 65, 68, 77, (553,50,0): 66, 69, 78, (553,51,0): 66, 69, 78, (553,52,0): 67, 70, 79, (553,53,0): 67, 70, 79, (553,54,0): 68, 71, 80, (553,55,0): 68, 71, 80, (553,56,0): 68, 71, 80, (553,57,0): 68, 71, 80, (553,58,0): 69, 72, 81, (553,59,0): 69, 72, 81, (553,60,0): 70, 73, 82, (553,61,0): 70, 73, 82, (553,62,0): 71, 74, 83, (553,63,0): 71, 74, 83, (553,64,0): 74, 72, 86, (553,65,0): 74, 72, 86, (553,66,0): 74, 72, 86, (553,67,0): 75, 73, 87, (553,68,0): 75, 73, 87, (553,69,0): 76, 74, 88, (553,70,0): 76, 74, 88, (553,71,0): 77, 75, 89, (553,72,0): 77, 75, 89, (553,73,0): 77, 75, 89, (553,74,0): 78, 76, 90, (553,75,0): 79, 77, 91, (553,76,0): 80, 78, 92, (553,77,0): 81, 79, 93, (553,78,0): 82, 80, 94, (553,79,0): 82, 80, 93, (553,80,0): 85, 79, 93, (553,81,0): 86, 80, 92, (553,82,0): 88, 82, 94, (553,83,0): 89, 83, 95, (553,84,0): 87, 84, 95, (553,85,0): 86, 83, 94, (553,86,0): 83, 81, 94, (553,87,0): 82, 80, 93, (553,88,0): 81, 79, 93, (553,89,0): 80, 78, 92, (553,90,0): 78, 77, 93, (553,91,0): 80, 79, 95, (553,92,0): 82, 84, 99, (553,93,0): 84, 86, 101, (553,94,0): 83, 85, 100, (553,95,0): 81, 83, 98, (553,96,0): 81, 84, 101, (553,97,0): 81, 84, 101, (553,98,0): 81, 84, 103, (553,99,0): 80, 83, 102, (553,100,0): 80, 83, 102, (553,101,0): 80, 83, 102, (553,102,0): 79, 81, 102, (553,103,0): 79, 81, 102, (553,104,0): 82, 84, 107, (553,105,0): 81, 83, 106, (553,106,0): 81, 83, 106, (553,107,0): 80, 82, 105, (553,108,0): 80, 82, 107, (553,109,0): 79, 81, 106, (553,110,0): 79, 81, 106, (553,111,0): 77, 81, 106, (553,112,0): 75, 79, 104, (553,113,0): 74, 80, 104, (553,114,0): 75, 81, 105, (553,115,0): 75, 81, 105, (553,116,0): 76, 82, 108, (553,117,0): 77, 83, 109, (553,118,0): 77, 83, 109, (553,119,0): 78, 84, 110, (553,120,0): 75, 80, 109, (553,121,0): 76, 81, 110, (553,122,0): 77, 82, 112, (553,123,0): 78, 83, 113, (553,124,0): 79, 84, 114, (553,125,0): 81, 86, 116, (553,126,0): 81, 86, 118, (553,127,0): 82, 87, 117, (553,128,0): 80, 85, 114, (553,129,0): 80, 86, 112, (553,130,0): 81, 87, 113, (553,131,0): 81, 87, 113, (553,132,0): 82, 88, 114, (553,133,0): 82, 88, 114, (553,134,0): 83, 89, 115, (553,135,0): 83, 89, 115, (553,136,0): 80, 86, 112, (553,137,0): 81, 87, 113, (553,138,0): 82, 88, 114, (553,139,0): 83, 89, 115, (553,140,0): 83, 89, 115, (553,141,0): 82, 88, 114, (553,142,0): 81, 87, 113, (553,143,0): 80, 86, 112, (553,144,0): 79, 83, 112, (553,145,0): 79, 82, 113, (553,146,0): 79, 82, 113, (553,147,0): 78, 83, 113, (553,148,0): 78, 83, 113, (553,149,0): 78, 83, 113, (553,150,0): 78, 83, 115, (553,151,0): 77, 83, 115, (553,152,0): 78, 84, 118, (553,153,0): 77, 86, 119, (553,154,0): 77, 85, 121, (553,155,0): 78, 86, 122, (553,156,0): 78, 86, 122, (553,157,0): 78, 88, 123, (553,158,0): 78, 88, 123, (553,159,0): 79, 87, 123, (553,160,0): 81, 86, 124, (553,161,0): 81, 86, 124, (553,162,0): 81, 86, 124, (553,163,0): 81, 86, 124, (553,164,0): 81, 86, 124, (553,165,0): 81, 86, 124, (553,166,0): 81, 86, 124, (553,167,0): 81, 86, 124, (553,168,0): 84, 89, 127, (553,169,0): 84, 89, 127, (553,170,0): 84, 89, 127, (553,171,0): 84, 89, 127, (553,172,0): 84, 89, 127, (553,173,0): 84, 89, 127, (553,174,0): 84, 89, 127, (553,175,0): 84, 89, 127, (553,176,0): 84, 92, 129, (553,177,0): 84, 94, 130, (553,178,0): 85, 93, 130, (553,179,0): 85, 95, 131, (553,180,0): 86, 94, 131, (553,181,0): 86, 96, 132, (553,182,0): 87, 95, 134, (553,183,0): 86, 95, 134, (553,184,0): 87, 94, 136, (553,185,0): 86, 95, 136, (553,186,0): 87, 94, 138, (553,187,0): 86, 95, 138, (553,188,0): 87, 94, 138, (553,189,0): 86, 95, 138, (553,190,0): 87, 94, 138, (553,191,0): 86, 94, 140, (553,192,0): 84, 96, 144, (553,193,0): 83, 97, 146, (553,194,0): 83, 97, 146, (553,195,0): 83, 97, 146, (553,196,0): 81, 97, 146, (553,197,0): 81, 97, 146, (553,198,0): 81, 97, 146, (553,199,0): 81, 97, 146, (553,200,0): 80, 98, 146, (553,201,0): 80, 98, 146, (553,202,0): 78, 99, 146, (553,203,0): 79, 100, 147, (553,204,0): 79, 100, 147, (553,205,0): 80, 101, 148, (553,206,0): 79, 101, 148, (553,207,0): 80, 102, 149, (553,208,0): 81, 102, 149, (553,209,0): 81, 102, 149, (553,210,0): 84, 102, 150, (553,211,0): 83, 104, 151, (553,212,0): 86, 104, 152, (553,213,0): 85, 106, 153, (553,214,0): 88, 106, 154, (553,215,0): 86, 107, 154, (553,216,0): 87, 105, 153, (553,217,0): 86, 107, 154, (553,218,0): 90, 108, 158, (553,219,0): 90, 110, 160, (553,220,0): 95, 113, 163, (553,221,0): 95, 115, 165, (553,222,0): 98, 116, 166, (553,223,0): 97, 117, 168, (553,224,0): 99, 116, 170, (553,225,0): 97, 117, 170, (553,226,0): 99, 116, 170, (553,227,0): 99, 116, 168, (553,228,0): 99, 115, 166, (553,229,0): 101, 115, 164, (553,230,0): 102, 114, 162, (553,231,0): 102, 115, 160, (553,232,0): 96, 105, 148, (553,233,0): 93, 102, 141, (553,234,0): 88, 97, 130, (553,235,0): 81, 90, 119, (553,236,0): 76, 83, 111, (553,237,0): 71, 77, 101, (553,238,0): 67, 73, 97, (553,239,0): 66, 71, 90, (553,240,0): 66, 70, 81, (553,241,0): 63, 66, 75, (553,242,0): 60, 62, 74, (553,243,0): 59, 63, 75, (553,244,0): 61, 67, 81, (553,245,0): 64, 71, 87, (553,246,0): 65, 73, 94, (553,247,0): 64, 75, 97, (553,248,0): 76, 87, 115, (553,249,0): 78, 92, 121, (553,250,0): 84, 99, 132, (553,251,0): 91, 107, 141, (553,252,0): 97, 115, 153, (553,253,0): 104, 122, 162, (553,254,0): 107, 126, 168, (553,255,0): 109, 127, 173, (553,256,0): 111, 130, 188, (553,257,0): 110, 128, 192, (553,258,0): 110, 128, 192, (553,259,0): 111, 127, 189, (553,260,0): 111, 127, 189, (553,261,0): 110, 126, 186, (553,262,0): 110, 126, 186, (553,263,0): 111, 126, 185, (553,264,0): 111, 126, 183, (553,265,0): 113, 125, 183, (553,266,0): 114, 127, 182, (553,267,0): 114, 127, 182, (553,268,0): 115, 128, 181, (553,269,0): 117, 128, 182, (553,270,0): 117, 128, 182, (553,271,0): 118, 129, 183, (553,272,0): 114, 127, 180, (553,273,0): 114, 127, 182, (553,274,0): 112, 127, 182, (553,275,0): 112, 127, 182, (553,276,0): 112, 127, 184, (553,277,0): 112, 127, 184, (553,278,0): 112, 127, 184, (553,279,0): 112, 127, 184, (553,280,0): 115, 128, 183, (553,281,0): 116, 127, 181, (553,282,0): 117, 126, 181, (553,283,0): 121, 127, 179, (553,284,0): 123, 126, 177, (553,285,0): 125, 127, 176, (553,286,0): 128, 126, 175, (553,287,0): 129, 127, 174, (553,288,0): 130, 128, 175, (553,289,0): 130, 129, 173, (553,290,0): 131, 128, 173, (553,291,0): 130, 127, 172, (553,292,0): 130, 127, 172, (553,293,0): 131, 125, 171, (553,294,0): 131, 125, 171, (553,295,0): 132, 124, 171, (553,296,0): 132, 124, 171, (553,297,0): 131, 122, 167, (553,298,0): 132, 120, 166, (553,299,0): 133, 121, 167, (553,300,0): 134, 121, 167, (553,301,0): 132, 119, 163, (553,302,0): 127, 114, 160, (553,303,0): 127, 109, 149, (553,304,0): 123, 97, 124, (553,305,0): 120, 88, 109, (553,306,0): 109, 75, 99, (553,307,0): 99, 66, 87, (553,308,0): 92, 57, 77, (553,309,0): 87, 53, 70, (553,310,0): 82, 48, 64, (553,311,0): 78, 44, 58, (553,312,0): 69, 36, 47, (553,313,0): 66, 35, 43, (553,314,0): 62, 32, 40, (553,315,0): 58, 31, 36, (553,316,0): 55, 30, 33, (553,317,0): 52, 30, 32, (553,318,0): 51, 31, 30, (553,319,0): 51, 31, 32, (553,320,0): 52, 30, 33, (553,321,0): 53, 31, 34, (553,322,0): 54, 32, 35, (553,323,0): 55, 33, 36, (553,324,0): 56, 34, 37, (553,325,0): 56, 34, 37, (553,326,0): 56, 34, 37, (553,327,0): 56, 34, 37, (553,328,0): 54, 32, 35, (553,329,0): 53, 31, 34, (553,330,0): 50, 28, 31, (553,331,0): 47, 25, 28, (553,332,0): 43, 21, 24, (553,333,0): 40, 18, 21, (553,334,0): 37, 15, 18, (553,335,0): 36, 14, 17, (553,336,0): 37, 17, 19, (553,337,0): 36, 16, 18, (553,338,0): 36, 16, 18, (553,339,0): 35, 15, 17, (553,340,0): 33, 12, 17, (553,341,0): 32, 11, 16, (553,342,0): 31, 12, 18, (553,343,0): 30, 11, 17, (553,344,0): 28, 9, 15, (553,345,0): 26, 9, 15, (553,346,0): 26, 9, 17, (553,347,0): 24, 9, 16, (553,348,0): 24, 8, 18, (553,349,0): 23, 7, 17, (553,350,0): 23, 7, 17, (553,351,0): 21, 8, 17, (553,352,0): 19, 6, 15, (553,353,0): 18, 7, 15, (553,354,0): 18, 7, 15, (553,355,0): 18, 7, 15, (553,356,0): 18, 7, 15, (553,357,0): 18, 7, 15, (553,358,0): 18, 7, 15, (553,359,0): 18, 7, 15, (553,360,0): 16, 5, 13, (553,361,0): 16, 5, 13, (553,362,0): 16, 5, 13, (553,363,0): 16, 5, 13, (553,364,0): 16, 5, 13, (553,365,0): 16, 5, 13, (553,366,0): 16, 5, 13, (553,367,0): 16, 5, 13, (553,368,0): 17, 6, 14, (553,369,0): 17, 6, 14, (553,370,0): 16, 5, 13, (553,371,0): 15, 4, 12, (553,372,0): 15, 4, 12, (553,373,0): 16, 5, 13, (553,374,0): 17, 6, 14, (553,375,0): 17, 6, 14, (553,376,0): 16, 5, 13, (553,377,0): 17, 6, 14, (553,378,0): 17, 6, 14, (553,379,0): 17, 6, 14, (553,380,0): 18, 7, 15, (553,381,0): 18, 7, 15, (553,382,0): 19, 8, 16, (553,383,0): 19, 8, 16, (553,384,0): 17, 6, 14, (553,385,0): 17, 6, 14, (553,386,0): 17, 6, 14, (553,387,0): 17, 6, 14, (553,388,0): 17, 6, 12, (553,389,0): 17, 6, 12, (553,390,0): 17, 6, 10, (553,391,0): 17, 6, 10, (553,392,0): 18, 7, 11, (553,393,0): 18, 7, 11, (553,394,0): 19, 9, 10, (553,395,0): 19, 9, 10, (553,396,0): 20, 10, 9, (553,397,0): 20, 10, 9, (553,398,0): 21, 11, 10, (553,399,0): 22, 10, 10, (553,400,0): 23, 9, 9, (553,401,0): 24, 8, 9, (553,402,0): 24, 8, 9, (553,403,0): 25, 9, 10, (553,404,0): 25, 9, 10, (553,405,0): 26, 10, 11, (553,406,0): 26, 10, 11, (553,407,0): 26, 10, 11, (553,408,0): 27, 11, 12, (553,409,0): 27, 11, 12, (553,410,0): 27, 11, 12, (553,411,0): 28, 12, 13, (553,412,0): 28, 12, 13, (553,413,0): 29, 13, 14, (553,414,0): 29, 13, 14, (553,415,0): 29, 13, 14, (553,416,0): 31, 17, 17, (553,417,0): 31, 17, 17, (553,418,0): 31, 17, 17, (553,419,0): 31, 17, 17, (553,420,0): 31, 17, 17, (553,421,0): 31, 17, 17, (553,422,0): 31, 17, 17, (553,423,0): 31, 17, 17, (553,424,0): 31, 17, 17, (553,425,0): 31, 17, 17, (553,426,0): 31, 17, 17, (553,427,0): 31, 17, 17, (553,428,0): 31, 17, 17, (553,429,0): 31, 17, 17, (553,430,0): 31, 17, 17, (553,431,0): 31, 17, 17, (553,432,0): 30, 14, 15, (553,433,0): 27, 11, 12, (553,434,0): 27, 8, 10, (553,435,0): 28, 8, 10, (553,436,0): 29, 9, 11, (553,437,0): 30, 8, 11, (553,438,0): 27, 5, 8, (553,439,0): 25, 3, 6, (553,440,0): 30, 8, 11, (553,441,0): 30, 8, 11, (553,442,0): 29, 7, 10, (553,443,0): 28, 6, 9, (553,444,0): 27, 5, 8, (553,445,0): 26, 4, 7, (553,446,0): 25, 3, 6, (553,447,0): 24, 4, 6, (553,448,0): 27, 9, 9, (553,449,0): 26, 8, 8, (553,450,0): 26, 8, 8, (553,451,0): 25, 7, 7, (553,452,0): 25, 7, 7, (553,453,0): 24, 6, 6, (553,454,0): 24, 6, 6, (553,455,0): 24, 6, 6, (553,456,0): 24, 6, 6, (553,457,0): 24, 6, 6, (553,458,0): 25, 7, 7, (553,459,0): 25, 7, 7, (553,460,0): 26, 8, 8, (553,461,0): 26, 8, 8, (553,462,0): 27, 9, 9, (553,463,0): 27, 9, 9, (553,464,0): 29, 7, 9, (553,465,0): 29, 7, 9, (553,466,0): 30, 8, 10, (553,467,0): 31, 9, 11, (553,468,0): 31, 9, 11, (553,469,0): 32, 10, 12, (553,470,0): 33, 11, 13, (553,471,0): 33, 11, 13, (553,472,0): 35, 13, 15, (553,473,0): 35, 13, 15, (553,474,0): 36, 14, 16, (553,475,0): 37, 15, 17, (553,476,0): 38, 16, 18, (553,477,0): 39, 17, 19, (553,478,0): 40, 18, 20, (553,479,0): 42, 18, 18, (553,480,0): 43, 17, 16, (553,481,0): 46, 18, 15, (553,482,0): 46, 20, 19, (553,483,0): 47, 21, 20, (553,484,0): 47, 21, 20, (553,485,0): 47, 21, 20, (553,486,0): 46, 20, 21, (553,487,0): 45, 21, 21, (553,488,0): 39, 14, 17, (553,489,0): 38, 16, 18, (553,490,0): 40, 18, 20, (553,491,0): 41, 19, 21, (553,492,0): 41, 21, 23, (553,493,0): 40, 20, 22, (553,494,0): 40, 20, 22, (553,495,0): 40, 18, 21, (553,496,0): 40, 15, 19, (553,497,0): 41, 16, 20, (553,498,0): 41, 16, 20, (553,499,0): 41, 16, 20, (553,500,0): 40, 15, 19, (553,501,0): 38, 13, 17, (553,502,0): 36, 11, 15, (553,503,0): 35, 10, 14, (553,504,0): 36, 11, 15, (553,505,0): 36, 11, 15, (553,506,0): 36, 11, 15, (553,507,0): 36, 11, 15, (553,508,0): 36, 11, 15, (553,509,0): 36, 11, 15, (553,510,0): 36, 11, 15, (553,511,0): 34, 12, 15, (553,512,0): 34, 11, 17, (553,513,0): 32, 11, 18, (553,514,0): 30, 9, 16, (553,515,0): 29, 8, 15, (553,516,0): 29, 8, 15, (553,517,0): 29, 8, 15, (553,518,0): 29, 8, 15, (553,519,0): 30, 9, 16, (553,520,0): 27, 6, 13, (553,521,0): 27, 6, 13, (553,522,0): 27, 6, 13, (553,523,0): 28, 7, 14, (553,524,0): 28, 7, 14, (553,525,0): 28, 7, 14, (553,526,0): 28, 7, 14, (553,527,0): 27, 7, 16, (553,528,0): 19, 2, 12, (553,529,0): 20, 2, 14, (553,530,0): 21, 3, 15, (553,531,0): 21, 5, 16, (553,532,0): 20, 4, 15, (553,533,0): 19, 3, 14, (553,534,0): 18, 2, 13, (553,535,0): 15, 2, 12, (553,536,0): 15, 2, 12, (553,537,0): 14, 2, 12, (553,538,0): 13, 1, 11, (553,539,0): 13, 1, 11, (553,540,0): 13, 1, 11, (553,541,0): 12, 2, 11, (553,542,0): 13, 3, 12, (553,543,0): 13, 3, 12, (553,544,0): 11, 0, 9, (553,545,0): 11, 0, 9, (553,546,0): 12, 0, 10, (553,547,0): 12, 0, 10, (553,548,0): 12, 0, 10, (553,549,0): 12, 0, 10, (553,550,0): 13, 1, 11, (553,551,0): 13, 1, 11, (553,552,0): 14, 2, 12, (553,553,0): 14, 2, 12, (553,554,0): 14, 2, 12, (553,555,0): 14, 2, 12, (553,556,0): 14, 2, 12, (553,557,0): 14, 2, 12, (553,558,0): 14, 2, 12, (553,559,0): 13, 3, 12, (553,560,0): 20, 10, 18, (553,561,0): 16, 9, 16, (553,562,0): 14, 7, 14, (553,563,0): 13, 6, 13, (553,564,0): 12, 5, 12, (553,565,0): 12, 5, 12, (553,566,0): 13, 6, 13, (553,567,0): 14, 7, 14, (553,568,0): 18, 11, 18, (553,569,0): 19, 12, 19, (553,570,0): 21, 14, 21, (553,571,0): 22, 15, 22, (553,572,0): 23, 16, 23, (553,573,0): 22, 15, 22, (553,574,0): 22, 15, 22, (553,575,0): 21, 15, 19, (553,576,0): 27, 16, 22, (553,577,0): 27, 16, 20, (553,578,0): 26, 15, 19, (553,579,0): 26, 15, 19, (553,580,0): 26, 15, 19, (553,581,0): 26, 15, 19, (553,582,0): 26, 15, 19, (553,583,0): 25, 14, 18, (553,584,0): 27, 16, 20, (553,585,0): 27, 16, 20, (553,586,0): 26, 15, 19, (553,587,0): 26, 15, 19, (553,588,0): 25, 14, 18, (553,589,0): 25, 14, 18, (553,590,0): 24, 13, 17, (553,591,0): 23, 14, 17, (553,592,0): 22, 13, 18, (553,593,0): 21, 15, 19, (553,594,0): 22, 16, 20, (553,595,0): 23, 17, 21, (553,596,0): 23, 17, 21, (553,597,0): 22, 16, 20, (553,598,0): 21, 15, 19, (553,599,0): 20, 14, 18, (554,0,0): 35, 54, 68, (554,1,0): 35, 54, 68, (554,2,0): 35, 54, 68, (554,3,0): 36, 55, 69, (554,4,0): 36, 55, 69, (554,5,0): 37, 56, 70, (554,6,0): 37, 56, 70, (554,7,0): 37, 56, 70, (554,8,0): 38, 57, 71, (554,9,0): 38, 57, 71, (554,10,0): 39, 58, 72, (554,11,0): 39, 58, 72, (554,12,0): 40, 59, 73, (554,13,0): 40, 59, 73, (554,14,0): 41, 60, 74, (554,15,0): 41, 60, 74, (554,16,0): 42, 60, 74, (554,17,0): 42, 60, 74, (554,18,0): 43, 61, 75, (554,19,0): 43, 61, 75, (554,20,0): 44, 62, 76, (554,21,0): 44, 62, 76, (554,22,0): 45, 63, 77, (554,23,0): 45, 63, 77, (554,24,0): 44, 62, 76, (554,25,0): 44, 62, 76, (554,26,0): 44, 62, 76, (554,27,0): 45, 63, 77, (554,28,0): 45, 63, 77, (554,29,0): 46, 64, 78, (554,30,0): 46, 64, 78, (554,31,0): 46, 64, 76, (554,32,0): 48, 64, 77, (554,33,0): 48, 65, 75, (554,34,0): 50, 64, 75, (554,35,0): 51, 65, 76, (554,36,0): 52, 64, 76, (554,37,0): 53, 65, 77, (554,38,0): 55, 65, 75, (554,39,0): 55, 65, 75, (554,40,0): 60, 67, 77, (554,41,0): 60, 67, 77, (554,42,0): 63, 67, 76, (554,43,0): 64, 68, 77, (554,44,0): 66, 69, 78, (554,45,0): 67, 70, 79, (554,46,0): 70, 70, 80, (554,47,0): 71, 71, 81, (554,48,0): 65, 68, 77, (554,49,0): 65, 68, 77, (554,50,0): 66, 69, 78, (554,51,0): 66, 69, 78, (554,52,0): 67, 70, 79, (554,53,0): 67, 70, 79, (554,54,0): 68, 71, 80, (554,55,0): 68, 71, 80, (554,56,0): 68, 71, 80, (554,57,0): 68, 71, 80, (554,58,0): 69, 72, 81, (554,59,0): 69, 72, 81, (554,60,0): 70, 73, 82, (554,61,0): 70, 73, 82, (554,62,0): 71, 74, 83, (554,63,0): 71, 74, 83, (554,64,0): 73, 71, 85, (554,65,0): 74, 72, 86, (554,66,0): 74, 72, 86, (554,67,0): 75, 73, 87, (554,68,0): 75, 73, 87, (554,69,0): 76, 74, 88, (554,70,0): 76, 74, 88, (554,71,0): 76, 74, 88, (554,72,0): 77, 75, 89, (554,73,0): 77, 75, 89, (554,74,0): 78, 76, 90, (554,75,0): 79, 77, 91, (554,76,0): 80, 78, 92, (554,77,0): 81, 79, 93, (554,78,0): 82, 80, 94, (554,79,0): 82, 80, 93, (554,80,0): 85, 79, 93, (554,81,0): 86, 80, 92, (554,82,0): 87, 81, 93, (554,83,0): 87, 81, 93, (554,84,0): 85, 82, 93, (554,85,0): 85, 82, 93, (554,86,0): 83, 81, 94, (554,87,0): 82, 80, 93, (554,88,0): 81, 79, 93, (554,89,0): 80, 78, 92, (554,90,0): 78, 77, 93, (554,91,0): 80, 79, 95, (554,92,0): 81, 83, 98, (554,93,0): 82, 84, 99, (554,94,0): 82, 84, 99, (554,95,0): 81, 83, 98, (554,96,0): 79, 82, 99, (554,97,0): 79, 82, 99, (554,98,0): 79, 82, 101, (554,99,0): 80, 83, 102, (554,100,0): 80, 83, 102, (554,101,0): 80, 83, 102, (554,102,0): 80, 82, 103, (554,103,0): 81, 83, 104, (554,104,0): 81, 83, 106, (554,105,0): 81, 83, 106, (554,106,0): 81, 83, 106, (554,107,0): 80, 82, 105, (554,108,0): 80, 82, 107, (554,109,0): 79, 81, 106, (554,110,0): 79, 81, 106, (554,111,0): 76, 80, 105, (554,112,0): 75, 79, 104, (554,113,0): 74, 80, 104, (554,114,0): 75, 81, 105, (554,115,0): 75, 81, 105, (554,116,0): 76, 82, 108, (554,117,0): 76, 82, 108, (554,118,0): 76, 82, 108, (554,119,0): 76, 82, 108, (554,120,0): 76, 81, 110, (554,121,0): 76, 81, 110, (554,122,0): 77, 82, 112, (554,123,0): 78, 83, 113, (554,124,0): 79, 84, 114, (554,125,0): 80, 85, 115, (554,126,0): 80, 85, 117, (554,127,0): 81, 86, 116, (554,128,0): 79, 84, 113, (554,129,0): 79, 85, 111, (554,130,0): 80, 86, 112, (554,131,0): 80, 86, 112, (554,132,0): 81, 87, 113, (554,133,0): 81, 87, 113, (554,134,0): 82, 88, 114, (554,135,0): 82, 88, 114, (554,136,0): 80, 86, 112, (554,137,0): 81, 87, 113, (554,138,0): 82, 88, 114, (554,139,0): 83, 89, 115, (554,140,0): 83, 89, 115, (554,141,0): 82, 88, 114, (554,142,0): 81, 87, 113, (554,143,0): 80, 86, 112, (554,144,0): 79, 83, 112, (554,145,0): 79, 83, 112, (554,146,0): 79, 83, 112, (554,147,0): 79, 83, 112, (554,148,0): 79, 82, 113, (554,149,0): 78, 83, 113, (554,150,0): 78, 83, 113, (554,151,0): 77, 84, 113, (554,152,0): 79, 85, 117, (554,153,0): 79, 85, 117, (554,154,0): 79, 85, 119, (554,155,0): 78, 87, 120, (554,156,0): 78, 87, 120, (554,157,0): 79, 88, 121, (554,158,0): 79, 87, 123, (554,159,0): 80, 88, 124, (554,160,0): 81, 86, 124, (554,161,0): 81, 86, 124, (554,162,0): 81, 86, 124, (554,163,0): 81, 86, 124, (554,164,0): 81, 86, 124, (554,165,0): 81, 86, 124, (554,166,0): 81, 86, 124, (554,167,0): 81, 86, 124, (554,168,0): 83, 88, 126, (554,169,0): 83, 88, 126, (554,170,0): 83, 88, 126, (554,171,0): 83, 88, 126, (554,172,0): 83, 88, 126, (554,173,0): 83, 88, 126, (554,174,0): 83, 88, 126, (554,175,0): 81, 89, 126, (554,176,0): 83, 93, 129, (554,177,0): 81, 94, 129, (554,178,0): 83, 92, 131, (554,179,0): 82, 94, 132, (554,180,0): 84, 93, 132, (554,181,0): 83, 95, 133, (554,182,0): 85, 94, 135, (554,183,0): 83, 95, 135, (554,184,0): 86, 95, 138, (554,185,0): 84, 96, 138, (554,186,0): 86, 95, 138, (554,187,0): 84, 96, 138, (554,188,0): 86, 94, 140, (554,189,0): 84, 95, 140, (554,190,0): 86, 94, 140, (554,191,0): 84, 95, 140, (554,192,0): 83, 95, 143, (554,193,0): 82, 96, 143, (554,194,0): 82, 96, 143, (554,195,0): 82, 96, 143, (554,196,0): 80, 97, 143, (554,197,0): 80, 97, 143, (554,198,0): 80, 97, 143, (554,199,0): 80, 97, 143, (554,200,0): 79, 97, 143, (554,201,0): 80, 98, 144, (554,202,0): 78, 99, 144, (554,203,0): 79, 100, 145, (554,204,0): 79, 100, 145, (554,205,0): 80, 101, 146, (554,206,0): 79, 102, 146, (554,207,0): 79, 102, 146, (554,208,0): 79, 102, 146, (554,209,0): 79, 102, 146, (554,210,0): 81, 102, 147, (554,211,0): 81, 104, 148, (554,212,0): 83, 104, 149, (554,213,0): 83, 106, 150, (554,214,0): 85, 106, 153, (554,215,0): 84, 106, 153, (554,216,0): 84, 104, 154, (554,217,0): 84, 106, 155, (554,218,0): 86, 106, 156, (554,219,0): 87, 109, 158, (554,220,0): 91, 111, 162, (554,221,0): 92, 114, 164, (554,222,0): 94, 114, 165, (554,223,0): 94, 116, 166, (554,224,0): 94, 114, 167, (554,225,0): 94, 115, 170, (554,226,0): 96, 115, 171, (554,227,0): 97, 117, 170, (554,228,0): 99, 119, 172, (554,229,0): 102, 119, 173, (554,230,0): 104, 120, 172, (554,231,0): 105, 121, 172, (554,232,0): 104, 116, 164, (554,233,0): 102, 115, 159, (554,234,0): 99, 111, 153, (554,235,0): 93, 105, 143, (554,236,0): 88, 98, 133, (554,237,0): 81, 92, 122, (554,238,0): 75, 86, 116, (554,239,0): 73, 83, 108, (554,240,0): 75, 82, 101, (554,241,0): 71, 78, 94, (554,242,0): 68, 75, 93, (554,243,0): 67, 75, 94, (554,244,0): 73, 81, 104, (554,245,0): 77, 87, 112, (554,246,0): 80, 91, 121, (554,247,0): 80, 93, 125, (554,248,0): 92, 106, 143, (554,249,0): 95, 110, 149, (554,250,0): 100, 117, 160, (554,251,0): 106, 124, 170, (554,252,0): 109, 129, 179, (554,253,0): 111, 131, 181, (554,254,0): 110, 132, 182, (554,255,0): 109, 130, 185, (554,256,0): 109, 129, 192, (554,257,0): 109, 128, 194, (554,258,0): 109, 128, 194, (554,259,0): 109, 127, 191, (554,260,0): 109, 127, 191, (554,261,0): 108, 126, 188, (554,262,0): 108, 127, 186, (554,263,0): 109, 125, 184, (554,264,0): 109, 126, 182, (554,265,0): 110, 125, 182, (554,266,0): 110, 125, 180, (554,267,0): 111, 127, 179, (554,268,0): 111, 127, 178, (554,269,0): 114, 127, 179, (554,270,0): 114, 127, 179, (554,271,0): 114, 127, 179, (554,272,0): 111, 124, 176, (554,273,0): 111, 124, 177, (554,274,0): 109, 125, 177, (554,275,0): 109, 124, 179, (554,276,0): 109, 124, 181, (554,277,0): 109, 124, 181, (554,278,0): 109, 124, 181, (554,279,0): 109, 124, 181, (554,280,0): 112, 125, 180, (554,281,0): 113, 124, 178, (554,282,0): 114, 123, 178, (554,283,0): 118, 124, 176, (554,284,0): 121, 124, 175, (554,285,0): 122, 124, 173, (554,286,0): 125, 123, 173, (554,287,0): 126, 124, 173, (554,288,0): 130, 127, 174, (554,289,0): 130, 127, 174, (554,290,0): 132, 126, 174, (554,291,0): 131, 125, 173, (554,292,0): 131, 125, 171, (554,293,0): 131, 123, 170, (554,294,0): 131, 124, 168, (554,295,0): 131, 122, 167, (554,296,0): 132, 120, 166, (554,297,0): 130, 118, 164, (554,298,0): 131, 118, 164, (554,299,0): 131, 118, 162, (554,300,0): 133, 117, 162, (554,301,0): 131, 116, 159, (554,302,0): 126, 109, 154, (554,303,0): 125, 104, 143, (554,304,0): 118, 92, 117, (554,305,0): 113, 84, 102, (554,306,0): 104, 72, 93, (554,307,0): 93, 62, 80, (554,308,0): 87, 54, 73, (554,309,0): 82, 49, 66, (554,310,0): 77, 43, 59, (554,311,0): 74, 40, 54, (554,312,0): 65, 33, 44, (554,313,0): 64, 33, 41, (554,314,0): 61, 31, 39, (554,315,0): 57, 30, 35, (554,316,0): 55, 30, 33, (554,317,0): 52, 30, 32, (554,318,0): 51, 31, 32, (554,319,0): 51, 31, 32, (554,320,0): 52, 32, 34, (554,321,0): 51, 31, 33, (554,322,0): 51, 31, 33, (554,323,0): 51, 31, 33, (554,324,0): 51, 31, 33, (554,325,0): 52, 32, 34, (554,326,0): 54, 34, 36, (554,327,0): 54, 34, 36, (554,328,0): 51, 31, 33, (554,329,0): 50, 30, 32, (554,330,0): 48, 28, 30, (554,331,0): 45, 25, 27, (554,332,0): 41, 21, 23, (554,333,0): 39, 19, 21, (554,334,0): 36, 16, 18, (554,335,0): 35, 15, 17, (554,336,0): 38, 16, 19, (554,337,0): 37, 15, 18, (554,338,0): 37, 15, 18, (554,339,0): 36, 14, 17, (554,340,0): 33, 12, 17, (554,341,0): 32, 11, 16, (554,342,0): 32, 11, 18, (554,343,0): 30, 11, 17, (554,344,0): 29, 10, 16, (554,345,0): 26, 9, 15, (554,346,0): 26, 9, 17, (554,347,0): 25, 8, 16, (554,348,0): 25, 8, 18, (554,349,0): 24, 7, 17, (554,350,0): 23, 7, 17, (554,351,0): 20, 7, 16, (554,352,0): 18, 5, 14, (554,353,0): 17, 6, 14, (554,354,0): 17, 6, 14, (554,355,0): 17, 6, 14, (554,356,0): 17, 6, 14, (554,357,0): 17, 6, 14, (554,358,0): 17, 6, 14, (554,359,0): 17, 6, 14, (554,360,0): 16, 5, 13, (554,361,0): 16, 5, 13, (554,362,0): 16, 5, 13, (554,363,0): 16, 5, 13, (554,364,0): 16, 5, 13, (554,365,0): 16, 5, 13, (554,366,0): 16, 5, 13, (554,367,0): 16, 5, 13, (554,368,0): 17, 6, 14, (554,369,0): 16, 5, 13, (554,370,0): 15, 4, 12, (554,371,0): 14, 3, 11, (554,372,0): 14, 3, 11, (554,373,0): 15, 4, 12, (554,374,0): 16, 5, 13, (554,375,0): 17, 6, 14, (554,376,0): 16, 5, 13, (554,377,0): 16, 5, 13, (554,378,0): 16, 5, 13, (554,379,0): 17, 6, 14, (554,380,0): 18, 7, 15, (554,381,0): 18, 7, 15, (554,382,0): 18, 7, 15, (554,383,0): 19, 8, 16, (554,384,0): 17, 6, 14, (554,385,0): 17, 6, 14, (554,386,0): 17, 6, 14, (554,387,0): 17, 6, 14, (554,388,0): 17, 6, 12, (554,389,0): 17, 6, 12, (554,390,0): 17, 6, 10, (554,391,0): 17, 6, 10, (554,392,0): 18, 7, 11, (554,393,0): 18, 7, 11, (554,394,0): 19, 9, 10, (554,395,0): 19, 9, 10, (554,396,0): 20, 10, 9, (554,397,0): 20, 10, 9, (554,398,0): 21, 11, 10, (554,399,0): 22, 10, 10, (554,400,0): 23, 9, 9, (554,401,0): 24, 8, 9, (554,402,0): 24, 8, 9, (554,403,0): 25, 9, 10, (554,404,0): 25, 9, 10, (554,405,0): 26, 10, 11, (554,406,0): 26, 10, 11, (554,407,0): 26, 10, 11, (554,408,0): 27, 11, 12, (554,409,0): 27, 11, 12, (554,410,0): 27, 11, 12, (554,411,0): 28, 12, 13, (554,412,0): 28, 12, 13, (554,413,0): 29, 13, 14, (554,414,0): 29, 13, 14, (554,415,0): 29, 13, 14, (554,416,0): 30, 16, 16, (554,417,0): 30, 16, 16, (554,418,0): 30, 16, 16, (554,419,0): 30, 16, 16, (554,420,0): 30, 16, 16, (554,421,0): 30, 16, 16, (554,422,0): 30, 16, 16, (554,423,0): 30, 16, 16, (554,424,0): 29, 15, 15, (554,425,0): 29, 15, 15, (554,426,0): 29, 15, 15, (554,427,0): 29, 15, 15, (554,428,0): 29, 15, 15, (554,429,0): 29, 15, 15, (554,430,0): 29, 15, 15, (554,431,0): 29, 15, 15, (554,432,0): 28, 12, 12, (554,433,0): 28, 10, 10, (554,434,0): 27, 7, 8, (554,435,0): 28, 8, 9, (554,436,0): 31, 9, 11, (554,437,0): 34, 9, 12, (554,438,0): 32, 7, 10, (554,439,0): 30, 5, 8, (554,440,0): 32, 7, 10, (554,441,0): 32, 7, 10, (554,442,0): 31, 6, 9, (554,443,0): 28, 6, 8, (554,444,0): 27, 5, 7, (554,445,0): 25, 5, 6, (554,446,0): 24, 4, 5, (554,447,0): 23, 5, 5, (554,448,0): 26, 8, 8, (554,449,0): 26, 8, 8, (554,450,0): 26, 8, 8, (554,451,0): 25, 7, 7, (554,452,0): 25, 7, 7, (554,453,0): 24, 6, 6, (554,454,0): 24, 6, 6, (554,455,0): 23, 5, 5, (554,456,0): 24, 6, 6, (554,457,0): 24, 6, 6, (554,458,0): 25, 7, 7, (554,459,0): 25, 7, 7, (554,460,0): 26, 8, 8, (554,461,0): 26, 8, 8, (554,462,0): 27, 9, 9, (554,463,0): 27, 9, 9, (554,464,0): 29, 7, 9, (554,465,0): 29, 7, 9, (554,466,0): 29, 7, 9, (554,467,0): 30, 8, 10, (554,468,0): 30, 8, 10, (554,469,0): 31, 9, 11, (554,470,0): 31, 9, 11, (554,471,0): 31, 9, 11, (554,472,0): 34, 12, 14, (554,473,0): 34, 12, 14, (554,474,0): 35, 13, 15, (554,475,0): 36, 14, 16, (554,476,0): 37, 15, 17, (554,477,0): 38, 16, 18, (554,478,0): 39, 17, 19, (554,479,0): 41, 17, 17, (554,480,0): 44, 18, 17, (554,481,0): 47, 19, 16, (554,482,0): 47, 19, 16, (554,483,0): 48, 20, 17, (554,484,0): 47, 19, 18, (554,485,0): 44, 18, 17, (554,486,0): 43, 17, 16, (554,487,0): 41, 17, 15, (554,488,0): 38, 14, 14, (554,489,0): 39, 15, 15, (554,490,0): 39, 17, 19, (554,491,0): 40, 18, 20, (554,492,0): 41, 19, 21, (554,493,0): 40, 18, 20, (554,494,0): 40, 18, 21, (554,495,0): 39, 17, 20, (554,496,0): 41, 16, 19, (554,497,0): 41, 16, 19, (554,498,0): 41, 16, 19, (554,499,0): 41, 16, 19, (554,500,0): 40, 15, 18, (554,501,0): 38, 13, 16, (554,502,0): 36, 11, 14, (554,503,0): 35, 10, 13, (554,504,0): 36, 11, 14, (554,505,0): 36, 11, 14, (554,506,0): 36, 11, 14, (554,507,0): 36, 11, 14, (554,508,0): 36, 11, 14, (554,509,0): 36, 11, 14, (554,510,0): 36, 11, 14, (554,511,0): 34, 12, 15, (554,512,0): 35, 12, 18, (554,513,0): 33, 12, 19, (554,514,0): 31, 10, 17, (554,515,0): 30, 9, 16, (554,516,0): 29, 8, 15, (554,517,0): 29, 8, 15, (554,518,0): 30, 9, 16, (554,519,0): 31, 10, 17, (554,520,0): 27, 6, 13, (554,521,0): 27, 6, 13, (554,522,0): 27, 6, 13, (554,523,0): 27, 6, 13, (554,524,0): 27, 6, 13, (554,525,0): 27, 6, 13, (554,526,0): 27, 6, 13, (554,527,0): 26, 6, 15, (554,528,0): 21, 4, 14, (554,529,0): 20, 4, 15, (554,530,0): 21, 5, 16, (554,531,0): 21, 5, 16, (554,532,0): 20, 4, 15, (554,533,0): 16, 3, 13, (554,534,0): 14, 1, 11, (554,535,0): 13, 0, 10, (554,536,0): 14, 1, 11, (554,537,0): 13, 1, 11, (554,538,0): 14, 2, 12, (554,539,0): 13, 3, 12, (554,540,0): 13, 3, 12, (554,541,0): 13, 3, 12, (554,542,0): 12, 2, 11, (554,543,0): 12, 2, 11, (554,544,0): 13, 1, 11, (554,545,0): 13, 1, 11, (554,546,0): 12, 0, 10, (554,547,0): 12, 0, 10, (554,548,0): 12, 0, 10, (554,549,0): 12, 0, 10, (554,550,0): 11, 0, 9, (554,551,0): 11, 0, 9, (554,552,0): 14, 2, 12, (554,553,0): 14, 2, 12, (554,554,0): 14, 2, 12, (554,555,0): 14, 2, 12, (554,556,0): 14, 2, 12, (554,557,0): 14, 2, 12, (554,558,0): 14, 2, 12, (554,559,0): 13, 3, 12, (554,560,0): 17, 7, 15, (554,561,0): 14, 7, 14, (554,562,0): 13, 6, 13, (554,563,0): 12, 5, 12, (554,564,0): 12, 5, 12, (554,565,0): 12, 5, 12, (554,566,0): 12, 5, 12, (554,567,0): 13, 6, 13, (554,568,0): 16, 9, 16, (554,569,0): 17, 10, 17, (554,570,0): 19, 12, 19, (554,571,0): 22, 15, 22, (554,572,0): 23, 16, 23, (554,573,0): 24, 17, 24, (554,574,0): 24, 17, 24, (554,575,0): 23, 17, 21, (554,576,0): 27, 16, 22, (554,577,0): 27, 16, 20, (554,578,0): 26, 15, 19, (554,579,0): 25, 14, 18, (554,580,0): 25, 14, 18, (554,581,0): 24, 13, 17, (554,582,0): 23, 12, 16, (554,583,0): 23, 12, 16, (554,584,0): 27, 16, 20, (554,585,0): 27, 16, 20, (554,586,0): 26, 15, 19, (554,587,0): 26, 15, 19, (554,588,0): 25, 14, 18, (554,589,0): 25, 14, 18, (554,590,0): 24, 13, 17, (554,591,0): 23, 14, 17, (554,592,0): 22, 13, 18, (554,593,0): 21, 15, 19, (554,594,0): 22, 16, 20, (554,595,0): 23, 17, 21, (554,596,0): 23, 17, 21, (554,597,0): 22, 16, 20, (554,598,0): 21, 15, 19, (554,599,0): 20, 14, 18, (555,0,0): 34, 53, 67, (555,1,0): 34, 53, 67, (555,2,0): 34, 53, 67, (555,3,0): 35, 54, 68, (555,4,0): 35, 54, 68, (555,5,0): 36, 55, 69, (555,6,0): 36, 55, 69, (555,7,0): 37, 56, 70, (555,8,0): 38, 57, 71, (555,9,0): 38, 57, 71, (555,10,0): 39, 58, 72, (555,11,0): 39, 58, 72, (555,12,0): 40, 59, 73, (555,13,0): 40, 59, 73, (555,14,0): 41, 60, 74, (555,15,0): 41, 60, 74, (555,16,0): 42, 60, 74, (555,17,0): 42, 60, 74, (555,18,0): 43, 61, 75, (555,19,0): 43, 61, 75, (555,20,0): 44, 62, 76, (555,21,0): 44, 62, 76, (555,22,0): 45, 63, 77, (555,23,0): 45, 63, 77, (555,24,0): 44, 62, 76, (555,25,0): 44, 62, 76, (555,26,0): 44, 62, 76, (555,27,0): 45, 63, 77, (555,28,0): 45, 63, 77, (555,29,0): 46, 64, 78, (555,30,0): 46, 64, 78, (555,31,0): 46, 64, 76, (555,32,0): 48, 64, 77, (555,33,0): 48, 65, 75, (555,34,0): 50, 64, 75, (555,35,0): 51, 65, 76, (555,36,0): 52, 64, 76, (555,37,0): 53, 65, 77, (555,38,0): 55, 65, 75, (555,39,0): 55, 65, 75, (555,40,0): 60, 67, 77, (555,41,0): 60, 67, 77, (555,42,0): 63, 67, 76, (555,43,0): 64, 68, 77, (555,44,0): 66, 69, 78, (555,45,0): 67, 70, 79, (555,46,0): 70, 70, 80, (555,47,0): 70, 70, 80, (555,48,0): 65, 68, 77, (555,49,0): 65, 68, 77, (555,50,0): 66, 69, 78, (555,51,0): 66, 69, 78, (555,52,0): 67, 70, 79, (555,53,0): 67, 70, 79, (555,54,0): 68, 71, 80, (555,55,0): 68, 71, 80, (555,56,0): 68, 71, 80, (555,57,0): 68, 71, 80, (555,58,0): 69, 72, 81, (555,59,0): 69, 72, 81, (555,60,0): 70, 73, 82, (555,61,0): 70, 73, 82, (555,62,0): 71, 74, 83, (555,63,0): 71, 74, 83, (555,64,0): 73, 71, 85, (555,65,0): 73, 71, 85, (555,66,0): 73, 71, 85, (555,67,0): 74, 72, 86, (555,68,0): 75, 73, 87, (555,69,0): 75, 73, 87, (555,70,0): 75, 73, 87, (555,71,0): 76, 74, 88, (555,72,0): 76, 74, 88, (555,73,0): 76, 74, 88, (555,74,0): 77, 75, 89, (555,75,0): 78, 76, 90, (555,76,0): 79, 77, 91, (555,77,0): 80, 78, 92, (555,78,0): 81, 79, 93, (555,79,0): 82, 80, 93, (555,80,0): 85, 79, 93, (555,81,0): 85, 79, 91, (555,82,0): 85, 79, 91, (555,83,0): 85, 79, 91, (555,84,0): 83, 80, 91, (555,85,0): 83, 80, 91, (555,86,0): 82, 80, 93, (555,87,0): 82, 80, 93, (555,88,0): 80, 78, 92, (555,89,0): 80, 78, 92, (555,90,0): 79, 78, 94, (555,91,0): 80, 79, 95, (555,92,0): 79, 81, 96, (555,93,0): 80, 82, 97, (555,94,0): 80, 82, 97, (555,95,0): 80, 82, 97, (555,96,0): 77, 80, 97, (555,97,0): 78, 81, 98, (555,98,0): 78, 81, 100, (555,99,0): 79, 82, 101, (555,100,0): 80, 83, 102, (555,101,0): 80, 83, 102, (555,102,0): 81, 83, 104, (555,103,0): 81, 83, 104, (555,104,0): 81, 83, 106, (555,105,0): 80, 82, 105, (555,106,0): 80, 82, 105, (555,107,0): 80, 82, 105, (555,108,0): 79, 81, 106, (555,109,0): 78, 80, 105, (555,110,0): 78, 80, 105, (555,111,0): 76, 80, 105, (555,112,0): 75, 79, 104, (555,113,0): 74, 80, 104, (555,114,0): 75, 81, 105, (555,115,0): 75, 81, 105, (555,116,0): 75, 81, 107, (555,117,0): 75, 81, 107, (555,118,0): 75, 81, 107, (555,119,0): 75, 81, 107, (555,120,0): 76, 81, 110, (555,121,0): 76, 81, 110, (555,122,0): 77, 82, 112, (555,123,0): 77, 82, 112, (555,124,0): 78, 83, 113, (555,125,0): 79, 84, 114, (555,126,0): 79, 84, 116, (555,127,0): 80, 85, 115, (555,128,0): 78, 83, 112, (555,129,0): 78, 84, 110, (555,130,0): 79, 85, 111, (555,131,0): 79, 85, 111, (555,132,0): 80, 86, 112, (555,133,0): 80, 86, 112, (555,134,0): 81, 87, 113, (555,135,0): 81, 87, 113, (555,136,0): 79, 85, 111, (555,137,0): 80, 86, 112, (555,138,0): 81, 87, 113, (555,139,0): 82, 88, 114, (555,140,0): 82, 88, 114, (555,141,0): 81, 87, 113, (555,142,0): 80, 86, 112, (555,143,0): 79, 85, 111, (555,144,0): 82, 83, 113, (555,145,0): 82, 83, 113, (555,146,0): 80, 84, 113, (555,147,0): 80, 84, 113, (555,148,0): 80, 83, 114, (555,149,0): 80, 83, 114, (555,150,0): 79, 84, 114, (555,151,0): 79, 84, 114, (555,152,0): 80, 85, 117, (555,153,0): 80, 86, 118, (555,154,0): 80, 86, 120, (555,155,0): 80, 86, 120, (555,156,0): 79, 88, 121, (555,157,0): 80, 89, 122, (555,158,0): 80, 88, 124, (555,159,0): 80, 88, 124, (555,160,0): 81, 86, 124, (555,161,0): 81, 86, 124, (555,162,0): 81, 86, 124, (555,163,0): 81, 86, 124, (555,164,0): 81, 86, 124, (555,165,0): 81, 86, 124, (555,166,0): 81, 86, 124, (555,167,0): 81, 86, 124, (555,168,0): 83, 88, 126, (555,169,0): 83, 88, 126, (555,170,0): 83, 88, 126, (555,171,0): 83, 88, 126, (555,172,0): 83, 88, 126, (555,173,0): 83, 88, 126, (555,174,0): 83, 88, 126, (555,175,0): 81, 89, 126, (555,176,0): 82, 92, 128, (555,177,0): 80, 93, 128, (555,178,0): 80, 92, 130, (555,179,0): 81, 93, 131, (555,180,0): 81, 93, 131, (555,181,0): 82, 94, 132, (555,182,0): 82, 94, 134, (555,183,0): 82, 94, 134, (555,184,0): 83, 95, 137, (555,185,0): 83, 95, 137, (555,186,0): 83, 95, 137, (555,187,0): 83, 95, 137, (555,188,0): 83, 94, 139, (555,189,0): 83, 94, 139, (555,190,0): 83, 94, 139, (555,191,0): 82, 95, 140, (555,192,0): 83, 96, 141, (555,193,0): 82, 96, 143, (555,194,0): 82, 96, 143, (555,195,0): 82, 96, 143, (555,196,0): 82, 96, 143, (555,197,0): 80, 97, 143, (555,198,0): 80, 97, 143, (555,199,0): 80, 97, 143, (555,200,0): 79, 97, 143, (555,201,0): 79, 97, 143, (555,202,0): 79, 97, 143, (555,203,0): 78, 99, 144, (555,204,0): 79, 100, 145, (555,205,0): 79, 100, 145, (555,206,0): 78, 101, 145, (555,207,0): 79, 102, 146, (555,208,0): 78, 101, 143, (555,209,0): 78, 101, 143, (555,210,0): 79, 102, 146, (555,211,0): 80, 103, 147, (555,212,0): 81, 104, 148, (555,213,0): 82, 105, 149, (555,214,0): 83, 105, 152, (555,215,0): 83, 105, 152, (555,216,0): 82, 104, 153, (555,217,0): 83, 105, 154, (555,218,0): 84, 106, 155, (555,219,0): 86, 108, 158, (555,220,0): 88, 110, 160, (555,221,0): 89, 111, 161, (555,222,0): 91, 112, 165, (555,223,0): 91, 112, 165, (555,224,0): 92, 113, 166, (555,225,0): 92, 113, 168, (555,226,0): 94, 115, 170, (555,227,0): 95, 116, 171, (555,228,0): 98, 117, 173, (555,229,0): 100, 119, 175, (555,230,0): 101, 120, 176, (555,231,0): 104, 121, 175, (555,232,0): 105, 121, 173, (555,233,0): 105, 121, 172, (555,234,0): 106, 120, 167, (555,235,0): 103, 117, 162, (555,236,0): 99, 112, 154, (555,237,0): 92, 106, 145, (555,238,0): 86, 100, 137, (555,239,0): 82, 97, 130, (555,240,0): 84, 95, 123, (555,241,0): 81, 93, 119, (555,242,0): 78, 89, 117, (555,243,0): 77, 91, 120, (555,244,0): 83, 96, 128, (555,245,0): 90, 104, 139, (555,246,0): 94, 109, 148, (555,247,0): 94, 111, 154, (555,248,0): 101, 120, 163, (555,249,0): 103, 121, 169, (555,250,0): 105, 125, 176, (555,251,0): 107, 128, 181, (555,252,0): 109, 130, 187, (555,253,0): 107, 129, 187, (555,254,0): 106, 128, 186, (555,255,0): 105, 127, 187, (555,256,0): 108, 129, 194, (555,257,0): 108, 127, 193, (555,258,0): 108, 127, 193, (555,259,0): 108, 128, 191, (555,260,0): 108, 126, 190, (555,261,0): 107, 125, 187, (555,262,0): 107, 126, 185, (555,263,0): 107, 126, 185, (555,264,0): 108, 124, 183, (555,265,0): 108, 125, 181, (555,266,0): 109, 124, 179, (555,267,0): 109, 125, 177, (555,268,0): 109, 125, 176, (555,269,0): 109, 125, 176, (555,270,0): 111, 124, 176, (555,271,0): 112, 125, 177, (555,272,0): 110, 123, 175, (555,273,0): 108, 124, 175, (555,274,0): 108, 124, 176, (555,275,0): 108, 124, 176, (555,276,0): 108, 123, 180, (555,277,0): 107, 124, 180, (555,278,0): 108, 123, 180, (555,279,0): 108, 123, 180, (555,280,0): 109, 124, 181, (555,281,0): 111, 124, 179, (555,282,0): 114, 123, 178, (555,283,0): 116, 123, 177, (555,284,0): 120, 123, 176, (555,285,0): 121, 123, 174, (555,286,0): 123, 123, 175, (555,287,0): 125, 123, 173, (555,288,0): 129, 125, 175, (555,289,0): 128, 125, 172, (555,290,0): 130, 124, 172, (555,291,0): 130, 124, 172, (555,292,0): 130, 122, 171, (555,293,0): 130, 122, 169, (555,294,0): 130, 121, 168, (555,295,0): 130, 121, 166, (555,296,0): 132, 119, 165, (555,297,0): 131, 118, 164, (555,298,0): 132, 116, 161, (555,299,0): 132, 116, 161, (555,300,0): 133, 116, 160, (555,301,0): 129, 112, 156, (555,302,0): 123, 104, 149, (555,303,0): 121, 99, 137, (555,304,0): 111, 85, 110, (555,305,0): 106, 79, 96, (555,306,0): 95, 66, 84, (555,307,0): 87, 56, 72, (555,308,0): 81, 50, 66, (555,309,0): 77, 45, 60, (555,310,0): 72, 40, 53, (555,311,0): 68, 36, 49, (555,312,0): 62, 30, 41, (555,313,0): 61, 31, 39, (555,314,0): 58, 31, 36, (555,315,0): 57, 30, 35, (555,316,0): 55, 30, 33, (555,317,0): 52, 30, 32, (555,318,0): 51, 31, 32, (555,319,0): 51, 31, 32, (555,320,0): 52, 32, 34, (555,321,0): 51, 31, 33, (555,322,0): 49, 29, 31, (555,323,0): 48, 28, 30, (555,324,0): 48, 28, 30, (555,325,0): 49, 29, 31, (555,326,0): 51, 31, 33, (555,327,0): 53, 33, 35, (555,328,0): 48, 28, 30, (555,329,0): 48, 28, 30, (555,330,0): 46, 26, 28, (555,331,0): 43, 23, 25, (555,332,0): 41, 21, 23, (555,333,0): 38, 18, 20, (555,334,0): 37, 17, 19, (555,335,0): 36, 16, 18, (555,336,0): 38, 16, 19, (555,337,0): 37, 15, 18, (555,338,0): 37, 15, 18, (555,339,0): 36, 14, 17, (555,340,0): 33, 12, 17, (555,341,0): 32, 11, 16, (555,342,0): 32, 11, 18, (555,343,0): 31, 10, 17, (555,344,0): 29, 10, 16, (555,345,0): 29, 10, 16, (555,346,0): 26, 9, 17, (555,347,0): 25, 8, 16, (555,348,0): 25, 8, 18, (555,349,0): 24, 7, 17, (555,350,0): 22, 6, 16, (555,351,0): 22, 6, 16, (555,352,0): 16, 3, 12, (555,353,0): 15, 4, 12, (555,354,0): 15, 4, 12, (555,355,0): 15, 4, 12, (555,356,0): 15, 4, 12, (555,357,0): 15, 4, 12, (555,358,0): 15, 4, 12, (555,359,0): 15, 4, 12, (555,360,0): 15, 4, 12, (555,361,0): 15, 4, 12, (555,362,0): 15, 4, 12, (555,363,0): 15, 4, 12, (555,364,0): 15, 4, 12, (555,365,0): 15, 4, 12, (555,366,0): 15, 4, 12, (555,367,0): 15, 4, 12, (555,368,0): 17, 6, 14, (555,369,0): 16, 5, 13, (555,370,0): 15, 4, 12, (555,371,0): 14, 3, 11, (555,372,0): 14, 3, 11, (555,373,0): 15, 4, 12, (555,374,0): 16, 5, 13, (555,375,0): 17, 6, 14, (555,376,0): 15, 4, 12, (555,377,0): 16, 5, 13, (555,378,0): 16, 5, 13, (555,379,0): 17, 6, 14, (555,380,0): 17, 6, 14, (555,381,0): 18, 7, 15, (555,382,0): 18, 7, 15, (555,383,0): 18, 7, 15, (555,384,0): 17, 6, 14, (555,385,0): 17, 6, 14, (555,386,0): 17, 6, 14, (555,387,0): 17, 6, 14, (555,388,0): 17, 6, 12, (555,389,0): 17, 6, 12, (555,390,0): 17, 6, 10, (555,391,0): 17, 6, 10, (555,392,0): 18, 7, 11, (555,393,0): 18, 7, 11, (555,394,0): 19, 9, 10, (555,395,0): 19, 9, 10, (555,396,0): 20, 10, 9, (555,397,0): 20, 10, 9, (555,398,0): 21, 11, 10, (555,399,0): 22, 10, 10, (555,400,0): 23, 9, 9, (555,401,0): 24, 8, 9, (555,402,0): 24, 8, 9, (555,403,0): 25, 9, 10, (555,404,0): 25, 9, 10, (555,405,0): 26, 10, 11, (555,406,0): 26, 10, 11, (555,407,0): 26, 10, 11, (555,408,0): 27, 11, 12, (555,409,0): 27, 11, 12, (555,410,0): 27, 11, 12, (555,411,0): 28, 12, 13, (555,412,0): 28, 12, 13, (555,413,0): 29, 13, 14, (555,414,0): 29, 13, 14, (555,415,0): 29, 13, 14, (555,416,0): 29, 15, 15, (555,417,0): 29, 15, 15, (555,418,0): 29, 15, 15, (555,419,0): 29, 15, 15, (555,420,0): 29, 15, 15, (555,421,0): 29, 15, 15, (555,422,0): 29, 15, 15, (555,423,0): 29, 15, 15, (555,424,0): 27, 13, 13, (555,425,0): 27, 13, 13, (555,426,0): 27, 13, 13, (555,427,0): 27, 13, 13, (555,428,0): 27, 13, 13, (555,429,0): 27, 13, 13, (555,430,0): 27, 13, 13, (555,431,0): 28, 12, 13, (555,432,0): 28, 10, 10, (555,433,0): 26, 8, 8, (555,434,0): 26, 6, 7, (555,435,0): 29, 7, 9, (555,436,0): 34, 9, 12, (555,437,0): 35, 10, 13, (555,438,0): 35, 9, 12, (555,439,0): 33, 7, 10, (555,440,0): 33, 7, 10, (555,441,0): 33, 7, 10, (555,442,0): 31, 6, 9, (555,443,0): 28, 6, 8, (555,444,0): 26, 6, 7, (555,445,0): 24, 6, 6, (555,446,0): 23, 5, 5, (555,447,0): 23, 5, 5, (555,448,0): 26, 8, 8, (555,449,0): 25, 7, 7, (555,450,0): 25, 7, 7, (555,451,0): 25, 7, 7, (555,452,0): 24, 6, 6, (555,453,0): 23, 5, 5, (555,454,0): 23, 5, 5, (555,455,0): 23, 5, 5, (555,456,0): 24, 6, 6, (555,457,0): 24, 6, 6, (555,458,0): 25, 7, 7, (555,459,0): 25, 7, 7, (555,460,0): 26, 8, 8, (555,461,0): 26, 8, 8, (555,462,0): 27, 9, 9, (555,463,0): 27, 9, 9, (555,464,0): 28, 8, 9, (555,465,0): 29, 7, 9, (555,466,0): 29, 7, 9, (555,467,0): 29, 7, 9, (555,468,0): 29, 7, 9, (555,469,0): 29, 7, 9, (555,470,0): 30, 8, 10, (555,471,0): 30, 8, 10, (555,472,0): 33, 11, 13, (555,473,0): 33, 11, 13, (555,474,0): 34, 12, 14, (555,475,0): 35, 13, 15, (555,476,0): 36, 14, 16, (555,477,0): 37, 15, 17, (555,478,0): 38, 16, 18, (555,479,0): 40, 16, 16, (555,480,0): 45, 19, 18, (555,481,0): 47, 19, 16, (555,482,0): 47, 19, 16, (555,483,0): 47, 19, 16, (555,484,0): 46, 18, 17, (555,485,0): 44, 16, 15, (555,486,0): 40, 14, 13, (555,487,0): 39, 13, 12, (555,488,0): 37, 13, 13, (555,489,0): 38, 14, 14, (555,490,0): 40, 15, 18, (555,491,0): 39, 17, 19, (555,492,0): 40, 18, 20, (555,493,0): 40, 18, 20, (555,494,0): 39, 17, 20, (555,495,0): 38, 16, 19, (555,496,0): 41, 16, 19, (555,497,0): 42, 17, 20, (555,498,0): 42, 17, 20, (555,499,0): 42, 17, 20, (555,500,0): 40, 15, 18, (555,501,0): 39, 14, 17, (555,502,0): 37, 12, 15, (555,503,0): 36, 11, 14, (555,504,0): 36, 11, 14, (555,505,0): 36, 11, 14, (555,506,0): 36, 11, 14, (555,507,0): 36, 11, 14, (555,508,0): 36, 11, 14, (555,509,0): 36, 11, 14, (555,510,0): 36, 11, 14, (555,511,0): 34, 12, 15, (555,512,0): 34, 13, 18, (555,513,0): 33, 12, 19, (555,514,0): 31, 10, 17, (555,515,0): 30, 9, 16, (555,516,0): 30, 9, 16, (555,517,0): 30, 9, 16, (555,518,0): 30, 9, 16, (555,519,0): 31, 10, 17, (555,520,0): 28, 7, 14, (555,521,0): 28, 7, 14, (555,522,0): 27, 6, 13, (555,523,0): 27, 6, 13, (555,524,0): 27, 6, 13, (555,525,0): 26, 5, 12, (555,526,0): 26, 5, 12, (555,527,0): 25, 5, 14, (555,528,0): 21, 4, 14, (555,529,0): 21, 5, 16, (555,530,0): 21, 5, 16, (555,531,0): 20, 4, 15, (555,532,0): 17, 4, 14, (555,533,0): 15, 2, 12, (555,534,0): 13, 0, 10, (555,535,0): 11, 0, 9, (555,536,0): 11, 0, 9, (555,537,0): 13, 1, 11, (555,538,0): 13, 3, 12, (555,539,0): 15, 5, 14, (555,540,0): 15, 5, 14, (555,541,0): 13, 3, 12, (555,542,0): 10, 3, 11, (555,543,0): 8, 1, 9, (555,544,0): 14, 2, 12, (555,545,0): 14, 2, 12, (555,546,0): 13, 1, 11, (555,547,0): 12, 0, 10, (555,548,0): 12, 0, 10, (555,549,0): 11, 0, 9, (555,550,0): 10, 0, 8, (555,551,0): 10, 0, 8, (555,552,0): 14, 2, 12, (555,553,0): 14, 2, 12, (555,554,0): 14, 2, 12, (555,555,0): 14, 2, 12, (555,556,0): 14, 2, 12, (555,557,0): 14, 2, 12, (555,558,0): 14, 2, 12, (555,559,0): 13, 3, 12, (555,560,0): 15, 5, 13, (555,561,0): 13, 6, 13, (555,562,0): 12, 5, 12, (555,563,0): 12, 5, 12, (555,564,0): 12, 5, 12, (555,565,0): 12, 5, 12, (555,566,0): 12, 5, 12, (555,567,0): 12, 5, 12, (555,568,0): 14, 7, 14, (555,569,0): 16, 9, 16, (555,570,0): 18, 11, 18, (555,571,0): 21, 14, 21, (555,572,0): 23, 16, 23, (555,573,0): 25, 18, 25, (555,574,0): 25, 18, 25, (555,575,0): 25, 19, 23, (555,576,0): 28, 17, 23, (555,577,0): 27, 16, 20, (555,578,0): 26, 15, 19, (555,579,0): 25, 14, 18, (555,580,0): 24, 13, 17, (555,581,0): 22, 11, 15, (555,582,0): 21, 10, 14, (555,583,0): 21, 10, 14, (555,584,0): 27, 16, 20, (555,585,0): 27, 16, 20, (555,586,0): 26, 15, 19, (555,587,0): 26, 15, 19, (555,588,0): 25, 14, 18, (555,589,0): 25, 14, 18, (555,590,0): 24, 13, 17, (555,591,0): 23, 14, 17, (555,592,0): 23, 14, 19, (555,593,0): 22, 16, 20, (555,594,0): 23, 17, 21, (555,595,0): 24, 18, 22, (555,596,0): 24, 18, 22, (555,597,0): 23, 17, 21, (555,598,0): 22, 16, 20, (555,599,0): 21, 15, 19, (556,0,0): 34, 53, 67, (556,1,0): 34, 53, 67, (556,2,0): 34, 53, 67, (556,3,0): 35, 54, 68, (556,4,0): 35, 54, 68, (556,5,0): 36, 55, 69, (556,6,0): 36, 55, 69, (556,7,0): 37, 56, 70, (556,8,0): 38, 57, 71, (556,9,0): 38, 57, 71, (556,10,0): 39, 58, 72, (556,11,0): 39, 58, 72, (556,12,0): 40, 59, 73, (556,13,0): 40, 59, 73, (556,14,0): 41, 60, 74, (556,15,0): 41, 60, 74, (556,16,0): 42, 60, 74, (556,17,0): 42, 60, 74, (556,18,0): 43, 61, 75, (556,19,0): 43, 61, 75, (556,20,0): 44, 62, 76, (556,21,0): 44, 62, 76, (556,22,0): 45, 63, 77, (556,23,0): 45, 63, 77, (556,24,0): 44, 62, 76, (556,25,0): 44, 62, 76, (556,26,0): 44, 62, 76, (556,27,0): 45, 63, 77, (556,28,0): 45, 63, 77, (556,29,0): 46, 64, 78, (556,30,0): 46, 64, 78, (556,31,0): 46, 64, 76, (556,32,0): 48, 64, 77, (556,33,0): 48, 65, 75, (556,34,0): 50, 64, 75, (556,35,0): 51, 65, 76, (556,36,0): 52, 64, 76, (556,37,0): 53, 65, 77, (556,38,0): 55, 65, 75, (556,39,0): 55, 65, 75, (556,40,0): 59, 66, 76, (556,41,0): 59, 66, 76, (556,42,0): 62, 66, 75, (556,43,0): 63, 67, 76, (556,44,0): 65, 68, 77, (556,45,0): 66, 69, 78, (556,46,0): 69, 69, 79, (556,47,0): 69, 69, 79, (556,48,0): 65, 68, 77, (556,49,0): 65, 68, 77, (556,50,0): 66, 69, 78, (556,51,0): 66, 69, 78, (556,52,0): 67, 70, 79, (556,53,0): 67, 70, 79, (556,54,0): 68, 71, 80, (556,55,0): 68, 71, 80, (556,56,0): 68, 71, 80, (556,57,0): 68, 71, 80, (556,58,0): 69, 72, 81, (556,59,0): 69, 72, 81, (556,60,0): 70, 73, 82, (556,61,0): 70, 73, 82, (556,62,0): 71, 74, 83, (556,63,0): 71, 74, 83, (556,64,0): 72, 70, 84, (556,65,0): 73, 71, 85, (556,66,0): 73, 71, 85, (556,67,0): 73, 71, 85, (556,68,0): 74, 72, 86, (556,69,0): 75, 73, 87, (556,70,0): 75, 73, 87, (556,71,0): 75, 73, 87, (556,72,0): 75, 73, 87, (556,73,0): 76, 74, 88, (556,74,0): 77, 75, 89, (556,75,0): 78, 76, 90, (556,76,0): 79, 77, 91, (556,77,0): 80, 78, 92, (556,78,0): 81, 79, 93, (556,79,0): 81, 79, 92, (556,80,0): 84, 78, 92, (556,81,0): 84, 78, 90, (556,82,0): 84, 78, 90, (556,83,0): 84, 78, 90, (556,84,0): 82, 79, 90, (556,85,0): 82, 79, 90, (556,86,0): 81, 79, 92, (556,87,0): 81, 79, 92, (556,88,0): 80, 78, 92, (556,89,0): 81, 79, 93, (556,90,0): 80, 79, 95, (556,91,0): 80, 79, 95, (556,92,0): 78, 80, 95, (556,93,0): 78, 80, 95, (556,94,0): 79, 81, 96, (556,95,0): 80, 82, 97, (556,96,0): 77, 80, 97, (556,97,0): 77, 80, 97, (556,98,0): 78, 81, 100, (556,99,0): 78, 81, 100, (556,100,0): 79, 82, 101, (556,101,0): 80, 83, 102, (556,102,0): 80, 82, 103, (556,103,0): 81, 83, 104, (556,104,0): 80, 82, 105, (556,105,0): 80, 82, 105, (556,106,0): 80, 82, 105, (556,107,0): 79, 81, 104, (556,108,0): 78, 80, 105, (556,109,0): 78, 80, 105, (556,110,0): 78, 80, 105, (556,111,0): 75, 79, 104, (556,112,0): 76, 80, 105, (556,113,0): 75, 81, 105, (556,114,0): 74, 80, 104, (556,115,0): 74, 80, 104, (556,116,0): 74, 80, 106, (556,117,0): 74, 80, 106, (556,118,0): 74, 80, 106, (556,119,0): 74, 80, 106, (556,120,0): 76, 81, 110, (556,121,0): 76, 81, 110, (556,122,0): 77, 82, 112, (556,123,0): 77, 82, 112, (556,124,0): 77, 82, 112, (556,125,0): 78, 83, 113, (556,126,0): 78, 83, 115, (556,127,0): 78, 83, 113, (556,128,0): 77, 83, 109, (556,129,0): 77, 83, 107, (556,130,0): 78, 84, 108, (556,131,0): 78, 84, 108, (556,132,0): 79, 85, 109, (556,133,0): 79, 85, 109, (556,134,0): 80, 86, 110, (556,135,0): 80, 86, 110, (556,136,0): 79, 85, 109, (556,137,0): 80, 86, 110, (556,138,0): 81, 87, 111, (556,139,0): 82, 88, 112, (556,140,0): 82, 88, 112, (556,141,0): 81, 87, 111, (556,142,0): 80, 86, 110, (556,143,0): 79, 85, 109, (556,144,0): 82, 83, 111, (556,145,0): 82, 83, 111, (556,146,0): 82, 83, 113, (556,147,0): 82, 83, 113, (556,148,0): 80, 84, 113, (556,149,0): 80, 84, 113, (556,150,0): 80, 83, 114, (556,151,0): 79, 84, 114, (556,152,0): 81, 86, 118, (556,153,0): 81, 86, 118, (556,154,0): 80, 86, 118, (556,155,0): 81, 87, 119, (556,156,0): 82, 88, 122, (556,157,0): 82, 88, 122, (556,158,0): 80, 89, 122, (556,159,0): 81, 89, 125, (556,160,0): 81, 86, 124, (556,161,0): 81, 86, 124, (556,162,0): 81, 86, 124, (556,163,0): 81, 86, 124, (556,164,0): 81, 86, 124, (556,165,0): 81, 86, 124, (556,166,0): 81, 86, 124, (556,167,0): 81, 86, 124, (556,168,0): 82, 87, 125, (556,169,0): 82, 87, 125, (556,170,0): 82, 87, 125, (556,171,0): 82, 87, 125, (556,172,0): 82, 87, 125, (556,173,0): 82, 87, 125, (556,174,0): 82, 87, 125, (556,175,0): 80, 88, 125, (556,176,0): 79, 91, 129, (556,177,0): 78, 92, 129, (556,178,0): 78, 92, 129, (556,179,0): 79, 93, 130, (556,180,0): 79, 93, 132, (556,181,0): 80, 94, 133, (556,182,0): 80, 94, 133, (556,183,0): 80, 94, 133, (556,184,0): 80, 93, 135, (556,185,0): 80, 93, 135, (556,186,0): 80, 93, 137, (556,187,0): 80, 93, 137, (556,188,0): 80, 93, 137, (556,189,0): 80, 93, 137, (556,190,0): 80, 93, 138, (556,191,0): 80, 93, 138, (556,192,0): 82, 95, 140, (556,193,0): 82, 95, 140, (556,194,0): 82, 95, 140, (556,195,0): 81, 95, 140, (556,196,0): 81, 95, 140, (556,197,0): 81, 95, 140, (556,198,0): 79, 96, 140, (556,199,0): 79, 96, 140, (556,200,0): 79, 96, 140, (556,201,0): 79, 98, 141, (556,202,0): 79, 98, 141, (556,203,0): 79, 98, 141, (556,204,0): 78, 99, 142, (556,205,0): 79, 100, 143, (556,206,0): 79, 100, 143, (556,207,0): 79, 100, 143, (556,208,0): 77, 100, 144, (556,209,0): 77, 100, 144, (556,210,0): 78, 101, 145, (556,211,0): 79, 102, 146, (556,212,0): 80, 102, 149, (556,213,0): 81, 103, 150, (556,214,0): 82, 104, 153, (556,215,0): 82, 104, 153, (556,216,0): 82, 104, 154, (556,217,0): 82, 104, 154, (556,218,0): 84, 106, 156, (556,219,0): 85, 106, 159, (556,220,0): 86, 107, 160, (556,221,0): 88, 109, 162, (556,222,0): 89, 110, 165, (556,223,0): 89, 110, 163, (556,224,0): 91, 112, 165, (556,225,0): 92, 113, 166, (556,226,0): 92, 113, 168, (556,227,0): 93, 114, 169, (556,228,0): 94, 115, 172, (556,229,0): 95, 115, 174, (556,230,0): 96, 116, 175, (556,231,0): 97, 116, 175, (556,232,0): 101, 120, 178, (556,233,0): 104, 121, 177, (556,234,0): 105, 122, 176, (556,235,0): 105, 122, 174, (556,236,0): 103, 121, 169, (556,237,0): 98, 116, 162, (556,238,0): 93, 112, 155, (556,239,0): 91, 108, 151, (556,240,0): 92, 107, 148, (556,241,0): 89, 104, 145, (556,242,0): 87, 102, 143, (556,243,0): 86, 103, 146, (556,244,0): 93, 110, 154, (556,245,0): 99, 117, 163, (556,246,0): 103, 121, 169, (556,247,0): 103, 123, 174, (556,248,0): 106, 127, 180, (556,249,0): 106, 127, 182, (556,250,0): 104, 126, 184, (556,251,0): 102, 126, 186, (556,252,0): 102, 126, 188, (556,253,0): 102, 127, 191, (556,254,0): 102, 127, 191, (556,255,0): 102, 127, 191, (556,256,0): 107, 128, 193, (556,257,0): 107, 128, 193, (556,258,0): 108, 127, 193, (556,259,0): 107, 127, 190, (556,260,0): 106, 126, 189, (556,261,0): 106, 126, 187, (556,262,0): 107, 126, 185, (556,263,0): 106, 125, 184, (556,264,0): 106, 122, 181, (556,265,0): 106, 123, 179, (556,266,0): 106, 123, 179, (556,267,0): 106, 123, 177, (556,268,0): 107, 122, 177, (556,269,0): 107, 123, 175, (556,270,0): 107, 123, 175, (556,271,0): 106, 122, 173, (556,272,0): 108, 124, 175, (556,273,0): 108, 124, 175, (556,274,0): 108, 124, 176, (556,275,0): 107, 124, 176, (556,276,0): 107, 124, 180, (556,277,0): 105, 124, 180, (556,278,0): 107, 123, 182, (556,279,0): 107, 124, 180, (556,280,0): 110, 125, 182, (556,281,0): 112, 125, 180, (556,282,0): 115, 124, 181, (556,283,0): 117, 124, 179, (556,284,0): 119, 124, 179, (556,285,0): 121, 124, 177, (556,286,0): 123, 125, 176, (556,287,0): 124, 124, 174, (556,288,0): 126, 124, 173, (556,289,0): 127, 123, 173, (556,290,0): 126, 122, 172, (556,291,0): 128, 122, 170, (556,292,0): 128, 120, 169, (556,293,0): 128, 120, 167, (556,294,0): 129, 120, 167, (556,295,0): 128, 119, 166, (556,296,0): 133, 120, 166, (556,297,0): 132, 119, 165, (556,298,0): 133, 117, 162, (556,299,0): 133, 116, 161, (556,300,0): 132, 113, 158, (556,301,0): 127, 108, 153, (556,302,0): 121, 100, 143, (556,303,0): 115, 93, 129, (556,304,0): 102, 78, 100, (556,305,0): 95, 71, 85, (556,306,0): 87, 60, 75, (556,307,0): 78, 52, 65, (556,308,0): 73, 45, 59, (556,309,0): 71, 40, 55, (556,310,0): 67, 37, 49, (556,311,0): 64, 34, 46, (556,312,0): 59, 29, 39, (556,313,0): 59, 29, 37, (556,314,0): 57, 30, 35, (556,315,0): 56, 29, 34, (556,316,0): 54, 29, 33, (556,317,0): 51, 29, 32, (556,318,0): 49, 29, 30, (556,319,0): 49, 29, 30, (556,320,0): 50, 30, 32, (556,321,0): 49, 29, 31, (556,322,0): 47, 27, 29, (556,323,0): 46, 26, 28, (556,324,0): 46, 26, 28, (556,325,0): 47, 27, 29, (556,326,0): 48, 28, 30, (556,327,0): 50, 30, 32, (556,328,0): 46, 26, 28, (556,329,0): 45, 25, 27, (556,330,0): 44, 24, 26, (556,331,0): 42, 22, 24, (556,332,0): 40, 20, 22, (556,333,0): 38, 18, 20, (556,334,0): 37, 17, 19, (556,335,0): 36, 16, 18, (556,336,0): 38, 16, 19, (556,337,0): 39, 14, 18, (556,338,0): 37, 15, 18, (556,339,0): 36, 14, 17, (556,340,0): 34, 11, 17, (556,341,0): 33, 10, 16, (556,342,0): 32, 11, 18, (556,343,0): 31, 10, 17, (556,344,0): 30, 11, 17, (556,345,0): 30, 11, 17, (556,346,0): 29, 9, 18, (556,347,0): 28, 8, 17, (556,348,0): 24, 7, 17, (556,349,0): 23, 6, 16, (556,350,0): 22, 5, 15, (556,351,0): 21, 5, 15, (556,352,0): 16, 3, 12, (556,353,0): 15, 4, 12, (556,354,0): 15, 4, 12, (556,355,0): 15, 4, 12, (556,356,0): 15, 4, 12, (556,357,0): 15, 4, 12, (556,358,0): 15, 4, 12, (556,359,0): 15, 4, 12, (556,360,0): 15, 4, 12, (556,361,0): 15, 4, 12, (556,362,0): 15, 4, 12, (556,363,0): 15, 4, 12, (556,364,0): 15, 4, 12, (556,365,0): 15, 4, 12, (556,366,0): 15, 4, 12, (556,367,0): 15, 4, 12, (556,368,0): 16, 5, 13, (556,369,0): 15, 4, 12, (556,370,0): 14, 3, 11, (556,371,0): 13, 2, 10, (556,372,0): 13, 2, 10, (556,373,0): 14, 3, 11, (556,374,0): 15, 4, 12, (556,375,0): 16, 5, 13, (556,376,0): 15, 4, 12, (556,377,0): 15, 4, 12, (556,378,0): 15, 4, 12, (556,379,0): 16, 5, 13, (556,380,0): 16, 5, 13, (556,381,0): 17, 6, 14, (556,382,0): 17, 6, 14, (556,383,0): 18, 7, 15, (556,384,0): 17, 6, 14, (556,385,0): 17, 6, 14, (556,386,0): 17, 6, 14, (556,387,0): 17, 6, 14, (556,388,0): 17, 6, 12, (556,389,0): 17, 6, 12, (556,390,0): 17, 6, 10, (556,391,0): 17, 6, 10, (556,392,0): 18, 7, 11, (556,393,0): 18, 7, 11, (556,394,0): 19, 9, 10, (556,395,0): 19, 9, 10, (556,396,0): 20, 10, 9, (556,397,0): 20, 10, 9, (556,398,0): 21, 11, 10, (556,399,0): 22, 10, 10, (556,400,0): 23, 9, 9, (556,401,0): 24, 8, 9, (556,402,0): 24, 8, 9, (556,403,0): 25, 9, 10, (556,404,0): 25, 9, 10, (556,405,0): 26, 10, 11, (556,406,0): 26, 10, 11, (556,407,0): 26, 10, 11, (556,408,0): 27, 11, 12, (556,409,0): 27, 11, 12, (556,410,0): 27, 11, 12, (556,411,0): 28, 12, 13, (556,412,0): 28, 12, 13, (556,413,0): 29, 13, 14, (556,414,0): 29, 13, 14, (556,415,0): 29, 13, 14, (556,416,0): 28, 14, 14, (556,417,0): 28, 14, 14, (556,418,0): 28, 14, 14, (556,419,0): 28, 14, 14, (556,420,0): 28, 14, 14, (556,421,0): 28, 14, 14, (556,422,0): 28, 14, 14, (556,423,0): 28, 14, 14, (556,424,0): 25, 11, 11, (556,425,0): 25, 11, 11, (556,426,0): 25, 11, 11, (556,427,0): 25, 11, 11, (556,428,0): 25, 11, 11, (556,429,0): 25, 11, 11, (556,430,0): 25, 11, 11, (556,431,0): 26, 10, 11, (556,432,0): 28, 10, 10, (556,433,0): 27, 7, 8, (556,434,0): 27, 5, 7, (556,435,0): 29, 7, 9, (556,436,0): 34, 9, 12, (556,437,0): 37, 11, 14, (556,438,0): 38, 9, 13, (556,439,0): 36, 7, 11, (556,440,0): 35, 6, 10, (556,441,0): 33, 7, 10, (556,442,0): 31, 6, 9, (556,443,0): 28, 6, 8, (556,444,0): 26, 6, 7, (556,445,0): 24, 6, 6, (556,446,0): 23, 5, 5, (556,447,0): 21, 5, 5, (556,448,0): 23, 7, 7, (556,449,0): 23, 7, 7, (556,450,0): 23, 7, 7, (556,451,0): 22, 6, 6, (556,452,0): 21, 5, 5, (556,453,0): 21, 5, 5, (556,454,0): 21, 5, 5, (556,455,0): 20, 4, 4, (556,456,0): 22, 6, 6, (556,457,0): 22, 6, 6, (556,458,0): 23, 7, 7, (556,459,0): 23, 7, 7, (556,460,0): 24, 8, 8, (556,461,0): 24, 8, 8, (556,462,0): 25, 9, 9, (556,463,0): 27, 9, 9, (556,464,0): 29, 9, 10, (556,465,0): 30, 8, 10, (556,466,0): 29, 7, 9, (556,467,0): 29, 7, 9, (556,468,0): 29, 7, 9, (556,469,0): 29, 7, 9, (556,470,0): 29, 7, 9, (556,471,0): 29, 7, 9, (556,472,0): 32, 10, 12, (556,473,0): 32, 10, 12, (556,474,0): 33, 11, 13, (556,475,0): 34, 12, 14, (556,476,0): 35, 13, 15, (556,477,0): 36, 14, 16, (556,478,0): 37, 15, 17, (556,479,0): 39, 15, 15, (556,480,0): 47, 19, 16, (556,481,0): 48, 19, 15, (556,482,0): 48, 18, 16, (556,483,0): 47, 17, 15, (556,484,0): 45, 17, 14, (556,485,0): 43, 15, 12, (556,486,0): 39, 13, 12, (556,487,0): 37, 11, 10, (556,488,0): 38, 12, 13, (556,489,0): 38, 14, 14, (556,490,0): 40, 16, 16, (556,491,0): 41, 17, 17, (556,492,0): 40, 18, 20, (556,493,0): 40, 18, 20, (556,494,0): 39, 17, 19, (556,495,0): 38, 16, 18, (556,496,0): 40, 18, 20, (556,497,0): 40, 18, 20, (556,498,0): 40, 18, 20, (556,499,0): 40, 18, 20, (556,500,0): 39, 17, 19, (556,501,0): 37, 15, 17, (556,502,0): 35, 13, 15, (556,503,0): 34, 12, 14, (556,504,0): 34, 12, 14, (556,505,0): 34, 12, 14, (556,506,0): 34, 12, 14, (556,507,0): 34, 12, 14, (556,508,0): 34, 12, 14, (556,509,0): 34, 12, 14, (556,510,0): 34, 12, 14, (556,511,0): 34, 12, 15, (556,512,0): 33, 12, 17, (556,513,0): 32, 11, 18, (556,514,0): 31, 10, 17, (556,515,0): 30, 9, 16, (556,516,0): 29, 8, 15, (556,517,0): 29, 8, 15, (556,518,0): 30, 9, 16, (556,519,0): 30, 9, 16, (556,520,0): 28, 7, 14, (556,521,0): 28, 7, 14, (556,522,0): 27, 6, 13, (556,523,0): 27, 6, 13, (556,524,0): 26, 5, 12, (556,525,0): 25, 4, 11, (556,526,0): 25, 4, 11, (556,527,0): 23, 3, 12, (556,528,0): 21, 4, 14, (556,529,0): 20, 4, 15, (556,530,0): 18, 5, 15, (556,531,0): 18, 5, 15, (556,532,0): 16, 3, 13, (556,533,0): 14, 1, 11, (556,534,0): 11, 0, 9, (556,535,0): 10, 0, 8, (556,536,0): 11, 0, 9, (556,537,0): 12, 2, 11, (556,538,0): 13, 3, 12, (556,539,0): 15, 5, 14, (556,540,0): 13, 6, 14, (556,541,0): 11, 4, 12, (556,542,0): 10, 3, 11, (556,543,0): 8, 1, 9, (556,544,0): 14, 2, 12, (556,545,0): 14, 2, 12, (556,546,0): 13, 1, 11, (556,547,0): 12, 0, 10, (556,548,0): 12, 0, 10, (556,549,0): 11, 0, 9, (556,550,0): 10, 0, 8, (556,551,0): 10, 0, 8, (556,552,0): 14, 2, 12, (556,553,0): 14, 2, 12, (556,554,0): 14, 2, 12, (556,555,0): 14, 2, 12, (556,556,0): 14, 2, 12, (556,557,0): 14, 2, 12, (556,558,0): 14, 2, 12, (556,559,0): 13, 3, 12, (556,560,0): 13, 3, 11, (556,561,0): 12, 5, 12, (556,562,0): 12, 5, 12, (556,563,0): 13, 6, 13, (556,564,0): 13, 6, 13, (556,565,0): 13, 6, 13, (556,566,0): 12, 5, 12, (556,567,0): 12, 5, 12, (556,568,0): 13, 6, 13, (556,569,0): 15, 8, 15, (556,570,0): 18, 11, 18, (556,571,0): 21, 14, 21, (556,572,0): 24, 17, 24, (556,573,0): 25, 18, 25, (556,574,0): 26, 19, 26, (556,575,0): 26, 20, 24, (556,576,0): 28, 17, 23, (556,577,0): 27, 16, 20, (556,578,0): 26, 15, 19, (556,579,0): 25, 14, 18, (556,580,0): 24, 13, 17, (556,581,0): 22, 11, 15, (556,582,0): 21, 10, 14, (556,583,0): 21, 10, 14, (556,584,0): 27, 16, 20, (556,585,0): 27, 16, 20, (556,586,0): 26, 15, 19, (556,587,0): 26, 15, 19, (556,588,0): 25, 14, 18, (556,589,0): 25, 14, 18, (556,590,0): 24, 13, 17, (556,591,0): 23, 14, 17, (556,592,0): 23, 14, 17, (556,593,0): 22, 16, 18, (556,594,0): 23, 17, 19, (556,595,0): 24, 18, 20, (556,596,0): 24, 18, 20, (556,597,0): 23, 17, 19, (556,598,0): 22, 16, 18, (556,599,0): 21, 15, 17, (557,0,0): 35, 54, 68, (557,1,0): 35, 54, 68, (557,2,0): 35, 54, 68, (557,3,0): 36, 55, 69, (557,4,0): 36, 55, 69, (557,5,0): 37, 56, 70, (557,6,0): 37, 56, 70, (557,7,0): 37, 56, 70, (557,8,0): 38, 57, 71, (557,9,0): 38, 57, 71, (557,10,0): 39, 58, 72, (557,11,0): 39, 58, 72, (557,12,0): 40, 59, 73, (557,13,0): 40, 59, 73, (557,14,0): 41, 60, 74, (557,15,0): 41, 60, 74, (557,16,0): 42, 60, 74, (557,17,0): 42, 60, 74, (557,18,0): 43, 61, 75, (557,19,0): 43, 61, 75, (557,20,0): 44, 62, 76, (557,21,0): 44, 62, 76, (557,22,0): 45, 63, 77, (557,23,0): 45, 63, 77, (557,24,0): 44, 62, 76, (557,25,0): 44, 62, 76, (557,26,0): 44, 62, 76, (557,27,0): 45, 63, 77, (557,28,0): 45, 63, 77, (557,29,0): 46, 64, 78, (557,30,0): 46, 64, 78, (557,31,0): 46, 64, 76, (557,32,0): 48, 64, 77, (557,33,0): 48, 65, 75, (557,34,0): 50, 64, 75, (557,35,0): 51, 65, 76, (557,36,0): 52, 64, 76, (557,37,0): 53, 65, 77, (557,38,0): 55, 65, 75, (557,39,0): 55, 65, 75, (557,40,0): 58, 65, 75, (557,41,0): 59, 66, 76, (557,42,0): 62, 66, 75, (557,43,0): 63, 67, 76, (557,44,0): 65, 68, 77, (557,45,0): 66, 69, 78, (557,46,0): 69, 69, 79, (557,47,0): 69, 69, 79, (557,48,0): 65, 68, 77, (557,49,0): 65, 68, 77, (557,50,0): 66, 69, 78, (557,51,0): 66, 69, 78, (557,52,0): 67, 70, 79, (557,53,0): 67, 70, 79, (557,54,0): 68, 71, 80, (557,55,0): 68, 71, 80, (557,56,0): 68, 71, 80, (557,57,0): 68, 71, 80, (557,58,0): 69, 72, 81, (557,59,0): 69, 72, 81, (557,60,0): 70, 73, 82, (557,61,0): 70, 73, 82, (557,62,0): 71, 74, 83, (557,63,0): 71, 74, 83, (557,64,0): 72, 70, 84, (557,65,0): 72, 70, 84, (557,66,0): 72, 70, 84, (557,67,0): 73, 71, 85, (557,68,0): 73, 71, 85, (557,69,0): 74, 72, 86, (557,70,0): 74, 72, 86, (557,71,0): 75, 73, 87, (557,72,0): 75, 73, 87, (557,73,0): 75, 73, 87, (557,74,0): 76, 74, 88, (557,75,0): 77, 75, 89, (557,76,0): 78, 76, 90, (557,77,0): 79, 77, 91, (557,78,0): 80, 78, 92, (557,79,0): 80, 78, 91, (557,80,0): 84, 78, 92, (557,81,0): 83, 77, 89, (557,82,0): 82, 76, 88, (557,83,0): 82, 76, 88, (557,84,0): 80, 77, 88, (557,85,0): 80, 77, 88, (557,86,0): 80, 78, 91, (557,87,0): 81, 79, 92, (557,88,0): 79, 77, 91, (557,89,0): 81, 79, 93, (557,90,0): 81, 80, 96, (557,91,0): 81, 80, 96, (557,92,0): 77, 79, 94, (557,93,0): 76, 78, 93, (557,94,0): 78, 80, 95, (557,95,0): 79, 81, 96, (557,96,0): 77, 80, 97, (557,97,0): 78, 81, 98, (557,98,0): 78, 81, 100, (557,99,0): 78, 81, 100, (557,100,0): 78, 81, 100, (557,101,0): 79, 82, 101, (557,102,0): 79, 81, 102, (557,103,0): 79, 81, 102, (557,104,0): 80, 82, 105, (557,105,0): 79, 81, 104, (557,106,0): 79, 81, 104, (557,107,0): 78, 80, 103, (557,108,0): 78, 80, 105, (557,109,0): 77, 79, 104, (557,110,0): 77, 79, 104, (557,111,0): 75, 79, 104, (557,112,0): 76, 80, 105, (557,113,0): 75, 81, 105, (557,114,0): 74, 80, 104, (557,115,0): 74, 80, 104, (557,116,0): 73, 79, 105, (557,117,0): 73, 79, 105, (557,118,0): 73, 79, 105, (557,119,0): 73, 79, 105, (557,120,0): 77, 82, 111, (557,121,0): 77, 82, 111, (557,122,0): 77, 82, 112, (557,123,0): 77, 82, 112, (557,124,0): 77, 82, 112, (557,125,0): 77, 82, 112, (557,126,0): 77, 82, 114, (557,127,0): 77, 82, 112, (557,128,0): 76, 82, 108, (557,129,0): 76, 82, 106, (557,130,0): 77, 83, 107, (557,131,0): 77, 83, 107, (557,132,0): 78, 84, 108, (557,133,0): 78, 84, 108, (557,134,0): 79, 85, 109, (557,135,0): 79, 85, 109, (557,136,0): 78, 84, 108, (557,137,0): 79, 85, 109, (557,138,0): 80, 86, 110, (557,139,0): 81, 87, 111, (557,140,0): 81, 87, 111, (557,141,0): 80, 86, 110, (557,142,0): 79, 85, 109, (557,143,0): 78, 84, 108, (557,144,0): 83, 84, 112, (557,145,0): 83, 84, 112, (557,146,0): 83, 84, 114, (557,147,0): 83, 84, 114, (557,148,0): 81, 85, 114, (557,149,0): 81, 85, 114, (557,150,0): 81, 84, 115, (557,151,0): 81, 84, 115, (557,152,0): 81, 86, 118, (557,153,0): 82, 87, 119, (557,154,0): 81, 87, 119, (557,155,0): 82, 88, 120, (557,156,0): 82, 88, 122, (557,157,0): 83, 89, 123, (557,158,0): 81, 90, 123, (557,159,0): 81, 90, 123, (557,160,0): 81, 86, 124, (557,161,0): 81, 86, 124, (557,162,0): 81, 86, 124, (557,163,0): 81, 86, 124, (557,164,0): 81, 86, 124, (557,165,0): 81, 86, 124, (557,166,0): 81, 86, 124, (557,167,0): 81, 86, 124, (557,168,0): 82, 87, 125, (557,169,0): 82, 87, 125, (557,170,0): 82, 87, 125, (557,171,0): 82, 87, 125, (557,172,0): 82, 87, 125, (557,173,0): 82, 87, 125, (557,174,0): 82, 87, 125, (557,175,0): 80, 88, 125, (557,176,0): 78, 90, 128, (557,177,0): 77, 91, 128, (557,178,0): 77, 91, 128, (557,179,0): 78, 92, 129, (557,180,0): 78, 92, 131, (557,181,0): 79, 93, 132, (557,182,0): 79, 93, 132, (557,183,0): 79, 93, 132, (557,184,0): 79, 92, 134, (557,185,0): 79, 92, 134, (557,186,0): 79, 92, 136, (557,187,0): 79, 92, 136, (557,188,0): 79, 92, 136, (557,189,0): 79, 92, 136, (557,190,0): 79, 92, 137, (557,191,0): 79, 92, 137, (557,192,0): 82, 95, 140, (557,193,0): 82, 95, 140, (557,194,0): 82, 95, 140, (557,195,0): 82, 95, 140, (557,196,0): 81, 95, 140, (557,197,0): 81, 95, 140, (557,198,0): 81, 95, 140, (557,199,0): 79, 96, 140, (557,200,0): 79, 96, 140, (557,201,0): 79, 96, 140, (557,202,0): 78, 97, 140, (557,203,0): 79, 98, 141, (557,204,0): 77, 98, 141, (557,205,0): 78, 99, 142, (557,206,0): 78, 99, 142, (557,207,0): 79, 100, 143, (557,208,0): 76, 99, 143, (557,209,0): 76, 99, 143, (557,210,0): 77, 100, 144, (557,211,0): 78, 100, 147, (557,212,0): 79, 101, 148, (557,213,0): 80, 102, 151, (557,214,0): 81, 103, 152, (557,215,0): 81, 103, 153, (557,216,0): 82, 104, 154, (557,217,0): 83, 104, 157, (557,218,0): 84, 105, 158, (557,219,0): 85, 106, 161, (557,220,0): 86, 107, 162, (557,221,0): 87, 108, 165, (557,222,0): 88, 109, 166, (557,223,0): 88, 109, 164, (557,224,0): 92, 114, 164, (557,225,0): 92, 114, 164, (557,226,0): 92, 113, 166, (557,227,0): 93, 114, 169, (557,228,0): 93, 114, 171, (557,229,0): 93, 113, 172, (557,230,0): 94, 114, 175, (557,231,0): 94, 114, 175, (557,232,0): 99, 119, 180, (557,233,0): 100, 120, 181, (557,234,0): 103, 123, 182, (557,235,0): 104, 125, 182, (557,236,0): 103, 124, 179, (557,237,0): 100, 121, 174, (557,238,0): 97, 119, 169, (557,239,0): 95, 115, 165, (557,240,0): 98, 115, 167, (557,241,0): 95, 112, 164, (557,242,0): 92, 112, 163, (557,243,0): 94, 114, 167, (557,244,0): 99, 119, 172, (557,245,0): 103, 124, 179, (557,246,0): 105, 126, 183, (557,247,0): 105, 127, 185, (557,248,0): 109, 131, 191, (557,249,0): 106, 130, 192, (557,250,0): 105, 129, 193, (557,251,0): 103, 128, 192, (557,252,0): 103, 128, 194, (557,253,0): 102, 129, 196, (557,254,0): 103, 130, 197, (557,255,0): 106, 131, 198, (557,256,0): 105, 129, 193, (557,257,0): 106, 127, 190, (557,258,0): 107, 127, 190, (557,259,0): 106, 126, 189, (557,260,0): 106, 126, 187, (557,261,0): 105, 125, 186, (557,262,0): 106, 125, 184, (557,263,0): 106, 125, 184, (557,264,0): 105, 121, 181, (557,265,0): 105, 121, 180, (557,266,0): 105, 121, 180, (557,267,0): 104, 121, 177, (557,268,0): 105, 120, 177, (557,269,0): 104, 119, 176, (557,270,0): 104, 119, 174, (557,271,0): 104, 119, 174, (557,272,0): 107, 123, 175, (557,273,0): 106, 124, 174, (557,274,0): 106, 123, 175, (557,275,0): 104, 124, 177, (557,276,0): 104, 123, 179, (557,277,0): 104, 123, 179, (557,278,0): 104, 123, 181, (557,279,0): 104, 123, 181, (557,280,0): 108, 124, 183, (557,281,0): 110, 125, 182, (557,282,0): 113, 123, 182, (557,283,0): 114, 123, 180, (557,284,0): 117, 124, 179, (557,285,0): 119, 124, 179, (557,286,0): 121, 124, 177, (557,287,0): 122, 124, 175, (557,288,0): 125, 123, 173, (557,289,0): 125, 121, 171, (557,290,0): 125, 121, 171, (557,291,0): 124, 120, 170, (557,292,0): 126, 119, 170, (557,293,0): 126, 118, 167, (557,294,0): 126, 118, 167, (557,295,0): 127, 118, 165, (557,296,0): 132, 120, 166, (557,297,0): 132, 119, 165, (557,298,0): 132, 116, 161, (557,299,0): 132, 115, 160, (557,300,0): 129, 110, 155, (557,301,0): 121, 102, 147, (557,302,0): 113, 92, 135, (557,303,0): 107, 85, 121, (557,304,0): 92, 70, 91, (557,305,0): 86, 64, 77, (557,306,0): 76, 54, 66, (557,307,0): 70, 46, 59, (557,308,0): 67, 41, 54, (557,309,0): 65, 37, 49, (557,310,0): 62, 34, 46, (557,311,0): 62, 32, 42, (557,312,0): 59, 29, 37, (557,313,0): 59, 29, 37, (557,314,0): 57, 30, 35, (557,315,0): 56, 29, 34, (557,316,0): 54, 29, 33, (557,317,0): 52, 27, 31, (557,318,0): 48, 26, 28, (557,319,0): 46, 26, 27, (557,320,0): 48, 28, 30, (557,321,0): 47, 27, 29, (557,322,0): 46, 26, 28, (557,323,0): 45, 25, 27, (557,324,0): 45, 25, 27, (557,325,0): 45, 25, 27, (557,326,0): 45, 25, 27, (557,327,0): 46, 26, 28, (557,328,0): 43, 23, 25, (557,329,0): 43, 23, 25, (557,330,0): 42, 22, 24, (557,331,0): 41, 21, 23, (557,332,0): 39, 19, 21, (557,333,0): 38, 18, 20, (557,334,0): 37, 17, 19, (557,335,0): 37, 17, 19, (557,336,0): 38, 16, 19, (557,337,0): 39, 14, 18, (557,338,0): 37, 15, 18, (557,339,0): 36, 14, 17, (557,340,0): 34, 11, 17, (557,341,0): 33, 10, 16, (557,342,0): 32, 11, 18, (557,343,0): 31, 10, 17, (557,344,0): 31, 12, 18, (557,345,0): 30, 11, 17, (557,346,0): 29, 9, 18, (557,347,0): 28, 8, 17, (557,348,0): 24, 7, 17, (557,349,0): 23, 6, 16, (557,350,0): 22, 5, 15, (557,351,0): 20, 4, 14, (557,352,0): 16, 3, 12, (557,353,0): 15, 4, 12, (557,354,0): 15, 4, 12, (557,355,0): 15, 4, 12, (557,356,0): 15, 4, 12, (557,357,0): 15, 4, 12, (557,358,0): 15, 4, 12, (557,359,0): 15, 4, 12, (557,360,0): 14, 3, 11, (557,361,0): 14, 3, 11, (557,362,0): 14, 3, 11, (557,363,0): 14, 3, 11, (557,364,0): 14, 3, 11, (557,365,0): 14, 3, 11, (557,366,0): 14, 3, 11, (557,367,0): 14, 3, 11, (557,368,0): 16, 5, 13, (557,369,0): 15, 4, 12, (557,370,0): 14, 3, 11, (557,371,0): 13, 2, 10, (557,372,0): 13, 2, 10, (557,373,0): 14, 3, 11, (557,374,0): 15, 4, 12, (557,375,0): 16, 5, 13, (557,376,0): 14, 3, 11, (557,377,0): 15, 4, 12, (557,378,0): 15, 4, 12, (557,379,0): 15, 4, 12, (557,380,0): 16, 5, 13, (557,381,0): 17, 6, 14, (557,382,0): 17, 6, 14, (557,383,0): 17, 6, 14, (557,384,0): 17, 6, 14, (557,385,0): 17, 6, 14, (557,386,0): 17, 6, 14, (557,387,0): 17, 6, 14, (557,388,0): 17, 6, 12, (557,389,0): 17, 6, 12, (557,390,0): 17, 6, 10, (557,391,0): 17, 6, 10, (557,392,0): 18, 7, 11, (557,393,0): 18, 7, 11, (557,394,0): 19, 9, 10, (557,395,0): 19, 9, 10, (557,396,0): 20, 10, 9, (557,397,0): 20, 10, 9, (557,398,0): 21, 11, 10, (557,399,0): 22, 10, 10, (557,400,0): 23, 9, 9, (557,401,0): 24, 8, 9, (557,402,0): 24, 8, 9, (557,403,0): 25, 9, 10, (557,404,0): 25, 9, 10, (557,405,0): 26, 10, 11, (557,406,0): 26, 10, 11, (557,407,0): 26, 10, 11, (557,408,0): 27, 11, 12, (557,409,0): 27, 11, 12, (557,410,0): 27, 11, 12, (557,411,0): 28, 12, 13, (557,412,0): 28, 12, 13, (557,413,0): 29, 13, 14, (557,414,0): 29, 13, 14, (557,415,0): 29, 13, 14, (557,416,0): 27, 13, 13, (557,417,0): 27, 13, 13, (557,418,0): 27, 13, 13, (557,419,0): 27, 13, 13, (557,420,0): 27, 13, 13, (557,421,0): 27, 13, 13, (557,422,0): 27, 13, 13, (557,423,0): 27, 13, 13, (557,424,0): 24, 10, 10, (557,425,0): 24, 10, 10, (557,426,0): 24, 10, 10, (557,427,0): 24, 10, 10, (557,428,0): 24, 10, 10, (557,429,0): 24, 10, 10, (557,430,0): 24, 10, 10, (557,431,0): 25, 9, 10, (557,432,0): 29, 11, 11, (557,433,0): 28, 8, 9, (557,434,0): 28, 6, 8, (557,435,0): 32, 7, 10, (557,436,0): 36, 10, 13, (557,437,0): 38, 12, 15, (557,438,0): 38, 9, 13, (557,439,0): 37, 8, 12, (557,440,0): 35, 6, 10, (557,441,0): 35, 6, 10, (557,442,0): 32, 6, 9, (557,443,0): 28, 6, 8, (557,444,0): 26, 6, 7, (557,445,0): 24, 6, 6, (557,446,0): 21, 5, 5, (557,447,0): 21, 5, 5, (557,448,0): 23, 7, 7, (557,449,0): 22, 6, 6, (557,450,0): 22, 6, 6, (557,451,0): 21, 5, 5, (557,452,0): 21, 5, 5, (557,453,0): 20, 4, 4, (557,454,0): 20, 4, 4, (557,455,0): 20, 4, 4, (557,456,0): 22, 6, 6, (557,457,0): 22, 6, 6, (557,458,0): 23, 7, 7, (557,459,0): 23, 7, 7, (557,460,0): 24, 8, 8, (557,461,0): 24, 8, 8, (557,462,0): 25, 9, 9, (557,463,0): 27, 9, 9, (557,464,0): 30, 10, 11, (557,465,0): 31, 9, 11, (557,466,0): 31, 9, 11, (557,467,0): 30, 8, 10, (557,468,0): 30, 8, 10, (557,469,0): 29, 7, 9, (557,470,0): 29, 7, 9, (557,471,0): 29, 7, 9, (557,472,0): 31, 9, 11, (557,473,0): 31, 9, 11, (557,474,0): 32, 10, 12, (557,475,0): 33, 11, 13, (557,476,0): 34, 12, 14, (557,477,0): 35, 13, 15, (557,478,0): 36, 14, 16, (557,479,0): 38, 14, 14, (557,480,0): 47, 19, 16, (557,481,0): 48, 19, 15, (557,482,0): 48, 18, 16, (557,483,0): 48, 18, 16, (557,484,0): 45, 17, 14, (557,485,0): 43, 15, 12, (557,486,0): 39, 13, 12, (557,487,0): 38, 12, 11, (557,488,0): 39, 13, 14, (557,489,0): 40, 14, 15, (557,490,0): 41, 17, 17, (557,491,0): 42, 18, 18, (557,492,0): 41, 19, 21, (557,493,0): 40, 18, 20, (557,494,0): 40, 18, 20, (557,495,0): 39, 17, 19, (557,496,0): 40, 18, 20, (557,497,0): 41, 19, 21, (557,498,0): 41, 19, 21, (557,499,0): 41, 19, 21, (557,500,0): 40, 18, 20, (557,501,0): 38, 16, 18, (557,502,0): 36, 14, 16, (557,503,0): 35, 13, 15, (557,504,0): 34, 12, 14, (557,505,0): 34, 12, 14, (557,506,0): 34, 12, 14, (557,507,0): 34, 12, 14, (557,508,0): 34, 12, 14, (557,509,0): 34, 12, 14, (557,510,0): 34, 12, 14, (557,511,0): 34, 12, 15, (557,512,0): 32, 11, 16, (557,513,0): 31, 10, 17, (557,514,0): 29, 8, 15, (557,515,0): 28, 7, 14, (557,516,0): 28, 7, 14, (557,517,0): 28, 7, 14, (557,518,0): 29, 8, 15, (557,519,0): 29, 8, 15, (557,520,0): 28, 7, 14, (557,521,0): 28, 7, 14, (557,522,0): 27, 6, 13, (557,523,0): 26, 5, 12, (557,524,0): 25, 4, 11, (557,525,0): 24, 3, 10, (557,526,0): 24, 3, 10, (557,527,0): 22, 2, 11, (557,528,0): 19, 2, 12, (557,529,0): 19, 3, 14, (557,530,0): 17, 4, 14, (557,531,0): 17, 4, 14, (557,532,0): 16, 3, 13, (557,533,0): 15, 2, 12, (557,534,0): 12, 0, 10, (557,535,0): 11, 0, 9, (557,536,0): 12, 2, 11, (557,537,0): 12, 2, 11, (557,538,0): 13, 3, 12, (557,539,0): 13, 3, 12, (557,540,0): 11, 4, 12, (557,541,0): 11, 4, 12, (557,542,0): 10, 3, 11, (557,543,0): 10, 3, 11, (557,544,0): 13, 1, 11, (557,545,0): 13, 1, 11, (557,546,0): 12, 0, 10, (557,547,0): 12, 0, 10, (557,548,0): 12, 0, 10, (557,549,0): 12, 0, 10, (557,550,0): 11, 0, 9, (557,551,0): 11, 0, 9, (557,552,0): 14, 2, 12, (557,553,0): 14, 2, 12, (557,554,0): 14, 2, 12, (557,555,0): 14, 2, 12, (557,556,0): 14, 2, 12, (557,557,0): 14, 2, 12, (557,558,0): 14, 2, 12, (557,559,0): 13, 3, 12, (557,560,0): 13, 3, 11, (557,561,0): 11, 4, 11, (557,562,0): 13, 6, 13, (557,563,0): 14, 7, 14, (557,564,0): 14, 7, 14, (557,565,0): 14, 7, 14, (557,566,0): 14, 7, 14, (557,567,0): 13, 6, 13, (557,568,0): 13, 6, 13, (557,569,0): 15, 8, 15, (557,570,0): 18, 11, 18, (557,571,0): 21, 14, 21, (557,572,0): 24, 17, 24, (557,573,0): 25, 18, 25, (557,574,0): 26, 19, 26, (557,575,0): 26, 20, 24, (557,576,0): 27, 16, 22, (557,577,0): 27, 16, 20, (557,578,0): 26, 15, 19, (557,579,0): 25, 14, 18, (557,580,0): 25, 14, 18, (557,581,0): 24, 13, 17, (557,582,0): 23, 12, 16, (557,583,0): 23, 12, 16, (557,584,0): 27, 16, 20, (557,585,0): 27, 16, 20, (557,586,0): 26, 15, 19, (557,587,0): 26, 15, 19, (557,588,0): 25, 14, 18, (557,589,0): 25, 14, 18, (557,590,0): 24, 13, 17, (557,591,0): 23, 14, 17, (557,592,0): 24, 15, 18, (557,593,0): 23, 17, 19, (557,594,0): 24, 18, 20, (557,595,0): 25, 19, 21, (557,596,0): 25, 19, 21, (557,597,0): 24, 18, 20, (557,598,0): 23, 17, 19, (557,599,0): 22, 16, 18, (558,0,0): 36, 55, 69, (558,1,0): 36, 55, 69, (558,2,0): 36, 55, 69, (558,3,0): 37, 56, 70, (558,4,0): 37, 56, 70, (558,5,0): 38, 57, 71, (558,6,0): 38, 57, 71, (558,7,0): 38, 57, 71, (558,8,0): 38, 57, 71, (558,9,0): 38, 57, 71, (558,10,0): 39, 58, 72, (558,11,0): 39, 58, 72, (558,12,0): 40, 59, 73, (558,13,0): 40, 59, 73, (558,14,0): 41, 60, 74, (558,15,0): 41, 60, 74, (558,16,0): 42, 60, 74, (558,17,0): 42, 60, 74, (558,18,0): 43, 61, 75, (558,19,0): 43, 61, 75, (558,20,0): 44, 62, 76, (558,21,0): 44, 62, 76, (558,22,0): 45, 63, 77, (558,23,0): 45, 63, 77, (558,24,0): 44, 62, 76, (558,25,0): 44, 62, 76, (558,26,0): 44, 62, 76, (558,27,0): 45, 63, 77, (558,28,0): 45, 63, 77, (558,29,0): 46, 64, 78, (558,30,0): 46, 64, 78, (558,31,0): 46, 64, 76, (558,32,0): 48, 64, 77, (558,33,0): 48, 65, 75, (558,34,0): 50, 64, 75, (558,35,0): 51, 65, 76, (558,36,0): 52, 64, 76, (558,37,0): 53, 65, 77, (558,38,0): 55, 65, 75, (558,39,0): 55, 65, 75, (558,40,0): 58, 65, 75, (558,41,0): 58, 65, 75, (558,42,0): 61, 65, 74, (558,43,0): 62, 66, 75, (558,44,0): 64, 67, 76, (558,45,0): 65, 68, 77, (558,46,0): 68, 68, 78, (558,47,0): 69, 69, 79, (558,48,0): 65, 68, 77, (558,49,0): 65, 68, 77, (558,50,0): 66, 69, 78, (558,51,0): 66, 69, 78, (558,52,0): 67, 70, 79, (558,53,0): 67, 70, 79, (558,54,0): 68, 71, 80, (558,55,0): 68, 71, 80, (558,56,0): 68, 71, 80, (558,57,0): 68, 71, 80, (558,58,0): 69, 72, 81, (558,59,0): 69, 72, 81, (558,60,0): 70, 73, 82, (558,61,0): 70, 73, 82, (558,62,0): 71, 74, 83, (558,63,0): 71, 74, 83, (558,64,0): 71, 69, 83, (558,65,0): 72, 70, 84, (558,66,0): 72, 70, 84, (558,67,0): 73, 71, 85, (558,68,0): 73, 71, 85, (558,69,0): 74, 72, 86, (558,70,0): 74, 72, 86, (558,71,0): 74, 72, 86, (558,72,0): 75, 73, 87, (558,73,0): 75, 73, 87, (558,74,0): 76, 74, 88, (558,75,0): 77, 75, 89, (558,76,0): 78, 76, 90, (558,77,0): 79, 77, 91, (558,78,0): 80, 78, 92, (558,79,0): 80, 78, 91, (558,80,0): 84, 78, 92, (558,81,0): 83, 77, 89, (558,82,0): 81, 75, 87, (558,83,0): 80, 74, 86, (558,84,0): 78, 75, 86, (558,85,0): 79, 76, 87, (558,86,0): 80, 78, 91, (558,87,0): 81, 79, 92, (558,88,0): 79, 77, 91, (558,89,0): 81, 79, 93, (558,90,0): 82, 81, 97, (558,91,0): 81, 80, 96, (558,92,0): 76, 78, 93, (558,93,0): 75, 77, 92, (558,94,0): 76, 78, 93, (558,95,0): 79, 81, 96, (558,96,0): 79, 82, 99, (558,97,0): 79, 82, 99, (558,98,0): 78, 81, 100, (558,99,0): 78, 81, 100, (558,100,0): 78, 81, 100, (558,101,0): 77, 80, 99, (558,102,0): 77, 79, 100, (558,103,0): 77, 79, 100, (558,104,0): 79, 81, 104, (558,105,0): 79, 81, 104, (558,106,0): 79, 81, 104, (558,107,0): 78, 80, 103, (558,108,0): 78, 80, 105, (558,109,0): 77, 79, 104, (558,110,0): 77, 79, 104, (558,111,0): 74, 78, 103, (558,112,0): 76, 80, 105, (558,113,0): 75, 81, 105, (558,114,0): 74, 80, 104, (558,115,0): 74, 80, 104, (558,116,0): 73, 79, 105, (558,117,0): 72, 78, 104, (558,118,0): 72, 78, 104, (558,119,0): 71, 77, 103, (558,120,0): 77, 82, 111, (558,121,0): 77, 82, 111, (558,122,0): 77, 82, 112, (558,123,0): 76, 81, 111, (558,124,0): 76, 81, 111, (558,125,0): 76, 81, 111, (558,126,0): 76, 81, 113, (558,127,0): 76, 81, 111, (558,128,0): 75, 81, 107, (558,129,0): 75, 81, 105, (558,130,0): 76, 82, 106, (558,131,0): 76, 82, 106, (558,132,0): 77, 83, 107, (558,133,0): 77, 83, 107, (558,134,0): 78, 84, 108, (558,135,0): 78, 84, 108, (558,136,0): 78, 84, 108, (558,137,0): 79, 85, 109, (558,138,0): 80, 86, 110, (558,139,0): 81, 87, 111, (558,140,0): 81, 87, 111, (558,141,0): 80, 86, 110, (558,142,0): 79, 85, 109, (558,143,0): 78, 84, 108, (558,144,0): 83, 84, 112, (558,145,0): 83, 84, 112, (558,146,0): 83, 84, 112, (558,147,0): 83, 84, 112, (558,148,0): 81, 85, 114, (558,149,0): 81, 85, 114, (558,150,0): 81, 84, 115, (558,151,0): 81, 84, 115, (558,152,0): 82, 87, 117, (558,153,0): 82, 87, 117, (558,154,0): 81, 87, 119, (558,155,0): 82, 88, 120, (558,156,0): 82, 88, 122, (558,157,0): 83, 89, 123, (558,158,0): 81, 90, 123, (558,159,0): 82, 91, 124, (558,160,0): 81, 86, 124, (558,161,0): 81, 86, 124, (558,162,0): 81, 86, 124, (558,163,0): 81, 86, 124, (558,164,0): 81, 86, 124, (558,165,0): 81, 86, 124, (558,166,0): 81, 86, 124, (558,167,0): 81, 86, 124, (558,168,0): 81, 86, 124, (558,169,0): 81, 86, 124, (558,170,0): 81, 86, 124, (558,171,0): 81, 86, 124, (558,172,0): 81, 86, 124, (558,173,0): 81, 86, 124, (558,174,0): 81, 86, 124, (558,175,0): 79, 87, 124, (558,176,0): 77, 89, 127, (558,177,0): 76, 90, 127, (558,178,0): 76, 90, 127, (558,179,0): 77, 91, 128, (558,180,0): 77, 91, 130, (558,181,0): 78, 92, 131, (558,182,0): 78, 91, 133, (558,183,0): 79, 92, 134, (558,184,0): 79, 92, 134, (558,185,0): 79, 92, 134, (558,186,0): 79, 92, 136, (558,187,0): 79, 92, 136, (558,188,0): 79, 92, 137, (558,189,0): 79, 92, 137, (558,190,0): 79, 92, 137, (558,191,0): 79, 92, 137, (558,192,0): 81, 94, 138, (558,193,0): 81, 94, 138, (558,194,0): 81, 94, 138, (558,195,0): 81, 94, 138, (558,196,0): 81, 94, 138, (558,197,0): 80, 95, 138, (558,198,0): 80, 95, 138, (558,199,0): 80, 95, 138, (558,200,0): 78, 95, 138, (558,201,0): 79, 96, 139, (558,202,0): 78, 97, 139, (558,203,0): 79, 98, 140, (558,204,0): 79, 98, 140, (558,205,0): 80, 99, 141, (558,206,0): 80, 99, 141, (558,207,0): 78, 99, 142, (558,208,0): 75, 98, 142, (558,209,0): 75, 97, 144, (558,210,0): 76, 98, 145, (558,211,0): 77, 99, 148, (558,212,0): 78, 100, 149, (558,213,0): 79, 101, 150, (558,214,0): 80, 102, 152, (558,215,0): 80, 101, 154, (558,216,0): 83, 104, 157, (558,217,0): 84, 105, 160, (558,218,0): 84, 105, 160, (558,219,0): 85, 106, 163, (558,220,0): 86, 107, 164, (558,221,0): 87, 107, 166, (558,222,0): 88, 108, 167, (558,223,0): 88, 109, 166, (558,224,0): 93, 115, 165, (558,225,0): 93, 115, 164, (558,226,0): 94, 115, 168, (558,227,0): 94, 115, 170, (558,228,0): 95, 116, 173, (558,229,0): 96, 116, 177, (558,230,0): 95, 116, 179, (558,231,0): 95, 116, 181, (558,232,0): 101, 122, 187, (558,233,0): 102, 123, 188, (558,234,0): 103, 124, 187, (558,235,0): 104, 126, 186, (558,236,0): 103, 125, 183, (558,237,0): 101, 123, 180, (558,238,0): 99, 122, 176, (558,239,0): 97, 119, 176, (558,240,0): 99, 119, 178, (558,241,0): 98, 118, 179, (558,242,0): 97, 117, 178, (558,243,0): 98, 119, 182, (558,244,0): 102, 123, 186, (558,245,0): 103, 127, 189, (558,246,0): 102, 126, 190, (558,247,0): 99, 124, 188, (558,248,0): 103, 128, 194, (558,249,0): 104, 129, 195, (558,250,0): 105, 130, 197, (558,251,0): 104, 131, 198, (558,252,0): 104, 131, 198, (558,253,0): 104, 133, 201, (558,254,0): 103, 132, 200, (558,255,0): 104, 131, 198, (558,256,0): 104, 128, 192, (558,257,0): 106, 128, 188, (558,258,0): 107, 127, 188, (558,259,0): 106, 126, 187, (558,260,0): 106, 126, 187, (558,261,0): 105, 125, 186, (558,262,0): 106, 124, 186, (558,263,0): 105, 123, 185, (558,264,0): 104, 120, 182, (558,265,0): 104, 120, 180, (558,266,0): 103, 119, 179, (558,267,0): 103, 119, 178, (558,268,0): 103, 118, 177, (558,269,0): 102, 117, 176, (558,270,0): 102, 117, 176, (558,271,0): 101, 116, 173, (558,272,0): 103, 120, 174, (558,273,0): 101, 121, 172, (558,274,0): 101, 121, 174, (558,275,0): 100, 121, 174, (558,276,0): 100, 121, 176, (558,277,0): 100, 121, 178, (558,278,0): 100, 120, 179, (558,279,0): 101, 120, 179, (558,280,0): 103, 122, 181, (558,281,0): 106, 122, 181, (558,282,0): 109, 121, 179, (558,283,0): 111, 122, 178, (558,284,0): 114, 121, 176, (558,285,0): 116, 121, 176, (558,286,0): 116, 121, 176, (558,287,0): 118, 121, 174, (558,288,0): 121, 121, 171, (558,289,0): 123, 121, 171, (558,290,0): 123, 121, 171, (558,291,0): 123, 119, 169, (558,292,0): 123, 119, 169, (558,293,0): 124, 118, 166, (558,294,0): 125, 117, 166, (558,295,0): 126, 117, 164, (558,296,0): 131, 119, 165, (558,297,0): 130, 117, 163, (558,298,0): 129, 113, 158, (558,299,0): 127, 110, 155, (558,300,0): 123, 104, 149, (558,301,0): 114, 95, 140, (558,302,0): 104, 82, 128, (558,303,0): 95, 75, 112, (558,304,0): 82, 63, 82, (558,305,0): 75, 58, 68, (558,306,0): 69, 49, 60, (558,307,0): 64, 42, 54, (558,308,0): 62, 39, 49, (558,309,0): 62, 36, 47, (558,310,0): 61, 33, 45, (558,311,0): 59, 32, 41, (558,312,0): 59, 29, 37, (558,313,0): 59, 29, 37, (558,314,0): 57, 30, 35, (558,315,0): 56, 29, 34, (558,316,0): 53, 28, 32, (558,317,0): 51, 26, 30, (558,318,0): 46, 24, 26, (558,319,0): 43, 23, 24, (558,320,0): 45, 25, 27, (558,321,0): 44, 25, 27, (558,322,0): 45, 26, 28, (558,323,0): 45, 26, 28, (558,324,0): 44, 25, 27, (558,325,0): 43, 24, 26, (558,326,0): 41, 22, 24, (558,327,0): 41, 22, 24, (558,328,0): 40, 21, 23, (558,329,0): 40, 21, 23, (558,330,0): 39, 20, 22, (558,331,0): 39, 20, 22, (558,332,0): 38, 19, 21, (558,333,0): 37, 18, 20, (558,334,0): 37, 18, 20, (558,335,0): 37, 17, 19, (558,336,0): 38, 16, 19, (558,337,0): 39, 14, 18, (558,338,0): 39, 14, 18, (558,339,0): 38, 13, 17, (558,340,0): 34, 11, 17, (558,341,0): 33, 10, 16, (558,342,0): 32, 11, 18, (558,343,0): 31, 10, 17, (558,344,0): 33, 12, 19, (558,345,0): 32, 11, 18, (558,346,0): 30, 10, 19, (558,347,0): 28, 8, 17, (558,348,0): 24, 7, 17, (558,349,0): 22, 5, 15, (558,350,0): 21, 4, 14, (558,351,0): 19, 3, 13, (558,352,0): 17, 4, 13, (558,353,0): 16, 5, 13, (558,354,0): 16, 5, 13, (558,355,0): 16, 5, 13, (558,356,0): 16, 5, 13, (558,357,0): 16, 5, 13, (558,358,0): 16, 5, 13, (558,359,0): 16, 5, 13, (558,360,0): 14, 3, 11, (558,361,0): 14, 3, 11, (558,362,0): 14, 3, 11, (558,363,0): 14, 3, 11, (558,364,0): 14, 3, 11, (558,365,0): 14, 3, 11, (558,366,0): 14, 3, 11, (558,367,0): 14, 3, 11, (558,368,0): 15, 4, 12, (558,369,0): 14, 3, 11, (558,370,0): 13, 2, 10, (558,371,0): 13, 2, 10, (558,372,0): 13, 2, 10, (558,373,0): 13, 2, 10, (558,374,0): 14, 3, 11, (558,375,0): 15, 4, 12, (558,376,0): 14, 3, 11, (558,377,0): 14, 3, 11, (558,378,0): 15, 4, 12, (558,379,0): 15, 4, 12, (558,380,0): 16, 5, 13, (558,381,0): 16, 5, 13, (558,382,0): 16, 5, 13, (558,383,0): 17, 6, 14, (558,384,0): 17, 6, 14, (558,385,0): 17, 6, 14, (558,386,0): 17, 6, 14, (558,387,0): 17, 6, 14, (558,388,0): 17, 6, 12, (558,389,0): 17, 6, 12, (558,390,0): 17, 6, 10, (558,391,0): 17, 6, 10, (558,392,0): 18, 7, 11, (558,393,0): 18, 7, 11, (558,394,0): 19, 9, 10, (558,395,0): 19, 9, 10, (558,396,0): 20, 10, 9, (558,397,0): 20, 10, 9, (558,398,0): 21, 11, 10, (558,399,0): 22, 10, 10, (558,400,0): 23, 9, 9, (558,401,0): 24, 8, 9, (558,402,0): 24, 8, 9, (558,403,0): 25, 9, 10, (558,404,0): 25, 9, 10, (558,405,0): 26, 10, 11, (558,406,0): 26, 10, 11, (558,407,0): 26, 10, 11, (558,408,0): 27, 11, 12, (558,409,0): 27, 11, 12, (558,410,0): 27, 11, 12, (558,411,0): 28, 12, 13, (558,412,0): 28, 12, 13, (558,413,0): 29, 13, 14, (558,414,0): 29, 13, 14, (558,415,0): 29, 13, 14, (558,416,0): 26, 12, 12, (558,417,0): 26, 12, 12, (558,418,0): 26, 12, 12, (558,419,0): 26, 12, 12, (558,420,0): 26, 12, 12, (558,421,0): 26, 12, 12, (558,422,0): 26, 12, 12, (558,423,0): 26, 12, 12, (558,424,0): 24, 10, 10, (558,425,0): 24, 10, 10, (558,426,0): 24, 10, 10, (558,427,0): 24, 10, 10, (558,428,0): 24, 10, 10, (558,429,0): 24, 10, 10, (558,430,0): 24, 10, 10, (558,431,0): 25, 9, 10, (558,432,0): 30, 12, 12, (558,433,0): 29, 9, 8, (558,434,0): 29, 8, 7, (558,435,0): 32, 8, 8, (558,436,0): 36, 10, 11, (558,437,0): 39, 10, 12, (558,438,0): 39, 9, 11, (558,439,0): 37, 7, 9, (558,440,0): 36, 6, 8, (558,441,0): 35, 6, 8, (558,442,0): 32, 6, 7, (558,443,0): 28, 7, 6, (558,444,0): 26, 6, 5, (558,445,0): 24, 6, 4, (558,446,0): 21, 6, 3, (558,447,0): 20, 6, 3, (558,448,0): 22, 6, 6, (558,449,0): 22, 6, 6, (558,450,0): 22, 6, 6, (558,451,0): 21, 5, 5, (558,452,0): 21, 5, 5, (558,453,0): 20, 4, 4, (558,454,0): 20, 4, 4, (558,455,0): 19, 3, 3, (558,456,0): 22, 6, 6, (558,457,0): 22, 6, 6, (558,458,0): 23, 7, 7, (558,459,0): 23, 7, 7, (558,460,0): 24, 8, 8, (558,461,0): 24, 8, 8, (558,462,0): 25, 9, 9, (558,463,0): 27, 9, 9, (558,464,0): 32, 12, 13, (558,465,0): 33, 11, 13, (558,466,0): 32, 10, 12, (558,467,0): 31, 9, 11, (558,468,0): 31, 9, 11, (558,469,0): 30, 8, 10, (558,470,0): 29, 7, 9, (558,471,0): 29, 7, 9, (558,472,0): 30, 8, 10, (558,473,0): 30, 8, 10, (558,474,0): 31, 9, 11, (558,475,0): 32, 10, 12, (558,476,0): 33, 11, 13, (558,477,0): 34, 12, 14, (558,478,0): 35, 13, 15, (558,479,0): 37, 13, 13, (558,480,0): 46, 18, 15, (558,481,0): 48, 19, 15, (558,482,0): 48, 19, 15, (558,483,0): 48, 19, 15, (558,484,0): 46, 18, 15, (558,485,0): 45, 17, 14, (558,486,0): 43, 15, 12, (558,487,0): 42, 14, 11, (558,488,0): 40, 14, 13, (558,489,0): 41, 15, 14, (558,490,0): 42, 18, 18, (558,491,0): 43, 19, 19, (558,492,0): 44, 20, 20, (558,493,0): 43, 19, 19, (558,494,0): 41, 19, 21, (558,495,0): 40, 18, 20, (558,496,0): 40, 20, 19, (558,497,0): 40, 20, 19, (558,498,0): 40, 20, 19, (558,499,0): 40, 20, 19, (558,500,0): 39, 19, 18, (558,501,0): 37, 17, 16, (558,502,0): 35, 15, 14, (558,503,0): 34, 14, 13, (558,504,0): 33, 13, 12, (558,505,0): 33, 13, 12, (558,506,0): 33, 13, 12, (558,507,0): 33, 13, 12, (558,508,0): 33, 13, 12, (558,509,0): 33, 13, 12, (558,510,0): 33, 13, 12, (558,511,0): 33, 13, 14, (558,512,0): 30, 9, 14, (558,513,0): 29, 8, 15, (558,514,0): 28, 7, 14, (558,515,0): 27, 6, 13, (558,516,0): 26, 5, 12, (558,517,0): 26, 5, 12, (558,518,0): 27, 6, 13, (558,519,0): 28, 7, 14, (558,520,0): 29, 8, 15, (558,521,0): 28, 7, 14, (558,522,0): 27, 6, 13, (558,523,0): 26, 5, 12, (558,524,0): 25, 4, 11, (558,525,0): 23, 2, 9, (558,526,0): 23, 2, 9, (558,527,0): 21, 1, 10, (558,528,0): 17, 0, 10, (558,529,0): 17, 1, 12, (558,530,0): 16, 3, 13, (558,531,0): 16, 3, 13, (558,532,0): 16, 3, 13, (558,533,0): 15, 2, 12, (558,534,0): 13, 1, 11, (558,535,0): 12, 0, 10, (558,536,0): 13, 3, 12, (558,537,0): 13, 3, 12, (558,538,0): 12, 2, 11, (558,539,0): 12, 2, 11, (558,540,0): 10, 3, 11, (558,541,0): 10, 3, 11, (558,542,0): 11, 4, 12, (558,543,0): 11, 4, 12, (558,544,0): 11, 0, 9, (558,545,0): 11, 0, 9, (558,546,0): 12, 0, 10, (558,547,0): 12, 0, 10, (558,548,0): 12, 0, 10, (558,549,0): 12, 0, 10, (558,550,0): 13, 1, 11, (558,551,0): 13, 1, 11, (558,552,0): 14, 2, 12, (558,553,0): 14, 2, 12, (558,554,0): 14, 2, 12, (558,555,0): 14, 2, 12, (558,556,0): 14, 2, 12, (558,557,0): 14, 2, 12, (558,558,0): 14, 2, 12, (558,559,0): 13, 3, 12, (558,560,0): 12, 2, 10, (558,561,0): 12, 5, 12, (558,562,0): 14, 7, 14, (558,563,0): 15, 8, 15, (558,564,0): 16, 9, 16, (558,565,0): 16, 9, 16, (558,566,0): 15, 8, 15, (558,567,0): 14, 7, 14, (558,568,0): 15, 8, 15, (558,569,0): 16, 9, 16, (558,570,0): 19, 12, 19, (558,571,0): 21, 14, 21, (558,572,0): 23, 16, 23, (558,573,0): 24, 17, 24, (558,574,0): 25, 18, 25, (558,575,0): 25, 19, 23, (558,576,0): 27, 16, 22, (558,577,0): 27, 16, 20, (558,578,0): 26, 15, 19, (558,579,0): 26, 15, 19, (558,580,0): 26, 15, 19, (558,581,0): 26, 15, 19, (558,582,0): 26, 15, 19, (558,583,0): 25, 14, 18, (558,584,0): 27, 16, 20, (558,585,0): 27, 16, 20, (558,586,0): 26, 15, 19, (558,587,0): 26, 15, 19, (558,588,0): 25, 14, 18, (558,589,0): 25, 14, 18, (558,590,0): 24, 13, 17, (558,591,0): 23, 14, 17, (558,592,0): 24, 15, 18, (558,593,0): 23, 17, 19, (558,594,0): 24, 18, 20, (558,595,0): 25, 19, 21, (558,596,0): 25, 19, 21, (558,597,0): 24, 18, 20, (558,598,0): 23, 17, 19, (558,599,0): 22, 16, 18, (559,0,0): 36, 55, 69, (559,1,0): 37, 56, 70, (559,2,0): 37, 56, 70, (559,3,0): 38, 57, 71, (559,4,0): 38, 57, 71, (559,5,0): 39, 58, 72, (559,6,0): 39, 58, 72, (559,7,0): 39, 58, 72, (559,8,0): 38, 57, 71, (559,9,0): 38, 57, 71, (559,10,0): 39, 58, 72, (559,11,0): 39, 58, 72, (559,12,0): 40, 59, 73, (559,13,0): 40, 59, 73, (559,14,0): 41, 60, 74, (559,15,0): 41, 60, 74, (559,16,0): 42, 60, 74, (559,17,0): 42, 60, 74, (559,18,0): 43, 61, 75, (559,19,0): 43, 61, 75, (559,20,0): 44, 62, 76, (559,21,0): 44, 62, 76, (559,22,0): 45, 63, 77, (559,23,0): 45, 63, 77, (559,24,0): 44, 62, 76, (559,25,0): 44, 62, 76, (559,26,0): 44, 62, 76, (559,27,0): 45, 63, 77, (559,28,0): 45, 63, 77, (559,29,0): 46, 64, 78, (559,30,0): 46, 64, 78, (559,31,0): 46, 64, 76, (559,32,0): 48, 64, 77, (559,33,0): 48, 65, 75, (559,34,0): 50, 64, 75, (559,35,0): 51, 65, 76, (559,36,0): 52, 64, 76, (559,37,0): 53, 65, 77, (559,38,0): 55, 65, 75, (559,39,0): 55, 65, 75, (559,40,0): 58, 64, 76, (559,41,0): 58, 65, 75, (559,42,0): 61, 65, 76, (559,43,0): 62, 66, 77, (559,44,0): 64, 66, 78, (559,45,0): 65, 67, 79, (559,46,0): 68, 68, 80, (559,47,0): 68, 68, 80, (559,48,0): 65, 67, 79, (559,49,0): 65, 68, 77, (559,50,0): 66, 68, 80, (559,51,0): 66, 69, 78, (559,52,0): 67, 69, 81, (559,53,0): 67, 70, 79, (559,54,0): 68, 70, 82, (559,55,0): 68, 71, 80, (559,56,0): 70, 70, 82, (559,57,0): 70, 70, 80, (559,58,0): 71, 71, 83, (559,59,0): 71, 71, 81, (559,60,0): 72, 72, 84, (559,61,0): 72, 72, 82, (559,62,0): 73, 73, 85, (559,63,0): 73, 73, 85, (559,64,0): 71, 69, 83, (559,65,0): 71, 69, 83, (559,66,0): 72, 70, 84, (559,67,0): 72, 70, 84, (559,68,0): 73, 71, 85, (559,69,0): 73, 71, 85, (559,70,0): 74, 72, 86, (559,71,0): 74, 72, 86, (559,72,0): 74, 72, 86, (559,73,0): 75, 73, 87, (559,74,0): 76, 74, 88, (559,75,0): 77, 75, 89, (559,76,0): 78, 76, 90, (559,77,0): 79, 77, 91, (559,78,0): 79, 77, 91, (559,79,0): 80, 78, 92, (559,80,0): 82, 78, 92, (559,81,0): 81, 77, 91, (559,82,0): 79, 75, 89, (559,83,0): 78, 74, 88, (559,84,0): 77, 75, 88, (559,85,0): 78, 76, 89, (559,86,0): 80, 78, 91, (559,87,0): 80, 79, 93, (559,88,0): 79, 77, 91, (559,89,0): 80, 79, 93, (559,90,0): 82, 81, 97, (559,91,0): 81, 80, 96, (559,92,0): 75, 77, 92, (559,93,0): 74, 76, 91, (559,94,0): 76, 78, 93, (559,95,0): 79, 81, 96, (559,96,0): 81, 82, 100, (559,97,0): 79, 82, 99, (559,98,0): 80, 81, 101, (559,99,0): 78, 81, 100, (559,100,0): 77, 80, 99, (559,101,0): 76, 79, 98, (559,102,0): 76, 78, 99, (559,103,0): 76, 78, 99, (559,104,0): 79, 81, 104, (559,105,0): 79, 81, 104, (559,106,0): 78, 80, 103, (559,107,0): 78, 80, 103, (559,108,0): 77, 79, 104, (559,109,0): 75, 79, 104, (559,110,0): 76, 78, 103, (559,111,0): 74, 78, 103, (559,112,0): 75, 81, 105, (559,113,0): 75, 81, 103, (559,114,0): 74, 80, 104, (559,115,0): 74, 80, 104, (559,116,0): 73, 79, 103, (559,117,0): 72, 78, 102, (559,118,0): 71, 77, 101, (559,119,0): 71, 77, 101, (559,120,0): 77, 83, 109, (559,121,0): 77, 83, 109, (559,122,0): 77, 82, 111, (559,123,0): 76, 81, 110, (559,124,0): 76, 81, 110, (559,125,0): 76, 81, 110, (559,126,0): 75, 80, 109, (559,127,0): 75, 80, 109, (559,128,0): 76, 80, 107, (559,129,0): 76, 80, 105, (559,130,0): 78, 80, 105, (559,131,0): 77, 81, 106, (559,132,0): 79, 81, 106, (559,133,0): 78, 82, 107, (559,134,0): 80, 82, 107, (559,135,0): 79, 83, 108, (559,136,0): 81, 83, 108, (559,137,0): 80, 84, 109, (559,138,0): 83, 85, 110, (559,139,0): 81, 85, 110, (559,140,0): 83, 85, 110, (559,141,0): 81, 85, 110, (559,142,0): 82, 84, 109, (559,143,0): 81, 83, 108, (559,144,0): 83, 85, 110, (559,145,0): 83, 84, 112, (559,146,0): 83, 84, 112, (559,147,0): 83, 84, 112, (559,148,0): 81, 85, 114, (559,149,0): 81, 85, 114, (559,150,0): 81, 84, 115, (559,151,0): 81, 84, 115, (559,152,0): 82, 87, 117, (559,153,0): 82, 87, 117, (559,154,0): 82, 88, 120, (559,155,0): 82, 88, 120, (559,156,0): 83, 89, 123, (559,157,0): 83, 89, 123, (559,158,0): 82, 91, 124, (559,159,0): 82, 90, 126, (559,160,0): 79, 87, 124, (559,161,0): 79, 87, 124, (559,162,0): 81, 86, 126, (559,163,0): 79, 87, 124, (559,164,0): 81, 86, 126, (559,165,0): 79, 87, 124, (559,166,0): 81, 86, 126, (559,167,0): 79, 87, 124, (559,168,0): 81, 86, 126, (559,169,0): 79, 87, 124, (559,170,0): 81, 86, 126, (559,171,0): 79, 87, 124, (559,172,0): 81, 86, 126, (559,173,0): 79, 87, 124, (559,174,0): 81, 86, 126, (559,175,0): 79, 87, 126, (559,176,0): 76, 88, 128, (559,177,0): 76, 90, 129, (559,178,0): 77, 89, 129, (559,179,0): 76, 90, 129, (559,180,0): 78, 90, 132, (559,181,0): 78, 91, 133, (559,182,0): 78, 91, 133, (559,183,0): 78, 91, 133, (559,184,0): 78, 91, 135, (559,185,0): 78, 91, 135, (559,186,0): 78, 91, 135, (559,187,0): 78, 91, 135, (559,188,0): 78, 91, 136, (559,189,0): 78, 91, 136, (559,190,0): 78, 91, 136, (559,191,0): 78, 91, 136, (559,192,0): 81, 94, 138, (559,193,0): 81, 94, 138, (559,194,0): 81, 94, 138, (559,195,0): 81, 94, 138, (559,196,0): 81, 94, 138, (559,197,0): 81, 94, 138, (559,198,0): 80, 95, 138, (559,199,0): 80, 95, 138, (559,200,0): 80, 95, 138, (559,201,0): 78, 95, 138, (559,202,0): 79, 96, 139, (559,203,0): 78, 97, 139, (559,204,0): 79, 98, 140, (559,205,0): 79, 98, 140, (559,206,0): 80, 99, 142, (559,207,0): 78, 99, 142, (559,208,0): 75, 96, 143, (559,209,0): 75, 97, 144, (559,210,0): 76, 98, 147, (559,211,0): 77, 99, 148, (559,212,0): 78, 100, 149, (559,213,0): 79, 101, 150, (559,214,0): 80, 102, 152, (559,215,0): 80, 101, 154, (559,216,0): 84, 105, 160, (559,217,0): 84, 105, 160, (559,218,0): 85, 106, 163, (559,219,0): 86, 107, 164, (559,220,0): 86, 107, 164, (559,221,0): 87, 107, 166, (559,222,0): 88, 108, 167, (559,223,0): 88, 109, 166, (559,224,0): 94, 114, 165, (559,225,0): 95, 115, 165, (559,226,0): 96, 116, 169, (559,227,0): 97, 116, 172, (559,228,0): 99, 118, 177, (559,229,0): 99, 119, 180, (559,230,0): 100, 119, 185, (559,231,0): 101, 120, 186, (559,232,0): 106, 125, 193, (559,233,0): 105, 126, 193, (559,234,0): 105, 126, 193, (559,235,0): 102, 126, 190, (559,236,0): 103, 124, 187, (559,237,0): 99, 123, 185, (559,238,0): 97, 121, 181, (559,239,0): 96, 120, 180, (559,240,0): 98, 122, 186, (559,241,0): 97, 120, 187, (559,242,0): 99, 120, 187, (559,243,0): 99, 122, 189, (559,244,0): 102, 125, 192, (559,245,0): 103, 126, 193, (559,246,0): 99, 124, 191, (559,247,0): 97, 122, 189, (559,248,0): 94, 121, 188, (559,249,0): 96, 123, 192, (559,250,0): 100, 127, 196, (559,251,0): 104, 131, 202, (559,252,0): 105, 132, 203, (559,253,0): 103, 132, 202, (559,254,0): 102, 129, 200, (559,255,0): 101, 128, 197, (559,256,0): 104, 128, 192, (559,257,0): 104, 128, 190, (559,258,0): 105, 126, 189, (559,259,0): 105, 126, 189, (559,260,0): 105, 125, 188, (559,261,0): 105, 125, 188, (559,262,0): 105, 123, 187, (559,263,0): 105, 123, 187, (559,264,0): 102, 120, 184, (559,265,0): 101, 119, 181, (559,266,0): 101, 119, 181, (559,267,0): 99, 119, 180, (559,268,0): 98, 118, 179, (559,269,0): 97, 117, 176, (559,270,0): 97, 117, 178, (559,271,0): 96, 116, 175, (559,272,0): 97, 118, 173, (559,273,0): 97, 118, 171, (559,274,0): 97, 118, 173, (559,275,0): 96, 119, 173, (559,276,0): 96, 118, 176, (559,277,0): 94, 119, 176, (559,278,0): 96, 118, 178, (559,279,0): 96, 118, 178, (559,280,0): 100, 120, 181, (559,281,0): 101, 120, 179, (559,282,0): 104, 119, 178, (559,283,0): 108, 118, 177, (559,284,0): 109, 118, 175, (559,285,0): 112, 119, 174, (559,286,0): 113, 118, 173, (559,287,0): 115, 118, 171, (559,288,0): 120, 122, 173, (559,289,0): 121, 121, 171, (559,290,0): 122, 120, 170, (559,291,0): 123, 119, 169, (559,292,0): 122, 118, 168, (559,293,0): 124, 118, 166, (559,294,0): 124, 116, 165, (559,295,0): 125, 116, 163, (559,296,0): 128, 116, 162, (559,297,0): 127, 114, 158, (559,298,0): 127, 110, 154, (559,299,0): 125, 106, 151, (559,300,0): 121, 100, 143, (559,301,0): 110, 89, 132, (559,302,0): 98, 75, 119, (559,303,0): 89, 67, 103, (559,304,0): 77, 58, 77, (559,305,0): 73, 53, 64, (559,306,0): 65, 45, 56, (559,307,0): 61, 39, 51, (559,308,0): 60, 36, 49, (559,309,0): 61, 35, 46, (559,310,0): 60, 34, 45, (559,311,0): 59, 32, 41, (559,312,0): 57, 30, 37, (559,313,0): 58, 31, 38, (559,314,0): 58, 31, 36, (559,315,0): 56, 29, 34, (559,316,0): 53, 28, 32, (559,317,0): 50, 25, 29, (559,318,0): 44, 22, 24, (559,319,0): 42, 20, 22, (559,320,0): 43, 23, 25, (559,321,0): 43, 24, 26, (559,322,0): 45, 26, 28, (559,323,0): 45, 26, 28, (559,324,0): 44, 25, 27, (559,325,0): 42, 23, 25, (559,326,0): 40, 21, 23, (559,327,0): 38, 19, 21, (559,328,0): 39, 20, 22, (559,329,0): 39, 20, 22, (559,330,0): 38, 19, 21, (559,331,0): 38, 19, 21, (559,332,0): 37, 18, 20, (559,333,0): 37, 18, 20, (559,334,0): 37, 18, 20, (559,335,0): 38, 18, 20, (559,336,0): 38, 15, 21, (559,337,0): 37, 14, 20, (559,338,0): 37, 14, 20, (559,339,0): 36, 13, 19, (559,340,0): 33, 12, 19, (559,341,0): 32, 11, 18, (559,342,0): 32, 11, 18, (559,343,0): 30, 11, 17, (559,344,0): 33, 12, 21, (559,345,0): 31, 11, 20, (559,346,0): 30, 10, 19, (559,347,0): 28, 8, 17, (559,348,0): 24, 7, 17, (559,349,0): 22, 5, 15, (559,350,0): 21, 4, 14, (559,351,0): 19, 3, 13, (559,352,0): 17, 4, 13, (559,353,0): 16, 5, 13, (559,354,0): 17, 4, 13, (559,355,0): 16, 5, 13, (559,356,0): 17, 4, 13, (559,357,0): 16, 5, 13, (559,358,0): 17, 4, 13, (559,359,0): 16, 5, 13, (559,360,0): 15, 2, 11, (559,361,0): 14, 3, 11, (559,362,0): 15, 2, 11, (559,363,0): 14, 3, 11, (559,364,0): 15, 2, 11, (559,365,0): 14, 3, 11, (559,366,0): 15, 2, 11, (559,367,0): 14, 3, 11, (559,368,0): 15, 4, 12, (559,369,0): 13, 3, 11, (559,370,0): 13, 2, 10, (559,371,0): 11, 1, 9, (559,372,0): 12, 1, 9, (559,373,0): 12, 2, 10, (559,374,0): 14, 3, 11, (559,375,0): 14, 4, 12, (559,376,0): 14, 3, 11, (559,377,0): 13, 3, 11, (559,378,0): 14, 3, 11, (559,379,0): 14, 4, 12, (559,380,0): 15, 4, 12, (559,381,0): 15, 5, 13, (559,382,0): 16, 5, 13, (559,383,0): 16, 6, 14, (559,384,0): 17, 6, 14, (559,385,0): 16, 6, 14, (559,386,0): 17, 6, 14, (559,387,0): 17, 6, 14, (559,388,0): 17, 6, 12, (559,389,0): 17, 6, 12, (559,390,0): 17, 6, 10, (559,391,0): 17, 6, 10, (559,392,0): 18, 7, 11, (559,393,0): 18, 7, 11, (559,394,0): 19, 9, 10, (559,395,0): 19, 9, 10, (559,396,0): 20, 10, 9, (559,397,0): 20, 10, 9, (559,398,0): 21, 11, 10, (559,399,0): 22, 10, 10, (559,400,0): 23, 9, 9, (559,401,0): 24, 8, 9, (559,402,0): 24, 8, 9, (559,403,0): 25, 9, 10, (559,404,0): 25, 9, 10, (559,405,0): 26, 10, 11, (559,406,0): 26, 10, 11, (559,407,0): 26, 10, 11, (559,408,0): 27, 11, 12, (559,409,0): 27, 11, 12, (559,410,0): 27, 11, 12, (559,411,0): 28, 12, 13, (559,412,0): 28, 12, 13, (559,413,0): 29, 13, 14, (559,414,0): 31, 12, 14, (559,415,0): 29, 13, 14, (559,416,0): 27, 11, 12, (559,417,0): 26, 12, 12, (559,418,0): 26, 12, 12, (559,419,0): 26, 12, 12, (559,420,0): 26, 12, 12, (559,421,0): 26, 12, 12, (559,422,0): 26, 12, 12, (559,423,0): 26, 12, 12, (559,424,0): 24, 10, 10, (559,425,0): 24, 10, 10, (559,426,0): 24, 10, 10, (559,427,0): 24, 10, 10, (559,428,0): 24, 10, 10, (559,429,0): 24, 10, 10, (559,430,0): 24, 10, 10, (559,431,0): 25, 9, 10, (559,432,0): 32, 14, 14, (559,433,0): 30, 10, 9, (559,434,0): 30, 9, 8, (559,435,0): 33, 9, 9, (559,436,0): 36, 10, 11, (559,437,0): 37, 11, 12, (559,438,0): 37, 8, 10, (559,439,0): 35, 6, 10, (559,440,0): 35, 6, 10, (559,441,0): 33, 7, 10, (559,442,0): 31, 6, 9, (559,443,0): 28, 6, 8, (559,444,0): 26, 6, 7, (559,445,0): 24, 6, 6, (559,446,0): 21, 5, 5, (559,447,0): 21, 5, 5, (559,448,0): 22, 6, 6, (559,449,0): 22, 6, 6, (559,450,0): 21, 5, 5, (559,451,0): 21, 5, 5, (559,452,0): 20, 4, 4, (559,453,0): 20, 4, 4, (559,454,0): 19, 3, 3, (559,455,0): 19, 3, 3, (559,456,0): 22, 6, 6, (559,457,0): 22, 6, 6, (559,458,0): 23, 7, 7, (559,459,0): 23, 7, 7, (559,460,0): 24, 8, 8, (559,461,0): 24, 8, 8, (559,462,0): 25, 9, 9, (559,463,0): 27, 9, 9, (559,464,0): 33, 13, 14, (559,465,0): 34, 12, 14, (559,466,0): 33, 11, 13, (559,467,0): 32, 10, 12, (559,468,0): 31, 9, 11, (559,469,0): 31, 9, 11, (559,470,0): 30, 8, 10, (559,471,0): 30, 8, 10, (559,472,0): 29, 7, 9, (559,473,0): 30, 8, 10, (559,474,0): 31, 9, 11, (559,475,0): 32, 10, 12, (559,476,0): 33, 11, 13, (559,477,0): 34, 12, 14, (559,478,0): 35, 13, 15, (559,479,0): 37, 13, 13, (559,480,0): 46, 18, 15, (559,481,0): 48, 19, 15, (559,482,0): 48, 18, 16, (559,483,0): 49, 19, 17, (559,484,0): 48, 18, 16, (559,485,0): 46, 18, 15, (559,486,0): 44, 16, 13, (559,487,0): 41, 16, 12, (559,488,0): 41, 15, 14, (559,489,0): 41, 17, 15, (559,490,0): 43, 19, 19, (559,491,0): 44, 20, 20, (559,492,0): 44, 20, 20, (559,493,0): 42, 21, 20, (559,494,0): 41, 20, 19, (559,495,0): 40, 20, 19, (559,496,0): 41, 20, 19, (559,497,0): 40, 20, 19, (559,498,0): 40, 20, 19, (559,499,0): 40, 20, 19, (559,500,0): 39, 19, 18, (559,501,0): 37, 17, 16, (559,502,0): 35, 15, 14, (559,503,0): 34, 14, 13, (559,504,0): 33, 13, 12, (559,505,0): 33, 13, 12, (559,506,0): 33, 13, 12, (559,507,0): 33, 13, 12, (559,508,0): 33, 13, 14, (559,509,0): 32, 14, 14, (559,510,0): 33, 13, 14, (559,511,0): 33, 13, 14, (559,512,0): 30, 9, 14, (559,513,0): 29, 8, 13, (559,514,0): 27, 6, 13, (559,515,0): 26, 5, 12, (559,516,0): 25, 4, 11, (559,517,0): 25, 4, 11, (559,518,0): 26, 5, 12, (559,519,0): 27, 6, 13, (559,520,0): 29, 8, 15, (559,521,0): 27, 8, 14, (559,522,0): 26, 7, 13, (559,523,0): 25, 6, 12, (559,524,0): 23, 4, 10, (559,525,0): 22, 3, 9, (559,526,0): 21, 1, 10, (559,527,0): 19, 2, 10, (559,528,0): 15, 0, 9, (559,529,0): 14, 1, 11, (559,530,0): 15, 2, 12, (559,531,0): 16, 3, 13, (559,532,0): 16, 3, 13, (559,533,0): 16, 3, 13, (559,534,0): 14, 2, 12, (559,535,0): 13, 1, 11, (559,536,0): 15, 5, 14, (559,537,0): 13, 3, 12, (559,538,0): 12, 2, 11, (559,539,0): 10, 0, 9, (559,540,0): 10, 0, 9, (559,541,0): 10, 3, 11, (559,542,0): 13, 3, 12, (559,543,0): 15, 5, 14, (559,544,0): 9, 0, 8, (559,545,0): 9, 0, 8, (559,546,0): 11, 0, 9, (559,547,0): 11, 1, 10, (559,548,0): 12, 0, 10, (559,549,0): 12, 2, 11, (559,550,0): 14, 2, 12, (559,551,0): 13, 3, 12, (559,552,0): 14, 2, 12, (559,553,0): 13, 3, 12, (559,554,0): 14, 2, 12, (559,555,0): 13, 3, 12, (559,556,0): 14, 2, 12, (559,557,0): 13, 3, 12, (559,558,0): 14, 2, 12, (559,559,0): 13, 3, 12, (559,560,0): 11, 4, 12, (559,561,0): 12, 5, 12, (559,562,0): 14, 7, 14, (559,563,0): 16, 9, 16, (559,564,0): 17, 10, 17, (559,565,0): 17, 10, 17, (559,566,0): 16, 9, 16, (559,567,0): 15, 8, 15, (559,568,0): 15, 8, 15, (559,569,0): 17, 10, 17, (559,570,0): 19, 12, 19, (559,571,0): 21, 14, 21, (559,572,0): 23, 16, 23, (559,573,0): 24, 18, 22, (559,574,0): 26, 16, 24, (559,575,0): 26, 17, 22, (559,576,0): 26, 15, 19, (559,577,0): 26, 15, 19, (559,578,0): 26, 15, 19, (559,579,0): 27, 16, 20, (559,580,0): 27, 16, 20, (559,581,0): 27, 16, 20, (559,582,0): 27, 16, 20, (559,583,0): 27, 16, 20, (559,584,0): 27, 16, 20, (559,585,0): 27, 16, 20, (559,586,0): 26, 15, 19, (559,587,0): 26, 15, 19, (559,588,0): 25, 14, 18, (559,589,0): 25, 14, 18, (559,590,0): 24, 13, 17, (559,591,0): 24, 13, 17, (559,592,0): 25, 16, 19, (559,593,0): 25, 16, 19, (559,594,0): 26, 17, 20, (559,595,0): 27, 18, 21, (559,596,0): 27, 18, 21, (559,597,0): 26, 17, 20, (559,598,0): 25, 16, 19, (559,599,0): 25, 16, 17, (560,0,0): 37, 56, 70, (560,1,0): 37, 56, 70, (560,2,0): 37, 56, 70, (560,3,0): 38, 57, 71, (560,4,0): 38, 57, 71, (560,5,0): 39, 58, 72, (560,6,0): 39, 58, 72, (560,7,0): 39, 58, 72, (560,8,0): 40, 59, 73, (560,9,0): 40, 59, 73, (560,10,0): 40, 59, 73, (560,11,0): 40, 59, 73, (560,12,0): 40, 59, 73, (560,13,0): 40, 59, 73, (560,14,0): 40, 59, 73, (560,15,0): 40, 59, 73, (560,16,0): 44, 62, 76, (560,17,0): 44, 62, 76, (560,18,0): 43, 61, 75, (560,19,0): 42, 60, 74, (560,20,0): 42, 60, 74, (560,21,0): 41, 59, 73, (560,22,0): 40, 58, 72, (560,23,0): 40, 58, 72, (560,24,0): 42, 60, 74, (560,25,0): 42, 60, 74, (560,26,0): 43, 61, 75, (560,27,0): 43, 61, 75, (560,28,0): 44, 62, 76, (560,29,0): 44, 62, 76, (560,30,0): 45, 63, 77, (560,31,0): 45, 63, 75, (560,32,0): 48, 64, 77, (560,33,0): 48, 65, 75, (560,34,0): 50, 64, 75, (560,35,0): 51, 65, 76, (560,36,0): 52, 64, 76, (560,37,0): 53, 65, 77, (560,38,0): 55, 65, 77, (560,39,0): 55, 65, 77, (560,40,0): 59, 65, 79, (560,41,0): 59, 65, 77, (560,42,0): 62, 66, 78, (560,43,0): 62, 66, 78, (560,44,0): 64, 66, 79, (560,45,0): 64, 66, 79, (560,46,0): 67, 66, 80, (560,47,0): 67, 66, 80, (560,48,0): 65, 67, 80, (560,49,0): 65, 67, 79, (560,50,0): 66, 68, 81, (560,51,0): 66, 68, 80, (560,52,0): 69, 68, 82, (560,53,0): 69, 69, 81, (560,54,0): 70, 69, 83, (560,55,0): 70, 70, 82, (560,56,0): 71, 69, 83, (560,57,0): 72, 70, 83, (560,58,0): 73, 71, 85, (560,59,0): 74, 72, 85, (560,60,0): 75, 71, 86, (560,61,0): 74, 70, 84, (560,62,0): 73, 69, 84, (560,63,0): 72, 68, 83, (560,64,0): 72, 70, 84, (560,65,0): 73, 71, 85, (560,66,0): 73, 71, 85, (560,67,0): 74, 72, 86, (560,68,0): 74, 72, 86, (560,69,0): 75, 73, 87, (560,70,0): 75, 73, 87, (560,71,0): 75, 73, 87, (560,72,0): 77, 75, 89, (560,73,0): 77, 75, 89, (560,74,0): 77, 75, 89, (560,75,0): 78, 76, 90, (560,76,0): 79, 77, 91, (560,77,0): 79, 77, 91, (560,78,0): 79, 77, 91, (560,79,0): 80, 78, 92, (560,80,0): 77, 76, 90, (560,81,0): 77, 76, 90, (560,82,0): 77, 76, 90, (560,83,0): 77, 76, 90, (560,84,0): 77, 76, 90, (560,85,0): 77, 76, 90, (560,86,0): 77, 76, 90, (560,87,0): 75, 77, 92, (560,88,0): 79, 78, 94, (560,89,0): 77, 79, 94, (560,90,0): 77, 79, 94, (560,91,0): 78, 80, 95, (560,92,0): 79, 81, 96, (560,93,0): 79, 81, 96, (560,94,0): 79, 81, 96, (560,95,0): 80, 82, 97, (560,96,0): 77, 78, 96, (560,97,0): 77, 78, 96, (560,98,0): 79, 77, 98, (560,99,0): 77, 78, 98, (560,100,0): 77, 78, 98, (560,101,0): 77, 78, 98, (560,102,0): 76, 78, 99, (560,103,0): 76, 78, 99, (560,104,0): 78, 80, 103, (560,105,0): 79, 81, 104, (560,106,0): 77, 82, 104, (560,107,0): 77, 82, 104, (560,108,0): 76, 80, 105, (560,109,0): 74, 80, 104, (560,110,0): 73, 77, 102, (560,111,0): 71, 77, 101, (560,112,0): 73, 79, 101, (560,113,0): 72, 79, 98, (560,114,0): 72, 78, 100, (560,115,0): 71, 77, 99, (560,116,0): 72, 78, 100, (560,117,0): 73, 79, 101, (560,118,0): 75, 81, 103, (560,119,0): 76, 82, 104, (560,120,0): 76, 82, 104, (560,121,0): 77, 83, 105, (560,122,0): 77, 83, 105, (560,123,0): 77, 83, 105, (560,124,0): 77, 83, 105, (560,125,0): 76, 82, 104, (560,126,0): 74, 80, 102, (560,127,0): 74, 78, 103, (560,128,0): 78, 78, 104, (560,129,0): 80, 77, 104, (560,130,0): 81, 77, 104, (560,131,0): 80, 77, 104, (560,132,0): 81, 77, 104, (560,133,0): 80, 77, 104, (560,134,0): 81, 77, 104, (560,135,0): 80, 77, 104, (560,136,0): 83, 79, 106, (560,137,0): 83, 80, 107, (560,138,0): 86, 82, 109, (560,139,0): 87, 84, 111, (560,140,0): 88, 84, 111, (560,141,0): 87, 84, 111, (560,142,0): 86, 82, 109, (560,143,0): 84, 81, 108, (560,144,0): 83, 83, 109, (560,145,0): 82, 84, 109, (560,146,0): 83, 85, 110, (560,147,0): 83, 85, 110, (560,148,0): 82, 86, 113, (560,149,0): 82, 86, 113, (560,150,0): 83, 87, 116, (560,151,0): 83, 86, 117, (560,152,0): 82, 87, 117, (560,153,0): 82, 87, 119, (560,154,0): 81, 87, 121, (560,155,0): 81, 87, 121, (560,156,0): 81, 87, 123, (560,157,0): 81, 87, 123, (560,158,0): 79, 87, 123, (560,159,0): 79, 87, 124, (560,160,0): 81, 89, 128, (560,161,0): 80, 89, 128, (560,162,0): 81, 88, 130, (560,163,0): 80, 89, 128, (560,164,0): 81, 88, 130, (560,165,0): 80, 89, 128, (560,166,0): 81, 88, 130, (560,167,0): 80, 89, 128, (560,168,0): 79, 86, 128, (560,169,0): 78, 87, 126, (560,170,0): 79, 86, 128, (560,171,0): 78, 87, 126, (560,172,0): 79, 86, 128, (560,173,0): 78, 87, 126, (560,174,0): 79, 86, 128, (560,175,0): 78, 87, 128, (560,176,0): 76, 85, 128, (560,177,0): 75, 86, 131, (560,178,0): 78, 86, 132, (560,179,0): 77, 88, 133, (560,180,0): 80, 88, 134, (560,181,0): 80, 91, 136, (560,182,0): 81, 92, 137, (560,183,0): 81, 92, 137, (560,184,0): 77, 90, 135, (560,185,0): 78, 91, 136, (560,186,0): 77, 91, 136, (560,187,0): 78, 92, 137, (560,188,0): 79, 93, 138, (560,189,0): 80, 94, 139, (560,190,0): 80, 94, 139, (560,191,0): 82, 95, 139, (560,192,0): 78, 91, 133, (560,193,0): 79, 91, 133, (560,194,0): 79, 91, 133, (560,195,0): 79, 91, 133, (560,196,0): 78, 91, 133, (560,197,0): 78, 91, 133, (560,198,0): 78, 91, 135, (560,199,0): 77, 92, 135, (560,200,0): 80, 94, 139, (560,201,0): 78, 95, 139, (560,202,0): 79, 96, 140, (560,203,0): 79, 96, 140, (560,204,0): 80, 97, 141, (560,205,0): 80, 97, 141, (560,206,0): 79, 97, 143, (560,207,0): 78, 99, 144, (560,208,0): 79, 100, 147, (560,209,0): 78, 100, 149, (560,210,0): 77, 99, 148, (560,211,0): 77, 99, 148, (560,212,0): 77, 99, 148, (560,213,0): 77, 99, 148, (560,214,0): 77, 99, 149, (560,215,0): 76, 98, 148, (560,216,0): 82, 103, 156, (560,217,0): 82, 103, 156, (560,218,0): 83, 104, 159, (560,219,0): 84, 105, 160, (560,220,0): 85, 106, 161, (560,221,0): 86, 107, 164, (560,222,0): 87, 108, 165, (560,223,0): 88, 107, 163, (560,224,0): 92, 109, 161, (560,225,0): 95, 112, 164, (560,226,0): 97, 114, 168, (560,227,0): 97, 114, 170, (560,228,0): 97, 113, 173, (560,229,0): 97, 115, 177, (560,230,0): 101, 119, 185, (560,231,0): 105, 122, 191, (560,232,0): 107, 124, 194, (560,233,0): 105, 124, 193, (560,234,0): 103, 122, 191, (560,235,0): 101, 122, 189, (560,236,0): 101, 120, 188, (560,237,0): 100, 121, 188, (560,238,0): 101, 122, 187, (560,239,0): 100, 124, 188, (560,240,0): 100, 124, 188, (560,241,0): 100, 125, 189, (560,242,0): 101, 124, 191, (560,243,0): 101, 126, 192, (560,244,0): 102, 127, 194, (560,245,0): 102, 127, 194, (560,246,0): 103, 127, 197, (560,247,0): 103, 127, 197, (560,248,0): 103, 127, 197, (560,249,0): 103, 127, 199, (560,250,0): 103, 127, 199, (560,251,0): 104, 128, 202, (560,252,0): 104, 128, 202, (560,253,0): 102, 128, 202, (560,254,0): 105, 128, 204, (560,255,0): 105, 129, 203, (560,256,0): 103, 127, 197, (560,257,0): 103, 128, 195, (560,258,0): 103, 126, 194, (560,259,0): 103, 126, 194, (560,260,0): 105, 126, 193, (560,261,0): 105, 126, 193, (560,262,0): 105, 124, 190, (560,263,0): 105, 124, 190, (560,264,0): 98, 117, 183, (560,265,0): 96, 117, 180, (560,266,0): 91, 115, 177, (560,267,0): 88, 114, 175, (560,268,0): 84, 114, 174, (560,269,0): 82, 114, 171, (560,270,0): 82, 114, 173, (560,271,0): 84, 115, 172, (560,272,0): 85, 110, 167, (560,273,0): 88, 110, 167, (560,274,0): 87, 112, 169, (560,275,0): 87, 113, 170, (560,276,0): 88, 114, 175, (560,277,0): 90, 116, 177, (560,278,0): 91, 116, 180, (560,279,0): 92, 116, 180, (560,280,0): 94, 115, 178, (560,281,0): 96, 116, 179, (560,282,0): 100, 116, 178, (560,283,0): 104, 116, 176, (560,284,0): 108, 117, 176, (560,285,0): 111, 118, 173, (560,286,0): 113, 118, 173, (560,287,0): 115, 118, 171, (560,288,0): 114, 116, 167, (560,289,0): 116, 116, 166, (560,290,0): 120, 118, 167, (560,291,0): 121, 117, 167, (560,292,0): 123, 116, 167, (560,293,0): 122, 114, 163, (560,294,0): 125, 113, 159, (560,295,0): 125, 112, 156, (560,296,0): 131, 116, 159, (560,297,0): 131, 114, 156, (560,298,0): 131, 110, 151, (560,299,0): 125, 102, 144, (560,300,0): 116, 91, 131, (560,301,0): 105, 79, 118, (560,302,0): 96, 68, 108, (560,303,0): 90, 63, 96, (560,304,0): 80, 55, 76, (560,305,0): 78, 54, 68, (560,306,0): 73, 49, 63, (560,307,0): 68, 44, 57, (560,308,0): 66, 40, 53, (560,309,0): 63, 37, 48, (560,310,0): 60, 34, 45, (560,311,0): 59, 33, 42, (560,312,0): 56, 31, 37, (560,313,0): 55, 30, 36, (560,314,0): 53, 28, 32, (560,315,0): 51, 26, 30, (560,316,0): 50, 25, 28, (560,317,0): 49, 24, 27, (560,318,0): 49, 24, 27, (560,319,0): 48, 26, 28, (560,320,0): 49, 29, 31, (560,321,0): 48, 28, 30, (560,322,0): 47, 27, 29, (560,323,0): 46, 26, 28, (560,324,0): 45, 25, 27, (560,325,0): 43, 23, 25, (560,326,0): 42, 22, 24, (560,327,0): 42, 22, 24, (560,328,0): 38, 18, 20, (560,329,0): 38, 18, 20, (560,330,0): 37, 17, 19, (560,331,0): 37, 17, 19, (560,332,0): 36, 16, 18, (560,333,0): 36, 16, 18, (560,334,0): 36, 16, 18, (560,335,0): 35, 14, 19, (560,336,0): 33, 14, 20, (560,337,0): 33, 13, 22, (560,338,0): 32, 12, 21, (560,339,0): 32, 12, 21, (560,340,0): 31, 11, 20, (560,341,0): 31, 11, 20, (560,342,0): 30, 10, 19, (560,343,0): 28, 11, 19, (560,344,0): 29, 9, 20, (560,345,0): 26, 9, 19, (560,346,0): 24, 7, 17, (560,347,0): 23, 6, 16, (560,348,0): 22, 5, 15, (560,349,0): 21, 4, 14, (560,350,0): 22, 5, 15, (560,351,0): 22, 5, 15, (560,352,0): 19, 3, 13, (560,353,0): 17, 4, 13, (560,354,0): 19, 3, 13, (560,355,0): 17, 4, 13, (560,356,0): 19, 3, 13, (560,357,0): 17, 4, 13, (560,358,0): 19, 3, 13, (560,359,0): 17, 4, 13, (560,360,0): 17, 1, 11, (560,361,0): 15, 2, 11, (560,362,0): 17, 1, 11, (560,363,0): 15, 2, 11, (560,364,0): 17, 1, 11, (560,365,0): 15, 2, 11, (560,366,0): 17, 1, 11, (560,367,0): 15, 2, 11, (560,368,0): 11, 1, 10, (560,369,0): 9, 2, 10, (560,370,0): 11, 1, 10, (560,371,0): 9, 2, 10, (560,372,0): 11, 1, 10, (560,373,0): 9, 2, 10, (560,374,0): 11, 1, 10, (560,375,0): 9, 2, 10, (560,376,0): 9, 0, 8, (560,377,0): 7, 0, 8, (560,378,0): 10, 0, 9, (560,379,0): 10, 3, 11, (560,380,0): 13, 3, 12, (560,381,0): 13, 6, 14, (560,382,0): 16, 6, 15, (560,383,0): 14, 7, 15, (560,384,0): 13, 3, 11, (560,385,0): 11, 4, 11, (560,386,0): 13, 3, 11, (560,387,0): 14, 4, 12, (560,388,0): 14, 5, 10, (560,389,0): 15, 6, 11, (560,390,0): 15, 6, 9, (560,391,0): 15, 6, 9, (560,392,0): 16, 5, 9, (560,393,0): 17, 6, 10, (560,394,0): 21, 9, 11, (560,395,0): 22, 10, 12, (560,396,0): 23, 11, 11, (560,397,0): 22, 10, 10, (560,398,0): 21, 9, 9, (560,399,0): 20, 8, 8, (560,400,0): 24, 10, 10, (560,401,0): 24, 10, 10, (560,402,0): 24, 10, 10, (560,403,0): 24, 10, 10, (560,404,0): 24, 10, 10, (560,405,0): 24, 10, 10, (560,406,0): 25, 9, 10, (560,407,0): 25, 9, 10, (560,408,0): 30, 11, 13, (560,409,0): 30, 11, 13, (560,410,0): 30, 11, 13, (560,411,0): 29, 10, 12, (560,412,0): 28, 9, 11, (560,413,0): 27, 8, 10, (560,414,0): 27, 7, 9, (560,415,0): 26, 7, 9, (560,416,0): 24, 8, 11, (560,417,0): 25, 9, 12, (560,418,0): 26, 10, 13, (560,419,0): 28, 12, 15, (560,420,0): 28, 12, 15, (560,421,0): 28, 12, 15, (560,422,0): 27, 11, 14, (560,423,0): 27, 11, 14, (560,424,0): 24, 8, 11, (560,425,0): 24, 8, 11, (560,426,0): 24, 8, 11, (560,427,0): 25, 9, 12, (560,428,0): 25, 9, 12, (560,429,0): 26, 10, 13, (560,430,0): 26, 10, 13, (560,431,0): 27, 11, 12, (560,432,0): 27, 9, 9, (560,433,0): 30, 10, 9, (560,434,0): 34, 14, 15, (560,435,0): 37, 15, 17, (560,436,0): 37, 15, 17, (560,437,0): 35, 13, 15, (560,438,0): 31, 9, 11, (560,439,0): 29, 7, 10, (560,440,0): 27, 5, 8, (560,441,0): 28, 6, 9, (560,442,0): 29, 7, 10, (560,443,0): 28, 8, 10, (560,444,0): 27, 6, 11, (560,445,0): 26, 5, 10, (560,446,0): 24, 5, 9, (560,447,0): 23, 4, 6, (560,448,0): 21, 5, 5, (560,449,0): 20, 5, 2, (560,450,0): 20, 5, 2, (560,451,0): 19, 4, 1, (560,452,0): 19, 4, 1, (560,453,0): 18, 3, 0, (560,454,0): 18, 3, 0, (560,455,0): 18, 3, 0, (560,456,0): 19, 4, 1, (560,457,0): 19, 4, 1, (560,458,0): 19, 4, 1, (560,459,0): 20, 5, 2, (560,460,0): 21, 6, 3, (560,461,0): 24, 9, 6, (560,462,0): 26, 11, 8, (560,463,0): 29, 11, 11, (560,464,0): 32, 12, 13, (560,465,0): 31, 11, 13, (560,466,0): 31, 11, 13, (560,467,0): 30, 10, 12, (560,468,0): 29, 9, 11, (560,469,0): 28, 8, 10, (560,470,0): 28, 8, 10, (560,471,0): 27, 7, 9, (560,472,0): 28, 8, 10, (560,473,0): 28, 8, 10, (560,474,0): 28, 8, 10, (560,475,0): 29, 9, 11, (560,476,0): 31, 11, 13, (560,477,0): 33, 13, 15, (560,478,0): 35, 15, 17, (560,479,0): 39, 14, 17, (560,480,0): 45, 17, 16, (560,481,0): 48, 17, 15, (560,482,0): 51, 19, 20, (560,483,0): 51, 21, 21, (560,484,0): 51, 21, 21, (560,485,0): 49, 21, 20, (560,486,0): 46, 18, 17, (560,487,0): 43, 17, 16, (560,488,0): 43, 17, 16, (560,489,0): 41, 17, 15, (560,490,0): 41, 17, 15, (560,491,0): 38, 17, 14, (560,492,0): 38, 17, 14, (560,493,0): 36, 17, 13, (560,494,0): 36, 17, 13, (560,495,0): 36, 17, 13, (560,496,0): 42, 21, 18, (560,497,0): 42, 21, 18, (560,498,0): 42, 21, 18, (560,499,0): 41, 20, 17, (560,500,0): 41, 20, 19, (560,501,0): 40, 19, 18, (560,502,0): 39, 19, 18, (560,503,0): 38, 18, 17, (560,504,0): 32, 14, 14, (560,505,0): 32, 14, 14, (560,506,0): 32, 14, 14, (560,507,0): 32, 14, 14, (560,508,0): 32, 13, 15, (560,509,0): 30, 14, 15, (560,510,0): 32, 13, 15, (560,511,0): 32, 13, 15, (560,512,0): 32, 12, 14, (560,513,0): 32, 12, 14, (560,514,0): 31, 10, 15, (560,515,0): 30, 9, 14, (560,516,0): 28, 9, 13, (560,517,0): 27, 8, 12, (560,518,0): 26, 7, 13, (560,519,0): 26, 7, 13, (560,520,0): 24, 5, 11, (560,521,0): 25, 8, 14, (560,522,0): 26, 9, 17, (560,523,0): 24, 7, 15, (560,524,0): 20, 3, 11, (560,525,0): 18, 1, 9, (560,526,0): 18, 2, 12, (560,527,0): 20, 4, 14, (560,528,0): 15, 2, 12, (560,529,0): 14, 2, 12, (560,530,0): 14, 2, 12, (560,531,0): 14, 2, 12, (560,532,0): 14, 2, 12, (560,533,0): 14, 2, 12, (560,534,0): 14, 2, 12, (560,535,0): 14, 2, 12, (560,536,0): 12, 0, 10, (560,537,0): 12, 0, 10, (560,538,0): 12, 0, 10, (560,539,0): 12, 0, 10, (560,540,0): 12, 0, 10, (560,541,0): 11, 1, 10, (560,542,0): 12, 0, 10, (560,543,0): 11, 1, 10, (560,544,0): 10, 0, 9, (560,545,0): 8, 1, 9, (560,546,0): 10, 0, 9, (560,547,0): 9, 2, 10, (560,548,0): 11, 1, 10, (560,549,0): 10, 3, 11, (560,550,0): 12, 2, 11, (560,551,0): 11, 4, 12, (560,552,0): 11, 1, 10, (560,553,0): 9, 2, 10, (560,554,0): 12, 2, 11, (560,555,0): 10, 3, 11, (560,556,0): 13, 3, 12, (560,557,0): 11, 4, 12, (560,558,0): 14, 4, 13, (560,559,0): 12, 5, 13, (560,560,0): 10, 5, 12, (560,561,0): 10, 5, 12, (560,562,0): 11, 6, 13, (560,563,0): 12, 7, 14, (560,564,0): 13, 8, 15, (560,565,0): 14, 9, 16, (560,566,0): 16, 9, 16, (560,567,0): 16, 9, 16, (560,568,0): 22, 13, 18, (560,569,0): 22, 13, 18, (560,570,0): 24, 15, 20, (560,571,0): 25, 16, 21, (560,572,0): 26, 17, 22, (560,573,0): 27, 18, 21, (560,574,0): 28, 17, 23, (560,575,0): 28, 17, 21, (560,576,0): 26, 15, 19, (560,577,0): 26, 15, 19, (560,578,0): 26, 15, 19, (560,579,0): 26, 15, 19, (560,580,0): 26, 15, 19, (560,581,0): 25, 14, 18, (560,582,0): 25, 14, 18, (560,583,0): 25, 14, 18, (560,584,0): 26, 15, 19, (560,585,0): 27, 16, 20, (560,586,0): 27, 16, 20, (560,587,0): 27, 16, 20, (560,588,0): 27, 16, 20, (560,589,0): 25, 14, 18, (560,590,0): 23, 12, 16, (560,591,0): 22, 11, 15, (560,592,0): 27, 14, 21, (560,593,0): 27, 14, 21, (560,594,0): 27, 14, 21, (560,595,0): 28, 16, 20, (560,596,0): 28, 16, 20, (560,597,0): 29, 17, 19, (560,598,0): 29, 17, 19, (560,599,0): 29, 17, 17, (561,0,0): 37, 56, 70, (561,1,0): 37, 56, 70, (561,2,0): 37, 56, 70, (561,3,0): 38, 57, 71, (561,4,0): 38, 57, 71, (561,5,0): 39, 58, 72, (561,6,0): 39, 58, 72, (561,7,0): 39, 58, 72, (561,8,0): 40, 59, 73, (561,9,0): 40, 59, 73, (561,10,0): 40, 59, 73, (561,11,0): 40, 59, 73, (561,12,0): 40, 59, 73, (561,13,0): 40, 59, 73, (561,14,0): 40, 59, 73, (561,15,0): 40, 59, 73, (561,16,0): 41, 59, 73, (561,17,0): 42, 60, 74, (561,18,0): 42, 60, 74, (561,19,0): 42, 60, 74, (561,20,0): 42, 60, 74, (561,21,0): 42, 60, 74, (561,22,0): 42, 60, 74, (561,23,0): 43, 61, 75, (561,24,0): 42, 60, 74, (561,25,0): 42, 60, 74, (561,26,0): 43, 61, 75, (561,27,0): 43, 61, 75, (561,28,0): 44, 62, 76, (561,29,0): 44, 62, 76, (561,30,0): 45, 63, 77, (561,31,0): 45, 63, 75, (561,32,0): 48, 64, 77, (561,33,0): 48, 65, 75, (561,34,0): 50, 64, 75, (561,35,0): 51, 65, 76, (561,36,0): 52, 64, 76, (561,37,0): 53, 65, 77, (561,38,0): 55, 65, 77, (561,39,0): 55, 65, 77, (561,40,0): 59, 65, 79, (561,41,0): 59, 65, 79, (561,42,0): 61, 64, 79, (561,43,0): 62, 65, 80, (561,44,0): 63, 65, 80, (561,45,0): 64, 66, 81, (561,46,0): 66, 65, 81, (561,47,0): 67, 66, 82, (561,48,0): 65, 67, 80, (561,49,0): 65, 67, 80, (561,50,0): 65, 67, 80, (561,51,0): 66, 68, 81, (561,52,0): 68, 67, 81, (561,53,0): 69, 68, 82, (561,54,0): 70, 68, 82, (561,55,0): 71, 69, 83, (561,56,0): 71, 69, 83, (561,57,0): 72, 70, 84, (561,58,0): 74, 70, 85, (561,59,0): 74, 70, 85, (561,60,0): 76, 69, 85, (561,61,0): 76, 69, 85, (561,62,0): 75, 68, 84, (561,63,0): 72, 68, 83, (561,64,0): 73, 69, 84, (561,65,0): 73, 71, 85, (561,66,0): 73, 71, 85, (561,67,0): 73, 71, 85, (561,68,0): 74, 72, 86, (561,69,0): 74, 72, 86, (561,70,0): 75, 73, 87, (561,71,0): 75, 73, 87, (561,72,0): 76, 74, 88, (561,73,0): 77, 75, 89, (561,74,0): 77, 75, 89, (561,75,0): 78, 76, 90, (561,76,0): 78, 76, 90, (561,77,0): 79, 77, 91, (561,78,0): 79, 77, 91, (561,79,0): 78, 77, 91, (561,80,0): 77, 76, 92, (561,81,0): 75, 77, 92, (561,82,0): 75, 77, 92, (561,83,0): 75, 77, 92, (561,84,0): 75, 77, 92, (561,85,0): 75, 77, 92, (561,86,0): 75, 77, 92, (561,87,0): 75, 77, 92, (561,88,0): 76, 78, 93, (561,89,0): 77, 79, 94, (561,90,0): 77, 79, 94, (561,91,0): 78, 80, 95, (561,92,0): 78, 80, 95, (561,93,0): 79, 81, 96, (561,94,0): 79, 81, 96, (561,95,0): 79, 81, 96, (561,96,0): 79, 78, 96, (561,97,0): 79, 78, 96, (561,98,0): 79, 77, 98, (561,99,0): 79, 77, 98, (561,100,0): 77, 78, 98, (561,101,0): 77, 78, 98, (561,102,0): 76, 78, 99, (561,103,0): 76, 78, 99, (561,104,0): 78, 80, 103, (561,105,0): 78, 80, 103, (561,106,0): 77, 82, 104, (561,107,0): 77, 82, 104, (561,108,0): 75, 81, 105, (561,109,0): 74, 80, 104, (561,110,0): 72, 78, 102, (561,111,0): 71, 77, 99, (561,112,0): 73, 79, 101, (561,113,0): 72, 79, 98, (561,114,0): 72, 79, 98, (561,115,0): 71, 78, 97, (561,116,0): 72, 79, 98, (561,117,0): 73, 80, 99, (561,118,0): 75, 82, 101, (561,119,0): 76, 83, 102, (561,120,0): 76, 83, 102, (561,121,0): 76, 83, 102, (561,122,0): 77, 84, 103, (561,123,0): 77, 84, 103, (561,124,0): 77, 84, 103, (561,125,0): 75, 82, 101, (561,126,0): 74, 81, 100, (561,127,0): 74, 79, 99, (561,128,0): 80, 77, 104, (561,129,0): 81, 77, 104, (561,130,0): 82, 76, 104, (561,131,0): 81, 77, 104, (561,132,0): 82, 76, 104, (561,133,0): 81, 77, 104, (561,134,0): 82, 76, 104, (561,135,0): 81, 77, 104, (561,136,0): 84, 78, 106, (561,137,0): 84, 80, 107, (561,138,0): 87, 81, 109, (561,139,0): 88, 84, 111, (561,140,0): 89, 83, 111, (561,141,0): 88, 84, 111, (561,142,0): 88, 82, 110, (561,143,0): 86, 82, 109, (561,144,0): 83, 83, 107, (561,145,0): 82, 84, 107, (561,146,0): 82, 84, 109, (561,147,0): 83, 85, 110, (561,148,0): 81, 85, 112, (561,149,0): 82, 86, 113, (561,150,0): 82, 86, 115, (561,151,0): 83, 87, 116, (561,152,0): 83, 88, 120, (561,153,0): 83, 88, 120, (561,154,0): 82, 88, 122, (561,155,0): 82, 88, 122, (561,156,0): 82, 88, 124, (561,157,0): 82, 88, 124, (561,158,0): 80, 88, 125, (561,159,0): 80, 88, 125, (561,160,0): 80, 89, 128, (561,161,0): 80, 89, 128, (561,162,0): 80, 89, 130, (561,163,0): 80, 89, 128, (561,164,0): 80, 89, 130, (561,165,0): 80, 89, 128, (561,166,0): 80, 89, 130, (561,167,0): 80, 89, 128, (561,168,0): 78, 87, 128, (561,169,0): 78, 87, 126, (561,170,0): 78, 87, 128, (561,171,0): 78, 87, 126, (561,172,0): 78, 87, 128, (561,173,0): 78, 87, 126, (561,174,0): 78, 87, 128, (561,175,0): 78, 87, 128, (561,176,0): 77, 85, 131, (561,177,0): 77, 85, 132, (561,178,0): 78, 86, 133, (561,179,0): 77, 88, 134, (561,180,0): 80, 88, 135, (561,181,0): 80, 91, 137, (561,182,0): 81, 92, 138, (561,183,0): 80, 93, 138, (561,184,0): 80, 93, 138, (561,185,0): 79, 93, 138, (561,186,0): 79, 93, 138, (561,187,0): 79, 93, 138, (561,188,0): 78, 92, 137, (561,189,0): 76, 93, 137, (561,190,0): 78, 92, 137, (561,191,0): 78, 93, 136, (561,192,0): 78, 91, 133, (561,193,0): 78, 92, 131, (561,194,0): 78, 91, 133, (561,195,0): 78, 91, 133, (561,196,0): 78, 91, 133, (561,197,0): 77, 92, 133, (561,198,0): 77, 92, 135, (561,199,0): 77, 92, 135, (561,200,0): 79, 93, 138, (561,201,0): 77, 94, 138, (561,202,0): 78, 95, 139, (561,203,0): 77, 96, 139, (561,204,0): 78, 96, 142, (561,205,0): 78, 96, 142, (561,206,0): 79, 97, 143, (561,207,0): 77, 98, 143, (561,208,0): 78, 99, 146, (561,209,0): 77, 99, 148, (561,210,0): 77, 99, 148, (561,211,0): 77, 99, 148, (561,212,0): 77, 99, 148, (561,213,0): 78, 100, 149, (561,214,0): 78, 100, 150, (561,215,0): 78, 100, 150, (561,216,0): 82, 103, 156, (561,217,0): 83, 104, 157, (561,218,0): 84, 105, 160, (561,219,0): 85, 106, 161, (561,220,0): 86, 107, 162, (561,221,0): 87, 108, 163, (561,222,0): 87, 108, 163, (561,223,0): 89, 109, 162, (561,224,0): 94, 111, 165, (561,225,0): 97, 112, 167, (561,226,0): 99, 114, 171, (561,227,0): 99, 115, 174, (561,228,0): 99, 115, 175, (561,229,0): 100, 115, 180, (561,230,0): 105, 120, 187, (561,231,0): 107, 124, 193, (561,232,0): 105, 122, 192, (561,233,0): 103, 122, 191, (561,234,0): 102, 121, 190, (561,235,0): 101, 120, 189, (561,236,0): 100, 119, 188, (561,237,0): 99, 119, 188, (561,238,0): 100, 121, 188, (561,239,0): 98, 121, 188, (561,240,0): 101, 126, 192, (561,241,0): 99, 127, 192, (561,242,0): 101, 126, 192, (561,243,0): 99, 126, 193, (561,244,0): 102, 127, 194, (561,245,0): 100, 127, 196, (561,246,0): 102, 126, 196, (561,247,0): 100, 127, 198, (561,248,0): 102, 126, 198, (561,249,0): 101, 127, 201, (561,250,0): 103, 127, 201, (561,251,0): 101, 127, 202, (561,252,0): 103, 126, 202, (561,253,0): 101, 127, 204, (561,254,0): 103, 126, 204, (561,255,0): 101, 127, 202, (561,256,0): 99, 126, 197, (561,257,0): 99, 126, 195, (561,258,0): 99, 126, 197, (561,259,0): 100, 124, 194, (561,260,0): 100, 123, 193, (561,261,0): 101, 121, 190, (561,262,0): 101, 121, 190, (561,263,0): 101, 122, 189, (561,264,0): 95, 116, 183, (561,265,0): 92, 116, 180, (561,266,0): 87, 115, 178, (561,267,0): 84, 114, 176, (561,268,0): 80, 114, 175, (561,269,0): 76, 115, 172, (561,270,0): 76, 115, 172, (561,271,0): 79, 116, 171, (561,272,0): 84, 110, 169, (561,273,0): 88, 110, 168, (561,274,0): 87, 111, 171, (561,275,0): 87, 113, 172, (561,276,0): 88, 114, 175, (561,277,0): 87, 115, 178, (561,278,0): 88, 116, 181, (561,279,0): 91, 116, 180, (561,280,0): 91, 115, 179, (561,281,0): 95, 115, 178, (561,282,0): 98, 114, 176, (561,283,0): 103, 114, 176, (561,284,0): 106, 115, 174, (561,285,0): 109, 116, 171, (561,286,0): 111, 116, 171, (561,287,0): 113, 116, 169, (561,288,0): 115, 117, 168, (561,289,0): 116, 116, 166, (561,290,0): 118, 116, 165, (561,291,0): 119, 115, 165, (561,292,0): 120, 114, 162, (561,293,0): 121, 112, 159, (561,294,0): 123, 111, 157, (561,295,0): 125, 110, 153, (561,296,0): 129, 111, 153, (561,297,0): 129, 108, 149, (561,298,0): 125, 103, 142, (561,299,0): 119, 94, 133, (561,300,0): 111, 83, 121, (561,301,0): 102, 72, 108, (561,302,0): 94, 62, 99, (561,303,0): 89, 58, 89, (561,304,0): 80, 53, 72, (561,305,0): 78, 51, 66, (561,306,0): 74, 47, 62, (561,307,0): 69, 42, 57, (561,308,0): 65, 39, 52, (561,309,0): 62, 36, 49, (561,310,0): 60, 34, 45, (561,311,0): 59, 33, 42, (561,312,0): 55, 29, 38, (561,313,0): 54, 29, 35, (561,314,0): 52, 27, 31, (561,315,0): 50, 25, 29, (561,316,0): 48, 23, 26, (561,317,0): 48, 23, 26, (561,318,0): 48, 23, 26, (561,319,0): 46, 24, 26, (561,320,0): 47, 27, 29, (561,321,0): 46, 26, 28, (561,322,0): 46, 26, 28, (561,323,0): 44, 24, 26, (561,324,0): 43, 23, 25, (561,325,0): 42, 22, 24, (561,326,0): 41, 21, 23, (561,327,0): 41, 21, 23, (561,328,0): 37, 17, 19, (561,329,0): 37, 17, 19, (561,330,0): 37, 17, 19, (561,331,0): 36, 16, 18, (561,332,0): 35, 15, 17, (561,333,0): 35, 15, 17, (561,334,0): 35, 15, 17, (561,335,0): 33, 14, 18, (561,336,0): 33, 13, 22, (561,337,0): 30, 13, 23, (561,338,0): 30, 13, 23, (561,339,0): 29, 12, 22, (561,340,0): 29, 12, 22, (561,341,0): 28, 11, 21, (561,342,0): 28, 11, 21, (561,343,0): 28, 11, 21, (561,344,0): 27, 10, 20, (561,345,0): 26, 9, 19, (561,346,0): 24, 7, 17, (561,347,0): 22, 5, 15, (561,348,0): 21, 4, 14, (561,349,0): 21, 4, 14, (561,350,0): 21, 4, 14, (561,351,0): 22, 5, 15, (561,352,0): 19, 3, 13, (561,353,0): 19, 3, 13, (561,354,0): 19, 3, 13, (561,355,0): 19, 3, 13, (561,356,0): 19, 3, 13, (561,357,0): 19, 3, 13, (561,358,0): 19, 3, 13, (561,359,0): 19, 3, 13, (561,360,0): 17, 1, 11, (561,361,0): 17, 1, 11, (561,362,0): 17, 1, 11, (561,363,0): 17, 1, 11, (561,364,0): 17, 1, 11, (561,365,0): 17, 1, 11, (561,366,0): 17, 1, 11, (561,367,0): 15, 2, 11, (561,368,0): 11, 1, 10, (561,369,0): 9, 2, 10, (561,370,0): 9, 2, 10, (561,371,0): 9, 2, 10, (561,372,0): 9, 2, 10, (561,373,0): 9, 2, 10, (561,374,0): 9, 2, 10, (561,375,0): 9, 2, 10, (561,376,0): 7, 0, 8, (561,377,0): 8, 1, 9, (561,378,0): 9, 2, 10, (561,379,0): 10, 3, 11, (561,380,0): 11, 4, 12, (561,381,0): 12, 5, 13, (561,382,0): 13, 6, 14, (561,383,0): 14, 7, 15, (561,384,0): 11, 4, 11, (561,385,0): 11, 4, 11, (561,386,0): 11, 4, 11, (561,387,0): 12, 5, 12, (561,388,0): 14, 5, 10, (561,389,0): 15, 6, 11, (561,390,0): 15, 6, 9, (561,391,0): 15, 6, 9, (561,392,0): 17, 6, 10, (561,393,0): 18, 7, 11, (561,394,0): 20, 8, 10, (561,395,0): 21, 9, 11, (561,396,0): 22, 10, 10, (561,397,0): 22, 10, 10, (561,398,0): 23, 9, 9, (561,399,0): 23, 9, 9, (561,400,0): 22, 10, 10, (561,401,0): 22, 10, 10, (561,402,0): 24, 10, 10, (561,403,0): 24, 10, 10, (561,404,0): 24, 10, 10, (561,405,0): 24, 10, 10, (561,406,0): 25, 9, 10, (561,407,0): 25, 9, 10, (561,408,0): 29, 10, 12, (561,409,0): 29, 10, 12, (561,410,0): 29, 10, 12, (561,411,0): 28, 9, 11, (561,412,0): 28, 8, 10, (561,413,0): 27, 7, 9, (561,414,0): 27, 7, 9, (561,415,0): 26, 7, 9, (561,416,0): 26, 7, 11, (561,417,0): 25, 9, 12, (561,418,0): 27, 11, 14, (561,419,0): 28, 12, 15, (561,420,0): 28, 12, 15, (561,421,0): 28, 12, 15, (561,422,0): 27, 11, 14, (561,423,0): 27, 11, 14, (561,424,0): 24, 8, 11, (561,425,0): 24, 8, 11, (561,426,0): 25, 9, 12, (561,427,0): 25, 9, 12, (561,428,0): 26, 10, 13, (561,429,0): 26, 10, 13, (561,430,0): 27, 11, 14, (561,431,0): 27, 11, 12, (561,432,0): 29, 9, 10, (561,433,0): 30, 10, 9, (561,434,0): 32, 12, 13, (561,435,0): 34, 14, 15, (561,436,0): 34, 14, 15, (561,437,0): 32, 12, 13, (561,438,0): 30, 10, 12, (561,439,0): 29, 9, 11, (561,440,0): 26, 5, 10, (561,441,0): 27, 6, 11, (561,442,0): 27, 6, 11, (561,443,0): 27, 6, 11, (561,444,0): 27, 6, 13, (561,445,0): 26, 5, 12, (561,446,0): 24, 3, 10, (561,447,0): 22, 3, 7, (561,448,0): 23, 5, 5, (561,449,0): 20, 5, 2, (561,450,0): 20, 5, 2, (561,451,0): 20, 5, 2, (561,452,0): 19, 4, 1, (561,453,0): 19, 4, 1, (561,454,0): 18, 3, 0, (561,455,0): 18, 3, 0, (561,456,0): 19, 4, 1, (561,457,0): 19, 4, 1, (561,458,0): 19, 4, 1, (561,459,0): 20, 5, 2, (561,460,0): 21, 6, 3, (561,461,0): 24, 9, 6, (561,462,0): 26, 11, 8, (561,463,0): 27, 11, 11, (561,464,0): 31, 11, 13, (561,465,0): 31, 11, 13, (561,466,0): 30, 10, 12, (561,467,0): 30, 10, 12, (561,468,0): 29, 9, 11, (561,469,0): 28, 8, 10, (561,470,0): 28, 8, 10, (561,471,0): 27, 7, 9, (561,472,0): 28, 8, 10, (561,473,0): 28, 8, 10, (561,474,0): 28, 8, 10, (561,475,0): 29, 9, 11, (561,476,0): 31, 11, 13, (561,477,0): 33, 13, 15, (561,478,0): 35, 15, 17, (561,479,0): 39, 14, 17, (561,480,0): 46, 16, 18, (561,481,0): 48, 16, 17, (561,482,0): 51, 19, 20, (561,483,0): 52, 20, 21, (561,484,0): 51, 21, 21, (561,485,0): 50, 20, 20, (561,486,0): 46, 18, 17, (561,487,0): 43, 17, 16, (561,488,0): 43, 17, 16, (561,489,0): 41, 17, 15, (561,490,0): 41, 17, 15, (561,491,0): 39, 18, 15, (561,492,0): 38, 17, 14, (561,493,0): 37, 18, 14, (561,494,0): 36, 17, 13, (561,495,0): 36, 17, 13, (561,496,0): 42, 21, 18, (561,497,0): 44, 20, 18, (561,498,0): 41, 20, 17, (561,499,0): 41, 20, 17, (561,500,0): 40, 19, 18, (561,501,0): 40, 19, 18, (561,502,0): 38, 18, 17, (561,503,0): 38, 18, 17, (561,504,0): 32, 14, 14, (561,505,0): 32, 14, 14, (561,506,0): 32, 13, 15, (561,507,0): 32, 13, 15, (561,508,0): 30, 14, 15, (561,509,0): 30, 14, 15, (561,510,0): 30, 14, 17, (561,511,0): 30, 14, 17, (561,512,0): 32, 12, 14, (561,513,0): 32, 12, 14, (561,514,0): 31, 11, 13, (561,515,0): 30, 10, 12, (561,516,0): 28, 9, 13, (561,517,0): 27, 8, 12, (561,518,0): 26, 7, 13, (561,519,0): 26, 7, 13, (561,520,0): 23, 6, 12, (561,521,0): 24, 7, 13, (561,522,0): 25, 10, 17, (561,523,0): 23, 8, 15, (561,524,0): 19, 3, 13, (561,525,0): 17, 1, 11, (561,526,0): 16, 3, 12, (561,527,0): 18, 5, 14, (561,528,0): 14, 2, 12, (561,529,0): 14, 2, 12, (561,530,0): 14, 2, 12, (561,531,0): 14, 2, 12, (561,532,0): 14, 2, 12, (561,533,0): 14, 2, 12, (561,534,0): 14, 2, 12, (561,535,0): 14, 2, 12, (561,536,0): 12, 0, 10, (561,537,0): 12, 0, 10, (561,538,0): 12, 0, 10, (561,539,0): 12, 0, 10, (561,540,0): 12, 0, 10, (561,541,0): 12, 0, 10, (561,542,0): 12, 0, 10, (561,543,0): 11, 1, 10, (561,544,0): 10, 0, 9, (561,545,0): 8, 1, 9, (561,546,0): 9, 2, 10, (561,547,0): 9, 2, 10, (561,548,0): 10, 3, 11, (561,549,0): 10, 3, 11, (561,550,0): 10, 3, 11, (561,551,0): 11, 4, 12, (561,552,0): 8, 1, 9, (561,553,0): 9, 2, 10, (561,554,0): 9, 2, 10, (561,555,0): 10, 3, 11, (561,556,0): 10, 3, 11, (561,557,0): 11, 4, 12, (561,558,0): 11, 4, 12, (561,559,0): 10, 5, 12, (561,560,0): 10, 4, 14, (561,561,0): 8, 5, 14, (561,562,0): 11, 6, 13, (561,563,0): 12, 7, 14, (561,564,0): 13, 8, 15, (561,565,0): 14, 9, 16, (561,566,0): 16, 9, 16, (561,567,0): 17, 10, 17, (561,568,0): 22, 13, 18, (561,569,0): 23, 14, 19, (561,570,0): 25, 16, 21, (561,571,0): 26, 17, 22, (561,572,0): 29, 18, 22, (561,573,0): 29, 18, 22, (561,574,0): 29, 18, 22, (561,575,0): 29, 18, 22, (561,576,0): 27, 16, 20, (561,577,0): 27, 16, 20, (561,578,0): 27, 16, 20, (561,579,0): 27, 16, 20, (561,580,0): 26, 15, 19, (561,581,0): 26, 15, 19, (561,582,0): 26, 15, 19, (561,583,0): 26, 15, 19, (561,584,0): 26, 15, 19, (561,585,0): 27, 16, 20, (561,586,0): 27, 16, 20, (561,587,0): 27, 16, 20, (561,588,0): 27, 16, 20, (561,589,0): 25, 14, 18, (561,590,0): 24, 13, 17, (561,591,0): 23, 12, 16, (561,592,0): 27, 14, 23, (561,593,0): 27, 14, 23, (561,594,0): 27, 14, 21, (561,595,0): 28, 16, 20, (561,596,0): 28, 16, 20, (561,597,0): 29, 17, 19, (561,598,0): 29, 17, 17, (561,599,0): 29, 17, 17, (562,0,0): 37, 56, 70, (562,1,0): 37, 56, 70, (562,2,0): 37, 56, 70, (562,3,0): 38, 57, 71, (562,4,0): 38, 57, 71, (562,5,0): 39, 58, 72, (562,6,0): 39, 58, 72, (562,7,0): 39, 58, 72, (562,8,0): 40, 59, 73, (562,9,0): 40, 59, 73, (562,10,0): 40, 59, 73, (562,11,0): 40, 59, 73, (562,12,0): 40, 59, 73, (562,13,0): 40, 59, 73, (562,14,0): 40, 59, 73, (562,15,0): 40, 59, 73, (562,16,0): 39, 57, 71, (562,17,0): 40, 58, 72, (562,18,0): 41, 59, 73, (562,19,0): 41, 59, 73, (562,20,0): 43, 61, 75, (562,21,0): 43, 61, 75, (562,22,0): 44, 62, 76, (562,23,0): 45, 63, 77, (562,24,0): 42, 60, 74, (562,25,0): 42, 60, 74, (562,26,0): 43, 61, 75, (562,27,0): 43, 61, 75, (562,28,0): 44, 62, 76, (562,29,0): 44, 62, 76, (562,30,0): 45, 63, 77, (562,31,0): 45, 63, 75, (562,32,0): 48, 64, 77, (562,33,0): 48, 65, 75, (562,34,0): 50, 64, 75, (562,35,0): 51, 65, 76, (562,36,0): 52, 64, 76, (562,37,0): 53, 65, 77, (562,38,0): 55, 65, 77, (562,39,0): 55, 65, 77, (562,40,0): 58, 64, 78, (562,41,0): 59, 65, 79, (562,42,0): 61, 64, 79, (562,43,0): 62, 65, 80, (562,44,0): 63, 65, 80, (562,45,0): 64, 66, 81, (562,46,0): 66, 65, 81, (562,47,0): 66, 65, 81, (562,48,0): 64, 66, 79, (562,49,0): 65, 67, 80, (562,50,0): 65, 67, 80, (562,51,0): 66, 68, 81, (562,52,0): 68, 67, 81, (562,53,0): 69, 68, 82, (562,54,0): 70, 68, 82, (562,55,0): 70, 68, 82, (562,56,0): 70, 68, 82, (562,57,0): 71, 69, 83, (562,58,0): 73, 69, 84, (562,59,0): 74, 70, 85, (562,60,0): 76, 69, 85, (562,61,0): 75, 68, 84, (562,62,0): 74, 67, 83, (562,63,0): 71, 67, 82, (562,64,0): 73, 69, 84, (562,65,0): 72, 70, 84, (562,66,0): 72, 70, 84, (562,67,0): 73, 71, 85, (562,68,0): 74, 72, 86, (562,69,0): 74, 72, 86, (562,70,0): 74, 72, 86, (562,71,0): 75, 73, 87, (562,72,0): 76, 74, 88, (562,73,0): 76, 74, 88, (562,74,0): 76, 74, 88, (562,75,0): 77, 75, 89, (562,76,0): 77, 75, 89, (562,77,0): 78, 76, 90, (562,78,0): 78, 76, 90, (562,79,0): 77, 76, 90, (562,80,0): 76, 75, 91, (562,81,0): 74, 76, 91, (562,82,0): 74, 76, 91, (562,83,0): 74, 76, 91, (562,84,0): 74, 76, 91, (562,85,0): 74, 76, 91, (562,86,0): 74, 76, 91, (562,87,0): 74, 76, 91, (562,88,0): 76, 78, 93, (562,89,0): 76, 78, 93, (562,90,0): 76, 78, 93, (562,91,0): 77, 79, 94, (562,92,0): 77, 79, 94, (562,93,0): 78, 80, 95, (562,94,0): 78, 80, 95, (562,95,0): 78, 80, 95, (562,96,0): 78, 77, 95, (562,97,0): 78, 77, 95, (562,98,0): 76, 77, 97, (562,99,0): 76, 77, 97, (562,100,0): 76, 77, 97, (562,101,0): 76, 77, 97, (562,102,0): 75, 77, 98, (562,103,0): 75, 77, 98, (562,104,0): 75, 80, 102, (562,105,0): 75, 80, 102, (562,106,0): 76, 81, 103, (562,107,0): 76, 81, 103, (562,108,0): 75, 81, 105, (562,109,0): 74, 80, 104, (562,110,0): 72, 78, 102, (562,111,0): 71, 77, 99, (562,112,0): 73, 79, 101, (562,113,0): 72, 79, 98, (562,114,0): 72, 79, 98, (562,115,0): 71, 78, 97, (562,116,0): 72, 79, 98, (562,117,0): 73, 80, 99, (562,118,0): 75, 82, 101, (562,119,0): 76, 83, 102, (562,120,0): 75, 82, 101, (562,121,0): 76, 83, 102, (562,122,0): 77, 84, 103, (562,123,0): 77, 84, 103, (562,124,0): 76, 83, 102, (562,125,0): 75, 82, 101, (562,126,0): 74, 81, 100, (562,127,0): 74, 79, 99, (562,128,0): 76, 76, 102, (562,129,0): 78, 75, 102, (562,130,0): 79, 75, 102, (562,131,0): 78, 75, 102, (562,132,0): 79, 75, 102, (562,133,0): 78, 75, 102, (562,134,0): 79, 75, 102, (562,135,0): 78, 75, 102, (562,136,0): 84, 80, 107, (562,137,0): 84, 81, 108, (562,138,0): 86, 82, 109, (562,139,0): 86, 83, 110, (562,140,0): 88, 84, 111, (562,141,0): 87, 84, 111, (562,142,0): 87, 83, 110, (562,143,0): 86, 83, 110, (562,144,0): 82, 82, 106, (562,145,0): 82, 84, 107, (562,146,0): 82, 84, 109, (562,147,0): 83, 85, 110, (562,148,0): 81, 85, 112, (562,149,0): 82, 86, 113, (562,150,0): 82, 86, 115, (562,151,0): 82, 86, 115, (562,152,0): 84, 89, 121, (562,153,0): 84, 89, 121, (562,154,0): 83, 89, 123, (562,155,0): 83, 89, 123, (562,156,0): 83, 89, 125, (562,157,0): 83, 89, 125, (562,158,0): 81, 89, 126, (562,159,0): 81, 89, 126, (562,160,0): 81, 89, 126, (562,161,0): 81, 89, 126, (562,162,0): 81, 89, 128, (562,163,0): 81, 89, 126, (562,164,0): 81, 89, 128, (562,165,0): 81, 89, 126, (562,166,0): 81, 89, 128, (562,167,0): 81, 89, 126, (562,168,0): 78, 86, 125, (562,169,0): 78, 86, 123, (562,170,0): 78, 86, 125, (562,171,0): 78, 86, 123, (562,172,0): 78, 86, 125, (562,173,0): 78, 86, 123, (562,174,0): 78, 86, 125, (562,175,0): 77, 86, 125, (562,176,0): 78, 87, 130, (562,177,0): 76, 87, 132, (562,178,0): 77, 88, 133, (562,179,0): 77, 90, 134, (562,180,0): 79, 90, 135, (562,181,0): 79, 92, 136, (562,182,0): 79, 92, 136, (562,183,0): 79, 94, 137, (562,184,0): 81, 96, 139, (562,185,0): 79, 96, 139, (562,186,0): 78, 95, 138, (562,187,0): 77, 94, 137, (562,188,0): 76, 93, 136, (562,189,0): 74, 93, 135, (562,190,0): 74, 91, 134, (562,191,0): 74, 91, 134, (562,192,0): 75, 93, 133, (562,193,0): 77, 92, 131, (562,194,0): 77, 92, 133, (562,195,0): 77, 92, 133, (562,196,0): 77, 92, 133, (562,197,0): 75, 93, 133, (562,198,0): 75, 92, 135, (562,199,0): 74, 93, 135, (562,200,0): 75, 94, 137, (562,201,0): 73, 94, 137, (562,202,0): 74, 95, 138, (562,203,0): 74, 95, 138, (562,204,0): 75, 96, 141, (562,205,0): 75, 96, 141, (562,206,0): 76, 97, 142, (562,207,0): 76, 97, 142, (562,208,0): 77, 98, 145, (562,209,0): 77, 98, 145, (562,210,0): 77, 98, 145, (562,211,0): 78, 99, 146, (562,212,0): 79, 100, 147, (562,213,0): 80, 101, 148, (562,214,0): 81, 101, 151, (562,215,0): 81, 101, 151, (562,216,0): 84, 104, 155, (562,217,0): 84, 104, 155, (562,218,0): 85, 105, 158, (562,219,0): 86, 106, 159, (562,220,0): 87, 107, 160, (562,221,0): 88, 108, 161, (562,222,0): 89, 109, 162, (562,223,0): 90, 110, 163, (562,224,0): 96, 113, 167, (562,225,0): 98, 115, 169, (562,226,0): 100, 117, 173, (562,227,0): 101, 117, 176, (562,228,0): 101, 117, 177, (562,229,0): 100, 118, 182, (562,230,0): 105, 123, 189, (562,231,0): 109, 126, 195, (562,232,0): 105, 122, 192, (562,233,0): 103, 121, 193, (562,234,0): 101, 119, 191, (562,235,0): 99, 119, 190, (562,236,0): 98, 118, 187, (562,237,0): 99, 119, 188, (562,238,0): 99, 120, 187, (562,239,0): 98, 121, 188, (562,240,0): 100, 127, 194, (562,241,0): 99, 128, 194, (562,242,0): 100, 127, 194, (562,243,0): 99, 128, 196, (562,244,0): 99, 126, 195, (562,245,0): 98, 127, 197, (562,246,0): 99, 126, 197, (562,247,0): 98, 126, 199, (562,248,0): 99, 125, 199, (562,249,0): 98, 126, 200, (562,250,0): 99, 125, 200, (562,251,0): 98, 125, 202, (562,252,0): 99, 125, 202, (562,253,0): 98, 125, 204, (562,254,0): 99, 124, 204, (562,255,0): 98, 125, 202, (562,256,0): 96, 124, 197, (562,257,0): 95, 124, 194, (562,258,0): 94, 122, 195, (562,259,0): 94, 121, 192, (562,260,0): 95, 119, 191, (562,261,0): 94, 117, 187, (562,262,0): 93, 116, 186, (562,263,0): 93, 116, 184, (562,264,0): 90, 113, 181, (562,265,0): 88, 113, 179, (562,266,0): 84, 112, 177, (562,267,0): 81, 113, 174, (562,268,0): 77, 111, 172, (562,269,0): 74, 113, 172, (562,270,0): 75, 114, 171, (562,271,0): 77, 114, 169, (562,272,0): 84, 110, 169, (562,273,0): 87, 109, 167, (562,274,0): 88, 110, 170, (562,275,0): 87, 111, 171, (562,276,0): 87, 113, 174, (562,277,0): 88, 114, 175, (562,278,0): 89, 114, 178, (562,279,0): 89, 114, 178, (562,280,0): 89, 113, 177, (562,281,0): 92, 112, 175, (562,282,0): 94, 113, 172, (562,283,0): 98, 113, 172, (562,284,0): 102, 113, 169, (562,285,0): 104, 113, 168, (562,286,0): 107, 114, 168, (562,287,0): 108, 114, 166, (562,288,0): 113, 115, 166, (562,289,0): 113, 113, 163, (562,290,0): 114, 112, 161, (562,291,0): 114, 110, 160, (562,292,0): 116, 110, 158, (562,293,0): 118, 109, 154, (562,294,0): 121, 108, 152, (562,295,0): 124, 107, 151, (562,296,0): 127, 106, 147, (562,297,0): 123, 101, 140, (562,298,0): 119, 93, 132, (562,299,0): 111, 83, 121, (562,300,0): 105, 73, 110, (562,301,0): 98, 64, 99, (562,302,0): 91, 55, 91, (562,303,0): 85, 52, 81, (562,304,0): 77, 50, 69, (562,305,0): 73, 49, 63, (562,306,0): 69, 45, 58, (562,307,0): 65, 41, 54, (562,308,0): 61, 37, 50, (562,309,0): 59, 35, 48, (562,310,0): 57, 34, 44, (562,311,0): 56, 33, 41, (562,312,0): 52, 29, 37, (562,313,0): 51, 28, 34, (562,314,0): 48, 26, 29, (562,315,0): 46, 24, 27, (562,316,0): 44, 22, 25, (562,317,0): 44, 22, 25, (562,318,0): 43, 21, 23, (562,319,0): 44, 22, 24, (562,320,0): 44, 24, 26, (562,321,0): 43, 23, 25, (562,322,0): 43, 23, 25, (562,323,0): 42, 22, 24, (562,324,0): 41, 21, 23, (562,325,0): 40, 20, 22, (562,326,0): 39, 19, 21, (562,327,0): 38, 18, 20, (562,328,0): 36, 16, 18, (562,329,0): 35, 15, 17, (562,330,0): 35, 15, 17, (562,331,0): 35, 15, 17, (562,332,0): 34, 14, 16, (562,333,0): 33, 13, 15, (562,334,0): 33, 13, 15, (562,335,0): 32, 13, 17, (562,336,0): 32, 12, 21, (562,337,0): 30, 13, 23, (562,338,0): 30, 13, 23, (562,339,0): 29, 12, 22, (562,340,0): 29, 12, 22, (562,341,0): 28, 11, 21, (562,342,0): 28, 11, 21, (562,343,0): 27, 10, 20, (562,344,0): 27, 10, 20, (562,345,0): 26, 9, 19, (562,346,0): 24, 7, 17, (562,347,0): 22, 5, 15, (562,348,0): 21, 4, 14, (562,349,0): 21, 4, 14, (562,350,0): 21, 4, 14, (562,351,0): 21, 4, 14, (562,352,0): 19, 3, 13, (562,353,0): 19, 3, 13, (562,354,0): 19, 3, 13, (562,355,0): 19, 3, 13, (562,356,0): 19, 3, 13, (562,357,0): 19, 3, 13, (562,358,0): 19, 3, 13, (562,359,0): 19, 3, 13, (562,360,0): 17, 1, 11, (562,361,0): 17, 1, 11, (562,362,0): 17, 1, 11, (562,363,0): 17, 1, 11, (562,364,0): 17, 1, 11, (562,365,0): 17, 1, 11, (562,366,0): 17, 1, 11, (562,367,0): 15, 2, 11, (562,368,0): 11, 1, 10, (562,369,0): 9, 2, 10, (562,370,0): 9, 2, 10, (562,371,0): 9, 2, 10, (562,372,0): 9, 2, 10, (562,373,0): 9, 2, 10, (562,374,0): 9, 2, 10, (562,375,0): 9, 2, 10, (562,376,0): 8, 1, 9, (562,377,0): 8, 1, 9, (562,378,0): 9, 2, 10, (562,379,0): 10, 3, 11, (562,380,0): 11, 4, 12, (562,381,0): 12, 5, 13, (562,382,0): 13, 6, 14, (562,383,0): 13, 6, 14, (562,384,0): 11, 4, 11, (562,385,0): 11, 4, 11, (562,386,0): 11, 4, 11, (562,387,0): 12, 5, 12, (562,388,0): 14, 5, 10, (562,389,0): 15, 6, 11, (562,390,0): 15, 6, 9, (562,391,0): 15, 6, 9, (562,392,0): 19, 8, 12, (562,393,0): 19, 8, 12, (562,394,0): 19, 7, 9, (562,395,0): 19, 7, 9, (562,396,0): 20, 8, 8, (562,397,0): 21, 9, 9, (562,398,0): 24, 10, 10, (562,399,0): 25, 11, 11, (562,400,0): 22, 10, 10, (562,401,0): 22, 10, 10, (562,402,0): 24, 10, 10, (562,403,0): 24, 10, 10, (562,404,0): 24, 10, 10, (562,405,0): 24, 10, 10, (562,406,0): 25, 9, 10, (562,407,0): 25, 9, 10, (562,408,0): 28, 9, 11, (562,409,0): 27, 8, 10, (562,410,0): 27, 8, 10, (562,411,0): 27, 8, 10, (562,412,0): 27, 7, 9, (562,413,0): 27, 7, 9, (562,414,0): 26, 6, 8, (562,415,0): 25, 6, 8, (562,416,0): 27, 8, 10, (562,417,0): 26, 10, 11, (562,418,0): 27, 11, 12, (562,419,0): 28, 12, 13, (562,420,0): 29, 13, 14, (562,421,0): 29, 13, 14, (562,422,0): 28, 12, 13, (562,423,0): 27, 11, 12, (562,424,0): 25, 9, 10, (562,425,0): 25, 9, 10, (562,426,0): 26, 10, 11, (562,427,0): 26, 10, 11, (562,428,0): 27, 11, 12, (562,429,0): 27, 11, 12, (562,430,0): 28, 12, 13, (562,431,0): 28, 12, 13, (562,432,0): 29, 9, 10, (562,433,0): 30, 10, 9, (562,434,0): 30, 10, 11, (562,435,0): 30, 10, 11, (562,436,0): 30, 10, 11, (562,437,0): 30, 10, 11, (562,438,0): 30, 10, 12, (562,439,0): 29, 9, 11, (562,440,0): 25, 4, 9, (562,441,0): 26, 5, 10, (562,442,0): 27, 6, 11, (562,443,0): 27, 6, 11, (562,444,0): 26, 5, 12, (562,445,0): 25, 4, 11, (562,446,0): 23, 2, 9, (562,447,0): 21, 2, 6, (562,448,0): 23, 4, 6, (562,449,0): 21, 5, 5, (562,450,0): 21, 5, 5, (562,451,0): 20, 4, 4, (562,452,0): 19, 3, 3, (562,453,0): 19, 3, 3, (562,454,0): 19, 3, 3, (562,455,0): 18, 2, 2, (562,456,0): 18, 2, 2, (562,457,0): 18, 2, 2, (562,458,0): 18, 2, 2, (562,459,0): 19, 3, 3, (562,460,0): 21, 5, 5, (562,461,0): 23, 7, 7, (562,462,0): 25, 9, 9, (562,463,0): 27, 11, 11, (562,464,0): 30, 10, 12, (562,465,0): 30, 10, 12, (562,466,0): 29, 9, 11, (562,467,0): 29, 9, 11, (562,468,0): 29, 9, 11, (562,469,0): 28, 8, 10, (562,470,0): 28, 8, 10, (562,471,0): 28, 8, 10, (562,472,0): 28, 8, 10, (562,473,0): 28, 8, 10, (562,474,0): 28, 8, 10, (562,475,0): 29, 9, 11, (562,476,0): 31, 11, 13, (562,477,0): 33, 13, 15, (562,478,0): 35, 15, 17, (562,479,0): 39, 14, 17, (562,480,0): 46, 16, 16, (562,481,0): 50, 16, 15, (562,482,0): 51, 20, 18, (562,483,0): 52, 21, 19, (562,484,0): 51, 21, 19, (562,485,0): 50, 20, 18, (562,486,0): 46, 18, 15, (562,487,0): 43, 18, 14, (562,488,0): 43, 18, 14, (562,489,0): 42, 18, 14, (562,490,0): 42, 18, 14, (562,491,0): 39, 18, 13, (562,492,0): 38, 17, 12, (562,493,0): 38, 17, 12, (562,494,0): 38, 17, 12, (562,495,0): 37, 16, 11, (562,496,0): 43, 19, 17, (562,497,0): 43, 19, 17, (562,498,0): 40, 19, 16, (562,499,0): 40, 19, 16, (562,500,0): 39, 18, 17, (562,501,0): 39, 18, 17, (562,502,0): 37, 17, 16, (562,503,0): 37, 17, 16, (562,504,0): 32, 14, 14, (562,505,0): 32, 14, 14, (562,506,0): 32, 13, 15, (562,507,0): 32, 13, 15, (562,508,0): 30, 14, 15, (562,509,0): 30, 14, 15, (562,510,0): 30, 14, 17, (562,511,0): 30, 14, 17, (562,512,0): 32, 12, 14, (562,513,0): 32, 12, 14, (562,514,0): 31, 11, 13, (562,515,0): 30, 10, 12, (562,516,0): 28, 9, 13, (562,517,0): 27, 8, 12, (562,518,0): 26, 7, 13, (562,519,0): 26, 7, 13, (562,520,0): 23, 6, 12, (562,521,0): 24, 7, 13, (562,522,0): 23, 8, 15, (562,523,0): 22, 7, 14, (562,524,0): 19, 3, 13, (562,525,0): 17, 1, 11, (562,526,0): 16, 3, 12, (562,527,0): 17, 4, 13, (562,528,0): 14, 2, 12, (562,529,0): 14, 2, 12, (562,530,0): 14, 2, 12, (562,531,0): 14, 2, 12, (562,532,0): 14, 2, 12, (562,533,0): 14, 2, 12, (562,534,0): 14, 2, 12, (562,535,0): 14, 2, 12, (562,536,0): 12, 0, 10, (562,537,0): 12, 0, 10, (562,538,0): 12, 0, 10, (562,539,0): 12, 0, 10, (562,540,0): 12, 0, 10, (562,541,0): 12, 0, 10, (562,542,0): 12, 0, 10, (562,543,0): 11, 1, 10, (562,544,0): 10, 0, 9, (562,545,0): 9, 2, 10, (562,546,0): 9, 2, 10, (562,547,0): 9, 2, 10, (562,548,0): 10, 3, 11, (562,549,0): 11, 4, 12, (562,550,0): 11, 4, 12, (562,551,0): 11, 4, 12, (562,552,0): 8, 1, 9, (562,553,0): 8, 1, 9, (562,554,0): 8, 1, 9, (562,555,0): 9, 2, 10, (562,556,0): 9, 2, 10, (562,557,0): 10, 3, 11, (562,558,0): 10, 3, 11, (562,559,0): 10, 5, 12, (562,560,0): 10, 4, 14, (562,561,0): 9, 6, 15, (562,562,0): 12, 7, 14, (562,563,0): 13, 8, 15, (562,564,0): 14, 9, 16, (562,565,0): 15, 10, 17, (562,566,0): 17, 10, 17, (562,567,0): 17, 10, 17, (562,568,0): 24, 15, 20, (562,569,0): 25, 16, 21, (562,570,0): 27, 18, 23, (562,571,0): 29, 20, 25, (562,572,0): 31, 20, 24, (562,573,0): 31, 20, 24, (562,574,0): 31, 20, 24, (562,575,0): 30, 19, 23, (562,576,0): 29, 18, 22, (562,577,0): 29, 18, 22, (562,578,0): 28, 17, 21, (562,579,0): 28, 17, 21, (562,580,0): 27, 16, 20, (562,581,0): 27, 16, 20, (562,582,0): 26, 15, 19, (562,583,0): 26, 15, 19, (562,584,0): 26, 15, 19, (562,585,0): 27, 16, 20, (562,586,0): 27, 16, 20, (562,587,0): 28, 17, 21, (562,588,0): 27, 16, 20, (562,589,0): 26, 15, 19, (562,590,0): 25, 14, 18, (562,591,0): 24, 13, 17, (562,592,0): 26, 15, 23, (562,593,0): 26, 15, 23, (562,594,0): 26, 15, 21, (562,595,0): 27, 16, 20, (562,596,0): 27, 16, 20, (562,597,0): 28, 18, 19, (562,598,0): 28, 18, 17, (562,599,0): 28, 18, 17, (563,0,0): 37, 56, 70, (563,1,0): 37, 56, 70, (563,2,0): 37, 56, 70, (563,3,0): 38, 57, 71, (563,4,0): 38, 57, 71, (563,5,0): 39, 58, 72, (563,6,0): 39, 58, 72, (563,7,0): 39, 58, 72, (563,8,0): 40, 59, 73, (563,9,0): 40, 59, 73, (563,10,0): 40, 59, 73, (563,11,0): 40, 59, 73, (563,12,0): 40, 59, 73, (563,13,0): 40, 59, 73, (563,14,0): 40, 59, 73, (563,15,0): 40, 59, 73, (563,16,0): 40, 58, 72, (563,17,0): 41, 59, 73, (563,18,0): 41, 59, 73, (563,19,0): 42, 60, 74, (563,20,0): 42, 60, 74, (563,21,0): 43, 61, 75, (563,22,0): 43, 61, 75, (563,23,0): 44, 62, 76, (563,24,0): 42, 60, 74, (563,25,0): 42, 60, 74, (563,26,0): 43, 61, 75, (563,27,0): 43, 61, 75, (563,28,0): 44, 62, 76, (563,29,0): 44, 62, 76, (563,30,0): 45, 63, 77, (563,31,0): 45, 63, 75, (563,32,0): 48, 64, 77, (563,33,0): 48, 65, 75, (563,34,0): 50, 64, 75, (563,35,0): 51, 65, 76, (563,36,0): 52, 64, 76, (563,37,0): 53, 65, 77, (563,38,0): 55, 65, 77, (563,39,0): 55, 65, 77, (563,40,0): 58, 64, 78, (563,41,0): 58, 64, 78, (563,42,0): 60, 63, 78, (563,43,0): 61, 64, 79, (563,44,0): 63, 65, 80, (563,45,0): 63, 65, 80, (563,46,0): 65, 64, 80, (563,47,0): 66, 65, 81, (563,48,0): 64, 66, 79, (563,49,0): 64, 66, 79, (563,50,0): 64, 66, 79, (563,51,0): 65, 67, 80, (563,52,0): 68, 67, 81, (563,53,0): 68, 67, 81, (563,54,0): 69, 67, 81, (563,55,0): 70, 68, 82, (563,56,0): 70, 68, 82, (563,57,0): 71, 69, 83, (563,58,0): 73, 69, 84, (563,59,0): 74, 70, 85, (563,60,0): 76, 69, 85, (563,61,0): 75, 68, 84, (563,62,0): 74, 67, 83, (563,63,0): 71, 67, 82, (563,64,0): 72, 68, 83, (563,65,0): 72, 70, 84, (563,66,0): 72, 70, 84, (563,67,0): 73, 71, 85, (563,68,0): 73, 71, 85, (563,69,0): 74, 72, 86, (563,70,0): 74, 72, 86, (563,71,0): 74, 72, 86, (563,72,0): 75, 73, 87, (563,73,0): 75, 73, 87, (563,74,0): 75, 73, 87, (563,75,0): 76, 74, 88, (563,76,0): 76, 74, 88, (563,77,0): 77, 75, 89, (563,78,0): 77, 75, 89, (563,79,0): 76, 75, 89, (563,80,0): 75, 74, 90, (563,81,0): 73, 75, 90, (563,82,0): 73, 75, 90, (563,83,0): 73, 75, 90, (563,84,0): 73, 75, 90, (563,85,0): 73, 75, 90, (563,86,0): 73, 75, 90, (563,87,0): 73, 75, 90, (563,88,0): 75, 77, 92, (563,89,0): 75, 77, 92, (563,90,0): 75, 77, 92, (563,91,0): 76, 78, 93, (563,92,0): 76, 78, 93, (563,93,0): 77, 79, 94, (563,94,0): 77, 79, 94, (563,95,0): 77, 79, 94, (563,96,0): 78, 77, 95, (563,97,0): 78, 77, 95, (563,98,0): 76, 77, 97, (563,99,0): 76, 77, 97, (563,100,0): 76, 77, 97, (563,101,0): 76, 77, 97, (563,102,0): 75, 77, 98, (563,103,0): 75, 77, 98, (563,104,0): 73, 78, 100, (563,105,0): 74, 79, 101, (563,106,0): 75, 80, 102, (563,107,0): 76, 81, 103, (563,108,0): 75, 81, 105, (563,109,0): 74, 80, 104, (563,110,0): 72, 78, 102, (563,111,0): 72, 78, 100, (563,112,0): 73, 79, 101, (563,113,0): 72, 79, 98, (563,114,0): 72, 79, 98, (563,115,0): 71, 78, 97, (563,116,0): 72, 79, 98, (563,117,0): 73, 80, 99, (563,118,0): 75, 82, 101, (563,119,0): 76, 83, 102, (563,120,0): 75, 82, 101, (563,121,0): 75, 82, 101, (563,122,0): 76, 83, 102, (563,123,0): 76, 83, 102, (563,124,0): 76, 83, 102, (563,125,0): 75, 82, 101, (563,126,0): 73, 80, 99, (563,127,0): 73, 78, 98, (563,128,0): 76, 76, 100, (563,129,0): 78, 75, 102, (563,130,0): 78, 75, 102, (563,131,0): 78, 75, 102, (563,132,0): 78, 75, 102, (563,133,0): 78, 75, 102, (563,134,0): 78, 75, 102, (563,135,0): 78, 75, 102, (563,136,0): 84, 81, 108, (563,137,0): 84, 81, 108, (563,138,0): 85, 82, 109, (563,139,0): 85, 82, 109, (563,140,0): 86, 83, 110, (563,141,0): 86, 83, 110, (563,142,0): 86, 83, 110, (563,143,0): 84, 84, 110, (563,144,0): 81, 83, 106, (563,145,0): 81, 83, 106, (563,146,0): 81, 83, 108, (563,147,0): 82, 84, 109, (563,148,0): 81, 85, 112, (563,149,0): 81, 85, 112, (563,150,0): 81, 85, 114, (563,151,0): 81, 86, 115, (563,152,0): 85, 90, 122, (563,153,0): 85, 90, 122, (563,154,0): 84, 90, 124, (563,155,0): 84, 90, 124, (563,156,0): 84, 90, 126, (563,157,0): 84, 90, 126, (563,158,0): 82, 90, 127, (563,159,0): 82, 90, 127, (563,160,0): 81, 89, 126, (563,161,0): 81, 89, 126, (563,162,0): 81, 89, 126, (563,163,0): 81, 89, 126, (563,164,0): 81, 89, 126, (563,165,0): 81, 89, 126, (563,166,0): 81, 89, 126, (563,167,0): 81, 89, 126, (563,168,0): 79, 87, 124, (563,169,0): 79, 87, 124, (563,170,0): 79, 87, 124, (563,171,0): 79, 87, 124, (563,172,0): 79, 87, 124, (563,173,0): 79, 87, 124, (563,174,0): 79, 87, 124, (563,175,0): 79, 87, 126, (563,176,0): 77, 89, 131, (563,177,0): 77, 89, 131, (563,178,0): 77, 90, 134, (563,179,0): 77, 90, 132, (563,180,0): 78, 91, 135, (563,181,0): 79, 92, 134, (563,182,0): 78, 93, 136, (563,183,0): 79, 94, 135, (563,184,0): 78, 95, 138, (563,185,0): 78, 96, 136, (563,186,0): 77, 94, 137, (563,187,0): 77, 95, 135, (563,188,0): 75, 94, 136, (563,189,0): 75, 94, 134, (563,190,0): 74, 93, 135, (563,191,0): 74, 93, 133, (563,192,0): 74, 94, 131, (563,193,0): 74, 94, 131, (563,194,0): 75, 93, 133, (563,195,0): 74, 93, 133, (563,196,0): 74, 93, 133, (563,197,0): 74, 93, 133, (563,198,0): 74, 93, 135, (563,199,0): 72, 94, 135, (563,200,0): 72, 93, 136, (563,201,0): 72, 95, 137, (563,202,0): 72, 95, 137, (563,203,0): 71, 96, 137, (563,204,0): 73, 96, 140, (563,205,0): 72, 96, 140, (563,206,0): 73, 97, 141, (563,207,0): 74, 97, 141, (563,208,0): 76, 97, 142, (563,209,0): 76, 97, 144, (563,210,0): 77, 98, 145, (563,211,0): 79, 100, 147, (563,212,0): 80, 101, 148, (563,213,0): 81, 102, 149, (563,214,0): 82, 102, 152, (563,215,0): 83, 103, 153, (563,216,0): 84, 104, 155, (563,217,0): 85, 105, 156, (563,218,0): 86, 106, 157, (563,219,0): 87, 107, 160, (563,220,0): 88, 108, 161, (563,221,0): 89, 109, 162, (563,222,0): 89, 109, 162, (563,223,0): 90, 110, 163, (563,224,0): 97, 114, 168, (563,225,0): 99, 116, 172, (563,226,0): 101, 117, 176, (563,227,0): 100, 119, 178, (563,228,0): 99, 117, 179, (563,229,0): 101, 119, 183, (563,230,0): 106, 123, 192, (563,231,0): 108, 127, 196, (563,232,0): 104, 122, 194, (563,233,0): 102, 122, 193, (563,234,0): 101, 121, 192, (563,235,0): 100, 120, 191, (563,236,0): 99, 119, 190, (563,237,0): 97, 120, 188, (563,238,0): 98, 121, 189, (563,239,0): 98, 123, 190, (563,240,0): 100, 129, 197, (563,241,0): 98, 128, 198, (563,242,0): 98, 128, 198, (563,243,0): 97, 127, 197, (563,244,0): 96, 126, 198, (563,245,0): 95, 125, 197, (563,246,0): 95, 125, 198, (563,247,0): 95, 125, 198, (563,248,0): 95, 124, 200, (563,249,0): 95, 124, 200, (563,250,0): 95, 124, 200, (563,251,0): 95, 124, 202, (563,252,0): 94, 123, 201, (563,253,0): 94, 123, 201, (563,254,0): 94, 123, 203, (563,255,0): 93, 122, 200, (563,256,0): 92, 122, 195, (563,257,0): 89, 121, 194, (563,258,0): 90, 120, 193, (563,259,0): 89, 117, 190, (563,260,0): 88, 114, 188, (563,261,0): 87, 114, 185, (563,262,0): 87, 111, 183, (563,263,0): 86, 110, 180, (563,264,0): 86, 110, 180, (563,265,0): 83, 110, 177, (563,266,0): 81, 110, 176, (563,267,0): 78, 109, 173, (563,268,0): 75, 109, 172, (563,269,0): 74, 110, 170, (563,270,0): 73, 112, 171, (563,271,0): 77, 112, 170, (563,272,0): 84, 110, 169, (563,273,0): 88, 108, 167, (563,274,0): 88, 110, 170, (563,275,0): 88, 110, 170, (563,276,0): 87, 111, 173, (563,277,0): 87, 113, 174, (563,278,0): 88, 112, 174, (563,279,0): 88, 112, 174, (563,280,0): 89, 110, 173, (563,281,0): 90, 110, 171, (563,282,0): 94, 110, 169, (563,283,0): 95, 110, 167, (563,284,0): 98, 111, 164, (563,285,0): 100, 112, 164, (563,286,0): 103, 110, 162, (563,287,0): 105, 111, 161, (563,288,0): 109, 111, 160, (563,289,0): 107, 108, 156, (563,290,0): 107, 105, 154, (563,291,0): 108, 105, 152, (563,292,0): 114, 106, 153, (563,293,0): 116, 107, 152, (563,294,0): 121, 106, 149, (563,295,0): 121, 104, 146, (563,296,0): 123, 101, 140, (563,297,0): 118, 93, 132, (563,298,0): 111, 83, 121, (563,299,0): 104, 74, 108, (563,300,0): 99, 65, 100, (563,301,0): 93, 58, 91, (563,302,0): 87, 50, 83, (563,303,0): 82, 48, 75, (563,304,0): 73, 46, 65, (563,305,0): 69, 45, 59, (563,306,0): 66, 42, 55, (563,307,0): 62, 38, 51, (563,308,0): 59, 35, 48, (563,309,0): 57, 34, 44, (563,310,0): 56, 33, 43, (563,311,0): 55, 32, 40, (563,312,0): 51, 28, 36, (563,313,0): 50, 27, 33, (563,314,0): 47, 24, 30, (563,315,0): 44, 22, 25, (563,316,0): 42, 20, 23, (563,317,0): 41, 19, 22, (563,318,0): 41, 19, 21, (563,319,0): 41, 19, 21, (563,320,0): 40, 20, 22, (563,321,0): 40, 20, 22, (563,322,0): 39, 19, 21, (563,323,0): 39, 19, 21, (563,324,0): 38, 18, 20, (563,325,0): 37, 17, 19, (563,326,0): 37, 17, 19, (563,327,0): 36, 16, 18, (563,328,0): 34, 14, 16, (563,329,0): 34, 14, 16, (563,330,0): 34, 14, 16, (563,331,0): 33, 13, 15, (563,332,0): 33, 13, 15, (563,333,0): 32, 12, 14, (563,334,0): 32, 12, 14, (563,335,0): 31, 12, 16, (563,336,0): 30, 13, 21, (563,337,0): 29, 12, 22, (563,338,0): 29, 12, 22, (563,339,0): 29, 12, 22, (563,340,0): 28, 11, 21, (563,341,0): 27, 10, 20, (563,342,0): 27, 10, 20, (563,343,0): 27, 10, 20, (563,344,0): 26, 9, 19, (563,345,0): 25, 8, 18, (563,346,0): 23, 6, 16, (563,347,0): 22, 5, 15, (563,348,0): 20, 3, 13, (563,349,0): 20, 3, 13, (563,350,0): 20, 3, 13, (563,351,0): 21, 4, 14, (563,352,0): 18, 2, 12, (563,353,0): 18, 2, 12, (563,354,0): 18, 2, 12, (563,355,0): 18, 2, 12, (563,356,0): 18, 2, 12, (563,357,0): 18, 2, 12, (563,358,0): 18, 2, 12, (563,359,0): 18, 2, 12, (563,360,0): 17, 1, 11, (563,361,0): 17, 1, 11, (563,362,0): 17, 1, 11, (563,363,0): 17, 1, 11, (563,364,0): 17, 1, 11, (563,365,0): 17, 1, 11, (563,366,0): 17, 1, 11, (563,367,0): 15, 2, 11, (563,368,0): 11, 1, 10, (563,369,0): 9, 2, 10, (563,370,0): 9, 2, 10, (563,371,0): 9, 2, 10, (563,372,0): 9, 2, 10, (563,373,0): 9, 2, 10, (563,374,0): 9, 2, 10, (563,375,0): 9, 2, 10, (563,376,0): 9, 2, 10, (563,377,0): 9, 2, 10, (563,378,0): 9, 2, 10, (563,379,0): 10, 3, 11, (563,380,0): 11, 4, 12, (563,381,0): 12, 5, 13, (563,382,0): 12, 5, 13, (563,383,0): 12, 5, 13, (563,384,0): 11, 4, 11, (563,385,0): 11, 4, 11, (563,386,0): 11, 4, 11, (563,387,0): 12, 5, 12, (563,388,0): 14, 5, 10, (563,389,0): 15, 6, 11, (563,390,0): 15, 6, 9, (563,391,0): 15, 6, 9, (563,392,0): 20, 9, 13, (563,393,0): 19, 8, 12, (563,394,0): 19, 7, 9, (563,395,0): 18, 6, 8, (563,396,0): 19, 7, 7, (563,397,0): 20, 8, 8, (563,398,0): 25, 11, 11, (563,399,0): 26, 12, 12, (563,400,0): 22, 10, 10, (563,401,0): 22, 10, 10, (563,402,0): 24, 10, 10, (563,403,0): 24, 10, 10, (563,404,0): 24, 10, 10, (563,405,0): 24, 10, 10, (563,406,0): 25, 9, 10, (563,407,0): 25, 9, 10, (563,408,0): 26, 7, 9, (563,409,0): 26, 7, 9, (563,410,0): 26, 7, 9, (563,411,0): 26, 7, 9, (563,412,0): 27, 7, 9, (563,413,0): 26, 6, 8, (563,414,0): 26, 6, 8, (563,415,0): 26, 6, 8, (563,416,0): 27, 8, 10, (563,417,0): 26, 10, 11, (563,418,0): 27, 11, 12, (563,419,0): 29, 13, 14, (563,420,0): 29, 13, 14, (563,421,0): 29, 13, 14, (563,422,0): 28, 12, 13, (563,423,0): 28, 12, 13, (563,424,0): 26, 10, 11, (563,425,0): 26, 10, 11, (563,426,0): 27, 11, 12, (563,427,0): 27, 11, 12, (563,428,0): 28, 12, 13, (563,429,0): 28, 12, 13, (563,430,0): 29, 13, 14, (563,431,0): 31, 13, 13, (563,432,0): 29, 11, 11, (563,433,0): 29, 9, 8, (563,434,0): 28, 8, 9, (563,435,0): 27, 7, 8, (563,436,0): 27, 7, 8, (563,437,0): 28, 8, 9, (563,438,0): 29, 9, 11, (563,439,0): 30, 10, 12, (563,440,0): 25, 4, 9, (563,441,0): 26, 5, 10, (563,442,0): 26, 5, 10, (563,443,0): 26, 5, 10, (563,444,0): 26, 5, 12, (563,445,0): 25, 4, 11, (563,446,0): 23, 2, 9, (563,447,0): 21, 2, 6, (563,448,0): 22, 6, 7, (563,449,0): 21, 5, 5, (563,450,0): 21, 5, 5, (563,451,0): 20, 4, 4, (563,452,0): 20, 4, 4, (563,453,0): 19, 3, 3, (563,454,0): 19, 3, 3, (563,455,0): 19, 3, 3, (563,456,0): 18, 2, 2, (563,457,0): 18, 2, 2, (563,458,0): 18, 2, 2, (563,459,0): 19, 3, 3, (563,460,0): 20, 4, 4, (563,461,0): 23, 7, 7, (563,462,0): 25, 9, 9, (563,463,0): 26, 10, 10, (563,464,0): 28, 9, 11, (563,465,0): 29, 9, 11, (563,466,0): 29, 9, 11, (563,467,0): 28, 8, 10, (563,468,0): 28, 8, 10, (563,469,0): 28, 8, 10, (563,470,0): 28, 8, 10, (563,471,0): 28, 8, 10, (563,472,0): 28, 8, 10, (563,473,0): 28, 8, 10, (563,474,0): 28, 8, 10, (563,475,0): 29, 9, 11, (563,476,0): 31, 11, 13, (563,477,0): 33, 13, 15, (563,478,0): 35, 15, 17, (563,479,0): 39, 14, 17, (563,480,0): 46, 16, 16, (563,481,0): 50, 16, 15, (563,482,0): 51, 20, 18, (563,483,0): 52, 21, 19, (563,484,0): 52, 21, 19, (563,485,0): 50, 20, 18, (563,486,0): 47, 17, 15, (563,487,0): 45, 17, 14, (563,488,0): 46, 18, 15, (563,489,0): 43, 18, 14, (563,490,0): 43, 18, 14, (563,491,0): 41, 17, 13, (563,492,0): 41, 17, 13, (563,493,0): 38, 17, 12, (563,494,0): 40, 16, 12, (563,495,0): 40, 16, 12, (563,496,0): 42, 18, 16, (563,497,0): 42, 18, 16, (563,498,0): 39, 18, 15, (563,499,0): 39, 18, 15, (563,500,0): 38, 17, 16, (563,501,0): 38, 17, 16, (563,502,0): 36, 16, 15, (563,503,0): 36, 16, 15, (563,504,0): 32, 14, 14, (563,505,0): 32, 14, 14, (563,506,0): 32, 13, 15, (563,507,0): 32, 13, 15, (563,508,0): 30, 14, 15, (563,509,0): 30, 14, 15, (563,510,0): 30, 14, 17, (563,511,0): 30, 14, 17, (563,512,0): 32, 12, 14, (563,513,0): 32, 12, 14, (563,514,0): 31, 11, 13, (563,515,0): 30, 10, 12, (563,516,0): 28, 9, 13, (563,517,0): 27, 8, 12, (563,518,0): 26, 7, 13, (563,519,0): 26, 7, 13, (563,520,0): 23, 6, 12, (563,521,0): 23, 6, 12, (563,522,0): 22, 7, 14, (563,523,0): 21, 6, 13, (563,524,0): 19, 3, 13, (563,525,0): 18, 2, 12, (563,526,0): 15, 2, 11, (563,527,0): 15, 2, 11, (563,528,0): 14, 2, 12, (563,529,0): 14, 2, 12, (563,530,0): 14, 2, 12, (563,531,0): 14, 2, 12, (563,532,0): 14, 2, 12, (563,533,0): 14, 2, 12, (563,534,0): 14, 2, 12, (563,535,0): 14, 2, 12, (563,536,0): 12, 0, 10, (563,537,0): 12, 0, 10, (563,538,0): 12, 0, 10, (563,539,0): 12, 0, 10, (563,540,0): 12, 0, 10, (563,541,0): 12, 0, 10, (563,542,0): 12, 0, 10, (563,543,0): 11, 1, 10, (563,544,0): 11, 1, 10, (563,545,0): 9, 2, 10, (563,546,0): 9, 2, 10, (563,547,0): 10, 3, 11, (563,548,0): 10, 3, 11, (563,549,0): 11, 4, 12, (563,550,0): 11, 4, 12, (563,551,0): 12, 5, 13, (563,552,0): 8, 1, 9, (563,553,0): 8, 1, 9, (563,554,0): 8, 1, 9, (563,555,0): 9, 2, 10, (563,556,0): 9, 2, 10, (563,557,0): 10, 3, 11, (563,558,0): 10, 3, 11, (563,559,0): 9, 4, 11, (563,560,0): 11, 5, 15, (563,561,0): 9, 6, 15, (563,562,0): 12, 7, 14, (563,563,0): 13, 8, 15, (563,564,0): 14, 9, 16, (563,565,0): 15, 10, 17, (563,566,0): 17, 10, 17, (563,567,0): 17, 10, 17, (563,568,0): 25, 16, 21, (563,569,0): 26, 17, 22, (563,570,0): 29, 20, 25, (563,571,0): 31, 22, 27, (563,572,0): 34, 23, 27, (563,573,0): 33, 22, 26, (563,574,0): 32, 21, 25, (563,575,0): 31, 20, 24, (563,576,0): 31, 20, 24, (563,577,0): 30, 19, 23, (563,578,0): 30, 19, 23, (563,579,0): 29, 18, 22, (563,580,0): 28, 17, 21, (563,581,0): 27, 16, 20, (563,582,0): 26, 15, 19, (563,583,0): 26, 15, 19, (563,584,0): 26, 15, 19, (563,585,0): 27, 16, 20, (563,586,0): 28, 17, 21, (563,587,0): 28, 17, 21, (563,588,0): 28, 17, 21, (563,589,0): 27, 16, 20, (563,590,0): 26, 15, 19, (563,591,0): 25, 14, 18, (563,592,0): 25, 15, 23, (563,593,0): 23, 16, 23, (563,594,0): 25, 16, 21, (563,595,0): 24, 18, 20, (563,596,0): 26, 17, 20, (563,597,0): 25, 19, 19, (563,598,0): 27, 19, 17, (563,599,0): 25, 20, 17, (564,0,0): 37, 56, 70, (564,1,0): 37, 56, 70, (564,2,0): 37, 56, 70, (564,3,0): 38, 57, 71, (564,4,0): 38, 57, 71, (564,5,0): 39, 58, 72, (564,6,0): 39, 58, 72, (564,7,0): 39, 58, 72, (564,8,0): 40, 59, 73, (564,9,0): 40, 59, 73, (564,10,0): 40, 59, 73, (564,11,0): 40, 59, 73, (564,12,0): 40, 59, 73, (564,13,0): 40, 59, 73, (564,14,0): 40, 59, 73, (564,15,0): 40, 59, 73, (564,16,0): 44, 62, 76, (564,17,0): 43, 61, 75, (564,18,0): 43, 61, 75, (564,19,0): 42, 60, 74, (564,20,0): 42, 60, 74, (564,21,0): 41, 59, 73, (564,22,0): 41, 59, 73, (564,23,0): 40, 58, 72, (564,24,0): 42, 60, 74, (564,25,0): 42, 60, 74, (564,26,0): 43, 61, 75, (564,27,0): 43, 61, 75, (564,28,0): 44, 62, 76, (564,29,0): 44, 62, 76, (564,30,0): 45, 63, 77, (564,31,0): 45, 63, 75, (564,32,0): 48, 64, 77, (564,33,0): 48, 65, 75, (564,34,0): 50, 64, 75, (564,35,0): 51, 65, 76, (564,36,0): 52, 64, 76, (564,37,0): 53, 65, 77, (564,38,0): 55, 65, 77, (564,39,0): 55, 65, 77, (564,40,0): 57, 63, 77, (564,41,0): 58, 64, 78, (564,42,0): 60, 63, 78, (564,43,0): 60, 63, 78, (564,44,0): 62, 64, 79, (564,45,0): 63, 65, 80, (564,46,0): 65, 64, 80, (564,47,0): 65, 64, 80, (564,48,0): 63, 65, 78, (564,49,0): 64, 66, 79, (564,50,0): 64, 66, 79, (564,51,0): 64, 66, 79, (564,52,0): 67, 66, 80, (564,53,0): 68, 67, 81, (564,54,0): 69, 67, 81, (564,55,0): 69, 67, 81, (564,56,0): 69, 67, 81, (564,57,0): 70, 68, 82, (564,58,0): 72, 68, 83, (564,59,0): 73, 69, 84, (564,60,0): 75, 68, 84, (564,61,0): 74, 67, 83, (564,62,0): 73, 66, 82, (564,63,0): 70, 66, 81, (564,64,0): 72, 68, 83, (564,65,0): 71, 69, 83, (564,66,0): 71, 69, 83, (564,67,0): 72, 70, 84, (564,68,0): 72, 70, 84, (564,69,0): 73, 71, 85, (564,70,0): 73, 71, 85, (564,71,0): 74, 72, 86, (564,72,0): 74, 72, 86, (564,73,0): 74, 72, 86, (564,74,0): 74, 72, 86, (564,75,0): 75, 73, 87, (564,76,0): 75, 73, 87, (564,77,0): 76, 74, 88, (564,78,0): 76, 74, 88, (564,79,0): 75, 74, 88, (564,80,0): 74, 73, 89, (564,81,0): 72, 74, 89, (564,82,0): 72, 74, 89, (564,83,0): 72, 74, 89, (564,84,0): 72, 74, 89, (564,85,0): 72, 74, 89, (564,86,0): 72, 74, 89, (564,87,0): 72, 74, 89, (564,88,0): 74, 76, 91, (564,89,0): 74, 76, 91, (564,90,0): 74, 76, 91, (564,91,0): 75, 77, 92, (564,92,0): 75, 77, 92, (564,93,0): 76, 78, 93, (564,94,0): 76, 78, 93, (564,95,0): 76, 78, 93, (564,96,0): 75, 76, 94, (564,97,0): 75, 76, 94, (564,98,0): 75, 76, 96, (564,99,0): 75, 76, 96, (564,100,0): 74, 77, 96, (564,101,0): 74, 77, 96, (564,102,0): 74, 76, 97, (564,103,0): 74, 76, 97, (564,104,0): 72, 77, 99, (564,105,0): 73, 78, 100, (564,106,0): 73, 79, 101, (564,107,0): 74, 80, 102, (564,108,0): 74, 80, 104, (564,109,0): 74, 80, 104, (564,110,0): 72, 80, 103, (564,111,0): 71, 79, 100, (564,112,0): 73, 79, 101, (564,113,0): 72, 79, 98, (564,114,0): 72, 79, 98, (564,115,0): 71, 78, 97, (564,116,0): 72, 79, 98, (564,117,0): 73, 80, 99, (564,118,0): 75, 82, 101, (564,119,0): 76, 83, 102, (564,120,0): 74, 81, 100, (564,121,0): 75, 82, 101, (564,122,0): 76, 83, 102, (564,123,0): 76, 83, 102, (564,124,0): 75, 82, 101, (564,125,0): 74, 81, 100, (564,126,0): 73, 80, 99, (564,127,0): 73, 78, 98, (564,128,0): 75, 77, 100, (564,129,0): 76, 76, 100, (564,130,0): 76, 76, 100, (564,131,0): 76, 76, 100, (564,132,0): 76, 76, 100, (564,133,0): 76, 76, 100, (564,134,0): 76, 76, 100, (564,135,0): 76, 76, 100, (564,136,0): 81, 81, 105, (564,137,0): 81, 81, 105, (564,138,0): 81, 81, 105, (564,139,0): 82, 82, 106, (564,140,0): 82, 82, 106, (564,141,0): 83, 83, 107, (564,142,0): 84, 84, 108, (564,143,0): 84, 84, 108, (564,144,0): 80, 82, 105, (564,145,0): 81, 83, 106, (564,146,0): 79, 83, 108, (564,147,0): 79, 83, 108, (564,148,0): 80, 84, 111, (564,149,0): 81, 85, 112, (564,150,0): 80, 85, 114, (564,151,0): 80, 85, 114, (564,152,0): 85, 90, 122, (564,153,0): 84, 90, 122, (564,154,0): 84, 90, 124, (564,155,0): 84, 90, 124, (564,156,0): 82, 90, 126, (564,157,0): 82, 90, 126, (564,158,0): 82, 90, 127, (564,159,0): 82, 90, 127, (564,160,0): 83, 89, 125, (564,161,0): 83, 89, 125, (564,162,0): 83, 89, 125, (564,163,0): 83, 89, 125, (564,164,0): 83, 89, 125, (564,165,0): 83, 89, 125, (564,166,0): 83, 89, 125, (564,167,0): 83, 89, 125, (564,168,0): 82, 88, 124, (564,169,0): 82, 88, 124, (564,170,0): 82, 88, 124, (564,171,0): 82, 88, 124, (564,172,0): 82, 88, 124, (564,173,0): 82, 88, 124, (564,174,0): 82, 88, 124, (564,175,0): 80, 88, 125, (564,176,0): 78, 90, 130, (564,177,0): 77, 91, 130, (564,178,0): 78, 91, 133, (564,179,0): 78, 92, 131, (564,180,0): 77, 92, 133, (564,181,0): 78, 93, 132, (564,182,0): 78, 93, 134, (564,183,0): 78, 93, 132, (564,184,0): 75, 93, 133, (564,185,0): 75, 93, 131, (564,186,0): 75, 94, 134, (564,187,0): 75, 95, 132, (564,188,0): 76, 95, 135, (564,189,0): 76, 96, 133, (564,190,0): 75, 97, 136, (564,191,0): 75, 97, 134, (564,192,0): 72, 94, 131, (564,193,0): 72, 94, 131, (564,194,0): 74, 93, 133, (564,195,0): 72, 94, 133, (564,196,0): 72, 94, 133, (564,197,0): 72, 94, 133, (564,198,0): 72, 94, 135, (564,199,0): 71, 94, 135, (564,200,0): 71, 94, 136, (564,201,0): 71, 96, 137, (564,202,0): 71, 96, 137, (564,203,0): 69, 97, 137, (564,204,0): 72, 96, 140, (564,205,0): 70, 97, 140, (564,206,0): 71, 98, 141, (564,207,0): 73, 97, 141, (564,208,0): 76, 97, 142, (564,209,0): 79, 97, 143, (564,210,0): 80, 98, 144, (564,211,0): 81, 99, 145, (564,212,0): 82, 100, 146, (564,213,0): 84, 102, 148, (564,214,0): 85, 103, 151, (564,215,0): 85, 103, 151, (564,216,0): 86, 104, 154, (564,217,0): 86, 104, 154, (564,218,0): 87, 105, 155, (564,219,0): 88, 105, 157, (564,220,0): 89, 106, 158, (564,221,0): 90, 107, 159, (564,222,0): 91, 108, 160, (564,223,0): 91, 108, 162, (564,224,0): 93, 113, 166, (564,225,0): 95, 114, 170, (564,226,0): 97, 116, 174, (564,227,0): 97, 117, 176, (564,228,0): 97, 117, 180, (564,229,0): 99, 118, 184, (564,230,0): 103, 122, 190, (564,231,0): 106, 126, 195, (564,232,0): 104, 124, 195, (564,233,0): 101, 123, 196, (564,234,0): 100, 122, 195, (564,235,0): 98, 121, 191, (564,236,0): 98, 121, 191, (564,237,0): 97, 121, 191, (564,238,0): 98, 122, 192, (564,239,0): 96, 123, 192, (564,240,0): 97, 127, 199, (564,241,0): 95, 128, 199, (564,242,0): 94, 126, 199, (564,243,0): 93, 125, 198, (564,244,0): 93, 125, 198, (564,245,0): 92, 124, 197, (564,246,0): 91, 123, 198, (564,247,0): 91, 123, 198, (564,248,0): 91, 123, 200, (564,249,0): 91, 123, 200, (564,250,0): 91, 123, 200, (564,251,0): 90, 121, 201, (564,252,0): 89, 120, 200, (564,253,0): 89, 120, 200, (564,254,0): 88, 119, 201, (564,255,0): 87, 120, 199, (564,256,0): 86, 119, 196, (564,257,0): 86, 120, 194, (564,258,0): 85, 117, 192, (564,259,0): 83, 115, 188, (564,260,0): 84, 114, 187, (564,261,0): 83, 111, 184, (564,262,0): 82, 108, 182, (564,263,0): 82, 109, 180, (564,264,0): 82, 109, 178, (564,265,0): 80, 109, 175, (564,266,0): 78, 107, 173, (564,267,0): 76, 107, 171, (564,268,0): 74, 108, 171, (564,269,0): 73, 109, 169, (564,270,0): 72, 111, 170, (564,271,0): 76, 111, 169, (564,272,0): 83, 109, 168, (564,273,0): 87, 109, 169, (564,274,0): 87, 109, 169, (564,275,0): 87, 109, 169, (564,276,0): 88, 109, 172, (564,277,0): 86, 110, 172, (564,278,0): 88, 109, 172, (564,279,0): 88, 110, 170, (564,280,0): 88, 110, 170, (564,281,0): 89, 109, 168, (564,282,0): 92, 109, 165, (564,283,0): 93, 108, 163, (564,284,0): 96, 109, 162, (564,285,0): 97, 109, 161, (564,286,0): 100, 107, 159, (564,287,0): 102, 108, 158, (564,288,0): 103, 105, 154, (564,289,0): 103, 101, 150, (564,290,0): 102, 98, 148, (564,291,0): 106, 100, 148, (564,292,0): 112, 103, 148, (564,293,0): 116, 105, 148, (564,294,0): 119, 102, 144, (564,295,0): 117, 99, 139, (564,296,0): 118, 93, 132, (564,297,0): 111, 85, 120, (564,298,0): 104, 74, 108, (564,299,0): 99, 66, 97, (564,300,0): 95, 58, 91, (564,301,0): 92, 53, 84, (564,302,0): 87, 46, 76, (564,303,0): 79, 44, 68, (564,304,0): 70, 41, 59, (564,305,0): 65, 41, 54, (564,306,0): 62, 38, 51, (564,307,0): 59, 35, 48, (564,308,0): 57, 34, 44, (564,309,0): 55, 32, 42, (564,310,0): 55, 32, 42, (564,311,0): 54, 31, 39, (564,312,0): 51, 28, 36, (564,313,0): 49, 26, 32, (564,314,0): 47, 24, 30, (564,315,0): 44, 21, 27, (564,316,0): 41, 19, 22, (564,317,0): 40, 18, 21, (564,318,0): 39, 17, 20, (564,319,0): 39, 17, 20, (564,320,0): 37, 16, 21, (564,321,0): 36, 17, 21, (564,322,0): 36, 17, 21, (564,323,0): 35, 16, 20, (564,324,0): 35, 16, 20, (564,325,0): 35, 16, 20, (564,326,0): 34, 15, 19, (564,327,0): 34, 15, 19, (564,328,0): 33, 14, 18, (564,329,0): 33, 14, 18, (564,330,0): 32, 13, 17, (564,331,0): 32, 13, 17, (564,332,0): 31, 12, 16, (564,333,0): 31, 12, 16, (564,334,0): 30, 11, 15, (564,335,0): 30, 11, 17, (564,336,0): 29, 12, 20, (564,337,0): 29, 12, 22, (564,338,0): 29, 12, 22, (564,339,0): 28, 11, 21, (564,340,0): 27, 10, 20, (564,341,0): 27, 10, 20, (564,342,0): 27, 10, 20, (564,343,0): 26, 9, 19, (564,344,0): 26, 9, 19, (564,345,0): 25, 8, 18, (564,346,0): 23, 6, 16, (564,347,0): 21, 4, 14, (564,348,0): 20, 3, 13, (564,349,0): 20, 3, 13, (564,350,0): 20, 3, 13, (564,351,0): 20, 3, 13, (564,352,0): 18, 2, 12, (564,353,0): 16, 3, 12, (564,354,0): 16, 3, 12, (564,355,0): 16, 3, 12, (564,356,0): 16, 3, 12, (564,357,0): 16, 3, 12, (564,358,0): 16, 3, 12, (564,359,0): 16, 3, 12, (564,360,0): 15, 2, 11, (564,361,0): 15, 2, 11, (564,362,0): 15, 2, 11, (564,363,0): 15, 2, 11, (564,364,0): 15, 2, 11, (564,365,0): 15, 2, 11, (564,366,0): 15, 2, 11, (564,367,0): 14, 3, 11, (564,368,0): 11, 1, 10, (564,369,0): 9, 2, 10, (564,370,0): 9, 2, 10, (564,371,0): 9, 2, 10, (564,372,0): 9, 2, 10, (564,373,0): 9, 2, 10, (564,374,0): 9, 2, 10, (564,375,0): 9, 2, 10, (564,376,0): 10, 3, 11, (564,377,0): 10, 3, 11, (564,378,0): 10, 3, 11, (564,379,0): 10, 3, 11, (564,380,0): 11, 4, 12, (564,381,0): 11, 4, 12, (564,382,0): 11, 4, 12, (564,383,0): 11, 4, 12, (564,384,0): 11, 4, 11, (564,385,0): 11, 4, 11, (564,386,0): 11, 4, 11, (564,387,0): 12, 5, 12, (564,388,0): 14, 5, 10, (564,389,0): 15, 6, 11, (564,390,0): 15, 6, 9, (564,391,0): 15, 6, 9, (564,392,0): 20, 9, 13, (564,393,0): 19, 8, 12, (564,394,0): 19, 7, 9, (564,395,0): 18, 6, 8, (564,396,0): 19, 7, 7, (564,397,0): 20, 8, 8, (564,398,0): 25, 11, 11, (564,399,0): 26, 12, 12, (564,400,0): 22, 10, 10, (564,401,0): 22, 10, 10, (564,402,0): 24, 10, 10, (564,403,0): 24, 10, 10, (564,404,0): 24, 10, 10, (564,405,0): 24, 10, 10, (564,406,0): 25, 9, 10, (564,407,0): 25, 9, 10, (564,408,0): 25, 6, 8, (564,409,0): 25, 6, 8, (564,410,0): 25, 6, 8, (564,411,0): 26, 7, 9, (564,412,0): 27, 7, 9, (564,413,0): 27, 7, 9, (564,414,0): 27, 7, 9, (564,415,0): 27, 7, 9, (564,416,0): 28, 9, 11, (564,417,0): 29, 10, 12, (564,418,0): 30, 11, 13, (564,419,0): 31, 12, 14, (564,420,0): 32, 13, 15, (564,421,0): 32, 13, 15, (564,422,0): 31, 12, 14, (564,423,0): 30, 11, 13, (564,424,0): 29, 10, 12, (564,425,0): 29, 10, 12, (564,426,0): 30, 11, 13, (564,427,0): 30, 11, 13, (564,428,0): 31, 12, 14, (564,429,0): 31, 12, 14, (564,430,0): 32, 13, 15, (564,431,0): 32, 14, 14, (564,432,0): 29, 11, 11, (564,433,0): 28, 10, 8, (564,434,0): 26, 8, 8, (564,435,0): 24, 6, 6, (564,436,0): 24, 6, 6, (564,437,0): 26, 8, 8, (564,438,0): 28, 9, 11, (564,439,0): 29, 10, 12, (564,440,0): 25, 6, 10, (564,441,0): 25, 6, 10, (564,442,0): 26, 7, 11, (564,443,0): 26, 7, 11, (564,444,0): 25, 6, 12, (564,445,0): 24, 5, 11, (564,446,0): 23, 4, 10, (564,447,0): 22, 3, 7, (564,448,0): 22, 6, 7, (564,449,0): 22, 6, 6, (564,450,0): 22, 6, 6, (564,451,0): 21, 5, 5, (564,452,0): 21, 5, 5, (564,453,0): 20, 4, 4, (564,454,0): 20, 4, 4, (564,455,0): 19, 3, 3, (564,456,0): 17, 1, 1, (564,457,0): 17, 1, 1, (564,458,0): 17, 1, 1, (564,459,0): 18, 2, 2, (564,460,0): 20, 4, 4, (564,461,0): 22, 6, 6, (564,462,0): 24, 8, 8, (564,463,0): 26, 10, 10, (564,464,0): 26, 7, 9, (564,465,0): 26, 7, 9, (564,466,0): 26, 7, 9, (564,467,0): 27, 8, 10, (564,468,0): 27, 8, 10, (564,469,0): 27, 8, 10, (564,470,0): 27, 8, 10, (564,471,0): 27, 8, 10, (564,472,0): 27, 8, 10, (564,473,0): 27, 8, 10, (564,474,0): 27, 8, 10, (564,475,0): 28, 9, 11, (564,476,0): 30, 11, 13, (564,477,0): 32, 13, 15, (564,478,0): 34, 15, 17, (564,479,0): 37, 15, 17, (564,480,0): 46, 16, 14, (564,481,0): 50, 16, 14, (564,482,0): 53, 19, 17, (564,483,0): 52, 21, 18, (564,484,0): 52, 21, 18, (564,485,0): 50, 21, 17, (564,486,0): 47, 18, 14, (564,487,0): 46, 17, 13, (564,488,0): 47, 18, 14, (564,489,0): 46, 18, 14, (564,490,0): 46, 18, 14, (564,491,0): 43, 18, 13, (564,492,0): 43, 18, 13, (564,493,0): 41, 18, 12, (564,494,0): 42, 17, 12, (564,495,0): 40, 16, 12, (564,496,0): 41, 17, 15, (564,497,0): 41, 17, 15, (564,498,0): 38, 17, 14, (564,499,0): 38, 17, 14, (564,500,0): 37, 16, 15, (564,501,0): 37, 16, 15, (564,502,0): 35, 15, 14, (564,503,0): 35, 15, 14, (564,504,0): 32, 14, 14, (564,505,0): 32, 14, 14, (564,506,0): 32, 13, 15, (564,507,0): 32, 13, 15, (564,508,0): 30, 14, 15, (564,509,0): 30, 14, 15, (564,510,0): 30, 14, 17, (564,511,0): 30, 14, 17, (564,512,0): 32, 12, 14, (564,513,0): 32, 12, 14, (564,514,0): 31, 11, 13, (564,515,0): 30, 10, 12, (564,516,0): 28, 9, 13, (564,517,0): 27, 8, 12, (564,518,0): 26, 7, 13, (564,519,0): 26, 7, 13, (564,520,0): 23, 6, 12, (564,521,0): 22, 5, 11, (564,522,0): 20, 5, 12, (564,523,0): 19, 4, 11, (564,524,0): 19, 3, 13, (564,525,0): 18, 2, 12, (564,526,0): 15, 2, 11, (564,527,0): 14, 1, 10, (564,528,0): 14, 2, 12, (564,529,0): 14, 2, 12, (564,530,0): 14, 2, 12, (564,531,0): 14, 2, 12, (564,532,0): 14, 2, 12, (564,533,0): 14, 2, 12, (564,534,0): 14, 2, 12, (564,535,0): 14, 2, 12, (564,536,0): 12, 0, 10, (564,537,0): 12, 0, 10, (564,538,0): 12, 0, 10, (564,539,0): 12, 0, 10, (564,540,0): 12, 0, 10, (564,541,0): 12, 0, 10, (564,542,0): 12, 0, 10, (564,543,0): 11, 1, 10, (564,544,0): 11, 1, 10, (564,545,0): 10, 3, 11, (564,546,0): 10, 3, 11, (564,547,0): 11, 4, 12, (564,548,0): 11, 4, 12, (564,549,0): 12, 5, 13, (564,550,0): 12, 5, 13, (564,551,0): 12, 5, 13, (564,552,0): 8, 1, 9, (564,553,0): 8, 1, 9, (564,554,0): 9, 2, 10, (564,555,0): 9, 2, 10, (564,556,0): 10, 3, 11, (564,557,0): 10, 3, 11, (564,558,0): 11, 4, 12, (564,559,0): 10, 5, 12, (564,560,0): 12, 6, 16, (564,561,0): 10, 7, 16, (564,562,0): 13, 8, 15, (564,563,0): 14, 9, 16, (564,564,0): 15, 10, 17, (564,565,0): 16, 11, 18, (564,566,0): 18, 11, 18, (564,567,0): 18, 11, 18, (564,568,0): 25, 16, 21, (564,569,0): 27, 18, 23, (564,570,0): 31, 22, 27, (564,571,0): 33, 24, 29, (564,572,0): 35, 24, 28, (564,573,0): 35, 24, 28, (564,574,0): 33, 22, 26, (564,575,0): 32, 21, 25, (564,576,0): 32, 21, 25, (564,577,0): 31, 20, 24, (564,578,0): 30, 19, 23, (564,579,0): 29, 18, 22, (564,580,0): 28, 17, 21, (564,581,0): 26, 15, 19, (564,582,0): 26, 15, 19, (564,583,0): 25, 14, 18, (564,584,0): 26, 15, 19, (564,585,0): 26, 15, 19, (564,586,0): 28, 17, 21, (564,587,0): 29, 18, 22, (564,588,0): 29, 18, 22, (564,589,0): 28, 17, 21, (564,590,0): 27, 16, 20, (564,591,0): 25, 16, 19, (564,592,0): 23, 16, 23, (564,593,0): 22, 17, 23, (564,594,0): 23, 17, 21, (564,595,0): 23, 19, 20, (564,596,0): 24, 18, 20, (564,597,0): 24, 20, 19, (564,598,0): 25, 20, 17, (564,599,0): 24, 20, 17, (565,0,0): 37, 56, 70, (565,1,0): 37, 56, 70, (565,2,0): 37, 56, 70, (565,3,0): 38, 57, 71, (565,4,0): 38, 57, 71, (565,5,0): 39, 58, 72, (565,6,0): 39, 58, 72, (565,7,0): 39, 58, 72, (565,8,0): 40, 59, 73, (565,9,0): 40, 59, 73, (565,10,0): 40, 59, 73, (565,11,0): 40, 59, 73, (565,12,0): 40, 59, 73, (565,13,0): 40, 59, 73, (565,14,0): 40, 59, 73, (565,15,0): 40, 59, 73, (565,16,0): 45, 63, 77, (565,17,0): 44, 62, 76, (565,18,0): 43, 61, 75, (565,19,0): 43, 61, 75, (565,20,0): 41, 59, 73, (565,21,0): 41, 59, 73, (565,22,0): 40, 58, 72, (565,23,0): 39, 57, 71, (565,24,0): 42, 60, 74, (565,25,0): 42, 60, 74, (565,26,0): 43, 61, 75, (565,27,0): 43, 61, 75, (565,28,0): 44, 62, 76, (565,29,0): 44, 62, 76, (565,30,0): 45, 63, 77, (565,31,0): 45, 63, 75, (565,32,0): 48, 64, 77, (565,33,0): 48, 65, 75, (565,34,0): 50, 64, 75, (565,35,0): 51, 65, 76, (565,36,0): 52, 64, 76, (565,37,0): 53, 65, 77, (565,38,0): 55, 65, 77, (565,39,0): 55, 65, 77, (565,40,0): 57, 63, 77, (565,41,0): 57, 63, 77, (565,42,0): 59, 62, 77, (565,43,0): 60, 63, 78, (565,44,0): 61, 63, 78, (565,45,0): 62, 64, 79, (565,46,0): 64, 63, 79, (565,47,0): 65, 64, 80, (565,48,0): 63, 65, 78, (565,49,0): 63, 65, 78, (565,50,0): 63, 65, 78, (565,51,0): 64, 66, 79, (565,52,0): 66, 65, 79, (565,53,0): 67, 66, 80, (565,54,0): 68, 66, 80, (565,55,0): 69, 67, 81, (565,56,0): 69, 67, 81, (565,57,0): 70, 68, 82, (565,58,0): 72, 68, 83, (565,59,0): 73, 69, 84, (565,60,0): 75, 68, 84, (565,61,0): 74, 67, 83, (565,62,0): 73, 66, 82, (565,63,0): 70, 66, 81, (565,64,0): 71, 67, 82, (565,65,0): 71, 69, 83, (565,66,0): 71, 69, 83, (565,67,0): 71, 69, 83, (565,68,0): 72, 70, 84, (565,69,0): 73, 71, 85, (565,70,0): 73, 71, 85, (565,71,0): 73, 71, 85, (565,72,0): 73, 71, 85, (565,73,0): 73, 71, 85, (565,74,0): 73, 71, 85, (565,75,0): 74, 72, 86, (565,76,0): 74, 72, 86, (565,77,0): 75, 73, 87, (565,78,0): 75, 73, 87, (565,79,0): 74, 73, 87, (565,80,0): 73, 72, 88, (565,81,0): 71, 73, 88, (565,82,0): 71, 73, 88, (565,83,0): 71, 73, 88, (565,84,0): 71, 73, 88, (565,85,0): 71, 73, 88, (565,86,0): 71, 73, 88, (565,87,0): 71, 73, 88, (565,88,0): 73, 75, 90, (565,89,0): 73, 75, 90, (565,90,0): 73, 75, 90, (565,91,0): 74, 76, 91, (565,92,0): 74, 76, 91, (565,93,0): 75, 77, 92, (565,94,0): 75, 77, 92, (565,95,0): 75, 77, 92, (565,96,0): 75, 76, 94, (565,97,0): 75, 76, 94, (565,98,0): 75, 76, 96, (565,99,0): 75, 76, 96, (565,100,0): 74, 77, 96, (565,101,0): 74, 77, 96, (565,102,0): 74, 76, 97, (565,103,0): 72, 77, 97, (565,104,0): 71, 76, 98, (565,105,0): 71, 77, 99, (565,106,0): 72, 78, 100, (565,107,0): 73, 79, 101, (565,108,0): 74, 80, 104, (565,109,0): 73, 79, 103, (565,110,0): 72, 80, 103, (565,111,0): 71, 79, 100, (565,112,0): 73, 79, 101, (565,113,0): 72, 79, 98, (565,114,0): 72, 79, 98, (565,115,0): 71, 78, 97, (565,116,0): 72, 79, 98, (565,117,0): 73, 80, 99, (565,118,0): 75, 82, 101, (565,119,0): 76, 83, 102, (565,120,0): 74, 81, 100, (565,121,0): 74, 81, 100, (565,122,0): 75, 82, 101, (565,123,0): 75, 82, 101, (565,124,0): 75, 82, 101, (565,125,0): 73, 80, 99, (565,126,0): 72, 79, 98, (565,127,0): 72, 77, 97, (565,128,0): 75, 77, 100, (565,129,0): 75, 77, 100, (565,130,0): 76, 76, 100, (565,131,0): 75, 77, 100, (565,132,0): 76, 76, 100, (565,133,0): 75, 77, 100, (565,134,0): 76, 76, 100, (565,135,0): 75, 77, 100, (565,136,0): 80, 80, 104, (565,137,0): 79, 81, 104, (565,138,0): 79, 79, 103, (565,139,0): 78, 80, 103, (565,140,0): 80, 80, 104, (565,141,0): 80, 82, 105, (565,142,0): 82, 82, 106, (565,143,0): 82, 84, 107, (565,144,0): 80, 82, 105, (565,145,0): 78, 83, 105, (565,146,0): 78, 82, 107, (565,147,0): 79, 83, 108, (565,148,0): 79, 83, 110, (565,149,0): 79, 85, 111, (565,150,0): 79, 84, 113, (565,151,0): 79, 86, 114, (565,152,0): 83, 89, 121, (565,153,0): 83, 89, 121, (565,154,0): 83, 89, 123, (565,155,0): 81, 90, 123, (565,156,0): 81, 89, 125, (565,157,0): 81, 89, 125, (565,158,0): 81, 89, 126, (565,159,0): 81, 89, 126, (565,160,0): 83, 89, 125, (565,161,0): 83, 89, 123, (565,162,0): 83, 89, 125, (565,163,0): 83, 89, 123, (565,164,0): 83, 89, 125, (565,165,0): 83, 89, 123, (565,166,0): 83, 89, 125, (565,167,0): 83, 89, 123, (565,168,0): 84, 90, 126, (565,169,0): 84, 90, 124, (565,170,0): 84, 90, 126, (565,171,0): 84, 90, 124, (565,172,0): 84, 90, 126, (565,173,0): 84, 90, 124, (565,174,0): 84, 90, 126, (565,175,0): 82, 90, 126, (565,176,0): 82, 91, 130, (565,177,0): 80, 92, 132, (565,178,0): 80, 92, 132, (565,179,0): 79, 93, 132, (565,180,0): 79, 93, 132, (565,181,0): 79, 93, 132, (565,182,0): 79, 93, 132, (565,183,0): 78, 93, 132, (565,184,0): 76, 91, 130, (565,185,0): 74, 92, 130, (565,186,0): 75, 93, 131, (565,187,0): 76, 94, 132, (565,188,0): 77, 95, 133, (565,189,0): 77, 97, 134, (565,190,0): 78, 98, 135, (565,191,0): 78, 98, 135, (565,192,0): 72, 94, 131, (565,193,0): 72, 94, 131, (565,194,0): 72, 94, 133, (565,195,0): 72, 94, 133, (565,196,0): 72, 94, 133, (565,197,0): 71, 95, 133, (565,198,0): 71, 94, 135, (565,199,0): 71, 94, 135, (565,200,0): 72, 95, 137, (565,201,0): 71, 96, 137, (565,202,0): 72, 97, 138, (565,203,0): 70, 98, 138, (565,204,0): 71, 98, 141, (565,205,0): 71, 98, 141, (565,206,0): 72, 99, 142, (565,207,0): 74, 98, 142, (565,208,0): 78, 99, 142, (565,209,0): 80, 99, 142, (565,210,0): 81, 99, 145, (565,211,0): 82, 100, 146, (565,212,0): 83, 101, 147, (565,213,0): 84, 102, 148, (565,214,0): 84, 102, 150, (565,215,0): 84, 102, 150, (565,216,0): 84, 102, 152, (565,217,0): 85, 103, 153, (565,218,0): 86, 104, 154, (565,219,0): 87, 105, 155, (565,220,0): 88, 105, 157, (565,221,0): 89, 106, 158, (565,222,0): 90, 107, 159, (565,223,0): 90, 107, 161, (565,224,0): 89, 108, 164, (565,225,0): 91, 112, 169, (565,226,0): 93, 113, 172, (565,227,0): 92, 114, 174, (565,228,0): 93, 112, 178, (565,229,0): 94, 115, 182, (565,230,0): 98, 118, 187, (565,231,0): 100, 123, 193, (565,232,0): 100, 122, 195, (565,233,0): 98, 122, 194, (565,234,0): 98, 120, 193, (565,235,0): 95, 119, 191, (565,236,0): 95, 119, 191, (565,237,0): 93, 120, 189, (565,238,0): 96, 120, 190, (565,239,0): 93, 122, 192, (565,240,0): 92, 124, 197, (565,241,0): 88, 124, 198, (565,242,0): 88, 124, 200, (565,243,0): 88, 124, 200, (565,244,0): 88, 124, 200, (565,245,0): 87, 123, 199, (565,246,0): 87, 123, 201, (565,247,0): 87, 123, 201, (565,248,0): 87, 123, 201, (565,249,0): 86, 122, 200, (565,250,0): 86, 121, 202, (565,251,0): 85, 120, 201, (565,252,0): 84, 119, 200, (565,253,0): 83, 118, 199, (565,254,0): 82, 117, 198, (565,255,0): 81, 116, 197, (565,256,0): 82, 118, 196, (565,257,0): 82, 118, 194, (565,258,0): 81, 117, 193, (565,259,0): 81, 115, 189, (565,260,0): 81, 113, 188, (565,261,0): 79, 111, 184, (565,262,0): 80, 110, 183, (565,263,0): 80, 110, 182, (565,264,0): 78, 108, 178, (565,265,0): 77, 108, 175, (565,266,0): 76, 107, 172, (565,267,0): 73, 107, 171, (565,268,0): 73, 107, 170, (565,269,0): 73, 109, 171, (565,270,0): 74, 110, 170, (565,271,0): 76, 110, 171, (565,272,0): 83, 109, 170, (565,273,0): 86, 108, 168, (565,274,0): 86, 107, 170, (565,275,0): 86, 107, 170, (565,276,0): 86, 107, 170, (565,277,0): 87, 108, 171, (565,278,0): 88, 108, 169, (565,279,0): 88, 108, 167, (565,280,0): 89, 108, 167, (565,281,0): 91, 107, 166, (565,282,0): 94, 107, 162, (565,283,0): 95, 106, 160, (565,284,0): 96, 106, 159, (565,285,0): 98, 105, 157, (565,286,0): 99, 105, 155, (565,287,0): 102, 104, 153, (565,288,0): 104, 102, 151, (565,289,0): 104, 98, 146, (565,290,0): 103, 95, 144, (565,291,0): 106, 97, 142, (565,292,0): 112, 101, 144, (565,293,0): 115, 100, 141, (565,294,0): 113, 95, 135, (565,295,0): 110, 90, 127, (565,296,0): 108, 84, 118, (565,297,0): 102, 75, 106, (565,298,0): 96, 65, 96, (565,299,0): 92, 58, 85, (565,300,0): 90, 54, 82, (565,301,0): 88, 50, 75, (565,302,0): 83, 43, 69, (565,303,0): 77, 39, 60, (565,304,0): 65, 37, 52, (565,305,0): 61, 37, 50, (565,306,0): 59, 35, 48, (565,307,0): 56, 33, 43, (565,308,0): 54, 31, 41, (565,309,0): 53, 30, 40, (565,310,0): 53, 30, 38, (565,311,0): 53, 30, 38, (565,312,0): 51, 28, 36, (565,313,0): 50, 27, 35, (565,314,0): 47, 24, 30, (565,315,0): 43, 20, 26, (565,316,0): 41, 18, 24, (565,317,0): 39, 17, 20, (565,318,0): 38, 16, 19, (565,319,0): 37, 17, 19, (565,320,0): 34, 15, 19, (565,321,0): 34, 15, 19, (565,322,0): 34, 15, 19, (565,323,0): 34, 15, 19, (565,324,0): 34, 15, 19, (565,325,0): 34, 15, 19, (565,326,0): 34, 15, 19, (565,327,0): 34, 15, 19, (565,328,0): 33, 14, 18, (565,329,0): 33, 14, 18, (565,330,0): 32, 13, 17, (565,331,0): 32, 13, 17, (565,332,0): 31, 12, 16, (565,333,0): 31, 12, 16, (565,334,0): 31, 12, 16, (565,335,0): 30, 11, 17, (565,336,0): 29, 12, 20, (565,337,0): 28, 11, 21, (565,338,0): 28, 11, 21, (565,339,0): 27, 10, 20, (565,340,0): 27, 10, 20, (565,341,0): 26, 9, 19, (565,342,0): 26, 9, 19, (565,343,0): 26, 9, 19, (565,344,0): 25, 8, 18, (565,345,0): 24, 7, 17, (565,346,0): 22, 5, 15, (565,347,0): 20, 3, 13, (565,348,0): 19, 2, 12, (565,349,0): 19, 2, 12, (565,350,0): 19, 2, 12, (565,351,0): 19, 3, 13, (565,352,0): 15, 2, 11, (565,353,0): 15, 2, 11, (565,354,0): 15, 2, 11, (565,355,0): 15, 2, 11, (565,356,0): 15, 2, 11, (565,357,0): 15, 2, 11, (565,358,0): 15, 2, 11, (565,359,0): 15, 2, 11, (565,360,0): 15, 2, 11, (565,361,0): 15, 2, 11, (565,362,0): 15, 2, 11, (565,363,0): 15, 2, 11, (565,364,0): 15, 2, 11, (565,365,0): 15, 2, 11, (565,366,0): 15, 2, 11, (565,367,0): 14, 3, 11, (565,368,0): 11, 1, 10, (565,369,0): 9, 2, 10, (565,370,0): 9, 2, 10, (565,371,0): 9, 2, 10, (565,372,0): 9, 2, 10, (565,373,0): 9, 2, 10, (565,374,0): 9, 2, 10, (565,375,0): 9, 2, 10, (565,376,0): 10, 3, 11, (565,377,0): 10, 3, 11, (565,378,0): 10, 3, 11, (565,379,0): 10, 3, 11, (565,380,0): 11, 4, 12, (565,381,0): 11, 4, 12, (565,382,0): 11, 4, 12, (565,383,0): 11, 4, 12, (565,384,0): 11, 4, 11, (565,385,0): 11, 4, 11, (565,386,0): 11, 4, 11, (565,387,0): 12, 5, 12, (565,388,0): 14, 5, 10, (565,389,0): 15, 6, 11, (565,390,0): 15, 6, 9, (565,391,0): 15, 6, 9, (565,392,0): 19, 8, 12, (565,393,0): 19, 8, 12, (565,394,0): 19, 7, 9, (565,395,0): 19, 7, 9, (565,396,0): 20, 8, 8, (565,397,0): 21, 9, 9, (565,398,0): 24, 10, 10, (565,399,0): 25, 11, 11, (565,400,0): 22, 10, 10, (565,401,0): 22, 10, 10, (565,402,0): 24, 10, 10, (565,403,0): 24, 10, 10, (565,404,0): 24, 10, 10, (565,405,0): 24, 10, 10, (565,406,0): 25, 9, 10, (565,407,0): 25, 9, 10, (565,408,0): 25, 6, 8, (565,409,0): 25, 6, 8, (565,410,0): 26, 7, 9, (565,411,0): 26, 7, 9, (565,412,0): 28, 8, 10, (565,413,0): 28, 8, 10, (565,414,0): 28, 8, 10, (565,415,0): 29, 9, 11, (565,416,0): 28, 9, 11, (565,417,0): 29, 10, 12, (565,418,0): 31, 12, 14, (565,419,0): 32, 13, 15, (565,420,0): 32, 13, 15, (565,421,0): 32, 13, 15, (565,422,0): 31, 12, 14, (565,423,0): 31, 12, 14, (565,424,0): 30, 11, 13, (565,425,0): 30, 11, 13, (565,426,0): 31, 12, 14, (565,427,0): 31, 12, 14, (565,428,0): 32, 13, 15, (565,429,0): 32, 13, 15, (565,430,0): 33, 14, 16, (565,431,0): 33, 15, 15, (565,432,0): 29, 11, 9, (565,433,0): 28, 10, 8, (565,434,0): 26, 8, 8, (565,435,0): 25, 7, 7, (565,436,0): 25, 7, 7, (565,437,0): 26, 8, 8, (565,438,0): 28, 9, 11, (565,439,0): 29, 10, 12, (565,440,0): 26, 7, 11, (565,441,0): 26, 7, 11, (565,442,0): 27, 8, 12, (565,443,0): 27, 8, 12, (565,444,0): 27, 8, 14, (565,445,0): 26, 7, 13, (565,446,0): 24, 5, 11, (565,447,0): 23, 4, 8, (565,448,0): 23, 7, 8, (565,449,0): 22, 6, 6, (565,450,0): 22, 6, 6, (565,451,0): 22, 6, 6, (565,452,0): 21, 5, 5, (565,453,0): 20, 4, 4, (565,454,0): 20, 4, 4, (565,455,0): 20, 4, 4, (565,456,0): 17, 1, 1, (565,457,0): 17, 1, 1, (565,458,0): 17, 1, 1, (565,459,0): 18, 2, 2, (565,460,0): 19, 3, 3, (565,461,0): 22, 6, 6, (565,462,0): 24, 8, 8, (565,463,0): 25, 9, 9, (565,464,0): 25, 6, 8, (565,465,0): 25, 6, 8, (565,466,0): 26, 7, 9, (565,467,0): 26, 7, 9, (565,468,0): 26, 7, 9, (565,469,0): 27, 8, 10, (565,470,0): 27, 8, 10, (565,471,0): 27, 8, 10, (565,472,0): 27, 8, 10, (565,473,0): 27, 8, 10, (565,474,0): 27, 8, 10, (565,475,0): 28, 9, 11, (565,476,0): 30, 11, 13, (565,477,0): 32, 13, 15, (565,478,0): 34, 15, 17, (565,479,0): 37, 15, 17, (565,480,0): 46, 16, 14, (565,481,0): 50, 16, 14, (565,482,0): 53, 19, 17, (565,483,0): 54, 20, 18, (565,484,0): 52, 21, 18, (565,485,0): 51, 20, 17, (565,486,0): 47, 18, 14, (565,487,0): 46, 17, 13, (565,488,0): 48, 19, 15, (565,489,0): 47, 18, 14, (565,490,0): 46, 18, 14, (565,491,0): 46, 18, 14, (565,492,0): 45, 17, 13, (565,493,0): 42, 17, 12, (565,494,0): 44, 16, 12, (565,495,0): 42, 17, 12, (565,496,0): 40, 16, 14, (565,497,0): 40, 16, 14, (565,498,0): 37, 16, 13, (565,499,0): 37, 16, 13, (565,500,0): 36, 15, 14, (565,501,0): 36, 15, 14, (565,502,0): 34, 14, 13, (565,503,0): 34, 14, 13, (565,504,0): 32, 14, 14, (565,505,0): 32, 14, 14, (565,506,0): 32, 13, 15, (565,507,0): 32, 13, 15, (565,508,0): 30, 14, 15, (565,509,0): 30, 14, 15, (565,510,0): 30, 14, 17, (565,511,0): 30, 14, 17, (565,512,0): 32, 12, 14, (565,513,0): 32, 12, 14, (565,514,0): 31, 11, 13, (565,515,0): 30, 10, 12, (565,516,0): 28, 9, 13, (565,517,0): 27, 8, 12, (565,518,0): 26, 7, 13, (565,519,0): 26, 7, 13, (565,520,0): 24, 7, 13, (565,521,0): 22, 5, 11, (565,522,0): 19, 4, 11, (565,523,0): 18, 3, 10, (565,524,0): 19, 3, 13, (565,525,0): 19, 3, 13, (565,526,0): 15, 2, 11, (565,527,0): 13, 0, 9, (565,528,0): 14, 2, 12, (565,529,0): 14, 2, 12, (565,530,0): 14, 2, 12, (565,531,0): 14, 2, 12, (565,532,0): 14, 2, 12, (565,533,0): 14, 2, 12, (565,534,0): 14, 2, 12, (565,535,0): 14, 2, 12, (565,536,0): 12, 0, 10, (565,537,0): 12, 0, 10, (565,538,0): 12, 0, 10, (565,539,0): 12, 0, 10, (565,540,0): 12, 0, 10, (565,541,0): 12, 0, 10, (565,542,0): 12, 0, 10, (565,543,0): 11, 1, 10, (565,544,0): 12, 2, 11, (565,545,0): 10, 3, 11, (565,546,0): 10, 3, 11, (565,547,0): 11, 4, 12, (565,548,0): 12, 5, 13, (565,549,0): 12, 5, 13, (565,550,0): 12, 5, 13, (565,551,0): 13, 6, 14, (565,552,0): 9, 2, 10, (565,553,0): 10, 3, 11, (565,554,0): 10, 3, 11, (565,555,0): 10, 3, 11, (565,556,0): 11, 4, 12, (565,557,0): 12, 5, 13, (565,558,0): 12, 5, 13, (565,559,0): 11, 6, 13, (565,560,0): 12, 6, 16, (565,561,0): 10, 7, 16, (565,562,0): 13, 8, 15, (565,563,0): 14, 9, 16, (565,564,0): 15, 10, 17, (565,565,0): 16, 11, 18, (565,566,0): 18, 11, 18, (565,567,0): 19, 12, 19, (565,568,0): 25, 16, 21, (565,569,0): 27, 18, 23, (565,570,0): 31, 22, 27, (565,571,0): 34, 25, 30, (565,572,0): 36, 25, 29, (565,573,0): 35, 24, 28, (565,574,0): 33, 22, 26, (565,575,0): 31, 20, 24, (565,576,0): 32, 21, 25, (565,577,0): 31, 20, 24, (565,578,0): 30, 19, 23, (565,579,0): 28, 17, 21, (565,580,0): 27, 16, 20, (565,581,0): 25, 14, 18, (565,582,0): 24, 13, 17, (565,583,0): 24, 13, 17, (565,584,0): 25, 14, 18, (565,585,0): 26, 15, 19, (565,586,0): 28, 17, 21, (565,587,0): 29, 18, 22, (565,588,0): 29, 18, 22, (565,589,0): 29, 18, 22, (565,590,0): 28, 17, 21, (565,591,0): 27, 18, 21, (565,592,0): 23, 16, 23, (565,593,0): 22, 17, 23, (565,594,0): 22, 17, 21, (565,595,0): 23, 19, 20, (565,596,0): 23, 19, 20, (565,597,0): 24, 20, 19, (565,598,0): 24, 20, 17, (565,599,0): 24, 20, 17, (566,0,0): 37, 56, 70, (566,1,0): 37, 56, 70, (566,2,0): 37, 56, 70, (566,3,0): 38, 57, 71, (566,4,0): 38, 57, 71, (566,5,0): 39, 58, 72, (566,6,0): 39, 58, 72, (566,7,0): 39, 58, 72, (566,8,0): 40, 59, 73, (566,9,0): 40, 59, 73, (566,10,0): 40, 59, 73, (566,11,0): 40, 59, 73, (566,12,0): 40, 59, 73, (566,13,0): 40, 59, 73, (566,14,0): 40, 59, 73, (566,15,0): 40, 59, 73, (566,16,0): 43, 61, 75, (566,17,0): 42, 60, 74, (566,18,0): 42, 60, 74, (566,19,0): 42, 60, 74, (566,20,0): 42, 60, 74, (566,21,0): 42, 60, 74, (566,22,0): 42, 60, 74, (566,23,0): 41, 59, 73, (566,24,0): 42, 60, 74, (566,25,0): 42, 60, 74, (566,26,0): 43, 61, 75, (566,27,0): 43, 61, 75, (566,28,0): 44, 62, 76, (566,29,0): 44, 62, 76, (566,30,0): 45, 63, 77, (566,31,0): 45, 63, 75, (566,32,0): 48, 64, 77, (566,33,0): 48, 65, 75, (566,34,0): 50, 64, 75, (566,35,0): 51, 65, 76, (566,36,0): 52, 64, 76, (566,37,0): 53, 65, 77, (566,38,0): 55, 65, 77, (566,39,0): 55, 65, 77, (566,40,0): 56, 62, 76, (566,41,0): 57, 63, 77, (566,42,0): 59, 62, 77, (566,43,0): 60, 63, 78, (566,44,0): 61, 63, 78, (566,45,0): 62, 64, 79, (566,46,0): 64, 63, 79, (566,47,0): 64, 63, 79, (566,48,0): 62, 64, 77, (566,49,0): 63, 65, 78, (566,50,0): 63, 65, 78, (566,51,0): 64, 66, 79, (566,52,0): 66, 65, 79, (566,53,0): 67, 66, 80, (566,54,0): 68, 66, 80, (566,55,0): 68, 66, 80, (566,56,0): 69, 67, 81, (566,57,0): 69, 67, 81, (566,58,0): 71, 67, 82, (566,59,0): 72, 68, 83, (566,60,0): 74, 67, 83, (566,61,0): 73, 66, 82, (566,62,0): 72, 65, 81, (566,63,0): 70, 66, 81, (566,64,0): 71, 67, 82, (566,65,0): 70, 68, 82, (566,66,0): 71, 69, 83, (566,67,0): 71, 69, 83, (566,68,0): 72, 70, 84, (566,69,0): 72, 70, 84, (566,70,0): 72, 70, 84, (566,71,0): 73, 71, 85, (566,72,0): 72, 70, 84, (566,73,0): 72, 70, 84, (566,74,0): 72, 70, 84, (566,75,0): 73, 71, 85, (566,76,0): 73, 71, 85, (566,77,0): 74, 72, 86, (566,78,0): 74, 72, 86, (566,79,0): 74, 73, 87, (566,80,0): 72, 71, 87, (566,81,0): 70, 72, 87, (566,82,0): 70, 72, 87, (566,83,0): 70, 72, 87, (566,84,0): 70, 72, 87, (566,85,0): 70, 72, 87, (566,86,0): 70, 72, 87, (566,87,0): 70, 72, 87, (566,88,0): 72, 74, 89, (566,89,0): 72, 74, 89, (566,90,0): 72, 74, 89, (566,91,0): 73, 75, 90, (566,92,0): 73, 75, 90, (566,93,0): 74, 76, 91, (566,94,0): 74, 76, 91, (566,95,0): 75, 77, 92, (566,96,0): 73, 76, 93, (566,97,0): 73, 76, 93, (566,98,0): 73, 76, 95, (566,99,0): 73, 76, 95, (566,100,0): 73, 76, 95, (566,101,0): 73, 76, 95, (566,102,0): 71, 76, 96, (566,103,0): 71, 76, 96, (566,104,0): 70, 75, 97, (566,105,0): 70, 76, 98, (566,106,0): 71, 77, 99, (566,107,0): 72, 80, 101, (566,108,0): 72, 80, 103, (566,109,0): 72, 80, 103, (566,110,0): 72, 80, 103, (566,111,0): 71, 79, 100, (566,112,0): 73, 79, 101, (566,113,0): 72, 79, 98, (566,114,0): 72, 79, 98, (566,115,0): 71, 78, 97, (566,116,0): 72, 79, 98, (566,117,0): 73, 80, 99, (566,118,0): 75, 82, 101, (566,119,0): 76, 83, 102, (566,120,0): 73, 80, 99, (566,121,0): 74, 81, 100, (566,122,0): 75, 82, 101, (566,123,0): 75, 82, 101, (566,124,0): 74, 81, 100, (566,125,0): 73, 80, 99, (566,126,0): 72, 79, 98, (566,127,0): 71, 78, 97, (566,128,0): 75, 80, 102, (566,129,0): 75, 80, 102, (566,130,0): 77, 79, 102, (566,131,0): 75, 80, 102, (566,132,0): 77, 79, 102, (566,133,0): 75, 80, 102, (566,134,0): 77, 79, 102, (566,135,0): 75, 80, 102, (566,136,0): 78, 80, 103, (566,137,0): 75, 80, 102, (566,138,0): 76, 78, 101, (566,139,0): 74, 79, 101, (566,140,0): 76, 78, 101, (566,141,0): 76, 81, 103, (566,142,0): 79, 81, 104, (566,143,0): 79, 84, 106, (566,144,0): 77, 82, 104, (566,145,0): 78, 83, 105, (566,146,0): 78, 82, 107, (566,147,0): 78, 84, 108, (566,148,0): 78, 84, 110, (566,149,0): 79, 85, 111, (566,150,0): 79, 84, 113, (566,151,0): 78, 85, 113, (566,152,0): 82, 88, 120, (566,153,0): 80, 89, 120, (566,154,0): 80, 89, 122, (566,155,0): 80, 89, 122, (566,156,0): 80, 88, 124, (566,157,0): 79, 89, 124, (566,158,0): 79, 89, 125, (566,159,0): 80, 88, 124, (566,160,0): 83, 89, 123, (566,161,0): 83, 89, 121, (566,162,0): 83, 89, 123, (566,163,0): 83, 89, 121, (566,164,0): 83, 89, 123, (566,165,0): 83, 89, 121, (566,166,0): 83, 89, 123, (566,167,0): 83, 89, 121, (566,168,0): 85, 91, 125, (566,169,0): 85, 91, 123, (566,170,0): 85, 91, 125, (566,171,0): 85, 91, 123, (566,172,0): 85, 91, 125, (566,173,0): 85, 91, 123, (566,174,0): 85, 91, 125, (566,175,0): 85, 91, 125, (566,176,0): 84, 92, 129, (566,177,0): 83, 92, 131, (566,178,0): 82, 91, 130, (566,179,0): 80, 92, 130, (566,180,0): 80, 92, 130, (566,181,0): 80, 92, 130, (566,182,0): 80, 92, 130, (566,183,0): 79, 93, 130, (566,184,0): 79, 93, 130, (566,185,0): 78, 94, 130, (566,186,0): 78, 94, 130, (566,187,0): 78, 94, 130, (566,188,0): 79, 95, 131, (566,189,0): 77, 95, 131, (566,190,0): 77, 95, 131, (566,191,0): 77, 95, 131, (566,192,0): 74, 94, 131, (566,193,0): 74, 94, 131, (566,194,0): 74, 93, 133, (566,195,0): 74, 93, 133, (566,196,0): 74, 93, 133, (566,197,0): 72, 94, 133, (566,198,0): 72, 94, 135, (566,199,0): 71, 94, 135, (566,200,0): 73, 96, 138, (566,201,0): 72, 97, 138, (566,202,0): 73, 98, 139, (566,203,0): 73, 98, 139, (566,204,0): 74, 98, 142, (566,205,0): 74, 98, 142, (566,206,0): 75, 99, 143, (566,207,0): 76, 99, 143, (566,208,0): 82, 101, 144, (566,209,0): 83, 100, 144, (566,210,0): 83, 100, 144, (566,211,0): 84, 101, 145, (566,212,0): 84, 101, 147, (566,213,0): 84, 101, 147, (566,214,0): 84, 101, 147, (566,215,0): 84, 101, 147, (566,216,0): 84, 100, 149, (566,217,0): 84, 100, 149, (566,218,0): 85, 101, 152, (566,219,0): 86, 102, 153, (566,220,0): 87, 103, 154, (566,221,0): 88, 104, 155, (566,222,0): 89, 105, 157, (566,223,0): 89, 106, 160, (566,224,0): 84, 105, 160, (566,225,0): 85, 107, 164, (566,226,0): 87, 109, 167, (566,227,0): 86, 110, 170, (566,228,0): 87, 108, 173, (566,229,0): 87, 110, 177, (566,230,0): 92, 115, 185, (566,231,0): 94, 118, 190, (566,232,0): 94, 118, 190, (566,233,0): 91, 117, 191, (566,234,0): 92, 116, 190, (566,235,0): 88, 114, 188, (566,236,0): 88, 114, 188, (566,237,0): 87, 116, 186, (566,238,0): 89, 116, 187, (566,239,0): 87, 117, 189, (566,240,0): 85, 121, 197, (566,241,0): 84, 121, 199, (566,242,0): 84, 121, 199, (566,243,0): 84, 121, 199, (566,244,0): 85, 122, 202, (566,245,0): 85, 122, 202, (566,246,0): 85, 122, 202, (566,247,0): 85, 122, 202, (566,248,0): 84, 121, 201, (566,249,0): 84, 121, 201, (566,250,0): 83, 120, 201, (566,251,0): 82, 119, 200, (566,252,0): 80, 117, 198, (566,253,0): 79, 116, 197, (566,254,0): 78, 115, 196, (566,255,0): 78, 115, 196, (566,256,0): 80, 117, 197, (566,257,0): 79, 116, 194, (566,258,0): 79, 116, 194, (566,259,0): 78, 116, 191, (566,260,0): 78, 114, 190, (566,261,0): 80, 114, 188, (566,262,0): 80, 112, 185, (566,263,0): 80, 113, 184, (566,264,0): 75, 108, 177, (566,265,0): 75, 108, 175, (566,266,0): 74, 108, 172, (566,267,0): 73, 107, 171, (566,268,0): 73, 107, 170, (566,269,0): 74, 108, 171, (566,270,0): 75, 109, 170, (566,271,0): 78, 110, 171, (566,272,0): 83, 108, 172, (566,273,0): 84, 108, 170, (566,274,0): 86, 107, 172, (566,275,0): 86, 107, 170, (566,276,0): 87, 107, 170, (566,277,0): 86, 106, 169, (566,278,0): 87, 105, 167, (566,279,0): 89, 105, 165, (566,280,0): 92, 107, 166, (566,281,0): 94, 106, 164, (566,282,0): 96, 105, 162, (566,283,0): 98, 105, 160, (566,284,0): 101, 104, 159, (566,285,0): 102, 103, 157, (566,286,0): 101, 103, 154, (566,287,0): 104, 102, 152, (566,288,0): 109, 101, 150, (566,289,0): 109, 97, 143, (566,290,0): 107, 95, 141, (566,291,0): 109, 96, 140, (566,292,0): 113, 98, 141, (566,293,0): 112, 94, 134, (566,294,0): 105, 84, 123, (566,295,0): 98, 76, 112, (566,296,0): 97, 72, 104, (566,297,0): 93, 64, 94, (566,298,0): 86, 56, 82, (566,299,0): 85, 51, 75, (566,300,0): 85, 50, 74, (566,301,0): 84, 46, 67, (566,302,0): 77, 39, 60, (566,303,0): 69, 35, 52, (566,304,0): 61, 35, 48, (566,305,0): 57, 36, 45, (566,306,0): 55, 34, 43, (566,307,0): 53, 32, 41, (566,308,0): 52, 31, 40, (566,309,0): 51, 30, 37, (566,310,0): 51, 30, 37, (566,311,0): 52, 31, 38, (566,312,0): 51, 30, 37, (566,313,0): 49, 28, 35, (566,314,0): 46, 25, 32, (566,315,0): 43, 22, 27, (566,316,0): 40, 19, 24, (566,317,0): 38, 17, 22, (566,318,0): 37, 16, 21, (566,319,0): 37, 16, 21, (566,320,0): 33, 14, 20, (566,321,0): 33, 14, 20, (566,322,0): 33, 14, 20, (566,323,0): 33, 14, 20, (566,324,0): 33, 14, 20, (566,325,0): 34, 15, 21, (566,326,0): 34, 15, 21, (566,327,0): 34, 15, 21, (566,328,0): 34, 15, 21, (566,329,0): 34, 15, 21, (566,330,0): 33, 14, 20, (566,331,0): 33, 14, 20, (566,332,0): 32, 13, 19, (566,333,0): 32, 13, 19, (566,334,0): 31, 12, 18, (566,335,0): 31, 12, 18, (566,336,0): 28, 11, 19, (566,337,0): 27, 11, 21, (566,338,0): 27, 11, 21, (566,339,0): 26, 10, 20, (566,340,0): 26, 10, 20, (566,341,0): 25, 9, 19, (566,342,0): 25, 9, 19, (566,343,0): 24, 8, 18, (566,344,0): 24, 8, 18, (566,345,0): 23, 7, 17, (566,346,0): 21, 5, 15, (566,347,0): 19, 3, 13, (566,348,0): 18, 2, 12, (566,349,0): 18, 2, 12, (566,350,0): 18, 2, 12, (566,351,0): 18, 2, 12, (566,352,0): 15, 2, 11, (566,353,0): 14, 3, 11, (566,354,0): 14, 3, 11, (566,355,0): 14, 3, 11, (566,356,0): 14, 3, 11, (566,357,0): 14, 3, 11, (566,358,0): 14, 3, 11, (566,359,0): 14, 3, 11, (566,360,0): 14, 3, 11, (566,361,0): 14, 3, 11, (566,362,0): 14, 3, 11, (566,363,0): 14, 3, 11, (566,364,0): 14, 3, 11, (566,365,0): 14, 3, 11, (566,366,0): 14, 3, 11, (566,367,0): 14, 3, 11, (566,368,0): 11, 1, 10, (566,369,0): 9, 2, 10, (566,370,0): 9, 2, 10, (566,371,0): 9, 2, 10, (566,372,0): 9, 2, 10, (566,373,0): 9, 2, 10, (566,374,0): 9, 2, 10, (566,375,0): 9, 2, 10, (566,376,0): 11, 4, 12, (566,377,0): 11, 4, 12, (566,378,0): 11, 4, 12, (566,379,0): 11, 4, 12, (566,380,0): 10, 3, 11, (566,381,0): 10, 3, 11, (566,382,0): 10, 3, 11, (566,383,0): 10, 3, 11, (566,384,0): 11, 4, 11, (566,385,0): 11, 4, 11, (566,386,0): 11, 4, 11, (566,387,0): 12, 5, 12, (566,388,0): 14, 5, 10, (566,389,0): 15, 6, 11, (566,390,0): 15, 6, 9, (566,391,0): 15, 6, 9, (566,392,0): 17, 6, 10, (566,393,0): 18, 7, 11, (566,394,0): 20, 8, 10, (566,395,0): 21, 9, 11, (566,396,0): 22, 10, 10, (566,397,0): 22, 10, 10, (566,398,0): 23, 9, 9, (566,399,0): 23, 9, 9, (566,400,0): 22, 10, 10, (566,401,0): 22, 10, 10, (566,402,0): 24, 10, 10, (566,403,0): 24, 10, 10, (566,404,0): 24, 10, 10, (566,405,0): 24, 10, 10, (566,406,0): 25, 9, 10, (566,407,0): 25, 9, 10, (566,408,0): 26, 7, 9, (566,409,0): 26, 7, 9, (566,410,0): 26, 7, 9, (566,411,0): 27, 8, 10, (566,412,0): 29, 9, 11, (566,413,0): 30, 10, 12, (566,414,0): 30, 10, 12, (566,415,0): 30, 10, 12, (566,416,0): 28, 10, 10, (566,417,0): 29, 11, 11, (566,418,0): 31, 13, 13, (566,419,0): 32, 14, 14, (566,420,0): 33, 15, 15, (566,421,0): 33, 15, 15, (566,422,0): 32, 14, 14, (566,423,0): 31, 13, 13, (566,424,0): 31, 13, 13, (566,425,0): 31, 13, 13, (566,426,0): 32, 14, 14, (566,427,0): 32, 14, 14, (566,428,0): 33, 15, 15, (566,429,0): 33, 15, 15, (566,430,0): 34, 16, 16, (566,431,0): 34, 16, 16, (566,432,0): 29, 11, 9, (566,433,0): 28, 10, 8, (566,434,0): 28, 10, 10, (566,435,0): 27, 9, 9, (566,436,0): 27, 9, 9, (566,437,0): 28, 10, 10, (566,438,0): 28, 9, 11, (566,439,0): 29, 10, 12, (566,440,0): 27, 8, 12, (566,441,0): 28, 9, 13, (566,442,0): 29, 10, 14, (566,443,0): 29, 10, 14, (566,444,0): 28, 9, 15, (566,445,0): 27, 8, 14, (566,446,0): 26, 7, 13, (566,447,0): 25, 6, 10, (566,448,0): 23, 7, 8, (566,449,0): 22, 8, 8, (566,450,0): 21, 7, 7, (566,451,0): 21, 7, 7, (566,452,0): 20, 6, 6, (566,453,0): 20, 6, 6, (566,454,0): 20, 6, 6, (566,455,0): 19, 5, 5, (566,456,0): 15, 1, 1, (566,457,0): 15, 1, 1, (566,458,0): 15, 1, 1, (566,459,0): 16, 2, 2, (566,460,0): 18, 4, 4, (566,461,0): 20, 6, 6, (566,462,0): 22, 8, 8, (566,463,0): 25, 9, 10, (566,464,0): 24, 5, 7, (566,465,0): 24, 5, 7, (566,466,0): 25, 6, 8, (566,467,0): 25, 6, 8, (566,468,0): 26, 7, 9, (566,469,0): 27, 8, 10, (566,470,0): 27, 8, 10, (566,471,0): 28, 9, 11, (566,472,0): 27, 8, 10, (566,473,0): 27, 8, 10, (566,474,0): 27, 8, 10, (566,475,0): 28, 9, 11, (566,476,0): 30, 11, 13, (566,477,0): 32, 13, 15, (566,478,0): 34, 15, 17, (566,479,0): 37, 15, 17, (566,480,0): 45, 17, 14, (566,481,0): 48, 17, 14, (566,482,0): 51, 20, 17, (566,483,0): 52, 21, 18, (566,484,0): 52, 21, 18, (566,485,0): 51, 20, 17, (566,486,0): 48, 17, 14, (566,487,0): 47, 16, 13, (566,488,0): 48, 19, 15, (566,489,0): 48, 19, 15, (566,490,0): 47, 18, 14, (566,491,0): 47, 18, 14, (566,492,0): 46, 17, 13, (566,493,0): 45, 17, 13, (566,494,0): 46, 17, 13, (566,495,0): 44, 16, 12, (566,496,0): 40, 14, 13, (566,497,0): 39, 15, 13, (566,498,0): 36, 15, 12, (566,499,0): 36, 15, 12, (566,500,0): 35, 14, 13, (566,501,0): 35, 14, 13, (566,502,0): 33, 13, 12, (566,503,0): 33, 13, 12, (566,504,0): 32, 14, 14, (566,505,0): 32, 14, 14, (566,506,0): 32, 13, 15, (566,507,0): 32, 13, 15, (566,508,0): 30, 14, 15, (566,509,0): 30, 14, 15, (566,510,0): 30, 14, 17, (566,511,0): 30, 14, 17, (566,512,0): 32, 12, 14, (566,513,0): 32, 12, 14, (566,514,0): 31, 11, 13, (566,515,0): 30, 10, 12, (566,516,0): 28, 9, 13, (566,517,0): 27, 8, 12, (566,518,0): 26, 7, 13, (566,519,0): 26, 7, 13, (566,520,0): 24, 7, 13, (566,521,0): 21, 4, 10, (566,522,0): 18, 3, 10, (566,523,0): 18, 3, 10, (566,524,0): 19, 3, 13, (566,525,0): 19, 3, 13, (566,526,0): 14, 1, 10, (566,527,0): 12, 0, 8, (566,528,0): 14, 2, 12, (566,529,0): 14, 2, 12, (566,530,0): 14, 2, 12, (566,531,0): 14, 2, 12, (566,532,0): 14, 2, 12, (566,533,0): 14, 2, 12, (566,534,0): 14, 2, 12, (566,535,0): 14, 2, 12, (566,536,0): 12, 0, 10, (566,537,0): 12, 0, 10, (566,538,0): 12, 0, 10, (566,539,0): 12, 0, 10, (566,540,0): 12, 0, 10, (566,541,0): 12, 0, 10, (566,542,0): 12, 0, 10, (566,543,0): 11, 1, 10, (566,544,0): 12, 2, 11, (566,545,0): 11, 4, 12, (566,546,0): 11, 4, 12, (566,547,0): 11, 4, 12, (566,548,0): 12, 5, 13, (566,549,0): 12, 5, 13, (566,550,0): 13, 6, 14, (566,551,0): 13, 6, 14, (566,552,0): 11, 4, 12, (566,553,0): 11, 4, 12, (566,554,0): 11, 4, 12, (566,555,0): 12, 5, 13, (566,556,0): 12, 5, 13, (566,557,0): 13, 6, 14, (566,558,0): 13, 6, 14, (566,559,0): 13, 8, 15, (566,560,0): 12, 6, 16, (566,561,0): 11, 8, 17, (566,562,0): 14, 9, 16, (566,563,0): 15, 10, 17, (566,564,0): 16, 11, 18, (566,565,0): 17, 12, 19, (566,566,0): 19, 12, 19, (566,567,0): 19, 12, 19, (566,568,0): 24, 15, 20, (566,569,0): 27, 18, 23, (566,570,0): 31, 22, 27, (566,571,0): 35, 26, 31, (566,572,0): 37, 26, 30, (566,573,0): 35, 24, 28, (566,574,0): 32, 21, 25, (566,575,0): 30, 19, 23, (566,576,0): 31, 20, 24, (566,577,0): 30, 19, 23, (566,578,0): 29, 18, 22, (566,579,0): 27, 16, 20, (566,580,0): 26, 15, 19, (566,581,0): 24, 13, 17, (566,582,0): 23, 12, 16, (566,583,0): 22, 11, 15, (566,584,0): 25, 14, 18, (566,585,0): 26, 15, 19, (566,586,0): 28, 17, 21, (566,587,0): 29, 18, 22, (566,588,0): 30, 19, 23, (566,589,0): 30, 19, 23, (566,590,0): 29, 18, 22, (566,591,0): 28, 19, 22, (566,592,0): 23, 16, 23, (566,593,0): 23, 16, 23, (566,594,0): 23, 17, 21, (566,595,0): 24, 18, 20, (566,596,0): 24, 18, 20, (566,597,0): 25, 19, 19, (566,598,0): 25, 20, 17, (566,599,0): 25, 20, 17, (567,0,0): 37, 56, 70, (567,1,0): 37, 56, 70, (567,2,0): 37, 56, 70, (567,3,0): 38, 57, 71, (567,4,0): 38, 57, 71, (567,5,0): 39, 58, 72, (567,6,0): 39, 58, 72, (567,7,0): 39, 58, 72, (567,8,0): 40, 59, 73, (567,9,0): 40, 59, 73, (567,10,0): 40, 59, 73, (567,11,0): 40, 59, 73, (567,12,0): 40, 59, 73, (567,13,0): 40, 59, 73, (567,14,0): 40, 59, 73, (567,15,0): 40, 59, 73, (567,16,0): 40, 58, 72, (567,17,0): 40, 58, 72, (567,18,0): 41, 59, 73, (567,19,0): 42, 60, 74, (567,20,0): 42, 60, 74, (567,21,0): 43, 61, 75, (567,22,0): 44, 62, 76, (567,23,0): 44, 62, 76, (567,24,0): 42, 60, 74, (567,25,0): 42, 60, 74, (567,26,0): 43, 61, 75, (567,27,0): 43, 61, 75, (567,28,0): 44, 62, 76, (567,29,0): 44, 62, 76, (567,30,0): 45, 63, 77, (567,31,0): 45, 63, 75, (567,32,0): 48, 64, 77, (567,33,0): 48, 65, 75, (567,34,0): 50, 64, 75, (567,35,0): 51, 65, 76, (567,36,0): 52, 64, 76, (567,37,0): 53, 65, 77, (567,38,0): 55, 65, 77, (567,39,0): 55, 65, 77, (567,40,0): 56, 62, 76, (567,41,0): 56, 62, 76, (567,42,0): 59, 62, 77, (567,43,0): 59, 62, 77, (567,44,0): 61, 63, 78, (567,45,0): 61, 63, 78, (567,46,0): 64, 63, 79, (567,47,0): 64, 63, 79, (567,48,0): 62, 64, 77, (567,49,0): 62, 64, 77, (567,50,0): 63, 65, 78, (567,51,0): 63, 65, 78, (567,52,0): 66, 65, 79, (567,53,0): 66, 65, 79, (567,54,0): 68, 66, 80, (567,55,0): 68, 66, 80, (567,56,0): 68, 66, 80, (567,57,0): 69, 67, 81, (567,58,0): 71, 67, 82, (567,59,0): 72, 68, 83, (567,60,0): 74, 67, 83, (567,61,0): 73, 66, 82, (567,62,0): 72, 65, 81, (567,63,0): 69, 65, 80, (567,64,0): 71, 67, 82, (567,65,0): 70, 68, 82, (567,66,0): 70, 68, 82, (567,67,0): 71, 69, 83, (567,68,0): 71, 69, 83, (567,69,0): 72, 70, 84, (567,70,0): 72, 70, 84, (567,71,0): 73, 71, 85, (567,72,0): 71, 69, 83, (567,73,0): 72, 70, 84, (567,74,0): 72, 70, 84, (567,75,0): 72, 70, 84, (567,76,0): 73, 71, 85, (567,77,0): 74, 72, 86, (567,78,0): 74, 72, 86, (567,79,0): 73, 72, 86, (567,80,0): 72, 71, 87, (567,81,0): 70, 72, 87, (567,82,0): 70, 72, 87, (567,83,0): 70, 72, 87, (567,84,0): 70, 72, 87, (567,85,0): 70, 72, 87, (567,86,0): 70, 72, 87, (567,87,0): 70, 72, 87, (567,88,0): 71, 73, 88, (567,89,0): 72, 74, 89, (567,90,0): 72, 74, 89, (567,91,0): 72, 74, 89, (567,92,0): 73, 75, 90, (567,93,0): 74, 76, 91, (567,94,0): 74, 76, 91, (567,95,0): 74, 76, 91, (567,96,0): 73, 76, 93, (567,97,0): 73, 76, 93, (567,98,0): 73, 76, 95, (567,99,0): 73, 76, 95, (567,100,0): 73, 76, 95, (567,101,0): 71, 76, 95, (567,102,0): 71, 76, 96, (567,103,0): 70, 77, 96, (567,104,0): 68, 74, 96, (567,105,0): 69, 75, 97, (567,106,0): 70, 78, 99, (567,107,0): 72, 80, 101, (567,108,0): 72, 80, 103, (567,109,0): 72, 80, 103, (567,110,0): 72, 80, 103, (567,111,0): 71, 79, 100, (567,112,0): 73, 79, 101, (567,113,0): 72, 79, 98, (567,114,0): 72, 79, 98, (567,115,0): 71, 78, 97, (567,116,0): 72, 79, 98, (567,117,0): 73, 80, 99, (567,118,0): 75, 82, 101, (567,119,0): 76, 83, 102, (567,120,0): 73, 80, 99, (567,121,0): 74, 81, 100, (567,122,0): 74, 81, 100, (567,123,0): 75, 82, 101, (567,124,0): 74, 81, 100, (567,125,0): 73, 80, 99, (567,126,0): 71, 78, 97, (567,127,0): 70, 77, 96, (567,128,0): 75, 80, 102, (567,129,0): 75, 80, 102, (567,130,0): 75, 80, 102, (567,131,0): 75, 80, 102, (567,132,0): 75, 80, 102, (567,133,0): 75, 80, 102, (567,134,0): 75, 80, 102, (567,135,0): 75, 80, 102, (567,136,0): 75, 80, 102, (567,137,0): 74, 79, 101, (567,138,0): 73, 78, 100, (567,139,0): 72, 77, 99, (567,140,0): 73, 78, 100, (567,141,0): 74, 79, 101, (567,142,0): 76, 81, 103, (567,143,0): 78, 83, 105, (567,144,0): 77, 82, 104, (567,145,0): 77, 82, 104, (567,146,0): 77, 83, 107, (567,147,0): 77, 83, 107, (567,148,0): 78, 84, 110, (567,149,0): 78, 84, 110, (567,150,0): 78, 85, 113, (567,151,0): 78, 85, 113, (567,152,0): 79, 88, 119, (567,153,0): 79, 88, 119, (567,154,0): 79, 88, 121, (567,155,0): 79, 88, 121, (567,156,0): 78, 88, 123, (567,157,0): 78, 88, 123, (567,158,0): 78, 88, 124, (567,159,0): 78, 88, 123, (567,160,0): 81, 90, 123, (567,161,0): 83, 89, 121, (567,162,0): 83, 89, 121, (567,163,0): 83, 89, 121, (567,164,0): 83, 89, 121, (567,165,0): 83, 89, 121, (567,166,0): 83, 89, 121, (567,167,0): 83, 89, 121, (567,168,0): 87, 93, 125, (567,169,0): 87, 93, 125, (567,170,0): 87, 93, 125, (567,171,0): 87, 93, 125, (567,172,0): 87, 93, 125, (567,173,0): 87, 93, 125, (567,174,0): 87, 93, 125, (567,175,0): 87, 93, 127, (567,176,0): 86, 91, 129, (567,177,0): 86, 91, 131, (567,178,0): 84, 92, 131, (567,179,0): 84, 92, 131, (567,180,0): 83, 91, 130, (567,181,0): 82, 91, 130, (567,182,0): 82, 91, 130, (567,183,0): 82, 91, 130, (567,184,0): 83, 95, 133, (567,185,0): 82, 94, 132, (567,186,0): 82, 94, 132, (567,187,0): 80, 94, 131, (567,188,0): 79, 93, 130, (567,189,0): 78, 92, 129, (567,190,0): 78, 92, 129, (567,191,0): 76, 92, 128, (567,192,0): 75, 93, 131, (567,193,0): 75, 93, 131, (567,194,0): 75, 93, 133, (567,195,0): 75, 93, 133, (567,196,0): 75, 93, 133, (567,197,0): 74, 93, 133, (567,198,0): 74, 93, 135, (567,199,0): 72, 94, 135, (567,200,0): 75, 96, 139, (567,201,0): 74, 97, 139, (567,202,0): 75, 98, 140, (567,203,0): 75, 98, 140, (567,204,0): 76, 99, 143, (567,205,0): 76, 99, 143, (567,206,0): 76, 99, 143, (567,207,0): 77, 100, 144, (567,208,0): 84, 103, 146, (567,209,0): 84, 101, 145, (567,210,0): 84, 101, 145, (567,211,0): 84, 101, 145, (567,212,0): 84, 101, 147, (567,213,0): 84, 101, 147, (567,214,0): 83, 100, 146, (567,215,0): 83, 100, 146, (567,216,0): 83, 99, 148, (567,217,0): 83, 99, 148, (567,218,0): 84, 100, 151, (567,219,0): 85, 101, 152, (567,220,0): 86, 102, 153, (567,221,0): 87, 103, 154, (567,222,0): 88, 104, 156, (567,223,0): 88, 105, 159, (567,224,0): 80, 102, 159, (567,225,0): 80, 105, 162, (567,226,0): 82, 106, 166, (567,227,0): 82, 108, 169, (567,228,0): 82, 107, 173, (567,229,0): 83, 108, 175, (567,230,0): 88, 112, 184, (567,231,0): 90, 116, 190, (567,232,0): 88, 114, 188, (567,233,0): 86, 114, 187, (567,234,0): 84, 112, 186, (567,235,0): 83, 111, 184, (567,236,0): 82, 110, 183, (567,237,0): 82, 112, 184, (567,238,0): 82, 112, 184, (567,239,0): 81, 113, 186, (567,240,0): 81, 118, 196, (567,241,0): 80, 118, 199, (567,242,0): 81, 119, 200, (567,243,0): 82, 120, 201, (567,244,0): 82, 120, 201, (567,245,0): 83, 121, 202, (567,246,0): 84, 122, 205, (567,247,0): 84, 122, 203, (567,248,0): 83, 121, 202, (567,249,0): 82, 120, 201, (567,250,0): 81, 119, 200, (567,251,0): 80, 118, 199, (567,252,0): 78, 116, 197, (567,253,0): 77, 115, 196, (567,254,0): 76, 114, 197, (567,255,0): 76, 114, 197, (567,256,0): 78, 116, 197, (567,257,0): 78, 117, 196, (567,258,0): 78, 117, 196, (567,259,0): 77, 116, 193, (567,260,0): 78, 115, 193, (567,261,0): 79, 115, 191, (567,262,0): 79, 115, 189, (567,263,0): 80, 114, 185, (567,264,0): 74, 108, 179, (567,265,0): 75, 108, 175, (567,266,0): 74, 107, 174, (567,267,0): 75, 106, 171, (567,268,0): 76, 107, 171, (567,269,0): 78, 108, 170, (567,270,0): 79, 109, 171, (567,271,0): 81, 109, 172, (567,272,0): 83, 108, 172, (567,273,0): 86, 107, 172, (567,274,0): 86, 107, 172, (567,275,0): 86, 106, 169, (567,276,0): 87, 105, 169, (567,277,0): 89, 105, 167, (567,278,0): 90, 104, 165, (567,279,0): 92, 102, 163, (567,280,0): 97, 106, 165, (567,281,0): 99, 104, 162, (567,282,0): 101, 103, 160, (567,283,0): 103, 102, 159, (567,284,0): 105, 102, 157, (567,285,0): 105, 100, 154, (567,286,0): 107, 100, 154, (567,287,0): 109, 99, 151, (567,288,0): 116, 103, 149, (567,289,0): 116, 99, 143, (567,290,0): 113, 96, 140, (567,291,0): 114, 96, 138, (567,292,0): 116, 95, 136, (567,293,0): 110, 90, 127, (567,294,0): 99, 77, 113, (567,295,0): 90, 66, 98, (567,296,0): 89, 64, 93, (567,297,0): 85, 57, 82, (567,298,0): 79, 50, 72, (567,299,0): 79, 47, 68, (567,300,0): 79, 48, 66, (567,301,0): 78, 45, 62, (567,302,0): 70, 38, 53, (567,303,0): 63, 33, 45, (567,304,0): 57, 34, 44, (567,305,0): 55, 34, 41, (567,306,0): 53, 32, 41, (567,307,0): 52, 31, 38, (567,308,0): 51, 30, 37, (567,309,0): 51, 30, 37, (567,310,0): 51, 30, 37, (567,311,0): 51, 30, 37, (567,312,0): 52, 31, 38, (567,313,0): 50, 29, 36, (567,314,0): 47, 26, 33, (567,315,0): 43, 22, 29, (567,316,0): 40, 19, 26, (567,317,0): 38, 17, 22, (567,318,0): 37, 16, 23, (567,319,0): 36, 17, 23, (567,320,0): 32, 13, 19, (567,321,0): 33, 14, 20, (567,322,0): 33, 14, 20, (567,323,0): 33, 14, 20, (567,324,0): 33, 14, 20, (567,325,0): 34, 15, 21, (567,326,0): 34, 15, 21, (567,327,0): 34, 15, 21, (567,328,0): 34, 15, 21, (567,329,0): 34, 15, 21, (567,330,0): 34, 15, 21, (567,331,0): 33, 14, 20, (567,332,0): 33, 14, 20, (567,333,0): 32, 13, 19, (567,334,0): 32, 13, 19, (567,335,0): 30, 13, 19, (567,336,0): 27, 11, 21, (567,337,0): 27, 11, 21, (567,338,0): 26, 10, 20, (567,339,0): 26, 10, 20, (567,340,0): 25, 9, 19, (567,341,0): 25, 9, 19, (567,342,0): 24, 8, 18, (567,343,0): 24, 8, 18, (567,344,0): 24, 8, 18, (567,345,0): 23, 7, 17, (567,346,0): 21, 5, 15, (567,347,0): 19, 3, 13, (567,348,0): 18, 2, 12, (567,349,0): 18, 2, 12, (567,350,0): 18, 2, 12, (567,351,0): 16, 3, 12, (567,352,0): 14, 3, 11, (567,353,0): 14, 3, 11, (567,354,0): 14, 3, 11, (567,355,0): 14, 3, 11, (567,356,0): 14, 3, 11, (567,357,0): 14, 3, 11, (567,358,0): 14, 3, 11, (567,359,0): 14, 3, 11, (567,360,0): 14, 3, 11, (567,361,0): 14, 3, 11, (567,362,0): 14, 3, 11, (567,363,0): 14, 3, 11, (567,364,0): 14, 3, 11, (567,365,0): 14, 3, 11, (567,366,0): 14, 3, 11, (567,367,0): 13, 3, 11, (567,368,0): 11, 1, 10, (567,369,0): 9, 2, 10, (567,370,0): 9, 2, 10, (567,371,0): 9, 2, 10, (567,372,0): 9, 2, 10, (567,373,0): 9, 2, 10, (567,374,0): 9, 2, 10, (567,375,0): 9, 2, 10, (567,376,0): 11, 4, 12, (567,377,0): 11, 4, 12, (567,378,0): 11, 4, 12, (567,379,0): 11, 4, 12, (567,380,0): 10, 3, 11, (567,381,0): 10, 3, 11, (567,382,0): 10, 3, 11, (567,383,0): 10, 3, 11, (567,384,0): 11, 4, 11, (567,385,0): 11, 4, 11, (567,386,0): 11, 4, 11, (567,387,0): 12, 5, 12, (567,388,0): 14, 5, 10, (567,389,0): 15, 6, 11, (567,390,0): 15, 6, 9, (567,391,0): 15, 6, 9, (567,392,0): 16, 5, 9, (567,393,0): 17, 6, 10, (567,394,0): 21, 9, 11, (567,395,0): 22, 10, 12, (567,396,0): 23, 11, 11, (567,397,0): 22, 10, 10, (567,398,0): 23, 9, 9, (567,399,0): 22, 8, 8, (567,400,0): 22, 10, 10, (567,401,0): 22, 10, 10, (567,402,0): 24, 10, 10, (567,403,0): 24, 10, 10, (567,404,0): 24, 10, 10, (567,405,0): 24, 10, 10, (567,406,0): 25, 9, 10, (567,407,0): 25, 9, 10, (567,408,0): 26, 7, 9, (567,409,0): 26, 7, 9, (567,410,0): 27, 8, 10, (567,411,0): 28, 9, 11, (567,412,0): 30, 10, 12, (567,413,0): 31, 11, 13, (567,414,0): 31, 11, 13, (567,415,0): 31, 11, 13, (567,416,0): 29, 11, 11, (567,417,0): 30, 12, 12, (567,418,0): 31, 13, 13, (567,419,0): 32, 14, 14, (567,420,0): 33, 15, 15, (567,421,0): 33, 15, 15, (567,422,0): 32, 14, 14, (567,423,0): 31, 13, 13, (567,424,0): 31, 13, 13, (567,425,0): 32, 14, 14, (567,426,0): 32, 14, 14, (567,427,0): 33, 15, 15, (567,428,0): 33, 15, 15, (567,429,0): 34, 16, 16, (567,430,0): 34, 16, 16, (567,431,0): 34, 16, 16, (567,432,0): 28, 10, 8, (567,433,0): 28, 10, 8, (567,434,0): 28, 10, 10, (567,435,0): 28, 10, 10, (567,436,0): 28, 10, 10, (567,437,0): 28, 10, 10, (567,438,0): 28, 9, 11, (567,439,0): 28, 9, 11, (567,440,0): 28, 9, 13, (567,441,0): 29, 10, 14, (567,442,0): 30, 11, 15, (567,443,0): 30, 11, 15, (567,444,0): 29, 10, 16, (567,445,0): 28, 9, 15, (567,446,0): 26, 7, 13, (567,447,0): 23, 6, 12, (567,448,0): 22, 7, 10, (567,449,0): 22, 8, 8, (567,450,0): 22, 8, 8, (567,451,0): 21, 7, 7, (567,452,0): 21, 7, 7, (567,453,0): 20, 6, 6, (567,454,0): 20, 6, 6, (567,455,0): 19, 5, 5, (567,456,0): 15, 1, 1, (567,457,0): 15, 1, 1, (567,458,0): 15, 1, 1, (567,459,0): 16, 2, 2, (567,460,0): 18, 4, 4, (567,461,0): 20, 6, 6, (567,462,0): 22, 8, 8, (567,463,0): 24, 10, 10, (567,464,0): 21, 5, 6, (567,465,0): 24, 5, 7, (567,466,0): 24, 5, 7, (567,467,0): 25, 6, 8, (567,468,0): 26, 7, 9, (567,469,0): 27, 8, 10, (567,470,0): 27, 8, 10, (567,471,0): 28, 9, 11, (567,472,0): 27, 8, 10, (567,473,0): 27, 8, 10, (567,474,0): 27, 8, 10, (567,475,0): 28, 9, 11, (567,476,0): 30, 11, 13, (567,477,0): 32, 13, 15, (567,478,0): 34, 15, 17, (567,479,0): 36, 16, 17, (567,480,0): 45, 17, 14, (567,481,0): 47, 18, 14, (567,482,0): 51, 20, 17, (567,483,0): 51, 22, 18, (567,484,0): 52, 21, 18, (567,485,0): 51, 20, 17, (567,486,0): 48, 17, 14, (567,487,0): 47, 16, 13, (567,488,0): 48, 19, 15, (567,489,0): 48, 19, 15, (567,490,0): 48, 19, 15, (567,491,0): 47, 18, 14, (567,492,0): 47, 18, 14, (567,493,0): 46, 17, 13, (567,494,0): 46, 17, 13, (567,495,0): 44, 16, 12, (567,496,0): 40, 14, 13, (567,497,0): 38, 14, 12, (567,498,0): 36, 15, 12, (567,499,0): 35, 14, 11, (567,500,0): 35, 14, 13, (567,501,0): 34, 13, 12, (567,502,0): 33, 13, 12, (567,503,0): 33, 13, 12, (567,504,0): 32, 14, 14, (567,505,0): 32, 14, 14, (567,506,0): 32, 13, 15, (567,507,0): 32, 13, 15, (567,508,0): 30, 14, 15, (567,509,0): 30, 14, 15, (567,510,0): 30, 14, 17, (567,511,0): 30, 14, 17, (567,512,0): 32, 12, 14, (567,513,0): 32, 12, 14, (567,514,0): 31, 11, 13, (567,515,0): 30, 10, 12, (567,516,0): 28, 9, 13, (567,517,0): 27, 8, 12, (567,518,0): 26, 7, 13, (567,519,0): 26, 7, 13, (567,520,0): 24, 7, 13, (567,521,0): 21, 4, 10, (567,522,0): 17, 2, 9, (567,523,0): 17, 2, 9, (567,524,0): 19, 3, 13, (567,525,0): 19, 3, 13, (567,526,0): 14, 1, 10, (567,527,0): 11, 0, 7, (567,528,0): 14, 2, 12, (567,529,0): 14, 2, 12, (567,530,0): 14, 2, 12, (567,531,0): 14, 2, 12, (567,532,0): 14, 2, 12, (567,533,0): 14, 2, 12, (567,534,0): 14, 2, 12, (567,535,0): 14, 2, 12, (567,536,0): 12, 0, 10, (567,537,0): 12, 0, 10, (567,538,0): 12, 0, 10, (567,539,0): 12, 0, 10, (567,540,0): 12, 0, 10, (567,541,0): 12, 0, 10, (567,542,0): 12, 0, 10, (567,543,0): 11, 1, 10, (567,544,0): 12, 2, 11, (567,545,0): 11, 4, 12, (567,546,0): 11, 4, 12, (567,547,0): 12, 5, 13, (567,548,0): 12, 5, 13, (567,549,0): 13, 6, 14, (567,550,0): 13, 6, 14, (567,551,0): 13, 6, 14, (567,552,0): 12, 5, 13, (567,553,0): 12, 5, 13, (567,554,0): 12, 5, 13, (567,555,0): 13, 6, 14, (567,556,0): 13, 6, 14, (567,557,0): 14, 7, 15, (567,558,0): 14, 7, 15, (567,559,0): 14, 9, 16, (567,560,0): 13, 7, 17, (567,561,0): 11, 8, 17, (567,562,0): 14, 9, 16, (567,563,0): 15, 10, 17, (567,564,0): 16, 11, 18, (567,565,0): 17, 12, 19, (567,566,0): 19, 12, 19, (567,567,0): 19, 12, 19, (567,568,0): 23, 14, 19, (567,569,0): 26, 17, 22, (567,570,0): 31, 22, 27, (567,571,0): 35, 26, 31, (567,572,0): 37, 26, 30, (567,573,0): 35, 24, 28, (567,574,0): 32, 21, 25, (567,575,0): 30, 19, 23, (567,576,0): 31, 20, 24, (567,577,0): 30, 19, 23, (567,578,0): 28, 17, 21, (567,579,0): 27, 16, 20, (567,580,0): 25, 14, 18, (567,581,0): 23, 12, 16, (567,582,0): 21, 10, 14, (567,583,0): 21, 10, 14, (567,584,0): 25, 14, 18, (567,585,0): 26, 15, 19, (567,586,0): 28, 17, 21, (567,587,0): 29, 18, 22, (567,588,0): 30, 19, 23, (567,589,0): 30, 19, 23, (567,590,0): 30, 19, 23, (567,591,0): 29, 18, 22, (567,592,0): 25, 15, 23, (567,593,0): 25, 15, 23, (567,594,0): 25, 16, 21, (567,595,0): 26, 17, 20, (567,596,0): 26, 17, 20, (567,597,0): 27, 18, 19, (567,598,0): 27, 19, 17, (567,599,0): 27, 19, 17, (568,0,0): 38, 57, 71, (568,1,0): 38, 57, 71, (568,2,0): 38, 57, 71, (568,3,0): 38, 57, 71, (568,4,0): 38, 57, 71, (568,5,0): 38, 57, 71, (568,6,0): 38, 57, 71, (568,7,0): 38, 57, 71, (568,8,0): 40, 59, 73, (568,9,0): 40, 59, 73, (568,10,0): 40, 59, 73, (568,11,0): 40, 59, 73, (568,12,0): 40, 59, 73, (568,13,0): 40, 59, 73, (568,14,0): 40, 59, 73, (568,15,0): 40, 59, 73, (568,16,0): 43, 61, 75, (568,17,0): 43, 61, 75, (568,18,0): 43, 61, 75, (568,19,0): 43, 61, 75, (568,20,0): 43, 61, 75, (568,21,0): 43, 61, 75, (568,22,0): 43, 61, 75, (568,23,0): 43, 61, 75, (568,24,0): 44, 62, 76, (568,25,0): 44, 62, 76, (568,26,0): 44, 62, 76, (568,27,0): 44, 62, 76, (568,28,0): 44, 62, 76, (568,29,0): 44, 62, 76, (568,30,0): 44, 62, 76, (568,31,0): 44, 62, 74, (568,32,0): 48, 64, 77, (568,33,0): 48, 65, 75, (568,34,0): 50, 64, 75, (568,35,0): 50, 64, 75, (568,36,0): 50, 62, 74, (568,37,0): 50, 62, 74, (568,38,0): 52, 62, 74, (568,39,0): 52, 62, 74, (568,40,0): 56, 62, 76, (568,41,0): 56, 62, 76, (568,42,0): 59, 62, 77, (568,43,0): 59, 62, 77, (568,44,0): 61, 63, 78, (568,45,0): 61, 63, 78, (568,46,0): 64, 63, 79, (568,47,0): 64, 63, 79, (568,48,0): 63, 65, 78, (568,49,0): 64, 66, 79, (568,50,0): 64, 66, 79, (568,51,0): 65, 67, 80, (568,52,0): 67, 66, 80, (568,53,0): 68, 67, 81, (568,54,0): 69, 67, 81, (568,55,0): 69, 67, 81, (568,56,0): 68, 66, 80, (568,57,0): 68, 66, 80, (568,58,0): 69, 65, 80, (568,59,0): 69, 65, 80, (568,60,0): 71, 64, 80, (568,61,0): 71, 64, 80, (568,62,0): 71, 64, 80, (568,63,0): 69, 65, 80, (568,64,0): 70, 66, 81, (568,65,0): 69, 67, 81, (568,66,0): 69, 67, 81, (568,67,0): 69, 67, 81, (568,68,0): 69, 67, 81, (568,69,0): 69, 67, 81, (568,70,0): 69, 67, 81, (568,71,0): 69, 67, 81, (568,72,0): 69, 67, 81, (568,73,0): 70, 68, 82, (568,74,0): 70, 68, 82, (568,75,0): 71, 69, 83, (568,76,0): 71, 69, 83, (568,77,0): 72, 70, 84, (568,78,0): 72, 70, 84, (568,79,0): 71, 70, 84, (568,80,0): 77, 76, 92, (568,81,0): 73, 75, 90, (568,82,0): 70, 72, 87, (568,83,0): 68, 70, 85, (568,84,0): 67, 69, 84, (568,85,0): 68, 70, 85, (568,86,0): 71, 73, 88, (568,87,0): 73, 75, 90, (568,88,0): 70, 72, 87, (568,89,0): 70, 72, 87, (568,90,0): 71, 73, 88, (568,91,0): 72, 74, 89, (568,92,0): 73, 75, 90, (568,93,0): 74, 76, 91, (568,94,0): 75, 77, 92, (568,95,0): 75, 77, 92, (568,96,0): 71, 74, 91, (568,97,0): 71, 74, 91, (568,98,0): 69, 74, 93, (568,99,0): 69, 74, 93, (568,100,0): 69, 74, 93, (568,101,0): 69, 74, 93, (568,102,0): 69, 74, 94, (568,103,0): 68, 75, 94, (568,104,0): 68, 74, 96, (568,105,0): 68, 76, 97, (568,106,0): 68, 76, 97, (568,107,0): 69, 77, 98, (568,108,0): 67, 78, 100, (568,109,0): 68, 79, 101, (568,110,0): 68, 79, 101, (568,111,0): 70, 78, 99, (568,112,0): 73, 79, 101, (568,113,0): 73, 80, 99, (568,114,0): 73, 80, 99, (568,115,0): 73, 80, 99, (568,116,0): 73, 80, 99, (568,117,0): 73, 80, 99, (568,118,0): 73, 80, 99, (568,119,0): 73, 80, 99, (568,120,0): 75, 82, 101, (568,121,0): 74, 81, 100, (568,122,0): 73, 80, 99, (568,123,0): 72, 79, 98, (568,124,0): 71, 78, 97, (568,125,0): 72, 79, 98, (568,126,0): 73, 80, 99, (568,127,0): 73, 80, 99, (568,128,0): 74, 79, 99, (568,129,0): 74, 79, 99, (568,130,0): 74, 79, 99, (568,131,0): 74, 79, 99, (568,132,0): 74, 79, 99, (568,133,0): 74, 79, 99, (568,134,0): 74, 79, 99, (568,135,0): 74, 79, 99, (568,136,0): 72, 77, 97, (568,137,0): 72, 77, 97, (568,138,0): 73, 78, 98, (568,139,0): 73, 78, 98, (568,140,0): 74, 79, 99, (568,141,0): 75, 80, 100, (568,142,0): 76, 81, 101, (568,143,0): 76, 81, 101, (568,144,0): 73, 79, 101, (568,145,0): 74, 80, 102, (568,146,0): 76, 82, 106, (568,147,0): 78, 84, 108, (568,148,0): 78, 85, 111, (568,149,0): 79, 86, 112, (568,150,0): 79, 86, 114, (568,151,0): 79, 86, 114, (568,152,0): 76, 85, 116, (568,153,0): 76, 85, 116, (568,154,0): 75, 86, 118, (568,155,0): 76, 87, 119, (568,156,0): 77, 87, 122, (568,157,0): 77, 87, 122, (568,158,0): 75, 88, 123, (568,159,0): 78, 88, 123, (568,160,0): 79, 88, 121, (568,161,0): 81, 87, 119, (568,162,0): 81, 87, 119, (568,163,0): 82, 88, 120, (568,164,0): 83, 89, 121, (568,165,0): 83, 89, 121, (568,166,0): 83, 89, 121, (568,167,0): 84, 90, 122, (568,168,0): 84, 90, 122, (568,169,0): 84, 90, 122, (568,170,0): 84, 90, 122, (568,171,0): 84, 90, 122, (568,172,0): 84, 90, 122, (568,173,0): 84, 90, 122, (568,174,0): 84, 90, 122, (568,175,0): 84, 90, 124, (568,176,0): 89, 93, 131, (568,177,0): 89, 92, 133, (568,178,0): 89, 92, 133, (568,179,0): 89, 92, 133, (568,180,0): 88, 93, 133, (568,181,0): 88, 93, 133, (568,182,0): 88, 93, 133, (568,183,0): 86, 94, 133, (568,184,0): 84, 92, 131, (568,185,0): 84, 92, 131, (568,186,0): 82, 91, 130, (568,187,0): 82, 91, 130, (568,188,0): 82, 91, 130, (568,189,0): 80, 92, 130, (568,190,0): 79, 91, 129, (568,191,0): 79, 91, 129, (568,192,0): 81, 95, 134, (568,193,0): 80, 95, 134, (568,194,0): 79, 94, 135, (568,195,0): 79, 94, 135, (568,196,0): 78, 93, 134, (568,197,0): 78, 93, 134, (568,198,0): 77, 92, 135, (568,199,0): 75, 92, 135, (568,200,0): 78, 95, 139, (568,201,0): 77, 96, 139, (568,202,0): 77, 96, 139, (568,203,0): 76, 97, 140, (568,204,0): 77, 98, 143, (568,205,0): 77, 98, 143, (568,206,0): 77, 98, 143, (568,207,0): 78, 99, 144, (568,208,0): 81, 99, 145, (568,209,0): 81, 99, 145, (568,210,0): 81, 99, 145, (568,211,0): 81, 99, 145, (568,212,0): 81, 99, 145, (568,213,0): 81, 99, 145, (568,214,0): 81, 99, 147, (568,215,0): 81, 99, 147, (568,216,0): 86, 104, 154, (568,217,0): 86, 104, 154, (568,218,0): 85, 102, 154, (568,219,0): 85, 102, 154, (568,220,0): 84, 101, 153, (568,221,0): 83, 100, 152, (568,222,0): 82, 99, 151, (568,223,0): 80, 100, 153, (568,224,0): 77, 102, 158, (568,225,0): 77, 103, 162, (568,226,0): 78, 104, 165, (568,227,0): 78, 106, 169, (568,228,0): 79, 107, 172, (568,229,0): 81, 108, 175, (568,230,0): 82, 109, 180, (568,231,0): 82, 110, 183, (568,232,0): 83, 111, 185, (568,233,0): 82, 112, 185, (568,234,0): 81, 110, 186, (568,235,0): 81, 111, 184, (568,236,0): 81, 111, 184, (568,237,0): 81, 114, 185, (568,238,0): 82, 115, 186, (568,239,0): 82, 116, 190, (568,240,0): 75, 114, 193, (568,241,0): 76, 117, 199, (568,242,0): 78, 119, 201, (568,243,0): 78, 119, 201, (568,244,0): 76, 117, 199, (568,245,0): 77, 118, 200, (568,246,0): 80, 120, 205, (568,247,0): 84, 125, 207, (568,248,0): 75, 116, 198, (568,249,0): 75, 116, 198, (568,250,0): 75, 116, 198, (568,251,0): 75, 116, 198, (568,252,0): 75, 116, 198, (568,253,0): 75, 116, 198, (568,254,0): 75, 116, 198, (568,255,0): 75, 116, 198, (568,256,0): 75, 116, 196, (568,257,0): 74, 115, 195, (568,258,0): 74, 115, 195, (568,259,0): 76, 115, 194, (568,260,0): 75, 114, 191, (568,261,0): 75, 113, 188, (568,262,0): 75, 113, 186, (568,263,0): 76, 113, 183, (568,264,0): 74, 108, 179, (568,265,0): 74, 107, 174, (568,266,0): 73, 106, 173, (568,267,0): 74, 105, 170, (568,268,0): 76, 106, 170, (568,269,0): 79, 107, 170, (568,270,0): 83, 108, 172, (568,271,0): 84, 109, 173, (568,272,0): 78, 102, 166, (568,273,0): 84, 105, 170, (568,274,0): 89, 108, 174, (568,275,0): 90, 108, 172, (568,276,0): 91, 105, 168, (568,277,0): 94, 104, 166, (568,278,0): 97, 106, 165, (568,279,0): 103, 108, 166, (568,280,0): 104, 105, 162, (568,281,0): 107, 104, 161, (568,282,0): 110, 102, 159, (568,283,0): 111, 102, 157, (568,284,0): 112, 101, 157, (568,285,0): 114, 101, 155, (568,286,0): 115, 100, 155, (568,287,0): 118, 100, 152, (568,288,0): 123, 101, 147, (568,289,0): 119, 96, 138, (568,290,0): 112, 89, 131, (568,291,0): 108, 83, 123, (568,292,0): 102, 77, 116, (568,293,0): 93, 69, 103, (568,294,0): 83, 58, 88, (568,295,0): 76, 52, 78, (568,296,0): 77, 51, 76, (568,297,0): 76, 51, 72, (568,298,0): 77, 50, 69, (568,299,0): 75, 48, 63, (568,300,0): 71, 45, 58, (568,301,0): 66, 40, 51, (568,302,0): 62, 36, 47, (568,303,0): 59, 33, 42, (568,304,0): 56, 35, 42, (568,305,0): 52, 33, 37, (568,306,0): 50, 31, 37, (568,307,0): 50, 31, 37, (568,308,0): 51, 32, 38, (568,309,0): 51, 32, 38, (568,310,0): 49, 30, 36, (568,311,0): 46, 27, 33, (568,312,0): 43, 24, 30, (568,313,0): 43, 24, 30, (568,314,0): 41, 22, 28, (568,315,0): 38, 19, 25, (568,316,0): 36, 17, 23, (568,317,0): 34, 15, 21, (568,318,0): 32, 12, 21, (568,319,0): 31, 12, 18, (568,320,0): 32, 13, 19, (568,321,0): 30, 13, 19, (568,322,0): 31, 14, 20, (568,323,0): 32, 15, 21, (568,324,0): 33, 16, 22, (568,325,0): 34, 17, 23, (568,326,0): 34, 17, 23, (568,327,0): 34, 17, 23, (568,328,0): 35, 18, 24, (568,329,0): 33, 16, 22, (568,330,0): 30, 13, 19, (568,331,0): 28, 11, 17, (568,332,0): 26, 9, 15, (568,333,0): 26, 9, 15, (568,334,0): 27, 10, 16, (568,335,0): 28, 11, 17, (568,336,0): 25, 9, 19, (568,337,0): 23, 10, 19, (568,338,0): 22, 9, 18, (568,339,0): 22, 9, 18, (568,340,0): 21, 8, 17, (568,341,0): 21, 8, 17, (568,342,0): 21, 8, 17, (568,343,0): 20, 7, 16, (568,344,0): 17, 4, 13, (568,345,0): 17, 4, 13, (568,346,0): 17, 4, 13, (568,347,0): 16, 3, 12, (568,348,0): 16, 3, 12, (568,349,0): 15, 2, 11, (568,350,0): 15, 2, 11, (568,351,0): 15, 2, 11, (568,352,0): 16, 5, 13, (568,353,0): 15, 4, 12, (568,354,0): 15, 4, 12, (568,355,0): 14, 3, 11, (568,356,0): 13, 2, 10, (568,357,0): 12, 1, 9, (568,358,0): 12, 1, 9, (568,359,0): 11, 0, 8, (568,360,0): 14, 3, 11, (568,361,0): 14, 3, 11, (568,362,0): 14, 3, 11, (568,363,0): 14, 3, 11, (568,364,0): 14, 3, 11, (568,365,0): 14, 3, 11, (568,366,0): 14, 3, 11, (568,367,0): 13, 3, 11, (568,368,0): 12, 2, 11, (568,369,0): 10, 3, 11, (568,370,0): 10, 3, 11, (568,371,0): 9, 2, 10, (568,372,0): 9, 2, 10, (568,373,0): 8, 1, 9, (568,374,0): 8, 1, 9, (568,375,0): 8, 1, 9, (568,376,0): 9, 2, 10, (568,377,0): 9, 2, 10, (568,378,0): 9, 2, 10, (568,379,0): 9, 2, 10, (568,380,0): 9, 2, 10, (568,381,0): 9, 2, 10, (568,382,0): 9, 2, 10, (568,383,0): 9, 2, 10, (568,384,0): 8, 1, 8, (568,385,0): 8, 1, 8, (568,386,0): 9, 2, 9, (568,387,0): 10, 3, 10, (568,388,0): 13, 4, 9, (568,389,0): 14, 5, 10, (568,390,0): 15, 6, 9, (568,391,0): 15, 6, 9, (568,392,0): 20, 9, 13, (568,393,0): 20, 9, 13, (568,394,0): 21, 9, 11, (568,395,0): 21, 9, 11, (568,396,0): 21, 9, 9, (568,397,0): 21, 9, 9, (568,398,0): 23, 9, 9, (568,399,0): 23, 9, 9, (568,400,0): 22, 10, 10, (568,401,0): 22, 10, 10, (568,402,0): 24, 10, 10, (568,403,0): 24, 10, 10, (568,404,0): 24, 10, 10, (568,405,0): 24, 10, 10, (568,406,0): 25, 9, 10, (568,407,0): 25, 9, 10, (568,408,0): 27, 8, 10, (568,409,0): 28, 9, 11, (568,410,0): 29, 10, 12, (568,411,0): 30, 11, 13, (568,412,0): 32, 12, 14, (568,413,0): 33, 13, 15, (568,414,0): 33, 13, 15, (568,415,0): 34, 14, 16, (568,416,0): 33, 13, 14, (568,417,0): 34, 14, 13, (568,418,0): 34, 14, 13, (568,419,0): 34, 14, 13, (568,420,0): 34, 14, 13, (568,421,0): 35, 15, 14, (568,422,0): 35, 15, 14, (568,423,0): 35, 15, 14, (568,424,0): 39, 19, 18, (568,425,0): 38, 18, 17, (568,426,0): 38, 18, 17, (568,427,0): 37, 17, 16, (568,428,0): 37, 17, 16, (568,429,0): 36, 16, 15, (568,430,0): 36, 16, 15, (568,431,0): 35, 17, 15, (568,432,0): 32, 14, 12, (568,433,0): 29, 14, 11, (568,434,0): 28, 12, 12, (568,435,0): 27, 11, 11, (568,436,0): 27, 11, 11, (568,437,0): 27, 11, 11, (568,438,0): 28, 12, 13, (568,439,0): 29, 13, 14, (568,440,0): 25, 9, 12, (568,441,0): 25, 9, 12, (568,442,0): 24, 8, 11, (568,443,0): 24, 8, 11, (568,444,0): 23, 6, 12, (568,445,0): 23, 6, 12, (568,446,0): 22, 5, 11, (568,447,0): 22, 5, 11, (568,448,0): 21, 6, 9, (568,449,0): 18, 6, 8, (568,450,0): 18, 6, 8, (568,451,0): 18, 6, 8, (568,452,0): 17, 5, 7, (568,453,0): 17, 5, 7, (568,454,0): 16, 4, 6, (568,455,0): 16, 4, 6, (568,456,0): 15, 3, 5, (568,457,0): 16, 4, 6, (568,458,0): 16, 4, 6, (568,459,0): 14, 2, 4, (568,460,0): 11, 0, 1, (568,461,0): 12, 0, 2, (568,462,0): 15, 3, 5, (568,463,0): 20, 5, 8, (568,464,0): 18, 2, 3, (568,465,0): 18, 2, 3, (568,466,0): 19, 3, 4, (568,467,0): 20, 4, 5, (568,468,0): 21, 5, 6, (568,469,0): 22, 6, 7, (568,470,0): 23, 7, 8, (568,471,0): 23, 7, 8, (568,472,0): 25, 9, 10, (568,473,0): 24, 8, 9, (568,474,0): 24, 8, 9, (568,475,0): 23, 7, 8, (568,476,0): 24, 8, 9, (568,477,0): 25, 9, 10, (568,478,0): 27, 11, 12, (568,479,0): 31, 11, 12, (568,480,0): 39, 14, 10, (568,481,0): 42, 14, 10, (568,482,0): 46, 17, 13, (568,483,0): 47, 19, 15, (568,484,0): 50, 21, 17, (568,485,0): 51, 22, 18, (568,486,0): 51, 22, 18, (568,487,0): 51, 22, 18, (568,488,0): 45, 16, 12, (568,489,0): 46, 17, 13, (568,490,0): 47, 18, 14, (568,491,0): 47, 18, 14, (568,492,0): 47, 18, 14, (568,493,0): 46, 17, 13, (568,494,0): 44, 15, 11, (568,495,0): 43, 15, 11, (568,496,0): 41, 15, 14, (568,497,0): 39, 15, 13, (568,498,0): 36, 15, 12, (568,499,0): 34, 13, 10, (568,500,0): 33, 12, 11, (568,501,0): 31, 10, 9, (568,502,0): 29, 9, 8, (568,503,0): 28, 8, 7, (568,504,0): 30, 12, 12, (568,505,0): 30, 12, 12, (568,506,0): 30, 11, 13, (568,507,0): 30, 11, 13, (568,508,0): 28, 12, 13, (568,509,0): 28, 12, 13, (568,510,0): 28, 12, 15, (568,511,0): 28, 12, 15, (568,512,0): 28, 8, 10, (568,513,0): 28, 8, 10, (568,514,0): 27, 7, 9, (568,515,0): 27, 7, 9, (568,516,0): 25, 6, 10, (568,517,0): 25, 6, 10, (568,518,0): 24, 5, 11, (568,519,0): 24, 5, 11, (568,520,0): 22, 5, 11, (568,521,0): 22, 5, 11, (568,522,0): 20, 5, 12, (568,523,0): 20, 5, 12, (568,524,0): 19, 3, 13, (568,525,0): 19, 3, 13, (568,526,0): 16, 3, 12, (568,527,0): 16, 3, 12, (568,528,0): 15, 3, 13, (568,529,0): 15, 3, 13, (568,530,0): 14, 2, 12, (568,531,0): 14, 2, 12, (568,532,0): 13, 1, 11, (568,533,0): 13, 1, 11, (568,534,0): 12, 0, 10, (568,535,0): 12, 0, 10, (568,536,0): 12, 0, 10, (568,537,0): 12, 0, 10, (568,538,0): 12, 0, 10, (568,539,0): 12, 0, 10, (568,540,0): 12, 0, 10, (568,541,0): 12, 0, 10, (568,542,0): 12, 0, 10, (568,543,0): 11, 1, 10, (568,544,0): 14, 4, 13, (568,545,0): 12, 5, 13, (568,546,0): 12, 5, 13, (568,547,0): 12, 5, 13, (568,548,0): 12, 5, 13, (568,549,0): 12, 5, 13, (568,550,0): 12, 5, 13, (568,551,0): 12, 5, 13, (568,552,0): 12, 5, 13, (568,553,0): 12, 5, 13, (568,554,0): 13, 6, 14, (568,555,0): 13, 6, 14, (568,556,0): 14, 7, 15, (568,557,0): 14, 7, 15, (568,558,0): 15, 8, 16, (568,559,0): 14, 9, 16, (568,560,0): 12, 6, 16, (568,561,0): 10, 7, 16, (568,562,0): 11, 6, 13, (568,563,0): 11, 6, 13, (568,564,0): 11, 6, 13, (568,565,0): 13, 8, 15, (568,566,0): 15, 8, 15, (568,567,0): 16, 9, 16, (568,568,0): 26, 17, 22, (568,569,0): 27, 18, 23, (568,570,0): 29, 20, 25, (568,571,0): 31, 22, 27, (568,572,0): 33, 22, 26, (568,573,0): 33, 22, 26, (568,574,0): 33, 22, 26, (568,575,0): 33, 22, 26, (568,576,0): 30, 19, 23, (568,577,0): 29, 18, 22, (568,578,0): 29, 18, 22, (568,579,0): 28, 17, 21, (568,580,0): 27, 16, 20, (568,581,0): 26, 15, 19, (568,582,0): 25, 14, 18, (568,583,0): 24, 13, 17, (568,584,0): 26, 15, 19, (568,585,0): 27, 16, 20, (568,586,0): 27, 16, 20, (568,587,0): 28, 17, 21, (568,588,0): 29, 18, 22, (568,589,0): 30, 19, 23, (568,590,0): 30, 19, 23, (568,591,0): 31, 20, 24, (568,592,0): 29, 18, 26, (568,593,0): 28, 17, 25, (568,594,0): 28, 17, 23, (568,595,0): 27, 16, 20, (568,596,0): 27, 16, 20, (568,597,0): 26, 16, 17, (568,598,0): 26, 16, 15, (568,599,0): 26, 16, 15, (569,0,0): 38, 57, 71, (569,1,0): 38, 57, 71, (569,2,0): 38, 57, 71, (569,3,0): 38, 57, 71, (569,4,0): 38, 57, 71, (569,5,0): 38, 57, 71, (569,6,0): 38, 57, 71, (569,7,0): 38, 57, 71, (569,8,0): 40, 59, 73, (569,9,0): 40, 59, 73, (569,10,0): 40, 59, 73, (569,11,0): 40, 59, 73, (569,12,0): 40, 59, 73, (569,13,0): 40, 59, 73, (569,14,0): 40, 59, 73, (569,15,0): 40, 59, 73, (569,16,0): 43, 61, 75, (569,17,0): 43, 61, 75, (569,18,0): 43, 61, 75, (569,19,0): 43, 61, 75, (569,20,0): 43, 61, 75, (569,21,0): 43, 61, 75, (569,22,0): 43, 61, 75, (569,23,0): 43, 61, 75, (569,24,0): 44, 62, 76, (569,25,0): 44, 62, 76, (569,26,0): 44, 62, 76, (569,27,0): 44, 62, 76, (569,28,0): 44, 62, 76, (569,29,0): 44, 62, 76, (569,30,0): 44, 62, 76, (569,31,0): 44, 62, 74, (569,32,0): 48, 64, 77, (569,33,0): 48, 65, 75, (569,34,0): 49, 63, 74, (569,35,0): 49, 63, 74, (569,36,0): 50, 62, 74, (569,37,0): 50, 62, 74, (569,38,0): 52, 62, 74, (569,39,0): 52, 62, 74, (569,40,0): 56, 62, 76, (569,41,0): 56, 62, 76, (569,42,0): 59, 62, 77, (569,43,0): 59, 62, 77, (569,44,0): 61, 63, 78, (569,45,0): 61, 63, 78, (569,46,0): 64, 63, 79, (569,47,0): 64, 63, 79, (569,48,0): 63, 65, 78, (569,49,0): 64, 66, 79, (569,50,0): 64, 66, 79, (569,51,0): 64, 66, 79, (569,52,0): 67, 66, 80, (569,53,0): 67, 66, 80, (569,54,0): 69, 67, 81, (569,55,0): 69, 67, 81, (569,56,0): 68, 66, 80, (569,57,0): 68, 66, 80, (569,58,0): 69, 65, 80, (569,59,0): 69, 65, 80, (569,60,0): 71, 64, 80, (569,61,0): 71, 64, 80, (569,62,0): 71, 64, 80, (569,63,0): 69, 65, 80, (569,64,0): 70, 66, 81, (569,65,0): 69, 67, 81, (569,66,0): 69, 67, 81, (569,67,0): 69, 67, 81, (569,68,0): 69, 67, 81, (569,69,0): 69, 67, 81, (569,70,0): 69, 67, 81, (569,71,0): 69, 67, 81, (569,72,0): 69, 67, 81, (569,73,0): 70, 68, 82, (569,74,0): 70, 68, 82, (569,75,0): 70, 68, 82, (569,76,0): 71, 69, 83, (569,77,0): 71, 69, 83, (569,78,0): 72, 70, 84, (569,79,0): 71, 70, 84, (569,80,0): 76, 75, 91, (569,81,0): 72, 74, 89, (569,82,0): 69, 71, 86, (569,83,0): 67, 69, 84, (569,84,0): 66, 68, 83, (569,85,0): 67, 69, 84, (569,86,0): 69, 71, 86, (569,87,0): 71, 73, 88, (569,88,0): 69, 71, 86, (569,89,0): 70, 72, 87, (569,90,0): 71, 73, 88, (569,91,0): 72, 74, 89, (569,92,0): 73, 75, 90, (569,93,0): 74, 76, 91, (569,94,0): 75, 77, 92, (569,95,0): 75, 77, 92, (569,96,0): 71, 74, 91, (569,97,0): 71, 74, 91, (569,98,0): 69, 74, 93, (569,99,0): 69, 74, 93, (569,100,0): 69, 74, 93, (569,101,0): 68, 75, 93, (569,102,0): 68, 75, 94, (569,103,0): 68, 75, 94, (569,104,0): 67, 75, 96, (569,105,0): 68, 76, 97, (569,106,0): 68, 76, 97, (569,107,0): 66, 77, 97, (569,108,0): 67, 78, 100, (569,109,0): 67, 78, 100, (569,110,0): 68, 79, 101, (569,111,0): 68, 79, 99, (569,112,0): 71, 79, 100, (569,113,0): 72, 79, 98, (569,114,0): 72, 79, 98, (569,115,0): 72, 79, 98, (569,116,0): 72, 79, 98, (569,117,0): 72, 79, 98, (569,118,0): 72, 79, 98, (569,119,0): 72, 79, 98, (569,120,0): 74, 81, 100, (569,121,0): 74, 81, 100, (569,122,0): 72, 79, 98, (569,123,0): 71, 78, 97, (569,124,0): 71, 78, 97, (569,125,0): 72, 79, 98, (569,126,0): 73, 80, 99, (569,127,0): 74, 81, 100, (569,128,0): 74, 79, 99, (569,129,0): 74, 79, 99, (569,130,0): 76, 78, 99, (569,131,0): 74, 79, 99, (569,132,0): 76, 78, 99, (569,133,0): 74, 79, 99, (569,134,0): 76, 78, 99, (569,135,0): 74, 79, 99, (569,136,0): 75, 77, 98, (569,137,0): 73, 78, 98, (569,138,0): 75, 77, 98, (569,139,0): 74, 79, 99, (569,140,0): 76, 78, 99, (569,141,0): 74, 79, 99, (569,142,0): 76, 78, 99, (569,143,0): 75, 80, 100, (569,144,0): 73, 79, 101, (569,145,0): 74, 80, 102, (569,146,0): 76, 82, 106, (569,147,0): 77, 85, 108, (569,148,0): 78, 85, 111, (569,149,0): 79, 86, 112, (569,150,0): 78, 85, 113, (569,151,0): 76, 86, 113, (569,152,0): 75, 84, 115, (569,153,0): 75, 86, 116, (569,154,0): 75, 86, 118, (569,155,0): 76, 87, 119, (569,156,0): 76, 86, 121, (569,157,0): 75, 88, 122, (569,158,0): 75, 88, 123, (569,159,0): 75, 88, 122, (569,160,0): 78, 87, 120, (569,161,0): 79, 88, 119, (569,162,0): 81, 87, 121, (569,163,0): 80, 89, 120, (569,164,0): 82, 88, 122, (569,165,0): 81, 90, 121, (569,166,0): 83, 89, 123, (569,167,0): 81, 90, 121, (569,168,0): 83, 89, 123, (569,169,0): 81, 90, 121, (569,170,0): 83, 89, 123, (569,171,0): 81, 90, 121, (569,172,0): 83, 89, 123, (569,173,0): 81, 90, 121, (569,174,0): 83, 89, 123, (569,175,0): 83, 89, 123, (569,176,0): 88, 92, 130, (569,177,0): 89, 91, 132, (569,178,0): 89, 91, 132, (569,179,0): 89, 91, 132, (569,180,0): 88, 91, 132, (569,181,0): 88, 91, 132, (569,182,0): 87, 92, 132, (569,183,0): 87, 92, 132, (569,184,0): 86, 91, 131, (569,185,0): 87, 92, 132, (569,186,0): 85, 93, 132, (569,187,0): 85, 93, 132, (569,188,0): 84, 93, 132, (569,189,0): 84, 93, 132, (569,190,0): 85, 94, 133, (569,191,0): 85, 94, 133, (569,192,0): 83, 95, 135, (569,193,0): 82, 96, 135, (569,194,0): 81, 94, 136, (569,195,0): 81, 94, 136, (569,196,0): 80, 93, 135, (569,197,0): 80, 93, 135, (569,198,0): 79, 92, 136, (569,199,0): 78, 93, 136, (569,200,0): 80, 94, 139, (569,201,0): 78, 95, 139, (569,202,0): 78, 95, 139, (569,203,0): 78, 97, 140, (569,204,0): 78, 96, 142, (569,205,0): 79, 97, 143, (569,206,0): 79, 97, 143, (569,207,0): 80, 98, 144, (569,208,0): 82, 100, 146, (569,209,0): 80, 101, 146, (569,210,0): 82, 100, 148, (569,211,0): 80, 101, 146, (569,212,0): 82, 100, 148, (569,213,0): 80, 101, 148, (569,214,0): 82, 100, 148, (569,215,0): 80, 100, 150, (569,216,0): 86, 104, 154, (569,217,0): 84, 104, 155, (569,218,0): 85, 102, 154, (569,219,0): 83, 103, 154, (569,220,0): 84, 101, 155, (569,221,0): 81, 101, 152, (569,222,0): 83, 100, 154, (569,223,0): 79, 100, 155, (569,224,0): 74, 100, 157, (569,225,0): 72, 102, 162, (569,226,0): 74, 102, 165, (569,227,0): 75, 105, 169, (569,228,0): 76, 105, 171, (569,229,0): 77, 108, 175, (569,230,0): 79, 107, 180, (569,231,0): 79, 109, 182, (569,232,0): 79, 108, 184, (569,233,0): 76, 108, 183, (569,234,0): 76, 108, 183, (569,235,0): 74, 108, 182, (569,236,0): 76, 108, 183, (569,237,0): 76, 110, 182, (569,238,0): 78, 112, 184, (569,239,0): 77, 113, 187, (569,240,0): 74, 112, 193, (569,241,0): 74, 114, 199, (569,242,0): 77, 117, 202, (569,243,0): 77, 117, 202, (569,244,0): 77, 117, 202, (569,245,0): 78, 118, 203, (569,246,0): 79, 119, 204, (569,247,0): 81, 121, 206, (569,248,0): 74, 115, 197, (569,249,0): 74, 115, 197, (569,250,0): 74, 115, 197, (569,251,0): 74, 115, 197, (569,252,0): 74, 115, 197, (569,253,0): 74, 115, 197, (569,254,0): 74, 115, 197, (569,255,0): 74, 115, 197, (569,256,0): 73, 116, 195, (569,257,0): 73, 116, 195, (569,258,0): 74, 115, 195, (569,259,0): 73, 114, 193, (569,260,0): 75, 114, 191, (569,261,0): 74, 113, 188, (569,262,0): 75, 113, 186, (569,263,0): 75, 112, 182, (569,264,0): 76, 111, 179, (569,265,0): 76, 109, 176, (569,266,0): 76, 107, 172, (569,267,0): 76, 106, 170, (569,268,0): 77, 105, 168, (569,269,0): 80, 106, 167, (569,270,0): 85, 106, 169, (569,271,0): 86, 107, 170, (569,272,0): 81, 101, 164, (569,273,0): 86, 104, 168, (569,274,0): 91, 107, 169, (569,275,0): 96, 107, 169, (569,276,0): 96, 104, 166, (569,277,0): 99, 104, 162, (569,278,0): 104, 105, 162, (569,279,0): 109, 106, 161, (569,280,0): 110, 103, 157, (569,281,0): 111, 101, 154, (569,282,0): 113, 99, 152, (569,283,0): 114, 97, 149, (569,284,0): 114, 94, 147, (569,285,0): 113, 93, 146, (569,286,0): 114, 91, 143, (569,287,0): 114, 90, 138, (569,288,0): 115, 88, 129, (569,289,0): 111, 83, 121, (569,290,0): 103, 75, 113, (569,291,0): 96, 69, 104, (569,292,0): 91, 64, 97, (569,293,0): 84, 57, 88, (569,294,0): 77, 51, 78, (569,295,0): 72, 47, 69, (569,296,0): 72, 47, 68, (569,297,0): 70, 47, 65, (569,298,0): 69, 47, 60, (569,299,0): 67, 45, 57, (569,300,0): 63, 42, 51, (569,301,0): 59, 38, 45, (569,302,0): 55, 34, 41, (569,303,0): 52, 31, 36, (569,304,0): 54, 35, 39, (569,305,0): 51, 32, 36, (569,306,0): 49, 30, 34, (569,307,0): 48, 29, 33, (569,308,0): 50, 31, 37, (569,309,0): 50, 31, 37, (569,310,0): 47, 28, 34, (569,311,0): 45, 26, 32, (569,312,0): 43, 24, 30, (569,313,0): 42, 23, 29, (569,314,0): 40, 21, 27, (569,315,0): 38, 19, 25, (569,316,0): 35, 15, 24, (569,317,0): 33, 13, 22, (569,318,0): 31, 11, 20, (569,319,0): 31, 11, 20, (569,320,0): 30, 13, 21, (569,321,0): 30, 13, 19, (569,322,0): 31, 14, 20, (569,323,0): 31, 14, 20, (569,324,0): 32, 15, 21, (569,325,0): 33, 16, 22, (569,326,0): 33, 16, 22, (569,327,0): 34, 17, 23, (569,328,0): 33, 16, 22, (569,329,0): 31, 14, 20, (569,330,0): 29, 12, 18, (569,331,0): 27, 10, 16, (569,332,0): 26, 9, 15, (569,333,0): 25, 8, 14, (569,334,0): 26, 9, 15, (569,335,0): 25, 10, 17, (569,336,0): 22, 9, 18, (569,337,0): 22, 9, 18, (569,338,0): 22, 9, 18, (569,339,0): 21, 8, 17, (569,340,0): 20, 7, 16, (569,341,0): 20, 7, 16, (569,342,0): 20, 7, 16, (569,343,0): 19, 6, 15, (569,344,0): 17, 4, 13, (569,345,0): 17, 4, 13, (569,346,0): 17, 4, 13, (569,347,0): 16, 3, 12, (569,348,0): 16, 3, 12, (569,349,0): 15, 2, 11, (569,350,0): 15, 2, 11, (569,351,0): 14, 3, 11, (569,352,0): 14, 3, 11, (569,353,0): 14, 3, 11, (569,354,0): 14, 3, 11, (569,355,0): 14, 3, 11, (569,356,0): 13, 2, 10, (569,357,0): 13, 2, 10, (569,358,0): 13, 2, 10, (569,359,0): 13, 2, 10, (569,360,0): 14, 3, 11, (569,361,0): 14, 3, 11, (569,362,0): 14, 3, 11, (569,363,0): 14, 3, 11, (569,364,0): 14, 3, 11, (569,365,0): 14, 3, 11, (569,366,0): 14, 3, 11, (569,367,0): 13, 3, 11, (569,368,0): 10, 3, 11, (569,369,0): 10, 3, 11, (569,370,0): 10, 3, 11, (569,371,0): 9, 2, 10, (569,372,0): 9, 2, 10, (569,373,0): 8, 1, 9, (569,374,0): 8, 1, 9, (569,375,0): 8, 1, 9, (569,376,0): 9, 2, 10, (569,377,0): 9, 2, 10, (569,378,0): 9, 2, 10, (569,379,0): 9, 2, 10, (569,380,0): 9, 2, 10, (569,381,0): 9, 2, 10, (569,382,0): 9, 2, 10, (569,383,0): 9, 2, 10, (569,384,0): 8, 1, 8, (569,385,0): 8, 1, 8, (569,386,0): 9, 2, 9, (569,387,0): 10, 3, 10, (569,388,0): 13, 4, 9, (569,389,0): 14, 5, 10, (569,390,0): 15, 6, 9, (569,391,0): 15, 6, 9, (569,392,0): 20, 9, 13, (569,393,0): 20, 9, 13, (569,394,0): 21, 9, 11, (569,395,0): 21, 9, 11, (569,396,0): 21, 9, 9, (569,397,0): 21, 9, 9, (569,398,0): 23, 9, 9, (569,399,0): 23, 9, 9, (569,400,0): 22, 10, 10, (569,401,0): 22, 10, 10, (569,402,0): 24, 10, 10, (569,403,0): 24, 10, 10, (569,404,0): 24, 10, 10, (569,405,0): 24, 10, 10, (569,406,0): 25, 9, 10, (569,407,0): 25, 9, 10, (569,408,0): 28, 9, 11, (569,409,0): 28, 9, 11, (569,410,0): 29, 10, 12, (569,411,0): 30, 11, 13, (569,412,0): 32, 12, 14, (569,413,0): 33, 13, 15, (569,414,0): 34, 14, 16, (569,415,0): 34, 14, 15, (569,416,0): 33, 13, 14, (569,417,0): 33, 13, 12, (569,418,0): 34, 14, 13, (569,419,0): 34, 14, 13, (569,420,0): 35, 15, 14, (569,421,0): 36, 16, 15, (569,422,0): 36, 16, 15, (569,423,0): 37, 17, 16, (569,424,0): 39, 19, 18, (569,425,0): 38, 18, 17, (569,426,0): 38, 18, 17, (569,427,0): 38, 18, 17, (569,428,0): 37, 17, 16, (569,429,0): 37, 17, 16, (569,430,0): 36, 16, 15, (569,431,0): 36, 16, 15, (569,432,0): 31, 16, 13, (569,433,0): 30, 15, 12, (569,434,0): 28, 12, 12, (569,435,0): 27, 11, 11, (569,436,0): 27, 11, 11, (569,437,0): 27, 11, 11, (569,438,0): 28, 12, 13, (569,439,0): 29, 13, 14, (569,440,0): 24, 8, 11, (569,441,0): 24, 8, 11, (569,442,0): 24, 8, 11, (569,443,0): 23, 7, 10, (569,444,0): 23, 6, 12, (569,445,0): 22, 5, 11, (569,446,0): 22, 5, 11, (569,447,0): 20, 5, 10, (569,448,0): 18, 6, 8, (569,449,0): 18, 6, 8, (569,450,0): 17, 5, 7, (569,451,0): 17, 5, 7, (569,452,0): 16, 4, 6, (569,453,0): 16, 4, 6, (569,454,0): 15, 3, 5, (569,455,0): 15, 3, 5, (569,456,0): 14, 2, 4, (569,457,0): 15, 3, 5, (569,458,0): 16, 4, 6, (569,459,0): 15, 3, 5, (569,460,0): 12, 0, 2, (569,461,0): 12, 0, 2, (569,462,0): 14, 2, 4, (569,463,0): 17, 5, 7, (569,464,0): 17, 3, 3, (569,465,0): 18, 2, 3, (569,466,0): 19, 3, 4, (569,467,0): 20, 4, 5, (569,468,0): 21, 5, 6, (569,469,0): 22, 6, 7, (569,470,0): 23, 7, 8, (569,471,0): 23, 7, 8, (569,472,0): 25, 9, 10, (569,473,0): 24, 8, 9, (569,474,0): 23, 7, 8, (569,475,0): 23, 7, 8, (569,476,0): 24, 8, 9, (569,477,0): 25, 9, 10, (569,478,0): 26, 10, 11, (569,479,0): 29, 11, 11, (569,480,0): 36, 12, 10, (569,481,0): 39, 14, 9, (569,482,0): 41, 16, 12, (569,483,0): 44, 19, 14, (569,484,0): 45, 20, 16, (569,485,0): 48, 20, 16, (569,486,0): 49, 21, 18, (569,487,0): 49, 21, 17, (569,488,0): 44, 16, 13, (569,489,0): 46, 17, 13, (569,490,0): 47, 17, 15, (569,491,0): 48, 19, 15, (569,492,0): 47, 17, 15, (569,493,0): 46, 17, 13, (569,494,0): 45, 15, 13, (569,495,0): 43, 15, 12, (569,496,0): 41, 15, 14, (569,497,0): 39, 15, 13, (569,498,0): 36, 15, 12, (569,499,0): 34, 13, 10, (569,500,0): 33, 12, 11, (569,501,0): 31, 10, 9, (569,502,0): 29, 9, 8, (569,503,0): 28, 8, 7, (569,504,0): 29, 11, 11, (569,505,0): 29, 11, 11, (569,506,0): 29, 10, 12, (569,507,0): 29, 10, 12, (569,508,0): 27, 11, 12, (569,509,0): 27, 11, 12, (569,510,0): 27, 11, 14, (569,511,0): 27, 11, 14, (569,512,0): 28, 8, 10, (569,513,0): 28, 8, 10, (569,514,0): 27, 7, 9, (569,515,0): 27, 7, 9, (569,516,0): 25, 6, 10, (569,517,0): 25, 6, 10, (569,518,0): 24, 5, 11, (569,519,0): 24, 5, 11, (569,520,0): 22, 5, 11, (569,521,0): 22, 5, 11, (569,522,0): 20, 5, 12, (569,523,0): 20, 5, 12, (569,524,0): 19, 3, 13, (569,525,0): 19, 3, 13, (569,526,0): 16, 3, 12, (569,527,0): 16, 3, 12, (569,528,0): 15, 3, 13, (569,529,0): 15, 3, 13, (569,530,0): 15, 3, 13, (569,531,0): 14, 2, 12, (569,532,0): 14, 2, 12, (569,533,0): 13, 1, 11, (569,534,0): 13, 1, 11, (569,535,0): 12, 0, 10, (569,536,0): 12, 0, 10, (569,537,0): 12, 0, 10, (569,538,0): 12, 0, 10, (569,539,0): 12, 0, 10, (569,540,0): 12, 0, 10, (569,541,0): 12, 0, 10, (569,542,0): 12, 0, 10, (569,543,0): 11, 1, 10, (569,544,0): 12, 2, 11, (569,545,0): 10, 3, 11, (569,546,0): 10, 3, 11, (569,547,0): 10, 3, 11, (569,548,0): 10, 3, 11, (569,549,0): 10, 3, 11, (569,550,0): 10, 3, 11, (569,551,0): 10, 3, 11, (569,552,0): 12, 5, 13, (569,553,0): 12, 5, 13, (569,554,0): 12, 5, 13, (569,555,0): 13, 6, 14, (569,556,0): 13, 6, 14, (569,557,0): 14, 7, 15, (569,558,0): 14, 7, 15, (569,559,0): 14, 9, 16, (569,560,0): 12, 6, 16, (569,561,0): 10, 7, 16, (569,562,0): 11, 6, 13, (569,563,0): 11, 6, 13, (569,564,0): 11, 6, 13, (569,565,0): 13, 8, 15, (569,566,0): 15, 8, 15, (569,567,0): 16, 9, 16, (569,568,0): 26, 17, 22, (569,569,0): 27, 18, 23, (569,570,0): 29, 20, 25, (569,571,0): 31, 22, 27, (569,572,0): 33, 22, 26, (569,573,0): 33, 22, 26, (569,574,0): 33, 22, 26, (569,575,0): 33, 22, 26, (569,576,0): 30, 19, 23, (569,577,0): 30, 19, 23, (569,578,0): 29, 18, 22, (569,579,0): 28, 17, 21, (569,580,0): 27, 16, 20, (569,581,0): 26, 15, 19, (569,582,0): 25, 14, 18, (569,583,0): 25, 14, 18, (569,584,0): 28, 17, 21, (569,585,0): 28, 17, 21, (569,586,0): 28, 17, 21, (569,587,0): 28, 17, 21, (569,588,0): 29, 18, 22, (569,589,0): 29, 18, 22, (569,590,0): 29, 18, 22, (569,591,0): 29, 18, 22, (569,592,0): 30, 17, 26, (569,593,0): 29, 16, 25, (569,594,0): 31, 16, 23, (569,595,0): 29, 17, 21, (569,596,0): 30, 15, 20, (569,597,0): 28, 16, 18, (569,598,0): 29, 15, 15, (569,599,0): 27, 15, 15, (570,0,0): 38, 57, 71, (570,1,0): 38, 57, 71, (570,2,0): 38, 57, 71, (570,3,0): 38, 57, 71, (570,4,0): 38, 57, 71, (570,5,0): 38, 57, 71, (570,6,0): 38, 57, 71, (570,7,0): 38, 57, 71, (570,8,0): 40, 59, 73, (570,9,0): 40, 59, 73, (570,10,0): 40, 59, 73, (570,11,0): 40, 59, 73, (570,12,0): 40, 59, 73, (570,13,0): 40, 59, 73, (570,14,0): 40, 59, 73, (570,15,0): 40, 59, 73, (570,16,0): 43, 61, 75, (570,17,0): 43, 61, 75, (570,18,0): 43, 61, 75, (570,19,0): 43, 61, 75, (570,20,0): 43, 61, 75, (570,21,0): 43, 61, 75, (570,22,0): 43, 61, 75, (570,23,0): 43, 61, 75, (570,24,0): 45, 63, 77, (570,25,0): 45, 63, 77, (570,26,0): 45, 63, 77, (570,27,0): 45, 63, 77, (570,28,0): 45, 63, 77, (570,29,0): 45, 63, 77, (570,30,0): 45, 63, 77, (570,31,0): 45, 63, 75, (570,32,0): 47, 63, 76, (570,33,0): 47, 64, 74, (570,34,0): 49, 63, 74, (570,35,0): 49, 63, 74, (570,36,0): 50, 62, 74, (570,37,0): 50, 62, 74, (570,38,0): 52, 62, 74, (570,39,0): 52, 62, 74, (570,40,0): 56, 62, 76, (570,41,0): 56, 62, 76, (570,42,0): 59, 62, 77, (570,43,0): 59, 62, 77, (570,44,0): 61, 63, 78, (570,45,0): 61, 63, 78, (570,46,0): 64, 63, 79, (570,47,0): 64, 63, 79, (570,48,0): 63, 65, 78, (570,49,0): 63, 65, 78, (570,50,0): 63, 65, 78, (570,51,0): 64, 66, 79, (570,52,0): 67, 66, 80, (570,53,0): 67, 66, 80, (570,54,0): 68, 66, 80, (570,55,0): 69, 67, 81, (570,56,0): 68, 66, 80, (570,57,0): 68, 66, 80, (570,58,0): 69, 65, 80, (570,59,0): 69, 65, 80, (570,60,0): 71, 64, 80, (570,61,0): 71, 64, 80, (570,62,0): 71, 64, 80, (570,63,0): 69, 65, 80, (570,64,0): 70, 66, 81, (570,65,0): 69, 67, 81, (570,66,0): 69, 67, 81, (570,67,0): 69, 67, 81, (570,68,0): 69, 67, 81, (570,69,0): 69, 67, 81, (570,70,0): 69, 67, 81, (570,71,0): 69, 67, 81, (570,72,0): 69, 67, 81, (570,73,0): 69, 67, 81, (570,74,0): 69, 67, 81, (570,75,0): 70, 68, 82, (570,76,0): 71, 69, 83, (570,77,0): 71, 69, 83, (570,78,0): 71, 69, 83, (570,79,0): 71, 70, 84, (570,80,0): 73, 72, 88, (570,81,0): 70, 72, 87, (570,82,0): 67, 69, 84, (570,83,0): 65, 67, 82, (570,84,0): 65, 67, 82, (570,85,0): 66, 68, 83, (570,86,0): 67, 69, 84, (570,87,0): 69, 71, 86, (570,88,0): 69, 71, 86, (570,89,0): 69, 71, 86, (570,90,0): 70, 72, 87, (570,91,0): 71, 73, 88, (570,92,0): 72, 74, 89, (570,93,0): 73, 75, 90, (570,94,0): 74, 76, 91, (570,95,0): 75, 77, 92, (570,96,0): 71, 74, 91, (570,97,0): 69, 75, 91, (570,98,0): 69, 74, 93, (570,99,0): 69, 74, 93, (570,100,0): 68, 75, 93, (570,101,0): 68, 75, 93, (570,102,0): 68, 75, 94, (570,103,0): 67, 75, 94, (570,104,0): 67, 75, 96, (570,105,0): 67, 75, 96, (570,106,0): 65, 76, 96, (570,107,0): 66, 77, 97, (570,108,0): 67, 78, 100, (570,109,0): 66, 78, 100, (570,110,0): 66, 78, 100, (570,111,0): 68, 79, 99, (570,112,0): 71, 79, 100, (570,113,0): 72, 79, 98, (570,114,0): 72, 79, 98, (570,115,0): 72, 79, 98, (570,116,0): 72, 79, 98, (570,117,0): 72, 79, 98, (570,118,0): 72, 79, 98, (570,119,0): 72, 79, 98, (570,120,0): 73, 80, 99, (570,121,0): 73, 80, 99, (570,122,0): 72, 79, 98, (570,123,0): 71, 78, 97, (570,124,0): 71, 78, 97, (570,125,0): 72, 79, 98, (570,126,0): 73, 80, 99, (570,127,0): 75, 80, 100, (570,128,0): 77, 80, 99, (570,129,0): 77, 80, 99, (570,130,0): 78, 79, 99, (570,131,0): 77, 80, 99, (570,132,0): 78, 79, 99, (570,133,0): 77, 80, 99, (570,134,0): 78, 79, 99, (570,135,0): 77, 80, 99, (570,136,0): 77, 78, 98, (570,137,0): 76, 79, 98, (570,138,0): 77, 78, 98, (570,139,0): 75, 78, 97, (570,140,0): 76, 77, 97, (570,141,0): 75, 78, 97, (570,142,0): 76, 77, 97, (570,143,0): 74, 76, 97, (570,144,0): 73, 79, 101, (570,145,0): 73, 81, 102, (570,146,0): 75, 83, 106, (570,147,0): 77, 85, 108, (570,148,0): 78, 85, 111, (570,149,0): 76, 86, 111, (570,150,0): 75, 85, 112, (570,151,0): 75, 85, 112, (570,152,0): 75, 84, 115, (570,153,0): 74, 85, 115, (570,154,0): 74, 85, 117, (570,155,0): 73, 86, 118, (570,156,0): 73, 86, 120, (570,157,0): 74, 87, 121, (570,158,0): 74, 87, 122, (570,159,0): 74, 87, 122, (570,160,0): 77, 87, 122, (570,161,0): 77, 88, 120, (570,162,0): 78, 86, 122, (570,163,0): 78, 89, 121, (570,164,0): 79, 87, 123, (570,165,0): 79, 90, 122, (570,166,0): 80, 88, 124, (570,167,0): 79, 90, 122, (570,168,0): 81, 89, 125, (570,169,0): 80, 91, 123, (570,170,0): 81, 89, 125, (570,171,0): 80, 91, 123, (570,172,0): 81, 89, 125, (570,173,0): 80, 91, 123, (570,174,0): 81, 89, 125, (570,175,0): 81, 89, 125, (570,176,0): 87, 90, 131, (570,177,0): 88, 89, 133, (570,178,0): 88, 89, 133, (570,179,0): 88, 89, 133, (570,180,0): 87, 90, 133, (570,181,0): 87, 90, 133, (570,182,0): 86, 91, 133, (570,183,0): 86, 91, 133, (570,184,0): 86, 91, 133, (570,185,0): 86, 91, 133, (570,186,0): 85, 92, 134, (570,187,0): 86, 93, 135, (570,188,0): 86, 95, 136, (570,189,0): 87, 96, 137, (570,190,0): 87, 96, 137, (570,191,0): 87, 96, 137, (570,192,0): 86, 95, 136, (570,193,0): 84, 96, 136, (570,194,0): 83, 95, 137, (570,195,0): 83, 95, 137, (570,196,0): 82, 94, 136, (570,197,0): 81, 94, 136, (570,198,0): 80, 93, 137, (570,199,0): 79, 94, 137, (570,200,0): 79, 93, 138, (570,201,0): 80, 94, 139, (570,202,0): 80, 94, 139, (570,203,0): 78, 95, 139, (570,204,0): 79, 96, 142, (570,205,0): 79, 96, 142, (570,206,0): 80, 97, 143, (570,207,0): 79, 97, 143, (570,208,0): 80, 101, 148, (570,209,0): 79, 101, 148, (570,210,0): 80, 100, 150, (570,211,0): 79, 101, 148, (570,212,0): 80, 100, 150, (570,213,0): 79, 101, 150, (570,214,0): 80, 100, 150, (570,215,0): 79, 101, 151, (570,216,0): 83, 103, 154, (570,217,0): 82, 103, 156, (570,218,0): 82, 102, 155, (570,219,0): 81, 102, 155, (570,220,0): 81, 100, 156, (570,221,0): 80, 101, 154, (570,222,0): 81, 100, 156, (570,223,0): 78, 100, 157, (570,224,0): 71, 100, 158, (570,225,0): 69, 101, 160, (570,226,0): 71, 101, 163, (570,227,0): 72, 103, 167, (570,228,0): 74, 105, 172, (570,229,0): 73, 106, 175, (570,230,0): 76, 106, 179, (570,231,0): 75, 107, 182, (570,232,0): 73, 105, 180, (570,233,0): 72, 105, 182, (570,234,0): 71, 104, 181, (570,235,0): 69, 105, 181, (570,236,0): 71, 104, 181, (570,237,0): 71, 107, 181, (570,238,0): 72, 108, 182, (570,239,0): 72, 110, 185, (570,240,0): 74, 112, 195, (570,241,0): 73, 113, 200, (570,242,0): 74, 114, 201, (570,243,0): 77, 117, 204, (570,244,0): 79, 119, 206, (570,245,0): 79, 119, 206, (570,246,0): 77, 117, 202, (570,247,0): 75, 115, 200, (570,248,0): 74, 115, 197, (570,249,0): 74, 115, 197, (570,250,0): 74, 115, 195, (570,251,0): 74, 115, 195, (570,252,0): 74, 115, 195, (570,253,0): 74, 115, 195, (570,254,0): 74, 115, 195, (570,255,0): 74, 115, 195, (570,256,0): 72, 114, 196, (570,257,0): 72, 115, 194, (570,258,0): 72, 115, 194, (570,259,0): 71, 114, 192, (570,260,0): 72, 114, 190, (570,261,0): 73, 113, 185, (570,262,0): 74, 112, 183, (570,263,0): 75, 112, 182, (570,264,0): 76, 111, 177, (570,265,0): 78, 109, 174, (570,266,0): 78, 108, 172, (570,267,0): 80, 105, 169, (570,268,0): 81, 105, 165, (570,269,0): 83, 105, 163, (570,270,0): 86, 105, 164, (570,271,0): 89, 105, 165, (570,272,0): 87, 101, 162, (570,273,0): 93, 103, 165, (570,274,0): 98, 107, 166, (570,275,0): 102, 107, 165, (570,276,0): 103, 104, 160, (570,277,0): 105, 102, 157, (570,278,0): 109, 100, 153, (570,279,0): 113, 101, 151, (570,280,0): 113, 97, 146, (570,281,0): 114, 94, 143, (570,282,0): 113, 91, 138, (570,283,0): 110, 87, 133, (570,284,0): 109, 81, 129, (570,285,0): 106, 79, 124, (570,286,0): 103, 76, 121, (570,287,0): 103, 75, 116, (570,288,0): 100, 70, 106, (570,289,0): 95, 66, 97, (570,290,0): 87, 58, 89, (570,291,0): 81, 52, 82, (570,292,0): 77, 48, 76, (570,293,0): 71, 45, 70, (570,294,0): 68, 43, 65, (570,295,0): 66, 41, 60, (570,296,0): 65, 42, 58, (570,297,0): 63, 43, 55, (570,298,0): 62, 42, 53, (570,299,0): 60, 40, 49, (570,300,0): 54, 37, 45, (570,301,0): 51, 34, 40, (570,302,0): 48, 31, 37, (570,303,0): 46, 30, 33, (570,304,0): 51, 32, 36, (570,305,0): 49, 30, 32, (570,306,0): 46, 27, 29, (570,307,0): 46, 27, 29, (570,308,0): 47, 28, 32, (570,309,0): 47, 28, 32, (570,310,0): 45, 26, 32, (570,311,0): 42, 23, 29, (570,312,0): 41, 22, 28, (570,313,0): 40, 21, 27, (570,314,0): 38, 18, 27, (570,315,0): 36, 16, 25, (570,316,0): 34, 14, 25, (570,317,0): 32, 12, 23, (570,318,0): 31, 11, 22, (570,319,0): 30, 10, 19, (570,320,0): 30, 13, 21, (570,321,0): 29, 14, 21, (570,322,0): 29, 14, 21, (570,323,0): 30, 15, 22, (570,324,0): 30, 15, 22, (570,325,0): 31, 16, 23, (570,326,0): 31, 16, 23, (570,327,0): 31, 16, 23, (570,328,0): 29, 14, 21, (570,329,0): 28, 13, 20, (570,330,0): 26, 11, 18, (570,331,0): 24, 9, 16, (570,332,0): 23, 8, 15, (570,333,0): 23, 8, 15, (570,334,0): 23, 8, 15, (570,335,0): 24, 9, 16, (570,336,0): 21, 8, 17, (570,337,0): 19, 8, 16, (570,338,0): 19, 8, 16, (570,339,0): 19, 8, 16, (570,340,0): 18, 7, 15, (570,341,0): 17, 6, 14, (570,342,0): 17, 6, 14, (570,343,0): 17, 6, 14, (570,344,0): 16, 5, 13, (570,345,0): 16, 5, 13, (570,346,0): 16, 5, 13, (570,347,0): 15, 4, 12, (570,348,0): 15, 4, 12, (570,349,0): 14, 3, 11, (570,350,0): 14, 3, 11, (570,351,0): 14, 3, 11, (570,352,0): 13, 2, 10, (570,353,0): 12, 2, 10, (570,354,0): 12, 2, 10, (570,355,0): 12, 2, 10, (570,356,0): 13, 3, 11, (570,357,0): 13, 3, 11, (570,358,0): 13, 3, 11, (570,359,0): 13, 3, 11, (570,360,0): 13, 3, 11, (570,361,0): 13, 3, 11, (570,362,0): 13, 3, 11, (570,363,0): 13, 3, 11, (570,364,0): 13, 3, 11, (570,365,0): 13, 3, 11, (570,366,0): 13, 3, 11, (570,367,0): 13, 3, 11, (570,368,0): 10, 3, 11, (570,369,0): 10, 3, 11, (570,370,0): 10, 3, 11, (570,371,0): 9, 2, 10, (570,372,0): 9, 2, 10, (570,373,0): 8, 1, 9, (570,374,0): 8, 1, 9, (570,375,0): 8, 1, 9, (570,376,0): 9, 2, 10, (570,377,0): 9, 2, 10, (570,378,0): 9, 2, 10, (570,379,0): 9, 2, 10, (570,380,0): 9, 2, 10, (570,381,0): 9, 2, 10, (570,382,0): 9, 2, 10, (570,383,0): 9, 2, 10, (570,384,0): 8, 1, 8, (570,385,0): 8, 1, 8, (570,386,0): 9, 2, 9, (570,387,0): 10, 3, 10, (570,388,0): 13, 4, 9, (570,389,0): 14, 5, 10, (570,390,0): 15, 6, 9, (570,391,0): 15, 6, 9, (570,392,0): 20, 9, 13, (570,393,0): 20, 9, 13, (570,394,0): 21, 9, 11, (570,395,0): 21, 9, 11, (570,396,0): 21, 9, 9, (570,397,0): 21, 9, 9, (570,398,0): 23, 9, 9, (570,399,0): 23, 9, 9, (570,400,0): 23, 11, 11, (570,401,0): 23, 11, 11, (570,402,0): 25, 11, 11, (570,403,0): 25, 11, 11, (570,404,0): 25, 11, 11, (570,405,0): 25, 11, 11, (570,406,0): 26, 10, 11, (570,407,0): 26, 10, 11, (570,408,0): 28, 9, 11, (570,409,0): 28, 9, 11, (570,410,0): 29, 10, 12, (570,411,0): 30, 11, 13, (570,412,0): 32, 12, 14, (570,413,0): 33, 13, 15, (570,414,0): 34, 14, 16, (570,415,0): 34, 14, 15, (570,416,0): 33, 11, 13, (570,417,0): 33, 12, 11, (570,418,0): 34, 13, 12, (570,419,0): 36, 15, 14, (570,420,0): 37, 16, 15, (570,421,0): 38, 17, 16, (570,422,0): 39, 18, 17, (570,423,0): 40, 19, 18, (570,424,0): 40, 19, 18, (570,425,0): 40, 19, 18, (570,426,0): 40, 19, 18, (570,427,0): 39, 18, 17, (570,428,0): 38, 17, 16, (570,429,0): 38, 17, 16, (570,430,0): 38, 17, 16, (570,431,0): 36, 16, 15, (570,432,0): 32, 17, 14, (570,433,0): 30, 16, 13, (570,434,0): 28, 14, 13, (570,435,0): 27, 13, 12, (570,436,0): 26, 12, 11, (570,437,0): 26, 12, 11, (570,438,0): 27, 13, 13, (570,439,0): 27, 13, 13, (570,440,0): 23, 8, 11, (570,441,0): 22, 7, 10, (570,442,0): 22, 7, 10, (570,443,0): 21, 6, 9, (570,444,0): 21, 6, 11, (570,445,0): 20, 5, 10, (570,446,0): 20, 5, 10, (570,447,0): 20, 5, 10, (570,448,0): 17, 5, 7, (570,449,0): 16, 6, 7, (570,450,0): 15, 5, 6, (570,451,0): 15, 5, 6, (570,452,0): 14, 4, 5, (570,453,0): 14, 4, 5, (570,454,0): 13, 3, 4, (570,455,0): 13, 3, 4, (570,456,0): 11, 1, 2, (570,457,0): 14, 4, 5, (570,458,0): 16, 6, 7, (570,459,0): 16, 6, 7, (570,460,0): 13, 3, 4, (570,461,0): 12, 2, 3, (570,462,0): 13, 3, 4, (570,463,0): 15, 3, 5, (570,464,0): 17, 3, 3, (570,465,0): 17, 3, 3, (570,466,0): 18, 4, 4, (570,467,0): 19, 5, 5, (570,468,0): 20, 6, 6, (570,469,0): 21, 7, 7, (570,470,0): 22, 8, 8, (570,471,0): 22, 8, 8, (570,472,0): 23, 9, 9, (570,473,0): 23, 9, 9, (570,474,0): 22, 8, 8, (570,475,0): 22, 8, 8, (570,476,0): 22, 8, 8, (570,477,0): 24, 10, 10, (570,478,0): 25, 11, 11, (570,479,0): 27, 11, 11, (570,480,0): 32, 11, 8, (570,481,0): 36, 12, 8, (570,482,0): 38, 14, 12, (570,483,0): 40, 16, 12, (570,484,0): 42, 18, 16, (570,485,0): 43, 18, 14, (570,486,0): 43, 17, 16, (570,487,0): 43, 18, 14, (570,488,0): 42, 16, 15, (570,489,0): 45, 17, 14, (570,490,0): 46, 18, 17, (570,491,0): 47, 19, 16, (570,492,0): 47, 19, 18, (570,493,0): 46, 18, 15, (570,494,0): 46, 16, 16, (570,495,0): 45, 17, 16, (570,496,0): 41, 15, 14, (570,497,0): 39, 15, 13, (570,498,0): 36, 15, 12, (570,499,0): 34, 13, 10, (570,500,0): 33, 12, 11, (570,501,0): 31, 10, 9, (570,502,0): 29, 9, 8, (570,503,0): 28, 8, 7, (570,504,0): 29, 11, 11, (570,505,0): 29, 11, 11, (570,506,0): 29, 10, 12, (570,507,0): 29, 10, 12, (570,508,0): 27, 11, 12, (570,509,0): 27, 11, 12, (570,510,0): 27, 11, 14, (570,511,0): 27, 11, 14, (570,512,0): 28, 8, 10, (570,513,0): 28, 8, 10, (570,514,0): 27, 7, 9, (570,515,0): 27, 7, 9, (570,516,0): 25, 6, 10, (570,517,0): 25, 6, 10, (570,518,0): 24, 5, 11, (570,519,0): 24, 5, 11, (570,520,0): 22, 5, 11, (570,521,0): 22, 5, 11, (570,522,0): 20, 5, 12, (570,523,0): 20, 5, 12, (570,524,0): 19, 3, 13, (570,525,0): 19, 3, 13, (570,526,0): 16, 3, 12, (570,527,0): 16, 3, 12, (570,528,0): 16, 4, 14, (570,529,0): 15, 3, 13, (570,530,0): 15, 3, 13, (570,531,0): 14, 2, 12, (570,532,0): 14, 2, 12, (570,533,0): 13, 1, 11, (570,534,0): 13, 1, 11, (570,535,0): 13, 1, 11, (570,536,0): 12, 0, 10, (570,537,0): 12, 0, 10, (570,538,0): 12, 0, 10, (570,539,0): 12, 0, 10, (570,540,0): 12, 0, 10, (570,541,0): 12, 0, 10, (570,542,0): 12, 0, 10, (570,543,0): 11, 1, 10, (570,544,0): 10, 0, 9, (570,545,0): 8, 1, 9, (570,546,0): 8, 1, 9, (570,547,0): 8, 1, 9, (570,548,0): 8, 1, 9, (570,549,0): 8, 1, 9, (570,550,0): 8, 1, 9, (570,551,0): 8, 1, 9, (570,552,0): 11, 4, 12, (570,553,0): 12, 5, 13, (570,554,0): 12, 5, 13, (570,555,0): 13, 6, 14, (570,556,0): 13, 6, 14, (570,557,0): 14, 7, 15, (570,558,0): 14, 7, 15, (570,559,0): 13, 8, 15, (570,560,0): 12, 6, 16, (570,561,0): 10, 7, 16, (570,562,0): 11, 6, 13, (570,563,0): 11, 6, 13, (570,564,0): 11, 6, 13, (570,565,0): 13, 8, 15, (570,566,0): 15, 8, 15, (570,567,0): 16, 9, 16, (570,568,0): 26, 17, 22, (570,569,0): 27, 18, 23, (570,570,0): 29, 20, 25, (570,571,0): 31, 22, 27, (570,572,0): 33, 22, 26, (570,573,0): 33, 22, 26, (570,574,0): 33, 22, 26, (570,575,0): 32, 21, 25, (570,576,0): 30, 19, 23, (570,577,0): 30, 19, 23, (570,578,0): 29, 18, 22, (570,579,0): 28, 17, 21, (570,580,0): 27, 16, 20, (570,581,0): 26, 15, 19, (570,582,0): 25, 14, 18, (570,583,0): 25, 14, 18, (570,584,0): 29, 18, 22, (570,585,0): 29, 18, 22, (570,586,0): 29, 18, 22, (570,587,0): 29, 18, 22, (570,588,0): 28, 17, 21, (570,589,0): 28, 17, 21, (570,590,0): 28, 17, 21, (570,591,0): 29, 17, 21, (570,592,0): 32, 16, 26, (570,593,0): 32, 16, 26, (570,594,0): 33, 16, 24, (570,595,0): 31, 16, 21, (570,596,0): 31, 14, 20, (570,597,0): 30, 15, 18, (570,598,0): 31, 15, 16, (570,599,0): 29, 15, 15, (571,0,0): 38, 57, 71, (571,1,0): 38, 57, 71, (571,2,0): 38, 57, 71, (571,3,0): 38, 57, 71, (571,4,0): 38, 57, 71, (571,5,0): 38, 57, 71, (571,6,0): 38, 57, 71, (571,7,0): 38, 57, 71, (571,8,0): 40, 59, 73, (571,9,0): 40, 59, 73, (571,10,0): 40, 59, 73, (571,11,0): 40, 59, 73, (571,12,0): 40, 59, 73, (571,13,0): 40, 59, 73, (571,14,0): 40, 59, 73, (571,15,0): 40, 59, 73, (571,16,0): 42, 60, 74, (571,17,0): 42, 60, 74, (571,18,0): 42, 60, 74, (571,19,0): 42, 60, 74, (571,20,0): 42, 60, 74, (571,21,0): 42, 60, 74, (571,22,0): 42, 60, 74, (571,23,0): 42, 60, 74, (571,24,0): 45, 63, 77, (571,25,0): 45, 63, 77, (571,26,0): 45, 63, 77, (571,27,0): 45, 63, 77, (571,28,0): 45, 63, 77, (571,29,0): 45, 63, 77, (571,30,0): 45, 63, 77, (571,31,0): 45, 63, 75, (571,32,0): 45, 61, 74, (571,33,0): 45, 62, 72, (571,34,0): 48, 62, 73, (571,35,0): 48, 62, 73, (571,36,0): 49, 61, 73, (571,37,0): 50, 62, 74, (571,38,0): 52, 62, 74, (571,39,0): 52, 62, 74, (571,40,0): 56, 62, 76, (571,41,0): 56, 62, 76, (571,42,0): 59, 62, 77, (571,43,0): 59, 62, 77, (571,44,0): 61, 63, 78, (571,45,0): 61, 63, 78, (571,46,0): 64, 63, 79, (571,47,0): 64, 63, 79, (571,48,0): 62, 64, 77, (571,49,0): 63, 65, 78, (571,50,0): 63, 65, 78, (571,51,0): 64, 66, 79, (571,52,0): 66, 65, 79, (571,53,0): 67, 66, 80, (571,54,0): 68, 66, 80, (571,55,0): 68, 66, 80, (571,56,0): 68, 66, 80, (571,57,0): 68, 66, 80, (571,58,0): 69, 65, 80, (571,59,0): 69, 65, 80, (571,60,0): 71, 64, 80, (571,61,0): 71, 64, 80, (571,62,0): 71, 64, 80, (571,63,0): 69, 65, 80, (571,64,0): 69, 65, 80, (571,65,0): 68, 66, 80, (571,66,0): 68, 66, 80, (571,67,0): 68, 66, 80, (571,68,0): 68, 66, 80, (571,69,0): 68, 66, 80, (571,70,0): 68, 66, 80, (571,71,0): 68, 66, 80, (571,72,0): 68, 66, 80, (571,73,0): 69, 67, 81, (571,74,0): 69, 67, 81, (571,75,0): 70, 68, 82, (571,76,0): 70, 68, 82, (571,77,0): 71, 69, 83, (571,78,0): 71, 69, 83, (571,79,0): 70, 69, 83, (571,80,0): 71, 70, 86, (571,81,0): 68, 70, 85, (571,82,0): 66, 68, 83, (571,83,0): 64, 66, 81, (571,84,0): 64, 66, 81, (571,85,0): 64, 66, 81, (571,86,0): 65, 67, 82, (571,87,0): 66, 68, 83, (571,88,0): 69, 71, 86, (571,89,0): 69, 71, 86, (571,90,0): 70, 72, 87, (571,91,0): 71, 73, 88, (571,92,0): 72, 74, 89, (571,93,0): 73, 75, 90, (571,94,0): 74, 76, 91, (571,95,0): 73, 76, 91, (571,96,0): 68, 74, 90, (571,97,0): 68, 74, 90, (571,98,0): 68, 73, 92, (571,99,0): 68, 73, 92, (571,100,0): 67, 74, 92, (571,101,0): 67, 74, 92, (571,102,0): 66, 74, 93, (571,103,0): 66, 74, 93, (571,104,0): 66, 74, 95, (571,105,0): 65, 76, 96, (571,106,0): 65, 76, 96, (571,107,0): 66, 77, 97, (571,108,0): 65, 77, 99, (571,109,0): 66, 78, 100, (571,110,0): 66, 78, 100, (571,111,0): 67, 78, 98, (571,112,0): 70, 78, 99, (571,113,0): 71, 78, 97, (571,114,0): 71, 78, 97, (571,115,0): 71, 78, 97, (571,116,0): 71, 78, 97, (571,117,0): 71, 78, 97, (571,118,0): 71, 78, 97, (571,119,0): 71, 78, 97, (571,120,0): 72, 79, 98, (571,121,0): 72, 79, 98, (571,122,0): 71, 78, 97, (571,123,0): 70, 77, 96, (571,124,0): 71, 78, 97, (571,125,0): 72, 79, 98, (571,126,0): 73, 80, 99, (571,127,0): 75, 80, 100, (571,128,0): 77, 80, 99, (571,129,0): 78, 79, 99, (571,130,0): 78, 79, 99, (571,131,0): 78, 79, 99, (571,132,0): 78, 79, 99, (571,133,0): 78, 79, 99, (571,134,0): 78, 79, 99, (571,135,0): 78, 79, 99, (571,136,0): 78, 79, 99, (571,137,0): 78, 79, 99, (571,138,0): 77, 78, 98, (571,139,0): 76, 77, 97, (571,140,0): 75, 76, 96, (571,141,0): 75, 76, 96, (571,142,0): 74, 75, 95, (571,143,0): 73, 76, 95, (571,144,0): 73, 79, 101, (571,145,0): 73, 81, 102, (571,146,0): 75, 83, 106, (571,147,0): 76, 84, 107, (571,148,0): 75, 85, 110, (571,149,0): 75, 85, 110, (571,150,0): 74, 84, 111, (571,151,0): 73, 85, 111, (571,152,0): 73, 84, 114, (571,153,0): 73, 84, 114, (571,154,0): 71, 84, 116, (571,155,0): 72, 85, 117, (571,156,0): 72, 85, 119, (571,157,0): 73, 86, 120, (571,158,0): 72, 86, 121, (571,159,0): 72, 86, 121, (571,160,0): 74, 87, 121, (571,161,0): 74, 87, 121, (571,162,0): 74, 87, 121, (571,163,0): 75, 88, 122, (571,164,0): 75, 88, 122, (571,165,0): 76, 89, 123, (571,166,0): 76, 89, 123, (571,167,0): 76, 89, 123, (571,168,0): 77, 90, 124, (571,169,0): 77, 90, 124, (571,170,0): 77, 90, 124, (571,171,0): 77, 90, 124, (571,172,0): 77, 90, 124, (571,173,0): 77, 90, 124, (571,174,0): 77, 90, 124, (571,175,0): 79, 89, 125, (571,176,0): 84, 89, 131, (571,177,0): 85, 88, 131, (571,178,0): 85, 88, 133, (571,179,0): 85, 88, 131, (571,180,0): 84, 88, 133, (571,181,0): 84, 89, 131, (571,182,0): 82, 89, 133, (571,183,0): 82, 89, 131, (571,184,0): 81, 88, 132, (571,185,0): 81, 88, 130, (571,186,0): 81, 90, 133, (571,187,0): 82, 91, 132, (571,188,0): 82, 94, 136, (571,189,0): 83, 95, 135, (571,190,0): 84, 96, 138, (571,191,0): 85, 97, 137, (571,192,0): 84, 96, 136, (571,193,0): 84, 96, 136, (571,194,0): 83, 95, 137, (571,195,0): 82, 95, 137, (571,196,0): 82, 94, 136, (571,197,0): 81, 94, 136, (571,198,0): 80, 93, 137, (571,199,0): 79, 94, 137, (571,200,0): 78, 92, 137, (571,201,0): 76, 93, 137, (571,202,0): 77, 94, 138, (571,203,0): 77, 94, 138, (571,204,0): 78, 95, 141, (571,205,0): 77, 95, 141, (571,206,0): 79, 96, 142, (571,207,0): 78, 96, 144, (571,208,0): 78, 100, 149, (571,209,0): 77, 101, 149, (571,210,0): 78, 100, 150, (571,211,0): 77, 100, 150, (571,212,0): 78, 100, 150, (571,213,0): 77, 100, 150, (571,214,0): 78, 100, 150, (571,215,0): 77, 100, 152, (571,216,0): 80, 101, 154, (571,217,0): 79, 102, 156, (571,218,0): 80, 101, 156, (571,219,0): 78, 101, 155, (571,220,0): 79, 100, 157, (571,221,0): 78, 100, 157, (571,222,0): 79, 100, 157, (571,223,0): 76, 101, 158, (571,224,0): 70, 101, 158, (571,225,0): 69, 101, 162, (571,226,0): 71, 102, 166, (571,227,0): 70, 104, 168, (571,228,0): 72, 105, 174, (571,229,0): 73, 106, 177, (571,230,0): 74, 106, 181, (571,231,0): 74, 108, 182, (571,232,0): 71, 104, 181, (571,233,0): 69, 105, 181, (571,234,0): 68, 104, 180, (571,235,0): 68, 104, 180, (571,236,0): 69, 105, 181, (571,237,0): 69, 107, 182, (571,238,0): 70, 108, 183, (571,239,0): 70, 109, 186, (571,240,0): 71, 111, 196, (571,241,0): 71, 111, 198, (571,242,0): 72, 112, 199, (571,243,0): 76, 116, 203, (571,244,0): 80, 120, 207, (571,245,0): 79, 119, 204, (571,246,0): 75, 115, 200, (571,247,0): 70, 111, 193, (571,248,0): 73, 114, 196, (571,249,0): 73, 114, 194, (571,250,0): 73, 114, 194, (571,251,0): 73, 114, 194, (571,252,0): 73, 114, 194, (571,253,0): 73, 114, 193, (571,254,0): 73, 114, 194, (571,255,0): 73, 114, 194, (571,256,0): 71, 114, 193, (571,257,0): 71, 114, 193, (571,258,0): 71, 114, 192, (571,259,0): 70, 114, 189, (571,260,0): 71, 113, 187, (571,261,0): 70, 112, 184, (571,262,0): 73, 111, 182, (571,263,0): 74, 111, 179, (571,264,0): 73, 108, 172, (571,265,0): 76, 107, 171, (571,266,0): 78, 106, 169, (571,267,0): 82, 106, 168, (571,268,0): 86, 106, 165, (571,269,0): 90, 106, 165, (571,270,0): 92, 107, 166, (571,271,0): 95, 105, 164, (571,272,0): 101, 106, 164, (571,273,0): 104, 105, 162, (571,274,0): 106, 106, 160, (571,275,0): 107, 102, 156, (571,276,0): 108, 100, 151, (571,277,0): 108, 96, 144, (571,278,0): 108, 92, 137, (571,279,0): 109, 91, 133, (571,280,0): 107, 84, 126, (571,281,0): 108, 82, 121, (571,282,0): 105, 77, 117, (571,283,0): 101, 71, 109, (571,284,0): 96, 66, 102, (571,285,0): 92, 60, 97, (571,286,0): 88, 56, 93, (571,287,0): 85, 55, 89, (571,288,0): 83, 53, 81, (571,289,0): 79, 51, 74, (571,290,0): 76, 46, 72, (571,291,0): 71, 43, 66, (571,292,0): 68, 40, 62, (571,293,0): 64, 39, 60, (571,294,0): 62, 37, 56, (571,295,0): 60, 37, 53, (571,296,0): 59, 39, 51, (571,297,0): 57, 40, 50, (571,298,0): 55, 38, 46, (571,299,0): 53, 36, 44, (571,300,0): 50, 35, 40, (571,301,0): 47, 32, 37, (571,302,0): 45, 30, 33, (571,303,0): 44, 29, 32, (571,304,0): 47, 31, 32, (571,305,0): 46, 27, 29, (571,306,0): 44, 25, 27, (571,307,0): 44, 25, 27, (571,308,0): 45, 26, 30, (571,309,0): 45, 26, 30, (571,310,0): 43, 24, 30, (571,311,0): 40, 21, 27, (571,312,0): 38, 19, 25, (571,313,0): 38, 19, 25, (571,314,0): 36, 16, 25, (571,315,0): 35, 15, 24, (571,316,0): 33, 13, 24, (571,317,0): 31, 11, 22, (571,318,0): 30, 10, 21, (571,319,0): 27, 10, 20, (571,320,0): 29, 13, 23, (571,321,0): 29, 14, 21, (571,322,0): 29, 14, 21, (571,323,0): 29, 14, 21, (571,324,0): 29, 14, 21, (571,325,0): 29, 14, 21, (571,326,0): 29, 14, 21, (571,327,0): 29, 14, 21, (571,328,0): 25, 10, 17, (571,329,0): 25, 10, 17, (571,330,0): 24, 9, 16, (571,331,0): 23, 8, 15, (571,332,0): 22, 7, 14, (571,333,0): 22, 7, 14, (571,334,0): 22, 7, 14, (571,335,0): 20, 7, 14, (571,336,0): 19, 6, 15, (571,337,0): 18, 7, 15, (571,338,0): 18, 7, 15, (571,339,0): 17, 6, 14, (571,340,0): 17, 6, 14, (571,341,0): 16, 5, 13, (571,342,0): 16, 5, 13, (571,343,0): 16, 5, 13, (571,344,0): 16, 5, 13, (571,345,0): 16, 5, 13, (571,346,0): 16, 5, 13, (571,347,0): 15, 4, 12, (571,348,0): 15, 4, 12, (571,349,0): 14, 3, 11, (571,350,0): 14, 3, 11, (571,351,0): 14, 3, 11, (571,352,0): 10, 0, 8, (571,353,0): 11, 1, 9, (571,354,0): 11, 1, 9, (571,355,0): 12, 2, 10, (571,356,0): 13, 3, 11, (571,357,0): 14, 4, 12, (571,358,0): 14, 4, 12, (571,359,0): 15, 5, 13, (571,360,0): 13, 3, 11, (571,361,0): 13, 3, 11, (571,362,0): 13, 3, 11, (571,363,0): 13, 3, 11, (571,364,0): 13, 3, 11, (571,365,0): 13, 3, 11, (571,366,0): 13, 3, 11, (571,367,0): 13, 3, 11, (571,368,0): 10, 3, 11, (571,369,0): 10, 3, 11, (571,370,0): 10, 3, 11, (571,371,0): 9, 2, 10, (571,372,0): 9, 2, 10, (571,373,0): 8, 1, 9, (571,374,0): 8, 1, 9, (571,375,0): 8, 1, 9, (571,376,0): 9, 2, 10, (571,377,0): 9, 2, 10, (571,378,0): 9, 2, 10, (571,379,0): 9, 2, 10, (571,380,0): 9, 2, 10, (571,381,0): 9, 2, 10, (571,382,0): 9, 2, 10, (571,383,0): 9, 2, 10, (571,384,0): 8, 1, 8, (571,385,0): 8, 1, 8, (571,386,0): 9, 2, 9, (571,387,0): 10, 3, 10, (571,388,0): 13, 4, 9, (571,389,0): 14, 5, 10, (571,390,0): 15, 6, 9, (571,391,0): 15, 6, 9, (571,392,0): 20, 9, 13, (571,393,0): 20, 9, 13, (571,394,0): 21, 9, 11, (571,395,0): 21, 9, 11, (571,396,0): 21, 9, 9, (571,397,0): 21, 9, 9, (571,398,0): 23, 9, 9, (571,399,0): 23, 9, 9, (571,400,0): 23, 11, 11, (571,401,0): 23, 11, 11, (571,402,0): 25, 11, 11, (571,403,0): 25, 11, 11, (571,404,0): 25, 11, 11, (571,405,0): 25, 11, 11, (571,406,0): 26, 10, 11, (571,407,0): 26, 10, 11, (571,408,0): 28, 9, 11, (571,409,0): 29, 10, 12, (571,410,0): 30, 11, 13, (571,411,0): 31, 12, 14, (571,412,0): 33, 13, 15, (571,413,0): 34, 14, 16, (571,414,0): 35, 15, 17, (571,415,0): 35, 15, 16, (571,416,0): 33, 12, 11, (571,417,0): 33, 12, 11, (571,418,0): 35, 14, 13, (571,419,0): 36, 15, 14, (571,420,0): 38, 17, 16, (571,421,0): 40, 19, 18, (571,422,0): 42, 21, 20, (571,423,0): 42, 21, 20, (571,424,0): 41, 20, 19, (571,425,0): 40, 19, 18, (571,426,0): 40, 19, 18, (571,427,0): 39, 18, 17, (571,428,0): 39, 18, 17, (571,429,0): 38, 17, 16, (571,430,0): 38, 17, 16, (571,431,0): 37, 17, 16, (571,432,0): 33, 18, 15, (571,433,0): 31, 17, 14, (571,434,0): 29, 15, 14, (571,435,0): 27, 13, 12, (571,436,0): 26, 12, 11, (571,437,0): 26, 12, 11, (571,438,0): 27, 13, 13, (571,439,0): 27, 13, 13, (571,440,0): 22, 7, 10, (571,441,0): 22, 7, 10, (571,442,0): 22, 7, 10, (571,443,0): 21, 6, 9, (571,444,0): 21, 6, 11, (571,445,0): 20, 5, 10, (571,446,0): 20, 5, 10, (571,447,0): 18, 6, 10, (571,448,0): 16, 4, 6, (571,449,0): 15, 5, 6, (571,450,0): 14, 4, 5, (571,451,0): 14, 4, 5, (571,452,0): 13, 3, 4, (571,453,0): 13, 3, 4, (571,454,0): 13, 3, 4, (571,455,0): 12, 2, 3, (571,456,0): 10, 0, 1, (571,457,0): 13, 3, 4, (571,458,0): 16, 6, 7, (571,459,0): 17, 7, 8, (571,460,0): 14, 4, 5, (571,461,0): 12, 2, 3, (571,462,0): 12, 2, 3, (571,463,0): 13, 3, 4, (571,464,0): 17, 3, 3, (571,465,0): 17, 3, 3, (571,466,0): 18, 4, 4, (571,467,0): 19, 5, 5, (571,468,0): 20, 6, 6, (571,469,0): 21, 7, 7, (571,470,0): 22, 8, 8, (571,471,0): 22, 8, 8, (571,472,0): 23, 9, 9, (571,473,0): 22, 8, 8, (571,474,0): 21, 7, 7, (571,475,0): 21, 7, 7, (571,476,0): 22, 8, 8, (571,477,0): 23, 9, 9, (571,478,0): 24, 10, 10, (571,479,0): 26, 10, 10, (571,480,0): 28, 10, 8, (571,481,0): 31, 11, 10, (571,482,0): 33, 13, 12, (571,483,0): 34, 14, 13, (571,484,0): 37, 16, 15, (571,485,0): 37, 16, 15, (571,486,0): 37, 16, 15, (571,487,0): 39, 15, 15, (571,488,0): 41, 17, 17, (571,489,0): 43, 17, 18, (571,490,0): 44, 18, 19, (571,491,0): 47, 18, 20, (571,492,0): 48, 19, 21, (571,493,0): 47, 18, 20, (571,494,0): 46, 17, 19, (571,495,0): 46, 17, 19, (571,496,0): 41, 15, 14, (571,497,0): 39, 15, 13, (571,498,0): 36, 15, 12, (571,499,0): 34, 13, 10, (571,500,0): 33, 12, 11, (571,501,0): 31, 10, 9, (571,502,0): 29, 9, 8, (571,503,0): 28, 8, 7, (571,504,0): 28, 10, 10, (571,505,0): 28, 10, 10, (571,506,0): 28, 9, 11, (571,507,0): 28, 9, 11, (571,508,0): 26, 10, 11, (571,509,0): 26, 10, 11, (571,510,0): 26, 10, 13, (571,511,0): 26, 10, 13, (571,512,0): 28, 8, 10, (571,513,0): 28, 8, 10, (571,514,0): 27, 7, 9, (571,515,0): 27, 7, 9, (571,516,0): 25, 6, 10, (571,517,0): 25, 6, 10, (571,518,0): 24, 5, 11, (571,519,0): 24, 5, 11, (571,520,0): 22, 5, 11, (571,521,0): 22, 5, 11, (571,522,0): 20, 5, 12, (571,523,0): 20, 5, 12, (571,524,0): 19, 3, 13, (571,525,0): 19, 3, 13, (571,526,0): 16, 3, 12, (571,527,0): 16, 3, 12, (571,528,0): 16, 4, 14, (571,529,0): 16, 4, 14, (571,530,0): 16, 4, 14, (571,531,0): 15, 3, 13, (571,532,0): 14, 2, 12, (571,533,0): 14, 2, 12, (571,534,0): 14, 2, 12, (571,535,0): 13, 1, 11, (571,536,0): 12, 0, 10, (571,537,0): 12, 0, 10, (571,538,0): 12, 0, 10, (571,539,0): 12, 0, 10, (571,540,0): 12, 0, 10, (571,541,0): 12, 0, 10, (571,542,0): 12, 0, 10, (571,543,0): 11, 1, 10, (571,544,0): 11, 1, 10, (571,545,0): 9, 2, 10, (571,546,0): 9, 2, 10, (571,547,0): 9, 2, 10, (571,548,0): 9, 2, 10, (571,549,0): 9, 2, 10, (571,550,0): 9, 2, 10, (571,551,0): 9, 2, 10, (571,552,0): 11, 4, 12, (571,553,0): 11, 4, 12, (571,554,0): 11, 4, 12, (571,555,0): 12, 5, 13, (571,556,0): 13, 6, 14, (571,557,0): 13, 6, 14, (571,558,0): 13, 6, 14, (571,559,0): 13, 8, 15, (571,560,0): 12, 6, 16, (571,561,0): 10, 7, 16, (571,562,0): 11, 6, 13, (571,563,0): 11, 6, 13, (571,564,0): 11, 6, 13, (571,565,0): 13, 8, 15, (571,566,0): 15, 8, 15, (571,567,0): 16, 9, 16, (571,568,0): 25, 16, 21, (571,569,0): 26, 17, 22, (571,570,0): 28, 19, 24, (571,571,0): 30, 21, 26, (571,572,0): 32, 21, 25, (571,573,0): 32, 21, 25, (571,574,0): 32, 21, 25, (571,575,0): 32, 21, 25, (571,576,0): 31, 20, 24, (571,577,0): 31, 20, 24, (571,578,0): 30, 19, 23, (571,579,0): 29, 18, 22, (571,580,0): 28, 17, 21, (571,581,0): 27, 16, 20, (571,582,0): 26, 15, 19, (571,583,0): 25, 14, 18, (571,584,0): 31, 20, 24, (571,585,0): 30, 19, 23, (571,586,0): 30, 19, 23, (571,587,0): 29, 18, 22, (571,588,0): 28, 17, 21, (571,589,0): 27, 16, 20, (571,590,0): 27, 16, 20, (571,591,0): 27, 15, 19, (571,592,0): 33, 17, 27, (571,593,0): 32, 16, 26, (571,594,0): 32, 17, 24, (571,595,0): 31, 16, 21, (571,596,0): 31, 16, 21, (571,597,0): 30, 15, 18, (571,598,0): 30, 16, 16, (571,599,0): 30, 16, 16, (572,0,0): 38, 57, 71, (572,1,0): 38, 57, 71, (572,2,0): 38, 57, 71, (572,3,0): 38, 57, 71, (572,4,0): 38, 57, 71, (572,5,0): 38, 57, 71, (572,6,0): 38, 57, 71, (572,7,0): 38, 57, 71, (572,8,0): 40, 59, 73, (572,9,0): 40, 59, 73, (572,10,0): 40, 59, 73, (572,11,0): 40, 59, 73, (572,12,0): 40, 59, 73, (572,13,0): 40, 59, 73, (572,14,0): 40, 59, 73, (572,15,0): 40, 59, 73, (572,16,0): 42, 60, 74, (572,17,0): 42, 60, 74, (572,18,0): 42, 60, 74, (572,19,0): 42, 60, 74, (572,20,0): 42, 60, 74, (572,21,0): 42, 60, 74, (572,22,0): 42, 60, 74, (572,23,0): 42, 60, 74, (572,24,0): 45, 63, 77, (572,25,0): 45, 63, 77, (572,26,0): 45, 63, 77, (572,27,0): 45, 63, 77, (572,28,0): 45, 63, 77, (572,29,0): 45, 63, 77, (572,30,0): 45, 63, 77, (572,31,0): 45, 63, 75, (572,32,0): 44, 60, 73, (572,33,0): 44, 61, 71, (572,34,0): 47, 61, 72, (572,35,0): 47, 61, 72, (572,36,0): 49, 61, 73, (572,37,0): 50, 62, 74, (572,38,0): 52, 62, 74, (572,39,0): 53, 63, 75, (572,40,0): 56, 62, 76, (572,41,0): 56, 62, 76, (572,42,0): 59, 62, 77, (572,43,0): 59, 62, 77, (572,44,0): 61, 63, 78, (572,45,0): 61, 63, 78, (572,46,0): 64, 63, 79, (572,47,0): 64, 63, 79, (572,48,0): 62, 64, 77, (572,49,0): 62, 64, 77, (572,50,0): 62, 64, 77, (572,51,0): 63, 65, 78, (572,52,0): 65, 64, 78, (572,53,0): 66, 65, 79, (572,54,0): 67, 65, 79, (572,55,0): 68, 66, 80, (572,56,0): 68, 66, 80, (572,57,0): 68, 66, 80, (572,58,0): 69, 65, 80, (572,59,0): 69, 65, 80, (572,60,0): 71, 64, 80, (572,61,0): 71, 64, 80, (572,62,0): 71, 64, 80, (572,63,0): 69, 65, 80, (572,64,0): 69, 65, 80, (572,65,0): 68, 66, 80, (572,66,0): 68, 66, 80, (572,67,0): 68, 66, 80, (572,68,0): 68, 66, 80, (572,69,0): 68, 66, 80, (572,70,0): 68, 66, 80, (572,71,0): 68, 66, 80, (572,72,0): 68, 66, 80, (572,73,0): 68, 66, 80, (572,74,0): 68, 66, 80, (572,75,0): 69, 67, 81, (572,76,0): 69, 67, 81, (572,77,0): 70, 68, 82, (572,78,0): 70, 68, 82, (572,79,0): 70, 69, 83, (572,80,0): 69, 68, 84, (572,81,0): 66, 68, 83, (572,82,0): 65, 67, 82, (572,83,0): 64, 66, 81, (572,84,0): 63, 65, 80, (572,85,0): 63, 65, 80, (572,86,0): 64, 66, 81, (572,87,0): 64, 66, 81, (572,88,0): 68, 70, 85, (572,89,0): 68, 70, 85, (572,90,0): 69, 71, 86, (572,91,0): 70, 72, 87, (572,92,0): 71, 73, 88, (572,93,0): 72, 74, 89, (572,94,0): 73, 75, 90, (572,95,0): 72, 75, 90, (572,96,0): 68, 74, 90, (572,97,0): 67, 74, 90, (572,98,0): 67, 74, 92, (572,99,0): 67, 74, 92, (572,100,0): 67, 74, 92, (572,101,0): 67, 74, 92, (572,102,0): 66, 74, 93, (572,103,0): 66, 74, 93, (572,104,0): 64, 75, 95, (572,105,0): 64, 75, 95, (572,106,0): 64, 75, 95, (572,107,0): 64, 77, 96, (572,108,0): 64, 76, 98, (572,109,0): 65, 77, 99, (572,110,0): 65, 77, 99, (572,111,0): 67, 78, 98, (572,112,0): 68, 76, 97, (572,113,0): 69, 76, 95, (572,114,0): 69, 76, 95, (572,115,0): 69, 76, 95, (572,116,0): 69, 76, 95, (572,117,0): 69, 76, 95, (572,118,0): 69, 76, 95, (572,119,0): 69, 76, 95, (572,120,0): 71, 78, 97, (572,121,0): 70, 77, 96, (572,122,0): 70, 77, 96, (572,123,0): 70, 77, 96, (572,124,0): 70, 77, 96, (572,125,0): 72, 79, 98, (572,126,0): 73, 80, 99, (572,127,0): 75, 80, 100, (572,128,0): 79, 80, 100, (572,129,0): 81, 79, 100, (572,130,0): 81, 79, 100, (572,131,0): 81, 79, 100, (572,132,0): 81, 79, 100, (572,133,0): 81, 79, 100, (572,134,0): 81, 79, 100, (572,135,0): 81, 79, 100, (572,136,0): 79, 77, 98, (572,137,0): 79, 77, 98, (572,138,0): 78, 76, 97, (572,139,0): 78, 76, 97, (572,140,0): 77, 75, 96, (572,141,0): 76, 74, 95, (572,142,0): 75, 73, 94, (572,143,0): 73, 74, 94, (572,144,0): 73, 79, 101, (572,145,0): 73, 81, 102, (572,146,0): 73, 84, 106, (572,147,0): 74, 85, 107, (572,148,0): 74, 84, 109, (572,149,0): 74, 84, 109, (572,150,0): 72, 84, 110, (572,151,0): 71, 83, 109, (572,152,0): 72, 83, 113, (572,153,0): 70, 84, 113, (572,154,0): 70, 83, 115, (572,155,0): 71, 84, 116, (572,156,0): 70, 85, 118, (572,157,0): 71, 86, 119, (572,158,0): 71, 85, 120, (572,159,0): 71, 85, 120, (572,160,0): 72, 86, 121, (572,161,0): 72, 86, 121, (572,162,0): 72, 86, 121, (572,163,0): 73, 87, 122, (572,164,0): 73, 87, 122, (572,165,0): 74, 88, 123, (572,166,0): 74, 88, 123, (572,167,0): 74, 88, 123, (572,168,0): 74, 88, 123, (572,169,0): 74, 88, 123, (572,170,0): 74, 88, 123, (572,171,0): 74, 88, 123, (572,172,0): 74, 88, 123, (572,173,0): 74, 88, 123, (572,174,0): 74, 88, 123, (572,175,0): 75, 87, 125, (572,176,0): 78, 87, 130, (572,177,0): 79, 86, 130, (572,178,0): 79, 86, 132, (572,179,0): 79, 86, 130, (572,180,0): 78, 86, 132, (572,181,0): 78, 87, 130, (572,182,0): 76, 87, 132, (572,183,0): 76, 88, 130, (572,184,0): 73, 84, 129, (572,185,0): 74, 86, 128, (572,186,0): 74, 87, 131, (572,187,0): 75, 88, 130, (572,188,0): 75, 90, 133, (572,189,0): 76, 91, 132, (572,190,0): 77, 92, 135, (572,191,0): 78, 93, 134, (572,192,0): 81, 95, 134, (572,193,0): 81, 95, 134, (572,194,0): 81, 94, 136, (572,195,0): 79, 94, 135, (572,196,0): 80, 93, 135, (572,197,0): 78, 93, 134, (572,198,0): 78, 93, 136, (572,199,0): 75, 92, 135, (572,200,0): 74, 91, 135, (572,201,0): 73, 92, 135, (572,202,0): 73, 92, 135, (572,203,0): 74, 93, 136, (572,204,0): 74, 92, 138, (572,205,0): 73, 94, 139, (572,206,0): 75, 93, 139, (572,207,0): 74, 95, 142, (572,208,0): 74, 97, 147, (572,209,0): 72, 98, 147, (572,210,0): 74, 97, 149, (572,211,0): 72, 98, 149, (572,212,0): 74, 97, 149, (572,213,0): 72, 98, 149, (572,214,0): 74, 97, 149, (572,215,0): 72, 97, 151, (572,216,0): 76, 99, 153, (572,217,0): 74, 99, 155, (572,218,0): 76, 98, 155, (572,219,0): 74, 99, 155, (572,220,0): 76, 98, 156, (572,221,0): 74, 99, 156, (572,222,0): 77, 99, 157, (572,223,0): 74, 100, 159, (572,224,0): 70, 100, 160, (572,225,0): 68, 102, 163, (572,226,0): 69, 103, 166, (572,227,0): 70, 105, 169, (572,228,0): 71, 106, 174, (572,229,0): 73, 107, 178, (572,230,0): 74, 108, 182, (572,231,0): 73, 109, 185, (572,232,0): 71, 107, 185, (572,233,0): 69, 106, 184, (572,234,0): 68, 105, 183, (572,235,0): 68, 105, 183, (572,236,0): 69, 106, 184, (572,237,0): 69, 108, 183, (572,238,0): 71, 110, 185, (572,239,0): 72, 111, 188, (572,240,0): 71, 111, 196, (572,241,0): 70, 110, 198, (572,242,0): 71, 111, 198, (572,243,0): 74, 114, 201, (572,244,0): 78, 118, 203, (572,245,0): 77, 117, 202, (572,246,0): 73, 113, 198, (572,247,0): 68, 109, 191, (572,248,0): 71, 112, 194, (572,249,0): 71, 112, 192, (572,250,0): 71, 112, 192, (572,251,0): 71, 112, 191, (572,252,0): 71, 112, 191, (572,253,0): 71, 113, 189, (572,254,0): 71, 112, 191, (572,255,0): 71, 112, 191, (572,256,0): 71, 112, 192, (572,257,0): 71, 112, 192, (572,258,0): 71, 112, 191, (572,259,0): 70, 112, 188, (572,260,0): 70, 112, 186, (572,261,0): 69, 112, 181, (572,262,0): 72, 111, 180, (572,263,0): 73, 111, 176, (572,264,0): 71, 105, 168, (572,265,0): 75, 105, 167, (572,266,0): 80, 106, 165, (572,267,0): 86, 106, 165, (572,268,0): 91, 107, 166, (572,269,0): 95, 107, 165, (572,270,0): 97, 107, 166, (572,271,0): 102, 107, 163, (572,272,0): 112, 107, 161, (572,273,0): 113, 103, 155, (572,274,0): 111, 99, 147, (572,275,0): 109, 93, 140, (572,276,0): 106, 87, 132, (572,277,0): 104, 81, 123, (572,278,0): 102, 76, 113, (572,279,0): 101, 74, 107, (572,280,0): 95, 66, 97, (572,281,0): 94, 64, 92, (572,282,0): 92, 59, 88, (572,283,0): 86, 53, 80, (572,284,0): 80, 47, 74, (572,285,0): 75, 42, 69, (572,286,0): 71, 38, 65, (572,287,0): 66, 36, 60, (572,288,0): 66, 39, 58, (572,289,0): 65, 41, 57, (572,290,0): 68, 41, 60, (572,291,0): 65, 41, 57, (572,292,0): 63, 39, 55, (572,293,0): 59, 36, 52, (572,294,0): 58, 36, 49, (572,295,0): 56, 36, 47, (572,296,0): 57, 37, 48, (572,297,0): 54, 37, 45, (572,298,0): 52, 35, 43, (572,299,0): 49, 34, 41, (572,300,0): 48, 33, 38, (572,301,0): 46, 31, 36, (572,302,0): 43, 31, 35, (572,303,0): 45, 30, 33, (572,304,0): 45, 29, 30, (572,305,0): 43, 27, 27, (572,306,0): 40, 24, 25, (572,307,0): 40, 24, 25, (572,308,0): 42, 26, 27, (572,309,0): 41, 25, 26, (572,310,0): 39, 23, 26, (572,311,0): 36, 19, 25, (572,312,0): 34, 17, 23, (572,313,0): 33, 16, 24, (572,314,0): 32, 15, 25, (572,315,0): 31, 14, 24, (572,316,0): 29, 12, 22, (572,317,0): 28, 11, 21, (572,318,0): 27, 9, 21, (572,319,0): 26, 9, 19, (572,320,0): 28, 12, 22, (572,321,0): 28, 12, 22, (572,322,0): 28, 12, 22, (572,323,0): 28, 12, 22, (572,324,0): 28, 12, 22, (572,325,0): 28, 12, 22, (572,326,0): 28, 12, 22, (572,327,0): 28, 12, 22, (572,328,0): 23, 7, 17, (572,329,0): 23, 7, 17, (572,330,0): 23, 7, 17, (572,331,0): 23, 7, 17, (572,332,0): 22, 6, 16, (572,333,0): 22, 6, 16, (572,334,0): 21, 5, 15, (572,335,0): 19, 6, 15, (572,336,0): 19, 6, 15, (572,337,0): 18, 7, 15, (572,338,0): 17, 6, 14, (572,339,0): 17, 6, 14, (572,340,0): 16, 5, 13, (572,341,0): 16, 5, 13, (572,342,0): 15, 4, 12, (572,343,0): 15, 4, 12, (572,344,0): 16, 5, 13, (572,345,0): 16, 5, 13, (572,346,0): 16, 5, 13, (572,347,0): 15, 4, 12, (572,348,0): 15, 4, 12, (572,349,0): 14, 3, 11, (572,350,0): 14, 3, 11, (572,351,0): 14, 3, 11, (572,352,0): 10, 0, 8, (572,353,0): 9, 2, 9, (572,354,0): 9, 2, 9, (572,355,0): 10, 3, 10, (572,356,0): 11, 4, 11, (572,357,0): 12, 5, 12, (572,358,0): 12, 5, 12, (572,359,0): 13, 6, 13, (572,360,0): 11, 4, 11, (572,361,0): 11, 4, 11, (572,362,0): 11, 4, 11, (572,363,0): 11, 4, 11, (572,364,0): 11, 4, 11, (572,365,0): 11, 4, 11, (572,366,0): 11, 4, 11, (572,367,0): 11, 4, 11, (572,368,0): 10, 3, 11, (572,369,0): 10, 3, 11, (572,370,0): 10, 3, 11, (572,371,0): 9, 2, 10, (572,372,0): 9, 2, 10, (572,373,0): 8, 1, 9, (572,374,0): 8, 1, 9, (572,375,0): 8, 1, 9, (572,376,0): 9, 2, 10, (572,377,0): 9, 2, 10, (572,378,0): 9, 2, 10, (572,379,0): 9, 2, 10, (572,380,0): 9, 2, 10, (572,381,0): 9, 2, 10, (572,382,0): 9, 2, 10, (572,383,0): 9, 2, 10, (572,384,0): 8, 1, 8, (572,385,0): 8, 1, 8, (572,386,0): 9, 2, 9, (572,387,0): 10, 3, 10, (572,388,0): 13, 4, 9, (572,389,0): 14, 5, 10, (572,390,0): 15, 6, 9, (572,391,0): 15, 6, 9, (572,392,0): 20, 9, 13, (572,393,0): 20, 9, 13, (572,394,0): 21, 9, 11, (572,395,0): 21, 9, 11, (572,396,0): 21, 9, 9, (572,397,0): 21, 9, 9, (572,398,0): 23, 9, 9, (572,399,0): 23, 9, 9, (572,400,0): 24, 12, 12, (572,401,0): 24, 12, 12, (572,402,0): 26, 12, 12, (572,403,0): 26, 12, 12, (572,404,0): 26, 12, 12, (572,405,0): 26, 12, 12, (572,406,0): 27, 11, 12, (572,407,0): 27, 11, 12, (572,408,0): 29, 10, 12, (572,409,0): 29, 10, 12, (572,410,0): 30, 11, 13, (572,411,0): 31, 12, 14, (572,412,0): 33, 13, 15, (572,413,0): 34, 14, 16, (572,414,0): 35, 15, 17, (572,415,0): 36, 16, 17, (572,416,0): 34, 13, 12, (572,417,0): 34, 13, 10, (572,418,0): 36, 15, 12, (572,419,0): 38, 17, 14, (572,420,0): 40, 19, 16, (572,421,0): 41, 20, 17, (572,422,0): 43, 22, 19, (572,423,0): 43, 22, 19, (572,424,0): 41, 20, 17, (572,425,0): 41, 20, 17, (572,426,0): 41, 20, 17, (572,427,0): 40, 19, 16, (572,428,0): 40, 19, 16, (572,429,0): 39, 18, 15, (572,430,0): 39, 18, 15, (572,431,0): 37, 18, 14, (572,432,0): 34, 19, 16, (572,433,0): 32, 18, 15, (572,434,0): 30, 16, 15, (572,435,0): 28, 14, 13, (572,436,0): 27, 13, 12, (572,437,0): 26, 12, 11, (572,438,0): 27, 13, 13, (572,439,0): 27, 13, 13, (572,440,0): 23, 8, 11, (572,441,0): 23, 8, 11, (572,442,0): 22, 7, 10, (572,443,0): 22, 7, 10, (572,444,0): 21, 6, 11, (572,445,0): 21, 6, 11, (572,446,0): 20, 5, 10, (572,447,0): 18, 6, 10, (572,448,0): 16, 4, 8, (572,449,0): 15, 4, 8, (572,450,0): 14, 3, 7, (572,451,0): 14, 3, 7, (572,452,0): 13, 2, 6, (572,453,0): 13, 2, 6, (572,454,0): 13, 2, 6, (572,455,0): 12, 1, 5, (572,456,0): 10, 0, 3, (572,457,0): 13, 2, 6, (572,458,0): 16, 5, 9, (572,459,0): 17, 6, 10, (572,460,0): 14, 3, 7, (572,461,0): 12, 1, 5, (572,462,0): 12, 1, 5, (572,463,0): 13, 3, 4, (572,464,0): 17, 3, 3, (572,465,0): 17, 3, 3, (572,466,0): 18, 4, 4, (572,467,0): 19, 5, 5, (572,468,0): 20, 6, 6, (572,469,0): 21, 7, 7, (572,470,0): 22, 8, 8, (572,471,0): 22, 8, 8, (572,472,0): 22, 8, 8, (572,473,0): 22, 8, 8, (572,474,0): 21, 7, 7, (572,475,0): 21, 7, 7, (572,476,0): 21, 7, 7, (572,477,0): 22, 8, 8, (572,478,0): 24, 10, 10, (572,479,0): 25, 11, 11, (572,480,0): 25, 9, 9, (572,481,0): 28, 10, 10, (572,482,0): 30, 12, 12, (572,483,0): 31, 13, 13, (572,484,0): 33, 13, 14, (572,485,0): 33, 13, 14, (572,486,0): 33, 13, 14, (572,487,0): 34, 12, 14, (572,488,0): 37, 15, 17, (572,489,0): 40, 15, 18, (572,490,0): 42, 17, 20, (572,491,0): 44, 18, 21, (572,492,0): 45, 19, 22, (572,493,0): 45, 19, 22, (572,494,0): 45, 19, 22, (572,495,0): 44, 18, 21, (572,496,0): 40, 16, 16, (572,497,0): 39, 15, 13, (572,498,0): 36, 15, 12, (572,499,0): 34, 13, 10, (572,500,0): 33, 12, 11, (572,501,0): 31, 10, 9, (572,502,0): 29, 9, 8, (572,503,0): 28, 8, 7, (572,504,0): 26, 8, 8, (572,505,0): 26, 8, 8, (572,506,0): 26, 7, 9, (572,507,0): 26, 7, 9, (572,508,0): 24, 8, 9, (572,509,0): 24, 8, 9, (572,510,0): 24, 8, 11, (572,511,0): 24, 8, 11, (572,512,0): 28, 8, 10, (572,513,0): 28, 8, 10, (572,514,0): 27, 7, 9, (572,515,0): 27, 7, 9, (572,516,0): 25, 6, 10, (572,517,0): 25, 6, 10, (572,518,0): 24, 5, 11, (572,519,0): 24, 5, 11, (572,520,0): 22, 5, 11, (572,521,0): 22, 5, 11, (572,522,0): 20, 5, 12, (572,523,0): 20, 5, 12, (572,524,0): 19, 3, 13, (572,525,0): 19, 3, 13, (572,526,0): 16, 3, 12, (572,527,0): 16, 3, 12, (572,528,0): 17, 5, 15, (572,529,0): 16, 4, 14, (572,530,0): 16, 4, 14, (572,531,0): 16, 4, 14, (572,532,0): 15, 3, 13, (572,533,0): 14, 2, 12, (572,534,0): 14, 2, 12, (572,535,0): 14, 2, 12, (572,536,0): 12, 0, 10, (572,537,0): 12, 0, 10, (572,538,0): 12, 0, 10, (572,539,0): 12, 0, 10, (572,540,0): 12, 0, 10, (572,541,0): 12, 0, 10, (572,542,0): 12, 0, 10, (572,543,0): 11, 1, 10, (572,544,0): 14, 4, 13, (572,545,0): 12, 5, 13, (572,546,0): 12, 5, 13, (572,547,0): 12, 5, 13, (572,548,0): 12, 5, 13, (572,549,0): 12, 5, 13, (572,550,0): 12, 5, 13, (572,551,0): 12, 5, 13, (572,552,0): 10, 3, 11, (572,553,0): 11, 4, 12, (572,554,0): 11, 4, 12, (572,555,0): 11, 4, 12, (572,556,0): 12, 5, 13, (572,557,0): 13, 6, 14, (572,558,0): 13, 6, 14, (572,559,0): 12, 7, 14, (572,560,0): 12, 6, 16, (572,561,0): 10, 7, 16, (572,562,0): 11, 6, 13, (572,563,0): 11, 6, 13, (572,564,0): 11, 6, 13, (572,565,0): 13, 8, 15, (572,566,0): 15, 8, 15, (572,567,0): 16, 9, 16, (572,568,0): 25, 16, 21, (572,569,0): 26, 17, 22, (572,570,0): 28, 19, 24, (572,571,0): 29, 20, 25, (572,572,0): 32, 21, 25, (572,573,0): 32, 21, 25, (572,574,0): 32, 21, 25, (572,575,0): 31, 20, 24, (572,576,0): 32, 21, 25, (572,577,0): 31, 20, 24, (572,578,0): 30, 19, 23, (572,579,0): 29, 18, 22, (572,580,0): 28, 17, 21, (572,581,0): 27, 16, 20, (572,582,0): 26, 15, 19, (572,583,0): 26, 15, 19, (572,584,0): 31, 20, 24, (572,585,0): 30, 19, 23, (572,586,0): 30, 19, 23, (572,587,0): 29, 18, 22, (572,588,0): 28, 17, 21, (572,589,0): 27, 16, 20, (572,590,0): 27, 16, 20, (572,591,0): 26, 15, 19, (572,592,0): 31, 18, 27, (572,593,0): 31, 18, 27, (572,594,0): 31, 18, 25, (572,595,0): 30, 18, 22, (572,596,0): 30, 18, 22, (572,597,0): 29, 17, 19, (572,598,0): 29, 17, 17, (572,599,0): 28, 16, 16, (573,0,0): 38, 57, 71, (573,1,0): 38, 57, 71, (573,2,0): 38, 57, 71, (573,3,0): 38, 57, 71, (573,4,0): 38, 57, 71, (573,5,0): 38, 57, 71, (573,6,0): 38, 57, 71, (573,7,0): 38, 57, 71, (573,8,0): 40, 59, 73, (573,9,0): 40, 59, 73, (573,10,0): 40, 59, 73, (573,11,0): 40, 59, 73, (573,12,0): 40, 59, 73, (573,13,0): 40, 59, 73, (573,14,0): 40, 59, 73, (573,15,0): 40, 59, 73, (573,16,0): 41, 59, 73, (573,17,0): 41, 59, 73, (573,18,0): 41, 59, 73, (573,19,0): 41, 59, 73, (573,20,0): 41, 59, 73, (573,21,0): 41, 59, 73, (573,22,0): 41, 59, 73, (573,23,0): 41, 59, 73, (573,24,0): 43, 61, 75, (573,25,0): 43, 61, 75, (573,26,0): 43, 61, 75, (573,27,0): 43, 61, 75, (573,28,0): 43, 61, 75, (573,29,0): 43, 61, 75, (573,30,0): 43, 61, 75, (573,31,0): 43, 61, 73, (573,32,0): 43, 59, 72, (573,33,0): 43, 60, 70, (573,34,0): 46, 60, 71, (573,35,0): 47, 61, 72, (573,36,0): 49, 61, 73, (573,37,0): 50, 62, 74, (573,38,0): 52, 62, 74, (573,39,0): 53, 63, 75, (573,40,0): 56, 62, 76, (573,41,0): 56, 62, 76, (573,42,0): 59, 62, 77, (573,43,0): 59, 62, 77, (573,44,0): 61, 63, 78, (573,45,0): 61, 63, 78, (573,46,0): 64, 63, 79, (573,47,0): 64, 63, 79, (573,48,0): 61, 63, 76, (573,49,0): 62, 64, 77, (573,50,0): 62, 64, 77, (573,51,0): 62, 64, 77, (573,52,0): 65, 64, 78, (573,53,0): 66, 65, 79, (573,54,0): 67, 65, 79, (573,55,0): 67, 65, 79, (573,56,0): 68, 66, 80, (573,57,0): 68, 66, 80, (573,58,0): 69, 65, 80, (573,59,0): 69, 65, 80, (573,60,0): 71, 64, 80, (573,61,0): 71, 64, 80, (573,62,0): 71, 64, 80, (573,63,0): 69, 65, 80, (573,64,0): 68, 64, 79, (573,65,0): 67, 65, 79, (573,66,0): 67, 65, 79, (573,67,0): 67, 65, 79, (573,68,0): 67, 65, 79, (573,69,0): 67, 65, 79, (573,70,0): 67, 65, 79, (573,71,0): 67, 65, 79, (573,72,0): 67, 65, 79, (573,73,0): 68, 66, 80, (573,74,0): 68, 66, 80, (573,75,0): 68, 66, 80, (573,76,0): 69, 67, 81, (573,77,0): 70, 68, 82, (573,78,0): 70, 68, 82, (573,79,0): 69, 68, 82, (573,80,0): 68, 67, 83, (573,81,0): 66, 68, 83, (573,82,0): 65, 67, 82, (573,83,0): 64, 66, 81, (573,84,0): 64, 66, 81, (573,85,0): 64, 66, 81, (573,86,0): 63, 65, 80, (573,87,0): 63, 65, 80, (573,88,0): 67, 69, 84, (573,89,0): 68, 70, 85, (573,90,0): 69, 71, 86, (573,91,0): 70, 72, 87, (573,92,0): 71, 73, 88, (573,93,0): 72, 74, 89, (573,94,0): 73, 75, 90, (573,95,0): 72, 75, 90, (573,96,0): 67, 73, 89, (573,97,0): 66, 73, 89, (573,98,0): 66, 73, 91, (573,99,0): 66, 73, 91, (573,100,0): 66, 73, 91, (573,101,0): 66, 73, 91, (573,102,0): 65, 73, 92, (573,103,0): 65, 73, 92, (573,104,0): 63, 74, 94, (573,105,0): 64, 75, 95, (573,106,0): 63, 76, 95, (573,107,0): 63, 76, 95, (573,108,0): 64, 76, 98, (573,109,0): 65, 77, 99, (573,110,0): 65, 77, 99, (573,111,0): 66, 77, 97, (573,112,0): 67, 75, 96, (573,113,0): 68, 75, 94, (573,114,0): 68, 75, 94, (573,115,0): 68, 75, 94, (573,116,0): 68, 75, 94, (573,117,0): 68, 75, 94, (573,118,0): 68, 75, 94, (573,119,0): 68, 75, 94, (573,120,0): 69, 76, 95, (573,121,0): 69, 76, 95, (573,122,0): 69, 76, 95, (573,123,0): 69, 76, 95, (573,124,0): 70, 77, 96, (573,125,0): 72, 79, 98, (573,126,0): 73, 80, 99, (573,127,0): 76, 81, 101, (573,128,0): 79, 80, 100, (573,129,0): 81, 79, 100, (573,130,0): 82, 79, 100, (573,131,0): 81, 79, 100, (573,132,0): 82, 79, 100, (573,133,0): 81, 79, 100, (573,134,0): 82, 79, 100, (573,135,0): 81, 79, 100, (573,136,0): 79, 76, 97, (573,137,0): 77, 75, 96, (573,138,0): 78, 75, 96, (573,139,0): 77, 75, 96, (573,140,0): 78, 75, 96, (573,141,0): 76, 74, 95, (573,142,0): 77, 74, 95, (573,143,0): 74, 75, 95, (573,144,0): 74, 81, 100, (573,145,0): 74, 82, 103, (573,146,0): 73, 84, 106, (573,147,0): 73, 84, 106, (573,148,0): 74, 84, 109, (573,149,0): 73, 83, 108, (573,150,0): 71, 83, 109, (573,151,0): 70, 82, 108, (573,152,0): 69, 83, 112, (573,153,0): 69, 83, 112, (573,154,0): 69, 82, 114, (573,155,0): 70, 83, 115, (573,156,0): 69, 84, 117, (573,157,0): 70, 85, 118, (573,158,0): 70, 84, 119, (573,159,0): 70, 84, 119, (573,160,0): 70, 86, 120, (573,161,0): 70, 86, 120, (573,162,0): 70, 86, 122, (573,163,0): 71, 87, 121, (573,164,0): 71, 87, 123, (573,165,0): 72, 88, 122, (573,166,0): 72, 88, 124, (573,167,0): 72, 88, 122, (573,168,0): 72, 88, 124, (573,169,0): 72, 88, 122, (573,170,0): 72, 88, 124, (573,171,0): 72, 88, 122, (573,172,0): 72, 88, 124, (573,173,0): 72, 88, 122, (573,174,0): 72, 88, 124, (573,175,0): 72, 88, 124, (573,176,0): 73, 86, 128, (573,177,0): 74, 85, 130, (573,178,0): 74, 85, 130, (573,179,0): 74, 85, 130, (573,180,0): 73, 86, 130, (573,181,0): 73, 86, 130, (573,182,0): 72, 87, 130, (573,183,0): 72, 87, 130, (573,184,0): 69, 84, 127, (573,185,0): 69, 84, 127, (573,186,0): 68, 85, 128, (573,187,0): 68, 85, 128, (573,188,0): 68, 87, 129, (573,189,0): 69, 88, 130, (573,190,0): 70, 89, 131, (573,191,0): 70, 89, 131, (573,192,0): 75, 93, 133, (573,193,0): 75, 93, 131, (573,194,0): 75, 93, 133, (573,195,0): 74, 92, 132, (573,196,0): 73, 91, 131, (573,197,0): 73, 91, 131, (573,198,0): 73, 90, 133, (573,199,0): 71, 90, 132, (573,200,0): 70, 89, 132, (573,201,0): 68, 89, 132, (573,202,0): 69, 90, 133, (573,203,0): 68, 91, 133, (573,204,0): 69, 92, 136, (573,205,0): 69, 92, 136, (573,206,0): 70, 93, 137, (573,207,0): 70, 92, 139, (573,208,0): 68, 94, 143, (573,209,0): 67, 95, 145, (573,210,0): 68, 94, 145, (573,211,0): 67, 94, 147, (573,212,0): 68, 93, 147, (573,213,0): 67, 94, 147, (573,214,0): 68, 93, 147, (573,215,0): 67, 94, 149, (573,216,0): 70, 95, 151, (573,217,0): 69, 95, 152, (573,218,0): 71, 96, 153, (573,219,0): 70, 96, 153, (573,220,0): 72, 97, 154, (573,221,0): 71, 97, 156, (573,222,0): 72, 96, 156, (573,223,0): 70, 99, 159, (573,224,0): 68, 100, 161, (573,225,0): 66, 102, 164, (573,226,0): 67, 102, 166, (573,227,0): 68, 103, 169, (573,228,0): 70, 104, 175, (573,229,0): 70, 107, 178, (573,230,0): 71, 107, 181, (573,231,0): 70, 108, 183, (573,232,0): 70, 107, 185, (573,233,0): 70, 107, 185, (573,234,0): 69, 106, 184, (573,235,0): 68, 107, 184, (573,236,0): 68, 107, 184, (573,237,0): 70, 109, 186, (573,238,0): 71, 110, 185, (573,239,0): 72, 111, 190, (573,240,0): 70, 110, 195, (573,241,0): 70, 110, 198, (573,242,0): 71, 111, 198, (573,243,0): 73, 113, 200, (573,244,0): 74, 114, 199, (573,245,0): 73, 113, 198, (573,246,0): 71, 112, 194, (573,247,0): 68, 109, 191, (573,248,0): 70, 111, 191, (573,249,0): 70, 111, 191, (573,250,0): 70, 111, 190, (573,251,0): 70, 112, 188, (573,252,0): 70, 112, 188, (573,253,0): 70, 112, 188, (573,254,0): 70, 112, 188, (573,255,0): 70, 112, 188, (573,256,0): 70, 111, 190, (573,257,0): 70, 111, 190, (573,258,0): 70, 112, 188, (573,259,0): 69, 111, 185, (573,260,0): 69, 111, 183, (573,261,0): 70, 110, 180, (573,262,0): 71, 110, 179, (573,263,0): 72, 110, 175, (573,264,0): 71, 105, 168, (573,265,0): 76, 105, 165, (573,266,0): 81, 105, 165, (573,267,0): 88, 107, 165, (573,268,0): 93, 108, 165, (573,269,0): 97, 108, 164, (573,270,0): 100, 106, 164, (573,271,0): 106, 106, 160, (573,272,0): 116, 102, 153, (573,273,0): 115, 93, 139, (573,274,0): 107, 84, 128, (573,275,0): 100, 75, 115, (573,276,0): 96, 68, 106, (573,277,0): 93, 62, 94, (573,278,0): 90, 57, 86, (573,279,0): 88, 54, 79, (573,280,0): 82, 47, 69, (573,281,0): 80, 45, 65, (573,282,0): 76, 42, 59, (573,283,0): 71, 38, 55, (573,284,0): 66, 33, 50, (573,285,0): 62, 29, 46, (573,286,0): 57, 26, 42, (573,287,0): 54, 26, 41, (573,288,0): 52, 28, 41, (573,289,0): 55, 33, 45, (573,290,0): 58, 36, 48, (573,291,0): 59, 37, 49, (573,292,0): 57, 35, 47, (573,293,0): 54, 34, 45, (573,294,0): 53, 33, 44, (573,295,0): 53, 33, 42, (573,296,0): 52, 35, 43, (573,297,0): 51, 34, 42, (573,298,0): 48, 33, 40, (573,299,0): 47, 32, 39, (573,300,0): 45, 30, 35, (573,301,0): 45, 30, 35, (573,302,0): 45, 30, 35, (573,303,0): 45, 30, 33, (573,304,0): 45, 29, 30, (573,305,0): 42, 26, 26, (573,306,0): 40, 24, 25, (573,307,0): 39, 23, 24, (573,308,0): 41, 25, 26, (573,309,0): 41, 25, 26, (573,310,0): 38, 22, 25, (573,311,0): 36, 20, 23, (573,312,0): 32, 15, 23, (573,313,0): 31, 14, 22, (573,314,0): 30, 13, 23, (573,315,0): 29, 12, 22, (573,316,0): 28, 11, 21, (573,317,0): 27, 10, 20, (573,318,0): 26, 8, 20, (573,319,0): 26, 8, 20, (573,320,0): 28, 12, 22, (573,321,0): 28, 12, 22, (573,322,0): 28, 12, 22, (573,323,0): 27, 11, 21, (573,324,0): 27, 11, 21, (573,325,0): 26, 10, 20, (573,326,0): 26, 10, 20, (573,327,0): 26, 10, 20, (573,328,0): 21, 5, 15, (573,329,0): 22, 6, 16, (573,330,0): 22, 6, 16, (573,331,0): 23, 7, 17, (573,332,0): 23, 7, 17, (573,333,0): 22, 6, 16, (573,334,0): 21, 5, 15, (573,335,0): 19, 6, 15, (573,336,0): 18, 7, 15, (573,337,0): 18, 7, 15, (573,338,0): 17, 6, 14, (573,339,0): 17, 6, 14, (573,340,0): 16, 5, 13, (573,341,0): 16, 5, 13, (573,342,0): 16, 5, 13, (573,343,0): 15, 4, 12, (573,344,0): 16, 5, 13, (573,345,0): 16, 5, 13, (573,346,0): 16, 5, 13, (573,347,0): 15, 4, 12, (573,348,0): 15, 4, 12, (573,349,0): 14, 3, 11, (573,350,0): 14, 3, 11, (573,351,0): 13, 3, 11, (573,352,0): 12, 2, 10, (573,353,0): 10, 3, 10, (573,354,0): 10, 3, 10, (573,355,0): 10, 3, 10, (573,356,0): 11, 4, 11, (573,357,0): 11, 4, 11, (573,358,0): 11, 4, 11, (573,359,0): 11, 4, 11, (573,360,0): 11, 4, 11, (573,361,0): 11, 4, 11, (573,362,0): 11, 4, 11, (573,363,0): 11, 4, 11, (573,364,0): 11, 4, 11, (573,365,0): 11, 4, 11, (573,366,0): 11, 4, 11, (573,367,0): 11, 4, 11, (573,368,0): 10, 3, 11, (573,369,0): 10, 3, 11, (573,370,0): 10, 3, 11, (573,371,0): 9, 2, 10, (573,372,0): 9, 2, 10, (573,373,0): 8, 1, 9, (573,374,0): 8, 1, 9, (573,375,0): 8, 1, 9, (573,376,0): 9, 2, 10, (573,377,0): 9, 2, 10, (573,378,0): 9, 2, 10, (573,379,0): 9, 2, 10, (573,380,0): 9, 2, 10, (573,381,0): 9, 2, 10, (573,382,0): 9, 2, 10, (573,383,0): 9, 2, 10, (573,384,0): 8, 1, 8, (573,385,0): 8, 1, 8, (573,386,0): 9, 2, 9, (573,387,0): 10, 3, 10, (573,388,0): 13, 4, 9, (573,389,0): 14, 5, 10, (573,390,0): 15, 6, 9, (573,391,0): 15, 6, 9, (573,392,0): 20, 9, 13, (573,393,0): 20, 9, 13, (573,394,0): 21, 9, 11, (573,395,0): 21, 9, 11, (573,396,0): 21, 9, 9, (573,397,0): 21, 9, 9, (573,398,0): 23, 9, 9, (573,399,0): 23, 9, 9, (573,400,0): 24, 12, 12, (573,401,0): 24, 12, 12, (573,402,0): 26, 12, 12, (573,403,0): 26, 12, 12, (573,404,0): 26, 12, 12, (573,405,0): 26, 12, 12, (573,406,0): 27, 11, 12, (573,407,0): 27, 11, 12, (573,408,0): 30, 11, 13, (573,409,0): 30, 11, 13, (573,410,0): 31, 12, 14, (573,411,0): 32, 13, 15, (573,412,0): 34, 14, 16, (573,413,0): 35, 15, 17, (573,414,0): 36, 16, 18, (573,415,0): 36, 16, 17, (573,416,0): 36, 15, 14, (573,417,0): 37, 16, 13, (573,418,0): 38, 17, 14, (573,419,0): 39, 18, 15, (573,420,0): 40, 19, 16, (573,421,0): 42, 21, 18, (573,422,0): 43, 22, 19, (573,423,0): 43, 22, 19, (573,424,0): 42, 21, 18, (573,425,0): 41, 20, 17, (573,426,0): 41, 20, 17, (573,427,0): 41, 20, 17, (573,428,0): 40, 19, 16, (573,429,0): 39, 18, 15, (573,430,0): 39, 18, 15, (573,431,0): 38, 19, 15, (573,432,0): 36, 21, 18, (573,433,0): 33, 19, 16, (573,434,0): 31, 17, 16, (573,435,0): 29, 15, 14, (573,436,0): 27, 13, 12, (573,437,0): 26, 12, 11, (573,438,0): 26, 12, 12, (573,439,0): 27, 13, 13, (573,440,0): 24, 9, 12, (573,441,0): 24, 9, 12, (573,442,0): 24, 9, 12, (573,443,0): 23, 8, 11, (573,444,0): 22, 7, 12, (573,445,0): 22, 7, 12, (573,446,0): 22, 7, 12, (573,447,0): 19, 7, 11, (573,448,0): 16, 5, 9, (573,449,0): 16, 5, 9, (573,450,0): 15, 4, 8, (573,451,0): 15, 4, 8, (573,452,0): 14, 3, 7, (573,453,0): 14, 3, 7, (573,454,0): 13, 2, 6, (573,455,0): 13, 2, 6, (573,456,0): 11, 0, 4, (573,457,0): 14, 3, 7, (573,458,0): 16, 5, 9, (573,459,0): 16, 5, 9, (573,460,0): 13, 2, 6, (573,461,0): 12, 1, 5, (573,462,0): 13, 2, 6, (573,463,0): 14, 4, 5, (573,464,0): 15, 3, 5, (573,465,0): 17, 3, 3, (573,466,0): 18, 4, 4, (573,467,0): 19, 5, 5, (573,468,0): 20, 6, 6, (573,469,0): 21, 7, 7, (573,470,0): 22, 8, 8, (573,471,0): 22, 8, 8, (573,472,0): 22, 8, 8, (573,473,0): 21, 7, 7, (573,474,0): 20, 6, 6, (573,475,0): 20, 6, 6, (573,476,0): 21, 7, 7, (573,477,0): 22, 8, 8, (573,478,0): 23, 9, 9, (573,479,0): 24, 10, 10, (573,480,0): 23, 9, 9, (573,481,0): 24, 10, 10, (573,482,0): 27, 11, 12, (573,483,0): 28, 12, 13, (573,484,0): 29, 13, 14, (573,485,0): 31, 12, 14, (573,486,0): 30, 11, 13, (573,487,0): 31, 11, 13, (573,488,0): 34, 14, 16, (573,489,0): 37, 15, 18, (573,490,0): 40, 15, 19, (573,491,0): 42, 17, 21, (573,492,0): 44, 17, 22, (573,493,0): 44, 17, 22, (573,494,0): 44, 17, 22, (573,495,0): 44, 18, 21, (573,496,0): 40, 16, 16, (573,497,0): 39, 15, 13, (573,498,0): 36, 15, 12, (573,499,0): 34, 13, 10, (573,500,0): 33, 12, 11, (573,501,0): 31, 10, 9, (573,502,0): 29, 9, 8, (573,503,0): 28, 8, 7, (573,504,0): 25, 7, 7, (573,505,0): 25, 7, 7, (573,506,0): 25, 6, 8, (573,507,0): 25, 6, 8, (573,508,0): 23, 7, 8, (573,509,0): 23, 7, 8, (573,510,0): 23, 7, 10, (573,511,0): 23, 7, 10, (573,512,0): 28, 8, 10, (573,513,0): 28, 8, 10, (573,514,0): 27, 7, 9, (573,515,0): 27, 7, 9, (573,516,0): 25, 6, 10, (573,517,0): 25, 6, 10, (573,518,0): 24, 5, 11, (573,519,0): 24, 5, 11, (573,520,0): 22, 5, 11, (573,521,0): 22, 5, 11, (573,522,0): 20, 5, 12, (573,523,0): 20, 5, 12, (573,524,0): 19, 3, 13, (573,525,0): 19, 3, 13, (573,526,0): 16, 3, 12, (573,527,0): 16, 3, 12, (573,528,0): 17, 5, 15, (573,529,0): 17, 5, 15, (573,530,0): 17, 5, 15, (573,531,0): 16, 4, 14, (573,532,0): 16, 4, 14, (573,533,0): 15, 3, 13, (573,534,0): 15, 3, 13, (573,535,0): 14, 2, 12, (573,536,0): 12, 0, 10, (573,537,0): 12, 0, 10, (573,538,0): 12, 0, 10, (573,539,0): 12, 0, 10, (573,540,0): 12, 0, 10, (573,541,0): 12, 0, 10, (573,542,0): 12, 0, 10, (573,543,0): 11, 1, 10, (573,544,0): 15, 5, 14, (573,545,0): 13, 6, 14, (573,546,0): 13, 6, 14, (573,547,0): 13, 6, 14, (573,548,0): 13, 6, 14, (573,549,0): 13, 6, 14, (573,550,0): 13, 6, 14, (573,551,0): 13, 6, 14, (573,552,0): 10, 3, 11, (573,553,0): 10, 3, 11, (573,554,0): 10, 3, 11, (573,555,0): 11, 4, 12, (573,556,0): 11, 4, 12, (573,557,0): 12, 5, 13, (573,558,0): 12, 5, 13, (573,559,0): 12, 7, 14, (573,560,0): 12, 6, 16, (573,561,0): 10, 7, 16, (573,562,0): 11, 6, 13, (573,563,0): 11, 6, 13, (573,564,0): 11, 6, 13, (573,565,0): 13, 8, 15, (573,566,0): 15, 8, 15, (573,567,0): 16, 9, 16, (573,568,0): 24, 15, 20, (573,569,0): 25, 16, 21, (573,570,0): 27, 18, 23, (573,571,0): 29, 20, 25, (573,572,0): 31, 20, 24, (573,573,0): 31, 20, 24, (573,574,0): 31, 20, 24, (573,575,0): 31, 20, 24, (573,576,0): 32, 21, 25, (573,577,0): 32, 21, 25, (573,578,0): 31, 20, 24, (573,579,0): 30, 19, 23, (573,580,0): 29, 18, 22, (573,581,0): 28, 17, 21, (573,582,0): 27, 16, 20, (573,583,0): 27, 16, 20, (573,584,0): 29, 18, 22, (573,585,0): 29, 18, 22, (573,586,0): 29, 18, 22, (573,587,0): 29, 18, 22, (573,588,0): 28, 17, 21, (573,589,0): 28, 17, 21, (573,590,0): 28, 17, 21, (573,591,0): 28, 17, 21, (573,592,0): 31, 20, 28, (573,593,0): 29, 19, 27, (573,594,0): 30, 19, 25, (573,595,0): 29, 20, 23, (573,596,0): 29, 18, 22, (573,597,0): 27, 18, 19, (573,598,0): 28, 18, 17, (573,599,0): 27, 19, 17, (574,0,0): 38, 57, 71, (574,1,0): 38, 57, 71, (574,2,0): 38, 57, 71, (574,3,0): 38, 57, 71, (574,4,0): 38, 57, 71, (574,5,0): 38, 57, 71, (574,6,0): 38, 57, 71, (574,7,0): 38, 57, 71, (574,8,0): 40, 59, 73, (574,9,0): 40, 59, 73, (574,10,0): 40, 59, 73, (574,11,0): 40, 59, 73, (574,12,0): 40, 59, 73, (574,13,0): 40, 59, 73, (574,14,0): 40, 59, 73, (574,15,0): 40, 59, 73, (574,16,0): 41, 59, 73, (574,17,0): 41, 59, 73, (574,18,0): 41, 59, 73, (574,19,0): 41, 59, 73, (574,20,0): 41, 59, 73, (574,21,0): 41, 59, 73, (574,22,0): 41, 59, 73, (574,23,0): 41, 59, 73, (574,24,0): 42, 60, 74, (574,25,0): 42, 60, 74, (574,26,0): 42, 60, 74, (574,27,0): 42, 60, 74, (574,28,0): 42, 60, 74, (574,29,0): 42, 60, 74, (574,30,0): 42, 60, 74, (574,31,0): 42, 60, 72, (574,32,0): 42, 58, 71, (574,33,0): 42, 59, 69, (574,34,0): 45, 59, 70, (574,35,0): 46, 60, 71, (574,36,0): 48, 60, 72, (574,37,0): 50, 62, 74, (574,38,0): 53, 63, 75, (574,39,0): 53, 63, 75, (574,40,0): 56, 62, 76, (574,41,0): 56, 62, 76, (574,42,0): 59, 62, 77, (574,43,0): 59, 62, 77, (574,44,0): 61, 63, 78, (574,45,0): 61, 63, 78, (574,46,0): 64, 63, 79, (574,47,0): 64, 63, 79, (574,48,0): 61, 63, 76, (574,49,0): 61, 63, 76, (574,50,0): 62, 64, 77, (574,51,0): 62, 64, 77, (574,52,0): 65, 64, 78, (574,53,0): 65, 64, 78, (574,54,0): 66, 64, 78, (574,55,0): 67, 65, 79, (574,56,0): 68, 66, 80, (574,57,0): 68, 66, 80, (574,58,0): 69, 65, 80, (574,59,0): 69, 65, 80, (574,60,0): 71, 64, 80, (574,61,0): 71, 64, 80, (574,62,0): 71, 64, 80, (574,63,0): 69, 65, 80, (574,64,0): 68, 64, 79, (574,65,0): 67, 65, 79, (574,66,0): 67, 65, 79, (574,67,0): 67, 65, 79, (574,68,0): 67, 65, 79, (574,69,0): 67, 65, 79, (574,70,0): 67, 65, 79, (574,71,0): 67, 65, 79, (574,72,0): 67, 65, 79, (574,73,0): 67, 65, 79, (574,74,0): 68, 66, 80, (574,75,0): 68, 66, 80, (574,76,0): 69, 67, 81, (574,77,0): 69, 67, 81, (574,78,0): 69, 67, 81, (574,79,0): 69, 68, 82, (574,80,0): 68, 67, 83, (574,81,0): 66, 68, 83, (574,82,0): 66, 68, 83, (574,83,0): 65, 67, 82, (574,84,0): 65, 67, 82, (574,85,0): 64, 66, 81, (574,86,0): 63, 65, 80, (574,87,0): 63, 65, 80, (574,88,0): 67, 69, 84, (574,89,0): 67, 69, 84, (574,90,0): 68, 70, 85, (574,91,0): 69, 71, 86, (574,92,0): 70, 72, 87, (574,93,0): 71, 73, 88, (574,94,0): 72, 74, 89, (574,95,0): 72, 75, 90, (574,96,0): 67, 73, 89, (574,97,0): 66, 73, 89, (574,98,0): 66, 73, 91, (574,99,0): 66, 73, 91, (574,100,0): 65, 74, 91, (574,101,0): 65, 74, 91, (574,102,0): 65, 73, 92, (574,103,0): 65, 73, 92, (574,104,0): 63, 74, 94, (574,105,0): 63, 74, 94, (574,106,0): 63, 76, 95, (574,107,0): 63, 76, 95, (574,108,0): 64, 76, 98, (574,109,0): 64, 76, 98, (574,110,0): 62, 77, 98, (574,111,0): 65, 78, 97, (574,112,0): 67, 75, 96, (574,113,0): 68, 75, 94, (574,114,0): 68, 75, 94, (574,115,0): 68, 75, 94, (574,116,0): 68, 75, 94, (574,117,0): 68, 75, 94, (574,118,0): 68, 75, 94, (574,119,0): 68, 75, 94, (574,120,0): 68, 75, 94, (574,121,0): 68, 75, 94, (574,122,0): 68, 75, 94, (574,123,0): 68, 75, 94, (574,124,0): 70, 77, 96, (574,125,0): 72, 79, 98, (574,126,0): 74, 81, 100, (574,127,0): 76, 81, 101, (574,128,0): 82, 80, 101, (574,129,0): 83, 80, 99, (574,130,0): 84, 79, 99, (574,131,0): 83, 80, 99, (574,132,0): 84, 79, 99, (574,133,0): 83, 80, 99, (574,134,0): 84, 79, 99, (574,135,0): 83, 80, 99, (574,136,0): 77, 72, 92, (574,137,0): 77, 74, 93, (574,138,0): 78, 73, 93, (574,139,0): 77, 74, 93, (574,140,0): 78, 73, 93, (574,141,0): 78, 75, 94, (574,142,0): 79, 74, 94, (574,143,0): 77, 75, 96, (574,144,0): 75, 80, 100, (574,145,0): 74, 82, 103, (574,146,0): 73, 84, 106, (574,147,0): 73, 84, 106, (574,148,0): 73, 83, 108, (574,149,0): 72, 82, 107, (574,150,0): 70, 82, 108, (574,151,0): 69, 81, 107, (574,152,0): 68, 82, 111, (574,153,0): 68, 82, 111, (574,154,0): 68, 81, 113, (574,155,0): 69, 82, 114, (574,156,0): 68, 83, 116, (574,157,0): 69, 84, 117, (574,158,0): 69, 83, 118, (574,159,0): 70, 84, 119, (574,160,0): 69, 85, 121, (574,161,0): 67, 85, 121, (574,162,0): 67, 85, 123, (574,163,0): 68, 86, 122, (574,164,0): 68, 86, 124, (574,165,0): 69, 87, 123, (574,166,0): 69, 87, 125, (574,167,0): 70, 88, 124, (574,168,0): 70, 88, 126, (574,169,0): 70, 88, 124, (574,170,0): 70, 88, 126, (574,171,0): 70, 88, 124, (574,172,0): 70, 88, 126, (574,173,0): 70, 88, 124, (574,174,0): 70, 88, 126, (574,175,0): 70, 88, 126, (574,176,0): 71, 86, 129, (574,177,0): 71, 85, 130, (574,178,0): 69, 86, 130, (574,179,0): 69, 86, 130, (574,180,0): 69, 86, 130, (574,181,0): 69, 86, 130, (574,182,0): 68, 87, 130, (574,183,0): 68, 87, 130, (574,184,0): 64, 85, 128, (574,185,0): 64, 85, 128, (574,186,0): 65, 86, 129, (574,187,0): 65, 86, 129, (574,188,0): 64, 87, 129, (574,189,0): 64, 87, 129, (574,190,0): 64, 87, 129, (574,191,0): 65, 87, 128, (574,192,0): 71, 90, 130, (574,193,0): 71, 91, 128, (574,194,0): 70, 89, 129, (574,195,0): 70, 89, 129, (574,196,0): 69, 88, 128, (574,197,0): 67, 89, 128, (574,198,0): 66, 88, 129, (574,199,0): 65, 88, 129, (574,200,0): 64, 87, 129, (574,201,0): 65, 88, 130, (574,202,0): 65, 88, 130, (574,203,0): 64, 89, 130, (574,204,0): 65, 89, 133, (574,205,0): 66, 90, 134, (574,206,0): 66, 90, 134, (574,207,0): 64, 91, 136, (574,208,0): 63, 91, 141, (574,209,0): 61, 91, 143, (574,210,0): 63, 90, 143, (574,211,0): 61, 91, 145, (574,212,0): 63, 90, 145, (574,213,0): 61, 91, 145, (574,214,0): 63, 90, 145, (574,215,0): 61, 90, 146, (574,216,0): 66, 92, 149, (574,217,0): 64, 93, 151, (574,218,0): 67, 93, 152, (574,219,0): 65, 94, 152, (574,220,0): 68, 94, 153, (574,221,0): 67, 96, 156, (574,222,0): 69, 95, 156, (574,223,0): 67, 97, 157, (574,224,0): 62, 96, 157, (574,225,0): 62, 98, 160, (574,226,0): 63, 98, 162, (574,227,0): 63, 101, 166, (574,228,0): 64, 101, 171, (574,229,0): 66, 103, 174, (574,230,0): 67, 103, 177, (574,231,0): 67, 105, 180, (574,232,0): 69, 106, 184, (574,233,0): 67, 106, 185, (574,234,0): 67, 106, 185, (574,235,0): 67, 106, 185, (574,236,0): 67, 106, 183, (574,237,0): 66, 108, 184, (574,238,0): 68, 110, 186, (574,239,0): 69, 110, 189, (574,240,0): 71, 109, 194, (574,241,0): 72, 109, 198, (574,242,0): 74, 111, 199, (574,243,0): 73, 110, 198, (574,244,0): 72, 110, 195, (574,245,0): 71, 109, 194, (574,246,0): 71, 109, 192, (574,247,0): 72, 110, 193, (574,248,0): 72, 110, 191, (574,249,0): 72, 110, 191, (574,250,0): 72, 111, 190, (574,251,0): 72, 111, 188, (574,252,0): 72, 111, 188, (574,253,0): 72, 111, 186, (574,254,0): 72, 111, 186, (574,255,0): 72, 111, 188, (574,256,0): 72, 111, 190, (574,257,0): 71, 110, 189, (574,258,0): 69, 111, 187, (574,259,0): 68, 110, 184, (574,260,0): 70, 110, 182, (574,261,0): 69, 109, 178, (574,262,0): 70, 109, 176, (574,263,0): 73, 108, 172, (574,264,0): 76, 108, 169, (574,265,0): 80, 109, 167, (574,266,0): 86, 108, 166, (574,267,0): 92, 108, 167, (574,268,0): 95, 108, 163, (574,269,0): 97, 106, 161, (574,270,0): 98, 103, 159, (574,271,0): 105, 100, 154, (574,272,0): 110, 88, 135, (574,273,0): 106, 78, 119, (574,274,0): 95, 65, 103, (574,275,0): 87, 53, 88, (574,276,0): 82, 47, 77, (574,277,0): 78, 42, 68, (574,278,0): 77, 39, 62, (574,279,0): 75, 36, 54, (574,280,0): 71, 33, 46, (574,281,0): 69, 31, 42, (574,282,0): 66, 30, 40, (574,283,0): 62, 29, 36, (574,284,0): 57, 26, 32, (574,285,0): 55, 24, 30, (574,286,0): 52, 23, 28, (574,287,0): 47, 22, 28, (574,288,0): 43, 22, 29, (574,289,0): 45, 26, 32, (574,290,0): 48, 28, 37, (574,291,0): 48, 28, 37, (574,292,0): 46, 26, 35, (574,293,0): 43, 26, 34, (574,294,0): 45, 28, 36, (574,295,0): 48, 31, 37, (574,296,0): 48, 31, 37, (574,297,0): 47, 30, 36, (574,298,0): 45, 28, 36, (574,299,0): 43, 26, 34, (574,300,0): 43, 26, 34, (574,301,0): 43, 26, 34, (574,302,0): 44, 27, 35, (574,303,0): 45, 28, 34, (574,304,0): 45, 29, 30, (574,305,0): 42, 26, 26, (574,306,0): 39, 23, 23, (574,307,0): 39, 23, 23, (574,308,0): 41, 25, 26, (574,309,0): 41, 25, 26, (574,310,0): 38, 22, 25, (574,311,0): 35, 19, 22, (574,312,0): 30, 13, 21, (574,313,0): 29, 12, 20, (574,314,0): 29, 12, 22, (574,315,0): 28, 11, 21, (574,316,0): 27, 9, 21, (574,317,0): 26, 8, 20, (574,318,0): 25, 7, 19, (574,319,0): 25, 7, 19, (574,320,0): 28, 12, 22, (574,321,0): 26, 13, 22, (574,322,0): 25, 12, 21, (574,323,0): 25, 12, 21, (574,324,0): 24, 11, 20, (574,325,0): 23, 10, 19, (574,326,0): 23, 10, 19, (574,327,0): 22, 9, 18, (574,328,0): 18, 5, 14, (574,329,0): 19, 6, 15, (574,330,0): 21, 8, 17, (574,331,0): 22, 9, 18, (574,332,0): 22, 9, 18, (574,333,0): 21, 8, 17, (574,334,0): 20, 7, 16, (574,335,0): 19, 6, 15, (574,336,0): 19, 8, 16, (574,337,0): 19, 8, 16, (574,338,0): 18, 7, 15, (574,339,0): 18, 7, 15, (574,340,0): 17, 6, 14, (574,341,0): 17, 6, 14, (574,342,0): 16, 5, 13, (574,343,0): 16, 5, 13, (574,344,0): 16, 5, 13, (574,345,0): 16, 5, 13, (574,346,0): 16, 5, 13, (574,347,0): 15, 4, 12, (574,348,0): 15, 4, 12, (574,349,0): 14, 3, 11, (574,350,0): 14, 3, 11, (574,351,0): 13, 3, 11, (574,352,0): 13, 3, 11, (574,353,0): 11, 4, 11, (574,354,0): 11, 4, 11, (574,355,0): 11, 4, 11, (574,356,0): 10, 3, 10, (574,357,0): 10, 3, 10, (574,358,0): 10, 3, 10, (574,359,0): 10, 3, 10, (574,360,0): 11, 4, 11, (574,361,0): 11, 4, 11, (574,362,0): 11, 4, 11, (574,363,0): 11, 4, 11, (574,364,0): 11, 4, 11, (574,365,0): 11, 4, 11, (574,366,0): 11, 4, 11, (574,367,0): 11, 4, 11, (574,368,0): 10, 3, 11, (574,369,0): 10, 3, 11, (574,370,0): 10, 3, 11, (574,371,0): 9, 2, 10, (574,372,0): 9, 2, 10, (574,373,0): 8, 1, 9, (574,374,0): 8, 1, 9, (574,375,0): 8, 1, 9, (574,376,0): 9, 2, 10, (574,377,0): 9, 2, 10, (574,378,0): 9, 2, 10, (574,379,0): 9, 2, 10, (574,380,0): 9, 2, 10, (574,381,0): 9, 2, 10, (574,382,0): 9, 2, 10, (574,383,0): 9, 2, 10, (574,384,0): 8, 1, 8, (574,385,0): 8, 1, 8, (574,386,0): 9, 2, 9, (574,387,0): 10, 3, 10, (574,388,0): 13, 4, 9, (574,389,0): 14, 5, 10, (574,390,0): 15, 6, 9, (574,391,0): 15, 6, 9, (574,392,0): 20, 9, 13, (574,393,0): 20, 9, 13, (574,394,0): 21, 9, 11, (574,395,0): 21, 9, 11, (574,396,0): 21, 9, 9, (574,397,0): 21, 9, 9, (574,398,0): 23, 9, 9, (574,399,0): 23, 9, 9, (574,400,0): 25, 13, 13, (574,401,0): 25, 13, 13, (574,402,0): 27, 13, 13, (574,403,0): 27, 13, 13, (574,404,0): 27, 13, 13, (574,405,0): 27, 13, 13, (574,406,0): 28, 12, 13, (574,407,0): 28, 12, 13, (574,408,0): 30, 11, 13, (574,409,0): 30, 11, 13, (574,410,0): 31, 12, 14, (574,411,0): 32, 13, 15, (574,412,0): 34, 14, 16, (574,413,0): 35, 15, 17, (574,414,0): 36, 16, 18, (574,415,0): 36, 16, 17, (574,416,0): 38, 17, 16, (574,417,0): 41, 17, 15, (574,418,0): 41, 17, 15, (574,419,0): 42, 18, 16, (574,420,0): 43, 19, 17, (574,421,0): 43, 19, 17, (574,422,0): 44, 20, 18, (574,423,0): 44, 20, 18, (574,424,0): 44, 20, 18, (574,425,0): 44, 20, 18, (574,426,0): 43, 19, 17, (574,427,0): 43, 19, 17, (574,428,0): 42, 18, 16, (574,429,0): 42, 18, 16, (574,430,0): 42, 18, 16, (574,431,0): 38, 19, 15, (574,432,0): 37, 22, 19, (574,433,0): 32, 21, 17, (574,434,0): 30, 19, 17, (574,435,0): 27, 16, 14, (574,436,0): 25, 14, 12, (574,437,0): 25, 14, 12, (574,438,0): 24, 12, 12, (574,439,0): 24, 12, 12, (574,440,0): 24, 12, 14, (574,441,0): 23, 11, 13, (574,442,0): 23, 11, 13, (574,443,0): 22, 10, 12, (574,444,0): 22, 10, 14, (574,445,0): 21, 9, 13, (574,446,0): 21, 9, 13, (574,447,0): 21, 9, 13, (574,448,0): 17, 6, 10, (574,449,0): 17, 6, 10, (574,450,0): 16, 5, 9, (574,451,0): 16, 5, 9, (574,452,0): 15, 4, 8, (574,453,0): 15, 4, 8, (574,454,0): 14, 3, 7, (574,455,0): 14, 3, 7, (574,456,0): 13, 2, 6, (574,457,0): 14, 3, 7, (574,458,0): 15, 4, 8, (574,459,0): 14, 3, 7, (574,460,0): 11, 0, 4, (574,461,0): 11, 0, 4, (574,462,0): 13, 2, 6, (574,463,0): 16, 6, 7, (574,464,0): 15, 3, 5, (574,465,0): 15, 3, 3, (574,466,0): 16, 4, 4, (574,467,0): 17, 5, 5, (574,468,0): 18, 6, 6, (574,469,0): 19, 7, 7, (574,470,0): 20, 8, 8, (574,471,0): 20, 8, 8, (574,472,0): 19, 7, 7, (574,473,0): 19, 7, 7, (574,474,0): 18, 6, 6, (574,475,0): 18, 6, 6, (574,476,0): 18, 6, 6, (574,477,0): 20, 8, 8, (574,478,0): 21, 9, 9, (574,479,0): 22, 10, 10, (574,480,0): 22, 10, 12, (574,481,0): 22, 10, 12, (574,482,0): 26, 11, 14, (574,483,0): 27, 12, 15, (574,484,0): 27, 12, 15, (574,485,0): 28, 12, 15, (574,486,0): 27, 11, 14, (574,487,0): 28, 9, 13, (574,488,0): 32, 11, 16, (574,489,0): 34, 13, 18, (574,490,0): 37, 14, 20, (574,491,0): 38, 15, 21, (574,492,0): 42, 17, 23, (574,493,0): 42, 17, 23, (574,494,0): 42, 17, 23, (574,495,0): 42, 17, 21, (574,496,0): 40, 16, 16, (574,497,0): 39, 15, 13, (574,498,0): 36, 15, 12, (574,499,0): 34, 13, 10, (574,500,0): 33, 12, 11, (574,501,0): 31, 10, 9, (574,502,0): 29, 9, 8, (574,503,0): 28, 8, 7, (574,504,0): 25, 7, 7, (574,505,0): 25, 7, 7, (574,506,0): 25, 6, 8, (574,507,0): 25, 6, 8, (574,508,0): 23, 7, 8, (574,509,0): 23, 7, 8, (574,510,0): 23, 7, 10, (574,511,0): 23, 7, 10, (574,512,0): 28, 8, 10, (574,513,0): 28, 8, 10, (574,514,0): 27, 7, 9, (574,515,0): 27, 7, 9, (574,516,0): 25, 6, 10, (574,517,0): 25, 6, 10, (574,518,0): 24, 5, 11, (574,519,0): 24, 5, 11, (574,520,0): 22, 5, 11, (574,521,0): 22, 5, 11, (574,522,0): 20, 5, 12, (574,523,0): 20, 5, 12, (574,524,0): 19, 3, 13, (574,525,0): 19, 3, 13, (574,526,0): 16, 3, 12, (574,527,0): 16, 3, 12, (574,528,0): 18, 6, 16, (574,529,0): 17, 5, 15, (574,530,0): 17, 5, 15, (574,531,0): 16, 4, 14, (574,532,0): 16, 4, 14, (574,533,0): 15, 3, 13, (574,534,0): 15, 3, 13, (574,535,0): 15, 3, 13, (574,536,0): 12, 0, 10, (574,537,0): 12, 0, 10, (574,538,0): 12, 0, 10, (574,539,0): 12, 0, 10, (574,540,0): 12, 0, 10, (574,541,0): 12, 0, 10, (574,542,0): 12, 0, 10, (574,543,0): 11, 1, 10, (574,544,0): 13, 3, 12, (574,545,0): 11, 4, 12, (574,546,0): 11, 4, 12, (574,547,0): 11, 4, 12, (574,548,0): 11, 4, 12, (574,549,0): 11, 4, 12, (574,550,0): 11, 4, 12, (574,551,0): 11, 4, 12, (574,552,0): 9, 2, 10, (574,553,0): 10, 3, 11, (574,554,0): 10, 3, 11, (574,555,0): 11, 4, 12, (574,556,0): 11, 4, 12, (574,557,0): 12, 5, 13, (574,558,0): 12, 5, 13, (574,559,0): 11, 6, 13, (574,560,0): 12, 6, 16, (574,561,0): 10, 7, 16, (574,562,0): 11, 6, 13, (574,563,0): 11, 6, 13, (574,564,0): 11, 6, 13, (574,565,0): 13, 8, 15, (574,566,0): 15, 8, 15, (574,567,0): 16, 9, 16, (574,568,0): 24, 15, 20, (574,569,0): 25, 16, 21, (574,570,0): 27, 18, 23, (574,571,0): 29, 20, 25, (574,572,0): 31, 20, 24, (574,573,0): 31, 20, 24, (574,574,0): 31, 20, 24, (574,575,0): 30, 19, 23, (574,576,0): 32, 21, 25, (574,577,0): 32, 21, 25, (574,578,0): 31, 20, 24, (574,579,0): 30, 19, 23, (574,580,0): 29, 18, 22, (574,581,0): 28, 17, 21, (574,582,0): 27, 16, 20, (574,583,0): 27, 16, 20, (574,584,0): 28, 17, 21, (574,585,0): 28, 17, 21, (574,586,0): 28, 17, 21, (574,587,0): 28, 17, 21, (574,588,0): 29, 18, 22, (574,589,0): 29, 18, 22, (574,590,0): 29, 18, 22, (574,591,0): 29, 18, 22, (574,592,0): 30, 20, 28, (574,593,0): 28, 21, 28, (574,594,0): 29, 20, 25, (574,595,0): 27, 21, 23, (574,596,0): 28, 19, 22, (574,597,0): 26, 20, 20, (574,598,0): 28, 20, 18, (574,599,0): 25, 20, 17, (575,0,0): 38, 57, 71, (575,1,0): 36, 58, 71, (575,2,0): 38, 57, 71, (575,3,0): 36, 58, 71, (575,4,0): 38, 57, 71, (575,5,0): 36, 58, 71, (575,6,0): 38, 57, 71, (575,7,0): 36, 58, 71, (575,8,0): 40, 59, 73, (575,9,0): 38, 60, 73, (575,10,0): 40, 59, 73, (575,11,0): 38, 60, 73, (575,12,0): 40, 59, 73, (575,13,0): 38, 60, 73, (575,14,0): 40, 59, 73, (575,15,0): 40, 59, 73, (575,16,0): 40, 59, 73, (575,17,0): 41, 59, 73, (575,18,0): 41, 59, 73, (575,19,0): 41, 59, 73, (575,20,0): 41, 59, 73, (575,21,0): 41, 59, 73, (575,22,0): 41, 59, 73, (575,23,0): 41, 59, 73, (575,24,0): 41, 59, 73, (575,25,0): 41, 59, 73, (575,26,0): 41, 59, 73, (575,27,0): 41, 59, 73, (575,28,0): 41, 59, 73, (575,29,0): 41, 59, 73, (575,30,0): 41, 59, 73, (575,31,0): 41, 59, 73, (575,32,0): 41, 57, 70, (575,33,0): 42, 59, 69, (575,34,0): 43, 59, 72, (575,35,0): 46, 60, 71, (575,36,0): 47, 61, 72, (575,37,0): 50, 62, 74, (575,38,0): 51, 63, 75, (575,39,0): 53, 63, 75, (575,40,0): 55, 63, 76, (575,41,0): 56, 62, 76, (575,42,0): 57, 63, 77, (575,43,0): 59, 62, 77, (575,44,0): 61, 63, 78, (575,45,0): 61, 63, 78, (575,46,0): 62, 64, 79, (575,47,0): 62, 64, 77, (575,48,0): 63, 62, 76, (575,49,0): 61, 63, 76, (575,50,0): 63, 62, 76, (575,51,0): 64, 63, 77, (575,52,0): 64, 63, 77, (575,53,0): 65, 64, 78, (575,54,0): 66, 64, 78, (575,55,0): 67, 65, 79, (575,56,0): 68, 66, 80, (575,57,0): 68, 66, 80, (575,58,0): 69, 65, 80, (575,59,0): 69, 65, 80, (575,60,0): 69, 65, 80, (575,61,0): 69, 65, 80, (575,62,0): 71, 64, 80, (575,63,0): 69, 65, 80, (575,64,0): 67, 65, 79, (575,65,0): 67, 65, 79, (575,66,0): 67, 65, 79, (575,67,0): 67, 65, 79, (575,68,0): 67, 65, 79, (575,69,0): 67, 65, 79, (575,70,0): 67, 65, 79, (575,71,0): 67, 65, 79, (575,72,0): 67, 65, 79, (575,73,0): 67, 65, 79, (575,74,0): 67, 65, 79, (575,75,0): 68, 66, 80, (575,76,0): 68, 66, 80, (575,77,0): 69, 67, 81, (575,78,0): 69, 67, 81, (575,79,0): 70, 67, 84, (575,80,0): 68, 67, 83, (575,81,0): 66, 68, 83, (575,82,0): 66, 67, 85, (575,83,0): 66, 68, 83, (575,84,0): 65, 66, 84, (575,85,0): 65, 67, 82, (575,86,0): 64, 65, 83, (575,87,0): 63, 65, 80, (575,88,0): 67, 68, 86, (575,89,0): 66, 69, 84, (575,90,0): 68, 69, 87, (575,91,0): 68, 71, 86, (575,92,0): 69, 72, 89, (575,93,0): 70, 73, 88, (575,94,0): 71, 74, 91, (575,95,0): 71, 74, 91, (575,96,0): 66, 73, 89, (575,97,0): 66, 73, 91, (575,98,0): 66, 73, 91, (575,99,0): 66, 73, 91, (575,100,0): 65, 74, 91, (575,101,0): 65, 74, 91, (575,102,0): 65, 73, 92, (575,103,0): 65, 73, 92, (575,104,0): 63, 74, 94, (575,105,0): 63, 74, 94, (575,106,0): 63, 74, 94, (575,107,0): 63, 76, 95, (575,108,0): 64, 75, 95, (575,109,0): 64, 77, 96, (575,110,0): 64, 76, 98, (575,111,0): 65, 78, 97, (575,112,0): 66, 74, 93, (575,113,0): 66, 74, 93, (575,114,0): 67, 74, 93, (575,115,0): 66, 74, 93, (575,116,0): 67, 74, 93, (575,117,0): 66, 74, 93, (575,118,0): 67, 74, 93, (575,119,0): 66, 74, 93, (575,120,0): 68, 75, 94, (575,121,0): 67, 75, 94, (575,122,0): 68, 75, 94, (575,123,0): 68, 75, 94, (575,124,0): 70, 77, 96, (575,125,0): 72, 79, 98, (575,126,0): 74, 80, 102, (575,127,0): 76, 81, 101, (575,128,0): 83, 80, 101, (575,129,0): 84, 79, 99, (575,130,0): 84, 79, 99, (575,131,0): 84, 79, 99, (575,132,0): 84, 79, 99, (575,133,0): 84, 79, 99, (575,134,0): 84, 79, 99, (575,135,0): 84, 79, 99, (575,136,0): 76, 71, 91, (575,137,0): 76, 71, 91, (575,138,0): 77, 72, 92, (575,139,0): 78, 74, 91, (575,140,0): 79, 75, 92, (575,141,0): 81, 74, 92, (575,142,0): 82, 75, 93, (575,143,0): 79, 76, 95, (575,144,0): 75, 80, 100, (575,145,0): 74, 82, 105, (575,146,0): 73, 84, 106, (575,147,0): 73, 84, 106, (575,148,0): 73, 83, 108, (575,149,0): 71, 83, 109, (575,150,0): 69, 81, 107, (575,151,0): 67, 81, 108, (575,152,0): 67, 81, 110, (575,153,0): 67, 82, 113, (575,154,0): 67, 82, 113, (575,155,0): 66, 82, 115, (575,156,0): 67, 83, 116, (575,157,0): 66, 85, 118, (575,158,0): 68, 84, 118, (575,159,0): 66, 84, 120, (575,160,0): 66, 84, 120, (575,161,0): 66, 86, 123, (575,162,0): 67, 85, 123, (575,163,0): 66, 86, 123, (575,164,0): 68, 86, 124, (575,165,0): 68, 88, 125, (575,166,0): 69, 87, 125, (575,167,0): 68, 88, 125, (575,168,0): 69, 87, 125, (575,169,0): 68, 88, 125, (575,170,0): 69, 87, 125, (575,171,0): 68, 88, 125, (575,172,0): 69, 87, 127, (575,173,0): 68, 88, 125, (575,174,0): 69, 87, 127, (575,175,0): 68, 87, 127, (575,176,0): 68, 85, 128, (575,177,0): 67, 86, 129, (575,178,0): 67, 86, 129, (575,179,0): 67, 86, 129, (575,180,0): 67, 86, 129, (575,181,0): 67, 86, 129, (575,182,0): 65, 86, 129, (575,183,0): 65, 86, 129, (575,184,0): 65, 88, 130, (575,185,0): 65, 88, 130, (575,186,0): 65, 88, 130, (575,187,0): 65, 88, 130, (575,188,0): 64, 87, 129, (575,189,0): 63, 88, 129, (575,190,0): 64, 87, 129, (575,191,0): 64, 87, 128, (575,192,0): 67, 89, 128, (575,193,0): 66, 88, 127, (575,194,0): 66, 88, 129, (575,195,0): 64, 87, 128, (575,196,0): 65, 87, 128, (575,197,0): 63, 86, 127, (575,198,0): 63, 86, 128, (575,199,0): 63, 86, 128, (575,200,0): 62, 86, 130, (575,201,0): 62, 86, 130, (575,202,0): 62, 86, 130, (575,203,0): 63, 87, 131, (575,204,0): 61, 88, 133, (575,205,0): 62, 89, 134, (575,206,0): 62, 89, 134, (575,207,0): 63, 90, 137, (575,208,0): 58, 88, 140, (575,209,0): 57, 88, 142, (575,210,0): 58, 88, 142, (575,211,0): 57, 88, 143, (575,212,0): 58, 87, 143, (575,213,0): 57, 88, 143, (575,214,0): 58, 87, 143, (575,215,0): 57, 88, 145, (575,216,0): 62, 91, 149, (575,217,0): 61, 91, 151, (575,218,0): 63, 92, 152, (575,219,0): 63, 93, 153, (575,220,0): 65, 94, 154, (575,221,0): 64, 94, 156, (575,222,0): 66, 94, 157, (575,223,0): 65, 95, 157, (575,224,0): 59, 93, 156, (575,225,0): 56, 94, 157, (575,226,0): 57, 95, 160, (575,227,0): 59, 96, 164, (575,228,0): 61, 98, 168, (575,229,0): 61, 99, 170, (575,230,0): 62, 100, 173, (575,231,0): 62, 101, 176, (575,232,0): 66, 105, 182, (575,233,0): 66, 105, 182, (575,234,0): 65, 104, 183, (575,235,0): 63, 104, 183, (575,236,0): 63, 105, 181, (575,237,0): 65, 107, 183, (575,238,0): 66, 108, 184, (575,239,0): 67, 108, 187, (575,240,0): 69, 110, 192, (575,241,0): 71, 111, 196, (575,242,0): 74, 112, 197, (575,243,0): 70, 110, 195, (575,244,0): 69, 107, 190, (575,245,0): 66, 107, 189, (575,246,0): 70, 108, 191, (575,247,0): 72, 113, 195, (575,248,0): 71, 109, 190, (575,249,0): 69, 110, 190, (575,250,0): 71, 110, 189, (575,251,0): 69, 110, 189, (575,252,0): 71, 110, 187, (575,253,0): 69, 111, 187, (575,254,0): 71, 110, 187, (575,255,0): 71, 110, 187, (575,256,0): 71, 110, 187, (575,257,0): 71, 110, 187, (575,258,0): 71, 110, 187, (575,259,0): 70, 109, 184, (575,260,0): 69, 109, 181, (575,261,0): 70, 108, 179, (575,262,0): 71, 108, 176, (575,263,0): 73, 106, 173, (575,264,0): 82, 110, 175, (575,265,0): 89, 109, 170, (575,266,0): 94, 109, 168, (575,267,0): 98, 107, 164, (575,268,0): 102, 105, 160, (575,269,0): 102, 102, 156, (575,270,0): 102, 97, 151, (575,271,0): 106, 94, 142, (575,272,0): 104, 78, 117, (575,273,0): 99, 65, 98, (575,274,0): 85, 52, 83, (575,275,0): 74, 40, 67, (575,276,0): 69, 34, 58, (575,277,0): 66, 31, 51, (575,278,0): 66, 29, 46, (575,279,0): 64, 28, 40, (575,280,0): 62, 26, 36, (575,281,0): 60, 27, 34, (575,282,0): 59, 26, 33, (575,283,0): 56, 25, 30, (575,284,0): 54, 23, 29, (575,285,0): 52, 23, 27, (575,286,0): 50, 21, 26, (575,287,0): 47, 22, 26, (575,288,0): 38, 19, 23, (575,289,0): 36, 21, 24, (575,290,0): 37, 22, 27, (575,291,0): 37, 20, 26, (575,292,0): 35, 18, 24, (575,293,0): 36, 19, 25, (575,294,0): 41, 24, 30, (575,295,0): 45, 28, 34, (575,296,0): 45, 28, 34, (575,297,0): 44, 27, 33, (575,298,0): 42, 25, 33, (575,299,0): 42, 22, 31, (575,300,0): 42, 22, 31, (575,301,0): 42, 22, 31, (575,302,0): 44, 24, 33, (575,303,0): 45, 26, 32, (575,304,0): 45, 29, 32, (575,305,0): 42, 26, 27, (575,306,0): 40, 24, 27, (575,307,0): 40, 24, 27, (575,308,0): 41, 25, 28, (575,309,0): 41, 25, 28, (575,310,0): 38, 21, 27, (575,311,0): 36, 19, 25, (575,312,0): 29, 12, 20, (575,313,0): 29, 12, 22, (575,314,0): 28, 11, 21, (575,315,0): 27, 10, 20, (575,316,0): 26, 8, 20, (575,317,0): 26, 8, 20, (575,318,0): 25, 7, 19, (575,319,0): 24, 8, 19, (575,320,0): 26, 13, 22, (575,321,0): 26, 13, 22, (575,322,0): 25, 12, 21, (575,323,0): 24, 11, 20, (575,324,0): 23, 10, 19, (575,325,0): 22, 9, 18, (575,326,0): 22, 9, 18, (575,327,0): 22, 9, 18, (575,328,0): 18, 5, 14, (575,329,0): 19, 6, 15, (575,330,0): 21, 8, 17, (575,331,0): 22, 9, 18, (575,332,0): 23, 10, 19, (575,333,0): 22, 9, 18, (575,334,0): 20, 7, 16, (575,335,0): 18, 7, 15, (575,336,0): 19, 8, 16, (575,337,0): 18, 8, 16, (575,338,0): 19, 8, 16, (575,339,0): 17, 7, 15, (575,340,0): 18, 7, 15, (575,341,0): 16, 6, 14, (575,342,0): 17, 6, 14, (575,343,0): 16, 6, 14, (575,344,0): 16, 5, 13, (575,345,0): 15, 5, 13, (575,346,0): 16, 5, 13, (575,347,0): 14, 4, 12, (575,348,0): 15, 4, 12, (575,349,0): 13, 3, 11, (575,350,0): 14, 3, 11, (575,351,0): 13, 3, 11, (575,352,0): 13, 6, 14, (575,353,0): 12, 5, 13, (575,354,0): 12, 5, 13, (575,355,0): 11, 4, 12, (575,356,0): 10, 3, 11, (575,357,0): 9, 2, 10, (575,358,0): 9, 2, 10, (575,359,0): 8, 1, 9, (575,360,0): 11, 4, 12, (575,361,0): 11, 4, 12, (575,362,0): 11, 4, 12, (575,363,0): 11, 4, 12, (575,364,0): 11, 4, 12, (575,365,0): 11, 4, 12, (575,366,0): 11, 4, 12, (575,367,0): 11, 4, 12, (575,368,0): 10, 3, 11, (575,369,0): 10, 3, 11, (575,370,0): 10, 3, 11, (575,371,0): 9, 2, 10, (575,372,0): 9, 2, 10, (575,373,0): 8, 1, 9, (575,374,0): 8, 1, 9, (575,375,0): 8, 1, 9, (575,376,0): 9, 2, 10, (575,377,0): 9, 2, 10, (575,378,0): 9, 2, 10, (575,379,0): 9, 2, 10, (575,380,0): 9, 2, 10, (575,381,0): 9, 2, 10, (575,382,0): 9, 2, 10, (575,383,0): 9, 2, 10, (575,384,0): 8, 1, 8, (575,385,0): 8, 2, 6, (575,386,0): 11, 1, 9, (575,387,0): 12, 3, 8, (575,388,0): 13, 4, 9, (575,389,0): 14, 5, 10, (575,390,0): 15, 6, 9, (575,391,0): 16, 5, 9, (575,392,0): 20, 9, 13, (575,393,0): 21, 9, 13, (575,394,0): 21, 9, 11, (575,395,0): 21, 9, 11, (575,396,0): 23, 8, 11, (575,397,0): 23, 9, 9, (575,398,0): 23, 8, 11, (575,399,0): 23, 9, 9, (575,400,0): 25, 13, 13, (575,401,0): 24, 14, 13, (575,402,0): 25, 13, 13, (575,403,0): 25, 13, 13, (575,404,0): 25, 13, 13, (575,405,0): 27, 13, 13, (575,406,0): 27, 13, 13, (575,407,0): 28, 12, 13, (575,408,0): 30, 11, 13, (575,409,0): 31, 12, 14, (575,410,0): 31, 12, 14, (575,411,0): 33, 13, 15, (575,412,0): 34, 14, 16, (575,413,0): 36, 14, 17, (575,414,0): 37, 15, 18, (575,415,0): 38, 16, 18, (575,416,0): 42, 18, 18, (575,417,0): 42, 18, 18, (575,418,0): 42, 18, 18, (575,419,0): 43, 19, 19, (575,420,0): 43, 19, 19, (575,421,0): 43, 19, 19, (575,422,0): 43, 19, 19, (575,423,0): 44, 20, 20, (575,424,0): 42, 21, 20, (575,425,0): 42, 21, 20, (575,426,0): 42, 21, 20, (575,427,0): 41, 20, 19, (575,428,0): 41, 20, 19, (575,429,0): 40, 19, 18, (575,430,0): 40, 19, 18, (575,431,0): 38, 18, 17, (575,432,0): 37, 22, 19, (575,433,0): 33, 22, 20, (575,434,0): 32, 18, 17, (575,435,0): 28, 17, 15, (575,436,0): 28, 14, 13, (575,437,0): 25, 14, 12, (575,438,0): 26, 12, 12, (575,439,0): 24, 12, 12, (575,440,0): 27, 12, 15, (575,441,0): 24, 12, 14, (575,442,0): 26, 11, 14, (575,443,0): 23, 11, 13, (575,444,0): 25, 10, 13, (575,445,0): 22, 10, 12, (575,446,0): 24, 9, 14, (575,447,0): 22, 10, 14, (575,448,0): 18, 7, 11, (575,449,0): 17, 6, 10, (575,450,0): 17, 6, 10, (575,451,0): 17, 6, 10, (575,452,0): 16, 5, 9, (575,453,0): 16, 5, 9, (575,454,0): 15, 4, 8, (575,455,0): 14, 5, 8, (575,456,0): 14, 3, 9, (575,457,0): 14, 5, 10, (575,458,0): 14, 5, 10, (575,459,0): 12, 3, 8, (575,460,0): 9, 0, 5, (575,461,0): 10, 1, 6, (575,462,0): 13, 4, 9, (575,463,0): 16, 7, 10, (575,464,0): 15, 3, 7, (575,465,0): 15, 3, 5, (575,466,0): 16, 4, 6, (575,467,0): 17, 5, 7, (575,468,0): 18, 6, 8, (575,469,0): 19, 7, 9, (575,470,0): 20, 8, 10, (575,471,0): 22, 8, 8, (575,472,0): 21, 6, 9, (575,473,0): 20, 6, 6, (575,474,0): 20, 6, 6, (575,475,0): 20, 6, 6, (575,476,0): 20, 6, 6, (575,477,0): 21, 7, 7, (575,478,0): 23, 9, 9, (575,479,0): 24, 10, 10, (575,480,0): 24, 10, 10, (575,481,0): 23, 11, 11, (575,482,0): 26, 12, 12, (575,483,0): 27, 13, 13, (575,484,0): 27, 13, 13, (575,485,0): 27, 13, 13, (575,486,0): 27, 11, 12, (575,487,0): 26, 10, 11, (575,488,0): 30, 11, 13, (575,489,0): 32, 12, 14, (575,490,0): 34, 14, 16, (575,491,0): 36, 16, 18, (575,492,0): 39, 17, 20, (575,493,0): 39, 17, 20, (575,494,0): 39, 17, 20, (575,495,0): 39, 17, 20, (575,496,0): 40, 16, 16, (575,497,0): 39, 15, 15, (575,498,0): 38, 14, 14, (575,499,0): 34, 13, 12, (575,500,0): 33, 12, 11, (575,501,0): 31, 10, 9, (575,502,0): 29, 9, 10, (575,503,0): 28, 8, 9, (575,504,0): 24, 6, 6, (575,505,0): 24, 6, 6, (575,506,0): 24, 5, 7, (575,507,0): 22, 6, 7, (575,508,0): 22, 6, 7, (575,509,0): 22, 6, 7, (575,510,0): 22, 6, 9, (575,511,0): 22, 6, 9, (575,512,0): 27, 8, 12, (575,513,0): 27, 8, 10, (575,514,0): 26, 7, 11, (575,515,0): 26, 7, 11, (575,516,0): 23, 7, 10, (575,517,0): 23, 7, 10, (575,518,0): 22, 5, 11, (575,519,0): 22, 5, 11, (575,520,0): 22, 5, 11, (575,521,0): 21, 6, 11, (575,522,0): 20, 5, 12, (575,523,0): 20, 5, 12, (575,524,0): 19, 4, 11, (575,525,0): 19, 4, 11, (575,526,0): 16, 3, 12, (575,527,0): 16, 3, 12, (575,528,0): 19, 6, 15, (575,529,0): 18, 6, 16, (575,530,0): 17, 5, 15, (575,531,0): 17, 5, 15, (575,532,0): 16, 4, 14, (575,533,0): 16, 4, 14, (575,534,0): 15, 3, 13, (575,535,0): 15, 3, 13, (575,536,0): 12, 0, 10, (575,537,0): 12, 0, 10, (575,538,0): 12, 0, 10, (575,539,0): 12, 0, 10, (575,540,0): 12, 0, 10, (575,541,0): 11, 1, 10, (575,542,0): 12, 0, 10, (575,543,0): 11, 1, 10, (575,544,0): 9, 2, 10, (575,545,0): 8, 3, 10, (575,546,0): 9, 2, 10, (575,547,0): 9, 2, 10, (575,548,0): 9, 2, 10, (575,549,0): 9, 2, 10, (575,550,0): 9, 2, 10, (575,551,0): 9, 2, 10, (575,552,0): 9, 2, 10, (575,553,0): 9, 2, 10, (575,554,0): 10, 3, 11, (575,555,0): 10, 3, 11, (575,556,0): 11, 4, 12, (575,557,0): 11, 4, 12, (575,558,0): 14, 4, 13, (575,559,0): 12, 5, 13, (575,560,0): 12, 7, 14, (575,561,0): 12, 7, 14, (575,562,0): 11, 6, 13, (575,563,0): 11, 6, 13, (575,564,0): 11, 6, 13, (575,565,0): 13, 8, 15, (575,566,0): 15, 8, 15, (575,567,0): 16, 9, 16, (575,568,0): 24, 15, 20, (575,569,0): 25, 16, 21, (575,570,0): 27, 18, 23, (575,571,0): 28, 19, 24, (575,572,0): 29, 20, 25, (575,573,0): 30, 21, 24, (575,574,0): 30, 19, 25, (575,575,0): 30, 19, 23, (575,576,0): 33, 22, 26, (575,577,0): 33, 21, 23, (575,578,0): 32, 20, 24, (575,579,0): 31, 19, 21, (575,580,0): 30, 18, 22, (575,581,0): 29, 17, 19, (575,582,0): 29, 17, 21, (575,583,0): 27, 17, 18, (575,584,0): 26, 15, 19, (575,585,0): 27, 17, 18, (575,586,0): 27, 16, 20, (575,587,0): 28, 18, 19, (575,588,0): 29, 18, 22, (575,589,0): 30, 20, 21, (575,590,0): 30, 19, 23, (575,591,0): 31, 20, 24, (575,592,0): 30, 21, 26, (575,593,0): 28, 22, 26, (575,594,0): 30, 21, 24, (575,595,0): 27, 21, 23, (575,596,0): 29, 20, 21, (575,597,0): 26, 20, 20, (575,598,0): 28, 20, 18, (575,599,0): 25, 20, 17, (576,0,0): 34, 56, 70, (576,1,0): 33, 56, 70, (576,2,0): 34, 56, 70, (576,3,0): 33, 56, 70, (576,4,0): 34, 56, 70, (576,5,0): 33, 56, 70, (576,6,0): 34, 56, 70, (576,7,0): 33, 56, 70, (576,8,0): 36, 58, 72, (576,9,0): 35, 58, 72, (576,10,0): 36, 58, 72, (576,11,0): 35, 58, 72, (576,12,0): 36, 58, 72, (576,13,0): 35, 58, 72, (576,14,0): 36, 58, 72, (576,15,0): 36, 58, 72, (576,16,0): 41, 60, 74, (576,17,0): 40, 59, 73, (576,18,0): 39, 58, 72, (576,19,0): 38, 57, 71, (576,20,0): 38, 57, 71, (576,21,0): 39, 58, 72, (576,22,0): 40, 59, 73, (576,23,0): 41, 60, 74, (576,24,0): 39, 58, 72, (576,25,0): 39, 58, 72, (576,26,0): 39, 58, 72, (576,27,0): 39, 58, 72, (576,28,0): 39, 58, 72, (576,29,0): 39, 58, 72, (576,30,0): 39, 58, 72, (576,31,0): 39, 58, 72, (576,32,0): 42, 60, 74, (576,33,0): 42, 60, 72, (576,34,0): 43, 61, 75, (576,35,0): 44, 60, 73, (576,36,0): 45, 61, 74, (576,37,0): 47, 61, 74, (576,38,0): 49, 61, 75, (576,39,0): 51, 60, 75, (576,40,0): 51, 61, 73, (576,41,0): 52, 60, 73, (576,42,0): 54, 60, 72, (576,43,0): 54, 60, 72, (576,44,0): 57, 61, 73, (576,45,0): 57, 61, 73, (576,46,0): 58, 62, 74, (576,47,0): 59, 61, 74, (576,48,0): 63, 62, 76, (576,49,0): 63, 62, 78, (576,50,0): 64, 61, 78, (576,51,0): 65, 62, 79, (576,52,0): 65, 62, 79, (576,53,0): 66, 63, 80, (576,54,0): 66, 63, 80, (576,55,0): 66, 63, 80, (576,56,0): 68, 65, 82, (576,57,0): 68, 65, 82, (576,58,0): 68, 65, 82, (576,59,0): 68, 65, 82, (576,60,0): 68, 65, 82, (576,61,0): 68, 65, 82, (576,62,0): 69, 65, 82, (576,63,0): 68, 65, 82, (576,64,0): 68, 65, 82, (576,65,0): 68, 65, 82, (576,66,0): 68, 65, 82, (576,67,0): 68, 65, 82, (576,68,0): 68, 65, 82, (576,69,0): 68, 65, 82, (576,70,0): 68, 65, 82, (576,71,0): 68, 65, 82, (576,72,0): 68, 65, 82, (576,73,0): 68, 65, 82, (576,74,0): 68, 65, 82, (576,75,0): 68, 65, 82, (576,76,0): 68, 65, 82, (576,77,0): 68, 65, 82, (576,78,0): 68, 65, 82, (576,79,0): 68, 65, 82, (576,80,0): 67, 66, 84, (576,81,0): 67, 66, 84, (576,82,0): 65, 66, 86, (576,83,0): 65, 66, 84, (576,84,0): 65, 66, 86, (576,85,0): 65, 66, 84, (576,86,0): 64, 67, 86, (576,87,0): 64, 67, 84, (576,88,0): 66, 69, 88, (576,89,0): 64, 70, 86, (576,90,0): 66, 69, 88, (576,91,0): 64, 70, 86, (576,92,0): 64, 69, 88, (576,93,0): 64, 70, 86, (576,94,0): 64, 69, 88, (576,95,0): 63, 70, 88, (576,96,0): 67, 74, 92, (576,97,0): 66, 74, 93, (576,98,0): 66, 74, 93, (576,99,0): 66, 74, 93, (576,100,0): 66, 74, 93, (576,101,0): 66, 74, 93, (576,102,0): 66, 74, 93, (576,103,0): 66, 74, 93, (576,104,0): 66, 74, 93, (576,105,0): 66, 74, 93, (576,106,0): 66, 74, 93, (576,107,0): 64, 75, 93, (576,108,0): 66, 74, 93, (576,109,0): 64, 75, 93, (576,110,0): 64, 75, 95, (576,111,0): 64, 75, 93, (576,112,0): 64, 75, 93, (576,113,0): 64, 76, 92, (576,114,0): 66, 75, 92, (576,115,0): 64, 76, 92, (576,116,0): 66, 74, 93, (576,117,0): 64, 75, 93, (576,118,0): 66, 74, 93, (576,119,0): 64, 75, 93, (576,120,0): 65, 73, 94, (576,121,0): 64, 75, 95, (576,122,0): 67, 75, 96, (576,123,0): 68, 76, 97, (576,124,0): 69, 77, 98, (576,125,0): 71, 79, 100, (576,126,0): 72, 80, 103, (576,127,0): 74, 79, 101, (576,128,0): 83, 80, 101, (576,129,0): 86, 78, 101, (576,130,0): 86, 81, 103, (576,131,0): 86, 81, 103, (576,132,0): 85, 80, 102, (576,133,0): 83, 78, 100, (576,134,0): 81, 76, 98, (576,135,0): 79, 74, 96, (576,136,0): 80, 75, 95, (576,137,0): 79, 74, 94, (576,138,0): 80, 73, 91, (576,139,0): 79, 72, 88, (576,140,0): 80, 73, 89, (576,141,0): 83, 74, 91, (576,142,0): 85, 77, 92, (576,143,0): 83, 79, 96, (576,144,0): 79, 84, 106, (576,145,0): 74, 81, 107, (576,146,0): 69, 79, 104, (576,147,0): 67, 77, 102, (576,148,0): 65, 77, 103, (576,149,0): 67, 79, 105, (576,150,0): 67, 81, 108, (576,151,0): 68, 83, 112, (576,152,0): 66, 83, 111, (576,153,0): 64, 83, 113, (576,154,0): 64, 83, 115, (576,155,0): 63, 83, 116, (576,156,0): 61, 84, 116, (576,157,0): 60, 84, 118, (576,158,0): 61, 84, 118, (576,159,0): 61, 84, 118, (576,160,0): 61, 84, 118, (576,161,0): 61, 84, 118, (576,162,0): 63, 83, 118, (576,163,0): 61, 84, 118, (576,164,0): 63, 83, 118, (576,165,0): 61, 84, 118, (576,166,0): 63, 83, 120, (576,167,0): 61, 83, 120, (576,168,0): 66, 85, 125, (576,169,0): 64, 86, 125, (576,170,0): 66, 85, 125, (576,171,0): 64, 86, 125, (576,172,0): 66, 85, 127, (576,173,0): 64, 86, 125, (576,174,0): 66, 85, 127, (576,175,0): 64, 86, 127, (576,176,0): 65, 84, 126, (576,177,0): 63, 85, 126, (576,178,0): 63, 85, 126, (576,179,0): 63, 85, 126, (576,180,0): 63, 85, 126, (576,181,0): 63, 85, 126, (576,182,0): 63, 85, 126, (576,183,0): 63, 85, 126, (576,184,0): 64, 86, 127, (576,185,0): 64, 86, 127, (576,186,0): 63, 85, 126, (576,187,0): 63, 85, 126, (576,188,0): 63, 85, 126, (576,189,0): 61, 84, 125, (576,190,0): 62, 84, 125, (576,191,0): 61, 84, 125, (576,192,0): 63, 86, 127, (576,193,0): 64, 87, 128, (576,194,0): 65, 88, 130, (576,195,0): 65, 90, 131, (576,196,0): 66, 89, 131, (576,197,0): 64, 89, 130, (576,198,0): 63, 87, 131, (576,199,0): 62, 86, 130, (576,200,0): 62, 86, 132, (576,201,0): 63, 87, 133, (576,202,0): 65, 89, 135, (576,203,0): 66, 90, 136, (576,204,0): 66, 90, 138, (576,205,0): 65, 89, 137, (576,206,0): 63, 87, 135, (576,207,0): 60, 86, 135, (576,208,0): 57, 87, 141, (576,209,0): 56, 89, 143, (576,210,0): 57, 88, 143, (576,211,0): 57, 89, 146, (576,212,0): 58, 89, 146, (576,213,0): 58, 90, 147, (576,214,0): 59, 90, 147, (576,215,0): 58, 90, 149, (576,216,0): 59, 89, 149, (576,217,0): 59, 91, 152, (576,218,0): 60, 90, 152, (576,219,0): 60, 92, 153, (576,220,0): 61, 91, 153, (576,221,0): 61, 92, 156, (576,222,0): 62, 92, 156, (576,223,0): 61, 92, 157, (576,224,0): 59, 94, 158, (576,225,0): 58, 96, 161, (576,226,0): 59, 97, 162, (576,227,0): 59, 98, 163, (576,228,0): 60, 99, 166, (576,229,0): 60, 99, 168, (576,230,0): 59, 97, 168, (576,231,0): 57, 97, 169, (576,232,0): 62, 102, 174, (576,233,0): 60, 102, 176, (576,234,0): 61, 103, 179, (576,235,0): 62, 104, 180, (576,236,0): 63, 104, 183, (576,237,0): 63, 106, 184, (576,238,0): 64, 107, 185, (576,239,0): 65, 108, 186, (576,240,0): 63, 106, 184, (576,241,0): 64, 107, 186, (576,242,0): 66, 107, 187, (576,243,0): 66, 109, 188, (576,244,0): 68, 109, 189, (576,245,0): 68, 111, 190, (576,246,0): 70, 111, 191, (576,247,0): 69, 112, 191, (576,248,0): 70, 111, 193, (576,249,0): 69, 111, 193, (576,250,0): 69, 110, 190, (576,251,0): 68, 111, 190, (576,252,0): 69, 110, 192, (576,253,0): 68, 110, 192, (576,254,0): 68, 109, 191, (576,255,0): 68, 109, 189, (576,256,0): 68, 105, 183, (576,257,0): 72, 108, 184, (576,258,0): 73, 111, 186, (576,259,0): 70, 109, 184, (576,260,0): 68, 107, 182, (576,261,0): 68, 106, 179, (576,262,0): 75, 107, 180, (576,263,0): 83, 110, 181, (576,264,0): 92, 109, 179, (576,265,0): 96, 103, 171, (576,266,0): 102, 100, 163, (576,267,0): 108, 100, 159, (576,268,0): 112, 99, 153, (576,269,0): 110, 93, 145, (576,270,0): 102, 82, 131, (576,271,0): 97, 75, 114, (576,272,0): 88, 59, 87, (576,273,0): 80, 48, 69, (576,274,0): 67, 35, 56, (576,275,0): 58, 29, 47, (576,276,0): 57, 29, 44, (576,277,0): 56, 28, 43, (576,278,0): 51, 25, 38, (576,279,0): 46, 20, 31, (576,280,0): 50, 24, 35, (576,281,0): 50, 24, 35, (576,282,0): 50, 24, 35, (576,283,0): 50, 23, 32, (576,284,0): 50, 22, 34, (576,285,0): 51, 21, 31, (576,286,0): 51, 21, 33, (576,287,0): 48, 22, 31, (576,288,0): 36, 19, 25, (576,289,0): 32, 20, 24, (576,290,0): 32, 20, 24, (576,291,0): 34, 19, 24, (576,292,0): 35, 20, 25, (576,293,0): 37, 22, 27, (576,294,0): 40, 23, 29, (576,295,0): 41, 24, 30, (576,296,0): 45, 26, 32, (576,297,0): 45, 26, 32, (576,298,0): 45, 26, 32, (576,299,0): 46, 25, 32, (576,300,0): 46, 25, 32, (576,301,0): 46, 25, 32, (576,302,0): 47, 24, 32, (576,303,0): 46, 25, 34, (576,304,0): 46, 29, 37, (576,305,0): 44, 29, 36, (576,306,0): 43, 27, 37, (576,307,0): 40, 24, 34, (576,308,0): 38, 22, 32, (576,309,0): 35, 19, 29, (576,310,0): 34, 18, 28, (576,311,0): 33, 17, 27, (576,312,0): 30, 14, 24, (576,313,0): 29, 13, 24, (576,314,0): 29, 13, 24, (576,315,0): 29, 13, 24, (576,316,0): 28, 12, 23, (576,317,0): 27, 11, 22, (576,318,0): 27, 11, 22, (576,319,0): 27, 11, 22, (576,320,0): 22, 9, 19, (576,321,0): 21, 9, 19, (576,322,0): 21, 9, 19, (576,323,0): 21, 9, 19, (576,324,0): 21, 9, 19, (576,325,0): 21, 9, 19, (576,326,0): 21, 9, 19, (576,327,0): 21, 9, 19, (576,328,0): 21, 9, 19, (576,329,0): 21, 9, 19, (576,330,0): 20, 8, 18, (576,331,0): 20, 8, 18, (576,332,0): 19, 7, 17, (576,333,0): 19, 7, 17, (576,334,0): 18, 6, 16, (576,335,0): 18, 6, 16, (576,336,0): 17, 7, 16, (576,337,0): 15, 8, 16, (576,338,0): 16, 6, 15, (576,339,0): 14, 7, 15, (576,340,0): 15, 5, 14, (576,341,0): 13, 6, 14, (576,342,0): 14, 4, 13, (576,343,0): 12, 5, 13, (576,344,0): 14, 4, 13, (576,345,0): 12, 5, 13, (576,346,0): 14, 4, 13, (576,347,0): 12, 5, 13, (576,348,0): 14, 4, 13, (576,349,0): 12, 5, 13, (576,350,0): 14, 4, 13, (576,351,0): 12, 5, 13, (576,352,0): 9, 1, 12, (576,353,0): 8, 2, 12, (576,354,0): 8, 2, 12, (576,355,0): 8, 2, 12, (576,356,0): 8, 2, 12, (576,357,0): 8, 2, 12, (576,358,0): 8, 2, 12, (576,359,0): 8, 2, 12, (576,360,0): 8, 2, 12, (576,361,0): 8, 2, 12, (576,362,0): 8, 2, 12, (576,363,0): 8, 2, 12, (576,364,0): 8, 2, 12, (576,365,0): 8, 2, 12, (576,366,0): 8, 2, 12, (576,367,0): 8, 2, 12, (576,368,0): 7, 2, 9, (576,369,0): 7, 2, 9, (576,370,0): 7, 2, 9, (576,371,0): 7, 2, 9, (576,372,0): 7, 2, 9, (576,373,0): 7, 2, 9, (576,374,0): 7, 2, 9, (576,375,0): 7, 2, 9, (576,376,0): 5, 0, 7, (576,377,0): 6, 1, 8, (576,378,0): 6, 1, 8, (576,379,0): 7, 2, 9, (576,380,0): 7, 2, 9, (576,381,0): 8, 3, 10, (576,382,0): 8, 3, 10, (576,383,0): 9, 2, 9, (576,384,0): 14, 5, 10, (576,385,0): 14, 5, 8, (576,386,0): 15, 4, 10, (576,387,0): 15, 4, 8, (576,388,0): 15, 4, 8, (576,389,0): 15, 4, 8, (576,390,0): 15, 4, 8, (576,391,0): 16, 4, 8, (576,392,0): 20, 8, 12, (576,393,0): 22, 7, 12, (576,394,0): 22, 7, 12, (576,395,0): 22, 7, 12, (576,396,0): 23, 6, 12, (576,397,0): 23, 7, 10, (576,398,0): 23, 6, 12, (576,399,0): 22, 7, 10, (576,400,0): 22, 12, 11, (576,401,0): 22, 14, 12, (576,402,0): 23, 13, 12, (576,403,0): 24, 14, 13, (576,404,0): 24, 14, 13, (576,405,0): 26, 14, 14, (576,406,0): 28, 14, 14, (576,407,0): 29, 13, 14, (576,408,0): 31, 12, 14, (576,409,0): 32, 13, 15, (576,410,0): 34, 14, 16, (576,411,0): 36, 14, 17, (576,412,0): 38, 13, 17, (576,413,0): 38, 13, 17, (576,414,0): 37, 12, 16, (576,415,0): 36, 11, 15, (576,416,0): 46, 20, 23, (576,417,0): 46, 20, 23, (576,418,0): 46, 20, 23, (576,419,0): 45, 19, 22, (576,420,0): 44, 19, 22, (576,421,0): 44, 19, 22, (576,422,0): 42, 20, 22, (576,423,0): 42, 20, 22, (576,424,0): 40, 20, 21, (576,425,0): 41, 21, 22, (576,426,0): 42, 24, 24, (576,427,0): 43, 25, 25, (576,428,0): 40, 24, 24, (576,429,0): 39, 23, 23, (576,430,0): 37, 21, 21, (576,431,0): 36, 20, 20, (576,432,0): 37, 21, 21, (576,433,0): 36, 22, 22, (576,434,0): 36, 20, 21, (576,435,0): 34, 20, 20, (576,436,0): 34, 18, 19, (576,437,0): 32, 18, 18, (576,438,0): 32, 16, 17, (576,439,0): 30, 16, 16, (576,440,0): 30, 14, 15, (576,441,0): 28, 14, 14, (576,442,0): 28, 12, 13, (576,443,0): 26, 12, 12, (576,444,0): 26, 10, 11, (576,445,0): 24, 10, 10, (576,446,0): 25, 9, 12, (576,447,0): 23, 8, 11, (576,448,0): 22, 10, 14, (576,449,0): 20, 9, 13, (576,450,0): 20, 9, 13, (576,451,0): 19, 8, 12, (576,452,0): 17, 8, 13, (576,453,0): 16, 7, 12, (576,454,0): 15, 6, 11, (576,455,0): 12, 6, 10, (576,456,0): 15, 5, 13, (576,457,0): 12, 5, 12, (576,458,0): 10, 3, 10, (576,459,0): 9, 2, 9, (576,460,0): 7, 2, 9, (576,461,0): 8, 3, 10, (576,462,0): 10, 5, 12, (576,463,0): 12, 5, 12, (576,464,0): 15, 4, 12, (576,465,0): 16, 3, 10, (576,466,0): 19, 4, 11, (576,467,0): 19, 4, 11, (576,468,0): 20, 5, 10, (576,469,0): 20, 5, 10, (576,470,0): 21, 6, 11, (576,471,0): 22, 6, 9, (576,472,0): 20, 3, 9, (576,473,0): 20, 4, 7, (576,474,0): 20, 4, 7, (576,475,0): 20, 4, 7, (576,476,0): 22, 3, 5, (576,477,0): 22, 3, 5, (576,478,0): 22, 3, 5, (576,479,0): 22, 3, 5, (576,480,0): 21, 5, 5, (576,481,0): 21, 7, 6, (576,482,0): 23, 7, 7, (576,483,0): 24, 8, 8, (576,484,0): 25, 9, 9, (576,485,0): 27, 11, 11, (576,486,0): 28, 12, 12, (576,487,0): 28, 12, 12, (576,488,0): 27, 11, 11, (576,489,0): 32, 14, 14, (576,490,0): 35, 17, 17, (576,491,0): 35, 17, 17, (576,492,0): 33, 15, 15, (576,493,0): 33, 15, 15, (576,494,0): 36, 18, 18, (576,495,0): 40, 20, 21, (576,496,0): 36, 11, 14, (576,497,0): 37, 11, 14, (576,498,0): 36, 10, 13, (576,499,0): 33, 8, 11, (576,500,0): 32, 7, 10, (576,501,0): 29, 7, 9, (576,502,0): 27, 7, 9, (576,503,0): 26, 6, 8, (576,504,0): 26, 7, 9, (576,505,0): 26, 7, 9, (576,506,0): 24, 8, 9, (576,507,0): 24, 8, 9, (576,508,0): 24, 8, 9, (576,509,0): 23, 9, 9, (576,510,0): 23, 9, 9, (576,511,0): 23, 8, 11, (576,512,0): 21, 6, 9, (576,513,0): 22, 7, 10, (576,514,0): 22, 7, 12, (576,515,0): 23, 8, 13, (576,516,0): 25, 10, 15, (576,517,0): 26, 11, 16, (576,518,0): 26, 11, 16, (576,519,0): 27, 12, 17, (576,520,0): 20, 5, 10, (576,521,0): 18, 6, 10, (576,522,0): 18, 6, 10, (576,523,0): 18, 6, 10, (576,524,0): 18, 6, 10, (576,525,0): 17, 5, 9, (576,526,0): 17, 4, 11, (576,527,0): 17, 4, 11, (576,528,0): 19, 6, 15, (576,529,0): 18, 5, 14, (576,530,0): 18, 5, 14, (576,531,0): 17, 4, 13, (576,532,0): 15, 2, 11, (576,533,0): 14, 1, 10, (576,534,0): 13, 2, 10, (576,535,0): 12, 1, 9, (576,536,0): 11, 1, 9, (576,537,0): 11, 1, 9, (576,538,0): 11, 1, 9, (576,539,0): 11, 1, 9, (576,540,0): 11, 1, 9, (576,541,0): 9, 2, 9, (576,542,0): 11, 1, 9, (576,543,0): 9, 2, 10, (576,544,0): 8, 3, 10, (576,545,0): 6, 3, 12, (576,546,0): 8, 2, 12, (576,547,0): 8, 2, 12, (576,548,0): 8, 2, 12, (576,549,0): 8, 2, 12, (576,550,0): 9, 1, 12, (576,551,0): 9, 1, 12, (576,552,0): 10, 2, 13, (576,553,0): 11, 3, 14, (576,554,0): 13, 3, 14, (576,555,0): 14, 4, 15, (576,556,0): 14, 4, 15, (576,557,0): 15, 5, 16, (576,558,0): 16, 4, 16, (576,559,0): 15, 5, 14, (576,560,0): 10, 3, 11, (576,561,0): 11, 4, 11, (576,562,0): 12, 5, 12, (576,563,0): 13, 6, 13, (576,564,0): 14, 7, 14, (576,565,0): 16, 9, 16, (576,566,0): 17, 10, 17, (576,567,0): 17, 10, 17, (576,568,0): 19, 12, 19, (576,569,0): 22, 15, 22, (576,570,0): 26, 19, 26, (576,571,0): 30, 23, 30, (576,572,0): 33, 26, 33, (576,573,0): 33, 27, 31, (576,574,0): 34, 24, 32, (576,575,0): 32, 23, 28, (576,576,0): 33, 21, 23, (576,577,0): 35, 21, 21, (576,578,0): 36, 21, 24, (576,579,0): 36, 22, 22, (576,580,0): 36, 21, 24, (576,581,0): 35, 21, 21, (576,582,0): 33, 18, 21, (576,583,0): 30, 18, 18, (576,584,0): 31, 19, 21, (576,585,0): 31, 19, 19, (576,586,0): 31, 21, 22, (576,587,0): 31, 21, 20, (576,588,0): 32, 22, 23, (576,589,0): 32, 22, 21, (576,590,0): 33, 23, 24, (576,591,0): 33, 23, 24, (576,592,0): 35, 25, 26, (576,593,0): 35, 26, 27, (576,594,0): 36, 26, 27, (576,595,0): 35, 26, 27, (576,596,0): 35, 25, 24, (576,597,0): 33, 25, 23, (576,598,0): 32, 22, 21, (576,599,0): 30, 22, 20, (577,0,0): 33, 56, 70, (577,1,0): 33, 56, 70, (577,2,0): 33, 56, 70, (577,3,0): 33, 56, 70, (577,4,0): 33, 56, 70, (577,5,0): 33, 56, 70, (577,6,0): 33, 56, 70, (577,7,0): 33, 56, 70, (577,8,0): 35, 58, 72, (577,9,0): 35, 58, 72, (577,10,0): 35, 58, 72, (577,11,0): 35, 58, 72, (577,12,0): 35, 58, 72, (577,13,0): 35, 58, 72, (577,14,0): 35, 58, 72, (577,15,0): 35, 58, 72, (577,16,0): 40, 59, 73, (577,17,0): 40, 59, 73, (577,18,0): 39, 58, 72, (577,19,0): 38, 57, 71, (577,20,0): 38, 57, 71, (577,21,0): 39, 58, 72, (577,22,0): 40, 59, 73, (577,23,0): 40, 59, 73, (577,24,0): 39, 58, 72, (577,25,0): 39, 58, 72, (577,26,0): 39, 58, 72, (577,27,0): 39, 58, 72, (577,28,0): 39, 58, 72, (577,29,0): 39, 58, 72, (577,30,0): 39, 58, 72, (577,31,0): 39, 58, 72, (577,32,0): 42, 60, 74, (577,33,0): 42, 60, 74, (577,34,0): 42, 60, 74, (577,35,0): 43, 61, 75, (577,36,0): 44, 60, 73, (577,37,0): 45, 61, 74, (577,38,0): 48, 60, 74, (577,39,0): 49, 61, 75, (577,40,0): 51, 61, 73, (577,41,0): 51, 61, 73, (577,42,0): 54, 60, 72, (577,43,0): 54, 60, 72, (577,44,0): 57, 61, 73, (577,45,0): 57, 61, 73, (577,46,0): 58, 62, 73, (577,47,0): 59, 61, 73, (577,48,0): 63, 62, 78, (577,49,0): 64, 61, 78, (577,50,0): 64, 61, 78, (577,51,0): 65, 62, 79, (577,52,0): 65, 62, 79, (577,53,0): 66, 63, 80, (577,54,0): 66, 63, 80, (577,55,0): 66, 63, 80, (577,56,0): 67, 64, 81, (577,57,0): 67, 64, 81, (577,58,0): 67, 64, 81, (577,59,0): 67, 64, 81, (577,60,0): 67, 64, 81, (577,61,0): 67, 64, 81, (577,62,0): 67, 64, 81, (577,63,0): 67, 64, 81, (577,64,0): 68, 65, 82, (577,65,0): 68, 65, 82, (577,66,0): 68, 65, 82, (577,67,0): 68, 65, 82, (577,68,0): 68, 65, 82, (577,69,0): 68, 65, 82, (577,70,0): 68, 65, 82, (577,71,0): 68, 65, 82, (577,72,0): 68, 65, 82, (577,73,0): 68, 65, 82, (577,74,0): 68, 65, 82, (577,75,0): 68, 65, 82, (577,76,0): 68, 65, 82, (577,77,0): 68, 65, 82, (577,78,0): 68, 65, 82, (577,79,0): 68, 65, 82, (577,80,0): 67, 65, 86, (577,81,0): 67, 65, 86, (577,82,0): 65, 66, 86, (577,83,0): 65, 66, 86, (577,84,0): 65, 66, 86, (577,85,0): 65, 66, 86, (577,86,0): 64, 67, 86, (577,87,0): 64, 67, 86, (577,88,0): 64, 69, 88, (577,89,0): 64, 69, 88, (577,90,0): 64, 69, 88, (577,91,0): 64, 69, 88, (577,92,0): 63, 70, 88, (577,93,0): 63, 70, 88, (577,94,0): 63, 70, 88, (577,95,0): 63, 70, 88, (577,96,0): 65, 73, 92, (577,97,0): 65, 73, 92, (577,98,0): 65, 73, 92, (577,99,0): 65, 73, 92, (577,100,0): 65, 73, 92, (577,101,0): 65, 73, 92, (577,102,0): 65, 73, 92, (577,103,0): 65, 73, 92, (577,104,0): 65, 73, 92, (577,105,0): 65, 73, 92, (577,106,0): 65, 73, 92, (577,107,0): 65, 73, 92, (577,108,0): 65, 73, 92, (577,109,0): 65, 73, 92, (577,110,0): 65, 73, 92, (577,111,0): 65, 73, 92, (577,112,0): 64, 76, 92, (577,113,0): 64, 76, 92, (577,114,0): 64, 76, 92, (577,115,0): 64, 76, 92, (577,116,0): 64, 75, 93, (577,117,0): 64, 75, 93, (577,118,0): 64, 75, 93, (577,119,0): 64, 75, 93, (577,120,0): 63, 74, 94, (577,121,0): 64, 75, 95, (577,122,0): 65, 76, 96, (577,123,0): 66, 77, 97, (577,124,0): 69, 77, 100, (577,125,0): 70, 78, 101, (577,126,0): 71, 79, 102, (577,127,0): 74, 79, 101, (577,128,0): 81, 77, 100, (577,129,0): 85, 77, 100, (577,130,0): 84, 79, 101, (577,131,0): 84, 79, 101, (577,132,0): 83, 78, 100, (577,133,0): 82, 77, 97, (577,134,0): 82, 74, 95, (577,135,0): 79, 74, 94, (577,136,0): 81, 73, 94, (577,137,0): 81, 74, 92, (577,138,0): 80, 73, 89, (577,139,0): 80, 73, 89, (577,140,0): 82, 74, 89, (577,141,0): 83, 75, 90, (577,142,0): 86, 78, 91, (577,143,0): 84, 80, 95, (577,144,0): 78, 83, 105, (577,145,0): 74, 81, 107, (577,146,0): 69, 79, 104, (577,147,0): 67, 77, 102, (577,148,0): 65, 77, 103, (577,149,0): 65, 79, 106, (577,150,0): 66, 81, 110, (577,151,0): 66, 83, 111, (577,152,0): 66, 83, 113, (577,153,0): 63, 84, 115, (577,154,0): 63, 83, 116, (577,155,0): 61, 84, 116, (577,156,0): 60, 84, 118, (577,157,0): 59, 85, 118, (577,158,0): 59, 85, 118, (577,159,0): 59, 85, 118, (577,160,0): 60, 84, 118, (577,161,0): 61, 84, 118, (577,162,0): 61, 84, 118, (577,163,0): 61, 84, 118, (577,164,0): 61, 84, 118, (577,165,0): 61, 84, 118, (577,166,0): 61, 83, 120, (577,167,0): 61, 83, 120, (577,168,0): 64, 86, 125, (577,169,0): 64, 86, 125, (577,170,0): 64, 86, 127, (577,171,0): 64, 86, 127, (577,172,0): 64, 86, 127, (577,173,0): 64, 86, 127, (577,174,0): 64, 86, 127, (577,175,0): 64, 86, 127, (577,176,0): 62, 84, 125, (577,177,0): 62, 84, 125, (577,178,0): 62, 84, 125, (577,179,0): 62, 84, 125, (577,180,0): 62, 84, 125, (577,181,0): 62, 84, 125, (577,182,0): 62, 84, 125, (577,183,0): 62, 84, 125, (577,184,0): 63, 85, 126, (577,185,0): 63, 85, 126, (577,186,0): 63, 85, 126, (577,187,0): 63, 85, 126, (577,188,0): 63, 85, 126, (577,189,0): 62, 84, 125, (577,190,0): 62, 84, 125, (577,191,0): 61, 84, 125, (577,192,0): 62, 87, 128, (577,193,0): 63, 88, 129, (577,194,0): 64, 88, 132, (577,195,0): 65, 89, 133, (577,196,0): 65, 89, 133, (577,197,0): 64, 88, 132, (577,198,0): 63, 87, 133, (577,199,0): 62, 86, 132, (577,200,0): 61, 85, 133, (577,201,0): 62, 86, 134, (577,202,0): 64, 88, 136, (577,203,0): 65, 89, 137, (577,204,0): 65, 88, 138, (577,205,0): 64, 87, 137, (577,206,0): 62, 85, 135, (577,207,0): 59, 85, 136, (577,208,0): 56, 87, 142, (577,209,0): 56, 88, 145, (577,210,0): 56, 88, 145, (577,211,0): 56, 88, 145, (577,212,0): 57, 89, 148, (577,213,0): 57, 89, 148, (577,214,0): 58, 90, 149, (577,215,0): 58, 90, 149, (577,216,0): 58, 90, 151, (577,217,0): 59, 91, 152, (577,218,0): 59, 90, 154, (577,219,0): 59, 90, 154, (577,220,0): 60, 91, 155, (577,221,0): 60, 91, 155, (577,222,0): 61, 92, 157, (577,223,0): 59, 93, 157, (577,224,0): 58, 93, 159, (577,225,0): 57, 95, 160, (577,226,0): 58, 97, 162, (577,227,0): 59, 98, 163, (577,228,0): 60, 99, 166, (577,229,0): 60, 99, 166, (577,230,0): 58, 98, 167, (577,231,0): 57, 97, 167, (577,232,0): 60, 102, 174, (577,233,0): 60, 102, 174, (577,234,0): 61, 103, 177, (577,235,0): 62, 104, 180, (577,236,0): 62, 105, 183, (577,237,0): 63, 106, 184, (577,238,0): 64, 107, 185, (577,239,0): 64, 107, 185, (577,240,0): 62, 106, 181, (577,241,0): 63, 107, 182, (577,242,0): 64, 107, 185, (577,243,0): 65, 108, 186, (577,244,0): 66, 109, 187, (577,245,0): 67, 110, 188, (577,246,0): 68, 111, 190, (577,247,0): 68, 111, 190, (577,248,0): 68, 110, 192, (577,249,0): 68, 110, 192, (577,250,0): 68, 110, 192, (577,251,0): 68, 110, 192, (577,252,0): 68, 110, 194, (577,253,0): 68, 110, 194, (577,254,0): 68, 110, 194, (577,255,0): 69, 110, 192, (577,256,0): 71, 108, 186, (577,257,0): 74, 110, 186, (577,258,0): 74, 112, 187, (577,259,0): 73, 111, 186, (577,260,0): 70, 108, 183, (577,261,0): 70, 106, 180, (577,262,0): 77, 107, 180, (577,263,0): 84, 107, 177, (577,264,0): 98, 108, 177, (577,265,0): 99, 100, 165, (577,266,0): 100, 90, 150, (577,267,0): 103, 86, 140, (577,268,0): 104, 82, 131, (577,269,0): 100, 77, 121, (577,270,0): 92, 67, 107, (577,271,0): 87, 60, 93, (577,272,0): 78, 49, 69, (577,273,0): 69, 41, 55, (577,274,0): 59, 31, 45, (577,275,0): 53, 27, 40, (577,276,0): 51, 27, 40, (577,277,0): 49, 27, 39, (577,278,0): 46, 24, 36, (577,279,0): 42, 20, 32, (577,280,0): 43, 21, 33, (577,281,0): 43, 21, 33, (577,282,0): 44, 20, 33, (577,283,0): 44, 20, 33, (577,284,0): 46, 20, 33, (577,285,0): 47, 19, 33, (577,286,0): 50, 19, 34, (577,287,0): 47, 21, 32, (577,288,0): 38, 21, 29, (577,289,0): 34, 22, 26, (577,290,0): 34, 22, 26, (577,291,0): 33, 21, 25, (577,292,0): 36, 21, 26, (577,293,0): 37, 22, 27, (577,294,0): 40, 23, 29, (577,295,0): 41, 24, 30, (577,296,0): 44, 25, 31, (577,297,0): 44, 25, 31, (577,298,0): 45, 24, 31, (577,299,0): 45, 24, 31, (577,300,0): 45, 24, 31, (577,301,0): 46, 23, 31, (577,302,0): 46, 23, 31, (577,303,0): 45, 24, 33, (577,304,0): 43, 26, 36, (577,305,0): 41, 25, 36, (577,306,0): 40, 24, 35, (577,307,0): 37, 21, 32, (577,308,0): 35, 19, 30, (577,309,0): 33, 17, 28, (577,310,0): 31, 15, 26, (577,311,0): 30, 14, 25, (577,312,0): 29, 13, 24, (577,313,0): 29, 13, 24, (577,314,0): 29, 13, 24, (577,315,0): 28, 12, 23, (577,316,0): 28, 12, 23, (577,317,0): 27, 11, 22, (577,318,0): 27, 11, 22, (577,319,0): 24, 11, 21, (577,320,0): 22, 9, 19, (577,321,0): 21, 9, 19, (577,322,0): 21, 9, 19, (577,323,0): 21, 9, 19, (577,324,0): 21, 9, 19, (577,325,0): 21, 9, 19, (577,326,0): 21, 9, 19, (577,327,0): 21, 9, 19, (577,328,0): 21, 9, 19, (577,329,0): 20, 8, 18, (577,330,0): 20, 8, 18, (577,331,0): 19, 7, 17, (577,332,0): 19, 7, 17, (577,333,0): 18, 6, 16, (577,334,0): 18, 6, 16, (577,335,0): 17, 7, 16, (577,336,0): 17, 7, 16, (577,337,0): 14, 7, 15, (577,338,0): 14, 7, 15, (577,339,0): 13, 6, 14, (577,340,0): 13, 6, 14, (577,341,0): 12, 5, 13, (577,342,0): 12, 5, 13, (577,343,0): 12, 5, 13, (577,344,0): 11, 4, 12, (577,345,0): 11, 4, 12, (577,346,0): 11, 4, 12, (577,347,0): 11, 4, 12, (577,348,0): 11, 4, 12, (577,349,0): 11, 4, 12, (577,350,0): 11, 4, 12, (577,351,0): 11, 4, 12, (577,352,0): 7, 1, 13, (577,353,0): 7, 1, 13, (577,354,0): 7, 1, 13, (577,355,0): 7, 1, 13, (577,356,0): 7, 1, 13, (577,357,0): 7, 1, 13, (577,358,0): 7, 1, 13, (577,359,0): 7, 1, 13, (577,360,0): 7, 1, 13, (577,361,0): 7, 1, 13, (577,362,0): 7, 1, 13, (577,363,0): 7, 1, 13, (577,364,0): 7, 1, 13, (577,365,0): 7, 1, 13, (577,366,0): 7, 1, 13, (577,367,0): 7, 1, 11, (577,368,0): 7, 1, 11, (577,369,0): 7, 2, 9, (577,370,0): 7, 2, 9, (577,371,0): 7, 2, 9, (577,372,0): 7, 2, 9, (577,373,0): 7, 2, 9, (577,374,0): 7, 2, 9, (577,375,0): 7, 2, 9, (577,376,0): 6, 1, 8, (577,377,0): 7, 2, 9, (577,378,0): 7, 2, 9, (577,379,0): 8, 3, 10, (577,380,0): 8, 3, 10, (577,381,0): 9, 4, 11, (577,382,0): 9, 4, 11, (577,383,0): 10, 3, 10, (577,384,0): 15, 6, 11, (577,385,0): 16, 5, 9, (577,386,0): 16, 5, 9, (577,387,0): 16, 5, 9, (577,388,0): 16, 5, 9, (577,389,0): 16, 5, 9, (577,390,0): 17, 5, 9, (577,391,0): 17, 5, 9, (577,392,0): 22, 7, 12, (577,393,0): 22, 7, 12, (577,394,0): 23, 6, 12, (577,395,0): 23, 6, 12, (577,396,0): 23, 6, 12, (577,397,0): 23, 6, 12, (577,398,0): 23, 6, 12, (577,399,0): 22, 7, 10, (577,400,0): 21, 12, 13, (577,401,0): 19, 14, 11, (577,402,0): 22, 14, 12, (577,403,0): 22, 14, 12, (577,404,0): 24, 14, 13, (577,405,0): 24, 14, 13, (577,406,0): 28, 14, 14, (577,407,0): 28, 14, 14, (577,408,0): 31, 12, 14, (577,409,0): 32, 13, 15, (577,410,0): 35, 13, 16, (577,411,0): 36, 14, 17, (577,412,0): 39, 14, 18, (577,413,0): 39, 12, 17, (577,414,0): 39, 12, 17, (577,415,0): 38, 11, 16, (577,416,0): 45, 18, 23, (577,417,0): 45, 18, 23, (577,418,0): 45, 18, 23, (577,419,0): 44, 19, 23, (577,420,0): 44, 19, 23, (577,421,0): 42, 20, 23, (577,422,0): 41, 19, 22, (577,423,0): 40, 20, 22, (577,424,0): 40, 21, 23, (577,425,0): 41, 22, 24, (577,426,0): 40, 24, 25, (577,427,0): 41, 25, 26, (577,428,0): 40, 26, 26, (577,429,0): 39, 25, 25, (577,430,0): 37, 23, 23, (577,431,0): 36, 22, 22, (577,432,0): 37, 21, 22, (577,433,0): 37, 21, 22, (577,434,0): 36, 20, 21, (577,435,0): 35, 19, 20, (577,436,0): 34, 18, 19, (577,437,0): 33, 17, 18, (577,438,0): 32, 16, 17, (577,439,0): 32, 16, 17, (577,440,0): 31, 15, 16, (577,441,0): 30, 14, 15, (577,442,0): 30, 14, 15, (577,443,0): 29, 13, 14, (577,444,0): 28, 12, 13, (577,445,0): 27, 11, 12, (577,446,0): 26, 10, 11, (577,447,0): 24, 10, 10, (577,448,0): 22, 10, 14, (577,449,0): 21, 10, 14, (577,450,0): 20, 9, 13, (577,451,0): 19, 8, 12, (577,452,0): 17, 8, 13, (577,453,0): 16, 7, 12, (577,454,0): 13, 6, 13, (577,455,0): 13, 6, 13, (577,456,0): 14, 7, 14, (577,457,0): 12, 5, 12, (577,458,0): 9, 4, 11, (577,459,0): 8, 3, 10, (577,460,0): 5, 2, 11, (577,461,0): 5, 2, 11, (577,462,0): 6, 3, 12, (577,463,0): 9, 4, 11, (577,464,0): 15, 3, 13, (577,465,0): 16, 3, 12, (577,466,0): 18, 2, 12, (577,467,0): 19, 3, 13, (577,468,0): 19, 4, 11, (577,469,0): 20, 5, 12, (577,470,0): 21, 4, 10, (577,471,0): 22, 5, 11, (577,472,0): 22, 3, 9, (577,473,0): 22, 3, 9, (577,474,0): 22, 3, 7, (577,475,0): 22, 3, 7, (577,476,0): 23, 3, 5, (577,477,0): 23, 3, 5, (577,478,0): 23, 3, 5, (577,479,0): 22, 3, 5, (577,480,0): 23, 5, 5, (577,481,0): 22, 7, 4, (577,482,0): 23, 8, 5, (577,483,0): 24, 9, 6, (577,484,0): 25, 10, 7, (577,485,0): 26, 11, 8, (577,486,0): 27, 12, 9, (577,487,0): 28, 13, 10, (577,488,0): 27, 12, 9, (577,489,0): 29, 14, 11, (577,490,0): 32, 17, 14, (577,491,0): 32, 17, 14, (577,492,0): 30, 15, 12, (577,493,0): 31, 16, 13, (577,494,0): 33, 18, 15, (577,495,0): 38, 20, 20, (577,496,0): 36, 11, 15, (577,497,0): 37, 10, 15, (577,498,0): 36, 9, 14, (577,499,0): 34, 9, 13, (577,500,0): 32, 7, 11, (577,501,0): 29, 7, 10, (577,502,0): 27, 7, 9, (577,503,0): 27, 7, 9, (577,504,0): 26, 7, 9, (577,505,0): 26, 7, 9, (577,506,0): 24, 8, 9, (577,507,0): 24, 8, 9, (577,508,0): 23, 9, 9, (577,509,0): 23, 9, 9, (577,510,0): 21, 9, 9, (577,511,0): 21, 9, 9, (577,512,0): 19, 7, 11, (577,513,0): 20, 8, 12, (577,514,0): 20, 8, 12, (577,515,0): 21, 9, 13, (577,516,0): 23, 11, 15, (577,517,0): 24, 12, 16, (577,518,0): 24, 12, 16, (577,519,0): 25, 13, 17, (577,520,0): 19, 7, 11, (577,521,0): 19, 7, 11, (577,522,0): 19, 7, 11, (577,523,0): 18, 6, 10, (577,524,0): 18, 6, 10, (577,525,0): 18, 6, 10, (577,526,0): 17, 5, 9, (577,527,0): 17, 5, 9, (577,528,0): 21, 5, 15, (577,529,0): 20, 4, 14, (577,530,0): 18, 5, 14, (577,531,0): 17, 4, 13, (577,532,0): 15, 2, 11, (577,533,0): 14, 1, 10, (577,534,0): 13, 2, 10, (577,535,0): 12, 1, 9, (577,536,0): 11, 1, 9, (577,537,0): 11, 1, 9, (577,538,0): 11, 1, 9, (577,539,0): 11, 1, 9, (577,540,0): 9, 2, 9, (577,541,0): 9, 2, 9, (577,542,0): 9, 2, 9, (577,543,0): 8, 3, 9, (577,544,0): 8, 3, 10, (577,545,0): 6, 3, 12, (577,546,0): 6, 3, 12, (577,547,0): 6, 3, 12, (577,548,0): 8, 2, 12, (577,549,0): 8, 2, 12, (577,550,0): 9, 1, 12, (577,551,0): 9, 1, 12, (577,552,0): 10, 2, 13, (577,553,0): 10, 2, 13, (577,554,0): 12, 2, 13, (577,555,0): 13, 3, 14, (577,556,0): 14, 2, 14, (577,557,0): 15, 3, 15, (577,558,0): 15, 3, 15, (577,559,0): 14, 4, 13, (577,560,0): 14, 4, 12, (577,561,0): 12, 5, 12, (577,562,0): 13, 6, 13, (577,563,0): 13, 6, 13, (577,564,0): 14, 7, 14, (577,565,0): 15, 8, 15, (577,566,0): 16, 9, 16, (577,567,0): 16, 9, 16, (577,568,0): 19, 12, 19, (577,569,0): 21, 14, 21, (577,570,0): 25, 18, 25, (577,571,0): 29, 22, 29, (577,572,0): 31, 24, 31, (577,573,0): 32, 25, 32, (577,574,0): 31, 24, 31, (577,575,0): 32, 23, 28, (577,576,0): 36, 21, 24, (577,577,0): 37, 21, 22, (577,578,0): 38, 22, 23, (577,579,0): 38, 22, 23, (577,580,0): 38, 22, 23, (577,581,0): 37, 21, 22, (577,582,0): 34, 20, 20, (577,583,0): 33, 19, 19, (577,584,0): 31, 19, 19, (577,585,0): 32, 20, 20, (577,586,0): 31, 21, 20, (577,587,0): 32, 22, 21, (577,588,0): 32, 22, 21, (577,589,0): 33, 23, 22, (577,590,0): 33, 23, 22, (577,591,0): 33, 23, 22, (577,592,0): 33, 23, 22, (577,593,0): 34, 24, 23, (577,594,0): 35, 25, 24, (577,595,0): 36, 26, 25, (577,596,0): 36, 26, 25, (577,597,0): 35, 25, 24, (577,598,0): 34, 24, 23, (577,599,0): 34, 24, 23, (578,0,0): 33, 56, 70, (578,1,0): 33, 56, 70, (578,2,0): 33, 56, 70, (578,3,0): 33, 56, 70, (578,4,0): 33, 56, 70, (578,5,0): 33, 56, 70, (578,6,0): 33, 56, 70, (578,7,0): 33, 56, 70, (578,8,0): 34, 57, 71, (578,9,0): 34, 57, 71, (578,10,0): 34, 57, 71, (578,11,0): 34, 57, 71, (578,12,0): 34, 57, 71, (578,13,0): 34, 57, 71, (578,14,0): 34, 57, 71, (578,15,0): 34, 57, 71, (578,16,0): 40, 59, 73, (578,17,0): 39, 58, 72, (578,18,0): 38, 57, 71, (578,19,0): 37, 56, 70, (578,20,0): 37, 56, 70, (578,21,0): 38, 57, 71, (578,22,0): 39, 58, 72, (578,23,0): 40, 59, 73, (578,24,0): 39, 58, 72, (578,25,0): 39, 58, 72, (578,26,0): 39, 58, 72, (578,27,0): 39, 58, 72, (578,28,0): 39, 58, 72, (578,29,0): 39, 58, 72, (578,30,0): 39, 58, 72, (578,31,0): 39, 58, 72, (578,32,0): 41, 59, 73, (578,33,0): 42, 60, 74, (578,34,0): 42, 60, 74, (578,35,0): 43, 61, 75, (578,36,0): 44, 60, 73, (578,37,0): 45, 61, 74, (578,38,0): 48, 60, 74, (578,39,0): 48, 60, 74, (578,40,0): 51, 61, 73, (578,41,0): 51, 61, 73, (578,42,0): 54, 60, 72, (578,43,0): 54, 60, 72, (578,44,0): 57, 61, 73, (578,45,0): 57, 61, 73, (578,46,0): 58, 62, 73, (578,47,0): 59, 61, 73, (578,48,0): 63, 62, 78, (578,49,0): 64, 61, 78, (578,50,0): 64, 61, 78, (578,51,0): 65, 62, 79, (578,52,0): 65, 62, 79, (578,53,0): 66, 63, 80, (578,54,0): 66, 63, 80, (578,55,0): 66, 63, 80, (578,56,0): 66, 63, 80, (578,57,0): 66, 63, 80, (578,58,0): 66, 63, 80, (578,59,0): 66, 63, 80, (578,60,0): 66, 63, 80, (578,61,0): 66, 63, 80, (578,62,0): 66, 63, 80, (578,63,0): 66, 63, 80, (578,64,0): 68, 65, 82, (578,65,0): 68, 65, 82, (578,66,0): 68, 65, 82, (578,67,0): 68, 65, 82, (578,68,0): 68, 65, 82, (578,69,0): 68, 65, 82, (578,70,0): 68, 65, 82, (578,71,0): 68, 65, 82, (578,72,0): 68, 65, 82, (578,73,0): 68, 65, 82, (578,74,0): 68, 65, 82, (578,75,0): 68, 65, 82, (578,76,0): 68, 65, 82, (578,77,0): 68, 65, 82, (578,78,0): 68, 65, 82, (578,79,0): 68, 65, 82, (578,80,0): 67, 65, 86, (578,81,0): 67, 65, 86, (578,82,0): 65, 66, 86, (578,83,0): 65, 66, 86, (578,84,0): 65, 66, 86, (578,85,0): 65, 66, 86, (578,86,0): 64, 67, 86, (578,87,0): 64, 67, 86, (578,88,0): 64, 69, 88, (578,89,0): 64, 69, 88, (578,90,0): 64, 69, 88, (578,91,0): 64, 69, 88, (578,92,0): 63, 70, 88, (578,93,0): 63, 70, 88, (578,94,0): 63, 70, 88, (578,95,0): 63, 70, 88, (578,96,0): 65, 73, 92, (578,97,0): 65, 73, 92, (578,98,0): 65, 73, 92, (578,99,0): 65, 73, 92, (578,100,0): 65, 73, 92, (578,101,0): 65, 73, 92, (578,102,0): 65, 73, 92, (578,103,0): 65, 73, 92, (578,104,0): 65, 73, 92, (578,105,0): 65, 73, 92, (578,106,0): 65, 73, 92, (578,107,0): 65, 73, 92, (578,108,0): 65, 73, 92, (578,109,0): 65, 73, 92, (578,110,0): 65, 73, 92, (578,111,0): 65, 73, 92, (578,112,0): 63, 75, 91, (578,113,0): 63, 75, 91, (578,114,0): 63, 74, 92, (578,115,0): 63, 74, 92, (578,116,0): 63, 74, 92, (578,117,0): 63, 74, 92, (578,118,0): 63, 74, 92, (578,119,0): 63, 74, 92, (578,120,0): 65, 73, 94, (578,121,0): 65, 73, 94, (578,122,0): 66, 74, 95, (578,123,0): 67, 75, 96, (578,124,0): 68, 76, 97, (578,125,0): 69, 77, 98, (578,126,0): 70, 78, 99, (578,127,0): 72, 77, 99, (578,128,0): 78, 76, 98, (578,129,0): 80, 75, 97, (578,130,0): 83, 75, 96, (578,131,0): 83, 75, 96, (578,132,0): 83, 75, 96, (578,133,0): 82, 75, 93, (578,134,0): 81, 72, 91, (578,135,0): 79, 72, 88, (578,136,0): 81, 72, 89, (578,137,0): 81, 72, 89, (578,138,0): 81, 73, 88, (578,139,0): 81, 73, 88, (578,140,0): 82, 76, 90, (578,141,0): 84, 78, 92, (578,142,0): 86, 80, 94, (578,143,0): 84, 81, 98, (578,144,0): 76, 82, 104, (578,145,0): 71, 81, 106, (578,146,0): 69, 79, 106, (578,147,0): 67, 77, 104, (578,148,0): 66, 77, 105, (578,149,0): 64, 78, 105, (578,150,0): 65, 80, 109, (578,151,0): 65, 82, 110, (578,152,0): 65, 82, 112, (578,153,0): 62, 83, 114, (578,154,0): 62, 82, 115, (578,155,0): 60, 83, 115, (578,156,0): 59, 83, 117, (578,157,0): 59, 83, 117, (578,158,0): 58, 84, 119, (578,159,0): 58, 84, 119, (578,160,0): 59, 83, 117, (578,161,0): 59, 83, 117, (578,162,0): 59, 83, 117, (578,163,0): 59, 83, 117, (578,164,0): 59, 83, 119, (578,165,0): 59, 83, 119, (578,166,0): 59, 83, 119, (578,167,0): 59, 83, 119, (578,168,0): 61, 85, 123, (578,169,0): 61, 85, 123, (578,170,0): 61, 84, 125, (578,171,0): 61, 84, 125, (578,172,0): 61, 84, 125, (578,173,0): 61, 84, 125, (578,174,0): 61, 84, 126, (578,175,0): 61, 84, 126, (578,176,0): 61, 84, 125, (578,177,0): 61, 84, 125, (578,178,0): 61, 84, 125, (578,179,0): 61, 84, 125, (578,180,0): 61, 84, 125, (578,181,0): 61, 84, 125, (578,182,0): 61, 84, 125, (578,183,0): 61, 84, 125, (578,184,0): 61, 84, 125, (578,185,0): 61, 84, 125, (578,186,0): 61, 84, 125, (578,187,0): 61, 84, 125, (578,188,0): 61, 84, 125, (578,189,0): 61, 84, 125, (578,190,0): 61, 84, 125, (578,191,0): 61, 84, 125, (578,192,0): 61, 86, 127, (578,193,0): 62, 86, 130, (578,194,0): 63, 87, 131, (578,195,0): 64, 88, 132, (578,196,0): 64, 88, 134, (578,197,0): 63, 87, 133, (578,198,0): 62, 86, 132, (578,199,0): 61, 85, 131, (578,200,0): 61, 85, 133, (578,201,0): 61, 85, 133, (578,202,0): 62, 85, 135, (578,203,0): 63, 86, 136, (578,204,0): 63, 86, 136, (578,205,0): 62, 85, 135, (578,206,0): 61, 84, 136, (578,207,0): 59, 84, 138, (578,208,0): 56, 87, 142, (578,209,0): 55, 87, 144, (578,210,0): 55, 87, 144, (578,211,0): 56, 88, 145, (578,212,0): 57, 89, 148, (578,213,0): 57, 89, 148, (578,214,0): 57, 89, 148, (578,215,0): 58, 90, 149, (578,216,0): 58, 90, 151, (578,217,0): 58, 90, 151, (578,218,0): 58, 89, 153, (578,219,0): 59, 90, 154, (578,220,0): 60, 91, 155, (578,221,0): 60, 91, 155, (578,222,0): 60, 91, 156, (578,223,0): 59, 93, 157, (578,224,0): 58, 93, 157, (578,225,0): 57, 95, 158, (578,226,0): 59, 97, 162, (578,227,0): 60, 98, 163, (578,228,0): 59, 98, 165, (578,229,0): 59, 98, 165, (578,230,0): 57, 97, 166, (578,231,0): 57, 97, 167, (578,232,0): 61, 101, 173, (578,233,0): 61, 101, 173, (578,234,0): 60, 102, 176, (578,235,0): 61, 103, 177, (578,236,0): 61, 105, 180, (578,237,0): 62, 106, 181, (578,238,0): 63, 106, 184, (578,239,0): 63, 106, 184, (578,240,0): 61, 105, 180, (578,241,0): 61, 105, 180, (578,242,0): 62, 105, 183, (578,243,0): 63, 106, 184, (578,244,0): 64, 107, 185, (578,245,0): 65, 108, 186, (578,246,0): 66, 109, 188, (578,247,0): 67, 110, 189, (578,248,0): 68, 110, 192, (578,249,0): 68, 110, 192, (578,250,0): 68, 110, 192, (578,251,0): 68, 110, 192, (578,252,0): 68, 110, 194, (578,253,0): 68, 110, 194, (578,254,0): 68, 110, 194, (578,255,0): 69, 110, 192, (578,256,0): 74, 111, 189, (578,257,0): 75, 113, 188, (578,258,0): 76, 113, 191, (578,259,0): 75, 113, 188, (578,260,0): 72, 110, 185, (578,261,0): 74, 108, 180, (578,262,0): 79, 106, 177, (578,263,0): 86, 105, 171, (578,264,0): 99, 107, 169, (578,265,0): 95, 94, 151, (578,266,0): 87, 79, 128, (578,267,0): 84, 69, 112, (578,268,0): 83, 62, 101, (578,269,0): 79, 58, 91, (578,270,0): 73, 50, 79, (578,271,0): 67, 43, 67, (578,272,0): 62, 35, 52, (578,273,0): 58, 30, 44, (578,274,0): 51, 23, 37, (578,275,0): 48, 22, 35, (578,276,0): 48, 24, 37, (578,277,0): 46, 24, 36, (578,278,0): 43, 21, 33, (578,279,0): 38, 18, 29, (578,280,0): 38, 18, 29, (578,281,0): 38, 18, 29, (578,282,0): 40, 18, 30, (578,283,0): 42, 18, 31, (578,284,0): 44, 18, 31, (578,285,0): 45, 19, 32, (578,286,0): 47, 19, 33, (578,287,0): 46, 20, 31, (578,288,0): 41, 24, 32, (578,289,0): 39, 24, 29, (578,290,0): 38, 23, 28, (578,291,0): 37, 22, 27, (578,292,0): 37, 22, 27, (578,293,0): 37, 22, 27, (578,294,0): 39, 22, 28, (578,295,0): 39, 22, 28, (578,296,0): 40, 23, 29, (578,297,0): 40, 23, 29, (578,298,0): 42, 23, 29, (578,299,0): 42, 23, 29, (578,300,0): 42, 23, 29, (578,301,0): 43, 22, 29, (578,302,0): 43, 22, 29, (578,303,0): 42, 22, 31, (578,304,0): 40, 23, 33, (578,305,0): 38, 22, 33, (578,306,0): 36, 20, 31, (578,307,0): 34, 18, 29, (578,308,0): 32, 16, 27, (578,309,0): 30, 14, 25, (578,310,0): 29, 13, 24, (578,311,0): 28, 12, 23, (578,312,0): 28, 12, 23, (578,313,0): 28, 12, 23, (578,314,0): 28, 12, 23, (578,315,0): 27, 11, 22, (578,316,0): 27, 11, 22, (578,317,0): 26, 10, 21, (578,318,0): 26, 10, 21, (578,319,0): 24, 11, 21, (578,320,0): 21, 8, 18, (578,321,0): 20, 8, 18, (578,322,0): 20, 8, 18, (578,323,0): 20, 8, 18, (578,324,0): 20, 8, 18, (578,325,0): 20, 8, 18, (578,326,0): 20, 8, 18, (578,327,0): 20, 8, 18, (578,328,0): 20, 8, 18, (578,329,0): 20, 8, 18, (578,330,0): 20, 8, 18, (578,331,0): 19, 7, 17, (578,332,0): 19, 7, 17, (578,333,0): 18, 6, 16, (578,334,0): 18, 6, 16, (578,335,0): 16, 6, 15, (578,336,0): 16, 6, 15, (578,337,0): 14, 7, 15, (578,338,0): 14, 7, 15, (578,339,0): 13, 6, 14, (578,340,0): 13, 6, 14, (578,341,0): 12, 5, 13, (578,342,0): 12, 5, 13, (578,343,0): 11, 4, 12, (578,344,0): 11, 4, 12, (578,345,0): 11, 4, 12, (578,346,0): 11, 4, 12, (578,347,0): 11, 4, 12, (578,348,0): 11, 4, 12, (578,349,0): 11, 4, 12, (578,350,0): 11, 4, 12, (578,351,0): 11, 4, 12, (578,352,0): 6, 0, 12, (578,353,0): 6, 0, 12, (578,354,0): 6, 0, 12, (578,355,0): 6, 0, 12, (578,356,0): 6, 0, 12, (578,357,0): 6, 0, 12, (578,358,0): 6, 0, 12, (578,359,0): 6, 0, 12, (578,360,0): 6, 0, 12, (578,361,0): 6, 0, 12, (578,362,0): 6, 0, 12, (578,363,0): 6, 0, 12, (578,364,0): 6, 0, 12, (578,365,0): 6, 0, 12, (578,366,0): 6, 0, 12, (578,367,0): 6, 0, 10, (578,368,0): 7, 1, 11, (578,369,0): 7, 2, 9, (578,370,0): 7, 2, 9, (578,371,0): 7, 2, 9, (578,372,0): 7, 2, 9, (578,373,0): 7, 2, 9, (578,374,0): 7, 2, 9, (578,375,0): 7, 2, 9, (578,376,0): 8, 3, 10, (578,377,0): 8, 3, 10, (578,378,0): 8, 3, 10, (578,379,0): 9, 4, 11, (578,380,0): 10, 5, 12, (578,381,0): 10, 5, 12, (578,382,0): 10, 5, 12, (578,383,0): 12, 5, 12, (578,384,0): 16, 7, 12, (578,385,0): 17, 6, 10, (578,386,0): 17, 6, 10, (578,387,0): 17, 6, 10, (578,388,0): 17, 6, 10, (578,389,0): 17, 6, 10, (578,390,0): 18, 6, 10, (578,391,0): 18, 6, 10, (578,392,0): 22, 7, 12, (578,393,0): 22, 7, 12, (578,394,0): 23, 6, 12, (578,395,0): 23, 6, 12, (578,396,0): 23, 6, 12, (578,397,0): 23, 6, 12, (578,398,0): 23, 6, 12, (578,399,0): 22, 7, 10, (578,400,0): 20, 11, 12, (578,401,0): 18, 13, 10, (578,402,0): 21, 13, 11, (578,403,0): 21, 13, 11, (578,404,0): 23, 13, 12, (578,405,0): 23, 13, 12, (578,406,0): 27, 13, 13, (578,407,0): 27, 13, 13, (578,408,0): 31, 12, 14, (578,409,0): 32, 13, 15, (578,410,0): 35, 13, 16, (578,411,0): 37, 15, 18, (578,412,0): 39, 14, 18, (578,413,0): 39, 14, 18, (578,414,0): 39, 12, 17, (578,415,0): 39, 12, 17, (578,416,0): 44, 17, 22, (578,417,0): 44, 17, 22, (578,418,0): 43, 18, 22, (578,419,0): 43, 18, 22, (578,420,0): 43, 18, 22, (578,421,0): 41, 19, 22, (578,422,0): 41, 19, 22, (578,423,0): 40, 20, 22, (578,424,0): 40, 21, 23, (578,425,0): 41, 22, 24, (578,426,0): 40, 24, 25, (578,427,0): 41, 25, 26, (578,428,0): 40, 26, 26, (578,429,0): 39, 25, 25, (578,430,0): 38, 24, 24, (578,431,0): 38, 24, 24, (578,432,0): 38, 22, 23, (578,433,0): 38, 22, 23, (578,434,0): 37, 21, 22, (578,435,0): 36, 20, 21, (578,436,0): 35, 19, 20, (578,437,0): 34, 18, 19, (578,438,0): 33, 17, 18, (578,439,0): 33, 17, 18, (578,440,0): 33, 17, 18, (578,441,0): 32, 16, 17, (578,442,0): 32, 16, 17, (578,443,0): 31, 15, 16, (578,444,0): 29, 13, 14, (578,445,0): 28, 12, 13, (578,446,0): 28, 12, 13, (578,447,0): 26, 12, 12, (578,448,0): 22, 10, 14, (578,449,0): 21, 10, 14, (578,450,0): 20, 9, 13, (578,451,0): 19, 8, 12, (578,452,0): 17, 8, 13, (578,453,0): 16, 7, 12, (578,454,0): 15, 6, 11, (578,455,0): 15, 6, 11, (578,456,0): 14, 7, 14, (578,457,0): 13, 6, 13, (578,458,0): 10, 5, 12, (578,459,0): 8, 3, 10, (578,460,0): 6, 1, 8, (578,461,0): 6, 1, 8, (578,462,0): 4, 1, 10, (578,463,0): 6, 1, 8, (578,464,0): 14, 2, 12, (578,465,0): 16, 3, 12, (578,466,0): 18, 2, 12, (578,467,0): 19, 3, 13, (578,468,0): 19, 4, 11, (578,469,0): 20, 5, 12, (578,470,0): 21, 4, 10, (578,471,0): 21, 4, 10, (578,472,0): 22, 3, 9, (578,473,0): 22, 3, 9, (578,474,0): 22, 3, 7, (578,475,0): 22, 3, 7, (578,476,0): 23, 3, 5, (578,477,0): 23, 3, 5, (578,478,0): 23, 3, 5, (578,479,0): 22, 3, 5, (578,480,0): 23, 5, 5, (578,481,0): 21, 5, 5, (578,482,0): 22, 6, 6, (578,483,0): 23, 7, 7, (578,484,0): 24, 8, 8, (578,485,0): 25, 9, 9, (578,486,0): 26, 10, 10, (578,487,0): 26, 10, 10, (578,488,0): 26, 10, 10, (578,489,0): 28, 12, 12, (578,490,0): 30, 14, 14, (578,491,0): 30, 14, 14, (578,492,0): 29, 13, 13, (578,493,0): 30, 14, 14, (578,494,0): 32, 16, 16, (578,495,0): 36, 18, 18, (578,496,0): 36, 11, 15, (578,497,0): 37, 10, 15, (578,498,0): 35, 10, 14, (578,499,0): 34, 9, 13, (578,500,0): 33, 8, 12, (578,501,0): 30, 8, 11, (578,502,0): 29, 9, 11, (578,503,0): 28, 8, 10, (578,504,0): 26, 7, 9, (578,505,0): 26, 7, 9, (578,506,0): 24, 8, 9, (578,507,0): 24, 8, 9, (578,508,0): 23, 9, 9, (578,509,0): 23, 9, 9, (578,510,0): 23, 9, 9, (578,511,0): 23, 9, 9, (578,512,0): 21, 6, 11, (578,513,0): 22, 7, 12, (578,514,0): 22, 7, 12, (578,515,0): 23, 8, 13, (578,516,0): 25, 10, 15, (578,517,0): 26, 11, 16, (578,518,0): 26, 11, 16, (578,519,0): 27, 12, 17, (578,520,0): 22, 7, 12, (578,521,0): 22, 7, 12, (578,522,0): 22, 7, 12, (578,523,0): 21, 6, 11, (578,524,0): 21, 6, 11, (578,525,0): 20, 5, 10, (578,526,0): 20, 5, 10, (578,527,0): 19, 4, 9, (578,528,0): 21, 5, 15, (578,529,0): 20, 4, 14, (578,530,0): 18, 5, 14, (578,531,0): 17, 4, 13, (578,532,0): 15, 2, 11, (578,533,0): 14, 1, 10, (578,534,0): 13, 2, 10, (578,535,0): 12, 1, 9, (578,536,0): 11, 1, 9, (578,537,0): 11, 1, 9, (578,538,0): 11, 1, 9, (578,539,0): 11, 1, 9, (578,540,0): 9, 2, 9, (578,541,0): 9, 2, 9, (578,542,0): 9, 2, 9, (578,543,0): 8, 3, 9, (578,544,0): 8, 3, 10, (578,545,0): 6, 3, 10, (578,546,0): 8, 3, 10, (578,547,0): 8, 3, 10, (578,548,0): 8, 3, 10, (578,549,0): 8, 3, 10, (578,550,0): 9, 2, 10, (578,551,0): 9, 2, 10, (578,552,0): 11, 1, 10, (578,553,0): 11, 1, 10, (578,554,0): 11, 1, 10, (578,555,0): 12, 2, 11, (578,556,0): 13, 1, 11, (578,557,0): 14, 2, 12, (578,558,0): 14, 2, 12, (578,559,0): 13, 3, 12, (578,560,0): 16, 6, 14, (578,561,0): 14, 7, 14, (578,562,0): 14, 7, 14, (578,563,0): 14, 7, 14, (578,564,0): 14, 7, 14, (578,565,0): 15, 8, 15, (578,566,0): 15, 8, 15, (578,567,0): 15, 8, 15, (578,568,0): 18, 11, 18, (578,569,0): 20, 13, 20, (578,570,0): 24, 17, 24, (578,571,0): 27, 20, 27, (578,572,0): 29, 22, 29, (578,573,0): 30, 23, 30, (578,574,0): 29, 22, 29, (578,575,0): 31, 22, 27, (578,576,0): 37, 22, 25, (578,577,0): 39, 23, 24, (578,578,0): 40, 24, 25, (578,579,0): 40, 24, 25, (578,580,0): 39, 23, 24, (578,581,0): 38, 22, 23, (578,582,0): 36, 22, 22, (578,583,0): 35, 21, 21, (578,584,0): 32, 20, 20, (578,585,0): 32, 20, 20, (578,586,0): 31, 21, 20, (578,587,0): 32, 22, 21, (578,588,0): 32, 22, 21, (578,589,0): 33, 23, 22, (578,590,0): 33, 23, 22, (578,591,0): 34, 24, 23, (578,592,0): 30, 22, 20, (578,593,0): 31, 23, 21, (578,594,0): 33, 25, 23, (578,595,0): 34, 26, 24, (578,596,0): 35, 27, 25, (578,597,0): 36, 28, 26, (578,598,0): 35, 27, 25, (578,599,0): 35, 27, 25, (579,0,0): 32, 55, 69, (579,1,0): 32, 55, 69, (579,2,0): 32, 55, 69, (579,3,0): 32, 55, 69, (579,4,0): 32, 55, 69, (579,5,0): 32, 55, 69, (579,6,0): 32, 55, 69, (579,7,0): 32, 55, 69, (579,8,0): 34, 57, 71, (579,9,0): 34, 57, 71, (579,10,0): 34, 57, 71, (579,11,0): 34, 57, 71, (579,12,0): 34, 57, 71, (579,13,0): 34, 57, 71, (579,14,0): 34, 57, 71, (579,15,0): 34, 57, 71, (579,16,0): 40, 59, 73, (579,17,0): 39, 58, 72, (579,18,0): 38, 57, 71, (579,19,0): 37, 56, 70, (579,20,0): 37, 56, 70, (579,21,0): 38, 57, 71, (579,22,0): 39, 58, 72, (579,23,0): 40, 59, 73, (579,24,0): 38, 57, 71, (579,25,0): 38, 57, 71, (579,26,0): 38, 57, 71, (579,27,0): 38, 57, 71, (579,28,0): 38, 57, 71, (579,29,0): 38, 57, 71, (579,30,0): 38, 57, 71, (579,31,0): 38, 57, 71, (579,32,0): 41, 59, 73, (579,33,0): 41, 59, 73, (579,34,0): 41, 59, 73, (579,35,0): 42, 60, 74, (579,36,0): 44, 60, 73, (579,37,0): 44, 60, 73, (579,38,0): 47, 59, 73, (579,39,0): 48, 60, 74, (579,40,0): 51, 61, 73, (579,41,0): 51, 61, 73, (579,42,0): 54, 60, 72, (579,43,0): 54, 60, 72, (579,44,0): 57, 61, 73, (579,45,0): 57, 61, 73, (579,46,0): 58, 62, 73, (579,47,0): 59, 61, 73, (579,48,0): 63, 62, 78, (579,49,0): 64, 61, 78, (579,50,0): 64, 61, 78, (579,51,0): 65, 62, 79, (579,52,0): 65, 62, 79, (579,53,0): 66, 63, 80, (579,54,0): 66, 63, 80, (579,55,0): 66, 63, 80, (579,56,0): 65, 62, 79, (579,57,0): 65, 62, 79, (579,58,0): 65, 62, 79, (579,59,0): 65, 62, 79, (579,60,0): 65, 62, 79, (579,61,0): 65, 62, 79, (579,62,0): 65, 62, 79, (579,63,0): 65, 62, 79, (579,64,0): 68, 65, 82, (579,65,0): 68, 65, 82, (579,66,0): 68, 65, 82, (579,67,0): 68, 65, 82, (579,68,0): 68, 65, 82, (579,69,0): 68, 65, 82, (579,70,0): 68, 65, 82, (579,71,0): 68, 65, 82, (579,72,0): 68, 65, 82, (579,73,0): 68, 65, 82, (579,74,0): 68, 65, 82, (579,75,0): 68, 65, 82, (579,76,0): 68, 65, 82, (579,77,0): 68, 65, 82, (579,78,0): 68, 65, 82, (579,79,0): 68, 65, 82, (579,80,0): 67, 65, 86, (579,81,0): 67, 65, 86, (579,82,0): 65, 66, 86, (579,83,0): 65, 66, 86, (579,84,0): 65, 66, 86, (579,85,0): 65, 66, 86, (579,86,0): 64, 67, 86, (579,87,0): 64, 67, 86, (579,88,0): 64, 69, 88, (579,89,0): 64, 69, 88, (579,90,0): 64, 69, 88, (579,91,0): 64, 69, 88, (579,92,0): 63, 70, 88, (579,93,0): 63, 70, 88, (579,94,0): 63, 70, 88, (579,95,0): 63, 70, 88, (579,96,0): 64, 72, 91, (579,97,0): 64, 72, 91, (579,98,0): 64, 72, 91, (579,99,0): 64, 72, 91, (579,100,0): 64, 72, 91, (579,101,0): 64, 72, 91, (579,102,0): 64, 72, 91, (579,103,0): 64, 72, 91, (579,104,0): 64, 72, 91, (579,105,0): 64, 72, 91, (579,106,0): 64, 72, 91, (579,107,0): 64, 72, 91, (579,108,0): 64, 72, 91, (579,109,0): 64, 72, 91, (579,110,0): 64, 72, 91, (579,111,0): 64, 72, 91, (579,112,0): 63, 75, 91, (579,113,0): 63, 75, 91, (579,114,0): 63, 74, 92, (579,115,0): 63, 74, 92, (579,116,0): 63, 74, 92, (579,117,0): 63, 74, 92, (579,118,0): 63, 74, 92, (579,119,0): 63, 74, 92, (579,120,0): 65, 73, 94, (579,121,0): 65, 73, 94, (579,122,0): 66, 74, 95, (579,123,0): 66, 74, 95, (579,124,0): 67, 75, 96, (579,125,0): 68, 76, 97, (579,126,0): 69, 75, 97, (579,127,0): 70, 75, 95, (579,128,0): 77, 74, 95, (579,129,0): 78, 73, 95, (579,130,0): 80, 72, 93, (579,131,0): 81, 72, 91, (579,132,0): 81, 72, 91, (579,133,0): 82, 71, 88, (579,134,0): 82, 71, 87, (579,135,0): 82, 71, 87, (579,136,0): 82, 71, 85, (579,137,0): 83, 72, 86, (579,138,0): 81, 73, 88, (579,139,0): 83, 75, 90, (579,140,0): 83, 77, 91, (579,141,0): 83, 79, 94, (579,142,0): 84, 80, 95, (579,143,0): 81, 82, 100, (579,144,0): 75, 81, 103, (579,145,0): 71, 81, 106, (579,146,0): 69, 79, 106, (579,147,0): 66, 78, 104, (579,148,0): 64, 78, 105, (579,149,0): 63, 79, 105, (579,150,0): 64, 79, 108, (579,151,0): 64, 81, 111, (579,152,0): 62, 81, 113, (579,153,0): 61, 82, 113, (579,154,0): 59, 82, 114, (579,155,0): 59, 82, 114, (579,156,0): 58, 82, 116, (579,157,0): 58, 82, 116, (579,158,0): 57, 83, 118, (579,159,0): 57, 83, 118, (579,160,0): 58, 82, 116, (579,161,0): 58, 82, 116, (579,162,0): 58, 82, 116, (579,163,0): 58, 82, 116, (579,164,0): 58, 82, 118, (579,165,0): 58, 82, 118, (579,166,0): 58, 82, 118, (579,167,0): 58, 82, 118, (579,168,0): 60, 84, 122, (579,169,0): 60, 84, 122, (579,170,0): 60, 83, 124, (579,171,0): 60, 83, 124, (579,172,0): 60, 83, 124, (579,173,0): 60, 83, 124, (579,174,0): 60, 83, 125, (579,175,0): 60, 83, 125, (579,176,0): 60, 83, 124, (579,177,0): 60, 83, 124, (579,178,0): 60, 83, 124, (579,179,0): 60, 83, 124, (579,180,0): 60, 83, 124, (579,181,0): 60, 83, 124, (579,182,0): 60, 83, 124, (579,183,0): 60, 83, 124, (579,184,0): 60, 83, 124, (579,185,0): 60, 83, 124, (579,186,0): 60, 83, 124, (579,187,0): 61, 84, 125, (579,188,0): 61, 84, 125, (579,189,0): 61, 84, 125, (579,190,0): 62, 85, 126, (579,191,0): 62, 85, 127, (579,192,0): 60, 84, 128, (579,193,0): 61, 85, 129, (579,194,0): 62, 86, 130, (579,195,0): 63, 87, 131, (579,196,0): 63, 87, 133, (579,197,0): 62, 86, 132, (579,198,0): 61, 85, 131, (579,199,0): 60, 84, 130, (579,200,0): 60, 84, 132, (579,201,0): 60, 84, 132, (579,202,0): 60, 83, 133, (579,203,0): 61, 84, 134, (579,204,0): 61, 84, 134, (579,205,0): 60, 83, 133, (579,206,0): 60, 83, 135, (579,207,0): 58, 83, 137, (579,208,0): 55, 86, 141, (579,209,0): 55, 87, 144, (579,210,0): 55, 87, 144, (579,211,0): 56, 88, 145, (579,212,0): 56, 88, 147, (579,213,0): 57, 89, 148, (579,214,0): 57, 89, 148, (579,215,0): 57, 89, 148, (579,216,0): 57, 89, 150, (579,217,0): 58, 90, 151, (579,218,0): 58, 89, 153, (579,219,0): 59, 90, 154, (579,220,0): 59, 90, 154, (579,221,0): 60, 91, 155, (579,222,0): 60, 91, 156, (579,223,0): 58, 92, 156, (579,224,0): 58, 93, 157, (579,225,0): 57, 95, 158, (579,226,0): 58, 96, 161, (579,227,0): 59, 97, 162, (579,228,0): 59, 98, 165, (579,229,0): 59, 98, 165, (579,230,0): 58, 97, 166, (579,231,0): 56, 96, 165, (579,232,0): 60, 100, 170, (579,233,0): 60, 100, 172, (579,234,0): 59, 101, 175, (579,235,0): 60, 102, 176, (579,236,0): 60, 104, 179, (579,237,0): 61, 105, 180, (579,238,0): 62, 105, 183, (579,239,0): 62, 105, 183, (579,240,0): 60, 104, 179, (579,241,0): 60, 104, 179, (579,242,0): 61, 104, 182, (579,243,0): 62, 105, 183, (579,244,0): 63, 106, 184, (579,245,0): 64, 107, 185, (579,246,0): 65, 108, 187, (579,247,0): 65, 108, 187, (579,248,0): 67, 109, 191, (579,249,0): 67, 109, 191, (579,250,0): 67, 109, 191, (579,251,0): 68, 110, 192, (579,252,0): 68, 110, 194, (579,253,0): 69, 111, 195, (579,254,0): 69, 111, 195, (579,255,0): 70, 111, 193, (579,256,0): 73, 112, 189, (579,257,0): 74, 113, 188, (579,258,0): 75, 114, 191, (579,259,0): 76, 114, 189, (579,260,0): 76, 112, 188, (579,261,0): 78, 111, 182, (579,262,0): 84, 109, 176, (579,263,0): 91, 107, 167, (579,264,0): 96, 103, 157, (579,265,0): 88, 86, 133, (579,266,0): 76, 66, 103, (579,267,0): 67, 52, 83, (579,268,0): 65, 47, 73, (579,269,0): 63, 44, 66, (579,270,0): 58, 39, 59, (579,271,0): 54, 33, 50, (579,272,0): 52, 28, 42, (579,273,0): 51, 25, 38, (579,274,0): 48, 22, 35, (579,275,0): 45, 21, 34, (579,276,0): 45, 23, 35, (579,277,0): 42, 22, 33, (579,278,0): 38, 18, 29, (579,279,0): 33, 16, 26, (579,280,0): 33, 16, 26, (579,281,0): 34, 17, 27, (579,282,0): 37, 17, 28, (579,283,0): 40, 18, 30, (579,284,0): 43, 19, 32, (579,285,0): 44, 20, 33, (579,286,0): 48, 22, 35, (579,287,0): 46, 22, 35, (579,288,0): 46, 26, 35, (579,289,0): 42, 27, 32, (579,290,0): 41, 24, 30, (579,291,0): 38, 23, 28, (579,292,0): 37, 22, 27, (579,293,0): 37, 22, 27, (579,294,0): 38, 21, 27, (579,295,0): 38, 21, 27, (579,296,0): 38, 21, 27, (579,297,0): 38, 21, 27, (579,298,0): 38, 21, 27, (579,299,0): 38, 21, 27, (579,300,0): 38, 21, 27, (579,301,0): 38, 21, 27, (579,302,0): 38, 21, 27, (579,303,0): 38, 21, 29, (579,304,0): 37, 21, 31, (579,305,0): 37, 21, 32, (579,306,0): 35, 19, 30, (579,307,0): 34, 18, 29, (579,308,0): 32, 16, 27, (579,309,0): 30, 14, 25, (579,310,0): 29, 13, 24, (579,311,0): 28, 12, 23, (579,312,0): 27, 11, 22, (579,313,0): 27, 11, 22, (579,314,0): 27, 11, 22, (579,315,0): 26, 10, 21, (579,316,0): 26, 10, 21, (579,317,0): 25, 9, 20, (579,318,0): 25, 9, 20, (579,319,0): 23, 10, 20, (579,320,0): 20, 8, 18, (579,321,0): 20, 8, 18, (579,322,0): 20, 8, 18, (579,323,0): 20, 8, 18, (579,324,0): 20, 8, 18, (579,325,0): 20, 8, 18, (579,326,0): 20, 8, 18, (579,327,0): 20, 8, 18, (579,328,0): 20, 8, 18, (579,329,0): 19, 7, 17, (579,330,0): 19, 7, 17, (579,331,0): 19, 7, 17, (579,332,0): 18, 6, 16, (579,333,0): 17, 5, 15, (579,334,0): 17, 5, 15, (579,335,0): 16, 6, 15, (579,336,0): 14, 7, 15, (579,337,0): 13, 6, 14, (579,338,0): 13, 6, 14, (579,339,0): 13, 6, 14, (579,340,0): 12, 5, 13, (579,341,0): 11, 4, 12, (579,342,0): 11, 4, 12, (579,343,0): 11, 4, 12, (579,344,0): 10, 3, 11, (579,345,0): 10, 3, 11, (579,346,0): 10, 3, 11, (579,347,0): 10, 3, 11, (579,348,0): 10, 3, 11, (579,349,0): 10, 3, 11, (579,350,0): 10, 3, 11, (579,351,0): 10, 3, 11, (579,352,0): 5, 0, 9, (579,353,0): 5, 0, 11, (579,354,0): 5, 0, 11, (579,355,0): 5, 0, 11, (579,356,0): 5, 0, 11, (579,357,0): 5, 0, 11, (579,358,0): 5, 0, 11, (579,359,0): 5, 0, 11, (579,360,0): 5, 0, 11, (579,361,0): 5, 0, 11, (579,362,0): 5, 0, 11, (579,363,0): 5, 0, 11, (579,364,0): 5, 0, 11, (579,365,0): 5, 0, 11, (579,366,0): 5, 0, 11, (579,367,0): 5, 0, 9, (579,368,0): 8, 3, 10, (579,369,0): 8, 3, 10, (579,370,0): 8, 3, 10, (579,371,0): 8, 3, 10, (579,372,0): 8, 3, 10, (579,373,0): 8, 3, 10, (579,374,0): 8, 3, 10, (579,375,0): 8, 3, 10, (579,376,0): 9, 4, 11, (579,377,0): 9, 4, 11, (579,378,0): 10, 5, 12, (579,379,0): 10, 5, 12, (579,380,0): 11, 6, 13, (579,381,0): 11, 6, 13, (579,382,0): 12, 7, 14, (579,383,0): 13, 6, 13, (579,384,0): 17, 8, 13, (579,385,0): 18, 7, 11, (579,386,0): 18, 7, 11, (579,387,0): 18, 7, 11, (579,388,0): 18, 7, 11, (579,389,0): 18, 7, 11, (579,390,0): 19, 7, 11, (579,391,0): 19, 7, 11, (579,392,0): 21, 6, 11, (579,393,0): 21, 6, 11, (579,394,0): 22, 5, 11, (579,395,0): 22, 5, 11, (579,396,0): 22, 5, 11, (579,397,0): 22, 5, 11, (579,398,0): 22, 5, 11, (579,399,0): 21, 6, 9, (579,400,0): 19, 10, 11, (579,401,0): 17, 12, 9, (579,402,0): 20, 12, 10, (579,403,0): 20, 12, 10, (579,404,0): 22, 12, 11, (579,405,0): 23, 11, 11, (579,406,0): 26, 12, 12, (579,407,0): 26, 12, 12, (579,408,0): 30, 11, 13, (579,409,0): 31, 12, 14, (579,410,0): 34, 14, 16, (579,411,0): 36, 14, 17, (579,412,0): 39, 14, 18, (579,413,0): 39, 14, 18, (579,414,0): 40, 13, 18, (579,415,0): 39, 12, 17, (579,416,0): 42, 15, 20, (579,417,0): 41, 16, 20, (579,418,0): 42, 17, 21, (579,419,0): 40, 18, 21, (579,420,0): 40, 18, 21, (579,421,0): 41, 19, 22, (579,422,0): 40, 20, 22, (579,423,0): 40, 20, 22, (579,424,0): 41, 22, 24, (579,425,0): 41, 22, 24, (579,426,0): 40, 24, 25, (579,427,0): 40, 24, 25, (579,428,0): 40, 26, 26, (579,429,0): 40, 26, 26, (579,430,0): 40, 26, 26, (579,431,0): 40, 26, 26, (579,432,0): 39, 23, 24, (579,433,0): 39, 23, 24, (579,434,0): 38, 22, 23, (579,435,0): 37, 21, 22, (579,436,0): 36, 20, 21, (579,437,0): 35, 19, 20, (579,438,0): 34, 18, 19, (579,439,0): 34, 18, 19, (579,440,0): 35, 19, 20, (579,441,0): 34, 18, 19, (579,442,0): 33, 17, 18, (579,443,0): 32, 16, 17, (579,444,0): 31, 15, 16, (579,445,0): 30, 14, 15, (579,446,0): 29, 13, 14, (579,447,0): 28, 14, 14, (579,448,0): 23, 11, 13, (579,449,0): 22, 11, 15, (579,450,0): 21, 10, 14, (579,451,0): 20, 9, 13, (579,452,0): 18, 9, 14, (579,453,0): 17, 8, 13, (579,454,0): 16, 7, 12, (579,455,0): 15, 6, 11, (579,456,0): 14, 7, 14, (579,457,0): 13, 6, 13, (579,458,0): 10, 5, 12, (579,459,0): 8, 3, 10, (579,460,0): 7, 2, 9, (579,461,0): 5, 0, 7, (579,462,0): 2, 0, 8, (579,463,0): 4, 0, 6, (579,464,0): 14, 3, 11, (579,465,0): 15, 2, 11, (579,466,0): 17, 1, 11, (579,467,0): 18, 2, 12, (579,468,0): 19, 4, 11, (579,469,0): 19, 4, 11, (579,470,0): 20, 3, 9, (579,471,0): 21, 4, 10, (579,472,0): 21, 2, 8, (579,473,0): 21, 2, 8, (579,474,0): 21, 2, 6, (579,475,0): 21, 2, 6, (579,476,0): 22, 2, 4, (579,477,0): 22, 2, 4, (579,478,0): 22, 2, 4, (579,479,0): 21, 2, 4, (579,480,0): 23, 5, 5, (579,481,0): 21, 5, 5, (579,482,0): 22, 6, 6, (579,483,0): 22, 6, 6, (579,484,0): 23, 7, 7, (579,485,0): 24, 8, 8, (579,486,0): 24, 8, 8, (579,487,0): 24, 8, 8, (579,488,0): 24, 8, 8, (579,489,0): 25, 9, 9, (579,490,0): 27, 11, 11, (579,491,0): 27, 11, 11, (579,492,0): 28, 12, 12, (579,493,0): 29, 13, 13, (579,494,0): 30, 14, 14, (579,495,0): 33, 15, 15, (579,496,0): 36, 11, 15, (579,497,0): 36, 11, 15, (579,498,0): 35, 10, 14, (579,499,0): 34, 9, 13, (579,500,0): 32, 10, 13, (579,501,0): 31, 9, 12, (579,502,0): 30, 10, 12, (579,503,0): 29, 9, 11, (579,504,0): 26, 7, 9, (579,505,0): 26, 7, 9, (579,506,0): 24, 8, 9, (579,507,0): 24, 8, 9, (579,508,0): 24, 8, 9, (579,509,0): 23, 9, 9, (579,510,0): 23, 9, 9, (579,511,0): 23, 9, 9, (579,512,0): 21, 6, 9, (579,513,0): 22, 7, 12, (579,514,0): 22, 7, 12, (579,515,0): 23, 8, 13, (579,516,0): 25, 10, 15, (579,517,0): 26, 11, 16, (579,518,0): 26, 11, 16, (579,519,0): 27, 12, 17, (579,520,0): 24, 9, 14, (579,521,0): 24, 9, 14, (579,522,0): 23, 8, 13, (579,523,0): 22, 7, 12, (579,524,0): 21, 6, 11, (579,525,0): 21, 6, 11, (579,526,0): 20, 5, 10, (579,527,0): 20, 5, 10, (579,528,0): 21, 6, 13, (579,529,0): 20, 4, 14, (579,530,0): 18, 5, 14, (579,531,0): 17, 4, 13, (579,532,0): 15, 2, 11, (579,533,0): 14, 1, 10, (579,534,0): 13, 2, 10, (579,535,0): 12, 1, 9, (579,536,0): 11, 1, 9, (579,537,0): 11, 1, 9, (579,538,0): 11, 1, 9, (579,539,0): 11, 1, 9, (579,540,0): 9, 2, 9, (579,541,0): 9, 2, 9, (579,542,0): 9, 2, 9, (579,543,0): 9, 2, 9, (579,544,0): 8, 3, 10, (579,545,0): 6, 3, 10, (579,546,0): 8, 3, 10, (579,547,0): 8, 3, 10, (579,548,0): 8, 3, 10, (579,549,0): 8, 3, 10, (579,550,0): 9, 2, 10, (579,551,0): 9, 2, 10, (579,552,0): 10, 0, 9, (579,553,0): 10, 0, 9, (579,554,0): 10, 0, 9, (579,555,0): 11, 1, 10, (579,556,0): 12, 0, 10, (579,557,0): 13, 1, 11, (579,558,0): 13, 1, 11, (579,559,0): 14, 2, 12, (579,560,0): 17, 7, 15, (579,561,0): 15, 8, 15, (579,562,0): 15, 8, 15, (579,563,0): 15, 8, 15, (579,564,0): 15, 8, 15, (579,565,0): 14, 7, 14, (579,566,0): 14, 7, 14, (579,567,0): 14, 7, 14, (579,568,0): 17, 10, 17, (579,569,0): 19, 12, 19, (579,570,0): 22, 15, 22, (579,571,0): 25, 18, 25, (579,572,0): 27, 20, 27, (579,573,0): 28, 21, 28, (579,574,0): 28, 21, 28, (579,575,0): 30, 21, 26, (579,576,0): 39, 24, 27, (579,577,0): 40, 24, 25, (579,578,0): 41, 25, 26, (579,579,0): 41, 25, 26, (579,580,0): 41, 25, 26, (579,581,0): 39, 23, 24, (579,582,0): 37, 23, 23, (579,583,0): 36, 22, 22, (579,584,0): 32, 20, 20, (579,585,0): 33, 21, 21, (579,586,0): 32, 22, 21, (579,587,0): 32, 22, 21, (579,588,0): 33, 23, 22, (579,589,0): 34, 24, 23, (579,590,0): 34, 24, 23, (579,591,0): 34, 24, 23, (579,592,0): 31, 23, 21, (579,593,0): 32, 24, 22, (579,594,0): 33, 25, 23, (579,595,0): 35, 27, 25, (579,596,0): 35, 27, 25, (579,597,0): 35, 27, 25, (579,598,0): 34, 26, 24, (579,599,0): 34, 26, 24, (580,0,0): 32, 55, 69, (580,1,0): 32, 55, 69, (580,2,0): 32, 55, 69, (580,3,0): 32, 55, 69, (580,4,0): 32, 55, 69, (580,5,0): 32, 55, 69, (580,6,0): 32, 55, 69, (580,7,0): 32, 55, 69, (580,8,0): 33, 56, 70, (580,9,0): 33, 56, 70, (580,10,0): 33, 56, 70, (580,11,0): 33, 56, 70, (580,12,0): 33, 56, 70, (580,13,0): 33, 56, 70, (580,14,0): 33, 56, 70, (580,15,0): 33, 56, 70, (580,16,0): 39, 58, 72, (580,17,0): 38, 57, 71, (580,18,0): 37, 56, 70, (580,19,0): 36, 55, 69, (580,20,0): 36, 55, 69, (580,21,0): 37, 56, 70, (580,22,0): 38, 57, 71, (580,23,0): 39, 58, 72, (580,24,0): 38, 57, 71, (580,25,0): 38, 57, 71, (580,26,0): 38, 57, 71, (580,27,0): 38, 57, 71, (580,28,0): 38, 57, 71, (580,29,0): 38, 57, 71, (580,30,0): 38, 57, 71, (580,31,0): 38, 57, 71, (580,32,0): 40, 58, 72, (580,33,0): 41, 59, 73, (580,34,0): 41, 59, 73, (580,35,0): 41, 59, 73, (580,36,0): 43, 59, 72, (580,37,0): 44, 60, 73, (580,38,0): 47, 59, 73, (580,39,0): 47, 59, 73, (580,40,0): 51, 61, 73, (580,41,0): 51, 61, 73, (580,42,0): 54, 60, 72, (580,43,0): 54, 60, 72, (580,44,0): 57, 61, 73, (580,45,0): 57, 61, 73, (580,46,0): 58, 62, 73, (580,47,0): 59, 61, 73, (580,48,0): 63, 62, 78, (580,49,0): 63, 62, 78, (580,50,0): 63, 62, 78, (580,51,0): 64, 63, 79, (580,52,0): 64, 63, 79, (580,53,0): 65, 64, 80, (580,54,0): 65, 64, 80, (580,55,0): 65, 64, 80, (580,56,0): 64, 63, 79, (580,57,0): 64, 63, 79, (580,58,0): 64, 63, 79, (580,59,0): 64, 63, 79, (580,60,0): 64, 63, 79, (580,61,0): 64, 63, 79, (580,62,0): 64, 63, 79, (580,63,0): 64, 63, 79, (580,64,0): 68, 65, 82, (580,65,0): 68, 65, 82, (580,66,0): 68, 65, 82, (580,67,0): 68, 65, 82, (580,68,0): 68, 65, 82, (580,69,0): 68, 65, 82, (580,70,0): 68, 65, 82, (580,71,0): 68, 65, 82, (580,72,0): 68, 65, 82, (580,73,0): 68, 65, 82, (580,74,0): 68, 65, 82, (580,75,0): 68, 65, 82, (580,76,0): 68, 65, 82, (580,77,0): 68, 65, 82, (580,78,0): 68, 65, 82, (580,79,0): 68, 65, 82, (580,80,0): 67, 65, 86, (580,81,0): 67, 65, 86, (580,82,0): 65, 66, 86, (580,83,0): 65, 66, 86, (580,84,0): 65, 66, 86, (580,85,0): 65, 66, 86, (580,86,0): 64, 67, 86, (580,87,0): 64, 67, 86, (580,88,0): 64, 69, 88, (580,89,0): 64, 69, 88, (580,90,0): 64, 69, 88, (580,91,0): 64, 69, 88, (580,92,0): 63, 70, 88, (580,93,0): 63, 70, 88, (580,94,0): 63, 70, 88, (580,95,0): 63, 70, 88, (580,96,0): 62, 70, 89, (580,97,0): 62, 70, 89, (580,98,0): 62, 70, 89, (580,99,0): 62, 70, 89, (580,100,0): 62, 70, 89, (580,101,0): 62, 70, 89, (580,102,0): 62, 70, 89, (580,103,0): 62, 70, 89, (580,104,0): 62, 70, 89, (580,105,0): 62, 70, 89, (580,106,0): 62, 70, 89, (580,107,0): 62, 70, 89, (580,108,0): 62, 70, 89, (580,109,0): 62, 70, 89, (580,110,0): 62, 70, 89, (580,111,0): 62, 70, 89, (580,112,0): 62, 73, 91, (580,113,0): 61, 74, 91, (580,114,0): 61, 74, 91, (580,115,0): 61, 74, 91, (580,116,0): 62, 73, 91, (580,117,0): 62, 73, 91, (580,118,0): 64, 72, 91, (580,119,0): 64, 72, 91, (580,120,0): 64, 72, 91, (580,121,0): 65, 73, 92, (580,122,0): 66, 73, 92, (580,123,0): 66, 73, 92, (580,124,0): 67, 74, 93, (580,125,0): 67, 74, 93, (580,126,0): 68, 73, 93, (580,127,0): 70, 72, 93, (580,128,0): 75, 72, 93, (580,129,0): 78, 70, 93, (580,130,0): 78, 69, 90, (580,131,0): 78, 69, 88, (580,132,0): 81, 70, 86, (580,133,0): 82, 70, 84, (580,134,0): 83, 69, 82, (580,135,0): 84, 70, 83, (580,136,0): 84, 72, 84, (580,137,0): 85, 73, 85, (580,138,0): 85, 74, 88, (580,139,0): 83, 77, 91, (580,140,0): 82, 78, 93, (580,141,0): 82, 79, 96, (580,142,0): 82, 81, 99, (580,143,0): 79, 82, 101, (580,144,0): 73, 81, 104, (580,145,0): 69, 81, 107, (580,146,0): 68, 80, 106, (580,147,0): 65, 79, 105, (580,148,0): 64, 78, 105, (580,149,0): 63, 79, 105, (580,150,0): 63, 78, 107, (580,151,0): 63, 80, 110, (580,152,0): 61, 80, 112, (580,153,0): 60, 81, 112, (580,154,0): 58, 81, 113, (580,155,0): 58, 81, 115, (580,156,0): 57, 81, 117, (580,157,0): 57, 81, 117, (580,158,0): 56, 82, 117, (580,159,0): 56, 82, 117, (580,160,0): 57, 81, 115, (580,161,0): 57, 81, 115, (580,162,0): 57, 81, 117, (580,163,0): 57, 81, 117, (580,164,0): 57, 81, 117, (580,165,0): 57, 81, 117, (580,166,0): 57, 81, 119, (580,167,0): 57, 81, 119, (580,168,0): 58, 81, 122, (580,169,0): 58, 81, 122, (580,170,0): 58, 81, 122, (580,171,0): 58, 81, 122, (580,172,0): 58, 81, 123, (580,173,0): 58, 81, 123, (580,174,0): 58, 81, 123, (580,175,0): 58, 81, 123, (580,176,0): 58, 81, 123, (580,177,0): 58, 81, 123, (580,178,0): 58, 81, 123, (580,179,0): 58, 81, 123, (580,180,0): 58, 81, 123, (580,181,0): 58, 81, 123, (580,182,0): 58, 81, 123, (580,183,0): 58, 81, 123, (580,184,0): 58, 81, 123, (580,185,0): 59, 82, 124, (580,186,0): 59, 82, 124, (580,187,0): 60, 83, 125, (580,188,0): 61, 84, 126, (580,189,0): 61, 84, 126, (580,190,0): 62, 85, 127, (580,191,0): 62, 85, 127, (580,192,0): 59, 83, 127, (580,193,0): 58, 85, 128, (580,194,0): 59, 86, 131, (580,195,0): 60, 87, 132, (580,196,0): 60, 87, 132, (580,197,0): 59, 86, 131, (580,198,0): 58, 85, 132, (580,199,0): 57, 84, 131, (580,200,0): 57, 83, 132, (580,201,0): 57, 83, 132, (580,202,0): 57, 83, 132, (580,203,0): 56, 82, 131, (580,204,0): 56, 82, 133, (580,205,0): 57, 83, 134, (580,206,0): 57, 83, 134, (580,207,0): 56, 83, 136, (580,208,0): 55, 86, 141, (580,209,0): 54, 86, 143, (580,210,0): 54, 86, 143, (580,211,0): 55, 87, 144, (580,212,0): 55, 87, 146, (580,213,0): 56, 88, 147, (580,214,0): 56, 88, 147, (580,215,0): 57, 89, 148, (580,216,0): 57, 89, 150, (580,217,0): 57, 89, 150, (580,218,0): 57, 88, 152, (580,219,0): 58, 89, 153, (580,220,0): 58, 89, 153, (580,221,0): 59, 90, 154, (580,222,0): 59, 90, 155, (580,223,0): 58, 92, 156, (580,224,0): 57, 92, 156, (580,225,0): 56, 94, 157, (580,226,0): 57, 95, 158, (580,227,0): 59, 97, 162, (580,228,0): 59, 96, 164, (580,229,0): 58, 97, 164, (580,230,0): 57, 96, 165, (580,231,0): 57, 96, 165, (580,232,0): 59, 99, 169, (580,233,0): 59, 99, 171, (580,234,0): 58, 100, 174, (580,235,0): 59, 101, 175, (580,236,0): 60, 102, 178, (580,237,0): 61, 103, 179, (580,238,0): 62, 103, 182, (580,239,0): 62, 103, 182, (580,240,0): 60, 102, 178, (580,241,0): 61, 103, 179, (580,242,0): 61, 103, 179, (580,243,0): 62, 104, 180, (580,244,0): 63, 104, 183, (580,245,0): 64, 105, 184, (580,246,0): 65, 106, 185, (580,247,0): 66, 107, 186, (580,248,0): 67, 108, 188, (580,249,0): 67, 108, 188, (580,250,0): 68, 109, 191, (580,251,0): 69, 110, 192, (580,252,0): 69, 110, 192, (580,253,0): 70, 111, 193, (580,254,0): 71, 111, 196, (580,255,0): 71, 112, 194, (580,256,0): 69, 111, 187, (580,257,0): 72, 111, 186, (580,258,0): 73, 112, 189, (580,259,0): 76, 114, 189, (580,260,0): 80, 113, 190, (580,261,0): 84, 112, 185, (580,262,0): 89, 110, 175, (580,263,0): 95, 108, 163, (580,264,0): 90, 94, 139, (580,265,0): 80, 76, 111, (580,266,0): 64, 54, 79, (580,267,0): 55, 40, 59, (580,268,0): 55, 39, 52, (580,269,0): 56, 40, 51, (580,270,0): 52, 36, 46, (580,271,0): 49, 32, 42, (580,272,0): 50, 28, 40, (580,273,0): 48, 26, 38, (580,274,0): 46, 24, 36, (580,275,0): 44, 24, 35, (580,276,0): 41, 24, 34, (580,277,0): 37, 21, 31, (580,278,0): 33, 17, 27, (580,279,0): 29, 13, 23, (580,280,0): 33, 17, 27, (580,281,0): 34, 18, 28, (580,282,0): 36, 19, 29, (580,283,0): 38, 21, 31, (580,284,0): 42, 22, 33, (580,285,0): 45, 23, 35, (580,286,0): 48, 24, 37, (580,287,0): 47, 25, 37, (580,288,0): 47, 27, 36, (580,289,0): 44, 27, 35, (580,290,0): 43, 23, 32, (580,291,0): 39, 22, 30, (580,292,0): 38, 21, 29, (580,293,0): 37, 20, 28, (580,294,0): 37, 20, 28, (580,295,0): 37, 20, 28, (580,296,0): 35, 20, 27, (580,297,0): 35, 20, 27, (580,298,0): 35, 20, 27, (580,299,0): 35, 20, 27, (580,300,0): 35, 20, 27, (580,301,0): 35, 20, 27, (580,302,0): 35, 20, 27, (580,303,0): 35, 20, 27, (580,304,0): 35, 22, 31, (580,305,0): 35, 22, 32, (580,306,0): 33, 20, 30, (580,307,0): 32, 19, 29, (580,308,0): 31, 18, 28, (580,309,0): 29, 16, 26, (580,310,0): 28, 15, 25, (580,311,0): 28, 15, 25, (580,312,0): 24, 11, 21, (580,313,0): 24, 11, 21, (580,314,0): 24, 11, 21, (580,315,0): 23, 10, 20, (580,316,0): 23, 10, 20, (580,317,0): 22, 9, 19, (580,318,0): 22, 9, 19, (580,319,0): 22, 9, 19, (580,320,0): 19, 7, 17, (580,321,0): 18, 8, 17, (580,322,0): 18, 8, 17, (580,323,0): 18, 8, 17, (580,324,0): 18, 8, 17, (580,325,0): 18, 8, 17, (580,326,0): 18, 8, 17, (580,327,0): 18, 8, 17, (580,328,0): 18, 8, 17, (580,329,0): 18, 8, 17, (580,330,0): 18, 8, 17, (580,331,0): 17, 7, 16, (580,332,0): 16, 6, 15, (580,333,0): 16, 6, 15, (580,334,0): 16, 6, 15, (580,335,0): 15, 5, 14, (580,336,0): 13, 6, 14, (580,337,0): 13, 6, 14, (580,338,0): 13, 6, 14, (580,339,0): 12, 5, 13, (580,340,0): 11, 4, 12, (580,341,0): 11, 4, 12, (580,342,0): 11, 4, 12, (580,343,0): 10, 3, 11, (580,344,0): 8, 1, 9, (580,345,0): 8, 1, 9, (580,346,0): 8, 1, 9, (580,347,0): 8, 1, 9, (580,348,0): 8, 1, 9, (580,349,0): 8, 1, 9, (580,350,0): 8, 1, 9, (580,351,0): 8, 1, 9, (580,352,0): 5, 0, 9, (580,353,0): 5, 0, 9, (580,354,0): 5, 0, 9, (580,355,0): 5, 0, 9, (580,356,0): 5, 0, 9, (580,357,0): 5, 0, 9, (580,358,0): 5, 0, 9, (580,359,0): 5, 0, 9, (580,360,0): 5, 0, 9, (580,361,0): 5, 0, 9, (580,362,0): 5, 0, 9, (580,363,0): 5, 0, 9, (580,364,0): 5, 0, 9, (580,365,0): 5, 0, 9, (580,366,0): 5, 0, 9, (580,367,0): 5, 0, 9, (580,368,0): 8, 3, 10, (580,369,0): 8, 3, 10, (580,370,0): 8, 3, 10, (580,371,0): 8, 3, 10, (580,372,0): 8, 3, 10, (580,373,0): 8, 3, 10, (580,374,0): 8, 3, 10, (580,375,0): 8, 3, 10, (580,376,0): 10, 5, 12, (580,377,0): 10, 5, 12, (580,378,0): 10, 5, 12, (580,379,0): 11, 6, 13, (580,380,0): 11, 6, 13, (580,381,0): 12, 7, 14, (580,382,0): 12, 7, 14, (580,383,0): 13, 6, 13, (580,384,0): 17, 8, 13, (580,385,0): 18, 7, 11, (580,386,0): 18, 7, 11, (580,387,0): 18, 7, 11, (580,388,0): 18, 7, 11, (580,389,0): 18, 7, 11, (580,390,0): 19, 7, 11, (580,391,0): 19, 7, 11, (580,392,0): 21, 6, 11, (580,393,0): 21, 6, 11, (580,394,0): 22, 5, 11, (580,395,0): 22, 5, 11, (580,396,0): 22, 5, 11, (580,397,0): 22, 5, 11, (580,398,0): 22, 5, 11, (580,399,0): 21, 6, 9, (580,400,0): 19, 9, 10, (580,401,0): 18, 10, 8, (580,402,0): 20, 10, 9, (580,403,0): 20, 10, 9, (580,404,0): 22, 10, 10, (580,405,0): 22, 10, 10, (580,406,0): 25, 11, 11, (580,407,0): 25, 11, 11, (580,408,0): 28, 9, 11, (580,409,0): 29, 10, 12, (580,410,0): 32, 12, 14, (580,411,0): 34, 14, 16, (580,412,0): 36, 14, 17, (580,413,0): 37, 15, 18, (580,414,0): 38, 13, 17, (580,415,0): 38, 13, 17, (580,416,0): 39, 14, 18, (580,417,0): 37, 15, 18, (580,418,0): 38, 16, 19, (580,419,0): 39, 17, 20, (580,420,0): 39, 17, 20, (580,421,0): 39, 19, 21, (580,422,0): 39, 19, 21, (580,423,0): 40, 20, 22, (580,424,0): 40, 21, 23, (580,425,0): 40, 21, 23, (580,426,0): 38, 22, 23, (580,427,0): 39, 23, 24, (580,428,0): 39, 23, 24, (580,429,0): 40, 24, 25, (580,430,0): 40, 26, 26, (580,431,0): 41, 27, 27, (580,432,0): 40, 24, 25, (580,433,0): 40, 24, 25, (580,434,0): 39, 23, 24, (580,435,0): 38, 22, 23, (580,436,0): 37, 21, 22, (580,437,0): 36, 20, 21, (580,438,0): 35, 19, 20, (580,439,0): 35, 19, 20, (580,440,0): 36, 20, 21, (580,441,0): 35, 19, 20, (580,442,0): 34, 18, 19, (580,443,0): 33, 17, 18, (580,444,0): 32, 16, 17, (580,445,0): 31, 15, 16, (580,446,0): 30, 14, 15, (580,447,0): 29, 15, 15, (580,448,0): 24, 12, 14, (580,449,0): 23, 11, 13, (580,450,0): 21, 11, 12, (580,451,0): 20, 10, 11, (580,452,0): 19, 8, 12, (580,453,0): 18, 7, 11, (580,454,0): 16, 7, 12, (580,455,0): 16, 7, 12, (580,456,0): 14, 8, 12, (580,457,0): 13, 7, 11, (580,458,0): 12, 5, 12, (580,459,0): 11, 4, 11, (580,460,0): 8, 3, 10, (580,461,0): 6, 1, 8, (580,462,0): 4, 0, 6, (580,463,0): 4, 0, 5, (580,464,0): 13, 2, 10, (580,465,0): 15, 2, 11, (580,466,0): 15, 2, 11, (580,467,0): 15, 2, 11, (580,468,0): 18, 3, 10, (580,469,0): 19, 4, 11, (580,470,0): 19, 4, 9, (580,471,0): 19, 4, 9, (580,472,0): 19, 2, 8, (580,473,0): 19, 2, 8, (580,474,0): 21, 2, 6, (580,475,0): 21, 2, 6, (580,476,0): 21, 2, 4, (580,477,0): 21, 2, 4, (580,478,0): 22, 2, 4, (580,479,0): 21, 2, 4, (580,480,0): 22, 4, 4, (580,481,0): 21, 5, 5, (580,482,0): 21, 5, 5, (580,483,0): 21, 5, 5, (580,484,0): 22, 6, 6, (580,485,0): 22, 6, 6, (580,486,0): 22, 6, 6, (580,487,0): 22, 6, 6, (580,488,0): 23, 7, 7, (580,489,0): 23, 7, 7, (580,490,0): 23, 7, 7, (580,491,0): 25, 9, 9, (580,492,0): 26, 10, 10, (580,493,0): 27, 11, 11, (580,494,0): 28, 12, 12, (580,495,0): 30, 12, 12, (580,496,0): 32, 10, 13, (580,497,0): 34, 9, 13, (580,498,0): 34, 9, 13, (580,499,0): 32, 10, 13, (580,500,0): 31, 9, 12, (580,501,0): 31, 9, 12, (580,502,0): 30, 10, 12, (580,503,0): 30, 10, 12, (580,504,0): 26, 7, 9, (580,505,0): 26, 7, 9, (580,506,0): 26, 7, 9, (580,507,0): 24, 8, 9, (580,508,0): 24, 8, 9, (580,509,0): 24, 8, 9, (580,510,0): 24, 8, 9, (580,511,0): 24, 8, 9, (580,512,0): 21, 6, 9, (580,513,0): 22, 7, 10, (580,514,0): 22, 7, 10, (580,515,0): 23, 8, 11, (580,516,0): 25, 10, 13, (580,517,0): 26, 11, 14, (580,518,0): 26, 11, 14, (580,519,0): 27, 12, 15, (580,520,0): 26, 11, 14, (580,521,0): 26, 11, 14, (580,522,0): 25, 10, 13, (580,523,0): 24, 9, 12, (580,524,0): 22, 7, 10, (580,525,0): 21, 6, 9, (580,526,0): 20, 5, 8, (580,527,0): 20, 5, 10, (580,528,0): 21, 6, 13, (580,529,0): 20, 4, 14, (580,530,0): 18, 5, 14, (580,531,0): 17, 4, 13, (580,532,0): 15, 2, 11, (580,533,0): 14, 1, 10, (580,534,0): 13, 2, 10, (580,535,0): 12, 1, 9, (580,536,0): 11, 1, 9, (580,537,0): 11, 1, 9, (580,538,0): 11, 1, 9, (580,539,0): 11, 1, 9, (580,540,0): 9, 2, 9, (580,541,0): 9, 2, 9, (580,542,0): 9, 2, 9, (580,543,0): 9, 2, 9, (580,544,0): 8, 3, 10, (580,545,0): 8, 3, 10, (580,546,0): 8, 3, 10, (580,547,0): 8, 3, 10, (580,548,0): 9, 2, 10, (580,549,0): 9, 2, 10, (580,550,0): 9, 2, 10, (580,551,0): 9, 2, 10, (580,552,0): 10, 0, 9, (580,553,0): 10, 0, 9, (580,554,0): 11, 0, 9, (580,555,0): 12, 0, 10, (580,556,0): 12, 0, 10, (580,557,0): 13, 1, 11, (580,558,0): 14, 1, 11, (580,559,0): 14, 2, 12, (580,560,0): 18, 8, 16, (580,561,0): 18, 9, 14, (580,562,0): 18, 9, 14, (580,563,0): 17, 8, 13, (580,564,0): 17, 8, 13, (580,565,0): 17, 8, 13, (580,566,0): 17, 8, 13, (580,567,0): 17, 8, 13, (580,568,0): 19, 10, 15, (580,569,0): 21, 12, 17, (580,570,0): 23, 14, 19, (580,571,0): 26, 17, 22, (580,572,0): 28, 19, 24, (580,573,0): 29, 20, 25, (580,574,0): 30, 21, 26, (580,575,0): 32, 21, 25, (580,576,0): 39, 24, 27, (580,577,0): 41, 25, 26, (580,578,0): 41, 25, 26, (580,579,0): 42, 26, 27, (580,580,0): 41, 25, 26, (580,581,0): 40, 24, 25, (580,582,0): 37, 23, 23, (580,583,0): 36, 22, 22, (580,584,0): 33, 21, 21, (580,585,0): 33, 21, 21, (580,586,0): 32, 22, 21, (580,587,0): 33, 23, 22, (580,588,0): 34, 24, 23, (580,589,0): 34, 24, 23, (580,590,0): 34, 24, 23, (580,591,0): 35, 25, 24, (580,592,0): 34, 26, 24, (580,593,0): 32, 27, 24, (580,594,0): 33, 28, 25, (580,595,0): 33, 28, 25, (580,596,0): 33, 28, 25, (580,597,0): 31, 26, 23, (580,598,0): 30, 25, 22, (580,599,0): 29, 24, 21, (581,0,0): 31, 54, 68, (581,1,0): 31, 54, 68, (581,2,0): 31, 54, 68, (581,3,0): 31, 54, 68, (581,4,0): 31, 54, 68, (581,5,0): 31, 54, 68, (581,6,0): 31, 54, 68, (581,7,0): 31, 54, 68, (581,8,0): 33, 56, 70, (581,9,0): 33, 56, 70, (581,10,0): 33, 56, 70, (581,11,0): 33, 56, 70, (581,12,0): 33, 56, 70, (581,13,0): 33, 56, 70, (581,14,0): 33, 56, 70, (581,15,0): 33, 56, 70, (581,16,0): 39, 58, 72, (581,17,0): 38, 57, 71, (581,18,0): 37, 56, 70, (581,19,0): 36, 55, 69, (581,20,0): 36, 55, 69, (581,21,0): 37, 56, 70, (581,22,0): 38, 57, 71, (581,23,0): 39, 58, 72, (581,24,0): 37, 56, 70, (581,25,0): 37, 56, 70, (581,26,0): 37, 56, 70, (581,27,0): 37, 56, 70, (581,28,0): 37, 56, 70, (581,29,0): 37, 56, 70, (581,30,0): 37, 56, 70, (581,31,0): 37, 56, 70, (581,32,0): 40, 58, 72, (581,33,0): 40, 58, 72, (581,34,0): 40, 58, 72, (581,35,0): 41, 59, 73, (581,36,0): 42, 58, 71, (581,37,0): 43, 59, 72, (581,38,0): 46, 58, 72, (581,39,0): 47, 59, 73, (581,40,0): 51, 61, 73, (581,41,0): 51, 61, 73, (581,42,0): 54, 60, 72, (581,43,0): 54, 60, 72, (581,44,0): 57, 61, 73, (581,45,0): 57, 61, 73, (581,46,0): 58, 62, 73, (581,47,0): 58, 62, 73, (581,48,0): 63, 62, 78, (581,49,0): 63, 62, 78, (581,50,0): 63, 62, 78, (581,51,0): 64, 63, 79, (581,52,0): 64, 63, 79, (581,53,0): 65, 64, 80, (581,54,0): 65, 64, 80, (581,55,0): 65, 64, 80, (581,56,0): 65, 64, 80, (581,57,0): 65, 64, 80, (581,58,0): 65, 64, 80, (581,59,0): 65, 64, 80, (581,60,0): 65, 64, 80, (581,61,0): 65, 64, 80, (581,62,0): 65, 64, 80, (581,63,0): 65, 64, 80, (581,64,0): 68, 65, 82, (581,65,0): 68, 65, 82, (581,66,0): 68, 65, 82, (581,67,0): 68, 65, 82, (581,68,0): 68, 65, 82, (581,69,0): 68, 65, 82, (581,70,0): 68, 65, 82, (581,71,0): 68, 65, 82, (581,72,0): 68, 65, 82, (581,73,0): 68, 65, 82, (581,74,0): 68, 65, 82, (581,75,0): 68, 65, 82, (581,76,0): 68, 65, 82, (581,77,0): 68, 65, 82, (581,78,0): 68, 65, 82, (581,79,0): 68, 65, 82, (581,80,0): 67, 65, 86, (581,81,0): 67, 65, 86, (581,82,0): 65, 66, 86, (581,83,0): 65, 66, 86, (581,84,0): 65, 66, 86, (581,85,0): 65, 66, 86, (581,86,0): 64, 67, 86, (581,87,0): 64, 67, 86, (581,88,0): 64, 69, 88, (581,89,0): 64, 69, 88, (581,90,0): 64, 69, 88, (581,91,0): 64, 69, 88, (581,92,0): 63, 70, 88, (581,93,0): 63, 70, 88, (581,94,0): 63, 70, 88, (581,95,0): 63, 70, 88, (581,96,0): 61, 69, 88, (581,97,0): 61, 69, 88, (581,98,0): 61, 69, 88, (581,99,0): 61, 69, 88, (581,100,0): 61, 69, 88, (581,101,0): 61, 69, 88, (581,102,0): 61, 69, 88, (581,103,0): 61, 69, 88, (581,104,0): 61, 69, 88, (581,105,0): 61, 69, 88, (581,106,0): 61, 69, 88, (581,107,0): 61, 69, 88, (581,108,0): 61, 69, 88, (581,109,0): 61, 69, 88, (581,110,0): 61, 69, 88, (581,111,0): 59, 70, 88, (581,112,0): 62, 73, 91, (581,113,0): 61, 74, 91, (581,114,0): 61, 74, 91, (581,115,0): 61, 74, 91, (581,116,0): 62, 73, 91, (581,117,0): 62, 73, 91, (581,118,0): 64, 72, 91, (581,119,0): 64, 72, 91, (581,120,0): 64, 72, 91, (581,121,0): 65, 72, 91, (581,122,0): 65, 72, 91, (581,123,0): 66, 71, 90, (581,124,0): 66, 71, 91, (581,125,0): 67, 72, 91, (581,126,0): 67, 72, 92, (581,127,0): 70, 71, 91, (581,128,0): 75, 70, 92, (581,129,0): 77, 69, 90, (581,130,0): 77, 68, 87, (581,131,0): 79, 68, 85, (581,132,0): 80, 68, 82, (581,133,0): 82, 68, 81, (581,134,0): 86, 70, 81, (581,135,0): 86, 70, 80, (581,136,0): 89, 73, 83, (581,137,0): 86, 74, 84, (581,138,0): 87, 77, 88, (581,139,0): 85, 79, 93, (581,140,0): 82, 79, 96, (581,141,0): 81, 80, 98, (581,142,0): 77, 80, 99, (581,143,0): 74, 80, 102, (581,144,0): 69, 79, 104, (581,145,0): 66, 80, 106, (581,146,0): 65, 79, 105, (581,147,0): 64, 80, 105, (581,148,0): 63, 79, 105, (581,149,0): 62, 79, 107, (581,150,0): 62, 79, 109, (581,151,0): 59, 78, 108, (581,152,0): 59, 80, 111, (581,153,0): 59, 79, 112, (581,154,0): 57, 80, 114, (581,155,0): 57, 80, 114, (581,156,0): 56, 80, 116, (581,157,0): 56, 80, 116, (581,158,0): 55, 81, 116, (581,159,0): 55, 81, 116, (581,160,0): 56, 80, 116, (581,161,0): 56, 80, 114, (581,162,0): 56, 80, 116, (581,163,0): 56, 80, 116, (581,164,0): 56, 80, 116, (581,165,0): 56, 80, 116, (581,166,0): 56, 80, 118, (581,167,0): 56, 80, 118, (581,168,0): 57, 80, 121, (581,169,0): 57, 80, 121, (581,170,0): 57, 80, 121, (581,171,0): 57, 80, 121, (581,172,0): 57, 80, 122, (581,173,0): 57, 80, 122, (581,174,0): 57, 80, 122, (581,175,0): 57, 80, 122, (581,176,0): 57, 80, 122, (581,177,0): 57, 80, 122, (581,178,0): 57, 80, 122, (581,179,0): 57, 80, 122, (581,180,0): 57, 80, 122, (581,181,0): 57, 80, 122, (581,182,0): 57, 80, 122, (581,183,0): 57, 80, 122, (581,184,0): 57, 80, 122, (581,185,0): 58, 81, 123, (581,186,0): 58, 81, 123, (581,187,0): 59, 82, 124, (581,188,0): 60, 83, 125, (581,189,0): 61, 84, 126, (581,190,0): 62, 85, 127, (581,191,0): 61, 86, 127, (581,192,0): 56, 83, 126, (581,193,0): 57, 84, 127, (581,194,0): 58, 85, 130, (581,195,0): 59, 86, 131, (581,196,0): 59, 86, 131, (581,197,0): 58, 85, 130, (581,198,0): 57, 84, 131, (581,199,0): 56, 83, 130, (581,200,0): 56, 82, 131, (581,201,0): 56, 82, 131, (581,202,0): 55, 81, 130, (581,203,0): 54, 80, 129, (581,204,0): 54, 80, 131, (581,205,0): 55, 81, 132, (581,206,0): 56, 82, 133, (581,207,0): 55, 82, 135, (581,208,0): 54, 85, 140, (581,209,0): 54, 86, 143, (581,210,0): 54, 86, 143, (581,211,0): 54, 86, 143, (581,212,0): 55, 87, 146, (581,213,0): 56, 88, 147, (581,214,0): 56, 88, 147, (581,215,0): 56, 88, 147, (581,216,0): 56, 88, 149, (581,217,0): 57, 89, 150, (581,218,0): 57, 88, 152, (581,219,0): 57, 88, 152, (581,220,0): 58, 89, 153, (581,221,0): 59, 90, 154, (581,222,0): 59, 90, 155, (581,223,0): 57, 91, 155, (581,224,0): 57, 92, 156, (581,225,0): 56, 94, 157, (581,226,0): 57, 95, 158, (581,227,0): 58, 96, 159, (581,228,0): 59, 97, 162, (581,229,0): 59, 96, 164, (581,230,0): 57, 96, 165, (581,231,0): 56, 95, 164, (581,232,0): 59, 97, 168, (581,233,0): 58, 98, 168, (581,234,0): 59, 99, 171, (581,235,0): 58, 100, 174, (581,236,0): 59, 101, 177, (581,237,0): 60, 102, 178, (581,238,0): 61, 102, 181, (581,239,0): 61, 103, 179, (581,240,0): 60, 102, 178, (581,241,0): 61, 103, 179, (581,242,0): 62, 104, 180, (581,243,0): 63, 105, 181, (581,244,0): 64, 105, 184, (581,245,0): 65, 106, 185, (581,246,0): 66, 107, 186, (581,247,0): 66, 107, 186, (581,248,0): 66, 107, 187, (581,249,0): 67, 108, 188, (581,250,0): 68, 109, 191, (581,251,0): 68, 109, 191, (581,252,0): 70, 111, 193, (581,253,0): 70, 111, 193, (581,254,0): 71, 111, 196, (581,255,0): 72, 113, 195, (581,256,0): 70, 112, 188, (581,257,0): 70, 112, 186, (581,258,0): 73, 112, 189, (581,259,0): 76, 114, 189, (581,260,0): 82, 114, 189, (581,261,0): 86, 113, 184, (581,262,0): 90, 108, 170, (581,263,0): 96, 103, 155, (581,264,0): 82, 82, 120, (581,265,0): 70, 64, 90, (581,266,0): 57, 44, 62, (581,267,0): 50, 34, 44, (581,268,0): 52, 37, 42, (581,269,0): 55, 40, 43, (581,270,0): 53, 38, 43, (581,271,0): 48, 33, 38, (581,272,0): 49, 29, 38, (581,273,0): 47, 27, 38, (581,274,0): 45, 25, 36, (581,275,0): 41, 24, 34, (581,276,0): 38, 22, 32, (581,277,0): 33, 20, 29, (581,278,0): 30, 17, 26, (581,279,0): 26, 15, 23, (581,280,0): 31, 18, 27, (581,281,0): 32, 19, 28, (581,282,0): 33, 20, 29, (581,283,0): 37, 21, 31, (581,284,0): 40, 23, 33, (581,285,0): 44, 24, 35, (581,286,0): 45, 25, 36, (581,287,0): 46, 26, 37, (581,288,0): 46, 26, 35, (581,289,0): 45, 25, 34, (581,290,0): 42, 22, 31, (581,291,0): 40, 20, 29, (581,292,0): 39, 19, 28, (581,293,0): 37, 20, 28, (581,294,0): 37, 20, 28, (581,295,0): 37, 20, 28, (581,296,0): 33, 18, 25, (581,297,0): 33, 18, 25, (581,298,0): 33, 18, 25, (581,299,0): 31, 18, 25, (581,300,0): 31, 18, 25, (581,301,0): 30, 19, 25, (581,302,0): 31, 18, 25, (581,303,0): 31, 18, 25, (581,304,0): 34, 21, 31, (581,305,0): 33, 20, 30, (581,306,0): 32, 19, 29, (581,307,0): 31, 18, 28, (581,308,0): 30, 17, 27, (581,309,0): 29, 16, 26, (581,310,0): 28, 15, 25, (581,311,0): 28, 15, 25, (581,312,0): 23, 10, 20, (581,313,0): 23, 10, 20, (581,314,0): 23, 10, 20, (581,315,0): 22, 9, 19, (581,316,0): 22, 9, 19, (581,317,0): 21, 8, 18, (581,318,0): 21, 8, 18, (581,319,0): 20, 8, 18, (581,320,0): 18, 8, 17, (581,321,0): 18, 8, 17, (581,322,0): 18, 8, 17, (581,323,0): 18, 8, 17, (581,324,0): 18, 8, 17, (581,325,0): 18, 8, 17, (581,326,0): 18, 8, 17, (581,327,0): 18, 8, 17, (581,328,0): 18, 8, 17, (581,329,0): 17, 7, 16, (581,330,0): 17, 7, 16, (581,331,0): 16, 6, 15, (581,332,0): 16, 6, 15, (581,333,0): 15, 5, 14, (581,334,0): 15, 5, 14, (581,335,0): 15, 5, 14, (581,336,0): 13, 6, 14, (581,337,0): 12, 5, 13, (581,338,0): 12, 5, 13, (581,339,0): 11, 4, 12, (581,340,0): 11, 4, 12, (581,341,0): 10, 3, 11, (581,342,0): 10, 3, 11, (581,343,0): 10, 3, 11, (581,344,0): 7, 0, 8, (581,345,0): 7, 0, 8, (581,346,0): 7, 0, 8, (581,347,0): 7, 0, 8, (581,348,0): 7, 0, 8, (581,349,0): 7, 0, 8, (581,350,0): 7, 0, 8, (581,351,0): 7, 0, 8, (581,352,0): 6, 0, 10, (581,353,0): 6, 0, 10, (581,354,0): 6, 0, 10, (581,355,0): 6, 0, 10, (581,356,0): 6, 0, 10, (581,357,0): 6, 0, 10, (581,358,0): 6, 0, 10, (581,359,0): 6, 0, 10, (581,360,0): 6, 0, 10, (581,361,0): 6, 0, 10, (581,362,0): 6, 0, 10, (581,363,0): 6, 0, 10, (581,364,0): 6, 0, 10, (581,365,0): 6, 0, 10, (581,366,0): 6, 0, 10, (581,367,0): 6, 0, 10, (581,368,0): 9, 4, 11, (581,369,0): 9, 4, 11, (581,370,0): 9, 4, 11, (581,371,0): 9, 4, 11, (581,372,0): 9, 4, 11, (581,373,0): 9, 4, 11, (581,374,0): 9, 4, 11, (581,375,0): 9, 4, 11, (581,376,0): 9, 4, 11, (581,377,0): 10, 5, 12, (581,378,0): 10, 5, 12, (581,379,0): 11, 6, 13, (581,380,0): 11, 6, 13, (581,381,0): 12, 7, 14, (581,382,0): 12, 7, 14, (581,383,0): 13, 6, 13, (581,384,0): 16, 7, 12, (581,385,0): 17, 6, 10, (581,386,0): 17, 6, 10, (581,387,0): 17, 6, 10, (581,388,0): 17, 6, 10, (581,389,0): 17, 6, 10, (581,390,0): 18, 6, 10, (581,391,0): 18, 6, 10, (581,392,0): 20, 5, 10, (581,393,0): 20, 5, 10, (581,394,0): 21, 4, 10, (581,395,0): 21, 4, 10, (581,396,0): 21, 4, 10, (581,397,0): 21, 4, 10, (581,398,0): 21, 4, 10, (581,399,0): 20, 5, 8, (581,400,0): 18, 8, 9, (581,401,0): 18, 8, 7, (581,402,0): 19, 9, 8, (581,403,0): 19, 9, 8, (581,404,0): 21, 9, 9, (581,405,0): 21, 9, 9, (581,406,0): 24, 10, 10, (581,407,0): 25, 9, 10, (581,408,0): 25, 6, 8, (581,409,0): 27, 8, 10, (581,410,0): 30, 10, 12, (581,411,0): 32, 12, 14, (581,412,0): 35, 13, 16, (581,413,0): 35, 13, 16, (581,414,0): 37, 12, 16, (581,415,0): 35, 13, 16, (581,416,0): 35, 13, 16, (581,417,0): 35, 15, 17, (581,418,0): 36, 14, 17, (581,419,0): 36, 16, 18, (581,420,0): 37, 17, 19, (581,421,0): 38, 18, 20, (581,422,0): 39, 19, 21, (581,423,0): 39, 20, 22, (581,424,0): 39, 20, 22, (581,425,0): 39, 20, 22, (581,426,0): 36, 20, 21, (581,427,0): 37, 21, 22, (581,428,0): 38, 22, 23, (581,429,0): 39, 23, 24, (581,430,0): 40, 26, 26, (581,431,0): 41, 27, 27, (581,432,0): 41, 25, 26, (581,433,0): 41, 25, 26, (581,434,0): 40, 24, 25, (581,435,0): 39, 23, 24, (581,436,0): 38, 22, 23, (581,437,0): 37, 21, 22, (581,438,0): 36, 20, 21, (581,439,0): 36, 20, 21, (581,440,0): 36, 20, 21, (581,441,0): 35, 19, 20, (581,442,0): 35, 19, 20, (581,443,0): 34, 18, 19, (581,444,0): 33, 17, 18, (581,445,0): 32, 16, 17, (581,446,0): 31, 15, 16, (581,447,0): 29, 15, 15, (581,448,0): 26, 11, 14, (581,449,0): 24, 12, 14, (581,450,0): 22, 12, 13, (581,451,0): 21, 11, 12, (581,452,0): 20, 9, 13, (581,453,0): 19, 8, 12, (581,454,0): 18, 7, 13, (581,455,0): 17, 8, 13, (581,456,0): 15, 6, 11, (581,457,0): 13, 7, 11, (581,458,0): 13, 6, 13, (581,459,0): 13, 6, 13, (581,460,0): 10, 5, 12, (581,461,0): 8, 3, 10, (581,462,0): 6, 1, 8, (581,463,0): 6, 0, 7, (581,464,0): 13, 2, 10, (581,465,0): 14, 1, 10, (581,466,0): 14, 1, 10, (581,467,0): 15, 2, 11, (581,468,0): 17, 2, 9, (581,469,0): 18, 3, 10, (581,470,0): 18, 3, 8, (581,471,0): 19, 4, 9, (581,472,0): 18, 1, 7, (581,473,0): 18, 1, 7, (581,474,0): 20, 1, 5, (581,475,0): 20, 1, 5, (581,476,0): 20, 1, 3, (581,477,0): 20, 1, 3, (581,478,0): 21, 1, 3, (581,479,0): 20, 1, 3, (581,480,0): 20, 4, 4, (581,481,0): 20, 4, 4, (581,482,0): 20, 4, 4, (581,483,0): 20, 4, 4, (581,484,0): 20, 4, 4, (581,485,0): 21, 5, 5, (581,486,0): 21, 5, 5, (581,487,0): 21, 5, 5, (581,488,0): 22, 6, 6, (581,489,0): 21, 5, 5, (581,490,0): 20, 4, 4, (581,491,0): 22, 6, 6, (581,492,0): 25, 9, 9, (581,493,0): 26, 10, 10, (581,494,0): 26, 10, 10, (581,495,0): 27, 9, 9, (581,496,0): 30, 8, 11, (581,497,0): 30, 8, 11, (581,498,0): 30, 8, 11, (581,499,0): 30, 8, 11, (581,500,0): 30, 8, 11, (581,501,0): 30, 8, 11, (581,502,0): 29, 9, 11, (581,503,0): 29, 9, 11, (581,504,0): 26, 7, 9, (581,505,0): 26, 7, 9, (581,506,0): 26, 7, 9, (581,507,0): 26, 7, 9, (581,508,0): 24, 8, 9, (581,509,0): 24, 8, 9, (581,510,0): 24, 8, 9, (581,511,0): 24, 8, 9, (581,512,0): 22, 6, 9, (581,513,0): 22, 7, 10, (581,514,0): 22, 7, 10, (581,515,0): 23, 8, 11, (581,516,0): 25, 10, 13, (581,517,0): 26, 11, 14, (581,518,0): 26, 11, 14, (581,519,0): 27, 12, 15, (581,520,0): 28, 13, 16, (581,521,0): 27, 12, 15, (581,522,0): 26, 11, 14, (581,523,0): 25, 10, 13, (581,524,0): 23, 8, 11, (581,525,0): 22, 7, 10, (581,526,0): 21, 6, 9, (581,527,0): 20, 5, 10, (581,528,0): 21, 6, 13, (581,529,0): 20, 4, 14, (581,530,0): 18, 5, 14, (581,531,0): 17, 4, 13, (581,532,0): 15, 2, 11, (581,533,0): 14, 1, 10, (581,534,0): 13, 2, 10, (581,535,0): 12, 1, 9, (581,536,0): 11, 1, 9, (581,537,0): 11, 1, 9, (581,538,0): 11, 1, 9, (581,539,0): 11, 1, 9, (581,540,0): 9, 2, 9, (581,541,0): 9, 2, 9, (581,542,0): 9, 2, 9, (581,543,0): 9, 2, 9, (581,544,0): 8, 3, 10, (581,545,0): 8, 3, 10, (581,546,0): 8, 3, 10, (581,547,0): 8, 3, 10, (581,548,0): 9, 2, 10, (581,549,0): 9, 2, 10, (581,550,0): 9, 2, 10, (581,551,0): 9, 2, 10, (581,552,0): 11, 1, 10, (581,553,0): 11, 1, 10, (581,554,0): 12, 0, 10, (581,555,0): 13, 1, 11, (581,556,0): 13, 1, 11, (581,557,0): 14, 2, 12, (581,558,0): 15, 2, 12, (581,559,0): 15, 2, 11, (581,560,0): 18, 7, 13, (581,561,0): 17, 8, 13, (581,562,0): 17, 8, 13, (581,563,0): 18, 9, 14, (581,564,0): 18, 9, 14, (581,565,0): 18, 9, 14, (581,566,0): 18, 9, 14, (581,567,0): 18, 9, 14, (581,568,0): 20, 11, 16, (581,569,0): 21, 12, 17, (581,570,0): 23, 14, 19, (581,571,0): 25, 16, 21, (581,572,0): 27, 18, 23, (581,573,0): 29, 20, 25, (581,574,0): 31, 22, 27, (581,575,0): 33, 22, 26, (581,576,0): 39, 24, 27, (581,577,0): 40, 24, 25, (581,578,0): 41, 25, 26, (581,579,0): 41, 25, 26, (581,580,0): 41, 25, 26, (581,581,0): 40, 24, 25, (581,582,0): 37, 23, 23, (581,583,0): 36, 22, 22, (581,584,0): 33, 21, 21, (581,585,0): 34, 22, 22, (581,586,0): 33, 23, 22, (581,587,0): 34, 24, 23, (581,588,0): 34, 24, 23, (581,589,0): 35, 25, 24, (581,590,0): 35, 25, 24, (581,591,0): 34, 26, 24, (581,592,0): 33, 28, 25, (581,593,0): 33, 28, 25, (581,594,0): 34, 29, 26, (581,595,0): 33, 28, 25, (581,596,0): 32, 27, 24, (581,597,0): 31, 26, 23, (581,598,0): 29, 24, 21, (581,599,0): 28, 23, 20, (582,0,0): 31, 54, 68, (582,1,0): 31, 54, 68, (582,2,0): 31, 54, 68, (582,3,0): 31, 54, 68, (582,4,0): 31, 54, 68, (582,5,0): 31, 54, 68, (582,6,0): 31, 54, 68, (582,7,0): 31, 54, 68, (582,8,0): 32, 55, 69, (582,9,0): 32, 55, 69, (582,10,0): 32, 55, 69, (582,11,0): 32, 55, 69, (582,12,0): 32, 55, 69, (582,13,0): 32, 55, 69, (582,14,0): 32, 55, 69, (582,15,0): 32, 55, 69, (582,16,0): 38, 57, 71, (582,17,0): 37, 56, 70, (582,18,0): 36, 55, 69, (582,19,0): 36, 55, 69, (582,20,0): 36, 55, 69, (582,21,0): 36, 55, 69, (582,22,0): 37, 56, 70, (582,23,0): 38, 57, 71, (582,24,0): 37, 56, 70, (582,25,0): 37, 56, 70, (582,26,0): 37, 56, 70, (582,27,0): 37, 56, 70, (582,28,0): 37, 56, 70, (582,29,0): 37, 56, 70, (582,30,0): 37, 56, 70, (582,31,0): 37, 56, 70, (582,32,0): 39, 57, 71, (582,33,0): 40, 58, 72, (582,34,0): 40, 58, 72, (582,35,0): 41, 59, 73, (582,36,0): 42, 58, 71, (582,37,0): 43, 59, 72, (582,38,0): 46, 58, 72, (582,39,0): 46, 58, 72, (582,40,0): 51, 61, 73, (582,41,0): 51, 61, 73, (582,42,0): 54, 60, 72, (582,43,0): 54, 60, 72, (582,44,0): 57, 61, 73, (582,45,0): 57, 61, 73, (582,46,0): 58, 62, 73, (582,47,0): 58, 62, 73, (582,48,0): 63, 62, 78, (582,49,0): 63, 62, 78, (582,50,0): 63, 62, 78, (582,51,0): 64, 63, 79, (582,52,0): 64, 63, 79, (582,53,0): 65, 64, 80, (582,54,0): 65, 64, 80, (582,55,0): 65, 64, 80, (582,56,0): 66, 65, 81, (582,57,0): 66, 65, 81, (582,58,0): 66, 65, 81, (582,59,0): 66, 65, 81, (582,60,0): 66, 65, 81, (582,61,0): 66, 65, 81, (582,62,0): 66, 65, 81, (582,63,0): 66, 65, 81, (582,64,0): 68, 65, 82, (582,65,0): 68, 65, 82, (582,66,0): 68, 65, 82, (582,67,0): 68, 65, 82, (582,68,0): 68, 65, 82, (582,69,0): 68, 65, 82, (582,70,0): 68, 65, 82, (582,71,0): 68, 65, 82, (582,72,0): 68, 65, 82, (582,73,0): 68, 65, 82, (582,74,0): 68, 65, 82, (582,75,0): 68, 65, 82, (582,76,0): 68, 65, 82, (582,77,0): 68, 65, 82, (582,78,0): 68, 65, 82, (582,79,0): 68, 65, 82, (582,80,0): 67, 65, 86, (582,81,0): 67, 65, 86, (582,82,0): 65, 66, 86, (582,83,0): 65, 66, 86, (582,84,0): 65, 66, 86, (582,85,0): 65, 66, 86, (582,86,0): 64, 67, 86, (582,87,0): 64, 67, 86, (582,88,0): 64, 69, 88, (582,89,0): 64, 69, 88, (582,90,0): 64, 69, 88, (582,91,0): 64, 69, 88, (582,92,0): 63, 70, 88, (582,93,0): 63, 70, 88, (582,94,0): 63, 70, 88, (582,95,0): 63, 70, 88, (582,96,0): 61, 69, 88, (582,97,0): 61, 69, 88, (582,98,0): 61, 69, 88, (582,99,0): 61, 69, 88, (582,100,0): 61, 69, 88, (582,101,0): 61, 69, 88, (582,102,0): 61, 69, 88, (582,103,0): 61, 69, 88, (582,104,0): 61, 69, 88, (582,105,0): 61, 69, 88, (582,106,0): 61, 69, 88, (582,107,0): 61, 69, 88, (582,108,0): 61, 69, 88, (582,109,0): 61, 69, 88, (582,110,0): 61, 69, 88, (582,111,0): 59, 70, 88, (582,112,0): 61, 72, 90, (582,113,0): 60, 73, 90, (582,114,0): 60, 73, 90, (582,115,0): 60, 73, 90, (582,116,0): 61, 72, 90, (582,117,0): 61, 72, 90, (582,118,0): 63, 72, 89, (582,119,0): 63, 72, 89, (582,120,0): 65, 72, 90, (582,121,0): 65, 72, 90, (582,122,0): 66, 71, 90, (582,123,0): 68, 71, 88, (582,124,0): 68, 71, 90, (582,125,0): 67, 70, 87, (582,126,0): 67, 70, 89, (582,127,0): 70, 69, 87, (582,128,0): 75, 70, 90, (582,129,0): 76, 69, 87, (582,130,0): 76, 67, 84, (582,131,0): 78, 67, 83, (582,132,0): 81, 67, 80, (582,133,0): 84, 68, 78, (582,134,0): 87, 70, 78, (582,135,0): 89, 72, 80, (582,136,0): 91, 76, 83, (582,137,0): 90, 77, 86, (582,138,0): 89, 79, 90, (582,139,0): 86, 80, 94, (582,140,0): 82, 81, 97, (582,141,0): 77, 80, 99, (582,142,0): 72, 78, 100, (582,143,0): 68, 79, 101, (582,144,0): 65, 80, 103, (582,145,0): 64, 80, 105, (582,146,0): 64, 80, 106, (582,147,0): 64, 80, 106, (582,148,0): 63, 78, 107, (582,149,0): 62, 79, 107, (582,150,0): 61, 78, 108, (582,151,0): 59, 78, 108, (582,152,0): 58, 79, 110, (582,153,0): 58, 78, 111, (582,154,0): 56, 79, 113, (582,155,0): 56, 79, 113, (582,156,0): 55, 79, 115, (582,157,0): 55, 79, 115, (582,158,0): 55, 79, 117, (582,159,0): 55, 79, 115, (582,160,0): 54, 80, 115, (582,161,0): 54, 80, 115, (582,162,0): 54, 80, 115, (582,163,0): 54, 80, 115, (582,164,0): 54, 80, 117, (582,165,0): 54, 80, 117, (582,166,0): 54, 79, 119, (582,167,0): 54, 79, 119, (582,168,0): 54, 79, 119, (582,169,0): 54, 79, 119, (582,170,0): 54, 79, 120, (582,171,0): 54, 79, 120, (582,172,0): 54, 78, 122, (582,173,0): 54, 78, 122, (582,174,0): 54, 78, 122, (582,175,0): 54, 78, 122, (582,176,0): 56, 80, 124, (582,177,0): 56, 80, 124, (582,178,0): 56, 80, 124, (582,179,0): 56, 80, 124, (582,180,0): 56, 80, 124, (582,181,0): 56, 80, 124, (582,182,0): 56, 80, 124, (582,183,0): 56, 80, 124, (582,184,0): 55, 79, 123, (582,185,0): 56, 80, 124, (582,186,0): 56, 80, 124, (582,187,0): 58, 82, 126, (582,188,0): 59, 83, 127, (582,189,0): 60, 84, 128, (582,190,0): 61, 85, 129, (582,191,0): 62, 86, 130, (582,192,0): 55, 82, 127, (582,193,0): 56, 83, 128, (582,194,0): 57, 84, 129, (582,195,0): 58, 85, 130, (582,196,0): 58, 85, 132, (582,197,0): 57, 84, 131, (582,198,0): 56, 83, 130, (582,199,0): 55, 82, 129, (582,200,0): 56, 82, 131, (582,201,0): 55, 81, 130, (582,202,0): 53, 79, 130, (582,203,0): 52, 78, 129, (582,204,0): 52, 78, 129, (582,205,0): 53, 79, 130, (582,206,0): 55, 80, 134, (582,207,0): 55, 82, 137, (582,208,0): 54, 85, 140, (582,209,0): 53, 85, 142, (582,210,0): 54, 86, 143, (582,211,0): 54, 86, 143, (582,212,0): 55, 87, 146, (582,213,0): 55, 87, 146, (582,214,0): 55, 87, 146, (582,215,0): 56, 88, 147, (582,216,0): 56, 88, 149, (582,217,0): 56, 88, 149, (582,218,0): 57, 88, 152, (582,219,0): 57, 88, 152, (582,220,0): 58, 89, 153, (582,221,0): 58, 89, 153, (582,222,0): 58, 89, 154, (582,223,0): 57, 91, 155, (582,224,0): 56, 92, 154, (582,225,0): 57, 93, 155, (582,226,0): 59, 94, 158, (582,227,0): 60, 95, 159, (582,228,0): 58, 96, 161, (582,229,0): 58, 96, 161, (582,230,0): 57, 94, 162, (582,231,0): 56, 95, 164, (582,232,0): 58, 96, 167, (582,233,0): 57, 97, 167, (582,234,0): 58, 98, 170, (582,235,0): 59, 99, 171, (582,236,0): 60, 99, 174, (582,237,0): 61, 100, 175, (582,238,0): 60, 102, 178, (582,239,0): 60, 102, 178, (582,240,0): 63, 102, 179, (582,241,0): 64, 103, 178, (582,242,0): 64, 103, 178, (582,243,0): 65, 104, 179, (582,244,0): 66, 105, 182, (582,245,0): 67, 106, 183, (582,246,0): 68, 107, 184, (582,247,0): 69, 108, 185, (582,248,0): 68, 107, 186, (582,249,0): 68, 107, 186, (582,250,0): 69, 107, 188, (582,251,0): 70, 108, 189, (582,252,0): 72, 110, 191, (582,253,0): 73, 111, 192, (582,254,0): 74, 112, 195, (582,255,0): 72, 113, 193, (582,256,0): 74, 116, 192, (582,257,0): 72, 114, 188, (582,258,0): 74, 113, 190, (582,259,0): 78, 114, 190, (582,260,0): 84, 113, 189, (582,261,0): 87, 110, 180, (582,262,0): 88, 102, 163, (582,263,0): 93, 97, 145, (582,264,0): 75, 71, 106, (582,265,0): 64, 55, 76, (582,266,0): 50, 36, 49, (582,267,0): 48, 31, 37, (582,268,0): 52, 36, 37, (582,269,0): 56, 42, 42, (582,270,0): 50, 38, 40, (582,271,0): 45, 33, 37, (582,272,0): 44, 27, 35, (582,273,0): 43, 26, 36, (582,274,0): 41, 24, 34, (582,275,0): 37, 21, 31, (582,276,0): 33, 20, 29, (582,277,0): 30, 19, 27, (582,278,0): 28, 17, 25, (582,279,0): 27, 17, 25, (582,280,0): 29, 18, 26, (582,281,0): 29, 18, 26, (582,282,0): 30, 19, 27, (582,283,0): 33, 20, 29, (582,284,0): 36, 20, 30, (582,285,0): 39, 22, 32, (582,286,0): 40, 23, 33, (582,287,0): 42, 22, 33, (582,288,0): 44, 24, 33, (582,289,0): 44, 23, 32, (582,290,0): 42, 21, 30, (582,291,0): 39, 19, 28, (582,292,0): 38, 18, 27, (582,293,0): 38, 18, 27, (582,294,0): 36, 19, 27, (582,295,0): 37, 20, 28, (582,296,0): 31, 16, 23, (582,297,0): 29, 16, 23, (582,298,0): 29, 16, 23, (582,299,0): 28, 17, 23, (582,300,0): 28, 17, 23, (582,301,0): 27, 18, 23, (582,302,0): 28, 17, 23, (582,303,0): 28, 17, 23, (582,304,0): 29, 17, 27, (582,305,0): 29, 17, 27, (582,306,0): 28, 16, 26, (582,307,0): 27, 15, 25, (582,308,0): 26, 14, 24, (582,309,0): 26, 14, 24, (582,310,0): 25, 13, 23, (582,311,0): 25, 13, 23, (582,312,0): 22, 10, 20, (582,313,0): 21, 9, 19, (582,314,0): 21, 9, 19, (582,315,0): 20, 8, 18, (582,316,0): 20, 8, 18, (582,317,0): 19, 7, 17, (582,318,0): 19, 7, 17, (582,319,0): 19, 7, 17, (582,320,0): 17, 7, 16, (582,321,0): 17, 7, 16, (582,322,0): 17, 7, 16, (582,323,0): 17, 7, 16, (582,324,0): 17, 7, 16, (582,325,0): 17, 7, 16, (582,326,0): 17, 7, 16, (582,327,0): 17, 7, 16, (582,328,0): 17, 7, 16, (582,329,0): 17, 7, 16, (582,330,0): 17, 7, 16, (582,331,0): 16, 6, 15, (582,332,0): 16, 6, 15, (582,333,0): 15, 5, 14, (582,334,0): 15, 5, 14, (582,335,0): 14, 4, 13, (582,336,0): 12, 5, 13, (582,337,0): 12, 5, 13, (582,338,0): 12, 5, 13, (582,339,0): 11, 4, 12, (582,340,0): 11, 4, 12, (582,341,0): 10, 3, 11, (582,342,0): 10, 3, 11, (582,343,0): 9, 2, 10, (582,344,0): 7, 0, 8, (582,345,0): 7, 0, 8, (582,346,0): 7, 0, 8, (582,347,0): 7, 0, 8, (582,348,0): 7, 0, 8, (582,349,0): 7, 0, 8, (582,350,0): 7, 0, 8, (582,351,0): 7, 0, 8, (582,352,0): 7, 1, 11, (582,353,0): 7, 1, 11, (582,354,0): 7, 1, 11, (582,355,0): 7, 1, 11, (582,356,0): 7, 1, 11, (582,357,0): 7, 1, 11, (582,358,0): 7, 1, 11, (582,359,0): 7, 1, 11, (582,360,0): 7, 1, 11, (582,361,0): 7, 1, 11, (582,362,0): 7, 1, 11, (582,363,0): 7, 1, 11, (582,364,0): 7, 1, 11, (582,365,0): 7, 1, 11, (582,366,0): 7, 1, 11, (582,367,0): 7, 1, 11, (582,368,0): 9, 4, 11, (582,369,0): 9, 4, 11, (582,370,0): 9, 4, 11, (582,371,0): 9, 4, 11, (582,372,0): 9, 4, 11, (582,373,0): 9, 4, 11, (582,374,0): 9, 4, 11, (582,375,0): 9, 4, 11, (582,376,0): 9, 4, 11, (582,377,0): 9, 4, 11, (582,378,0): 9, 4, 11, (582,379,0): 10, 5, 12, (582,380,0): 10, 5, 12, (582,381,0): 11, 6, 13, (582,382,0): 11, 6, 13, (582,383,0): 13, 6, 13, (582,384,0): 15, 6, 11, (582,385,0): 16, 5, 9, (582,386,0): 16, 5, 9, (582,387,0): 16, 5, 9, (582,388,0): 16, 5, 9, (582,389,0): 16, 5, 9, (582,390,0): 17, 5, 9, (582,391,0): 17, 5, 9, (582,392,0): 20, 5, 10, (582,393,0): 20, 5, 10, (582,394,0): 21, 4, 10, (582,395,0): 21, 4, 10, (582,396,0): 21, 4, 10, (582,397,0): 21, 4, 10, (582,398,0): 21, 4, 10, (582,399,0): 20, 5, 8, (582,400,0): 18, 6, 8, (582,401,0): 18, 6, 6, (582,402,0): 19, 7, 7, (582,403,0): 19, 7, 7, (582,404,0): 22, 8, 8, (582,405,0): 22, 8, 8, (582,406,0): 24, 8, 9, (582,407,0): 24, 8, 9, (582,408,0): 23, 4, 6, (582,409,0): 24, 5, 7, (582,410,0): 28, 8, 10, (582,411,0): 30, 10, 12, (582,412,0): 32, 12, 14, (582,413,0): 33, 13, 15, (582,414,0): 34, 12, 15, (582,415,0): 34, 12, 15, (582,416,0): 33, 13, 15, (582,417,0): 32, 13, 15, (582,418,0): 34, 14, 16, (582,419,0): 35, 16, 18, (582,420,0): 36, 17, 19, (582,421,0): 37, 18, 20, (582,422,0): 38, 19, 21, (582,423,0): 38, 19, 21, (582,424,0): 37, 18, 20, (582,425,0): 35, 19, 20, (582,426,0): 34, 18, 19, (582,427,0): 34, 18, 19, (582,428,0): 36, 20, 21, (582,429,0): 38, 22, 23, (582,430,0): 40, 24, 25, (582,431,0): 42, 26, 27, (582,432,0): 42, 26, 27, (582,433,0): 42, 26, 27, (582,434,0): 41, 25, 26, (582,435,0): 40, 24, 25, (582,436,0): 39, 23, 24, (582,437,0): 38, 22, 23, (582,438,0): 37, 21, 22, (582,439,0): 37, 21, 22, (582,440,0): 36, 20, 21, (582,441,0): 35, 19, 20, (582,442,0): 34, 18, 19, (582,443,0): 33, 17, 18, (582,444,0): 32, 16, 17, (582,445,0): 31, 15, 16, (582,446,0): 30, 14, 15, (582,447,0): 29, 15, 15, (582,448,0): 26, 12, 12, (582,449,0): 24, 12, 12, (582,450,0): 23, 11, 13, (582,451,0): 22, 10, 12, (582,452,0): 21, 9, 11, (582,453,0): 19, 9, 10, (582,454,0): 18, 7, 11, (582,455,0): 17, 8, 11, (582,456,0): 14, 5, 10, (582,457,0): 15, 6, 11, (582,458,0): 14, 8, 12, (582,459,0): 14, 8, 12, (582,460,0): 14, 7, 14, (582,461,0): 12, 5, 12, (582,462,0): 10, 3, 10, (582,463,0): 9, 2, 9, (582,464,0): 12, 1, 9, (582,465,0): 13, 2, 10, (582,466,0): 13, 2, 10, (582,467,0): 14, 3, 11, (582,468,0): 15, 2, 9, (582,469,0): 16, 3, 10, (582,470,0): 16, 4, 8, (582,471,0): 16, 4, 8, (582,472,0): 17, 2, 7, (582,473,0): 17, 2, 7, (582,474,0): 18, 2, 5, (582,475,0): 18, 2, 5, (582,476,0): 18, 2, 3, (582,477,0): 18, 2, 3, (582,478,0): 20, 1, 3, (582,479,0): 20, 1, 3, (582,480,0): 20, 4, 5, (582,481,0): 19, 5, 5, (582,482,0): 19, 5, 5, (582,483,0): 19, 5, 5, (582,484,0): 19, 5, 5, (582,485,0): 18, 4, 4, (582,486,0): 18, 4, 4, (582,487,0): 18, 4, 4, (582,488,0): 20, 6, 6, (582,489,0): 18, 4, 4, (582,490,0): 17, 3, 3, (582,491,0): 19, 5, 5, (582,492,0): 23, 9, 9, (582,493,0): 25, 11, 11, (582,494,0): 24, 10, 10, (582,495,0): 23, 7, 8, (582,496,0): 27, 7, 9, (582,497,0): 27, 7, 9, (582,498,0): 28, 8, 10, (582,499,0): 28, 8, 10, (582,500,0): 28, 8, 10, (582,501,0): 28, 8, 10, (582,502,0): 28, 8, 10, (582,503,0): 28, 8, 10, (582,504,0): 27, 7, 9, (582,505,0): 27, 7, 9, (582,506,0): 26, 7, 9, (582,507,0): 26, 7, 9, (582,508,0): 26, 7, 9, (582,509,0): 26, 7, 9, (582,510,0): 26, 7, 9, (582,511,0): 24, 8, 9, (582,512,0): 22, 6, 9, (582,513,0): 23, 7, 10, (582,514,0): 23, 7, 10, (582,515,0): 24, 8, 11, (582,516,0): 26, 10, 13, (582,517,0): 27, 11, 14, (582,518,0): 27, 11, 14, (582,519,0): 28, 12, 15, (582,520,0): 30, 14, 17, (582,521,0): 30, 14, 17, (582,522,0): 28, 12, 15, (582,523,0): 27, 11, 14, (582,524,0): 25, 9, 12, (582,525,0): 23, 7, 10, (582,526,0): 22, 6, 9, (582,527,0): 21, 4, 10, (582,528,0): 21, 6, 13, (582,529,0): 20, 4, 14, (582,530,0): 18, 5, 14, (582,531,0): 17, 4, 13, (582,532,0): 15, 2, 11, (582,533,0): 14, 1, 10, (582,534,0): 13, 2, 10, (582,535,0): 12, 1, 9, (582,536,0): 11, 1, 9, (582,537,0): 11, 1, 9, (582,538,0): 11, 1, 9, (582,539,0): 11, 1, 9, (582,540,0): 9, 2, 9, (582,541,0): 9, 2, 9, (582,542,0): 9, 2, 9, (582,543,0): 9, 2, 9, (582,544,0): 9, 2, 9, (582,545,0): 9, 2, 9, (582,546,0): 9, 2, 9, (582,547,0): 9, 2, 9, (582,548,0): 9, 2, 9, (582,549,0): 9, 2, 9, (582,550,0): 11, 1, 9, (582,551,0): 11, 1, 9, (582,552,0): 13, 2, 10, (582,553,0): 13, 2, 10, (582,554,0): 14, 1, 10, (582,555,0): 15, 2, 11, (582,556,0): 15, 2, 11, (582,557,0): 16, 3, 12, (582,558,0): 16, 3, 12, (582,559,0): 16, 3, 12, (582,560,0): 17, 6, 12, (582,561,0): 17, 6, 10, (582,562,0): 18, 7, 11, (582,563,0): 19, 8, 12, (582,564,0): 20, 9, 13, (582,565,0): 20, 9, 13, (582,566,0): 21, 10, 14, (582,567,0): 21, 10, 14, (582,568,0): 23, 12, 16, (582,569,0): 23, 12, 16, (582,570,0): 25, 14, 18, (582,571,0): 26, 15, 19, (582,572,0): 29, 18, 22, (582,573,0): 31, 20, 24, (582,574,0): 33, 22, 26, (582,575,0): 35, 23, 27, (582,576,0): 38, 23, 26, (582,577,0): 40, 24, 25, (582,578,0): 40, 24, 25, (582,579,0): 41, 25, 26, (582,580,0): 40, 24, 25, (582,581,0): 39, 23, 24, (582,582,0): 36, 22, 22, (582,583,0): 35, 21, 21, (582,584,0): 34, 22, 22, (582,585,0): 34, 22, 22, (582,586,0): 33, 23, 22, (582,587,0): 34, 24, 23, (582,588,0): 34, 24, 23, (582,589,0): 35, 25, 24, (582,590,0): 35, 25, 24, (582,591,0): 35, 27, 25, (582,592,0): 31, 26, 23, (582,593,0): 30, 26, 23, (582,594,0): 31, 27, 24, (582,595,0): 32, 28, 25, (582,596,0): 32, 28, 25, (582,597,0): 31, 27, 24, (582,598,0): 30, 26, 23, (582,599,0): 29, 25, 22, (583,0,0): 31, 54, 68, (583,1,0): 31, 54, 68, (583,2,0): 31, 54, 68, (583,3,0): 31, 54, 68, (583,4,0): 31, 54, 68, (583,5,0): 31, 54, 68, (583,6,0): 31, 54, 68, (583,7,0): 31, 54, 68, (583,8,0): 32, 55, 69, (583,9,0): 32, 55, 69, (583,10,0): 32, 55, 69, (583,11,0): 32, 55, 69, (583,12,0): 32, 55, 69, (583,13,0): 32, 55, 69, (583,14,0): 32, 55, 69, (583,15,0): 32, 55, 69, (583,16,0): 38, 57, 71, (583,17,0): 37, 56, 70, (583,18,0): 36, 55, 69, (583,19,0): 35, 54, 68, (583,20,0): 35, 54, 68, (583,21,0): 36, 55, 69, (583,22,0): 37, 56, 70, (583,23,0): 38, 57, 71, (583,24,0): 37, 56, 70, (583,25,0): 37, 56, 70, (583,26,0): 37, 56, 70, (583,27,0): 37, 56, 70, (583,28,0): 37, 56, 70, (583,29,0): 37, 56, 70, (583,30,0): 37, 56, 70, (583,31,0): 37, 56, 70, (583,32,0): 39, 57, 71, (583,33,0): 39, 57, 71, (583,34,0): 40, 58, 72, (583,35,0): 40, 58, 72, (583,36,0): 42, 58, 71, (583,37,0): 42, 58, 71, (583,38,0): 46, 58, 72, (583,39,0): 46, 58, 72, (583,40,0): 51, 61, 73, (583,41,0): 51, 61, 73, (583,42,0): 54, 60, 72, (583,43,0): 54, 60, 72, (583,44,0): 57, 61, 73, (583,45,0): 57, 61, 73, (583,46,0): 58, 62, 73, (583,47,0): 58, 62, 73, (583,48,0): 61, 63, 78, (583,49,0): 63, 62, 78, (583,50,0): 63, 62, 78, (583,51,0): 64, 63, 79, (583,52,0): 64, 63, 79, (583,53,0): 65, 64, 80, (583,54,0): 65, 64, 80, (583,55,0): 65, 64, 80, (583,56,0): 67, 66, 82, (583,57,0): 67, 66, 82, (583,58,0): 67, 66, 82, (583,59,0): 67, 66, 82, (583,60,0): 67, 66, 82, (583,61,0): 67, 66, 82, (583,62,0): 67, 66, 82, (583,63,0): 67, 66, 82, (583,64,0): 68, 65, 82, (583,65,0): 68, 65, 82, (583,66,0): 68, 65, 82, (583,67,0): 68, 65, 82, (583,68,0): 68, 65, 82, (583,69,0): 68, 65, 82, (583,70,0): 68, 65, 82, (583,71,0): 68, 65, 82, (583,72,0): 68, 65, 82, (583,73,0): 68, 65, 82, (583,74,0): 68, 65, 82, (583,75,0): 68, 65, 82, (583,76,0): 68, 65, 82, (583,77,0): 68, 65, 82, (583,78,0): 68, 65, 82, (583,79,0): 68, 65, 82, (583,80,0): 67, 65, 86, (583,81,0): 67, 65, 86, (583,82,0): 65, 66, 86, (583,83,0): 65, 66, 86, (583,84,0): 65, 66, 86, (583,85,0): 65, 66, 86, (583,86,0): 64, 67, 86, (583,87,0): 64, 67, 86, (583,88,0): 64, 69, 88, (583,89,0): 64, 69, 88, (583,90,0): 64, 69, 88, (583,91,0): 64, 69, 88, (583,92,0): 63, 70, 88, (583,93,0): 63, 70, 88, (583,94,0): 63, 70, 88, (583,95,0): 63, 70, 88, (583,96,0): 60, 68, 87, (583,97,0): 60, 68, 87, (583,98,0): 60, 68, 87, (583,99,0): 60, 68, 87, (583,100,0): 60, 68, 87, (583,101,0): 60, 68, 87, (583,102,0): 60, 68, 87, (583,103,0): 60, 68, 87, (583,104,0): 60, 68, 87, (583,105,0): 60, 68, 87, (583,106,0): 60, 68, 87, (583,107,0): 60, 68, 87, (583,108,0): 60, 68, 87, (583,109,0): 60, 68, 87, (583,110,0): 60, 68, 87, (583,111,0): 58, 69, 87, (583,112,0): 60, 73, 90, (583,113,0): 60, 73, 90, (583,114,0): 60, 73, 90, (583,115,0): 60, 73, 90, (583,116,0): 61, 72, 90, (583,117,0): 61, 72, 90, (583,118,0): 63, 72, 89, (583,119,0): 63, 72, 89, (583,120,0): 65, 72, 90, (583,121,0): 66, 72, 88, (583,122,0): 68, 71, 88, (583,123,0): 67, 70, 87, (583,124,0): 67, 70, 87, (583,125,0): 68, 70, 85, (583,126,0): 68, 69, 87, (583,127,0): 69, 68, 84, (583,128,0): 75, 71, 88, (583,129,0): 77, 68, 85, (583,130,0): 78, 67, 83, (583,131,0): 79, 67, 81, (583,132,0): 81, 68, 78, (583,133,0): 85, 70, 77, (583,134,0): 88, 71, 77, (583,135,0): 89, 72, 78, (583,136,0): 92, 77, 84, (583,137,0): 90, 79, 87, (583,138,0): 88, 80, 91, (583,139,0): 84, 82, 96, (583,140,0): 80, 81, 99, (583,141,0): 74, 80, 102, (583,142,0): 68, 79, 101, (583,143,0): 64, 79, 102, (583,144,0): 64, 80, 105, (583,145,0): 63, 81, 105, (583,146,0): 64, 80, 106, (583,147,0): 63, 80, 106, (583,148,0): 63, 80, 108, (583,149,0): 60, 80, 107, (583,150,0): 59, 78, 108, (583,151,0): 57, 78, 109, (583,152,0): 58, 78, 111, (583,153,0): 58, 78, 111, (583,154,0): 56, 79, 113, (583,155,0): 56, 79, 113, (583,156,0): 55, 79, 115, (583,157,0): 55, 79, 115, (583,158,0): 55, 79, 117, (583,159,0): 55, 79, 117, (583,160,0): 54, 80, 117, (583,161,0): 54, 80, 115, (583,162,0): 54, 80, 115, (583,163,0): 54, 80, 115, (583,164,0): 54, 80, 117, (583,165,0): 54, 80, 117, (583,166,0): 54, 79, 119, (583,167,0): 54, 79, 119, (583,168,0): 54, 79, 119, (583,169,0): 54, 79, 119, (583,170,0): 54, 79, 120, (583,171,0): 54, 79, 120, (583,172,0): 54, 78, 122, (583,173,0): 54, 78, 122, (583,174,0): 54, 78, 122, (583,175,0): 54, 78, 122, (583,176,0): 55, 79, 123, (583,177,0): 55, 79, 123, (583,178,0): 55, 79, 123, (583,179,0): 55, 79, 123, (583,180,0): 55, 79, 123, (583,181,0): 55, 79, 123, (583,182,0): 55, 79, 123, (583,183,0): 55, 79, 123, (583,184,0): 55, 79, 123, (583,185,0): 55, 79, 123, (583,186,0): 56, 80, 124, (583,187,0): 57, 81, 125, (583,188,0): 59, 83, 127, (583,189,0): 60, 84, 128, (583,190,0): 61, 85, 129, (583,191,0): 60, 87, 130, (583,192,0): 55, 82, 127, (583,193,0): 56, 83, 128, (583,194,0): 57, 84, 129, (583,195,0): 58, 85, 130, (583,196,0): 58, 85, 132, (583,197,0): 57, 84, 131, (583,198,0): 56, 83, 130, (583,199,0): 55, 82, 129, (583,200,0): 55, 81, 130, (583,201,0): 54, 80, 129, (583,202,0): 52, 78, 129, (583,203,0): 51, 77, 128, (583,204,0): 51, 77, 128, (583,205,0): 52, 78, 129, (583,206,0): 54, 79, 133, (583,207,0): 54, 81, 136, (583,208,0): 54, 85, 140, (583,209,0): 53, 85, 142, (583,210,0): 53, 85, 142, (583,211,0): 54, 86, 143, (583,212,0): 54, 86, 145, (583,213,0): 55, 87, 146, (583,214,0): 55, 87, 146, (583,215,0): 56, 88, 147, (583,216,0): 56, 88, 149, (583,217,0): 56, 88, 149, (583,218,0): 56, 87, 151, (583,219,0): 57, 88, 152, (583,220,0): 57, 88, 152, (583,221,0): 58, 89, 153, (583,222,0): 58, 89, 154, (583,223,0): 59, 90, 155, (583,224,0): 57, 91, 154, (583,225,0): 57, 93, 155, (583,226,0): 58, 93, 157, (583,227,0): 60, 95, 159, (583,228,0): 60, 95, 161, (583,229,0): 58, 96, 161, (583,230,0): 57, 94, 162, (583,231,0): 57, 94, 162, (583,232,0): 57, 96, 165, (583,233,0): 58, 96, 167, (583,234,0): 59, 97, 170, (583,235,0): 59, 99, 171, (583,236,0): 60, 99, 174, (583,237,0): 61, 100, 175, (583,238,0): 60, 102, 178, (583,239,0): 60, 102, 176, (583,240,0): 64, 103, 178, (583,241,0): 64, 103, 178, (583,242,0): 65, 104, 179, (583,243,0): 66, 105, 180, (583,244,0): 67, 106, 183, (583,245,0): 68, 107, 184, (583,246,0): 69, 108, 185, (583,247,0): 69, 108, 185, (583,248,0): 67, 106, 185, (583,249,0): 68, 107, 186, (583,250,0): 69, 107, 188, (583,251,0): 70, 108, 189, (583,252,0): 72, 110, 191, (583,253,0): 73, 111, 192, (583,254,0): 74, 112, 195, (583,255,0): 73, 114, 194, (583,256,0): 77, 119, 195, (583,257,0): 75, 117, 191, (583,258,0): 76, 115, 192, (583,259,0): 78, 114, 190, (583,260,0): 84, 112, 186, (583,261,0): 86, 106, 175, (583,262,0): 87, 97, 158, (583,263,0): 88, 90, 138, (583,264,0): 71, 64, 97, (583,265,0): 62, 49, 69, (583,266,0): 49, 33, 43, (583,267,0): 46, 30, 33, (583,268,0): 52, 36, 37, (583,269,0): 55, 41, 41, (583,270,0): 49, 37, 41, (583,271,0): 43, 30, 37, (583,272,0): 39, 23, 33, (583,273,0): 39, 22, 32, (583,274,0): 37, 21, 31, (583,275,0): 32, 19, 28, (583,276,0): 30, 17, 26, (583,277,0): 28, 17, 25, (583,278,0): 28, 18, 26, (583,279,0): 29, 19, 27, (583,280,0): 26, 16, 24, (583,281,0): 27, 17, 25, (583,282,0): 28, 17, 25, (583,283,0): 29, 18, 26, (583,284,0): 34, 18, 28, (583,285,0): 35, 19, 29, (583,286,0): 36, 19, 29, (583,287,0): 37, 20, 30, (583,288,0): 42, 22, 31, (583,289,0): 42, 21, 30, (583,290,0): 41, 20, 29, (583,291,0): 38, 18, 27, (583,292,0): 38, 18, 27, (583,293,0): 36, 19, 27, (583,294,0): 36, 19, 27, (583,295,0): 36, 21, 28, (583,296,0): 28, 15, 22, (583,297,0): 27, 16, 22, (583,298,0): 27, 16, 22, (583,299,0): 26, 17, 22, (583,300,0): 26, 17, 22, (583,301,0): 26, 17, 22, (583,302,0): 26, 17, 22, (583,303,0): 26, 16, 24, (583,304,0): 26, 14, 24, (583,305,0): 26, 14, 24, (583,306,0): 25, 13, 23, (583,307,0): 24, 12, 22, (583,308,0): 24, 12, 22, (583,309,0): 23, 11, 21, (583,310,0): 22, 10, 20, (583,311,0): 22, 10, 20, (583,312,0): 21, 9, 19, (583,313,0): 21, 9, 19, (583,314,0): 21, 9, 19, (583,315,0): 20, 8, 18, (583,316,0): 19, 7, 17, (583,317,0): 19, 7, 17, (583,318,0): 19, 7, 17, (583,319,0): 18, 6, 16, (583,320,0): 17, 7, 16, (583,321,0): 17, 7, 16, (583,322,0): 17, 7, 16, (583,323,0): 17, 7, 16, (583,324,0): 17, 7, 16, (583,325,0): 17, 7, 16, (583,326,0): 17, 7, 16, (583,327,0): 17, 7, 16, (583,328,0): 17, 7, 16, (583,329,0): 17, 7, 16, (583,330,0): 16, 6, 15, (583,331,0): 16, 6, 15, (583,332,0): 15, 5, 14, (583,333,0): 15, 5, 14, (583,334,0): 14, 4, 13, (583,335,0): 14, 4, 13, (583,336,0): 12, 5, 13, (583,337,0): 12, 5, 13, (583,338,0): 11, 4, 12, (583,339,0): 11, 4, 12, (583,340,0): 10, 3, 11, (583,341,0): 10, 3, 11, (583,342,0): 9, 2, 10, (583,343,0): 9, 2, 10, (583,344,0): 6, 0, 7, (583,345,0): 6, 0, 7, (583,346,0): 6, 0, 7, (583,347,0): 6, 0, 7, (583,348,0): 6, 0, 7, (583,349,0): 6, 0, 7, (583,350,0): 6, 0, 7, (583,351,0): 6, 0, 7, (583,352,0): 8, 2, 12, (583,353,0): 8, 2, 12, (583,354,0): 8, 2, 12, (583,355,0): 8, 2, 12, (583,356,0): 8, 2, 12, (583,357,0): 8, 2, 12, (583,358,0): 8, 2, 12, (583,359,0): 8, 2, 12, (583,360,0): 8, 2, 12, (583,361,0): 8, 2, 12, (583,362,0): 8, 2, 12, (583,363,0): 8, 2, 12, (583,364,0): 8, 2, 12, (583,365,0): 8, 2, 12, (583,366,0): 8, 2, 12, (583,367,0): 8, 2, 12, (583,368,0): 9, 4, 11, (583,369,0): 9, 4, 11, (583,370,0): 9, 4, 11, (583,371,0): 9, 4, 11, (583,372,0): 9, 4, 11, (583,373,0): 9, 4, 11, (583,374,0): 9, 4, 11, (583,375,0): 9, 4, 11, (583,376,0): 8, 3, 10, (583,377,0): 8, 3, 10, (583,378,0): 9, 4, 11, (583,379,0): 9, 4, 11, (583,380,0): 10, 5, 12, (583,381,0): 10, 5, 12, (583,382,0): 11, 6, 13, (583,383,0): 12, 5, 12, (583,384,0): 14, 5, 10, (583,385,0): 15, 4, 8, (583,386,0): 15, 4, 8, (583,387,0): 15, 4, 8, (583,388,0): 15, 4, 8, (583,389,0): 15, 4, 8, (583,390,0): 16, 4, 8, (583,391,0): 16, 4, 8, (583,392,0): 20, 5, 10, (583,393,0): 20, 5, 10, (583,394,0): 21, 4, 10, (583,395,0): 21, 4, 10, (583,396,0): 21, 4, 10, (583,397,0): 21, 4, 10, (583,398,0): 21, 4, 10, (583,399,0): 21, 5, 8, (583,400,0): 20, 5, 8, (583,401,0): 18, 6, 6, (583,402,0): 18, 6, 6, (583,403,0): 19, 7, 7, (583,404,0): 21, 7, 7, (583,405,0): 22, 8, 8, (583,406,0): 23, 7, 8, (583,407,0): 24, 8, 9, (583,408,0): 21, 2, 4, (583,409,0): 23, 4, 6, (583,410,0): 26, 6, 8, (583,411,0): 29, 9, 11, (583,412,0): 31, 11, 13, (583,413,0): 32, 12, 14, (583,414,0): 32, 12, 14, (583,415,0): 32, 12, 14, (583,416,0): 31, 12, 14, (583,417,0): 30, 14, 15, (583,418,0): 33, 14, 16, (583,419,0): 32, 16, 17, (583,420,0): 35, 16, 18, (583,421,0): 37, 18, 20, (583,422,0): 38, 19, 21, (583,423,0): 38, 19, 21, (583,424,0): 34, 18, 19, (583,425,0): 34, 18, 19, (583,426,0): 33, 17, 18, (583,427,0): 33, 17, 18, (583,428,0): 34, 18, 19, (583,429,0): 37, 21, 22, (583,430,0): 40, 24, 25, (583,431,0): 41, 25, 26, (583,432,0): 43, 27, 28, (583,433,0): 42, 26, 27, (583,434,0): 41, 25, 26, (583,435,0): 40, 24, 25, (583,436,0): 39, 23, 24, (583,437,0): 38, 22, 23, (583,438,0): 37, 21, 22, (583,439,0): 37, 21, 22, (583,440,0): 35, 19, 20, (583,441,0): 35, 19, 20, (583,442,0): 34, 18, 19, (583,443,0): 33, 17, 18, (583,444,0): 32, 16, 17, (583,445,0): 31, 15, 16, (583,446,0): 30, 14, 15, (583,447,0): 30, 14, 15, (583,448,0): 27, 13, 13, (583,449,0): 24, 12, 12, (583,450,0): 23, 11, 13, (583,451,0): 22, 10, 12, (583,452,0): 21, 9, 11, (583,453,0): 20, 8, 10, (583,454,0): 19, 8, 12, (583,455,0): 18, 7, 11, (583,456,0): 15, 4, 10, (583,457,0): 15, 6, 11, (583,458,0): 16, 7, 12, (583,459,0): 15, 9, 13, (583,460,0): 15, 8, 15, (583,461,0): 14, 7, 14, (583,462,0): 12, 5, 12, (583,463,0): 10, 3, 10, (583,464,0): 11, 1, 9, (583,465,0): 12, 1, 9, (583,466,0): 13, 2, 10, (583,467,0): 13, 2, 10, (583,468,0): 15, 2, 9, (583,469,0): 15, 2, 9, (583,470,0): 16, 4, 8, (583,471,0): 16, 4, 8, (583,472,0): 17, 2, 7, (583,473,0): 17, 2, 7, (583,474,0): 18, 2, 5, (583,475,0): 18, 2, 5, (583,476,0): 18, 2, 3, (583,477,0): 18, 2, 3, (583,478,0): 20, 1, 3, (583,479,0): 18, 2, 3, (583,480,0): 19, 5, 5, (583,481,0): 19, 5, 5, (583,482,0): 19, 5, 5, (583,483,0): 18, 4, 4, (583,484,0): 18, 4, 4, (583,485,0): 18, 4, 4, (583,486,0): 18, 4, 4, (583,487,0): 17, 3, 3, (583,488,0): 19, 5, 5, (583,489,0): 17, 3, 3, (583,490,0): 16, 2, 2, (583,491,0): 18, 4, 4, (583,492,0): 22, 8, 8, (583,493,0): 24, 10, 10, (583,494,0): 23, 9, 9, (583,495,0): 20, 6, 6, (583,496,0): 25, 6, 8, (583,497,0): 26, 6, 8, (583,498,0): 26, 6, 8, (583,499,0): 27, 7, 9, (583,500,0): 27, 7, 9, (583,501,0): 27, 7, 9, (583,502,0): 27, 7, 9, (583,503,0): 28, 8, 10, (583,504,0): 27, 7, 9, (583,505,0): 27, 7, 9, (583,506,0): 26, 7, 9, (583,507,0): 26, 7, 9, (583,508,0): 26, 7, 9, (583,509,0): 26, 7, 9, (583,510,0): 26, 7, 9, (583,511,0): 26, 7, 9, (583,512,0): 24, 5, 9, (583,513,0): 23, 7, 10, (583,514,0): 23, 7, 10, (583,515,0): 24, 8, 11, (583,516,0): 26, 10, 13, (583,517,0): 27, 11, 14, (583,518,0): 27, 11, 14, (583,519,0): 28, 12, 15, (583,520,0): 31, 15, 18, (583,521,0): 30, 14, 17, (583,522,0): 29, 13, 16, (583,523,0): 27, 11, 14, (583,524,0): 25, 9, 12, (583,525,0): 23, 7, 10, (583,526,0): 22, 6, 9, (583,527,0): 21, 4, 10, (583,528,0): 21, 6, 13, (583,529,0): 20, 4, 14, (583,530,0): 18, 5, 14, (583,531,0): 17, 4, 13, (583,532,0): 15, 2, 11, (583,533,0): 14, 1, 10, (583,534,0): 13, 2, 10, (583,535,0): 12, 1, 9, (583,536,0): 11, 1, 9, (583,537,0): 11, 1, 9, (583,538,0): 11, 1, 9, (583,539,0): 11, 1, 9, (583,540,0): 9, 2, 9, (583,541,0): 9, 2, 9, (583,542,0): 9, 2, 9, (583,543,0): 9, 2, 9, (583,544,0): 9, 2, 9, (583,545,0): 9, 2, 9, (583,546,0): 9, 2, 9, (583,547,0): 9, 2, 9, (583,548,0): 9, 2, 9, (583,549,0): 9, 2, 9, (583,550,0): 11, 1, 9, (583,551,0): 11, 1, 9, (583,552,0): 13, 2, 10, (583,553,0): 14, 3, 11, (583,554,0): 15, 2, 11, (583,555,0): 16, 3, 12, (583,556,0): 16, 3, 12, (583,557,0): 17, 4, 13, (583,558,0): 17, 4, 13, (583,559,0): 17, 4, 11, (583,560,0): 16, 5, 9, (583,561,0): 16, 5, 9, (583,562,0): 17, 6, 10, (583,563,0): 19, 8, 12, (583,564,0): 20, 9, 13, (583,565,0): 21, 10, 14, (583,566,0): 22, 11, 15, (583,567,0): 23, 12, 16, (583,568,0): 24, 13, 17, (583,569,0): 24, 13, 17, (583,570,0): 25, 14, 18, (583,571,0): 27, 16, 20, (583,572,0): 29, 18, 22, (583,573,0): 31, 20, 24, (583,574,0): 33, 22, 26, (583,575,0): 36, 24, 26, (583,576,0): 38, 23, 26, (583,577,0): 39, 23, 24, (583,578,0): 40, 24, 25, (583,579,0): 40, 24, 25, (583,580,0): 40, 24, 25, (583,581,0): 38, 22, 23, (583,582,0): 36, 22, 22, (583,583,0): 35, 21, 21, (583,584,0): 34, 22, 22, (583,585,0): 34, 22, 22, (583,586,0): 34, 24, 23, (583,587,0): 34, 24, 23, (583,588,0): 35, 25, 24, (583,589,0): 35, 25, 24, (583,590,0): 36, 26, 25, (583,591,0): 35, 27, 25, (583,592,0): 28, 23, 20, (583,593,0): 28, 24, 21, (583,594,0): 30, 26, 23, (583,595,0): 31, 27, 24, (583,596,0): 32, 28, 25, (583,597,0): 32, 28, 25, (583,598,0): 32, 28, 25, (583,599,0): 31, 27, 24, (584,0,0): 31, 54, 68, (584,1,0): 31, 54, 68, (584,2,0): 31, 54, 68, (584,3,0): 31, 54, 68, (584,4,0): 31, 54, 68, (584,5,0): 31, 54, 68, (584,6,0): 31, 54, 68, (584,7,0): 31, 54, 68, (584,8,0): 32, 55, 69, (584,9,0): 32, 55, 69, (584,10,0): 33, 56, 70, (584,11,0): 33, 56, 70, (584,12,0): 34, 57, 71, (584,13,0): 34, 57, 71, (584,14,0): 35, 58, 72, (584,15,0): 35, 58, 72, (584,16,0): 38, 57, 71, (584,17,0): 38, 57, 71, (584,18,0): 38, 57, 71, (584,19,0): 38, 57, 71, (584,20,0): 38, 57, 71, (584,21,0): 38, 57, 71, (584,22,0): 38, 57, 71, (584,23,0): 38, 57, 71, (584,24,0): 38, 57, 71, (584,25,0): 37, 56, 70, (584,26,0): 37, 56, 70, (584,27,0): 36, 55, 69, (584,28,0): 37, 56, 70, (584,29,0): 38, 57, 71, (584,30,0): 40, 59, 73, (584,31,0): 41, 60, 74, (584,32,0): 39, 57, 71, (584,33,0): 39, 57, 71, (584,34,0): 40, 58, 72, (584,35,0): 40, 58, 72, (584,36,0): 42, 58, 71, (584,37,0): 42, 58, 71, (584,38,0): 46, 58, 72, (584,39,0): 46, 58, 72, (584,40,0): 51, 61, 73, (584,41,0): 51, 61, 73, (584,42,0): 54, 60, 72, (584,43,0): 54, 60, 72, (584,44,0): 57, 61, 73, (584,45,0): 57, 61, 73, (584,46,0): 58, 62, 73, (584,47,0): 58, 62, 73, (584,48,0): 58, 60, 75, (584,49,0): 58, 60, 75, (584,50,0): 58, 60, 75, (584,51,0): 59, 61, 76, (584,52,0): 59, 61, 76, (584,53,0): 60, 62, 77, (584,54,0): 60, 62, 77, (584,55,0): 60, 62, 77, (584,56,0): 62, 64, 79, (584,57,0): 62, 64, 79, (584,58,0): 63, 65, 80, (584,59,0): 63, 65, 80, (584,60,0): 64, 66, 81, (584,61,0): 64, 66, 81, (584,62,0): 65, 67, 82, (584,63,0): 67, 66, 82, (584,64,0): 67, 64, 81, (584,65,0): 67, 64, 81, (584,66,0): 67, 64, 81, (584,67,0): 68, 65, 82, (584,68,0): 68, 65, 82, (584,69,0): 69, 66, 83, (584,70,0): 69, 66, 83, (584,71,0): 69, 66, 83, (584,72,0): 70, 67, 84, (584,73,0): 70, 67, 84, (584,74,0): 70, 67, 84, (584,75,0): 70, 67, 84, (584,76,0): 70, 67, 84, (584,77,0): 70, 67, 84, (584,78,0): 70, 67, 84, (584,79,0): 70, 67, 84, (584,80,0): 66, 64, 85, (584,81,0): 66, 64, 85, (584,82,0): 65, 66, 86, (584,83,0): 65, 66, 86, (584,84,0): 65, 66, 86, (584,85,0): 65, 66, 86, (584,86,0): 65, 68, 87, (584,87,0): 65, 68, 87, (584,88,0): 61, 66, 85, (584,89,0): 61, 66, 85, (584,90,0): 62, 67, 86, (584,91,0): 62, 67, 86, (584,92,0): 61, 68, 86, (584,93,0): 61, 68, 86, (584,94,0): 61, 68, 86, (584,95,0): 62, 69, 87, (584,96,0): 60, 68, 87, (584,97,0): 60, 68, 87, (584,98,0): 60, 68, 87, (584,99,0): 60, 68, 87, (584,100,0): 60, 68, 87, (584,101,0): 60, 68, 87, (584,102,0): 60, 68, 87, (584,103,0): 60, 68, 87, (584,104,0): 60, 68, 87, (584,105,0): 60, 68, 87, (584,106,0): 60, 68, 87, (584,107,0): 60, 68, 87, (584,108,0): 60, 68, 87, (584,109,0): 60, 68, 87, (584,110,0): 60, 68, 87, (584,111,0): 58, 69, 87, (584,112,0): 57, 70, 89, (584,113,0): 55, 70, 89, (584,114,0): 58, 71, 90, (584,115,0): 58, 71, 90, (584,116,0): 60, 71, 89, (584,117,0): 60, 71, 89, (584,118,0): 63, 72, 89, (584,119,0): 64, 71, 89, (584,120,0): 61, 67, 83, (584,121,0): 62, 68, 84, (584,122,0): 64, 67, 84, (584,123,0): 66, 68, 83, (584,124,0): 67, 69, 84, (584,125,0): 70, 69, 83, (584,126,0): 70, 69, 85, (584,127,0): 71, 69, 83, (584,128,0): 72, 65, 81, (584,129,0): 73, 65, 80, (584,130,0): 76, 65, 79, (584,131,0): 78, 66, 78, (584,132,0): 81, 68, 77, (584,133,0): 85, 70, 77, (584,134,0): 88, 71, 77, (584,135,0): 89, 72, 78, (584,136,0): 93, 80, 87, (584,137,0): 90, 80, 89, (584,138,0): 83, 80, 91, (584,139,0): 78, 80, 95, (584,140,0): 73, 78, 98, (584,141,0): 67, 78, 100, (584,142,0): 62, 76, 102, (584,143,0): 61, 77, 103, (584,144,0): 60, 77, 103, (584,145,0): 58, 78, 103, (584,146,0): 60, 77, 105, (584,147,0): 58, 78, 105, (584,148,0): 58, 77, 107, (584,149,0): 57, 78, 107, (584,150,0): 57, 78, 109, (584,151,0): 57, 78, 109, (584,152,0): 57, 77, 110, (584,153,0): 55, 78, 112, (584,154,0): 55, 77, 114, (584,155,0): 55, 77, 114, (584,156,0): 55, 77, 116, (584,157,0): 55, 77, 116, (584,158,0): 54, 77, 118, (584,159,0): 54, 78, 116, (584,160,0): 53, 79, 116, (584,161,0): 51, 79, 116, (584,162,0): 51, 79, 116, (584,163,0): 51, 79, 116, (584,164,0): 51, 79, 118, (584,165,0): 51, 79, 118, (584,166,0): 51, 79, 118, (584,167,0): 51, 79, 118, (584,168,0): 48, 76, 116, (584,169,0): 49, 77, 117, (584,170,0): 49, 76, 119, (584,171,0): 50, 77, 120, (584,172,0): 50, 77, 120, (584,173,0): 51, 78, 121, (584,174,0): 51, 78, 123, (584,175,0): 51, 78, 123, (584,176,0): 50, 77, 120, (584,177,0): 50, 77, 120, (584,178,0): 50, 77, 120, (584,179,0): 50, 77, 120, (584,180,0): 50, 77, 120, (584,181,0): 50, 77, 120, (584,182,0): 50, 77, 120, (584,183,0): 50, 77, 120, (584,184,0): 51, 78, 121, (584,185,0): 52, 79, 122, (584,186,0): 52, 79, 122, (584,187,0): 53, 80, 123, (584,188,0): 53, 80, 123, (584,189,0): 54, 81, 124, (584,190,0): 54, 81, 124, (584,191,0): 54, 81, 124, (584,192,0): 54, 81, 126, (584,193,0): 53, 81, 128, (584,194,0): 53, 81, 128, (584,195,0): 53, 81, 128, (584,196,0): 53, 81, 129, (584,197,0): 53, 81, 129, (584,198,0): 53, 81, 129, (584,199,0): 53, 81, 129, (584,200,0): 52, 80, 130, (584,201,0): 52, 80, 130, (584,202,0): 52, 79, 132, (584,203,0): 52, 79, 132, (584,204,0): 52, 79, 132, (584,205,0): 52, 79, 132, (584,206,0): 52, 79, 134, (584,207,0): 50, 80, 134, (584,208,0): 52, 83, 138, (584,209,0): 51, 83, 140, (584,210,0): 52, 84, 141, (584,211,0): 52, 84, 141, (584,212,0): 53, 85, 144, (584,213,0): 53, 85, 144, (584,214,0): 54, 86, 145, (584,215,0): 54, 86, 145, (584,216,0): 56, 88, 149, (584,217,0): 56, 88, 149, (584,218,0): 56, 87, 151, (584,219,0): 57, 88, 152, (584,220,0): 57, 88, 152, (584,221,0): 58, 89, 153, (584,222,0): 58, 89, 154, (584,223,0): 58, 89, 154, (584,224,0): 57, 91, 154, (584,225,0): 57, 91, 152, (584,226,0): 57, 91, 154, (584,227,0): 57, 93, 155, (584,228,0): 57, 92, 156, (584,229,0): 58, 93, 157, (584,230,0): 56, 94, 159, (584,231,0): 56, 93, 161, (584,232,0): 57, 94, 164, (584,233,0): 56, 95, 164, (584,234,0): 57, 95, 166, (584,235,0): 58, 96, 167, (584,236,0): 58, 98, 170, (584,237,0): 59, 99, 171, (584,238,0): 60, 99, 174, (584,239,0): 60, 99, 174, (584,240,0): 62, 101, 176, (584,241,0): 63, 103, 175, (584,242,0): 63, 102, 177, (584,243,0): 64, 103, 178, (584,244,0): 66, 105, 180, (584,245,0): 67, 106, 181, (584,246,0): 67, 106, 183, (584,247,0): 68, 107, 184, (584,248,0): 67, 106, 185, (584,249,0): 67, 106, 185, (584,250,0): 68, 107, 186, (584,251,0): 69, 108, 187, (584,252,0): 70, 108, 189, (584,253,0): 71, 109, 190, (584,254,0): 72, 110, 191, (584,255,0): 70, 111, 190, (584,256,0): 73, 115, 191, (584,257,0): 74, 116, 190, (584,258,0): 75, 114, 189, (584,259,0): 78, 112, 186, (584,260,0): 86, 112, 186, (584,261,0): 90, 109, 175, (584,262,0): 83, 92, 149, (584,263,0): 74, 73, 117, (584,264,0): 59, 50, 81, (584,265,0): 58, 43, 62, (584,266,0): 54, 37, 47, (584,267,0): 51, 32, 36, (584,268,0): 50, 31, 35, (584,269,0): 47, 30, 36, (584,270,0): 42, 29, 38, (584,271,0): 41, 28, 38, (584,272,0): 37, 21, 31, (584,273,0): 38, 21, 31, (584,274,0): 35, 19, 29, (584,275,0): 32, 19, 28, (584,276,0): 30, 17, 26, (584,277,0): 28, 17, 25, (584,278,0): 26, 16, 24, (584,279,0): 25, 15, 23, (584,280,0): 27, 17, 25, (584,281,0): 27, 17, 25, (584,282,0): 29, 18, 26, (584,283,0): 29, 18, 26, (584,284,0): 33, 17, 27, (584,285,0): 34, 18, 28, (584,286,0): 36, 19, 29, (584,287,0): 36, 19, 29, (584,288,0): 36, 16, 27, (584,289,0): 36, 16, 27, (584,290,0): 36, 16, 27, (584,291,0): 36, 16, 27, (584,292,0): 36, 16, 27, (584,293,0): 34, 17, 27, (584,294,0): 34, 17, 27, (584,295,0): 33, 17, 27, (584,296,0): 30, 17, 26, (584,297,0): 29, 18, 26, (584,298,0): 29, 18, 26, (584,299,0): 28, 18, 26, (584,300,0): 29, 19, 27, (584,301,0): 27, 20, 27, (584,302,0): 27, 20, 27, (584,303,0): 29, 19, 27, (584,304,0): 25, 13, 23, (584,305,0): 25, 13, 23, (584,306,0): 24, 12, 22, (584,307,0): 24, 12, 22, (584,308,0): 23, 11, 21, (584,309,0): 23, 11, 21, (584,310,0): 22, 10, 20, (584,311,0): 22, 10, 20, (584,312,0): 19, 7, 17, (584,313,0): 19, 7, 17, (584,314,0): 19, 7, 17, (584,315,0): 19, 7, 17, (584,316,0): 19, 7, 17, (584,317,0): 19, 7, 17, (584,318,0): 19, 7, 17, (584,319,0): 19, 7, 17, (584,320,0): 16, 6, 15, (584,321,0): 14, 7, 15, (584,322,0): 14, 7, 15, (584,323,0): 15, 8, 16, (584,324,0): 15, 8, 16, (584,325,0): 15, 8, 16, (584,326,0): 15, 8, 16, (584,327,0): 16, 9, 17, (584,328,0): 15, 8, 16, (584,329,0): 15, 8, 16, (584,330,0): 14, 7, 15, (584,331,0): 14, 7, 15, (584,332,0): 13, 6, 14, (584,333,0): 13, 6, 14, (584,334,0): 12, 5, 13, (584,335,0): 12, 5, 13, (584,336,0): 14, 7, 15, (584,337,0): 14, 7, 15, (584,338,0): 13, 6, 14, (584,339,0): 12, 5, 13, (584,340,0): 11, 4, 12, (584,341,0): 11, 4, 12, (584,342,0): 10, 3, 11, (584,343,0): 10, 3, 11, (584,344,0): 6, 0, 7, (584,345,0): 7, 0, 8, (584,346,0): 7, 0, 8, (584,347,0): 8, 1, 9, (584,348,0): 8, 1, 9, (584,349,0): 9, 2, 10, (584,350,0): 9, 2, 10, (584,351,0): 9, 2, 10, (584,352,0): 8, 3, 10, (584,353,0): 8, 3, 10, (584,354,0): 8, 3, 10, (584,355,0): 7, 2, 9, (584,356,0): 6, 1, 8, (584,357,0): 6, 1, 8, (584,358,0): 6, 1, 8, (584,359,0): 5, 0, 7, (584,360,0): 7, 2, 9, (584,361,0): 7, 2, 9, (584,362,0): 7, 2, 9, (584,363,0): 7, 2, 9, (584,364,0): 7, 2, 9, (584,365,0): 7, 2, 9, (584,366,0): 7, 2, 9, (584,367,0): 7, 2, 9, (584,368,0): 8, 3, 10, (584,369,0): 8, 3, 10, (584,370,0): 8, 3, 10, (584,371,0): 8, 3, 10, (584,372,0): 8, 3, 10, (584,373,0): 8, 3, 10, (584,374,0): 8, 3, 10, (584,375,0): 8, 3, 10, (584,376,0): 8, 3, 10, (584,377,0): 8, 3, 10, (584,378,0): 9, 4, 11, (584,379,0): 9, 4, 11, (584,380,0): 10, 5, 12, (584,381,0): 10, 5, 12, (584,382,0): 11, 6, 13, (584,383,0): 12, 5, 12, (584,384,0): 13, 4, 9, (584,385,0): 14, 3, 7, (584,386,0): 14, 3, 7, (584,387,0): 15, 4, 8, (584,388,0): 15, 4, 8, (584,389,0): 16, 5, 9, (584,390,0): 17, 5, 9, (584,391,0): 18, 6, 10, (584,392,0): 23, 8, 13, (584,393,0): 22, 7, 12, (584,394,0): 21, 4, 10, (584,395,0): 20, 3, 9, (584,396,0): 20, 3, 9, (584,397,0): 21, 4, 10, (584,398,0): 23, 6, 12, (584,399,0): 24, 8, 11, (584,400,0): 21, 6, 9, (584,401,0): 21, 7, 7, (584,402,0): 21, 7, 7, (584,403,0): 21, 7, 7, (584,404,0): 21, 7, 7, (584,405,0): 21, 7, 7, (584,406,0): 22, 6, 7, (584,407,0): 22, 6, 7, (584,408,0): 23, 7, 8, (584,409,0): 23, 7, 8, (584,410,0): 25, 6, 8, (584,411,0): 25, 6, 8, (584,412,0): 25, 6, 8, (584,413,0): 25, 6, 8, (584,414,0): 25, 6, 8, (584,415,0): 25, 6, 8, (584,416,0): 25, 9, 10, (584,417,0): 24, 10, 10, (584,418,0): 26, 10, 11, (584,419,0): 26, 12, 12, (584,420,0): 29, 13, 14, (584,421,0): 31, 15, 16, (584,422,0): 34, 18, 19, (584,423,0): 35, 19, 20, (584,424,0): 37, 21, 22, (584,425,0): 35, 19, 20, (584,426,0): 33, 17, 18, (584,427,0): 32, 16, 17, (584,428,0): 32, 16, 17, (584,429,0): 35, 19, 20, (584,430,0): 38, 22, 23, (584,431,0): 40, 24, 25, (584,432,0): 39, 23, 24, (584,433,0): 40, 24, 25, (584,434,0): 41, 25, 26, (584,435,0): 41, 25, 26, (584,436,0): 41, 25, 26, (584,437,0): 40, 24, 25, (584,438,0): 39, 23, 24, (584,439,0): 38, 22, 23, (584,440,0): 36, 20, 21, (584,441,0): 36, 20, 21, (584,442,0): 36, 20, 21, (584,443,0): 36, 20, 21, (584,444,0): 35, 19, 20, (584,445,0): 33, 17, 18, (584,446,0): 31, 15, 16, (584,447,0): 30, 14, 15, (584,448,0): 26, 12, 12, (584,449,0): 26, 12, 12, (584,450,0): 26, 12, 12, (584,451,0): 27, 13, 13, (584,452,0): 25, 13, 15, (584,453,0): 25, 13, 15, (584,454,0): 26, 14, 16, (584,455,0): 25, 15, 16, (584,456,0): 16, 5, 9, (584,457,0): 16, 7, 10, (584,458,0): 17, 8, 13, (584,459,0): 18, 9, 14, (584,460,0): 18, 9, 14, (584,461,0): 16, 7, 12, (584,462,0): 12, 5, 12, (584,463,0): 10, 3, 10, (584,464,0): 12, 2, 10, (584,465,0): 12, 2, 10, (584,466,0): 13, 2, 10, (584,467,0): 13, 2, 10, (584,468,0): 14, 3, 9, (584,469,0): 14, 3, 9, (584,470,0): 15, 3, 7, (584,471,0): 15, 3, 7, (584,472,0): 18, 3, 8, (584,473,0): 18, 3, 8, (584,474,0): 18, 3, 6, (584,475,0): 18, 3, 6, (584,476,0): 19, 3, 4, (584,477,0): 19, 3, 4, (584,478,0): 19, 3, 4, (584,479,0): 19, 3, 4, (584,480,0): 16, 1, 4, (584,481,0): 14, 2, 4, (584,482,0): 12, 0, 2, (584,483,0): 12, 0, 2, (584,484,0): 12, 0, 2, (584,485,0): 12, 0, 2, (584,486,0): 14, 2, 4, (584,487,0): 14, 2, 4, (584,488,0): 16, 4, 6, (584,489,0): 16, 4, 6, (584,490,0): 16, 4, 6, (584,491,0): 16, 4, 6, (584,492,0): 16, 4, 6, (584,493,0): 16, 4, 6, (584,494,0): 16, 4, 6, (584,495,0): 18, 3, 6, (584,496,0): 22, 3, 5, (584,497,0): 23, 4, 6, (584,498,0): 23, 4, 6, (584,499,0): 24, 5, 7, (584,500,0): 24, 5, 7, (584,501,0): 25, 6, 8, (584,502,0): 26, 6, 8, (584,503,0): 26, 6, 8, (584,504,0): 25, 5, 7, (584,505,0): 26, 6, 8, (584,506,0): 28, 8, 10, (584,507,0): 29, 9, 11, (584,508,0): 30, 10, 12, (584,509,0): 29, 9, 11, (584,510,0): 29, 9, 11, (584,511,0): 27, 8, 10, (584,512,0): 24, 5, 7, (584,513,0): 24, 5, 7, (584,514,0): 25, 6, 8, (584,515,0): 26, 7, 9, (584,516,0): 27, 8, 10, (584,517,0): 29, 10, 12, (584,518,0): 31, 12, 14, (584,519,0): 32, 13, 15, (584,520,0): 32, 13, 15, (584,521,0): 32, 13, 15, (584,522,0): 31, 12, 14, (584,523,0): 29, 10, 12, (584,524,0): 28, 9, 11, (584,525,0): 27, 8, 10, (584,526,0): 26, 7, 9, (584,527,0): 23, 7, 10, (584,528,0): 19, 4, 11, (584,529,0): 18, 2, 12, (584,530,0): 16, 3, 12, (584,531,0): 15, 2, 11, (584,532,0): 14, 1, 10, (584,533,0): 13, 0, 9, (584,534,0): 12, 1, 9, (584,535,0): 12, 1, 9, (584,536,0): 8, 0, 6, (584,537,0): 10, 0, 8, (584,538,0): 12, 2, 10, (584,539,0): 14, 4, 12, (584,540,0): 13, 6, 13, (584,541,0): 13, 6, 13, (584,542,0): 11, 4, 11, (584,543,0): 11, 4, 11, (584,544,0): 9, 3, 7, (584,545,0): 9, 3, 7, (584,546,0): 12, 3, 8, (584,547,0): 12, 3, 8, (584,548,0): 13, 4, 9, (584,549,0): 13, 4, 9, (584,550,0): 15, 4, 10, (584,551,0): 15, 4, 10, (584,552,0): 17, 4, 11, (584,553,0): 17, 4, 11, (584,554,0): 17, 4, 11, (584,555,0): 16, 3, 10, (584,556,0): 18, 3, 10, (584,557,0): 18, 3, 10, (584,558,0): 17, 2, 9, (584,559,0): 15, 2, 9, (584,560,0): 18, 7, 11, (584,561,0): 18, 7, 11, (584,562,0): 19, 8, 12, (584,563,0): 19, 8, 12, (584,564,0): 20, 9, 13, (584,565,0): 20, 9, 13, (584,566,0): 21, 10, 14, (584,567,0): 21, 10, 14, (584,568,0): 26, 15, 19, (584,569,0): 26, 15, 19, (584,570,0): 26, 15, 19, (584,571,0): 27, 16, 20, (584,572,0): 29, 18, 22, (584,573,0): 32, 21, 25, (584,574,0): 35, 24, 28, (584,575,0): 37, 25, 27, (584,576,0): 42, 27, 30, (584,577,0): 43, 27, 28, (584,578,0): 42, 26, 27, (584,579,0): 42, 26, 27, (584,580,0): 41, 25, 26, (584,581,0): 40, 24, 25, (584,582,0): 39, 25, 25, (584,583,0): 39, 25, 25, (584,584,0): 36, 24, 24, (584,585,0): 37, 25, 25, (584,586,0): 38, 28, 27, (584,587,0): 39, 29, 28, (584,588,0): 39, 29, 28, (584,589,0): 38, 28, 27, (584,590,0): 36, 26, 25, (584,591,0): 34, 26, 24, (584,592,0): 33, 28, 25, (584,593,0): 33, 28, 25, (584,594,0): 34, 29, 26, (584,595,0): 34, 29, 26, (584,596,0): 35, 30, 27, (584,597,0): 35, 30, 27, (584,598,0): 36, 31, 28, (584,599,0): 36, 31, 28, (585,0,0): 31, 54, 68, (585,1,0): 31, 54, 68, (585,2,0): 31, 54, 68, (585,3,0): 31, 54, 68, (585,4,0): 31, 54, 68, (585,5,0): 31, 54, 68, (585,6,0): 31, 54, 68, (585,7,0): 31, 54, 68, (585,8,0): 32, 55, 69, (585,9,0): 32, 55, 69, (585,10,0): 32, 55, 69, (585,11,0): 33, 56, 70, (585,12,0): 33, 56, 70, (585,13,0): 34, 57, 71, (585,14,0): 34, 57, 71, (585,15,0): 35, 58, 72, (585,16,0): 38, 57, 71, (585,17,0): 38, 57, 71, (585,18,0): 38, 57, 71, (585,19,0): 38, 57, 71, (585,20,0): 38, 57, 71, (585,21,0): 38, 57, 71, (585,22,0): 38, 57, 71, (585,23,0): 38, 57, 71, (585,24,0): 38, 57, 71, (585,25,0): 37, 56, 70, (585,26,0): 37, 56, 70, (585,27,0): 36, 55, 69, (585,28,0): 37, 56, 70, (585,29,0): 38, 57, 71, (585,30,0): 40, 59, 73, (585,31,0): 41, 60, 74, (585,32,0): 39, 57, 71, (585,33,0): 39, 57, 71, (585,34,0): 40, 58, 72, (585,35,0): 40, 58, 72, (585,36,0): 42, 58, 71, (585,37,0): 42, 58, 71, (585,38,0): 46, 58, 72, (585,39,0): 46, 58, 72, (585,40,0): 51, 61, 73, (585,41,0): 51, 61, 73, (585,42,0): 53, 59, 71, (585,43,0): 54, 60, 72, (585,44,0): 56, 60, 72, (585,45,0): 57, 61, 73, (585,46,0): 57, 61, 72, (585,47,0): 58, 62, 73, (585,48,0): 58, 60, 75, (585,49,0): 58, 60, 75, (585,50,0): 58, 60, 75, (585,51,0): 59, 61, 76, (585,52,0): 59, 61, 76, (585,53,0): 60, 62, 77, (585,54,0): 60, 62, 77, (585,55,0): 60, 62, 77, (585,56,0): 62, 64, 79, (585,57,0): 62, 64, 79, (585,58,0): 62, 64, 79, (585,59,0): 63, 65, 80, (585,60,0): 63, 65, 80, (585,61,0): 64, 66, 81, (585,62,0): 64, 66, 81, (585,63,0): 65, 67, 82, (585,64,0): 66, 65, 81, (585,65,0): 67, 64, 81, (585,66,0): 67, 64, 81, (585,67,0): 68, 65, 82, (585,68,0): 68, 65, 82, (585,69,0): 69, 66, 83, (585,70,0): 69, 66, 83, (585,71,0): 69, 66, 83, (585,72,0): 70, 67, 84, (585,73,0): 70, 67, 84, (585,74,0): 70, 67, 84, (585,75,0): 70, 67, 84, (585,76,0): 70, 67, 84, (585,77,0): 70, 67, 84, (585,78,0): 70, 67, 84, (585,79,0): 70, 67, 84, (585,80,0): 67, 65, 86, (585,81,0): 67, 65, 86, (585,82,0): 65, 66, 86, (585,83,0): 65, 66, 86, (585,84,0): 65, 66, 86, (585,85,0): 65, 66, 86, (585,86,0): 64, 67, 86, (585,87,0): 64, 67, 86, (585,88,0): 62, 67, 86, (585,89,0): 62, 67, 86, (585,90,0): 62, 67, 86, (585,91,0): 62, 67, 86, (585,92,0): 61, 68, 86, (585,93,0): 60, 67, 85, (585,94,0): 60, 67, 85, (585,95,0): 60, 67, 85, (585,96,0): 60, 68, 87, (585,97,0): 60, 68, 87, (585,98,0): 60, 68, 87, (585,99,0): 60, 68, 87, (585,100,0): 60, 68, 87, (585,101,0): 60, 68, 87, (585,102,0): 60, 68, 87, (585,103,0): 60, 68, 87, (585,104,0): 60, 68, 87, (585,105,0): 60, 68, 87, (585,106,0): 60, 68, 87, (585,107,0): 60, 68, 87, (585,108,0): 60, 68, 87, (585,109,0): 60, 68, 87, (585,110,0): 60, 68, 87, (585,111,0): 58, 69, 87, (585,112,0): 57, 70, 89, (585,113,0): 55, 70, 89, (585,114,0): 57, 70, 89, (585,115,0): 58, 71, 90, (585,116,0): 59, 70, 88, (585,117,0): 60, 71, 89, (585,118,0): 63, 70, 88, (585,119,0): 64, 71, 87, (585,120,0): 62, 68, 84, (585,121,0): 64, 67, 82, (585,122,0): 66, 68, 83, (585,123,0): 68, 67, 81, (585,124,0): 68, 67, 81, (585,125,0): 70, 68, 81, (585,126,0): 70, 68, 82, (585,127,0): 71, 67, 81, (585,128,0): 72, 64, 79, (585,129,0): 75, 64, 78, (585,130,0): 77, 65, 77, (585,131,0): 79, 67, 77, (585,132,0): 82, 69, 78, (585,133,0): 86, 71, 78, (585,134,0): 88, 73, 80, (585,135,0): 87, 74, 81, (585,136,0): 91, 80, 88, (585,137,0): 86, 80, 90, (585,138,0): 81, 80, 94, (585,139,0): 74, 80, 96, (585,140,0): 70, 78, 99, (585,141,0): 63, 77, 103, (585,142,0): 60, 77, 105, (585,143,0): 57, 77, 104, (585,144,0): 58, 78, 105, (585,145,0): 57, 79, 103, (585,146,0): 58, 78, 105, (585,147,0): 57, 78, 105, (585,148,0): 57, 78, 107, (585,149,0): 57, 78, 107, (585,150,0): 57, 78, 109, (585,151,0): 57, 77, 110, (585,152,0): 55, 78, 112, (585,153,0): 55, 78, 112, (585,154,0): 55, 77, 114, (585,155,0): 55, 77, 114, (585,156,0): 55, 77, 116, (585,157,0): 55, 77, 116, (585,158,0): 54, 77, 118, (585,159,0): 54, 77, 118, (585,160,0): 52, 78, 115, (585,161,0): 50, 78, 115, (585,162,0): 50, 78, 115, (585,163,0): 50, 78, 115, (585,164,0): 50, 78, 117, (585,165,0): 50, 78, 117, (585,166,0): 50, 78, 117, (585,167,0): 50, 78, 117, (585,168,0): 48, 76, 116, (585,169,0): 49, 77, 117, (585,170,0): 49, 76, 119, (585,171,0): 49, 76, 119, (585,172,0): 50, 77, 120, (585,173,0): 50, 77, 120, (585,174,0): 51, 78, 123, (585,175,0): 51, 78, 123, (585,176,0): 50, 77, 120, (585,177,0): 50, 77, 120, (585,178,0): 50, 77, 120, (585,179,0): 50, 77, 120, (585,180,0): 50, 77, 120, (585,181,0): 50, 77, 120, (585,182,0): 50, 77, 120, (585,183,0): 50, 77, 120, (585,184,0): 51, 78, 121, (585,185,0): 52, 79, 122, (585,186,0): 52, 79, 122, (585,187,0): 52, 79, 122, (585,188,0): 53, 80, 123, (585,189,0): 53, 80, 123, (585,190,0): 54, 81, 124, (585,191,0): 54, 81, 126, (585,192,0): 53, 81, 128, (585,193,0): 53, 81, 128, (585,194,0): 53, 81, 128, (585,195,0): 53, 81, 128, (585,196,0): 53, 81, 129, (585,197,0): 53, 81, 129, (585,198,0): 53, 81, 129, (585,199,0): 53, 81, 129, (585,200,0): 52, 80, 130, (585,201,0): 52, 80, 130, (585,202,0): 52, 79, 132, (585,203,0): 52, 79, 132, (585,204,0): 52, 79, 132, (585,205,0): 52, 79, 132, (585,206,0): 52, 79, 134, (585,207,0): 50, 80, 134, (585,208,0): 52, 83, 140, (585,209,0): 51, 83, 140, (585,210,0): 52, 84, 141, (585,211,0): 52, 84, 141, (585,212,0): 53, 85, 144, (585,213,0): 53, 85, 144, (585,214,0): 54, 86, 145, (585,215,0): 54, 86, 145, (585,216,0): 56, 88, 149, (585,217,0): 56, 88, 149, (585,218,0): 56, 87, 151, (585,219,0): 57, 88, 152, (585,220,0): 57, 88, 152, (585,221,0): 58, 89, 153, (585,222,0): 58, 89, 154, (585,223,0): 58, 89, 153, (585,224,0): 57, 91, 154, (585,225,0): 57, 91, 152, (585,226,0): 57, 91, 154, (585,227,0): 58, 92, 155, (585,228,0): 57, 92, 156, (585,229,0): 58, 93, 157, (585,230,0): 58, 93, 159, (585,231,0): 56, 94, 159, (585,232,0): 57, 94, 162, (585,233,0): 57, 94, 164, (585,234,0): 57, 95, 166, (585,235,0): 58, 96, 167, (585,236,0): 59, 97, 170, (585,237,0): 59, 99, 171, (585,238,0): 60, 99, 174, (585,239,0): 60, 100, 172, (585,240,0): 62, 102, 174, (585,241,0): 63, 103, 175, (585,242,0): 63, 102, 177, (585,243,0): 64, 103, 178, (585,244,0): 66, 105, 180, (585,245,0): 67, 106, 181, (585,246,0): 67, 106, 183, (585,247,0): 68, 107, 184, (585,248,0): 67, 106, 185, (585,249,0): 67, 106, 185, (585,250,0): 68, 107, 186, (585,251,0): 69, 108, 187, (585,252,0): 70, 108, 189, (585,253,0): 71, 109, 190, (585,254,0): 72, 110, 191, (585,255,0): 72, 111, 190, (585,256,0): 73, 115, 191, (585,257,0): 74, 116, 190, (585,258,0): 76, 114, 189, (585,259,0): 77, 111, 183, (585,260,0): 85, 112, 181, (585,261,0): 89, 107, 171, (585,262,0): 82, 89, 143, (585,263,0): 72, 69, 112, (585,264,0): 61, 50, 80, (585,265,0): 59, 45, 62, (585,266,0): 56, 36, 47, (585,267,0): 52, 31, 38, (585,268,0): 49, 28, 35, (585,269,0): 45, 28, 38, (585,270,0): 39, 25, 38, (585,271,0): 37, 23, 36, (585,272,0): 37, 21, 32, (585,273,0): 38, 21, 31, (585,274,0): 36, 20, 30, (585,275,0): 32, 19, 28, (585,276,0): 30, 17, 26, (585,277,0): 28, 17, 25, (585,278,0): 26, 16, 24, (585,279,0): 25, 15, 23, (585,280,0): 27, 17, 25, (585,281,0): 27, 17, 25, (585,282,0): 29, 18, 26, (585,283,0): 29, 18, 26, (585,284,0): 33, 17, 27, (585,285,0): 34, 18, 28, (585,286,0): 35, 18, 28, (585,287,0): 36, 19, 29, (585,288,0): 33, 16, 26, (585,289,0): 33, 16, 26, (585,290,0): 35, 15, 26, (585,291,0): 33, 16, 26, (585,292,0): 33, 16, 26, (585,293,0): 32, 16, 26, (585,294,0): 32, 16, 26, (585,295,0): 30, 17, 26, (585,296,0): 28, 17, 25, (585,297,0): 28, 17, 25, (585,298,0): 27, 17, 25, (585,299,0): 27, 17, 25, (585,300,0): 27, 17, 25, (585,301,0): 25, 18, 25, (585,302,0): 25, 18, 25, (585,303,0): 27, 17, 25, (585,304,0): 23, 13, 22, (585,305,0): 24, 12, 22, (585,306,0): 24, 12, 22, (585,307,0): 23, 11, 21, (585,308,0): 23, 11, 21, (585,309,0): 22, 10, 20, (585,310,0): 22, 10, 20, (585,311,0): 22, 10, 20, (585,312,0): 19, 7, 17, (585,313,0): 19, 7, 17, (585,314,0): 19, 7, 17, (585,315,0): 19, 7, 17, (585,316,0): 19, 7, 17, (585,317,0): 19, 7, 17, (585,318,0): 19, 7, 17, (585,319,0): 18, 8, 17, (585,320,0): 14, 7, 15, (585,321,0): 14, 7, 15, (585,322,0): 14, 7, 15, (585,323,0): 14, 7, 15, (585,324,0): 14, 7, 15, (585,325,0): 14, 7, 15, (585,326,0): 14, 7, 15, (585,327,0): 14, 7, 15, (585,328,0): 15, 8, 16, (585,329,0): 14, 7, 15, (585,330,0): 14, 7, 15, (585,331,0): 13, 6, 14, (585,332,0): 13, 6, 14, (585,333,0): 12, 5, 13, (585,334,0): 12, 5, 13, (585,335,0): 12, 5, 13, (585,336,0): 13, 6, 14, (585,337,0): 13, 6, 14, (585,338,0): 12, 5, 13, (585,339,0): 11, 4, 12, (585,340,0): 11, 4, 12, (585,341,0): 10, 3, 11, (585,342,0): 9, 2, 10, (585,343,0): 9, 2, 10, (585,344,0): 7, 0, 8, (585,345,0): 7, 0, 8, (585,346,0): 8, 1, 9, (585,347,0): 8, 1, 9, (585,348,0): 9, 2, 10, (585,349,0): 9, 2, 10, (585,350,0): 10, 3, 11, (585,351,0): 10, 3, 11, (585,352,0): 8, 3, 10, (585,353,0): 8, 3, 10, (585,354,0): 8, 3, 10, (585,355,0): 7, 2, 9, (585,356,0): 7, 2, 9, (585,357,0): 6, 1, 8, (585,358,0): 6, 1, 8, (585,359,0): 5, 0, 7, (585,360,0): 7, 2, 9, (585,361,0): 7, 2, 9, (585,362,0): 7, 2, 9, (585,363,0): 7, 2, 9, (585,364,0): 7, 2, 9, (585,365,0): 7, 2, 9, (585,366,0): 7, 2, 9, (585,367,0): 7, 2, 9, (585,368,0): 8, 3, 10, (585,369,0): 8, 3, 10, (585,370,0): 8, 3, 10, (585,371,0): 8, 3, 10, (585,372,0): 8, 3, 10, (585,373,0): 8, 3, 10, (585,374,0): 8, 3, 10, (585,375,0): 8, 3, 10, (585,376,0): 8, 3, 10, (585,377,0): 9, 4, 11, (585,378,0): 9, 4, 11, (585,379,0): 10, 5, 12, (585,380,0): 10, 5, 12, (585,381,0): 11, 6, 13, (585,382,0): 11, 6, 13, (585,383,0): 12, 5, 12, (585,384,0): 13, 4, 9, (585,385,0): 14, 3, 7, (585,386,0): 15, 4, 8, (585,387,0): 15, 4, 8, (585,388,0): 16, 5, 9, (585,389,0): 16, 5, 9, (585,390,0): 17, 5, 9, (585,391,0): 18, 6, 10, (585,392,0): 23, 8, 13, (585,393,0): 22, 7, 12, (585,394,0): 21, 4, 10, (585,395,0): 20, 3, 9, (585,396,0): 20, 3, 9, (585,397,0): 21, 4, 10, (585,398,0): 23, 6, 12, (585,399,0): 24, 8, 11, (585,400,0): 21, 6, 9, (585,401,0): 21, 7, 7, (585,402,0): 21, 7, 7, (585,403,0): 21, 7, 7, (585,404,0): 21, 7, 7, (585,405,0): 21, 7, 7, (585,406,0): 22, 6, 7, (585,407,0): 22, 6, 7, (585,408,0): 23, 7, 8, (585,409,0): 23, 7, 8, (585,410,0): 25, 6, 8, (585,411,0): 25, 6, 8, (585,412,0): 25, 6, 8, (585,413,0): 25, 6, 8, (585,414,0): 25, 6, 8, (585,415,0): 23, 7, 8, (585,416,0): 23, 9, 9, (585,417,0): 21, 9, 9, (585,418,0): 23, 9, 9, (585,419,0): 24, 10, 10, (585,420,0): 26, 12, 12, (585,421,0): 28, 14, 14, (585,422,0): 32, 16, 17, (585,423,0): 33, 17, 18, (585,424,0): 36, 20, 21, (585,425,0): 34, 18, 19, (585,426,0): 32, 16, 17, (585,427,0): 31, 15, 16, (585,428,0): 31, 15, 16, (585,429,0): 34, 18, 19, (585,430,0): 37, 21, 22, (585,431,0): 39, 23, 24, (585,432,0): 39, 23, 24, (585,433,0): 40, 24, 25, (585,434,0): 40, 24, 25, (585,435,0): 41, 25, 26, (585,436,0): 41, 25, 26, (585,437,0): 40, 24, 25, (585,438,0): 39, 23, 24, (585,439,0): 38, 22, 23, (585,440,0): 36, 20, 21, (585,441,0): 36, 20, 21, (585,442,0): 36, 20, 21, (585,443,0): 36, 20, 21, (585,444,0): 35, 19, 20, (585,445,0): 33, 17, 18, (585,446,0): 31, 15, 16, (585,447,0): 30, 14, 15, (585,448,0): 26, 12, 12, (585,449,0): 26, 12, 12, (585,450,0): 26, 12, 12, (585,451,0): 26, 12, 12, (585,452,0): 26, 11, 14, (585,453,0): 25, 13, 15, (585,454,0): 25, 13, 15, (585,455,0): 25, 13, 15, (585,456,0): 17, 6, 10, (585,457,0): 18, 7, 11, (585,458,0): 19, 8, 14, (585,459,0): 19, 10, 15, (585,460,0): 18, 9, 14, (585,461,0): 17, 8, 13, (585,462,0): 13, 6, 13, (585,463,0): 12, 5, 12, (585,464,0): 12, 2, 10, (585,465,0): 12, 2, 10, (585,466,0): 14, 3, 11, (585,467,0): 14, 3, 11, (585,468,0): 14, 3, 9, (585,469,0): 14, 3, 9, (585,470,0): 15, 3, 7, (585,471,0): 15, 3, 7, (585,472,0): 18, 3, 8, (585,473,0): 18, 3, 8, (585,474,0): 18, 3, 6, (585,475,0): 18, 3, 6, (585,476,0): 19, 3, 4, (585,477,0): 19, 3, 4, (585,478,0): 19, 3, 4, (585,479,0): 18, 4, 4, (585,480,0): 14, 2, 4, (585,481,0): 14, 2, 4, (585,482,0): 12, 0, 2, (585,483,0): 12, 0, 2, (585,484,0): 12, 0, 2, (585,485,0): 12, 0, 2, (585,486,0): 14, 2, 4, (585,487,0): 14, 2, 4, (585,488,0): 16, 4, 6, (585,489,0): 16, 4, 6, (585,490,0): 16, 4, 6, (585,491,0): 16, 4, 6, (585,492,0): 16, 4, 6, (585,493,0): 16, 4, 6, (585,494,0): 16, 4, 6, (585,495,0): 16, 4, 6, (585,496,0): 20, 4, 5, (585,497,0): 22, 3, 5, (585,498,0): 22, 3, 5, (585,499,0): 23, 4, 6, (585,500,0): 23, 4, 6, (585,501,0): 24, 5, 7, (585,502,0): 25, 5, 7, (585,503,0): 25, 5, 7, (585,504,0): 25, 5, 7, (585,505,0): 26, 6, 8, (585,506,0): 28, 8, 10, (585,507,0): 29, 9, 11, (585,508,0): 30, 10, 12, (585,509,0): 29, 9, 11, (585,510,0): 29, 9, 11, (585,511,0): 28, 8, 10, (585,512,0): 24, 5, 7, (585,513,0): 24, 5, 7, (585,514,0): 25, 6, 8, (585,515,0): 26, 7, 9, (585,516,0): 27, 8, 10, (585,517,0): 29, 10, 12, (585,518,0): 31, 12, 14, (585,519,0): 32, 13, 15, (585,520,0): 33, 14, 16, (585,521,0): 32, 13, 15, (585,522,0): 31, 12, 14, (585,523,0): 29, 10, 12, (585,524,0): 27, 8, 10, (585,525,0): 26, 7, 9, (585,526,0): 24, 5, 7, (585,527,0): 21, 5, 8, (585,528,0): 19, 2, 10, (585,529,0): 18, 2, 12, (585,530,0): 15, 2, 11, (585,531,0): 15, 2, 11, (585,532,0): 15, 2, 11, (585,533,0): 14, 1, 10, (585,534,0): 13, 2, 10, (585,535,0): 13, 2, 10, (585,536,0): 10, 0, 8, (585,537,0): 11, 1, 9, (585,538,0): 12, 2, 10, (585,539,0): 13, 3, 11, (585,540,0): 12, 5, 12, (585,541,0): 12, 5, 12, (585,542,0): 12, 5, 12, (585,543,0): 11, 4, 11, (585,544,0): 9, 3, 7, (585,545,0): 9, 3, 7, (585,546,0): 12, 3, 8, (585,547,0): 12, 3, 8, (585,548,0): 13, 4, 9, (585,549,0): 13, 4, 9, (585,550,0): 15, 4, 10, (585,551,0): 15, 4, 10, (585,552,0): 17, 4, 11, (585,553,0): 17, 4, 11, (585,554,0): 17, 4, 11, (585,555,0): 16, 3, 10, (585,556,0): 18, 3, 10, (585,557,0): 18, 3, 10, (585,558,0): 18, 3, 10, (585,559,0): 18, 3, 10, (585,560,0): 19, 7, 11, (585,561,0): 19, 8, 12, (585,562,0): 19, 8, 12, (585,563,0): 20, 9, 13, (585,564,0): 20, 9, 13, (585,565,0): 21, 10, 14, (585,566,0): 21, 10, 14, (585,567,0): 21, 10, 14, (585,568,0): 26, 15, 19, (585,569,0): 26, 15, 19, (585,570,0): 26, 15, 19, (585,571,0): 27, 16, 20, (585,572,0): 29, 18, 22, (585,573,0): 31, 20, 24, (585,574,0): 34, 23, 27, (585,575,0): 36, 24, 26, (585,576,0): 41, 27, 27, (585,577,0): 42, 26, 27, (585,578,0): 42, 26, 27, (585,579,0): 41, 25, 26, (585,580,0): 41, 25, 26, (585,581,0): 41, 25, 26, (585,582,0): 39, 25, 25, (585,583,0): 39, 25, 25, (585,584,0): 36, 24, 24, (585,585,0): 37, 25, 25, (585,586,0): 37, 27, 26, (585,587,0): 38, 28, 27, (585,588,0): 38, 28, 27, (585,589,0): 37, 27, 26, (585,590,0): 36, 26, 25, (585,591,0): 35, 25, 24, (585,592,0): 35, 27, 25, (585,593,0): 33, 28, 25, (585,594,0): 35, 27, 25, (585,595,0): 34, 29, 26, (585,596,0): 36, 28, 26, (585,597,0): 35, 30, 27, (585,598,0): 37, 29, 27, (585,599,0): 36, 31, 28, (586,0,0): 31, 54, 68, (586,1,0): 31, 54, 68, (586,2,0): 31, 54, 68, (586,3,0): 31, 54, 68, (586,4,0): 31, 54, 68, (586,5,0): 31, 54, 68, (586,6,0): 31, 54, 68, (586,7,0): 31, 54, 68, (586,8,0): 31, 54, 68, (586,9,0): 32, 55, 69, (586,10,0): 32, 55, 69, (586,11,0): 33, 56, 70, (586,12,0): 33, 56, 70, (586,13,0): 34, 57, 71, (586,14,0): 34, 57, 71, (586,15,0): 34, 57, 71, (586,16,0): 37, 56, 70, (586,17,0): 37, 56, 70, (586,18,0): 37, 56, 70, (586,19,0): 37, 56, 70, (586,20,0): 37, 56, 70, (586,21,0): 37, 56, 70, (586,22,0): 37, 56, 70, (586,23,0): 37, 56, 70, (586,24,0): 38, 57, 71, (586,25,0): 37, 56, 70, (586,26,0): 37, 56, 70, (586,27,0): 36, 55, 69, (586,28,0): 37, 56, 70, (586,29,0): 38, 57, 71, (586,30,0): 40, 59, 73, (586,31,0): 41, 60, 74, (586,32,0): 39, 57, 71, (586,33,0): 39, 57, 71, (586,34,0): 40, 58, 72, (586,35,0): 40, 58, 72, (586,36,0): 42, 58, 71, (586,37,0): 42, 58, 71, (586,38,0): 46, 58, 72, (586,39,0): 46, 58, 72, (586,40,0): 50, 60, 72, (586,41,0): 51, 61, 73, (586,42,0): 53, 59, 71, (586,43,0): 54, 60, 72, (586,44,0): 56, 60, 72, (586,45,0): 57, 61, 73, (586,46,0): 57, 61, 72, (586,47,0): 57, 61, 72, (586,48,0): 57, 60, 75, (586,49,0): 57, 60, 75, (586,50,0): 57, 60, 75, (586,51,0): 58, 61, 76, (586,52,0): 58, 61, 76, (586,53,0): 59, 62, 77, (586,54,0): 59, 62, 77, (586,55,0): 59, 62, 77, (586,56,0): 60, 63, 78, (586,57,0): 61, 64, 79, (586,58,0): 61, 64, 79, (586,59,0): 62, 65, 80, (586,60,0): 62, 65, 80, (586,61,0): 63, 66, 81, (586,62,0): 63, 66, 81, (586,63,0): 64, 66, 81, (586,64,0): 66, 65, 81, (586,65,0): 67, 64, 81, (586,66,0): 67, 64, 81, (586,67,0): 68, 65, 82, (586,68,0): 68, 65, 82, (586,69,0): 69, 66, 83, (586,70,0): 69, 66, 83, (586,71,0): 69, 66, 83, (586,72,0): 70, 67, 84, (586,73,0): 70, 67, 84, (586,74,0): 70, 67, 84, (586,75,0): 70, 67, 84, (586,76,0): 70, 67, 84, (586,77,0): 70, 67, 84, (586,78,0): 70, 67, 84, (586,79,0): 70, 67, 84, (586,80,0): 67, 65, 86, (586,81,0): 67, 65, 86, (586,82,0): 65, 66, 86, (586,83,0): 65, 66, 86, (586,84,0): 65, 66, 86, (586,85,0): 65, 66, 86, (586,86,0): 64, 67, 86, (586,87,0): 64, 67, 86, (586,88,0): 63, 68, 87, (586,89,0): 63, 68, 87, (586,90,0): 63, 68, 87, (586,91,0): 62, 67, 86, (586,92,0): 60, 67, 85, (586,93,0): 59, 66, 84, (586,94,0): 58, 65, 83, (586,95,0): 58, 65, 83, (586,96,0): 59, 67, 86, (586,97,0): 59, 67, 86, (586,98,0): 59, 67, 86, (586,99,0): 59, 67, 86, (586,100,0): 59, 67, 86, (586,101,0): 59, 67, 86, (586,102,0): 59, 67, 86, (586,103,0): 59, 67, 86, (586,104,0): 61, 69, 88, (586,105,0): 61, 69, 88, (586,106,0): 61, 69, 88, (586,107,0): 61, 69, 88, (586,108,0): 61, 69, 88, (586,109,0): 61, 69, 88, (586,110,0): 61, 69, 88, (586,111,0): 59, 70, 88, (586,112,0): 54, 69, 88, (586,113,0): 54, 71, 89, (586,114,0): 55, 70, 89, (586,115,0): 58, 71, 90, (586,116,0): 59, 70, 88, (586,117,0): 60, 71, 89, (586,118,0): 63, 70, 88, (586,119,0): 63, 70, 86, (586,120,0): 64, 70, 86, (586,121,0): 65, 68, 83, (586,122,0): 66, 68, 81, (586,123,0): 68, 68, 80, (586,124,0): 69, 67, 80, (586,125,0): 69, 66, 77, (586,126,0): 69, 65, 79, (586,127,0): 71, 65, 77, (586,128,0): 74, 63, 77, (586,129,0): 76, 64, 76, (586,130,0): 77, 65, 77, (586,131,0): 80, 68, 78, (586,132,0): 83, 70, 80, (586,133,0): 86, 73, 82, (586,134,0): 86, 75, 83, (586,135,0): 86, 76, 85, (586,136,0): 85, 79, 89, (586,137,0): 81, 79, 92, (586,138,0): 76, 79, 96, (586,139,0): 71, 79, 98, (586,140,0): 66, 78, 102, (586,141,0): 61, 78, 104, (586,142,0): 57, 76, 106, (586,143,0): 56, 77, 106, (586,144,0): 56, 77, 104, (586,145,0): 54, 78, 104, (586,146,0): 56, 77, 104, (586,147,0): 54, 78, 104, (586,148,0): 54, 78, 106, (586,149,0): 54, 78, 106, (586,150,0): 54, 77, 108, (586,151,0): 54, 77, 109, (586,152,0): 55, 78, 112, (586,153,0): 55, 78, 112, (586,154,0): 55, 77, 114, (586,155,0): 55, 77, 116, (586,156,0): 55, 77, 118, (586,157,0): 55, 77, 118, (586,158,0): 55, 77, 118, (586,159,0): 54, 77, 118, (586,160,0): 51, 76, 116, (586,161,0): 49, 77, 116, (586,162,0): 49, 77, 116, (586,163,0): 49, 77, 116, (586,164,0): 49, 77, 116, (586,165,0): 49, 77, 116, (586,166,0): 49, 77, 117, (586,167,0): 49, 77, 117, (586,168,0): 48, 75, 118, (586,169,0): 48, 75, 118, (586,170,0): 48, 75, 120, (586,171,0): 49, 76, 121, (586,172,0): 50, 77, 122, (586,173,0): 50, 77, 122, (586,174,0): 50, 77, 122, (586,175,0): 51, 78, 123, (586,176,0): 50, 77, 122, (586,177,0): 50, 77, 122, (586,178,0): 50, 77, 122, (586,179,0): 50, 77, 122, (586,180,0): 50, 77, 122, (586,181,0): 50, 77, 122, (586,182,0): 50, 77, 122, (586,183,0): 50, 77, 122, (586,184,0): 51, 78, 123, (586,185,0): 51, 78, 123, (586,186,0): 51, 78, 123, (586,187,0): 52, 79, 124, (586,188,0): 53, 80, 125, (586,189,0): 53, 80, 125, (586,190,0): 53, 80, 125, (586,191,0): 54, 81, 126, (586,192,0): 51, 79, 126, (586,193,0): 49, 80, 126, (586,194,0): 49, 80, 127, (586,195,0): 49, 80, 127, (586,196,0): 49, 80, 127, (586,197,0): 49, 80, 127, (586,198,0): 49, 79, 129, (586,199,0): 49, 79, 129, (586,200,0): 50, 80, 132, (586,201,0): 50, 80, 132, (586,202,0): 50, 80, 132, (586,203,0): 50, 80, 132, (586,204,0): 50, 80, 134, (586,205,0): 50, 80, 134, (586,206,0): 50, 80, 134, (586,207,0): 50, 80, 134, (586,208,0): 52, 83, 140, (586,209,0): 51, 83, 140, (586,210,0): 52, 84, 141, (586,211,0): 52, 84, 141, (586,212,0): 53, 85, 144, (586,213,0): 53, 85, 144, (586,214,0): 54, 86, 145, (586,215,0): 54, 86, 145, (586,216,0): 56, 88, 149, (586,217,0): 56, 88, 149, (586,218,0): 56, 87, 151, (586,219,0): 57, 88, 152, (586,220,0): 57, 88, 152, (586,221,0): 58, 89, 153, (586,222,0): 58, 89, 154, (586,223,0): 58, 89, 153, (586,224,0): 59, 90, 154, (586,225,0): 59, 91, 152, (586,226,0): 57, 91, 152, (586,227,0): 58, 92, 153, (586,228,0): 58, 92, 155, (586,229,0): 58, 93, 157, (586,230,0): 58, 93, 159, (586,231,0): 58, 93, 159, (586,232,0): 57, 94, 162, (586,233,0): 57, 94, 164, (586,234,0): 58, 95, 166, (586,235,0): 58, 96, 167, (586,236,0): 59, 97, 170, (586,237,0): 60, 98, 171, (586,238,0): 61, 99, 172, (586,239,0): 61, 99, 172, (586,240,0): 63, 101, 174, (586,241,0): 64, 102, 173, (586,242,0): 64, 102, 175, (586,243,0): 65, 103, 176, (586,244,0): 67, 105, 178, (586,245,0): 68, 106, 179, (586,246,0): 68, 106, 181, (586,247,0): 69, 107, 182, (586,248,0): 68, 105, 183, (586,249,0): 68, 105, 183, (586,250,0): 69, 106, 184, (586,251,0): 70, 107, 185, (586,252,0): 71, 108, 188, (586,253,0): 72, 109, 189, (586,254,0): 73, 110, 190, (586,255,0): 72, 111, 190, (586,256,0): 75, 114, 191, (586,257,0): 76, 115, 190, (586,258,0): 76, 112, 188, (586,259,0): 78, 111, 182, (586,260,0): 85, 110, 177, (586,261,0): 88, 104, 164, (586,262,0): 78, 86, 135, (586,263,0): 67, 65, 104, (586,264,0): 60, 50, 77, (586,265,0): 60, 43, 61, (586,266,0): 57, 35, 47, (586,267,0): 51, 30, 39, (586,268,0): 48, 26, 38, (586,269,0): 45, 25, 37, (586,270,0): 38, 21, 37, (586,271,0): 35, 18, 34, (586,272,0): 39, 21, 33, (586,273,0): 38, 21, 31, (586,274,0): 36, 20, 30, (586,275,0): 33, 20, 29, (586,276,0): 31, 18, 27, (586,277,0): 28, 17, 25, (586,278,0): 26, 16, 24, (586,279,0): 26, 16, 24, (586,280,0): 27, 17, 25, (586,281,0): 27, 17, 25, (586,282,0): 29, 18, 26, (586,283,0): 29, 18, 26, (586,284,0): 33, 17, 27, (586,285,0): 33, 17, 27, (586,286,0): 34, 17, 27, (586,287,0): 34, 17, 27, (586,288,0): 33, 15, 27, (586,289,0): 32, 16, 27, (586,290,0): 33, 15, 27, (586,291,0): 32, 16, 27, (586,292,0): 32, 16, 27, (586,293,0): 30, 17, 27, (586,294,0): 30, 17, 27, (586,295,0): 30, 17, 27, (586,296,0): 26, 14, 24, (586,297,0): 26, 14, 24, (586,298,0): 26, 14, 24, (586,299,0): 25, 15, 24, (586,300,0): 25, 15, 24, (586,301,0): 25, 15, 24, (586,302,0): 25, 15, 24, (586,303,0): 25, 15, 24, (586,304,0): 22, 12, 21, (586,305,0): 22, 12, 21, (586,306,0): 22, 12, 21, (586,307,0): 21, 11, 20, (586,308,0): 21, 11, 20, (586,309,0): 20, 10, 19, (586,310,0): 20, 10, 19, (586,311,0): 19, 9, 18, (586,312,0): 18, 8, 17, (586,313,0): 18, 8, 17, (586,314,0): 18, 8, 17, (586,315,0): 18, 8, 17, (586,316,0): 18, 8, 17, (586,317,0): 18, 8, 17, (586,318,0): 18, 8, 17, (586,319,0): 18, 8, 17, (586,320,0): 13, 6, 14, (586,321,0): 12, 7, 14, (586,322,0): 12, 7, 14, (586,323,0): 12, 7, 14, (586,324,0): 12, 7, 14, (586,325,0): 12, 7, 14, (586,326,0): 12, 7, 14, (586,327,0): 12, 7, 14, (586,328,0): 13, 8, 15, (586,329,0): 13, 8, 15, (586,330,0): 13, 8, 15, (586,331,0): 12, 7, 14, (586,332,0): 12, 7, 14, (586,333,0): 11, 6, 13, (586,334,0): 11, 6, 13, (586,335,0): 10, 5, 12, (586,336,0): 11, 4, 12, (586,337,0): 11, 4, 12, (586,338,0): 11, 4, 12, (586,339,0): 10, 3, 11, (586,340,0): 10, 3, 11, (586,341,0): 9, 2, 10, (586,342,0): 9, 2, 10, (586,343,0): 9, 2, 10, (586,344,0): 8, 1, 9, (586,345,0): 8, 1, 9, (586,346,0): 9, 2, 10, (586,347,0): 9, 2, 10, (586,348,0): 10, 3, 11, (586,349,0): 10, 3, 11, (586,350,0): 11, 4, 12, (586,351,0): 11, 4, 12, (586,352,0): 9, 4, 10, (586,353,0): 8, 3, 9, (586,354,0): 8, 3, 9, (586,355,0): 8, 3, 9, (586,356,0): 7, 2, 8, (586,357,0): 7, 2, 8, (586,358,0): 6, 1, 7, (586,359,0): 6, 1, 7, (586,360,0): 9, 4, 10, (586,361,0): 9, 4, 10, (586,362,0): 9, 4, 10, (586,363,0): 9, 4, 10, (586,364,0): 9, 4, 10, (586,365,0): 9, 4, 10, (586,366,0): 9, 4, 10, (586,367,0): 9, 4, 10, (586,368,0): 9, 4, 11, (586,369,0): 9, 4, 11, (586,370,0): 9, 4, 11, (586,371,0): 9, 4, 11, (586,372,0): 9, 4, 11, (586,373,0): 9, 4, 11, (586,374,0): 9, 4, 11, (586,375,0): 9, 4, 11, (586,376,0): 9, 4, 11, (586,377,0): 9, 4, 11, (586,378,0): 9, 4, 11, (586,379,0): 10, 5, 12, (586,380,0): 10, 5, 12, (586,381,0): 11, 6, 13, (586,382,0): 11, 6, 13, (586,383,0): 13, 6, 13, (586,384,0): 13, 4, 9, (586,385,0): 15, 4, 8, (586,386,0): 15, 4, 8, (586,387,0): 15, 4, 8, (586,388,0): 16, 5, 9, (586,389,0): 17, 6, 10, (586,390,0): 18, 6, 10, (586,391,0): 18, 6, 10, (586,392,0): 22, 7, 12, (586,393,0): 21, 6, 11, (586,394,0): 22, 5, 11, (586,395,0): 21, 4, 10, (586,396,0): 21, 4, 10, (586,397,0): 22, 5, 11, (586,398,0): 22, 5, 11, (586,399,0): 23, 7, 10, (586,400,0): 23, 7, 10, (586,401,0): 23, 7, 8, (586,402,0): 23, 7, 8, (586,403,0): 23, 7, 8, (586,404,0): 23, 7, 8, (586,405,0): 23, 7, 8, (586,406,0): 23, 7, 8, (586,407,0): 23, 7, 8, (586,408,0): 22, 6, 7, (586,409,0): 22, 6, 7, (586,410,0): 22, 6, 7, (586,411,0): 22, 6, 7, (586,412,0): 22, 6, 7, (586,413,0): 22, 6, 7, (586,414,0): 22, 6, 7, (586,415,0): 22, 6, 7, (586,416,0): 19, 7, 7, (586,417,0): 18, 8, 7, (586,418,0): 19, 7, 7, (586,419,0): 20, 8, 8, (586,420,0): 21, 9, 9, (586,421,0): 23, 11, 11, (586,422,0): 28, 14, 14, (586,423,0): 29, 15, 15, (586,424,0): 33, 19, 19, (586,425,0): 32, 18, 18, (586,426,0): 31, 15, 16, (586,427,0): 30, 14, 15, (586,428,0): 33, 14, 16, (586,429,0): 35, 16, 18, (586,430,0): 37, 18, 20, (586,431,0): 39, 20, 22, (586,432,0): 38, 22, 23, (586,433,0): 39, 23, 24, (586,434,0): 40, 24, 25, (586,435,0): 41, 25, 26, (586,436,0): 41, 25, 26, (586,437,0): 40, 24, 25, (586,438,0): 39, 23, 24, (586,439,0): 38, 22, 23, (586,440,0): 36, 20, 21, (586,441,0): 37, 21, 22, (586,442,0): 37, 21, 22, (586,443,0): 37, 21, 22, (586,444,0): 35, 19, 20, (586,445,0): 34, 18, 19, (586,446,0): 32, 16, 17, (586,447,0): 31, 15, 16, (586,448,0): 27, 11, 11, (586,449,0): 27, 11, 11, (586,450,0): 27, 11, 11, (586,451,0): 26, 12, 11, (586,452,0): 26, 12, 12, (586,453,0): 26, 12, 12, (586,454,0): 24, 12, 14, (586,455,0): 24, 12, 14, (586,456,0): 20, 8, 10, (586,457,0): 20, 10, 11, (586,458,0): 21, 10, 14, (586,459,0): 21, 10, 14, (586,460,0): 19, 10, 15, (586,461,0): 18, 9, 14, (586,462,0): 17, 8, 13, (586,463,0): 16, 7, 12, (586,464,0): 11, 4, 11, (586,465,0): 11, 4, 11, (586,466,0): 13, 3, 11, (586,467,0): 13, 3, 11, (586,468,0): 13, 4, 9, (586,469,0): 13, 4, 9, (586,470,0): 14, 3, 7, (586,471,0): 14, 3, 7, (586,472,0): 16, 4, 8, (586,473,0): 16, 4, 8, (586,474,0): 16, 4, 6, (586,475,0): 16, 4, 6, (586,476,0): 18, 4, 4, (586,477,0): 18, 4, 4, (586,478,0): 18, 4, 4, (586,479,0): 18, 4, 4, (586,480,0): 14, 2, 4, (586,481,0): 13, 3, 4, (586,482,0): 11, 1, 2, (586,483,0): 11, 1, 2, (586,484,0): 11, 1, 2, (586,485,0): 11, 1, 2, (586,486,0): 13, 3, 4, (586,487,0): 13, 3, 4, (586,488,0): 14, 4, 5, (586,489,0): 14, 4, 5, (586,490,0): 14, 4, 5, (586,491,0): 14, 4, 5, (586,492,0): 14, 4, 5, (586,493,0): 14, 4, 5, (586,494,0): 14, 4, 5, (586,495,0): 15, 3, 5, (586,496,0): 19, 3, 4, (586,497,0): 19, 3, 4, (586,498,0): 19, 3, 4, (586,499,0): 20, 4, 5, (586,500,0): 22, 3, 5, (586,501,0): 23, 4, 6, (586,502,0): 23, 4, 6, (586,503,0): 23, 4, 6, (586,504,0): 25, 5, 7, (586,505,0): 26, 6, 8, (586,506,0): 29, 7, 10, (586,507,0): 30, 8, 11, (586,508,0): 31, 9, 12, (586,509,0): 30, 8, 11, (586,510,0): 30, 8, 11, (586,511,0): 29, 7, 10, (586,512,0): 26, 6, 7, (586,513,0): 25, 7, 7, (586,514,0): 25, 7, 7, (586,515,0): 25, 7, 7, (586,516,0): 27, 9, 9, (586,517,0): 29, 11, 11, (586,518,0): 32, 14, 14, (586,519,0): 33, 15, 15, (586,520,0): 34, 16, 16, (586,521,0): 33, 15, 15, (586,522,0): 31, 13, 13, (586,523,0): 29, 11, 11, (586,524,0): 27, 9, 9, (586,525,0): 24, 6, 6, (586,526,0): 22, 4, 4, (586,527,0): 20, 4, 5, (586,528,0): 17, 0, 8, (586,529,0): 17, 1, 11, (586,530,0): 15, 2, 11, (586,531,0): 15, 2, 11, (586,532,0): 15, 2, 11, (586,533,0): 16, 3, 12, (586,534,0): 15, 4, 12, (586,535,0): 15, 4, 12, (586,536,0): 12, 2, 10, (586,537,0): 12, 2, 10, (586,538,0): 11, 1, 9, (586,539,0): 11, 1, 9, (586,540,0): 10, 3, 10, (586,541,0): 11, 4, 11, (586,542,0): 12, 5, 12, (586,543,0): 13, 6, 13, (586,544,0): 11, 2, 7, (586,545,0): 11, 2, 7, (586,546,0): 12, 3, 8, (586,547,0): 12, 3, 8, (586,548,0): 14, 3, 9, (586,549,0): 14, 3, 9, (586,550,0): 16, 3, 10, (586,551,0): 16, 3, 10, (586,552,0): 17, 4, 11, (586,553,0): 17, 4, 11, (586,554,0): 19, 4, 11, (586,555,0): 19, 4, 11, (586,556,0): 20, 3, 11, (586,557,0): 20, 3, 11, (586,558,0): 20, 3, 11, (586,559,0): 19, 4, 11, (586,560,0): 20, 8, 12, (586,561,0): 20, 8, 10, (586,562,0): 20, 8, 10, (586,563,0): 21, 9, 11, (586,564,0): 21, 9, 11, (586,565,0): 22, 10, 12, (586,566,0): 22, 10, 12, (586,567,0): 23, 11, 13, (586,568,0): 27, 15, 17, (586,569,0): 27, 15, 17, (586,570,0): 27, 15, 17, (586,571,0): 27, 15, 17, (586,572,0): 29, 17, 19, (586,573,0): 31, 19, 21, (586,574,0): 33, 21, 23, (586,575,0): 35, 23, 25, (586,576,0): 39, 25, 25, (586,577,0): 41, 25, 26, (586,578,0): 41, 25, 26, (586,579,0): 41, 25, 26, (586,580,0): 41, 25, 26, (586,581,0): 41, 25, 26, (586,582,0): 40, 26, 26, (586,583,0): 40, 26, 26, (586,584,0): 35, 23, 23, (586,585,0): 36, 24, 24, (586,586,0): 36, 26, 25, (586,587,0): 37, 27, 26, (586,588,0): 37, 27, 26, (586,589,0): 36, 26, 25, (586,590,0): 35, 25, 24, (586,591,0): 34, 24, 23, (586,592,0): 35, 25, 24, (586,593,0): 35, 27, 25, (586,594,0): 36, 26, 25, (586,595,0): 36, 28, 26, (586,596,0): 37, 27, 26, (586,597,0): 37, 29, 27, (586,598,0): 38, 28, 27, (586,599,0): 37, 29, 27, (587,0,0): 31, 54, 68, (587,1,0): 31, 54, 68, (587,2,0): 31, 54, 68, (587,3,0): 31, 54, 68, (587,4,0): 31, 54, 68, (587,5,0): 31, 54, 68, (587,6,0): 31, 54, 68, (587,7,0): 31, 54, 68, (587,8,0): 31, 54, 68, (587,9,0): 31, 54, 68, (587,10,0): 31, 54, 68, (587,11,0): 32, 55, 69, (587,12,0): 33, 56, 70, (587,13,0): 33, 56, 70, (587,14,0): 33, 56, 70, (587,15,0): 34, 57, 71, (587,16,0): 37, 56, 70, (587,17,0): 37, 56, 70, (587,18,0): 37, 56, 70, (587,19,0): 37, 56, 70, (587,20,0): 37, 56, 70, (587,21,0): 37, 56, 70, (587,22,0): 37, 56, 70, (587,23,0): 37, 56, 70, (587,24,0): 38, 57, 71, (587,25,0): 37, 56, 70, (587,26,0): 37, 56, 70, (587,27,0): 36, 55, 69, (587,28,0): 37, 56, 70, (587,29,0): 38, 57, 71, (587,30,0): 40, 59, 73, (587,31,0): 41, 60, 74, (587,32,0): 39, 57, 71, (587,33,0): 39, 57, 71, (587,34,0): 40, 58, 72, (587,35,0): 40, 58, 72, (587,36,0): 42, 58, 71, (587,37,0): 42, 58, 71, (587,38,0): 46, 58, 72, (587,39,0): 46, 58, 72, (587,40,0): 50, 60, 72, (587,41,0): 50, 60, 72, (587,42,0): 52, 58, 70, (587,43,0): 53, 59, 71, (587,44,0): 56, 60, 72, (587,45,0): 56, 60, 72, (587,46,0): 56, 60, 71, (587,47,0): 57, 61, 72, (587,48,0): 57, 60, 75, (587,49,0): 57, 60, 75, (587,50,0): 57, 60, 75, (587,51,0): 58, 61, 76, (587,52,0): 58, 61, 76, (587,53,0): 59, 62, 77, (587,54,0): 59, 62, 77, (587,55,0): 59, 62, 77, (587,56,0): 60, 63, 78, (587,57,0): 60, 63, 78, (587,58,0): 60, 63, 78, (587,59,0): 61, 64, 79, (587,60,0): 62, 65, 80, (587,61,0): 62, 65, 80, (587,62,0): 62, 65, 80, (587,63,0): 64, 66, 81, (587,64,0): 66, 65, 81, (587,65,0): 67, 64, 81, (587,66,0): 67, 64, 81, (587,67,0): 68, 65, 82, (587,68,0): 68, 65, 82, (587,69,0): 69, 66, 83, (587,70,0): 69, 66, 83, (587,71,0): 69, 66, 83, (587,72,0): 70, 67, 84, (587,73,0): 70, 67, 84, (587,74,0): 70, 67, 84, (587,75,0): 70, 67, 84, (587,76,0): 70, 67, 84, (587,77,0): 70, 67, 84, (587,78,0): 70, 67, 84, (587,79,0): 70, 67, 84, (587,80,0): 68, 66, 87, (587,81,0): 68, 66, 87, (587,82,0): 66, 67, 87, (587,83,0): 65, 66, 86, (587,84,0): 65, 66, 86, (587,85,0): 64, 65, 85, (587,86,0): 63, 66, 85, (587,87,0): 63, 66, 85, (587,88,0): 64, 69, 88, (587,89,0): 64, 69, 88, (587,90,0): 63, 68, 87, (587,91,0): 61, 66, 85, (587,92,0): 59, 66, 84, (587,93,0): 58, 65, 83, (587,94,0): 57, 64, 82, (587,95,0): 56, 63, 81, (587,96,0): 59, 67, 86, (587,97,0): 59, 67, 86, (587,98,0): 59, 67, 86, (587,99,0): 59, 67, 86, (587,100,0): 59, 67, 86, (587,101,0): 59, 67, 86, (587,102,0): 59, 67, 86, (587,103,0): 59, 67, 86, (587,104,0): 60, 68, 87, (587,105,0): 60, 68, 87, (587,106,0): 60, 68, 87, (587,107,0): 60, 68, 87, (587,108,0): 60, 68, 87, (587,109,0): 60, 68, 87, (587,110,0): 60, 68, 87, (587,111,0): 58, 69, 87, (587,112,0): 54, 69, 88, (587,113,0): 53, 70, 88, (587,114,0): 54, 69, 88, (587,115,0): 55, 70, 89, (587,116,0): 59, 70, 88, (587,117,0): 59, 71, 87, (587,118,0): 62, 69, 87, (587,119,0): 64, 70, 86, (587,120,0): 66, 69, 84, (587,121,0): 67, 69, 82, (587,122,0): 68, 68, 80, (587,123,0): 69, 67, 78, (587,124,0): 69, 66, 77, (587,125,0): 68, 65, 76, (587,126,0): 70, 64, 76, (587,127,0): 70, 62, 73, (587,128,0): 74, 62, 74, (587,129,0): 76, 64, 74, (587,130,0): 79, 67, 77, (587,131,0): 82, 70, 80, (587,132,0): 84, 72, 82, (587,133,0): 86, 74, 86, (587,134,0): 84, 76, 87, (587,135,0): 84, 78, 90, (587,136,0): 80, 78, 92, (587,137,0): 75, 78, 95, (587,138,0): 71, 78, 97, (587,139,0): 66, 78, 100, (587,140,0): 62, 78, 104, (587,141,0): 57, 77, 104, (587,142,0): 54, 77, 108, (587,143,0): 52, 77, 107, (587,144,0): 53, 77, 105, (587,145,0): 53, 77, 103, (587,146,0): 53, 77, 103, (587,147,0): 53, 77, 103, (587,148,0): 53, 77, 105, (587,149,0): 53, 76, 107, (587,150,0): 53, 76, 108, (587,151,0): 53, 76, 108, (587,152,0): 54, 77, 111, (587,153,0): 54, 76, 113, (587,154,0): 54, 76, 115, (587,155,0): 54, 76, 115, (587,156,0): 54, 76, 117, (587,157,0): 54, 76, 117, (587,158,0): 54, 76, 117, (587,159,0): 53, 76, 117, (587,160,0): 49, 74, 114, (587,161,0): 47, 75, 114, (587,162,0): 47, 75, 114, (587,163,0): 47, 75, 114, (587,164,0): 47, 75, 114, (587,165,0): 47, 75, 114, (587,166,0): 47, 75, 115, (587,167,0): 47, 75, 115, (587,168,0): 47, 74, 117, (587,169,0): 48, 75, 118, (587,170,0): 48, 75, 120, (587,171,0): 49, 76, 121, (587,172,0): 49, 76, 121, (587,173,0): 50, 77, 122, (587,174,0): 50, 77, 122, (587,175,0): 50, 77, 122, (587,176,0): 50, 77, 122, (587,177,0): 50, 77, 122, (587,178,0): 50, 77, 122, (587,179,0): 50, 77, 122, (587,180,0): 50, 77, 122, (587,181,0): 50, 77, 122, (587,182,0): 50, 77, 122, (587,183,0): 50, 77, 122, (587,184,0): 50, 77, 122, (587,185,0): 51, 78, 123, (587,186,0): 51, 78, 123, (587,187,0): 52, 79, 124, (587,188,0): 52, 79, 124, (587,189,0): 53, 80, 125, (587,190,0): 53, 80, 125, (587,191,0): 52, 81, 125, (587,192,0): 49, 80, 126, (587,193,0): 49, 80, 126, (587,194,0): 49, 80, 127, (587,195,0): 49, 80, 127, (587,196,0): 49, 80, 127, (587,197,0): 49, 80, 127, (587,198,0): 49, 79, 129, (587,199,0): 49, 79, 129, (587,200,0): 50, 80, 132, (587,201,0): 50, 80, 132, (587,202,0): 50, 80, 132, (587,203,0): 50, 80, 132, (587,204,0): 50, 80, 134, (587,205,0): 50, 80, 134, (587,206,0): 50, 80, 134, (587,207,0): 49, 80, 135, (587,208,0): 52, 83, 140, (587,209,0): 51, 83, 140, (587,210,0): 52, 84, 141, (587,211,0): 52, 84, 141, (587,212,0): 53, 85, 144, (587,213,0): 53, 85, 144, (587,214,0): 54, 86, 145, (587,215,0): 54, 86, 145, (587,216,0): 56, 88, 149, (587,217,0): 56, 88, 149, (587,218,0): 56, 87, 151, (587,219,0): 57, 88, 152, (587,220,0): 57, 88, 152, (587,221,0): 58, 89, 153, (587,222,0): 58, 89, 154, (587,223,0): 58, 89, 153, (587,224,0): 59, 91, 152, (587,225,0): 59, 91, 152, (587,226,0): 57, 91, 152, (587,227,0): 58, 92, 153, (587,228,0): 58, 92, 155, (587,229,0): 59, 93, 156, (587,230,0): 58, 93, 157, (587,231,0): 58, 93, 159, (587,232,0): 59, 94, 162, (587,233,0): 57, 94, 162, (587,234,0): 58, 95, 165, (587,235,0): 59, 96, 167, (587,236,0): 59, 97, 170, (587,237,0): 60, 98, 171, (587,238,0): 61, 99, 172, (587,239,0): 61, 99, 172, (587,240,0): 63, 101, 172, (587,241,0): 64, 102, 173, (587,242,0): 64, 102, 175, (587,243,0): 65, 103, 176, (587,244,0): 67, 105, 178, (587,245,0): 68, 106, 179, (587,246,0): 68, 106, 181, (587,247,0): 69, 107, 182, (587,248,0): 68, 105, 183, (587,249,0): 68, 105, 183, (587,250,0): 69, 106, 184, (587,251,0): 70, 107, 185, (587,252,0): 71, 108, 188, (587,253,0): 72, 109, 189, (587,254,0): 73, 110, 190, (587,255,0): 73, 110, 190, (587,256,0): 75, 112, 192, (587,257,0): 76, 113, 191, (587,258,0): 78, 112, 186, (587,259,0): 79, 109, 179, (587,260,0): 84, 108, 172, (587,261,0): 85, 102, 156, (587,262,0): 74, 83, 126, (587,263,0): 63, 62, 96, (587,264,0): 57, 47, 71, (587,265,0): 58, 41, 59, (587,266,0): 56, 34, 46, (587,267,0): 52, 29, 39, (587,268,0): 50, 26, 39, (587,269,0): 47, 25, 38, (587,270,0): 40, 22, 38, (587,271,0): 37, 19, 35, (587,272,0): 39, 21, 33, (587,273,0): 39, 22, 32, (587,274,0): 38, 21, 31, (587,275,0): 35, 19, 29, (587,276,0): 31, 18, 27, (587,277,0): 29, 18, 26, (587,278,0): 28, 17, 25, (587,279,0): 26, 16, 24, (587,280,0): 27, 17, 25, (587,281,0): 27, 17, 25, (587,282,0): 29, 18, 26, (587,283,0): 30, 17, 26, (587,284,0): 32, 16, 26, (587,285,0): 32, 16, 26, (587,286,0): 33, 16, 26, (587,287,0): 33, 16, 26, (587,288,0): 31, 15, 26, (587,289,0): 29, 16, 26, (587,290,0): 29, 16, 26, (587,291,0): 29, 16, 26, (587,292,0): 29, 16, 26, (587,293,0): 29, 16, 26, (587,294,0): 29, 16, 26, (587,295,0): 29, 16, 26, (587,296,0): 24, 12, 22, (587,297,0): 24, 12, 22, (587,298,0): 24, 12, 22, (587,299,0): 24, 12, 22, (587,300,0): 23, 11, 21, (587,301,0): 22, 12, 21, (587,302,0): 23, 11, 21, (587,303,0): 22, 12, 21, (587,304,0): 21, 11, 20, (587,305,0): 20, 10, 19, (587,306,0): 20, 10, 19, (587,307,0): 20, 10, 19, (587,308,0): 19, 9, 18, (587,309,0): 19, 9, 18, (587,310,0): 18, 8, 17, (587,311,0): 18, 8, 17, (587,312,0): 17, 7, 16, (587,313,0): 17, 7, 16, (587,314,0): 17, 7, 16, (587,315,0): 17, 7, 16, (587,316,0): 17, 7, 16, (587,317,0): 17, 7, 16, (587,318,0): 17, 7, 16, (587,319,0): 15, 8, 16, (587,320,0): 12, 7, 14, (587,321,0): 12, 7, 14, (587,322,0): 12, 7, 14, (587,323,0): 11, 6, 13, (587,324,0): 11, 6, 13, (587,325,0): 11, 6, 13, (587,326,0): 10, 5, 12, (587,327,0): 10, 5, 12, (587,328,0): 13, 8, 15, (587,329,0): 12, 7, 14, (587,330,0): 12, 7, 14, (587,331,0): 12, 7, 14, (587,332,0): 11, 6, 13, (587,333,0): 10, 5, 12, (587,334,0): 10, 5, 12, (587,335,0): 10, 5, 12, (587,336,0): 10, 3, 11, (587,337,0): 10, 3, 11, (587,338,0): 9, 2, 10, (587,339,0): 9, 2, 10, (587,340,0): 9, 2, 10, (587,341,0): 9, 2, 10, (587,342,0): 9, 2, 10, (587,343,0): 9, 2, 10, (587,344,0): 10, 3, 11, (587,345,0): 10, 3, 11, (587,346,0): 10, 3, 11, (587,347,0): 11, 4, 12, (587,348,0): 11, 4, 12, (587,349,0): 12, 5, 13, (587,350,0): 12, 5, 13, (587,351,0): 13, 6, 14, (587,352,0): 10, 5, 11, (587,353,0): 10, 5, 11, (587,354,0): 9, 4, 10, (587,355,0): 9, 4, 10, (587,356,0): 8, 3, 9, (587,357,0): 8, 3, 9, (587,358,0): 7, 2, 8, (587,359,0): 7, 2, 8, (587,360,0): 10, 5, 11, (587,361,0): 10, 5, 11, (587,362,0): 10, 5, 11, (587,363,0): 10, 5, 11, (587,364,0): 10, 5, 11, (587,365,0): 10, 5, 11, (587,366,0): 10, 5, 11, (587,367,0): 10, 5, 11, (587,368,0): 9, 4, 11, (587,369,0): 9, 4, 11, (587,370,0): 9, 4, 11, (587,371,0): 9, 4, 11, (587,372,0): 9, 4, 11, (587,373,0): 9, 4, 11, (587,374,0): 9, 4, 11, (587,375,0): 9, 4, 11, (587,376,0): 9, 4, 11, (587,377,0): 10, 5, 12, (587,378,0): 10, 5, 12, (587,379,0): 10, 5, 12, (587,380,0): 11, 6, 13, (587,381,0): 12, 7, 14, (587,382,0): 12, 7, 14, (587,383,0): 13, 6, 13, (587,384,0): 14, 5, 10, (587,385,0): 15, 4, 8, (587,386,0): 15, 4, 8, (587,387,0): 16, 5, 9, (587,388,0): 16, 5, 9, (587,389,0): 17, 6, 10, (587,390,0): 18, 6, 10, (587,391,0): 19, 7, 11, (587,392,0): 21, 6, 11, (587,393,0): 21, 6, 11, (587,394,0): 22, 5, 11, (587,395,0): 22, 5, 11, (587,396,0): 22, 5, 11, (587,397,0): 22, 5, 11, (587,398,0): 22, 5, 11, (587,399,0): 22, 6, 9, (587,400,0): 23, 7, 10, (587,401,0): 23, 7, 8, (587,402,0): 23, 7, 8, (587,403,0): 23, 7, 8, (587,404,0): 23, 7, 8, (587,405,0): 23, 7, 8, (587,406,0): 23, 7, 8, (587,407,0): 23, 7, 8, (587,408,0): 22, 6, 7, (587,409,0): 22, 6, 7, (587,410,0): 22, 6, 7, (587,411,0): 22, 6, 7, (587,412,0): 22, 6, 7, (587,413,0): 22, 6, 7, (587,414,0): 22, 6, 7, (587,415,0): 21, 7, 7, (587,416,0): 18, 6, 6, (587,417,0): 16, 6, 5, (587,418,0): 16, 6, 5, (587,419,0): 17, 7, 6, (587,420,0): 19, 7, 7, (587,421,0): 21, 9, 9, (587,422,0): 25, 11, 11, (587,423,0): 26, 12, 12, (587,424,0): 31, 17, 17, (587,425,0): 30, 16, 16, (587,426,0): 30, 14, 15, (587,427,0): 29, 13, 14, (587,428,0): 32, 13, 15, (587,429,0): 34, 15, 17, (587,430,0): 35, 16, 18, (587,431,0): 37, 18, 20, (587,432,0): 37, 21, 22, (587,433,0): 37, 21, 22, (587,434,0): 39, 23, 24, (587,435,0): 40, 24, 25, (587,436,0): 40, 24, 25, (587,437,0): 40, 24, 25, (587,438,0): 39, 23, 24, (587,439,0): 38, 22, 23, (587,440,0): 37, 21, 22, (587,441,0): 37, 21, 22, (587,442,0): 37, 21, 22, (587,443,0): 37, 21, 22, (587,444,0): 36, 20, 21, (587,445,0): 34, 18, 19, (587,446,0): 32, 16, 17, (587,447,0): 31, 15, 16, (587,448,0): 27, 11, 11, (587,449,0): 27, 11, 11, (587,450,0): 27, 11, 11, (587,451,0): 27, 11, 11, (587,452,0): 25, 11, 11, (587,453,0): 25, 11, 11, (587,454,0): 25, 10, 13, (587,455,0): 22, 10, 12, (587,456,0): 23, 11, 13, (587,457,0): 23, 11, 13, (587,458,0): 21, 10, 14, (587,459,0): 21, 10, 14, (587,460,0): 20, 11, 16, (587,461,0): 19, 10, 15, (587,462,0): 18, 9, 14, (587,463,0): 18, 9, 14, (587,464,0): 13, 6, 13, (587,465,0): 13, 6, 13, (587,466,0): 14, 4, 12, (587,467,0): 14, 4, 12, (587,468,0): 14, 5, 10, (587,469,0): 13, 4, 9, (587,470,0): 14, 3, 7, (587,471,0): 14, 3, 7, (587,472,0): 16, 4, 8, (587,473,0): 16, 4, 8, (587,474,0): 16, 4, 6, (587,475,0): 16, 4, 6, (587,476,0): 18, 4, 4, (587,477,0): 18, 4, 4, (587,478,0): 18, 4, 4, (587,479,0): 16, 4, 4, (587,480,0): 14, 2, 4, (587,481,0): 13, 3, 4, (587,482,0): 11, 1, 2, (587,483,0): 11, 1, 2, (587,484,0): 11, 1, 2, (587,485,0): 11, 1, 2, (587,486,0): 13, 3, 4, (587,487,0): 13, 3, 4, (587,488,0): 14, 4, 5, (587,489,0): 14, 4, 5, (587,490,0): 14, 4, 5, (587,491,0): 14, 4, 5, (587,492,0): 14, 4, 5, (587,493,0): 14, 4, 5, (587,494,0): 14, 4, 5, (587,495,0): 15, 3, 5, (587,496,0): 17, 3, 3, (587,497,0): 18, 2, 3, (587,498,0): 18, 2, 3, (587,499,0): 19, 3, 4, (587,500,0): 21, 2, 4, (587,501,0): 22, 3, 5, (587,502,0): 22, 3, 5, (587,503,0): 23, 4, 6, (587,504,0): 25, 5, 7, (587,505,0): 26, 6, 8, (587,506,0): 29, 7, 10, (587,507,0): 30, 8, 11, (587,508,0): 31, 9, 12, (587,509,0): 30, 8, 11, (587,510,0): 32, 7, 11, (587,511,0): 29, 7, 10, (587,512,0): 27, 7, 8, (587,513,0): 26, 8, 8, (587,514,0): 25, 7, 7, (587,515,0): 25, 7, 7, (587,516,0): 27, 9, 9, (587,517,0): 30, 12, 12, (587,518,0): 33, 15, 15, (587,519,0): 35, 17, 17, (587,520,0): 36, 18, 18, (587,521,0): 35, 17, 17, (587,522,0): 32, 14, 14, (587,523,0): 30, 12, 12, (587,524,0): 27, 9, 9, (587,525,0): 24, 6, 6, (587,526,0): 22, 4, 4, (587,527,0): 21, 2, 4, (587,528,0): 17, 0, 8, (587,529,0): 16, 0, 10, (587,530,0): 15, 2, 11, (587,531,0): 15, 2, 11, (587,532,0): 16, 3, 12, (587,533,0): 17, 4, 13, (587,534,0): 16, 5, 13, (587,535,0): 17, 6, 14, (587,536,0): 14, 4, 12, (587,537,0): 13, 3, 11, (587,538,0): 11, 1, 9, (587,539,0): 10, 0, 8, (587,540,0): 8, 1, 8, (587,541,0): 10, 3, 10, (587,542,0): 12, 5, 12, (587,543,0): 13, 6, 13, (587,544,0): 11, 2, 7, (587,545,0): 11, 2, 7, (587,546,0): 12, 3, 8, (587,547,0): 12, 3, 8, (587,548,0): 14, 3, 9, (587,549,0): 14, 3, 9, (587,550,0): 16, 3, 10, (587,551,0): 16, 3, 10, (587,552,0): 16, 3, 10, (587,553,0): 16, 3, 10, (587,554,0): 19, 4, 11, (587,555,0): 19, 4, 11, (587,556,0): 20, 3, 11, (587,557,0): 21, 4, 12, (587,558,0): 21, 4, 12, (587,559,0): 21, 4, 10, (587,560,0): 22, 7, 10, (587,561,0): 21, 9, 11, (587,562,0): 21, 9, 11, (587,563,0): 21, 9, 11, (587,564,0): 22, 10, 12, (587,565,0): 23, 11, 13, (587,566,0): 23, 11, 13, (587,567,0): 23, 11, 13, (587,568,0): 27, 15, 17, (587,569,0): 26, 14, 16, (587,570,0): 26, 14, 16, (587,571,0): 27, 15, 17, (587,572,0): 28, 16, 18, (587,573,0): 30, 18, 20, (587,574,0): 32, 20, 22, (587,575,0): 35, 20, 23, (587,576,0): 38, 22, 23, (587,577,0): 39, 23, 24, (587,578,0): 39, 23, 24, (587,579,0): 40, 24, 25, (587,580,0): 41, 25, 26, (587,581,0): 41, 25, 26, (587,582,0): 41, 27, 27, (587,583,0): 41, 27, 27, (587,584,0): 35, 23, 23, (587,585,0): 36, 24, 24, (587,586,0): 35, 25, 24, (587,587,0): 35, 25, 24, (587,588,0): 35, 25, 24, (587,589,0): 35, 25, 24, (587,590,0): 35, 25, 24, (587,591,0): 34, 24, 23, (587,592,0): 36, 26, 25, (587,593,0): 36, 26, 25, (587,594,0): 37, 25, 25, (587,595,0): 37, 27, 26, (587,596,0): 38, 26, 26, (587,597,0): 38, 28, 27, (587,598,0): 39, 27, 27, (587,599,0): 39, 29, 28, (588,0,0): 31, 54, 68, (588,1,0): 31, 54, 68, (588,2,0): 31, 54, 68, (588,3,0): 31, 54, 68, (588,4,0): 31, 54, 68, (588,5,0): 31, 54, 68, (588,6,0): 31, 54, 68, (588,7,0): 31, 54, 68, (588,8,0): 30, 53, 67, (588,9,0): 31, 54, 68, (588,10,0): 31, 54, 68, (588,11,0): 31, 54, 68, (588,12,0): 32, 55, 69, (588,13,0): 33, 56, 70, (588,14,0): 33, 56, 70, (588,15,0): 33, 56, 70, (588,16,0): 36, 55, 69, (588,17,0): 36, 55, 69, (588,18,0): 36, 55, 69, (588,19,0): 36, 55, 69, (588,20,0): 36, 55, 69, (588,21,0): 36, 55, 69, (588,22,0): 36, 55, 69, (588,23,0): 36, 55, 69, (588,24,0): 38, 57, 71, (588,25,0): 37, 56, 70, (588,26,0): 37, 56, 70, (588,27,0): 36, 55, 69, (588,28,0): 37, 56, 70, (588,29,0): 38, 57, 71, (588,30,0): 40, 59, 73, (588,31,0): 41, 60, 74, (588,32,0): 39, 57, 71, (588,33,0): 39, 57, 71, (588,34,0): 40, 58, 72, (588,35,0): 40, 58, 72, (588,36,0): 42, 58, 71, (588,37,0): 42, 58, 71, (588,38,0): 46, 58, 72, (588,39,0): 46, 58, 72, (588,40,0): 49, 59, 71, (588,41,0): 50, 60, 72, (588,42,0): 52, 58, 70, (588,43,0): 52, 58, 70, (588,44,0): 55, 59, 71, (588,45,0): 56, 60, 72, (588,46,0): 56, 60, 71, (588,47,0): 56, 60, 71, (588,48,0): 57, 60, 75, (588,49,0): 57, 60, 75, (588,50,0): 57, 60, 75, (588,51,0): 58, 61, 76, (588,52,0): 58, 61, 76, (588,53,0): 59, 62, 77, (588,54,0): 59, 62, 77, (588,55,0): 59, 62, 77, (588,56,0): 59, 62, 77, (588,57,0): 60, 63, 78, (588,58,0): 60, 63, 78, (588,59,0): 60, 63, 78, (588,60,0): 61, 64, 79, (588,61,0): 62, 65, 80, (588,62,0): 62, 65, 80, (588,63,0): 63, 65, 80, (588,64,0): 66, 65, 81, (588,65,0): 67, 64, 81, (588,66,0): 67, 64, 81, (588,67,0): 68, 65, 82, (588,68,0): 68, 65, 82, (588,69,0): 69, 66, 83, (588,70,0): 69, 66, 83, (588,71,0): 69, 66, 83, (588,72,0): 70, 67, 84, (588,73,0): 70, 67, 84, (588,74,0): 70, 67, 84, (588,75,0): 70, 67, 84, (588,76,0): 70, 67, 84, (588,77,0): 70, 67, 84, (588,78,0): 70, 67, 84, (588,79,0): 70, 67, 84, (588,80,0): 69, 67, 88, (588,81,0): 69, 67, 88, (588,82,0): 66, 67, 87, (588,83,0): 65, 66, 86, (588,84,0): 65, 66, 86, (588,85,0): 64, 65, 85, (588,86,0): 62, 65, 84, (588,87,0): 62, 65, 84, (588,88,0): 64, 69, 88, (588,89,0): 63, 68, 87, (588,90,0): 62, 67, 86, (588,91,0): 61, 66, 85, (588,92,0): 59, 66, 84, (588,93,0): 57, 64, 82, (588,94,0): 56, 63, 81, (588,95,0): 56, 63, 81, (588,96,0): 58, 66, 85, (588,97,0): 58, 66, 85, (588,98,0): 58, 66, 85, (588,99,0): 58, 66, 85, (588,100,0): 58, 66, 85, (588,101,0): 58, 66, 85, (588,102,0): 58, 66, 85, (588,103,0): 58, 66, 85, (588,104,0): 59, 67, 86, (588,105,0): 59, 67, 86, (588,106,0): 59, 67, 86, (588,107,0): 59, 67, 86, (588,108,0): 59, 67, 86, (588,109,0): 59, 67, 86, (588,110,0): 59, 67, 86, (588,111,0): 57, 68, 86, (588,112,0): 53, 68, 87, (588,113,0): 53, 70, 90, (588,114,0): 54, 69, 88, (588,115,0): 54, 69, 88, (588,116,0): 58, 69, 87, (588,117,0): 59, 71, 87, (588,118,0): 62, 69, 87, (588,119,0): 63, 69, 85, (588,120,0): 66, 69, 84, (588,121,0): 66, 68, 81, (588,122,0): 69, 67, 80, (588,123,0): 69, 66, 77, (588,124,0): 68, 65, 76, (588,125,0): 70, 64, 74, (588,126,0): 70, 62, 73, (588,127,0): 70, 63, 71, (588,128,0): 76, 64, 74, (588,129,0): 78, 65, 75, (588,130,0): 81, 69, 79, (588,131,0): 84, 72, 82, (588,132,0): 85, 75, 86, (588,133,0): 84, 76, 89, (588,134,0): 81, 77, 91, (588,135,0): 79, 78, 94, (588,136,0): 73, 76, 95, (588,137,0): 69, 77, 98, (588,138,0): 65, 77, 101, (588,139,0): 61, 77, 103, (588,140,0): 57, 77, 104, (588,141,0): 53, 76, 107, (588,142,0): 52, 77, 108, (588,143,0): 50, 77, 107, (588,144,0): 51, 77, 104, (588,145,0): 51, 77, 102, (588,146,0): 51, 77, 104, (588,147,0): 51, 77, 104, (588,148,0): 51, 76, 106, (588,149,0): 51, 76, 106, (588,150,0): 51, 76, 107, (588,151,0): 51, 76, 107, (588,152,0): 54, 77, 111, (588,153,0): 54, 76, 113, (588,154,0): 54, 76, 115, (588,155,0): 54, 76, 115, (588,156,0): 54, 76, 117, (588,157,0): 54, 76, 117, (588,158,0): 54, 75, 118, (588,159,0): 53, 76, 118, (588,160,0): 47, 75, 114, (588,161,0): 46, 76, 114, (588,162,0): 46, 76, 114, (588,163,0): 46, 76, 114, (588,164,0): 46, 75, 115, (588,165,0): 46, 75, 115, (588,166,0): 46, 75, 117, (588,167,0): 46, 75, 117, (588,168,0): 46, 75, 117, (588,169,0): 46, 75, 117, (588,170,0): 46, 75, 119, (588,171,0): 47, 76, 120, (588,172,0): 47, 75, 122, (588,173,0): 48, 76, 123, (588,174,0): 48, 76, 123, (588,175,0): 49, 77, 124, (588,176,0): 49, 77, 124, (588,177,0): 49, 77, 124, (588,178,0): 49, 77, 124, (588,179,0): 49, 77, 124, (588,180,0): 49, 77, 124, (588,181,0): 49, 77, 124, (588,182,0): 49, 77, 124, (588,183,0): 49, 77, 124, (588,184,0): 49, 77, 124, (588,185,0): 49, 77, 124, (588,186,0): 49, 77, 124, (588,187,0): 50, 78, 125, (588,188,0): 50, 78, 125, (588,189,0): 51, 79, 126, (588,190,0): 51, 79, 126, (588,191,0): 52, 80, 127, (588,192,0): 49, 80, 127, (588,193,0): 49, 80, 127, (588,194,0): 49, 80, 127, (588,195,0): 49, 80, 127, (588,196,0): 49, 79, 129, (588,197,0): 49, 79, 129, (588,198,0): 49, 79, 129, (588,199,0): 49, 79, 129, (588,200,0): 50, 80, 132, (588,201,0): 50, 80, 132, (588,202,0): 50, 80, 134, (588,203,0): 50, 80, 134, (588,204,0): 50, 80, 134, (588,205,0): 50, 80, 134, (588,206,0): 50, 79, 135, (588,207,0): 49, 80, 135, (588,208,0): 52, 83, 140, (588,209,0): 51, 83, 140, (588,210,0): 52, 84, 141, (588,211,0): 52, 84, 141, (588,212,0): 53, 85, 144, (588,213,0): 53, 85, 144, (588,214,0): 54, 86, 145, (588,215,0): 54, 86, 145, (588,216,0): 56, 88, 149, (588,217,0): 56, 88, 149, (588,218,0): 56, 87, 151, (588,219,0): 57, 88, 152, (588,220,0): 57, 88, 152, (588,221,0): 58, 89, 153, (588,222,0): 58, 89, 154, (588,223,0): 58, 89, 153, (588,224,0): 59, 91, 152, (588,225,0): 59, 91, 150, (588,226,0): 59, 91, 152, (588,227,0): 60, 92, 153, (588,228,0): 58, 92, 155, (588,229,0): 59, 93, 156, (588,230,0): 59, 93, 157, (588,231,0): 58, 93, 159, (588,232,0): 59, 94, 162, (588,233,0): 59, 94, 162, (588,234,0): 58, 95, 165, (588,235,0): 59, 96, 166, (588,236,0): 60, 97, 168, (588,237,0): 61, 98, 169, (588,238,0): 61, 99, 172, (588,239,0): 61, 99, 172, (588,240,0): 64, 101, 172, (588,241,0): 65, 102, 173, (588,242,0): 65, 102, 173, (588,243,0): 66, 103, 174, (588,244,0): 68, 104, 178, (588,245,0): 69, 105, 179, (588,246,0): 69, 105, 179, (588,247,0): 70, 106, 180, (588,248,0): 69, 105, 181, (588,249,0): 69, 105, 181, (588,250,0): 70, 106, 184, (588,251,0): 71, 107, 185, (588,252,0): 72, 108, 186, (588,253,0): 73, 109, 187, (588,254,0): 74, 109, 190, (588,255,0): 74, 109, 190, (588,256,0): 75, 110, 192, (588,257,0): 77, 112, 193, (588,258,0): 79, 111, 186, (588,259,0): 80, 109, 177, (588,260,0): 84, 108, 168, (588,261,0): 84, 102, 152, (588,262,0): 72, 81, 120, (588,263,0): 60, 60, 88, (588,264,0): 53, 44, 65, (588,265,0): 56, 40, 53, (588,266,0): 55, 33, 45, (588,267,0): 55, 29, 38, (588,268,0): 55, 29, 40, (588,269,0): 51, 27, 40, (588,270,0): 47, 25, 38, (588,271,0): 43, 23, 35, (588,272,0): 42, 22, 34, (588,273,0): 39, 22, 32, (588,274,0): 38, 21, 31, (588,275,0): 36, 20, 30, (588,276,0): 32, 19, 28, (588,277,0): 29, 18, 26, (588,278,0): 28, 17, 25, (588,279,0): 28, 17, 25, (588,280,0): 29, 18, 26, (588,281,0): 29, 18, 26, (588,282,0): 29, 16, 25, (588,283,0): 29, 16, 25, (588,284,0): 31, 15, 25, (588,285,0): 32, 15, 25, (588,286,0): 34, 14, 25, (588,287,0): 32, 15, 25, (588,288,0): 27, 14, 24, (588,289,0): 26, 14, 24, (588,290,0): 26, 14, 24, (588,291,0): 26, 14, 24, (588,292,0): 26, 14, 24, (588,293,0): 26, 14, 24, (588,294,0): 26, 14, 24, (588,295,0): 26, 14, 24, (588,296,0): 24, 12, 22, (588,297,0): 23, 11, 21, (588,298,0): 24, 11, 21, (588,299,0): 23, 10, 20, (588,300,0): 23, 10, 20, (588,301,0): 21, 9, 19, (588,302,0): 21, 8, 18, (588,303,0): 20, 8, 18, (588,304,0): 19, 9, 18, (588,305,0): 17, 10, 18, (588,306,0): 16, 9, 17, (588,307,0): 16, 9, 17, (588,308,0): 15, 8, 16, (588,309,0): 15, 8, 16, (588,310,0): 15, 8, 16, (588,311,0): 14, 7, 15, (588,312,0): 15, 8, 16, (588,313,0): 15, 8, 16, (588,314,0): 15, 8, 16, (588,315,0): 15, 8, 16, (588,316,0): 15, 8, 16, (588,317,0): 15, 8, 16, (588,318,0): 15, 8, 16, (588,319,0): 15, 8, 16, (588,320,0): 13, 8, 15, (588,321,0): 13, 8, 15, (588,322,0): 12, 7, 14, (588,323,0): 12, 7, 14, (588,324,0): 11, 6, 13, (588,325,0): 10, 5, 12, (588,326,0): 10, 5, 12, (588,327,0): 9, 4, 11, (588,328,0): 12, 7, 14, (588,329,0): 12, 7, 14, (588,330,0): 12, 7, 14, (588,331,0): 11, 6, 13, (588,332,0): 10, 5, 12, (588,333,0): 10, 5, 12, (588,334,0): 10, 5, 12, (588,335,0): 9, 4, 11, (588,336,0): 9, 2, 10, (588,337,0): 9, 2, 10, (588,338,0): 9, 2, 10, (588,339,0): 9, 2, 10, (588,340,0): 9, 2, 10, (588,341,0): 9, 2, 10, (588,342,0): 10, 3, 11, (588,343,0): 10, 3, 11, (588,344,0): 11, 4, 12, (588,345,0): 12, 5, 13, (588,346,0): 12, 5, 13, (588,347,0): 13, 6, 14, (588,348,0): 13, 6, 14, (588,349,0): 14, 7, 15, (588,350,0): 14, 7, 15, (588,351,0): 14, 7, 15, (588,352,0): 12, 7, 13, (588,353,0): 12, 7, 13, (588,354,0): 12, 7, 13, (588,355,0): 11, 6, 12, (588,356,0): 11, 6, 12, (588,357,0): 10, 5, 11, (588,358,0): 10, 5, 11, (588,359,0): 9, 4, 10, (588,360,0): 12, 7, 13, (588,361,0): 12, 7, 13, (588,362,0): 12, 7, 13, (588,363,0): 12, 7, 13, (588,364,0): 12, 7, 13, (588,365,0): 12, 7, 13, (588,366,0): 12, 7, 13, (588,367,0): 12, 7, 13, (588,368,0): 10, 5, 12, (588,369,0): 10, 5, 12, (588,370,0): 10, 5, 12, (588,371,0): 10, 5, 12, (588,372,0): 10, 5, 12, (588,373,0): 10, 5, 12, (588,374,0): 10, 5, 12, (588,375,0): 10, 5, 12, (588,376,0): 10, 5, 12, (588,377,0): 10, 5, 12, (588,378,0): 10, 5, 12, (588,379,0): 11, 6, 13, (588,380,0): 12, 7, 14, (588,381,0): 12, 7, 14, (588,382,0): 12, 7, 14, (588,383,0): 14, 7, 14, (588,384,0): 14, 5, 10, (588,385,0): 16, 5, 9, (588,386,0): 16, 5, 9, (588,387,0): 17, 6, 10, (588,388,0): 17, 6, 10, (588,389,0): 18, 7, 11, (588,390,0): 19, 7, 11, (588,391,0): 19, 7, 11, (588,392,0): 21, 6, 11, (588,393,0): 21, 6, 11, (588,394,0): 22, 5, 11, (588,395,0): 22, 5, 11, (588,396,0): 22, 5, 11, (588,397,0): 22, 5, 11, (588,398,0): 22, 5, 11, (588,399,0): 22, 6, 9, (588,400,0): 26, 7, 11, (588,401,0): 26, 7, 9, (588,402,0): 26, 7, 9, (588,403,0): 26, 7, 9, (588,404,0): 26, 7, 9, (588,405,0): 26, 7, 9, (588,406,0): 24, 8, 9, (588,407,0): 24, 8, 9, (588,408,0): 22, 6, 7, (588,409,0): 22, 6, 7, (588,410,0): 22, 6, 7, (588,411,0): 22, 6, 7, (588,412,0): 21, 7, 7, (588,413,0): 21, 7, 7, (588,414,0): 21, 7, 7, (588,415,0): 19, 7, 7, (588,416,0): 17, 7, 6, (588,417,0): 16, 8, 6, (588,418,0): 15, 7, 5, (588,419,0): 15, 7, 5, (588,420,0): 17, 7, 6, (588,421,0): 19, 9, 8, (588,422,0): 22, 10, 10, (588,423,0): 23, 11, 11, (588,424,0): 29, 15, 15, (588,425,0): 29, 15, 15, (588,426,0): 30, 14, 15, (588,427,0): 30, 14, 15, (588,428,0): 32, 13, 15, (588,429,0): 33, 14, 16, (588,430,0): 34, 15, 17, (588,431,0): 35, 16, 18, (588,432,0): 35, 19, 20, (588,433,0): 36, 20, 21, (588,434,0): 38, 22, 23, (588,435,0): 39, 23, 24, (588,436,0): 40, 24, 25, (588,437,0): 40, 24, 25, (588,438,0): 39, 23, 24, (588,439,0): 39, 23, 24, (588,440,0): 37, 21, 22, (588,441,0): 38, 22, 23, (588,442,0): 38, 22, 23, (588,443,0): 38, 22, 23, (588,444,0): 37, 21, 22, (588,445,0): 35, 19, 20, (588,446,0): 33, 17, 18, (588,447,0): 32, 16, 17, (588,448,0): 29, 13, 13, (588,449,0): 29, 14, 11, (588,450,0): 28, 12, 12, (588,451,0): 27, 11, 11, (588,452,0): 27, 11, 11, (588,453,0): 25, 11, 10, (588,454,0): 24, 10, 10, (588,455,0): 24, 10, 10, (588,456,0): 24, 12, 14, (588,457,0): 23, 11, 13, (588,458,0): 22, 12, 13, (588,459,0): 21, 11, 12, (588,460,0): 20, 9, 13, (588,461,0): 20, 9, 13, (588,462,0): 20, 9, 13, (588,463,0): 19, 10, 15, (588,464,0): 14, 7, 14, (588,465,0): 14, 7, 14, (588,466,0): 13, 6, 13, (588,467,0): 13, 6, 13, (588,468,0): 14, 5, 10, (588,469,0): 13, 4, 9, (588,470,0): 13, 4, 7, (588,471,0): 12, 3, 6, (588,472,0): 15, 4, 8, (588,473,0): 15, 4, 8, (588,474,0): 16, 4, 6, (588,475,0): 16, 4, 6, (588,476,0): 16, 4, 4, (588,477,0): 16, 4, 4, (588,478,0): 18, 4, 4, (588,479,0): 16, 4, 4, (588,480,0): 14, 2, 4, (588,481,0): 13, 2, 6, (588,482,0): 11, 0, 4, (588,483,0): 11, 0, 4, (588,484,0): 11, 0, 4, (588,485,0): 11, 0, 4, (588,486,0): 13, 2, 6, (588,487,0): 13, 2, 6, (588,488,0): 13, 2, 6, (588,489,0): 13, 2, 6, (588,490,0): 13, 2, 6, (588,491,0): 13, 2, 6, (588,492,0): 13, 2, 6, (588,493,0): 13, 2, 6, (588,494,0): 13, 2, 6, (588,495,0): 14, 2, 4, (588,496,0): 17, 3, 3, (588,497,0): 17, 3, 3, (588,498,0): 17, 3, 3, (588,499,0): 18, 4, 4, (588,500,0): 19, 3, 4, (588,501,0): 20, 4, 5, (588,502,0): 22, 3, 5, (588,503,0): 23, 4, 6, (588,504,0): 25, 5, 7, (588,505,0): 26, 6, 8, (588,506,0): 29, 7, 10, (588,507,0): 30, 8, 11, (588,508,0): 33, 8, 12, (588,509,0): 32, 7, 11, (588,510,0): 33, 6, 11, (588,511,0): 31, 6, 10, (588,512,0): 30, 8, 10, (588,513,0): 28, 8, 9, (588,514,0): 26, 6, 7, (588,515,0): 26, 6, 7, (588,516,0): 28, 8, 9, (588,517,0): 31, 11, 12, (588,518,0): 35, 15, 16, (588,519,0): 37, 17, 18, (588,520,0): 38, 18, 19, (588,521,0): 37, 17, 18, (588,522,0): 35, 15, 16, (588,523,0): 32, 12, 13, (588,524,0): 29, 9, 10, (588,525,0): 26, 6, 7, (588,526,0): 24, 4, 5, (588,527,0): 22, 3, 5, (588,528,0): 17, 0, 8, (588,529,0): 17, 1, 11, (588,530,0): 15, 2, 11, (588,531,0): 16, 3, 12, (588,532,0): 17, 4, 13, (588,533,0): 17, 4, 13, (588,534,0): 17, 6, 14, (588,535,0): 17, 6, 14, (588,536,0): 15, 5, 13, (588,537,0): 14, 4, 12, (588,538,0): 12, 2, 10, (588,539,0): 10, 0, 8, (588,540,0): 8, 1, 8, (588,541,0): 9, 2, 9, (588,542,0): 11, 4, 11, (588,543,0): 12, 5, 12, (588,544,0): 11, 2, 7, (588,545,0): 12, 1, 5, (588,546,0): 13, 2, 6, (588,547,0): 13, 2, 6, (588,548,0): 14, 3, 7, (588,549,0): 14, 3, 7, (588,550,0): 16, 4, 8, (588,551,0): 16, 4, 8, (588,552,0): 18, 3, 8, (588,553,0): 18, 3, 8, (588,554,0): 20, 3, 9, (588,555,0): 20, 3, 9, (588,556,0): 21, 4, 10, (588,557,0): 22, 5, 11, (588,558,0): 22, 5, 11, (588,559,0): 23, 6, 12, (588,560,0): 23, 8, 11, (588,561,0): 23, 9, 9, (588,562,0): 23, 9, 9, (588,563,0): 24, 10, 10, (588,564,0): 25, 11, 11, (588,565,0): 25, 11, 11, (588,566,0): 25, 11, 11, (588,567,0): 26, 12, 12, (588,568,0): 28, 14, 14, (588,569,0): 28, 14, 14, (588,570,0): 28, 14, 14, (588,571,0): 28, 14, 14, (588,572,0): 29, 15, 15, (588,573,0): 30, 16, 16, (588,574,0): 32, 18, 18, (588,575,0): 33, 19, 19, (588,576,0): 36, 20, 21, (588,577,0): 37, 21, 22, (588,578,0): 38, 22, 23, (588,579,0): 39, 23, 24, (588,580,0): 40, 24, 25, (588,581,0): 42, 26, 27, (588,582,0): 42, 28, 28, (588,583,0): 42, 28, 28, (588,584,0): 36, 24, 24, (588,585,0): 36, 24, 24, (588,586,0): 35, 25, 24, (588,587,0): 34, 24, 23, (588,588,0): 34, 24, 23, (588,589,0): 35, 25, 24, (588,590,0): 35, 25, 24, (588,591,0): 35, 25, 24, (588,592,0): 38, 26, 26, (588,593,0): 38, 26, 26, (588,594,0): 40, 26, 26, (588,595,0): 39, 27, 27, (588,596,0): 42, 28, 28, (588,597,0): 40, 28, 28, (588,598,0): 42, 28, 28, (588,599,0): 41, 29, 29, (589,0,0): 31, 54, 68, (589,1,0): 31, 54, 68, (589,2,0): 31, 54, 68, (589,3,0): 31, 54, 68, (589,4,0): 31, 54, 68, (589,5,0): 31, 54, 68, (589,6,0): 31, 54, 68, (589,7,0): 31, 54, 68, (589,8,0): 30, 53, 67, (589,9,0): 30, 53, 67, (589,10,0): 30, 53, 67, (589,11,0): 31, 54, 68, (589,12,0): 31, 54, 68, (589,13,0): 32, 55, 69, (589,14,0): 32, 55, 69, (589,15,0): 33, 56, 70, (589,16,0): 36, 55, 69, (589,17,0): 36, 55, 69, (589,18,0): 36, 55, 69, (589,19,0): 36, 55, 69, (589,20,0): 36, 55, 69, (589,21,0): 36, 55, 69, (589,22,0): 36, 55, 69, (589,23,0): 36, 55, 69, (589,24,0): 38, 57, 71, (589,25,0): 37, 56, 70, (589,26,0): 37, 56, 70, (589,27,0): 36, 55, 69, (589,28,0): 37, 56, 70, (589,29,0): 38, 57, 71, (589,30,0): 40, 59, 73, (589,31,0): 41, 60, 74, (589,32,0): 39, 57, 71, (589,33,0): 39, 57, 71, (589,34,0): 40, 58, 72, (589,35,0): 40, 58, 72, (589,36,0): 42, 58, 71, (589,37,0): 42, 58, 71, (589,38,0): 46, 58, 72, (589,39,0): 46, 58, 72, (589,40,0): 49, 59, 71, (589,41,0): 49, 59, 71, (589,42,0): 51, 57, 69, (589,43,0): 52, 58, 70, (589,44,0): 54, 58, 70, (589,45,0): 55, 59, 71, (589,46,0): 55, 59, 70, (589,47,0): 56, 60, 71, (589,48,0): 57, 60, 75, (589,49,0): 57, 60, 75, (589,50,0): 57, 60, 75, (589,51,0): 58, 61, 76, (589,52,0): 58, 61, 76, (589,53,0): 59, 62, 77, (589,54,0): 59, 62, 77, (589,55,0): 59, 62, 77, (589,56,0): 59, 62, 77, (589,57,0): 59, 62, 77, (589,58,0): 59, 62, 77, (589,59,0): 60, 63, 78, (589,60,0): 60, 63, 78, (589,61,0): 61, 64, 79, (589,62,0): 61, 64, 79, (589,63,0): 63, 65, 80, (589,64,0): 66, 65, 81, (589,65,0): 67, 64, 81, (589,66,0): 67, 64, 81, (589,67,0): 68, 65, 82, (589,68,0): 68, 65, 82, (589,69,0): 69, 66, 83, (589,70,0): 69, 66, 83, (589,71,0): 69, 66, 83, (589,72,0): 70, 67, 84, (589,73,0): 70, 67, 84, (589,74,0): 70, 67, 84, (589,75,0): 70, 67, 84, (589,76,0): 70, 67, 84, (589,77,0): 70, 67, 84, (589,78,0): 70, 67, 84, (589,79,0): 70, 67, 84, (589,80,0): 70, 68, 89, (589,81,0): 69, 67, 88, (589,82,0): 66, 67, 87, (589,83,0): 66, 67, 87, (589,84,0): 64, 65, 85, (589,85,0): 64, 65, 85, (589,86,0): 62, 65, 84, (589,87,0): 61, 64, 83, (589,88,0): 62, 67, 86, (589,89,0): 62, 67, 86, (589,90,0): 61, 66, 85, (589,91,0): 60, 65, 84, (589,92,0): 58, 65, 83, (589,93,0): 57, 64, 82, (589,94,0): 57, 64, 82, (589,95,0): 57, 64, 82, (589,96,0): 58, 66, 85, (589,97,0): 58, 66, 85, (589,98,0): 58, 66, 85, (589,99,0): 58, 66, 85, (589,100,0): 58, 66, 85, (589,101,0): 58, 66, 85, (589,102,0): 58, 66, 85, (589,103,0): 58, 66, 85, (589,104,0): 57, 65, 84, (589,105,0): 57, 65, 84, (589,106,0): 57, 65, 84, (589,107,0): 57, 65, 84, (589,108,0): 57, 65, 84, (589,109,0): 57, 65, 84, (589,110,0): 57, 65, 84, (589,111,0): 55, 66, 84, (589,112,0): 53, 68, 89, (589,113,0): 52, 69, 89, (589,114,0): 53, 68, 87, (589,115,0): 54, 69, 88, (589,116,0): 57, 68, 86, (589,117,0): 60, 69, 86, (589,118,0): 61, 68, 86, (589,119,0): 63, 69, 83, (589,120,0): 64, 67, 82, (589,121,0): 67, 67, 79, (589,122,0): 68, 66, 79, (589,123,0): 68, 65, 76, (589,124,0): 70, 64, 74, (589,125,0): 70, 64, 74, (589,126,0): 71, 64, 72, (589,127,0): 72, 62, 71, (589,128,0): 79, 66, 75, (589,129,0): 81, 68, 77, (589,130,0): 83, 71, 81, (589,131,0): 85, 75, 86, (589,132,0): 84, 76, 89, (589,133,0): 81, 77, 91, (589,134,0): 78, 77, 93, (589,135,0): 74, 77, 96, (589,136,0): 68, 74, 96, (589,137,0): 63, 75, 99, (589,138,0): 60, 76, 102, (589,139,0): 56, 76, 103, (589,140,0): 53, 76, 107, (589,141,0): 51, 76, 107, (589,142,0): 50, 76, 109, (589,143,0): 50, 77, 107, (589,144,0): 49, 76, 103, (589,145,0): 49, 77, 101, (589,146,0): 50, 76, 103, (589,147,0): 50, 76, 103, (589,148,0): 50, 75, 105, (589,149,0): 50, 75, 105, (589,150,0): 50, 75, 106, (589,151,0): 50, 74, 108, (589,152,0): 53, 75, 112, (589,153,0): 53, 75, 112, (589,154,0): 53, 75, 114, (589,155,0): 53, 75, 114, (589,156,0): 53, 75, 116, (589,157,0): 53, 75, 116, (589,158,0): 53, 74, 117, (589,159,0): 52, 75, 117, (589,160,0): 47, 75, 114, (589,161,0): 46, 76, 114, (589,162,0): 46, 76, 114, (589,163,0): 46, 76, 114, (589,164,0): 46, 75, 115, (589,165,0): 46, 75, 115, (589,166,0): 46, 75, 117, (589,167,0): 46, 75, 117, (589,168,0): 45, 74, 116, (589,169,0): 46, 75, 117, (589,170,0): 46, 75, 119, (589,171,0): 46, 75, 119, (589,172,0): 47, 75, 122, (589,173,0): 48, 76, 123, (589,174,0): 48, 76, 123, (589,175,0): 48, 76, 123, (589,176,0): 49, 77, 124, (589,177,0): 49, 77, 124, (589,178,0): 49, 77, 124, (589,179,0): 49, 77, 124, (589,180,0): 49, 77, 124, (589,181,0): 49, 77, 124, (589,182,0): 49, 77, 124, (589,183,0): 49, 77, 124, (589,184,0): 48, 76, 123, (589,185,0): 49, 77, 124, (589,186,0): 49, 77, 124, (589,187,0): 49, 77, 124, (589,188,0): 50, 78, 125, (589,189,0): 51, 79, 126, (589,190,0): 51, 79, 126, (589,191,0): 51, 79, 126, (589,192,0): 49, 80, 127, (589,193,0): 49, 80, 127, (589,194,0): 49, 80, 127, (589,195,0): 49, 80, 127, (589,196,0): 49, 79, 129, (589,197,0): 49, 79, 129, (589,198,0): 49, 79, 129, (589,199,0): 49, 79, 129, (589,200,0): 50, 80, 132, (589,201,0): 50, 80, 132, (589,202,0): 50, 80, 134, (589,203,0): 50, 80, 134, (589,204,0): 50, 80, 134, (589,205,0): 50, 80, 134, (589,206,0): 50, 79, 135, (589,207,0): 49, 80, 135, (589,208,0): 51, 83, 140, (589,209,0): 51, 83, 140, (589,210,0): 52, 84, 141, (589,211,0): 52, 84, 141, (589,212,0): 53, 85, 144, (589,213,0): 53, 85, 144, (589,214,0): 54, 86, 145, (589,215,0): 54, 86, 145, (589,216,0): 56, 88, 149, (589,217,0): 56, 88, 149, (589,218,0): 56, 87, 151, (589,219,0): 57, 88, 152, (589,220,0): 57, 88, 152, (589,221,0): 58, 89, 153, (589,222,0): 58, 89, 154, (589,223,0): 58, 89, 153, (589,224,0): 59, 91, 152, (589,225,0): 59, 91, 150, (589,226,0): 59, 91, 152, (589,227,0): 60, 92, 153, (589,228,0): 58, 92, 155, (589,229,0): 59, 93, 156, (589,230,0): 59, 93, 157, (589,231,0): 59, 93, 157, (589,232,0): 59, 94, 160, (589,233,0): 59, 94, 162, (589,234,0): 58, 95, 165, (589,235,0): 59, 96, 166, (589,236,0): 60, 97, 168, (589,237,0): 61, 98, 169, (589,238,0): 61, 99, 172, (589,239,0): 61, 99, 172, (589,240,0): 64, 101, 172, (589,241,0): 65, 102, 173, (589,242,0): 65, 102, 173, (589,243,0): 66, 103, 174, (589,244,0): 68, 104, 178, (589,245,0): 69, 105, 179, (589,246,0): 69, 105, 179, (589,247,0): 70, 106, 180, (589,248,0): 69, 105, 181, (589,249,0): 69, 105, 181, (589,250,0): 70, 106, 184, (589,251,0): 71, 107, 185, (589,252,0): 72, 108, 186, (589,253,0): 73, 109, 187, (589,254,0): 74, 109, 190, (589,255,0): 74, 109, 191, (589,256,0): 74, 109, 193, (589,257,0): 78, 110, 193, (589,258,0): 80, 109, 185, (589,259,0): 81, 108, 175, (589,260,0): 86, 108, 165, (589,261,0): 84, 103, 146, (589,262,0): 72, 83, 115, (589,263,0): 59, 61, 84, (589,264,0): 53, 44, 61, (589,265,0): 56, 40, 51, (589,266,0): 57, 36, 45, (589,267,0): 58, 33, 39, (589,268,0): 58, 33, 39, (589,269,0): 57, 31, 40, (589,270,0): 52, 29, 39, (589,271,0): 48, 26, 38, (589,272,0): 43, 21, 33, (589,273,0): 42, 22, 33, (589,274,0): 41, 21, 32, (589,275,0): 37, 20, 30, (589,276,0): 34, 18, 28, (589,277,0): 31, 18, 27, (589,278,0): 30, 17, 26, (589,279,0): 28, 17, 25, (589,280,0): 29, 18, 26, (589,281,0): 29, 18, 26, (589,282,0): 29, 16, 25, (589,283,0): 31, 15, 25, (589,284,0): 31, 14, 24, (589,285,0): 31, 14, 24, (589,286,0): 33, 13, 24, (589,287,0): 31, 14, 24, (589,288,0): 25, 13, 23, (589,289,0): 22, 15, 23, (589,290,0): 22, 15, 23, (589,291,0): 24, 14, 23, (589,292,0): 24, 14, 23, (589,293,0): 24, 14, 23, (589,294,0): 25, 13, 23, (589,295,0): 25, 13, 23, (589,296,0): 24, 12, 22, (589,297,0): 23, 11, 21, (589,298,0): 24, 11, 21, (589,299,0): 23, 10, 20, (589,300,0): 22, 9, 19, (589,301,0): 21, 8, 18, (589,302,0): 20, 7, 17, (589,303,0): 19, 6, 16, (589,304,0): 18, 8, 17, (589,305,0): 15, 8, 16, (589,306,0): 15, 8, 16, (589,307,0): 14, 7, 15, (589,308,0): 14, 7, 15, (589,309,0): 13, 6, 14, (589,310,0): 13, 6, 14, (589,311,0): 13, 6, 14, (589,312,0): 14, 7, 15, (589,313,0): 14, 7, 15, (589,314,0): 14, 7, 15, (589,315,0): 14, 7, 15, (589,316,0): 14, 7, 15, (589,317,0): 14, 7, 15, (589,318,0): 14, 7, 15, (589,319,0): 14, 7, 15, (589,320,0): 15, 10, 17, (589,321,0): 14, 9, 16, (589,322,0): 13, 8, 15, (589,323,0): 12, 7, 14, (589,324,0): 11, 6, 13, (589,325,0): 10, 5, 12, (589,326,0): 10, 5, 12, (589,327,0): 9, 4, 11, (589,328,0): 12, 7, 14, (589,329,0): 11, 6, 13, (589,330,0): 11, 6, 13, (589,331,0): 10, 5, 12, (589,332,0): 10, 5, 12, (589,333,0): 9, 4, 11, (589,334,0): 9, 4, 11, (589,335,0): 9, 4, 11, (589,336,0): 9, 2, 10, (589,337,0): 9, 2, 10, (589,338,0): 9, 2, 10, (589,339,0): 10, 3, 11, (589,340,0): 10, 3, 11, (589,341,0): 11, 4, 12, (589,342,0): 11, 4, 12, (589,343,0): 11, 4, 12, (589,344,0): 13, 6, 14, (589,345,0): 13, 6, 14, (589,346,0): 14, 7, 15, (589,347,0): 14, 7, 15, (589,348,0): 15, 8, 16, (589,349,0): 15, 8, 16, (589,350,0): 16, 9, 17, (589,351,0): 16, 9, 17, (589,352,0): 15, 10, 16, (589,353,0): 15, 10, 16, (589,354,0): 14, 9, 15, (589,355,0): 14, 9, 15, (589,356,0): 13, 8, 14, (589,357,0): 13, 8, 14, (589,358,0): 12, 7, 13, (589,359,0): 12, 7, 13, (589,360,0): 13, 8, 14, (589,361,0): 13, 8, 14, (589,362,0): 13, 8, 14, (589,363,0): 13, 8, 14, (589,364,0): 13, 8, 14, (589,365,0): 13, 8, 14, (589,366,0): 13, 8, 14, (589,367,0): 13, 8, 14, (589,368,0): 10, 5, 12, (589,369,0): 10, 5, 12, (589,370,0): 10, 5, 12, (589,371,0): 10, 5, 12, (589,372,0): 10, 5, 12, (589,373,0): 10, 5, 12, (589,374,0): 10, 5, 12, (589,375,0): 10, 5, 12, (589,376,0): 10, 5, 12, (589,377,0): 11, 6, 13, (589,378,0): 11, 6, 13, (589,379,0): 12, 7, 14, (589,380,0): 12, 7, 14, (589,381,0): 13, 8, 15, (589,382,0): 13, 8, 15, (589,383,0): 14, 7, 14, (589,384,0): 15, 6, 11, (589,385,0): 16, 5, 9, (589,386,0): 16, 5, 9, (589,387,0): 17, 6, 10, (589,388,0): 18, 7, 11, (589,389,0): 18, 7, 11, (589,390,0): 19, 7, 11, (589,391,0): 20, 8, 12, (589,392,0): 20, 5, 10, (589,393,0): 21, 6, 11, (589,394,0): 22, 5, 11, (589,395,0): 23, 6, 12, (589,396,0): 23, 6, 12, (589,397,0): 22, 5, 11, (589,398,0): 22, 5, 11, (589,399,0): 21, 5, 8, (589,400,0): 26, 7, 11, (589,401,0): 26, 7, 9, (589,402,0): 26, 7, 9, (589,403,0): 26, 7, 9, (589,404,0): 26, 7, 9, (589,405,0): 26, 7, 9, (589,406,0): 24, 8, 9, (589,407,0): 24, 8, 9, (589,408,0): 24, 8, 9, (589,409,0): 24, 8, 9, (589,410,0): 24, 8, 9, (589,411,0): 24, 8, 9, (589,412,0): 23, 9, 9, (589,413,0): 23, 9, 9, (589,414,0): 23, 9, 9, (589,415,0): 21, 9, 9, (589,416,0): 19, 9, 8, (589,417,0): 17, 9, 7, (589,418,0): 17, 9, 7, (589,419,0): 17, 9, 7, (589,420,0): 18, 8, 7, (589,421,0): 19, 9, 8, (589,422,0): 22, 10, 10, (589,423,0): 23, 11, 11, (589,424,0): 29, 15, 15, (589,425,0): 29, 15, 15, (589,426,0): 30, 14, 15, (589,427,0): 31, 15, 16, (589,428,0): 33, 14, 16, (589,429,0): 34, 15, 17, (589,430,0): 34, 15, 17, (589,431,0): 35, 16, 18, (589,432,0): 34, 18, 19, (589,433,0): 35, 19, 20, (589,434,0): 37, 21, 22, (589,435,0): 39, 23, 24, (589,436,0): 40, 24, 25, (589,437,0): 40, 24, 25, (589,438,0): 39, 23, 24, (589,439,0): 39, 23, 24, (589,440,0): 38, 22, 23, (589,441,0): 38, 22, 23, (589,442,0): 38, 22, 23, (589,443,0): 38, 22, 23, (589,444,0): 37, 21, 22, (589,445,0): 35, 19, 20, (589,446,0): 33, 17, 18, (589,447,0): 32, 16, 16, (589,448,0): 31, 15, 15, (589,449,0): 30, 15, 12, (589,450,0): 30, 14, 14, (589,451,0): 29, 13, 13, (589,452,0): 28, 12, 12, (589,453,0): 27, 11, 11, (589,454,0): 25, 11, 11, (589,455,0): 25, 11, 11, (589,456,0): 24, 12, 14, (589,457,0): 23, 11, 13, (589,458,0): 21, 11, 12, (589,459,0): 20, 10, 11, (589,460,0): 19, 8, 12, (589,461,0): 20, 9, 13, (589,462,0): 20, 9, 13, (589,463,0): 20, 11, 14, (589,464,0): 17, 7, 15, (589,465,0): 15, 8, 15, (589,466,0): 14, 7, 14, (589,467,0): 13, 6, 13, (589,468,0): 14, 5, 10, (589,469,0): 13, 4, 9, (589,470,0): 13, 4, 7, (589,471,0): 12, 3, 6, (589,472,0): 15, 4, 8, (589,473,0): 15, 4, 8, (589,474,0): 16, 4, 6, (589,475,0): 16, 4, 6, (589,476,0): 16, 4, 4, (589,477,0): 16, 4, 4, (589,478,0): 18, 4, 4, (589,479,0): 16, 4, 4, (589,480,0): 14, 2, 6, (589,481,0): 13, 2, 6, (589,482,0): 11, 0, 4, (589,483,0): 11, 0, 4, (589,484,0): 11, 0, 4, (589,485,0): 11, 0, 4, (589,486,0): 13, 2, 6, (589,487,0): 13, 2, 6, (589,488,0): 13, 2, 6, (589,489,0): 13, 2, 6, (589,490,0): 13, 2, 6, (589,491,0): 13, 2, 6, (589,492,0): 13, 2, 6, (589,493,0): 13, 2, 6, (589,494,0): 13, 2, 6, (589,495,0): 13, 3, 4, (589,496,0): 16, 4, 6, (589,497,0): 18, 4, 4, (589,498,0): 18, 4, 4, (589,499,0): 19, 5, 5, (589,500,0): 20, 4, 5, (589,501,0): 21, 5, 6, (589,502,0): 23, 4, 6, (589,503,0): 23, 4, 6, (589,504,0): 25, 5, 7, (589,505,0): 26, 6, 8, (589,506,0): 29, 7, 10, (589,507,0): 30, 8, 11, (589,508,0): 33, 8, 12, (589,509,0): 32, 7, 11, (589,510,0): 33, 6, 11, (589,511,0): 31, 6, 10, (589,512,0): 31, 9, 11, (589,513,0): 28, 8, 9, (589,514,0): 26, 6, 7, (589,515,0): 26, 6, 7, (589,516,0): 27, 7, 8, (589,517,0): 31, 11, 12, (589,518,0): 35, 15, 16, (589,519,0): 38, 18, 19, (589,520,0): 38, 18, 19, (589,521,0): 37, 17, 18, (589,522,0): 36, 16, 17, (589,523,0): 33, 13, 14, (589,524,0): 31, 11, 12, (589,525,0): 28, 8, 9, (589,526,0): 27, 7, 8, (589,527,0): 25, 6, 8, (589,528,0): 19, 2, 10, (589,529,0): 18, 2, 12, (589,530,0): 16, 3, 12, (589,531,0): 17, 4, 13, (589,532,0): 17, 4, 13, (589,533,0): 17, 4, 13, (589,534,0): 16, 5, 13, (589,535,0): 17, 6, 14, (589,536,0): 15, 5, 13, (589,537,0): 14, 4, 12, (589,538,0): 13, 3, 11, (589,539,0): 12, 2, 10, (589,540,0): 9, 2, 9, (589,541,0): 9, 2, 9, (589,542,0): 10, 3, 10, (589,543,0): 10, 4, 8, (589,544,0): 12, 1, 7, (589,545,0): 12, 1, 5, (589,546,0): 13, 2, 6, (589,547,0): 13, 2, 6, (589,548,0): 14, 3, 7, (589,549,0): 14, 3, 7, (589,550,0): 16, 4, 8, (589,551,0): 16, 4, 8, (589,552,0): 18, 3, 8, (589,553,0): 18, 3, 8, (589,554,0): 20, 3, 9, (589,555,0): 21, 4, 10, (589,556,0): 22, 5, 11, (589,557,0): 23, 6, 12, (589,558,0): 23, 6, 12, (589,559,0): 24, 8, 11, (589,560,0): 23, 8, 11, (589,561,0): 24, 10, 10, (589,562,0): 24, 10, 10, (589,563,0): 25, 11, 11, (589,564,0): 25, 11, 11, (589,565,0): 26, 12, 12, (589,566,0): 26, 12, 12, (589,567,0): 26, 12, 12, (589,568,0): 28, 14, 14, (589,569,0): 28, 14, 14, (589,570,0): 27, 13, 13, (589,571,0): 27, 13, 13, (589,572,0): 27, 13, 13, (589,573,0): 29, 15, 15, (589,574,0): 30, 16, 16, (589,575,0): 31, 17, 17, (589,576,0): 34, 18, 19, (589,577,0): 35, 19, 20, (589,578,0): 36, 20, 21, (589,579,0): 38, 22, 23, (589,580,0): 40, 24, 25, (589,581,0): 42, 26, 27, (589,582,0): 43, 29, 29, (589,583,0): 43, 29, 29, (589,584,0): 38, 26, 26, (589,585,0): 37, 25, 25, (589,586,0): 35, 25, 24, (589,587,0): 34, 24, 23, (589,588,0): 34, 24, 23, (589,589,0): 35, 25, 24, (589,590,0): 36, 26, 25, (589,591,0): 38, 26, 26, (589,592,0): 42, 28, 28, (589,593,0): 42, 28, 28, (589,594,0): 43, 27, 28, (589,595,0): 43, 29, 29, (589,596,0): 44, 28, 29, (589,597,0): 44, 30, 30, (589,598,0): 45, 29, 30, (589,599,0): 44, 30, 30, (590,0,0): 31, 54, 68, (590,1,0): 31, 54, 68, (590,2,0): 31, 54, 68, (590,3,0): 31, 54, 68, (590,4,0): 31, 54, 68, (590,5,0): 31, 54, 68, (590,6,0): 31, 54, 68, (590,7,0): 31, 54, 68, (590,8,0): 29, 52, 66, (590,9,0): 30, 53, 67, (590,10,0): 30, 53, 67, (590,11,0): 31, 54, 68, (590,12,0): 31, 54, 68, (590,13,0): 32, 55, 69, (590,14,0): 32, 55, 69, (590,15,0): 32, 55, 69, (590,16,0): 35, 54, 68, (590,17,0): 35, 54, 68, (590,18,0): 35, 54, 68, (590,19,0): 35, 54, 68, (590,20,0): 35, 54, 68, (590,21,0): 35, 54, 68, (590,22,0): 35, 54, 68, (590,23,0): 35, 54, 68, (590,24,0): 38, 57, 71, (590,25,0): 37, 56, 70, (590,26,0): 37, 56, 70, (590,27,0): 36, 55, 69, (590,28,0): 37, 56, 70, (590,29,0): 38, 57, 71, (590,30,0): 40, 59, 73, (590,31,0): 41, 60, 74, (590,32,0): 39, 57, 71, (590,33,0): 39, 57, 71, (590,34,0): 40, 58, 72, (590,35,0): 40, 58, 72, (590,36,0): 42, 58, 71, (590,37,0): 42, 58, 71, (590,38,0): 46, 58, 72, (590,39,0): 46, 58, 72, (590,40,0): 48, 58, 70, (590,41,0): 49, 59, 71, (590,42,0): 51, 57, 69, (590,43,0): 52, 58, 70, (590,44,0): 54, 58, 70, (590,45,0): 55, 59, 71, (590,46,0): 55, 59, 70, (590,47,0): 55, 59, 70, (590,48,0): 55, 61, 75, (590,49,0): 55, 61, 75, (590,50,0): 55, 61, 75, (590,51,0): 56, 62, 76, (590,52,0): 56, 62, 76, (590,53,0): 57, 63, 77, (590,54,0): 57, 63, 77, (590,55,0): 57, 63, 77, (590,56,0): 56, 62, 76, (590,57,0): 57, 63, 77, (590,58,0): 57, 63, 77, (590,59,0): 58, 64, 78, (590,60,0): 58, 64, 78, (590,61,0): 59, 65, 79, (590,62,0): 59, 65, 79, (590,63,0): 61, 64, 79, (590,64,0): 66, 65, 81, (590,65,0): 67, 64, 81, (590,66,0): 67, 64, 81, (590,67,0): 68, 65, 82, (590,68,0): 68, 65, 82, (590,69,0): 69, 66, 83, (590,70,0): 69, 66, 83, (590,71,0): 69, 66, 83, (590,72,0): 70, 67, 84, (590,73,0): 70, 67, 84, (590,74,0): 70, 67, 84, (590,75,0): 70, 67, 84, (590,76,0): 70, 67, 84, (590,77,0): 70, 67, 84, (590,78,0): 70, 67, 84, (590,79,0): 70, 67, 84, (590,80,0): 70, 68, 89, (590,81,0): 70, 68, 89, (590,82,0): 67, 68, 88, (590,83,0): 66, 67, 87, (590,84,0): 64, 65, 85, (590,85,0): 63, 64, 84, (590,86,0): 61, 64, 83, (590,87,0): 61, 64, 83, (590,88,0): 60, 65, 84, (590,89,0): 60, 65, 84, (590,90,0): 60, 65, 84, (590,91,0): 59, 64, 83, (590,92,0): 58, 65, 83, (590,93,0): 58, 65, 83, (590,94,0): 58, 65, 83, (590,95,0): 58, 65, 83, (590,96,0): 57, 65, 84, (590,97,0): 57, 65, 84, (590,98,0): 57, 65, 84, (590,99,0): 57, 65, 84, (590,100,0): 57, 65, 84, (590,101,0): 57, 65, 84, (590,102,0): 57, 65, 84, (590,103,0): 57, 65, 84, (590,104,0): 56, 64, 83, (590,105,0): 56, 64, 83, (590,106,0): 56, 64, 83, (590,107,0): 56, 64, 83, (590,108,0): 56, 64, 83, (590,109,0): 56, 64, 83, (590,110,0): 56, 64, 83, (590,111,0): 54, 65, 83, (590,112,0): 52, 67, 88, (590,113,0): 52, 69, 89, (590,114,0): 53, 68, 87, (590,115,0): 54, 69, 88, (590,116,0): 57, 68, 86, (590,117,0): 60, 69, 86, (590,118,0): 61, 68, 86, (590,119,0): 62, 68, 82, (590,120,0): 62, 65, 80, (590,121,0): 65, 65, 77, (590,122,0): 66, 64, 77, (590,123,0): 68, 65, 76, (590,124,0): 70, 64, 74, (590,125,0): 71, 64, 72, (590,126,0): 74, 64, 73, (590,127,0): 74, 64, 73, (590,128,0): 81, 68, 77, (590,129,0): 83, 70, 79, (590,130,0): 85, 73, 83, (590,131,0): 87, 77, 88, (590,132,0): 84, 78, 92, (590,133,0): 80, 78, 92, (590,134,0): 75, 76, 94, (590,135,0): 69, 76, 95, (590,136,0): 63, 74, 96, (590,137,0): 60, 74, 100, (590,138,0): 58, 75, 103, (590,139,0): 54, 75, 104, (590,140,0): 51, 76, 107, (590,141,0): 49, 75, 108, (590,142,0): 47, 76, 108, (590,143,0): 47, 76, 108, (590,144,0): 48, 75, 104, (590,145,0): 48, 75, 102, (590,146,0): 48, 75, 102, (590,147,0): 48, 75, 102, (590,148,0): 48, 75, 104, (590,149,0): 48, 75, 104, (590,150,0): 49, 74, 105, (590,151,0): 49, 73, 107, (590,152,0): 52, 76, 112, (590,153,0): 52, 76, 112, (590,154,0): 53, 75, 114, (590,155,0): 53, 75, 116, (590,156,0): 53, 74, 117, (590,157,0): 53, 74, 117, (590,158,0): 55, 74, 117, (590,159,0): 53, 74, 117, (590,160,0): 48, 76, 115, (590,161,0): 47, 77, 115, (590,162,0): 47, 76, 116, (590,163,0): 47, 76, 116, (590,164,0): 47, 76, 116, (590,165,0): 47, 76, 116, (590,166,0): 47, 76, 118, (590,167,0): 47, 76, 118, (590,168,0): 45, 74, 118, (590,169,0): 45, 74, 118, (590,170,0): 46, 75, 119, (590,171,0): 46, 75, 119, (590,172,0): 47, 75, 122, (590,173,0): 47, 75, 122, (590,174,0): 47, 75, 122, (590,175,0): 48, 76, 123, (590,176,0): 49, 77, 124, (590,177,0): 49, 77, 124, (590,178,0): 49, 77, 124, (590,179,0): 49, 77, 124, (590,180,0): 49, 77, 124, (590,181,0): 49, 77, 124, (590,182,0): 49, 77, 124, (590,183,0): 49, 77, 124, (590,184,0): 48, 76, 123, (590,185,0): 48, 76, 123, (590,186,0): 49, 77, 124, (590,187,0): 49, 77, 124, (590,188,0): 50, 78, 125, (590,189,0): 50, 78, 125, (590,190,0): 50, 78, 125, (590,191,0): 51, 79, 126, (590,192,0): 51, 82, 129, (590,193,0): 50, 82, 129, (590,194,0): 50, 82, 131, (590,195,0): 50, 82, 131, (590,196,0): 50, 82, 131, (590,197,0): 50, 82, 131, (590,198,0): 50, 82, 133, (590,199,0): 50, 82, 133, (590,200,0): 49, 80, 134, (590,201,0): 49, 80, 134, (590,202,0): 49, 80, 134, (590,203,0): 49, 80, 134, (590,204,0): 49, 80, 135, (590,205,0): 49, 80, 135, (590,206,0): 49, 80, 135, (590,207,0): 49, 80, 135, (590,208,0): 51, 83, 140, (590,209,0): 51, 83, 140, (590,210,0): 52, 84, 141, (590,211,0): 52, 84, 141, (590,212,0): 53, 85, 144, (590,213,0): 53, 85, 144, (590,214,0): 54, 86, 145, (590,215,0): 54, 86, 145, (590,216,0): 56, 88, 149, (590,217,0): 56, 88, 149, (590,218,0): 56, 87, 151, (590,219,0): 57, 88, 152, (590,220,0): 57, 88, 152, (590,221,0): 58, 89, 153, (590,222,0): 58, 89, 154, (590,223,0): 58, 89, 153, (590,224,0): 59, 91, 152, (590,225,0): 59, 91, 150, (590,226,0): 59, 91, 150, (590,227,0): 60, 92, 153, (590,228,0): 60, 91, 155, (590,229,0): 61, 92, 156, (590,230,0): 59, 93, 157, (590,231,0): 59, 93, 157, (590,232,0): 59, 94, 160, (590,233,0): 59, 94, 162, (590,234,0): 58, 95, 165, (590,235,0): 59, 96, 166, (590,236,0): 60, 97, 168, (590,237,0): 61, 98, 169, (590,238,0): 62, 98, 172, (590,239,0): 62, 98, 172, (590,240,0): 64, 101, 172, (590,241,0): 65, 102, 173, (590,242,0): 65, 102, 173, (590,243,0): 66, 103, 174, (590,244,0): 68, 104, 178, (590,245,0): 69, 105, 179, (590,246,0): 69, 105, 179, (590,247,0): 70, 106, 180, (590,248,0): 69, 105, 181, (590,249,0): 69, 105, 181, (590,250,0): 70, 106, 184, (590,251,0): 71, 107, 185, (590,252,0): 72, 108, 186, (590,253,0): 73, 109, 187, (590,254,0): 74, 109, 190, (590,255,0): 74, 109, 191, (590,256,0): 74, 106, 193, (590,257,0): 78, 109, 192, (590,258,0): 80, 109, 185, (590,259,0): 82, 110, 175, (590,260,0): 88, 111, 163, (590,261,0): 85, 104, 144, (590,262,0): 73, 84, 112, (590,263,0): 59, 62, 81, (590,264,0): 57, 49, 62, (590,265,0): 60, 45, 52, (590,266,0): 61, 40, 45, (590,267,0): 62, 37, 41, (590,268,0): 63, 36, 41, (590,269,0): 60, 35, 39, (590,270,0): 55, 30, 34, (590,271,0): 50, 27, 33, (590,272,0): 44, 23, 32, (590,273,0): 42, 22, 33, (590,274,0): 41, 21, 32, (590,275,0): 38, 21, 31, (590,276,0): 35, 19, 29, (590,277,0): 31, 18, 27, (590,278,0): 30, 17, 26, (590,279,0): 30, 17, 26, (590,280,0): 30, 17, 26, (590,281,0): 30, 17, 26, (590,282,0): 31, 15, 25, (590,283,0): 31, 15, 25, (590,284,0): 31, 14, 24, (590,285,0): 32, 12, 23, (590,286,0): 33, 11, 23, (590,287,0): 29, 12, 22, (590,288,0): 24, 14, 23, (590,289,0): 21, 15, 25, (590,290,0): 21, 15, 25, (590,291,0): 22, 14, 25, (590,292,0): 22, 14, 25, (590,293,0): 22, 14, 25, (590,294,0): 24, 14, 25, (590,295,0): 24, 14, 25, (590,296,0): 24, 12, 24, (590,297,0): 24, 12, 24, (590,298,0): 24, 10, 23, (590,299,0): 23, 9, 22, (590,300,0): 23, 7, 20, (590,301,0): 22, 6, 19, (590,302,0): 21, 5, 18, (590,303,0): 19, 5, 18, (590,304,0): 16, 6, 15, (590,305,0): 14, 7, 15, (590,306,0): 14, 7, 15, (590,307,0): 13, 6, 14, (590,308,0): 13, 6, 14, (590,309,0): 12, 5, 13, (590,310,0): 12, 5, 13, (590,311,0): 12, 5, 13, (590,312,0): 14, 7, 15, (590,313,0): 14, 7, 15, (590,314,0): 14, 7, 15, (590,315,0): 14, 7, 15, (590,316,0): 14, 7, 15, (590,317,0): 14, 7, 15, (590,318,0): 14, 7, 15, (590,319,0): 14, 7, 15, (590,320,0): 16, 11, 18, (590,321,0): 14, 11, 18, (590,322,0): 13, 10, 17, (590,323,0): 12, 9, 16, (590,324,0): 10, 7, 14, (590,325,0): 9, 6, 13, (590,326,0): 8, 5, 12, (590,327,0): 8, 5, 12, (590,328,0): 9, 6, 13, (590,329,0): 9, 6, 13, (590,330,0): 9, 6, 13, (590,331,0): 8, 5, 12, (590,332,0): 8, 5, 12, (590,333,0): 7, 4, 11, (590,334,0): 7, 4, 11, (590,335,0): 8, 3, 10, (590,336,0): 9, 2, 10, (590,337,0): 9, 2, 10, (590,338,0): 10, 3, 11, (590,339,0): 11, 4, 12, (590,340,0): 11, 4, 12, (590,341,0): 12, 5, 13, (590,342,0): 13, 6, 14, (590,343,0): 13, 6, 14, (590,344,0): 14, 7, 15, (590,345,0): 14, 7, 15, (590,346,0): 15, 8, 16, (590,347,0): 15, 8, 16, (590,348,0): 16, 9, 17, (590,349,0): 16, 9, 17, (590,350,0): 17, 10, 18, (590,351,0): 17, 10, 18, (590,352,0): 18, 13, 19, (590,353,0): 17, 12, 16, (590,354,0): 17, 12, 16, (590,355,0): 17, 12, 16, (590,356,0): 16, 11, 15, (590,357,0): 15, 10, 14, (590,358,0): 15, 10, 14, (590,359,0): 15, 10, 14, (590,360,0): 15, 10, 14, (590,361,0): 15, 10, 14, (590,362,0): 15, 10, 14, (590,363,0): 15, 10, 14, (590,364,0): 15, 10, 14, (590,365,0): 15, 10, 14, (590,366,0): 15, 10, 14, (590,367,0): 15, 10, 16, (590,368,0): 11, 6, 13, (590,369,0): 11, 6, 13, (590,370,0): 11, 6, 13, (590,371,0): 11, 6, 13, (590,372,0): 11, 6, 13, (590,373,0): 11, 6, 13, (590,374,0): 11, 6, 13, (590,375,0): 11, 6, 13, (590,376,0): 11, 6, 13, (590,377,0): 11, 6, 13, (590,378,0): 11, 6, 13, (590,379,0): 12, 7, 14, (590,380,0): 12, 7, 14, (590,381,0): 13, 8, 15, (590,382,0): 13, 8, 15, (590,383,0): 15, 8, 15, (590,384,0): 15, 6, 11, (590,385,0): 17, 6, 10, (590,386,0): 17, 6, 10, (590,387,0): 17, 6, 10, (590,388,0): 18, 7, 11, (590,389,0): 18, 7, 11, (590,390,0): 20, 8, 12, (590,391,0): 20, 8, 12, (590,392,0): 19, 4, 9, (590,393,0): 20, 5, 10, (590,394,0): 23, 6, 12, (590,395,0): 24, 7, 13, (590,396,0): 24, 7, 13, (590,397,0): 23, 6, 12, (590,398,0): 21, 4, 10, (590,399,0): 20, 4, 7, (590,400,0): 27, 8, 12, (590,401,0): 28, 8, 10, (590,402,0): 27, 8, 10, (590,403,0): 27, 8, 10, (590,404,0): 27, 8, 10, (590,405,0): 27, 8, 10, (590,406,0): 25, 9, 10, (590,407,0): 25, 9, 10, (590,408,0): 25, 9, 10, (590,409,0): 25, 9, 10, (590,410,0): 24, 10, 10, (590,411,0): 24, 10, 10, (590,412,0): 24, 10, 10, (590,413,0): 24, 10, 10, (590,414,0): 24, 10, 10, (590,415,0): 22, 10, 10, (590,416,0): 20, 12, 10, (590,417,0): 18, 13, 10, (590,418,0): 17, 12, 9, (590,419,0): 16, 11, 8, (590,420,0): 19, 11, 9, (590,421,0): 21, 11, 10, (590,422,0): 23, 11, 11, (590,423,0): 24, 12, 12, (590,424,0): 29, 15, 15, (590,425,0): 30, 16, 16, (590,426,0): 31, 15, 16, (590,427,0): 32, 16, 17, (590,428,0): 35, 16, 18, (590,429,0): 35, 16, 18, (590,430,0): 36, 16, 18, (590,431,0): 35, 16, 18, (590,432,0): 33, 17, 18, (590,433,0): 34, 18, 19, (590,434,0): 36, 20, 21, (590,435,0): 38, 22, 23, (590,436,0): 39, 23, 24, (590,437,0): 40, 24, 25, (590,438,0): 39, 23, 24, (590,439,0): 39, 23, 24, (590,440,0): 38, 22, 23, (590,441,0): 38, 22, 23, (590,442,0): 39, 23, 24, (590,443,0): 39, 23, 24, (590,444,0): 37, 21, 22, (590,445,0): 36, 20, 21, (590,446,0): 34, 18, 19, (590,447,0): 33, 17, 17, (590,448,0): 35, 17, 17, (590,449,0): 34, 16, 14, (590,450,0): 32, 17, 14, (590,451,0): 30, 15, 12, (590,452,0): 29, 13, 13, (590,453,0): 28, 12, 12, (590,454,0): 26, 12, 12, (590,455,0): 26, 12, 12, (590,456,0): 24, 12, 12, (590,457,0): 23, 11, 11, (590,458,0): 21, 9, 11, (590,459,0): 20, 8, 10, (590,460,0): 18, 7, 11, (590,461,0): 19, 8, 12, (590,462,0): 20, 9, 13, (590,463,0): 19, 10, 13, (590,464,0): 18, 8, 16, (590,465,0): 16, 9, 16, (590,466,0): 15, 8, 15, (590,467,0): 14, 7, 14, (590,468,0): 15, 6, 11, (590,469,0): 13, 4, 9, (590,470,0): 12, 3, 6, (590,471,0): 12, 3, 6, (590,472,0): 15, 4, 8, (590,473,0): 15, 4, 8, (590,474,0): 16, 4, 6, (590,475,0): 16, 4, 6, (590,476,0): 16, 4, 4, (590,477,0): 16, 4, 4, (590,478,0): 18, 4, 4, (590,479,0): 16, 4, 4, (590,480,0): 14, 2, 6, (590,481,0): 13, 2, 6, (590,482,0): 11, 0, 4, (590,483,0): 11, 0, 4, (590,484,0): 11, 0, 4, (590,485,0): 11, 0, 4, (590,486,0): 13, 2, 6, (590,487,0): 13, 2, 6, (590,488,0): 12, 1, 5, (590,489,0): 12, 1, 5, (590,490,0): 12, 1, 5, (590,491,0): 12, 1, 5, (590,492,0): 12, 1, 5, (590,493,0): 12, 1, 5, (590,494,0): 12, 1, 5, (590,495,0): 12, 2, 3, (590,496,0): 17, 5, 7, (590,497,0): 17, 5, 5, (590,498,0): 19, 5, 5, (590,499,0): 20, 6, 6, (590,500,0): 21, 5, 6, (590,501,0): 22, 6, 7, (590,502,0): 24, 5, 7, (590,503,0): 24, 5, 7, (590,504,0): 25, 5, 7, (590,505,0): 26, 6, 8, (590,506,0): 29, 7, 10, (590,507,0): 32, 7, 11, (590,508,0): 34, 7, 12, (590,509,0): 33, 6, 11, (590,510,0): 33, 6, 11, (590,511,0): 31, 6, 10, (590,512,0): 32, 10, 12, (590,513,0): 29, 9, 8, (590,514,0): 27, 7, 6, (590,515,0): 26, 6, 5, (590,516,0): 27, 7, 6, (590,517,0): 31, 11, 10, (590,518,0): 36, 16, 15, (590,519,0): 39, 19, 18, (590,520,0): 39, 19, 18, (590,521,0): 38, 18, 17, (590,522,0): 37, 17, 16, (590,523,0): 35, 15, 14, (590,524,0): 33, 13, 12, (590,525,0): 31, 11, 10, (590,526,0): 30, 10, 9, (590,527,0): 28, 9, 11, (590,528,0): 21, 4, 12, (590,529,0): 20, 4, 14, (590,530,0): 18, 5, 14, (590,531,0): 17, 4, 13, (590,532,0): 17, 4, 13, (590,533,0): 17, 4, 13, (590,534,0): 15, 4, 12, (590,535,0): 15, 4, 12, (590,536,0): 13, 3, 11, (590,537,0): 14, 4, 12, (590,538,0): 14, 4, 12, (590,539,0): 14, 4, 12, (590,540,0): 11, 4, 11, (590,541,0): 10, 3, 10, (590,542,0): 9, 2, 9, (590,543,0): 8, 2, 6, (590,544,0): 12, 1, 7, (590,545,0): 12, 1, 5, (590,546,0): 13, 2, 6, (590,547,0): 13, 2, 6, (590,548,0): 15, 3, 7, (590,549,0): 15, 3, 7, (590,550,0): 16, 4, 8, (590,551,0): 16, 4, 8, (590,552,0): 17, 2, 7, (590,553,0): 18, 3, 8, (590,554,0): 20, 3, 9, (590,555,0): 21, 4, 10, (590,556,0): 22, 5, 11, (590,557,0): 24, 7, 13, (590,558,0): 26, 7, 13, (590,559,0): 25, 9, 12, (590,560,0): 24, 9, 12, (590,561,0): 24, 10, 10, (590,562,0): 24, 10, 10, (590,563,0): 25, 11, 11, (590,564,0): 25, 11, 11, (590,565,0): 26, 12, 12, (590,566,0): 26, 12, 12, (590,567,0): 27, 13, 13, (590,568,0): 28, 14, 14, (590,569,0): 27, 13, 13, (590,570,0): 27, 13, 13, (590,571,0): 26, 12, 12, (590,572,0): 27, 13, 13, (590,573,0): 28, 14, 14, (590,574,0): 29, 15, 15, (590,575,0): 30, 16, 16, (590,576,0): 32, 16, 17, (590,577,0): 33, 17, 18, (590,578,0): 35, 19, 20, (590,579,0): 38, 22, 23, (590,580,0): 40, 24, 25, (590,581,0): 42, 26, 27, (590,582,0): 43, 29, 29, (590,583,0): 44, 30, 30, (590,584,0): 39, 27, 27, (590,585,0): 38, 26, 26, (590,586,0): 36, 26, 25, (590,587,0): 35, 25, 24, (590,588,0): 35, 25, 24, (590,589,0): 36, 26, 25, (590,590,0): 37, 27, 26, (590,591,0): 39, 27, 27, (590,592,0): 45, 29, 30, (590,593,0): 45, 29, 30, (590,594,0): 47, 28, 30, (590,595,0): 46, 30, 31, (590,596,0): 48, 29, 31, (590,597,0): 47, 31, 32, (590,598,0): 49, 30, 32, (590,599,0): 47, 31, 32, (591,0,0): 31, 54, 68, (591,1,0): 29, 55, 68, (591,2,0): 31, 54, 68, (591,3,0): 29, 55, 68, (591,4,0): 31, 54, 68, (591,5,0): 29, 55, 68, (591,6,0): 31, 54, 68, (591,7,0): 29, 55, 68, (591,8,0): 29, 52, 66, (591,9,0): 27, 53, 66, (591,10,0): 30, 53, 67, (591,11,0): 28, 54, 67, (591,12,0): 31, 54, 68, (591,13,0): 29, 55, 68, (591,14,0): 32, 55, 69, (591,15,0): 32, 55, 69, (591,16,0): 33, 55, 68, (591,17,0): 33, 55, 68, (591,18,0): 33, 55, 68, (591,19,0): 33, 55, 68, (591,20,0): 33, 55, 68, (591,21,0): 33, 55, 68, (591,22,0): 33, 55, 68, (591,23,0): 33, 55, 68, (591,24,0): 38, 57, 71, (591,25,0): 37, 56, 70, (591,26,0): 37, 56, 70, (591,27,0): 36, 55, 69, (591,28,0): 37, 56, 70, (591,29,0): 38, 57, 71, (591,30,0): 40, 59, 73, (591,31,0): 41, 60, 74, (591,32,0): 39, 57, 71, (591,33,0): 39, 57, 71, (591,34,0): 41, 57, 72, (591,35,0): 41, 57, 72, (591,36,0): 42, 58, 71, (591,37,0): 44, 58, 71, (591,38,0): 46, 58, 72, (591,39,0): 46, 58, 72, (591,40,0): 48, 57, 72, (591,41,0): 48, 58, 70, (591,42,0): 50, 58, 71, (591,43,0): 51, 57, 71, (591,44,0): 52, 58, 72, (591,45,0): 54, 57, 72, (591,46,0): 55, 59, 71, (591,47,0): 53, 59, 71, (591,48,0): 55, 61, 75, (591,49,0): 55, 61, 75, (591,50,0): 55, 61, 77, (591,51,0): 56, 62, 76, (591,52,0): 56, 62, 78, (591,53,0): 57, 63, 77, (591,54,0): 57, 63, 79, (591,55,0): 57, 63, 77, (591,56,0): 56, 62, 78, (591,57,0): 56, 62, 76, (591,58,0): 57, 63, 79, (591,59,0): 57, 63, 77, (591,60,0): 58, 64, 80, (591,61,0): 58, 64, 78, (591,62,0): 59, 65, 81, (591,63,0): 61, 64, 79, (591,64,0): 64, 66, 81, (591,65,0): 66, 65, 81, (591,66,0): 66, 65, 81, (591,67,0): 67, 66, 82, (591,68,0): 67, 66, 82, (591,69,0): 68, 67, 83, (591,70,0): 68, 67, 83, (591,71,0): 68, 67, 83, (591,72,0): 69, 68, 84, (591,73,0): 69, 68, 84, (591,74,0): 69, 68, 84, (591,75,0): 69, 68, 84, (591,76,0): 69, 68, 84, (591,77,0): 69, 68, 84, (591,78,0): 69, 68, 84, (591,79,0): 69, 68, 84, (591,80,0): 71, 69, 90, (591,81,0): 68, 69, 89, (591,82,0): 67, 68, 88, (591,83,0): 66, 67, 87, (591,84,0): 64, 65, 85, (591,85,0): 62, 65, 84, (591,86,0): 61, 64, 83, (591,87,0): 58, 63, 82, (591,88,0): 58, 63, 82, (591,89,0): 59, 64, 83, (591,90,0): 59, 64, 83, (591,91,0): 58, 65, 83, (591,92,0): 58, 65, 83, (591,93,0): 58, 65, 83, (591,94,0): 59, 66, 84, (591,95,0): 58, 67, 84, (591,96,0): 57, 66, 83, (591,97,0): 57, 66, 83, (591,98,0): 57, 66, 83, (591,99,0): 57, 66, 83, (591,100,0): 57, 66, 83, (591,101,0): 57, 66, 83, (591,102,0): 57, 66, 83, (591,103,0): 57, 66, 83, (591,104,0): 54, 63, 80, (591,105,0): 54, 63, 80, (591,106,0): 54, 63, 80, (591,107,0): 54, 63, 80, (591,108,0): 54, 63, 80, (591,109,0): 54, 63, 80, (591,110,0): 54, 63, 80, (591,111,0): 52, 63, 81, (591,112,0): 54, 67, 86, (591,113,0): 52, 67, 86, (591,114,0): 55, 68, 87, (591,115,0): 55, 68, 85, (591,116,0): 59, 67, 86, (591,117,0): 60, 67, 85, (591,118,0): 62, 68, 84, (591,119,0): 64, 67, 82, (591,120,0): 62, 64, 77, (591,121,0): 64, 64, 76, (591,122,0): 66, 63, 74, (591,123,0): 69, 63, 73, (591,124,0): 71, 64, 72, (591,125,0): 72, 65, 72, (591,126,0): 74, 64, 72, (591,127,0): 76, 65, 73, (591,128,0): 83, 70, 79, (591,129,0): 84, 73, 81, (591,130,0): 86, 76, 85, (591,131,0): 86, 78, 91, (591,132,0): 83, 79, 94, (591,133,0): 77, 78, 96, (591,134,0): 71, 76, 96, (591,135,0): 67, 75, 98, (591,136,0): 59, 73, 99, (591,137,0): 57, 74, 102, (591,138,0): 54, 75, 104, (591,139,0): 51, 74, 105, (591,140,0): 49, 76, 106, (591,141,0): 47, 76, 108, (591,142,0): 47, 76, 108, (591,143,0): 47, 76, 106, (591,144,0): 48, 75, 104, (591,145,0): 48, 75, 104, (591,146,0): 49, 74, 104, (591,147,0): 48, 75, 104, (591,148,0): 48, 75, 104, (591,149,0): 48, 75, 105, (591,150,0): 49, 73, 107, (591,151,0): 49, 73, 107, (591,152,0): 52, 76, 112, (591,153,0): 52, 76, 114, (591,154,0): 52, 75, 116, (591,155,0): 52, 75, 116, (591,156,0): 52, 75, 117, (591,157,0): 52, 75, 117, (591,158,0): 53, 74, 117, (591,159,0): 52, 75, 117, (591,160,0): 48, 76, 116, (591,161,0): 47, 76, 116, (591,162,0): 47, 76, 118, (591,163,0): 47, 76, 118, (591,164,0): 47, 76, 118, (591,165,0): 47, 76, 118, (591,166,0): 47, 76, 118, (591,167,0): 47, 76, 120, (591,168,0): 45, 74, 118, (591,169,0): 45, 74, 118, (591,170,0): 45, 74, 118, (591,171,0): 46, 75, 119, (591,172,0): 46, 74, 121, (591,173,0): 47, 75, 122, (591,174,0): 47, 75, 122, (591,175,0): 48, 76, 123, (591,176,0): 49, 77, 124, (591,177,0): 49, 77, 124, (591,178,0): 49, 77, 124, (591,179,0): 49, 77, 124, (591,180,0): 49, 77, 124, (591,181,0): 49, 77, 124, (591,182,0): 49, 77, 124, (591,183,0): 49, 77, 124, (591,184,0): 48, 76, 123, (591,185,0): 48, 76, 123, (591,186,0): 48, 76, 123, (591,187,0): 49, 77, 124, (591,188,0): 49, 77, 124, (591,189,0): 50, 78, 125, (591,190,0): 50, 78, 125, (591,191,0): 49, 80, 127, (591,192,0): 51, 82, 129, (591,193,0): 50, 82, 131, (591,194,0): 50, 82, 131, (591,195,0): 50, 82, 131, (591,196,0): 50, 82, 131, (591,197,0): 50, 82, 131, (591,198,0): 50, 82, 133, (591,199,0): 50, 82, 133, (591,200,0): 49, 80, 134, (591,201,0): 49, 80, 134, (591,202,0): 49, 80, 134, (591,203,0): 49, 80, 134, (591,204,0): 49, 80, 134, (591,205,0): 49, 80, 134, (591,206,0): 49, 80, 135, (591,207,0): 49, 80, 135, (591,208,0): 51, 83, 140, (591,209,0): 51, 83, 140, (591,210,0): 52, 84, 143, (591,211,0): 52, 84, 143, (591,212,0): 53, 85, 144, (591,213,0): 53, 85, 144, (591,214,0): 54, 86, 145, (591,215,0): 54, 86, 145, (591,216,0): 56, 88, 149, (591,217,0): 56, 88, 149, (591,218,0): 56, 87, 151, (591,219,0): 57, 88, 152, (591,220,0): 57, 88, 152, (591,221,0): 58, 89, 153, (591,222,0): 58, 89, 153, (591,223,0): 58, 89, 153, (591,224,0): 57, 91, 152, (591,225,0): 57, 91, 152, (591,226,0): 57, 91, 152, (591,227,0): 58, 92, 153, (591,228,0): 58, 92, 155, (591,229,0): 59, 93, 156, (591,230,0): 58, 93, 157, (591,231,0): 58, 93, 157, (591,232,0): 59, 94, 160, (591,233,0): 57, 94, 162, (591,234,0): 58, 95, 163, (591,235,0): 59, 96, 166, (591,236,0): 60, 97, 168, (591,237,0): 61, 98, 169, (591,238,0): 62, 99, 170, (591,239,0): 62, 98, 172, (591,240,0): 63, 101, 174, (591,241,0): 64, 102, 175, (591,242,0): 64, 102, 175, (591,243,0): 65, 103, 176, (591,244,0): 67, 105, 178, (591,245,0): 69, 105, 179, (591,246,0): 69, 105, 181, (591,247,0): 70, 106, 182, (591,248,0): 69, 105, 181, (591,249,0): 69, 105, 181, (591,250,0): 70, 106, 184, (591,251,0): 71, 107, 185, (591,252,0): 72, 108, 186, (591,253,0): 73, 109, 187, (591,254,0): 74, 109, 190, (591,255,0): 74, 109, 190, (591,256,0): 74, 106, 189, (591,257,0): 77, 108, 190, (591,258,0): 80, 110, 183, (591,259,0): 82, 110, 175, (591,260,0): 88, 111, 165, (591,261,0): 86, 105, 147, (591,262,0): 74, 85, 115, (591,263,0): 60, 62, 83, (591,264,0): 61, 53, 68, (591,265,0): 64, 48, 58, (591,266,0): 64, 43, 48, (591,267,0): 65, 40, 44, (591,268,0): 63, 38, 42, (591,269,0): 60, 35, 39, (591,270,0): 53, 31, 34, (591,271,0): 49, 26, 32, (591,272,0): 45, 22, 32, (591,273,0): 43, 22, 31, (591,274,0): 42, 20, 32, (591,275,0): 40, 20, 31, (591,276,0): 36, 19, 29, (591,277,0): 34, 18, 28, (591,278,0): 32, 16, 26, (591,279,0): 32, 16, 26, (591,280,0): 30, 17, 26, (591,281,0): 30, 17, 26, (591,282,0): 31, 15, 25, (591,283,0): 31, 15, 25, (591,284,0): 31, 14, 24, (591,285,0): 30, 13, 23, (591,286,0): 29, 12, 22, (591,287,0): 28, 12, 23, (591,288,0): 21, 13, 24, (591,289,0): 20, 14, 24, (591,290,0): 20, 14, 24, (591,291,0): 20, 14, 24, (591,292,0): 21, 13, 24, (591,293,0): 21, 13, 24, (591,294,0): 23, 13, 24, (591,295,0): 23, 13, 24, (591,296,0): 24, 14, 25, (591,297,0): 24, 12, 24, (591,298,0): 23, 11, 23, (591,299,0): 22, 10, 22, (591,300,0): 21, 7, 20, (591,301,0): 20, 6, 19, (591,302,0): 21, 5, 18, (591,303,0): 19, 5, 18, (591,304,0): 16, 6, 15, (591,305,0): 14, 7, 15, (591,306,0): 13, 6, 14, (591,307,0): 13, 6, 14, (591,308,0): 12, 5, 13, (591,309,0): 12, 5, 13, (591,310,0): 11, 4, 12, (591,311,0): 11, 4, 12, (591,312,0): 14, 7, 15, (591,313,0): 14, 7, 15, (591,314,0): 14, 7, 15, (591,315,0): 14, 7, 15, (591,316,0): 14, 7, 15, (591,317,0): 14, 7, 15, (591,318,0): 14, 7, 15, (591,319,0): 13, 8, 15, (591,320,0): 17, 12, 19, (591,321,0): 15, 12, 19, (591,322,0): 14, 11, 18, (591,323,0): 13, 10, 17, (591,324,0): 11, 8, 15, (591,325,0): 10, 7, 14, (591,326,0): 9, 6, 13, (591,327,0): 10, 5, 12, (591,328,0): 11, 6, 13, (591,329,0): 11, 6, 13, (591,330,0): 10, 5, 12, (591,331,0): 10, 5, 12, (591,332,0): 9, 4, 11, (591,333,0): 9, 4, 11, (591,334,0): 8, 3, 10, (591,335,0): 8, 3, 10, (591,336,0): 10, 3, 11, (591,337,0): 10, 3, 11, (591,338,0): 11, 4, 12, (591,339,0): 11, 4, 12, (591,340,0): 12, 5, 13, (591,341,0): 13, 6, 14, (591,342,0): 14, 7, 15, (591,343,0): 13, 8, 15, (591,344,0): 15, 8, 16, (591,345,0): 15, 8, 16, (591,346,0): 15, 8, 16, (591,347,0): 16, 9, 17, (591,348,0): 16, 9, 17, (591,349,0): 17, 10, 18, (591,350,0): 17, 10, 18, (591,351,0): 18, 11, 19, (591,352,0): 20, 14, 18, (591,353,0): 20, 14, 18, (591,354,0): 20, 14, 18, (591,355,0): 19, 13, 17, (591,356,0): 19, 13, 17, (591,357,0): 18, 12, 16, (591,358,0): 18, 12, 16, (591,359,0): 17, 11, 15, (591,360,0): 16, 10, 14, (591,361,0): 16, 10, 14, (591,362,0): 16, 10, 14, (591,363,0): 16, 10, 14, (591,364,0): 16, 10, 14, (591,365,0): 16, 10, 14, (591,366,0): 16, 10, 14, (591,367,0): 16, 10, 14, (591,368,0): 11, 6, 12, (591,369,0): 11, 6, 12, (591,370,0): 11, 6, 13, (591,371,0): 11, 6, 12, (591,372,0): 11, 6, 13, (591,373,0): 11, 6, 12, (591,374,0): 11, 6, 13, (591,375,0): 11, 6, 12, (591,376,0): 11, 6, 13, (591,377,0): 11, 6, 12, (591,378,0): 12, 7, 14, (591,379,0): 12, 7, 13, (591,380,0): 13, 8, 15, (591,381,0): 13, 8, 14, (591,382,0): 14, 9, 16, (591,383,0): 15, 8, 15, (591,384,0): 16, 5, 9, (591,385,0): 18, 6, 8, (591,386,0): 18, 6, 8, (591,387,0): 19, 7, 9, (591,388,0): 19, 7, 9, (591,389,0): 20, 8, 10, (591,390,0): 20, 8, 10, (591,391,0): 22, 7, 10, (591,392,0): 19, 4, 7, (591,393,0): 20, 5, 8, (591,394,0): 23, 7, 10, (591,395,0): 24, 8, 11, (591,396,0): 24, 8, 11, (591,397,0): 23, 7, 10, (591,398,0): 21, 5, 8, (591,399,0): 20, 4, 7, (591,400,0): 28, 8, 10, (591,401,0): 28, 8, 9, (591,402,0): 27, 9, 9, (591,403,0): 27, 9, 9, (591,404,0): 27, 9, 9, (591,405,0): 27, 9, 9, (591,406,0): 25, 9, 10, (591,407,0): 25, 9, 10, (591,408,0): 26, 10, 11, (591,409,0): 26, 10, 11, (591,410,0): 25, 11, 11, (591,411,0): 25, 11, 11, (591,412,0): 25, 11, 11, (591,413,0): 25, 11, 11, (591,414,0): 25, 11, 11, (591,415,0): 23, 11, 11, (591,416,0): 24, 12, 12, (591,417,0): 22, 12, 11, (591,418,0): 21, 11, 10, (591,419,0): 21, 11, 10, (591,420,0): 21, 11, 10, (591,421,0): 23, 11, 11, (591,422,0): 24, 12, 12, (591,423,0): 27, 13, 13, (591,424,0): 29, 15, 15, (591,425,0): 30, 16, 16, (591,426,0): 31, 17, 17, (591,427,0): 33, 17, 18, (591,428,0): 33, 17, 18, (591,429,0): 33, 17, 18, (591,430,0): 35, 16, 18, (591,431,0): 33, 17, 18, (591,432,0): 32, 16, 17, (591,433,0): 34, 18, 19, (591,434,0): 36, 20, 21, (591,435,0): 38, 22, 23, (591,436,0): 39, 23, 24, (591,437,0): 40, 24, 25, (591,438,0): 40, 24, 25, (591,439,0): 39, 23, 24, (591,440,0): 38, 22, 23, (591,441,0): 39, 23, 24, (591,442,0): 39, 23, 24, (591,443,0): 39, 23, 24, (591,444,0): 38, 22, 23, (591,445,0): 36, 20, 21, (591,446,0): 34, 18, 19, (591,447,0): 33, 17, 18, (591,448,0): 34, 18, 18, (591,449,0): 34, 19, 16, (591,450,0): 33, 17, 17, (591,451,0): 31, 15, 15, (591,452,0): 30, 14, 14, (591,453,0): 29, 13, 13, (591,454,0): 27, 13, 13, (591,455,0): 26, 12, 12, (591,456,0): 24, 12, 12, (591,457,0): 23, 11, 11, (591,458,0): 21, 9, 11, (591,459,0): 19, 7, 9, (591,460,0): 18, 6, 8, (591,461,0): 18, 8, 9, (591,462,0): 20, 8, 12, (591,463,0): 20, 9, 13, (591,464,0): 19, 10, 15, (591,465,0): 18, 9, 14, (591,466,0): 17, 8, 13, (591,467,0): 16, 7, 12, (591,468,0): 16, 5, 9, (591,469,0): 14, 3, 7, (591,470,0): 13, 2, 6, (591,471,0): 13, 3, 4, (591,472,0): 15, 4, 8, (591,473,0): 16, 4, 6, (591,474,0): 16, 4, 6, (591,475,0): 16, 4, 6, (591,476,0): 16, 4, 4, (591,477,0): 16, 4, 4, (591,478,0): 18, 4, 4, (591,479,0): 16, 4, 4, (591,480,0): 13, 2, 6, (591,481,0): 12, 3, 6, (591,482,0): 11, 0, 4, (591,483,0): 10, 1, 4, (591,484,0): 11, 0, 4, (591,485,0): 10, 1, 4, (591,486,0): 13, 2, 6, (591,487,0): 12, 3, 6, (591,488,0): 12, 1, 5, (591,489,0): 11, 2, 7, (591,490,0): 12, 1, 7, (591,491,0): 11, 2, 7, (591,492,0): 12, 1, 7, (591,493,0): 11, 2, 7, (591,494,0): 12, 1, 7, (591,495,0): 12, 1, 5, (591,496,0): 17, 5, 7, (591,497,0): 18, 6, 6, (591,498,0): 20, 5, 8, (591,499,0): 21, 7, 7, (591,500,0): 22, 6, 7, (591,501,0): 23, 7, 8, (591,502,0): 25, 6, 8, (591,503,0): 25, 6, 8, (591,504,0): 25, 5, 7, (591,505,0): 26, 6, 8, (591,506,0): 29, 7, 10, (591,507,0): 30, 8, 11, (591,508,0): 33, 8, 12, (591,509,0): 32, 7, 10, (591,510,0): 32, 7, 11, (591,511,0): 31, 6, 9, (591,512,0): 32, 10, 12, (591,513,0): 29, 9, 8, (591,514,0): 28, 7, 6, (591,515,0): 25, 5, 4, (591,516,0): 28, 7, 6, (591,517,0): 31, 11, 10, (591,518,0): 37, 16, 15, (591,519,0): 40, 20, 19, (591,520,0): 40, 19, 18, (591,521,0): 38, 19, 15, (591,522,0): 38, 17, 16, (591,523,0): 36, 17, 13, (591,524,0): 35, 14, 11, (591,525,0): 33, 14, 10, (591,526,0): 33, 12, 9, (591,527,0): 32, 12, 13, (591,528,0): 22, 6, 9, (591,529,0): 21, 6, 13, (591,530,0): 19, 6, 13, (591,531,0): 18, 5, 12, (591,532,0): 17, 4, 11, (591,533,0): 16, 3, 10, (591,534,0): 16, 3, 10, (591,535,0): 15, 2, 9, (591,536,0): 14, 3, 9, (591,537,0): 14, 3, 9, (591,538,0): 16, 5, 11, (591,539,0): 16, 5, 11, (591,540,0): 15, 4, 12, (591,541,0): 12, 2, 10, (591,542,0): 11, 0, 8, (591,543,0): 9, 0, 4, (591,544,0): 12, 1, 7, (591,545,0): 12, 1, 5, (591,546,0): 13, 2, 8, (591,547,0): 13, 2, 6, (591,548,0): 15, 2, 9, (591,549,0): 15, 3, 7, (591,550,0): 16, 3, 10, (591,551,0): 16, 4, 8, (591,552,0): 15, 2, 9, (591,553,0): 18, 3, 8, (591,554,0): 19, 4, 11, (591,555,0): 20, 5, 10, (591,556,0): 22, 7, 14, (591,557,0): 23, 8, 13, (591,558,0): 25, 8, 16, (591,559,0): 25, 8, 14, (591,560,0): 24, 9, 12, (591,561,0): 24, 10, 10, (591,562,0): 25, 10, 13, (591,563,0): 25, 11, 11, (591,564,0): 26, 12, 12, (591,565,0): 26, 12, 12, (591,566,0): 27, 13, 13, (591,567,0): 27, 13, 13, (591,568,0): 28, 14, 14, (591,569,0): 27, 13, 13, (591,570,0): 27, 11, 12, (591,571,0): 27, 11, 12, (591,572,0): 27, 11, 12, (591,573,0): 28, 12, 13, (591,574,0): 29, 13, 14, (591,575,0): 30, 14, 15, (591,576,0): 32, 16, 17, (591,577,0): 33, 17, 18, (591,578,0): 35, 19, 20, (591,579,0): 37, 21, 22, (591,580,0): 40, 24, 25, (591,581,0): 43, 27, 28, (591,582,0): 44, 30, 30, (591,583,0): 45, 31, 31, (591,584,0): 42, 28, 28, (591,585,0): 39, 27, 27, (591,586,0): 37, 25, 25, (591,587,0): 36, 24, 24, (591,588,0): 36, 24, 24, (591,589,0): 37, 25, 25, (591,590,0): 39, 27, 27, (591,591,0): 40, 28, 28, (591,592,0): 46, 30, 31, (591,593,0): 46, 30, 31, (591,594,0): 48, 29, 33, (591,595,0): 47, 31, 32, (591,596,0): 49, 30, 34, (591,597,0): 48, 32, 33, (591,598,0): 50, 31, 35, (591,599,0): 48, 32, 33, (592,0,0): 27, 53, 66, (592,1,0): 26, 54, 66, (592,2,0): 27, 53, 66, (592,3,0): 26, 54, 66, (592,4,0): 27, 53, 66, (592,5,0): 26, 54, 66, (592,6,0): 27, 53, 66, (592,7,0): 26, 54, 66, (592,8,0): 28, 54, 67, (592,9,0): 27, 55, 67, (592,10,0): 28, 54, 67, (592,11,0): 27, 55, 67, (592,12,0): 28, 54, 67, (592,13,0): 27, 55, 67, (592,14,0): 28, 54, 67, (592,15,0): 28, 54, 67, (592,16,0): 29, 56, 67, (592,17,0): 29, 56, 67, (592,18,0): 29, 56, 67, (592,19,0): 29, 56, 67, (592,20,0): 31, 55, 67, (592,21,0): 31, 55, 67, (592,22,0): 31, 55, 67, (592,23,0): 31, 55, 67, (592,24,0): 33, 55, 68, (592,25,0): 33, 55, 68, (592,26,0): 34, 56, 69, (592,27,0): 34, 56, 69, (592,28,0): 37, 56, 70, (592,29,0): 37, 56, 70, (592,30,0): 38, 57, 71, (592,31,0): 39, 57, 71, (592,32,0): 41, 57, 72, (592,33,0): 42, 58, 73, (592,34,0): 44, 57, 73, (592,35,0): 45, 58, 74, (592,36,0): 45, 58, 74, (592,37,0): 47, 59, 75, (592,38,0): 47, 59, 75, (592,39,0): 47, 59, 75, (592,40,0): 49, 58, 75, (592,41,0): 50, 59, 74, (592,42,0): 51, 58, 74, (592,43,0): 52, 59, 75, (592,44,0): 52, 59, 75, (592,45,0): 54, 60, 76, (592,46,0): 54, 60, 76, (592,47,0): 54, 60, 76, (592,48,0): 54, 60, 76, (592,49,0): 53, 60, 76, (592,50,0): 53, 60, 78, (592,51,0): 53, 60, 76, (592,52,0): 53, 60, 78, (592,53,0): 53, 60, 76, (592,54,0): 53, 60, 78, (592,55,0): 53, 60, 76, (592,56,0): 55, 62, 80, (592,57,0): 55, 62, 78, (592,58,0): 56, 63, 81, (592,59,0): 56, 63, 79, (592,60,0): 57, 64, 82, (592,61,0): 57, 64, 80, (592,62,0): 58, 65, 83, (592,63,0): 59, 65, 81, (592,64,0): 61, 64, 79, (592,65,0): 62, 64, 79, (592,66,0): 63, 65, 80, (592,67,0): 63, 65, 80, (592,68,0): 64, 66, 81, (592,69,0): 64, 66, 81, (592,70,0): 65, 67, 82, (592,71,0): 65, 67, 82, (592,72,0): 65, 67, 82, (592,73,0): 65, 67, 82, (592,74,0): 65, 67, 82, (592,75,0): 65, 67, 82, (592,76,0): 65, 67, 82, (592,77,0): 65, 67, 82, (592,78,0): 65, 67, 82, (592,79,0): 65, 67, 82, (592,80,0): 65, 66, 86, (592,81,0): 64, 67, 86, (592,82,0): 64, 67, 86, (592,83,0): 64, 67, 86, (592,84,0): 64, 67, 86, (592,85,0): 62, 67, 86, (592,86,0): 62, 67, 86, (592,87,0): 62, 67, 86, (592,88,0): 60, 65, 84, (592,89,0): 59, 66, 84, (592,90,0): 59, 66, 84, (592,91,0): 57, 66, 83, (592,92,0): 57, 66, 83, (592,93,0): 56, 65, 82, (592,94,0): 56, 65, 82, (592,95,0): 56, 65, 82, (592,96,0): 57, 66, 81, (592,97,0): 58, 65, 81, (592,98,0): 57, 64, 80, (592,99,0): 57, 64, 80, (592,100,0): 56, 63, 79, (592,101,0): 56, 63, 79, (592,102,0): 55, 62, 78, (592,103,0): 55, 62, 78, (592,104,0): 57, 64, 80, (592,105,0): 57, 64, 80, (592,106,0): 56, 63, 79, (592,107,0): 55, 62, 78, (592,108,0): 55, 62, 78, (592,109,0): 56, 63, 79, (592,110,0): 57, 64, 80, (592,111,0): 56, 65, 82, (592,112,0): 51, 62, 80, (592,113,0): 51, 62, 82, (592,114,0): 54, 62, 83, (592,115,0): 55, 63, 82, (592,116,0): 58, 63, 82, (592,117,0): 59, 65, 81, (592,118,0): 62, 65, 80, (592,119,0): 63, 65, 78, (592,120,0): 68, 66, 77, (592,121,0): 69, 66, 75, (592,122,0): 70, 67, 74, (592,123,0): 72, 67, 73, (592,124,0): 74, 68, 72, (592,125,0): 76, 67, 72, (592,126,0): 78, 67, 71, (592,127,0): 78, 67, 73, (592,128,0): 90, 80, 88, (592,129,0): 88, 80, 91, (592,130,0): 85, 79, 91, (592,131,0): 79, 77, 91, (592,132,0): 74, 75, 93, (592,133,0): 69, 74, 94, (592,134,0): 65, 72, 98, (592,135,0): 59, 73, 100, (592,136,0): 56, 73, 101, (592,137,0): 53, 74, 103, (592,138,0): 50, 73, 104, (592,139,0): 48, 75, 104, (592,140,0): 47, 74, 103, (592,141,0): 45, 75, 103, (592,142,0): 44, 74, 102, (592,143,0): 44, 74, 102, (592,144,0): 48, 73, 104, (592,145,0): 48, 73, 104, (592,146,0): 49, 72, 104, (592,147,0): 48, 73, 104, (592,148,0): 48, 73, 104, (592,149,0): 48, 72, 106, (592,150,0): 47, 73, 106, (592,151,0): 47, 73, 108, (592,152,0): 49, 75, 112, (592,153,0): 49, 75, 112, (592,154,0): 49, 74, 114, (592,155,0): 49, 74, 114, (592,156,0): 47, 75, 114, (592,157,0): 47, 75, 114, (592,158,0): 47, 75, 114, (592,159,0): 47, 75, 115, (592,160,0): 43, 72, 114, (592,161,0): 44, 73, 117, (592,162,0): 45, 74, 118, (592,163,0): 46, 75, 119, (592,164,0): 46, 75, 119, (592,165,0): 45, 74, 118, (592,166,0): 44, 73, 117, (592,167,0): 43, 71, 118, (592,168,0): 47, 75, 122, (592,169,0): 47, 75, 122, (592,170,0): 47, 75, 122, (592,171,0): 47, 75, 122, (592,172,0): 47, 75, 122, (592,173,0): 47, 75, 122, (592,174,0): 47, 75, 122, (592,175,0): 47, 75, 122, (592,176,0): 47, 78, 125, (592,177,0): 47, 78, 125, (592,178,0): 47, 78, 125, (592,179,0): 48, 79, 126, (592,180,0): 48, 79, 126, (592,181,0): 49, 80, 127, (592,182,0): 49, 80, 127, (592,183,0): 50, 81, 128, (592,184,0): 47, 78, 125, (592,185,0): 47, 78, 125, (592,186,0): 48, 79, 126, (592,187,0): 48, 79, 126, (592,188,0): 49, 80, 127, (592,189,0): 49, 80, 127, (592,190,0): 50, 81, 128, (592,191,0): 50, 81, 128, (592,192,0): 50, 80, 130, (592,193,0): 50, 80, 132, (592,194,0): 50, 80, 132, (592,195,0): 50, 80, 132, (592,196,0): 50, 80, 132, (592,197,0): 50, 80, 132, (592,198,0): 50, 80, 132, (592,199,0): 50, 80, 132, (592,200,0): 47, 77, 129, (592,201,0): 48, 78, 130, (592,202,0): 49, 79, 131, (592,203,0): 50, 80, 132, (592,204,0): 51, 81, 133, (592,205,0): 52, 82, 134, (592,206,0): 52, 82, 136, (592,207,0): 52, 83, 137, (592,208,0): 54, 86, 145, (592,209,0): 54, 86, 145, (592,210,0): 55, 87, 148, (592,211,0): 55, 87, 148, (592,212,0): 56, 88, 149, (592,213,0): 56, 88, 149, (592,214,0): 57, 89, 150, (592,215,0): 57, 89, 150, (592,216,0): 55, 87, 148, (592,217,0): 56, 88, 149, (592,218,0): 56, 88, 149, (592,219,0): 57, 89, 150, (592,220,0): 57, 89, 150, (592,221,0): 58, 90, 151, (592,222,0): 58, 90, 151, (592,223,0): 56, 90, 151, (592,224,0): 53, 89, 151, (592,225,0): 51, 89, 151, (592,226,0): 51, 89, 151, (592,227,0): 52, 90, 152, (592,228,0): 52, 90, 153, (592,229,0): 53, 91, 154, (592,230,0): 53, 91, 156, (592,231,0): 54, 92, 157, (592,232,0): 55, 92, 160, (592,233,0): 55, 94, 161, (592,234,0): 56, 95, 162, (592,235,0): 57, 96, 163, (592,236,0): 58, 97, 166, (592,237,0): 59, 98, 167, (592,238,0): 59, 98, 167, (592,239,0): 60, 98, 169, (592,240,0): 62, 101, 176, (592,241,0): 62, 101, 176, (592,242,0): 63, 102, 177, (592,243,0): 63, 102, 177, (592,244,0): 64, 103, 178, (592,245,0): 65, 103, 178, (592,246,0): 66, 103, 181, (592,247,0): 66, 103, 181, (592,248,0): 69, 106, 184, (592,249,0): 69, 106, 184, (592,250,0): 71, 107, 185, (592,251,0): 71, 107, 185, (592,252,0): 74, 107, 186, (592,253,0): 74, 107, 186, (592,254,0): 75, 108, 187, (592,255,0): 73, 109, 187, (592,256,0): 70, 106, 182, (592,257,0): 72, 109, 180, (592,258,0): 77, 110, 179, (592,259,0): 82, 112, 176, (592,260,0): 84, 109, 166, (592,261,0): 82, 98, 147, (592,262,0): 76, 83, 125, (592,263,0): 74, 73, 105, (592,264,0): 71, 59, 83, (592,265,0): 71, 53, 69, (592,266,0): 70, 46, 59, (592,267,0): 67, 41, 50, (592,268,0): 64, 39, 45, (592,269,0): 57, 34, 40, (592,270,0): 50, 31, 37, (592,271,0): 45, 26, 32, (592,272,0): 47, 24, 32, (592,273,0): 46, 23, 31, (592,274,0): 45, 22, 32, (592,275,0): 41, 20, 29, (592,276,0): 39, 18, 27, (592,277,0): 35, 15, 24, (592,278,0): 34, 14, 23, (592,279,0): 31, 14, 22, (592,280,0): 30, 14, 24, (592,281,0): 30, 14, 24, (592,282,0): 27, 14, 24, (592,283,0): 27, 14, 24, (592,284,0): 26, 13, 23, (592,285,0): 26, 13, 23, (592,286,0): 25, 12, 22, (592,287,0): 24, 12, 24, (592,288,0): 20, 12, 23, (592,289,0): 20, 12, 25, (592,290,0): 20, 12, 25, (592,291,0): 20, 12, 25, (592,292,0): 21, 13, 26, (592,293,0): 21, 13, 26, (592,294,0): 21, 13, 26, (592,295,0): 21, 13, 26, (592,296,0): 17, 9, 22, (592,297,0): 19, 8, 22, (592,298,0): 18, 7, 21, (592,299,0): 17, 6, 20, (592,300,0): 16, 5, 19, (592,301,0): 16, 5, 19, (592,302,0): 15, 4, 18, (592,303,0): 15, 5, 16, (592,304,0): 15, 8, 16, (592,305,0): 15, 8, 16, (592,306,0): 15, 8, 16, (592,307,0): 15, 8, 16, (592,308,0): 15, 8, 16, (592,309,0): 15, 8, 16, (592,310,0): 15, 8, 16, (592,311,0): 15, 8, 16, (592,312,0): 13, 6, 14, (592,313,0): 13, 6, 14, (592,314,0): 13, 6, 14, (592,315,0): 13, 6, 14, (592,316,0): 13, 6, 14, (592,317,0): 13, 6, 14, (592,318,0): 13, 6, 14, (592,319,0): 12, 7, 14, (592,320,0): 11, 6, 13, (592,321,0): 9, 6, 13, (592,322,0): 11, 6, 13, (592,323,0): 11, 6, 13, (592,324,0): 11, 6, 13, (592,325,0): 11, 6, 13, (592,326,0): 11, 6, 13, (592,327,0): 12, 5, 13, (592,328,0): 12, 5, 13, (592,329,0): 12, 5, 13, (592,330,0): 12, 5, 13, (592,331,0): 12, 5, 13, (592,332,0): 14, 4, 13, (592,333,0): 14, 4, 13, (592,334,0): 14, 4, 13, (592,335,0): 14, 4, 13, (592,336,0): 12, 2, 13, (592,337,0): 12, 2, 13, (592,338,0): 13, 3, 14, (592,339,0): 11, 3, 14, (592,340,0): 12, 4, 15, (592,341,0): 12, 6, 16, (592,342,0): 13, 7, 17, (592,343,0): 11, 8, 17, (592,344,0): 11, 5, 15, (592,345,0): 12, 6, 16, (592,346,0): 12, 6, 16, (592,347,0): 14, 6, 17, (592,348,0): 16, 8, 19, (592,349,0): 19, 9, 20, (592,350,0): 19, 9, 20, (592,351,0): 20, 10, 19, (592,352,0): 23, 14, 19, (592,353,0): 23, 14, 17, (592,354,0): 23, 14, 17, (592,355,0): 22, 13, 16, (592,356,0): 21, 12, 15, (592,357,0): 20, 11, 14, (592,358,0): 19, 10, 13, (592,359,0): 19, 10, 13, (592,360,0): 19, 10, 13, (592,361,0): 18, 9, 12, (592,362,0): 18, 9, 12, (592,363,0): 17, 8, 11, (592,364,0): 17, 8, 11, (592,365,0): 16, 7, 10, (592,366,0): 16, 7, 10, (592,367,0): 16, 7, 12, (592,368,0): 8, 2, 6, (592,369,0): 9, 3, 7, (592,370,0): 10, 3, 10, (592,371,0): 11, 5, 9, (592,372,0): 13, 6, 13, (592,373,0): 14, 8, 12, (592,374,0): 15, 8, 15, (592,375,0): 16, 10, 14, (592,376,0): 15, 8, 15, (592,377,0): 15, 9, 13, (592,378,0): 16, 9, 16, (592,379,0): 16, 10, 14, (592,380,0): 16, 9, 16, (592,381,0): 15, 9, 13, (592,382,0): 14, 7, 14, (592,383,0): 15, 6, 11, (592,384,0): 20, 8, 10, (592,385,0): 23, 9, 9, (592,386,0): 24, 10, 10, (592,387,0): 24, 10, 10, (592,388,0): 24, 10, 10, (592,389,0): 24, 10, 10, (592,390,0): 23, 9, 9, (592,391,0): 23, 7, 8, (592,392,0): 25, 9, 10, (592,393,0): 25, 9, 10, (592,394,0): 25, 9, 10, (592,395,0): 25, 9, 10, (592,396,0): 25, 9, 10, (592,397,0): 25, 9, 10, (592,398,0): 25, 9, 10, (592,399,0): 25, 9, 9, (592,400,0): 27, 7, 6, (592,401,0): 30, 10, 9, (592,402,0): 32, 12, 11, (592,403,0): 31, 11, 10, (592,404,0): 27, 9, 7, (592,405,0): 26, 8, 6, (592,406,0): 28, 10, 10, (592,407,0): 31, 13, 13, (592,408,0): 23, 7, 7, (592,409,0): 23, 7, 7, (592,410,0): 23, 9, 9, (592,411,0): 24, 10, 10, (592,412,0): 25, 11, 11, (592,413,0): 25, 11, 11, (592,414,0): 24, 12, 14, (592,415,0): 26, 12, 12, (592,416,0): 27, 8, 10, (592,417,0): 28, 8, 9, (592,418,0): 28, 10, 10, (592,419,0): 28, 10, 10, (592,420,0): 29, 11, 11, (592,421,0): 27, 11, 11, (592,422,0): 28, 12, 12, (592,423,0): 28, 12, 12, (592,424,0): 27, 13, 12, (592,425,0): 27, 13, 12, (592,426,0): 28, 14, 13, (592,427,0): 26, 15, 13, (592,428,0): 27, 16, 14, (592,429,0): 27, 16, 14, (592,430,0): 28, 17, 15, (592,431,0): 28, 17, 15, (592,432,0): 34, 20, 20, (592,433,0): 34, 20, 20, (592,434,0): 34, 20, 20, (592,435,0): 35, 21, 21, (592,436,0): 36, 22, 22, (592,437,0): 37, 23, 23, (592,438,0): 38, 24, 24, (592,439,0): 38, 24, 24, (592,440,0): 36, 22, 22, (592,441,0): 35, 21, 21, (592,442,0): 34, 20, 20, (592,443,0): 33, 19, 19, (592,444,0): 32, 18, 18, (592,445,0): 31, 17, 17, (592,446,0): 30, 16, 16, (592,447,0): 30, 16, 16, (592,448,0): 31, 17, 17, (592,449,0): 28, 14, 13, (592,450,0): 25, 11, 11, (592,451,0): 25, 11, 11, (592,452,0): 28, 14, 14, (592,453,0): 29, 15, 15, (592,454,0): 27, 13, 13, (592,455,0): 25, 11, 11, (592,456,0): 29, 15, 15, (592,457,0): 28, 14, 14, (592,458,0): 27, 13, 13, (592,459,0): 25, 11, 11, (592,460,0): 23, 9, 9, (592,461,0): 19, 7, 7, (592,462,0): 20, 5, 8, (592,463,0): 17, 5, 7, (592,464,0): 19, 7, 9, (592,465,0): 19, 7, 9, (592,466,0): 20, 8, 10, (592,467,0): 20, 8, 10, (592,468,0): 19, 7, 9, (592,469,0): 17, 5, 7, (592,470,0): 16, 4, 6, (592,471,0): 14, 2, 2, (592,472,0): 12, 0, 2, (592,473,0): 15, 1, 1, (592,474,0): 18, 4, 4, (592,475,0): 20, 6, 6, (592,476,0): 21, 7, 7, (592,477,0): 20, 6, 6, (592,478,0): 19, 5, 5, (592,479,0): 16, 4, 4, (592,480,0): 18, 9, 12, (592,481,0): 15, 9, 11, (592,482,0): 16, 7, 10, (592,483,0): 13, 7, 9, (592,484,0): 13, 4, 9, (592,485,0): 10, 4, 8, (592,486,0): 11, 2, 7, (592,487,0): 8, 2, 6, (592,488,0): 12, 3, 8, (592,489,0): 10, 3, 10, (592,490,0): 10, 0, 8, (592,491,0): 8, 1, 8, (592,492,0): 10, 0, 8, (592,493,0): 8, 1, 8, (592,494,0): 12, 2, 11, (592,495,0): 12, 2, 10, (592,496,0): 15, 4, 8, (592,497,0): 17, 5, 7, (592,498,0): 21, 6, 11, (592,499,0): 22, 7, 10, (592,500,0): 22, 7, 10, (592,501,0): 22, 7, 10, (592,502,0): 23, 7, 8, (592,503,0): 22, 6, 7, (592,504,0): 25, 6, 8, (592,505,0): 25, 6, 8, (592,506,0): 27, 7, 8, (592,507,0): 27, 7, 8, (592,508,0): 29, 7, 9, (592,509,0): 30, 9, 8, (592,510,0): 30, 8, 10, (592,511,0): 30, 8, 10, (592,512,0): 29, 7, 9, (592,513,0): 30, 8, 10, (592,514,0): 34, 10, 10, (592,515,0): 34, 13, 12, (592,516,0): 38, 14, 14, (592,517,0): 38, 17, 16, (592,518,0): 42, 18, 16, (592,519,0): 41, 20, 17, (592,520,0): 42, 18, 16, (592,521,0): 40, 19, 14, (592,522,0): 42, 18, 16, (592,523,0): 39, 18, 13, (592,524,0): 39, 15, 11, (592,525,0): 34, 13, 8, (592,526,0): 34, 10, 6, (592,527,0): 29, 10, 6, (592,528,0): 27, 11, 11, (592,529,0): 23, 9, 9, (592,530,0): 21, 7, 7, (592,531,0): 21, 7, 7, (592,532,0): 22, 7, 10, (592,533,0): 22, 7, 10, (592,534,0): 19, 4, 7, (592,535,0): 17, 2, 5, (592,536,0): 17, 2, 7, (592,537,0): 18, 3, 8, (592,538,0): 20, 3, 9, (592,539,0): 20, 3, 9, (592,540,0): 19, 2, 10, (592,541,0): 16, 1, 8, (592,542,0): 15, 0, 6, (592,543,0): 12, 0, 4, (592,544,0): 15, 2, 9, (592,545,0): 14, 3, 9, (592,546,0): 14, 3, 11, (592,547,0): 14, 3, 9, (592,548,0): 14, 3, 11, (592,549,0): 14, 3, 9, (592,550,0): 14, 3, 11, (592,551,0): 14, 3, 9, (592,552,0): 16, 5, 13, (592,553,0): 18, 5, 12, (592,554,0): 18, 5, 14, (592,555,0): 19, 6, 13, (592,556,0): 19, 6, 15, (592,557,0): 20, 7, 14, (592,558,0): 20, 7, 16, (592,559,0): 20, 7, 14, (592,560,0): 21, 9, 13, (592,561,0): 21, 9, 11, (592,562,0): 24, 9, 14, (592,563,0): 25, 10, 13, (592,564,0): 26, 11, 14, (592,565,0): 27, 12, 15, (592,566,0): 29, 13, 16, (592,567,0): 29, 13, 16, (592,568,0): 27, 11, 12, (592,569,0): 29, 13, 14, (592,570,0): 33, 15, 15, (592,571,0): 34, 16, 16, (592,572,0): 34, 16, 16, (592,573,0): 33, 15, 15, (592,574,0): 31, 13, 13, (592,575,0): 29, 11, 11, (592,576,0): 29, 13, 13, (592,577,0): 30, 14, 14, (592,578,0): 32, 16, 16, (592,579,0): 34, 18, 18, (592,580,0): 37, 21, 21, (592,581,0): 39, 23, 23, (592,582,0): 41, 25, 25, (592,583,0): 42, 26, 26, (592,584,0): 43, 27, 27, (592,585,0): 42, 28, 27, (592,586,0): 42, 28, 27, (592,587,0): 42, 28, 27, (592,588,0): 42, 28, 27, (592,589,0): 42, 28, 27, (592,590,0): 42, 28, 27, (592,591,0): 42, 28, 28, (592,592,0): 45, 30, 33, (592,593,0): 45, 30, 33, (592,594,0): 47, 30, 36, (592,595,0): 47, 32, 35, (592,596,0): 49, 32, 38, (592,597,0): 49, 34, 37, (592,598,0): 51, 34, 40, (592,599,0): 50, 35, 38, (593,0,0): 26, 54, 66, (593,1,0): 26, 54, 66, (593,2,0): 26, 54, 66, (593,3,0): 26, 54, 66, (593,4,0): 26, 54, 66, (593,5,0): 26, 54, 66, (593,6,0): 26, 54, 66, (593,7,0): 26, 54, 66, (593,8,0): 27, 55, 67, (593,9,0): 27, 55, 67, (593,10,0): 27, 55, 67, (593,11,0): 27, 55, 67, (593,12,0): 27, 55, 67, (593,13,0): 27, 55, 67, (593,14,0): 27, 55, 67, (593,15,0): 27, 55, 67, (593,16,0): 28, 56, 67, (593,17,0): 28, 56, 67, (593,18,0): 28, 56, 67, (593,19,0): 28, 56, 67, (593,20,0): 29, 56, 67, (593,21,0): 29, 56, 67, (593,22,0): 31, 55, 67, (593,23,0): 31, 55, 67, (593,24,0): 32, 56, 68, (593,25,0): 32, 56, 68, (593,26,0): 34, 56, 69, (593,27,0): 34, 56, 69, (593,28,0): 37, 56, 70, (593,29,0): 37, 56, 70, (593,30,0): 38, 57, 71, (593,31,0): 39, 57, 71, (593,32,0): 41, 57, 72, (593,33,0): 44, 57, 73, (593,34,0): 44, 57, 73, (593,35,0): 44, 57, 73, (593,36,0): 46, 58, 74, (593,37,0): 46, 58, 74, (593,38,0): 47, 59, 75, (593,39,0): 47, 59, 75, (593,40,0): 49, 58, 75, (593,41,0): 50, 59, 76, (593,42,0): 51, 58, 76, (593,43,0): 51, 58, 76, (593,44,0): 52, 59, 77, (593,45,0): 52, 59, 77, (593,46,0): 54, 59, 78, (593,47,0): 54, 59, 78, (593,48,0): 53, 60, 78, (593,49,0): 53, 60, 78, (593,50,0): 53, 60, 78, (593,51,0): 53, 60, 78, (593,52,0): 53, 60, 78, (593,53,0): 53, 60, 78, (593,54,0): 53, 60, 78, (593,55,0): 53, 60, 78, (593,56,0): 55, 62, 80, (593,57,0): 55, 62, 80, (593,58,0): 55, 62, 80, (593,59,0): 56, 63, 81, (593,60,0): 56, 63, 81, (593,61,0): 57, 64, 82, (593,62,0): 57, 64, 82, (593,63,0): 58, 65, 81, (593,64,0): 61, 64, 81, (593,65,0): 61, 64, 79, (593,66,0): 61, 64, 79, (593,67,0): 62, 65, 80, (593,68,0): 62, 65, 80, (593,69,0): 63, 66, 81, (593,70,0): 63, 66, 81, (593,71,0): 64, 67, 82, (593,72,0): 64, 67, 82, (593,73,0): 64, 67, 82, (593,74,0): 64, 67, 82, (593,75,0): 64, 67, 82, (593,76,0): 64, 67, 82, (593,77,0): 64, 67, 82, (593,78,0): 64, 67, 82, (593,79,0): 64, 67, 82, (593,80,0): 64, 67, 84, (593,81,0): 64, 67, 86, (593,82,0): 64, 67, 86, (593,83,0): 64, 67, 86, (593,84,0): 62, 67, 86, (593,85,0): 62, 67, 86, (593,86,0): 62, 67, 86, (593,87,0): 62, 67, 86, (593,88,0): 59, 66, 84, (593,89,0): 59, 66, 84, (593,90,0): 58, 67, 84, (593,91,0): 57, 66, 83, (593,92,0): 57, 66, 83, (593,93,0): 56, 65, 82, (593,94,0): 54, 66, 82, (593,95,0): 56, 65, 80, (593,96,0): 58, 66, 79, (593,97,0): 57, 65, 78, (593,98,0): 57, 65, 78, (593,99,0): 56, 64, 77, (593,100,0): 56, 64, 77, (593,101,0): 55, 63, 76, (593,102,0): 55, 63, 76, (593,103,0): 55, 63, 76, (593,104,0): 57, 65, 78, (593,105,0): 56, 64, 77, (593,106,0): 55, 63, 76, (593,107,0): 54, 62, 75, (593,108,0): 54, 62, 75, (593,109,0): 55, 63, 76, (593,110,0): 56, 64, 77, (593,111,0): 57, 64, 80, (593,112,0): 54, 61, 80, (593,113,0): 53, 61, 80, (593,114,0): 55, 62, 81, (593,115,0): 57, 62, 81, (593,116,0): 60, 63, 80, (593,117,0): 61, 64, 79, (593,118,0): 63, 65, 80, (593,119,0): 65, 65, 77, (593,120,0): 71, 69, 80, (593,121,0): 72, 69, 78, (593,122,0): 73, 70, 77, (593,123,0): 75, 70, 76, (593,124,0): 77, 71, 75, (593,125,0): 77, 71, 73, (593,126,0): 80, 71, 74, (593,127,0): 80, 71, 76, (593,128,0): 88, 81, 89, (593,129,0): 86, 80, 92, (593,130,0): 81, 79, 93, (593,131,0): 76, 78, 93, (593,132,0): 72, 75, 94, (593,133,0): 66, 74, 95, (593,134,0): 61, 73, 99, (593,135,0): 58, 73, 102, (593,136,0): 54, 73, 103, (593,137,0): 50, 73, 104, (593,138,0): 49, 74, 104, (593,139,0): 47, 74, 103, (593,140,0): 47, 74, 103, (593,141,0): 44, 74, 102, (593,142,0): 44, 74, 100, (593,143,0): 46, 73, 102, (593,144,0): 48, 73, 104, (593,145,0): 49, 72, 106, (593,146,0): 49, 72, 106, (593,147,0): 49, 72, 106, (593,148,0): 48, 72, 106, (593,149,0): 48, 72, 106, (593,150,0): 47, 73, 108, (593,151,0): 47, 73, 108, (593,152,0): 49, 75, 112, (593,153,0): 49, 75, 112, (593,154,0): 47, 75, 114, (593,155,0): 47, 75, 114, (593,156,0): 46, 76, 114, (593,157,0): 46, 76, 114, (593,158,0): 46, 76, 114, (593,159,0): 46, 75, 115, (593,160,0): 44, 73, 117, (593,161,0): 45, 73, 120, (593,162,0): 46, 74, 121, (593,163,0): 47, 75, 122, (593,164,0): 47, 75, 122, (593,165,0): 46, 74, 121, (593,166,0): 45, 73, 120, (593,167,0): 44, 72, 119, (593,168,0): 47, 75, 122, (593,169,0): 47, 75, 122, (593,170,0): 47, 75, 122, (593,171,0): 47, 75, 122, (593,172,0): 47, 75, 122, (593,173,0): 47, 75, 122, (593,174,0): 47, 75, 122, (593,175,0): 47, 75, 122, (593,176,0): 46, 77, 124, (593,177,0): 46, 77, 124, (593,178,0): 46, 77, 124, (593,179,0): 47, 78, 125, (593,180,0): 47, 78, 125, (593,181,0): 48, 79, 126, (593,182,0): 48, 79, 126, (593,183,0): 49, 80, 127, (593,184,0): 47, 78, 125, (593,185,0): 47, 78, 125, (593,186,0): 48, 79, 126, (593,187,0): 48, 79, 126, (593,188,0): 49, 80, 127, (593,189,0): 49, 80, 127, (593,190,0): 50, 81, 128, (593,191,0): 50, 81, 128, (593,192,0): 49, 79, 131, (593,193,0): 49, 79, 131, (593,194,0): 49, 79, 131, (593,195,0): 49, 79, 131, (593,196,0): 49, 79, 131, (593,197,0): 49, 79, 131, (593,198,0): 49, 79, 131, (593,199,0): 49, 79, 131, (593,200,0): 48, 78, 130, (593,201,0): 48, 78, 130, (593,202,0): 49, 79, 131, (593,203,0): 50, 80, 132, (593,204,0): 51, 81, 133, (593,205,0): 52, 82, 134, (593,206,0): 53, 83, 135, (593,207,0): 52, 83, 137, (593,208,0): 55, 85, 145, (593,209,0): 54, 86, 147, (593,210,0): 54, 86, 147, (593,211,0): 55, 87, 148, (593,212,0): 55, 87, 148, (593,213,0): 56, 88, 149, (593,214,0): 56, 88, 149, (593,215,0): 57, 89, 150, (593,216,0): 55, 87, 148, (593,217,0): 55, 87, 148, (593,218,0): 55, 87, 148, (593,219,0): 56, 88, 149, (593,220,0): 56, 88, 149, (593,221,0): 57, 89, 150, (593,222,0): 57, 89, 150, (593,223,0): 55, 89, 150, (593,224,0): 51, 89, 151, (593,225,0): 50, 90, 151, (593,226,0): 51, 91, 153, (593,227,0): 51, 91, 153, (593,228,0): 52, 92, 154, (593,229,0): 52, 92, 154, (593,230,0): 52, 91, 156, (593,231,0): 53, 92, 157, (593,232,0): 55, 94, 161, (593,233,0): 55, 94, 161, (593,234,0): 56, 95, 162, (593,235,0): 57, 96, 163, (593,236,0): 58, 97, 166, (593,237,0): 59, 98, 167, (593,238,0): 60, 99, 168, (593,239,0): 60, 98, 169, (593,240,0): 62, 101, 176, (593,241,0): 60, 102, 178, (593,242,0): 61, 103, 179, (593,243,0): 61, 103, 179, (593,244,0): 64, 103, 180, (593,245,0): 64, 103, 180, (593,246,0): 66, 103, 181, (593,247,0): 66, 103, 181, (593,248,0): 69, 106, 184, (593,249,0): 69, 106, 184, (593,250,0): 70, 106, 184, (593,251,0): 71, 107, 185, (593,252,0): 73, 106, 185, (593,253,0): 74, 107, 186, (593,254,0): 74, 107, 186, (593,255,0): 75, 108, 185, (593,256,0): 72, 109, 180, (593,257,0): 72, 109, 177, (593,258,0): 77, 110, 177, (593,259,0): 82, 112, 176, (593,260,0): 86, 108, 168, (593,261,0): 83, 99, 151, (593,262,0): 79, 86, 132, (593,263,0): 79, 75, 112, (593,264,0): 76, 63, 91, (593,265,0): 76, 57, 77, (593,266,0): 73, 49, 63, (593,267,0): 70, 44, 55, (593,268,0): 64, 41, 49, (593,269,0): 58, 37, 44, (593,270,0): 49, 32, 40, (593,271,0): 44, 27, 35, (593,272,0): 46, 23, 31, (593,273,0): 47, 21, 30, (593,274,0): 44, 21, 29, (593,275,0): 42, 19, 27, (593,276,0): 39, 18, 27, (593,277,0): 37, 16, 25, (593,278,0): 35, 15, 24, (593,279,0): 32, 15, 23, (593,280,0): 31, 14, 24, (593,281,0): 29, 13, 23, (593,282,0): 27, 14, 24, (593,283,0): 26, 13, 23, (593,284,0): 25, 13, 23, (593,285,0): 24, 12, 22, (593,286,0): 23, 13, 24, (593,287,0): 23, 13, 24, (593,288,0): 19, 11, 24, (593,289,0): 19, 11, 24, (593,290,0): 19, 11, 24, (593,291,0): 19, 11, 24, (593,292,0): 19, 11, 24, (593,293,0): 20, 12, 25, (593,294,0): 20, 12, 25, (593,295,0): 20, 12, 25, (593,296,0): 17, 9, 22, (593,297,0): 16, 8, 21, (593,298,0): 16, 8, 21, (593,299,0): 15, 7, 20, (593,300,0): 14, 6, 19, (593,301,0): 14, 6, 19, (593,302,0): 13, 5, 18, (593,303,0): 13, 5, 16, (593,304,0): 15, 7, 18, (593,305,0): 15, 8, 16, (593,306,0): 15, 8, 16, (593,307,0): 15, 8, 16, (593,308,0): 15, 8, 16, (593,309,0): 15, 8, 16, (593,310,0): 15, 8, 16, (593,311,0): 15, 8, 16, (593,312,0): 13, 6, 14, (593,313,0): 13, 6, 14, (593,314,0): 13, 6, 14, (593,315,0): 13, 6, 14, (593,316,0): 13, 6, 14, (593,317,0): 13, 6, 14, (593,318,0): 13, 6, 14, (593,319,0): 12, 7, 14, (593,320,0): 11, 6, 13, (593,321,0): 9, 6, 13, (593,322,0): 11, 6, 13, (593,323,0): 11, 6, 13, (593,324,0): 11, 6, 13, (593,325,0): 11, 6, 13, (593,326,0): 12, 5, 13, (593,327,0): 12, 5, 13, (593,328,0): 14, 4, 13, (593,329,0): 14, 4, 13, (593,330,0): 14, 4, 13, (593,331,0): 14, 4, 13, (593,332,0): 15, 3, 13, (593,333,0): 15, 3, 13, (593,334,0): 15, 3, 13, (593,335,0): 15, 3, 13, (593,336,0): 13, 1, 13, (593,337,0): 13, 1, 13, (593,338,0): 12, 2, 13, (593,339,0): 11, 3, 14, (593,340,0): 12, 4, 15, (593,341,0): 11, 5, 15, (593,342,0): 10, 7, 16, (593,343,0): 10, 7, 16, (593,344,0): 9, 6, 15, (593,345,0): 10, 7, 16, (593,346,0): 12, 6, 16, (593,347,0): 13, 7, 17, (593,348,0): 18, 8, 19, (593,349,0): 19, 9, 20, (593,350,0): 20, 8, 20, (593,351,0): 21, 9, 19, (593,352,0): 23, 12, 18, (593,353,0): 23, 12, 16, (593,354,0): 23, 12, 16, (593,355,0): 22, 11, 15, (593,356,0): 21, 10, 14, (593,357,0): 20, 9, 13, (593,358,0): 20, 9, 13, (593,359,0): 20, 9, 13, (593,360,0): 20, 9, 13, (593,361,0): 19, 8, 12, (593,362,0): 19, 8, 12, (593,363,0): 19, 8, 12, (593,364,0): 18, 7, 11, (593,365,0): 18, 7, 11, (593,366,0): 17, 6, 10, (593,367,0): 16, 7, 10, (593,368,0): 10, 1, 6, (593,369,0): 9, 3, 7, (593,370,0): 10, 4, 8, (593,371,0): 11, 5, 9, (593,372,0): 12, 6, 10, (593,373,0): 14, 8, 12, (593,374,0): 14, 8, 12, (593,375,0): 15, 9, 13, (593,376,0): 15, 9, 13, (593,377,0): 15, 9, 13, (593,378,0): 14, 8, 12, (593,379,0): 14, 8, 12, (593,380,0): 14, 8, 12, (593,381,0): 14, 8, 12, (593,382,0): 14, 8, 12, (593,383,0): 16, 7, 10, (593,384,0): 21, 7, 7, (593,385,0): 23, 7, 7, (593,386,0): 24, 8, 8, (593,387,0): 24, 8, 8, (593,388,0): 24, 8, 8, (593,389,0): 24, 8, 8, (593,390,0): 23, 7, 7, (593,391,0): 22, 6, 6, (593,392,0): 25, 9, 9, (593,393,0): 25, 9, 9, (593,394,0): 25, 9, 9, (593,395,0): 25, 9, 9, (593,396,0): 25, 9, 9, (593,397,0): 25, 9, 9, (593,398,0): 25, 9, 9, (593,399,0): 25, 10, 7, (593,400,0): 28, 8, 7, (593,401,0): 30, 11, 7, (593,402,0): 32, 13, 9, (593,403,0): 31, 12, 8, (593,404,0): 27, 9, 7, (593,405,0): 26, 8, 6, (593,406,0): 28, 10, 8, (593,407,0): 30, 12, 10, (593,408,0): 24, 8, 8, (593,409,0): 24, 8, 8, (593,410,0): 24, 10, 10, (593,411,0): 25, 11, 11, (593,412,0): 25, 11, 11, (593,413,0): 26, 12, 12, (593,414,0): 25, 13, 15, (593,415,0): 27, 13, 13, (593,416,0): 28, 8, 10, (593,417,0): 32, 7, 10, (593,418,0): 30, 8, 10, (593,419,0): 31, 9, 11, (593,420,0): 30, 10, 11, (593,421,0): 31, 11, 12, (593,422,0): 30, 12, 12, (593,423,0): 30, 12, 12, (593,424,0): 28, 12, 12, (593,425,0): 28, 14, 13, (593,426,0): 28, 14, 13, (593,427,0): 27, 16, 14, (593,428,0): 27, 16, 14, (593,429,0): 27, 17, 15, (593,430,0): 27, 17, 15, (593,431,0): 27, 17, 15, (593,432,0): 33, 19, 19, (593,433,0): 33, 19, 19, (593,434,0): 34, 20, 20, (593,435,0): 34, 20, 20, (593,436,0): 35, 21, 21, (593,437,0): 36, 22, 22, (593,438,0): 36, 22, 22, (593,439,0): 37, 23, 23, (593,440,0): 35, 21, 21, (593,441,0): 35, 21, 21, (593,442,0): 34, 20, 20, (593,443,0): 33, 19, 19, (593,444,0): 32, 18, 18, (593,445,0): 31, 17, 17, (593,446,0): 30, 16, 16, (593,447,0): 30, 16, 16, (593,448,0): 30, 16, 16, (593,449,0): 28, 14, 14, (593,450,0): 25, 11, 11, (593,451,0): 26, 12, 12, (593,452,0): 28, 14, 14, (593,453,0): 29, 15, 15, (593,454,0): 28, 14, 14, (593,455,0): 26, 12, 12, (593,456,0): 29, 15, 15, (593,457,0): 28, 14, 14, (593,458,0): 27, 13, 13, (593,459,0): 25, 11, 11, (593,460,0): 23, 9, 9, (593,461,0): 22, 8, 8, (593,462,0): 20, 6, 6, (593,463,0): 20, 6, 6, (593,464,0): 22, 8, 8, (593,465,0): 22, 8, 8, (593,466,0): 23, 9, 9, (593,467,0): 23, 9, 9, (593,468,0): 22, 8, 8, (593,469,0): 21, 7, 7, (593,470,0): 19, 5, 5, (593,471,0): 18, 4, 4, (593,472,0): 15, 1, 1, (593,473,0): 16, 2, 2, (593,474,0): 18, 4, 4, (593,475,0): 20, 6, 6, (593,476,0): 20, 6, 6, (593,477,0): 20, 6, 6, (593,478,0): 19, 5, 5, (593,479,0): 16, 4, 4, (593,480,0): 17, 8, 11, (593,481,0): 15, 9, 11, (593,482,0): 14, 8, 10, (593,483,0): 13, 7, 9, (593,484,0): 11, 5, 9, (593,485,0): 10, 4, 8, (593,486,0): 9, 3, 7, (593,487,0): 9, 3, 7, (593,488,0): 10, 3, 10, (593,489,0): 10, 3, 10, (593,490,0): 8, 1, 9, (593,491,0): 8, 1, 9, (593,492,0): 8, 1, 9, (593,493,0): 8, 1, 9, (593,494,0): 10, 2, 13, (593,495,0): 12, 2, 11, (593,496,0): 15, 4, 10, (593,497,0): 17, 5, 9, (593,498,0): 20, 5, 10, (593,499,0): 22, 7, 12, (593,500,0): 22, 7, 10, (593,501,0): 22, 7, 10, (593,502,0): 22, 6, 7, (593,503,0): 22, 6, 7, (593,504,0): 24, 5, 7, (593,505,0): 24, 5, 7, (593,506,0): 25, 7, 7, (593,507,0): 26, 8, 8, (593,508,0): 28, 8, 7, (593,509,0): 29, 9, 8, (593,510,0): 29, 9, 8, (593,511,0): 30, 10, 9, (593,512,0): 30, 8, 10, (593,513,0): 33, 8, 11, (593,514,0): 34, 10, 10, (593,515,0): 36, 12, 12, (593,516,0): 38, 14, 14, (593,517,0): 40, 16, 16, (593,518,0): 42, 18, 16, (593,519,0): 43, 19, 17, (593,520,0): 42, 18, 16, (593,521,0): 43, 19, 15, (593,522,0): 42, 18, 14, (593,523,0): 41, 17, 13, (593,524,0): 40, 17, 11, (593,525,0): 37, 14, 8, (593,526,0): 35, 12, 6, (593,527,0): 31, 10, 5, (593,528,0): 30, 12, 10, (593,529,0): 24, 10, 9, (593,530,0): 22, 6, 6, (593,531,0): 21, 7, 6, (593,532,0): 23, 9, 9, (593,533,0): 22, 8, 8, (593,534,0): 21, 5, 6, (593,535,0): 18, 2, 3, (593,536,0): 19, 3, 6, (593,537,0): 20, 4, 7, (593,538,0): 22, 3, 9, (593,539,0): 22, 3, 9, (593,540,0): 21, 2, 8, (593,541,0): 19, 0, 6, (593,542,0): 17, 0, 6, (593,543,0): 14, 0, 5, (593,544,0): 15, 2, 11, (593,545,0): 14, 3, 11, (593,546,0): 14, 3, 11, (593,547,0): 14, 3, 11, (593,548,0): 14, 3, 11, (593,549,0): 14, 3, 11, (593,550,0): 14, 3, 11, (593,551,0): 14, 3, 11, (593,552,0): 16, 5, 13, (593,553,0): 17, 6, 14, (593,554,0): 17, 6, 14, (593,555,0): 17, 6, 14, (593,556,0): 18, 7, 15, (593,557,0): 18, 7, 15, (593,558,0): 19, 8, 16, (593,559,0): 19, 8, 14, (593,560,0): 20, 7, 14, (593,561,0): 20, 8, 12, (593,562,0): 23, 8, 13, (593,563,0): 24, 9, 14, (593,564,0): 25, 10, 13, (593,565,0): 26, 11, 14, (593,566,0): 28, 12, 15, (593,567,0): 28, 12, 15, (593,568,0): 30, 11, 13, (593,569,0): 31, 12, 14, (593,570,0): 34, 16, 16, (593,571,0): 35, 17, 17, (593,572,0): 36, 16, 17, (593,573,0): 35, 15, 16, (593,574,0): 32, 12, 11, (593,575,0): 30, 12, 10, (593,576,0): 32, 14, 14, (593,577,0): 30, 14, 14, (593,578,0): 32, 16, 16, (593,579,0): 34, 18, 18, (593,580,0): 37, 21, 21, (593,581,0): 39, 23, 23, (593,582,0): 41, 25, 25, (593,583,0): 41, 25, 25, (593,584,0): 43, 27, 27, (593,585,0): 43, 27, 27, (593,586,0): 43, 27, 27, (593,587,0): 43, 27, 27, (593,588,0): 42, 26, 26, (593,589,0): 42, 26, 26, (593,590,0): 41, 25, 25, (593,591,0): 41, 25, 26, (593,592,0): 44, 29, 32, (593,593,0): 45, 30, 35, (593,594,0): 45, 30, 35, (593,595,0): 46, 31, 36, (593,596,0): 48, 33, 38, (593,597,0): 49, 34, 39, (593,598,0): 49, 34, 39, (593,599,0): 50, 35, 40, (594,0,0): 26, 54, 66, (594,1,0): 26, 54, 66, (594,2,0): 26, 54, 66, (594,3,0): 26, 54, 66, (594,4,0): 26, 54, 66, (594,5,0): 26, 54, 66, (594,6,0): 26, 54, 66, (594,7,0): 26, 54, 66, (594,8,0): 27, 55, 67, (594,9,0): 27, 55, 67, (594,10,0): 27, 55, 67, (594,11,0): 27, 55, 67, (594,12,0): 27, 55, 67, (594,13,0): 27, 55, 67, (594,14,0): 27, 55, 67, (594,15,0): 27, 55, 67, (594,16,0): 28, 56, 67, (594,17,0): 28, 56, 67, (594,18,0): 28, 56, 67, (594,19,0): 28, 56, 67, (594,20,0): 29, 56, 67, (594,21,0): 29, 56, 67, (594,22,0): 31, 55, 67, (594,23,0): 31, 55, 67, (594,24,0): 32, 56, 68, (594,25,0): 32, 56, 68, (594,26,0): 34, 56, 69, (594,27,0): 34, 56, 69, (594,28,0): 37, 56, 70, (594,29,0): 37, 56, 70, (594,30,0): 38, 57, 71, (594,31,0): 39, 57, 71, (594,32,0): 41, 57, 72, (594,33,0): 43, 56, 72, (594,34,0): 43, 56, 72, (594,35,0): 44, 57, 73, (594,36,0): 45, 58, 74, (594,37,0): 45, 58, 74, (594,38,0): 46, 58, 74, (594,39,0): 47, 59, 75, (594,40,0): 49, 58, 75, (594,41,0): 49, 58, 75, (594,42,0): 50, 57, 75, (594,43,0): 51, 58, 76, (594,44,0): 52, 59, 77, (594,45,0): 52, 59, 77, (594,46,0): 52, 59, 77, (594,47,0): 53, 60, 78, (594,48,0): 53, 60, 78, (594,49,0): 53, 60, 78, (594,50,0): 53, 60, 78, (594,51,0): 53, 60, 78, (594,52,0): 53, 60, 78, (594,53,0): 53, 60, 78, (594,54,0): 53, 60, 78, (594,55,0): 53, 60, 78, (594,56,0): 54, 61, 79, (594,57,0): 55, 62, 80, (594,58,0): 55, 62, 80, (594,59,0): 56, 63, 81, (594,60,0): 56, 63, 81, (594,61,0): 57, 64, 82, (594,62,0): 57, 64, 82, (594,63,0): 57, 64, 80, (594,64,0): 60, 63, 80, (594,65,0): 61, 64, 79, (594,66,0): 61, 64, 79, (594,67,0): 62, 65, 80, (594,68,0): 62, 65, 80, (594,69,0): 63, 66, 81, (594,70,0): 63, 66, 81, (594,71,0): 63, 66, 81, (594,72,0): 63, 66, 81, (594,73,0): 63, 66, 81, (594,74,0): 63, 66, 81, (594,75,0): 63, 66, 81, (594,76,0): 63, 66, 81, (594,77,0): 63, 66, 81, (594,78,0): 63, 66, 81, (594,79,0): 63, 66, 81, (594,80,0): 64, 65, 83, (594,81,0): 64, 65, 83, (594,82,0): 63, 66, 83, (594,83,0): 63, 66, 83, (594,84,0): 63, 66, 83, (594,85,0): 63, 66, 83, (594,86,0): 61, 67, 83, (594,87,0): 61, 67, 83, (594,88,0): 59, 66, 82, (594,89,0): 59, 66, 82, (594,90,0): 59, 66, 82, (594,91,0): 58, 65, 81, (594,92,0): 57, 66, 81, (594,93,0): 56, 65, 80, (594,94,0): 56, 65, 80, (594,95,0): 56, 65, 80, (594,96,0): 57, 65, 78, (594,97,0): 58, 64, 76, (594,98,0): 58, 64, 76, (594,99,0): 57, 63, 75, (594,100,0): 57, 63, 75, (594,101,0): 56, 62, 74, (594,102,0): 56, 62, 74, (594,103,0): 55, 61, 73, (594,104,0): 56, 62, 74, (594,105,0): 55, 61, 73, (594,106,0): 54, 60, 72, (594,107,0): 53, 59, 71, (594,108,0): 53, 59, 71, (594,109,0): 54, 60, 72, (594,110,0): 55, 61, 73, (594,111,0): 55, 63, 76, (594,112,0): 54, 61, 79, (594,113,0): 54, 61, 80, (594,114,0): 56, 61, 81, (594,115,0): 57, 62, 81, (594,116,0): 60, 63, 80, (594,117,0): 61, 64, 79, (594,118,0): 63, 65, 80, (594,119,0): 63, 65, 78, (594,120,0): 73, 73, 85, (594,121,0): 74, 72, 83, (594,122,0): 74, 73, 81, (594,123,0): 76, 73, 80, (594,124,0): 76, 73, 80, (594,125,0): 79, 74, 80, (594,126,0): 80, 73, 80, (594,127,0): 80, 75, 81, (594,128,0): 83, 80, 89, (594,129,0): 81, 79, 90, (594,130,0): 78, 77, 91, (594,131,0): 73, 76, 93, (594,132,0): 69, 74, 94, (594,133,0): 63, 74, 96, (594,134,0): 59, 73, 99, (594,135,0): 56, 73, 101, (594,136,0): 53, 72, 102, (594,137,0): 50, 73, 104, (594,138,0): 49, 74, 105, (594,139,0): 47, 74, 104, (594,140,0): 47, 74, 103, (594,141,0): 46, 73, 102, (594,142,0): 46, 73, 102, (594,143,0): 45, 72, 101, (594,144,0): 47, 72, 103, (594,145,0): 48, 71, 105, (594,146,0): 47, 71, 105, (594,147,0): 47, 71, 105, (594,148,0): 47, 71, 107, (594,149,0): 47, 71, 107, (594,150,0): 46, 72, 107, (594,151,0): 46, 72, 107, (594,152,0): 46, 74, 111, (594,153,0): 46, 74, 111, (594,154,0): 46, 74, 113, (594,155,0): 46, 74, 113, (594,156,0): 45, 75, 113, (594,157,0): 45, 75, 113, (594,158,0): 45, 74, 114, (594,159,0): 45, 74, 116, (594,160,0): 45, 74, 118, (594,161,0): 46, 74, 121, (594,162,0): 47, 75, 122, (594,163,0): 48, 76, 123, (594,164,0): 48, 76, 123, (594,165,0): 47, 75, 122, (594,166,0): 46, 74, 121, (594,167,0): 45, 73, 120, (594,168,0): 47, 75, 122, (594,169,0): 47, 75, 122, (594,170,0): 47, 75, 122, (594,171,0): 47, 75, 122, (594,172,0): 47, 75, 122, (594,173,0): 47, 75, 122, (594,174,0): 47, 75, 122, (594,175,0): 47, 75, 122, (594,176,0): 44, 75, 122, (594,177,0): 45, 76, 123, (594,178,0): 45, 76, 123, (594,179,0): 45, 76, 123, (594,180,0): 46, 77, 124, (594,181,0): 47, 78, 125, (594,182,0): 47, 78, 125, (594,183,0): 47, 78, 125, (594,184,0): 47, 78, 125, (594,185,0): 47, 78, 125, (594,186,0): 48, 79, 126, (594,187,0): 48, 79, 126, (594,188,0): 49, 80, 127, (594,189,0): 49, 80, 127, (594,190,0): 50, 81, 128, (594,191,0): 50, 81, 128, (594,192,0): 48, 78, 130, (594,193,0): 48, 78, 130, (594,194,0): 48, 78, 130, (594,195,0): 48, 78, 130, (594,196,0): 48, 78, 130, (594,197,0): 48, 78, 130, (594,198,0): 48, 78, 130, (594,199,0): 48, 78, 130, (594,200,0): 48, 78, 130, (594,201,0): 48, 78, 130, (594,202,0): 49, 79, 131, (594,203,0): 50, 80, 132, (594,204,0): 51, 81, 133, (594,205,0): 52, 82, 134, (594,206,0): 53, 83, 135, (594,207,0): 52, 83, 137, (594,208,0): 54, 84, 144, (594,209,0): 54, 86, 147, (594,210,0): 54, 86, 147, (594,211,0): 55, 87, 148, (594,212,0): 55, 87, 148, (594,213,0): 56, 88, 149, (594,214,0): 56, 88, 149, (594,215,0): 56, 88, 149, (594,216,0): 54, 86, 147, (594,217,0): 54, 86, 147, (594,218,0): 54, 86, 147, (594,219,0): 55, 87, 148, (594,220,0): 55, 87, 148, (594,221,0): 56, 88, 149, (594,222,0): 56, 88, 149, (594,223,0): 54, 88, 149, (594,224,0): 53, 89, 151, (594,225,0): 52, 90, 152, (594,226,0): 52, 90, 152, (594,227,0): 52, 90, 152, (594,228,0): 53, 91, 154, (594,229,0): 54, 92, 155, (594,230,0): 54, 92, 157, (594,231,0): 54, 92, 157, (594,232,0): 56, 94, 159, (594,233,0): 56, 94, 159, (594,234,0): 57, 94, 162, (594,235,0): 58, 95, 163, (594,236,0): 59, 96, 166, (594,237,0): 60, 97, 167, (594,238,0): 61, 98, 168, (594,239,0): 60, 98, 169, (594,240,0): 62, 102, 174, (594,241,0): 62, 101, 176, (594,242,0): 63, 102, 177, (594,243,0): 63, 102, 177, (594,244,0): 65, 103, 178, (594,245,0): 65, 103, 178, (594,246,0): 66, 104, 179, (594,247,0): 66, 104, 179, (594,248,0): 69, 105, 181, (594,249,0): 70, 106, 182, (594,250,0): 72, 105, 182, (594,251,0): 73, 106, 183, (594,252,0): 73, 106, 183, (594,253,0): 74, 107, 184, (594,254,0): 75, 107, 184, (594,255,0): 74, 108, 182, (594,256,0): 74, 111, 181, (594,257,0): 73, 110, 178, (594,258,0): 77, 110, 177, (594,259,0): 80, 110, 174, (594,260,0): 85, 107, 167, (594,261,0): 84, 100, 152, (594,262,0): 83, 90, 136, (594,263,0): 85, 81, 118, (594,264,0): 82, 69, 97, (594,265,0): 81, 62, 82, (594,266,0): 77, 53, 69, (594,267,0): 72, 46, 57, (594,268,0): 64, 41, 49, (594,269,0): 58, 37, 44, (594,270,0): 51, 31, 40, (594,271,0): 47, 27, 36, (594,272,0): 44, 21, 29, (594,273,0): 46, 20, 29, (594,274,0): 43, 20, 28, (594,275,0): 42, 19, 27, (594,276,0): 39, 18, 27, (594,277,0): 38, 17, 26, (594,278,0): 36, 16, 25, (594,279,0): 34, 17, 25, (594,280,0): 30, 13, 23, (594,281,0): 29, 13, 23, (594,282,0): 27, 14, 24, (594,283,0): 26, 13, 23, (594,284,0): 25, 13, 23, (594,285,0): 24, 12, 22, (594,286,0): 23, 13, 24, (594,287,0): 22, 12, 23, (594,288,0): 18, 10, 23, (594,289,0): 18, 10, 23, (594,290,0): 18, 10, 23, (594,291,0): 18, 10, 23, (594,292,0): 17, 9, 22, (594,293,0): 17, 9, 22, (594,294,0): 17, 9, 22, (594,295,0): 17, 9, 22, (594,296,0): 15, 7, 20, (594,297,0): 15, 7, 20, (594,298,0): 15, 7, 20, (594,299,0): 15, 7, 20, (594,300,0): 14, 6, 19, (594,301,0): 14, 6, 19, (594,302,0): 13, 5, 18, (594,303,0): 13, 5, 16, (594,304,0): 14, 6, 17, (594,305,0): 14, 7, 15, (594,306,0): 14, 7, 15, (594,307,0): 14, 7, 15, (594,308,0): 14, 7, 15, (594,309,0): 14, 7, 15, (594,310,0): 14, 7, 15, (594,311,0): 14, 7, 15, (594,312,0): 13, 6, 14, (594,313,0): 13, 6, 14, (594,314,0): 13, 6, 14, (594,315,0): 13, 6, 14, (594,316,0): 13, 6, 14, (594,317,0): 13, 6, 14, (594,318,0): 13, 6, 14, (594,319,0): 12, 7, 14, (594,320,0): 11, 6, 13, (594,321,0): 9, 6, 13, (594,322,0): 11, 6, 13, (594,323,0): 11, 6, 13, (594,324,0): 11, 6, 13, (594,325,0): 11, 6, 13, (594,326,0): 12, 5, 13, (594,327,0): 12, 5, 13, (594,328,0): 15, 5, 14, (594,329,0): 15, 5, 14, (594,330,0): 15, 5, 14, (594,331,0): 15, 5, 14, (594,332,0): 16, 4, 14, (594,333,0): 16, 4, 14, (594,334,0): 16, 4, 14, (594,335,0): 16, 4, 14, (594,336,0): 12, 0, 10, (594,337,0): 13, 1, 11, (594,338,0): 12, 2, 11, (594,339,0): 10, 3, 11, (594,340,0): 11, 4, 12, (594,341,0): 10, 5, 12, (594,342,0): 9, 6, 13, (594,343,0): 9, 6, 13, (594,344,0): 9, 6, 13, (594,345,0): 10, 7, 14, (594,346,0): 12, 7, 14, (594,347,0): 13, 8, 15, (594,348,0): 18, 8, 17, (594,349,0): 19, 9, 18, (594,350,0): 20, 8, 18, (594,351,0): 21, 10, 18, (594,352,0): 22, 11, 17, (594,353,0): 21, 10, 14, (594,354,0): 21, 10, 14, (594,355,0): 21, 10, 14, (594,356,0): 20, 9, 13, (594,357,0): 20, 9, 13, (594,358,0): 19, 8, 12, (594,359,0): 19, 8, 12, (594,360,0): 20, 9, 13, (594,361,0): 20, 9, 13, (594,362,0): 20, 9, 13, (594,363,0): 19, 8, 12, (594,364,0): 18, 7, 11, (594,365,0): 18, 7, 11, (594,366,0): 18, 7, 11, (594,367,0): 16, 7, 10, (594,368,0): 11, 2, 5, (594,369,0): 9, 3, 5, (594,370,0): 10, 4, 6, (594,371,0): 11, 5, 7, (594,372,0): 12, 6, 8, (594,373,0): 13, 7, 9, (594,374,0): 14, 8, 10, (594,375,0): 14, 8, 10, (594,376,0): 16, 10, 12, (594,377,0): 14, 8, 10, (594,378,0): 13, 7, 9, (594,379,0): 11, 5, 7, (594,380,0): 12, 6, 8, (594,381,0): 13, 7, 9, (594,382,0): 15, 9, 11, (594,383,0): 18, 9, 10, (594,384,0): 21, 7, 7, (594,385,0): 23, 7, 7, (594,386,0): 24, 8, 8, (594,387,0): 25, 9, 9, (594,388,0): 25, 9, 9, (594,389,0): 24, 8, 8, (594,390,0): 23, 7, 7, (594,391,0): 22, 6, 6, (594,392,0): 26, 10, 10, (594,393,0): 26, 10, 10, (594,394,0): 26, 10, 10, (594,395,0): 26, 10, 10, (594,396,0): 26, 10, 10, (594,397,0): 26, 10, 10, (594,398,0): 26, 10, 10, (594,399,0): 26, 11, 8, (594,400,0): 28, 8, 7, (594,401,0): 30, 11, 7, (594,402,0): 31, 12, 8, (594,403,0): 30, 11, 7, (594,404,0): 28, 10, 8, (594,405,0): 27, 9, 7, (594,406,0): 28, 10, 8, (594,407,0): 30, 12, 10, (594,408,0): 26, 10, 10, (594,409,0): 26, 10, 10, (594,410,0): 25, 11, 11, (594,411,0): 26, 12, 12, (594,412,0): 26, 12, 12, (594,413,0): 27, 13, 13, (594,414,0): 25, 13, 15, (594,415,0): 27, 13, 13, (594,416,0): 29, 9, 11, (594,417,0): 30, 8, 10, (594,418,0): 30, 8, 10, (594,419,0): 31, 9, 11, (594,420,0): 30, 10, 11, (594,421,0): 31, 11, 12, (594,422,0): 30, 12, 12, (594,423,0): 31, 13, 13, (594,424,0): 29, 13, 13, (594,425,0): 28, 14, 13, (594,426,0): 28, 14, 13, (594,427,0): 27, 16, 14, (594,428,0): 27, 16, 14, (594,429,0): 28, 17, 15, (594,430,0): 27, 17, 15, (594,431,0): 28, 18, 16, (594,432,0): 32, 18, 18, (594,433,0): 32, 18, 18, (594,434,0): 33, 19, 19, (594,435,0): 33, 19, 19, (594,436,0): 33, 19, 19, (594,437,0): 34, 20, 20, (594,438,0): 34, 20, 20, (594,439,0): 34, 20, 20, (594,440,0): 34, 20, 20, (594,441,0): 34, 20, 20, (594,442,0): 33, 19, 19, (594,443,0): 32, 18, 18, (594,444,0): 31, 17, 17, (594,445,0): 30, 16, 16, (594,446,0): 29, 15, 15, (594,447,0): 29, 15, 15, (594,448,0): 29, 15, 15, (594,449,0): 28, 14, 14, (594,450,0): 27, 13, 13, (594,451,0): 28, 14, 14, (594,452,0): 29, 15, 15, (594,453,0): 30, 16, 16, (594,454,0): 29, 15, 15, (594,455,0): 27, 13, 13, (594,456,0): 29, 15, 15, (594,457,0): 28, 14, 14, (594,458,0): 27, 13, 13, (594,459,0): 26, 12, 12, (594,460,0): 24, 10, 10, (594,461,0): 22, 8, 8, (594,462,0): 21, 7, 7, (594,463,0): 21, 7, 7, (594,464,0): 23, 9, 9, (594,465,0): 23, 9, 9, (594,466,0): 24, 10, 10, (594,467,0): 25, 11, 11, (594,468,0): 24, 10, 10, (594,469,0): 23, 9, 9, (594,470,0): 21, 7, 7, (594,471,0): 20, 6, 6, (594,472,0): 16, 2, 2, (594,473,0): 17, 3, 3, (594,474,0): 19, 5, 5, (594,475,0): 20, 6, 6, (594,476,0): 20, 6, 6, (594,477,0): 20, 6, 6, (594,478,0): 19, 5, 5, (594,479,0): 17, 5, 5, (594,480,0): 17, 8, 11, (594,481,0): 14, 8, 10, (594,482,0): 13, 7, 9, (594,483,0): 13, 7, 9, (594,484,0): 11, 5, 9, (594,485,0): 11, 5, 9, (594,486,0): 10, 4, 8, (594,487,0): 9, 3, 7, (594,488,0): 10, 3, 10, (594,489,0): 10, 3, 10, (594,490,0): 8, 1, 9, (594,491,0): 8, 1, 9, (594,492,0): 8, 1, 9, (594,493,0): 8, 1, 9, (594,494,0): 10, 2, 13, (594,495,0): 12, 2, 11, (594,496,0): 15, 4, 10, (594,497,0): 17, 5, 9, (594,498,0): 20, 5, 10, (594,499,0): 21, 6, 11, (594,500,0): 22, 7, 10, (594,501,0): 22, 7, 10, (594,502,0): 22, 6, 9, (594,503,0): 21, 5, 8, (594,504,0): 22, 3, 5, (594,505,0): 23, 4, 6, (594,506,0): 24, 6, 6, (594,507,0): 25, 7, 7, (594,508,0): 27, 7, 8, (594,509,0): 29, 9, 10, (594,510,0): 30, 10, 9, (594,511,0): 30, 10, 9, (594,512,0): 30, 8, 10, (594,513,0): 31, 9, 11, (594,514,0): 32, 10, 12, (594,515,0): 35, 13, 15, (594,516,0): 37, 16, 15, (594,517,0): 39, 18, 17, (594,518,0): 40, 19, 18, (594,519,0): 41, 20, 17, (594,520,0): 41, 20, 17, (594,521,0): 41, 20, 17, (594,522,0): 41, 20, 15, (594,523,0): 40, 19, 14, (594,524,0): 38, 17, 12, (594,525,0): 36, 15, 10, (594,526,0): 34, 14, 7, (594,527,0): 33, 12, 7, (594,528,0): 31, 13, 9, (594,529,0): 26, 11, 8, (594,530,0): 26, 8, 8, (594,531,0): 24, 8, 8, (594,532,0): 25, 9, 9, (594,533,0): 25, 9, 9, (594,534,0): 22, 6, 7, (594,535,0): 20, 4, 5, (594,536,0): 21, 5, 8, (594,537,0): 21, 5, 8, (594,538,0): 21, 5, 8, (594,539,0): 21, 5, 8, (594,540,0): 20, 3, 9, (594,541,0): 18, 1, 7, (594,542,0): 16, 0, 5, (594,543,0): 14, 0, 6, (594,544,0): 15, 2, 11, (594,545,0): 14, 3, 11, (594,546,0): 14, 3, 11, (594,547,0): 14, 3, 11, (594,548,0): 14, 3, 11, (594,549,0): 14, 3, 11, (594,550,0): 14, 3, 11, (594,551,0): 14, 3, 11, (594,552,0): 16, 5, 13, (594,553,0): 16, 5, 13, (594,554,0): 16, 5, 13, (594,555,0): 17, 6, 14, (594,556,0): 18, 7, 15, (594,557,0): 18, 7, 15, (594,558,0): 18, 7, 15, (594,559,0): 19, 8, 14, (594,560,0): 19, 6, 13, (594,561,0): 19, 7, 11, (594,562,0): 22, 7, 12, (594,563,0): 23, 8, 13, (594,564,0): 24, 9, 12, (594,565,0): 25, 10, 13, (594,566,0): 27, 11, 14, (594,567,0): 27, 11, 14, (594,568,0): 31, 12, 14, (594,569,0): 32, 13, 15, (594,570,0): 35, 17, 17, (594,571,0): 36, 18, 18, (594,572,0): 37, 17, 18, (594,573,0): 36, 16, 17, (594,574,0): 33, 13, 12, (594,575,0): 31, 13, 11, (594,576,0): 32, 14, 14, (594,577,0): 31, 15, 15, (594,578,0): 32, 16, 16, (594,579,0): 34, 18, 18, (594,580,0): 37, 21, 21, (594,581,0): 39, 23, 23, (594,582,0): 40, 24, 24, (594,583,0): 41, 25, 25, (594,584,0): 44, 28, 28, (594,585,0): 43, 27, 27, (594,586,0): 43, 27, 27, (594,587,0): 42, 26, 26, (594,588,0): 41, 25, 25, (594,589,0): 40, 24, 24, (594,590,0): 40, 24, 24, (594,591,0): 39, 23, 24, (594,592,0): 43, 28, 31, (594,593,0): 43, 28, 33, (594,594,0): 44, 29, 34, (594,595,0): 45, 30, 35, (594,596,0): 46, 31, 36, (594,597,0): 47, 32, 37, (594,598,0): 48, 33, 38, (594,599,0): 49, 34, 39, (595,0,0): 26, 54, 66, (595,1,0): 26, 54, 66, (595,2,0): 26, 54, 66, (595,3,0): 26, 54, 66, (595,4,0): 26, 54, 66, (595,5,0): 26, 54, 66, (595,6,0): 26, 54, 66, (595,7,0): 26, 54, 66, (595,8,0): 26, 54, 66, (595,9,0): 26, 54, 66, (595,10,0): 26, 54, 66, (595,11,0): 26, 54, 66, (595,12,0): 26, 54, 66, (595,13,0): 26, 54, 66, (595,14,0): 26, 54, 66, (595,15,0): 26, 54, 66, (595,16,0): 28, 56, 67, (595,17,0): 28, 56, 67, (595,18,0): 28, 56, 67, (595,19,0): 28, 56, 67, (595,20,0): 29, 56, 67, (595,21,0): 29, 56, 67, (595,22,0): 31, 55, 67, (595,23,0): 31, 55, 67, (595,24,0): 32, 56, 68, (595,25,0): 32, 56, 68, (595,26,0): 34, 56, 69, (595,27,0): 34, 56, 69, (595,28,0): 37, 56, 70, (595,29,0): 37, 56, 70, (595,30,0): 38, 57, 71, (595,31,0): 39, 57, 71, (595,32,0): 40, 56, 71, (595,33,0): 43, 56, 72, (595,34,0): 43, 56, 72, (595,35,0): 44, 57, 73, (595,36,0): 44, 57, 73, (595,37,0): 45, 58, 74, (595,38,0): 46, 58, 74, (595,39,0): 46, 58, 74, (595,40,0): 48, 57, 74, (595,41,0): 49, 58, 75, (595,42,0): 50, 57, 75, (595,43,0): 51, 58, 76, (595,44,0): 51, 58, 76, (595,45,0): 52, 59, 77, (595,46,0): 52, 59, 77, (595,47,0): 52, 59, 77, (595,48,0): 52, 59, 77, (595,49,0): 52, 59, 77, (595,50,0): 52, 59, 77, (595,51,0): 52, 59, 77, (595,52,0): 52, 59, 77, (595,53,0): 52, 59, 77, (595,54,0): 52, 59, 77, (595,55,0): 52, 59, 77, (595,56,0): 54, 61, 79, (595,57,0): 54, 61, 79, (595,58,0): 54, 61, 79, (595,59,0): 55, 62, 80, (595,60,0): 56, 63, 81, (595,61,0): 56, 63, 81, (595,62,0): 56, 63, 81, (595,63,0): 57, 64, 80, (595,64,0): 58, 64, 80, (595,65,0): 60, 63, 78, (595,66,0): 60, 63, 78, (595,67,0): 61, 64, 79, (595,68,0): 62, 65, 80, (595,69,0): 62, 65, 80, (595,70,0): 62, 65, 80, (595,71,0): 63, 66, 81, (595,72,0): 63, 66, 81, (595,73,0): 63, 66, 81, (595,74,0): 63, 66, 81, (595,75,0): 63, 66, 81, (595,76,0): 63, 66, 81, (595,77,0): 63, 66, 81, (595,78,0): 63, 66, 81, (595,79,0): 63, 66, 81, (595,80,0): 64, 65, 83, (595,81,0): 64, 65, 83, (595,82,0): 63, 66, 83, (595,83,0): 63, 66, 83, (595,84,0): 63, 66, 83, (595,85,0): 63, 66, 83, (595,86,0): 63, 66, 83, (595,87,0): 61, 67, 83, (595,88,0): 60, 66, 82, (595,89,0): 59, 66, 82, (595,90,0): 59, 66, 82, (595,91,0): 58, 65, 81, (595,92,0): 57, 66, 81, (595,93,0): 56, 65, 80, (595,94,0): 56, 65, 80, (595,95,0): 57, 65, 78, (595,96,0): 58, 64, 76, (595,97,0): 57, 63, 75, (595,98,0): 57, 63, 75, (595,99,0): 57, 63, 75, (595,100,0): 56, 62, 74, (595,101,0): 55, 61, 73, (595,102,0): 55, 61, 73, (595,103,0): 55, 61, 73, (595,104,0): 55, 61, 73, (595,105,0): 54, 60, 72, (595,106,0): 53, 59, 71, (595,107,0): 52, 58, 70, (595,108,0): 52, 58, 70, (595,109,0): 53, 59, 71, (595,110,0): 54, 60, 72, (595,111,0): 55, 61, 75, (595,112,0): 55, 60, 79, (595,113,0): 54, 61, 79, (595,114,0): 56, 61, 80, (595,115,0): 57, 63, 79, (595,116,0): 60, 63, 80, (595,117,0): 61, 64, 79, (595,118,0): 62, 65, 80, (595,119,0): 63, 65, 78, (595,120,0): 71, 73, 86, (595,121,0): 71, 73, 85, (595,122,0): 73, 73, 83, (595,123,0): 74, 74, 84, (595,124,0): 75, 74, 82, (595,125,0): 76, 75, 83, (595,126,0): 77, 74, 83, (595,127,0): 76, 75, 83, (595,128,0): 78, 78, 88, (595,129,0): 76, 78, 90, (595,130,0): 74, 76, 91, (595,131,0): 70, 76, 92, (595,132,0): 66, 74, 93, (595,133,0): 61, 73, 95, (595,134,0): 57, 73, 98, (595,135,0): 55, 72, 100, (595,136,0): 52, 73, 102, (595,137,0): 49, 72, 103, (595,138,0): 49, 72, 104, (595,139,0): 48, 73, 104, (595,140,0): 47, 72, 102, (595,141,0): 46, 71, 101, (595,142,0): 46, 71, 101, (595,143,0): 46, 71, 102, (595,144,0): 47, 70, 104, (595,145,0): 47, 70, 104, (595,146,0): 46, 70, 104, (595,147,0): 46, 70, 104, (595,148,0): 46, 70, 106, (595,149,0): 46, 70, 106, (595,150,0): 45, 71, 106, (595,151,0): 45, 71, 106, (595,152,0): 46, 74, 111, (595,153,0): 46, 74, 111, (595,154,0): 46, 74, 113, (595,155,0): 46, 74, 113, (595,156,0): 45, 75, 113, (595,157,0): 45, 75, 113, (595,158,0): 45, 74, 114, (595,159,0): 45, 74, 116, (595,160,0): 46, 75, 119, (595,161,0): 47, 75, 122, (595,162,0): 48, 76, 123, (595,163,0): 49, 77, 124, (595,164,0): 49, 77, 124, (595,165,0): 48, 76, 123, (595,166,0): 47, 75, 122, (595,167,0): 46, 74, 121, (595,168,0): 46, 74, 121, (595,169,0): 46, 74, 121, (595,170,0): 46, 74, 121, (595,171,0): 46, 74, 121, (595,172,0): 46, 74, 121, (595,173,0): 46, 74, 121, (595,174,0): 46, 74, 121, (595,175,0): 46, 74, 121, (595,176,0): 43, 74, 121, (595,177,0): 43, 74, 121, (595,178,0): 44, 75, 122, (595,179,0): 44, 75, 122, (595,180,0): 45, 76, 123, (595,181,0): 45, 76, 123, (595,182,0): 46, 77, 124, (595,183,0): 46, 77, 124, (595,184,0): 47, 78, 125, (595,185,0): 47, 78, 125, (595,186,0): 48, 79, 126, (595,187,0): 48, 79, 126, (595,188,0): 49, 80, 127, (595,189,0): 49, 80, 127, (595,190,0): 50, 81, 128, (595,191,0): 50, 81, 128, (595,192,0): 47, 77, 129, (595,193,0): 47, 77, 129, (595,194,0): 47, 77, 129, (595,195,0): 47, 77, 129, (595,196,0): 47, 77, 129, (595,197,0): 47, 77, 129, (595,198,0): 47, 77, 129, (595,199,0): 47, 77, 129, (595,200,0): 48, 78, 130, (595,201,0): 49, 79, 131, (595,202,0): 50, 80, 132, (595,203,0): 51, 81, 133, (595,204,0): 52, 82, 134, (595,205,0): 53, 83, 135, (595,206,0): 54, 84, 136, (595,207,0): 53, 84, 138, (595,208,0): 54, 84, 144, (595,209,0): 53, 85, 146, (595,210,0): 53, 85, 146, (595,211,0): 54, 86, 147, (595,212,0): 55, 87, 148, (595,213,0): 55, 87, 148, (595,214,0): 55, 87, 148, (595,215,0): 56, 88, 149, (595,216,0): 53, 85, 146, (595,217,0): 53, 85, 146, (595,218,0): 53, 85, 146, (595,219,0): 54, 86, 147, (595,220,0): 54, 86, 147, (595,221,0): 55, 87, 148, (595,222,0): 55, 87, 148, (595,223,0): 54, 88, 149, (595,224,0): 54, 90, 152, (595,225,0): 52, 90, 152, (595,226,0): 52, 90, 152, (595,227,0): 53, 91, 153, (595,228,0): 53, 91, 154, (595,229,0): 54, 92, 155, (595,230,0): 54, 92, 157, (595,231,0): 55, 93, 158, (595,232,0): 56, 94, 159, (595,233,0): 57, 95, 160, (595,234,0): 58, 95, 163, (595,235,0): 59, 96, 164, (595,236,0): 60, 97, 167, (595,237,0): 61, 98, 168, (595,238,0): 62, 99, 169, (595,239,0): 62, 99, 169, (595,240,0): 63, 101, 174, (595,241,0): 62, 102, 174, (595,242,0): 63, 102, 177, (595,243,0): 63, 103, 175, (595,244,0): 65, 103, 178, (595,245,0): 65, 103, 176, (595,246,0): 66, 104, 179, (595,247,0): 66, 104, 177, (595,248,0): 69, 105, 181, (595,249,0): 69, 105, 179, (595,250,0): 71, 104, 181, (595,251,0): 72, 106, 180, (595,252,0): 73, 106, 183, (595,253,0): 73, 107, 181, (595,254,0): 74, 106, 183, (595,255,0): 75, 107, 180, (595,256,0): 77, 111, 182, (595,257,0): 75, 110, 176, (595,258,0): 78, 109, 174, (595,259,0): 80, 108, 171, (595,260,0): 85, 107, 165, (595,261,0): 86, 102, 154, (595,262,0): 89, 93, 140, (595,263,0): 90, 86, 123, (595,264,0): 86, 73, 101, (595,265,0): 84, 65, 85, (595,266,0): 78, 54, 70, (595,267,0): 71, 45, 56, (595,268,0): 62, 39, 49, (595,269,0): 56, 35, 42, (595,270,0): 50, 30, 39, (595,271,0): 46, 26, 35, (595,272,0): 43, 20, 28, (595,273,0): 45, 19, 28, (595,274,0): 42, 19, 27, (595,275,0): 41, 18, 26, (595,276,0): 40, 19, 28, (595,277,0): 39, 18, 27, (595,278,0): 37, 17, 26, (595,279,0): 35, 18, 26, (595,280,0): 30, 13, 23, (595,281,0): 28, 12, 22, (595,282,0): 26, 13, 23, (595,283,0): 26, 13, 23, (595,284,0): 24, 12, 22, (595,285,0): 23, 11, 21, (595,286,0): 22, 12, 23, (595,287,0): 22, 12, 23, (595,288,0): 17, 9, 22, (595,289,0): 17, 9, 22, (595,290,0): 16, 8, 21, (595,291,0): 16, 8, 21, (595,292,0): 16, 8, 21, (595,293,0): 15, 7, 20, (595,294,0): 15, 7, 20, (595,295,0): 15, 7, 20, (595,296,0): 14, 6, 19, (595,297,0): 14, 6, 19, (595,298,0): 14, 6, 19, (595,299,0): 14, 6, 19, (595,300,0): 14, 6, 19, (595,301,0): 14, 6, 19, (595,302,0): 13, 5, 18, (595,303,0): 13, 5, 16, (595,304,0): 14, 6, 17, (595,305,0): 14, 7, 15, (595,306,0): 14, 7, 15, (595,307,0): 14, 7, 15, (595,308,0): 14, 7, 15, (595,309,0): 14, 7, 15, (595,310,0): 14, 7, 15, (595,311,0): 14, 7, 15, (595,312,0): 12, 5, 13, (595,313,0): 12, 5, 13, (595,314,0): 12, 5, 13, (595,315,0): 12, 5, 13, (595,316,0): 12, 5, 13, (595,317,0): 12, 5, 13, (595,318,0): 12, 5, 13, (595,319,0): 11, 6, 13, (595,320,0): 11, 6, 13, (595,321,0): 9, 6, 13, (595,322,0): 11, 6, 13, (595,323,0): 11, 6, 13, (595,324,0): 11, 6, 13, (595,325,0): 11, 6, 13, (595,326,0): 12, 5, 13, (595,327,0): 12, 5, 13, (595,328,0): 15, 5, 14, (595,329,0): 15, 5, 14, (595,330,0): 15, 5, 14, (595,331,0): 15, 5, 14, (595,332,0): 16, 4, 14, (595,333,0): 16, 4, 14, (595,334,0): 16, 4, 14, (595,335,0): 16, 4, 14, (595,336,0): 13, 1, 11, (595,337,0): 13, 1, 11, (595,338,0): 13, 1, 11, (595,339,0): 12, 2, 11, (595,340,0): 10, 3, 11, (595,341,0): 10, 5, 12, (595,342,0): 10, 5, 12, (595,343,0): 8, 5, 12, (595,344,0): 9, 6, 13, (595,345,0): 10, 7, 14, (595,346,0): 12, 7, 14, (595,347,0): 14, 7, 15, (595,348,0): 18, 8, 17, (595,349,0): 19, 9, 18, (595,350,0): 20, 8, 18, (595,351,0): 21, 10, 18, (595,352,0): 20, 9, 15, (595,353,0): 20, 9, 13, (595,354,0): 20, 9, 13, (595,355,0): 20, 9, 13, (595,356,0): 20, 9, 13, (595,357,0): 19, 8, 12, (595,358,0): 19, 8, 12, (595,359,0): 19, 8, 12, (595,360,0): 21, 10, 14, (595,361,0): 20, 9, 13, (595,362,0): 20, 9, 13, (595,363,0): 19, 8, 12, (595,364,0): 19, 8, 12, (595,365,0): 18, 7, 11, (595,366,0): 18, 7, 11, (595,367,0): 18, 7, 11, (595,368,0): 12, 3, 6, (595,369,0): 10, 4, 6, (595,370,0): 11, 5, 7, (595,371,0): 11, 5, 7, (595,372,0): 12, 6, 8, (595,373,0): 13, 7, 9, (595,374,0): 13, 7, 9, (595,375,0): 13, 7, 9, (595,376,0): 16, 10, 12, (595,377,0): 14, 8, 10, (595,378,0): 11, 5, 7, (595,379,0): 10, 4, 6, (595,380,0): 10, 4, 6, (595,381,0): 13, 7, 9, (595,382,0): 16, 10, 12, (595,383,0): 20, 11, 12, (595,384,0): 24, 10, 10, (595,385,0): 26, 10, 10, (595,386,0): 27, 11, 11, (595,387,0): 27, 11, 11, (595,388,0): 27, 11, 11, (595,389,0): 27, 11, 11, (595,390,0): 26, 10, 10, (595,391,0): 25, 9, 9, (595,392,0): 26, 10, 10, (595,393,0): 26, 10, 10, (595,394,0): 26, 10, 10, (595,395,0): 26, 10, 10, (595,396,0): 26, 10, 10, (595,397,0): 26, 10, 10, (595,398,0): 26, 10, 10, (595,399,0): 28, 10, 8, (595,400,0): 29, 10, 6, (595,401,0): 30, 11, 7, (595,402,0): 30, 11, 7, (595,403,0): 30, 11, 7, (595,404,0): 28, 10, 8, (595,405,0): 28, 10, 8, (595,406,0): 28, 10, 8, (595,407,0): 29, 11, 9, (595,408,0): 27, 11, 11, (595,409,0): 27, 11, 11, (595,410,0): 27, 13, 13, (595,411,0): 27, 13, 13, (595,412,0): 27, 13, 13, (595,413,0): 27, 13, 13, (595,414,0): 25, 13, 15, (595,415,0): 27, 13, 13, (595,416,0): 29, 9, 11, (595,417,0): 31, 9, 11, (595,418,0): 31, 9, 11, (595,419,0): 30, 10, 11, (595,420,0): 31, 11, 12, (595,421,0): 32, 12, 13, (595,422,0): 31, 13, 13, (595,423,0): 31, 13, 13, (595,424,0): 29, 13, 13, (595,425,0): 30, 14, 14, (595,426,0): 29, 15, 14, (595,427,0): 29, 15, 14, (595,428,0): 28, 17, 15, (595,429,0): 29, 18, 16, (595,430,0): 29, 18, 16, (595,431,0): 29, 18, 16, (595,432,0): 32, 18, 18, (595,433,0): 32, 18, 18, (595,434,0): 32, 18, 18, (595,435,0): 32, 18, 18, (595,436,0): 32, 18, 18, (595,437,0): 32, 18, 18, (595,438,0): 32, 18, 18, (595,439,0): 32, 18, 18, (595,440,0): 33, 19, 19, (595,441,0): 33, 19, 19, (595,442,0): 32, 18, 18, (595,443,0): 31, 17, 17, (595,444,0): 30, 16, 16, (595,445,0): 29, 15, 15, (595,446,0): 28, 14, 14, (595,447,0): 28, 14, 14, (595,448,0): 28, 14, 14, (595,449,0): 28, 14, 14, (595,450,0): 29, 15, 15, (595,451,0): 30, 16, 16, (595,452,0): 31, 17, 17, (595,453,0): 31, 17, 17, (595,454,0): 30, 16, 16, (595,455,0): 29, 15, 15, (595,456,0): 28, 14, 14, (595,457,0): 28, 14, 14, (595,458,0): 27, 13, 13, (595,459,0): 26, 12, 12, (595,460,0): 25, 11, 11, (595,461,0): 23, 9, 9, (595,462,0): 22, 8, 8, (595,463,0): 22, 8, 8, (595,464,0): 24, 10, 10, (595,465,0): 25, 11, 11, (595,466,0): 26, 12, 12, (595,467,0): 26, 12, 12, (595,468,0): 26, 12, 12, (595,469,0): 25, 11, 11, (595,470,0): 24, 10, 10, (595,471,0): 23, 9, 9, (595,472,0): 18, 4, 4, (595,473,0): 19, 5, 5, (595,474,0): 19, 5, 5, (595,475,0): 20, 6, 6, (595,476,0): 20, 6, 6, (595,477,0): 20, 6, 6, (595,478,0): 19, 5, 5, (595,479,0): 17, 5, 5, (595,480,0): 16, 7, 10, (595,481,0): 14, 8, 10, (595,482,0): 13, 7, 9, (595,483,0): 12, 6, 8, (595,484,0): 12, 6, 10, (595,485,0): 11, 5, 9, (595,486,0): 10, 4, 8, (595,487,0): 10, 4, 8, (595,488,0): 10, 3, 10, (595,489,0): 10, 3, 10, (595,490,0): 8, 1, 9, (595,491,0): 8, 1, 9, (595,492,0): 8, 1, 9, (595,493,0): 8, 1, 9, (595,494,0): 10, 2, 13, (595,495,0): 12, 2, 11, (595,496,0): 14, 3, 9, (595,497,0): 16, 4, 8, (595,498,0): 20, 5, 10, (595,499,0): 21, 6, 11, (595,500,0): 21, 6, 11, (595,501,0): 21, 6, 9, (595,502,0): 21, 5, 8, (595,503,0): 21, 5, 8, (595,504,0): 21, 2, 4, (595,505,0): 21, 2, 4, (595,506,0): 22, 3, 5, (595,507,0): 24, 6, 6, (595,508,0): 26, 6, 7, (595,509,0): 28, 8, 9, (595,510,0): 29, 9, 8, (595,511,0): 29, 9, 8, (595,512,0): 30, 8, 10, (595,513,0): 31, 9, 11, (595,514,0): 32, 10, 12, (595,515,0): 34, 12, 14, (595,516,0): 36, 15, 14, (595,517,0): 38, 17, 16, (595,518,0): 40, 19, 18, (595,519,0): 41, 20, 19, (595,520,0): 41, 20, 17, (595,521,0): 41, 20, 17, (595,522,0): 41, 20, 15, (595,523,0): 41, 20, 15, (595,524,0): 40, 19, 14, (595,525,0): 38, 17, 12, (595,526,0): 36, 16, 9, (595,527,0): 34, 13, 8, (595,528,0): 33, 14, 10, (595,529,0): 31, 11, 10, (595,530,0): 28, 8, 9, (595,531,0): 27, 9, 9, (595,532,0): 28, 10, 10, (595,533,0): 26, 10, 10, (595,534,0): 24, 8, 9, (595,535,0): 21, 5, 6, (595,536,0): 22, 6, 9, (595,537,0): 22, 6, 9, (595,538,0): 22, 6, 9, (595,539,0): 21, 5, 8, (595,540,0): 20, 3, 9, (595,541,0): 18, 3, 8, (595,542,0): 16, 1, 6, (595,543,0): 16, 1, 6, (595,544,0): 15, 2, 9, (595,545,0): 14, 3, 11, (595,546,0): 14, 3, 11, (595,547,0): 14, 3, 11, (595,548,0): 14, 3, 11, (595,549,0): 14, 3, 11, (595,550,0): 14, 3, 11, (595,551,0): 14, 3, 11, (595,552,0): 15, 4, 12, (595,553,0): 16, 5, 13, (595,554,0): 16, 5, 13, (595,555,0): 17, 6, 14, (595,556,0): 17, 6, 14, (595,557,0): 18, 7, 15, (595,558,0): 18, 7, 15, (595,559,0): 18, 7, 13, (595,560,0): 18, 6, 10, (595,561,0): 18, 6, 10, (595,562,0): 21, 6, 11, (595,563,0): 22, 7, 12, (595,564,0): 23, 8, 11, (595,565,0): 24, 9, 12, (595,566,0): 26, 10, 13, (595,567,0): 26, 10, 13, (595,568,0): 32, 13, 15, (595,569,0): 33, 14, 16, (595,570,0): 35, 17, 17, (595,571,0): 37, 19, 19, (595,572,0): 38, 18, 19, (595,573,0): 36, 16, 17, (595,574,0): 34, 14, 13, (595,575,0): 32, 14, 12, (595,576,0): 33, 15, 15, (595,577,0): 32, 16, 16, (595,578,0): 33, 17, 17, (595,579,0): 35, 19, 19, (595,580,0): 36, 20, 20, (595,581,0): 38, 22, 22, (595,582,0): 39, 23, 23, (595,583,0): 40, 24, 24, (595,584,0): 43, 27, 27, (595,585,0): 43, 27, 27, (595,586,0): 42, 26, 26, (595,587,0): 41, 25, 25, (595,588,0): 40, 24, 24, (595,589,0): 39, 23, 23, (595,590,0): 38, 22, 22, (595,591,0): 38, 22, 23, (595,592,0): 42, 27, 30, (595,593,0): 42, 27, 32, (595,594,0): 43, 28, 33, (595,595,0): 44, 29, 34, (595,596,0): 45, 30, 35, (595,597,0): 46, 31, 36, (595,598,0): 47, 32, 37, (595,599,0): 47, 32, 37, (596,0,0): 26, 54, 66, (596,1,0): 26, 54, 66, (596,2,0): 26, 54, 66, (596,3,0): 26, 54, 66, (596,4,0): 26, 54, 66, (596,5,0): 26, 54, 66, (596,6,0): 26, 54, 66, (596,7,0): 26, 54, 66, (596,8,0): 26, 54, 66, (596,9,0): 26, 54, 66, (596,10,0): 26, 54, 66, (596,11,0): 26, 54, 66, (596,12,0): 26, 54, 66, (596,13,0): 26, 54, 66, (596,14,0): 26, 54, 66, (596,15,0): 26, 54, 66, (596,16,0): 28, 56, 67, (596,17,0): 28, 56, 67, (596,18,0): 28, 56, 67, (596,19,0): 28, 56, 67, (596,20,0): 29, 56, 67, (596,21,0): 29, 56, 67, (596,22,0): 31, 55, 67, (596,23,0): 31, 55, 67, (596,24,0): 32, 56, 68, (596,25,0): 32, 56, 68, (596,26,0): 34, 56, 69, (596,27,0): 34, 56, 69, (596,28,0): 37, 56, 70, (596,29,0): 37, 56, 70, (596,30,0): 38, 57, 71, (596,31,0): 39, 57, 71, (596,32,0): 40, 56, 71, (596,33,0): 40, 56, 71, (596,34,0): 40, 56, 71, (596,35,0): 41, 57, 72, (596,36,0): 43, 56, 72, (596,37,0): 44, 57, 73, (596,38,0): 45, 57, 73, (596,39,0): 46, 58, 74, (596,40,0): 46, 58, 74, (596,41,0): 46, 58, 74, (596,42,0): 48, 57, 74, (596,43,0): 49, 58, 75, (596,44,0): 50, 57, 75, (596,45,0): 51, 58, 76, (596,46,0): 51, 58, 76, (596,47,0): 52, 59, 77, (596,48,0): 52, 59, 77, (596,49,0): 52, 59, 77, (596,50,0): 52, 59, 77, (596,51,0): 52, 59, 77, (596,52,0): 52, 59, 77, (596,53,0): 52, 59, 77, (596,54,0): 52, 59, 77, (596,55,0): 52, 59, 77, (596,56,0): 53, 60, 78, (596,57,0): 54, 61, 79, (596,58,0): 54, 61, 79, (596,59,0): 54, 61, 79, (596,60,0): 55, 62, 80, (596,61,0): 56, 63, 81, (596,62,0): 56, 63, 81, (596,63,0): 56, 63, 79, (596,64,0): 57, 63, 79, (596,65,0): 58, 64, 78, (596,66,0): 58, 64, 78, (596,67,0): 58, 64, 78, (596,68,0): 59, 65, 79, (596,69,0): 60, 66, 80, (596,70,0): 60, 66, 80, (596,71,0): 60, 66, 80, (596,72,0): 60, 66, 80, (596,73,0): 60, 66, 80, (596,74,0): 60, 66, 80, (596,75,0): 60, 66, 80, (596,76,0): 60, 66, 80, (596,77,0): 60, 66, 80, (596,78,0): 60, 66, 80, (596,79,0): 62, 65, 80, (596,80,0): 63, 65, 80, (596,81,0): 63, 65, 80, (596,82,0): 63, 65, 80, (596,83,0): 63, 65, 80, (596,84,0): 63, 65, 80, (596,85,0): 62, 65, 80, (596,86,0): 62, 65, 80, (596,87,0): 60, 66, 80, (596,88,0): 60, 66, 80, (596,89,0): 60, 66, 80, (596,90,0): 59, 67, 80, (596,91,0): 58, 66, 79, (596,92,0): 58, 66, 79, (596,93,0): 57, 65, 78, (596,94,0): 57, 65, 78, (596,95,0): 57, 65, 78, (596,96,0): 57, 63, 75, (596,97,0): 59, 63, 75, (596,98,0): 59, 63, 75, (596,99,0): 58, 62, 74, (596,100,0): 57, 61, 73, (596,101,0): 57, 61, 73, (596,102,0): 57, 61, 73, (596,103,0): 56, 60, 72, (596,104,0): 56, 60, 72, (596,105,0): 55, 59, 71, (596,106,0): 54, 58, 70, (596,107,0): 54, 58, 70, (596,108,0): 54, 58, 70, (596,109,0): 54, 58, 70, (596,110,0): 55, 59, 71, (596,111,0): 54, 60, 74, (596,112,0): 55, 61, 77, (596,113,0): 55, 61, 77, (596,114,0): 56, 62, 78, (596,115,0): 57, 63, 79, (596,116,0): 58, 64, 80, (596,117,0): 59, 65, 79, (596,118,0): 60, 66, 80, (596,119,0): 62, 65, 80, (596,120,0): 67, 70, 85, (596,121,0): 67, 71, 83, (596,122,0): 69, 71, 84, (596,123,0): 69, 71, 84, (596,124,0): 70, 72, 85, (596,125,0): 70, 72, 85, (596,126,0): 71, 73, 86, (596,127,0): 71, 73, 86, (596,128,0): 73, 77, 89, (596,129,0): 70, 76, 90, (596,130,0): 69, 75, 91, (596,131,0): 66, 75, 92, (596,132,0): 62, 73, 93, (596,133,0): 58, 73, 96, (596,134,0): 55, 73, 97, (596,135,0): 52, 72, 99, (596,136,0): 51, 72, 101, (596,137,0): 49, 72, 103, (596,138,0): 49, 72, 104, (596,139,0): 48, 71, 103, (596,140,0): 47, 70, 102, (596,141,0): 47, 70, 102, (596,142,0): 47, 70, 102, (596,143,0): 46, 69, 101, (596,144,0): 46, 69, 103, (596,145,0): 45, 69, 103, (596,146,0): 45, 69, 105, (596,147,0): 45, 69, 105, (596,148,0): 44, 70, 105, (596,149,0): 44, 70, 105, (596,150,0): 44, 70, 107, (596,151,0): 44, 70, 107, (596,152,0): 45, 73, 112, (596,153,0): 45, 73, 112, (596,154,0): 44, 74, 112, (596,155,0): 44, 74, 112, (596,156,0): 44, 73, 113, (596,157,0): 44, 73, 113, (596,158,0): 42, 74, 113, (596,159,0): 42, 74, 115, (596,160,0): 46, 75, 119, (596,161,0): 47, 75, 122, (596,162,0): 48, 76, 123, (596,163,0): 49, 77, 124, (596,164,0): 49, 77, 124, (596,165,0): 48, 76, 123, (596,166,0): 47, 75, 122, (596,167,0): 46, 74, 121, (596,168,0): 46, 74, 121, (596,169,0): 46, 74, 121, (596,170,0): 46, 74, 121, (596,171,0): 46, 74, 121, (596,172,0): 46, 74, 121, (596,173,0): 46, 74, 121, (596,174,0): 46, 74, 121, (596,175,0): 46, 74, 121, (596,176,0): 43, 74, 121, (596,177,0): 43, 74, 121, (596,178,0): 43, 74, 121, (596,179,0): 44, 75, 122, (596,180,0): 44, 75, 122, (596,181,0): 45, 76, 123, (596,182,0): 45, 76, 123, (596,183,0): 45, 76, 123, (596,184,0): 47, 78, 125, (596,185,0): 47, 78, 125, (596,186,0): 48, 79, 126, (596,187,0): 48, 79, 126, (596,188,0): 49, 80, 127, (596,189,0): 49, 80, 127, (596,190,0): 50, 81, 128, (596,191,0): 50, 81, 128, (596,192,0): 47, 77, 129, (596,193,0): 47, 77, 129, (596,194,0): 47, 77, 129, (596,195,0): 47, 77, 129, (596,196,0): 47, 77, 129, (596,197,0): 47, 77, 129, (596,198,0): 47, 77, 129, (596,199,0): 47, 77, 129, (596,200,0): 49, 79, 131, (596,201,0): 49, 79, 131, (596,202,0): 50, 80, 132, (596,203,0): 51, 81, 133, (596,204,0): 52, 82, 134, (596,205,0): 53, 83, 135, (596,206,0): 54, 84, 136, (596,207,0): 54, 85, 139, (596,208,0): 53, 83, 143, (596,209,0): 53, 85, 146, (596,210,0): 53, 85, 146, (596,211,0): 53, 85, 146, (596,212,0): 54, 86, 147, (596,213,0): 55, 87, 148, (596,214,0): 55, 87, 148, (596,215,0): 55, 87, 148, (596,216,0): 53, 85, 146, (596,217,0): 53, 85, 146, (596,218,0): 53, 85, 146, (596,219,0): 54, 86, 147, (596,220,0): 54, 86, 147, (596,221,0): 55, 87, 148, (596,222,0): 55, 87, 148, (596,223,0): 54, 88, 149, (596,224,0): 54, 90, 152, (596,225,0): 53, 91, 153, (596,226,0): 53, 91, 153, (596,227,0): 54, 92, 154, (596,228,0): 54, 92, 154, (596,229,0): 55, 93, 155, (596,230,0): 55, 93, 156, (596,231,0): 55, 93, 156, (596,232,0): 57, 95, 160, (596,233,0): 57, 95, 160, (596,234,0): 58, 95, 163, (596,235,0): 59, 96, 164, (596,236,0): 60, 97, 165, (596,237,0): 61, 98, 166, (596,238,0): 62, 99, 167, (596,239,0): 63, 100, 170, (596,240,0): 63, 101, 172, (596,241,0): 63, 101, 172, (596,242,0): 64, 102, 175, (596,243,0): 64, 102, 173, (596,244,0): 66, 102, 176, (596,245,0): 66, 103, 174, (596,246,0): 67, 103, 177, (596,247,0): 67, 104, 175, (596,248,0): 70, 104, 178, (596,249,0): 71, 105, 177, (596,250,0): 72, 104, 179, (596,251,0): 72, 104, 177, (596,252,0): 73, 105, 180, (596,253,0): 74, 106, 179, (596,254,0): 76, 105, 181, (596,255,0): 76, 106, 178, (596,256,0): 76, 109, 178, (596,257,0): 77, 108, 173, (596,258,0): 78, 107, 173, (596,259,0): 81, 106, 170, (596,260,0): 86, 106, 165, (596,261,0): 88, 104, 156, (596,262,0): 92, 96, 143, (596,263,0): 94, 89, 129, (596,264,0): 89, 76, 106, (596,265,0): 84, 66, 88, (596,266,0): 76, 53, 69, (596,267,0): 66, 43, 53, (596,268,0): 59, 36, 46, (596,269,0): 53, 32, 39, (596,270,0): 48, 28, 37, (596,271,0): 45, 25, 34, (596,272,0): 43, 20, 28, (596,273,0): 45, 19, 28, (596,274,0): 42, 19, 27, (596,275,0): 41, 18, 26, (596,276,0): 40, 19, 28, (596,277,0): 39, 18, 27, (596,278,0): 37, 17, 26, (596,279,0): 35, 18, 26, (596,280,0): 29, 12, 22, (596,281,0): 28, 12, 22, (596,282,0): 26, 13, 23, (596,283,0): 25, 12, 22, (596,284,0): 23, 11, 21, (596,285,0): 23, 11, 21, (596,286,0): 22, 12, 23, (596,287,0): 21, 11, 22, (596,288,0): 16, 8, 21, (596,289,0): 16, 8, 21, (596,290,0): 16, 8, 21, (596,291,0): 15, 7, 20, (596,292,0): 14, 6, 19, (596,293,0): 14, 6, 19, (596,294,0): 13, 5, 18, (596,295,0): 13, 5, 18, (596,296,0): 13, 5, 18, (596,297,0): 13, 5, 18, (596,298,0): 13, 5, 18, (596,299,0): 13, 5, 18, (596,300,0): 13, 5, 18, (596,301,0): 13, 5, 18, (596,302,0): 14, 6, 19, (596,303,0): 14, 6, 17, (596,304,0): 13, 5, 16, (596,305,0): 13, 6, 14, (596,306,0): 13, 6, 14, (596,307,0): 13, 6, 14, (596,308,0): 13, 6, 14, (596,309,0): 13, 6, 14, (596,310,0): 13, 6, 14, (596,311,0): 13, 6, 14, (596,312,0): 12, 5, 13, (596,313,0): 12, 5, 13, (596,314,0): 12, 5, 13, (596,315,0): 12, 5, 13, (596,316,0): 12, 5, 13, (596,317,0): 12, 5, 13, (596,318,0): 12, 5, 13, (596,319,0): 11, 6, 13, (596,320,0): 11, 6, 13, (596,321,0): 9, 6, 13, (596,322,0): 11, 6, 13, (596,323,0): 11, 6, 13, (596,324,0): 11, 6, 13, (596,325,0): 11, 6, 13, (596,326,0): 12, 5, 13, (596,327,0): 12, 5, 13, (596,328,0): 16, 6, 15, (596,329,0): 16, 6, 15, (596,330,0): 16, 6, 15, (596,331,0): 16, 6, 15, (596,332,0): 17, 5, 15, (596,333,0): 17, 5, 15, (596,334,0): 17, 5, 15, (596,335,0): 17, 5, 15, (596,336,0): 15, 2, 12, (596,337,0): 14, 2, 12, (596,338,0): 14, 2, 12, (596,339,0): 13, 3, 12, (596,340,0): 11, 4, 12, (596,341,0): 10, 5, 12, (596,342,0): 10, 5, 12, (596,343,0): 10, 5, 12, (596,344,0): 11, 6, 13, (596,345,0): 12, 7, 14, (596,346,0): 13, 6, 14, (596,347,0): 14, 7, 15, (596,348,0): 18, 8, 17, (596,349,0): 20, 8, 18, (596,350,0): 21, 8, 18, (596,351,0): 22, 9, 18, (596,352,0): 19, 8, 12, (596,353,0): 19, 9, 10, (596,354,0): 19, 9, 10, (596,355,0): 20, 10, 11, (596,356,0): 20, 10, 11, (596,357,0): 20, 10, 11, (596,358,0): 20, 10, 11, (596,359,0): 20, 10, 11, (596,360,0): 21, 11, 12, (596,361,0): 21, 11, 12, (596,362,0): 21, 11, 12, (596,363,0): 20, 10, 11, (596,364,0): 20, 10, 11, (596,365,0): 19, 9, 10, (596,366,0): 19, 9, 10, (596,367,0): 18, 8, 9, (596,368,0): 14, 5, 6, (596,369,0): 14, 5, 6, (596,370,0): 14, 5, 6, (596,371,0): 15, 6, 7, (596,372,0): 15, 6, 7, (596,373,0): 15, 6, 7, (596,374,0): 16, 7, 8, (596,375,0): 16, 7, 8, (596,376,0): 18, 9, 10, (596,377,0): 16, 7, 8, (596,378,0): 14, 5, 6, (596,379,0): 12, 3, 4, (596,380,0): 13, 4, 5, (596,381,0): 16, 7, 8, (596,382,0): 19, 10, 11, (596,383,0): 22, 12, 11, (596,384,0): 28, 12, 12, (596,385,0): 31, 13, 11, (596,386,0): 32, 14, 12, (596,387,0): 33, 15, 13, (596,388,0): 33, 15, 13, (596,389,0): 32, 14, 12, (596,390,0): 31, 13, 11, (596,391,0): 30, 12, 10, (596,392,0): 29, 11, 9, (596,393,0): 29, 11, 9, (596,394,0): 29, 11, 9, (596,395,0): 29, 11, 9, (596,396,0): 29, 11, 9, (596,397,0): 29, 11, 9, (596,398,0): 29, 11, 9, (596,399,0): 29, 11, 9, (596,400,0): 30, 11, 7, (596,401,0): 29, 10, 6, (596,402,0): 29, 10, 6, (596,403,0): 29, 10, 6, (596,404,0): 29, 11, 9, (596,405,0): 29, 11, 9, (596,406,0): 29, 11, 9, (596,407,0): 28, 10, 8, (596,408,0): 28, 12, 12, (596,409,0): 28, 12, 12, (596,410,0): 27, 13, 13, (596,411,0): 27, 13, 13, (596,412,0): 27, 13, 13, (596,413,0): 27, 13, 13, (596,414,0): 24, 12, 14, (596,415,0): 26, 12, 12, (596,416,0): 29, 10, 12, (596,417,0): 30, 10, 11, (596,418,0): 30, 10, 11, (596,419,0): 31, 11, 12, (596,420,0): 32, 12, 13, (596,421,0): 31, 13, 13, (596,422,0): 31, 13, 13, (596,423,0): 32, 14, 14, (596,424,0): 30, 14, 14, (596,425,0): 30, 14, 14, (596,426,0): 29, 15, 14, (596,427,0): 30, 16, 15, (596,428,0): 31, 17, 16, (596,429,0): 29, 18, 16, (596,430,0): 29, 18, 16, (596,431,0): 30, 19, 17, (596,432,0): 32, 18, 18, (596,433,0): 32, 18, 18, (596,434,0): 32, 18, 18, (596,435,0): 31, 17, 17, (596,436,0): 31, 17, 17, (596,437,0): 31, 17, 17, (596,438,0): 31, 17, 17, (596,439,0): 31, 17, 17, (596,440,0): 32, 18, 18, (596,441,0): 32, 18, 18, (596,442,0): 31, 17, 17, (596,443,0): 30, 16, 16, (596,444,0): 29, 15, 15, (596,445,0): 28, 14, 14, (596,446,0): 27, 13, 13, (596,447,0): 27, 13, 13, (596,448,0): 27, 13, 13, (596,449,0): 28, 14, 14, (596,450,0): 31, 17, 17, (596,451,0): 32, 18, 18, (596,452,0): 32, 18, 18, (596,453,0): 32, 18, 18, (596,454,0): 31, 17, 17, (596,455,0): 31, 17, 17, (596,456,0): 28, 14, 14, (596,457,0): 28, 14, 14, (596,458,0): 27, 13, 13, (596,459,0): 26, 12, 12, (596,460,0): 25, 11, 11, (596,461,0): 24, 10, 10, (596,462,0): 24, 10, 10, (596,463,0): 23, 9, 9, (596,464,0): 24, 10, 10, (596,465,0): 25, 11, 11, (596,466,0): 26, 12, 12, (596,467,0): 27, 13, 13, (596,468,0): 27, 13, 13, (596,469,0): 27, 13, 13, (596,470,0): 26, 12, 12, (596,471,0): 25, 11, 11, (596,472,0): 21, 7, 7, (596,473,0): 20, 6, 6, (596,474,0): 20, 6, 6, (596,475,0): 19, 5, 5, (596,476,0): 19, 5, 5, (596,477,0): 19, 5, 5, (596,478,0): 20, 6, 6, (596,479,0): 18, 6, 6, (596,480,0): 15, 6, 9, (596,481,0): 13, 7, 9, (596,482,0): 13, 7, 9, (596,483,0): 12, 6, 8, (596,484,0): 12, 6, 10, (596,485,0): 11, 5, 9, (596,486,0): 11, 5, 9, (596,487,0): 11, 5, 9, (596,488,0): 10, 3, 10, (596,489,0): 10, 3, 10, (596,490,0): 8, 1, 9, (596,491,0): 8, 1, 9, (596,492,0): 8, 1, 9, (596,493,0): 8, 1, 9, (596,494,0): 10, 2, 13, (596,495,0): 12, 2, 11, (596,496,0): 14, 3, 11, (596,497,0): 16, 3, 10, (596,498,0): 17, 4, 11, (596,499,0): 18, 6, 10, (596,500,0): 21, 6, 11, (596,501,0): 21, 6, 11, (596,502,0): 20, 5, 8, (596,503,0): 19, 4, 7, (596,504,0): 18, 2, 5, (596,505,0): 19, 3, 4, (596,506,0): 22, 3, 5, (596,507,0): 23, 4, 6, (596,508,0): 24, 6, 6, (596,509,0): 25, 7, 7, (596,510,0): 27, 7, 8, (596,511,0): 27, 7, 8, (596,512,0): 29, 7, 10, (596,513,0): 30, 8, 11, (596,514,0): 31, 9, 11, (596,515,0): 33, 11, 13, (596,516,0): 35, 13, 15, (596,517,0): 37, 15, 17, (596,518,0): 39, 18, 17, (596,519,0): 40, 19, 18, (596,520,0): 41, 20, 17, (596,521,0): 42, 21, 18, (596,522,0): 42, 21, 18, (596,523,0): 42, 21, 18, (596,524,0): 41, 20, 15, (596,525,0): 39, 18, 13, (596,526,0): 38, 17, 12, (596,527,0): 36, 15, 10, (596,528,0): 36, 15, 12, (596,529,0): 33, 12, 11, (596,530,0): 31, 10, 9, (596,531,0): 30, 10, 9, (596,532,0): 31, 11, 12, (596,533,0): 30, 12, 12, (596,534,0): 27, 9, 9, (596,535,0): 25, 7, 7, (596,536,0): 24, 8, 9, (596,537,0): 24, 8, 9, (596,538,0): 21, 6, 9, (596,539,0): 20, 5, 8, (596,540,0): 19, 4, 7, (596,541,0): 16, 4, 6, (596,542,0): 16, 4, 8, (596,543,0): 16, 4, 8, (596,544,0): 14, 3, 9, (596,545,0): 14, 3, 9, (596,546,0): 14, 3, 9, (596,547,0): 14, 3, 9, (596,548,0): 14, 3, 9, (596,549,0): 14, 3, 9, (596,550,0): 14, 3, 9, (596,551,0): 14, 3, 9, (596,552,0): 15, 4, 10, (596,553,0): 15, 4, 10, (596,554,0): 15, 4, 10, (596,555,0): 16, 5, 11, (596,556,0): 16, 5, 11, (596,557,0): 17, 6, 12, (596,558,0): 17, 6, 12, (596,559,0): 18, 7, 13, (596,560,0): 18, 6, 10, (596,561,0): 18, 6, 10, (596,562,0): 21, 6, 11, (596,563,0): 22, 7, 12, (596,564,0): 23, 8, 11, (596,565,0): 24, 9, 12, (596,566,0): 26, 10, 13, (596,567,0): 26, 10, 13, (596,568,0): 32, 13, 15, (596,569,0): 33, 14, 16, (596,570,0): 35, 17, 17, (596,571,0): 37, 19, 19, (596,572,0): 38, 18, 19, (596,573,0): 36, 16, 17, (596,574,0): 34, 14, 13, (596,575,0): 32, 14, 12, (596,576,0): 34, 16, 16, (596,577,0): 32, 16, 16, (596,578,0): 33, 17, 17, (596,579,0): 35, 19, 19, (596,580,0): 36, 20, 20, (596,581,0): 38, 22, 22, (596,582,0): 39, 23, 23, (596,583,0): 39, 23, 23, (596,584,0): 41, 25, 25, (596,585,0): 41, 25, 25, (596,586,0): 40, 24, 24, (596,587,0): 40, 24, 24, (596,588,0): 39, 23, 23, (596,589,0): 39, 23, 23, (596,590,0): 38, 22, 22, (596,591,0): 38, 22, 23, (596,592,0): 40, 25, 28, (596,593,0): 40, 25, 28, (596,594,0): 41, 26, 29, (596,595,0): 42, 27, 30, (596,596,0): 43, 28, 31, (596,597,0): 44, 29, 32, (596,598,0): 45, 30, 33, (596,599,0): 45, 30, 33, (597,0,0): 26, 54, 66, (597,1,0): 26, 54, 66, (597,2,0): 26, 54, 66, (597,3,0): 26, 54, 66, (597,4,0): 26, 54, 66, (597,5,0): 26, 54, 66, (597,6,0): 26, 54, 66, (597,7,0): 26, 54, 66, (597,8,0): 25, 53, 65, (597,9,0): 25, 53, 65, (597,10,0): 25, 53, 65, (597,11,0): 25, 53, 65, (597,12,0): 25, 53, 65, (597,13,0): 25, 53, 65, (597,14,0): 25, 53, 65, (597,15,0): 25, 53, 65, (597,16,0): 28, 56, 67, (597,17,0): 28, 56, 67, (597,18,0): 28, 56, 67, (597,19,0): 28, 56, 67, (597,20,0): 29, 56, 67, (597,21,0): 29, 56, 67, (597,22,0): 31, 55, 67, (597,23,0): 31, 55, 67, (597,24,0): 32, 56, 68, (597,25,0): 32, 56, 68, (597,26,0): 34, 56, 69, (597,27,0): 34, 56, 69, (597,28,0): 37, 56, 70, (597,29,0): 37, 56, 70, (597,30,0): 38, 57, 71, (597,31,0): 38, 57, 71, (597,32,0): 38, 56, 70, (597,33,0): 40, 56, 71, (597,34,0): 40, 56, 71, (597,35,0): 40, 56, 71, (597,36,0): 43, 56, 72, (597,37,0): 44, 57, 73, (597,38,0): 45, 57, 73, (597,39,0): 45, 57, 73, (597,40,0): 45, 57, 73, (597,41,0): 46, 58, 74, (597,42,0): 48, 57, 74, (597,43,0): 48, 57, 74, (597,44,0): 50, 57, 75, (597,45,0): 51, 58, 76, (597,46,0): 51, 58, 76, (597,47,0): 51, 58, 76, (597,48,0): 51, 58, 76, (597,49,0): 51, 58, 76, (597,50,0): 51, 58, 76, (597,51,0): 51, 58, 76, (597,52,0): 51, 58, 76, (597,53,0): 51, 58, 76, (597,54,0): 51, 58, 76, (597,55,0): 51, 58, 76, (597,56,0): 53, 60, 78, (597,57,0): 53, 60, 78, (597,58,0): 53, 60, 78, (597,59,0): 54, 61, 79, (597,60,0): 54, 61, 79, (597,61,0): 55, 62, 80, (597,62,0): 55, 62, 80, (597,63,0): 56, 63, 79, (597,64,0): 57, 63, 79, (597,65,0): 57, 63, 77, (597,66,0): 57, 63, 77, (597,67,0): 58, 64, 78, (597,68,0): 58, 64, 78, (597,69,0): 59, 65, 79, (597,70,0): 59, 65, 79, (597,71,0): 60, 66, 80, (597,72,0): 60, 66, 80, (597,73,0): 60, 66, 80, (597,74,0): 60, 66, 80, (597,75,0): 60, 66, 80, (597,76,0): 60, 66, 80, (597,77,0): 60, 66, 80, (597,78,0): 60, 66, 80, (597,79,0): 60, 66, 80, (597,80,0): 63, 65, 80, (597,81,0): 63, 65, 80, (597,82,0): 63, 65, 80, (597,83,0): 63, 65, 80, (597,84,0): 63, 65, 80, (597,85,0): 63, 65, 80, (597,86,0): 62, 65, 80, (597,87,0): 62, 65, 80, (597,88,0): 60, 66, 80, (597,89,0): 60, 66, 80, (597,90,0): 59, 67, 80, (597,91,0): 58, 66, 79, (597,92,0): 58, 66, 79, (597,93,0): 57, 65, 78, (597,94,0): 57, 65, 78, (597,95,0): 57, 65, 78, (597,96,0): 57, 63, 75, (597,97,0): 58, 62, 74, (597,98,0): 58, 62, 74, (597,99,0): 57, 61, 73, (597,100,0): 57, 61, 73, (597,101,0): 56, 60, 72, (597,102,0): 56, 60, 72, (597,103,0): 56, 60, 72, (597,104,0): 56, 60, 72, (597,105,0): 56, 60, 72, (597,106,0): 55, 59, 71, (597,107,0): 54, 58, 70, (597,108,0): 54, 58, 70, (597,109,0): 55, 59, 71, (597,110,0): 56, 60, 72, (597,111,0): 54, 60, 72, (597,112,0): 55, 61, 75, (597,113,0): 55, 61, 77, (597,114,0): 56, 62, 78, (597,115,0): 56, 63, 79, (597,116,0): 58, 64, 78, (597,117,0): 58, 66, 79, (597,118,0): 60, 66, 80, (597,119,0): 59, 66, 82, (597,120,0): 63, 70, 86, (597,121,0): 63, 70, 86, (597,122,0): 64, 70, 86, (597,123,0): 65, 71, 87, (597,124,0): 65, 71, 87, (597,125,0): 66, 72, 88, (597,126,0): 66, 72, 88, (597,127,0): 65, 72, 88, (597,128,0): 68, 75, 91, (597,129,0): 66, 75, 90, (597,130,0): 63, 75, 91, (597,131,0): 61, 74, 91, (597,132,0): 58, 73, 94, (597,133,0): 56, 72, 95, (597,134,0): 52, 72, 97, (597,135,0): 51, 72, 99, (597,136,0): 49, 73, 101, (597,137,0): 48, 71, 102, (597,138,0): 48, 71, 103, (597,139,0): 47, 70, 102, (597,140,0): 47, 70, 102, (597,141,0): 48, 68, 101, (597,142,0): 48, 68, 101, (597,143,0): 48, 68, 101, (597,144,0): 44, 68, 102, (597,145,0): 44, 68, 102, (597,146,0): 44, 68, 104, (597,147,0): 44, 68, 104, (597,148,0): 43, 69, 104, (597,149,0): 43, 69, 104, (597,150,0): 43, 69, 106, (597,151,0): 41, 69, 106, (597,152,0): 45, 73, 112, (597,153,0): 44, 74, 112, (597,154,0): 44, 74, 112, (597,155,0): 44, 74, 112, (597,156,0): 44, 73, 113, (597,157,0): 44, 73, 113, (597,158,0): 42, 74, 113, (597,159,0): 42, 74, 115, (597,160,0): 45, 74, 118, (597,161,0): 46, 74, 121, (597,162,0): 47, 75, 122, (597,163,0): 48, 76, 123, (597,164,0): 48, 76, 123, (597,165,0): 47, 75, 122, (597,166,0): 46, 74, 121, (597,167,0): 45, 73, 120, (597,168,0): 45, 73, 120, (597,169,0): 45, 73, 120, (597,170,0): 45, 73, 120, (597,171,0): 45, 73, 120, (597,172,0): 45, 73, 120, (597,173,0): 45, 73, 120, (597,174,0): 45, 73, 120, (597,175,0): 45, 73, 120, (597,176,0): 43, 74, 121, (597,177,0): 43, 74, 121, (597,178,0): 43, 74, 121, (597,179,0): 44, 75, 122, (597,180,0): 44, 75, 122, (597,181,0): 45, 76, 123, (597,182,0): 45, 76, 123, (597,183,0): 46, 77, 124, (597,184,0): 47, 78, 125, (597,185,0): 47, 78, 125, (597,186,0): 48, 79, 126, (597,187,0): 48, 79, 126, (597,188,0): 49, 80, 127, (597,189,0): 49, 80, 127, (597,190,0): 50, 81, 128, (597,191,0): 50, 81, 128, (597,192,0): 48, 78, 130, (597,193,0): 48, 78, 130, (597,194,0): 48, 78, 130, (597,195,0): 48, 78, 130, (597,196,0): 48, 78, 130, (597,197,0): 48, 78, 130, (597,198,0): 48, 78, 130, (597,199,0): 48, 78, 130, (597,200,0): 50, 80, 132, (597,201,0): 50, 80, 132, (597,202,0): 51, 81, 133, (597,203,0): 52, 82, 134, (597,204,0): 53, 83, 135, (597,205,0): 54, 84, 136, (597,206,0): 55, 85, 137, (597,207,0): 54, 85, 139, (597,208,0): 53, 83, 143, (597,209,0): 52, 84, 145, (597,210,0): 52, 84, 145, (597,211,0): 53, 85, 146, (597,212,0): 53, 85, 146, (597,213,0): 54, 86, 147, (597,214,0): 54, 86, 147, (597,215,0): 55, 87, 148, (597,216,0): 54, 86, 147, (597,217,0): 54, 86, 147, (597,218,0): 54, 86, 147, (597,219,0): 55, 87, 148, (597,220,0): 55, 87, 148, (597,221,0): 56, 88, 149, (597,222,0): 56, 88, 149, (597,223,0): 54, 88, 149, (597,224,0): 55, 91, 153, (597,225,0): 53, 91, 153, (597,226,0): 53, 91, 153, (597,227,0): 54, 92, 154, (597,228,0): 55, 93, 155, (597,229,0): 55, 93, 155, (597,230,0): 55, 93, 156, (597,231,0): 56, 94, 157, (597,232,0): 58, 96, 161, (597,233,0): 58, 96, 161, (597,234,0): 59, 96, 164, (597,235,0): 60, 97, 165, (597,236,0): 61, 98, 166, (597,237,0): 62, 99, 167, (597,238,0): 63, 100, 168, (597,239,0): 63, 100, 168, (597,240,0): 64, 101, 171, (597,241,0): 63, 102, 171, (597,242,0): 64, 102, 173, (597,243,0): 65, 102, 172, (597,244,0): 66, 103, 174, (597,245,0): 66, 103, 173, (597,246,0): 67, 104, 175, (597,247,0): 69, 103, 174, (597,248,0): 70, 104, 176, (597,249,0): 71, 104, 175, (597,250,0): 71, 103, 176, (597,251,0): 72, 105, 176, (597,252,0): 72, 104, 177, (597,253,0): 75, 105, 177, (597,254,0): 75, 105, 178, (597,255,0): 76, 106, 176, (597,256,0): 76, 105, 173, (597,257,0): 76, 106, 170, (597,258,0): 77, 105, 170, (597,259,0): 82, 106, 168, (597,260,0): 87, 107, 166, (597,261,0): 91, 104, 159, (597,262,0): 93, 97, 145, (597,263,0): 94, 92, 131, (597,264,0): 89, 78, 108, (597,265,0): 85, 67, 89, (597,266,0): 75, 52, 70, (597,267,0): 65, 41, 54, (597,268,0): 58, 35, 45, (597,269,0): 52, 31, 38, (597,270,0): 48, 28, 37, (597,271,0): 46, 26, 35, (597,272,0): 44, 21, 29, (597,273,0): 46, 20, 29, (597,274,0): 43, 20, 28, (597,275,0): 42, 19, 27, (597,276,0): 39, 18, 27, (597,277,0): 38, 17, 26, (597,278,0): 36, 16, 25, (597,279,0): 34, 17, 25, (597,280,0): 29, 12, 22, (597,281,0): 27, 11, 21, (597,282,0): 25, 12, 22, (597,283,0): 24, 11, 21, (597,284,0): 23, 11, 21, (597,285,0): 22, 10, 20, (597,286,0): 21, 11, 22, (597,287,0): 21, 11, 22, (597,288,0): 17, 9, 22, (597,289,0): 17, 9, 22, (597,290,0): 16, 8, 21, (597,291,0): 15, 7, 20, (597,292,0): 14, 6, 19, (597,293,0): 13, 5, 18, (597,294,0): 12, 4, 17, (597,295,0): 12, 4, 17, (597,296,0): 12, 4, 17, (597,297,0): 12, 4, 17, (597,298,0): 12, 4, 17, (597,299,0): 12, 4, 17, (597,300,0): 13, 5, 18, (597,301,0): 13, 5, 18, (597,302,0): 14, 6, 19, (597,303,0): 14, 6, 17, (597,304,0): 13, 5, 16, (597,305,0): 13, 6, 14, (597,306,0): 13, 6, 14, (597,307,0): 13, 6, 14, (597,308,0): 13, 6, 14, (597,309,0): 13, 6, 14, (597,310,0): 13, 6, 14, (597,311,0): 13, 6, 14, (597,312,0): 11, 4, 12, (597,313,0): 11, 4, 12, (597,314,0): 11, 4, 12, (597,315,0): 11, 4, 12, (597,316,0): 11, 4, 12, (597,317,0): 11, 4, 12, (597,318,0): 11, 4, 12, (597,319,0): 10, 5, 12, (597,320,0): 11, 6, 13, (597,321,0): 9, 6, 13, (597,322,0): 11, 6, 13, (597,323,0): 11, 6, 13, (597,324,0): 11, 6, 13, (597,325,0): 11, 6, 13, (597,326,0): 12, 5, 13, (597,327,0): 12, 5, 13, (597,328,0): 16, 6, 15, (597,329,0): 16, 6, 15, (597,330,0): 16, 6, 15, (597,331,0): 16, 6, 15, (597,332,0): 17, 5, 15, (597,333,0): 17, 5, 15, (597,334,0): 17, 5, 15, (597,335,0): 17, 5, 15, (597,336,0): 17, 4, 14, (597,337,0): 17, 4, 14, (597,338,0): 16, 4, 14, (597,339,0): 15, 3, 13, (597,340,0): 14, 4, 13, (597,341,0): 12, 5, 13, (597,342,0): 10, 5, 12, (597,343,0): 10, 5, 12, (597,344,0): 11, 6, 13, (597,345,0): 12, 7, 14, (597,346,0): 13, 6, 14, (597,347,0): 16, 6, 15, (597,348,0): 19, 7, 17, (597,349,0): 20, 8, 18, (597,350,0): 21, 8, 18, (597,351,0): 22, 9, 18, (597,352,0): 20, 8, 12, (597,353,0): 19, 9, 10, (597,354,0): 20, 10, 11, (597,355,0): 20, 10, 11, (597,356,0): 21, 11, 12, (597,357,0): 21, 11, 12, (597,358,0): 21, 11, 12, (597,359,0): 22, 12, 13, (597,360,0): 22, 12, 13, (597,361,0): 21, 11, 12, (597,362,0): 21, 11, 12, (597,363,0): 21, 11, 12, (597,364,0): 20, 10, 11, (597,365,0): 19, 9, 10, (597,366,0): 19, 9, 10, (597,367,0): 19, 9, 10, (597,368,0): 17, 7, 8, (597,369,0): 16, 7, 8, (597,370,0): 17, 7, 8, (597,371,0): 16, 7, 8, (597,372,0): 18, 8, 9, (597,373,0): 17, 8, 9, (597,374,0): 18, 8, 9, (597,375,0): 17, 8, 9, (597,376,0): 18, 8, 9, (597,377,0): 16, 7, 8, (597,378,0): 16, 6, 7, (597,379,0): 15, 6, 7, (597,380,0): 17, 7, 8, (597,381,0): 18, 9, 10, (597,382,0): 21, 11, 12, (597,383,0): 24, 12, 12, (597,384,0): 29, 13, 13, (597,385,0): 32, 14, 12, (597,386,0): 33, 15, 13, (597,387,0): 34, 16, 14, (597,388,0): 34, 16, 14, (597,389,0): 33, 15, 13, (597,390,0): 32, 14, 12, (597,391,0): 31, 13, 11, (597,392,0): 29, 11, 9, (597,393,0): 29, 11, 9, (597,394,0): 29, 11, 9, (597,395,0): 29, 11, 9, (597,396,0): 29, 11, 9, (597,397,0): 29, 11, 9, (597,398,0): 29, 11, 9, (597,399,0): 29, 11, 9, (597,400,0): 31, 12, 8, (597,401,0): 29, 10, 6, (597,402,0): 28, 9, 5, (597,403,0): 29, 10, 6, (597,404,0): 29, 11, 9, (597,405,0): 30, 12, 10, (597,406,0): 29, 11, 9, (597,407,0): 27, 9, 7, (597,408,0): 28, 12, 12, (597,409,0): 28, 12, 12, (597,410,0): 27, 13, 13, (597,411,0): 26, 12, 12, (597,412,0): 26, 12, 12, (597,413,0): 25, 11, 11, (597,414,0): 23, 11, 13, (597,415,0): 25, 11, 11, (597,416,0): 29, 10, 12, (597,417,0): 31, 11, 12, (597,418,0): 31, 11, 12, (597,419,0): 31, 13, 13, (597,420,0): 31, 13, 13, (597,421,0): 32, 14, 14, (597,422,0): 32, 14, 14, (597,423,0): 32, 14, 14, (597,424,0): 30, 14, 14, (597,425,0): 31, 15, 15, (597,426,0): 30, 16, 15, (597,427,0): 31, 17, 16, (597,428,0): 31, 17, 16, (597,429,0): 32, 18, 17, (597,430,0): 32, 18, 17, (597,431,0): 30, 19, 17, (597,432,0): 33, 19, 19, (597,433,0): 33, 19, 19, (597,434,0): 32, 18, 18, (597,435,0): 32, 18, 18, (597,436,0): 31, 17, 17, (597,437,0): 31, 17, 17, (597,438,0): 31, 17, 17, (597,439,0): 30, 16, 16, (597,440,0): 31, 17, 17, (597,441,0): 31, 17, 17, (597,442,0): 30, 16, 16, (597,443,0): 29, 15, 15, (597,444,0): 28, 14, 14, (597,445,0): 27, 13, 13, (597,446,0): 26, 12, 12, (597,447,0): 26, 12, 12, (597,448,0): 25, 11, 11, (597,449,0): 29, 15, 15, (597,450,0): 33, 19, 19, (597,451,0): 34, 20, 20, (597,452,0): 34, 20, 20, (597,453,0): 33, 19, 19, (597,454,0): 32, 18, 18, (597,455,0): 33, 19, 19, (597,456,0): 28, 14, 14, (597,457,0): 28, 14, 14, (597,458,0): 27, 13, 13, (597,459,0): 27, 13, 13, (597,460,0): 26, 12, 12, (597,461,0): 25, 11, 11, (597,462,0): 25, 11, 11, (597,463,0): 25, 11, 11, (597,464,0): 24, 10, 10, (597,465,0): 25, 11, 11, (597,466,0): 26, 12, 12, (597,467,0): 27, 13, 13, (597,468,0): 28, 14, 14, (597,469,0): 27, 13, 13, (597,470,0): 27, 13, 13, (597,471,0): 26, 12, 12, (597,472,0): 23, 9, 9, (597,473,0): 22, 8, 8, (597,474,0): 20, 6, 6, (597,475,0): 19, 5, 5, (597,476,0): 19, 5, 5, (597,477,0): 19, 5, 5, (597,478,0): 20, 6, 6, (597,479,0): 18, 6, 6, (597,480,0): 14, 5, 8, (597,481,0): 12, 6, 8, (597,482,0): 12, 6, 8, (597,483,0): 12, 6, 8, (597,484,0): 12, 6, 10, (597,485,0): 12, 6, 10, (597,486,0): 12, 6, 10, (597,487,0): 12, 6, 10, (597,488,0): 10, 3, 10, (597,489,0): 10, 3, 10, (597,490,0): 8, 1, 9, (597,491,0): 8, 1, 9, (597,492,0): 8, 1, 9, (597,493,0): 8, 1, 9, (597,494,0): 10, 2, 13, (597,495,0): 12, 2, 11, (597,496,0): 13, 2, 10, (597,497,0): 15, 2, 9, (597,498,0): 16, 3, 10, (597,499,0): 18, 5, 12, (597,500,0): 20, 5, 10, (597,501,0): 20, 5, 10, (597,502,0): 19, 4, 9, (597,503,0): 19, 4, 7, (597,504,0): 19, 3, 6, (597,505,0): 20, 4, 7, (597,506,0): 22, 3, 5, (597,507,0): 22, 3, 5, (597,508,0): 23, 4, 6, (597,509,0): 23, 5, 5, (597,510,0): 24, 4, 5, (597,511,0): 24, 4, 5, (597,512,0): 27, 5, 8, (597,513,0): 28, 6, 9, (597,514,0): 29, 7, 9, (597,515,0): 31, 9, 11, (597,516,0): 34, 12, 14, (597,517,0): 36, 14, 16, (597,518,0): 37, 16, 15, (597,519,0): 38, 17, 16, (597,520,0): 41, 20, 19, (597,521,0): 42, 21, 18, (597,522,0): 42, 21, 18, (597,523,0): 43, 22, 19, (597,524,0): 42, 21, 16, (597,525,0): 41, 20, 15, (597,526,0): 39, 18, 13, (597,527,0): 38, 17, 12, (597,528,0): 39, 15, 13, (597,529,0): 37, 13, 13, (597,530,0): 34, 10, 10, (597,531,0): 32, 11, 10, (597,532,0): 33, 11, 13, (597,533,0): 32, 12, 13, (597,534,0): 30, 10, 11, (597,535,0): 26, 8, 8, (597,536,0): 26, 10, 11, (597,537,0): 25, 9, 10, (597,538,0): 22, 7, 10, (597,539,0): 20, 5, 8, (597,540,0): 17, 5, 7, (597,541,0): 16, 6, 7, (597,542,0): 16, 5, 9, (597,543,0): 16, 5, 9, (597,544,0): 14, 3, 9, (597,545,0): 14, 3, 9, (597,546,0): 14, 3, 9, (597,547,0): 14, 3, 9, (597,548,0): 14, 3, 9, (597,549,0): 14, 3, 9, (597,550,0): 14, 3, 9, (597,551,0): 14, 3, 9, (597,552,0): 14, 3, 9, (597,553,0): 15, 4, 10, (597,554,0): 15, 4, 10, (597,555,0): 15, 4, 10, (597,556,0): 16, 5, 11, (597,557,0): 17, 6, 12, (597,558,0): 17, 6, 12, (597,559,0): 17, 6, 12, (597,560,0): 19, 7, 11, (597,561,0): 19, 7, 11, (597,562,0): 22, 7, 12, (597,563,0): 23, 8, 13, (597,564,0): 24, 9, 12, (597,565,0): 25, 10, 13, (597,566,0): 27, 11, 14, (597,567,0): 27, 11, 14, (597,568,0): 31, 12, 14, (597,569,0): 32, 13, 15, (597,570,0): 35, 17, 17, (597,571,0): 36, 18, 18, (597,572,0): 37, 17, 18, (597,573,0): 36, 16, 17, (597,574,0): 33, 13, 12, (597,575,0): 31, 13, 11, (597,576,0): 35, 17, 17, (597,577,0): 33, 17, 17, (597,578,0): 34, 18, 18, (597,579,0): 35, 19, 19, (597,580,0): 36, 20, 20, (597,581,0): 37, 21, 21, (597,582,0): 38, 22, 22, (597,583,0): 38, 22, 22, (597,584,0): 38, 22, 22, (597,585,0): 38, 22, 22, (597,586,0): 38, 22, 22, (597,587,0): 38, 22, 22, (597,588,0): 39, 23, 23, (597,589,0): 39, 23, 23, (597,590,0): 39, 23, 23, (597,591,0): 39, 23, 23, (597,592,0): 38, 23, 26, (597,593,0): 39, 24, 27, (597,594,0): 40, 25, 28, (597,595,0): 41, 26, 29, (597,596,0): 42, 27, 30, (597,597,0): 43, 28, 31, (597,598,0): 44, 29, 32, (597,599,0): 44, 29, 32, (598,0,0): 26, 54, 66, (598,1,0): 26, 54, 66, (598,2,0): 26, 54, 66, (598,3,0): 26, 54, 66, (598,4,0): 26, 54, 66, (598,5,0): 26, 54, 66, (598,6,0): 26, 54, 66, (598,7,0): 26, 54, 66, (598,8,0): 25, 53, 65, (598,9,0): 25, 53, 65, (598,10,0): 25, 53, 65, (598,11,0): 25, 53, 65, (598,12,0): 25, 53, 65, (598,13,0): 25, 53, 65, (598,14,0): 25, 53, 65, (598,15,0): 25, 53, 65, (598,16,0): 28, 56, 67, (598,17,0): 28, 56, 67, (598,18,0): 28, 56, 67, (598,19,0): 28, 56, 67, (598,20,0): 29, 56, 67, (598,21,0): 29, 56, 67, (598,22,0): 31, 55, 67, (598,23,0): 31, 55, 67, (598,24,0): 32, 56, 68, (598,25,0): 32, 56, 68, (598,26,0): 34, 56, 69, (598,27,0): 34, 56, 69, (598,28,0): 37, 56, 70, (598,29,0): 37, 56, 70, (598,30,0): 38, 57, 71, (598,31,0): 38, 57, 71, (598,32,0): 38, 56, 70, (598,33,0): 38, 56, 70, (598,34,0): 40, 56, 71, (598,35,0): 40, 56, 71, (598,36,0): 41, 57, 72, (598,37,0): 41, 57, 72, (598,38,0): 43, 56, 72, (598,39,0): 44, 57, 73, (598,40,0): 45, 57, 73, (598,41,0): 45, 57, 73, (598,42,0): 46, 58, 74, (598,43,0): 46, 58, 74, (598,44,0): 49, 58, 75, (598,45,0): 49, 58, 75, (598,46,0): 49, 58, 75, (598,47,0): 50, 59, 76, (598,48,0): 50, 59, 76, (598,49,0): 50, 59, 76, (598,50,0): 50, 59, 76, (598,51,0): 50, 59, 76, (598,52,0): 50, 59, 76, (598,53,0): 50, 59, 76, (598,54,0): 50, 59, 76, (598,55,0): 50, 59, 76, (598,56,0): 51, 60, 77, (598,57,0): 52, 61, 78, (598,58,0): 52, 61, 78, (598,59,0): 53, 62, 79, (598,60,0): 53, 62, 79, (598,61,0): 54, 63, 80, (598,62,0): 54, 63, 80, (598,63,0): 55, 62, 78, (598,64,0): 56, 62, 78, (598,65,0): 57, 63, 77, (598,66,0): 57, 63, 77, (598,67,0): 58, 64, 78, (598,68,0): 58, 64, 78, (598,69,0): 59, 65, 79, (598,70,0): 59, 65, 79, (598,71,0): 59, 65, 79, (598,72,0): 59, 65, 79, (598,73,0): 59, 65, 79, (598,74,0): 59, 65, 79, (598,75,0): 59, 65, 79, (598,76,0): 59, 65, 79, (598,77,0): 59, 65, 79, (598,78,0): 59, 65, 79, (598,79,0): 59, 65, 79, (598,80,0): 62, 64, 77, (598,81,0): 62, 64, 77, (598,82,0): 62, 64, 77, (598,83,0): 62, 64, 77, (598,84,0): 61, 65, 77, (598,85,0): 61, 65, 77, (598,86,0): 61, 65, 77, (598,87,0): 61, 65, 77, (598,88,0): 60, 66, 78, (598,89,0): 60, 66, 78, (598,90,0): 59, 67, 78, (598,91,0): 58, 66, 77, (598,92,0): 58, 66, 77, (598,93,0): 57, 65, 76, (598,94,0): 56, 66, 76, (598,95,0): 57, 65, 76, (598,96,0): 56, 62, 74, (598,97,0): 56, 62, 74, (598,98,0): 56, 62, 74, (598,99,0): 55, 61, 73, (598,100,0): 55, 61, 73, (598,101,0): 54, 60, 72, (598,102,0): 54, 60, 72, (598,103,0): 53, 59, 71, (598,104,0): 55, 61, 73, (598,105,0): 54, 60, 72, (598,106,0): 53, 59, 71, (598,107,0): 53, 59, 71, (598,108,0): 53, 59, 71, (598,109,0): 53, 59, 71, (598,110,0): 54, 60, 72, (598,111,0): 55, 61, 73, (598,112,0): 55, 61, 75, (598,113,0): 54, 62, 75, (598,114,0): 55, 63, 76, (598,115,0): 55, 65, 77, (598,116,0): 57, 64, 80, (598,117,0): 57, 66, 81, (598,118,0): 59, 66, 82, (598,119,0): 58, 67, 84, (598,120,0): 62, 71, 88, (598,121,0): 62, 71, 88, (598,122,0): 63, 71, 90, (598,123,0): 63, 71, 90, (598,124,0): 62, 73, 91, (598,125,0): 62, 73, 91, (598,126,0): 63, 74, 94, (598,127,0): 63, 74, 94, (598,128,0): 63, 74, 92, (598,129,0): 61, 74, 91, (598,130,0): 59, 74, 93, (598,131,0): 57, 74, 94, (598,132,0): 55, 73, 95, (598,133,0): 52, 72, 96, (598,134,0): 50, 72, 96, (598,135,0): 48, 72, 98, (598,136,0): 48, 72, 100, (598,137,0): 47, 72, 102, (598,138,0): 48, 71, 103, (598,139,0): 47, 70, 102, (598,140,0): 49, 69, 104, (598,141,0): 49, 67, 103, (598,142,0): 49, 67, 103, (598,143,0): 47, 67, 102, (598,144,0): 43, 67, 103, (598,145,0): 42, 68, 103, (598,146,0): 42, 68, 103, (598,147,0): 42, 68, 103, (598,148,0): 42, 68, 105, (598,149,0): 42, 68, 105, (598,150,0): 40, 68, 107, (598,151,0): 40, 68, 107, (598,152,0): 44, 72, 111, (598,153,0): 43, 73, 111, (598,154,0): 43, 72, 112, (598,155,0): 41, 73, 112, (598,156,0): 41, 73, 114, (598,157,0): 41, 73, 114, (598,158,0): 41, 73, 114, (598,159,0): 41, 73, 114, (598,160,0): 42, 73, 117, (598,161,0): 43, 74, 120, (598,162,0): 44, 75, 121, (598,163,0): 45, 76, 122, (598,164,0): 45, 76, 122, (598,165,0): 44, 75, 121, (598,166,0): 43, 74, 120, (598,167,0): 42, 73, 119, (598,168,0): 43, 74, 120, (598,169,0): 43, 74, 120, (598,170,0): 43, 74, 120, (598,171,0): 43, 74, 120, (598,172,0): 43, 74, 120, (598,173,0): 43, 74, 120, (598,174,0): 43, 74, 120, (598,175,0): 43, 74, 120, (598,176,0): 43, 74, 121, (598,177,0): 44, 75, 122, (598,178,0): 44, 75, 122, (598,179,0): 45, 76, 123, (598,180,0): 45, 76, 123, (598,181,0): 46, 77, 124, (598,182,0): 46, 77, 124, (598,183,0): 46, 77, 124, (598,184,0): 47, 78, 125, (598,185,0): 47, 78, 125, (598,186,0): 48, 79, 126, (598,187,0): 48, 79, 126, (598,188,0): 49, 80, 127, (598,189,0): 49, 80, 127, (598,190,0): 50, 81, 128, (598,191,0): 50, 81, 128, (598,192,0): 49, 79, 131, (598,193,0): 49, 79, 131, (598,194,0): 49, 79, 131, (598,195,0): 49, 79, 131, (598,196,0): 49, 79, 131, (598,197,0): 49, 79, 131, (598,198,0): 49, 79, 131, (598,199,0): 49, 79, 131, (598,200,0): 50, 80, 132, (598,201,0): 50, 80, 132, (598,202,0): 51, 81, 133, (598,203,0): 52, 82, 134, (598,204,0): 53, 83, 135, (598,205,0): 54, 84, 136, (598,206,0): 55, 85, 137, (598,207,0): 54, 85, 139, (598,208,0): 52, 82, 142, (598,209,0): 52, 84, 145, (598,210,0): 52, 84, 145, (598,211,0): 53, 85, 146, (598,212,0): 53, 85, 146, (598,213,0): 54, 86, 147, (598,214,0): 54, 86, 147, (598,215,0): 54, 86, 147, (598,216,0): 55, 87, 148, (598,217,0): 55, 87, 148, (598,218,0): 55, 87, 148, (598,219,0): 56, 88, 149, (598,220,0): 56, 88, 149, (598,221,0): 57, 89, 150, (598,222,0): 57, 89, 150, (598,223,0): 55, 89, 150, (598,224,0): 55, 91, 151, (598,225,0): 56, 92, 152, (598,226,0): 56, 92, 152, (598,227,0): 56, 92, 152, (598,228,0): 57, 93, 155, (598,229,0): 57, 93, 155, (598,230,0): 58, 94, 156, (598,231,0): 58, 94, 156, (598,232,0): 60, 95, 159, (598,233,0): 60, 95, 159, (598,234,0): 61, 96, 162, (598,235,0): 62, 97, 163, (598,236,0): 63, 98, 164, (598,237,0): 64, 99, 165, (598,238,0): 65, 100, 168, (598,239,0): 63, 100, 168, (598,240,0): 64, 101, 169, (598,241,0): 64, 101, 169, (598,242,0): 65, 102, 172, (598,243,0): 67, 102, 170, (598,244,0): 68, 102, 173, (598,245,0): 68, 103, 171, (598,246,0): 69, 103, 174, (598,247,0): 70, 103, 172, (598,248,0): 70, 103, 174, (598,249,0): 73, 103, 173, (598,250,0): 73, 103, 175, (598,251,0): 74, 104, 174, (598,252,0): 74, 104, 176, (598,253,0): 76, 105, 175, (598,254,0): 76, 104, 177, (598,255,0): 76, 105, 173, (598,256,0): 74, 101, 168, (598,257,0): 76, 101, 165, (598,258,0): 78, 103, 167, (598,259,0): 84, 105, 168, (598,260,0): 89, 108, 167, (598,261,0): 92, 105, 160, (598,262,0): 94, 98, 146, (598,263,0): 94, 92, 132, (598,264,0): 92, 81, 113, (598,265,0): 88, 70, 94, (598,266,0): 77, 54, 74, (598,267,0): 66, 42, 56, (598,268,0): 59, 36, 46, (598,269,0): 55, 34, 43, (598,270,0): 51, 31, 40, (598,271,0): 51, 30, 39, (598,272,0): 46, 23, 31, (598,273,0): 47, 21, 30, (598,274,0): 44, 21, 29, (598,275,0): 42, 19, 27, (598,276,0): 39, 18, 27, (598,277,0): 37, 16, 25, (598,278,0): 35, 15, 24, (598,279,0): 32, 15, 23, (598,280,0): 28, 11, 21, (598,281,0): 27, 11, 21, (598,282,0): 25, 12, 22, (598,283,0): 24, 11, 21, (598,284,0): 23, 11, 21, (598,285,0): 22, 10, 20, (598,286,0): 21, 11, 22, (598,287,0): 20, 10, 21, (598,288,0): 18, 10, 23, (598,289,0): 17, 9, 22, (598,290,0): 17, 9, 22, (598,291,0): 15, 7, 20, (598,292,0): 14, 6, 19, (598,293,0): 13, 5, 18, (598,294,0): 12, 4, 17, (598,295,0): 11, 3, 16, (598,296,0): 10, 2, 15, (598,297,0): 11, 3, 16, (598,298,0): 11, 3, 16, (598,299,0): 12, 4, 17, (598,300,0): 13, 5, 18, (598,301,0): 13, 5, 18, (598,302,0): 14, 6, 19, (598,303,0): 14, 6, 17, (598,304,0): 12, 4, 15, (598,305,0): 12, 5, 13, (598,306,0): 12, 5, 13, (598,307,0): 12, 5, 13, (598,308,0): 12, 5, 13, (598,309,0): 12, 5, 13, (598,310,0): 12, 5, 13, (598,311,0): 12, 5, 13, (598,312,0): 11, 4, 12, (598,313,0): 11, 4, 12, (598,314,0): 11, 4, 12, (598,315,0): 11, 4, 12, (598,316,0): 11, 4, 12, (598,317,0): 11, 4, 12, (598,318,0): 11, 4, 12, (598,319,0): 10, 5, 12, (598,320,0): 11, 6, 13, (598,321,0): 9, 6, 13, (598,322,0): 11, 6, 13, (598,323,0): 11, 6, 13, (598,324,0): 11, 6, 13, (598,325,0): 11, 6, 13, (598,326,0): 12, 5, 13, (598,327,0): 12, 5, 13, (598,328,0): 17, 7, 16, (598,329,0): 17, 7, 16, (598,330,0): 17, 7, 16, (598,331,0): 17, 7, 16, (598,332,0): 18, 6, 16, (598,333,0): 18, 6, 16, (598,334,0): 18, 6, 16, (598,335,0): 18, 6, 16, (598,336,0): 20, 7, 16, (598,337,0): 19, 6, 15, (598,338,0): 18, 7, 15, (598,339,0): 17, 6, 14, (598,340,0): 15, 5, 13, (598,341,0): 13, 6, 13, (598,342,0): 11, 6, 12, (598,343,0): 11, 6, 12, (598,344,0): 11, 6, 12, (598,345,0): 12, 7, 13, (598,346,0): 13, 6, 13, (598,347,0): 16, 6, 14, (598,348,0): 19, 8, 16, (598,349,0): 20, 9, 17, (598,350,0): 21, 8, 17, (598,351,0): 22, 9, 16, (598,352,0): 21, 9, 13, (598,353,0): 21, 9, 11, (598,354,0): 21, 9, 11, (598,355,0): 22, 10, 12, (598,356,0): 23, 11, 13, (598,357,0): 24, 12, 14, (598,358,0): 24, 12, 14, (598,359,0): 24, 12, 14, (598,360,0): 23, 11, 13, (598,361,0): 23, 11, 13, (598,362,0): 22, 10, 12, (598,363,0): 22, 10, 12, (598,364,0): 21, 9, 11, (598,365,0): 21, 9, 11, (598,366,0): 21, 9, 11, (598,367,0): 20, 8, 10, (598,368,0): 21, 9, 9, (598,369,0): 20, 10, 9, (598,370,0): 21, 9, 9, (598,371,0): 19, 9, 8, (598,372,0): 20, 8, 8, (598,373,0): 19, 9, 8, (598,374,0): 20, 8, 8, (598,375,0): 19, 9, 8, (598,376,0): 18, 6, 6, (598,377,0): 17, 7, 6, (598,378,0): 19, 7, 7, (598,379,0): 19, 9, 8, (598,380,0): 21, 9, 9, (598,381,0): 21, 11, 10, (598,382,0): 24, 12, 12, (598,383,0): 24, 12, 12, (598,384,0): 27, 11, 11, (598,385,0): 30, 12, 10, (598,386,0): 31, 13, 11, (598,387,0): 32, 14, 12, (598,388,0): 32, 14, 12, (598,389,0): 31, 13, 11, (598,390,0): 30, 12, 10, (598,391,0): 29, 11, 9, (598,392,0): 30, 12, 10, (598,393,0): 30, 12, 10, (598,394,0): 30, 12, 10, (598,395,0): 30, 12, 10, (598,396,0): 30, 12, 10, (598,397,0): 30, 12, 10, (598,398,0): 30, 12, 10, (598,399,0): 30, 12, 10, (598,400,0): 31, 12, 8, (598,401,0): 29, 10, 6, (598,402,0): 27, 8, 4, (598,403,0): 28, 9, 5, (598,404,0): 30, 12, 10, (598,405,0): 31, 13, 11, (598,406,0): 29, 11, 9, (598,407,0): 27, 9, 7, (598,408,0): 28, 12, 12, (598,409,0): 28, 12, 12, (598,410,0): 26, 12, 12, (598,411,0): 25, 11, 11, (598,412,0): 25, 11, 11, (598,413,0): 24, 10, 10, (598,414,0): 21, 9, 11, (598,415,0): 23, 9, 9, (598,416,0): 28, 12, 13, (598,417,0): 30, 12, 12, (598,418,0): 30, 12, 12, (598,419,0): 31, 13, 13, (598,420,0): 31, 13, 13, (598,421,0): 30, 14, 14, (598,422,0): 30, 14, 14, (598,423,0): 31, 15, 15, (598,424,0): 31, 15, 15, (598,425,0): 31, 15, 15, (598,426,0): 31, 15, 15, (598,427,0): 32, 16, 16, (598,428,0): 32, 16, 16, (598,429,0): 32, 18, 17, (598,430,0): 32, 18, 17, (598,431,0): 33, 19, 18, (598,432,0): 34, 20, 20, (598,433,0): 34, 20, 20, (598,434,0): 33, 19, 19, (598,435,0): 33, 19, 19, (598,436,0): 32, 18, 18, (598,437,0): 31, 17, 17, (598,438,0): 31, 17, 17, (598,439,0): 31, 17, 17, (598,440,0): 30, 16, 16, (598,441,0): 30, 16, 16, (598,442,0): 29, 15, 15, (598,443,0): 28, 14, 14, (598,444,0): 27, 13, 13, (598,445,0): 26, 12, 12, (598,446,0): 25, 11, 11, (598,447,0): 25, 11, 11, (598,448,0): 24, 10, 10, (598,449,0): 29, 15, 15, (598,450,0): 34, 20, 20, (598,451,0): 36, 22, 22, (598,452,0): 35, 21, 21, (598,453,0): 33, 19, 19, (598,454,0): 33, 19, 19, (598,455,0): 34, 20, 20, (598,456,0): 28, 14, 14, (598,457,0): 27, 13, 13, (598,458,0): 27, 13, 13, (598,459,0): 27, 13, 13, (598,460,0): 26, 12, 12, (598,461,0): 26, 12, 12, (598,462,0): 26, 12, 12, (598,463,0): 26, 12, 12, (598,464,0): 23, 9, 9, (598,465,0): 24, 10, 10, (598,466,0): 25, 11, 11, (598,467,0): 27, 13, 13, (598,468,0): 27, 13, 13, (598,469,0): 27, 13, 13, (598,470,0): 27, 13, 13, (598,471,0): 26, 12, 12, (598,472,0): 24, 10, 10, (598,473,0): 23, 9, 9, (598,474,0): 21, 7, 7, (598,475,0): 19, 5, 5, (598,476,0): 19, 5, 5, (598,477,0): 19, 5, 5, (598,478,0): 20, 6, 6, (598,479,0): 19, 7, 7, (598,480,0): 14, 5, 8, (598,481,0): 12, 6, 8, (598,482,0): 12, 6, 8, (598,483,0): 12, 6, 8, (598,484,0): 12, 6, 10, (598,485,0): 12, 6, 10, (598,486,0): 12, 6, 10, (598,487,0): 12, 6, 10, (598,488,0): 10, 3, 10, (598,489,0): 10, 3, 10, (598,490,0): 8, 1, 9, (598,491,0): 8, 1, 9, (598,492,0): 8, 1, 9, (598,493,0): 8, 1, 9, (598,494,0): 10, 2, 13, (598,495,0): 12, 2, 11, (598,496,0): 13, 2, 10, (598,497,0): 14, 3, 11, (598,498,0): 15, 4, 10, (598,499,0): 16, 5, 11, (598,500,0): 18, 5, 12, (598,501,0): 18, 6, 10, (598,502,0): 17, 5, 9, (598,503,0): 16, 4, 8, (598,504,0): 20, 5, 8, (598,505,0): 20, 5, 8, (598,506,0): 20, 4, 7, (598,507,0): 20, 4, 5, (598,508,0): 19, 3, 4, (598,509,0): 19, 3, 4, (598,510,0): 21, 2, 4, (598,511,0): 20, 1, 3, (598,512,0): 24, 4, 6, (598,513,0): 25, 5, 7, (598,514,0): 26, 6, 8, (598,515,0): 28, 8, 10, (598,516,0): 31, 11, 12, (598,517,0): 33, 13, 14, (598,518,0): 34, 14, 15, (598,519,0): 35, 15, 14, (598,520,0): 40, 20, 19, (598,521,0): 41, 21, 20, (598,522,0): 42, 23, 19, (598,523,0): 42, 23, 19, (598,524,0): 42, 23, 19, (598,525,0): 41, 22, 18, (598,526,0): 39, 20, 14, (598,527,0): 40, 19, 14, (598,528,0): 42, 16, 15, (598,529,0): 39, 13, 12, (598,530,0): 37, 11, 12, (598,531,0): 36, 10, 11, (598,532,0): 37, 13, 13, (598,533,0): 35, 14, 13, (598,534,0): 31, 11, 12, (598,535,0): 27, 9, 9, (598,536,0): 27, 11, 12, (598,537,0): 26, 10, 11, (598,538,0): 23, 9, 9, (598,539,0): 21, 7, 7, (598,540,0): 18, 6, 8, (598,541,0): 17, 7, 8, (598,542,0): 17, 7, 8, (598,543,0): 18, 8, 9, (598,544,0): 14, 3, 7, (598,545,0): 15, 3, 7, (598,546,0): 15, 3, 7, (598,547,0): 15, 3, 7, (598,548,0): 15, 3, 7, (598,549,0): 15, 3, 7, (598,550,0): 15, 3, 7, (598,551,0): 15, 3, 7, (598,552,0): 15, 3, 7, (598,553,0): 15, 3, 7, (598,554,0): 16, 4, 8, (598,555,0): 16, 4, 8, (598,556,0): 17, 5, 9, (598,557,0): 17, 5, 9, (598,558,0): 17, 5, 9, (598,559,0): 18, 6, 10, (598,560,0): 20, 8, 12, (598,561,0): 20, 8, 12, (598,562,0): 23, 8, 13, (598,563,0): 24, 9, 14, (598,564,0): 25, 10, 13, (598,565,0): 26, 11, 14, (598,566,0): 28, 12, 15, (598,567,0): 28, 12, 15, (598,568,0): 30, 11, 13, (598,569,0): 31, 12, 14, (598,570,0): 34, 16, 16, (598,571,0): 35, 17, 17, (598,572,0): 36, 16, 17, (598,573,0): 35, 15, 16, (598,574,0): 32, 12, 11, (598,575,0): 30, 12, 10, (598,576,0): 35, 17, 17, (598,577,0): 34, 18, 18, (598,578,0): 34, 18, 18, (598,579,0): 35, 19, 19, (598,580,0): 36, 20, 20, (598,581,0): 37, 21, 21, (598,582,0): 37, 21, 21, (598,583,0): 38, 22, 22, (598,584,0): 35, 19, 19, (598,585,0): 35, 19, 19, (598,586,0): 36, 20, 20, (598,587,0): 37, 21, 21, (598,588,0): 38, 22, 22, (598,589,0): 39, 23, 23, (598,590,0): 40, 24, 24, (598,591,0): 40, 24, 24, (598,592,0): 37, 22, 25, (598,593,0): 38, 23, 26, (598,594,0): 38, 23, 26, (598,595,0): 39, 24, 27, (598,596,0): 41, 26, 29, (598,597,0): 42, 27, 30, (598,598,0): 42, 27, 30, (598,599,0): 43, 28, 31, (599,0,0): 26, 54, 66, (599,1,0): 26, 54, 66, (599,2,0): 26, 54, 66, (599,3,0): 26, 54, 66, (599,4,0): 26, 54, 66, (599,5,0): 26, 54, 66, (599,6,0): 26, 54, 66, (599,7,0): 26, 54, 66, (599,8,0): 25, 53, 65, (599,9,0): 25, 53, 65, (599,10,0): 25, 53, 65, (599,11,0): 25, 53, 65, (599,12,0): 25, 53, 65, (599,13,0): 25, 53, 65, (599,14,0): 25, 53, 65, (599,15,0): 25, 53, 65, (599,16,0): 28, 56, 67, (599,17,0): 28, 56, 67, (599,18,0): 28, 56, 67, (599,19,0): 28, 56, 67, (599,20,0): 29, 56, 67, (599,21,0): 29, 56, 67, (599,22,0): 31, 55, 67, (599,23,0): 31, 55, 67, (599,24,0): 32, 56, 68, (599,25,0): 32, 56, 68, (599,26,0): 34, 56, 69, (599,27,0): 34, 56, 69, (599,28,0): 37, 56, 70, (599,29,0): 37, 56, 70, (599,30,0): 38, 57, 71, (599,31,0): 38, 57, 71, (599,32,0): 38, 56, 70, (599,33,0): 38, 56, 70, (599,34,0): 39, 55, 70, (599,35,0): 40, 56, 71, (599,36,0): 40, 56, 71, (599,37,0): 41, 57, 72, (599,38,0): 43, 56, 72, (599,39,0): 44, 57, 73, (599,40,0): 45, 57, 73, (599,41,0): 45, 57, 73, (599,42,0): 45, 57, 73, (599,43,0): 46, 58, 74, (599,44,0): 48, 57, 74, (599,45,0): 49, 58, 75, (599,46,0): 49, 58, 75, (599,47,0): 50, 59, 76, (599,48,0): 50, 59, 76, (599,49,0): 50, 59, 76, (599,50,0): 50, 59, 76, (599,51,0): 50, 59, 76, (599,52,0): 50, 59, 76, (599,53,0): 50, 59, 76, (599,54,0): 50, 59, 76, (599,55,0): 50, 59, 76, (599,56,0): 51, 60, 77, (599,57,0): 51, 60, 77, (599,58,0): 52, 61, 78, (599,59,0): 52, 61, 78, (599,60,0): 53, 62, 79, (599,61,0): 53, 62, 79, (599,62,0): 54, 63, 80, (599,63,0): 54, 63, 78, (599,64,0): 55, 62, 78, (599,65,0): 56, 62, 76, (599,66,0): 57, 63, 77, (599,67,0): 57, 63, 77, (599,68,0): 58, 64, 78, (599,69,0): 58, 64, 78, (599,70,0): 59, 65, 79, (599,71,0): 59, 65, 79, (599,72,0): 59, 65, 79, (599,73,0): 59, 65, 79, (599,74,0): 59, 65, 79, (599,75,0): 59, 65, 79, (599,76,0): 59, 65, 79, (599,77,0): 59, 65, 79, (599,78,0): 59, 65, 79, (599,79,0): 59, 65, 79, (599,80,0): 61, 65, 77, (599,81,0): 62, 64, 77, (599,82,0): 62, 64, 77, (599,83,0): 61, 65, 77, (599,84,0): 61, 65, 77, (599,85,0): 61, 65, 77, (599,86,0): 61, 65, 77, (599,87,0): 59, 65, 77, (599,88,0): 60, 66, 78, (599,89,0): 59, 67, 78, (599,90,0): 59, 67, 78, (599,91,0): 58, 66, 77, (599,92,0): 58, 66, 77, (599,93,0): 56, 66, 76, (599,94,0): 56, 66, 76, (599,95,0): 56, 66, 76, (599,96,0): 55, 63, 74, (599,97,0): 56, 62, 74, (599,98,0): 55, 61, 73, (599,99,0): 55, 61, 73, (599,100,0): 54, 60, 72, (599,101,0): 54, 60, 72, (599,102,0): 53, 59, 71, (599,103,0): 53, 59, 71, (599,104,0): 56, 62, 74, (599,105,0): 55, 61, 73, (599,106,0): 54, 60, 72, (599,107,0): 53, 59, 71, (599,108,0): 53, 59, 71, (599,109,0): 54, 60, 72, (599,110,0): 55, 61, 73, (599,111,0): 55, 63, 74, (599,112,0): 54, 62, 75, (599,113,0): 53, 63, 75, (599,114,0): 54, 64, 76, (599,115,0): 53, 65, 77, (599,116,0): 54, 66, 80, (599,117,0): 55, 67, 83, (599,118,0): 56, 68, 84, (599,119,0): 56, 67, 85, (599,120,0): 62, 73, 91, (599,121,0): 61, 74, 93, (599,122,0): 61, 74, 93, (599,123,0): 62, 74, 96, (599,124,0): 62, 74, 96, (599,125,0): 61, 76, 97, (599,126,0): 61, 76, 99, (599,127,0): 61, 76, 99, (599,128,0): 59, 74, 95, (599,129,0): 58, 75, 95, (599,130,0): 57, 73, 96, (599,131,0): 55, 73, 95, (599,132,0): 52, 72, 96, (599,133,0): 51, 73, 97, (599,134,0): 48, 72, 98, (599,135,0): 47, 73, 98, (599,136,0): 47, 72, 102, (599,137,0): 47, 72, 102, (599,138,0): 47, 70, 102, (599,139,0): 47, 70, 102, (599,140,0): 48, 68, 103, (599,141,0): 49, 67, 103, (599,142,0): 50, 66, 102, (599,143,0): 48, 66, 102, (599,144,0): 43, 67, 103, (599,145,0): 42, 68, 103, (599,146,0): 42, 68, 103, (599,147,0): 42, 68, 103, (599,148,0): 42, 68, 105, (599,149,0): 40, 68, 105, (599,150,0): 40, 68, 107, (599,151,0): 39, 69, 107, (599,152,0): 43, 73, 111, (599,153,0): 43, 73, 111, (599,154,0): 41, 73, 112, (599,155,0): 41, 73, 112, (599,156,0): 41, 73, 114, (599,157,0): 41, 73, 114, (599,158,0): 41, 73, 114, (599,159,0): 41, 72, 116, (599,160,0): 41, 72, 118, (599,161,0): 42, 73, 119, (599,162,0): 43, 74, 120, (599,163,0): 44, 75, 121, (599,164,0): 44, 75, 121, (599,165,0): 43, 74, 120, (599,166,0): 42, 73, 119, (599,167,0): 41, 72, 118, (599,168,0): 43, 74, 120, (599,169,0): 43, 74, 120, (599,170,0): 43, 74, 120, (599,171,0): 43, 74, 120, (599,172,0): 43, 74, 120, (599,173,0): 43, 74, 120, (599,174,0): 43, 74, 120, (599,175,0): 43, 74, 120, (599,176,0): 44, 75, 122, (599,177,0): 44, 75, 122, (599,178,0): 45, 76, 123, (599,179,0): 45, 76, 123, (599,180,0): 46, 77, 124, (599,181,0): 46, 77, 124, (599,182,0): 47, 78, 125, (599,183,0): 47, 78, 125, (599,184,0): 47, 78, 125, (599,185,0): 47, 78, 125, (599,186,0): 48, 79, 126, (599,187,0): 48, 79, 126, (599,188,0): 49, 80, 127, (599,189,0): 49, 80, 127, (599,190,0): 50, 81, 128, (599,191,0): 50, 81, 128, (599,192,0): 50, 80, 132, (599,193,0): 50, 80, 132, (599,194,0): 50, 80, 132, (599,195,0): 50, 80, 132, (599,196,0): 50, 80, 132, (599,197,0): 50, 80, 132, (599,198,0): 50, 80, 132, (599,199,0): 50, 80, 132, (599,200,0): 50, 80, 132, (599,201,0): 51, 81, 133, (599,202,0): 51, 81, 133, (599,203,0): 52, 82, 134, (599,204,0): 53, 83, 135, (599,205,0): 54, 84, 136, (599,206,0): 55, 85, 137, (599,207,0): 55, 86, 140, (599,208,0): 52, 82, 142, (599,209,0): 51, 83, 144, (599,210,0): 52, 84, 145, (599,211,0): 52, 84, 145, (599,212,0): 53, 85, 146, (599,213,0): 53, 85, 146, (599,214,0): 54, 86, 147, (599,215,0): 54, 86, 147, (599,216,0): 55, 87, 148, (599,217,0): 56, 88, 149, (599,218,0): 56, 88, 149, (599,219,0): 57, 89, 150, (599,220,0): 57, 89, 150, (599,221,0): 58, 90, 151, (599,222,0): 58, 90, 151, (599,223,0): 58, 90, 151, (599,224,0): 56, 90, 151, (599,225,0): 56, 92, 152, (599,226,0): 56, 92, 152, (599,227,0): 57, 93, 153, (599,228,0): 57, 93, 155, (599,229,0): 58, 94, 156, (599,230,0): 58, 94, 156, (599,231,0): 58, 94, 156, (599,232,0): 60, 95, 159, (599,233,0): 61, 96, 160, (599,234,0): 61, 96, 162, (599,235,0): 62, 97, 163, (599,236,0): 63, 98, 164, (599,237,0): 64, 99, 165, (599,238,0): 65, 100, 168, (599,239,0): 66, 101, 169, (599,240,0): 66, 101, 169, (599,241,0): 66, 101, 167, (599,242,0): 67, 102, 170, (599,243,0): 67, 102, 168, (599,244,0): 68, 103, 171, (599,245,0): 69, 102, 169, (599,246,0): 70, 103, 172, (599,247,0): 70, 103, 170, (599,248,0): 72, 102, 172, (599,249,0): 72, 103, 170, (599,250,0): 73, 103, 173, (599,251,0): 74, 103, 171, (599,252,0): 75, 104, 174, (599,253,0): 75, 104, 172, (599,254,0): 76, 105, 175, (599,255,0): 77, 104, 171, (599,256,0): 73, 98, 162, (599,257,0): 75, 99, 161, (599,258,0): 78, 102, 164, (599,259,0): 85, 107, 167, (599,260,0): 89, 108, 167, (599,261,0): 92, 105, 160, (599,262,0): 94, 98, 146, (599,263,0): 93, 91, 131, (599,264,0): 94, 83, 117, (599,265,0): 88, 72, 98, (599,266,0): 78, 57, 76, (599,267,0): 68, 44, 58, (599,268,0): 61, 37, 50, (599,269,0): 57, 36, 45, (599,270,0): 56, 35, 44, (599,271,0): 55, 34, 43, (599,272,0): 47, 24, 32, (599,273,0): 48, 22, 31, (599,274,0): 45, 22, 30, (599,275,0): 42, 19, 27, (599,276,0): 39, 18, 27, (599,277,0): 36, 15, 24, (599,278,0): 34, 14, 23, (599,279,0): 31, 14, 22, (599,280,0): 28, 11, 21, (599,281,0): 27, 11, 21, (599,282,0): 24, 11, 21, (599,283,0): 24, 11, 21, (599,284,0): 22, 10, 20, (599,285,0): 22, 10, 20, (599,286,0): 20, 10, 21, (599,287,0): 20, 10, 21, (599,288,0): 19, 11, 24, (599,289,0): 18, 10, 23, (599,290,0): 17, 9, 22, (599,291,0): 16, 8, 21, (599,292,0): 14, 6, 19, (599,293,0): 13, 5, 18, (599,294,0): 12, 4, 17, (599,295,0): 11, 3, 16, (599,296,0): 10, 2, 15, (599,297,0): 10, 2, 15, (599,298,0): 11, 3, 16, (599,299,0): 12, 4, 17, (599,300,0): 13, 5, 18, (599,301,0): 13, 5, 18, (599,302,0): 14, 6, 19, (599,303,0): 14, 6, 17, (599,304,0): 12, 4, 15, (599,305,0): 12, 5, 13, (599,306,0): 12, 5, 13, (599,307,0): 12, 5, 13, (599,308,0): 12, 5, 13, (599,309,0): 12, 5, 13, (599,310,0): 12, 5, 13, (599,311,0): 12, 5, 13, (599,312,0): 11, 4, 12, (599,313,0): 11, 4, 12, (599,314,0): 11, 4, 12, (599,315,0): 11, 4, 12, (599,316,0): 11, 4, 12, (599,317,0): 11, 4, 12, (599,318,0): 11, 4, 12, (599,319,0): 10, 5, 12, (599,320,0): 11, 6, 13, (599,321,0): 9, 6, 13, (599,322,0): 11, 6, 13, (599,323,0): 11, 6, 13, (599,324,0): 11, 6, 13, (599,325,0): 11, 6, 13, (599,326,0): 12, 5, 13, (599,327,0): 12, 5, 13, (599,328,0): 17, 7, 16, (599,329,0): 17, 7, 16, (599,330,0): 17, 7, 16, (599,331,0): 17, 7, 16, (599,332,0): 18, 6, 16, (599,333,0): 18, 6, 16, (599,334,0): 18, 6, 16, (599,335,0): 18, 6, 16, (599,336,0): 23, 7, 17, (599,337,0): 23, 7, 17, (599,338,0): 20, 7, 16, (599,339,0): 18, 7, 15, (599,340,0): 16, 6, 14, (599,341,0): 15, 5, 13, (599,342,0): 13, 6, 13, (599,343,0): 12, 7, 13, (599,344,0): 11, 6, 12, (599,345,0): 13, 6, 13, (599,346,0): 15, 5, 13, (599,347,0): 16, 6, 14, (599,348,0): 19, 8, 16, (599,349,0): 21, 8, 17, (599,350,0): 23, 7, 17, (599,351,0): 24, 9, 16, (599,352,0): 21, 9, 13, (599,353,0): 21, 9, 11, (599,354,0): 22, 10, 12, (599,355,0): 23, 11, 13, (599,356,0): 24, 12, 14, (599,357,0): 25, 13, 15, (599,358,0): 25, 13, 15, (599,359,0): 25, 13, 15, (599,360,0): 23, 11, 13, (599,361,0): 23, 11, 13, (599,362,0): 23, 11, 13, (599,363,0): 22, 10, 12, (599,364,0): 22, 10, 12, (599,365,0): 21, 9, 11, (599,366,0): 21, 9, 11, (599,367,0): 20, 8, 8, (599,368,0): 22, 10, 10, (599,369,0): 22, 11, 9, (599,370,0): 22, 10, 10, (599,371,0): 22, 11, 9, (599,372,0): 21, 9, 9, (599,373,0): 21, 10, 8, (599,374,0): 21, 9, 9, (599,375,0): 21, 10, 8, (599,376,0): 17, 5, 5, (599,377,0): 18, 7, 5, (599,378,0): 20, 8, 8, (599,379,0): 22, 11, 9, (599,380,0): 23, 11, 11, (599,381,0): 24, 13, 11, (599,382,0): 24, 12, 12, (599,383,0): 26, 12, 11, (599,384,0): 27, 9, 7, (599,385,0): 28, 10, 8, (599,386,0): 29, 11, 9, (599,387,0): 30, 12, 10, (599,388,0): 30, 12, 10, (599,389,0): 29, 11, 9, (599,390,0): 28, 10, 8, (599,391,0): 27, 9, 7, (599,392,0): 30, 12, 10, (599,393,0): 30, 12, 10, (599,394,0): 30, 12, 10, (599,395,0): 30, 12, 10, (599,396,0): 30, 12, 10, (599,397,0): 30, 12, 10, (599,398,0): 30, 12, 10, (599,399,0): 30, 12, 10, (599,400,0): 32, 13, 9, (599,401,0): 29, 10, 6, (599,402,0): 27, 8, 4, (599,403,0): 28, 9, 5, (599,404,0): 30, 12, 10, (599,405,0): 31, 13, 11, (599,406,0): 29, 11, 9, (599,407,0): 26, 8, 6, (599,408,0): 27, 11, 11, (599,409,0): 27, 11, 11, (599,410,0): 25, 11, 11, (599,411,0): 25, 11, 11, (599,412,0): 24, 10, 10, (599,413,0): 23, 9, 9, (599,414,0): 20, 8, 10, (599,415,0): 22, 8, 8, (599,416,0): 28, 12, 13, (599,417,0): 30, 12, 12, (599,418,0): 31, 13, 13, (599,419,0): 31, 13, 13, (599,420,0): 30, 14, 14, (599,421,0): 30, 14, 14, (599,422,0): 31, 15, 15, (599,423,0): 31, 15, 15, (599,424,0): 31, 15, 15, (599,425,0): 31, 15, 15, (599,426,0): 32, 16, 16, (599,427,0): 32, 16, 16, (599,428,0): 33, 17, 17, (599,429,0): 33, 17, 17, (599,430,0): 34, 18, 18, (599,431,0): 33, 19, 18, (599,432,0): 35, 21, 21, (599,433,0): 35, 21, 21, (599,434,0): 34, 20, 20, (599,435,0): 33, 19, 19, (599,436,0): 32, 18, 18, (599,437,0): 32, 18, 18, (599,438,0): 31, 17, 17, (599,439,0): 31, 17, 17, (599,440,0): 30, 16, 16, (599,441,0): 30, 16, 16, (599,442,0): 29, 15, 15, (599,443,0): 28, 14, 14, (599,444,0): 27, 13, 13, (599,445,0): 26, 12, 12, (599,446,0): 25, 11, 11, (599,447,0): 24, 10, 10, (599,448,0): 24, 10, 10, (599,449,0): 29, 15, 15, (599,450,0): 35, 21, 21, (599,451,0): 37, 23, 23, (599,452,0): 35, 21, 21, (599,453,0): 34, 20, 20, (599,454,0): 34, 20, 20, (599,455,0): 35, 21, 21, (599,456,0): 27, 13, 13, (599,457,0): 27, 13, 13, (599,458,0): 27, 13, 13, (599,459,0): 27, 13, 13, (599,460,0): 27, 13, 13, (599,461,0): 27, 13, 13, (599,462,0): 26, 12, 12, (599,463,0): 26, 12, 12, (599,464,0): 22, 8, 8, (599,465,0): 23, 9, 9, (599,466,0): 25, 11, 11, (599,467,0): 26, 12, 12, (599,468,0): 27, 13, 13, (599,469,0): 27, 13, 13, (599,470,0): 27, 13, 13, (599,471,0): 26, 12, 12, (599,472,0): 25, 11, 11, (599,473,0): 24, 10, 10, (599,474,0): 21, 7, 7, (599,475,0): 19, 5, 5, (599,476,0): 18, 4, 4, (599,477,0): 19, 5, 5, (599,478,0): 20, 6, 6, (599,479,0): 19, 7, 7, (599,480,0): 13, 4, 7, (599,481,0): 11, 5, 7, (599,482,0): 12, 6, 8, (599,483,0): 12, 6, 8, (599,484,0): 12, 6, 10, (599,485,0): 12, 6, 10, (599,486,0): 13, 7, 11, (599,487,0): 13, 7, 11, (599,488,0): 10, 3, 10, (599,489,0): 10, 3, 10, (599,490,0): 8, 1, 9, (599,491,0): 8, 1, 9, (599,492,0): 8, 1, 9, (599,493,0): 8, 1, 9, (599,494,0): 10, 2, 13, (599,495,0): 10, 3, 11, (599,496,0): 11, 1, 10, (599,497,0): 13, 2, 10, (599,498,0): 15, 4, 10, (599,499,0): 16, 5, 11, (599,500,0): 18, 5, 12, (599,501,0): 17, 4, 11, (599,502,0): 17, 5, 9, (599,503,0): 16, 4, 8, (599,504,0): 21, 6, 11, (599,505,0): 21, 6, 9, (599,506,0): 21, 5, 8, (599,507,0): 20, 4, 7, (599,508,0): 19, 3, 4, (599,509,0): 18, 2, 3, (599,510,0): 19, 0, 2, (599,511,0): 18, 0, 1, (599,512,0): 23, 3, 5, (599,513,0): 24, 4, 6, (599,514,0): 25, 5, 7, (599,515,0): 27, 7, 9, (599,516,0): 30, 10, 12, (599,517,0): 32, 12, 13, (599,518,0): 33, 13, 14, (599,519,0): 34, 14, 15, (599,520,0): 41, 21, 22, (599,521,0): 41, 21, 20, (599,522,0): 42, 22, 21, (599,523,0): 43, 24, 20, (599,524,0): 42, 23, 19, (599,525,0): 41, 22, 18, (599,526,0): 40, 21, 17, (599,527,0): 40, 19, 14, (599,528,0): 42, 16, 15, (599,529,0): 42, 14, 13, (599,530,0): 39, 10, 12, (599,531,0): 39, 10, 12, (599,532,0): 38, 12, 13, (599,533,0): 37, 13, 13, (599,534,0): 33, 11, 13, (599,535,0): 29, 9, 10, (599,536,0): 30, 11, 13, (599,537,0): 26, 10, 11, (599,538,0): 23, 9, 9, (599,539,0): 21, 7, 7, (599,540,0): 18, 6, 8, (599,541,0): 17, 7, 8, (599,542,0): 18, 8, 9, (599,543,0): 19, 9, 10, (599,544,0): 15, 3, 7, (599,545,0): 15, 3, 7, (599,546,0): 15, 3, 7, (599,547,0): 15, 3, 7, (599,548,0): 15, 3, 7, (599,549,0): 15, 3, 7, (599,550,0): 15, 3, 7, (599,551,0): 15, 3, 7, (599,552,0): 15, 3, 7, (599,553,0): 15, 3, 7, (599,554,0): 15, 3, 7, (599,555,0): 16, 4, 8, (599,556,0): 16, 4, 8, (599,557,0): 17, 5, 9, (599,558,0): 17, 5, 9, (599,559,0): 18, 6, 10, (599,560,0): 21, 9, 13, (599,561,0): 21, 9, 13, (599,562,0): 24, 9, 14, (599,563,0): 25, 10, 15, (599,564,0): 26, 11, 14, (599,565,0): 27, 12, 15, (599,566,0): 29, 13, 16, (599,567,0): 29, 13, 16, (599,568,0): 29, 10, 12, (599,569,0): 31, 12, 14, (599,570,0): 33, 15, 15, (599,571,0): 34, 16, 16, (599,572,0): 35, 15, 16, (599,573,0): 34, 14, 15, (599,574,0): 32, 12, 11, (599,575,0): 29, 11, 9, (599,576,0): 36, 18, 18, (599,577,0): 34, 18, 18, (599,578,0): 34, 18, 18, (599,579,0): 35, 19, 19, (599,580,0): 36, 20, 20, (599,581,0): 37, 21, 21, (599,582,0): 37, 21, 21, (599,583,0): 37, 21, 21, (599,584,0): 33, 17, 17, (599,585,0): 34, 18, 18, (599,586,0): 35, 19, 19, (599,587,0): 36, 20, 20, (599,588,0): 38, 22, 22, (599,589,0): 40, 24, 24, (599,590,0): 41, 25, 25, (599,591,0): 41, 25, 25, (599,592,0): 37, 23, 23, (599,593,0): 37, 22, 25, (599,594,0): 38, 23, 26, (599,595,0): 39, 24, 27, (599,596,0): 40, 25, 28, (599,597,0): 41, 26, 29, (599,598,0): 42, 27, 30, (599,599,0): 42, 27, 30, (600,0,0): 24, 52, 64, (600,1,0): 24, 52, 64, (600,2,0): 24, 52, 64, (600,3,0): 24, 52, 64, (600,4,0): 24, 52, 64, (600,5,0): 24, 52, 64, (600,6,0): 24, 52, 64, (600,7,0): 24, 52, 64, (600,8,0): 23, 51, 63, (600,9,0): 23, 51, 63, (600,10,0): 24, 52, 64, (600,11,0): 24, 52, 64, (600,12,0): 25, 53, 65, (600,13,0): 25, 53, 65, (600,14,0): 26, 54, 66, (600,15,0): 26, 54, 66, (600,16,0): 26, 54, 65, (600,17,0): 26, 54, 65, (600,18,0): 27, 55, 66, (600,19,0): 27, 55, 66, (600,20,0): 29, 56, 67, (600,21,0): 29, 56, 67, (600,22,0): 32, 56, 68, (600,23,0): 32, 56, 68, (600,24,0): 32, 56, 68, (600,25,0): 32, 56, 68, (600,26,0): 33, 55, 68, (600,27,0): 33, 55, 68, (600,28,0): 35, 54, 68, (600,29,0): 35, 54, 68, (600,30,0): 35, 54, 68, (600,31,0): 35, 54, 68, (600,32,0): 37, 55, 69, (600,33,0): 37, 55, 69, (600,34,0): 37, 55, 69, (600,35,0): 37, 55, 69, (600,36,0): 37, 55, 69, (600,37,0): 37, 55, 69, (600,38,0): 38, 54, 69, (600,39,0): 38, 54, 69, (600,40,0): 40, 53, 69, (600,41,0): 41, 54, 70, (600,42,0): 44, 56, 72, (600,43,0): 46, 58, 74, (600,44,0): 47, 59, 75, (600,45,0): 46, 58, 74, (600,46,0): 45, 57, 73, (600,47,0): 44, 56, 72, (600,48,0): 49, 61, 77, (600,49,0): 46, 58, 74, (600,50,0): 43, 55, 71, (600,51,0): 43, 55, 71, (600,52,0): 46, 58, 74, (600,53,0): 48, 60, 76, (600,54,0): 47, 59, 75, (600,55,0): 45, 57, 73, (600,56,0): 51, 63, 79, (600,57,0): 50, 62, 78, (600,58,0): 50, 62, 78, (600,59,0): 49, 61, 77, (600,60,0): 50, 62, 78, (600,61,0): 51, 63, 79, (600,62,0): 53, 65, 81, (600,63,0): 56, 65, 80, (600,64,0): 53, 60, 76, (600,65,0): 53, 61, 74, (600,66,0): 54, 62, 75, (600,67,0): 54, 62, 75, (600,68,0): 55, 63, 76, (600,69,0): 56, 64, 77, (600,70,0): 57, 65, 78, (600,71,0): 57, 65, 78, (600,72,0): 55, 63, 76, (600,73,0): 55, 63, 76, (600,74,0): 56, 64, 77, (600,75,0): 56, 64, 77, (600,76,0): 57, 65, 78, (600,77,0): 57, 65, 78, (600,78,0): 58, 66, 79, (600,79,0): 59, 65, 79, (600,80,0): 57, 60, 75, (600,81,0): 58, 61, 76, (600,82,0): 58, 61, 76, (600,83,0): 57, 63, 77, (600,84,0): 58, 64, 78, (600,85,0): 59, 65, 79, (600,86,0): 59, 65, 79, (600,87,0): 59, 67, 80, (600,88,0): 56, 64, 77, (600,89,0): 55, 65, 77, (600,90,0): 54, 64, 76, (600,91,0): 53, 63, 75, (600,92,0): 53, 63, 75, (600,93,0): 52, 64, 76, (600,94,0): 53, 65, 77, (600,95,0): 55, 65, 77, (600,96,0): 52, 60, 73, (600,97,0): 52, 60, 73, (600,98,0): 52, 60, 73, (600,99,0): 52, 60, 73, (600,100,0): 52, 60, 73, (600,101,0): 52, 60, 73, (600,102,0): 52, 60, 73, (600,103,0): 52, 60, 73, (600,104,0): 55, 63, 76, (600,105,0): 55, 63, 76, (600,106,0): 55, 63, 76, (600,107,0): 55, 63, 76, (600,108,0): 55, 63, 76, (600,109,0): 55, 63, 76, (600,110,0): 55, 63, 76, (600,111,0): 55, 63, 76, (600,112,0): 57, 69, 83, (600,113,0): 55, 69, 82, (600,114,0): 54, 68, 81, (600,115,0): 53, 67, 80, (600,116,0): 53, 66, 82, (600,117,0): 55, 68, 84, (600,118,0): 57, 70, 87, (600,119,0): 57, 72, 91, (600,120,0): 56, 71, 90, (600,121,0): 56, 71, 92, (600,122,0): 57, 72, 95, (600,123,0): 56, 72, 95, (600,124,0): 57, 73, 98, (600,125,0): 57, 73, 98, (600,126,0): 58, 74, 99, (600,127,0): 57, 75, 99, (600,128,0): 54, 72, 96, (600,129,0): 52, 72, 96, (600,130,0): 52, 72, 96, (600,131,0): 50, 72, 96, (600,132,0): 48, 72, 96, (600,133,0): 46, 72, 97, (600,134,0): 46, 72, 97, (600,135,0): 44, 72, 96, (600,136,0): 46, 73, 102, (600,137,0): 45, 72, 101, (600,138,0): 46, 71, 102, (600,139,0): 46, 69, 101, (600,140,0): 48, 68, 103, (600,141,0): 47, 67, 104, (600,142,0): 48, 66, 104, (600,143,0): 47, 67, 104, (600,144,0): 44, 68, 106, (600,145,0): 43, 69, 106, (600,146,0): 41, 69, 106, (600,147,0): 41, 69, 106, (600,148,0): 41, 69, 108, (600,149,0): 41, 69, 108, (600,150,0): 41, 69, 108, (600,151,0): 40, 70, 108, (600,152,0): 41, 70, 110, (600,153,0): 40, 72, 111, (600,154,0): 40, 72, 113, (600,155,0): 41, 73, 114, (600,156,0): 40, 73, 114, (600,157,0): 41, 74, 115, (600,158,0): 41, 74, 117, (600,159,0): 41, 74, 117, (600,160,0): 41, 74, 119, (600,161,0): 41, 74, 119, (600,162,0): 39, 72, 117, (600,163,0): 39, 72, 117, (600,164,0): 39, 72, 117, (600,165,0): 39, 72, 117, (600,166,0): 41, 74, 119, (600,167,0): 41, 74, 119, (600,168,0): 40, 73, 118, (600,169,0): 40, 73, 118, (600,170,0): 41, 74, 119, (600,171,0): 41, 74, 119, (600,172,0): 42, 75, 120, (600,173,0): 42, 75, 120, (600,174,0): 43, 76, 121, (600,175,0): 43, 76, 121, (600,176,0): 46, 77, 124, (600,177,0): 46, 77, 124, (600,178,0): 46, 77, 124, (600,179,0): 45, 76, 123, (600,180,0): 45, 76, 123, (600,181,0): 45, 76, 123, (600,182,0): 45, 76, 123, (600,183,0): 45, 76, 123, (600,184,0): 46, 77, 124, (600,185,0): 46, 77, 124, (600,186,0): 46, 77, 124, (600,187,0): 47, 78, 125, (600,188,0): 47, 78, 125, (600,189,0): 48, 79, 126, (600,190,0): 48, 79, 126, (600,191,0): 48, 79, 126, (600,192,0): 46, 76, 128, (600,193,0): 47, 77, 129, (600,194,0): 47, 77, 129, (600,195,0): 48, 78, 130, (600,196,0): 49, 79, 131, (600,197,0): 50, 80, 132, (600,198,0): 50, 80, 132, (600,199,0): 50, 80, 132, (600,200,0): 50, 80, 132, (600,201,0): 50, 80, 132, (600,202,0): 51, 81, 133, (600,203,0): 51, 81, 133, (600,204,0): 52, 82, 134, (600,205,0): 52, 82, 134, (600,206,0): 53, 83, 135, (600,207,0): 52, 83, 137, (600,208,0): 54, 84, 144, (600,209,0): 53, 85, 146, (600,210,0): 53, 85, 146, (600,211,0): 54, 86, 147, (600,212,0): 54, 86, 147, (600,213,0): 55, 87, 148, (600,214,0): 55, 87, 148, (600,215,0): 55, 87, 148, (600,216,0): 56, 88, 149, (600,217,0): 56, 88, 149, (600,218,0): 56, 88, 149, (600,219,0): 57, 89, 150, (600,220,0): 57, 89, 150, (600,221,0): 58, 90, 151, (600,222,0): 58, 90, 151, (600,223,0): 58, 90, 151, (600,224,0): 59, 94, 152, (600,225,0): 59, 94, 152, (600,226,0): 59, 94, 152, (600,227,0): 59, 94, 152, (600,228,0): 59, 93, 154, (600,229,0): 59, 93, 154, (600,230,0): 59, 93, 156, (600,231,0): 59, 93, 156, (600,232,0): 61, 95, 158, (600,233,0): 60, 94, 157, (600,234,0): 60, 94, 158, (600,235,0): 59, 93, 157, (600,236,0): 60, 93, 160, (600,237,0): 61, 94, 161, (600,238,0): 63, 96, 163, (600,239,0): 64, 97, 164, (600,240,0): 64, 97, 164, (600,241,0): 64, 98, 162, (600,242,0): 65, 98, 165, (600,243,0): 65, 99, 163, (600,244,0): 66, 99, 166, (600,245,0): 68, 99, 164, (600,246,0): 69, 100, 167, (600,247,0): 69, 100, 165, (600,248,0): 70, 99, 167, (600,249,0): 70, 99, 165, (600,250,0): 71, 100, 168, (600,251,0): 73, 100, 167, (600,252,0): 74, 101, 170, (600,253,0): 75, 102, 169, (600,254,0): 76, 103, 172, (600,255,0): 78, 103, 169, (600,256,0): 81, 102, 165, (600,257,0): 80, 102, 162, (600,258,0): 80, 102, 162, (600,259,0): 83, 103, 162, (600,260,0): 88, 104, 163, (600,261,0): 91, 102, 156, (600,262,0): 92, 95, 146, (600,263,0): 94, 91, 134, (600,264,0): 94, 82, 118, (600,265,0): 88, 72, 99, (600,266,0): 80, 58, 79, (600,267,0): 69, 46, 62, (600,268,0): 63, 39, 52, (600,269,0): 57, 36, 45, (600,270,0): 54, 33, 42, (600,271,0): 51, 30, 39, (600,272,0): 47, 24, 32, (600,273,0): 48, 22, 31, (600,274,0): 44, 21, 29, (600,275,0): 42, 19, 27, (600,276,0): 39, 18, 27, (600,277,0): 39, 18, 27, (600,278,0): 38, 18, 27, (600,279,0): 36, 19, 27, (600,280,0): 29, 12, 22, (600,281,0): 27, 11, 21, (600,282,0): 23, 10, 20, (600,283,0): 21, 8, 18, (600,284,0): 20, 8, 18, (600,285,0): 21, 9, 19, (600,286,0): 22, 12, 23, (600,287,0): 23, 13, 24, (600,288,0): 16, 8, 21, (600,289,0): 16, 8, 21, (600,290,0): 16, 8, 21, (600,291,0): 15, 7, 20, (600,292,0): 15, 7, 20, (600,293,0): 14, 6, 19, (600,294,0): 14, 6, 19, (600,295,0): 13, 5, 18, (600,296,0): 15, 7, 20, (600,297,0): 14, 6, 19, (600,298,0): 12, 4, 17, (600,299,0): 10, 2, 15, (600,300,0): 10, 2, 15, (600,301,0): 10, 2, 15, (600,302,0): 12, 4, 17, (600,303,0): 13, 5, 16, (600,304,0): 12, 4, 15, (600,305,0): 12, 5, 13, (600,306,0): 12, 5, 13, (600,307,0): 12, 5, 13, (600,308,0): 12, 5, 13, (600,309,0): 12, 5, 13, (600,310,0): 12, 5, 13, (600,311,0): 12, 5, 13, (600,312,0): 11, 4, 12, (600,313,0): 11, 4, 12, (600,314,0): 11, 4, 12, (600,315,0): 11, 4, 12, (600,316,0): 11, 4, 12, (600,317,0): 11, 4, 12, (600,318,0): 11, 4, 12, (600,319,0): 10, 5, 12, (600,320,0): 8, 3, 10, (600,321,0): 6, 3, 10, (600,322,0): 9, 4, 11, (600,323,0): 9, 4, 11, (600,324,0): 10, 5, 12, (600,325,0): 10, 5, 12, (600,326,0): 12, 5, 13, (600,327,0): 12, 5, 13, (600,328,0): 15, 5, 14, (600,329,0): 16, 6, 15, (600,330,0): 16, 6, 15, (600,331,0): 17, 7, 16, (600,332,0): 18, 6, 16, (600,333,0): 19, 7, 17, (600,334,0): 19, 7, 17, (600,335,0): 19, 7, 17, (600,336,0): 21, 5, 15, (600,337,0): 23, 8, 15, (600,338,0): 22, 9, 16, (600,339,0): 20, 9, 15, (600,340,0): 17, 8, 13, (600,341,0): 16, 7, 12, (600,342,0): 16, 10, 14, (600,343,0): 18, 12, 16, (600,344,0): 12, 6, 10, (600,345,0): 13, 7, 11, (600,346,0): 16, 7, 12, (600,347,0): 17, 8, 13, (600,348,0): 19, 8, 14, (600,349,0): 21, 8, 15, (600,350,0): 23, 8, 15, (600,351,0): 24, 9, 14, (600,352,0): 23, 8, 11, (600,353,0): 24, 10, 10, (600,354,0): 25, 11, 11, (600,355,0): 27, 13, 13, (600,356,0): 27, 13, 13, (600,357,0): 27, 13, 13, (600,358,0): 26, 12, 12, (600,359,0): 26, 12, 12, (600,360,0): 27, 13, 13, (600,361,0): 26, 12, 12, (600,362,0): 26, 12, 12, (600,363,0): 25, 11, 11, (600,364,0): 24, 10, 10, (600,365,0): 23, 9, 9, (600,366,0): 23, 9, 9, (600,367,0): 22, 8, 8, (600,368,0): 27, 13, 12, (600,369,0): 28, 14, 11, (600,370,0): 29, 15, 14, (600,371,0): 29, 15, 12, (600,372,0): 28, 14, 13, (600,373,0): 27, 13, 10, (600,374,0): 26, 12, 11, (600,375,0): 25, 11, 8, (600,376,0): 27, 13, 12, (600,377,0): 27, 13, 10, (600,378,0): 27, 13, 12, (600,379,0): 27, 13, 10, (600,380,0): 27, 13, 12, (600,381,0): 27, 13, 10, (600,382,0): 27, 13, 12, (600,383,0): 27, 13, 10, (600,384,0): 31, 13, 11, (600,385,0): 32, 13, 9, (600,386,0): 31, 12, 8, (600,387,0): 30, 11, 7, (600,388,0): 29, 10, 6, (600,389,0): 28, 9, 5, (600,390,0): 28, 9, 5, (600,391,0): 28, 9, 5, (600,392,0): 31, 12, 8, (600,393,0): 31, 12, 8, (600,394,0): 30, 11, 7, (600,395,0): 30, 11, 7, (600,396,0): 29, 10, 6, (600,397,0): 29, 10, 6, (600,398,0): 28, 9, 5, (600,399,0): 28, 9, 5, (600,400,0): 30, 11, 7, (600,401,0): 30, 11, 7, (600,402,0): 30, 11, 7, (600,403,0): 31, 12, 8, (600,404,0): 30, 12, 10, (600,405,0): 30, 12, 10, (600,406,0): 31, 13, 11, (600,407,0): 31, 13, 11, (600,408,0): 25, 9, 9, (600,409,0): 25, 9, 9, (600,410,0): 24, 10, 10, (600,411,0): 24, 10, 10, (600,412,0): 24, 10, 10, (600,413,0): 24, 10, 10, (600,414,0): 22, 10, 12, (600,415,0): 22, 10, 10, (600,416,0): 26, 12, 12, (600,417,0): 27, 11, 11, (600,418,0): 28, 12, 12, (600,419,0): 28, 12, 12, (600,420,0): 28, 12, 12, (600,421,0): 28, 12, 12, (600,422,0): 28, 12, 12, (600,423,0): 28, 12, 12, (600,424,0): 32, 16, 16, (600,425,0): 32, 16, 16, (600,426,0): 32, 16, 16, (600,427,0): 32, 16, 16, (600,428,0): 34, 16, 16, (600,429,0): 34, 16, 16, (600,430,0): 34, 16, 16, (600,431,0): 32, 16, 16, (600,432,0): 31, 17, 17, (600,433,0): 31, 17, 17, (600,434,0): 31, 17, 17, (600,435,0): 30, 16, 16, (600,436,0): 30, 16, 16, (600,437,0): 29, 15, 15, (600,438,0): 29, 15, 15, (600,439,0): 29, 15, 15, (600,440,0): 25, 11, 11, (600,441,0): 25, 11, 11, (600,442,0): 26, 12, 12, (600,443,0): 26, 12, 12, (600,444,0): 26, 12, 12, (600,445,0): 26, 12, 12, (600,446,0): 25, 11, 11, (600,447,0): 25, 11, 11, (600,448,0): 29, 15, 15, (600,449,0): 29, 15, 15, (600,450,0): 30, 16, 16, (600,451,0): 31, 17, 17, (600,452,0): 32, 18, 18, (600,453,0): 33, 19, 19, (600,454,0): 34, 20, 20, (600,455,0): 34, 20, 20, (600,456,0): 35, 21, 21, (600,457,0): 32, 18, 18, (600,458,0): 28, 14, 14, (600,459,0): 25, 11, 11, (600,460,0): 24, 10, 10, (600,461,0): 26, 12, 12, (600,462,0): 29, 15, 15, (600,463,0): 31, 17, 17, (600,464,0): 25, 11, 11, (600,465,0): 26, 12, 12, (600,466,0): 27, 13, 13, (600,467,0): 27, 13, 13, (600,468,0): 27, 13, 13, (600,469,0): 26, 12, 12, (600,470,0): 25, 11, 11, (600,471,0): 24, 10, 10, (600,472,0): 23, 9, 9, (600,473,0): 22, 8, 8, (600,474,0): 22, 8, 8, (600,475,0): 21, 7, 7, (600,476,0): 21, 7, 7, (600,477,0): 20, 6, 6, (600,478,0): 20, 6, 6, (600,479,0): 18, 6, 6, (600,480,0): 12, 3, 6, (600,481,0): 10, 4, 6, (600,482,0): 10, 4, 6, (600,483,0): 10, 4, 6, (600,484,0): 11, 5, 9, (600,485,0): 11, 5, 9, (600,486,0): 11, 5, 9, (600,487,0): 11, 5, 9, (600,488,0): 9, 2, 9, (600,489,0): 9, 2, 9, (600,490,0): 9, 2, 10, (600,491,0): 9, 2, 10, (600,492,0): 9, 2, 10, (600,493,0): 9, 2, 10, (600,494,0): 9, 1, 12, (600,495,0): 9, 2, 10, (600,496,0): 11, 1, 10, (600,497,0): 12, 2, 10, (600,498,0): 14, 3, 11, (600,499,0): 16, 5, 13, (600,500,0): 16, 5, 11, (600,501,0): 14, 3, 9, (600,502,0): 14, 1, 8, (600,503,0): 13, 1, 5, (600,504,0): 19, 4, 9, (600,505,0): 19, 4, 9, (600,506,0): 19, 4, 7, (600,507,0): 19, 4, 7, (600,508,0): 20, 4, 7, (600,509,0): 20, 4, 7, (600,510,0): 20, 4, 5, (600,511,0): 20, 4, 5, (600,512,0): 26, 7, 11, (600,513,0): 25, 6, 10, (600,514,0): 24, 5, 9, (600,515,0): 23, 4, 6, (600,516,0): 24, 5, 7, (600,517,0): 25, 6, 8, (600,518,0): 27, 8, 10, (600,519,0): 29, 11, 11, (600,520,0): 34, 16, 16, (600,521,0): 36, 18, 16, (600,522,0): 38, 20, 18, (600,523,0): 40, 22, 20, (600,524,0): 41, 23, 21, (600,525,0): 41, 23, 19, (600,526,0): 40, 22, 18, (600,527,0): 41, 20, 17, (600,528,0): 41, 16, 12, (600,529,0): 43, 13, 11, (600,530,0): 42, 14, 13, (600,531,0): 41, 13, 12, (600,532,0): 38, 12, 11, (600,533,0): 36, 12, 10, (600,534,0): 33, 12, 11, (600,535,0): 31, 11, 10, (600,536,0): 30, 12, 12, (600,537,0): 27, 11, 11, (600,538,0): 26, 12, 11, (600,539,0): 25, 11, 10, (600,540,0): 22, 10, 10, (600,541,0): 20, 10, 9, (600,542,0): 19, 9, 8, (600,543,0): 18, 8, 9, (600,544,0): 14, 2, 6, (600,545,0): 16, 1, 6, (600,546,0): 16, 1, 6, (600,547,0): 17, 2, 7, (600,548,0): 17, 2, 7, (600,549,0): 17, 2, 7, (600,550,0): 17, 2, 7, (600,551,0): 17, 2, 7, (600,552,0): 14, 0, 4, (600,553,0): 15, 0, 5, (600,554,0): 16, 1, 6, (600,555,0): 17, 2, 7, (600,556,0): 19, 4, 9, (600,557,0): 20, 5, 10, (600,558,0): 21, 6, 11, (600,559,0): 22, 7, 12, (600,560,0): 20, 8, 12, (600,561,0): 21, 9, 13, (600,562,0): 23, 8, 13, (600,563,0): 24, 9, 14, (600,564,0): 24, 9, 12, (600,565,0): 25, 10, 13, (600,566,0): 26, 10, 13, (600,567,0): 26, 10, 13, (600,568,0): 29, 10, 12, (600,569,0): 30, 11, 13, (600,570,0): 30, 12, 12, (600,571,0): 30, 12, 12, (600,572,0): 31, 11, 12, (600,573,0): 31, 11, 12, (600,574,0): 32, 12, 11, (600,575,0): 31, 13, 11, (600,576,0): 33, 15, 15, (600,577,0): 31, 15, 15, (600,578,0): 33, 17, 17, (600,579,0): 35, 19, 19, (600,580,0): 37, 21, 21, (600,581,0): 38, 22, 22, (600,582,0): 40, 24, 24, (600,583,0): 41, 25, 25, (600,584,0): 40, 24, 24, (600,585,0): 39, 23, 23, (600,586,0): 38, 22, 22, (600,587,0): 37, 21, 21, (600,588,0): 37, 21, 21, (600,589,0): 38, 22, 22, (600,590,0): 39, 23, 23, (600,591,0): 40, 24, 24, (600,592,0): 38, 24, 24, (600,593,0): 38, 24, 24, (600,594,0): 38, 24, 24, (600,595,0): 39, 25, 25, (600,596,0): 40, 26, 26, (600,597,0): 42, 28, 28, (600,598,0): 44, 30, 30, (600,599,0): 45, 31, 31, (601,0,0): 24, 52, 64, (601,1,0): 24, 52, 64, (601,2,0): 24, 52, 64, (601,3,0): 24, 52, 64, (601,4,0): 24, 52, 64, (601,5,0): 24, 52, 64, (601,6,0): 24, 52, 64, (601,7,0): 24, 52, 64, (601,8,0): 23, 51, 63, (601,9,0): 23, 51, 63, (601,10,0): 23, 51, 63, (601,11,0): 24, 52, 64, (601,12,0): 24, 52, 64, (601,13,0): 25, 53, 65, (601,14,0): 25, 53, 65, (601,15,0): 26, 54, 66, (601,16,0): 26, 54, 65, (601,17,0): 26, 54, 65, (601,18,0): 26, 54, 65, (601,19,0): 27, 55, 66, (601,20,0): 28, 55, 66, (601,21,0): 29, 56, 67, (601,22,0): 31, 55, 67, (601,23,0): 32, 56, 68, (601,24,0): 32, 56, 68, (601,25,0): 32, 56, 68, (601,26,0): 33, 55, 68, (601,27,0): 33, 55, 68, (601,28,0): 35, 54, 68, (601,29,0): 35, 54, 68, (601,30,0): 35, 54, 68, (601,31,0): 35, 54, 68, (601,32,0): 37, 55, 69, (601,33,0): 37, 55, 69, (601,34,0): 37, 55, 69, (601,35,0): 37, 55, 69, (601,36,0): 37, 55, 69, (601,37,0): 37, 55, 69, (601,38,0): 38, 54, 69, (601,39,0): 38, 54, 69, (601,40,0): 40, 53, 69, (601,41,0): 41, 54, 70, (601,42,0): 44, 56, 72, (601,43,0): 46, 58, 74, (601,44,0): 46, 58, 74, (601,45,0): 46, 58, 74, (601,46,0): 45, 57, 73, (601,47,0): 44, 56, 72, (601,48,0): 49, 61, 77, (601,49,0): 46, 58, 74, (601,50,0): 43, 55, 71, (601,51,0): 43, 55, 71, (601,52,0): 46, 58, 74, (601,53,0): 47, 59, 75, (601,54,0): 47, 59, 75, (601,55,0): 45, 57, 73, (601,56,0): 49, 61, 77, (601,57,0): 49, 61, 77, (601,58,0): 48, 60, 76, (601,59,0): 48, 60, 76, (601,60,0): 48, 60, 76, (601,61,0): 49, 61, 77, (601,62,0): 51, 63, 79, (601,63,0): 52, 64, 78, (601,64,0): 52, 61, 76, (601,65,0): 53, 61, 74, (601,66,0): 54, 62, 75, (601,67,0): 54, 62, 75, (601,68,0): 55, 63, 76, (601,69,0): 56, 64, 77, (601,70,0): 56, 64, 77, (601,71,0): 57, 65, 78, (601,72,0): 55, 63, 76, (601,73,0): 55, 63, 76, (601,74,0): 55, 63, 76, (601,75,0): 56, 64, 77, (601,76,0): 56, 64, 77, (601,77,0): 57, 65, 78, (601,78,0): 57, 65, 78, (601,79,0): 58, 66, 79, (601,80,0): 56, 62, 76, (601,81,0): 56, 62, 76, (601,82,0): 57, 63, 79, (601,83,0): 56, 64, 77, (601,84,0): 57, 64, 80, (601,85,0): 58, 66, 79, (601,86,0): 58, 65, 81, (601,87,0): 58, 68, 80, (601,88,0): 57, 66, 81, (601,89,0): 54, 66, 78, (601,90,0): 53, 65, 79, (601,91,0): 52, 64, 76, (601,92,0): 52, 64, 78, (601,93,0): 52, 66, 77, (601,94,0): 53, 67, 80, (601,95,0): 55, 67, 81, (601,96,0): 53, 62, 77, (601,97,0): 53, 62, 77, (601,98,0): 53, 62, 77, (601,99,0): 53, 62, 77, (601,100,0): 53, 62, 77, (601,101,0): 53, 62, 77, (601,102,0): 53, 62, 77, (601,103,0): 53, 62, 77, (601,104,0): 54, 63, 78, (601,105,0): 54, 63, 78, (601,106,0): 54, 63, 78, (601,107,0): 54, 63, 78, (601,108,0): 54, 63, 78, (601,109,0): 54, 63, 78, (601,110,0): 54, 63, 78, (601,111,0): 52, 64, 78, (601,112,0): 55, 69, 82, (601,113,0): 52, 68, 83, (601,114,0): 50, 68, 82, (601,115,0): 50, 68, 82, (601,116,0): 50, 67, 83, (601,117,0): 52, 69, 85, (601,118,0): 53, 70, 88, (601,119,0): 55, 72, 92, (601,120,0): 54, 71, 91, (601,121,0): 54, 72, 94, (601,122,0): 55, 71, 96, (601,123,0): 54, 72, 96, (601,124,0): 55, 72, 98, (601,125,0): 56, 73, 99, (601,126,0): 56, 73, 99, (601,127,0): 56, 73, 101, (601,128,0): 52, 72, 99, (601,129,0): 52, 72, 99, (601,130,0): 51, 72, 99, (601,131,0): 48, 72, 98, (601,132,0): 47, 73, 98, (601,133,0): 45, 73, 97, (601,134,0): 45, 73, 97, (601,135,0): 45, 72, 99, (601,136,0): 45, 72, 101, (601,137,0): 45, 72, 101, (601,138,0): 45, 70, 101, (601,139,0): 45, 70, 101, (601,140,0): 45, 67, 104, (601,141,0): 47, 67, 104, (601,142,0): 46, 66, 103, (601,143,0): 46, 65, 105, (601,144,0): 43, 67, 105, (601,145,0): 42, 68, 105, (601,146,0): 40, 68, 105, (601,147,0): 40, 68, 105, (601,148,0): 40, 68, 107, (601,149,0): 39, 69, 107, (601,150,0): 39, 69, 107, (601,151,0): 39, 69, 107, (601,152,0): 39, 71, 110, (601,153,0): 39, 71, 110, (601,154,0): 40, 72, 113, (601,155,0): 39, 72, 113, (601,156,0): 40, 73, 114, (601,157,0): 40, 73, 114, (601,158,0): 41, 74, 117, (601,159,0): 41, 74, 117, (601,160,0): 42, 75, 120, (601,161,0): 41, 74, 119, (601,162,0): 40, 73, 118, (601,163,0): 39, 72, 117, (601,164,0): 39, 72, 117, (601,165,0): 40, 73, 118, (601,166,0): 41, 74, 119, (601,167,0): 42, 75, 120, (601,168,0): 40, 73, 118, (601,169,0): 41, 74, 119, (601,170,0): 41, 74, 119, (601,171,0): 42, 75, 120, (601,172,0): 42, 75, 120, (601,173,0): 43, 76, 121, (601,174,0): 43, 76, 121, (601,175,0): 43, 76, 121, (601,176,0): 45, 76, 123, (601,177,0): 45, 76, 123, (601,178,0): 45, 76, 123, (601,179,0): 45, 76, 123, (601,180,0): 45, 76, 123, (601,181,0): 45, 76, 123, (601,182,0): 44, 75, 122, (601,183,0): 44, 75, 122, (601,184,0): 46, 77, 124, (601,185,0): 46, 77, 124, (601,186,0): 47, 78, 125, (601,187,0): 47, 78, 125, (601,188,0): 48, 79, 126, (601,189,0): 48, 79, 126, (601,190,0): 48, 79, 126, (601,191,0): 49, 80, 127, (601,192,0): 47, 77, 129, (601,193,0): 47, 77, 129, (601,194,0): 48, 78, 130, (601,195,0): 48, 78, 130, (601,196,0): 48, 78, 130, (601,197,0): 49, 79, 131, (601,198,0): 49, 79, 131, (601,199,0): 49, 79, 131, (601,200,0): 51, 81, 133, (601,201,0): 51, 81, 133, (601,202,0): 51, 81, 133, (601,203,0): 52, 82, 134, (601,204,0): 52, 82, 134, (601,205,0): 53, 83, 135, (601,206,0): 53, 83, 135, (601,207,0): 53, 84, 138, (601,208,0): 54, 84, 144, (601,209,0): 53, 85, 146, (601,210,0): 54, 86, 147, (601,211,0): 54, 86, 147, (601,212,0): 55, 87, 148, (601,213,0): 55, 87, 148, (601,214,0): 56, 88, 149, (601,215,0): 56, 88, 149, (601,216,0): 56, 88, 149, (601,217,0): 56, 88, 149, (601,218,0): 57, 89, 150, (601,219,0): 57, 89, 150, (601,220,0): 58, 90, 151, (601,221,0): 58, 90, 151, (601,222,0): 59, 91, 152, (601,223,0): 59, 91, 152, (601,224,0): 59, 94, 152, (601,225,0): 59, 94, 152, (601,226,0): 59, 94, 152, (601,227,0): 59, 94, 152, (601,228,0): 59, 93, 154, (601,229,0): 59, 93, 154, (601,230,0): 59, 93, 156, (601,231,0): 59, 93, 156, (601,232,0): 61, 95, 158, (601,233,0): 61, 95, 158, (601,234,0): 60, 94, 158, (601,235,0): 60, 94, 158, (601,236,0): 60, 93, 160, (601,237,0): 62, 95, 162, (601,238,0): 63, 96, 163, (601,239,0): 64, 98, 162, (601,240,0): 64, 98, 162, (601,241,0): 64, 98, 161, (601,242,0): 65, 99, 163, (601,243,0): 65, 99, 162, (601,244,0): 68, 99, 164, (601,245,0): 68, 99, 163, (601,246,0): 69, 100, 165, (601,247,0): 70, 100, 164, (601,248,0): 69, 98, 164, (601,249,0): 70, 100, 164, (601,250,0): 71, 98, 165, (601,251,0): 72, 100, 165, (601,252,0): 74, 101, 168, (601,253,0): 77, 102, 168, (601,254,0): 77, 102, 169, (601,255,0): 79, 103, 167, (601,256,0): 82, 102, 163, (601,257,0): 82, 101, 160, (601,258,0): 82, 101, 160, (601,259,0): 84, 103, 162, (601,260,0): 89, 104, 163, (601,261,0): 91, 102, 156, (601,262,0): 93, 96, 147, (601,263,0): 94, 91, 136, (601,264,0): 92, 80, 116, (601,265,0): 87, 71, 98, (601,266,0): 80, 58, 79, (601,267,0): 71, 48, 64, (601,268,0): 65, 41, 54, (601,269,0): 61, 38, 48, (601,270,0): 56, 35, 44, (601,271,0): 53, 32, 41, (601,272,0): 44, 21, 29, (601,273,0): 45, 19, 28, (601,274,0): 41, 18, 26, (601,275,0): 39, 16, 24, (601,276,0): 36, 15, 24, (601,277,0): 36, 15, 24, (601,278,0): 35, 15, 24, (601,279,0): 33, 16, 24, (601,280,0): 30, 13, 23, (601,281,0): 28, 12, 22, (601,282,0): 24, 11, 21, (601,283,0): 22, 9, 19, (601,284,0): 20, 8, 18, (601,285,0): 20, 8, 18, (601,286,0): 20, 10, 21, (601,287,0): 21, 11, 22, (601,288,0): 16, 8, 21, (601,289,0): 16, 8, 21, (601,290,0): 15, 7, 20, (601,291,0): 15, 7, 20, (601,292,0): 14, 6, 19, (601,293,0): 14, 6, 19, (601,294,0): 14, 6, 19, (601,295,0): 13, 5, 18, (601,296,0): 15, 7, 20, (601,297,0): 14, 6, 19, (601,298,0): 12, 4, 17, (601,299,0): 11, 3, 16, (601,300,0): 10, 2, 15, (601,301,0): 11, 3, 16, (601,302,0): 12, 4, 17, (601,303,0): 12, 4, 15, (601,304,0): 12, 4, 15, (601,305,0): 12, 5, 13, (601,306,0): 12, 5, 13, (601,307,0): 12, 5, 13, (601,308,0): 12, 5, 13, (601,309,0): 12, 5, 13, (601,310,0): 12, 5, 13, (601,311,0): 12, 5, 13, (601,312,0): 11, 4, 12, (601,313,0): 11, 4, 12, (601,314,0): 11, 4, 12, (601,315,0): 11, 4, 12, (601,316,0): 11, 4, 12, (601,317,0): 11, 4, 12, (601,318,0): 11, 4, 12, (601,319,0): 10, 5, 12, (601,320,0): 8, 3, 10, (601,321,0): 6, 3, 10, (601,322,0): 9, 4, 11, (601,323,0): 9, 4, 11, (601,324,0): 10, 5, 12, (601,325,0): 10, 5, 12, (601,326,0): 12, 5, 13, (601,327,0): 12, 5, 13, (601,328,0): 15, 5, 14, (601,329,0): 16, 6, 15, (601,330,0): 16, 6, 15, (601,331,0): 16, 6, 15, (601,332,0): 18, 6, 16, (601,333,0): 18, 6, 16, (601,334,0): 19, 7, 17, (601,335,0): 20, 7, 16, (601,336,0): 20, 4, 14, (601,337,0): 22, 7, 14, (601,338,0): 24, 9, 16, (601,339,0): 21, 8, 15, (601,340,0): 17, 6, 12, (601,341,0): 15, 6, 11, (601,342,0): 17, 8, 13, (601,343,0): 17, 11, 15, (601,344,0): 13, 7, 11, (601,345,0): 13, 7, 11, (601,346,0): 16, 7, 12, (601,347,0): 18, 7, 13, (601,348,0): 20, 7, 14, (601,349,0): 21, 8, 15, (601,350,0): 24, 9, 16, (601,351,0): 24, 9, 14, (601,352,0): 24, 9, 12, (601,353,0): 25, 11, 11, (601,354,0): 26, 12, 12, (601,355,0): 27, 13, 13, (601,356,0): 28, 14, 14, (601,357,0): 28, 14, 14, (601,358,0): 27, 13, 13, (601,359,0): 27, 13, 13, (601,360,0): 25, 11, 11, (601,361,0): 25, 11, 11, (601,362,0): 24, 10, 10, (601,363,0): 23, 9, 9, (601,364,0): 23, 9, 9, (601,365,0): 22, 8, 8, (601,366,0): 22, 8, 8, (601,367,0): 21, 7, 6, (601,368,0): 28, 14, 11, (601,369,0): 28, 14, 11, (601,370,0): 30, 15, 12, (601,371,0): 29, 15, 12, (601,372,0): 30, 15, 12, (601,373,0): 27, 13, 10, (601,374,0): 27, 12, 9, (601,375,0): 25, 11, 8, (601,376,0): 29, 14, 11, (601,377,0): 28, 14, 11, (601,378,0): 29, 14, 11, (601,379,0): 28, 14, 11, (601,380,0): 29, 14, 11, (601,381,0): 28, 14, 11, (601,382,0): 29, 14, 11, (601,383,0): 29, 14, 9, (601,384,0): 32, 13, 9, (601,385,0): 32, 13, 9, (601,386,0): 32, 13, 9, (601,387,0): 31, 12, 8, (601,388,0): 30, 11, 7, (601,389,0): 29, 10, 6, (601,390,0): 29, 10, 6, (601,391,0): 29, 10, 6, (601,392,0): 31, 12, 8, (601,393,0): 31, 12, 8, (601,394,0): 31, 12, 8, (601,395,0): 30, 11, 7, (601,396,0): 30, 11, 7, (601,397,0): 29, 10, 6, (601,398,0): 29, 10, 6, (601,399,0): 28, 9, 5, (601,400,0): 30, 11, 7, (601,401,0): 30, 11, 7, (601,402,0): 30, 11, 7, (601,403,0): 31, 12, 8, (601,404,0): 30, 12, 10, (601,405,0): 30, 12, 10, (601,406,0): 30, 12, 10, (601,407,0): 30, 12, 10, (601,408,0): 25, 9, 9, (601,409,0): 25, 9, 9, (601,410,0): 24, 10, 10, (601,411,0): 24, 10, 10, (601,412,0): 24, 10, 10, (601,413,0): 24, 10, 10, (601,414,0): 22, 10, 12, (601,415,0): 22, 10, 10, (601,416,0): 26, 12, 12, (601,417,0): 26, 12, 11, (601,418,0): 27, 11, 11, (601,419,0): 27, 11, 11, (601,420,0): 28, 12, 12, (601,421,0): 28, 12, 12, (601,422,0): 28, 12, 12, (601,423,0): 29, 13, 13, (601,424,0): 32, 16, 16, (601,425,0): 32, 16, 16, (601,426,0): 32, 16, 16, (601,427,0): 32, 16, 16, (601,428,0): 34, 16, 16, (601,429,0): 34, 16, 16, (601,430,0): 34, 16, 16, (601,431,0): 34, 16, 16, (601,432,0): 33, 17, 18, (601,433,0): 31, 17, 17, (601,434,0): 31, 17, 17, (601,435,0): 31, 17, 17, (601,436,0): 30, 16, 16, (601,437,0): 30, 16, 16, (601,438,0): 29, 15, 15, (601,439,0): 29, 15, 15, (601,440,0): 25, 11, 11, (601,441,0): 26, 12, 12, (601,442,0): 26, 12, 12, (601,443,0): 26, 12, 12, (601,444,0): 26, 12, 12, (601,445,0): 26, 12, 12, (601,446,0): 26, 12, 12, (601,447,0): 25, 11, 11, (601,448,0): 28, 14, 14, (601,449,0): 29, 15, 15, (601,450,0): 30, 16, 16, (601,451,0): 31, 17, 17, (601,452,0): 32, 18, 18, (601,453,0): 33, 19, 19, (601,454,0): 34, 20, 20, (601,455,0): 34, 20, 20, (601,456,0): 34, 20, 20, (601,457,0): 32, 18, 18, (601,458,0): 30, 16, 16, (601,459,0): 28, 14, 14, (601,460,0): 27, 13, 13, (601,461,0): 28, 14, 14, (601,462,0): 29, 15, 15, (601,463,0): 31, 17, 17, (601,464,0): 26, 12, 12, (601,465,0): 27, 13, 13, (601,466,0): 28, 14, 14, (601,467,0): 28, 14, 14, (601,468,0): 28, 14, 14, (601,469,0): 26, 12, 12, (601,470,0): 25, 11, 11, (601,471,0): 24, 10, 10, (601,472,0): 23, 9, 9, (601,473,0): 22, 8, 8, (601,474,0): 22, 8, 8, (601,475,0): 22, 8, 8, (601,476,0): 21, 7, 7, (601,477,0): 21, 7, 7, (601,478,0): 20, 6, 6, (601,479,0): 18, 6, 6, (601,480,0): 13, 4, 7, (601,481,0): 11, 5, 7, (601,482,0): 11, 5, 7, (601,483,0): 11, 5, 7, (601,484,0): 11, 5, 9, (601,485,0): 10, 4, 8, (601,486,0): 10, 4, 8, (601,487,0): 10, 4, 8, (601,488,0): 9, 2, 9, (601,489,0): 9, 2, 9, (601,490,0): 9, 2, 10, (601,491,0): 9, 2, 10, (601,492,0): 9, 2, 10, (601,493,0): 9, 2, 10, (601,494,0): 9, 1, 12, (601,495,0): 9, 1, 12, (601,496,0): 11, 1, 10, (601,497,0): 12, 2, 10, (601,498,0): 15, 4, 12, (601,499,0): 16, 5, 13, (601,500,0): 16, 5, 13, (601,501,0): 15, 4, 10, (601,502,0): 14, 1, 8, (601,503,0): 13, 0, 7, (601,504,0): 19, 4, 9, (601,505,0): 19, 4, 9, (601,506,0): 19, 4, 9, (601,507,0): 19, 4, 7, (601,508,0): 20, 4, 7, (601,509,0): 20, 4, 7, (601,510,0): 20, 4, 5, (601,511,0): 20, 4, 5, (601,512,0): 25, 6, 10, (601,513,0): 24, 5, 9, (601,514,0): 23, 4, 8, (601,515,0): 23, 4, 8, (601,516,0): 23, 4, 6, (601,517,0): 25, 6, 8, (601,518,0): 27, 8, 10, (601,519,0): 28, 9, 11, (601,520,0): 33, 15, 15, (601,521,0): 35, 17, 17, (601,522,0): 37, 19, 17, (601,523,0): 39, 21, 19, (601,524,0): 41, 23, 21, (601,525,0): 41, 23, 21, (601,526,0): 40, 22, 18, (601,527,0): 41, 22, 18, (601,528,0): 41, 16, 12, (601,529,0): 44, 14, 12, (601,530,0): 42, 14, 13, (601,531,0): 41, 13, 12, (601,532,0): 38, 12, 11, (601,533,0): 36, 12, 10, (601,534,0): 35, 11, 11, (601,535,0): 33, 12, 11, (601,536,0): 31, 11, 12, (601,537,0): 30, 12, 12, (601,538,0): 27, 11, 11, (601,539,0): 25, 11, 10, (601,540,0): 24, 10, 10, (601,541,0): 21, 9, 9, (601,542,0): 20, 8, 8, (601,543,0): 20, 8, 8, (601,544,0): 17, 2, 5, (601,545,0): 17, 2, 7, (601,546,0): 17, 2, 7, (601,547,0): 17, 2, 7, (601,548,0): 17, 2, 7, (601,549,0): 17, 2, 7, (601,550,0): 18, 3, 8, (601,551,0): 18, 3, 8, (601,552,0): 15, 0, 5, (601,553,0): 15, 0, 5, (601,554,0): 16, 1, 6, (601,555,0): 17, 2, 7, (601,556,0): 19, 4, 9, (601,557,0): 20, 5, 10, (601,558,0): 21, 6, 11, (601,559,0): 21, 6, 11, (601,560,0): 20, 8, 12, (601,561,0): 20, 8, 12, (601,562,0): 23, 8, 13, (601,563,0): 23, 8, 13, (601,564,0): 24, 9, 12, (601,565,0): 24, 9, 12, (601,566,0): 26, 10, 13, (601,567,0): 26, 10, 13, (601,568,0): 30, 11, 13, (601,569,0): 30, 11, 13, (601,570,0): 30, 12, 12, (601,571,0): 30, 12, 12, (601,572,0): 32, 12, 13, (601,573,0): 32, 12, 13, (601,574,0): 32, 12, 11, (601,575,0): 32, 14, 12, (601,576,0): 36, 18, 18, (601,577,0): 34, 18, 18, (601,578,0): 35, 19, 19, (601,579,0): 36, 20, 20, (601,580,0): 37, 21, 21, (601,581,0): 37, 21, 21, (601,582,0): 38, 22, 22, (601,583,0): 38, 22, 22, (601,584,0): 39, 23, 23, (601,585,0): 38, 22, 22, (601,586,0): 37, 21, 21, (601,587,0): 37, 21, 21, (601,588,0): 37, 21, 21, (601,589,0): 37, 21, 21, (601,590,0): 38, 22, 22, (601,591,0): 39, 23, 23, (601,592,0): 37, 23, 23, (601,593,0): 38, 24, 24, (601,594,0): 38, 24, 24, (601,595,0): 39, 25, 25, (601,596,0): 40, 26, 26, (601,597,0): 42, 28, 28, (601,598,0): 43, 29, 29, (601,599,0): 44, 30, 30, (602,0,0): 24, 52, 64, (602,1,0): 24, 52, 64, (602,2,0): 24, 52, 64, (602,3,0): 24, 52, 64, (602,4,0): 24, 52, 64, (602,5,0): 24, 52, 64, (602,6,0): 24, 52, 64, (602,7,0): 24, 52, 64, (602,8,0): 22, 50, 62, (602,9,0): 23, 51, 63, (602,10,0): 23, 51, 63, (602,11,0): 24, 52, 64, (602,12,0): 24, 52, 64, (602,13,0): 25, 53, 65, (602,14,0): 25, 53, 65, (602,15,0): 25, 53, 65, (602,16,0): 25, 53, 64, (602,17,0): 26, 54, 65, (602,18,0): 26, 54, 65, (602,19,0): 27, 55, 66, (602,20,0): 28, 55, 66, (602,21,0): 29, 56, 67, (602,22,0): 31, 55, 67, (602,23,0): 31, 55, 67, (602,24,0): 31, 55, 67, (602,25,0): 31, 55, 67, (602,26,0): 32, 54, 67, (602,27,0): 32, 54, 67, (602,28,0): 34, 53, 67, (602,29,0): 34, 53, 67, (602,30,0): 34, 53, 67, (602,31,0): 34, 53, 67, (602,32,0): 36, 55, 69, (602,33,0): 36, 55, 69, (602,34,0): 36, 55, 69, (602,35,0): 36, 55, 69, (602,36,0): 37, 55, 69, (602,37,0): 37, 55, 69, (602,38,0): 37, 55, 69, (602,39,0): 37, 55, 69, (602,40,0): 38, 54, 69, (602,41,0): 39, 55, 70, (602,42,0): 42, 55, 71, (602,43,0): 44, 57, 73, (602,44,0): 44, 57, 73, (602,45,0): 44, 57, 73, (602,46,0): 44, 56, 72, (602,47,0): 44, 56, 72, (602,48,0): 47, 60, 76, (602,49,0): 45, 58, 74, (602,50,0): 42, 55, 71, (602,51,0): 42, 55, 71, (602,52,0): 44, 57, 73, (602,53,0): 45, 58, 74, (602,54,0): 45, 58, 74, (602,55,0): 44, 57, 73, (602,56,0): 47, 60, 76, (602,57,0): 47, 60, 76, (602,58,0): 46, 59, 75, (602,59,0): 46, 59, 75, (602,60,0): 46, 59, 75, (602,61,0): 47, 60, 76, (602,62,0): 49, 62, 78, (602,63,0): 51, 63, 77, (602,64,0): 52, 61, 76, (602,65,0): 52, 62, 74, (602,66,0): 53, 63, 75, (602,67,0): 53, 63, 75, (602,68,0): 54, 64, 76, (602,69,0): 54, 64, 76, (602,70,0): 54, 64, 76, (602,71,0): 54, 64, 76, (602,72,0): 53, 63, 75, (602,73,0): 54, 64, 76, (602,74,0): 54, 64, 76, (602,75,0): 55, 65, 77, (602,76,0): 55, 65, 77, (602,77,0): 56, 66, 78, (602,78,0): 56, 66, 78, (602,79,0): 56, 66, 78, (602,80,0): 56, 63, 79, (602,81,0): 56, 63, 79, (602,82,0): 56, 63, 81, (602,83,0): 56, 65, 80, (602,84,0): 56, 65, 82, (602,85,0): 57, 66, 81, (602,86,0): 57, 66, 83, (602,87,0): 55, 67, 81, (602,88,0): 56, 68, 84, (602,89,0): 54, 68, 81, (602,90,0): 53, 66, 82, (602,91,0): 52, 66, 79, (602,92,0): 52, 65, 81, (602,93,0): 51, 67, 80, (602,94,0): 52, 68, 83, (602,95,0): 53, 69, 84, (602,96,0): 51, 64, 80, (602,97,0): 52, 64, 80, (602,98,0): 52, 64, 80, (602,99,0): 52, 64, 80, (602,100,0): 52, 64, 80, (602,101,0): 52, 64, 80, (602,102,0): 52, 64, 80, (602,103,0): 52, 64, 80, (602,104,0): 53, 65, 81, (602,105,0): 53, 65, 81, (602,106,0): 53, 65, 81, (602,107,0): 53, 65, 81, (602,108,0): 53, 65, 81, (602,109,0): 53, 65, 81, (602,110,0): 53, 65, 81, (602,111,0): 52, 65, 81, (602,112,0): 49, 68, 82, (602,113,0): 47, 69, 83, (602,114,0): 46, 68, 82, (602,115,0): 46, 68, 82, (602,116,0): 46, 67, 84, (602,117,0): 48, 69, 88, (602,118,0): 49, 70, 89, (602,119,0): 50, 71, 92, (602,120,0): 50, 71, 92, (602,121,0): 50, 70, 94, (602,122,0): 52, 70, 94, (602,123,0): 51, 71, 96, (602,124,0): 51, 71, 98, (602,125,0): 52, 72, 99, (602,126,0): 52, 72, 99, (602,127,0): 53, 72, 102, (602,128,0): 52, 71, 103, (602,129,0): 52, 71, 103, (602,130,0): 51, 72, 101, (602,131,0): 48, 72, 100, (602,132,0): 47, 73, 100, (602,133,0): 45, 72, 99, (602,134,0): 45, 72, 99, (602,135,0): 43, 73, 99, (602,136,0): 42, 72, 100, (602,137,0): 42, 72, 100, (602,138,0): 43, 70, 100, (602,139,0): 44, 69, 100, (602,140,0): 43, 67, 103, (602,141,0): 44, 66, 103, (602,142,0): 43, 65, 104, (602,143,0): 43, 65, 106, (602,144,0): 42, 67, 107, (602,145,0): 40, 68, 107, (602,146,0): 40, 68, 107, (602,147,0): 40, 68, 107, (602,148,0): 39, 69, 107, (602,149,0): 39, 69, 107, (602,150,0): 39, 68, 108, (602,151,0): 37, 69, 108, (602,152,0): 38, 70, 111, (602,153,0): 38, 70, 111, (602,154,0): 38, 71, 114, (602,155,0): 38, 71, 114, (602,156,0): 39, 72, 115, (602,157,0): 38, 73, 115, (602,158,0): 39, 74, 116, (602,159,0): 39, 74, 116, (602,160,0): 41, 75, 120, (602,161,0): 40, 74, 119, (602,162,0): 39, 73, 118, (602,163,0): 38, 72, 117, (602,164,0): 38, 72, 117, (602,165,0): 39, 73, 118, (602,166,0): 40, 74, 119, (602,167,0): 41, 75, 120, (602,168,0): 40, 74, 119, (602,169,0): 40, 74, 119, (602,170,0): 40, 74, 119, (602,171,0): 41, 75, 120, (602,172,0): 41, 75, 120, (602,173,0): 42, 76, 121, (602,174,0): 42, 76, 121, (602,175,0): 44, 77, 122, (602,176,0): 44, 75, 122, (602,177,0): 44, 75, 122, (602,178,0): 44, 75, 122, (602,179,0): 44, 75, 122, (602,180,0): 44, 75, 122, (602,181,0): 44, 75, 122, (602,182,0): 44, 75, 122, (602,183,0): 44, 75, 122, (602,184,0): 46, 77, 124, (602,185,0): 46, 77, 124, (602,186,0): 47, 78, 125, (602,187,0): 47, 78, 125, (602,188,0): 48, 79, 126, (602,189,0): 48, 79, 126, (602,190,0): 49, 80, 127, (602,191,0): 49, 80, 127, (602,192,0): 49, 79, 131, (602,193,0): 48, 78, 130, (602,194,0): 48, 78, 130, (602,195,0): 48, 78, 130, (602,196,0): 48, 78, 130, (602,197,0): 47, 77, 129, (602,198,0): 47, 77, 129, (602,199,0): 47, 77, 129, (602,200,0): 51, 81, 133, (602,201,0): 52, 82, 134, (602,202,0): 52, 82, 134, (602,203,0): 53, 83, 135, (602,204,0): 53, 83, 135, (602,205,0): 54, 84, 136, (602,206,0): 54, 84, 136, (602,207,0): 53, 84, 138, (602,208,0): 55, 85, 145, (602,209,0): 54, 86, 147, (602,210,0): 55, 87, 148, (602,211,0): 55, 87, 148, (602,212,0): 56, 88, 149, (602,213,0): 56, 88, 149, (602,214,0): 56, 88, 149, (602,215,0): 57, 89, 150, (602,216,0): 57, 89, 150, (602,217,0): 57, 89, 150, (602,218,0): 58, 90, 151, (602,219,0): 58, 90, 151, (602,220,0): 59, 91, 152, (602,221,0): 59, 91, 152, (602,222,0): 59, 91, 152, (602,223,0): 60, 92, 153, (602,224,0): 59, 94, 152, (602,225,0): 59, 94, 150, (602,226,0): 59, 94, 152, (602,227,0): 59, 94, 152, (602,228,0): 59, 94, 152, (602,229,0): 59, 94, 152, (602,230,0): 59, 93, 154, (602,231,0): 59, 93, 154, (602,232,0): 62, 96, 159, (602,233,0): 61, 95, 158, (602,234,0): 60, 94, 157, (602,235,0): 60, 94, 157, (602,236,0): 61, 95, 159, (602,237,0): 62, 96, 160, (602,238,0): 63, 97, 161, (602,239,0): 64, 98, 162, (602,240,0): 66, 97, 161, (602,241,0): 66, 98, 159, (602,242,0): 67, 98, 162, (602,243,0): 67, 99, 160, (602,244,0): 69, 99, 163, (602,245,0): 69, 99, 161, (602,246,0): 70, 100, 164, (602,247,0): 71, 99, 162, (602,248,0): 69, 97, 162, (602,249,0): 69, 97, 160, (602,250,0): 72, 97, 163, (602,251,0): 73, 98, 162, (602,252,0): 74, 99, 165, (602,253,0): 76, 100, 164, (602,254,0): 77, 100, 167, (602,255,0): 80, 101, 164, (602,256,0): 83, 102, 161, (602,257,0): 84, 100, 159, (602,258,0): 84, 100, 159, (602,259,0): 86, 102, 161, (602,260,0): 89, 104, 161, (602,261,0): 92, 101, 156, (602,262,0): 93, 96, 147, (602,263,0): 94, 91, 136, (602,264,0): 89, 79, 116, (602,265,0): 87, 71, 100, (602,266,0): 81, 59, 82, (602,267,0): 74, 51, 69, (602,268,0): 68, 44, 58, (602,269,0): 63, 39, 52, (602,270,0): 57, 36, 45, (602,271,0): 53, 32, 41, (602,272,0): 42, 19, 27, (602,273,0): 42, 16, 25, (602,274,0): 38, 15, 23, (602,275,0): 36, 13, 21, (602,276,0): 33, 12, 21, (602,277,0): 32, 11, 20, (602,278,0): 31, 11, 20, (602,279,0): 29, 12, 20, (602,280,0): 31, 14, 24, (602,281,0): 28, 12, 22, (602,282,0): 24, 11, 21, (602,283,0): 22, 9, 19, (602,284,0): 20, 8, 18, (602,285,0): 19, 7, 17, (602,286,0): 18, 8, 19, (602,287,0): 18, 8, 19, (602,288,0): 16, 8, 21, (602,289,0): 15, 7, 20, (602,290,0): 15, 7, 20, (602,291,0): 15, 7, 20, (602,292,0): 14, 6, 19, (602,293,0): 13, 5, 18, (602,294,0): 13, 5, 18, (602,295,0): 13, 5, 18, (602,296,0): 15, 7, 20, (602,297,0): 14, 6, 19, (602,298,0): 12, 4, 17, (602,299,0): 11, 3, 16, (602,300,0): 11, 3, 16, (602,301,0): 11, 3, 16, (602,302,0): 11, 3, 16, (602,303,0): 12, 4, 15, (602,304,0): 11, 3, 14, (602,305,0): 11, 4, 12, (602,306,0): 11, 4, 12, (602,307,0): 11, 4, 12, (602,308,0): 11, 4, 12, (602,309,0): 11, 4, 12, (602,310,0): 11, 4, 12, (602,311,0): 11, 4, 12, (602,312,0): 11, 4, 12, (602,313,0): 11, 4, 12, (602,314,0): 11, 4, 12, (602,315,0): 11, 4, 12, (602,316,0): 11, 4, 12, (602,317,0): 11, 4, 12, (602,318,0): 11, 4, 12, (602,319,0): 10, 5, 12, (602,320,0): 8, 3, 10, (602,321,0): 6, 3, 10, (602,322,0): 9, 4, 11, (602,323,0): 9, 4, 11, (602,324,0): 10, 5, 12, (602,325,0): 10, 5, 12, (602,326,0): 12, 5, 13, (602,327,0): 12, 5, 13, (602,328,0): 15, 5, 14, (602,329,0): 15, 5, 14, (602,330,0): 15, 5, 14, (602,331,0): 16, 6, 15, (602,332,0): 18, 6, 16, (602,333,0): 18, 6, 16, (602,334,0): 18, 6, 16, (602,335,0): 20, 7, 16, (602,336,0): 19, 3, 13, (602,337,0): 21, 6, 13, (602,338,0): 23, 8, 15, (602,339,0): 20, 7, 14, (602,340,0): 16, 5, 11, (602,341,0): 14, 5, 10, (602,342,0): 16, 7, 12, (602,343,0): 18, 9, 14, (602,344,0): 15, 6, 11, (602,345,0): 15, 6, 11, (602,346,0): 17, 6, 12, (602,347,0): 18, 7, 13, (602,348,0): 20, 7, 14, (602,349,0): 23, 8, 15, (602,350,0): 25, 8, 16, (602,351,0): 25, 8, 14, (602,352,0): 26, 10, 11, (602,353,0): 27, 11, 11, (602,354,0): 28, 12, 12, (602,355,0): 30, 14, 14, (602,356,0): 30, 14, 14, (602,357,0): 30, 14, 14, (602,358,0): 29, 13, 13, (602,359,0): 29, 13, 13, (602,360,0): 25, 9, 9, (602,361,0): 25, 9, 9, (602,362,0): 24, 8, 8, (602,363,0): 24, 8, 8, (602,364,0): 23, 7, 7, (602,365,0): 23, 7, 7, (602,366,0): 23, 7, 7, (602,367,0): 22, 6, 6, (602,368,0): 30, 15, 12, (602,369,0): 30, 15, 10, (602,370,0): 33, 15, 11, (602,371,0): 31, 16, 11, (602,372,0): 32, 14, 10, (602,373,0): 29, 14, 9, (602,374,0): 30, 12, 8, (602,375,0): 27, 12, 7, (602,376,0): 32, 14, 10, (602,377,0): 30, 15, 10, (602,378,0): 32, 14, 10, (602,379,0): 30, 15, 10, (602,380,0): 32, 14, 10, (602,381,0): 30, 15, 10, (602,382,0): 32, 14, 10, (602,383,0): 32, 14, 10, (602,384,0): 33, 14, 10, (602,385,0): 34, 13, 8, (602,386,0): 33, 12, 7, (602,387,0): 33, 12, 7, (602,388,0): 32, 11, 6, (602,389,0): 32, 11, 6, (602,390,0): 32, 11, 6, (602,391,0): 31, 10, 5, (602,392,0): 33, 12, 7, (602,393,0): 32, 11, 6, (602,394,0): 32, 11, 6, (602,395,0): 31, 10, 5, (602,396,0): 31, 10, 5, (602,397,0): 30, 9, 4, (602,398,0): 30, 9, 4, (602,399,0): 30, 9, 4, (602,400,0): 30, 11, 7, (602,401,0): 30, 11, 7, (602,402,0): 30, 11, 7, (602,403,0): 30, 11, 7, (602,404,0): 29, 11, 9, (602,405,0): 29, 11, 9, (602,406,0): 29, 11, 9, (602,407,0): 29, 11, 9, (602,408,0): 24, 8, 8, (602,409,0): 24, 8, 8, (602,410,0): 23, 9, 9, (602,411,0): 23, 9, 9, (602,412,0): 23, 9, 9, (602,413,0): 23, 9, 9, (602,414,0): 21, 9, 11, (602,415,0): 21, 9, 9, (602,416,0): 23, 11, 11, (602,417,0): 23, 12, 10, (602,418,0): 25, 11, 10, (602,419,0): 26, 12, 11, (602,420,0): 27, 13, 12, (602,421,0): 27, 13, 12, (602,422,0): 29, 13, 13, (602,423,0): 29, 13, 13, (602,424,0): 34, 16, 16, (602,425,0): 34, 16, 16, (602,426,0): 34, 16, 16, (602,427,0): 34, 16, 16, (602,428,0): 35, 15, 16, (602,429,0): 35, 15, 16, (602,430,0): 35, 15, 16, (602,431,0): 34, 16, 16, (602,432,0): 33, 17, 18, (602,433,0): 32, 18, 18, (602,434,0): 31, 17, 17, (602,435,0): 31, 17, 17, (602,436,0): 30, 16, 16, (602,437,0): 30, 16, 16, (602,438,0): 29, 15, 15, (602,439,0): 29, 15, 15, (602,440,0): 26, 12, 12, (602,441,0): 26, 12, 12, (602,442,0): 26, 12, 12, (602,443,0): 26, 12, 12, (602,444,0): 26, 12, 12, (602,445,0): 26, 12, 12, (602,446,0): 26, 12, 12, (602,447,0): 26, 12, 12, (602,448,0): 28, 14, 14, (602,449,0): 28, 14, 14, (602,450,0): 29, 15, 15, (602,451,0): 30, 16, 16, (602,452,0): 31, 17, 17, (602,453,0): 32, 18, 18, (602,454,0): 33, 19, 19, (602,455,0): 34, 20, 20, (602,456,0): 33, 19, 19, (602,457,0): 32, 18, 18, (602,458,0): 32, 18, 18, (602,459,0): 31, 17, 17, (602,460,0): 31, 17, 17, (602,461,0): 30, 16, 16, (602,462,0): 30, 16, 16, (602,463,0): 30, 16, 16, (602,464,0): 28, 14, 14, (602,465,0): 28, 14, 14, (602,466,0): 29, 15, 15, (602,467,0): 29, 15, 15, (602,468,0): 29, 15, 15, (602,469,0): 27, 13, 13, (602,470,0): 26, 12, 12, (602,471,0): 25, 11, 11, (602,472,0): 23, 9, 9, (602,473,0): 23, 9, 9, (602,474,0): 23, 9, 9, (602,475,0): 22, 8, 8, (602,476,0): 21, 7, 7, (602,477,0): 21, 7, 7, (602,478,0): 21, 7, 7, (602,479,0): 18, 6, 6, (602,480,0): 15, 6, 9, (602,481,0): 13, 7, 9, (602,482,0): 12, 6, 8, (602,483,0): 12, 6, 8, (602,484,0): 11, 5, 9, (602,485,0): 10, 4, 8, (602,486,0): 9, 3, 7, (602,487,0): 9, 3, 7, (602,488,0): 9, 2, 9, (602,489,0): 9, 2, 9, (602,490,0): 9, 2, 10, (602,491,0): 9, 2, 10, (602,492,0): 9, 2, 10, (602,493,0): 9, 2, 10, (602,494,0): 9, 1, 12, (602,495,0): 9, 1, 12, (602,496,0): 11, 4, 12, (602,497,0): 11, 4, 12, (602,498,0): 14, 4, 13, (602,499,0): 15, 5, 13, (602,500,0): 15, 5, 13, (602,501,0): 14, 4, 12, (602,502,0): 14, 3, 9, (602,503,0): 14, 3, 9, (602,504,0): 17, 4, 11, (602,505,0): 17, 5, 9, (602,506,0): 17, 5, 9, (602,507,0): 17, 5, 9, (602,508,0): 19, 4, 7, (602,509,0): 19, 4, 7, (602,510,0): 19, 4, 7, (602,511,0): 20, 4, 7, (602,512,0): 24, 5, 11, (602,513,0): 23, 4, 10, (602,514,0): 23, 4, 8, (602,515,0): 23, 4, 8, (602,516,0): 23, 4, 8, (602,517,0): 24, 5, 9, (602,518,0): 26, 7, 9, (602,519,0): 27, 8, 10, (602,520,0): 31, 13, 13, (602,521,0): 33, 15, 15, (602,522,0): 35, 17, 17, (602,523,0): 38, 20, 20, (602,524,0): 40, 22, 20, (602,525,0): 41, 23, 21, (602,526,0): 41, 23, 21, (602,527,0): 42, 23, 19, (602,528,0): 42, 17, 13, (602,529,0): 44, 16, 13, (602,530,0): 43, 15, 12, (602,531,0): 42, 14, 11, (602,532,0): 39, 13, 12, (602,533,0): 37, 13, 11, (602,534,0): 36, 12, 10, (602,535,0): 34, 13, 10, (602,536,0): 31, 11, 10, (602,537,0): 30, 12, 10, (602,538,0): 29, 11, 11, (602,539,0): 26, 10, 10, (602,540,0): 25, 9, 9, (602,541,0): 23, 9, 8, (602,542,0): 22, 8, 8, (602,543,0): 22, 8, 8, (602,544,0): 19, 3, 6, (602,545,0): 19, 3, 6, (602,546,0): 19, 3, 6, (602,547,0): 19, 3, 6, (602,548,0): 19, 3, 6, (602,549,0): 19, 3, 6, (602,550,0): 19, 3, 6, (602,551,0): 19, 3, 6, (602,552,0): 16, 0, 3, (602,553,0): 17, 1, 4, (602,554,0): 18, 2, 5, (602,555,0): 18, 2, 5, (602,556,0): 20, 4, 7, (602,557,0): 20, 4, 7, (602,558,0): 21, 5, 8, (602,559,0): 21, 6, 9, (602,560,0): 19, 7, 11, (602,561,0): 19, 7, 11, (602,562,0): 22, 7, 12, (602,563,0): 22, 7, 12, (602,564,0): 23, 8, 11, (602,565,0): 23, 8, 11, (602,566,0): 25, 9, 12, (602,567,0): 25, 9, 12, (602,568,0): 30, 11, 13, (602,569,0): 30, 11, 13, (602,570,0): 30, 12, 12, (602,571,0): 31, 13, 13, (602,572,0): 33, 13, 14, (602,573,0): 33, 13, 14, (602,574,0): 34, 14, 13, (602,575,0): 33, 15, 13, (602,576,0): 39, 21, 21, (602,577,0): 37, 21, 21, (602,578,0): 37, 21, 21, (602,579,0): 37, 21, 21, (602,580,0): 37, 21, 21, (602,581,0): 37, 21, 21, (602,582,0): 37, 21, 21, (602,583,0): 37, 21, 21, (602,584,0): 38, 22, 22, (602,585,0): 38, 22, 22, (602,586,0): 37, 21, 21, (602,587,0): 36, 20, 20, (602,588,0): 36, 20, 20, (602,589,0): 37, 21, 21, (602,590,0): 38, 22, 22, (602,591,0): 38, 22, 22, (602,592,0): 37, 23, 22, (602,593,0): 38, 24, 23, (602,594,0): 38, 24, 23, (602,595,0): 39, 25, 24, (602,596,0): 40, 26, 25, (602,597,0): 41, 27, 26, (602,598,0): 42, 28, 27, (602,599,0): 42, 28, 27, (603,0,0): 23, 51, 63, (603,1,0): 23, 51, 63, (603,2,0): 23, 51, 63, (603,3,0): 23, 51, 63, (603,4,0): 23, 51, 63, (603,5,0): 23, 51, 63, (603,6,0): 23, 51, 63, (603,7,0): 23, 51, 63, (603,8,0): 22, 50, 62, (603,9,0): 22, 50, 62, (603,10,0): 22, 50, 62, (603,11,0): 23, 51, 63, (603,12,0): 24, 52, 64, (603,13,0): 24, 52, 64, (603,14,0): 24, 52, 64, (603,15,0): 25, 53, 65, (603,16,0): 25, 53, 64, (603,17,0): 25, 53, 64, (603,18,0): 25, 53, 64, (603,19,0): 26, 54, 65, (603,20,0): 28, 55, 66, (603,21,0): 28, 55, 66, (603,22,0): 30, 54, 66, (603,23,0): 31, 55, 67, (603,24,0): 31, 55, 67, (603,25,0): 31, 55, 67, (603,26,0): 32, 54, 67, (603,27,0): 32, 54, 67, (603,28,0): 34, 53, 67, (603,29,0): 34, 53, 67, (603,30,0): 34, 53, 67, (603,31,0): 34, 53, 67, (603,32,0): 35, 54, 68, (603,33,0): 35, 54, 68, (603,34,0): 35, 54, 68, (603,35,0): 35, 54, 68, (603,36,0): 36, 54, 68, (603,37,0): 36, 54, 68, (603,38,0): 36, 54, 68, (603,39,0): 36, 54, 68, (603,40,0): 38, 54, 69, (603,41,0): 39, 55, 70, (603,42,0): 42, 55, 71, (603,43,0): 42, 55, 71, (603,44,0): 43, 56, 72, (603,45,0): 43, 56, 72, (603,46,0): 44, 56, 72, (603,47,0): 44, 56, 72, (603,48,0): 46, 59, 75, (603,49,0): 44, 57, 73, (603,50,0): 43, 56, 72, (603,51,0): 42, 55, 71, (603,52,0): 43, 56, 72, (603,53,0): 44, 57, 73, (603,54,0): 44, 57, 73, (603,55,0): 45, 58, 74, (603,56,0): 48, 61, 77, (603,57,0): 48, 61, 77, (603,58,0): 47, 60, 76, (603,59,0): 47, 60, 76, (603,60,0): 47, 60, 76, (603,61,0): 49, 62, 78, (603,62,0): 50, 63, 79, (603,63,0): 51, 65, 78, (603,64,0): 52, 61, 76, (603,65,0): 52, 62, 74, (603,66,0): 53, 63, 75, (603,67,0): 53, 63, 75, (603,68,0): 53, 63, 75, (603,69,0): 53, 63, 75, (603,70,0): 53, 63, 75, (603,71,0): 53, 63, 75, (603,72,0): 53, 63, 75, (603,73,0): 53, 63, 75, (603,74,0): 53, 63, 75, (603,75,0): 54, 64, 76, (603,76,0): 55, 65, 77, (603,77,0): 55, 65, 77, (603,78,0): 55, 65, 77, (603,79,0): 56, 65, 80, (603,80,0): 53, 65, 81, (603,81,0): 53, 65, 81, (603,82,0): 54, 65, 83, (603,83,0): 54, 66, 82, (603,84,0): 54, 65, 83, (603,85,0): 53, 66, 82, (603,86,0): 53, 66, 83, (603,87,0): 53, 66, 82, (603,88,0): 55, 68, 85, (603,89,0): 53, 69, 84, (603,90,0): 52, 68, 84, (603,91,0): 50, 68, 82, (603,92,0): 50, 67, 83, (603,93,0): 51, 69, 83, (603,94,0): 52, 69, 85, (603,95,0): 52, 69, 85, (603,96,0): 50, 66, 82, (603,97,0): 50, 65, 84, (603,98,0): 50, 65, 84, (603,99,0): 50, 65, 84, (603,100,0): 50, 65, 84, (603,101,0): 50, 65, 84, (603,102,0): 50, 65, 84, (603,103,0): 50, 65, 84, (603,104,0): 49, 64, 83, (603,105,0): 49, 64, 83, (603,106,0): 49, 64, 83, (603,107,0): 49, 64, 83, (603,108,0): 49, 64, 83, (603,109,0): 49, 64, 83, (603,110,0): 49, 64, 83, (603,111,0): 48, 65, 83, (603,112,0): 44, 67, 83, (603,113,0): 42, 68, 83, (603,114,0): 42, 68, 85, (603,115,0): 42, 68, 85, (603,116,0): 43, 69, 86, (603,117,0): 43, 68, 88, (603,118,0): 44, 69, 89, (603,119,0): 47, 69, 92, (603,120,0): 47, 69, 92, (603,121,0): 48, 68, 93, (603,122,0): 48, 68, 93, (603,123,0): 49, 69, 94, (603,124,0): 49, 69, 96, (603,125,0): 50, 70, 97, (603,126,0): 50, 69, 99, (603,127,0): 50, 69, 101, (603,128,0): 52, 71, 104, (603,129,0): 51, 70, 103, (603,130,0): 50, 70, 103, (603,131,0): 47, 70, 101, (603,132,0): 46, 71, 101, (603,133,0): 44, 71, 98, (603,134,0): 42, 72, 98, (603,135,0): 42, 72, 98, (603,136,0): 40, 70, 98, (603,137,0): 40, 70, 98, (603,138,0): 40, 69, 99, (603,139,0): 41, 67, 100, (603,140,0): 41, 67, 102, (603,141,0): 41, 65, 103, (603,142,0): 41, 64, 105, (603,143,0): 40, 63, 104, (603,144,0): 39, 67, 106, (603,145,0): 39, 67, 106, (603,146,0): 39, 67, 106, (603,147,0): 39, 67, 106, (603,148,0): 38, 68, 106, (603,149,0): 38, 68, 106, (603,150,0): 36, 68, 107, (603,151,0): 36, 68, 107, (603,152,0): 37, 69, 110, (603,153,0): 36, 69, 110, (603,154,0): 37, 70, 113, (603,155,0): 37, 70, 113, (603,156,0): 37, 72, 114, (603,157,0): 37, 72, 114, (603,158,0): 38, 73, 115, (603,159,0): 38, 73, 115, (603,160,0): 41, 75, 120, (603,161,0): 40, 74, 119, (603,162,0): 39, 73, 118, (603,163,0): 38, 72, 117, (603,164,0): 38, 72, 117, (603,165,0): 39, 73, 118, (603,166,0): 40, 74, 119, (603,167,0): 41, 75, 120, (603,168,0): 39, 73, 118, (603,169,0): 40, 74, 119, (603,170,0): 40, 74, 119, (603,171,0): 41, 75, 120, (603,172,0): 41, 75, 120, (603,173,0): 42, 76, 121, (603,174,0): 42, 76, 121, (603,175,0): 42, 76, 121, (603,176,0): 42, 73, 120, (603,177,0): 42, 73, 120, (603,178,0): 43, 74, 121, (603,179,0): 43, 74, 121, (603,180,0): 43, 74, 121, (603,181,0): 44, 75, 122, (603,182,0): 44, 75, 122, (603,183,0): 44, 75, 122, (603,184,0): 46, 77, 124, (603,185,0): 46, 77, 124, (603,186,0): 47, 78, 125, (603,187,0): 47, 78, 125, (603,188,0): 48, 79, 126, (603,189,0): 48, 79, 126, (603,190,0): 49, 80, 127, (603,191,0): 49, 80, 127, (603,192,0): 49, 79, 131, (603,193,0): 49, 79, 131, (603,194,0): 48, 78, 130, (603,195,0): 48, 78, 130, (603,196,0): 47, 77, 129, (603,197,0): 46, 76, 128, (603,198,0): 46, 76, 128, (603,199,0): 45, 75, 127, (603,200,0): 52, 82, 134, (603,201,0): 52, 82, 134, (603,202,0): 52, 82, 134, (603,203,0): 53, 83, 135, (603,204,0): 53, 83, 135, (603,205,0): 54, 84, 136, (603,206,0): 54, 84, 136, (603,207,0): 53, 84, 138, (603,208,0): 55, 85, 145, (603,209,0): 54, 86, 147, (603,210,0): 55, 87, 148, (603,211,0): 55, 87, 148, (603,212,0): 56, 88, 149, (603,213,0): 56, 88, 149, (603,214,0): 57, 89, 150, (603,215,0): 57, 89, 150, (603,216,0): 57, 89, 150, (603,217,0): 57, 89, 150, (603,218,0): 58, 90, 151, (603,219,0): 58, 90, 151, (603,220,0): 59, 91, 152, (603,221,0): 59, 91, 152, (603,222,0): 60, 92, 153, (603,223,0): 60, 92, 151, (603,224,0): 58, 93, 151, (603,225,0): 58, 93, 149, (603,226,0): 58, 93, 151, (603,227,0): 58, 93, 151, (603,228,0): 58, 93, 151, (603,229,0): 58, 93, 151, (603,230,0): 58, 92, 153, (603,231,0): 58, 92, 153, (603,232,0): 61, 95, 158, (603,233,0): 61, 95, 158, (603,234,0): 60, 94, 157, (603,235,0): 60, 94, 157, (603,236,0): 60, 94, 158, (603,237,0): 62, 96, 160, (603,238,0): 63, 97, 161, (603,239,0): 64, 98, 161, (603,240,0): 65, 97, 158, (603,241,0): 65, 97, 156, (603,242,0): 66, 98, 159, (603,243,0): 66, 98, 157, (603,244,0): 68, 98, 160, (603,245,0): 68, 98, 158, (603,246,0): 70, 98, 161, (603,247,0): 70, 99, 159, (603,248,0): 68, 96, 159, (603,249,0): 68, 97, 157, (603,250,0): 71, 96, 160, (603,251,0): 72, 98, 159, (603,252,0): 74, 98, 162, (603,253,0): 75, 99, 161, (603,254,0): 76, 100, 164, (603,255,0): 79, 99, 160, (603,256,0): 84, 100, 159, (603,257,0): 84, 99, 156, (603,258,0): 84, 99, 156, (603,259,0): 86, 101, 160, (603,260,0): 90, 102, 160, (603,261,0): 91, 100, 155, (603,262,0): 92, 95, 148, (603,263,0): 93, 90, 137, (603,264,0): 89, 78, 118, (603,265,0): 86, 71, 102, (603,266,0): 81, 61, 86, (603,267,0): 75, 52, 70, (603,268,0): 69, 45, 59, (603,269,0): 63, 39, 52, (603,270,0): 55, 34, 43, (603,271,0): 51, 28, 38, (603,272,0): 44, 18, 27, (603,273,0): 43, 17, 26, (603,274,0): 38, 15, 23, (603,275,0): 35, 12, 20, (603,276,0): 32, 11, 20, (603,277,0): 31, 10, 19, (603,278,0): 30, 10, 19, (603,279,0): 28, 11, 19, (603,280,0): 31, 14, 24, (603,281,0): 29, 13, 23, (603,282,0): 25, 12, 22, (603,283,0): 23, 10, 20, (603,284,0): 20, 8, 18, (603,285,0): 18, 6, 16, (603,286,0): 16, 6, 17, (603,287,0): 16, 6, 17, (603,288,0): 15, 7, 20, (603,289,0): 15, 7, 20, (603,290,0): 15, 7, 20, (603,291,0): 14, 6, 19, (603,292,0): 14, 6, 19, (603,293,0): 13, 5, 18, (603,294,0): 13, 5, 18, (603,295,0): 12, 4, 17, (603,296,0): 14, 6, 19, (603,297,0): 13, 5, 18, (603,298,0): 13, 5, 18, (603,299,0): 12, 4, 17, (603,300,0): 11, 3, 16, (603,301,0): 11, 3, 16, (603,302,0): 11, 3, 16, (603,303,0): 11, 3, 14, (603,304,0): 11, 3, 14, (603,305,0): 11, 4, 12, (603,306,0): 11, 4, 12, (603,307,0): 11, 4, 12, (603,308,0): 11, 4, 12, (603,309,0): 11, 4, 12, (603,310,0): 11, 4, 12, (603,311,0): 11, 4, 12, (603,312,0): 11, 4, 12, (603,313,0): 11, 4, 12, (603,314,0): 11, 4, 12, (603,315,0): 11, 4, 12, (603,316,0): 11, 4, 12, (603,317,0): 11, 4, 12, (603,318,0): 11, 4, 12, (603,319,0): 10, 5, 12, (603,320,0): 8, 3, 10, (603,321,0): 6, 3, 10, (603,322,0): 9, 4, 11, (603,323,0): 9, 4, 11, (603,324,0): 10, 5, 12, (603,325,0): 10, 5, 12, (603,326,0): 12, 5, 13, (603,327,0): 12, 5, 13, (603,328,0): 14, 4, 13, (603,329,0): 15, 5, 14, (603,330,0): 15, 5, 14, (603,331,0): 16, 6, 15, (603,332,0): 17, 5, 15, (603,333,0): 18, 6, 16, (603,334,0): 18, 6, 16, (603,335,0): 19, 6, 15, (603,336,0): 18, 3, 10, (603,337,0): 21, 4, 12, (603,338,0): 22, 7, 14, (603,339,0): 21, 6, 13, (603,340,0): 17, 4, 11, (603,341,0): 15, 4, 10, (603,342,0): 15, 6, 11, (603,343,0): 17, 8, 13, (603,344,0): 15, 6, 11, (603,345,0): 16, 7, 12, (603,346,0): 18, 7, 13, (603,347,0): 20, 7, 14, (603,348,0): 23, 8, 15, (603,349,0): 24, 9, 16, (603,350,0): 26, 9, 17, (603,351,0): 26, 9, 15, (603,352,0): 27, 11, 12, (603,353,0): 28, 12, 12, (603,354,0): 29, 13, 13, (603,355,0): 30, 14, 14, (603,356,0): 31, 15, 15, (603,357,0): 31, 15, 15, (603,358,0): 30, 14, 14, (603,359,0): 29, 13, 13, (603,360,0): 26, 10, 10, (603,361,0): 26, 10, 10, (603,362,0): 26, 10, 10, (603,363,0): 26, 10, 10, (603,364,0): 26, 10, 10, (603,365,0): 26, 10, 10, (603,366,0): 26, 10, 10, (603,367,0): 26, 11, 8, (603,368,0): 33, 15, 11, (603,369,0): 33, 15, 11, (603,370,0): 34, 16, 12, (603,371,0): 34, 16, 12, (603,372,0): 33, 15, 11, (603,373,0): 32, 14, 10, (603,374,0): 31, 13, 9, (603,375,0): 30, 12, 8, (603,376,0): 33, 15, 11, (603,377,0): 33, 15, 11, (603,378,0): 33, 15, 11, (603,379,0): 33, 15, 11, (603,380,0): 33, 15, 11, (603,381,0): 33, 15, 11, (603,382,0): 33, 15, 11, (603,383,0): 34, 15, 11, (603,384,0): 34, 13, 8, (603,385,0): 34, 13, 8, (603,386,0): 34, 13, 8, (603,387,0): 33, 12, 7, (603,388,0): 33, 12, 7, (603,389,0): 33, 12, 7, (603,390,0): 33, 12, 7, (603,391,0): 33, 12, 7, (603,392,0): 33, 12, 7, (603,393,0): 33, 12, 7, (603,394,0): 33, 12, 7, (603,395,0): 32, 11, 6, (603,396,0): 31, 10, 5, (603,397,0): 31, 10, 5, (603,398,0): 31, 10, 5, (603,399,0): 30, 9, 4, (603,400,0): 31, 12, 8, (603,401,0): 31, 12, 8, (603,402,0): 30, 11, 7, (603,403,0): 30, 11, 7, (603,404,0): 29, 11, 9, (603,405,0): 28, 10, 8, (603,406,0): 28, 10, 8, (603,407,0): 28, 10, 8, (603,408,0): 24, 8, 8, (603,409,0): 24, 8, 8, (603,410,0): 23, 9, 9, (603,411,0): 23, 9, 9, (603,412,0): 23, 9, 9, (603,413,0): 23, 9, 9, (603,414,0): 21, 9, 11, (603,415,0): 21, 9, 9, (603,416,0): 21, 9, 9, (603,417,0): 22, 11, 9, (603,418,0): 24, 10, 9, (603,419,0): 25, 11, 10, (603,420,0): 26, 12, 11, (603,421,0): 27, 13, 12, (603,422,0): 29, 13, 13, (603,423,0): 29, 13, 13, (603,424,0): 33, 15, 15, (603,425,0): 33, 15, 15, (603,426,0): 33, 15, 15, (603,427,0): 33, 15, 15, (603,428,0): 34, 14, 15, (603,429,0): 34, 14, 15, (603,430,0): 34, 14, 15, (603,431,0): 33, 15, 15, (603,432,0): 33, 17, 18, (603,433,0): 32, 18, 18, (603,434,0): 31, 17, 17, (603,435,0): 31, 17, 17, (603,436,0): 30, 16, 16, (603,437,0): 30, 16, 16, (603,438,0): 29, 15, 15, (603,439,0): 29, 15, 15, (603,440,0): 27, 13, 13, (603,441,0): 26, 12, 12, (603,442,0): 25, 11, 11, (603,443,0): 25, 11, 11, (603,444,0): 25, 11, 11, (603,445,0): 25, 11, 11, (603,446,0): 26, 12, 12, (603,447,0): 27, 13, 13, (603,448,0): 28, 14, 14, (603,449,0): 28, 14, 14, (603,450,0): 29, 15, 15, (603,451,0): 30, 16, 16, (603,452,0): 31, 17, 17, (603,453,0): 32, 18, 18, (603,454,0): 33, 19, 19, (603,455,0): 33, 19, 19, (603,456,0): 31, 17, 17, (603,457,0): 32, 18, 18, (603,458,0): 33, 19, 19, (603,459,0): 34, 20, 20, (603,460,0): 34, 20, 20, (603,461,0): 33, 19, 19, (603,462,0): 31, 17, 17, (603,463,0): 30, 16, 16, (603,464,0): 30, 16, 16, (603,465,0): 31, 17, 17, (603,466,0): 31, 17, 17, (603,467,0): 31, 17, 17, (603,468,0): 30, 16, 16, (603,469,0): 28, 14, 14, (603,470,0): 27, 13, 13, (603,471,0): 26, 12, 12, (603,472,0): 24, 10, 10, (603,473,0): 23, 9, 9, (603,474,0): 23, 9, 9, (603,475,0): 22, 8, 8, (603,476,0): 22, 8, 8, (603,477,0): 21, 7, 7, (603,478,0): 21, 7, 7, (603,479,0): 19, 7, 7, (603,480,0): 17, 8, 11, (603,481,0): 15, 9, 11, (603,482,0): 14, 8, 10, (603,483,0): 12, 6, 8, (603,484,0): 11, 5, 9, (603,485,0): 10, 4, 8, (603,486,0): 9, 3, 7, (603,487,0): 8, 2, 6, (603,488,0): 9, 2, 9, (603,489,0): 9, 2, 9, (603,490,0): 9, 2, 10, (603,491,0): 9, 2, 10, (603,492,0): 9, 2, 10, (603,493,0): 9, 2, 10, (603,494,0): 9, 1, 12, (603,495,0): 9, 1, 12, (603,496,0): 12, 5, 13, (603,497,0): 12, 5, 13, (603,498,0): 14, 4, 13, (603,499,0): 15, 5, 14, (603,500,0): 15, 5, 13, (603,501,0): 14, 4, 12, (603,502,0): 15, 4, 12, (603,503,0): 15, 4, 10, (603,504,0): 16, 3, 10, (603,505,0): 16, 3, 10, (603,506,0): 16, 4, 8, (603,507,0): 16, 4, 8, (603,508,0): 18, 3, 8, (603,509,0): 18, 3, 6, (603,510,0): 18, 3, 6, (603,511,0): 18, 3, 6, (603,512,0): 20, 3, 9, (603,513,0): 22, 3, 9, (603,514,0): 22, 3, 7, (603,515,0): 22, 3, 7, (603,516,0): 23, 4, 8, (603,517,0): 24, 5, 9, (603,518,0): 24, 5, 7, (603,519,0): 25, 6, 8, (603,520,0): 29, 10, 12, (603,521,0): 30, 12, 12, (603,522,0): 32, 14, 14, (603,523,0): 35, 17, 17, (603,524,0): 37, 19, 17, (603,525,0): 39, 21, 19, (603,526,0): 41, 23, 21, (603,527,0): 42, 23, 19, (603,528,0): 41, 17, 13, (603,529,0): 42, 17, 13, (603,530,0): 43, 15, 12, (603,531,0): 40, 15, 11, (603,532,0): 39, 13, 12, (603,533,0): 37, 13, 11, (603,534,0): 34, 13, 10, (603,535,0): 34, 13, 10, (603,536,0): 32, 12, 11, (603,537,0): 32, 12, 11, (603,538,0): 31, 11, 12, (603,539,0): 29, 11, 11, (603,540,0): 28, 10, 10, (603,541,0): 27, 9, 9, (603,542,0): 26, 7, 9, (603,543,0): 25, 6, 8, (603,544,0): 21, 5, 8, (603,545,0): 21, 5, 8, (603,546,0): 20, 4, 7, (603,547,0): 20, 4, 7, (603,548,0): 20, 4, 7, (603,549,0): 19, 3, 6, (603,550,0): 19, 3, 6, (603,551,0): 19, 3, 6, (603,552,0): 17, 1, 4, (603,553,0): 17, 1, 4, (603,554,0): 18, 2, 5, (603,555,0): 19, 3, 6, (603,556,0): 19, 3, 6, (603,557,0): 20, 4, 7, (603,558,0): 21, 5, 8, (603,559,0): 20, 5, 8, (603,560,0): 20, 5, 10, (603,561,0): 18, 6, 10, (603,562,0): 21, 6, 11, (603,563,0): 21, 6, 11, (603,564,0): 22, 7, 10, (603,565,0): 22, 7, 10, (603,566,0): 24, 8, 11, (603,567,0): 24, 8, 11, (603,568,0): 29, 10, 12, (603,569,0): 30, 11, 13, (603,570,0): 30, 12, 12, (603,571,0): 31, 13, 13, (603,572,0): 33, 13, 14, (603,573,0): 34, 14, 15, (603,574,0): 35, 15, 14, (603,575,0): 34, 16, 14, (603,576,0): 38, 20, 20, (603,577,0): 36, 20, 20, (603,578,0): 36, 20, 20, (603,579,0): 37, 21, 21, (603,580,0): 37, 21, 21, (603,581,0): 38, 22, 22, (603,582,0): 38, 22, 22, (603,583,0): 38, 22, 22, (603,584,0): 37, 21, 21, (603,585,0): 37, 21, 21, (603,586,0): 36, 20, 20, (603,587,0): 35, 19, 19, (603,588,0): 35, 19, 19, (603,589,0): 36, 20, 20, (603,590,0): 37, 21, 21, (603,591,0): 37, 21, 21, (603,592,0): 37, 23, 22, (603,593,0): 37, 23, 22, (603,594,0): 39, 25, 24, (603,595,0): 40, 26, 25, (603,596,0): 41, 27, 26, (603,597,0): 41, 27, 26, (603,598,0): 40, 26, 25, (603,599,0): 40, 26, 25, (604,0,0): 23, 51, 63, (604,1,0): 23, 51, 63, (604,2,0): 23, 51, 63, (604,3,0): 23, 51, 63, (604,4,0): 23, 51, 63, (604,5,0): 23, 51, 63, (604,6,0): 23, 51, 63, (604,7,0): 23, 51, 63, (604,8,0): 21, 49, 61, (604,9,0): 22, 50, 62, (604,10,0): 22, 50, 62, (604,11,0): 22, 50, 62, (604,12,0): 23, 51, 63, (604,13,0): 24, 52, 64, (604,14,0): 24, 52, 64, (604,15,0): 24, 52, 64, (604,16,0): 24, 52, 63, (604,17,0): 25, 53, 64, (604,18,0): 25, 53, 64, (604,19,0): 25, 53, 64, (604,20,0): 27, 54, 65, (604,21,0): 28, 55, 66, (604,22,0): 30, 54, 66, (604,23,0): 30, 54, 66, (604,24,0): 30, 54, 66, (604,25,0): 30, 54, 66, (604,26,0): 31, 53, 66, (604,27,0): 31, 53, 66, (604,28,0): 33, 52, 66, (604,29,0): 33, 52, 66, (604,30,0): 33, 52, 66, (604,31,0): 33, 52, 66, (604,32,0): 33, 55, 68, (604,33,0): 33, 55, 68, (604,34,0): 35, 54, 68, (604,35,0): 35, 54, 68, (604,36,0): 35, 54, 68, (604,37,0): 35, 54, 68, (604,38,0): 36, 54, 68, (604,39,0): 36, 54, 68, (604,40,0): 39, 55, 70, (604,41,0): 39, 55, 70, (604,42,0): 39, 55, 70, (604,43,0): 39, 55, 70, (604,44,0): 42, 55, 71, (604,45,0): 42, 55, 71, (604,46,0): 43, 56, 72, (604,47,0): 44, 57, 73, (604,48,0): 44, 57, 73, (604,49,0): 44, 57, 73, (604,50,0): 43, 56, 72, (604,51,0): 42, 55, 71, (604,52,0): 42, 55, 71, (604,53,0): 42, 55, 71, (604,54,0): 44, 57, 73, (604,55,0): 45, 58, 74, (604,56,0): 50, 63, 79, (604,57,0): 50, 63, 79, (604,58,0): 49, 62, 78, (604,59,0): 49, 62, 78, (604,60,0): 49, 62, 78, (604,61,0): 50, 63, 79, (604,62,0): 52, 65, 81, (604,63,0): 53, 67, 80, (604,64,0): 53, 62, 77, (604,65,0): 53, 63, 75, (604,66,0): 52, 62, 74, (604,67,0): 52, 62, 74, (604,68,0): 52, 62, 74, (604,69,0): 52, 62, 74, (604,70,0): 52, 62, 74, (604,71,0): 52, 62, 74, (604,72,0): 52, 62, 74, (604,73,0): 53, 63, 75, (604,74,0): 53, 63, 75, (604,75,0): 53, 63, 75, (604,76,0): 54, 64, 76, (604,77,0): 55, 65, 77, (604,78,0): 55, 65, 77, (604,79,0): 53, 65, 79, (604,80,0): 52, 65, 82, (604,81,0): 52, 65, 82, (604,82,0): 52, 65, 84, (604,83,0): 50, 66, 82, (604,84,0): 50, 65, 84, (604,85,0): 50, 66, 82, (604,86,0): 49, 64, 83, (604,87,0): 48, 65, 81, (604,88,0): 51, 68, 86, (604,89,0): 50, 69, 84, (604,90,0): 49, 68, 85, (604,91,0): 48, 67, 82, (604,92,0): 48, 67, 84, (604,93,0): 47, 69, 83, (604,94,0): 48, 69, 86, (604,95,0): 48, 69, 86, (604,96,0): 48, 66, 86, (604,97,0): 49, 66, 86, (604,98,0): 49, 66, 86, (604,99,0): 49, 66, 86, (604,100,0): 49, 66, 86, (604,101,0): 49, 66, 86, (604,102,0): 49, 66, 86, (604,103,0): 49, 66, 86, (604,104,0): 47, 64, 84, (604,105,0): 47, 64, 84, (604,106,0): 47, 64, 84, (604,107,0): 47, 64, 84, (604,108,0): 47, 64, 84, (604,109,0): 47, 64, 84, (604,110,0): 47, 64, 84, (604,111,0): 44, 65, 84, (604,112,0): 38, 65, 84, (604,113,0): 36, 67, 85, (604,114,0): 39, 68, 86, (604,115,0): 39, 68, 86, (604,116,0): 41, 68, 87, (604,117,0): 41, 68, 89, (604,118,0): 41, 68, 89, (604,119,0): 42, 66, 90, (604,120,0): 43, 67, 91, (604,121,0): 45, 66, 93, (604,122,0): 45, 66, 93, (604,123,0): 46, 67, 94, (604,124,0): 47, 66, 96, (604,125,0): 48, 67, 97, (604,126,0): 50, 67, 97, (604,127,0): 50, 66, 99, (604,128,0): 50, 68, 104, (604,129,0): 50, 68, 106, (604,130,0): 48, 68, 103, (604,131,0): 46, 69, 101, (604,132,0): 44, 69, 99, (604,133,0): 43, 70, 99, (604,134,0): 40, 70, 96, (604,135,0): 39, 71, 96, (604,136,0): 38, 69, 97, (604,137,0): 37, 68, 96, (604,138,0): 37, 68, 97, (604,139,0): 37, 66, 98, (604,140,0): 37, 66, 100, (604,141,0): 38, 64, 101, (604,142,0): 38, 63, 103, (604,143,0): 38, 63, 104, (604,144,0): 37, 65, 104, (604,145,0): 36, 66, 104, (604,146,0): 36, 66, 104, (604,147,0): 36, 66, 104, (604,148,0): 36, 65, 105, (604,149,0): 36, 65, 105, (604,150,0): 34, 66, 107, (604,151,0): 34, 66, 107, (604,152,0): 35, 68, 109, (604,153,0): 35, 68, 109, (604,154,0): 36, 69, 112, (604,155,0): 35, 70, 112, (604,156,0): 36, 70, 115, (604,157,0): 36, 70, 115, (604,158,0): 37, 71, 116, (604,159,0): 37, 71, 116, (604,160,0): 40, 74, 119, (604,161,0): 39, 73, 118, (604,162,0): 38, 72, 117, (604,163,0): 37, 71, 116, (604,164,0): 37, 71, 116, (604,165,0): 38, 72, 117, (604,166,0): 39, 73, 118, (604,167,0): 40, 74, 119, (604,168,0): 38, 72, 117, (604,169,0): 39, 73, 118, (604,170,0): 39, 73, 118, (604,171,0): 39, 73, 118, (604,172,0): 40, 74, 119, (604,173,0): 41, 75, 120, (604,174,0): 41, 75, 120, (604,175,0): 41, 75, 120, (604,176,0): 40, 71, 118, (604,177,0): 40, 71, 118, (604,178,0): 41, 72, 119, (604,179,0): 42, 73, 120, (604,180,0): 42, 73, 120, (604,181,0): 43, 74, 121, (604,182,0): 43, 74, 121, (604,183,0): 44, 75, 122, (604,184,0): 45, 76, 123, (604,185,0): 45, 76, 123, (604,186,0): 45, 76, 123, (604,187,0): 46, 77, 124, (604,188,0): 47, 78, 125, (604,189,0): 47, 78, 125, (604,190,0): 47, 78, 125, (604,191,0): 48, 79, 126, (604,192,0): 49, 79, 131, (604,193,0): 48, 78, 130, (604,194,0): 48, 78, 130, (604,195,0): 47, 77, 129, (604,196,0): 46, 76, 128, (604,197,0): 46, 76, 128, (604,198,0): 45, 75, 127, (604,199,0): 45, 75, 127, (604,200,0): 51, 81, 133, (604,201,0): 51, 81, 133, (604,202,0): 52, 82, 134, (604,203,0): 52, 82, 134, (604,204,0): 53, 83, 135, (604,205,0): 53, 83, 135, (604,206,0): 54, 84, 136, (604,207,0): 53, 84, 138, (604,208,0): 55, 85, 145, (604,209,0): 54, 86, 147, (604,210,0): 54, 86, 147, (604,211,0): 55, 87, 148, (604,212,0): 55, 87, 148, (604,213,0): 56, 88, 149, (604,214,0): 56, 88, 149, (604,215,0): 56, 88, 149, (604,216,0): 57, 89, 150, (604,217,0): 57, 89, 150, (604,218,0): 57, 89, 150, (604,219,0): 58, 90, 151, (604,220,0): 58, 90, 151, (604,221,0): 59, 91, 152, (604,222,0): 59, 91, 152, (604,223,0): 59, 91, 150, (604,224,0): 60, 92, 151, (604,225,0): 60, 92, 149, (604,226,0): 60, 92, 149, (604,227,0): 60, 92, 149, (604,228,0): 60, 92, 151, (604,229,0): 60, 92, 151, (604,230,0): 60, 92, 151, (604,231,0): 60, 92, 151, (604,232,0): 62, 94, 155, (604,233,0): 62, 94, 155, (604,234,0): 61, 92, 156, (604,235,0): 61, 92, 156, (604,236,0): 61, 92, 156, (604,237,0): 62, 93, 157, (604,238,0): 64, 95, 160, (604,239,0): 65, 96, 160, (604,240,0): 65, 95, 155, (604,241,0): 65, 96, 153, (604,242,0): 65, 95, 155, (604,243,0): 66, 97, 154, (604,244,0): 67, 96, 156, (604,245,0): 68, 97, 155, (604,246,0): 70, 96, 157, (604,247,0): 70, 96, 155, (604,248,0): 68, 94, 155, (604,249,0): 68, 94, 153, (604,250,0): 70, 94, 156, (604,251,0): 71, 95, 155, (604,252,0): 74, 95, 158, (604,253,0): 75, 97, 157, (604,254,0): 76, 97, 160, (604,255,0): 77, 97, 156, (604,256,0): 86, 98, 156, (604,257,0): 86, 97, 153, (604,258,0): 85, 97, 155, (604,259,0): 87, 99, 157, (604,260,0): 88, 100, 158, (604,261,0): 89, 98, 153, (604,262,0): 90, 93, 146, (604,263,0): 90, 88, 135, (604,264,0): 88, 80, 119, (604,265,0): 87, 72, 103, (604,266,0): 80, 60, 85, (604,267,0): 74, 51, 71, (604,268,0): 67, 43, 57, (604,269,0): 60, 36, 49, (604,270,0): 52, 29, 39, (604,271,0): 47, 24, 34, (604,272,0): 47, 21, 30, (604,273,0): 45, 19, 28, (604,274,0): 40, 17, 25, (604,275,0): 37, 14, 22, (604,276,0): 34, 13, 22, (604,277,0): 33, 12, 21, (604,278,0): 31, 11, 20, (604,279,0): 29, 12, 20, (604,280,0): 29, 12, 22, (604,281,0): 28, 12, 22, (604,282,0): 25, 12, 22, (604,283,0): 23, 10, 20, (604,284,0): 20, 8, 18, (604,285,0): 18, 6, 16, (604,286,0): 15, 5, 16, (604,287,0): 14, 4, 15, (604,288,0): 15, 7, 20, (604,289,0): 14, 6, 19, (604,290,0): 14, 6, 19, (604,291,0): 13, 5, 18, (604,292,0): 13, 5, 18, (604,293,0): 12, 4, 17, (604,294,0): 12, 4, 17, (604,295,0): 12, 4, 17, (604,296,0): 13, 5, 18, (604,297,0): 13, 5, 18, (604,298,0): 13, 5, 18, (604,299,0): 13, 5, 18, (604,300,0): 12, 4, 17, (604,301,0): 11, 3, 16, (604,302,0): 11, 3, 16, (604,303,0): 10, 2, 13, (604,304,0): 10, 2, 13, (604,305,0): 10, 3, 11, (604,306,0): 10, 3, 11, (604,307,0): 10, 3, 11, (604,308,0): 10, 3, 11, (604,309,0): 10, 3, 11, (604,310,0): 10, 3, 11, (604,311,0): 10, 3, 11, (604,312,0): 11, 4, 12, (604,313,0): 11, 4, 12, (604,314,0): 11, 4, 12, (604,315,0): 11, 4, 12, (604,316,0): 11, 4, 12, (604,317,0): 11, 4, 12, (604,318,0): 11, 4, 12, (604,319,0): 10, 5, 12, (604,320,0): 8, 3, 10, (604,321,0): 6, 3, 10, (604,322,0): 9, 4, 11, (604,323,0): 9, 4, 11, (604,324,0): 10, 5, 12, (604,325,0): 10, 5, 12, (604,326,0): 12, 5, 13, (604,327,0): 12, 5, 13, (604,328,0): 14, 4, 13, (604,329,0): 14, 4, 13, (604,330,0): 14, 4, 13, (604,331,0): 15, 5, 14, (604,332,0): 16, 4, 14, (604,333,0): 17, 5, 15, (604,334,0): 17, 5, 15, (604,335,0): 19, 6, 15, (604,336,0): 19, 2, 10, (604,337,0): 21, 4, 10, (604,338,0): 22, 7, 12, (604,339,0): 21, 6, 11, (604,340,0): 17, 5, 9, (604,341,0): 15, 4, 8, (604,342,0): 15, 6, 9, (604,343,0): 17, 8, 11, (604,344,0): 16, 7, 10, (604,345,0): 16, 7, 10, (604,346,0): 18, 7, 11, (604,347,0): 20, 8, 12, (604,348,0): 23, 8, 13, (604,349,0): 24, 9, 14, (604,350,0): 26, 9, 15, (604,351,0): 29, 10, 14, (604,352,0): 27, 11, 12, (604,353,0): 28, 12, 12, (604,354,0): 29, 13, 13, (604,355,0): 30, 14, 14, (604,356,0): 31, 15, 15, (604,357,0): 31, 15, 15, (604,358,0): 30, 14, 14, (604,359,0): 29, 13, 13, (604,360,0): 30, 14, 14, (604,361,0): 30, 14, 14, (604,362,0): 30, 14, 14, (604,363,0): 30, 14, 14, (604,364,0): 30, 14, 14, (604,365,0): 30, 14, 14, (604,366,0): 30, 14, 14, (604,367,0): 30, 15, 12, (604,368,0): 34, 16, 12, (604,369,0): 35, 16, 10, (604,370,0): 36, 17, 11, (604,371,0): 36, 17, 11, (604,372,0): 36, 17, 11, (604,373,0): 34, 15, 9, (604,374,0): 33, 14, 8, (604,375,0): 32, 13, 7, (604,376,0): 34, 15, 9, (604,377,0): 34, 15, 9, (604,378,0): 34, 15, 9, (604,379,0): 34, 15, 9, (604,380,0): 34, 15, 9, (604,381,0): 34, 15, 9, (604,382,0): 34, 15, 9, (604,383,0): 34, 15, 9, (604,384,0): 33, 12, 7, (604,385,0): 33, 12, 7, (604,386,0): 33, 12, 7, (604,387,0): 33, 12, 7, (604,388,0): 33, 12, 7, (604,389,0): 34, 13, 8, (604,390,0): 34, 13, 8, (604,391,0): 34, 13, 8, (604,392,0): 34, 13, 8, (604,393,0): 33, 12, 7, (604,394,0): 33, 12, 7, (604,395,0): 33, 12, 7, (604,396,0): 32, 11, 6, (604,397,0): 31, 10, 5, (604,398,0): 31, 10, 5, (604,399,0): 31, 10, 5, (604,400,0): 31, 12, 8, (604,401,0): 31, 12, 8, (604,402,0): 30, 11, 7, (604,403,0): 30, 11, 7, (604,404,0): 28, 10, 8, (604,405,0): 27, 9, 7, (604,406,0): 27, 9, 7, (604,407,0): 26, 8, 6, (604,408,0): 23, 7, 7, (604,409,0): 23, 7, 7, (604,410,0): 22, 8, 8, (604,411,0): 22, 8, 8, (604,412,0): 22, 8, 8, (604,413,0): 22, 8, 8, (604,414,0): 20, 8, 10, (604,415,0): 20, 8, 8, (604,416,0): 19, 9, 8, (604,417,0): 19, 9, 7, (604,418,0): 21, 10, 8, (604,419,0): 23, 12, 10, (604,420,0): 26, 12, 11, (604,421,0): 27, 13, 12, (604,422,0): 29, 13, 13, (604,423,0): 29, 13, 13, (604,424,0): 33, 15, 15, (604,425,0): 33, 15, 15, (604,426,0): 34, 14, 15, (604,427,0): 34, 14, 15, (604,428,0): 35, 13, 15, (604,429,0): 35, 13, 15, (604,430,0): 35, 13, 15, (604,431,0): 34, 14, 15, (604,432,0): 32, 16, 17, (604,433,0): 30, 16, 16, (604,434,0): 30, 16, 16, (604,435,0): 30, 16, 16, (604,436,0): 29, 15, 15, (604,437,0): 28, 14, 14, (604,438,0): 28, 14, 14, (604,439,0): 28, 14, 14, (604,440,0): 26, 12, 12, (604,441,0): 25, 11, 11, (604,442,0): 24, 10, 10, (604,443,0): 23, 9, 9, (604,444,0): 23, 9, 9, (604,445,0): 24, 10, 10, (604,446,0): 25, 11, 11, (604,447,0): 26, 12, 12, (604,448,0): 27, 13, 13, (604,449,0): 27, 13, 13, (604,450,0): 28, 14, 14, (604,451,0): 29, 15, 15, (604,452,0): 30, 16, 16, (604,453,0): 31, 17, 17, (604,454,0): 32, 18, 18, (604,455,0): 32, 18, 18, (604,456,0): 30, 16, 16, (604,457,0): 32, 18, 18, (604,458,0): 34, 20, 20, (604,459,0): 36, 22, 22, (604,460,0): 36, 22, 22, (604,461,0): 34, 20, 20, (604,462,0): 32, 18, 18, (604,463,0): 31, 17, 17, (604,464,0): 33, 19, 19, (604,465,0): 33, 19, 19, (604,466,0): 33, 19, 19, (604,467,0): 33, 19, 19, (604,468,0): 31, 17, 17, (604,469,0): 30, 16, 16, (604,470,0): 28, 14, 14, (604,471,0): 26, 12, 12, (604,472,0): 24, 10, 10, (604,473,0): 24, 10, 10, (604,474,0): 24, 10, 10, (604,475,0): 23, 9, 9, (604,476,0): 23, 9, 9, (604,477,0): 22, 8, 8, (604,478,0): 22, 8, 8, (604,479,0): 19, 7, 7, (604,480,0): 18, 9, 12, (604,481,0): 15, 9, 11, (604,482,0): 14, 8, 10, (604,483,0): 13, 7, 9, (604,484,0): 12, 6, 10, (604,485,0): 10, 4, 8, (604,486,0): 9, 3, 7, (604,487,0): 9, 3, 7, (604,488,0): 9, 2, 9, (604,489,0): 9, 2, 9, (604,490,0): 9, 2, 10, (604,491,0): 9, 2, 10, (604,492,0): 9, 2, 10, (604,493,0): 9, 2, 10, (604,494,0): 9, 1, 12, (604,495,0): 9, 1, 12, (604,496,0): 12, 4, 15, (604,497,0): 12, 4, 15, (604,498,0): 11, 4, 12, (604,499,0): 11, 4, 12, (604,500,0): 13, 3, 12, (604,501,0): 13, 3, 11, (604,502,0): 14, 4, 12, (604,503,0): 14, 4, 12, (604,504,0): 15, 4, 10, (604,505,0): 15, 4, 10, (604,506,0): 16, 3, 10, (604,507,0): 16, 4, 8, (604,508,0): 16, 4, 8, (604,509,0): 16, 4, 8, (604,510,0): 18, 3, 8, (604,511,0): 18, 3, 8, (604,512,0): 18, 1, 7, (604,513,0): 19, 2, 8, (604,514,0): 19, 2, 8, (604,515,0): 20, 3, 9, (604,516,0): 21, 5, 8, (604,517,0): 21, 5, 8, (604,518,0): 21, 5, 8, (604,519,0): 21, 5, 6, (604,520,0): 25, 9, 10, (604,521,0): 26, 10, 11, (604,522,0): 27, 11, 11, (604,523,0): 29, 13, 13, (604,524,0): 32, 16, 16, (604,525,0): 34, 18, 18, (604,526,0): 36, 21, 18, (604,527,0): 40, 22, 18, (604,528,0): 39, 18, 13, (604,529,0): 40, 17, 11, (604,530,0): 41, 16, 12, (604,531,0): 39, 15, 11, (604,532,0): 37, 13, 9, (604,533,0): 36, 12, 8, (604,534,0): 34, 13, 10, (604,535,0): 33, 12, 9, (604,536,0): 34, 13, 12, (604,537,0): 33, 12, 11, (604,538,0): 32, 11, 10, (604,539,0): 30, 10, 9, (604,540,0): 29, 9, 10, (604,541,0): 28, 8, 9, (604,542,0): 27, 7, 8, (604,543,0): 27, 7, 8, (604,544,0): 25, 6, 8, (604,545,0): 23, 7, 8, (604,546,0): 22, 6, 7, (604,547,0): 21, 5, 6, (604,548,0): 21, 5, 6, (604,549,0): 20, 4, 5, (604,550,0): 20, 4, 5, (604,551,0): 19, 3, 4, (604,552,0): 18, 2, 3, (604,553,0): 18, 2, 3, (604,554,0): 18, 2, 3, (604,555,0): 19, 3, 4, (604,556,0): 19, 3, 4, (604,557,0): 20, 4, 5, (604,558,0): 20, 4, 5, (604,559,0): 19, 4, 7, (604,560,0): 19, 4, 9, (604,561,0): 17, 5, 9, (604,562,0): 20, 5, 10, (604,563,0): 20, 5, 10, (604,564,0): 21, 6, 9, (604,565,0): 21, 6, 9, (604,566,0): 23, 7, 10, (604,567,0): 23, 7, 10, (604,568,0): 28, 9, 11, (604,569,0): 28, 9, 11, (604,570,0): 29, 11, 11, (604,571,0): 30, 12, 12, (604,572,0): 33, 13, 14, (604,573,0): 34, 14, 15, (604,574,0): 35, 15, 14, (604,575,0): 34, 16, 14, (604,576,0): 34, 16, 16, (604,577,0): 33, 17, 17, (604,578,0): 34, 18, 18, (604,579,0): 36, 20, 20, (604,580,0): 37, 21, 21, (604,581,0): 39, 23, 23, (604,582,0): 40, 24, 24, (604,583,0): 41, 25, 25, (604,584,0): 36, 20, 20, (604,585,0): 35, 19, 19, (604,586,0): 34, 18, 18, (604,587,0): 34, 18, 18, (604,588,0): 34, 18, 18, (604,589,0): 34, 18, 18, (604,590,0): 35, 19, 19, (604,591,0): 36, 20, 20, (604,592,0): 36, 22, 21, (604,593,0): 37, 23, 22, (604,594,0): 39, 25, 24, (604,595,0): 40, 26, 25, (604,596,0): 41, 27, 26, (604,597,0): 40, 26, 25, (604,598,0): 39, 25, 24, (604,599,0): 38, 24, 23, (605,0,0): 22, 50, 62, (605,1,0): 22, 50, 62, (605,2,0): 22, 50, 62, (605,3,0): 22, 50, 62, (605,4,0): 22, 50, 62, (605,5,0): 22, 50, 62, (605,6,0): 22, 50, 62, (605,7,0): 22, 50, 62, (605,8,0): 21, 49, 61, (605,9,0): 21, 49, 61, (605,10,0): 21, 49, 61, (605,11,0): 22, 50, 62, (605,12,0): 22, 50, 62, (605,13,0): 23, 51, 63, (605,14,0): 23, 51, 63, (605,15,0): 24, 52, 64, (605,16,0): 24, 52, 63, (605,17,0): 24, 52, 63, (605,18,0): 24, 52, 63, (605,19,0): 25, 53, 64, (605,20,0): 26, 53, 64, (605,21,0): 27, 54, 65, (605,22,0): 29, 53, 65, (605,23,0): 30, 54, 66, (605,24,0): 30, 54, 66, (605,25,0): 30, 54, 66, (605,26,0): 31, 53, 66, (605,27,0): 31, 53, 66, (605,28,0): 33, 52, 66, (605,29,0): 33, 52, 66, (605,30,0): 33, 52, 66, (605,31,0): 33, 52, 66, (605,32,0): 32, 54, 67, (605,33,0): 32, 54, 67, (605,34,0): 34, 53, 67, (605,35,0): 34, 53, 67, (605,36,0): 34, 53, 67, (605,37,0): 34, 53, 67, (605,38,0): 35, 53, 67, (605,39,0): 35, 53, 67, (605,40,0): 39, 55, 70, (605,41,0): 39, 55, 70, (605,42,0): 38, 54, 69, (605,43,0): 38, 54, 69, (605,44,0): 40, 53, 69, (605,45,0): 42, 55, 71, (605,46,0): 43, 56, 72, (605,47,0): 44, 57, 73, (605,48,0): 43, 56, 72, (605,49,0): 44, 57, 73, (605,50,0): 44, 57, 73, (605,51,0): 42, 55, 71, (605,52,0): 41, 54, 70, (605,53,0): 41, 54, 70, (605,54,0): 43, 56, 72, (605,55,0): 45, 58, 74, (605,56,0): 50, 63, 79, (605,57,0): 49, 62, 78, (605,58,0): 49, 62, 78, (605,59,0): 48, 61, 77, (605,60,0): 49, 62, 78, (605,61,0): 50, 63, 79, (605,62,0): 52, 65, 81, (605,63,0): 53, 67, 80, (605,64,0): 51, 63, 77, (605,65,0): 53, 63, 75, (605,66,0): 52, 62, 74, (605,67,0): 52, 62, 74, (605,68,0): 51, 61, 73, (605,69,0): 51, 61, 73, (605,70,0): 51, 61, 73, (605,71,0): 51, 61, 73, (605,72,0): 52, 62, 74, (605,73,0): 52, 62, 74, (605,74,0): 52, 62, 74, (605,75,0): 53, 63, 75, (605,76,0): 53, 63, 75, (605,77,0): 54, 64, 76, (605,78,0): 54, 64, 76, (605,79,0): 53, 65, 79, (605,80,0): 49, 65, 81, (605,81,0): 48, 65, 83, (605,82,0): 49, 64, 85, (605,83,0): 47, 64, 82, (605,84,0): 47, 64, 84, (605,85,0): 46, 63, 81, (605,86,0): 46, 63, 83, (605,87,0): 45, 64, 81, (605,88,0): 48, 66, 86, (605,89,0): 45, 66, 83, (605,90,0): 44, 65, 84, (605,91,0): 42, 65, 81, (605,92,0): 43, 64, 83, (605,93,0): 43, 66, 82, (605,94,0): 44, 67, 85, (605,95,0): 45, 68, 86, (605,96,0): 44, 65, 86, (605,97,0): 46, 64, 86, (605,98,0): 46, 64, 88, (605,99,0): 46, 64, 86, (605,100,0): 46, 64, 88, (605,101,0): 46, 64, 86, (605,102,0): 46, 64, 88, (605,103,0): 46, 64, 86, (605,104,0): 44, 62, 86, (605,105,0): 44, 62, 84, (605,106,0): 44, 62, 86, (605,107,0): 44, 62, 84, (605,108,0): 44, 62, 86, (605,109,0): 44, 62, 84, (605,110,0): 44, 62, 86, (605,111,0): 41, 63, 86, (605,112,0): 33, 64, 84, (605,113,0): 31, 66, 85, (605,114,0): 34, 66, 87, (605,115,0): 36, 69, 88, (605,116,0): 37, 68, 89, (605,117,0): 39, 67, 89, (605,118,0): 38, 66, 88, (605,119,0): 39, 65, 88, (605,120,0): 39, 65, 90, (605,121,0): 41, 65, 91, (605,122,0): 43, 64, 91, (605,123,0): 44, 65, 92, (605,124,0): 45, 64, 94, (605,125,0): 46, 65, 95, (605,126,0): 48, 65, 95, (605,127,0): 48, 64, 97, (605,128,0): 48, 66, 104, (605,129,0): 47, 65, 105, (605,130,0): 46, 66, 103, (605,131,0): 43, 66, 100, (605,132,0): 42, 67, 98, (605,133,0): 38, 68, 96, (605,134,0): 38, 68, 94, (605,135,0): 37, 69, 94, (605,136,0): 34, 68, 95, (605,137,0): 34, 68, 95, (605,138,0): 33, 66, 97, (605,139,0): 35, 66, 97, (605,140,0): 34, 64, 100, (605,141,0): 35, 63, 100, (605,142,0): 34, 62, 102, (605,143,0): 34, 62, 102, (605,144,0): 35, 65, 103, (605,145,0): 35, 65, 103, (605,146,0): 35, 65, 103, (605,147,0): 35, 65, 103, (605,148,0): 35, 64, 104, (605,149,0): 35, 64, 104, (605,150,0): 33, 65, 106, (605,151,0): 33, 65, 106, (605,152,0): 34, 67, 108, (605,153,0): 34, 67, 108, (605,154,0): 34, 69, 111, (605,155,0): 34, 69, 111, (605,156,0): 35, 69, 114, (605,157,0): 35, 69, 114, (605,158,0): 36, 70, 115, (605,159,0): 36, 70, 115, (605,160,0): 38, 72, 117, (605,161,0): 37, 71, 116, (605,162,0): 36, 70, 115, (605,163,0): 35, 69, 114, (605,164,0): 35, 69, 114, (605,165,0): 36, 70, 115, (605,166,0): 37, 71, 116, (605,167,0): 38, 72, 117, (605,168,0): 37, 71, 116, (605,169,0): 37, 71, 116, (605,170,0): 37, 71, 116, (605,171,0): 38, 72, 117, (605,172,0): 38, 72, 117, (605,173,0): 39, 73, 118, (605,174,0): 39, 73, 118, (605,175,0): 39, 73, 118, (605,176,0): 38, 69, 116, (605,177,0): 39, 70, 117, (605,178,0): 39, 70, 117, (605,179,0): 40, 71, 118, (605,180,0): 41, 72, 119, (605,181,0): 42, 73, 120, (605,182,0): 43, 74, 121, (605,183,0): 44, 75, 122, (605,184,0): 43, 74, 121, (605,185,0): 43, 74, 121, (605,186,0): 44, 75, 122, (605,187,0): 44, 75, 122, (605,188,0): 45, 76, 123, (605,189,0): 45, 76, 123, (605,190,0): 46, 77, 124, (605,191,0): 46, 77, 124, (605,192,0): 47, 77, 129, (605,193,0): 47, 77, 129, (605,194,0): 47, 77, 129, (605,195,0): 46, 76, 128, (605,196,0): 46, 76, 128, (605,197,0): 46, 76, 128, (605,198,0): 46, 76, 128, (605,199,0): 45, 75, 127, (605,200,0): 50, 80, 132, (605,201,0): 50, 80, 132, (605,202,0): 50, 80, 132, (605,203,0): 51, 81, 133, (605,204,0): 52, 82, 134, (605,205,0): 52, 82, 134, (605,206,0): 52, 82, 134, (605,207,0): 52, 83, 137, (605,208,0): 53, 83, 143, (605,209,0): 53, 85, 146, (605,210,0): 53, 85, 146, (605,211,0): 53, 85, 146, (605,212,0): 54, 86, 147, (605,213,0): 55, 87, 148, (605,214,0): 55, 87, 148, (605,215,0): 55, 87, 148, (605,216,0): 55, 87, 148, (605,217,0): 56, 88, 149, (605,218,0): 56, 88, 149, (605,219,0): 56, 88, 149, (605,220,0): 57, 89, 150, (605,221,0): 58, 90, 151, (605,222,0): 58, 90, 151, (605,223,0): 58, 90, 149, (605,224,0): 59, 91, 150, (605,225,0): 59, 91, 148, (605,226,0): 59, 91, 148, (605,227,0): 59, 91, 148, (605,228,0): 59, 91, 150, (605,229,0): 59, 91, 150, (605,230,0): 59, 91, 150, (605,231,0): 59, 91, 150, (605,232,0): 60, 92, 153, (605,233,0): 60, 92, 153, (605,234,0): 59, 90, 154, (605,235,0): 59, 90, 154, (605,236,0): 59, 90, 154, (605,237,0): 61, 92, 156, (605,238,0): 62, 93, 158, (605,239,0): 63, 94, 158, (605,240,0): 62, 92, 152, (605,241,0): 63, 94, 151, (605,242,0): 63, 94, 151, (605,243,0): 63, 94, 151, (605,244,0): 65, 94, 152, (605,245,0): 65, 94, 152, (605,246,0): 68, 94, 153, (605,247,0): 68, 94, 153, (605,248,0): 66, 92, 151, (605,249,0): 67, 93, 152, (605,250,0): 69, 93, 153, (605,251,0): 70, 94, 154, (605,252,0): 73, 95, 155, (605,253,0): 74, 96, 156, (605,254,0): 75, 97, 157, (605,255,0): 77, 96, 154, (605,256,0): 84, 95, 151, (605,257,0): 84, 93, 148, (605,258,0): 83, 94, 150, (605,259,0): 84, 96, 154, (605,260,0): 87, 97, 156, (605,261,0): 87, 96, 153, (605,262,0): 88, 91, 144, (605,263,0): 88, 86, 133, (605,264,0): 85, 77, 116, (605,265,0): 83, 68, 101, (605,266,0): 76, 56, 81, (605,267,0): 69, 46, 66, (605,268,0): 63, 39, 55, (605,269,0): 57, 33, 46, (605,270,0): 51, 28, 38, (605,271,0): 47, 24, 34, (605,272,0): 49, 23, 32, (605,273,0): 47, 21, 30, (605,274,0): 42, 19, 27, (605,275,0): 39, 16, 24, (605,276,0): 35, 14, 23, (605,277,0): 33, 12, 21, (605,278,0): 32, 12, 21, (605,279,0): 29, 12, 20, (605,280,0): 27, 10, 20, (605,281,0): 26, 10, 20, (605,282,0): 24, 11, 21, (605,283,0): 23, 10, 20, (605,284,0): 21, 9, 19, (605,285,0): 19, 7, 17, (605,286,0): 16, 6, 17, (605,287,0): 14, 4, 15, (605,288,0): 14, 6, 19, (605,289,0): 14, 6, 19, (605,290,0): 14, 6, 19, (605,291,0): 13, 5, 18, (605,292,0): 12, 4, 17, (605,293,0): 12, 4, 17, (605,294,0): 12, 4, 17, (605,295,0): 11, 3, 16, (605,296,0): 12, 4, 17, (605,297,0): 13, 5, 18, (605,298,0): 13, 5, 18, (605,299,0): 13, 5, 18, (605,300,0): 13, 5, 18, (605,301,0): 12, 4, 17, (605,302,0): 10, 2, 15, (605,303,0): 9, 1, 12, (605,304,0): 10, 2, 13, (605,305,0): 10, 3, 11, (605,306,0): 10, 3, 11, (605,307,0): 10, 3, 11, (605,308,0): 10, 3, 11, (605,309,0): 10, 3, 11, (605,310,0): 10, 3, 11, (605,311,0): 10, 3, 11, (605,312,0): 11, 4, 12, (605,313,0): 11, 4, 12, (605,314,0): 11, 4, 12, (605,315,0): 11, 4, 12, (605,316,0): 11, 4, 12, (605,317,0): 11, 4, 12, (605,318,0): 11, 4, 12, (605,319,0): 10, 5, 12, (605,320,0): 8, 3, 10, (605,321,0): 6, 3, 10, (605,322,0): 9, 4, 11, (605,323,0): 9, 4, 11, (605,324,0): 10, 5, 12, (605,325,0): 10, 5, 12, (605,326,0): 12, 5, 13, (605,327,0): 12, 5, 13, (605,328,0): 13, 3, 12, (605,329,0): 14, 4, 13, (605,330,0): 14, 4, 13, (605,331,0): 14, 4, 13, (605,332,0): 16, 4, 14, (605,333,0): 17, 5, 15, (605,334,0): 17, 5, 15, (605,335,0): 18, 5, 14, (605,336,0): 20, 3, 11, (605,337,0): 24, 5, 11, (605,338,0): 24, 7, 13, (605,339,0): 22, 7, 12, (605,340,0): 17, 5, 9, (605,341,0): 16, 4, 8, (605,342,0): 17, 6, 10, (605,343,0): 18, 9, 12, (605,344,0): 17, 8, 11, (605,345,0): 18, 7, 11, (605,346,0): 20, 8, 12, (605,347,0): 21, 9, 13, (605,348,0): 24, 9, 14, (605,349,0): 26, 9, 15, (605,350,0): 29, 10, 16, (605,351,0): 29, 10, 14, (605,352,0): 26, 10, 11, (605,353,0): 27, 11, 11, (605,354,0): 28, 12, 12, (605,355,0): 30, 14, 14, (605,356,0): 30, 14, 14, (605,357,0): 30, 14, 14, (605,358,0): 29, 13, 13, (605,359,0): 29, 13, 13, (605,360,0): 31, 15, 15, (605,361,0): 31, 15, 15, (605,362,0): 32, 16, 16, (605,363,0): 32, 16, 16, (605,364,0): 33, 17, 17, (605,365,0): 33, 17, 17, (605,366,0): 33, 17, 17, (605,367,0): 34, 19, 16, (605,368,0): 36, 17, 13, (605,369,0): 36, 17, 11, (605,370,0): 37, 18, 12, (605,371,0): 37, 18, 12, (605,372,0): 37, 18, 12, (605,373,0): 35, 16, 10, (605,374,0): 34, 15, 9, (605,375,0): 33, 14, 8, (605,376,0): 33, 14, 8, (605,377,0): 33, 14, 8, (605,378,0): 33, 14, 8, (605,379,0): 33, 14, 8, (605,380,0): 33, 14, 8, (605,381,0): 33, 14, 8, (605,382,0): 33, 14, 8, (605,383,0): 33, 14, 8, (605,384,0): 31, 10, 5, (605,385,0): 32, 11, 6, (605,386,0): 32, 11, 6, (605,387,0): 32, 11, 6, (605,388,0): 33, 12, 7, (605,389,0): 33, 12, 7, (605,390,0): 34, 13, 8, (605,391,0): 34, 13, 8, (605,392,0): 34, 13, 8, (605,393,0): 34, 13, 8, (605,394,0): 34, 13, 8, (605,395,0): 33, 12, 7, (605,396,0): 33, 12, 7, (605,397,0): 32, 11, 6, (605,398,0): 32, 11, 6, (605,399,0): 31, 10, 5, (605,400,0): 31, 12, 8, (605,401,0): 31, 12, 8, (605,402,0): 30, 11, 7, (605,403,0): 29, 10, 6, (605,404,0): 27, 9, 7, (605,405,0): 26, 8, 6, (605,406,0): 26, 8, 6, (605,407,0): 25, 7, 5, (605,408,0): 23, 7, 7, (605,409,0): 23, 7, 7, (605,410,0): 22, 8, 8, (605,411,0): 22, 8, 8, (605,412,0): 22, 8, 8, (605,413,0): 22, 8, 8, (605,414,0): 20, 8, 10, (605,415,0): 20, 8, 8, (605,416,0): 18, 8, 7, (605,417,0): 18, 8, 6, (605,418,0): 20, 9, 7, (605,419,0): 22, 11, 9, (605,420,0): 26, 12, 11, (605,421,0): 27, 13, 12, (605,422,0): 29, 13, 13, (605,423,0): 30, 14, 14, (605,424,0): 32, 14, 14, (605,425,0): 32, 14, 14, (605,426,0): 33, 13, 14, (605,427,0): 33, 13, 14, (605,428,0): 34, 12, 14, (605,429,0): 34, 12, 14, (605,430,0): 34, 12, 14, (605,431,0): 33, 13, 14, (605,432,0): 30, 14, 15, (605,433,0): 29, 15, 15, (605,434,0): 28, 14, 14, (605,435,0): 28, 14, 14, (605,436,0): 27, 13, 13, (605,437,0): 27, 13, 13, (605,438,0): 26, 12, 12, (605,439,0): 26, 12, 12, (605,440,0): 25, 11, 11, (605,441,0): 24, 10, 10, (605,442,0): 22, 8, 8, (605,443,0): 21, 7, 7, (605,444,0): 21, 7, 7, (605,445,0): 22, 8, 8, (605,446,0): 24, 10, 10, (605,447,0): 25, 11, 11, (605,448,0): 26, 12, 12, (605,449,0): 27, 13, 13, (605,450,0): 28, 14, 14, (605,451,0): 29, 15, 15, (605,452,0): 30, 16, 16, (605,453,0): 31, 17, 17, (605,454,0): 32, 18, 18, (605,455,0): 32, 18, 18, (605,456,0): 30, 16, 16, (605,457,0): 31, 17, 17, (605,458,0): 33, 19, 19, (605,459,0): 35, 21, 21, (605,460,0): 35, 21, 21, (605,461,0): 34, 20, 20, (605,462,0): 33, 19, 19, (605,463,0): 32, 18, 18, (605,464,0): 35, 21, 21, (605,465,0): 35, 21, 21, (605,466,0): 35, 21, 21, (605,467,0): 34, 20, 20, (605,468,0): 33, 19, 19, (605,469,0): 31, 17, 17, (605,470,0): 28, 14, 14, (605,471,0): 27, 13, 13, (605,472,0): 25, 11, 11, (605,473,0): 24, 10, 10, (605,474,0): 24, 10, 10, (605,475,0): 24, 10, 10, (605,476,0): 23, 9, 9, (605,477,0): 22, 8, 8, (605,478,0): 22, 8, 8, (605,479,0): 20, 8, 8, (605,480,0): 17, 8, 11, (605,481,0): 15, 9, 11, (605,482,0): 14, 8, 10, (605,483,0): 13, 7, 9, (605,484,0): 12, 6, 10, (605,485,0): 12, 6, 10, (605,486,0): 11, 5, 9, (605,487,0): 11, 5, 9, (605,488,0): 9, 2, 9, (605,489,0): 9, 2, 9, (605,490,0): 9, 2, 10, (605,491,0): 9, 2, 10, (605,492,0): 9, 2, 10, (605,493,0): 9, 2, 10, (605,494,0): 9, 1, 12, (605,495,0): 9, 1, 12, (605,496,0): 11, 3, 14, (605,497,0): 11, 3, 14, (605,498,0): 10, 3, 11, (605,499,0): 9, 2, 10, (605,500,0): 11, 1, 10, (605,501,0): 12, 2, 11, (605,502,0): 13, 3, 11, (605,503,0): 13, 3, 11, (605,504,0): 14, 3, 9, (605,505,0): 14, 3, 9, (605,506,0): 15, 2, 9, (605,507,0): 15, 2, 9, (605,508,0): 15, 3, 7, (605,509,0): 15, 3, 7, (605,510,0): 17, 2, 7, (605,511,0): 17, 2, 7, (605,512,0): 16, 0, 5, (605,513,0): 17, 0, 6, (605,514,0): 19, 2, 8, (605,515,0): 20, 3, 9, (605,516,0): 20, 4, 7, (605,517,0): 20, 4, 7, (605,518,0): 20, 4, 7, (605,519,0): 19, 3, 6, (605,520,0): 24, 8, 9, (605,521,0): 24, 8, 9, (605,522,0): 24, 8, 8, (605,523,0): 25, 9, 9, (605,524,0): 27, 11, 11, (605,525,0): 30, 14, 14, (605,526,0): 32, 17, 14, (605,527,0): 36, 18, 14, (605,528,0): 38, 17, 12, (605,529,0): 39, 16, 10, (605,530,0): 38, 14, 10, (605,531,0): 37, 13, 9, (605,532,0): 36, 12, 8, (605,533,0): 35, 11, 7, (605,534,0): 32, 11, 8, (605,535,0): 32, 11, 8, (605,536,0): 34, 13, 12, (605,537,0): 34, 13, 12, (605,538,0): 33, 12, 11, (605,539,0): 32, 11, 10, (605,540,0): 31, 9, 11, (605,541,0): 30, 8, 10, (605,542,0): 31, 6, 9, (605,543,0): 29, 7, 9, (605,544,0): 27, 8, 10, (605,545,0): 24, 8, 9, (605,546,0): 24, 8, 9, (605,547,0): 23, 7, 8, (605,548,0): 22, 6, 7, (605,549,0): 21, 5, 6, (605,550,0): 20, 4, 5, (605,551,0): 19, 3, 4, (605,552,0): 19, 3, 4, (605,553,0): 19, 3, 4, (605,554,0): 19, 3, 4, (605,555,0): 19, 3, 4, (605,556,0): 19, 3, 4, (605,557,0): 19, 3, 4, (605,558,0): 19, 3, 4, (605,559,0): 18, 4, 4, (605,560,0): 18, 3, 8, (605,561,0): 16, 4, 8, (605,562,0): 19, 4, 9, (605,563,0): 19, 4, 9, (605,564,0): 20, 5, 8, (605,565,0): 20, 5, 8, (605,566,0): 22, 6, 9, (605,567,0): 22, 6, 9, (605,568,0): 26, 7, 9, (605,569,0): 26, 7, 9, (605,570,0): 27, 9, 9, (605,571,0): 29, 11, 11, (605,572,0): 32, 12, 13, (605,573,0): 33, 13, 14, (605,574,0): 34, 14, 13, (605,575,0): 34, 16, 14, (605,576,0): 32, 14, 14, (605,577,0): 31, 15, 15, (605,578,0): 32, 16, 16, (605,579,0): 34, 18, 18, (605,580,0): 36, 20, 20, (605,581,0): 38, 22, 22, (605,582,0): 40, 24, 24, (605,583,0): 41, 25, 25, (605,584,0): 35, 19, 19, (605,585,0): 34, 18, 18, (605,586,0): 33, 17, 17, (605,587,0): 33, 17, 17, (605,588,0): 33, 17, 17, (605,589,0): 33, 17, 17, (605,590,0): 34, 18, 18, (605,591,0): 35, 19, 19, (605,592,0): 36, 22, 21, (605,593,0): 37, 23, 22, (605,594,0): 39, 25, 24, (605,595,0): 41, 27, 26, (605,596,0): 41, 27, 26, (605,597,0): 39, 25, 24, (605,598,0): 37, 23, 22, (605,599,0): 36, 22, 21, (606,0,0): 22, 50, 62, (606,1,0): 22, 50, 62, (606,2,0): 22, 50, 62, (606,3,0): 22, 50, 62, (606,4,0): 22, 50, 62, (606,5,0): 22, 50, 62, (606,6,0): 22, 50, 62, (606,7,0): 22, 50, 62, (606,8,0): 20, 48, 60, (606,9,0): 21, 49, 61, (606,10,0): 21, 49, 61, (606,11,0): 22, 50, 62, (606,12,0): 22, 50, 62, (606,13,0): 23, 51, 63, (606,14,0): 23, 51, 63, (606,15,0): 23, 51, 63, (606,16,0): 23, 51, 62, (606,17,0): 24, 52, 63, (606,18,0): 24, 52, 63, (606,19,0): 25, 53, 64, (606,20,0): 26, 53, 64, (606,21,0): 27, 54, 65, (606,22,0): 29, 53, 65, (606,23,0): 29, 53, 65, (606,24,0): 29, 53, 65, (606,25,0): 29, 53, 65, (606,26,0): 30, 52, 65, (606,27,0): 30, 52, 65, (606,28,0): 32, 51, 65, (606,29,0): 32, 51, 65, (606,30,0): 32, 51, 65, (606,31,0): 32, 51, 65, (606,32,0): 32, 54, 67, (606,33,0): 32, 54, 67, (606,34,0): 32, 54, 67, (606,35,0): 32, 54, 67, (606,36,0): 34, 53, 67, (606,37,0): 34, 53, 67, (606,38,0): 35, 53, 67, (606,39,0): 35, 53, 67, (606,40,0): 38, 56, 70, (606,41,0): 37, 55, 69, (606,42,0): 37, 53, 68, (606,43,0): 37, 53, 68, (606,44,0): 39, 52, 68, (606,45,0): 41, 54, 70, (606,46,0): 43, 56, 72, (606,47,0): 44, 57, 73, (606,48,0): 42, 55, 71, (606,49,0): 43, 56, 72, (606,50,0): 44, 57, 73, (606,51,0): 42, 55, 71, (606,52,0): 40, 53, 69, (606,53,0): 40, 53, 69, (606,54,0): 42, 55, 71, (606,55,0): 46, 59, 75, (606,56,0): 47, 60, 76, (606,57,0): 46, 59, 75, (606,58,0): 45, 58, 74, (606,59,0): 45, 58, 74, (606,60,0): 46, 59, 75, (606,61,0): 47, 60, 76, (606,62,0): 48, 61, 77, (606,63,0): 49, 63, 76, (606,64,0): 51, 63, 77, (606,65,0): 51, 63, 75, (606,66,0): 50, 62, 74, (606,67,0): 50, 62, 74, (606,68,0): 49, 61, 73, (606,69,0): 48, 60, 72, (606,70,0): 48, 60, 72, (606,71,0): 47, 59, 71, (606,72,0): 49, 61, 73, (606,73,0): 50, 62, 74, (606,74,0): 50, 62, 74, (606,75,0): 51, 63, 75, (606,76,0): 51, 63, 75, (606,77,0): 52, 64, 76, (606,78,0): 52, 64, 76, (606,79,0): 51, 65, 78, (606,80,0): 47, 64, 82, (606,81,0): 46, 64, 84, (606,82,0): 46, 62, 85, (606,83,0): 44, 62, 82, (606,84,0): 44, 62, 84, (606,85,0): 43, 61, 81, (606,86,0): 43, 61, 83, (606,87,0): 40, 61, 80, (606,88,0): 43, 64, 85, (606,89,0): 41, 64, 82, (606,90,0): 40, 62, 83, (606,91,0): 37, 63, 80, (606,92,0): 39, 61, 82, (606,93,0): 38, 64, 81, (606,94,0): 39, 64, 84, (606,95,0): 42, 64, 85, (606,96,0): 41, 61, 85, (606,97,0): 41, 61, 85, (606,98,0): 41, 61, 86, (606,99,0): 41, 61, 85, (606,100,0): 41, 61, 86, (606,101,0): 41, 61, 85, (606,102,0): 41, 61, 86, (606,103,0): 41, 61, 85, (606,104,0): 41, 61, 86, (606,105,0): 41, 61, 85, (606,106,0): 41, 61, 86, (606,107,0): 41, 61, 85, (606,108,0): 41, 61, 86, (606,109,0): 41, 61, 85, (606,110,0): 41, 61, 86, (606,111,0): 38, 62, 86, (606,112,0): 30, 62, 83, (606,113,0): 29, 66, 85, (606,114,0): 31, 66, 88, (606,115,0): 33, 68, 88, (606,116,0): 35, 67, 90, (606,117,0): 35, 67, 90, (606,118,0): 35, 65, 89, (606,119,0): 36, 64, 88, (606,120,0): 38, 64, 89, (606,121,0): 39, 63, 89, (606,122,0): 41, 62, 89, (606,123,0): 42, 63, 90, (606,124,0): 44, 64, 91, (606,125,0): 46, 63, 91, (606,126,0): 46, 63, 91, (606,127,0): 47, 63, 96, (606,128,0): 47, 62, 101, (606,129,0): 45, 63, 103, (606,130,0): 44, 63, 103, (606,131,0): 41, 63, 100, (606,132,0): 40, 65, 96, (606,133,0): 36, 66, 94, (606,134,0): 36, 66, 92, (606,135,0): 35, 67, 92, (606,136,0): 33, 67, 94, (606,137,0): 32, 68, 94, (606,138,0): 31, 66, 96, (606,139,0): 32, 65, 96, (606,140,0): 31, 64, 99, (606,141,0): 33, 63, 99, (606,142,0): 32, 61, 101, (606,143,0): 32, 61, 101, (606,144,0): 35, 65, 103, (606,145,0): 35, 65, 103, (606,146,0): 35, 64, 104, (606,147,0): 35, 64, 104, (606,148,0): 33, 65, 104, (606,149,0): 33, 65, 104, (606,150,0): 33, 65, 106, (606,151,0): 33, 65, 106, (606,152,0): 33, 66, 109, (606,153,0): 33, 66, 109, (606,154,0): 33, 68, 110, (606,155,0): 33, 68, 110, (606,156,0): 34, 68, 113, (606,157,0): 34, 68, 113, (606,158,0): 33, 70, 114, (606,159,0): 33, 70, 114, (606,160,0): 36, 70, 115, (606,161,0): 35, 69, 114, (606,162,0): 34, 68, 113, (606,163,0): 33, 67, 112, (606,164,0): 33, 67, 112, (606,165,0): 34, 68, 113, (606,166,0): 35, 69, 114, (606,167,0): 36, 70, 115, (606,168,0): 35, 69, 114, (606,169,0): 35, 69, 114, (606,170,0): 35, 69, 114, (606,171,0): 36, 70, 115, (606,172,0): 36, 70, 115, (606,173,0): 37, 71, 116, (606,174,0): 37, 71, 116, (606,175,0): 37, 71, 116, (606,176,0): 37, 68, 115, (606,177,0): 37, 68, 115, (606,178,0): 38, 69, 116, (606,179,0): 40, 71, 118, (606,180,0): 41, 72, 119, (606,181,0): 42, 73, 120, (606,182,0): 43, 74, 121, (606,183,0): 43, 74, 121, (606,184,0): 41, 72, 119, (606,185,0): 41, 72, 119, (606,186,0): 42, 73, 120, (606,187,0): 42, 73, 120, (606,188,0): 43, 74, 121, (606,189,0): 43, 74, 121, (606,190,0): 44, 75, 122, (606,191,0): 44, 75, 122, (606,192,0): 45, 75, 127, (606,193,0): 45, 75, 127, (606,194,0): 45, 75, 127, (606,195,0): 46, 76, 128, (606,196,0): 46, 76, 128, (606,197,0): 46, 76, 128, (606,198,0): 47, 77, 129, (606,199,0): 47, 77, 129, (606,200,0): 48, 78, 130, (606,201,0): 49, 79, 131, (606,202,0): 49, 79, 131, (606,203,0): 50, 80, 132, (606,204,0): 50, 80, 132, (606,205,0): 51, 81, 133, (606,206,0): 51, 81, 133, (606,207,0): 50, 81, 135, (606,208,0): 52, 82, 142, (606,209,0): 51, 83, 144, (606,210,0): 51, 83, 144, (606,211,0): 52, 84, 145, (606,212,0): 53, 85, 146, (606,213,0): 53, 85, 146, (606,214,0): 53, 85, 146, (606,215,0): 54, 86, 147, (606,216,0): 54, 86, 147, (606,217,0): 54, 86, 147, (606,218,0): 54, 86, 147, (606,219,0): 55, 87, 148, (606,220,0): 56, 88, 149, (606,221,0): 56, 88, 149, (606,222,0): 56, 88, 149, (606,223,0): 57, 89, 148, (606,224,0): 59, 91, 150, (606,225,0): 59, 91, 148, (606,226,0): 59, 91, 148, (606,227,0): 59, 91, 148, (606,228,0): 59, 91, 148, (606,229,0): 59, 91, 148, (606,230,0): 59, 91, 150, (606,231,0): 59, 91, 150, (606,232,0): 59, 91, 152, (606,233,0): 58, 90, 151, (606,234,0): 57, 88, 152, (606,235,0): 57, 88, 152, (606,236,0): 58, 89, 153, (606,237,0): 59, 90, 154, (606,238,0): 60, 91, 155, (606,239,0): 61, 93, 154, (606,240,0): 60, 91, 148, (606,241,0): 61, 90, 146, (606,242,0): 62, 91, 147, (606,243,0): 62, 91, 147, (606,244,0): 65, 91, 148, (606,245,0): 65, 91, 148, (606,246,0): 66, 92, 149, (606,247,0): 66, 92, 149, (606,248,0): 66, 91, 148, (606,249,0): 67, 92, 149, (606,250,0): 69, 91, 149, (606,251,0): 70, 92, 150, (606,252,0): 72, 94, 152, (606,253,0): 73, 95, 153, (606,254,0): 74, 94, 153, (606,255,0): 76, 95, 153, (606,256,0): 82, 93, 149, (606,257,0): 82, 91, 146, (606,258,0): 81, 92, 148, (606,259,0): 83, 94, 150, (606,260,0): 85, 95, 154, (606,261,0): 85, 94, 151, (606,262,0): 86, 89, 142, (606,263,0): 86, 84, 131, (606,264,0): 79, 71, 110, (606,265,0): 77, 62, 95, (606,266,0): 70, 50, 77, (606,267,0): 63, 40, 60, (606,268,0): 59, 35, 51, (606,269,0): 55, 31, 44, (606,270,0): 52, 29, 39, (606,271,0): 49, 26, 36, (606,272,0): 48, 22, 31, (606,273,0): 47, 21, 30, (606,274,0): 41, 18, 26, (606,275,0): 38, 15, 23, (606,276,0): 34, 13, 22, (606,277,0): 32, 11, 20, (606,278,0): 30, 10, 19, (606,279,0): 28, 11, 19, (606,280,0): 24, 7, 17, (606,281,0): 24, 8, 18, (606,282,0): 23, 10, 20, (606,283,0): 23, 10, 20, (606,284,0): 21, 9, 19, (606,285,0): 19, 7, 17, (606,286,0): 16, 6, 17, (606,287,0): 15, 5, 16, (606,288,0): 14, 6, 19, (606,289,0): 13, 5, 18, (606,290,0): 13, 5, 18, (606,291,0): 13, 5, 18, (606,292,0): 12, 4, 17, (606,293,0): 12, 4, 17, (606,294,0): 11, 3, 16, (606,295,0): 11, 3, 16, (606,296,0): 12, 4, 17, (606,297,0): 12, 4, 17, (606,298,0): 13, 5, 18, (606,299,0): 14, 6, 19, (606,300,0): 13, 5, 18, (606,301,0): 12, 4, 17, (606,302,0): 10, 2, 15, (606,303,0): 9, 1, 12, (606,304,0): 9, 1, 12, (606,305,0): 9, 2, 10, (606,306,0): 9, 2, 10, (606,307,0): 9, 2, 10, (606,308,0): 9, 2, 10, (606,309,0): 9, 2, 10, (606,310,0): 9, 2, 10, (606,311,0): 9, 2, 10, (606,312,0): 11, 4, 12, (606,313,0): 11, 4, 12, (606,314,0): 11, 4, 12, (606,315,0): 11, 4, 12, (606,316,0): 11, 4, 12, (606,317,0): 11, 4, 12, (606,318,0): 11, 4, 12, (606,319,0): 10, 5, 12, (606,320,0): 8, 3, 10, (606,321,0): 6, 3, 10, (606,322,0): 9, 4, 11, (606,323,0): 9, 4, 11, (606,324,0): 10, 5, 12, (606,325,0): 10, 5, 12, (606,326,0): 12, 5, 13, (606,327,0): 12, 5, 13, (606,328,0): 13, 3, 12, (606,329,0): 13, 3, 12, (606,330,0): 14, 4, 13, (606,331,0): 14, 4, 13, (606,332,0): 16, 4, 14, (606,333,0): 16, 4, 14, (606,334,0): 16, 4, 14, (606,335,0): 18, 5, 14, (606,336,0): 21, 4, 12, (606,337,0): 25, 6, 12, (606,338,0): 25, 8, 14, (606,339,0): 23, 8, 13, (606,340,0): 18, 6, 10, (606,341,0): 17, 5, 9, (606,342,0): 18, 7, 11, (606,343,0): 20, 9, 13, (606,344,0): 18, 7, 11, (606,345,0): 18, 7, 11, (606,346,0): 20, 8, 12, (606,347,0): 21, 9, 13, (606,348,0): 24, 9, 14, (606,349,0): 26, 9, 15, (606,350,0): 29, 10, 16, (606,351,0): 29, 10, 14, (606,352,0): 25, 9, 9, (606,353,0): 26, 11, 8, (606,354,0): 27, 12, 9, (606,355,0): 28, 13, 10, (606,356,0): 29, 14, 11, (606,357,0): 29, 14, 11, (606,358,0): 28, 13, 10, (606,359,0): 28, 13, 10, (606,360,0): 30, 15, 12, (606,361,0): 30, 15, 12, (606,362,0): 31, 16, 13, (606,363,0): 32, 17, 14, (606,364,0): 32, 17, 14, (606,365,0): 33, 18, 15, (606,366,0): 33, 18, 15, (606,367,0): 34, 19, 14, (606,368,0): 36, 17, 11, (606,369,0): 37, 18, 11, (606,370,0): 38, 19, 12, (606,371,0): 38, 19, 12, (606,372,0): 37, 18, 11, (606,373,0): 36, 17, 10, (606,374,0): 35, 16, 9, (606,375,0): 34, 15, 8, (606,376,0): 32, 13, 6, (606,377,0): 32, 13, 6, (606,378,0): 32, 13, 6, (606,379,0): 32, 13, 6, (606,380,0): 32, 13, 6, (606,381,0): 32, 13, 6, (606,382,0): 32, 13, 6, (606,383,0): 32, 13, 6, (606,384,0): 30, 10, 3, (606,385,0): 32, 9, 3, (606,386,0): 32, 9, 3, (606,387,0): 33, 10, 4, (606,388,0): 34, 11, 5, (606,389,0): 35, 12, 6, (606,390,0): 35, 12, 6, (606,391,0): 35, 12, 6, (606,392,0): 37, 14, 8, (606,393,0): 36, 13, 7, (606,394,0): 36, 13, 7, (606,395,0): 35, 12, 6, (606,396,0): 35, 12, 6, (606,397,0): 34, 11, 5, (606,398,0): 34, 11, 5, (606,399,0): 32, 11, 6, (606,400,0): 32, 13, 9, (606,401,0): 31, 12, 8, (606,402,0): 30, 11, 7, (606,403,0): 29, 10, 6, (606,404,0): 27, 9, 7, (606,405,0): 25, 7, 5, (606,406,0): 25, 7, 5, (606,407,0): 24, 6, 4, (606,408,0): 22, 6, 6, (606,409,0): 22, 6, 6, (606,410,0): 21, 7, 7, (606,411,0): 21, 7, 7, (606,412,0): 21, 7, 7, (606,413,0): 21, 7, 7, (606,414,0): 19, 7, 9, (606,415,0): 19, 7, 7, (606,416,0): 17, 7, 6, (606,417,0): 17, 7, 5, (606,418,0): 19, 9, 7, (606,419,0): 20, 10, 8, (606,420,0): 23, 12, 10, (606,421,0): 25, 14, 12, (606,422,0): 28, 14, 13, (606,423,0): 30, 14, 14, (606,424,0): 32, 14, 14, (606,425,0): 32, 14, 14, (606,426,0): 33, 13, 14, (606,427,0): 33, 13, 14, (606,428,0): 34, 12, 14, (606,429,0): 34, 12, 14, (606,430,0): 36, 11, 14, (606,431,0): 34, 12, 14, (606,432,0): 28, 12, 13, (606,433,0): 27, 13, 13, (606,434,0): 26, 12, 12, (606,435,0): 26, 12, 12, (606,436,0): 25, 11, 11, (606,437,0): 25, 11, 11, (606,438,0): 24, 10, 10, (606,439,0): 24, 10, 10, (606,440,0): 24, 10, 10, (606,441,0): 22, 8, 8, (606,442,0): 20, 6, 6, (606,443,0): 18, 4, 4, (606,444,0): 18, 4, 4, (606,445,0): 20, 6, 6, (606,446,0): 22, 8, 8, (606,447,0): 24, 10, 10, (606,448,0): 26, 12, 12, (606,449,0): 26, 12, 12, (606,450,0): 27, 13, 13, (606,451,0): 28, 14, 14, (606,452,0): 29, 15, 15, (606,453,0): 30, 16, 16, (606,454,0): 31, 17, 17, (606,455,0): 32, 18, 18, (606,456,0): 29, 15, 15, (606,457,0): 30, 16, 16, (606,458,0): 31, 17, 17, (606,459,0): 33, 19, 19, (606,460,0): 33, 19, 19, (606,461,0): 34, 20, 20, (606,462,0): 33, 19, 19, (606,463,0): 33, 19, 19, (606,464,0): 37, 23, 23, (606,465,0): 37, 23, 23, (606,466,0): 37, 23, 23, (606,467,0): 36, 22, 22, (606,468,0): 34, 20, 20, (606,469,0): 31, 17, 17, (606,470,0): 29, 15, 15, (606,471,0): 28, 14, 14, (606,472,0): 25, 11, 11, (606,473,0): 25, 11, 11, (606,474,0): 24, 10, 10, (606,475,0): 24, 10, 10, (606,476,0): 23, 9, 9, (606,477,0): 23, 9, 9, (606,478,0): 23, 9, 9, (606,479,0): 20, 8, 8, (606,480,0): 16, 7, 10, (606,481,0): 14, 8, 10, (606,482,0): 14, 8, 10, (606,483,0): 13, 7, 9, (606,484,0): 13, 7, 11, (606,485,0): 13, 7, 11, (606,486,0): 13, 7, 11, (606,487,0): 13, 7, 11, (606,488,0): 9, 2, 9, (606,489,0): 9, 2, 9, (606,490,0): 9, 2, 10, (606,491,0): 9, 2, 10, (606,492,0): 9, 2, 10, (606,493,0): 9, 2, 10, (606,494,0): 9, 1, 12, (606,495,0): 9, 1, 12, (606,496,0): 10, 2, 13, (606,497,0): 9, 1, 12, (606,498,0): 8, 0, 11, (606,499,0): 7, 0, 10, (606,500,0): 9, 0, 8, (606,501,0): 10, 0, 9, (606,502,0): 11, 1, 9, (606,503,0): 12, 2, 10, (606,504,0): 14, 3, 11, (606,505,0): 14, 3, 11, (606,506,0): 15, 2, 9, (606,507,0): 15, 2, 9, (606,508,0): 15, 3, 7, (606,509,0): 15, 3, 7, (606,510,0): 17, 2, 7, (606,511,0): 17, 2, 7, (606,512,0): 15, 0, 6, (606,513,0): 16, 0, 7, (606,514,0): 18, 1, 7, (606,515,0): 20, 3, 9, (606,516,0): 20, 3, 9, (606,517,0): 20, 3, 9, (606,518,0): 19, 3, 6, (606,519,0): 18, 2, 5, (606,520,0): 23, 7, 8, (606,521,0): 22, 6, 7, (606,522,0): 22, 6, 7, (606,523,0): 22, 6, 7, (606,524,0): 24, 8, 8, (606,525,0): 26, 10, 10, (606,526,0): 28, 12, 12, (606,527,0): 32, 14, 12, (606,528,0): 35, 16, 10, (606,529,0): 36, 16, 9, (606,530,0): 35, 15, 8, (606,531,0): 34, 14, 7, (606,532,0): 33, 12, 7, (606,533,0): 32, 11, 6, (606,534,0): 31, 10, 5, (606,535,0): 31, 10, 5, (606,536,0): 36, 12, 10, (606,537,0): 36, 12, 10, (606,538,0): 35, 11, 11, (606,539,0): 34, 10, 10, (606,540,0): 33, 9, 9, (606,541,0): 32, 8, 8, (606,542,0): 32, 6, 9, (606,543,0): 29, 7, 9, (606,544,0): 28, 9, 11, (606,545,0): 26, 10, 11, (606,546,0): 25, 9, 10, (606,547,0): 23, 7, 8, (606,548,0): 22, 6, 7, (606,549,0): 21, 5, 6, (606,550,0): 20, 4, 5, (606,551,0): 20, 4, 5, (606,552,0): 19, 3, 4, (606,553,0): 19, 3, 4, (606,554,0): 19, 3, 4, (606,555,0): 19, 3, 4, (606,556,0): 19, 3, 4, (606,557,0): 19, 3, 4, (606,558,0): 19, 3, 4, (606,559,0): 18, 4, 4, (606,560,0): 17, 2, 7, (606,561,0): 15, 3, 7, (606,562,0): 18, 3, 8, (606,563,0): 18, 3, 8, (606,564,0): 19, 4, 7, (606,565,0): 19, 4, 7, (606,566,0): 21, 5, 8, (606,567,0): 21, 5, 8, (606,568,0): 24, 5, 7, (606,569,0): 24, 5, 7, (606,570,0): 26, 8, 8, (606,571,0): 27, 9, 9, (606,572,0): 30, 10, 11, (606,573,0): 32, 12, 13, (606,574,0): 33, 13, 12, (606,575,0): 33, 15, 13, (606,576,0): 32, 14, 14, (606,577,0): 31, 15, 15, (606,578,0): 32, 16, 16, (606,579,0): 33, 17, 17, (606,580,0): 34, 18, 18, (606,581,0): 36, 20, 20, (606,582,0): 37, 21, 21, (606,583,0): 37, 21, 21, (606,584,0): 34, 18, 18, (606,585,0): 34, 18, 18, (606,586,0): 33, 17, 17, (606,587,0): 32, 16, 16, (606,588,0): 32, 16, 16, (606,589,0): 33, 17, 17, (606,590,0): 34, 18, 18, (606,591,0): 34, 18, 18, (606,592,0): 35, 21, 18, (606,593,0): 37, 23, 20, (606,594,0): 39, 25, 22, (606,595,0): 41, 27, 24, (606,596,0): 41, 27, 24, (606,597,0): 39, 25, 22, (606,598,0): 36, 22, 19, (606,599,0): 34, 20, 17, (607,0,0): 22, 50, 62, (607,1,0): 22, 50, 62, (607,2,0): 22, 50, 62, (607,3,0): 22, 50, 62, (607,4,0): 22, 50, 62, (607,5,0): 22, 50, 62, (607,6,0): 22, 50, 62, (607,7,0): 22, 50, 62, (607,8,0): 20, 48, 60, (607,9,0): 20, 48, 60, (607,10,0): 21, 49, 61, (607,11,0): 21, 49, 61, (607,12,0): 22, 50, 62, (607,13,0): 22, 50, 62, (607,14,0): 23, 51, 63, (607,15,0): 23, 51, 63, (607,16,0): 23, 51, 62, (607,17,0): 23, 51, 62, (607,18,0): 25, 52, 63, (607,19,0): 25, 52, 63, (607,20,0): 26, 53, 64, (607,21,0): 26, 53, 64, (607,22,0): 29, 53, 65, (607,23,0): 29, 53, 65, (607,24,0): 29, 53, 65, (607,25,0): 29, 53, 65, (607,26,0): 30, 52, 65, (607,27,0): 30, 52, 65, (607,28,0): 30, 52, 65, (607,29,0): 30, 52, 65, (607,30,0): 32, 51, 65, (607,31,0): 30, 52, 65, (607,32,0): 32, 54, 67, (607,33,0): 32, 54, 67, (607,34,0): 32, 54, 67, (607,35,0): 32, 54, 67, (607,36,0): 32, 54, 67, (607,37,0): 34, 53, 67, (607,38,0): 34, 53, 67, (607,39,0): 34, 53, 67, (607,40,0): 37, 56, 70, (607,41,0): 37, 55, 69, (607,42,0): 36, 54, 68, (607,43,0): 36, 52, 67, (607,44,0): 37, 53, 68, (607,45,0): 41, 54, 70, (607,46,0): 43, 56, 72, (607,47,0): 44, 57, 73, (607,48,0): 42, 54, 70, (607,49,0): 44, 56, 72, (607,50,0): 45, 57, 73, (607,51,0): 43, 55, 71, (607,52,0): 40, 52, 68, (607,53,0): 40, 52, 68, (607,54,0): 43, 55, 71, (607,55,0): 46, 59, 75, (607,56,0): 43, 56, 72, (607,57,0): 43, 56, 72, (607,58,0): 42, 55, 71, (607,59,0): 42, 55, 71, (607,60,0): 43, 56, 72, (607,61,0): 44, 57, 73, (607,62,0): 45, 58, 74, (607,63,0): 46, 59, 75, (607,64,0): 51, 63, 77, (607,65,0): 51, 63, 75, (607,66,0): 50, 62, 76, (607,67,0): 50, 62, 74, (607,68,0): 49, 61, 75, (607,69,0): 48, 60, 72, (607,70,0): 47, 59, 73, (607,71,0): 47, 59, 71, (607,72,0): 49, 61, 75, (607,73,0): 48, 62, 73, (607,74,0): 50, 62, 76, (607,75,0): 49, 63, 74, (607,76,0): 50, 64, 77, (607,77,0): 50, 64, 75, (607,78,0): 51, 65, 78, (607,79,0): 49, 65, 80, (607,80,0): 45, 64, 81, (607,81,0): 43, 64, 83, (607,82,0): 42, 63, 82, (607,83,0): 41, 62, 81, (607,84,0): 40, 61, 80, (607,85,0): 39, 61, 82, (607,86,0): 38, 60, 81, (607,87,0): 38, 60, 81, (607,88,0): 40, 62, 83, (607,89,0): 39, 61, 82, (607,90,0): 38, 60, 81, (607,91,0): 37, 59, 80, (607,92,0): 37, 59, 80, (607,93,0): 38, 60, 81, (607,94,0): 37, 62, 82, (607,95,0): 38, 63, 85, (607,96,0): 39, 61, 84, (607,97,0): 39, 61, 85, (607,98,0): 39, 61, 85, (607,99,0): 39, 61, 85, (607,100,0): 39, 61, 85, (607,101,0): 39, 61, 85, (607,102,0): 39, 61, 85, (607,103,0): 39, 61, 85, (607,104,0): 38, 60, 84, (607,105,0): 38, 60, 84, (607,106,0): 38, 60, 84, (607,107,0): 38, 60, 84, (607,108,0): 38, 60, 84, (607,109,0): 38, 60, 84, (607,110,0): 38, 59, 86, (607,111,0): 35, 61, 86, (607,112,0): 29, 61, 84, (607,113,0): 28, 64, 86, (607,114,0): 31, 66, 88, (607,115,0): 33, 68, 90, (607,116,0): 35, 67, 90, (607,117,0): 34, 66, 89, (607,118,0): 34, 64, 88, (607,119,0): 35, 63, 87, (607,120,0): 36, 64, 88, (607,121,0): 37, 63, 88, (607,122,0): 39, 63, 89, (607,123,0): 41, 62, 89, (607,124,0): 42, 63, 92, (607,125,0): 43, 62, 92, (607,126,0): 44, 63, 93, (607,127,0): 44, 63, 95, (607,128,0): 43, 63, 100, (607,129,0): 43, 62, 102, (607,130,0): 40, 62, 99, (607,131,0): 39, 63, 99, (607,132,0): 37, 63, 96, (607,133,0): 35, 64, 94, (607,134,0): 33, 64, 92, (607,135,0): 33, 64, 92, (607,136,0): 32, 66, 94, (607,137,0): 31, 66, 94, (607,138,0): 32, 65, 96, (607,139,0): 31, 64, 97, (607,140,0): 31, 64, 99, (607,141,0): 30, 63, 98, (607,142,0): 32, 62, 100, (607,143,0): 31, 61, 99, (607,144,0): 34, 64, 102, (607,145,0): 34, 64, 102, (607,146,0): 34, 63, 103, (607,147,0): 34, 63, 103, (607,148,0): 32, 64, 103, (607,149,0): 32, 64, 103, (607,150,0): 32, 64, 105, (607,151,0): 32, 64, 105, (607,152,0): 33, 66, 109, (607,153,0): 33, 66, 109, (607,154,0): 33, 66, 109, (607,155,0): 33, 68, 110, (607,156,0): 34, 67, 112, (607,157,0): 34, 68, 113, (607,158,0): 34, 68, 113, (607,159,0): 35, 69, 114, (607,160,0): 36, 69, 114, (607,161,0): 35, 68, 111, (607,162,0): 34, 67, 112, (607,163,0): 33, 66, 109, (607,164,0): 33, 66, 111, (607,165,0): 34, 67, 110, (607,166,0): 35, 68, 113, (607,167,0): 36, 69, 112, (607,168,0): 35, 68, 113, (607,169,0): 35, 68, 111, (607,170,0): 35, 68, 113, (607,171,0): 36, 69, 112, (607,172,0): 36, 69, 114, (607,173,0): 37, 70, 113, (607,174,0): 37, 70, 115, (607,175,0): 37, 70, 115, (607,176,0): 36, 67, 113, (607,177,0): 37, 68, 114, (607,178,0): 38, 69, 115, (607,179,0): 38, 71, 116, (607,180,0): 39, 72, 117, (607,181,0): 42, 73, 119, (607,182,0): 43, 74, 121, (607,183,0): 43, 74, 121, (607,184,0): 42, 70, 118, (607,185,0): 40, 71, 118, (607,186,0): 41, 72, 119, (607,187,0): 40, 72, 119, (607,188,0): 41, 73, 120, (607,189,0): 42, 73, 120, (607,190,0): 43, 74, 121, (607,191,0): 43, 73, 123, (607,192,0): 44, 74, 124, (607,193,0): 44, 74, 124, (607,194,0): 44, 74, 126, (607,195,0): 45, 75, 127, (607,196,0): 46, 76, 128, (607,197,0): 47, 77, 129, (607,198,0): 47, 77, 129, (607,199,0): 48, 78, 130, (607,200,0): 47, 77, 129, (607,201,0): 48, 78, 130, (607,202,0): 48, 78, 130, (607,203,0): 49, 79, 131, (607,204,0): 49, 79, 131, (607,205,0): 50, 80, 132, (607,206,0): 50, 80, 132, (607,207,0): 49, 80, 134, (607,208,0): 51, 81, 141, (607,209,0): 50, 82, 141, (607,210,0): 51, 83, 144, (607,211,0): 51, 83, 142, (607,212,0): 52, 84, 145, (607,213,0): 52, 84, 143, (607,214,0): 52, 84, 145, (607,215,0): 53, 85, 144, (607,216,0): 53, 85, 146, (607,217,0): 53, 85, 144, (607,218,0): 54, 86, 147, (607,219,0): 54, 86, 145, (607,220,0): 55, 87, 148, (607,221,0): 55, 87, 146, (607,222,0): 55, 87, 148, (607,223,0): 56, 88, 147, (607,224,0): 60, 91, 148, (607,225,0): 60, 91, 148, (607,226,0): 60, 90, 150, (607,227,0): 60, 90, 150, (607,228,0): 60, 90, 150, (607,229,0): 60, 90, 150, (607,230,0): 60, 91, 148, (607,231,0): 60, 91, 148, (607,232,0): 58, 88, 148, (607,233,0): 58, 88, 148, (607,234,0): 57, 87, 149, (607,235,0): 57, 87, 151, (607,236,0): 57, 87, 151, (607,237,0): 59, 89, 151, (607,238,0): 60, 90, 152, (607,239,0): 61, 91, 151, (607,240,0): 60, 89, 147, (607,241,0): 60, 89, 145, (607,242,0): 62, 88, 145, (607,243,0): 63, 89, 146, (607,244,0): 64, 89, 146, (607,245,0): 65, 90, 147, (607,246,0): 64, 90, 147, (607,247,0): 64, 91, 146, (607,248,0): 65, 92, 147, (607,249,0): 65, 92, 147, (607,250,0): 67, 92, 148, (607,251,0): 70, 92, 149, (607,252,0): 71, 93, 150, (607,253,0): 73, 94, 151, (607,254,0): 75, 94, 152, (607,255,0): 77, 94, 150, (607,256,0): 80, 93, 146, (607,257,0): 80, 92, 144, (607,258,0): 80, 91, 145, (607,259,0): 82, 93, 147, (607,260,0): 85, 94, 149, (607,261,0): 85, 92, 144, (607,262,0): 85, 87, 136, (607,263,0): 85, 82, 125, (607,264,0): 76, 66, 103, (607,265,0): 72, 57, 88, (607,266,0): 64, 46, 70, (607,267,0): 58, 37, 56, (607,268,0): 55, 33, 46, (607,269,0): 54, 32, 44, (607,270,0): 54, 31, 41, (607,271,0): 53, 30, 38, (607,272,0): 47, 21, 30, (607,273,0): 45, 20, 26, (607,274,0): 40, 17, 25, (607,275,0): 35, 14, 21, (607,276,0): 31, 12, 18, (607,277,0): 29, 9, 18, (607,278,0): 26, 9, 17, (607,279,0): 26, 9, 17, (607,280,0): 21, 6, 13, (607,281,0): 22, 6, 16, (607,282,0): 22, 9, 18, (607,283,0): 23, 10, 20, (607,284,0): 22, 10, 20, (607,285,0): 19, 9, 18, (607,286,0): 15, 8, 16, (607,287,0): 14, 6, 17, (607,288,0): 14, 6, 17, (607,289,0): 13, 5, 16, (607,290,0): 13, 5, 16, (607,291,0): 12, 4, 15, (607,292,0): 12, 4, 15, (607,293,0): 13, 3, 14, (607,294,0): 13, 3, 14, (607,295,0): 13, 3, 14, (607,296,0): 13, 3, 14, (607,297,0): 12, 4, 15, (607,298,0): 14, 6, 17, (607,299,0): 14, 6, 17, (607,300,0): 14, 6, 17, (607,301,0): 11, 5, 15, (607,302,0): 9, 3, 13, (607,303,0): 8, 2, 12, (607,304,0): 9, 2, 10, (607,305,0): 9, 2, 10, (607,306,0): 9, 2, 10, (607,307,0): 9, 2, 10, (607,308,0): 9, 2, 10, (607,309,0): 9, 2, 10, (607,310,0): 9, 2, 10, (607,311,0): 9, 2, 10, (607,312,0): 11, 4, 12, (607,313,0): 11, 4, 12, (607,314,0): 11, 4, 12, (607,315,0): 11, 4, 12, (607,316,0): 11, 4, 12, (607,317,0): 11, 4, 12, (607,318,0): 11, 4, 12, (607,319,0): 10, 5, 12, (607,320,0): 8, 3, 10, (607,321,0): 8, 3, 10, (607,322,0): 9, 4, 11, (607,323,0): 9, 4, 11, (607,324,0): 10, 5, 12, (607,325,0): 10, 5, 12, (607,326,0): 11, 6, 13, (607,327,0): 12, 5, 13, (607,328,0): 11, 4, 12, (607,329,0): 13, 3, 12, (607,330,0): 13, 3, 12, (607,331,0): 14, 4, 13, (607,332,0): 15, 3, 13, (607,333,0): 16, 4, 14, (607,334,0): 16, 4, 14, (607,335,0): 18, 5, 14, (607,336,0): 22, 5, 13, (607,337,0): 24, 7, 13, (607,338,0): 25, 8, 14, (607,339,0): 23, 8, 13, (607,340,0): 21, 6, 9, (607,341,0): 18, 6, 8, (607,342,0): 20, 8, 10, (607,343,0): 21, 11, 12, (607,344,0): 19, 7, 9, (607,345,0): 20, 8, 10, (607,346,0): 20, 8, 10, (607,347,0): 23, 8, 11, (607,348,0): 24, 9, 14, (607,349,0): 26, 9, 15, (607,350,0): 27, 10, 16, (607,351,0): 28, 12, 15, (607,352,0): 24, 8, 9, (607,353,0): 25, 9, 9, (607,354,0): 26, 10, 10, (607,355,0): 28, 13, 10, (607,356,0): 28, 12, 12, (607,357,0): 28, 13, 10, (607,358,0): 27, 12, 9, (607,359,0): 27, 12, 9, (607,360,0): 28, 13, 10, (607,361,0): 29, 14, 11, (607,362,0): 29, 14, 11, (607,363,0): 30, 15, 12, (607,364,0): 31, 16, 13, (607,365,0): 32, 17, 14, (607,366,0): 34, 16, 14, (607,367,0): 35, 17, 13, (607,368,0): 37, 18, 12, (607,369,0): 37, 18, 11, (607,370,0): 38, 19, 13, (607,371,0): 38, 19, 12, (607,372,0): 38, 19, 13, (607,373,0): 37, 18, 11, (607,374,0): 35, 16, 10, (607,375,0): 34, 15, 8, (607,376,0): 31, 12, 6, (607,377,0): 31, 12, 5, (607,378,0): 31, 12, 6, (607,379,0): 31, 12, 5, (607,380,0): 31, 12, 6, (607,381,0): 31, 12, 5, (607,382,0): 31, 12, 6, (607,383,0): 31, 12, 6, (607,384,0): 29, 8, 3, (607,385,0): 29, 8, 3, (607,386,0): 31, 7, 3, (607,387,0): 32, 8, 4, (607,388,0): 33, 9, 5, (607,389,0): 34, 10, 6, (607,390,0): 36, 11, 7, (607,391,0): 36, 11, 7, (607,392,0): 38, 13, 9, (607,393,0): 38, 13, 8, (607,394,0): 37, 12, 7, (607,395,0): 37, 12, 7, (607,396,0): 36, 11, 6, (607,397,0): 35, 12, 6, (607,398,0): 34, 11, 5, (607,399,0): 34, 11, 5, (607,400,0): 33, 12, 7, (607,401,0): 31, 12, 8, (607,402,0): 30, 11, 7, (607,403,0): 28, 10, 8, (607,404,0): 24, 8, 8, (607,405,0): 23, 7, 7, (607,406,0): 22, 6, 6, (607,407,0): 22, 6, 6, (607,408,0): 22, 6, 6, (607,409,0): 22, 6, 6, (607,410,0): 21, 7, 7, (607,411,0): 21, 7, 7, (607,412,0): 21, 7, 7, (607,413,0): 19, 7, 9, (607,414,0): 18, 7, 11, (607,415,0): 18, 8, 9, (607,416,0): 15, 7, 5, (607,417,0): 16, 8, 5, (607,418,0): 18, 8, 6, (607,419,0): 20, 10, 8, (607,420,0): 23, 12, 10, (607,421,0): 25, 14, 12, (607,422,0): 28, 14, 13, (607,423,0): 30, 14, 14, (607,424,0): 32, 14, 14, (607,425,0): 32, 14, 14, (607,426,0): 32, 14, 14, (607,427,0): 33, 13, 14, (607,428,0): 33, 13, 14, (607,429,0): 33, 13, 12, (607,430,0): 33, 13, 14, (607,431,0): 33, 13, 14, (607,432,0): 27, 11, 11, (607,433,0): 26, 12, 11, (607,434,0): 25, 11, 10, (607,435,0): 25, 11, 10, (607,436,0): 24, 10, 9, (607,437,0): 24, 10, 9, (607,438,0): 23, 9, 9, (607,439,0): 23, 9, 9, (607,440,0): 23, 9, 9, (607,441,0): 21, 7, 7, (607,442,0): 19, 5, 5, (607,443,0): 17, 3, 3, (607,444,0): 15, 3, 3, (607,445,0): 17, 5, 5, (607,446,0): 19, 7, 7, (607,447,0): 21, 9, 9, (607,448,0): 24, 12, 12, (607,449,0): 24, 12, 12, (607,450,0): 27, 13, 13, (607,451,0): 26, 14, 14, (607,452,0): 29, 15, 15, (607,453,0): 30, 16, 16, (607,454,0): 31, 17, 17, (607,455,0): 31, 17, 17, (607,456,0): 30, 16, 16, (607,457,0): 30, 16, 16, (607,458,0): 30, 16, 16, (607,459,0): 31, 17, 17, (607,460,0): 32, 18, 18, (607,461,0): 33, 19, 19, (607,462,0): 33, 19, 19, (607,463,0): 34, 20, 20, (607,464,0): 38, 24, 24, (607,465,0): 38, 24, 24, (607,466,0): 37, 23, 23, (607,467,0): 36, 22, 22, (607,468,0): 34, 20, 20, (607,469,0): 32, 18, 18, (607,470,0): 29, 15, 15, (607,471,0): 28, 14, 14, (607,472,0): 25, 11, 11, (607,473,0): 25, 11, 11, (607,474,0): 25, 11, 11, (607,475,0): 24, 10, 10, (607,476,0): 24, 10, 10, (607,477,0): 23, 9, 9, (607,478,0): 23, 9, 9, (607,479,0): 20, 8, 8, (607,480,0): 16, 6, 7, (607,481,0): 15, 6, 7, (607,482,0): 15, 6, 9, (607,483,0): 13, 7, 9, (607,484,0): 16, 7, 10, (607,485,0): 16, 7, 10, (607,486,0): 16, 7, 10, (607,487,0): 16, 7, 10, (607,488,0): 12, 1, 7, (607,489,0): 12, 1, 7, (607,490,0): 12, 1, 9, (607,491,0): 11, 1, 9, (607,492,0): 11, 1, 9, (607,493,0): 9, 2, 9, (607,494,0): 9, 2, 9, (607,495,0): 9, 2, 10, (607,496,0): 10, 3, 11, (607,497,0): 9, 2, 10, (607,498,0): 7, 0, 8, (607,499,0): 6, 0, 7, (607,500,0): 8, 0, 6, (607,501,0): 9, 0, 7, (607,502,0): 11, 1, 9, (607,503,0): 12, 3, 8, (607,504,0): 13, 3, 11, (607,505,0): 14, 3, 9, (607,506,0): 14, 3, 9, (607,507,0): 14, 3, 9, (607,508,0): 14, 3, 7, (607,509,0): 14, 3, 7, (607,510,0): 15, 3, 7, (607,511,0): 15, 3, 7, (607,512,0): 13, 0, 5, (607,513,0): 15, 0, 7, (607,514,0): 17, 2, 7, (607,515,0): 18, 3, 8, (607,516,0): 19, 4, 9, (607,517,0): 18, 3, 8, (607,518,0): 17, 2, 5, (607,519,0): 17, 1, 4, (607,520,0): 23, 7, 10, (607,521,0): 22, 6, 7, (607,522,0): 21, 5, 8, (607,523,0): 20, 4, 5, (607,524,0): 21, 5, 6, (607,525,0): 23, 7, 8, (607,526,0): 25, 9, 10, (607,527,0): 27, 11, 11, (607,528,0): 34, 15, 11, (607,529,0): 34, 15, 8, (607,530,0): 34, 13, 8, (607,531,0): 33, 12, 7, (607,532,0): 32, 11, 6, (607,533,0): 31, 10, 5, (607,534,0): 30, 9, 4, (607,535,0): 30, 9, 4, (607,536,0): 35, 14, 11, (607,537,0): 34, 13, 10, (607,538,0): 35, 11, 11, (607,539,0): 34, 10, 10, (607,540,0): 33, 9, 9, (607,541,0): 32, 8, 8, (607,542,0): 32, 8, 8, (607,543,0): 31, 6, 9, (607,544,0): 30, 10, 11, (607,545,0): 28, 9, 11, (607,546,0): 27, 8, 10, (607,547,0): 26, 7, 9, (607,548,0): 25, 6, 8, (607,549,0): 23, 4, 6, (607,550,0): 22, 3, 5, (607,551,0): 22, 3, 5, (607,552,0): 20, 4, 5, (607,553,0): 20, 4, 5, (607,554,0): 19, 3, 4, (607,555,0): 19, 3, 4, (607,556,0): 19, 3, 4, (607,557,0): 19, 3, 4, (607,558,0): 18, 2, 5, (607,559,0): 17, 2, 5, (607,560,0): 17, 2, 7, (607,561,0): 15, 3, 7, (607,562,0): 17, 2, 7, (607,563,0): 18, 3, 8, (607,564,0): 18, 3, 6, (607,565,0): 19, 4, 7, (607,566,0): 20, 4, 7, (607,567,0): 21, 5, 8, (607,568,0): 20, 4, 5, (607,569,0): 21, 5, 6, (607,570,0): 25, 7, 7, (607,571,0): 26, 8, 8, (607,572,0): 28, 10, 10, (607,573,0): 30, 12, 12, (607,574,0): 32, 14, 12, (607,575,0): 32, 14, 12, (607,576,0): 32, 16, 16, (607,577,0): 31, 17, 16, (607,578,0): 32, 18, 17, (607,579,0): 32, 18, 17, (607,580,0): 32, 18, 17, (607,581,0): 32, 18, 17, (607,582,0): 32, 18, 17, (607,583,0): 33, 17, 17, (607,584,0): 34, 18, 18, (607,585,0): 33, 17, 17, (607,586,0): 32, 16, 16, (607,587,0): 31, 15, 15, (607,588,0): 31, 15, 15, (607,589,0): 32, 16, 16, (607,590,0): 33, 17, 17, (607,591,0): 34, 18, 18, (607,592,0): 35, 21, 18, (607,593,0): 37, 23, 20, (607,594,0): 39, 25, 22, (607,595,0): 41, 27, 24, (607,596,0): 39, 28, 24, (607,597,0): 37, 26, 22, (607,598,0): 34, 23, 19, (607,599,0): 31, 20, 16, (608,0,0): 16, 44, 56, (608,1,0): 21, 49, 61, (608,2,0): 23, 51, 63, (608,3,0): 20, 48, 60, (608,4,0): 20, 48, 60, (608,5,0): 24, 52, 64, (608,6,0): 23, 51, 63, (608,7,0): 19, 47, 59, (608,8,0): 21, 49, 61, (608,9,0): 21, 49, 61, (608,10,0): 19, 47, 59, (608,11,0): 19, 47, 59, (608,12,0): 19, 47, 59, (608,13,0): 19, 47, 59, (608,14,0): 21, 49, 61, (608,15,0): 21, 49, 61, (608,16,0): 19, 45, 58, (608,17,0): 22, 48, 61, (608,18,0): 27, 50, 64, (608,19,0): 27, 50, 64, (608,20,0): 25, 48, 62, (608,21,0): 23, 46, 60, (608,22,0): 24, 47, 61, (608,23,0): 25, 48, 62, (608,24,0): 26, 49, 63, (608,25,0): 27, 50, 64, (608,26,0): 28, 51, 65, (608,27,0): 29, 52, 66, (608,28,0): 29, 52, 66, (608,29,0): 28, 51, 65, (608,30,0): 28, 50, 64, (608,31,0): 27, 49, 63, (608,32,0): 29, 51, 64, (608,33,0): 29, 48, 62, (608,34,0): 26, 48, 61, (608,35,0): 27, 49, 62, (608,36,0): 30, 52, 65, (608,37,0): 30, 54, 66, (608,38,0): 29, 53, 65, (608,39,0): 27, 51, 63, (608,40,0): 32, 54, 67, (608,41,0): 32, 54, 67, (608,42,0): 34, 53, 67, (608,43,0): 35, 53, 67, (608,44,0): 36, 52, 67, (608,45,0): 38, 51, 67, (608,46,0): 38, 51, 67, (608,47,0): 39, 51, 67, (608,48,0): 42, 51, 68, (608,49,0): 42, 51, 68, (608,50,0): 43, 52, 69, (608,51,0): 43, 52, 69, (608,52,0): 44, 53, 70, (608,53,0): 44, 53, 70, (608,54,0): 45, 54, 71, (608,55,0): 43, 55, 71, (608,56,0): 45, 57, 73, (608,57,0): 45, 57, 73, (608,58,0): 44, 57, 73, (608,59,0): 44, 57, 73, (608,60,0): 44, 57, 73, (608,61,0): 44, 57, 73, (608,62,0): 44, 57, 73, (608,63,0): 44, 57, 73, (608,64,0): 46, 58, 74, (608,65,0): 49, 58, 73, (608,66,0): 48, 60, 76, (608,67,0): 46, 58, 72, (608,68,0): 44, 56, 72, (608,69,0): 43, 55, 69, (608,70,0): 45, 58, 74, (608,71,0): 48, 62, 75, (608,72,0): 45, 58, 74, (608,73,0): 45, 61, 74, (608,74,0): 48, 61, 77, (608,75,0): 44, 60, 73, (608,76,0): 42, 58, 73, (608,77,0): 40, 56, 69, (608,78,0): 41, 57, 72, (608,79,0): 42, 60, 74, (608,80,0): 40, 62, 76, (608,81,0): 37, 60, 76, (608,82,0): 36, 62, 77, (608,83,0): 39, 65, 80, (608,84,0): 35, 63, 77, (608,85,0): 29, 56, 73, (608,86,0): 30, 57, 74, (608,87,0): 38, 64, 81, (608,88,0): 39, 60, 79, (608,89,0): 41, 59, 79, (608,90,0): 40, 58, 80, (608,91,0): 39, 57, 79, (608,92,0): 39, 57, 81, (608,93,0): 38, 58, 82, (608,94,0): 38, 60, 83, (608,95,0): 36, 61, 83, (608,96,0): 34, 61, 82, (608,97,0): 34, 61, 82, (608,98,0): 34, 61, 82, (608,99,0): 34, 61, 82, (608,100,0): 34, 61, 82, (608,101,0): 34, 61, 82, (608,102,0): 34, 60, 83, (608,103,0): 34, 60, 83, (608,104,0): 28, 54, 79, (608,105,0): 28, 54, 79, (608,106,0): 29, 55, 80, (608,107,0): 30, 56, 81, (608,108,0): 31, 57, 82, (608,109,0): 32, 58, 83, (608,110,0): 33, 59, 86, (608,111,0): 32, 60, 84, (608,112,0): 31, 61, 85, (608,113,0): 31, 62, 83, (608,114,0): 32, 63, 84, (608,115,0): 32, 63, 84, (608,116,0): 33, 63, 87, (608,117,0): 33, 63, 87, (608,118,0): 36, 64, 88, (608,119,0): 36, 64, 88, (608,120,0): 38, 65, 92, (608,121,0): 38, 65, 92, (608,122,0): 39, 65, 92, (608,123,0): 39, 65, 92, (608,124,0): 39, 64, 94, (608,125,0): 39, 64, 94, (608,126,0): 39, 64, 94, (608,127,0): 39, 64, 94, (608,128,0): 35, 62, 92, (608,129,0): 36, 63, 93, (608,130,0): 35, 64, 96, (608,131,0): 35, 64, 96, (608,132,0): 35, 64, 94, (608,133,0): 34, 65, 94, (608,134,0): 33, 64, 93, (608,135,0): 32, 63, 92, (608,136,0): 30, 61, 92, (608,137,0): 28, 61, 92, (608,138,0): 30, 60, 94, (608,139,0): 30, 60, 94, (608,140,0): 30, 60, 96, (608,141,0): 30, 60, 96, (608,142,0): 30, 60, 96, (608,143,0): 30, 60, 98, (608,144,0): 28, 60, 98, (608,145,0): 28, 60, 98, (608,146,0): 28, 60, 98, (608,147,0): 29, 61, 99, (608,148,0): 29, 61, 100, (608,149,0): 30, 62, 101, (608,150,0): 30, 62, 103, (608,151,0): 30, 62, 103, (608,152,0): 31, 63, 104, (608,153,0): 31, 63, 104, (608,154,0): 33, 64, 108, (608,155,0): 32, 65, 108, (608,156,0): 33, 64, 110, (608,157,0): 32, 65, 110, (608,158,0): 30, 63, 108, (608,159,0): 30, 63, 108, (608,160,0): 31, 62, 106, (608,161,0): 31, 63, 104, (608,162,0): 31, 62, 106, (608,163,0): 32, 64, 105, (608,164,0): 32, 63, 107, (608,165,0): 33, 65, 106, (608,166,0): 33, 64, 108, (608,167,0): 33, 65, 106, (608,168,0): 36, 67, 111, (608,169,0): 36, 68, 109, (608,170,0): 34, 65, 109, (608,171,0): 34, 66, 107, (608,172,0): 34, 65, 109, (608,173,0): 34, 66, 107, (608,174,0): 36, 67, 111, (608,175,0): 38, 67, 111, (608,176,0): 38, 67, 111, (608,177,0): 38, 67, 111, (608,178,0): 34, 67, 110, (608,179,0): 33, 68, 110, (608,180,0): 33, 68, 110, (608,181,0): 36, 69, 112, (608,182,0): 40, 68, 115, (608,183,0): 41, 69, 116, (608,184,0): 45, 72, 119, (608,185,0): 44, 72, 119, (608,186,0): 41, 73, 120, (608,187,0): 41, 75, 121, (608,188,0): 41, 75, 121, (608,189,0): 43, 75, 122, (608,190,0): 46, 74, 124, (608,191,0): 47, 75, 125, (608,192,0): 46, 76, 126, (608,193,0): 45, 76, 123, (608,194,0): 44, 74, 124, (608,195,0): 43, 73, 123, (608,196,0): 43, 73, 123, (608,197,0): 44, 74, 124, (608,198,0): 45, 75, 125, (608,199,0): 46, 76, 126, (608,200,0): 50, 80, 132, (608,201,0): 48, 78, 130, (608,202,0): 46, 76, 130, (608,203,0): 48, 78, 132, (608,204,0): 51, 81, 135, (608,205,0): 52, 82, 136, (608,206,0): 51, 81, 135, (608,207,0): 48, 79, 134, (608,208,0): 51, 82, 139, (608,209,0): 50, 82, 139, (608,210,0): 50, 82, 141, (608,211,0): 50, 82, 139, (608,212,0): 50, 82, 141, (608,213,0): 50, 82, 139, (608,214,0): 50, 82, 141, (608,215,0): 50, 82, 139, (608,216,0): 52, 84, 143, (608,217,0): 48, 80, 137, (608,218,0): 48, 80, 139, (608,219,0): 53, 85, 142, (608,220,0): 53, 85, 144, (608,221,0): 50, 82, 139, (608,222,0): 50, 82, 141, (608,223,0): 56, 87, 144, (608,224,0): 58, 87, 145, (608,225,0): 57, 86, 146, (608,226,0): 56, 84, 147, (608,227,0): 55, 83, 148, (608,228,0): 55, 83, 148, (608,229,0): 56, 84, 147, (608,230,0): 57, 86, 144, (608,231,0): 58, 87, 143, (608,232,0): 58, 88, 142, (608,233,0): 57, 86, 142, (608,234,0): 57, 86, 146, (608,235,0): 57, 85, 148, (608,236,0): 57, 85, 148, (608,237,0): 58, 87, 147, (608,238,0): 60, 89, 145, (608,239,0): 61, 91, 145, (608,240,0): 63, 89, 146, (608,241,0): 62, 88, 145, (608,242,0): 62, 87, 143, (608,243,0): 61, 86, 142, (608,244,0): 63, 85, 142, (608,245,0): 64, 86, 143, (608,246,0): 63, 88, 144, (608,247,0): 63, 90, 143, (608,248,0): 61, 91, 143, (608,249,0): 62, 92, 144, (608,250,0): 65, 92, 145, (608,251,0): 67, 92, 146, (608,252,0): 71, 92, 145, (608,253,0): 73, 93, 146, (608,254,0): 76, 91, 146, (608,255,0): 77, 93, 145, (608,256,0): 76, 92, 144, (608,257,0): 75, 91, 142, (608,258,0): 77, 91, 140, (608,259,0): 79, 91, 139, (608,260,0): 83, 91, 138, (608,261,0): 85, 89, 134, (608,262,0): 84, 83, 123, (608,263,0): 84, 78, 114, (608,264,0): 76, 65, 95, (608,265,0): 61, 47, 72, (608,266,0): 58, 41, 60, (608,267,0): 60, 42, 56, (608,268,0): 54, 34, 45, (608,269,0): 49, 30, 36, (608,270,0): 49, 28, 33, (608,271,0): 42, 21, 26, (608,272,0): 45, 20, 26, (608,273,0): 42, 17, 21, (608,274,0): 35, 14, 19, (608,275,0): 30, 11, 15, (608,276,0): 26, 10, 13, (608,277,0): 23, 8, 13, (608,278,0): 24, 9, 14, (608,279,0): 24, 9, 14, (608,280,0): 25, 10, 15, (608,281,0): 25, 10, 17, (608,282,0): 23, 8, 15, (608,283,0): 20, 7, 16, (608,284,0): 17, 6, 14, (608,285,0): 13, 6, 13, (608,286,0): 10, 5, 11, (608,287,0): 8, 5, 12, (608,288,0): 11, 4, 12, (608,289,0): 11, 4, 12, (608,290,0): 13, 3, 12, (608,291,0): 13, 3, 12, (608,292,0): 13, 3, 12, (608,293,0): 14, 2, 12, (608,294,0): 14, 2, 12, (608,295,0): 14, 2, 12, (608,296,0): 12, 0, 10, (608,297,0): 12, 2, 11, (608,298,0): 11, 4, 12, (608,299,0): 12, 5, 13, (608,300,0): 11, 6, 13, (608,301,0): 8, 5, 12, (608,302,0): 6, 5, 11, (608,303,0): 6, 3, 10, (608,304,0): 6, 1, 8, (608,305,0): 8, 3, 10, (608,306,0): 10, 5, 12, (608,307,0): 9, 4, 11, (608,308,0): 7, 2, 9, (608,309,0): 6, 1, 8, (608,310,0): 8, 3, 10, (608,311,0): 10, 5, 12, (608,312,0): 11, 6, 13, (608,313,0): 10, 5, 12, (608,314,0): 9, 4, 11, (608,315,0): 8, 3, 10, (608,316,0): 8, 3, 10, (608,317,0): 9, 4, 11, (608,318,0): 10, 5, 12, (608,319,0): 11, 6, 13, (608,320,0): 7, 2, 8, (608,321,0): 8, 1, 8, (608,322,0): 8, 1, 8, (608,323,0): 8, 3, 9, (608,324,0): 8, 3, 9, (608,325,0): 7, 5, 10, (608,326,0): 7, 5, 10, (608,327,0): 9, 4, 10, (608,328,0): 7, 2, 8, (608,329,0): 8, 1, 8, (608,330,0): 8, 1, 8, (608,331,0): 11, 1, 9, (608,332,0): 12, 1, 9, (608,333,0): 14, 1, 10, (608,334,0): 14, 1, 10, (608,335,0): 16, 0, 10, (608,336,0): 20, 5, 12, (608,337,0): 20, 5, 10, (608,338,0): 20, 5, 8, (608,339,0): 21, 6, 9, (608,340,0): 21, 7, 7, (608,341,0): 22, 8, 8, (608,342,0): 22, 8, 7, (608,343,0): 20, 9, 7, (608,344,0): 25, 11, 10, (608,345,0): 23, 9, 8, (608,346,0): 22, 8, 8, (608,347,0): 23, 9, 9, (608,348,0): 26, 11, 14, (608,349,0): 27, 12, 15, (608,350,0): 26, 11, 16, (608,351,0): 24, 9, 14, (608,352,0): 24, 9, 12, (608,353,0): 24, 10, 10, (608,354,0): 25, 11, 11, (608,355,0): 25, 11, 10, (608,356,0): 26, 12, 12, (608,357,0): 26, 12, 11, (608,358,0): 28, 12, 12, (608,359,0): 28, 12, 12, (608,360,0): 31, 13, 11, (608,361,0): 31, 13, 11, (608,362,0): 32, 14, 12, (608,363,0): 33, 15, 13, (608,364,0): 34, 16, 12, (608,365,0): 35, 17, 13, (608,366,0): 37, 18, 14, (608,367,0): 37, 18, 14, (608,368,0): 37, 18, 14, (608,369,0): 37, 18, 12, (608,370,0): 35, 16, 12, (608,371,0): 34, 15, 9, (608,372,0): 32, 13, 9, (608,373,0): 31, 12, 6, (608,374,0): 30, 11, 7, (608,375,0): 29, 10, 4, (608,376,0): 32, 13, 9, (608,377,0): 31, 12, 6, (608,378,0): 31, 12, 8, (608,379,0): 30, 11, 5, (608,380,0): 30, 11, 7, (608,381,0): 29, 10, 4, (608,382,0): 29, 10, 6, (608,383,0): 29, 10, 6, (608,384,0): 27, 7, 6, (608,385,0): 27, 7, 6, (608,386,0): 28, 7, 6, (608,387,0): 31, 7, 7, (608,388,0): 31, 7, 5, (608,389,0): 33, 7, 6, (608,390,0): 35, 7, 6, (608,391,0): 35, 7, 6, (608,392,0): 38, 8, 8, (608,393,0): 39, 9, 7, (608,394,0): 38, 10, 7, (608,395,0): 39, 11, 8, (608,396,0): 38, 10, 7, (608,397,0): 35, 10, 6, (608,398,0): 33, 8, 3, (608,399,0): 31, 8, 2, (608,400,0): 27, 6, 1, (608,401,0): 25, 6, 2, (608,402,0): 23, 5, 3, (608,403,0): 19, 3, 3, (608,404,0): 18, 4, 4, (608,405,0): 16, 4, 6, (608,406,0): 17, 5, 7, (608,407,0): 17, 5, 5, (608,408,0): 21, 5, 6, (608,409,0): 21, 5, 5, (608,410,0): 21, 5, 5, (608,411,0): 20, 6, 6, (608,412,0): 18, 6, 6, (608,413,0): 17, 6, 10, (608,414,0): 16, 7, 12, (608,415,0): 14, 8, 12, (608,416,0): 14, 8, 8, (608,417,0): 14, 9, 6, (608,418,0): 17, 9, 7, (608,419,0): 19, 9, 8, (608,420,0): 21, 9, 9, (608,421,0): 22, 10, 10, (608,422,0): 25, 11, 10, (608,423,0): 26, 10, 10, (608,424,0): 27, 9, 7, (608,425,0): 27, 9, 7, (608,426,0): 28, 10, 8, (608,427,0): 26, 11, 8, (608,428,0): 27, 12, 9, (608,429,0): 27, 12, 7, (608,430,0): 28, 13, 10, (608,431,0): 27, 13, 10, (608,432,0): 27, 13, 10, (608,433,0): 25, 14, 10, (608,434,0): 26, 12, 9, (608,435,0): 26, 12, 9, (608,436,0): 26, 11, 8, (608,437,0): 26, 11, 8, (608,438,0): 25, 9, 9, (608,439,0): 25, 9, 9, (608,440,0): 26, 10, 10, (608,441,0): 24, 10, 9, (608,442,0): 22, 8, 8, (608,443,0): 18, 6, 6, (608,444,0): 16, 6, 5, (608,445,0): 15, 7, 5, (608,446,0): 15, 6, 7, (608,447,0): 16, 8, 6, (608,448,0): 20, 10, 9, (608,449,0): 20, 10, 8, (608,450,0): 23, 12, 10, (608,451,0): 23, 13, 11, (608,452,0): 26, 15, 13, (608,453,0): 27, 16, 14, (608,454,0): 29, 18, 16, (608,455,0): 29, 18, 16, (608,456,0): 30, 16, 15, (608,457,0): 30, 16, 15, (608,458,0): 32, 16, 16, (608,459,0): 32, 16, 16, (608,460,0): 33, 17, 17, (608,461,0): 33, 17, 17, (608,462,0): 34, 18, 18, (608,463,0): 34, 18, 18, (608,464,0): 33, 19, 19, (608,465,0): 33, 19, 19, (608,466,0): 34, 20, 20, (608,467,0): 33, 19, 19, (608,468,0): 32, 18, 18, (608,469,0): 30, 16, 16, (608,470,0): 29, 15, 15, (608,471,0): 27, 13, 13, (608,472,0): 25, 11, 11, (608,473,0): 25, 11, 11, (608,474,0): 24, 10, 10, (608,475,0): 23, 9, 9, (608,476,0): 22, 8, 8, (608,477,0): 21, 7, 7, (608,478,0): 20, 6, 6, (608,479,0): 20, 6, 6, (608,480,0): 19, 7, 7, (608,481,0): 17, 5, 5, (608,482,0): 15, 5, 6, (608,483,0): 15, 6, 7, (608,484,0): 17, 7, 8, (608,485,0): 16, 6, 7, (608,486,0): 14, 2, 4, (608,487,0): 12, 0, 0, (608,488,0): 18, 2, 5, (608,489,0): 18, 2, 5, (608,490,0): 19, 3, 6, (608,491,0): 18, 3, 6, (608,492,0): 16, 4, 6, (608,493,0): 12, 3, 4, (608,494,0): 9, 3, 3, (608,495,0): 7, 3, 4, (608,496,0): 8, 2, 6, (608,497,0): 8, 2, 6, (608,498,0): 8, 2, 6, (608,499,0): 8, 2, 6, (608,500,0): 8, 2, 6, (608,501,0): 8, 2, 6, (608,502,0): 8, 2, 6, (608,503,0): 8, 2, 4, (608,504,0): 7, 1, 5, (608,505,0): 9, 0, 3, (608,506,0): 8, 0, 2, (608,507,0): 8, 0, 2, (608,508,0): 8, 0, 2, (608,509,0): 10, 1, 4, (608,510,0): 11, 2, 5, (608,511,0): 12, 3, 6, (608,512,0): 13, 2, 6, (608,513,0): 14, 2, 6, (608,514,0): 14, 2, 6, (608,515,0): 13, 1, 5, (608,516,0): 13, 1, 5, (608,517,0): 12, 0, 4, (608,518,0): 12, 0, 4, (608,519,0): 14, 0, 4, (608,520,0): 20, 5, 10, (608,521,0): 20, 5, 8, (608,522,0): 21, 4, 10, (608,523,0): 21, 5, 8, (608,524,0): 21, 5, 8, (608,525,0): 21, 5, 8, (608,526,0): 21, 5, 8, (608,527,0): 21, 5, 6, (608,528,0): 24, 4, 3, (608,529,0): 26, 7, 1, (608,530,0): 28, 9, 5, (608,531,0): 26, 7, 3, (608,532,0): 24, 5, 1, (608,533,0): 22, 3, 0, (608,534,0): 24, 5, 1, (608,535,0): 26, 7, 3, (608,536,0): 30, 11, 7, (608,537,0): 29, 10, 6, (608,538,0): 29, 8, 5, (608,539,0): 31, 10, 7, (608,540,0): 33, 12, 9, (608,541,0): 33, 12, 9, (608,542,0): 30, 9, 6, (608,543,0): 27, 6, 5, (608,544,0): 31, 7, 7, (608,545,0): 30, 5, 8, (608,546,0): 28, 3, 6, (608,547,0): 27, 2, 5, (608,548,0): 24, 2, 4, (608,549,0): 25, 3, 5, (608,550,0): 24, 4, 6, (608,551,0): 25, 5, 7, (608,552,0): 23, 4, 8, (608,553,0): 20, 1, 5, (608,554,0): 15, 0, 2, (608,555,0): 15, 0, 2, (608,556,0): 16, 1, 4, (608,557,0): 18, 3, 6, (608,558,0): 17, 2, 7, (608,559,0): 16, 1, 6, (608,560,0): 15, 0, 5, (608,561,0): 15, 0, 5, (608,562,0): 16, 1, 6, (608,563,0): 16, 1, 6, (608,564,0): 17, 2, 5, (608,565,0): 17, 2, 5, (608,566,0): 18, 3, 6, (608,567,0): 18, 3, 6, (608,568,0): 16, 2, 2, (608,569,0): 17, 3, 3, (608,570,0): 20, 4, 4, (608,571,0): 22, 6, 6, (608,572,0): 24, 8, 8, (608,573,0): 25, 9, 9, (608,574,0): 25, 10, 7, (608,575,0): 24, 10, 7, (608,576,0): 24, 13, 11, (608,577,0): 28, 17, 15, (608,578,0): 29, 18, 16, (608,579,0): 26, 15, 13, (608,580,0): 27, 16, 14, (608,581,0): 32, 21, 19, (608,582,0): 33, 22, 20, (608,583,0): 31, 17, 16, (608,584,0): 30, 16, 15, (608,585,0): 29, 15, 14, (608,586,0): 30, 14, 14, (608,587,0): 29, 13, 13, (608,588,0): 30, 14, 14, (608,589,0): 31, 15, 15, (608,590,0): 33, 17, 17, (608,591,0): 34, 18, 18, (608,592,0): 32, 18, 17, (608,593,0): 34, 20, 19, (608,594,0): 29, 18, 16, (608,595,0): 33, 22, 20, (608,596,0): 38, 28, 26, (608,597,0): 31, 21, 19, (608,598,0): 25, 17, 14, (608,599,0): 35, 27, 24, (609,0,0): 12, 40, 52, (609,1,0): 17, 45, 57, (609,2,0): 18, 46, 58, (609,3,0): 15, 43, 55, (609,4,0): 16, 44, 56, (609,5,0): 20, 48, 60, (609,6,0): 19, 47, 59, (609,7,0): 14, 42, 54, (609,8,0): 21, 49, 61, (609,9,0): 21, 49, 61, (609,10,0): 19, 47, 59, (609,11,0): 19, 47, 59, (609,12,0): 19, 47, 59, (609,13,0): 19, 47, 59, (609,14,0): 21, 49, 61, (609,15,0): 21, 49, 61, (609,16,0): 21, 44, 58, (609,17,0): 24, 47, 61, (609,18,0): 27, 50, 64, (609,19,0): 27, 50, 64, (609,20,0): 25, 48, 62, (609,21,0): 23, 46, 60, (609,22,0): 24, 47, 61, (609,23,0): 25, 48, 62, (609,24,0): 26, 49, 63, (609,25,0): 27, 50, 64, (609,26,0): 28, 51, 65, (609,27,0): 29, 52, 66, (609,28,0): 29, 52, 66, (609,29,0): 28, 51, 65, (609,30,0): 27, 50, 64, (609,31,0): 26, 49, 63, (609,32,0): 31, 50, 64, (609,33,0): 29, 48, 62, (609,34,0): 26, 48, 61, (609,35,0): 27, 49, 62, (609,36,0): 29, 53, 65, (609,37,0): 30, 54, 66, (609,38,0): 27, 54, 65, (609,39,0): 25, 52, 63, (609,40,0): 31, 55, 67, (609,41,0): 31, 55, 67, (609,42,0): 34, 53, 67, (609,43,0): 34, 53, 67, (609,44,0): 36, 52, 67, (609,45,0): 36, 52, 67, (609,46,0): 39, 51, 67, (609,47,0): 39, 51, 67, (609,48,0): 43, 50, 68, (609,49,0): 43, 50, 68, (609,50,0): 44, 51, 69, (609,51,0): 44, 51, 69, (609,52,0): 45, 52, 70, (609,53,0): 45, 52, 70, (609,54,0): 45, 54, 71, (609,55,0): 45, 54, 71, (609,56,0): 45, 57, 73, (609,57,0): 45, 57, 73, (609,58,0): 44, 57, 73, (609,59,0): 44, 57, 73, (609,60,0): 44, 57, 73, (609,61,0): 44, 57, 73, (609,62,0): 44, 57, 73, (609,63,0): 44, 57, 73, (609,64,0): 48, 57, 74, (609,65,0): 49, 58, 75, (609,66,0): 48, 60, 76, (609,67,0): 46, 58, 74, (609,68,0): 44, 56, 72, (609,69,0): 43, 55, 71, (609,70,0): 45, 58, 74, (609,71,0): 48, 61, 77, (609,72,0): 43, 59, 74, (609,73,0): 45, 61, 76, (609,74,0): 46, 62, 77, (609,75,0): 44, 60, 75, (609,76,0): 41, 59, 73, (609,77,0): 39, 57, 71, (609,78,0): 40, 58, 72, (609,79,0): 41, 60, 74, (609,80,0): 36, 58, 72, (609,81,0): 30, 56, 69, (609,82,0): 32, 58, 71, (609,83,0): 32, 62, 73, (609,84,0): 30, 59, 73, (609,85,0): 22, 54, 67, (609,86,0): 26, 53, 70, (609,87,0): 33, 59, 76, (609,88,0): 35, 56, 75, (609,89,0): 36, 54, 74, (609,90,0): 37, 52, 75, (609,91,0): 36, 52, 75, (609,92,0): 36, 52, 77, (609,93,0): 33, 53, 77, (609,94,0): 34, 54, 78, (609,95,0): 32, 57, 79, (609,96,0): 30, 57, 76, (609,97,0): 29, 58, 76, (609,98,0): 29, 57, 78, (609,99,0): 29, 57, 78, (609,100,0): 29, 57, 78, (609,101,0): 29, 57, 78, (609,102,0): 29, 57, 79, (609,103,0): 29, 57, 79, (609,104,0): 27, 55, 79, (609,105,0): 27, 55, 79, (609,106,0): 28, 56, 80, (609,107,0): 29, 57, 81, (609,108,0): 30, 57, 84, (609,109,0): 31, 58, 85, (609,110,0): 32, 59, 86, (609,111,0): 32, 60, 84, (609,112,0): 29, 57, 81, (609,113,0): 29, 57, 79, (609,114,0): 30, 58, 80, (609,115,0): 30, 58, 80, (609,116,0): 31, 59, 83, (609,117,0): 31, 59, 83, (609,118,0): 32, 60, 84, (609,119,0): 32, 60, 84, (609,120,0): 33, 60, 87, (609,121,0): 33, 60, 87, (609,122,0): 33, 60, 89, (609,123,0): 33, 60, 89, (609,124,0): 33, 60, 89, (609,125,0): 33, 60, 89, (609,126,0): 33, 60, 90, (609,127,0): 31, 60, 90, (609,128,0): 29, 59, 87, (609,129,0): 28, 59, 87, (609,130,0): 29, 60, 89, (609,131,0): 30, 61, 90, (609,132,0): 30, 61, 90, (609,133,0): 29, 60, 89, (609,134,0): 28, 59, 90, (609,135,0): 28, 59, 90, (609,136,0): 30, 60, 94, (609,137,0): 30, 60, 94, (609,138,0): 30, 60, 94, (609,139,0): 30, 60, 94, (609,140,0): 30, 60, 96, (609,141,0): 30, 60, 96, (609,142,0): 30, 60, 96, (609,143,0): 30, 60, 96, (609,144,0): 28, 60, 98, (609,145,0): 28, 60, 98, (609,146,0): 28, 60, 98, (609,147,0): 29, 61, 99, (609,148,0): 29, 61, 100, (609,149,0): 30, 62, 101, (609,150,0): 30, 62, 103, (609,151,0): 30, 62, 103, (609,152,0): 31, 63, 104, (609,153,0): 31, 63, 104, (609,154,0): 33, 64, 108, (609,155,0): 33, 64, 108, (609,156,0): 33, 64, 110, (609,157,0): 33, 64, 110, (609,158,0): 31, 62, 108, (609,159,0): 31, 62, 106, (609,160,0): 33, 62, 106, (609,161,0): 33, 62, 104, (609,162,0): 33, 62, 104, (609,163,0): 34, 63, 105, (609,164,0): 34, 63, 105, (609,165,0): 35, 64, 106, (609,166,0): 35, 64, 106, (609,167,0): 35, 64, 106, (609,168,0): 38, 67, 109, (609,169,0): 38, 67, 109, (609,170,0): 36, 65, 107, (609,171,0): 36, 65, 107, (609,172,0): 36, 65, 107, (609,173,0): 36, 65, 107, (609,174,0): 38, 67, 109, (609,175,0): 38, 67, 109, (609,176,0): 39, 66, 109, (609,177,0): 38, 67, 109, (609,178,0): 33, 68, 108, (609,179,0): 31, 69, 108, (609,180,0): 31, 68, 110, (609,181,0): 35, 70, 112, (609,182,0): 40, 69, 113, (609,183,0): 42, 69, 114, (609,184,0): 40, 67, 114, (609,185,0): 40, 68, 115, (609,186,0): 36, 70, 116, (609,187,0): 35, 72, 117, (609,188,0): 35, 72, 117, (609,189,0): 38, 72, 118, (609,190,0): 42, 70, 120, (609,191,0): 42, 70, 120, (609,192,0): 44, 72, 120, (609,193,0): 41, 72, 119, (609,194,0): 40, 71, 118, (609,195,0): 39, 70, 117, (609,196,0): 39, 69, 119, (609,197,0): 40, 70, 120, (609,198,0): 41, 71, 121, (609,199,0): 42, 72, 122, (609,200,0): 45, 75, 127, (609,201,0): 43, 73, 125, (609,202,0): 42, 72, 126, (609,203,0): 43, 73, 127, (609,204,0): 46, 76, 130, (609,205,0): 48, 78, 132, (609,206,0): 46, 75, 131, (609,207,0): 43, 74, 129, (609,208,0): 47, 78, 135, (609,209,0): 46, 78, 135, (609,210,0): 46, 78, 135, (609,211,0): 46, 78, 135, (609,212,0): 46, 78, 135, (609,213,0): 46, 78, 135, (609,214,0): 46, 78, 135, (609,215,0): 46, 78, 135, (609,216,0): 52, 84, 141, (609,217,0): 48, 80, 137, (609,218,0): 48, 80, 137, (609,219,0): 53, 85, 142, (609,220,0): 53, 85, 142, (609,221,0): 50, 82, 139, (609,222,0): 50, 82, 139, (609,223,0): 56, 87, 144, (609,224,0): 54, 83, 141, (609,225,0): 55, 81, 142, (609,226,0): 54, 79, 145, (609,227,0): 53, 78, 145, (609,228,0): 53, 78, 145, (609,229,0): 54, 79, 143, (609,230,0): 55, 81, 140, (609,231,0): 56, 83, 138, (609,232,0): 56, 83, 136, (609,233,0): 55, 82, 137, (609,234,0): 55, 81, 142, (609,235,0): 54, 79, 143, (609,236,0): 55, 81, 142, (609,237,0): 56, 82, 141, (609,238,0): 58, 85, 138, (609,239,0): 59, 86, 139, (609,240,0): 59, 86, 141, (609,241,0): 58, 84, 141, (609,242,0): 60, 82, 139, (609,243,0): 59, 81, 138, (609,244,0): 60, 81, 138, (609,245,0): 60, 82, 139, (609,246,0): 61, 84, 138, (609,247,0): 59, 86, 139, (609,248,0): 57, 87, 137, (609,249,0): 57, 89, 138, (609,250,0): 58, 88, 138, (609,251,0): 61, 89, 139, (609,252,0): 66, 88, 138, (609,253,0): 70, 87, 139, (609,254,0): 74, 87, 140, (609,255,0): 75, 88, 141, (609,256,0): 71, 89, 139, (609,257,0): 70, 88, 136, (609,258,0): 70, 86, 135, (609,259,0): 75, 88, 133, (609,260,0): 80, 87, 131, (609,261,0): 81, 85, 123, (609,262,0): 83, 79, 116, (609,263,0): 81, 74, 105, (609,264,0): 76, 66, 93, (609,265,0): 61, 48, 68, (609,266,0): 56, 42, 59, (609,267,0): 59, 43, 54, (609,268,0): 54, 34, 43, (609,269,0): 49, 30, 34, (609,270,0): 48, 29, 33, (609,271,0): 42, 22, 24, (609,272,0): 45, 20, 24, (609,273,0): 42, 17, 21, (609,274,0): 35, 15, 17, (609,275,0): 28, 12, 13, (609,276,0): 25, 10, 13, (609,277,0): 21, 9, 11, (609,278,0): 22, 10, 14, (609,279,0): 22, 10, 14, (609,280,0): 25, 10, 15, (609,281,0): 25, 10, 15, (609,282,0): 23, 8, 15, (609,283,0): 20, 7, 14, (609,284,0): 17, 6, 14, (609,285,0): 13, 6, 13, (609,286,0): 8, 6, 11, (609,287,0): 8, 6, 11, (609,288,0): 10, 5, 11, (609,289,0): 11, 4, 11, (609,290,0): 13, 3, 11, (609,291,0): 13, 3, 11, (609,292,0): 14, 3, 11, (609,293,0): 14, 3, 11, (609,294,0): 15, 2, 11, (609,295,0): 15, 2, 11, (609,296,0): 12, 1, 9, (609,297,0): 12, 2, 10, (609,298,0): 13, 3, 11, (609,299,0): 11, 6, 12, (609,300,0): 11, 6, 12, (609,301,0): 7, 6, 11, (609,302,0): 6, 5, 10, (609,303,0): 5, 4, 9, (609,304,0): 4, 1, 8, (609,305,0): 8, 3, 10, (609,306,0): 10, 5, 12, (609,307,0): 9, 4, 11, (609,308,0): 7, 2, 9, (609,309,0): 6, 1, 8, (609,310,0): 8, 3, 10, (609,311,0): 10, 5, 12, (609,312,0): 11, 6, 13, (609,313,0): 10, 5, 12, (609,314,0): 9, 4, 11, (609,315,0): 8, 3, 10, (609,316,0): 8, 3, 10, (609,317,0): 9, 4, 11, (609,318,0): 10, 5, 12, (609,319,0): 11, 6, 13, (609,320,0): 8, 1, 8, (609,321,0): 8, 1, 8, (609,322,0): 8, 1, 8, (609,323,0): 8, 3, 9, (609,324,0): 8, 3, 9, (609,325,0): 7, 5, 10, (609,326,0): 7, 5, 10, (609,327,0): 7, 5, 10, (609,328,0): 7, 2, 8, (609,329,0): 7, 2, 8, (609,330,0): 8, 1, 8, (609,331,0): 11, 1, 9, (609,332,0): 12, 1, 9, (609,333,0): 14, 1, 10, (609,334,0): 16, 0, 10, (609,335,0): 16, 1, 8, (609,336,0): 20, 5, 12, (609,337,0): 20, 5, 10, (609,338,0): 20, 5, 8, (609,339,0): 21, 7, 7, (609,340,0): 21, 7, 7, (609,341,0): 22, 8, 7, (609,342,0): 22, 8, 5, (609,343,0): 22, 8, 5, (609,344,0): 21, 7, 4, (609,345,0): 19, 5, 2, (609,346,0): 18, 4, 3, (609,347,0): 19, 5, 4, (609,348,0): 22, 7, 10, (609,349,0): 23, 8, 11, (609,350,0): 22, 7, 12, (609,351,0): 20, 5, 10, (609,352,0): 22, 10, 12, (609,353,0): 22, 10, 12, (609,354,0): 25, 11, 11, (609,355,0): 25, 11, 11, (609,356,0): 26, 12, 12, (609,357,0): 26, 12, 12, (609,358,0): 28, 12, 12, (609,359,0): 28, 12, 12, (609,360,0): 27, 9, 7, (609,361,0): 27, 9, 7, (609,362,0): 28, 10, 8, (609,363,0): 29, 11, 9, (609,364,0): 31, 12, 8, (609,365,0): 32, 13, 9, (609,366,0): 33, 14, 10, (609,367,0): 33, 14, 10, (609,368,0): 33, 14, 10, (609,369,0): 32, 13, 9, (609,370,0): 31, 12, 8, (609,371,0): 30, 11, 7, (609,372,0): 28, 9, 5, (609,373,0): 27, 8, 4, (609,374,0): 25, 6, 2, (609,375,0): 25, 6, 2, (609,376,0): 27, 8, 4, (609,377,0): 27, 8, 4, (609,378,0): 27, 8, 4, (609,379,0): 26, 7, 3, (609,380,0): 26, 7, 3, (609,381,0): 25, 6, 2, (609,382,0): 25, 6, 2, (609,383,0): 24, 5, 1, (609,384,0): 26, 8, 8, (609,385,0): 26, 8, 8, (609,386,0): 28, 6, 8, (609,387,0): 29, 7, 9, (609,388,0): 32, 6, 7, (609,389,0): 33, 7, 8, (609,390,0): 36, 6, 8, (609,391,0): 36, 6, 8, (609,392,0): 39, 7, 8, (609,393,0): 40, 8, 9, (609,394,0): 39, 9, 7, (609,395,0): 40, 10, 8, (609,396,0): 38, 10, 7, (609,397,0): 37, 9, 6, (609,398,0): 33, 8, 3, (609,399,0): 31, 8, 2, (609,400,0): 29, 5, 1, (609,401,0): 25, 6, 2, (609,402,0): 23, 5, 3, (609,403,0): 18, 4, 4, (609,404,0): 16, 4, 6, (609,405,0): 15, 4, 8, (609,406,0): 16, 5, 9, (609,407,0): 17, 5, 7, (609,408,0): 20, 6, 6, (609,409,0): 21, 5, 5, (609,410,0): 21, 5, 5, (609,411,0): 20, 6, 5, (609,412,0): 18, 6, 8, (609,413,0): 16, 7, 10, (609,414,0): 14, 7, 14, (609,415,0): 13, 8, 14, (609,416,0): 13, 9, 10, (609,417,0): 13, 9, 8, (609,418,0): 17, 9, 7, (609,419,0): 18, 10, 8, (609,420,0): 21, 9, 9, (609,421,0): 22, 10, 10, (609,422,0): 26, 10, 10, (609,423,0): 26, 10, 10, (609,424,0): 27, 9, 7, (609,425,0): 27, 9, 7, (609,426,0): 26, 11, 8, (609,427,0): 26, 11, 8, (609,428,0): 26, 13, 7, (609,429,0): 26, 13, 7, (609,430,0): 25, 14, 8, (609,431,0): 25, 14, 8, (609,432,0): 25, 14, 8, (609,433,0): 25, 14, 8, (609,434,0): 26, 13, 7, (609,435,0): 26, 13, 7, (609,436,0): 26, 11, 8, (609,437,0): 26, 11, 8, (609,438,0): 27, 9, 7, (609,439,0): 27, 9, 7, (609,440,0): 26, 10, 10, (609,441,0): 24, 10, 9, (609,442,0): 22, 8, 8, (609,443,0): 17, 7, 6, (609,444,0): 16, 6, 5, (609,445,0): 13, 8, 5, (609,446,0): 13, 7, 7, (609,447,0): 14, 9, 6, (609,448,0): 19, 11, 9, (609,449,0): 20, 10, 8, (609,450,0): 22, 12, 10, (609,451,0): 23, 13, 11, (609,452,0): 25, 15, 13, (609,453,0): 26, 16, 14, (609,454,0): 29, 18, 16, (609,455,0): 29, 18, 16, (609,456,0): 30, 16, 15, (609,457,0): 30, 16, 15, (609,458,0): 32, 16, 16, (609,459,0): 32, 16, 16, (609,460,0): 33, 17, 17, (609,461,0): 33, 17, 17, (609,462,0): 34, 18, 18, (609,463,0): 34, 18, 18, (609,464,0): 33, 19, 19, (609,465,0): 33, 19, 19, (609,466,0): 34, 20, 20, (609,467,0): 33, 19, 19, (609,468,0): 32, 18, 18, (609,469,0): 30, 16, 16, (609,470,0): 29, 15, 15, (609,471,0): 27, 13, 13, (609,472,0): 25, 11, 11, (609,473,0): 25, 11, 11, (609,474,0): 24, 10, 10, (609,475,0): 23, 9, 9, (609,476,0): 22, 8, 8, (609,477,0): 21, 7, 7, (609,478,0): 20, 6, 6, (609,479,0): 20, 6, 6, (609,480,0): 21, 7, 7, (609,481,0): 17, 5, 5, (609,482,0): 16, 4, 4, (609,483,0): 16, 6, 5, (609,484,0): 17, 7, 6, (609,485,0): 16, 6, 5, (609,486,0): 16, 2, 2, (609,487,0): 13, 0, 0, (609,488,0): 20, 1, 3, (609,489,0): 21, 1, 3, (609,490,0): 22, 2, 4, (609,491,0): 21, 2, 4, (609,492,0): 18, 4, 4, (609,493,0): 13, 3, 2, (609,494,0): 9, 4, 1, (609,495,0): 7, 3, 0, (609,496,0): 8, 2, 4, (609,497,0): 8, 2, 4, (609,498,0): 8, 2, 4, (609,499,0): 8, 2, 4, (609,500,0): 8, 2, 4, (609,501,0): 8, 2, 4, (609,502,0): 8, 2, 4, (609,503,0): 8, 2, 4, (609,504,0): 7, 1, 3, (609,505,0): 7, 1, 3, (609,506,0): 6, 0, 2, (609,507,0): 6, 0, 2, (609,508,0): 6, 0, 2, (609,509,0): 8, 2, 4, (609,510,0): 9, 3, 5, (609,511,0): 10, 4, 6, (609,512,0): 13, 2, 6, (609,513,0): 13, 2, 6, (609,514,0): 13, 2, 6, (609,515,0): 12, 1, 5, (609,516,0): 12, 1, 5, (609,517,0): 11, 0, 4, (609,518,0): 12, 0, 4, (609,519,0): 12, 0, 4, (609,520,0): 16, 1, 6, (609,521,0): 16, 1, 6, (609,522,0): 17, 0, 6, (609,523,0): 17, 0, 6, (609,524,0): 17, 0, 6, (609,525,0): 17, 0, 6, (609,526,0): 17, 0, 6, (609,527,0): 17, 1, 4, (609,528,0): 19, 0, 0, (609,529,0): 22, 3, 0, (609,530,0): 25, 6, 2, (609,531,0): 25, 6, 2, (609,532,0): 25, 6, 2, (609,533,0): 25, 6, 2, (609,534,0): 28, 9, 5, (609,535,0): 31, 12, 8, (609,536,0): 30, 11, 7, (609,537,0): 29, 10, 6, (609,538,0): 28, 9, 5, (609,539,0): 30, 11, 7, (609,540,0): 32, 13, 9, (609,541,0): 32, 13, 9, (609,542,0): 29, 10, 6, (609,543,0): 27, 6, 3, (609,544,0): 32, 6, 7, (609,545,0): 33, 4, 6, (609,546,0): 29, 3, 6, (609,547,0): 28, 2, 5, (609,548,0): 26, 1, 4, (609,549,0): 27, 2, 5, (609,550,0): 25, 3, 6, (609,551,0): 25, 5, 7, (609,552,0): 24, 3, 8, (609,553,0): 20, 1, 5, (609,554,0): 15, 0, 2, (609,555,0): 15, 0, 2, (609,556,0): 16, 1, 6, (609,557,0): 18, 3, 8, (609,558,0): 15, 3, 7, (609,559,0): 14, 2, 6, (609,560,0): 15, 0, 5, (609,561,0): 15, 0, 5, (609,562,0): 16, 1, 6, (609,563,0): 16, 1, 6, (609,564,0): 17, 2, 5, (609,565,0): 17, 2, 5, (609,566,0): 18, 3, 6, (609,567,0): 18, 3, 6, (609,568,0): 16, 2, 2, (609,569,0): 17, 3, 3, (609,570,0): 19, 5, 4, (609,571,0): 21, 7, 6, (609,572,0): 23, 9, 8, (609,573,0): 24, 10, 9, (609,574,0): 24, 10, 7, (609,575,0): 22, 11, 7, (609,576,0): 19, 8, 6, (609,577,0): 23, 13, 11, (609,578,0): 24, 14, 12, (609,579,0): 21, 11, 9, (609,580,0): 22, 12, 10, (609,581,0): 27, 17, 15, (609,582,0): 29, 18, 16, (609,583,0): 25, 14, 12, (609,584,0): 30, 16, 15, (609,585,0): 29, 15, 14, (609,586,0): 30, 14, 14, (609,587,0): 29, 13, 13, (609,588,0): 30, 14, 14, (609,589,0): 31, 15, 15, (609,590,0): 33, 17, 17, (609,591,0): 34, 18, 18, (609,592,0): 32, 18, 17, (609,593,0): 34, 20, 19, (609,594,0): 29, 18, 16, (609,595,0): 32, 22, 20, (609,596,0): 38, 28, 26, (609,597,0): 30, 22, 19, (609,598,0): 23, 18, 14, (609,599,0): 33, 28, 24 } ATTRIBUTE "CLASS" { DATATYPE H5T_STRING { STRSIZE 6; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "IMAGE\000" } } ATTRIBUTE "IMAGE_MINMAXRANGE" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 2 ) / ( 2 ) } DATA { (0): 0, 255 } } ATTRIBUTE "IMAGE_SUBCLASS" { DATATYPE H5T_STRING { STRSIZE 16; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "IMAGE_TRUECOLOR\000" } } ATTRIBUTE "IMAGE_VERSION" { DATATYPE H5T_STRING { STRSIZE 4; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "1.2\000" } } ATTRIBUTE "INTERLACE_MODE" { DATATYPE H5T_STRING { STRSIZE 16; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "INTERLACE_PIXEL\000" } } } DATASET "iceberg_palette" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 256, 3 ) / ( 256, 3 ) } DATA { (0,0): 10, 9, 15, (1,0): 28, 130, 124, (2,0): 152, 131, 131, (3,0): 109, 65, 69, (4,0): 152, 200, 203, (5,0): 64, 196, 203, (6,0): 34, 68, 77, (7,0): 96, 135, 141, (8,0): 209, 196, 199, (9,0): 36, 100, 118, (10,0): 97, 166, 168, (11,0): 61, 25, 30, (12,0): 206, 152, 155, (13,0): 153, 227, 233, (14,0): 113, 98, 101, (15,0): 153, 166, 168, (16,0): 209, 229, 227, (17,0): 90, 227, 236, (18,0): 80, 67, 71, (19,0): 10, 38, 51, (20,0): 77, 100, 105, (21,0): 67, 164, 184, (22,0): 158, 100, 103, (23,0): 131, 164, 169, (24,0): 134, 132, 134, (25,0): 189, 196, 198, (26,0): 110, 196, 199, (27,0): 188, 164, 167, (28,0): 119, 116, 119, (29,0): 189, 228, 232, (30,0): 112, 212, 214, (31,0): 78, 115, 121, (32,0): 65, 134, 142, (33,0): 64, 46, 50, (34,0): 182, 133, 136, (35,0): 46, 35, 42, (36,0): 238, 196, 199, (37,0): 245, 228, 231, (38,0): 79, 84, 89, (39,0): 96, 150, 153, (40,0): 96, 181, 192, (41,0): 34, 84, 90, (42,0): 65, 149, 161, (43,0): 152, 215, 216, (44,0): 38, 5, 10, (45,0): 152, 183, 187, (46,0): 85, 48, 52, (47,0): 131, 180, 183, (48,0): 44, 117, 117, (49,0): 112, 80, 82, (50,0): 134, 99, 102, (51,0): 153, 150, 152, (52,0): 151, 249, 247, (53,0): 208, 214, 216, (54,0): 134, 196, 199, (55,0): 47, 51, 58, (56,0): 208, 251, 250, (57,0): 67, 179, 196, (58,0): 133, 148, 151, (59,0): 187, 212, 214, (60,0): 96, 119, 125, (61,0): 122, 229, 240, (62,0): 97, 101, 105, (63,0): 140, 116, 119, (64,0): 209, 175, 177, (65,0): 135, 212, 215, (66,0): 97, 84, 87, (67,0): 96, 168, 187, (68,0): 96, 153, 171, (69,0): 188, 244, 246, (70,0): 189, 180, 183, (71,0): 53, 67, 74, (72,0): 95, 68, 68, (73,0): 81, 135, 143, (74,0): 112, 133, 137, (75,0): 168, 199, 203, (76,0): 54, 84, 93, (77,0): 81, 149, 158, (78,0): 158, 117, 119, (79,0): 72, 56, 58, (80,0): 133, 81, 85, (81,0): 10, 56, 66, (82,0): 113, 182, 190, (83,0): 169, 214, 215, (84,0): 168, 182, 184, (85,0): 168, 228, 233, (86,0): 122, 246, 245, (87,0): 10, 23, 23, (88,0): 40, 21, 26, (89,0): 246, 244, 248, (90,0): 228, 176, 178, (91,0): 184, 148, 151, (92,0): 54, 100, 109, (93,0): 168, 164, 167, (94,0): 131, 165, 189, (95,0): 225, 228, 231, (96,0): 79, 164, 178, (97,0): 241, 212, 215, (98,0): 131, 181, 201, (99,0): 224, 212, 215, (100,0): 118, 108, 111, (101,0): 76, 116, 135, (102,0): 77, 101, 118, (103,0): 74, 85, 101, (104,0): 168, 148, 151, (105,0): 167, 132, 135, (106,0): 57, 117, 125, (107,0): 50, 85, 108, (108,0): 138, 108, 111, (109,0): 133, 196, 215, (110,0): 132, 155, 167, (111,0): 86, 38, 45, (112,0): 112, 169, 187, (113,0): 53, 73, 86, (114,0): 108, 200, 218, (115,0): 188, 236, 239, (116,0): 87, 58, 59, (117,0): 43, 29, 37, (118,0): 54, 106, 127, (119,0): 47, 42, 53, (120,0): 46, 58, 71, (121,0): 224, 200, 203, (122,0): 187, 219, 231, (123,0): 208, 186, 189, (124,0): 182, 124, 129, (125,0): 77, 69, 84, (126,0): 133, 217, 234, (127,0): 111, 155, 171, (128,0): 62, 36, 41, (129,0): 65, 219, 232, (130,0): 50, 149, 157, (131,0): 88, 196, 211, (132,0): 81, 179, 194, (133,0): 135, 73, 76, (134,0): 104, 241, 236, (135,0): 88, 218, 220, (136,0): 50, 135, 153, (137,0): 206, 163, 165, (138,0): 157, 109, 111, (139,0): 27, 37, 40, (140,0): 27, 24, 30, (141,0): 230, 187, 189, (142,0): 133, 140, 149, (143,0): 109, 217, 233, (144,0): 137, 231, 235, (145,0): 27, 55, 66, (146,0): 110, 73, 76, (147,0): 26, 10, 15, (148,0): 112, 166, 170, (149,0): 112, 150, 154, (150,0): 169, 248, 248, (151,0): 224, 251, 250, (152,0): 186, 203, 214, (153,0): 117, 124, 133, (154,0): 35, 89, 105, (155,0): 42, 117, 138, (156,0): 115, 88, 93, (157,0): 188, 188, 197, (158,0): 151, 202, 223, (159,0): 95, 138, 160, (160,0): 95, 185, 207, (161,0): 66, 155, 177, (162,0): 151, 187, 209, (163,0): 96, 123, 143, (164,0): 81, 138, 160, (165,0): 168, 204, 224, (166,0): 79, 154, 176, (167,0): 113, 186, 206, (168,0): 136, 249, 249, (169,0): 78, 170, 191, (170,0): 80, 184, 205, (171,0): 105, 230, 233, (172,0): 64, 203, 202, (173,0): 35, 75, 86, (174,0): 33, 108, 124, (175,0): 190, 172, 175, (176,0): 182, 140, 142, (177,0): 240, 204, 207, (178,0): 245, 236, 238, (179,0): 62, 187, 186, (180,0): 140, 124, 126, (181,0): 160, 124, 127, (182,0): 134, 89, 93, (183,0): 187, 156, 159, (184,0): 88, 204, 217, (185,0): 70, 60, 69, (186,0): 88, 61, 68, (187,0): 153, 137, 142, (188,0): 152, 171, 183, (189,0): 209, 234, 240, (190,0): 65, 138, 160, (191,0): 152, 217, 231, (192,0): 153, 156, 165, (193,0): 209, 220, 230, (194,0): 96, 107, 119, (195,0): 96, 73, 79, (196,0): 112, 138, 152, (197,0): 168, 219, 232, (198,0): 168, 187, 200, (199,0): 10, 28, 41, (200,0): 56, 122, 144, (201,0): 27, 40, 54, (202,0): 52, 151, 178, (203,0): 174, 109, 113, (204,0): 80, 75, 75, (205,0): 67, 171, 190, (206,0): 133, 172, 176, (207,0): 135, 139, 139, (208,0): 111, 220, 218, (209,0): 75, 123, 123, (210,0): 40, 13, 18, (211,0): 132, 187, 187, (212,0): 190, 253, 251, (213,0): 54, 91, 98, (214,0): 244, 253, 252, (215,0): 55, 108, 112, (216,0): 243, 220, 222, (217,0): 132, 189, 202, (218,0): 77, 124, 138, (219,0): 77, 76, 85, (220,0): 124, 98, 101, (221,0): 76, 48, 52, (222,0): 148, 100, 103, (223,0): 220, 186, 187, (224,0): 76, 37, 41, (225,0): 76, 216, 216, (226,0): 208, 204, 207, (227,0): 154, 236, 238, (228,0): 78, 107, 107, (229,0): 189, 203, 203, (230,0): 108, 203, 200, (231,0): 119, 123, 123, (232,0): 50, 42, 44, (233,0): 78, 91, 92, (234,0): 115, 87, 84, (235,0): 134, 203, 202, (236,0): 47, 59, 60, (237,0): 134, 155, 155, (238,0): 188, 219, 218, (239,0): 120, 236, 238, (240,0): 133, 220, 217, (241,0): 97, 92, 96, (242,0): 189, 187, 187, (243,0): 55, 75, 75, (244,0): 168, 236, 240, (245,0): 42, 27, 28, (246,0): 169, 172, 176, (247,0): 129, 172, 193, (248,0): 224, 236, 240, (249,0): 224, 220, 223, (250,0): 77, 108, 120, (251,0): 77, 92, 103, (252,0): 169, 156, 159, (253,0): 168, 140, 143, (254,0): 53, 92, 111, (255,0): 132, 204, 217 } ATTRIBUTE "CLASS" { DATATYPE H5T_STRING { STRSIZE 8; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "PALETTE" } } ATTRIBUTE "PAL_COLORMODEL" { DATATYPE H5T_STRING { STRSIZE 4; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "RGB" } } ATTRIBUTE "PAL_MINMAXNUMERIC" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 2 ) / ( 2 ) } DATA { (0): 0, 255 } } ATTRIBUTE "PAL_TYPE" { DATATYPE H5T_STRING { STRSIZE 12; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "DIRECTINDEX" } } ATTRIBUTE "PAL_VERSION" { DATATYPE H5T_IEEE_F32BE DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): 1 } } } DATASET "pixel interlace" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 149, 227, 3 ) / ( 149, 227, 3 ) } DATA { (0,0,0): 48, 47, 45, (0,1,0): 48, 47, 45, (0,2,0): 49, 48, 46, (0,3,0): 50, 49, 47, (0,4,0): 53, 49, 46, (0,5,0): 53, 49, 46, (0,6,0): 54, 50, 47, (0,7,0): 54, 50, 47, (0,8,0): 56, 51, 47, (0,9,0): 56, 51, 47, (0,10,0): 58, 51, 45, (0,11,0): 58, 51, 45, (0,12,0): 58, 51, 45, (0,13,0): 58, 51, 45, (0,14,0): 58, 51, 45, (0,15,0): 58, 51, 45, (0,16,0): 58, 50, 47, (0,17,0): 57, 49, 46, (0,18,0): 57, 49, 46, (0,19,0): 56, 48, 45, (0,20,0): 56, 48, 45, (0,21,0): 57, 49, 46, (0,22,0): 57, 49, 46, (0,23,0): 58, 50, 47, (0,24,0): 56, 48, 45, (0,25,0): 56, 48, 45, (0,26,0): 56, 48, 45, (0,27,0): 56, 48, 45, (0,28,0): 56, 48, 45, (0,29,0): 56, 48, 45, (0,30,0): 56, 48, 45, (0,31,0): 56, 48, 45, (0,32,0): 54, 46, 43, (0,33,0): 54, 46, 43, (0,34,0): 54, 46, 43, (0,35,0): 53, 45, 42, (0,36,0): 53, 45, 42, (0,37,0): 52, 44, 41, (0,38,0): 52, 44, 41, (0,39,0): 52, 44, 41, (0,40,0): 52, 44, 41, (0,41,0): 52, 44, 41, (0,42,0): 52, 44, 41, (0,43,0): 52, 44, 41, (0,44,0): 52, 44, 41, (0,45,0): 52, 44, 41, (0,46,0): 52, 44, 41, (0,47,0): 50, 45, 41, (0,48,0): 47, 42, 36, (0,49,0): 47, 44, 37, (0,50,0): 47, 44, 37, (0,51,0): 48, 45, 38, (0,52,0): 49, 46, 39, (0,53,0): 50, 47, 40, (0,54,0): 51, 48, 41, (0,55,0): 51, 48, 41, (0,56,0): 54, 51, 44, (0,57,0): 54, 51, 44, (0,58,0): 55, 52, 45, (0,59,0): 56, 53, 46, (0,60,0): 56, 53, 46, (0,61,0): 57, 54, 47, (0,62,0): 58, 55, 48, (0,63,0): 58, 55, 46, (0,64,0): 65, 58, 48, (0,65,0): 66, 60, 48, (0,66,0): 68, 62, 50, (0,67,0): 70, 64, 52, (0,68,0): 73, 65, 52, (0,69,0): 74, 66, 53, (0,70,0): 75, 67, 54, (0,71,0): 75, 67, 54, (0,72,0): 77, 68, 53, (0,73,0): 77, 68, 53, (0,74,0): 79, 67, 51, (0,75,0): 78, 66, 50, (0,76,0): 79, 67, 51, (0,77,0): 79, 67, 51, (0,78,0): 80, 68, 52, (0,79,0): 82, 69, 53, (0,80,0): 82, 63, 49, (0,81,0): 89, 63, 50, (0,82,0): 98, 64, 52, (0,83,0): 110, 66, 53, (0,84,0): 125, 69, 54, (0,85,0): 139, 72, 56, (0,86,0): 153, 71, 57, (0,87,0): 163, 70, 55, (0,88,0): 175, 71, 58, (0,89,0): 184, 71, 57, (0,90,0): 190, 69, 58, (0,91,0): 197, 71, 59, (0,92,0): 199, 71, 62, (0,93,0): 202, 71, 63, (0,94,0): 203, 72, 64, (0,95,0): 208, 69, 64, (0,96,0): 231, 70, 76, (0,97,0): 237, 67, 76, (0,98,0): 235, 68, 75, (0,99,0): 235, 69, 73, (0,100,0): 238, 67, 73, (0,101,0): 239, 66, 68, (0,102,0): 241, 62, 66, (0,103,0): 244, 61, 65, (0,104,0): 248, 59, 65, (0,105,0): 247, 58, 64, (0,106,0): 244, 58, 63, (0,107,0): 240, 60, 63, (0,108,0): 233, 63, 64, (0,109,0): 226, 64, 62, (0,110,0): 215, 63, 60, (0,111,0): 203, 65, 55, (0,112,0): 187, 61, 47, (0,113,0): 181, 64, 46, (0,114,0): 181, 64, 46, (0,115,0): 180, 63, 45, (0,116,0): 180, 63, 45, (0,117,0): 179, 64, 45, (0,118,0): 178, 63, 45, (0,119,0): 175, 64, 45, (0,120,0): 173, 64, 44, (0,121,0): 170, 65, 44, (0,122,0): 166, 65, 45, (0,123,0): 162, 66, 44, (0,124,0): 159, 64, 42, (0,125,0): 155, 65, 41, (0,126,0): 152, 64, 42, (0,127,0): 150, 65, 44, (0,128,0): 148, 62, 45, (0,129,0): 146, 63, 47, (0,130,0): 146, 63, 47, (0,131,0): 145, 62, 46, (0,132,0): 145, 62, 44, (0,133,0): 144, 61, 43, (0,134,0): 146, 60, 43, (0,135,0): 146, 60, 43, (0,136,0): 148, 63, 43, (0,137,0): 148, 63, 43, (0,138,0): 148, 61, 42, (0,139,0): 148, 61, 42, (0,140,0): 148, 61, 42, (0,141,0): 149, 62, 43, (0,142,0): 150, 63, 44, (0,143,0): 150, 64, 47, (0,144,0): 150, 63, 54, (0,145,0): 149, 62, 53, (0,146,0): 151, 61, 50, (0,147,0): 159, 63, 49, (0,148,0): 169, 66, 51, (0,149,0): 179, 68, 51, (0,150,0): 188, 68, 52, (0,151,0): 191, 68, 52, (0,152,0): 185, 63, 48, (0,153,0): 181, 65, 50, (0,154,0): 172, 70, 56, (0,155,0): 158, 72, 59, (0,156,0): 135, 72, 57, (0,157,0): 111, 65, 50, (0,158,0): 84, 56, 42, (0,159,0): 67, 51, 38, (0,160,0): 61, 53, 50, (0,161,0): 57, 53, 52, (0,162,0): 57, 53, 52, (0,163,0): 55, 51, 50, (0,164,0): 55, 49, 49, (0,165,0): 54, 48, 48, (0,166,0): 53, 48, 45, (0,167,0): 53, 48, 45, (0,168,0): 55, 50, 47, (0,169,0): 55, 50, 47, (0,170,0): 55, 50, 47, (0,171,0): 54, 49, 46, (0,172,0): 54, 49, 45, (0,173,0): 53, 48, 44, (0,174,0): 53, 48, 44, (0,175,0): 52, 49, 44, (0,176,0): 47, 47, 45, (0,177,0): 46, 48, 45, (0,178,0): 47, 47, 45, (0,179,0): 47, 47, 45, (0,180,0): 48, 47, 45, (0,181,0): 48, 47, 45, (0,182,0): 50, 46, 45, (0,183,0): 50, 46, 45, (0,184,0): 53, 44, 45, (0,185,0): 52, 43, 44, (0,186,0): 52, 42, 43, (0,187,0): 51, 41, 42, (0,188,0): 55, 40, 43, (0,189,0): 61, 46, 49, (0,190,0): 69, 54, 57, (0,191,0): 80, 58, 60, (0,192,0): 106, 66, 67, (0,193,0): 124, 73, 72, (0,194,0): 141, 77, 77, (0,195,0): 149, 79, 79, (0,196,0): 159, 87, 91, (0,197,0): 170, 100, 110, (0,198,0): 170, 111, 131, (0,199,0): 159, 116, 144, (0,200,0): 148, 123, 163, (0,201,0): 135, 127, 174, (0,202,0): 128, 134, 186, (0,203,0): 126, 136, 189, (0,204,0): 115, 121, 173, (0,205,0): 96, 97, 145, (0,206,0): 84, 75, 118, (0,207,0): 80, 68, 104, (0,208,0): 83, 74, 103, (0,209,0): 79, 71, 94, (0,210,0): 77, 72, 94, (0,211,0): 84, 81, 98, (0,212,0): 102, 100, 111, (0,213,0): 124, 125, 130, (0,214,0): 141, 145, 144, (0,215,0): 153, 158, 152, (0,216,0): 163, 169, 159, (0,217,0): 162, 168, 154, (0,218,0): 158, 160, 147, (0,219,0): 143, 146, 129, (0,220,0): 123, 124, 108, (0,221,0): 102, 103, 85, (0,222,0): 88, 87, 69, (0,223,0): 81, 78, 69, (0,224,0): 85, 82, 91, (0,225,0): 85, 81, 98, (0,226,0): 85, 81, 98, (1,0,0): 48, 47, 45, (1,1,0): 48, 47, 45, (1,2,0): 49, 48, 46, (1,3,0): 49, 48, 46, (1,4,0): 52, 48, 45, (1,5,0): 53, 49, 46, (1,6,0): 54, 50, 47, (1,7,0): 54, 50, 47, (1,8,0): 56, 51, 47, (1,9,0): 56, 51, 47, (1,10,0): 58, 51, 45, (1,11,0): 58, 51, 45, (1,12,0): 58, 51, 45, (1,13,0): 58, 51, 45, (1,14,0): 58, 51, 45, (1,15,0): 58, 51, 45, (1,16,0): 57, 49, 46, (1,17,0): 57, 49, 46, (1,18,0): 56, 48, 45, (1,19,0): 56, 48, 45, (1,20,0): 56, 48, 45, (1,21,0): 56, 48, 45, (1,22,0): 57, 49, 46, (1,23,0): 57, 49, 46, (1,24,0): 56, 48, 45, (1,25,0): 56, 48, 45, (1,26,0): 56, 48, 45, (1,27,0): 56, 48, 45, (1,28,0): 56, 48, 45, (1,29,0): 56, 48, 45, (1,30,0): 56, 48, 45, (1,31,0): 56, 48, 45, (1,32,0): 54, 46, 43, (1,33,0): 54, 46, 43, (1,34,0): 53, 45, 42, (1,35,0): 53, 45, 42, (1,36,0): 53, 45, 42, (1,37,0): 52, 44, 41, (1,38,0): 52, 44, 41, (1,39,0): 52, 44, 41, (1,40,0): 53, 45, 42, (1,41,0): 53, 45, 42, (1,42,0): 53, 45, 42, (1,43,0): 53, 45, 42, (1,44,0): 53, 45, 42, (1,45,0): 53, 45, 42, (1,46,0): 53, 45, 42, (1,47,0): 51, 46, 42, (1,48,0): 48, 43, 37, (1,49,0): 48, 45, 38, (1,50,0): 48, 45, 38, (1,51,0): 49, 46, 39, (1,52,0): 50, 47, 40, (1,53,0): 51, 48, 41, (1,54,0): 52, 49, 42, (1,55,0): 52, 49, 42, (1,56,0): 54, 51, 44, (1,57,0): 54, 51, 44, (1,58,0): 55, 52, 45, (1,59,0): 55, 52, 45, (1,60,0): 56, 53, 46, (1,61,0): 57, 54, 47, (1,62,0): 58, 55, 48, (1,63,0): 58, 55, 46, (1,64,0): 64, 57, 47, (1,65,0): 65, 59, 47, (1,66,0): 67, 61, 49, (1,67,0): 69, 63, 51, (1,68,0): 72, 64, 51, (1,69,0): 73, 65, 52, (1,70,0): 74, 66, 53, (1,71,0): 74, 66, 53, (1,72,0): 76, 67, 52, (1,73,0): 76, 67, 52, (1,74,0): 77, 65, 49, (1,75,0): 77, 65, 49, (1,76,0): 77, 65, 49, (1,77,0): 78, 66, 50, (1,78,0): 79, 67, 51, (1,79,0): 81, 68, 52, (1,80,0): 80, 62, 48, (1,81,0): 85, 63, 49, (1,82,0): 94, 65, 51, (1,83,0): 106, 67, 52, (1,84,0): 120, 68, 54, (1,85,0): 132, 69, 52, (1,86,0): 146, 69, 53, (1,87,0): 156, 67, 51, (1,88,0): 167, 67, 52, (1,89,0): 175, 65, 52, (1,90,0): 181, 65, 52, (1,91,0): 188, 66, 55, (1,92,0): 192, 68, 58, (1,93,0): 196, 69, 60, (1,94,0): 197, 70, 61, (1,95,0): 205, 67, 64, (1,96,0): 225, 69, 73, (1,97,0): 231, 66, 73, (1,98,0): 232, 67, 73, (1,99,0): 234, 68, 72, (1,100,0): 237, 68, 71, (1,101,0): 239, 66, 68, (1,102,0): 243, 64, 67, (1,103,0): 246, 63, 67, (1,104,0): 248, 59, 65, (1,105,0): 247, 58, 64, (1,106,0): 244, 58, 63, (1,107,0): 240, 60, 63, (1,108,0): 233, 63, 64, (1,109,0): 224, 65, 62, (1,110,0): 213, 64, 60, (1,111,0): 202, 64, 54, (1,112,0): 185, 62, 47, (1,113,0): 181, 64, 46, (1,114,0): 180, 63, 45, (1,115,0): 180, 63, 45, (1,116,0): 180, 63, 45, (1,117,0): 178, 63, 44, (1,118,0): 176, 63, 45, (1,119,0): 175, 64, 45, (1,120,0): 173, 64, 44, (1,121,0): 169, 64, 43, (1,122,0): 166, 65, 45, (1,123,0): 161, 65, 43, (1,124,0): 159, 64, 42, (1,125,0): 155, 65, 41, (1,126,0): 152, 64, 42, (1,127,0): 150, 65, 44, (1,128,0): 148, 62, 45, (1,129,0): 146, 63, 47, (1,130,0): 145, 62, 46, (1,131,0): 145, 62, 46, (1,132,0): 145, 62, 44, (1,133,0): 144, 61, 43, (1,134,0): 146, 60, 43, (1,135,0): 146, 60, 43, (1,136,0): 148, 63, 43, (1,137,0): 147, 62, 42, (1,138,0): 148, 61, 42, (1,139,0): 148, 61, 42, (1,140,0): 148, 61, 42, (1,141,0): 149, 62, 43, (1,142,0): 150, 63, 44, (1,143,0): 150, 64, 47, (1,144,0): 148, 64, 53, (1,145,0): 149, 62, 53, (1,146,0): 152, 62, 51, (1,147,0): 160, 62, 49, (1,148,0): 171, 65, 51, (1,149,0): 181, 68, 52, (1,150,0): 189, 67, 52, (1,151,0): 191, 68, 53, (1,152,0): 187, 65, 50, (1,153,0): 183, 67, 54, (1,154,0): 172, 70, 56, (1,155,0): 156, 73, 59, (1,156,0): 133, 71, 58, (1,157,0): 108, 64, 51, (1,158,0): 83, 57, 42, (1,159,0): 66, 52, 41, (1,160,0): 62, 54, 51, (1,161,0): 58, 54, 53, (1,162,0): 57, 53, 52, (1,163,0): 56, 52, 51, (1,164,0): 56, 50, 50, (1,165,0): 55, 49, 49, (1,166,0): 54, 49, 46, (1,167,0): 54, 49, 46, (1,168,0): 55, 50, 47, (1,169,0): 55, 50, 47, (1,170,0): 55, 50, 47, (1,171,0): 54, 49, 46, (1,172,0): 54, 49, 45, (1,173,0): 53, 48, 44, (1,174,0): 53, 48, 44, (1,175,0): 52, 49, 44, (1,176,0): 47, 47, 45, (1,177,0): 46, 48, 45, (1,178,0): 47, 47, 45, (1,179,0): 47, 47, 45, (1,180,0): 48, 47, 45, (1,181,0): 48, 47, 45, (1,182,0): 50, 46, 45, (1,183,0): 50, 46, 45, (1,184,0): 51, 45, 45, (1,185,0): 53, 44, 45, (1,186,0): 52, 42, 43, (1,187,0): 51, 41, 42, (1,188,0): 53, 41, 43, (1,189,0): 60, 45, 48, (1,190,0): 67, 52, 55, (1,191,0): 78, 56, 58, (1,192,0): 100, 62, 61, (1,193,0): 118, 69, 65, (1,194,0): 134, 74, 73, (1,195,0): 143, 78, 76, (1,196,0): 154, 84, 86, (1,197,0): 164, 97, 106, (1,198,0): 165, 108, 125, (1,199,0): 157, 114, 142, (1,200,0): 145, 123, 162, (1,201,0): 134, 128, 174, (1,202,0): 127, 133, 185, (1,203,0): 123, 132, 187, (1,204,0): 111, 117, 169, (1,205,0): 91, 91, 141, (1,206,0): 81, 72, 117, (1,207,0): 79, 67, 105, (1,208,0): 79, 70, 101, (1,209,0): 79, 71, 95, (1,210,0): 80, 72, 95, (1,211,0): 82, 78, 95, (1,212,0): 91, 89, 102, (1,213,0): 110, 111, 116, (1,214,0): 131, 135, 136, (1,215,0): 148, 153, 149, (1,216,0): 153, 158, 151, (1,217,0): 154, 160, 148, (1,218,0): 153, 157, 143, (1,219,0): 143, 145, 131, (1,220,0): 126, 127, 111, (1,221,0): 106, 107, 89, (1,222,0): 93, 91, 76, (1,223,0): 86, 83, 74, (1,224,0): 88, 83, 90, (1,225,0): 86, 82, 97, (1,226,0): 88, 81, 97, (2,0,0): 47, 46, 44, (2,1,0): 47, 46, 44, (2,2,0): 48, 47, 45, (2,3,0): 49, 48, 46, (2,4,0): 52, 48, 45, (2,5,0): 52, 48, 45, (2,6,0): 53, 49, 46, (2,7,0): 53, 49, 46, (2,8,0): 55, 50, 46, (2,9,0): 55, 50, 46, (2,10,0): 55, 50, 46, (2,11,0): 55, 50, 46, (2,12,0): 57, 50, 44, (2,13,0): 57, 50, 44, (2,14,0): 57, 50, 44, (2,15,0): 57, 50, 44, (2,16,0): 57, 49, 46, (2,17,0): 56, 48, 46, (2,18,0): 55, 47, 45, (2,19,0): 55, 47, 45, (2,20,0): 55, 47, 45, (2,21,0): 55, 47, 45, (2,22,0): 56, 48, 46, (2,23,0): 57, 49, 47, (2,24,0): 56, 48, 46, (2,25,0): 56, 48, 46, (2,26,0): 56, 48, 46, (2,27,0): 56, 48, 46, (2,28,0): 56, 48, 46, (2,29,0): 56, 48, 46, (2,30,0): 56, 48, 46, (2,31,0): 56, 48, 46, (2,32,0): 54, 46, 44, (2,33,0): 53, 45, 43, (2,34,0): 53, 45, 43, (2,35,0): 53, 45, 43, (2,36,0): 52, 44, 42, (2,37,0): 52, 44, 42, (2,38,0): 52, 44, 42, (2,39,0): 52, 44, 42, (2,40,0): 53, 45, 43, (2,41,0): 53, 45, 43, (2,42,0): 53, 45, 43, (2,43,0): 53, 45, 43, (2,44,0): 53, 45, 43, (2,45,0): 53, 45, 43, (2,46,0): 53, 45, 43, (2,47,0): 51, 46, 42, (2,48,0): 50, 45, 39, (2,49,0): 49, 46, 39, (2,50,0): 50, 47, 40, (2,51,0): 51, 48, 41, (2,52,0): 51, 48, 41, (2,53,0): 52, 49, 42, (2,54,0): 52, 49, 42, (2,55,0): 53, 50, 43, (2,56,0): 54, 51, 44, (2,57,0): 54, 51, 44, (2,58,0): 54, 51, 44, (2,59,0): 55, 52, 45, (2,60,0): 56, 53, 46, (2,61,0): 57, 54, 47, (2,62,0): 57, 54, 47, (2,63,0): 58, 55, 46, (2,64,0): 63, 56, 46, (2,65,0): 64, 58, 46, (2,66,0): 66, 60, 48, (2,67,0): 68, 62, 50, (2,68,0): 71, 63, 52, (2,69,0): 72, 64, 53, (2,70,0): 72, 64, 51, (2,71,0): 72, 64, 51, (2,72,0): 73, 64, 49, (2,73,0): 73, 64, 49, (2,74,0): 75, 63, 49, (2,75,0): 75, 63, 49, (2,76,0): 75, 63, 47, (2,77,0): 76, 64, 48, (2,78,0): 77, 65, 49, (2,79,0): 78, 66, 50, (2,80,0): 77, 65, 49, (2,81,0): 81, 65, 49, (2,82,0): 89, 66, 50, (2,83,0): 100, 67, 50, (2,84,0): 113, 67, 51, (2,85,0): 124, 67, 50, (2,86,0): 135, 66, 50, (2,87,0): 146, 65, 48, (2,88,0): 152, 60, 45, (2,89,0): 160, 58, 43, (2,90,0): 167, 59, 46, (2,91,0): 175, 61, 50, (2,92,0): 181, 64, 54, (2,93,0): 186, 68, 58, (2,94,0): 191, 70, 61, (2,95,0): 197, 68, 62, (2,96,0): 217, 67, 69, (2,97,0): 225, 64, 70, (2,98,0): 227, 66, 71, (2,99,0): 231, 66, 70, (2,100,0): 234, 68, 70, (2,101,0): 240, 67, 69, (2,102,0): 244, 65, 68, (2,103,0): 248, 63, 68, (2,104,0): 250, 59, 64, (2,105,0): 249, 58, 63, (2,106,0): 245, 59, 64, (2,107,0): 240, 61, 64, (2,108,0): 232, 64, 64, (2,109,0): 220, 65, 61, (2,110,0): 209, 64, 59, (2,111,0): 198, 64, 53, (2,112,0): 183, 61, 46, (2,113,0): 179, 64, 45, (2,114,0): 179, 64, 45, (2,115,0): 178, 63, 44, (2,116,0): 178, 63, 45, (2,117,0): 176, 63, 45, (2,118,0): 175, 62, 44, (2,119,0): 173, 64, 44, (2,120,0): 170, 63, 45, (2,121,0): 167, 64, 45, (2,122,0): 165, 64, 44, (2,123,0): 161, 65, 43, (2,124,0): 157, 65, 44, (2,125,0): 154, 63, 42, (2,126,0): 152, 64, 42, (2,127,0): 149, 64, 43, (2,128,0): 148, 62, 45, (2,129,0): 145, 62, 46, (2,130,0): 145, 62, 46, (2,131,0): 145, 62, 46, (2,132,0): 144, 61, 43, (2,133,0): 144, 61, 43, (2,134,0): 144, 61, 43, (2,135,0): 144, 61, 43, (2,136,0): 145, 62, 44, (2,137,0): 145, 62, 44, (2,138,0): 146, 60, 43, (2,139,0): 146, 60, 43, (2,140,0): 147, 61, 44, (2,141,0): 147, 61, 44, (2,142,0): 148, 63, 43, (2,143,0): 149, 63, 46, (2,144,0): 149, 65, 54, (2,145,0): 150, 63, 53, (2,146,0): 154, 62, 51, (2,147,0): 163, 62, 50, (2,148,0): 175, 65, 52, (2,149,0): 185, 67, 53, (2,150,0): 191, 68, 53, (2,151,0): 193, 67, 53, (2,152,0): 192, 68, 56, (2,153,0): 184, 70, 59, (2,154,0): 174, 73, 61, (2,155,0): 153, 74, 61, (2,156,0): 129, 71, 59, (2,157,0): 104, 64, 52, (2,158,0): 81, 58, 44, (2,159,0): 66, 53, 44, (2,160,0): 63, 55, 52, (2,161,0): 61, 55, 55, (2,162,0): 60, 54, 54, (2,163,0): 58, 52, 52, (2,164,0): 57, 52, 49, (2,165,0): 56, 51, 48, (2,166,0): 55, 50, 47, (2,167,0): 55, 50, 47, (2,168,0): 54, 50, 47, (2,169,0): 54, 50, 47, (2,170,0): 54, 50, 47, (2,171,0): 53, 49, 46, (2,172,0): 53, 50, 45, (2,173,0): 52, 49, 44, (2,174,0): 52, 49, 44, (2,175,0): 50, 49, 44, (2,176,0): 46, 48, 45, (2,177,0): 44, 49, 45, (2,178,0): 46, 48, 45, (2,179,0): 46, 48, 45, (2,180,0): 47, 47, 45, (2,181,0): 47, 47, 45, (2,182,0): 48, 47, 45, (2,183,0): 50, 46, 45, (2,184,0): 53, 47, 47, (2,185,0): 52, 46, 46, (2,186,0): 53, 44, 45, (2,187,0): 52, 42, 43, (2,188,0): 52, 42, 43, (2,189,0): 57, 45, 47, (2,190,0): 62, 50, 52, (2,191,0): 73, 53, 54, (2,192,0): 91, 57, 55, (2,193,0): 108, 63, 57, (2,194,0): 124, 69, 64, (2,195,0): 134, 73, 68, (2,196,0): 144, 79, 77, (2,197,0): 152, 91, 96, (2,198,0): 155, 102, 118, (2,199,0): 148, 109, 136, (2,200,0): 140, 119, 158, (2,201,0): 131, 125, 173, (2,202,0): 125, 130, 185, (2,203,0): 117, 126, 183, (2,204,0): 102, 109, 164, (2,205,0): 84, 86, 137, (2,206,0): 77, 69, 118, (2,207,0): 76, 65, 107, (2,208,0): 77, 65, 101, (2,209,0): 79, 70, 99, (2,210,0): 81, 72, 99, (2,211,0): 77, 72, 94, (2,212,0): 78, 75, 92, (2,213,0): 91, 91, 101, (2,214,0): 113, 116, 121, (2,215,0): 133, 137, 136, (2,216,0): 135, 140, 134, (2,217,0): 138, 143, 136, (2,218,0): 141, 144, 133, (2,219,0): 134, 138, 124, (2,220,0): 120, 122, 108, (2,221,0): 102, 105, 88, (2,222,0): 90, 91, 77, (2,223,0): 86, 83, 76, (2,224,0): 90, 85, 91, (2,225,0): 90, 84, 96, (2,226,0): 91, 83, 96, (3,0,0): 46, 45, 43, (3,1,0): 47, 46, 44, (3,2,0): 47, 46, 44, (3,3,0): 48, 47, 45, (3,4,0): 51, 47, 44, (3,5,0): 52, 48, 45, (3,6,0): 52, 48, 45, (3,7,0): 52, 48, 45, (3,8,0): 54, 49, 45, (3,9,0): 54, 49, 45, (3,10,0): 54, 49, 45, (3,11,0): 54, 49, 45, (3,12,0): 56, 49, 43, (3,13,0): 56, 49, 43, (3,14,0): 56, 49, 43, (3,15,0): 56, 49, 43, (3,16,0): 55, 47, 45, (3,17,0): 55, 47, 45, (3,18,0): 54, 46, 44, (3,19,0): 54, 46, 44, (3,20,0): 54, 46, 44, (3,21,0): 54, 46, 44, (3,22,0): 55, 47, 45, (3,23,0): 55, 47, 45, (3,24,0): 56, 48, 46, (3,25,0): 56, 48, 46, (3,26,0): 56, 48, 46, (3,27,0): 56, 48, 46, (3,28,0): 56, 48, 46, (3,29,0): 56, 48, 46, (3,30,0): 56, 48, 46, (3,31,0): 56, 48, 46, (3,32,0): 53, 45, 43, (3,33,0): 53, 45, 43, (3,34,0): 53, 45, 43, (3,35,0): 52, 44, 42, (3,36,0): 52, 44, 42, (3,37,0): 52, 44, 42, (3,38,0): 51, 43, 41, (3,39,0): 51, 43, 41, (3,40,0): 54, 46, 44, (3,41,0): 54, 46, 44, (3,42,0): 54, 46, 44, (3,43,0): 54, 46, 44, (3,44,0): 54, 46, 44, (3,45,0): 54, 46, 44, (3,46,0): 54, 46, 44, (3,47,0): 52, 47, 44, (3,48,0): 51, 48, 43, (3,49,0): 51, 48, 41, (3,50,0): 51, 48, 41, (3,51,0): 52, 49, 42, (3,52,0): 52, 49, 42, (3,53,0): 53, 50, 43, (3,54,0): 53, 50, 43, (3,55,0): 53, 50, 43, (3,56,0): 53, 50, 43, (3,57,0): 53, 50, 43, (3,58,0): 54, 51, 44, (3,59,0): 55, 52, 45, (3,60,0): 56, 53, 46, (3,61,0): 56, 53, 46, (3,62,0): 57, 54, 47, (3,63,0): 57, 54, 45, (3,64,0): 62, 55, 45, (3,65,0): 63, 57, 45, (3,66,0): 64, 58, 46, (3,67,0): 66, 60, 48, (3,68,0): 69, 61, 50, (3,69,0): 69, 61, 50, (3,70,0): 70, 62, 49, (3,71,0): 70, 62, 49, (3,72,0): 71, 61, 49, (3,73,0): 71, 62, 47, (3,74,0): 72, 60, 46, (3,75,0): 73, 61, 47, (3,76,0): 73, 61, 47, (3,77,0): 74, 62, 46, (3,78,0): 76, 64, 48, (3,79,0): 74, 65, 48, (3,80,0): 75, 68, 50, (3,81,0): 78, 69, 52, (3,82,0): 85, 68, 52, (3,83,0): 94, 68, 51, (3,84,0): 105, 68, 50, (3,85,0): 115, 66, 49, (3,86,0): 126, 65, 47, (3,87,0): 134, 63, 45, (3,88,0): 140, 57, 41, (3,89,0): 148, 57, 39, (3,90,0): 157, 57, 42, (3,91,0): 163, 60, 45, (3,92,0): 172, 64, 51, (3,93,0): 179, 69, 56, (3,94,0): 184, 72, 60, (3,95,0): 193, 70, 62, (3,96,0): 210, 68, 67, (3,97,0): 218, 65, 67, (3,98,0): 222, 66, 67, (3,99,0): 226, 68, 67, (3,100,0): 231, 67, 68, (3,101,0): 236, 66, 67, (3,102,0): 243, 64, 67, (3,103,0): 247, 63, 65, (3,104,0): 250, 59, 64, (3,105,0): 249, 58, 63, (3,106,0): 245, 59, 64, (3,107,0): 238, 62, 64, (3,108,0): 229, 65, 64, (3,109,0): 218, 66, 61, (3,110,0): 205, 64, 57, (3,111,0): 194, 64, 51, (3,112,0): 181, 61, 45, (3,113,0): 176, 64, 44, (3,114,0): 176, 64, 44, (3,115,0): 176, 64, 44, (3,116,0): 175, 62, 44, (3,117,0): 174, 63, 44, (3,118,0): 174, 63, 44, (3,119,0): 172, 63, 43, (3,120,0): 169, 64, 45, (3,121,0): 166, 63, 44, (3,122,0): 163, 64, 43, (3,123,0): 160, 64, 42, (3,124,0): 156, 64, 43, (3,125,0): 152, 64, 42, (3,126,0): 150, 64, 41, (3,127,0): 148, 63, 42, (3,128,0): 145, 62, 44, (3,129,0): 145, 62, 46, (3,130,0): 145, 62, 46, (3,131,0): 144, 61, 45, (3,132,0): 144, 61, 43, (3,133,0): 144, 61, 43, (3,134,0): 143, 60, 42, (3,135,0): 143, 60, 42, (3,136,0): 144, 61, 43, (3,137,0): 144, 61, 43, (3,138,0): 143, 60, 42, (3,139,0): 143, 60, 42, (3,140,0): 146, 60, 43, (3,141,0): 145, 62, 44, (3,142,0): 148, 62, 45, (3,143,0): 146, 63, 45, (3,144,0): 149, 65, 54, (3,145,0): 150, 63, 53, (3,146,0): 156, 62, 50, (3,147,0): 166, 64, 52, (3,148,0): 178, 66, 54, (3,149,0): 188, 67, 56, (3,150,0): 193, 67, 55, (3,151,0): 194, 66, 55, (3,152,0): 194, 70, 60, (3,153,0): 186, 74, 63, (3,154,0): 172, 76, 64, (3,155,0): 151, 75, 62, (3,156,0): 124, 70, 58, (3,157,0): 98, 64, 52, (3,158,0): 76, 58, 46, (3,159,0): 65, 55, 45, (3,160,0): 64, 56, 53, (3,161,0): 62, 57, 54, (3,162,0): 61, 55, 55, (3,163,0): 60, 55, 52, (3,164,0): 58, 53, 50, (3,165,0): 57, 52, 49, (3,166,0): 56, 51, 48, (3,167,0): 56, 51, 48, (3,168,0): 54, 50, 47, (3,169,0): 54, 50, 47, (3,170,0): 54, 50, 47, (3,171,0): 51, 50, 46, (3,172,0): 53, 50, 45, (3,173,0): 50, 49, 44, (3,174,0): 50, 49, 44, (3,175,0): 49, 50, 45, (3,176,0): 45, 50, 46, (3,177,0): 45, 50, 46, (3,178,0): 47, 49, 46, (3,179,0): 47, 49, 46, (3,180,0): 48, 48, 46, (3,181,0): 48, 48, 46, (3,182,0): 49, 48, 46, (3,183,0): 49, 48, 46, (3,184,0): 53, 49, 48, (3,185,0): 54, 48, 48, (3,186,0): 53, 47, 47, (3,187,0): 53, 44, 45, (3,188,0): 52, 43, 44, (3,189,0): 54, 44, 45, (3,190,0): 58, 48, 49, (3,191,0): 68, 50, 50, (3,192,0): 84, 55, 49, (3,193,0): 99, 59, 51, (3,194,0): 113, 65, 55, (3,195,0): 123, 69, 59, (3,196,0): 130, 72, 68, (3,197,0): 137, 82, 85, (3,198,0): 141, 95, 108, (3,199,0): 139, 105, 130, (3,200,0): 131, 115, 152, (3,201,0): 125, 121, 171, (3,202,0): 120, 125, 181, (3,203,0): 111, 119, 181, (3,204,0): 96, 102, 162, (3,205,0): 81, 82, 139, (3,206,0): 76, 69, 121, (3,207,0): 76, 64, 112, (3,208,0): 76, 64, 104, (3,209,0): 80, 69, 103, (3,210,0): 81, 70, 102, (3,211,0): 76, 67, 94, (3,212,0): 71, 66, 86, (3,213,0): 77, 76, 90, (3,214,0): 94, 94, 102, (3,215,0): 106, 110, 113, (3,216,0): 117, 121, 120, (3,217,0): 120, 125, 119, (3,218,0): 122, 128, 118, (3,219,0): 119, 122, 111, (3,220,0): 107, 111, 97, (3,221,0): 96, 98, 84, (3,222,0): 87, 89, 76, (3,223,0): 84, 84, 76, (3,224,0): 93, 87, 89, (3,225,0): 93, 86, 93, (3,226,0): 93, 86, 94, (4,0,0): 45, 45, 45, (4,1,0): 45, 45, 45, (4,2,0): 46, 45, 43, (4,3,0): 47, 46, 44, (4,4,0): 48, 47, 45, (4,5,0): 49, 48, 46, (4,6,0): 51, 47, 44, (4,7,0): 52, 48, 45, (4,8,0): 51, 47, 44, (4,9,0): 51, 47, 44, (4,10,0): 52, 47, 43, (4,11,0): 52, 47, 43, (4,12,0): 52, 47, 43, (4,13,0): 52, 47, 43, (4,14,0): 54, 47, 41, (4,15,0): 54, 47, 41, (4,16,0): 52, 47, 44, (4,17,0): 52, 47, 44, (4,18,0): 51, 46, 43, (4,19,0): 51, 46, 43, (4,20,0): 51, 46, 43, (4,21,0): 51, 46, 43, (4,22,0): 52, 47, 44, (4,23,0): 52, 47, 44, (4,24,0): 53, 48, 45, (4,25,0): 53, 48, 45, (4,26,0): 53, 48, 45, (4,27,0): 53, 48, 45, (4,28,0): 53, 48, 45, (4,29,0): 53, 48, 45, (4,30,0): 53, 48, 45, (4,31,0): 53, 48, 45, (4,32,0): 51, 46, 43, (4,33,0): 51, 46, 43, (4,34,0): 50, 45, 42, (4,35,0): 50, 45, 42, (4,36,0): 50, 45, 42, (4,37,0): 49, 44, 41, (4,38,0): 49, 44, 41, (4,39,0): 49, 44, 41, (4,40,0): 52, 47, 44, (4,41,0): 52, 47, 44, (4,42,0): 52, 47, 44, (4,43,0): 52, 47, 44, (4,44,0): 52, 47, 44, (4,45,0): 52, 47, 44, (4,46,0): 52, 47, 44, (4,47,0): 52, 47, 44, (4,48,0): 52, 49, 44, (4,49,0): 52, 49, 44, (4,50,0): 52, 49, 44, (4,51,0): 52, 49, 44, (4,52,0): 52, 49, 44, (4,53,0): 53, 50, 45, (4,54,0): 53, 50, 45, (4,55,0): 53, 50, 45, (4,56,0): 53, 50, 45, (4,57,0): 53, 50, 45, (4,58,0): 54, 51, 46, (4,59,0): 54, 51, 46, (4,60,0): 55, 52, 47, (4,61,0): 56, 53, 48, (4,62,0): 57, 54, 49, (4,63,0): 57, 54, 47, (4,64,0): 60, 53, 45, (4,65,0): 61, 54, 44, (4,66,0): 63, 56, 46, (4,67,0): 64, 57, 47, (4,68,0): 66, 58, 47, (4,69,0): 67, 59, 48, (4,70,0): 67, 59, 48, (4,71,0): 67, 59, 46, (4,72,0): 68, 58, 46, (4,73,0): 68, 58, 46, (4,74,0): 70, 58, 46, (4,75,0): 71, 59, 45, (4,76,0): 72, 60, 46, (4,77,0): 73, 61, 47, (4,78,0): 74, 62, 48, (4,79,0): 73, 64, 49, (4,80,0): 74, 71, 54, (4,81,0): 77, 72, 53, (4,82,0): 82, 71, 53, (4,83,0): 89, 70, 53, (4,84,0): 98, 69, 51, (4,85,0): 106, 68, 49, (4,86,0): 117, 66, 47, (4,87,0): 125, 62, 44, (4,88,0): 130, 59, 41, (4,89,0): 139, 58, 41, (4,90,0): 147, 58, 42, (4,91,0): 154, 61, 44, (4,92,0): 163, 66, 50, (4,93,0): 172, 70, 56, (4,94,0): 178, 74, 61, (4,95,0): 187, 73, 63, (4,96,0): 204, 71, 66, (4,97,0): 212, 68, 67, (4,98,0): 216, 68, 66, (4,99,0): 221, 69, 66, (4,100,0): 226, 66, 66, (4,101,0): 233, 65, 65, (4,102,0): 240, 61, 64, (4,103,0): 244, 60, 62, (4,104,0): 249, 58, 63, (4,105,0): 248, 58, 60, (4,106,0): 244, 60, 62, (4,107,0): 237, 63, 62, (4,108,0): 225, 66, 62, (4,109,0): 211, 67, 58, (4,110,0): 197, 65, 53, (4,111,0): 185, 63, 48, (4,112,0): 178, 63, 45, (4,113,0): 174, 63, 44, (4,114,0): 174, 63, 44, (4,115,0): 174, 63, 44, (4,116,0): 173, 62, 45, (4,117,0): 172, 62, 45, (4,118,0): 172, 62, 45, (4,119,0): 170, 63, 45, (4,120,0): 168, 62, 46, (4,121,0): 164, 63, 45, (4,122,0): 160, 63, 44, (4,123,0): 158, 63, 43, (4,124,0): 154, 63, 44, (4,125,0): 151, 63, 43, (4,126,0): 149, 62, 42, (4,127,0): 147, 62, 42, (4,128,0): 145, 62, 44, (4,129,0): 144, 63, 46, (4,130,0): 143, 62, 45, (4,131,0): 143, 62, 45, (4,132,0): 143, 62, 45, (4,133,0): 142, 61, 44, (4,134,0): 142, 61, 44, (4,135,0): 142, 61, 44, (4,136,0): 142, 61, 44, (4,137,0): 142, 61, 44, (4,138,0): 142, 61, 44, (4,139,0): 142, 61, 44, (4,140,0): 143, 60, 44, (4,141,0): 143, 62, 45, (4,142,0): 145, 62, 46, (4,143,0): 144, 63, 46, (4,144,0): 148, 66, 52, (4,145,0): 151, 65, 52, (4,146,0): 157, 64, 49, (4,147,0): 168, 64, 51, (4,148,0): 182, 65, 55, (4,149,0): 191, 67, 57, (4,150,0): 197, 66, 56, (4,151,0): 196, 65, 55, (4,152,0): 190, 67, 59, (4,153,0): 183, 72, 63, (4,154,0): 166, 76, 67, (4,155,0): 144, 74, 64, (4,156,0): 116, 69, 59, (4,157,0): 90, 62, 50, (4,158,0): 69, 57, 45, (4,159,0): 60, 53, 43, (4,160,0): 64, 57, 51, (4,161,0): 64, 56, 53, (4,162,0): 63, 55, 53, (4,163,0): 62, 54, 51, (4,164,0): 61, 53, 50, (4,165,0): 60, 52, 49, (4,166,0): 57, 52, 48, (4,167,0): 56, 51, 47, (4,168,0): 54, 50, 47, (4,169,0): 52, 51, 47, (4,170,0): 52, 51, 47, (4,171,0): 50, 51, 46, (4,172,0): 51, 50, 46, (4,173,0): 49, 50, 45, (4,174,0): 49, 50, 45, (4,175,0): 48, 50, 45, (4,176,0): 45, 50, 46, (4,177,0): 44, 50, 46, (4,178,0): 45, 50, 46, (4,179,0): 45, 50, 46, (4,180,0): 47, 49, 46, (4,181,0): 47, 49, 46, (4,182,0): 48, 48, 46, (4,183,0): 49, 48, 46, (4,184,0): 51, 50, 48, (4,185,0): 53, 49, 48, (4,186,0): 53, 49, 48, (4,187,0): 52, 46, 46, (4,188,0): 50, 44, 44, (4,189,0): 52, 43, 44, (4,190,0): 55, 46, 47, (4,191,0): 61, 47, 46, (4,192,0): 78, 53, 46, (4,193,0): 89, 57, 46, (4,194,0): 101, 61, 49, (4,195,0): 110, 64, 51, (4,196,0): 115, 66, 59, (4,197,0): 121, 75, 75, (4,198,0): 128, 90, 101, (4,199,0): 131, 103, 128, (4,200,0): 127, 112, 151, (4,201,0): 122, 120, 170, (4,202,0): 117, 123, 183, (4,203,0): 107, 115, 180, (4,204,0): 95, 100, 166, (4,205,0): 84, 84, 148, (4,206,0): 79, 71, 131, (4,207,0): 76, 66, 119, (4,208,0): 78, 65, 109, (4,209,0): 78, 66, 104, (4,210,0): 77, 65, 101, (4,211,0): 74, 65, 96, (4,212,0): 71, 66, 89, (4,213,0): 71, 70, 88, (4,214,0): 75, 75, 87, (4,215,0): 77, 80, 85, (4,216,0): 93, 99, 99, (4,217,0): 96, 102, 98, (4,218,0): 98, 105, 97, (4,219,0): 96, 102, 92, (4,220,0): 90, 96, 84, (4,221,0): 87, 91, 77, (4,222,0): 85, 88, 77, (4,223,0): 88, 88, 80, (4,224,0): 94, 89, 86, (4,225,0): 96, 87, 88, (4,226,0): 96, 87, 90, (5,0,0): 44, 44, 44, (5,1,0): 44, 44, 44, (5,2,0): 46, 45, 43, (5,3,0): 46, 45, 43, (5,4,0): 47, 46, 44, (5,5,0): 48, 47, 45, (5,6,0): 51, 47, 44, (5,7,0): 51, 47, 44, (5,8,0): 50, 46, 43, (5,9,0): 50, 46, 43, (5,10,0): 51, 46, 42, (5,11,0): 51, 46, 42, (5,12,0): 51, 46, 42, (5,13,0): 51, 46, 42, (5,14,0): 53, 46, 40, (5,15,0): 53, 45, 42, (5,16,0): 51, 46, 43, (5,17,0): 51, 46, 43, (5,18,0): 50, 45, 42, (5,19,0): 49, 44, 41, (5,20,0): 49, 44, 41, (5,21,0): 50, 45, 42, (5,22,0): 51, 46, 43, (5,23,0): 51, 46, 43, (5,24,0): 51, 46, 43, (5,25,0): 51, 46, 43, (5,26,0): 51, 46, 43, (5,27,0): 51, 46, 43, (5,28,0): 51, 46, 43, (5,29,0): 51, 46, 43, (5,30,0): 51, 46, 43, (5,31,0): 51, 46, 43, (5,32,0): 50, 45, 42, (5,33,0): 50, 45, 42, (5,34,0): 50, 45, 42, (5,35,0): 50, 45, 42, (5,36,0): 49, 44, 41, (5,37,0): 49, 44, 41, (5,38,0): 49, 44, 41, (5,39,0): 48, 43, 40, (5,40,0): 51, 46, 43, (5,41,0): 51, 46, 43, (5,42,0): 51, 46, 43, (5,43,0): 51, 46, 43, (5,44,0): 51, 46, 43, (5,45,0): 51, 46, 43, (5,46,0): 51, 46, 43, (5,47,0): 51, 46, 43, (5,48,0): 52, 49, 44, (5,49,0): 52, 49, 44, (5,50,0): 52, 49, 44, (5,51,0): 52, 49, 44, (5,52,0): 52, 49, 44, (5,53,0): 52, 49, 44, (5,54,0): 52, 49, 44, (5,55,0): 52, 49, 44, (5,56,0): 52, 49, 44, (5,57,0): 53, 50, 45, (5,58,0): 53, 50, 45, (5,59,0): 54, 51, 46, (5,60,0): 55, 52, 47, (5,61,0): 56, 53, 48, (5,62,0): 56, 53, 48, (5,63,0): 56, 53, 46, (5,64,0): 59, 52, 44, (5,65,0): 60, 53, 43, (5,66,0): 61, 54, 44, (5,67,0): 62, 55, 45, (5,68,0): 64, 55, 46, (5,69,0): 65, 57, 46, (5,70,0): 65, 57, 46, (5,71,0): 65, 57, 46, (5,72,0): 67, 57, 47, (5,73,0): 67, 57, 45, (5,74,0): 69, 57, 45, (5,75,0): 70, 58, 46, (5,76,0): 71, 59, 47, (5,77,0): 72, 60, 46, (5,78,0): 74, 62, 48, (5,79,0): 72, 65, 49, (5,80,0): 74, 71, 54, (5,81,0): 73, 72, 54, (5,82,0): 78, 71, 53, (5,83,0): 86, 70, 54, (5,84,0): 92, 69, 51, (5,85,0): 100, 67, 50, (5,86,0): 110, 64, 48, (5,87,0): 118, 62, 45, (5,88,0): 123, 60, 43, (5,89,0): 130, 59, 41, (5,90,0): 140, 59, 42, (5,91,0): 148, 61, 44, (5,92,0): 156, 64, 49, (5,93,0): 163, 70, 53, (5,94,0): 170, 74, 58, (5,95,0): 180, 74, 61, (5,96,0): 196, 72, 64, (5,97,0): 204, 69, 65, (5,98,0): 209, 70, 65, (5,99,0): 214, 69, 64, (5,100,0): 222, 67, 65, (5,101,0): 228, 64, 62, (5,102,0): 236, 62, 63, (5,103,0): 241, 58, 60, (5,104,0): 247, 59, 60, (5,105,0): 244, 58, 59, (5,106,0): 240, 60, 61, (5,107,0): 233, 64, 61, (5,108,0): 220, 67, 61, (5,109,0): 205, 67, 56, (5,110,0): 190, 64, 50, (5,111,0): 177, 62, 44, (5,112,0): 174, 63, 44, (5,113,0): 171, 64, 44, (5,114,0): 170, 63, 43, (5,115,0): 170, 63, 43, (5,116,0): 170, 63, 45, (5,117,0): 169, 62, 44, (5,118,0): 169, 62, 44, (5,119,0): 168, 63, 44, (5,120,0): 165, 62, 45, (5,121,0): 162, 63, 44, (5,122,0): 160, 63, 44, (5,123,0): 155, 62, 44, (5,124,0): 151, 63, 43, (5,125,0): 149, 62, 42, (5,126,0): 147, 62, 41, (5,127,0): 145, 63, 42, (5,128,0): 143, 62, 43, (5,129,0): 143, 62, 45, (5,130,0): 143, 62, 45, (5,131,0): 143, 62, 45, (5,132,0): 142, 61, 44, (5,133,0): 142, 61, 44, (5,134,0): 142, 61, 44, (5,135,0): 141, 60, 43, (5,136,0): 142, 61, 44, (5,137,0): 139, 60, 43, (5,138,0): 141, 60, 43, (5,139,0): 139, 60, 43, (5,140,0): 139, 60, 45, (5,141,0): 140, 61, 44, (5,142,0): 141, 62, 47, (5,143,0): 142, 63, 46, (5,144,0): 148, 66, 52, (5,145,0): 151, 65, 50, (5,146,0): 160, 64, 50, (5,147,0): 172, 66, 53, (5,148,0): 185, 67, 57, (5,149,0): 194, 67, 58, (5,150,0): 197, 66, 58, (5,151,0): 194, 65, 59, (5,152,0): 186, 65, 57, (5,153,0): 177, 73, 64, (5,154,0): 163, 78, 71, (5,155,0): 141, 78, 69, (5,156,0): 111, 71, 61, (5,157,0): 83, 63, 52, (5,158,0): 65, 59, 47, (5,159,0): 57, 54, 45, (5,160,0): 64, 57, 51, (5,161,0): 65, 55, 53, (5,162,0): 63, 55, 52, (5,163,0): 62, 54, 51, (5,164,0): 60, 52, 49, (5,165,0): 57, 52, 48, (5,166,0): 56, 51, 47, (5,167,0): 55, 52, 47, (5,168,0): 52, 51, 47, (5,169,0): 52, 51, 47, (5,170,0): 51, 52, 47, (5,171,0): 50, 51, 46, (5,172,0): 50, 51, 46, (5,173,0): 48, 50, 45, (5,174,0): 48, 50, 45, (5,175,0): 46, 51, 45, (5,176,0): 45, 51, 47, (5,177,0): 45, 51, 47, (5,178,0): 46, 51, 47, (5,179,0): 46, 51, 47, (5,180,0): 48, 50, 47, (5,181,0): 48, 50, 47, (5,182,0): 49, 49, 47, (5,183,0): 49, 49, 47, (5,184,0): 50, 49, 47, (5,185,0): 51, 50, 48, (5,186,0): 51, 50, 48, (5,187,0): 52, 48, 47, (5,188,0): 50, 46, 45, (5,189,0): 49, 45, 44, (5,190,0): 52, 46, 46, (5,191,0): 56, 46, 44, (5,192,0): 71, 52, 45, (5,193,0): 79, 52, 41, (5,194,0): 88, 56, 43, (5,195,0): 96, 60, 48, (5,196,0): 101, 63, 54, (5,197,0): 109, 71, 70, (5,198,0): 121, 89, 100, (5,199,0): 130, 107, 133, (5,200,0): 128, 117, 159, (5,201,0): 124, 124, 178, (5,202,0): 119, 124, 188, (5,203,0): 110, 117, 187, (5,204,0): 100, 104, 175, (5,205,0): 91, 91, 161, (5,206,0): 82, 77, 143, (5,207,0): 76, 66, 126, (5,208,0): 79, 65, 114, (5,209,0): 76, 64, 104, (5,210,0): 73, 61, 99, (5,211,0): 72, 62, 96, (5,212,0): 72, 66, 94, (5,213,0): 69, 67, 88, (5,214,0): 64, 66, 79, (5,215,0): 59, 64, 70, (5,216,0): 66, 71, 74, (5,217,0): 68, 77, 74, (5,218,0): 74, 81, 74, (5,219,0): 74, 81, 73, (5,220,0): 73, 81, 70, (5,221,0): 75, 81, 69, (5,222,0): 79, 85, 73, (5,223,0): 86, 87, 79, (5,224,0): 94, 89, 83, (5,225,0): 96, 89, 83, (5,226,0): 96, 88, 85, (6,0,0): 43, 43, 43, (6,1,0): 43, 43, 43, (6,2,0): 44, 44, 44, (6,3,0): 45, 45, 45, (6,4,0): 47, 46, 44, (6,5,0): 47, 46, 44, (6,6,0): 48, 47, 45, (6,7,0): 48, 47, 45, (6,8,0): 49, 45, 42, (6,9,0): 49, 45, 42, (6,10,0): 49, 45, 42, (6,11,0): 49, 45, 42, (6,12,0): 50, 45, 41, (6,13,0): 50, 45, 41, (6,14,0): 50, 45, 41, (6,15,0): 50, 45, 41, (6,16,0): 50, 45, 42, (6,17,0): 50, 44, 44, (6,18,0): 49, 43, 43, (6,19,0): 49, 43, 43, (6,20,0): 49, 43, 43, (6,21,0): 49, 43, 43, (6,22,0): 50, 44, 44, (6,23,0): 50, 44, 44, (6,24,0): 49, 43, 43, (6,25,0): 49, 43, 43, (6,26,0): 49, 43, 43, (6,27,0): 49, 43, 43, (6,28,0): 49, 43, 43, (6,29,0): 49, 43, 43, (6,30,0): 49, 43, 43, (6,31,0): 49, 43, 43, (6,32,0): 50, 44, 44, (6,33,0): 50, 44, 44, (6,34,0): 50, 44, 44, (6,35,0): 49, 43, 43, (6,36,0): 49, 43, 43, (6,37,0): 49, 43, 43, (6,38,0): 48, 42, 42, (6,39,0): 48, 42, 42, (6,40,0): 51, 45, 45, (6,41,0): 51, 45, 45, (6,42,0): 51, 45, 45, (6,43,0): 51, 45, 45, (6,44,0): 51, 45, 45, (6,45,0): 51, 45, 45, (6,46,0): 51, 45, 45, (6,47,0): 51, 46, 43, (6,48,0): 52, 49, 44, (6,49,0): 52, 49, 44, (6,50,0): 52, 49, 44, (6,51,0): 51, 48, 43, (6,52,0): 51, 48, 43, (6,53,0): 51, 48, 43, (6,54,0): 51, 48, 43, (6,55,0): 51, 48, 43, (6,56,0): 52, 49, 44, (6,57,0): 52, 49, 44, (6,58,0): 53, 50, 45, (6,59,0): 54, 51, 46, (6,60,0): 55, 52, 47, (6,61,0): 55, 52, 47, (6,62,0): 56, 53, 48, (6,63,0): 56, 53, 46, (6,64,0): 58, 51, 43, (6,65,0): 59, 52, 44, (6,66,0): 60, 53, 45, (6,67,0): 61, 54, 46, (6,68,0): 63, 54, 47, (6,69,0): 63, 54, 45, (6,70,0): 63, 54, 45, (6,71,0): 63, 55, 44, (6,72,0): 66, 56, 46, (6,73,0): 66, 56, 46, (6,74,0): 69, 56, 47, (6,75,0): 69, 57, 45, (6,76,0): 71, 59, 47, (6,77,0): 72, 60, 48, (6,78,0): 74, 62, 50, (6,79,0): 72, 64, 51, (6,80,0): 72, 69, 54, (6,81,0): 71, 70, 52, (6,82,0): 75, 69, 53, (6,83,0): 81, 68, 52, (6,84,0): 88, 67, 50, (6,85,0): 95, 66, 50, (6,86,0): 102, 63, 46, (6,87,0): 110, 61, 44, (6,88,0): 118, 61, 44, (6,89,0): 124, 58, 42, (6,90,0): 133, 57, 41, (6,91,0): 140, 59, 42, (6,92,0): 147, 61, 46, (6,93,0): 155, 66, 50, (6,94,0): 162, 70, 55, (6,95,0): 172, 70, 56, (6,96,0): 187, 70, 60, (6,97,0): 194, 70, 62, (6,98,0): 201, 70, 62, (6,99,0): 208, 69, 62, (6,100,0): 217, 68, 64, (6,101,0): 226, 67, 63, (6,102,0): 234, 64, 64, (6,103,0): 240, 62, 62, (6,104,0): 242, 58, 58, (6,105,0): 241, 59, 58, (6,106,0): 236, 60, 60, (6,107,0): 228, 65, 60, (6,108,0): 214, 67, 59, (6,109,0): 198, 68, 54, (6,110,0): 181, 64, 47, (6,111,0): 170, 61, 41, (6,112,0): 170, 63, 45, (6,113,0): 169, 64, 45, (6,114,0): 169, 64, 45, (6,115,0): 168, 63, 44, (6,116,0): 168, 62, 46, (6,117,0): 168, 62, 46, (6,118,0): 167, 61, 45, (6,119,0): 165, 62, 45, (6,120,0): 163, 61, 46, (6,121,0): 160, 63, 46, (6,122,0): 158, 63, 45, (6,123,0): 154, 63, 45, (6,124,0): 150, 63, 44, (6,125,0): 147, 62, 42, (6,126,0): 145, 63, 42, (6,127,0): 143, 62, 41, (6,128,0): 143, 62, 43, (6,129,0): 141, 62, 45, (6,130,0): 141, 62, 45, (6,131,0): 140, 61, 44, (6,132,0): 140, 61, 46, (6,133,0): 140, 61, 46, (6,134,0): 139, 60, 45, (6,135,0): 139, 60, 45, (6,136,0): 139, 60, 45, (6,137,0): 138, 61, 45, (6,138,0): 138, 59, 44, (6,139,0): 137, 60, 44, (6,140,0): 138, 60, 47, (6,141,0): 139, 62, 46, (6,142,0): 139, 61, 48, (6,143,0): 140, 63, 47, (6,144,0): 146, 67, 50, (6,145,0): 152, 66, 49, (6,146,0): 161, 65, 49, (6,147,0): 174, 66, 54, (6,148,0): 188, 67, 58, (6,149,0): 194, 67, 60, (6,150,0): 196, 67, 61, (6,151,0): 192, 67, 61, (6,152,0): 185, 70, 65, (6,153,0): 178, 81, 74, (6,154,0): 165, 88, 82, (6,155,0): 143, 88, 81, (6,156,0): 115, 82, 73, (6,157,0): 87, 73, 62, (6,158,0): 67, 67, 55, (6,159,0): 60, 63, 54, (6,160,0): 62, 57, 51, (6,161,0): 64, 55, 50, (6,162,0): 62, 55, 49, (6,163,0): 61, 54, 48, (6,164,0): 58, 53, 47, (6,165,0): 57, 52, 46, (6,166,0): 56, 51, 47, (6,167,0): 54, 51, 46, (6,168,0): 52, 51, 46, (6,169,0): 52, 51, 46, (6,170,0): 51, 52, 47, (6,171,0): 49, 51, 46, (6,172,0): 49, 51, 46, (6,173,0): 46, 51, 45, (6,174,0): 46, 51, 45, (6,175,0): 46, 51, 45, (6,176,0): 45, 51, 47, (6,177,0): 45, 51, 47, (6,178,0): 45, 51, 47, (6,179,0): 45, 51, 47, (6,180,0): 46, 51, 47, (6,181,0): 46, 51, 47, (6,182,0): 48, 50, 47, (6,183,0): 48, 50, 47, (6,184,0): 48, 48, 46, (6,185,0): 49, 49, 47, (6,186,0): 50, 50, 48, (6,187,0): 50, 49, 47, (6,188,0): 48, 47, 45, (6,189,0): 47, 46, 44, (6,190,0): 50, 46, 45, (6,191,0): 52, 47, 44, (6,192,0): 63, 48, 43, (6,193,0): 68, 48, 41, (6,194,0): 75, 51, 41, (6,195,0): 84, 56, 45, (6,196,0): 90, 60, 52, (6,197,0): 100, 70, 70, (6,198,0): 117, 93, 106, (6,199,0): 131, 115, 141, (6,200,0): 137, 128, 171, (6,201,0): 133, 132, 190, (6,202,0): 126, 131, 199, (6,203,0): 116, 122, 198, (6,204,0): 109, 112, 189, (6,205,0): 99, 101, 175, (6,206,0): 86, 83, 154, (6,207,0): 76, 67, 130, (6,208,0): 75, 63, 113, (6,209,0): 73, 60, 103, (6,210,0): 71, 59, 99, (6,211,0): 69, 62, 95, (6,212,0): 70, 66, 93, (6,213,0): 68, 66, 87, (6,214,0): 63, 65, 78, (6,215,0): 59, 63, 72, (6,216,0): 58, 66, 69, (6,217,0): 62, 72, 71, (6,218,0): 68, 77, 72, (6,219,0): 71, 81, 73, (6,220,0): 71, 81, 72, (6,221,0): 74, 82, 71, (6,222,0): 78, 86, 75, (6,223,0): 85, 88, 77, (6,224,0): 94, 90, 79, (6,225,0): 97, 89, 78, (6,226,0): 97, 88, 79, (7,0,0): 43, 43, 43, (7,1,0): 43, 43, 43, (7,2,0): 44, 44, 44, (7,3,0): 44, 44, 44, (7,4,0): 46, 44, 45, (7,5,0): 47, 46, 44, (7,6,0): 48, 47, 45, (7,7,0): 48, 47, 45, (7,8,0): 49, 45, 42, (7,9,0): 49, 45, 42, (7,10,0): 49, 45, 42, (7,11,0): 49, 45, 42, (7,12,0): 50, 45, 41, (7,13,0): 50, 45, 41, (7,14,0): 50, 45, 41, (7,15,0): 50, 45, 42, (7,16,0): 50, 44, 44, (7,17,0): 49, 43, 43, (7,18,0): 49, 43, 43, (7,19,0): 48, 42, 42, (7,20,0): 48, 42, 42, (7,21,0): 49, 43, 43, (7,22,0): 49, 43, 43, (7,23,0): 50, 44, 44, (7,24,0): 48, 42, 42, (7,25,0): 48, 42, 42, (7,26,0): 48, 42, 42, (7,27,0): 48, 42, 42, (7,28,0): 48, 42, 42, (7,29,0): 48, 42, 42, (7,30,0): 48, 42, 42, (7,31,0): 48, 42, 42, (7,32,0): 50, 44, 44, (7,33,0): 50, 44, 44, (7,34,0): 50, 44, 44, (7,35,0): 49, 43, 43, (7,36,0): 49, 43, 43, (7,37,0): 48, 42, 42, (7,38,0): 48, 42, 42, (7,39,0): 48, 42, 42, (7,40,0): 50, 44, 44, (7,41,0): 50, 44, 44, (7,42,0): 50, 44, 44, (7,43,0): 50, 44, 44, (7,44,0): 50, 44, 44, (7,45,0): 50, 44, 44, (7,46,0): 50, 44, 44, (7,47,0): 50, 44, 44, (7,48,0): 51, 47, 44, (7,49,0): 51, 48, 43, (7,50,0): 51, 48, 43, (7,51,0): 51, 48, 43, (7,52,0): 51, 48, 43, (7,53,0): 51, 48, 43, (7,54,0): 51, 48, 43, (7,55,0): 51, 48, 43, (7,56,0): 52, 49, 44, (7,57,0): 52, 49, 44, (7,58,0): 53, 50, 45, (7,59,0): 54, 51, 46, (7,60,0): 54, 51, 46, (7,61,0): 55, 52, 47, (7,62,0): 56, 53, 48, (7,63,0): 56, 53, 48, (7,64,0): 57, 50, 44, (7,65,0): 58, 51, 43, (7,66,0): 59, 52, 44, (7,67,0): 60, 53, 45, (7,68,0): 62, 53, 46, (7,69,0): 62, 53, 46, (7,70,0): 62, 53, 46, (7,71,0): 62, 53, 44, (7,72,0): 66, 56, 47, (7,73,0): 66, 56, 46, (7,74,0): 69, 56, 47, (7,75,0): 69, 56, 47, (7,76,0): 71, 58, 49, (7,77,0): 73, 61, 49, (7,78,0): 74, 62, 50, (7,79,0): 73, 63, 51, (7,80,0): 70, 67, 52, (7,81,0): 70, 67, 52, (7,82,0): 74, 66, 53, (7,83,0): 79, 65, 52, (7,84,0): 84, 65, 50, (7,85,0): 92, 64, 50, (7,86,0): 98, 62, 48, (7,87,0): 106, 60, 45, (7,88,0): 113, 60, 46, (7,89,0): 119, 57, 42, (7,90,0): 125, 56, 41, (7,91,0): 133, 56, 40, (7,92,0): 140, 58, 44, (7,93,0): 149, 61, 47, (7,94,0): 155, 66, 52, (7,95,0): 164, 66, 53, (7,96,0): 178, 70, 58, (7,97,0): 186, 69, 59, (7,98,0): 193, 70, 62, (7,99,0): 202, 71, 63, (7,100,0): 212, 71, 64, (7,101,0): 222, 70, 65, (7,102,0): 231, 67, 65, (7,103,0): 238, 66, 64, (7,104,0): 237, 59, 59, (7,105,0): 235, 59, 59, (7,106,0): 231, 62, 59, (7,107,0): 223, 66, 59, (7,108,0): 209, 68, 58, (7,109,0): 191, 68, 52, (7,110,0): 175, 64, 45, (7,111,0): 164, 62, 40, (7,112,0): 166, 65, 45, (7,113,0): 166, 65, 45, (7,114,0): 165, 64, 44, (7,115,0): 165, 64, 46, (7,116,0): 165, 64, 46, (7,117,0): 164, 63, 45, (7,118,0): 164, 63, 45, (7,119,0): 164, 62, 47, (7,120,0): 162, 62, 46, (7,121,0): 159, 64, 46, (7,122,0): 156, 63, 46, (7,123,0): 152, 63, 45, (7,124,0): 149, 62, 43, (7,125,0): 145, 63, 42, (7,126,0): 143, 62, 41, (7,127,0): 143, 62, 43, (7,128,0): 141, 62, 45, (7,129,0): 141, 62, 45, (7,130,0): 141, 62, 45, (7,131,0): 140, 61, 44, (7,132,0): 140, 61, 46, (7,133,0): 139, 60, 45, (7,134,0): 139, 60, 45, (7,135,0): 138, 61, 45, (7,136,0): 138, 61, 45, (7,137,0): 136, 60, 46, (7,138,0): 136, 60, 46, (7,139,0): 136, 60, 46, (7,140,0): 136, 60, 47, (7,141,0): 135, 62, 47, (7,142,0): 136, 62, 49, (7,143,0): 139, 63, 49, (7,144,0): 145, 68, 50, (7,145,0): 150, 67, 49, (7,146,0): 162, 66, 52, (7,147,0): 173, 67, 54, (7,148,0): 186, 67, 59, (7,149,0): 193, 68, 62, (7,150,0): 193, 68, 62, (7,151,0): 187, 69, 65, (7,152,0): 185, 80, 76, (7,153,0): 178, 91, 84, (7,154,0): 165, 101, 92, (7,155,0): 145, 102, 93, (7,156,0): 117, 95, 84, (7,157,0): 91, 85, 73, (7,158,0): 71, 77, 65, (7,159,0): 67, 73, 63, (7,160,0): 60, 57, 50, (7,161,0): 63, 56, 50, (7,162,0): 62, 55, 49, (7,163,0): 59, 54, 48, (7,164,0): 57, 52, 46, (7,165,0): 55, 52, 45, (7,166,0): 54, 51, 46, (7,167,0): 52, 51, 46, (7,168,0): 52, 51, 46, (7,169,0): 51, 52, 46, (7,170,0): 50, 52, 47, (7,171,0): 49, 51, 46, (7,172,0): 47, 52, 46, (7,173,0): 46, 51, 45, (7,174,0): 46, 51, 45, (7,175,0): 46, 51, 45, (7,176,0): 45, 51, 47, (7,177,0): 45, 51, 47, (7,178,0): 45, 51, 47, (7,179,0): 45, 51, 47, (7,180,0): 46, 51, 47, (7,181,0): 46, 51, 47, (7,182,0): 48, 50, 47, (7,183,0): 48, 50, 47, (7,184,0): 47, 47, 45, (7,185,0): 48, 48, 46, (7,186,0): 50, 50, 48, (7,187,0): 50, 50, 48, (7,188,0): 49, 48, 46, (7,189,0): 48, 47, 45, (7,190,0): 48, 47, 45, (7,191,0): 51, 47, 44, (7,192,0): 56, 44, 44, (7,193,0): 59, 44, 41, (7,194,0): 67, 48, 42, (7,195,0): 75, 55, 48, (7,196,0): 83, 60, 54, (7,197,0): 94, 73, 72, (7,198,0): 116, 98, 110, (7,199,0): 135, 122, 148, (7,200,0): 144, 138, 182, (7,201,0): 140, 141, 198, (7,202,0): 132, 136, 207, (7,203,0): 122, 128, 204, (7,204,0): 114, 120, 198, (7,205,0): 105, 107, 182, (7,206,0): 87, 87, 159, (7,207,0): 73, 68, 132, (7,208,0): 69, 61, 110, (7,209,0): 71, 60, 100, (7,210,0): 68, 60, 97, (7,211,0): 67, 62, 94, (7,212,0): 67, 65, 89, (7,213,0): 64, 67, 86, (7,214,0): 64, 68, 80, (7,215,0): 62, 69, 75, (7,216,0): 71, 81, 82, (7,217,0): 75, 87, 85, (7,218,0): 81, 94, 87, (7,219,0): 85, 96, 88, (7,220,0): 83, 95, 85, (7,221,0): 82, 94, 84, (7,222,0): 84, 94, 83, (7,223,0): 89, 95, 83, (7,224,0): 94, 91, 76, (7,225,0): 97, 90, 74, (7,226,0): 97, 90, 74, (8,0,0): 44, 45, 47, (8,1,0): 44, 45, 47, (8,2,0): 44, 45, 47, (8,3,0): 44, 46, 45, (8,4,0): 45, 45, 45, (8,5,0): 45, 45, 45, (8,6,0): 46, 45, 43, (8,7,0): 46, 45, 43, (8,8,0): 47, 46, 44, (8,9,0): 47, 46, 44, (8,10,0): 49, 45, 42, (8,11,0): 48, 44, 41, (8,12,0): 48, 44, 41, (8,13,0): 48, 44, 41, (8,14,0): 47, 43, 40, (8,15,0): 47, 43, 40, (8,16,0): 47, 43, 42, (8,17,0): 47, 43, 42, (8,18,0): 47, 43, 42, (8,19,0): 47, 43, 42, (8,20,0): 47, 43, 42, (8,21,0): 47, 43, 42, (8,22,0): 47, 43, 42, (8,23,0): 48, 44, 43, (8,24,0): 47, 43, 42, (8,25,0): 47, 43, 42, (8,26,0): 47, 43, 42, (8,27,0): 47, 43, 42, (8,28,0): 47, 43, 42, (8,29,0): 47, 43, 42, (8,30,0): 47, 43, 42, (8,31,0): 47, 43, 42, (8,32,0): 47, 43, 42, (8,33,0): 47, 43, 42, (8,34,0): 47, 43, 42, (8,35,0): 48, 44, 43, (8,36,0): 48, 44, 43, (8,37,0): 49, 45, 44, (8,38,0): 49, 45, 44, (8,39,0): 50, 46, 45, (8,40,0): 49, 45, 44, (8,41,0): 49, 45, 44, (8,42,0): 49, 45, 44, (8,43,0): 49, 45, 44, (8,44,0): 49, 45, 44, (8,45,0): 49, 45, 44, (8,46,0): 49, 45, 44, (8,47,0): 49, 45, 44, (8,48,0): 48, 44, 41, (8,49,0): 49, 45, 42, (8,50,0): 50, 46, 43, (8,51,0): 51, 47, 44, (8,52,0): 51, 47, 44, (8,53,0): 51, 47, 44, (8,54,0): 51, 47, 44, (8,55,0): 51, 47, 44, (8,56,0): 51, 47, 44, (8,57,0): 51, 47, 44, (8,58,0): 51, 47, 44, (8,59,0): 51, 47, 44, (8,60,0): 52, 48, 45, (8,61,0): 53, 49, 46, (8,62,0): 54, 50, 47, (8,63,0): 55, 52, 47, (8,64,0): 56, 48, 45, (8,65,0): 57, 50, 44, (8,66,0): 58, 51, 45, (8,67,0): 59, 52, 46, (8,68,0): 61, 52, 47, (8,69,0): 62, 53, 46, (8,70,0): 62, 53, 46, (8,71,0): 62, 53, 46, (8,72,0): 63, 52, 46, (8,73,0): 63, 53, 44, (8,74,0): 66, 53, 45, (8,75,0): 67, 54, 46, (8,76,0): 68, 55, 47, (8,77,0): 70, 57, 48, (8,78,0): 71, 58, 49, (8,79,0): 70, 60, 50, (8,80,0): 71, 63, 52, (8,81,0): 72, 64, 53, (8,82,0): 74, 64, 54, (8,83,0): 80, 63, 53, (8,84,0): 84, 62, 51, (8,85,0): 88, 60, 49, (8,86,0): 94, 57, 48, (8,87,0): 98, 54, 43, (8,88,0): 109, 57, 46, (8,89,0): 116, 56, 45, (8,90,0): 124, 56, 43, (8,91,0): 131, 57, 44, (8,92,0): 141, 59, 47, (8,93,0): 147, 61, 48, (8,94,0): 152, 63, 49, (8,95,0): 158, 62, 48, (8,96,0): 167, 65, 51, (8,97,0): 173, 65, 52, (8,98,0): 181, 67, 56, (8,99,0): 190, 69, 58, (8,100,0): 202, 71, 61, (8,101,0): 212, 71, 62, (8,102,0): 222, 69, 63, (8,103,0): 229, 67, 64, (8,104,0): 232, 64, 63, (8,105,0): 234, 66, 65, (8,106,0): 230, 68, 65, (8,107,0): 218, 69, 62, (8,108,0): 200, 68, 56, (8,109,0): 183, 66, 49, (8,110,0): 170, 65, 46, (8,111,0): 162, 66, 44, (8,112,0): 162, 65, 46, (8,113,0): 161, 64, 45, (8,114,0): 162, 63, 44, (8,115,0): 162, 62, 46, (8,116,0): 161, 61, 45, (8,117,0): 161, 61, 45, (8,118,0): 162, 62, 46, (8,119,0): 160, 63, 47, (8,120,0): 156, 60, 44, (8,121,0): 154, 61, 44, (8,122,0): 152, 60, 45, (8,123,0): 149, 62, 45, (8,124,0): 147, 61, 44, (8,125,0): 144, 61, 43, (8,126,0): 142, 61, 42, (8,127,0): 140, 62, 42, (8,128,0): 139, 60, 43, (8,129,0): 139, 60, 43, (8,130,0): 138, 61, 45, (8,131,0): 137, 60, 44, (8,132,0): 137, 60, 44, (8,133,0): 137, 60, 44, (8,134,0): 136, 58, 45, (8,135,0): 135, 59, 45, (8,136,0): 137, 61, 47, (8,137,0): 134, 60, 47, (8,138,0): 134, 60, 47, (8,139,0): 135, 61, 48, (8,140,0): 136, 62, 51, (8,141,0): 136, 64, 50, (8,142,0): 137, 65, 53, (8,143,0): 139, 65, 52, (8,144,0): 145, 69, 53, (8,145,0): 151, 68, 52, (8,146,0): 163, 69, 57, (8,147,0): 177, 73, 62, (8,148,0): 186, 71, 64, (8,149,0): 187, 68, 62, (8,150,0): 187, 69, 65, (8,151,0): 184, 77, 71, (8,152,0): 180, 90, 82, (8,153,0): 175, 102, 95, (8,154,0): 163, 113, 102, (8,155,0): 145, 115, 104, (8,156,0): 126, 114, 100, (8,157,0): 106, 106, 94, (8,158,0): 86, 94, 83, (8,159,0): 73, 81, 70, (8,160,0): 76, 76, 66, (8,161,0): 74, 70, 61, (8,162,0): 66, 62, 53, (8,163,0): 60, 56, 47, (8,164,0): 57, 53, 44, (8,165,0): 55, 52, 43, (8,166,0): 54, 51, 44, (8,167,0): 51, 51, 43, (8,168,0): 52, 51, 46, (8,169,0): 51, 52, 46, (8,170,0): 49, 52, 45, (8,171,0): 49, 52, 45, (8,172,0): 48, 50, 45, (8,173,0): 47, 49, 44, (8,174,0): 44, 49, 43, (8,175,0): 44, 49, 43, (8,176,0): 45, 50, 46, (8,177,0): 45, 50, 46, (8,178,0): 45, 50, 46, (8,179,0): 45, 50, 46, (8,180,0): 47, 49, 46, (8,181,0): 47, 49, 46, (8,182,0): 47, 49, 46, (8,183,0): 47, 49, 46, (8,184,0): 48, 50, 47, (8,185,0): 48, 50, 47, (8,186,0): 49, 49, 47, (8,187,0): 49, 49, 47, (8,188,0): 49, 49, 47, (8,189,0): 49, 49, 47, (8,190,0): 49, 49, 47, (8,191,0): 52, 48, 47, (8,192,0): 52, 43, 48, (8,193,0): 59, 47, 51, (8,194,0): 65, 51, 50, (8,195,0): 67, 52, 47, (8,196,0): 74, 59, 54, (8,197,0): 93, 79, 79, (8,198,0): 121, 109, 121, (8,199,0): 139, 133, 159, (8,200,0): 147, 144, 187, (8,201,0): 148, 150, 207, (8,202,0): 144, 149, 217, (8,203,0): 131, 137, 211, (8,204,0): 116, 122, 198, (8,205,0): 106, 110, 183, (8,206,0): 95, 98, 167, (8,207,0): 90, 91, 148, (8,208,0): 76, 73, 116, (8,209,0): 72, 66, 100, (8,210,0): 65, 62, 93, (8,211,0): 62, 62, 88, (8,212,0): 63, 66, 85, (8,213,0): 65, 73, 86, (8,214,0): 76, 85, 92, (8,215,0): 85, 96, 98, (8,216,0): 98, 113, 110, (8,217,0): 110, 125, 120, (8,218,0): 118, 134, 124, (8,219,0): 114, 127, 117, (8,220,0): 108, 121, 111, (8,221,0): 103, 117, 104, (8,222,0): 95, 107, 95, (8,223,0): 87, 95, 80, (8,224,0): 91, 90, 70, (8,225,0): 96, 90, 68, (8,226,0): 99, 93, 71, (9,0,0): 44, 45, 47, (9,1,0): 44, 45, 47, (9,2,0): 44, 45, 47, (9,3,0): 44, 45, 47, (9,4,0): 45, 45, 45, (9,5,0): 45, 45, 45, (9,6,0): 46, 44, 45, (9,7,0): 46, 45, 43, (9,8,0): 47, 46, 44, (9,9,0): 46, 45, 43, (9,10,0): 48, 44, 41, (9,11,0): 48, 44, 41, (9,12,0): 47, 43, 40, (9,13,0): 47, 43, 40, (9,14,0): 47, 43, 40, (9,15,0): 47, 43, 40, (9,16,0): 46, 42, 41, (9,17,0): 46, 42, 41, (9,18,0): 46, 42, 41, (9,19,0): 46, 42, 41, (9,20,0): 47, 43, 42, (9,21,0): 47, 43, 42, (9,22,0): 47, 43, 42, (9,23,0): 47, 43, 42, (9,24,0): 47, 43, 42, (9,25,0): 47, 43, 42, (9,26,0): 47, 43, 42, (9,27,0): 47, 43, 42, (9,28,0): 47, 43, 42, (9,29,0): 47, 43, 42, (9,30,0): 47, 43, 42, (9,31,0): 47, 43, 42, (9,32,0): 47, 43, 42, (9,33,0): 47, 43, 42, (9,34,0): 47, 43, 42, (9,35,0): 48, 44, 43, (9,36,0): 48, 44, 43, (9,37,0): 48, 44, 43, (9,38,0): 49, 45, 44, (9,39,0): 49, 45, 44, (9,40,0): 49, 45, 44, (9,41,0): 49, 45, 44, (9,42,0): 49, 45, 44, (9,43,0): 49, 45, 44, (9,44,0): 49, 45, 44, (9,45,0): 49, 45, 44, (9,46,0): 49, 45, 44, (9,47,0): 49, 45, 44, (9,48,0): 48, 44, 43, (9,49,0): 48, 44, 41, (9,50,0): 49, 45, 42, (9,51,0): 50, 46, 43, (9,52,0): 51, 47, 44, (9,53,0): 51, 47, 44, (9,54,0): 50, 46, 43, (9,55,0): 50, 46, 43, (9,56,0): 50, 46, 43, (9,57,0): 50, 46, 43, (9,58,0): 50, 46, 43, (9,59,0): 50, 46, 43, (9,60,0): 51, 47, 44, (9,61,0): 52, 48, 45, (9,62,0): 53, 49, 46, (9,63,0): 54, 50, 47, (9,64,0): 56, 48, 46, (9,65,0): 57, 49, 46, (9,66,0): 58, 50, 47, (9,67,0): 59, 52, 46, (9,68,0): 61, 52, 47, (9,69,0): 62, 53, 48, (9,70,0): 62, 53, 48, (9,71,0): 61, 52, 45, (9,72,0): 63, 52, 46, (9,73,0): 63, 52, 46, (9,74,0): 65, 52, 46, (9,75,0): 66, 53, 45, (9,76,0): 67, 54, 46, (9,77,0): 69, 56, 48, (9,78,0): 71, 58, 50, (9,79,0): 72, 59, 51, (9,80,0): 72, 62, 53, (9,81,0): 72, 62, 53, (9,82,0): 76, 61, 54, (9,83,0): 79, 62, 54, (9,84,0): 81, 61, 52, (9,85,0): 86, 59, 50, (9,86,0): 90, 57, 48, (9,87,0): 95, 55, 47, (9,88,0): 104, 55, 48, (9,89,0): 112, 55, 46, (9,90,0): 119, 55, 45, (9,91,0): 129, 57, 45, (9,92,0): 137, 57, 46, (9,93,0): 144, 60, 49, (9,94,0): 150, 60, 49, (9,95,0): 155, 61, 49, (9,96,0): 162, 64, 51, (9,97,0): 167, 65, 51, (9,98,0): 172, 66, 53, (9,99,0): 180, 68, 56, (9,100,0): 190, 69, 58, (9,101,0): 201, 70, 60, (9,102,0): 212, 69, 61, (9,103,0): 219, 68, 61, (9,104,0): 223, 68, 64, (9,105,0): 224, 69, 64, (9,106,0): 222, 70, 65, (9,107,0): 212, 71, 62, (9,108,0): 196, 70, 56, (9,109,0): 178, 67, 50, (9,110,0): 165, 66, 45, (9,111,0): 158, 66, 45, (9,112,0): 159, 67, 46, (9,113,0): 158, 66, 45, (9,114,0): 159, 64, 46, (9,115,0): 158, 63, 45, (9,116,0): 158, 63, 45, (9,117,0): 158, 63, 45, (9,118,0): 158, 62, 46, (9,119,0): 158, 62, 46, (9,120,0): 154, 61, 44, (9,121,0): 153, 62, 44, (9,122,0): 150, 61, 45, (9,123,0): 148, 61, 44, (9,124,0): 144, 61, 43, (9,125,0): 143, 62, 43, (9,126,0): 140, 62, 42, (9,127,0): 140, 61, 44, (9,128,0): 139, 60, 43, (9,129,0): 138, 61, 43, (9,130,0): 137, 60, 44, (9,131,0): 137, 60, 44, (9,132,0): 137, 60, 44, (9,133,0): 135, 59, 43, (9,134,0): 135, 59, 45, (9,135,0): 133, 60, 45, (9,136,0): 134, 60, 47, (9,137,0): 133, 61, 47, (9,138,0): 133, 61, 49, (9,139,0): 131, 61, 49, (9,140,0): 132, 62, 50, (9,141,0): 134, 64, 54, (9,142,0): 135, 65, 55, (9,143,0): 136, 66, 54, (9,144,0): 147, 71, 57, (9,145,0): 151, 69, 55, (9,146,0): 163, 71, 60, (9,147,0): 175, 74, 64, (9,148,0): 184, 73, 66, (9,149,0): 184, 71, 65, (9,150,0): 183, 76, 70, (9,151,0): 179, 84, 78, (9,152,0): 177, 100, 92, (9,153,0): 170, 113, 102, (9,154,0): 159, 126, 111, (9,155,0): 144, 127, 111, (9,156,0): 127, 124, 109, (9,157,0): 109, 115, 101, (9,158,0): 90, 102, 90, (9,159,0): 78, 88, 77, (9,160,0): 76, 78, 65, (9,161,0): 75, 73, 61, (9,162,0): 69, 67, 55, (9,163,0): 64, 61, 52, (9,164,0): 61, 58, 49, (9,165,0): 56, 56, 46, (9,166,0): 52, 52, 44, (9,167,0): 49, 49, 41, (9,168,0): 50, 51, 45, (9,169,0): 50, 51, 45, (9,170,0): 48, 51, 44, (9,171,0): 47, 50, 43, (9,172,0): 47, 49, 44, (9,173,0): 46, 48, 43, (9,174,0): 46, 48, 43, (9,175,0): 46, 48, 43, (9,176,0): 47, 49, 46, (9,177,0): 45, 50, 46, (9,178,0): 47, 49, 46, (9,179,0): 47, 49, 46, (9,180,0): 47, 49, 46, (9,181,0): 47, 49, 46, (9,182,0): 47, 49, 46, (9,183,0): 47, 49, 46, (9,184,0): 48, 50, 47, (9,185,0): 48, 50, 47, (9,186,0): 49, 49, 47, (9,187,0): 49, 49, 47, (9,188,0): 49, 49, 47, (9,189,0): 49, 49, 47, (9,190,0): 49, 49, 47, (9,191,0): 50, 48, 49, (9,192,0): 53, 43, 52, (9,193,0): 57, 45, 55, (9,194,0): 60, 50, 51, (9,195,0): 63, 53, 51, (9,196,0): 72, 63, 58, (9,197,0): 94, 86, 84, (9,198,0): 120, 114, 124, (9,199,0): 138, 136, 158, (9,200,0): 147, 147, 185, (9,201,0): 148, 151, 202, (9,202,0): 144, 150, 212, (9,203,0): 132, 139, 207, (9,204,0): 121, 129, 194, (9,205,0): 113, 121, 184, (9,206,0): 107, 116, 173, (9,207,0): 104, 110, 158, (9,208,0): 92, 95, 128, (9,209,0): 88, 90, 113, (9,210,0): 83, 85, 106, (9,211,0): 82, 87, 106, (9,212,0): 84, 94, 104, (9,213,0): 90, 103, 109, (9,214,0): 102, 118, 118, (9,215,0): 114, 130, 127, (9,216,0): 116, 136, 127, (9,217,0): 126, 146, 135, (9,218,0): 131, 149, 137, (9,219,0): 126, 142, 129, (9,220,0): 118, 134, 121, (9,221,0): 114, 128, 113, (9,222,0): 102, 116, 101, (9,223,0): 90, 101, 84, (9,224,0): 89, 88, 67, (9,225,0): 94, 88, 62, (9,226,0): 97, 91, 67, (10,0,0): 44, 45, 47, (10,1,0): 44, 45, 47, (10,2,0): 44, 45, 47, (10,3,0): 44, 45, 47, (10,4,0): 44, 45, 47, (10,5,0): 44, 46, 45, (10,6,0): 45, 45, 45, (10,7,0): 45, 45, 45, (10,8,0): 46, 45, 43, (10,9,0): 46, 45, 43, (10,10,0): 46, 45, 43, (10,11,0): 45, 44, 42, (10,12,0): 47, 43, 40, (10,13,0): 46, 42, 39, (10,14,0): 46, 42, 39, (10,15,0): 46, 42, 39, (10,16,0): 44, 43, 41, (10,17,0): 44, 42, 43, (10,18,0): 44, 42, 43, (10,19,0): 44, 42, 43, (10,20,0): 43, 41, 42, (10,21,0): 43, 41, 42, (10,22,0): 43, 41, 42, (10,23,0): 43, 41, 42, (10,24,0): 45, 43, 44, (10,25,0): 45, 43, 44, (10,26,0): 45, 43, 44, (10,27,0): 45, 43, 44, (10,28,0): 45, 43, 44, (10,29,0): 45, 43, 44, (10,30,0): 45, 43, 44, (10,31,0): 45, 43, 44, (10,32,0): 44, 42, 43, (10,33,0): 44, 42, 43, (10,34,0): 45, 43, 44, (10,35,0): 45, 43, 44, (10,36,0): 45, 43, 44, (10,37,0): 46, 44, 45, (10,38,0): 46, 44, 45, (10,39,0): 46, 44, 45, (10,40,0): 46, 44, 45, (10,41,0): 46, 44, 45, (10,42,0): 46, 44, 45, (10,43,0): 47, 45, 46, (10,44,0): 47, 45, 46, (10,45,0): 47, 45, 46, (10,46,0): 47, 45, 46, (10,47,0): 47, 46, 44, (10,48,0): 48, 44, 43, (10,49,0): 48, 44, 43, (10,50,0): 49, 45, 44, (10,51,0): 50, 46, 45, (10,52,0): 50, 46, 45, (10,53,0): 50, 46, 45, (10,54,0): 50, 46, 45, (10,55,0): 49, 45, 44, (10,56,0): 49, 45, 44, (10,57,0): 49, 45, 44, (10,58,0): 49, 45, 44, (10,59,0): 49, 45, 44, (10,60,0): 50, 46, 45, (10,61,0): 51, 47, 46, (10,62,0): 52, 48, 47, (10,63,0): 53, 49, 46, (10,64,0): 56, 48, 46, (10,65,0): 57, 49, 46, (10,66,0): 58, 50, 47, (10,67,0): 59, 51, 48, (10,68,0): 61, 51, 49, (10,69,0): 61, 52, 47, (10,70,0): 61, 52, 47, (10,71,0): 61, 52, 47, (10,72,0): 63, 52, 48, (10,73,0): 63, 52, 46, (10,74,0): 65, 52, 46, (10,75,0): 65, 52, 46, (10,76,0): 67, 54, 48, (10,77,0): 68, 55, 49, (10,78,0): 70, 57, 51, (10,79,0): 71, 58, 52, (10,80,0): 72, 59, 53, (10,81,0): 74, 59, 54, (10,82,0): 75, 60, 55, (10,83,0): 78, 61, 54, (10,84,0): 80, 59, 54, (10,85,0): 83, 58, 53, (10,86,0): 86, 55, 50, (10,87,0): 91, 54, 46, (10,88,0): 99, 54, 48, (10,89,0): 107, 54, 46, (10,90,0): 116, 53, 44, (10,91,0): 125, 55, 47, (10,92,0): 135, 57, 47, (10,93,0): 141, 59, 48, (10,94,0): 148, 60, 48, (10,95,0): 150, 60, 49, (10,96,0): 157, 63, 51, (10,97,0): 160, 64, 52, (10,98,0): 162, 64, 51, (10,99,0): 168, 64, 51, (10,100,0): 177, 67, 54, (10,101,0): 186, 68, 56, (10,102,0): 197, 69, 58, (10,103,0): 205, 68, 58, (10,104,0): 213, 70, 64, (10,105,0): 215, 72, 64, (10,106,0): 212, 73, 66, (10,107,0): 204, 73, 63, (10,108,0): 190, 69, 58, (10,109,0): 174, 67, 51, (10,110,0): 161, 66, 46, (10,111,0): 156, 65, 46, (10,112,0): 157, 66, 47, (10,113,0): 156, 65, 46, (10,114,0): 156, 63, 46, (10,115,0): 155, 62, 45, (10,116,0): 155, 62, 45, (10,117,0): 155, 62, 45, (10,118,0): 155, 62, 47, (10,119,0): 155, 63, 48, (10,120,0): 152, 60, 45, (10,121,0): 150, 61, 45, (10,122,0): 148, 60, 46, (10,123,0): 147, 61, 46, (10,124,0): 143, 62, 45, (10,125,0): 140, 61, 44, (10,126,0): 139, 60, 43, (10,127,0): 138, 61, 43, (10,128,0): 137, 60, 42, (10,129,0): 137, 60, 42, (10,130,0): 137, 60, 44, (10,131,0): 135, 59, 43, (10,132,0): 135, 59, 45, (10,133,0): 133, 60, 45, (10,134,0): 132, 58, 45, (10,135,0): 131, 59, 45, (10,136,0): 132, 60, 48, (10,137,0): 130, 60, 48, (10,138,0): 130, 60, 50, (10,139,0): 130, 62, 51, (10,140,0): 131, 63, 52, (10,141,0): 133, 65, 56, (10,142,0): 135, 67, 58, (10,143,0): 136, 68, 57, (10,144,0): 148, 74, 61, (10,145,0): 151, 72, 59, (10,146,0): 160, 72, 62, (10,147,0): 172, 75, 68, (10,148,0): 178, 75, 70, (10,149,0): 179, 76, 71, (10,150,0): 178, 83, 77, (10,151,0): 174, 96, 86, (10,152,0): 173, 115, 103, (10,153,0): 166, 129, 113, (10,154,0): 157, 140, 122, (10,155,0): 145, 142, 123, (10,156,0): 130, 137, 119, (10,157,0): 115, 128, 111, (10,158,0): 99, 113, 98, (10,159,0): 88, 99, 85, (10,160,0): 78, 82, 68, (10,161,0): 77, 78, 64, (10,162,0): 72, 73, 59, (10,163,0): 68, 68, 56, (10,164,0): 64, 64, 52, (10,165,0): 57, 59, 46, (10,166,0): 52, 54, 43, (10,167,0): 47, 49, 38, (10,168,0): 48, 49, 41, (10,169,0): 48, 49, 41, (10,170,0): 47, 48, 42, (10,171,0): 47, 48, 42, (10,172,0): 46, 47, 42, (10,173,0): 46, 47, 42, (10,174,0): 47, 47, 45, (10,175,0): 47, 47, 45, (10,176,0): 47, 47, 45, (10,177,0): 46, 48, 45, (10,178,0): 47, 47, 45, (10,179,0): 47, 47, 45, (10,180,0): 47, 47, 45, (10,181,0): 47, 47, 45, (10,182,0): 47, 47, 45, (10,183,0): 47, 47, 45, (10,184,0): 48, 48, 46, (10,185,0): 48, 48, 46, (10,186,0): 48, 48, 46, (10,187,0): 48, 48, 46, (10,188,0): 48, 48, 46, (10,189,0): 48, 48, 46, (10,190,0): 48, 48, 46, (10,191,0): 49, 47, 50, (10,192,0): 54, 43, 57, (10,193,0): 55, 43, 57, (10,194,0): 56, 47, 52, (10,195,0): 59, 54, 51, (10,196,0): 72, 69, 62, (10,197,0): 95, 94, 89, (10,198,0): 122, 122, 124, (10,199,0): 139, 141, 154, (10,200,0): 144, 148, 177, (10,201,0): 146, 151, 191, (10,202,0): 143, 149, 199, (10,203,0): 132, 142, 195, (10,204,0): 125, 137, 187, (10,205,0): 123, 137, 182, (10,206,0): 124, 139, 178, (10,207,0): 125, 140, 171, (10,208,0): 125, 136, 154, (10,209,0): 119, 131, 143, (10,210,0): 113, 126, 135, (10,211,0): 110, 125, 130, (10,212,0): 110, 126, 126, (10,213,0): 111, 130, 126, (10,214,0): 121, 142, 133, (10,215,0): 131, 153, 141, (10,216,0): 139, 161, 148, (10,217,0): 145, 168, 152, (10,218,0): 144, 165, 148, (10,219,0): 136, 157, 138, (10,220,0): 131, 150, 131, (10,221,0): 124, 141, 123, (10,222,0): 106, 123, 105, (10,223,0): 92, 104, 84, (10,224,0): 86, 86, 62, (10,225,0): 91, 87, 58, (10,226,0): 93, 89, 62, (11,0,0): 45, 46, 48, (11,1,0): 45, 46, 48, (11,2,0): 45, 46, 48, (11,3,0): 45, 46, 48, (11,4,0): 45, 46, 48, (11,5,0): 45, 46, 48, (11,6,0): 46, 46, 46, (11,7,0): 46, 46, 46, (11,8,0): 46, 45, 43, (11,9,0): 46, 45, 43, (11,10,0): 45, 44, 42, (11,11,0): 45, 44, 42, (11,12,0): 46, 42, 39, (11,13,0): 46, 42, 39, (11,14,0): 46, 42, 39, (11,15,0): 46, 42, 41, (11,16,0): 44, 42, 43, (11,17,0): 43, 41, 42, (11,18,0): 43, 41, 42, (11,19,0): 43, 41, 42, (11,20,0): 43, 41, 42, (11,21,0): 42, 40, 41, (11,22,0): 42, 40, 41, (11,23,0): 42, 40, 41, (11,24,0): 44, 42, 43, (11,25,0): 44, 42, 43, (11,26,0): 44, 42, 43, (11,27,0): 44, 42, 43, (11,28,0): 44, 42, 43, (11,29,0): 44, 42, 43, (11,30,0): 44, 42, 43, (11,31,0): 44, 42, 43, (11,32,0): 44, 42, 43, (11,33,0): 44, 42, 43, (11,34,0): 44, 42, 43, (11,35,0): 44, 42, 43, (11,36,0): 44, 42, 43, (11,37,0): 45, 43, 44, (11,38,0): 45, 43, 44, (11,39,0): 45, 43, 44, (11,40,0): 45, 43, 44, (11,41,0): 46, 44, 45, (11,42,0): 46, 44, 45, (11,43,0): 46, 44, 45, (11,44,0): 46, 44, 45, (11,45,0): 47, 45, 46, (11,46,0): 47, 45, 46, (11,47,0): 47, 45, 46, (11,48,0): 47, 43, 42, (11,49,0): 48, 44, 43, (11,50,0): 49, 45, 44, (11,51,0): 49, 45, 44, (11,52,0): 49, 45, 44, (11,53,0): 49, 45, 44, (11,54,0): 48, 44, 43, (11,55,0): 48, 44, 43, (11,56,0): 48, 44, 43, (11,57,0): 48, 44, 43, (11,58,0): 48, 44, 43, (11,59,0): 48, 44, 43, (11,60,0): 49, 45, 44, (11,61,0): 50, 46, 45, (11,62,0): 51, 47, 46, (11,63,0): 52, 48, 47, (11,64,0): 57, 49, 47, (11,65,0): 58, 50, 48, (11,66,0): 59, 51, 49, (11,67,0): 60, 52, 49, (11,68,0): 61, 51, 49, (11,69,0): 61, 51, 49, (11,70,0): 61, 51, 49, (11,71,0): 61, 52, 47, (11,72,0): 62, 51, 47, (11,73,0): 62, 51, 47, (11,74,0): 64, 50, 47, (11,75,0): 64, 51, 45, (11,76,0): 65, 52, 46, (11,77,0): 67, 54, 48, (11,78,0): 68, 55, 49, (11,79,0): 69, 56, 50, (11,80,0): 70, 57, 51, (11,81,0): 72, 57, 52, (11,82,0): 73, 58, 53, (11,83,0): 74, 59, 54, (11,84,0): 76, 58, 54, (11,85,0): 78, 57, 52, (11,86,0): 81, 56, 51, (11,87,0): 84, 53, 48, (11,88,0): 94, 55, 50, (11,89,0): 101, 54, 48, (11,90,0): 111, 54, 47, (11,91,0): 120, 56, 47, (11,92,0): 130, 57, 48, (11,93,0): 138, 58, 47, (11,94,0): 144, 60, 49, (11,95,0): 148, 62, 49, (11,96,0): 153, 63, 52, (11,97,0): 155, 63, 52, (11,98,0): 155, 63, 50, (11,99,0): 159, 63, 49, (11,100,0): 165, 65, 50, (11,101,0): 174, 66, 53, (11,102,0): 184, 68, 55, (11,103,0): 191, 69, 58, (11,104,0): 199, 71, 62, (11,105,0): 203, 72, 64, (11,106,0): 202, 74, 65, (11,107,0): 195, 73, 62, (11,108,0): 182, 70, 58, (11,109,0): 170, 66, 53, (11,110,0): 158, 65, 48, (11,111,0): 153, 64, 46, (11,112,0): 153, 65, 45, (11,113,0): 153, 65, 45, (11,114,0): 152, 63, 45, (11,115,0): 151, 62, 44, (11,116,0): 151, 62, 44, (11,117,0): 153, 62, 44, (11,118,0): 153, 61, 46, (11,119,0): 151, 62, 46, (11,120,0): 149, 60, 44, (11,121,0): 148, 61, 44, (11,122,0): 147, 61, 46, (11,123,0): 144, 61, 45, (11,124,0): 142, 61, 44, (11,125,0): 138, 61, 43, (11,126,0): 138, 61, 45, (11,127,0): 137, 60, 44, (11,128,0): 136, 59, 41, (11,129,0): 136, 59, 41, (11,130,0): 135, 59, 43, (11,131,0): 135, 59, 43, (11,132,0): 132, 59, 44, (11,133,0): 132, 59, 44, (11,134,0): 131, 59, 45, (11,135,0): 128, 59, 44, (11,136,0): 129, 59, 47, (11,137,0): 128, 60, 49, (11,138,0): 128, 60, 49, (11,139,0): 129, 62, 53, (11,140,0): 131, 64, 55, (11,141,0): 131, 67, 58, (11,142,0): 135, 68, 60, (11,143,0): 136, 69, 60, (11,144,0): 148, 76, 64, (11,145,0): 150, 72, 60, (11,146,0): 158, 71, 62, (11,147,0): 167, 74, 67, (11,148,0): 174, 76, 73, (11,149,0): 174, 81, 76, (11,150,0): 173, 93, 86, (11,151,0): 170, 106, 94, (11,152,0): 167, 128, 111, (11,153,0): 161, 143, 121, (11,154,0): 154, 154, 130, (11,155,0): 143, 155, 131, (11,156,0): 134, 149, 128, (11,157,0): 122, 139, 120, (11,158,0): 109, 123, 106, (11,159,0): 98, 109, 93, (11,160,0): 83, 90, 74, (11,161,0): 81, 85, 70, (11,162,0): 75, 79, 64, (11,163,0): 69, 73, 58, (11,164,0): 64, 68, 54, (11,165,0): 59, 61, 48, (11,166,0): 53, 55, 44, (11,167,0): 49, 51, 40, (11,168,0): 48, 49, 41, (11,169,0): 47, 48, 40, (11,170,0): 46, 47, 41, (11,171,0): 46, 45, 40, (11,172,0): 46, 45, 41, (11,173,0): 46, 45, 41, (11,174,0): 47, 46, 44, (11,175,0): 48, 47, 45, (11,176,0): 47, 46, 44, (11,177,0): 47, 46, 44, (11,178,0): 47, 46, 44, (11,179,0): 47, 46, 44, (11,180,0): 47, 46, 44, (11,181,0): 46, 46, 44, (11,182,0): 47, 46, 44, (11,183,0): 46, 46, 44, (11,184,0): 48, 47, 45, (11,185,0): 47, 47, 45, (11,186,0): 48, 47, 45, (11,187,0): 47, 47, 45, (11,188,0): 47, 47, 45, (11,189,0): 47, 47, 45, (11,190,0): 47, 47, 45, (11,191,0): 50, 45, 49, (11,192,0): 55, 44, 58, (11,193,0): 54, 42, 56, (11,194,0): 51, 45, 49, (11,195,0): 57, 54, 49, (11,196,0): 72, 74, 63, (11,197,0): 98, 102, 88, (11,198,0): 123, 128, 122, (11,199,0): 139, 144, 147, (11,200,0): 141, 147, 163, (11,201,0): 143, 150, 176, (11,202,0): 140, 149, 182, (11,203,0): 131, 144, 178, (11,204,0): 129, 144, 175, (11,205,0): 133, 153, 178, (11,206,0): 141, 164, 182, (11,207,0): 146, 168, 179, (11,208,0): 147, 168, 171, (11,209,0): 144, 164, 163, (11,210,0): 140, 160, 158, (11,211,0): 135, 158, 152, (11,212,0): 130, 153, 143, (11,213,0): 125, 152, 137, (11,214,0): 129, 156, 139, (11,215,0): 136, 163, 144, (11,216,0): 148, 176, 154, (11,217,0): 152, 177, 155, (11,218,0): 148, 173, 151, (11,219,0): 139, 163, 141, (11,220,0): 133, 155, 132, (11,221,0): 127, 146, 124, (11,222,0): 107, 124, 105, (11,223,0): 88, 102, 79, (11,224,0): 83, 86, 59, (11,225,0): 89, 85, 56, (11,226,0): 90, 86, 57, (12,0,0): 43, 47, 50, (12,1,0): 43, 47, 50, (12,2,0): 43, 47, 50, (12,3,0): 43, 47, 50, (12,4,0): 45, 46, 48, (12,5,0): 45, 46, 48, (12,6,0): 46, 46, 46, (12,7,0): 46, 46, 46, (12,8,0): 45, 45, 45, (12,9,0): 45, 45, 45, (12,10,0): 46, 45, 43, (12,11,0): 45, 44, 42, (12,12,0): 45, 44, 42, (12,13,0): 44, 43, 41, (12,14,0): 44, 43, 41, (12,15,0): 44, 43, 41, (12,16,0): 44, 42, 43, (12,17,0): 44, 42, 43, (12,18,0): 44, 42, 43, (12,19,0): 43, 41, 42, (12,20,0): 43, 41, 42, (12,21,0): 42, 40, 41, (12,22,0): 42, 40, 41, (12,23,0): 42, 40, 41, (12,24,0): 44, 42, 43, (12,25,0): 44, 42, 43, (12,26,0): 44, 42, 43, (12,27,0): 44, 42, 43, (12,28,0): 44, 42, 43, (12,29,0): 44, 42, 43, (12,30,0): 44, 42, 43, (12,31,0): 44, 42, 43, (12,32,0): 44, 42, 43, (12,33,0): 44, 42, 43, (12,34,0): 44, 42, 43, (12,35,0): 44, 42, 43, (12,36,0): 44, 42, 43, (12,37,0): 43, 41, 42, (12,38,0): 43, 41, 42, (12,39,0): 43, 41, 42, (12,40,0): 44, 42, 43, (12,41,0): 45, 43, 44, (12,42,0): 45, 43, 44, (12,43,0): 46, 44, 45, (12,44,0): 46, 44, 45, (12,45,0): 47, 45, 46, (12,46,0): 47, 45, 46, (12,47,0): 47, 45, 46, (12,48,0): 47, 43, 42, (12,49,0): 48, 44, 43, (12,50,0): 48, 44, 43, (12,51,0): 48, 44, 43, (12,52,0): 48, 44, 43, (12,53,0): 48, 44, 43, (12,54,0): 47, 43, 42, (12,55,0): 46, 42, 41, (12,56,0): 47, 43, 42, (12,57,0): 47, 43, 42, (12,58,0): 47, 43, 42, (12,59,0): 47, 43, 42, (12,60,0): 48, 44, 43, (12,61,0): 49, 45, 44, (12,62,0): 51, 47, 46, (12,63,0): 52, 48, 47, (12,64,0): 57, 48, 49, (12,65,0): 58, 50, 48, (12,66,0): 59, 51, 49, (12,67,0): 60, 52, 50, (12,68,0): 61, 51, 50, (12,69,0): 61, 51, 49, (12,70,0): 60, 50, 48, (12,71,0): 60, 50, 48, (12,72,0): 61, 50, 48, (12,73,0): 61, 50, 46, (12,74,0): 63, 49, 46, (12,75,0): 63, 49, 46, (12,76,0): 64, 50, 47, (12,77,0): 65, 51, 48, (12,78,0): 66, 53, 47, (12,79,0): 67, 54, 48, (12,80,0): 68, 54, 51, (12,81,0): 67, 56, 52, (12,82,0): 68, 57, 53, (12,83,0): 69, 58, 54, (12,84,0): 71, 57, 54, (12,85,0): 72, 57, 52, (12,86,0): 75, 56, 52, (12,87,0): 78, 53, 48, (12,88,0): 88, 55, 50, (12,89,0): 95, 54, 48, (12,90,0): 105, 55, 48, (12,91,0): 114, 55, 47, (12,92,0): 125, 58, 49, (12,93,0): 134, 60, 49, (12,94,0): 140, 62, 50, (12,95,0): 144, 62, 50, (12,96,0): 151, 64, 54, (12,97,0): 151, 63, 53, (12,98,0): 151, 63, 53, (12,99,0): 151, 63, 51, (12,100,0): 156, 64, 51, (12,101,0): 163, 67, 53, (12,102,0): 171, 67, 54, (12,103,0): 179, 69, 56, (12,104,0): 186, 69, 59, (12,105,0): 189, 71, 61, (12,106,0): 190, 72, 62, (12,107,0): 185, 71, 61, (12,108,0): 176, 68, 56, (12,109,0): 166, 65, 53, (12,110,0): 155, 63, 48, (12,111,0): 151, 64, 47, (12,112,0): 151, 64, 45, (12,113,0): 151, 64, 45, (12,114,0): 150, 63, 46, (12,115,0): 149, 62, 45, (12,116,0): 148, 61, 44, (12,117,0): 149, 60, 44, (12,118,0): 150, 61, 47, (12,119,0): 150, 61, 47, (12,120,0): 149, 60, 46, (12,121,0): 147, 59, 45, (12,122,0): 146, 60, 47, (12,123,0): 142, 60, 46, (12,124,0): 139, 60, 45, (12,125,0): 137, 60, 44, (12,126,0): 137, 60, 44, (12,127,0): 136, 60, 44, (12,128,0): 135, 59, 43, (12,129,0): 134, 58, 42, (12,130,0): 134, 58, 42, (12,131,0): 134, 58, 42, (12,132,0): 131, 58, 43, (12,133,0): 131, 58, 43, (12,134,0): 130, 58, 44, (12,135,0): 128, 58, 46, (12,136,0): 128, 58, 48, (12,137,0): 128, 60, 49, (12,138,0): 128, 61, 52, (12,139,0): 127, 63, 54, (12,140,0): 130, 66, 57, (12,141,0): 131, 68, 61, (12,142,0): 135, 70, 64, (12,143,0): 136, 72, 63, (12,144,0): 145, 75, 65, (12,145,0): 146, 72, 61, (12,146,0): 154, 71, 63, (12,147,0): 163, 76, 69, (12,148,0): 168, 80, 76, (12,149,0): 168, 88, 81, (12,150,0): 169, 102, 93, (12,151,0): 166, 118, 104, (12,152,0): 162, 140, 119, (12,153,0): 155, 153, 128, (12,154,0): 149, 164, 135, (12,155,0): 140, 163, 135, (12,156,0): 134, 157, 131, (12,157,0): 126, 145, 125, (12,158,0): 116, 130, 113, (12,159,0): 106, 117, 101, (12,160,0): 92, 101, 82, (12,161,0): 86, 95, 76, (12,162,0): 78, 85, 67, (12,163,0): 69, 76, 58, (12,164,0): 63, 70, 54, (12,165,0): 60, 64, 50, (12,166,0): 55, 58, 47, (12,167,0): 54, 56, 45, (12,168,0): 48, 49, 41, (12,169,0): 48, 48, 40, (12,170,0): 46, 45, 40, (12,171,0): 47, 44, 39, (12,172,0): 47, 43, 40, (12,173,0): 47, 43, 42, (12,174,0): 49, 45, 44, (12,175,0): 50, 46, 45, (12,176,0): 49, 45, 44, (12,177,0): 49, 45, 44, (12,178,0): 49, 45, 44, (12,179,0): 49, 45, 44, (12,180,0): 49, 45, 44, (12,181,0): 47, 46, 44, (12,182,0): 49, 45, 44, (12,183,0): 47, 46, 44, (12,184,0): 50, 46, 45, (12,185,0): 48, 47, 45, (12,186,0): 50, 46, 45, (12,187,0): 48, 47, 45, (12,188,0): 48, 47, 45, (12,189,0): 48, 47, 45, (12,190,0): 48, 47, 45, (12,191,0): 50, 45, 49, (12,192,0): 56, 44, 58, (12,193,0): 53, 41, 53, (12,194,0): 49, 43, 43, (12,195,0): 54, 54, 44, (12,196,0): 71, 76, 56, (12,197,0): 96, 104, 81, (12,198,0): 122, 131, 112, (12,199,0): 136, 146, 135, (12,200,0): 141, 151, 150, (12,201,0): 143, 154, 160, (12,202,0): 141, 153, 165, (12,203,0): 134, 150, 163, (12,204,0): 135, 155, 162, (12,205,0): 144, 170, 169, (12,206,0): 155, 185, 177, (12,207,0): 160, 192, 179, (12,208,0): 152, 183, 168, (12,209,0): 154, 182, 167, (12,210,0): 155, 183, 168, (12,211,0): 152, 183, 165, (12,212,0): 145, 177, 156, (12,213,0): 137, 171, 146, (12,214,0): 137, 171, 144, (12,215,0): 144, 177, 148, (12,216,0): 146, 179, 150, (12,217,0): 149, 180, 149, (12,218,0): 144, 173, 143, (12,219,0): 136, 162, 133, (12,220,0): 132, 155, 129, (12,221,0): 123, 146, 120, (12,222,0): 103, 122, 100, (12,223,0): 84, 98, 73, (12,224,0): 81, 84, 57, (12,225,0): 85, 84, 56, (12,226,0): 86, 85, 57, (13,0,0): 44, 48, 51, (13,1,0): 44, 48, 51, (13,2,0): 44, 48, 51, (13,3,0): 44, 48, 51, (13,4,0): 46, 47, 49, (13,5,0): 46, 47, 49, (13,6,0): 47, 47, 47, (13,7,0): 47, 47, 47, (13,8,0): 46, 46, 46, (13,9,0): 46, 46, 46, (13,10,0): 47, 46, 44, (13,11,0): 46, 45, 43, (13,12,0): 46, 45, 43, (13,13,0): 46, 45, 43, (13,14,0): 45, 44, 42, (13,15,0): 45, 44, 42, (13,16,0): 45, 43, 44, (13,17,0): 45, 43, 44, (13,18,0): 45, 43, 44, (13,19,0): 44, 42, 43, (13,20,0): 43, 41, 42, (13,21,0): 42, 40, 41, (13,22,0): 42, 40, 41, (13,23,0): 42, 40, 41, (13,24,0): 43, 41, 42, (13,25,0): 43, 41, 42, (13,26,0): 43, 41, 42, (13,27,0): 43, 41, 42, (13,28,0): 43, 41, 42, (13,29,0): 43, 41, 42, (13,30,0): 43, 41, 42, (13,31,0): 43, 41, 42, (13,32,0): 44, 42, 43, (13,33,0): 44, 42, 43, (13,34,0): 43, 41, 42, (13,35,0): 43, 41, 42, (13,36,0): 43, 41, 42, (13,37,0): 42, 40, 41, (13,38,0): 42, 40, 41, (13,39,0): 42, 40, 41, (13,40,0): 44, 42, 43, (13,41,0): 44, 42, 43, (13,42,0): 44, 42, 43, (13,43,0): 45, 43, 44, (13,44,0): 46, 44, 45, (13,45,0): 46, 44, 45, (13,46,0): 47, 45, 46, (13,47,0): 47, 45, 46, (13,48,0): 47, 43, 42, (13,49,0): 47, 43, 42, (13,50,0): 48, 44, 43, (13,51,0): 48, 44, 43, (13,52,0): 47, 43, 42, (13,53,0): 47, 43, 42, (13,54,0): 46, 42, 41, (13,55,0): 45, 41, 40, (13,56,0): 48, 44, 43, (13,57,0): 48, 44, 43, (13,58,0): 47, 43, 42, (13,59,0): 48, 44, 43, (13,60,0): 49, 45, 44, (13,61,0): 50, 46, 45, (13,62,0): 51, 47, 46, (13,63,0): 52, 48, 47, (13,64,0): 58, 49, 50, (13,65,0): 58, 49, 50, (13,66,0): 59, 51, 49, (13,67,0): 60, 52, 50, (13,68,0): 61, 51, 50, (13,69,0): 60, 50, 49, (13,70,0): 60, 50, 48, (13,71,0): 59, 49, 47, (13,72,0): 61, 50, 48, (13,73,0): 60, 49, 47, (13,74,0): 62, 48, 45, (13,75,0): 62, 48, 45, (13,76,0): 63, 49, 46, (13,77,0): 64, 50, 47, (13,78,0): 65, 52, 46, (13,79,0): 63, 52, 46, (13,80,0): 64, 53, 49, (13,81,0): 64, 55, 50, (13,82,0): 64, 57, 51, (13,83,0): 65, 58, 52, (13,84,0): 66, 57, 52, (13,85,0): 67, 56, 52, (13,86,0): 70, 55, 52, (13,87,0): 72, 53, 47, (13,88,0): 81, 53, 49, (13,89,0): 88, 53, 47, (13,90,0): 97, 54, 47, (13,91,0): 108, 56, 45, (13,92,0): 117, 57, 46, (13,93,0): 128, 60, 47, (13,94,0): 134, 62, 48, (13,95,0): 139, 61, 49, (13,96,0): 147, 63, 53, (13,97,0): 149, 62, 53, (13,98,0): 147, 63, 53, (13,99,0): 147, 63, 52, (13,100,0): 149, 66, 52, (13,101,0): 154, 66, 52, (13,102,0): 160, 67, 52, (13,103,0): 165, 68, 52, (13,104,0): 172, 66, 53, (13,105,0): 176, 68, 56, (13,106,0): 180, 69, 58, (13,107,0): 177, 69, 59, (13,108,0): 170, 66, 55, (13,109,0): 161, 63, 52, (13,110,0): 154, 62, 49, (13,111,0): 150, 62, 48, (13,112,0): 149, 63, 46, (13,113,0): 148, 63, 43, (13,114,0): 147, 61, 44, (13,115,0): 147, 61, 44, (13,116,0): 147, 60, 43, (13,117,0): 147, 60, 43, (13,118,0): 148, 60, 46, (13,119,0): 148, 60, 46, (13,120,0): 147, 59, 45, (13,121,0): 146, 60, 45, (13,122,0): 143, 60, 46, (13,123,0): 141, 59, 45, (13,124,0): 138, 59, 44, (13,125,0): 137, 60, 44, (13,126,0): 135, 59, 43, (13,127,0): 135, 59, 43, (13,128,0): 134, 58, 42, (13,129,0): 134, 58, 42, (13,130,0): 133, 57, 41, (13,131,0): 131, 58, 41, (13,132,0): 131, 58, 43, (13,133,0): 129, 57, 42, (13,134,0): 127, 57, 45, (13,135,0): 127, 57, 45, (13,136,0): 128, 60, 49, (13,137,0): 127, 60, 51, (13,138,0): 127, 63, 54, (13,139,0): 128, 65, 56, (13,140,0): 130, 67, 60, (13,141,0): 133, 70, 63, (13,142,0): 136, 73, 66, (13,143,0): 138, 73, 67, (13,144,0): 142, 74, 65, (13,145,0): 144, 71, 62, (13,146,0): 151, 72, 67, (13,147,0): 159, 78, 74, (13,148,0): 167, 86, 82, (13,149,0): 167, 96, 90, (13,150,0): 169, 112, 101, (13,151,0): 164, 131, 114, (13,152,0): 156, 148, 125, (13,153,0): 150, 161, 131, (13,154,0): 143, 168, 138, (13,155,0): 136, 167, 136, (13,156,0): 131, 160, 132, (13,157,0): 126, 150, 126, (13,158,0): 121, 136, 117, (13,159,0): 112, 123, 106, (13,160,0): 100, 112, 92, (13,161,0): 93, 105, 83, (13,162,0): 82, 94, 74, (13,163,0): 74, 83, 64, (13,164,0): 66, 75, 58, (13,165,0): 62, 69, 53, (13,166,0): 58, 64, 50, (13,167,0): 57, 60, 49, (13,168,0): 51, 52, 44, (13,169,0): 50, 50, 42, (13,170,0): 49, 46, 41, (13,171,0): 47, 44, 39, (13,172,0): 47, 41, 41, (13,173,0): 48, 42, 42, (13,174,0): 49, 43, 43, (13,175,0): 50, 44, 44, (13,176,0): 49, 43, 43, (13,177,0): 49, 43, 43, (13,178,0): 49, 43, 43, (13,179,0): 49, 43, 43, (13,180,0): 49, 43, 43, (13,181,0): 48, 44, 43, (13,182,0): 48, 44, 43, (13,183,0): 48, 44, 43, (13,184,0): 49, 45, 44, (13,185,0): 49, 45, 44, (13,186,0): 49, 45, 44, (13,187,0): 49, 45, 44, (13,188,0): 47, 46, 44, (13,189,0): 47, 46, 44, (13,190,0): 47, 46, 44, (13,191,0): 50, 44, 46, (13,192,0): 56, 42, 55, (13,193,0): 53, 40, 49, (13,194,0): 51, 43, 40, (13,195,0): 53, 54, 38, (13,196,0): 69, 75, 49, (13,197,0): 92, 103, 71, (13,198,0): 117, 130, 100, (13,199,0): 134, 147, 121, (13,200,0): 142, 155, 138, (13,201,0): 145, 158, 148, (13,202,0): 144, 159, 154, (13,203,0): 139, 158, 152, (13,204,0): 141, 165, 151, (13,205,0): 151, 180, 158, (13,206,0): 162, 197, 165, (13,207,0): 169, 206, 173, (13,208,0): 165, 201, 173, (13,209,0): 166, 202, 176, (13,210,0): 167, 203, 177, (13,211,0): 164, 200, 172, (13,212,0): 151, 190, 159, (13,213,0): 139, 179, 145, (13,214,0): 136, 176, 141, (13,215,0): 141, 178, 144, (13,216,0): 142, 178, 142, (13,217,0): 144, 178, 143, (13,218,0): 141, 172, 138, (13,219,0): 132, 161, 130, (13,220,0): 128, 153, 123, (13,221,0): 119, 142, 114, (13,222,0): 100, 120, 93, (13,223,0): 81, 95, 69, (13,224,0): 77, 81, 54, (13,225,0): 81, 81, 53, (13,226,0): 82, 81, 53, (14,0,0): 44, 48, 51, (14,1,0): 44, 48, 51, (14,2,0): 44, 48, 51, (14,3,0): 44, 48, 51, (14,4,0): 46, 47, 49, (14,5,0): 46, 47, 49, (14,6,0): 46, 47, 49, (14,7,0): 46, 47, 49, (14,8,0): 47, 47, 47, (14,9,0): 47, 47, 47, (14,10,0): 47, 47, 47, (14,11,0): 47, 47, 47, (14,12,0): 47, 46, 44, (14,13,0): 47, 46, 44, (14,14,0): 46, 45, 43, (14,15,0): 46, 45, 43, (14,16,0): 47, 45, 46, (14,17,0): 46, 44, 45, (14,18,0): 46, 44, 45, (14,19,0): 45, 43, 44, (14,20,0): 44, 42, 43, (14,21,0): 43, 41, 42, (14,22,0): 43, 41, 42, (14,23,0): 42, 40, 41, (14,24,0): 43, 41, 42, (14,25,0): 43, 41, 42, (14,26,0): 43, 41, 42, (14,27,0): 43, 41, 42, (14,28,0): 43, 41, 42, (14,29,0): 43, 41, 42, (14,30,0): 43, 41, 42, (14,31,0): 43, 41, 42, (14,32,0): 43, 41, 42, (14,33,0): 43, 41, 42, (14,34,0): 43, 41, 42, (14,35,0): 42, 40, 41, (14,36,0): 42, 40, 41, (14,37,0): 42, 40, 41, (14,38,0): 41, 39, 40, (14,39,0): 41, 39, 40, (14,40,0): 43, 41, 42, (14,41,0): 43, 41, 42, (14,42,0): 44, 42, 43, (14,43,0): 45, 43, 44, (14,44,0): 46, 44, 45, (14,45,0): 46, 44, 45, (14,46,0): 47, 45, 46, (14,47,0): 47, 45, 46, (14,48,0): 47, 43, 42, (14,49,0): 47, 43, 42, (14,50,0): 47, 43, 42, (14,51,0): 47, 43, 42, (14,52,0): 47, 43, 42, (14,53,0): 46, 42, 41, (14,54,0): 45, 41, 40, (14,55,0): 44, 40, 39, (14,56,0): 48, 44, 43, (14,57,0): 48, 44, 43, (14,58,0): 48, 44, 43, (14,59,0): 48, 44, 43, (14,60,0): 49, 45, 44, (14,61,0): 50, 46, 45, (14,62,0): 52, 48, 47, (14,63,0): 52, 48, 47, (14,64,0): 58, 49, 50, (14,65,0): 59, 50, 51, (14,66,0): 59, 50, 51, (14,67,0): 60, 51, 52, (14,68,0): 61, 51, 50, (14,69,0): 60, 50, 49, (14,70,0): 60, 50, 49, (14,71,0): 59, 49, 48, (14,72,0): 60, 49, 47, (14,73,0): 60, 49, 47, (14,74,0): 62, 48, 47, (14,75,0): 61, 47, 46, (14,76,0): 62, 48, 45, (14,77,0): 62, 48, 45, (14,78,0): 63, 49, 46, (14,79,0): 62, 51, 47, (14,80,0): 61, 54, 48, (14,81,0): 59, 54, 48, (14,82,0): 59, 56, 51, (14,83,0): 60, 57, 52, (14,84,0): 61, 58, 53, (14,85,0): 62, 57, 51, (14,86,0): 64, 55, 50, (14,87,0): 67, 54, 48, (14,88,0): 71, 52, 46, (14,89,0): 79, 52, 43, (14,90,0): 89, 52, 43, (14,91,0): 100, 53, 43, (14,92,0): 110, 56, 44, (14,93,0): 120, 58, 45, (14,94,0): 127, 59, 46, (14,95,0): 133, 59, 46, (14,96,0): 143, 60, 52, (14,97,0): 145, 60, 53, (14,98,0): 144, 62, 51, (14,99,0): 143, 64, 51, (14,100,0): 144, 65, 50, (14,101,0): 147, 66, 49, (14,102,0): 151, 65, 50, (14,103,0): 153, 64, 48, (14,104,0): 160, 62, 49, (14,105,0): 166, 64, 52, (14,106,0): 170, 66, 55, (14,107,0): 170, 66, 57, (14,108,0): 165, 64, 54, (14,109,0): 159, 62, 53, (14,110,0): 151, 61, 50, (14,111,0): 149, 63, 50, (14,112,0): 146, 63, 45, (14,113,0): 146, 63, 45, (14,114,0): 145, 62, 44, (14,115,0): 144, 61, 43, (14,116,0): 145, 59, 42, (14,117,0): 145, 59, 42, (14,118,0): 146, 60, 45, (14,119,0): 146, 60, 45, (14,120,0): 145, 59, 46, (14,121,0): 145, 59, 46, (14,122,0): 142, 59, 45, (14,123,0): 141, 59, 45, (14,124,0): 138, 59, 46, (14,125,0): 136, 58, 45, (14,126,0): 134, 58, 44, (14,127,0): 132, 59, 44, (14,128,0): 133, 57, 41, (14,129,0): 133, 57, 41, (14,130,0): 131, 58, 41, (14,131,0): 130, 57, 40, (14,132,0): 130, 57, 42, (14,133,0): 129, 57, 42, (14,134,0): 126, 56, 44, (14,135,0): 126, 56, 44, (14,136,0): 128, 60, 49, (14,137,0): 128, 61, 52, (14,138,0): 128, 64, 55, (14,139,0): 129, 66, 57, (14,140,0): 132, 69, 62, (14,141,0): 133, 73, 65, (14,142,0): 136, 75, 70, (14,143,0): 140, 77, 70, (14,144,0): 140, 73, 65, (14,145,0): 142, 72, 64, (14,146,0): 152, 74, 70, (14,147,0): 161, 83, 79, (14,148,0): 168, 93, 88, (14,149,0): 169, 104, 98, (14,150,0): 169, 123, 110, (14,151,0): 164, 142, 121, (14,152,0): 153, 156, 129, (14,153,0): 146, 167, 134, (14,154,0): 137, 172, 139, (14,155,0): 130, 170, 136, (14,156,0): 128, 161, 132, (14,157,0): 127, 153, 128, (14,158,0): 126, 139, 119, (14,159,0): 120, 129, 110, (14,160,0): 106, 120, 97, (14,161,0): 100, 114, 91, (14,162,0): 90, 104, 81, (14,163,0): 81, 93, 73, (14,164,0): 73, 84, 67, (14,165,0): 67, 76, 59, (14,166,0): 62, 68, 54, (14,167,0): 60, 63, 52, (14,168,0): 54, 55, 47, (14,169,0): 52, 52, 44, (14,170,0): 51, 48, 43, (14,171,0): 48, 43, 39, (14,172,0): 49, 40, 41, (14,173,0): 49, 40, 41, (14,174,0): 50, 41, 42, (14,175,0): 52, 43, 44, (14,176,0): 50, 41, 42, (14,177,0): 50, 41, 42, (14,178,0): 50, 41, 42, (14,179,0): 50, 41, 42, (14,180,0): 50, 41, 42, (14,181,0): 48, 42, 42, (14,182,0): 48, 42, 42, (14,183,0): 48, 42, 42, (14,184,0): 49, 43, 43, (14,185,0): 49, 43, 43, (14,186,0): 48, 44, 43, (14,187,0): 48, 44, 43, (14,188,0): 48, 44, 43, (14,189,0): 48, 44, 43, (14,190,0): 48, 44, 43, (14,191,0): 49, 43, 45, (14,192,0): 54, 41, 50, (14,193,0): 53, 41, 45, (14,194,0): 52, 45, 37, (14,195,0): 52, 54, 33, (14,196,0): 65, 72, 38, (14,197,0): 87, 99, 59, (14,198,0): 113, 128, 87, (14,199,0): 130, 146, 109, (14,200,0): 141, 156, 125, (14,201,0): 144, 160, 134, (14,202,0): 144, 162, 140, (14,203,0): 139, 161, 138, (14,204,0): 141, 168, 137, (14,205,0): 149, 184, 142, (14,206,0): 160, 200, 148, (14,207,0): 164, 208, 157, (14,208,0): 169, 211, 171, (14,209,0): 168, 210, 174, (14,210,0): 167, 209, 173, (14,211,0): 161, 203, 165, (14,212,0): 147, 189, 151, (14,213,0): 133, 175, 135, (14,214,0): 130, 172, 132, (14,215,0): 135, 176, 134, (14,216,0): 136, 174, 133, (14,217,0): 140, 177, 136, (14,218,0): 139, 171, 134, (14,219,0): 129, 159, 123, (14,220,0): 123, 148, 116, (14,221,0): 113, 136, 107, (14,222,0): 95, 115, 87, (14,223,0): 77, 93, 66, (14,224,0): 73, 79, 51, (14,225,0): 74, 77, 48, (14,226,0): 76, 76, 48, (15,0,0): 46, 47, 49, (15,1,0): 44, 48, 49, (15,2,0): 46, 47, 49, (15,3,0): 46, 47, 49, (15,4,0): 46, 48, 47, (15,5,0): 46, 48, 47, (15,6,0): 46, 48, 47, (15,7,0): 47, 47, 47, (15,8,0): 48, 48, 46, (15,9,0): 48, 48, 46, (15,10,0): 48, 48, 46, (15,11,0): 48, 47, 45, (15,12,0): 48, 47, 45, (15,13,0): 48, 47, 43, (15,14,0): 47, 46, 44, (15,15,0): 49, 45, 44, (15,16,0): 50, 46, 45, (15,17,0): 49, 45, 44, (15,18,0): 49, 45, 44, (15,19,0): 48, 44, 43, (15,20,0): 47, 43, 44, (15,21,0): 44, 42, 43, (15,22,0): 43, 41, 42, (15,23,0): 43, 41, 42, (15,24,0): 43, 41, 42, (15,25,0): 43, 41, 42, (15,26,0): 43, 41, 42, (15,27,0): 43, 41, 42, (15,28,0): 43, 41, 42, (15,29,0): 43, 41, 42, (15,30,0): 43, 41, 44, (15,31,0): 43, 41, 42, (15,32,0): 43, 41, 44, (15,33,0): 43, 41, 42, (15,34,0): 45, 40, 44, (15,35,0): 42, 40, 41, (15,36,0): 44, 40, 41, (15,37,0): 41, 39, 40, (15,38,0): 41, 39, 40, (15,39,0): 40, 38, 39, (15,40,0): 42, 40, 41, (15,41,0): 43, 41, 42, (15,42,0): 44, 42, 43, (15,43,0): 44, 43, 41, (15,44,0): 45, 43, 44, (15,45,0): 46, 45, 43, (15,46,0): 47, 46, 44, (15,47,0): 47, 46, 44, (15,48,0): 45, 44, 42, (15,49,0): 45, 44, 42, (15,50,0): 47, 43, 42, (15,51,0): 47, 43, 42, (15,52,0): 46, 42, 41, (15,53,0): 45, 41, 40, (15,54,0): 44, 40, 39, (15,55,0): 44, 40, 39, (15,56,0): 49, 45, 44, (15,57,0): 50, 45, 42, (15,58,0): 50, 45, 42, (15,59,0): 50, 45, 42, (15,60,0): 51, 46, 43, (15,61,0): 52, 47, 44, (15,62,0): 53, 48, 45, (15,63,0): 54, 49, 46, (15,64,0): 59, 51, 49, (15,65,0): 59, 51, 49, (15,66,0): 60, 52, 50, (15,67,0): 60, 52, 50, (15,68,0): 61, 51, 49, (15,69,0): 60, 50, 48, (15,70,0): 59, 49, 47, (15,71,0): 59, 49, 47, (15,72,0): 60, 49, 47, (15,73,0): 60, 49, 47, (15,74,0): 61, 47, 46, (15,75,0): 61, 47, 46, (15,76,0): 61, 47, 44, (15,77,0): 62, 48, 45, (15,78,0): 63, 49, 46, (15,79,0): 61, 50, 46, (15,80,0): 62, 51, 45, (15,81,0): 61, 54, 46, (15,82,0): 60, 55, 49, (15,83,0): 57, 57, 49, (15,84,0): 57, 58, 50, (15,85,0): 58, 58, 50, (15,86,0): 59, 56, 49, (15,87,0): 63, 54, 47, (15,88,0): 67, 50, 43, (15,89,0): 74, 49, 44, (15,90,0): 84, 50, 41, (15,91,0): 94, 51, 42, (15,92,0): 104, 54, 43, (15,93,0): 111, 57, 45, (15,94,0): 118, 60, 46, (15,95,0): 123, 59, 47, (15,96,0): 135, 61, 50, (15,97,0): 139, 61, 51, (15,98,0): 139, 63, 50, (15,99,0): 140, 64, 50, (15,100,0): 142, 64, 51, (15,101,0): 143, 64, 49, (15,102,0): 146, 63, 49, (15,103,0): 149, 61, 47, (15,104,0): 152, 60, 47, (15,105,0): 156, 62, 50, (15,106,0): 162, 66, 54, (15,107,0): 161, 67, 55, (15,108,0): 158, 66, 55, (15,109,0): 153, 63, 52, (15,110,0): 150, 62, 50, (15,111,0): 148, 62, 49, (15,112,0): 148, 62, 47, (15,113,0): 147, 61, 46, (15,114,0): 144, 61, 45, (15,115,0): 142, 61, 44, (15,116,0): 142, 61, 44, (15,117,0): 140, 61, 44, (15,118,0): 140, 61, 46, (15,119,0): 141, 62, 47, (15,120,0): 142, 60, 46, (15,121,0): 142, 60, 46, (15,122,0): 139, 60, 47, (15,123,0): 138, 59, 46, (15,124,0): 136, 58, 45, (15,125,0): 135, 59, 45, (15,126,0): 132, 59, 44, (15,127,0): 132, 59, 44, (15,128,0): 130, 58, 43, (15,129,0): 128, 59, 43, (15,130,0): 127, 58, 42, (15,131,0): 126, 59, 42, (15,132,0): 126, 59, 43, (15,133,0): 124, 58, 42, (15,134,0): 124, 58, 44, (15,135,0): 124, 58, 46, (15,136,0): 128, 62, 50, (15,137,0): 129, 62, 53, (15,138,0): 128, 64, 54, (15,139,0): 130, 67, 58, (15,140,0): 133, 70, 61, (15,141,0): 133, 74, 66, (15,142,0): 136, 77, 69, (15,143,0): 139, 79, 71, (15,144,0): 140, 73, 67, (15,145,0): 142, 73, 68, (15,146,0): 147, 80, 74, (15,147,0): 152, 92, 84, (15,148,0): 157, 104, 96, (15,149,0): 157, 117, 105, (15,150,0): 158, 135, 117, (15,151,0): 157, 153, 128, (15,152,0): 147, 162, 133, (15,153,0): 143, 170, 137, (15,154,0): 137, 172, 139, (15,155,0): 129, 169, 135, (15,156,0): 127, 162, 132, (15,157,0): 125, 155, 127, (15,158,0): 122, 144, 121, (15,159,0): 116, 136, 111, (15,160,0): 103, 126, 98, (15,161,0): 98, 121, 93, (15,162,0): 92, 112, 85, (15,163,0): 85, 103, 79, (15,164,0): 78, 93, 72, (15,165,0): 71, 82, 65, (15,166,0): 64, 73, 56, (15,167,0): 61, 65, 51, (15,168,0): 56, 56, 46, (15,169,0): 56, 53, 46, (15,170,0): 53, 48, 44, (15,171,0): 51, 43, 41, (15,172,0): 50, 40, 41, (15,173,0): 50, 40, 41, (15,174,0): 51, 41, 42, (15,175,0): 52, 42, 43, (15,176,0): 50, 41, 44, (15,177,0): 48, 42, 42, (15,178,0): 48, 42, 44, (15,179,0): 50, 41, 42, (15,180,0): 50, 41, 44, (15,181,0): 50, 41, 44, (15,182,0): 50, 41, 44, (15,183,0): 50, 41, 44, (15,184,0): 51, 42, 45, (15,185,0): 51, 42, 45, (15,186,0): 49, 43, 45, (15,187,0): 49, 43, 45, (15,188,0): 48, 44, 45, (15,189,0): 48, 44, 45, (15,190,0): 48, 44, 45, (15,191,0): 49, 43, 47, (15,192,0): 52, 41, 47, (15,193,0): 52, 42, 43, (15,194,0): 52, 45, 37, (15,195,0): 52, 54, 33, (15,196,0): 63, 70, 37, (15,197,0): 84, 96, 56, (15,198,0): 109, 124, 81, (15,199,0): 129, 144, 103, (15,200,0): 137, 153, 116, (15,201,0): 141, 158, 122, (15,202,0): 141, 161, 126, (15,203,0): 136, 161, 122, (15,204,0): 138, 167, 123, (15,205,0): 145, 182, 130, (15,206,0): 155, 196, 136, (15,207,0): 159, 203, 144, (15,208,0): 159, 201, 153, (15,209,0): 158, 199, 157, (15,210,0): 157, 198, 154, (15,211,0): 152, 193, 149, (15,212,0): 140, 183, 138, (15,213,0): 130, 173, 128, (15,214,0): 133, 174, 130, (15,215,0): 140, 181, 137, (15,216,0): 132, 171, 127, (15,217,0): 137, 174, 133, (15,218,0): 137, 169, 130, (15,219,0): 126, 156, 120, (15,220,0): 118, 143, 111, (15,221,0): 108, 131, 102, (15,222,0): 90, 110, 83, (15,223,0): 74, 90, 63, (15,224,0): 70, 76, 50, (15,225,0): 70, 74, 47, (15,226,0): 70, 72, 48, (16,0,0): 47, 48, 43, (16,1,0): 46, 48, 43, (16,2,0): 47, 48, 43, (16,3,0): 48, 49, 44, (16,4,0): 48, 49, 44, (16,5,0): 48, 49, 44, (16,6,0): 49, 50, 45, (16,7,0): 50, 49, 45, (16,8,0): 51, 50, 46, (16,9,0): 52, 51, 47, (16,10,0): 52, 51, 47, (16,11,0): 54, 50, 47, (16,12,0): 53, 49, 46, (16,13,0): 52, 49, 44, (16,14,0): 51, 47, 44, (16,15,0): 52, 47, 44, (16,16,0): 53, 48, 45, (16,17,0): 53, 48, 45, (16,18,0): 52, 47, 44, (16,19,0): 51, 46, 43, (16,20,0): 50, 44, 44, (16,21,0): 49, 45, 44, (16,22,0): 48, 44, 43, (16,23,0): 48, 44, 43, (16,24,0): 46, 44, 45, (16,25,0): 46, 44, 45, (16,26,0): 45, 45, 47, (16,27,0): 45, 45, 47, (16,28,0): 44, 44, 46, (16,29,0): 43, 43, 45, (16,30,0): 42, 41, 46, (16,31,0): 41, 41, 43, (16,32,0): 46, 41, 47, (16,33,0): 46, 41, 45, (16,34,0): 47, 40, 47, (16,35,0): 46, 41, 45, (16,36,0): 47, 41, 45, (16,37,0): 46, 41, 45, (16,38,0): 46, 42, 43, (16,39,0): 46, 42, 43, (16,40,0): 47, 43, 42, (16,41,0): 47, 43, 42, (16,42,0): 45, 44, 42, (16,43,0): 46, 45, 41, (16,44,0): 45, 45, 43, (16,45,0): 45, 46, 41, (16,46,0): 46, 47, 42, (16,47,0): 46, 47, 42, (16,48,0): 45, 45, 45, (16,49,0): 45, 45, 45, (16,50,0): 46, 44, 45, (16,51,0): 47, 45, 46, (16,52,0): 47, 46, 44, (16,53,0): 48, 47, 45, (16,54,0): 50, 46, 43, (16,55,0): 50, 46, 43, (16,56,0): 50, 45, 42, (16,57,0): 52, 44, 41, (16,58,0): 53, 45, 42, (16,59,0): 54, 46, 43, (16,60,0): 56, 47, 42, (16,61,0): 58, 49, 44, (16,62,0): 58, 49, 42, (16,63,0): 59, 50, 43, (16,64,0): 61, 52, 45, (16,65,0): 61, 52, 45, (16,66,0): 62, 53, 48, (16,67,0): 62, 53, 48, (16,68,0): 62, 53, 48, (16,69,0): 61, 52, 47, (16,70,0): 60, 51, 46, (16,71,0): 59, 50, 45, (16,72,0): 61, 50, 46, (16,73,0): 60, 49, 45, (16,74,0): 60, 49, 47, (16,75,0): 59, 48, 46, (16,76,0): 61, 47, 46, (16,77,0): 62, 48, 47, (16,78,0): 62, 48, 47, (16,79,0): 64, 49, 46, (16,80,0): 66, 47, 41, (16,81,0): 66, 49, 41, (16,82,0): 60, 51, 42, (16,83,0): 57, 54, 45, (16,84,0): 53, 56, 45, (16,85,0): 52, 55, 46, (16,86,0): 54, 54, 46, (16,87,0): 59, 50, 45, (16,88,0): 64, 45, 41, (16,89,0): 71, 41, 39, (16,90,0): 79, 39, 39, (16,91,0): 86, 41, 38, (16,92,0): 91, 46, 40, (16,93,0): 97, 53, 44, (16,94,0): 102, 60, 48, (16,95,0): 109, 63, 48, (16,96,0): 121, 65, 48, (16,97,0): 127, 64, 47, (16,98,0): 134, 65, 49, (16,99,0): 139, 66, 51, (16,100,0): 143, 64, 51, (16,101,0): 147, 61, 48, (16,102,0): 147, 59, 47, (16,103,0): 146, 56, 45, (16,104,0): 147, 59, 47, (16,105,0): 147, 61, 46, (16,106,0): 148, 65, 49, (16,107,0): 149, 66, 50, (16,108,0): 148, 67, 50, (16,109,0): 146, 65, 48, (16,110,0): 145, 62, 46, (16,111,0): 145, 59, 44, (16,112,0): 151, 59, 48, (16,113,0): 151, 58, 50, (16,114,0): 146, 59, 49, (16,115,0): 140, 61, 48, (16,116,0): 136, 63, 48, (16,117,0): 132, 63, 47, (16,118,0): 130, 63, 46, (16,119,0): 130, 63, 46, (16,120,0): 136, 64, 49, (16,121,0): 136, 63, 48, (16,122,0): 138, 62, 49, (16,123,0): 137, 61, 48, (16,124,0): 136, 60, 47, (16,125,0): 135, 59, 46, (16,126,0): 132, 58, 45, (16,127,0): 131, 59, 45, (16,128,0): 123, 57, 43, (16,129,0): 126, 64, 51, (16,130,0): 118, 60, 46, (16,131,0): 112, 56, 41, (16,132,0): 118, 62, 45, (16,133,0): 118, 62, 45, (16,134,0): 118, 59, 45, (16,135,0): 125, 63, 50, (16,136,0): 125, 59, 47, (16,137,0): 131, 63, 52, (16,138,0): 136, 68, 57, (16,139,0): 139, 72, 63, (16,140,0): 138, 76, 65, (16,141,0): 135, 77, 66, (16,142,0): 133, 79, 67, (16,143,0): 135, 78, 69, (16,144,0): 144, 76, 73, (16,145,0): 149, 84, 80, (16,146,0): 147, 99, 89, (16,147,0): 142, 113, 97, (16,148,0): 138, 125, 106, (16,149,0): 134, 138, 113, (16,150,0): 135, 151, 124, (16,151,0): 136, 159, 130, (16,152,0): 139, 166, 135, (16,153,0): 138, 167, 137, (16,154,0): 139, 168, 138, (16,155,0): 138, 168, 140, (16,156,0): 132, 165, 136, (16,157,0): 124, 161, 130, (16,158,0): 114, 155, 123, (16,159,0): 110, 151, 117, (16,160,0): 104, 142, 105, (16,161,0): 97, 133, 95, (16,162,0): 91, 122, 88, (16,163,0): 89, 116, 85, (16,164,0): 90, 110, 83, (16,165,0): 86, 101, 78, (16,166,0): 79, 88, 69, (16,167,0): 73, 75, 61, (16,168,0): 66, 63, 54, (16,169,0): 64, 57, 51, (16,170,0): 58, 48, 46, (16,171,0): 53, 43, 42, (16,172,0): 51, 39, 41, (16,173,0): 51, 39, 43, (16,174,0): 51, 39, 43, (16,175,0): 49, 38, 42, (16,176,0): 47, 41, 45, (16,177,0): 45, 41, 42, (16,178,0): 45, 40, 44, (16,179,0): 45, 39, 41, (16,180,0): 47, 38, 43, (16,181,0): 49, 38, 44, (16,182,0): 51, 38, 45, (16,183,0): 51, 38, 45, (16,184,0): 52, 39, 46, (16,185,0): 52, 39, 46, (16,186,0): 51, 40, 48, (16,187,0): 50, 40, 48, (16,188,0): 48, 41, 49, (16,189,0): 47, 42, 49, (16,190,0): 47, 42, 49, (16,191,0): 47, 42, 48, (16,192,0): 47, 41, 45, (16,193,0): 49, 43, 43, (16,194,0): 48, 45, 40, (16,195,0): 47, 47, 35, (16,196,0): 60, 63, 42, (16,197,0): 86, 92, 64, (16,198,0): 112, 122, 88, (16,199,0): 127, 139, 103, (16,200,0): 141, 156, 117, (16,201,0): 139, 157, 115, (16,202,0): 140, 161, 118, (16,203,0): 140, 166, 119, (16,204,0): 138, 168, 118, (16,205,0): 137, 170, 117, (16,206,0): 142, 180, 123, (16,207,0): 153, 191, 134, (16,208,0): 159, 193, 143, (16,209,0): 157, 190, 143, (16,210,0): 150, 186, 138, (16,211,0): 143, 179, 131, (16,212,0): 136, 174, 125, (16,213,0): 133, 171, 124, (16,214,0): 131, 170, 123, (16,215,0): 133, 170, 126, (16,216,0): 131, 168, 125, (16,217,0): 131, 166, 126, (16,218,0): 128, 158, 124, (16,219,0): 121, 148, 117, (16,220,0): 114, 137, 109, (16,221,0): 104, 124, 99, (16,222,0): 89, 107, 85, (16,223,0): 77, 90, 70, (16,224,0): 74, 82, 61, (16,225,0): 68, 73, 51, (16,226,0): 62, 65, 46, (17,0,0): 47, 48, 42, (17,1,0): 48, 49, 43, (17,2,0): 48, 49, 43, (17,3,0): 48, 49, 43, (17,4,0): 49, 50, 44, (17,5,0): 49, 50, 44, (17,6,0): 50, 49, 44, (17,7,0): 51, 50, 45, (17,8,0): 52, 51, 46, (17,9,0): 52, 51, 46, (17,10,0): 55, 52, 47, (17,11,0): 55, 52, 47, (17,12,0): 54, 51, 46, (17,13,0): 53, 50, 45, (17,14,0): 53, 48, 44, (17,15,0): 53, 48, 44, (17,16,0): 55, 47, 44, (17,17,0): 55, 47, 44, (17,18,0): 54, 46, 44, (17,19,0): 54, 46, 44, (17,20,0): 51, 46, 43, (17,21,0): 50, 45, 42, (17,22,0): 48, 44, 43, (17,23,0): 48, 44, 43, (17,24,0): 48, 44, 45, (17,25,0): 47, 45, 46, (17,26,0): 47, 45, 48, (17,27,0): 45, 45, 47, (17,28,0): 45, 44, 49, (17,29,0): 43, 42, 47, (17,30,0): 41, 42, 46, (17,31,0): 41, 40, 45, (17,32,0): 46, 41, 47, (17,33,0): 47, 40, 47, (17,34,0): 47, 40, 47, (17,35,0): 47, 40, 47, (17,36,0): 47, 41, 45, (17,37,0): 47, 41, 45, (17,38,0): 46, 42, 43, (17,39,0): 46, 42, 43, (17,40,0): 47, 43, 42, (17,41,0): 47, 43, 42, (17,42,0): 46, 45, 41, (17,43,0): 46, 45, 41, (17,44,0): 46, 47, 42, (17,45,0): 46, 47, 42, (17,46,0): 46, 47, 41, (17,47,0): 46, 47, 42, (17,48,0): 46, 46, 46, (17,49,0): 46, 46, 48, (17,50,0): 46, 46, 46, (17,51,0): 46, 46, 46, (17,52,0): 47, 46, 44, (17,53,0): 47, 46, 44, (17,54,0): 49, 45, 42, (17,55,0): 51, 46, 43, (17,56,0): 53, 45, 42, (17,57,0): 53, 46, 40, (17,58,0): 55, 46, 41, (17,59,0): 56, 47, 40, (17,60,0): 58, 47, 41, (17,61,0): 59, 48, 42, (17,62,0): 60, 50, 41, (17,63,0): 61, 51, 42, (17,64,0): 62, 53, 44, (17,65,0): 62, 53, 44, (17,66,0): 62, 53, 46, (17,67,0): 62, 53, 46, (17,68,0): 62, 53, 46, (17,69,0): 61, 52, 45, (17,70,0): 60, 51, 46, (17,71,0): 60, 51, 46, (17,72,0): 61, 50, 46, (17,73,0): 60, 49, 45, (17,74,0): 59, 48, 46, (17,75,0): 59, 48, 46, (17,76,0): 61, 47, 46, (17,77,0): 61, 47, 46, (17,78,0): 62, 48, 47, (17,79,0): 64, 49, 46, (17,80,0): 68, 47, 42, (17,81,0): 70, 47, 41, (17,82,0): 67, 50, 43, (17,83,0): 64, 51, 43, (17,84,0): 61, 52, 45, (17,85,0): 60, 51, 44, (17,86,0): 59, 50, 45, (17,87,0): 62, 48, 45, (17,88,0): 65, 44, 43, (17,89,0): 70, 42, 41, (17,90,0): 75, 41, 40, (17,91,0): 80, 42, 39, (17,92,0): 86, 45, 41, (17,93,0): 92, 51, 45, (17,94,0): 97, 57, 49, (17,95,0): 103, 61, 47, (17,96,0): 112, 65, 47, (17,97,0): 120, 65, 45, (17,98,0): 128, 65, 48, (17,99,0): 136, 64, 50, (17,100,0): 143, 63, 52, (17,101,0): 145, 61, 51, (17,102,0): 147, 58, 50, (17,103,0): 147, 59, 49, (17,104,0): 141, 57, 46, (17,105,0): 139, 60, 47, (17,106,0): 139, 62, 46, (17,107,0): 140, 64, 48, (17,108,0): 141, 65, 49, (17,109,0): 141, 65, 49, (17,110,0): 142, 65, 47, (17,111,0): 145, 63, 49, (17,112,0): 149, 59, 50, (17,113,0): 149, 59, 50, (17,114,0): 144, 60, 50, (17,115,0): 139, 61, 48, (17,116,0): 134, 62, 48, (17,117,0): 131, 64, 47, (17,118,0): 129, 63, 47, (17,119,0): 129, 64, 46, (17,120,0): 133, 64, 49, (17,121,0): 134, 62, 47, (17,122,0): 135, 61, 48, (17,123,0): 136, 60, 46, (17,124,0): 133, 59, 46, (17,125,0): 132, 59, 44, (17,126,0): 130, 58, 44, (17,127,0): 127, 60, 44, (17,128,0): 119, 57, 44, (17,129,0): 119, 61, 49, (17,130,0): 112, 59, 45, (17,131,0): 109, 57, 43, (17,132,0): 114, 63, 46, (17,133,0): 114, 63, 46, (17,134,0): 113, 57, 42, (17,135,0): 117, 58, 44, (17,136,0): 127, 61, 49, (17,137,0): 132, 64, 53, (17,138,0): 138, 68, 58, (17,139,0): 140, 72, 61, (17,140,0): 138, 74, 64, (17,141,0): 135, 77, 65, (17,142,0): 133, 79, 67, (17,143,0): 136, 77, 69, (17,144,0): 144, 74, 72, (17,145,0): 149, 84, 82, (17,146,0): 145, 102, 93, (17,147,0): 138, 119, 102, (17,148,0): 131, 135, 112, (17,149,0): 127, 147, 119, (17,150,0): 128, 159, 127, (17,151,0): 131, 166, 134, (17,152,0): 134, 167, 136, (17,153,0): 139, 168, 138, (17,154,0): 143, 167, 141, (17,155,0): 143, 167, 141, (17,156,0): 136, 165, 137, (17,157,0): 127, 160, 131, (17,158,0): 117, 156, 125, (17,159,0): 109, 153, 118, (17,160,0): 100, 147, 105, (17,161,0): 94, 139, 96, (17,162,0): 89, 130, 90, (17,163,0): 89, 123, 88, (17,164,0): 90, 119, 88, (17,165,0): 88, 111, 83, (17,166,0): 82, 97, 74, (17,167,0): 77, 86, 67, (17,168,0): 69, 73, 59, (17,169,0): 65, 65, 55, (17,170,0): 59, 56, 51, (17,171,0): 53, 48, 45, (17,172,0): 51, 42, 43, (17,173,0): 50, 41, 42, (17,174,0): 49, 40, 43, (17,175,0): 46, 40, 42, (17,176,0): 49, 40, 43, (17,177,0): 48, 39, 44, (17,178,0): 48, 39, 44, (17,179,0): 48, 39, 44, (17,180,0): 49, 38, 44, (17,181,0): 51, 38, 45, (17,182,0): 52, 39, 48, (17,183,0): 52, 39, 48, (17,184,0): 52, 39, 48, (17,185,0): 51, 40, 48, (17,186,0): 50, 40, 49, (17,187,0): 48, 41, 49, (17,188,0): 47, 42, 49, (17,189,0): 45, 42, 51, (17,190,0): 44, 43, 51, (17,191,0): 44, 43, 49, (17,192,0): 50, 45, 49, (17,193,0): 50, 46, 45, (17,194,0): 48, 44, 41, (17,195,0): 45, 45, 37, (17,196,0): 56, 58, 44, (17,197,0): 83, 88, 66, (17,198,0): 111, 120, 93, (17,199,0): 128, 139, 105, (17,200,0): 135, 150, 111, (17,201,0): 134, 153, 108, (17,202,0): 134, 158, 110, (17,203,0): 136, 163, 112, (17,204,0): 134, 164, 112, (17,205,0): 132, 165, 112, (17,206,0): 138, 173, 119, (17,207,0): 147, 182, 128, (17,208,0): 153, 185, 135, (17,209,0): 150, 182, 132, (17,210,0): 147, 179, 129, (17,211,0): 140, 174, 123, (17,212,0): 134, 171, 120, (17,213,0): 130, 168, 119, (17,214,0): 130, 168, 121, (17,215,0): 131, 168, 124, (17,216,0): 131, 166, 124, (17,217,0): 130, 164, 127, (17,218,0): 127, 157, 123, (17,219,0): 120, 146, 117, (17,220,0): 113, 136, 110, (17,221,0): 104, 123, 101, (17,222,0): 89, 106, 87, (17,223,0): 77, 90, 72, (17,224,0): 70, 77, 59, (17,225,0): 64, 68, 51, (17,226,0): 59, 62, 45, (18,0,0): 49, 50, 44, (18,1,0): 49, 50, 44, (18,2,0): 49, 50, 44, (18,3,0): 49, 50, 44, (18,4,0): 50, 51, 45, (18,5,0): 50, 51, 45, (18,6,0): 52, 51, 46, (18,7,0): 52, 51, 46, (18,8,0): 53, 52, 47, (18,9,0): 53, 52, 47, (18,10,0): 56, 53, 48, (18,11,0): 56, 53, 48, (18,12,0): 56, 53, 48, (18,13,0): 55, 52, 47, (18,14,0): 55, 50, 46, (18,15,0): 54, 49, 45, (18,16,0): 56, 48, 45, (18,17,0): 56, 48, 45, (18,18,0): 55, 47, 44, (18,19,0): 54, 46, 43, (18,20,0): 52, 47, 44, (18,21,0): 51, 46, 43, (18,22,0): 50, 44, 44, (18,23,0): 49, 45, 44, (18,24,0): 49, 45, 46, (18,25,0): 47, 45, 46, (18,26,0): 48, 46, 49, (18,27,0): 47, 45, 48, (18,28,0): 45, 45, 47, (18,29,0): 44, 44, 46, (18,30,0): 43, 42, 47, (18,31,0): 43, 41, 46, (18,32,0): 47, 40, 47, (18,33,0): 49, 39, 47, (18,34,0): 47, 41, 45, (18,35,0): 47, 41, 45, (18,36,0): 47, 41, 45, (18,37,0): 47, 41, 45, (18,38,0): 46, 42, 43, (18,39,0): 46, 42, 43, (18,40,0): 48, 44, 43, (18,41,0): 48, 44, 43, (18,42,0): 47, 46, 42, (18,43,0): 47, 46, 42, (18,44,0): 47, 46, 41, (18,45,0): 48, 47, 42, (18,46,0): 48, 47, 42, (18,47,0): 48, 47, 43, (18,48,0): 47, 47, 45, (18,49,0): 47, 47, 47, (18,50,0): 48, 46, 47, (18,51,0): 48, 46, 47, (18,52,0): 48, 47, 45, (18,53,0): 47, 46, 44, (18,54,0): 49, 45, 42, (18,55,0): 50, 45, 42, (18,56,0): 54, 46, 43, (18,57,0): 55, 48, 42, (18,58,0): 57, 48, 43, (18,59,0): 58, 49, 42, (18,60,0): 60, 49, 43, (18,61,0): 61, 51, 42, (18,62,0): 62, 52, 43, (18,63,0): 63, 53, 44, (18,64,0): 63, 54, 45, (18,65,0): 63, 54, 45, (18,66,0): 64, 55, 46, (18,67,0): 64, 55, 46, (18,68,0): 63, 54, 47, (18,69,0): 62, 53, 46, (18,70,0): 61, 52, 45, (18,71,0): 61, 52, 45, (18,72,0): 61, 50, 46, (18,73,0): 60, 49, 45, (18,74,0): 59, 48, 46, (18,75,0): 59, 48, 46, (18,76,0): 59, 48, 46, (18,77,0): 59, 48, 46, (18,78,0): 60, 49, 47, (18,79,0): 63, 49, 46, (18,80,0): 68, 49, 43, (18,81,0): 71, 47, 43, (18,82,0): 74, 46, 43, (18,83,0): 76, 44, 45, (18,84,0): 79, 43, 47, (18,85,0): 78, 42, 46, (18,86,0): 74, 42, 47, (18,87,0): 71, 42, 46, (18,88,0): 68, 44, 44, (18,89,0): 65, 46, 42, (18,90,0): 66, 45, 40, (18,91,0): 70, 45, 40, (18,92,0): 79, 46, 41, (18,93,0): 89, 48, 42, (18,94,0): 99, 50, 45, (18,95,0): 105, 52, 44, (18,96,0): 107, 58, 44, (18,97,0): 111, 59, 45, (18,98,0): 119, 59, 48, (18,99,0): 129, 61, 52, (18,100,0): 135, 60, 54, (18,101,0): 140, 60, 53, (18,102,0): 141, 58, 52, (18,103,0): 141, 58, 52, (18,104,0): 138, 60, 50, (18,105,0): 135, 61, 50, (18,106,0): 134, 62, 50, (18,107,0): 133, 63, 51, (18,108,0): 134, 65, 50, (18,109,0): 137, 65, 51, (18,110,0): 140, 66, 53, (18,111,0): 143, 67, 53, (18,112,0): 142, 63, 50, (18,113,0): 143, 61, 47, (18,114,0): 140, 62, 49, (18,115,0): 138, 62, 46, (18,116,0): 135, 62, 47, (18,117,0): 133, 62, 44, (18,118,0): 134, 61, 46, (18,119,0): 134, 61, 44, (18,120,0): 137, 59, 46, (18,121,0): 137, 60, 44, (18,122,0): 136, 58, 45, (18,123,0): 134, 58, 42, (18,124,0): 132, 59, 44, (18,125,0): 128, 60, 41, (18,126,0): 126, 61, 43, (18,127,0): 122, 61, 43, (18,128,0): 124, 62, 49, (18,129,0): 120, 60, 49, (18,130,0): 117, 59, 47, (18,131,0): 116, 60, 47, (18,132,0): 118, 65, 49, (18,133,0): 118, 65, 49, (18,134,0): 117, 61, 46, (18,135,0): 118, 59, 45, (18,136,0): 127, 63, 53, (18,137,0): 132, 65, 56, (18,138,0): 138, 70, 61, (18,139,0): 140, 72, 63, (18,140,0): 138, 74, 65, (18,141,0): 137, 74, 65, (18,142,0): 136, 78, 67, (18,143,0): 140, 77, 70, (18,144,0): 147, 73, 72, (18,145,0): 153, 83, 81, (18,146,0): 151, 101, 92, (18,147,0): 146, 117, 101, (18,148,0): 138, 132, 110, (18,149,0): 131, 144, 116, (18,150,0): 129, 156, 123, (18,151,0): 130, 164, 131, (18,152,0): 134, 168, 135, (18,153,0): 138, 169, 137, (18,154,0): 143, 169, 140, (18,155,0): 145, 168, 140, (18,156,0): 144, 164, 137, (18,157,0): 138, 158, 131, (18,158,0): 130, 153, 125, (18,159,0): 122, 151, 120, (18,160,0): 107, 149, 109, (18,161,0): 97, 146, 101, (18,162,0): 92, 139, 97, (18,163,0): 92, 134, 96, (18,164,0): 93, 130, 96, (18,165,0): 91, 124, 93, (18,166,0): 85, 114, 86, (18,167,0): 80, 104, 80, (18,168,0): 70, 89, 69, (18,169,0): 66, 80, 63, (18,170,0): 58, 68, 57, (18,171,0): 51, 58, 50, (18,172,0): 46, 51, 44, (18,173,0): 42, 47, 41, (18,174,0): 40, 45, 41, (18,175,0): 43, 42, 40, (18,176,0): 50, 38, 40, (18,177,0): 53, 36, 42, (18,178,0): 53, 36, 42, (18,179,0): 53, 36, 42, (18,180,0): 52, 37, 42, (18,181,0): 53, 38, 43, (18,182,0): 51, 40, 46, (18,183,0): 51, 42, 47, (18,184,0): 48, 42, 46, (18,185,0): 47, 42, 46, (18,186,0): 44, 43, 48, (18,187,0): 43, 44, 48, (18,188,0): 41, 45, 48, (18,189,0): 40, 45, 49, (18,190,0): 38, 46, 49, (18,191,0): 40, 45, 48, (18,192,0): 49, 47, 50, (18,193,0): 51, 47, 46, (18,194,0): 46, 42, 39, (18,195,0): 42, 42, 34, (18,196,0): 53, 55, 42, (18,197,0): 80, 85, 65, (18,198,0): 109, 118, 91, (18,199,0): 124, 138, 105, (18,200,0): 128, 144, 107, (18,201,0): 126, 147, 106, (18,202,0): 127, 153, 106, (18,203,0): 131, 159, 110, (18,204,0): 128, 160, 110, (18,205,0): 126, 160, 109, (18,206,0): 128, 165, 113, (18,207,0): 135, 172, 120, (18,208,0): 141, 175, 124, (18,209,0): 139, 173, 122, (18,210,0): 136, 170, 120, (18,211,0): 132, 169, 118, (18,212,0): 129, 167, 118, (18,213,0): 127, 167, 117, (18,214,0): 127, 166, 119, (18,215,0): 127, 166, 121, (18,216,0): 127, 164, 121, (18,217,0): 128, 162, 125, (18,218,0): 125, 155, 121, (18,219,0): 119, 145, 116, (18,220,0): 112, 135, 109, (18,221,0): 104, 124, 99, (18,222,0): 89, 107, 85, (18,223,0): 77, 90, 70, (18,224,0): 69, 73, 58, (18,225,0): 62, 64, 50, (18,226,0): 57, 58, 44, (19,0,0): 50, 51, 45, (19,1,0): 50, 51, 45, (19,2,0): 51, 52, 46, (19,3,0): 51, 52, 46, (19,4,0): 51, 52, 46, (19,5,0): 52, 53, 47, (19,6,0): 53, 52, 47, (19,7,0): 53, 52, 47, (19,8,0): 54, 53, 48, (19,9,0): 55, 54, 49, (19,10,0): 57, 54, 49, (19,11,0): 58, 55, 50, (19,12,0): 58, 55, 50, (19,13,0): 57, 54, 49, (19,14,0): 57, 52, 48, (19,15,0): 57, 52, 48, (19,16,0): 58, 50, 47, (19,17,0): 57, 49, 46, (19,18,0): 57, 49, 46, (19,19,0): 56, 48, 45, (19,20,0): 53, 48, 45, (19,21,0): 52, 47, 44, (19,22,0): 52, 46, 46, (19,23,0): 52, 46, 46, (19,24,0): 51, 47, 48, (19,25,0): 51, 47, 48, (19,26,0): 49, 47, 48, (19,27,0): 49, 47, 50, (19,28,0): 48, 46, 49, (19,29,0): 46, 46, 48, (19,30,0): 45, 45, 47, (19,31,0): 45, 43, 46, (19,32,0): 48, 41, 48, (19,33,0): 50, 41, 46, (19,34,0): 48, 42, 46, (19,35,0): 48, 42, 46, (19,36,0): 48, 42, 46, (19,37,0): 48, 42, 44, (19,38,0): 47, 43, 44, (19,39,0): 47, 43, 42, (19,40,0): 49, 45, 44, (19,41,0): 49, 45, 44, (19,42,0): 48, 47, 43, (19,43,0): 48, 47, 43, (19,44,0): 49, 48, 43, (19,45,0): 49, 48, 43, (19,46,0): 49, 48, 43, (19,47,0): 49, 48, 44, (19,48,0): 49, 49, 47, (19,49,0): 49, 49, 49, (19,50,0): 49, 47, 48, (19,51,0): 49, 48, 46, (19,52,0): 49, 48, 46, (19,53,0): 50, 46, 43, (19,54,0): 51, 46, 43, (19,55,0): 51, 46, 42, (19,56,0): 57, 50, 44, (19,57,0): 57, 50, 44, (19,58,0): 59, 50, 43, (19,59,0): 60, 51, 44, (19,60,0): 62, 52, 43, (19,61,0): 64, 54, 45, (19,62,0): 64, 54, 45, (19,63,0): 65, 55, 46, (19,64,0): 66, 56, 47, (19,65,0): 65, 56, 47, (19,66,0): 66, 57, 48, (19,67,0): 65, 56, 47, (19,68,0): 65, 56, 49, (19,69,0): 64, 55, 48, (19,70,0): 62, 53, 46, (19,71,0): 62, 53, 46, (19,72,0): 61, 50, 46, (19,73,0): 61, 50, 46, (19,74,0): 60, 49, 47, (19,75,0): 59, 48, 46, (19,76,0): 59, 48, 46, (19,77,0): 60, 49, 47, (19,78,0): 61, 50, 48, (19,79,0): 63, 49, 46, (19,80,0): 66, 51, 46, (19,81,0): 70, 49, 46, (19,82,0): 77, 45, 46, (19,83,0): 84, 41, 48, (19,84,0): 88, 38, 47, (19,85,0): 87, 37, 46, (19,86,0): 81, 38, 47, (19,87,0): 75, 40, 46, (19,88,0): 68, 47, 46, (19,89,0): 62, 49, 43, (19,90,0): 60, 50, 41, (19,91,0): 64, 50, 41, (19,92,0): 72, 47, 40, (19,93,0): 84, 47, 41, (19,94,0): 96, 45, 42, (19,95,0): 101, 46, 41, (19,96,0): 105, 57, 47, (19,97,0): 107, 59, 47, (19,98,0): 117, 60, 51, (19,99,0): 125, 60, 54, (19,100,0): 133, 59, 56, (19,101,0): 137, 59, 57, (19,102,0): 138, 59, 55, (19,103,0): 136, 58, 54, (19,104,0): 137, 62, 56, (19,105,0): 134, 64, 56, (19,106,0): 134, 66, 57, (19,107,0): 133, 66, 57, (19,108,0): 133, 67, 55, (19,109,0): 134, 66, 55, (19,110,0): 135, 65, 55, (19,111,0): 137, 65, 53, (19,112,0): 137, 64, 49, (19,113,0): 137, 64, 47, (19,114,0): 136, 63, 46, (19,115,0): 136, 63, 46, (19,116,0): 135, 62, 45, (19,117,0): 136, 60, 44, (19,118,0): 136, 59, 43, (19,119,0): 137, 58, 43, (19,120,0): 138, 56, 42, (19,121,0): 138, 56, 42, (19,122,0): 136, 57, 42, (19,123,0): 133, 57, 41, (19,124,0): 130, 59, 41, (19,125,0): 125, 60, 40, (19,126,0): 122, 61, 40, (19,127,0): 120, 62, 42, (19,128,0): 127, 64, 49, (19,129,0): 122, 55, 46, (19,130,0): 120, 56, 46, (19,131,0): 120, 60, 49, (19,132,0): 117, 59, 45, (19,133,0): 118, 62, 47, (19,134,0): 123, 65, 51, (19,135,0): 123, 64, 50, (19,136,0): 128, 66, 55, (19,137,0): 132, 68, 58, (19,138,0): 135, 71, 61, (19,139,0): 137, 73, 63, (19,140,0): 136, 73, 64, (19,141,0): 138, 75, 66, (19,142,0): 138, 78, 68, (19,143,0): 140, 80, 72, (19,144,0): 144, 81, 74, (19,145,0): 147, 90, 81, (19,146,0): 148, 101, 91, (19,147,0): 143, 114, 98, (19,148,0): 137, 125, 103, (19,149,0): 132, 136, 109, (19,150,0): 131, 147, 118, (19,151,0): 131, 156, 124, (19,152,0): 135, 165, 131, (19,153,0): 136, 167, 135, (19,154,0): 139, 168, 137, (19,155,0): 143, 168, 138, (19,156,0): 143, 163, 135, (19,157,0): 139, 158, 130, (19,158,0): 136, 152, 126, (19,159,0): 127, 150, 121, (19,160,0): 114, 148, 111, (19,161,0): 108, 146, 105, (19,162,0): 104, 142, 103, (19,163,0): 102, 140, 101, (19,164,0): 103, 139, 103, (19,165,0): 100, 134, 101, (19,166,0): 96, 125, 95, (19,167,0): 92, 118, 91, (19,168,0): 81, 103, 80, (19,169,0): 76, 93, 74, (19,170,0): 66, 80, 63, (19,171,0): 57, 68, 54, (19,172,0): 50, 58, 47, (19,173,0): 46, 52, 42, (19,174,0): 44, 47, 40, (19,175,0): 45, 42, 37, (19,176,0): 53, 37, 38, (19,177,0): 56, 35, 40, (19,178,0): 56, 35, 40, (19,179,0): 55, 36, 40, (19,180,0): 52, 37, 40, (19,181,0): 51, 39, 43, (19,182,0): 50, 41, 44, (19,183,0): 48, 44, 45, (19,184,0): 44, 42, 43, (19,185,0): 43, 43, 45, (19,186,0): 42, 43, 45, (19,187,0): 40, 44, 45, (19,188,0): 39, 44, 47, (19,189,0): 39, 44, 47, (19,190,0): 37, 45, 47, (19,191,0): 40, 44, 45, (19,192,0): 46, 42, 43, (19,193,0): 49, 43, 43, (19,194,0): 48, 43, 39, (19,195,0): 46, 43, 34, (19,196,0): 56, 56, 44, (19,197,0): 80, 85, 65, (19,198,0): 105, 113, 89, (19,199,0): 118, 132, 99, (19,200,0): 123, 140, 104, (19,201,0): 121, 143, 104, (19,202,0): 124, 150, 105, (19,203,0): 127, 156, 108, (19,204,0): 125, 159, 109, (19,205,0): 121, 158, 107, (19,206,0): 122, 160, 109, (19,207,0): 127, 165, 114, (19,208,0): 130, 167, 116, (19,209,0): 128, 165, 113, (19,210,0): 125, 163, 112, (19,211,0): 125, 163, 112, (19,212,0): 125, 165, 115, (19,213,0): 126, 165, 118, (19,214,0): 126, 165, 120, (19,215,0): 125, 164, 120, (19,216,0): 124, 161, 120, (19,217,0): 125, 159, 122, (19,218,0): 122, 153, 119, (19,219,0): 117, 144, 113, (19,220,0): 110, 135, 106, (19,221,0): 101, 124, 98, (19,222,0): 87, 107, 82, (19,223,0): 78, 91, 71, (19,224,0): 69, 71, 57, (19,225,0): 63, 61, 48, (19,226,0): 57, 55, 42, (20,0,0): 52, 53, 47, (20,1,0): 52, 53, 47, (20,2,0): 52, 53, 47, (20,3,0): 53, 54, 48, (20,4,0): 53, 54, 48, (20,5,0): 53, 54, 48, (20,6,0): 55, 54, 49, (20,7,0): 55, 54, 49, (20,8,0): 56, 55, 50, (20,9,0): 56, 55, 50, (20,10,0): 59, 56, 51, (20,11,0): 60, 57, 52, (20,12,0): 60, 57, 52, (20,13,0): 60, 57, 52, (20,14,0): 60, 55, 51, (20,15,0): 60, 55, 51, (20,16,0): 60, 52, 49, (20,17,0): 60, 52, 49, (20,18,0): 59, 51, 48, (20,19,0): 59, 51, 48, (20,20,0): 56, 51, 48, (20,21,0): 55, 50, 47, (20,22,0): 54, 49, 46, (20,23,0): 54, 49, 46, (20,24,0): 53, 49, 48, (20,25,0): 54, 50, 49, (20,26,0): 54, 50, 49, (20,27,0): 51, 49, 50, (20,28,0): 50, 48, 49, (20,29,0): 49, 47, 48, (20,30,0): 48, 46, 47, (20,31,0): 49, 45, 46, (20,32,0): 50, 44, 48, (20,33,0): 52, 43, 46, (20,34,0): 52, 43, 46, (20,35,0): 52, 43, 46, (20,36,0): 50, 44, 46, (20,37,0): 50, 44, 44, (20,38,0): 50, 44, 44, (20,39,0): 50, 44, 44, (20,40,0): 51, 47, 46, (20,41,0): 51, 47, 44, (20,42,0): 51, 47, 44, (20,43,0): 51, 47, 44, (20,44,0): 50, 49, 44, (20,45,0): 50, 49, 44, (20,46,0): 51, 50, 45, (20,47,0): 51, 50, 46, (20,48,0): 51, 50, 48, (20,49,0): 51, 50, 48, (20,50,0): 51, 50, 48, (20,51,0): 51, 50, 48, (20,52,0): 53, 49, 48, (20,53,0): 53, 49, 46, (20,54,0): 54, 49, 46, (20,55,0): 54, 49, 45, (20,56,0): 59, 52, 46, (20,57,0): 60, 53, 47, (20,58,0): 61, 52, 45, (20,59,0): 63, 54, 45, (20,60,0): 65, 55, 46, (20,61,0): 66, 56, 47, (20,62,0): 69, 56, 47, (20,63,0): 67, 57, 47, (20,64,0): 68, 58, 49, (20,65,0): 68, 58, 49, (20,66,0): 69, 59, 50, (20,67,0): 68, 58, 49, (20,68,0): 67, 57, 48, (20,69,0): 66, 56, 47, (20,70,0): 64, 53, 47, (20,71,0): 64, 53, 47, (20,72,0): 62, 51, 47, (20,73,0): 62, 51, 47, (20,74,0): 61, 50, 46, (20,75,0): 61, 50, 46, (20,76,0): 61, 50, 48, (20,77,0): 61, 50, 48, (20,78,0): 62, 51, 49, (20,79,0): 62, 51, 49, (20,80,0): 66, 52, 49, (20,81,0): 70, 50, 49, (20,82,0): 78, 48, 50, (20,83,0): 85, 44, 52, (20,84,0): 90, 40, 51, (20,85,0): 89, 39, 50, (20,86,0): 83, 40, 49, (20,87,0): 76, 44, 49, (20,88,0): 68, 50, 48, (20,89,0): 60, 53, 45, (20,90,0): 57, 55, 43, (20,91,0): 60, 54, 42, (20,92,0): 68, 51, 41, (20,93,0): 78, 49, 41, (20,94,0): 90, 47, 41, (20,95,0): 94, 47, 41, (20,96,0): 102, 58, 49, (20,97,0): 106, 59, 51, (20,98,0): 115, 60, 55, (20,99,0): 122, 61, 58, (20,100,0): 130, 60, 58, (20,101,0): 134, 60, 59, (20,102,0): 135, 59, 59, (20,103,0): 134, 58, 58, (20,104,0): 130, 59, 55, (20,105,0): 129, 62, 56, (20,106,0): 129, 65, 56, (20,107,0): 129, 66, 57, (20,108,0): 131, 67, 58, (20,109,0): 131, 67, 58, (20,110,0): 133, 64, 57, (20,111,0): 132, 64, 55, (20,112,0): 132, 66, 50, (20,113,0): 132, 67, 49, (20,114,0): 133, 64, 48, (20,115,0): 134, 62, 47, (20,116,0): 136, 60, 46, (20,117,0): 137, 59, 46, (20,118,0): 139, 57, 45, (20,119,0): 140, 56, 45, (20,120,0): 138, 54, 43, (20,121,0): 137, 55, 43, (20,122,0): 135, 56, 43, (20,123,0): 131, 58, 43, (20,124,0): 127, 60, 43, (20,125,0): 122, 61, 42, (20,126,0): 119, 62, 42, (20,127,0): 120, 62, 42, (20,128,0): 127, 57, 45, (20,129,0): 122, 48, 39, (20,130,0): 129, 56, 47, (20,131,0): 131, 63, 52, (20,132,0): 117, 53, 43, (20,133,0): 113, 53, 42, (20,134,0): 124, 66, 54, (20,135,0): 125, 67, 55, (20,136,0): 127, 69, 58, (20,137,0): 129, 71, 60, (20,138,0): 131, 73, 62, (20,139,0): 132, 74, 63, (20,140,0): 133, 74, 66, (20,141,0): 135, 76, 68, (20,142,0): 138, 79, 71, (20,143,0): 137, 85, 74, (20,144,0): 130, 94, 78, (20,145,0): 129, 102, 81, (20,146,0): 134, 109, 89, (20,147,0): 135, 114, 93, (20,148,0): 136, 121, 98, (20,149,0): 137, 131, 105, (20,150,0): 141, 144, 117, (20,151,0): 141, 154, 124, (20,152,0): 138, 159, 126, (20,153,0): 136, 163, 130, (20,154,0): 136, 167, 133, (20,155,0): 137, 168, 134, (20,156,0): 135, 166, 132, (20,157,0): 132, 162, 128, (20,158,0): 129, 156, 125, (20,159,0): 127, 151, 119, (20,160,0): 125, 144, 112, (20,161,0): 125, 142, 108, (20,162,0): 123, 140, 108, (20,163,0): 120, 139, 107, (20,164,0): 120, 139, 109, (20,165,0): 117, 136, 108, (20,166,0): 112, 131, 103, (20,167,0): 108, 126, 100, (20,168,0): 99, 113, 88, (20,169,0): 92, 104, 82, (20,170,0): 83, 90, 72, (20,171,0): 73, 75, 61, (20,172,0): 66, 64, 52, (20,173,0): 61, 54, 44, (20,174,0): 57, 47, 38, (20,175,0): 55, 42, 36, (20,176,0): 57, 39, 39, (20,177,0): 57, 37, 39, (20,178,0): 54, 38, 39, (20,179,0): 52, 38, 38, (20,180,0): 49, 39, 38, (20,181,0): 46, 40, 40, (20,182,0): 44, 43, 41, (20,183,0): 44, 44, 42, (20,184,0): 41, 43, 40, (20,185,0): 41, 43, 42, (20,186,0): 41, 43, 42, (20,187,0): 41, 43, 42, (20,188,0): 42, 42, 44, (20,189,0): 42, 42, 44, (20,190,0): 43, 41, 44, (20,191,0): 45, 41, 42, (20,192,0): 44, 35, 36, (20,193,0): 50, 42, 39, (20,194,0): 53, 48, 42, (20,195,0): 56, 54, 42, (20,196,0): 66, 67, 53, (20,197,0): 85, 90, 70, (20,198,0): 102, 112, 87, (20,199,0): 110, 125, 94, (20,200,0): 116, 136, 101, (20,201,0): 113, 138, 98, (20,202,0): 117, 144, 101, (20,203,0): 120, 152, 105, (20,204,0): 119, 155, 107, (20,205,0): 115, 153, 104, (20,206,0): 116, 154, 105, (20,207,0): 119, 159, 107, (20,208,0): 122, 162, 110, (20,209,0): 120, 160, 108, (20,210,0): 119, 159, 109, (20,211,0): 120, 160, 110, (20,212,0): 121, 163, 115, (20,213,0): 123, 165, 117, (20,214,0): 123, 165, 119, (20,215,0): 124, 163, 119, (20,216,0): 121, 158, 117, (20,217,0): 122, 156, 119, (20,218,0): 119, 150, 116, (20,219,0): 115, 142, 111, (20,220,0): 109, 134, 104, (20,221,0): 100, 123, 95, (20,222,0): 87, 107, 80, (20,223,0): 78, 92, 69, (20,224,0): 68, 69, 55, (20,225,0): 62, 58, 47, (20,226,0): 56, 52, 41, (21,0,0): 53, 54, 48, (21,1,0): 53, 54, 48, (21,2,0): 54, 55, 49, (21,3,0): 54, 55, 49, (21,4,0): 55, 56, 50, (21,5,0): 55, 56, 50, (21,6,0): 56, 55, 50, (21,7,0): 56, 55, 50, (21,8,0): 57, 56, 51, (21,9,0): 58, 57, 52, (21,10,0): 61, 58, 53, (21,11,0): 62, 59, 54, (21,12,0): 62, 59, 54, (21,13,0): 62, 59, 54, (21,14,0): 62, 57, 53, (21,15,0): 62, 57, 53, (21,16,0): 63, 55, 52, (21,17,0): 63, 55, 52, (21,18,0): 62, 54, 51, (21,19,0): 61, 53, 50, (21,20,0): 59, 54, 51, (21,21,0): 58, 53, 50, (21,22,0): 57, 52, 49, (21,23,0): 57, 52, 49, (21,24,0): 56, 52, 49, (21,25,0): 56, 52, 51, (21,26,0): 57, 53, 52, (21,27,0): 56, 52, 51, (21,28,0): 55, 51, 50, (21,29,0): 52, 51, 49, (21,30,0): 53, 49, 50, (21,31,0): 52, 48, 47, (21,32,0): 54, 45, 48, (21,33,0): 54, 45, 46, (21,34,0): 54, 45, 48, (21,35,0): 54, 45, 46, (21,36,0): 52, 46, 46, (21,37,0): 52, 46, 46, (21,38,0): 52, 46, 46, (21,39,0): 52, 47, 44, (21,40,0): 52, 48, 45, (21,41,0): 52, 48, 45, (21,42,0): 52, 48, 45, (21,43,0): 53, 49, 46, (21,44,0): 51, 50, 45, (21,45,0): 51, 50, 45, (21,46,0): 52, 51, 46, (21,47,0): 52, 51, 46, (21,48,0): 52, 51, 47, (21,49,0): 52, 51, 49, (21,50,0): 53, 52, 50, (21,51,0): 53, 52, 48, (21,52,0): 56, 52, 49, (21,53,0): 56, 53, 48, (21,54,0): 57, 52, 48, (21,55,0): 58, 53, 47, (21,56,0): 61, 54, 48, (21,57,0): 62, 55, 47, (21,58,0): 64, 55, 46, (21,59,0): 65, 56, 47, (21,60,0): 67, 57, 48, (21,61,0): 68, 58, 48, (21,62,0): 71, 58, 49, (21,63,0): 72, 59, 50, (21,64,0): 70, 60, 51, (21,65,0): 70, 60, 51, (21,66,0): 70, 60, 51, (21,67,0): 70, 60, 51, (21,68,0): 69, 59, 50, (21,69,0): 67, 57, 48, (21,70,0): 66, 55, 49, (21,71,0): 65, 54, 48, (21,72,0): 64, 53, 49, (21,73,0): 64, 53, 49, (21,74,0): 63, 52, 48, (21,75,0): 62, 51, 47, (21,76,0): 62, 51, 49, (21,77,0): 63, 52, 50, (21,78,0): 64, 53, 51, (21,79,0): 64, 53, 51, (21,80,0): 65, 54, 50, (21,81,0): 68, 53, 50, (21,82,0): 75, 50, 53, (21,83,0): 81, 49, 54, (21,84,0): 86, 46, 54, (21,85,0): 85, 45, 53, (21,86,0): 82, 47, 53, (21,87,0): 75, 49, 50, (21,88,0): 68, 53, 50, (21,89,0): 63, 56, 48, (21,90,0): 61, 57, 45, (21,91,0): 63, 57, 43, (21,92,0): 67, 55, 41, (21,93,0): 73, 54, 40, (21,94,0): 83, 50, 41, (21,95,0): 88, 50, 41, (21,96,0): 93, 50, 43, (21,97,0): 100, 51, 44, (21,98,0): 108, 53, 48, (21,99,0): 118, 54, 52, (21,100,0): 125, 55, 55, (21,101,0): 130, 56, 55, (21,102,0): 131, 55, 55, (21,103,0): 130, 54, 54, (21,104,0): 126, 55, 53, (21,105,0): 125, 58, 52, (21,106,0): 125, 60, 54, (21,107,0): 125, 62, 53, (21,108,0): 128, 63, 57, (21,109,0): 131, 64, 56, (21,110,0): 134, 63, 57, (21,111,0): 133, 65, 56, (21,112,0): 131, 65, 51, (21,113,0): 131, 65, 49, (21,114,0): 132, 65, 49, (21,115,0): 132, 63, 48, (21,116,0): 136, 60, 47, (21,117,0): 136, 58, 46, (21,118,0): 137, 57, 46, (21,119,0): 138, 56, 45, (21,120,0): 135, 55, 44, (21,121,0): 134, 56, 44, (21,122,0): 131, 57, 44, (21,123,0): 128, 59, 44, (21,124,0): 126, 60, 44, (21,125,0): 124, 61, 44, (21,126,0): 121, 62, 44, (21,127,0): 126, 60, 44, (21,128,0): 133, 53, 42, (21,129,0): 138, 51, 44, (21,130,0): 160, 77, 69, (21,131,0): 166, 89, 81, (21,132,0): 138, 65, 56, (21,133,0): 124, 57, 48, (21,134,0): 130, 70, 59, (21,135,0): 128, 75, 61, (21,136,0): 123, 71, 58, (21,137,0): 122, 74, 60, (21,138,0): 124, 76, 62, (21,139,0): 125, 77, 63, (21,140,0): 127, 77, 66, (21,141,0): 130, 80, 69, (21,142,0): 137, 85, 74, (21,143,0): 134, 92, 76, (21,144,0): 119, 105, 79, (21,145,0): 117, 112, 82, (21,146,0): 130, 114, 88, (21,147,0): 141, 117, 93, (21,148,0): 150, 117, 98, (21,149,0): 159, 124, 105, (21,150,0): 166, 135, 115, (21,151,0): 167, 145, 122, (21,152,0): 157, 147, 122, (21,153,0): 150, 153, 124, (21,154,0): 146, 160, 127, (21,155,0): 143, 165, 129, (21,156,0): 139, 165, 130, (21,157,0): 134, 161, 126, (21,158,0): 130, 156, 121, (21,159,0): 131, 150, 118, (21,160,0): 134, 143, 112, (21,161,0): 136, 141, 111, (21,162,0): 134, 140, 112, (21,163,0): 131, 142, 112, (21,164,0): 129, 142, 112, (21,165,0): 126, 141, 112, (21,166,0): 122, 138, 109, (21,167,0): 118, 134, 107, (21,168,0): 109, 125, 98, (21,169,0): 104, 116, 92, (21,170,0): 96, 104, 83, (21,171,0): 87, 90, 71, (21,172,0): 80, 77, 62, (21,173,0): 72, 64, 51, (21,174,0): 66, 54, 42, (21,175,0): 64, 47, 39, (21,176,0): 61, 43, 39, (21,177,0): 60, 42, 40, (21,178,0): 56, 42, 39, (21,179,0): 53, 42, 40, (21,180,0): 50, 42, 39, (21,181,0): 47, 44, 39, (21,182,0): 44, 45, 39, (21,183,0): 43, 45, 40, (21,184,0): 43, 45, 40, (21,185,0): 44, 45, 40, (21,186,0): 45, 44, 42, (21,187,0): 47, 43, 42, (21,188,0): 51, 41, 42, (21,189,0): 52, 40, 42, (21,190,0): 54, 39, 42, (21,191,0): 54, 40, 40, (21,192,0): 51, 40, 36, (21,193,0): 60, 51, 44, (21,194,0): 69, 62, 52, (21,195,0): 73, 71, 56, (21,196,0): 81, 82, 64, (21,197,0): 93, 98, 75, (21,198,0): 103, 113, 86, (21,199,0): 106, 121, 90, (21,200,0): 110, 130, 93, (21,201,0): 107, 132, 92, (21,202,0): 108, 137, 93, (21,203,0): 112, 145, 98, (21,204,0): 113, 149, 101, (21,205,0): 111, 149, 100, (21,206,0): 111, 151, 101, (21,207,0): 114, 154, 102, (21,208,0): 117, 159, 109, (21,209,0): 114, 156, 106, (21,210,0): 113, 155, 105, (21,211,0): 116, 158, 110, (21,212,0): 120, 162, 114, (21,213,0): 122, 164, 118, (21,214,0): 121, 162, 118, (21,215,0): 121, 159, 118, (21,216,0): 118, 154, 116, (21,217,0): 119, 153, 118, (21,218,0): 117, 148, 114, (21,219,0): 111, 141, 107, (21,220,0): 106, 133, 102, (21,221,0): 99, 124, 94, (21,222,0): 85, 108, 79, (21,223,0): 78, 92, 69, (21,224,0): 67, 68, 54, (21,225,0): 64, 57, 47, (21,226,0): 58, 51, 41, (22,0,0): 54, 55, 49, (22,1,0): 55, 56, 50, (22,2,0): 55, 56, 50, (22,3,0): 55, 56, 50, (22,4,0): 56, 57, 51, (22,5,0): 56, 57, 51, (22,6,0): 57, 56, 51, (22,7,0): 58, 57, 52, (22,8,0): 58, 57, 52, (22,9,0): 59, 58, 53, (22,10,0): 62, 59, 54, (22,11,0): 63, 60, 55, (22,12,0): 63, 60, 55, (22,13,0): 63, 60, 55, (22,14,0): 64, 59, 55, (22,15,0): 64, 59, 55, (22,16,0): 66, 58, 55, (22,17,0): 66, 58, 55, (22,18,0): 65, 57, 54, (22,19,0): 64, 56, 53, (22,20,0): 61, 56, 52, (22,21,0): 61, 56, 52, (22,22,0): 60, 55, 51, (22,23,0): 60, 55, 51, (22,24,0): 60, 55, 51, (22,25,0): 60, 55, 52, (22,26,0): 60, 55, 52, (22,27,0): 60, 55, 52, (22,28,0): 59, 54, 51, (22,29,0): 57, 53, 50, (22,30,0): 57, 51, 51, (22,31,0): 56, 51, 48, (22,32,0): 56, 47, 48, (22,33,0): 57, 47, 46, (22,34,0): 56, 47, 48, (22,35,0): 56, 48, 46, (22,36,0): 56, 48, 46, (22,37,0): 56, 48, 46, (22,38,0): 54, 49, 46, (22,39,0): 54, 49, 45, (22,40,0): 54, 49, 45, (22,41,0): 54, 49, 45, (22,42,0): 53, 50, 45, (22,43,0): 53, 50, 45, (22,44,0): 54, 51, 46, (22,45,0): 54, 51, 46, (22,46,0): 55, 52, 47, (22,47,0): 55, 52, 47, (22,48,0): 53, 52, 48, (22,49,0): 53, 52, 48, (22,50,0): 56, 52, 49, (22,51,0): 57, 53, 50, (22,52,0): 58, 54, 51, (22,53,0): 60, 57, 52, (22,54,0): 61, 56, 52, (22,55,0): 64, 57, 51, (22,56,0): 64, 55, 48, (22,57,0): 65, 56, 47, (22,58,0): 67, 57, 48, (22,59,0): 68, 58, 48, (22,60,0): 71, 58, 49, (22,61,0): 72, 60, 48, (22,62,0): 73, 61, 49, (22,63,0): 73, 61, 49, (22,64,0): 74, 61, 52, (22,65,0): 74, 61, 52, (22,66,0): 74, 61, 52, (22,67,0): 73, 60, 51, (22,68,0): 70, 60, 51, (22,69,0): 68, 58, 49, (22,70,0): 66, 56, 47, (22,71,0): 65, 55, 46, (22,72,0): 65, 56, 49, (22,73,0): 64, 55, 48, (22,74,0): 64, 55, 50, (22,75,0): 63, 54, 49, (22,76,0): 63, 54, 49, (22,77,0): 64, 55, 50, (22,78,0): 64, 55, 50, (22,79,0): 65, 56, 51, (22,80,0): 64, 54, 52, (22,81,0): 65, 55, 53, (22,82,0): 67, 56, 54, (22,83,0): 70, 56, 55, (22,84,0): 72, 57, 54, (22,85,0): 74, 56, 54, (22,86,0): 74, 56, 54, (22,87,0): 72, 57, 52, (22,88,0): 69, 56, 48, (22,89,0): 69, 56, 47, (22,90,0): 69, 57, 45, (22,91,0): 70, 56, 43, (22,92,0): 73, 57, 44, (22,93,0): 73, 57, 42, (22,94,0): 76, 57, 43, (22,95,0): 82, 54, 42, (22,96,0): 90, 47, 38, (22,97,0): 100, 47, 39, (22,98,0): 110, 51, 45, (22,99,0): 122, 54, 51, (22,100,0): 131, 57, 56, (22,101,0): 137, 59, 57, (22,102,0): 139, 59, 58, (22,103,0): 139, 61, 59, (22,104,0): 139, 65, 62, (22,105,0): 135, 64, 58, (22,106,0): 130, 61, 54, (22,107,0): 127, 60, 51, (22,108,0): 127, 58, 51, (22,109,0): 130, 60, 52, (22,110,0): 136, 61, 55, (22,111,0): 138, 64, 55, (22,112,0): 133, 63, 53, (22,113,0): 132, 64, 51, (22,114,0): 132, 62, 50, (22,115,0): 134, 62, 50, (22,116,0): 134, 60, 49, (22,117,0): 133, 59, 48, (22,118,0): 132, 58, 47, (22,119,0): 131, 59, 47, (22,120,0): 128, 58, 46, (22,121,0): 127, 59, 46, (22,122,0): 126, 60, 46, (22,123,0): 127, 61, 47, (22,124,0): 127, 61, 47, (22,125,0): 128, 60, 47, (22,126,0): 129, 59, 47, (22,127,0): 135, 57, 47, (22,128,0): 144, 49, 43, (22,129,0): 160, 61, 56, (22,130,0): 203, 108, 102, (22,131,0): 216, 127, 121, (22,132,0): 171, 91, 84, (22,133,0): 138, 68, 60, (22,134,0): 136, 76, 65, (22,135,0): 127, 78, 64, (22,136,0): 117, 73, 60, (22,137,0): 114, 77, 61, (22,138,0): 113, 80, 63, (22,139,0): 114, 81, 64, (22,140,0): 118, 83, 64, (22,141,0): 124, 85, 68, (22,142,0): 132, 90, 74, (22,143,0): 128, 100, 79, (22,144,0): 113, 113, 79, (22,145,0): 116, 120, 85, (22,146,0): 138, 118, 91, (22,147,0): 156, 115, 95, (22,148,0): 173, 109, 99, (22,149,0): 186, 107, 102, (22,150,0): 194, 111, 107, (22,151,0): 195, 116, 111, (22,152,0): 191, 128, 119, (22,153,0): 183, 137, 122, (22,154,0): 173, 148, 126, (22,155,0): 163, 156, 128, (22,156,0): 154, 159, 129, (22,157,0): 145, 159, 126, (22,158,0): 139, 154, 121, (22,159,0): 137, 151, 118, (22,160,0): 140, 143, 114, (22,161,0): 142, 142, 114, (22,162,0): 139, 144, 114, (22,163,0): 135, 146, 114, (22,164,0): 132, 147, 114, (22,165,0): 128, 147, 115, (22,166,0): 122, 146, 112, (22,167,0): 119, 144, 112, (22,168,0): 112, 137, 105, (22,169,0): 107, 130, 101, (22,170,0): 103, 119, 92, (22,171,0): 94, 107, 81, (22,172,0): 88, 93, 71, (22,173,0): 80, 79, 59, (22,174,0): 72, 67, 48, (22,175,0): 67, 58, 43, (22,176,0): 65, 50, 43, (22,177,0): 64, 49, 44, (22,178,0): 59, 48, 42, (22,179,0): 56, 47, 42, (22,180,0): 52, 47, 41, (22,181,0): 50, 47, 40, (22,182,0): 46, 47, 39, (22,183,0): 46, 47, 41, (22,184,0): 48, 47, 42, (22,185,0): 51, 46, 42, (22,186,0): 54, 44, 43, (22,187,0): 58, 42, 43, (22,188,0): 62, 40, 43, (22,189,0): 65, 38, 43, (22,190,0): 69, 36, 43, (22,191,0): 67, 38, 40, (22,192,0): 70, 53, 45, (22,193,0): 76, 67, 52, (22,194,0): 86, 81, 62, (22,195,0): 91, 89, 68, (22,196,0): 96, 98, 74, (22,197,0): 103, 109, 81, (22,198,0): 105, 119, 86, (22,199,0): 106, 123, 87, (22,200,0): 108, 130, 91, (22,201,0): 103, 130, 87, (22,202,0): 102, 134, 87, (22,203,0): 108, 142, 92, (22,204,0): 111, 148, 97, (22,205,0): 110, 148, 97, (22,206,0): 110, 150, 98, (22,207,0): 114, 154, 102, (22,208,0): 115, 157, 107, (22,209,0): 111, 155, 106, (22,210,0): 111, 153, 105, (22,211,0): 114, 156, 110, (22,212,0): 119, 160, 116, (22,213,0): 121, 162, 120, (22,214,0): 120, 158, 119, (22,215,0): 117, 155, 118, (22,216,0): 115, 151, 115, (22,217,0): 117, 151, 118, (22,218,0): 115, 146, 114, (22,219,0): 110, 139, 108, (22,220,0): 105, 132, 99, (22,221,0): 98, 123, 91, (22,222,0): 84, 109, 77, (22,223,0): 77, 93, 67, (22,224,0): 72, 73, 59, (22,225,0): 69, 60, 51, (22,226,0): 63, 54, 45, (23,0,0): 55, 56, 50, (23,1,0): 55, 56, 50, (23,2,0): 56, 57, 51, (23,3,0): 56, 57, 51, (23,4,0): 56, 57, 51, (23,5,0): 57, 58, 52, (23,6,0): 58, 57, 52, (23,7,0): 58, 57, 52, (23,8,0): 59, 58, 53, (23,9,0): 60, 59, 54, (23,10,0): 63, 60, 55, (23,11,0): 64, 61, 56, (23,12,0): 64, 61, 56, (23,13,0): 64, 61, 56, (23,14,0): 65, 60, 56, (23,15,0): 65, 60, 56, (23,16,0): 67, 59, 56, (23,17,0): 67, 59, 56, (23,18,0): 67, 59, 56, (23,19,0): 66, 58, 55, (23,20,0): 63, 58, 54, (23,21,0): 62, 57, 53, (23,22,0): 62, 57, 53, (23,23,0): 61, 56, 52, (23,24,0): 62, 57, 53, (23,25,0): 62, 57, 53, (23,26,0): 62, 57, 53, (23,27,0): 62, 57, 53, (23,28,0): 61, 56, 53, (23,29,0): 60, 55, 51, (23,30,0): 58, 53, 49, (23,31,0): 59, 51, 48, (23,32,0): 58, 48, 46, (23,33,0): 58, 48, 46, (23,34,0): 57, 49, 46, (23,35,0): 57, 49, 46, (23,36,0): 57, 49, 47, (23,37,0): 57, 49, 46, (23,38,0): 57, 49, 46, (23,39,0): 55, 50, 46, (23,40,0): 54, 49, 45, (23,41,0): 54, 49, 45, (23,42,0): 54, 51, 46, (23,43,0): 54, 51, 46, (23,44,0): 54, 51, 46, (23,45,0): 55, 52, 47, (23,46,0): 55, 52, 47, (23,47,0): 55, 52, 47, (23,48,0): 53, 52, 48, (23,49,0): 54, 53, 49, (23,50,0): 57, 53, 50, (23,51,0): 59, 56, 51, (23,52,0): 60, 57, 52, (23,53,0): 63, 58, 52, (23,54,0): 66, 59, 53, (23,55,0): 66, 59, 51, (23,56,0): 65, 56, 47, (23,57,0): 66, 58, 47, (23,58,0): 67, 57, 47, (23,59,0): 69, 59, 47, (23,60,0): 72, 60, 48, (23,61,0): 73, 61, 49, (23,62,0): 74, 62, 50, (23,63,0): 74, 62, 50, (23,64,0): 75, 62, 53, (23,65,0): 75, 62, 53, (23,66,0): 74, 61, 52, (23,67,0): 74, 61, 52, (23,68,0): 70, 60, 51, (23,69,0): 69, 59, 50, (23,70,0): 67, 57, 48, (23,71,0): 66, 56, 47, (23,72,0): 66, 57, 50, (23,73,0): 66, 57, 50, (23,74,0): 65, 56, 51, (23,75,0): 64, 55, 50, (23,76,0): 64, 55, 50, (23,77,0): 65, 56, 51, (23,78,0): 66, 57, 52, (23,79,0): 66, 57, 52, (23,80,0): 63, 56, 50, (23,81,0): 64, 57, 51, (23,82,0): 66, 59, 53, (23,83,0): 69, 60, 55, (23,84,0): 71, 60, 54, (23,85,0): 73, 60, 54, (23,86,0): 77, 60, 53, (23,87,0): 78, 59, 52, (23,88,0): 77, 54, 46, (23,89,0): 78, 54, 44, (23,90,0): 81, 54, 43, (23,91,0): 81, 54, 43, (23,92,0): 81, 55, 42, (23,93,0): 82, 56, 43, (23,94,0): 80, 57, 41, (23,95,0): 86, 54, 39, (23,96,0): 103, 53, 42, (23,97,0): 114, 54, 44, (23,98,0): 126, 59, 51, (23,99,0): 137, 64, 57, (23,100,0): 149, 68, 64, (23,101,0): 155, 72, 68, (23,102,0): 159, 74, 71, (23,103,0): 159, 76, 70, (23,104,0): 160, 81, 74, (23,105,0): 153, 76, 68, (23,106,0): 142, 68, 59, (23,107,0): 133, 59, 48, (23,108,0): 132, 55, 45, (23,109,0): 133, 55, 45, (23,110,0): 140, 57, 49, (23,111,0): 143, 60, 52, (23,112,0): 139, 60, 53, (23,113,0): 138, 61, 55, (23,114,0): 137, 60, 54, (23,115,0): 136, 59, 53, (23,116,0): 136, 59, 53, (23,117,0): 132, 59, 52, (23,118,0): 128, 60, 51, (23,119,0): 125, 61, 51, (23,120,0): 122, 62, 51, (23,121,0): 122, 62, 51, (23,122,0): 122, 62, 51, (23,123,0): 125, 61, 51, (23,124,0): 129, 59, 51, (23,125,0): 134, 57, 51, (23,126,0): 139, 54, 51, (23,127,0): 146, 51, 49, (23,128,0): 150, 41, 38, (23,129,0): 176, 63, 59, (23,130,0): 234, 125, 122, (23,131,0): 252, 150, 146, (23,132,0): 195, 104, 99, (23,133,0): 149, 72, 64, (23,134,0): 137, 75, 64, (23,135,0): 120, 72, 58, (23,136,0): 112, 76, 60, (23,137,0): 106, 81, 61, (23,138,0): 104, 83, 62, (23,139,0): 106, 86, 62, (23,140,0): 111, 86, 64, (23,141,0): 118, 90, 69, (23,142,0): 128, 95, 76, (23,143,0): 130, 102, 80, (23,144,0): 124, 113, 81, (23,145,0): 134, 118, 85, (23,146,0): 160, 115, 92, (23,147,0): 183, 107, 94, (23,148,0): 203, 95, 95, (23,149,0): 214, 84, 92, (23,150,0): 218, 81, 91, (23,151,0): 218, 82, 92, (23,152,0): 230, 111, 117, (23,153,0): 219, 121, 120, (23,154,0): 207, 133, 124, (23,155,0): 195, 142, 126, (23,156,0): 184, 147, 128, (23,157,0): 174, 148, 125, (23,158,0): 165, 145, 120, (23,159,0): 162, 142, 118, (23,160,0): 159, 137, 114, (23,161,0): 159, 137, 116, (23,162,0): 156, 140, 117, (23,163,0): 152, 142, 117, (23,164,0): 148, 144, 117, (23,165,0): 141, 144, 115, (23,166,0): 137, 143, 115, (23,167,0): 133, 144, 114, (23,168,0): 127, 137, 110, (23,169,0): 124, 133, 106, (23,170,0): 119, 121, 97, (23,171,0): 112, 110, 87, (23,172,0): 105, 97, 78, (23,173,0): 98, 82, 66, (23,174,0): 87, 68, 53, (23,175,0): 83, 59, 47, (23,176,0): 79, 52, 45, (23,177,0): 77, 49, 45, (23,178,0): 73, 48, 44, (23,179,0): 68, 47, 42, (23,180,0): 64, 47, 40, (23,181,0): 59, 46, 38, (23,182,0): 55, 46, 39, (23,183,0): 54, 47, 39, (23,184,0): 57, 48, 41, (23,185,0): 58, 47, 41, (23,186,0): 61, 46, 43, (23,187,0): 65, 44, 43, (23,188,0): 70, 41, 43, (23,189,0): 72, 40, 43, (23,190,0): 75, 39, 43, (23,191,0): 72, 41, 39, (23,192,0): 84, 66, 52, (23,193,0): 89, 81, 60, (23,194,0): 100, 94, 70, (23,195,0): 103, 101, 76, (23,196,0): 105, 108, 79, (23,197,0): 110, 117, 86, (23,198,0): 109, 123, 88, (23,199,0): 108, 126, 88, (23,200,0): 107, 132, 90, (23,201,0): 103, 132, 86, (23,202,0): 103, 135, 86, (23,203,0): 109, 143, 93, (23,204,0): 112, 149, 98, (23,205,0): 113, 150, 98, (23,206,0): 114, 153, 100, (23,207,0): 117, 157, 105, (23,208,0): 116, 155, 108, (23,209,0): 111, 153, 107, (23,210,0): 111, 150, 106, (23,211,0): 114, 153, 109, (23,212,0): 119, 157, 118, (23,213,0): 121, 159, 120, (23,214,0): 119, 154, 121, (23,215,0): 116, 150, 117, (23,216,0): 115, 148, 117, (23,217,0): 117, 148, 117, (23,218,0): 115, 144, 113, (23,219,0): 111, 138, 107, (23,220,0): 105, 132, 101, (23,221,0): 97, 124, 91, (23,222,0): 84, 109, 77, (23,223,0): 77, 93, 66, (23,224,0): 78, 79, 63, (23,225,0): 76, 67, 58, (23,226,0): 69, 60, 51, (24,0,0): 57, 58, 52, (24,1,0): 57, 58, 52, (24,2,0): 57, 58, 52, (24,3,0): 57, 58, 52, (24,4,0): 57, 58, 52, (24,5,0): 58, 59, 53, (24,6,0): 61, 60, 55, (24,7,0): 61, 60, 55, (24,8,0): 61, 60, 55, (24,9,0): 61, 60, 55, (24,10,0): 64, 61, 56, (24,11,0): 64, 61, 56, (24,12,0): 65, 62, 57, (24,13,0): 66, 63, 58, (24,14,0): 68, 63, 59, (24,15,0): 68, 63, 59, (24,16,0): 69, 64, 60, (24,17,0): 69, 64, 60, (24,18,0): 69, 64, 58, (24,19,0): 68, 63, 57, (24,20,0): 68, 63, 57, (24,21,0): 67, 62, 56, (24,22,0): 69, 62, 56, (24,23,0): 68, 61, 55, (24,24,0): 66, 59, 53, (24,25,0): 66, 59, 53, (24,26,0): 66, 59, 53, (24,27,0): 66, 59, 53, (24,28,0): 66, 58, 55, (24,29,0): 66, 59, 53, (24,30,0): 65, 58, 52, (24,31,0): 65, 58, 52, (24,32,0): 65, 56, 51, (24,33,0): 65, 56, 51, (24,34,0): 65, 56, 51, (24,35,0): 64, 55, 50, (24,36,0): 64, 54, 52, (24,37,0): 62, 55, 49, (24,38,0): 62, 55, 49, (24,39,0): 62, 55, 49, (24,40,0): 60, 55, 49, (24,41,0): 60, 55, 49, (24,42,0): 59, 54, 48, (24,43,0): 58, 53, 47, (24,44,0): 56, 53, 46, (24,45,0): 56, 53, 46, (24,46,0): 55, 52, 47, (24,47,0): 55, 52, 47, (24,48,0): 57, 54, 49, (24,49,0): 57, 54, 49, (24,50,0): 57, 54, 49, (24,51,0): 58, 55, 48, (24,52,0): 60, 55, 49, (24,53,0): 61, 56, 50, (24,54,0): 65, 58, 50, (24,55,0): 66, 59, 49, (24,56,0): 67, 58, 49, (24,57,0): 68, 60, 49, (24,58,0): 70, 60, 50, (24,59,0): 74, 62, 50, (24,60,0): 75, 63, 51, (24,61,0): 76, 64, 50, (24,62,0): 78, 64, 51, (24,63,0): 78, 64, 53, (24,64,0): 78, 64, 55, (24,65,0): 78, 64, 55, (24,66,0): 76, 63, 54, (24,67,0): 75, 62, 53, (24,68,0): 73, 60, 51, (24,69,0): 72, 59, 50, (24,70,0): 69, 59, 50, (24,71,0): 69, 59, 50, (24,72,0): 66, 57, 48, (24,73,0): 65, 56, 47, (24,74,0): 64, 57, 49, (24,75,0): 63, 56, 48, (24,76,0): 63, 56, 48, (24,77,0): 63, 56, 48, (24,78,0): 64, 57, 51, (24,79,0): 64, 57, 51, (24,80,0): 60, 53, 47, (24,81,0): 77, 68, 61, (24,82,0): 77, 64, 58, (24,83,0): 75, 58, 51, (24,84,0): 84, 64, 57, (24,85,0): 82, 54, 50, (24,86,0): 81, 48, 43, (24,87,0): 95, 60, 54, (24,88,0): 91, 52, 45, (24,89,0): 94, 54, 46, (24,90,0): 95, 52, 43, (24,91,0): 92, 48, 39, (24,92,0): 94, 47, 37, (24,93,0): 101, 54, 44, (24,94,0): 109, 61, 49, (24,95,0): 114, 60, 48, (24,96,0): 137, 73, 61, (24,97,0): 143, 71, 59, (24,98,0): 151, 73, 63, (24,99,0): 159, 75, 65, (24,100,0): 159, 70, 62, (24,101,0): 155, 62, 55, (24,102,0): 154, 61, 54, (24,103,0): 158, 68, 59, (24,104,0): 166, 78, 68, (24,105,0): 164, 80, 69, (24,106,0): 168, 86, 74, (24,107,0): 171, 89, 75, (24,108,0): 165, 79, 66, (24,109,0): 153, 65, 53, (24,110,0): 151, 59, 48, (24,111,0): 156, 62, 54, (24,112,0): 148, 57, 56, (24,113,0): 146, 56, 56, (24,114,0): 143, 53, 53, (24,115,0): 137, 51, 50, (24,116,0): 136, 55, 52, (24,117,0): 135, 62, 56, (24,118,0): 127, 63, 54, (24,119,0): 117, 60, 49, (24,120,0): 117, 65, 52, (24,121,0): 115, 63, 50, (24,122,0): 116, 59, 48, (24,123,0): 121, 57, 48, (24,124,0): 133, 54, 50, (24,125,0): 142, 50, 51, (24,126,0): 149, 44, 49, (24,127,0): 155, 38, 44, (24,128,0): 198, 72, 73, (24,129,0): 229, 99, 97, (24,130,0): 194, 70, 68, (24,131,0): 202, 89, 85, (24,132,0): 224, 122, 118, (24,133,0): 171, 86, 79, (24,134,0): 134, 70, 60, (24,135,0): 132, 86, 70, (24,136,0): 109, 82, 61, (24,137,0): 105, 91, 65, (24,138,0): 105, 98, 70, (24,139,0): 107, 100, 72, (24,140,0): 107, 95, 69, (24,141,0): 111, 94, 68, (24,142,0): 125, 99, 76, (24,143,0): 141, 106, 84, (24,144,0): 145, 99, 76, (24,145,0): 177, 110, 93, (24,146,0): 208, 111, 104, (24,147,0): 218, 89, 93, (24,148,0): 222, 59, 76, (24,149,0): 229, 45, 69, (24,150,0): 241, 44, 72, (24,151,0): 243, 49, 76, (24,152,0): 243, 65, 89, (24,153,0): 233, 74, 92, (24,154,0): 227, 91, 101, (24,155,0): 226, 111, 114, (24,156,0): 224, 124, 124, (24,157,0): 218, 129, 125, (24,158,0): 216, 133, 127, (24,159,0): 215, 138, 130, (24,160,0): 196, 126, 118, (24,161,0): 192, 128, 119, (24,162,0): 189, 131, 120, (24,163,0): 185, 133, 120, (24,164,0): 181, 135, 120, (24,165,0): 175, 136, 119, (24,166,0): 171, 138, 121, (24,167,0): 167, 138, 120, (24,168,0): 157, 128, 112, (24,169,0): 157, 125, 110, (24,170,0): 154, 121, 106, (24,171,0): 150, 110, 98, (24,172,0): 145, 98, 90, (24,173,0): 135, 85, 78, (24,174,0): 127, 72, 67, (24,175,0): 123, 65, 63, (24,176,0): 117, 58, 60, (24,177,0): 103, 47, 50, (24,178,0): 100, 48, 50, (24,179,0): 97, 49, 49, (24,180,0): 79, 39, 39, (24,181,0): 71, 37, 35, (24,182,0): 76, 48, 45, (24,183,0): 77, 53, 49, (24,184,0): 72, 51, 46, (24,185,0): 69, 50, 44, (24,186,0): 68, 49, 45, (24,187,0): 70, 49, 46, (24,188,0): 70, 46, 44, (24,189,0): 71, 43, 42, (24,190,0): 75, 45, 45, (24,191,0): 81, 54, 47, (24,192,0): 89, 72, 52, (24,193,0): 96, 87, 58, (24,194,0): 102, 95, 66, (24,195,0): 103, 100, 69, (24,196,0): 107, 111, 78, (24,197,0): 117, 124, 90, (24,198,0): 117, 132, 93, (24,199,0): 111, 129, 89, (24,200,0): 108, 131, 87, (24,201,0): 108, 135, 90, (24,202,0): 112, 141, 93, (24,203,0): 114, 146, 97, (24,204,0): 115, 149, 98, (24,205,0): 117, 151, 100, (24,206,0): 119, 153, 102, (24,207,0): 118, 155, 104, (24,208,0): 114, 150, 106, (24,209,0): 115, 152, 111, (24,210,0): 115, 151, 113, (24,211,0): 113, 149, 111, (24,212,0): 115, 149, 116, (24,213,0): 119, 153, 120, (24,214,0): 122, 152, 124, (24,215,0): 121, 150, 122, (24,216,0): 120, 149, 121, (24,217,0): 115, 141, 114, (24,218,0): 109, 135, 106, (24,219,0): 107, 132, 102, (24,220,0): 105, 130, 100, (24,221,0): 97, 122, 90, (24,222,0): 84, 109, 77, (24,223,0): 79, 95, 68, (24,224,0): 79, 80, 64, (24,225,0): 84, 75, 66, (24,226,0): 82, 73, 64, (25,0,0): 57, 58, 52, (25,1,0): 57, 58, 52, (25,2,0): 57, 58, 52, (25,3,0): 57, 58, 52, (25,4,0): 58, 59, 53, (25,5,0): 59, 60, 54, (25,6,0): 62, 61, 56, (25,7,0): 63, 62, 57, (25,8,0): 62, 61, 56, (25,9,0): 62, 61, 56, (25,10,0): 65, 62, 57, (25,11,0): 65, 62, 57, (25,12,0): 66, 63, 58, (25,13,0): 67, 64, 59, (25,14,0): 68, 63, 59, (25,15,0): 68, 63, 59, (25,16,0): 70, 65, 61, (25,17,0): 69, 64, 60, (25,18,0): 69, 64, 58, (25,19,0): 69, 64, 58, (25,20,0): 68, 63, 57, (25,21,0): 68, 63, 57, (25,22,0): 69, 62, 56, (25,23,0): 69, 62, 56, (25,24,0): 69, 62, 56, (25,25,0): 69, 62, 56, (25,26,0): 69, 62, 56, (25,27,0): 68, 61, 53, (25,28,0): 67, 60, 54, (25,29,0): 67, 60, 52, (25,30,0): 68, 59, 52, (25,31,0): 67, 58, 49, (25,32,0): 66, 57, 50, (25,33,0): 66, 57, 50, (25,34,0): 66, 57, 50, (25,35,0): 66, 57, 50, (25,36,0): 65, 56, 51, (25,37,0): 65, 56, 51, (25,38,0): 64, 57, 51, (25,39,0): 64, 57, 51, (25,40,0): 62, 55, 49, (25,41,0): 60, 55, 49, (25,42,0): 59, 54, 48, (25,43,0): 59, 54, 48, (25,44,0): 57, 54, 47, (25,45,0): 56, 53, 46, (25,46,0): 55, 52, 47, (25,47,0): 55, 52, 47, (25,48,0): 57, 54, 49, (25,49,0): 57, 54, 47, (25,50,0): 57, 54, 47, (25,51,0): 58, 55, 48, (25,52,0): 60, 55, 49, (25,53,0): 62, 58, 49, (25,54,0): 65, 58, 48, (25,55,0): 66, 60, 48, (25,56,0): 67, 59, 48, (25,57,0): 69, 59, 47, (25,58,0): 73, 61, 49, (25,59,0): 74, 62, 48, (25,60,0): 76, 64, 50, (25,61,0): 76, 64, 50, (25,62,0): 78, 64, 51, (25,63,0): 78, 64, 51, (25,64,0): 78, 64, 53, (25,65,0): 78, 64, 55, (25,66,0): 77, 63, 54, (25,67,0): 74, 61, 52, (25,68,0): 73, 60, 51, (25,69,0): 72, 59, 50, (25,70,0): 69, 59, 50, (25,71,0): 69, 59, 50, (25,72,0): 67, 58, 49, (25,73,0): 66, 57, 48, (25,74,0): 64, 57, 49, (25,75,0): 64, 57, 49, (25,76,0): 64, 57, 49, (25,77,0): 64, 57, 49, (25,78,0): 65, 58, 52, (25,79,0): 65, 58, 50, (25,80,0): 67, 58, 51, (25,81,0): 73, 56, 49, (25,82,0): 75, 47, 43, (25,83,0): 86, 46, 44, (25,84,0): 106, 55, 54, (25,85,0): 116, 58, 57, (25,86,0): 123, 59, 59, (25,87,0): 133, 69, 67, (25,88,0): 129, 68, 63, (25,89,0): 131, 72, 64, (25,90,0): 132, 73, 65, (25,91,0): 132, 72, 62, (25,92,0): 141, 74, 66, (25,93,0): 152, 79, 72, (25,94,0): 161, 80, 76, (25,95,0): 162, 79, 71, (25,96,0): 147, 68, 55, (25,97,0): 148, 66, 52, (25,98,0): 154, 66, 54, (25,99,0): 159, 67, 56, (25,100,0): 160, 62, 51, (25,101,0): 156, 55, 45, (25,102,0): 156, 55, 45, (25,103,0): 159, 61, 48, (25,104,0): 163, 67, 53, (25,105,0): 155, 63, 48, (25,106,0): 153, 64, 48, (25,107,0): 160, 69, 51, (25,108,0): 164, 71, 54, (25,109,0): 167, 70, 54, (25,110,0): 174, 72, 58, (25,111,0): 182, 78, 69, (25,112,0): 181, 75, 77, (25,113,0): 176, 71, 76, (25,114,0): 167, 64, 68, (25,115,0): 155, 56, 59, (25,116,0): 147, 55, 56, (25,117,0): 142, 61, 58, (25,118,0): 133, 62, 56, (25,119,0): 121, 61, 51, (25,120,0): 114, 60, 48, (25,121,0): 124, 72, 59, (25,122,0): 135, 75, 65, (25,123,0): 133, 62, 56, (25,124,0): 133, 43, 43, (25,125,0): 149, 40, 46, (25,126,0): 181, 57, 68, (25,127,0): 211, 75, 87, (25,128,0): 219, 76, 78, (25,129,0): 221, 79, 77, (25,130,0): 199, 64, 61, (25,131,0): 190, 65, 63, (25,132,0): 208, 96, 92, (25,133,0): 179, 89, 81, (25,134,0): 132, 64, 53, (25,135,0): 130, 84, 68, (25,136,0): 121, 97, 73, (25,137,0): 101, 91, 64, (25,138,0): 96, 92, 63, (25,139,0): 107, 104, 73, (25,140,0): 117, 108, 79, (25,141,0): 119, 102, 74, (25,142,0): 127, 99, 75, (25,143,0): 150, 99, 78, (25,144,0): 185, 102, 88, (25,145,0): 210, 97, 91, (25,146,0): 224, 88, 90, (25,147,0): 231, 67, 78, (25,148,0): 238, 46, 69, (25,149,0): 249, 39, 68, (25,150,0): 255, 40, 72, (25,151,0): 255, 42, 73, (25,152,0): 255, 48, 78, (25,153,0): 243, 53, 78, (25,154,0): 236, 63, 82, (25,155,0): 234, 76, 90, (25,156,0): 230, 82, 94, (25,157,0): 224, 84, 93, (25,158,0): 222, 85, 93, (25,159,0): 221, 90, 98, (25,160,0): 219, 98, 105, (25,161,0): 216, 101, 108, (25,162,0): 214, 105, 110, (25,163,0): 213, 108, 113, (25,164,0): 208, 112, 114, (25,165,0): 206, 116, 116, (25,166,0): 204, 118, 119, (25,167,0): 201, 120, 119, (25,168,0): 204, 124, 125, (25,169,0): 203, 121, 123, (25,170,0): 203, 118, 121, (25,171,0): 202, 113, 117, (25,172,0): 202, 107, 115, (25,173,0): 201, 101, 111, (25,174,0): 199, 97, 108, (25,175,0): 197, 95, 108, (25,176,0): 195, 97, 110, (25,177,0): 177, 84, 95, (25,178,0): 163, 76, 85, (25,179,0): 153, 72, 81, (25,180,0): 141, 68, 75, (25,181,0): 132, 70, 73, (25,182,0): 107, 55, 57, (25,183,0): 72, 28, 27, (25,184,0): 84, 49, 45, (25,185,0): 77, 48, 42, (25,186,0): 72, 49, 43, (25,187,0): 74, 54, 47, (25,188,0): 75, 56, 49, (25,189,0): 75, 58, 50, (25,190,0): 79, 62, 54, (25,191,0): 85, 69, 56, (25,192,0): 91, 79, 53, (25,193,0): 99, 90, 57, (25,194,0): 103, 97, 65, (25,195,0): 105, 102, 69, (25,196,0): 110, 114, 79, (25,197,0): 122, 130, 93, (25,198,0): 122, 137, 98, (25,199,0): 116, 134, 94, (25,200,0): 114, 137, 95, (25,201,0): 112, 137, 95, (25,202,0): 112, 139, 96, (25,203,0): 113, 142, 96, (25,204,0): 117, 146, 100, (25,205,0): 119, 148, 100, (25,206,0): 119, 148, 100, (25,207,0): 119, 148, 102, (25,208,0): 115, 146, 105, (25,209,0): 120, 150, 114, (25,210,0): 122, 151, 120, (25,211,0): 121, 150, 120, (25,212,0): 126, 152, 125, (25,213,0): 131, 157, 132, (25,214,0): 133, 157, 135, (25,215,0): 131, 155, 133, (25,216,0): 129, 153, 131, (25,217,0): 122, 146, 122, (25,218,0): 114, 137, 111, (25,219,0): 109, 132, 104, (25,220,0): 104, 129, 100, (25,221,0): 96, 121, 91, (25,222,0): 84, 109, 77, (25,223,0): 78, 97, 69, (25,224,0): 82, 83, 67, (25,225,0): 86, 80, 68, (25,226,0): 86, 79, 69, (26,0,0): 56, 57, 51, (26,1,0): 56, 57, 51, (26,2,0): 56, 57, 51, (26,3,0): 57, 58, 52, (26,4,0): 59, 60, 54, (26,5,0): 60, 61, 55, (26,6,0): 63, 62, 57, (26,7,0): 64, 63, 58, (26,8,0): 64, 63, 58, (26,9,0): 64, 63, 58, (26,10,0): 67, 64, 59, (26,11,0): 67, 64, 59, (26,12,0): 67, 64, 59, (26,13,0): 67, 64, 59, (26,14,0): 68, 63, 59, (26,15,0): 68, 63, 59, (26,16,0): 70, 65, 59, (26,17,0): 70, 65, 59, (26,18,0): 70, 65, 59, (26,19,0): 69, 64, 58, (26,20,0): 69, 64, 58, (26,21,0): 69, 64, 58, (26,22,0): 71, 64, 56, (26,23,0): 70, 63, 55, (26,24,0): 74, 65, 58, (26,25,0): 73, 64, 57, (26,26,0): 72, 63, 56, (26,27,0): 71, 62, 53, (26,28,0): 70, 61, 54, (26,29,0): 69, 60, 51, (26,30,0): 70, 60, 51, (26,31,0): 69, 59, 49, (26,32,0): 68, 58, 49, (26,33,0): 68, 58, 49, (26,34,0): 68, 58, 49, (26,35,0): 68, 58, 49, (26,36,0): 68, 59, 52, (26,37,0): 68, 59, 52, (26,38,0): 68, 59, 52, (26,39,0): 67, 60, 52, (26,40,0): 63, 56, 48, (26,41,0): 63, 56, 48, (26,42,0): 60, 55, 49, (26,43,0): 59, 54, 48, (26,44,0): 58, 53, 47, (26,45,0): 58, 53, 47, (26,46,0): 57, 52, 46, (26,47,0): 57, 52, 46, (26,48,0): 57, 54, 47, (26,49,0): 57, 54, 47, (26,50,0): 58, 53, 47, (26,51,0): 59, 55, 46, (26,52,0): 62, 55, 47, (26,53,0): 64, 57, 47, (26,54,0): 66, 57, 48, (26,55,0): 67, 59, 48, (26,56,0): 69, 59, 49, (26,57,0): 70, 60, 48, (26,58,0): 73, 61, 49, (26,59,0): 75, 63, 49, (26,60,0): 77, 63, 50, (26,61,0): 77, 64, 48, (26,62,0): 78, 65, 49, (26,63,0): 77, 64, 48, (26,64,0): 80, 63, 53, (26,65,0): 77, 63, 52, (26,66,0): 76, 62, 51, (26,67,0): 75, 61, 50, (26,68,0): 73, 60, 51, (26,69,0): 72, 59, 50, (26,70,0): 69, 59, 49, (26,71,0): 68, 58, 48, (26,72,0): 67, 58, 49, (26,73,0): 67, 58, 49, (26,74,0): 65, 58, 48, (26,75,0): 65, 58, 48, (26,76,0): 63, 59, 50, (26,77,0): 64, 60, 51, (26,78,0): 64, 60, 51, (26,79,0): 68, 59, 52, (26,80,0): 83, 69, 60, (26,81,0): 82, 51, 46, (26,82,0): 105, 51, 51, (26,83,0): 142, 65, 71, (26,84,0): 173, 76, 87, (26,85,0): 193, 86, 96, (26,86,0): 203, 93, 102, (26,87,0): 196, 96, 98, (26,88,0): 154, 66, 62, (26,89,0): 150, 73, 63, (26,90,0): 149, 77, 65, (26,91,0): 155, 79, 66, (26,92,0): 171, 82, 74, (26,93,0): 190, 85, 82, (26,94,0): 203, 80, 83, (26,95,0): 196, 76, 75, (26,96,0): 163, 65, 52, (26,97,0): 157, 66, 48, (26,98,0): 160, 64, 48, (26,99,0): 165, 63, 49, (26,100,0): 165, 59, 46, (26,101,0): 163, 55, 43, (26,102,0): 164, 56, 43, (26,103,0): 167, 61, 47, (26,104,0): 171, 69, 54, (26,105,0): 161, 62, 43, (26,106,0): 152, 55, 36, (26,107,0): 157, 58, 39, (26,108,0): 165, 62, 45, (26,109,0): 172, 65, 47, (26,110,0): 178, 67, 50, (26,111,0): 184, 67, 58, (26,112,0): 167, 48, 50, (26,113,0): 177, 57, 66, (26,114,0): 185, 68, 76, (26,115,0): 190, 75, 82, (26,116,0): 186, 77, 82, (26,117,0): 173, 75, 76, (26,118,0): 150, 65, 62, (26,119,0): 130, 55, 49, (26,120,0): 123, 56, 47, (26,121,0): 118, 54, 44, (26,122,0): 122, 49, 42, (26,123,0): 133, 48, 45, (26,124,0): 156, 51, 55, (26,125,0): 186, 60, 71, (26,126,0): 215, 70, 87, (26,127,0): 232, 77, 91, (26,128,0): 225, 71, 73, (26,129,0): 206, 54, 51, (26,130,0): 205, 60, 57, (26,131,0): 187, 52, 49, (26,132,0): 198, 79, 75, (26,133,0): 198, 99, 93, (26,134,0): 148, 74, 63, (26,135,0): 140, 91, 74, (26,136,0): 125, 99, 76, (26,137,0): 106, 95, 67, (26,138,0): 104, 99, 69, (26,139,0): 117, 111, 79, (26,140,0): 128, 111, 81, (26,141,0): 130, 103, 74, (26,142,0): 143, 103, 78, (26,143,0): 177, 104, 89, (26,144,0): 224, 100, 98, (26,145,0): 239, 84, 90, (26,146,0): 238, 71, 81, (26,147,0): 239, 58, 73, (26,148,0): 248, 52, 74, (26,149,0): 255, 52, 78, (26,150,0): 255, 50, 77, (26,151,0): 254, 46, 72, (26,152,0): 255, 53, 79, (26,153,0): 245, 51, 75, (26,154,0): 240, 53, 74, (26,155,0): 239, 56, 76, (26,156,0): 237, 55, 77, (26,157,0): 233, 54, 75, (26,158,0): 236, 54, 76, (26,159,0): 239, 57, 80, (26,160,0): 241, 65, 88, (26,161,0): 239, 67, 91, (26,162,0): 239, 70, 93, (26,163,0): 237, 73, 97, (26,164,0): 236, 77, 99, (26,165,0): 234, 81, 101, (26,166,0): 233, 84, 104, (26,167,0): 232, 86, 107, (26,168,0): 228, 84, 107, (26,169,0): 229, 83, 106, (26,170,0): 228, 80, 106, (26,171,0): 228, 78, 105, (26,172,0): 233, 78, 109, (26,173,0): 238, 81, 112, (26,174,0): 242, 83, 115, (26,175,0): 244, 87, 118, (26,176,0): 252, 105, 133, (26,177,0): 237, 99, 124, (26,178,0): 225, 93, 116, (26,179,0): 210, 87, 108, (26,180,0): 203, 90, 108, (26,181,0): 199, 101, 114, (26,182,0): 166, 83, 93, (26,183,0): 114, 45, 50, (26,184,0): 93, 39, 39, (26,185,0): 88, 49, 44, (26,186,0): 87, 58, 52, (26,187,0): 81, 63, 53, (26,188,0): 66, 58, 45, (26,189,0): 58, 56, 41, (26,190,0): 63, 66, 49, (26,191,0): 76, 78, 57, (26,192,0): 86, 79, 51, (26,193,0): 97, 86, 54, (26,194,0): 101, 95, 63, (26,195,0): 104, 101, 68, (26,196,0): 113, 117, 84, (26,197,0): 127, 134, 101, (26,198,0): 126, 140, 105, (26,199,0): 119, 136, 100, (26,200,0): 120, 140, 105, (26,201,0): 117, 139, 101, (26,202,0): 114, 139, 100, (26,203,0): 114, 139, 99, (26,204,0): 118, 140, 101, (26,205,0): 121, 143, 104, (26,206,0): 122, 144, 105, (26,207,0): 122, 144, 106, (26,208,0): 128, 149, 118, (26,209,0): 132, 155, 126, (26,210,0): 138, 158, 133, (26,211,0): 141, 160, 138, (26,212,0): 146, 163, 144, (26,213,0): 151, 168, 150, (26,214,0): 152, 169, 153, (26,215,0): 150, 166, 153, (26,216,0): 145, 162, 146, (26,217,0): 135, 152, 134, (26,218,0): 122, 141, 121, (26,219,0): 112, 131, 109, (26,220,0): 103, 126, 98, (26,221,0): 94, 119, 89, (26,222,0): 84, 109, 77, (26,223,0): 80, 99, 71, (26,224,0): 82, 87, 67, (26,225,0): 88, 85, 70, (26,226,0): 89, 85, 73, (27,0,0): 55, 56, 50, (27,1,0): 55, 56, 50, (27,2,0): 56, 57, 51, (27,3,0): 57, 58, 52, (27,4,0): 59, 60, 54, (27,5,0): 61, 62, 56, (27,6,0): 64, 63, 58, (27,7,0): 65, 64, 59, (27,8,0): 66, 65, 60, (27,9,0): 66, 65, 60, (27,10,0): 68, 65, 60, (27,11,0): 68, 65, 60, (27,12,0): 68, 65, 60, (27,13,0): 68, 65, 60, (27,14,0): 69, 64, 60, (27,15,0): 69, 64, 60, (27,16,0): 71, 66, 60, (27,17,0): 71, 66, 60, (27,18,0): 71, 66, 60, (27,19,0): 70, 65, 59, (27,20,0): 70, 65, 59, (27,21,0): 70, 66, 57, (27,22,0): 72, 65, 57, (27,23,0): 72, 65, 57, (27,24,0): 76, 67, 60, (27,25,0): 75, 66, 57, (27,26,0): 74, 65, 56, (27,27,0): 73, 64, 55, (27,28,0): 72, 62, 53, (27,29,0): 71, 61, 51, (27,30,0): 70, 60, 50, (27,31,0): 69, 59, 49, (27,32,0): 68, 58, 48, (27,33,0): 68, 58, 48, (27,34,0): 69, 59, 49, (27,35,0): 69, 59, 50, (27,36,0): 68, 59, 50, (27,37,0): 69, 60, 51, (27,38,0): 69, 60, 53, (27,39,0): 69, 60, 53, (27,40,0): 64, 57, 49, (27,41,0): 63, 56, 48, (27,42,0): 61, 56, 50, (27,43,0): 60, 55, 49, (27,44,0): 59, 54, 48, (27,45,0): 58, 53, 47, (27,46,0): 58, 53, 47, (27,47,0): 58, 53, 47, (27,48,0): 57, 54, 47, (27,49,0): 57, 54, 45, (27,50,0): 59, 55, 46, (27,51,0): 59, 55, 44, (27,52,0): 63, 56, 46, (27,53,0): 64, 58, 46, (27,54,0): 67, 59, 48, (27,55,0): 68, 60, 47, (27,56,0): 70, 60, 48, (27,57,0): 70, 61, 46, (27,58,0): 74, 62, 48, (27,59,0): 75, 63, 47, (27,60,0): 77, 64, 48, (27,61,0): 77, 64, 48, (27,62,0): 77, 64, 47, (27,63,0): 77, 64, 48, (27,64,0): 79, 63, 50, (27,65,0): 79, 62, 52, (27,66,0): 76, 62, 51, (27,67,0): 75, 61, 50, (27,68,0): 74, 60, 51, (27,69,0): 71, 58, 49, (27,70,0): 69, 59, 49, (27,71,0): 68, 58, 48, (27,72,0): 68, 59, 50, (27,73,0): 68, 59, 50, (27,74,0): 66, 59, 49, (27,75,0): 64, 60, 49, (27,76,0): 64, 60, 51, (27,77,0): 65, 61, 52, (27,78,0): 66, 62, 53, (27,79,0): 70, 60, 51, (27,80,0): 81, 56, 49, (27,81,0): 88, 43, 38, (27,82,0): 135, 59, 63, (27,83,0): 189, 85, 96, (27,84,0): 216, 85, 101, (27,85,0): 228, 86, 102, (27,86,0): 226, 86, 99, (27,87,0): 201, 75, 79, (27,88,0): 157, 52, 48, (27,89,0): 148, 58, 47, (27,90,0): 144, 62, 48, (27,91,0): 152, 66, 51, (27,92,0): 173, 70, 61, (27,93,0): 196, 74, 71, (27,94,0): 212, 67, 72, (27,95,0): 203, 63, 64, (27,96,0): 177, 66, 55, (27,97,0): 167, 70, 53, (27,98,0): 169, 66, 51, (27,99,0): 172, 64, 51, (27,100,0): 175, 63, 51, (27,101,0): 176, 62, 51, (27,102,0): 179, 66, 52, (27,103,0): 180, 68, 54, (27,104,0): 178, 71, 53, (27,105,0): 169, 66, 47, (27,106,0): 163, 60, 41, (27,107,0): 164, 59, 40, (27,108,0): 169, 60, 40, (27,109,0): 171, 58, 40, (27,110,0): 174, 54, 38, (27,111,0): 173, 51, 40, (27,112,0): 182, 57, 55, (27,113,0): 186, 57, 61, (27,114,0): 187, 56, 62, (27,115,0): 186, 55, 60, (27,116,0): 190, 61, 66, (27,117,0): 197, 74, 76, (27,118,0): 196, 84, 83, (27,119,0): 190, 88, 83, (27,120,0): 153, 63, 55, (27,121,0): 139, 52, 42, (27,122,0): 135, 45, 37, (27,123,0): 157, 54, 49, (27,124,0): 195, 72, 75, (27,125,0): 219, 80, 87, (27,126,0): 224, 66, 81, (27,127,0): 218, 52, 64, (27,128,0): 221, 59, 57, (27,129,0): 204, 47, 42, (27,130,0): 209, 57, 52, (27,131,0): 198, 56, 52, (27,132,0): 197, 70, 64, (27,133,0): 200, 93, 85, (27,134,0): 167, 88, 75, (27,135,0): 144, 87, 70, (27,136,0): 119, 87, 64, (27,137,0): 120, 100, 73, (27,138,0): 126, 112, 83, (27,139,0): 130, 111, 81, (27,140,0): 133, 102, 74, (27,141,0): 145, 99, 75, (27,142,0): 172, 109, 91, (27,143,0): 213, 117, 105, (27,144,0): 234, 85, 87, (27,145,0): 246, 70, 80, (27,146,0): 242, 62, 74, (27,147,0): 242, 60, 73, (27,148,0): 249, 64, 78, (27,149,0): 253, 67, 81, (27,150,0): 249, 61, 76, (27,151,0): 243, 55, 72, (27,152,0): 253, 66, 83, (27,153,0): 248, 60, 77, (27,154,0): 244, 55, 75, (27,155,0): 246, 54, 75, (27,156,0): 248, 52, 74, (27,157,0): 249, 50, 73, (27,158,0): 255, 51, 78, (27,159,0): 255, 56, 83, (27,160,0): 255, 51, 84, (27,161,0): 252, 53, 86, (27,162,0): 252, 54, 87, (27,163,0): 249, 56, 87, (27,164,0): 247, 58, 90, (27,165,0): 248, 61, 92, (27,166,0): 246, 63, 94, (27,167,0): 245, 64, 97, (27,168,0): 247, 67, 102, (27,169,0): 245, 67, 103, (27,170,0): 244, 64, 101, (27,171,0): 245, 63, 103, (27,172,0): 247, 65, 105, (27,173,0): 252, 67, 109, (27,174,0): 255, 71, 115, (27,175,0): 255, 74, 115, (27,176,0): 255, 81, 117, (27,177,0): 253, 84, 117, (27,178,0): 250, 87, 118, (27,179,0): 239, 85, 113, (27,180,0): 228, 86, 110, (27,181,0): 226, 99, 120, (27,182,0): 213, 102, 118, (27,183,0): 180, 89, 98, (27,184,0): 124, 49, 53, (27,185,0): 104, 48, 47, (27,186,0): 88, 49, 42, (27,187,0): 80, 56, 44, (27,188,0): 71, 62, 47, (27,189,0): 63, 64, 46, (27,190,0): 59, 68, 47, (27,191,0): 65, 70, 47, (27,192,0): 81, 74, 46, (27,193,0): 95, 84, 56, (27,194,0): 103, 96, 67, (27,195,0): 111, 107, 78, (27,196,0): 124, 124, 96, (27,197,0): 136, 142, 114, (27,198,0): 135, 145, 118, (27,199,0): 125, 139, 113, (27,200,0): 122, 141, 113, (27,201,0): 124, 143, 115, (27,202,0): 124, 143, 115, (27,203,0): 122, 141, 111, (27,204,0): 122, 138, 109, (27,205,0): 125, 140, 111, (27,206,0): 131, 146, 117, (27,207,0): 136, 151, 122, (27,208,0): 149, 163, 138, (27,209,0): 156, 169, 149, (27,210,0): 163, 174, 157, (27,211,0): 166, 177, 161, (27,212,0): 172, 180, 167, (27,213,0): 177, 185, 174, (27,214,0): 176, 183, 176, (27,215,0): 171, 181, 173, (27,216,0): 161, 171, 162, (27,217,0): 148, 160, 148, (27,218,0): 131, 145, 130, (27,219,0): 115, 132, 113, (27,220,0): 104, 124, 99, (27,221,0): 93, 116, 88, (27,222,0): 83, 108, 78, (27,223,0): 80, 100, 72, (27,224,0): 80, 88, 67, (27,225,0): 86, 87, 69, (27,226,0): 87, 88, 72, (28,0,0): 54, 55, 49, (28,1,0): 54, 55, 49, (28,2,0): 55, 56, 50, (28,3,0): 56, 57, 51, (28,4,0): 58, 59, 53, (28,5,0): 60, 61, 55, (28,6,0): 63, 62, 57, (28,7,0): 64, 63, 58, (28,8,0): 66, 65, 60, (28,9,0): 66, 65, 60, (28,10,0): 68, 65, 60, (28,11,0): 68, 65, 60, (28,12,0): 68, 65, 60, (28,13,0): 69, 66, 61, (28,14,0): 70, 65, 61, (28,15,0): 70, 65, 61, (28,16,0): 70, 67, 60, (28,17,0): 70, 67, 60, (28,18,0): 71, 66, 60, (28,19,0): 72, 67, 61, (28,20,0): 72, 68, 59, (28,21,0): 72, 68, 59, (28,22,0): 74, 67, 59, (28,23,0): 74, 67, 57, (28,24,0): 76, 67, 58, (28,25,0): 75, 66, 57, (28,26,0): 75, 65, 56, (28,27,0): 74, 64, 54, (28,28,0): 74, 61, 52, (28,29,0): 73, 61, 49, (28,30,0): 72, 60, 48, (28,31,0): 71, 59, 47, (28,32,0): 69, 59, 47, (28,33,0): 69, 59, 47, (28,34,0): 69, 59, 47, (28,35,0): 69, 59, 49, (28,36,0): 69, 59, 49, (28,37,0): 69, 59, 49, (28,38,0): 68, 59, 50, (28,39,0): 68, 59, 50, (28,40,0): 64, 57, 47, (28,41,0): 64, 57, 47, (28,42,0): 64, 57, 49, (28,43,0): 63, 56, 48, (28,44,0): 60, 55, 49, (28,45,0): 59, 54, 48, (28,46,0): 59, 54, 48, (28,47,0): 58, 53, 47, (28,48,0): 59, 55, 46, (28,49,0): 59, 55, 46, (28,50,0): 59, 55, 46, (28,51,0): 60, 56, 45, (28,52,0): 63, 56, 46, (28,53,0): 65, 59, 47, (28,54,0): 67, 59, 48, (28,55,0): 68, 60, 47, (28,56,0): 71, 61, 49, (28,57,0): 71, 62, 47, (28,58,0): 75, 63, 49, (28,59,0): 77, 64, 48, (28,60,0): 77, 64, 48, (28,61,0): 78, 65, 48, (28,62,0): 79, 63, 47, (28,63,0): 79, 63, 48, (28,64,0): 79, 63, 50, (28,65,0): 78, 61, 51, (28,66,0): 78, 61, 51, (28,67,0): 74, 60, 49, (28,68,0): 73, 59, 48, (28,69,0): 71, 59, 47, (28,70,0): 68, 58, 48, (28,71,0): 68, 58, 48, (28,72,0): 68, 60, 49, (28,73,0): 68, 60, 49, (28,74,0): 66, 59, 49, (28,75,0): 64, 60, 49, (28,76,0): 65, 61, 50, (28,77,0): 65, 63, 51, (28,78,0): 66, 63, 54, (28,79,0): 75, 61, 52, (28,80,0): 91, 54, 46, (28,81,0): 116, 52, 50, (28,82,0): 172, 77, 83, (28,83,0): 218, 94, 105, (28,84,0): 229, 78, 95, (28,85,0): 226, 65, 81, (28,86,0): 213, 55, 69, (28,87,0): 182, 39, 43, (28,88,0): 167, 50, 41, (28,89,0): 156, 56, 40, (28,90,0): 145, 58, 38, (28,91,0): 149, 61, 41, (28,92,0): 171, 65, 51, (28,93,0): 193, 69, 61, (28,94,0): 211, 63, 63, (28,95,0): 204, 60, 59, (28,96,0): 177, 63, 53, (28,97,0): 168, 66, 52, (28,98,0): 170, 64, 50, (28,99,0): 173, 63, 50, (28,100,0): 178, 64, 53, (28,101,0): 184, 67, 57, (28,102,0): 188, 72, 59, (28,103,0): 187, 74, 60, (28,104,0): 172, 62, 47, (28,105,0): 170, 63, 47, (28,106,0): 168, 61, 43, (28,107,0): 166, 59, 41, (28,108,0): 170, 57, 41, (28,109,0): 176, 58, 44, (28,110,0): 183, 59, 47, (28,111,0): 187, 61, 49, (28,112,0): 200, 71, 65, (28,113,0): 204, 69, 65, (28,114,0): 206, 64, 63, (28,115,0): 205, 57, 57, (28,116,0): 211, 56, 60, (28,117,0): 220, 67, 69, (28,118,0): 223, 77, 78, (28,119,0): 218, 83, 79, (28,120,0): 193, 68, 62, (28,121,0): 195, 77, 67, (28,122,0): 203, 84, 76, (28,123,0): 209, 85, 77, (28,124,0): 215, 75, 74, (28,125,0): 218, 64, 66, (28,126,0): 223, 53, 62, (28,127,0): 224, 51, 55, (28,128,0): 217, 52, 46, (28,129,0): 215, 57, 46, (28,130,0): 205, 51, 43, (28,131,0): 206, 59, 52, (28,132,0): 190, 57, 52, (28,133,0): 178, 65, 57, (28,134,0): 181, 91, 80, (28,135,0): 150, 85, 67, (28,136,0): 123, 78, 57, (28,137,0): 130, 98, 73, (28,138,0): 136, 106, 80, (28,139,0): 133, 96, 70, (28,140,0): 147, 90, 70, (28,141,0): 176, 100, 84, (28,142,0): 206, 112, 100, (28,143,0): 232, 109, 104, (28,144,0): 231, 70, 75, (28,145,0): 237, 60, 68, (28,146,0): 230, 59, 67, (28,147,0): 227, 62, 68, (28,148,0): 227, 68, 72, (28,149,0): 227, 73, 75, (28,150,0): 228, 74, 76, (28,151,0): 229, 73, 77, (28,152,0): 240, 76, 83, (28,153,0): 239, 68, 77, (28,154,0): 239, 58, 73, (28,155,0): 242, 55, 72, (28,156,0): 245, 52, 71, (28,157,0): 248, 49, 70, (28,158,0): 254, 52, 76, (28,159,0): 255, 58, 82, (28,160,0): 255, 57, 86, (28,161,0): 253, 58, 88, (28,162,0): 252, 59, 88, (28,163,0): 250, 59, 90, (28,164,0): 251, 60, 93, (28,165,0): 252, 63, 95, (28,166,0): 253, 65, 98, (28,167,0): 252, 67, 101, (28,168,0): 253, 69, 105, (28,169,0): 251, 69, 107, (28,170,0): 250, 68, 108, (28,171,0): 250, 68, 109, (28,172,0): 250, 67, 111, (28,173,0): 249, 68, 111, (28,174,0): 249, 68, 113, (28,175,0): 250, 67, 111, (28,176,0): 255, 72, 112, (28,177,0): 255, 66, 104, (28,178,0): 255, 74, 109, (28,179,0): 253, 79, 112, (28,180,0): 238, 75, 104, (28,181,0): 230, 80, 107, (28,182,0): 226, 93, 114, (28,183,0): 216, 99, 115, (28,184,0): 186, 91, 99, (28,185,0): 140, 64, 68, (28,186,0): 96, 38, 36, (28,187,0): 81, 43, 34, (28,188,0): 86, 64, 51, (28,189,0): 86, 79, 61, (28,190,0): 74, 76, 55, (28,191,0): 65, 67, 45, (28,192,0): 82, 74, 51, (28,193,0): 101, 89, 67, (28,194,0): 117, 106, 86, (28,195,0): 128, 123, 103, (28,196,0): 142, 141, 121, (28,197,0): 153, 156, 139, (28,198,0): 149, 156, 140, (28,199,0): 136, 147, 131, (28,200,0): 130, 142, 128, (28,201,0): 137, 151, 136, (28,202,0): 143, 155, 141, (28,203,0): 140, 153, 136, (28,204,0): 135, 146, 130, (28,205,0): 138, 147, 130, (28,206,0): 151, 158, 142, (28,207,0): 164, 168, 153, (28,208,0): 178, 182, 167, (28,209,0): 184, 188, 174, (28,210,0): 191, 193, 182, (28,211,0): 192, 193, 185, (28,212,0): 194, 195, 189, (28,213,0): 197, 198, 193, (28,214,0): 195, 195, 195, (28,215,0): 190, 190, 190, (28,216,0): 176, 181, 177, (28,217,0): 162, 169, 162, (28,218,0): 141, 151, 140, (28,219,0): 121, 135, 118, (28,220,0): 105, 123, 101, (28,221,0): 92, 115, 89, (28,222,0): 84, 109, 79, (28,223,0): 82, 102, 74, (28,224,0): 80, 90, 66, (28,225,0): 84, 89, 67, (28,226,0): 86, 91, 71, (29,0,0): 53, 54, 48, (29,1,0): 53, 54, 48, (29,2,0): 54, 55, 49, (29,3,0): 55, 56, 50, (29,4,0): 56, 57, 51, (29,5,0): 58, 59, 53, (29,6,0): 61, 60, 55, (29,7,0): 62, 61, 56, (29,8,0): 64, 63, 58, (29,9,0): 64, 63, 58, (29,10,0): 67, 64, 59, (29,11,0): 68, 65, 60, (29,12,0): 69, 66, 61, (29,13,0): 69, 66, 61, (29,14,0): 71, 66, 62, (29,15,0): 71, 66, 62, (29,16,0): 71, 68, 61, (29,17,0): 71, 68, 61, (29,18,0): 72, 67, 61, (29,19,0): 73, 68, 62, (29,20,0): 73, 69, 60, (29,21,0): 73, 69, 60, (29,22,0): 75, 68, 58, (29,23,0): 76, 69, 59, (29,24,0): 76, 67, 58, (29,25,0): 75, 67, 56, (29,26,0): 76, 66, 56, (29,27,0): 75, 65, 53, (29,28,0): 76, 64, 52, (29,29,0): 75, 63, 51, (29,30,0): 74, 62, 50, (29,31,0): 73, 61, 49, (29,32,0): 71, 61, 49, (29,33,0): 71, 61, 49, (29,34,0): 70, 60, 48, (29,35,0): 70, 60, 48, (29,36,0): 69, 59, 49, (29,37,0): 69, 59, 49, (29,38,0): 68, 59, 50, (29,39,0): 67, 58, 49, (29,40,0): 65, 58, 48, (29,41,0): 65, 58, 48, (29,42,0): 64, 57, 49, (29,43,0): 64, 57, 49, (29,44,0): 61, 56, 50, (29,45,0): 60, 55, 49, (29,46,0): 59, 54, 48, (29,47,0): 59, 54, 48, (29,48,0): 59, 55, 46, (29,49,0): 59, 55, 46, (29,50,0): 59, 55, 44, (29,51,0): 60, 56, 45, (29,52,0): 63, 57, 45, (29,53,0): 65, 59, 47, (29,54,0): 68, 60, 47, (29,55,0): 69, 61, 48, (29,56,0): 72, 63, 48, (29,57,0): 74, 62, 48, (29,58,0): 76, 63, 47, (29,59,0): 77, 64, 48, (29,60,0): 78, 65, 48, (29,61,0): 78, 65, 48, (29,62,0): 79, 63, 47, (29,63,0): 79, 63, 47, (29,64,0): 79, 63, 50, (29,65,0): 78, 61, 51, (29,66,0): 77, 60, 50, (29,67,0): 76, 59, 49, (29,68,0): 73, 59, 48, (29,69,0): 71, 59, 47, (29,70,0): 70, 57, 48, (29,71,0): 67, 57, 47, (29,72,0): 67, 59, 48, (29,73,0): 66, 60, 48, (29,74,0): 66, 59, 49, (29,75,0): 64, 60, 49, (29,76,0): 64, 62, 50, (29,77,0): 65, 63, 51, (29,78,0): 66, 63, 54, (29,79,0): 78, 59, 52, (29,80,0): 106, 57, 52, (29,81,0): 149, 71, 69, (29,82,0): 195, 90, 95, (29,83,0): 218, 88, 98, (29,84,0): 220, 68, 81, (29,85,0): 219, 57, 70, (29,86,0): 209, 52, 59, (29,87,0): 188, 44, 43, (29,88,0): 172, 50, 39, (29,89,0): 159, 56, 37, (29,90,0): 150, 58, 33, (29,91,0): 148, 58, 32, (29,92,0): 161, 61, 38, (29,93,0): 179, 64, 46, (29,94,0): 193, 59, 50, (29,95,0): 189, 56, 49, (29,96,0): 167, 55, 44, (29,97,0): 162, 58, 45, (29,98,0): 165, 57, 45, (29,99,0): 167, 55, 44, (29,100,0): 175, 58, 49, (29,101,0): 184, 66, 56, (29,102,0): 186, 69, 59, (29,103,0): 183, 69, 58, (29,104,0): 174, 62, 50, (29,105,0): 173, 63, 48, (29,106,0): 167, 60, 44, (29,107,0): 164, 54, 39, (29,108,0): 170, 54, 41, (29,109,0): 182, 62, 48, (29,110,0): 195, 68, 59, (29,111,0): 202, 71, 61, (29,112,0): 188, 58, 45, (29,113,0): 203, 65, 54, (29,114,0): 221, 70, 63, (29,115,0): 232, 68, 66, (29,116,0): 239, 63, 65, (29,117,0): 239, 59, 62, (29,118,0): 231, 52, 55, (29,119,0): 218, 48, 48, (29,120,0): 216, 57, 53, (29,121,0): 222, 73, 66, (29,122,0): 229, 85, 76, (29,123,0): 224, 80, 71, (29,124,0): 216, 63, 57, (29,125,0): 214, 50, 48, (29,126,0): 224, 48, 50, (29,127,0): 231, 55, 55, (29,128,0): 216, 49, 40, (29,129,0): 221, 61, 47, (29,130,0): 202, 46, 34, (29,131,0): 205, 56, 49, (29,132,0): 189, 52, 44, (29,133,0): 174, 55, 47, (29,134,0): 200, 104, 92, (29,135,0): 184, 108, 92, (29,136,0): 142, 87, 67, (29,137,0): 135, 90, 67, (29,138,0): 132, 86, 63, (29,139,0): 139, 81, 61, (29,140,0): 170, 91, 76, (29,141,0): 209, 106, 97, (29,142,0): 226, 103, 98, (29,143,0): 229, 83, 84, (29,144,0): 240, 69, 75, (29,145,0): 239, 62, 70, (29,146,0): 226, 60, 64, (29,147,0): 216, 62, 62, (29,148,0): 209, 66, 62, (29,149,0): 209, 72, 66, (29,150,0): 219, 80, 77, (29,151,0): 233, 87, 87, (29,152,0): 235, 79, 82, (29,153,0): 238, 68, 77, (29,154,0): 239, 59, 71, (29,155,0): 245, 54, 70, (29,156,0): 246, 50, 70, (29,157,0): 246, 47, 68, (29,158,0): 249, 50, 71, (29,159,0): 253, 55, 78, (29,160,0): 251, 57, 83, (29,161,0): 248, 58, 84, (29,162,0): 248, 58, 86, (29,163,0): 249, 59, 87, (29,164,0): 254, 61, 92, (29,165,0): 255, 63, 97, (29,166,0): 255, 67, 101, (29,167,0): 255, 68, 107, (29,168,0): 251, 60, 101, (29,169,0): 251, 62, 104, (29,170,0): 250, 63, 106, (29,171,0): 247, 64, 108, (29,172,0): 247, 64, 110, (29,173,0): 244, 62, 110, (29,174,0): 241, 61, 108, (29,175,0): 241, 60, 105, (29,176,0): 255, 74, 114, (29,177,0): 251, 61, 97, (29,178,0): 251, 66, 100, (29,179,0): 255, 78, 110, (29,180,0): 251, 77, 110, (29,181,0): 243, 80, 109, (29,182,0): 236, 86, 111, (29,183,0): 224, 91, 110, (29,184,0): 231, 114, 130, (29,185,0): 194, 97, 106, (29,186,0): 150, 74, 76, (29,187,0): 116, 58, 56, (29,188,0): 93, 53, 45, (29,189,0): 82, 56, 43, (29,190,0): 82, 66, 50, (29,191,0): 87, 76, 58, (29,192,0): 94, 81, 65, (29,193,0): 114, 101, 85, (29,194,0): 136, 124, 110, (29,195,0): 149, 141, 130, (29,196,0): 159, 157, 145, (29,197,0): 166, 167, 159, (29,198,0): 161, 166, 159, (29,199,0): 150, 156, 152, (29,200,0): 149, 158, 155, (29,201,0): 158, 167, 164, (29,202,0): 166, 175, 172, (29,203,0): 166, 172, 168, (29,204,0): 162, 167, 163, (29,205,0): 166, 168, 163, (29,206,0): 181, 180, 176, (29,207,0): 194, 193, 188, (29,208,0): 204, 201, 192, (29,209,0): 209, 206, 197, (29,210,0): 213, 208, 204, (29,211,0): 213, 208, 205, (29,212,0): 212, 206, 206, (29,213,0): 213, 207, 209, (29,214,0): 209, 203, 207, (29,215,0): 203, 198, 202, (29,216,0): 191, 189, 192, (29,217,0): 176, 178, 175, (29,218,0): 152, 159, 152, (29,219,0): 128, 140, 126, (29,220,0): 109, 126, 107, (29,221,0): 96, 116, 91, (29,222,0): 87, 110, 82, (29,223,0): 86, 106, 78, (29,224,0): 83, 95, 71, (29,225,0): 86, 96, 72, (29,226,0): 87, 95, 72, (30,0,0): 53, 54, 48, (30,1,0): 53, 54, 48, (30,2,0): 53, 54, 48, (30,3,0): 53, 54, 48, (30,4,0): 54, 55, 49, (30,5,0): 56, 57, 51, (30,6,0): 58, 57, 52, (30,7,0): 59, 58, 53, (30,8,0): 61, 60, 55, (30,9,0): 62, 61, 56, (30,10,0): 65, 62, 57, (30,11,0): 67, 64, 59, (30,12,0): 68, 65, 60, (30,13,0): 70, 67, 62, (30,14,0): 72, 67, 63, (30,15,0): 72, 67, 63, (30,16,0): 71, 68, 61, (30,17,0): 72, 69, 62, (30,18,0): 73, 68, 62, (30,19,0): 73, 68, 62, (30,20,0): 74, 70, 61, (30,21,0): 74, 70, 61, (30,22,0): 77, 70, 60, (30,23,0): 77, 70, 60, (30,24,0): 77, 69, 58, (30,25,0): 76, 68, 57, (30,26,0): 77, 67, 57, (30,27,0): 77, 67, 55, (30,28,0): 78, 66, 54, (30,29,0): 77, 65, 51, (30,30,0): 78, 64, 51, (30,31,0): 77, 65, 51, (30,32,0): 74, 65, 50, (30,33,0): 74, 65, 50, (30,34,0): 73, 64, 49, (30,35,0): 72, 63, 48, (30,36,0): 71, 61, 49, (30,37,0): 70, 60, 48, (30,38,0): 68, 60, 49, (30,39,0): 68, 60, 49, (30,40,0): 67, 58, 49, (30,41,0): 67, 58, 49, (30,42,0): 65, 58, 50, (30,43,0): 64, 57, 49, (30,44,0): 63, 56, 50, (30,45,0): 63, 56, 50, (30,46,0): 60, 55, 49, (30,47,0): 60, 55, 49, (30,48,0): 60, 56, 47, (30,49,0): 60, 56, 45, (30,50,0): 60, 56, 45, (30,51,0): 60, 56, 45, (30,52,0): 64, 58, 46, (30,53,0): 65, 59, 47, (30,54,0): 68, 60, 47, (30,55,0): 69, 61, 48, (30,56,0): 72, 63, 48, (30,57,0): 75, 63, 49, (30,58,0): 77, 64, 48, (30,59,0): 78, 65, 48, (30,60,0): 80, 64, 48, (30,61,0): 80, 64, 48, (30,62,0): 79, 64, 45, (30,63,0): 79, 63, 47, (30,64,0): 79, 61, 49, (30,65,0): 79, 61, 49, (30,66,0): 77, 61, 48, (30,67,0): 76, 60, 47, (30,68,0): 73, 59, 48, (30,69,0): 70, 58, 46, (30,70,0): 69, 56, 47, (30,71,0): 67, 57, 47, (30,72,0): 66, 58, 47, (30,73,0): 65, 59, 47, (30,74,0): 65, 58, 48, (30,75,0): 63, 59, 48, (30,76,0): 63, 61, 49, (30,77,0): 64, 62, 50, (30,78,0): 64, 64, 52, (30,79,0): 78, 58, 49, (30,80,0): 111, 50, 47, (30,81,0): 165, 75, 75, (30,82,0): 190, 84, 86, (30,83,0): 186, 63, 68, (30,84,0): 188, 49, 54, (30,85,0): 193, 48, 51, (30,86,0): 191, 49, 47, (30,87,0): 183, 50, 41, (30,88,0): 167, 50, 33, (30,89,0): 162, 57, 35, (30,90,0): 155, 61, 33, (30,91,0): 150, 61, 31, (30,92,0): 152, 61, 32, (30,93,0): 158, 63, 35, (30,94,0): 164, 59, 37, (30,95,0): 162, 55, 37, (30,96,0): 158, 54, 41, (30,97,0): 160, 56, 45, (30,98,0): 162, 54, 44, (30,99,0): 165, 52, 44, (30,100,0): 173, 56, 49, (30,101,0): 183, 64, 58, (30,102,0): 184, 67, 60, (30,103,0): 178, 64, 54, (30,104,0): 177, 66, 55, (30,105,0): 173, 65, 52, (30,106,0): 168, 60, 47, (30,107,0): 166, 56, 43, (30,108,0): 175, 58, 48, (30,109,0): 188, 67, 56, (30,110,0): 195, 68, 61, (30,111,0): 196, 65, 55, (30,112,0): 193, 64, 45, (30,113,0): 203, 64, 45, (30,114,0): 213, 55, 43, (30,115,0): 221, 44, 38, (30,116,0): 232, 36, 37, (30,117,0): 245, 39, 43, (30,118,0): 253, 44, 49, (30,119,0): 252, 49, 52, (30,120,0): 233, 44, 42, (30,121,0): 227, 48, 43, (30,122,0): 220, 53, 44, (30,123,0): 217, 55, 44, (30,124,0): 220, 53, 44, (30,125,0): 223, 52, 44, (30,126,0): 229, 50, 45, (30,127,0): 228, 51, 43, (30,128,0): 215, 52, 37, (30,129,0): 212, 55, 38, (30,130,0): 207, 51, 38, (30,131,0): 206, 55, 44, (30,132,0): 196, 55, 46, (30,133,0): 187, 63, 55, (30,134,0): 199, 97, 85, (30,135,0): 210, 127, 113, (30,136,0): 166, 101, 83, (30,137,0): 143, 86, 66, (30,138,0): 139, 76, 58, (30,139,0): 164, 86, 73, (30,140,0): 203, 100, 91, (30,141,0): 224, 99, 95, (30,142,0): 232, 82, 84, (30,143,0): 233, 66, 73, (30,144,0): 246, 69, 77, (30,145,0): 238, 63, 68, (30,146,0): 225, 62, 63, (30,147,0): 213, 64, 60, (30,148,0): 202, 63, 56, (30,149,0): 200, 63, 55, (30,150,0): 211, 69, 65, (30,151,0): 229, 77, 76, (30,152,0): 240, 74, 78, (30,153,0): 245, 63, 75, (30,154,0): 251, 56, 72, (30,155,0): 255, 54, 72, (30,156,0): 254, 53, 72, (30,157,0): 249, 50, 69, (30,158,0): 249, 54, 71, (30,159,0): 250, 59, 77, (30,160,0): 247, 58, 80, (30,161,0): 246, 58, 82, (30,162,0): 246, 56, 82, (30,163,0): 249, 56, 85, (30,164,0): 251, 56, 88, (30,165,0): 254, 59, 93, (30,166,0): 255, 61, 97, (30,167,0): 255, 63, 103, (30,168,0): 255, 64, 106, (30,169,0): 255, 64, 108, (30,170,0): 255, 65, 112, (30,171,0): 255, 67, 115, (30,172,0): 251, 68, 116, (30,173,0): 249, 67, 116, (30,174,0): 247, 67, 115, (30,175,0): 244, 67, 111, (30,176,0): 251, 73, 109, (30,177,0): 245, 68, 97, (30,178,0): 249, 72, 101, (30,179,0): 252, 77, 106, (30,180,0): 250, 77, 107, (30,181,0): 255, 88, 116, (30,182,0): 255, 97, 122, (30,183,0): 242, 94, 116, (30,184,0): 240, 107, 126, (30,185,0): 229, 113, 126, (30,186,0): 211, 111, 119, (30,187,0): 175, 93, 97, (30,188,0): 132, 67, 65, (30,189,0): 104, 54, 47, (30,190,0): 105, 65, 55, (30,191,0): 115, 85, 74, (30,192,0): 121, 101, 92, (30,193,0): 140, 125, 118, (30,194,0): 163, 150, 144, (30,195,0): 173, 163, 161, (30,196,0): 178, 174, 171, (30,197,0): 182, 182, 182, (30,198,0): 178, 182, 185, (30,199,0): 170, 175, 179, (30,200,0): 176, 183, 189, (30,201,0): 182, 189, 197, (30,202,0): 189, 193, 202, (30,203,0): 192, 195, 202, (30,204,0): 195, 194, 202, (30,205,0): 201, 198, 205, (30,206,0): 213, 206, 214, (30,207,0): 221, 215, 219, (30,208,0): 226, 218, 216, (30,209,0): 231, 221, 219, (30,210,0): 233, 221, 221, (30,211,0): 230, 218, 220, (30,212,0): 229, 216, 223, (30,213,0): 228, 215, 224, (30,214,0): 224, 212, 222, (30,215,0): 217, 207, 216, (30,216,0): 202, 197, 203, (30,217,0): 186, 186, 186, (30,218,0): 162, 167, 163, (30,219,0): 136, 146, 135, (30,220,0): 116, 130, 113, (30,221,0): 101, 120, 98, (30,222,0): 92, 115, 87, (30,223,0): 91, 111, 83, (30,224,0): 92, 106, 80, (30,225,0): 92, 105, 79, (30,226,0): 94, 104, 79, (31,0,0): 53, 54, 49, (31,1,0): 53, 54, 49, (31,2,0): 53, 54, 49, (31,3,0): 53, 54, 48, (31,4,0): 53, 54, 49, (31,5,0): 54, 55, 49, (31,6,0): 56, 55, 50, (31,7,0): 57, 56, 51, (31,8,0): 60, 59, 54, (31,9,0): 61, 60, 55, (31,10,0): 64, 61, 56, (31,11,0): 66, 63, 58, (31,12,0): 68, 65, 60, (31,13,0): 70, 67, 60, (31,14,0): 71, 68, 61, (31,15,0): 72, 69, 62, (31,16,0): 72, 69, 62, (31,17,0): 72, 69, 62, (31,18,0): 72, 69, 60, (31,19,0): 74, 70, 61, (31,20,0): 74, 70, 59, (31,21,0): 75, 71, 59, (31,22,0): 75, 71, 59, (31,23,0): 78, 72, 58, (31,24,0): 77, 71, 59, (31,25,0): 77, 71, 59, (31,26,0): 77, 69, 58, (31,27,0): 77, 68, 59, (31,28,0): 77, 68, 59, (31,29,0): 77, 68, 61, (31,30,0): 78, 67, 63, (31,31,0): 78, 67, 61, (31,32,0): 77, 67, 55, (31,33,0): 77, 68, 53, (31,34,0): 75, 66, 51, (31,35,0): 74, 65, 50, (31,36,0): 72, 62, 50, (31,37,0): 71, 61, 49, (31,38,0): 69, 61, 50, (31,39,0): 68, 59, 50, (31,40,0): 67, 58, 49, (31,41,0): 67, 58, 51, (31,42,0): 65, 58, 50, (31,43,0): 65, 58, 52, (31,44,0): 64, 57, 51, (31,45,0): 63, 55, 52, (31,46,0): 60, 55, 51, (31,47,0): 60, 55, 49, (31,48,0): 62, 55, 47, (31,49,0): 62, 55, 47, (31,50,0): 60, 56, 47, (31,51,0): 61, 57, 48, (31,52,0): 62, 58, 49, (31,53,0): 65, 58, 50, (31,54,0): 67, 60, 50, (31,55,0): 68, 61, 51, (31,56,0): 72, 64, 53, (31,57,0): 73, 63, 51, (31,58,0): 76, 64, 50, (31,59,0): 77, 65, 49, (31,60,0): 78, 65, 48, (31,61,0): 80, 64, 48, (31,62,0): 79, 64, 45, (31,63,0): 79, 63, 47, (31,64,0): 76, 62, 49, (31,65,0): 76, 62, 51, (31,66,0): 75, 61, 50, (31,67,0): 76, 59, 51, (31,68,0): 74, 57, 49, (31,69,0): 73, 56, 49, (31,70,0): 70, 55, 48, (31,71,0): 67, 56, 50, (31,72,0): 65, 56, 47, (31,73,0): 62, 58, 47, (31,74,0): 61, 59, 47, (31,75,0): 60, 61, 47, (31,76,0): 63, 61, 48, (31,77,0): 64, 62, 47, (31,78,0): 66, 63, 48, (31,79,0): 83, 57, 44, (31,80,0): 134, 61, 55, (31,81,0): 193, 93, 91, (31,82,0): 200, 90, 89, (31,83,0): 174, 56, 54, (31,84,0): 170, 47, 42, (31,85,0): 177, 50, 43, (31,86,0): 171, 47, 37, (31,87,0): 171, 51, 35, (31,88,0): 170, 58, 38, (31,89,0): 171, 67, 42, (31,90,0): 169, 71, 44, (31,91,0): 163, 70, 39, (31,92,0): 160, 66, 38, (31,93,0): 161, 66, 38, (31,94,0): 161, 61, 35, (31,95,0): 158, 58, 35, (31,96,0): 160, 57, 42, (31,97,0): 163, 59, 48, (31,98,0): 166, 58, 48, (31,99,0): 166, 55, 46, (31,100,0): 173, 60, 52, (31,101,0): 182, 67, 60, (31,102,0): 183, 69, 59, (31,103,0): 176, 64, 53, (31,104,0): 171, 61, 48, (31,105,0): 168, 60, 47, (31,106,0): 169, 59, 46, (31,107,0): 172, 60, 48, (31,108,0): 187, 69, 57, (31,109,0): 198, 76, 65, (31,110,0): 197, 69, 60, (31,111,0): 188, 56, 44, (31,112,0): 188, 55, 36, (31,113,0): 201, 60, 40, (31,114,0): 218, 61, 46, (31,115,0): 227, 53, 44, (31,116,0): 238, 44, 42, (31,117,0): 246, 42, 43, (31,118,0): 249, 40, 43, (31,119,0): 247, 39, 39, (31,120,0): 246, 44, 42, (31,121,0): 241, 48, 43, (31,122,0): 236, 52, 44, (31,123,0): 232, 54, 44, (31,124,0): 227, 53, 42, (31,125,0): 226, 52, 41, (31,126,0): 225, 51, 40, (31,127,0): 222, 52, 37, (31,128,0): 222, 59, 42, (31,129,0): 207, 50, 31, (31,130,0): 219, 63, 48, (31,131,0): 205, 55, 41, (31,132,0): 199, 57, 45, (31,133,0): 194, 63, 53, (31,134,0): 179, 65, 54, (31,135,0): 209, 108, 96, (31,136,0): 191, 103, 89, (31,137,0): 165, 82, 66, (31,138,0): 170, 78, 65, (31,139,0): 205, 98, 90, (31,140,0): 232, 103, 98, (31,141,0): 231, 81, 82, (31,142,0): 235, 64, 70, (31,143,0): 246, 65, 74, (31,144,0): 237, 60, 68, (31,145,0): 227, 58, 61, (31,146,0): 215, 59, 60, (31,147,0): 207, 62, 57, (31,148,0): 195, 61, 52, (31,149,0): 185, 54, 44, (31,150,0): 187, 52, 46, (31,151,0): 199, 56, 52, (31,152,0): 229, 71, 72, (31,153,0): 234, 63, 69, (31,154,0): 242, 58, 68, (31,155,0): 249, 57, 72, (31,156,0): 252, 57, 73, (31,157,0): 250, 55, 71, (31,158,0): 250, 58, 73, (31,159,0): 251, 63, 78, (31,160,0): 252, 67, 85, (31,161,0): 251, 65, 86, (31,162,0): 250, 63, 84, (31,163,0): 249, 59, 84, (31,164,0): 251, 58, 85, (31,165,0): 253, 58, 90, (31,166,0): 255, 59, 94, (31,167,0): 255, 60, 99, (31,168,0): 255, 64, 104, (31,169,0): 255, 63, 107, (31,170,0): 255, 63, 110, (31,171,0): 251, 63, 111, (31,172,0): 247, 64, 112, (31,173,0): 245, 65, 113, (31,174,0): 245, 64, 115, (31,175,0): 243, 66, 112, (31,176,0): 244, 68, 106, (31,177,0): 252, 79, 109, (31,178,0): 255, 86, 115, (31,179,0): 243, 76, 104, (31,180,0): 231, 66, 96, (31,181,0): 249, 86, 115, (31,182,0): 255, 105, 133, (31,183,0): 255, 102, 130, (31,184,0): 246, 94, 119, (31,185,0): 238, 96, 120, (31,186,0): 231, 104, 123, (31,187,0): 220, 112, 125, (31,188,0): 199, 112, 120, (31,189,0): 170, 102, 103, (31,190,0): 143, 92, 88, (31,191,0): 126, 89, 81, (31,192,0): 153, 126, 119, (31,193,0): 171, 152, 146, (31,194,0): 190, 176, 173, (31,195,0): 197, 187, 186, (31,196,0): 198, 194, 195, (31,197,0): 200, 199, 204, (31,198,0): 199, 199, 207, (31,199,0): 195, 195, 207, (31,200,0): 203, 202, 216, (31,201,0): 204, 202, 216, (31,202,0): 209, 202, 218, (31,203,0): 215, 206, 223, (31,204,0): 221, 213, 228, (31,205,0): 230, 219, 233, (31,206,0): 232, 224, 235, (31,207,0): 237, 227, 235, (31,208,0): 239, 229, 230, (31,209,0): 242, 232, 230, (31,210,0): 244, 232, 232, (31,211,0): 240, 228, 230, (31,212,0): 238, 225, 232, (31,213,0): 237, 224, 233, (31,214,0): 234, 221, 231, (31,215,0): 228, 216, 226, (31,216,0): 209, 202, 209, (31,217,0): 193, 191, 194, (31,218,0): 171, 171, 169, (31,219,0): 145, 150, 143, (31,220,0): 122, 134, 120, (31,221,0): 108, 123, 104, (31,222,0): 98, 117, 95, (31,223,0): 96, 114, 90, (31,224,0): 100, 114, 89, (31,225,0): 100, 112, 88, (31,226,0): 100, 110, 86, (32,0,0): 50, 49, 47, (32,1,0): 51, 50, 48, (32,2,0): 52, 51, 49, (32,3,0): 54, 53, 49, (32,4,0): 56, 55, 53, (32,5,0): 57, 56, 52, (32,6,0): 57, 56, 52, (32,7,0): 57, 56, 52, (32,8,0): 59, 58, 53, (32,9,0): 60, 59, 54, (32,10,0): 61, 61, 53, (32,11,0): 63, 63, 55, (32,12,0): 65, 65, 57, (32,13,0): 67, 67, 57, (32,14,0): 69, 69, 59, (32,15,0): 69, 69, 59, (32,16,0): 72, 72, 64, (32,17,0): 72, 72, 62, (32,18,0): 72, 72, 60, (32,19,0): 74, 72, 59, (32,20,0): 75, 74, 56, (32,21,0): 76, 75, 55, (32,22,0): 77, 76, 56, (32,23,0): 78, 75, 56, (32,24,0): 77, 74, 57, (32,25,0): 74, 70, 58, (32,26,0): 71, 68, 59, (32,27,0): 74, 70, 67, (32,28,0): 78, 73, 77, (32,29,0): 78, 73, 80, (32,30,0): 71, 68, 79, (32,31,0): 68, 63, 69, (32,32,0): 78, 69, 62, (32,33,0): 76, 67, 52, (32,34,0): 74, 64, 52, (32,35,0): 75, 65, 53, (32,36,0): 77, 67, 57, (32,37,0): 76, 66, 56, (32,38,0): 70, 61, 52, (32,39,0): 66, 57, 48, (32,40,0): 69, 60, 53, (32,41,0): 67, 58, 53, (32,42,0): 64, 57, 51, (32,43,0): 63, 55, 52, (32,44,0): 64, 56, 53, (32,45,0): 63, 55, 53, (32,46,0): 60, 55, 52, (32,47,0): 60, 52, 50, (32,48,0): 67, 58, 53, (32,49,0): 66, 57, 52, (32,50,0): 65, 57, 54, (32,51,0): 62, 57, 53, (32,52,0): 63, 58, 55, (32,53,0): 62, 58, 55, (32,54,0): 63, 59, 56, (32,55,0): 64, 60, 57, (32,56,0): 66, 63, 58, (32,57,0): 68, 64, 55, (32,58,0): 71, 64, 54, (32,59,0): 74, 64, 52, (32,60,0): 76, 64, 48, (32,61,0): 79, 64, 45, (32,62,0): 79, 64, 43, (32,63,0): 76, 63, 44, (32,64,0): 70, 64, 50, (32,65,0): 69, 62, 52, (32,66,0): 72, 59, 51, (32,67,0): 74, 56, 52, (32,68,0): 75, 54, 53, (32,69,0): 77, 52, 55, (32,70,0): 75, 55, 57, (32,71,0): 72, 58, 58, (32,72,0): 67, 62, 58, (32,73,0): 55, 56, 48, (32,74,0): 55, 59, 45, (32,75,0): 62, 66, 49, (32,76,0): 62, 64, 43, (32,77,0): 58, 56, 35, (32,78,0): 67, 59, 36, (32,79,0): 101, 66, 46, (32,80,0): 189, 106, 92, (32,81,0): 183, 75, 65, (32,82,0): 166, 55, 44, (32,83,0): 164, 54, 41, (32,84,0): 167, 55, 43, (32,85,0): 164, 54, 39, (32,86,0): 163, 56, 38, (32,87,0): 168, 61, 43, (32,88,0): 162, 57, 36, (32,89,0): 165, 60, 38, (32,90,0): 169, 64, 42, (32,91,0): 171, 65, 41, (32,92,0): 172, 61, 41, (32,93,0): 172, 57, 38, (32,94,0): 174, 54, 37, (32,95,0): 170, 55, 37, (32,96,0): 164, 54, 39, (32,97,0): 161, 55, 41, (32,98,0): 162, 56, 42, (32,99,0): 166, 60, 46, (32,100,0): 170, 64, 50, (32,101,0): 172, 66, 52, (32,102,0): 172, 66, 50, (32,103,0): 172, 65, 49, (32,104,0): 169, 62, 44, (32,105,0): 171, 61, 44, (32,106,0): 173, 60, 44, (32,107,0): 179, 61, 47, (32,108,0): 189, 67, 52, (32,109,0): 196, 70, 56, (32,110,0): 192, 62, 49, (32,111,0): 184, 50, 38, (32,112,0): 199, 57, 43, (32,113,0): 203, 57, 42, (32,114,0): 207, 57, 43, (32,115,0): 213, 57, 45, (32,116,0): 219, 55, 45, (32,117,0): 225, 54, 46, (32,118,0): 231, 52, 47, (32,119,0): 237, 50, 45, (32,120,0): 240, 46, 44, (32,121,0): 242, 47, 45, (32,122,0): 242, 49, 44, (32,123,0): 239, 50, 44, (32,124,0): 234, 53, 42, (32,125,0): 227, 55, 41, (32,126,0): 221, 58, 41, (32,127,0): 218, 59, 40, (32,128,0): 219, 58, 38, (32,129,0): 212, 51, 31, (32,130,0): 207, 52, 32, (32,131,0): 206, 56, 39, (32,132,0): 197, 56, 39, (32,133,0): 190, 54, 40, (32,134,0): 194, 66, 53, (32,135,0): 207, 83, 73, (32,136,0): 200, 78, 67, (32,137,0): 207, 83, 75, (32,138,0): 225, 92, 87, (32,139,0): 238, 93, 90, (32,140,0): 240, 80, 82, (32,141,0): 237, 62, 67, (32,142,0): 243, 56, 63, (32,143,0): 248, 63, 71, (32,144,0): 235, 64, 70, (32,145,0): 225, 67, 68, (32,146,0): 214, 64, 65, (32,147,0): 201, 62, 57, (32,148,0): 187, 60, 51, (32,149,0): 179, 58, 47, (32,150,0): 177, 59, 47, (32,151,0): 180, 59, 48, (32,152,0): 202, 76, 64, (32,153,0): 212, 75, 67, (32,154,0): 222, 70, 67, (32,155,0): 226, 62, 63, (32,156,0): 235, 60, 65, (32,157,0): 248, 63, 71, (32,158,0): 254, 62, 73, (32,159,0): 249, 59, 71, (32,160,0): 253, 69, 81, (32,161,0): 250, 68, 81, (32,162,0): 253, 68, 82, (32,163,0): 255, 68, 85, (32,164,0): 253, 64, 86, (32,165,0): 250, 60, 85, (32,166,0): 254, 61, 90, (32,167,0): 255, 66, 100, (32,168,0): 255, 70, 107, (32,169,0): 255, 65, 106, (32,170,0): 249, 59, 103, (32,171,0): 245, 58, 103, (32,172,0): 244, 61, 109, (32,173,0): 248, 68, 115, (32,174,0): 253, 73, 121, (32,175,0): 255, 75, 122, (32,176,0): 255, 78, 121, (32,177,0): 255, 78, 117, (32,178,0): 249, 81, 116, (32,179,0): 239, 82, 113, (32,180,0): 229, 79, 106, (32,181,0): 229, 79, 106, (32,182,0): 247, 90, 119, (32,183,0): 255, 103, 135, (32,184,0): 255, 93, 128, (32,185,0): 240, 69, 105, (32,186,0): 245, 86, 118, (32,187,0): 232, 94, 120, (32,188,0): 198, 91, 109, (32,189,0): 194, 117, 125, (32,190,0): 140, 92, 92, (32,191,0): 145, 114, 109, (32,192,0): 171, 143, 132, (32,193,0): 189, 167, 156, (32,194,0): 212, 195, 187, (32,195,0): 222, 213, 208, (32,196,0): 221, 220, 218, (32,197,0): 220, 219, 224, (32,198,0): 222, 220, 231, (32,199,0): 226, 219, 235, (32,200,0): 231, 216, 237, (32,201,0): 235, 216, 238, (32,202,0): 241, 217, 241, (32,203,0): 244, 220, 242, (32,204,0): 245, 227, 243, (32,205,0): 245, 231, 244, (32,206,0): 243, 236, 244, (32,207,0): 244, 239, 243, (32,208,0): 248, 243, 240, (32,209,0): 248, 243, 239, (32,210,0): 248, 240, 238, (32,211,0): 245, 236, 237, (32,212,0): 242, 231, 235, (32,213,0): 237, 226, 232, (32,214,0): 232, 221, 227, (32,215,0): 229, 220, 225, (32,216,0): 214, 208, 212, (32,217,0): 205, 201, 202, (32,218,0): 187, 186, 184, (32,219,0): 163, 165, 160, (32,220,0): 139, 144, 137, (32,221,0): 121, 131, 120, (32,222,0): 114, 125, 111, (32,223,0): 112, 123, 107, (32,224,0): 123, 132, 115, (32,225,0): 119, 128, 109, (32,226,0): 118, 125, 107, (33,0,0): 48, 46, 47, (33,1,0): 49, 47, 48, (33,2,0): 51, 50, 48, (33,3,0): 53, 52, 50, (33,4,0): 54, 53, 51, (33,5,0): 55, 54, 50, (33,6,0): 56, 55, 51, (33,7,0): 56, 55, 50, (33,8,0): 58, 57, 52, (33,9,0): 59, 58, 53, (33,10,0): 61, 61, 53, (33,11,0): 63, 63, 55, (33,12,0): 65, 65, 55, (33,13,0): 67, 67, 57, (33,14,0): 68, 68, 56, (33,15,0): 69, 69, 59, (33,16,0): 72, 72, 62, (33,17,0): 72, 72, 62, (33,18,0): 72, 72, 60, (33,19,0): 74, 72, 57, (33,20,0): 75, 74, 54, (33,21,0): 76, 75, 54, (33,22,0): 77, 77, 53, (33,23,0): 78, 77, 56, (33,24,0): 75, 74, 56, (33,25,0): 75, 73, 61, (33,26,0): 75, 74, 69, (33,27,0): 80, 80, 82, (33,28,0): 87, 85, 96, (33,29,0): 89, 88, 106, (33,30,0): 86, 84, 106, (33,31,0): 82, 79, 96, (33,32,0): 79, 73, 75, (33,33,0): 77, 68, 63, (33,34,0): 72, 63, 58, (33,35,0): 70, 61, 56, (33,36,0): 71, 62, 57, (33,37,0): 72, 63, 58, (33,38,0): 70, 61, 56, (33,39,0): 66, 59, 53, (33,40,0): 68, 58, 56, (33,41,0): 65, 57, 54, (33,42,0): 63, 55, 52, (33,43,0): 63, 55, 52, (33,44,0): 64, 56, 53, (33,45,0): 64, 56, 53, (33,46,0): 61, 56, 53, (33,47,0): 59, 54, 50, (33,48,0): 61, 52, 47, (33,49,0): 61, 52, 47, (33,50,0): 61, 53, 50, (33,51,0): 60, 55, 52, (33,52,0): 61, 57, 54, (33,53,0): 62, 58, 57, (33,54,0): 61, 60, 58, (33,55,0): 62, 61, 57, (33,56,0): 66, 63, 58, (33,57,0): 68, 63, 57, (33,58,0): 71, 64, 54, (33,59,0): 74, 64, 52, (33,60,0): 77, 64, 48, (33,61,0): 79, 64, 45, (33,62,0): 80, 63, 43, (33,63,0): 76, 63, 44, (33,64,0): 65, 64, 46, (33,65,0): 63, 64, 50, (33,66,0): 69, 60, 53, (33,67,0): 72, 57, 54, (33,68,0): 74, 54, 55, (33,69,0): 74, 52, 55, (33,70,0): 70, 51, 55, (33,71,0): 67, 52, 55, (33,72,0): 65, 60, 57, (33,73,0): 60, 59, 54, (33,74,0): 61, 61, 49, (33,75,0): 69, 63, 49, (33,76,0): 74, 58, 42, (33,77,0): 80, 54, 37, (33,78,0): 100, 65, 46, (33,79,0): 133, 74, 58, (33,80,0): 176, 80, 66, (33,81,0): 171, 59, 45, (33,82,0): 160, 50, 35, (33,83,0): 161, 54, 38, (33,84,0): 163, 58, 39, (33,85,0): 158, 55, 36, (33,86,0): 158, 57, 37, (33,87,0): 163, 62, 42, (33,88,0): 161, 59, 37, (33,89,0): 167, 60, 40, (33,90,0): 174, 63, 43, (33,91,0): 179, 64, 45, (33,92,0): 182, 61, 44, (33,93,0): 183, 57, 42, (33,94,0): 184, 54, 40, (33,95,0): 181, 55, 41, (33,96,0): 170, 57, 41, (33,97,0): 165, 58, 42, (33,98,0): 164, 57, 41, (33,99,0): 165, 59, 43, (33,100,0): 168, 62, 46, (33,101,0): 171, 65, 49, (33,102,0): 171, 66, 47, (33,103,0): 171, 64, 46, (33,104,0): 174, 63, 44, (33,105,0): 171, 58, 40, (33,106,0): 177, 60, 43, (33,107,0): 191, 69, 54, (33,108,0): 198, 72, 57, (33,109,0): 193, 63, 49, (33,110,0): 188, 56, 43, (33,111,0): 192, 54, 41, (33,112,0): 203, 55, 43, (33,113,0): 207, 55, 44, (33,114,0): 208, 57, 46, (33,115,0): 209, 59, 45, (33,116,0): 212, 60, 47, (33,117,0): 216, 58, 46, (33,118,0): 224, 56, 47, (33,119,0): 231, 52, 45, (33,120,0): 238, 49, 45, (33,121,0): 244, 46, 43, (33,122,0): 244, 46, 43, (33,123,0): 241, 48, 43, (33,124,0): 234, 52, 41, (33,125,0): 225, 55, 40, (33,126,0): 215, 58, 39, (33,127,0): 213, 58, 36, (33,128,0): 222, 60, 39, (33,129,0): 217, 54, 35, (33,130,0): 213, 56, 37, (33,131,0): 212, 61, 42, (33,132,0): 204, 59, 42, (33,133,0): 193, 53, 38, (33,134,0): 196, 58, 47, (33,135,0): 207, 70, 60, (33,136,0): 209, 70, 63, (33,137,0): 218, 73, 68, (33,138,0): 233, 79, 77, (33,139,0): 243, 80, 81, (33,140,0): 244, 71, 73, (33,141,0): 240, 59, 64, (33,142,0): 245, 58, 65, (33,143,0): 248, 67, 72, (33,144,0): 229, 66, 69, (33,145,0): 218, 68, 67, (33,146,0): 210, 66, 65, (33,147,0): 197, 62, 56, (33,148,0): 183, 59, 49, (33,149,0): 174, 58, 45, (33,150,0): 170, 60, 45, (33,151,0): 171, 61, 46, (33,152,0): 182, 69, 53, (33,153,0): 198, 76, 63, (33,154,0): 212, 78, 69, (33,155,0): 220, 71, 67, (33,156,0): 227, 63, 62, (33,157,0): 239, 63, 66, (33,158,0): 250, 63, 70, (33,159,0): 254, 64, 74, (33,160,0): 248, 67, 74, (33,161,0): 247, 67, 76, (33,162,0): 250, 68, 80, (33,163,0): 255, 70, 84, (33,164,0): 253, 66, 83, (33,165,0): 249, 62, 83, (33,166,0): 252, 62, 88, (33,167,0): 255, 66, 97, (33,168,0): 255, 70, 104, (33,169,0): 255, 67, 105, (33,170,0): 252, 63, 105, (33,171,0): 249, 64, 106, (33,172,0): 249, 66, 112, (33,173,0): 252, 70, 118, (33,174,0): 254, 74, 122, (33,175,0): 255, 75, 123, (33,176,0): 255, 72, 120, (33,177,0): 255, 71, 115, (33,178,0): 244, 74, 111, (33,179,0): 242, 82, 116, (33,180,0): 243, 93, 122, (33,181,0): 246, 96, 123, (33,182,0): 247, 88, 118, (33,183,0): 247, 79, 112, (33,184,0): 250, 70, 107, (33,185,0): 248, 68, 107, (33,186,0): 238, 68, 104, (33,187,0): 220, 73, 102, (33,188,0): 203, 92, 111, (33,189,0): 182, 106, 116, (33,190,0): 115, 71, 72, (33,191,0): 150, 121, 115, (33,192,0): 180, 148, 137, (33,193,0): 206, 176, 165, (33,194,0): 229, 209, 200, (33,195,0): 239, 226, 220, (33,196,0): 235, 231, 230, (33,197,0): 233, 232, 237, (33,198,0): 236, 230, 242, (33,199,0): 237, 226, 243, (33,200,0): 246, 227, 249, (33,201,0): 251, 225, 250, (33,202,0): 255, 227, 253, (33,203,0): 255, 230, 253, (33,204,0): 255, 236, 254, (33,205,0): 255, 242, 253, (33,206,0): 254, 247, 254, (33,207,0): 252, 250, 251, (33,208,0): 253, 249, 246, (33,209,0): 252, 249, 244, (33,210,0): 251, 246, 243, (33,211,0): 249, 244, 241, (33,212,0): 247, 238, 239, (33,213,0): 243, 234, 237, (33,214,0): 240, 231, 236, (33,215,0): 238, 229, 234, (33,216,0): 230, 221, 224, (33,217,0): 220, 214, 216, (33,218,0): 202, 198, 197, (33,219,0): 179, 178, 174, (33,220,0): 158, 161, 154, (33,221,0): 142, 147, 140, (33,222,0): 137, 143, 133, (33,223,0): 136, 144, 131, (33,224,0): 142, 148, 134, (33,225,0): 137, 144, 128, (33,226,0): 134, 140, 126, (34,0,0): 47, 46, 44, (34,1,0): 48, 47, 45, (34,2,0): 49, 48, 46, (34,3,0): 50, 49, 47, (34,4,0): 52, 51, 47, (34,5,0): 53, 52, 48, (34,6,0): 55, 54, 50, (34,7,0): 55, 54, 49, (34,8,0): 58, 57, 52, (34,9,0): 58, 58, 50, (34,10,0): 60, 60, 52, (34,11,0): 62, 62, 54, (34,12,0): 64, 64, 54, (34,13,0): 66, 66, 56, (34,14,0): 67, 67, 57, (34,15,0): 68, 68, 58, (34,16,0): 73, 70, 61, (34,17,0): 73, 71, 59, (34,18,0): 74, 72, 59, (34,19,0): 76, 73, 56, (34,20,0): 77, 74, 55, (34,21,0): 78, 76, 55, (34,22,0): 78, 76, 55, (34,23,0): 79, 76, 57, (34,24,0): 75, 73, 58, (34,25,0): 78, 75, 66, (34,26,0): 84, 82, 83, (34,27,0): 95, 94, 102, (34,28,0): 105, 104, 120, (34,29,0): 109, 109, 133, (34,30,0): 108, 107, 138, (34,31,0): 107, 104, 131, (34,32,0): 96, 89, 105, (34,33,0): 89, 81, 92, (34,34,0): 79, 71, 82, (34,35,0): 72, 64, 75, (34,36,0): 72, 62, 71, (34,37,0): 71, 61, 69, (34,38,0): 69, 60, 65, (34,39,0): 64, 58, 60, (34,40,0): 67, 58, 59, (34,41,0): 63, 58, 55, (34,42,0): 60, 55, 52, (34,43,0): 60, 55, 51, (34,44,0): 61, 56, 50, (34,45,0): 62, 57, 51, (34,46,0): 62, 58, 49, (34,47,0): 61, 57, 48, (34,48,0): 56, 51, 45, (34,49,0): 57, 52, 46, (34,50,0): 59, 54, 48, (34,51,0): 60, 57, 50, (34,52,0): 61, 58, 51, (34,53,0): 62, 59, 52, (34,54,0): 63, 60, 53, (34,55,0): 64, 60, 51, (34,56,0): 69, 62, 52, (34,57,0): 71, 63, 52, (34,58,0): 73, 63, 51, (34,59,0): 76, 64, 48, (34,60,0): 79, 63, 48, (34,61,0): 80, 63, 47, (34,62,0): 80, 63, 45, (34,63,0): 76, 63, 44, (34,64,0): 60, 59, 39, (34,65,0): 58, 61, 42, (34,66,0): 62, 60, 47, (34,67,0): 65, 58, 48, (34,68,0): 66, 55, 51, (34,69,0): 67, 53, 52, (34,70,0): 63, 52, 50, (34,71,0): 60, 50, 49, (34,72,0): 63, 55, 52, (34,73,0): 68, 57, 53, (34,74,0): 75, 56, 50, (34,75,0): 82, 49, 44, (34,76,0): 92, 43, 39, (34,77,0): 111, 46, 44, (34,78,0): 139, 58, 57, (34,79,0): 164, 69, 67, (34,80,0): 165, 58, 48, (34,81,0): 162, 50, 36, (34,82,0): 159, 49, 32, (34,83,0): 164, 57, 39, (34,84,0): 165, 60, 41, (34,85,0): 158, 55, 36, (34,86,0): 158, 56, 34, (34,87,0): 162, 60, 38, (34,88,0): 164, 59, 38, (34,89,0): 170, 61, 41, (34,90,0): 177, 65, 45, (34,91,0): 182, 65, 47, (34,92,0): 185, 62, 46, (34,93,0): 187, 60, 45, (34,94,0): 190, 58, 45, (34,95,0): 190, 60, 47, (34,96,0): 178, 60, 46, (34,97,0): 172, 60, 46, (34,98,0): 169, 57, 43, (34,99,0): 169, 57, 43, (34,100,0): 171, 60, 43, (34,101,0): 173, 62, 45, (34,102,0): 173, 62, 45, (34,103,0): 173, 60, 44, (34,104,0): 178, 63, 45, (34,105,0): 176, 56, 40, (34,106,0): 185, 62, 46, (34,107,0): 203, 76, 61, (34,108,0): 203, 71, 58, (34,109,0): 188, 54, 42, (34,110,0): 186, 50, 38, (34,111,0): 201, 57, 46, (34,112,0): 208, 54, 44, (34,113,0): 212, 54, 43, (34,114,0): 212, 56, 44, (34,115,0): 214, 58, 46, (34,116,0): 216, 58, 47, (34,117,0): 220, 56, 46, (34,118,0): 227, 54, 47, (34,119,0): 232, 51, 44, (34,120,0): 240, 48, 45, (34,121,0): 244, 46, 43, (34,122,0): 244, 46, 43, (34,123,0): 240, 49, 41, (34,124,0): 231, 50, 39, (34,125,0): 221, 54, 38, (34,126,0): 212, 56, 34, (34,127,0): 210, 55, 33, (34,128,0): 221, 56, 36, (34,129,0): 220, 53, 35, (34,130,0): 218, 57, 39, (34,131,0): 218, 62, 47, (34,132,0): 211, 61, 46, (34,133,0): 200, 54, 41, (34,134,0): 197, 57, 44, (34,135,0): 203, 65, 55, (34,136,0): 201, 60, 53, (34,137,0): 205, 62, 56, (34,138,0): 217, 69, 65, (34,139,0): 229, 75, 73, (34,140,0): 234, 74, 74, (34,141,0): 233, 67, 67, (34,142,0): 236, 63, 65, (34,143,0): 235, 67, 67, (34,144,0): 222, 67, 65, (34,145,0): 213, 68, 63, (34,146,0): 205, 66, 61, (34,147,0): 194, 61, 52, (34,148,0): 182, 58, 46, (34,149,0): 174, 56, 42, (34,150,0): 171, 58, 42, (34,151,0): 172, 59, 43, (34,152,0): 172, 56, 41, (34,153,0): 192, 68, 56, (34,154,0): 212, 78, 69, (34,155,0): 221, 73, 69, (34,156,0): 224, 64, 64, (34,157,0): 232, 62, 65, (34,158,0): 247, 66, 73, (34,159,0): 255, 72, 80, (34,160,0): 244, 65, 71, (34,161,0): 244, 64, 73, (34,162,0): 249, 67, 79, (34,163,0): 253, 71, 84, (34,164,0): 254, 69, 85, (34,165,0): 250, 64, 85, (34,166,0): 251, 63, 88, (34,167,0): 254, 65, 95, (34,168,0): 255, 68, 102, (34,169,0): 255, 67, 105, (34,170,0): 255, 67, 107, (34,171,0): 255, 70, 112, (34,172,0): 255, 73, 119, (34,173,0): 255, 75, 123, (34,174,0): 255, 76, 124, (34,175,0): 255, 74, 122, (34,176,0): 255, 66, 116, (34,177,0): 255, 68, 116, (34,178,0): 254, 72, 113, (34,179,0): 250, 78, 116, (34,180,0): 252, 91, 124, (34,181,0): 255, 98, 128, (34,182,0): 250, 87, 118, (34,183,0): 236, 69, 99, (34,184,0): 248, 77, 109, (34,185,0): 254, 86, 119, (34,186,0): 218, 64, 92, (34,187,0): 203, 71, 94, (34,188,0): 218, 121, 132, (34,189,0): 187, 121, 123, (34,190,0): 103, 64, 59, (34,191,0): 151, 123, 112, (34,192,0): 178, 140, 129, (34,193,0): 215, 177, 166, (34,194,0): 245, 216, 208, (34,195,0): 253, 234, 228, (34,196,0): 250, 240, 239, (34,197,0): 250, 245, 249, (34,198,0): 249, 243, 253, (34,199,0): 244, 236, 251, (34,200,0): 251, 233, 255, (34,201,0): 255, 233, 255, (34,202,0): 255, 234, 255, (34,203,0): 255, 237, 255, (34,204,0): 255, 242, 255, (34,205,0): 255, 246, 255, (34,206,0): 255, 251, 255, (34,207,0): 255, 254, 252, (34,208,0): 255, 253, 250, (34,209,0): 255, 252, 248, (34,210,0): 255, 249, 247, (34,211,0): 255, 247, 245, (34,212,0): 254, 244, 245, (34,213,0): 252, 242, 243, (34,214,0): 250, 239, 243, (34,215,0): 248, 239, 242, (34,216,0): 240, 231, 234, (34,217,0): 229, 223, 225, (34,218,0): 211, 207, 206, (34,219,0): 190, 189, 185, (34,220,0): 173, 174, 168, (34,221,0): 162, 165, 158, (34,222,0): 157, 163, 153, (34,223,0): 157, 163, 151, (34,224,0): 163, 171, 158, (34,225,0): 157, 165, 150, (34,226,0): 153, 161, 148, (35,0,0): 47, 46, 44, (35,1,0): 47, 46, 44, (35,2,0): 48, 47, 45, (35,3,0): 49, 48, 44, (35,4,0): 50, 49, 45, (35,5,0): 51, 50, 46, (35,6,0): 53, 52, 47, (35,7,0): 54, 53, 48, (35,8,0): 56, 56, 48, (35,9,0): 57, 57, 49, (35,10,0): 59, 59, 51, (35,11,0): 61, 61, 53, (35,12,0): 63, 63, 53, (35,13,0): 65, 65, 55, (35,14,0): 66, 66, 56, (35,15,0): 67, 67, 57, (35,16,0): 72, 69, 60, (35,17,0): 74, 70, 59, (35,18,0): 75, 72, 57, (35,19,0): 77, 74, 57, (35,20,0): 80, 75, 56, (35,21,0): 79, 77, 56, (35,22,0): 81, 76, 56, (35,23,0): 79, 76, 59, (35,24,0): 76, 74, 62, (35,25,0): 81, 80, 76, (35,26,0): 94, 93, 98, (35,27,0): 109, 108, 122, (35,28,0): 122, 122, 146, (35,29,0): 129, 130, 161, (35,30,0): 128, 130, 168, (35,31,0): 128, 128, 166, (35,32,0): 123, 117, 151, (35,33,0): 114, 107, 138, (35,34,0): 101, 95, 123, (35,35,0): 89, 83, 109, (35,36,0): 84, 76, 100, (35,37,0): 77, 69, 90, (35,38,0): 71, 64, 80, (35,39,0): 66, 60, 72, (35,40,0): 68, 63, 70, (35,41,0): 64, 59, 63, (35,42,0): 60, 56, 55, (35,43,0): 59, 54, 51, (35,44,0): 59, 54, 48, (35,45,0): 60, 56, 47, (35,46,0): 61, 57, 46, (35,47,0): 59, 56, 47, (35,48,0): 58, 55, 48, (35,49,0): 57, 57, 49, (35,50,0): 59, 59, 51, (35,51,0): 62, 59, 50, (35,52,0): 63, 61, 49, (35,53,0): 64, 60, 49, (35,54,0): 63, 59, 47, (35,55,0): 65, 59, 45, (35,56,0): 70, 63, 47, (35,57,0): 72, 63, 46, (35,58,0): 75, 63, 47, (35,59,0): 77, 64, 47, (35,60,0): 79, 63, 48, (35,61,0): 79, 63, 47, (35,62,0): 80, 62, 48, (35,63,0): 76, 63, 47, (35,64,0): 66, 61, 42, (35,65,0): 63, 62, 44, (35,66,0): 64, 61, 46, (35,67,0): 65, 58, 48, (35,68,0): 65, 58, 50, (35,69,0): 64, 57, 51, (35,70,0): 62, 57, 53, (35,71,0): 60, 57, 52, (35,72,0): 61, 56, 52, (35,73,0): 70, 56, 53, (35,74,0): 80, 52, 49, (35,75,0): 88, 44, 43, (35,76,0): 107, 41, 43, (35,77,0): 135, 48, 54, (35,78,0): 161, 55, 65, (35,79,0): 174, 61, 65, (35,80,0): 167, 54, 46, (35,81,0): 165, 55, 40, (35,82,0): 165, 58, 40, (35,83,0): 170, 63, 45, (35,84,0): 168, 63, 44, (35,85,0): 160, 57, 38, (35,86,0): 161, 56, 35, (35,87,0): 164, 59, 38, (35,88,0): 165, 58, 38, (35,89,0): 171, 60, 41, (35,90,0): 179, 62, 44, (35,91,0): 185, 64, 47, (35,92,0): 189, 62, 47, (35,93,0): 193, 61, 48, (35,94,0): 197, 61, 49, (35,95,0): 196, 62, 50, (35,96,0): 189, 63, 51, (35,97,0): 182, 61, 50, (35,98,0): 178, 57, 46, (35,99,0): 174, 56, 42, (35,100,0): 175, 57, 43, (35,101,0): 176, 58, 44, (35,102,0): 178, 58, 44, (35,103,0): 179, 57, 42, (35,104,0): 182, 59, 44, (35,105,0): 185, 59, 45, (35,106,0): 196, 66, 52, (35,107,0): 203, 69, 57, (35,108,0): 200, 62, 51, (35,109,0): 190, 49, 39, (35,110,0): 192, 50, 40, (35,111,0): 205, 57, 47, (35,112,0): 214, 53, 43, (35,113,0): 216, 52, 42, (35,114,0): 218, 54, 45, (35,115,0): 219, 55, 45, (35,116,0): 222, 55, 46, (35,117,0): 225, 54, 44, (35,118,0): 230, 51, 44, (35,119,0): 236, 49, 42, (35,120,0): 243, 48, 44, (35,121,0): 244, 46, 43, (35,122,0): 244, 47, 41, (35,123,0): 239, 48, 40, (35,124,0): 228, 50, 38, (35,125,0): 219, 52, 36, (35,126,0): 210, 54, 32, (35,127,0): 208, 53, 31, (35,128,0): 215, 50, 30, (35,129,0): 218, 48, 31, (35,130,0): 218, 52, 36, (35,131,0): 220, 60, 46, (35,132,0): 214, 61, 47, (35,133,0): 208, 57, 46, (35,134,0): 205, 61, 50, (35,135,0): 210, 68, 58, (35,136,0): 196, 53, 45, (35,137,0): 197, 54, 48, (35,138,0): 202, 59, 53, (35,139,0): 216, 68, 64, (35,140,0): 226, 77, 73, (35,141,0): 229, 75, 73, (35,142,0): 222, 67, 63, (35,143,0): 214, 61, 56, (35,144,0): 211, 64, 57, (35,145,0): 206, 65, 56, (35,146,0): 199, 62, 52, (35,147,0): 190, 60, 47, (35,148,0): 181, 58, 43, (35,149,0): 176, 56, 42, (35,150,0): 175, 57, 43, (35,151,0): 177, 59, 45, (35,152,0): 172, 52, 38, (35,153,0): 189, 63, 51, (35,154,0): 209, 72, 64, (35,155,0): 217, 72, 67, (35,156,0): 221, 66, 64, (35,157,0): 229, 64, 68, (35,158,0): 243, 70, 76, (35,159,0): 253, 78, 85, (35,160,0): 240, 63, 69, (35,161,0): 240, 63, 69, (35,162,0): 246, 66, 77, (35,163,0): 254, 72, 85, (35,164,0): 254, 72, 87, (35,165,0): 252, 66, 87, (35,166,0): 250, 64, 88, (35,167,0): 252, 65, 94, (35,168,0): 255, 65, 99, (35,169,0): 255, 67, 102, (35,170,0): 255, 70, 109, (35,171,0): 255, 73, 114, (35,172,0): 255, 77, 121, (35,173,0): 255, 79, 124, (35,174,0): 255, 76, 123, (35,175,0): 255, 72, 121, (35,176,0): 255, 63, 113, (35,177,0): 255, 74, 122, (35,178,0): 255, 79, 122, (35,179,0): 252, 73, 112, (35,180,0): 246, 77, 110, (35,181,0): 252, 87, 117, (35,182,0): 252, 87, 117, (35,183,0): 243, 79, 106, (35,184,0): 239, 75, 102, (35,185,0): 236, 78, 103, (35,186,0): 206, 62, 85, (35,187,0): 220, 98, 113, (35,188,0): 251, 156, 164, (35,189,0): 211, 141, 141, (35,190,0): 104, 57, 51, (35,191,0): 113, 75, 64, (35,192,0): 166, 119, 109, (35,193,0): 210, 163, 155, (35,194,0): 247, 210, 202, (35,195,0): 255, 231, 226, (35,196,0): 255, 242, 241, (35,197,0): 255, 251, 254, (35,198,0): 255, 250, 255, (35,199,0): 249, 241, 254, (35,200,0): 250, 237, 255, (35,201,0): 252, 237, 255, (35,202,0): 255, 237, 255, (35,203,0): 255, 240, 255, (35,204,0): 255, 242, 253, (35,205,0): 255, 246, 254, (35,206,0): 254, 250, 251, (35,207,0): 255, 251, 250, (35,208,0): 255, 252, 249, (35,209,0): 255, 251, 247, (35,210,0): 255, 249, 247, (35,211,0): 255, 248, 246, (35,212,0): 255, 245, 246, (35,213,0): 254, 244, 245, (35,214,0): 254, 243, 247, (35,215,0): 253, 242, 246, (35,216,0): 246, 235, 239, (35,217,0): 236, 227, 228, (35,218,0): 218, 213, 210, (35,219,0): 201, 198, 193, (35,220,0): 186, 185, 180, (35,221,0): 179, 180, 172, (35,222,0): 177, 180, 169, (35,223,0): 176, 182, 170, (35,224,0): 183, 191, 180, (35,225,0): 175, 183, 172, (35,226,0): 169, 177, 166, (36,0,0): 49, 48, 44, (36,1,0): 49, 48, 44, (36,2,0): 48, 47, 43, (36,3,0): 48, 47, 43, (36,4,0): 49, 48, 44, (36,5,0): 50, 49, 44, (36,6,0): 52, 51, 46, (36,7,0): 53, 52, 47, (36,8,0): 55, 55, 47, (36,9,0): 56, 56, 48, (36,10,0): 57, 57, 49, (36,11,0): 59, 59, 51, (36,12,0): 61, 61, 51, (36,13,0): 63, 63, 53, (36,14,0): 65, 65, 55, (36,15,0): 68, 65, 56, (36,16,0): 73, 69, 58, (36,17,0): 76, 70, 58, (36,18,0): 78, 72, 58, (36,19,0): 80, 74, 58, (36,20,0): 82, 75, 57, (36,21,0): 82, 77, 58, (36,22,0): 83, 76, 58, (36,23,0): 81, 75, 61, (36,24,0): 79, 74, 68, (36,25,0): 86, 84, 85, (36,26,0): 102, 100, 113, (36,27,0): 119, 120, 141, (36,28,0): 134, 134, 168, (36,29,0): 141, 144, 185, (36,30,0): 143, 147, 195, (36,31,0): 143, 144, 198, (36,32,0): 142, 139, 192, (36,33,0): 135, 131, 182, (36,34,0): 123, 119, 169, (36,35,0): 112, 109, 154, (36,36,0): 105, 100, 141, (36,37,0): 95, 91, 126, (36,38,0): 85, 80, 110, (36,39,0): 78, 74, 97, (36,40,0): 75, 71, 88, (36,41,0): 69, 66, 77, (36,42,0): 63, 61, 66, (36,43,0): 59, 55, 56, (36,44,0): 57, 53, 50, (36,45,0): 57, 54, 47, (36,46,0): 56, 53, 44, (36,47,0): 56, 53, 44, (36,48,0): 54, 55, 49, (36,49,0): 55, 56, 51, (36,50,0): 56, 57, 49, (36,51,0): 59, 59, 49, (36,52,0): 62, 60, 47, (36,53,0): 63, 60, 43, (36,54,0): 66, 61, 42, (36,55,0): 67, 60, 41, (36,56,0): 71, 63, 44, (36,57,0): 74, 63, 43, (36,58,0): 75, 64, 44, (36,59,0): 76, 65, 47, (36,60,0): 77, 64, 48, (36,61,0): 77, 63, 50, (36,62,0): 76, 64, 52, (36,63,0): 76, 62, 51, (36,64,0): 77, 63, 52, (36,65,0): 76, 62, 53, (36,66,0): 73, 58, 51, (36,67,0): 67, 56, 50, (36,68,0): 63, 56, 50, (36,69,0): 60, 57, 52, (36,70,0): 56, 59, 52, (36,71,0): 55, 60, 53, (36,72,0): 57, 60, 51, (36,73,0): 64, 57, 49, (36,74,0): 72, 51, 46, (36,75,0): 90, 49, 47, (36,76,0): 119, 55, 56, (36,77,0): 149, 62, 68, (36,78,0): 167, 61, 71, (36,79,0): 169, 56, 60, (36,80,0): 170, 59, 48, (36,81,0): 170, 60, 43, (36,82,0): 171, 64, 46, (36,83,0): 172, 65, 47, (36,84,0): 169, 64, 45, (36,85,0): 165, 60, 41, (36,86,0): 166, 59, 39, (36,87,0): 171, 62, 42, (36,88,0): 167, 56, 36, (36,89,0): 173, 58, 39, (36,90,0): 181, 60, 43, (36,91,0): 188, 61, 46, (36,92,0): 193, 60, 45, (36,93,0): 197, 59, 46, (36,94,0): 202, 60, 48, (36,95,0): 202, 61, 51, (36,96,0): 197, 63, 54, (36,97,0): 190, 62, 51, (36,98,0): 186, 58, 47, (36,99,0): 183, 55, 44, (36,100,0): 183, 55, 44, (36,101,0): 184, 56, 43, (36,102,0): 186, 56, 43, (36,103,0): 186, 56, 43, (36,104,0): 187, 55, 43, (36,105,0): 199, 65, 53, (36,106,0): 205, 67, 56, (36,107,0): 197, 56, 46, (36,108,0): 193, 49, 38, (36,109,0): 198, 51, 41, (36,110,0): 203, 55, 45, (36,111,0): 207, 53, 43, (36,112,0): 219, 52, 43, (36,113,0): 223, 51, 41, (36,114,0): 225, 52, 45, (36,115,0): 226, 54, 44, (36,116,0): 227, 53, 44, (36,117,0): 231, 53, 43, (36,118,0): 236, 49, 42, (36,119,0): 240, 47, 42, (36,120,0): 245, 47, 44, (36,121,0): 246, 47, 42, (36,122,0): 242, 47, 41, (36,123,0): 236, 48, 39, (36,124,0): 226, 50, 35, (36,125,0): 217, 52, 33, (36,126,0): 208, 53, 31, (36,127,0): 207, 52, 30, (36,128,0): 214, 49, 30, (36,129,0): 217, 47, 30, (36,130,0): 216, 50, 34, (36,131,0): 216, 54, 41, (36,132,0): 215, 57, 45, (36,133,0): 212, 58, 48, (36,134,0): 214, 63, 54, (36,135,0): 216, 69, 61, (36,136,0): 214, 70, 62, (36,137,0): 205, 64, 55, (36,138,0): 201, 60, 53, (36,139,0): 203, 64, 57, (36,140,0): 214, 75, 68, (36,141,0): 217, 78, 71, (36,142,0): 210, 69, 62, (36,143,0): 197, 59, 49, (36,144,0): 197, 61, 49, (36,145,0): 194, 60, 48, (36,146,0): 192, 60, 47, (36,147,0): 186, 59, 44, (36,148,0): 183, 57, 42, (36,149,0): 180, 58, 43, (36,150,0): 182, 60, 45, (36,151,0): 185, 63, 48, (36,152,0): 181, 57, 45, (36,153,0): 191, 60, 50, (36,154,0): 201, 64, 58, (36,155,0): 210, 67, 63, (36,156,0): 219, 67, 66, (36,157,0): 227, 68, 72, (36,158,0): 237, 74, 79, (36,159,0): 246, 79, 86, (36,160,0): 236, 63, 69, (36,161,0): 237, 62, 67, (36,162,0): 242, 66, 76, (36,163,0): 251, 73, 85, (36,164,0): 255, 74, 89, (36,165,0): 253, 70, 88, (36,166,0): 250, 67, 89, (36,167,0): 251, 67, 93, (36,168,0): 251, 64, 95, (36,169,0): 251, 66, 100, (36,170,0): 255, 69, 108, (36,171,0): 255, 74, 115, (36,172,0): 255, 78, 122, (36,173,0): 255, 79, 124, (36,174,0): 255, 76, 121, (36,175,0): 255, 72, 118, (36,176,0): 255, 68, 114, (36,177,0): 255, 78, 124, (36,178,0): 255, 80, 122, (36,179,0): 251, 72, 111, (36,180,0): 245, 74, 108, (36,181,0): 253, 86, 116, (36,182,0): 254, 87, 115, (36,183,0): 243, 81, 105, (36,184,0): 231, 71, 95, (36,185,0): 224, 72, 93, (36,186,0): 226, 88, 104, (36,187,0): 255, 147, 158, (36,188,0): 255, 178, 184, (36,189,0): 239, 155, 155, (36,190,0): 140, 72, 69, (36,191,0): 108, 47, 42, (36,192,0): 166, 106, 98, (36,193,0): 206, 149, 142, (36,194,0): 243, 198, 192, (36,195,0): 255, 225, 220, (36,196,0): 255, 240, 239, (36,197,0): 255, 251, 253, (36,198,0): 255, 253, 255, (36,199,0): 251, 246, 253, (36,200,0): 252, 246, 255, (36,201,0): 253, 245, 255, (36,202,0): 255, 245, 255, (36,203,0): 255, 246, 255, (36,204,0): 255, 248, 255, (36,205,0): 255, 250, 254, (36,206,0): 255, 252, 251, (36,207,0): 255, 252, 249, (36,208,0): 255, 251, 247, (36,209,0): 255, 250, 247, (36,210,0): 255, 248, 247, (36,211,0): 255, 247, 246, (36,212,0): 255, 245, 247, (36,213,0): 255, 244, 246, (36,214,0): 255, 243, 247, (36,215,0): 255, 243, 247, (36,216,0): 253, 241, 243, (36,217,0): 243, 233, 234, (36,218,0): 228, 220, 218, (36,219,0): 214, 209, 205, (36,220,0): 205, 202, 195, (36,221,0): 201, 201, 191, (36,222,0): 202, 202, 192, (36,223,0): 202, 205, 194, (36,224,0): 201, 208, 200, (36,225,0): 190, 200, 191, (36,226,0): 182, 192, 183, (37,0,0): 54, 53, 49, (37,1,0): 52, 51, 46, (37,2,0): 51, 50, 46, (37,3,0): 49, 48, 43, (37,4,0): 49, 48, 43, (37,5,0): 50, 49, 44, (37,6,0): 51, 50, 45, (37,7,0): 52, 51, 46, (37,8,0): 54, 54, 46, (37,9,0): 55, 55, 47, (37,10,0): 56, 56, 48, (37,11,0): 58, 58, 50, (37,12,0): 60, 60, 50, (37,13,0): 62, 62, 52, (37,14,0): 64, 64, 54, (37,15,0): 66, 64, 52, (37,16,0): 74, 68, 56, (37,17,0): 77, 69, 56, (37,18,0): 79, 72, 56, (37,19,0): 82, 75, 59, (37,20,0): 84, 75, 58, (37,21,0): 84, 77, 59, (37,22,0): 83, 76, 60, (37,23,0): 82, 75, 65, (37,24,0): 81, 76, 73, (37,25,0): 90, 87, 94, (37,26,0): 108, 105, 124, (37,27,0): 127, 126, 157, (37,28,0): 140, 143, 184, (37,29,0): 150, 153, 204, (37,30,0): 153, 158, 216, (37,31,0): 154, 158, 222, (37,32,0): 153, 152, 218, (37,33,0): 148, 145, 212, (37,34,0): 140, 138, 201, (37,35,0): 134, 133, 191, (37,36,0): 129, 126, 181, (37,37,0): 120, 118, 167, (37,38,0): 110, 107, 150, (37,39,0): 102, 101, 135, (37,40,0): 93, 90, 119, (37,41,0): 86, 84, 105, (37,42,0): 77, 75, 89, (37,43,0): 68, 65, 74, (37,44,0): 62, 60, 63, (37,45,0): 59, 58, 56, (37,46,0): 59, 55, 52, (37,47,0): 55, 54, 50, (37,48,0): 53, 53, 53, (37,49,0): 52, 53, 55, (37,50,0): 54, 54, 52, (37,51,0): 56, 55, 50, (37,52,0): 60, 58, 46, (37,53,0): 63, 60, 43, (37,54,0): 67, 62, 42, (37,55,0): 70, 64, 42, (37,56,0): 71, 63, 42, (37,57,0): 72, 64, 43, (37,58,0): 73, 65, 44, (37,59,0): 73, 66, 48, (37,60,0): 73, 65, 52, (37,61,0): 72, 66, 54, (37,62,0): 72, 65, 57, (37,63,0): 72, 63, 58, (37,64,0): 76, 61, 58, (37,65,0): 76, 58, 58, (37,66,0): 71, 55, 55, (37,67,0): 64, 54, 53, (37,68,0): 58, 54, 53, (37,69,0): 53, 55, 52, (37,70,0): 49, 56, 49, (37,71,0): 47, 57, 48, (37,72,0): 55, 60, 53, (37,73,0): 55, 52, 43, (37,74,0): 67, 48, 41, (37,75,0): 93, 56, 50, (37,76,0): 126, 66, 65, (37,77,0): 149, 71, 71, (37,78,0): 157, 63, 64, (37,79,0): 158, 52, 52, (37,80,0): 167, 59, 47, (37,81,0): 170, 60, 43, (37,82,0): 170, 63, 45, (37,83,0): 170, 63, 45, (37,84,0): 169, 62, 44, (37,85,0): 169, 62, 42, (37,86,0): 172, 63, 43, (37,87,0): 176, 63, 45, (37,88,0): 171, 56, 37, (37,89,0): 178, 57, 40, (37,90,0): 185, 58, 43, (37,91,0): 191, 57, 45, (37,92,0): 195, 57, 44, (37,93,0): 200, 58, 46, (37,94,0): 205, 58, 48, (37,95,0): 207, 60, 52, (37,96,0): 203, 62, 53, (37,97,0): 198, 59, 52, (37,98,0): 194, 57, 49, (37,99,0): 193, 56, 46, (37,100,0): 193, 56, 46, (37,101,0): 194, 57, 47, (37,102,0): 194, 56, 46, (37,103,0): 195, 54, 44, (37,104,0): 197, 55, 45, (37,105,0): 209, 67, 57, (37,106,0): 208, 64, 55, (37,107,0): 195, 48, 38, (37,108,0): 195, 44, 35, (37,109,0): 208, 55, 47, (37,110,0): 214, 60, 52, (37,111,0): 211, 50, 42, (37,112,0): 224, 51, 44, (37,113,0): 228, 50, 40, (37,114,0): 231, 50, 43, (37,115,0): 232, 51, 42, (37,116,0): 234, 51, 43, (37,117,0): 237, 50, 43, (37,118,0): 240, 47, 42, (37,119,0): 243, 45, 42, (37,120,0): 246, 47, 42, (37,121,0): 245, 46, 41, (37,122,0): 241, 48, 41, (37,123,0): 236, 49, 40, (37,124,0): 225, 52, 36, (37,125,0): 218, 53, 34, (37,126,0): 209, 54, 32, (37,127,0): 208, 53, 31, (37,128,0): 216, 55, 35, (37,129,0): 217, 51, 35, (37,130,0): 214, 51, 36, (37,131,0): 213, 51, 38, (37,132,0): 213, 53, 41, (37,133,0): 212, 56, 44, (37,134,0): 212, 60, 49, (37,135,0): 214, 63, 54, (37,136,0): 236, 89, 81, (37,137,0): 225, 82, 74, (37,138,0): 211, 72, 65, (37,139,0): 204, 67, 59, (37,140,0): 202, 69, 60, (37,141,0): 204, 73, 63, (37,142,0): 200, 69, 59, (37,143,0): 192, 62, 49, (37,144,0): 188, 58, 42, (37,145,0): 188, 59, 40, (37,146,0): 188, 58, 42, (37,147,0): 185, 58, 41, (37,148,0): 183, 58, 40, (37,149,0): 184, 58, 43, (37,150,0): 188, 62, 48, (37,151,0): 191, 65, 51, (37,152,0): 193, 65, 54, (37,153,0): 193, 60, 51, (37,154,0): 197, 60, 54, (37,155,0): 207, 65, 61, (37,156,0): 215, 69, 69, (37,157,0): 221, 71, 72, (37,158,0): 228, 73, 77, (37,159,0): 235, 76, 80, (37,160,0): 232, 66, 70, (37,161,0): 234, 64, 67, (37,162,0): 240, 67, 73, (37,163,0): 249, 75, 84, (37,164,0): 254, 78, 89, (37,165,0): 252, 74, 90, (37,166,0): 252, 70, 92, (37,167,0): 252, 70, 95, (37,168,0): 248, 65, 95, (37,169,0): 249, 66, 97, (37,170,0): 253, 69, 105, (37,171,0): 255, 74, 112, (37,172,0): 255, 78, 119, (37,173,0): 255, 79, 122, (37,174,0): 255, 78, 120, (37,175,0): 255, 76, 118, (37,176,0): 254, 77, 119, (37,177,0): 255, 79, 118, (37,178,0): 252, 77, 116, (37,179,0): 250, 79, 115, (37,180,0): 255, 87, 121, (37,181,0): 255, 95, 123, (37,182,0): 252, 85, 111, (37,183,0): 233, 71, 94, (37,184,0): 243, 86, 107, (37,185,0): 231, 83, 99, (37,186,0): 240, 100, 113, (37,187,0): 255, 144, 154, (37,188,0): 254, 137, 145, (37,189,0): 236, 130, 134, (37,190,0): 194, 95, 98, (37,191,0): 165, 77, 76, (37,192,0): 179, 104, 101, (37,193,0): 206, 141, 137, (37,194,0): 240, 187, 183, (37,195,0): 255, 219, 215, (37,196,0): 255, 238, 237, (37,197,0): 255, 247, 247, (37,198,0): 255, 250, 253, (37,199,0): 251, 249, 254, (37,200,0): 253, 250, 255, (37,201,0): 252, 251, 255, (37,202,0): 253, 250, 255, (37,203,0): 255, 250, 255, (37,204,0): 255, 250, 254, (37,205,0): 255, 251, 252, (37,206,0): 253, 252, 250, (37,207,0): 255, 251, 248, (37,208,0): 255, 251, 247, (37,209,0): 255, 251, 248, (37,210,0): 255, 250, 249, (37,211,0): 255, 250, 249, (37,212,0): 255, 247, 249, (37,213,0): 255, 245, 247, (37,214,0): 254, 242, 246, (37,215,0): 252, 240, 242, (37,216,0): 249, 237, 239, (37,217,0): 242, 230, 230, (37,218,0): 231, 221, 219, (37,219,0): 223, 216, 210, (37,220,0): 219, 215, 206, (37,221,0): 221, 219, 207, (37,222,0): 224, 222, 210, (37,223,0): 223, 225, 214, (37,224,0): 221, 228, 220, (37,225,0): 207, 216, 211, (37,226,0): 197, 206, 201, (38,0,0): 60, 57, 52, (38,1,0): 59, 56, 49, (38,2,0): 56, 53, 48, (38,3,0): 53, 50, 43, (38,4,0): 52, 49, 42, (38,5,0): 52, 49, 42, (38,6,0): 53, 50, 43, (38,7,0): 54, 51, 44, (38,8,0): 55, 52, 45, (38,9,0): 56, 53, 46, (38,10,0): 57, 54, 47, (38,11,0): 59, 56, 49, (38,12,0): 61, 58, 49, (38,13,0): 63, 60, 51, (38,14,0): 65, 62, 53, (38,15,0): 67, 63, 52, (38,16,0): 74, 66, 55, (38,17,0): 77, 67, 55, (38,18,0): 80, 71, 56, (38,19,0): 83, 74, 59, (38,20,0): 87, 75, 59, (38,21,0): 85, 76, 61, (38,22,0): 85, 75, 63, (38,23,0): 83, 74, 67, (38,24,0): 83, 74, 75, (38,25,0): 93, 87, 99, (38,26,0): 110, 108, 130, (38,27,0): 130, 130, 166, (38,28,0): 145, 149, 197, (38,29,0): 154, 160, 218, (38,30,0): 159, 166, 234, (38,31,0): 162, 169, 241, (38,32,0): 161, 165, 239, (38,33,0): 158, 160, 235, (38,34,0): 153, 155, 229, (38,35,0): 149, 152, 221, (38,36,0): 148, 149, 214, (38,37,0): 144, 145, 202, (38,38,0): 137, 137, 189, (38,39,0): 130, 131, 177, (38,40,0): 122, 121, 161, (38,41,0): 114, 113, 145, (38,42,0): 102, 99, 126, (38,43,0): 88, 86, 107, (38,44,0): 80, 78, 92, (38,45,0): 73, 71, 82, (38,46,0): 70, 67, 76, (38,47,0): 67, 66, 74, (38,48,0): 63, 63, 75, (38,49,0): 61, 61, 71, (38,50,0): 59, 58, 64, (38,51,0): 59, 57, 58, (38,52,0): 60, 57, 52, (38,53,0): 63, 59, 47, (38,54,0): 67, 61, 45, (38,55,0): 69, 64, 44, (38,56,0): 70, 64, 42, (38,57,0): 70, 65, 43, (38,58,0): 69, 66, 47, (38,59,0): 69, 67, 52, (38,60,0): 67, 67, 55, (38,61,0): 66, 67, 59, (38,62,0): 65, 67, 62, (38,63,0): 65, 65, 65, (38,64,0): 69, 59, 67, (38,65,0): 71, 61, 70, (38,66,0): 71, 64, 72, (38,67,0): 71, 68, 75, (38,68,0): 70, 71, 76, (38,69,0): 67, 72, 75, (38,70,0): 63, 72, 71, (38,71,0): 62, 71, 66, (38,72,0): 67, 72, 65, (38,73,0): 65, 61, 52, (38,74,0): 75, 58, 48, (38,75,0): 102, 70, 59, (38,76,0): 128, 80, 70, (38,77,0): 138, 74, 64, (38,78,0): 140, 63, 53, (38,79,0): 146, 56, 45, (38,80,0): 164, 62, 47, (38,81,0): 169, 62, 44, (38,82,0): 171, 62, 42, (38,83,0): 172, 63, 43, (38,84,0): 173, 64, 44, (38,85,0): 175, 64, 45, (38,86,0): 176, 63, 45, (38,87,0): 177, 60, 42, (38,88,0): 177, 56, 39, (38,89,0): 182, 56, 41, (38,90,0): 189, 57, 42, (38,91,0): 195, 57, 44, (38,92,0): 200, 56, 45, (38,93,0): 204, 56, 46, (38,94,0): 210, 57, 49, (38,95,0): 212, 59, 53, (38,96,0): 207, 58, 52, (38,97,0): 205, 58, 51, (38,98,0): 203, 56, 49, (38,99,0): 203, 56, 49, (38,100,0): 204, 57, 50, (38,101,0): 205, 58, 50, (38,102,0): 204, 55, 48, (38,103,0): 203, 54, 47, (38,104,0): 211, 60, 53, (38,105,0): 213, 62, 53, (38,106,0): 210, 57, 49, (38,107,0): 204, 50, 40, (38,108,0): 206, 52, 42, (38,109,0): 216, 59, 50, (38,110,0): 218, 60, 51, (38,111,0): 215, 51, 42, (38,112,0): 228, 49, 42, (38,113,0): 233, 49, 39, (38,114,0): 236, 49, 42, (38,115,0): 238, 50, 41, (38,116,0): 240, 49, 41, (38,117,0): 242, 47, 41, (38,118,0): 244, 45, 40, (38,119,0): 246, 44, 40, (38,120,0): 247, 45, 41, (38,121,0): 244, 47, 41, (38,122,0): 240, 49, 41, (38,123,0): 233, 51, 40, (38,124,0): 226, 53, 39, (38,125,0): 217, 54, 37, (38,126,0): 210, 55, 33, (38,127,0): 207, 55, 32, (38,128,0): 212, 57, 37, (38,129,0): 213, 56, 37, (38,130,0): 211, 54, 37, (38,131,0): 209, 52, 37, (38,132,0): 210, 52, 40, (38,133,0): 211, 55, 43, (38,134,0): 210, 56, 46, (38,135,0): 208, 55, 47, (38,136,0): 227, 78, 71, (38,137,0): 232, 88, 80, (38,138,0): 231, 90, 83, (38,139,0): 218, 81, 73, (38,140,0): 204, 71, 62, (38,141,0): 196, 68, 57, (38,142,0): 191, 64, 55, (38,143,0): 185, 62, 47, (38,144,0): 185, 60, 42, (38,145,0): 185, 60, 38, (38,146,0): 185, 60, 40, (38,147,0): 185, 58, 39, (38,148,0): 184, 57, 40, (38,149,0): 186, 59, 42, (38,150,0): 192, 62, 48, (38,151,0): 195, 65, 52, (38,152,0): 201, 68, 59, (38,153,0): 198, 64, 55, (38,154,0): 201, 64, 58, (38,155,0): 209, 70, 67, (38,156,0): 213, 73, 72, (38,157,0): 214, 72, 71, (38,158,0): 216, 71, 74, (38,159,0): 223, 73, 75, (38,160,0): 230, 70, 72, (38,161,0): 232, 66, 68, (38,162,0): 237, 68, 73, (38,163,0): 245, 76, 83, (38,164,0): 252, 81, 90, (38,165,0): 251, 79, 93, (38,166,0): 251, 76, 93, (38,167,0): 251, 75, 96, (38,168,0): 246, 68, 94, (38,169,0): 247, 68, 97, (38,170,0): 249, 70, 102, (38,171,0): 253, 73, 108, (38,172,0): 255, 78, 117, (38,173,0): 255, 79, 120, (38,174,0): 255, 79, 120, (38,175,0): 255, 80, 119, (38,176,0): 246, 85, 119, (38,177,0): 242, 84, 117, (38,178,0): 244, 84, 118, (38,179,0): 250, 89, 120, (38,180,0): 255, 93, 123, (38,181,0): 255, 92, 119, (38,182,0): 247, 83, 107, (38,183,0): 236, 74, 95, (38,184,0): 246, 89, 106, (38,185,0): 239, 87, 102, (38,186,0): 227, 79, 93, (38,187,0): 239, 94, 107, (38,188,0): 218, 78, 89, (38,189,0): 223, 86, 96, (38,190,0): 222, 86, 96, (38,191,0): 210, 89, 96, (38,192,0): 191, 99, 100, (38,193,0): 199, 128, 124, (38,194,0): 230, 169, 166, (38,195,0): 255, 208, 207, (38,196,0): 255, 233, 231, (38,197,0): 255, 241, 240, (38,198,0): 255, 246, 247, (38,199,0): 254, 252, 253, (38,200,0): 251, 252, 255, (38,201,0): 249, 253, 255, (38,202,0): 248, 252, 255, (38,203,0): 250, 251, 253, (38,204,0): 250, 250, 252, (38,205,0): 249, 249, 249, (38,206,0): 250, 249, 247, (38,207,0): 252, 248, 245, (38,208,0): 255, 250, 246, (38,209,0): 255, 250, 247, (38,210,0): 255, 251, 250, (38,211,0): 255, 250, 249, (38,212,0): 255, 247, 247, (38,213,0): 254, 242, 242, (38,214,0): 252, 237, 240, (38,215,0): 249, 234, 237, (38,216,0): 240, 225, 228, (38,217,0): 233, 221, 221, (38,218,0): 228, 217, 213, (38,219,0): 226, 217, 210, (38,220,0): 230, 223, 213, (38,221,0): 235, 231, 219, (38,222,0): 241, 237, 225, (38,223,0): 241, 241, 229, (38,224,0): 236, 243, 236, (38,225,0): 220, 231, 227, (38,226,0): 208, 219, 215, (39,0,0): 64, 61, 54, (39,1,0): 61, 58, 51, (39,2,0): 58, 55, 48, (39,3,0): 55, 52, 45, (39,4,0): 53, 50, 43, (39,5,0): 53, 50, 43, (39,6,0): 53, 50, 43, (39,7,0): 54, 51, 44, (39,8,0): 55, 52, 45, (39,9,0): 55, 52, 45, (39,10,0): 57, 54, 47, (39,11,0): 59, 56, 49, (39,12,0): 61, 58, 49, (39,13,0): 63, 60, 51, (39,14,0): 64, 61, 52, (39,15,0): 66, 62, 51, (39,16,0): 74, 66, 55, (39,17,0): 77, 67, 55, (39,18,0): 82, 70, 56, (39,19,0): 86, 74, 58, (39,20,0): 87, 75, 59, (39,21,0): 88, 76, 60, (39,22,0): 87, 75, 63, (39,23,0): 84, 73, 67, (39,24,0): 83, 74, 77, (39,25,0): 94, 88, 102, (39,26,0): 112, 109, 136, (39,27,0): 130, 132, 171, (39,28,0): 145, 151, 203, (39,29,0): 156, 164, 227, (39,30,0): 163, 173, 245, (39,31,0): 167, 176, 253, (39,32,0): 170, 177, 255, (39,33,0): 166, 172, 250, (39,34,0): 161, 167, 243, (39,35,0): 160, 164, 238, (39,36,0): 159, 163, 234, (39,37,0): 157, 161, 225, (39,38,0): 153, 155, 214, (39,39,0): 149, 150, 204, (39,40,0): 146, 146, 196, (39,41,0): 137, 136, 180, (39,42,0): 121, 121, 159, (39,43,0): 106, 105, 139, (39,44,0): 96, 93, 124, (39,45,0): 88, 85, 112, (39,46,0): 82, 80, 104, (39,47,0): 79, 77, 101, (39,48,0): 78, 74, 99, (39,49,0): 75, 71, 94, (39,50,0): 70, 66, 83, (39,51,0): 64, 61, 72, (39,52,0): 63, 58, 62, (39,53,0): 63, 58, 54, (39,54,0): 64, 60, 49, (39,55,0): 65, 62, 47, (39,56,0): 67, 64, 47, (39,57,0): 67, 66, 48, (39,58,0): 66, 67, 51, (39,59,0): 66, 68, 55, (39,60,0): 63, 68, 61, (39,61,0): 62, 68, 64, (39,62,0): 60, 69, 68, (39,63,0): 59, 66, 72, (39,64,0): 65, 67, 82, (39,65,0): 71, 72, 92, (39,66,0): 80, 81, 99, (39,67,0): 89, 91, 106, (39,68,0): 95, 97, 110, (39,69,0): 99, 99, 109, (39,70,0): 99, 98, 104, (39,71,0): 101, 95, 97, (39,72,0): 102, 88, 87, (39,73,0): 95, 74, 69, (39,74,0): 106, 72, 63, (39,75,0): 130, 83, 73, (39,76,0): 146, 88, 76, (39,77,0): 143, 76, 60, (39,78,0): 142, 65, 49, (39,79,0): 150, 63, 46, (39,80,0): 167, 66, 48, (39,81,0): 174, 64, 47, (39,82,0): 174, 65, 45, (39,83,0): 175, 64, 45, (39,84,0): 176, 65, 46, (39,85,0): 180, 65, 47, (39,86,0): 178, 61, 43, (39,87,0): 176, 55, 38, (39,88,0): 181, 55, 40, (39,89,0): 188, 56, 43, (39,90,0): 194, 56, 43, (39,91,0): 200, 56, 45, (39,92,0): 205, 54, 45, (39,93,0): 209, 55, 47, (39,94,0): 213, 56, 49, (39,95,0): 216, 59, 52, (39,96,0): 210, 55, 50, (39,97,0): 208, 55, 50, (39,98,0): 208, 55, 50, (39,99,0): 209, 56, 50, (39,100,0): 212, 57, 52, (39,101,0): 212, 57, 52, (39,102,0): 211, 56, 51, (39,103,0): 211, 54, 47, (39,104,0): 222, 65, 58, (39,105,0): 213, 56, 47, (39,106,0): 209, 51, 42, (39,107,0): 214, 56, 47, (39,108,0): 222, 61, 53, (39,109,0): 222, 61, 53, (39,110,0): 218, 57, 49, (39,111,0): 220, 53, 44, (39,112,0): 231, 50, 41, (39,113,0): 235, 48, 39, (39,114,0): 239, 48, 40, (39,115,0): 241, 48, 41, (39,116,0): 244, 47, 41, (39,117,0): 247, 45, 41, (39,118,0): 247, 44, 40, (39,119,0): 247, 44, 40, (39,120,0): 247, 45, 41, (39,121,0): 244, 47, 41, (39,122,0): 238, 50, 41, (39,123,0): 233, 52, 41, (39,124,0): 225, 53, 39, (39,125,0): 218, 55, 38, (39,126,0): 212, 55, 36, (39,127,0): 207, 56, 35, (39,128,0): 206, 55, 34, (39,129,0): 207, 56, 37, (39,130,0): 206, 55, 36, (39,131,0): 207, 54, 38, (39,132,0): 208, 55, 41, (39,133,0): 210, 57, 43, (39,134,0): 209, 55, 43, (39,135,0): 206, 52, 42, (39,136,0): 203, 52, 43, (39,137,0): 227, 78, 71, (39,138,0): 243, 100, 92, (39,139,0): 235, 96, 89, (39,140,0): 213, 79, 70, (39,141,0): 196, 65, 55, (39,142,0): 186, 59, 50, (39,143,0): 181, 57, 45, (39,144,0): 184, 62, 41, (39,145,0): 184, 62, 39, (39,146,0): 185, 60, 38, (39,147,0): 185, 59, 37, (39,148,0): 186, 57, 38, (39,149,0): 189, 57, 42, (39,150,0): 192, 60, 47, (39,151,0): 196, 62, 50, (39,152,0): 202, 68, 57, (39,153,0): 202, 65, 57, (39,154,0): 206, 69, 63, (39,155,0): 213, 75, 72, (39,156,0): 211, 76, 73, (39,157,0): 206, 71, 68, (39,158,0): 205, 69, 69, (39,159,0): 214, 72, 71, (39,160,0): 227, 73, 73, (39,161,0): 230, 67, 68, (39,162,0): 232, 69, 72, (39,163,0): 242, 77, 83, (39,164,0): 248, 83, 90, (39,165,0): 249, 82, 92, (39,166,0): 247, 79, 94, (39,167,0): 250, 79, 97, (39,168,0): 244, 72, 94, (39,169,0): 245, 71, 96, (39,170,0): 248, 71, 100, (39,171,0): 251, 73, 105, (39,172,0): 255, 78, 114, (39,173,0): 255, 81, 120, (39,174,0): 255, 82, 121, (39,175,0): 255, 84, 122, (39,176,0): 239, 84, 116, (39,177,0): 239, 90, 119, (39,178,0): 249, 96, 126, (39,179,0): 253, 96, 125, (39,180,0): 249, 86, 113, (39,181,0): 242, 78, 103, (39,182,0): 245, 81, 105, (39,183,0): 253, 90, 109, (39,184,0): 251, 93, 108, (39,185,0): 255, 102, 116, (39,186,0): 235, 80, 94, (39,187,0): 243, 88, 102, (39,188,0): 238, 83, 97, (39,189,0): 246, 90, 104, (39,190,0): 237, 79, 94, (39,191,0): 223, 83, 94, (39,192,0): 190, 92, 93, (39,193,0): 188, 114, 111, (39,194,0): 216, 152, 150, (39,195,0): 249, 198, 195, (39,196,0): 255, 226, 225, (39,197,0): 255, 235, 233, (39,198,0): 254, 242, 242, (39,199,0): 255, 255, 253, (39,200,0): 252, 255, 255, (39,201,0): 251, 255, 255, (39,202,0): 248, 255, 255, (39,203,0): 249, 255, 253, (39,204,0): 249, 253, 252, (39,205,0): 250, 252, 249, (39,206,0): 252, 251, 247, (39,207,0): 253, 249, 246, (39,208,0): 253, 248, 244, (39,209,0): 255, 248, 245, (39,210,0): 255, 249, 248, (39,211,0): 255, 249, 248, (39,212,0): 255, 245, 245, (39,213,0): 251, 239, 239, (39,214,0): 247, 232, 235, (39,215,0): 243, 229, 229, (39,216,0): 235, 221, 221, (39,217,0): 232, 218, 217, (39,218,0): 228, 217, 211, (39,219,0): 232, 222, 213, (39,220,0): 240, 232, 221, (39,221,0): 249, 243, 229, (39,222,0): 255, 250, 236, (39,223,0): 254, 254, 242, (39,224,0): 244, 250, 246, (39,225,0): 227, 237, 236, (39,226,0): 214, 224, 223, (40,0,0): 66, 62, 53, (40,1,0): 65, 61, 52, (40,2,0): 64, 60, 51, (40,3,0): 62, 58, 49, (40,4,0): 60, 56, 47, (40,5,0): 58, 54, 45, (40,6,0): 56, 52, 43, (40,7,0): 55, 51, 42, (40,8,0): 54, 50, 41, (40,9,0): 54, 50, 41, (40,10,0): 55, 51, 42, (40,11,0): 56, 52, 43, (40,12,0): 59, 54, 48, (40,13,0): 62, 57, 51, (40,14,0): 65, 60, 54, (40,15,0): 69, 62, 54, (40,16,0): 73, 64, 55, (40,17,0): 77, 67, 55, (40,18,0): 82, 70, 56, (40,19,0): 85, 73, 57, (40,20,0): 87, 74, 58, (40,21,0): 88, 75, 59, (40,22,0): 90, 76, 65, (40,23,0): 91, 78, 72, (40,24,0): 84, 73, 77, (40,25,0): 88, 82, 96, (40,26,0): 103, 100, 129, (40,27,0): 124, 126, 167, (40,28,0): 141, 146, 202, (40,29,0): 151, 160, 227, (40,30,0): 158, 170, 246, (40,31,0): 165, 176, 255, (40,32,0): 170, 179, 255, (40,33,0): 171, 178, 255, (40,34,0): 172, 180, 255, (40,35,0): 172, 178, 252, (40,36,0): 170, 177, 249, (40,37,0): 170, 175, 243, (40,38,0): 168, 172, 236, (40,39,0): 169, 171, 232, (40,40,0): 159, 161, 218, (40,41,0): 153, 154, 210, (40,42,0): 141, 141, 193, (40,43,0): 129, 127, 177, (40,44,0): 116, 114, 161, (40,45,0): 104, 101, 146, (40,46,0): 93, 90, 135, (40,47,0): 88, 82, 126, (40,48,0): 88, 81, 122, (40,49,0): 89, 81, 118, (40,50,0): 86, 79, 110, (40,51,0): 77, 72, 95, (40,52,0): 67, 63, 77, (40,53,0): 63, 58, 64, (40,54,0): 63, 59, 58, (40,55,0): 66, 63, 56, (40,56,0): 62, 62, 52, (40,57,0): 64, 66, 53, (40,58,0): 66, 69, 58, (40,59,0): 63, 68, 61, (40,60,0): 60, 66, 62, (40,61,0): 58, 67, 66, (40,62,0): 62, 70, 72, (40,63,0): 65, 75, 84, (40,64,0): 70, 85, 106, (40,65,0): 85, 101, 126, (40,66,0): 101, 113, 137, (40,67,0): 108, 114, 136, (40,68,0): 119, 117, 139, (40,69,0): 131, 119, 139, (40,70,0): 132, 111, 126, (40,71,0): 128, 95, 106, (40,72,0): 137, 91, 101, (40,73,0): 144, 88, 91, (40,74,0): 157, 87, 87, (40,75,0): 164, 87, 81, (40,76,0): 162, 78, 68, (40,77,0): 154, 65, 51, (40,78,0): 151, 58, 40, (40,79,0): 158, 59, 40, (40,80,0): 167, 60, 42, (40,81,0): 172, 61, 42, (40,82,0): 174, 63, 44, (40,83,0): 177, 64, 46, (40,84,0): 179, 64, 45, (40,85,0): 180, 63, 45, (40,86,0): 182, 61, 44, (40,87,0): 185, 59, 44, (40,88,0): 186, 54, 39, (40,89,0): 190, 54, 40, (40,90,0): 196, 54, 42, (40,91,0): 203, 55, 45, (40,92,0): 209, 55, 45, (40,93,0): 214, 56, 47, (40,94,0): 218, 57, 49, (40,95,0): 218, 56, 51, (40,96,0): 215, 56, 52, (40,97,0): 216, 57, 53, (40,98,0): 217, 58, 54, (40,99,0): 216, 57, 51, (40,100,0): 216, 54, 49, (40,101,0): 216, 54, 49, (40,102,0): 218, 56, 51, (40,103,0): 221, 58, 51, (40,104,0): 230, 67, 60, (40,105,0): 224, 61, 54, (40,106,0): 218, 55, 48, (40,107,0): 227, 64, 55, (40,108,0): 254, 91, 82, (40,109,0): 255, 108, 99, (40,110,0): 255, 93, 84, (40,111,0): 231, 63, 54, (40,112,0): 229, 51, 41, (40,113,0): 237, 50, 41, (40,114,0): 241, 50, 42, (40,115,0): 244, 47, 41, (40,116,0): 244, 42, 38, (40,117,0): 245, 40, 37, (40,118,0): 248, 40, 38, (40,119,0): 248, 43, 40, (40,120,0): 247, 45, 43, (40,121,0): 243, 48, 44, (40,122,0): 237, 50, 43, (40,123,0): 227, 49, 39, (40,124,0): 218, 48, 35, (40,125,0): 212, 49, 34, (40,126,0): 212, 52, 36, (40,127,0): 211, 58, 40, (40,128,0): 204, 59, 38, (40,129,0): 202, 60, 40, (40,130,0): 205, 60, 41, (40,131,0): 207, 60, 42, (40,132,0): 210, 58, 44, (40,133,0): 210, 57, 43, (40,134,0): 210, 56, 44, (40,135,0): 209, 55, 45, (40,136,0): 218, 64, 56, (40,137,0): 207, 56, 49, (40,138,0): 220, 71, 65, (40,139,0): 244, 99, 94, (40,140,0): 229, 88, 81, (40,141,0): 203, 66, 60, (40,142,0): 197, 64, 59, (40,143,0): 183, 52, 42, (40,144,0): 183, 58, 38, (40,145,0): 182, 60, 36, (40,146,0): 185, 60, 38, (40,147,0): 186, 60, 38, (40,148,0): 189, 58, 40, (40,149,0): 191, 58, 43, (40,150,0): 196, 60, 48, (40,151,0): 198, 62, 50, (40,152,0): 199, 62, 52, (40,153,0): 204, 67, 59, (40,154,0): 217, 80, 74, (40,155,0): 223, 88, 82, (40,156,0): 212, 79, 74, (40,157,0): 195, 63, 58, (40,158,0): 192, 63, 58, (40,159,0): 207, 72, 68, (40,160,0): 222, 72, 71, (40,161,0): 226, 71, 69, (40,162,0): 230, 74, 75, (40,163,0): 239, 80, 84, (40,164,0): 241, 82, 87, (40,165,0): 239, 78, 86, (40,166,0): 237, 75, 88, (40,167,0): 241, 76, 92, (40,168,0): 249, 82, 102, (40,169,0): 248, 79, 102, (40,170,0): 247, 75, 101, (40,171,0): 247, 74, 102, (40,172,0): 252, 77, 108, (40,173,0): 255, 81, 115, (40,174,0): 255, 82, 118, (40,175,0): 253, 82, 118, (40,176,0): 245, 88, 119, (40,177,0): 239, 89, 118, (40,178,0): 243, 89, 117, (40,179,0): 251, 92, 120, (40,180,0): 255, 93, 120, (40,181,0): 255, 91, 115, (40,182,0): 254, 88, 110, (40,183,0): 252, 86, 106, (40,184,0): 255, 101, 117, (40,185,0): 247, 89, 103, (40,186,0): 253, 95, 109, (40,187,0): 252, 94, 108, (40,188,0): 234, 73, 88, (40,189,0): 235, 73, 88, (40,190,0): 251, 84, 101, (40,191,0): 233, 88, 101, (40,192,0): 198, 102, 103, (40,193,0): 173, 103, 101, (40,194,0): 203, 142, 139, (40,195,0): 232, 181, 178, (40,196,0): 249, 209, 207, (40,197,0): 255, 234, 231, (40,198,0): 254, 238, 238, (40,199,0): 252, 248, 247, (40,200,0): 246, 250, 249, (40,201,0): 247, 255, 253, (40,202,0): 247, 255, 254, (40,203,0): 246, 255, 252, (40,204,0): 248, 254, 252, (40,205,0): 253, 255, 252, (40,206,0): 253, 252, 248, (40,207,0): 251, 247, 244, (40,208,0): 255, 250, 246, (40,209,0): 255, 250, 246, (40,210,0): 255, 247, 244, (40,211,0): 253, 243, 241, (40,212,0): 255, 244, 244, (40,213,0): 255, 243, 243, (40,214,0): 246, 232, 232, (40,215,0): 231, 217, 217, (40,216,0): 228, 214, 213, (40,217,0): 223, 209, 206, (40,218,0): 225, 214, 208, (40,219,0): 241, 231, 222, (40,220,0): 252, 244, 231, (40,221,0): 253, 247, 231, (40,222,0): 255, 251, 232, (40,223,0): 255, 255, 243, (40,224,0): 249, 254, 248, (40,225,0): 231, 240, 239, (40,226,0): 218, 227, 226, (41,0,0): 67, 63, 54, (41,1,0): 66, 62, 51, (41,2,0): 65, 61, 52, (41,3,0): 63, 59, 50, (41,4,0): 61, 57, 48, (41,5,0): 59, 55, 46, (41,6,0): 58, 54, 45, (41,7,0): 57, 53, 44, (41,8,0): 55, 51, 42, (41,9,0): 55, 51, 42, (41,10,0): 55, 51, 42, (41,11,0): 56, 52, 43, (41,12,0): 58, 53, 47, (41,13,0): 61, 56, 50, (41,14,0): 64, 59, 53, (41,15,0): 68, 61, 53, (41,16,0): 72, 63, 54, (41,17,0): 76, 66, 54, (41,18,0): 81, 69, 55, (41,19,0): 84, 72, 56, (41,20,0): 86, 73, 56, (41,21,0): 87, 74, 57, (41,22,0): 89, 75, 62, (41,23,0): 90, 77, 69, (41,24,0): 85, 74, 78, (41,25,0): 87, 81, 95, (41,26,0): 101, 98, 127, (41,27,0): 121, 123, 164, (41,28,0): 138, 143, 201, (41,29,0): 148, 157, 226, (41,30,0): 155, 166, 245, (41,31,0): 163, 174, 254, (41,32,0): 171, 180, 255, (41,33,0): 172, 181, 255, (41,34,0): 174, 182, 255, (41,35,0): 175, 183, 255, (41,36,0): 176, 183, 255, (41,37,0): 175, 182, 252, (41,38,0): 175, 180, 248, (41,39,0): 175, 178, 245, (41,40,0): 169, 170, 235, (41,41,0): 162, 163, 227, (41,42,0): 152, 152, 216, (41,43,0): 140, 138, 201, (41,44,0): 128, 127, 187, (41,45,0): 117, 113, 174, (41,46,0): 105, 101, 160, (41,47,0): 99, 94, 152, (41,48,0): 96, 87, 142, (41,49,0): 96, 86, 136, (41,50,0): 93, 84, 127, (41,51,0): 86, 80, 116, (41,52,0): 77, 73, 98, (41,53,0): 70, 67, 84, (41,54,0): 66, 65, 73, (41,55,0): 65, 65, 67, (41,56,0): 60, 60, 58, (41,57,0): 65, 66, 61, (41,58,0): 70, 69, 65, (41,59,0): 67, 68, 63, (41,60,0): 65, 63, 64, (41,61,0): 68, 66, 69, (41,62,0): 79, 77, 82, (41,63,0): 88, 86, 99, (41,64,0): 102, 103, 131, (41,65,0): 116, 116, 150, (41,66,0): 130, 125, 157, (41,67,0): 138, 125, 155, (41,68,0): 149, 124, 154, (41,69,0): 160, 124, 150, (41,70,0): 165, 113, 136, (41,71,0): 164, 96, 117, (41,72,0): 172, 89, 107, (41,73,0): 180, 87, 98, (41,74,0): 185, 81, 88, (41,75,0): 181, 73, 71, (41,76,0): 173, 64, 57, (41,77,0): 168, 60, 47, (41,78,0): 168, 61, 41, (41,79,0): 169, 63, 41, (41,80,0): 167, 56, 37, (41,81,0): 168, 55, 37, (41,82,0): 171, 56, 38, (41,83,0): 174, 57, 40, (41,84,0): 176, 56, 39, (41,85,0): 178, 57, 40, (41,86,0): 181, 55, 40, (41,87,0): 184, 54, 40, (41,88,0): 187, 51, 37, (41,89,0): 194, 52, 40, (41,90,0): 202, 55, 45, (41,91,0): 211, 58, 50, (41,92,0): 217, 60, 51, (41,93,0): 222, 61, 53, (41,94,0): 223, 60, 53, (41,95,0): 223, 60, 53, (41,96,0): 225, 62, 57, (41,97,0): 223, 60, 55, (41,98,0): 223, 60, 55, (41,99,0): 225, 62, 57, (41,100,0): 229, 66, 61, (41,101,0): 232, 67, 61, (41,102,0): 231, 66, 60, (41,103,0): 230, 65, 59, (41,104,0): 229, 64, 58, (41,105,0): 230, 66, 57, (41,106,0): 228, 64, 55, (41,107,0): 220, 56, 47, (41,108,0): 213, 49, 40, (41,109,0): 216, 54, 43, (41,110,0): 235, 73, 62, (41,111,0): 255, 91, 79, (41,112,0): 241, 64, 54, (41,113,0): 238, 54, 44, (41,114,0): 234, 43, 35, (41,115,0): 238, 41, 35, (41,116,0): 248, 45, 41, (41,117,0): 255, 47, 45, (41,118,0): 254, 44, 43, (41,119,0): 246, 40, 40, (41,120,0): 250, 48, 46, (41,121,0): 245, 52, 47, (41,122,0): 239, 54, 49, (41,123,0): 231, 54, 46, (41,124,0): 222, 51, 41, (41,125,0): 214, 50, 38, (41,126,0): 212, 50, 37, (41,127,0): 207, 54, 38, (41,128,0): 203, 58, 39, (41,129,0): 200, 59, 39, (41,130,0): 202, 60, 40, (41,131,0): 205, 58, 40, (41,132,0): 207, 57, 42, (41,133,0): 208, 55, 41, (41,134,0): 209, 53, 41, (41,135,0): 208, 52, 40, (41,136,0): 211, 57, 47, (41,137,0): 207, 53, 45, (41,138,0): 212, 61, 54, (41,139,0): 229, 80, 74, (41,140,0): 229, 84, 81, (41,141,0): 219, 76, 72, (41,142,0): 205, 66, 63, (41,143,0): 183, 49, 40, (41,144,0): 188, 59, 40, (41,145,0): 187, 61, 38, (41,146,0): 189, 60, 39, (41,147,0): 190, 59, 39, (41,148,0): 190, 57, 40, (41,149,0): 192, 56, 40, (41,150,0): 194, 58, 44, (41,151,0): 196, 58, 47, (41,152,0): 200, 62, 52, (41,153,0): 203, 66, 56, (41,154,0): 213, 79, 70, (41,155,0): 220, 87, 80, (41,156,0): 210, 82, 73, (41,157,0): 195, 68, 61, (41,158,0): 191, 67, 59, (41,159,0): 204, 72, 67, (41,160,0): 219, 76, 72, (41,161,0): 223, 74, 70, (41,162,0): 229, 77, 76, (41,163,0): 235, 83, 82, (41,164,0): 237, 84, 87, (41,165,0): 235, 80, 86, (41,166,0): 233, 78, 86, (41,167,0): 236, 79, 90, (41,168,0): 247, 86, 102, (41,169,0): 248, 85, 104, (41,170,0): 249, 83, 105, (41,171,0): 250, 82, 107, (41,172,0): 252, 82, 109, (41,173,0): 255, 83, 113, (41,174,0): 255, 83, 116, (41,175,0): 254, 83, 117, (41,176,0): 241, 76, 108, (41,177,0): 245, 84, 115, (41,178,0): 255, 92, 121, (41,179,0): 255, 96, 123, (41,180,0): 255, 91, 117, (41,181,0): 253, 85, 110, (41,182,0): 250, 82, 105, (41,183,0): 249, 84, 101, (41,184,0): 249, 87, 102, (41,185,0): 242, 84, 98, (41,186,0): 249, 93, 104, (41,187,0): 249, 93, 104, (41,188,0): 236, 82, 94, (41,189,0): 241, 87, 99, (41,190,0): 247, 93, 105, (41,191,0): 217, 86, 94, (41,192,0): 182, 96, 95, (41,193,0): 153, 92, 87, (41,194,0): 185, 127, 125, (41,195,0): 218, 169, 165, (41,196,0): 239, 199, 197, (41,197,0): 254, 224, 222, (41,198,0): 251, 233, 233, (41,199,0): 253, 248, 245, (41,200,0): 248, 250, 247, (41,201,0): 247, 255, 253, (41,202,0): 247, 255, 254, (41,203,0): 245, 255, 252, (41,204,0): 248, 254, 252, (41,205,0): 253, 255, 252, (41,206,0): 254, 253, 251, (41,207,0): 252, 248, 245, (41,208,0): 253, 250, 245, (41,209,0): 254, 249, 245, (41,210,0): 252, 247, 243, (41,211,0): 252, 244, 241, (41,212,0): 255, 245, 244, (41,213,0): 255, 244, 244, (41,214,0): 245, 233, 233, (41,215,0): 234, 220, 219, (41,216,0): 229, 215, 212, (41,217,0): 222, 209, 203, (41,218,0): 223, 213, 204, (41,219,0): 239, 229, 219, (41,220,0): 252, 245, 229, (41,221,0): 255, 249, 231, (41,222,0): 255, 252, 232, (41,223,0): 255, 255, 239, (41,224,0): 248, 253, 246, (41,225,0): 232, 241, 238, (41,226,0): 221, 227, 225, (42,0,0): 69, 65, 54, (42,1,0): 69, 65, 53, (42,2,0): 67, 63, 52, (42,3,0): 65, 61, 50, (42,4,0): 63, 59, 48, (42,5,0): 61, 57, 46, (42,6,0): 60, 56, 45, (42,7,0): 59, 55, 44, (42,8,0): 56, 52, 43, (42,9,0): 56, 52, 43, (42,10,0): 55, 51, 42, (42,11,0): 56, 52, 43, (42,12,0): 58, 53, 47, (42,13,0): 61, 56, 50, (42,14,0): 63, 58, 52, (42,15,0): 67, 60, 52, (42,16,0): 71, 62, 53, (42,17,0): 74, 66, 55, (42,18,0): 78, 68, 56, (42,19,0): 82, 70, 54, (42,20,0): 84, 71, 54, (42,21,0): 87, 71, 55, (42,22,0): 89, 73, 60, (42,23,0): 89, 74, 67, (42,24,0): 87, 75, 75, (42,25,0): 88, 80, 93, (42,26,0): 98, 94, 121, (42,27,0): 115, 117, 156, (42,28,0): 133, 138, 194, (42,29,0): 144, 153, 220, (42,30,0): 152, 164, 240, (42,31,0): 160, 171, 250, (42,32,0): 170, 179, 254, (42,33,0): 173, 181, 254, (42,34,0): 175, 183, 255, (42,35,0): 177, 185, 255, (42,36,0): 179, 186, 255, (42,37,0): 180, 187, 255, (42,38,0): 181, 185, 255, (42,39,0): 181, 185, 255, (42,40,0): 175, 178, 249, (42,41,0): 172, 172, 244, (42,42,0): 163, 163, 235, (42,43,0): 153, 151, 224, (42,44,0): 142, 141, 211, (42,45,0): 131, 128, 199, (42,46,0): 120, 117, 188, (42,47,0): 115, 109, 179, (42,48,0): 107, 96, 162, (42,49,0): 105, 93, 155, (42,50,0): 99, 90, 145, (42,51,0): 93, 87, 133, (42,52,0): 86, 82, 119, (42,53,0): 78, 75, 104, (42,54,0): 69, 68, 86, (42,55,0): 64, 64, 76, (42,56,0): 56, 53, 60, (42,57,0): 65, 60, 64, (42,58,0): 75, 65, 66, (42,59,0): 76, 64, 66, (42,60,0): 81, 62, 66, (42,61,0): 90, 69, 74, (42,62,0): 112, 87, 93, (42,63,0): 130, 99, 115, (42,64,0): 152, 115, 149, (42,65,0): 165, 122, 165, (42,66,0): 175, 127, 167, (42,67,0): 178, 123, 162, (42,68,0): 184, 118, 154, (42,69,0): 192, 112, 147, (42,70,0): 194, 99, 131, (42,71,0): 192, 84, 110, (42,72,0): 193, 71, 94, (42,73,0): 207, 76, 92, (42,74,0): 207, 73, 82, (42,75,0): 195, 61, 62, (42,76,0): 183, 54, 48, (42,77,0): 180, 58, 43, (42,78,0): 178, 61, 41, (42,79,0): 173, 61, 39, (42,80,0): 175, 60, 41, (42,81,0): 176, 59, 41, (42,82,0): 178, 58, 41, (42,83,0): 180, 59, 42, (42,84,0): 183, 60, 44, (42,85,0): 187, 60, 45, (42,86,0): 192, 60, 45, (42,87,0): 196, 60, 46, (42,88,0): 196, 54, 42, (42,89,0): 203, 56, 46, (42,90,0): 211, 60, 49, (42,91,0): 217, 63, 53, (42,92,0): 223, 65, 56, (42,93,0): 225, 62, 55, (42,94,0): 224, 60, 51, (42,95,0): 223, 58, 52, (42,96,0): 220, 55, 49, (42,97,0): 217, 52, 46, (42,98,0): 216, 51, 45, (42,99,0): 222, 57, 51, (42,100,0): 230, 65, 59, (42,101,0): 236, 69, 63, (42,102,0): 233, 66, 60, (42,103,0): 228, 61, 53, (42,104,0): 227, 60, 52, (42,105,0): 219, 52, 44, (42,106,0): 216, 52, 43, (42,107,0): 219, 55, 45, (42,108,0): 212, 50, 39, (42,109,0): 204, 44, 32, (42,110,0): 214, 54, 42, (42,111,0): 233, 71, 58, (42,112,0): 245, 75, 62, (42,113,0): 242, 64, 54, (42,114,0): 239, 52, 45, (42,115,0): 240, 45, 41, (42,116,0): 246, 44, 42, (42,117,0): 250, 44, 44, (42,118,0): 252, 44, 44, (42,119,0): 248, 42, 44, (42,120,0): 240, 42, 41, (42,121,0): 236, 47, 43, (42,122,0): 232, 50, 46, (42,123,0): 227, 53, 46, (42,124,0): 220, 52, 43, (42,125,0): 216, 49, 40, (42,126,0): 213, 49, 39, (42,127,0): 209, 51, 39, (42,128,0): 205, 55, 40, (42,129,0): 203, 58, 41, (42,130,0): 205, 58, 40, (42,131,0): 208, 58, 41, (42,132,0): 210, 59, 42, (42,133,0): 211, 58, 42, (42,134,0): 212, 56, 43, (42,135,0): 212, 56, 44, (42,136,0): 209, 52, 43, (42,137,0): 214, 60, 52, (42,138,0): 213, 58, 53, (42,139,0): 213, 60, 55, (42,140,0): 229, 79, 78, (42,141,0): 237, 89, 87, (42,142,0): 217, 69, 69, (42,143,0): 194, 51, 47, (42,144,0): 192, 59, 44, (42,145,0): 191, 60, 40, (42,146,0): 192, 59, 42, (42,147,0): 191, 58, 41, (42,148,0): 193, 57, 41, (42,149,0): 192, 56, 40, (42,150,0): 192, 56, 42, (42,151,0): 192, 56, 44, (42,152,0): 198, 61, 51, (42,153,0): 199, 65, 54, (42,154,0): 207, 74, 65, (42,155,0): 216, 85, 75, (42,156,0): 210, 82, 71, (42,157,0): 198, 71, 62, (42,158,0): 192, 68, 58, (42,159,0): 199, 71, 62, (42,160,0): 214, 75, 68, (42,161,0): 216, 73, 67, (42,162,0): 221, 76, 73, (42,163,0): 228, 83, 80, (42,164,0): 229, 83, 84, (42,165,0): 226, 80, 83, (42,166,0): 226, 77, 83, (42,167,0): 229, 78, 87, (42,168,0): 242, 88, 100, (42,169,0): 246, 90, 104, (42,170,0): 253, 91, 112, (42,171,0): 254, 90, 114, (42,172,0): 252, 86, 110, (42,173,0): 250, 82, 108, (42,174,0): 251, 81, 108, (42,175,0): 255, 81, 112, (42,176,0): 248, 70, 106, (42,177,0): 255, 79, 116, (42,178,0): 255, 89, 123, (42,179,0): 255, 90, 121, (42,180,0): 255, 86, 113, (42,181,0): 252, 84, 107, (42,182,0): 254, 87, 107, (42,183,0): 255, 92, 109, (42,184,0): 250, 89, 104, (42,185,0): 247, 91, 104, (42,186,0): 248, 98, 109, (42,187,0): 242, 98, 107, (42,188,0): 231, 96, 103, (42,189,0): 234, 105, 110, (42,190,0): 229, 106, 109, (42,191,0): 197, 94, 95, (42,192,0): 160, 93, 87, (42,193,0): 126, 77, 70, (42,194,0): 155, 108, 102, (42,195,0): 195, 151, 148, (42,196,0): 223, 185, 182, (42,197,0): 241, 211, 209, (42,198,0): 244, 224, 223, (42,199,0): 255, 245, 244, (42,200,0): 249, 249, 247, (42,201,0): 249, 255, 253, (42,202,0): 247, 255, 255, (42,203,0): 245, 255, 252, (42,204,0): 248, 254, 252, (42,205,0): 253, 255, 254, (42,206,0): 255, 252, 253, (42,207,0): 252, 248, 247, (42,208,0): 252, 249, 244, (42,209,0): 252, 249, 242, (42,210,0): 250, 247, 242, (42,211,0): 251, 246, 242, (42,212,0): 255, 247, 244, (42,213,0): 255, 246, 244, (42,214,0): 249, 238, 236, (42,215,0): 239, 228, 226, (42,216,0): 230, 219, 215, (42,217,0): 220, 209, 203, (42,218,0): 221, 211, 201, (42,219,0): 238, 228, 216, (42,220,0): 253, 246, 228, (42,221,0): 255, 251, 232, (42,222,0): 255, 253, 231, (42,223,0): 255, 255, 236, (42,224,0): 248, 251, 242, (42,225,0): 233, 239, 235, (42,226,0): 224, 229, 225, (43,0,0): 73, 69, 57, (43,1,0): 72, 68, 56, (43,2,0): 70, 66, 54, (43,3,0): 68, 64, 52, (43,4,0): 66, 62, 51, (43,5,0): 64, 60, 49, (43,6,0): 63, 59, 48, (43,7,0): 62, 58, 47, (43,8,0): 58, 54, 45, (43,9,0): 57, 53, 44, (43,10,0): 57, 53, 44, (43,11,0): 57, 53, 44, (43,12,0): 58, 53, 47, (43,13,0): 60, 55, 49, (43,14,0): 62, 57, 51, (43,15,0): 64, 59, 53, (43,16,0): 69, 62, 54, (43,17,0): 73, 64, 55, (43,18,0): 76, 68, 55, (43,19,0): 79, 70, 53, (43,20,0): 82, 69, 52, (43,21,0): 85, 69, 53, (43,22,0): 87, 71, 56, (43,23,0): 87, 73, 62, (43,24,0): 88, 77, 75, (43,25,0): 88, 78, 87, (43,26,0): 94, 90, 113, (43,27,0): 112, 112, 150, (43,28,0): 128, 134, 186, (43,29,0): 140, 150, 212, (43,30,0): 149, 161, 233, (43,31,0): 157, 169, 245, (43,32,0): 168, 176, 249, (43,33,0): 169, 177, 249, (43,34,0): 173, 179, 253, (43,35,0): 176, 183, 255, (43,36,0): 177, 183, 255, (43,37,0): 178, 185, 255, (43,38,0): 180, 184, 255, (43,39,0): 180, 184, 255, (43,40,0): 175, 177, 252, (43,41,0): 171, 173, 248, (43,42,0): 165, 167, 242, (43,43,0): 159, 158, 234, (43,44,0): 151, 150, 226, (43,45,0): 140, 139, 215, (43,46,0): 130, 129, 205, (43,47,0): 125, 121, 197, (43,48,0): 117, 109, 182, (43,49,0): 112, 103, 170, (43,50,0): 102, 96, 158, (43,51,0): 95, 90, 144, (43,52,0): 89, 88, 132, (43,53,0): 81, 81, 117, (43,54,0): 71, 71, 99, (43,55,0): 65, 62, 81, (43,56,0): 61, 53, 68, (43,57,0): 72, 56, 66, (43,58,0): 84, 61, 67, (43,59,0): 96, 64, 69, (43,60,0): 110, 67, 74, (43,61,0): 128, 79, 85, (43,62,0): 150, 93, 100, (43,63,0): 170, 103, 120, (43,64,0): 189, 108, 141, (43,65,0): 201, 110, 153, (43,66,0): 203, 111, 152, (43,67,0): 201, 105, 143, (43,68,0): 198, 97, 131, (43,69,0): 199, 88, 120, (43,70,0): 198, 73, 103, (43,71,0): 196, 59, 85, (43,72,0): 197, 51, 72, (43,73,0): 216, 65, 80, (43,74,0): 223, 69, 79, (43,75,0): 208, 60, 60, (43,76,0): 195, 56, 49, (43,77,0): 194, 64, 50, (43,78,0): 186, 65, 44, (43,79,0): 175, 59, 36, (43,80,0): 173, 54, 34, (43,81,0): 173, 53, 36, (43,82,0): 174, 53, 36, (43,83,0): 179, 53, 38, (43,84,0): 182, 55, 40, (43,85,0): 188, 56, 43, (43,86,0): 195, 59, 45, (43,87,0): 200, 60, 47, (43,88,0): 211, 64, 54, (43,89,0): 215, 64, 55, (43,90,0): 218, 64, 54, (43,91,0): 220, 63, 54, (43,92,0): 222, 61, 53, (43,93,0): 222, 57, 51, (43,94,0): 221, 54, 46, (43,95,0): 219, 52, 44, (43,96,0): 211, 46, 40, (43,97,0): 210, 45, 39, (43,98,0): 211, 46, 40, (43,99,0): 216, 51, 45, (43,100,0): 225, 58, 52, (43,101,0): 227, 60, 52, (43,102,0): 225, 56, 49, (43,103,0): 220, 53, 45, (43,104,0): 220, 53, 45, (43,105,0): 208, 44, 34, (43,106,0): 205, 41, 31, (43,107,0): 217, 55, 44, (43,108,0): 226, 66, 54, (43,109,0): 220, 63, 48, (43,110,0): 208, 52, 37, (43,111,0): 203, 46, 31, (43,112,0): 233, 70, 55, (43,113,0): 243, 73, 60, (43,114,0): 253, 72, 63, (43,115,0): 252, 60, 55, (43,116,0): 244, 45, 42, (43,117,0): 241, 35, 37, (43,118,0): 245, 39, 41, (43,119,0): 251, 47, 50, (43,120,0): 241, 45, 46, (43,121,0): 235, 47, 46, (43,122,0): 228, 50, 46, (43,123,0): 222, 51, 44, (43,124,0): 218, 49, 42, (43,125,0): 215, 48, 42, (43,126,0): 214, 47, 41, (43,127,0): 211, 48, 39, (43,128,0): 211, 55, 42, (43,129,0): 210, 57, 43, (43,130,0): 214, 58, 43, (43,131,0): 216, 60, 45, (43,132,0): 218, 62, 47, (43,133,0): 219, 63, 48, (43,134,0): 220, 64, 51, (43,135,0): 220, 64, 51, (43,136,0): 210, 54, 42, (43,137,0): 230, 76, 66, (43,138,0): 229, 74, 69, (43,139,0): 206, 53, 48, (43,140,0): 223, 71, 70, (43,141,0): 243, 90, 92, (43,142,0): 223, 73, 75, (43,143,0): 213, 65, 63, (43,144,0): 200, 60, 47, (43,145,0): 196, 59, 43, (43,146,0): 195, 58, 42, (43,147,0): 195, 58, 42, (43,148,0): 194, 58, 42, (43,149,0): 194, 58, 42, (43,150,0): 193, 57, 43, (43,151,0): 190, 57, 42, (43,152,0): 194, 60, 48, (43,153,0): 194, 62, 50, (43,154,0): 200, 70, 57, (43,155,0): 207, 79, 66, (43,156,0): 206, 80, 68, (43,157,0): 198, 72, 60, (43,158,0): 191, 67, 55, (43,159,0): 193, 67, 55, (43,160,0): 206, 72, 63, (43,161,0): 209, 70, 63, (43,162,0): 213, 74, 69, (43,163,0): 219, 80, 75, (43,164,0): 221, 82, 79, (43,165,0): 217, 77, 76, (43,166,0): 218, 75, 77, (43,167,0): 220, 75, 80, (43,168,0): 235, 88, 96, (43,169,0): 243, 91, 103, (43,170,0): 252, 97, 113, (43,171,0): 255, 97, 117, (43,172,0): 250, 88, 109, (43,173,0): 245, 79, 103, (43,174,0): 245, 77, 103, (43,175,0): 253, 78, 107, (43,176,0): 255, 76, 112, (43,177,0): 255, 79, 116, (43,178,0): 255, 83, 115, (43,179,0): 255, 82, 110, (43,180,0): 250, 84, 108, (43,181,0): 252, 90, 111, (43,182,0): 255, 99, 117, (43,183,0): 255, 105, 120, (43,184,0): 255, 102, 117, (43,185,0): 250, 98, 111, (43,186,0): 244, 98, 109, (43,187,0): 236, 101, 108, (43,188,0): 224, 103, 108, (43,189,0): 212, 106, 106, (43,190,0): 200, 106, 104, (43,191,0): 177, 104, 97, (43,192,0): 141, 94, 84, (43,193,0): 104, 70, 60, (43,194,0): 130, 93, 85, (43,195,0): 172, 135, 129, (43,196,0): 206, 171, 169, (43,197,0): 229, 199, 197, (43,198,0): 239, 218, 217, (43,199,0): 255, 243, 243, (43,200,0): 251, 247, 246, (43,201,0): 249, 253, 252, (43,202,0): 248, 255, 255, (43,203,0): 245, 255, 254, (43,204,0): 248, 254, 254, (43,205,0): 255, 255, 255, (43,206,0): 255, 251, 255, (43,207,0): 254, 248, 248, (43,208,0): 251, 250, 245, (43,209,0): 250, 250, 242, (43,210,0): 249, 248, 243, (43,211,0): 253, 250, 245, (43,212,0): 255, 251, 247, (43,213,0): 255, 250, 247, (43,214,0): 253, 243, 241, (43,215,0): 247, 236, 232, (43,216,0): 235, 224, 218, (43,217,0): 223, 213, 204, (43,218,0): 222, 212, 202, (43,219,0): 237, 230, 214, (43,220,0): 254, 247, 228, (43,221,0): 255, 254, 232, (43,222,0): 255, 254, 229, (43,223,0): 255, 254, 233, (43,224,0): 247, 249, 238, (43,225,0): 234, 239, 232, (43,226,0): 228, 231, 224, (44,0,0): 78, 72, 58, (44,1,0): 77, 71, 57, (44,2,0): 76, 70, 56, (44,3,0): 74, 68, 54, (44,4,0): 72, 66, 54, (44,5,0): 70, 64, 52, (44,6,0): 68, 61, 51, (44,7,0): 67, 60, 50, (44,8,0): 63, 56, 48, (44,9,0): 62, 55, 47, (44,10,0): 61, 54, 46, (44,11,0): 61, 54, 46, (44,12,0): 61, 54, 48, (44,13,0): 62, 55, 49, (44,14,0): 64, 57, 51, (44,15,0): 63, 58, 52, (44,16,0): 67, 62, 56, (44,17,0): 69, 65, 56, (44,18,0): 75, 67, 56, (44,19,0): 78, 69, 54, (44,20,0): 81, 68, 51, (44,21,0): 82, 69, 50, (44,22,0): 86, 70, 54, (44,23,0): 86, 72, 59, (44,24,0): 90, 77, 71, (44,25,0): 86, 77, 82, (44,26,0): 91, 87, 104, (44,27,0): 108, 107, 139, (44,28,0): 126, 130, 177, (44,29,0): 138, 147, 206, (44,30,0): 146, 159, 227, (44,31,0): 154, 166, 238, (44,32,0): 166, 174, 247, (44,33,0): 169, 175, 249, (44,34,0): 173, 176, 253, (44,35,0): 175, 179, 253, (44,36,0): 176, 179, 255, (44,37,0): 176, 180, 254, (44,38,0): 176, 179, 255, (44,39,0): 175, 179, 253, (44,40,0): 171, 174, 251, (44,41,0): 168, 171, 248, (44,42,0): 164, 167, 244, (44,43,0): 160, 162, 239, (44,44,0): 154, 156, 233, (44,45,0): 147, 149, 226, (44,46,0): 138, 140, 217, (44,47,0): 134, 133, 209, (44,48,0): 131, 127, 201, (44,49,0): 123, 117, 187, (44,50,0): 109, 107, 172, (44,51,0): 100, 101, 158, (44,52,0): 95, 97, 146, (44,53,0): 89, 91, 132, (44,54,0): 82, 81, 115, (44,55,0): 78, 72, 98, (44,56,0): 87, 70, 89, (44,57,0): 95, 67, 81, (44,58,0): 109, 66, 76, (44,59,0): 129, 69, 77, (44,60,0): 152, 77, 84, (44,61,0): 172, 85, 93, (44,62,0): 188, 91, 98, (44,63,0): 202, 90, 104, (44,64,0): 214, 84, 112, (44,65,0): 223, 83, 118, (44,66,0): 222, 84, 117, (44,67,0): 215, 80, 110, (44,68,0): 208, 74, 99, (44,69,0): 203, 67, 89, (44,70,0): 198, 57, 74, (44,71,0): 194, 47, 63, (44,72,0): 211, 57, 69, (44,73,0): 225, 68, 77, (44,74,0): 228, 72, 75, (44,75,0): 215, 63, 60, (44,76,0): 205, 62, 54, (44,77,0): 203, 71, 58, (44,78,0): 194, 73, 52, (44,79,0): 182, 63, 41, (44,80,0): 183, 62, 43, (44,81,0): 184, 61, 45, (44,82,0): 186, 60, 45, (44,83,0): 189, 62, 47, (44,84,0): 195, 63, 48, (44,85,0): 202, 66, 52, (44,86,0): 208, 68, 55, (44,87,0): 213, 69, 58, (44,88,0): 217, 69, 57, (44,89,0): 218, 66, 55, (44,90,0): 219, 62, 53, (44,91,0): 217, 59, 50, (44,92,0): 217, 54, 45, (44,93,0): 217, 53, 44, (44,94,0): 218, 51, 43, (44,95,0): 215, 51, 42, (44,96,0): 212, 49, 42, (44,97,0): 215, 52, 45, (44,98,0): 218, 55, 46, (44,99,0): 221, 57, 48, (44,100,0): 223, 56, 48, (44,101,0): 222, 55, 47, (44,102,0): 221, 54, 46, (44,103,0): 220, 53, 44, (44,104,0): 214, 47, 38, (44,105,0): 217, 53, 43, (44,106,0): 215, 55, 43, (44,107,0): 207, 50, 35, (44,108,0): 205, 49, 34, (44,109,0): 210, 57, 41, (44,110,0): 213, 62, 45, (44,111,0): 212, 59, 41, (44,112,0): 216, 60, 45, (44,113,0): 230, 68, 55, (44,114,0): 248, 74, 65, (44,115,0): 253, 68, 63, (44,116,0): 249, 54, 52, (44,117,0): 245, 42, 45, (44,118,0): 246, 42, 45, (44,119,0): 247, 47, 50, (44,120,0): 247, 54, 55, (44,121,0): 237, 53, 53, (44,122,0): 226, 51, 48, (44,123,0): 218, 49, 44, (44,124,0): 215, 48, 42, (44,125,0): 215, 47, 44, (44,126,0): 217, 48, 45, (44,127,0): 217, 48, 43, (44,128,0): 227, 56, 49, (44,129,0): 228, 57, 49, (44,130,0): 226, 58, 49, (44,131,0): 226, 59, 50, (44,132,0): 224, 60, 48, (44,133,0): 223, 61, 48, (44,134,0): 220, 63, 48, (44,135,0): 218, 62, 49, (44,136,0): 209, 55, 43, (44,137,0): 239, 87, 76, (44,138,0): 248, 97, 90, (44,139,0): 211, 59, 54, (44,140,0): 209, 59, 58, (44,141,0): 230, 80, 81, (44,142,0): 220, 70, 72, (44,143,0): 230, 80, 81, (44,144,0): 207, 60, 52, (44,145,0): 202, 58, 47, (44,146,0): 198, 56, 44, (44,147,0): 197, 57, 44, (44,148,0): 196, 58, 45, (44,149,0): 196, 60, 46, (44,150,0): 195, 59, 45, (44,151,0): 192, 59, 44, (44,152,0): 190, 58, 45, (44,153,0): 190, 60, 46, (44,154,0): 195, 65, 51, (44,155,0): 199, 72, 57, (44,156,0): 199, 73, 59, (44,157,0): 194, 68, 54, (44,158,0): 190, 64, 50, (44,159,0): 188, 62, 48, (44,160,0): 201, 70, 60, (44,161,0): 202, 69, 60, (44,162,0): 206, 73, 66, (44,163,0): 213, 80, 73, (44,164,0): 215, 82, 77, (44,165,0): 213, 78, 75, (44,166,0): 211, 75, 75, (44,167,0): 215, 76, 79, (44,168,0): 233, 90, 96, (44,169,0): 240, 94, 104, (44,170,0): 252, 102, 114, (44,171,0): 255, 104, 120, (44,172,0): 252, 93, 113, (44,173,0): 242, 80, 101, (44,174,0): 243, 77, 101, (44,175,0): 252, 79, 107, (44,176,0): 255, 83, 117, (44,177,0): 255, 82, 116, (44,178,0): 254, 81, 111, (44,179,0): 244, 82, 106, (44,180,0): 243, 92, 111, (44,181,0): 250, 103, 119, (44,182,0): 253, 105, 119, (44,183,0): 249, 101, 115, (44,184,0): 253, 101, 116, (44,185,0): 245, 94, 109, (44,186,0): 239, 94, 107, (44,187,0): 236, 106, 114, (44,188,0): 221, 115, 117, (44,189,0): 192, 107, 102, (44,190,0): 168, 101, 92, (44,191,0): 156, 110, 97, (44,192,0): 127, 101, 86, (44,193,0): 89, 71, 57, (44,194,0): 110, 86, 74, (44,195,0): 150, 123, 114, (44,196,0): 190, 159, 156, (44,197,0): 223, 193, 193, (44,198,0): 238, 214, 214, (44,199,0): 254, 238, 239, (44,200,0): 254, 245, 246, (44,201,0): 252, 252, 252, (44,202,0): 249, 255, 255, (44,203,0): 246, 255, 254, (44,204,0): 249, 253, 254, (44,205,0): 255, 255, 255, (44,206,0): 255, 251, 255, (44,207,0): 254, 248, 250, (44,208,0): 253, 254, 248, (44,209,0): 250, 253, 244, (44,210,0): 250, 251, 245, (44,211,0): 254, 253, 248, (44,212,0): 255, 255, 250, (44,213,0): 255, 253, 249, (44,214,0): 255, 250, 244, (44,215,0): 255, 246, 241, (44,216,0): 242, 233, 226, (44,217,0): 229, 221, 210, (44,218,0): 225, 217, 204, (44,219,0): 240, 233, 215, (44,220,0): 255, 250, 228, (44,221,0): 255, 255, 230, (44,222,0): 255, 254, 229, (44,223,0): 255, 254, 233, (44,224,0): 246, 248, 234, (44,225,0): 237, 240, 231, (44,226,0): 232, 233, 225, (45,0,0): 81, 75, 61, (45,1,0): 80, 74, 60, (45,2,0): 79, 73, 59, (45,3,0): 77, 71, 57, (45,4,0): 75, 69, 57, (45,5,0): 73, 67, 55, (45,6,0): 71, 64, 54, (45,7,0): 71, 64, 54, (45,8,0): 66, 59, 51, (45,9,0): 65, 58, 50, (45,10,0): 64, 57, 49, (45,11,0): 63, 56, 48, (45,12,0): 63, 56, 50, (45,13,0): 63, 56, 50, (45,14,0): 65, 58, 52, (45,15,0): 64, 59, 53, (45,16,0): 66, 63, 56, (45,17,0): 69, 66, 57, (45,18,0): 75, 69, 57, (45,19,0): 77, 70, 54, (45,20,0): 80, 69, 51, (45,21,0): 82, 69, 50, (45,22,0): 85, 70, 51, (45,23,0): 85, 72, 55, (45,24,0): 89, 76, 67, (45,25,0): 85, 75, 76, (45,26,0): 90, 83, 99, (45,27,0): 105, 105, 133, (45,28,0): 124, 129, 171, (45,29,0): 137, 147, 200, (45,30,0): 147, 158, 222, (45,31,0): 154, 164, 235, (45,32,0): 166, 172, 248, (45,33,0): 169, 172, 251, (45,34,0): 172, 173, 253, (45,35,0): 173, 176, 255, (45,36,0): 174, 177, 255, (45,37,0): 174, 177, 254, (45,38,0): 173, 176, 253, (45,39,0): 173, 176, 253, (45,40,0): 169, 172, 249, (45,41,0): 167, 170, 247, (45,42,0): 164, 168, 242, (45,43,0): 162, 166, 240, (45,44,0): 159, 163, 237, (45,45,0): 154, 158, 232, (45,46,0): 149, 153, 227, (45,47,0): 146, 148, 222, (45,48,0): 146, 146, 218, (45,49,0): 137, 138, 205, (45,50,0): 124, 128, 192, (45,51,0): 115, 120, 178, (45,52,0): 111, 117, 169, (45,53,0): 109, 112, 157, (45,54,0): 105, 103, 142, (45,55,0): 106, 95, 125, (45,56,0): 121, 95, 120, (45,57,0): 130, 87, 106, (45,58,0): 142, 80, 95, (45,59,0): 163, 79, 92, (45,60,0): 187, 83, 92, (45,61,0): 205, 84, 93, (45,62,0): 214, 80, 87, (45,63,0): 218, 72, 83, (45,64,0): 224, 65, 83, (45,65,0): 228, 65, 84, (45,66,0): 224, 69, 85, (45,67,0): 217, 69, 81, (45,68,0): 210, 69, 77, (45,69,0): 204, 65, 70, (45,70,0): 199, 59, 60, (45,71,0): 198, 54, 54, (45,72,0): 227, 74, 76, (45,73,0): 229, 73, 74, (45,74,0): 224, 66, 65, (45,75,0): 211, 56, 52, (45,76,0): 206, 57, 50, (45,77,0): 206, 65, 55, (45,78,0): 200, 68, 53, (45,79,0): 190, 63, 46, (45,80,0): 195, 69, 54, (45,81,0): 195, 69, 54, (45,82,0): 197, 70, 55, (45,83,0): 201, 69, 56, (45,84,0): 206, 70, 56, (45,85,0): 209, 71, 58, (45,86,0): 215, 71, 60, (45,87,0): 218, 71, 61, (45,88,0): 214, 62, 51, (45,89,0): 213, 59, 49, (45,90,0): 214, 56, 47, (45,91,0): 213, 52, 44, (45,92,0): 214, 51, 42, (45,93,0): 216, 52, 43, (45,94,0): 219, 52, 44, (45,95,0): 218, 54, 45, (45,96,0): 219, 56, 49, (45,97,0): 221, 60, 52, (45,98,0): 224, 61, 52, (45,99,0): 223, 60, 51, (45,100,0): 221, 57, 48, (45,101,0): 220, 53, 45, (45,102,0): 220, 53, 44, (45,103,0): 219, 55, 45, (45,104,0): 210, 46, 36, (45,105,0): 221, 59, 48, (45,106,0): 218, 61, 46, (45,107,0): 205, 49, 34, (45,108,0): 198, 45, 29, (45,109,0): 206, 55, 38, (45,110,0): 210, 61, 41, (45,111,0): 205, 58, 38, (45,112,0): 204, 57, 39, (45,113,0): 212, 56, 41, (45,114,0): 226, 58, 47, (45,115,0): 243, 61, 57, (45,116,0): 255, 64, 64, (45,117,0): 255, 60, 62, (45,118,0): 254, 51, 55, (45,119,0): 243, 44, 47, (45,120,0): 234, 44, 46, (45,121,0): 225, 43, 42, (45,122,0): 216, 42, 41, (45,123,0): 212, 43, 40, (45,124,0): 215, 47, 44, (45,125,0): 222, 52, 52, (45,126,0): 228, 56, 56, (45,127,0): 233, 57, 57, (45,128,0): 239, 55, 53, (45,129,0): 240, 55, 52, (45,130,0): 238, 55, 51, (45,131,0): 232, 55, 49, (45,132,0): 227, 55, 45, (45,133,0): 220, 54, 42, (45,134,0): 215, 53, 40, (45,135,0): 209, 53, 38, (45,136,0): 205, 53, 40, (45,137,0): 231, 80, 69, (45,138,0): 255, 109, 99, (45,139,0): 219, 72, 65, (45,140,0): 200, 52, 50, (45,141,0): 215, 67, 67, (45,142,0): 211, 62, 66, (45,143,0): 234, 86, 86, (45,144,0): 217, 65, 60, (45,145,0): 210, 62, 52, (45,146,0): 203, 56, 46, (45,147,0): 198, 54, 43, (45,148,0): 198, 58, 45, (45,149,0): 198, 60, 47, (45,150,0): 195, 62, 47, (45,151,0): 193, 61, 46, (45,152,0): 187, 57, 43, (45,153,0): 187, 60, 45, (45,154,0): 190, 63, 48, (45,155,0): 192, 65, 50, (45,156,0): 191, 65, 50, (45,157,0): 189, 64, 46, (45,158,0): 188, 61, 46, (45,159,0): 187, 60, 45, (45,160,0): 195, 67, 54, (45,161,0): 196, 68, 57, (45,162,0): 200, 72, 63, (45,163,0): 208, 80, 71, (45,164,0): 211, 82, 76, (45,165,0): 208, 79, 73, (45,166,0): 210, 78, 76, (45,167,0): 213, 79, 78, (45,168,0): 233, 94, 99, (45,169,0): 238, 97, 103, (45,170,0): 251, 105, 116, (45,171,0): 255, 110, 122, (45,172,0): 255, 100, 117, (45,173,0): 245, 86, 106, (45,174,0): 245, 81, 105, (45,175,0): 254, 86, 111, (45,176,0): 255, 86, 115, (45,177,0): 255, 86, 113, (45,178,0): 245, 87, 110, (45,179,0): 238, 93, 110, (45,180,0): 241, 109, 120, (45,181,0): 247, 117, 127, (45,182,0): 240, 106, 115, (45,183,0): 227, 87, 98, (45,184,0): 243, 95, 109, (45,185,0): 245, 94, 109, (45,186,0): 241, 96, 111, (45,187,0): 241, 114, 125, (45,188,0): 238, 135, 138, (45,189,0): 206, 128, 124, (45,190,0): 169, 117, 104, (45,191,0): 151, 122, 106, (45,192,0): 117, 106, 88, (45,193,0): 82, 77, 58, (45,194,0): 97, 85, 71, (45,195,0): 132, 112, 103, (45,196,0): 177, 149, 146, (45,197,0): 221, 191, 191, (45,198,0): 239, 213, 216, (45,199,0): 253, 233, 235, (45,200,0): 254, 244, 245, (45,201,0): 252, 250, 251, (45,202,0): 250, 254, 255, (45,203,0): 248, 254, 254, (45,204,0): 252, 253, 255, (45,205,0): 255, 254, 255, (45,206,0): 255, 250, 255, (45,207,0): 255, 249, 253, (45,208,0): 255, 255, 251, (45,209,0): 248, 254, 244, (45,210,0): 250, 253, 246, (45,211,0): 255, 255, 250, (45,212,0): 255, 255, 250, (45,213,0): 255, 255, 248, (45,214,0): 255, 252, 246, (45,215,0): 255, 253, 245, (45,216,0): 250, 241, 232, (45,217,0): 238, 230, 219, (45,218,0): 234, 226, 213, (45,219,0): 245, 240, 221, (45,220,0): 255, 251, 229, (45,221,0): 255, 254, 229, (45,222,0): 255, 254, 226, (45,223,0): 255, 255, 231, (45,224,0): 249, 250, 234, (45,225,0): 242, 244, 231, (45,226,0): 238, 240, 229, (46,0,0): 83, 77, 61, (46,1,0): 82, 76, 60, (46,2,0): 81, 75, 61, (46,3,0): 79, 73, 59, (46,4,0): 77, 71, 57, (46,5,0): 75, 69, 55, (46,6,0): 74, 68, 56, (46,7,0): 73, 67, 55, (46,8,0): 69, 62, 52, (46,9,0): 68, 61, 51, (46,10,0): 66, 59, 51, (46,11,0): 65, 58, 50, (46,12,0): 64, 57, 51, (46,13,0): 65, 58, 52, (46,14,0): 65, 57, 54, (46,15,0): 64, 59, 55, (46,16,0): 65, 64, 59, (46,17,0): 67, 67, 59, (46,18,0): 73, 69, 57, (46,19,0): 77, 71, 55, (46,20,0): 79, 71, 50, (46,21,0): 82, 70, 48, (46,22,0): 85, 70, 49, (46,23,0): 85, 72, 53, (46,24,0): 87, 75, 63, (46,25,0): 82, 72, 70, (46,26,0): 88, 82, 94, (46,27,0): 106, 103, 130, (46,28,0): 125, 129, 167, (46,29,0): 137, 147, 196, (46,30,0): 146, 158, 218, (46,31,0): 152, 162, 231, (46,32,0): 164, 167, 246, (46,33,0): 166, 167, 250, (46,34,0): 171, 169, 252, (46,35,0): 171, 172, 254, (46,36,0): 172, 173, 255, (46,37,0): 173, 174, 254, (46,38,0): 172, 174, 251, (46,39,0): 172, 174, 251, (46,40,0): 168, 172, 246, (46,41,0): 166, 170, 244, (46,42,0): 164, 168, 241, (46,43,0): 163, 167, 240, (46,44,0): 161, 168, 238, (46,45,0): 160, 167, 237, (46,46,0): 157, 164, 232, (46,47,0): 155, 162, 230, (46,48,0): 153, 158, 226, (46,49,0): 146, 154, 219, (46,50,0): 139, 147, 210, (46,51,0): 134, 143, 202, (46,52,0): 131, 141, 194, (46,53,0): 132, 136, 183, (46,54,0): 131, 129, 168, (46,55,0): 136, 121, 154, (46,56,0): 143, 109, 136, (46,57,0): 154, 99, 122, (46,58,0): 169, 88, 105, (46,59,0): 187, 81, 95, (46,60,0): 207, 77, 89, (46,61,0): 224, 73, 82, (46,62,0): 232, 65, 73, (46,63,0): 232, 62, 65, (46,64,0): 228, 62, 62, (46,65,0): 222, 65, 60, (46,66,0): 216, 69, 61, (46,67,0): 210, 74, 60, (46,68,0): 202, 75, 60, (46,69,0): 194, 71, 53, (46,70,0): 191, 68, 50, (46,71,0): 195, 65, 49, (46,72,0): 226, 86, 73, (46,73,0): 223, 72, 63, (46,74,0): 217, 60, 55, (46,75,0): 216, 54, 51, (46,76,0): 218, 56, 53, (46,77,0): 216, 59, 54, (46,78,0): 210, 57, 52, (46,79,0): 200, 56, 48, (46,80,0): 192, 58, 46, (46,81,0): 190, 60, 46, (46,82,0): 191, 59, 46, (46,83,0): 192, 58, 46, (46,84,0): 194, 56, 43, (46,85,0): 195, 55, 42, (46,86,0): 198, 52, 39, (46,87,0): 198, 50, 38, (46,88,0): 206, 52, 42, (46,89,0): 208, 51, 42, (46,90,0): 209, 51, 40, (46,91,0): 212, 51, 41, (46,92,0): 214, 51, 42, (46,93,0): 217, 53, 44, (46,94,0): 221, 54, 46, (46,95,0): 220, 56, 47, (46,96,0): 222, 61, 51, (46,97,0): 219, 61, 50, (46,98,0): 220, 59, 49, (46,99,0): 219, 56, 47, (46,100,0): 219, 55, 45, (46,101,0): 218, 54, 44, (46,102,0): 216, 52, 42, (46,103,0): 215, 51, 41, (46,104,0): 213, 51, 38, (46,105,0): 211, 51, 37, (46,106,0): 208, 52, 37, (46,107,0): 207, 54, 38, (46,108,0): 210, 61, 41, (46,109,0): 209, 62, 42, (46,110,0): 202, 57, 36, (46,111,0): 192, 50, 28, (46,112,0): 200, 58, 38, (46,113,0): 202, 52, 37, (46,114,0): 213, 49, 39, (46,115,0): 231, 53, 49, (46,116,0): 250, 60, 60, (46,117,0): 255, 61, 64, (46,118,0): 255, 55, 61, (46,119,0): 247, 51, 55, (46,120,0): 234, 45, 49, (46,121,0): 225, 45, 46, (46,122,0): 217, 45, 45, (46,123,0): 215, 47, 46, (46,124,0): 220, 52, 51, (46,125,0): 227, 57, 58, (46,126,0): 233, 59, 61, (46,127,0): 240, 57, 61, (46,128,0): 246, 50, 54, (46,129,0): 248, 48, 51, (46,130,0): 244, 48, 49, (46,131,0): 237, 49, 47, (46,132,0): 228, 49, 42, (46,133,0): 222, 50, 40, (46,134,0): 213, 49, 37, (46,135,0): 207, 51, 36, (46,136,0): 201, 49, 36, (46,137,0): 209, 61, 49, (46,138,0): 250, 106, 95, (46,139,0): 228, 84, 76, (46,140,0): 200, 57, 53, (46,141,0): 208, 64, 63, (46,142,0): 203, 58, 61, (46,143,0): 228, 82, 83, (46,144,0): 228, 74, 72, (46,145,0): 220, 67, 61, (46,146,0): 209, 58, 51, (46,147,0): 201, 54, 46, (46,148,0): 198, 56, 46, (46,149,0): 197, 59, 48, (46,150,0): 194, 60, 48, (46,151,0): 191, 61, 47, (46,152,0): 186, 59, 42, (46,153,0): 188, 63, 45, (46,154,0): 189, 64, 46, (46,155,0): 188, 63, 45, (46,156,0): 186, 59, 42, (46,157,0): 186, 59, 40, (46,158,0): 189, 59, 43, (46,159,0): 190, 60, 44, (46,160,0): 188, 62, 48, (46,161,0): 188, 62, 50, (46,162,0): 192, 68, 56, (46,163,0): 200, 76, 66, (46,164,0): 204, 80, 72, (46,165,0): 202, 78, 70, (46,166,0): 204, 76, 73, (46,167,0): 208, 78, 76, (46,168,0): 232, 97, 101, (46,169,0): 236, 97, 102, (46,170,0): 248, 104, 114, (46,171,0): 255, 111, 123, (46,172,0): 255, 104, 120, (46,173,0): 247, 90, 107, (46,174,0): 247, 85, 106, (46,175,0): 253, 91, 114, (46,176,0): 249, 91, 114, (46,177,0): 244, 95, 115, (46,178,0): 233, 98, 113, (46,179,0): 227, 107, 116, (46,180,0): 234, 125, 128, (46,181,0): 242, 133, 136, (46,182,0): 234, 118, 121, (46,183,0): 222, 92, 100, (46,184,0): 246, 101, 116, (46,185,0): 255, 107, 124, (46,186,0): 247, 98, 117, (46,187,0): 238, 106, 119, (46,188,0): 249, 144, 149, (46,189,0): 239, 161, 159, (46,190,0): 196, 148, 138, (46,191,0): 163, 140, 124, (46,192,0): 106, 105, 85, (46,193,0): 73, 81, 60, (46,194,0): 88, 85, 70, (46,195,0): 117, 103, 92, (46,196,0): 165, 140, 136, (46,197,0): 220, 190, 190, (46,198,0): 242, 213, 217, (46,199,0): 249, 227, 230, (46,200,0): 255, 242, 245, (46,201,0): 255, 249, 251, (46,202,0): 252, 253, 255, (46,203,0): 249, 253, 255, (46,204,0): 252, 253, 255, (46,205,0): 255, 253, 255, (46,206,0): 255, 251, 255, (46,207,0): 255, 248, 253, (46,208,0): 254, 255, 251, (46,209,0): 247, 253, 243, (46,210,0): 247, 253, 243, (46,211,0): 253, 255, 247, (46,212,0): 255, 255, 248, (46,213,0): 255, 253, 246, (46,214,0): 255, 251, 245, (46,215,0): 255, 255, 246, (46,216,0): 255, 250, 240, (46,217,0): 246, 240, 226, (46,218,0): 242, 236, 220, (46,219,0): 251, 246, 226, (46,220,0): 255, 252, 230, (46,221,0): 254, 252, 227, (46,222,0): 254, 253, 225, (46,223,0): 255, 255, 230, (46,224,0): 253, 254, 236, (46,225,0): 248, 249, 235, (46,226,0): 246, 246, 234, (47,0,0): 86, 79, 63, (47,1,0): 84, 78, 62, (47,2,0): 83, 75, 62, (47,3,0): 80, 74, 60, (47,4,0): 79, 71, 58, (47,5,0): 76, 70, 56, (47,6,0): 76, 68, 55, (47,7,0): 74, 68, 56, (47,8,0): 72, 64, 53, (47,9,0): 70, 64, 52, (47,10,0): 69, 60, 51, (47,11,0): 66, 59, 49, (47,12,0): 66, 57, 50, (47,13,0): 65, 58, 50, (47,14,0): 67, 58, 51, (47,15,0): 65, 60, 54, (47,16,0): 67, 64, 57, (47,17,0): 68, 68, 58, (47,18,0): 74, 70, 58, (47,19,0): 77, 71, 55, (47,20,0): 79, 71, 50, (47,21,0): 81, 70, 48, (47,22,0): 84, 72, 50, (47,23,0): 85, 72, 53, (47,24,0): 85, 73, 61, (47,25,0): 81, 71, 69, (47,26,0): 87, 81, 93, (47,27,0): 106, 104, 128, (47,28,0): 126, 130, 168, (47,29,0): 140, 148, 197, (47,30,0): 147, 157, 216, (47,31,0): 153, 162, 231, (47,32,0): 159, 160, 242, (47,33,0): 164, 160, 247, (47,34,0): 166, 163, 250, (47,35,0): 169, 166, 253, (47,36,0): 169, 169, 255, (47,37,0): 169, 171, 254, (47,38,0): 169, 172, 253, (47,39,0): 169, 172, 251, (47,40,0): 165, 171, 245, (47,41,0): 163, 170, 242, (47,42,0): 163, 167, 238, (47,43,0): 162, 167, 235, (47,44,0): 164, 169, 237, (47,45,0): 165, 170, 238, (47,46,0): 165, 168, 237, (47,47,0): 163, 167, 238, (47,48,0): 152, 161, 230, (47,49,0): 150, 161, 227, (47,50,0): 148, 159, 221, (47,51,0): 148, 159, 213, (47,52,0): 149, 155, 203, (47,53,0): 152, 150, 190, (47,54,0): 158, 141, 175, (47,55,0): 168, 132, 160, (47,56,0): 164, 102, 127, (47,57,0): 178, 93, 114, (47,58,0): 193, 82, 99, (47,59,0): 206, 74, 88, (47,60,0): 218, 66, 78, (47,61,0): 228, 62, 72, (47,62,0): 235, 60, 67, (47,63,0): 235, 61, 62, (47,64,0): 231, 64, 58, (47,65,0): 223, 67, 55, (47,66,0): 216, 70, 55, (47,67,0): 209, 74, 55, (47,68,0): 199, 74, 52, (47,69,0): 191, 71, 47, (47,70,0): 189, 67, 44, (47,71,0): 193, 64, 45, (47,72,0): 225, 83, 69, (47,73,0): 221, 68, 60, (47,74,0): 221, 57, 55, (47,75,0): 230, 62, 61, (47,76,0): 236, 68, 67, (47,77,0): 230, 64, 64, (47,78,0): 219, 56, 57, (47,79,0): 207, 53, 51, (47,80,0): 205, 67, 57, (47,81,0): 200, 68, 56, (47,82,0): 201, 67, 56, (47,83,0): 199, 65, 53, (47,84,0): 198, 62, 50, (47,85,0): 195, 57, 44, (47,86,0): 194, 54, 41, (47,87,0): 194, 50, 39, (47,88,0): 198, 50, 40, (47,89,0): 203, 51, 40, (47,90,0): 206, 52, 42, (47,91,0): 211, 53, 44, (47,92,0): 216, 53, 46, (47,93,0): 217, 52, 46, (47,94,0): 219, 52, 46, (47,95,0): 219, 52, 44, (47,96,0): 228, 66, 55, (47,97,0): 222, 60, 49, (47,98,0): 218, 54, 44, (47,99,0): 218, 54, 44, (47,100,0): 223, 57, 45, (47,101,0): 223, 57, 45, (47,102,0): 219, 53, 41, (47,103,0): 213, 49, 37, (47,104,0): 216, 56, 40, (47,105,0): 206, 49, 32, (47,106,0): 202, 49, 33, (47,107,0): 208, 57, 40, (47,108,0): 206, 56, 39, (47,109,0): 199, 52, 34, (47,110,0): 202, 55, 37, (47,111,0): 212, 67, 48, (47,112,0): 200, 55, 38, (47,113,0): 206, 56, 42, (47,114,0): 215, 54, 44, (47,115,0): 222, 53, 46, (47,116,0): 230, 51, 47, (47,117,0): 238, 53, 51, (47,118,0): 246, 58, 57, (47,119,0): 251, 63, 62, (47,120,0): 255, 76, 75, (47,121,0): 250, 72, 70, (47,122,0): 242, 66, 66, (47,123,0): 236, 62, 61, (47,124,0): 234, 60, 61, (47,125,0): 231, 55, 58, (47,126,0): 229, 50, 54, (47,127,0): 230, 44, 49, (47,128,0): 244, 43, 49, (47,129,0): 248, 41, 47, (47,130,0): 244, 44, 46, (47,131,0): 239, 47, 46, (47,132,0): 232, 49, 43, (47,133,0): 224, 52, 42, (47,134,0): 217, 53, 41, (47,135,0): 211, 55, 40, (47,136,0): 198, 48, 33, (47,137,0): 192, 46, 31, (47,138,0): 244, 100, 89, (47,139,0): 235, 93, 83, (47,140,0): 207, 64, 58, (47,141,0): 212, 68, 67, (47,142,0): 203, 59, 59, (47,143,0): 223, 77, 77, (47,144,0): 234, 82, 81, (47,145,0): 224, 72, 69, (47,146,0): 211, 59, 54, (47,147,0): 201, 54, 47, (47,148,0): 198, 56, 46, (47,149,0): 198, 57, 47, (47,150,0): 195, 59, 45, (47,151,0): 190, 58, 43, (47,152,0): 190, 60, 44, (47,153,0): 193, 64, 45, (47,154,0): 192, 65, 46, (47,155,0): 187, 60, 41, (47,156,0): 183, 56, 37, (47,157,0): 184, 57, 38, (47,158,0): 189, 60, 41, (47,159,0): 190, 63, 46, (47,160,0): 181, 55, 41, (47,161,0): 179, 55, 43, (47,162,0): 184, 62, 49, (47,163,0): 193, 71, 58, (47,164,0): 197, 75, 64, (47,165,0): 197, 73, 65, (47,166,0): 200, 73, 66, (47,167,0): 203, 74, 69, (47,168,0): 229, 97, 95, (47,169,0): 230, 94, 96, (47,170,0): 241, 100, 106, (47,171,0): 254, 110, 119, (47,172,0): 254, 107, 117, (47,173,0): 243, 93, 105, (47,174,0): 240, 88, 101, (47,175,0): 246, 94, 109, (47,176,0): 248, 97, 116, (47,177,0): 241, 100, 116, (47,178,0): 229, 104, 112, (47,179,0): 223, 110, 114, (47,180,0): 233, 127, 127, (47,181,0): 249, 141, 139, (47,182,0): 247, 131, 132, (47,183,0): 239, 110, 115, (47,184,0): 253, 112, 121, (47,185,0): 255, 120, 134, (47,186,0): 245, 97, 113, (47,187,0): 223, 88, 102, (47,188,0): 246, 136, 145, (47,189,0): 255, 180, 180, (47,190,0): 211, 173, 162, (47,191,0): 164, 153, 135, (47,192,0): 96, 104, 80, (47,193,0): 69, 81, 57, (47,194,0): 82, 84, 63, (47,195,0): 107, 97, 85, (47,196,0): 156, 136, 129, (47,197,0): 220, 192, 191, (47,198,0): 244, 215, 217, (47,199,0): 246, 224, 227, (47,200,0): 255, 241, 244, (47,201,0): 255, 248, 251, (47,202,0): 253, 253, 255, (47,203,0): 251, 252, 255, (47,204,0): 252, 253, 255, (47,205,0): 255, 253, 255, (47,206,0): 255, 252, 255, (47,207,0): 254, 249, 253, (47,208,0): 250, 255, 249, (47,209,0): 242, 254, 240, (47,210,0): 242, 252, 241, (47,211,0): 249, 255, 244, (47,212,0): 253, 255, 247, (47,213,0): 250, 252, 241, (47,214,0): 254, 251, 242, (47,215,0): 255, 255, 244, (47,216,0): 255, 255, 243, (47,217,0): 252, 246, 232, (47,218,0): 248, 242, 226, (47,219,0): 254, 249, 229, (47,220,0): 255, 253, 231, (47,221,0): 253, 251, 226, (47,222,0): 253, 252, 224, (47,223,0): 255, 255, 233, (47,224,0): 255, 255, 241, (47,225,0): 252, 252, 240, (47,226,0): 251, 251, 239, (48,0,0): 88, 79, 64, (48,1,0): 87, 80, 64, (48,2,0): 87, 78, 63, (48,3,0): 85, 78, 62, (48,4,0): 84, 75, 60, (48,5,0): 82, 75, 59, (48,6,0): 82, 73, 58, (48,7,0): 80, 72, 59, (48,8,0): 77, 67, 55, (48,9,0): 75, 67, 54, (48,10,0): 75, 65, 53, (48,11,0): 72, 64, 51, (48,12,0): 72, 62, 50, (48,13,0): 71, 63, 50, (48,14,0): 72, 62, 50, (48,15,0): 70, 64, 52, (48,16,0): 71, 67, 58, (48,17,0): 71, 69, 57, (48,18,0): 74, 71, 56, (48,19,0): 78, 73, 54, (48,20,0): 82, 74, 53, (48,21,0): 85, 74, 52, (48,22,0): 85, 74, 52, (48,23,0): 86, 75, 57, (48,24,0): 88, 78, 68, (48,25,0): 85, 76, 77, (48,26,0): 90, 84, 98, (48,27,0): 107, 104, 131, (48,28,0): 123, 126, 167, (48,29,0): 137, 143, 195, (48,30,0): 145, 153, 215, (48,31,0): 152, 159, 231, (48,32,0): 166, 162, 246, (48,33,0): 167, 161, 249, (48,34,0): 165, 160, 252, (48,35,0): 164, 161, 252, (48,36,0): 162, 163, 255, (48,37,0): 163, 167, 255, (48,38,0): 164, 170, 255, (48,39,0): 164, 173, 252, (48,40,0): 161, 170, 245, (48,41,0): 161, 169, 241, (48,42,0): 161, 168, 236, (48,43,0): 164, 169, 237, (48,44,0): 167, 170, 239, (48,45,0): 172, 170, 243, (48,46,0): 174, 170, 246, (48,47,0): 171, 170, 246, (48,48,0): 161, 168, 246, (48,49,0): 156, 166, 238, (48,50,0): 149, 160, 222, (48,51,0): 152, 159, 211, (48,52,0): 166, 164, 203, (48,53,0): 180, 160, 188, (48,54,0): 180, 135, 155, (48,55,0): 179, 105, 120, (48,56,0): 186, 78, 93, (48,57,0): 205, 70, 84, (48,58,0): 219, 65, 77, (48,59,0): 227, 61, 73, (48,60,0): 228, 61, 71, (48,61,0): 227, 62, 69, (48,62,0): 223, 64, 69, (48,63,0): 223, 64, 68, (48,64,0): 226, 61, 65, (48,65,0): 221, 61, 61, (48,66,0): 219, 70, 66, (48,67,0): 200, 59, 52, (48,68,0): 202, 68, 59, (48,69,0): 202, 69, 60, (48,70,0): 186, 49, 41, (48,71,0): 219, 74, 69, (48,72,0): 230, 75, 73, (48,73,0): 233, 67, 69, (48,74,0): 235, 62, 66, (48,75,0): 232, 59, 63, (48,76,0): 230, 60, 63, (48,77,0): 225, 61, 62, (48,78,0): 219, 59, 59, (48,79,0): 212, 60, 57, (48,80,0): 207, 66, 59, (48,81,0): 200, 63, 55, (48,82,0): 202, 68, 59, (48,83,0): 209, 77, 65, (48,84,0): 205, 75, 62, (48,85,0): 191, 61, 48, (48,86,0): 184, 54, 41, (48,87,0): 189, 57, 44, (48,88,0): 191, 55, 43, (48,89,0): 195, 54, 44, (48,90,0): 200, 53, 45, (48,91,0): 203, 50, 42, (48,92,0): 209, 47, 42, (48,93,0): 212, 47, 43, (48,94,0): 219, 50, 47, (48,95,0): 224, 53, 46, (48,96,0): 231, 65, 53, (48,97,0): 224, 56, 43, (48,98,0): 219, 49, 36, (48,99,0): 222, 50, 38, (48,100,0): 230, 57, 43, (48,101,0): 231, 59, 45, (48,102,0): 225, 55, 38, (48,103,0): 215, 50, 31, (48,104,0): 209, 50, 31, (48,105,0): 206, 51, 31, (48,106,0): 203, 52, 33, (48,107,0): 201, 51, 34, (48,108,0): 201, 51, 34, (48,109,0): 203, 51, 37, (48,110,0): 206, 53, 39, (48,111,0): 207, 53, 41, (48,112,0): 202, 48, 38, (48,113,0): 207, 50, 41, (48,114,0): 209, 53, 41, (48,115,0): 210, 54, 42, (48,116,0): 210, 52, 40, (48,117,0): 213, 51, 38, (48,118,0): 215, 51, 39, (48,119,0): 220, 52, 41, (48,120,0): 224, 50, 41, (48,121,0): 230, 51, 46, (48,122,0): 235, 53, 50, (48,123,0): 235, 51, 51, (48,124,0): 233, 47, 50, (48,125,0): 231, 45, 50, (48,126,0): 232, 45, 52, (48,127,0): 237, 46, 53, (48,128,0): 246, 45, 51, (48,129,0): 246, 43, 47, (48,130,0): 239, 43, 44, (48,131,0): 236, 47, 45, (48,132,0): 234, 53, 46, (48,133,0): 227, 57, 44, (48,134,0): 217, 55, 40, (48,135,0): 208, 52, 37, (48,136,0): 195, 45, 28, (48,137,0): 196, 51, 34, (48,138,0): 231, 88, 72, (48,139,0): 233, 89, 78, (48,140,0): 203, 59, 51, (48,141,0): 223, 78, 73, (48,142,0): 197, 52, 49, (48,143,0): 218, 72, 72, (48,144,0): 225, 79, 80, (48,145,0): 220, 74, 74, (48,146,0): 212, 67, 64, (48,147,0): 204, 59, 54, (48,148,0): 200, 56, 48, (48,149,0): 198, 56, 44, (48,150,0): 199, 57, 43, (48,151,0): 200, 60, 43, (48,152,0): 197, 60, 42, (48,153,0): 194, 59, 40, (48,154,0): 190, 57, 38, (48,155,0): 188, 59, 40, (48,156,0): 187, 60, 41, (48,157,0): 186, 61, 41, (48,158,0): 186, 61, 43, (48,159,0): 183, 60, 44, (48,160,0): 180, 56, 44, (48,161,0): 181, 59, 48, (48,162,0): 185, 61, 49, (48,163,0): 187, 63, 51, (48,164,0): 187, 63, 51, (48,165,0): 190, 64, 52, (48,166,0): 192, 64, 53, (48,167,0): 196, 65, 55, (48,168,0): 239, 106, 97, (48,169,0): 245, 112, 105, (48,170,0): 234, 99, 95, (48,171,0): 244, 109, 106, (48,172,0): 251, 113, 113, (48,173,0): 236, 97, 100, (48,174,0): 244, 103, 109, (48,175,0): 255, 112, 121, (48,176,0): 255, 107, 122, (48,177,0): 251, 104, 120, (48,178,0): 234, 103, 111, (48,179,0): 226, 101, 105, (48,180,0): 229, 103, 106, (48,181,0): 237, 109, 110, (48,182,0): 243, 110, 111, (48,183,0): 245, 109, 111, (48,184,0): 255, 119, 123, (48,185,0): 255, 126, 133, (48,186,0): 241, 95, 108, (48,187,0): 241, 105, 119, (48,188,0): 214, 103, 112, (48,189,0): 248, 174, 175, (48,190,0): 189, 167, 154, (48,191,0): 133, 141, 117, (48,192,0): 97, 112, 81, (48,193,0): 74, 89, 58, (48,194,0): 77, 81, 56, (48,195,0): 115, 110, 90, (48,196,0): 165, 149, 136, (48,197,0): 205, 182, 176, (48,198,0): 237, 213, 211, (48,199,0): 255, 238, 240, (48,200,0): 255, 244, 245, (48,201,0): 255, 245, 249, (48,202,0): 252, 247, 251, (48,203,0): 251, 251, 253, (48,204,0): 253, 254, 255, (48,205,0): 254, 255, 255, (48,206,0): 255, 254, 255, (48,207,0): 251, 255, 254, (48,208,0): 239, 255, 243, (48,209,0): 229, 252, 232, (48,210,0): 231, 249, 233, (48,211,0): 240, 254, 237, (48,212,0): 248, 255, 245, (48,213,0): 252, 255, 244, (48,214,0): 253, 255, 242, (48,215,0): 255, 253, 240, (48,216,0): 255, 253, 241, (48,217,0): 255, 251, 238, (48,218,0): 255, 250, 234, (48,219,0): 255, 250, 230, (48,220,0): 254, 249, 227, (48,221,0): 252, 250, 225, (48,222,0): 252, 250, 225, (48,223,0): 251, 250, 229, (48,224,0): 253, 253, 241, (48,225,0): 255, 255, 250, (48,226,0): 255, 255, 250, (49,0,0): 89, 80, 65, (49,1,0): 88, 79, 64, (49,2,0): 88, 79, 64, (49,3,0): 86, 77, 62, (49,4,0): 85, 76, 61, (49,5,0): 84, 75, 60, (49,6,0): 83, 74, 59, (49,7,0): 82, 73, 58, (49,8,0): 78, 69, 54, (49,9,0): 77, 68, 53, (49,10,0): 76, 67, 52, (49,11,0): 75, 66, 51, (49,12,0): 74, 65, 50, (49,13,0): 74, 65, 50, (49,14,0): 74, 65, 50, (49,15,0): 73, 65, 52, (49,16,0): 71, 67, 56, (49,17,0): 72, 68, 57, (49,18,0): 76, 70, 56, (49,19,0): 79, 72, 54, (49,20,0): 82, 74, 53, (49,21,0): 83, 75, 52, (49,22,0): 86, 75, 55, (49,23,0): 84, 75, 58, (49,24,0): 88, 78, 69, (49,25,0): 85, 76, 77, (49,26,0): 89, 85, 99, (49,27,0): 107, 104, 131, (49,28,0): 123, 125, 166, (49,29,0): 134, 140, 192, (49,30,0): 141, 149, 211, (49,31,0): 150, 154, 225, (49,32,0): 161, 156, 236, (49,33,0): 163, 155, 241, (49,34,0): 161, 157, 244, (49,35,0): 161, 158, 249, (49,36,0): 160, 161, 253, (49,37,0): 160, 165, 255, (49,38,0): 162, 170, 255, (49,39,0): 161, 172, 251, (49,40,0): 160, 172, 244, (49,41,0): 160, 171, 237, (49,42,0): 158, 167, 232, (49,43,0): 161, 166, 232, (49,44,0): 164, 164, 234, (49,45,0): 166, 164, 237, (49,46,0): 166, 162, 238, (49,47,0): 163, 160, 237, (49,48,0): 163, 166, 243, (49,49,0): 160, 164, 235, (49,50,0): 160, 160, 220, (49,51,0): 165, 155, 205, (49,52,0): 177, 153, 189, (49,53,0): 188, 143, 166, (49,54,0): 189, 115, 130, (49,55,0): 191, 87, 98, (49,56,0): 204, 70, 77, (49,57,0): 220, 63, 70, (49,58,0): 230, 59, 67, (49,59,0): 233, 58, 65, (49,60,0): 230, 59, 67, (49,61,0): 225, 62, 67, (49,62,0): 219, 64, 68, (49,63,0): 218, 65, 70, (49,64,0): 224, 60, 67, (49,65,0): 218, 57, 63, (49,66,0): 218, 65, 68, (49,67,0): 203, 59, 59, (49,68,0): 204, 66, 63, (49,69,0): 202, 64, 61, (49,70,0): 193, 51, 49, (49,71,0): 229, 79, 80, (49,72,0): 230, 67, 70, (49,73,0): 232, 63, 68, (49,74,0): 234, 59, 66, (49,75,0): 231, 56, 63, (49,76,0): 226, 56, 59, (49,77,0): 219, 56, 57, (49,78,0): 213, 58, 56, (49,79,0): 207, 59, 55, (49,80,0): 212, 69, 63, (49,81,0): 198, 61, 53, (49,82,0): 197, 60, 52, (49,83,0): 204, 71, 62, (49,84,0): 204, 76, 65, (49,85,0): 193, 67, 53, (49,86,0): 184, 58, 44, (49,87,0): 183, 57, 43, (49,88,0): 185, 55, 42, (49,89,0): 191, 55, 43, (49,90,0): 198, 54, 45, (49,91,0): 203, 52, 45, (49,92,0): 209, 50, 46, (49,93,0): 216, 51, 47, (49,94,0): 225, 53, 51, (49,95,0): 228, 56, 52, (49,96,0): 229, 61, 50, (49,97,0): 226, 58, 45, (49,98,0): 225, 53, 41, (49,99,0): 225, 52, 38, (49,100,0): 228, 52, 39, (49,101,0): 226, 53, 39, (49,102,0): 221, 51, 34, (49,103,0): 213, 50, 31, (49,104,0): 211, 56, 36, (49,105,0): 205, 56, 34, (49,106,0): 201, 56, 37, (49,107,0): 200, 58, 38, (49,108,0): 204, 58, 43, (49,109,0): 206, 58, 44, (49,110,0): 207, 55, 44, (49,111,0): 208, 51, 42, (49,112,0): 213, 51, 46, (49,113,0): 214, 53, 45, (49,114,0): 211, 55, 43, (49,115,0): 207, 55, 41, (49,116,0): 201, 54, 38, (49,117,0): 199, 52, 34, (49,118,0): 203, 52, 33, (49,119,0): 207, 52, 34, (49,120,0): 216, 50, 36, (49,121,0): 222, 50, 38, (49,122,0): 227, 48, 43, (49,123,0): 230, 46, 44, (49,124,0): 230, 44, 45, (49,125,0): 230, 44, 47, (49,126,0): 230, 45, 50, (49,127,0): 232, 46, 51, (49,128,0): 236, 43, 46, (49,129,0): 237, 44, 45, (49,130,0): 236, 48, 46, (49,131,0): 232, 50, 46, (49,132,0): 224, 52, 42, (49,133,0): 219, 53, 39, (49,134,0): 213, 56, 39, (49,135,0): 210, 57, 39, (49,136,0): 213, 63, 46, (49,137,0): 187, 42, 25, (49,138,0): 214, 68, 53, (49,139,0): 208, 62, 49, (49,140,0): 217, 70, 62, (49,141,0): 235, 86, 80, (49,142,0): 218, 66, 63, (49,143,0): 216, 66, 65, (49,144,0): 231, 85, 86, (49,145,0): 226, 82, 82, (49,146,0): 220, 75, 72, (49,147,0): 212, 67, 62, (49,148,0): 205, 61, 53, (49,149,0): 201, 57, 46, (49,150,0): 200, 57, 43, (49,151,0): 199, 56, 40, (49,152,0): 200, 59, 42, (49,153,0): 196, 59, 40, (49,154,0): 191, 58, 39, (49,155,0): 189, 60, 41, (49,156,0): 189, 62, 43, (49,157,0): 186, 63, 45, (49,158,0): 185, 64, 47, (49,159,0): 182, 62, 46, (49,160,0): 178, 58, 44, (49,161,0): 180, 59, 48, (49,162,0): 183, 61, 48, (49,163,0): 184, 62, 49, (49,164,0): 186, 63, 48, (49,165,0): 189, 63, 49, (49,166,0): 193, 66, 51, (49,167,0): 197, 67, 53, (49,168,0): 235, 105, 92, (49,169,0): 242, 109, 100, (49,170,0): 231, 98, 91, (49,171,0): 240, 107, 102, (49,172,0): 245, 111, 108, (49,173,0): 232, 98, 97, (49,174,0): 241, 107, 108, (49,175,0): 254, 115, 120, (49,176,0): 255, 111, 126, (49,177,0): 255, 110, 124, (49,178,0): 242, 107, 114, (49,179,0): 228, 97, 102, (49,180,0): 228, 92, 96, (49,181,0): 239, 99, 102, (49,182,0): 253, 110, 112, (49,183,0): 255, 119, 120, (49,184,0): 253, 117, 119, (49,185,0): 255, 121, 126, (49,186,0): 235, 89, 100, (49,187,0): 237, 99, 112, (49,188,0): 215, 99, 110, (49,189,0): 242, 168, 169, (49,190,0): 178, 162, 147, (49,191,0): 118, 134, 107, (49,192,0): 94, 114, 79, (49,193,0): 78, 95, 59, (49,194,0): 83, 90, 59, (49,195,0): 117, 115, 92, (49,196,0): 169, 157, 141, (49,197,0): 214, 196, 184, (49,198,0): 246, 225, 220, (49,199,0): 255, 245, 241, (49,200,0): 255, 248, 248, (49,201,0): 255, 248, 249, (49,202,0): 253, 249, 250, (49,203,0): 251, 251, 251, (49,204,0): 250, 254, 253, (49,205,0): 251, 255, 254, (49,206,0): 250, 254, 255, (49,207,0): 246, 255, 250, (49,208,0): 237, 255, 242, (49,209,0): 227, 255, 232, (49,210,0): 227, 251, 229, (49,211,0): 235, 254, 234, (49,212,0): 244, 255, 240, (49,213,0): 249, 255, 241, (49,214,0): 252, 255, 241, (49,215,0): 255, 255, 240, (49,216,0): 255, 253, 239, (49,217,0): 255, 253, 237, (49,218,0): 255, 251, 233, (49,219,0): 254, 247, 229, (49,220,0): 249, 244, 224, (49,221,0): 248, 243, 221, (49,222,0): 250, 245, 223, (49,223,0): 250, 247, 228, (49,224,0): 249, 249, 239, (49,225,0): 251, 252, 246, (49,226,0): 254, 253, 249, (50,0,0): 92, 80, 66, (50,1,0): 91, 79, 65, (50,2,0): 91, 79, 65, (50,3,0): 89, 77, 63, (50,4,0): 88, 76, 62, (50,5,0): 87, 75, 61, (50,6,0): 86, 74, 60, (50,7,0): 86, 74, 60, (50,8,0): 83, 71, 57, (50,9,0): 82, 70, 56, (50,10,0): 81, 69, 55, (50,11,0): 79, 67, 53, (50,12,0): 79, 67, 53, (50,13,0): 79, 67, 53, (50,14,0): 79, 67, 53, (50,15,0): 77, 67, 55, (50,16,0): 74, 67, 57, (50,17,0): 74, 70, 59, (50,18,0): 77, 71, 57, (50,19,0): 80, 73, 55, (50,20,0): 83, 75, 54, (50,21,0): 86, 75, 53, (50,22,0): 86, 75, 55, (50,23,0): 84, 75, 58, (50,24,0): 87, 77, 67, (50,25,0): 86, 77, 78, (50,26,0): 90, 87, 98, (50,27,0): 107, 105, 129, (50,28,0): 121, 123, 161, (50,29,0): 133, 137, 185, (50,30,0): 139, 145, 203, (50,31,0): 146, 150, 214, (50,32,0): 153, 152, 222, (50,33,0): 155, 151, 227, (50,34,0): 155, 152, 233, (50,35,0): 155, 156, 238, (50,36,0): 157, 159, 244, (50,37,0): 158, 163, 247, (50,38,0): 160, 167, 248, (50,39,0): 160, 169, 244, (50,40,0): 160, 170, 239, (50,41,0): 157, 168, 232, (50,42,0): 155, 165, 227, (50,43,0): 156, 162, 224, (50,44,0): 156, 160, 224, (50,45,0): 157, 158, 225, (50,46,0): 156, 154, 227, (50,47,0): 155, 153, 226, (50,48,0): 153, 154, 221, (50,49,0): 158, 152, 214, (50,50,0): 168, 147, 204, (50,51,0): 178, 140, 189, (50,52,0): 191, 131, 169, (50,53,0): 198, 115, 145, (50,54,0): 197, 91, 111, (50,55,0): 194, 70, 81, (50,56,0): 209, 68, 76, (50,57,0): 218, 65, 68, (50,58,0): 223, 63, 65, (50,59,0): 225, 62, 63, (50,60,0): 225, 62, 65, (50,61,0): 225, 62, 67, (50,62,0): 223, 62, 68, (50,63,0): 223, 62, 70, (50,64,0): 224, 60, 67, (50,65,0): 215, 56, 61, (50,66,0): 213, 63, 65, (50,67,0): 207, 65, 64, (50,68,0): 202, 67, 63, (50,69,0): 195, 60, 56, (50,70,0): 196, 57, 54, (50,71,0): 233, 87, 87, (50,72,0): 224, 66, 67, (50,73,0): 228, 62, 66, (50,74,0): 232, 59, 63, (50,75,0): 227, 57, 60, (50,76,0): 220, 54, 56, (50,77,0): 214, 54, 54, (50,78,0): 209, 57, 54, (50,79,0): 204, 59, 54, (50,80,0): 213, 72, 65, (50,81,0): 196, 59, 49, (50,82,0): 190, 53, 43, (50,83,0): 197, 65, 53, (50,84,0): 205, 75, 62, (50,85,0): 198, 72, 58, (50,86,0): 187, 61, 47, (50,87,0): 183, 56, 41, (50,88,0): 186, 54, 41, (50,89,0): 191, 55, 41, (50,90,0): 199, 55, 44, (50,91,0): 207, 54, 46, (50,92,0): 215, 53, 48, (50,93,0): 222, 55, 49, (50,94,0): 230, 57, 53, (50,95,0): 233, 61, 57, (50,96,0): 217, 50, 42, (50,97,0): 218, 51, 42, (50,98,0): 221, 53, 42, (50,99,0): 223, 52, 42, (50,100,0): 223, 52, 42, (50,101,0): 222, 54, 41, (50,102,0): 220, 57, 42, (50,103,0): 217, 62, 44, (50,104,0): 198, 51, 33, (50,105,0): 192, 51, 31, (50,106,0): 187, 52, 33, (50,107,0): 186, 53, 34, (50,108,0): 191, 55, 41, (50,109,0): 191, 55, 41, (50,110,0): 191, 50, 40, (50,111,0): 193, 44, 37, (50,112,0): 227, 64, 59, (50,113,0): 229, 62, 56, (50,114,0): 222, 61, 51, (50,115,0): 213, 60, 46, (50,116,0): 204, 57, 41, (50,117,0): 200, 55, 36, (50,118,0): 200, 55, 34, (50,119,0): 204, 55, 35, (50,120,0): 210, 55, 37, (50,121,0): 213, 51, 36, (50,122,0): 215, 47, 38, (50,123,0): 217, 46, 39, (50,124,0): 219, 46, 42, (50,125,0): 220, 46, 45, (50,126,0): 219, 47, 47, (50,127,0): 220, 46, 47, (50,128,0): 219, 44, 41, (50,129,0): 223, 48, 43, (50,130,0): 224, 53, 45, (50,131,0): 220, 53, 44, (50,132,0): 213, 51, 38, (50,133,0): 208, 52, 37, (50,134,0): 208, 57, 38, (50,135,0): 209, 62, 42, (50,136,0): 212, 65, 47, (50,137,0): 194, 49, 32, (50,138,0): 231, 83, 69, (50,139,0): 210, 59, 48, (50,140,0): 218, 65, 59, (50,141,0): 222, 67, 63, (50,142,0): 232, 74, 73, (50,143,0): 240, 84, 85, (50,144,0): 237, 85, 84, (50,145,0): 231, 83, 81, (50,146,0): 227, 79, 77, (50,147,0): 221, 74, 67, (50,148,0): 214, 67, 59, (50,149,0): 207, 60, 50, (50,150,0): 202, 56, 43, (50,151,0): 197, 54, 38, (50,152,0): 196, 55, 38, (50,153,0): 192, 55, 37, (50,154,0): 188, 55, 38, (50,155,0): 185, 58, 39, (50,156,0): 185, 60, 42, (50,157,0): 183, 62, 45, (50,158,0): 181, 61, 44, (50,159,0): 178, 61, 44, (50,160,0): 176, 58, 44, (50,161,0): 177, 59, 47, (50,162,0): 180, 60, 46, (50,163,0): 181, 61, 47, (50,164,0): 183, 61, 46, (50,165,0): 185, 63, 48, (50,166,0): 190, 67, 52, (50,167,0): 195, 69, 55, (50,168,0): 220, 92, 81, (50,169,0): 234, 103, 93, (50,170,0): 228, 97, 89, (50,171,0): 240, 108, 103, (50,172,0): 246, 112, 109, (50,173,0): 231, 97, 96, (50,174,0): 236, 102, 103, (50,175,0): 245, 106, 113, (50,176,0): 228, 80, 94, (50,177,0): 240, 94, 107, (50,178,0): 240, 106, 113, (50,179,0): 235, 104, 109, (50,180,0): 235, 99, 103, (50,181,0): 242, 102, 105, (50,182,0): 254, 111, 113, (50,183,0): 255, 117, 119, (50,184,0): 253, 114, 117, (50,185,0): 252, 111, 117, (50,186,0): 231, 81, 93, (50,187,0): 232, 90, 104, (50,188,0): 217, 97, 109, (50,189,0): 237, 158, 161, (50,190,0): 170, 152, 138, (50,191,0): 108, 122, 96, (50,192,0): 89, 109, 72, (50,193,0): 79, 100, 61, (50,194,0): 87, 96, 65, (50,195,0): 119, 119, 93, (50,196,0): 173, 165, 146, (50,197,0): 225, 209, 194, (50,198,0): 255, 238, 230, (50,199,0): 255, 248, 241, (50,200,0): 255, 251, 247, (50,201,0): 255, 252, 248, (50,202,0): 252, 253, 248, (50,203,0): 250, 255, 251, (50,204,0): 251, 255, 253, (50,205,0): 251, 255, 253, (50,206,0): 249, 255, 251, (50,207,0): 244, 255, 246, (50,208,0): 233, 255, 237, (50,209,0): 222, 252, 226, (50,210,0): 220, 246, 221, (50,211,0): 225, 247, 224, (50,212,0): 233, 251, 229, (50,213,0): 239, 251, 231, (50,214,0): 245, 252, 234, (50,215,0): 252, 255, 236, (50,216,0): 253, 250, 233, (50,217,0): 255, 250, 234, (50,218,0): 255, 248, 230, (50,219,0): 249, 242, 224, (50,220,0): 241, 234, 216, (50,221,0): 239, 232, 213, (50,222,0): 243, 236, 217, (50,223,0): 247, 242, 223, (50,224,0): 251, 248, 239, (50,225,0): 252, 252, 244, (50,226,0): 255, 254, 249, (51,0,0): 92, 80, 66, (51,1,0): 92, 80, 66, (51,2,0): 91, 79, 65, (51,3,0): 90, 78, 64, (51,4,0): 89, 77, 63, (51,5,0): 89, 77, 63, (51,6,0): 88, 76, 62, (51,7,0): 88, 76, 62, (51,8,0): 85, 73, 59, (51,9,0): 84, 72, 58, (51,10,0): 83, 71, 57, (51,11,0): 82, 70, 56, (51,12,0): 82, 70, 56, (51,13,0): 82, 70, 56, (51,14,0): 82, 70, 56, (51,15,0): 80, 70, 58, (51,16,0): 76, 69, 59, (51,17,0): 75, 71, 60, (51,18,0): 79, 73, 59, (51,19,0): 82, 75, 57, (51,20,0): 84, 76, 55, (51,21,0): 87, 76, 54, (51,22,0): 87, 76, 56, (51,23,0): 87, 75, 59, (51,24,0): 86, 76, 66, (51,25,0): 85, 77, 75, (51,26,0): 92, 86, 96, (51,27,0): 106, 104, 126, (51,28,0): 121, 121, 155, (51,29,0): 130, 133, 178, (51,30,0): 138, 141, 194, (51,31,0): 143, 148, 206, (51,32,0): 148, 148, 210, (51,33,0): 149, 148, 214, (51,34,0): 149, 149, 219, (51,35,0): 150, 152, 227, (51,36,0): 152, 155, 232, (51,37,0): 152, 158, 236, (51,38,0): 155, 161, 237, (51,39,0): 155, 163, 235, (51,40,0): 156, 165, 232, (51,41,0): 152, 162, 223, (51,42,0): 150, 159, 218, (51,43,0): 149, 155, 213, (51,44,0): 147, 153, 213, (51,45,0): 147, 151, 214, (51,46,0): 146, 147, 214, (51,47,0): 145, 144, 210, (51,48,0): 136, 131, 189, (51,49,0): 148, 130, 182, (51,50,0): 168, 124, 175, (51,51,0): 184, 115, 162, (51,52,0): 199, 102, 143, (51,53,0): 207, 88, 120, (51,54,0): 210, 72, 97, (51,55,0): 208, 62, 75, (51,56,0): 217, 68, 74, (51,57,0): 218, 68, 67, (51,58,0): 218, 69, 65, (51,59,0): 220, 68, 65, (51,60,0): 222, 66, 67, (51,61,0): 225, 64, 69, (51,62,0): 229, 62, 70, (51,63,0): 229, 62, 70, (51,64,0): 227, 63, 70, (51,65,0): 214, 58, 62, (51,66,0): 209, 63, 64, (51,67,0): 209, 69, 68, (51,68,0): 198, 65, 60, (51,69,0): 186, 54, 49, (51,70,0): 197, 62, 58, (51,71,0): 234, 90, 89, (51,72,0): 221, 65, 66, (51,73,0): 227, 64, 67, (51,74,0): 230, 61, 64, (51,75,0): 227, 58, 61, (51,76,0): 219, 56, 57, (51,77,0): 211, 57, 55, (51,78,0): 208, 60, 56, (51,79,0): 206, 65, 56, (51,80,0): 207, 69, 59, (51,81,0): 194, 58, 46, (51,82,0): 187, 50, 40, (51,83,0): 192, 60, 47, (51,84,0): 199, 69, 55, (51,85,0): 196, 69, 54, (51,86,0): 189, 62, 47, (51,87,0): 184, 57, 40, (51,88,0): 189, 56, 41, (51,89,0): 194, 57, 41, (51,90,0): 203, 56, 46, (51,91,0): 210, 58, 47, (51,92,0): 217, 56, 48, (51,93,0): 224, 57, 49, (51,94,0): 232, 59, 55, (51,95,0): 235, 62, 56, (51,96,0): 217, 48, 43, (51,97,0): 218, 49, 42, (51,98,0): 222, 51, 44, (51,99,0): 224, 51, 44, (51,100,0): 225, 52, 45, (51,101,0): 225, 54, 46, (51,102,0): 220, 56, 46, (51,103,0): 217, 59, 47, (51,104,0): 202, 54, 40, (51,105,0): 199, 58, 41, (51,106,0): 195, 59, 43, (51,107,0): 192, 59, 44, (51,108,0): 192, 58, 46, (51,109,0): 195, 58, 48, (51,110,0): 198, 59, 54, (51,111,0): 208, 56, 53, (51,112,0): 236, 67, 64, (51,113,0): 237, 64, 60, (51,114,0): 228, 64, 55, (51,115,0): 217, 61, 49, (51,116,0): 207, 57, 42, (51,117,0): 199, 57, 37, (51,118,0): 200, 58, 38, (51,119,0): 201, 59, 37, (51,120,0): 207, 60, 40, (51,121,0): 208, 55, 39, (51,122,0): 207, 49, 37, (51,123,0): 209, 49, 37, (51,124,0): 212, 49, 40, (51,125,0): 214, 51, 44, (51,126,0): 212, 49, 44, (51,127,0): 209, 47, 42, (51,128,0): 211, 50, 42, (51,129,0): 211, 53, 44, (51,130,0): 211, 55, 43, (51,131,0): 208, 55, 41, (51,132,0): 205, 53, 39, (51,133,0): 202, 55, 37, (51,134,0): 204, 59, 40, (51,135,0): 204, 62, 42, (51,136,0): 204, 59, 40, (51,137,0): 207, 60, 44, (51,138,0): 244, 94, 80, (51,139,0): 224, 70, 60, (51,140,0): 210, 51, 47, (51,141,0): 210, 46, 44, (51,142,0): 230, 64, 64, (51,143,0): 251, 87, 88, (51,144,0): 255, 117, 115, (51,145,0): 255, 114, 111, (51,146,0): 255, 106, 103, (51,147,0): 246, 94, 89, (51,148,0): 231, 80, 71, (51,149,0): 213, 65, 55, (51,150,0): 199, 53, 40, (51,151,0): 189, 46, 32, (51,152,0): 196, 56, 39, (51,153,0): 192, 56, 40, (51,154,0): 187, 56, 38, (51,155,0): 184, 59, 41, (51,156,0): 183, 60, 44, (51,157,0): 181, 61, 45, (51,158,0): 178, 61, 44, (51,159,0): 176, 60, 45, (51,160,0): 175, 59, 46, (51,161,0): 173, 60, 46, (51,162,0): 176, 60, 47, (51,163,0): 176, 60, 45, (51,164,0): 177, 59, 45, (51,165,0): 182, 62, 46, (51,166,0): 188, 66, 51, (51,167,0): 192, 70, 55, (51,168,0): 203, 77, 65, (51,169,0): 223, 96, 87, (51,170,0): 226, 97, 91, (51,171,0): 244, 112, 108, (51,172,0): 248, 116, 114, (51,173,0): 230, 96, 97, (51,174,0): 228, 93, 97, (51,175,0): 232, 93, 100, (51,176,0): 218, 70, 84, (51,177,0): 234, 88, 101, (51,178,0): 239, 105, 114, (51,179,0): 236, 107, 111, (51,180,0): 240, 104, 108, (51,181,0): 249, 109, 112, (51,182,0): 255, 113, 118, (51,183,0): 255, 115, 118, (51,184,0): 254, 111, 115, (51,185,0): 248, 103, 110, (51,186,0): 229, 74, 88, (51,187,0): 229, 82, 98, (51,188,0): 218, 93, 107, (51,189,0): 230, 148, 150, (51,190,0): 168, 145, 131, (51,191,0): 106, 116, 89, (51,192,0): 85, 106, 67, (51,193,0): 83, 104, 63, (51,194,0): 92, 103, 69, (51,195,0): 121, 124, 95, (51,196,0): 176, 170, 148, (51,197,0): 231, 220, 202, (51,198,0): 255, 245, 232, (51,199,0): 255, 249, 240, (51,200,0): 255, 249, 239, (51,201,0): 252, 252, 242, (51,202,0): 251, 254, 245, (51,203,0): 250, 255, 249, (51,204,0): 249, 255, 250, (51,205,0): 246, 255, 248, (51,206,0): 242, 252, 243, (51,207,0): 234, 251, 235, (51,208,0): 219, 247, 222, (51,209,0): 208, 241, 210, (51,210,0): 205, 234, 204, (51,211,0): 209, 235, 206, (51,212,0): 217, 237, 210, (51,213,0): 223, 239, 213, (51,214,0): 233, 243, 219, (51,215,0): 242, 247, 225, (51,216,0): 244, 246, 225, (51,217,0): 249, 246, 227, (51,218,0): 251, 246, 227, (51,219,0): 244, 237, 219, (51,220,0): 234, 227, 209, (51,221,0): 231, 222, 205, (51,222,0): 235, 226, 209, (51,223,0): 240, 233, 217, (51,224,0): 251, 244, 234, (51,225,0): 251, 246, 240, (51,226,0): 254, 249, 243, (52,0,0): 92, 80, 66, (52,1,0): 92, 80, 66, (52,2,0): 91, 79, 65, (52,3,0): 91, 79, 65, (52,4,0): 90, 78, 64, (52,5,0): 89, 77, 63, (52,6,0): 89, 77, 63, (52,7,0): 89, 77, 63, (52,8,0): 87, 75, 61, (52,9,0): 86, 74, 60, (52,10,0): 85, 73, 59, (52,11,0): 85, 73, 59, (52,12,0): 84, 72, 58, (52,13,0): 85, 73, 59, (52,14,0): 85, 73, 59, (52,15,0): 83, 73, 61, (52,16,0): 79, 71, 60, (52,17,0): 79, 73, 61, (52,18,0): 81, 73, 60, (52,19,0): 83, 76, 58, (52,20,0): 85, 77, 56, (52,21,0): 88, 77, 55, (52,22,0): 89, 76, 57, (52,23,0): 88, 76, 60, (52,24,0): 85, 75, 65, (52,25,0): 85, 75, 73, (52,26,0): 92, 85, 93, (52,27,0): 104, 101, 120, (52,28,0): 117, 116, 147, (52,29,0): 124, 126, 165, (52,30,0): 133, 135, 183, (52,31,0): 140, 143, 194, (52,32,0): 141, 144, 195, (52,33,0): 142, 145, 200, (52,34,0): 142, 146, 207, (52,35,0): 144, 148, 212, (52,36,0): 146, 149, 220, (52,37,0): 147, 151, 224, (52,38,0): 148, 152, 223, (52,39,0): 147, 154, 222, (52,40,0): 149, 157, 220, (52,41,0): 146, 155, 214, (52,42,0): 142, 148, 206, (52,43,0): 137, 144, 199, (52,44,0): 133, 139, 197, (52,45,0): 129, 135, 195, (52,46,0): 126, 130, 193, (52,47,0): 129, 125, 184, (52,48,0): 128, 115, 159, (52,49,0): 145, 110, 150, (52,50,0): 170, 102, 143, (52,51,0): 193, 92, 134, (52,52,0): 214, 78, 118, (52,53,0): 225, 65, 101, (52,54,0): 229, 59, 85, (52,55,0): 230, 59, 75, (52,56,0): 226, 67, 71, (52,57,0): 220, 71, 67, (52,58,0): 216, 73, 65, (52,59,0): 216, 73, 65, (52,60,0): 220, 71, 67, (52,61,0): 227, 66, 71, (52,62,0): 236, 62, 72, (52,63,0): 237, 61, 72, (52,64,0): 230, 66, 73, (52,65,0): 215, 62, 64, (52,66,0): 208, 64, 63, (52,67,0): 208, 73, 69, (52,68,0): 191, 62, 56, (52,69,0): 179, 50, 44, (52,70,0): 200, 67, 60, (52,71,0): 224, 85, 80, (52,72,0): 220, 68, 67, (52,73,0): 225, 65, 67, (52,74,0): 227, 63, 64, (52,75,0): 225, 62, 63, (52,76,0): 218, 63, 61, (52,77,0): 212, 64, 60, (52,78,0): 209, 68, 59, (52,79,0): 207, 70, 60, (52,80,0): 199, 61, 50, (52,81,0): 192, 56, 42, (52,82,0): 189, 53, 41, (52,83,0): 189, 57, 42, (52,84,0): 191, 61, 45, (52,85,0): 191, 61, 45, (52,86,0): 189, 59, 43, (52,87,0): 189, 60, 41, (52,88,0): 194, 58, 42, (52,89,0): 199, 59, 42, (52,90,0): 207, 59, 47, (52,91,0): 213, 59, 47, (52,92,0): 219, 56, 47, (52,93,0): 224, 56, 47, (52,94,0): 231, 56, 51, (52,95,0): 235, 57, 53, (52,96,0): 231, 56, 53, (52,97,0): 230, 52, 50, (52,98,0): 229, 49, 48, (52,99,0): 232, 50, 49, (52,100,0): 233, 51, 50, (52,101,0): 231, 52, 48, (52,102,0): 222, 49, 43, (52,103,0): 214, 47, 39, (52,104,0): 205, 48, 39, (52,105,0): 205, 54, 45, (52,106,0): 201, 57, 48, (52,107,0): 197, 54, 46, (52,108,0): 194, 51, 45, (52,109,0): 196, 51, 48, (52,110,0): 206, 57, 59, (52,111,0): 222, 62, 64, (52,112,0): 235, 56, 59, (52,113,0): 237, 55, 54, (52,114,0): 228, 55, 49, (52,115,0): 216, 53, 44, (52,116,0): 204, 52, 38, (52,117,0): 198, 53, 34, (52,118,0): 196, 55, 35, (52,119,0): 197, 58, 37, (52,120,0): 203, 61, 41, (52,121,0): 203, 56, 38, (52,122,0): 204, 52, 38, (52,123,0): 206, 53, 39, (52,124,0): 212, 56, 44, (52,125,0): 212, 58, 48, (52,126,0): 211, 57, 47, (52,127,0): 208, 56, 45, (52,128,0): 208, 62, 49, (52,129,0): 202, 59, 45, (52,130,0): 197, 56, 39, (52,131,0): 196, 55, 37, (52,132,0): 198, 57, 39, (52,133,0): 199, 60, 41, (52,134,0): 199, 60, 41, (52,135,0): 199, 58, 40, (52,136,0): 205, 62, 45, (52,137,0): 205, 58, 42, (52,138,0): 216, 62, 50, (52,139,0): 225, 67, 58, (52,140,0): 212, 47, 45, (52,141,0): 228, 58, 58, (52,142,0): 224, 50, 52, (52,143,0): 223, 53, 54, (52,144,0): 215, 53, 51, (52,145,0): 214, 59, 54, (52,146,0): 222, 67, 62, (52,147,0): 229, 75, 67, (52,148,0): 234, 81, 73, (52,149,0): 234, 83, 72, (52,150,0): 232, 84, 72, (52,151,0): 228, 85, 71, (52,152,0): 203, 63, 48, (52,153,0): 196, 63, 46, (52,154,0): 190, 60, 44, (52,155,0): 184, 61, 45, (52,156,0): 183, 62, 45, (52,157,0): 180, 63, 46, (52,158,0): 176, 63, 47, (52,159,0): 174, 62, 48, (52,160,0): 172, 60, 46, (52,161,0): 172, 60, 46, (52,162,0): 172, 60, 46, (52,163,0): 172, 61, 44, (52,164,0): 173, 60, 44, (52,165,0): 177, 61, 46, (52,166,0): 183, 65, 51, (52,167,0): 186, 68, 54, (52,168,0): 198, 76, 65, (52,169,0): 222, 98, 88, (52,170,0): 226, 99, 93, (52,171,0): 240, 110, 108, (52,172,0): 244, 114, 114, (52,173,0): 229, 96, 99, (52,174,0): 229, 96, 101, (52,175,0): 232, 95, 103, (52,176,0): 251, 105, 118, (52,177,0): 254, 109, 122, (52,178,0): 241, 110, 118, (52,179,0): 229, 100, 104, (52,180,0): 234, 98, 102, (52,181,0): 252, 109, 113, (52,182,0): 255, 117, 123, (52,183,0): 255, 118, 124, (52,184,0): 254, 107, 115, (52,185,0): 245, 95, 106, (52,186,0): 232, 71, 87, (52,187,0): 228, 75, 93, (52,188,0): 221, 90, 104, (52,189,0): 226, 137, 141, (52,190,0): 172, 142, 131, (52,191,0): 115, 121, 93, (52,192,0): 93, 114, 73, (52,193,0): 94, 117, 73, (52,194,0): 104, 119, 80, (52,195,0): 129, 136, 102, (52,196,0): 179, 178, 150, (52,197,0): 232, 226, 204, (52,198,0): 255, 250, 233, (52,199,0): 255, 253, 237, (52,200,0): 254, 252, 237, (52,201,0): 251, 255, 240, (52,202,0): 249, 255, 242, (52,203,0): 247, 255, 243, (52,204,0): 244, 255, 241, (52,205,0): 237, 251, 234, (52,206,0): 227, 241, 224, (52,207,0): 218, 237, 215, (52,208,0): 201, 232, 200, (52,209,0): 191, 227, 189, (52,210,0): 187, 221, 186, (52,211,0): 192, 222, 188, (52,212,0): 200, 224, 192, (52,213,0): 207, 226, 196, (52,214,0): 217, 230, 204, (52,215,0): 227, 235, 211, (52,216,0): 235, 239, 216, (52,217,0): 243, 242, 222, (52,218,0): 247, 242, 223, (52,219,0): 242, 235, 217, (52,220,0): 234, 225, 210, (52,221,0): 231, 219, 205, (52,222,0): 233, 221, 207, (52,223,0): 238, 226, 214, (52,224,0): 241, 231, 222, (52,225,0): 240, 231, 224, (52,226,0): 242, 233, 226, (53,0,0): 91, 79, 65, (53,1,0): 91, 79, 65, (53,2,0): 91, 79, 65, (53,3,0): 90, 78, 64, (53,4,0): 90, 78, 64, (53,5,0): 89, 77, 63, (53,6,0): 89, 77, 63, (53,7,0): 89, 77, 63, (53,8,0): 88, 76, 62, (53,9,0): 88, 76, 62, (53,10,0): 87, 75, 61, (53,11,0): 86, 74, 60, (53,12,0): 86, 74, 60, (53,13,0): 87, 75, 61, (53,14,0): 87, 75, 61, (53,15,0): 88, 76, 62, (53,16,0): 81, 73, 62, (53,17,0): 81, 73, 62, (53,18,0): 83, 75, 62, (53,19,0): 85, 76, 59, (53,20,0): 88, 77, 57, (53,21,0): 88, 77, 55, (53,22,0): 89, 76, 57, (53,23,0): 88, 77, 59, (53,24,0): 87, 75, 63, (53,25,0): 85, 76, 71, (53,26,0): 89, 83, 87, (53,27,0): 101, 94, 110, (53,28,0): 110, 106, 131, (53,29,0): 117, 116, 150, (53,30,0): 126, 125, 165, (53,31,0): 131, 134, 177, (53,32,0): 133, 138, 180, (53,33,0): 132, 139, 185, (53,34,0): 135, 141, 193, (53,35,0): 137, 142, 200, (53,36,0): 139, 143, 207, (53,37,0): 140, 143, 212, (53,38,0): 141, 144, 213, (53,39,0): 141, 144, 211, (53,40,0): 144, 148, 211, (53,41,0): 139, 144, 202, (53,42,0): 131, 136, 192, (53,43,0): 126, 129, 184, (53,44,0): 120, 123, 178, (53,45,0): 114, 116, 173, (53,46,0): 108, 110, 171, (53,47,0): 111, 104, 156, (53,48,0): 131, 105, 140, (53,49,0): 148, 98, 123, (53,50,0): 175, 88, 120, (53,51,0): 203, 79, 113, (53,52,0): 227, 65, 102, (53,53,0): 239, 56, 87, (53,54,0): 243, 53, 78, (53,55,0): 244, 58, 72, (53,56,0): 235, 66, 69, (53,57,0): 225, 72, 66, (53,58,0): 217, 76, 66, (53,59,0): 215, 77, 66, (53,60,0): 222, 73, 69, (53,61,0): 229, 69, 71, (53,62,0): 240, 63, 73, (53,63,0): 240, 62, 74, (53,64,0): 228, 67, 72, (53,65,0): 215, 67, 67, (53,66,0): 204, 65, 62, (53,67,0): 206, 73, 68, (53,68,0): 186, 59, 52, (53,69,0): 176, 52, 44, (53,70,0): 201, 73, 64, (53,71,0): 213, 76, 70, (53,72,0): 216, 66, 65, (53,73,0): 218, 63, 61, (53,74,0): 219, 59, 59, (53,75,0): 218, 60, 59, (53,76,0): 216, 64, 61, (53,77,0): 212, 69, 63, (53,78,0): 205, 71, 60, (53,79,0): 203, 71, 58, (53,80,0): 192, 56, 42, (53,81,0): 193, 56, 40, (53,82,0): 192, 56, 42, (53,83,0): 190, 57, 40, (53,84,0): 188, 57, 39, (53,85,0): 187, 56, 38, (53,86,0): 189, 58, 40, (53,87,0): 192, 59, 40, (53,88,0): 196, 59, 41, (53,89,0): 202, 61, 44, (53,90,0): 210, 60, 46, (53,91,0): 215, 59, 46, (53,92,0): 220, 56, 46, (53,93,0): 225, 54, 46, (53,94,0): 228, 54, 47, (53,95,0): 232, 53, 48, (53,96,0): 234, 50, 50, (53,97,0): 234, 46, 47, (53,98,0): 234, 43, 48, (53,99,0): 240, 47, 50, (53,100,0): 246, 51, 55, (53,101,0): 247, 54, 55, (53,102,0): 240, 52, 53, (53,103,0): 230, 50, 49, (53,104,0): 219, 46, 42, (53,105,0): 216, 51, 47, (53,106,0): 215, 53, 50, (53,107,0): 210, 50, 50, (53,108,0): 209, 46, 49, (53,109,0): 211, 46, 52, (53,110,0): 220, 53, 61, (53,111,0): 235, 58, 68, (53,112,0): 237, 48, 54, (53,113,0): 238, 48, 50, (53,114,0): 230, 51, 47, (53,115,0): 220, 51, 44, (53,116,0): 209, 53, 41, (53,117,0): 202, 55, 39, (53,118,0): 200, 57, 40, (53,119,0): 201, 60, 40, (53,120,0): 198, 56, 36, (53,121,0): 201, 54, 36, (53,122,0): 206, 54, 40, (53,123,0): 211, 58, 44, (53,124,0): 218, 62, 50, (53,125,0): 221, 65, 53, (53,126,0): 221, 65, 53, (53,127,0): 216, 65, 54, (53,128,0): 211, 71, 56, (53,129,0): 201, 65, 49, (53,130,0): 194, 59, 40, (53,131,0): 192, 57, 38, (53,132,0): 195, 60, 41, (53,133,0): 198, 61, 42, (53,134,0): 197, 60, 42, (53,135,0): 197, 56, 38, (53,136,0): 204, 58, 43, (53,137,0): 205, 55, 41, (53,138,0): 205, 48, 39, (53,139,0): 230, 67, 60, (53,140,0): 219, 50, 47, (53,141,0): 239, 63, 65, (53,142,0): 227, 47, 50, (53,143,0): 218, 42, 44, (53,144,0): 213, 49, 47, (53,145,0): 210, 53, 46, (53,146,0): 213, 56, 49, (53,147,0): 214, 57, 48, (53,148,0): 210, 56, 46, (53,149,0): 204, 53, 42, (53,150,0): 198, 50, 38, (53,151,0): 192, 49, 35, (53,152,0): 206, 69, 53, (53,153,0): 198, 65, 50, (53,154,0): 188, 61, 46, (53,155,0): 181, 58, 42, (53,156,0): 177, 57, 41, (53,157,0): 175, 57, 43, (53,158,0): 171, 58, 44, (53,159,0): 170, 58, 44, (53,160,0): 171, 59, 47, (53,161,0): 171, 61, 48, (53,162,0): 172, 62, 47, (53,163,0): 172, 60, 46, (53,164,0): 171, 60, 43, (53,165,0): 173, 60, 44, (53,166,0): 178, 62, 47, (53,167,0): 181, 65, 50, (53,168,0): 201, 83, 71, (53,169,0): 224, 103, 94, (53,170,0): 224, 99, 95, (53,171,0): 234, 106, 105, (53,172,0): 238, 110, 111, (53,173,0): 230, 99, 104, (53,174,0): 240, 106, 113, (53,175,0): 246, 110, 120, (53,176,0): 255, 110, 123, (53,177,0): 255, 114, 126, (53,178,0): 241, 112, 117, (53,179,0): 231, 102, 107, (53,180,0): 240, 103, 110, (53,181,0): 255, 116, 122, (53,182,0): 255, 117, 126, (53,183,0): 255, 110, 117, (53,184,0): 253, 103, 112, (53,185,0): 244, 90, 102, (53,186,0): 237, 72, 89, (53,187,0): 229, 72, 91, (53,188,0): 222, 87, 102, (53,189,0): 220, 128, 131, (53,190,0): 180, 146, 134, (53,191,0): 133, 136, 107, (53,192,0): 113, 134, 93, (53,193,0): 111, 137, 90, (53,194,0): 121, 138, 96, (53,195,0): 141, 151, 114, (53,196,0): 182, 183, 152, (53,197,0): 223, 222, 194, (53,198,0): 249, 244, 222, (53,199,0): 252, 250, 229, (53,200,0): 255, 255, 239, (53,201,0): 250, 255, 238, (53,202,0): 244, 255, 238, (53,203,0): 238, 255, 234, (53,204,0): 230, 249, 227, (53,205,0): 220, 239, 217, (53,206,0): 208, 227, 205, (53,207,0): 197, 222, 193, (53,208,0): 178, 213, 173, (53,209,0): 172, 211, 167, (53,210,0): 172, 209, 168, (53,211,0): 178, 210, 171, (53,212,0): 185, 213, 175, (53,213,0): 190, 214, 178, (53,214,0): 201, 218, 186, (53,215,0): 210, 223, 193, (53,216,0): 224, 230, 204, (53,217,0): 232, 234, 212, (53,218,0): 240, 237, 218, (53,219,0): 241, 234, 216, (53,220,0): 236, 227, 212, (53,221,0): 233, 221, 209, (53,222,0): 232, 218, 207, (53,223,0): 234, 220, 211, (53,224,0): 232, 219, 211, (53,225,0): 230, 217, 211, (53,226,0): 229, 216, 210, (54,0,0): 91, 78, 62, (54,1,0): 91, 78, 62, (54,2,0): 91, 78, 62, (54,3,0): 91, 78, 62, (54,4,0): 90, 77, 61, (54,5,0): 90, 77, 61, (54,6,0): 90, 77, 61, (54,7,0): 90, 77, 61, (54,8,0): 89, 76, 60, (54,9,0): 89, 76, 60, (54,10,0): 88, 75, 59, (54,11,0): 88, 75, 59, (54,12,0): 88, 75, 59, (54,13,0): 89, 76, 60, (54,14,0): 89, 76, 60, (54,15,0): 89, 77, 63, (54,16,0): 83, 73, 63, (54,17,0): 84, 74, 62, (54,18,0): 85, 76, 61, (54,19,0): 88, 76, 60, (54,20,0): 89, 78, 58, (54,21,0): 90, 77, 58, (54,22,0): 90, 77, 58, (54,23,0): 89, 78, 60, (54,24,0): 89, 77, 63, (54,25,0): 85, 76, 69, (54,26,0): 88, 79, 82, (54,27,0): 95, 87, 98, (54,28,0): 100, 95, 115, (54,29,0): 106, 102, 129, (54,30,0): 115, 111, 144, (54,31,0): 121, 121, 157, (54,32,0): 122, 128, 164, (54,33,0): 122, 130, 169, (54,34,0): 127, 131, 178, (54,35,0): 130, 133, 188, (54,36,0): 133, 134, 198, (54,37,0): 135, 136, 203, (54,38,0): 136, 137, 204, (54,39,0): 136, 137, 202, (54,40,0): 136, 136, 200, (54,41,0): 131, 131, 191, (54,42,0): 125, 124, 181, (54,43,0): 121, 118, 173, (54,44,0): 115, 112, 167, (54,45,0): 110, 107, 164, (54,46,0): 105, 101, 160, (54,47,0): 111, 95, 142, (54,48,0): 132, 94, 117, (54,49,0): 151, 85, 97, (54,50,0): 179, 78, 96, (54,51,0): 210, 74, 98, (54,52,0): 236, 64, 90, (54,53,0): 246, 54, 79, (54,54,0): 251, 52, 71, (54,55,0): 252, 58, 69, (54,56,0): 240, 64, 64, (54,57,0): 231, 70, 62, (54,58,0): 222, 74, 64, (54,59,0): 219, 75, 66, (54,60,0): 224, 72, 69, (54,61,0): 231, 68, 71, (54,62,0): 240, 63, 73, (54,63,0): 239, 63, 74, (54,64,0): 221, 65, 68, (54,65,0): 212, 70, 68, (54,66,0): 200, 65, 61, (54,67,0): 201, 72, 66, (54,68,0): 180, 58, 47, (54,69,0): 177, 55, 44, (54,70,0): 206, 79, 70, (54,71,0): 201, 66, 60, (54,72,0): 206, 61, 56, (54,73,0): 208, 54, 52, (54,74,0): 207, 49, 48, (54,75,0): 208, 53, 49, (54,76,0): 211, 62, 56, (54,77,0): 207, 69, 59, (54,78,0): 200, 70, 57, (54,79,0): 195, 68, 53, (54,80,0): 190, 57, 40, (54,81,0): 195, 58, 40, (54,82,0): 194, 58, 42, (54,83,0): 191, 58, 39, (54,84,0): 189, 56, 37, (54,85,0): 190, 57, 38, (54,86,0): 191, 58, 39, (54,87,0): 193, 58, 38, (54,88,0): 196, 57, 38, (54,89,0): 203, 58, 41, (54,90,0): 211, 58, 44, (54,91,0): 217, 57, 43, (54,92,0): 221, 55, 43, (54,93,0): 225, 53, 43, (54,94,0): 228, 51, 43, (54,95,0): 234, 51, 45, (54,96,0): 235, 42, 43, (54,97,0): 241, 42, 45, (54,98,0): 248, 45, 51, (54,99,0): 253, 46, 52, (54,100,0): 255, 49, 55, (54,101,0): 255, 50, 55, (54,102,0): 255, 51, 56, (54,103,0): 253, 53, 56, (54,104,0): 250, 55, 59, (54,105,0): 246, 55, 60, (54,106,0): 243, 57, 62, (54,107,0): 243, 56, 65, (54,108,0): 246, 56, 68, (54,109,0): 247, 55, 70, (54,110,0): 252, 53, 72, (54,111,0): 254, 53, 69, (54,112,0): 246, 42, 53, (54,113,0): 244, 45, 50, (54,114,0): 237, 49, 50, (54,115,0): 227, 52, 47, (54,116,0): 217, 54, 45, (54,117,0): 208, 56, 42, (54,118,0): 206, 59, 43, (54,119,0): 206, 61, 44, (54,120,0): 203, 53, 38, (54,121,0): 209, 56, 42, (54,122,0): 217, 59, 47, (54,123,0): 223, 61, 50, (54,124,0): 226, 62, 52, (54,125,0): 228, 61, 52, (54,126,0): 229, 62, 53, (54,127,0): 223, 65, 54, (54,128,0): 217, 74, 60, (54,129,0): 207, 71, 55, (54,130,0): 201, 65, 49, (54,131,0): 196, 60, 44, (54,132,0): 194, 57, 41, (54,133,0): 194, 57, 39, (54,134,0): 198, 56, 42, (54,135,0): 200, 57, 41, (54,136,0): 201, 50, 39, (54,137,0): 211, 57, 47, (54,138,0): 225, 64, 56, (54,139,0): 235, 68, 62, (54,140,0): 222, 48, 47, (54,141,0): 224, 46, 46, (54,142,0): 235, 52, 54, (54,143,0): 232, 54, 54, (54,144,0): 216, 51, 45, (54,145,0): 213, 55, 46, (54,146,0): 215, 57, 48, (54,147,0): 215, 58, 49, (54,148,0): 213, 59, 49, (54,149,0): 210, 59, 48, (54,150,0): 205, 58, 48, (54,151,0): 201, 59, 47, (54,152,0): 214, 76, 63, (54,153,0): 204, 70, 58, (54,154,0): 191, 64, 49, (54,155,0): 180, 57, 42, (54,156,0): 176, 54, 41, (54,157,0): 172, 54, 40, (54,158,0): 171, 55, 42, (54,159,0): 169, 56, 42, (54,160,0): 172, 59, 45, (54,161,0): 173, 61, 47, (54,162,0): 174, 62, 48, (54,163,0): 173, 61, 47, (54,164,0): 171, 60, 43, (54,165,0): 171, 60, 43, (54,166,0): 173, 60, 46, (54,167,0): 177, 61, 48, (54,168,0): 192, 75, 65, (54,169,0): 218, 100, 90, (54,170,0): 222, 99, 94, (54,171,0): 232, 107, 105, (54,172,0): 240, 111, 115, (54,173,0): 234, 105, 110, (54,174,0): 245, 114, 122, (54,175,0): 253, 117, 127, (54,176,0): 241, 101, 112, (54,177,0): 248, 111, 121, (54,178,0): 245, 116, 121, (54,179,0): 237, 111, 115, (54,180,0): 248, 111, 118, (54,181,0): 255, 120, 127, (54,182,0): 255, 116, 125, (54,183,0): 255, 101, 111, (54,184,0): 252, 98, 110, (54,185,0): 242, 84, 98, (54,186,0): 241, 72, 91, (54,187,0): 231, 68, 89, (54,188,0): 222, 81, 97, (54,189,0): 217, 118, 123, (54,190,0): 189, 149, 137, (54,191,0): 152, 153, 122, (54,192,0): 129, 150, 107, (54,193,0): 123, 151, 102, (54,194,0): 130, 149, 104, (54,195,0): 145, 157, 117, (54,196,0): 172, 178, 142, (54,197,0): 203, 204, 173, (54,198,0): 224, 224, 196, (54,199,0): 233, 236, 209, (54,200,0): 236, 244, 220, (54,201,0): 227, 241, 215, (54,202,0): 215, 235, 207, (54,203,0): 205, 228, 199, (54,204,0): 196, 221, 191, (54,205,0): 187, 212, 182, (54,206,0): 180, 203, 174, (54,207,0): 172, 199, 164, (54,208,0): 156, 193, 149, (54,209,0): 152, 194, 144, (54,210,0): 156, 195, 148, (54,211,0): 163, 201, 154, (54,212,0): 170, 203, 158, (54,213,0): 175, 203, 162, (54,214,0): 184, 206, 168, (54,215,0): 194, 211, 177, (54,216,0): 206, 217, 187, (54,217,0): 216, 222, 196, (54,218,0): 228, 227, 206, (54,219,0): 235, 229, 213, (54,220,0): 236, 226, 214, (54,221,0): 233, 219, 210, (54,222,0): 229, 212, 205, (54,223,0): 226, 209, 202, (54,224,0): 223, 205, 201, (54,225,0): 218, 203, 198, (54,226,0): 213, 198, 193, (55,0,0): 91, 78, 62, (55,1,0): 90, 77, 61, (55,2,0): 90, 77, 61, (55,3,0): 90, 77, 61, (55,4,0): 90, 77, 61, (55,5,0): 90, 77, 61, (55,6,0): 89, 76, 60, (55,7,0): 89, 76, 60, (55,8,0): 90, 77, 61, (55,9,0): 89, 76, 60, (55,10,0): 89, 76, 60, (55,11,0): 88, 75, 59, (55,12,0): 88, 75, 59, (55,13,0): 89, 76, 60, (55,14,0): 90, 77, 61, (55,15,0): 90, 76, 63, (55,16,0): 86, 74, 62, (55,17,0): 86, 74, 62, (55,18,0): 88, 76, 62, (55,19,0): 89, 78, 60, (55,20,0): 90, 77, 60, (55,21,0): 90, 77, 58, (55,22,0): 90, 77, 58, (55,23,0): 90, 77, 60, (55,24,0): 91, 79, 65, (55,25,0): 87, 77, 68, (55,26,0): 87, 77, 76, (55,27,0): 92, 82, 90, (55,28,0): 94, 88, 102, (55,29,0): 98, 93, 113, (55,30,0): 106, 102, 127, (55,31,0): 113, 113, 141, (55,32,0): 116, 119, 150, (55,33,0): 116, 122, 156, (55,34,0): 120, 125, 167, (55,35,0): 125, 128, 181, (55,36,0): 129, 129, 191, (55,37,0): 132, 131, 197, (55,38,0): 133, 132, 200, (55,39,0): 135, 132, 199, (55,40,0): 130, 125, 191, (55,41,0): 127, 121, 183, (55,42,0): 125, 116, 173, (55,43,0): 122, 111, 167, (55,44,0): 122, 109, 165, (55,45,0): 120, 105, 162, (55,46,0): 116, 101, 160, (55,47,0): 124, 95, 141, (55,48,0): 133, 79, 93, (55,49,0): 152, 72, 75, (55,50,0): 178, 69, 75, (55,51,0): 211, 71, 82, (55,52,0): 237, 66, 82, (55,53,0): 246, 58, 73, (55,54,0): 252, 54, 67, (55,55,0): 253, 58, 64, (55,56,0): 244, 62, 61, (55,57,0): 235, 66, 59, (55,58,0): 228, 69, 63, (55,59,0): 225, 70, 65, (55,60,0): 227, 69, 66, (55,61,0): 230, 67, 70, (55,62,0): 237, 63, 72, (55,63,0): 234, 64, 73, (55,64,0): 214, 64, 65, (55,65,0): 209, 71, 68, (55,66,0): 197, 65, 60, (55,67,0): 195, 71, 63, (55,68,0): 178, 57, 46, (55,69,0): 179, 58, 47, (55,70,0): 209, 85, 75, (55,71,0): 195, 62, 53, (55,72,0): 201, 56, 51, (55,73,0): 199, 47, 44, (55,74,0): 197, 42, 38, (55,75,0): 200, 47, 42, (55,76,0): 205, 58, 51, (55,77,0): 204, 67, 57, (55,78,0): 195, 67, 54, (55,79,0): 188, 62, 47, (55,80,0): 192, 59, 42, (55,81,0): 196, 59, 41, (55,82,0): 195, 60, 41, (55,83,0): 193, 58, 39, (55,84,0): 194, 59, 40, (55,85,0): 195, 60, 41, (55,86,0): 194, 59, 39, (55,87,0): 195, 56, 37, (55,88,0): 196, 53, 36, (55,89,0): 202, 55, 37, (55,90,0): 212, 56, 41, (55,91,0): 217, 55, 42, (55,92,0): 221, 53, 42, (55,93,0): 225, 51, 42, (55,94,0): 229, 51, 41, (55,95,0): 234, 50, 42, (55,96,0): 245, 51, 51, (55,97,0): 254, 54, 56, (55,98,0): 255, 56, 60, (55,99,0): 255, 52, 58, (55,100,0): 255, 45, 50, (55,101,0): 255, 40, 45, (55,102,0): 255, 40, 45, (55,103,0): 254, 43, 49, (55,104,0): 254, 45, 51, (55,105,0): 246, 41, 48, (55,106,0): 242, 38, 49, (55,107,0): 247, 41, 54, (55,108,0): 255, 44, 63, (55,109,0): 255, 42, 65, (55,110,0): 252, 32, 57, (55,111,0): 244, 25, 47, (55,112,0): 246, 34, 48, (55,113,0): 243, 40, 46, (55,114,0): 237, 44, 49, (55,115,0): 230, 48, 47, (55,116,0): 218, 49, 44, (55,117,0): 212, 51, 43, (55,118,0): 209, 53, 41, (55,119,0): 208, 54, 42, (55,120,0): 212, 54, 43, (55,121,0): 221, 57, 48, (55,122,0): 230, 61, 54, (55,123,0): 235, 62, 55, (55,124,0): 235, 58, 52, (55,125,0): 232, 55, 49, (55,126,0): 232, 53, 48, (55,127,0): 226, 57, 50, (55,128,0): 223, 72, 61, (55,129,0): 215, 75, 60, (55,130,0): 211, 69, 55, (55,131,0): 203, 61, 47, (55,132,0): 196, 54, 40, (55,133,0): 194, 51, 37, (55,134,0): 200, 54, 41, (55,135,0): 207, 56, 45, (55,136,0): 206, 52, 42, (55,137,0): 212, 54, 45, (55,138,0): 230, 67, 60, (55,139,0): 223, 56, 50, (55,140,0): 224, 50, 49, (55,141,0): 210, 32, 32, (55,142,0): 236, 56, 57, (55,143,0): 229, 54, 51, (55,144,0): 213, 49, 40, (55,145,0): 210, 52, 41, (55,146,0): 210, 52, 41, (55,147,0): 207, 53, 41, (55,148,0): 206, 54, 43, (55,149,0): 202, 54, 42, (55,150,0): 200, 53, 43, (55,151,0): 197, 55, 43, (55,152,0): 227, 89, 78, (55,153,0): 216, 82, 70, (55,154,0): 202, 72, 59, (55,155,0): 190, 64, 50, (55,156,0): 183, 59, 47, (55,157,0): 181, 59, 46, (55,158,0): 181, 60, 49, (55,159,0): 181, 60, 49, (55,160,0): 175, 57, 45, (55,161,0): 177, 59, 47, (55,162,0): 177, 61, 48, (55,163,0): 177, 61, 46, (55,164,0): 175, 59, 44, (55,165,0): 173, 57, 42, (55,166,0): 173, 57, 44, (55,167,0): 174, 58, 45, (55,168,0): 177, 60, 50, (55,169,0): 208, 89, 81, (55,170,0): 220, 98, 93, (55,171,0): 236, 112, 112, (55,172,0): 244, 118, 121, (55,173,0): 238, 109, 114, (55,174,0): 245, 113, 124, (55,175,0): 248, 114, 125, (55,176,0): 255, 121, 131, (55,177,0): 255, 127, 137, (55,178,0): 250, 124, 128, (55,179,0): 235, 109, 113, (55,180,0): 241, 104, 112, (55,181,0): 255, 114, 124, (55,182,0): 255, 115, 127, (55,183,0): 255, 105, 116, (55,184,0): 250, 92, 106, (55,185,0): 243, 80, 97, (55,186,0): 245, 71, 94, (55,187,0): 232, 64, 87, (55,188,0): 220, 78, 94, (55,189,0): 215, 112, 116, (55,190,0): 196, 152, 139, (55,191,0): 164, 163, 132, (55,192,0): 134, 156, 110, (55,193,0): 126, 154, 103, (55,194,0): 129, 151, 104, (55,195,0): 141, 156, 113, (55,196,0): 161, 169, 130, (55,197,0): 180, 186, 150, (55,198,0): 200, 205, 173, (55,199,0): 213, 220, 189, (55,200,0): 202, 215, 185, (55,201,0): 191, 210, 178, (55,202,0): 176, 202, 167, (55,203,0): 166, 193, 158, (55,204,0): 157, 187, 151, (55,205,0): 154, 182, 144, (55,206,0): 150, 178, 140, (55,207,0): 145, 176, 134, (55,208,0): 140, 180, 130, (55,209,0): 138, 181, 127, (55,210,0): 143, 186, 133, (55,211,0): 152, 192, 140, (55,212,0): 158, 195, 144, (55,213,0): 162, 196, 146, (55,214,0): 170, 197, 154, (55,215,0): 179, 201, 162, (55,216,0): 190, 206, 170, (55,217,0): 201, 210, 181, (55,218,0): 216, 218, 196, (55,219,0): 227, 224, 205, (55,220,0): 232, 222, 210, (55,221,0): 230, 216, 207, (55,222,0): 223, 205, 201, (55,223,0): 218, 199, 195, (55,224,0): 211, 193, 189, (55,225,0): 206, 188, 184, (55,226,0): 200, 182, 180, (56,0,0): 90, 77, 61, (56,1,0): 90, 77, 61, (56,2,0): 90, 77, 61, (56,3,0): 90, 77, 61, (56,4,0): 90, 77, 61, (56,5,0): 90, 77, 61, (56,6,0): 90, 77, 61, (56,7,0): 90, 77, 61, (56,8,0): 88, 75, 59, (56,9,0): 88, 75, 59, (56,10,0): 88, 75, 59, (56,11,0): 89, 76, 60, (56,12,0): 89, 76, 60, (56,13,0): 90, 77, 61, (56,14,0): 90, 77, 61, (56,15,0): 90, 77, 61, (56,16,0): 90, 76, 63, (56,17,0): 90, 76, 63, (56,18,0): 90, 77, 61, (56,19,0): 91, 78, 61, (56,20,0): 93, 77, 61, (56,21,0): 94, 79, 60, (56,22,0): 92, 79, 60, (56,23,0): 92, 79, 62, (56,24,0): 89, 77, 61, (56,25,0): 87, 77, 67, (56,26,0): 87, 76, 72, (56,27,0): 88, 78, 79, (56,28,0): 90, 80, 88, (56,29,0): 93, 85, 98, (56,30,0): 96, 89, 105, (56,31,0): 96, 93, 114, (56,32,0): 103, 103, 129, (56,33,0): 106, 109, 142, (56,34,0): 112, 114, 155, (56,35,0): 114, 116, 167, (56,36,0): 120, 119, 179, (56,37,0): 129, 126, 193, (56,38,0): 137, 131, 201, (56,39,0): 138, 131, 199, (56,40,0): 137, 126, 192, (56,41,0): 140, 126, 188, (56,42,0): 138, 120, 178, (56,43,0): 135, 112, 168, (56,44,0): 139, 112, 167, (56,45,0): 145, 114, 171, (56,46,0): 139, 106, 163, (56,47,0): 137, 90, 132, (56,48,0): 143, 71, 82, (56,49,0): 161, 66, 60, (56,50,0): 179, 65, 64, (56,51,0): 202, 68, 67, (56,52,0): 220, 64, 67, (56,53,0): 231, 58, 62, (56,54,0): 243, 60, 62, (56,55,0): 254, 68, 69, (56,56,0): 246, 62, 60, (56,57,0): 241, 62, 58, (56,58,0): 236, 62, 61, (56,59,0): 233, 65, 64, (56,60,0): 233, 67, 67, (56,61,0): 233, 68, 72, (56,62,0): 233, 66, 73, (56,63,0): 226, 67, 72, (56,64,0): 207, 63, 62, (56,65,0): 197, 64, 57, (56,66,0): 190, 63, 54, (56,67,0): 183, 62, 51, (56,68,0): 176, 60, 47, (56,69,0): 178, 60, 48, (56,70,0): 192, 68, 56, (56,71,0): 210, 77, 68, (56,72,0): 199, 54, 49, (56,73,0): 212, 59, 54, (56,74,0): 205, 50, 46, (56,75,0): 204, 51, 46, (56,76,0): 214, 67, 59, (56,77,0): 199, 63, 51, (56,78,0): 181, 54, 39, (56,79,0): 187, 62, 44, (56,80,0): 186, 55, 37, (56,81,0): 193, 58, 39, (56,82,0): 195, 60, 41, (56,83,0): 194, 59, 40, (56,84,0): 192, 57, 37, (56,85,0): 194, 57, 38, (56,86,0): 197, 58, 39, (56,87,0): 199, 58, 40, (56,88,0): 203, 58, 39, (56,89,0): 208, 57, 40, (56,90,0): 214, 54, 40, (56,91,0): 216, 50, 36, (56,92,0): 218, 46, 34, (56,93,0): 224, 47, 37, (56,94,0): 236, 55, 46, (56,95,0): 245, 61, 53, (56,96,0): 246, 57, 51, (56,97,0): 247, 54, 49, (56,98,0): 248, 49, 46, (56,99,0): 249, 43, 43, (56,100,0): 250, 40, 41, (56,101,0): 252, 38, 40, (56,102,0): 252, 38, 40, (56,103,0): 252, 38, 40, (56,104,0): 251, 38, 42, (56,105,0): 247, 33, 41, (56,106,0): 248, 34, 46, (56,107,0): 255, 39, 55, (56,108,0): 255, 41, 62, (56,109,0): 255, 33, 59, (56,110,0): 255, 24, 54, (56,111,0): 255, 23, 49, (56,112,0): 254, 37, 54, (56,113,0): 238, 34, 43, (56,114,0): 229, 34, 42, (56,115,0): 227, 43, 45, (56,116,0): 221, 45, 45, (56,117,0): 211, 42, 39, (56,118,0): 209, 44, 40, (56,119,0): 218, 50, 47, (56,120,0): 226, 54, 50, (56,121,0): 232, 54, 52, (56,122,0): 238, 54, 54, (56,123,0): 242, 54, 53, (56,124,0): 242, 49, 50, (56,125,0): 239, 46, 47, (56,126,0): 238, 44, 44, (56,127,0): 229, 47, 44, (56,128,0): 220, 57, 50, (56,129,0): 209, 58, 49, (56,130,0): 210, 57, 49, (56,131,0): 236, 83, 75, (56,132,0): 187, 34, 26, (56,133,0): 196, 43, 35, (56,134,0): 223, 70, 62, (56,135,0): 200, 46, 38, (56,136,0): 205, 46, 40, (56,137,0): 222, 60, 55, (56,138,0): 232, 69, 64, (56,139,0): 226, 58, 55, (56,140,0): 216, 47, 42, (56,141,0): 218, 46, 42, (56,142,0): 226, 53, 49, (56,143,0): 229, 60, 55, (56,144,0): 223, 62, 52, (56,145,0): 213, 60, 46, (56,146,0): 207, 53, 41, (56,147,0): 203, 51, 38, (56,148,0): 204, 53, 42, (56,149,0): 205, 59, 46, (56,150,0): 203, 59, 48, (56,151,0): 197, 56, 46, (56,152,0): 236, 98, 88, (56,153,0): 224, 90, 79, (56,154,0): 200, 67, 58, (56,155,0): 185, 54, 44, (56,156,0): 186, 58, 47, (56,157,0): 184, 56, 45, (56,158,0): 177, 51, 39, (56,159,0): 180, 54, 42, (56,160,0): 176, 48, 37, (56,161,0): 176, 50, 38, (56,162,0): 174, 50, 38, (56,163,0): 175, 52, 37, (56,164,0): 176, 54, 39, (56,165,0): 178, 58, 42, (56,166,0): 180, 60, 46, (56,167,0): 179, 61, 49, (56,168,0): 176, 58, 48, (56,169,0): 186, 67, 59, (56,170,0): 214, 92, 87, (56,171,0): 236, 112, 112, (56,172,0): 241, 115, 118, (56,173,0): 246, 120, 124, (56,174,0): 251, 121, 131, (56,175,0): 245, 113, 124, (56,176,0): 255, 122, 132, (56,177,0): 253, 119, 128, (56,178,0): 242, 117, 123, (56,179,0): 244, 118, 122, (56,180,0): 253, 116, 124, (56,181,0): 255, 114, 124, (56,182,0): 255, 107, 120, (56,183,0): 255, 100, 115, (56,184,0): 255, 94, 110, (56,185,0): 241, 74, 92, (56,186,0): 245, 69, 92, (56,187,0): 239, 70, 91, (56,188,0): 217, 70, 86, (56,189,0): 208, 103, 107, (56,190,0): 190, 144, 128, (56,191,0): 158, 155, 122, (56,192,0): 134, 156, 109, (56,193,0): 125, 153, 102, (56,194,0): 126, 148, 99, (56,195,0): 135, 151, 106, (56,196,0): 148, 159, 119, (56,197,0): 158, 166, 129, (56,198,0): 160, 168, 131, (56,199,0): 156, 168, 132, (56,200,0): 146, 163, 127, (56,201,0): 138, 163, 124, (56,202,0): 128, 159, 118, (56,203,0): 122, 154, 113, (56,204,0): 121, 154, 111, (56,205,0): 124, 157, 114, (56,206,0): 129, 160, 118, (56,207,0): 131, 164, 117, (56,208,0): 132, 172, 119, (56,209,0): 134, 177, 121, (56,210,0): 140, 183, 127, (56,211,0): 147, 188, 132, (56,212,0): 149, 190, 134, (56,213,0): 152, 189, 135, (56,214,0): 157, 189, 140, (56,215,0): 162, 189, 144, (56,216,0): 167, 188, 147, (56,217,0): 175, 189, 154, (56,218,0): 189, 195, 167, (56,219,0): 206, 205, 185, (56,220,0): 220, 212, 199, (56,221,0): 224, 211, 202, (56,222,0): 218, 200, 196, (56,223,0): 211, 192, 188, (56,224,0): 203, 185, 183, (56,225,0): 192, 177, 174, (56,226,0): 184, 168, 168, (57,0,0): 90, 77, 61, (57,1,0): 90, 77, 61, (57,2,0): 90, 77, 61, (57,3,0): 90, 77, 61, (57,4,0): 90, 77, 61, (57,5,0): 90, 77, 61, (57,6,0): 90, 77, 61, (57,7,0): 90, 77, 61, (57,8,0): 88, 75, 59, (57,9,0): 88, 75, 59, (57,10,0): 88, 75, 59, (57,11,0): 89, 76, 60, (57,12,0): 89, 76, 60, (57,13,0): 90, 77, 61, (57,14,0): 90, 77, 61, (57,15,0): 90, 77, 61, (57,16,0): 90, 76, 63, (57,17,0): 90, 77, 61, (57,18,0): 92, 76, 61, (57,19,0): 93, 77, 61, (57,20,0): 93, 78, 59, (57,21,0): 94, 79, 60, (57,22,0): 92, 79, 60, (57,23,0): 92, 79, 62, (57,24,0): 93, 80, 64, (57,25,0): 91, 79, 67, (57,26,0): 91, 78, 70, (57,27,0): 89, 78, 74, (57,28,0): 90, 80, 81, (57,29,0): 92, 83, 88, (57,30,0): 95, 85, 94, (57,31,0): 94, 88, 102, (57,32,0): 97, 93, 116, (57,33,0): 101, 100, 131, (57,34,0): 107, 105, 145, (57,35,0): 110, 108, 157, (57,36,0): 117, 113, 172, (57,37,0): 127, 122, 188, (57,38,0): 135, 128, 196, (57,39,0): 139, 128, 196, (57,40,0): 143, 128, 193, (57,41,0): 145, 125, 186, (57,42,0): 143, 116, 171, (57,43,0): 143, 108, 162, (57,44,0): 154, 111, 164, (57,45,0): 165, 115, 168, (57,46,0): 158, 103, 158, (57,47,0): 154, 86, 125, (57,48,0): 156, 61, 69, (57,49,0): 166, 55, 46, (57,50,0): 175, 54, 46, (57,51,0): 192, 61, 53, (57,52,0): 208, 65, 59, (57,53,0): 218, 63, 58, (57,54,0): 231, 64, 58, (57,55,0): 243, 65, 61, (57,56,0): 245, 61, 61, (57,57,0): 245, 59, 60, (57,58,0): 244, 60, 62, (57,59,0): 241, 62, 65, (57,60,0): 236, 66, 69, (57,61,0): 231, 66, 70, (57,62,0): 225, 66, 70, (57,63,0): 216, 66, 67, (57,64,0): 199, 60, 55, (57,65,0): 189, 61, 52, (57,66,0): 182, 60, 49, (57,67,0): 177, 59, 47, (57,68,0): 171, 58, 44, (57,69,0): 174, 58, 43, (57,70,0): 189, 65, 53, (57,71,0): 208, 74, 65, (57,72,0): 218, 71, 64, (57,73,0): 220, 65, 61, (57,74,0): 212, 54, 51, (57,75,0): 208, 53, 49, (57,76,0): 213, 64, 57, (57,77,0): 205, 67, 56, (57,78,0): 187, 57, 43, (57,79,0): 178, 53, 35, (57,80,0): 189, 56, 39, (57,81,0): 194, 59, 40, (57,82,0): 196, 61, 42, (57,83,0): 196, 61, 42, (57,84,0): 196, 59, 40, (57,85,0): 198, 59, 40, (57,86,0): 199, 58, 40, (57,87,0): 202, 57, 40, (57,88,0): 207, 57, 40, (57,89,0): 207, 54, 38, (57,90,0): 212, 50, 37, (57,91,0): 218, 50, 37, (57,92,0): 227, 53, 42, (57,93,0): 234, 56, 46, (57,94,0): 239, 56, 48, (57,95,0): 240, 57, 49, (57,96,0): 231, 50, 39, (57,97,0): 231, 49, 38, (57,98,0): 235, 47, 38, (57,99,0): 240, 45, 39, (57,100,0): 246, 44, 40, (57,101,0): 250, 45, 42, (57,102,0): 254, 46, 44, (57,103,0): 255, 46, 47, (57,104,0): 251, 42, 45, (57,105,0): 248, 37, 43, (57,106,0): 250, 36, 46, (57,107,0): 255, 39, 55, (57,108,0): 255, 37, 59, (57,109,0): 255, 29, 55, (57,110,0): 255, 20, 51, (57,111,0): 252, 19, 48, (57,112,0): 244, 29, 47, (57,113,0): 245, 45, 56, (57,114,0): 244, 50, 59, (57,115,0): 228, 41, 48, (57,116,0): 218, 39, 43, (57,117,0): 219, 45, 47, (57,118,0): 221, 47, 49, (57,119,0): 218, 42, 45, (57,120,0): 241, 58, 62, (57,121,0): 244, 55, 61, (57,122,0): 247, 52, 58, (57,123,0): 246, 50, 54, (57,124,0): 246, 47, 52, (57,125,0): 248, 48, 51, (57,126,0): 249, 50, 53, (57,127,0): 244, 56, 55, (57,128,0): 219, 50, 45, (57,129,0): 218, 59, 53, (57,130,0): 215, 56, 50, (57,131,0): 228, 69, 63, (57,132,0): 228, 69, 63, (57,133,0): 206, 47, 43, (57,134,0): 209, 50, 46, (57,135,0): 193, 34, 30, (57,136,0): 212, 53, 49, (57,137,0): 225, 63, 58, (57,138,0): 232, 69, 64, (57,139,0): 224, 61, 56, (57,140,0): 216, 51, 45, (57,141,0): 217, 50, 44, (57,142,0): 221, 54, 48, (57,143,0): 221, 58, 49, (57,144,0): 212, 58, 46, (57,145,0): 207, 57, 42, (57,146,0): 201, 53, 39, (57,147,0): 199, 53, 40, (57,148,0): 200, 57, 43, (57,149,0): 202, 60, 48, (57,150,0): 202, 60, 50, (57,151,0): 198, 57, 47, (57,152,0): 237, 99, 89, (57,153,0): 225, 88, 78, (57,154,0): 201, 64, 56, (57,155,0): 186, 52, 43, (57,156,0): 194, 57, 49, (57,157,0): 195, 58, 48, (57,158,0): 191, 54, 44, (57,159,0): 194, 57, 47, (57,160,0): 191, 53, 43, (57,161,0): 190, 52, 42, (57,162,0): 189, 52, 42, (57,163,0): 187, 53, 41, (57,164,0): 184, 54, 41, (57,165,0): 181, 53, 40, (57,166,0): 180, 54, 40, (57,167,0): 176, 54, 41, (57,168,0): 180, 59, 48, (57,169,0): 187, 66, 57, (57,170,0): 211, 89, 84, (57,171,0): 232, 108, 106, (57,172,0): 239, 113, 116, (57,173,0): 246, 120, 124, (57,174,0): 254, 124, 132, (57,175,0): 249, 117, 128, (57,176,0): 255, 122, 132, (57,177,0): 253, 119, 128, (57,178,0): 244, 119, 125, (57,179,0): 245, 118, 125, (57,180,0): 254, 117, 125, (57,181,0): 255, 111, 123, (57,182,0): 255, 104, 118, (57,183,0): 255, 97, 113, (57,184,0): 255, 93, 110, (57,185,0): 242, 75, 93, (57,186,0): 246, 68, 92, (57,187,0): 242, 70, 92, (57,188,0): 221, 73, 89, (57,189,0): 208, 102, 104, (57,190,0): 183, 138, 119, (57,191,0): 149, 146, 111, (57,192,0): 127, 147, 98, (57,193,0): 117, 146, 92, (57,194,0): 120, 142, 93, (57,195,0): 127, 144, 99, (57,196,0): 138, 149, 107, (57,197,0): 141, 152, 112, (57,198,0): 139, 149, 112, (57,199,0): 133, 148, 109, (57,200,0): 112, 135, 93, (57,201,0): 108, 137, 93, (57,202,0): 104, 137, 92, (57,203,0): 103, 141, 94, (57,204,0): 107, 143, 95, (57,205,0): 113, 149, 101, (57,206,0): 121, 155, 105, (57,207,0): 124, 158, 107, (57,208,0): 132, 171, 116, (57,209,0): 133, 177, 118, (57,210,0): 139, 183, 124, (57,211,0): 142, 186, 125, (57,212,0): 146, 187, 127, (57,213,0): 148, 187, 130, (57,214,0): 151, 188, 134, (57,215,0): 155, 187, 137, (57,216,0): 155, 181, 134, (57,217,0): 161, 179, 139, (57,218,0): 172, 183, 151, (57,219,0): 188, 190, 168, (57,220,0): 205, 199, 183, (57,221,0): 213, 200, 191, (57,222,0): 212, 195, 188, (57,223,0): 206, 188, 186, (57,224,0): 197, 181, 181, (57,225,0): 186, 172, 172, (57,226,0): 177, 163, 163, (58,0,0): 92, 76, 60, (58,1,0): 92, 76, 60, (58,2,0): 92, 76, 60, (58,3,0): 92, 76, 60, (58,4,0): 92, 76, 60, (58,5,0): 92, 76, 60, (58,6,0): 92, 76, 60, (58,7,0): 92, 76, 60, (58,8,0): 90, 74, 58, (58,9,0): 90, 74, 58, (58,10,0): 90, 74, 58, (58,11,0): 91, 75, 59, (58,12,0): 91, 75, 59, (58,13,0): 92, 76, 60, (58,14,0): 92, 76, 60, (58,15,0): 92, 76, 60, (58,16,0): 92, 76, 61, (58,17,0): 92, 76, 61, (58,18,0): 93, 75, 61, (58,19,0): 93, 77, 61, (58,20,0): 93, 78, 59, (58,21,0): 94, 79, 60, (58,22,0): 94, 79, 60, (58,23,0): 92, 79, 60, (58,24,0): 95, 82, 65, (58,25,0): 93, 81, 65, (58,26,0): 92, 80, 68, (58,27,0): 91, 78, 70, (58,28,0): 90, 79, 75, (58,29,0): 91, 80, 78, (58,30,0): 93, 81, 83, (58,31,0): 92, 82, 90, (58,32,0): 93, 84, 103, (58,33,0): 98, 89, 118, (58,34,0): 101, 95, 133, (58,35,0): 105, 99, 145, (58,36,0): 113, 108, 164, (58,37,0): 125, 119, 181, (58,38,0): 132, 126, 190, (58,39,0): 137, 125, 189, (58,40,0): 152, 132, 193, (58,41,0): 155, 128, 183, (58,42,0): 156, 118, 169, (58,43,0): 160, 111, 158, (58,44,0): 177, 115, 162, (58,45,0): 189, 117, 165, (58,46,0): 183, 104, 152, (58,47,0): 177, 81, 118, (58,48,0): 181, 61, 70, (58,49,0): 186, 54, 49, (58,50,0): 182, 54, 45, (58,51,0): 189, 61, 50, (58,52,0): 200, 68, 56, (58,53,0): 210, 69, 59, (58,54,0): 219, 66, 58, (58,55,0): 228, 63, 57, (58,56,0): 241, 61, 62, (58,57,0): 247, 58, 62, (58,58,0): 249, 58, 63, (58,59,0): 247, 61, 66, (58,60,0): 239, 64, 69, (58,61,0): 229, 66, 69, (58,62,0): 215, 65, 66, (58,63,0): 205, 66, 63, (58,64,0): 192, 59, 52, (58,65,0): 184, 57, 48, (58,66,0): 177, 57, 43, (58,67,0): 173, 57, 42, (58,68,0): 169, 56, 40, (58,69,0): 173, 57, 42, (58,70,0): 187, 63, 51, (58,71,0): 207, 70, 60, (58,72,0): 217, 68, 62, (58,73,0): 215, 57, 54, (58,74,0): 217, 55, 52, (58,75,0): 218, 59, 55, (58,76,0): 220, 67, 61, (58,77,0): 221, 79, 69, (58,78,0): 206, 72, 60, (58,79,0): 181, 51, 35, (58,80,0): 190, 57, 40, (58,81,0): 193, 58, 39, (58,82,0): 196, 59, 41, (58,83,0): 198, 61, 43, (58,84,0): 201, 61, 44, (58,85,0): 200, 60, 43, (58,86,0): 201, 58, 41, (58,87,0): 204, 57, 41, (58,88,0): 207, 55, 41, (58,89,0): 207, 50, 35, (58,90,0): 211, 47, 35, (58,91,0): 223, 52, 42, (58,92,0): 238, 61, 51, (58,93,0): 244, 63, 54, (58,94,0): 241, 57, 49, (58,95,0): 233, 52, 43, (58,96,0): 224, 54, 39, (58,97,0): 221, 54, 38, (58,98,0): 226, 50, 37, (58,99,0): 230, 48, 37, (58,100,0): 234, 46, 37, (58,101,0): 238, 45, 38, (58,102,0): 239, 44, 40, (58,103,0): 242, 44, 41, (58,104,0): 242, 44, 45, (58,105,0): 239, 40, 43, (58,106,0): 240, 39, 47, (58,107,0): 247, 41, 54, (58,108,0): 253, 37, 58, (58,109,0): 252, 30, 55, (58,110,0): 251, 22, 51, (58,111,0): 248, 24, 51, (58,112,0): 244, 37, 55, (58,113,0): 241, 47, 58, (58,114,0): 242, 52, 64, (58,115,0): 239, 53, 64, (58,116,0): 238, 57, 66, (58,117,0): 238, 58, 67, (58,118,0): 233, 53, 62, (58,119,0): 229, 45, 55, (58,120,0): 240, 50, 60, (58,121,0): 243, 47, 59, (58,122,0): 246, 46, 57, (58,123,0): 246, 45, 55, (58,124,0): 245, 46, 51, (58,125,0): 245, 46, 49, (58,126,0): 243, 47, 49, (58,127,0): 237, 52, 50, (58,128,0): 220, 48, 44, (58,129,0): 226, 61, 57, (58,130,0): 218, 54, 52, (58,131,0): 223, 59, 57, (58,132,0): 255, 109, 106, (58,133,0): 229, 67, 65, (58,134,0): 209, 47, 45, (58,135,0): 206, 47, 44, (58,136,0): 217, 58, 55, (58,137,0): 223, 64, 60, (58,138,0): 224, 65, 59, (58,139,0): 219, 60, 54, (58,140,0): 213, 55, 46, (58,141,0): 214, 53, 45, (58,142,0): 214, 53, 43, (58,143,0): 210, 54, 42, (58,144,0): 200, 54, 39, (58,145,0): 195, 54, 37, (58,146,0): 194, 54, 39, (58,147,0): 196, 56, 41, (58,148,0): 197, 59, 46, (58,149,0): 198, 60, 49, (58,150,0): 198, 60, 49, (58,151,0): 197, 59, 49, (58,152,0): 235, 96, 89, (58,153,0): 225, 84, 77, (58,154,0): 201, 60, 51, (58,155,0): 191, 48, 40, (58,156,0): 203, 59, 51, (58,157,0): 209, 62, 54, (58,158,0): 206, 59, 51, (58,159,0): 210, 61, 54, (58,160,0): 216, 61, 56, (58,161,0): 215, 60, 55, (58,162,0): 212, 61, 54, (58,163,0): 207, 60, 50, (58,164,0): 201, 59, 49, (58,165,0): 195, 57, 46, (58,166,0): 188, 54, 42, (58,167,0): 182, 54, 41, (58,168,0): 185, 59, 47, (58,169,0): 188, 64, 54, (58,170,0): 207, 84, 77, (58,171,0): 227, 103, 101, (58,172,0): 237, 111, 114, (58,173,0): 248, 122, 126, (58,174,0): 255, 129, 136, (58,175,0): 253, 123, 131, (58,176,0): 255, 122, 131, (58,177,0): 252, 121, 129, (58,178,0): 245, 122, 127, (58,179,0): 246, 121, 127, (58,180,0): 254, 117, 127, (58,181,0): 255, 110, 124, (58,182,0): 255, 99, 117, (58,183,0): 255, 92, 111, (58,184,0): 255, 89, 109, (58,185,0): 242, 73, 94, (58,186,0): 245, 65, 90, (58,187,0): 242, 70, 92, (58,188,0): 224, 76, 90, (58,189,0): 203, 97, 97, (58,190,0): 167, 122, 101, (58,191,0): 130, 128, 90, (58,192,0): 110, 130, 81, (58,193,0): 104, 133, 79, (58,194,0): 109, 131, 82, (58,195,0): 116, 133, 88, (58,196,0): 123, 136, 93, (58,197,0): 125, 136, 94, (58,198,0): 120, 132, 92, (58,199,0): 113, 130, 88, (58,200,0): 96, 122, 77, (58,201,0): 95, 127, 80, (58,202,0): 97, 133, 85, (58,203,0): 101, 141, 89, (58,204,0): 110, 149, 96, (58,205,0): 117, 156, 103, (58,206,0): 125, 160, 106, (58,207,0): 128, 163, 109, (58,208,0): 132, 171, 114, (58,209,0): 135, 176, 116, (58,210,0): 139, 180, 120, (58,211,0): 142, 184, 121, (58,212,0): 140, 184, 121, (58,213,0): 143, 185, 122, (58,214,0): 146, 186, 126, (58,215,0): 148, 186, 129, (58,216,0): 147, 177, 127, (58,217,0): 149, 172, 128, (58,218,0): 154, 170, 134, (58,219,0): 168, 174, 146, (58,220,0): 184, 181, 162, (58,221,0): 196, 186, 174, (58,222,0): 200, 185, 178, (58,223,0): 198, 183, 180, (58,224,0): 183, 171, 173, (58,225,0): 169, 160, 165, (58,226,0): 159, 150, 155, (59,0,0): 91, 75, 59, (59,1,0): 91, 75, 59, (59,2,0): 91, 75, 59, (59,3,0): 91, 75, 59, (59,4,0): 91, 75, 59, (59,5,0): 91, 75, 59, (59,6,0): 91, 75, 59, (59,7,0): 91, 75, 59, (59,8,0): 90, 74, 58, (59,9,0): 90, 74, 58, (59,10,0): 90, 74, 58, (59,11,0): 91, 75, 59, (59,12,0): 91, 75, 59, (59,13,0): 92, 76, 60, (59,14,0): 92, 76, 60, (59,15,0): 92, 76, 60, (59,16,0): 93, 75, 61, (59,17,0): 93, 75, 61, (59,18,0): 93, 76, 60, (59,19,0): 94, 77, 61, (59,20,0): 94, 77, 59, (59,21,0): 94, 79, 60, (59,22,0): 94, 79, 60, (59,23,0): 94, 79, 60, (59,24,0): 94, 81, 64, (59,25,0): 94, 81, 64, (59,26,0): 93, 79, 66, (59,27,0): 91, 79, 67, (59,28,0): 92, 78, 69, (59,29,0): 91, 78, 70, (59,30,0): 92, 79, 73, (59,31,0): 91, 79, 79, (59,32,0): 94, 80, 95, (59,33,0): 98, 84, 109, (59,34,0): 100, 89, 123, (59,35,0): 103, 94, 137, (59,36,0): 111, 104, 156, (59,37,0): 122, 117, 173, (59,38,0): 132, 124, 183, (59,39,0): 136, 123, 179, (59,40,0): 155, 132, 186, (59,41,0): 166, 133, 180, (59,42,0): 175, 128, 170, (59,43,0): 184, 122, 161, (59,44,0): 200, 120, 159, (59,45,0): 211, 116, 156, (59,46,0): 204, 99, 140, (59,47,0): 198, 77, 108, (59,48,0): 216, 72, 82, (59,49,0): 217, 67, 66, (59,50,0): 209, 67, 63, (59,51,0): 203, 70, 61, (59,52,0): 201, 73, 60, (59,53,0): 204, 72, 59, (59,54,0): 211, 69, 59, (59,55,0): 222, 65, 60, (59,56,0): 238, 64, 65, (59,57,0): 245, 60, 65, (59,58,0): 251, 60, 68, (59,59,0): 249, 62, 69, (59,60,0): 240, 65, 72, (59,61,0): 226, 66, 68, (59,62,0): 209, 65, 64, (59,63,0): 197, 64, 59, (59,64,0): 191, 63, 54, (59,65,0): 182, 60, 49, (59,66,0): 175, 57, 43, (59,67,0): 171, 58, 42, (59,68,0): 170, 57, 41, (59,69,0): 174, 56, 42, (59,70,0): 188, 62, 48, (59,71,0): 206, 68, 58, (59,72,0): 213, 60, 55, (59,73,0): 213, 51, 49, (59,74,0): 224, 59, 57, (59,75,0): 229, 65, 63, (59,76,0): 225, 68, 63, (59,77,0): 232, 83, 76, (59,78,0): 223, 85, 74, (59,79,0): 191, 58, 43, (59,80,0): 193, 57, 41, (59,81,0): 190, 55, 36, (59,82,0): 192, 55, 37, (59,83,0): 196, 59, 41, (59,84,0): 201, 61, 44, (59,85,0): 202, 61, 44, (59,86,0): 203, 57, 42, (59,87,0): 206, 56, 41, (59,88,0): 205, 52, 38, (59,89,0): 210, 50, 38, (59,90,0): 217, 50, 41, (59,91,0): 229, 57, 47, (59,92,0): 241, 62, 55, (59,93,0): 245, 62, 54, (59,94,0): 240, 53, 46, (59,95,0): 228, 47, 38, (59,96,0): 222, 54, 41, (59,97,0): 221, 55, 41, (59,98,0): 224, 52, 42, (59,99,0): 228, 50, 40, (59,100,0): 231, 46, 41, (59,101,0): 233, 46, 41, (59,102,0): 236, 44, 41, (59,103,0): 236, 44, 43, (59,104,0): 232, 42, 44, (59,105,0): 230, 39, 44, (59,106,0): 234, 40, 49, (59,107,0): 240, 42, 57, (59,108,0): 245, 39, 60, (59,109,0): 246, 34, 59, (59,110,0): 250, 31, 61, (59,111,0): 251, 37, 65, (59,112,0): 253, 56, 74, (59,113,0): 228, 40, 54, (59,114,0): 229, 44, 58, (59,115,0): 255, 77, 89, (59,116,0): 255, 93, 105, (59,117,0): 255, 78, 90, (59,118,0): 242, 60, 73, (59,119,0): 244, 58, 72, (59,120,0): 232, 41, 56, (59,121,0): 237, 42, 56, (59,122,0): 241, 45, 57, (59,123,0): 244, 48, 58, (59,124,0): 241, 50, 55, (59,125,0): 234, 48, 49, (59,126,0): 225, 43, 42, (59,127,0): 215, 40, 37, (59,128,0): 216, 48, 45, (59,129,0): 218, 55, 50, (59,130,0): 212, 50, 47, (59,131,0): 229, 67, 64, (59,132,0): 255, 115, 112, (59,133,0): 245, 86, 83, (59,134,0): 221, 62, 59, (59,135,0): 229, 71, 68, (59,136,0): 219, 61, 58, (59,137,0): 218, 60, 57, (59,138,0): 213, 58, 53, (59,139,0): 210, 56, 48, (59,140,0): 209, 55, 45, (59,141,0): 208, 54, 42, (59,142,0): 205, 52, 38, (59,143,0): 198, 51, 35, (59,144,0): 190, 53, 35, (59,145,0): 185, 54, 36, (59,146,0): 187, 56, 38, (59,147,0): 191, 59, 44, (59,148,0): 192, 60, 47, (59,149,0): 191, 57, 45, (59,150,0): 192, 58, 47, (59,151,0): 197, 60, 50, (59,152,0): 229, 88, 81, (59,153,0): 220, 77, 71, (59,154,0): 202, 55, 48, (59,155,0): 199, 48, 41, (59,156,0): 215, 60, 55, (59,157,0): 222, 65, 58, (59,158,0): 218, 59, 53, (59,159,0): 223, 60, 53, (59,160,0): 231, 62, 57, (59,161,0): 233, 61, 57, (59,162,0): 230, 63, 57, (59,163,0): 225, 64, 56, (59,164,0): 217, 63, 53, (59,165,0): 208, 60, 50, (59,166,0): 200, 58, 46, (59,167,0): 193, 57, 45, (59,168,0): 187, 57, 44, (59,169,0): 187, 61, 49, (59,170,0): 203, 78, 72, (59,171,0): 224, 99, 95, (59,172,0): 236, 110, 111, (59,173,0): 250, 124, 127, (59,174,0): 255, 132, 136, (59,175,0): 255, 125, 133, (59,176,0): 252, 118, 127, (59,177,0): 250, 119, 127, (59,178,0): 245, 122, 127, (59,179,0): 247, 122, 128, (59,180,0): 255, 118, 128, (59,181,0): 255, 109, 123, (59,182,0): 255, 98, 116, (59,183,0): 254, 91, 110, (59,184,0): 250, 84, 104, (59,185,0): 240, 71, 92, (59,186,0): 241, 61, 86, (59,187,0): 240, 68, 90, (59,188,0): 225, 79, 92, (59,189,0): 195, 91, 90, (59,190,0): 146, 104, 82, (59,191,0): 111, 109, 71, (59,192,0): 95, 115, 66, (59,193,0): 92, 121, 67, (59,194,0): 100, 122, 73, (59,195,0): 108, 125, 80, (59,196,0): 116, 129, 86, (59,197,0): 118, 131, 88, (59,198,0): 114, 129, 88, (59,199,0): 111, 129, 87, (59,200,0): 109, 135, 90, (59,201,0): 108, 142, 92, (59,202,0): 111, 149, 98, (59,203,0): 117, 157, 104, (59,204,0): 123, 164, 108, (59,205,0): 129, 168, 111, (59,206,0): 132, 170, 113, (59,207,0): 135, 170, 112, (59,208,0): 134, 172, 113, (59,209,0): 136, 176, 116, (59,210,0): 139, 179, 117, (59,211,0): 140, 182, 118, (59,212,0): 138, 183, 118, (59,213,0): 138, 183, 118, (59,214,0): 139, 184, 119, (59,215,0): 144, 184, 122, (59,216,0): 145, 180, 124, (59,217,0): 143, 171, 123, (59,218,0): 144, 165, 124, (59,219,0): 154, 165, 133, (59,220,0): 170, 172, 150, (59,221,0): 187, 180, 164, (59,222,0): 197, 184, 175, (59,223,0): 198, 184, 181, (59,224,0): 177, 171, 175, (59,225,0): 161, 158, 165, (59,226,0): 151, 146, 153, (60,0,0): 91, 75, 59, (60,1,0): 91, 75, 59, (60,2,0): 91, 75, 59, (60,3,0): 91, 75, 59, (60,4,0): 91, 75, 59, (60,5,0): 91, 75, 59, (60,6,0): 91, 75, 59, (60,7,0): 91, 75, 59, (60,8,0): 90, 74, 58, (60,9,0): 90, 74, 58, (60,10,0): 90, 74, 58, (60,11,0): 91, 75, 59, (60,12,0): 91, 75, 59, (60,13,0): 92, 76, 60, (60,14,0): 92, 76, 60, (60,15,0): 92, 76, 60, (60,16,0): 93, 76, 60, (60,17,0): 94, 75, 60, (60,18,0): 94, 75, 60, (60,19,0): 94, 77, 61, (60,20,0): 94, 77, 59, (60,21,0): 95, 78, 60, (60,22,0): 94, 79, 60, (60,23,0): 94, 79, 60, (60,24,0): 94, 79, 60, (60,25,0): 94, 78, 62, (60,26,0): 94, 78, 62, (60,27,0): 92, 79, 63, (60,28,0): 94, 78, 65, (60,29,0): 93, 79, 66, (60,30,0): 94, 80, 69, (60,31,0): 94, 79, 74, (60,32,0): 98, 78, 89, (60,33,0): 99, 80, 100, (60,34,0): 99, 84, 113, (60,35,0): 101, 89, 125, (60,36,0): 108, 101, 145, (60,37,0): 120, 114, 162, (60,38,0): 127, 119, 168, (60,39,0): 131, 118, 164, (60,40,0): 148, 125, 167, (60,41,0): 172, 134, 171, (60,42,0): 194, 137, 169, (60,43,0): 206, 130, 158, (60,44,0): 218, 119, 148, (60,45,0): 223, 108, 137, (60,46,0): 218, 89, 119, (60,47,0): 216, 69, 95, (60,48,0): 236, 70, 84, (60,49,0): 242, 73, 78, (60,50,0): 233, 77, 78, (60,51,0): 219, 76, 72, (60,52,0): 205, 71, 62, (60,53,0): 202, 69, 60, (60,54,0): 210, 69, 62, (60,55,0): 219, 67, 62, (60,56,0): 234, 66, 66, (60,57,0): 242, 63, 67, (60,58,0): 248, 63, 71, (60,59,0): 246, 65, 74, (60,60,0): 237, 68, 73, (60,61,0): 222, 68, 70, (60,62,0): 205, 66, 63, (60,63,0): 192, 63, 57, (60,64,0): 189, 65, 55, (60,65,0): 181, 61, 47, (60,66,0): 174, 58, 43, (60,67,0): 171, 58, 42, (60,68,0): 170, 57, 41, (60,69,0): 174, 56, 42, (60,70,0): 187, 59, 46, (60,71,0): 204, 63, 54, (60,72,0): 225, 70, 65, (60,73,0): 226, 61, 59, (60,74,0): 238, 66, 66, (60,75,0): 235, 65, 65, (60,76,0): 222, 59, 54, (60,77,0): 227, 74, 66, (60,78,0): 230, 88, 76, (60,79,0): 213, 75, 62, (60,80,0): 200, 64, 50, (60,81,0): 192, 56, 40, (60,82,0): 188, 51, 35, (60,83,0): 193, 56, 40, (60,84,0): 200, 60, 45, (60,85,0): 201, 58, 42, (60,86,0): 203, 55, 41, (60,87,0): 208, 56, 43, (60,88,0): 206, 48, 37, (60,89,0): 215, 51, 41, (60,90,0): 224, 56, 47, (60,91,0): 233, 59, 52, (60,92,0): 237, 58, 53, (60,93,0): 237, 54, 48, (60,94,0): 235, 48, 43, (60,95,0): 229, 44, 39, (60,96,0): 223, 48, 43, (60,97,0): 223, 50, 44, (60,98,0): 229, 49, 48, (60,99,0): 235, 50, 48, (60,100,0): 241, 51, 53, (60,101,0): 244, 51, 54, (60,102,0): 246, 53, 56, (60,103,0): 244, 53, 58, (60,104,0): 235, 46, 53, (60,105,0): 232, 45, 54, (60,106,0): 235, 47, 61, (60,107,0): 240, 49, 67, (60,108,0): 242, 46, 70, (60,109,0): 245, 42, 71, (60,110,0): 252, 44, 78, (60,111,0): 255, 52, 82, (60,112,0): 245, 58, 77, (60,113,0): 229, 51, 63, (60,114,0): 238, 62, 75, (60,115,0): 255, 92, 105, (60,116,0): 255, 104, 118, (60,117,0): 255, 85, 100, (60,118,0): 245, 67, 83, (60,119,0): 247, 64, 82, (60,120,0): 238, 51, 68, (60,121,0): 237, 51, 65, (60,122,0): 237, 51, 62, (60,123,0): 233, 54, 60, (60,124,0): 227, 57, 57, (60,125,0): 219, 56, 51, (60,126,0): 206, 52, 42, (60,127,0): 199, 47, 36, (60,128,0): 203, 50, 42, (60,129,0): 199, 46, 40, (60,130,0): 208, 55, 50, (60,131,0): 242, 89, 84, (60,132,0): 246, 92, 90, (60,133,0): 242, 88, 86, (60,134,0): 219, 65, 63, (60,135,0): 226, 72, 70, (60,136,0): 220, 66, 64, (60,137,0): 212, 60, 55, (60,138,0): 206, 55, 48, (60,139,0): 205, 54, 45, (60,140,0): 207, 56, 45, (60,141,0): 207, 57, 43, (60,142,0): 202, 55, 39, (60,143,0): 194, 53, 35, (60,144,0): 185, 56, 35, (60,145,0): 179, 57, 36, (60,146,0): 181, 58, 40, (60,147,0): 184, 61, 45, (60,148,0): 185, 59, 44, (60,149,0): 182, 54, 41, (60,150,0): 188, 55, 46, (60,151,0): 198, 61, 53, (60,152,0): 219, 78, 71, (60,153,0): 217, 69, 65, (60,154,0): 206, 53, 48, (60,155,0): 208, 49, 45, (60,156,0): 225, 62, 57, (60,157,0): 231, 64, 58, (60,158,0): 227, 56, 49, (60,159,0): 231, 53, 49, (60,160,0): 235, 50, 48, (60,161,0): 238, 50, 49, (60,162,0): 235, 53, 50, (60,163,0): 231, 56, 51, (60,164,0): 225, 58, 50, (60,165,0): 216, 58, 47, (60,166,0): 208, 57, 46, (60,167,0): 200, 58, 46, (60,168,0): 190, 54, 42, (60,169,0): 186, 56, 43, (60,170,0): 200, 73, 66, (60,171,0): 220, 95, 89, (60,172,0): 235, 110, 108, (60,173,0): 251, 125, 128, (60,174,0): 255, 133, 137, (60,175,0): 255, 126, 131, (60,176,0): 247, 116, 124, (60,177,0): 248, 118, 126, (60,178,0): 245, 122, 127, (60,179,0): 248, 123, 129, (60,180,0): 254, 116, 129, (60,181,0): 255, 108, 124, (60,182,0): 255, 97, 117, (60,183,0): 255, 90, 112, (60,184,0): 247, 81, 101, (60,185,0): 241, 72, 93, (60,186,0): 240, 62, 86, (60,187,0): 238, 69, 90, (60,188,0): 227, 83, 93, (60,189,0): 188, 86, 82, (60,190,0): 131, 91, 66, (60,191,0): 98, 98, 60, (60,192,0): 92, 112, 63, (60,193,0): 91, 118, 67, (60,194,0): 102, 121, 75, (60,195,0): 110, 126, 81, (60,196,0): 116, 129, 86, (60,197,0): 120, 133, 90, (60,198,0): 121, 136, 95, (60,199,0): 119, 140, 97, (60,200,0): 121, 149, 101, (60,201,0): 120, 154, 104, (60,202,0): 122, 160, 109, (60,203,0): 124, 167, 113, (60,204,0): 129, 170, 114, (60,205,0): 132, 171, 114, (60,206,0): 133, 171, 112, (60,207,0): 134, 169, 111, (60,208,0): 137, 172, 114, (60,209,0): 139, 174, 116, (60,210,0): 138, 178, 116, (60,211,0): 138, 180, 116, (60,212,0): 136, 181, 116, (60,213,0): 135, 182, 114, (60,214,0): 137, 184, 116, (60,215,0): 139, 184, 119, (60,216,0): 143, 183, 123, (60,217,0): 140, 173, 120, (60,218,0): 141, 164, 120, (60,219,0): 151, 165, 130, (60,220,0): 170, 174, 149, (60,221,0): 191, 186, 167, (60,222,0): 203, 193, 181, (60,223,0): 207, 198, 193, (60,224,0): 188, 186, 191, (60,225,0): 168, 170, 182, (60,226,0): 156, 156, 168, (61,0,0): 90, 74, 58, (61,1,0): 90, 74, 58, (61,2,0): 90, 74, 58, (61,3,0): 90, 74, 58, (61,4,0): 90, 74, 58, (61,5,0): 90, 74, 58, (61,6,0): 90, 74, 58, (61,7,0): 90, 74, 58, (61,8,0): 90, 74, 58, (61,9,0): 90, 74, 58, (61,10,0): 90, 74, 58, (61,11,0): 91, 75, 59, (61,12,0): 91, 75, 59, (61,13,0): 92, 76, 60, (61,14,0): 92, 76, 60, (61,15,0): 93, 76, 60, (61,16,0): 94, 75, 60, (61,17,0): 94, 75, 60, (61,18,0): 94, 75, 60, (61,19,0): 95, 76, 61, (61,20,0): 94, 77, 59, (61,21,0): 95, 78, 60, (61,22,0): 94, 79, 60, (61,23,0): 94, 79, 60, (61,24,0): 93, 78, 59, (61,25,0): 93, 78, 59, (61,26,0): 94, 79, 60, (61,27,0): 95, 79, 63, (61,28,0): 95, 79, 63, (61,29,0): 96, 80, 64, (61,30,0): 97, 81, 65, (61,31,0): 98, 80, 70, (61,32,0): 101, 76, 80, (61,33,0): 101, 77, 93, (61,34,0): 97, 79, 101, (61,35,0): 98, 85, 115, (61,36,0): 104, 96, 133, (61,37,0): 116, 111, 151, (61,38,0): 123, 116, 157, (61,39,0): 125, 113, 151, (61,40,0): 143, 118, 150, (61,41,0): 174, 131, 159, (61,42,0): 203, 140, 161, (61,43,0): 218, 131, 150, (61,44,0): 227, 116, 133, (61,45,0): 232, 101, 117, (61,46,0): 230, 81, 100, (61,47,0): 228, 63, 80, (61,48,0): 242, 55, 72, (61,49,0): 252, 64, 78, (61,50,0): 244, 73, 81, (61,51,0): 227, 71, 74, (61,52,0): 209, 65, 64, (61,53,0): 203, 66, 60, (61,54,0): 209, 67, 63, (61,55,0): 217, 67, 66, (61,56,0): 230, 67, 70, (61,57,0): 235, 64, 70, (61,58,0): 239, 64, 71, (61,59,0): 239, 66, 72, (61,60,0): 231, 68, 73, (61,61,0): 218, 68, 69, (61,62,0): 201, 66, 62, (61,63,0): 190, 63, 54, (61,64,0): 186, 64, 53, (61,65,0): 177, 59, 45, (61,66,0): 169, 56, 40, (61,67,0): 168, 57, 40, (61,68,0): 170, 57, 41, (61,69,0): 176, 56, 42, (61,70,0): 188, 58, 45, (61,71,0): 202, 59, 51, (61,72,0): 232, 73, 69, (61,73,0): 233, 63, 63, (61,74,0): 235, 61, 62, (61,75,0): 229, 55, 56, (61,76,0): 218, 50, 47, (61,77,0): 222, 65, 58, (61,78,0): 238, 90, 80, (61,79,0): 244, 104, 91, (61,80,0): 218, 80, 67, (61,81,0): 201, 65, 51, (61,82,0): 190, 53, 37, (61,83,0): 194, 54, 39, (61,84,0): 199, 57, 43, (61,85,0): 200, 57, 43, (61,86,0): 203, 55, 43, (61,87,0): 210, 56, 44, (61,88,0): 209, 48, 38, (61,89,0): 218, 54, 45, (61,90,0): 230, 59, 52, (61,91,0): 233, 59, 52, (61,92,0): 234, 52, 48, (61,93,0): 232, 47, 44, (61,94,0): 234, 45, 43, (61,95,0): 235, 45, 45, (61,96,0): 241, 52, 56, (61,97,0): 243, 52, 59, (61,98,0): 247, 51, 61, (61,99,0): 250, 50, 60, (61,100,0): 251, 49, 61, (61,101,0): 253, 49, 61, (61,102,0): 250, 48, 60, (61,103,0): 247, 49, 62, (61,104,0): 244, 49, 65, (61,105,0): 241, 50, 66, (61,106,0): 242, 53, 75, (61,107,0): 243, 53, 78, (61,108,0): 242, 49, 78, (61,109,0): 244, 46, 79, (61,110,0): 254, 49, 88, (61,111,0): 255, 62, 95, (61,112,0): 230, 51, 72, (61,113,0): 248, 78, 91, (61,114,0): 255, 95, 108, (61,115,0): 255, 92, 107, (61,116,0): 252, 84, 99, (61,117,0): 250, 79, 95, (61,118,0): 244, 68, 88, (61,119,0): 233, 56, 74, (61,120,0): 243, 65, 81, (61,121,0): 234, 58, 71, (61,122,0): 221, 50, 58, (61,123,0): 210, 47, 50, (61,124,0): 202, 50, 45, (61,125,0): 194, 56, 45, (61,126,0): 189, 59, 43, (61,127,0): 188, 58, 42, (61,128,0): 196, 58, 47, (61,129,0): 192, 50, 40, (61,130,0): 217, 74, 66, (61,131,0): 250, 107, 99, (61,132,0): 221, 76, 71, (61,133,0): 225, 80, 75, (61,134,0): 207, 59, 57, (61,135,0): 207, 59, 57, (61,136,0): 224, 76, 74, (61,137,0): 212, 64, 60, (61,138,0): 202, 55, 48, (61,139,0): 202, 55, 45, (61,140,0): 206, 60, 47, (61,141,0): 205, 60, 43, (61,142,0): 203, 58, 41, (61,143,0): 196, 59, 40, (61,144,0): 180, 59, 38, (61,145,0): 173, 58, 37, (61,146,0): 175, 60, 41, (61,147,0): 179, 62, 45, (61,148,0): 177, 57, 41, (61,149,0): 175, 51, 39, (61,150,0): 186, 58, 47, (61,151,0): 202, 68, 59, (61,152,0): 214, 71, 65, (61,153,0): 216, 67, 61, (61,154,0): 212, 55, 50, (61,155,0): 215, 50, 46, (61,156,0): 231, 59, 55, (61,157,0): 236, 58, 54, (61,158,0): 232, 50, 46, (61,159,0): 237, 50, 45, (61,160,0): 242, 44, 45, (61,161,0): 244, 44, 44, (61,162,0): 242, 46, 47, (61,163,0): 239, 51, 49, (61,164,0): 232, 55, 49, (61,165,0): 226, 58, 49, (61,166,0): 218, 60, 49, (61,167,0): 210, 62, 50, (61,168,0): 194, 54, 41, (61,169,0): 186, 52, 41, (61,170,0): 197, 66, 58, (61,171,0): 215, 88, 82, (61,172,0): 231, 106, 104, (61,173,0): 250, 124, 125, (61,174,0): 255, 134, 137, (61,175,0): 255, 127, 132, (61,176,0): 248, 117, 125, (61,177,0): 249, 119, 127, (61,178,0): 246, 123, 128, (61,179,0): 247, 122, 128, (61,180,0): 252, 114, 127, (61,181,0): 253, 105, 121, (61,182,0): 255, 94, 115, (61,183,0): 255, 89, 111, (61,184,0): 245, 79, 99, (61,185,0): 244, 75, 96, (61,186,0): 242, 64, 88, (61,187,0): 239, 70, 91, (61,188,0): 229, 85, 95, (61,189,0): 182, 83, 78, (61,190,0): 121, 84, 58, (61,191,0): 94, 96, 56, (61,192,0): 96, 115, 69, (61,193,0): 97, 124, 73, (61,194,0): 110, 129, 83, (61,195,0): 118, 134, 89, (61,196,0): 123, 136, 93, (61,197,0): 126, 139, 96, (61,198,0): 129, 144, 103, (61,199,0): 130, 151, 108, (61,200,0): 128, 156, 108, (61,201,0): 125, 159, 109, (61,202,0): 124, 164, 111, (61,203,0): 125, 168, 112, (61,204,0): 128, 169, 111, (61,205,0): 130, 170, 110, (61,206,0): 131, 169, 108, (61,207,0): 133, 169, 108, (61,208,0): 137, 170, 113, (61,209,0): 139, 173, 113, (61,210,0): 137, 175, 114, (61,211,0): 136, 178, 114, (61,212,0): 133, 178, 111, (61,213,0): 133, 180, 112, (61,214,0): 135, 182, 114, (61,215,0): 137, 184, 116, (61,216,0): 139, 181, 118, (61,217,0): 135, 173, 116, (61,218,0): 140, 166, 119, (61,219,0): 153, 169, 132, (61,220,0): 175, 181, 153, (61,221,0): 198, 196, 175, (61,222,0): 213, 206, 190, (61,223,0): 217, 210, 204, (61,224,0): 194, 194, 202, (61,225,0): 172, 178, 192, (61,226,0): 155, 161, 175, (62,0,0): 90, 75, 56, (62,1,0): 90, 75, 56, (62,2,0): 90, 75, 56, (62,3,0): 90, 75, 56, (62,4,0): 90, 75, 56, (62,5,0): 90, 75, 56, (62,6,0): 90, 75, 56, (62,7,0): 90, 75, 56, (62,8,0): 90, 75, 56, (62,9,0): 90, 75, 56, (62,10,0): 90, 75, 56, (62,11,0): 91, 76, 57, (62,12,0): 91, 76, 57, (62,13,0): 92, 77, 58, (62,14,0): 92, 77, 58, (62,15,0): 93, 76, 58, (62,16,0): 94, 75, 60, (62,17,0): 96, 74, 60, (62,18,0): 94, 75, 60, (62,19,0): 95, 76, 61, (62,20,0): 94, 77, 59, (62,21,0): 95, 78, 60, (62,22,0): 94, 79, 60, (62,23,0): 94, 79, 60, (62,24,0): 94, 79, 58, (62,25,0): 95, 80, 59, (62,26,0): 96, 79, 59, (62,27,0): 97, 80, 62, (62,28,0): 97, 80, 62, (62,29,0): 97, 80, 62, (62,30,0): 97, 80, 60, (62,31,0): 100, 78, 65, (62,32,0): 104, 75, 77, (62,33,0): 103, 75, 87, (62,34,0): 99, 78, 95, (62,35,0): 98, 84, 109, (62,36,0): 106, 97, 128, (62,37,0): 118, 112, 146, (62,38,0): 124, 118, 152, (62,39,0): 128, 115, 145, (62,40,0): 143, 117, 142, (62,41,0): 173, 128, 148, (62,42,0): 205, 134, 148, (62,43,0): 222, 127, 135, (62,44,0): 237, 113, 121, (62,45,0): 246, 101, 108, (62,46,0): 246, 82, 91, (62,47,0): 244, 62, 75, (62,48,0): 248, 47, 66, (62,49,0): 255, 55, 75, (62,50,0): 251, 65, 79, (62,51,0): 235, 64, 73, (62,52,0): 219, 63, 67, (62,53,0): 214, 66, 66, (62,54,0): 213, 67, 67, (62,55,0): 215, 65, 66, (62,56,0): 224, 65, 69, (62,57,0): 227, 64, 69, (62,58,0): 230, 63, 70, (62,59,0): 228, 65, 70, (62,60,0): 223, 67, 70, (62,61,0): 212, 66, 66, (62,62,0): 199, 64, 60, (62,63,0): 189, 62, 53, (62,64,0): 184, 62, 51, (62,65,0): 175, 57, 43, (62,66,0): 168, 55, 39, (62,67,0): 169, 58, 41, (62,68,0): 173, 60, 42, (62,69,0): 180, 60, 44, (62,70,0): 193, 61, 49, (62,71,0): 207, 63, 55, (62,72,0): 223, 61, 58, (62,73,0): 229, 57, 57, (62,74,0): 227, 48, 51, (62,75,0): 226, 47, 50, (62,76,0): 224, 52, 50, (62,77,0): 219, 57, 52, (62,78,0): 230, 77, 69, (62,79,0): 252, 108, 97, (62,80,0): 242, 104, 91, (62,81,0): 217, 81, 67, (62,82,0): 198, 60, 47, (62,83,0): 198, 58, 45, (62,84,0): 200, 58, 46, (62,85,0): 201, 55, 42, (62,86,0): 205, 54, 43, (62,87,0): 213, 56, 47, (62,88,0): 213, 52, 44, (62,89,0): 222, 55, 47, (62,90,0): 230, 57, 51, (62,91,0): 232, 54, 50, (62,92,0): 233, 49, 47, (62,93,0): 232, 47, 44, (62,94,0): 238, 49, 47, (62,95,0): 245, 49, 53, (62,96,0): 255, 50, 66, (62,97,0): 255, 48, 68, (62,98,0): 255, 45, 69, (62,99,0): 255, 43, 65, (62,100,0): 255, 38, 63, (62,101,0): 255, 35, 60, (62,102,0): 250, 32, 56, (62,103,0): 244, 32, 55, (62,104,0): 246, 39, 65, (62,105,0): 243, 43, 69, (62,106,0): 242, 47, 77, (62,107,0): 242, 49, 80, (62,108,0): 240, 44, 80, (62,109,0): 243, 42, 84, (62,110,0): 254, 51, 96, (62,111,0): 255, 66, 104, (62,112,0): 240, 67, 87, (62,113,0): 255, 95, 108, (62,114,0): 255, 103, 116, (62,115,0): 247, 85, 100, (62,116,0): 236, 74, 89, (62,117,0): 239, 74, 90, (62,118,0): 234, 65, 84, (62,119,0): 217, 49, 66, (62,120,0): 235, 64, 82, (62,121,0): 221, 55, 67, (62,122,0): 201, 45, 49, (62,123,0): 186, 40, 40, (62,124,0): 177, 46, 36, (62,125,0): 171, 56, 38, (62,126,0): 165, 63, 38, (62,127,0): 168, 64, 39, (62,128,0): 184, 63, 46, (62,129,0): 188, 58, 44, (62,130,0): 221, 89, 77, (62,131,0): 225, 93, 81, (62,132,0): 205, 71, 62, (62,133,0): 205, 68, 62, (62,134,0): 193, 54, 51, (62,135,0): 201, 59, 55, (62,136,0): 228, 85, 81, (62,137,0): 213, 70, 64, (62,138,0): 201, 57, 49, (62,139,0): 200, 56, 45, (62,140,0): 201, 58, 44, (62,141,0): 200, 57, 40, (62,142,0): 200, 57, 40, (62,143,0): 196, 61, 41, (62,144,0): 177, 63, 39, (62,145,0): 166, 60, 38, (62,146,0): 168, 59, 38, (62,147,0): 172, 61, 42, (62,148,0): 171, 55, 40, (62,149,0): 172, 51, 40, (62,150,0): 188, 61, 52, (62,151,0): 211, 76, 70, (62,152,0): 214, 71, 65, (62,153,0): 221, 69, 64, (62,154,0): 219, 57, 54, (62,155,0): 220, 51, 48, (62,156,0): 233, 55, 51, (62,157,0): 236, 53, 49, (62,158,0): 235, 48, 43, (62,159,0): 244, 49, 45, (62,160,0): 253, 44, 47, (62,161,0): 255, 43, 45, (62,162,0): 250, 46, 47, (62,163,0): 244, 49, 47, (62,164,0): 237, 52, 47, (62,165,0): 230, 56, 49, (62,166,0): 223, 59, 49, (62,167,0): 216, 62, 50, (62,168,0): 201, 57, 46, (62,169,0): 189, 51, 40, (62,170,0): 192, 59, 50, (62,171,0): 207, 78, 72, (62,172,0): 225, 97, 94, (62,173,0): 247, 121, 122, (62,174,0): 255, 136, 138, (62,175,0): 255, 131, 135, (62,176,0): 252, 121, 129, (62,177,0): 252, 122, 130, (62,178,0): 248, 124, 132, (62,179,0): 247, 122, 130, (62,180,0): 249, 111, 124, (62,181,0): 249, 101, 117, (62,182,0): 252, 90, 111, (62,183,0): 252, 86, 108, (62,184,0): 238, 75, 96, (62,185,0): 242, 74, 97, (62,186,0): 240, 64, 87, (62,187,0): 236, 69, 89, (62,188,0): 225, 84, 93, (62,189,0): 174, 77, 71, (62,190,0): 112, 77, 49, (62,191,0): 92, 94, 54, (62,192,0): 95, 114, 68, (62,193,0): 102, 126, 78, (62,194,0): 117, 136, 91, (62,195,0): 127, 142, 99, (62,196,0): 132, 144, 104, (62,197,0): 134, 146, 106, (62,198,0): 136, 151, 110, (62,199,0): 137, 158, 115, (62,200,0): 136, 164, 116, (62,201,0): 132, 166, 116, (62,202,0): 127, 167, 114, (62,203,0): 125, 168, 112, (62,204,0): 127, 168, 110, (62,205,0): 129, 169, 109, (62,206,0): 131, 169, 108, (62,207,0): 134, 168, 108, (62,208,0): 136, 167, 110, (62,209,0): 138, 169, 110, (62,210,0): 136, 172, 111, (62,211,0): 134, 174, 111, (62,212,0): 130, 175, 108, (62,213,0): 130, 177, 107, (62,214,0): 131, 181, 110, (62,215,0): 133, 183, 114, (62,216,0): 135, 179, 116, (62,217,0): 134, 173, 116, (62,218,0): 140, 168, 119, (62,219,0): 155, 173, 133, (62,220,0): 176, 185, 154, (62,221,0): 199, 199, 175, (62,222,0): 214, 207, 189, (62,223,0): 215, 210, 204, (62,224,0): 188, 192, 201, (62,225,0): 165, 174, 189, (62,226,0): 147, 156, 171, (63,0,0): 91, 74, 56, (63,1,0): 90, 75, 56, (63,2,0): 91, 74, 56, (63,3,0): 90, 75, 56, (63,4,0): 91, 74, 56, (63,5,0): 90, 75, 56, (63,6,0): 91, 74, 56, (63,7,0): 90, 75, 56, (63,8,0): 91, 74, 56, (63,9,0): 90, 75, 56, (63,10,0): 91, 74, 56, (63,11,0): 91, 76, 57, (63,12,0): 92, 75, 57, (63,13,0): 92, 77, 58, (63,14,0): 93, 76, 58, (63,15,0): 93, 76, 58, (63,16,0): 94, 75, 60, (63,17,0): 94, 75, 60, (63,18,0): 94, 75, 60, (63,19,0): 94, 77, 61, (63,20,0): 94, 77, 61, (63,21,0): 94, 79, 60, (63,22,0): 94, 79, 60, (63,23,0): 92, 79, 60, (63,24,0): 96, 81, 62, (63,25,0): 97, 82, 61, (63,26,0): 97, 82, 63, (63,27,0): 98, 81, 63, (63,28,0): 98, 81, 63, (63,29,0): 97, 80, 62, (63,30,0): 97, 79, 59, (63,31,0): 98, 76, 63, (63,32,0): 107, 77, 75, (63,33,0): 106, 76, 84, (63,34,0): 101, 79, 92, (63,35,0): 100, 87, 107, (63,36,0): 107, 101, 127, (63,37,0): 120, 117, 148, (63,38,0): 125, 124, 156, (63,39,0): 127, 120, 151, (63,40,0): 145, 122, 148, (63,41,0): 171, 129, 149, (63,42,0): 198, 132, 144, (63,43,0): 217, 126, 133, (63,44,0): 238, 117, 122, (63,45,0): 252, 109, 111, (63,46,0): 253, 90, 91, (63,47,0): 249, 70, 76, (63,48,0): 247, 52, 69, (63,49,0): 255, 58, 78, (63,50,0): 251, 64, 81, (63,51,0): 238, 63, 76, (63,52,0): 229, 65, 74, (63,53,0): 225, 69, 73, (63,54,0): 221, 66, 70, (63,55,0): 215, 60, 64, (63,56,0): 222, 63, 68, (63,57,0): 223, 62, 67, (63,58,0): 225, 62, 67, (63,59,0): 222, 64, 65, (63,60,0): 218, 66, 65, (63,61,0): 208, 65, 61, (63,62,0): 197, 62, 56, (63,63,0): 188, 61, 52, (63,64,0): 181, 63, 49, (63,65,0): 172, 59, 43, (63,66,0): 169, 56, 40, (63,67,0): 173, 60, 44, (63,68,0): 180, 63, 46, (63,69,0): 187, 64, 49, (63,70,0): 202, 65, 55, (63,71,0): 216, 67, 61, (63,72,0): 217, 55, 52, (63,73,0): 225, 56, 53, (63,74,0): 222, 46, 46, (63,75,0): 226, 51, 48, (63,76,0): 230, 58, 54, (63,77,0): 211, 48, 39, (63,78,0): 207, 53, 41, (63,79,0): 235, 85, 71, (63,80,0): 255, 119, 106, (63,81,0): 235, 91, 80, (63,82,0): 209, 67, 55, (63,83,0): 202, 60, 48, (63,84,0): 203, 59, 48, (63,85,0): 201, 55, 42, (63,86,0): 205, 54, 43, (63,87,0): 212, 58, 48, (63,88,0): 218, 55, 48, (63,89,0): 223, 56, 50, (63,90,0): 229, 54, 51, (63,91,0): 231, 51, 50, (63,92,0): 234, 48, 49, (63,93,0): 237, 49, 50, (63,94,0): 244, 51, 54, (63,95,0): 252, 53, 60, (63,96,0): 252, 37, 53, (63,97,0): 255, 35, 56, (63,98,0): 255, 34, 56, (63,99,0): 255, 33, 56, (63,100,0): 255, 32, 55, (63,101,0): 255, 31, 53, (63,102,0): 251, 29, 52, (63,103,0): 246, 30, 53, (63,104,0): 237, 28, 50, (63,105,0): 236, 32, 57, (63,106,0): 237, 39, 66, (63,107,0): 238, 41, 71, (63,108,0): 237, 39, 74, (63,109,0): 239, 41, 77, (63,110,0): 253, 53, 92, (63,111,0): 255, 70, 104, (63,112,0): 255, 96, 115, (63,113,0): 254, 94, 106, (63,114,0): 247, 85, 98, (63,115,0): 242, 80, 93, (63,116,0): 242, 80, 93, (63,117,0): 240, 75, 89, (63,118,0): 227, 62, 76, (63,119,0): 210, 48, 59, (63,120,0): 218, 61, 70, (63,121,0): 205, 54, 59, (63,122,0): 187, 47, 46, (63,123,0): 175, 46, 40, (63,124,0): 168, 52, 39, (63,125,0): 162, 59, 40, (63,126,0): 155, 63, 38, (63,127,0): 157, 61, 37, (63,128,0): 170, 57, 39, (63,129,0): 178, 56, 43, (63,130,0): 210, 86, 74, (63,131,0): 187, 59, 50, (63,132,0): 196, 63, 56, (63,133,0): 190, 52, 49, (63,134,0): 189, 50, 47, (63,135,0): 206, 67, 64, (63,136,0): 229, 87, 83, (63,137,0): 213, 72, 65, (63,138,0): 200, 57, 49, (63,139,0): 196, 54, 42, (63,140,0): 197, 54, 40, (63,141,0): 196, 53, 37, (63,142,0): 198, 53, 36, (63,143,0): 195, 58, 40, (63,144,0): 177, 60, 40, (63,145,0): 167, 58, 38, (63,146,0): 168, 55, 37, (63,147,0): 173, 57, 42, (63,148,0): 172, 52, 38, (63,149,0): 175, 49, 37, (63,150,0): 194, 63, 53, (63,151,0): 219, 82, 74, (63,152,0): 217, 73, 65, (63,153,0): 225, 72, 66, (63,154,0): 222, 59, 54, (63,155,0): 222, 50, 46, (63,156,0): 234, 52, 49, (63,157,0): 237, 49, 47, (63,158,0): 239, 45, 43, (63,159,0): 252, 50, 50, (63,160,0): 254, 44, 47, (63,161,0): 253, 43, 46, (63,162,0): 249, 43, 45, (63,163,0): 243, 43, 43, (63,164,0): 237, 45, 42, (63,165,0): 230, 49, 42, (63,166,0): 223, 52, 44, (63,167,0): 214, 56, 44, (63,168,0): 209, 61, 49, (63,169,0): 191, 50, 40, (63,170,0): 188, 55, 46, (63,171,0): 200, 73, 66, (63,172,0): 217, 92, 88, (63,173,0): 243, 119, 119, (63,174,0): 255, 137, 139, (63,175,0): 255, 134, 138, (63,176,0): 253, 126, 133, (63,177,0): 255, 125, 133, (63,178,0): 252, 125, 134, (63,179,0): 253, 119, 130, (63,180,0): 252, 107, 122, (63,181,0): 249, 96, 114, (63,182,0): 249, 87, 108, (63,183,0): 249, 83, 105, (63,184,0): 234, 68, 92, (63,185,0): 240, 71, 94, (63,186,0): 236, 59, 85, (63,187,0): 228, 65, 86, (63,188,0): 215, 81, 90, (63,189,0): 162, 73, 67, (63,190,0): 102, 70, 45, (63,191,0): 88, 93, 53, (63,192,0): 90, 109, 63, (63,193,0): 98, 125, 74, (63,194,0): 116, 140, 92, (63,195,0): 128, 150, 103, (63,196,0): 135, 152, 108, (63,197,0): 136, 155, 110, (63,198,0): 138, 160, 114, (63,199,0): 139, 165, 118, (63,200,0): 140, 172, 122, (63,201,0): 134, 171, 119, (63,202,0): 129, 170, 114, (63,203,0): 126, 167, 109, (63,204,0): 124, 165, 105, (63,205,0): 125, 165, 103, (63,206,0): 129, 165, 103, (63,207,0): 131, 165, 105, (63,208,0): 131, 164, 107, (63,209,0): 133, 166, 109, (63,210,0): 132, 170, 109, (63,211,0): 130, 172, 108, (63,212,0): 128, 173, 104, (63,213,0): 128, 175, 105, (63,214,0): 129, 179, 106, (63,215,0): 132, 182, 111, (63,216,0): 137, 182, 115, (63,217,0): 136, 176, 114, (63,218,0): 140, 173, 120, (63,219,0): 153, 176, 132, (63,220,0): 172, 188, 152, (63,221,0): 189, 198, 169, (63,222,0): 201, 203, 181, (63,223,0): 203, 205, 194, (63,224,0): 182, 191, 196, (63,225,0): 159, 171, 183, (63,226,0): 140, 152, 164, (64,0,0): 93, 75, 55, (64,1,0): 92, 75, 55, (64,2,0): 93, 75, 55, (64,3,0): 92, 75, 55, (64,4,0): 93, 75, 55, (64,5,0): 92, 75, 55, (64,6,0): 93, 75, 55, (64,7,0): 92, 75, 55, (64,8,0): 94, 76, 56, (64,9,0): 93, 76, 56, (64,10,0): 94, 76, 56, (64,11,0): 93, 76, 56, (64,12,0): 94, 76, 56, (64,13,0): 93, 76, 56, (64,14,0): 94, 76, 56, (64,15,0): 93, 76, 58, (64,16,0): 93, 74, 60, (64,17,0): 93, 75, 61, (64,18,0): 94, 76, 62, (64,19,0): 92, 76, 60, (64,20,0): 92, 76, 60, (64,21,0): 91, 78, 61, (64,22,0): 93, 80, 63, (64,23,0): 94, 83, 65, (64,24,0): 96, 83, 66, (64,25,0): 95, 82, 63, (64,26,0): 96, 80, 64, (64,27,0): 98, 81, 65, (64,28,0): 99, 82, 66, (64,29,0): 100, 81, 66, (64,30,0): 100, 78, 65, (64,31,0): 100, 76, 66, (64,32,0): 107, 75, 76, (64,33,0): 104, 75, 80, (64,34,0): 101, 79, 91, (64,35,0): 102, 91, 108, (64,36,0): 110, 107, 134, (64,37,0): 120, 123, 156, (64,38,0): 129, 133, 170, (64,39,0): 137, 137, 173, (64,40,0): 143, 132, 166, (64,41,0): 165, 136, 166, (64,42,0): 190, 136, 159, (64,43,0): 208, 130, 144, (64,44,0): 225, 121, 128, (64,45,0): 240, 114, 115, (64,46,0): 249, 106, 102, (64,47,0): 255, 97, 96, (64,48,0): 244, 77, 87, (64,49,0): 237, 65, 79, (64,50,0): 231, 61, 74, (64,51,0): 233, 66, 76, (64,52,0): 235, 69, 79, (64,53,0): 231, 65, 75, (64,54,0): 228, 61, 69, (64,55,0): 229, 62, 70, (64,56,0): 226, 59, 66, (64,57,0): 224, 59, 63, (64,58,0): 221, 58, 61, (64,59,0): 217, 59, 58, (64,60,0): 212, 60, 57, (64,61,0): 204, 59, 54, (64,62,0): 196, 58, 48, (64,63,0): 185, 57, 44, (64,64,0): 167, 54, 38, (64,65,0): 175, 65, 48, (64,66,0): 173, 60, 44, (64,67,0): 172, 54, 40, (64,68,0): 191, 65, 53, (64,69,0): 204, 70, 61, (64,70,0): 204, 61, 53, (64,71,0): 208, 55, 50, (64,72,0): 218, 56, 53, (64,73,0): 220, 55, 49, (64,74,0): 222, 53, 46, (64,75,0): 222, 54, 45, (64,76,0): 222, 56, 42, (64,77,0): 221, 60, 42, (64,78,0): 215, 58, 39, (64,79,0): 211, 54, 37, (64,80,0): 217, 59, 48, (64,81,0): 240, 83, 76, (64,82,0): 242, 90, 79, (64,83,0): 217, 69, 57, (64,84,0): 199, 56, 42, (64,85,0): 205, 62, 46, (64,86,0): 212, 66, 51, (64,87,0): 210, 58, 45, (64,88,0): 211, 50, 42, (64,89,0): 240, 71, 66, (64,90,0): 225, 47, 47, (64,91,0): 239, 54, 59, (64,92,0): 244, 55, 62, (64,93,0): 239, 45, 56, (64,94,0): 255, 66, 77, (64,95,0): 240, 40, 51, (64,96,0): 250, 38, 50, (64,97,0): 255, 41, 50, (64,98,0): 255, 41, 50, (64,99,0): 249, 29, 39, (64,100,0): 253, 34, 42, (64,101,0): 255, 39, 47, (64,102,0): 254, 39, 47, (64,103,0): 240, 29, 38, (64,104,0): 238, 31, 41, (64,105,0): 248, 44, 55, (64,106,0): 233, 33, 46, (64,107,0): 235, 38, 55, (64,108,0): 240, 44, 64, (64,109,0): 227, 33, 57, (64,110,0): 255, 86, 112, (64,111,0): 229, 43, 66, (64,112,0): 255, 92, 108, (64,113,0): 255, 94, 105, (64,114,0): 255, 89, 99, (64,115,0): 251, 84, 92, (64,116,0): 246, 79, 87, (64,117,0): 236, 71, 77, (64,118,0): 222, 62, 64, (64,119,0): 208, 54, 52, (64,120,0): 204, 61, 55, (64,121,0): 197, 64, 55, (64,122,0): 184, 62, 49, (64,123,0): 167, 54, 38, (64,124,0): 156, 49, 33, (64,125,0): 154, 53, 35, (64,126,0): 157, 58, 39, (64,127,0): 160, 59, 41, (64,128,0): 167, 56, 45, (64,129,0): 174, 55, 47, (64,130,0): 194, 69, 63, (64,131,0): 191, 59, 55, (64,132,0): 189, 51, 49, (64,133,0): 196, 54, 52, (64,134,0): 197, 53, 52, (64,135,0): 212, 68, 67, (64,136,0): 219, 76, 72, (64,137,0): 218, 75, 69, (64,138,0): 209, 68, 59, (64,139,0): 200, 58, 48, (64,140,0): 196, 52, 41, (64,141,0): 199, 53, 40, (64,142,0): 203, 52, 41, (64,143,0): 197, 53, 42, (64,144,0): 188, 60, 47, (64,145,0): 179, 57, 44, (64,146,0): 173, 47, 35, (64,147,0): 171, 40, 30, (64,148,0): 179, 45, 36, (64,149,0): 195, 57, 47, (64,150,0): 210, 67, 59, (64,151,0): 216, 72, 63, (64,152,0): 228, 80, 70, (64,153,0): 223, 69, 61, (64,154,0): 218, 55, 48, (64,155,0): 221, 48, 42, (64,156,0): 231, 48, 44, (64,157,0): 242, 50, 49, (64,158,0): 249, 49, 51, (64,159,0): 253, 49, 52, (64,160,0): 247, 47, 49, (64,161,0): 246, 48, 49, (64,162,0): 246, 48, 49, (64,163,0): 243, 48, 46, (64,164,0): 242, 48, 46, (64,165,0): 237, 50, 45, (64,166,0): 230, 53, 45, (64,167,0): 221, 57, 47, (64,168,0): 213, 61, 48, (64,169,0): 190, 50, 37, (64,170,0): 192, 62, 49, (64,171,0): 185, 61, 51, (64,172,0): 214, 95, 89, (64,173,0): 233, 115, 113, (64,174,0): 255, 143, 143, (64,175,0): 251, 132, 134, (64,176,0): 255, 135, 140, (64,177,0): 255, 132, 141, (64,178,0): 255, 120, 135, (64,179,0): 253, 104, 123, (64,180,0): 252, 95, 116, (64,181,0): 254, 92, 115, (64,182,0): 250, 86, 110, (64,183,0): 243, 77, 101, (64,184,0): 242, 72, 99, (64,185,0): 235, 60, 89, (64,186,0): 237, 62, 91, (64,187,0): 224, 66, 89, (64,188,0): 216, 94, 105, (64,189,0): 141, 63, 59, (64,190,0): 92, 67, 45, (64,191,0): 83, 91, 54, (64,192,0): 92, 116, 66, (64,193,0): 103, 134, 77, (64,194,0): 119, 150, 93, (64,195,0): 125, 156, 99, (64,196,0): 127, 157, 103, (64,197,0): 128, 161, 106, (64,198,0): 131, 166, 110, (64,199,0): 130, 168, 111, (64,200,0): 128, 167, 110, (64,201,0): 127, 166, 109, (64,202,0): 126, 165, 108, (64,203,0): 125, 165, 105, (64,204,0): 124, 164, 104, (64,205,0): 125, 163, 102, (64,206,0): 127, 163, 101, (64,207,0): 127, 163, 102, (64,208,0): 127, 165, 108, (64,209,0): 127, 166, 109, (64,210,0): 129, 171, 108, (64,211,0): 127, 172, 107, (64,212,0): 126, 173, 103, (64,213,0): 127, 174, 102, (64,214,0): 129, 177, 103, (64,215,0): 131, 179, 105, (64,216,0): 135, 181, 109, (64,217,0): 139, 180, 114, (64,218,0): 139, 177, 118, (64,219,0): 142, 174, 124, (64,220,0): 153, 180, 137, (64,221,0): 167, 189, 153, (64,222,0): 175, 194, 164, (64,223,0): 178, 193, 174, (64,224,0): 163, 175, 173, (64,225,0): 141, 152, 158, (64,226,0): 124, 135, 141, (65,0,0): 93, 75, 55, (65,1,0): 93, 75, 55, (65,2,0): 93, 75, 55, (65,3,0): 93, 75, 55, (65,4,0): 93, 75, 55, (65,5,0): 93, 75, 55, (65,6,0): 93, 75, 55, (65,7,0): 93, 75, 55, (65,8,0): 94, 76, 56, (65,9,0): 94, 76, 56, (65,10,0): 94, 76, 56, (65,11,0): 94, 76, 56, (65,12,0): 94, 76, 56, (65,13,0): 94, 76, 56, (65,14,0): 94, 76, 56, (65,15,0): 94, 75, 58, (65,16,0): 92, 75, 59, (65,17,0): 94, 76, 62, (65,18,0): 95, 77, 63, (65,19,0): 94, 78, 62, (65,20,0): 91, 78, 61, (65,21,0): 91, 78, 61, (65,22,0): 92, 81, 63, (65,23,0): 94, 82, 66, (65,24,0): 95, 83, 67, (65,25,0): 93, 81, 65, (65,26,0): 93, 79, 66, (65,27,0): 95, 79, 66, (65,28,0): 96, 78, 68, (65,29,0): 98, 80, 70, (65,30,0): 99, 79, 72, (65,31,0): 101, 77, 73, (65,32,0): 105, 76, 78, (65,33,0): 103, 78, 84, (65,34,0): 101, 83, 97, (65,35,0): 103, 95, 116, (65,36,0): 110, 111, 142, (65,37,0): 121, 126, 166, (65,38,0): 128, 136, 183, (65,39,0): 135, 139, 187, (65,40,0): 158, 150, 199, (65,41,0): 163, 140, 182, (65,42,0): 171, 127, 160, (65,43,0): 185, 120, 142, (65,44,0): 211, 121, 133, (65,45,0): 234, 124, 125, (65,46,0): 244, 117, 111, (65,47,0): 244, 105, 100, (65,48,0): 245, 94, 99, (65,49,0): 238, 81, 90, (65,50,0): 233, 71, 82, (65,51,0): 238, 74, 83, (65,52,0): 243, 76, 86, (65,53,0): 242, 71, 80, (65,54,0): 238, 64, 74, (65,55,0): 234, 60, 69, (65,56,0): 228, 57, 63, (65,57,0): 224, 58, 60, (65,58,0): 220, 57, 58, (65,59,0): 215, 60, 56, (65,60,0): 210, 61, 55, (65,61,0): 203, 60, 52, (65,62,0): 196, 58, 47, (65,63,0): 186, 59, 44, (65,64,0): 171, 60, 43, (65,65,0): 170, 63, 45, (65,66,0): 169, 56, 40, (65,67,0): 178, 58, 44, (65,68,0): 193, 65, 54, (65,69,0): 197, 60, 52, (65,70,0): 199, 54, 49, (65,71,0): 212, 60, 55, (65,72,0): 210, 53, 48, (65,73,0): 214, 53, 45, (65,74,0): 215, 53, 42, (65,75,0): 216, 52, 40, (65,76,0): 217, 56, 38, (65,77,0): 219, 58, 38, (65,78,0): 219, 59, 37, (65,79,0): 218, 57, 39, (65,80,0): 221, 54, 46, (65,81,0): 230, 65, 59, (65,82,0): 235, 77, 68, (65,83,0): 225, 73, 60, (65,84,0): 208, 62, 47, (65,85,0): 199, 56, 40, (65,86,0): 202, 56, 41, (65,87,0): 211, 59, 46, (65,88,0): 221, 58, 51, (65,89,0): 245, 73, 69, (65,90,0): 228, 48, 49, (65,91,0): 241, 55, 60, (65,92,0): 246, 54, 65, (65,93,0): 241, 46, 60, (65,94,0): 255, 63, 77, (65,95,0): 237, 37, 50, (65,96,0): 243, 36, 44, (65,97,0): 247, 37, 40, (65,98,0): 251, 41, 44, (65,99,0): 253, 43, 44, (65,100,0): 252, 42, 43, (65,101,0): 248, 40, 40, (65,102,0): 246, 40, 40, (65,103,0): 247, 43, 44, (65,104,0): 239, 36, 39, (65,105,0): 237, 37, 40, (65,106,0): 234, 37, 44, (65,107,0): 253, 59, 68, (65,108,0): 216, 26, 38, (65,109,0): 238, 50, 65, (65,110,0): 250, 63, 80, (65,111,0): 213, 35, 51, (65,112,0): 255, 104, 117, (65,113,0): 255, 97, 106, (65,114,0): 255, 90, 97, (65,115,0): 253, 86, 93, (65,116,0): 247, 78, 83, (65,117,0): 231, 65, 67, (65,118,0): 218, 59, 56, (65,119,0): 210, 61, 54, (65,120,0): 193, 55, 44, (65,121,0): 194, 66, 53, (65,122,0): 188, 71, 54, (65,123,0): 172, 61, 44, (65,124,0): 154, 47, 31, (65,125,0): 147, 39, 26, (65,126,0): 146, 38, 25, (65,127,0): 147, 39, 27, (65,128,0): 158, 45, 37, (65,129,0): 176, 58, 54, (65,130,0): 209, 84, 80, (65,131,0): 206, 72, 71, (65,132,0): 195, 53, 52, (65,133,0): 198, 52, 53, (65,134,0): 209, 61, 61, (65,135,0): 235, 87, 85, (65,136,0): 216, 71, 66, (65,137,0): 214, 71, 63, (65,138,0): 208, 65, 57, (65,139,0): 199, 57, 47, (65,140,0): 198, 51, 41, (65,141,0): 202, 54, 44, (65,142,0): 208, 55, 47, (65,143,0): 206, 55, 48, (65,144,0): 199, 61, 51, (65,145,0): 194, 57, 49, (65,146,0): 194, 53, 46, (65,147,0): 195, 50, 45, (65,148,0): 201, 52, 46, (65,149,0): 209, 56, 51, (65,150,0): 216, 63, 57, (65,151,0): 222, 69, 61, (65,152,0): 228, 74, 64, (65,153,0): 222, 65, 56, (65,154,0): 218, 54, 45, (65,155,0): 221, 48, 42, (65,156,0): 231, 48, 44, (65,157,0): 242, 50, 49, (65,158,0): 251, 48, 51, (65,159,0): 251, 48, 51, (65,160,0): 244, 48, 50, (65,161,0): 243, 49, 50, (65,162,0): 244, 48, 49, (65,163,0): 243, 47, 48, (65,164,0): 243, 48, 46, (65,165,0): 238, 49, 45, (65,166,0): 231, 52, 45, (65,167,0): 223, 57, 45, (65,168,0): 215, 61, 49, (65,169,0): 191, 51, 36, (65,170,0): 190, 60, 47, (65,171,0): 183, 61, 50, (65,172,0): 211, 94, 87, (65,173,0): 233, 118, 115, (65,174,0): 255, 144, 144, (65,175,0): 249, 133, 136, (65,176,0): 253, 134, 140, (65,177,0): 255, 128, 138, (65,178,0): 255, 115, 132, (65,179,0): 255, 100, 121, (65,180,0): 255, 92, 116, (65,181,0): 255, 89, 114, (65,182,0): 252, 84, 110, (65,183,0): 246, 76, 103, (65,184,0): 243, 68, 97, (65,185,0): 236, 61, 90, (65,186,0): 236, 66, 95, (65,187,0): 223, 74, 96, (65,188,0): 194, 83, 92, (65,189,0): 128, 61, 55, (65,190,0): 88, 67, 46, (65,191,0): 82, 92, 57, (65,192,0): 91, 118, 67, (65,193,0): 101, 135, 75, (65,194,0): 115, 149, 89, (65,195,0): 120, 156, 95, (65,196,0): 119, 157, 98, (65,197,0): 123, 161, 102, (65,198,0): 125, 165, 105, (65,199,0): 125, 166, 106, (65,200,0): 124, 165, 105, (65,201,0): 124, 165, 105, (65,202,0): 124, 164, 104, (65,203,0): 123, 163, 101, (65,204,0): 123, 161, 100, (65,205,0): 123, 161, 100, (65,206,0): 125, 161, 99, (65,207,0): 126, 162, 101, (65,208,0): 124, 163, 106, (65,209,0): 125, 166, 108, (65,210,0): 125, 169, 108, (65,211,0): 125, 170, 105, (65,212,0): 124, 171, 101, (65,213,0): 125, 173, 99, (65,214,0): 127, 175, 99, (65,215,0): 130, 177, 99, (65,216,0): 133, 176, 104, (65,217,0): 135, 178, 107, (65,218,0): 136, 175, 112, (65,219,0): 136, 171, 115, (65,220,0): 139, 171, 124, (65,221,0): 144, 172, 132, (65,222,0): 144, 170, 135, (65,223,0): 140, 162, 139, (65,224,0): 118, 133, 126, (65,225,0): 99, 111, 111, (65,226,0): 83, 95, 95, (66,0,0): 93, 76, 56, (66,1,0): 93, 76, 56, (66,2,0): 93, 76, 56, (66,3,0): 93, 76, 56, (66,4,0): 93, 76, 56, (66,5,0): 93, 76, 56, (66,6,0): 93, 76, 56, (66,7,0): 93, 76, 56, (66,8,0): 93, 76, 56, (66,9,0): 93, 76, 56, (66,10,0): 93, 76, 56, (66,11,0): 93, 76, 56, (66,12,0): 93, 76, 56, (66,13,0): 93, 76, 56, (66,14,0): 93, 76, 56, (66,15,0): 93, 76, 56, (66,16,0): 94, 75, 58, (66,17,0): 95, 78, 62, (66,18,0): 97, 80, 64, (66,19,0): 96, 80, 64, (66,20,0): 93, 80, 63, (66,21,0): 92, 79, 62, (66,22,0): 91, 79, 63, (66,23,0): 91, 82, 67, (66,24,0): 91, 81, 69, (66,25,0): 91, 81, 71, (66,26,0): 92, 79, 71, (66,27,0): 92, 79, 73, (66,28,0): 95, 80, 77, (66,29,0): 99, 81, 79, (66,30,0): 102, 84, 84, (66,31,0): 103, 84, 86, (66,32,0): 103, 84, 88, (66,33,0): 103, 86, 96, (66,34,0): 104, 92, 112, (66,35,0): 108, 105, 134, (66,36,0): 115, 118, 161, (66,37,0): 124, 131, 185, (66,38,0): 130, 138, 201, (66,39,0): 138, 142, 206, (66,40,0): 152, 146, 210, (66,41,0): 160, 139, 196, (66,42,0): 170, 131, 178, (66,43,0): 185, 125, 159, (66,44,0): 207, 128, 147, (66,45,0): 228, 131, 138, (66,46,0): 238, 126, 122, (66,47,0): 242, 115, 109, (66,48,0): 248, 102, 105, (66,49,0): 242, 85, 92, (66,50,0): 234, 73, 81, (66,51,0): 237, 72, 79, (66,52,0): 243, 73, 82, (66,53,0): 245, 71, 81, (66,54,0): 242, 65, 75, (66,55,0): 238, 61, 69, (66,56,0): 228, 55, 61, (66,57,0): 224, 55, 58, (66,58,0): 219, 56, 57, (66,59,0): 213, 60, 55, (66,60,0): 207, 63, 55, (66,61,0): 201, 63, 52, (66,62,0): 193, 61, 48, (66,63,0): 184, 61, 45, (66,64,0): 174, 61, 45, (66,65,0): 170, 60, 43, (66,66,0): 171, 58, 44, (66,67,0): 184, 66, 54, (66,68,0): 199, 72, 63, (66,69,0): 192, 59, 50, (66,70,0): 187, 48, 41, (66,71,0): 202, 58, 50, (66,72,0): 205, 54, 47, (66,73,0): 208, 54, 46, (66,74,0): 213, 55, 44, (66,75,0): 216, 56, 44, (66,76,0): 217, 55, 40, (66,77,0): 217, 56, 38, (66,78,0): 220, 57, 38, (66,79,0): 224, 58, 42, (66,80,0): 221, 52, 45, (66,81,0): 219, 52, 46, (66,82,0): 226, 65, 57, (66,83,0): 233, 79, 67, (66,84,0): 222, 72, 58, (66,85,0): 200, 53, 37, (66,86,0): 200, 50, 35, (66,87,0): 217, 64, 50, (66,88,0): 226, 62, 53, (66,89,0): 245, 72, 68, (66,90,0): 231, 48, 50, (66,91,0): 242, 53, 59, (66,92,0): 248, 54, 63, (66,93,0): 245, 49, 61, (66,94,0): 255, 66, 80, (66,95,0): 244, 46, 59, (66,96,0): 240, 41, 48, (66,97,0): 235, 35, 38, (66,98,0): 236, 36, 39, (66,99,0): 249, 49, 51, (66,100,0): 245, 45, 47, (66,101,0): 239, 39, 39, (66,102,0): 236, 38, 37, (66,103,0): 245, 49, 50, (66,104,0): 234, 40, 41, (66,105,0): 245, 55, 57, (66,106,0): 231, 42, 48, (66,107,0): 225, 40, 48, (66,108,0): 234, 50, 60, (66,109,0): 255, 81, 93, (66,110,0): 237, 59, 73, (66,111,0): 255, 89, 101, (66,112,0): 255, 94, 102, (66,113,0): 242, 85, 92, (66,114,0): 239, 78, 84, (66,115,0): 241, 76, 82, (66,116,0): 235, 69, 73, (66,117,0): 222, 58, 59, (66,118,0): 214, 55, 52, (66,119,0): 214, 62, 57, (66,120,0): 194, 53, 44, (66,121,0): 194, 62, 50, (66,122,0): 189, 65, 53, (66,123,0): 181, 60, 49, (66,124,0): 173, 55, 45, (66,125,0): 168, 49, 41, (66,126,0): 162, 43, 35, (66,127,0): 157, 38, 32, (66,128,0): 155, 36, 30, (66,129,0): 169, 47, 42, (66,130,0): 199, 69, 67, (66,131,0): 194, 58, 58, (66,132,0): 188, 44, 44, (66,133,0): 200, 51, 53, (66,134,0): 215, 65, 66, (66,135,0): 244, 94, 93, (66,136,0): 208, 63, 58, (66,137,0): 210, 67, 59, (66,138,0): 208, 65, 57, (66,139,0): 203, 61, 51, (66,140,0): 204, 57, 47, (66,141,0): 212, 61, 52, (66,142,0): 218, 64, 56, (66,143,0): 219, 64, 59, (66,144,0): 219, 64, 60, (66,145,0): 216, 61, 59, (66,146,0): 221, 62, 59, (66,147,0): 227, 65, 63, (66,148,0): 228, 62, 62, (66,149,0): 224, 58, 58, (66,150,0): 227, 63, 61, (66,151,0): 235, 73, 68, (66,152,0): 224, 66, 57, (66,153,0): 221, 60, 52, (66,154,0): 217, 53, 44, (66,155,0): 221, 50, 43, (66,156,0): 231, 49, 45, (66,157,0): 240, 51, 49, (66,158,0): 245, 49, 50, (66,159,0): 248, 48, 50, (66,160,0): 244, 48, 50, (66,161,0): 244, 48, 50, (66,162,0): 244, 48, 49, (66,163,0): 243, 47, 48, (66,164,0): 243, 48, 46, (66,165,0): 238, 49, 45, (66,166,0): 231, 52, 45, (66,167,0): 223, 57, 45, (66,168,0): 216, 62, 50, (66,169,0): 192, 52, 37, (66,170,0): 186, 56, 43, (66,171,0): 181, 59, 48, (66,172,0): 208, 91, 84, (66,173,0): 237, 122, 119, (66,174,0): 255, 147, 146, (66,175,0): 251, 135, 138, (66,176,0): 253, 129, 137, (66,177,0): 255, 124, 137, (66,178,0): 255, 113, 129, (66,179,0): 253, 100, 120, (66,180,0): 254, 90, 114, (66,181,0): 255, 85, 111, (66,182,0): 252, 79, 107, (66,183,0): 250, 73, 102, (66,184,0): 244, 65, 95, (66,185,0): 238, 63, 92, (66,186,0): 234, 71, 98, (66,187,0): 223, 84, 103, (66,188,0): 165, 64, 72, (66,189,0): 117, 56, 51, (66,190,0): 88, 70, 50, (66,191,0): 85, 95, 60, (66,192,0): 95, 119, 69, (66,193,0): 102, 135, 78, (66,194,0): 114, 147, 90, (66,195,0): 117, 152, 94, (66,196,0): 116, 154, 95, (66,197,0): 120, 158, 99, (66,198,0): 123, 163, 103, (66,199,0): 123, 163, 103, (66,200,0): 121, 162, 102, (66,201,0): 121, 162, 102, (66,202,0): 121, 161, 99, (66,203,0): 120, 160, 98, (66,204,0): 121, 159, 98, (66,205,0): 121, 160, 97, (66,206,0): 124, 160, 98, (66,207,0): 122, 160, 99, (66,208,0): 122, 162, 102, (66,209,0): 123, 164, 104, (66,210,0): 123, 167, 104, (66,211,0): 123, 168, 101, (66,212,0): 123, 169, 97, (66,213,0): 123, 169, 96, (66,214,0): 125, 171, 96, (66,215,0): 127, 174, 96, (66,216,0): 135, 178, 106, (66,217,0): 138, 181, 110, (66,218,0): 139, 178, 115, (66,219,0): 137, 172, 116, (66,220,0): 134, 166, 119, (66,221,0): 130, 158, 117, (66,222,0): 121, 147, 110, (66,223,0): 111, 134, 108, (66,224,0): 81, 99, 87, (66,225,0): 64, 79, 76, (66,226,0): 50, 65, 62, (67,0,0): 94, 77, 57, (67,1,0): 94, 77, 57, (67,2,0): 94, 77, 57, (67,3,0): 94, 77, 57, (67,4,0): 94, 77, 57, (67,5,0): 94, 77, 57, (67,6,0): 94, 77, 57, (67,7,0): 94, 77, 57, (67,8,0): 94, 77, 57, (67,9,0): 94, 77, 57, (67,10,0): 94, 77, 57, (67,11,0): 94, 77, 57, (67,12,0): 94, 77, 57, (67,13,0): 94, 77, 57, (67,14,0): 94, 77, 57, (67,15,0): 94, 77, 57, (67,16,0): 94, 76, 56, (67,17,0): 96, 78, 58, (67,18,0): 97, 80, 60, (67,19,0): 96, 81, 62, (67,20,0): 93, 80, 63, (67,21,0): 90, 78, 62, (67,22,0): 89, 79, 67, (67,23,0): 88, 80, 69, (67,24,0): 88, 79, 72, (67,25,0): 91, 81, 79, (67,26,0): 95, 85, 84, (67,27,0): 98, 88, 89, (67,28,0): 101, 88, 95, (67,29,0): 105, 89, 99, (67,30,0): 108, 92, 102, (67,31,0): 107, 94, 104, (67,32,0): 108, 96, 108, (67,33,0): 108, 99, 116, (67,34,0): 111, 107, 134, (67,35,0): 114, 116, 155, (67,36,0): 121, 126, 181, (67,37,0): 127, 135, 200, (67,38,0): 133, 141, 214, (67,39,0): 140, 143, 220, (67,40,0): 142, 135, 212, (67,41,0): 159, 139, 208, (67,42,0): 173, 138, 194, (67,43,0): 179, 129, 167, (67,44,0): 189, 121, 144, (67,45,0): 204, 123, 130, (67,46,0): 222, 129, 124, (67,47,0): 241, 130, 123, (67,48,0): 254, 116, 116, (67,49,0): 253, 100, 103, (67,50,0): 244, 88, 92, (67,51,0): 242, 79, 84, (67,52,0): 242, 73, 80, (67,53,0): 242, 68, 77, (67,54,0): 240, 63, 71, (67,55,0): 239, 60, 66, (67,56,0): 229, 54, 59, (67,57,0): 225, 55, 56, (67,58,0): 219, 57, 55, (67,59,0): 213, 60, 55, (67,60,0): 206, 64, 54, (67,61,0): 198, 64, 52, (67,62,0): 191, 64, 49, (67,63,0): 184, 63, 46, (67,64,0): 173, 57, 42, (67,65,0): 173, 62, 45, (67,66,0): 177, 61, 48, (67,67,0): 188, 70, 58, (67,68,0): 204, 82, 71, (67,69,0): 199, 72, 63, (67,70,0): 186, 53, 46, (67,71,0): 186, 49, 41, (67,72,0): 200, 57, 49, (67,73,0): 205, 56, 49, (67,74,0): 211, 59, 48, (67,75,0): 217, 61, 49, (67,76,0): 219, 59, 45, (67,77,0): 217, 54, 39, (67,78,0): 220, 54, 38, (67,79,0): 224, 56, 43, (67,80,0): 224, 53, 45, (67,81,0): 219, 50, 43, (67,82,0): 224, 61, 52, (67,83,0): 236, 78, 66, (67,84,0): 227, 75, 61, (67,85,0): 210, 58, 44, (67,86,0): 209, 56, 42, (67,87,0): 224, 66, 54, (67,88,0): 222, 54, 45, (67,89,0): 240, 62, 58, (67,90,0): 233, 47, 48, (67,91,0): 239, 48, 53, (67,92,0): 245, 50, 58, (67,93,0): 248, 52, 62, (67,94,0): 255, 74, 86, (67,95,0): 255, 70, 79, (67,96,0): 253, 62, 69, (67,97,0): 242, 51, 56, (67,98,0): 226, 36, 38, (67,99,0): 237, 47, 49, (67,100,0): 234, 44, 44, (67,101,0): 240, 50, 50, (67,102,0): 232, 42, 42, (67,103,0): 235, 47, 46, (67,104,0): 241, 57, 57, (67,105,0): 209, 26, 28, (67,106,0): 229, 50, 54, (67,107,0): 220, 43, 49, (67,108,0): 231, 56, 63, (67,109,0): 239, 68, 76, (67,110,0): 255, 87, 98, (67,111,0): 241, 75, 85, (67,112,0): 217, 60, 67, (67,113,0): 219, 64, 68, (67,114,0): 225, 66, 70, (67,115,0): 225, 62, 65, (67,116,0): 222, 57, 61, (67,117,0): 220, 56, 57, (67,118,0): 218, 55, 56, (67,119,0): 212, 57, 55, (67,120,0): 201, 56, 51, (67,121,0): 195, 56, 49, (67,122,0): 190, 57, 50, (67,123,0): 193, 64, 58, (67,124,0): 206, 77, 72, (67,125,0): 215, 85, 83, (67,126,0): 210, 77, 78, (67,127,0): 196, 66, 64, (67,128,0): 178, 55, 50, (67,129,0): 182, 57, 53, (67,130,0): 207, 75, 73, (67,131,0): 217, 77, 76, (67,132,0): 227, 81, 82, (67,133,0): 239, 89, 90, (67,134,0): 234, 82, 81, (67,135,0): 241, 89, 86, (67,136,0): 201, 53, 49, (67,137,0): 206, 62, 54, (67,138,0): 210, 66, 57, (67,139,0): 208, 64, 55, (67,140,0): 211, 63, 53, (67,141,0): 217, 66, 57, (67,142,0): 224, 67, 60, (67,143,0): 226, 64, 59, (67,144,0): 233, 63, 64, (67,145,0): 231, 56, 61, (67,146,0): 236, 57, 61, (67,147,0): 242, 63, 67, (67,148,0): 239, 58, 63, (67,149,0): 232, 53, 56, (67,150,0): 236, 62, 61, (67,151,0): 246, 77, 74, (67,152,0): 222, 57, 51, (67,153,0): 219, 54, 48, (67,154,0): 218, 51, 43, (67,155,0): 222, 51, 44, (67,156,0): 229, 52, 46, (67,157,0): 236, 51, 48, (67,158,0): 242, 50, 49, (67,159,0): 244, 48, 49, (67,160,0): 244, 48, 50, (67,161,0): 246, 47, 50, (67,162,0): 246, 48, 49, (67,163,0): 245, 47, 48, (67,164,0): 245, 47, 46, (67,165,0): 240, 48, 45, (67,166,0): 233, 52, 45, (67,167,0): 224, 56, 45, (67,168,0): 217, 63, 51, (67,169,0): 194, 54, 39, (67,170,0): 183, 53, 40, (67,171,0): 179, 57, 46, (67,172,0): 203, 86, 79, (67,173,0): 239, 124, 121, (67,174,0): 255, 147, 146, (67,175,0): 254, 135, 139, (67,176,0): 255, 128, 137, (67,177,0): 255, 121, 135, (67,178,0): 252, 110, 126, (67,179,0): 250, 99, 118, (67,180,0): 250, 88, 111, (67,181,0): 252, 80, 106, (67,182,0): 251, 72, 102, (67,183,0): 250, 67, 98, (67,184,0): 242, 61, 92, (67,185,0): 239, 66, 94, (67,186,0): 229, 77, 100, (67,187,0): 215, 90, 104, (67,188,0): 136, 50, 53, (67,189,0): 107, 57, 48, (67,190,0): 92, 77, 56, (67,191,0): 91, 101, 67, (67,192,0): 99, 123, 75, (67,193,0): 106, 137, 80, (67,194,0): 115, 146, 89, (67,195,0): 116, 149, 92, (67,196,0): 117, 152, 94, (67,197,0): 119, 157, 98, (67,198,0): 121, 161, 101, (67,199,0): 122, 162, 102, (67,200,0): 119, 160, 100, (67,201,0): 118, 160, 97, (67,202,0): 119, 159, 97, (67,203,0): 118, 158, 96, (67,204,0): 120, 159, 96, (67,205,0): 120, 159, 96, (67,206,0): 123, 159, 97, (67,207,0): 122, 160, 99, (67,208,0): 122, 162, 102, (67,209,0): 122, 163, 103, (67,210,0): 122, 167, 102, (67,211,0): 122, 167, 98, (67,212,0): 122, 168, 96, (67,213,0): 122, 168, 93, (67,214,0): 124, 171, 93, (67,215,0): 126, 173, 95, (67,216,0): 134, 178, 103, (67,217,0): 139, 180, 110, (67,218,0): 140, 179, 116, (67,219,0): 138, 173, 115, (67,220,0): 134, 166, 117, (67,221,0): 128, 157, 113, (67,222,0): 116, 142, 105, (67,223,0): 105, 128, 100, (67,224,0): 80, 98, 84, (67,225,0): 67, 82, 75, (67,226,0): 56, 71, 64, (68,0,0): 94, 77, 59, (68,1,0): 94, 77, 59, (68,2,0): 94, 77, 59, (68,3,0): 94, 77, 59, (68,4,0): 94, 77, 59, (68,5,0): 94, 77, 59, (68,6,0): 94, 77, 59, (68,7,0): 94, 77, 59, (68,8,0): 94, 77, 59, (68,9,0): 94, 77, 59, (68,10,0): 94, 77, 59, (68,11,0): 94, 77, 59, (68,12,0): 94, 77, 59, (68,13,0): 94, 77, 59, (68,14,0): 94, 77, 59, (68,15,0): 94, 77, 57, (68,16,0): 93, 75, 53, (68,17,0): 95, 77, 53, (68,18,0): 96, 80, 57, (68,19,0): 95, 80, 59, (68,20,0): 92, 79, 62, (68,21,0): 90, 78, 64, (68,22,0): 88, 79, 70, (68,23,0): 88, 81, 75, (68,24,0): 89, 80, 81, (68,25,0): 96, 87, 92, (68,26,0): 103, 96, 104, (68,27,0): 110, 102, 115, (68,28,0): 115, 104, 121, (68,29,0): 115, 103, 123, (68,30,0): 115, 103, 125, (68,31,0): 113, 103, 127, (68,32,0): 111, 108, 129, (68,33,0): 112, 112, 138, (68,34,0): 114, 118, 153, (68,35,0): 118, 124, 172, (68,36,0): 122, 130, 193, (68,37,0): 127, 135, 208, (68,38,0): 132, 139, 220, (68,39,0): 138, 140, 225, (68,40,0): 147, 142, 224, (68,41,0): 157, 141, 214, (68,42,0): 160, 132, 190, (68,43,0): 158, 117, 159, (68,44,0): 160, 108, 130, (68,45,0): 172, 110, 115, (68,46,0): 188, 117, 111, (68,47,0): 210, 118, 107, (68,48,0): 240, 115, 109, (68,49,0): 253, 109, 108, (68,50,0): 254, 104, 105, (68,51,0): 251, 95, 96, (68,52,0): 249, 83, 87, (68,53,0): 244, 71, 77, (68,54,0): 237, 60, 66, (68,55,0): 234, 55, 61, (68,56,0): 232, 53, 59, (68,57,0): 227, 54, 56, (68,58,0): 221, 57, 56, (68,59,0): 215, 60, 55, (68,60,0): 208, 64, 55, (68,61,0): 199, 65, 53, (68,62,0): 192, 65, 48, (68,63,0): 185, 64, 47, (68,64,0): 173, 55, 41, (68,65,0): 180, 64, 51, (68,66,0): 175, 58, 48, (68,67,0): 176, 59, 49, (68,68,0): 200, 82, 72, (68,69,0): 213, 92, 81, (68,70,0): 201, 77, 67, (68,71,0): 187, 59, 48, (68,72,0): 190, 57, 48, (68,73,0): 193, 55, 45, (68,74,0): 204, 57, 47, (68,75,0): 214, 62, 51, (68,76,0): 219, 61, 49, (68,77,0): 218, 54, 42, (68,78,0): 220, 52, 39, (68,79,0): 226, 54, 42, (68,80,0): 224, 51, 44, (68,81,0): 226, 55, 48, (68,82,0): 228, 61, 53, (68,83,0): 229, 69, 57, (68,84,0): 226, 70, 57, (68,85,0): 222, 66, 51, (68,86,0): 222, 65, 50, (68,87,0): 226, 62, 50, (68,88,0): 219, 48, 38, (68,89,0): 234, 55, 50, (68,90,0): 236, 48, 47, (68,91,0): 238, 45, 48, (68,92,0): 239, 44, 50, (68,93,0): 246, 51, 59, (68,94,0): 255, 76, 84, (68,95,0): 255, 87, 94, (68,96,0): 255, 90, 95, (68,97,0): 255, 79, 83, (68,98,0): 225, 46, 49, (68,99,0): 227, 48, 51, (68,100,0): 224, 44, 45, (68,101,0): 247, 69, 69, (68,102,0): 232, 54, 54, (68,103,0): 220, 44, 44, (68,104,0): 218, 44, 45, (68,105,0): 234, 61, 63, (68,106,0): 219, 49, 52, (68,107,0): 216, 50, 54, (68,108,0): 255, 98, 104, (68,109,0): 224, 61, 66, (68,110,0): 202, 41, 49, (68,111,0): 202, 45, 52, (68,112,0): 193, 38, 42, (68,113,0): 213, 59, 61, (68,114,0): 224, 65, 69, (68,115,0): 218, 55, 58, (68,116,0): 217, 51, 55, (68,117,0): 223, 57, 61, (68,118,0): 220, 55, 59, (68,119,0): 205, 47, 48, (68,120,0): 204, 52, 51, (68,121,0): 205, 59, 59, (68,122,0): 211, 71, 70, (68,123,0): 221, 83, 83, (68,124,0): 235, 96, 99, (68,125,0): 245, 105, 108, (68,126,0): 244, 101, 107, (68,127,0): 234, 94, 97, (68,128,0): 196, 64, 62, (68,129,0): 198, 69, 64, (68,130,0): 229, 94, 91, (68,131,0): 248, 104, 103, (68,132,0): 255, 111, 112, (68,133,0): 255, 106, 106, (68,134,0): 229, 75, 75, (68,135,0): 215, 61, 59, (68,136,0): 201, 52, 48, (68,137,0): 209, 62, 55, (68,138,0): 215, 68, 60, (68,139,0): 214, 67, 59, (68,140,0): 213, 62, 53, (68,141,0): 213, 60, 52, (68,142,0): 216, 58, 49, (68,143,0): 220, 52, 49, (68,144,0): 238, 53, 59, (68,145,0): 241, 45, 55, (68,146,0): 240, 44, 54, (68,147,0): 242, 46, 56, (68,148,0): 239, 44, 52, (68,149,0): 235, 44, 51, (68,150,0): 243, 57, 60, (68,151,0): 254, 74, 75, (68,152,0): 223, 51, 47, (68,153,0): 220, 51, 46, (68,154,0): 218, 51, 43, (68,155,0): 220, 51, 44, (68,156,0): 227, 53, 46, (68,157,0): 234, 52, 48, (68,158,0): 239, 52, 47, (68,159,0): 242, 50, 49, (68,160,0): 244, 48, 50, (68,161,0): 246, 47, 50, (68,162,0): 247, 47, 49, (68,163,0): 246, 46, 48, (68,164,0): 245, 47, 46, (68,165,0): 240, 48, 45, (68,166,0): 234, 51, 45, (68,167,0): 226, 55, 45, (68,168,0): 217, 63, 51, (68,169,0): 198, 56, 42, (68,170,0): 180, 50, 37, (68,171,0): 178, 56, 45, (68,172,0): 195, 78, 71, (68,173,0): 239, 124, 121, (68,174,0): 255, 146, 145, (68,175,0): 255, 135, 140, (68,176,0): 255, 126, 137, (68,177,0): 255, 117, 132, (68,178,0): 249, 108, 124, (68,179,0): 246, 97, 116, (68,180,0): 245, 85, 109, (68,181,0): 247, 74, 102, (68,182,0): 249, 64, 96, (68,183,0): 249, 59, 93, (68,184,0): 243, 58, 92, (68,185,0): 237, 68, 97, (68,186,0): 219, 80, 101, (68,187,0): 193, 87, 97, (68,188,0): 114, 46, 43, (68,189,0): 98, 62, 48, (68,190,0): 96, 84, 62, (68,191,0): 99, 106, 73, (68,192,0): 102, 124, 77, (68,193,0): 107, 137, 83, (68,194,0): 116, 146, 92, (68,195,0): 117, 150, 95, (68,196,0): 118, 153, 95, (68,197,0): 120, 158, 99, (68,198,0): 121, 161, 99, (68,199,0): 120, 160, 98, (68,200,0): 117, 159, 96, (68,201,0): 117, 159, 96, (68,202,0): 117, 157, 95, (68,203,0): 118, 158, 95, (68,204,0): 119, 158, 95, (68,205,0): 120, 159, 96, (68,206,0): 123, 159, 97, (68,207,0): 122, 161, 98, (68,208,0): 122, 162, 100, (68,209,0): 123, 165, 101, (68,210,0): 124, 166, 100, (68,211,0): 124, 167, 96, (68,212,0): 121, 167, 94, (68,213,0): 121, 168, 90, (68,214,0): 123, 170, 92, (68,215,0): 125, 172, 94, (68,216,0): 128, 172, 97, (68,217,0): 133, 175, 103, (68,218,0): 135, 174, 109, (68,219,0): 135, 170, 112, (68,220,0): 133, 165, 115, (68,221,0): 131, 160, 114, (68,222,0): 123, 149, 110, (68,223,0): 114, 138, 106, (68,224,0): 100, 119, 100, (68,225,0): 91, 107, 94, (68,226,0): 81, 97, 84, (69,0,0): 95, 78, 60, (69,1,0): 95, 78, 60, (69,2,0): 95, 78, 60, (69,3,0): 95, 78, 60, (69,4,0): 95, 78, 60, (69,5,0): 95, 78, 60, (69,6,0): 95, 78, 60, (69,7,0): 95, 78, 60, (69,8,0): 95, 78, 60, (69,9,0): 95, 78, 60, (69,10,0): 95, 78, 60, (69,11,0): 95, 78, 60, (69,12,0): 95, 78, 60, (69,13,0): 95, 78, 60, (69,14,0): 95, 78, 60, (69,15,0): 95, 78, 58, (69,16,0): 94, 76, 52, (69,17,0): 95, 78, 52, (69,18,0): 96, 78, 56, (69,19,0): 94, 79, 58, (69,20,0): 91, 78, 62, (69,21,0): 89, 79, 69, (69,22,0): 90, 83, 77, (69,23,0): 90, 84, 84, (69,24,0): 95, 90, 97, (69,25,0): 104, 98, 112, (69,26,0): 114, 109, 129, (69,27,0): 122, 117, 140, (69,28,0): 123, 117, 145, (69,29,0): 123, 113, 147, (69,30,0): 122, 112, 147, (69,31,0): 118, 112, 148, (69,32,0): 113, 116, 149, (69,33,0): 114, 119, 157, (69,34,0): 116, 124, 170, (69,35,0): 119, 128, 183, (69,36,0): 122, 131, 196, (69,37,0): 126, 134, 207, (69,38,0): 132, 138, 216, (69,39,0): 139, 141, 218, (69,40,0): 150, 144, 218, (69,41,0): 153, 139, 201, (69,42,0): 155, 133, 180, (69,43,0): 162, 131, 162, (69,44,0): 170, 132, 145, (69,45,0): 171, 126, 123, (69,46,0): 159, 107, 93, (69,47,0): 153, 82, 64, (69,48,0): 186, 78, 66, (69,49,0): 210, 82, 73, (69,50,0): 225, 88, 82, (69,51,0): 233, 88, 85, (69,52,0): 239, 84, 82, (69,53,0): 241, 75, 77, (69,54,0): 236, 63, 67, (69,55,0): 229, 52, 58, (69,56,0): 235, 56, 60, (69,57,0): 231, 57, 59, (69,58,0): 226, 58, 57, (69,59,0): 218, 61, 56, (69,60,0): 211, 64, 56, (69,61,0): 203, 65, 54, (69,62,0): 195, 63, 48, (69,63,0): 188, 62, 47, (69,64,0): 179, 57, 44, (69,65,0): 186, 65, 54, (69,66,0): 171, 53, 43, (69,67,0): 163, 46, 36, (69,68,0): 190, 73, 63, (69,69,0): 217, 103, 92, (69,70,0): 217, 100, 90, (69,71,0): 203, 85, 73, (69,72,0): 184, 60, 50, (69,73,0): 184, 54, 41, (69,74,0): 192, 51, 41, (69,75,0): 206, 58, 48, (69,76,0): 217, 59, 48, (69,77,0): 218, 54, 44, (69,78,0): 222, 51, 41, (69,79,0): 228, 54, 45, (69,80,0): 223, 49, 42, (69,81,0): 228, 55, 49, (69,82,0): 227, 59, 50, (69,83,0): 221, 57, 47, (69,84,0): 222, 62, 48, (69,85,0): 227, 70, 53, (69,86,0): 228, 66, 51, (69,87,0): 223, 57, 43, (69,88,0): 222, 48, 39, (69,89,0): 233, 52, 45, (69,90,0): 240, 51, 49, (69,91,0): 239, 45, 46, (69,92,0): 236, 41, 45, (69,93,0): 242, 47, 53, (69,94,0): 255, 66, 71, (69,95,0): 255, 82, 87, (69,96,0): 255, 93, 98, (69,97,0): 255, 92, 97, (69,98,0): 226, 57, 60, (69,99,0): 227, 57, 60, (69,100,0): 213, 43, 44, (69,101,0): 244, 74, 75, (69,102,0): 226, 56, 57, (69,103,0): 215, 47, 47, (69,104,0): 217, 51, 53, (69,105,0): 203, 39, 40, (69,106,0): 202, 37, 41, (69,107,0): 247, 87, 89, (69,108,0): 220, 61, 65, (69,109,0): 213, 57, 61, (69,110,0): 209, 54, 58, (69,111,0): 186, 31, 35, (69,112,0): 196, 40, 43, (69,113,0): 219, 61, 62, (69,114,0): 229, 66, 69, (69,115,0): 219, 53, 57, (69,116,0): 215, 44, 50, (69,117,0): 220, 49, 55, (69,118,0): 217, 48, 53, (69,119,0): 204, 41, 46, (69,120,0): 208, 52, 55, (69,121,0): 226, 76, 78, (69,122,0): 244, 98, 101, (69,123,0): 250, 105, 110, (69,124,0): 247, 100, 108, (69,125,0): 246, 96, 105, (69,126,0): 248, 96, 108, (69,127,0): 248, 98, 107, (69,128,0): 214, 76, 76, (69,129,0): 213, 78, 74, (69,130,0): 234, 92, 90, (69,131,0): 234, 86, 84, (69,132,0): 231, 77, 77, (69,133,0): 227, 72, 70, (69,134,0): 207, 52, 50, (69,135,0): 206, 51, 47, (69,136,0): 217, 65, 60, (69,137,0): 224, 75, 68, (69,138,0): 228, 79, 72, (69,139,0): 223, 74, 67, (69,140,0): 217, 64, 56, (69,141,0): 215, 58, 51, (69,142,0): 215, 54, 46, (69,143,0): 220, 46, 45, (69,144,0): 245, 50, 58, (69,145,0): 251, 45, 58, (69,146,0): 248, 42, 55, (69,147,0): 245, 39, 52, (69,148,0): 245, 41, 52, (69,149,0): 248, 48, 58, (69,150,0): 255, 62, 67, (69,151,0): 255, 74, 74, (69,152,0): 224, 49, 46, (69,153,0): 222, 51, 44, (69,154,0): 220, 51, 44, (69,155,0): 221, 53, 44, (69,156,0): 225, 52, 45, (69,157,0): 231, 52, 47, (69,158,0): 237, 52, 47, (69,159,0): 240, 51, 47, (69,160,0): 244, 48, 50, (69,161,0): 247, 47, 50, (69,162,0): 249, 46, 49, (69,163,0): 248, 45, 48, (69,164,0): 246, 46, 46, (69,165,0): 241, 47, 45, (69,166,0): 235, 50, 45, (69,167,0): 226, 55, 45, (69,168,0): 217, 61, 49, (69,169,0): 201, 59, 45, (69,170,0): 179, 49, 36, (69,171,0): 177, 55, 44, (69,172,0): 186, 67, 61, (69,173,0): 236, 121, 118, (69,174,0): 255, 141, 141, (69,175,0): 255, 136, 141, (69,176,0): 255, 123, 135, (69,177,0): 255, 113, 129, (69,178,0): 246, 104, 120, (69,179,0): 243, 96, 114, (69,180,0): 243, 83, 107, (69,181,0): 244, 69, 98, (69,182,0): 249, 58, 92, (69,183,0): 249, 55, 90, (69,184,0): 243, 58, 92, (69,185,0): 235, 72, 99, (69,186,0): 205, 80, 96, (69,187,0): 160, 74, 77, (69,188,0): 102, 52, 43, (69,189,0): 89, 66, 48, (69,190,0): 95, 87, 64, (69,191,0): 99, 106, 73, (69,192,0): 102, 124, 78, (69,193,0): 107, 136, 82, (69,194,0): 116, 145, 91, (69,195,0): 119, 149, 95, (69,196,0): 120, 153, 96, (69,197,0): 123, 158, 100, (69,198,0): 122, 160, 99, (69,199,0): 118, 158, 96, (69,200,0): 115, 155, 93, (69,201,0): 114, 156, 92, (69,202,0): 115, 155, 92, (69,203,0): 116, 156, 93, (69,204,0): 118, 157, 94, (69,205,0): 119, 158, 95, (69,206,0): 123, 159, 97, (69,207,0): 122, 161, 98, (69,208,0): 121, 161, 98, (69,209,0): 122, 164, 98, (69,210,0): 124, 167, 98, (69,211,0): 123, 166, 95, (69,212,0): 120, 166, 91, (69,213,0): 120, 167, 89, (69,214,0): 122, 169, 89, (69,215,0): 123, 170, 90, (69,216,0): 126, 170, 95, (69,217,0): 131, 173, 101, (69,218,0): 133, 172, 107, (69,219,0): 135, 169, 109, (69,220,0): 137, 167, 115, (69,221,0): 137, 165, 117, (69,222,0): 132, 157, 115, (69,223,0): 124, 148, 114, (69,224,0): 117, 137, 112, (69,225,0): 111, 128, 109, (69,226,0): 103, 120, 102, (70,0,0): 95, 80, 61, (70,1,0): 95, 80, 61, (70,2,0): 95, 80, 61, (70,3,0): 95, 80, 61, (70,4,0): 95, 80, 61, (70,5,0): 95, 80, 61, (70,6,0): 95, 80, 61, (70,7,0): 95, 80, 61, (70,8,0): 94, 79, 60, (70,9,0): 94, 79, 60, (70,10,0): 94, 79, 60, (70,11,0): 94, 79, 60, (70,12,0): 94, 79, 60, (70,13,0): 94, 79, 60, (70,14,0): 94, 79, 60, (70,15,0): 95, 78, 58, (70,16,0): 97, 80, 54, (70,17,0): 97, 80, 54, (70,18,0): 97, 79, 57, (70,19,0): 94, 79, 60, (70,20,0): 91, 79, 65, (70,21,0): 91, 82, 75, (70,22,0): 92, 86, 86, (70,23,0): 95, 90, 97, (70,24,0): 107, 103, 118, (70,25,0): 115, 111, 134, (70,26,0): 125, 122, 151, (70,27,0): 130, 126, 161, (70,28,0): 129, 124, 165, (70,29,0): 125, 119, 163, (70,30,0): 123, 117, 165, (70,31,0): 120, 118, 167, (70,32,0): 115, 121, 171, (70,33,0): 115, 125, 178, (70,34,0): 120, 129, 184, (70,35,0): 123, 132, 191, (70,36,0): 126, 134, 196, (70,37,0): 132, 138, 200, (70,38,0): 141, 142, 206, (70,39,0): 148, 147, 205, (70,40,0): 154, 147, 198, (70,41,0): 160, 150, 187, (70,42,0): 171, 156, 179, (70,43,0): 188, 167, 176, (70,44,0): 201, 173, 169, (70,45,0): 197, 166, 148, (70,46,0): 170, 136, 109, (70,47,0): 154, 103, 76, (70,48,0): 155, 70, 50, (70,49,0): 173, 65, 52, (70,50,0): 181, 65, 52, (70,51,0): 194, 66, 57, (70,52,0): 214, 72, 68, (70,53,0): 232, 78, 78, (70,54,0): 238, 74, 75, (70,55,0): 236, 63, 67, (70,56,0): 235, 61, 63, (70,57,0): 233, 59, 61, (70,58,0): 229, 59, 59, (70,59,0): 224, 60, 58, (70,60,0): 217, 64, 56, (70,61,0): 210, 63, 53, (70,62,0): 202, 62, 49, (70,63,0): 194, 60, 48, (70,64,0): 189, 58, 48, (70,65,0): 190, 63, 54, (70,66,0): 175, 52, 44, (70,67,0): 167, 49, 39, (70,68,0): 187, 73, 63, (70,69,0): 209, 99, 86, (70,70,0): 214, 104, 91, (70,71,0): 213, 101, 87, (70,72,0): 195, 79, 66, (70,73,0): 186, 62, 50, (70,74,0): 186, 52, 41, (70,75,0): 199, 55, 44, (70,76,0): 214, 57, 48, (70,77,0): 217, 53, 44, (70,78,0): 223, 50, 43, (70,79,0): 231, 54, 48, (70,80,0): 226, 48, 44, (70,81,0): 227, 52, 47, (70,82,0): 226, 55, 47, (70,83,0): 222, 55, 46, (70,84,0): 224, 62, 49, (70,85,0): 229, 67, 52, (70,86,0): 228, 62, 48, (70,87,0): 222, 52, 37, (70,88,0): 229, 51, 41, (70,89,0): 232, 47, 42, (70,90,0): 240, 51, 47, (70,91,0): 240, 46, 46, (70,92,0): 239, 45, 46, (70,93,0): 241, 48, 51, (70,94,0): 242, 54, 55, (70,95,0): 244, 64, 67, (70,96,0): 246, 77, 82, (70,97,0): 252, 89, 94, (70,98,0): 233, 70, 75, (70,99,0): 246, 81, 87, (70,100,0): 216, 51, 55, (70,101,0): 235, 70, 74, (70,102,0): 221, 56, 60, (70,103,0): 230, 65, 69, (70,104,0): 216, 53, 56, (70,105,0): 204, 44, 46, (70,106,0): 207, 46, 51, (70,107,0): 226, 70, 73, (70,108,0): 210, 55, 59, (70,109,0): 208, 55, 58, (70,110,0): 185, 35, 37, (70,111,0): 213, 59, 61, (70,112,0): 217, 57, 59, (70,113,0): 226, 60, 62, (70,114,0): 232, 62, 65, (70,115,0): 230, 55, 60, (70,116,0): 223, 46, 54, (70,117,0): 219, 42, 50, (70,118,0): 224, 50, 59, (70,119,0): 228, 61, 68, (70,120,0): 238, 77, 83, (70,121,0): 250, 95, 101, (70,122,0): 255, 109, 115, (70,123,0): 255, 106, 115, (70,124,0): 248, 97, 106, (70,125,0): 245, 91, 103, (70,126,0): 246, 90, 104, (70,127,0): 246, 92, 102, (70,128,0): 244, 100, 100, (70,129,0): 232, 90, 86, (70,130,0): 232, 87, 84, (70,131,0): 216, 64, 61, (70,132,0): 207, 49, 48, (70,133,0): 212, 52, 52, (70,134,0): 211, 51, 51, (70,135,0): 225, 67, 64, (70,136,0): 227, 74, 69, (70,137,0): 233, 82, 75, (70,138,0): 234, 83, 76, (70,139,0): 225, 74, 65, (70,140,0): 217, 63, 55, (70,141,0): 216, 57, 51, (70,142,0): 219, 56, 49, (70,143,0): 227, 51, 51, (70,144,0): 243, 46, 55, (70,145,0): 255, 48, 62, (70,146,0): 255, 48, 61, (70,147,0): 250, 42, 55, (70,148,0): 252, 46, 58, (70,149,0): 255, 59, 69, (70,150,0): 255, 67, 72, (70,151,0): 251, 65, 66, (70,152,0): 227, 49, 47, (70,153,0): 223, 52, 45, (70,154,0): 221, 52, 45, (70,155,0): 221, 53, 44, (70,156,0): 226, 52, 45, (70,157,0): 230, 51, 44, (70,158,0): 237, 52, 47, (70,159,0): 241, 52, 48, (70,160,0): 244, 48, 50, (70,161,0): 247, 47, 50, (70,162,0): 249, 46, 49, (70,163,0): 248, 45, 48, (70,164,0): 246, 46, 46, (70,165,0): 241, 47, 45, (70,166,0): 235, 50, 45, (70,167,0): 227, 55, 45, (70,168,0): 216, 58, 47, (70,169,0): 205, 62, 48, (70,170,0): 181, 49, 37, (70,171,0): 177, 55, 44, (70,172,0): 178, 59, 53, (70,173,0): 233, 115, 113, (70,174,0): 255, 138, 138, (70,175,0): 255, 135, 141, (70,176,0): 255, 116, 132, (70,177,0): 253, 104, 124, (70,178,0): 243, 97, 116, (70,179,0): 241, 92, 112, (70,180,0): 244, 82, 106, (70,181,0): 245, 68, 97, (70,182,0): 251, 55, 93, (70,183,0): 252, 56, 94, (70,184,0): 245, 61, 95, (70,185,0): 232, 78, 102, (70,186,0): 188, 81, 91, (70,187,0): 125, 57, 54, (70,188,0): 94, 60, 48, (70,189,0): 81, 68, 49, (70,190,0): 91, 86, 64, (70,191,0): 93, 100, 69, (70,192,0): 101, 119, 77, (70,193,0): 106, 133, 82, (70,194,0): 114, 142, 91, (70,195,0): 118, 148, 94, (70,196,0): 121, 154, 97, (70,197,0): 123, 158, 100, (70,198,0): 120, 158, 97, (70,199,0): 115, 155, 93, (70,200,0): 112, 152, 89, (70,201,0): 112, 153, 87, (70,202,0): 113, 154, 88, (70,203,0): 113, 154, 88, (70,204,0): 116, 155, 92, (70,205,0): 117, 156, 93, (70,206,0): 121, 157, 95, (70,207,0): 120, 159, 96, (70,208,0): 120, 161, 95, (70,209,0): 121, 162, 94, (70,210,0): 122, 165, 94, (70,211,0): 121, 164, 92, (70,212,0): 120, 164, 89, (70,213,0): 120, 164, 87, (70,214,0): 121, 165, 86, (70,215,0): 123, 167, 88, (70,216,0): 127, 169, 95, (70,217,0): 130, 172, 100, (70,218,0): 132, 171, 104, (70,219,0): 134, 168, 108, (70,220,0): 135, 165, 111, (70,221,0): 134, 162, 113, (70,222,0): 128, 154, 109, (70,223,0): 120, 145, 106, (70,224,0): 112, 132, 104, (70,225,0): 108, 128, 101, (70,226,0): 101, 121, 96, (71,0,0): 95, 80, 61, (71,1,0): 95, 80, 61, (71,2,0): 95, 80, 61, (71,3,0): 95, 80, 61, (71,4,0): 95, 80, 61, (71,5,0): 95, 80, 61, (71,6,0): 95, 80, 61, (71,7,0): 95, 80, 61, (71,8,0): 94, 79, 60, (71,9,0): 94, 79, 60, (71,10,0): 94, 79, 60, (71,11,0): 94, 79, 60, (71,12,0): 94, 79, 60, (71,13,0): 94, 79, 60, (71,14,0): 94, 79, 60, (71,15,0): 95, 78, 58, (71,16,0): 99, 81, 57, (71,17,0): 99, 81, 57, (71,18,0): 97, 80, 60, (71,19,0): 93, 80, 64, (71,20,0): 90, 80, 71, (71,21,0): 92, 84, 82, (71,22,0): 95, 90, 97, (71,23,0): 97, 95, 109, (71,24,0): 116, 114, 138, (71,25,0): 121, 120, 152, (71,26,0): 129, 128, 168, (71,27,0): 131, 129, 176, (71,28,0): 126, 126, 176, (71,29,0): 121, 121, 175, (71,30,0): 121, 117, 176, (71,31,0): 119, 119, 181, (71,32,0): 119, 124, 190, (71,33,0): 120, 127, 195, (71,34,0): 125, 133, 196, (71,35,0): 130, 136, 196, (71,36,0): 133, 138, 193, (71,37,0): 141, 143, 191, (71,38,0): 151, 150, 190, (71,39,0): 160, 157, 188, (71,40,0): 172, 167, 187, (71,41,0): 182, 172, 180, (71,42,0): 190, 179, 175, (71,43,0): 200, 184, 169, (71,44,0): 208, 190, 166, (71,45,0): 214, 193, 162, (71,46,0): 209, 187, 150, (71,47,0): 208, 172, 136, (71,48,0): 175, 111, 84, (71,49,0): 174, 92, 71, (71,50,0): 164, 71, 53, (71,51,0): 168, 62, 48, (71,52,0): 194, 71, 63, (71,53,0): 224, 87, 81, (71,54,0): 239, 87, 86, (71,55,0): 241, 78, 79, (71,56,0): 233, 64, 67, (71,57,0): 234, 61, 63, (71,58,0): 230, 60, 61, (71,59,0): 226, 61, 59, (71,60,0): 223, 61, 58, (71,61,0): 215, 61, 53, (71,62,0): 207, 59, 49, (71,63,0): 201, 57, 48, (71,64,0): 193, 56, 48, (71,65,0): 193, 60, 53, (71,66,0): 185, 58, 51, (71,67,0): 184, 61, 53, (71,68,0): 193, 79, 69, (71,69,0): 199, 88, 77, (71,70,0): 199, 93, 79, (71,71,0): 209, 101, 88, (71,72,0): 211, 99, 85, (71,73,0): 194, 76, 62, (71,74,0): 188, 58, 45, (71,75,0): 197, 56, 46, (71,76,0): 210, 57, 49, (71,77,0): 215, 52, 45, (71,78,0): 223, 50, 44, (71,79,0): 231, 54, 48, (71,80,0): 230, 52, 48, (71,81,0): 225, 50, 45, (71,82,0): 224, 53, 46, (71,83,0): 227, 60, 51, (71,84,0): 231, 67, 55, (71,85,0): 230, 67, 52, (71,86,0): 226, 58, 45, (71,87,0): 223, 51, 37, (71,88,0): 233, 52, 43, (71,89,0): 229, 45, 37, (71,90,0): 240, 48, 45, (71,91,0): 240, 48, 45, (71,92,0): 241, 52, 50, (71,93,0): 242, 54, 53, (71,94,0): 232, 46, 47, (71,95,0): 226, 50, 52, (71,96,0): 231, 66, 70, (71,97,0): 247, 88, 93, (71,98,0): 246, 87, 92, (71,99,0): 255, 111, 117, (71,100,0): 229, 68, 74, (71,101,0): 235, 72, 77, (71,102,0): 224, 60, 67, (71,103,0): 254, 91, 96, (71,104,0): 255, 109, 115, (71,105,0): 220, 59, 64, (71,106,0): 255, 123, 128, (71,107,0): 255, 108, 112, (71,108,0): 234, 81, 84, (71,109,0): 211, 61, 63, (71,110,0): 198, 48, 50, (71,111,0): 215, 59, 62, (71,112,0): 241, 72, 75, (71,113,0): 235, 59, 62, (71,114,0): 237, 56, 63, (71,115,0): 246, 62, 70, (71,116,0): 240, 56, 66, (71,117,0): 230, 46, 56, (71,118,0): 241, 64, 74, (71,119,0): 255, 95, 103, (71,120,0): 255, 110, 119, (71,121,0): 255, 107, 114, (71,122,0): 254, 100, 110, (71,123,0): 245, 94, 103, (71,124,0): 247, 95, 107, (71,125,0): 253, 99, 111, (71,126,0): 253, 95, 110, (71,127,0): 246, 90, 101, (71,128,0): 241, 93, 93, (71,129,0): 227, 80, 73, (71,130,0): 226, 74, 71, (71,131,0): 213, 55, 52, (71,132,0): 210, 47, 48, (71,133,0): 217, 53, 52, (71,134,0): 210, 48, 46, (71,135,0): 216, 57, 53, (71,136,0): 223, 68, 63, (71,137,0): 227, 74, 68, (71,138,0): 226, 73, 65, (71,139,0): 217, 64, 56, (71,140,0): 211, 54, 47, (71,141,0): 214, 52, 47, (71,142,0): 220, 55, 49, (71,143,0): 232, 54, 54, (71,144,0): 234, 39, 47, (71,145,0): 252, 48, 60, (71,146,0): 254, 50, 61, (71,147,0): 247, 43, 54, (71,148,0): 249, 48, 58, (71,149,0): 255, 62, 69, (71,150,0): 253, 63, 65, (71,151,0): 236, 52, 52, (71,152,0): 226, 51, 46, (71,153,0): 224, 53, 46, (71,154,0): 222, 54, 45, (71,155,0): 223, 52, 44, (71,156,0): 225, 51, 42, (71,157,0): 232, 51, 44, (71,158,0): 239, 52, 47, (71,159,0): 244, 52, 49, (71,160,0): 246, 48, 49, (71,161,0): 247, 47, 50, (71,162,0): 249, 46, 49, (71,163,0): 248, 45, 48, (71,164,0): 248, 46, 46, (71,165,0): 242, 47, 45, (71,166,0): 235, 50, 45, (71,167,0): 227, 55, 45, (71,168,0): 215, 57, 46, (71,169,0): 209, 63, 50, (71,170,0): 182, 48, 37, (71,171,0): 178, 54, 44, (71,172,0): 176, 54, 49, (71,173,0): 232, 112, 111, (71,174,0): 255, 135, 136, (71,175,0): 255, 134, 142, (71,176,0): 255, 110, 128, (71,177,0): 252, 99, 120, (71,178,0): 241, 94, 113, (71,179,0): 242, 90, 111, (71,180,0): 245, 81, 106, (71,181,0): 246, 67, 97, (71,182,0): 253, 57, 95, (71,183,0): 253, 59, 96, (71,184,0): 242, 67, 98, (71,185,0): 225, 84, 103, (71,186,0): 174, 82, 87, (71,187,0): 98, 48, 39, (71,188,0): 89, 68, 51, (71,189,0): 74, 69, 47, (71,190,0): 85, 83, 60, (71,191,0): 88, 93, 63, (71,192,0): 99, 115, 76, (71,193,0): 105, 129, 81, (71,194,0): 113, 139, 91, (71,195,0): 118, 146, 95, (71,196,0): 122, 152, 98, (71,197,0): 124, 157, 100, (71,198,0): 120, 156, 95, (71,199,0): 114, 153, 90, (71,200,0): 110, 151, 85, (71,201,0): 110, 151, 85, (71,202,0): 110, 151, 85, (71,203,0): 111, 152, 86, (71,204,0): 114, 153, 90, (71,205,0): 116, 155, 92, (71,206,0): 119, 155, 93, (71,207,0): 119, 158, 93, (71,208,0): 119, 158, 91, (71,209,0): 120, 161, 91, (71,210,0): 121, 163, 91, (71,211,0): 119, 163, 88, (71,212,0): 118, 162, 87, (71,213,0): 118, 162, 85, (71,214,0): 119, 163, 84, (71,215,0): 121, 165, 88, (71,216,0): 122, 164, 90, (71,217,0): 126, 166, 95, (71,218,0): 129, 166, 99, (71,219,0): 127, 161, 100, (71,220,0): 126, 156, 102, (71,221,0): 123, 151, 102, (71,222,0): 114, 140, 93, (71,223,0): 105, 130, 88, (71,224,0): 95, 117, 81, (71,225,0): 92, 113, 82, (71,226,0): 86, 107, 76, (72,0,0): 92, 76, 60, (72,1,0): 94, 78, 62, (72,2,0): 96, 80, 64, (72,3,0): 96, 80, 64, (72,4,0): 95, 79, 63, (72,5,0): 95, 79, 63, (72,6,0): 95, 79, 63, (72,7,0): 97, 81, 65, (72,8,0): 98, 82, 66, (72,9,0): 95, 79, 63, (72,10,0): 93, 77, 61, (72,11,0): 93, 77, 61, (72,12,0): 97, 81, 65, (72,13,0): 99, 83, 67, (72,14,0): 98, 82, 66, (72,15,0): 96, 81, 62, (72,16,0): 100, 83, 63, (72,17,0): 97, 80, 62, (72,18,0): 93, 80, 64, (72,19,0): 94, 81, 73, (72,20,0): 91, 81, 80, (72,21,0): 90, 83, 90, (72,22,0): 101, 97, 112, (72,23,0): 115, 113, 137, (72,24,0): 121, 120, 154, (72,25,0): 122, 124, 165, (72,26,0): 126, 128, 177, (72,27,0): 128, 129, 185, (72,28,0): 125, 127, 186, (72,29,0): 120, 122, 183, (72,30,0): 114, 115, 180, (72,31,0): 108, 111, 182, (72,32,0): 116, 119, 198, (72,33,0): 118, 124, 202, (72,34,0): 128, 131, 202, (72,35,0): 139, 141, 198, (72,36,0): 150, 151, 195, (72,37,0): 164, 164, 190, (72,38,0): 178, 176, 187, (72,39,0): 188, 185, 180, (72,40,0): 203, 197, 181, (72,41,0): 211, 204, 176, (72,42,0): 217, 207, 172, (72,43,0): 219, 207, 165, (72,44,0): 220, 207, 163, (72,45,0): 221, 209, 161, (72,46,0): 217, 203, 156, (72,47,0): 217, 194, 152, (72,48,0): 209, 168, 136, (72,49,0): 184, 128, 103, (72,50,0): 161, 93, 70, (72,51,0): 203, 122, 103, (72,52,0): 216, 116, 101, (72,53,0): 189, 72, 63, (72,54,0): 216, 81, 78, (72,55,0): 247, 99, 99, (72,56,0): 233, 75, 76, (72,57,0): 229, 63, 65, (72,58,0): 225, 57, 57, (72,59,0): 227, 59, 58, (72,60,0): 226, 58, 57, (72,61,0): 219, 55, 53, (72,62,0): 216, 54, 49, (72,63,0): 214, 59, 54, (72,64,0): 203, 56, 49, (72,65,0): 192, 53, 46, (72,66,0): 199, 66, 59, (72,67,0): 187, 60, 51, (72,68,0): 191, 73, 63, (72,69,0): 198, 88, 75, (72,70,0): 185, 79, 65, (72,71,0): 206, 100, 86, (72,72,0): 209, 99, 84, (72,73,0): 204, 88, 73, (72,74,0): 197, 71, 57, (72,75,0): 196, 58, 47, (72,76,0): 205, 54, 45, (72,77,0): 216, 55, 47, (72,78,0): 225, 54, 47, (72,79,0): 227, 52, 47, (72,80,0): 223, 48, 45, (72,81,0): 223, 50, 44, (72,82,0): 224, 55, 48, (72,83,0): 228, 61, 52, (72,84,0): 224, 60, 48, (72,85,0): 221, 55, 41, (72,86,0): 223, 53, 40, (72,87,0): 229, 55, 44, (72,88,0): 228, 47, 36, (72,89,0): 234, 47, 38, (72,90,0): 236, 47, 41, (72,91,0): 238, 49, 45, (72,92,0): 238, 50, 48, (72,93,0): 235, 52, 48, (72,94,0): 232, 53, 49, (72,95,0): 226, 54, 52, (72,96,0): 215, 55, 57, (72,97,0): 230, 74, 78, (72,98,0): 245, 89, 93, (72,99,0): 237, 78, 83, (72,100,0): 215, 56, 61, (72,101,0): 215, 54, 60, (72,102,0): 249, 88, 96, (72,103,0): 255, 126, 132, (72,104,0): 255, 120, 128, (72,105,0): 255, 107, 113, (72,106,0): 255, 99, 107, (72,107,0): 255, 102, 109, (72,108,0): 255, 101, 107, (72,109,0): 245, 92, 97, (72,110,0): 242, 89, 92, (72,111,0): 252, 91, 96, (72,112,0): 255, 87, 90, (72,113,0): 255, 70, 75, (72,114,0): 249, 58, 66, (72,115,0): 248, 57, 65, (72,116,0): 243, 51, 62, (72,117,0): 235, 45, 57, (72,118,0): 234, 50, 62, (72,119,0): 238, 62, 72, (72,120,0): 252, 85, 95, (72,121,0): 255, 97, 105, (72,122,0): 255, 104, 114, (72,123,0): 254, 103, 112, (72,124,0): 251, 100, 109, (72,125,0): 254, 100, 110, (72,126,0): 255, 97, 111, (72,127,0): 251, 94, 103, (72,128,0): 237, 83, 83, (72,129,0): 223, 70, 64, (72,130,0): 214, 56, 53, (72,131,0): 214, 52, 49, (72,132,0): 215, 49, 49, (72,133,0): 215, 47, 46, (72,134,0): 216, 51, 49, (72,135,0): 219, 57, 52, (72,136,0): 225, 68, 61, (72,137,0): 220, 66, 58, (72,138,0): 217, 63, 55, (72,139,0): 214, 60, 52, (72,140,0): 215, 57, 48, (72,141,0): 219, 56, 49, (72,142,0): 224, 57, 51, (72,143,0): 230, 54, 54, (72,144,0): 240, 55, 60, (72,145,0): 243, 52, 59, (72,146,0): 243, 52, 59, (72,147,0): 246, 52, 60, (72,148,0): 245, 54, 59, (72,149,0): 242, 53, 57, (72,150,0): 235, 51, 51, (72,151,0): 227, 49, 47, (72,152,0): 222, 51, 44, (72,153,0): 222, 53, 46, (72,154,0): 223, 55, 46, (72,155,0): 224, 53, 43, (72,156,0): 228, 51, 43, (72,157,0): 233, 50, 44, (72,158,0): 239, 50, 44, (72,159,0): 245, 50, 48, (72,160,0): 247, 49, 50, (72,161,0): 248, 48, 51, (72,162,0): 250, 47, 50, (72,163,0): 249, 46, 49, (72,164,0): 249, 47, 47, (72,165,0): 243, 48, 46, (72,166,0): 236, 51, 46, (72,167,0): 229, 55, 46, (72,168,0): 224, 63, 53, (72,169,0): 204, 56, 44, (72,170,0): 191, 54, 44, (72,171,0): 175, 47, 38, (72,172,0): 184, 59, 55, (72,173,0): 210, 88, 87, (72,174,0): 255, 152, 154, (72,175,0): 254, 123, 131, (72,176,0): 255, 109, 128, (72,177,0): 255, 102, 124, (72,178,0): 246, 93, 114, (72,179,0): 239, 81, 104, (72,180,0): 241, 72, 101, (72,181,0): 249, 68, 101, (72,182,0): 253, 61, 100, (72,183,0): 245, 59, 96, (72,184,0): 242, 79, 108, (72,185,0): 209, 84, 100, (72,186,0): 137, 61, 63, (72,187,0): 80, 44, 32, (72,188,0): 69, 58, 38, (72,189,0): 68, 70, 46, (72,190,0): 77, 77, 53, (72,191,0): 90, 94, 67, (72,192,0): 91, 105, 69, (72,193,0): 99, 120, 77, (72,194,0): 113, 136, 90, (72,195,0): 120, 146, 98, (72,196,0): 120, 150, 96, (72,197,0): 116, 149, 92, (72,198,0): 114, 150, 89, (72,199,0): 113, 152, 89, (72,200,0): 108, 149, 83, (72,201,0): 109, 150, 82, (72,202,0): 110, 151, 83, (72,203,0): 111, 152, 84, (72,204,0): 114, 153, 88, (72,205,0): 116, 155, 90, (72,206,0): 117, 156, 93, (72,207,0): 117, 156, 91, (72,208,0): 116, 155, 88, (72,209,0): 116, 157, 87, (72,210,0): 118, 160, 88, (72,211,0): 119, 161, 87, (72,212,0): 118, 162, 87, (72,213,0): 118, 162, 85, (72,214,0): 117, 161, 84, (72,215,0): 116, 160, 83, (72,216,0): 123, 165, 91, (72,217,0): 123, 163, 93, (72,218,0): 122, 158, 94, (72,219,0): 117, 151, 91, (72,220,0): 109, 139, 85, (72,221,0): 98, 126, 77, (72,222,0): 88, 114, 67, (72,223,0): 83, 106, 62, (72,224,0): 63, 85, 46, (72,225,0): 63, 85, 47, (72,226,0): 62, 84, 46, (73,0,0): 91, 75, 59, (73,1,0): 94, 78, 62, (73,2,0): 96, 80, 64, (73,3,0): 96, 80, 64, (73,4,0): 96, 80, 64, (73,5,0): 95, 79, 63, (73,6,0): 96, 80, 64, (73,7,0): 97, 81, 65, (73,8,0): 98, 82, 66, (73,9,0): 96, 80, 64, (73,10,0): 95, 79, 63, (73,11,0): 96, 80, 64, (73,12,0): 98, 82, 66, (73,13,0): 99, 83, 67, (73,14,0): 98, 82, 66, (73,15,0): 96, 80, 64, (73,16,0): 102, 86, 71, (73,17,0): 95, 81, 70, (73,18,0): 92, 79, 71, (73,19,0): 94, 84, 83, (73,20,0): 97, 90, 97, (73,21,0): 100, 96, 111, (73,22,0): 109, 107, 131, (73,23,0): 118, 119, 150, (73,24,0): 119, 121, 162, (73,25,0): 123, 125, 174, (73,26,0): 125, 127, 184, (73,27,0): 120, 124, 185, (73,28,0): 113, 117, 181, (73,29,0): 107, 112, 180, (73,30,0): 108, 111, 182, (73,31,0): 110, 113, 190, (73,32,0): 117, 119, 206, (73,33,0): 124, 126, 211, (73,34,0): 137, 137, 209, (73,35,0): 152, 152, 206, (73,36,0): 168, 167, 199, (73,37,0): 184, 182, 193, (73,38,0): 201, 197, 186, (73,39,0): 211, 206, 177, (73,40,0): 219, 214, 172, (73,41,0): 226, 219, 167, (73,42,0): 231, 222, 167, (73,43,0): 230, 221, 164, (73,44,0): 228, 219, 164, (73,45,0): 226, 216, 163, (73,46,0): 219, 209, 158, (73,47,0): 212, 199, 154, (73,48,0): 212, 188, 154, (73,49,0): 189, 155, 128, (73,50,0): 170, 124, 100, (73,51,0): 199, 138, 119, (73,52,0): 202, 125, 109, (73,53,0): 182, 86, 74, (73,54,0): 211, 96, 91, (73,55,0): 246, 114, 112, (73,56,0): 236, 90, 91, (73,57,0): 231, 75, 76, (73,58,0): 226, 63, 64, (73,59,0): 228, 62, 62, (73,60,0): 233, 63, 64, (73,61,0): 229, 59, 59, (73,62,0): 224, 54, 54, (73,63,0): 219, 54, 52, (73,64,0): 214, 61, 56, (73,65,0): 201, 56, 51, (73,66,0): 202, 63, 56, (73,67,0): 185, 54, 46, (73,68,0): 184, 62, 51, (73,69,0): 189, 75, 64, (73,70,0): 182, 72, 59, (73,71,0): 200, 93, 77, (73,72,0): 221, 111, 96, (73,73,0): 212, 96, 81, (73,74,0): 198, 72, 58, (73,75,0): 189, 53, 41, (73,76,0): 196, 48, 38, (73,77,0): 212, 54, 45, (73,78,0): 220, 53, 45, (73,79,0): 219, 48, 41, (73,80,0): 226, 53, 49, (73,81,0): 229, 57, 53, (73,82,0): 228, 61, 55, (73,83,0): 224, 60, 51, (73,84,0): 220, 56, 46, (73,85,0): 219, 53, 41, (73,86,0): 223, 52, 42, (73,87,0): 227, 53, 42, (73,88,0): 236, 55, 46, (73,89,0): 237, 53, 43, (73,90,0): 237, 50, 43, (73,91,0): 235, 48, 43, (73,92,0): 231, 48, 44, (73,93,0): 227, 50, 44, (73,94,0): 225, 52, 46, (73,95,0): 221, 53, 50, (73,96,0): 214, 56, 55, (73,97,0): 216, 62, 64, (73,98,0): 228, 74, 76, (73,99,0): 243, 87, 91, (73,100,0): 250, 94, 98, (73,101,0): 252, 92, 100, (73,102,0): 254, 93, 101, (73,103,0): 255, 97, 105, (73,104,0): 240, 79, 87, (73,105,0): 235, 74, 82, (73,106,0): 238, 78, 86, (73,107,0): 252, 92, 100, (73,108,0): 255, 104, 111, (73,109,0): 255, 101, 107, (73,110,0): 244, 89, 95, (73,111,0): 242, 79, 84, (73,112,0): 236, 53, 58, (73,113,0): 239, 45, 53, (73,114,0): 241, 44, 54, (73,115,0): 244, 47, 57, (73,116,0): 238, 40, 53, (73,117,0): 228, 34, 45, (73,118,0): 227, 41, 54, (73,119,0): 234, 57, 67, (73,120,0): 251, 81, 90, (73,121,0): 253, 92, 100, (73,122,0): 255, 100, 108, (73,123,0): 255, 101, 109, (73,124,0): 255, 102, 110, (73,125,0): 255, 101, 109, (73,126,0): 252, 92, 104, (73,127,0): 242, 82, 90, (73,128,0): 229, 69, 69, (73,129,0): 222, 60, 55, (73,130,0): 219, 54, 52, (73,131,0): 222, 54, 51, (73,132,0): 223, 53, 53, (73,133,0): 220, 51, 48, (73,134,0): 218, 50, 47, (73,135,0): 219, 54, 50, (73,136,0): 224, 62, 57, (73,137,0): 219, 62, 55, (73,138,0): 216, 59, 52, (73,139,0): 215, 58, 51, (73,140,0): 219, 56, 49, (73,141,0): 223, 56, 50, (73,142,0): 229, 57, 53, (73,143,0): 231, 58, 54, (73,144,0): 233, 57, 59, (73,145,0): 234, 55, 58, (73,146,0): 235, 55, 58, (73,147,0): 238, 55, 57, (73,148,0): 238, 55, 57, (73,149,0): 236, 54, 53, (73,150,0): 229, 51, 49, (73,151,0): 223, 50, 44, (73,152,0): 220, 51, 44, (73,153,0): 221, 54, 45, (73,154,0): 223, 55, 44, (73,155,0): 226, 54, 44, (73,156,0): 229, 50, 43, (73,157,0): 234, 49, 44, (73,158,0): 242, 49, 44, (73,159,0): 245, 50, 48, (73,160,0): 247, 49, 50, (73,161,0): 247, 48, 51, (73,162,0): 250, 47, 50, (73,163,0): 249, 46, 49, (73,164,0): 247, 47, 47, (73,165,0): 243, 48, 46, (73,166,0): 236, 51, 46, (73,167,0): 229, 55, 46, (73,168,0): 223, 60, 51, (73,169,0): 212, 61, 50, (73,170,0): 194, 56, 46, (73,171,0): 182, 49, 42, (73,172,0): 183, 55, 52, (73,173,0): 216, 90, 91, (73,174,0): 255, 144, 147, (73,175,0): 251, 115, 125, (73,176,0): 254, 103, 122, (73,177,0): 254, 94, 118, (73,178,0): 247, 87, 111, (73,179,0): 244, 80, 105, (73,180,0): 246, 71, 102, (73,181,0): 246, 65, 98, (73,182,0): 250, 61, 99, (73,183,0): 241, 66, 99, (73,184,0): 227, 81, 104, (73,185,0): 183, 76, 86, (73,186,0): 119, 60, 56, (73,187,0): 76, 50, 35, (73,188,0): 62, 57, 35, (73,189,0): 61, 65, 40, (73,190,0): 71, 71, 47, (73,191,0): 80, 83, 56, (73,192,0): 88, 99, 65, (73,193,0): 96, 114, 74, (73,194,0): 110, 131, 88, (73,195,0): 117, 143, 95, (73,196,0): 118, 147, 93, (73,197,0): 116, 147, 88, (73,198,0): 113, 147, 86, (73,199,0): 112, 148, 84, (73,200,0): 107, 146, 79, (73,201,0): 107, 148, 80, (73,202,0): 108, 149, 81, (73,203,0): 109, 150, 82, (73,204,0): 112, 151, 86, (73,205,0): 114, 153, 88, (73,206,0): 115, 154, 91, (73,207,0): 115, 154, 89, (73,208,0): 116, 155, 88, (73,209,0): 117, 157, 87, (73,210,0): 117, 159, 87, (73,211,0): 117, 159, 87, (73,212,0): 116, 158, 84, (73,213,0): 114, 158, 81, (73,214,0): 113, 157, 82, (73,215,0): 112, 156, 81, (73,216,0): 110, 152, 80, (73,217,0): 108, 148, 78, (73,218,0): 104, 140, 76, (73,219,0): 98, 129, 70, (73,220,0): 88, 117, 63, (73,221,0): 78, 105, 54, (73,222,0): 70, 93, 47, (73,223,0): 64, 87, 43, (73,224,0): 64, 87, 45, (73,225,0): 64, 87, 45, (73,226,0): 64, 87, 45, (74,0,0): 89, 76, 60, (74,1,0): 91, 78, 62, (74,2,0): 94, 81, 65, (74,3,0): 94, 81, 65, (74,4,0): 94, 81, 65, (74,5,0): 94, 81, 65, (74,6,0): 95, 82, 66, (74,7,0): 96, 83, 67, (74,8,0): 97, 84, 68, (74,9,0): 96, 83, 67, (74,10,0): 95, 82, 66, (74,11,0): 96, 83, 67, (74,12,0): 97, 84, 68, (74,13,0): 97, 84, 68, (74,14,0): 96, 83, 67, (74,15,0): 94, 80, 67, (74,16,0): 98, 85, 77, (74,17,0): 92, 81, 77, (74,18,0): 91, 81, 82, (74,19,0): 99, 89, 98, (74,20,0): 107, 100, 116, (74,21,0): 113, 109, 132, (74,22,0): 118, 117, 149, (74,23,0): 121, 123, 164, (74,24,0): 121, 123, 172, (74,25,0): 121, 126, 182, (74,26,0): 120, 124, 187, (74,27,0): 110, 115, 181, (74,28,0): 101, 105, 176, (74,29,0): 96, 103, 175, (74,30,0): 106, 110, 184, (74,31,0): 114, 117, 196, (74,32,0): 125, 125, 213, (74,33,0): 135, 133, 217, (74,34,0): 151, 148, 217, (74,35,0): 169, 167, 216, (74,36,0): 187, 185, 209, (74,37,0): 203, 201, 202, (74,38,0): 220, 215, 193, (74,39,0): 229, 224, 184, (74,40,0): 233, 228, 173, (74,41,0): 237, 231, 169, (74,42,0): 240, 232, 167, (74,43,0): 237, 229, 166, (74,44,0): 231, 225, 167, (74,45,0): 226, 219, 165, (74,46,0): 215, 207, 160, (74,47,0): 203, 196, 154, (74,48,0): 185, 174, 144, (74,49,0): 170, 154, 129, (74,50,0): 156, 130, 107, (74,51,0): 171, 130, 112, (74,52,0): 168, 110, 96, (74,53,0): 158, 81, 71, (74,54,0): 187, 93, 85, (74,55,0): 222, 109, 105, (74,56,0): 247, 117, 117, (74,57,0): 238, 96, 95, (74,58,0): 227, 74, 76, (74,59,0): 226, 66, 68, (74,60,0): 234, 65, 68, (74,61,0): 235, 62, 64, (74,62,0): 231, 57, 58, (74,63,0): 224, 54, 54, (74,64,0): 223, 61, 58, (74,65,0): 212, 59, 54, (74,66,0): 212, 65, 58, (74,67,0): 194, 55, 48, (74,68,0): 183, 55, 44, (74,69,0): 183, 62, 51, (74,70,0): 174, 61, 47, (74,71,0): 182, 70, 56, (74,72,0): 219, 106, 92, (74,73,0): 223, 105, 91, (74,74,0): 217, 91, 77, (74,75,0): 202, 66, 54, (74,76,0): 197, 50, 40, (74,77,0): 209, 52, 43, (74,78,0): 217, 54, 45, (74,79,0): 217, 50, 44, (74,80,0): 222, 53, 50, (74,81,0): 233, 65, 62, (74,82,0): 236, 71, 67, (74,83,0): 224, 61, 54, (74,84,0): 213, 50, 41, (74,85,0): 213, 49, 39, (74,86,0): 218, 50, 39, (74,87,0): 222, 48, 37, (74,88,0): 230, 52, 42, (74,89,0): 232, 49, 41, (74,90,0): 231, 46, 41, (74,91,0): 230, 47, 41, (74,92,0): 227, 50, 44, (74,93,0): 226, 55, 47, (74,94,0): 225, 61, 52, (74,95,0): 224, 66, 57, (74,96,0): 198, 45, 40, (74,97,0): 202, 52, 51, (74,98,0): 220, 68, 67, (74,99,0): 240, 86, 88, (74,100,0): 250, 94, 98, (74,101,0): 247, 90, 97, (74,102,0): 243, 83, 91, (74,103,0): 241, 81, 91, (74,104,0): 231, 69, 80, (74,105,0): 232, 70, 81, (74,106,0): 237, 77, 87, (74,107,0): 251, 91, 101, (74,108,0): 255, 107, 116, (74,109,0): 255, 109, 115, (74,110,0): 242, 87, 93, (74,111,0): 225, 60, 66, (74,112,0): 232, 47, 53, (74,113,0): 242, 45, 52, (74,114,0): 250, 50, 60, (74,115,0): 251, 51, 62, (74,116,0): 244, 44, 57, (74,117,0): 236, 40, 52, (74,118,0): 243, 55, 69, (74,119,0): 255, 76, 87, (74,120,0): 245, 74, 83, (74,121,0): 244, 80, 87, (74,122,0): 247, 87, 95, (74,123,0): 252, 95, 102, (74,124,0): 255, 100, 107, (74,125,0): 255, 97, 105, (74,126,0): 246, 82, 89, (74,127,0): 232, 67, 73, (74,128,0): 222, 57, 55, (74,129,0): 222, 55, 49, (74,130,0): 227, 55, 53, (74,131,0): 233, 60, 56, (74,132,0): 235, 59, 59, (74,133,0): 230, 57, 53, (74,134,0): 225, 53, 49, (74,135,0): 221, 54, 48, (74,136,0): 221, 58, 51, (74,137,0): 217, 59, 50, (74,138,0): 215, 57, 48, (74,139,0): 215, 57, 48, (74,140,0): 220, 55, 49, (74,141,0): 225, 56, 51, (74,142,0): 231, 58, 54, (74,143,0): 233, 60, 56, (74,144,0): 227, 57, 57, (74,145,0): 227, 57, 57, (74,146,0): 229, 57, 55, (74,147,0): 231, 57, 56, (74,148,0): 232, 56, 56, (74,149,0): 230, 55, 52, (74,150,0): 225, 52, 48, (74,151,0): 219, 50, 43, (74,152,0): 218, 54, 45, (74,153,0): 219, 55, 45, (74,154,0): 222, 56, 44, (74,155,0): 226, 54, 44, (74,156,0): 231, 50, 41, (74,157,0): 235, 48, 41, (74,158,0): 243, 48, 44, (74,159,0): 247, 49, 48, (74,160,0): 245, 49, 50, (74,161,0): 245, 49, 51, (74,162,0): 248, 48, 50, (74,163,0): 247, 47, 49, (74,164,0): 247, 47, 47, (74,165,0): 242, 48, 46, (74,166,0): 238, 51, 46, (74,167,0): 231, 54, 46, (74,168,0): 221, 57, 48, (74,169,0): 220, 68, 57, (74,170,0): 199, 56, 48, (74,171,0): 187, 52, 46, (74,172,0): 181, 47, 46, (74,173,0): 228, 95, 98, (74,174,0): 255, 131, 136, (74,175,0): 248, 108, 119, (74,176,0): 252, 99, 120, (74,177,0): 251, 88, 115, (74,178,0): 248, 81, 109, (74,179,0): 251, 78, 108, (74,180,0): 250, 69, 102, (74,181,0): 243, 59, 93, (74,182,0): 239, 61, 95, (74,183,0): 233, 74, 102, (74,184,0): 210, 85, 103, (74,185,0): 155, 68, 74, (74,186,0): 107, 60, 52, (74,187,0): 79, 62, 44, (74,188,0): 62, 60, 39, (74,189,0): 59, 63, 40, (74,190,0): 70, 68, 47, (74,191,0): 72, 72, 48, (74,192,0): 81, 92, 60, (74,193,0): 89, 107, 69, (74,194,0): 103, 124, 81, (74,195,0): 114, 137, 91, (74,196,0): 116, 143, 90, (74,197,0): 113, 144, 85, (74,198,0): 109, 143, 82, (74,199,0): 107, 143, 79, (74,200,0): 105, 144, 77, (74,201,0): 105, 145, 75, (74,202,0): 105, 146, 76, (74,203,0): 107, 148, 80, (74,204,0): 109, 150, 84, (74,205,0): 110, 151, 85, (74,206,0): 112, 151, 88, (74,207,0): 113, 152, 87, (74,208,0): 117, 156, 89, (74,209,0): 117, 157, 87, (74,210,0): 116, 156, 85, (74,211,0): 114, 156, 84, (74,212,0): 112, 154, 82, (74,213,0): 109, 151, 77, (74,214,0): 107, 149, 77, (74,215,0): 106, 148, 76, (74,216,0): 101, 141, 71, (74,217,0): 97, 136, 69, (74,218,0): 91, 127, 65, (74,219,0): 85, 116, 59, (74,220,0): 76, 105, 51, (74,221,0): 69, 96, 45, (74,222,0): 65, 88, 42, (74,223,0): 62, 85, 39, (74,224,0): 67, 93, 48, (74,225,0): 68, 94, 49, (74,226,0): 69, 95, 50, (75,0,0): 87, 74, 58, (75,1,0): 90, 77, 61, (75,2,0): 92, 79, 63, (75,3,0): 94, 81, 65, (75,4,0): 93, 80, 64, (75,5,0): 94, 81, 65, (75,6,0): 95, 82, 66, (75,7,0): 97, 84, 68, (75,8,0): 96, 83, 67, (75,9,0): 96, 83, 67, (75,10,0): 96, 83, 67, (75,11,0): 97, 84, 68, (75,12,0): 97, 84, 68, (75,13,0): 96, 83, 67, (75,14,0): 95, 82, 66, (75,15,0): 92, 80, 68, (75,16,0): 90, 79, 77, (75,17,0): 90, 81, 86, (75,18,0): 98, 88, 99, (75,19,0): 106, 99, 115, (75,20,0): 113, 109, 134, (75,21,0): 118, 117, 149, (75,22,0): 120, 122, 163, (75,23,0): 122, 124, 173, (75,24,0): 119, 124, 180, (75,25,0): 115, 121, 183, (75,26,0): 109, 114, 180, (75,27,0): 98, 105, 175, (75,28,0): 93, 100, 172, (75,29,0): 97, 103, 177, (75,30,0): 108, 114, 190, (75,31,0): 120, 123, 202, (75,32,0): 137, 138, 221, (75,33,0): 149, 146, 225, (75,34,0): 164, 162, 225, (75,35,0): 182, 181, 225, (75,36,0): 199, 196, 217, (75,37,0): 213, 209, 208, (75,38,0): 225, 220, 198, (75,39,0): 231, 227, 189, (75,40,0): 235, 229, 179, (75,41,0): 238, 233, 175, (75,42,0): 238, 232, 174, (75,43,0): 233, 226, 171, (75,44,0): 227, 219, 170, (75,45,0): 218, 211, 167, (75,46,0): 203, 195, 158, (75,47,0): 188, 182, 150, (75,48,0): 166, 164, 139, (75,49,0): 157, 152, 132, (75,50,0): 150, 134, 118, (75,51,0): 155, 127, 113, (75,52,0): 155, 113, 99, (75,53,0): 156, 98, 87, (75,54,0): 181, 104, 96, (75,55,0): 208, 113, 109, (75,56,0): 251, 139, 137, (75,57,0): 243, 118, 116, (75,58,0): 232, 92, 93, (75,59,0): 229, 76, 78, (75,60,0): 229, 69, 71, (75,61,0): 234, 65, 68, (75,62,0): 234, 61, 63, (75,63,0): 232, 60, 60, (75,64,0): 223, 58, 56, (75,65,0): 219, 60, 56, (75,66,0): 222, 69, 63, (75,67,0): 211, 67, 59, (75,68,0): 195, 58, 48, (75,69,0): 186, 58, 47, (75,70,0): 176, 54, 41, (75,71,0): 167, 49, 35, (75,72,0): 191, 73, 59, (75,73,0): 219, 97, 82, (75,74,0): 234, 107, 92, (75,75,0): 219, 83, 69, (75,76,0): 201, 58, 44, (75,77,0): 204, 52, 39, (75,78,0): 212, 54, 43, (75,79,0): 215, 52, 45, (75,80,0): 217, 52, 50, (75,81,0): 241, 77, 75, (75,82,0): 254, 90, 88, (75,83,0): 237, 75, 70, (75,84,0): 217, 56, 48, (75,85,0): 214, 51, 42, (75,86,0): 219, 52, 43, (75,87,0): 222, 50, 40, (75,88,0): 223, 46, 38, (75,89,0): 225, 44, 37, (75,90,0): 225, 44, 37, (75,91,0): 222, 45, 37, (75,92,0): 220, 49, 41, (75,93,0): 218, 54, 44, (75,94,0): 217, 59, 48, (75,95,0): 215, 63, 52, (75,96,0): 194, 47, 39, (75,97,0): 196, 52, 44, (75,98,0): 206, 58, 54, (75,99,0): 217, 67, 66, (75,100,0): 223, 70, 72, (75,101,0): 224, 69, 73, (75,102,0): 228, 71, 78, (75,103,0): 234, 77, 86, (75,104,0): 241, 81, 93, (75,105,0): 246, 86, 98, (75,106,0): 247, 87, 97, (75,107,0): 248, 91, 100, (75,108,0): 255, 102, 111, (75,109,0): 255, 107, 115, (75,110,0): 241, 86, 94, (75,111,0): 219, 56, 61, (75,112,0): 233, 50, 55, (75,113,0): 240, 47, 52, (75,114,0): 241, 46, 54, (75,115,0): 240, 43, 52, (75,116,0): 235, 37, 50, (75,117,0): 235, 41, 52, (75,118,0): 249, 62, 73, (75,119,0): 255, 83, 95, (75,120,0): 237, 63, 73, (75,121,0): 232, 65, 73, (75,122,0): 234, 71, 76, (75,123,0): 242, 81, 86, (75,124,0): 255, 90, 96, (75,125,0): 255, 88, 93, (75,126,0): 244, 71, 77, (75,127,0): 227, 54, 56, (75,128,0): 225, 53, 51, (75,129,0): 228, 55, 51, (75,130,0): 234, 59, 56, (75,131,0): 242, 64, 62, (75,132,0): 244, 64, 63, (75,133,0): 239, 61, 59, (75,134,0): 230, 57, 53, (75,135,0): 224, 55, 50, (75,136,0): 221, 56, 50, (75,137,0): 218, 57, 49, (75,138,0): 217, 56, 48, (75,139,0): 217, 56, 48, (75,140,0): 220, 55, 49, (75,141,0): 227, 55, 51, (75,142,0): 232, 57, 54, (75,143,0): 233, 58, 55, (75,144,0): 226, 58, 55, (75,145,0): 224, 59, 57, (75,146,0): 227, 58, 55, (75,147,0): 230, 58, 56, (75,148,0): 231, 58, 54, (75,149,0): 229, 56, 52, (75,150,0): 224, 53, 46, (75,151,0): 218, 51, 43, (75,152,0): 218, 54, 44, (75,153,0): 219, 55, 45, (75,154,0): 222, 56, 44, (75,155,0): 226, 54, 44, (75,156,0): 231, 50, 41, (75,157,0): 235, 48, 41, (75,158,0): 242, 47, 43, (75,159,0): 246, 48, 47, (75,160,0): 244, 50, 50, (75,161,0): 244, 50, 51, (75,162,0): 247, 49, 50, (75,163,0): 246, 48, 49, (75,164,0): 246, 48, 47, (75,165,0): 242, 48, 46, (75,166,0): 238, 51, 46, (75,167,0): 231, 54, 46, (75,168,0): 220, 56, 47, (75,169,0): 224, 70, 60, (75,170,0): 201, 57, 49, (75,171,0): 190, 51, 46, (75,172,0): 182, 44, 44, (75,173,0): 238, 102, 106, (75,174,0): 255, 121, 128, (75,175,0): 248, 103, 116, (75,176,0): 253, 100, 121, (75,177,0): 250, 86, 113, (75,178,0): 251, 76, 107, (75,179,0): 255, 72, 106, (75,180,0): 252, 64, 99, (75,181,0): 239, 55, 89, (75,182,0): 232, 63, 94, (75,183,0): 224, 82, 104, (75,184,0): 195, 89, 101, (75,185,0): 135, 67, 66, (75,186,0): 101, 67, 55, (75,187,0): 90, 79, 59, (75,188,0): 72, 70, 49, (75,189,0): 65, 67, 45, (75,190,0): 76, 71, 51, (75,191,0): 70, 68, 45, (75,192,0): 76, 85, 54, (75,193,0): 83, 99, 62, (75,194,0): 98, 116, 76, (75,195,0): 108, 131, 85, (75,196,0): 112, 139, 88, (75,197,0): 110, 141, 82, (75,198,0): 107, 141, 80, (75,199,0): 105, 142, 75, (75,200,0): 103, 143, 73, (75,201,0): 104, 144, 74, (75,202,0): 104, 145, 75, (75,203,0): 106, 147, 77, (75,204,0): 107, 148, 80, (75,205,0): 109, 150, 84, (75,206,0): 111, 150, 87, (75,207,0): 112, 151, 86, (75,208,0): 116, 155, 88, (75,209,0): 115, 155, 85, (75,210,0): 113, 153, 83, (75,211,0): 111, 151, 80, (75,212,0): 106, 147, 77, (75,213,0): 103, 144, 74, (75,214,0): 101, 142, 72, (75,215,0): 100, 141, 71, (75,216,0): 96, 135, 68, (75,217,0): 93, 129, 65, (75,218,0): 87, 121, 61, (75,219,0): 82, 113, 56, (75,220,0): 77, 105, 54, (75,221,0): 76, 102, 54, (75,222,0): 78, 101, 55, (75,223,0): 79, 102, 56, (75,224,0): 77, 103, 56, (75,225,0): 78, 104, 56, (75,226,0): 79, 105, 58, (76,0,0): 85, 72, 56, (76,1,0): 87, 74, 58, (76,2,0): 91, 78, 62, (76,3,0): 92, 79, 63, (76,4,0): 93, 80, 64, (76,5,0): 93, 80, 64, (76,6,0): 95, 82, 66, (76,7,0): 97, 84, 68, (76,8,0): 95, 82, 66, (76,9,0): 96, 83, 67, (76,10,0): 97, 84, 68, (76,11,0): 97, 84, 68, (76,12,0): 96, 83, 67, (76,13,0): 95, 82, 66, (76,14,0): 95, 82, 66, (76,15,0): 94, 81, 73, (76,16,0): 86, 77, 82, (76,17,0): 95, 88, 104, (76,18,0): 110, 102, 123, (76,19,0): 116, 112, 137, (76,20,0): 120, 116, 151, (76,21,0): 120, 119, 161, (76,22,0): 120, 122, 171, (76,23,0): 121, 123, 180, (76,24,0): 115, 121, 183, (76,25,0): 106, 114, 179, (76,26,0): 96, 103, 173, (76,27,0): 91, 99, 171, (76,28,0): 95, 103, 176, (76,29,0): 106, 114, 187, (76,30,0): 118, 124, 198, (76,31,0): 128, 132, 206, (76,32,0): 147, 149, 223, (76,33,0): 158, 159, 224, (76,34,0): 173, 174, 228, (76,35,0): 187, 189, 228, (76,36,0): 203, 201, 225, (76,37,0): 212, 211, 217, (76,38,0): 221, 218, 209, (76,39,0): 225, 223, 202, (76,40,0): 229, 224, 194, (76,41,0): 230, 226, 191, (76,42,0): 228, 222, 188, (76,43,0): 224, 215, 182, (76,44,0): 218, 208, 181, (76,45,0): 206, 198, 175, (76,46,0): 190, 182, 163, (76,47,0): 174, 167, 151, (76,48,0): 155, 153, 140, (76,49,0): 143, 141, 128, (76,50,0): 140, 132, 121, (76,51,0): 141, 123, 113, (76,52,0): 147, 117, 107, (76,53,0): 157, 114, 105, (76,54,0): 169, 109, 101, (76,55,0): 188, 111, 105, (76,56,0): 230, 137, 132, (76,57,0): 237, 129, 126, (76,58,0): 240, 116, 114, (76,59,0): 240, 102, 100, (76,60,0): 238, 88, 89, (76,61,0): 237, 79, 78, (76,62,0): 235, 69, 69, (76,63,0): 233, 65, 64, (76,64,0): 227, 58, 55, (76,65,0): 224, 59, 55, (76,66,0): 228, 66, 61, (76,67,0): 222, 69, 63, (76,68,0): 204, 60, 51, (76,69,0): 198, 61, 51, (76,70,0): 196, 66, 53, (76,71,0): 175, 49, 35, (76,72,0): 174, 48, 34, (76,73,0): 199, 73, 59, (76,74,0): 220, 88, 75, (76,75,0): 214, 78, 64, (76,76,0): 204, 61, 47, (76,77,0): 206, 56, 42, (76,78,0): 208, 54, 42, (76,79,0): 209, 51, 42, (76,80,0): 214, 52, 50, (76,81,0): 245, 85, 85, (76,82,0): 255, 107, 104, (76,83,0): 250, 93, 88, (76,84,0): 227, 68, 62, (76,85,0): 220, 59, 51, (76,86,0): 223, 59, 50, (76,87,0): 227, 56, 48, (76,88,0): 226, 52, 45, (76,89,0): 227, 50, 44, (76,90,0): 226, 49, 43, (76,91,0): 221, 48, 41, (76,92,0): 212, 48, 39, (76,93,0): 205, 47, 36, (76,94,0): 198, 47, 36, (76,95,0): 194, 48, 35, (76,96,0): 197, 57, 44, (76,97,0): 192, 52, 39, (76,98,0): 193, 51, 41, (76,99,0): 203, 58, 53, (76,100,0): 215, 67, 65, (76,101,0): 219, 69, 71, (76,102,0): 219, 66, 71, (76,103,0): 218, 64, 72, (76,104,0): 225, 69, 80, (76,105,0): 236, 80, 91, (76,106,0): 242, 86, 97, (76,107,0): 242, 86, 97, (76,108,0): 249, 93, 104, (76,109,0): 255, 101, 109, (76,110,0): 241, 87, 95, (76,111,0): 222, 63, 68, (76,112,0): 233, 59, 60, (76,113,0): 237, 53, 55, (76,114,0): 237, 51, 56, (76,115,0): 239, 50, 56, (76,116,0): 242, 50, 61, (76,117,0): 247, 57, 67, (76,118,0): 255, 72, 83, (76,119,0): 255, 86, 95, (76,120,0): 229, 53, 63, (76,121,0): 222, 51, 59, (76,122,0): 223, 54, 59, (76,123,0): 234, 65, 68, (76,124,0): 249, 74, 79, (76,125,0): 253, 72, 77, (76,126,0): 244, 59, 65, (76,127,0): 233, 49, 51, (76,128,0): 232, 53, 49, (76,129,0): 235, 57, 53, (76,130,0): 239, 60, 56, (76,131,0): 242, 60, 57, (76,132,0): 243, 59, 57, (76,133,0): 240, 58, 55, (76,134,0): 233, 55, 51, (76,135,0): 226, 55, 48, (76,136,0): 223, 59, 50, (76,137,0): 220, 59, 49, (76,138,0): 219, 58, 48, (76,139,0): 220, 57, 48, (76,140,0): 223, 56, 50, (76,141,0): 228, 55, 51, (76,142,0): 232, 54, 52, (76,143,0): 233, 55, 53, (76,144,0): 230, 58, 56, (76,145,0): 228, 59, 56, (76,146,0): 230, 58, 56, (76,147,0): 232, 58, 57, (76,148,0): 232, 59, 55, (76,149,0): 230, 57, 53, (76,150,0): 225, 54, 47, (76,151,0): 220, 51, 44, (76,152,0): 219, 55, 45, (76,153,0): 220, 56, 46, (76,154,0): 223, 57, 45, (76,155,0): 225, 55, 42, (76,156,0): 229, 51, 41, (76,157,0): 233, 49, 41, (76,158,0): 241, 48, 41, (76,159,0): 244, 49, 45, (76,160,0): 243, 51, 50, (76,161,0): 241, 51, 51, (76,162,0): 244, 50, 50, (76,163,0): 244, 48, 49, (76,164,0): 244, 49, 47, (76,165,0): 242, 48, 46, (76,166,0): 238, 51, 46, (76,167,0): 231, 54, 46, (76,168,0): 222, 55, 47, (76,169,0): 224, 67, 58, (76,170,0): 202, 55, 48, (76,171,0): 192, 49, 45, (76,172,0): 192, 49, 51, (76,173,0): 247, 106, 112, (76,174,0): 255, 113, 122, (76,175,0): 249, 103, 116, (76,176,0): 248, 95, 116, (76,177,0): 246, 82, 109, (76,178,0): 252, 68, 102, (76,179,0): 255, 63, 100, (76,180,0): 255, 59, 99, (76,181,0): 242, 58, 94, (76,182,0): 228, 71, 100, (76,183,0): 216, 91, 109, (76,184,0): 171, 86, 91, (76,185,0): 119, 69, 62, (76,186,0): 100, 74, 61, (76,187,0): 97, 89, 70, (76,188,0): 84, 79, 59, (76,189,0): 75, 73, 52, (76,190,0): 80, 73, 54, (76,191,0): 71, 69, 46, (76,192,0): 71, 80, 51, (76,193,0): 76, 92, 56, (76,194,0): 90, 108, 70, (76,195,0): 102, 124, 78, (76,196,0): 109, 133, 83, (76,197,0): 109, 138, 82, (76,198,0): 108, 140, 77, (76,199,0): 104, 141, 74, (76,200,0): 102, 142, 72, (76,201,0): 103, 143, 72, (76,202,0): 103, 145, 73, (76,203,0): 105, 146, 76, (76,204,0): 106, 147, 79, (76,205,0): 108, 149, 83, (76,206,0): 110, 149, 86, (76,207,0): 111, 150, 85, (76,208,0): 116, 153, 86, (76,209,0): 115, 152, 85, (76,210,0): 110, 149, 82, (76,211,0): 106, 146, 76, (76,212,0): 102, 143, 75, (76,213,0): 99, 140, 72, (76,214,0): 97, 138, 70, (76,215,0): 95, 136, 70, (76,216,0): 90, 129, 66, (76,217,0): 88, 124, 63, (76,218,0): 83, 116, 59, (76,219,0): 80, 110, 56, (76,220,0): 79, 107, 58, (76,221,0): 82, 108, 61, (76,222,0): 87, 110, 64, (76,223,0): 90, 113, 67, (76,224,0): 85, 111, 63, (76,225,0): 85, 112, 61, (76,226,0): 85, 111, 63, (77,0,0): 82, 69, 53, (77,1,0): 85, 72, 56, (77,2,0): 88, 75, 59, (77,3,0): 90, 77, 61, (77,4,0): 91, 78, 62, (77,5,0): 92, 79, 63, (77,6,0): 94, 81, 65, (77,7,0): 96, 83, 67, (77,8,0): 96, 83, 67, (77,9,0): 97, 84, 68, (77,10,0): 97, 84, 68, (77,11,0): 97, 84, 68, (77,12,0): 96, 83, 67, (77,13,0): 96, 83, 67, (77,14,0): 98, 85, 69, (77,15,0): 97, 86, 80, (77,16,0): 94, 86, 99, (77,17,0): 106, 101, 124, (77,18,0): 121, 117, 144, (77,19,0): 125, 121, 154, (77,20,0): 122, 121, 161, (77,21,0): 120, 121, 169, (77,22,0): 118, 121, 176, (77,23,0): 115, 119, 180, (77,24,0): 106, 114, 179, (77,25,0): 99, 106, 176, (77,26,0): 91, 99, 171, (77,27,0): 93, 101, 174, (77,28,0): 104, 112, 185, (77,29,0): 118, 126, 199, (77,30,0): 129, 135, 209, (77,31,0): 136, 141, 209, (77,32,0): 153, 157, 220, (77,33,0): 163, 166, 221, (77,34,0): 175, 179, 226, (77,35,0): 187, 191, 228, (77,36,0): 198, 199, 227, (77,37,0): 207, 206, 224, (77,38,0): 212, 211, 219, (77,39,0): 215, 213, 214, (77,40,0): 217, 214, 209, (77,41,0): 217, 213, 204, (77,42,0): 215, 208, 198, (77,43,0): 210, 201, 192, (77,44,0): 204, 195, 190, (77,45,0): 197, 186, 184, (77,46,0): 180, 168, 168, (77,47,0): 163, 155, 153, (77,48,0): 141, 137, 134, (77,49,0): 124, 121, 116, (77,50,0): 124, 116, 113, (77,51,0): 120, 107, 101, (77,52,0): 130, 107, 101, (77,53,0): 143, 110, 103, (77,54,0): 144, 97, 91, (77,55,0): 157, 96, 91, (77,56,0): 192, 115, 109, (77,57,0): 215, 122, 117, (77,58,0): 237, 128, 123, (77,59,0): 249, 126, 121, (77,60,0): 253, 115, 112, (77,61,0): 250, 100, 99, (77,62,0): 243, 85, 84, (77,63,0): 237, 73, 71, (77,64,0): 237, 68, 63, (77,65,0): 234, 62, 58, (77,66,0): 225, 60, 54, (77,67,0): 224, 65, 59, (77,68,0): 209, 58, 49, (77,69,0): 211, 67, 58, (77,70,0): 221, 84, 74, (77,71,0): 194, 62, 50, (77,72,0): 184, 54, 41, (77,73,0): 189, 57, 44, (77,74,0): 194, 61, 46, (77,75,0): 200, 63, 47, (77,76,0): 207, 66, 49, (77,77,0): 215, 67, 53, (77,78,0): 214, 64, 49, (77,79,0): 209, 55, 45, (77,80,0): 208, 50, 47, (77,81,0): 234, 76, 77, (77,82,0): 250, 95, 93, (77,83,0): 242, 87, 83, (77,84,0): 223, 68, 63, (77,85,0): 217, 58, 52, (77,86,0): 219, 56, 49, (77,87,0): 224, 55, 48, (77,88,0): 230, 57, 51, (77,89,0): 231, 57, 50, (77,90,0): 231, 57, 50, (77,91,0): 226, 58, 49, (77,92,0): 218, 57, 47, (77,93,0): 209, 57, 44, (77,94,0): 202, 56, 43, (77,95,0): 196, 56, 41, (77,96,0): 176, 40, 24, (77,97,0): 184, 51, 34, (77,98,0): 200, 64, 50, (77,99,0): 211, 73, 62, (77,100,0): 210, 68, 64, (77,101,0): 203, 59, 58, (77,102,0): 204, 55, 59, (77,103,0): 207, 58, 64, (77,104,0): 211, 57, 67, (77,105,0): 227, 73, 83, (77,106,0): 237, 86, 95, (77,107,0): 240, 89, 98, (77,108,0): 244, 93, 102, (77,109,0): 246, 95, 104, (77,110,0): 232, 83, 89, (77,111,0): 218, 63, 67, (77,112,0): 229, 64, 62, (77,113,0): 236, 63, 59, (77,114,0): 243, 64, 67, (77,115,0): 253, 70, 74, (77,116,0): 255, 76, 84, (77,117,0): 255, 81, 89, (77,118,0): 255, 84, 93, (77,119,0): 255, 85, 94, (77,120,0): 226, 51, 58, (77,121,0): 221, 46, 53, (77,122,0): 221, 46, 51, (77,123,0): 231, 55, 58, (77,124,0): 245, 60, 65, (77,125,0): 249, 58, 63, (77,126,0): 248, 52, 56, (77,127,0): 244, 48, 50, (77,128,0): 237, 52, 50, (77,129,0): 239, 57, 53, (77,130,0): 240, 56, 54, (77,131,0): 237, 52, 50, (77,132,0): 235, 50, 48, (77,133,0): 234, 50, 48, (77,134,0): 231, 52, 48, (77,135,0): 225, 52, 46, (77,136,0): 227, 60, 52, (77,137,0): 224, 61, 52, (77,138,0): 223, 60, 51, (77,139,0): 222, 59, 50, (77,140,0): 225, 56, 51, (77,141,0): 228, 55, 51, (77,142,0): 232, 52, 51, (77,143,0): 232, 52, 51, (77,144,0): 232, 56, 56, (77,145,0): 231, 57, 56, (77,146,0): 232, 56, 56, (77,147,0): 235, 57, 57, (77,148,0): 235, 57, 55, (77,149,0): 233, 55, 53, (77,150,0): 226, 53, 47, (77,151,0): 222, 51, 44, (77,152,0): 219, 55, 45, (77,153,0): 220, 56, 44, (77,154,0): 221, 58, 43, (77,155,0): 223, 55, 42, (77,156,0): 227, 50, 40, (77,157,0): 231, 48, 40, (77,158,0): 239, 48, 40, (77,159,0): 242, 49, 44, (77,160,0): 241, 52, 50, (77,161,0): 240, 52, 51, (77,162,0): 243, 51, 50, (77,163,0): 243, 49, 49, (77,164,0): 243, 49, 47, (77,165,0): 241, 49, 46, (77,166,0): 236, 51, 46, (77,167,0): 231, 54, 46, (77,168,0): 224, 57, 49, (77,169,0): 217, 60, 51, (77,170,0): 204, 55, 49, (77,171,0): 193, 48, 45, (77,172,0): 209, 64, 67, (77,173,0): 255, 110, 117, (77,174,0): 253, 107, 117, (77,175,0): 247, 99, 113, (77,176,0): 237, 84, 105, (77,177,0): 241, 74, 102, (77,178,0): 250, 62, 97, (77,179,0): 255, 55, 94, (77,180,0): 255, 55, 98, (77,181,0): 248, 64, 100, (77,182,0): 227, 79, 105, (77,183,0): 200, 92, 105, (77,184,0): 139, 71, 70, (77,185,0): 106, 70, 58, (77,186,0): 93, 76, 60, (77,187,0): 93, 86, 67, (77,188,0): 88, 81, 62, (77,189,0): 81, 74, 55, (77,190,0): 79, 71, 52, (77,191,0): 73, 68, 46, (77,192,0): 68, 74, 46, (77,193,0): 71, 85, 50, (77,194,0): 83, 99, 62, (77,195,0): 94, 115, 72, (77,196,0): 103, 127, 77, (77,197,0): 106, 135, 79, (77,198,0): 106, 138, 75, (77,199,0): 103, 140, 71, (77,200,0): 103, 140, 70, (77,201,0): 102, 142, 71, (77,202,0): 102, 144, 72, (77,203,0): 103, 144, 74, (77,204,0): 105, 146, 78, (77,205,0): 107, 148, 82, (77,206,0): 109, 148, 85, (77,207,0): 109, 148, 85, (77,208,0): 113, 149, 85, (77,209,0): 111, 148, 81, (77,210,0): 106, 145, 78, (77,211,0): 103, 142, 75, (77,212,0): 99, 140, 72, (77,213,0): 96, 137, 69, (77,214,0): 95, 136, 70, (77,215,0): 94, 134, 71, (77,216,0): 92, 130, 69, (77,217,0): 91, 126, 68, (77,218,0): 87, 120, 65, (77,219,0): 86, 114, 63, (77,220,0): 85, 111, 64, (77,221,0): 89, 112, 66, (77,222,0): 93, 114, 71, (77,223,0): 94, 117, 71, (77,224,0): 90, 114, 66, (77,225,0): 88, 115, 64, (77,226,0): 88, 115, 64, (78,0,0): 78, 66, 50, (78,1,0): 81, 69, 53, (78,2,0): 85, 73, 57, (78,3,0): 87, 75, 59, (78,4,0): 88, 76, 60, (78,5,0): 90, 78, 62, (78,6,0): 92, 80, 64, (78,7,0): 94, 82, 66, (78,8,0): 97, 85, 69, (78,9,0): 98, 86, 70, (78,10,0): 98, 86, 70, (78,11,0): 97, 85, 69, (78,12,0): 95, 83, 67, (78,13,0): 97, 85, 69, (78,14,0): 102, 90, 74, (78,15,0): 104, 93, 89, (78,16,0): 110, 103, 119, (78,17,0): 117, 112, 142, (78,18,0): 124, 120, 153, (78,19,0): 123, 121, 160, (78,20,0): 119, 120, 166, (78,21,0): 118, 119, 173, (78,22,0): 112, 117, 175, (78,23,0): 106, 111, 175, (78,24,0): 97, 104, 172, (78,25,0): 94, 102, 174, (78,26,0): 95, 103, 176, (78,27,0): 101, 109, 182, (78,28,0): 112, 120, 192, (78,29,0): 125, 133, 205, (78,30,0): 137, 144, 216, (78,31,0): 143, 151, 214, (78,32,0): 153, 161, 210, (78,33,0): 161, 168, 210, (78,34,0): 170, 178, 217, (78,35,0): 180, 186, 222, (78,36,0): 186, 191, 223, (78,37,0): 192, 193, 224, (78,38,0): 195, 195, 223, (78,39,0): 199, 197, 221, (78,40,0): 198, 194, 217, (78,41,0): 197, 192, 212, (78,42,0): 193, 186, 204, (78,43,0): 188, 179, 196, (78,44,0): 187, 176, 193, (78,45,0): 181, 168, 186, (78,46,0): 166, 153, 170, (78,47,0): 150, 139, 153, (78,48,0): 139, 132, 139, (78,49,0): 117, 111, 113, (78,50,0): 119, 110, 111, (78,51,0): 115, 101, 101, (78,52,0): 122, 102, 101, (78,53,0): 137, 109, 106, (78,54,0): 133, 94, 89, (78,55,0): 150, 99, 95, (78,56,0): 155, 90, 84, (78,57,0): 183, 103, 96, (78,58,0): 214, 117, 110, (78,59,0): 237, 124, 118, (78,60,0): 252, 125, 119, (78,61,0): 255, 120, 115, (78,62,0): 254, 106, 102, (78,63,0): 249, 92, 87, (78,64,0): 252, 83, 78, (78,65,0): 245, 72, 66, (78,66,0): 230, 61, 54, (78,67,0): 231, 68, 61, (78,68,0): 216, 59, 52, (78,69,0): 219, 71, 61, (78,70,0): 234, 92, 82, (78,71,0): 197, 59, 48, (78,72,0): 196, 60, 48, (78,73,0): 189, 55, 43, (78,74,0): 190, 54, 40, (78,75,0): 199, 62, 46, (78,76,0): 209, 68, 51, (78,77,0): 212, 66, 51, (78,78,0): 212, 65, 49, (78,79,0): 215, 65, 51, (78,80,0): 210, 56, 54, (78,81,0): 216, 62, 62, (78,82,0): 221, 67, 67, (78,83,0): 220, 66, 64, (78,84,0): 214, 61, 55, (78,85,0): 213, 56, 49, (78,86,0): 216, 55, 47, (78,87,0): 222, 55, 47, (78,88,0): 229, 58, 51, (78,89,0): 230, 57, 51, (78,90,0): 229, 58, 51, (78,91,0): 226, 59, 51, (78,92,0): 219, 62, 53, (78,93,0): 213, 65, 53, (78,94,0): 209, 69, 56, (78,95,0): 204, 71, 54, (78,96,0): 174, 45, 24, (78,97,0): 188, 59, 37, (78,98,0): 205, 74, 56, (78,99,0): 209, 76, 61, (78,100,0): 198, 61, 53, (78,101,0): 187, 48, 43, (78,102,0): 192, 48, 48, (78,103,0): 202, 57, 62, (78,104,0): 215, 65, 74, (78,105,0): 226, 76, 85, (78,106,0): 236, 86, 97, (78,107,0): 240, 90, 101, (78,108,0): 239, 92, 100, (78,109,0): 236, 89, 97, (78,110,0): 223, 76, 82, (78,111,0): 212, 62, 64, (78,112,0): 209, 52, 47, (78,113,0): 218, 53, 47, (78,114,0): 227, 57, 57, (78,115,0): 237, 63, 64, (78,116,0): 245, 66, 72, (78,117,0): 247, 68, 74, (78,118,0): 244, 64, 73, (78,119,0): 239, 62, 70, (78,120,0): 228, 51, 59, (78,121,0): 225, 48, 54, (78,122,0): 230, 49, 54, (78,123,0): 240, 55, 60, (78,124,0): 247, 54, 57, (78,125,0): 249, 49, 52, (78,126,0): 254, 45, 50, (78,127,0): 253, 49, 52, (78,128,0): 239, 50, 48, (78,129,0): 240, 57, 53, (78,130,0): 240, 55, 52, (78,131,0): 236, 48, 46, (78,132,0): 232, 44, 42, (78,133,0): 231, 48, 44, (78,134,0): 230, 51, 46, (78,135,0): 224, 51, 44, (78,136,0): 228, 61, 53, (78,137,0): 224, 61, 52, (78,138,0): 224, 61, 52, (78,139,0): 224, 60, 51, (78,140,0): 227, 58, 53, (78,141,0): 230, 57, 53, (78,142,0): 234, 54, 53, (78,143,0): 236, 54, 53, (78,144,0): 236, 53, 55, (78,145,0): 236, 53, 55, (78,146,0): 237, 53, 55, (78,147,0): 238, 54, 56, (78,148,0): 238, 54, 54, (78,149,0): 235, 53, 52, (78,150,0): 228, 50, 46, (78,151,0): 222, 49, 43, (78,152,0): 222, 55, 46, (78,153,0): 221, 57, 45, (78,154,0): 221, 58, 43, (78,155,0): 223, 55, 42, (78,156,0): 225, 52, 38, (78,157,0): 230, 49, 38, (78,158,0): 237, 49, 40, (78,159,0): 241, 49, 44, (78,160,0): 240, 52, 50, (78,161,0): 238, 53, 51, (78,162,0): 241, 52, 50, (78,163,0): 242, 50, 49, (78,164,0): 243, 49, 47, (78,165,0): 241, 49, 46, (78,166,0): 236, 51, 46, (78,167,0): 231, 54, 46, (78,168,0): 226, 59, 51, (78,169,0): 210, 52, 43, (78,170,0): 210, 58, 53, (78,171,0): 198, 50, 48, (78,172,0): 231, 85, 88, (78,173,0): 255, 112, 120, (78,174,0): 249, 99, 110, (78,175,0): 241, 90, 105, (78,176,0): 227, 75, 96, (78,177,0): 239, 72, 102, (78,178,0): 253, 58, 98, (78,179,0): 255, 49, 93, (78,180,0): 255, 54, 98, (78,181,0): 253, 67, 104, (78,182,0): 219, 77, 101, (78,183,0): 177, 80, 89, (78,184,0): 106, 53, 47, (78,185,0): 94, 71, 55, (78,186,0): 88, 75, 58, (78,187,0): 85, 78, 59, (78,188,0): 89, 81, 62, (78,189,0): 85, 74, 56, (78,190,0): 76, 64, 48, (78,191,0): 73, 68, 48, (78,192,0): 64, 70, 44, (78,193,0): 65, 79, 46, (78,194,0): 75, 91, 54, (78,195,0): 88, 106, 64, (78,196,0): 98, 120, 71, (78,197,0): 102, 129, 74, (78,198,0): 104, 136, 73, (78,199,0): 102, 139, 70, (78,200,0): 101, 138, 68, (78,201,0): 99, 139, 66, (78,202,0): 99, 141, 69, (78,203,0): 101, 142, 72, (78,204,0): 103, 144, 76, (78,205,0): 104, 145, 79, (78,206,0): 105, 145, 82, (78,207,0): 107, 146, 83, (78,208,0): 110, 146, 82, (78,209,0): 108, 144, 80, (78,210,0): 104, 143, 78, (78,211,0): 100, 139, 74, (78,212,0): 97, 138, 72, (78,213,0): 95, 136, 70, (78,214,0): 95, 135, 72, (78,215,0): 95, 135, 72, (78,216,0): 95, 133, 72, (78,217,0): 95, 130, 72, (78,218,0): 93, 126, 71, (78,219,0): 93, 121, 70, (78,220,0): 93, 119, 72, (78,221,0): 96, 119, 75, (78,222,0): 99, 120, 79, (78,223,0): 99, 122, 78, (78,224,0): 92, 116, 66, (78,225,0): 90, 117, 64, (78,226,0): 90, 117, 64, (79,0,0): 74, 67, 51, (79,1,0): 77, 70, 54, (79,2,0): 81, 72, 57, (79,3,0): 84, 75, 60, (79,4,0): 87, 75, 61, (79,5,0): 89, 77, 63, (79,6,0): 92, 79, 63, (79,7,0): 94, 81, 65, (79,8,0): 100, 87, 70, (79,9,0): 101, 88, 71, (79,10,0): 100, 88, 72, (79,11,0): 98, 86, 70, (79,12,0): 95, 85, 73, (79,13,0): 97, 87, 77, (79,14,0): 103, 94, 85, (79,15,0): 108, 99, 102, (79,16,0): 119, 114, 137, (79,17,0): 121, 117, 154, (79,18,0): 120, 118, 158, (79,19,0): 116, 115, 159, (79,20,0): 114, 114, 164, (79,21,0): 116, 117, 173, (79,22,0): 108, 112, 175, (79,23,0): 98, 103, 169, (79,24,0): 90, 97, 169, (79,25,0): 95, 101, 175, (79,26,0): 102, 108, 184, (79,27,0): 109, 115, 191, (79,28,0): 118, 124, 200, (79,29,0): 129, 135, 211, (79,30,0): 143, 147, 221, (79,31,0): 151, 156, 222, (79,32,0): 155, 161, 211, (79,33,0): 160, 167, 209, (79,34,0): 169, 174, 216, (79,35,0): 174, 179, 221, (79,36,0): 177, 180, 223, (79,37,0): 178, 179, 223, (79,38,0): 180, 179, 223, (79,39,0): 182, 179, 222, (79,40,0): 181, 176, 217, (79,41,0): 179, 172, 213, (79,42,0): 174, 166, 203, (79,43,0): 171, 161, 196, (79,44,0): 170, 159, 193, (79,45,0): 164, 153, 185, (79,46,0): 153, 140, 170, (79,47,0): 136, 126, 150, (79,48,0): 126, 120, 132, (79,49,0): 102, 97, 103, (79,50,0): 108, 99, 102, (79,51,0): 100, 88, 90, (79,52,0): 108, 90, 88, (79,53,0): 124, 99, 95, (79,54,0): 123, 86, 80, (79,55,0): 147, 98, 93, (79,56,0): 140, 77, 70, (79,57,0): 162, 85, 77, (79,58,0): 187, 97, 88, (79,59,0): 212, 108, 99, (79,60,0): 238, 121, 114, (79,61,0): 255, 129, 122, (79,62,0): 255, 124, 119, (79,63,0): 255, 112, 106, (79,64,0): 254, 97, 92, (79,65,0): 247, 84, 79, (79,66,0): 233, 71, 66, (79,67,0): 238, 79, 73, (79,68,0): 221, 66, 61, (79,69,0): 222, 71, 64, (79,70,0): 234, 87, 79, (79,71,0): 186, 44, 34, (79,72,0): 190, 49, 39, (79,73,0): 190, 52, 39, (79,74,0): 199, 62, 46, (79,75,0): 209, 69, 54, (79,76,0): 203, 62, 45, (79,77,0): 193, 50, 34, (79,78,0): 202, 55, 39, (79,79,0): 219, 69, 55, (79,80,0): 222, 69, 63, (79,81,0): 211, 57, 55, (79,82,0): 204, 51, 46, (79,83,0): 205, 53, 48, (79,84,0): 212, 59, 53, (79,85,0): 215, 61, 53, (79,86,0): 221, 60, 52, (79,87,0): 225, 61, 52, (79,88,0): 228, 59, 52, (79,89,0): 228, 57, 50, (79,90,0): 222, 53, 46, (79,91,0): 215, 52, 43, (79,92,0): 207, 53, 41, (79,93,0): 202, 56, 43, (79,94,0): 197, 60, 44, (79,95,0): 194, 63, 45, (79,96,0): 212, 83, 62, (79,97,0): 200, 71, 50, (79,98,0): 189, 60, 41, (79,99,0): 190, 58, 45, (79,100,0): 195, 61, 50, (79,101,0): 196, 59, 53, (79,102,0): 194, 55, 52, (79,103,0): 194, 52, 51, (79,104,0): 220, 75, 78, (79,105,0): 221, 76, 81, (79,106,0): 225, 80, 85, (79,107,0): 229, 84, 89, (79,108,0): 232, 89, 93, (79,109,0): 229, 86, 88, (79,110,0): 220, 77, 79, (79,111,0): 212, 67, 64, (79,112,0): 203, 52, 43, (79,113,0): 212, 54, 43, (79,114,0): 218, 53, 47, (79,115,0): 224, 52, 50, (79,116,0): 228, 49, 52, (79,117,0): 232, 49, 54, (79,118,0): 233, 48, 56, (79,119,0): 231, 46, 54, (79,120,0): 238, 51, 62, (79,121,0): 237, 50, 59, (79,122,0): 244, 52, 63, (79,123,0): 253, 56, 66, (79,124,0): 255, 51, 62, (79,125,0): 253, 41, 53, (79,126,0): 255, 40, 51, (79,127,0): 255, 46, 57, (79,128,0): 248, 45, 51, (79,129,0): 249, 53, 55, (79,130,0): 249, 53, 57, (79,131,0): 240, 46, 47, (79,132,0): 235, 42, 43, (79,133,0): 233, 48, 46, (79,134,0): 232, 53, 49, (79,135,0): 226, 53, 47, (79,136,0): 227, 60, 52, (79,137,0): 224, 61, 52, (79,138,0): 224, 61, 52, (79,139,0): 225, 61, 52, (79,140,0): 228, 59, 54, (79,141,0): 231, 58, 54, (79,142,0): 235, 55, 54, (79,143,0): 238, 54, 54, (79,144,0): 236, 52, 54, (79,145,0): 235, 51, 53, (79,146,0): 236, 50, 53, (79,147,0): 237, 51, 52, (79,148,0): 237, 53, 53, (79,149,0): 234, 52, 49, (79,150,0): 227, 49, 45, (79,151,0): 219, 48, 40, (79,152,0): 222, 56, 44, (79,153,0): 221, 58, 43, (79,154,0): 221, 58, 43, (79,155,0): 222, 56, 40, (79,156,0): 224, 52, 38, (79,157,0): 227, 51, 36, (79,158,0): 233, 51, 38, (79,159,0): 236, 52, 42, (79,160,0): 238, 53, 48, (79,161,0): 238, 53, 50, (79,162,0): 240, 52, 50, (79,163,0): 240, 51, 47, (79,164,0): 242, 50, 47, (79,165,0): 239, 50, 44, (79,166,0): 235, 52, 44, (79,167,0): 231, 54, 46, (79,168,0): 228, 61, 52, (79,169,0): 205, 47, 38, (79,170,0): 215, 62, 57, (79,171,0): 202, 52, 53, (79,172,0): 249, 98, 103, (79,173,0): 255, 112, 121, (79,174,0): 246, 91, 105, (79,175,0): 237, 80, 99, (79,176,0): 228, 70, 93, (79,177,0): 243, 72, 104, (79,178,0): 255, 61, 101, (79,179,0): 255, 50, 93, (79,180,0): 255, 55, 97, (79,181,0): 245, 71, 104, (79,182,0): 201, 74, 93, (79,183,0): 148, 66, 70, (79,184,0): 83, 43, 35, (79,185,0): 88, 72, 56, (79,186,0): 84, 75, 58, (79,187,0): 79, 72, 54, (79,188,0): 89, 80, 63, (79,189,0): 83, 74, 57, (79,190,0): 69, 64, 45, (79,191,0): 71, 70, 49, (79,192,0): 61, 67, 39, (79,193,0): 64, 74, 40, (79,194,0): 73, 85, 49, (79,195,0): 83, 100, 58, (79,196,0): 95, 114, 69, (79,197,0): 101, 125, 73, (79,198,0): 103, 132, 74, (79,199,0): 101, 136, 72, (79,200,0): 99, 136, 67, (79,201,0): 97, 137, 66, (79,202,0): 98, 138, 67, (79,203,0): 99, 141, 69, (79,204,0): 101, 142, 72, (79,205,0): 102, 143, 77, (79,206,0): 104, 143, 80, (79,207,0): 105, 144, 81, (79,208,0): 108, 144, 80, (79,209,0): 107, 144, 77, (79,210,0): 102, 141, 74, (79,211,0): 99, 138, 73, (79,212,0): 97, 136, 71, (79,213,0): 96, 135, 70, (79,214,0): 96, 135, 72, (79,215,0): 96, 134, 73, (79,216,0): 94, 129, 71, (79,217,0): 94, 127, 70, (79,218,0): 95, 125, 71, (79,219,0): 96, 124, 73, (79,220,0): 97, 123, 75, (79,221,0): 100, 123, 77, (79,222,0): 102, 124, 78, (79,223,0): 102, 126, 78, (79,224,0): 93, 120, 67, (79,225,0): 92, 121, 63, (79,226,0): 93, 122, 66, (80,0,0): 68, 66, 54, (80,1,0): 70, 68, 56, (80,2,0): 74, 70, 59, (80,3,0): 80, 71, 62, (80,4,0): 82, 72, 62, (80,5,0): 87, 73, 62, (80,6,0): 93, 77, 62, (80,7,0): 95, 79, 63, (80,8,0): 96, 81, 62, (80,9,0): 97, 82, 63, (80,10,0): 96, 83, 66, (80,11,0): 95, 86, 71, (80,12,0): 98, 89, 82, (80,13,0): 103, 98, 95, (80,14,0): 111, 106, 110, (80,15,0): 115, 111, 126, (80,16,0): 119, 113, 147, (80,17,0): 122, 116, 160, (80,18,0): 124, 121, 168, (80,19,0): 121, 119, 169, (80,20,0): 112, 112, 166, (80,21,0): 103, 103, 163, (80,22,0): 96, 97, 162, (80,23,0): 92, 95, 164, (80,24,0): 96, 98, 173, (80,25,0): 102, 104, 181, (80,26,0): 111, 112, 192, (80,27,0): 121, 122, 204, (80,28,0): 132, 130, 214, (80,29,0): 141, 139, 223, (80,30,0): 150, 146, 231, (80,31,0): 156, 153, 232, (80,32,0): 160, 158, 223, (80,33,0): 161, 160, 218, (80,34,0): 163, 162, 219, (80,35,0): 164, 163, 220, (80,36,0): 166, 163, 220, (80,37,0): 165, 162, 219, (80,38,0): 165, 160, 216, (80,39,0): 164, 159, 213, (80,40,0): 165, 158, 210, (80,41,0): 163, 156, 207, (80,42,0): 162, 154, 201, (80,43,0): 162, 153, 198, (80,44,0): 159, 150, 193, (80,45,0): 153, 142, 184, (80,46,0): 142, 131, 171, (80,47,0): 131, 124, 155, (80,48,0): 113, 111, 124, (80,49,0): 104, 103, 108, (80,50,0): 99, 95, 96, (80,51,0): 102, 90, 90, (80,52,0): 108, 89, 85, (80,53,0): 115, 86, 80, (80,54,0): 128, 85, 78, (80,55,0): 143, 86, 79, (80,56,0): 150, 82, 73, (80,57,0): 169, 89, 80, (80,58,0): 181, 88, 80, (80,59,0): 192, 91, 83, (80,60,0): 216, 107, 100, (80,61,0): 235, 122, 114, (80,62,0): 246, 131, 124, (80,63,0): 255, 139, 134, (80,64,0): 249, 117, 113, (80,65,0): 255, 117, 115, (80,66,0): 237, 95, 93, (80,67,0): 223, 80, 76, (80,68,0): 217, 69, 65, (80,69,0): 239, 90, 84, (80,70,0): 204, 55, 49, (80,71,0): 197, 50, 42, (80,72,0): 196, 54, 42, (80,73,0): 195, 55, 40, (80,74,0): 192, 55, 39, (80,75,0): 195, 55, 38, (80,76,0): 198, 57, 40, (80,77,0): 202, 59, 43, (80,78,0): 208, 60, 46, (80,79,0): 213, 63, 49, (80,80,0): 210, 56, 46, (80,81,0): 214, 60, 50, (80,82,0): 215, 63, 52, (80,83,0): 211, 59, 48, (80,84,0): 205, 53, 40, (80,85,0): 205, 51, 39, (80,86,0): 216, 58, 47, (80,87,0): 226, 64, 53, (80,88,0): 224, 57, 48, (80,89,0): 225, 57, 48, (80,90,0): 222, 55, 46, (80,91,0): 215, 55, 43, (80,92,0): 207, 55, 41, (80,93,0): 201, 58, 42, (80,94,0): 198, 63, 44, (80,95,0): 196, 65, 47, (80,96,0): 194, 61, 46, (80,97,0): 198, 64, 52, (80,98,0): 203, 69, 58, (80,99,0): 205, 71, 60, (80,100,0): 204, 67, 59, (80,101,0): 197, 60, 52, (80,102,0): 187, 50, 44, (80,103,0): 182, 43, 38, (80,104,0): 199, 60, 55, (80,105,0): 208, 69, 66, (80,106,0): 217, 79, 76, (80,107,0): 224, 86, 83, (80,108,0): 227, 89, 86, (80,109,0): 225, 88, 82, (80,110,0): 216, 79, 73, (80,111,0): 208, 67, 58, (80,112,0): 205, 58, 42, (80,113,0): 213, 58, 40, (80,114,0): 220, 56, 44, (80,115,0): 227, 53, 46, (80,116,0): 232, 46, 47, (80,117,0): 237, 42, 50, (80,118,0): 240, 40, 51, (80,119,0): 244, 39, 54, (80,120,0): 251, 44, 62, (80,121,0): 250, 43, 63, (80,122,0): 251, 42, 63, (80,123,0): 253, 41, 63, (80,124,0): 255, 39, 63, (80,125,0): 255, 38, 63, (80,126,0): 255, 36, 60, (80,127,0): 255, 35, 60, (80,128,0): 255, 35, 55, (80,129,0): 255, 38, 56, (80,130,0): 255, 42, 59, (80,131,0): 254, 44, 57, (80,132,0): 244, 44, 54, (80,133,0): 237, 46, 53, (80,134,0): 233, 53, 54, (80,135,0): 232, 60, 58, (80,136,0): 221, 56, 52, (80,137,0): 221, 58, 51, (80,138,0): 222, 59, 52, (80,139,0): 224, 59, 53, (80,140,0): 227, 58, 53, (80,141,0): 230, 57, 53, (80,142,0): 233, 55, 51, (80,143,0): 235, 53, 52, (80,144,0): 235, 51, 53, (80,145,0): 236, 52, 54, (80,146,0): 235, 53, 52, (80,147,0): 233, 53, 52, (80,148,0): 231, 53, 51, (80,149,0): 226, 53, 47, (80,150,0): 221, 53, 44, (80,151,0): 219, 53, 41, (80,152,0): 220, 56, 44, (80,153,0): 219, 57, 42, (80,154,0): 220, 57, 40, (80,155,0): 222, 57, 38, (80,156,0): 223, 56, 38, (80,157,0): 226, 55, 37, (80,158,0): 227, 54, 37, (80,159,0): 230, 52, 38, (80,160,0): 236, 53, 45, (80,161,0): 237, 52, 47, (80,162,0): 240, 53, 48, (80,163,0): 241, 52, 46, (80,164,0): 241, 53, 44, (80,165,0): 237, 53, 43, (80,166,0): 232, 54, 42, (80,167,0): 228, 56, 44, (80,168,0): 222, 58, 48, (80,169,0): 212, 55, 46, (80,170,0): 211, 58, 53, (80,171,0): 215, 62, 64, (80,172,0): 255, 109, 117, (80,173,0): 255, 98, 113, (80,174,0): 248, 85, 106, (80,175,0): 241, 75, 99, (80,176,0): 247, 79, 105, (80,177,0): 236, 58, 90, (80,178,0): 249, 57, 94, (80,179,0): 255, 63, 103, (80,180,0): 245, 64, 99, (80,181,0): 230, 80, 107, (80,182,0): 178, 73, 87, (80,183,0): 97, 36, 35, (80,184,0): 71, 43, 32, (80,185,0): 65, 56, 39, (80,186,0): 75, 68, 52, (80,187,0): 82, 76, 60, (80,188,0): 79, 73, 57, (80,189,0): 66, 67, 49, (80,190,0): 59, 68, 47, (80,191,0): 60, 73, 47, (80,192,0): 65, 72, 38, (80,193,0): 69, 75, 37, (80,194,0): 75, 83, 46, (80,195,0): 83, 93, 56, (80,196,0): 91, 107, 68, (80,197,0): 97, 118, 75, (80,198,0): 100, 126, 78, (80,199,0): 100, 131, 74, (80,200,0): 98, 134, 70, (80,201,0): 96, 136, 66, (80,202,0): 97, 137, 64, (80,203,0): 99, 139, 66, (80,204,0): 101, 141, 70, (80,205,0): 104, 144, 74, (80,206,0): 108, 144, 80, (80,207,0): 109, 145, 81, (80,208,0): 108, 145, 76, (80,209,0): 105, 142, 72, (80,210,0): 103, 140, 71, (80,211,0): 102, 139, 72, (80,212,0): 102, 138, 74, (80,213,0): 101, 137, 73, (80,214,0): 99, 133, 72, (80,215,0): 97, 131, 71, (80,216,0): 100, 131, 74, (80,217,0): 100, 129, 73, (80,218,0): 98, 127, 71, (80,219,0): 99, 126, 71, (80,220,0): 100, 127, 74, (80,221,0): 100, 127, 72, (80,222,0): 101, 126, 71, (80,223,0): 97, 125, 67, (80,224,0): 91, 123, 60, (80,225,0): 92, 127, 61, (80,226,0): 95, 130, 66, (81,0,0): 61, 63, 52, (81,1,0): 63, 65, 54, (81,2,0): 70, 67, 60, (81,3,0): 74, 69, 63, (81,4,0): 80, 69, 63, (81,5,0): 84, 71, 62, (81,6,0): 91, 75, 62, (81,7,0): 93, 77, 61, (81,8,0): 96, 79, 59, (81,9,0): 96, 81, 60, (81,10,0): 94, 83, 65, (81,11,0): 94, 86, 73, (81,12,0): 99, 91, 88, (81,13,0): 104, 99, 105, (81,14,0): 110, 108, 121, (81,15,0): 115, 111, 134, (81,16,0): 116, 112, 149, (81,17,0): 118, 112, 158, (81,18,0): 116, 112, 162, (81,19,0): 112, 109, 162, (81,20,0): 103, 102, 159, (81,21,0): 97, 97, 159, (81,22,0): 93, 94, 161, (81,23,0): 92, 92, 164, (81,24,0): 101, 100, 176, (81,25,0): 107, 106, 186, (81,26,0): 116, 114, 197, (81,27,0): 125, 123, 207, (81,28,0): 134, 130, 217, (81,29,0): 141, 137, 224, (81,30,0): 148, 142, 230, (81,31,0): 152, 147, 229, (81,32,0): 155, 149, 221, (81,33,0): 156, 151, 217, (81,34,0): 157, 152, 218, (81,35,0): 158, 153, 219, (81,36,0): 158, 151, 218, (81,37,0): 157, 150, 217, (81,38,0): 156, 150, 214, (81,39,0): 155, 149, 211, (81,40,0): 158, 150, 210, (81,41,0): 156, 148, 205, (81,42,0): 156, 147, 200, (81,43,0): 155, 147, 198, (81,44,0): 154, 145, 192, (81,45,0): 147, 138, 183, (81,46,0): 136, 127, 170, (81,47,0): 128, 121, 154, (81,48,0): 115, 109, 123, (81,49,0): 107, 101, 105, (81,50,0): 100, 94, 94, (81,51,0): 101, 91, 89, (81,52,0): 107, 90, 83, (81,53,0): 113, 86, 77, (81,54,0): 124, 84, 74, (81,55,0): 141, 84, 75, (81,56,0): 157, 84, 75, (81,57,0): 178, 91, 82, (81,58,0): 187, 88, 82, (81,59,0): 195, 88, 82, (81,60,0): 211, 102, 97, (81,61,0): 221, 114, 106, (81,62,0): 224, 120, 111, (81,63,0): 235, 126, 119, (81,64,0): 251, 136, 133, (81,65,0): 255, 135, 133, (81,66,0): 247, 117, 115, (81,67,0): 238, 103, 100, (81,68,0): 227, 85, 83, (81,69,0): 235, 90, 85, (81,70,0): 199, 50, 44, (81,71,0): 194, 47, 37, (81,72,0): 197, 55, 41, (81,73,0): 195, 55, 38, (81,74,0): 192, 55, 37, (81,75,0): 193, 56, 38, (81,76,0): 196, 56, 39, (81,77,0): 200, 59, 42, (81,78,0): 207, 59, 45, (81,79,0): 211, 61, 47, (81,80,0): 213, 57, 44, (81,81,0): 213, 57, 44, (81,82,0): 211, 58, 44, (81,83,0): 210, 58, 44, (81,84,0): 209, 57, 43, (81,85,0): 209, 57, 43, (81,86,0): 212, 56, 43, (81,87,0): 216, 56, 44, (81,88,0): 223, 59, 49, (81,89,0): 224, 57, 48, (81,90,0): 220, 56, 46, (81,91,0): 214, 56, 44, (81,92,0): 207, 57, 42, (81,93,0): 200, 57, 40, (81,94,0): 193, 58, 38, (81,95,0): 190, 57, 38, (81,96,0): 190, 54, 42, (81,97,0): 193, 56, 48, (81,98,0): 198, 61, 53, (81,99,0): 201, 64, 56, (81,100,0): 202, 65, 57, (81,101,0): 200, 63, 55, (81,102,0): 197, 60, 52, (81,103,0): 194, 57, 49, (81,104,0): 191, 52, 45, (81,105,0): 199, 62, 54, (81,106,0): 209, 72, 64, (81,107,0): 216, 79, 71, (81,108,0): 218, 81, 73, (81,109,0): 215, 78, 70, (81,110,0): 204, 67, 59, (81,111,0): 195, 55, 42, (81,112,0): 202, 55, 37, (81,113,0): 211, 56, 36, (81,114,0): 221, 55, 41, (81,115,0): 229, 52, 44, (81,116,0): 237, 47, 47, (81,117,0): 244, 43, 51, (81,118,0): 249, 41, 55, (81,119,0): 253, 40, 58, (81,120,0): 255, 43, 64, (81,121,0): 255, 42, 65, (81,122,0): 255, 41, 65, (81,123,0): 255, 38, 65, (81,124,0): 255, 35, 64, (81,125,0): 255, 33, 60, (81,126,0): 255, 30, 61, (81,127,0): 255, 29, 58, (81,128,0): 255, 30, 57, (81,129,0): 255, 31, 56, (81,130,0): 255, 36, 58, (81,131,0): 255, 41, 59, (81,132,0): 247, 45, 57, (81,133,0): 241, 50, 58, (81,134,0): 234, 55, 58, (81,135,0): 230, 60, 60, (81,136,0): 220, 57, 52, (81,137,0): 220, 58, 53, (81,138,0): 222, 59, 52, (81,139,0): 224, 59, 53, (81,140,0): 227, 58, 53, (81,141,0): 230, 57, 53, (81,142,0): 233, 55, 51, (81,143,0): 235, 53, 50, (81,144,0): 235, 51, 53, (81,145,0): 236, 52, 54, (81,146,0): 235, 53, 52, (81,147,0): 232, 54, 52, (81,148,0): 228, 55, 49, (81,149,0): 223, 54, 47, (81,150,0): 220, 53, 44, (81,151,0): 217, 53, 41, (81,152,0): 219, 57, 42, (81,153,0): 219, 57, 42, (81,154,0): 220, 57, 40, (81,155,0): 220, 57, 38, (81,156,0): 222, 57, 38, (81,157,0): 223, 56, 37, (81,158,0): 225, 56, 37, (81,159,0): 227, 54, 37, (81,160,0): 231, 53, 43, (81,161,0): 234, 51, 43, (81,162,0): 235, 52, 44, (81,163,0): 235, 53, 42, (81,164,0): 235, 53, 42, (81,165,0): 232, 54, 40, (81,166,0): 228, 55, 41, (81,167,0): 223, 55, 42, (81,168,0): 221, 61, 49, (81,169,0): 209, 52, 43, (81,170,0): 207, 53, 51, (81,171,0): 239, 84, 88, (81,172,0): 255, 102, 114, (81,173,0): 255, 91, 111, (81,174,0): 241, 73, 98, (81,175,0): 249, 76, 104, (81,176,0): 248, 69, 99, (81,177,0): 247, 64, 95, (81,178,0): 244, 56, 91, (81,179,0): 243, 62, 97, (81,180,0): 239, 78, 109, (81,181,0): 205, 76, 98, (81,182,0): 139, 56, 64, (81,183,0): 89, 41, 37, (81,184,0): 69, 51, 39, (81,185,0): 60, 54, 40, (81,186,0): 62, 59, 44, (81,187,0): 67, 64, 49, (81,188,0): 67, 66, 48, (81,189,0): 61, 64, 45, (81,190,0): 56, 68, 46, (81,191,0): 58, 73, 44, (81,192,0): 60, 68, 29, (81,193,0): 75, 80, 39, (81,194,0): 92, 98, 60, (81,195,0): 101, 111, 74, (81,196,0): 104, 118, 82, (81,197,0): 101, 122, 81, (81,198,0): 100, 126, 79, (81,199,0): 100, 130, 76, (81,200,0): 97, 131, 70, (81,201,0): 97, 134, 65, (81,202,0): 97, 137, 64, (81,203,0): 99, 140, 64, (81,204,0): 103, 141, 68, (81,205,0): 105, 142, 72, (81,206,0): 107, 144, 77, (81,207,0): 108, 145, 78, (81,208,0): 108, 145, 75, (81,209,0): 106, 144, 71, (81,210,0): 104, 141, 72, (81,211,0): 102, 139, 70, (81,212,0): 103, 138, 74, (81,213,0): 102, 137, 73, (81,214,0): 102, 133, 74, (81,215,0): 100, 131, 72, (81,216,0): 102, 131, 75, (81,217,0): 100, 129, 73, (81,218,0): 100, 127, 72, (81,219,0): 100, 128, 70, (81,220,0): 101, 129, 71, (81,221,0): 101, 129, 71, (81,222,0): 102, 127, 69, (81,223,0): 98, 126, 65, (81,224,0): 93, 128, 62, (81,225,0): 95, 132, 63, (81,226,0): 98, 135, 66, (82,0,0): 54, 57, 46, (82,1,0): 58, 60, 49, (82,2,0): 63, 63, 55, (82,3,0): 68, 65, 58, (82,4,0): 75, 66, 59, (82,5,0): 79, 69, 60, (82,6,0): 86, 72, 61, (82,7,0): 89, 76, 60, (82,8,0): 94, 79, 60, (82,9,0): 92, 79, 60, (82,10,0): 92, 83, 66, (82,11,0): 94, 87, 77, (82,12,0): 99, 93, 93, (82,13,0): 104, 101, 108, (82,14,0): 111, 109, 123, (82,15,0): 115, 113, 137, (82,16,0): 115, 111, 148, (82,17,0): 113, 107, 153, (82,18,0): 106, 102, 152, (82,19,0): 99, 96, 149, (82,20,0): 92, 91, 148, (82,21,0): 90, 90, 152, (82,22,0): 92, 93, 160, (82,23,0): 92, 95, 166, (82,24,0): 104, 106, 181, (82,25,0): 110, 111, 191, (82,26,0): 119, 120, 202, (82,27,0): 127, 128, 210, (82,28,0): 134, 132, 216, (82,29,0): 138, 136, 220, (82,30,0): 143, 139, 224, (82,31,0): 145, 142, 221, (82,32,0): 147, 144, 215, (82,33,0): 147, 144, 211, (82,34,0): 147, 144, 211, (82,35,0): 147, 144, 211, (82,36,0): 148, 142, 212, (82,37,0): 147, 141, 211, (82,38,0): 147, 140, 208, (82,39,0): 146, 139, 206, (82,40,0): 149, 140, 205, (82,41,0): 147, 139, 199, (82,42,0): 148, 139, 194, (82,43,0): 148, 140, 191, (82,44,0): 147, 139, 186, (82,45,0): 140, 133, 175, (82,46,0): 131, 123, 162, (82,47,0): 126, 115, 145, (82,48,0): 121, 103, 119, (82,49,0): 115, 96, 102, (82,50,0): 103, 91, 91, (82,51,0): 100, 91, 86, (82,52,0): 100, 91, 82, (82,53,0): 104, 88, 75, (82,54,0): 117, 85, 72, (82,55,0): 135, 83, 72, (82,56,0): 166, 89, 81, (82,57,0): 190, 95, 89, (82,58,0): 203, 91, 89, (82,59,0): 208, 88, 87, (82,60,0): 218, 100, 98, (82,61,0): 222, 109, 105, (82,62,0): 220, 113, 107, (82,63,0): 226, 119, 113, (82,64,0): 251, 138, 132, (82,65,0): 255, 138, 134, (82,66,0): 255, 133, 129, (82,67,0): 255, 125, 121, (82,68,0): 247, 110, 104, (82,69,0): 238, 97, 88, (82,70,0): 196, 52, 43, (82,71,0): 192, 50, 38, (82,72,0): 196, 56, 41, (82,73,0): 193, 58, 39, (82,74,0): 192, 57, 38, (82,75,0): 192, 57, 37, (82,76,0): 194, 57, 38, (82,77,0): 198, 59, 40, (82,78,0): 204, 58, 43, (82,79,0): 208, 58, 44, (82,80,0): 214, 58, 45, (82,81,0): 211, 53, 41, (82,82,0): 206, 53, 39, (82,83,0): 208, 56, 42, (82,84,0): 212, 62, 47, (82,85,0): 212, 62, 47, (82,86,0): 206, 54, 40, (82,87,0): 203, 47, 34, (82,88,0): 218, 58, 46, (82,89,0): 218, 56, 45, (82,90,0): 217, 55, 44, (82,91,0): 214, 56, 44, (82,92,0): 208, 58, 43, (82,93,0): 201, 58, 41, (82,94,0): 194, 57, 38, (82,95,0): 190, 55, 36, (82,96,0): 189, 53, 41, (82,97,0): 192, 54, 44, (82,98,0): 194, 56, 46, (82,99,0): 196, 58, 48, (82,100,0): 199, 61, 51, (82,101,0): 202, 64, 54, (82,102,0): 203, 65, 55, (82,103,0): 204, 66, 56, (82,104,0): 199, 58, 49, (82,105,0): 202, 64, 54, (82,106,0): 207, 69, 59, (82,107,0): 208, 70, 60, (82,108,0): 210, 72, 62, (82,109,0): 209, 71, 61, (82,110,0): 202, 64, 54, (82,111,0): 197, 55, 43, (82,112,0): 204, 54, 37, (82,113,0): 214, 54, 38, (82,114,0): 223, 55, 44, (82,115,0): 231, 52, 47, (82,116,0): 241, 48, 51, (82,117,0): 246, 45, 53, (82,118,0): 251, 43, 57, (82,119,0): 255, 42, 60, (82,120,0): 252, 39, 59, (82,121,0): 252, 39, 61, (82,122,0): 251, 37, 61, (82,123,0): 249, 35, 59, (82,124,0): 251, 33, 58, (82,125,0): 250, 30, 55, (82,126,0): 252, 28, 55, (82,127,0): 254, 27, 54, (82,128,0): 255, 29, 55, (82,129,0): 255, 30, 53, (82,130,0): 254, 35, 55, (82,131,0): 253, 42, 59, (82,132,0): 247, 50, 60, (82,133,0): 242, 55, 62, (82,134,0): 236, 57, 60, (82,135,0): 229, 59, 59, (82,136,0): 220, 57, 52, (82,137,0): 220, 58, 53, (82,138,0): 222, 59, 52, (82,139,0): 224, 59, 53, (82,140,0): 229, 57, 53, (82,141,0): 231, 56, 53, (82,142,0): 233, 55, 51, (82,143,0): 235, 53, 50, (82,144,0): 237, 51, 54, (82,145,0): 238, 52, 55, (82,146,0): 237, 53, 53, (82,147,0): 234, 54, 53, (82,148,0): 229, 54, 49, (82,149,0): 225, 54, 47, (82,150,0): 220, 53, 44, (82,151,0): 216, 52, 40, (82,152,0): 218, 56, 41, (82,153,0): 217, 57, 41, (82,154,0): 218, 57, 39, (82,155,0): 219, 56, 37, (82,156,0): 221, 56, 37, (82,157,0): 222, 55, 36, (82,158,0): 224, 55, 36, (82,159,0): 225, 54, 37, (82,160,0): 225, 53, 39, (82,161,0): 226, 52, 41, (82,162,0): 227, 53, 42, (82,163,0): 227, 54, 40, (82,164,0): 227, 54, 40, (82,165,0): 225, 55, 40, (82,166,0): 221, 55, 41, (82,167,0): 218, 56, 43, (82,168,0): 219, 61, 50, (82,169,0): 204, 50, 42, (82,170,0): 211, 56, 54, (82,171,0): 255, 108, 112, (82,172,0): 255, 93, 108, (82,173,0): 249, 81, 104, (82,174,0): 237, 62, 91, (82,175,0): 255, 75, 108, (82,176,0): 247, 59, 92, (82,177,0): 255, 66, 100, (82,178,0): 240, 56, 90, (82,179,0): 233, 65, 98, (82,180,0): 227, 87, 113, (82,181,0): 171, 64, 82, (82,182,0): 101, 34, 41, (82,183,0): 81, 46, 42, (82,184,0): 65, 52, 43, (82,185,0): 52, 53, 39, (82,186,0): 53, 54, 38, (82,187,0): 58, 59, 41, (82,188,0): 63, 62, 42, (82,189,0): 62, 61, 40, (82,190,0): 60, 64, 41, (82,191,0): 62, 69, 38, (82,192,0): 62, 70, 29, (82,193,0): 88, 97, 52, (82,194,0): 115, 126, 84, (82,195,0): 128, 140, 100, (82,196,0): 119, 135, 96, (82,197,0): 104, 127, 83, (82,198,0): 97, 125, 76, (82,199,0): 97, 128, 71, (82,200,0): 96, 131, 67, (82,201,0): 96, 133, 63, (82,202,0): 97, 137, 64, (82,203,0): 99, 140, 64, (82,204,0): 104, 142, 69, (82,205,0): 106, 143, 74, (82,206,0): 107, 144, 77, (82,207,0): 108, 145, 78, (82,208,0): 110, 147, 77, (82,209,0): 107, 145, 72, (82,210,0): 104, 141, 72, (82,211,0): 103, 140, 71, (82,212,0): 104, 139, 75, (82,213,0): 104, 139, 75, (82,214,0): 102, 136, 76, (82,215,0): 100, 134, 74, (82,216,0): 101, 132, 75, (82,217,0): 100, 131, 74, (82,218,0): 99, 128, 70, (82,219,0): 100, 129, 71, (82,220,0): 102, 130, 72, (82,221,0): 102, 130, 71, (82,222,0): 101, 129, 70, (82,223,0): 98, 128, 66, (82,224,0): 99, 134, 68, (82,225,0): 101, 138, 69, (82,226,0): 104, 141, 72, (83,0,0): 50, 53, 42, (83,1,0): 53, 56, 45, (83,2,0): 59, 60, 52, (83,3,0): 65, 62, 55, (83,4,0): 71, 64, 58, (83,5,0): 75, 66, 59, (83,6,0): 82, 69, 60, (83,7,0): 86, 74, 60, (83,8,0): 88, 76, 60, (83,9,0): 89, 77, 61, (83,10,0): 89, 81, 68, (83,11,0): 94, 87, 79, (83,12,0): 99, 94, 98, (83,13,0): 105, 103, 114, (83,14,0): 111, 110, 128, (83,15,0): 114, 111, 140, (83,16,0): 114, 109, 149, (83,17,0): 106, 103, 148, (83,18,0): 96, 94, 143, (83,19,0): 87, 87, 139, (83,20,0): 84, 85, 142, (83,21,0): 87, 88, 152, (83,22,0): 92, 95, 162, (83,23,0): 97, 99, 173, (83,24,0): 108, 110, 187, (83,25,0): 114, 115, 195, (83,26,0): 123, 124, 206, (83,27,0): 130, 131, 213, (83,28,0): 136, 134, 217, (83,29,0): 138, 136, 219, (83,30,0): 140, 136, 220, (83,31,0): 141, 138, 217, (83,32,0): 143, 142, 212, (83,33,0): 143, 140, 209, (83,34,0): 143, 140, 209, (83,35,0): 142, 139, 210, (83,36,0): 143, 137, 211, (83,37,0): 142, 136, 210, (83,38,0): 142, 134, 209, (83,39,0): 141, 133, 206, (83,40,0): 143, 133, 202, (83,41,0): 142, 133, 196, (83,42,0): 143, 134, 191, (83,43,0): 144, 136, 187, (83,44,0): 143, 136, 180, (83,45,0): 137, 131, 169, (83,46,0): 128, 121, 154, (83,47,0): 126, 112, 137, (83,48,0): 127, 96, 112, (83,49,0): 121, 90, 96, (83,50,0): 107, 89, 89, (83,51,0): 99, 92, 84, (83,52,0): 96, 94, 81, (83,53,0): 98, 91, 73, (83,54,0): 109, 86, 70, (83,55,0): 128, 82, 69, (83,56,0): 161, 84, 76, (83,57,0): 193, 91, 89, (83,58,0): 209, 89, 91, (83,59,0): 217, 88, 92, (83,60,0): 228, 99, 103, (83,61,0): 228, 108, 107, (83,62,0): 224, 112, 108, (83,63,0): 228, 121, 115, (83,64,0): 236, 125, 118, (83,65,0): 237, 122, 115, (83,66,0): 254, 131, 126, (83,67,0): 255, 134, 129, (83,68,0): 255, 129, 123, (83,69,0): 245, 107, 97, (83,70,0): 201, 60, 50, (83,71,0): 196, 56, 41, (83,72,0): 194, 59, 40, (83,73,0): 191, 58, 39, (83,74,0): 191, 59, 38, (83,75,0): 190, 58, 37, (83,76,0): 193, 58, 38, (83,77,0): 197, 58, 39, (83,78,0): 200, 57, 41, (83,79,0): 206, 56, 42, (83,80,0): 216, 58, 46, (83,81,0): 212, 54, 42, (83,82,0): 206, 53, 39, (83,83,0): 206, 56, 41, (83,84,0): 209, 62, 46, (83,85,0): 209, 62, 46, (83,86,0): 203, 56, 40, (83,87,0): 199, 47, 33, (83,88,0): 210, 54, 41, (83,89,0): 211, 53, 41, (83,90,0): 210, 52, 40, (83,91,0): 210, 54, 41, (83,92,0): 209, 57, 43, (83,93,0): 205, 60, 43, (83,94,0): 200, 61, 42, (83,95,0): 196, 59, 41, (83,96,0): 196, 58, 45, (83,97,0): 196, 58, 47, (83,98,0): 198, 57, 48, (83,99,0): 198, 57, 47, (83,100,0): 199, 58, 49, (83,101,0): 200, 59, 49, (83,102,0): 201, 60, 51, (83,103,0): 203, 61, 51, (83,104,0): 211, 68, 60, (83,105,0): 211, 69, 59, (83,106,0): 208, 65, 57, (83,107,0): 203, 61, 51, (83,108,0): 203, 60, 52, (83,109,0): 207, 65, 55, (83,110,0): 207, 64, 56, (83,111,0): 206, 59, 49, (83,112,0): 206, 53, 39, (83,113,0): 217, 53, 41, (83,114,0): 226, 53, 46, (83,115,0): 235, 51, 49, (83,116,0): 242, 47, 53, (83,117,0): 247, 43, 54, (83,118,0): 249, 41, 55, (83,119,0): 252, 41, 58, (83,120,0): 249, 38, 57, (83,121,0): 247, 38, 59, (83,122,0): 247, 38, 59, (83,123,0): 248, 39, 60, (83,124,0): 251, 38, 60, (83,125,0): 253, 37, 58, (83,126,0): 255, 36, 58, (83,127,0): 255, 35, 58, (83,128,0): 255, 33, 54, (83,129,0): 253, 34, 54, (83,130,0): 250, 37, 55, (83,131,0): 249, 44, 59, (83,132,0): 247, 53, 62, (83,133,0): 242, 57, 63, (83,134,0): 233, 57, 59, (83,135,0): 225, 57, 56, (83,136,0): 220, 57, 52, (83,137,0): 220, 58, 53, (83,138,0): 222, 59, 52, (83,139,0): 224, 59, 53, (83,140,0): 229, 57, 53, (83,141,0): 231, 56, 53, (83,142,0): 233, 55, 51, (83,143,0): 235, 53, 52, (83,144,0): 238, 52, 55, (83,145,0): 238, 52, 55, (83,146,0): 238, 54, 54, (83,147,0): 234, 54, 53, (83,148,0): 230, 55, 50, (83,149,0): 225, 54, 47, (83,150,0): 220, 53, 44, (83,151,0): 215, 53, 42, (83,152,0): 216, 56, 42, (83,153,0): 216, 56, 40, (83,154,0): 216, 56, 40, (83,155,0): 217, 56, 38, (83,156,0): 218, 55, 38, (83,157,0): 220, 55, 36, (83,158,0): 221, 54, 36, (83,159,0): 221, 54, 36, (83,160,0): 219, 53, 37, (83,161,0): 220, 54, 40, (83,162,0): 221, 55, 39, (83,163,0): 220, 57, 40, (83,164,0): 220, 57, 40, (83,165,0): 218, 59, 40, (83,166,0): 215, 58, 41, (83,167,0): 214, 58, 43, (83,168,0): 213, 59, 49, (83,169,0): 206, 51, 46, (83,170,0): 231, 73, 74, (83,171,0): 255, 111, 119, (83,172,0): 254, 85, 104, (83,173,0): 243, 69, 94, (83,174,0): 243, 62, 95, (83,175,0): 255, 67, 102, (83,176,0): 251, 55, 91, (83,177,0): 252, 60, 97, (83,178,0): 240, 66, 99, (83,179,0): 228, 79, 108, (83,180,0): 196, 80, 101, (83,181,0): 129, 47, 61, (83,182,0): 78, 29, 33, (83,183,0): 72, 48, 46, (83,184,0): 54, 47, 39, (83,185,0): 50, 52, 39, (83,186,0): 56, 58, 44, (83,187,0): 62, 65, 46, (83,188,0): 65, 64, 43, (83,189,0): 63, 61, 36, (83,190,0): 65, 64, 36, (83,191,0): 69, 70, 36, (83,192,0): 84, 93, 48, (83,193,0): 112, 126, 77, (83,194,0): 143, 159, 114, (83,195,0): 151, 168, 124, (83,196,0): 131, 152, 109, (83,197,0): 106, 132, 87, (83,198,0): 95, 123, 74, (83,199,0): 93, 126, 69, (83,200,0): 95, 131, 67, (83,201,0): 97, 134, 64, (83,202,0): 98, 138, 65, (83,203,0): 102, 143, 67, (83,204,0): 107, 144, 74, (83,205,0): 108, 145, 76, (83,206,0): 109, 146, 79, (83,207,0): 109, 146, 79, (83,208,0): 111, 148, 78, (83,209,0): 108, 146, 73, (83,210,0): 105, 142, 73, (83,211,0): 104, 141, 72, (83,212,0): 105, 140, 76, (83,213,0): 105, 140, 76, (83,214,0): 104, 138, 78, (83,215,0): 103, 137, 77, (83,216,0): 102, 133, 76, (83,217,0): 100, 131, 74, (83,218,0): 100, 129, 71, (83,219,0): 101, 130, 72, (83,220,0): 103, 131, 72, (83,221,0): 104, 132, 73, (83,222,0): 102, 130, 71, (83,223,0): 100, 130, 68, (83,224,0): 103, 138, 72, (83,225,0): 105, 142, 73, (83,226,0): 108, 145, 76, (84,0,0): 45, 51, 39, (84,1,0): 51, 54, 43, (84,2,0): 56, 57, 49, (84,3,0): 60, 59, 54, (84,4,0): 66, 61, 57, (84,5,0): 71, 64, 58, (84,6,0): 77, 68, 61, (84,7,0): 81, 71, 61, (84,8,0): 83, 73, 61, (84,9,0): 83, 75, 62, (84,10,0): 85, 78, 68, (84,11,0): 90, 85, 81, (84,12,0): 97, 94, 101, (84,13,0): 105, 103, 117, (84,14,0): 109, 107, 129, (84,15,0): 108, 107, 138, (84,16,0): 106, 104, 144, (84,17,0): 98, 96, 143, (84,18,0): 88, 86, 136, (84,19,0): 80, 80, 134, (84,20,0): 81, 81, 141, (84,21,0): 88, 89, 154, (84,22,0): 96, 99, 170, (84,23,0): 102, 106, 180, (84,24,0): 111, 114, 193, (84,25,0): 117, 120, 201, (84,26,0): 124, 127, 208, (84,27,0): 130, 133, 214, (84,28,0): 134, 135, 217, (84,29,0): 135, 136, 216, (84,30,0): 138, 137, 217, (84,31,0): 139, 138, 214, (84,32,0): 139, 139, 209, (84,33,0): 139, 138, 206, (84,34,0): 138, 136, 209, (84,35,0): 137, 135, 210, (84,36,0): 137, 133, 210, (84,37,0): 136, 131, 211, (84,38,0): 138, 131, 211, (84,39,0): 137, 130, 207, (84,40,0): 140, 132, 205, (84,41,0): 139, 132, 199, (84,42,0): 141, 133, 192, (84,43,0): 141, 134, 185, (84,44,0): 141, 134, 175, (84,45,0): 135, 130, 162, (84,46,0): 126, 120, 146, (84,47,0): 127, 110, 129, (84,48,0): 131, 90, 104, (84,49,0): 125, 84, 90, (84,50,0): 108, 87, 84, (84,51,0): 99, 92, 82, (84,52,0): 92, 96, 79, (84,53,0): 91, 95, 72, (84,54,0): 102, 90, 68, (84,55,0): 122, 83, 66, (84,56,0): 149, 74, 68, (84,57,0): 187, 83, 82, (84,58,0): 209, 83, 87, (84,59,0): 219, 82, 89, (84,60,0): 230, 93, 100, (84,61,0): 231, 102, 106, (84,62,0): 224, 108, 108, (84,63,0): 227, 118, 113, (84,64,0): 228, 117, 110, (84,65,0): 226, 111, 104, (84,66,0): 247, 126, 118, (84,67,0): 255, 130, 123, (84,68,0): 255, 135, 126, (84,69,0): 244, 108, 96, (84,70,0): 201, 63, 50, (84,71,0): 193, 56, 40, (84,72,0): 192, 59, 40, (84,73,0): 191, 61, 39, (84,74,0): 191, 61, 39, (84,75,0): 192, 60, 39, (84,76,0): 194, 59, 39, (84,77,0): 197, 58, 39, (84,78,0): 199, 56, 40, (84,79,0): 205, 55, 41, (84,80,0): 216, 58, 47, (84,81,0): 217, 56, 46, (84,82,0): 210, 56, 44, (84,83,0): 207, 57, 43, (84,84,0): 204, 58, 43, (84,85,0): 201, 58, 42, (84,86,0): 200, 57, 41, (84,87,0): 201, 55, 40, (84,88,0): 207, 57, 43, (84,89,0): 209, 55, 43, (84,90,0): 210, 56, 44, (84,91,0): 209, 55, 43, (84,92,0): 207, 55, 42, (84,93,0): 204, 56, 42, (84,94,0): 203, 60, 44, (84,95,0): 203, 62, 45, (84,96,0): 202, 60, 48, (84,97,0): 201, 61, 48, (84,98,0): 202, 60, 50, (84,99,0): 201, 59, 47, (84,100,0): 200, 58, 48, (84,101,0): 198, 56, 44, (84,102,0): 197, 55, 45, (84,103,0): 197, 53, 42, (84,104,0): 208, 64, 55, (84,105,0): 208, 64, 53, (84,106,0): 205, 61, 52, (84,107,0): 201, 57, 46, (84,108,0): 203, 56, 48, (84,109,0): 206, 59, 49, (84,110,0): 205, 58, 50, (84,111,0): 204, 53, 44, (84,112,0): 208, 47, 37, (84,113,0): 217, 48, 41, (84,114,0): 228, 50, 48, (84,115,0): 236, 50, 53, (84,116,0): 244, 47, 56, (84,117,0): 249, 45, 57, (84,118,0): 251, 43, 59, (84,119,0): 252, 44, 60, (84,120,0): 252, 45, 63, (84,121,0): 251, 46, 63, (84,122,0): 252, 47, 64, (84,123,0): 252, 47, 64, (84,124,0): 254, 47, 65, (84,125,0): 255, 47, 63, (84,126,0): 255, 45, 63, (84,127,0): 255, 46, 64, (84,128,0): 255, 40, 56, (84,129,0): 251, 40, 55, (84,130,0): 247, 43, 55, (84,131,0): 245, 48, 58, (84,132,0): 241, 54, 61, (84,133,0): 237, 56, 61, (84,134,0): 228, 56, 56, (84,135,0): 221, 53, 52, (84,136,0): 220, 57, 52, (84,137,0): 220, 58, 53, (84,138,0): 222, 59, 54, (84,139,0): 226, 58, 55, (84,140,0): 229, 57, 53, (84,141,0): 231, 56, 53, (84,142,0): 234, 54, 53, (84,143,0): 236, 52, 52, (84,144,0): 241, 52, 56, (84,145,0): 241, 52, 56, (84,146,0): 239, 53, 54, (84,147,0): 237, 55, 54, (84,148,0): 230, 55, 50, (84,149,0): 225, 54, 47, (84,150,0): 218, 54, 44, (84,151,0): 215, 53, 42, (84,152,0): 216, 56, 42, (84,153,0): 214, 57, 40, (84,154,0): 214, 57, 40, (84,155,0): 216, 57, 38, (84,156,0): 216, 57, 38, (84,157,0): 217, 56, 38, (84,158,0): 218, 55, 38, (84,159,0): 217, 56, 38, (84,160,0): 213, 56, 37, (84,161,0): 213, 58, 38, (84,162,0): 214, 59, 39, (84,163,0): 213, 61, 40, (84,164,0): 212, 61, 40, (84,165,0): 211, 62, 42, (84,166,0): 211, 61, 44, (84,167,0): 211, 61, 46, (84,168,0): 208, 55, 47, (84,169,0): 215, 60, 56, (84,170,0): 255, 93, 100, (84,171,0): 255, 96, 111, (84,172,0): 255, 80, 103, (84,173,0): 240, 60, 89, (84,174,0): 255, 66, 104, (84,175,0): 250, 55, 95, (84,176,0): 255, 55, 95, (84,177,0): 242, 52, 88, (84,178,0): 237, 78, 108, (84,179,0): 215, 92, 113, (84,180,0): 148, 64, 79, (84,181,0): 91, 38, 46, (84,182,0): 71, 40, 45, (84,183,0): 63, 49, 48, (84,184,0): 49, 46, 41, (84,185,0): 52, 54, 43, (84,186,0): 58, 62, 47, (84,187,0): 60, 65, 43, (84,188,0): 58, 61, 34, (84,189,0): 62, 61, 30, (84,190,0): 80, 74, 40, (84,191,0): 94, 92, 53, (84,192,0): 121, 133, 83, (84,193,0): 144, 163, 108, (84,194,0): 170, 190, 139, (84,195,0): 168, 190, 141, (84,196,0): 142, 165, 119, (84,197,0): 111, 139, 91, (84,198,0): 97, 127, 75, (84,199,0): 94, 127, 70, (84,200,0): 96, 132, 68, (84,201,0): 99, 136, 66, (84,202,0): 101, 141, 68, (84,203,0): 106, 147, 71, (84,204,0): 111, 148, 78, (84,205,0): 112, 149, 80, (84,206,0): 111, 147, 83, (84,207,0): 111, 147, 83, (84,208,0): 111, 148, 78, (84,209,0): 108, 146, 73, (84,210,0): 105, 142, 73, (84,211,0): 103, 140, 71, (84,212,0): 105, 140, 76, (84,213,0): 105, 140, 76, (84,214,0): 105, 139, 79, (84,215,0): 104, 138, 78, (84,216,0): 102, 133, 74, (84,217,0): 101, 132, 73, (84,218,0): 100, 131, 72, (84,219,0): 101, 132, 73, (84,220,0): 103, 133, 73, (84,221,0): 104, 134, 72, (84,222,0): 103, 133, 71, (84,223,0): 101, 133, 68, (84,224,0): 105, 142, 73, (84,225,0): 105, 145, 75, (84,226,0): 108, 148, 78, (85,0,0): 43, 49, 37, (85,1,0): 46, 52, 42, (85,2,0): 52, 55, 48, (85,3,0): 56, 57, 51, (85,4,0): 62, 58, 55, (85,5,0): 66, 61, 58, (85,6,0): 72, 65, 59, (85,7,0): 75, 68, 60, (85,8,0): 78, 72, 60, (85,9,0): 78, 71, 61, (85,10,0): 79, 74, 68, (85,11,0): 87, 83, 82, (85,12,0): 95, 94, 102, (85,13,0): 102, 101, 117, (85,14,0): 103, 103, 127, (85,15,0): 103, 102, 134, (85,16,0): 98, 97, 137, (85,17,0): 91, 89, 138, (85,18,0): 81, 81, 133, (85,19,0): 78, 79, 135, (85,20,0): 82, 83, 147, (85,21,0): 91, 94, 163, (85,22,0): 101, 105, 179, (85,23,0): 108, 111, 190, (85,24,0): 117, 119, 202, (85,25,0): 122, 124, 209, (85,26,0): 127, 129, 214, (85,27,0): 131, 133, 216, (85,28,0): 134, 135, 217, (85,29,0): 134, 135, 215, (85,30,0): 136, 135, 213, (85,31,0): 137, 136, 212, (85,32,0): 135, 135, 205, (85,33,0): 134, 134, 204, (85,34,0): 134, 132, 205, (85,35,0): 133, 130, 207, (85,36,0): 133, 128, 210, (85,37,0): 133, 128, 210, (85,38,0): 135, 127, 212, (85,39,0): 135, 128, 208, (85,40,0): 141, 133, 210, (85,41,0): 140, 133, 201, (85,42,0): 141, 133, 192, (85,43,0): 140, 134, 182, (85,44,0): 139, 133, 169, (85,45,0): 132, 128, 155, (85,46,0): 123, 118, 138, (85,47,0): 124, 106, 120, (85,48,0): 129, 87, 97, (85,49,0): 126, 81, 86, (85,50,0): 109, 85, 81, (85,51,0): 100, 94, 80, (85,52,0): 92, 100, 77, (85,53,0): 89, 97, 73, (85,54,0): 99, 93, 69, (85,55,0): 118, 87, 67, (85,56,0): 146, 78, 69, (85,57,0): 183, 85, 82, (85,58,0): 209, 84, 90, (85,59,0): 219, 82, 90, (85,60,0): 231, 92, 99, (85,61,0): 231, 98, 103, (85,62,0): 228, 104, 106, (85,63,0): 231, 113, 111, (85,64,0): 236, 121, 114, (85,65,0): 230, 113, 104, (85,66,0): 247, 124, 116, (85,67,0): 243, 115, 106, (85,68,0): 254, 120, 109, (85,69,0): 230, 92, 81, (85,70,0): 196, 59, 43, (85,71,0): 190, 53, 35, (85,72,0): 194, 59, 39, (85,73,0): 193, 61, 40, (85,74,0): 193, 61, 40, (85,75,0): 195, 60, 40, (85,76,0): 196, 59, 40, (85,77,0): 200, 59, 41, (85,78,0): 203, 57, 42, (85,79,0): 207, 55, 42, (85,80,0): 214, 53, 43, (85,81,0): 216, 55, 45, (85,82,0): 212, 58, 46, (85,83,0): 206, 58, 44, (85,84,0): 199, 58, 41, (85,85,0): 196, 56, 39, (85,86,0): 198, 58, 41, (85,87,0): 202, 61, 44, (85,88,0): 207, 61, 46, (85,89,0): 214, 64, 50, (85,90,0): 217, 65, 52, (85,91,0): 214, 62, 49, (85,92,0): 206, 56, 42, (85,93,0): 200, 52, 38, (85,94,0): 202, 56, 41, (85,95,0): 203, 60, 44, (85,96,0): 201, 58, 44, (85,97,0): 200, 58, 44, (85,98,0): 201, 59, 47, (85,99,0): 201, 59, 45, (85,100,0): 202, 58, 47, (85,101,0): 200, 57, 43, (85,102,0): 200, 53, 43, (85,103,0): 199, 53, 40, (85,104,0): 202, 54, 44, (85,105,0): 207, 59, 47, (85,106,0): 210, 62, 52, (85,107,0): 211, 63, 51, (85,108,0): 214, 63, 54, (85,109,0): 213, 62, 51, (85,110,0): 206, 55, 46, (85,111,0): 201, 44, 35, (85,112,0): 210, 43, 37, (85,113,0): 220, 45, 42, (85,114,0): 231, 48, 50, (85,115,0): 240, 51, 57, (85,116,0): 246, 49, 59, (85,117,0): 250, 48, 60, (85,118,0): 253, 48, 63, (85,119,0): 253, 48, 63, (85,120,0): 249, 48, 64, (85,121,0): 247, 49, 64, (85,122,0): 247, 49, 64, (85,123,0): 246, 48, 61, (85,124,0): 247, 47, 60, (85,125,0): 247, 45, 57, (85,126,0): 250, 44, 57, (85,127,0): 250, 42, 55, (85,128,0): 252, 46, 59, (85,129,0): 248, 46, 58, (85,130,0): 245, 48, 58, (85,131,0): 240, 51, 58, (85,132,0): 237, 54, 59, (85,133,0): 231, 55, 58, (85,134,0): 224, 54, 54, (85,135,0): 218, 53, 51, (85,136,0): 220, 57, 52, (85,137,0): 221, 58, 53, (85,138,0): 223, 58, 54, (85,139,0): 226, 58, 55, (85,140,0): 229, 57, 53, (85,141,0): 231, 56, 53, (85,142,0): 234, 54, 53, (85,143,0): 236, 52, 52, (85,144,0): 242, 53, 57, (85,145,0): 242, 53, 57, (85,146,0): 240, 54, 55, (85,147,0): 237, 55, 54, (85,148,0): 230, 55, 52, (85,149,0): 223, 54, 47, (85,150,0): 218, 54, 45, (85,151,0): 214, 54, 42, (85,152,0): 213, 55, 43, (85,153,0): 212, 56, 41, (85,154,0): 212, 56, 41, (85,155,0): 212, 57, 39, (85,156,0): 213, 56, 39, (85,157,0): 213, 56, 37, (85,158,0): 215, 55, 39, (85,159,0): 212, 57, 37, (85,160,0): 208, 57, 36, (85,161,0): 206, 60, 37, (85,162,0): 207, 61, 38, (85,163,0): 207, 63, 39, (85,164,0): 206, 64, 40, (85,165,0): 206, 64, 42, (85,166,0): 206, 63, 46, (85,167,0): 208, 60, 48, (85,168,0): 208, 55, 49, (85,169,0): 232, 72, 72, (85,170,0): 255, 103, 113, (85,171,0): 254, 78, 98, (85,172,0): 255, 72, 100, (85,173,0): 246, 56, 90, (85,174,0): 255, 66, 108, (85,175,0): 246, 49, 92, (85,176,0): 255, 57, 96, (85,177,0): 234, 55, 87, (85,178,0): 221, 83, 106, (85,179,0): 185, 87, 102, (85,180,0): 107, 50, 57, (85,181,0): 71, 41, 43, (85,182,0): 71, 55, 58, (85,183,0): 59, 50, 51, (85,184,0): 56, 51, 48, (85,185,0): 58, 55, 48, (85,186,0): 57, 59, 45, (85,187,0): 53, 58, 35, (85,188,0): 51, 56, 24, (85,189,0): 66, 68, 29, (85,190,0): 102, 99, 58, (85,191,0): 129, 131, 84, (85,192,0): 159, 174, 119, (85,193,0): 169, 193, 135, (85,194,0): 181, 206, 151, (85,195,0): 175, 199, 147, (85,196,0): 146, 174, 125, (85,197,0): 118, 148, 98, (85,198,0): 101, 134, 81, (85,199,0): 96, 130, 70, (85,200,0): 96, 133, 66, (85,201,0): 99, 136, 66, (85,202,0): 103, 143, 70, (85,203,0): 109, 150, 74, (85,204,0): 114, 152, 79, (85,205,0): 114, 151, 82, (85,206,0): 113, 149, 85, (85,207,0): 112, 148, 84, (85,208,0): 111, 148, 78, (85,209,0): 108, 145, 75, (85,210,0): 104, 141, 72, (85,211,0): 102, 139, 70, (85,212,0): 104, 139, 75, (85,213,0): 105, 140, 76, (85,214,0): 105, 139, 78, (85,215,0): 105, 139, 79, (85,216,0): 103, 134, 75, (85,217,0): 102, 133, 74, (85,218,0): 101, 132, 73, (85,219,0): 102, 133, 73, (85,220,0): 104, 136, 73, (85,221,0): 105, 137, 72, (85,222,0): 105, 135, 71, (85,223,0): 102, 134, 67, (85,224,0): 106, 143, 74, (85,225,0): 107, 147, 77, (85,226,0): 110, 150, 80, (86,0,0): 40, 48, 35, (86,1,0): 43, 49, 39, (86,2,0): 47, 52, 45, (86,3,0): 51, 53, 48, (86,4,0): 55, 54, 52, (86,5,0): 60, 56, 53, (86,6,0): 64, 61, 56, (86,7,0): 67, 62, 56, (86,8,0): 73, 69, 60, (86,9,0): 72, 69, 60, (86,10,0): 75, 72, 67, (86,11,0): 82, 80, 81, (86,12,0): 91, 91, 101, (86,13,0): 97, 98, 116, (86,14,0): 98, 98, 124, (86,15,0): 96, 96, 130, (86,16,0): 95, 94, 136, (86,17,0): 90, 88, 138, (86,18,0): 84, 84, 138, (86,19,0): 84, 84, 144, (86,20,0): 92, 93, 160, (86,21,0): 103, 105, 179, (86,22,0): 112, 115, 196, (86,23,0): 118, 120, 205, (86,24,0): 123, 127, 216, (86,25,0): 126, 130, 219, (86,26,0): 131, 132, 222, (86,27,0): 132, 134, 221, (86,28,0): 132, 133, 216, (86,29,0): 131, 132, 214, (86,30,0): 133, 132, 212, (86,31,0): 134, 133, 209, (86,32,0): 131, 134, 203, (86,33,0): 130, 133, 202, (86,34,0): 131, 131, 205, (86,35,0): 130, 129, 207, (86,36,0): 131, 127, 211, (86,37,0): 133, 128, 212, (86,38,0): 136, 128, 214, (86,39,0): 136, 128, 211, (86,40,0): 141, 133, 210, (86,41,0): 139, 132, 200, (86,42,0): 139, 131, 188, (86,43,0): 139, 132, 176, (86,44,0): 137, 130, 163, (86,45,0): 129, 124, 146, (86,46,0): 119, 113, 127, (86,47,0): 117, 102, 109, (86,48,0): 125, 86, 91, (86,49,0): 121, 81, 81, (86,50,0): 107, 87, 78, (86,51,0): 101, 95, 79, (86,52,0): 93, 101, 77, (86,53,0): 91, 100, 73, (86,54,0): 100, 96, 71, (86,55,0): 116, 91, 69, (86,56,0): 140, 82, 70, (86,57,0): 176, 91, 84, (86,58,0): 202, 89, 91, (86,59,0): 214, 85, 90, (86,60,0): 226, 91, 97, (86,61,0): 230, 93, 100, (86,62,0): 231, 98, 101, (86,63,0): 237, 109, 108, (86,64,0): 245, 122, 115, (86,65,0): 237, 114, 106, (86,66,0): 247, 120, 111, (86,67,0): 222, 89, 80, (86,68,0): 229, 91, 80, (86,69,0): 210, 68, 56, (86,70,0): 195, 53, 39, (86,71,0): 199, 58, 41, (86,72,0): 197, 58, 39, (86,73,0): 196, 60, 38, (86,74,0): 197, 61, 39, (86,75,0): 200, 61, 40, (86,76,0): 202, 59, 42, (86,77,0): 205, 58, 42, (86,78,0): 208, 56, 42, (86,79,0): 212, 54, 42, (86,80,0): 211, 48, 39, (86,81,0): 212, 51, 41, (86,82,0): 210, 56, 44, (86,83,0): 205, 59, 44, (86,84,0): 199, 59, 42, (86,85,0): 194, 59, 40, (86,86,0): 192, 59, 40, (86,87,0): 195, 60, 41, (86,88,0): 200, 59, 42, (86,89,0): 213, 67, 52, (86,90,0): 225, 75, 61, (86,91,0): 222, 72, 58, (86,92,0): 211, 61, 47, (86,93,0): 202, 52, 38, (86,94,0): 201, 53, 39, (86,95,0): 205, 59, 44, (86,96,0): 200, 57, 41, (86,97,0): 200, 57, 41, (86,98,0): 200, 57, 43, (86,99,0): 200, 57, 41, (86,100,0): 202, 56, 43, (86,101,0): 202, 56, 41, (86,102,0): 203, 55, 43, (86,103,0): 203, 55, 41, (86,104,0): 205, 54, 43, (86,105,0): 210, 60, 46, (86,106,0): 215, 63, 52, (86,107,0): 216, 64, 51, (86,108,0): 218, 64, 54, (86,109,0): 219, 65, 53, (86,110,0): 215, 58, 49, (86,111,0): 210, 49, 41, (86,112,0): 220, 48, 46, (86,113,0): 229, 49, 52, (86,114,0): 238, 52, 57, (86,115,0): 245, 54, 62, (86,116,0): 249, 52, 62, (86,117,0): 249, 49, 62, (86,118,0): 250, 48, 64, (86,119,0): 248, 47, 63, (86,120,0): 242, 46, 60, (86,121,0): 239, 47, 60, (86,122,0): 237, 47, 57, (86,123,0): 237, 48, 55, (86,124,0): 239, 45, 53, (86,125,0): 239, 44, 50, (86,126,0): 242, 43, 50, (86,127,0): 241, 42, 49, (86,128,0): 244, 49, 57, (86,129,0): 244, 50, 58, (86,130,0): 242, 53, 59, (86,131,0): 236, 53, 57, (86,132,0): 229, 53, 55, (86,133,0): 225, 53, 53, (86,134,0): 223, 55, 54, (86,135,0): 221, 56, 54, (86,136,0): 220, 56, 54, (86,137,0): 221, 57, 55, (86,138,0): 223, 58, 54, (86,139,0): 227, 58, 55, (86,140,0): 230, 56, 55, (86,141,0): 233, 55, 55, (86,142,0): 234, 54, 55, (86,143,0): 236, 52, 54, (86,144,0): 244, 53, 58, (86,145,0): 244, 53, 58, (86,146,0): 241, 55, 58, (86,147,0): 238, 56, 55, (86,148,0): 230, 55, 52, (86,149,0): 224, 55, 48, (86,150,0): 218, 54, 45, (86,151,0): 212, 54, 42, (86,152,0): 211, 55, 42, (86,153,0): 209, 56, 42, (86,154,0): 208, 56, 42, (86,155,0): 208, 57, 40, (86,156,0): 208, 57, 40, (86,157,0): 208, 57, 38, (86,158,0): 209, 56, 40, (86,159,0): 208, 57, 38, (86,160,0): 203, 57, 34, (86,161,0): 200, 58, 34, (86,162,0): 200, 62, 36, (86,163,0): 199, 63, 37, (86,164,0): 200, 64, 40, (86,165,0): 200, 64, 42, (86,166,0): 203, 62, 45, (86,167,0): 206, 59, 49, (86,168,0): 213, 58, 54, (86,169,0): 250, 85, 91, (86,170,0): 255, 94, 111, (86,171,0): 255, 71, 97, (86,172,0): 253, 62, 95, (86,173,0): 254, 58, 96, (86,174,0): 255, 56, 102, (86,175,0): 250, 53, 98, (86,176,0): 244, 58, 95, (86,177,0): 230, 71, 99, (86,178,0): 192, 80, 96, (86,179,0): 135, 64, 72, (86,180,0): 84, 50, 51, (86,181,0): 67, 53, 52, (86,182,0): 68, 57, 61, (86,183,0): 62, 51, 55, (86,184,0): 66, 51, 54, (86,185,0): 64, 53, 49, (86,186,0): 58, 56, 43, (86,187,0): 54, 60, 34, (86,188,0): 57, 67, 30, (86,189,0): 80, 92, 46, (86,190,0): 125, 132, 80, (86,191,0): 159, 168, 113, (86,192,0): 176, 197, 138, (86,193,0): 175, 203, 142, (86,194,0): 176, 204, 146, (86,195,0): 166, 195, 141, (86,196,0): 146, 174, 125, (86,197,0): 123, 153, 101, (86,198,0): 103, 136, 81, (86,199,0): 95, 129, 69, (86,200,0): 94, 131, 64, (86,201,0): 99, 137, 64, (86,202,0): 105, 143, 68, (86,203,0): 111, 149, 74, (86,204,0): 115, 153, 80, (86,205,0): 115, 152, 83, (86,206,0): 113, 149, 85, (86,207,0): 111, 147, 83, (86,208,0): 110, 147, 78, (86,209,0): 107, 144, 74, (86,210,0): 103, 140, 71, (86,211,0): 101, 138, 69, (86,212,0): 103, 138, 74, (86,213,0): 104, 139, 75, (86,214,0): 105, 139, 78, (86,215,0): 105, 139, 78, (86,216,0): 102, 136, 75, (86,217,0): 100, 134, 73, (86,218,0): 100, 134, 73, (86,219,0): 101, 136, 72, (86,220,0): 103, 138, 74, (86,221,0): 104, 139, 73, (86,222,0): 105, 137, 72, (86,223,0): 102, 137, 69, (86,224,0): 106, 146, 76, (86,225,0): 108, 150, 78, (86,226,0): 111, 153, 81, (87,0,0): 38, 46, 33, (87,1,0): 40, 48, 37, (87,2,0): 45, 50, 43, (87,3,0): 49, 51, 46, (87,4,0): 51, 51, 49, (87,5,0): 55, 54, 52, (87,6,0): 58, 57, 53, (87,7,0): 60, 59, 54, (87,8,0): 71, 68, 61, (87,9,0): 68, 68, 60, (87,10,0): 71, 70, 66, (87,11,0): 79, 79, 81, (87,12,0): 90, 90, 100, (87,13,0): 95, 97, 112, (87,14,0): 94, 96, 121, (87,15,0): 92, 92, 126, (87,16,0): 96, 95, 137, (87,17,0): 92, 90, 140, (87,18,0): 89, 88, 145, (87,19,0): 92, 92, 154, (87,20,0): 103, 103, 173, (87,21,0): 113, 115, 192, (87,22,0): 122, 124, 209, (87,23,0): 127, 128, 220, (87,24,0): 129, 132, 225, (87,25,0): 130, 133, 228, (87,26,0): 133, 134, 227, (87,27,0): 132, 133, 225, (87,28,0): 131, 131, 219, (87,29,0): 129, 130, 213, (87,30,0): 131, 130, 210, (87,31,0): 131, 130, 206, (87,32,0): 132, 135, 204, (87,33,0): 131, 134, 201, (87,34,0): 132, 132, 204, (87,35,0): 131, 130, 206, (87,36,0): 133, 130, 211, (87,37,0): 135, 130, 214, (87,38,0): 138, 130, 215, (87,39,0): 140, 131, 212, (87,40,0): 141, 133, 208, (87,41,0): 140, 131, 196, (87,42,0): 139, 130, 183, (87,43,0): 138, 130, 171, (87,44,0): 133, 127, 155, (87,45,0): 127, 120, 136, (87,46,0): 115, 110, 117, (87,47,0): 111, 99, 99, (87,48,0): 117, 87, 85, (87,49,0): 114, 84, 76, (87,50,0): 105, 87, 75, (87,51,0): 102, 95, 77, (87,52,0): 99, 101, 77, (87,53,0): 97, 100, 73, (87,54,0): 102, 96, 70, (87,55,0): 115, 93, 70, (87,56,0): 125, 79, 63, (87,57,0): 159, 89, 77, (87,58,0): 184, 89, 83, (87,59,0): 197, 83, 82, (87,60,0): 215, 86, 90, (87,61,0): 226, 87, 92, (87,62,0): 233, 90, 96, (87,63,0): 240, 100, 101, (87,64,0): 247, 114, 109, (87,65,0): 241, 110, 102, (87,66,0): 247, 113, 104, (87,67,0): 209, 68, 59, (87,68,0): 212, 65, 55, (87,69,0): 197, 49, 37, (87,70,0): 200, 52, 38, (87,71,0): 212, 67, 50, (87,72,0): 199, 57, 37, (87,73,0): 199, 58, 38, (87,74,0): 201, 59, 39, (87,75,0): 205, 60, 41, (87,76,0): 208, 58, 43, (87,77,0): 211, 58, 44, (87,78,0): 216, 56, 44, (87,79,0): 217, 55, 44, (87,80,0): 207, 44, 35, (87,81,0): 206, 48, 37, (87,82,0): 206, 54, 41, (87,83,0): 203, 60, 44, (87,84,0): 199, 64, 45, (87,85,0): 193, 62, 42, (87,86,0): 190, 59, 39, (87,87,0): 188, 55, 36, (87,88,0): 192, 52, 35, (87,89,0): 209, 66, 50, (87,90,0): 227, 79, 65, (87,91,0): 228, 78, 64, (87,92,0): 216, 66, 52, (87,93,0): 203, 55, 41, (87,94,0): 203, 55, 41, (87,95,0): 208, 62, 47, (87,96,0): 202, 59, 43, (87,97,0): 201, 58, 42, (87,98,0): 199, 56, 40, (87,99,0): 198, 55, 39, (87,100,0): 200, 54, 39, (87,101,0): 202, 54, 40, (87,102,0): 206, 56, 42, (87,103,0): 208, 56, 43, (87,104,0): 211, 59, 46, (87,105,0): 213, 59, 47, (87,106,0): 213, 57, 45, (87,107,0): 210, 54, 42, (87,108,0): 213, 55, 44, (87,109,0): 218, 60, 49, (87,110,0): 221, 60, 50, (87,111,0): 220, 55, 49, (87,112,0): 232, 56, 56, (87,113,0): 241, 56, 61, (87,114,0): 247, 58, 65, (87,115,0): 251, 57, 66, (87,116,0): 250, 52, 65, (87,117,0): 245, 47, 60, (87,118,0): 242, 44, 59, (87,119,0): 239, 44, 58, (87,120,0): 237, 47, 59, (87,121,0): 234, 49, 57, (87,122,0): 234, 51, 56, (87,123,0): 235, 52, 56, (87,124,0): 237, 53, 55, (87,125,0): 241, 53, 54, (87,126,0): 244, 51, 54, (87,127,0): 243, 53, 55, (87,128,0): 239, 50, 54, (87,129,0): 238, 53, 58, (87,130,0): 236, 56, 59, (87,131,0): 233, 54, 57, (87,132,0): 226, 52, 53, (87,133,0): 222, 52, 52, (87,134,0): 223, 55, 54, (87,135,0): 225, 60, 58, (87,136,0): 221, 56, 54, (87,137,0): 222, 57, 55, (87,138,0): 225, 57, 54, (87,139,0): 227, 58, 55, (87,140,0): 230, 56, 55, (87,141,0): 233, 55, 55, (87,142,0): 234, 54, 55, (87,143,0): 236, 52, 54, (87,144,0): 244, 53, 58, (87,145,0): 244, 53, 58, (87,146,0): 241, 55, 58, (87,147,0): 236, 56, 57, (87,148,0): 230, 57, 53, (87,149,0): 223, 56, 50, (87,150,0): 216, 55, 47, (87,151,0): 211, 55, 43, (87,152,0): 208, 56, 43, (87,153,0): 205, 58, 42, (87,154,0): 205, 57, 43, (87,155,0): 204, 59, 42, (87,156,0): 205, 58, 42, (87,157,0): 205, 58, 40, (87,158,0): 205, 58, 42, (87,159,0): 204, 59, 40, (87,160,0): 197, 57, 34, (87,161,0): 194, 58, 34, (87,162,0): 195, 61, 36, (87,163,0): 194, 62, 37, (87,164,0): 195, 63, 40, (87,165,0): 198, 63, 43, (87,166,0): 201, 61, 46, (87,167,0): 205, 56, 49, (87,168,0): 220, 60, 62, (87,169,0): 255, 93, 102, (87,170,0): 255, 81, 103, (87,171,0): 255, 72, 100, (87,172,0): 250, 56, 91, (87,173,0): 255, 63, 103, (87,174,0): 246, 46, 92, (87,175,0): 251, 62, 104, (87,176,0): 228, 61, 91, (87,177,0): 224, 93, 111, (87,178,0): 162, 76, 85, (87,179,0): 91, 45, 45, (87,180,0): 71, 56, 51, (87,181,0): 70, 66, 63, (87,182,0): 64, 55, 58, (87,183,0): 67, 52, 57, (87,184,0): 71, 48, 54, (87,185,0): 70, 50, 49, (87,186,0): 64, 57, 41, (87,187,0): 63, 68, 38, (87,188,0): 69, 86, 42, (87,189,0): 96, 116, 63, (87,190,0): 139, 157, 97, (87,191,0): 170, 190, 127, (87,192,0): 177, 203, 140, (87,193,0): 171, 201, 139, (87,194,0): 166, 195, 139, (87,195,0): 157, 186, 132, (87,196,0): 142, 172, 122, (87,197,0): 123, 153, 101, (87,198,0): 102, 135, 80, (87,199,0): 90, 124, 64, (87,200,0): 94, 129, 63, (87,201,0): 97, 135, 62, (87,202,0): 104, 142, 67, (87,203,0): 111, 149, 74, (87,204,0): 114, 152, 79, (87,205,0): 114, 151, 82, (87,206,0): 112, 148, 84, (87,207,0): 110, 146, 82, (87,208,0): 110, 147, 78, (87,209,0): 106, 143, 73, (87,210,0): 102, 139, 70, (87,211,0): 100, 137, 68, (87,212,0): 102, 137, 73, (87,213,0): 104, 139, 75, (87,214,0): 105, 139, 78, (87,215,0): 105, 139, 78, (87,216,0): 102, 136, 75, (87,217,0): 101, 135, 74, (87,218,0): 100, 135, 71, (87,219,0): 101, 136, 70, (87,220,0): 103, 138, 72, (87,221,0): 104, 139, 71, (87,222,0): 104, 139, 71, (87,223,0): 101, 138, 68, (87,224,0): 107, 147, 76, (87,225,0): 109, 151, 79, (87,226,0): 112, 154, 82, (88,0,0): 40, 48, 33, (88,1,0): 39, 47, 34, (88,2,0): 40, 45, 38, (88,3,0): 41, 46, 40, (88,4,0): 46, 48, 45, (88,5,0): 51, 51, 49, (88,6,0): 55, 56, 51, (88,7,0): 57, 58, 52, (88,8,0): 61, 61, 53, (88,9,0): 63, 64, 56, (88,10,0): 68, 69, 64, (88,11,0): 74, 76, 75, (88,12,0): 79, 82, 89, (88,13,0): 86, 88, 101, (88,14,0): 90, 92, 115, (88,15,0): 93, 94, 125, (88,16,0): 89, 88, 130, (88,17,0): 91, 89, 139, (88,18,0): 94, 93, 150, (88,19,0): 101, 101, 163, (88,20,0): 110, 110, 182, (88,21,0): 119, 120, 200, (88,22,0): 127, 129, 216, (88,23,0): 132, 133, 226, (88,24,0): 140, 140, 238, (88,25,0): 140, 140, 240, (88,26,0): 138, 138, 236, (88,27,0): 134, 135, 228, (88,28,0): 130, 130, 220, (88,29,0): 128, 128, 214, (88,30,0): 130, 128, 211, (88,31,0): 131, 130, 206, (88,32,0): 128, 131, 198, (88,33,0): 129, 133, 197, (88,34,0): 131, 131, 201, (88,35,0): 132, 132, 206, (88,36,0): 134, 131, 208, (88,37,0): 136, 131, 211, (88,38,0): 139, 132, 210, (88,39,0): 140, 132, 207, (88,40,0): 138, 128, 197, (88,41,0): 138, 128, 188, (88,42,0): 137, 128, 175, (88,43,0): 135, 125, 160, (88,44,0): 128, 120, 143, (88,45,0): 119, 111, 122, (88,46,0): 107, 101, 103, (88,47,0): 102, 93, 88, (88,48,0): 106, 92, 81, (88,49,0): 108, 92, 77, (88,50,0): 104, 92, 76, (88,51,0): 102, 94, 75, (88,52,0): 101, 95, 73, (88,53,0): 102, 96, 72, (88,54,0): 106, 96, 71, (88,55,0): 114, 94, 70, (88,56,0): 114, 79, 59, (88,57,0): 135, 84, 65, (88,58,0): 166, 92, 79, (88,59,0): 193, 96, 89, (88,60,0): 209, 89, 88, (88,61,0): 220, 81, 84, (88,62,0): 237, 83, 91, (88,63,0): 247, 92, 96, (88,64,0): 249, 104, 101, (88,65,0): 230, 89, 80, (88,66,0): 212, 68, 60, (88,67,0): 206, 55, 48, (88,68,0): 209, 55, 47, (88,69,0): 215, 58, 49, (88,70,0): 214, 61, 47, (88,71,0): 212, 59, 43, (88,72,0): 207, 57, 40, (88,73,0): 205, 58, 38, (88,74,0): 207, 57, 40, (88,75,0): 209, 58, 41, (88,76,0): 212, 56, 41, (88,77,0): 216, 56, 42, (88,78,0): 220, 53, 44, (88,79,0): 220, 53, 44, (88,80,0): 208, 47, 37, (88,81,0): 205, 51, 41, (88,82,0): 204, 56, 44, (88,83,0): 202, 62, 47, (88,84,0): 197, 64, 47, (88,85,0): 193, 64, 45, (88,86,0): 190, 61, 42, (88,87,0): 188, 57, 39, (88,88,0): 194, 57, 41, (88,89,0): 190, 48, 34, (88,90,0): 233, 87, 74, (88,91,0): 223, 75, 63, (88,92,0): 195, 47, 35, (88,93,0): 209, 61, 49, (88,94,0): 206, 60, 47, (88,95,0): 199, 56, 40, (88,96,0): 202, 59, 43, (88,97,0): 201, 58, 41, (88,98,0): 200, 57, 40, (88,99,0): 199, 56, 39, (88,100,0): 200, 55, 38, (88,101,0): 201, 54, 38, (88,102,0): 203, 53, 38, (88,103,0): 204, 52, 38, (88,104,0): 208, 55, 41, (88,105,0): 215, 59, 46, (88,106,0): 220, 62, 50, (88,107,0): 220, 60, 48, (88,108,0): 217, 55, 44, (88,109,0): 218, 56, 45, (88,110,0): 226, 62, 52, (88,111,0): 236, 67, 60, (88,112,0): 245, 66, 69, (88,113,0): 242, 57, 63, (88,114,0): 240, 50, 60, (88,115,0): 246, 52, 63, (88,116,0): 246, 50, 64, (88,117,0): 241, 45, 59, (88,118,0): 237, 45, 58, (88,119,0): 237, 50, 61, (88,120,0): 236, 55, 62, (88,121,0): 230, 53, 59, (88,122,0): 228, 54, 56, (88,123,0): 229, 55, 56, (88,124,0): 235, 57, 57, (88,125,0): 240, 58, 57, (88,126,0): 241, 55, 56, (88,127,0): 239, 55, 55, (88,128,0): 242, 59, 61, (88,129,0): 238, 60, 60, (88,130,0): 234, 58, 58, (88,131,0): 230, 56, 55, (88,132,0): 225, 56, 53, (88,133,0): 223, 55, 52, (88,134,0): 220, 55, 53, (88,135,0): 220, 55, 53, (88,136,0): 222, 57, 55, (88,137,0): 225, 57, 56, (88,138,0): 227, 57, 57, (88,139,0): 230, 58, 58, (88,140,0): 233, 57, 59, (88,141,0): 236, 57, 60, (88,142,0): 237, 57, 60, (88,143,0): 239, 56, 60, (88,144,0): 244, 55, 59, (88,145,0): 243, 54, 58, (88,146,0): 240, 56, 58, (88,147,0): 237, 57, 58, (88,148,0): 231, 59, 57, (88,149,0): 224, 59, 53, (88,150,0): 215, 57, 48, (88,151,0): 207, 55, 44, (88,152,0): 202, 56, 43, (88,153,0): 200, 57, 41, (88,154,0): 199, 57, 43, (88,155,0): 198, 58, 41, (88,156,0): 199, 58, 41, (88,157,0): 199, 58, 40, (88,158,0): 200, 59, 42, (88,159,0): 199, 60, 41, (88,160,0): 193, 57, 35, (88,161,0): 196, 61, 39, (88,162,0): 190, 58, 35, (88,163,0): 182, 52, 30, (88,164,0): 188, 57, 37, (88,165,0): 201, 68, 51, (88,166,0): 206, 64, 54, (88,167,0): 201, 49, 44, (88,168,0): 255, 95, 101, (88,169,0): 255, 87, 103, (88,170,0): 255, 75, 98, (88,171,0): 252, 61, 92, (88,172,0): 245, 51, 88, (88,173,0): 242, 50, 89, (88,174,0): 247, 56, 99, (88,175,0): 240, 69, 105, (88,176,0): 228, 91, 111, (88,177,0): 171, 71, 81, (88,178,0): 110, 52, 51, (88,179,0): 78, 51, 44, (88,180,0): 67, 63, 54, (88,181,0): 65, 66, 60, (88,182,0): 66, 54, 56, (88,183,0): 66, 43, 49, (88,184,0): 77, 46, 51, (88,185,0): 77, 49, 46, (88,186,0): 67, 56, 38, (88,187,0): 68, 74, 40, (88,188,0): 88, 110, 61, (88,189,0): 125, 155, 95, (88,190,0): 155, 186, 119, (88,191,0): 167, 198, 130, (88,192,0): 171, 203, 140, (88,193,0): 159, 190, 130, (88,194,0): 152, 182, 128, (88,195,0): 148, 178, 126, (88,196,0): 130, 160, 110, (88,197,0): 102, 132, 82, (88,198,0): 88, 118, 66, (88,199,0): 89, 123, 63, (88,200,0): 93, 128, 62, (88,201,0): 99, 135, 65, (88,202,0): 105, 143, 68, (88,203,0): 110, 148, 73, (88,204,0): 109, 149, 76, (88,205,0): 108, 148, 78, (88,206,0): 107, 146, 79, (88,207,0): 108, 145, 78, (88,208,0): 105, 142, 73, (88,209,0): 102, 138, 68, (88,210,0): 99, 134, 66, (88,211,0): 99, 134, 66, (88,212,0): 102, 137, 73, (88,213,0): 104, 139, 75, (88,214,0): 102, 138, 76, (88,215,0): 100, 136, 74, (88,216,0): 103, 139, 77, (88,217,0): 104, 140, 78, (88,218,0): 103, 139, 75, (88,219,0): 102, 139, 72, (88,220,0): 101, 138, 69, (88,221,0): 102, 139, 69, (88,222,0): 106, 143, 73, (88,223,0): 107, 147, 74, (88,224,0): 113, 155, 81, (88,225,0): 113, 157, 82, (88,226,0): 114, 158, 83, (89,0,0): 42, 48, 34, (89,1,0): 41, 47, 35, (89,2,0): 41, 46, 39, (89,3,0): 41, 46, 40, (89,4,0): 45, 47, 44, (89,5,0): 49, 51, 48, (89,6,0): 53, 54, 49, (89,7,0): 55, 56, 50, (89,8,0): 59, 60, 52, (89,9,0): 62, 63, 55, (89,10,0): 65, 68, 61, (89,11,0): 72, 74, 71, (89,12,0): 79, 80, 84, (89,13,0): 83, 85, 97, (89,14,0): 88, 89, 107, (89,15,0): 90, 92, 117, (89,16,0): 92, 90, 127, (89,17,0): 94, 93, 137, (89,18,0): 100, 98, 148, (89,19,0): 107, 106, 164, (89,20,0): 117, 116, 186, (89,21,0): 127, 126, 206, (89,22,0): 135, 135, 223, (89,23,0): 139, 140, 233, (89,24,0): 141, 141, 239, (89,25,0): 140, 140, 240, (89,26,0): 137, 137, 235, (89,27,0): 133, 132, 226, (89,28,0): 128, 128, 216, (89,29,0): 128, 126, 210, (89,30,0): 128, 127, 207, (89,31,0): 130, 130, 204, (89,32,0): 133, 134, 199, (89,33,0): 134, 135, 199, (89,34,0): 135, 136, 201, (89,35,0): 137, 136, 204, (89,36,0): 139, 136, 207, (89,37,0): 140, 134, 206, (89,38,0): 141, 134, 204, (89,39,0): 142, 133, 200, (89,40,0): 138, 128, 188, (89,41,0): 137, 127, 177, (89,42,0): 134, 124, 161, (89,43,0): 130, 120, 147, (89,44,0): 123, 115, 130, (89,45,0): 116, 107, 112, (89,46,0): 108, 98, 96, (89,47,0): 100, 93, 83, (89,48,0): 99, 96, 79, (89,49,0): 98, 96, 75, (89,50,0): 101, 94, 75, (89,51,0): 102, 94, 75, (89,52,0): 105, 92, 73, (89,53,0): 108, 93, 72, (89,54,0): 110, 94, 71, (89,55,0): 113, 93, 69, (89,56,0): 121, 93, 71, (89,57,0): 130, 89, 67, (89,58,0): 149, 88, 70, (89,59,0): 173, 90, 76, (89,60,0): 199, 86, 80, (89,61,0): 221, 83, 83, (89,62,0): 243, 82, 88, (89,63,0): 254, 89, 95, (89,64,0): 240, 85, 83, (89,65,0): 227, 76, 69, (89,66,0): 217, 62, 57, (89,67,0): 213, 54, 48, (89,68,0): 217, 54, 47, (89,69,0): 220, 57, 48, (89,70,0): 219, 57, 44, (89,71,0): 214, 57, 40, (89,72,0): 211, 56, 38, (89,73,0): 209, 56, 38, (89,74,0): 209, 56, 40, (89,75,0): 212, 56, 41, (89,76,0): 215, 55, 41, (89,77,0): 220, 54, 42, (89,78,0): 223, 52, 44, (89,79,0): 221, 53, 44, (89,80,0): 206, 48, 39, (89,81,0): 201, 53, 41, (89,82,0): 200, 57, 43, (89,83,0): 198, 61, 45, (89,84,0): 196, 65, 47, (89,85,0): 193, 64, 45, (89,86,0): 191, 60, 42, (89,87,0): 190, 57, 40, (89,88,0): 196, 56, 41, (89,89,0): 203, 60, 46, (89,90,0): 228, 82, 69, (89,91,0): 220, 72, 60, (89,92,0): 200, 52, 40, (89,93,0): 204, 58, 45, (89,94,0): 200, 58, 44, (89,95,0): 194, 52, 38, (89,96,0): 202, 61, 44, (89,97,0): 203, 60, 43, (89,98,0): 202, 59, 42, (89,99,0): 202, 59, 42, (89,100,0): 203, 58, 41, (89,101,0): 204, 57, 41, (89,102,0): 206, 56, 41, (89,103,0): 207, 54, 40, (89,104,0): 211, 55, 42, (89,105,0): 214, 56, 44, (89,106,0): 217, 55, 44, (89,107,0): 215, 51, 41, (89,108,0): 213, 49, 39, (89,109,0): 216, 49, 40, (89,110,0): 222, 55, 46, (89,111,0): 231, 60, 53, (89,112,0): 248, 68, 71, (89,113,0): 241, 56, 62, (89,114,0): 237, 47, 57, (89,115,0): 239, 47, 58, (89,116,0): 240, 48, 61, (89,117,0): 238, 46, 59, (89,118,0): 235, 49, 60, (89,119,0): 235, 54, 63, (89,120,0): 228, 53, 58, (89,121,0): 220, 51, 54, (89,122,0): 216, 50, 50, (89,123,0): 223, 58, 56, (89,124,0): 238, 69, 66, (89,125,0): 248, 73, 70, (89,126,0): 248, 68, 67, (89,127,0): 243, 63, 62, (89,128,0): 233, 58, 55, (89,129,0): 231, 57, 56, (89,130,0): 229, 57, 55, (89,131,0): 226, 57, 54, (89,132,0): 225, 56, 53, (89,133,0): 224, 56, 53, (89,134,0): 225, 57, 56, (89,135,0): 225, 57, 56, (89,136,0): 224, 56, 55, (89,137,0): 226, 56, 56, (89,138,0): 229, 57, 57, (89,139,0): 231, 57, 58, (89,140,0): 233, 57, 59, (89,141,0): 236, 57, 60, (89,142,0): 237, 57, 60, (89,143,0): 238, 55, 59, (89,144,0): 243, 54, 58, (89,145,0): 242, 53, 57, (89,146,0): 238, 54, 56, (89,147,0): 234, 56, 56, (89,148,0): 228, 59, 56, (89,149,0): 220, 58, 53, (89,150,0): 211, 57, 47, (89,151,0): 203, 55, 43, (89,152,0): 198, 56, 42, (89,153,0): 195, 58, 42, (89,154,0): 194, 58, 42, (89,155,0): 192, 59, 42, (89,156,0): 192, 59, 42, (89,157,0): 193, 60, 41, (89,158,0): 193, 60, 43, (89,159,0): 193, 60, 41, (89,160,0): 189, 57, 36, (89,161,0): 193, 63, 41, (89,162,0): 187, 58, 37, (89,163,0): 179, 53, 31, (89,164,0): 185, 58, 39, (89,165,0): 192, 60, 47, (89,166,0): 201, 58, 50, (89,167,0): 215, 61, 61, (89,168,0): 255, 95, 103, (89,169,0): 255, 81, 100, (89,170,0): 253, 67, 91, (89,171,0): 246, 57, 87, (89,172,0): 242, 57, 91, (89,173,0): 242, 61, 96, (89,174,0): 240, 64, 100, (89,175,0): 224, 74, 101, (89,176,0): 170, 64, 76, (89,177,0): 131, 63, 62, (89,178,0): 95, 58, 50, (89,179,0): 72, 58, 47, (89,180,0): 59, 61, 48, (89,181,0): 59, 61, 50, (89,182,0): 73, 59, 58, (89,183,0): 85, 61, 61, (89,184,0): 81, 47, 46, (89,185,0): 84, 55, 47, (89,186,0): 87, 75, 53, (89,187,0): 100, 104, 69, (89,188,0): 119, 143, 91, (89,189,0): 140, 176, 112, (89,190,0): 154, 195, 125, (89,191,0): 159, 199, 129, (89,192,0): 152, 186, 125, (89,193,0): 154, 185, 128, (89,194,0): 154, 182, 131, (89,195,0): 141, 169, 120, (89,196,0): 114, 142, 94, (89,197,0): 89, 117, 69, (89,198,0): 84, 112, 61, (89,199,0): 92, 123, 66, (89,200,0): 95, 127, 64, (89,201,0): 98, 134, 64, (89,202,0): 105, 141, 67, (89,203,0): 109, 147, 72, (89,204,0): 108, 148, 75, (89,205,0): 107, 147, 76, (89,206,0): 105, 144, 77, (89,207,0): 105, 144, 77, (89,208,0): 103, 140, 71, (89,209,0): 101, 137, 67, (89,210,0): 99, 134, 66, (89,211,0): 99, 134, 68, (89,212,0): 103, 138, 74, (89,213,0): 105, 140, 76, (89,214,0): 104, 140, 78, (89,215,0): 103, 139, 77, (89,216,0): 105, 141, 79, (89,217,0): 105, 141, 77, (89,218,0): 105, 142, 75, (89,219,0): 103, 140, 71, (89,220,0): 103, 140, 70, (89,221,0): 102, 142, 69, (89,222,0): 108, 146, 73, (89,223,0): 109, 149, 76, (89,224,0): 112, 156, 81, (89,225,0): 111, 157, 82, (89,226,0): 114, 158, 83, (90,0,0): 45, 49, 34, (90,1,0): 45, 49, 35, (90,2,0): 44, 47, 38, (90,3,0): 44, 46, 41, (90,4,0): 47, 47, 45, (90,5,0): 49, 49, 47, (90,6,0): 51, 52, 47, (90,7,0): 52, 53, 45, (90,8,0): 57, 59, 48, (90,9,0): 60, 62, 49, (90,10,0): 64, 66, 55, (90,11,0): 69, 72, 65, (90,12,0): 75, 77, 76, (90,13,0): 81, 82, 87, (90,14,0): 85, 85, 97, (90,15,0): 86, 87, 105, (90,16,0): 92, 89, 116, (90,17,0): 94, 93, 127, (90,18,0): 102, 100, 140, (90,19,0): 112, 110, 160, (90,20,0): 122, 120, 183, (90,21,0): 133, 131, 206, (90,22,0): 141, 139, 223, (90,23,0): 144, 144, 234, (90,24,0): 144, 142, 239, (90,25,0): 142, 140, 237, (90,26,0): 138, 137, 231, (90,27,0): 135, 132, 223, (90,28,0): 129, 127, 211, (90,29,0): 127, 124, 203, (90,30,0): 127, 125, 200, (90,31,0): 128, 127, 195, (90,32,0): 134, 134, 196, (90,33,0): 136, 136, 196, (90,34,0): 138, 138, 198, (90,35,0): 140, 139, 199, (90,36,0): 140, 138, 201, (90,37,0): 140, 136, 197, (90,38,0): 140, 132, 191, (90,39,0): 139, 130, 183, (90,40,0): 137, 128, 175, (90,41,0): 134, 124, 161, (90,42,0): 128, 118, 145, (90,43,0): 123, 112, 129, (90,44,0): 117, 106, 114, (90,45,0): 110, 100, 99, (90,46,0): 105, 94, 88, (90,47,0): 99, 93, 81, (90,48,0): 93, 98, 76, (90,49,0): 93, 98, 75, (90,50,0): 97, 95, 74, (90,51,0): 103, 92, 74, (90,52,0): 109, 90, 73, (90,53,0): 112, 91, 72, (90,54,0): 114, 92, 71, (90,55,0): 114, 92, 69, (90,56,0): 122, 96, 73, (90,57,0): 123, 87, 63, (90,58,0): 137, 82, 61, (90,59,0): 164, 85, 68, (90,60,0): 199, 88, 79, (90,61,0): 224, 86, 83, (90,62,0): 245, 80, 84, (90,63,0): 252, 79, 83, (90,64,0): 226, 62, 60, (90,65,0): 222, 60, 55, (90,66,0): 221, 56, 52, (90,67,0): 222, 55, 49, (90,68,0): 225, 54, 47, (90,69,0): 225, 54, 46, (90,70,0): 221, 55, 43, (90,71,0): 218, 55, 40, (90,72,0): 212, 55, 38, (90,73,0): 211, 56, 36, (90,74,0): 211, 56, 38, (90,75,0): 213, 56, 39, (90,76,0): 216, 54, 41, (90,77,0): 221, 53, 42, (90,78,0): 224, 51, 44, (90,79,0): 221, 53, 44, (90,80,0): 203, 51, 40, (90,81,0): 196, 54, 40, (90,82,0): 194, 57, 41, (90,83,0): 193, 60, 43, (90,84,0): 194, 63, 45, (90,85,0): 194, 63, 45, (90,86,0): 193, 60, 43, (90,87,0): 192, 56, 40, (90,88,0): 195, 53, 39, (90,89,0): 220, 74, 61, (90,90,0): 218, 70, 58, (90,91,0): 213, 65, 53, (90,92,0): 206, 60, 47, (90,93,0): 196, 54, 40, (90,94,0): 196, 59, 43, (90,95,0): 190, 54, 38, (90,96,0): 198, 58, 41, (90,97,0): 199, 58, 41, (90,98,0): 199, 58, 41, (90,99,0): 201, 58, 42, (90,100,0): 202, 56, 41, (90,101,0): 203, 55, 41, (90,102,0): 204, 54, 40, (90,103,0): 205, 51, 39, (90,104,0): 213, 57, 45, (90,105,0): 213, 55, 44, (90,106,0): 214, 51, 42, (90,107,0): 215, 51, 42, (90,108,0): 218, 51, 43, (90,109,0): 223, 54, 47, (90,110,0): 229, 58, 51, (90,111,0): 233, 60, 56, (90,112,0): 240, 60, 61, (90,113,0): 237, 52, 57, (90,114,0): 235, 48, 55, (90,115,0): 236, 49, 56, (90,116,0): 238, 51, 60, (90,117,0): 237, 52, 60, (90,118,0): 235, 55, 64, (90,119,0): 234, 61, 67, (90,120,0): 221, 55, 59, (90,121,0): 225, 65, 65, (90,122,0): 236, 78, 75, (90,123,0): 248, 89, 85, (90,124,0): 253, 90, 85, (90,125,0): 250, 81, 76, (90,126,0): 239, 66, 62, (90,127,0): 229, 56, 52, (90,128,0): 226, 54, 50, (90,129,0): 224, 55, 50, (90,130,0): 224, 55, 50, (90,131,0): 224, 55, 50, (90,132,0): 225, 56, 53, (90,133,0): 226, 57, 54, (90,134,0): 228, 59, 56, (90,135,0): 228, 59, 56, (90,136,0): 225, 55, 55, (90,137,0): 228, 56, 56, (90,138,0): 230, 56, 58, (90,139,0): 232, 56, 59, (90,140,0): 235, 56, 60, (90,141,0): 235, 56, 60, (90,142,0): 235, 56, 60, (90,143,0): 236, 56, 59, (90,144,0): 239, 53, 56, (90,145,0): 238, 52, 55, (90,146,0): 236, 53, 55, (90,147,0): 231, 55, 55, (90,148,0): 226, 58, 55, (90,149,0): 217, 58, 52, (90,150,0): 207, 56, 47, (90,151,0): 199, 55, 44, (90,152,0): 194, 56, 43, (90,153,0): 191, 58, 43, (90,154,0): 189, 59, 43, (90,155,0): 187, 60, 43, (90,156,0): 187, 60, 43, (90,157,0): 187, 60, 41, (90,158,0): 187, 60, 43, (90,159,0): 187, 60, 41, (90,160,0): 184, 57, 38, (90,161,0): 189, 64, 42, (90,162,0): 179, 57, 36, (90,163,0): 177, 54, 36, (90,164,0): 182, 59, 43, (90,165,0): 180, 49, 39, (90,166,0): 194, 52, 48, (90,167,0): 235, 80, 84, (90,168,0): 255, 92, 105, (90,169,0): 254, 75, 96, (90,170,0): 243, 59, 85, (90,171,0): 237, 57, 86, (90,172,0): 238, 65, 93, (90,173,0): 236, 73, 102, (90,174,0): 227, 75, 100, (90,175,0): 202, 79, 97, (90,176,0): 130, 56, 57, (90,177,0): 102, 62, 54, (90,178,0): 85, 63, 50, (90,179,0): 71, 64, 48, (90,180,0): 59, 60, 44, (90,181,0): 56, 54, 41, (90,182,0): 65, 52, 43, (90,183,0): 78, 55, 47, (90,184,0): 72, 43, 35, (90,185,0): 83, 60, 44, (90,186,0): 103, 93, 66, (90,187,0): 129, 136, 95, (90,188,0): 146, 171, 116, (90,189,0): 149, 188, 123, (90,190,0): 148, 194, 122, (90,191,0): 149, 192, 123, (90,192,0): 146, 180, 120, (90,193,0): 156, 184, 133, (90,194,0): 154, 180, 133, (90,195,0): 128, 154, 109, (90,196,0): 92, 117, 75, (90,197,0): 72, 98, 53, (90,198,0): 78, 104, 56, (90,199,0): 91, 120, 66, (90,200,0): 95, 125, 63, (90,201,0): 99, 131, 64, (90,202,0): 104, 140, 68, (90,203,0): 108, 146, 71, (90,204,0): 106, 146, 73, (90,205,0): 104, 146, 74, (90,206,0): 103, 144, 76, (90,207,0): 102, 143, 75, (90,208,0): 100, 137, 68, (90,209,0): 100, 135, 67, (90,210,0): 99, 134, 68, (90,211,0): 101, 136, 70, (90,212,0): 104, 139, 75, (90,213,0): 107, 142, 78, (90,214,0): 107, 143, 79, (90,215,0): 106, 142, 78, (90,216,0): 105, 144, 79, (90,217,0): 105, 144, 79, (90,218,0): 105, 144, 77, (90,219,0): 104, 144, 74, (90,220,0): 103, 143, 72, (90,221,0): 104, 146, 72, (90,222,0): 108, 148, 75, (90,223,0): 111, 153, 77, (90,224,0): 115, 161, 86, (90,225,0): 115, 163, 87, (90,226,0): 117, 163, 88, (91,0,0): 50, 52, 38, (91,1,0): 48, 52, 38, (91,2,0): 48, 49, 41, (91,3,0): 48, 49, 43, (91,4,0): 49, 50, 45, (91,5,0): 50, 51, 46, (91,6,0): 51, 52, 46, (91,7,0): 52, 54, 43, (91,8,0): 57, 59, 45, (91,9,0): 59, 62, 45, (91,10,0): 63, 65, 51, (91,11,0): 68, 70, 57, (91,12,0): 73, 74, 68, (91,13,0): 77, 79, 78, (91,14,0): 82, 81, 87, (91,15,0): 83, 83, 93, (91,16,0): 88, 86, 100, (91,17,0): 92, 90, 111, (91,18,0): 100, 97, 126, (91,19,0): 110, 108, 148, (91,20,0): 122, 119, 172, (91,21,0): 132, 130, 195, (91,22,0): 140, 137, 214, (91,23,0): 145, 143, 227, (91,24,0): 148, 145, 234, (91,25,0): 147, 144, 235, (91,26,0): 142, 139, 226, (91,27,0): 137, 133, 217, (91,28,0): 130, 127, 204, (91,29,0): 127, 124, 195, (91,30,0): 127, 124, 191, (91,31,0): 128, 126, 189, (91,32,0): 132, 131, 189, (91,33,0): 134, 133, 190, (91,34,0): 137, 136, 193, (91,35,0): 141, 138, 193, (91,36,0): 139, 136, 189, (91,37,0): 137, 133, 183, (91,38,0): 135, 127, 174, (91,39,0): 133, 125, 166, (91,40,0): 133, 123, 157, (91,41,0): 128, 118, 143, (91,42,0): 121, 110, 127, (91,43,0): 114, 102, 112, (91,44,0): 109, 97, 99, (91,45,0): 107, 93, 90, (91,46,0): 105, 90, 83, (91,47,0): 99, 91, 78, (91,48,0): 92, 97, 75, (91,49,0): 90, 98, 74, (91,50,0): 97, 95, 74, (91,51,0): 103, 92, 74, (91,52,0): 111, 89, 75, (91,53,0): 115, 89, 74, (91,54,0): 117, 90, 73, (91,55,0): 119, 91, 70, (91,56,0): 118, 86, 65, (91,57,0): 123, 81, 59, (91,58,0): 139, 81, 61, (91,59,0): 171, 88, 70, (91,60,0): 205, 91, 80, (91,61,0): 226, 84, 80, (91,62,0): 237, 71, 73, (91,63,0): 239, 63, 65, (91,64,0): 219, 50, 47, (91,65,0): 220, 53, 47, (91,66,0): 225, 53, 49, (91,67,0): 227, 54, 48, (91,68,0): 227, 53, 46, (91,69,0): 225, 53, 43, (91,70,0): 224, 54, 41, (91,71,0): 219, 56, 41, (91,72,0): 214, 55, 36, (91,73,0): 211, 56, 36, (91,74,0): 209, 56, 38, (91,75,0): 212, 57, 39, (91,76,0): 216, 54, 41, (91,77,0): 220, 54, 42, (91,78,0): 224, 51, 44, (91,79,0): 218, 54, 45, (91,80,0): 200, 54, 41, (91,81,0): 189, 56, 39, (91,82,0): 188, 55, 38, (91,83,0): 189, 58, 40, (91,84,0): 191, 62, 43, (91,85,0): 194, 63, 45, (91,86,0): 195, 59, 43, (91,87,0): 196, 56, 41, (91,88,0): 198, 52, 39, (91,89,0): 233, 85, 73, (91,90,0): 211, 60, 49, (91,91,0): 204, 56, 44, (91,92,0): 209, 66, 52, (91,93,0): 190, 53, 37, (91,94,0): 192, 61, 43, (91,95,0): 192, 61, 43, (91,96,0): 192, 56, 40, (91,97,0): 196, 56, 39, (91,98,0): 197, 57, 40, (91,99,0): 199, 58, 41, (91,100,0): 200, 57, 41, (91,101,0): 203, 55, 41, (91,102,0): 204, 54, 40, (91,103,0): 205, 51, 39, (91,104,0): 210, 54, 42, (91,105,0): 212, 51, 41, (91,106,0): 213, 50, 41, (91,107,0): 219, 52, 44, (91,108,0): 227, 58, 51, (91,109,0): 233, 62, 55, (91,110,0): 236, 63, 57, (91,111,0): 236, 61, 58, (91,112,0): 232, 52, 53, (91,113,0): 236, 53, 57, (91,114,0): 239, 54, 59, (91,115,0): 238, 53, 59, (91,116,0): 234, 50, 58, (91,117,0): 230, 51, 57, (91,118,0): 228, 55, 61, (91,119,0): 226, 60, 64, (91,120,0): 243, 85, 86, (91,121,0): 252, 98, 98, (91,122,0): 255, 109, 106, (91,123,0): 255, 105, 100, (91,124,0): 243, 86, 81, (91,125,0): 228, 65, 60, (91,126,0): 223, 54, 51, (91,127,0): 221, 52, 47, (91,128,0): 223, 54, 49, (91,129,0): 222, 55, 49, (91,130,0): 222, 55, 49, (91,131,0): 223, 56, 50, (91,132,0): 225, 56, 53, (91,133,0): 226, 57, 54, (91,134,0): 229, 57, 55, (91,135,0): 230, 58, 56, (91,136,0): 229, 55, 56, (91,137,0): 230, 56, 57, (91,138,0): 232, 56, 59, (91,139,0): 233, 57, 60, (91,140,0): 235, 56, 60, (91,141,0): 235, 56, 60, (91,142,0): 235, 56, 60, (91,143,0): 236, 55, 60, (91,144,0): 238, 53, 58, (91,145,0): 238, 54, 56, (91,146,0): 234, 54, 55, (91,147,0): 229, 57, 55, (91,148,0): 223, 60, 55, (91,149,0): 214, 60, 52, (91,150,0): 204, 57, 47, (91,151,0): 197, 57, 44, (91,152,0): 190, 57, 42, (91,153,0): 186, 59, 42, (91,154,0): 182, 59, 41, (91,155,0): 181, 60, 41, (91,156,0): 181, 60, 43, (91,157,0): 180, 61, 41, (91,158,0): 179, 59, 42, (91,159,0): 179, 60, 40, (91,160,0): 179, 58, 39, (91,161,0): 183, 64, 44, (91,162,0): 173, 56, 38, (91,163,0): 173, 56, 39, (91,164,0): 179, 59, 45, (91,165,0): 171, 43, 34, (91,166,0): 193, 53, 52, (91,167,0): 252, 97, 103, (91,168,0): 253, 85, 100, (91,169,0): 249, 72, 92, (91,170,0): 238, 62, 85, (91,171,0): 232, 62, 88, (91,172,0): 229, 73, 95, (91,173,0): 220, 81, 100, (91,174,0): 206, 81, 95, (91,175,0): 177, 85, 90, (91,176,0): 119, 70, 65, (91,177,0): 92, 70, 57, (91,178,0): 79, 66, 50, (91,179,0): 74, 67, 49, (91,180,0): 70, 67, 48, (91,181,0): 64, 61, 42, (91,182,0): 61, 54, 35, (91,183,0): 61, 50, 30, (91,184,0): 65, 50, 29, (91,185,0): 81, 70, 42, (91,186,0): 110, 107, 72, (91,187,0): 138, 147, 102, (91,188,0): 149, 172, 116, (91,189,0): 145, 180, 116, (91,190,0): 141, 184, 115, (91,191,0): 144, 186, 120, (91,192,0): 157, 187, 133, (91,193,0): 161, 184, 138, (91,194,0): 144, 167, 125, (91,195,0): 108, 130, 91, (91,196,0): 75, 95, 58, (91,197,0): 65, 87, 48, (91,198,0): 76, 99, 55, (91,199,0): 87, 114, 63, (91,200,0): 95, 123, 64, (91,201,0): 100, 131, 64, (91,202,0): 105, 138, 67, (91,203,0): 107, 145, 70, (91,204,0): 105, 145, 72, (91,205,0): 103, 145, 71, (91,206,0): 100, 143, 72, (91,207,0): 101, 142, 74, (91,208,0): 98, 135, 66, (91,209,0): 99, 134, 66, (91,210,0): 100, 135, 69, (91,211,0): 103, 138, 72, (91,212,0): 106, 141, 77, (91,213,0): 108, 143, 79, (91,214,0): 109, 145, 81, (91,215,0): 110, 146, 82, (91,216,0): 106, 145, 80, (91,217,0): 106, 145, 78, (91,218,0): 106, 146, 76, (91,219,0): 104, 146, 74, (91,220,0): 103, 145, 71, (91,221,0): 105, 147, 71, (91,222,0): 109, 151, 75, (91,223,0): 112, 156, 79, (91,224,0): 119, 166, 88, (91,225,0): 118, 166, 90, (91,226,0): 118, 166, 90, (92,0,0): 55, 56, 40, (92,1,0): 54, 56, 42, (92,2,0): 54, 54, 44, (92,3,0): 53, 54, 46, (92,4,0): 53, 54, 48, (92,5,0): 53, 54, 48, (92,6,0): 54, 55, 47, (92,7,0): 54, 56, 43, (92,8,0): 59, 62, 45, (92,9,0): 61, 64, 45, (92,10,0): 64, 67, 46, (92,11,0): 68, 71, 52, (92,12,0): 73, 75, 62, (92,13,0): 77, 78, 70, (92,14,0): 81, 80, 78, (92,15,0): 82, 82, 82, (92,16,0): 86, 85, 83, (92,17,0): 89, 88, 93, (92,18,0): 97, 95, 108, (92,19,0): 107, 105, 129, (92,20,0): 117, 115, 155, (92,21,0): 128, 125, 178, (92,22,0): 136, 134, 199, (92,23,0): 140, 138, 211, (92,24,0): 149, 146, 225, (92,25,0): 148, 145, 226, (92,26,0): 144, 141, 220, (92,27,0): 139, 135, 211, (92,28,0): 132, 129, 196, (92,29,0): 129, 125, 186, (92,30,0): 127, 124, 181, (92,31,0): 127, 124, 179, (92,32,0): 129, 126, 181, (92,33,0): 132, 129, 182, (92,34,0): 135, 133, 183, (92,35,0): 137, 134, 181, (92,36,0): 138, 132, 176, (92,37,0): 134, 128, 166, (92,38,0): 129, 122, 155, (92,39,0): 128, 119, 146, (92,40,0): 127, 115, 135, (92,41,0): 122, 110, 124, (92,42,0): 114, 101, 108, (92,43,0): 109, 95, 95, (92,44,0): 106, 91, 88, (92,45,0): 105, 90, 83, (92,46,0): 106, 89, 79, (92,47,0): 102, 90, 76, (92,48,0): 97, 96, 76, (92,49,0): 95, 97, 76, (92,50,0): 100, 95, 76, (92,51,0): 105, 92, 75, (92,52,0): 110, 91, 76, (92,53,0): 116, 90, 75, (92,54,0): 122, 90, 75, (92,55,0): 125, 90, 71, (92,56,0): 127, 84, 65, (92,57,0): 136, 81, 61, (92,58,0): 157, 81, 65, (92,59,0): 182, 86, 70, (92,60,0): 205, 83, 72, (92,61,0): 216, 72, 64, (92,62,0): 223, 58, 56, (92,63,0): 226, 52, 51, (92,64,0): 221, 49, 45, (92,65,0): 223, 51, 47, (92,66,0): 226, 53, 47, (92,67,0): 227, 53, 46, (92,68,0): 225, 51, 44, (92,69,0): 223, 51, 41, (92,70,0): 221, 53, 40, (92,71,0): 220, 57, 40, (92,72,0): 211, 56, 36, (92,73,0): 208, 57, 36, (92,74,0): 207, 58, 38, (92,75,0): 209, 58, 39, (92,76,0): 212, 56, 41, (92,77,0): 217, 55, 42, (92,78,0): 221, 53, 44, (92,79,0): 216, 55, 45, (92,80,0): 196, 59, 43, (92,81,0): 185, 58, 41, (92,82,0): 181, 54, 37, (92,83,0): 183, 56, 39, (92,84,0): 189, 59, 43, (92,85,0): 194, 61, 46, (92,86,0): 199, 59, 46, (92,87,0): 199, 55, 44, (92,88,0): 208, 57, 48, (92,89,0): 245, 92, 84, (92,90,0): 214, 61, 53, (92,91,0): 201, 53, 43, (92,92,0): 207, 65, 53, (92,93,0): 184, 51, 36, (92,94,0): 183, 58, 40, (92,95,0): 188, 63, 43, (92,96,0): 191, 58, 41, (92,97,0): 195, 58, 42, (92,98,0): 198, 58, 43, (92,99,0): 200, 58, 44, (92,100,0): 202, 59, 45, (92,101,0): 204, 58, 45, (92,102,0): 207, 56, 45, (92,103,0): 209, 55, 45, (92,104,0): 208, 51, 42, (92,105,0): 210, 49, 41, (92,106,0): 214, 49, 43, (92,107,0): 222, 55, 49, (92,108,0): 229, 60, 55, (92,109,0): 234, 62, 58, (92,110,0): 232, 59, 55, (92,111,0): 230, 55, 52, (92,112,0): 233, 55, 53, (92,113,0): 239, 59, 60, (92,114,0): 240, 60, 63, (92,115,0): 234, 54, 57, (92,116,0): 228, 49, 53, (92,117,0): 228, 53, 58, (92,118,0): 232, 66, 70, (92,119,0): 237, 77, 79, (92,120,0): 255, 120, 119, (92,121,0): 255, 113, 110, (92,122,0): 241, 96, 91, (92,123,0): 221, 74, 67, (92,124,0): 209, 56, 51, (92,125,0): 209, 50, 46, (92,126,0): 220, 55, 51, (92,127,0): 231, 64, 58, (92,128,0): 224, 57, 51, (92,129,0): 224, 57, 49, (92,130,0): 224, 55, 50, (92,131,0): 224, 55, 50, (92,132,0): 226, 54, 50, (92,133,0): 227, 55, 51, (92,134,0): 229, 55, 54, (92,135,0): 229, 55, 54, (92,136,0): 230, 54, 56, (92,137,0): 231, 55, 57, (92,138,0): 234, 55, 59, (92,139,0): 235, 56, 60, (92,140,0): 235, 56, 62, (92,141,0): 235, 56, 62, (92,142,0): 232, 55, 61, (92,143,0): 234, 55, 59, (92,144,0): 238, 55, 59, (92,145,0): 238, 55, 57, (92,146,0): 234, 55, 58, (92,147,0): 228, 58, 58, (92,148,0): 223, 61, 58, (92,149,0): 214, 61, 55, (92,150,0): 203, 59, 50, (92,151,0): 195, 59, 47, (92,152,0): 186, 56, 42, (92,153,0): 181, 58, 42, (92,154,0): 179, 59, 42, (92,155,0): 175, 60, 41, (92,156,0): 175, 60, 42, (92,157,0): 172, 60, 40, (92,158,0): 172, 59, 41, (92,159,0): 172, 59, 41, (92,160,0): 170, 59, 40, (92,161,0): 172, 61, 42, (92,162,0): 166, 56, 39, (92,163,0): 167, 57, 42, (92,164,0): 170, 56, 45, (92,165,0): 171, 48, 41, (92,166,0): 203, 64, 67, (92,167,0): 255, 105, 114, (92,168,0): 243, 78, 94, (92,169,0): 241, 72, 91, (92,170,0): 235, 69, 89, (92,171,0): 226, 73, 91, (92,172,0): 215, 80, 94, (92,173,0): 199, 85, 93, (92,174,0): 178, 86, 87, (92,175,0): 153, 90, 85, (92,176,0): 103, 75, 63, (92,177,0): 83, 74, 57, (92,178,0): 80, 68, 52, (92,179,0): 78, 67, 49, (92,180,0): 73, 67, 45, (92,181,0): 66, 64, 39, (92,182,0): 63, 66, 35, (92,183,0): 65, 71, 35, (92,184,0): 77, 85, 46, (92,185,0): 94, 103, 60, (92,186,0): 120, 129, 84, (92,187,0): 139, 153, 102, (92,188,0): 145, 164, 109, (92,189,0): 141, 169, 110, (92,190,0): 143, 178, 114, (92,191,0): 151, 185, 125, (92,192,0): 157, 183, 136, (92,193,0): 146, 167, 128, (92,194,0): 117, 134, 100, (92,195,0): 82, 99, 67, (92,196,0): 63, 80, 48, (92,197,0): 66, 83, 49, (92,198,0): 79, 97, 57, (92,199,0): 86, 108, 61, (92,200,0): 98, 123, 66, (92,201,0): 101, 130, 66, (92,202,0): 105, 138, 67, (92,203,0): 106, 144, 69, (92,204,0): 105, 146, 70, (92,205,0): 101, 145, 70, (92,206,0): 98, 144, 72, (92,207,0): 99, 142, 71, (92,208,0): 98, 135, 66, (92,209,0): 102, 134, 67, (92,210,0): 103, 138, 72, (92,211,0): 105, 140, 74, (92,212,0): 107, 142, 78, (92,213,0): 109, 144, 80, (92,214,0): 110, 146, 82, (92,215,0): 111, 147, 83, (92,216,0): 106, 145, 78, (92,217,0): 107, 146, 79, (92,218,0): 106, 147, 77, (92,219,0): 105, 147, 75, (92,220,0): 105, 147, 73, (92,221,0): 106, 150, 73, (92,222,0): 110, 154, 75, (92,223,0): 114, 158, 79, (92,224,0): 120, 167, 89, (92,225,0): 118, 167, 88, (92,226,0): 118, 167, 88, (93,0,0): 63, 61, 46, (93,1,0): 61, 62, 46, (93,2,0): 61, 61, 49, (93,3,0): 61, 61, 51, (93,4,0): 61, 61, 53, (93,5,0): 59, 60, 52, (93,6,0): 59, 61, 50, (93,7,0): 59, 61, 47, (93,8,0): 63, 66, 47, (93,9,0): 64, 68, 45, (93,10,0): 67, 71, 46, (93,11,0): 70, 74, 51, (93,12,0): 75, 76, 58, (93,13,0): 78, 79, 65, (93,14,0): 81, 81, 73, (93,15,0): 82, 82, 72, (93,16,0): 89, 87, 74, (93,17,0): 90, 90, 78, (93,18,0): 95, 94, 92, (93,19,0): 103, 101, 114, (93,20,0): 113, 110, 137, (93,21,0): 123, 121, 161, (93,22,0): 131, 128, 183, (93,23,0): 135, 133, 196, (93,24,0): 143, 140, 209, (93,25,0): 143, 140, 211, (93,26,0): 141, 138, 207, (93,27,0): 138, 133, 199, (93,28,0): 131, 127, 186, (93,29,0): 126, 121, 175, (93,30,0): 122, 119, 166, (93,31,0): 121, 118, 165, (93,32,0): 123, 119, 169, (93,33,0): 124, 122, 171, (93,34,0): 128, 125, 170, (93,35,0): 131, 126, 166, (93,36,0): 131, 125, 161, (93,37,0): 127, 121, 149, (93,38,0): 124, 116, 137, (93,39,0): 122, 114, 129, (93,40,0): 118, 107, 115, (93,41,0): 114, 102, 104, (93,42,0): 109, 95, 94, (93,43,0): 106, 91, 86, (93,44,0): 107, 90, 82, (93,45,0): 108, 90, 80, (93,46,0): 108, 90, 78, (93,47,0): 107, 91, 78, (93,48,0): 103, 94, 77, (93,49,0): 102, 95, 77, (93,50,0): 103, 94, 77, (93,51,0): 106, 93, 77, (93,52,0): 110, 93, 77, (93,53,0): 118, 92, 77, (93,54,0): 124, 92, 77, (93,55,0): 131, 89, 73, (93,56,0): 150, 94, 79, (93,57,0): 157, 85, 71, (93,58,0): 169, 77, 64, (93,59,0): 185, 73, 61, (93,60,0): 197, 64, 55, (93,61,0): 204, 56, 46, (93,62,0): 213, 50, 43, (93,63,0): 221, 50, 43, (93,64,0): 225, 53, 49, (93,65,0): 225, 54, 47, (93,66,0): 226, 53, 46, (93,67,0): 226, 52, 45, (93,68,0): 224, 50, 41, (93,69,0): 222, 52, 39, (93,70,0): 220, 54, 38, (93,71,0): 218, 59, 40, (93,72,0): 209, 57, 36, (93,73,0): 205, 59, 36, (93,74,0): 204, 59, 38, (93,75,0): 206, 59, 39, (93,76,0): 209, 58, 41, (93,77,0): 213, 57, 42, (93,78,0): 217, 55, 44, (93,79,0): 211, 57, 45, (93,80,0): 193, 62, 44, (93,81,0): 180, 59, 40, (93,82,0): 176, 53, 35, (93,83,0): 178, 53, 35, (93,84,0): 187, 57, 41, (93,85,0): 196, 60, 46, (93,86,0): 201, 59, 47, (93,87,0): 203, 55, 45, (93,88,0): 217, 63, 55, (93,89,0): 248, 91, 84, (93,90,0): 227, 73, 65, (93,91,0): 206, 58, 48, (93,92,0): 204, 64, 51, (93,93,0): 184, 54, 38, (93,94,0): 172, 51, 32, (93,95,0): 181, 60, 41, (93,96,0): 188, 57, 39, (93,97,0): 191, 55, 39, (93,98,0): 192, 55, 39, (93,99,0): 195, 55, 40, (93,100,0): 197, 55, 41, (93,101,0): 201, 55, 42, (93,102,0): 206, 55, 44, (93,103,0): 209, 55, 45, (93,104,0): 217, 60, 51, (93,105,0): 219, 58, 50, (93,106,0): 222, 57, 51, (93,107,0): 229, 60, 55, (93,108,0): 234, 62, 58, (93,109,0): 234, 61, 57, (93,110,0): 231, 56, 53, (93,111,0): 227, 52, 49, (93,112,0): 232, 57, 54, (93,113,0): 235, 60, 57, (93,114,0): 236, 58, 58, (93,115,0): 232, 56, 58, (93,116,0): 236, 62, 64, (93,117,0): 248, 80, 80, (93,118,0): 255, 98, 99, (93,119,0): 255, 112, 112, (93,120,0): 249, 104, 101, (93,121,0): 226, 84, 80, (93,122,0): 202, 61, 54, (93,123,0): 192, 49, 43, (93,124,0): 201, 52, 48, (93,125,0): 214, 59, 55, (93,126,0): 223, 61, 58, (93,127,0): 224, 59, 55, (93,128,0): 226, 59, 53, (93,129,0): 225, 58, 50, (93,130,0): 226, 57, 52, (93,131,0): 225, 56, 51, (93,132,0): 227, 55, 51, (93,133,0): 228, 55, 51, (93,134,0): 229, 53, 53, (93,135,0): 230, 54, 54, (93,136,0): 233, 54, 57, (93,137,0): 233, 54, 57, (93,138,0): 234, 55, 59, (93,139,0): 235, 56, 60, (93,140,0): 235, 56, 62, (93,141,0): 234, 55, 61, (93,142,0): 232, 55, 61, (93,143,0): 233, 54, 58, (93,144,0): 239, 56, 60, (93,145,0): 236, 56, 57, (93,146,0): 232, 56, 58, (93,147,0): 227, 59, 58, (93,148,0): 221, 62, 58, (93,149,0): 211, 62, 55, (93,150,0): 201, 60, 50, (93,151,0): 192, 60, 47, (93,152,0): 182, 56, 41, (93,153,0): 178, 58, 41, (93,154,0): 174, 59, 41, (93,155,0): 170, 59, 40, (93,156,0): 169, 60, 40, (93,157,0): 168, 59, 39, (93,158,0): 165, 58, 38, (93,159,0): 165, 58, 40, (93,160,0): 165, 60, 41, (93,161,0): 160, 57, 40, (93,162,0): 160, 59, 41, (93,163,0): 160, 57, 42, (93,164,0): 162, 54, 42, (93,165,0): 181, 62, 56, (93,166,0): 219, 84, 88, (93,167,0): 249, 102, 112, (93,168,0): 237, 76, 92, (93,169,0): 237, 74, 93, (93,170,0): 231, 76, 92, (93,171,0): 216, 78, 91, (93,172,0): 198, 83, 90, (93,173,0): 177, 87, 86, (93,174,0): 156, 92, 82, (93,175,0): 136, 97, 82, (93,176,0): 84, 71, 55, (93,177,0): 77, 74, 57, (93,178,0): 83, 70, 53, (93,179,0): 77, 62, 43, (93,180,0): 63, 51, 27, (93,181,0): 57, 54, 23, (93,182,0): 65, 77, 37, (93,183,0): 78, 102, 54, (93,184,0): 108, 138, 84, (93,185,0): 119, 148, 92, (93,186,0): 132, 155, 101, (93,187,0): 137, 154, 100, (93,188,0): 141, 155, 102, (93,189,0): 144, 163, 107, (93,190,0): 148, 173, 116, (93,191,0): 152, 176, 124, (93,192,0): 131, 149, 109, (93,193,0): 110, 125, 92, (93,194,0): 81, 96, 67, (93,195,0): 60, 74, 48, (93,196,0): 57, 70, 44, (93,197,0): 65, 80, 49, (93,198,0): 79, 95, 59, (93,199,0): 87, 106, 61, (93,200,0): 99, 122, 68, (93,201,0): 101, 130, 66, (93,202,0): 106, 139, 68, (93,203,0): 107, 145, 70, (93,204,0): 105, 146, 70, (93,205,0): 101, 145, 70, (93,206,0): 97, 143, 70, (93,207,0): 99, 142, 71, (93,208,0): 99, 136, 67, (93,209,0): 105, 137, 70, (93,210,0): 106, 141, 75, (93,211,0): 108, 143, 77, (93,212,0): 108, 143, 79, (93,213,0): 108, 143, 79, (93,214,0): 109, 145, 81, (93,215,0): 110, 146, 82, (93,216,0): 109, 148, 81, (93,217,0): 109, 149, 79, (93,218,0): 109, 150, 80, (93,219,0): 108, 150, 76, (93,220,0): 107, 151, 74, (93,221,0): 109, 153, 74, (93,222,0): 114, 159, 78, (93,223,0): 115, 162, 81, (93,224,0): 124, 173, 94, (93,225,0): 123, 172, 93, (93,226,0): 122, 171, 92, (94,0,0): 68, 65, 48, (94,1,0): 68, 66, 51, (94,2,0): 68, 66, 54, (94,3,0): 67, 67, 57, (94,4,0): 67, 67, 59, (94,5,0): 67, 67, 59, (94,6,0): 66, 66, 54, (94,7,0): 66, 67, 51, (94,8,0): 68, 70, 48, (94,9,0): 69, 72, 45, (94,10,0): 71, 74, 45, (94,11,0): 74, 77, 50, (94,12,0): 79, 78, 57, (94,13,0): 82, 81, 63, (94,14,0): 84, 82, 69, (94,15,0): 85, 83, 68, (94,16,0): 92, 90, 67, (94,17,0): 92, 92, 68, (94,18,0): 92, 93, 79, (94,19,0): 97, 97, 97, (94,20,0): 105, 104, 120, (94,21,0): 114, 113, 144, (94,22,0): 123, 122, 166, (94,23,0): 129, 126, 181, (94,24,0): 134, 130, 191, (94,25,0): 136, 131, 195, (94,26,0): 136, 132, 193, (94,27,0): 132, 129, 186, (94,28,0): 127, 123, 174, (94,29,0): 121, 115, 161, (94,30,0): 116, 111, 151, (94,31,0): 111, 109, 148, (94,32,0): 112, 109, 154, (94,33,0): 114, 111, 158, (94,34,0): 118, 113, 154, (94,35,0): 119, 115, 150, (94,36,0): 119, 115, 142, (94,37,0): 116, 111, 131, (94,38,0): 115, 107, 120, (94,39,0): 114, 105, 110, (94,40,0): 109, 97, 97, (94,41,0): 108, 95, 89, (94,42,0): 106, 92, 83, (94,43,0): 107, 90, 80, (94,44,0): 109, 91, 79, (94,45,0): 111, 91, 80, (94,46,0): 111, 92, 78, (94,47,0): 111, 92, 78, (94,48,0): 110, 92, 78, (94,49,0): 109, 93, 78, (94,50,0): 107, 94, 78, (94,51,0): 108, 95, 79, (94,52,0): 111, 95, 79, (94,53,0): 117, 96, 79, (94,54,0): 125, 93, 78, (94,55,0): 137, 89, 77, (94,56,0): 161, 95, 83, (94,57,0): 167, 79, 69, (94,58,0): 174, 66, 56, (94,59,0): 186, 59, 50, (94,60,0): 197, 55, 45, (94,61,0): 204, 50, 40, (94,62,0): 212, 51, 41, (94,63,0): 220, 53, 44, (94,64,0): 224, 55, 48, (94,65,0): 225, 54, 47, (94,66,0): 225, 52, 45, (94,67,0): 224, 51, 44, (94,68,0): 224, 52, 42, (94,69,0): 221, 53, 40, (94,70,0): 216, 55, 37, (94,71,0): 212, 57, 37, (94,72,0): 207, 58, 34, (94,73,0): 202, 61, 34, (94,74,0): 201, 61, 36, (94,75,0): 202, 62, 39, (94,76,0): 205, 60, 41, (94,77,0): 210, 59, 42, (94,78,0): 213, 57, 44, (94,79,0): 207, 59, 45, (94,80,0): 191, 64, 45, (94,81,0): 177, 60, 40, (94,82,0): 172, 53, 33, (94,83,0): 174, 51, 33, (94,84,0): 186, 56, 40, (94,85,0): 196, 60, 46, (94,86,0): 202, 58, 47, (94,87,0): 206, 53, 45, (94,88,0): 216, 57, 51, (94,89,0): 240, 78, 73, (94,90,0): 241, 84, 77, (94,91,0): 217, 66, 57, (94,92,0): 204, 66, 53, (94,93,0): 190, 63, 46, (94,94,0): 166, 49, 29, (94,95,0): 179, 60, 40, (94,96,0): 190, 60, 44, (94,97,0): 193, 57, 43, (94,98,0): 193, 55, 42, (94,99,0): 194, 54, 41, (94,100,0): 197, 55, 43, (94,101,0): 201, 57, 46, (94,102,0): 207, 59, 49, (94,103,0): 212, 59, 51, (94,104,0): 225, 68, 61, (94,105,0): 227, 65, 60, (94,106,0): 228, 63, 59, (94,107,0): 231, 62, 59, (94,108,0): 233, 61, 59, (94,109,0): 233, 59, 58, (94,110,0): 232, 56, 56, (94,111,0): 231, 56, 53, (94,112,0): 231, 56, 53, (94,113,0): 230, 57, 53, (94,114,0): 230, 55, 52, (94,115,0): 233, 59, 58, (94,116,0): 244, 74, 74, (94,117,0): 255, 92, 91, (94,118,0): 255, 100, 99, (94,119,0): 248, 99, 95, (94,120,0): 204, 61, 57, (94,121,0): 193, 56, 50, (94,122,0): 189, 52, 46, (94,123,0): 195, 56, 49, (94,124,0): 213, 65, 61, (94,125,0): 222, 69, 64, (94,126,0): 223, 61, 59, (94,127,0): 217, 52, 50, (94,128,0): 226, 59, 53, (94,129,0): 226, 59, 51, (94,130,0): 226, 57, 52, (94,131,0): 226, 57, 52, (94,132,0): 228, 56, 52, (94,133,0): 229, 56, 52, (94,134,0): 231, 55, 55, (94,135,0): 233, 55, 55, (94,136,0): 234, 54, 57, (94,137,0): 235, 55, 58, (94,138,0): 235, 54, 59, (94,139,0): 235, 56, 60, (94,140,0): 235, 56, 62, (94,141,0): 232, 55, 61, (94,142,0): 232, 55, 61, (94,143,0): 233, 54, 58, (94,144,0): 235, 55, 58, (94,145,0): 233, 54, 57, (94,146,0): 230, 56, 57, (94,147,0): 224, 59, 57, (94,148,0): 219, 62, 57, (94,149,0): 209, 62, 54, (94,150,0): 198, 60, 49, (94,151,0): 190, 60, 46, (94,152,0): 179, 56, 41, (94,153,0): 174, 59, 41, (94,154,0): 170, 59, 40, (94,155,0): 166, 59, 39, (94,156,0): 164, 59, 40, (94,157,0): 163, 58, 39, (94,158,0): 163, 58, 39, (94,159,0): 160, 57, 38, (94,160,0): 161, 62, 43, (94,161,0): 150, 55, 37, (94,162,0): 156, 61, 43, (94,163,0): 154, 57, 41, (94,164,0): 154, 50, 39, (94,165,0): 195, 80, 75, (94,166,0): 237, 107, 109, (94,167,0): 237, 93, 102, (94,168,0): 235, 80, 94, (94,169,0): 232, 75, 92, (94,170,0): 220, 74, 87, (94,171,0): 202, 77, 83, (94,172,0): 182, 84, 83, (94,173,0): 161, 93, 82, (94,174,0): 142, 101, 81, (94,175,0): 127, 106, 85, (94,176,0): 78, 75, 56, (94,177,0): 75, 72, 55, (94,178,0): 80, 63, 47, (94,179,0): 76, 55, 36, (94,180,0): 69, 53, 27, (94,181,0): 71, 71, 35, (94,182,0): 87, 111, 61, (94,183,0): 105, 146, 86, (94,184,0): 127, 178, 111, (94,185,0): 130, 179, 113, (94,186,0): 131, 165, 104, (94,187,0): 125, 146, 89, (94,188,0): 131, 141, 89, (94,189,0): 142, 150, 99, (94,190,0): 137, 151, 100, (94,191,0): 124, 140, 95, (94,192,0): 88, 102, 67, (94,193,0): 71, 84, 56, (94,194,0): 57, 69, 45, (94,195,0): 54, 66, 42, (94,196,0): 58, 68, 44, (94,197,0): 61, 74, 48, (94,198,0): 74, 88, 55, (94,199,0): 87, 104, 62, (94,200,0): 101, 124, 70, (94,201,0): 104, 130, 67, (94,202,0): 108, 139, 69, (94,203,0): 108, 144, 70, (94,204,0): 105, 147, 71, (94,205,0): 99, 145, 70, (94,206,0): 97, 145, 71, (94,207,0): 97, 143, 71, (94,208,0): 102, 139, 70, (94,209,0): 108, 140, 73, (94,210,0): 109, 144, 78, (94,211,0): 110, 145, 79, (94,212,0): 108, 143, 79, (94,213,0): 107, 142, 78, (94,214,0): 107, 143, 79, (94,215,0): 109, 145, 81, (94,216,0): 112, 151, 84, (94,217,0): 113, 153, 83, (94,218,0): 112, 153, 83, (94,219,0): 112, 154, 80, (94,220,0): 111, 155, 78, (94,221,0): 113, 157, 78, (94,222,0): 116, 163, 82, (94,223,0): 119, 166, 85, (94,224,0): 126, 175, 96, (94,225,0): 123, 174, 95, (94,226,0): 121, 172, 93, (95,0,0): 73, 67, 51, (95,1,0): 74, 68, 54, (95,2,0): 73, 69, 57, (95,3,0): 73, 69, 58, (95,4,0): 73, 71, 59, (95,5,0): 73, 71, 59, (95,6,0): 72, 70, 57, (95,7,0): 72, 71, 53, (95,8,0): 73, 72, 51, (95,9,0): 74, 74, 50, (95,10,0): 76, 76, 50, (95,11,0): 78, 78, 52, (95,12,0): 82, 80, 59, (95,13,0): 84, 81, 62, (95,14,0): 88, 82, 68, (95,15,0): 89, 84, 65, (95,16,0): 93, 89, 62, (95,17,0): 91, 90, 62, (95,18,0): 92, 89, 72, (95,19,0): 94, 91, 84, (95,20,0): 100, 97, 104, (95,21,0): 110, 107, 126, (95,22,0): 120, 115, 147, (95,23,0): 125, 120, 160, (95,24,0): 129, 123, 167, (95,25,0): 131, 125, 171, (95,26,0): 133, 127, 173, (95,27,0): 131, 124, 166, (95,28,0): 125, 119, 157, (95,29,0): 117, 110, 143, (95,30,0): 111, 105, 133, (95,31,0): 107, 103, 130, (95,32,0): 105, 102, 133, (95,33,0): 106, 103, 134, (95,34,0): 109, 104, 134, (95,35,0): 109, 105, 128, (95,36,0): 109, 105, 120, (95,37,0): 108, 103, 110, (95,38,0): 107, 98, 101, (95,39,0): 106, 96, 94, (95,40,0): 103, 93, 84, (95,41,0): 104, 92, 80, (95,42,0): 104, 90, 77, (95,43,0): 107, 91, 76, (95,44,0): 110, 93, 77, (95,45,0): 113, 94, 79, (95,46,0): 113, 94, 79, (95,47,0): 112, 93, 78, (95,48,0): 112, 93, 79, (95,49,0): 111, 93, 79, (95,50,0): 112, 93, 78, (95,51,0): 115, 93, 79, (95,52,0): 119, 93, 78, (95,53,0): 126, 93, 78, (95,54,0): 137, 91, 76, (95,55,0): 147, 87, 76, (95,56,0): 162, 84, 72, (95,57,0): 166, 69, 60, (95,58,0): 171, 57, 47, (95,59,0): 186, 55, 45, (95,60,0): 200, 56, 47, (95,61,0): 211, 54, 45, (95,62,0): 217, 54, 45, (95,63,0): 221, 54, 45, (95,64,0): 223, 54, 47, (95,65,0): 223, 52, 45, (95,66,0): 223, 52, 44, (95,67,0): 223, 52, 44, (95,68,0): 223, 55, 44, (95,69,0): 221, 55, 41, (95,70,0): 216, 54, 39, (95,71,0): 209, 54, 36, (95,72,0): 207, 58, 36, (95,73,0): 204, 60, 36, (95,74,0): 202, 60, 38, (95,75,0): 203, 61, 39, (95,76,0): 206, 59, 41, (95,77,0): 209, 59, 42, (95,78,0): 211, 58, 44, (95,79,0): 206, 60, 45, (95,80,0): 190, 65, 47, (95,81,0): 175, 60, 39, (95,82,0): 168, 51, 33, (95,83,0): 172, 51, 32, (95,84,0): 182, 57, 39, (95,85,0): 193, 61, 46, (95,86,0): 201, 59, 47, (95,87,0): 204, 56, 46, (95,88,0): 204, 50, 42, (95,89,0): 224, 65, 59, (95,90,0): 248, 91, 84, (95,91,0): 224, 73, 64, (95,92,0): 208, 68, 55, (95,93,0): 202, 70, 55, (95,94,0): 171, 50, 31, (95,95,0): 184, 63, 44, (95,96,0): 202, 70, 55, (95,97,0): 204, 66, 53, (95,98,0): 202, 64, 51, (95,99,0): 203, 63, 50, (95,100,0): 205, 63, 51, (95,101,0): 210, 66, 55, (95,102,0): 220, 69, 60, (95,103,0): 225, 71, 63, (95,104,0): 226, 64, 59, (95,105,0): 226, 61, 57, (95,106,0): 227, 58, 55, (95,107,0): 226, 54, 52, (95,108,0): 226, 54, 52, (95,109,0): 227, 55, 53, (95,110,0): 229, 57, 55, (95,111,0): 229, 60, 57, (95,112,0): 228, 63, 57, (95,113,0): 224, 61, 54, (95,114,0): 221, 58, 53, (95,115,0): 225, 63, 58, (95,116,0): 234, 77, 72, (95,117,0): 234, 81, 76, (95,118,0): 211, 64, 57, (95,119,0): 184, 41, 35, (95,120,0): 184, 45, 38, (95,121,0): 190, 53, 45, (95,122,0): 201, 62, 55, (95,123,0): 208, 65, 59, (95,124,0): 214, 62, 57, (95,125,0): 217, 59, 56, (95,126,0): 225, 59, 59, (95,127,0): 231, 61, 61, (95,128,0): 226, 57, 54, (95,129,0): 226, 57, 54, (95,130,0): 226, 57, 54, (95,131,0): 228, 56, 54, (95,132,0): 229, 57, 53, (95,133,0): 231, 58, 54, (95,134,0): 233, 57, 57, (95,135,0): 234, 58, 58, (95,136,0): 234, 56, 56, (95,137,0): 234, 56, 56, (95,138,0): 235, 56, 59, (95,139,0): 235, 56, 59, (95,140,0): 233, 57, 60, (95,141,0): 232, 56, 59, (95,142,0): 231, 55, 58, (95,143,0): 231, 55, 58, (95,144,0): 233, 54, 58, (95,145,0): 230, 54, 56, (95,146,0): 226, 56, 56, (95,147,0): 222, 58, 56, (95,148,0): 214, 61, 56, (95,149,0): 204, 61, 53, (95,150,0): 194, 60, 49, (95,151,0): 185, 59, 45, (95,152,0): 174, 57, 40, (95,153,0): 170, 59, 42, (95,154,0): 166, 59, 41, (95,155,0): 162, 59, 40, (95,156,0): 160, 59, 39, (95,157,0): 158, 59, 38, (95,158,0): 159, 58, 40, (95,159,0): 155, 58, 39, (95,160,0): 152, 63, 45, (95,161,0): 140, 53, 34, (95,162,0): 153, 61, 46, (95,163,0): 152, 56, 42, (95,164,0): 151, 47, 38, (95,165,0): 205, 92, 88, (95,166,0): 246, 122, 124, (95,167,0): 222, 88, 95, (95,168,0): 229, 89, 100, (95,169,0): 217, 81, 91, (95,170,0): 200, 77, 82, (95,171,0): 183, 77, 79, (95,172,0): 167, 87, 80, (95,173,0): 155, 97, 85, (95,174,0): 141, 104, 85, (95,175,0): 128, 110, 86, (95,176,0): 84, 84, 56, (95,177,0): 67, 72, 42, (95,178,0): 66, 57, 28, (95,179,0): 72, 59, 27, (95,180,0): 88, 80, 43, (95,181,0): 110, 116, 68, (95,182,0): 132, 162, 102, (95,183,0): 148, 193, 126, (95,184,0): 135, 188, 118, (95,185,0): 134, 184, 115, (95,186,0): 124, 158, 97, (95,187,0): 110, 130, 77, (95,188,0): 117, 126, 81, (95,189,0): 130, 135, 94, (95,190,0): 117, 125, 86, (95,191,0): 91, 98, 64, (95,192,0): 59, 68, 41, (95,193,0): 52, 60, 37, (95,194,0): 53, 61, 40, (95,195,0): 61, 68, 50, (95,196,0): 60, 69, 50, (95,197,0): 57, 67, 43, (95,198,0): 67, 80, 50, (95,199,0): 85, 101, 62, (95,200,0): 103, 123, 72, (95,201,0): 105, 131, 70, (95,202,0): 108, 139, 71, (95,203,0): 109, 145, 71, (95,204,0): 106, 147, 71, (95,205,0): 102, 146, 71, (95,206,0): 98, 144, 71, (95,207,0): 99, 142, 71, (95,208,0): 104, 141, 74, (95,209,0): 108, 143, 77, (95,210,0): 111, 146, 80, (95,211,0): 110, 147, 80, (95,212,0): 108, 143, 77, (95,213,0): 105, 142, 75, (95,214,0): 106, 143, 74, (95,215,0): 106, 146, 76, (95,216,0): 115, 155, 84, (95,217,0): 115, 157, 85, (95,218,0): 115, 157, 83, (95,219,0): 114, 158, 81, (95,220,0): 114, 158, 79, (95,221,0): 115, 162, 82, (95,222,0): 119, 166, 85, (95,223,0): 122, 171, 90, (95,224,0): 119, 167, 91, (95,225,0): 117, 165, 91, (95,226,0): 116, 164, 90, (96,0,0): 82, 75, 59, (96,1,0): 82, 75, 59, (96,2,0): 82, 74, 61, (96,3,0): 82, 74, 61, (96,4,0): 82, 74, 61, (96,5,0): 82, 74, 61, (96,6,0): 82, 74, 61, (96,7,0): 82, 75, 59, (96,8,0): 85, 78, 60, (96,9,0): 86, 79, 61, (96,10,0): 87, 80, 62, (96,11,0): 88, 81, 63, (96,12,0): 89, 82, 64, (96,13,0): 91, 84, 68, (96,14,0): 92, 85, 69, (96,15,0): 92, 85, 69, (96,16,0): 98, 91, 72, (96,17,0): 97, 90, 72, (96,18,0): 97, 89, 76, (96,19,0): 98, 89, 82, (96,20,0): 101, 93, 91, (96,21,0): 107, 97, 105, (96,22,0): 113, 102, 116, (96,23,0): 117, 106, 123, (96,24,0): 122, 110, 132, (96,25,0): 124, 112, 136, (96,26,0): 127, 115, 139, (96,27,0): 127, 115, 137, (96,28,0): 124, 112, 132, (96,29,0): 117, 106, 123, (96,30,0): 109, 98, 114, (96,31,0): 101, 93, 106, (96,32,0): 99, 96, 105, (96,33,0): 96, 95, 101, (96,34,0): 95, 93, 98, (96,35,0): 95, 90, 94, (96,36,0): 94, 90, 89, (96,37,0): 94, 89, 85, (96,38,0): 97, 90, 82, (96,39,0): 98, 90, 79, (96,40,0): 101, 91, 79, (96,41,0): 103, 91, 75, (96,42,0): 105, 92, 75, (96,43,0): 107, 92, 73, (96,44,0): 107, 92, 71, (96,45,0): 109, 92, 72, (96,46,0): 109, 93, 70, (96,47,0): 106, 94, 72, (96,48,0): 106, 98, 79, (96,49,0): 114, 101, 84, (96,50,0): 113, 90, 74, (96,51,0): 117, 79, 66, (96,52,0): 139, 87, 74, (96,53,0): 156, 92, 80, (96,54,0): 162, 90, 76, (96,55,0): 170, 91, 76, (96,56,0): 164, 78, 61, (96,57,0): 165, 70, 52, (96,58,0): 166, 60, 44, (96,59,0): 176, 56, 40, (96,60,0): 194, 56, 45, (96,61,0): 210, 56, 48, (96,62,0): 221, 52, 49, (96,63,0): 222, 49, 45, (96,64,0): 223, 54, 47, (96,65,0): 222, 55, 46, (96,66,0): 222, 55, 46, (96,67,0): 222, 55, 46, (96,68,0): 222, 55, 46, (96,69,0): 219, 55, 43, (96,70,0): 216, 54, 41, (96,71,0): 215, 55, 41, (96,72,0): 213, 56, 41, (96,73,0): 212, 56, 41, (96,74,0): 210, 57, 41, (96,75,0): 210, 57, 41, (96,76,0): 210, 57, 43, (96,77,0): 210, 57, 43, (96,78,0): 212, 56, 43, (96,79,0): 205, 59, 44, (96,80,0): 189, 59, 43, (96,81,0): 182, 62, 45, (96,82,0): 174, 57, 40, (96,83,0): 169, 49, 32, (96,84,0): 171, 50, 33, (96,85,0): 183, 57, 42, (96,86,0): 192, 60, 47, (96,87,0): 195, 57, 46, (96,88,0): 200, 53, 43, (96,89,0): 206, 53, 45, (96,90,0): 212, 58, 48, (96,91,0): 219, 67, 56, (96,92,0): 221, 75, 62, (96,93,0): 212, 72, 57, (96,94,0): 194, 61, 44, (96,95,0): 183, 50, 35, (96,96,0): 221, 80, 70, (96,97,0): 216, 74, 64, (96,98,0): 212, 70, 60, (96,99,0): 211, 69, 59, (96,100,0): 215, 73, 63, (96,101,0): 219, 72, 64, (96,102,0): 221, 68, 62, (96,103,0): 223, 61, 58, (96,104,0): 223, 55, 52, (96,105,0): 230, 56, 55, (96,106,0): 234, 58, 58, (96,107,0): 234, 58, 58, (96,108,0): 229, 57, 55, (96,109,0): 224, 55, 52, (96,110,0): 222, 57, 51, (96,111,0): 220, 61, 55, (96,112,0): 220, 69, 62, (96,113,0): 209, 65, 57, (96,114,0): 199, 57, 47, (96,115,0): 191, 50, 40, (96,116,0): 185, 48, 38, (96,117,0): 186, 52, 41, (96,118,0): 191, 59, 47, (96,119,0): 195, 63, 51, (96,120,0): 195, 58, 48, (96,121,0): 199, 61, 51, (96,122,0): 208, 64, 55, (96,123,0): 217, 64, 58, (96,124,0): 224, 62, 59, (96,125,0): 229, 60, 57, (96,126,0): 233, 57, 57, (96,127,0): 236, 58, 58, (96,128,0): 230, 56, 58, (96,129,0): 229, 56, 58, (96,130,0): 229, 56, 58, (96,131,0): 229, 57, 57, (96,132,0): 229, 57, 55, (96,133,0): 229, 57, 55, (96,134,0): 229, 57, 53, (96,135,0): 229, 57, 53, (96,136,0): 224, 52, 48, (96,137,0): 225, 53, 49, (96,138,0): 228, 54, 53, (96,139,0): 229, 55, 54, (96,140,0): 230, 56, 57, (96,141,0): 231, 57, 58, (96,142,0): 231, 57, 58, (96,143,0): 231, 57, 59, (96,144,0): 235, 59, 62, (96,145,0): 230, 57, 59, (96,146,0): 223, 57, 57, (96,147,0): 220, 61, 58, (96,148,0): 214, 65, 61, (96,149,0): 205, 66, 59, (96,150,0): 193, 65, 54, (96,151,0): 183, 63, 49, (96,152,0): 169, 58, 41, (96,153,0): 163, 60, 43, (96,154,0): 160, 61, 42, (96,155,0): 155, 60, 40, (96,156,0): 153, 58, 38, (96,157,0): 150, 58, 37, (96,158,0): 151, 56, 38, (96,159,0): 145, 56, 38, (96,160,0): 144, 65, 48, (96,161,0): 139, 60, 45, (96,162,0): 135, 47, 35, (96,163,0): 145, 47, 38, (96,164,0): 188, 76, 74, (96,165,0): 228, 109, 111, (96,166,0): 229, 109, 111, (96,167,0): 205, 86, 90, (96,168,0): 189, 76, 78, (96,169,0): 181, 78, 79, (96,170,0): 170, 81, 77, (96,171,0): 162, 85, 79, (96,172,0): 155, 88, 79, (96,173,0): 150, 93, 82, (96,174,0): 149, 97, 84, (96,175,0): 138, 106, 83, (96,176,0): 88, 89, 47, (96,177,0): 61, 75, 22, (96,178,0): 56, 69, 15, (96,179,0): 86, 97, 41, (96,180,0): 127, 141, 80, (96,181,0): 155, 176, 111, (96,182,0): 161, 188, 121, (96,183,0): 156, 189, 120, (96,184,0): 146, 181, 115, (96,185,0): 126, 157, 97, (96,186,0): 104, 128, 76, (96,187,0): 92, 109, 67, (96,188,0): 89, 100, 66, (96,189,0): 84, 93, 66, (96,190,0): 72, 80, 57, (96,191,0): 63, 68, 48, (96,192,0): 58, 61, 44, (96,193,0): 64, 67, 50, (96,194,0): 60, 64, 49, (96,195,0): 58, 62, 48, (96,196,0): 60, 67, 51, (96,197,0): 58, 67, 48, (96,198,0): 65, 78, 50, (96,199,0): 82, 100, 62, (96,200,0): 93, 115, 66, (96,201,0): 103, 131, 72, (96,202,0): 112, 143, 75, (96,203,0): 111, 147, 75, (96,204,0): 108, 146, 71, (96,205,0): 106, 146, 73, (96,206,0): 105, 147, 75, (96,207,0): 103, 144, 74, (96,208,0): 108, 144, 80, (96,209,0): 109, 145, 83, (96,210,0): 111, 147, 83, (96,211,0): 108, 147, 80, (96,212,0): 109, 146, 77, (96,213,0): 107, 147, 74, (96,214,0): 109, 150, 74, (96,215,0): 109, 152, 73, (96,216,0): 113, 156, 76, (96,217,0): 113, 158, 77, (96,218,0): 114, 159, 78, (96,219,0): 114, 161, 80, (96,220,0): 116, 163, 82, (96,221,0): 118, 167, 85, (96,222,0): 121, 170, 89, (96,223,0): 122, 170, 94, (96,224,0): 123, 168, 101, (96,225,0): 111, 155, 92, (96,226,0): 101, 145, 82, (97,0,0): 87, 78, 63, (97,1,0): 87, 78, 63, (97,2,0): 87, 78, 63, (97,3,0): 87, 78, 63, (97,4,0): 87, 78, 63, (97,5,0): 87, 78, 63, (97,6,0): 87, 78, 63, (97,7,0): 87, 78, 63, (97,8,0): 88, 79, 64, (97,9,0): 89, 80, 65, (97,10,0): 89, 80, 65, (97,11,0): 91, 82, 67, (97,12,0): 92, 83, 68, (97,13,0): 93, 84, 69, (97,14,0): 94, 85, 70, (97,15,0): 95, 86, 71, (97,16,0): 100, 91, 74, (97,17,0): 99, 90, 73, (97,18,0): 99, 89, 77, (97,19,0): 99, 89, 79, (97,20,0): 102, 91, 85, (97,21,0): 106, 95, 93, (97,22,0): 110, 98, 100, (97,23,0): 112, 100, 104, (97,24,0): 114, 101, 108, (97,25,0): 116, 103, 112, (97,26,0): 118, 105, 114, (97,27,0): 118, 105, 114, (97,28,0): 115, 102, 109, (97,29,0): 109, 96, 103, (97,30,0): 103, 91, 95, (97,31,0): 98, 88, 89, (97,32,0): 94, 91, 86, (97,33,0): 90, 90, 82, (97,34,0): 89, 86, 79, (97,35,0): 87, 84, 75, (97,36,0): 88, 84, 73, (97,37,0): 88, 84, 72, (97,38,0): 92, 86, 72, (97,39,0): 94, 87, 71, (97,40,0): 99, 90, 75, (97,41,0): 99, 90, 73, (97,42,0): 102, 91, 73, (97,43,0): 103, 92, 72, (97,44,0): 105, 93, 71, (97,45,0): 106, 94, 70, (97,46,0): 107, 95, 71, (97,47,0): 106, 95, 73, (97,48,0): 102, 97, 77, (97,49,0): 111, 103, 84, (97,50,0): 119, 91, 77, (97,51,0): 129, 83, 70, (97,52,0): 153, 86, 77, (97,53,0): 168, 88, 79, (97,54,0): 175, 82, 74, (97,55,0): 180, 82, 69, (97,56,0): 173, 73, 57, (97,57,0): 170, 67, 48, (97,58,0): 171, 61, 44, (97,59,0): 177, 57, 41, (97,60,0): 190, 56, 44, (97,61,0): 204, 55, 48, (97,62,0): 216, 52, 50, (97,63,0): 220, 51, 48, (97,64,0): 221, 54, 46, (97,65,0): 220, 56, 46, (97,66,0): 220, 56, 46, (97,67,0): 220, 56, 46, (97,68,0): 219, 55, 45, (97,69,0): 218, 56, 45, (97,70,0): 217, 55, 44, (97,71,0): 215, 55, 43, (97,72,0): 215, 55, 43, (97,73,0): 213, 55, 43, (97,74,0): 213, 55, 43, (97,75,0): 213, 55, 43, (97,76,0): 212, 56, 43, (97,77,0): 212, 56, 43, (97,78,0): 212, 56, 43, (97,79,0): 206, 58, 44, (97,80,0): 190, 60, 46, (97,81,0): 182, 62, 46, (97,82,0): 174, 57, 40, (97,83,0): 166, 49, 32, (97,84,0): 167, 50, 32, (97,85,0): 178, 58, 41, (97,86,0): 185, 62, 46, (97,87,0): 190, 60, 46, (97,88,0): 198, 58, 45, (97,89,0): 199, 52, 42, (97,90,0): 203, 52, 41, (97,91,0): 210, 59, 48, (97,92,0): 220, 69, 58, (97,93,0): 225, 79, 66, (97,94,0): 223, 81, 67, (97,95,0): 221, 79, 67, (97,96,0): 219, 70, 63, (97,97,0): 214, 65, 59, (97,98,0): 209, 60, 53, (97,99,0): 208, 59, 52, (97,100,0): 211, 62, 55, (97,101,0): 215, 62, 56, (97,102,0): 217, 58, 54, (97,103,0): 218, 53, 51, (97,104,0): 230, 56, 55, (97,105,0): 234, 56, 56, (97,106,0): 236, 56, 57, (97,107,0): 234, 56, 56, (97,108,0): 230, 56, 55, (97,109,0): 226, 58, 55, (97,110,0): 225, 62, 57, (97,111,0): 219, 66, 58, (97,112,0): 205, 64, 55, (97,113,0): 194, 61, 52, (97,114,0): 187, 57, 44, (97,115,0): 180, 52, 39, (97,116,0): 178, 52, 38, (97,117,0): 181, 55, 41, (97,118,0): 186, 60, 45, (97,119,0): 191, 64, 49, (97,120,0): 198, 64, 52, (97,121,0): 205, 64, 54, (97,122,0): 213, 65, 55, (97,123,0): 220, 63, 56, (97,124,0): 226, 58, 55, (97,125,0): 230, 56, 55, (97,126,0): 235, 55, 54, (97,127,0): 239, 56, 58, (97,128,0): 233, 54, 58, (97,129,0): 231, 54, 60, (97,130,0): 231, 55, 58, (97,131,0): 230, 56, 57, (97,132,0): 230, 56, 55, (97,133,0): 229, 57, 53, (97,134,0): 229, 57, 53, (97,135,0): 227, 58, 53, (97,136,0): 226, 57, 50, (97,137,0): 227, 58, 51, (97,138,0): 227, 58, 53, (97,139,0): 228, 59, 54, (97,140,0): 228, 59, 56, (97,141,0): 228, 59, 56, (97,142,0): 229, 57, 57, (97,143,0): 229, 57, 57, (97,144,0): 228, 58, 59, (97,145,0): 227, 59, 59, (97,146,0): 223, 60, 61, (97,147,0): 217, 63, 61, (97,148,0): 208, 65, 59, (97,149,0): 196, 63, 54, (97,150,0): 183, 61, 50, (97,151,0): 172, 59, 45, (97,152,0): 165, 59, 43, (97,153,0): 160, 61, 42, (97,154,0): 156, 61, 43, (97,155,0): 151, 60, 41, (97,156,0): 150, 59, 40, (97,157,0): 146, 58, 38, (97,158,0): 147, 56, 37, (97,159,0): 140, 58, 37, (97,160,0): 128, 57, 39, (97,161,0): 128, 56, 41, (97,162,0): 137, 53, 42, (97,163,0): 157, 60, 53, (97,164,0): 191, 81, 80, (97,165,0): 215, 101, 101, (97,166,0): 209, 94, 97, (97,167,0): 183, 77, 77, (97,168,0): 172, 78, 76, (97,169,0): 164, 84, 77, (97,170,0): 157, 89, 80, (97,171,0): 152, 92, 81, (97,172,0): 151, 94, 83, (97,173,0): 151, 94, 83, (97,174,0): 152, 95, 86, (97,175,0): 140, 102, 81, (97,176,0): 96, 95, 47, (97,177,0): 83, 103, 42, (97,178,0): 94, 114, 51, (97,179,0): 122, 144, 79, (97,180,0): 153, 175, 110, (97,181,0): 165, 190, 124, (97,182,0): 153, 178, 112, (97,183,0): 136, 160, 98, (97,184,0): 106, 130, 72, (97,185,0): 97, 117, 66, (97,186,0): 84, 101, 59, (97,187,0): 74, 88, 55, (97,188,0): 70, 80, 55, (97,189,0): 63, 72, 53, (97,190,0): 57, 63, 49, (97,191,0): 53, 56, 45, (97,192,0): 58, 60, 47, (97,193,0): 65, 66, 52, (97,194,0): 61, 63, 52, (97,195,0): 58, 61, 50, (97,196,0): 61, 65, 51, (97,197,0): 58, 67, 48, (97,198,0): 64, 77, 51, (97,199,0): 82, 100, 62, (97,200,0): 94, 116, 69, (97,201,0): 103, 131, 72, (97,202,0): 113, 144, 77, (97,203,0): 112, 148, 76, (97,204,0): 110, 146, 72, (97,205,0): 107, 148, 72, (97,206,0): 107, 147, 76, (97,207,0): 104, 145, 75, (97,208,0): 109, 145, 81, (97,209,0): 110, 146, 84, (97,210,0): 109, 148, 83, (97,211,0): 109, 148, 81, (97,212,0): 107, 147, 76, (97,213,0): 107, 148, 72, (97,214,0): 108, 151, 72, (97,215,0): 109, 152, 72, (97,216,0): 112, 157, 74, (97,217,0): 112, 157, 74, (97,218,0): 112, 160, 76, (97,219,0): 115, 162, 81, (97,220,0): 117, 166, 84, (97,221,0): 120, 169, 88, (97,222,0): 120, 169, 88, (97,223,0): 120, 168, 94, (97,224,0): 110, 152, 89, (97,225,0): 100, 141, 83, (97,226,0): 90, 131, 73, (98,0,0): 93, 84, 69, (98,1,0): 93, 84, 69, (98,2,0): 93, 84, 69, (98,3,0): 93, 84, 69, (98,4,0): 93, 84, 69, (98,5,0): 93, 84, 69, (98,6,0): 93, 84, 69, (98,7,0): 93, 84, 69, (98,8,0): 91, 82, 67, (98,9,0): 92, 83, 68, (98,10,0): 93, 84, 69, (98,11,0): 94, 85, 70, (98,12,0): 95, 86, 71, (98,13,0): 96, 87, 72, (98,14,0): 97, 88, 73, (98,15,0): 97, 88, 71, (98,16,0): 101, 93, 74, (98,17,0): 101, 93, 72, (98,18,0): 100, 91, 74, (98,19,0): 100, 91, 76, (98,20,0): 101, 91, 81, (98,21,0): 102, 91, 85, (98,22,0): 104, 93, 89, (98,23,0): 104, 93, 91, (98,24,0): 105, 93, 93, (98,25,0): 106, 94, 94, (98,26,0): 107, 95, 95, (98,27,0): 107, 95, 95, (98,28,0): 105, 94, 92, (98,29,0): 102, 91, 89, (98,30,0): 98, 87, 83, (98,31,0): 95, 86, 81, (98,32,0): 90, 86, 77, (98,33,0): 87, 84, 75, (98,34,0): 85, 81, 72, (98,35,0): 82, 78, 67, (98,36,0): 81, 77, 66, (98,37,0): 83, 79, 67, (98,38,0): 87, 81, 67, (98,39,0): 88, 82, 66, (98,40,0): 94, 87, 71, (98,41,0): 94, 87, 69, (98,42,0): 97, 89, 70, (98,43,0): 99, 91, 70, (98,44,0): 103, 92, 72, (98,45,0): 105, 94, 72, (98,46,0): 107, 96, 74, (98,47,0): 105, 97, 76, (98,48,0): 101, 96, 77, (98,49,0): 113, 101, 85, (98,50,0): 123, 94, 80, (98,51,0): 136, 88, 78, (98,52,0): 162, 91, 85, (98,53,0): 175, 88, 81, (98,54,0): 177, 74, 69, (98,55,0): 182, 71, 64, (98,56,0): 182, 65, 55, (98,57,0): 183, 63, 49, (98,58,0): 182, 60, 47, (98,59,0): 184, 56, 43, (98,60,0): 189, 55, 43, (98,61,0): 197, 57, 44, (98,62,0): 204, 57, 47, (98,63,0): 211, 57, 47, (98,64,0): 217, 56, 46, (98,65,0): 219, 55, 45, (98,66,0): 219, 55, 45, (98,67,0): 219, 57, 46, (98,68,0): 218, 56, 45, (98,69,0): 217, 55, 44, (98,70,0): 217, 55, 44, (98,71,0): 215, 55, 43, (98,72,0): 215, 55, 43, (98,73,0): 213, 55, 43, (98,74,0): 213, 55, 43, (98,75,0): 212, 56, 43, (98,76,0): 212, 56, 43, (98,77,0): 212, 56, 43, (98,78,0): 210, 57, 43, (98,79,0): 205, 59, 44, (98,80,0): 192, 62, 48, (98,81,0): 182, 62, 46, (98,82,0): 173, 58, 40, (98,83,0): 163, 50, 32, (98,84,0): 163, 51, 31, (98,85,0): 170, 58, 38, (98,86,0): 179, 62, 44, (98,87,0): 185, 62, 46, (98,88,0): 196, 63, 48, (98,89,0): 196, 56, 43, (98,90,0): 197, 50, 40, (98,91,0): 200, 52, 42, (98,92,0): 208, 60, 48, (98,93,0): 216, 70, 57, (98,94,0): 220, 77, 63, (98,95,0): 225, 78, 68, (98,96,0): 216, 59, 54, (98,97,0): 215, 53, 51, (98,98,0): 210, 51, 48, (98,99,0): 211, 53, 50, (98,100,0): 216, 58, 55, (98,101,0): 222, 63, 60, (98,102,0): 227, 62, 60, (98,103,0): 232, 60, 60, (98,104,0): 236, 57, 60, (98,105,0): 237, 54, 58, (98,106,0): 234, 51, 55, (98,107,0): 231, 51, 54, (98,108,0): 230, 54, 56, (98,109,0): 227, 57, 57, (98,110,0): 224, 60, 58, (98,111,0): 217, 64, 58, (98,112,0): 193, 55, 45, (98,113,0): 184, 56, 43, (98,114,0): 179, 53, 39, (98,115,0): 175, 52, 37, (98,116,0): 175, 52, 37, (98,117,0): 178, 55, 40, (98,118,0): 182, 59, 43, (98,119,0): 187, 61, 46, (98,120,0): 200, 68, 53, (98,121,0): 205, 67, 54, (98,122,0): 213, 66, 56, (98,123,0): 217, 63, 55, (98,124,0): 223, 58, 52, (98,125,0): 229, 56, 52, (98,126,0): 234, 54, 53, (98,127,0): 238, 55, 57, (98,128,0): 234, 54, 57, (98,129,0): 233, 54, 57, (98,130,0): 233, 54, 57, (98,131,0): 231, 55, 55, (98,132,0): 231, 55, 55, (98,133,0): 230, 57, 53, (98,134,0): 229, 57, 53, (98,135,0): 229, 58, 51, (98,136,0): 227, 58, 51, (98,137,0): 228, 59, 52, (98,138,0): 228, 59, 54, (98,139,0): 227, 60, 54, (98,140,0): 227, 59, 56, (98,141,0): 226, 58, 57, (98,142,0): 225, 57, 57, (98,143,0): 222, 56, 56, (98,144,0): 221, 57, 58, (98,145,0): 220, 60, 60, (98,146,0): 218, 64, 62, (98,147,0): 211, 66, 61, (98,148,0): 200, 63, 57, (98,149,0): 185, 58, 49, (98,150,0): 173, 55, 43, (98,151,0): 165, 55, 40, (98,152,0): 161, 59, 44, (98,153,0): 157, 60, 43, (98,154,0): 153, 60, 43, (98,155,0): 148, 59, 41, (98,156,0): 147, 58, 40, (98,157,0): 144, 57, 38, (98,158,0): 144, 55, 37, (98,159,0): 138, 57, 38, (98,160,0): 122, 54, 35, (98,161,0): 121, 54, 37, (98,162,0): 136, 57, 44, (98,163,0): 160, 70, 61, (98,164,0): 185, 83, 79, (98,165,0): 192, 87, 84, (98,166,0): 184, 80, 79, (98,167,0): 171, 73, 70, (98,168,0): 162, 77, 72, (98,169,0): 156, 83, 76, (98,170,0): 153, 89, 80, (98,171,0): 151, 94, 83, (98,172,0): 151, 97, 87, (98,173,0): 151, 97, 87, (98,174,0): 152, 95, 86, (98,175,0): 139, 101, 80, (98,176,0): 115, 114, 70, (98,177,0): 122, 141, 86, (98,178,0): 147, 166, 110, (98,179,0): 164, 185, 128, (98,180,0): 171, 192, 135, (98,181,0): 158, 179, 123, (98,182,0): 124, 144, 91, (98,183,0): 91, 111, 60, (98,184,0): 63, 82, 36, (98,185,0): 65, 83, 43, (98,186,0): 65, 80, 47, (98,187,0): 63, 76, 50, (98,188,0): 58, 67, 48, (98,189,0): 54, 60, 46, (98,190,0): 54, 57, 48, (98,191,0): 53, 56, 47, (98,192,0): 57, 59, 46, (98,193,0): 64, 65, 51, (98,194,0): 61, 63, 52, (98,195,0): 57, 60, 49, (98,196,0): 61, 65, 51, (98,197,0): 57, 66, 47, (98,198,0): 64, 77, 51, (98,199,0): 81, 99, 61, (98,200,0): 96, 118, 71, (98,201,0): 105, 133, 74, (98,202,0): 115, 146, 79, (98,203,0): 114, 150, 78, (98,204,0): 112, 148, 74, (98,205,0): 109, 150, 74, (98,206,0): 109, 149, 78, (98,207,0): 107, 148, 78, (98,208,0): 112, 148, 84, (98,209,0): 113, 149, 85, (98,210,0): 111, 150, 83, (98,211,0): 110, 150, 80, (98,212,0): 108, 148, 75, (98,213,0): 108, 149, 73, (98,214,0): 108, 151, 72, (98,215,0): 110, 153, 73, (98,216,0): 112, 157, 76, (98,217,0): 112, 157, 76, (98,218,0): 112, 159, 78, (98,219,0): 117, 164, 83, (98,220,0): 120, 169, 88, (98,221,0): 121, 170, 91, (98,222,0): 117, 166, 87, (98,223,0): 113, 160, 88, (98,224,0): 95, 137, 74, (98,225,0): 86, 127, 69, (98,226,0): 79, 120, 62, (99,0,0): 97, 88, 73, (99,1,0): 97, 88, 73, (99,2,0): 97, 88, 73, (99,3,0): 97, 88, 73, (99,4,0): 97, 88, 73, (99,5,0): 97, 88, 73, (99,6,0): 97, 88, 73, (99,7,0): 97, 88, 73, (99,8,0): 95, 86, 71, (99,9,0): 96, 87, 72, (99,10,0): 96, 87, 72, (99,11,0): 97, 88, 73, (99,12,0): 98, 89, 74, (99,13,0): 99, 90, 75, (99,14,0): 100, 91, 76, (99,15,0): 100, 91, 74, (99,16,0): 101, 93, 72, (99,17,0): 102, 94, 71, (99,18,0): 102, 94, 73, (99,19,0): 103, 95, 76, (99,20,0): 103, 94, 79, (99,21,0): 102, 92, 80, (99,22,0): 102, 92, 82, (99,23,0): 102, 92, 83, (99,24,0): 104, 93, 87, (99,25,0): 104, 93, 87, (99,26,0): 104, 93, 87, (99,27,0): 104, 94, 85, (99,28,0): 103, 93, 84, (99,29,0): 101, 91, 81, (99,30,0): 100, 90, 80, (99,31,0): 99, 91, 78, (99,32,0): 93, 89, 77, (99,33,0): 90, 86, 74, (99,34,0): 86, 82, 70, (99,35,0): 82, 78, 66, (99,36,0): 80, 76, 64, (99,37,0): 80, 77, 62, (99,38,0): 84, 78, 64, (99,39,0): 85, 79, 63, (99,40,0): 87, 81, 65, (99,41,0): 89, 84, 65, (99,42,0): 91, 86, 67, (99,43,0): 93, 88, 68, (99,44,0): 97, 90, 71, (99,45,0): 100, 93, 74, (99,46,0): 102, 95, 76, (99,47,0): 102, 97, 77, (99,48,0): 103, 97, 81, (99,49,0): 111, 99, 85, (99,50,0): 119, 91, 79, (99,51,0): 138, 91, 81, (99,52,0): 169, 98, 92, (99,53,0): 182, 91, 88, (99,54,0): 180, 71, 68, (99,55,0): 183, 61, 58, (99,56,0): 193, 61, 56, (99,57,0): 195, 60, 54, (99,58,0): 195, 58, 48, (99,59,0): 193, 57, 45, (99,60,0): 189, 56, 41, (99,61,0): 189, 57, 42, (99,62,0): 193, 61, 46, (99,63,0): 202, 62, 47, (99,64,0): 213, 57, 45, (99,65,0): 217, 55, 44, (99,66,0): 218, 56, 45, (99,67,0): 217, 57, 45, (99,68,0): 218, 56, 45, (99,69,0): 216, 56, 44, (99,70,0): 216, 56, 44, (99,71,0): 213, 55, 43, (99,72,0): 213, 55, 43, (99,73,0): 212, 56, 43, (99,74,0): 212, 56, 43, (99,75,0): 212, 56, 43, (99,76,0): 212, 56, 43, (99,77,0): 212, 56, 43, (99,78,0): 210, 57, 43, (99,79,0): 205, 59, 44, (99,80,0): 193, 63, 49, (99,81,0): 182, 62, 46, (99,82,0): 172, 57, 39, (99,83,0): 162, 51, 32, (99,84,0): 157, 51, 29, (99,85,0): 162, 56, 34, (99,86,0): 172, 61, 41, (99,87,0): 181, 64, 46, (99,88,0): 188, 63, 45, (99,89,0): 191, 58, 43, (99,90,0): 195, 55, 42, (99,91,0): 197, 53, 42, (99,92,0): 203, 55, 43, (99,93,0): 206, 58, 46, (99,94,0): 206, 60, 47, (99,95,0): 211, 58, 50, (99,96,0): 220, 55, 53, (99,97,0): 223, 50, 52, (99,98,0): 218, 50, 50, (99,99,0): 218, 52, 52, (99,100,0): 222, 56, 56, (99,101,0): 226, 60, 60, (99,102,0): 232, 62, 63, (99,103,0): 235, 61, 62, (99,104,0): 235, 56, 60, (99,105,0): 235, 52, 56, (99,106,0): 232, 49, 54, (99,107,0): 229, 50, 53, (99,108,0): 228, 54, 56, (99,109,0): 224, 56, 55, (99,110,0): 217, 55, 53, (99,111,0): 204, 55, 49, (99,112,0): 185, 51, 40, (99,113,0): 177, 54, 39, (99,114,0): 175, 53, 38, (99,115,0): 174, 54, 38, (99,116,0): 174, 54, 38, (99,117,0): 176, 56, 40, (99,118,0): 179, 58, 41, (99,119,0): 181, 58, 42, (99,120,0): 195, 65, 49, (99,121,0): 202, 66, 52, (99,122,0): 210, 66, 55, (99,123,0): 217, 64, 56, (99,124,0): 223, 60, 53, (99,125,0): 227, 58, 53, (99,126,0): 234, 56, 54, (99,127,0): 236, 56, 55, (99,128,0): 237, 54, 56, (99,129,0): 235, 55, 56, (99,130,0): 235, 55, 56, (99,131,0): 234, 56, 54, (99,132,0): 234, 56, 54, (99,133,0): 232, 57, 52, (99,134,0): 231, 58, 52, (99,135,0): 230, 59, 52, (99,136,0): 226, 57, 50, (99,137,0): 225, 58, 50, (99,138,0): 223, 58, 52, (99,139,0): 224, 59, 55, (99,140,0): 222, 58, 56, (99,141,0): 220, 58, 56, (99,142,0): 219, 57, 55, (99,143,0): 217, 57, 57, (99,144,0): 214, 60, 58, (99,145,0): 213, 64, 60, (99,146,0): 210, 67, 61, (99,147,0): 202, 65, 59, (99,148,0): 187, 59, 50, (99,149,0): 175, 54, 43, (99,150,0): 164, 54, 39, (99,151,0): 158, 55, 40, (99,152,0): 156, 59, 42, (99,153,0): 152, 59, 41, (99,154,0): 148, 59, 41, (99,155,0): 146, 59, 40, (99,156,0): 143, 58, 38, (99,157,0): 141, 56, 36, (99,158,0): 140, 55, 35, (99,159,0): 135, 57, 37, (99,160,0): 128, 61, 42, (99,161,0): 118, 53, 35, (99,162,0): 129, 53, 39, (99,163,0): 153, 69, 58, (99,164,0): 170, 80, 72, (99,165,0): 172, 77, 71, (99,166,0): 169, 76, 71, (99,167,0): 166, 81, 76, (99,168,0): 157, 80, 74, (99,169,0): 152, 85, 76, (99,170,0): 148, 90, 79, (99,171,0): 148, 94, 82, (99,172,0): 149, 97, 86, (99,173,0): 149, 97, 86, (99,174,0): 151, 97, 87, (99,175,0): 141, 103, 84, (99,176,0): 137, 133, 95, (99,177,0): 153, 169, 120, (99,178,0): 173, 189, 142, (99,179,0): 166, 184, 136, (99,180,0): 144, 161, 116, (99,181,0): 115, 134, 89, (99,182,0): 78, 96, 56, (99,183,0): 47, 65, 27, (99,184,0): 45, 62, 28, (99,185,0): 51, 66, 37, (99,186,0): 58, 70, 46, (99,187,0): 61, 70, 51, (99,188,0): 59, 65, 51, (99,189,0): 58, 61, 50, (99,190,0): 58, 61, 52, (99,191,0): 60, 61, 53, (99,192,0): 57, 57, 45, (99,193,0): 63, 64, 50, (99,194,0): 60, 62, 51, (99,195,0): 57, 60, 49, (99,196,0): 60, 64, 50, (99,197,0): 57, 66, 47, (99,198,0): 63, 76, 50, (99,199,0): 80, 98, 60, (99,200,0): 97, 119, 72, (99,201,0): 106, 134, 75, (99,202,0): 116, 147, 80, (99,203,0): 115, 151, 79, (99,204,0): 114, 150, 76, (99,205,0): 111, 152, 76, (99,206,0): 111, 151, 80, (99,207,0): 109, 151, 79, (99,208,0): 112, 151, 84, (99,209,0): 115, 152, 85, (99,210,0): 112, 152, 82, (99,211,0): 111, 151, 80, (99,212,0): 109, 150, 74, (99,213,0): 109, 150, 72, (99,214,0): 110, 153, 74, (99,215,0): 112, 155, 75, (99,216,0): 113, 158, 77, (99,217,0): 114, 159, 78, (99,218,0): 116, 163, 83, (99,219,0): 121, 168, 88, (99,220,0): 123, 172, 93, (99,221,0): 119, 167, 91, (99,222,0): 109, 157, 83, (99,223,0): 101, 146, 77, (99,224,0): 90, 132, 69, (99,225,0): 82, 123, 65, (99,226,0): 77, 118, 60, (100,0,0): 99, 90, 75, (100,1,0): 99, 90, 75, (100,2,0): 99, 90, 75, (100,3,0): 99, 90, 75, (100,4,0): 99, 90, 75, (100,5,0): 99, 90, 75, (100,6,0): 99, 90, 75, (100,7,0): 99, 90, 75, (100,8,0): 99, 90, 75, (100,9,0): 99, 90, 75, (100,10,0): 100, 91, 76, (100,11,0): 100, 91, 76, (100,12,0): 101, 92, 77, (100,13,0): 102, 93, 78, (100,14,0): 102, 93, 78, (100,15,0): 102, 93, 76, (100,16,0): 102, 94, 71, (100,17,0): 103, 95, 72, (100,18,0): 104, 96, 73, (100,19,0): 105, 97, 76, (100,20,0): 105, 97, 78, (100,21,0): 105, 96, 79, (100,22,0): 104, 95, 80, (100,23,0): 103, 94, 79, (100,24,0): 106, 96, 84, (100,25,0): 105, 96, 81, (100,26,0): 105, 96, 81, (100,27,0): 104, 95, 78, (100,28,0): 104, 95, 78, (100,29,0): 104, 96, 77, (100,30,0): 104, 96, 77, (100,31,0): 104, 97, 78, (100,32,0): 100, 94, 78, (100,33,0): 96, 90, 76, (100,34,0): 91, 85, 71, (100,35,0): 86, 80, 66, (100,36,0): 80, 77, 62, (100,37,0): 78, 75, 58, (100,38,0): 78, 75, 58, (100,39,0): 78, 75, 58, (100,40,0): 80, 77, 60, (100,41,0): 82, 79, 62, (100,42,0): 84, 81, 64, (100,43,0): 86, 83, 64, (100,44,0): 88, 87, 67, (100,45,0): 91, 90, 70, (100,46,0): 93, 92, 72, (100,47,0): 95, 92, 75, (100,48,0): 99, 96, 81, (100,49,0): 105, 93, 81, (100,50,0): 112, 85, 74, (100,51,0): 134, 91, 82, (100,52,0): 172, 105, 99, (100,53,0): 189, 100, 96, (100,54,0): 191, 79, 77, (100,55,0): 197, 67, 67, (100,56,0): 205, 61, 61, (100,57,0): 210, 58, 57, (100,58,0): 209, 57, 52, (100,59,0): 203, 56, 48, (100,60,0): 194, 56, 43, (100,61,0): 187, 60, 41, (100,62,0): 184, 65, 43, (100,63,0): 190, 65, 43, (100,64,0): 208, 58, 43, (100,65,0): 215, 55, 41, (100,66,0): 216, 56, 42, (100,67,0): 215, 58, 43, (100,68,0): 217, 57, 43, (100,69,0): 214, 57, 42, (100,70,0): 214, 57, 42, (100,71,0): 212, 56, 41, (100,72,0): 212, 56, 41, (100,73,0): 212, 56, 41, (100,74,0): 212, 56, 41, (100,75,0): 210, 57, 41, (100,76,0): 210, 57, 41, (100,77,0): 210, 57, 41, (100,78,0): 210, 57, 41, (100,79,0): 205, 59, 44, (100,80,0): 193, 63, 49, (100,81,0): 182, 62, 48, (100,82,0): 171, 58, 40, (100,83,0): 161, 54, 34, (100,84,0): 154, 52, 30, (100,85,0): 155, 55, 32, (100,86,0): 163, 61, 38, (100,87,0): 175, 66, 45, (100,88,0): 179, 59, 42, (100,89,0): 186, 59, 44, (100,90,0): 194, 58, 44, (100,91,0): 199, 57, 45, (100,92,0): 203, 56, 46, (100,93,0): 206, 58, 48, (100,94,0): 208, 60, 48, (100,95,0): 216, 59, 52, (100,96,0): 232, 58, 60, (100,97,0): 234, 53, 60, (100,98,0): 228, 51, 57, (100,99,0): 226, 51, 56, (100,100,0): 223, 53, 56, (100,101,0): 223, 53, 56, (100,102,0): 225, 52, 56, (100,103,0): 225, 51, 53, (100,104,0): 233, 54, 60, (100,105,0): 232, 53, 57, (100,106,0): 231, 52, 58, (100,107,0): 230, 56, 58, (100,108,0): 226, 57, 60, (100,109,0): 218, 56, 54, (100,110,0): 206, 51, 49, (100,111,0): 191, 48, 40, (100,112,0): 181, 53, 40, (100,113,0): 174, 57, 40, (100,114,0): 174, 57, 40, (100,115,0): 173, 58, 40, (100,116,0): 173, 58, 40, (100,117,0): 173, 58, 40, (100,118,0): 173, 56, 38, (100,119,0): 175, 55, 38, (100,120,0): 184, 58, 43, (100,121,0): 193, 59, 47, (100,122,0): 205, 63, 51, (100,123,0): 215, 64, 55, (100,124,0): 221, 62, 56, (100,125,0): 225, 60, 56, (100,126,0): 231, 58, 54, (100,127,0): 235, 57, 55, (100,128,0): 237, 55, 54, (100,129,0): 238, 54, 54, (100,130,0): 238, 54, 54, (100,131,0): 237, 55, 52, (100,132,0): 234, 56, 52, (100,133,0): 232, 58, 51, (100,134,0): 231, 58, 51, (100,135,0): 228, 60, 51, (100,136,0): 225, 58, 50, (100,137,0): 223, 59, 50, (100,138,0): 223, 60, 53, (100,139,0): 220, 61, 55, (100,140,0): 219, 61, 58, (100,141,0): 217, 62, 60, (100,142,0): 215, 61, 59, (100,143,0): 212, 62, 61, (100,144,0): 207, 64, 60, (100,145,0): 203, 66, 60, (100,146,0): 197, 66, 58, (100,147,0): 185, 61, 53, (100,148,0): 173, 55, 45, (100,149,0): 163, 53, 40, (100,150,0): 158, 55, 40, (100,151,0): 154, 58, 42, (100,152,0): 150, 59, 41, (100,153,0): 147, 60, 41, (100,154,0): 145, 59, 42, (100,155,0): 141, 58, 40, (100,156,0): 138, 57, 38, (100,157,0): 137, 56, 37, (100,158,0): 136, 55, 36, (100,159,0): 131, 56, 37, (100,160,0): 131, 64, 45, (100,161,0): 117, 52, 34, (100,162,0): 123, 51, 37, (100,163,0): 147, 71, 58, (100,164,0): 164, 81, 73, (100,165,0): 161, 78, 70, (100,166,0): 158, 78, 71, (100,167,0): 161, 87, 78, (100,168,0): 152, 85, 76, (100,169,0): 146, 88, 76, (100,170,0): 144, 90, 78, (100,171,0): 141, 92, 78, (100,172,0): 143, 93, 82, (100,173,0): 148, 96, 85, (100,174,0): 151, 97, 87, (100,175,0): 143, 104, 87, (100,176,0): 141, 137, 102, (100,177,0): 152, 165, 122, (100,178,0): 157, 169, 129, (100,179,0): 128, 142, 106, (100,180,0): 93, 107, 72, (100,181,0): 68, 83, 52, (100,182,0): 50, 64, 38, (100,183,0): 36, 50, 25, (100,184,0): 45, 58, 38, (100,185,0): 48, 59, 42, (100,186,0): 53, 61, 46, (100,187,0): 57, 63, 51, (100,188,0): 60, 63, 52, (100,189,0): 61, 63, 52, (100,190,0): 58, 59, 51, (100,191,0): 58, 58, 48, (100,192,0): 57, 57, 45, (100,193,0): 62, 63, 49, (100,194,0): 59, 61, 50, (100,195,0): 56, 59, 48, (100,196,0): 59, 63, 49, (100,197,0): 56, 65, 46, (100,198,0): 62, 75, 49, (100,199,0): 80, 98, 60, (100,200,0): 98, 120, 73, (100,201,0): 107, 135, 76, (100,202,0): 117, 148, 81, (100,203,0): 116, 152, 80, (100,204,0): 115, 151, 77, (100,205,0): 113, 154, 78, (100,206,0): 113, 153, 82, (100,207,0): 111, 153, 81, (100,208,0): 114, 154, 83, (100,209,0): 114, 154, 83, (100,210,0): 114, 154, 81, (100,211,0): 112, 153, 77, (100,212,0): 109, 151, 75, (100,213,0): 109, 152, 73, (100,214,0): 112, 155, 76, (100,215,0): 115, 158, 79, (100,216,0): 116, 160, 81, (100,217,0): 118, 162, 83, (100,218,0): 120, 167, 89, (100,219,0): 123, 169, 94, (100,220,0): 122, 168, 95, (100,221,0): 113, 159, 86, (100,222,0): 100, 146, 74, (100,223,0): 89, 134, 67, (100,224,0): 92, 133, 73, (100,225,0): 85, 124, 69, (100,226,0): 81, 120, 65, (101,0,0): 101, 92, 77, (101,1,0): 101, 92, 77, (101,2,0): 101, 92, 77, (101,3,0): 101, 92, 77, (101,4,0): 101, 92, 77, (101,5,0): 101, 92, 77, (101,6,0): 101, 92, 77, (101,7,0): 101, 92, 77, (101,8,0): 101, 92, 77, (101,9,0): 102, 93, 78, (101,10,0): 102, 93, 78, (101,11,0): 102, 93, 78, (101,12,0): 103, 94, 79, (101,13,0): 103, 94, 79, (101,14,0): 104, 95, 80, (101,15,0): 104, 95, 78, (101,16,0): 103, 95, 74, (101,17,0): 104, 96, 73, (101,18,0): 105, 97, 76, (101,19,0): 106, 98, 77, (101,20,0): 106, 98, 79, (101,21,0): 106, 98, 79, (101,22,0): 106, 97, 80, (101,23,0): 106, 97, 80, (101,24,0): 106, 97, 80, (101,25,0): 105, 97, 78, (101,26,0): 104, 96, 77, (101,27,0): 104, 96, 75, (101,28,0): 104, 96, 75, (101,29,0): 104, 96, 73, (101,30,0): 105, 97, 74, (101,31,0): 106, 98, 75, (101,32,0): 102, 95, 77, (101,33,0): 98, 93, 74, (101,34,0): 94, 88, 72, (101,35,0): 88, 82, 66, (101,36,0): 83, 77, 61, (101,37,0): 77, 74, 57, (101,38,0): 75, 72, 55, (101,39,0): 73, 72, 54, (101,40,0): 75, 74, 56, (101,41,0): 76, 75, 57, (101,42,0): 76, 77, 59, (101,43,0): 78, 79, 61, (101,44,0): 80, 81, 63, (101,45,0): 81, 84, 65, (101,46,0): 83, 86, 69, (101,47,0): 84, 85, 69, (101,48,0): 92, 88, 76, (101,49,0): 95, 85, 73, (101,50,0): 100, 80, 69, (101,51,0): 124, 87, 78, (101,52,0): 161, 104, 97, (101,53,0): 181, 102, 97, (101,54,0): 193, 88, 85, (101,55,0): 211, 83, 82, (101,56,0): 214, 65, 67, (101,57,0): 220, 60, 62, (101,58,0): 219, 57, 55, (101,59,0): 210, 56, 48, (101,60,0): 200, 58, 46, (101,61,0): 189, 62, 43, (101,62,0): 178, 66, 42, (101,63,0): 183, 64, 40, (101,64,0): 204, 59, 42, (101,65,0): 212, 55, 40, (101,66,0): 213, 56, 41, (101,67,0): 213, 57, 42, (101,68,0): 214, 57, 42, (101,69,0): 213, 57, 42, (101,70,0): 213, 57, 42, (101,71,0): 212, 56, 41, (101,72,0): 212, 56, 41, (101,73,0): 210, 57, 41, (101,74,0): 210, 57, 41, (101,75,0): 210, 57, 41, (101,76,0): 210, 57, 41, (101,77,0): 210, 57, 41, (101,78,0): 210, 57, 41, (101,79,0): 205, 59, 44, (101,80,0): 193, 63, 49, (101,81,0): 181, 61, 47, (101,82,0): 171, 60, 41, (101,83,0): 162, 57, 36, (101,84,0): 153, 54, 31, (101,85,0): 149, 53, 29, (101,86,0): 155, 59, 34, (101,87,0): 167, 65, 42, (101,88,0): 178, 66, 46, (101,89,0): 185, 64, 47, (101,90,0): 191, 59, 44, (101,91,0): 195, 55, 42, (101,92,0): 197, 50, 40, (101,93,0): 203, 52, 43, (101,94,0): 210, 59, 48, (101,95,0): 223, 61, 56, (101,96,0): 233, 54, 58, (101,97,0): 237, 52, 60, (101,98,0): 234, 55, 61, (101,99,0): 232, 57, 62, (101,100,0): 229, 59, 62, (101,101,0): 228, 59, 62, (101,102,0): 225, 59, 61, (101,103,0): 224, 58, 60, (101,104,0): 223, 53, 56, (101,105,0): 224, 55, 58, (101,106,0): 226, 57, 62, (101,107,0): 224, 61, 62, (101,108,0): 217, 61, 62, (101,109,0): 207, 58, 54, (101,110,0): 194, 51, 47, (101,111,0): 181, 48, 39, (101,112,0): 177, 57, 43, (101,113,0): 172, 61, 42, (101,114,0): 172, 61, 42, (101,115,0): 171, 62, 42, (101,116,0): 170, 61, 41, (101,117,0): 169, 60, 40, (101,118,0): 169, 58, 39, (101,119,0): 171, 56, 37, (101,120,0): 175, 54, 37, (101,121,0): 183, 56, 41, (101,122,0): 197, 59, 48, (101,123,0): 206, 62, 51, (101,124,0): 214, 61, 53, (101,125,0): 222, 60, 55, (101,126,0): 227, 59, 56, (101,127,0): 232, 59, 55, (101,128,0): 236, 56, 55, (101,129,0): 239, 55, 53, (101,130,0): 239, 55, 53, (101,131,0): 238, 56, 53, (101,132,0): 235, 58, 52, (101,133,0): 233, 59, 52, (101,134,0): 231, 60, 52, (101,135,0): 228, 61, 52, (101,136,0): 226, 62, 53, (101,137,0): 224, 63, 55, (101,138,0): 222, 65, 58, (101,139,0): 218, 65, 59, (101,140,0): 217, 65, 62, (101,141,0): 213, 65, 63, (101,142,0): 209, 64, 61, (101,143,0): 205, 66, 63, (101,144,0): 195, 63, 58, (101,145,0): 187, 64, 56, (101,146,0): 179, 61, 51, (101,147,0): 170, 56, 45, (101,148,0): 161, 53, 40, (101,149,0): 155, 53, 39, (101,150,0): 152, 56, 40, (101,151,0): 149, 60, 42, (101,152,0): 145, 60, 40, (101,153,0): 141, 60, 41, (101,154,0): 138, 60, 40, (101,155,0): 136, 58, 38, (101,156,0): 134, 57, 39, (101,157,0): 132, 55, 37, (101,158,0): 131, 54, 36, (101,159,0): 127, 54, 37, (101,160,0): 125, 58, 41, (101,161,0): 116, 51, 33, (101,162,0): 126, 57, 42, (101,163,0): 151, 79, 65, (101,164,0): 163, 89, 78, (101,165,0): 156, 82, 71, (101,166,0): 149, 79, 69, (101,167,0): 152, 86, 74, (101,168,0): 149, 89, 78, (101,169,0): 144, 91, 77, (101,170,0): 142, 90, 77, (101,171,0): 140, 91, 77, (101,172,0): 142, 92, 81, (101,173,0): 147, 95, 84, (101,174,0): 153, 96, 87, (101,175,0): 145, 103, 87, (101,176,0): 126, 120, 88, (101,177,0): 121, 131, 94, (101,178,0): 114, 124, 90, (101,179,0): 85, 96, 66, (101,180,0): 59, 69, 44, (101,181,0): 47, 59, 37, (101,182,0): 48, 59, 42, (101,183,0): 48, 60, 46, (101,184,0): 51, 61, 50, (101,185,0): 52, 60, 49, (101,186,0): 54, 60, 50, (101,187,0): 60, 63, 54, (101,188,0): 64, 65, 57, (101,189,0): 63, 65, 54, (101,190,0): 60, 60, 48, (101,191,0): 55, 55, 43, (101,192,0): 56, 57, 43, (101,193,0): 62, 63, 49, (101,194,0): 58, 60, 49, (101,195,0): 55, 58, 47, (101,196,0): 58, 62, 48, (101,197,0): 55, 64, 45, (101,198,0): 61, 74, 48, (101,199,0): 79, 97, 59, (101,200,0): 98, 120, 73, (101,201,0): 107, 135, 76, (101,202,0): 117, 148, 81, (101,203,0): 117, 153, 81, (101,204,0): 116, 152, 78, (101,205,0): 113, 154, 78, (101,206,0): 114, 154, 83, (101,207,0): 112, 154, 82, (101,208,0): 114, 154, 81, (101,209,0): 115, 156, 80, (101,210,0): 114, 155, 79, (101,211,0): 112, 153, 75, (101,212,0): 110, 153, 74, (101,213,0): 112, 155, 76, (101,214,0): 115, 158, 79, (101,215,0): 118, 161, 82, (101,216,0): 121, 165, 88, (101,217,0): 123, 167, 90, (101,218,0): 122, 168, 93, (101,219,0): 120, 166, 93, (101,220,0): 113, 159, 87, (101,221,0): 103, 148, 79, (101,222,0): 93, 138, 69, (101,223,0): 88, 130, 66, (101,224,0): 95, 134, 77, (101,225,0): 87, 126, 71, (101,226,0): 82, 121, 66, (102,0,0): 103, 94, 79, (102,1,0): 103, 94, 79, (102,2,0): 103, 94, 79, (102,3,0): 103, 94, 79, (102,4,0): 103, 94, 79, (102,5,0): 103, 94, 79, (102,6,0): 103, 94, 79, (102,7,0): 103, 94, 79, (102,8,0): 103, 94, 79, (102,9,0): 103, 94, 79, (102,10,0): 103, 94, 79, (102,11,0): 104, 95, 80, (102,12,0): 104, 95, 80, (102,13,0): 104, 95, 80, (102,14,0): 104, 95, 80, (102,15,0): 105, 96, 79, (102,16,0): 106, 97, 80, (102,17,0): 106, 98, 79, (102,18,0): 106, 98, 79, (102,19,0): 106, 98, 79, (102,20,0): 105, 96, 79, (102,21,0): 105, 96, 79, (102,22,0): 105, 97, 78, (102,23,0): 105, 97, 78, (102,24,0): 105, 97, 78, (102,25,0): 104, 96, 75, (102,26,0): 104, 96, 75, (102,27,0): 104, 96, 73, (102,28,0): 104, 96, 73, (102,29,0): 104, 97, 71, (102,30,0): 104, 97, 71, (102,31,0): 104, 97, 71, (102,32,0): 102, 95, 76, (102,33,0): 101, 94, 75, (102,34,0): 98, 91, 73, (102,35,0): 92, 87, 68, (102,36,0): 87, 82, 63, (102,37,0): 80, 77, 58, (102,38,0): 76, 73, 56, (102,39,0): 73, 72, 54, (102,40,0): 73, 72, 54, (102,41,0): 71, 72, 54, (102,42,0): 71, 74, 57, (102,43,0): 71, 75, 58, (102,44,0): 72, 76, 59, (102,45,0): 73, 77, 60, (102,46,0): 72, 79, 63, (102,47,0): 74, 78, 63, (102,48,0): 82, 80, 67, (102,49,0): 89, 81, 70, (102,50,0): 92, 78, 67, (102,51,0): 105, 82, 68, (102,52,0): 129, 89, 77, (102,53,0): 149, 87, 76, (102,54,0): 174, 84, 76, (102,55,0): 209, 91, 89, (102,56,0): 217, 75, 74, (102,57,0): 223, 65, 66, (102,58,0): 223, 57, 57, (102,59,0): 217, 55, 50, (102,60,0): 207, 59, 49, (102,61,0): 195, 62, 45, (102,62,0): 183, 64, 42, (102,63,0): 180, 60, 36, (102,64,0): 201, 58, 41, (102,65,0): 211, 55, 40, (102,66,0): 212, 56, 41, (102,67,0): 211, 58, 42, (102,68,0): 213, 57, 42, (102,69,0): 211, 58, 42, (102,70,0): 211, 58, 42, (102,71,0): 211, 58, 42, (102,72,0): 210, 57, 41, (102,73,0): 209, 58, 41, (102,74,0): 209, 58, 41, (102,75,0): 209, 58, 41, (102,76,0): 209, 58, 41, (102,77,0): 209, 58, 41, (102,78,0): 209, 58, 41, (102,79,0): 205, 59, 44, (102,80,0): 193, 61, 48, (102,81,0): 181, 61, 47, (102,82,0): 172, 61, 44, (102,83,0): 163, 60, 41, (102,84,0): 152, 56, 32, (102,85,0): 144, 52, 27, (102,86,0): 149, 57, 32, (102,87,0): 161, 65, 41, (102,88,0): 173, 67, 45, (102,89,0): 182, 65, 47, (102,90,0): 191, 61, 47, (102,91,0): 192, 54, 43, (102,92,0): 194, 47, 37, (102,93,0): 199, 48, 39, (102,94,0): 208, 54, 46, (102,95,0): 222, 58, 56, (102,96,0): 232, 53, 57, (102,97,0): 238, 54, 62, (102,98,0): 236, 59, 65, (102,99,0): 233, 64, 67, (102,100,0): 229, 66, 69, (102,101,0): 224, 66, 67, (102,102,0): 220, 64, 65, (102,103,0): 217, 63, 63, (102,104,0): 204, 50, 50, (102,105,0): 207, 55, 54, (102,106,0): 211, 58, 60, (102,107,0): 207, 62, 59, (102,108,0): 199, 60, 57, (102,109,0): 189, 56, 49, (102,110,0): 180, 53, 46, (102,111,0): 171, 53, 41, (102,112,0): 170, 60, 45, (102,113,0): 167, 62, 43, (102,114,0): 167, 62, 43, (102,115,0): 166, 63, 44, (102,116,0): 165, 62, 43, (102,117,0): 166, 61, 40, (102,118,0): 166, 59, 39, (102,119,0): 169, 58, 39, (102,120,0): 170, 55, 37, (102,121,0): 177, 56, 39, (102,122,0): 188, 56, 43, (102,123,0): 195, 57, 46, (102,124,0): 203, 56, 48, (102,125,0): 211, 58, 52, (102,126,0): 220, 61, 57, (102,127,0): 228, 63, 59, (102,128,0): 233, 58, 55, (102,129,0): 236, 57, 53, (102,130,0): 236, 57, 53, (102,131,0): 235, 58, 52, (102,132,0): 233, 59, 52, (102,133,0): 232, 59, 52, (102,134,0): 229, 61, 52, (102,135,0): 226, 62, 52, (102,136,0): 224, 66, 55, (102,137,0): 221, 67, 57, (102,138,0): 218, 67, 60, (102,139,0): 213, 66, 59, (102,140,0): 207, 65, 61, (102,141,0): 202, 63, 60, (102,142,0): 199, 61, 59, (102,143,0): 191, 62, 57, (102,144,0): 177, 60, 51, (102,145,0): 169, 58, 47, (102,146,0): 162, 56, 43, (102,147,0): 156, 54, 40, (102,148,0): 152, 55, 39, (102,149,0): 148, 56, 41, (102,150,0): 145, 58, 41, (102,151,0): 141, 58, 40, (102,152,0): 139, 61, 41, (102,153,0): 137, 60, 42, (102,154,0): 135, 60, 41, (102,155,0): 131, 58, 39, (102,156,0): 130, 57, 40, (102,157,0): 128, 55, 38, (102,158,0): 127, 54, 37, (102,159,0): 125, 54, 36, (102,160,0): 120, 51, 35, (102,161,0): 120, 53, 37, (102,162,0): 133, 66, 50, (102,163,0): 152, 85, 69, (102,164,0): 157, 87, 75, (102,165,0): 148, 80, 67, (102,166,0): 144, 80, 68, (102,167,0): 149, 90, 76, (102,168,0): 147, 89, 77, (102,169,0): 144, 90, 78, (102,170,0): 144, 92, 81, (102,171,0): 144, 92, 81, (102,172,0): 146, 91, 84, (102,173,0): 149, 92, 85, (102,174,0): 152, 91, 86, (102,175,0): 142, 98, 85, (102,176,0): 107, 98, 69, (102,177,0): 86, 96, 61, (102,178,0): 74, 83, 52, (102,179,0): 61, 71, 44, (102,180,0): 54, 63, 42, (102,181,0): 50, 61, 44, (102,182,0): 52, 62, 51, (102,183,0): 53, 63, 54, (102,184,0): 54, 61, 54, (102,185,0): 56, 63, 56, (102,186,0): 61, 66, 59, (102,187,0): 67, 70, 61, (102,188,0): 69, 71, 60, (102,189,0): 67, 68, 54, (102,190,0): 64, 62, 47, (102,191,0): 59, 57, 42, (102,192,0): 55, 56, 42, (102,193,0): 61, 62, 48, (102,194,0): 58, 60, 49, (102,195,0): 55, 58, 47, (102,196,0): 58, 62, 48, (102,197,0): 54, 63, 44, (102,198,0): 61, 74, 48, (102,199,0): 78, 96, 58, (102,200,0): 97, 119, 72, (102,201,0): 107, 135, 76, (102,202,0): 117, 148, 81, (102,203,0): 117, 153, 81, (102,204,0): 116, 152, 78, (102,205,0): 114, 155, 79, (102,206,0): 114, 154, 83, (102,207,0): 112, 154, 80, (102,208,0): 113, 155, 79, (102,209,0): 114, 157, 78, (102,210,0): 113, 156, 77, (102,211,0): 112, 155, 76, (102,212,0): 111, 154, 75, (102,213,0): 114, 157, 78, (102,214,0): 117, 161, 84, (102,215,0): 121, 165, 88, (102,216,0): 127, 171, 96, (102,217,0): 126, 169, 97, (102,218,0): 122, 165, 93, (102,219,0): 113, 156, 85, (102,220,0): 102, 145, 76, (102,221,0): 95, 137, 71, (102,222,0): 93, 135, 69, (102,223,0): 94, 136, 73, (102,224,0): 97, 136, 79, (102,225,0): 89, 128, 73, (102,226,0): 82, 121, 66, (103,0,0): 104, 95, 80, (103,1,0): 104, 95, 80, (103,2,0): 104, 95, 80, (103,3,0): 104, 95, 80, (103,4,0): 104, 95, 80, (103,5,0): 104, 95, 80, (103,6,0): 104, 95, 80, (103,7,0): 104, 95, 80, (103,8,0): 103, 94, 79, (103,9,0): 104, 95, 80, (103,10,0): 104, 95, 80, (103,11,0): 104, 95, 80, (103,12,0): 104, 95, 80, (103,13,0): 104, 95, 80, (103,14,0): 105, 96, 81, (103,15,0): 105, 96, 81, (103,16,0): 109, 100, 85, (103,17,0): 108, 99, 84, (103,18,0): 106, 97, 82, (103,19,0): 105, 96, 81, (103,20,0): 104, 95, 80, (103,21,0): 103, 94, 79, (103,22,0): 103, 94, 77, (103,23,0): 104, 96, 77, (103,24,0): 105, 97, 78, (103,25,0): 105, 97, 76, (103,26,0): 105, 97, 76, (103,27,0): 105, 97, 76, (103,28,0): 104, 96, 73, (103,29,0): 104, 96, 73, (103,30,0): 104, 97, 71, (103,31,0): 104, 96, 73, (103,32,0): 103, 97, 75, (103,33,0): 102, 95, 76, (103,34,0): 101, 94, 75, (103,35,0): 98, 91, 72, (103,36,0): 92, 87, 68, (103,37,0): 85, 82, 63, (103,38,0): 80, 77, 60, (103,39,0): 77, 76, 58, (103,40,0): 69, 70, 52, (103,41,0): 68, 71, 52, (103,42,0): 68, 72, 55, (103,43,0): 68, 72, 55, (103,44,0): 66, 73, 57, (103,45,0): 66, 75, 58, (103,46,0): 66, 75, 58, (103,47,0): 67, 74, 58, (103,48,0): 74, 74, 62, (103,49,0): 84, 80, 68, (103,50,0): 85, 79, 65, (103,51,0): 89, 76, 60, (103,52,0): 101, 75, 58, (103,53,0): 115, 69, 53, (103,54,0): 146, 74, 62, (103,55,0): 192, 91, 83, (103,56,0): 215, 83, 79, (103,57,0): 222, 70, 69, (103,58,0): 223, 59, 58, (103,59,0): 220, 55, 53, (103,60,0): 213, 59, 51, (103,61,0): 204, 61, 47, (103,62,0): 189, 60, 41, (103,63,0): 184, 55, 34, (103,64,0): 203, 58, 41, (103,65,0): 207, 56, 39, (103,66,0): 208, 57, 40, (103,67,0): 210, 59, 42, (103,68,0): 210, 59, 42, (103,69,0): 210, 59, 42, (103,70,0): 210, 59, 42, (103,71,0): 210, 59, 42, (103,72,0): 209, 58, 41, (103,73,0): 209, 58, 41, (103,74,0): 209, 58, 41, (103,75,0): 209, 58, 41, (103,76,0): 209, 58, 41, (103,77,0): 209, 58, 41, (103,78,0): 209, 58, 41, (103,79,0): 205, 59, 44, (103,80,0): 193, 59, 48, (103,81,0): 182, 58, 46, (103,82,0): 173, 60, 44, (103,83,0): 167, 62, 43, (103,84,0): 153, 57, 35, (103,85,0): 143, 51, 26, (103,86,0): 147, 55, 30, (103,87,0): 159, 63, 39, (103,88,0): 163, 57, 35, (103,89,0): 176, 59, 41, (103,90,0): 192, 62, 48, (103,91,0): 198, 60, 49, (103,92,0): 204, 56, 46, (103,93,0): 208, 55, 47, (103,94,0): 217, 60, 53, (103,95,0): 227, 63, 61, (103,96,0): 236, 61, 66, (103,97,0): 238, 63, 68, (103,98,0): 233, 67, 69, (103,99,0): 226, 68, 67, (103,100,0): 214, 64, 63, (103,101,0): 202, 59, 55, (103,102,0): 192, 53, 48, (103,103,0): 187, 49, 46, (103,104,0): 183, 48, 44, (103,105,0): 187, 54, 49, (103,106,0): 190, 58, 54, (103,107,0): 187, 60, 54, (103,108,0): 179, 58, 50, (103,109,0): 169, 57, 46, (103,110,0): 164, 56, 44, (103,111,0): 160, 58, 43, (103,112,0): 161, 61, 45, (103,113,0): 159, 62, 43, (103,114,0): 160, 63, 44, (103,115,0): 161, 64, 45, (103,116,0): 161, 64, 45, (103,117,0): 163, 64, 43, (103,118,0): 163, 62, 42, (103,119,0): 164, 61, 42, (103,120,0): 169, 59, 42, (103,121,0): 173, 58, 40, (103,122,0): 178, 55, 40, (103,123,0): 184, 54, 41, (103,124,0): 191, 53, 43, (103,125,0): 201, 57, 48, (103,126,0): 212, 63, 57, (103,127,0): 224, 67, 62, (103,128,0): 229, 60, 55, (103,129,0): 232, 59, 53, (103,130,0): 232, 59, 53, (103,131,0): 231, 60, 52, (103,132,0): 229, 60, 53, (103,133,0): 228, 61, 52, (103,134,0): 225, 62, 53, (103,135,0): 222, 64, 53, (103,136,0): 220, 68, 57, (103,137,0): 216, 68, 58, (103,138,0): 210, 67, 59, (103,139,0): 202, 65, 57, (103,140,0): 196, 63, 58, (103,141,0): 188, 59, 54, (103,142,0): 184, 56, 53, (103,143,0): 176, 57, 51, (103,144,0): 162, 55, 45, (103,145,0): 153, 56, 40, (103,146,0): 149, 53, 39, (103,147,0): 147, 54, 39, (103,148,0): 145, 58, 41, (103,149,0): 143, 60, 42, (103,150,0): 139, 58, 41, (103,151,0): 133, 56, 38, (103,152,0): 136, 61, 42, (103,153,0): 133, 60, 43, (103,154,0): 131, 60, 42, (103,155,0): 128, 60, 41, (103,156,0): 126, 58, 39, (103,157,0): 124, 56, 37, (103,158,0): 123, 54, 38, (103,159,0): 123, 54, 38, (103,160,0): 121, 49, 35, (103,161,0): 128, 56, 42, (103,162,0): 140, 71, 56, (103,163,0): 150, 83, 67, (103,164,0): 146, 80, 66, (103,165,0): 139, 76, 61, (103,166,0): 144, 82, 69, (103,167,0): 153, 95, 83, (103,168,0): 145, 87, 76, (103,169,0): 146, 89, 78, (103,170,0): 148, 91, 82, (103,171,0): 150, 93, 84, (103,172,0): 150, 93, 86, (103,173,0): 151, 92, 86, (103,174,0): 150, 89, 84, (103,175,0): 140, 94, 81, (103,176,0): 97, 88, 59, (103,177,0): 69, 77, 40, (103,178,0): 54, 64, 30, (103,179,0): 56, 65, 38, (103,180,0): 62, 71, 50, (103,181,0): 60, 69, 52, (103,182,0): 51, 61, 50, (103,183,0): 45, 55, 46, (103,184,0): 49, 56, 49, (103,185,0): 55, 62, 54, (103,186,0): 66, 69, 60, (103,187,0): 71, 74, 63, (103,188,0): 72, 73, 59, (103,189,0): 66, 67, 49, (103,190,0): 63, 62, 42, (103,191,0): 59, 58, 38, (103,192,0): 55, 56, 40, (103,193,0): 61, 62, 48, (103,194,0): 57, 59, 48, (103,195,0): 54, 57, 46, (103,196,0): 58, 62, 48, (103,197,0): 54, 63, 44, (103,198,0): 60, 73, 47, (103,199,0): 78, 96, 58, (103,200,0): 97, 119, 72, (103,201,0): 106, 134, 75, (103,202,0): 117, 148, 81, (103,203,0): 116, 152, 80, (103,204,0): 116, 152, 78, (103,205,0): 114, 155, 79, (103,206,0): 114, 154, 83, (103,207,0): 112, 154, 80, (103,208,0): 113, 156, 77, (103,209,0): 113, 156, 76, (103,210,0): 113, 156, 76, (103,211,0): 112, 155, 75, (103,212,0): 112, 155, 76, (103,213,0): 115, 158, 79, (103,214,0): 119, 163, 86, (103,215,0): 123, 167, 92, (103,216,0): 130, 173, 101, (103,217,0): 128, 171, 100, (103,218,0): 120, 163, 92, (103,219,0): 106, 149, 80, (103,220,0): 93, 135, 69, (103,221,0): 89, 131, 65, (103,222,0): 94, 136, 72, (103,223,0): 101, 143, 80, (103,224,0): 99, 138, 81, (103,225,0): 90, 129, 74, (103,226,0): 83, 122, 67, (104,0,0): 105, 96, 81, (104,1,0): 105, 96, 81, (104,2,0): 105, 96, 81, (104,3,0): 105, 96, 81, (104,4,0): 105, 96, 81, (104,5,0): 105, 96, 81, (104,6,0): 105, 96, 81, (104,7,0): 105, 96, 81, (104,8,0): 105, 96, 81, (104,9,0): 105, 96, 81, (104,10,0): 105, 96, 81, (104,11,0): 105, 96, 81, (104,12,0): 105, 96, 81, (104,13,0): 105, 96, 81, (104,14,0): 105, 96, 81, (104,15,0): 105, 95, 83, (104,16,0): 106, 96, 87, (104,17,0): 106, 96, 87, (104,18,0): 106, 96, 87, (104,19,0): 106, 96, 87, (104,20,0): 106, 96, 86, (104,21,0): 106, 96, 86, (104,22,0): 106, 96, 84, (104,23,0): 106, 97, 82, (104,24,0): 106, 97, 82, (104,25,0): 106, 97, 80, (104,26,0): 106, 97, 80, (104,27,0): 106, 98, 79, (104,28,0): 106, 98, 79, (104,29,0): 106, 98, 79, (104,30,0): 106, 98, 77, (104,31,0): 106, 98, 77, (104,32,0): 103, 95, 74, (104,33,0): 103, 95, 74, (104,34,0): 102, 94, 73, (104,35,0): 101, 95, 73, (104,36,0): 98, 93, 73, (104,37,0): 90, 88, 67, (104,38,0): 83, 80, 61, (104,39,0): 77, 76, 58, (104,40,0): 72, 73, 55, (104,41,0): 69, 72, 55, (104,42,0): 65, 69, 54, (104,43,0): 64, 68, 53, (104,44,0): 63, 69, 55, (104,45,0): 63, 71, 56, (104,46,0): 63, 71, 56, (104,47,0): 63, 69, 55, (104,48,0): 72, 74, 61, (104,49,0): 74, 75, 61, (104,50,0): 67, 68, 52, (104,51,0): 75, 74, 54, (104,52,0): 92, 81, 59, (104,53,0): 96, 70, 47, (104,54,0): 128, 75, 57, (104,55,0): 189, 107, 93, (104,56,0): 217, 104, 96, (104,57,0): 224, 86, 83, (104,58,0): 226, 71, 69, (104,59,0): 229, 65, 64, (104,60,0): 226, 64, 61, (104,61,0): 215, 61, 53, (104,62,0): 203, 59, 48, (104,63,0): 201, 59, 45, (104,64,0): 199, 51, 37, (104,65,0): 203, 53, 38, (104,66,0): 204, 54, 39, (104,67,0): 205, 55, 40, (104,68,0): 205, 55, 40, (104,69,0): 206, 56, 41, (104,70,0): 209, 59, 44, (104,71,0): 211, 61, 46, (104,72,0): 210, 60, 45, (104,73,0): 210, 60, 45, (104,74,0): 210, 60, 45, (104,75,0): 210, 60, 45, (104,76,0): 209, 59, 44, (104,77,0): 209, 59, 44, (104,78,0): 209, 59, 44, (104,79,0): 206, 60, 45, (104,80,0): 187, 50, 40, (104,81,0): 182, 55, 46, (104,82,0): 177, 59, 47, (104,83,0): 168, 58, 41, (104,84,0): 154, 55, 34, (104,85,0): 148, 53, 31, (104,86,0): 149, 55, 30, (104,87,0): 156, 57, 34, (104,88,0): 174, 65, 45, (104,89,0): 179, 59, 43, (104,90,0): 186, 54, 41, (104,91,0): 193, 52, 42, (104,92,0): 205, 54, 47, (104,93,0): 215, 60, 55, (104,94,0): 226, 67, 63, (104,95,0): 234, 72, 69, (104,96,0): 232, 68, 69, (104,97,0): 232, 69, 72, (104,98,0): 221, 67, 67, (104,99,0): 201, 58, 54, (104,100,0): 187, 54, 49, (104,101,0): 180, 56, 48, (104,102,0): 176, 55, 46, (104,103,0): 169, 52, 43, (104,104,0): 171, 57, 47, (104,105,0): 169, 57, 46, (104,106,0): 164, 56, 46, (104,107,0): 160, 56, 45, (104,108,0): 155, 57, 44, (104,109,0): 150, 58, 43, (104,110,0): 147, 60, 43, (104,111,0): 146, 60, 43, (104,112,0): 150, 61, 43, (104,113,0): 152, 61, 42, (104,114,0): 153, 62, 43, (104,115,0): 154, 63, 44, (104,116,0): 155, 64, 45, (104,117,0): 156, 65, 44, (104,118,0): 158, 66, 45, (104,119,0): 161, 64, 45, (104,120,0): 162, 59, 42, (104,121,0): 165, 58, 40, (104,122,0): 171, 55, 40, (104,123,0): 176, 54, 41, (104,124,0): 182, 54, 43, (104,125,0): 190, 56, 45, (104,126,0): 197, 58, 51, (104,127,0): 204, 60, 52, (104,128,0): 218, 61, 54, (104,129,0): 224, 61, 54, (104,130,0): 226, 63, 56, (104,131,0): 226, 65, 55, (104,132,0): 226, 65, 57, (104,133,0): 222, 66, 54, (104,134,0): 218, 64, 54, (104,135,0): 215, 64, 53, (104,136,0): 216, 72, 61, (104,137,0): 210, 69, 59, (104,138,0): 199, 65, 56, (104,139,0): 187, 59, 50, (104,140,0): 178, 53, 47, (104,141,0): 170, 51, 45, (104,142,0): 166, 49, 42, (104,143,0): 159, 50, 43, (104,144,0): 153, 57, 45, (104,145,0): 146, 59, 42, (104,146,0): 145, 57, 43, (104,147,0): 141, 58, 42, (104,148,0): 139, 58, 41, (104,149,0): 136, 59, 41, (104,150,0): 135, 59, 43, (104,151,0): 133, 60, 43, (104,152,0): 128, 57, 39, (104,153,0): 125, 56, 40, (104,154,0): 124, 57, 40, (104,155,0): 124, 57, 40, (104,156,0): 124, 57, 40, (104,157,0): 123, 56, 39, (104,158,0): 121, 54, 38, (104,159,0): 120, 51, 36, (104,160,0): 119, 45, 32, (104,161,0): 139, 65, 52, (104,162,0): 151, 79, 67, (104,163,0): 147, 77, 65, (104,164,0): 142, 76, 64, (104,165,0): 145, 81, 69, (104,166,0): 147, 85, 74, (104,167,0): 142, 82, 71, (104,168,0): 152, 92, 82, (104,169,0): 152, 92, 82, (104,170,0): 145, 85, 77, (104,171,0): 144, 84, 76, (104,172,0): 151, 90, 85, (104,173,0): 149, 88, 83, (104,174,0): 148, 87, 84, (104,175,0): 147, 103, 90, (104,176,0): 93, 84, 53, (104,177,0): 73, 81, 42, (104,178,0): 65, 75, 40, (104,179,0): 66, 75, 44, (104,180,0): 62, 72, 47, (104,181,0): 55, 64, 43, (104,182,0): 50, 61, 45, (104,183,0): 52, 63, 49, (104,184,0): 52, 60, 49, (104,185,0): 72, 80, 67, (104,186,0): 90, 94, 80, (104,187,0): 87, 91, 74, (104,188,0): 77, 79, 58, (104,189,0): 68, 70, 46, (104,190,0): 65, 65, 39, (104,191,0): 61, 61, 37, (104,192,0): 58, 59, 41, (104,193,0): 62, 63, 49, (104,194,0): 59, 61, 50, (104,195,0): 58, 61, 50, (104,196,0): 59, 63, 49, (104,197,0): 52, 61, 42, (104,198,0): 59, 72, 46, (104,199,0): 80, 98, 60, (104,200,0): 99, 121, 74, (104,201,0): 108, 136, 77, (104,202,0): 117, 148, 81, (104,203,0): 115, 151, 79, (104,204,0): 114, 150, 76, (104,205,0): 112, 153, 77, (104,206,0): 114, 154, 83, (104,207,0): 113, 155, 81, (104,208,0): 112, 157, 76, (104,209,0): 113, 158, 75, (104,210,0): 114, 159, 78, (104,211,0): 114, 159, 78, (104,212,0): 115, 159, 80, (104,213,0): 118, 162, 85, (104,214,0): 123, 167, 92, (104,215,0): 127, 170, 98, (104,216,0): 130, 173, 102, (104,217,0): 120, 163, 94, (104,218,0): 106, 147, 79, (104,219,0): 96, 137, 71, (104,220,0): 94, 135, 69, (104,221,0): 97, 137, 74, (104,222,0): 102, 142, 80, (104,223,0): 104, 144, 84, (104,224,0): 100, 137, 83, (104,225,0): 91, 128, 76, (104,226,0): 84, 121, 69, (105,0,0): 105, 96, 81, (105,1,0): 105, 96, 81, (105,2,0): 105, 96, 81, (105,3,0): 105, 96, 81, (105,4,0): 105, 96, 81, (105,5,0): 105, 96, 81, (105,6,0): 105, 96, 81, (105,7,0): 105, 96, 81, (105,8,0): 105, 96, 81, (105,9,0): 105, 96, 81, (105,10,0): 105, 96, 81, (105,11,0): 105, 96, 81, (105,12,0): 105, 96, 81, (105,13,0): 105, 96, 81, (105,14,0): 105, 96, 81, (105,15,0): 105, 95, 83, (105,16,0): 106, 95, 89, (105,17,0): 106, 95, 91, (105,18,0): 106, 95, 91, (105,19,0): 106, 95, 89, (105,20,0): 106, 95, 89, (105,21,0): 106, 96, 87, (105,22,0): 106, 96, 86, (105,23,0): 106, 96, 84, (105,24,0): 106, 96, 84, (105,25,0): 106, 97, 82, (105,26,0): 106, 97, 82, (105,27,0): 106, 97, 82, (105,28,0): 106, 97, 82, (105,29,0): 106, 97, 82, (105,30,0): 106, 97, 80, (105,31,0): 106, 97, 80, (105,32,0): 104, 96, 77, (105,33,0): 104, 96, 75, (105,34,0): 103, 95, 74, (105,35,0): 103, 95, 74, (105,36,0): 100, 93, 74, (105,37,0): 94, 89, 69, (105,38,0): 85, 82, 63, (105,39,0): 79, 78, 58, (105,40,0): 73, 74, 58, (105,41,0): 69, 72, 55, (105,42,0): 66, 68, 54, (105,43,0): 64, 68, 53, (105,44,0): 63, 69, 55, (105,45,0): 62, 70, 55, (105,46,0): 62, 70, 55, (105,47,0): 61, 69, 54, (105,48,0): 66, 70, 56, (105,49,0): 65, 67, 53, (105,50,0): 64, 69, 49, (105,51,0): 72, 76, 53, (105,52,0): 77, 73, 48, (105,53,0): 82, 65, 39, (105,54,0): 124, 82, 58, (105,55,0): 185, 117, 98, (105,56,0): 201, 100, 88, (105,57,0): 221, 96, 90, (105,58,0): 234, 86, 84, (105,59,0): 230, 72, 71, (105,60,0): 226, 64, 62, (105,61,0): 226, 64, 61, (105,62,0): 219, 62, 57, (105,63,0): 209, 56, 48, (105,64,0): 205, 57, 43, (105,65,0): 206, 61, 44, (105,66,0): 207, 61, 46, (105,67,0): 207, 62, 45, (105,68,0): 207, 59, 45, (105,69,0): 206, 59, 43, (105,70,0): 205, 57, 43, (105,71,0): 205, 58, 42, (105,72,0): 206, 58, 44, (105,73,0): 208, 58, 43, (105,74,0): 208, 58, 44, (105,75,0): 208, 58, 43, (105,76,0): 208, 58, 44, (105,77,0): 208, 58, 43, (105,78,0): 208, 58, 44, (105,79,0): 205, 59, 46, (105,80,0): 201, 63, 53, (105,81,0): 197, 66, 58, (105,82,0): 188, 66, 55, (105,83,0): 174, 61, 47, (105,84,0): 159, 54, 35, (105,85,0): 150, 49, 29, (105,86,0): 150, 49, 29, (105,87,0): 155, 50, 29, (105,88,0): 168, 53, 35, (105,89,0): 180, 54, 40, (105,90,0): 195, 59, 47, (105,91,0): 209, 65, 56, (105,92,0): 222, 69, 63, (105,93,0): 230, 73, 68, (105,94,0): 233, 74, 70, (105,95,0): 234, 75, 72, (105,96,0): 224, 66, 65, (105,97,0): 219, 69, 68, (105,98,0): 208, 66, 62, (105,99,0): 190, 59, 51, (105,100,0): 175, 57, 47, (105,101,0): 171, 61, 48, (105,102,0): 165, 63, 49, (105,103,0): 159, 61, 48, (105,104,0): 159, 63, 49, (105,105,0): 156, 62, 50, (105,106,0): 151, 62, 48, (105,107,0): 149, 61, 47, (105,108,0): 143, 61, 47, (105,109,0): 139, 62, 46, (105,110,0): 135, 64, 46, (105,111,0): 136, 63, 44, (105,112,0): 142, 61, 42, (105,113,0): 143, 60, 42, (105,114,0): 146, 60, 43, (105,115,0): 145, 62, 44, (105,116,0): 148, 63, 43, (105,117,0): 148, 63, 43, (105,118,0): 150, 63, 44, (105,119,0): 153, 62, 44, (105,120,0): 159, 64, 46, (105,121,0): 161, 61, 45, (105,122,0): 164, 58, 44, (105,123,0): 168, 56, 44, (105,124,0): 173, 55, 43, (105,125,0): 178, 56, 45, (105,126,0): 184, 57, 48, (105,127,0): 189, 56, 47, (105,128,0): 202, 60, 50, (105,129,0): 208, 60, 50, (105,130,0): 211, 63, 53, (105,131,0): 213, 65, 55, (105,132,0): 215, 67, 57, (105,133,0): 214, 67, 57, (105,134,0): 212, 68, 57, (105,135,0): 209, 69, 56, (105,136,0): 202, 66, 54, (105,137,0): 195, 65, 52, (105,138,0): 185, 61, 51, (105,139,0): 176, 58, 48, (105,140,0): 169, 54, 47, (105,141,0): 164, 53, 46, (105,142,0): 159, 52, 44, (105,143,0): 153, 55, 44, (105,144,0): 146, 58, 46, (105,145,0): 140, 61, 44, (105,146,0): 138, 59, 44, (105,147,0): 136, 59, 43, (105,148,0): 134, 58, 42, (105,149,0): 132, 59, 42, (105,150,0): 131, 60, 42, (105,151,0): 129, 60, 44, (105,152,0): 126, 59, 42, (105,153,0): 124, 59, 41, (105,154,0): 123, 57, 41, (105,155,0): 121, 58, 41, (105,156,0): 120, 57, 40, (105,157,0): 119, 56, 39, (105,158,0): 117, 54, 39, (105,159,0): 119, 52, 36, (105,160,0): 128, 52, 39, (105,161,0): 144, 68, 55, (105,162,0): 152, 78, 67, (105,163,0): 145, 75, 63, (105,164,0): 140, 74, 62, (105,165,0): 143, 81, 68, (105,166,0): 146, 84, 73, (105,167,0): 144, 82, 71, (105,168,0): 147, 83, 74, (105,169,0): 152, 88, 79, (105,170,0): 152, 85, 79, (105,171,0): 151, 86, 80, (105,172,0): 156, 93, 88, (105,173,0): 148, 87, 82, (105,174,0): 142, 83, 79, (105,175,0): 138, 99, 84, (105,176,0): 93, 87, 53, (105,177,0): 88, 99, 57, (105,178,0): 95, 106, 66, (105,179,0): 90, 102, 66, (105,180,0): 73, 84, 54, (105,181,0): 54, 67, 41, (105,182,0): 52, 64, 42, (105,183,0): 60, 72, 52, (105,184,0): 79, 88, 71, (105,185,0): 89, 98, 81, (105,186,0): 95, 102, 84, (105,187,0): 87, 92, 70, (105,188,0): 74, 78, 55, (105,189,0): 66, 69, 42, (105,190,0): 63, 63, 35, (105,191,0): 60, 60, 34, (105,192,0): 57, 58, 40, (105,193,0): 61, 62, 48, (105,194,0): 58, 60, 49, (105,195,0): 57, 60, 49, (105,196,0): 60, 64, 50, (105,197,0): 53, 62, 43, (105,198,0): 59, 72, 46, (105,199,0): 80, 98, 60, (105,200,0): 100, 122, 75, (105,201,0): 108, 136, 77, (105,202,0): 117, 148, 81, (105,203,0): 116, 152, 80, (105,204,0): 114, 150, 76, (105,205,0): 113, 154, 78, (105,206,0): 114, 154, 83, (105,207,0): 113, 155, 81, (105,208,0): 115, 160, 79, (105,209,0): 114, 159, 76, (105,210,0): 112, 157, 76, (105,211,0): 113, 158, 77, (105,212,0): 116, 160, 81, (105,213,0): 120, 164, 87, (105,214,0): 124, 167, 95, (105,215,0): 127, 170, 99, (105,216,0): 123, 166, 97, (105,217,0): 111, 154, 85, (105,218,0): 99, 140, 74, (105,219,0): 93, 134, 68, (105,220,0): 97, 137, 74, (105,221,0): 101, 141, 78, (105,222,0): 101, 141, 78, (105,223,0): 99, 139, 79, (105,224,0): 100, 137, 83, (105,225,0): 91, 128, 76, (105,226,0): 84, 121, 69, (106,0,0): 105, 96, 81, (106,1,0): 105, 96, 81, (106,2,0): 105, 96, 81, (106,3,0): 105, 96, 81, (106,4,0): 105, 96, 81, (106,5,0): 105, 96, 81, (106,6,0): 105, 96, 81, (106,7,0): 105, 96, 81, (106,8,0): 105, 96, 81, (106,9,0): 105, 96, 81, (106,10,0): 105, 96, 81, (106,11,0): 105, 96, 81, (106,12,0): 105, 96, 81, (106,13,0): 105, 96, 81, (106,14,0): 105, 96, 81, (106,15,0): 105, 95, 85, (106,16,0): 106, 95, 91, (106,17,0): 106, 94, 94, (106,18,0): 106, 94, 94, (106,19,0): 106, 95, 93, (106,20,0): 106, 95, 89, (106,21,0): 106, 96, 87, (106,22,0): 106, 96, 86, (106,23,0): 106, 96, 84, (106,24,0): 106, 96, 84, (106,25,0): 106, 96, 84, (106,26,0): 106, 96, 84, (106,27,0): 106, 96, 84, (106,28,0): 106, 96, 84, (106,29,0): 106, 96, 84, (106,30,0): 106, 96, 86, (106,31,0): 106, 96, 84, (106,32,0): 108, 97, 79, (106,33,0): 107, 96, 76, (106,34,0): 105, 97, 78, (106,35,0): 105, 97, 78, (106,36,0): 102, 95, 76, (106,37,0): 97, 92, 72, (106,38,0): 89, 86, 67, (106,39,0): 83, 82, 62, (106,40,0): 77, 75, 60, (106,41,0): 72, 73, 57, (106,42,0): 68, 70, 56, (106,43,0): 65, 69, 54, (106,44,0): 65, 69, 54, (106,45,0): 63, 70, 54, (106,46,0): 62, 68, 54, (106,47,0): 61, 67, 53, (106,48,0): 62, 69, 53, (106,49,0): 58, 62, 45, (106,50,0): 66, 71, 49, (106,51,0): 73, 75, 51, (106,52,0): 69, 63, 37, (106,53,0): 84, 64, 39, (106,54,0): 132, 92, 67, (106,55,0): 181, 116, 96, (106,56,0): 179, 87, 74, (106,57,0): 214, 100, 90, (106,58,0): 239, 101, 98, (106,59,0): 236, 84, 83, (106,60,0): 230, 70, 72, (106,61,0): 235, 71, 72, (106,62,0): 232, 66, 68, (106,63,0): 219, 57, 54, (106,64,0): 203, 55, 43, (106,65,0): 201, 58, 42, (106,66,0): 201, 58, 44, (106,67,0): 201, 58, 42, (106,68,0): 203, 57, 44, (106,69,0): 202, 56, 41, (106,70,0): 200, 54, 41, (106,71,0): 200, 54, 39, (106,72,0): 202, 56, 43, (106,73,0): 203, 55, 41, (106,74,0): 203, 55, 43, (106,75,0): 203, 55, 41, (106,76,0): 203, 55, 43, (106,77,0): 204, 56, 42, (106,78,0): 204, 56, 44, (106,79,0): 203, 56, 46, (106,80,0): 194, 51, 45, (106,81,0): 190, 53, 47, (106,82,0): 182, 54, 45, (106,83,0): 173, 51, 40, (106,84,0): 161, 48, 34, (106,85,0): 158, 47, 30, (106,86,0): 160, 49, 32, (106,87,0): 167, 51, 36, (106,88,0): 188, 65, 50, (106,89,0): 199, 67, 55, (106,90,0): 214, 71, 63, (106,91,0): 225, 76, 70, (106,92,0): 231, 76, 71, (106,93,0): 233, 74, 70, (106,94,0): 229, 70, 66, (106,95,0): 223, 68, 64, (106,96,0): 216, 66, 65, (106,97,0): 209, 67, 65, (106,98,0): 195, 63, 58, (106,99,0): 177, 59, 49, (106,100,0): 166, 60, 47, (106,101,0): 161, 65, 49, (106,102,0): 156, 69, 52, (106,103,0): 152, 69, 51, (106,104,0): 149, 68, 51, (106,105,0): 146, 67, 52, (106,106,0): 143, 66, 50, (106,107,0): 138, 65, 48, (106,108,0): 133, 64, 48, (106,109,0): 130, 65, 47, (106,110,0): 126, 65, 46, (106,111,0): 129, 64, 46, (106,112,0): 132, 59, 42, (106,113,0): 136, 59, 43, (106,114,0): 137, 58, 41, (106,115,0): 137, 60, 42, (106,116,0): 139, 60, 43, (106,117,0): 139, 60, 43, (106,118,0): 142, 61, 42, (106,119,0): 143, 60, 42, (106,120,0): 150, 63, 46, (106,121,0): 152, 60, 45, (106,122,0): 155, 59, 43, (106,123,0): 158, 56, 42, (106,124,0): 162, 56, 43, (106,125,0): 167, 56, 45, (106,126,0): 170, 58, 46, (106,127,0): 175, 57, 47, (106,128,0): 185, 57, 46, (106,129,0): 190, 57, 48, (106,130,0): 193, 59, 48, (106,131,0): 196, 62, 51, (106,132,0): 197, 63, 51, (106,133,0): 197, 65, 52, (106,134,0): 195, 65, 51, (106,135,0): 193, 65, 52, (106,136,0): 182, 59, 44, (106,137,0): 178, 58, 44, (106,138,0): 170, 56, 45, (106,139,0): 163, 55, 43, (106,140,0): 158, 54, 43, (106,141,0): 155, 54, 44, (106,142,0): 152, 55, 46, (106,143,0): 148, 58, 47, (106,144,0): 141, 59, 47, (106,145,0): 136, 60, 44, (106,146,0): 135, 59, 45, (106,147,0): 132, 59, 44, (106,148,0): 130, 58, 43, (106,149,0): 128, 59, 43, (106,150,0): 128, 59, 43, (106,151,0): 127, 60, 44, (106,152,0): 125, 59, 43, (106,153,0): 122, 59, 42, (106,154,0): 122, 59, 44, (106,155,0): 119, 57, 42, (106,156,0): 118, 56, 41, (106,157,0): 117, 55, 40, (106,158,0): 116, 54, 41, (106,159,0): 118, 52, 38, (106,160,0): 136, 59, 49, (106,161,0): 148, 70, 60, (106,162,0): 150, 78, 66, (106,163,0): 142, 74, 61, (106,164,0): 136, 72, 60, (106,165,0): 141, 79, 66, (106,166,0): 145, 83, 72, (106,167,0): 146, 82, 73, (106,168,0): 146, 79, 73, (106,169,0): 153, 84, 79, (106,170,0): 153, 83, 81, (106,171,0): 154, 86, 83, (106,172,0): 154, 93, 90, (106,173,0): 147, 89, 85, (106,174,0): 141, 91, 84, (106,175,0): 141, 108, 91, (106,176,0): 129, 125, 88, (106,177,0): 126, 137, 94, (106,178,0): 128, 139, 97, (106,179,0): 108, 120, 82, (106,180,0): 76, 88, 52, (106,181,0): 54, 68, 35, (106,182,0): 61, 74, 46, (106,183,0): 76, 90, 64, (106,184,0): 101, 113, 89, (106,185,0): 101, 111, 87, (106,186,0): 93, 101, 77, (106,187,0): 80, 85, 62, (106,188,0): 69, 73, 48, (106,189,0): 63, 67, 40, (106,190,0): 61, 64, 35, (106,191,0): 58, 60, 36, (106,192,0): 56, 57, 39, (106,193,0): 59, 60, 46, (106,194,0): 56, 58, 47, (106,195,0): 57, 60, 49, (106,196,0): 61, 65, 51, (106,197,0): 54, 63, 44, (106,198,0): 60, 73, 47, (106,199,0): 80, 98, 60, (106,200,0): 100, 122, 75, (106,201,0): 109, 137, 78, (106,202,0): 118, 149, 82, (106,203,0): 116, 152, 80, (106,204,0): 115, 151, 77, (106,205,0): 113, 154, 78, (106,206,0): 114, 154, 83, (106,207,0): 112, 154, 80, (106,208,0): 117, 162, 81, (106,209,0): 112, 160, 76, (106,210,0): 110, 157, 76, (106,211,0): 112, 159, 79, (106,212,0): 117, 164, 86, (106,213,0): 121, 167, 92, (106,214,0): 125, 168, 96, (106,215,0): 124, 167, 96, (106,216,0): 112, 153, 85, (106,217,0): 102, 143, 77, (106,218,0): 92, 132, 69, (106,219,0): 92, 132, 69, (106,220,0): 101, 140, 77, (106,221,0): 105, 144, 81, (106,222,0): 102, 141, 78, (106,223,0): 95, 133, 72, (106,224,0): 99, 136, 82, (106,225,0): 90, 127, 76, (106,226,0): 83, 120, 69, (107,0,0): 105, 96, 81, (107,1,0): 105, 96, 81, (107,2,0): 105, 96, 81, (107,3,0): 105, 96, 81, (107,4,0): 105, 96, 81, (107,5,0): 105, 96, 81, (107,6,0): 105, 96, 81, (107,7,0): 105, 96, 81, (107,8,0): 106, 97, 82, (107,9,0): 106, 97, 82, (107,10,0): 106, 97, 82, (107,11,0): 106, 97, 82, (107,12,0): 106, 97, 82, (107,13,0): 106, 97, 82, (107,14,0): 106, 97, 82, (107,15,0): 106, 96, 86, (107,16,0): 107, 96, 92, (107,17,0): 107, 95, 95, (107,18,0): 107, 96, 94, (107,19,0): 107, 96, 92, (107,20,0): 107, 96, 90, (107,21,0): 107, 97, 88, (107,22,0): 107, 97, 87, (107,23,0): 107, 97, 85, (107,24,0): 107, 97, 85, (107,25,0): 107, 97, 85, (107,26,0): 107, 97, 85, (107,27,0): 107, 97, 85, (107,28,0): 107, 97, 87, (107,29,0): 107, 97, 87, (107,30,0): 107, 97, 88, (107,31,0): 107, 97, 87, (107,32,0): 110, 98, 82, (107,33,0): 109, 98, 80, (107,34,0): 106, 98, 79, (107,35,0): 106, 98, 79, (107,36,0): 104, 97, 78, (107,37,0): 101, 94, 75, (107,38,0): 95, 90, 71, (107,39,0): 89, 86, 69, (107,40,0): 82, 79, 62, (107,41,0): 77, 75, 60, (107,42,0): 71, 72, 58, (107,43,0): 68, 70, 56, (107,44,0): 67, 69, 55, (107,45,0): 66, 68, 54, (107,46,0): 64, 68, 53, (107,47,0): 62, 66, 51, (107,48,0): 63, 70, 52, (107,49,0): 60, 65, 45, (107,50,0): 71, 73, 51, (107,51,0): 76, 70, 48, (107,52,0): 77, 59, 37, (107,53,0): 110, 78, 57, (107,54,0): 152, 100, 79, (107,55,0): 167, 96, 78, (107,56,0): 158, 66, 53, (107,57,0): 197, 84, 76, (107,58,0): 229, 100, 95, (107,59,0): 239, 95, 94, (107,60,0): 237, 83, 85, (107,61,0): 237, 74, 79, (107,62,0): 234, 68, 72, (107,63,0): 227, 64, 65, (107,64,0): 205, 56, 49, (107,65,0): 199, 57, 45, (107,66,0): 197, 55, 43, (107,67,0): 197, 55, 43, (107,68,0): 200, 56, 45, (107,69,0): 202, 58, 47, (107,70,0): 203, 59, 48, (107,71,0): 205, 58, 48, (107,72,0): 209, 62, 52, (107,73,0): 209, 62, 52, (107,74,0): 210, 62, 52, (107,75,0): 210, 62, 52, (107,76,0): 211, 63, 53, (107,77,0): 211, 63, 53, (107,78,0): 211, 63, 53, (107,79,0): 211, 62, 55, (107,80,0): 211, 63, 59, (107,81,0): 209, 66, 62, (107,82,0): 203, 68, 62, (107,83,0): 198, 70, 61, (107,84,0): 194, 70, 60, (107,85,0): 195, 73, 62, (107,86,0): 199, 77, 64, (107,87,0): 206, 80, 68, (107,88,0): 217, 83, 72, (107,89,0): 221, 80, 71, (107,90,0): 226, 77, 71, (107,91,0): 228, 73, 69, (107,92,0): 228, 71, 66, (107,93,0): 226, 67, 63, (107,94,0): 224, 65, 61, (107,95,0): 220, 65, 61, (107,96,0): 214, 69, 66, (107,97,0): 202, 67, 63, (107,98,0): 189, 62, 55, (107,99,0): 173, 59, 48, (107,100,0): 161, 61, 46, (107,101,0): 155, 66, 48, (107,102,0): 151, 70, 51, (107,103,0): 148, 73, 54, (107,104,0): 142, 69, 52, (107,105,0): 140, 69, 51, (107,106,0): 138, 66, 51, (107,107,0): 133, 66, 49, (107,108,0): 130, 64, 48, (107,109,0): 125, 64, 46, (107,110,0): 123, 64, 46, (107,111,0): 124, 63, 45, (107,112,0): 128, 59, 44, (107,113,0): 131, 57, 44, (107,114,0): 131, 58, 43, (107,115,0): 132, 59, 44, (107,116,0): 132, 59, 44, (107,117,0): 133, 60, 45, (107,118,0): 135, 59, 43, (107,119,0): 136, 59, 43, (107,120,0): 137, 58, 43, (107,121,0): 140, 57, 41, (107,122,0): 143, 55, 41, (107,123,0): 147, 55, 42, (107,124,0): 150, 56, 44, (107,125,0): 156, 58, 47, (107,126,0): 160, 59, 47, (107,127,0): 163, 59, 48, (107,128,0): 170, 58, 47, (107,129,0): 173, 56, 46, (107,130,0): 175, 57, 47, (107,131,0): 176, 58, 46, (107,132,0): 176, 58, 46, (107,133,0): 176, 58, 44, (107,134,0): 175, 57, 43, (107,135,0): 174, 56, 42, (107,136,0): 168, 55, 41, (107,137,0): 165, 55, 40, (107,138,0): 158, 54, 41, (107,139,0): 155, 54, 42, (107,140,0): 149, 55, 43, (107,141,0): 146, 56, 45, (107,142,0): 145, 57, 47, (107,143,0): 142, 60, 48, (107,144,0): 136, 60, 46, (107,145,0): 133, 60, 45, (107,146,0): 131, 59, 44, (107,147,0): 129, 57, 42, (107,148,0): 127, 58, 42, (107,149,0): 126, 57, 42, (107,150,0): 125, 58, 42, (107,151,0): 125, 59, 43, (107,152,0): 124, 58, 44, (107,153,0): 122, 59, 44, (107,154,0): 121, 59, 44, (107,155,0): 119, 57, 42, (107,156,0): 115, 56, 42, (107,157,0): 113, 54, 40, (107,158,0): 114, 55, 41, (107,159,0): 117, 53, 41, (107,160,0): 140, 68, 56, (107,161,0): 146, 72, 61, (107,162,0): 145, 75, 63, (107,163,0): 138, 72, 58, (107,164,0): 135, 73, 60, (107,165,0): 139, 79, 68, (107,166,0): 147, 84, 75, (107,167,0): 151, 84, 76, (107,168,0): 150, 81, 76, (107,169,0): 155, 84, 80, (107,170,0): 152, 81, 79, (107,171,0): 148, 83, 79, (107,172,0): 150, 92, 88, (107,173,0): 144, 95, 88, (107,174,0): 144, 104, 94, (107,175,0): 151, 126, 106, (107,176,0): 148, 148, 112, (107,177,0): 133, 146, 102, (107,178,0): 117, 130, 87, (107,179,0): 89, 104, 63, (107,180,0): 67, 82, 43, (107,181,0): 63, 79, 42, (107,182,0): 80, 96, 60, (107,183,0): 99, 114, 81, (107,184,0): 101, 116, 85, (107,185,0): 92, 105, 75, (107,186,0): 78, 88, 61, (107,187,0): 67, 76, 49, (107,188,0): 63, 69, 43, (107,189,0): 62, 66, 41, (107,190,0): 61, 65, 40, (107,191,0): 59, 61, 39, (107,192,0): 55, 56, 40, (107,193,0): 58, 59, 45, (107,194,0): 55, 57, 46, (107,195,0): 57, 60, 49, (107,196,0): 61, 65, 51, (107,197,0): 55, 64, 45, (107,198,0): 60, 73, 47, (107,199,0): 79, 97, 59, (107,200,0): 98, 120, 73, (107,201,0): 108, 136, 77, (107,202,0): 118, 149, 82, (107,203,0): 117, 153, 81, (107,204,0): 116, 152, 78, (107,205,0): 114, 155, 79, (107,206,0): 114, 154, 83, (107,207,0): 111, 155, 80, (107,208,0): 113, 160, 79, (107,209,0): 111, 158, 77, (107,210,0): 111, 158, 77, (107,211,0): 115, 162, 82, (107,212,0): 122, 168, 93, (107,213,0): 124, 170, 97, (107,214,0): 122, 165, 94, (107,215,0): 117, 160, 91, (107,216,0): 99, 140, 74, (107,217,0): 94, 135, 69, (107,218,0): 91, 131, 68, (107,219,0): 95, 135, 72, (107,220,0): 103, 142, 79, (107,221,0): 106, 145, 80, (107,222,0): 102, 141, 76, (107,223,0): 96, 135, 72, (107,224,0): 98, 135, 81, (107,225,0): 89, 126, 75, (107,226,0): 82, 119, 68, (108,0,0): 105, 96, 81, (108,1,0): 105, 96, 81, (108,2,0): 105, 96, 81, (108,3,0): 105, 96, 81, (108,4,0): 105, 96, 81, (108,5,0): 105, 96, 81, (108,6,0): 105, 96, 81, (108,7,0): 105, 96, 81, (108,8,0): 106, 97, 82, (108,9,0): 106, 97, 82, (108,10,0): 106, 97, 82, (108,11,0): 106, 97, 82, (108,12,0): 106, 97, 82, (108,13,0): 106, 97, 82, (108,14,0): 106, 97, 82, (108,15,0): 106, 96, 84, (108,16,0): 107, 96, 90, (108,17,0): 107, 96, 92, (108,18,0): 107, 96, 90, (108,19,0): 107, 97, 88, (108,20,0): 107, 97, 87, (108,21,0): 107, 97, 85, (108,22,0): 107, 98, 83, (108,23,0): 107, 98, 83, (108,24,0): 107, 98, 83, (108,25,0): 107, 98, 83, (108,26,0): 107, 98, 83, (108,27,0): 107, 97, 85, (108,28,0): 107, 97, 87, (108,29,0): 107, 97, 87, (108,30,0): 107, 97, 88, (108,31,0): 107, 97, 87, (108,32,0): 111, 99, 85, (108,33,0): 110, 98, 82, (108,34,0): 107, 98, 81, (108,35,0): 107, 98, 81, (108,36,0): 107, 98, 81, (108,37,0): 104, 97, 79, (108,38,0): 100, 93, 77, (108,39,0): 96, 90, 74, (108,40,0): 88, 82, 66, (108,41,0): 82, 79, 62, (108,42,0): 78, 75, 60, (108,43,0): 73, 71, 56, (108,44,0): 71, 69, 54, (108,45,0): 68, 69, 53, (108,46,0): 66, 67, 51, (108,47,0): 63, 66, 49, (108,48,0): 64, 72, 49, (108,49,0): 65, 70, 47, (108,50,0): 77, 71, 49, (108,51,0): 83, 62, 43, (108,52,0): 101, 62, 45, (108,53,0): 148, 90, 76, (108,54,0): 170, 96, 83, (108,55,0): 153, 63, 52, (108,56,0): 155, 52, 43, (108,57,0): 179, 64, 57, (108,58,0): 214, 89, 85, (108,59,0): 241, 106, 103, (108,60,0): 245, 101, 101, (108,61,0): 235, 82, 85, (108,62,0): 232, 73, 78, (108,63,0): 233, 77, 80, (108,64,0): 217, 73, 65, (108,65,0): 211, 70, 60, (108,66,0): 205, 64, 54, (108,67,0): 203, 62, 52, (108,68,0): 206, 64, 54, (108,69,0): 210, 68, 58, (108,70,0): 213, 71, 61, (108,71,0): 215, 71, 62, (108,72,0): 218, 74, 65, (108,73,0): 218, 74, 65, (108,74,0): 221, 74, 66, (108,75,0): 221, 74, 66, (108,76,0): 222, 75, 67, (108,77,0): 222, 75, 67, (108,78,0): 224, 75, 68, (108,79,0): 224, 75, 69, (108,80,0): 235, 83, 82, (108,81,0): 232, 84, 84, (108,82,0): 227, 83, 82, (108,83,0): 220, 82, 79, (108,84,0): 216, 83, 76, (108,85,0): 216, 83, 76, (108,86,0): 219, 85, 76, (108,87,0): 224, 85, 78, (108,88,0): 224, 76, 72, (108,89,0): 225, 73, 70, (108,90,0): 227, 69, 66, (108,91,0): 226, 67, 64, (108,92,0): 228, 66, 64, (108,93,0): 226, 67, 64, (108,94,0): 228, 69, 66, (108,95,0): 224, 70, 68, (108,96,0): 218, 73, 70, (108,97,0): 203, 68, 64, (108,98,0): 188, 61, 55, (108,99,0): 174, 60, 50, (108,100,0): 163, 62, 50, (108,101,0): 153, 66, 49, (108,102,0): 147, 68, 51, (108,103,0): 146, 71, 52, (108,104,0): 141, 68, 51, (108,105,0): 138, 66, 51, (108,106,0): 137, 65, 51, (108,107,0): 132, 63, 48, (108,108,0): 130, 62, 49, (108,109,0): 128, 62, 48, (108,110,0): 125, 62, 47, (108,111,0): 125, 62, 47, (108,112,0): 127, 59, 46, (108,113,0): 128, 58, 46, (108,114,0): 128, 58, 46, (108,115,0): 128, 58, 46, (108,116,0): 128, 61, 45, (108,117,0): 129, 60, 45, (108,118,0): 129, 60, 45, (108,119,0): 131, 59, 45, (108,120,0): 130, 57, 42, (108,121,0): 132, 56, 42, (108,122,0): 134, 56, 43, (108,123,0): 138, 56, 42, (108,124,0): 140, 57, 43, (108,125,0): 144, 58, 45, (108,126,0): 146, 58, 46, (108,127,0): 148, 58, 47, (108,128,0): 155, 59, 47, (108,129,0): 158, 57, 45, (108,130,0): 159, 57, 45, (108,131,0): 160, 58, 44, (108,132,0): 161, 57, 44, (108,133,0): 162, 56, 43, (108,134,0): 162, 56, 42, (108,135,0): 162, 56, 42, (108,136,0): 159, 56, 41, (108,137,0): 156, 56, 41, (108,138,0): 152, 56, 40, (108,139,0): 148, 56, 41, (108,140,0): 143, 57, 42, (108,141,0): 140, 58, 44, (108,142,0): 137, 58, 45, (108,143,0): 135, 59, 45, (108,144,0): 132, 58, 45, (108,145,0): 130, 58, 44, (108,146,0): 129, 57, 43, (108,147,0): 128, 56, 42, (108,148,0): 125, 56, 41, (108,149,0): 125, 55, 43, (108,150,0): 124, 56, 43, (108,151,0): 123, 57, 43, (108,152,0): 122, 56, 44, (108,153,0): 121, 57, 45, (108,154,0): 120, 58, 45, (108,155,0): 118, 56, 43, (108,156,0): 113, 53, 42, (108,157,0): 111, 53, 41, (108,158,0): 113, 55, 43, (108,159,0): 116, 57, 43, (108,160,0): 140, 72, 59, (108,161,0): 141, 73, 60, (108,162,0): 137, 73, 61, (108,163,0): 132, 73, 59, (108,164,0): 133, 75, 63, (108,165,0): 140, 82, 70, (108,166,0): 147, 87, 77, (108,167,0): 152, 88, 79, (108,168,0): 152, 81, 77, (108,169,0): 156, 85, 81, (108,170,0): 152, 82, 80, (108,171,0): 147, 86, 81, (108,172,0): 146, 96, 89, (108,173,0): 136, 98, 87, (108,174,0): 131, 103, 91, (108,175,0): 134, 122, 100, (108,176,0): 110, 114, 81, (108,177,0): 90, 105, 64, (108,178,0): 74, 89, 48, (108,179,0): 65, 82, 40, (108,180,0): 73, 90, 48, (108,181,0): 87, 105, 63, (108,182,0): 100, 118, 78, (108,183,0): 106, 124, 86, (108,184,0): 88, 105, 69, (108,185,0): 76, 91, 58, (108,186,0): 63, 76, 46, (108,187,0): 58, 68, 41, (108,188,0): 60, 68, 44, (108,189,0): 62, 67, 45, (108,190,0): 60, 65, 45, (108,191,0): 58, 61, 44, (108,192,0): 56, 57, 43, (108,193,0): 58, 59, 45, (108,194,0): 54, 56, 45, (108,195,0): 56, 59, 48, (108,196,0): 62, 66, 52, (108,197,0): 55, 64, 45, (108,198,0): 59, 72, 46, (108,199,0): 76, 94, 56, (108,200,0): 95, 117, 70, (108,201,0): 105, 133, 74, (108,202,0): 116, 147, 80, (108,203,0): 116, 152, 80, (108,204,0): 116, 152, 78, (108,205,0): 114, 155, 79, (108,206,0): 115, 155, 84, (108,207,0): 112, 156, 81, (108,208,0): 110, 157, 77, (108,209,0): 109, 158, 76, (108,210,0): 112, 161, 80, (108,211,0): 119, 168, 89, (108,212,0): 124, 170, 97, (108,213,0): 122, 168, 96, (108,214,0): 114, 157, 88, (108,215,0): 105, 147, 81, (108,216,0): 90, 131, 65, (108,217,0): 92, 132, 69, (108,218,0): 97, 136, 73, (108,219,0): 101, 140, 77, (108,220,0): 103, 142, 77, (108,221,0): 103, 142, 75, (108,222,0): 104, 141, 74, (108,223,0): 102, 138, 76, (108,224,0): 99, 134, 80, (108,225,0): 89, 123, 73, (108,226,0): 82, 116, 66, (109,0,0): 105, 96, 81, (109,1,0): 105, 96, 81, (109,2,0): 105, 96, 81, (109,3,0): 105, 96, 81, (109,4,0): 105, 96, 81, (109,5,0): 105, 96, 81, (109,6,0): 105, 96, 81, (109,7,0): 105, 96, 81, (109,8,0): 107, 98, 83, (109,9,0): 107, 98, 83, (109,10,0): 107, 98, 83, (109,11,0): 107, 98, 83, (109,12,0): 107, 98, 83, (109,13,0): 107, 98, 83, (109,14,0): 107, 98, 83, (109,15,0): 107, 97, 85, (109,16,0): 108, 98, 89, (109,17,0): 108, 98, 89, (109,18,0): 108, 98, 89, (109,19,0): 108, 98, 86, (109,20,0): 108, 98, 86, (109,21,0): 108, 99, 82, (109,22,0): 108, 99, 82, (109,23,0): 108, 100, 81, (109,24,0): 108, 100, 81, (109,25,0): 108, 100, 81, (109,26,0): 108, 99, 82, (109,27,0): 108, 99, 84, (109,28,0): 108, 98, 86, (109,29,0): 108, 98, 88, (109,30,0): 108, 98, 88, (109,31,0): 108, 98, 88, (109,32,0): 111, 99, 85, (109,33,0): 110, 98, 82, (109,34,0): 107, 98, 81, (109,35,0): 108, 99, 82, (109,36,0): 108, 99, 82, (109,37,0): 107, 98, 81, (109,38,0): 103, 96, 80, (109,39,0): 100, 93, 77, (109,40,0): 94, 87, 71, (109,41,0): 89, 83, 67, (109,42,0): 83, 77, 63, (109,43,0): 77, 74, 59, (109,44,0): 75, 72, 57, (109,45,0): 71, 69, 54, (109,46,0): 69, 66, 51, (109,47,0): 64, 65, 47, (109,48,0): 61, 71, 46, (109,49,0): 66, 70, 45, (109,50,0): 81, 66, 45, (109,51,0): 98, 61, 45, (109,52,0): 129, 69, 58, (109,53,0): 169, 89, 82, (109,54,0): 178, 79, 74, (109,55,0): 155, 46, 43, (109,56,0): 175, 60, 57, (109,57,0): 184, 62, 59, (109,58,0): 208, 84, 82, (109,59,0): 242, 112, 110, (109,60,0): 254, 118, 118, (109,61,0): 243, 100, 104, (109,62,0): 237, 88, 94, (109,63,0): 242, 93, 95, (109,64,0): 227, 85, 81, (109,65,0): 218, 80, 70, (109,66,0): 212, 71, 64, (109,67,0): 208, 67, 58, (109,68,0): 209, 68, 61, (109,69,0): 212, 71, 62, (109,70,0): 214, 71, 65, (109,71,0): 214, 71, 63, (109,72,0): 217, 72, 67, (109,73,0): 218, 74, 66, (109,74,0): 220, 72, 68, (109,75,0): 221, 74, 67, (109,76,0): 222, 74, 70, (109,77,0): 222, 75, 68, (109,78,0): 224, 75, 71, (109,79,0): 224, 75, 71, (109,80,0): 226, 72, 72, (109,81,0): 225, 71, 73, (109,82,0): 220, 72, 72, (109,83,0): 217, 71, 71, (109,84,0): 214, 72, 68, (109,85,0): 215, 72, 68, (109,86,0): 216, 71, 66, (109,87,0): 219, 70, 66, (109,88,0): 224, 66, 65, (109,89,0): 228, 65, 66, (109,90,0): 230, 66, 65, (109,91,0): 232, 66, 66, (109,92,0): 231, 67, 66, (109,93,0): 228, 66, 64, (109,94,0): 223, 65, 62, (109,95,0): 219, 65, 63, (109,96,0): 221, 73, 71, (109,97,0): 205, 66, 63, (109,98,0): 188, 59, 54, (109,99,0): 175, 61, 51, (109,100,0): 165, 63, 51, (109,101,0): 153, 64, 48, (109,102,0): 146, 65, 48, (109,103,0): 144, 67, 51, (109,104,0): 140, 64, 50, (109,105,0): 137, 64, 49, (109,106,0): 136, 62, 49, (109,107,0): 134, 60, 49, (109,108,0): 132, 60, 48, (109,109,0): 129, 59, 49, (109,110,0): 129, 59, 49, (109,111,0): 128, 60, 49, (109,112,0): 128, 60, 49, (109,113,0): 127, 61, 49, (109,114,0): 127, 60, 51, (109,115,0): 127, 61, 49, (109,116,0): 127, 61, 49, (109,117,0): 127, 61, 47, (109,118,0): 127, 61, 49, (109,119,0): 127, 61, 47, (109,120,0): 128, 60, 47, (109,121,0): 129, 60, 45, (109,122,0): 131, 59, 45, (109,123,0): 131, 57, 44, (109,124,0): 133, 57, 44, (109,125,0): 132, 56, 42, (109,126,0): 133, 55, 43, (109,127,0): 133, 54, 41, (109,128,0): 141, 57, 46, (109,129,0): 143, 56, 46, (109,130,0): 145, 57, 45, (109,131,0): 148, 58, 47, (109,132,0): 151, 59, 46, (109,133,0): 154, 61, 46, (109,134,0): 158, 60, 47, (109,135,0): 159, 62, 46, (109,136,0): 153, 57, 41, (109,137,0): 150, 57, 40, (109,138,0): 147, 58, 42, (109,139,0): 144, 58, 43, (109,140,0): 138, 59, 44, (109,141,0): 135, 59, 43, (109,142,0): 132, 59, 44, (109,143,0): 130, 58, 43, (109,144,0): 130, 58, 44, (109,145,0): 129, 57, 43, (109,146,0): 127, 55, 41, (109,147,0): 126, 54, 40, (109,148,0): 123, 53, 41, (109,149,0): 123, 53, 41, (109,150,0): 123, 53, 41, (109,151,0): 122, 54, 41, (109,152,0): 120, 54, 42, (109,153,0): 120, 56, 44, (109,154,0): 119, 57, 44, (109,155,0): 115, 56, 42, (109,156,0): 112, 52, 41, (109,157,0): 111, 53, 41, (109,158,0): 114, 58, 45, (109,159,0): 118, 60, 48, (109,160,0): 139, 77, 64, (109,161,0): 137, 75, 60, (109,162,0): 132, 74, 60, (109,163,0): 130, 77, 61, (109,164,0): 133, 81, 67, (109,165,0): 139, 86, 72, (109,166,0): 146, 88, 77, (109,167,0): 151, 87, 78, (109,168,0): 147, 78, 73, (109,169,0): 153, 84, 79, (109,170,0): 151, 86, 82, (109,171,0): 149, 92, 85, (109,172,0): 144, 101, 92, (109,173,0): 123, 94, 80, (109,174,0): 102, 86, 70, (109,175,0): 96, 94, 71, (109,176,0): 69, 79, 45, (109,177,0): 62, 78, 41, (109,178,0): 63, 79, 40, (109,179,0): 74, 92, 50, (109,180,0): 95, 114, 69, (109,181,0): 107, 126, 81, (109,182,0): 101, 120, 75, (109,183,0): 88, 106, 64, (109,184,0): 77, 95, 55, (109,185,0): 64, 81, 45, (109,186,0): 54, 69, 38, (109,187,0): 55, 68, 42, (109,188,0): 61, 70, 49, (109,189,0): 61, 68, 52, (109,190,0): 58, 62, 48, (109,191,0): 55, 59, 45, (109,192,0): 56, 58, 44, (109,193,0): 58, 59, 45, (109,194,0): 54, 56, 45, (109,195,0): 56, 59, 48, (109,196,0): 62, 66, 52, (109,197,0): 55, 64, 45, (109,198,0): 57, 70, 44, (109,199,0): 73, 91, 53, (109,200,0): 91, 113, 66, (109,201,0): 101, 129, 70, (109,202,0): 114, 145, 78, (109,203,0): 115, 151, 79, (109,204,0): 115, 151, 77, (109,205,0): 114, 155, 79, (109,206,0): 115, 155, 84, (109,207,0): 112, 156, 81, (109,208,0): 109, 156, 76, (109,209,0): 111, 160, 79, (109,210,0): 115, 164, 85, (109,211,0): 120, 168, 92, (109,212,0): 122, 168, 96, (109,213,0): 115, 160, 91, (109,214,0): 105, 147, 81, (109,215,0): 96, 138, 72, (109,216,0): 89, 129, 66, (109,217,0): 94, 134, 71, (109,218,0): 101, 140, 77, (109,219,0): 103, 142, 77, (109,220,0): 102, 141, 74, (109,221,0): 101, 141, 71, (109,222,0): 103, 140, 71, (109,223,0): 104, 140, 76, (109,224,0): 97, 132, 78, (109,225,0): 88, 122, 72, (109,226,0): 81, 115, 65, (110,0,0): 105, 96, 81, (110,1,0): 105, 96, 81, (110,2,0): 105, 96, 81, (110,3,0): 105, 96, 81, (110,4,0): 105, 96, 81, (110,5,0): 105, 96, 81, (110,6,0): 105, 96, 81, (110,7,0): 105, 96, 81, (110,8,0): 107, 98, 83, (110,9,0): 107, 98, 83, (110,10,0): 107, 98, 83, (110,11,0): 107, 98, 83, (110,12,0): 107, 98, 83, (110,13,0): 107, 98, 83, (110,14,0): 107, 98, 83, (110,15,0): 107, 98, 83, (110,16,0): 108, 98, 88, (110,17,0): 108, 98, 86, (110,18,0): 108, 98, 86, (110,19,0): 108, 99, 82, (110,20,0): 108, 99, 82, (110,21,0): 108, 100, 79, (110,22,0): 108, 100, 79, (110,23,0): 108, 100, 77, (110,24,0): 108, 100, 77, (110,25,0): 108, 100, 77, (110,26,0): 108, 100, 79, (110,27,0): 108, 100, 81, (110,28,0): 108, 99, 82, (110,29,0): 108, 99, 84, (110,30,0): 108, 98, 86, (110,31,0): 108, 98, 86, (110,32,0): 111, 99, 85, (110,33,0): 109, 97, 83, (110,34,0): 107, 98, 83, (110,35,0): 108, 99, 84, (110,36,0): 109, 100, 85, (110,37,0): 108, 99, 84, (110,38,0): 105, 96, 81, (110,39,0): 102, 95, 79, (110,40,0): 98, 91, 75, (110,41,0): 94, 87, 71, (110,42,0): 88, 81, 65, (110,43,0): 82, 76, 60, (110,44,0): 79, 73, 57, (110,45,0): 74, 71, 54, (110,46,0): 73, 67, 51, (110,47,0): 65, 67, 46, (110,48,0): 60, 70, 43, (110,49,0): 66, 69, 42, (110,50,0): 86, 64, 43, (110,51,0): 122, 70, 57, (110,52,0): 163, 80, 76, (110,53,0): 178, 72, 72, (110,54,0): 180, 57, 60, (110,55,0): 183, 52, 57, (110,56,0): 197, 67, 69, (110,57,0): 193, 65, 64, (110,58,0): 200, 75, 73, (110,59,0): 222, 98, 96, (110,60,0): 241, 113, 112, (110,61,0): 242, 109, 112, (110,62,0): 233, 97, 101, (110,63,0): 228, 89, 92, (110,64,0): 219, 81, 78, (110,65,0): 213, 76, 68, (110,66,0): 207, 68, 63, (110,67,0): 205, 66, 59, (110,68,0): 207, 68, 63, (110,69,0): 208, 69, 62, (110,70,0): 208, 66, 62, (110,71,0): 205, 64, 57, (110,72,0): 210, 67, 63, (110,73,0): 210, 67, 61, (110,74,0): 212, 67, 64, (110,75,0): 213, 68, 63, (110,76,0): 215, 67, 65, (110,77,0): 216, 68, 64, (110,78,0): 217, 69, 67, (110,79,0): 218, 68, 67, (110,80,0): 221, 65, 68, (110,81,0): 221, 65, 68, (110,82,0): 222, 68, 70, (110,83,0): 221, 71, 72, (110,84,0): 223, 73, 72, (110,85,0): 224, 74, 73, (110,86,0): 227, 73, 73, (110,87,0): 229, 71, 72, (110,88,0): 231, 65, 67, (110,89,0): 234, 65, 68, (110,90,0): 236, 66, 69, (110,91,0): 236, 66, 69, (110,92,0): 231, 65, 65, (110,93,0): 226, 64, 62, (110,94,0): 219, 61, 58, (110,95,0): 214, 60, 58, (110,96,0): 219, 69, 70, (110,97,0): 204, 60, 60, (110,98,0): 188, 54, 51, (110,99,0): 177, 58, 50, (110,100,0): 169, 62, 52, (110,101,0): 155, 61, 49, (110,102,0): 147, 61, 48, (110,103,0): 145, 63, 49, (110,104,0): 139, 60, 47, (110,105,0): 139, 59, 48, (110,106,0): 138, 58, 49, (110,107,0): 137, 57, 48, (110,108,0): 136, 56, 49, (110,109,0): 135, 56, 51, (110,110,0): 136, 57, 52, (110,111,0): 133, 58, 52, (110,112,0): 128, 60, 51, (110,113,0): 125, 61, 51, (110,114,0): 125, 61, 52, (110,115,0): 125, 61, 51, (110,116,0): 125, 61, 51, (110,117,0): 125, 61, 49, (110,118,0): 125, 61, 51, (110,119,0): 124, 60, 48, (110,120,0): 124, 60, 48, (110,121,0): 124, 61, 46, (110,122,0): 126, 60, 46, (110,123,0): 126, 58, 45, (110,124,0): 125, 57, 44, (110,125,0): 125, 56, 41, (110,126,0): 126, 54, 42, (110,127,0): 126, 54, 42, (110,128,0): 131, 57, 46, (110,129,0): 131, 57, 46, (110,130,0): 135, 57, 45, (110,131,0): 137, 57, 46, (110,132,0): 141, 57, 46, (110,133,0): 145, 59, 46, (110,134,0): 149, 60, 46, (110,135,0): 150, 61, 45, (110,136,0): 146, 57, 41, (110,137,0): 145, 58, 41, (110,138,0): 141, 58, 42, (110,139,0): 138, 59, 42, (110,140,0): 135, 59, 43, (110,141,0): 131, 60, 42, (110,142,0): 128, 59, 43, (110,143,0): 126, 59, 42, (110,144,0): 128, 56, 42, (110,145,0): 128, 56, 44, (110,146,0): 126, 54, 42, (110,147,0): 125, 53, 41, (110,148,0): 124, 52, 40, (110,149,0): 122, 52, 40, (110,150,0): 122, 52, 42, (110,151,0): 121, 53, 42, (110,152,0): 117, 50, 41, (110,153,0): 118, 54, 44, (110,154,0): 118, 56, 45, (110,155,0): 114, 54, 43, (110,156,0): 111, 51, 41, (110,157,0): 111, 53, 42, (110,158,0): 115, 58, 47, (110,159,0): 120, 64, 51, (110,160,0): 138, 80, 66, (110,161,0): 134, 78, 63, (110,162,0): 129, 78, 61, (110,163,0): 130, 81, 64, (110,164,0): 133, 86, 70, (110,165,0): 137, 88, 73, (110,166,0): 142, 85, 74, (110,167,0): 145, 82, 73, (110,168,0): 146, 79, 73, (110,169,0): 151, 84, 78, (110,170,0): 147, 84, 79, (110,171,0): 145, 92, 86, (110,172,0): 138, 102, 90, (110,173,0): 110, 91, 74, (110,174,0): 80, 75, 55, (110,175,0): 69, 75, 49, (110,176,0): 65, 78, 48, (110,177,0): 75, 90, 57, (110,178,0): 87, 103, 67, (110,179,0): 96, 114, 74, (110,180,0): 103, 121, 79, (110,181,0): 100, 122, 76, (110,182,0): 86, 108, 62, (110,183,0): 71, 93, 47, (110,184,0): 65, 86, 45, (110,185,0): 55, 72, 36, (110,186,0): 49, 64, 33, (110,187,0): 54, 66, 42, (110,188,0): 61, 70, 53, (110,189,0): 60, 68, 57, (110,190,0): 56, 61, 54, (110,191,0): 55, 58, 51, (110,192,0): 57, 59, 46, (110,193,0): 59, 60, 46, (110,194,0): 54, 56, 45, (110,195,0): 57, 60, 49, (110,196,0): 63, 67, 53, (110,197,0): 55, 64, 45, (110,198,0): 55, 68, 42, (110,199,0): 70, 88, 50, (110,200,0): 86, 108, 61, (110,201,0): 97, 125, 66, (110,202,0): 111, 142, 75, (110,203,0): 113, 149, 77, (110,204,0): 115, 151, 77, (110,205,0): 114, 155, 79, (110,206,0): 116, 156, 85, (110,207,0): 113, 157, 82, (110,208,0): 111, 158, 80, (110,209,0): 113, 162, 81, (110,210,0): 117, 166, 87, (110,211,0): 118, 166, 90, (110,212,0): 115, 161, 89, (110,213,0): 106, 151, 82, (110,214,0): 98, 140, 74, (110,215,0): 91, 133, 69, (110,216,0): 94, 134, 72, (110,217,0): 96, 136, 73, (110,218,0): 99, 138, 75, (110,219,0): 101, 140, 75, (110,220,0): 102, 141, 74, (110,221,0): 102, 142, 72, (110,222,0): 102, 139, 70, (110,223,0): 101, 137, 73, (110,224,0): 96, 131, 77, (110,225,0): 87, 121, 71, (110,226,0): 80, 114, 64, (111,0,0): 105, 96, 81, (111,1,0): 105, 96, 81, (111,2,0): 105, 96, 81, (111,3,0): 105, 96, 81, (111,4,0): 105, 96, 81, (111,5,0): 105, 96, 81, (111,6,0): 105, 96, 81, (111,7,0): 105, 96, 81, (111,8,0): 107, 98, 83, (111,9,0): 107, 98, 83, (111,10,0): 107, 98, 83, (111,11,0): 107, 98, 83, (111,12,0): 107, 98, 83, (111,13,0): 107, 98, 83, (111,14,0): 107, 98, 83, (111,15,0): 107, 98, 83, (111,16,0): 108, 98, 86, (111,17,0): 108, 99, 84, (111,18,0): 108, 99, 84, (111,19,0): 108, 99, 82, (111,20,0): 108, 100, 81, (111,21,0): 108, 100, 79, (111,22,0): 108, 100, 79, (111,23,0): 108, 100, 77, (111,24,0): 108, 100, 77, (111,25,0): 108, 100, 79, (111,26,0): 108, 100, 79, (111,27,0): 108, 100, 81, (111,28,0): 108, 99, 82, (111,29,0): 108, 99, 84, (111,30,0): 108, 99, 84, (111,31,0): 108, 99, 84, (111,32,0): 110, 98, 84, (111,33,0): 109, 97, 83, (111,34,0): 109, 97, 83, (111,35,0): 109, 97, 83, (111,36,0): 109, 100, 85, (111,37,0): 108, 99, 84, (111,38,0): 106, 97, 82, (111,39,0): 103, 96, 80, (111,40,0): 100, 93, 77, (111,41,0): 96, 89, 73, (111,42,0): 90, 83, 67, (111,43,0): 85, 78, 62, (111,44,0): 80, 75, 56, (111,45,0): 77, 72, 53, (111,46,0): 73, 68, 49, (111,47,0): 69, 67, 46, (111,48,0): 65, 69, 42, (111,49,0): 71, 67, 40, (111,50,0): 92, 65, 44, (111,51,0): 137, 83, 71, (111,52,0): 175, 92, 88, (111,53,0): 169, 63, 65, (111,54,0): 169, 49, 51, (111,55,0): 203, 74, 78, (111,56,0): 195, 64, 69, (111,57,0): 189, 61, 62, (111,58,0): 185, 59, 60, (111,59,0): 195, 71, 71, (111,60,0): 216, 90, 91, (111,61,0): 229, 101, 102, (111,62,0): 221, 88, 91, (111,63,0): 205, 71, 72, (111,64,0): 209, 74, 71, (111,65,0): 207, 69, 66, (111,66,0): 205, 66, 63, (111,67,0): 206, 67, 62, (111,68,0): 210, 71, 66, (111,69,0): 210, 71, 66, (111,70,0): 206, 67, 62, (111,71,0): 201, 62, 55, (111,72,0): 207, 68, 61, (111,73,0): 209, 68, 61, (111,74,0): 210, 68, 64, (111,75,0): 212, 69, 65, (111,76,0): 214, 69, 66, (111,77,0): 217, 69, 67, (111,78,0): 220, 67, 69, (111,79,0): 222, 68, 70, (111,80,0): 222, 63, 67, (111,81,0): 223, 64, 68, (111,82,0): 222, 66, 69, (111,83,0): 223, 69, 69, (111,84,0): 225, 71, 71, (111,85,0): 224, 70, 70, (111,86,0): 224, 66, 67, (111,87,0): 225, 62, 63, (111,88,0): 232, 66, 68, (111,89,0): 234, 64, 67, (111,90,0): 232, 62, 65, (111,91,0): 231, 61, 62, (111,92,0): 228, 62, 62, (111,93,0): 228, 64, 63, (111,94,0): 226, 67, 64, (111,95,0): 223, 69, 67, (111,96,0): 215, 65, 66, (111,97,0): 200, 56, 56, (111,98,0): 184, 52, 48, (111,99,0): 177, 58, 52, (111,100,0): 169, 62, 54, (111,101,0): 155, 61, 51, (111,102,0): 146, 60, 47, (111,103,0): 142, 63, 50, (111,104,0): 137, 59, 47, (111,105,0): 136, 58, 48, (111,106,0): 136, 58, 48, (111,107,0): 136, 56, 49, (111,108,0): 136, 55, 51, (111,109,0): 138, 55, 51, (111,110,0): 137, 56, 52, (111,111,0): 136, 59, 53, (111,112,0): 128, 58, 50, (111,113,0): 126, 59, 50, (111,114,0): 126, 59, 50, (111,115,0): 124, 60, 50, (111,116,0): 124, 60, 48, (111,117,0): 124, 60, 48, (111,118,0): 124, 60, 48, (111,119,0): 124, 60, 48, (111,120,0): 120, 56, 44, (111,121,0): 121, 57, 45, (111,122,0): 124, 58, 46, (111,123,0): 124, 58, 46, (111,124,0): 125, 59, 45, (111,125,0): 125, 59, 45, (111,126,0): 125, 57, 44, (111,127,0): 125, 57, 44, (111,128,0): 126, 58, 47, (111,129,0): 127, 57, 47, (111,130,0): 128, 55, 46, (111,131,0): 129, 55, 44, (111,132,0): 132, 54, 42, (111,133,0): 133, 53, 42, (111,134,0): 134, 55, 42, (111,135,0): 134, 55, 40, (111,136,0): 138, 56, 42, (111,137,0): 136, 57, 42, (111,138,0): 136, 59, 43, (111,139,0): 133, 60, 45, (111,140,0): 132, 60, 45, (111,141,0): 128, 61, 44, (111,142,0): 126, 60, 44, (111,143,0): 125, 59, 43, (111,144,0): 125, 57, 44, (111,145,0): 125, 55, 45, (111,146,0): 124, 54, 44, (111,147,0): 121, 53, 42, (111,148,0): 122, 52, 42, (111,149,0): 120, 52, 41, (111,150,0): 120, 52, 41, (111,151,0): 120, 53, 44, (111,152,0): 114, 50, 40, (111,153,0): 117, 53, 43, (111,154,0): 118, 56, 45, (111,155,0): 114, 54, 43, (111,156,0): 110, 52, 41, (111,157,0): 110, 53, 42, (111,158,0): 116, 59, 48, (111,159,0): 120, 66, 54, (111,160,0): 138, 85, 71, (111,161,0): 132, 80, 66, (111,162,0): 128, 79, 64, (111,163,0): 132, 83, 68, (111,164,0): 136, 87, 73, (111,165,0): 140, 86, 74, (111,166,0): 140, 82, 71, (111,167,0): 141, 78, 71, (111,168,0): 149, 84, 78, (111,169,0): 148, 85, 78, (111,170,0): 139, 82, 75, (111,171,0): 132, 88, 77, (111,172,0): 127, 100, 83, (111,173,0): 101, 90, 68, (111,174,0): 71, 75, 50, (111,175,0): 61, 74, 44, (111,176,0): 73, 88, 57, (111,177,0): 90, 107, 73, (111,178,0): 103, 120, 84, (111,179,0): 99, 120, 81, (111,180,0): 89, 110, 69, (111,181,0): 83, 104, 61, (111,182,0): 78, 99, 56, (111,183,0): 74, 95, 52, (111,184,0): 58, 76, 38, (111,185,0): 48, 63, 30, (111,186,0): 44, 57, 29, (111,187,0): 53, 62, 41, (111,188,0): 61, 67, 53, (111,189,0): 60, 66, 56, (111,190,0): 58, 60, 55, (111,191,0): 57, 60, 53, (111,192,0): 59, 61, 50, (111,193,0): 59, 61, 48, (111,194,0): 55, 57, 46, (111,195,0): 57, 60, 49, (111,196,0): 63, 67, 53, (111,197,0): 56, 63, 45, (111,198,0): 56, 66, 41, (111,199,0): 69, 85, 49, (111,200,0): 85, 104, 59, (111,201,0): 97, 122, 67, (111,202,0): 110, 138, 77, (111,203,0): 114, 147, 78, (111,204,0): 114, 150, 78, (111,205,0): 114, 154, 81, (111,206,0): 115, 157, 83, (111,207,0): 113, 157, 82, (111,208,0): 114, 160, 85, (111,209,0): 117, 163, 88, (111,210,0): 118, 164, 91, (111,211,0): 116, 162, 90, (111,212,0): 111, 154, 85, (111,213,0): 102, 144, 78, (111,214,0): 94, 136, 72, (111,215,0): 91, 131, 68, (111,216,0): 100, 140, 78, (111,217,0): 97, 137, 75, (111,218,0): 96, 135, 72, (111,219,0): 99, 138, 73, (111,220,0): 102, 141, 74, (111,221,0): 103, 142, 75, (111,222,0): 101, 138, 69, (111,223,0): 97, 133, 69, (111,224,0): 96, 131, 77, (111,225,0): 87, 121, 71, (111,226,0): 80, 114, 64, (112,0,0): 105, 96, 81, (112,1,0): 105, 96, 81, (112,2,0): 105, 96, 81, (112,3,0): 106, 97, 82, (112,4,0): 106, 97, 82, (112,5,0): 107, 98, 83, (112,6,0): 107, 98, 83, (112,7,0): 107, 98, 83, (112,8,0): 106, 97, 82, (112,9,0): 106, 97, 82, (112,10,0): 106, 97, 82, (112,11,0): 106, 97, 82, (112,12,0): 106, 97, 82, (112,13,0): 106, 97, 82, (112,14,0): 106, 97, 82, (112,15,0): 106, 97, 82, (112,16,0): 107, 98, 83, (112,17,0): 107, 98, 83, (112,18,0): 107, 98, 83, (112,19,0): 107, 98, 83, (112,20,0): 107, 98, 81, (112,21,0): 107, 98, 81, (112,22,0): 107, 98, 81, (112,23,0): 107, 98, 81, (112,24,0): 108, 99, 82, (112,25,0): 108, 99, 82, (112,26,0): 108, 99, 82, (112,27,0): 108, 99, 82, (112,28,0): 108, 99, 84, (112,29,0): 108, 99, 84, (112,30,0): 108, 99, 84, (112,31,0): 110, 98, 84, (112,32,0): 107, 93, 80, (112,33,0): 112, 96, 81, (112,34,0): 116, 100, 87, (112,35,0): 114, 100, 87, (112,36,0): 110, 98, 86, (112,37,0): 106, 96, 84, (112,38,0): 104, 96, 83, (112,39,0): 104, 98, 84, (112,40,0): 103, 97, 83, (112,41,0): 103, 97, 81, (112,42,0): 99, 93, 77, (112,43,0): 91, 86, 67, (112,44,0): 86, 81, 61, (112,45,0): 83, 78, 56, (112,46,0): 78, 72, 50, (112,47,0): 71, 65, 41, (112,48,0): 76, 70, 44, (112,49,0): 74, 62, 36, (112,50,0): 98, 73, 51, (112,51,0): 145, 103, 87, (112,52,0): 182, 120, 109, (112,53,0): 187, 108, 101, (112,54,0): 183, 89, 87, (112,55,0): 185, 79, 79, (112,56,0): 182, 66, 69, (112,57,0): 189, 66, 69, (112,58,0): 194, 68, 71, (112,59,0): 200, 70, 72, (112,60,0): 205, 72, 75, (112,61,0): 208, 74, 75, (112,62,0): 211, 75, 77, (112,63,0): 211, 75, 77, (112,64,0): 205, 69, 69, (112,65,0): 205, 69, 69, (112,66,0): 208, 70, 68, (112,67,0): 211, 72, 69, (112,68,0): 212, 70, 66, (112,69,0): 207, 68, 61, (112,70,0): 206, 67, 60, (112,71,0): 207, 70, 60, (112,72,0): 200, 68, 56, (112,73,0): 201, 69, 57, (112,74,0): 203, 69, 60, (112,75,0): 207, 68, 63, (112,76,0): 212, 67, 64, (112,77,0): 216, 66, 67, (112,78,0): 222, 63, 68, (112,79,0): 222, 61, 67, (112,80,0): 225, 66, 70, (112,81,0): 223, 67, 68, (112,82,0): 223, 67, 68, (112,83,0): 224, 68, 69, (112,84,0): 224, 68, 69, (112,85,0): 225, 70, 68, (112,86,0): 225, 70, 68, (112,87,0): 227, 69, 68, (112,88,0): 227, 67, 67, (112,89,0): 228, 66, 64, (112,90,0): 228, 64, 63, (112,91,0): 227, 63, 62, (112,92,0): 227, 63, 62, (112,93,0): 227, 63, 61, (112,94,0): 227, 63, 61, (112,95,0): 224, 66, 63, (112,96,0): 211, 66, 63, (112,97,0): 197, 62, 58, (112,98,0): 184, 57, 51, (112,99,0): 170, 55, 48, (112,100,0): 160, 57, 48, (112,101,0): 151, 61, 50, (112,102,0): 142, 62, 51, (112,103,0): 134, 62, 50, (112,104,0): 131, 63, 50, (112,105,0): 129, 63, 51, (112,106,0): 129, 61, 50, (112,107,0): 129, 59, 51, (112,108,0): 132, 57, 51, (112,109,0): 135, 56, 51, (112,110,0): 136, 56, 49, (112,111,0): 136, 57, 50, (112,112,0): 133, 59, 48, (112,113,0): 132, 60, 46, (112,114,0): 132, 60, 46, (112,115,0): 129, 60, 45, (112,116,0): 129, 59, 47, (112,117,0): 128, 58, 46, (112,118,0): 128, 58, 46, (112,119,0): 128, 58, 46, (112,120,0): 126, 58, 45, (112,121,0): 126, 58, 45, (112,122,0): 126, 58, 45, (112,123,0): 126, 58, 45, (112,124,0): 126, 58, 47, (112,125,0): 126, 58, 47, (112,126,0): 126, 58, 47, (112,127,0): 126, 58, 47, (112,128,0): 125, 57, 48, (112,129,0): 125, 57, 48, (112,130,0): 126, 56, 48, (112,131,0): 126, 56, 46, (112,132,0): 128, 55, 46, (112,133,0): 128, 55, 46, (112,134,0): 128, 55, 46, (112,135,0): 126, 56, 44, (112,136,0): 128, 56, 44, (112,137,0): 126, 56, 44, (112,138,0): 125, 57, 44, (112,139,0): 124, 56, 45, (112,140,0): 123, 57, 45, (112,141,0): 122, 56, 44, (112,142,0): 120, 56, 44, (112,143,0): 120, 56, 44, (112,144,0): 120, 56, 46, (112,145,0): 120, 56, 46, (112,146,0): 119, 55, 45, (112,147,0): 118, 56, 45, (112,148,0): 118, 54, 44, (112,149,0): 116, 54, 43, (112,150,0): 115, 53, 42, (112,151,0): 113, 53, 43, (112,152,0): 109, 49, 39, (112,153,0): 114, 54, 44, (112,154,0): 110, 52, 41, (112,155,0): 109, 51, 40, (112,156,0): 111, 54, 43, (112,157,0): 109, 52, 41, (112,158,0): 113, 56, 45, (112,159,0): 127, 73, 61, (112,160,0): 133, 83, 72, (112,161,0): 133, 83, 74, (112,162,0): 134, 82, 71, (112,163,0): 136, 82, 72, (112,164,0): 139, 80, 72, (112,165,0): 144, 81, 74, (112,166,0): 148, 81, 75, (112,167,0): 149, 82, 76, (112,168,0): 147, 84, 77, (112,169,0): 141, 84, 75, (112,170,0): 137, 91, 78, (112,171,0): 130, 99, 81, (112,172,0): 111, 95, 72, (112,173,0): 89, 85, 58, (112,174,0): 77, 86, 55, (112,175,0): 79, 95, 59, (112,176,0): 106, 126, 89, (112,177,0): 98, 120, 81, (112,178,0): 89, 111, 72, (112,179,0): 85, 106, 67, (112,180,0): 82, 103, 64, (112,181,0): 77, 98, 59, (112,182,0): 73, 89, 53, (112,183,0): 67, 82, 49, (112,184,0): 55, 68, 38, (112,185,0): 52, 62, 35, (112,186,0): 50, 58, 35, (112,187,0): 54, 59, 39, (112,188,0): 60, 62, 48, (112,189,0): 64, 66, 53, (112,190,0): 64, 64, 54, (112,191,0): 60, 62, 51, (112,192,0): 53, 56, 45, (112,193,0): 51, 57, 45, (112,194,0): 52, 58, 46, (112,195,0): 55, 58, 47, (112,196,0): 57, 61, 47, (112,197,0): 59, 63, 46, (112,198,0): 61, 66, 44, (112,199,0): 60, 69, 40, (112,200,0): 83, 95, 59, (112,201,0): 97, 114, 70, (112,202,0): 110, 134, 82, (112,203,0): 115, 145, 85, (112,204,0): 114, 149, 81, (112,205,0): 114, 154, 83, (112,206,0): 115, 157, 83, (112,207,0): 114, 157, 85, (112,208,0): 117, 158, 90, (112,209,0): 126, 167, 101, (112,210,0): 126, 167, 101, (112,211,0): 112, 152, 89, (112,212,0): 98, 138, 75, (112,213,0): 94, 134, 71, (112,214,0): 94, 134, 72, (112,215,0): 94, 132, 71, (112,216,0): 96, 134, 73, (112,217,0): 98, 136, 75, (112,218,0): 100, 138, 77, (112,219,0): 102, 141, 78, (112,220,0): 101, 140, 77, (112,221,0): 99, 138, 75, (112,222,0): 96, 135, 72, (112,223,0): 94, 132, 71, (112,224,0): 95, 130, 76, (112,225,0): 84, 118, 68, (112,226,0): 75, 109, 59, (113,0,0): 105, 96, 81, (113,1,0): 105, 96, 81, (113,2,0): 105, 96, 81, (113,3,0): 106, 97, 82, (113,4,0): 106, 97, 82, (113,5,0): 107, 98, 83, (113,6,0): 107, 98, 83, (113,7,0): 107, 98, 83, (113,8,0): 106, 97, 82, (113,9,0): 106, 97, 82, (113,10,0): 106, 97, 82, (113,11,0): 106, 97, 82, (113,12,0): 106, 97, 82, (113,13,0): 106, 97, 82, (113,14,0): 106, 97, 82, (113,15,0): 106, 97, 82, (113,16,0): 107, 98, 83, (113,17,0): 107, 98, 83, (113,18,0): 107, 98, 83, (113,19,0): 107, 98, 83, (113,20,0): 107, 98, 83, (113,21,0): 107, 98, 83, (113,22,0): 107, 98, 83, (113,23,0): 107, 98, 83, (113,24,0): 108, 99, 84, (113,25,0): 108, 99, 84, (113,26,0): 108, 99, 84, (113,27,0): 108, 99, 84, (113,28,0): 108, 99, 84, (113,29,0): 108, 99, 84, (113,30,0): 108, 99, 84, (113,31,0): 110, 98, 84, (113,32,0): 114, 98, 83, (113,33,0): 113, 97, 82, (113,34,0): 114, 98, 85, (113,35,0): 113, 99, 86, (113,36,0): 114, 102, 90, (113,37,0): 111, 103, 90, (113,38,0): 109, 101, 88, (113,39,0): 106, 100, 86, (113,40,0): 103, 99, 87, (113,41,0): 107, 104, 89, (113,42,0): 111, 105, 89, (113,43,0): 108, 103, 84, (113,44,0): 104, 99, 79, (113,45,0): 99, 94, 72, (113,46,0): 91, 85, 61, (113,47,0): 82, 76, 52, (113,48,0): 80, 74, 48, (113,49,0): 72, 62, 37, (113,50,0): 81, 63, 41, (113,51,0): 107, 80, 61, (113,52,0): 127, 88, 71, (113,53,0): 132, 78, 66, (113,54,0): 136, 69, 61, (113,55,0): 147, 68, 63, (113,56,0): 177, 87, 86, (113,57,0): 184, 84, 84, (113,58,0): 187, 81, 81, (113,59,0): 192, 80, 79, (113,60,0): 192, 78, 77, (113,61,0): 193, 77, 77, (113,62,0): 194, 76, 74, (113,63,0): 194, 76, 74, (113,64,0): 205, 85, 84, (113,65,0): 197, 73, 71, (113,66,0): 192, 62, 62, (113,67,0): 195, 61, 58, (113,68,0): 205, 67, 64, (113,69,0): 209, 70, 65, (113,70,0): 205, 66, 59, (113,71,0): 199, 62, 52, (113,72,0): 202, 68, 57, (113,73,0): 202, 68, 57, (113,74,0): 204, 70, 61, (113,75,0): 208, 69, 62, (113,76,0): 214, 69, 66, (113,77,0): 219, 66, 68, (113,78,0): 223, 64, 69, (113,79,0): 224, 63, 69, (113,80,0): 223, 67, 70, (113,81,0): 223, 67, 68, (113,82,0): 223, 67, 68, (113,83,0): 223, 69, 69, (113,84,0): 224, 69, 67, (113,85,0): 224, 70, 68, (113,86,0): 225, 70, 68, (113,87,0): 225, 70, 68, (113,88,0): 224, 69, 65, (113,89,0): 225, 67, 64, (113,90,0): 224, 66, 63, (113,91,0): 224, 65, 62, (113,92,0): 226, 64, 61, (113,93,0): 226, 64, 61, (113,94,0): 226, 64, 61, (113,95,0): 224, 66, 63, (113,96,0): 213, 68, 63, (113,97,0): 200, 67, 60, (113,98,0): 186, 62, 54, (113,99,0): 172, 58, 48, (113,100,0): 160, 57, 48, (113,101,0): 148, 58, 47, (113,102,0): 138, 60, 48, (113,103,0): 130, 60, 48, (113,104,0): 128, 65, 50, (113,105,0): 126, 64, 51, (113,106,0): 126, 62, 52, (113,107,0): 127, 60, 51, (113,108,0): 131, 58, 51, (113,109,0): 134, 57, 49, (113,110,0): 136, 56, 49, (113,111,0): 137, 57, 48, (113,112,0): 135, 59, 46, (113,113,0): 133, 60, 45, (113,114,0): 132, 59, 44, (113,115,0): 132, 59, 44, (113,116,0): 131, 59, 45, (113,117,0): 130, 58, 44, (113,118,0): 130, 58, 44, (113,119,0): 130, 58, 44, (113,120,0): 127, 57, 45, (113,121,0): 127, 57, 45, (113,122,0): 127, 57, 45, (113,123,0): 127, 57, 45, (113,124,0): 126, 58, 47, (113,125,0): 126, 58, 47, (113,126,0): 126, 58, 47, (113,127,0): 126, 58, 47, (113,128,0): 125, 57, 48, (113,129,0): 125, 57, 48, (113,130,0): 125, 57, 48, (113,131,0): 125, 57, 48, (113,132,0): 125, 57, 48, (113,133,0): 125, 57, 48, (113,134,0): 124, 57, 48, (113,135,0): 124, 57, 48, (113,136,0): 124, 57, 48, (113,137,0): 122, 58, 48, (113,138,0): 122, 58, 48, (113,139,0): 121, 57, 47, (113,140,0): 121, 57, 47, (113,141,0): 121, 57, 47, (113,142,0): 119, 57, 46, (113,143,0): 119, 57, 46, (113,144,0): 119, 56, 47, (113,145,0): 119, 56, 47, (113,146,0): 116, 56, 46, (113,147,0): 115, 55, 45, (113,148,0): 114, 54, 44, (113,149,0): 114, 54, 44, (113,150,0): 112, 54, 43, (113,151,0): 112, 54, 43, (113,152,0): 107, 49, 38, (113,153,0): 113, 55, 44, (113,154,0): 109, 52, 41, (113,155,0): 108, 51, 40, (113,156,0): 111, 54, 43, (113,157,0): 108, 51, 40, (113,158,0): 112, 55, 44, (113,159,0): 126, 72, 62, (113,160,0): 132, 82, 73, (113,161,0): 133, 83, 76, (113,162,0): 136, 81, 74, (113,163,0): 139, 80, 74, (113,164,0): 144, 81, 76, (113,165,0): 148, 80, 77, (113,166,0): 149, 81, 78, (113,167,0): 148, 83, 79, (113,168,0): 138, 79, 71, (113,169,0): 133, 83, 72, (113,170,0): 128, 91, 75, (113,171,0): 123, 101, 80, (113,172,0): 115, 105, 80, (113,173,0): 104, 107, 76, (113,174,0): 102, 113, 81, (113,175,0): 103, 120, 84, (113,176,0): 94, 116, 77, (113,177,0): 88, 110, 71, (113,178,0): 80, 102, 63, (113,179,0): 76, 97, 58, (113,180,0): 75, 95, 58, (113,181,0): 75, 92, 58, (113,182,0): 71, 86, 55, (113,183,0): 67, 80, 52, (113,184,0): 60, 70, 45, (113,185,0): 56, 64, 41, (113,186,0): 54, 59, 39, (113,187,0): 55, 58, 41, (113,188,0): 60, 61, 47, (113,189,0): 63, 64, 50, (113,190,0): 62, 62, 50, (113,191,0): 59, 61, 48, (113,192,0): 52, 58, 48, (113,193,0): 51, 59, 48, (113,194,0): 53, 59, 49, (113,195,0): 54, 60, 48, (113,196,0): 58, 60, 47, (113,197,0): 60, 63, 46, (113,198,0): 62, 65, 44, (113,199,0): 62, 68, 42, (113,200,0): 81, 91, 57, (113,201,0): 94, 109, 68, (113,202,0): 107, 129, 82, (113,203,0): 112, 140, 82, (113,204,0): 112, 147, 83, (113,205,0): 113, 153, 82, (113,206,0): 115, 157, 83, (113,207,0): 115, 158, 86, (113,208,0): 120, 159, 94, (113,209,0): 124, 162, 101, (113,210,0): 120, 158, 97, (113,211,0): 107, 145, 84, (113,212,0): 96, 134, 73, (113,213,0): 93, 131, 70, (113,214,0): 93, 131, 70, (113,215,0): 92, 130, 69, (113,216,0): 96, 134, 73, (113,217,0): 97, 135, 74, (113,218,0): 99, 137, 76, (113,219,0): 101, 139, 78, (113,220,0): 100, 138, 77, (113,221,0): 98, 136, 75, (113,222,0): 96, 134, 73, (113,223,0): 94, 132, 73, (113,224,0): 93, 127, 76, (113,225,0): 82, 116, 66, (113,226,0): 73, 107, 57, (114,0,0): 105, 96, 81, (114,1,0): 105, 96, 81, (114,2,0): 105, 96, 81, (114,3,0): 106, 97, 82, (114,4,0): 106, 97, 82, (114,5,0): 107, 98, 83, (114,6,0): 107, 98, 83, (114,7,0): 107, 98, 83, (114,8,0): 106, 97, 82, (114,9,0): 106, 97, 82, (114,10,0): 106, 97, 82, (114,11,0): 106, 97, 82, (114,12,0): 106, 97, 82, (114,13,0): 106, 97, 82, (114,14,0): 106, 97, 82, (114,15,0): 106, 97, 82, (114,16,0): 107, 98, 83, (114,17,0): 107, 98, 83, (114,18,0): 107, 98, 83, (114,19,0): 107, 98, 83, (114,20,0): 107, 98, 83, (114,21,0): 107, 98, 83, (114,22,0): 107, 98, 83, (114,23,0): 107, 98, 83, (114,24,0): 108, 99, 84, (114,25,0): 108, 99, 84, (114,26,0): 108, 99, 84, (114,27,0): 108, 99, 84, (114,28,0): 108, 99, 84, (114,29,0): 108, 99, 84, (114,30,0): 108, 99, 84, (114,31,0): 110, 98, 84, (114,32,0): 113, 100, 84, (114,33,0): 111, 95, 80, (114,34,0): 109, 93, 80, (114,35,0): 109, 95, 82, (114,36,0): 113, 101, 89, (114,37,0): 111, 103, 92, (114,38,0): 108, 100, 89, (114,39,0): 104, 98, 86, (114,40,0): 102, 98, 87, (114,41,0): 112, 108, 96, (114,42,0): 123, 120, 105, (114,43,0): 126, 123, 106, (114,44,0): 127, 121, 105, (114,45,0): 122, 117, 98, (114,46,0): 112, 105, 86, (114,47,0): 101, 96, 74, (114,48,0): 84, 84, 60, (114,49,0): 70, 70, 46, (114,50,0): 67, 62, 40, (114,51,0): 77, 66, 46, (114,52,0): 83, 64, 47, (114,53,0): 85, 56, 40, (114,54,0): 93, 55, 42, (114,55,0): 108, 61, 51, (114,56,0): 110, 55, 48, (114,57,0): 117, 57, 49, (114,58,0): 126, 59, 53, (114,59,0): 135, 64, 58, (114,60,0): 146, 73, 66, (114,61,0): 155, 80, 74, (114,62,0): 165, 88, 80, (114,63,0): 171, 91, 82, (114,64,0): 185, 94, 89, (114,65,0): 183, 84, 78, (114,66,0): 181, 72, 69, (114,67,0): 186, 67, 63, (114,68,0): 198, 68, 66, (114,69,0): 206, 71, 67, (114,70,0): 210, 68, 64, (114,71,0): 207, 64, 58, (114,72,0): 208, 65, 59, (114,73,0): 209, 66, 60, (114,74,0): 211, 68, 62, (114,75,0): 213, 70, 64, (114,76,0): 215, 70, 67, (114,77,0): 219, 69, 70, (114,78,0): 222, 68, 70, (114,79,0): 222, 68, 70, (114,80,0): 222, 68, 68, (114,81,0): 222, 68, 68, (114,82,0): 222, 68, 68, (114,83,0): 221, 69, 68, (114,84,0): 223, 69, 69, (114,85,0): 222, 70, 69, (114,86,0): 223, 69, 67, (114,87,0): 223, 69, 67, (114,88,0): 222, 68, 66, (114,89,0): 222, 68, 66, (114,90,0): 221, 68, 63, (114,91,0): 220, 67, 62, (114,92,0): 221, 66, 61, (114,93,0): 221, 66, 61, (114,94,0): 221, 66, 61, (114,95,0): 220, 67, 62, (114,96,0): 214, 69, 64, (114,97,0): 206, 69, 63, (114,98,0): 195, 66, 60, (114,99,0): 179, 62, 53, (114,100,0): 162, 58, 49, (114,101,0): 148, 56, 45, (114,102,0): 136, 57, 44, (114,103,0): 131, 59, 45, (114,104,0): 130, 64, 50, (114,105,0): 127, 64, 49, (114,106,0): 126, 62, 50, (114,107,0): 127, 61, 49, (114,108,0): 131, 58, 49, (114,109,0): 134, 57, 49, (114,110,0): 135, 56, 49, (114,111,0): 136, 58, 48, (114,112,0): 135, 59, 46, (114,113,0): 132, 59, 44, (114,114,0): 132, 59, 44, (114,115,0): 132, 59, 44, (114,116,0): 130, 58, 44, (114,117,0): 130, 58, 44, (114,118,0): 128, 58, 46, (114,119,0): 128, 58, 46, (114,120,0): 127, 57, 45, (114,121,0): 127, 57, 45, (114,122,0): 126, 58, 47, (114,123,0): 126, 58, 47, (114,124,0): 126, 58, 47, (114,125,0): 126, 58, 47, (114,126,0): 126, 58, 47, (114,127,0): 126, 58, 47, (114,128,0): 125, 57, 48, (114,129,0): 125, 57, 48, (114,130,0): 125, 57, 48, (114,131,0): 125, 57, 48, (114,132,0): 124, 57, 48, (114,133,0): 123, 56, 47, (114,134,0): 123, 56, 47, (114,135,0): 123, 56, 47, (114,136,0): 123, 59, 49, (114,137,0): 123, 59, 49, (114,138,0): 122, 58, 48, (114,139,0): 121, 59, 48, (114,140,0): 120, 58, 47, (114,141,0): 120, 58, 47, (114,142,0): 120, 58, 47, (114,143,0): 120, 58, 47, (114,144,0): 116, 56, 46, (114,145,0): 116, 56, 46, (114,146,0): 115, 55, 45, (114,147,0): 115, 55, 45, (114,148,0): 114, 54, 44, (114,149,0): 113, 53, 43, (114,150,0): 111, 53, 42, (114,151,0): 111, 53, 42, (114,152,0): 106, 49, 38, (114,153,0): 111, 54, 43, (114,154,0): 109, 52, 41, (114,155,0): 107, 50, 39, (114,156,0): 108, 54, 42, (114,157,0): 105, 51, 39, (114,158,0): 109, 55, 43, (114,159,0): 125, 71, 61, (114,160,0): 135, 80, 73, (114,161,0): 135, 80, 73, (114,162,0): 139, 80, 74, (114,163,0): 142, 81, 76, (114,164,0): 145, 82, 77, (114,165,0): 146, 83, 78, (114,166,0): 148, 85, 80, (114,167,0): 145, 86, 80, (114,168,0): 140, 87, 79, (114,169,0): 135, 91, 80, (114,170,0): 126, 94, 79, (114,171,0): 116, 98, 78, (114,172,0): 111, 105, 81, (114,173,0): 111, 114, 85, (114,174,0): 108, 119, 89, (114,175,0): 102, 119, 85, (114,176,0): 81, 101, 66, (114,177,0): 75, 95, 58, (114,178,0): 69, 89, 54, (114,179,0): 68, 85, 51, (114,180,0): 69, 86, 54, (114,181,0): 71, 86, 57, (114,182,0): 71, 84, 56, (114,183,0): 69, 82, 56, (114,184,0): 63, 73, 48, (114,185,0): 60, 68, 45, (114,186,0): 57, 62, 42, (114,187,0): 55, 59, 42, (114,188,0): 58, 60, 46, (114,189,0): 60, 62, 48, (114,190,0): 59, 61, 47, (114,191,0): 57, 59, 46, (114,192,0): 54, 60, 50, (114,193,0): 53, 61, 50, (114,194,0): 54, 60, 50, (114,195,0): 54, 60, 48, (114,196,0): 58, 60, 47, (114,197,0): 60, 62, 48, (114,198,0): 61, 64, 45, (114,199,0): 61, 67, 41, (114,200,0): 77, 87, 53, (114,201,0): 90, 105, 64, (114,202,0): 102, 124, 77, (114,203,0): 108, 136, 78, (114,204,0): 110, 145, 81, (114,205,0): 113, 153, 82, (114,206,0): 117, 159, 85, (114,207,0): 116, 159, 87, (114,208,0): 122, 161, 96, (114,209,0): 119, 157, 96, (114,210,0): 110, 148, 87, (114,211,0): 99, 137, 76, (114,212,0): 92, 130, 69, (114,213,0): 92, 130, 69, (114,214,0): 92, 130, 69, (114,215,0): 90, 128, 67, (114,216,0): 95, 133, 72, (114,217,0): 97, 135, 74, (114,218,0): 98, 136, 75, (114,219,0): 100, 138, 77, (114,220,0): 99, 137, 76, (114,221,0): 97, 135, 74, (114,222,0): 95, 133, 72, (114,223,0): 93, 131, 72, (114,224,0): 91, 125, 74, (114,225,0): 80, 113, 66, (114,226,0): 70, 103, 56, (115,0,0): 105, 96, 81, (115,1,0): 105, 96, 81, (115,2,0): 105, 96, 81, (115,3,0): 106, 97, 82, (115,4,0): 106, 97, 82, (115,5,0): 107, 98, 83, (115,6,0): 107, 98, 83, (115,7,0): 107, 98, 83, (115,8,0): 106, 97, 82, (115,9,0): 106, 97, 82, (115,10,0): 106, 97, 82, (115,11,0): 106, 97, 82, (115,12,0): 106, 97, 82, (115,13,0): 106, 97, 82, (115,14,0): 106, 97, 82, (115,15,0): 106, 97, 82, (115,16,0): 107, 98, 83, (115,17,0): 107, 98, 83, (115,18,0): 107, 98, 83, (115,19,0): 107, 98, 83, (115,20,0): 107, 98, 83, (115,21,0): 107, 98, 83, (115,22,0): 107, 98, 83, (115,23,0): 107, 98, 83, (115,24,0): 108, 99, 84, (115,25,0): 108, 99, 84, (115,26,0): 108, 99, 84, (115,27,0): 108, 99, 84, (115,28,0): 108, 99, 84, (115,29,0): 108, 99, 84, (115,30,0): 108, 99, 84, (115,31,0): 110, 98, 84, (115,32,0): 114, 100, 87, (115,33,0): 111, 97, 84, (115,34,0): 109, 95, 82, (115,35,0): 107, 95, 83, (115,36,0): 107, 97, 87, (115,37,0): 108, 99, 90, (115,38,0): 108, 101, 91, (115,39,0): 106, 102, 93, (115,40,0): 106, 102, 93, (115,41,0): 120, 116, 105, (115,42,0): 136, 132, 120, (115,43,0): 145, 141, 129, (115,44,0): 149, 143, 129, (115,45,0): 146, 140, 126, (115,46,0): 137, 130, 114, (115,47,0): 125, 122, 103, (115,48,0): 96, 99, 78, (115,49,0): 79, 84, 62, (115,50,0): 68, 71, 50, (115,51,0): 70, 69, 49, (115,52,0): 72, 67, 48, (115,53,0): 70, 61, 44, (115,54,0): 76, 60, 44, (115,55,0): 86, 67, 52, (115,56,0): 80, 57, 43, (115,57,0): 82, 54, 42, (115,58,0): 86, 52, 42, (115,59,0): 89, 53, 41, (115,60,0): 92, 54, 43, (115,61,0): 97, 57, 47, (115,62,0): 101, 61, 49, (115,63,0): 109, 61, 49, (115,64,0): 136, 76, 66, (115,65,0): 157, 83, 74, (115,66,0): 173, 86, 79, (115,67,0): 181, 79, 75, (115,68,0): 188, 70, 68, (115,69,0): 196, 66, 66, (115,70,0): 208, 68, 67, (115,71,0): 216, 70, 70, (115,72,0): 212, 64, 62, (115,73,0): 213, 65, 63, (115,74,0): 214, 66, 62, (115,75,0): 216, 68, 64, (115,76,0): 217, 69, 67, (115,77,0): 219, 69, 68, (115,78,0): 219, 69, 68, (115,79,0): 221, 69, 68, (115,80,0): 222, 68, 68, (115,81,0): 221, 69, 68, (115,82,0): 221, 69, 68, (115,83,0): 221, 69, 68, (115,84,0): 221, 69, 68, (115,85,0): 221, 69, 68, (115,86,0): 221, 69, 66, (115,87,0): 220, 71, 67, (115,88,0): 219, 70, 66, (115,89,0): 218, 69, 65, (115,90,0): 217, 68, 62, (115,91,0): 217, 68, 62, (115,92,0): 218, 67, 60, (115,93,0): 218, 67, 60, (115,94,0): 219, 68, 61, (115,95,0): 217, 68, 62, (115,96,0): 214, 67, 60, (115,97,0): 211, 70, 63, (115,98,0): 201, 70, 62, (115,99,0): 186, 65, 56, (115,100,0): 167, 59, 49, (115,101,0): 152, 56, 44, (115,102,0): 140, 57, 43, (115,103,0): 133, 60, 45, (115,104,0): 131, 64, 48, (115,105,0): 127, 64, 49, (115,106,0): 126, 63, 48, (115,107,0): 127, 61, 47, (115,108,0): 131, 58, 49, (115,109,0): 132, 58, 47, (115,110,0): 135, 57, 47, (115,111,0): 136, 58, 46, (115,112,0): 132, 58, 45, (115,113,0): 132, 59, 44, (115,114,0): 132, 59, 44, (115,115,0): 131, 58, 43, (115,116,0): 130, 58, 44, (115,117,0): 130, 58, 44, (115,118,0): 127, 57, 45, (115,119,0): 127, 57, 45, (115,120,0): 127, 57, 45, (115,121,0): 127, 57, 45, (115,122,0): 126, 58, 47, (115,123,0): 126, 58, 47, (115,124,0): 126, 58, 47, (115,125,0): 126, 58, 47, (115,126,0): 126, 58, 47, (115,127,0): 126, 58, 47, (115,128,0): 125, 57, 48, (115,129,0): 124, 57, 48, (115,130,0): 125, 57, 48, (115,131,0): 123, 56, 47, (115,132,0): 123, 56, 47, (115,133,0): 123, 56, 47, (115,134,0): 123, 56, 47, (115,135,0): 120, 56, 46, (115,136,0): 123, 59, 49, (115,137,0): 121, 59, 48, (115,138,0): 121, 59, 48, (115,139,0): 121, 59, 48, (115,140,0): 120, 58, 47, (115,141,0): 120, 58, 47, (115,142,0): 120, 58, 47, (115,143,0): 118, 58, 47, (115,144,0): 115, 55, 45, (115,145,0): 115, 55, 45, (115,146,0): 115, 55, 45, (115,147,0): 114, 54, 44, (115,148,0): 113, 53, 43, (115,149,0): 111, 53, 42, (115,150,0): 111, 53, 42, (115,151,0): 109, 52, 41, (115,152,0): 106, 49, 38, (115,153,0): 111, 54, 43, (115,154,0): 108, 51, 40, (115,155,0): 104, 50, 38, (115,156,0): 107, 53, 41, (115,157,0): 104, 50, 38, (115,158,0): 108, 54, 42, (115,159,0): 124, 70, 60, (115,160,0): 138, 79, 71, (115,161,0): 140, 79, 74, (115,162,0): 141, 80, 75, (115,163,0): 143, 82, 77, (115,164,0): 144, 83, 78, (115,165,0): 145, 86, 80, (115,166,0): 144, 87, 80, (115,167,0): 140, 90, 81, (115,168,0): 137, 93, 82, (115,169,0): 133, 97, 85, (115,170,0): 121, 95, 80, (115,171,0): 105, 90, 71, (115,172,0): 100, 95, 73, (115,173,0): 100, 104, 79, (115,174,0): 92, 102, 75, (115,175,0): 78, 93, 64, (115,176,0): 69, 85, 56, (115,177,0): 65, 81, 52, (115,178,0): 61, 77, 48, (115,179,0): 60, 75, 46, (115,180,0): 63, 77, 51, (115,181,0): 67, 81, 55, (115,182,0): 70, 82, 58, (115,183,0): 71, 83, 59, (115,184,0): 66, 76, 52, (115,185,0): 62, 71, 50, (115,186,0): 58, 65, 47, (115,187,0): 57, 61, 44, (115,188,0): 57, 61, 46, (115,189,0): 57, 61, 46, (115,190,0): 56, 60, 45, (115,191,0): 55, 59, 45, (115,192,0): 55, 61, 51, (115,193,0): 54, 61, 53, (115,194,0): 54, 59, 52, (115,195,0): 54, 60, 50, (115,196,0): 58, 60, 49, (115,197,0): 59, 61, 47, (115,198,0): 60, 63, 44, (115,199,0): 60, 65, 42, (115,200,0): 74, 83, 52, (115,201,0): 86, 101, 62, (115,202,0): 98, 120, 73, (115,203,0): 106, 134, 76, (115,204,0): 110, 145, 81, (115,205,0): 115, 155, 84, (115,206,0): 119, 161, 87, (115,207,0): 120, 162, 90, (115,208,0): 123, 162, 97, (115,209,0): 114, 152, 91, (115,210,0): 101, 139, 78, (115,211,0): 92, 130, 69, (115,212,0): 90, 128, 67, (115,213,0): 92, 130, 69, (115,214,0): 92, 130, 69, (115,215,0): 90, 128, 67, (115,216,0): 95, 133, 72, (115,217,0): 96, 134, 73, (115,218,0): 97, 135, 74, (115,219,0): 98, 136, 75, (115,220,0): 97, 135, 74, (115,221,0): 96, 134, 73, (115,222,0): 94, 132, 71, (115,223,0): 93, 131, 74, (115,224,0): 90, 124, 74, (115,225,0): 78, 111, 64, (115,226,0): 69, 102, 55, (116,0,0): 104, 97, 81, (116,1,0): 104, 97, 81, (116,2,0): 104, 97, 81, (116,3,0): 105, 98, 82, (116,4,0): 105, 98, 82, (116,5,0): 106, 99, 83, (116,6,0): 106, 99, 83, (116,7,0): 106, 99, 83, (116,8,0): 105, 98, 82, (116,9,0): 105, 98, 82, (116,10,0): 105, 98, 82, (116,11,0): 105, 98, 82, (116,12,0): 105, 98, 82, (116,13,0): 105, 98, 82, (116,14,0): 105, 98, 82, (116,15,0): 105, 98, 82, (116,16,0): 107, 98, 83, (116,17,0): 107, 98, 83, (116,18,0): 107, 98, 83, (116,19,0): 107, 98, 83, (116,20,0): 107, 98, 83, (116,21,0): 107, 98, 83, (116,22,0): 107, 98, 83, (116,23,0): 107, 98, 83, (116,24,0): 108, 99, 84, (116,25,0): 108, 99, 84, (116,26,0): 108, 99, 84, (116,27,0): 108, 99, 84, (116,28,0): 108, 99, 84, (116,29,0): 108, 99, 84, (116,30,0): 108, 99, 84, (116,31,0): 108, 99, 84, (116,32,0): 114, 102, 88, (116,33,0): 116, 104, 92, (116,34,0): 115, 103, 91, (116,35,0): 109, 99, 89, (116,36,0): 106, 97, 88, (116,37,0): 108, 101, 93, (116,38,0): 115, 110, 104, (116,39,0): 122, 119, 112, (116,40,0): 129, 126, 119, (116,41,0): 144, 141, 134, (116,42,0): 160, 157, 148, (116,43,0): 168, 165, 156, (116,44,0): 171, 167, 156, (116,45,0): 168, 164, 153, (116,46,0): 163, 157, 145, (116,47,0): 153, 150, 135, (116,48,0): 122, 123, 107, (116,49,0): 99, 102, 83, (116,50,0): 79, 82, 63, (116,51,0): 71, 74, 55, (116,52,0): 69, 72, 53, (116,53,0): 66, 69, 50, (116,54,0): 66, 69, 50, (116,55,0): 69, 72, 53, (116,56,0): 75, 76, 60, (116,57,0): 74, 72, 57, (116,58,0): 71, 68, 53, (116,59,0): 68, 62, 48, (116,60,0): 65, 57, 44, (116,61,0): 65, 55, 43, (116,62,0): 64, 54, 42, (116,63,0): 70, 52, 40, (116,64,0): 85, 53, 42, (116,65,0): 113, 66, 56, (116,66,0): 142, 79, 72, (116,67,0): 160, 79, 75, (116,68,0): 175, 73, 71, (116,69,0): 191, 71, 73, (116,70,0): 204, 69, 73, (116,71,0): 211, 66, 69, (116,72,0): 213, 64, 66, (116,73,0): 215, 65, 66, (116,74,0): 216, 66, 65, (116,75,0): 217, 67, 66, (116,76,0): 218, 69, 65, (116,77,0): 218, 69, 65, (116,78,0): 218, 69, 65, (116,79,0): 218, 69, 65, (116,80,0): 221, 69, 68, (116,81,0): 221, 68, 70, (116,82,0): 221, 68, 70, (116,83,0): 219, 69, 70, (116,84,0): 219, 69, 68, (116,85,0): 219, 69, 68, (116,86,0): 219, 69, 68, (116,87,0): 217, 69, 67, (116,88,0): 218, 70, 66, (116,89,0): 217, 69, 65, (116,90,0): 214, 70, 62, (116,91,0): 213, 69, 61, (116,92,0): 213, 69, 61, (116,93,0): 213, 69, 61, (116,94,0): 213, 69, 61, (116,95,0): 214, 70, 62, (116,96,0): 212, 65, 58, (116,97,0): 211, 67, 59, (116,98,0): 206, 69, 61, (116,99,0): 193, 66, 57, (116,100,0): 174, 62, 51, (116,101,0): 158, 57, 45, (116,102,0): 145, 59, 46, (116,103,0): 138, 60, 47, (116,104,0): 132, 63, 48, (116,105,0): 129, 63, 47, (116,106,0): 128, 62, 46, (116,107,0): 128, 61, 45, (116,108,0): 129, 59, 47, (116,109,0): 132, 58, 45, (116,110,0): 134, 58, 45, (116,111,0): 135, 59, 46, (116,112,0): 132, 58, 45, (116,113,0): 131, 59, 45, (116,114,0): 130, 58, 44, (116,115,0): 130, 58, 44, (116,116,0): 130, 58, 44, (116,117,0): 129, 57, 43, (116,118,0): 127, 57, 45, (116,119,0): 127, 57, 45, (116,120,0): 126, 58, 47, (116,121,0): 126, 58, 47, (116,122,0): 126, 58, 47, (116,123,0): 126, 58, 47, (116,124,0): 125, 58, 49, (116,125,0): 125, 58, 49, (116,126,0): 125, 58, 49, (116,127,0): 125, 58, 49, (116,128,0): 124, 57, 49, (116,129,0): 122, 58, 49, (116,130,0): 124, 57, 49, (116,131,0): 121, 57, 48, (116,132,0): 121, 57, 48, (116,133,0): 120, 56, 47, (116,134,0): 120, 56, 47, (116,135,0): 118, 55, 46, (116,136,0): 121, 58, 49, (116,137,0): 121, 58, 49, (116,138,0): 120, 57, 48, (116,139,0): 118, 58, 48, (116,140,0): 118, 58, 48, (116,141,0): 117, 57, 47, (116,142,0): 117, 57, 47, (116,143,0): 116, 58, 47, (116,144,0): 114, 55, 47, (116,145,0): 113, 54, 46, (116,146,0): 113, 54, 46, (116,147,0): 112, 53, 45, (116,148,0): 111, 52, 44, (116,149,0): 110, 51, 43, (116,150,0): 110, 51, 43, (116,151,0): 109, 52, 43, (116,152,0): 106, 49, 40, (116,153,0): 109, 55, 45, (116,154,0): 106, 52, 42, (116,155,0): 104, 50, 40, (116,156,0): 106, 52, 42, (116,157,0): 102, 50, 39, (116,158,0): 106, 54, 43, (116,159,0): 125, 68, 59, (116,160,0): 141, 78, 71, (116,161,0): 143, 78, 72, (116,162,0): 144, 81, 74, (116,163,0): 144, 84, 76, (116,164,0): 144, 85, 79, (116,165,0): 142, 87, 80, (116,166,0): 138, 89, 82, (116,167,0): 131, 91, 81, (116,168,0): 123, 89, 77, (116,169,0): 118, 92, 79, (116,170,0): 107, 90, 74, (116,171,0): 93, 85, 66, (116,172,0): 89, 88, 68, (116,173,0): 89, 94, 72, (116,174,0): 79, 89, 65, (116,175,0): 63, 75, 51, (116,176,0): 58, 72, 47, (116,177,0): 55, 69, 46, (116,178,0): 52, 66, 43, (116,179,0): 53, 65, 43, (116,180,0): 56, 68, 46, (116,181,0): 61, 73, 51, (116,182,0): 67, 76, 55, (116,183,0): 69, 78, 57, (116,184,0): 66, 75, 54, (116,185,0): 63, 72, 53, (116,186,0): 60, 69, 50, (116,187,0): 58, 65, 47, (116,188,0): 56, 63, 47, (116,189,0): 55, 62, 46, (116,190,0): 53, 60, 44, (116,191,0): 52, 58, 44, (116,192,0): 53, 60, 52, (116,193,0): 53, 60, 53, (116,194,0): 54, 59, 53, (116,195,0): 54, 59, 52, (116,196,0): 57, 59, 48, (116,197,0): 58, 60, 47, (116,198,0): 59, 62, 45, (116,199,0): 59, 64, 41, (116,200,0): 71, 80, 49, (116,201,0): 82, 97, 58, (116,202,0): 96, 118, 71, (116,203,0): 105, 133, 75, (116,204,0): 111, 146, 82, (116,205,0): 117, 157, 86, (116,206,0): 121, 163, 89, (116,207,0): 121, 163, 91, (116,208,0): 120, 159, 96, (116,209,0): 110, 145, 87, (116,210,0): 96, 131, 73, (116,211,0): 90, 125, 67, (116,212,0): 91, 126, 68, (116,213,0): 94, 129, 71, (116,214,0): 94, 129, 71, (116,215,0): 93, 128, 70, (116,216,0): 96, 131, 73, (116,217,0): 97, 132, 74, (116,218,0): 98, 133, 75, (116,219,0): 98, 133, 75, (116,220,0): 97, 132, 74, (116,221,0): 96, 131, 73, (116,222,0): 95, 130, 72, (116,223,0): 94, 129, 73, (116,224,0): 87, 124, 73, (116,225,0): 76, 112, 66, (116,226,0): 66, 102, 56, (117,0,0): 104, 97, 81, (117,1,0): 104, 97, 81, (117,2,0): 104, 97, 81, (117,3,0): 105, 98, 82, (117,4,0): 105, 98, 82, (117,5,0): 106, 99, 83, (117,6,0): 106, 99, 83, (117,7,0): 106, 99, 83, (117,8,0): 105, 98, 82, (117,9,0): 105, 98, 82, (117,10,0): 105, 98, 82, (117,11,0): 105, 98, 82, (117,12,0): 105, 98, 82, (117,13,0): 105, 98, 82, (117,14,0): 105, 98, 82, (117,15,0): 105, 98, 82, (117,16,0): 107, 98, 83, (117,17,0): 107, 98, 83, (117,18,0): 107, 98, 83, (117,19,0): 107, 98, 83, (117,20,0): 107, 98, 83, (117,21,0): 107, 98, 83, (117,22,0): 107, 98, 83, (117,23,0): 107, 98, 83, (117,24,0): 108, 99, 84, (117,25,0): 108, 99, 84, (117,26,0): 108, 99, 84, (117,27,0): 108, 99, 84, (117,28,0): 108, 99, 84, (117,29,0): 108, 99, 84, (117,30,0): 108, 99, 84, (117,31,0): 108, 99, 84, (117,32,0): 107, 97, 85, (117,33,0): 110, 100, 90, (117,34,0): 112, 102, 92, (117,35,0): 108, 99, 90, (117,36,0): 107, 100, 92, (117,37,0): 114, 109, 103, (117,38,0): 132, 129, 124, (117,39,0): 145, 144, 140, (117,40,0): 167, 163, 160, (117,41,0): 181, 177, 174, (117,42,0): 196, 193, 188, (117,43,0): 201, 198, 193, (117,44,0): 201, 196, 190, (117,45,0): 197, 192, 186, (117,46,0): 192, 185, 177, (117,47,0): 185, 178, 168, (117,48,0): 164, 156, 143, (117,49,0): 136, 130, 114, (117,50,0): 102, 99, 84, (117,51,0): 80, 81, 63, (117,52,0): 70, 73, 56, (117,53,0): 62, 69, 51, (117,54,0): 59, 68, 49, (117,55,0): 58, 70, 50, (117,56,0): 56, 69, 51, (117,57,0): 56, 69, 51, (117,58,0): 56, 67, 50, (117,59,0): 58, 66, 51, (117,60,0): 60, 66, 52, (117,61,0): 64, 67, 56, (117,62,0): 67, 69, 58, (117,63,0): 71, 69, 57, (117,64,0): 64, 52, 40, (117,65,0): 83, 56, 47, (117,66,0): 104, 61, 54, (117,67,0): 129, 68, 65, (117,68,0): 163, 79, 79, (117,69,0): 192, 87, 91, (117,70,0): 204, 81, 86, (117,71,0): 202, 67, 73, (117,72,0): 211, 71, 74, (117,73,0): 214, 70, 70, (117,74,0): 216, 70, 70, (117,75,0): 218, 70, 68, (117,76,0): 219, 70, 66, (117,77,0): 219, 70, 66, (117,78,0): 220, 68, 63, (117,79,0): 220, 68, 65, (117,80,0): 221, 69, 68, (117,81,0): 221, 68, 70, (117,82,0): 219, 69, 70, (117,83,0): 219, 69, 70, (117,84,0): 218, 68, 67, (117,85,0): 218, 68, 67, (117,86,0): 218, 68, 67, (117,87,0): 217, 69, 67, (117,88,0): 217, 69, 65, (117,89,0): 215, 70, 65, (117,90,0): 214, 69, 64, (117,91,0): 212, 69, 61, (117,92,0): 211, 68, 60, (117,93,0): 210, 69, 60, (117,94,0): 211, 70, 61, (117,95,0): 212, 69, 61, (117,96,0): 212, 63, 56, (117,97,0): 213, 64, 57, (117,98,0): 208, 67, 58, (117,99,0): 198, 67, 57, (117,100,0): 182, 65, 55, (117,101,0): 165, 61, 48, (117,102,0): 150, 61, 47, (117,103,0): 140, 61, 46, (117,104,0): 134, 62, 47, (117,105,0): 130, 63, 47, (117,106,0): 129, 62, 46, (117,107,0): 128, 61, 45, (117,108,0): 129, 60, 45, (117,109,0): 131, 59, 45, (117,110,0): 132, 58, 45, (117,111,0): 133, 59, 46, (117,112,0): 130, 58, 44, (117,113,0): 130, 58, 44, (117,114,0): 130, 58, 44, (117,115,0): 130, 58, 44, (117,116,0): 129, 57, 43, (117,117,0): 127, 58, 43, (117,118,0): 127, 57, 45, (117,119,0): 126, 56, 44, (117,120,0): 126, 58, 47, (117,121,0): 126, 58, 47, (117,122,0): 126, 58, 47, (117,123,0): 126, 58, 47, (117,124,0): 125, 58, 49, (117,125,0): 125, 58, 49, (117,126,0): 125, 58, 49, (117,127,0): 125, 58, 49, (117,128,0): 122, 58, 49, (117,129,0): 122, 58, 49, (117,130,0): 121, 57, 48, (117,131,0): 121, 57, 48, (117,132,0): 120, 56, 47, (117,133,0): 118, 55, 46, (117,134,0): 118, 55, 46, (117,135,0): 116, 56, 46, (117,136,0): 119, 56, 47, (117,137,0): 117, 57, 47, (117,138,0): 117, 57, 47, (117,139,0): 115, 57, 46, (117,140,0): 116, 56, 46, (117,141,0): 115, 57, 46, (117,142,0): 114, 56, 45, (117,143,0): 114, 56, 45, (117,144,0): 113, 54, 46, (117,145,0): 113, 54, 46, (117,146,0): 112, 53, 45, (117,147,0): 111, 52, 44, (117,148,0): 110, 51, 43, (117,149,0): 109, 52, 43, (117,150,0): 108, 51, 42, (117,151,0): 106, 52, 42, (117,152,0): 104, 50, 40, (117,153,0): 108, 54, 44, (117,154,0): 105, 51, 41, (117,155,0): 102, 50, 39, (117,156,0): 104, 52, 41, (117,157,0): 101, 49, 38, (117,158,0): 105, 53, 42, (117,159,0): 123, 66, 57, (117,160,0): 142, 77, 71, (117,161,0): 146, 77, 72, (117,162,0): 145, 80, 74, (117,163,0): 143, 84, 76, (117,164,0): 141, 86, 79, (117,165,0): 135, 88, 78, (117,166,0): 129, 89, 79, (117,167,0): 124, 92, 81, (117,168,0): 115, 92, 78, (117,169,0): 107, 91, 76, (117,170,0): 96, 87, 70, (117,171,0): 86, 83, 66, (117,172,0): 80, 83, 66, (117,173,0): 74, 81, 63, (117,174,0): 64, 73, 54, (117,175,0): 52, 64, 44, (117,176,0): 51, 60, 43, (117,177,0): 50, 59, 42, (117,178,0): 48, 57, 40, (117,179,0): 48, 57, 40, (117,180,0): 50, 59, 42, (117,181,0): 53, 62, 45, (117,182,0): 57, 66, 49, (117,183,0): 60, 69, 52, (117,184,0): 63, 72, 55, (117,185,0): 63, 72, 53, (117,186,0): 62, 71, 52, (117,187,0): 58, 70, 50, (117,188,0): 58, 67, 50, (117,189,0): 53, 64, 47, (117,190,0): 51, 62, 45, (117,191,0): 49, 60, 44, (117,192,0): 51, 58, 51, (117,193,0): 51, 57, 53, (117,194,0): 52, 57, 53, (117,195,0): 52, 57, 50, (117,196,0): 56, 57, 49, (117,197,0): 57, 59, 46, (117,198,0): 59, 62, 45, (117,199,0): 59, 64, 42, (117,200,0): 67, 76, 47, (117,201,0): 79, 94, 55, (117,202,0): 93, 115, 68, (117,203,0): 105, 132, 77, (117,204,0): 112, 147, 83, (117,205,0): 119, 159, 89, (117,206,0): 121, 163, 89, (117,207,0): 119, 161, 89, (117,208,0): 113, 152, 89, (117,209,0): 102, 137, 79, (117,210,0): 90, 125, 67, (117,211,0): 88, 123, 65, (117,212,0): 92, 127, 69, (117,213,0): 93, 128, 70, (117,214,0): 93, 128, 70, (117,215,0): 94, 129, 71, (117,216,0): 96, 131, 73, (117,217,0): 96, 131, 73, (117,218,0): 96, 131, 73, (117,219,0): 96, 131, 73, (117,220,0): 96, 131, 73, (117,221,0): 95, 130, 72, (117,222,0): 94, 129, 71, (117,223,0): 93, 128, 74, (117,224,0): 85, 121, 73, (117,225,0): 74, 110, 64, (117,226,0): 65, 101, 57, (118,0,0): 104, 97, 81, (118,1,0): 104, 97, 81, (118,2,0): 104, 97, 81, (118,3,0): 105, 98, 82, (118,4,0): 105, 98, 82, (118,5,0): 106, 99, 83, (118,6,0): 106, 99, 83, (118,7,0): 106, 99, 83, (118,8,0): 105, 98, 82, (118,9,0): 105, 98, 82, (118,10,0): 105, 98, 82, (118,11,0): 105, 98, 82, (118,12,0): 105, 98, 82, (118,13,0): 105, 98, 82, (118,14,0): 105, 98, 82, (118,15,0): 105, 98, 82, (118,16,0): 107, 98, 83, (118,17,0): 107, 98, 83, (118,18,0): 107, 98, 83, (118,19,0): 107, 98, 83, (118,20,0): 107, 98, 83, (118,21,0): 107, 98, 83, (118,22,0): 107, 98, 83, (118,23,0): 107, 98, 83, (118,24,0): 108, 99, 84, (118,25,0): 108, 99, 84, (118,26,0): 108, 99, 84, (118,27,0): 108, 99, 84, (118,28,0): 108, 99, 84, (118,29,0): 108, 99, 84, (118,30,0): 108, 99, 84, (118,31,0): 108, 98, 86, (118,32,0): 106, 96, 86, (118,33,0): 106, 97, 88, (118,34,0): 107, 100, 90, (118,35,0): 107, 103, 94, (118,36,0): 117, 112, 106, (118,37,0): 136, 133, 128, (118,38,0): 159, 158, 154, (118,39,0): 176, 176, 174, (118,40,0): 195, 194, 192, (118,41,0): 211, 210, 208, (118,42,0): 226, 225, 223, (118,43,0): 231, 230, 228, (118,44,0): 231, 227, 224, (118,45,0): 227, 222, 218, (118,46,0): 222, 214, 211, (118,47,0): 217, 206, 200, (118,48,0): 206, 188, 178, (118,49,0): 184, 165, 151, (118,50,0): 151, 135, 122, (118,51,0): 121, 109, 93, (118,52,0): 95, 89, 73, (118,53,0): 75, 76, 58, (118,54,0): 64, 69, 49, (118,55,0): 59, 68, 47, (118,56,0): 62, 74, 54, (118,57,0): 61, 72, 55, (118,58,0): 61, 70, 53, (118,59,0): 59, 67, 52, (118,60,0): 59, 62, 53, (118,61,0): 58, 59, 51, (118,62,0): 57, 56, 51, (118,63,0): 58, 55, 48, (118,64,0): 63, 60, 51, (118,65,0): 69, 59, 50, (118,66,0): 81, 53, 49, (118,67,0): 99, 55, 52, (118,68,0): 137, 71, 72, (118,69,0): 177, 92, 95, (118,70,0): 199, 96, 100, (118,71,0): 202, 87, 90, (118,72,0): 205, 81, 83, (118,73,0): 209, 79, 79, (118,74,0): 213, 78, 75, (118,75,0): 216, 77, 74, (118,76,0): 219, 74, 71, (118,77,0): 221, 72, 68, (118,78,0): 224, 69, 65, (118,79,0): 223, 68, 66, (118,80,0): 222, 68, 68, (118,81,0): 221, 68, 70, (118,82,0): 221, 68, 70, (118,83,0): 220, 67, 69, (118,84,0): 220, 67, 69, (118,85,0): 219, 66, 68, (118,86,0): 219, 67, 66, (118,87,0): 217, 67, 66, (118,88,0): 218, 68, 67, (118,89,0): 216, 68, 64, (118,90,0): 213, 68, 63, (118,91,0): 212, 69, 63, (118,92,0): 211, 68, 60, (118,93,0): 210, 69, 60, (118,94,0): 211, 70, 61, (118,95,0): 212, 69, 61, (118,96,0): 217, 64, 58, (118,97,0): 217, 64, 58, (118,98,0): 209, 66, 58, (118,99,0): 200, 67, 58, (118,100,0): 188, 67, 58, (118,101,0): 172, 64, 52, (118,102,0): 153, 59, 47, (118,103,0): 140, 57, 43, (118,104,0): 137, 61, 47, (118,105,0): 131, 62, 46, (118,106,0): 129, 62, 45, (118,107,0): 128, 61, 44, (118,108,0): 129, 60, 44, (118,109,0): 131, 59, 44, (118,110,0): 131, 59, 44, (118,111,0): 132, 60, 45, (118,112,0): 130, 58, 44, (118,113,0): 130, 58, 44, (118,114,0): 130, 58, 44, (118,115,0): 129, 57, 43, (118,116,0): 127, 57, 45, (118,117,0): 127, 57, 45, (118,118,0): 126, 56, 46, (118,119,0): 125, 57, 46, (118,120,0): 126, 58, 47, (118,121,0): 126, 58, 47, (118,122,0): 125, 58, 49, (118,123,0): 125, 58, 49, (118,124,0): 125, 58, 49, (118,125,0): 125, 58, 49, (118,126,0): 125, 58, 49, (118,127,0): 125, 58, 49, (118,128,0): 122, 58, 49, (118,129,0): 121, 58, 49, (118,130,0): 120, 57, 48, (118,131,0): 120, 57, 48, (118,132,0): 119, 56, 47, (118,133,0): 116, 56, 46, (118,134,0): 115, 55, 45, (118,135,0): 114, 56, 45, (118,136,0): 116, 56, 46, (118,137,0): 115, 57, 46, (118,138,0): 114, 56, 45, (118,139,0): 113, 56, 45, (118,140,0): 114, 56, 45, (118,141,0): 112, 55, 44, (118,142,0): 112, 55, 44, (118,143,0): 112, 55, 44, (118,144,0): 111, 54, 45, (118,145,0): 111, 54, 45, (118,146,0): 110, 53, 44, (118,147,0): 110, 53, 44, (118,148,0): 109, 52, 43, (118,149,0): 108, 51, 42, (118,150,0): 107, 50, 41, (118,151,0): 105, 51, 41, (118,152,0): 103, 49, 39, (118,153,0): 107, 55, 44, (118,154,0): 104, 52, 41, (118,155,0): 101, 49, 38, (118,156,0): 104, 52, 41, (118,157,0): 98, 48, 37, (118,158,0): 102, 52, 41, (118,159,0): 122, 65, 56, (118,160,0): 144, 77, 71, (118,161,0): 146, 77, 72, (118,162,0): 145, 80, 74, (118,163,0): 142, 85, 76, (118,164,0): 136, 88, 78, (118,165,0): 129, 89, 79, (118,166,0): 120, 90, 79, (118,167,0): 114, 92, 78, (118,168,0): 107, 94, 78, (118,169,0): 94, 87, 71, (118,170,0): 82, 80, 65, (118,171,0): 75, 78, 61, (118,172,0): 67, 74, 58, (118,173,0): 57, 66, 49, (118,174,0): 50, 58, 43, (118,175,0): 48, 56, 41, (118,176,0): 49, 55, 43, (118,177,0): 49, 55, 45, (118,178,0): 48, 54, 44, (118,179,0): 47, 53, 43, (118,180,0): 47, 53, 41, (118,181,0): 48, 56, 43, (118,182,0): 50, 58, 43, (118,183,0): 52, 60, 45, (118,184,0): 57, 68, 52, (118,185,0): 59, 70, 53, (118,186,0): 61, 72, 55, (118,187,0): 60, 73, 55, (118,188,0): 59, 70, 53, (118,189,0): 54, 67, 49, (118,190,0): 51, 64, 44, (118,191,0): 49, 62, 45, (118,192,0): 46, 56, 48, (118,193,0): 48, 54, 50, (118,194,0): 49, 54, 50, (118,195,0): 50, 55, 49, (118,196,0): 55, 56, 50, (118,197,0): 57, 59, 48, (118,198,0): 58, 60, 46, (118,199,0): 58, 63, 41, (118,200,0): 63, 72, 43, (118,201,0): 75, 89, 53, (118,202,0): 91, 113, 67, (118,203,0): 104, 131, 76, (118,204,0): 113, 147, 86, (118,205,0): 119, 158, 91, (118,206,0): 119, 161, 89, (118,207,0): 115, 156, 86, (118,208,0): 103, 141, 80, (118,209,0): 94, 129, 73, (118,210,0): 85, 120, 64, (118,211,0): 87, 122, 66, (118,212,0): 91, 126, 70, (118,213,0): 91, 126, 70, (118,214,0): 91, 126, 70, (118,215,0): 93, 128, 72, (118,216,0): 95, 130, 74, (118,217,0): 95, 130, 74, (118,218,0): 95, 130, 74, (118,219,0): 95, 130, 74, (118,220,0): 94, 129, 73, (118,221,0): 94, 129, 73, (118,222,0): 93, 128, 72, (118,223,0): 93, 128, 74, (118,224,0): 85, 118, 73, (118,225,0): 74, 107, 64, (118,226,0): 64, 96, 55, (119,0,0): 104, 97, 81, (119,1,0): 104, 97, 81, (119,2,0): 104, 97, 81, (119,3,0): 105, 98, 82, (119,4,0): 105, 98, 82, (119,5,0): 106, 99, 83, (119,6,0): 106, 99, 83, (119,7,0): 106, 99, 83, (119,8,0): 105, 98, 82, (119,9,0): 105, 98, 82, (119,10,0): 105, 98, 82, (119,11,0): 105, 98, 82, (119,12,0): 105, 98, 82, (119,13,0): 105, 98, 82, (119,14,0): 105, 98, 82, (119,15,0): 105, 98, 82, (119,16,0): 107, 98, 83, (119,17,0): 107, 98, 83, (119,18,0): 107, 98, 83, (119,19,0): 107, 98, 83, (119,20,0): 107, 98, 83, (119,21,0): 107, 98, 83, (119,22,0): 107, 98, 83, (119,23,0): 107, 98, 83, (119,24,0): 108, 99, 84, (119,25,0): 108, 99, 84, (119,26,0): 108, 99, 84, (119,27,0): 108, 99, 84, (119,28,0): 108, 99, 84, (119,29,0): 108, 99, 84, (119,30,0): 108, 99, 84, (119,31,0): 108, 98, 86, (119,32,0): 112, 103, 94, (119,33,0): 110, 103, 95, (119,34,0): 108, 103, 97, (119,35,0): 116, 113, 106, (119,36,0): 135, 132, 127, (119,37,0): 161, 160, 156, (119,38,0): 188, 188, 186, (119,39,0): 206, 208, 207, (119,40,0): 207, 207, 207, (119,41,0): 224, 224, 224, (119,42,0): 242, 242, 242, (119,43,0): 250, 248, 249, (119,44,0): 251, 247, 246, (119,45,0): 247, 243, 240, (119,46,0): 241, 236, 233, (119,47,0): 240, 226, 223, (119,48,0): 232, 208, 198, (119,49,0): 221, 193, 181, (119,50,0): 193, 171, 157, (119,51,0): 162, 145, 129, (119,52,0): 125, 117, 98, (119,53,0): 94, 92, 71, (119,54,0): 75, 77, 55, (119,55,0): 67, 72, 50, (119,56,0): 65, 73, 50, (119,57,0): 65, 73, 52, (119,58,0): 64, 71, 53, (119,59,0): 66, 68, 55, (119,60,0): 65, 65, 55, (119,61,0): 66, 61, 57, (119,62,0): 67, 57, 55, (119,63,0): 65, 57, 54, (119,64,0): 59, 58, 53, (119,65,0): 66, 61, 55, (119,66,0): 71, 53, 49, (119,67,0): 76, 45, 43, (119,68,0): 102, 54, 54, (119,69,0): 145, 81, 82, (119,70,0): 181, 102, 105, (119,71,0): 199, 109, 109, (119,72,0): 192, 92, 92, (119,73,0): 199, 90, 87, (119,74,0): 206, 87, 83, (119,75,0): 211, 84, 78, (119,76,0): 216, 78, 75, (119,77,0): 222, 74, 72, (119,78,0): 225, 70, 68, (119,79,0): 226, 68, 67, (119,80,0): 221, 68, 70, (119,81,0): 219, 69, 70, (119,82,0): 219, 69, 70, (119,83,0): 220, 67, 69, (119,84,0): 220, 67, 69, (119,85,0): 219, 66, 68, (119,86,0): 219, 67, 66, (119,87,0): 219, 67, 66, (119,88,0): 220, 68, 67, (119,89,0): 217, 67, 66, (119,90,0): 215, 67, 63, (119,91,0): 212, 67, 62, (119,92,0): 212, 67, 62, (119,93,0): 211, 68, 60, (119,94,0): 210, 69, 60, (119,95,0): 213, 69, 61, (119,96,0): 221, 66, 61, (119,97,0): 219, 65, 57, (119,98,0): 210, 66, 58, (119,99,0): 202, 68, 59, (119,100,0): 191, 69, 58, (119,101,0): 176, 65, 54, (119,102,0): 156, 58, 45, (119,103,0): 139, 53, 38, (119,104,0): 138, 60, 47, (119,105,0): 133, 61, 46, (119,106,0): 130, 61, 45, (119,107,0): 128, 61, 44, (119,108,0): 129, 60, 44, (119,109,0): 129, 60, 44, (119,110,0): 131, 60, 42, (119,111,0): 132, 60, 45, (119,112,0): 130, 58, 44, (119,113,0): 130, 58, 44, (119,114,0): 130, 58, 44, (119,115,0): 127, 58, 43, (119,116,0): 127, 57, 45, (119,117,0): 126, 56, 44, (119,118,0): 125, 57, 46, (119,119,0): 125, 57, 46, (119,120,0): 126, 58, 47, (119,121,0): 126, 58, 47, (119,122,0): 125, 58, 49, (119,123,0): 125, 58, 49, (119,124,0): 125, 58, 49, (119,125,0): 125, 58, 49, (119,126,0): 125, 58, 49, (119,127,0): 123, 59, 49, (119,128,0): 121, 58, 49, (119,129,0): 119, 59, 49, (119,130,0): 120, 57, 48, (119,131,0): 117, 57, 47, (119,132,0): 116, 56, 46, (119,133,0): 115, 57, 46, (119,134,0): 114, 56, 45, (119,135,0): 113, 55, 44, (119,136,0): 114, 56, 45, (119,137,0): 113, 56, 45, (119,138,0): 112, 55, 44, (119,139,0): 110, 56, 44, (119,140,0): 112, 55, 44, (119,141,0): 109, 55, 43, (119,142,0): 111, 54, 43, (119,143,0): 111, 54, 43, (119,144,0): 111, 54, 45, (119,145,0): 111, 54, 45, (119,146,0): 110, 53, 44, (119,147,0): 109, 52, 43, (119,148,0): 108, 51, 42, (119,149,0): 106, 52, 42, (119,150,0): 105, 51, 41, (119,151,0): 104, 52, 41, (119,152,0): 102, 50, 39, (119,153,0): 107, 55, 44, (119,154,0): 104, 52, 41, (119,155,0): 99, 49, 38, (119,156,0): 101, 51, 40, (119,157,0): 98, 48, 37, (119,158,0): 101, 51, 40, (119,159,0): 120, 66, 56, (119,160,0): 142, 77, 71, (119,161,0): 146, 79, 73, (119,162,0): 142, 82, 74, (119,163,0): 138, 85, 77, (119,164,0): 131, 88, 79, (119,165,0): 122, 90, 79, (119,166,0): 113, 91, 77, (119,167,0): 104, 92, 76, (119,168,0): 90, 84, 68, (119,169,0): 73, 74, 58, (119,170,0): 63, 67, 52, (119,171,0): 62, 68, 54, (119,172,0): 57, 65, 50, (119,173,0): 48, 56, 43, (119,174,0): 47, 55, 42, (119,175,0): 54, 60, 50, (119,176,0): 52, 55, 48, (119,177,0): 53, 56, 49, (119,178,0): 53, 55, 50, (119,179,0): 52, 55, 48, (119,180,0): 50, 53, 46, (119,181,0): 48, 54, 44, (119,182,0): 48, 56, 45, (119,183,0): 49, 57, 44, (119,184,0): 54, 65, 51, (119,185,0): 58, 69, 53, (119,186,0): 61, 74, 57, (119,187,0): 62, 75, 57, (119,188,0): 60, 73, 55, (119,189,0): 55, 70, 51, (119,190,0): 50, 65, 44, (119,191,0): 49, 62, 45, (119,192,0): 44, 54, 46, (119,193,0): 46, 52, 48, (119,194,0): 48, 53, 49, (119,195,0): 49, 54, 48, (119,196,0): 54, 55, 49, (119,197,0): 56, 58, 47, (119,198,0): 58, 60, 46, (119,199,0): 58, 63, 43, (119,200,0): 60, 69, 42, (119,201,0): 73, 87, 52, (119,202,0): 89, 111, 65, (119,203,0): 103, 130, 77, (119,204,0): 112, 146, 86, (119,205,0): 118, 157, 92, (119,206,0): 117, 158, 88, (119,207,0): 112, 153, 85, (119,208,0): 96, 134, 73, (119,209,0): 88, 123, 67, (119,210,0): 83, 118, 62, (119,211,0): 87, 122, 66, (119,212,0): 91, 126, 70, (119,213,0): 89, 124, 68, (119,214,0): 89, 124, 68, (119,215,0): 92, 127, 71, (119,216,0): 95, 130, 74, (119,217,0): 95, 130, 74, (119,218,0): 94, 129, 73, (119,219,0): 94, 129, 73, (119,220,0): 94, 129, 73, (119,221,0): 93, 128, 72, (119,222,0): 93, 128, 72, (119,223,0): 93, 127, 76, (119,224,0): 83, 116, 73, (119,225,0): 72, 104, 65, (119,226,0): 63, 93, 55, (120,0,0): 105, 99, 83, (120,1,0): 105, 99, 83, (120,2,0): 105, 99, 83, (120,3,0): 105, 99, 83, (120,4,0): 105, 99, 83, (120,5,0): 105, 99, 83, (120,6,0): 105, 99, 83, (120,7,0): 105, 99, 83, (120,8,0): 105, 99, 83, (120,9,0): 105, 99, 83, (120,10,0): 105, 99, 83, (120,11,0): 105, 99, 83, (120,12,0): 105, 99, 83, (120,13,0): 105, 99, 83, (120,14,0): 105, 99, 83, (120,15,0): 106, 99, 83, (120,16,0): 107, 98, 83, (120,17,0): 107, 98, 83, (120,18,0): 107, 98, 83, (120,19,0): 108, 99, 84, (120,20,0): 108, 99, 84, (120,21,0): 109, 100, 85, (120,22,0): 109, 100, 85, (120,23,0): 109, 100, 85, (120,24,0): 109, 100, 85, (120,25,0): 109, 100, 85, (120,26,0): 109, 100, 85, (120,27,0): 109, 100, 85, (120,28,0): 109, 100, 85, (120,29,0): 109, 100, 85, (120,30,0): 109, 100, 85, (120,31,0): 108, 100, 87, (120,32,0): 105, 98, 90, (120,33,0): 103, 100, 93, (120,34,0): 118, 115, 110, (120,35,0): 147, 146, 142, (120,36,0): 175, 175, 173, (120,37,0): 196, 198, 197, (120,38,0): 218, 220, 219, (120,39,0): 234, 238, 239, (120,40,0): 243, 244, 246, (120,41,0): 246, 247, 249, (120,42,0): 252, 252, 254, (120,43,0): 255, 255, 255, (120,44,0): 255, 255, 253, (120,45,0): 255, 251, 250, (120,46,0): 252, 247, 244, (120,47,0): 253, 242, 236, (120,48,0): 247, 225, 212, (120,49,0): 242, 216, 199, (120,50,0): 224, 202, 181, (120,51,0): 198, 182, 159, (120,52,0): 170, 160, 135, (120,53,0): 136, 132, 105, (120,54,0): 98, 98, 70, (120,55,0): 69, 72, 45, (120,56,0): 68, 72, 47, (120,57,0): 67, 71, 48, (120,58,0): 70, 69, 49, (120,59,0): 71, 68, 53, (120,60,0): 70, 60, 51, (120,61,0): 67, 54, 48, (120,62,0): 70, 52, 50, (120,63,0): 73, 57, 57, (120,64,0): 65, 60, 57, (120,65,0): 66, 61, 58, (120,66,0): 70, 56, 55, (120,67,0): 75, 54, 53, (120,68,0): 101, 69, 70, (120,69,0): 147, 105, 106, (120,70,0): 198, 147, 146, (120,71,0): 233, 172, 169, (120,72,0): 211, 140, 136, (120,73,0): 199, 119, 112, (120,74,0): 191, 96, 90, (120,75,0): 195, 86, 81, (120,76,0): 210, 82, 79, (120,77,0): 219, 77, 76, (120,78,0): 225, 71, 73, (120,79,0): 225, 69, 72, (120,80,0): 220, 70, 71, (120,81,0): 220, 74, 75, (120,82,0): 217, 68, 70, (120,83,0): 210, 60, 62, (120,84,0): 215, 62, 64, (120,85,0): 225, 72, 74, (120,86,0): 225, 71, 73, (120,87,0): 216, 62, 64, (120,88,0): 218, 64, 64, (120,89,0): 218, 64, 64, (120,90,0): 217, 65, 64, (120,91,0): 215, 66, 62, (120,92,0): 215, 66, 62, (120,93,0): 212, 64, 60, (120,94,0): 209, 64, 59, (120,95,0): 211, 64, 57, (120,96,0): 222, 67, 62, (120,97,0): 219, 65, 57, (120,98,0): 211, 64, 57, (120,99,0): 202, 65, 57, (120,100,0): 190, 66, 56, (120,101,0): 176, 64, 53, (120,102,0): 159, 58, 46, (120,103,0): 144, 56, 42, (120,104,0): 140, 61, 48, (120,105,0): 135, 62, 47, (120,106,0): 131, 62, 46, (120,107,0): 129, 62, 45, (120,108,0): 128, 61, 44, (120,109,0): 127, 60, 43, (120,110,0): 129, 61, 42, (120,111,0): 129, 60, 44, (120,112,0): 127, 58, 43, (120,113,0): 127, 57, 45, (120,114,0): 127, 57, 45, (120,115,0): 126, 56, 44, (120,116,0): 126, 56, 46, (120,117,0): 124, 56, 45, (120,118,0): 124, 56, 45, (120,119,0): 124, 56, 45, (120,120,0): 124, 57, 48, (120,121,0): 124, 57, 48, (120,122,0): 124, 57, 48, (120,123,0): 124, 57, 48, (120,124,0): 122, 58, 49, (120,125,0): 122, 58, 49, (120,126,0): 122, 58, 49, (120,127,0): 122, 58, 49, (120,128,0): 121, 61, 53, (120,129,0): 119, 60, 52, (120,130,0): 119, 59, 51, (120,131,0): 117, 58, 50, (120,132,0): 116, 57, 49, (120,133,0): 113, 56, 47, (120,134,0): 112, 55, 46, (120,135,0): 112, 55, 46, (120,136,0): 111, 54, 45, (120,137,0): 109, 55, 45, (120,138,0): 109, 55, 45, (120,139,0): 108, 56, 45, (120,140,0): 109, 55, 45, (120,141,0): 108, 56, 45, (120,142,0): 109, 55, 45, (120,143,0): 109, 55, 45, (120,144,0): 105, 50, 43, (120,145,0): 109, 54, 47, (120,146,0): 112, 57, 50, (120,147,0): 111, 56, 49, (120,148,0): 107, 52, 45, (120,149,0): 103, 50, 42, (120,150,0): 103, 50, 42, (120,151,0): 104, 51, 43, (120,152,0): 101, 48, 40, (120,153,0): 105, 55, 46, (120,154,0): 100, 50, 41, (120,155,0): 93, 45, 35, (120,156,0): 96, 48, 38, (120,157,0): 95, 47, 37, (120,158,0): 98, 50, 40, (120,159,0): 115, 62, 54, (120,160,0): 140, 79, 74, (120,161,0): 143, 80, 75, (120,162,0): 136, 81, 74, (120,163,0): 129, 82, 74, (120,164,0): 125, 89, 77, (120,165,0): 118, 95, 81, (120,166,0): 102, 89, 73, (120,167,0): 84, 78, 62, (120,168,0): 68, 69, 53, (120,169,0): 62, 69, 53, (120,170,0): 58, 67, 50, (120,171,0): 53, 64, 48, (120,172,0): 52, 60, 47, (120,173,0): 51, 59, 48, (120,174,0): 52, 58, 48, (120,175,0): 52, 58, 48, (120,176,0): 54, 56, 51, (120,177,0): 55, 56, 51, (120,178,0): 54, 54, 52, (120,179,0): 52, 54, 49, (120,180,0): 51, 53, 48, (120,181,0): 49, 54, 47, (120,182,0): 47, 54, 46, (120,183,0): 46, 54, 43, (120,184,0): 46, 57, 43, (120,185,0): 50, 61, 45, (120,186,0): 54, 67, 50, (120,187,0): 58, 71, 54, (120,188,0): 58, 73, 54, (120,189,0): 56, 71, 52, (120,190,0): 52, 67, 46, (120,191,0): 49, 63, 46, (120,192,0): 42, 52, 43, (120,193,0): 44, 50, 46, (120,194,0): 45, 50, 46, (120,195,0): 46, 51, 45, (120,196,0): 52, 53, 47, (120,197,0): 55, 57, 46, (120,198,0): 58, 60, 47, (120,199,0): 58, 63, 43, (120,200,0): 54, 62, 38, (120,201,0): 68, 82, 49, (120,202,0): 87, 108, 67, (120,203,0): 104, 130, 82, (120,204,0): 115, 148, 93, (120,205,0): 119, 158, 95, (120,206,0): 114, 155, 87, (120,207,0): 107, 148, 82, (120,208,0): 91, 126, 68, (120,209,0): 88, 121, 68, (120,210,0): 84, 117, 64, (120,211,0): 84, 117, 64, (120,212,0): 87, 120, 67, (120,213,0): 90, 123, 70, (120,214,0): 91, 124, 71, (120,215,0): 90, 123, 70, (120,216,0): 94, 127, 74, (120,217,0): 98, 131, 78, (120,218,0): 98, 131, 78, (120,219,0): 94, 127, 74, (120,220,0): 92, 125, 72, (120,221,0): 95, 128, 75, (120,222,0): 96, 129, 76, (120,223,0): 94, 126, 77, (120,224,0): 83, 113, 75, (120,225,0): 70, 100, 66, (120,226,0): 61, 88, 55, (121,0,0): 105, 99, 83, (121,1,0): 105, 99, 83, (121,2,0): 105, 99, 83, (121,3,0): 105, 99, 83, (121,4,0): 105, 99, 83, (121,5,0): 105, 99, 83, (121,6,0): 105, 99, 83, (121,7,0): 105, 99, 83, (121,8,0): 105, 99, 83, (121,9,0): 105, 99, 83, (121,10,0): 105, 99, 83, (121,11,0): 105, 99, 83, (121,12,0): 105, 99, 83, (121,13,0): 105, 99, 83, (121,14,0): 105, 99, 83, (121,15,0): 105, 99, 83, (121,16,0): 107, 98, 83, (121,17,0): 107, 98, 83, (121,18,0): 107, 98, 83, (121,19,0): 108, 99, 84, (121,20,0): 108, 99, 84, (121,21,0): 109, 100, 85, (121,22,0): 109, 100, 85, (121,23,0): 109, 100, 85, (121,24,0): 109, 100, 85, (121,25,0): 109, 100, 85, (121,26,0): 109, 100, 85, (121,27,0): 109, 100, 85, (121,28,0): 109, 100, 85, (121,29,0): 109, 100, 85, (121,30,0): 109, 100, 85, (121,31,0): 108, 100, 89, (121,32,0): 103, 100, 93, (121,33,0): 111, 110, 106, (121,34,0): 134, 133, 131, (121,35,0): 164, 164, 162, (121,36,0): 193, 195, 194, (121,37,0): 214, 218, 219, (121,38,0): 234, 238, 239, (121,39,0): 247, 251, 252, (121,40,0): 247, 251, 254, (121,41,0): 248, 252, 255, (121,42,0): 252, 253, 255, (121,43,0): 254, 254, 254, (121,44,0): 255, 255, 253, (121,45,0): 255, 254, 250, (121,46,0): 255, 252, 249, (121,47,0): 255, 250, 243, (121,48,0): 255, 240, 224, (121,49,0): 251, 235, 212, (121,50,0): 237, 223, 197, (121,51,0): 215, 205, 178, (121,52,0): 192, 187, 157, (121,53,0): 164, 163, 132, (121,54,0): 130, 131, 99, (121,55,0): 103, 106, 75, (121,56,0): 76, 81, 51, (121,57,0): 71, 74, 47, (121,58,0): 69, 67, 46, (121,59,0): 71, 66, 47, (121,60,0): 72, 62, 50, (121,61,0): 73, 58, 51, (121,62,0): 76, 57, 53, (121,63,0): 75, 60, 57, (121,64,0): 66, 56, 55, (121,65,0): 71, 62, 63, (121,66,0): 81, 69, 69, (121,67,0): 96, 80, 80, (121,68,0): 124, 104, 103, (121,69,0): 166, 140, 139, (121,70,0): 207, 178, 174, (121,71,0): 232, 197, 191, (121,72,0): 255, 213, 207, (121,73,0): 234, 177, 168, (121,74,0): 201, 131, 123, (121,75,0): 188, 99, 93, (121,76,0): 199, 87, 85, (121,77,0): 213, 83, 83, (121,78,0): 219, 74, 77, (121,79,0): 216, 67, 69, (121,80,0): 213, 71, 70, (121,81,0): 210, 70, 69, (121,82,0): 215, 73, 72, (121,83,0): 219, 75, 75, (121,84,0): 218, 70, 70, (121,85,0): 212, 62, 63, (121,86,0): 214, 61, 63, (121,87,0): 221, 67, 69, (121,88,0): 217, 63, 63, (121,89,0): 217, 63, 63, (121,90,0): 218, 64, 64, (121,91,0): 218, 64, 64, (121,92,0): 217, 65, 62, (121,93,0): 214, 65, 61, (121,94,0): 212, 64, 60, (121,95,0): 212, 63, 57, (121,96,0): 220, 65, 60, (121,97,0): 219, 64, 59, (121,98,0): 211, 64, 57, (121,99,0): 203, 66, 58, (121,100,0): 191, 67, 59, (121,101,0): 177, 65, 54, (121,102,0): 160, 59, 49, (121,103,0): 146, 56, 45, (121,104,0): 140, 61, 48, (121,105,0): 135, 62, 47, (121,106,0): 131, 62, 46, (121,107,0): 129, 62, 45, (121,108,0): 128, 61, 44, (121,109,0): 127, 60, 43, (121,110,0): 129, 60, 44, (121,111,0): 129, 60, 44, (121,112,0): 127, 58, 43, (121,113,0): 127, 57, 45, (121,114,0): 127, 57, 45, (121,115,0): 126, 56, 44, (121,116,0): 125, 57, 46, (121,117,0): 124, 56, 45, (121,118,0): 124, 56, 45, (121,119,0): 124, 56, 45, (121,120,0): 124, 57, 48, (121,121,0): 124, 57, 48, (121,122,0): 124, 57, 48, (121,123,0): 124, 57, 48, (121,124,0): 122, 58, 49, (121,125,0): 123, 59, 50, (121,126,0): 123, 59, 50, (121,127,0): 122, 59, 50, (121,128,0): 119, 60, 52, (121,129,0): 117, 60, 51, (121,130,0): 117, 58, 50, (121,131,0): 115, 58, 49, (121,132,0): 114, 57, 48, (121,133,0): 110, 56, 46, (121,134,0): 111, 54, 45, (121,135,0): 109, 55, 45, (121,136,0): 109, 55, 45, (121,137,0): 108, 56, 45, (121,138,0): 108, 56, 45, (121,139,0): 108, 56, 45, (121,140,0): 108, 56, 45, (121,141,0): 106, 56, 45, (121,142,0): 108, 56, 45, (121,143,0): 108, 56, 45, (121,144,0): 107, 54, 46, (121,145,0): 110, 55, 48, (121,146,0): 111, 56, 49, (121,147,0): 110, 57, 49, (121,148,0): 108, 55, 47, (121,149,0): 105, 52, 44, (121,150,0): 103, 50, 42, (121,151,0): 101, 51, 42, (121,152,0): 99, 49, 40, (121,153,0): 100, 52, 42, (121,154,0): 95, 47, 37, (121,155,0): 94, 46, 36, (121,156,0): 98, 50, 40, (121,157,0): 94, 46, 36, (121,158,0): 96, 48, 38, (121,159,0): 112, 62, 53, (121,160,0): 129, 74, 69, (121,161,0): 135, 82, 76, (121,162,0): 135, 88, 82, (121,163,0): 126, 88, 79, (121,164,0): 114, 86, 75, (121,165,0): 100, 82, 68, (121,166,0): 81, 74, 58, (121,167,0): 62, 63, 47, (121,168,0): 58, 65, 49, (121,169,0): 54, 65, 48, (121,170,0): 53, 64, 48, (121,171,0): 51, 62, 48, (121,172,0): 52, 60, 49, (121,173,0): 52, 60, 49, (121,174,0): 53, 59, 49, (121,175,0): 55, 58, 51, (121,176,0): 55, 57, 52, (121,177,0): 55, 55, 53, (121,178,0): 55, 55, 53, (121,179,0): 53, 55, 50, (121,180,0): 52, 54, 49, (121,181,0): 49, 54, 47, (121,182,0): 47, 54, 46, (121,183,0): 47, 55, 44, (121,184,0): 46, 57, 43, (121,185,0): 49, 60, 46, (121,186,0): 52, 65, 48, (121,187,0): 56, 69, 52, (121,188,0): 57, 72, 53, (121,189,0): 56, 71, 52, (121,190,0): 52, 69, 50, (121,191,0): 52, 66, 49, (121,192,0): 46, 56, 47, (121,193,0): 46, 53, 46, (121,194,0): 46, 51, 45, (121,195,0): 45, 50, 43, (121,196,0): 50, 51, 43, (121,197,0): 52, 54, 43, (121,198,0): 56, 58, 45, (121,199,0): 57, 61, 44, (121,200,0): 55, 63, 40, (121,201,0): 68, 81, 51, (121,202,0): 87, 108, 69, (121,203,0): 104, 130, 85, (121,204,0): 116, 149, 96, (121,205,0): 119, 157, 98, (121,206,0): 112, 152, 89, (121,207,0): 103, 143, 80, (121,208,0): 89, 124, 68, (121,209,0): 87, 120, 67, (121,210,0): 84, 117, 64, (121,211,0): 84, 117, 64, (121,212,0): 86, 119, 66, (121,213,0): 89, 122, 69, (121,214,0): 89, 122, 69, (121,215,0): 89, 122, 69, (121,216,0): 91, 124, 71, (121,217,0): 95, 128, 75, (121,218,0): 95, 128, 75, (121,219,0): 92, 125, 72, (121,220,0): 91, 124, 71, (121,221,0): 94, 127, 74, (121,222,0): 94, 127, 74, (121,223,0): 94, 123, 77, (121,224,0): 82, 109, 74, (121,225,0): 70, 95, 66, (121,226,0): 59, 84, 55, (122,0,0): 105, 99, 83, (122,1,0): 105, 99, 83, (122,2,0): 105, 99, 83, (122,3,0): 105, 99, 83, (122,4,0): 105, 99, 83, (122,5,0): 105, 99, 83, (122,6,0): 105, 99, 83, (122,7,0): 105, 99, 83, (122,8,0): 105, 99, 83, (122,9,0): 105, 99, 83, (122,10,0): 105, 99, 83, (122,11,0): 105, 99, 83, (122,12,0): 105, 99, 83, (122,13,0): 105, 99, 83, (122,14,0): 105, 99, 83, (122,15,0): 105, 99, 83, (122,16,0): 107, 98, 83, (122,17,0): 107, 98, 83, (122,18,0): 107, 98, 83, (122,19,0): 108, 99, 84, (122,20,0): 108, 99, 84, (122,21,0): 109, 100, 85, (122,22,0): 109, 100, 85, (122,23,0): 109, 100, 85, (122,24,0): 109, 100, 85, (122,25,0): 109, 100, 85, (122,26,0): 109, 100, 85, (122,27,0): 109, 100, 85, (122,28,0): 109, 100, 85, (122,29,0): 110, 101, 86, (122,30,0): 110, 101, 86, (122,31,0): 108, 102, 90, (122,32,0): 101, 100, 95, (122,33,0): 121, 123, 120, (122,34,0): 151, 153, 152, (122,35,0): 178, 182, 183, (122,36,0): 205, 209, 210, (122,37,0): 228, 233, 236, (122,38,0): 244, 249, 252, (122,39,0): 250, 255, 255, (122,40,0): 251, 255, 255, (122,41,0): 252, 255, 255, (122,42,0): 253, 254, 255, (122,43,0): 254, 254, 254, (122,44,0): 255, 254, 252, (122,45,0): 255, 255, 251, (122,46,0): 255, 255, 250, (122,47,0): 255, 255, 244, (122,48,0): 254, 252, 231, (122,49,0): 250, 249, 221, (122,50,0): 239, 240, 209, (122,51,0): 225, 229, 196, (122,52,0): 210, 216, 180, (122,53,0): 188, 196, 159, (122,54,0): 160, 168, 131, (122,55,0): 135, 145, 108, (122,56,0): 96, 103, 69, (122,57,0): 81, 88, 55, (122,58,0): 68, 71, 44, (122,59,0): 68, 67, 46, (122,60,0): 74, 68, 52, (122,61,0): 76, 68, 55, (122,62,0): 75, 65, 56, (122,63,0): 73, 62, 58, (122,64,0): 68, 58, 57, (122,65,0): 84, 74, 75, (122,66,0): 107, 95, 95, (122,67,0): 130, 118, 118, (122,68,0): 157, 146, 144, (122,69,0): 192, 178, 175, (122,70,0): 219, 206, 200, (122,71,0): 234, 220, 211, (122,72,0): 248, 228, 217, (122,73,0): 255, 240, 229, (122,74,0): 255, 224, 214, (122,75,0): 234, 167, 159, (122,76,0): 190, 101, 97, (122,77,0): 177, 67, 68, (122,78,0): 198, 72, 75, (122,79,0): 219, 86, 89, (122,80,0): 216, 88, 85, (122,81,0): 207, 79, 76, (122,82,0): 202, 70, 66, (122,83,0): 204, 69, 66, (122,84,0): 210, 70, 69, (122,85,0): 214, 70, 70, (122,86,0): 216, 68, 68, (122,87,0): 217, 67, 68, (122,88,0): 214, 61, 63, (122,89,0): 216, 62, 64, (122,90,0): 217, 63, 63, (122,91,0): 217, 63, 63, (122,92,0): 217, 65, 64, (122,93,0): 214, 64, 63, (122,94,0): 213, 65, 61, (122,95,0): 213, 64, 58, (122,96,0): 217, 64, 58, (122,97,0): 217, 64, 58, (122,98,0): 210, 66, 58, (122,99,0): 203, 69, 60, (122,100,0): 192, 68, 60, (122,101,0): 178, 66, 55, (122,102,0): 161, 60, 50, (122,103,0): 147, 57, 46, (122,104,0): 142, 60, 48, (122,105,0): 137, 61, 48, (122,106,0): 131, 62, 47, (122,107,0): 129, 62, 46, (122,108,0): 127, 61, 45, (122,109,0): 126, 60, 44, (122,110,0): 128, 61, 45, (122,111,0): 128, 61, 45, (122,112,0): 127, 57, 45, (122,113,0): 127, 57, 45, (122,114,0): 126, 58, 47, (122,115,0): 125, 57, 46, (122,116,0): 125, 57, 46, (122,117,0): 124, 56, 45, (122,118,0): 123, 56, 47, (122,119,0): 123, 56, 47, (122,120,0): 125, 58, 49, (122,121,0): 125, 58, 49, (122,122,0): 123, 59, 50, (122,123,0): 123, 59, 50, (122,124,0): 123, 59, 50, (122,125,0): 123, 59, 50, (122,126,0): 122, 59, 52, (122,127,0): 120, 60, 52, (122,128,0): 116, 59, 50, (122,129,0): 113, 59, 49, (122,130,0): 114, 57, 48, (122,131,0): 111, 57, 47, (122,132,0): 110, 56, 46, (122,133,0): 108, 56, 45, (122,134,0): 108, 54, 44, (122,135,0): 107, 55, 44, (122,136,0): 108, 56, 45, (122,137,0): 106, 56, 45, (122,138,0): 106, 56, 45, (122,139,0): 106, 56, 45, (122,140,0): 106, 56, 45, (122,141,0): 105, 57, 45, (122,142,0): 106, 56, 45, (122,143,0): 106, 56, 45, (122,144,0): 110, 57, 49, (122,145,0): 109, 56, 48, (122,146,0): 109, 56, 48, (122,147,0): 109, 56, 48, (122,148,0): 109, 56, 48, (122,149,0): 105, 55, 46, (122,150,0): 102, 52, 43, (122,151,0): 99, 49, 40, (122,152,0): 100, 50, 41, (122,153,0): 97, 49, 39, (122,154,0): 93, 45, 35, (122,155,0): 95, 48, 38, (122,156,0): 99, 52, 42, (122,157,0): 92, 45, 35, (122,158,0): 95, 48, 38, (122,159,0): 115, 68, 60, (122,160,0): 125, 80, 74, (122,161,0): 129, 86, 80, (122,162,0): 126, 89, 81, (122,163,0): 112, 84, 73, (122,164,0): 94, 74, 63, (122,165,0): 79, 67, 55, (122,166,0): 63, 60, 45, (122,167,0): 52, 54, 40, (122,168,0): 50, 59, 42, (122,169,0): 48, 59, 43, (122,170,0): 49, 60, 46, (122,171,0): 50, 61, 47, (122,172,0): 52, 60, 49, (122,173,0): 52, 60, 49, (122,174,0): 53, 59, 49, (122,175,0): 55, 58, 51, (122,176,0): 55, 57, 52, (122,177,0): 55, 57, 54, (122,178,0): 54, 56, 51, (122,179,0): 53, 55, 50, (122,180,0): 53, 55, 50, (122,181,0): 50, 55, 48, (122,182,0): 48, 55, 47, (122,183,0): 48, 56, 45, (122,184,0): 46, 57, 43, (122,185,0): 48, 59, 45, (122,186,0): 50, 63, 46, (122,187,0): 54, 67, 50, (122,188,0): 55, 69, 52, (122,189,0): 56, 71, 52, (122,190,0): 56, 71, 52, (122,191,0): 57, 70, 53, (122,192,0): 52, 62, 51, (122,193,0): 51, 58, 50, (122,194,0): 47, 52, 45, (122,195,0): 44, 50, 40, (122,196,0): 47, 48, 40, (122,197,0): 49, 51, 40, (122,198,0): 53, 55, 42, (122,199,0): 54, 58, 41, (122,200,0): 54, 62, 39, (122,201,0): 68, 81, 53, (122,202,0): 89, 109, 74, (122,203,0): 107, 132, 90, (122,204,0): 119, 151, 102, (122,205,0): 119, 156, 102, (122,206,0): 108, 147, 90, (122,207,0): 95, 135, 75, (122,208,0): 87, 120, 67, (122,209,0): 87, 117, 67, (122,210,0): 84, 114, 64, (122,211,0): 84, 114, 64, (122,212,0): 86, 116, 66, (122,213,0): 88, 118, 68, (122,214,0): 89, 119, 69, (122,215,0): 89, 119, 69, (122,216,0): 90, 120, 70, (122,217,0): 93, 123, 73, (122,218,0): 95, 125, 75, (122,219,0): 93, 123, 73, (122,220,0): 93, 123, 73, (122,221,0): 95, 125, 75, (122,222,0): 94, 124, 74, (122,223,0): 90, 119, 75, (122,224,0): 78, 101, 72, (122,225,0): 65, 87, 64, (122,226,0): 54, 76, 53, (123,0,0): 105, 99, 83, (123,1,0): 105, 99, 83, (123,2,0): 105, 99, 83, (123,3,0): 105, 99, 83, (123,4,0): 105, 99, 83, (123,5,0): 105, 99, 83, (123,6,0): 105, 99, 83, (123,7,0): 105, 99, 83, (123,8,0): 105, 99, 83, (123,9,0): 105, 99, 83, (123,10,0): 105, 99, 83, (123,11,0): 105, 99, 83, (123,12,0): 105, 99, 83, (123,13,0): 105, 99, 83, (123,14,0): 105, 99, 83, (123,15,0): 105, 99, 83, (123,16,0): 106, 99, 83, (123,17,0): 107, 98, 83, (123,18,0): 107, 98, 83, (123,19,0): 108, 99, 84, (123,20,0): 108, 99, 84, (123,21,0): 109, 100, 85, (123,22,0): 109, 100, 85, (123,23,0): 109, 100, 85, (123,24,0): 109, 100, 85, (123,25,0): 109, 100, 85, (123,26,0): 109, 100, 85, (123,27,0): 110, 101, 86, (123,28,0): 110, 101, 86, (123,29,0): 110, 101, 86, (123,30,0): 110, 101, 86, (123,31,0): 109, 103, 91, (123,32,0): 106, 107, 102, (123,33,0): 131, 135, 136, (123,34,0): 163, 167, 168, (123,35,0): 185, 190, 193, (123,36,0): 208, 213, 216, (123,37,0): 229, 237, 239, (123,38,0): 243, 251, 253, (123,39,0): 245, 253, 255, (123,40,0): 251, 255, 255, (123,41,0): 251, 255, 255, (123,42,0): 252, 255, 255, (123,43,0): 252, 254, 251, (123,44,0): 253, 254, 249, (123,45,0): 254, 253, 248, (123,46,0): 255, 254, 247, (123,47,0): 255, 255, 243, (123,48,0): 248, 253, 230, (123,49,0): 244, 253, 222, (123,50,0): 238, 247, 216, (123,51,0): 230, 242, 206, (123,52,0): 221, 233, 195, (123,53,0): 206, 218, 180, (123,54,0): 182, 193, 153, (123,55,0): 161, 171, 134, (123,56,0): 128, 135, 101, (123,57,0): 102, 109, 76, (123,58,0): 77, 81, 54, (123,59,0): 70, 72, 48, (123,60,0): 72, 74, 53, (123,61,0): 75, 73, 58, (123,62,0): 72, 68, 57, (123,63,0): 68, 64, 55, (123,64,0): 80, 70, 68, (123,65,0): 106, 96, 95, (123,66,0): 139, 129, 128, (123,67,0): 164, 154, 153, (123,68,0): 183, 175, 172, (123,69,0): 203, 198, 194, (123,70,0): 223, 218, 212, (123,71,0): 234, 230, 221, (123,72,0): 247, 238, 229, (123,73,0): 255, 249, 239, (123,74,0): 255, 246, 235, (123,75,0): 255, 215, 207, (123,76,0): 245, 178, 172, (123,77,0): 227, 141, 140, (123,78,0): 200, 100, 100, (123,79,0): 176, 68, 66, (123,80,0): 194, 83, 76, (123,81,0): 200, 85, 78, (123,82,0): 199, 82, 73, (123,83,0): 195, 72, 65, (123,84,0): 199, 72, 66, (123,85,0): 211, 77, 74, (123,86,0): 213, 74, 71, (123,87,0): 207, 63, 62, (123,88,0): 210, 62, 62, (123,89,0): 212, 62, 63, (123,90,0): 213, 63, 62, (123,91,0): 216, 64, 63, (123,92,0): 214, 64, 63, (123,93,0): 214, 64, 63, (123,94,0): 213, 65, 61, (123,95,0): 213, 65, 61, (123,96,0): 214, 62, 57, (123,97,0): 213, 64, 58, (123,98,0): 210, 67, 61, (123,99,0): 204, 69, 63, (123,100,0): 192, 69, 62, (123,101,0): 178, 65, 57, (123,102,0): 162, 61, 53, (123,103,0): 149, 59, 50, (123,104,0): 142, 60, 49, (123,105,0): 137, 61, 48, (123,106,0): 131, 62, 47, (123,107,0): 129, 62, 46, (123,108,0): 127, 61, 47, (123,109,0): 126, 60, 44, (123,110,0): 128, 61, 45, (123,111,0): 128, 61, 45, (123,112,0): 127, 57, 45, (123,113,0): 127, 57, 45, (123,114,0): 126, 58, 47, (123,115,0): 125, 57, 46, (123,116,0): 125, 57, 46, (123,117,0): 124, 56, 45, (123,118,0): 123, 56, 47, (123,119,0): 123, 56, 47, (123,120,0): 126, 59, 50, (123,121,0): 126, 59, 50, (123,122,0): 124, 60, 51, (123,123,0): 123, 59, 50, (123,124,0): 123, 59, 50, (123,125,0): 123, 59, 50, (123,126,0): 122, 59, 52, (123,127,0): 120, 60, 52, (123,128,0): 114, 57, 48, (123,129,0): 111, 57, 47, (123,130,0): 111, 57, 47, (123,131,0): 109, 57, 46, (123,132,0): 108, 56, 45, (123,133,0): 107, 55, 44, (123,134,0): 106, 54, 43, (123,135,0): 104, 54, 43, (123,136,0): 105, 55, 44, (123,137,0): 105, 55, 44, (123,138,0): 105, 55, 44, (123,139,0): 104, 56, 44, (123,140,0): 104, 56, 44, (123,141,0): 104, 56, 44, (123,142,0): 104, 56, 44, (123,143,0): 104, 56, 44, (123,144,0): 109, 59, 50, (123,145,0): 108, 55, 47, (123,146,0): 106, 53, 45, (123,147,0): 105, 55, 46, (123,148,0): 106, 56, 47, (123,149,0): 106, 56, 47, (123,150,0): 102, 52, 43, (123,151,0): 97, 49, 39, (123,152,0): 101, 53, 43, (123,153,0): 97, 50, 40, (123,154,0): 93, 46, 36, (123,155,0): 97, 50, 40, (123,156,0): 98, 51, 41, (123,157,0): 89, 42, 32, (123,158,0): 97, 50, 40, (123,159,0): 121, 78, 69, (123,160,0): 129, 92, 86, (123,161,0): 118, 87, 82, (123,162,0): 105, 78, 71, (123,163,0): 87, 67, 58, (123,164,0): 73, 60, 51, (123,165,0): 64, 58, 46, (123,166,0): 58, 59, 45, (123,167,0): 56, 60, 46, (123,168,0): 48, 56, 41, (123,169,0): 47, 58, 42, (123,170,0): 51, 59, 46, (123,171,0): 52, 60, 47, (123,172,0): 53, 61, 50, (123,173,0): 53, 59, 49, (123,174,0): 54, 57, 48, (123,175,0): 54, 57, 48, (123,176,0): 55, 57, 52, (123,177,0): 54, 56, 51, (123,178,0): 54, 56, 51, (123,179,0): 52, 57, 50, (123,180,0): 51, 56, 49, (123,181,0): 51, 57, 47, (123,182,0): 49, 57, 46, (123,183,0): 49, 57, 46, (123,184,0): 46, 57, 43, (123,185,0): 47, 58, 44, (123,186,0): 48, 61, 44, (123,187,0): 50, 63, 46, (123,188,0): 53, 66, 49, (123,189,0): 55, 69, 52, (123,190,0): 59, 72, 54, (123,191,0): 60, 73, 56, (123,192,0): 57, 67, 56, (123,193,0): 55, 63, 52, (123,194,0): 50, 56, 46, (123,195,0): 45, 51, 39, (123,196,0): 46, 48, 37, (123,197,0): 47, 49, 36, (123,198,0): 50, 52, 38, (123,199,0): 52, 56, 39, (123,200,0): 52, 60, 39, (123,201,0): 69, 82, 56, (123,202,0): 93, 112, 80, (123,203,0): 114, 139, 100, (123,204,0): 123, 154, 110, (123,205,0): 119, 156, 105, (123,206,0): 102, 141, 88, (123,207,0): 85, 124, 69, (123,208,0): 83, 115, 65, (123,209,0): 84, 114, 64, (123,210,0): 83, 113, 63, (123,211,0): 83, 113, 63, (123,212,0): 84, 114, 64, (123,213,0): 85, 115, 65, (123,214,0): 86, 116, 66, (123,215,0): 86, 116, 66, (123,216,0): 87, 117, 67, (123,217,0): 91, 121, 71, (123,218,0): 93, 123, 73, (123,219,0): 92, 122, 72, (123,220,0): 94, 124, 74, (123,221,0): 95, 125, 75, (123,222,0): 92, 122, 72, (123,223,0): 87, 114, 73, (123,224,0): 73, 93, 68, (123,225,0): 61, 78, 60, (123,226,0): 49, 66, 48, (124,0,0): 103, 100, 83, (124,1,0): 103, 100, 83, (124,2,0): 103, 100, 83, (124,3,0): 103, 100, 83, (124,4,0): 103, 100, 83, (124,5,0): 103, 100, 83, (124,6,0): 103, 100, 83, (124,7,0): 103, 100, 83, (124,8,0): 103, 100, 83, (124,9,0): 103, 100, 83, (124,10,0): 103, 100, 83, (124,11,0): 103, 100, 83, (124,12,0): 103, 100, 83, (124,13,0): 103, 100, 83, (124,14,0): 103, 100, 83, (124,15,0): 105, 99, 83, (124,16,0): 106, 99, 83, (124,17,0): 107, 98, 83, (124,18,0): 107, 98, 83, (124,19,0): 108, 99, 84, (124,20,0): 108, 99, 84, (124,21,0): 109, 100, 85, (124,22,0): 109, 100, 85, (124,23,0): 109, 100, 85, (124,24,0): 109, 100, 85, (124,25,0): 109, 100, 85, (124,26,0): 109, 100, 85, (124,27,0): 110, 101, 86, (124,28,0): 110, 101, 86, (124,29,0): 111, 102, 87, (124,30,0): 111, 102, 87, (124,31,0): 110, 103, 93, (124,32,0): 113, 113, 111, (124,33,0): 135, 140, 143, (124,34,0): 164, 169, 172, (124,35,0): 183, 191, 194, (124,36,0): 205, 213, 216, (124,37,0): 227, 237, 239, (124,38,0): 242, 252, 254, (124,39,0): 244, 254, 255, (124,40,0): 248, 255, 255, (124,41,0): 250, 255, 255, (124,42,0): 251, 255, 252, (124,43,0): 253, 255, 250, (124,44,0): 252, 253, 245, (124,45,0): 250, 252, 241, (124,46,0): 249, 249, 237, (124,47,0): 246, 248, 234, (124,48,0): 246, 255, 232, (124,49,0): 243, 255, 228, (124,50,0): 240, 253, 225, (124,51,0): 238, 249, 217, (124,52,0): 233, 244, 210, (124,53,0): 222, 232, 197, (124,54,0): 202, 210, 173, (124,55,0): 182, 190, 153, (124,56,0): 157, 163, 129, (124,57,0): 125, 130, 98, (124,58,0): 89, 93, 66, (124,59,0): 71, 76, 53, (124,60,0): 70, 75, 55, (124,61,0): 70, 74, 57, (124,62,0): 67, 71, 57, (124,63,0): 65, 67, 56, (124,64,0): 98, 95, 88, (124,65,0): 133, 125, 122, (124,66,0): 170, 162, 159, (124,67,0): 192, 184, 181, (124,68,0): 203, 195, 193, (124,69,0): 213, 208, 205, (124,70,0): 230, 225, 221, (124,71,0): 241, 238, 233, (124,72,0): 249, 246, 239, (124,73,0): 250, 243, 233, (124,74,0): 251, 237, 226, (124,75,0): 255, 236, 227, (124,76,0): 255, 242, 234, (124,77,0): 255, 224, 219, (124,78,0): 233, 165, 162, (124,79,0): 182, 105, 99, (124,80,0): 164, 76, 64, (124,81,0): 178, 82, 68, (124,82,0): 192, 90, 78, (124,83,0): 199, 92, 82, (124,84,0): 197, 83, 73, (124,85,0): 190, 69, 61, (124,86,0): 193, 64, 59, (124,87,0): 202, 67, 64, (124,88,0): 203, 64, 61, (124,89,0): 206, 64, 62, (124,90,0): 209, 63, 63, (124,91,0): 210, 64, 64, (124,92,0): 211, 66, 63, (124,93,0): 211, 66, 63, (124,94,0): 211, 66, 63, (124,95,0): 211, 66, 61, (124,96,0): 211, 63, 59, (124,97,0): 210, 65, 60, (124,98,0): 208, 69, 64, (124,99,0): 201, 69, 64, (124,100,0): 189, 67, 62, (124,101,0): 175, 64, 57, (124,102,0): 160, 62, 53, (124,103,0): 149, 61, 51, (124,104,0): 142, 60, 49, (124,105,0): 137, 60, 50, (124,106,0): 131, 61, 49, (124,107,0): 129, 61, 48, (124,108,0): 127, 61, 49, (124,109,0): 126, 60, 46, (124,110,0): 127, 61, 47, (124,111,0): 127, 61, 47, (124,112,0): 126, 58, 47, (124,113,0): 126, 58, 47, (124,114,0): 126, 58, 47, (124,115,0): 125, 57, 46, (124,116,0): 124, 57, 48, (124,117,0): 123, 56, 47, (124,118,0): 123, 56, 47, (124,119,0): 123, 56, 47, (124,120,0): 124, 60, 51, (124,121,0): 124, 60, 51, (124,122,0): 124, 60, 51, (124,123,0): 123, 59, 50, (124,124,0): 122, 59, 52, (124,125,0): 121, 58, 51, (124,126,0): 121, 58, 51, (124,127,0): 119, 59, 51, (124,128,0): 110, 55, 48, (124,129,0): 109, 56, 48, (124,130,0): 108, 55, 47, (124,131,0): 108, 55, 47, (124,132,0): 107, 54, 46, (124,133,0): 104, 54, 45, (124,134,0): 104, 54, 45, (124,135,0): 104, 54, 45, (124,136,0): 105, 55, 46, (124,137,0): 104, 56, 46, (124,138,0): 104, 56, 46, (124,139,0): 103, 56, 46, (124,140,0): 103, 56, 46, (124,141,0): 103, 56, 46, (124,142,0): 103, 56, 46, (124,143,0): 104, 56, 46, (124,144,0): 107, 57, 50, (124,145,0): 104, 54, 47, (124,146,0): 102, 52, 45, (124,147,0): 103, 53, 46, (124,148,0): 105, 55, 48, (124,149,0): 104, 55, 48, (124,150,0): 101, 52, 45, (124,151,0): 98, 49, 42, (124,152,0): 99, 50, 43, (124,153,0): 98, 51, 43, (124,154,0): 95, 48, 40, (124,155,0): 93, 49, 40, (124,156,0): 93, 49, 40, (124,157,0): 86, 42, 33, (124,158,0): 98, 54, 45, (124,159,0): 123, 85, 76, (124,160,0): 116, 89, 82, (124,161,0): 97, 78, 72, (124,162,0): 78, 63, 56, (124,163,0): 65, 55, 46, (124,164,0): 61, 54, 44, (124,165,0): 59, 57, 45, (124,166,0): 57, 59, 46, (124,167,0): 57, 60, 49, (124,168,0): 51, 57, 45, (124,169,0): 51, 59, 46, (124,170,0): 53, 59, 47, (124,171,0): 54, 60, 48, (124,172,0): 54, 60, 48, (124,173,0): 55, 58, 47, (124,174,0): 53, 56, 45, (124,175,0): 52, 55, 46, (124,176,0): 54, 57, 48, (124,177,0): 52, 57, 50, (124,178,0): 51, 56, 49, (124,179,0): 51, 57, 47, (124,180,0): 51, 57, 47, (124,181,0): 50, 58, 47, (124,182,0): 49, 57, 46, (124,183,0): 49, 57, 44, (124,184,0): 46, 57, 43, (124,185,0): 46, 57, 43, (124,186,0): 47, 58, 44, (124,187,0): 48, 59, 45, (124,188,0): 51, 62, 46, (124,189,0): 54, 67, 50, (124,190,0): 58, 69, 53, (124,191,0): 60, 71, 55, (124,192,0): 61, 69, 56, (124,193,0): 58, 66, 53, (124,194,0): 53, 59, 47, (124,195,0): 48, 54, 40, (124,196,0): 48, 50, 37, (124,197,0): 47, 49, 36, (124,198,0): 49, 51, 37, (124,199,0): 49, 53, 36, (124,200,0): 50, 58, 37, (124,201,0): 71, 83, 59, (124,202,0): 98, 117, 87, (124,203,0): 119, 143, 107, (124,204,0): 124, 155, 114, (124,205,0): 113, 149, 103, (124,206,0): 92, 130, 81, (124,207,0): 74, 112, 61, (124,208,0): 79, 111, 62, (124,209,0): 81, 110, 62, (124,210,0): 81, 110, 62, (124,211,0): 81, 110, 62, (124,212,0): 81, 110, 62, (124,213,0): 81, 110, 62, (124,214,0): 83, 112, 64, (124,215,0): 83, 112, 64, (124,216,0): 87, 116, 68, (124,217,0): 91, 120, 72, (124,218,0): 93, 122, 74, (124,219,0): 93, 122, 74, (124,220,0): 95, 124, 76, (124,221,0): 95, 124, 76, (124,222,0): 90, 119, 71, (124,223,0): 82, 108, 69, (124,224,0): 65, 82, 63, (124,225,0): 54, 67, 57, (124,226,0): 43, 56, 46, (125,0,0): 103, 100, 83, (125,1,0): 103, 100, 83, (125,2,0): 103, 100, 83, (125,3,0): 103, 100, 83, (125,4,0): 103, 100, 83, (125,5,0): 103, 100, 83, (125,6,0): 103, 100, 83, (125,7,0): 103, 100, 83, (125,8,0): 103, 100, 83, (125,9,0): 103, 100, 83, (125,10,0): 103, 100, 83, (125,11,0): 103, 100, 83, (125,12,0): 103, 100, 83, (125,13,0): 103, 100, 83, (125,14,0): 103, 100, 83, (125,15,0): 105, 99, 83, (125,16,0): 106, 99, 83, (125,17,0): 107, 98, 83, (125,18,0): 107, 98, 83, (125,19,0): 108, 99, 84, (125,20,0): 108, 99, 84, (125,21,0): 109, 100, 85, (125,22,0): 109, 100, 85, (125,23,0): 109, 100, 85, (125,24,0): 109, 100, 85, (125,25,0): 109, 100, 85, (125,26,0): 110, 101, 86, (125,27,0): 110, 101, 86, (125,28,0): 111, 102, 87, (125,29,0): 112, 103, 88, (125,30,0): 112, 103, 88, (125,31,0): 110, 103, 93, (125,32,0): 108, 110, 109, (125,33,0): 122, 130, 133, (125,34,0): 147, 154, 160, (125,35,0): 171, 181, 183, (125,36,0): 196, 206, 208, (125,37,0): 220, 230, 232, (125,38,0): 237, 247, 249, (125,39,0): 244, 254, 255, (125,40,0): 245, 254, 253, (125,41,0): 246, 255, 252, (125,42,0): 250, 255, 250, (125,43,0): 251, 255, 249, (125,44,0): 251, 254, 243, (125,45,0): 248, 250, 237, (125,46,0): 245, 246, 232, (125,47,0): 241, 244, 227, (125,48,0): 244, 253, 234, (125,49,0): 244, 253, 232, (125,50,0): 244, 252, 229, (125,51,0): 243, 249, 223, (125,52,0): 242, 246, 219, (125,53,0): 233, 236, 205, (125,54,0): 216, 215, 185, (125,55,0): 197, 196, 165, (125,56,0): 177, 176, 146, (125,57,0): 143, 142, 114, (125,58,0): 101, 103, 79, (125,59,0): 77, 80, 59, (125,60,0): 71, 75, 58, (125,61,0): 70, 77, 61, (125,62,0): 71, 79, 66, (125,63,0): 74, 82, 71, (125,64,0): 122, 123, 115, (125,65,0): 158, 155, 148, (125,66,0): 195, 190, 184, (125,67,0): 215, 207, 204, (125,68,0): 222, 212, 211, (125,69,0): 230, 220, 219, (125,70,0): 243, 235, 233, (125,71,0): 252, 247, 244, (125,72,0): 243, 240, 235, (125,73,0): 254, 251, 244, (125,74,0): 255, 255, 246, (125,75,0): 255, 251, 241, (125,76,0): 255, 243, 234, (125,77,0): 255, 237, 229, (125,78,0): 255, 226, 218, (125,79,0): 255, 210, 199, (125,80,0): 212, 143, 127, (125,81,0): 181, 100, 81, (125,82,0): 162, 75, 58, (125,83,0): 178, 85, 70, (125,84,0): 190, 88, 74, (125,85,0): 182, 71, 60, (125,86,0): 182, 63, 55, (125,87,0): 199, 74, 68, (125,88,0): 199, 67, 62, (125,89,0): 202, 67, 63, (125,90,0): 205, 66, 63, (125,91,0): 208, 66, 64, (125,92,0): 208, 66, 62, (125,93,0): 208, 66, 62, (125,94,0): 208, 66, 62, (125,95,0): 208, 65, 61, (125,96,0): 210, 65, 60, (125,97,0): 210, 67, 63, (125,98,0): 206, 68, 65, (125,99,0): 197, 68, 63, (125,100,0): 184, 65, 61, (125,101,0): 170, 61, 56, (125,102,0): 158, 59, 53, (125,103,0): 149, 60, 52, (125,104,0): 142, 59, 51, (125,105,0): 137, 60, 50, (125,106,0): 131, 61, 51, (125,107,0): 129, 61, 50, (125,108,0): 127, 61, 49, (125,109,0): 126, 60, 48, (125,110,0): 127, 61, 49, (125,111,0): 127, 61, 47, (125,112,0): 126, 58, 47, (125,113,0): 126, 58, 47, (125,114,0): 126, 58, 47, (125,115,0): 125, 57, 46, (125,116,0): 124, 57, 48, (125,117,0): 123, 56, 47, (125,118,0): 123, 56, 47, (125,119,0): 123, 56, 47, (125,120,0): 124, 60, 51, (125,121,0): 123, 59, 50, (125,122,0): 123, 59, 50, (125,123,0): 122, 58, 49, (125,124,0): 121, 58, 51, (125,125,0): 120, 57, 50, (125,126,0): 119, 56, 49, (125,127,0): 117, 57, 49, (125,128,0): 110, 55, 48, (125,129,0): 108, 55, 47, (125,130,0): 108, 55, 47, (125,131,0): 106, 56, 47, (125,132,0): 105, 55, 46, (125,133,0): 105, 55, 46, (125,134,0): 104, 54, 45, (125,135,0): 103, 55, 45, (125,136,0): 103, 55, 45, (125,137,0): 103, 55, 45, (125,138,0): 102, 55, 45, (125,139,0): 102, 55, 45, (125,140,0): 102, 55, 45, (125,141,0): 102, 55, 45, (125,142,0): 102, 55, 45, (125,143,0): 102, 55, 45, (125,144,0): 104, 55, 48, (125,145,0): 104, 54, 47, (125,146,0): 103, 53, 46, (125,147,0): 103, 53, 46, (125,148,0): 103, 54, 47, (125,149,0): 104, 55, 48, (125,150,0): 103, 54, 47, (125,151,0): 102, 53, 46, (125,152,0): 97, 50, 42, (125,153,0): 101, 54, 46, (125,154,0): 94, 50, 41, (125,155,0): 92, 48, 39, (125,156,0): 96, 52, 43, (125,157,0): 97, 53, 44, (125,158,0): 105, 61, 52, (125,159,0): 117, 83, 74, (125,160,0): 88, 71, 64, (125,161,0): 69, 62, 54, (125,162,0): 60, 53, 47, (125,163,0): 57, 53, 44, (125,164,0): 59, 56, 47, (125,165,0): 56, 58, 47, (125,166,0): 53, 55, 44, (125,167,0): 51, 54, 43, (125,168,0): 54, 57, 46, (125,169,0): 53, 59, 47, (125,170,0): 55, 58, 47, (125,171,0): 54, 57, 46, (125,172,0): 54, 57, 46, (125,173,0): 53, 56, 45, (125,174,0): 53, 55, 44, (125,175,0): 51, 54, 43, (125,176,0): 50, 56, 44, (125,177,0): 49, 57, 44, (125,178,0): 50, 56, 46, (125,179,0): 49, 57, 44, (125,180,0): 49, 57, 46, (125,181,0): 49, 57, 44, (125,182,0): 49, 57, 44, (125,183,0): 49, 57, 44, (125,184,0): 46, 57, 43, (125,185,0): 46, 57, 43, (125,186,0): 46, 57, 43, (125,187,0): 47, 58, 44, (125,188,0): 48, 59, 43, (125,189,0): 51, 62, 46, (125,190,0): 54, 65, 49, (125,191,0): 55, 66, 50, (125,192,0): 60, 68, 53, (125,193,0): 58, 67, 50, (125,194,0): 56, 63, 47, (125,195,0): 53, 59, 45, (125,196,0): 52, 54, 41, (125,197,0): 50, 52, 39, (125,198,0): 49, 51, 37, (125,199,0): 48, 52, 37, (125,200,0): 48, 55, 37, (125,201,0): 72, 84, 62, (125,202,0): 101, 120, 92, (125,203,0): 117, 141, 109, (125,204,0): 116, 146, 108, (125,205,0): 102, 137, 95, (125,206,0): 82, 119, 75, (125,207,0): 66, 104, 57, (125,208,0): 75, 107, 60, (125,209,0): 78, 107, 59, (125,210,0): 80, 109, 61, (125,211,0): 80, 109, 61, (125,212,0): 78, 107, 59, (125,213,0): 78, 107, 59, (125,214,0): 79, 108, 60, (125,215,0): 81, 110, 62, (125,216,0): 86, 115, 67, (125,217,0): 90, 119, 71, (125,218,0): 93, 122, 74, (125,219,0): 94, 123, 75, (125,220,0): 95, 124, 76, (125,221,0): 95, 124, 76, (125,222,0): 86, 115, 67, (125,223,0): 78, 102, 66, (125,224,0): 59, 73, 56, (125,225,0): 48, 59, 51, (125,226,0): 38, 47, 42, (126,0,0): 103, 100, 83, (126,1,0): 103, 100, 83, (126,2,0): 103, 100, 83, (126,3,0): 103, 100, 83, (126,4,0): 103, 100, 83, (126,5,0): 103, 100, 83, (126,6,0): 103, 100, 83, (126,7,0): 103, 100, 83, (126,8,0): 103, 100, 83, (126,9,0): 103, 100, 83, (126,10,0): 103, 100, 83, (126,11,0): 103, 100, 83, (126,12,0): 103, 100, 83, (126,13,0): 103, 100, 83, (126,14,0): 103, 100, 83, (126,15,0): 105, 99, 83, (126,16,0): 106, 99, 83, (126,17,0): 107, 98, 83, (126,18,0): 107, 98, 83, (126,19,0): 108, 99, 84, (126,20,0): 108, 99, 84, (126,21,0): 109, 100, 85, (126,22,0): 109, 100, 85, (126,23,0): 109, 100, 85, (126,24,0): 109, 100, 85, (126,25,0): 109, 100, 85, (126,26,0): 110, 101, 86, (126,27,0): 110, 101, 86, (126,28,0): 111, 102, 87, (126,29,0): 112, 103, 88, (126,30,0): 113, 104, 89, (126,31,0): 111, 104, 94, (126,32,0): 104, 105, 107, (126,33,0): 109, 116, 122, (126,34,0): 133, 140, 148, (126,35,0): 163, 172, 177, (126,36,0): 191, 200, 205, (126,37,0): 211, 222, 226, (126,38,0): 229, 240, 242, (126,39,0): 240, 252, 252, (126,40,0): 242, 252, 251, (126,41,0): 245, 254, 249, (126,42,0): 248, 255, 247, (126,43,0): 250, 255, 246, (126,44,0): 252, 255, 242, (126,45,0): 250, 253, 236, (126,46,0): 248, 249, 231, (126,47,0): 246, 247, 231, (126,48,0): 246, 246, 234, (126,49,0): 247, 247, 235, (126,50,0): 250, 247, 232, (126,51,0): 252, 246, 230, (126,52,0): 253, 245, 226, (126,53,0): 247, 236, 214, (126,54,0): 231, 216, 195, (126,55,0): 213, 198, 175, (126,56,0): 192, 177, 154, (126,57,0): 158, 147, 125, (126,58,0): 117, 110, 91, (126,59,0): 90, 87, 70, (126,60,0): 80, 81, 67, (126,61,0): 83, 86, 75, (126,62,0): 91, 98, 90, (126,63,0): 99, 109, 100, (126,64,0): 146, 154, 141, (126,65,0): 176, 179, 168, (126,66,0): 210, 207, 198, (126,67,0): 230, 223, 217, (126,68,0): 242, 228, 227, (126,69,0): 249, 235, 235, (126,70,0): 255, 241, 244, (126,71,0): 255, 248, 249, (126,72,0): 255, 253, 251, (126,73,0): 255, 251, 248, (126,74,0): 249, 248, 243, (126,75,0): 247, 247, 237, (126,76,0): 251, 249, 237, (126,77,0): 255, 252, 240, (126,78,0): 255, 253, 241, (126,79,0): 255, 249, 234, (126,80,0): 255, 224, 203, (126,81,0): 234, 168, 144, (126,82,0): 183, 111, 89, (126,83,0): 168, 87, 68, (126,84,0): 174, 85, 69, (126,85,0): 183, 82, 70, (126,86,0): 185, 77, 65, (126,87,0): 191, 74, 65, (126,88,0): 195, 71, 63, (126,89,0): 198, 69, 63, (126,90,0): 202, 69, 64, (126,91,0): 203, 68, 64, (126,92,0): 205, 68, 62, (126,93,0): 204, 67, 61, (126,94,0): 203, 66, 60, (126,95,0): 204, 65, 60, (126,96,0): 209, 67, 63, (126,97,0): 208, 69, 64, (126,98,0): 204, 69, 65, (126,99,0): 194, 67, 61, (126,100,0): 179, 61, 57, (126,101,0): 166, 59, 53, (126,102,0): 156, 59, 53, (126,103,0): 149, 60, 54, (126,104,0): 140, 60, 51, (126,105,0): 135, 61, 52, (126,106,0): 133, 60, 53, (126,107,0): 129, 61, 52, (126,108,0): 127, 60, 51, (126,109,0): 126, 60, 48, (126,110,0): 127, 61, 49, (126,111,0): 127, 61, 49, (126,112,0): 126, 58, 47, (126,113,0): 126, 58, 47, (126,114,0): 126, 58, 47, (126,115,0): 125, 57, 46, (126,116,0): 124, 57, 48, (126,117,0): 123, 56, 47, (126,118,0): 123, 56, 47, (126,119,0): 123, 56, 47, (126,120,0): 123, 59, 50, (126,121,0): 123, 59, 50, (126,122,0): 121, 58, 51, (126,123,0): 120, 57, 50, (126,124,0): 119, 56, 49, (126,125,0): 118, 55, 48, (126,126,0): 118, 55, 48, (126,127,0): 115, 55, 47, (126,128,0): 110, 55, 48, (126,129,0): 106, 56, 47, (126,130,0): 106, 56, 47, (126,131,0): 106, 56, 47, (126,132,0): 106, 56, 47, (126,133,0): 104, 56, 46, (126,134,0): 104, 56, 46, (126,135,0): 104, 56, 46, (126,136,0): 103, 55, 45, (126,137,0): 102, 55, 45, (126,138,0): 102, 55, 45, (126,139,0): 102, 55, 45, (126,140,0): 100, 56, 45, (126,141,0): 100, 56, 45, (126,142,0): 100, 56, 45, (126,143,0): 102, 55, 45, (126,144,0): 103, 54, 47, (126,145,0): 104, 55, 48, (126,146,0): 105, 56, 49, (126,147,0): 105, 56, 49, (126,148,0): 104, 55, 48, (126,149,0): 105, 56, 49, (126,150,0): 106, 59, 51, (126,151,0): 108, 61, 53, (126,152,0): 103, 56, 48, (126,153,0): 107, 60, 52, (126,154,0): 98, 54, 45, (126,155,0): 97, 53, 44, (126,156,0): 111, 67, 58, (126,157,0): 120, 76, 67, (126,158,0): 116, 73, 64, (126,159,0): 110, 77, 68, (126,160,0): 67, 57, 48, (126,161,0): 53, 54, 46, (126,162,0): 52, 53, 47, (126,163,0): 56, 57, 49, (126,164,0): 56, 59, 50, (126,165,0): 52, 55, 46, (126,166,0): 49, 52, 43, (126,167,0): 50, 53, 44, (126,168,0): 53, 56, 45, (126,169,0): 53, 56, 45, (126,170,0): 53, 55, 44, (126,171,0): 52, 54, 43, (126,172,0): 52, 54, 43, (126,173,0): 52, 54, 43, (126,174,0): 52, 54, 41, (126,175,0): 51, 55, 41, (126,176,0): 47, 55, 40, (126,177,0): 46, 57, 41, (126,178,0): 48, 56, 43, (126,179,0): 46, 57, 41, (126,180,0): 46, 57, 43, (126,181,0): 46, 57, 41, (126,182,0): 48, 56, 41, (126,183,0): 48, 56, 41, (126,184,0): 49, 57, 42, (126,185,0): 48, 56, 41, (126,186,0): 48, 56, 43, (126,187,0): 47, 55, 42, (126,188,0): 48, 56, 43, (126,189,0): 49, 57, 44, (126,190,0): 51, 59, 46, (126,191,0): 52, 60, 45, (126,192,0): 57, 66, 49, (126,193,0): 58, 67, 48, (126,194,0): 59, 66, 48, (126,195,0): 58, 65, 49, (126,196,0): 58, 60, 46, (126,197,0): 54, 56, 42, (126,198,0): 50, 52, 38, (126,199,0): 47, 51, 36, (126,200,0): 50, 57, 39, (126,201,0): 73, 85, 63, (126,202,0): 99, 117, 91, (126,203,0): 109, 132, 103, (126,204,0): 102, 132, 98, (126,205,0): 87, 121, 84, (126,206,0): 73, 110, 69, (126,207,0): 63, 100, 56, (126,208,0): 72, 103, 59, (126,209,0): 76, 105, 59, (126,210,0): 78, 107, 61, (126,211,0): 78, 107, 61, (126,212,0): 76, 105, 59, (126,213,0): 76, 105, 59, (126,214,0): 77, 106, 60, (126,215,0): 79, 108, 62, (126,216,0): 85, 114, 68, (126,217,0): 89, 118, 72, (126,218,0): 91, 120, 74, (126,219,0): 93, 122, 76, (126,220,0): 94, 123, 77, (126,221,0): 92, 121, 75, (126,222,0): 81, 110, 64, (126,223,0): 71, 95, 59, (126,224,0): 54, 66, 52, (126,225,0): 43, 52, 47, (126,226,0): 34, 40, 38, (127,0,0): 103, 100, 83, (127,1,0): 103, 100, 83, (127,2,0): 103, 100, 83, (127,3,0): 103, 100, 83, (127,4,0): 103, 100, 83, (127,5,0): 103, 100, 83, (127,6,0): 103, 100, 83, (127,7,0): 103, 100, 83, (127,8,0): 103, 100, 83, (127,9,0): 103, 100, 83, (127,10,0): 103, 100, 83, (127,11,0): 103, 100, 83, (127,12,0): 103, 100, 83, (127,13,0): 103, 100, 83, (127,14,0): 103, 100, 83, (127,15,0): 105, 99, 83, (127,16,0): 106, 99, 83, (127,17,0): 106, 99, 83, (127,18,0): 106, 98, 85, (127,19,0): 108, 98, 86, (127,20,0): 108, 98, 86, (127,21,0): 109, 99, 87, (127,22,0): 109, 100, 85, (127,23,0): 109, 100, 85, (127,24,0): 109, 100, 85, (127,25,0): 108, 101, 85, (127,26,0): 109, 102, 86, (127,27,0): 110, 103, 87, (127,28,0): 111, 103, 90, (127,29,0): 110, 104, 92, (127,30,0): 111, 104, 94, (127,31,0): 109, 106, 101, (127,32,0): 107, 111, 114, (127,33,0): 109, 116, 122, (127,34,0): 131, 138, 144, (127,35,0): 165, 174, 179, (127,36,0): 195, 204, 209, (127,37,0): 213, 223, 225, (127,38,0): 230, 238, 241, (127,39,0): 244, 252, 254, (127,40,0): 244, 253, 250, (127,41,0): 247, 253, 249, (127,42,0): 249, 254, 247, (127,43,0): 250, 255, 244, (127,44,0): 252, 255, 242, (127,45,0): 252, 255, 241, (127,46,0): 252, 255, 238, (127,47,0): 253, 254, 240, (127,48,0): 251, 248, 239, (127,49,0): 254, 250, 241, (127,50,0): 255, 249, 239, (127,51,0): 255, 250, 237, (127,52,0): 255, 249, 233, (127,53,0): 255, 242, 223, (127,54,0): 239, 224, 203, (127,55,0): 221, 206, 183, (127,56,0): 193, 178, 155, (127,57,0): 162, 151, 129, (127,58,0): 124, 117, 98, (127,59,0): 98, 95, 78, (127,60,0): 88, 90, 76, (127,61,0): 93, 99, 87, (127,62,0): 109, 119, 110, (127,63,0): 124, 134, 125, (127,64,0): 165, 173, 162, (127,65,0): 187, 193, 181, (127,66,0): 215, 215, 207, (127,67,0): 235, 230, 226, (127,68,0): 250, 238, 238, (127,69,0): 255, 244, 244, (127,70,0): 255, 245, 247, (127,71,0): 254, 244, 245, (127,72,0): 253, 247, 247, (127,73,0): 250, 249, 247, (127,74,0): 250, 252, 247, (127,75,0): 251, 255, 249, (127,76,0): 250, 253, 244, (127,77,0): 244, 247, 238, (127,78,0): 247, 249, 238, (127,79,0): 255, 252, 239, (127,80,0): 255, 242, 225, (127,81,0): 255, 242, 224, (127,82,0): 250, 201, 184, (127,83,0): 188, 129, 113, (127,84,0): 157, 85, 71, (127,85,0): 171, 85, 72, (127,86,0): 183, 85, 74, (127,87,0): 177, 69, 59, (127,88,0): 192, 74, 64, (127,89,0): 198, 71, 64, (127,90,0): 201, 70, 62, (127,91,0): 202, 69, 62, (127,92,0): 202, 67, 61, (127,93,0): 201, 66, 60, (127,94,0): 199, 66, 59, (127,95,0): 200, 65, 59, (127,96,0): 207, 70, 62, (127,97,0): 205, 71, 62, (127,98,0): 199, 71, 62, (127,99,0): 188, 67, 59, (127,100,0): 173, 62, 53, (127,101,0): 159, 58, 50, (127,102,0): 149, 59, 51, (127,103,0): 145, 62, 54, (127,104,0): 138, 61, 53, (127,105,0): 132, 62, 52, (127,106,0): 130, 62, 53, (127,107,0): 129, 61, 52, (127,108,0): 127, 60, 51, (127,109,0): 126, 60, 48, (127,110,0): 128, 60, 49, (127,111,0): 128, 60, 49, (127,112,0): 126, 58, 47, (127,113,0): 126, 58, 47, (127,114,0): 126, 58, 49, (127,115,0): 125, 57, 48, (127,116,0): 124, 57, 48, (127,117,0): 123, 56, 47, (127,118,0): 123, 56, 47, (127,119,0): 123, 56, 47, (127,120,0): 122, 58, 49, (127,121,0): 122, 58, 49, (127,122,0): 120, 57, 50, (127,123,0): 119, 56, 49, (127,124,0): 118, 55, 48, (127,125,0): 117, 54, 47, (127,126,0): 117, 54, 47, (127,127,0): 113, 54, 46, (127,128,0): 109, 56, 48, (127,129,0): 107, 57, 48, (127,130,0): 106, 56, 47, (127,131,0): 106, 56, 47, (127,132,0): 105, 57, 47, (127,133,0): 105, 57, 47, (127,134,0): 105, 57, 47, (127,135,0): 104, 56, 46, (127,136,0): 103, 55, 45, (127,137,0): 102, 55, 45, (127,138,0): 103, 55, 45, (127,139,0): 102, 55, 45, (127,140,0): 102, 55, 45, (127,141,0): 102, 55, 45, (127,142,0): 102, 55, 45, (127,143,0): 102, 55, 45, (127,144,0): 102, 53, 46, (127,145,0): 106, 56, 49, (127,146,0): 109, 59, 52, (127,147,0): 107, 58, 51, (127,148,0): 106, 57, 50, (127,149,0): 106, 58, 48, (127,150,0): 109, 62, 52, (127,151,0): 111, 67, 56, (127,152,0): 108, 64, 53, (127,153,0): 111, 68, 59, (127,154,0): 100, 60, 50, (127,155,0): 99, 61, 50, (127,156,0): 122, 86, 74, (127,157,0): 134, 100, 90, (127,158,0): 121, 87, 77, (127,159,0): 98, 76, 65, (127,160,0): 62, 58, 49, (127,161,0): 51, 56, 49, (127,162,0): 52, 57, 50, (127,163,0): 55, 60, 53, (127,164,0): 52, 58, 48, (127,165,0): 47, 53, 43, (127,166,0): 50, 53, 44, (127,167,0): 57, 60, 51, (127,168,0): 51, 54, 43, (127,169,0): 50, 53, 42, (127,170,0): 50, 52, 41, (127,171,0): 48, 51, 40, (127,172,0): 49, 51, 40, (127,173,0): 50, 53, 42, (127,174,0): 52, 54, 43, (127,175,0): 52, 55, 44, (127,176,0): 46, 54, 41, (127,177,0): 44, 55, 41, (127,178,0): 47, 55, 42, (127,179,0): 45, 56, 42, (127,180,0): 47, 55, 42, (127,181,0): 47, 55, 42, (127,182,0): 47, 55, 42, (127,183,0): 47, 55, 42, (127,184,0): 49, 57, 44, (127,185,0): 48, 56, 43, (127,186,0): 48, 56, 45, (127,187,0): 47, 55, 44, (127,188,0): 47, 55, 44, (127,189,0): 47, 55, 44, (127,190,0): 48, 56, 45, (127,191,0): 48, 56, 43, (127,192,0): 55, 63, 48, (127,193,0): 57, 66, 49, (127,194,0): 60, 69, 52, (127,195,0): 61, 68, 52, (127,196,0): 59, 65, 51, (127,197,0): 56, 60, 46, (127,198,0): 50, 54, 39, (127,199,0): 45, 52, 36, (127,200,0): 50, 59, 42, (127,201,0): 74, 86, 66, (127,202,0): 99, 114, 91, (127,203,0): 104, 124, 97, (127,204,0): 93, 118, 88, (127,205,0): 79, 109, 75, (127,206,0): 70, 102, 65, (127,207,0): 65, 97, 58, (127,208,0): 72, 100, 59, (127,209,0): 75, 104, 60, (127,210,0): 78, 107, 63, (127,211,0): 78, 107, 63, (127,212,0): 75, 104, 60, (127,213,0): 74, 103, 57, (127,214,0): 76, 105, 61, (127,215,0): 78, 107, 61, (127,216,0): 84, 113, 69, (127,217,0): 87, 116, 72, (127,218,0): 90, 119, 75, (127,219,0): 91, 120, 76, (127,220,0): 93, 122, 78, (127,221,0): 90, 118, 77, (127,222,0): 78, 106, 65, (127,223,0): 67, 91, 59, (127,224,0): 50, 62, 52, (127,225,0): 41, 47, 47, (127,226,0): 31, 37, 37, (128,0,0): 104, 101, 86, (128,1,0): 104, 101, 86, (128,2,0): 104, 101, 86, (128,3,0): 104, 101, 86, (128,4,0): 104, 101, 86, (128,5,0): 104, 101, 86, (128,6,0): 104, 101, 86, (128,7,0): 104, 101, 86, (128,8,0): 104, 101, 86, (128,9,0): 104, 101, 86, (128,10,0): 104, 101, 86, (128,11,0): 104, 101, 86, (128,12,0): 104, 101, 86, (128,13,0): 104, 101, 86, (128,14,0): 104, 101, 86, (128,15,0): 104, 101, 86, (128,16,0): 106, 100, 86, (128,17,0): 106, 100, 86, (128,18,0): 106, 100, 88, (128,19,0): 108, 100, 89, (128,20,0): 108, 99, 90, (128,21,0): 109, 101, 90, (128,22,0): 109, 101, 88, (128,23,0): 109, 102, 86, (128,24,0): 103, 96, 78, (128,25,0): 106, 101, 82, (128,26,0): 110, 107, 88, (128,27,0): 111, 108, 93, (128,28,0): 104, 101, 92, (128,29,0): 102, 101, 97, (128,30,0): 115, 113, 114, (128,31,0): 129, 130, 134, (128,32,0): 137, 142, 146, (128,33,0): 149, 157, 160, (128,34,0): 170, 178, 181, (128,35,0): 194, 199, 202, (128,36,0): 215, 220, 223, (128,37,0): 233, 237, 238, (128,38,0): 245, 246, 248, (128,39,0): 248, 250, 249, (128,40,0): 252, 254, 253, (128,41,0): 254, 254, 252, (128,42,0): 255, 255, 250, (128,43,0): 253, 254, 246, (128,44,0): 250, 253, 242, (128,45,0): 249, 252, 241, (128,46,0): 250, 253, 242, (128,47,0): 251, 254, 243, (128,48,0): 249, 250, 242, (128,49,0): 250, 250, 242, (128,50,0): 249, 249, 237, (128,51,0): 252, 250, 235, (128,52,0): 254, 252, 231, (128,53,0): 249, 247, 222, (128,54,0): 233, 229, 202, (128,55,0): 213, 212, 182, (128,56,0): 186, 185, 155, (128,57,0): 152, 152, 124, (128,58,0): 113, 116, 89, (128,59,0): 95, 100, 77, (128,60,0): 98, 107, 88, (128,61,0): 114, 125, 108, (128,62,0): 132, 144, 130, (128,63,0): 145, 155, 144, (128,64,0): 180, 185, 178, (128,65,0): 202, 204, 199, (128,66,0): 226, 227, 222, (128,67,0): 240, 239, 235, (128,68,0): 247, 243, 242, (128,69,0): 251, 247, 246, (128,70,0): 253, 249, 248, (128,71,0): 252, 248, 247, (128,72,0): 255, 254, 252, (128,73,0): 254, 254, 252, (128,74,0): 254, 254, 252, (128,75,0): 253, 255, 250, (128,76,0): 254, 255, 250, (128,77,0): 254, 255, 250, (128,78,0): 254, 255, 250, (128,79,0): 254, 255, 250, (128,80,0): 251, 253, 248, (128,81,0): 255, 253, 248, (128,82,0): 255, 251, 246, (128,83,0): 255, 229, 223, (128,84,0): 215, 166, 159, (128,85,0): 163, 96, 88, (128,86,0): 155, 68, 61, (128,87,0): 178, 75, 66, (128,88,0): 193, 79, 69, (128,89,0): 195, 71, 61, (128,90,0): 198, 67, 57, (128,91,0): 201, 68, 59, (128,92,0): 205, 72, 63, (128,93,0): 206, 73, 64, (128,94,0): 203, 72, 64, (128,95,0): 202, 71, 61, (128,96,0): 198, 71, 56, (128,97,0): 195, 72, 56, (128,98,0): 190, 73, 56, (128,99,0): 181, 71, 56, (128,100,0): 166, 69, 53, (128,101,0): 154, 66, 52, (128,102,0): 144, 66, 53, (128,103,0): 139, 67, 53, (128,104,0): 133, 67, 53, (128,105,0): 129, 67, 54, (128,106,0): 127, 65, 52, (128,107,0): 127, 63, 51, (128,108,0): 128, 62, 50, (128,109,0): 128, 60, 49, (128,110,0): 129, 59, 49, (128,111,0): 129, 59, 49, (128,112,0): 127, 57, 49, (128,113,0): 126, 58, 49, (128,114,0): 124, 57, 49, (128,115,0): 123, 56, 48, (128,116,0): 122, 55, 47, (128,117,0): 122, 55, 47, (128,118,0): 119, 55, 46, (128,119,0): 118, 54, 45, (128,120,0): 119, 55, 46, (128,121,0): 119, 55, 46, (128,122,0): 119, 56, 47, (128,123,0): 119, 56, 47, (128,124,0): 118, 55, 46, (128,125,0): 117, 54, 45, (128,126,0): 113, 53, 43, (128,127,0): 110, 51, 43, (128,128,0): 108, 55, 47, (128,129,0): 105, 56, 49, (128,130,0): 105, 56, 49, (128,131,0): 104, 55, 48, (128,132,0): 104, 55, 48, (128,133,0): 103, 54, 47, (128,134,0): 103, 54, 47, (128,135,0): 103, 54, 47, (128,136,0): 102, 53, 46, (128,137,0): 103, 54, 47, (128,138,0): 105, 55, 48, (128,139,0): 105, 56, 49, (128,140,0): 104, 55, 48, (128,141,0): 103, 54, 47, (128,142,0): 101, 52, 45, (128,143,0): 101, 51, 44, (128,144,0): 104, 51, 45, (128,145,0): 106, 53, 47, (128,146,0): 109, 56, 48, (128,147,0): 107, 57, 48, (128,148,0): 106, 58, 48, (128,149,0): 105, 59, 46, (128,150,0): 105, 61, 48, (128,151,0): 107, 65, 51, (128,152,0): 103, 66, 50, (128,153,0): 106, 73, 58, (128,154,0): 100, 72, 58, (128,155,0): 118, 95, 79, (128,156,0): 126, 107, 92, (128,157,0): 138, 120, 106, (128,158,0): 140, 127, 111, (128,159,0): 82, 74, 61, (128,160,0): 55, 57, 46, (128,161,0): 52, 58, 48, (128,162,0): 52, 58, 48, (128,163,0): 51, 57, 47, (128,164,0): 51, 57, 47, (128,165,0): 51, 57, 47, (128,166,0): 50, 56, 46, (128,167,0): 50, 56, 46, (128,168,0): 49, 55, 45, (128,169,0): 49, 55, 45, (128,170,0): 51, 54, 45, (128,171,0): 48, 54, 44, (128,172,0): 50, 53, 44, (128,173,0): 47, 53, 43, (128,174,0): 49, 52, 43, (128,175,0): 47, 53, 43, (128,176,0): 47, 52, 45, (128,177,0): 46, 53, 45, (128,178,0): 47, 52, 45, (128,179,0): 46, 53, 45, (128,180,0): 47, 52, 45, (128,181,0): 47, 52, 45, (128,182,0): 47, 52, 45, (128,183,0): 47, 52, 45, (128,184,0): 48, 53, 46, (128,185,0): 47, 52, 45, (128,186,0): 47, 52, 45, (128,187,0): 46, 51, 44, (128,188,0): 46, 51, 44, (128,189,0): 47, 52, 45, (128,190,0): 47, 52, 45, (128,191,0): 47, 54, 46, (128,192,0): 49, 59, 50, (128,193,0): 51, 61, 50, (128,194,0): 54, 64, 53, (128,195,0): 56, 66, 55, (128,196,0): 57, 68, 54, (128,197,0): 55, 66, 52, (128,198,0): 53, 64, 48, (128,199,0): 51, 62, 45, (128,200,0): 52, 63, 46, (128,201,0): 68, 81, 61, (128,202,0): 87, 101, 78, (128,203,0): 91, 107, 81, (128,204,0): 80, 98, 72, (128,205,0): 69, 88, 60, (128,206,0): 64, 84, 56, (128,207,0): 66, 87, 54, (128,208,0): 73, 99, 62, (128,209,0): 75, 101, 62, (128,210,0): 75, 102, 61, (128,211,0): 75, 102, 61, (128,212,0): 74, 101, 60, (128,213,0): 74, 101, 58, (128,214,0): 76, 103, 62, (128,215,0): 79, 106, 63, (128,216,0): 85, 112, 71, (128,217,0): 89, 116, 75, (128,218,0): 92, 118, 79, (128,219,0): 93, 119, 80, (128,220,0): 93, 119, 82, (128,221,0): 87, 113, 78, (128,222,0): 72, 98, 63, (128,223,0): 59, 79, 54, (128,224,0): 37, 48, 42, (128,225,0): 38, 43, 46, (128,226,0): 36, 41, 44, (129,0,0): 104, 101, 86, (129,1,0): 104, 101, 86, (129,2,0): 104, 101, 86, (129,3,0): 104, 101, 86, (129,4,0): 104, 101, 86, (129,5,0): 104, 101, 86, (129,6,0): 104, 101, 86, (129,7,0): 104, 101, 86, (129,8,0): 104, 101, 86, (129,9,0): 104, 101, 86, (129,10,0): 104, 101, 86, (129,11,0): 104, 101, 86, (129,12,0): 104, 101, 86, (129,13,0): 104, 101, 86, (129,14,0): 104, 101, 86, (129,15,0): 104, 101, 86, (129,16,0): 104, 101, 86, (129,17,0): 104, 101, 86, (129,18,0): 106, 99, 89, (129,19,0): 107, 100, 90, (129,20,0): 108, 99, 92, (129,21,0): 109, 100, 91, (129,22,0): 109, 101, 90, (129,23,0): 109, 102, 86, (129,24,0): 105, 100, 81, (129,25,0): 106, 104, 83, (129,26,0): 109, 106, 87, (129,27,0): 106, 107, 91, (129,28,0): 103, 103, 95, (129,29,0): 108, 108, 108, (129,30,0): 126, 127, 132, (129,31,0): 144, 147, 154, (129,32,0): 167, 174, 180, (129,33,0): 183, 193, 195, (129,34,0): 208, 213, 216, (129,35,0): 225, 230, 233, (129,36,0): 241, 242, 244, (129,37,0): 250, 251, 253, (129,38,0): 255, 254, 255, (129,39,0): 255, 254, 255, (129,40,0): 254, 253, 251, (129,41,0): 255, 254, 250, (129,42,0): 255, 255, 250, (129,43,0): 254, 255, 249, (129,44,0): 251, 252, 244, (129,45,0): 248, 251, 242, (129,46,0): 246, 252, 242, (129,47,0): 247, 253, 243, (129,48,0): 247, 250, 241, (129,49,0): 248, 250, 239, (129,50,0): 248, 250, 237, (129,51,0): 247, 250, 233, (129,52,0): 249, 251, 229, (129,53,0): 242, 245, 218, (129,54,0): 223, 226, 195, (129,55,0): 204, 208, 175, (129,56,0): 180, 184, 151, (129,57,0): 145, 150, 118, (129,58,0): 107, 113, 85, (129,59,0): 89, 97, 73, (129,60,0): 95, 107, 85, (129,61,0): 116, 129, 111, (129,62,0): 140, 152, 138, (129,63,0): 157, 167, 156, (129,64,0): 191, 193, 188, (129,65,0): 211, 211, 209, (129,66,0): 231, 231, 229, (129,67,0): 243, 243, 241, (129,68,0): 247, 247, 245, (129,69,0): 251, 251, 249, (129,70,0): 252, 252, 250, (129,71,0): 251, 251, 249, (129,72,0): 254, 254, 252, (129,73,0): 254, 254, 252, (129,74,0): 254, 254, 252, (129,75,0): 254, 254, 252, (129,76,0): 254, 254, 252, (129,77,0): 254, 254, 252, (129,78,0): 254, 254, 252, (129,79,0): 251, 255, 254, (129,80,0): 241, 255, 255, (129,81,0): 237, 251, 252, (129,82,0): 247, 249, 248, (129,83,0): 255, 248, 247, (129,84,0): 255, 233, 230, (129,85,0): 239, 190, 185, (129,86,0): 196, 128, 119, (129,87,0): 164, 80, 70, (129,88,0): 176, 78, 65, (129,89,0): 186, 76, 63, (129,90,0): 193, 75, 63, (129,91,0): 196, 74, 61, (129,92,0): 194, 68, 56, (129,93,0): 188, 61, 52, (129,94,0): 190, 63, 54, (129,95,0): 196, 70, 58, (129,96,0): 196, 70, 55, (129,97,0): 195, 74, 55, (129,98,0): 191, 76, 58, (129,99,0): 180, 73, 55, (129,100,0): 166, 70, 54, (129,101,0): 153, 67, 50, (129,102,0): 144, 68, 54, (129,103,0): 138, 71, 55, (129,104,0): 130, 68, 55, (129,105,0): 127, 67, 56, (129,106,0): 126, 66, 55, (129,107,0): 124, 64, 53, (129,108,0): 126, 62, 52, (129,109,0): 127, 60, 51, (129,110,0): 128, 60, 49, (129,111,0): 128, 60, 51, (129,112,0): 125, 58, 50, (129,113,0): 125, 58, 50, (129,114,0): 122, 58, 49, (129,115,0): 122, 58, 49, (129,116,0): 121, 57, 48, (129,117,0): 120, 56, 47, (129,118,0): 118, 55, 46, (129,119,0): 118, 55, 46, (129,120,0): 117, 54, 45, (129,121,0): 118, 55, 46, (129,122,0): 116, 56, 46, (129,123,0): 116, 56, 46, (129,124,0): 116, 56, 46, (129,125,0): 114, 54, 44, (129,126,0): 111, 53, 42, (129,127,0): 109, 52, 43, (129,128,0): 108, 55, 47, (129,129,0): 105, 56, 49, (129,130,0): 106, 56, 49, (129,131,0): 104, 55, 48, (129,132,0): 105, 55, 48, (129,133,0): 104, 55, 48, (129,134,0): 103, 54, 47, (129,135,0): 103, 54, 47, (129,136,0): 101, 51, 44, (129,137,0): 101, 51, 44, (129,138,0): 103, 53, 46, (129,139,0): 104, 54, 47, (129,140,0): 106, 56, 49, (129,141,0): 106, 56, 49, (129,142,0): 106, 56, 49, (129,143,0): 107, 57, 50, (129,144,0): 107, 54, 48, (129,145,0): 108, 55, 49, (129,146,0): 107, 57, 48, (129,147,0): 107, 59, 49, (129,148,0): 107, 59, 47, (129,149,0): 106, 62, 49, (129,150,0): 106, 64, 48, (129,151,0): 105, 68, 50, (129,152,0): 103, 72, 54, (129,153,0): 107, 80, 61, (129,154,0): 103, 82, 65, (129,155,0): 117, 102, 83, (129,156,0): 129, 117, 101, (129,157,0): 140, 133, 115, (129,158,0): 134, 131, 114, (129,159,0): 75, 76, 60, (129,160,0): 54, 57, 46, (129,161,0): 51, 57, 47, (129,162,0): 51, 57, 47, (129,163,0): 51, 57, 47, (129,164,0): 50, 56, 46, (129,165,0): 50, 56, 46, (129,166,0): 50, 56, 46, (129,167,0): 49, 55, 45, (129,168,0): 49, 55, 45, (129,169,0): 49, 55, 45, (129,170,0): 49, 55, 45, (129,171,0): 48, 54, 44, (129,172,0): 48, 54, 44, (129,173,0): 47, 53, 43, (129,174,0): 47, 53, 43, (129,175,0): 47, 53, 43, (129,176,0): 47, 52, 46, (129,177,0): 47, 52, 46, (129,178,0): 47, 52, 46, (129,179,0): 47, 52, 46, (129,180,0): 47, 52, 46, (129,181,0): 47, 52, 46, (129,182,0): 47, 52, 46, (129,183,0): 47, 52, 46, (129,184,0): 48, 53, 47, (129,185,0): 47, 52, 46, (129,186,0): 46, 51, 45, (129,187,0): 46, 51, 45, (129,188,0): 46, 51, 45, (129,189,0): 46, 51, 45, (129,190,0): 47, 52, 46, (129,191,0): 47, 54, 47, (129,192,0): 46, 56, 48, (129,193,0): 47, 58, 50, (129,194,0): 49, 61, 51, (129,195,0): 52, 64, 54, (129,196,0): 54, 66, 54, (129,197,0): 54, 66, 54, (129,198,0): 54, 66, 52, (129,199,0): 53, 66, 49, (129,200,0): 54, 67, 49, (129,201,0): 67, 80, 62, (129,202,0): 80, 93, 73, (129,203,0): 82, 96, 73, (129,204,0): 73, 87, 64, (129,205,0): 65, 79, 54, (129,206,0): 66, 80, 55, (129,207,0): 69, 85, 58, (129,208,0): 74, 98, 64, (129,209,0): 74, 100, 63, (129,210,0): 75, 101, 64, (129,211,0): 75, 101, 62, (129,212,0): 73, 99, 60, (129,213,0): 72, 99, 58, (129,214,0): 73, 100, 59, (129,215,0): 74, 101, 60, (129,216,0): 83, 110, 69, (129,217,0): 88, 114, 75, (129,218,0): 92, 118, 81, (129,219,0): 93, 119, 84, (129,220,0): 91, 116, 84, (129,221,0): 84, 109, 79, (129,222,0): 67, 92, 62, (129,223,0): 54, 73, 53, (129,224,0): 38, 49, 45, (129,225,0): 39, 44, 48, (129,226,0): 37, 42, 46, (130,0,0): 104, 101, 86, (130,1,0): 104, 101, 86, (130,2,0): 104, 101, 86, (130,3,0): 104, 101, 86, (130,4,0): 104, 101, 86, (130,5,0): 104, 101, 86, (130,6,0): 104, 101, 86, (130,7,0): 104, 101, 86, (130,8,0): 104, 101, 86, (130,9,0): 104, 101, 86, (130,10,0): 104, 101, 86, (130,11,0): 104, 101, 86, (130,12,0): 104, 101, 86, (130,13,0): 104, 101, 86, (130,14,0): 104, 101, 86, (130,15,0): 104, 101, 86, (130,16,0): 104, 101, 86, (130,17,0): 104, 101, 86, (130,18,0): 106, 99, 89, (130,19,0): 107, 100, 90, (130,20,0): 108, 99, 92, (130,21,0): 109, 100, 91, (130,22,0): 109, 101, 90, (130,23,0): 109, 102, 86, (130,24,0): 109, 104, 85, (130,25,0): 107, 105, 84, (130,26,0): 109, 106, 87, (130,27,0): 106, 107, 91, (130,28,0): 107, 107, 99, (130,29,0): 119, 119, 119, (130,30,0): 145, 146, 151, (130,31,0): 167, 172, 178, (130,32,0): 190, 197, 203, (130,33,0): 209, 219, 221, (130,34,0): 235, 240, 243, (130,35,0): 246, 251, 254, (130,36,0): 253, 254, 255, (130,37,0): 254, 255, 255, (130,38,0): 255, 254, 255, (130,39,0): 255, 253, 254, (130,40,0): 254, 253, 251, (130,41,0): 255, 254, 250, (130,42,0): 255, 255, 250, (130,43,0): 253, 254, 248, (130,44,0): 250, 251, 243, (130,45,0): 245, 248, 239, (130,46,0): 241, 247, 235, (130,47,0): 241, 247, 235, (130,48,0): 244, 247, 236, (130,49,0): 245, 249, 235, (130,50,0): 246, 248, 234, (130,51,0): 245, 248, 229, (130,52,0): 245, 247, 225, (130,53,0): 238, 238, 212, (130,54,0): 219, 219, 191, (130,55,0): 201, 202, 171, (130,56,0): 176, 177, 146, (130,57,0): 147, 150, 121, (130,58,0): 117, 121, 96, (130,59,0): 107, 112, 90, (130,60,0): 116, 123, 105, (130,61,0): 136, 144, 129, (130,62,0): 159, 167, 156, (130,63,0): 174, 181, 173, (130,64,0): 205, 207, 202, (130,65,0): 222, 222, 220, (130,66,0): 239, 239, 237, (130,67,0): 248, 248, 246, (130,68,0): 251, 251, 249, (130,69,0): 254, 254, 252, (130,70,0): 254, 254, 252, (130,71,0): 253, 253, 251, (130,72,0): 254, 254, 252, (130,73,0): 254, 254, 252, (130,74,0): 254, 254, 252, (130,75,0): 254, 254, 252, (130,76,0): 254, 254, 252, (130,77,0): 254, 254, 252, (130,78,0): 254, 254, 252, (130,79,0): 253, 255, 254, (130,80,0): 245, 250, 253, (130,81,0): 251, 255, 255, (130,82,0): 254, 254, 254, (130,83,0): 255, 248, 246, (130,84,0): 255, 250, 244, (130,85,0): 255, 245, 235, (130,86,0): 248, 204, 193, (130,87,0): 215, 157, 143, (130,88,0): 147, 75, 60, (130,89,0): 164, 81, 65, (130,90,0): 168, 75, 58, (130,91,0): 167, 64, 49, (130,92,0): 183, 71, 59, (130,93,0): 207, 89, 77, (130,94,0): 206, 84, 73, (130,95,0): 189, 63, 51, (130,96,0): 196, 68, 55, (130,97,0): 198, 72, 58, (130,98,0): 195, 75, 61, (130,99,0): 185, 73, 59, (130,100,0): 170, 66, 55, (130,101,0): 157, 63, 51, (130,102,0): 149, 65, 55, (130,103,0): 144, 70, 59, (130,104,0): 134, 66, 57, (130,105,0): 129, 66, 57, (130,106,0): 126, 66, 56, (130,107,0): 123, 65, 54, (130,108,0): 122, 64, 53, (130,109,0): 122, 62, 52, (130,110,0): 122, 62, 52, (130,111,0): 122, 62, 52, (130,112,0): 120, 60, 52, (130,113,0): 120, 60, 52, (130,114,0): 119, 59, 51, (130,115,0): 119, 59, 51, (130,116,0): 117, 58, 50, (130,117,0): 116, 57, 49, (130,118,0): 116, 57, 49, (130,119,0): 116, 57, 49, (130,120,0): 114, 57, 48, (130,121,0): 114, 57, 48, (130,122,0): 114, 57, 48, (130,123,0): 114, 57, 48, (130,124,0): 111, 57, 47, (130,125,0): 110, 56, 46, (130,126,0): 108, 54, 44, (130,127,0): 107, 53, 43, (130,128,0): 108, 55, 47, (130,129,0): 106, 56, 49, (130,130,0): 108, 55, 49, (130,131,0): 106, 56, 49, (130,132,0): 107, 54, 48, (130,133,0): 105, 55, 48, (130,134,0): 105, 55, 48, (130,135,0): 104, 54, 47, (130,136,0): 103, 53, 46, (130,137,0): 103, 53, 46, (130,138,0): 102, 53, 46, (130,139,0): 103, 54, 47, (130,140,0): 104, 55, 48, (130,141,0): 105, 56, 49, (130,142,0): 107, 58, 51, (130,143,0): 107, 58, 51, (130,144,0): 108, 59, 52, (130,145,0): 106, 59, 51, (130,146,0): 105, 58, 48, (130,147,0): 104, 60, 49, (130,148,0): 107, 63, 50, (130,149,0): 106, 67, 52, (130,150,0): 105, 68, 50, (130,151,0): 102, 69, 50, (130,152,0): 102, 73, 55, (130,153,0): 108, 86, 65, (130,154,0): 106, 89, 71, (130,155,0): 117, 106, 86, (130,156,0): 134, 127, 109, (130,157,0): 145, 142, 123, (130,158,0): 128, 127, 109, (130,159,0): 69, 70, 54, (130,160,0): 53, 56, 45, (130,161,0): 50, 56, 46, (130,162,0): 50, 56, 46, (130,163,0): 50, 56, 46, (130,164,0): 49, 55, 45, (130,165,0): 49, 55, 45, (130,166,0): 49, 55, 45, (130,167,0): 48, 54, 44, (130,168,0): 49, 55, 45, (130,169,0): 49, 55, 45, (130,170,0): 49, 55, 45, (130,171,0): 48, 54, 44, (130,172,0): 48, 54, 44, (130,173,0): 47, 53, 43, (130,174,0): 47, 53, 43, (130,175,0): 47, 53, 43, (130,176,0): 47, 52, 46, (130,177,0): 47, 52, 46, (130,178,0): 47, 52, 46, (130,179,0): 47, 52, 46, (130,180,0): 47, 52, 46, (130,181,0): 47, 52, 46, (130,182,0): 47, 52, 46, (130,183,0): 47, 52, 46, (130,184,0): 47, 52, 46, (130,185,0): 47, 52, 46, (130,186,0): 46, 51, 45, (130,187,0): 45, 50, 44, (130,188,0): 45, 50, 44, (130,189,0): 46, 51, 45, (130,190,0): 47, 52, 46, (130,191,0): 46, 53, 46, (130,192,0): 43, 53, 45, (130,193,0): 43, 54, 46, (130,194,0): 45, 57, 47, (130,195,0): 47, 59, 49, (130,196,0): 50, 62, 50, (130,197,0): 52, 64, 52, (130,198,0): 54, 66, 52, (130,199,0): 55, 68, 51, (130,200,0): 56, 69, 51, (130,201,0): 63, 76, 58, (130,202,0): 69, 82, 62, (130,203,0): 67, 81, 58, (130,204,0): 59, 73, 50, (130,205,0): 56, 70, 45, (130,206,0): 62, 76, 51, (130,207,0): 68, 84, 57, (130,208,0): 74, 95, 64, (130,209,0): 74, 98, 64, (130,210,0): 76, 100, 66, (130,211,0): 75, 99, 63, (130,212,0): 73, 97, 61, (130,213,0): 71, 96, 57, (130,214,0): 70, 95, 56, (130,215,0): 71, 96, 57, (130,216,0): 82, 107, 68, (130,217,0): 88, 112, 76, (130,218,0): 93, 117, 83, (130,219,0): 94, 118, 86, (130,220,0): 90, 113, 84, (130,221,0): 80, 103, 75, (130,222,0): 61, 84, 56, (130,223,0): 46, 65, 46, (130,224,0): 38, 49, 45, (130,225,0): 39, 44, 48, (130,226,0): 37, 42, 46, (131,0,0): 104, 101, 86, (131,1,0): 104, 101, 86, (131,2,0): 104, 101, 86, (131,3,0): 104, 101, 86, (131,4,0): 104, 101, 86, (131,5,0): 104, 101, 86, (131,6,0): 104, 101, 86, (131,7,0): 104, 101, 86, (131,8,0): 104, 101, 86, (131,9,0): 104, 101, 86, (131,10,0): 104, 101, 86, (131,11,0): 104, 101, 86, (131,12,0): 104, 101, 86, (131,13,0): 104, 101, 86, (131,14,0): 104, 101, 86, (131,15,0): 104, 101, 86, (131,16,0): 104, 101, 86, (131,17,0): 104, 101, 86, (131,18,0): 106, 99, 89, (131,19,0): 107, 100, 90, (131,20,0): 108, 99, 92, (131,21,0): 109, 100, 91, (131,22,0): 109, 101, 90, (131,23,0): 109, 102, 86, (131,24,0): 110, 105, 86, (131,25,0): 108, 106, 85, (131,26,0): 108, 107, 87, (131,27,0): 108, 109, 93, (131,28,0): 112, 113, 105, (131,29,0): 128, 130, 129, (131,30,0): 158, 161, 166, (131,31,0): 185, 190, 196, (131,32,0): 195, 202, 208, (131,33,0): 218, 228, 230, (131,34,0): 244, 249, 252, (131,35,0): 250, 255, 255, (131,36,0): 251, 252, 254, (131,37,0): 251, 252, 254, (131,38,0): 253, 251, 252, (131,39,0): 251, 250, 248, (131,40,0): 255, 254, 252, (131,41,0): 255, 255, 251, (131,42,0): 255, 254, 249, (131,43,0): 251, 252, 244, (131,44,0): 245, 246, 238, (131,45,0): 238, 241, 230, (131,46,0): 233, 239, 227, (131,47,0): 231, 237, 223, (131,48,0): 237, 241, 226, (131,49,0): 240, 244, 229, (131,50,0): 241, 244, 227, (131,51,0): 241, 244, 223, (131,52,0): 242, 241, 220, (131,53,0): 234, 234, 208, (131,54,0): 216, 216, 188, (131,55,0): 199, 199, 171, (131,56,0): 178, 177, 149, (131,57,0): 161, 161, 137, (131,58,0): 145, 147, 125, (131,59,0): 144, 147, 128, (131,60,0): 156, 158, 145, (131,61,0): 170, 173, 162, (131,62,0): 182, 187, 180, (131,63,0): 192, 197, 191, (131,64,0): 220, 220, 218, (131,65,0): 233, 233, 231, (131,66,0): 246, 246, 244, (131,67,0): 251, 251, 249, (131,68,0): 253, 253, 251, (131,69,0): 255, 255, 253, (131,70,0): 255, 255, 253, (131,71,0): 253, 253, 251, (131,72,0): 254, 254, 252, (131,73,0): 254, 254, 252, (131,74,0): 254, 254, 252, (131,75,0): 254, 254, 252, (131,76,0): 254, 254, 252, (131,77,0): 254, 254, 252, (131,78,0): 254, 254, 252, (131,79,0): 254, 254, 254, (131,80,0): 251, 251, 253, (131,81,0): 255, 254, 255, (131,82,0): 255, 254, 255, (131,83,0): 245, 240, 237, (131,84,0): 246, 237, 230, (131,85,0): 255, 249, 240, (131,86,0): 255, 250, 236, (131,87,0): 255, 238, 222, (131,88,0): 232, 191, 173, (131,89,0): 183, 127, 110, (131,90,0): 148, 79, 63, (131,91,0): 163, 80, 64, (131,92,0): 185, 89, 75, (131,93,0): 184, 78, 64, (131,94,0): 180, 68, 56, (131,95,0): 190, 69, 58, (131,96,0): 193, 65, 54, (131,97,0): 198, 70, 59, (131,98,0): 197, 73, 63, (131,99,0): 188, 71, 61, (131,100,0): 173, 64, 57, (131,101,0): 161, 60, 52, (131,102,0): 152, 62, 54, (131,103,0): 149, 66, 60, (131,104,0): 139, 64, 59, (131,105,0): 133, 66, 60, (131,106,0): 128, 65, 58, (131,107,0): 124, 65, 59, (131,108,0): 121, 64, 57, (131,109,0): 119, 64, 57, (131,110,0): 117, 64, 56, (131,111,0): 118, 63, 56, (131,112,0): 118, 61, 52, (131,113,0): 118, 61, 52, (131,114,0): 118, 61, 52, (131,115,0): 117, 60, 51, (131,116,0): 115, 61, 51, (131,117,0): 114, 60, 50, (131,118,0): 114, 60, 50, (131,119,0): 113, 59, 49, (131,120,0): 111, 59, 48, (131,121,0): 111, 59, 48, (131,122,0): 111, 59, 48, (131,123,0): 110, 58, 47, (131,124,0): 107, 57, 46, (131,125,0): 106, 56, 45, (131,126,0): 106, 56, 45, (131,127,0): 105, 55, 46, (131,128,0): 109, 56, 50, (131,129,0): 110, 55, 50, (131,130,0): 109, 54, 49, (131,131,0): 108, 55, 49, (131,132,0): 108, 55, 49, (131,133,0): 107, 54, 48, (131,134,0): 105, 55, 48, (131,135,0): 105, 55, 48, (131,136,0): 108, 58, 51, (131,137,0): 106, 57, 50, (131,138,0): 104, 55, 48, (131,139,0): 102, 55, 47, (131,140,0): 102, 55, 47, (131,141,0): 102, 55, 47, (131,142,0): 104, 57, 49, (131,143,0): 102, 58, 49, (131,144,0): 106, 63, 54, (131,145,0): 102, 62, 52, (131,146,0): 101, 61, 49, (131,147,0): 102, 62, 50, (131,148,0): 104, 67, 51, (131,149,0): 105, 69, 53, (131,150,0): 102, 71, 51, (131,151,0): 99, 71, 50, (131,152,0): 99, 74, 54, (131,153,0): 104, 86, 64, (131,154,0): 105, 92, 73, (131,155,0): 115, 107, 86, (131,156,0): 133, 130, 111, (131,157,0): 143, 142, 122, (131,158,0): 112, 113, 95, (131,159,0): 57, 61, 44, (131,160,0): 52, 55, 44, (131,161,0): 50, 56, 46, (131,162,0): 49, 55, 45, (131,163,0): 49, 55, 45, (131,164,0): 49, 55, 45, (131,165,0): 48, 54, 44, (131,166,0): 48, 54, 44, (131,167,0): 48, 54, 44, (131,168,0): 49, 55, 45, (131,169,0): 49, 55, 45, (131,170,0): 49, 55, 45, (131,171,0): 48, 54, 44, (131,172,0): 48, 54, 44, (131,173,0): 47, 53, 43, (131,174,0): 47, 53, 43, (131,175,0): 47, 53, 43, (131,176,0): 46, 51, 45, (131,177,0): 46, 51, 45, (131,178,0): 46, 51, 45, (131,179,0): 46, 51, 45, (131,180,0): 46, 51, 45, (131,181,0): 46, 51, 45, (131,182,0): 46, 51, 45, (131,183,0): 46, 51, 45, (131,184,0): 46, 51, 45, (131,185,0): 46, 51, 45, (131,186,0): 45, 50, 44, (131,187,0): 45, 50, 44, (131,188,0): 45, 50, 44, (131,189,0): 45, 50, 44, (131,190,0): 46, 51, 45, (131,191,0): 45, 52, 45, (131,192,0): 42, 52, 44, (131,193,0): 41, 52, 44, (131,194,0): 42, 54, 44, (131,195,0): 43, 55, 45, (131,196,0): 46, 58, 46, (131,197,0): 49, 61, 49, (131,198,0): 52, 64, 50, (131,199,0): 53, 65, 51, (131,200,0): 54, 67, 50, (131,201,0): 58, 71, 53, (131,202,0): 60, 73, 55, (131,203,0): 56, 69, 49, (131,204,0): 50, 63, 43, (131,205,0): 50, 64, 41, (131,206,0): 56, 70, 47, (131,207,0): 62, 78, 52, (131,208,0): 68, 88, 60, (131,209,0): 69, 93, 61, (131,210,0): 75, 96, 65, (131,211,0): 74, 98, 64, (131,212,0): 75, 96, 63, (131,213,0): 71, 95, 59, (131,214,0): 72, 94, 58, (131,215,0): 70, 94, 58, (131,216,0): 83, 105, 69, (131,217,0): 88, 112, 78, (131,218,0): 96, 117, 86, (131,219,0): 94, 117, 88, (131,220,0): 90, 110, 83, (131,221,0): 76, 99, 73, (131,222,0): 57, 77, 52, (131,223,0): 41, 58, 40, (131,224,0): 38, 47, 44, (131,225,0): 37, 42, 46, (131,226,0): 35, 40, 44, (132,0,0): 104, 101, 86, (132,1,0): 104, 101, 86, (132,2,0): 104, 101, 86, (132,3,0): 104, 101, 86, (132,4,0): 104, 101, 86, (132,5,0): 104, 101, 86, (132,6,0): 104, 101, 86, (132,7,0): 104, 101, 86, (132,8,0): 104, 101, 86, (132,9,0): 104, 101, 86, (132,10,0): 104, 101, 86, (132,11,0): 104, 101, 86, (132,12,0): 104, 101, 86, (132,13,0): 104, 101, 86, (132,14,0): 104, 101, 86, (132,15,0): 104, 101, 86, (132,16,0): 104, 101, 86, (132,17,0): 104, 101, 86, (132,18,0): 106, 99, 89, (132,19,0): 107, 100, 90, (132,20,0): 108, 99, 92, (132,21,0): 109, 100, 91, (132,22,0): 109, 101, 90, (132,23,0): 109, 102, 86, (132,24,0): 108, 103, 84, (132,25,0): 107, 105, 84, (132,26,0): 110, 109, 89, (132,27,0): 111, 112, 96, (132,28,0): 116, 117, 109, (132,29,0): 133, 135, 134, (132,30,0): 164, 167, 172, (132,31,0): 191, 196, 202, (132,32,0): 205, 212, 218, (132,33,0): 229, 239, 241, (132,34,0): 251, 255, 255, (132,35,0): 251, 255, 255, (132,36,0): 250, 251, 253, (132,37,0): 252, 253, 255, (132,38,0): 255, 253, 254, (132,39,0): 253, 252, 250, (132,40,0): 255, 255, 253, (132,41,0): 255, 255, 251, (132,42,0): 254, 253, 248, (132,43,0): 247, 248, 240, (132,44,0): 239, 240, 232, (132,45,0): 231, 234, 223, (132,46,0): 224, 230, 218, (132,47,0): 222, 229, 213, (132,48,0): 231, 235, 218, (132,49,0): 234, 239, 219, (132,50,0): 237, 240, 219, (132,51,0): 236, 240, 217, (132,52,0): 238, 238, 214, (132,53,0): 232, 232, 208, (132,54,0): 218, 216, 191, (132,55,0): 204, 202, 177, (132,56,0): 194, 189, 167, (132,57,0): 183, 181, 160, (132,58,0): 177, 174, 157, (132,59,0): 182, 180, 167, (132,60,0): 193, 190, 181, (132,61,0): 201, 200, 195, (132,62,0): 210, 211, 206, (132,63,0): 217, 217, 215, (132,64,0): 232, 232, 230, (132,65,0): 242, 242, 240, (132,66,0): 250, 250, 248, (132,67,0): 252, 252, 250, (132,68,0): 253, 253, 251, (132,69,0): 255, 255, 253, (132,70,0): 255, 255, 253, (132,71,0): 252, 252, 250, (132,72,0): 254, 254, 252, (132,73,0): 254, 254, 252, (132,74,0): 254, 254, 252, (132,75,0): 254, 254, 252, (132,76,0): 254, 254, 252, (132,77,0): 254, 254, 252, (132,78,0): 254, 254, 252, (132,79,0): 255, 254, 252, (132,80,0): 255, 251, 254, (132,81,0): 255, 247, 250, (132,82,0): 250, 246, 245, (132,83,0): 248, 247, 243, (132,84,0): 252, 255, 248, (132,85,0): 254, 255, 248, (132,86,0): 254, 255, 244, (132,87,0): 253, 252, 234, (132,88,0): 255, 254, 236, (132,89,0): 245, 220, 200, (132,90,0): 196, 155, 137, (132,91,0): 157, 98, 80, (132,92,0): 151, 75, 59, (132,93,0): 165, 76, 60, (132,94,0): 180, 80, 64, (132,95,0): 186, 74, 60, (132,96,0): 189, 65, 55, (132,97,0): 196, 68, 59, (132,98,0): 195, 71, 63, (132,99,0): 188, 69, 61, (132,100,0): 176, 63, 59, (132,101,0): 166, 58, 55, (132,102,0): 157, 59, 56, (132,103,0): 152, 63, 59, (132,104,0): 143, 62, 59, (132,105,0): 137, 63, 60, (132,106,0): 130, 65, 61, (132,107,0): 124, 65, 61, (132,108,0): 119, 66, 60, (132,109,0): 115, 66, 59, (132,110,0): 114, 67, 59, (132,111,0): 115, 66, 59, (132,112,0): 113, 63, 54, (132,113,0): 115, 62, 54, (132,114,0): 115, 62, 54, (132,115,0): 114, 61, 53, (132,116,0): 114, 61, 53, (132,117,0): 114, 61, 53, (132,118,0): 112, 62, 53, (132,119,0): 111, 61, 52, (132,120,0): 110, 62, 52, (132,121,0): 109, 61, 51, (132,122,0): 108, 60, 50, (132,123,0): 107, 59, 49, (132,124,0): 106, 59, 49, (132,125,0): 105, 58, 48, (132,126,0): 105, 58, 48, (132,127,0): 106, 58, 48, (132,128,0): 110, 55, 50, (132,129,0): 112, 54, 50, (132,130,0): 112, 54, 50, (132,131,0): 109, 54, 49, (132,132,0): 109, 54, 49, (132,133,0): 108, 55, 49, (132,134,0): 105, 55, 48, (132,135,0): 105, 55, 48, (132,136,0): 108, 59, 52, (132,137,0): 107, 58, 51, (132,138,0): 104, 57, 49, (132,139,0): 101, 57, 48, (132,140,0): 101, 57, 48, (132,141,0): 101, 57, 48, (132,142,0): 101, 58, 49, (132,143,0): 100, 60, 50, (132,144,0): 102, 66, 54, (132,145,0): 99, 65, 53, (132,146,0): 99, 67, 52, (132,147,0): 100, 68, 53, (132,148,0): 100, 71, 53, (132,149,0): 100, 73, 54, (132,150,0): 98, 73, 51, (132,151,0): 95, 73, 50, (132,152,0): 94, 76, 54, (132,153,0): 101, 86, 63, (132,154,0): 106, 98, 77, (132,155,0): 114, 109, 87, (132,156,0): 132, 131, 111, (132,157,0): 132, 135, 114, (132,158,0): 91, 96, 76, (132,159,0): 51, 58, 40, (132,160,0): 50, 56, 44, (132,161,0): 50, 56, 46, (132,162,0): 49, 55, 45, (132,163,0): 49, 55, 45, (132,164,0): 49, 55, 45, (132,165,0): 48, 54, 44, (132,166,0): 48, 54, 44, (132,167,0): 48, 54, 44, (132,168,0): 49, 55, 45, (132,169,0): 49, 55, 45, (132,170,0): 49, 55, 45, (132,171,0): 48, 54, 44, (132,172,0): 48, 54, 44, (132,173,0): 47, 53, 43, (132,174,0): 47, 53, 43, (132,175,0): 47, 53, 43, (132,176,0): 46, 51, 45, (132,177,0): 46, 51, 45, (132,178,0): 46, 51, 45, (132,179,0): 46, 51, 45, (132,180,0): 46, 51, 45, (132,181,0): 46, 51, 45, (132,182,0): 46, 51, 45, (132,183,0): 46, 51, 45, (132,184,0): 45, 50, 44, (132,185,0): 45, 50, 44, (132,186,0): 44, 49, 43, (132,187,0): 44, 49, 43, (132,188,0): 44, 49, 43, (132,189,0): 44, 49, 43, (132,190,0): 45, 50, 44, (132,191,0): 44, 51, 44, (132,192,0): 44, 54, 46, (132,193,0): 43, 53, 45, (132,194,0): 42, 52, 43, (132,195,0): 42, 52, 43, (132,196,0): 43, 53, 44, (132,197,0): 46, 56, 45, (132,198,0): 48, 59, 45, (132,199,0): 50, 61, 47, (132,200,0): 50, 61, 45, (132,201,0): 53, 64, 47, (132,202,0): 54, 65, 48, (132,203,0): 53, 65, 45, (132,204,0): 49, 61, 41, (132,205,0): 49, 61, 41, (132,206,0): 53, 65, 45, (132,207,0): 56, 70, 47, (132,208,0): 61, 79, 53, (132,209,0): 64, 84, 56, (132,210,0): 70, 89, 61, (132,211,0): 72, 92, 64, (132,212,0): 74, 93, 63, (132,213,0): 73, 94, 61, (132,214,0): 75, 94, 62, (132,215,0): 75, 96, 63, (132,216,0): 84, 103, 71, (132,217,0): 91, 112, 81, (132,218,0): 99, 118, 90, (132,219,0): 97, 117, 90, (132,220,0): 89, 107, 83, (132,221,0): 74, 93, 71, (132,222,0): 54, 71, 52, (132,223,0): 38, 52, 37, (132,224,0): 36, 45, 42, (132,225,0): 36, 41, 44, (132,226,0): 34, 39, 42, (133,0,0): 104, 101, 86, (133,1,0): 104, 101, 86, (133,2,0): 104, 101, 86, (133,3,0): 104, 101, 86, (133,4,0): 104, 101, 86, (133,5,0): 104, 101, 86, (133,6,0): 104, 101, 86, (133,7,0): 104, 101, 86, (133,8,0): 104, 101, 86, (133,9,0): 104, 101, 86, (133,10,0): 104, 101, 86, (133,11,0): 104, 101, 86, (133,12,0): 104, 101, 86, (133,13,0): 104, 101, 86, (133,14,0): 104, 101, 86, (133,15,0): 104, 101, 86, (133,16,0): 104, 101, 86, (133,17,0): 104, 101, 86, (133,18,0): 106, 99, 89, (133,19,0): 107, 100, 90, (133,20,0): 108, 99, 92, (133,21,0): 109, 100, 91, (133,22,0): 109, 101, 90, (133,23,0): 108, 102, 86, (133,24,0): 106, 103, 84, (133,25,0): 107, 106, 85, (133,26,0): 108, 110, 89, (133,27,0): 111, 114, 97, (133,28,0): 115, 118, 109, (133,29,0): 129, 133, 132, (133,30,0): 159, 164, 168, (133,31,0): 184, 191, 199, (133,32,0): 213, 222, 227, (133,33,0): 236, 246, 248, (133,34,0): 251, 255, 255, (133,35,0): 251, 255, 255, (133,36,0): 250, 251, 255, (133,37,0): 253, 254, 255, (133,38,0): 255, 254, 255, (133,39,0): 253, 252, 250, (133,40,0): 255, 255, 251, (133,41,0): 255, 255, 250, (133,42,0): 252, 252, 244, (133,43,0): 243, 245, 234, (133,44,0): 235, 237, 226, (133,45,0): 227, 231, 217, (133,46,0): 221, 227, 213, (133,47,0): 220, 227, 209, (133,48,0): 228, 233, 211, (133,49,0): 231, 236, 213, (133,50,0): 233, 237, 214, (133,51,0): 234, 236, 212, (133,52,0): 235, 235, 211, (133,53,0): 232, 230, 207, (133,54,0): 223, 218, 196, (133,55,0): 211, 206, 184, (133,56,0): 211, 206, 186, (133,57,0): 204, 198, 182, (133,58,0): 203, 195, 184, (133,59,0): 208, 201, 193, (133,60,0): 215, 210, 206, (133,61,0): 224, 219, 216, (133,62,0): 234, 230, 229, (133,63,0): 240, 239, 237, (133,64,0): 243, 242, 240, (133,65,0): 249, 249, 247, (133,66,0): 253, 253, 251, (133,67,0): 253, 253, 251, (133,68,0): 253, 253, 251, (133,69,0): 255, 255, 253, (133,70,0): 254, 254, 252, (133,71,0): 252, 252, 250, (133,72,0): 254, 254, 252, (133,73,0): 254, 254, 252, (133,74,0): 254, 254, 252, (133,75,0): 254, 254, 252, (133,76,0): 254, 254, 252, (133,77,0): 254, 254, 252, (133,78,0): 254, 254, 252, (133,79,0): 255, 253, 252, (133,80,0): 255, 252, 253, (133,81,0): 255, 246, 247, (133,82,0): 253, 249, 248, (133,83,0): 254, 255, 253, (133,84,0): 249, 255, 253, (133,85,0): 246, 255, 250, (133,86,0): 237, 255, 243, (133,87,0): 240, 254, 239, (133,88,0): 235, 242, 226, (133,89,0): 255, 255, 237, (133,90,0): 255, 236, 217, (133,91,0): 204, 166, 147, (133,92,0): 163, 106, 87, (133,93,0): 161, 90, 70, (133,94,0): 170, 87, 69, (133,95,0): 173, 76, 59, (133,96,0): 182, 70, 58, (133,97,0): 188, 70, 60, (133,98,0): 189, 70, 62, (133,99,0): 185, 70, 63, (133,100,0): 178, 66, 62, (133,101,0): 169, 61, 58, (133,102,0): 161, 59, 57, (133,103,0): 153, 59, 57, (133,104,0): 149, 61, 60, (133,105,0): 142, 62, 61, (133,106,0): 133, 63, 61, (133,107,0): 125, 64, 59, (133,108,0): 120, 65, 60, (133,109,0): 115, 66, 59, (133,110,0): 112, 68, 59, (133,111,0): 112, 68, 59, (133,112,0): 112, 63, 56, (133,113,0): 113, 63, 54, (133,114,0): 113, 63, 54, (133,115,0): 113, 63, 54, (133,116,0): 113, 63, 54, (133,117,0): 112, 62, 53, (133,118,0): 111, 63, 53, (133,119,0): 111, 63, 53, (133,120,0): 111, 64, 54, (133,121,0): 110, 63, 53, (133,122,0): 109, 62, 52, (133,123,0): 107, 60, 50, (133,124,0): 104, 60, 49, (133,125,0): 104, 60, 49, (133,126,0): 104, 60, 49, (133,127,0): 108, 60, 50, (133,128,0): 111, 56, 51, (133,129,0): 113, 54, 50, (133,130,0): 112, 54, 50, (133,131,0): 112, 54, 50, (133,132,0): 109, 54, 49, (133,133,0): 108, 55, 49, (133,134,0): 106, 56, 49, (133,135,0): 105, 56, 49, (133,136,0): 104, 55, 48, (133,137,0): 103, 56, 48, (133,138,0): 101, 57, 48, (133,139,0): 101, 58, 49, (133,140,0): 100, 60, 50, (133,141,0): 101, 63, 52, (133,142,0): 102, 64, 53, (133,143,0): 100, 66, 54, (133,144,0): 94, 66, 52, (133,145,0): 97, 71, 56, (133,146,0): 99, 76, 58, (133,147,0): 100, 77, 59, (133,148,0): 99, 77, 56, (133,149,0): 96, 75, 54, (133,150,0): 93, 75, 51, (133,151,0): 93, 77, 52, (133,152,0): 93, 81, 57, (133,153,0): 98, 88, 63, (133,154,0): 109, 104, 82, (133,155,0): 115, 115, 91, (133,156,0): 128, 131, 110, (133,157,0): 118, 123, 101, (133,158,0): 70, 79, 58, (133,159,0): 52, 61, 42, (133,160,0): 51, 57, 45, (133,161,0): 50, 56, 46, (133,162,0): 50, 56, 46, (133,163,0): 50, 56, 46, (133,164,0): 49, 55, 45, (133,165,0): 49, 55, 45, (133,166,0): 49, 55, 45, (133,167,0): 48, 54, 44, (133,168,0): 49, 55, 45, (133,169,0): 49, 55, 45, (133,170,0): 49, 55, 45, (133,171,0): 48, 54, 44, (133,172,0): 48, 54, 44, (133,173,0): 47, 53, 43, (133,174,0): 47, 53, 43, (133,175,0): 47, 53, 43, (133,176,0): 45, 50, 44, (133,177,0): 45, 50, 44, (133,178,0): 45, 50, 44, (133,179,0): 45, 50, 44, (133,180,0): 45, 50, 44, (133,181,0): 45, 50, 44, (133,182,0): 45, 50, 44, (133,183,0): 45, 50, 44, (133,184,0): 45, 50, 44, (133,185,0): 44, 49, 43, (133,186,0): 43, 48, 42, (133,187,0): 43, 48, 42, (133,188,0): 43, 48, 42, (133,189,0): 43, 48, 42, (133,190,0): 44, 49, 43, (133,191,0): 44, 51, 44, (133,192,0): 46, 53, 46, (133,193,0): 44, 54, 46, (133,194,0): 42, 52, 43, (133,195,0): 42, 52, 43, (133,196,0): 42, 52, 43, (133,197,0): 43, 53, 44, (133,198,0): 45, 55, 44, (133,199,0): 46, 57, 43, (133,200,0): 45, 56, 42, (133,201,0): 48, 59, 43, (133,202,0): 52, 63, 47, (133,203,0): 53, 64, 47, (133,204,0): 52, 63, 46, (133,205,0): 51, 63, 43, (133,206,0): 51, 62, 45, (133,207,0): 51, 64, 44, (133,208,0): 55, 70, 47, (133,209,0): 57, 75, 51, (133,210,0): 64, 79, 56, (133,211,0): 66, 84, 58, (133,212,0): 71, 87, 60, (133,213,0): 72, 91, 63, (133,214,0): 77, 93, 66, (133,215,0): 77, 96, 68, (133,216,0): 85, 101, 74, (133,217,0): 92, 111, 83, (133,218,0): 100, 116, 90, (133,219,0): 96, 114, 90, (133,220,0): 88, 103, 82, (133,221,0): 71, 88, 69, (133,222,0): 52, 66, 49, (133,223,0): 36, 50, 37, (133,224,0): 36, 45, 42, (133,225,0): 36, 41, 44, (133,226,0): 34, 39, 42, (134,0,0): 104, 101, 86, (134,1,0): 104, 101, 86, (134,2,0): 104, 101, 86, (134,3,0): 104, 101, 86, (134,4,0): 104, 101, 86, (134,5,0): 104, 101, 86, (134,6,0): 104, 101, 86, (134,7,0): 104, 101, 86, (134,8,0): 104, 101, 86, (134,9,0): 104, 101, 86, (134,10,0): 104, 101, 86, (134,11,0): 104, 101, 86, (134,12,0): 104, 101, 86, (134,13,0): 104, 101, 86, (134,14,0): 104, 101, 86, (134,15,0): 104, 101, 86, (134,16,0): 106, 100, 86, (134,17,0): 106, 100, 86, (134,18,0): 106, 99, 89, (134,19,0): 107, 100, 90, (134,20,0): 108, 99, 92, (134,21,0): 109, 100, 91, (134,22,0): 108, 102, 90, (134,23,0): 108, 102, 86, (134,24,0): 108, 105, 86, (134,25,0): 108, 107, 86, (134,26,0): 107, 109, 88, (134,27,0): 107, 110, 93, (134,28,0): 108, 114, 104, (134,29,0): 121, 127, 125, (134,30,0): 149, 157, 160, (134,31,0): 174, 183, 190, (134,32,0): 209, 218, 223, (134,33,0): 233, 242, 247, (134,34,0): 251, 255, 255, (134,35,0): 248, 253, 255, (134,36,0): 248, 249, 253, (134,37,0): 254, 255, 255, (134,38,0): 255, 254, 255, (134,39,0): 249, 248, 246, (134,40,0): 255, 255, 251, (134,41,0): 254, 253, 248, (134,42,0): 249, 249, 241, (134,43,0): 241, 243, 232, (134,44,0): 233, 235, 222, (134,45,0): 227, 231, 216, (134,46,0): 223, 230, 214, (134,47,0): 224, 232, 211, (134,48,0): 228, 233, 210, (134,49,0): 231, 237, 211, (134,50,0): 232, 236, 211, (134,51,0): 231, 233, 209, (134,52,0): 232, 232, 208, (134,53,0): 231, 229, 206, (134,54,0): 224, 219, 199, (134,55,0): 215, 208, 190, (134,56,0): 218, 211, 195, (134,57,0): 217, 209, 198, (134,58,0): 222, 212, 203, (134,59,0): 230, 221, 216, (134,60,0): 238, 228, 227, (134,61,0): 243, 233, 234, (134,62,0): 250, 241, 244, (134,63,0): 255, 249, 251, (134,64,0): 250, 249, 247, (134,65,0): 254, 254, 252, (134,66,0): 255, 255, 253, (134,67,0): 253, 253, 251, (134,68,0): 253, 253, 251, (134,69,0): 255, 255, 253, (134,70,0): 255, 255, 253, (134,71,0): 252, 252, 250, (134,72,0): 254, 254, 252, (134,73,0): 254, 254, 252, (134,74,0): 254, 254, 252, (134,75,0): 254, 254, 252, (134,76,0): 254, 254, 252, (134,77,0): 254, 254, 252, (134,78,0): 254, 254, 252, (134,79,0): 255, 253, 252, (134,80,0): 255, 250, 249, (134,81,0): 255, 251, 250, (134,82,0): 255, 254, 253, (134,83,0): 252, 255, 253, (134,84,0): 245, 255, 252, (134,85,0): 234, 251, 245, (134,86,0): 234, 255, 248, (134,87,0): 242, 255, 253, (134,88,0): 245, 255, 250, (134,89,0): 239, 245, 231, (134,90,0): 255, 250, 234, (134,91,0): 255, 250, 232, (134,92,0): 242, 204, 185, (134,93,0): 171, 119, 98, (134,94,0): 143, 81, 58, (134,95,0): 170, 93, 73, (134,96,0): 175, 80, 62, (134,97,0): 179, 76, 61, (134,98,0): 179, 75, 62, (134,99,0): 179, 75, 64, (134,100,0): 177, 73, 64, (134,101,0): 172, 69, 62, (134,102,0): 162, 63, 58, (134,103,0): 154, 59, 55, (134,104,0): 150, 61, 57, (134,105,0): 143, 62, 58, (134,106,0): 136, 63, 57, (134,107,0): 129, 64, 58, (134,108,0): 122, 65, 58, (134,109,0): 117, 67, 58, (134,110,0): 113, 69, 58, (134,111,0): 113, 69, 60, (134,112,0): 112, 63, 56, (134,113,0): 113, 63, 56, (134,114,0): 113, 63, 56, (134,115,0): 113, 63, 56, (134,116,0): 113, 63, 56, (134,117,0): 113, 63, 56, (134,118,0): 112, 63, 56, (134,119,0): 112, 63, 56, (134,120,0): 113, 66, 58, (134,121,0): 112, 65, 57, (134,122,0): 110, 63, 55, (134,123,0): 108, 61, 53, (134,124,0): 105, 61, 52, (134,125,0): 106, 62, 53, (134,126,0): 106, 62, 53, (134,127,0): 110, 61, 54, (134,128,0): 111, 56, 51, (134,129,0): 114, 55, 51, (134,130,0): 112, 54, 50, (134,131,0): 112, 54, 50, (134,132,0): 110, 55, 50, (134,133,0): 108, 55, 49, (134,134,0): 106, 56, 49, (134,135,0): 105, 56, 49, (134,136,0): 100, 56, 47, (134,137,0): 100, 57, 48, (134,138,0): 99, 59, 49, (134,139,0): 100, 62, 51, (134,140,0): 100, 64, 52, (134,141,0): 99, 65, 53, (134,142,0): 99, 65, 53, (134,143,0): 95, 67, 53, (134,144,0): 90, 69, 52, (134,145,0): 95, 78, 60, (134,146,0): 103, 86, 66, (134,147,0): 104, 87, 67, (134,148,0): 99, 83, 60, (134,149,0): 94, 79, 56, (134,150,0): 91, 79, 53, (134,151,0): 92, 82, 55, (134,152,0): 93, 86, 60, (134,153,0): 93, 89, 62, (134,154,0): 110, 108, 85, (134,155,0): 116, 118, 94, (134,156,0): 124, 129, 107, (134,157,0): 99, 109, 85, (134,158,0): 50, 62, 40, (134,159,0): 54, 66, 46, (134,160,0): 51, 59, 46, (134,161,0): 51, 57, 47, (134,162,0): 51, 57, 47, (134,163,0): 51, 57, 47, (134,164,0): 50, 56, 46, (134,165,0): 50, 56, 46, (134,166,0): 50, 56, 46, (134,167,0): 49, 55, 45, (134,168,0): 49, 55, 45, (134,169,0): 49, 55, 45, (134,170,0): 49, 55, 45, (134,171,0): 48, 54, 44, (134,172,0): 48, 54, 44, (134,173,0): 47, 53, 43, (134,174,0): 47, 53, 43, (134,175,0): 47, 53, 43, (134,176,0): 45, 50, 44, (134,177,0): 45, 50, 44, (134,178,0): 45, 50, 44, (134,179,0): 45, 50, 44, (134,180,0): 45, 50, 44, (134,181,0): 45, 50, 44, (134,182,0): 45, 50, 44, (134,183,0): 45, 50, 44, (134,184,0): 44, 49, 43, (134,185,0): 44, 49, 43, (134,186,0): 43, 48, 42, (134,187,0): 42, 47, 41, (134,188,0): 42, 47, 41, (134,189,0): 43, 48, 42, (134,190,0): 44, 49, 43, (134,191,0): 43, 50, 43, (134,192,0): 45, 52, 45, (134,193,0): 43, 53, 45, (134,194,0): 42, 52, 44, (134,195,0): 42, 52, 44, (134,196,0): 43, 53, 44, (134,197,0): 43, 53, 44, (134,198,0): 44, 54, 43, (134,199,0): 45, 55, 44, (134,200,0): 44, 54, 43, (134,201,0): 47, 58, 44, (134,202,0): 50, 61, 47, (134,203,0): 54, 65, 49, (134,204,0): 55, 66, 50, (134,205,0): 55, 66, 49, (134,206,0): 53, 64, 48, (134,207,0): 52, 63, 46, (134,208,0): 50, 63, 45, (134,209,0): 52, 67, 46, (134,210,0): 58, 71, 51, (134,211,0): 61, 76, 53, (134,212,0): 65, 79, 56, (134,213,0): 68, 84, 58, (134,214,0): 74, 88, 63, (134,215,0): 76, 92, 66, (134,216,0): 84, 98, 73, (134,217,0): 92, 107, 84, (134,218,0): 99, 113, 90, (134,219,0): 94, 109, 88, (134,220,0): 85, 98, 80, (134,221,0): 68, 82, 65, (134,222,0): 50, 62, 48, (134,223,0): 35, 47, 37, (134,224,0): 38, 47, 44, (134,225,0): 38, 44, 44, (134,226,0): 36, 42, 42, (135,0,0): 104, 101, 86, (135,1,0): 104, 101, 86, (135,2,0): 104, 101, 86, (135,3,0): 104, 101, 86, (135,4,0): 104, 101, 86, (135,5,0): 104, 101, 86, (135,6,0): 104, 101, 86, (135,7,0): 104, 101, 86, (135,8,0): 104, 101, 86, (135,9,0): 104, 101, 86, (135,10,0): 104, 101, 86, (135,11,0): 104, 101, 86, (135,12,0): 104, 101, 86, (135,13,0): 104, 101, 86, (135,14,0): 104, 101, 86, (135,15,0): 104, 101, 86, (135,16,0): 106, 100, 86, (135,17,0): 106, 100, 86, (135,18,0): 106, 99, 89, (135,19,0): 107, 100, 90, (135,20,0): 108, 99, 92, (135,21,0): 109, 100, 91, (135,22,0): 108, 102, 90, (135,23,0): 108, 102, 86, (135,24,0): 111, 108, 89, (135,25,0): 109, 108, 87, (135,26,0): 106, 108, 87, (135,27,0): 103, 107, 90, (135,28,0): 102, 108, 98, (135,29,0): 114, 123, 120, (135,30,0): 142, 152, 154, (135,31,0): 168, 177, 184, (135,32,0): 201, 210, 215, (135,33,0): 226, 235, 240, (135,34,0): 247, 252, 255, (135,35,0): 246, 251, 254, (135,36,0): 249, 250, 254, (135,37,0): 254, 255, 255, (135,38,0): 255, 254, 255, (135,39,0): 249, 248, 244, (135,40,0): 255, 255, 250, (135,41,0): 253, 253, 245, (135,42,0): 248, 248, 238, (135,43,0): 240, 242, 229, (135,44,0): 233, 235, 221, (135,45,0): 229, 233, 216, (135,46,0): 227, 234, 216, (135,47,0): 229, 237, 214, (135,48,0): 230, 236, 210, (135,49,0): 233, 237, 210, (135,50,0): 234, 237, 210, (135,51,0): 232, 232, 206, (135,52,0): 232, 230, 207, (135,53,0): 232, 227, 207, (135,54,0): 225, 218, 200, (135,55,0): 216, 208, 195, (135,56,0): 216, 206, 196, (135,57,0): 221, 210, 204, (135,58,0): 234, 223, 219, (135,59,0): 248, 237, 235, (135,60,0): 255, 244, 246, (135,61,0): 255, 245, 249, (135,62,0): 255, 245, 251, (135,63,0): 255, 249, 252, (135,64,0): 254, 252, 253, (135,65,0): 255, 255, 253, (135,66,0): 255, 255, 253, (135,67,0): 254, 254, 252, (135,68,0): 254, 254, 252, (135,69,0): 255, 255, 253, (135,70,0): 255, 255, 253, (135,71,0): 253, 253, 251, (135,72,0): 254, 254, 252, (135,73,0): 254, 254, 252, (135,74,0): 254, 254, 252, (135,75,0): 254, 254, 252, (135,76,0): 254, 254, 252, (135,77,0): 254, 254, 252, (135,78,0): 254, 254, 252, (135,79,0): 255, 254, 250, (135,80,0): 255, 249, 247, (135,81,0): 255, 249, 247, (135,82,0): 251, 250, 248, (135,83,0): 247, 251, 250, (135,84,0): 245, 255, 254, (135,85,0): 243, 255, 255, (135,86,0): 240, 255, 255, (135,87,0): 237, 253, 250, (135,88,0): 240, 252, 248, (135,89,0): 251, 255, 250, (135,90,0): 255, 253, 241, (135,91,0): 255, 242, 226, (135,92,0): 255, 239, 219, (135,93,0): 255, 225, 203, (135,94,0): 216, 174, 150, (135,95,0): 170, 114, 91, (135,96,0): 164, 89, 68, (135,97,0): 169, 84, 64, (135,98,0): 168, 81, 62, (135,99,0): 169, 82, 65, (135,100,0): 173, 81, 66, (135,101,0): 169, 77, 64, (135,102,0): 161, 68, 60, (135,103,0): 151, 61, 53, (135,104,0): 149, 62, 55, (135,105,0): 143, 63, 54, (135,106,0): 137, 62, 56, (135,107,0): 131, 64, 55, (135,108,0): 125, 65, 55, (135,109,0): 119, 67, 54, (135,110,0): 116, 68, 56, (135,111,0): 115, 69, 56, (135,112,0): 113, 63, 56, (135,113,0): 113, 63, 56, (135,114,0): 115, 62, 56, (135,115,0): 113, 63, 56, (135,116,0): 113, 63, 56, (135,117,0): 113, 63, 56, (135,118,0): 113, 63, 56, (135,119,0): 112, 63, 56, (135,120,0): 115, 66, 59, (135,121,0): 113, 66, 58, (135,122,0): 111, 64, 56, (135,123,0): 109, 62, 54, (135,124,0): 108, 61, 53, (135,125,0): 106, 62, 53, (135,126,0): 109, 62, 54, (135,127,0): 111, 62, 55, (135,128,0): 111, 56, 51, (135,129,0): 113, 55, 51, (135,130,0): 111, 56, 51, (135,131,0): 109, 56, 50, (135,132,0): 109, 56, 50, (135,133,0): 105, 56, 49, (135,134,0): 104, 57, 49, (135,135,0): 102, 58, 49, (135,136,0): 102, 59, 50, (135,137,0): 100, 62, 51, (135,138,0): 100, 64, 52, (135,139,0): 98, 66, 53, (135,140,0): 96, 67, 53, (135,141,0): 93, 65, 51, (135,142,0): 92, 64, 50, (135,143,0): 87, 66, 49, (135,144,0): 84, 71, 52, (135,145,0): 91, 83, 62, (135,146,0): 102, 94, 71, (135,147,0): 105, 94, 72, (135,148,0): 98, 88, 63, (135,149,0): 90, 83, 57, (135,150,0): 90, 83, 55, (135,151,0): 92, 87, 58, (135,152,0): 90, 86, 59, (135,153,0): 88, 87, 59, (135,154,0): 107, 109, 85, (135,155,0): 115, 119, 94, (135,156,0): 117, 125, 102, (135,157,0): 85, 97, 73, (135,158,0): 38, 50, 28, (135,159,0): 56, 68, 48, (135,160,0): 51, 59, 46, (135,161,0): 52, 58, 48, (135,162,0): 52, 58, 48, (135,163,0): 51, 57, 47, (135,164,0): 51, 57, 47, (135,165,0): 51, 57, 47, (135,166,0): 50, 56, 46, (135,167,0): 50, 56, 46, (135,168,0): 49, 55, 45, (135,169,0): 49, 55, 45, (135,170,0): 49, 55, 45, (135,171,0): 48, 54, 44, (135,172,0): 48, 54, 44, (135,173,0): 47, 53, 43, (135,174,0): 47, 53, 43, (135,175,0): 47, 53, 43, (135,176,0): 45, 50, 44, (135,177,0): 45, 50, 44, (135,178,0): 45, 50, 44, (135,179,0): 45, 50, 44, (135,180,0): 45, 50, 44, (135,181,0): 45, 50, 44, (135,182,0): 45, 50, 44, (135,183,0): 45, 50, 44, (135,184,0): 44, 49, 43, (135,185,0): 43, 48, 42, (135,186,0): 43, 48, 42, (135,187,0): 42, 47, 41, (135,188,0): 42, 47, 41, (135,189,0): 43, 48, 42, (135,190,0): 43, 48, 42, (135,191,0): 44, 49, 43, (135,192,0): 43, 50, 43, (135,193,0): 41, 51, 43, (135,194,0): 42, 52, 44, (135,195,0): 43, 53, 45, (135,196,0): 43, 53, 44, (135,197,0): 44, 54, 45, (135,198,0): 45, 55, 46, (135,199,0): 45, 55, 44, (135,200,0): 44, 54, 43, (135,201,0): 46, 56, 45, (135,202,0): 50, 60, 49, (135,203,0): 54, 65, 51, (135,204,0): 57, 68, 54, (135,205,0): 57, 68, 52, (135,206,0): 55, 66, 52, (135,207,0): 54, 65, 49, (135,208,0): 48, 59, 43, (135,209,0): 50, 63, 45, (135,210,0): 53, 66, 48, (135,211,0): 57, 70, 50, (135,212,0): 60, 73, 53, (135,213,0): 64, 78, 55, (135,214,0): 70, 84, 61, (135,215,0): 74, 88, 63, (135,216,0): 82, 96, 73, (135,217,0): 91, 104, 84, (135,218,0): 97, 110, 90, (135,219,0): 92, 105, 87, (135,220,0): 81, 94, 77, (135,221,0): 66, 78, 64, (135,222,0): 47, 59, 47, (135,223,0): 34, 44, 35, (135,224,0): 42, 48, 44, (135,225,0): 40, 46, 44, (135,226,0): 38, 44, 44, (136,0,0): 104, 101, 86, (136,1,0): 104, 101, 86, (136,2,0): 104, 101, 86, (136,3,0): 104, 101, 86, (136,4,0): 104, 101, 86, (136,5,0): 104, 101, 86, (136,6,0): 104, 101, 86, (136,7,0): 104, 101, 86, (136,8,0): 105, 102, 87, (136,9,0): 105, 102, 87, (136,10,0): 105, 102, 87, (136,11,0): 105, 102, 87, (136,12,0): 105, 102, 87, (136,13,0): 105, 102, 87, (136,14,0): 105, 102, 87, (136,15,0): 105, 102, 87, (136,16,0): 107, 101, 87, (136,17,0): 107, 101, 87, (136,18,0): 107, 100, 90, (136,19,0): 108, 101, 91, (136,20,0): 109, 100, 93, (136,21,0): 110, 101, 92, (136,22,0): 109, 103, 91, (136,23,0): 109, 103, 87, (136,24,0): 113, 110, 91, (136,25,0): 107, 109, 87, (136,26,0): 107, 110, 89, (136,27,0): 107, 114, 96, (136,28,0): 106, 114, 103, (136,29,0): 112, 121, 118, (136,30,0): 135, 145, 147, (136,31,0): 159, 170, 176, (136,32,0): 187, 196, 201, (136,33,0): 208, 217, 222, (136,34,0): 234, 239, 243, (136,35,0): 246, 251, 254, (136,36,0): 252, 253, 255, (136,37,0): 254, 255, 255, (136,38,0): 255, 254, 255, (136,39,0): 254, 253, 249, (136,40,0): 255, 255, 250, (136,41,0): 254, 254, 246, (136,42,0): 250, 250, 240, (136,43,0): 246, 248, 235, (136,44,0): 244, 246, 232, (136,45,0): 240, 244, 227, (136,46,0): 234, 241, 223, (136,47,0): 231, 239, 216, (136,48,0): 240, 246, 218, (136,49,0): 237, 242, 212, (136,50,0): 235, 238, 209, (136,51,0): 236, 236, 210, (136,52,0): 232, 230, 209, (136,53,0): 225, 220, 201, (136,54,0): 221, 213, 200, (136,55,0): 222, 212, 202, (136,56,0): 224, 211, 205, (136,57,0): 231, 217, 216, (136,58,0): 241, 227, 227, (136,59,0): 249, 234, 237, (136,60,0): 253, 241, 243, (136,61,0): 255, 246, 250, (136,62,0): 255, 248, 255, (136,63,0): 255, 252, 255, (136,64,0): 255, 253, 254, (136,65,0): 254, 254, 252, (136,66,0): 254, 254, 252, (136,67,0): 254, 254, 252, (136,68,0): 254, 254, 252, (136,69,0): 254, 254, 252, (136,70,0): 254, 254, 252, (136,71,0): 254, 254, 252, (136,72,0): 254, 254, 252, (136,73,0): 254, 254, 252, (136,74,0): 254, 254, 252, (136,75,0): 254, 254, 252, (136,76,0): 254, 254, 252, (136,77,0): 254, 254, 252, (136,78,0): 254, 254, 252, (136,79,0): 254, 255, 250, (136,80,0): 255, 254, 250, (136,81,0): 255, 255, 251, (136,82,0): 255, 255, 253, (136,83,0): 254, 255, 255, (136,84,0): 252, 255, 255, (136,85,0): 250, 255, 255, (136,86,0): 249, 254, 255, (136,87,0): 249, 253, 255, (136,88,0): 254, 255, 255, (136,89,0): 254, 253, 251, (136,90,0): 254, 249, 243, (136,91,0): 255, 248, 238, (136,92,0): 255, 249, 233, (136,93,0): 255, 248, 226, (136,94,0): 255, 241, 217, (136,95,0): 255, 232, 207, (136,96,0): 182, 132, 105, (136,97,0): 162, 100, 75, (136,98,0): 147, 83, 58, (136,99,0): 155, 87, 64, (136,100,0): 165, 93, 71, (136,101,0): 160, 83, 65, (136,102,0): 154, 75, 58, (136,103,0): 155, 76, 61, (136,104,0): 142, 63, 50, (136,105,0): 141, 63, 50, (136,106,0): 135, 63, 51, (136,107,0): 128, 60, 47, (136,108,0): 121, 59, 46, (136,109,0): 116, 60, 45, (136,110,0): 115, 63, 49, (136,111,0): 115, 66, 52, (136,112,0): 114, 61, 53, (136,113,0): 114, 61, 55, (136,114,0): 116, 61, 56, (136,115,0): 115, 62, 56, (136,116,0): 117, 64, 58, (136,117,0): 117, 64, 58, (136,118,0): 116, 63, 57, (136,119,0): 113, 63, 56, (136,120,0): 115, 65, 58, (136,121,0): 113, 64, 57, (136,122,0): 113, 64, 57, (136,123,0): 113, 64, 57, (136,124,0): 112, 63, 56, (136,125,0): 110, 63, 55, (136,126,0): 111, 62, 55, (136,127,0): 111, 62, 55, (136,128,0): 107, 57, 50, (136,129,0): 109, 56, 50, (136,130,0): 108, 58, 51, (136,131,0): 108, 59, 52, (136,132,0): 108, 59, 52, (136,133,0): 104, 60, 51, (136,134,0): 103, 60, 51, (136,135,0): 99, 61, 50, (136,136,0): 99, 63, 51, (136,137,0): 94, 62, 49, (136,138,0): 100, 71, 57, (136,139,0): 99, 71, 57, (136,140,0): 84, 61, 45, (136,141,0): 78, 57, 40, (136,142,0): 77, 56, 39, (136,143,0): 64, 49, 30, (136,144,0): 87, 81, 59, (136,145,0): 80, 78, 55, (136,146,0): 75, 73, 48, (136,147,0): 79, 75, 50, (136,148,0): 93, 89, 62, (136,149,0): 105, 101, 74, (136,150,0): 101, 97, 68, (136,151,0): 86, 85, 55, (136,152,0): 88, 88, 60, (136,153,0): 93, 96, 67, (136,154,0): 111, 115, 90, (136,155,0): 122, 128, 102, (136,156,0): 100, 108, 85, (136,157,0): 61, 73, 49, (136,158,0): 45, 57, 35, (136,159,0): 50, 62, 42, (136,160,0): 52, 60, 47, (136,161,0): 53, 59, 49, (136,162,0): 52, 58, 48, (136,163,0): 52, 58, 48, (136,164,0): 52, 58, 48, (136,165,0): 51, 57, 47, (136,166,0): 51, 57, 47, (136,167,0): 51, 57, 47, (136,168,0): 51, 57, 47, (136,169,0): 51, 57, 47, (136,170,0): 51, 57, 47, (136,171,0): 50, 56, 46, (136,172,0): 49, 55, 45, (136,173,0): 49, 55, 45, (136,174,0): 49, 55, 45, (136,175,0): 48, 54, 44, (136,176,0): 49, 54, 48, (136,177,0): 49, 54, 48, (136,178,0): 48, 53, 47, (136,179,0): 48, 53, 47, (136,180,0): 47, 52, 46, (136,181,0): 47, 52, 46, (136,182,0): 47, 52, 46, (136,183,0): 47, 52, 46, (136,184,0): 44, 49, 43, (136,185,0): 44, 49, 43, (136,186,0): 44, 49, 43, (136,187,0): 44, 49, 43, (136,188,0): 44, 49, 43, (136,189,0): 44, 49, 43, (136,190,0): 43, 48, 42, (136,191,0): 43, 48, 42, (136,192,0): 46, 53, 46, (136,193,0): 45, 52, 45, (136,194,0): 45, 52, 45, (136,195,0): 44, 51, 44, (136,196,0): 45, 52, 45, (136,197,0): 45, 52, 44, (136,198,0): 46, 53, 45, (136,199,0): 46, 53, 45, (136,200,0): 43, 50, 42, (136,201,0): 45, 52, 44, (136,202,0): 48, 55, 47, (136,203,0): 53, 61, 50, (136,204,0): 57, 65, 54, (136,205,0): 61, 69, 56, (136,206,0): 63, 71, 60, (136,207,0): 63, 74, 60, (136,208,0): 55, 66, 50, (136,209,0): 53, 64, 47, (136,210,0): 51, 62, 45, (136,211,0): 49, 61, 41, (136,212,0): 50, 62, 42, (136,213,0): 57, 69, 47, (136,214,0): 66, 78, 56, (136,215,0): 73, 85, 63, (136,216,0): 79, 91, 71, (136,217,0): 86, 98, 78, (136,218,0): 93, 104, 87, (136,219,0): 89, 100, 84, (136,220,0): 76, 87, 73, (136,221,0): 60, 70, 59, (136,222,0): 47, 57, 46, (136,223,0): 41, 51, 42, (136,224,0): 42, 48, 44, (136,225,0): 41, 47, 43, (136,226,0): 40, 46, 44, (137,0,0): 104, 101, 86, (137,1,0): 104, 101, 86, (137,2,0): 104, 101, 86, (137,3,0): 104, 101, 86, (137,4,0): 104, 101, 86, (137,5,0): 104, 101, 86, (137,6,0): 104, 101, 86, (137,7,0): 104, 101, 86, (137,8,0): 105, 102, 87, (137,9,0): 105, 102, 87, (137,10,0): 105, 102, 87, (137,11,0): 105, 102, 87, (137,12,0): 105, 102, 87, (137,13,0): 105, 102, 87, (137,14,0): 105, 102, 87, (137,15,0): 105, 102, 87, (137,16,0): 107, 101, 87, (137,17,0): 107, 101, 87, (137,18,0): 107, 100, 90, (137,19,0): 108, 101, 91, (137,20,0): 109, 100, 93, (137,21,0): 110, 101, 92, (137,22,0): 109, 103, 91, (137,23,0): 107, 104, 87, (137,24,0): 111, 110, 90, (137,25,0): 106, 108, 86, (137,26,0): 107, 110, 89, (137,27,0): 107, 114, 96, (137,28,0): 106, 116, 105, (137,29,0): 113, 124, 120, (137,30,0): 137, 148, 150, (137,31,0): 163, 174, 180, (137,32,0): 190, 199, 204, (137,33,0): 210, 219, 224, (137,34,0): 235, 240, 244, (137,35,0): 247, 252, 255, (137,36,0): 253, 254, 255, (137,37,0): 254, 255, 255, (137,38,0): 255, 254, 252, (137,39,0): 254, 253, 249, (137,40,0): 255, 255, 250, (137,41,0): 254, 254, 244, (137,42,0): 251, 251, 239, (137,43,0): 247, 249, 235, (137,44,0): 244, 247, 230, (137,45,0): 240, 245, 225, (137,46,0): 234, 242, 221, (137,47,0): 232, 237, 214, (137,48,0): 234, 239, 209, (137,49,0): 230, 235, 203, (137,50,0): 228, 231, 202, (137,51,0): 230, 230, 204, (137,52,0): 227, 225, 204, (137,53,0): 223, 217, 201, (137,54,0): 222, 212, 202, (137,55,0): 223, 212, 206, (137,56,0): 230, 216, 215, (137,57,0): 236, 222, 222, (137,58,0): 245, 230, 233, (137,59,0): 250, 238, 242, (137,60,0): 255, 243, 247, (137,61,0): 255, 246, 250, (137,62,0): 255, 249, 253, (137,63,0): 255, 251, 254, (137,64,0): 255, 254, 252, (137,65,0): 254, 254, 252, (137,66,0): 254, 254, 252, (137,67,0): 254, 254, 252, (137,68,0): 254, 254, 252, (137,69,0): 254, 254, 252, (137,70,0): 254, 254, 252, (137,71,0): 254, 254, 252, (137,72,0): 254, 254, 252, (137,73,0): 254, 254, 252, (137,74,0): 254, 254, 252, (137,75,0): 254, 254, 252, (137,76,0): 254, 254, 252, (137,77,0): 254, 254, 252, (137,78,0): 254, 254, 252, (137,79,0): 253, 255, 252, (137,80,0): 250, 255, 249, (137,81,0): 250, 255, 249, (137,82,0): 253, 255, 252, (137,83,0): 253, 254, 255, (137,84,0): 253, 252, 255, (137,85,0): 253, 250, 255, (137,86,0): 255, 250, 255, (137,87,0): 255, 248, 255, (137,88,0): 255, 252, 255, (137,89,0): 255, 250, 253, (137,90,0): 255, 248, 246, (137,91,0): 255, 249, 242, (137,92,0): 255, 252, 239, (137,93,0): 255, 252, 234, (137,94,0): 254, 248, 226, (137,95,0): 255, 241, 215, (137,96,0): 255, 234, 206, (137,97,0): 217, 178, 149, (137,98,0): 163, 117, 91, (137,99,0): 142, 92, 67, (137,100,0): 146, 92, 66, (137,101,0): 152, 92, 68, (137,102,0): 152, 87, 67, (137,103,0): 150, 83, 64, (137,104,0): 138, 70, 51, (137,105,0): 137, 68, 52, (137,106,0): 135, 68, 51, (137,107,0): 131, 68, 51, (137,108,0): 126, 67, 51, (137,109,0): 122, 66, 49, (137,110,0): 118, 65, 49, (137,111,0): 115, 63, 49, (137,112,0): 117, 64, 56, (137,113,0): 115, 62, 56, (137,114,0): 117, 62, 57, (137,115,0): 117, 64, 58, (137,116,0): 116, 63, 57, (137,117,0): 111, 61, 54, (137,118,0): 112, 62, 55, (137,119,0): 115, 65, 58, (137,120,0): 113, 63, 56, (137,121,0): 112, 63, 56, (137,122,0): 112, 63, 56, (137,123,0): 110, 63, 55, (137,124,0): 111, 62, 55, (137,125,0): 109, 62, 54, (137,126,0): 110, 61, 54, (137,127,0): 109, 62, 54, (137,128,0): 107, 60, 52, (137,129,0): 108, 61, 53, (137,130,0): 109, 62, 54, (137,131,0): 107, 63, 54, (137,132,0): 106, 63, 54, (137,133,0): 103, 65, 54, (137,134,0): 101, 65, 53, (137,135,0): 98, 66, 53, (137,136,0): 100, 71, 57, (137,137,0): 91, 65, 50, (137,138,0): 94, 71, 55, (137,139,0): 94, 73, 56, (137,140,0): 78, 61, 43, (137,141,0): 70, 55, 36, (137,142,0): 71, 56, 37, (137,143,0): 62, 54, 33, (137,144,0): 76, 76, 52, (137,145,0): 71, 75, 50, (137,146,0): 68, 71, 44, (137,147,0): 68, 68, 42, (137,148,0): 77, 77, 49, (137,149,0): 92, 91, 63, (137,150,0): 98, 97, 67, (137,151,0): 96, 97, 66, (137,152,0): 89, 89, 61, (137,153,0): 100, 103, 74, (137,154,0): 115, 119, 94, (137,155,0): 115, 121, 95, (137,156,0): 88, 96, 73, (137,157,0): 58, 68, 44, (137,158,0): 47, 59, 37, (137,159,0): 55, 67, 47, (137,160,0): 54, 62, 49, (137,161,0): 54, 60, 50, (137,162,0): 54, 60, 50, (137,163,0): 54, 60, 50, (137,164,0): 53, 59, 49, (137,165,0): 53, 59, 49, (137,166,0): 53, 59, 49, (137,167,0): 53, 59, 49, (137,168,0): 53, 59, 49, (137,169,0): 53, 59, 49, (137,170,0): 53, 59, 49, (137,171,0): 52, 58, 48, (137,172,0): 52, 58, 48, (137,173,0): 51, 57, 47, (137,174,0): 51, 57, 47, (137,175,0): 51, 57, 47, (137,176,0): 50, 55, 49, (137,177,0): 50, 55, 49, (137,178,0): 50, 55, 49, (137,179,0): 49, 54, 48, (137,180,0): 49, 54, 48, (137,181,0): 49, 54, 48, (137,182,0): 48, 53, 47, (137,183,0): 48, 53, 47, (137,184,0): 46, 51, 45, (137,185,0): 46, 51, 45, (137,186,0): 45, 50, 44, (137,187,0): 45, 50, 44, (137,188,0): 44, 49, 43, (137,189,0): 44, 49, 43, (137,190,0): 43, 48, 42, (137,191,0): 43, 48, 42, (137,192,0): 42, 49, 42, (137,193,0): 42, 49, 42, (137,194,0): 41, 48, 41, (137,195,0): 41, 48, 41, (137,196,0): 41, 48, 41, (137,197,0): 42, 49, 42, (137,198,0): 43, 50, 42, (137,199,0): 44, 51, 43, (137,200,0): 46, 53, 45, (137,201,0): 45, 52, 44, (137,202,0): 46, 53, 45, (137,203,0): 48, 55, 47, (137,204,0): 52, 59, 51, (137,205,0): 57, 65, 54, (137,206,0): 63, 70, 62, (137,207,0): 66, 74, 63, (137,208,0): 59, 70, 56, (137,209,0): 58, 69, 53, (137,210,0): 55, 66, 49, (137,211,0): 52, 63, 46, (137,212,0): 51, 63, 43, (137,213,0): 54, 66, 46, (137,214,0): 60, 72, 50, (137,215,0): 64, 76, 54, (137,216,0): 76, 88, 68, (137,217,0): 83, 95, 75, (137,218,0): 89, 100, 84, (137,219,0): 87, 98, 82, (137,220,0): 76, 86, 75, (137,221,0): 61, 71, 60, (137,222,0): 49, 59, 50, (137,223,0): 43, 53, 44, (137,224,0): 44, 51, 44, (137,225,0): 43, 49, 45, (137,226,0): 42, 48, 44, (138,0,0): 104, 101, 86, (138,1,0): 104, 101, 86, (138,2,0): 104, 101, 86, (138,3,0): 104, 101, 86, (138,4,0): 104, 101, 86, (138,5,0): 104, 101, 86, (138,6,0): 104, 101, 86, (138,7,0): 104, 101, 86, (138,8,0): 105, 102, 87, (138,9,0): 105, 102, 87, (138,10,0): 105, 102, 87, (138,11,0): 105, 102, 87, (138,12,0): 105, 102, 87, (138,13,0): 105, 102, 87, (138,14,0): 105, 102, 87, (138,15,0): 105, 102, 87, (138,16,0): 107, 101, 87, (138,17,0): 107, 101, 87, (138,18,0): 108, 99, 90, (138,19,0): 109, 100, 91, (138,20,0): 109, 100, 93, (138,21,0): 110, 101, 92, (138,22,0): 109, 103, 91, (138,23,0): 107, 104, 87, (138,24,0): 109, 108, 88, (138,25,0): 105, 109, 86, (138,26,0): 106, 111, 89, (138,27,0): 107, 116, 97, (138,28,0): 105, 117, 105, (138,29,0): 113, 125, 121, (138,30,0): 138, 152, 153, (138,31,0): 165, 178, 184, (138,32,0): 191, 202, 208, (138,33,0): 212, 221, 226, (138,34,0): 237, 242, 246, (138,35,0): 247, 252, 255, (138,36,0): 252, 253, 255, (138,37,0): 253, 255, 254, (138,38,0): 255, 254, 252, (138,39,0): 254, 253, 248, (138,40,0): 255, 255, 247, (138,41,0): 253, 253, 243, (138,42,0): 250, 251, 237, (138,43,0): 247, 250, 233, (138,44,0): 244, 247, 228, (138,45,0): 239, 244, 222, (138,46,0): 231, 239, 216, (138,47,0): 229, 235, 209, (138,48,0): 226, 231, 201, (138,49,0): 222, 225, 194, (138,50,0): 221, 221, 193, (138,51,0): 222, 222, 198, (138,52,0): 222, 219, 200, (138,53,0): 221, 215, 203, (138,54,0): 224, 213, 207, (138,55,0): 228, 217, 215, (138,56,0): 237, 225, 225, (138,57,0): 242, 230, 234, (138,58,0): 249, 237, 241, (138,59,0): 254, 243, 247, (138,60,0): 255, 246, 250, (138,61,0): 255, 248, 251, (138,62,0): 255, 249, 252, (138,63,0): 255, 252, 252, (138,64,0): 255, 254, 252, (138,65,0): 254, 254, 252, (138,66,0): 254, 254, 252, (138,67,0): 254, 254, 252, (138,68,0): 254, 254, 252, (138,69,0): 254, 254, 252, (138,70,0): 254, 254, 252, (138,71,0): 254, 254, 252, (138,72,0): 254, 254, 252, (138,73,0): 254, 254, 252, (138,74,0): 254, 254, 252, (138,75,0): 254, 254, 252, (138,76,0): 254, 254, 252, (138,77,0): 254, 254, 252, (138,78,0): 254, 254, 252, (138,79,0): 253, 255, 252, (138,80,0): 246, 255, 250, (138,81,0): 246, 255, 250, (138,82,0): 250, 254, 253, (138,83,0): 253, 253, 253, (138,84,0): 255, 250, 254, (138,85,0): 255, 248, 255, (138,86,0): 255, 246, 255, (138,87,0): 255, 244, 254, (138,88,0): 255, 249, 255, (138,89,0): 255, 247, 252, (138,90,0): 255, 247, 247, (138,91,0): 255, 250, 245, (138,92,0): 255, 255, 246, (138,93,0): 255, 255, 242, (138,94,0): 250, 253, 236, (138,95,0): 250, 248, 227, (138,96,0): 254, 240, 214, (138,97,0): 255, 246, 219, (138,98,0): 255, 235, 208, (138,99,0): 223, 191, 166, (138,100,0): 168, 131, 105, (138,101,0): 132, 90, 66, (138,102,0): 131, 83, 60, (138,103,0): 145, 93, 71, (138,104,0): 148, 93, 72, (138,105,0): 139, 82, 62, (138,106,0): 127, 70, 50, (138,107,0): 118, 63, 42, (138,108,0): 117, 62, 42, (138,109,0): 118, 66, 45, (138,110,0): 121, 70, 51, (138,111,0): 120, 71, 54, (138,112,0): 113, 63, 52, (138,113,0): 110, 60, 51, (138,114,0): 113, 60, 52, (138,115,0): 116, 66, 57, (138,116,0): 115, 65, 56, (138,117,0): 111, 63, 53, (138,118,0): 113, 65, 55, (138,119,0): 120, 72, 62, (138,120,0): 110, 62, 52, (138,121,0): 109, 62, 52, (138,122,0): 109, 62, 52, (138,123,0): 107, 63, 52, (138,124,0): 108, 61, 51, (138,125,0): 106, 62, 51, (138,126,0): 108, 61, 51, (138,127,0): 106, 62, 51, (138,128,0): 103, 63, 53, (138,129,0): 103, 65, 54, (138,130,0): 103, 65, 54, (138,131,0): 103, 67, 55, (138,132,0): 101, 67, 55, (138,133,0): 99, 67, 54, (138,134,0): 96, 67, 53, (138,135,0): 94, 68, 53, (138,136,0): 98, 75, 59, (138,137,0): 85, 66, 49, (138,138,0): 90, 73, 55, (138,139,0): 96, 83, 64, (138,140,0): 82, 71, 51, (138,141,0): 67, 59, 38, (138,142,0): 69, 61, 40, (138,143,0): 70, 65, 43, (138,144,0): 65, 69, 44, (138,145,0): 66, 72, 46, (138,146,0): 65, 69, 42, (138,147,0): 60, 64, 37, (138,148,0): 63, 66, 37, (138,149,0): 78, 78, 50, (138,150,0): 95, 96, 65, (138,151,0): 105, 106, 75, (138,152,0): 97, 97, 69, (138,153,0): 110, 113, 84, (138,154,0): 118, 122, 97, (138,155,0): 103, 109, 83, (138,156,0): 74, 79, 57, (138,157,0): 52, 60, 37, (138,158,0): 52, 61, 40, (138,159,0): 61, 70, 51, (138,160,0): 56, 62, 50, (138,161,0): 56, 62, 52, (138,162,0): 56, 62, 52, (138,163,0): 56, 62, 52, (138,164,0): 55, 61, 51, (138,165,0): 55, 61, 51, (138,166,0): 55, 61, 51, (138,167,0): 54, 60, 50, (138,168,0): 56, 62, 52, (138,169,0): 56, 62, 52, (138,170,0): 55, 61, 51, (138,171,0): 55, 61, 51, (138,172,0): 55, 61, 51, (138,173,0): 54, 60, 50, (138,174,0): 54, 60, 50, (138,175,0): 54, 60, 50, (138,176,0): 53, 58, 52, (138,177,0): 52, 57, 51, (138,178,0): 52, 57, 51, (138,179,0): 52, 57, 51, (138,180,0): 51, 56, 50, (138,181,0): 51, 56, 50, (138,182,0): 51, 56, 50, (138,183,0): 50, 55, 49, (138,184,0): 48, 53, 47, (138,185,0): 48, 53, 47, (138,186,0): 47, 52, 46, (138,187,0): 46, 51, 45, (138,188,0): 45, 50, 44, (138,189,0): 44, 49, 43, (138,190,0): 43, 48, 42, (138,191,0): 43, 48, 42, (138,192,0): 41, 46, 40, (138,193,0): 41, 46, 40, (138,194,0): 41, 46, 40, (138,195,0): 41, 46, 40, (138,196,0): 41, 46, 40, (138,197,0): 42, 47, 41, (138,198,0): 43, 48, 42, (138,199,0): 44, 49, 43, (138,200,0): 49, 54, 48, (138,201,0): 47, 52, 46, (138,202,0): 44, 49, 43, (138,203,0): 44, 49, 43, (138,204,0): 47, 52, 46, (138,205,0): 54, 59, 52, (138,206,0): 61, 66, 60, (138,207,0): 65, 72, 64, (138,208,0): 64, 75, 61, (138,209,0): 62, 75, 58, (138,210,0): 60, 73, 55, (138,211,0): 56, 69, 51, (138,212,0): 52, 65, 45, (138,213,0): 50, 63, 43, (138,214,0): 51, 65, 42, (138,215,0): 53, 67, 44, (138,216,0): 68, 81, 61, (138,217,0): 75, 88, 68, (138,218,0): 81, 94, 77, (138,219,0): 81, 94, 77, (138,220,0): 72, 84, 72, (138,221,0): 60, 72, 60, (138,222,0): 50, 62, 52, (138,223,0): 46, 56, 47, (138,224,0): 46, 53, 46, (138,225,0): 46, 53, 46, (138,226,0): 45, 52, 45, (139,0,0): 103, 100, 85, (139,1,0): 103, 100, 85, (139,2,0): 104, 101, 86, (139,3,0): 104, 101, 86, (139,4,0): 104, 101, 86, (139,5,0): 104, 101, 86, (139,6,0): 105, 102, 87, (139,7,0): 105, 102, 87, (139,8,0): 105, 102, 87, (139,9,0): 105, 102, 87, (139,10,0): 105, 102, 87, (139,11,0): 105, 102, 87, (139,12,0): 105, 102, 87, (139,13,0): 105, 102, 87, (139,14,0): 105, 102, 87, (139,15,0): 105, 102, 87, (139,16,0): 107, 101, 87, (139,17,0): 107, 101, 87, (139,18,0): 108, 99, 90, (139,19,0): 109, 100, 91, (139,20,0): 109, 100, 93, (139,21,0): 109, 102, 92, (139,22,0): 109, 103, 91, (139,23,0): 106, 105, 87, (139,24,0): 107, 109, 88, (139,25,0): 105, 109, 86, (139,26,0): 106, 111, 89, (139,27,0): 106, 115, 96, (139,28,0): 104, 116, 104, (139,29,0): 109, 124, 119, (139,30,0): 136, 152, 152, (139,31,0): 166, 179, 185, (139,32,0): 191, 202, 208, (139,33,0): 211, 220, 227, (139,34,0): 235, 240, 246, (139,35,0): 246, 251, 255, (139,36,0): 252, 253, 255, (139,37,0): 253, 255, 254, (139,38,0): 255, 255, 253, (139,39,0): 255, 254, 249, (139,40,0): 254, 254, 246, (139,41,0): 253, 253, 241, (139,42,0): 250, 251, 237, (139,43,0): 247, 250, 231, (139,44,0): 244, 247, 226, (139,45,0): 238, 243, 220, (139,46,0): 229, 237, 213, (139,47,0): 226, 232, 206, (139,48,0): 219, 224, 192, (139,49,0): 215, 218, 187, (139,50,0): 214, 214, 188, (139,51,0): 217, 215, 194, (139,52,0): 221, 215, 199, (139,53,0): 222, 215, 205, (139,54,0): 229, 219, 217, (139,55,0): 236, 224, 224, (139,56,0): 247, 235, 239, (139,57,0): 250, 239, 245, (139,58,0): 255, 244, 250, (139,59,0): 255, 248, 253, (139,60,0): 255, 249, 252, (139,61,0): 255, 250, 250, (139,62,0): 255, 250, 250, (139,63,0): 255, 252, 251, (139,64,0): 255, 254, 252, (139,65,0): 254, 254, 252, (139,66,0): 254, 254, 252, (139,67,0): 254, 254, 252, (139,68,0): 254, 254, 252, (139,69,0): 254, 254, 252, (139,70,0): 254, 254, 252, (139,71,0): 254, 254, 252, (139,72,0): 254, 254, 252, (139,73,0): 254, 254, 252, (139,74,0): 254, 254, 252, (139,75,0): 254, 254, 252, (139,76,0): 254, 254, 252, (139,77,0): 254, 254, 252, (139,78,0): 254, 254, 252, (139,79,0): 253, 255, 252, (139,80,0): 247, 255, 253, (139,81,0): 247, 255, 253, (139,82,0): 250, 254, 253, (139,83,0): 253, 253, 253, (139,84,0): 255, 251, 253, (139,85,0): 255, 248, 254, (139,86,0): 255, 246, 253, (139,87,0): 255, 244, 250, (139,88,0): 255, 248, 251, (139,89,0): 255, 247, 250, (139,90,0): 255, 248, 248, (139,91,0): 255, 252, 249, (139,92,0): 255, 255, 248, (139,93,0): 255, 255, 248, (139,94,0): 250, 255, 244, (139,95,0): 250, 252, 238, (139,96,0): 255, 255, 237, (139,97,0): 255, 248, 228, (139,98,0): 253, 238, 219, (139,99,0): 255, 239, 219, (139,100,0): 255, 239, 217, (139,101,0): 238, 210, 188, (139,102,0): 176, 144, 121, (139,103,0): 118, 82, 60, (139,104,0): 117, 76, 54, (139,105,0): 117, 75, 53, (139,106,0): 119, 74, 53, (139,107,0): 123, 78, 57, (139,108,0): 125, 80, 59, (139,109,0): 120, 75, 54, (139,110,0): 107, 64, 45, (139,111,0): 98, 55, 38, (139,112,0): 123, 77, 64, (139,113,0): 115, 68, 58, (139,114,0): 113, 66, 56, (139,115,0): 115, 68, 58, (139,116,0): 111, 67, 56, (139,117,0): 103, 59, 48, (139,118,0): 100, 56, 45, (139,119,0): 103, 61, 49, (139,120,0): 105, 63, 51, (139,121,0): 105, 63, 51, (139,122,0): 105, 63, 51, (139,123,0): 103, 63, 51, (139,124,0): 102, 62, 50, (139,125,0): 102, 62, 50, (139,126,0): 102, 62, 50, (139,127,0): 101, 63, 50, (139,128,0): 98, 64, 52, (139,129,0): 98, 66, 53, (139,130,0): 96, 67, 53, (139,131,0): 95, 67, 53, (139,132,0): 95, 67, 53, (139,133,0): 91, 68, 52, (139,134,0): 90, 69, 52, (139,135,0): 87, 68, 51, (139,136,0): 88, 73, 54, (139,137,0): 79, 66, 47, (139,138,0): 92, 84, 63, (139,139,0): 111, 105, 83, (139,140,0): 99, 94, 72, (139,141,0): 77, 75, 52, (139,142,0): 73, 71, 48, (139,143,0): 73, 75, 51, (139,144,0): 62, 68, 42, (139,145,0): 63, 72, 45, (139,146,0): 64, 70, 42, (139,147,0): 60, 66, 38, (139,148,0): 60, 65, 35, (139,149,0): 70, 73, 44, (139,150,0): 88, 89, 58, (139,151,0): 100, 101, 70, (139,152,0): 109, 109, 81, (139,153,0): 120, 120, 92, (139,154,0): 116, 118, 94, (139,155,0): 91, 95, 70, (139,156,0): 64, 67, 46, (139,157,0): 54, 59, 37, (139,158,0): 56, 64, 43, (139,159,0): 60, 67, 49, (139,160,0): 57, 63, 51, (139,161,0): 57, 63, 53, (139,162,0): 57, 63, 53, (139,163,0): 56, 62, 52, (139,164,0): 56, 62, 52, (139,165,0): 55, 61, 51, (139,166,0): 55, 61, 51, (139,167,0): 55, 61, 51, (139,168,0): 57, 63, 53, (139,169,0): 56, 62, 52, (139,170,0): 56, 62, 52, (139,171,0): 56, 62, 52, (139,172,0): 56, 62, 52, (139,173,0): 56, 62, 52, (139,174,0): 56, 62, 52, (139,175,0): 56, 62, 52, (139,176,0): 55, 60, 54, (139,177,0): 55, 60, 54, (139,178,0): 55, 60, 54, (139,179,0): 54, 59, 53, (139,180,0): 54, 59, 53, (139,181,0): 54, 59, 53, (139,182,0): 53, 58, 52, (139,183,0): 53, 58, 52, (139,184,0): 51, 56, 50, (139,185,0): 51, 56, 50, (139,186,0): 49, 54, 48, (139,187,0): 48, 53, 47, (139,188,0): 47, 52, 46, (139,189,0): 45, 50, 44, (139,190,0): 44, 49, 43, (139,191,0): 44, 49, 43, (139,192,0): 43, 48, 42, (139,193,0): 43, 48, 42, (139,194,0): 42, 47, 41, (139,195,0): 42, 47, 41, (139,196,0): 43, 48, 42, (139,197,0): 44, 49, 43, (139,198,0): 45, 50, 44, (139,199,0): 45, 50, 44, (139,200,0): 48, 53, 47, (139,201,0): 46, 51, 45, (139,202,0): 43, 48, 42, (139,203,0): 43, 48, 42, (139,204,0): 45, 50, 46, (139,205,0): 50, 55, 49, (139,206,0): 56, 61, 57, (139,207,0): 59, 66, 58, (139,208,0): 64, 75, 61, (139,209,0): 64, 77, 59, (139,210,0): 64, 77, 59, (139,211,0): 61, 74, 54, (139,212,0): 56, 69, 49, (139,213,0): 51, 64, 44, (139,214,0): 49, 63, 40, (139,215,0): 48, 62, 39, (139,216,0): 60, 73, 53, (139,217,0): 66, 79, 59, (139,218,0): 72, 85, 67, (139,219,0): 73, 86, 69, (139,220,0): 68, 80, 66, (139,221,0): 59, 71, 59, (139,222,0): 50, 62, 52, (139,223,0): 46, 58, 48, (139,224,0): 45, 55, 47, (139,225,0): 47, 54, 47, (139,226,0): 46, 53, 46, (140,0,0): 103, 100, 85, (140,1,0): 103, 100, 85, (140,2,0): 103, 100, 85, (140,3,0): 104, 101, 86, (140,4,0): 104, 101, 86, (140,5,0): 105, 102, 87, (140,6,0): 105, 102, 87, (140,7,0): 105, 102, 87, (140,8,0): 105, 102, 87, (140,9,0): 105, 102, 87, (140,10,0): 105, 102, 87, (140,11,0): 105, 102, 87, (140,12,0): 105, 102, 87, (140,13,0): 105, 102, 87, (140,14,0): 105, 102, 87, (140,15,0): 105, 102, 87, (140,16,0): 107, 101, 87, (140,17,0): 108, 100, 87, (140,18,0): 108, 99, 90, (140,19,0): 109, 100, 91, (140,20,0): 109, 100, 93, (140,21,0): 109, 102, 92, (140,22,0): 109, 103, 91, (140,23,0): 106, 105, 87, (140,24,0): 107, 109, 88, (140,25,0): 105, 110, 87, (140,26,0): 105, 113, 90, (140,27,0): 103, 115, 95, (140,28,0): 100, 114, 101, (140,29,0): 106, 121, 116, (140,30,0): 133, 149, 149, (140,31,0): 163, 178, 183, (140,32,0): 189, 200, 206, (140,33,0): 210, 219, 226, (140,34,0): 234, 239, 245, (140,35,0): 244, 249, 253, (140,36,0): 251, 252, 255, (140,37,0): 253, 255, 254, (140,38,0): 255, 255, 253, (140,39,0): 255, 255, 250, (140,40,0): 255, 255, 248, (140,41,0): 255, 255, 243, (140,42,0): 254, 255, 241, (140,43,0): 251, 254, 235, (140,44,0): 247, 250, 229, (140,45,0): 240, 245, 222, (140,46,0): 230, 238, 214, (140,47,0): 226, 232, 204, (140,48,0): 217, 220, 191, (140,49,0): 213, 213, 185, (140,50,0): 210, 208, 185, (140,51,0): 212, 209, 190, (140,52,0): 218, 212, 200, (140,53,0): 224, 217, 209, (140,54,0): 234, 224, 223, (140,55,0): 244, 233, 237, (140,56,0): 253, 242, 248, (140,57,0): 255, 246, 251, (140,58,0): 255, 250, 255, (140,59,0): 255, 252, 255, (140,60,0): 255, 253, 254, (140,61,0): 254, 253, 251, (140,62,0): 254, 253, 249, (140,63,0): 254, 253, 249, (140,64,0): 254, 254, 252, (140,65,0): 254, 254, 252, (140,66,0): 254, 254, 252, (140,67,0): 254, 254, 252, (140,68,0): 254, 254, 252, (140,69,0): 254, 254, 252, (140,70,0): 254, 254, 252, (140,71,0): 254, 254, 252, (140,72,0): 254, 254, 252, (140,73,0): 254, 254, 252, (140,74,0): 254, 254, 252, (140,75,0): 254, 254, 252, (140,76,0): 254, 254, 252, (140,77,0): 254, 254, 252, (140,78,0): 254, 254, 252, (140,79,0): 253, 255, 254, (140,80,0): 250, 255, 255, (140,81,0): 250, 255, 255, (140,82,0): 252, 255, 255, (140,83,0): 255, 255, 255, (140,84,0): 255, 253, 254, (140,85,0): 255, 251, 251, (140,86,0): 255, 249, 250, (140,87,0): 255, 249, 248, (140,88,0): 255, 248, 246, (140,89,0): 255, 249, 247, (140,90,0): 255, 250, 247, (140,91,0): 255, 254, 249, (140,92,0): 255, 255, 251, (140,93,0): 255, 255, 251, (140,94,0): 253, 255, 250, (140,95,0): 252, 253, 248, (140,96,0): 244, 241, 234, (140,97,0): 255, 251, 243, (140,98,0): 255, 253, 244, (140,99,0): 255, 251, 241, (140,100,0): 255, 248, 235, (140,101,0): 255, 244, 228, (140,102,0): 246, 227, 210, (140,103,0): 228, 207, 188, (140,104,0): 208, 183, 163, (140,105,0): 183, 156, 135, (140,106,0): 146, 118, 97, (140,107,0): 118, 87, 67, (140,108,0): 104, 73, 53, (140,109,0): 104, 73, 53, (140,110,0): 109, 76, 57, (140,111,0): 112, 79, 60, (140,112,0): 108, 71, 55, (140,113,0): 105, 66, 51, (140,114,0): 103, 66, 50, (140,115,0): 106, 69, 53, (140,116,0): 110, 73, 57, (140,117,0): 110, 74, 58, (140,118,0): 111, 75, 59, (140,119,0): 111, 75, 59, (140,120,0): 101, 65, 49, (140,121,0): 99, 66, 49, (140,122,0): 99, 66, 49, (140,123,0): 99, 66, 49, (140,124,0): 99, 66, 49, (140,125,0): 99, 66, 49, (140,126,0): 98, 67, 49, (140,127,0): 96, 67, 51, (140,128,0): 93, 70, 54, (140,129,0): 92, 71, 54, (140,130,0): 92, 71, 54, (140,131,0): 90, 71, 54, (140,132,0): 90, 71, 54, (140,133,0): 87, 72, 53, (140,134,0): 84, 71, 52, (140,135,0): 82, 71, 51, (140,136,0): 80, 72, 51, (140,137,0): 78, 72, 50, (140,138,0): 102, 100, 77, (140,139,0): 126, 126, 102, (140,140,0): 114, 114, 90, (140,141,0): 86, 88, 64, (140,142,0): 74, 76, 52, (140,143,0): 71, 77, 51, (140,144,0): 60, 69, 42, (140,145,0): 60, 70, 43, (140,146,0): 63, 72, 43, (140,147,0): 65, 71, 43, (140,148,0): 65, 70, 40, (140,149,0): 68, 71, 42, (140,150,0): 77, 78, 47, (140,151,0): 84, 85, 54, (140,152,0): 120, 119, 91, (140,153,0): 123, 122, 94, (140,154,0): 110, 110, 86, (140,155,0): 85, 85, 61, (140,156,0): 67, 66, 46, (140,157,0): 63, 65, 44, (140,158,0): 62, 65, 46, (140,159,0): 58, 62, 45, (140,160,0): 59, 62, 51, (140,161,0): 57, 63, 53, (140,162,0): 57, 63, 53, (140,163,0): 56, 62, 52, (140,164,0): 56, 62, 52, (140,165,0): 55, 61, 51, (140,166,0): 55, 61, 51, (140,167,0): 55, 61, 51, (140,168,0): 56, 62, 52, (140,169,0): 56, 62, 52, (140,170,0): 56, 62, 52, (140,171,0): 56, 62, 52, (140,172,0): 56, 62, 52, (140,173,0): 56, 62, 52, (140,174,0): 56, 62, 52, (140,175,0): 56, 62, 52, (140,176,0): 57, 62, 56, (140,177,0): 57, 62, 56, (140,178,0): 57, 62, 56, (140,179,0): 56, 61, 55, (140,180,0): 56, 61, 55, (140,181,0): 56, 61, 55, (140,182,0): 55, 60, 54, (140,183,0): 55, 60, 54, (140,184,0): 54, 59, 53, (140,185,0): 53, 58, 52, (140,186,0): 52, 57, 51, (140,187,0): 51, 56, 50, (140,188,0): 50, 55, 49, (140,189,0): 48, 53, 47, (140,190,0): 47, 52, 46, (140,191,0): 47, 52, 46, (140,192,0): 45, 50, 46, (140,193,0): 45, 50, 46, (140,194,0): 44, 49, 45, (140,195,0): 43, 48, 44, (140,196,0): 43, 48, 44, (140,197,0): 44, 49, 45, (140,198,0): 45, 50, 46, (140,199,0): 45, 50, 46, (140,200,0): 44, 49, 45, (140,201,0): 44, 49, 45, (140,202,0): 44, 49, 45, (140,203,0): 44, 49, 45, (140,204,0): 46, 50, 49, (140,205,0): 48, 53, 49, (140,206,0): 51, 55, 54, (140,207,0): 52, 59, 52, (140,208,0): 59, 71, 57, (140,209,0): 61, 76, 57, (140,210,0): 64, 79, 60, (140,211,0): 64, 79, 58, (140,212,0): 60, 75, 54, (140,213,0): 55, 70, 47, (140,214,0): 52, 67, 44, (140,215,0): 50, 65, 42, (140,216,0): 54, 69, 46, (140,217,0): 58, 73, 52, (140,218,0): 64, 79, 60, (140,219,0): 66, 80, 63, (140,220,0): 63, 77, 62, (140,221,0): 56, 70, 55, (140,222,0): 49, 63, 50, (140,223,0): 45, 57, 45, (140,224,0): 45, 55, 46, (140,225,0): 46, 53, 45, (140,226,0): 45, 52, 44, (141,0,0): 102, 99, 84, (141,1,0): 102, 99, 84, (141,2,0): 103, 100, 85, (141,3,0): 104, 101, 86, (141,4,0): 104, 101, 86, (141,5,0): 105, 102, 87, (141,6,0): 106, 103, 88, (141,7,0): 106, 103, 88, (141,8,0): 105, 102, 87, (141,9,0): 105, 102, 87, (141,10,0): 105, 102, 87, (141,11,0): 105, 102, 87, (141,12,0): 105, 102, 87, (141,13,0): 105, 102, 87, (141,14,0): 105, 102, 87, (141,15,0): 105, 102, 87, (141,16,0): 108, 100, 87, (141,17,0): 108, 100, 87, (141,18,0): 108, 99, 90, (141,19,0): 109, 100, 91, (141,20,0): 109, 100, 93, (141,21,0): 109, 102, 92, (141,22,0): 109, 103, 91, (141,23,0): 106, 105, 87, (141,24,0): 107, 109, 88, (141,25,0): 105, 110, 87, (141,26,0): 105, 113, 90, (141,27,0): 103, 115, 95, (141,28,0): 98, 112, 99, (141,29,0): 103, 120, 114, (141,30,0): 130, 148, 148, (141,31,0): 163, 178, 183, (141,32,0): 192, 203, 209, (141,33,0): 212, 221, 228, (141,34,0): 235, 240, 246, (141,35,0): 245, 250, 254, (141,36,0): 251, 252, 255, (141,37,0): 253, 255, 254, (141,38,0): 255, 255, 253, (141,39,0): 255, 255, 250, (141,40,0): 255, 255, 248, (141,41,0): 255, 255, 244, (141,42,0): 255, 255, 243, (141,43,0): 255, 255, 239, (141,44,0): 250, 253, 232, (141,45,0): 242, 247, 224, (141,46,0): 231, 240, 213, (141,47,0): 226, 232, 204, (141,48,0): 215, 218, 189, (141,49,0): 209, 209, 181, (141,50,0): 205, 203, 180, (141,51,0): 206, 203, 186, (141,52,0): 214, 207, 197, (141,53,0): 222, 215, 209, (141,54,0): 236, 226, 227, (141,55,0): 247, 238, 243, (141,56,0): 255, 245, 253, (141,57,0): 255, 249, 255, (141,58,0): 255, 252, 255, (141,59,0): 255, 254, 255, (141,60,0): 255, 254, 252, (141,61,0): 253, 254, 249, (141,62,0): 253, 254, 248, (141,63,0): 253, 255, 249, (141,64,0): 254, 255, 250, (141,65,0): 254, 254, 252, (141,66,0): 254, 254, 252, (141,67,0): 254, 254, 252, (141,68,0): 254, 254, 252, (141,69,0): 254, 254, 252, (141,70,0): 254, 254, 252, (141,71,0): 254, 254, 252, (141,72,0): 254, 254, 252, (141,73,0): 254, 254, 252, (141,74,0): 254, 254, 252, (141,75,0): 254, 254, 252, (141,76,0): 254, 254, 252, (141,77,0): 254, 254, 252, (141,78,0): 254, 254, 252, (141,79,0): 254, 254, 254, (141,80,0): 253, 254, 255, (141,81,0): 254, 255, 255, (141,82,0): 254, 255, 255, (141,83,0): 254, 255, 255, (141,84,0): 254, 255, 253, (141,85,0): 254, 255, 250, (141,86,0): 253, 254, 248, (141,87,0): 253, 253, 245, (141,88,0): 251, 251, 241, (141,89,0): 252, 252, 244, (141,90,0): 254, 253, 248, (141,91,0): 255, 254, 250, (141,92,0): 255, 255, 253, (141,93,0): 254, 254, 254, (141,94,0): 254, 252, 255, (141,95,0): 254, 252, 255, (141,96,0): 251, 246, 252, (141,97,0): 255, 250, 254, (141,98,0): 254, 248, 250, (141,99,0): 249, 244, 241, (141,100,0): 253, 246, 240, (141,101,0): 255, 254, 244, (141,102,0): 255, 254, 241, (141,103,0): 255, 254, 237, (141,104,0): 255, 248, 230, (141,105,0): 252, 239, 220, (141,106,0): 242, 227, 208, (141,107,0): 226, 209, 189, (141,108,0): 205, 187, 167, (141,109,0): 179, 161, 141, (141,110,0): 155, 134, 115, (141,111,0): 140, 117, 99, (141,112,0): 122, 93, 75, (141,113,0): 125, 94, 76, (141,114,0): 116, 85, 67, (141,115,0): 97, 68, 50, (141,116,0): 87, 58, 40, (141,117,0): 89, 60, 42, (141,118,0): 91, 62, 44, (141,119,0): 88, 61, 42, (141,120,0): 96, 69, 50, (141,121,0): 96, 69, 50, (141,122,0): 96, 69, 50, (141,123,0): 95, 70, 50, (141,124,0): 96, 71, 51, (141,125,0): 96, 71, 51, (141,126,0): 96, 71, 51, (141,127,0): 93, 72, 51, (141,128,0): 92, 75, 55, (141,129,0): 92, 77, 58, (141,130,0): 92, 77, 58, (141,131,0): 89, 76, 57, (141,132,0): 88, 77, 57, (141,133,0): 85, 77, 56, (141,134,0): 82, 76, 54, (141,135,0): 81, 76, 54, (141,136,0): 78, 76, 53, (141,137,0): 81, 81, 57, (141,138,0): 105, 107, 83, (141,139,0): 124, 128, 103, (141,140,0): 109, 113, 88, (141,141,0): 83, 89, 63, (141,142,0): 70, 76, 50, (141,143,0): 62, 71, 44, (141,144,0): 60, 70, 43, (141,145,0): 60, 70, 43, (141,146,0): 63, 72, 43, (141,147,0): 68, 74, 46, (141,148,0): 69, 74, 44, (141,149,0): 68, 71, 42, (141,150,0): 72, 73, 42, (141,151,0): 76, 77, 46, (141,152,0): 121, 120, 92, (141,153,0): 116, 115, 87, (141,154,0): 102, 100, 77, (141,155,0): 84, 82, 59, (141,156,0): 76, 73, 54, (141,157,0): 75, 74, 54, (141,158,0): 70, 69, 51, (141,159,0): 60, 61, 45, (141,160,0): 60, 63, 52, (141,161,0): 57, 63, 53, (141,162,0): 57, 63, 53, (141,163,0): 57, 63, 53, (141,164,0): 56, 62, 52, (141,165,0): 56, 62, 52, (141,166,0): 56, 62, 52, (141,167,0): 56, 62, 52, (141,168,0): 55, 61, 51, (141,169,0): 55, 61, 51, (141,170,0): 56, 62, 52, (141,171,0): 56, 62, 52, (141,172,0): 56, 62, 52, (141,173,0): 56, 62, 52, (141,174,0): 57, 63, 53, (141,175,0): 57, 63, 53, (141,176,0): 58, 63, 57, (141,177,0): 58, 63, 57, (141,178,0): 58, 63, 57, (141,179,0): 58, 63, 57, (141,180,0): 57, 62, 56, (141,181,0): 57, 62, 56, (141,182,0): 57, 62, 56, (141,183,0): 56, 61, 55, (141,184,0): 56, 61, 55, (141,185,0): 56, 61, 55, (141,186,0): 55, 60, 54, (141,187,0): 54, 59, 53, (141,188,0): 53, 58, 52, (141,189,0): 52, 57, 51, (141,190,0): 51, 56, 50, (141,191,0): 51, 56, 50, (141,192,0): 47, 52, 48, (141,193,0): 46, 51, 47, (141,194,0): 45, 50, 46, (141,195,0): 44, 49, 45, (141,196,0): 43, 48, 44, (141,197,0): 43, 48, 44, (141,198,0): 43, 48, 44, (141,199,0): 43, 48, 44, (141,200,0): 43, 48, 44, (141,201,0): 44, 49, 45, (141,202,0): 45, 49, 48, (141,203,0): 46, 50, 49, (141,204,0): 47, 51, 50, (141,205,0): 47, 51, 50, (141,206,0): 47, 51, 50, (141,207,0): 45, 52, 45, (141,208,0): 51, 63, 49, (141,209,0): 55, 70, 51, (141,210,0): 61, 76, 55, (141,211,0): 64, 79, 58, (141,212,0): 63, 78, 55, (141,213,0): 60, 75, 52, (141,214,0): 57, 72, 49, (141,215,0): 56, 71, 48, (141,216,0): 53, 68, 45, (141,217,0): 56, 71, 48, (141,218,0): 60, 75, 54, (141,219,0): 62, 77, 58, (141,220,0): 60, 74, 57, (141,221,0): 55, 69, 54, (141,222,0): 49, 63, 50, (141,223,0): 45, 57, 45, (141,224,0): 44, 54, 45, (141,225,0): 46, 53, 45, (141,226,0): 45, 52, 44, (142,0,0): 102, 99, 84, (142,1,0): 102, 99, 84, (142,2,0): 103, 100, 85, (142,3,0): 104, 101, 86, (142,4,0): 104, 101, 86, (142,5,0): 105, 102, 87, (142,6,0): 106, 103, 88, (142,7,0): 106, 103, 88, (142,8,0): 105, 102, 87, (142,9,0): 105, 102, 87, (142,10,0): 105, 102, 87, (142,11,0): 105, 102, 87, (142,12,0): 105, 102, 87, (142,13,0): 105, 102, 87, (142,14,0): 105, 102, 87, (142,15,0): 105, 102, 87, (142,16,0): 108, 100, 87, (142,17,0): 108, 100, 87, (142,18,0): 108, 99, 90, (142,19,0): 109, 100, 91, (142,20,0): 109, 100, 93, (142,21,0): 109, 102, 92, (142,22,0): 109, 103, 91, (142,23,0): 106, 105, 87, (142,24,0): 106, 108, 87, (142,25,0): 104, 109, 86, (142,26,0): 104, 114, 90, (142,27,0): 102, 115, 95, (142,28,0): 99, 113, 100, (142,29,0): 104, 121, 115, (142,30,0): 133, 151, 151, (142,31,0): 165, 183, 187, (142,32,0): 199, 210, 216, (142,33,0): 218, 227, 234, (142,34,0): 240, 245, 251, (142,35,0): 248, 253, 255, (142,36,0): 252, 253, 255, (142,37,0): 253, 255, 254, (142,38,0): 255, 255, 253, (142,39,0): 255, 254, 249, (142,40,0): 255, 255, 245, (142,41,0): 255, 255, 242, (142,42,0): 255, 255, 240, (142,43,0): 252, 255, 236, (142,44,0): 248, 251, 230, (142,45,0): 239, 244, 221, (142,46,0): 226, 235, 208, (142,47,0): 221, 227, 199, (142,48,0): 213, 213, 185, (142,49,0): 206, 204, 179, (142,50,0): 201, 196, 176, (142,51,0): 202, 196, 180, (142,52,0): 208, 201, 191, (142,53,0): 218, 210, 207, (142,54,0): 233, 224, 227, (142,55,0): 246, 237, 242, (142,56,0): 255, 246, 254, (142,57,0): 255, 249, 255, (142,58,0): 255, 252, 255, (142,59,0): 255, 254, 255, (142,60,0): 254, 254, 252, (142,61,0): 252, 254, 249, (142,62,0): 251, 255, 247, (142,63,0): 252, 255, 248, (142,64,0): 253, 255, 250, (142,65,0): 254, 254, 252, (142,66,0): 254, 254, 252, (142,67,0): 254, 254, 252, (142,68,0): 254, 254, 252, (142,69,0): 254, 254, 252, (142,70,0): 254, 254, 252, (142,71,0): 254, 254, 252, (142,72,0): 254, 254, 252, (142,73,0): 254, 254, 252, (142,74,0): 254, 254, 252, (142,75,0): 254, 254, 252, (142,76,0): 254, 254, 252, (142,77,0): 254, 254, 252, (142,78,0): 254, 254, 252, (142,79,0): 254, 254, 254, (142,80,0): 254, 251, 255, (142,81,0): 255, 252, 255, (142,82,0): 254, 253, 255, (142,83,0): 253, 255, 254, (142,84,0): 250, 255, 250, (142,85,0): 247, 255, 248, (142,86,0): 246, 255, 243, (142,87,0): 245, 255, 240, (142,88,0): 243, 254, 238, (142,89,0): 245, 255, 242, (142,90,0): 250, 255, 246, (142,91,0): 253, 255, 250, (142,92,0): 255, 253, 254, (142,93,0): 255, 251, 255, (142,94,0): 255, 249, 255, (142,95,0): 255, 248, 255, (142,96,0): 252, 241, 255, (142,97,0): 254, 245, 255, (142,98,0): 255, 250, 255, (142,99,0): 255, 253, 255, (142,100,0): 255, 252, 255, (142,101,0): 252, 251, 249, (142,102,0): 248, 248, 240, (142,103,0): 245, 245, 233, (142,104,0): 255, 255, 241, (142,105,0): 255, 255, 239, (142,106,0): 255, 255, 237, (142,107,0): 255, 255, 237, (142,108,0): 255, 252, 234, (142,109,0): 255, 246, 229, (142,110,0): 251, 239, 223, (142,111,0): 248, 235, 218, (142,112,0): 249, 228, 209, (142,113,0): 255, 230, 208, (142,114,0): 227, 202, 180, (142,115,0): 165, 143, 120, (142,116,0): 116, 94, 71, (142,117,0): 101, 79, 56, (142,118,0): 98, 76, 53, (142,119,0): 92, 72, 48, (142,120,0): 94, 74, 50, (142,121,0): 92, 74, 50, (142,122,0): 92, 74, 50, (142,123,0): 93, 75, 51, (142,124,0): 93, 75, 51, (142,125,0): 94, 76, 52, (142,126,0): 94, 76, 52, (142,127,0): 92, 77, 54, (142,128,0): 89, 78, 56, (142,129,0): 87, 79, 58, (142,130,0): 87, 79, 58, (142,131,0): 86, 80, 58, (142,132,0): 85, 79, 57, (142,133,0): 83, 78, 56, (142,134,0): 80, 78, 55, (142,135,0): 78, 78, 54, (142,136,0): 77, 79, 55, (142,137,0): 80, 84, 59, (142,138,0): 96, 102, 76, (142,139,0): 102, 111, 84, (142,140,0): 85, 94, 67, (142,141,0): 69, 79, 52, (142,142,0): 65, 75, 48, (142,143,0): 60, 70, 43, (142,144,0): 63, 73, 46, (142,145,0): 63, 73, 46, (142,146,0): 67, 76, 47, (142,147,0): 72, 78, 50, (142,148,0): 72, 77, 47, (142,149,0): 70, 73, 44, (142,150,0): 79, 80, 49, (142,151,0): 89, 88, 58, (142,152,0): 113, 109, 82, (142,153,0): 106, 102, 75, (142,154,0): 97, 92, 70, (142,155,0): 91, 86, 64, (142,156,0): 89, 84, 65, (142,157,0): 84, 81, 62, (142,158,0): 77, 74, 57, (142,159,0): 66, 67, 51, (142,160,0): 61, 64, 53, (142,161,0): 59, 65, 55, (142,162,0): 59, 65, 55, (142,163,0): 59, 65, 55, (142,164,0): 58, 64, 54, (142,165,0): 58, 64, 54, (142,166,0): 58, 64, 54, (142,167,0): 57, 63, 53, (142,168,0): 56, 62, 52, (142,169,0): 56, 62, 52, (142,170,0): 56, 62, 52, (142,171,0): 57, 63, 53, (142,172,0): 57, 63, 53, (142,173,0): 58, 64, 54, (142,174,0): 58, 64, 54, (142,175,0): 58, 64, 54, (142,176,0): 59, 64, 58, (142,177,0): 59, 64, 58, (142,178,0): 59, 64, 58, (142,179,0): 58, 63, 57, (142,180,0): 58, 63, 57, (142,181,0): 57, 62, 56, (142,182,0): 57, 62, 56, (142,183,0): 57, 62, 56, (142,184,0): 58, 63, 57, (142,185,0): 58, 63, 57, (142,186,0): 57, 62, 56, (142,187,0): 57, 62, 56, (142,188,0): 56, 61, 55, (142,189,0): 56, 61, 55, (142,190,0): 55, 60, 54, (142,191,0): 55, 60, 54, (142,192,0): 52, 57, 53, (142,193,0): 50, 55, 51, (142,194,0): 49, 54, 50, (142,195,0): 47, 52, 48, (142,196,0): 45, 50, 46, (142,197,0): 44, 49, 45, (142,198,0): 43, 47, 46, (142,199,0): 43, 47, 46, (142,200,0): 44, 48, 47, (142,201,0): 44, 48, 47, (142,202,0): 45, 49, 48, (142,203,0): 46, 50, 49, (142,204,0): 46, 50, 51, (142,205,0): 46, 50, 51, (142,206,0): 45, 49, 50, (142,207,0): 43, 49, 45, (142,208,0): 43, 57, 42, (142,209,0): 47, 64, 45, (142,210,0): 54, 72, 50, (142,211,0): 59, 77, 55, (142,212,0): 61, 79, 55, (142,213,0): 60, 78, 52, (142,214,0): 58, 76, 50, (142,215,0): 58, 76, 50, (142,216,0): 53, 71, 47, (142,217,0): 55, 73, 49, (142,218,0): 58, 76, 54, (142,219,0): 60, 77, 58, (142,220,0): 58, 75, 57, (142,221,0): 54, 71, 55, (142,222,0): 48, 64, 51, (142,223,0): 45, 59, 46, (142,224,0): 45, 55, 46, (142,225,0): 46, 53, 45, (142,226,0): 45, 52, 44, (143,0,0): 99, 100, 82, (143,1,0): 99, 100, 82, (143,2,0): 100, 101, 83, (143,3,0): 101, 102, 84, (143,4,0): 101, 102, 86, (143,5,0): 104, 102, 87, (143,6,0): 105, 103, 88, (143,7,0): 105, 103, 88, (143,8,0): 104, 102, 87, (143,9,0): 105, 102, 87, (143,10,0): 105, 102, 87, (143,11,0): 105, 102, 87, (143,12,0): 105, 102, 87, (143,13,0): 105, 102, 87, (143,14,0): 105, 102, 87, (143,15,0): 107, 101, 87, (143,16,0): 107, 101, 87, (143,17,0): 107, 101, 87, (143,18,0): 108, 100, 89, (143,19,0): 108, 101, 91, (143,20,0): 109, 100, 93, (143,21,0): 109, 102, 92, (143,22,0): 107, 103, 91, (143,23,0): 106, 105, 87, (143,24,0): 105, 107, 86, (143,25,0): 104, 109, 87, (143,26,0): 104, 114, 90, (143,27,0): 103, 116, 96, (143,28,0): 100, 113, 103, (143,29,0): 106, 123, 117, (143,30,0): 137, 155, 157, (143,31,0): 170, 187, 194, (143,32,0): 205, 216, 222, (143,33,0): 223, 232, 239, (143,34,0): 242, 249, 255, (143,35,0): 250, 255, 255, (143,36,0): 251, 255, 255, (143,37,0): 253, 255, 254, (143,38,0): 254, 255, 250, (143,39,0): 254, 254, 246, (143,40,0): 250, 250, 238, (143,41,0): 250, 251, 237, (143,42,0): 250, 251, 233, (143,43,0): 248, 250, 229, (143,44,0): 244, 246, 225, (143,45,0): 234, 238, 215, (143,46,0): 223, 227, 202, (143,47,0): 217, 219, 195, (143,48,0): 211, 209, 184, (143,49,0): 204, 199, 177, (143,50,0): 197, 190, 172, (143,51,0): 198, 190, 177, (143,52,0): 204, 195, 188, (143,53,0): 214, 206, 204, (143,54,0): 230, 221, 224, (143,55,0): 244, 234, 242, (143,56,0): 253, 246, 254, (143,57,0): 254, 249, 255, (143,58,0): 255, 253, 255, (143,59,0): 254, 254, 255, (143,60,0): 253, 253, 251, (143,61,0): 252, 254, 249, (143,62,0): 251, 255, 249, (143,63,0): 252, 255, 250, (143,64,0): 253, 255, 252, (143,65,0): 254, 254, 252, (143,66,0): 254, 254, 252, (143,67,0): 254, 254, 252, (143,68,0): 254, 254, 252, (143,69,0): 254, 254, 252, (143,70,0): 254, 254, 252, (143,71,0): 254, 254, 252, (143,72,0): 254, 254, 252, (143,73,0): 254, 254, 252, (143,74,0): 254, 254, 252, (143,75,0): 254, 254, 252, (143,76,0): 255, 254, 252, (143,77,0): 255, 254, 252, (143,78,0): 255, 254, 252, (143,79,0): 255, 253, 254, (143,80,0): 255, 250, 255, (143,81,0): 255, 251, 255, (143,82,0): 254, 252, 255, (143,83,0): 252, 254, 253, (143,84,0): 249, 255, 251, (143,85,0): 246, 255, 247, (143,86,0): 244, 255, 244, (143,87,0): 243, 255, 241, (143,88,0): 242, 254, 240, (143,89,0): 245, 255, 242, (143,90,0): 250, 255, 246, (143,91,0): 254, 255, 250, (143,92,0): 255, 252, 251, (143,93,0): 255, 249, 252, (143,94,0): 255, 247, 255, (143,95,0): 255, 246, 255, (143,96,0): 255, 248, 255, (143,97,0): 255, 247, 255, (143,98,0): 255, 249, 255, (143,99,0): 255, 252, 255, (143,100,0): 253, 252, 255, (143,101,0): 251, 253, 252, (143,102,0): 250, 255, 251, (143,103,0): 252, 255, 250, (143,104,0): 244, 250, 240, (143,105,0): 244, 250, 238, (143,106,0): 247, 249, 236, (143,107,0): 247, 248, 234, (143,108,0): 248, 246, 231, (143,109,0): 251, 248, 231, (143,110,0): 255, 250, 234, (143,111,0): 255, 253, 234, (143,112,0): 253, 241, 219, (143,113,0): 255, 251, 228, (143,114,0): 236, 220, 197, (143,115,0): 158, 142, 119, (143,116,0): 96, 80, 55, (143,117,0): 82, 66, 41, (143,118,0): 88, 72, 47, (143,119,0): 88, 72, 47, (143,120,0): 91, 77, 51, (143,121,0): 91, 77, 51, (143,122,0): 90, 78, 52, (143,123,0): 90, 78, 52, (143,124,0): 91, 79, 53, (143,125,0): 91, 79, 53, (143,126,0): 92, 80, 54, (143,127,0): 91, 81, 56, (143,128,0): 85, 79, 55, (143,129,0): 84, 79, 57, (143,130,0): 84, 79, 57, (143,131,0): 81, 79, 56, (143,132,0): 80, 78, 55, (143,133,0): 78, 78, 54, (143,134,0): 75, 77, 53, (143,135,0): 73, 77, 52, (143,136,0): 74, 78, 53, (143,137,0): 76, 82, 56, (143,138,0): 83, 92, 65, (143,139,0): 80, 89, 60, (143,140,0): 64, 73, 44, (143,141,0): 59, 70, 40, (143,142,0): 65, 76, 46, (143,143,0): 63, 74, 42, (143,144,0): 67, 78, 46, (143,145,0): 68, 79, 47, (143,146,0): 72, 81, 50, (143,147,0): 76, 83, 50, (143,148,0): 73, 78, 48, (143,149,0): 74, 77, 46, (143,150,0): 89, 90, 59, (143,151,0): 107, 106, 78, (143,152,0): 102, 101, 73, (143,153,0): 98, 94, 69, (143,154,0): 94, 89, 67, (143,155,0): 95, 90, 70, (143,156,0): 96, 91, 71, (143,157,0): 90, 85, 66, (143,158,0): 83, 78, 59, (143,159,0): 76, 73, 56, (143,160,0): 65, 66, 52, (143,161,0): 64, 66, 53, (143,162,0): 64, 66, 53, (143,163,0): 62, 65, 54, (143,164,0): 62, 65, 54, (143,165,0): 62, 65, 54, (143,166,0): 61, 64, 55, (143,167,0): 61, 64, 55, (143,168,0): 57, 63, 53, (143,169,0): 57, 63, 53, (143,170,0): 57, 63, 53, (143,171,0): 58, 64, 54, (143,172,0): 58, 64, 54, (143,173,0): 58, 66, 55, (143,174,0): 58, 66, 55, (143,175,0): 58, 66, 55, (143,176,0): 59, 64, 57, (143,177,0): 59, 64, 57, (143,178,0): 59, 64, 58, (143,179,0): 58, 63, 56, (143,180,0): 58, 63, 57, (143,181,0): 57, 62, 55, (143,182,0): 57, 62, 56, (143,183,0): 57, 62, 55, (143,184,0): 59, 64, 58, (143,185,0): 59, 64, 57, (143,186,0): 59, 64, 58, (143,187,0): 59, 64, 57, (143,188,0): 58, 63, 57, (143,189,0): 58, 63, 56, (143,190,0): 58, 63, 57, (143,191,0): 58, 63, 57, (143,192,0): 56, 63, 56, (143,193,0): 55, 61, 57, (143,194,0): 52, 59, 52, (143,195,0): 51, 56, 50, (143,196,0): 49, 54, 48, (143,197,0): 47, 52, 46, (143,198,0): 46, 51, 47, (143,199,0): 46, 51, 47, (143,200,0): 46, 50, 49, (143,201,0): 46, 50, 49, (143,202,0): 44, 50, 46, (143,203,0): 44, 50, 46, (143,204,0): 43, 50, 43, (143,205,0): 43, 50, 42, (143,206,0): 44, 52, 41, (143,207,0): 41, 54, 37, (143,208,0): 36, 54, 30, (143,209,0): 41, 61, 33, (143,210,0): 50, 70, 43, (143,211,0): 56, 76, 49, (143,212,0): 59, 79, 54, (143,213,0): 59, 77, 53, (143,214,0): 59, 77, 53, (143,215,0): 59, 77, 53, (143,216,0): 56, 74, 50, (143,217,0): 57, 75, 51, (143,218,0): 59, 77, 53, (143,219,0): 60, 78, 54, (143,220,0): 60, 78, 56, (143,221,0): 55, 72, 53, (143,222,0): 49, 66, 48, (143,223,0): 46, 60, 45, (143,224,0): 46, 56, 45, (143,225,0): 47, 54, 46, (143,226,0): 46, 53, 45, (144,0,0): 92, 102, 78, (144,1,0): 93, 103, 79, (144,2,0): 95, 103, 80, (144,3,0): 96, 104, 81, (144,4,0): 98, 106, 85, (144,5,0): 101, 106, 86, (144,6,0): 103, 106, 87, (144,7,0): 104, 107, 88, (144,8,0): 102, 103, 85, (144,9,0): 104, 103, 85, (144,10,0): 104, 101, 86, (144,11,0): 104, 101, 86, (144,12,0): 106, 100, 86, (144,13,0): 107, 101, 87, (144,14,0): 107, 101, 89, (144,15,0): 108, 102, 88, (144,16,0): 107, 101, 87, (144,17,0): 106, 103, 88, (144,18,0): 109, 103, 91, (144,19,0): 108, 104, 93, (144,20,0): 109, 102, 94, (144,21,0): 106, 102, 91, (144,22,0): 104, 100, 88, (144,23,0): 102, 100, 85, (144,24,0): 102, 103, 85, (144,25,0): 103, 108, 86, (144,26,0): 102, 111, 90, (144,27,0): 98, 111, 93, (144,28,0): 99, 112, 103, (144,29,0): 114, 130, 127, (144,30,0): 150, 168, 172, (144,31,0): 185, 199, 208, (144,32,0): 209, 219, 228, (144,33,0): 224, 233, 240, (144,34,0): 240, 247, 253, (144,35,0): 247, 252, 255, (144,36,0): 247, 253, 251, (144,37,0): 250, 255, 251, (144,38,0): 252, 255, 248, (144,39,0): 252, 254, 243, (144,40,0): 248, 249, 235, (144,41,0): 250, 251, 235, (144,42,0): 249, 248, 230, (144,43,0): 243, 240, 221, (144,44,0): 239, 236, 217, (144,45,0): 236, 233, 214, (144,46,0): 224, 222, 201, (144,47,0): 214, 209, 189, (144,48,0): 216, 208, 189, (144,49,0): 203, 191, 175, (144,50,0): 188, 179, 164, (144,51,0): 188, 178, 169, (144,52,0): 195, 184, 180, (144,53,0): 205, 195, 196, (144,54,0): 219, 210, 215, (144,55,0): 233, 223, 231, (144,56,0): 250, 243, 251, (144,57,0): 253, 248, 255, (144,58,0): 254, 251, 255, (144,59,0): 255, 254, 255, (144,60,0): 254, 254, 255, (144,61,0): 252, 254, 253, (144,62,0): 251, 253, 250, (144,63,0): 252, 254, 251, (144,64,0): 254, 254, 254, (144,65,0): 254, 254, 254, (144,66,0): 254, 254, 254, (144,67,0): 254, 254, 254, (144,68,0): 254, 254, 254, (144,69,0): 254, 254, 254, (144,70,0): 255, 254, 252, (144,71,0): 255, 254, 252, (144,72,0): 255, 255, 253, (144,73,0): 255, 255, 253, (144,74,0): 255, 255, 251, (144,75,0): 255, 254, 250, (144,76,0): 255, 253, 250, (144,77,0): 255, 252, 249, (144,78,0): 255, 252, 249, (144,79,0): 255, 252, 249, (144,80,0): 255, 254, 255, (144,81,0): 255, 253, 254, (144,82,0): 253, 253, 253, (144,83,0): 253, 253, 253, (144,84,0): 254, 255, 255, (144,85,0): 254, 255, 253, (144,86,0): 251, 255, 252, (144,87,0): 249, 254, 248, (144,88,0): 253, 255, 250, (144,89,0): 251, 252, 246, (144,90,0): 253, 252, 247, (144,91,0): 255, 255, 250, (144,92,0): 255, 254, 248, (144,93,0): 255, 249, 244, (144,94,0): 255, 247, 243, (144,95,0): 255, 250, 249, (144,96,0): 255, 251, 255, (144,97,0): 255, 252, 255, (144,98,0): 254, 253, 255, (144,99,0): 254, 255, 255, (144,100,0): 254, 255, 255, (144,101,0): 251, 255, 252, (144,102,0): 251, 255, 252, (144,103,0): 250, 254, 253, (144,104,0): 252, 255, 255, (144,105,0): 252, 255, 255, (144,106,0): 255, 255, 253, (144,107,0): 255, 254, 249, (144,108,0): 255, 254, 242, (144,109,0): 255, 254, 237, (144,110,0): 255, 254, 234, (144,111,0): 255, 254, 232, (144,112,0): 251, 245, 223, (144,113,0): 255, 252, 230, (144,114,0): 233, 225, 202, (144,115,0): 145, 137, 114, (144,116,0): 86, 79, 53, (144,117,0): 88, 78, 51, (144,118,0): 85, 76, 47, (144,119,0): 83, 74, 45, (144,120,0): 87, 78, 49, (144,121,0): 87, 78, 49, (144,122,0): 85, 78, 49, (144,123,0): 85, 78, 49, (144,124,0): 84, 79, 50, (144,125,0): 84, 79, 50, (144,126,0): 84, 78, 52, (144,127,0): 83, 79, 52, (144,128,0): 81, 77, 50, (144,129,0): 82, 78, 53, (144,130,0): 80, 78, 53, (144,131,0): 80, 80, 54, (144,132,0): 77, 79, 55, (144,133,0): 75, 79, 54, (144,134,0): 72, 77, 54, (144,135,0): 71, 76, 53, (144,136,0): 74, 80, 54, (144,137,0): 70, 79, 52, (144,138,0): 65, 74, 45, (144,139,0): 61, 70, 39, (144,140,0): 62, 72, 38, (144,141,0): 68, 75, 42, (144,142,0): 70, 77, 43, (144,143,0): 68, 78, 41, (144,144,0): 77, 88, 48, (144,145,0): 75, 87, 47, (144,146,0): 70, 81, 41, (144,147,0): 67, 77, 40, (144,148,0): 79, 86, 52, (144,149,0): 94, 99, 67, (144,150,0): 96, 99, 68, (144,151,0): 90, 90, 62, (144,152,0): 89, 89, 63, (144,153,0): 91, 89, 66, (144,154,0): 95, 90, 68, (144,155,0): 95, 90, 70, (144,156,0): 95, 88, 69, (144,157,0): 92, 85, 66, (144,158,0): 88, 81, 62, (144,159,0): 85, 78, 59, (144,160,0): 75, 70, 51, (144,161,0): 71, 68, 49, (144,162,0): 68, 65, 48, (144,163,0): 65, 63, 48, (144,164,0): 64, 62, 49, (144,165,0): 62, 62, 50, (144,166,0): 63, 63, 53, (144,167,0): 63, 65, 54, (144,168,0): 60, 63, 54, (144,169,0): 58, 64, 54, (144,170,0): 58, 64, 54, (144,171,0): 57, 65, 54, (144,172,0): 57, 65, 52, (144,173,0): 55, 66, 52, (144,174,0): 55, 66, 52, (144,175,0): 55, 66, 52, (144,176,0): 58, 66, 55, (144,177,0): 57, 65, 54, (144,178,0): 57, 64, 56, (144,179,0): 56, 64, 53, (144,180,0): 56, 63, 55, (144,181,0): 57, 65, 54, (144,182,0): 57, 64, 56, (144,183,0): 58, 66, 55, (144,184,0): 58, 65, 57, (144,185,0): 58, 66, 55, (144,186,0): 57, 64, 56, (144,187,0): 58, 66, 55, (144,188,0): 59, 66, 58, (144,189,0): 60, 68, 57, (144,190,0): 61, 68, 60, (144,191,0): 62, 69, 61, (144,192,0): 56, 66, 58, (144,193,0): 55, 65, 57, (144,194,0): 55, 65, 56, (144,195,0): 55, 63, 52, (144,196,0): 53, 61, 48, (144,197,0): 51, 59, 46, (144,198,0): 50, 56, 46, (144,199,0): 49, 54, 48, (144,200,0): 46, 52, 48, (144,201,0): 47, 53, 49, (144,202,0): 45, 55, 47, (144,203,0): 45, 57, 45, (144,204,0): 46, 59, 41, (144,205,0): 48, 64, 38, (144,206,0): 54, 71, 39, (144,207,0): 55, 77, 39, (144,208,0): 59, 86, 43, (144,209,0): 59, 88, 44, (144,210,0): 60, 86, 49, (144,211,0): 59, 84, 52, (144,212,0): 59, 82, 56, (144,213,0): 60, 79, 57, (144,214,0): 61, 78, 59, (144,215,0): 61, 79, 57, (144,216,0): 58, 76, 54, (144,217,0): 63, 81, 55, (144,218,0): 68, 86, 60, (144,219,0): 68, 87, 59, (144,220,0): 67, 87, 60, (144,221,0): 64, 84, 59, (144,222,0): 55, 74, 52, (144,223,0): 46, 63, 44, (144,224,0): 45, 55, 44, (144,225,0): 44, 51, 43, (144,226,0): 41, 48, 40, (145,0,0): 89, 103, 77, (145,1,0): 90, 104, 78, (145,2,0): 92, 104, 80, (145,3,0): 93, 105, 81, (145,4,0): 97, 107, 83, (145,5,0): 98, 108, 84, (145,6,0): 103, 108, 88, (145,7,0): 103, 108, 88, (145,8,0): 103, 104, 86, (145,9,0): 103, 104, 86, (145,10,0): 105, 102, 87, (145,11,0): 105, 102, 87, (145,12,0): 107, 101, 87, (145,13,0): 108, 102, 88, (145,14,0): 109, 101, 90, (145,15,0): 109, 103, 89, (145,16,0): 108, 102, 88, (145,17,0): 106, 103, 88, (145,18,0): 107, 103, 91, (145,19,0): 108, 104, 93, (145,20,0): 107, 103, 94, (145,21,0): 106, 102, 91, (145,22,0): 104, 102, 90, (145,23,0): 101, 102, 86, (145,24,0): 104, 105, 87, (145,25,0): 103, 108, 86, (145,26,0): 103, 112, 93, (145,27,0): 102, 115, 98, (145,28,0): 106, 119, 110, (145,29,0): 121, 137, 136, (145,30,0): 156, 171, 178, (145,31,0): 186, 200, 209, (145,32,0): 208, 218, 227, (145,33,0): 224, 233, 238, (145,34,0): 240, 247, 253, (145,35,0): 246, 254, 255, (145,36,0): 249, 255, 253, (145,37,0): 249, 255, 249, (145,38,0): 251, 254, 245, (145,39,0): 249, 253, 239, (145,40,0): 249, 250, 236, (145,41,0): 248, 249, 231, (145,42,0): 246, 243, 226, (145,43,0): 238, 235, 216, (145,44,0): 235, 230, 211, (145,45,0): 230, 225, 206, (145,46,0): 221, 214, 196, (145,47,0): 210, 201, 184, (145,48,0): 203, 191, 175, (145,49,0): 193, 179, 166, (145,50,0): 184, 172, 160, (145,51,0): 187, 174, 166, (145,52,0): 194, 183, 181, (145,53,0): 205, 195, 196, (145,54,0): 219, 208, 214, (145,55,0): 228, 221, 228, (145,56,0): 251, 243, 254, (145,57,0): 253, 247, 255, (145,58,0): 254, 251, 255, (145,59,0): 255, 254, 255, (145,60,0): 254, 253, 255, (145,61,0): 252, 253, 255, (145,62,0): 252, 254, 253, (145,63,0): 252, 254, 253, (145,64,0): 254, 254, 254, (145,65,0): 254, 254, 254, (145,66,0): 254, 254, 254, (145,67,0): 254, 254, 254, (145,68,0): 254, 254, 254, (145,69,0): 254, 254, 254, (145,70,0): 255, 254, 252, (145,71,0): 255, 254, 252, (145,72,0): 255, 255, 253, (145,73,0): 255, 255, 253, (145,74,0): 255, 253, 250, (145,75,0): 255, 253, 250, (145,76,0): 255, 253, 250, (145,77,0): 255, 252, 249, (145,78,0): 255, 252, 248, (145,79,0): 255, 253, 248, (145,80,0): 255, 254, 253, (145,81,0): 255, 254, 252, (145,82,0): 253, 253, 253, (145,83,0): 253, 253, 253, (145,84,0): 255, 255, 255, (145,85,0): 255, 255, 255, (145,86,0): 254, 254, 254, (145,87,0): 253, 253, 253, (145,88,0): 255, 255, 253, (145,89,0): 255, 255, 251, (145,90,0): 255, 252, 249, (145,91,0): 254, 247, 241, (145,92,0): 245, 236, 229, (145,93,0): 238, 228, 219, (145,94,0): 244, 231, 222, (145,95,0): 250, 241, 234, (145,96,0): 255, 252, 253, (145,97,0): 254, 254, 255, (145,98,0): 253, 255, 254, (145,99,0): 254, 255, 253, (145,100,0): 252, 255, 251, (145,101,0): 251, 255, 250, (145,102,0): 251, 255, 254, (145,103,0): 250, 254, 255, (145,104,0): 252, 255, 255, (145,105,0): 252, 255, 255, (145,106,0): 255, 254, 255, (145,107,0): 254, 254, 252, (145,108,0): 255, 253, 244, (145,109,0): 255, 254, 236, (145,110,0): 255, 253, 231, (145,111,0): 255, 254, 229, (145,112,0): 248, 246, 223, (145,113,0): 254, 252, 231, (145,114,0): 229, 224, 202, (145,115,0): 141, 137, 112, (145,116,0): 83, 77, 51, (145,117,0): 84, 79, 50, (145,118,0): 82, 75, 46, (145,119,0): 81, 74, 45, (145,120,0): 85, 79, 47, (145,121,0): 85, 79, 47, (145,122,0): 84, 79, 49, (145,123,0): 84, 79, 49, (145,124,0): 83, 79, 50, (145,125,0): 83, 79, 50, (145,126,0): 81, 80, 52, (145,127,0): 81, 80, 52, (145,128,0): 81, 77, 50, (145,129,0): 79, 78, 50, (145,130,0): 80, 78, 53, (145,131,0): 78, 81, 54, (145,132,0): 77, 79, 55, (145,133,0): 74, 80, 54, (145,134,0): 72, 77, 54, (145,135,0): 69, 77, 53, (145,136,0): 71, 80, 53, (145,137,0): 69, 78, 49, (145,138,0): 65, 74, 45, (145,139,0): 63, 73, 39, (145,140,0): 66, 73, 40, (145,141,0): 70, 77, 43, (145,142,0): 74, 80, 44, (145,143,0): 74, 82, 43, (145,144,0): 75, 86, 43, (145,145,0): 75, 88, 42, (145,146,0): 82, 93, 51, (145,147,0): 89, 100, 60, (145,148,0): 93, 101, 64, (145,149,0): 87, 94, 60, (145,150,0): 83, 88, 58, (145,151,0): 83, 86, 57, (145,152,0): 85, 85, 61, (145,153,0): 86, 86, 62, (145,154,0): 90, 85, 65, (145,155,0): 91, 86, 66, (145,156,0): 92, 85, 66, (145,157,0): 92, 84, 65, (145,158,0): 90, 82, 61, (145,159,0): 89, 81, 60, (145,160,0): 82, 76, 54, (145,161,0): 80, 74, 52, (145,162,0): 75, 70, 51, (145,163,0): 72, 67, 48, (145,164,0): 67, 64, 49, (145,165,0): 65, 63, 50, (145,166,0): 66, 64, 52, (145,167,0): 63, 65, 54, (145,168,0): 61, 62, 54, (145,169,0): 58, 64, 54, (145,170,0): 58, 64, 54, (145,171,0): 57, 65, 54, (145,172,0): 55, 66, 52, (145,173,0): 55, 66, 52, (145,174,0): 54, 67, 50, (145,175,0): 54, 67, 50, (145,176,0): 58, 66, 55, (145,177,0): 57, 65, 54, (145,178,0): 57, 65, 54, (145,179,0): 56, 64, 53, (145,180,0): 56, 64, 53, (145,181,0): 57, 65, 54, (145,182,0): 57, 65, 54, (145,183,0): 58, 66, 55, (145,184,0): 58, 66, 55, (145,185,0): 58, 66, 55, (145,186,0): 58, 66, 55, (145,187,0): 58, 66, 55, (145,188,0): 59, 67, 56, (145,189,0): 60, 68, 57, (145,190,0): 61, 69, 58, (145,191,0): 60, 70, 59, (145,192,0): 61, 71, 63, (145,193,0): 60, 72, 62, (145,194,0): 60, 70, 59, (145,195,0): 60, 71, 55, (145,196,0): 60, 68, 53, (145,197,0): 58, 66, 51, (145,198,0): 57, 63, 51, (145,199,0): 56, 61, 54, (145,200,0): 55, 62, 55, (145,201,0): 52, 62, 54, (145,202,0): 51, 61, 52, (145,203,0): 48, 62, 45, (145,204,0): 51, 67, 41, (145,205,0): 57, 77, 42, (145,206,0): 66, 89, 47, (145,207,0): 71, 97, 49, (145,208,0): 79, 112, 59, (145,209,0): 76, 110, 59, (145,210,0): 76, 105, 61, (145,211,0): 70, 97, 62, (145,212,0): 66, 89, 63, (145,213,0): 60, 82, 61, (145,214,0): 59, 76, 58, (145,215,0): 58, 75, 56, (145,216,0): 61, 79, 57, (145,217,0): 68, 86, 60, (145,218,0): 74, 93, 65, (145,219,0): 76, 95, 65, (145,220,0): 75, 95, 67, (145,221,0): 72, 92, 64, (145,222,0): 60, 83, 57, (145,223,0): 51, 70, 48, (145,224,0): 43, 53, 42, (145,225,0): 43, 50, 42, (145,226,0): 40, 47, 39, (146,0,0): 89, 103, 77, (146,1,0): 90, 104, 78, (146,2,0): 92, 104, 80, (146,3,0): 94, 106, 82, (146,4,0): 97, 107, 83, (146,5,0): 99, 109, 85, (146,6,0): 103, 108, 88, (146,7,0): 104, 109, 89, (146,8,0): 105, 106, 88, (146,9,0): 105, 106, 88, (146,10,0): 107, 104, 89, (146,11,0): 107, 104, 89, (146,12,0): 108, 102, 88, (146,13,0): 109, 103, 89, (146,14,0): 110, 102, 91, (146,15,0): 110, 104, 90, (146,16,0): 108, 102, 88, (146,17,0): 107, 104, 89, (146,18,0): 107, 103, 91, (146,19,0): 107, 103, 92, (146,20,0): 107, 103, 94, (146,21,0): 106, 102, 91, (146,22,0): 104, 102, 90, (146,23,0): 101, 102, 86, (146,24,0): 104, 105, 87, (146,25,0): 101, 106, 84, (146,26,0): 100, 109, 90, (146,27,0): 103, 116, 99, (146,28,0): 111, 124, 115, (146,29,0): 127, 143, 142, (146,30,0): 157, 172, 179, (146,31,0): 182, 196, 205, (146,32,0): 204, 214, 223, (146,33,0): 221, 230, 235, (146,34,0): 239, 246, 252, (146,35,0): 246, 254, 255, (146,36,0): 249, 255, 253, (146,37,0): 248, 255, 248, (146,38,0): 248, 251, 242, (146,39,0): 245, 249, 235, (146,40,0): 244, 245, 231, (146,41,0): 241, 242, 224, (146,42,0): 236, 233, 216, (146,43,0): 226, 223, 204, (146,44,0): 222, 217, 198, (146,45,0): 216, 211, 192, (146,46,0): 208, 201, 183, (146,47,0): 199, 190, 173, (146,48,0): 192, 180, 164, (146,49,0): 188, 174, 161, (146,50,0): 187, 175, 163, (146,51,0): 194, 181, 173, (146,52,0): 204, 193, 191, (146,53,0): 215, 205, 206, (146,54,0): 227, 216, 222, (146,55,0): 234, 227, 234, (146,56,0): 251, 243, 254, (146,57,0): 253, 247, 255, (146,58,0): 254, 251, 255, (146,59,0): 254, 253, 255, (146,60,0): 253, 252, 255, (146,61,0): 252, 253, 255, (146,62,0): 252, 254, 253, (146,63,0): 253, 255, 254, (146,64,0): 254, 254, 254, (146,65,0): 254, 254, 254, (146,66,0): 254, 254, 254, (146,67,0): 254, 254, 254, (146,68,0): 254, 254, 254, (146,69,0): 254, 254, 254, (146,70,0): 255, 254, 252, (146,71,0): 255, 254, 252, (146,72,0): 255, 255, 253, (146,73,0): 255, 254, 252, (146,74,0): 255, 253, 250, (146,75,0): 255, 253, 250, (146,76,0): 255, 252, 249, (146,77,0): 255, 252, 249, (146,78,0): 255, 252, 248, (146,79,0): 255, 253, 248, (146,80,0): 255, 254, 253, (146,81,0): 254, 253, 251, (146,82,0): 252, 252, 252, (146,83,0): 253, 253, 253, (146,84,0): 254, 254, 254, (146,85,0): 255, 255, 255, (146,86,0): 254, 254, 254, (146,87,0): 253, 253, 253, (146,88,0): 255, 255, 253, (146,89,0): 255, 255, 251, (146,90,0): 255, 253, 250, (146,91,0): 249, 242, 236, (146,92,0): 232, 223, 216, (146,93,0): 223, 213, 204, (146,94,0): 234, 221, 212, (146,95,0): 246, 237, 230, (146,96,0): 255, 252, 253, (146,97,0): 254, 254, 255, (146,98,0): 253, 255, 254, (146,99,0): 254, 255, 253, (146,100,0): 252, 255, 251, (146,101,0): 251, 255, 250, (146,102,0): 251, 255, 254, (146,103,0): 250, 254, 255, (146,104,0): 252, 255, 255, (146,105,0): 252, 255, 255, (146,106,0): 255, 254, 255, (146,107,0): 254, 254, 252, (146,108,0): 255, 253, 244, (146,109,0): 255, 254, 236, (146,110,0): 255, 253, 231, (146,111,0): 255, 254, 229, (146,112,0): 249, 247, 224, (146,113,0): 254, 252, 231, (146,114,0): 228, 223, 201, (146,115,0): 138, 134, 109, (146,116,0): 80, 74, 48, (146,117,0): 82, 77, 48, (146,118,0): 82, 75, 46, (146,119,0): 82, 75, 46, (146,120,0): 84, 78, 46, (146,121,0): 85, 79, 47, (146,122,0): 84, 79, 49, (146,123,0): 85, 80, 50, (146,124,0): 84, 80, 51, (146,125,0): 83, 79, 50, (146,126,0): 81, 80, 52, (146,127,0): 80, 79, 51, (146,128,0): 81, 77, 50, (146,129,0): 79, 78, 50, (146,130,0): 80, 78, 53, (146,131,0): 77, 80, 53, (146,132,0): 77, 79, 55, (146,133,0): 74, 80, 54, (146,134,0): 73, 78, 55, (146,135,0): 70, 78, 54, (146,136,0): 72, 81, 54, (146,137,0): 69, 78, 49, (146,138,0): 67, 76, 47, (146,139,0): 66, 76, 42, (146,140,0): 70, 77, 44, (146,141,0): 73, 80, 46, (146,142,0): 79, 85, 49, (146,143,0): 81, 89, 50, (146,144,0): 80, 91, 48, (146,145,0): 85, 98, 52, (146,146,0): 103, 116, 73, (146,147,0): 119, 130, 90, (146,148,0): 112, 120, 83, (146,149,0): 88, 95, 61, (146,150,0): 76, 81, 51, (146,151,0): 78, 81, 52, (146,152,0): 80, 80, 56, (146,153,0): 81, 81, 57, (146,154,0): 84, 79, 59, (146,155,0): 85, 80, 60, (146,156,0): 87, 80, 61, (146,157,0): 88, 81, 62, (146,158,0): 91, 83, 62, (146,159,0): 92, 84, 63, (146,160,0): 89, 83, 61, (146,161,0): 86, 80, 58, (146,162,0): 81, 76, 57, (146,163,0): 77, 72, 53, (146,164,0): 71, 68, 53, (146,165,0): 68, 66, 53, (146,166,0): 67, 65, 53, (146,167,0): 63, 65, 54, (146,168,0): 61, 62, 54, (146,169,0): 58, 64, 54, (146,170,0): 58, 64, 54, (146,171,0): 57, 65, 54, (146,172,0): 55, 66, 52, (146,173,0): 55, 66, 52, (146,174,0): 54, 67, 50, (146,175,0): 54, 67, 50, (146,176,0): 58, 66, 55, (146,177,0): 58, 66, 55, (146,178,0): 57, 65, 54, (146,179,0): 57, 65, 54, (146,180,0): 57, 65, 54, (146,181,0): 57, 65, 54, (146,182,0): 58, 66, 55, (146,183,0): 58, 66, 55, (146,184,0): 58, 66, 55, (146,185,0): 58, 66, 55, (146,186,0): 58, 66, 55, (146,187,0): 58, 66, 55, (146,188,0): 59, 67, 56, (146,189,0): 60, 68, 57, (146,190,0): 62, 70, 59, (146,191,0): 60, 70, 59, (146,192,0): 64, 74, 66, (146,193,0): 63, 75, 65, (146,194,0): 64, 74, 63, (146,195,0): 64, 75, 59, (146,196,0): 65, 73, 58, (146,197,0): 63, 71, 56, (146,198,0): 63, 69, 57, (146,199,0): 62, 67, 60, (146,200,0): 62, 69, 62, (146,201,0): 57, 67, 59, (146,202,0): 54, 64, 55, (146,203,0): 52, 66, 49, (146,204,0): 57, 73, 47, (146,205,0): 66, 86, 51, (146,206,0): 80, 103, 61, (146,207,0): 88, 114, 66, (146,208,0): 94, 127, 74, (146,209,0): 91, 125, 74, (146,210,0): 87, 116, 72, (146,211,0): 77, 104, 69, (146,212,0): 67, 90, 64, (146,213,0): 57, 79, 58, (146,214,0): 54, 71, 53, (146,215,0): 52, 69, 50, (146,216,0): 60, 78, 56, (146,217,0): 69, 87, 61, (146,218,0): 77, 96, 68, (146,219,0): 82, 101, 71, (146,220,0): 82, 102, 74, (146,221,0): 78, 98, 70, (146,222,0): 65, 88, 62, (146,223,0): 56, 75, 53, (146,224,0): 47, 57, 46, (146,225,0): 47, 54, 46, (146,226,0): 44, 51, 43, (147,0,0): 89, 103, 77, (147,1,0): 90, 104, 78, (147,2,0): 92, 104, 80, (147,3,0): 94, 106, 82, (147,4,0): 98, 108, 84, (147,5,0): 100, 110, 86, (147,6,0): 104, 109, 89, (147,7,0): 105, 110, 90, (147,8,0): 107, 108, 90, (147,9,0): 107, 108, 90, (147,10,0): 109, 106, 91, (147,11,0): 108, 105, 90, (147,12,0): 110, 104, 90, (147,13,0): 110, 104, 90, (147,14,0): 111, 103, 92, (147,15,0): 111, 105, 91, (147,16,0): 109, 103, 89, (147,17,0): 107, 104, 89, (147,18,0): 107, 103, 91, (147,19,0): 107, 103, 92, (147,20,0): 106, 102, 93, (147,21,0): 106, 102, 91, (147,22,0): 104, 102, 90, (147,23,0): 102, 103, 87, (147,24,0): 102, 103, 85, (147,25,0): 97, 102, 80, (147,26,0): 95, 104, 85, (147,27,0): 100, 113, 96, (147,28,0): 112, 125, 116, (147,29,0): 127, 143, 142, (147,30,0): 151, 166, 173, (147,31,0): 171, 185, 194, (147,32,0): 199, 209, 218, (147,33,0): 217, 226, 231, (147,34,0): 237, 244, 250, (147,35,0): 245, 253, 255, (147,36,0): 248, 254, 252, (147,37,0): 245, 252, 245, (147,38,0): 243, 246, 237, (147,39,0): 238, 242, 228, (147,40,0): 234, 235, 221, (147,41,0): 228, 229, 211, (147,42,0): 221, 218, 201, (147,43,0): 212, 209, 190, (147,44,0): 208, 203, 184, (147,45,0): 202, 197, 178, (147,46,0): 195, 188, 170, (147,47,0): 189, 180, 163, (147,48,0): 196, 184, 168, (147,49,0): 198, 184, 171, (147,50,0): 203, 191, 179, (147,51,0): 213, 200, 192, (147,52,0): 224, 213, 211, (147,53,0): 234, 224, 225, (147,54,0): 244, 233, 239, (147,55,0): 248, 241, 248, (147,56,0): 252, 244, 255, (147,57,0): 253, 247, 255, (147,58,0): 254, 251, 255, (147,59,0): 254, 253, 255, (147,60,0): 253, 252, 255, (147,61,0): 251, 252, 254, (147,62,0): 252, 254, 253, (147,63,0): 253, 255, 254, (147,64,0): 254, 254, 254, (147,65,0): 254, 254, 254, (147,66,0): 254, 254, 254, (147,67,0): 254, 254, 254, (147,68,0): 254, 254, 254, (147,69,0): 254, 254, 254, (147,70,0): 255, 254, 252, (147,71,0): 255, 254, 252, (147,72,0): 255, 254, 252, (147,73,0): 255, 254, 252, (147,74,0): 255, 253, 250, (147,75,0): 255, 252, 249, (147,76,0): 255, 252, 249, (147,77,0): 255, 252, 249, (147,78,0): 255, 251, 247, (147,79,0): 255, 252, 247, (147,80,0): 255, 253, 252, (147,81,0): 253, 252, 250, (147,82,0): 251, 251, 251, (147,83,0): 252, 252, 252, (147,84,0): 254, 254, 254, (147,85,0): 255, 255, 255, (147,86,0): 254, 254, 254, (147,87,0): 253, 253, 253, (147,88,0): 254, 253, 251, (147,89,0): 255, 255, 251, (147,90,0): 255, 253, 250, (147,91,0): 250, 243, 237, (147,92,0): 234, 225, 218, (147,93,0): 227, 217, 208, (147,94,0): 239, 226, 217, (147,95,0): 251, 242, 235, (147,96,0): 255, 252, 253, (147,97,0): 254, 254, 255, (147,98,0): 253, 255, 254, (147,99,0): 254, 255, 253, (147,100,0): 252, 255, 251, (147,101,0): 251, 255, 250, (147,102,0): 251, 255, 254, (147,103,0): 250, 254, 255, (147,104,0): 252, 255, 255, (147,105,0): 252, 255, 255, (147,106,0): 255, 254, 255, (147,107,0): 254, 254, 252, (147,108,0): 255, 253, 244, (147,109,0): 255, 254, 236, (147,110,0): 255, 252, 230, (147,111,0): 255, 253, 228, (147,112,0): 252, 250, 227, (147,113,0): 255, 254, 233, (147,114,0): 228, 223, 201, (147,115,0): 137, 133, 108, (147,116,0): 80, 74, 48, (147,117,0): 82, 77, 48, (147,118,0): 84, 77, 48, (147,119,0): 84, 77, 48, (147,120,0): 84, 78, 46, (147,121,0): 85, 79, 47, (147,122,0): 85, 80, 50, (147,123,0): 85, 80, 50, (147,124,0): 84, 80, 51, (147,125,0): 83, 79, 50, (147,126,0): 80, 79, 51, (147,127,0): 79, 78, 50, (147,128,0): 81, 77, 50, (147,129,0): 79, 78, 50, (147,130,0): 79, 77, 52, (147,131,0): 76, 79, 52, (147,132,0): 76, 78, 54, (147,133,0): 74, 80, 54, (147,134,0): 74, 79, 56, (147,135,0): 71, 79, 55, (147,136,0): 74, 83, 56, (147,137,0): 71, 80, 51, (147,138,0): 70, 79, 50, (147,139,0): 72, 82, 48, (147,140,0): 76, 83, 50, (147,141,0): 78, 85, 51, (147,142,0): 85, 91, 55, (147,143,0): 91, 99, 60, (147,144,0): 103, 114, 71, (147,145,0): 115, 128, 82, (147,146,0): 135, 148, 105, (147,147,0): 144, 156, 116, (147,148,0): 133, 143, 106, (147,149,0): 110, 117, 83, (147,150,0): 90, 95, 65, (147,151,0): 82, 87, 57, (147,152,0): 79, 79, 55, (147,153,0): 78, 78, 54, (147,154,0): 80, 75, 55, (147,155,0): 79, 74, 54, (147,156,0): 82, 75, 56, (147,157,0): 85, 78, 59, (147,158,0): 89, 81, 60, (147,159,0): 91, 83, 62, (147,160,0): 90, 84, 62, (147,161,0): 88, 82, 60, (147,162,0): 84, 79, 60, (147,163,0): 80, 75, 56, (147,164,0): 74, 71, 56, (147,165,0): 71, 69, 56, (147,166,0): 69, 67, 55, (147,167,0): 65, 67, 56, (147,168,0): 61, 62, 54, (147,169,0): 58, 64, 54, (147,170,0): 58, 64, 54, (147,171,0): 57, 65, 54, (147,172,0): 55, 66, 52, (147,173,0): 55, 66, 52, (147,174,0): 54, 67, 50, (147,175,0): 54, 67, 50, (147,176,0): 59, 67, 56, (147,177,0): 58, 66, 55, (147,178,0): 57, 65, 54, (147,179,0): 57, 65, 54, (147,180,0): 57, 65, 54, (147,181,0): 57, 65, 54, (147,182,0): 58, 66, 55, (147,183,0): 59, 67, 56, (147,184,0): 59, 67, 56, (147,185,0): 58, 66, 55, (147,186,0): 58, 66, 55, (147,187,0): 59, 67, 56, (147,188,0): 59, 67, 56, (147,189,0): 61, 69, 58, (147,190,0): 62, 70, 59, (147,191,0): 61, 71, 60, (147,192,0): 61, 71, 63, (147,193,0): 60, 72, 62, (147,194,0): 62, 72, 61, (147,195,0): 62, 73, 57, (147,196,0): 64, 72, 57, (147,197,0): 63, 71, 56, (147,198,0): 63, 69, 57, (147,199,0): 63, 68, 61, (147,200,0): 61, 68, 61, (147,201,0): 57, 67, 59, (147,202,0): 54, 64, 55, (147,203,0): 52, 66, 49, (147,204,0): 57, 73, 47, (147,205,0): 68, 88, 53, (147,206,0): 82, 105, 63, (147,207,0): 91, 117, 69, (147,208,0): 89, 122, 69, (147,209,0): 87, 121, 70, (147,210,0): 84, 113, 69, (147,211,0): 73, 100, 65, (147,212,0): 62, 85, 59, (147,213,0): 51, 73, 52, (147,214,0): 48, 65, 47, (147,215,0): 46, 63, 44, (147,216,0): 54, 72, 50, (147,217,0): 64, 82, 56, (147,218,0): 75, 94, 66, (147,219,0): 82, 101, 71, (147,220,0): 83, 103, 75, (147,221,0): 79, 99, 71, (147,222,0): 65, 88, 62, (147,223,0): 54, 73, 51, (147,224,0): 49, 59, 48, (147,225,0): 48, 55, 47, (147,226,0): 45, 52, 44, (148,0,0): 89, 103, 77, (148,1,0): 90, 104, 78, (148,2,0): 92, 104, 80, (148,3,0): 94, 106, 82, (148,4,0): 98, 108, 84, (148,5,0): 100, 110, 86, (148,6,0): 105, 110, 90, (148,7,0): 106, 111, 91, (148,8,0): 109, 110, 92, (148,9,0): 108, 109, 91, (148,10,0): 110, 107, 92, (148,11,0): 109, 106, 91, (148,12,0): 110, 104, 90, (148,13,0): 110, 104, 90, (148,14,0): 112, 104, 93, (148,15,0): 111, 105, 91, (148,16,0): 109, 103, 89, (148,17,0): 107, 104, 89, (148,18,0): 106, 102, 90, (148,19,0): 106, 102, 91, (148,20,0): 105, 101, 92, (148,21,0): 105, 101, 90, (148,22,0): 104, 102, 90, (148,23,0): 102, 103, 87, (148,24,0): 103, 104, 86, (148,25,0): 97, 102, 80, (148,26,0): 94, 103, 84, (148,27,0): 100, 113, 96, (148,28,0): 112, 125, 116, (148,29,0): 125, 141, 140, (148,30,0): 145, 160, 167, (148,31,0): 161, 175, 184, (148,32,0): 194, 204, 213, (148,33,0): 214, 223, 228, (148,34,0): 234, 241, 247, (148,35,0): 243, 251, 253, (148,36,0): 245, 251, 249, (148,37,0): 242, 249, 242, (148,38,0): 239, 242, 233, (148,39,0): 233, 237, 223, (148,40,0): 227, 228, 214, (148,41,0): 218, 219, 201, (148,42,0): 211, 208, 191, (148,43,0): 204, 201, 182, (148,44,0): 201, 196, 177, (148,45,0): 195, 190, 171, (148,46,0): 190, 183, 165, (148,47,0): 187, 178, 161, (148,48,0): 202, 190, 174, (148,49,0): 209, 195, 182, (148,50,0): 218, 206, 194, (148,51,0): 229, 216, 208, (148,52,0): 238, 227, 225, (148,53,0): 248, 238, 239, (148,54,0): 255, 245, 251, (148,55,0): 255, 249, 255, (148,56,0): 252, 244, 255, (148,57,0): 253, 247, 255, (148,58,0): 253, 250, 255, (148,59,0): 253, 252, 255, (148,60,0): 252, 251, 255, (148,61,0): 251, 252, 254, (148,62,0): 252, 254, 253, (148,63,0): 254, 255, 255, (148,64,0): 254, 254, 254, (148,65,0): 254, 254, 254, (148,66,0): 254, 254, 254, (148,67,0): 254, 254, 254, (148,68,0): 254, 254, 254, (148,69,0): 254, 254, 254, (148,70,0): 255, 254, 252, (148,71,0): 255, 254, 252, (148,72,0): 255, 254, 252, (148,73,0): 255, 254, 252, (148,74,0): 255, 252, 249, (148,75,0): 255, 252, 249, (148,76,0): 255, 252, 249, (148,77,0): 255, 251, 248, (148,78,0): 255, 251, 247, (148,79,0): 255, 252, 247, (148,80,0): 255, 252, 251, (148,81,0): 252, 251, 249, (148,82,0): 251, 251, 251, (148,83,0): 252, 252, 252, (148,84,0): 254, 254, 254, (148,85,0): 255, 255, 255, (148,86,0): 254, 254, 254, (148,87,0): 253, 253, 253, (148,88,0): 254, 253, 251, (148,89,0): 254, 253, 249, (148,90,0): 255, 252, 249, (148,91,0): 254, 247, 241, (148,92,0): 245, 236, 229, (148,93,0): 239, 229, 220, (148,94,0): 247, 234, 225, (148,95,0): 254, 245, 238, (148,96,0): 255, 252, 253, (148,97,0): 254, 254, 255, (148,98,0): 253, 255, 254, (148,99,0): 254, 255, 253, (148,100,0): 252, 255, 251, (148,101,0): 251, 255, 250, (148,102,0): 251, 255, 254, (148,103,0): 250, 254, 255, (148,104,0): 251, 255, 255, (148,105,0): 251, 255, 255, (148,106,0): 254, 253, 255, (148,107,0): 254, 254, 252, (148,108,0): 255, 254, 245, (148,109,0): 255, 254, 236, (148,110,0): 255, 252, 230, (148,111,0): 255, 252, 227, (148,112,0): 254, 252, 229, (148,113,0): 255, 255, 235, (148,114,0): 229, 224, 202, (148,115,0): 138, 134, 109, (148,116,0): 81, 75, 49, (148,117,0): 84, 79, 50, (148,118,0): 86, 79, 50, (148,119,0): 87, 80, 51, (148,120,0): 84, 78, 46, (148,121,0): 85, 79, 47, (148,122,0): 86, 81, 51, (148,123,0): 86, 81, 51, (148,124,0): 85, 81, 52, (148,125,0): 83, 79, 50, (148,126,0): 79, 78, 50, (148,127,0): 78, 77, 49, (148,128,0): 81, 77, 50, (148,129,0): 79, 78, 50, (148,130,0): 79, 77, 52, (148,131,0): 76, 79, 52, (148,132,0): 76, 78, 54, (148,133,0): 74, 80, 54, (148,134,0): 74, 79, 56, (148,135,0): 73, 81, 57, (148,136,0): 76, 85, 58, (148,137,0): 73, 82, 53, (148,138,0): 74, 83, 54, (148,139,0): 78, 88, 54, (148,140,0): 81, 88, 55, (148,141,0): 82, 89, 55, (148,142,0): 91, 97, 61, (148,143,0): 99, 107, 68, (148,144,0): 129, 142, 98, (148,145,0): 146, 162, 115, (148,146,0): 161, 174, 131, (148,147,0): 157, 169, 129, (148,148,0): 148, 158, 121, (148,149,0): 138, 145, 111, (148,150,0): 115, 120, 90, (148,151,0): 90, 95, 65, (148,152,0): 80, 80, 56, (148,153,0): 78, 78, 54, (148,154,0): 78, 73, 53, (148,155,0): 76, 71, 51, (148,156,0): 78, 71, 52, (148,157,0): 81, 74, 55, (148,158,0): 86, 78, 57, (148,159,0): 88, 80, 59, (148,160,0): 88, 82, 60, (148,161,0): 86, 80, 58, (148,162,0): 83, 78, 59, (148,163,0): 80, 75, 56, (148,164,0): 76, 73, 58, (148,165,0): 73, 71, 58, (148,166,0): 71, 69, 57, (148,167,0): 67, 69, 58, (148,168,0): 61, 62, 54, (148,169,0): 58, 64, 54, (148,170,0): 58, 64, 54, (148,171,0): 57, 65, 54, (148,172,0): 55, 66, 52, (148,173,0): 55, 66, 52, (148,174,0): 54, 67, 50, (148,175,0): 54, 67, 50, (148,176,0): 59, 67, 56, (148,177,0): 59, 67, 56, (148,178,0): 58, 66, 55, (148,179,0): 57, 65, 54, (148,180,0): 57, 65, 54, (148,181,0): 58, 66, 55, (148,182,0): 59, 67, 56, (148,183,0): 59, 67, 56, (148,184,0): 59, 67, 56, (148,185,0): 59, 67, 56, (148,186,0): 59, 67, 56, (148,187,0): 59, 67, 56, (148,188,0): 60, 68, 57, (148,189,0): 61, 69, 58, (148,190,0): 62, 70, 59, (148,191,0): 61, 71, 60, (148,192,0): 59, 69, 61, (148,193,0): 58, 70, 60, (148,194,0): 60, 70, 59, (148,195,0): 60, 71, 55, (148,196,0): 62, 70, 55, (148,197,0): 61, 69, 54, (148,198,0): 62, 68, 56, (148,199,0): 61, 66, 59, (148,200,0): 58, 65, 58, (148,201,0): 55, 65, 57, (148,202,0): 53, 63, 54, (148,203,0): 52, 66, 49, (148,204,0): 57, 73, 47, (148,205,0): 66, 86, 51, (148,206,0): 78, 101, 59, (148,207,0): 85, 111, 63, (148,208,0): 83, 116, 63, (148,209,0): 81, 115, 64, (148,210,0): 79, 108, 64, (148,211,0): 69, 96, 61, (148,212,0): 57, 80, 54, (148,213,0): 46, 68, 47, (148,214,0): 44, 61, 43, (148,215,0): 44, 61, 42, (148,216,0): 49, 67, 45, (148,217,0): 60, 78, 52, (148,218,0): 73, 92, 64, (148,219,0): 80, 99, 69, (148,220,0): 82, 102, 74, (148,221,0): 78, 98, 70, (148,222,0): 63, 86, 60, (148,223,0): 52, 71, 49, (148,224,0): 43, 53, 42, (148,225,0): 43, 50, 42, (148,226,0): 40, 47, 39 } ATTRIBUTE "CLASS" { DATATYPE H5T_STRING { STRSIZE 5; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "IMAGE" } } ATTRIBUTE "IMAGE_MINMAXRANGE" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 2 ) / ( 2 ) } DATA { (0): 0, 255 } } ATTRIBUTE "IMAGE_SUBCLASS" { DATATYPE H5T_STRING { STRSIZE 16; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SCALAR DATA { (0): "IMAGE_TRUECOLOR" } } ATTRIBUTE "IMAGE_VERSION" { DATATYPE H5T_STRING { STRSIZE 4; STRPAD H5T_STR_NULLTERM; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SCALAR DATA { (0): "1.2" } } ATTRIBUTE "INTERLACE_MODE" { DATATYPE H5T_STRING { STRSIZE 15; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "INTERLACE_PIXEL" } } } DATASET "plane interlace" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 3, 149, 227 ) / ( 3, 149, 227 ) } DATA { (0,0,0): 48, 48, 49, 50, 53, 53, 54, 54, 56, 56, 58, 58, 58, 58, 58, (0,0,15): 58, 58, 57, 57, 56, 56, 57, 57, 58, 56, 56, 56, 56, 56, (0,0,29): 56, 56, 56, 54, 54, 54, 53, 53, 52, 52, 52, 52, 52, 52, (0,0,43): 52, 52, 52, 52, 50, 47, 47, 47, 48, 49, 50, 51, 51, 54, (0,0,57): 54, 55, 56, 56, 57, 58, 58, 65, 66, 68, 70, 73, 74, 75, (0,0,71): 75, 77, 77, 79, 78, 79, 79, 80, 82, 82, 89, 98, 110, 125, (0,0,85): 139, 153, 163, 175, 184, 190, 197, 199, 202, 203, 208, (0,0,96): 231, 237, 235, 235, 238, 239, 241, 244, 248, 247, 244, (0,0,107): 240, 233, 226, 215, 203, 187, 181, 181, 180, 180, 179, (0,0,118): 178, 175, 173, 170, 166, 162, 159, 155, 152, 150, 148, (0,0,129): 146, 146, 145, 145, 144, 146, 146, 148, 148, 148, 148, (0,0,140): 148, 149, 150, 150, 150, 149, 151, 159, 169, 179, 188, (0,0,151): 191, 185, 181, 172, 158, 135, 111, 84, 67, 61, 57, 57, (0,0,163): 55, 55, 54, 53, 53, 55, 55, 55, 54, 54, 53, 53, 52, 47, (0,0,177): 46, 47, 47, 48, 48, 50, 50, 53, 52, 52, 51, 55, 61, 69, (0,0,191): 80, 106, 124, 141, 149, 159, 170, 170, 159, 148, 135, (0,0,202): 128, 126, 115, 96, 84, 80, 83, 79, 77, 84, 102, 124, 141, (0,0,215): 153, 163, 162, 158, 143, 123, 102, 88, 81, 85, 85, 85, (0,1,0): 48, 48, 49, 49, 52, 53, 54, 54, 56, 56, 58, 58, 58, 58, 58, (0,1,15): 58, 57, 57, 56, 56, 56, 56, 57, 57, 56, 56, 56, 56, 56, (0,1,29): 56, 56, 56, 54, 54, 53, 53, 53, 52, 52, 52, 53, 53, 53, (0,1,43): 53, 53, 53, 53, 51, 48, 48, 48, 49, 50, 51, 52, 52, 54, (0,1,57): 54, 55, 55, 56, 57, 58, 58, 64, 65, 67, 69, 72, 73, 74, (0,1,71): 74, 76, 76, 77, 77, 77, 78, 79, 81, 80, 85, 94, 106, 120, (0,1,85): 132, 146, 156, 167, 175, 181, 188, 192, 196, 197, 205, (0,1,96): 225, 231, 232, 234, 237, 239, 243, 246, 248, 247, 244, (0,1,107): 240, 233, 224, 213, 202, 185, 181, 180, 180, 180, 178, (0,1,118): 176, 175, 173, 169, 166, 161, 159, 155, 152, 150, 148, (0,1,129): 146, 145, 145, 145, 144, 146, 146, 148, 147, 148, 148, (0,1,140): 148, 149, 150, 150, 148, 149, 152, 160, 171, 181, 189, (0,1,151): 191, 187, 183, 172, 156, 133, 108, 83, 66, 62, 58, 57, (0,1,163): 56, 56, 55, 54, 54, 55, 55, 55, 54, 54, 53, 53, 52, 47, (0,1,177): 46, 47, 47, 48, 48, 50, 50, 51, 53, 52, 51, 53, 60, 67, (0,1,191): 78, 100, 118, 134, 143, 154, 164, 165, 157, 145, 134, (0,1,202): 127, 123, 111, 91, 81, 79, 79, 79, 80, 82, 91, 110, 131, (0,1,215): 148, 153, 154, 153, 143, 126, 106, 93, 86, 88, 86, 88, (0,2,0): 47, 47, 48, 49, 52, 52, 53, 53, 55, 55, 55, 55, 57, 57, 57, (0,2,15): 57, 57, 56, 55, 55, 55, 55, 56, 57, 56, 56, 56, 56, 56, (0,2,29): 56, 56, 56, 54, 53, 53, 53, 52, 52, 52, 52, 53, 53, 53, (0,2,43): 53, 53, 53, 53, 51, 50, 49, 50, 51, 51, 52, 52, 53, 54, (0,2,57): 54, 54, 55, 56, 57, 57, 58, 63, 64, 66, 68, 71, 72, 72, (0,2,71): 72, 73, 73, 75, 75, 75, 76, 77, 78, 77, 81, 89, 100, 113, (0,2,85): 124, 135, 146, 152, 160, 167, 175, 181, 186, 191, 197, (0,2,96): 217, 225, 227, 231, 234, 240, 244, 248, 250, 249, 245, (0,2,107): 240, 232, 220, 209, 198, 183, 179, 179, 178, 178, 176, (0,2,118): 175, 173, 170, 167, 165, 161, 157, 154, 152, 149, 148, (0,2,129): 145, 145, 145, 144, 144, 144, 144, 145, 145, 146, 146, (0,2,140): 147, 147, 148, 149, 149, 150, 154, 163, 175, 185, 191, (0,2,151): 193, 192, 184, 174, 153, 129, 104, 81, 66, 63, 61, 60, (0,2,163): 58, 57, 56, 55, 55, 54, 54, 54, 53, 53, 52, 52, 50, 46, (0,2,177): 44, 46, 46, 47, 47, 48, 50, 53, 52, 53, 52, 52, 57, 62, (0,2,191): 73, 91, 108, 124, 134, 144, 152, 155, 148, 140, 131, 125, (0,2,203): 117, 102, 84, 77, 76, 77, 79, 81, 77, 78, 91, 113, 133, (0,2,216): 135, 138, 141, 134, 120, 102, 90, 86, 90, 90, 91, (0,3,0): 46, 47, 47, 48, 51, 52, 52, 52, 54, 54, 54, 54, 56, 56, 56, (0,3,15): 56, 55, 55, 54, 54, 54, 54, 55, 55, 56, 56, 56, 56, 56, (0,3,29): 56, 56, 56, 53, 53, 53, 52, 52, 52, 51, 51, 54, 54, 54, (0,3,43): 54, 54, 54, 54, 52, 51, 51, 51, 52, 52, 53, 53, 53, 53, (0,3,57): 53, 54, 55, 56, 56, 57, 57, 62, 63, 64, 66, 69, 69, 70, (0,3,71): 70, 71, 71, 72, 73, 73, 74, 76, 74, 75, 78, 85, 94, 105, (0,3,85): 115, 126, 134, 140, 148, 157, 163, 172, 179, 184, 193, (0,3,96): 210, 218, 222, 226, 231, 236, 243, 247, 250, 249, 245, (0,3,107): 238, 229, 218, 205, 194, 181, 176, 176, 176, 175, 174, (0,3,118): 174, 172, 169, 166, 163, 160, 156, 152, 150, 148, 145, (0,3,129): 145, 145, 144, 144, 144, 143, 143, 144, 144, 143, 143, (0,3,140): 146, 145, 148, 146, 149, 150, 156, 166, 178, 188, 193, (0,3,151): 194, 194, 186, 172, 151, 124, 98, 76, 65, 64, 62, 61, 60, (0,3,164): 58, 57, 56, 56, 54, 54, 54, 51, 53, 50, 50, 49, 45, 45, (0,3,178): 47, 47, 48, 48, 49, 49, 53, 54, 53, 53, 52, 54, 58, 68, (0,3,192): 84, 99, 113, 123, 130, 137, 141, 139, 131, 125, 120, 111, (0,3,204): 96, 81, 76, 76, 76, 80, 81, 76, 71, 77, 94, 106, 117, (0,3,217): 120, 122, 119, 107, 96, 87, 84, 93, 93, 93, (0,4,0): 45, 45, 46, 47, 48, 49, 51, 52, 51, 51, 52, 52, 52, 52, 54, (0,4,15): 54, 52, 52, 51, 51, 51, 51, 52, 52, 53, 53, 53, 53, 53, (0,4,29): 53, 53, 53, 51, 51, 50, 50, 50, 49, 49, 49, 52, 52, 52, (0,4,43): 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 53, 53, 53, 53, (0,4,57): 53, 54, 54, 55, 56, 57, 57, 60, 61, 63, 64, 66, 67, 67, (0,4,71): 67, 68, 68, 70, 71, 72, 73, 74, 73, 74, 77, 82, 89, 98, (0,4,85): 106, 117, 125, 130, 139, 147, 154, 163, 172, 178, 187, (0,4,96): 204, 212, 216, 221, 226, 233, 240, 244, 249, 248, 244, (0,4,107): 237, 225, 211, 197, 185, 178, 174, 174, 174, 173, 172, (0,4,118): 172, 170, 168, 164, 160, 158, 154, 151, 149, 147, 145, (0,4,129): 144, 143, 143, 143, 142, 142, 142, 142, 142, 142, 142, (0,4,140): 143, 143, 145, 144, 148, 151, 157, 168, 182, 191, 197, (0,4,151): 196, 190, 183, 166, 144, 116, 90, 69, 60, 64, 64, 63, 62, (0,4,164): 61, 60, 57, 56, 54, 52, 52, 50, 51, 49, 49, 48, 45, 44, (0,4,178): 45, 45, 47, 47, 48, 49, 51, 53, 53, 52, 50, 52, 55, 61, (0,4,192): 78, 89, 101, 110, 115, 121, 128, 131, 127, 122, 117, 107, (0,4,204): 95, 84, 79, 76, 78, 78, 77, 74, 71, 71, 75, 77, 93, 96, (0,4,218): 98, 96, 90, 87, 85, 88, 94, 96, 96, (0,5,0): 44, 44, 46, 46, 47, 48, 51, 51, 50, 50, 51, 51, 51, 51, 53, (0,5,15): 53, 51, 51, 50, 49, 49, 50, 51, 51, 51, 51, 51, 51, 51, (0,5,29): 51, 51, 51, 50, 50, 50, 50, 49, 49, 49, 48, 51, 51, 51, (0,5,43): 51, 51, 51, 51, 51, 52, 52, 52, 52, 52, 52, 52, 52, 52, (0,5,57): 53, 53, 54, 55, 56, 56, 56, 59, 60, 61, 62, 64, 65, 65, (0,5,71): 65, 67, 67, 69, 70, 71, 72, 74, 72, 74, 73, 78, 86, 92, (0,5,85): 100, 110, 118, 123, 130, 140, 148, 156, 163, 170, 180, (0,5,96): 196, 204, 209, 214, 222, 228, 236, 241, 247, 244, 240, (0,5,107): 233, 220, 205, 190, 177, 174, 171, 170, 170, 170, 169, (0,5,118): 169, 168, 165, 162, 160, 155, 151, 149, 147, 145, 143, (0,5,129): 143, 143, 143, 142, 142, 142, 141, 142, 139, 141, 139, (0,5,140): 139, 140, 141, 142, 148, 151, 160, 172, 185, 194, 197, (0,5,151): 194, 186, 177, 163, 141, 111, 83, 65, 57, 64, 65, 63, 62, (0,5,164): 60, 57, 56, 55, 52, 52, 51, 50, 50, 48, 48, 46, 45, 45, (0,5,178): 46, 46, 48, 48, 49, 49, 50, 51, 51, 52, 50, 49, 52, 56, (0,5,192): 71, 79, 88, 96, 101, 109, 121, 130, 128, 124, 119, 110, (0,5,204): 100, 91, 82, 76, 79, 76, 73, 72, 72, 69, 64, 59, 66, 68, (0,5,218): 74, 74, 73, 75, 79, 86, 94, 96, 96, (0,6,0): 43, 43, 44, 45, 47, 47, 48, 48, 49, 49, 49, 49, 50, 50, 50, (0,6,15): 50, 50, 50, 49, 49, 49, 49, 50, 50, 49, 49, 49, 49, 49, (0,6,29): 49, 49, 49, 50, 50, 50, 49, 49, 49, 48, 48, 51, 51, 51, (0,6,43): 51, 51, 51, 51, 51, 52, 52, 52, 51, 51, 51, 51, 51, 52, (0,6,57): 52, 53, 54, 55, 55, 56, 56, 58, 59, 60, 61, 63, 63, 63, (0,6,71): 63, 66, 66, 69, 69, 71, 72, 74, 72, 72, 71, 75, 81, 88, (0,6,85): 95, 102, 110, 118, 124, 133, 140, 147, 155, 162, 172, 187, (0,6,97): 194, 201, 208, 217, 226, 234, 240, 242, 241, 236, 228, (0,6,108): 214, 198, 181, 170, 170, 169, 169, 168, 168, 168, 167, (0,6,119): 165, 163, 160, 158, 154, 150, 147, 145, 143, 143, 141, (0,6,130): 141, 140, 140, 140, 139, 139, 139, 138, 138, 137, 138, (0,6,141): 139, 139, 140, 146, 152, 161, 174, 188, 194, 196, 192, (0,6,152): 185, 178, 165, 143, 115, 87, 67, 60, 62, 64, 62, 61, 58, (0,6,165): 57, 56, 54, 52, 52, 51, 49, 49, 46, 46, 46, 45, 45, 45, (0,6,179): 45, 46, 46, 48, 48, 48, 49, 50, 50, 48, 47, 50, 52, 63, (0,6,193): 68, 75, 84, 90, 100, 117, 131, 137, 133, 126, 116, 109, (0,6,205): 99, 86, 76, 75, 73, 71, 69, 70, 68, 63, 59, 58, 62, 68, (0,6,219): 71, 71, 74, 78, 85, 94, 97, 97, (0,7,0): 43, 43, 44, 44, 46, 47, 48, 48, 49, 49, 49, 49, 50, 50, 50, (0,7,15): 50, 50, 49, 49, 48, 48, 49, 49, 50, 48, 48, 48, 48, 48, (0,7,29): 48, 48, 48, 50, 50, 50, 49, 49, 48, 48, 48, 50, 50, 50, (0,7,43): 50, 50, 50, 50, 50, 51, 51, 51, 51, 51, 51, 51, 51, 52, (0,7,57): 52, 53, 54, 54, 55, 56, 56, 57, 58, 59, 60, 62, 62, 62, (0,7,71): 62, 66, 66, 69, 69, 71, 73, 74, 73, 70, 70, 74, 79, 84, (0,7,85): 92, 98, 106, 113, 119, 125, 133, 140, 149, 155, 164, 178, (0,7,97): 186, 193, 202, 212, 222, 231, 238, 237, 235, 231, 223, (0,7,108): 209, 191, 175, 164, 166, 166, 165, 165, 165, 164, 164, (0,7,119): 164, 162, 159, 156, 152, 149, 145, 143, 143, 141, 141, (0,7,130): 141, 140, 140, 139, 139, 138, 138, 136, 136, 136, 136, (0,7,141): 135, 136, 139, 145, 150, 162, 173, 186, 193, 193, 187, (0,7,152): 185, 178, 165, 145, 117, 91, 71, 67, 60, 63, 62, 59, 57, (0,7,165): 55, 54, 52, 52, 51, 50, 49, 47, 46, 46, 46, 45, 45, 45, (0,7,179): 45, 46, 46, 48, 48, 47, 48, 50, 50, 49, 48, 48, 51, 56, (0,7,193): 59, 67, 75, 83, 94, 116, 135, 144, 140, 132, 122, 114, (0,7,205): 105, 87, 73, 69, 71, 68, 67, 67, 64, 64, 62, 71, 75, 81, (0,7,219): 85, 83, 82, 84, 89, 94, 97, 97, (0,8,0): 44, 44, 44, 44, 45, 45, 46, 46, 47, 47, 49, 48, 48, 48, 47, (0,8,15): 47, 47, 47, 47, 47, 47, 47, 47, 48, 47, 47, 47, 47, 47, (0,8,29): 47, 47, 47, 47, 47, 47, 48, 48, 49, 49, 50, 49, 49, 49, (0,8,43): 49, 49, 49, 49, 49, 48, 49, 50, 51, 51, 51, 51, 51, 51, (0,8,57): 51, 51, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 62, (0,8,71): 62, 63, 63, 66, 67, 68, 70, 71, 70, 71, 72, 74, 80, 84, (0,8,85): 88, 94, 98, 109, 116, 124, 131, 141, 147, 152, 158, 167, (0,8,97): 173, 181, 190, 202, 212, 222, 229, 232, 234, 230, 218, (0,8,108): 200, 183, 170, 162, 162, 161, 162, 162, 161, 161, 162, (0,8,119): 160, 156, 154, 152, 149, 147, 144, 142, 140, 139, 139, (0,8,130): 138, 137, 137, 137, 136, 135, 137, 134, 134, 135, 136, (0,8,141): 136, 137, 139, 145, 151, 163, 177, 186, 187, 187, 184, (0,8,152): 180, 175, 163, 145, 126, 106, 86, 73, 76, 74, 66, 60, 57, (0,8,165): 55, 54, 51, 52, 51, 49, 49, 48, 47, 44, 44, 45, 45, 45, (0,8,179): 45, 47, 47, 47, 47, 48, 48, 49, 49, 49, 49, 49, 52, 52, (0,8,193): 59, 65, 67, 74, 93, 121, 139, 147, 148, 144, 131, 116, (0,8,205): 106, 95, 90, 76, 72, 65, 62, 63, 65, 76, 85, 98, 110, (0,8,218): 118, 114, 108, 103, 95, 87, 91, 96, 99, (0,9,0): 44, 44, 44, 44, 45, 45, 46, 46, 47, 46, 48, 48, 47, 47, 47, (0,9,15): 47, 46, 46, 46, 46, 47, 47, 47, 47, 47, 47, 47, 47, 47, (0,9,29): 47, 47, 47, 47, 47, 47, 48, 48, 48, 49, 49, 49, 49, 49, (0,9,43): 49, 49, 49, 49, 49, 48, 48, 49, 50, 51, 51, 50, 50, 50, (0,9,57): 50, 50, 50, 51, 52, 53, 54, 56, 57, 58, 59, 61, 62, 62, (0,9,71): 61, 63, 63, 65, 66, 67, 69, 71, 72, 72, 72, 76, 79, 81, (0,9,85): 86, 90, 95, 104, 112, 119, 129, 137, 144, 150, 155, 162, (0,9,97): 167, 172, 180, 190, 201, 212, 219, 223, 224, 222, 212, (0,9,108): 196, 178, 165, 158, 159, 158, 159, 158, 158, 158, 158, (0,9,119): 158, 154, 153, 150, 148, 144, 143, 140, 140, 139, 138, (0,9,130): 137, 137, 137, 135, 135, 133, 134, 133, 133, 131, 132, (0,9,141): 134, 135, 136, 147, 151, 163, 175, 184, 184, 183, 179, (0,9,152): 177, 170, 159, 144, 127, 109, 90, 78, 76, 75, 69, 64, 61, (0,9,165): 56, 52, 49, 50, 50, 48, 47, 47, 46, 46, 46, 47, 45, 47, (0,9,179): 47, 47, 47, 47, 47, 48, 48, 49, 49, 49, 49, 49, 50, 53, (0,9,193): 57, 60, 63, 72, 94, 120, 138, 147, 148, 144, 132, 121, (0,9,205): 113, 107, 104, 92, 88, 83, 82, 84, 90, 102, 114, 116, (0,9,217): 126, 131, 126, 118, 114, 102, 90, 89, 94, 97, (0,10,0): 44, 44, 44, 44, 44, 44, 45, 45, 46, 46, 46, 45, 47, 46, (0,10,14): 46, 46, 44, 44, 44, 44, 43, 43, 43, 43, 45, 45, 45, 45, (0,10,28): 45, 45, 45, 45, 44, 44, 45, 45, 45, 46, 46, 46, 46, 46, (0,10,42): 46, 47, 47, 47, 47, 47, 48, 48, 49, 50, 50, 50, 50, 49, (0,10,56): 49, 49, 49, 49, 50, 51, 52, 53, 56, 57, 58, 59, 61, 61, (0,10,70): 61, 61, 63, 63, 65, 65, 67, 68, 70, 71, 72, 74, 75, 78, (0,10,84): 80, 83, 86, 91, 99, 107, 116, 125, 135, 141, 148, 150, (0,10,96): 157, 160, 162, 168, 177, 186, 197, 205, 213, 215, 212, (0,10,107): 204, 190, 174, 161, 156, 157, 156, 156, 155, 155, 155, (0,10,118): 155, 155, 152, 150, 148, 147, 143, 140, 139, 138, 137, (0,10,129): 137, 137, 135, 135, 133, 132, 131, 132, 130, 130, 130, (0,10,140): 131, 133, 135, 136, 148, 151, 160, 172, 178, 179, 178, (0,10,151): 174, 173, 166, 157, 145, 130, 115, 99, 88, 78, 77, 72, (0,10,163): 68, 64, 57, 52, 47, 48, 48, 47, 47, 46, 46, 47, 47, 47, (0,10,177): 46, 47, 47, 47, 47, 47, 47, 48, 48, 48, 48, 48, 48, 48, (0,10,191): 49, 54, 55, 56, 59, 72, 95, 122, 139, 144, 146, 143, (0,10,203): 132, 125, 123, 124, 125, 125, 119, 113, 110, 110, 111, (0,10,214): 121, 131, 139, 145, 144, 136, 131, 124, 106, 92, 86, 91, (0,10,226): 93, (0,11,0): 45, 45, 45, 45, 45, 45, 46, 46, 46, 46, 45, 45, 46, 46, (0,11,14): 46, 46, 44, 43, 43, 43, 43, 42, 42, 42, 44, 44, 44, 44, (0,11,28): 44, 44, 44, 44, 44, 44, 44, 44, 44, 45, 45, 45, 45, 46, (0,11,42): 46, 46, 46, 47, 47, 47, 47, 48, 49, 49, 49, 49, 48, 48, (0,11,56): 48, 48, 48, 48, 49, 50, 51, 52, 57, 58, 59, 60, 61, 61, (0,11,70): 61, 61, 62, 62, 64, 64, 65, 67, 68, 69, 70, 72, 73, 74, (0,11,84): 76, 78, 81, 84, 94, 101, 111, 120, 130, 138, 144, 148, (0,11,96): 153, 155, 155, 159, 165, 174, 184, 191, 199, 203, 202, (0,11,107): 195, 182, 170, 158, 153, 153, 153, 152, 151, 151, 153, (0,11,118): 153, 151, 149, 148, 147, 144, 142, 138, 138, 137, 136, (0,11,129): 136, 135, 135, 132, 132, 131, 128, 129, 128, 128, 129, (0,11,140): 131, 131, 135, 136, 148, 150, 158, 167, 174, 174, 173, (0,11,151): 170, 167, 161, 154, 143, 134, 122, 109, 98, 83, 81, 75, (0,11,163): 69, 64, 59, 53, 49, 48, 47, 46, 46, 46, 46, 47, 48, 47, (0,11,177): 47, 47, 47, 47, 46, 47, 46, 48, 47, 48, 47, 47, 47, 47, (0,11,191): 50, 55, 54, 51, 57, 72, 98, 123, 139, 141, 143, 140, (0,11,203): 131, 129, 133, 141, 146, 147, 144, 140, 135, 130, 125, (0,11,214): 129, 136, 148, 152, 148, 139, 133, 127, 107, 88, 83, 89, (0,11,226): 90, (0,12,0): 43, 43, 43, 43, 45, 45, 46, 46, 45, 45, 46, 45, 45, 44, (0,12,14): 44, 44, 44, 44, 44, 43, 43, 42, 42, 42, 44, 44, 44, 44, (0,12,28): 44, 44, 44, 44, 44, 44, 44, 44, 44, 43, 43, 43, 44, 45, (0,12,42): 45, 46, 46, 47, 47, 47, 47, 48, 48, 48, 48, 48, 47, 46, (0,12,56): 47, 47, 47, 47, 48, 49, 51, 52, 57, 58, 59, 60, 61, 61, (0,12,70): 60, 60, 61, 61, 63, 63, 64, 65, 66, 67, 68, 67, 68, 69, (0,12,84): 71, 72, 75, 78, 88, 95, 105, 114, 125, 134, 140, 144, (0,12,96): 151, 151, 151, 151, 156, 163, 171, 179, 186, 189, 190, (0,12,107): 185, 176, 166, 155, 151, 151, 151, 150, 149, 148, 149, (0,12,118): 150, 150, 149, 147, 146, 142, 139, 137, 137, 136, 135, (0,12,129): 134, 134, 134, 131, 131, 130, 128, 128, 128, 128, 127, (0,12,140): 130, 131, 135, 136, 145, 146, 154, 163, 168, 168, 169, (0,12,151): 166, 162, 155, 149, 140, 134, 126, 116, 106, 92, 86, 78, (0,12,163): 69, 63, 60, 55, 54, 48, 48, 46, 47, 47, 47, 49, 50, 49, (0,12,177): 49, 49, 49, 49, 47, 49, 47, 50, 48, 50, 48, 48, 48, 48, (0,12,191): 50, 56, 53, 49, 54, 71, 96, 122, 136, 141, 143, 141, (0,12,203): 134, 135, 144, 155, 160, 152, 154, 155, 152, 145, 137, (0,12,214): 137, 144, 146, 149, 144, 136, 132, 123, 103, 84, 81, 85, (0,12,226): 86, (0,13,0): 44, 44, 44, 44, 46, 46, 47, 47, 46, 46, 47, 46, 46, 46, (0,13,14): 45, 45, 45, 45, 45, 44, 43, 42, 42, 42, 43, 43, 43, 43, (0,13,28): 43, 43, 43, 43, 44, 44, 43, 43, 43, 42, 42, 42, 44, 44, (0,13,42): 44, 45, 46, 46, 47, 47, 47, 47, 48, 48, 47, 47, 46, 45, (0,13,56): 48, 48, 47, 48, 49, 50, 51, 52, 58, 58, 59, 60, 61, 60, (0,13,70): 60, 59, 61, 60, 62, 62, 63, 64, 65, 63, 64, 64, 64, 65, (0,13,84): 66, 67, 70, 72, 81, 88, 97, 108, 117, 128, 134, 139, 147, (0,13,97): 149, 147, 147, 149, 154, 160, 165, 172, 176, 180, 177, (0,13,108): 170, 161, 154, 150, 149, 148, 147, 147, 147, 147, 148, (0,13,119): 148, 147, 146, 143, 141, 138, 137, 135, 135, 134, 134, (0,13,130): 133, 131, 131, 129, 127, 127, 128, 127, 127, 128, 130, (0,13,141): 133, 136, 138, 142, 144, 151, 159, 167, 167, 169, 164, (0,13,152): 156, 150, 143, 136, 131, 126, 121, 112, 100, 93, 82, 74, (0,13,164): 66, 62, 58, 57, 51, 50, 49, 47, 47, 48, 49, 50, 49, 49, (0,13,178): 49, 49, 49, 48, 48, 48, 49, 49, 49, 49, 47, 47, 47, 50, (0,13,192): 56, 53, 51, 53, 69, 92, 117, 134, 142, 145, 144, 139, (0,13,204): 141, 151, 162, 169, 165, 166, 167, 164, 151, 139, 136, (0,13,215): 141, 142, 144, 141, 132, 128, 119, 100, 81, 77, 81, 82, (0,14,0): 44, 44, 44, 44, 46, 46, 46, 46, 47, 47, 47, 47, 47, 47, (0,14,14): 46, 46, 47, 46, 46, 45, 44, 43, 43, 42, 43, 43, 43, 43, (0,14,28): 43, 43, 43, 43, 43, 43, 43, 42, 42, 42, 41, 41, 43, 43, (0,14,42): 44, 45, 46, 46, 47, 47, 47, 47, 47, 47, 47, 46, 45, 44, (0,14,56): 48, 48, 48, 48, 49, 50, 52, 52, 58, 59, 59, 60, 61, 60, (0,14,70): 60, 59, 60, 60, 62, 61, 62, 62, 63, 62, 61, 59, 59, 60, (0,14,84): 61, 62, 64, 67, 71, 79, 89, 100, 110, 120, 127, 133, 143, (0,14,97): 145, 144, 143, 144, 147, 151, 153, 160, 166, 170, 170, (0,14,108): 165, 159, 151, 149, 146, 146, 145, 144, 145, 145, 146, (0,14,119): 146, 145, 145, 142, 141, 138, 136, 134, 132, 133, 133, (0,14,130): 131, 130, 130, 129, 126, 126, 128, 128, 128, 129, 132, (0,14,141): 133, 136, 140, 140, 142, 152, 161, 168, 169, 169, 164, (0,14,152): 153, 146, 137, 130, 128, 127, 126, 120, 106, 100, 90, (0,14,163): 81, 73, 67, 62, 60, 54, 52, 51, 48, 49, 49, 50, 52, 50, (0,14,177): 50, 50, 50, 50, 48, 48, 48, 49, 49, 48, 48, 48, 48, 48, (0,14,191): 49, 54, 53, 52, 52, 65, 87, 113, 130, 141, 144, 144, (0,14,203): 139, 141, 149, 160, 164, 169, 168, 167, 161, 147, 133, (0,14,214): 130, 135, 136, 140, 139, 129, 123, 113, 95, 77, 73, 74, (0,14,226): 76, (0,15,0): 46, 44, 46, 46, 46, 46, 46, 47, 48, 48, 48, 48, 48, 48, (0,15,14): 47, 49, 50, 49, 49, 48, 47, 44, 43, 43, 43, 43, 43, 43, (0,15,28): 43, 43, 43, 43, 43, 43, 45, 42, 44, 41, 41, 40, 42, 43, (0,15,42): 44, 44, 45, 46, 47, 47, 45, 45, 47, 47, 46, 45, 44, 44, (0,15,56): 49, 50, 50, 50, 51, 52, 53, 54, 59, 59, 60, 60, 61, 60, (0,15,70): 59, 59, 60, 60, 61, 61, 61, 62, 63, 61, 62, 61, 60, 57, (0,15,84): 57, 58, 59, 63, 67, 74, 84, 94, 104, 111, 118, 123, 135, (0,15,97): 139, 139, 140, 142, 143, 146, 149, 152, 156, 162, 161, (0,15,108): 158, 153, 150, 148, 148, 147, 144, 142, 142, 140, 140, (0,15,119): 141, 142, 142, 139, 138, 136, 135, 132, 132, 130, 128, (0,15,130): 127, 126, 126, 124, 124, 124, 128, 129, 128, 130, 133, (0,15,141): 133, 136, 139, 140, 142, 147, 152, 157, 157, 158, 157, (0,15,152): 147, 143, 137, 129, 127, 125, 122, 116, 103, 98, 92, 85, (0,15,164): 78, 71, 64, 61, 56, 56, 53, 51, 50, 50, 51, 52, 50, 48, (0,15,178): 48, 50, 50, 50, 50, 50, 51, 51, 49, 49, 48, 48, 48, 49, (0,15,192): 52, 52, 52, 52, 63, 84, 109, 129, 137, 141, 141, 136, (0,15,204): 138, 145, 155, 159, 159, 158, 157, 152, 140, 130, 133, (0,15,215): 140, 132, 137, 137, 126, 118, 108, 90, 74, 70, 70, 70, (0,16,0): 47, 46, 47, 48, 48, 48, 49, 50, 51, 52, 52, 54, 53, 52, (0,16,14): 51, 52, 53, 53, 52, 51, 50, 49, 48, 48, 46, 46, 45, 45, (0,16,28): 44, 43, 42, 41, 46, 46, 47, 46, 47, 46, 46, 46, 47, 47, (0,16,42): 45, 46, 45, 45, 46, 46, 45, 45, 46, 47, 47, 48, 50, 50, (0,16,56): 50, 52, 53, 54, 56, 58, 58, 59, 61, 61, 62, 62, 62, 61, (0,16,70): 60, 59, 61, 60, 60, 59, 61, 62, 62, 64, 66, 66, 60, 57, (0,16,84): 53, 52, 54, 59, 64, 71, 79, 86, 91, 97, 102, 109, 121, (0,16,97): 127, 134, 139, 143, 147, 147, 146, 147, 147, 148, 149, (0,16,108): 148, 146, 145, 145, 151, 151, 146, 140, 136, 132, 130, (0,16,119): 130, 136, 136, 138, 137, 136, 135, 132, 131, 123, 126, (0,16,130): 118, 112, 118, 118, 118, 125, 125, 131, 136, 139, 138, (0,16,141): 135, 133, 135, 144, 149, 147, 142, 138, 134, 135, 136, (0,16,152): 139, 138, 139, 138, 132, 124, 114, 110, 104, 97, 91, 89, (0,16,164): 90, 86, 79, 73, 66, 64, 58, 53, 51, 51, 51, 49, 47, 45, (0,16,178): 45, 45, 47, 49, 51, 51, 52, 52, 51, 50, 48, 47, 47, 47, (0,16,192): 47, 49, 48, 47, 60, 86, 112, 127, 141, 139, 140, 140, (0,16,204): 138, 137, 142, 153, 159, 157, 150, 143, 136, 133, 131, (0,16,215): 133, 131, 131, 128, 121, 114, 104, 89, 77, 74, 68, 62, (0,17,0): 47, 48, 48, 48, 49, 49, 50, 51, 52, 52, 55, 55, 54, 53, (0,17,14): 53, 53, 55, 55, 54, 54, 51, 50, 48, 48, 48, 47, 47, 45, (0,17,28): 45, 43, 41, 41, 46, 47, 47, 47, 47, 47, 46, 46, 47, 47, (0,17,42): 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 47, 47, 49, 51, (0,17,56): 53, 53, 55, 56, 58, 59, 60, 61, 62, 62, 62, 62, 62, 61, (0,17,70): 60, 60, 61, 60, 59, 59, 61, 61, 62, 64, 68, 70, 67, 64, (0,17,84): 61, 60, 59, 62, 65, 70, 75, 80, 86, 92, 97, 103, 112, (0,17,97): 120, 128, 136, 143, 145, 147, 147, 141, 139, 139, 140, (0,17,108): 141, 141, 142, 145, 149, 149, 144, 139, 134, 131, 129, (0,17,119): 129, 133, 134, 135, 136, 133, 132, 130, 127, 119, 119, (0,17,130): 112, 109, 114, 114, 113, 117, 127, 132, 138, 140, 138, (0,17,141): 135, 133, 136, 144, 149, 145, 138, 131, 127, 128, 131, (0,17,152): 134, 139, 143, 143, 136, 127, 117, 109, 100, 94, 89, 89, (0,17,164): 90, 88, 82, 77, 69, 65, 59, 53, 51, 50, 49, 46, 49, 48, (0,17,178): 48, 48, 49, 51, 52, 52, 52, 51, 50, 48, 47, 45, 44, 44, (0,17,192): 50, 50, 48, 45, 56, 83, 111, 128, 135, 134, 134, 136, (0,17,204): 134, 132, 138, 147, 153, 150, 147, 140, 134, 130, 130, (0,17,215): 131, 131, 130, 127, 120, 113, 104, 89, 77, 70, 64, 59, (0,18,0): 49, 49, 49, 49, 50, 50, 52, 52, 53, 53, 56, 56, 56, 55, (0,18,14): 55, 54, 56, 56, 55, 54, 52, 51, 50, 49, 49, 47, 48, 47, (0,18,28): 45, 44, 43, 43, 47, 49, 47, 47, 47, 47, 46, 46, 48, 48, (0,18,42): 47, 47, 47, 48, 48, 48, 47, 47, 48, 48, 48, 47, 49, 50, (0,18,56): 54, 55, 57, 58, 60, 61, 62, 63, 63, 63, 64, 64, 63, 62, (0,18,70): 61, 61, 61, 60, 59, 59, 59, 59, 60, 63, 68, 71, 74, 76, (0,18,84): 79, 78, 74, 71, 68, 65, 66, 70, 79, 89, 99, 105, 107, (0,18,97): 111, 119, 129, 135, 140, 141, 141, 138, 135, 134, 133, (0,18,108): 134, 137, 140, 143, 142, 143, 140, 138, 135, 133, 134, (0,18,119): 134, 137, 137, 136, 134, 132, 128, 126, 122, 124, 120, (0,18,130): 117, 116, 118, 118, 117, 118, 127, 132, 138, 140, 138, (0,18,141): 137, 136, 140, 147, 153, 151, 146, 138, 131, 129, 130, (0,18,152): 134, 138, 143, 145, 144, 138, 130, 122, 107, 97, 92, 92, (0,18,164): 93, 91, 85, 80, 70, 66, 58, 51, 46, 42, 40, 43, 50, 53, (0,18,178): 53, 53, 52, 53, 51, 51, 48, 47, 44, 43, 41, 40, 38, 40, (0,18,192): 49, 51, 46, 42, 53, 80, 109, 124, 128, 126, 127, 131, (0,18,204): 128, 126, 128, 135, 141, 139, 136, 132, 129, 127, 127, (0,18,215): 127, 127, 128, 125, 119, 112, 104, 89, 77, 69, 62, 57, (0,19,0): 50, 50, 51, 51, 51, 52, 53, 53, 54, 55, 57, 58, 58, 57, (0,19,14): 57, 57, 58, 57, 57, 56, 53, 52, 52, 52, 51, 51, 49, 49, (0,19,28): 48, 46, 45, 45, 48, 50, 48, 48, 48, 48, 47, 47, 49, 49, (0,19,42): 48, 48, 49, 49, 49, 49, 49, 49, 49, 49, 49, 50, 51, 51, (0,19,56): 57, 57, 59, 60, 62, 64, 64, 65, 66, 65, 66, 65, 65, 64, (0,19,70): 62, 62, 61, 61, 60, 59, 59, 60, 61, 63, 66, 70, 77, 84, (0,19,84): 88, 87, 81, 75, 68, 62, 60, 64, 72, 84, 96, 101, 105, (0,19,97): 107, 117, 125, 133, 137, 138, 136, 137, 134, 134, 133, (0,19,108): 133, 134, 135, 137, 137, 137, 136, 136, 135, 136, 136, (0,19,119): 137, 138, 138, 136, 133, 130, 125, 122, 120, 127, 122, (0,19,130): 120, 120, 117, 118, 123, 123, 128, 132, 135, 137, 136, (0,19,141): 138, 138, 140, 144, 147, 148, 143, 137, 132, 131, 131, (0,19,152): 135, 136, 139, 143, 143, 139, 136, 127, 114, 108, 104, (0,19,163): 102, 103, 100, 96, 92, 81, 76, 66, 57, 50, 46, 44, 45, (0,19,176): 53, 56, 56, 55, 52, 51, 50, 48, 44, 43, 42, 40, 39, 39, (0,19,190): 37, 40, 46, 49, 48, 46, 56, 80, 105, 118, 123, 121, 124, (0,19,203): 127, 125, 121, 122, 127, 130, 128, 125, 125, 125, 126, (0,19,214): 126, 125, 124, 125, 122, 117, 110, 101, 87, 78, 69, 63, (0,19,226): 57, (0,20,0): 52, 52, 52, 53, 53, 53, 55, 55, 56, 56, 59, 60, 60, 60, (0,20,14): 60, 60, 60, 60, 59, 59, 56, 55, 54, 54, 53, 54, 54, 51, (0,20,28): 50, 49, 48, 49, 50, 52, 52, 52, 50, 50, 50, 50, 51, 51, (0,20,42): 51, 51, 50, 50, 51, 51, 51, 51, 51, 51, 53, 53, 54, 54, (0,20,56): 59, 60, 61, 63, 65, 66, 69, 67, 68, 68, 69, 68, 67, 66, (0,20,70): 64, 64, 62, 62, 61, 61, 61, 61, 62, 62, 66, 70, 78, 85, (0,20,84): 90, 89, 83, 76, 68, 60, 57, 60, 68, 78, 90, 94, 102, 106, (0,20,98): 115, 122, 130, 134, 135, 134, 130, 129, 129, 129, 131, (0,20,109): 131, 133, 132, 132, 132, 133, 134, 136, 137, 139, 140, (0,20,120): 138, 137, 135, 131, 127, 122, 119, 120, 127, 122, 129, (0,20,131): 131, 117, 113, 124, 125, 127, 129, 131, 132, 133, 135, (0,20,142): 138, 137, 130, 129, 134, 135, 136, 137, 141, 141, 138, (0,20,153): 136, 136, 137, 135, 132, 129, 127, 125, 125, 123, 120, (0,20,164): 120, 117, 112, 108, 99, 92, 83, 73, 66, 61, 57, 55, 57, (0,20,177): 57, 54, 52, 49, 46, 44, 44, 41, 41, 41, 41, 42, 42, 43, (0,20,191): 45, 44, 50, 53, 56, 66, 85, 102, 110, 116, 113, 117, (0,20,203): 120, 119, 115, 116, 119, 122, 120, 119, 120, 121, 123, (0,20,214): 123, 124, 121, 122, 119, 115, 109, 100, 87, 78, 68, 62, (0,20,226): 56, (0,21,0): 53, 53, 54, 54, 55, 55, 56, 56, 57, 58, 61, 62, 62, 62, (0,21,14): 62, 62, 63, 63, 62, 61, 59, 58, 57, 57, 56, 56, 57, 56, (0,21,28): 55, 52, 53, 52, 54, 54, 54, 54, 52, 52, 52, 52, 52, 52, (0,21,42): 52, 53, 51, 51, 52, 52, 52, 52, 53, 53, 56, 56, 57, 58, (0,21,56): 61, 62, 64, 65, 67, 68, 71, 72, 70, 70, 70, 70, 69, 67, (0,21,70): 66, 65, 64, 64, 63, 62, 62, 63, 64, 64, 65, 68, 75, 81, (0,21,84): 86, 85, 82, 75, 68, 63, 61, 63, 67, 73, 83, 88, 93, 100, (0,21,98): 108, 118, 125, 130, 131, 130, 126, 125, 125, 125, 128, (0,21,109): 131, 134, 133, 131, 131, 132, 132, 136, 136, 137, 138, (0,21,120): 135, 134, 131, 128, 126, 124, 121, 126, 133, 138, 160, (0,21,131): 166, 138, 124, 130, 128, 123, 122, 124, 125, 127, 130, (0,21,142): 137, 134, 119, 117, 130, 141, 150, 159, 166, 167, 157, (0,21,153): 150, 146, 143, 139, 134, 130, 131, 134, 136, 134, 131, (0,21,164): 129, 126, 122, 118, 109, 104, 96, 87, 80, 72, 66, 64, (0,21,176): 61, 60, 56, 53, 50, 47, 44, 43, 43, 44, 45, 47, 51, 52, (0,21,190): 54, 54, 51, 60, 69, 73, 81, 93, 103, 106, 110, 107, 108, (0,21,203): 112, 113, 111, 111, 114, 117, 114, 113, 116, 120, 122, (0,21,214): 121, 121, 118, 119, 117, 111, 106, 99, 85, 78, 67, 64, (0,21,226): 58, (0,22,0): 54, 55, 55, 55, 56, 56, 57, 58, 58, 59, 62, 63, 63, 63, (0,22,14): 64, 64, 66, 66, 65, 64, 61, 61, 60, 60, 60, 60, 60, 60, (0,22,28): 59, 57, 57, 56, 56, 57, 56, 56, 56, 56, 54, 54, 54, 54, (0,22,42): 53, 53, 54, 54, 55, 55, 53, 53, 56, 57, 58, 60, 61, 64, (0,22,56): 64, 65, 67, 68, 71, 72, 73, 73, 74, 74, 74, 73, 70, 68, (0,22,70): 66, 65, 65, 64, 64, 63, 63, 64, 64, 65, 64, 65, 67, 70, (0,22,84): 72, 74, 74, 72, 69, 69, 69, 70, 73, 73, 76, 82, 90, 100, (0,22,98): 110, 122, 131, 137, 139, 139, 139, 135, 130, 127, 127, (0,22,109): 130, 136, 138, 133, 132, 132, 134, 134, 133, 132, 131, (0,22,120): 128, 127, 126, 127, 127, 128, 129, 135, 144, 160, 203, (0,22,131): 216, 171, 138, 136, 127, 117, 114, 113, 114, 118, 124, (0,22,142): 132, 128, 113, 116, 138, 156, 173, 186, 194, 195, 191, (0,22,153): 183, 173, 163, 154, 145, 139, 137, 140, 142, 139, 135, (0,22,164): 132, 128, 122, 119, 112, 107, 103, 94, 88, 80, 72, 67, (0,22,176): 65, 64, 59, 56, 52, 50, 46, 46, 48, 51, 54, 58, 62, 65, (0,22,190): 69, 67, 70, 76, 86, 91, 96, 103, 105, 106, 108, 103, (0,22,202): 102, 108, 111, 110, 110, 114, 115, 111, 111, 114, 119, (0,22,213): 121, 120, 117, 115, 117, 115, 110, 105, 98, 84, 77, 72, (0,22,225): 69, 63, (0,23,0): 55, 55, 56, 56, 56, 57, 58, 58, 59, 60, 63, 64, 64, 64, (0,23,14): 65, 65, 67, 67, 67, 66, 63, 62, 62, 61, 62, 62, 62, 62, (0,23,28): 61, 60, 58, 59, 58, 58, 57, 57, 57, 57, 57, 55, 54, 54, (0,23,42): 54, 54, 54, 55, 55, 55, 53, 54, 57, 59, 60, 63, 66, 66, (0,23,56): 65, 66, 67, 69, 72, 73, 74, 74, 75, 75, 74, 74, 70, 69, (0,23,70): 67, 66, 66, 66, 65, 64, 64, 65, 66, 66, 63, 64, 66, 69, (0,23,84): 71, 73, 77, 78, 77, 78, 81, 81, 81, 82, 80, 86, 103, 114, (0,23,98): 126, 137, 149, 155, 159, 159, 160, 153, 142, 133, 132, (0,23,109): 133, 140, 143, 139, 138, 137, 136, 136, 132, 128, 125, (0,23,120): 122, 122, 122, 125, 129, 134, 139, 146, 150, 176, 234, (0,23,131): 252, 195, 149, 137, 120, 112, 106, 104, 106, 111, 118, (0,23,142): 128, 130, 124, 134, 160, 183, 203, 214, 218, 218, 230, (0,23,153): 219, 207, 195, 184, 174, 165, 162, 159, 159, 156, 152, (0,23,164): 148, 141, 137, 133, 127, 124, 119, 112, 105, 98, 87, 83, (0,23,176): 79, 77, 73, 68, 64, 59, 55, 54, 57, 58, 61, 65, 70, 72, (0,23,190): 75, 72, 84, 89, 100, 103, 105, 110, 109, 108, 107, 103, (0,23,202): 103, 109, 112, 113, 114, 117, 116, 111, 111, 114, 119, (0,23,213): 121, 119, 116, 115, 117, 115, 111, 105, 97, 84, 77, 78, (0,23,225): 76, 69, (0,24,0): 57, 57, 57, 57, 57, 58, 61, 61, 61, 61, 64, 64, 65, 66, (0,24,14): 68, 68, 69, 69, 69, 68, 68, 67, 69, 68, 66, 66, 66, 66, (0,24,28): 66, 66, 65, 65, 65, 65, 65, 64, 64, 62, 62, 62, 60, 60, (0,24,42): 59, 58, 56, 56, 55, 55, 57, 57, 57, 58, 60, 61, 65, 66, (0,24,56): 67, 68, 70, 74, 75, 76, 78, 78, 78, 78, 76, 75, 73, 72, (0,24,70): 69, 69, 66, 65, 64, 63, 63, 63, 64, 64, 60, 77, 77, 75, (0,24,84): 84, 82, 81, 95, 91, 94, 95, 92, 94, 101, 109, 114, 137, (0,24,97): 143, 151, 159, 159, 155, 154, 158, 166, 164, 168, 171, (0,24,108): 165, 153, 151, 156, 148, 146, 143, 137, 136, 135, 127, (0,24,119): 117, 117, 115, 116, 121, 133, 142, 149, 155, 198, 229, (0,24,130): 194, 202, 224, 171, 134, 132, 109, 105, 105, 107, 107, (0,24,141): 111, 125, 141, 145, 177, 208, 218, 222, 229, 241, 243, (0,24,152): 243, 233, 227, 226, 224, 218, 216, 215, 196, 192, 189, (0,24,163): 185, 181, 175, 171, 167, 157, 157, 154, 150, 145, 135, (0,24,174): 127, 123, 117, 103, 100, 97, 79, 71, 76, 77, 72, 69, 68, (0,24,187): 70, 70, 71, 75, 81, 89, 96, 102, 103, 107, 117, 117, (0,24,199): 111, 108, 108, 112, 114, 115, 117, 119, 118, 114, 115, (0,24,210): 115, 113, 115, 119, 122, 121, 120, 115, 109, 107, 105, (0,24,221): 97, 84, 79, 79, 84, 82, (0,25,0): 57, 57, 57, 57, 58, 59, 62, 63, 62, 62, 65, 65, 66, 67, (0,25,14): 68, 68, 70, 69, 69, 69, 68, 68, 69, 69, 69, 69, 69, 68, (0,25,28): 67, 67, 68, 67, 66, 66, 66, 66, 65, 65, 64, 64, 62, 60, (0,25,42): 59, 59, 57, 56, 55, 55, 57, 57, 57, 58, 60, 62, 65, 66, (0,25,56): 67, 69, 73, 74, 76, 76, 78, 78, 78, 78, 77, 74, 73, 72, (0,25,70): 69, 69, 67, 66, 64, 64, 64, 64, 65, 65, 67, 73, 75, 86, (0,25,84): 106, 116, 123, 133, 129, 131, 132, 132, 141, 152, 161, (0,25,95): 162, 147, 148, 154, 159, 160, 156, 156, 159, 163, 155, (0,25,106): 153, 160, 164, 167, 174, 182, 181, 176, 167, 155, 147, (0,25,117): 142, 133, 121, 114, 124, 135, 133, 133, 149, 181, 211, (0,25,128): 219, 221, 199, 190, 208, 179, 132, 130, 121, 101, 96, (0,25,139): 107, 117, 119, 127, 150, 185, 210, 224, 231, 238, 249, (0,25,150): 255, 255, 255, 243, 236, 234, 230, 224, 222, 221, 219, (0,25,161): 216, 214, 213, 208, 206, 204, 201, 204, 203, 203, 202, (0,25,172): 202, 201, 199, 197, 195, 177, 163, 153, 141, 132, 107, (0,25,183): 72, 84, 77, 72, 74, 75, 75, 79, 85, 91, 99, 103, 105, (0,25,196): 110, 122, 122, 116, 114, 112, 112, 113, 117, 119, 119, (0,25,207): 119, 115, 120, 122, 121, 126, 131, 133, 131, 129, 122, (0,25,218): 114, 109, 104, 96, 84, 78, 82, 86, 86, (0,26,0): 56, 56, 56, 57, 59, 60, 63, 64, 64, 64, 67, 67, 67, 67, (0,26,14): 68, 68, 70, 70, 70, 69, 69, 69, 71, 70, 74, 73, 72, 71, (0,26,28): 70, 69, 70, 69, 68, 68, 68, 68, 68, 68, 68, 67, 63, 63, (0,26,42): 60, 59, 58, 58, 57, 57, 57, 57, 58, 59, 62, 64, 66, 67, (0,26,56): 69, 70, 73, 75, 77, 77, 78, 77, 80, 77, 76, 75, 73, 72, (0,26,70): 69, 68, 67, 67, 65, 65, 63, 64, 64, 68, 83, 82, 105, 142, (0,26,84): 173, 193, 203, 196, 154, 150, 149, 155, 171, 190, 203, (0,26,95): 196, 163, 157, 160, 165, 165, 163, 164, 167, 171, 161, (0,26,106): 152, 157, 165, 172, 178, 184, 167, 177, 185, 190, 186, (0,26,117): 173, 150, 130, 123, 118, 122, 133, 156, 186, 215, 232, (0,26,128): 225, 206, 205, 187, 198, 198, 148, 140, 125, 106, 104, (0,26,139): 117, 128, 130, 143, 177, 224, 239, 238, 239, 248, 255, (0,26,150): 255, 254, 255, 245, 240, 239, 237, 233, 236, 239, 241, (0,26,161): 239, 239, 237, 236, 234, 233, 232, 228, 229, 228, 228, (0,26,172): 233, 238, 242, 244, 252, 237, 225, 210, 203, 199, 166, (0,26,183): 114, 93, 88, 87, 81, 66, 58, 63, 76, 86, 97, 101, 104, (0,26,196): 113, 127, 126, 119, 120, 117, 114, 114, 118, 121, 122, (0,26,207): 122, 128, 132, 138, 141, 146, 151, 152, 150, 145, 135, (0,26,218): 122, 112, 103, 94, 84, 80, 82, 88, 89, (0,27,0): 55, 55, 56, 57, 59, 61, 64, 65, 66, 66, 68, 68, 68, 68, (0,27,14): 69, 69, 71, 71, 71, 70, 70, 70, 72, 72, 76, 75, 74, 73, (0,27,28): 72, 71, 70, 69, 68, 68, 69, 69, 68, 69, 69, 69, 64, 63, (0,27,42): 61, 60, 59, 58, 58, 58, 57, 57, 59, 59, 63, 64, 67, 68, (0,27,56): 70, 70, 74, 75, 77, 77, 77, 77, 79, 79, 76, 75, 74, 71, (0,27,70): 69, 68, 68, 68, 66, 64, 64, 65, 66, 70, 81, 88, 135, 189, (0,27,84): 216, 228, 226, 201, 157, 148, 144, 152, 173, 196, 212, (0,27,95): 203, 177, 167, 169, 172, 175, 176, 179, 180, 178, 169, (0,27,106): 163, 164, 169, 171, 174, 173, 182, 186, 187, 186, 190, (0,27,117): 197, 196, 190, 153, 139, 135, 157, 195, 219, 224, 218, (0,27,128): 221, 204, 209, 198, 197, 200, 167, 144, 119, 120, 126, (0,27,139): 130, 133, 145, 172, 213, 234, 246, 242, 242, 249, 253, (0,27,150): 249, 243, 253, 248, 244, 246, 248, 249, 255, 255, 255, (0,27,161): 252, 252, 249, 247, 248, 246, 245, 247, 245, 244, 245, (0,27,172): 247, 252, 255, 255, 255, 253, 250, 239, 228, 226, 213, (0,27,183): 180, 124, 104, 88, 80, 71, 63, 59, 65, 81, 95, 103, 111, (0,27,196): 124, 136, 135, 125, 122, 124, 124, 122, 122, 125, 131, (0,27,207): 136, 149, 156, 163, 166, 172, 177, 176, 171, 161, 148, (0,27,218): 131, 115, 104, 93, 83, 80, 80, 86, 87, (0,28,0): 54, 54, 55, 56, 58, 60, 63, 64, 66, 66, 68, 68, 68, 69, (0,28,14): 70, 70, 70, 70, 71, 72, 72, 72, 74, 74, 76, 75, 75, 74, (0,28,28): 74, 73, 72, 71, 69, 69, 69, 69, 69, 69, 68, 68, 64, 64, (0,28,42): 64, 63, 60, 59, 59, 58, 59, 59, 59, 60, 63, 65, 67, 68, (0,28,56): 71, 71, 75, 77, 77, 78, 79, 79, 79, 78, 78, 74, 73, 71, (0,28,70): 68, 68, 68, 68, 66, 64, 65, 65, 66, 75, 91, 116, 172, (0,28,83): 218, 229, 226, 213, 182, 167, 156, 145, 149, 171, 193, (0,28,94): 211, 204, 177, 168, 170, 173, 178, 184, 188, 187, 172, (0,28,105): 170, 168, 166, 170, 176, 183, 187, 200, 204, 206, 205, (0,28,116): 211, 220, 223, 218, 193, 195, 203, 209, 215, 218, 223, (0,28,127): 224, 217, 215, 205, 206, 190, 178, 181, 150, 123, 130, (0,28,138): 136, 133, 147, 176, 206, 232, 231, 237, 230, 227, 227, (0,28,149): 227, 228, 229, 240, 239, 239, 242, 245, 248, 254, 255, (0,28,160): 255, 253, 252, 250, 251, 252, 253, 252, 253, 251, 250, (0,28,171): 250, 250, 249, 249, 250, 255, 255, 255, 253, 238, 230, (0,28,182): 226, 216, 186, 140, 96, 81, 86, 86, 74, 65, 82, 101, (0,28,194): 117, 128, 142, 153, 149, 136, 130, 137, 143, 140, 135, (0,28,205): 138, 151, 164, 178, 184, 191, 192, 194, 197, 195, 190, (0,28,216): 176, 162, 141, 121, 105, 92, 84, 82, 80, 84, 86, (0,29,0): 53, 53, 54, 55, 56, 58, 61, 62, 64, 64, 67, 68, 69, 69, (0,29,14): 71, 71, 71, 71, 72, 73, 73, 73, 75, 76, 76, 75, 76, 75, (0,29,28): 76, 75, 74, 73, 71, 71, 70, 70, 69, 69, 68, 67, 65, 65, (0,29,42): 64, 64, 61, 60, 59, 59, 59, 59, 59, 60, 63, 65, 68, 69, (0,29,56): 72, 74, 76, 77, 78, 78, 79, 79, 79, 78, 77, 76, 73, 71, (0,29,70): 70, 67, 67, 66, 66, 64, 64, 65, 66, 78, 106, 149, 195, (0,29,83): 218, 220, 219, 209, 188, 172, 159, 150, 148, 161, 179, (0,29,94): 193, 189, 167, 162, 165, 167, 175, 184, 186, 183, 174, (0,29,105): 173, 167, 164, 170, 182, 195, 202, 188, 203, 221, 232, (0,29,116): 239, 239, 231, 218, 216, 222, 229, 224, 216, 214, 224, (0,29,127): 231, 216, 221, 202, 205, 189, 174, 200, 184, 142, 135, (0,29,138): 132, 139, 170, 209, 226, 229, 240, 239, 226, 216, 209, (0,29,149): 209, 219, 233, 235, 238, 239, 245, 246, 246, 249, 253, (0,29,160): 251, 248, 248, 249, 254, 255, 255, 255, 251, 251, 250, (0,29,171): 247, 247, 244, 241, 241, 255, 251, 251, 255, 251, 243, (0,29,182): 236, 224, 231, 194, 150, 116, 93, 82, 82, 87, 94, 114, (0,29,194): 136, 149, 159, 166, 161, 150, 149, 158, 166, 166, 162, (0,29,205): 166, 181, 194, 204, 209, 213, 213, 212, 213, 209, 203, (0,29,216): 191, 176, 152, 128, 109, 96, 87, 86, 83, 86, 87, (0,30,0): 53, 53, 53, 53, 54, 56, 58, 59, 61, 62, 65, 67, 68, 70, (0,30,14): 72, 72, 71, 72, 73, 73, 74, 74, 77, 77, 77, 76, 77, 77, (0,30,28): 78, 77, 78, 77, 74, 74, 73, 72, 71, 70, 68, 68, 67, 67, (0,30,42): 65, 64, 63, 63, 60, 60, 60, 60, 60, 60, 64, 65, 68, 69, (0,30,56): 72, 75, 77, 78, 80, 80, 79, 79, 79, 79, 77, 76, 73, 70, (0,30,70): 69, 67, 66, 65, 65, 63, 63, 64, 64, 78, 111, 165, 190, (0,30,83): 186, 188, 193, 191, 183, 167, 162, 155, 150, 152, 158, (0,30,94): 164, 162, 158, 160, 162, 165, 173, 183, 184, 178, 177, (0,30,105): 173, 168, 166, 175, 188, 195, 196, 193, 203, 213, 221, (0,30,116): 232, 245, 253, 252, 233, 227, 220, 217, 220, 223, 229, (0,30,127): 228, 215, 212, 207, 206, 196, 187, 199, 210, 166, 143, (0,30,138): 139, 164, 203, 224, 232, 233, 246, 238, 225, 213, 202, (0,30,149): 200, 211, 229, 240, 245, 251, 255, 254, 249, 249, 250, (0,30,160): 247, 246, 246, 249, 251, 254, 255, 255, 255, 255, 255, (0,30,171): 255, 251, 249, 247, 244, 251, 245, 249, 252, 250, 255, (0,30,182): 255, 242, 240, 229, 211, 175, 132, 104, 105, 115, 121, (0,30,193): 140, 163, 173, 178, 182, 178, 170, 176, 182, 189, 192, (0,30,204): 195, 201, 213, 221, 226, 231, 233, 230, 229, 228, 224, (0,30,215): 217, 202, 186, 162, 136, 116, 101, 92, 91, 92, 92, 94, (0,31,0): 53, 53, 53, 53, 53, 54, 56, 57, 60, 61, 64, 66, 68, 70, (0,31,14): 71, 72, 72, 72, 72, 74, 74, 75, 75, 78, 77, 77, 77, 77, (0,31,28): 77, 77, 78, 78, 77, 77, 75, 74, 72, 71, 69, 68, 67, 67, (0,31,42): 65, 65, 64, 63, 60, 60, 62, 62, 60, 61, 62, 65, 67, 68, (0,31,56): 72, 73, 76, 77, 78, 80, 79, 79, 76, 76, 75, 76, 74, 73, (0,31,70): 70, 67, 65, 62, 61, 60, 63, 64, 66, 83, 134, 193, 200, (0,31,83): 174, 170, 177, 171, 171, 170, 171, 169, 163, 160, 161, (0,31,94): 161, 158, 160, 163, 166, 166, 173, 182, 183, 176, 171, (0,31,105): 168, 169, 172, 187, 198, 197, 188, 188, 201, 218, 227, (0,31,116): 238, 246, 249, 247, 246, 241, 236, 232, 227, 226, 225, (0,31,127): 222, 222, 207, 219, 205, 199, 194, 179, 209, 191, 165, (0,31,138): 170, 205, 232, 231, 235, 246, 237, 227, 215, 207, 195, (0,31,149): 185, 187, 199, 229, 234, 242, 249, 252, 250, 250, 251, (0,31,160): 252, 251, 250, 249, 251, 253, 255, 255, 255, 255, 255, (0,31,171): 251, 247, 245, 245, 243, 244, 252, 255, 243, 231, 249, (0,31,182): 255, 255, 246, 238, 231, 220, 199, 170, 143, 126, 153, (0,31,193): 171, 190, 197, 198, 200, 199, 195, 203, 204, 209, 215, (0,31,204): 221, 230, 232, 237, 239, 242, 244, 240, 238, 237, 234, (0,31,215): 228, 209, 193, 171, 145, 122, 108, 98, 96, 100, 100, (0,31,226): 100, (0,32,0): 50, 51, 52, 54, 56, 57, 57, 57, 59, 60, 61, 63, 65, 67, (0,32,14): 69, 69, 72, 72, 72, 74, 75, 76, 77, 78, 77, 74, 71, 74, (0,32,28): 78, 78, 71, 68, 78, 76, 74, 75, 77, 76, 70, 66, 69, 67, (0,32,42): 64, 63, 64, 63, 60, 60, 67, 66, 65, 62, 63, 62, 63, 64, (0,32,56): 66, 68, 71, 74, 76, 79, 79, 76, 70, 69, 72, 74, 75, 77, (0,32,70): 75, 72, 67, 55, 55, 62, 62, 58, 67, 101, 189, 183, 166, (0,32,83): 164, 167, 164, 163, 168, 162, 165, 169, 171, 172, 172, (0,32,94): 174, 170, 164, 161, 162, 166, 170, 172, 172, 172, 169, (0,32,105): 171, 173, 179, 189, 196, 192, 184, 199, 203, 207, 213, (0,32,116): 219, 225, 231, 237, 240, 242, 242, 239, 234, 227, 221, (0,32,127): 218, 219, 212, 207, 206, 197, 190, 194, 207, 200, 207, (0,32,138): 225, 238, 240, 237, 243, 248, 235, 225, 214, 201, 187, (0,32,149): 179, 177, 180, 202, 212, 222, 226, 235, 248, 254, 249, (0,32,160): 253, 250, 253, 255, 253, 250, 254, 255, 255, 255, 249, (0,32,171): 245, 244, 248, 253, 255, 255, 255, 249, 239, 229, 229, (0,32,182): 247, 255, 255, 240, 245, 232, 198, 194, 140, 145, 171, (0,32,193): 189, 212, 222, 221, 220, 222, 226, 231, 235, 241, 244, (0,32,204): 245, 245, 243, 244, 248, 248, 248, 245, 242, 237, 232, (0,32,215): 229, 214, 205, 187, 163, 139, 121, 114, 112, 123, 119, (0,32,226): 118, (0,33,0): 48, 49, 51, 53, 54, 55, 56, 56, 58, 59, 61, 63, 65, 67, (0,33,14): 68, 69, 72, 72, 72, 74, 75, 76, 77, 78, 75, 75, 75, 80, (0,33,28): 87, 89, 86, 82, 79, 77, 72, 70, 71, 72, 70, 66, 68, 65, (0,33,42): 63, 63, 64, 64, 61, 59, 61, 61, 61, 60, 61, 62, 61, 62, (0,33,56): 66, 68, 71, 74, 77, 79, 80, 76, 65, 63, 69, 72, 74, 74, (0,33,70): 70, 67, 65, 60, 61, 69, 74, 80, 100, 133, 176, 171, 160, (0,33,83): 161, 163, 158, 158, 163, 161, 167, 174, 179, 182, 183, (0,33,94): 184, 181, 170, 165, 164, 165, 168, 171, 171, 171, 174, (0,33,105): 171, 177, 191, 198, 193, 188, 192, 203, 207, 208, 209, (0,33,116): 212, 216, 224, 231, 238, 244, 244, 241, 234, 225, 215, (0,33,127): 213, 222, 217, 213, 212, 204, 193, 196, 207, 209, 218, (0,33,138): 233, 243, 244, 240, 245, 248, 229, 218, 210, 197, 183, (0,33,149): 174, 170, 171, 182, 198, 212, 220, 227, 239, 250, 254, (0,33,160): 248, 247, 250, 255, 253, 249, 252, 255, 255, 255, 252, (0,33,171): 249, 249, 252, 254, 255, 255, 255, 244, 242, 243, 246, (0,33,182): 247, 247, 250, 248, 238, 220, 203, 182, 115, 150, 180, (0,33,193): 206, 229, 239, 235, 233, 236, 237, 246, 251, 255, 255, (0,33,204): 255, 255, 254, 252, 253, 252, 251, 249, 247, 243, 240, (0,33,215): 238, 230, 220, 202, 179, 158, 142, 137, 136, 142, 137, (0,33,226): 134, (0,34,0): 47, 48, 49, 50, 52, 53, 55, 55, 58, 58, 60, 62, 64, 66, (0,34,14): 67, 68, 73, 73, 74, 76, 77, 78, 78, 79, 75, 78, 84, 95, (0,34,28): 105, 109, 108, 107, 96, 89, 79, 72, 72, 71, 69, 64, 67, (0,34,41): 63, 60, 60, 61, 62, 62, 61, 56, 57, 59, 60, 61, 62, 63, (0,34,55): 64, 69, 71, 73, 76, 79, 80, 80, 76, 60, 58, 62, 65, 66, (0,34,69): 67, 63, 60, 63, 68, 75, 82, 92, 111, 139, 164, 165, 162, (0,34,82): 159, 164, 165, 158, 158, 162, 164, 170, 177, 182, 185, (0,34,93): 187, 190, 190, 178, 172, 169, 169, 171, 173, 173, 173, (0,34,104): 178, 176, 185, 203, 203, 188, 186, 201, 208, 212, 212, (0,34,115): 214, 216, 220, 227, 232, 240, 244, 244, 240, 231, 221, (0,34,126): 212, 210, 221, 220, 218, 218, 211, 200, 197, 203, 201, (0,34,137): 205, 217, 229, 234, 233, 236, 235, 222, 213, 205, 194, (0,34,148): 182, 174, 171, 172, 172, 192, 212, 221, 224, 232, 247, (0,34,159): 255, 244, 244, 249, 253, 254, 250, 251, 254, 255, 255, (0,34,170): 255, 255, 255, 255, 255, 255, 255, 255, 254, 250, 252, (0,34,181): 255, 250, 236, 248, 254, 218, 203, 218, 187, 103, 151, (0,34,192): 178, 215, 245, 253, 250, 250, 249, 244, 251, 255, 255, (0,34,203): 255, 255, 255, 255, 255, 255, 255, 255, 255, 254, 252, (0,34,214): 250, 248, 240, 229, 211, 190, 173, 162, 157, 157, 163, (0,34,225): 157, 153, (0,35,0): 47, 47, 48, 49, 50, 51, 53, 54, 56, 57, 59, 61, 63, 65, (0,35,14): 66, 67, 72, 74, 75, 77, 80, 79, 81, 79, 76, 81, 94, 109, (0,35,28): 122, 129, 128, 128, 123, 114, 101, 89, 84, 77, 71, 66, (0,35,40): 68, 64, 60, 59, 59, 60, 61, 59, 58, 57, 59, 62, 63, 64, (0,35,54): 63, 65, 70, 72, 75, 77, 79, 79, 80, 76, 66, 63, 64, 65, (0,35,68): 65, 64, 62, 60, 61, 70, 80, 88, 107, 135, 161, 174, 167, (0,35,81): 165, 165, 170, 168, 160, 161, 164, 165, 171, 179, 185, (0,35,92): 189, 193, 197, 196, 189, 182, 178, 174, 175, 176, 178, (0,35,103): 179, 182, 185, 196, 203, 200, 190, 192, 205, 214, 216, (0,35,114): 218, 219, 222, 225, 230, 236, 243, 244, 244, 239, 228, (0,35,125): 219, 210, 208, 215, 218, 218, 220, 214, 208, 205, 210, (0,35,136): 196, 197, 202, 216, 226, 229, 222, 214, 211, 206, 199, (0,35,147): 190, 181, 176, 175, 177, 172, 189, 209, 217, 221, 229, (0,35,158): 243, 253, 240, 240, 246, 254, 254, 252, 250, 252, 255, (0,35,169): 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 252, (0,35,180): 246, 252, 252, 243, 239, 236, 206, 220, 251, 211, 104, (0,35,191): 113, 166, 210, 247, 255, 255, 255, 255, 249, 250, 252, (0,35,202): 255, 255, 255, 255, 254, 255, 255, 255, 255, 255, 255, (0,35,213): 254, 254, 253, 246, 236, 218, 201, 186, 179, 177, 176, (0,35,224): 183, 175, 169, (0,36,0): 49, 49, 48, 48, 49, 50, 52, 53, 55, 56, 57, 59, 61, 63, (0,36,14): 65, 68, 73, 76, 78, 80, 82, 82, 83, 81, 79, 86, 102, 119, (0,36,28): 134, 141, 143, 143, 142, 135, 123, 112, 105, 95, 85, 78, (0,36,40): 75, 69, 63, 59, 57, 57, 56, 56, 54, 55, 56, 59, 62, 63, (0,36,54): 66, 67, 71, 74, 75, 76, 77, 77, 76, 76, 77, 76, 73, 67, (0,36,68): 63, 60, 56, 55, 57, 64, 72, 90, 119, 149, 167, 169, 170, (0,36,81): 170, 171, 172, 169, 165, 166, 171, 167, 173, 181, 188, (0,36,92): 193, 197, 202, 202, 197, 190, 186, 183, 183, 184, 186, (0,36,103): 186, 187, 199, 205, 197, 193, 198, 203, 207, 219, 223, (0,36,114): 225, 226, 227, 231, 236, 240, 245, 246, 242, 236, 226, (0,36,125): 217, 208, 207, 214, 217, 216, 216, 215, 212, 214, 216, (0,36,136): 214, 205, 201, 203, 214, 217, 210, 197, 197, 194, 192, (0,36,147): 186, 183, 180, 182, 185, 181, 191, 201, 210, 219, 227, (0,36,158): 237, 246, 236, 237, 242, 251, 255, 253, 250, 251, 251, (0,36,169): 251, 255, 255, 255, 255, 255, 255, 255, 255, 255, 251, (0,36,180): 245, 253, 254, 243, 231, 224, 226, 255, 255, 239, 140, (0,36,191): 108, 166, 206, 243, 255, 255, 255, 255, 251, 252, 253, (0,36,202): 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, (0,36,213): 255, 255, 255, 253, 243, 228, 214, 205, 201, 202, 202, (0,36,224): 201, 190, 182, (0,37,0): 54, 52, 51, 49, 49, 50, 51, 52, 54, 55, 56, 58, 60, 62, (0,37,14): 64, 66, 74, 77, 79, 82, 84, 84, 83, 82, 81, 90, 108, 127, (0,37,28): 140, 150, 153, 154, 153, 148, 140, 134, 129, 120, 110, (0,37,39): 102, 93, 86, 77, 68, 62, 59, 59, 55, 53, 52, 54, 56, 60, (0,37,53): 63, 67, 70, 71, 72, 73, 73, 73, 72, 72, 72, 76, 76, 71, (0,37,67): 64, 58, 53, 49, 47, 55, 55, 67, 93, 126, 149, 157, 158, (0,37,80): 167, 170, 170, 170, 169, 169, 172, 176, 171, 178, 185, (0,37,91): 191, 195, 200, 205, 207, 203, 198, 194, 193, 193, 194, (0,37,102): 194, 195, 197, 209, 208, 195, 195, 208, 214, 211, 224, (0,37,113): 228, 231, 232, 234, 237, 240, 243, 246, 245, 241, 236, (0,37,124): 225, 218, 209, 208, 216, 217, 214, 213, 213, 212, 212, (0,37,135): 214, 236, 225, 211, 204, 202, 204, 200, 192, 188, 188, (0,37,146): 188, 185, 183, 184, 188, 191, 193, 193, 197, 207, 215, (0,37,157): 221, 228, 235, 232, 234, 240, 249, 254, 252, 252, 252, (0,37,168): 248, 249, 253, 255, 255, 255, 255, 255, 254, 255, 252, (0,37,179): 250, 255, 255, 252, 233, 243, 231, 240, 255, 254, 236, (0,37,190): 194, 165, 179, 206, 240, 255, 255, 255, 255, 251, 253, (0,37,201): 252, 253, 255, 255, 255, 253, 255, 255, 255, 255, 255, (0,37,212): 255, 255, 254, 252, 249, 242, 231, 223, 219, 221, 224, (0,37,223): 223, 221, 207, 197, (0,38,0): 60, 59, 56, 53, 52, 52, 53, 54, 55, 56, 57, 59, 61, 63, (0,38,14): 65, 67, 74, 77, 80, 83, 87, 85, 85, 83, 83, 93, 110, 130, (0,38,28): 145, 154, 159, 162, 161, 158, 153, 149, 148, 144, 137, (0,38,39): 130, 122, 114, 102, 88, 80, 73, 70, 67, 63, 61, 59, 59, (0,38,52): 60, 63, 67, 69, 70, 70, 69, 69, 67, 66, 65, 65, 69, 71, (0,38,66): 71, 71, 70, 67, 63, 62, 67, 65, 75, 102, 128, 138, 140, (0,38,79): 146, 164, 169, 171, 172, 173, 175, 176, 177, 177, 182, (0,38,90): 189, 195, 200, 204, 210, 212, 207, 205, 203, 203, 204, (0,38,101): 205, 204, 203, 211, 213, 210, 204, 206, 216, 218, 215, (0,38,112): 228, 233, 236, 238, 240, 242, 244, 246, 247, 244, 240, (0,38,123): 233, 226, 217, 210, 207, 212, 213, 211, 209, 210, 211, (0,38,134): 210, 208, 227, 232, 231, 218, 204, 196, 191, 185, 185, (0,38,145): 185, 185, 185, 184, 186, 192, 195, 201, 198, 201, 209, (0,38,156): 213, 214, 216, 223, 230, 232, 237, 245, 252, 251, 251, (0,38,167): 251, 246, 247, 249, 253, 255, 255, 255, 255, 246, 242, (0,38,178): 244, 250, 255, 255, 247, 236, 246, 239, 227, 239, 218, (0,38,189): 223, 222, 210, 191, 199, 230, 255, 255, 255, 255, 254, (0,38,200): 251, 249, 248, 250, 250, 249, 250, 252, 255, 255, 255, (0,38,211): 255, 255, 254, 252, 249, 240, 233, 228, 226, 230, 235, (0,38,222): 241, 241, 236, 220, 208, (0,39,0): 64, 61, 58, 55, 53, 53, 53, 54, 55, 55, 57, 59, 61, 63, (0,39,14): 64, 66, 74, 77, 82, 86, 87, 88, 87, 84, 83, 94, 112, 130, (0,39,28): 145, 156, 163, 167, 170, 166, 161, 160, 159, 157, 153, (0,39,39): 149, 146, 137, 121, 106, 96, 88, 82, 79, 78, 75, 70, 64, (0,39,52): 63, 63, 64, 65, 67, 67, 66, 66, 63, 62, 60, 59, 65, 71, (0,39,66): 80, 89, 95, 99, 99, 101, 102, 95, 106, 130, 146, 143, (0,39,78): 142, 150, 167, 174, 174, 175, 176, 180, 178, 176, 181, (0,39,89): 188, 194, 200, 205, 209, 213, 216, 210, 208, 208, 209, (0,39,100): 212, 212, 211, 211, 222, 213, 209, 214, 222, 222, 218, (0,39,111): 220, 231, 235, 239, 241, 244, 247, 247, 247, 247, 244, (0,39,122): 238, 233, 225, 218, 212, 207, 206, 207, 206, 207, 208, (0,39,133): 210, 209, 206, 203, 227, 243, 235, 213, 196, 186, 181, (0,39,144): 184, 184, 185, 185, 186, 189, 192, 196, 202, 202, 206, (0,39,155): 213, 211, 206, 205, 214, 227, 230, 232, 242, 248, 249, (0,39,166): 247, 250, 244, 245, 248, 251, 255, 255, 255, 255, 239, (0,39,177): 239, 249, 253, 249, 242, 245, 253, 251, 255, 235, 243, (0,39,188): 238, 246, 237, 223, 190, 188, 216, 249, 255, 255, 254, (0,39,199): 255, 252, 251, 248, 249, 249, 250, 252, 253, 253, 255, (0,39,210): 255, 255, 255, 251, 247, 243, 235, 232, 228, 232, 240, (0,39,221): 249, 255, 254, 244, 227, 214, (0,40,0): 66, 65, 64, 62, 60, 58, 56, 55, 54, 54, 55, 56, 59, 62, (0,40,14): 65, 69, 73, 77, 82, 85, 87, 88, 90, 91, 84, 88, 103, 124, (0,40,28): 141, 151, 158, 165, 170, 171, 172, 172, 170, 170, 168, (0,40,39): 169, 159, 153, 141, 129, 116, 104, 93, 88, 88, 89, 86, (0,40,51): 77, 67, 63, 63, 66, 62, 64, 66, 63, 60, 58, 62, 65, 70, (0,40,65): 85, 101, 108, 119, 131, 132, 128, 137, 144, 157, 164, (0,40,76): 162, 154, 151, 158, 167, 172, 174, 177, 179, 180, 182, (0,40,87): 185, 186, 190, 196, 203, 209, 214, 218, 218, 215, 216, (0,40,98): 217, 216, 216, 216, 218, 221, 230, 224, 218, 227, 254, (0,40,109): 255, 255, 231, 229, 237, 241, 244, 244, 245, 248, 248, (0,40,120): 247, 243, 237, 227, 218, 212, 212, 211, 204, 202, 205, (0,40,131): 207, 210, 210, 210, 209, 218, 207, 220, 244, 229, 203, (0,40,142): 197, 183, 183, 182, 185, 186, 189, 191, 196, 198, 199, (0,40,153): 204, 217, 223, 212, 195, 192, 207, 222, 226, 230, 239, (0,40,164): 241, 239, 237, 241, 249, 248, 247, 247, 252, 255, 255, (0,40,175): 253, 245, 239, 243, 251, 255, 255, 254, 252, 255, 247, (0,40,186): 253, 252, 234, 235, 251, 233, 198, 173, 203, 232, 249, (0,40,197): 255, 254, 252, 246, 247, 247, 246, 248, 253, 253, 251, (0,40,208): 255, 255, 255, 253, 255, 255, 246, 231, 228, 223, 225, (0,40,219): 241, 252, 253, 255, 255, 249, 231, 218, (0,41,0): 67, 66, 65, 63, 61, 59, 58, 57, 55, 55, 55, 56, 58, 61, (0,41,14): 64, 68, 72, 76, 81, 84, 86, 87, 89, 90, 85, 87, 101, 121, (0,41,28): 138, 148, 155, 163, 171, 172, 174, 175, 176, 175, 175, (0,41,39): 175, 169, 162, 152, 140, 128, 117, 105, 99, 96, 96, 93, (0,41,51): 86, 77, 70, 66, 65, 60, 65, 70, 67, 65, 68, 79, 88, 102, (0,41,65): 116, 130, 138, 149, 160, 165, 164, 172, 180, 185, 181, (0,41,76): 173, 168, 168, 169, 167, 168, 171, 174, 176, 178, 181, (0,41,87): 184, 187, 194, 202, 211, 217, 222, 223, 223, 225, 223, (0,41,98): 223, 225, 229, 232, 231, 230, 229, 230, 228, 220, 213, (0,41,109): 216, 235, 255, 241, 238, 234, 238, 248, 255, 254, 246, (0,41,120): 250, 245, 239, 231, 222, 214, 212, 207, 203, 200, 202, (0,41,131): 205, 207, 208, 209, 208, 211, 207, 212, 229, 229, 219, (0,41,142): 205, 183, 188, 187, 189, 190, 190, 192, 194, 196, 200, (0,41,153): 203, 213, 220, 210, 195, 191, 204, 219, 223, 229, 235, (0,41,164): 237, 235, 233, 236, 247, 248, 249, 250, 252, 255, 255, (0,41,175): 254, 241, 245, 255, 255, 255, 253, 250, 249, 249, 242, (0,41,186): 249, 249, 236, 241, 247, 217, 182, 153, 185, 218, 239, (0,41,197): 254, 251, 253, 248, 247, 247, 245, 248, 253, 254, 252, (0,41,208): 253, 254, 252, 252, 255, 255, 245, 234, 229, 222, 223, (0,41,219): 239, 252, 255, 255, 255, 248, 232, 221, (0,42,0): 69, 69, 67, 65, 63, 61, 60, 59, 56, 56, 55, 56, 58, 61, (0,42,14): 63, 67, 71, 74, 78, 82, 84, 87, 89, 89, 87, 88, 98, 115, (0,42,28): 133, 144, 152, 160, 170, 173, 175, 177, 179, 180, 181, (0,42,39): 181, 175, 172, 163, 153, 142, 131, 120, 115, 107, 105, (0,42,50): 99, 93, 86, 78, 69, 64, 56, 65, 75, 76, 81, 90, 112, 130, (0,42,64): 152, 165, 175, 178, 184, 192, 194, 192, 193, 207, 207, (0,42,75): 195, 183, 180, 178, 173, 175, 176, 178, 180, 183, 187, (0,42,86): 192, 196, 196, 203, 211, 217, 223, 225, 224, 223, 220, (0,42,97): 217, 216, 222, 230, 236, 233, 228, 227, 219, 216, 219, (0,42,108): 212, 204, 214, 233, 245, 242, 239, 240, 246, 250, 252, (0,42,119): 248, 240, 236, 232, 227, 220, 216, 213, 209, 205, 203, (0,42,130): 205, 208, 210, 211, 212, 212, 209, 214, 213, 213, 229, (0,42,141): 237, 217, 194, 192, 191, 192, 191, 193, 192, 192, 192, (0,42,152): 198, 199, 207, 216, 210, 198, 192, 199, 214, 216, 221, (0,42,163): 228, 229, 226, 226, 229, 242, 246, 253, 254, 252, 250, (0,42,174): 251, 255, 248, 255, 255, 255, 255, 252, 254, 255, 250, (0,42,185): 247, 248, 242, 231, 234, 229, 197, 160, 126, 155, 195, (0,42,196): 223, 241, 244, 255, 249, 249, 247, 245, 248, 253, 255, (0,42,207): 252, 252, 252, 250, 251, 255, 255, 249, 239, 230, 220, (0,42,218): 221, 238, 253, 255, 255, 255, 248, 233, 224, (0,43,0): 73, 72, 70, 68, 66, 64, 63, 62, 58, 57, 57, 57, 58, 60, (0,43,14): 62, 64, 69, 73, 76, 79, 82, 85, 87, 87, 88, 88, 94, 112, (0,43,28): 128, 140, 149, 157, 168, 169, 173, 176, 177, 178, 180, (0,43,39): 180, 175, 171, 165, 159, 151, 140, 130, 125, 117, 112, (0,43,50): 102, 95, 89, 81, 71, 65, 61, 72, 84, 96, 110, 128, 150, (0,43,63): 170, 189, 201, 203, 201, 198, 199, 198, 196, 197, 216, (0,43,74): 223, 208, 195, 194, 186, 175, 173, 173, 174, 179, 182, (0,43,85): 188, 195, 200, 211, 215, 218, 220, 222, 222, 221, 219, (0,43,96): 211, 210, 211, 216, 225, 227, 225, 220, 220, 208, 205, (0,43,107): 217, 226, 220, 208, 203, 233, 243, 253, 252, 244, 241, (0,43,118): 245, 251, 241, 235, 228, 222, 218, 215, 214, 211, 211, (0,43,129): 210, 214, 216, 218, 219, 220, 220, 210, 230, 229, 206, (0,43,140): 223, 243, 223, 213, 200, 196, 195, 195, 194, 194, 193, (0,43,151): 190, 194, 194, 200, 207, 206, 198, 191, 193, 206, 209, (0,43,162): 213, 219, 221, 217, 218, 220, 235, 243, 252, 255, 250, (0,43,173): 245, 245, 253, 255, 255, 255, 255, 250, 252, 255, 255, (0,43,184): 255, 250, 244, 236, 224, 212, 200, 177, 141, 104, 130, (0,43,195): 172, 206, 229, 239, 255, 251, 249, 248, 245, 248, 255, (0,43,206): 255, 254, 251, 250, 249, 253, 255, 255, 253, 247, 235, (0,43,217): 223, 222, 237, 254, 255, 255, 255, 247, 234, 228, (0,44,0): 78, 77, 76, 74, 72, 70, 68, 67, 63, 62, 61, 61, 61, 62, (0,44,14): 64, 63, 67, 69, 75, 78, 81, 82, 86, 86, 90, 86, 91, 108, (0,44,28): 126, 138, 146, 154, 166, 169, 173, 175, 176, 176, 176, (0,44,39): 175, 171, 168, 164, 160, 154, 147, 138, 134, 131, 123, (0,44,50): 109, 100, 95, 89, 82, 78, 87, 95, 109, 129, 152, 172, (0,44,62): 188, 202, 214, 223, 222, 215, 208, 203, 198, 194, 211, (0,44,73): 225, 228, 215, 205, 203, 194, 182, 183, 184, 186, 189, (0,44,84): 195, 202, 208, 213, 217, 218, 219, 217, 217, 217, 218, (0,44,95): 215, 212, 215, 218, 221, 223, 222, 221, 220, 214, 217, (0,44,106): 215, 207, 205, 210, 213, 212, 216, 230, 248, 253, 249, (0,44,117): 245, 246, 247, 247, 237, 226, 218, 215, 215, 217, 217, (0,44,128): 227, 228, 226, 226, 224, 223, 220, 218, 209, 239, 248, (0,44,139): 211, 209, 230, 220, 230, 207, 202, 198, 197, 196, 196, (0,44,150): 195, 192, 190, 190, 195, 199, 199, 194, 190, 188, 201, (0,44,161): 202, 206, 213, 215, 213, 211, 215, 233, 240, 252, 255, (0,44,172): 252, 242, 243, 252, 255, 255, 254, 244, 243, 250, 253, (0,44,183): 249, 253, 245, 239, 236, 221, 192, 168, 156, 127, 89, (0,44,194): 110, 150, 190, 223, 238, 254, 254, 252, 249, 246, 249, (0,44,205): 255, 255, 254, 253, 250, 250, 254, 255, 255, 255, 255, (0,44,216): 242, 229, 225, 240, 255, 255, 255, 255, 246, 237, 232, (0,45,0): 81, 80, 79, 77, 75, 73, 71, 71, 66, 65, 64, 63, 63, 63, (0,45,14): 65, 64, 66, 69, 75, 77, 80, 82, 85, 85, 89, 85, 90, 105, (0,45,28): 124, 137, 147, 154, 166, 169, 172, 173, 174, 174, 173, (0,45,39): 173, 169, 167, 164, 162, 159, 154, 149, 146, 146, 137, (0,45,50): 124, 115, 111, 109, 105, 106, 121, 130, 142, 163, 187, (0,45,61): 205, 214, 218, 224, 228, 224, 217, 210, 204, 199, 198, (0,45,72): 227, 229, 224, 211, 206, 206, 200, 190, 195, 195, 197, (0,45,83): 201, 206, 209, 215, 218, 214, 213, 214, 213, 214, 216, (0,45,94): 219, 218, 219, 221, 224, 223, 221, 220, 220, 219, 210, (0,45,105): 221, 218, 205, 198, 206, 210, 205, 204, 212, 226, 243, (0,45,116): 255, 255, 254, 243, 234, 225, 216, 212, 215, 222, 228, (0,45,127): 233, 239, 240, 238, 232, 227, 220, 215, 209, 205, 231, (0,45,138): 255, 219, 200, 215, 211, 234, 217, 210, 203, 198, 198, (0,45,149): 198, 195, 193, 187, 187, 190, 192, 191, 189, 188, 187, (0,45,160): 195, 196, 200, 208, 211, 208, 210, 213, 233, 238, 251, (0,45,171): 255, 255, 245, 245, 254, 255, 255, 245, 238, 241, 247, (0,45,182): 240, 227, 243, 245, 241, 241, 238, 206, 169, 151, 117, (0,45,193): 82, 97, 132, 177, 221, 239, 253, 254, 252, 250, 248, (0,45,204): 252, 255, 255, 255, 255, 248, 250, 255, 255, 255, 255, (0,45,215): 255, 250, 238, 234, 245, 255, 255, 255, 255, 249, 242, (0,45,226): 238, (0,46,0): 83, 82, 81, 79, 77, 75, 74, 73, 69, 68, 66, 65, 64, 65, (0,46,14): 65, 64, 65, 67, 73, 77, 79, 82, 85, 85, 87, 82, 88, 106, (0,46,28): 125, 137, 146, 152, 164, 166, 171, 171, 172, 173, 172, (0,46,39): 172, 168, 166, 164, 163, 161, 160, 157, 155, 153, 146, (0,46,50): 139, 134, 131, 132, 131, 136, 143, 154, 169, 187, 207, (0,46,61): 224, 232, 232, 228, 222, 216, 210, 202, 194, 191, 195, (0,46,72): 226, 223, 217, 216, 218, 216, 210, 200, 192, 190, 191, (0,46,83): 192, 194, 195, 198, 198, 206, 208, 209, 212, 214, 217, (0,46,94): 221, 220, 222, 219, 220, 219, 219, 218, 216, 215, 213, (0,46,105): 211, 208, 207, 210, 209, 202, 192, 200, 202, 213, 231, (0,46,116): 250, 255, 255, 247, 234, 225, 217, 215, 220, 227, 233, (0,46,127): 240, 246, 248, 244, 237, 228, 222, 213, 207, 201, 209, (0,46,138): 250, 228, 200, 208, 203, 228, 228, 220, 209, 201, 198, (0,46,149): 197, 194, 191, 186, 188, 189, 188, 186, 186, 189, 190, (0,46,160): 188, 188, 192, 200, 204, 202, 204, 208, 232, 236, 248, (0,46,171): 255, 255, 247, 247, 253, 249, 244, 233, 227, 234, 242, (0,46,182): 234, 222, 246, 255, 247, 238, 249, 239, 196, 163, 106, (0,46,193): 73, 88, 117, 165, 220, 242, 249, 255, 255, 252, 249, (0,46,204): 252, 255, 255, 255, 254, 247, 247, 253, 255, 255, 255, (0,46,215): 255, 255, 246, 242, 251, 255, 254, 254, 255, 253, 248, (0,46,226): 246, (0,47,0): 86, 84, 83, 80, 79, 76, 76, 74, 72, 70, 69, 66, 66, 65, (0,47,14): 67, 65, 67, 68, 74, 77, 79, 81, 84, 85, 85, 81, 87, 106, (0,47,28): 126, 140, 147, 153, 159, 164, 166, 169, 169, 169, 169, (0,47,39): 169, 165, 163, 163, 162, 164, 165, 165, 163, 152, 150, (0,47,50): 148, 148, 149, 152, 158, 168, 164, 178, 193, 206, 218, (0,47,61): 228, 235, 235, 231, 223, 216, 209, 199, 191, 189, 193, (0,47,72): 225, 221, 221, 230, 236, 230, 219, 207, 205, 200, 201, (0,47,83): 199, 198, 195, 194, 194, 198, 203, 206, 211, 216, 217, (0,47,94): 219, 219, 228, 222, 218, 218, 223, 223, 219, 213, 216, (0,47,105): 206, 202, 208, 206, 199, 202, 212, 200, 206, 215, 222, (0,47,116): 230, 238, 246, 251, 255, 250, 242, 236, 234, 231, 229, (0,47,127): 230, 244, 248, 244, 239, 232, 224, 217, 211, 198, 192, (0,47,138): 244, 235, 207, 212, 203, 223, 234, 224, 211, 201, 198, (0,47,149): 198, 195, 190, 190, 193, 192, 187, 183, 184, 189, 190, (0,47,160): 181, 179, 184, 193, 197, 197, 200, 203, 229, 230, 241, (0,47,171): 254, 254, 243, 240, 246, 248, 241, 229, 223, 233, 249, (0,47,182): 247, 239, 253, 255, 245, 223, 246, 255, 211, 164, 96, (0,47,193): 69, 82, 107, 156, 220, 244, 246, 255, 255, 253, 251, (0,47,204): 252, 255, 255, 254, 250, 242, 242, 249, 253, 250, 254, (0,47,215): 255, 255, 252, 248, 254, 255, 253, 253, 255, 255, 252, (0,47,226): 251, (0,48,0): 88, 87, 87, 85, 84, 82, 82, 80, 77, 75, 75, 72, 72, 71, (0,48,14): 72, 70, 71, 71, 74, 78, 82, 85, 85, 86, 88, 85, 90, 107, (0,48,28): 123, 137, 145, 152, 166, 167, 165, 164, 162, 163, 164, (0,48,39): 164, 161, 161, 161, 164, 167, 172, 174, 171, 161, 156, (0,48,50): 149, 152, 166, 180, 180, 179, 186, 205, 219, 227, 228, (0,48,61): 227, 223, 223, 226, 221, 219, 200, 202, 202, 186, 219, (0,48,72): 230, 233, 235, 232, 230, 225, 219, 212, 207, 200, 202, (0,48,83): 209, 205, 191, 184, 189, 191, 195, 200, 203, 209, 212, (0,48,94): 219, 224, 231, 224, 219, 222, 230, 231, 225, 215, 209, (0,48,105): 206, 203, 201, 201, 203, 206, 207, 202, 207, 209, 210, (0,48,116): 210, 213, 215, 220, 224, 230, 235, 235, 233, 231, 232, (0,48,127): 237, 246, 246, 239, 236, 234, 227, 217, 208, 195, 196, (0,48,138): 231, 233, 203, 223, 197, 218, 225, 220, 212, 204, 200, (0,48,149): 198, 199, 200, 197, 194, 190, 188, 187, 186, 186, 183, (0,48,160): 180, 181, 185, 187, 187, 190, 192, 196, 239, 245, 234, (0,48,171): 244, 251, 236, 244, 255, 255, 251, 234, 226, 229, 237, (0,48,182): 243, 245, 255, 255, 241, 241, 214, 248, 189, 133, 97, (0,48,193): 74, 77, 115, 165, 205, 237, 255, 255, 255, 252, 251, (0,48,204): 253, 254, 255, 251, 239, 229, 231, 240, 248, 252, 253, (0,48,215): 255, 255, 255, 255, 255, 254, 252, 252, 251, 253, 255, (0,48,226): 255, (0,49,0): 89, 88, 88, 86, 85, 84, 83, 82, 78, 77, 76, 75, 74, 74, (0,49,14): 74, 73, 71, 72, 76, 79, 82, 83, 86, 84, 88, 85, 89, 107, (0,49,28): 123, 134, 141, 150, 161, 163, 161, 161, 160, 160, 162, (0,49,39): 161, 160, 160, 158, 161, 164, 166, 166, 163, 163, 160, (0,49,50): 160, 165, 177, 188, 189, 191, 204, 220, 230, 233, 230, (0,49,61): 225, 219, 218, 224, 218, 218, 203, 204, 202, 193, 229, (0,49,72): 230, 232, 234, 231, 226, 219, 213, 207, 212, 198, 197, (0,49,83): 204, 204, 193, 184, 183, 185, 191, 198, 203, 209, 216, (0,49,94): 225, 228, 229, 226, 225, 225, 228, 226, 221, 213, 211, (0,49,105): 205, 201, 200, 204, 206, 207, 208, 213, 214, 211, 207, (0,49,116): 201, 199, 203, 207, 216, 222, 227, 230, 230, 230, 230, (0,49,127): 232, 236, 237, 236, 232, 224, 219, 213, 210, 213, 187, (0,49,138): 214, 208, 217, 235, 218, 216, 231, 226, 220, 212, 205, (0,49,149): 201, 200, 199, 200, 196, 191, 189, 189, 186, 185, 182, (0,49,160): 178, 180, 183, 184, 186, 189, 193, 197, 235, 242, 231, (0,49,171): 240, 245, 232, 241, 254, 255, 255, 242, 228, 228, 239, (0,49,182): 253, 255, 253, 255, 235, 237, 215, 242, 178, 118, 94, (0,49,193): 78, 83, 117, 169, 214, 246, 255, 255, 255, 253, 251, (0,49,204): 250, 251, 250, 246, 237, 227, 227, 235, 244, 249, 252, (0,49,215): 255, 255, 255, 255, 254, 249, 248, 250, 250, 249, 251, (0,49,226): 254, (0,50,0): 92, 91, 91, 89, 88, 87, 86, 86, 83, 82, 81, 79, 79, 79, (0,50,14): 79, 77, 74, 74, 77, 80, 83, 86, 86, 84, 87, 86, 90, 107, (0,50,28): 121, 133, 139, 146, 153, 155, 155, 155, 157, 158, 160, (0,50,39): 160, 160, 157, 155, 156, 156, 157, 156, 155, 153, 158, (0,50,50): 168, 178, 191, 198, 197, 194, 209, 218, 223, 225, 225, (0,50,61): 225, 223, 223, 224, 215, 213, 207, 202, 195, 196, 233, (0,50,72): 224, 228, 232, 227, 220, 214, 209, 204, 213, 196, 190, (0,50,83): 197, 205, 198, 187, 183, 186, 191, 199, 207, 215, 222, (0,50,94): 230, 233, 217, 218, 221, 223, 223, 222, 220, 217, 198, (0,50,105): 192, 187, 186, 191, 191, 191, 193, 227, 229, 222, 213, (0,50,116): 204, 200, 200, 204, 210, 213, 215, 217, 219, 220, 219, (0,50,127): 220, 219, 223, 224, 220, 213, 208, 208, 209, 212, 194, (0,50,138): 231, 210, 218, 222, 232, 240, 237, 231, 227, 221, 214, (0,50,149): 207, 202, 197, 196, 192, 188, 185, 185, 183, 181, 178, (0,50,160): 176, 177, 180, 181, 183, 185, 190, 195, 220, 234, 228, (0,50,171): 240, 246, 231, 236, 245, 228, 240, 240, 235, 235, 242, (0,50,182): 254, 255, 253, 252, 231, 232, 217, 237, 170, 108, 89, (0,50,193): 79, 87, 119, 173, 225, 255, 255, 255, 255, 252, 250, (0,50,204): 251, 251, 249, 244, 233, 222, 220, 225, 233, 239, 245, (0,50,215): 252, 253, 255, 255, 249, 241, 239, 243, 247, 251, 252, (0,50,226): 255, (0,51,0): 92, 92, 91, 90, 89, 89, 88, 88, 85, 84, 83, 82, 82, 82, (0,51,14): 82, 80, 76, 75, 79, 82, 84, 87, 87, 87, 86, 85, 92, 106, (0,51,28): 121, 130, 138, 143, 148, 149, 149, 150, 152, 152, 155, (0,51,39): 155, 156, 152, 150, 149, 147, 147, 146, 145, 136, 148, (0,51,50): 168, 184, 199, 207, 210, 208, 217, 218, 218, 220, 222, (0,51,61): 225, 229, 229, 227, 214, 209, 209, 198, 186, 197, 234, (0,51,72): 221, 227, 230, 227, 219, 211, 208, 206, 207, 194, 187, (0,51,83): 192, 199, 196, 189, 184, 189, 194, 203, 210, 217, 224, (0,51,94): 232, 235, 217, 218, 222, 224, 225, 225, 220, 217, 202, (0,51,105): 199, 195, 192, 192, 195, 198, 208, 236, 237, 228, 217, (0,51,116): 207, 199, 200, 201, 207, 208, 207, 209, 212, 214, 212, (0,51,127): 209, 211, 211, 211, 208, 205, 202, 204, 204, 204, 207, (0,51,138): 244, 224, 210, 210, 230, 251, 255, 255, 255, 246, 231, (0,51,149): 213, 199, 189, 196, 192, 187, 184, 183, 181, 178, 176, (0,51,160): 175, 173, 176, 176, 177, 182, 188, 192, 203, 223, 226, (0,51,171): 244, 248, 230, 228, 232, 218, 234, 239, 236, 240, 249, (0,51,182): 255, 255, 254, 248, 229, 229, 218, 230, 168, 106, 85, (0,51,193): 83, 92, 121, 176, 231, 255, 255, 255, 252, 251, 250, (0,51,204): 249, 246, 242, 234, 219, 208, 205, 209, 217, 223, 233, (0,51,215): 242, 244, 249, 251, 244, 234, 231, 235, 240, 251, 251, (0,51,226): 254, (0,52,0): 92, 92, 91, 91, 90, 89, 89, 89, 87, 86, 85, 85, 84, 85, (0,52,14): 85, 83, 79, 79, 81, 83, 85, 88, 89, 88, 85, 85, 92, 104, (0,52,28): 117, 124, 133, 140, 141, 142, 142, 144, 146, 147, 148, (0,52,39): 147, 149, 146, 142, 137, 133, 129, 126, 129, 128, 145, (0,52,50): 170, 193, 214, 225, 229, 230, 226, 220, 216, 216, 220, (0,52,61): 227, 236, 237, 230, 215, 208, 208, 191, 179, 200, 224, (0,52,72): 220, 225, 227, 225, 218, 212, 209, 207, 199, 192, 189, (0,52,83): 189, 191, 191, 189, 189, 194, 199, 207, 213, 219, 224, (0,52,94): 231, 235, 231, 230, 229, 232, 233, 231, 222, 214, 205, (0,52,105): 205, 201, 197, 194, 196, 206, 222, 235, 237, 228, 216, (0,52,116): 204, 198, 196, 197, 203, 203, 204, 206, 212, 212, 211, (0,52,127): 208, 208, 202, 197, 196, 198, 199, 199, 199, 205, 205, (0,52,138): 216, 225, 212, 228, 224, 223, 215, 214, 222, 229, 234, (0,52,149): 234, 232, 228, 203, 196, 190, 184, 183, 180, 176, 174, (0,52,160): 172, 172, 172, 172, 173, 177, 183, 186, 198, 222, 226, (0,52,171): 240, 244, 229, 229, 232, 251, 254, 241, 229, 234, 252, (0,52,182): 255, 255, 254, 245, 232, 228, 221, 226, 172, 115, 93, (0,52,193): 94, 104, 129, 179, 232, 255, 255, 254, 251, 249, 247, (0,52,204): 244, 237, 227, 218, 201, 191, 187, 192, 200, 207, 217, (0,52,215): 227, 235, 243, 247, 242, 234, 231, 233, 238, 241, 240, (0,52,226): 242, (0,53,0): 91, 91, 91, 90, 90, 89, 89, 89, 88, 88, 87, 86, 86, 87, (0,53,14): 87, 88, 81, 81, 83, 85, 88, 88, 89, 88, 87, 85, 89, 101, (0,53,28): 110, 117, 126, 131, 133, 132, 135, 137, 139, 140, 141, (0,53,39): 141, 144, 139, 131, 126, 120, 114, 108, 111, 131, 148, (0,53,50): 175, 203, 227, 239, 243, 244, 235, 225, 217, 215, 222, (0,53,61): 229, 240, 240, 228, 215, 204, 206, 186, 176, 201, 213, (0,53,72): 216, 218, 219, 218, 216, 212, 205, 203, 192, 193, 192, (0,53,83): 190, 188, 187, 189, 192, 196, 202, 210, 215, 220, 225, (0,53,94): 228, 232, 234, 234, 234, 240, 246, 247, 240, 230, 219, (0,53,105): 216, 215, 210, 209, 211, 220, 235, 237, 238, 230, 220, (0,53,116): 209, 202, 200, 201, 198, 201, 206, 211, 218, 221, 221, (0,53,127): 216, 211, 201, 194, 192, 195, 198, 197, 197, 204, 205, (0,53,138): 205, 230, 219, 239, 227, 218, 213, 210, 213, 214, 210, (0,53,149): 204, 198, 192, 206, 198, 188, 181, 177, 175, 171, 170, (0,53,160): 171, 171, 172, 172, 171, 173, 178, 181, 201, 224, 224, (0,53,171): 234, 238, 230, 240, 246, 255, 255, 241, 231, 240, 255, (0,53,182): 255, 255, 253, 244, 237, 229, 222, 220, 180, 133, 113, (0,53,193): 111, 121, 141, 182, 223, 249, 252, 255, 250, 244, 238, (0,53,204): 230, 220, 208, 197, 178, 172, 172, 178, 185, 190, 201, (0,53,215): 210, 224, 232, 240, 241, 236, 233, 232, 234, 232, 230, (0,53,226): 229, (0,54,0): 91, 91, 91, 91, 90, 90, 90, 90, 89, 89, 88, 88, 88, 89, (0,54,14): 89, 89, 83, 84, 85, 88, 89, 90, 90, 89, 89, 85, 88, 95, (0,54,28): 100, 106, 115, 121, 122, 122, 127, 130, 133, 135, 136, (0,54,39): 136, 136, 131, 125, 121, 115, 110, 105, 111, 132, 151, (0,54,50): 179, 210, 236, 246, 251, 252, 240, 231, 222, 219, 224, (0,54,61): 231, 240, 239, 221, 212, 200, 201, 180, 177, 206, 201, (0,54,72): 206, 208, 207, 208, 211, 207, 200, 195, 190, 195, 194, (0,54,83): 191, 189, 190, 191, 193, 196, 203, 211, 217, 221, 225, (0,54,94): 228, 234, 235, 241, 248, 253, 255, 255, 255, 253, 250, (0,54,105): 246, 243, 243, 246, 247, 252, 254, 246, 244, 237, 227, (0,54,116): 217, 208, 206, 206, 203, 209, 217, 223, 226, 228, 229, (0,54,127): 223, 217, 207, 201, 196, 194, 194, 198, 200, 201, 211, (0,54,138): 225, 235, 222, 224, 235, 232, 216, 213, 215, 215, 213, (0,54,149): 210, 205, 201, 214, 204, 191, 180, 176, 172, 171, 169, (0,54,160): 172, 173, 174, 173, 171, 171, 173, 177, 192, 218, 222, (0,54,171): 232, 240, 234, 245, 253, 241, 248, 245, 237, 248, 255, (0,54,182): 255, 255, 252, 242, 241, 231, 222, 217, 189, 152, 129, (0,54,193): 123, 130, 145, 172, 203, 224, 233, 236, 227, 215, 205, (0,54,204): 196, 187, 180, 172, 156, 152, 156, 163, 170, 175, 184, (0,54,215): 194, 206, 216, 228, 235, 236, 233, 229, 226, 223, 218, (0,54,226): 213, (0,55,0): 91, 90, 90, 90, 90, 90, 89, 89, 90, 89, 89, 88, 88, 89, (0,55,14): 90, 90, 86, 86, 88, 89, 90, 90, 90, 90, 91, 87, 87, 92, (0,55,28): 94, 98, 106, 113, 116, 116, 120, 125, 129, 132, 133, 135, (0,55,40): 130, 127, 125, 122, 122, 120, 116, 124, 133, 152, 178, (0,55,51): 211, 237, 246, 252, 253, 244, 235, 228, 225, 227, 230, (0,55,62): 237, 234, 214, 209, 197, 195, 178, 179, 209, 195, 201, (0,55,73): 199, 197, 200, 205, 204, 195, 188, 192, 196, 195, 193, (0,55,84): 194, 195, 194, 195, 196, 202, 212, 217, 221, 225, 229, (0,55,95): 234, 245, 254, 255, 255, 255, 255, 255, 254, 254, 246, (0,55,106): 242, 247, 255, 255, 252, 244, 246, 243, 237, 230, 218, (0,55,117): 212, 209, 208, 212, 221, 230, 235, 235, 232, 232, 226, (0,55,128): 223, 215, 211, 203, 196, 194, 200, 207, 206, 212, 230, (0,55,139): 223, 224, 210, 236, 229, 213, 210, 210, 207, 206, 202, (0,55,150): 200, 197, 227, 216, 202, 190, 183, 181, 181, 181, 175, (0,55,161): 177, 177, 177, 175, 173, 173, 174, 177, 208, 220, 236, (0,55,172): 244, 238, 245, 248, 255, 255, 250, 235, 241, 255, 255, (0,55,183): 255, 250, 243, 245, 232, 220, 215, 196, 164, 134, 126, (0,55,194): 129, 141, 161, 180, 200, 213, 202, 191, 176, 166, 157, (0,55,205): 154, 150, 145, 140, 138, 143, 152, 158, 162, 170, 179, (0,55,216): 190, 201, 216, 227, 232, 230, 223, 218, 211, 206, 200, (0,56,0): 90, 90, 90, 90, 90, 90, 90, 90, 88, 88, 88, 89, 89, 90, (0,56,14): 90, 90, 90, 90, 90, 91, 93, 94, 92, 92, 89, 87, 87, 88, (0,56,28): 90, 93, 96, 96, 103, 106, 112, 114, 120, 129, 137, 138, (0,56,40): 137, 140, 138, 135, 139, 145, 139, 137, 143, 161, 179, (0,56,51): 202, 220, 231, 243, 254, 246, 241, 236, 233, 233, 233, (0,56,62): 233, 226, 207, 197, 190, 183, 176, 178, 192, 210, 199, (0,56,73): 212, 205, 204, 214, 199, 181, 187, 186, 193, 195, 194, (0,56,84): 192, 194, 197, 199, 203, 208, 214, 216, 218, 224, 236, (0,56,95): 245, 246, 247, 248, 249, 250, 252, 252, 252, 251, 247, (0,56,106): 248, 255, 255, 255, 255, 255, 254, 238, 229, 227, 221, (0,56,117): 211, 209, 218, 226, 232, 238, 242, 242, 239, 238, 229, (0,56,128): 220, 209, 210, 236, 187, 196, 223, 200, 205, 222, 232, (0,56,139): 226, 216, 218, 226, 229, 223, 213, 207, 203, 204, 205, (0,56,150): 203, 197, 236, 224, 200, 185, 186, 184, 177, 180, 176, (0,56,161): 176, 174, 175, 176, 178, 180, 179, 176, 186, 214, 236, (0,56,172): 241, 246, 251, 245, 255, 253, 242, 244, 253, 255, 255, (0,56,183): 255, 255, 241, 245, 239, 217, 208, 190, 158, 134, 125, (0,56,194): 126, 135, 148, 158, 160, 156, 146, 138, 128, 122, 121, (0,56,205): 124, 129, 131, 132, 134, 140, 147, 149, 152, 157, 162, (0,56,216): 167, 175, 189, 206, 220, 224, 218, 211, 203, 192, 184, (0,57,0): 90, 90, 90, 90, 90, 90, 90, 90, 88, 88, 88, 89, 89, 90, (0,57,14): 90, 90, 90, 90, 92, 93, 93, 94, 92, 92, 93, 91, 91, 89, (0,57,28): 90, 92, 95, 94, 97, 101, 107, 110, 117, 127, 135, 139, (0,57,40): 143, 145, 143, 143, 154, 165, 158, 154, 156, 166, 175, (0,57,51): 192, 208, 218, 231, 243, 245, 245, 244, 241, 236, 231, (0,57,62): 225, 216, 199, 189, 182, 177, 171, 174, 189, 208, 218, (0,57,73): 220, 212, 208, 213, 205, 187, 178, 189, 194, 196, 196, (0,57,84): 196, 198, 199, 202, 207, 207, 212, 218, 227, 234, 239, (0,57,95): 240, 231, 231, 235, 240, 246, 250, 254, 255, 251, 248, (0,57,106): 250, 255, 255, 255, 255, 252, 244, 245, 244, 228, 218, (0,57,117): 219, 221, 218, 241, 244, 247, 246, 246, 248, 249, 244, (0,57,128): 219, 218, 215, 228, 228, 206, 209, 193, 212, 225, 232, (0,57,139): 224, 216, 217, 221, 221, 212, 207, 201, 199, 200, 202, (0,57,150): 202, 198, 237, 225, 201, 186, 194, 195, 191, 194, 191, (0,57,161): 190, 189, 187, 184, 181, 180, 176, 180, 187, 211, 232, (0,57,172): 239, 246, 254, 249, 255, 253, 244, 245, 254, 255, 255, (0,57,183): 255, 255, 242, 246, 242, 221, 208, 183, 149, 127, 117, (0,57,194): 120, 127, 138, 141, 139, 133, 112, 108, 104, 103, 107, (0,57,205): 113, 121, 124, 132, 133, 139, 142, 146, 148, 151, 155, (0,57,216): 155, 161, 172, 188, 205, 213, 212, 206, 197, 186, 177, (0,58,0): 92, 92, 92, 92, 92, 92, 92, 92, 90, 90, 90, 91, 91, 92, (0,58,14): 92, 92, 92, 92, 93, 93, 93, 94, 94, 92, 95, 93, 92, 91, (0,58,28): 90, 91, 93, 92, 93, 98, 101, 105, 113, 125, 132, 137, (0,58,40): 152, 155, 156, 160, 177, 189, 183, 177, 181, 186, 182, (0,58,51): 189, 200, 210, 219, 228, 241, 247, 249, 247, 239, 229, (0,58,62): 215, 205, 192, 184, 177, 173, 169, 173, 187, 207, 217, (0,58,73): 215, 217, 218, 220, 221, 206, 181, 190, 193, 196, 198, (0,58,84): 201, 200, 201, 204, 207, 207, 211, 223, 238, 244, 241, (0,58,95): 233, 224, 221, 226, 230, 234, 238, 239, 242, 242, 239, (0,58,106): 240, 247, 253, 252, 251, 248, 244, 241, 242, 239, 238, (0,58,117): 238, 233, 229, 240, 243, 246, 246, 245, 245, 243, 237, (0,58,128): 220, 226, 218, 223, 255, 229, 209, 206, 217, 223, 224, (0,58,139): 219, 213, 214, 214, 210, 200, 195, 194, 196, 197, 198, (0,58,150): 198, 197, 235, 225, 201, 191, 203, 209, 206, 210, 216, (0,58,161): 215, 212, 207, 201, 195, 188, 182, 185, 188, 207, 227, (0,58,172): 237, 248, 255, 253, 255, 252, 245, 246, 254, 255, 255, (0,58,183): 255, 255, 242, 245, 242, 224, 203, 167, 130, 110, 104, (0,58,194): 109, 116, 123, 125, 120, 113, 96, 95, 97, 101, 110, 117, (0,58,206): 125, 128, 132, 135, 139, 142, 140, 143, 146, 148, 147, (0,58,217): 149, 154, 168, 184, 196, 200, 198, 183, 169, 159, (0,59,0): 91, 91, 91, 91, 91, 91, 91, 91, 90, 90, 90, 91, 91, 92, (0,59,14): 92, 92, 93, 93, 93, 94, 94, 94, 94, 94, 94, 94, 93, 91, (0,59,28): 92, 91, 92, 91, 94, 98, 100, 103, 111, 122, 132, 136, (0,59,40): 155, 166, 175, 184, 200, 211, 204, 198, 216, 217, 209, (0,59,51): 203, 201, 204, 211, 222, 238, 245, 251, 249, 240, 226, (0,59,62): 209, 197, 191, 182, 175, 171, 170, 174, 188, 206, 213, (0,59,73): 213, 224, 229, 225, 232, 223, 191, 193, 190, 192, 196, (0,59,84): 201, 202, 203, 206, 205, 210, 217, 229, 241, 245, 240, (0,59,95): 228, 222, 221, 224, 228, 231, 233, 236, 236, 232, 230, (0,59,106): 234, 240, 245, 246, 250, 251, 253, 228, 229, 255, 255, (0,59,117): 255, 242, 244, 232, 237, 241, 244, 241, 234, 225, 215, (0,59,128): 216, 218, 212, 229, 255, 245, 221, 229, 219, 218, 213, (0,59,139): 210, 209, 208, 205, 198, 190, 185, 187, 191, 192, 191, (0,59,150): 192, 197, 229, 220, 202, 199, 215, 222, 218, 223, 231, (0,59,161): 233, 230, 225, 217, 208, 200, 193, 187, 187, 203, 224, (0,59,172): 236, 250, 255, 255, 252, 250, 245, 247, 255, 255, 255, (0,59,183): 254, 250, 240, 241, 240, 225, 195, 146, 111, 95, 92, (0,59,194): 100, 108, 116, 118, 114, 111, 109, 108, 111, 117, 123, (0,59,205): 129, 132, 135, 134, 136, 139, 140, 138, 138, 139, 144, (0,59,216): 145, 143, 144, 154, 170, 187, 197, 198, 177, 161, 151, (0,60,0): 91, 91, 91, 91, 91, 91, 91, 91, 90, 90, 90, 91, 91, 92, (0,60,14): 92, 92, 93, 94, 94, 94, 94, 95, 94, 94, 94, 94, 94, 92, (0,60,28): 94, 93, 94, 94, 98, 99, 99, 101, 108, 120, 127, 131, 148, (0,60,41): 172, 194, 206, 218, 223, 218, 216, 236, 242, 233, 219, (0,60,52): 205, 202, 210, 219, 234, 242, 248, 246, 237, 222, 205, (0,60,63): 192, 189, 181, 174, 171, 170, 174, 187, 204, 225, 226, (0,60,74): 238, 235, 222, 227, 230, 213, 200, 192, 188, 193, 200, (0,60,85): 201, 203, 208, 206, 215, 224, 233, 237, 237, 235, 229, (0,60,96): 223, 223, 229, 235, 241, 244, 246, 244, 235, 232, 235, (0,60,107): 240, 242, 245, 252, 255, 245, 229, 238, 255, 255, 255, (0,60,118): 245, 247, 238, 237, 237, 233, 227, 219, 206, 199, 203, (0,60,129): 199, 208, 242, 246, 242, 219, 226, 220, 212, 206, 205, (0,60,140): 207, 207, 202, 194, 185, 179, 181, 184, 185, 182, 188, (0,60,151): 198, 219, 217, 206, 208, 225, 231, 227, 231, 235, 238, (0,60,162): 235, 231, 225, 216, 208, 200, 190, 186, 200, 220, 235, (0,60,173): 251, 255, 255, 247, 248, 245, 248, 254, 255, 255, 255, (0,60,184): 247, 241, 240, 238, 227, 188, 131, 98, 92, 91, 102, 110, (0,60,196): 116, 120, 121, 119, 121, 120, 122, 124, 129, 132, 133, (0,60,207): 134, 137, 139, 138, 138, 136, 135, 137, 139, 143, 140, (0,60,218): 141, 151, 170, 191, 203, 207, 188, 168, 156, (0,61,0): 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 91, 91, 92, (0,61,14): 92, 93, 94, 94, 94, 95, 94, 95, 94, 94, 93, 93, 94, 95, (0,61,28): 95, 96, 97, 98, 101, 101, 97, 98, 104, 116, 123, 125, (0,61,40): 143, 174, 203, 218, 227, 232, 230, 228, 242, 252, 244, (0,61,51): 227, 209, 203, 209, 217, 230, 235, 239, 239, 231, 218, (0,61,62): 201, 190, 186, 177, 169, 168, 170, 176, 188, 202, 232, (0,61,73): 233, 235, 229, 218, 222, 238, 244, 218, 201, 190, 194, (0,61,84): 199, 200, 203, 210, 209, 218, 230, 233, 234, 232, 234, (0,61,95): 235, 241, 243, 247, 250, 251, 253, 250, 247, 244, 241, (0,61,106): 242, 243, 242, 244, 254, 255, 230, 248, 255, 255, 252, (0,61,117): 250, 244, 233, 243, 234, 221, 210, 202, 194, 189, 188, (0,61,128): 196, 192, 217, 250, 221, 225, 207, 207, 224, 212, 202, (0,61,139): 202, 206, 205, 203, 196, 180, 173, 175, 179, 177, 175, (0,61,150): 186, 202, 214, 216, 212, 215, 231, 236, 232, 237, 242, (0,61,161): 244, 242, 239, 232, 226, 218, 210, 194, 186, 197, 215, (0,61,172): 231, 250, 255, 255, 248, 249, 246, 247, 252, 253, 255, (0,61,183): 255, 245, 244, 242, 239, 229, 182, 121, 94, 96, 97, 110, (0,61,195): 118, 123, 126, 129, 130, 128, 125, 124, 125, 128, 130, (0,61,206): 131, 133, 137, 139, 137, 136, 133, 133, 135, 137, 139, (0,61,217): 135, 140, 153, 175, 198, 213, 217, 194, 172, 155, (0,62,0): 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 91, 91, 92, (0,62,14): 92, 93, 94, 96, 94, 95, 94, 95, 94, 94, 94, 95, 96, 97, (0,62,28): 97, 97, 97, 100, 104, 103, 99, 98, 106, 118, 124, 128, (0,62,40): 143, 173, 205, 222, 237, 246, 246, 244, 248, 255, 251, (0,62,51): 235, 219, 214, 213, 215, 224, 227, 230, 228, 223, 212, (0,62,62): 199, 189, 184, 175, 168, 169, 173, 180, 193, 207, 223, (0,62,73): 229, 227, 226, 224, 219, 230, 252, 242, 217, 198, 198, (0,62,84): 200, 201, 205, 213, 213, 222, 230, 232, 233, 232, 238, (0,62,95): 245, 255, 255, 255, 255, 255, 255, 250, 244, 246, 243, (0,62,106): 242, 242, 240, 243, 254, 255, 240, 255, 255, 247, 236, (0,62,117): 239, 234, 217, 235, 221, 201, 186, 177, 171, 165, 168, (0,62,128): 184, 188, 221, 225, 205, 205, 193, 201, 228, 213, 201, (0,62,139): 200, 201, 200, 200, 196, 177, 166, 168, 172, 171, 172, (0,62,150): 188, 211, 214, 221, 219, 220, 233, 236, 235, 244, 253, (0,62,161): 255, 250, 244, 237, 230, 223, 216, 201, 189, 192, 207, (0,62,172): 225, 247, 255, 255, 252, 252, 248, 247, 249, 249, 252, (0,62,183): 252, 238, 242, 240, 236, 225, 174, 112, 92, 95, 102, (0,62,194): 117, 127, 132, 134, 136, 137, 136, 132, 127, 125, 127, (0,62,205): 129, 131, 134, 136, 138, 136, 134, 130, 130, 131, 133, (0,62,216): 135, 134, 140, 155, 176, 199, 214, 215, 188, 165, 147, (0,63,0): 91, 90, 91, 90, 91, 90, 91, 90, 91, 90, 91, 91, 92, 92, (0,63,14): 93, 93, 94, 94, 94, 94, 94, 94, 94, 92, 96, 97, 97, 98, (0,63,28): 98, 97, 97, 98, 107, 106, 101, 100, 107, 120, 125, 127, (0,63,40): 145, 171, 198, 217, 238, 252, 253, 249, 247, 255, 251, (0,63,51): 238, 229, 225, 221, 215, 222, 223, 225, 222, 218, 208, (0,63,62): 197, 188, 181, 172, 169, 173, 180, 187, 202, 216, 217, (0,63,73): 225, 222, 226, 230, 211, 207, 235, 255, 235, 209, 202, (0,63,84): 203, 201, 205, 212, 218, 223, 229, 231, 234, 237, 244, (0,63,95): 252, 252, 255, 255, 255, 255, 255, 251, 246, 237, 236, (0,63,106): 237, 238, 237, 239, 253, 255, 255, 254, 247, 242, 242, (0,63,117): 240, 227, 210, 218, 205, 187, 175, 168, 162, 155, 157, (0,63,128): 170, 178, 210, 187, 196, 190, 189, 206, 229, 213, 200, (0,63,139): 196, 197, 196, 198, 195, 177, 167, 168, 173, 172, 175, (0,63,150): 194, 219, 217, 225, 222, 222, 234, 237, 239, 252, 254, (0,63,161): 253, 249, 243, 237, 230, 223, 214, 209, 191, 188, 200, (0,63,172): 217, 243, 255, 255, 253, 255, 252, 253, 252, 249, 249, (0,63,183): 249, 234, 240, 236, 228, 215, 162, 102, 88, 90, 98, 116, (0,63,195): 128, 135, 136, 138, 139, 140, 134, 129, 126, 124, 125, (0,63,206): 129, 131, 131, 133, 132, 130, 128, 128, 129, 132, 137, (0,63,217): 136, 140, 153, 172, 189, 201, 203, 182, 159, 140, (0,64,0): 93, 92, 93, 92, 93, 92, 93, 92, 94, 93, 94, 93, 94, 93, (0,64,14): 94, 93, 93, 93, 94, 92, 92, 91, 93, 94, 96, 95, 96, 98, (0,64,28): 99, 100, 100, 100, 107, 104, 101, 102, 110, 120, 129, (0,64,39): 137, 143, 165, 190, 208, 225, 240, 249, 255, 244, 237, (0,64,50): 231, 233, 235, 231, 228, 229, 226, 224, 221, 217, 212, (0,64,61): 204, 196, 185, 167, 175, 173, 172, 191, 204, 204, 208, (0,64,72): 218, 220, 222, 222, 222, 221, 215, 211, 217, 240, 242, (0,64,83): 217, 199, 205, 212, 210, 211, 240, 225, 239, 244, 239, (0,64,94): 255, 240, 250, 255, 255, 249, 253, 255, 254, 240, 238, (0,64,105): 248, 233, 235, 240, 227, 255, 229, 255, 255, 255, 251, (0,64,116): 246, 236, 222, 208, 204, 197, 184, 167, 156, 154, 157, (0,64,127): 160, 167, 174, 194, 191, 189, 196, 197, 212, 219, 218, (0,64,138): 209, 200, 196, 199, 203, 197, 188, 179, 173, 171, 179, (0,64,149): 195, 210, 216, 228, 223, 218, 221, 231, 242, 249, 253, (0,64,160): 247, 246, 246, 243, 242, 237, 230, 221, 213, 190, 192, (0,64,171): 185, 214, 233, 255, 251, 255, 255, 255, 253, 252, 254, (0,64,182): 250, 243, 242, 235, 237, 224, 216, 141, 92, 83, 92, 103, (0,64,194): 119, 125, 127, 128, 131, 130, 128, 127, 126, 125, 124, (0,64,205): 125, 127, 127, 127, 127, 129, 127, 126, 127, 129, 131, (0,64,216): 135, 139, 139, 142, 153, 167, 175, 178, 163, 141, 124, (0,65,0): 93, 93, 93, 93, 93, 93, 93, 93, 94, 94, 94, 94, 94, 94, (0,65,14): 94, 94, 92, 94, 95, 94, 91, 91, 92, 94, 95, 93, 93, 95, (0,65,28): 96, 98, 99, 101, 105, 103, 101, 103, 110, 121, 128, 135, (0,65,40): 158, 163, 171, 185, 211, 234, 244, 244, 245, 238, 233, (0,65,51): 238, 243, 242, 238, 234, 228, 224, 220, 215, 210, 203, (0,65,62): 196, 186, 171, 170, 169, 178, 193, 197, 199, 212, 210, (0,65,73): 214, 215, 216, 217, 219, 219, 218, 221, 230, 235, 225, (0,65,84): 208, 199, 202, 211, 221, 245, 228, 241, 246, 241, 255, (0,65,95): 237, 243, 247, 251, 253, 252, 248, 246, 247, 239, 237, (0,65,106): 234, 253, 216, 238, 250, 213, 255, 255, 255, 253, 247, (0,65,117): 231, 218, 210, 193, 194, 188, 172, 154, 147, 146, 147, (0,65,128): 158, 176, 209, 206, 195, 198, 209, 235, 216, 214, 208, (0,65,139): 199, 198, 202, 208, 206, 199, 194, 194, 195, 201, 209, (0,65,150): 216, 222, 228, 222, 218, 221, 231, 242, 251, 251, 244, (0,65,161): 243, 244, 243, 243, 238, 231, 223, 215, 191, 190, 183, (0,65,172): 211, 233, 255, 249, 253, 255, 255, 255, 255, 255, 252, (0,65,183): 246, 243, 236, 236, 223, 194, 128, 88, 82, 91, 101, 115, (0,65,195): 120, 119, 123, 125, 125, 124, 124, 124, 123, 123, 123, (0,65,206): 125, 126, 124, 125, 125, 125, 124, 125, 127, 130, 133, (0,65,217): 135, 136, 136, 139, 144, 144, 140, 118, 99, 83, (0,66,0): 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, 93, (0,66,14): 93, 93, 94, 95, 97, 96, 93, 92, 91, 91, 91, 91, 92, 92, (0,66,28): 95, 99, 102, 103, 103, 103, 104, 108, 115, 124, 130, 138, (0,66,40): 152, 160, 170, 185, 207, 228, 238, 242, 248, 242, 234, (0,66,51): 237, 243, 245, 242, 238, 228, 224, 219, 213, 207, 201, (0,66,62): 193, 184, 174, 170, 171, 184, 199, 192, 187, 202, 205, (0,66,73): 208, 213, 216, 217, 217, 220, 224, 221, 219, 226, 233, (0,66,84): 222, 200, 200, 217, 226, 245, 231, 242, 248, 245, 255, (0,66,95): 244, 240, 235, 236, 249, 245, 239, 236, 245, 234, 245, (0,66,106): 231, 225, 234, 255, 237, 255, 255, 242, 239, 241, 235, (0,66,117): 222, 214, 214, 194, 194, 189, 181, 173, 168, 162, 157, (0,66,128): 155, 169, 199, 194, 188, 200, 215, 244, 208, 210, 208, (0,66,139): 203, 204, 212, 218, 219, 219, 216, 221, 227, 228, 224, (0,66,150): 227, 235, 224, 221, 217, 221, 231, 240, 245, 248, 244, (0,66,161): 244, 244, 243, 243, 238, 231, 223, 216, 192, 186, 181, (0,66,172): 208, 237, 255, 251, 253, 255, 255, 253, 254, 255, 252, (0,66,183): 250, 244, 238, 234, 223, 165, 117, 88, 85, 95, 102, 114, (0,66,195): 117, 116, 120, 123, 123, 121, 121, 121, 120, 121, 121, (0,66,206): 124, 122, 122, 123, 123, 123, 123, 123, 125, 127, 135, (0,66,217): 138, 139, 137, 134, 130, 121, 111, 81, 64, 50, (0,67,0): 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, (0,67,14): 94, 94, 94, 96, 97, 96, 93, 90, 89, 88, 88, 91, 95, 98, (0,67,28): 101, 105, 108, 107, 108, 108, 111, 114, 121, 127, 133, (0,67,39): 140, 142, 159, 173, 179, 189, 204, 222, 241, 254, 253, (0,67,50): 244, 242, 242, 242, 240, 239, 229, 225, 219, 213, 206, (0,67,61): 198, 191, 184, 173, 173, 177, 188, 204, 199, 186, 186, (0,67,72): 200, 205, 211, 217, 219, 217, 220, 224, 224, 219, 224, (0,67,83): 236, 227, 210, 209, 224, 222, 240, 233, 239, 245, 248, (0,67,94): 255, 255, 253, 242, 226, 237, 234, 240, 232, 235, 241, (0,67,105): 209, 229, 220, 231, 239, 255, 241, 217, 219, 225, 225, (0,67,116): 222, 220, 218, 212, 201, 195, 190, 193, 206, 215, 210, (0,67,127): 196, 178, 182, 207, 217, 227, 239, 234, 241, 201, 206, (0,67,138): 210, 208, 211, 217, 224, 226, 233, 231, 236, 242, 239, (0,67,149): 232, 236, 246, 222, 219, 218, 222, 229, 236, 242, 244, (0,67,160): 244, 246, 246, 245, 245, 240, 233, 224, 217, 194, 183, (0,67,171): 179, 203, 239, 255, 254, 255, 255, 252, 250, 250, 252, (0,67,182): 251, 250, 242, 239, 229, 215, 136, 107, 92, 91, 99, 106, (0,67,194): 115, 116, 117, 119, 121, 122, 119, 118, 119, 118, 120, (0,67,205): 120, 123, 122, 122, 122, 122, 122, 122, 122, 124, 126, (0,67,216): 134, 139, 140, 138, 134, 128, 116, 105, 80, 67, 56, (0,68,0): 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, (0,68,14): 94, 94, 93, 95, 96, 95, 92, 90, 88, 88, 89, 96, 103, 110, (0,68,28): 115, 115, 115, 113, 111, 112, 114, 118, 122, 127, 132, (0,68,39): 138, 147, 157, 160, 158, 160, 172, 188, 210, 240, 253, (0,68,50): 254, 251, 249, 244, 237, 234, 232, 227, 221, 215, 208, (0,68,61): 199, 192, 185, 173, 180, 175, 176, 200, 213, 201, 187, (0,68,72): 190, 193, 204, 214, 219, 218, 220, 226, 224, 226, 228, (0,68,83): 229, 226, 222, 222, 226, 219, 234, 236, 238, 239, 246, (0,68,94): 255, 255, 255, 255, 225, 227, 224, 247, 232, 220, 218, (0,68,105): 234, 219, 216, 255, 224, 202, 202, 193, 213, 224, 218, (0,68,116): 217, 223, 220, 205, 204, 205, 211, 221, 235, 245, 244, (0,68,127): 234, 196, 198, 229, 248, 255, 255, 229, 215, 201, 209, (0,68,138): 215, 214, 213, 213, 216, 220, 238, 241, 240, 242, 239, (0,68,149): 235, 243, 254, 223, 220, 218, 220, 227, 234, 239, 242, (0,68,160): 244, 246, 247, 246, 245, 240, 234, 226, 217, 198, 180, (0,68,171): 178, 195, 239, 255, 255, 255, 255, 249, 246, 245, 247, (0,68,182): 249, 249, 243, 237, 219, 193, 114, 98, 96, 99, 102, 107, (0,68,194): 116, 117, 118, 120, 121, 120, 117, 117, 117, 118, 119, (0,68,205): 120, 123, 122, 122, 123, 124, 124, 121, 121, 123, 125, (0,68,216): 128, 133, 135, 135, 133, 131, 123, 114, 100, 91, 81, (0,69,0): 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, 95, (0,69,14): 95, 95, 94, 95, 96, 94, 91, 89, 90, 90, 95, 104, 114, (0,69,27): 122, 123, 123, 122, 118, 113, 114, 116, 119, 122, 126, (0,69,38): 132, 139, 150, 153, 155, 162, 170, 171, 159, 153, 186, (0,69,49): 210, 225, 233, 239, 241, 236, 229, 235, 231, 226, 218, (0,69,60): 211, 203, 195, 188, 179, 186, 171, 163, 190, 217, 217, (0,69,71): 203, 184, 184, 192, 206, 217, 218, 222, 228, 223, 228, (0,69,82): 227, 221, 222, 227, 228, 223, 222, 233, 240, 239, 236, (0,69,93): 242, 255, 255, 255, 255, 226, 227, 213, 244, 226, 215, (0,69,104): 217, 203, 202, 247, 220, 213, 209, 186, 196, 219, 229, (0,69,115): 219, 215, 220, 217, 204, 208, 226, 244, 250, 247, 246, (0,69,126): 248, 248, 214, 213, 234, 234, 231, 227, 207, 206, 217, (0,69,137): 224, 228, 223, 217, 215, 215, 220, 245, 251, 248, 245, (0,69,148): 245, 248, 255, 255, 224, 222, 220, 221, 225, 231, 237, (0,69,159): 240, 244, 247, 249, 248, 246, 241, 235, 226, 217, 201, (0,69,170): 179, 177, 186, 236, 255, 255, 255, 255, 246, 243, 243, (0,69,181): 244, 249, 249, 243, 235, 205, 160, 102, 89, 95, 99, 102, (0,69,193): 107, 116, 119, 120, 123, 122, 118, 115, 114, 115, 116, (0,69,204): 118, 119, 123, 122, 121, 122, 124, 123, 120, 120, 122, (0,69,215): 123, 126, 131, 133, 135, 137, 137, 132, 124, 117, 111, (0,69,226): 103, (0,70,0): 95, 95, 95, 95, 95, 95, 95, 95, 94, 94, 94, 94, 94, 94, (0,70,14): 94, 95, 97, 97, 97, 94, 91, 91, 92, 95, 107, 115, 125, (0,70,27): 130, 129, 125, 123, 120, 115, 115, 120, 123, 126, 132, (0,70,38): 141, 148, 154, 160, 171, 188, 201, 197, 170, 154, 155, (0,70,49): 173, 181, 194, 214, 232, 238, 236, 235, 233, 229, 224, (0,70,60): 217, 210, 202, 194, 189, 190, 175, 167, 187, 209, 214, (0,70,71): 213, 195, 186, 186, 199, 214, 217, 223, 231, 226, 227, (0,70,82): 226, 222, 224, 229, 228, 222, 229, 232, 240, 240, 239, (0,70,93): 241, 242, 244, 246, 252, 233, 246, 216, 235, 221, 230, (0,70,104): 216, 204, 207, 226, 210, 208, 185, 213, 217, 226, 232, (0,70,115): 230, 223, 219, 224, 228, 238, 250, 255, 255, 248, 245, (0,70,126): 246, 246, 244, 232, 232, 216, 207, 212, 211, 225, 227, (0,70,137): 233, 234, 225, 217, 216, 219, 227, 243, 255, 255, 250, (0,70,148): 252, 255, 255, 251, 227, 223, 221, 221, 226, 230, 237, (0,70,159): 241, 244, 247, 249, 248, 246, 241, 235, 227, 216, 205, (0,70,170): 181, 177, 178, 233, 255, 255, 255, 253, 243, 241, 244, (0,70,181): 245, 251, 252, 245, 232, 188, 125, 94, 81, 91, 93, 101, (0,70,193): 106, 114, 118, 121, 123, 120, 115, 112, 112, 113, 113, (0,70,204): 116, 117, 121, 120, 120, 121, 122, 121, 120, 120, 121, (0,70,215): 123, 127, 130, 132, 134, 135, 134, 128, 120, 112, 108, (0,70,226): 101, (0,71,0): 95, 95, 95, 95, 95, 95, 95, 95, 94, 94, 94, 94, 94, 94, (0,71,14): 94, 95, 99, 99, 97, 93, 90, 92, 95, 97, 116, 121, 129, (0,71,27): 131, 126, 121, 121, 119, 119, 120, 125, 130, 133, 141, (0,71,38): 151, 160, 172, 182, 190, 200, 208, 214, 209, 208, 175, (0,71,49): 174, 164, 168, 194, 224, 239, 241, 233, 234, 230, 226, (0,71,60): 223, 215, 207, 201, 193, 193, 185, 184, 193, 199, 199, (0,71,71): 209, 211, 194, 188, 197, 210, 215, 223, 231, 230, 225, (0,71,82): 224, 227, 231, 230, 226, 223, 233, 229, 240, 240, 241, (0,71,93): 242, 232, 226, 231, 247, 246, 255, 229, 235, 224, 254, (0,71,104): 255, 220, 255, 255, 234, 211, 198, 215, 241, 235, 237, (0,71,115): 246, 240, 230, 241, 255, 255, 255, 254, 245, 247, 253, (0,71,126): 253, 246, 241, 227, 226, 213, 210, 217, 210, 216, 223, (0,71,137): 227, 226, 217, 211, 214, 220, 232, 234, 252, 254, 247, (0,71,148): 249, 255, 253, 236, 226, 224, 222, 223, 225, 232, 239, (0,71,159): 244, 246, 247, 249, 248, 248, 242, 235, 227, 215, 209, (0,71,170): 182, 178, 176, 232, 255, 255, 255, 252, 241, 242, 245, (0,71,181): 246, 253, 253, 242, 225, 174, 98, 89, 74, 85, 88, 99, (0,71,193): 105, 113, 118, 122, 124, 120, 114, 110, 110, 110, 111, (0,71,204): 114, 116, 119, 119, 119, 120, 121, 119, 118, 118, 119, (0,71,215): 121, 122, 126, 129, 127, 126, 123, 114, 105, 95, 92, 86, (0,72,0): 92, 94, 96, 96, 95, 95, 95, 97, 98, 95, 93, 93, 97, 99, (0,72,14): 98, 96, 100, 97, 93, 94, 91, 90, 101, 115, 121, 122, 126, (0,72,27): 128, 125, 120, 114, 108, 116, 118, 128, 139, 150, 164, (0,72,38): 178, 188, 203, 211, 217, 219, 220, 221, 217, 217, 209, (0,72,49): 184, 161, 203, 216, 189, 216, 247, 233, 229, 225, 227, (0,72,60): 226, 219, 216, 214, 203, 192, 199, 187, 191, 198, 185, (0,72,71): 206, 209, 204, 197, 196, 205, 216, 225, 227, 223, 223, (0,72,82): 224, 228, 224, 221, 223, 229, 228, 234, 236, 238, 238, (0,72,93): 235, 232, 226, 215, 230, 245, 237, 215, 215, 249, 255, (0,72,104): 255, 255, 255, 255, 255, 245, 242, 252, 255, 255, 249, (0,72,115): 248, 243, 235, 234, 238, 252, 255, 255, 254, 251, 254, (0,72,126): 255, 251, 237, 223, 214, 214, 215, 215, 216, 219, 225, (0,72,137): 220, 217, 214, 215, 219, 224, 230, 240, 243, 243, 246, (0,72,148): 245, 242, 235, 227, 222, 222, 223, 224, 228, 233, 239, (0,72,159): 245, 247, 248, 250, 249, 249, 243, 236, 229, 224, 204, (0,72,170): 191, 175, 184, 210, 255, 254, 255, 255, 246, 239, 241, (0,72,181): 249, 253, 245, 242, 209, 137, 80, 69, 68, 77, 90, 91, (0,72,193): 99, 113, 120, 120, 116, 114, 113, 108, 109, 110, 111, (0,72,204): 114, 116, 117, 117, 116, 116, 118, 119, 118, 118, 117, (0,72,215): 116, 123, 123, 122, 117, 109, 98, 88, 83, 63, 63, 62, (0,73,0): 91, 94, 96, 96, 96, 95, 96, 97, 98, 96, 95, 96, 98, 99, (0,73,14): 98, 96, 102, 95, 92, 94, 97, 100, 109, 118, 119, 123, (0,73,26): 125, 120, 113, 107, 108, 110, 117, 124, 137, 152, 168, (0,73,37): 184, 201, 211, 219, 226, 231, 230, 228, 226, 219, 212, (0,73,48): 212, 189, 170, 199, 202, 182, 211, 246, 236, 231, 226, (0,73,59): 228, 233, 229, 224, 219, 214, 201, 202, 185, 184, 189, (0,73,70): 182, 200, 221, 212, 198, 189, 196, 212, 220, 219, 226, (0,73,81): 229, 228, 224, 220, 219, 223, 227, 236, 237, 237, 235, (0,73,92): 231, 227, 225, 221, 214, 216, 228, 243, 250, 252, 254, (0,73,103): 255, 240, 235, 238, 252, 255, 255, 244, 242, 236, 239, (0,73,114): 241, 244, 238, 228, 227, 234, 251, 253, 255, 255, 255, (0,73,125): 255, 252, 242, 229, 222, 219, 222, 223, 220, 218, 219, (0,73,136): 224, 219, 216, 215, 219, 223, 229, 231, 233, 234, 235, (0,73,147): 238, 238, 236, 229, 223, 220, 221, 223, 226, 229, 234, (0,73,158): 242, 245, 247, 247, 250, 249, 247, 243, 236, 229, 223, (0,73,169): 212, 194, 182, 183, 216, 255, 251, 254, 254, 247, 244, (0,73,180): 246, 246, 250, 241, 227, 183, 119, 76, 62, 61, 71, 80, (0,73,192): 88, 96, 110, 117, 118, 116, 113, 112, 107, 107, 108, (0,73,203): 109, 112, 114, 115, 115, 116, 117, 117, 117, 116, 114, (0,73,214): 113, 112, 110, 108, 104, 98, 88, 78, 70, 64, 64, 64, 64, (0,74,0): 89, 91, 94, 94, 94, 94, 95, 96, 97, 96, 95, 96, 97, 97, (0,74,14): 96, 94, 98, 92, 91, 99, 107, 113, 118, 121, 121, 121, (0,74,26): 120, 110, 101, 96, 106, 114, 125, 135, 151, 169, 187, (0,74,37): 203, 220, 229, 233, 237, 240, 237, 231, 226, 215, 203, (0,74,48): 185, 170, 156, 171, 168, 158, 187, 222, 247, 238, 227, (0,74,59): 226, 234, 235, 231, 224, 223, 212, 212, 194, 183, 183, (0,74,70): 174, 182, 219, 223, 217, 202, 197, 209, 217, 217, 222, (0,74,81): 233, 236, 224, 213, 213, 218, 222, 230, 232, 231, 230, (0,74,92): 227, 226, 225, 224, 198, 202, 220, 240, 250, 247, 243, (0,74,103): 241, 231, 232, 237, 251, 255, 255, 242, 225, 232, 242, (0,74,114): 250, 251, 244, 236, 243, 255, 245, 244, 247, 252, 255, (0,74,125): 255, 246, 232, 222, 222, 227, 233, 235, 230, 225, 221, (0,74,136): 221, 217, 215, 215, 220, 225, 231, 233, 227, 227, 229, (0,74,147): 231, 232, 230, 225, 219, 218, 219, 222, 226, 231, 235, (0,74,158): 243, 247, 245, 245, 248, 247, 247, 242, 238, 231, 221, (0,74,169): 220, 199, 187, 181, 228, 255, 248, 252, 251, 248, 251, (0,74,180): 250, 243, 239, 233, 210, 155, 107, 79, 62, 59, 70, 72, (0,74,192): 81, 89, 103, 114, 116, 113, 109, 107, 105, 105, 105, (0,74,203): 107, 109, 110, 112, 113, 117, 117, 116, 114, 112, 109, (0,74,214): 107, 106, 101, 97, 91, 85, 76, 69, 65, 62, 67, 68, 69, (0,75,0): 87, 90, 92, 94, 93, 94, 95, 97, 96, 96, 96, 97, 97, 96, (0,75,14): 95, 92, 90, 90, 98, 106, 113, 118, 120, 122, 119, 115, (0,75,26): 109, 98, 93, 97, 108, 120, 137, 149, 164, 182, 199, 213, (0,75,38): 225, 231, 235, 238, 238, 233, 227, 218, 203, 188, 166, (0,75,49): 157, 150, 155, 155, 156, 181, 208, 251, 243, 232, 229, (0,75,60): 229, 234, 234, 232, 223, 219, 222, 211, 195, 186, 176, (0,75,71): 167, 191, 219, 234, 219, 201, 204, 212, 215, 217, 241, (0,75,82): 254, 237, 217, 214, 219, 222, 223, 225, 225, 222, 220, (0,75,93): 218, 217, 215, 194, 196, 206, 217, 223, 224, 228, 234, (0,75,104): 241, 246, 247, 248, 255, 255, 241, 219, 233, 240, 241, (0,75,115): 240, 235, 235, 249, 255, 237, 232, 234, 242, 255, 255, (0,75,126): 244, 227, 225, 228, 234, 242, 244, 239, 230, 224, 221, (0,75,137): 218, 217, 217, 220, 227, 232, 233, 226, 224, 227, 230, (0,75,148): 231, 229, 224, 218, 218, 219, 222, 226, 231, 235, 242, (0,75,159): 246, 244, 244, 247, 246, 246, 242, 238, 231, 220, 224, (0,75,170): 201, 190, 182, 238, 255, 248, 253, 250, 251, 255, 252, (0,75,181): 239, 232, 224, 195, 135, 101, 90, 72, 65, 76, 70, 76, (0,75,193): 83, 98, 108, 112, 110, 107, 105, 103, 104, 104, 106, (0,75,204): 107, 109, 111, 112, 116, 115, 113, 111, 106, 103, 101, (0,75,215): 100, 96, 93, 87, 82, 77, 76, 78, 79, 77, 78, 79, (0,76,0): 85, 87, 91, 92, 93, 93, 95, 97, 95, 96, 97, 97, 96, 95, (0,76,14): 95, 94, 86, 95, 110, 116, 120, 120, 120, 121, 115, 106, (0,76,26): 96, 91, 95, 106, 118, 128, 147, 158, 173, 187, 203, 212, (0,76,38): 221, 225, 229, 230, 228, 224, 218, 206, 190, 174, 155, (0,76,49): 143, 140, 141, 147, 157, 169, 188, 230, 237, 240, 240, (0,76,60): 238, 237, 235, 233, 227, 224, 228, 222, 204, 198, 196, (0,76,71): 175, 174, 199, 220, 214, 204, 206, 208, 209, 214, 245, (0,76,82): 255, 250, 227, 220, 223, 227, 226, 227, 226, 221, 212, (0,76,93): 205, 198, 194, 197, 192, 193, 203, 215, 219, 219, 218, (0,76,104): 225, 236, 242, 242, 249, 255, 241, 222, 233, 237, 237, (0,76,115): 239, 242, 247, 255, 255, 229, 222, 223, 234, 249, 253, (0,76,126): 244, 233, 232, 235, 239, 242, 243, 240, 233, 226, 223, (0,76,137): 220, 219, 220, 223, 228, 232, 233, 230, 228, 230, 232, (0,76,148): 232, 230, 225, 220, 219, 220, 223, 225, 229, 233, 241, (0,76,159): 244, 243, 241, 244, 244, 244, 242, 238, 231, 222, 224, (0,76,170): 202, 192, 192, 247, 255, 249, 248, 246, 252, 255, 255, (0,76,181): 242, 228, 216, 171, 119, 100, 97, 84, 75, 80, 71, 71, (0,76,193): 76, 90, 102, 109, 109, 108, 104, 102, 103, 103, 105, (0,76,204): 106, 108, 110, 111, 116, 115, 110, 106, 102, 99, 97, 95, (0,76,216): 90, 88, 83, 80, 79, 82, 87, 90, 85, 85, 85, (0,77,0): 82, 85, 88, 90, 91, 92, 94, 96, 96, 97, 97, 97, 96, 96, (0,77,14): 98, 97, 94, 106, 121, 125, 122, 120, 118, 115, 106, 99, (0,77,26): 91, 93, 104, 118, 129, 136, 153, 163, 175, 187, 198, 207, (0,77,38): 212, 215, 217, 217, 215, 210, 204, 197, 180, 163, 141, (0,77,49): 124, 124, 120, 130, 143, 144, 157, 192, 215, 237, 249, (0,77,60): 253, 250, 243, 237, 237, 234, 225, 224, 209, 211, 221, (0,77,71): 194, 184, 189, 194, 200, 207, 215, 214, 209, 208, 234, (0,77,82): 250, 242, 223, 217, 219, 224, 230, 231, 231, 226, 218, (0,77,93): 209, 202, 196, 176, 184, 200, 211, 210, 203, 204, 207, (0,77,104): 211, 227, 237, 240, 244, 246, 232, 218, 229, 236, 243, (0,77,115): 253, 255, 255, 255, 255, 226, 221, 221, 231, 245, 249, (0,77,126): 248, 244, 237, 239, 240, 237, 235, 234, 231, 225, 227, (0,77,137): 224, 223, 222, 225, 228, 232, 232, 232, 231, 232, 235, (0,77,148): 235, 233, 226, 222, 219, 220, 221, 223, 227, 231, 239, (0,77,159): 242, 241, 240, 243, 243, 243, 241, 236, 231, 224, 217, (0,77,170): 204, 193, 209, 255, 253, 247, 237, 241, 250, 255, 255, (0,77,181): 248, 227, 200, 139, 106, 93, 93, 88, 81, 79, 73, 68, 71, (0,77,194): 83, 94, 103, 106, 106, 103, 103, 102, 102, 103, 105, (0,77,205): 107, 109, 109, 113, 111, 106, 103, 99, 96, 95, 94, 92, (0,77,217): 91, 87, 86, 85, 89, 93, 94, 90, 88, 88, (0,78,0): 78, 81, 85, 87, 88, 90, 92, 94, 97, 98, 98, 97, 95, 97, (0,78,14): 102, 104, 110, 117, 124, 123, 119, 118, 112, 106, 97, 94, (0,78,26): 95, 101, 112, 125, 137, 143, 153, 161, 170, 180, 186, (0,78,37): 192, 195, 199, 198, 197, 193, 188, 187, 181, 166, 150, (0,78,48): 139, 117, 119, 115, 122, 137, 133, 150, 155, 183, 214, (0,78,59): 237, 252, 255, 254, 249, 252, 245, 230, 231, 216, 219, (0,78,70): 234, 197, 196, 189, 190, 199, 209, 212, 212, 215, 210, (0,78,81): 216, 221, 220, 214, 213, 216, 222, 229, 230, 229, 226, (0,78,92): 219, 213, 209, 204, 174, 188, 205, 209, 198, 187, 192, (0,78,103): 202, 215, 226, 236, 240, 239, 236, 223, 212, 209, 218, (0,78,114): 227, 237, 245, 247, 244, 239, 228, 225, 230, 240, 247, (0,78,125): 249, 254, 253, 239, 240, 240, 236, 232, 231, 230, 224, (0,78,136): 228, 224, 224, 224, 227, 230, 234, 236, 236, 236, 237, (0,78,147): 238, 238, 235, 228, 222, 222, 221, 221, 223, 225, 230, (0,78,158): 237, 241, 240, 238, 241, 242, 243, 241, 236, 231, 226, (0,78,169): 210, 210, 198, 231, 255, 249, 241, 227, 239, 253, 255, (0,78,180): 255, 253, 219, 177, 106, 94, 88, 85, 89, 85, 76, 73, 64, (0,78,193): 65, 75, 88, 98, 102, 104, 102, 101, 99, 99, 101, 103, (0,78,205): 104, 105, 107, 110, 108, 104, 100, 97, 95, 95, 95, 95, (0,78,217): 95, 93, 93, 93, 96, 99, 99, 92, 90, 90, (0,79,0): 74, 77, 81, 84, 87, 89, 92, 94, 100, 101, 100, 98, 95, 97, (0,79,14): 103, 108, 119, 121, 120, 116, 114, 116, 108, 98, 90, 95, (0,79,26): 102, 109, 118, 129, 143, 151, 155, 160, 169, 174, 177, (0,79,37): 178, 180, 182, 181, 179, 174, 171, 170, 164, 153, 136, (0,79,48): 126, 102, 108, 100, 108, 124, 123, 147, 140, 162, 187, (0,79,59): 212, 238, 255, 255, 255, 254, 247, 233, 238, 221, 222, (0,79,70): 234, 186, 190, 190, 199, 209, 203, 193, 202, 219, 222, (0,79,81): 211, 204, 205, 212, 215, 221, 225, 228, 228, 222, 215, (0,79,92): 207, 202, 197, 194, 212, 200, 189, 190, 195, 196, 194, (0,79,103): 194, 220, 221, 225, 229, 232, 229, 220, 212, 203, 212, (0,79,114): 218, 224, 228, 232, 233, 231, 238, 237, 244, 253, 255, (0,79,125): 253, 255, 255, 248, 249, 249, 240, 235, 233, 232, 226, (0,79,136): 227, 224, 224, 225, 228, 231, 235, 238, 236, 235, 236, (0,79,147): 237, 237, 234, 227, 219, 222, 221, 221, 222, 224, 227, (0,79,158): 233, 236, 238, 238, 240, 240, 242, 239, 235, 231, 228, (0,79,169): 205, 215, 202, 249, 255, 246, 237, 228, 243, 255, 255, (0,79,180): 255, 245, 201, 148, 83, 88, 84, 79, 89, 83, 69, 71, 61, (0,79,193): 64, 73, 83, 95, 101, 103, 101, 99, 97, 98, 99, 101, 102, (0,79,206): 104, 105, 108, 107, 102, 99, 97, 96, 96, 96, 94, 94, 95, (0,79,219): 96, 97, 100, 102, 102, 93, 92, 93, (0,80,0): 68, 70, 74, 80, 82, 87, 93, 95, 96, 97, 96, 95, 98, 103, (0,80,14): 111, 115, 119, 122, 124, 121, 112, 103, 96, 92, 96, 102, (0,80,26): 111, 121, 132, 141, 150, 156, 160, 161, 163, 164, 166, (0,80,37): 165, 165, 164, 165, 163, 162, 162, 159, 153, 142, 131, (0,80,48): 113, 104, 99, 102, 108, 115, 128, 143, 150, 169, 181, (0,80,59): 192, 216, 235, 246, 255, 249, 255, 237, 223, 217, 239, (0,80,70): 204, 197, 196, 195, 192, 195, 198, 202, 208, 213, 210, (0,80,81): 214, 215, 211, 205, 205, 216, 226, 224, 225, 222, 215, (0,80,92): 207, 201, 198, 196, 194, 198, 203, 205, 204, 197, 187, (0,80,103): 182, 199, 208, 217, 224, 227, 225, 216, 208, 205, 213, (0,80,114): 220, 227, 232, 237, 240, 244, 251, 250, 251, 253, 255, (0,80,125): 255, 255, 255, 255, 255, 255, 254, 244, 237, 233, 232, (0,80,136): 221, 221, 222, 224, 227, 230, 233, 235, 235, 236, 235, (0,80,147): 233, 231, 226, 221, 219, 220, 219, 220, 222, 223, 226, (0,80,158): 227, 230, 236, 237, 240, 241, 241, 237, 232, 228, 222, (0,80,169): 212, 211, 215, 255, 255, 248, 241, 247, 236, 249, 255, (0,80,180): 245, 230, 178, 97, 71, 65, 75, 82, 79, 66, 59, 60, 65, (0,80,193): 69, 75, 83, 91, 97, 100, 100, 98, 96, 97, 99, 101, 104, (0,80,206): 108, 109, 108, 105, 103, 102, 102, 101, 99, 97, 100, (0,80,217): 100, 98, 99, 100, 100, 101, 97, 91, 92, 95, (0,81,0): 61, 63, 70, 74, 80, 84, 91, 93, 96, 96, 94, 94, 99, 104, (0,81,14): 110, 115, 116, 118, 116, 112, 103, 97, 93, 92, 101, 107, (0,81,26): 116, 125, 134, 141, 148, 152, 155, 156, 157, 158, 158, (0,81,37): 157, 156, 155, 158, 156, 156, 155, 154, 147, 136, 128, (0,81,48): 115, 107, 100, 101, 107, 113, 124, 141, 157, 178, 187, (0,81,59): 195, 211, 221, 224, 235, 251, 255, 247, 238, 227, 235, (0,81,70): 199, 194, 197, 195, 192, 193, 196, 200, 207, 211, 213, (0,81,81): 213, 211, 210, 209, 209, 212, 216, 223, 224, 220, 214, (0,81,92): 207, 200, 193, 190, 190, 193, 198, 201, 202, 200, 197, (0,81,103): 194, 191, 199, 209, 216, 218, 215, 204, 195, 202, 211, (0,81,114): 221, 229, 237, 244, 249, 253, 255, 255, 255, 255, 255, (0,81,125): 255, 255, 255, 255, 255, 255, 255, 247, 241, 234, 230, (0,81,136): 220, 220, 222, 224, 227, 230, 233, 235, 235, 236, 235, (0,81,147): 232, 228, 223, 220, 217, 219, 219, 220, 220, 222, 223, (0,81,158): 225, 227, 231, 234, 235, 235, 235, 232, 228, 223, 221, (0,81,169): 209, 207, 239, 255, 255, 241, 249, 248, 247, 244, 243, (0,81,180): 239, 205, 139, 89, 69, 60, 62, 67, 67, 61, 56, 58, 60, (0,81,193): 75, 92, 101, 104, 101, 100, 100, 97, 97, 97, 99, 103, (0,81,205): 105, 107, 108, 108, 106, 104, 102, 103, 102, 102, 100, (0,81,216): 102, 100, 100, 100, 101, 101, 102, 98, 93, 95, 98, (0,82,0): 54, 58, 63, 68, 75, 79, 86, 89, 94, 92, 92, 94, 99, 104, (0,82,14): 111, 115, 115, 113, 106, 99, 92, 90, 92, 92, 104, 110, (0,82,26): 119, 127, 134, 138, 143, 145, 147, 147, 147, 147, 148, (0,82,37): 147, 147, 146, 149, 147, 148, 148, 147, 140, 131, 126, (0,82,48): 121, 115, 103, 100, 100, 104, 117, 135, 166, 190, 203, (0,82,59): 208, 218, 222, 220, 226, 251, 255, 255, 255, 247, 238, (0,82,70): 196, 192, 196, 193, 192, 192, 194, 198, 204, 208, 214, (0,82,81): 211, 206, 208, 212, 212, 206, 203, 218, 218, 217, 214, (0,82,92): 208, 201, 194, 190, 189, 192, 194, 196, 199, 202, 203, (0,82,103): 204, 199, 202, 207, 208, 210, 209, 202, 197, 204, 214, (0,82,114): 223, 231, 241, 246, 251, 255, 252, 252, 251, 249, 251, (0,82,125): 250, 252, 254, 255, 255, 254, 253, 247, 242, 236, 229, (0,82,136): 220, 220, 222, 224, 229, 231, 233, 235, 237, 238, 237, (0,82,147): 234, 229, 225, 220, 216, 218, 217, 218, 219, 221, 222, (0,82,158): 224, 225, 225, 226, 227, 227, 227, 225, 221, 218, 219, (0,82,169): 204, 211, 255, 255, 249, 237, 255, 247, 255, 240, 233, (0,82,180): 227, 171, 101, 81, 65, 52, 53, 58, 63, 62, 60, 62, 62, (0,82,193): 88, 115, 128, 119, 104, 97, 97, 96, 96, 97, 99, 104, (0,82,205): 106, 107, 108, 110, 107, 104, 103, 104, 104, 102, 100, (0,82,216): 101, 100, 99, 100, 102, 102, 101, 98, 99, 101, 104, (0,83,0): 50, 53, 59, 65, 71, 75, 82, 86, 88, 89, 89, 94, 99, 105, (0,83,14): 111, 114, 114, 106, 96, 87, 84, 87, 92, 97, 108, 114, (0,83,26): 123, 130, 136, 138, 140, 141, 143, 143, 143, 142, 143, (0,83,37): 142, 142, 141, 143, 142, 143, 144, 143, 137, 128, 126, (0,83,48): 127, 121, 107, 99, 96, 98, 109, 128, 161, 193, 209, 217, (0,83,60): 228, 228, 224, 228, 236, 237, 254, 255, 255, 245, 201, (0,83,71): 196, 194, 191, 191, 190, 193, 197, 200, 206, 216, 212, (0,83,82): 206, 206, 209, 209, 203, 199, 210, 211, 210, 210, 209, (0,83,93): 205, 200, 196, 196, 196, 198, 198, 199, 200, 201, 203, (0,83,104): 211, 211, 208, 203, 203, 207, 207, 206, 206, 217, 226, (0,83,115): 235, 242, 247, 249, 252, 249, 247, 247, 248, 251, 253, (0,83,126): 255, 255, 255, 253, 250, 249, 247, 242, 233, 225, 220, (0,83,137): 220, 222, 224, 229, 231, 233, 235, 238, 238, 238, 234, (0,83,148): 230, 225, 220, 215, 216, 216, 216, 217, 218, 220, 221, (0,83,159): 221, 219, 220, 221, 220, 220, 218, 215, 214, 213, 206, (0,83,170): 231, 255, 254, 243, 243, 255, 251, 252, 240, 228, 196, (0,83,181): 129, 78, 72, 54, 50, 56, 62, 65, 63, 65, 69, 84, 112, (0,83,194): 143, 151, 131, 106, 95, 93, 95, 97, 98, 102, 107, 108, (0,83,206): 109, 109, 111, 108, 105, 104, 105, 105, 104, 103, 102, (0,83,217): 100, 100, 101, 103, 104, 102, 100, 103, 105, 108, (0,84,0): 45, 51, 56, 60, 66, 71, 77, 81, 83, 83, 85, 90, 97, 105, (0,84,14): 109, 108, 106, 98, 88, 80, 81, 88, 96, 102, 111, 117, (0,84,26): 124, 130, 134, 135, 138, 139, 139, 139, 138, 137, 137, (0,84,37): 136, 138, 137, 140, 139, 141, 141, 141, 135, 126, 127, (0,84,48): 131, 125, 108, 99, 92, 91, 102, 122, 149, 187, 209, 219, (0,84,60): 230, 231, 224, 227, 228, 226, 247, 255, 255, 244, 201, (0,84,71): 193, 192, 191, 191, 192, 194, 197, 199, 205, 216, 217, (0,84,82): 210, 207, 204, 201, 200, 201, 207, 209, 210, 209, 207, (0,84,93): 204, 203, 203, 202, 201, 202, 201, 200, 198, 197, 197, (0,84,104): 208, 208, 205, 201, 203, 206, 205, 204, 208, 217, 228, (0,84,115): 236, 244, 249, 251, 252, 252, 251, 252, 252, 254, 255, (0,84,126): 255, 255, 255, 251, 247, 245, 241, 237, 228, 221, 220, (0,84,137): 220, 222, 226, 229, 231, 234, 236, 241, 241, 239, 237, (0,84,148): 230, 225, 218, 215, 216, 214, 214, 216, 216, 217, 218, (0,84,159): 217, 213, 213, 214, 213, 212, 211, 211, 211, 208, 215, (0,84,170): 255, 255, 255, 240, 255, 250, 255, 242, 237, 215, 148, (0,84,181): 91, 71, 63, 49, 52, 58, 60, 58, 62, 80, 94, 121, 144, (0,84,194): 170, 168, 142, 111, 97, 94, 96, 99, 101, 106, 111, 112, (0,84,206): 111, 111, 111, 108, 105, 103, 105, 105, 105, 104, 102, (0,84,217): 101, 100, 101, 103, 104, 103, 101, 105, 105, 108, (0,85,0): 43, 46, 52, 56, 62, 66, 72, 75, 78, 78, 79, 87, 95, 102, (0,85,14): 103, 103, 98, 91, 81, 78, 82, 91, 101, 108, 117, 122, (0,85,26): 127, 131, 134, 134, 136, 137, 135, 134, 134, 133, 133, (0,85,37): 133, 135, 135, 141, 140, 141, 140, 139, 132, 123, 124, (0,85,48): 129, 126, 109, 100, 92, 89, 99, 118, 146, 183, 209, 219, (0,85,60): 231, 231, 228, 231, 236, 230, 247, 243, 254, 230, 196, (0,85,71): 190, 194, 193, 193, 195, 196, 200, 203, 207, 214, 216, (0,85,82): 212, 206, 199, 196, 198, 202, 207, 214, 217, 214, 206, (0,85,93): 200, 202, 203, 201, 200, 201, 201, 202, 200, 200, 199, (0,85,104): 202, 207, 210, 211, 214, 213, 206, 201, 210, 220, 231, (0,85,115): 240, 246, 250, 253, 253, 249, 247, 247, 246, 247, 247, (0,85,126): 250, 250, 252, 248, 245, 240, 237, 231, 224, 218, 220, (0,85,137): 221, 223, 226, 229, 231, 234, 236, 242, 242, 240, 237, (0,85,148): 230, 223, 218, 214, 213, 212, 212, 212, 213, 213, 215, (0,85,159): 212, 208, 206, 207, 207, 206, 206, 206, 208, 208, 232, (0,85,170): 255, 254, 255, 246, 255, 246, 255, 234, 221, 185, 107, (0,85,181): 71, 71, 59, 56, 58, 57, 53, 51, 66, 102, 129, 159, 169, (0,85,194): 181, 175, 146, 118, 101, 96, 96, 99, 103, 109, 114, 114, (0,85,206): 113, 112, 111, 108, 104, 102, 104, 105, 105, 105, 103, (0,85,217): 102, 101, 102, 104, 105, 105, 102, 106, 107, 110, (0,86,0): 40, 43, 47, 51, 55, 60, 64, 67, 73, 72, 75, 82, 91, 97, (0,86,14): 98, 96, 95, 90, 84, 84, 92, 103, 112, 118, 123, 126, 131, (0,86,27): 132, 132, 131, 133, 134, 131, 130, 131, 130, 131, 133, (0,86,38): 136, 136, 141, 139, 139, 139, 137, 129, 119, 117, 125, (0,86,49): 121, 107, 101, 93, 91, 100, 116, 140, 176, 202, 214, 226, (0,86,61): 230, 231, 237, 245, 237, 247, 222, 229, 210, 195, 199, (0,86,72): 197, 196, 197, 200, 202, 205, 208, 212, 211, 212, 210, (0,86,83): 205, 199, 194, 192, 195, 200, 213, 225, 222, 211, 202, (0,86,94): 201, 205, 200, 200, 200, 200, 202, 202, 203, 203, 205, (0,86,105): 210, 215, 216, 218, 219, 215, 210, 220, 229, 238, 245, (0,86,116): 249, 249, 250, 248, 242, 239, 237, 237, 239, 239, 242, (0,86,127): 241, 244, 244, 242, 236, 229, 225, 223, 221, 220, 221, (0,86,138): 223, 227, 230, 233, 234, 236, 244, 244, 241, 238, 230, (0,86,149): 224, 218, 212, 211, 209, 208, 208, 208, 208, 209, 208, (0,86,160): 203, 200, 200, 199, 200, 200, 203, 206, 213, 250, 255, (0,86,171): 255, 253, 254, 255, 250, 244, 230, 192, 135, 84, 67, 68, (0,86,183): 62, 66, 64, 58, 54, 57, 80, 125, 159, 176, 175, 176, (0,86,195): 166, 146, 123, 103, 95, 94, 99, 105, 111, 115, 115, 113, (0,86,207): 111, 110, 107, 103, 101, 103, 104, 105, 105, 102, 100, (0,86,218): 100, 101, 103, 104, 105, 102, 106, 108, 111, (0,87,0): 38, 40, 45, 49, 51, 55, 58, 60, 71, 68, 71, 79, 90, 95, (0,87,14): 94, 92, 96, 92, 89, 92, 103, 113, 122, 127, 129, 130, (0,87,26): 133, 132, 131, 129, 131, 131, 132, 131, 132, 131, 133, (0,87,37): 135, 138, 140, 141, 140, 139, 138, 133, 127, 115, 111, (0,87,48): 117, 114, 105, 102, 99, 97, 102, 115, 125, 159, 184, 197, (0,87,60): 215, 226, 233, 240, 247, 241, 247, 209, 212, 197, 200, (0,87,71): 212, 199, 199, 201, 205, 208, 211, 216, 217, 207, 206, (0,87,82): 206, 203, 199, 193, 190, 188, 192, 209, 227, 228, 216, (0,87,93): 203, 203, 208, 202, 201, 199, 198, 200, 202, 206, 208, (0,87,104): 211, 213, 213, 210, 213, 218, 221, 220, 232, 241, 247, (0,87,115): 251, 250, 245, 242, 239, 237, 234, 234, 235, 237, 241, (0,87,126): 244, 243, 239, 238, 236, 233, 226, 222, 223, 225, 221, (0,87,137): 222, 225, 227, 230, 233, 234, 236, 244, 244, 241, 236, (0,87,148): 230, 223, 216, 211, 208, 205, 205, 204, 205, 205, 205, (0,87,159): 204, 197, 194, 195, 194, 195, 198, 201, 205, 220, 255, (0,87,170): 255, 255, 250, 255, 246, 251, 228, 224, 162, 91, 71, 70, (0,87,182): 64, 67, 71, 70, 64, 63, 69, 96, 139, 170, 177, 171, 166, (0,87,195): 157, 142, 123, 102, 90, 94, 97, 104, 111, 114, 114, 112, (0,87,207): 110, 110, 106, 102, 100, 102, 104, 105, 105, 102, 101, (0,87,218): 100, 101, 103, 104, 104, 101, 107, 109, 112, (0,88,0): 40, 39, 40, 41, 46, 51, 55, 57, 61, 63, 68, 74, 79, 86, (0,88,14): 90, 93, 89, 91, 94, 101, 110, 119, 127, 132, 140, 140, (0,88,26): 138, 134, 130, 128, 130, 131, 128, 129, 131, 132, 134, (0,88,37): 136, 139, 140, 138, 138, 137, 135, 128, 119, 107, 102, (0,88,48): 106, 108, 104, 102, 101, 102, 106, 114, 114, 135, 166, (0,88,59): 193, 209, 220, 237, 247, 249, 230, 212, 206, 209, 215, (0,88,70): 214, 212, 207, 205, 207, 209, 212, 216, 220, 220, 208, (0,88,81): 205, 204, 202, 197, 193, 190, 188, 194, 190, 233, 223, (0,88,92): 195, 209, 206, 199, 202, 201, 200, 199, 200, 201, 203, (0,88,103): 204, 208, 215, 220, 220, 217, 218, 226, 236, 245, 242, (0,88,114): 240, 246, 246, 241, 237, 237, 236, 230, 228, 229, 235, (0,88,125): 240, 241, 239, 242, 238, 234, 230, 225, 223, 220, 220, (0,88,136): 222, 225, 227, 230, 233, 236, 237, 239, 244, 243, 240, (0,88,147): 237, 231, 224, 215, 207, 202, 200, 199, 198, 199, 199, (0,88,158): 200, 199, 193, 196, 190, 182, 188, 201, 206, 201, 255, (0,88,169): 255, 255, 252, 245, 242, 247, 240, 228, 171, 110, 78, (0,88,180): 67, 65, 66, 66, 77, 77, 67, 68, 88, 125, 155, 167, 171, (0,88,193): 159, 152, 148, 130, 102, 88, 89, 93, 99, 105, 110, 109, (0,88,205): 108, 107, 108, 105, 102, 99, 99, 102, 104, 102, 100, (0,88,216): 103, 104, 103, 102, 101, 102, 106, 107, 113, 113, 114, (0,89,0): 42, 41, 41, 41, 45, 49, 53, 55, 59, 62, 65, 72, 79, 83, (0,89,14): 88, 90, 92, 94, 100, 107, 117, 127, 135, 139, 141, 140, (0,89,26): 137, 133, 128, 128, 128, 130, 133, 134, 135, 137, 139, (0,89,37): 140, 141, 142, 138, 137, 134, 130, 123, 116, 108, 100, (0,89,48): 99, 98, 101, 102, 105, 108, 110, 113, 121, 130, 149, 173, (0,89,60): 199, 221, 243, 254, 240, 227, 217, 213, 217, 220, 219, (0,89,71): 214, 211, 209, 209, 212, 215, 220, 223, 221, 206, 201, (0,89,82): 200, 198, 196, 193, 191, 190, 196, 203, 228, 220, 200, (0,89,93): 204, 200, 194, 202, 203, 202, 202, 203, 204, 206, 207, (0,89,104): 211, 214, 217, 215, 213, 216, 222, 231, 248, 241, 237, (0,89,115): 239, 240, 238, 235, 235, 228, 220, 216, 223, 238, 248, (0,89,126): 248, 243, 233, 231, 229, 226, 225, 224, 225, 225, 224, (0,89,137): 226, 229, 231, 233, 236, 237, 238, 243, 242, 238, 234, (0,89,148): 228, 220, 211, 203, 198, 195, 194, 192, 192, 193, 193, (0,89,159): 193, 189, 193, 187, 179, 185, 192, 201, 215, 255, 255, (0,89,170): 253, 246, 242, 242, 240, 224, 170, 131, 95, 72, 59, 59, (0,89,182): 73, 85, 81, 84, 87, 100, 119, 140, 154, 159, 152, 154, (0,89,194): 154, 141, 114, 89, 84, 92, 95, 98, 105, 109, 108, 107, (0,89,206): 105, 105, 103, 101, 99, 99, 103, 105, 104, 103, 105, (0,89,217): 105, 105, 103, 103, 102, 108, 109, 112, 111, 114, (0,90,0): 45, 45, 44, 44, 47, 49, 51, 52, 57, 60, 64, 69, 75, 81, (0,90,14): 85, 86, 92, 94, 102, 112, 122, 133, 141, 144, 144, 142, (0,90,26): 138, 135, 129, 127, 127, 128, 134, 136, 138, 140, 140, (0,90,37): 140, 140, 139, 137, 134, 128, 123, 117, 110, 105, 99, 93, (0,90,49): 93, 97, 103, 109, 112, 114, 114, 122, 123, 137, 164, 199, (0,90,61): 224, 245, 252, 226, 222, 221, 222, 225, 225, 221, 218, (0,90,72): 212, 211, 211, 213, 216, 221, 224, 221, 203, 196, 194, (0,90,83): 193, 194, 194, 193, 192, 195, 220, 218, 213, 206, 196, (0,90,94): 196, 190, 198, 199, 199, 201, 202, 203, 204, 205, 213, (0,90,105): 213, 214, 215, 218, 223, 229, 233, 240, 237, 235, 236, (0,90,116): 238, 237, 235, 234, 221, 225, 236, 248, 253, 250, 239, (0,90,127): 229, 226, 224, 224, 224, 225, 226, 228, 228, 225, 228, (0,90,138): 230, 232, 235, 235, 235, 236, 239, 238, 236, 231, 226, (0,90,149): 217, 207, 199, 194, 191, 189, 187, 187, 187, 187, 187, (0,90,160): 184, 189, 179, 177, 182, 180, 194, 235, 255, 254, 243, (0,90,171): 237, 238, 236, 227, 202, 130, 102, 85, 71, 59, 56, 65, (0,90,183): 78, 72, 83, 103, 129, 146, 149, 148, 149, 146, 156, 154, (0,90,195): 128, 92, 72, 78, 91, 95, 99, 104, 108, 106, 104, 103, (0,90,207): 102, 100, 100, 99, 101, 104, 107, 107, 106, 105, 105, (0,90,218): 105, 104, 103, 104, 108, 111, 115, 115, 117, (0,91,0): 50, 48, 48, 48, 49, 50, 51, 52, 57, 59, 63, 68, 73, 77, (0,91,14): 82, 83, 88, 92, 100, 110, 122, 132, 140, 145, 148, 147, (0,91,26): 142, 137, 130, 127, 127, 128, 132, 134, 137, 141, 139, (0,91,37): 137, 135, 133, 133, 128, 121, 114, 109, 107, 105, 99, 92, (0,91,49): 90, 97, 103, 111, 115, 117, 119, 118, 123, 139, 171, 205, (0,91,61): 226, 237, 239, 219, 220, 225, 227, 227, 225, 224, 219, (0,91,72): 214, 211, 209, 212, 216, 220, 224, 218, 200, 189, 188, (0,91,83): 189, 191, 194, 195, 196, 198, 233, 211, 204, 209, 190, (0,91,94): 192, 192, 192, 196, 197, 199, 200, 203, 204, 205, 210, (0,91,105): 212, 213, 219, 227, 233, 236, 236, 232, 236, 239, 238, (0,91,116): 234, 230, 228, 226, 243, 252, 255, 255, 243, 228, 223, (0,91,127): 221, 223, 222, 222, 223, 225, 226, 229, 230, 229, 230, (0,91,138): 232, 233, 235, 235, 235, 236, 238, 238, 234, 229, 223, (0,91,149): 214, 204, 197, 190, 186, 182, 181, 181, 180, 179, 179, (0,91,160): 179, 183, 173, 173, 179, 171, 193, 252, 253, 249, 238, (0,91,171): 232, 229, 220, 206, 177, 119, 92, 79, 74, 70, 64, 61, (0,91,183): 61, 65, 81, 110, 138, 149, 145, 141, 144, 157, 161, 144, (0,91,195): 108, 75, 65, 76, 87, 95, 100, 105, 107, 105, 103, 100, (0,91,207): 101, 98, 99, 100, 103, 106, 108, 109, 110, 106, 106, (0,91,218): 106, 104, 103, 105, 109, 112, 119, 118, 118, (0,92,0): 55, 54, 54, 53, 53, 53, 54, 54, 59, 61, 64, 68, 73, 77, (0,92,14): 81, 82, 86, 89, 97, 107, 117, 128, 136, 140, 149, 148, (0,92,26): 144, 139, 132, 129, 127, 127, 129, 132, 135, 137, 138, (0,92,37): 134, 129, 128, 127, 122, 114, 109, 106, 105, 106, 102, (0,92,48): 97, 95, 100, 105, 110, 116, 122, 125, 127, 136, 157, 182, (0,92,60): 205, 216, 223, 226, 221, 223, 226, 227, 225, 223, 221, (0,92,71): 220, 211, 208, 207, 209, 212, 217, 221, 216, 196, 185, (0,92,82): 181, 183, 189, 194, 199, 199, 208, 245, 214, 201, 207, (0,92,93): 184, 183, 188, 191, 195, 198, 200, 202, 204, 207, 209, (0,92,104): 208, 210, 214, 222, 229, 234, 232, 230, 233, 239, 240, (0,92,115): 234, 228, 228, 232, 237, 255, 255, 241, 221, 209, 209, (0,92,126): 220, 231, 224, 224, 224, 224, 226, 227, 229, 229, 230, (0,92,137): 231, 234, 235, 235, 235, 232, 234, 238, 238, 234, 228, (0,92,148): 223, 214, 203, 195, 186, 181, 179, 175, 175, 172, 172, (0,92,159): 172, 170, 172, 166, 167, 170, 171, 203, 255, 243, 241, (0,92,170): 235, 226, 215, 199, 178, 153, 103, 83, 80, 78, 73, 66, (0,92,182): 63, 65, 77, 94, 120, 139, 145, 141, 143, 151, 157, 146, (0,92,194): 117, 82, 63, 66, 79, 86, 98, 101, 105, 106, 105, 101, (0,92,206): 98, 99, 98, 102, 103, 105, 107, 109, 110, 111, 106, 107, (0,92,218): 106, 105, 105, 106, 110, 114, 120, 118, 118, (0,93,0): 63, 61, 61, 61, 61, 59, 59, 59, 63, 64, 67, 70, 75, 78, (0,93,14): 81, 82, 89, 90, 95, 103, 113, 123, 131, 135, 143, 143, (0,93,26): 141, 138, 131, 126, 122, 121, 123, 124, 128, 131, 131, (0,93,37): 127, 124, 122, 118, 114, 109, 106, 107, 108, 108, 107, (0,93,48): 103, 102, 103, 106, 110, 118, 124, 131, 150, 157, 169, (0,93,59): 185, 197, 204, 213, 221, 225, 225, 226, 226, 224, 222, (0,93,70): 220, 218, 209, 205, 204, 206, 209, 213, 217, 211, 193, (0,93,81): 180, 176, 178, 187, 196, 201, 203, 217, 248, 227, 206, (0,93,92): 204, 184, 172, 181, 188, 191, 192, 195, 197, 201, 206, (0,93,103): 209, 217, 219, 222, 229, 234, 234, 231, 227, 232, 235, (0,93,114): 236, 232, 236, 248, 255, 255, 249, 226, 202, 192, 201, (0,93,125): 214, 223, 224, 226, 225, 226, 225, 227, 228, 229, 230, (0,93,136): 233, 233, 234, 235, 235, 234, 232, 233, 239, 236, 232, (0,93,147): 227, 221, 211, 201, 192, 182, 178, 174, 170, 169, 168, (0,93,158): 165, 165, 165, 160, 160, 160, 162, 181, 219, 249, 237, (0,93,169): 237, 231, 216, 198, 177, 156, 136, 84, 77, 83, 77, 63, (0,93,181): 57, 65, 78, 108, 119, 132, 137, 141, 144, 148, 152, 131, (0,93,193): 110, 81, 60, 57, 65, 79, 87, 99, 101, 106, 107, 105, (0,93,205): 101, 97, 99, 99, 105, 106, 108, 108, 108, 109, 110, 109, (0,93,217): 109, 109, 108, 107, 109, 114, 115, 124, 123, 122, (0,94,0): 68, 68, 68, 67, 67, 67, 66, 66, 68, 69, 71, 74, 79, 82, (0,94,14): 84, 85, 92, 92, 92, 97, 105, 114, 123, 129, 134, 136, (0,94,26): 136, 132, 127, 121, 116, 111, 112, 114, 118, 119, 119, (0,94,37): 116, 115, 114, 109, 108, 106, 107, 109, 111, 111, 111, (0,94,48): 110, 109, 107, 108, 111, 117, 125, 137, 161, 167, 174, (0,94,59): 186, 197, 204, 212, 220, 224, 225, 225, 224, 224, 221, (0,94,70): 216, 212, 207, 202, 201, 202, 205, 210, 213, 207, 191, (0,94,81): 177, 172, 174, 186, 196, 202, 206, 216, 240, 241, 217, (0,94,92): 204, 190, 166, 179, 190, 193, 193, 194, 197, 201, 207, (0,94,103): 212, 225, 227, 228, 231, 233, 233, 232, 231, 231, 230, (0,94,114): 230, 233, 244, 255, 255, 248, 204, 193, 189, 195, 213, (0,94,125): 222, 223, 217, 226, 226, 226, 226, 228, 229, 231, 233, (0,94,136): 234, 235, 235, 235, 235, 232, 232, 233, 235, 233, 230, (0,94,147): 224, 219, 209, 198, 190, 179, 174, 170, 166, 164, 163, (0,94,158): 163, 160, 161, 150, 156, 154, 154, 195, 237, 237, 235, (0,94,169): 232, 220, 202, 182, 161, 142, 127, 78, 75, 80, 76, 69, (0,94,181): 71, 87, 105, 127, 130, 131, 125, 131, 142, 137, 124, 88, (0,94,193): 71, 57, 54, 58, 61, 74, 87, 101, 104, 108, 108, 105, 99, (0,94,206): 97, 97, 102, 108, 109, 110, 108, 107, 107, 109, 112, (0,94,217): 113, 112, 112, 111, 113, 116, 119, 126, 123, 121, (0,95,0): 73, 74, 73, 73, 73, 73, 72, 72, 73, 74, 76, 78, 82, 84, (0,95,14): 88, 89, 93, 91, 92, 94, 100, 110, 120, 125, 129, 131, (0,95,26): 133, 131, 125, 117, 111, 107, 105, 106, 109, 109, 109, (0,95,37): 108, 107, 106, 103, 104, 104, 107, 110, 113, 113, 112, (0,95,48): 112, 111, 112, 115, 119, 126, 137, 147, 162, 166, 171, (0,95,59): 186, 200, 211, 217, 221, 223, 223, 223, 223, 223, 221, (0,95,70): 216, 209, 207, 204, 202, 203, 206, 209, 211, 206, 190, (0,95,81): 175, 168, 172, 182, 193, 201, 204, 204, 224, 248, 224, (0,95,92): 208, 202, 171, 184, 202, 204, 202, 203, 205, 210, 220, (0,95,103): 225, 226, 226, 227, 226, 226, 227, 229, 229, 228, 224, (0,95,114): 221, 225, 234, 234, 211, 184, 184, 190, 201, 208, 214, (0,95,125): 217, 225, 231, 226, 226, 226, 228, 229, 231, 233, 234, (0,95,136): 234, 234, 235, 235, 233, 232, 231, 231, 233, 230, 226, (0,95,147): 222, 214, 204, 194, 185, 174, 170, 166, 162, 160, 158, (0,95,158): 159, 155, 152, 140, 153, 152, 151, 205, 246, 222, 229, (0,95,169): 217, 200, 183, 167, 155, 141, 128, 84, 67, 66, 72, 88, (0,95,181): 110, 132, 148, 135, 134, 124, 110, 117, 130, 117, 91, (0,95,192): 59, 52, 53, 61, 60, 57, 67, 85, 103, 105, 108, 109, 106, (0,95,205): 102, 98, 99, 104, 108, 111, 110, 108, 105, 106, 106, (0,95,216): 115, 115, 115, 114, 114, 115, 119, 122, 119, 117, 116, (0,96,0): 82, 82, 82, 82, 82, 82, 82, 82, 85, 86, 87, 88, 89, 91, (0,96,14): 92, 92, 98, 97, 97, 98, 101, 107, 113, 117, 122, 124, (0,96,26): 127, 127, 124, 117, 109, 101, 99, 96, 95, 95, 94, 94, 97, (0,96,39): 98, 101, 103, 105, 107, 107, 109, 109, 106, 106, 114, (0,96,50): 113, 117, 139, 156, 162, 170, 164, 165, 166, 176, 194, (0,96,61): 210, 221, 222, 223, 222, 222, 222, 222, 219, 216, 215, (0,96,72): 213, 212, 210, 210, 210, 210, 212, 205, 189, 182, 174, (0,96,83): 169, 171, 183, 192, 195, 200, 206, 212, 219, 221, 212, (0,96,94): 194, 183, 221, 216, 212, 211, 215, 219, 221, 223, 223, (0,96,105): 230, 234, 234, 229, 224, 222, 220, 220, 209, 199, 191, (0,96,116): 185, 186, 191, 195, 195, 199, 208, 217, 224, 229, 233, (0,96,127): 236, 230, 229, 229, 229, 229, 229, 229, 229, 224, 225, (0,96,138): 228, 229, 230, 231, 231, 231, 235, 230, 223, 220, 214, (0,96,149): 205, 193, 183, 169, 163, 160, 155, 153, 150, 151, 145, (0,96,160): 144, 139, 135, 145, 188, 228, 229, 205, 189, 181, 170, (0,96,171): 162, 155, 150, 149, 138, 88, 61, 56, 86, 127, 155, 161, (0,96,183): 156, 146, 126, 104, 92, 89, 84, 72, 63, 58, 64, 60, 58, (0,96,196): 60, 58, 65, 82, 93, 103, 112, 111, 108, 106, 105, 103, (0,96,208): 108, 109, 111, 108, 109, 107, 109, 109, 113, 113, 114, (0,96,219): 114, 116, 118, 121, 122, 123, 111, 101, (0,97,0): 87, 87, 87, 87, 87, 87, 87, 87, 88, 89, 89, 91, 92, 93, (0,97,14): 94, 95, 100, 99, 99, 99, 102, 106, 110, 112, 114, 116, (0,97,26): 118, 118, 115, 109, 103, 98, 94, 90, 89, 87, 88, 88, 92, (0,97,39): 94, 99, 99, 102, 103, 105, 106, 107, 106, 102, 111, 119, (0,97,51): 129, 153, 168, 175, 180, 173, 170, 171, 177, 190, 204, (0,97,62): 216, 220, 221, 220, 220, 220, 219, 218, 217, 215, 215, (0,97,73): 213, 213, 213, 212, 212, 212, 206, 190, 182, 174, 166, (0,97,84): 167, 178, 185, 190, 198, 199, 203, 210, 220, 225, 223, (0,97,95): 221, 219, 214, 209, 208, 211, 215, 217, 218, 230, 234, (0,97,106): 236, 234, 230, 226, 225, 219, 205, 194, 187, 180, 178, (0,97,117): 181, 186, 191, 198, 205, 213, 220, 226, 230, 235, 239, (0,97,128): 233, 231, 231, 230, 230, 229, 229, 227, 226, 227, 227, (0,97,139): 228, 228, 228, 229, 229, 228, 227, 223, 217, 208, 196, (0,97,150): 183, 172, 165, 160, 156, 151, 150, 146, 147, 140, 128, (0,97,161): 128, 137, 157, 191, 215, 209, 183, 172, 164, 157, 152, (0,97,172): 151, 151, 152, 140, 96, 83, 94, 122, 153, 165, 153, 136, (0,97,184): 106, 97, 84, 74, 70, 63, 57, 53, 58, 65, 61, 58, 61, 58, (0,97,198): 64, 82, 94, 103, 113, 112, 110, 107, 107, 104, 109, 110, (0,97,210): 109, 109, 107, 107, 108, 109, 112, 112, 112, 115, 117, (0,97,221): 120, 120, 120, 110, 100, 90, (0,98,0): 93, 93, 93, 93, 93, 93, 93, 93, 91, 92, 93, 94, 95, 96, (0,98,14): 97, 97, 101, 101, 100, 100, 101, 102, 104, 104, 105, 106, (0,98,26): 107, 107, 105, 102, 98, 95, 90, 87, 85, 82, 81, 83, 87, (0,98,39): 88, 94, 94, 97, 99, 103, 105, 107, 105, 101, 113, 123, (0,98,51): 136, 162, 175, 177, 182, 182, 183, 182, 184, 189, 197, (0,98,62): 204, 211, 217, 219, 219, 219, 218, 217, 217, 215, 215, (0,98,73): 213, 213, 212, 212, 212, 210, 205, 192, 182, 173, 163, (0,98,84): 163, 170, 179, 185, 196, 196, 197, 200, 208, 216, 220, (0,98,95): 225, 216, 215, 210, 211, 216, 222, 227, 232, 236, 237, (0,98,106): 234, 231, 230, 227, 224, 217, 193, 184, 179, 175, 175, (0,98,117): 178, 182, 187, 200, 205, 213, 217, 223, 229, 234, 238, (0,98,128): 234, 233, 233, 231, 231, 230, 229, 229, 227, 228, 228, (0,98,139): 227, 227, 226, 225, 222, 221, 220, 218, 211, 200, 185, (0,98,150): 173, 165, 161, 157, 153, 148, 147, 144, 144, 138, 122, (0,98,161): 121, 136, 160, 185, 192, 184, 171, 162, 156, 153, 151, (0,98,172): 151, 151, 152, 139, 115, 122, 147, 164, 171, 158, 124, (0,98,183): 91, 63, 65, 65, 63, 58, 54, 54, 53, 57, 64, 61, 57, 61, (0,98,197): 57, 64, 81, 96, 105, 115, 114, 112, 109, 109, 107, 112, (0,98,209): 113, 111, 110, 108, 108, 108, 110, 112, 112, 112, 117, (0,98,220): 120, 121, 117, 113, 95, 86, 79, (0,99,0): 97, 97, 97, 97, 97, 97, 97, 97, 95, 96, 96, 97, 98, 99, (0,99,14): 100, 100, 101, 102, 102, 103, 103, 102, 102, 102, 104, (0,99,25): 104, 104, 104, 103, 101, 100, 99, 93, 90, 86, 82, 80, 80, (0,99,38): 84, 85, 87, 89, 91, 93, 97, 100, 102, 102, 103, 111, 119, (0,99,51): 138, 169, 182, 180, 183, 193, 195, 195, 193, 189, 189, (0,99,62): 193, 202, 213, 217, 218, 217, 218, 216, 216, 213, 213, (0,99,73): 212, 212, 212, 212, 212, 210, 205, 193, 182, 172, 162, (0,99,84): 157, 162, 172, 181, 188, 191, 195, 197, 203, 206, 206, (0,99,95): 211, 220, 223, 218, 218, 222, 226, 232, 235, 235, 235, (0,99,106): 232, 229, 228, 224, 217, 204, 185, 177, 175, 174, 174, (0,99,117): 176, 179, 181, 195, 202, 210, 217, 223, 227, 234, 236, (0,99,128): 237, 235, 235, 234, 234, 232, 231, 230, 226, 225, 223, (0,99,139): 224, 222, 220, 219, 217, 214, 213, 210, 202, 187, 175, (0,99,150): 164, 158, 156, 152, 148, 146, 143, 141, 140, 135, 128, (0,99,161): 118, 129, 153, 170, 172, 169, 166, 157, 152, 148, 148, (0,99,172): 149, 149, 151, 141, 137, 153, 173, 166, 144, 115, 78, (0,99,183): 47, 45, 51, 58, 61, 59, 58, 58, 60, 57, 63, 60, 57, 60, (0,99,197): 57, 63, 80, 97, 106, 116, 115, 114, 111, 111, 109, 112, (0,99,209): 115, 112, 111, 109, 109, 110, 112, 113, 114, 116, 121, (0,99,220): 123, 119, 109, 101, 90, 82, 77, (0,100,0): 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 100, 100, 101, (0,100,13): 102, 102, 102, 102, 103, 104, 105, 105, 105, 104, 103, (0,100,24): 106, 105, 105, 104, 104, 104, 104, 104, 100, 96, 91, 86, (0,100,36): 80, 78, 78, 78, 80, 82, 84, 86, 88, 91, 93, 95, 99, 105, (0,100,50): 112, 134, 172, 189, 191, 197, 205, 210, 209, 203, 194, (0,100,61): 187, 184, 190, 208, 215, 216, 215, 217, 214, 214, 212, (0,100,72): 212, 212, 212, 210, 210, 210, 210, 205, 193, 182, 171, (0,100,83): 161, 154, 155, 163, 175, 179, 186, 194, 199, 203, 206, (0,100,94): 208, 216, 232, 234, 228, 226, 223, 223, 225, 225, 233, (0,100,105): 232, 231, 230, 226, 218, 206, 191, 181, 174, 174, 173, (0,100,116): 173, 173, 173, 175, 184, 193, 205, 215, 221, 225, 231, (0,100,127): 235, 237, 238, 238, 237, 234, 232, 231, 228, 225, 223, (0,100,138): 223, 220, 219, 217, 215, 212, 207, 203, 197, 185, 173, (0,100,149): 163, 158, 154, 150, 147, 145, 141, 138, 137, 136, 131, (0,100,160): 131, 117, 123, 147, 164, 161, 158, 161, 152, 146, 144, (0,100,171): 141, 143, 148, 151, 143, 141, 152, 157, 128, 93, 68, (0,100,182): 50, 36, 45, 48, 53, 57, 60, 61, 58, 58, 57, 62, 59, 56, (0,100,196): 59, 56, 62, 80, 98, 107, 117, 116, 115, 113, 113, 111, (0,100,208): 114, 114, 114, 112, 109, 109, 112, 115, 116, 118, 120, (0,100,219): 123, 122, 113, 100, 89, 92, 85, 81, (0,101,0): 101, 101, 101, 101, 101, 101, 101, 101, 101, 102, 102, (0,101,11): 102, 103, 103, 104, 104, 103, 104, 105, 106, 106, 106, (0,101,22): 106, 106, 106, 105, 104, 104, 104, 104, 105, 106, 102, (0,101,33): 98, 94, 88, 83, 77, 75, 73, 75, 76, 76, 78, 80, 81, 83, (0,101,47): 84, 92, 95, 100, 124, 161, 181, 193, 211, 214, 220, 219, (0,101,59): 210, 200, 189, 178, 183, 204, 212, 213, 213, 214, 213, (0,101,70): 213, 212, 212, 210, 210, 210, 210, 210, 210, 205, 193, (0,101,81): 181, 171, 162, 153, 149, 155, 167, 178, 185, 191, 195, (0,101,92): 197, 203, 210, 223, 233, 237, 234, 232, 229, 228, 225, (0,101,103): 224, 223, 224, 226, 224, 217, 207, 194, 181, 177, 172, (0,101,114): 172, 171, 170, 169, 169, 171, 175, 183, 197, 206, 214, (0,101,125): 222, 227, 232, 236, 239, 239, 238, 235, 233, 231, 228, (0,101,136): 226, 224, 222, 218, 217, 213, 209, 205, 195, 187, 179, (0,101,147): 170, 161, 155, 152, 149, 145, 141, 138, 136, 134, 132, (0,101,158): 131, 127, 125, 116, 126, 151, 163, 156, 149, 152, 149, (0,101,169): 144, 142, 140, 142, 147, 153, 145, 126, 121, 114, 85, (0,101,180): 59, 47, 48, 48, 51, 52, 54, 60, 64, 63, 60, 55, 56, 62, (0,101,194): 58, 55, 58, 55, 61, 79, 98, 107, 117, 117, 116, 113, (0,101,206): 114, 112, 114, 115, 114, 112, 110, 112, 115, 118, 121, (0,101,217): 123, 122, 120, 113, 103, 93, 88, 95, 87, 82, (0,102,0): 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, (0,102,11): 104, 104, 104, 104, 105, 106, 106, 106, 106, 105, 105, (0,102,22): 105, 105, 105, 104, 104, 104, 104, 104, 104, 104, 102, (0,102,33): 101, 98, 92, 87, 80, 76, 73, 73, 71, 71, 71, 72, 73, 72, (0,102,47): 74, 82, 89, 92, 105, 129, 149, 174, 209, 217, 223, 223, (0,102,59): 217, 207, 195, 183, 180, 201, 211, 212, 211, 213, 211, (0,102,70): 211, 211, 210, 209, 209, 209, 209, 209, 209, 205, 193, (0,102,81): 181, 172, 163, 152, 144, 149, 161, 173, 182, 191, 192, (0,102,92): 194, 199, 208, 222, 232, 238, 236, 233, 229, 224, 220, (0,102,103): 217, 204, 207, 211, 207, 199, 189, 180, 171, 170, 167, (0,102,114): 167, 166, 165, 166, 166, 169, 170, 177, 188, 195, 203, (0,102,125): 211, 220, 228, 233, 236, 236, 235, 233, 232, 229, 226, (0,102,136): 224, 221, 218, 213, 207, 202, 199, 191, 177, 169, 162, (0,102,147): 156, 152, 148, 145, 141, 139, 137, 135, 131, 130, 128, (0,102,158): 127, 125, 120, 120, 133, 152, 157, 148, 144, 149, 147, (0,102,169): 144, 144, 144, 146, 149, 152, 142, 107, 86, 74, 61, 54, (0,102,181): 50, 52, 53, 54, 56, 61, 67, 69, 67, 64, 59, 55, 61, 58, (0,102,195): 55, 58, 54, 61, 78, 97, 107, 117, 117, 116, 114, 114, (0,102,207): 112, 113, 114, 113, 112, 111, 114, 117, 121, 127, 126, (0,102,218): 122, 113, 102, 95, 93, 94, 97, 89, 82, (0,103,0): 104, 104, 104, 104, 104, 104, 104, 104, 103, 104, 104, (0,103,11): 104, 104, 104, 105, 105, 109, 108, 106, 105, 104, 103, (0,103,22): 103, 104, 105, 105, 105, 105, 104, 104, 104, 104, 103, (0,103,33): 102, 101, 98, 92, 85, 80, 77, 69, 68, 68, 68, 66, 66, (0,103,46): 66, 67, 74, 84, 85, 89, 101, 115, 146, 192, 215, 222, (0,103,58): 223, 220, 213, 204, 189, 184, 203, 207, 208, 210, 210, (0,103,69): 210, 210, 210, 209, 209, 209, 209, 209, 209, 209, 205, (0,103,80): 193, 182, 173, 167, 153, 143, 147, 159, 163, 176, 192, (0,103,91): 198, 204, 208, 217, 227, 236, 238, 233, 226, 214, 202, (0,103,102): 192, 187, 183, 187, 190, 187, 179, 169, 164, 160, 161, (0,103,113): 159, 160, 161, 161, 163, 163, 164, 169, 173, 178, 184, (0,103,124): 191, 201, 212, 224, 229, 232, 232, 231, 229, 228, 225, (0,103,135): 222, 220, 216, 210, 202, 196, 188, 184, 176, 162, 153, (0,103,146): 149, 147, 145, 143, 139, 133, 136, 133, 131, 128, 126, (0,103,157): 124, 123, 123, 121, 128, 140, 150, 146, 139, 144, 153, (0,103,168): 145, 146, 148, 150, 150, 151, 150, 140, 97, 69, 54, 56, (0,103,180): 62, 60, 51, 45, 49, 55, 66, 71, 72, 66, 63, 59, 55, 61, (0,103,194): 57, 54, 58, 54, 60, 78, 97, 106, 117, 116, 116, 114, (0,103,206): 114, 112, 113, 113, 113, 112, 112, 115, 119, 123, 130, (0,103,217): 128, 120, 106, 93, 89, 94, 101, 99, 90, 83, (0,104,0): 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, (0,104,11): 105, 105, 105, 105, 105, 106, 106, 106, 106, 106, 106, (0,104,22): 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 103, (0,104,33): 103, 102, 101, 98, 90, 83, 77, 72, 69, 65, 64, 63, 63, (0,104,46): 63, 63, 72, 74, 67, 75, 92, 96, 128, 189, 217, 224, 226, (0,104,59): 229, 226, 215, 203, 201, 199, 203, 204, 205, 205, 206, (0,104,70): 209, 211, 210, 210, 210, 210, 209, 209, 209, 206, 187, (0,104,81): 182, 177, 168, 154, 148, 149, 156, 174, 179, 186, 193, (0,104,92): 205, 215, 226, 234, 232, 232, 221, 201, 187, 180, 176, (0,104,103): 169, 171, 169, 164, 160, 155, 150, 147, 146, 150, 152, (0,104,114): 153, 154, 155, 156, 158, 161, 162, 165, 171, 176, 182, (0,104,125): 190, 197, 204, 218, 224, 226, 226, 226, 222, 218, 215, (0,104,136): 216, 210, 199, 187, 178, 170, 166, 159, 153, 146, 145, (0,104,147): 141, 139, 136, 135, 133, 128, 125, 124, 124, 124, 123, (0,104,158): 121, 120, 119, 139, 151, 147, 142, 145, 147, 142, 152, (0,104,169): 152, 145, 144, 151, 149, 148, 147, 93, 73, 65, 66, 62, (0,104,181): 55, 50, 52, 52, 72, 90, 87, 77, 68, 65, 61, 58, 62, 59, (0,104,195): 58, 59, 52, 59, 80, 99, 108, 117, 115, 114, 112, 114, (0,104,207): 113, 112, 113, 114, 114, 115, 118, 123, 127, 130, 120, (0,104,218): 106, 96, 94, 97, 102, 104, 100, 91, 84, (0,105,0): 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, (0,105,11): 105, 105, 105, 105, 105, 106, 106, 106, 106, 106, 106, (0,105,22): 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 104, (0,105,33): 104, 103, 103, 100, 94, 85, 79, 73, 69, 66, 64, 63, 62, (0,105,46): 62, 61, 66, 65, 64, 72, 77, 82, 124, 185, 201, 221, 234, (0,105,59): 230, 226, 226, 219, 209, 205, 206, 207, 207, 207, 206, (0,105,70): 205, 205, 206, 208, 208, 208, 208, 208, 208, 205, 201, (0,105,81): 197, 188, 174, 159, 150, 150, 155, 168, 180, 195, 209, (0,105,92): 222, 230, 233, 234, 224, 219, 208, 190, 175, 171, 165, (0,105,103): 159, 159, 156, 151, 149, 143, 139, 135, 136, 142, 143, (0,105,114): 146, 145, 148, 148, 150, 153, 159, 161, 164, 168, 173, (0,105,125): 178, 184, 189, 202, 208, 211, 213, 215, 214, 212, 209, (0,105,136): 202, 195, 185, 176, 169, 164, 159, 153, 146, 140, 138, (0,105,147): 136, 134, 132, 131, 129, 126, 124, 123, 121, 120, 119, (0,105,158): 117, 119, 128, 144, 152, 145, 140, 143, 146, 144, 147, (0,105,169): 152, 152, 151, 156, 148, 142, 138, 93, 88, 95, 90, 73, (0,105,181): 54, 52, 60, 79, 89, 95, 87, 74, 66, 63, 60, 57, 61, 58, (0,105,195): 57, 60, 53, 59, 80, 100, 108, 117, 116, 114, 113, 114, (0,105,207): 113, 115, 114, 112, 113, 116, 120, 124, 127, 123, 111, (0,105,218): 99, 93, 97, 101, 101, 99, 100, 91, 84, (0,106,0): 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, (0,106,11): 105, 105, 105, 105, 105, 106, 106, 106, 106, 106, 106, (0,106,22): 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 108, (0,106,33): 107, 105, 105, 102, 97, 89, 83, 77, 72, 68, 65, 65, 63, (0,106,46): 62, 61, 62, 58, 66, 73, 69, 84, 132, 181, 179, 214, 239, (0,106,59): 236, 230, 235, 232, 219, 203, 201, 201, 201, 203, 202, (0,106,70): 200, 200, 202, 203, 203, 203, 203, 204, 204, 203, 194, (0,106,81): 190, 182, 173, 161, 158, 160, 167, 188, 199, 214, 225, (0,106,92): 231, 233, 229, 223, 216, 209, 195, 177, 166, 161, 156, (0,106,103): 152, 149, 146, 143, 138, 133, 130, 126, 129, 132, 136, (0,106,114): 137, 137, 139, 139, 142, 143, 150, 152, 155, 158, 162, (0,106,125): 167, 170, 175, 185, 190, 193, 196, 197, 197, 195, 193, (0,106,136): 182, 178, 170, 163, 158, 155, 152, 148, 141, 136, 135, (0,106,147): 132, 130, 128, 128, 127, 125, 122, 122, 119, 118, 117, (0,106,158): 116, 118, 136, 148, 150, 142, 136, 141, 145, 146, 146, (0,106,169): 153, 153, 154, 154, 147, 141, 141, 129, 126, 128, 108, (0,106,180): 76, 54, 61, 76, 101, 101, 93, 80, 69, 63, 61, 58, 56, (0,106,193): 59, 56, 57, 61, 54, 60, 80, 100, 109, 118, 116, 115, (0,106,205): 113, 114, 112, 117, 112, 110, 112, 117, 121, 125, 124, (0,106,216): 112, 102, 92, 92, 101, 105, 102, 95, 99, 90, 83, (0,107,0): 105, 105, 105, 105, 105, 105, 105, 105, 106, 106, 106, (0,107,11): 106, 106, 106, 106, 106, 107, 107, 107, 107, 107, 107, (0,107,22): 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 110, (0,107,33): 109, 106, 106, 104, 101, 95, 89, 82, 77, 71, 68, 67, 66, (0,107,46): 64, 62, 63, 60, 71, 76, 77, 110, 152, 167, 158, 197, (0,107,58): 229, 239, 237, 237, 234, 227, 205, 199, 197, 197, 200, (0,107,69): 202, 203, 205, 209, 209, 210, 210, 211, 211, 211, 211, (0,107,80): 211, 209, 203, 198, 194, 195, 199, 206, 217, 221, 226, (0,107,91): 228, 228, 226, 224, 220, 214, 202, 189, 173, 161, 155, (0,107,102): 151, 148, 142, 140, 138, 133, 130, 125, 123, 124, 128, (0,107,113): 131, 131, 132, 132, 133, 135, 136, 137, 140, 143, 147, (0,107,124): 150, 156, 160, 163, 170, 173, 175, 176, 176, 176, 175, (0,107,135): 174, 168, 165, 158, 155, 149, 146, 145, 142, 136, 133, (0,107,146): 131, 129, 127, 126, 125, 125, 124, 122, 121, 119, 115, (0,107,157): 113, 114, 117, 140, 146, 145, 138, 135, 139, 147, 151, (0,107,168): 150, 155, 152, 148, 150, 144, 144, 151, 148, 133, 117, (0,107,179): 89, 67, 63, 80, 99, 101, 92, 78, 67, 63, 62, 61, 59, (0,107,192): 55, 58, 55, 57, 61, 55, 60, 79, 98, 108, 118, 117, 116, (0,107,205): 114, 114, 111, 113, 111, 111, 115, 122, 124, 122, 117, (0,107,216): 99, 94, 91, 95, 103, 106, 102, 96, 98, 89, 82, (0,108,0): 105, 105, 105, 105, 105, 105, 105, 105, 106, 106, 106, (0,108,11): 106, 106, 106, 106, 106, 107, 107, 107, 107, 107, 107, (0,108,22): 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 111, (0,108,33): 110, 107, 107, 107, 104, 100, 96, 88, 82, 78, 73, 71, (0,108,45): 68, 66, 63, 64, 65, 77, 83, 101, 148, 170, 153, 155, (0,108,57): 179, 214, 241, 245, 235, 232, 233, 217, 211, 205, 203, (0,108,68): 206, 210, 213, 215, 218, 218, 221, 221, 222, 222, 224, (0,108,79): 224, 235, 232, 227, 220, 216, 216, 219, 224, 224, 225, (0,108,90): 227, 226, 228, 226, 228, 224, 218, 203, 188, 174, 163, (0,108,101): 153, 147, 146, 141, 138, 137, 132, 130, 128, 125, 125, (0,108,112): 127, 128, 128, 128, 128, 129, 129, 131, 130, 132, 134, (0,108,123): 138, 140, 144, 146, 148, 155, 158, 159, 160, 161, 162, (0,108,134): 162, 162, 159, 156, 152, 148, 143, 140, 137, 135, 132, (0,108,145): 130, 129, 128, 125, 125, 124, 123, 122, 121, 120, 118, (0,108,156): 113, 111, 113, 116, 140, 141, 137, 132, 133, 140, 147, (0,108,167): 152, 152, 156, 152, 147, 146, 136, 131, 134, 110, 90, (0,108,178): 74, 65, 73, 87, 100, 106, 88, 76, 63, 58, 60, 62, 60, (0,108,191): 58, 56, 58, 54, 56, 62, 55, 59, 76, 95, 105, 116, 116, (0,108,204): 116, 114, 115, 112, 110, 109, 112, 119, 124, 122, 114, (0,108,215): 105, 90, 92, 97, 101, 103, 103, 104, 102, 99, 89, 82, (0,109,0): 105, 105, 105, 105, 105, 105, 105, 105, 107, 107, 107, (0,109,11): 107, 107, 107, 107, 107, 108, 108, 108, 108, 108, 108, (0,109,22): 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 111, (0,109,33): 110, 107, 108, 108, 107, 103, 100, 94, 89, 83, 77, 75, (0,109,45): 71, 69, 64, 61, 66, 81, 98, 129, 169, 178, 155, 175, (0,109,57): 184, 208, 242, 254, 243, 237, 242, 227, 218, 212, 208, (0,109,68): 209, 212, 214, 214, 217, 218, 220, 221, 222, 222, 224, (0,109,79): 224, 226, 225, 220, 217, 214, 215, 216, 219, 224, 228, (0,109,90): 230, 232, 231, 228, 223, 219, 221, 205, 188, 175, 165, (0,109,101): 153, 146, 144, 140, 137, 136, 134, 132, 129, 129, 128, (0,109,112): 128, 127, 127, 127, 127, 127, 127, 127, 128, 129, 131, (0,109,123): 131, 133, 132, 133, 133, 141, 143, 145, 148, 151, 154, (0,109,134): 158, 159, 153, 150, 147, 144, 138, 135, 132, 130, 130, (0,109,145): 129, 127, 126, 123, 123, 123, 122, 120, 120, 119, 115, (0,109,156): 112, 111, 114, 118, 139, 137, 132, 130, 133, 139, 146, (0,109,167): 151, 147, 153, 151, 149, 144, 123, 102, 96, 69, 62, 63, (0,109,179): 74, 95, 107, 101, 88, 77, 64, 54, 55, 61, 61, 58, 55, (0,109,192): 56, 58, 54, 56, 62, 55, 57, 73, 91, 101, 114, 115, 115, (0,109,205): 114, 115, 112, 109, 111, 115, 120, 122, 115, 105, 96, (0,109,216): 89, 94, 101, 103, 102, 101, 103, 104, 97, 88, 81, (0,110,0): 105, 105, 105, 105, 105, 105, 105, 105, 107, 107, 107, (0,110,11): 107, 107, 107, 107, 107, 108, 108, 108, 108, 108, 108, (0,110,22): 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 111, (0,110,33): 109, 107, 108, 109, 108, 105, 102, 98, 94, 88, 82, 79, (0,110,45): 74, 73, 65, 60, 66, 86, 122, 163, 178, 180, 183, 197, (0,110,57): 193, 200, 222, 241, 242, 233, 228, 219, 213, 207, 205, (0,110,68): 207, 208, 208, 205, 210, 210, 212, 213, 215, 216, 217, (0,110,79): 218, 221, 221, 222, 221, 223, 224, 227, 229, 231, 234, (0,110,90): 236, 236, 231, 226, 219, 214, 219, 204, 188, 177, 169, (0,110,101): 155, 147, 145, 139, 139, 138, 137, 136, 135, 136, 133, (0,110,112): 128, 125, 125, 125, 125, 125, 125, 124, 124, 124, 126, (0,110,123): 126, 125, 125, 126, 126, 131, 131, 135, 137, 141, 145, (0,110,134): 149, 150, 146, 145, 141, 138, 135, 131, 128, 126, 128, (0,110,145): 128, 126, 125, 124, 122, 122, 121, 117, 118, 118, 114, (0,110,156): 111, 111, 115, 120, 138, 134, 129, 130, 133, 137, 142, (0,110,167): 145, 146, 151, 147, 145, 138, 110, 80, 69, 65, 75, 87, (0,110,179): 96, 103, 100, 86, 71, 65, 55, 49, 54, 61, 60, 56, 55, (0,110,192): 57, 59, 54, 57, 63, 55, 55, 70, 86, 97, 111, 113, 115, (0,110,205): 114, 116, 113, 111, 113, 117, 118, 115, 106, 98, 91, (0,110,216): 94, 96, 99, 101, 102, 102, 102, 101, 96, 87, 80, (0,111,0): 105, 105, 105, 105, 105, 105, 105, 105, 107, 107, 107, (0,111,11): 107, 107, 107, 107, 107, 108, 108, 108, 108, 108, 108, (0,111,22): 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 110, (0,111,33): 109, 109, 109, 109, 108, 106, 103, 100, 96, 90, 85, 80, (0,111,45): 77, 73, 69, 65, 71, 92, 137, 175, 169, 169, 203, 195, (0,111,57): 189, 185, 195, 216, 229, 221, 205, 209, 207, 205, 206, (0,111,68): 210, 210, 206, 201, 207, 209, 210, 212, 214, 217, 220, (0,111,79): 222, 222, 223, 222, 223, 225, 224, 224, 225, 232, 234, (0,111,90): 232, 231, 228, 228, 226, 223, 215, 200, 184, 177, 169, (0,111,101): 155, 146, 142, 137, 136, 136, 136, 136, 138, 137, 136, (0,111,112): 128, 126, 126, 124, 124, 124, 124, 124, 120, 121, 124, (0,111,123): 124, 125, 125, 125, 125, 126, 127, 128, 129, 132, 133, (0,111,134): 134, 134, 138, 136, 136, 133, 132, 128, 126, 125, 125, (0,111,145): 125, 124, 121, 122, 120, 120, 120, 114, 117, 118, 114, (0,111,156): 110, 110, 116, 120, 138, 132, 128, 132, 136, 140, 140, (0,111,167): 141, 149, 148, 139, 132, 127, 101, 71, 61, 73, 90, 103, (0,111,179): 99, 89, 83, 78, 74, 58, 48, 44, 53, 61, 60, 58, 57, 59, (0,111,193): 59, 55, 57, 63, 56, 56, 69, 85, 97, 110, 114, 114, 114, (0,111,206): 115, 113, 114, 117, 118, 116, 111, 102, 94, 91, 100, (0,111,217): 97, 96, 99, 102, 103, 101, 97, 96, 87, 80, (0,112,0): 105, 105, 105, 106, 106, 107, 107, 107, 106, 106, 106, (0,112,11): 106, 106, 106, 106, 106, 107, 107, 107, 107, 107, 107, (0,112,22): 107, 107, 108, 108, 108, 108, 108, 108, 108, 110, 107, (0,112,33): 112, 116, 114, 110, 106, 104, 104, 103, 103, 99, 91, 86, (0,112,45): 83, 78, 71, 76, 74, 98, 145, 182, 187, 183, 185, 182, (0,112,57): 189, 194, 200, 205, 208, 211, 211, 205, 205, 208, 211, (0,112,68): 212, 207, 206, 207, 200, 201, 203, 207, 212, 216, 222, (0,112,79): 222, 225, 223, 223, 224, 224, 225, 225, 227, 227, 228, (0,112,90): 228, 227, 227, 227, 227, 224, 211, 197, 184, 170, 160, (0,112,101): 151, 142, 134, 131, 129, 129, 129, 132, 135, 136, 136, (0,112,112): 133, 132, 132, 129, 129, 128, 128, 128, 126, 126, 126, (0,112,123): 126, 126, 126, 126, 126, 125, 125, 126, 126, 128, 128, (0,112,134): 128, 126, 128, 126, 125, 124, 123, 122, 120, 120, 120, (0,112,145): 120, 119, 118, 118, 116, 115, 113, 109, 114, 110, 109, (0,112,156): 111, 109, 113, 127, 133, 133, 134, 136, 139, 144, 148, (0,112,167): 149, 147, 141, 137, 130, 111, 89, 77, 79, 106, 98, 89, (0,112,179): 85, 82, 77, 73, 67, 55, 52, 50, 54, 60, 64, 64, 60, 53, (0,112,193): 51, 52, 55, 57, 59, 61, 60, 83, 97, 110, 115, 114, 114, (0,112,206): 115, 114, 117, 126, 126, 112, 98, 94, 94, 94, 96, 98, (0,112,218): 100, 102, 101, 99, 96, 94, 95, 84, 75, (0,113,0): 105, 105, 105, 106, 106, 107, 107, 107, 106, 106, 106, (0,113,11): 106, 106, 106, 106, 106, 107, 107, 107, 107, 107, 107, (0,113,22): 107, 107, 108, 108, 108, 108, 108, 108, 108, 110, 114, (0,113,33): 113, 114, 113, 114, 111, 109, 106, 103, 107, 111, 108, (0,113,44): 104, 99, 91, 82, 80, 72, 81, 107, 127, 132, 136, 147, (0,113,56): 177, 184, 187, 192, 192, 193, 194, 194, 205, 197, 192, (0,113,67): 195, 205, 209, 205, 199, 202, 202, 204, 208, 214, 219, (0,113,78): 223, 224, 223, 223, 223, 223, 224, 224, 225, 225, 224, (0,113,89): 225, 224, 224, 226, 226, 226, 224, 213, 200, 186, 172, (0,113,100): 160, 148, 138, 130, 128, 126, 126, 127, 131, 134, 136, (0,113,111): 137, 135, 133, 132, 132, 131, 130, 130, 130, 127, 127, (0,113,122): 127, 127, 126, 126, 126, 126, 125, 125, 125, 125, 125, (0,113,133): 125, 124, 124, 124, 122, 122, 121, 121, 121, 119, 119, (0,113,144): 119, 119, 116, 115, 114, 114, 112, 112, 107, 113, 109, (0,113,155): 108, 111, 108, 112, 126, 132, 133, 136, 139, 144, 148, (0,113,166): 149, 148, 138, 133, 128, 123, 115, 104, 102, 103, 94, (0,113,177): 88, 80, 76, 75, 75, 71, 67, 60, 56, 54, 55, 60, 63, 62, (0,113,191): 59, 52, 51, 53, 54, 58, 60, 62, 62, 81, 94, 107, 112, (0,113,204): 112, 113, 115, 115, 120, 124, 120, 107, 96, 93, 93, 92, (0,113,216): 96, 97, 99, 101, 100, 98, 96, 94, 93, 82, 73, (0,114,0): 105, 105, 105, 106, 106, 107, 107, 107, 106, 106, 106, (0,114,11): 106, 106, 106, 106, 106, 107, 107, 107, 107, 107, 107, (0,114,22): 107, 107, 108, 108, 108, 108, 108, 108, 108, 110, 113, (0,114,33): 111, 109, 109, 113, 111, 108, 104, 102, 112, 123, 126, (0,114,44): 127, 122, 112, 101, 84, 70, 67, 77, 83, 85, 93, 108, (0,114,56): 110, 117, 126, 135, 146, 155, 165, 171, 185, 183, 181, (0,114,67): 186, 198, 206, 210, 207, 208, 209, 211, 213, 215, 219, (0,114,78): 222, 222, 222, 222, 222, 221, 223, 222, 223, 223, 222, (0,114,89): 222, 221, 220, 221, 221, 221, 220, 214, 206, 195, 179, (0,114,100): 162, 148, 136, 131, 130, 127, 126, 127, 131, 134, 135, (0,114,111): 136, 135, 132, 132, 132, 130, 130, 128, 128, 127, 127, (0,114,122): 126, 126, 126, 126, 126, 126, 125, 125, 125, 125, 124, (0,114,133): 123, 123, 123, 123, 123, 122, 121, 120, 120, 120, 120, (0,114,144): 116, 116, 115, 115, 114, 113, 111, 111, 106, 111, 109, (0,114,155): 107, 108, 105, 109, 125, 135, 135, 139, 142, 145, 146, (0,114,166): 148, 145, 140, 135, 126, 116, 111, 111, 108, 102, 81, (0,114,177): 75, 69, 68, 69, 71, 71, 69, 63, 60, 57, 55, 58, 60, 59, (0,114,191): 57, 54, 53, 54, 54, 58, 60, 61, 61, 77, 90, 102, 108, (0,114,204): 110, 113, 117, 116, 122, 119, 110, 99, 92, 92, 92, 90, (0,114,216): 95, 97, 98, 100, 99, 97, 95, 93, 91, 80, 70, (0,115,0): 105, 105, 105, 106, 106, 107, 107, 107, 106, 106, 106, (0,115,11): 106, 106, 106, 106, 106, 107, 107, 107, 107, 107, 107, (0,115,22): 107, 107, 108, 108, 108, 108, 108, 108, 108, 110, 114, (0,115,33): 111, 109, 107, 107, 108, 108, 106, 106, 120, 136, 145, (0,115,44): 149, 146, 137, 125, 96, 79, 68, 70, 72, 70, 76, 86, 80, (0,115,57): 82, 86, 89, 92, 97, 101, 109, 136, 157, 173, 181, 188, (0,115,69): 196, 208, 216, 212, 213, 214, 216, 217, 219, 219, 221, (0,115,80): 222, 221, 221, 221, 221, 221, 221, 220, 219, 218, 217, (0,115,91): 217, 218, 218, 219, 217, 214, 211, 201, 186, 167, 152, (0,115,102): 140, 133, 131, 127, 126, 127, 131, 132, 135, 136, 132, (0,115,113): 132, 132, 131, 130, 130, 127, 127, 127, 127, 126, 126, (0,115,124): 126, 126, 126, 126, 125, 124, 125, 123, 123, 123, 123, (0,115,135): 120, 123, 121, 121, 121, 120, 120, 120, 118, 115, 115, (0,115,146): 115, 114, 113, 111, 111, 109, 106, 111, 108, 104, 107, (0,115,157): 104, 108, 124, 138, 140, 141, 143, 144, 145, 144, 140, (0,115,168): 137, 133, 121, 105, 100, 100, 92, 78, 69, 65, 61, 60, (0,115,180): 63, 67, 70, 71, 66, 62, 58, 57, 57, 57, 56, 55, 55, 54, (0,115,194): 54, 54, 58, 59, 60, 60, 74, 86, 98, 106, 110, 115, 119, (0,115,207): 120, 123, 114, 101, 92, 90, 92, 92, 90, 95, 96, 97, 98, (0,115,220): 97, 96, 94, 93, 90, 78, 69, (0,116,0): 104, 104, 104, 105, 105, 106, 106, 106, 105, 105, 105, (0,116,11): 105, 105, 105, 105, 105, 107, 107, 107, 107, 107, 107, (0,116,22): 107, 107, 108, 108, 108, 108, 108, 108, 108, 108, 114, (0,116,33): 116, 115, 109, 106, 108, 115, 122, 129, 144, 160, 168, (0,116,44): 171, 168, 163, 153, 122, 99, 79, 71, 69, 66, 66, 69, 75, (0,116,57): 74, 71, 68, 65, 65, 64, 70, 85, 113, 142, 160, 175, 191, (0,116,70): 204, 211, 213, 215, 216, 217, 218, 218, 218, 218, 221, (0,116,81): 221, 221, 219, 219, 219, 219, 217, 218, 217, 214, 213, (0,116,92): 213, 213, 213, 214, 212, 211, 206, 193, 174, 158, 145, (0,116,103): 138, 132, 129, 128, 128, 129, 132, 134, 135, 132, 131, (0,116,114): 130, 130, 130, 129, 127, 127, 126, 126, 126, 126, 125, (0,116,125): 125, 125, 125, 124, 122, 124, 121, 121, 120, 120, 118, (0,116,136): 121, 121, 120, 118, 118, 117, 117, 116, 114, 113, 113, (0,116,147): 112, 111, 110, 110, 109, 106, 109, 106, 104, 106, 102, (0,116,158): 106, 125, 141, 143, 144, 144, 144, 142, 138, 131, 123, (0,116,169): 118, 107, 93, 89, 89, 79, 63, 58, 55, 52, 53, 56, 61, (0,116,182): 67, 69, 66, 63, 60, 58, 56, 55, 53, 52, 53, 53, 54, 54, (0,116,196): 57, 58, 59, 59, 71, 82, 96, 105, 111, 117, 121, 121, (0,116,208): 120, 110, 96, 90, 91, 94, 94, 93, 96, 97, 98, 98, 97, (0,116,221): 96, 95, 94, 87, 76, 66, (0,117,0): 104, 104, 104, 105, 105, 106, 106, 106, 105, 105, 105, (0,117,11): 105, 105, 105, 105, 105, 107, 107, 107, 107, 107, 107, (0,117,22): 107, 107, 108, 108, 108, 108, 108, 108, 108, 108, 107, (0,117,33): 110, 112, 108, 107, 114, 132, 145, 167, 181, 196, 201, (0,117,44): 201, 197, 192, 185, 164, 136, 102, 80, 70, 62, 59, 58, (0,117,56): 56, 56, 56, 58, 60, 64, 67, 71, 64, 83, 104, 129, 163, (0,117,69): 192, 204, 202, 211, 214, 216, 218, 219, 219, 220, 220, (0,117,80): 221, 221, 219, 219, 218, 218, 218, 217, 217, 215, 214, (0,117,91): 212, 211, 210, 211, 212, 212, 213, 208, 198, 182, 165, (0,117,102): 150, 140, 134, 130, 129, 128, 129, 131, 132, 133, 130, (0,117,113): 130, 130, 130, 129, 127, 127, 126, 126, 126, 126, 126, (0,117,124): 125, 125, 125, 125, 122, 122, 121, 121, 120, 118, 118, (0,117,135): 116, 119, 117, 117, 115, 116, 115, 114, 114, 113, 113, (0,117,146): 112, 111, 110, 109, 108, 106, 104, 108, 105, 102, 104, (0,117,157): 101, 105, 123, 142, 146, 145, 143, 141, 135, 129, 124, (0,117,168): 115, 107, 96, 86, 80, 74, 64, 52, 51, 50, 48, 48, 50, (0,117,181): 53, 57, 60, 63, 63, 62, 58, 58, 53, 51, 49, 51, 51, 52, (0,117,195): 52, 56, 57, 59, 59, 67, 79, 93, 105, 112, 119, 121, (0,117,207): 119, 113, 102, 90, 88, 92, 93, 93, 94, 96, 96, 96, 96, (0,117,220): 96, 95, 94, 93, 85, 74, 65, (0,118,0): 104, 104, 104, 105, 105, 106, 106, 106, 105, 105, 105, (0,118,11): 105, 105, 105, 105, 105, 107, 107, 107, 107, 107, 107, (0,118,22): 107, 107, 108, 108, 108, 108, 108, 108, 108, 108, 106, (0,118,33): 106, 107, 107, 117, 136, 159, 176, 195, 211, 226, 231, (0,118,44): 231, 227, 222, 217, 206, 184, 151, 121, 95, 75, 64, 59, (0,118,56): 62, 61, 61, 59, 59, 58, 57, 58, 63, 69, 81, 99, 137, (0,118,69): 177, 199, 202, 205, 209, 213, 216, 219, 221, 224, 223, (0,118,80): 222, 221, 221, 220, 220, 219, 219, 217, 218, 216, 213, (0,118,91): 212, 211, 210, 211, 212, 217, 217, 209, 200, 188, 172, (0,118,102): 153, 140, 137, 131, 129, 128, 129, 131, 131, 132, 130, (0,118,113): 130, 130, 129, 127, 127, 126, 125, 126, 126, 125, 125, (0,118,124): 125, 125, 125, 125, 122, 121, 120, 120, 119, 116, 115, (0,118,135): 114, 116, 115, 114, 113, 114, 112, 112, 112, 111, 111, (0,118,146): 110, 110, 109, 108, 107, 105, 103, 107, 104, 101, 104, (0,118,157): 98, 102, 122, 144, 146, 145, 142, 136, 129, 120, 114, (0,118,168): 107, 94, 82, 75, 67, 57, 50, 48, 49, 49, 48, 47, 47, (0,118,181): 48, 50, 52, 57, 59, 61, 60, 59, 54, 51, 49, 46, 48, 49, (0,118,195): 50, 55, 57, 58, 58, 63, 75, 91, 104, 113, 119, 119, (0,118,207): 115, 103, 94, 85, 87, 91, 91, 91, 93, 95, 95, 95, 95, (0,118,220): 94, 94, 93, 93, 85, 74, 64, (0,119,0): 104, 104, 104, 105, 105, 106, 106, 106, 105, 105, 105, (0,119,11): 105, 105, 105, 105, 105, 107, 107, 107, 107, 107, 107, (0,119,22): 107, 107, 108, 108, 108, 108, 108, 108, 108, 108, 112, (0,119,33): 110, 108, 116, 135, 161, 188, 206, 207, 224, 242, 250, (0,119,44): 251, 247, 241, 240, 232, 221, 193, 162, 125, 94, 75, 67, (0,119,56): 65, 65, 64, 66, 65, 66, 67, 65, 59, 66, 71, 76, 102, (0,119,69): 145, 181, 199, 192, 199, 206, 211, 216, 222, 225, 226, (0,119,80): 221, 219, 219, 220, 220, 219, 219, 219, 220, 217, 215, (0,119,91): 212, 212, 211, 210, 213, 221, 219, 210, 202, 191, 176, (0,119,102): 156, 139, 138, 133, 130, 128, 129, 129, 131, 132, 130, (0,119,113): 130, 130, 127, 127, 126, 125, 125, 126, 126, 125, 125, (0,119,124): 125, 125, 125, 123, 121, 119, 120, 117, 116, 115, 114, (0,119,135): 113, 114, 113, 112, 110, 112, 109, 111, 111, 111, 111, (0,119,146): 110, 109, 108, 106, 105, 104, 102, 107, 104, 99, 101, (0,119,157): 98, 101, 120, 142, 146, 142, 138, 131, 122, 113, 104, (0,119,168): 90, 73, 63, 62, 57, 48, 47, 54, 52, 53, 53, 52, 50, 48, (0,119,182): 48, 49, 54, 58, 61, 62, 60, 55, 50, 49, 44, 46, 48, 49, (0,119,196): 54, 56, 58, 58, 60, 73, 89, 103, 112, 118, 117, 112, (0,119,208): 96, 88, 83, 87, 91, 89, 89, 92, 95, 95, 94, 94, 94, 93, (0,119,222): 93, 93, 83, 72, 63, (0,120,0): 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, (0,120,11): 105, 105, 105, 105, 106, 107, 107, 107, 108, 108, 109, (0,120,22): 109, 109, 109, 109, 109, 109, 109, 109, 109, 108, 105, (0,120,33): 103, 118, 147, 175, 196, 218, 234, 243, 246, 252, 255, (0,120,44): 255, 255, 252, 253, 247, 242, 224, 198, 170, 136, 98, (0,120,55): 69, 68, 67, 70, 71, 70, 67, 70, 73, 65, 66, 70, 75, 101, (0,120,69): 147, 198, 233, 211, 199, 191, 195, 210, 219, 225, 225, (0,120,80): 220, 220, 217, 210, 215, 225, 225, 216, 218, 218, 217, (0,120,91): 215, 215, 212, 209, 211, 222, 219, 211, 202, 190, 176, (0,120,102): 159, 144, 140, 135, 131, 129, 128, 127, 129, 129, 127, (0,120,113): 127, 127, 126, 126, 124, 124, 124, 124, 124, 124, 124, (0,120,124): 122, 122, 122, 122, 121, 119, 119, 117, 116, 113, 112, (0,120,135): 112, 111, 109, 109, 108, 109, 108, 109, 109, 105, 109, (0,120,146): 112, 111, 107, 103, 103, 104, 101, 105, 100, 93, 96, (0,120,157): 95, 98, 115, 140, 143, 136, 129, 125, 118, 102, 84, 68, (0,120,169): 62, 58, 53, 52, 51, 52, 52, 54, 55, 54, 52, 51, 49, 47, (0,120,183): 46, 46, 50, 54, 58, 58, 56, 52, 49, 42, 44, 45, 46, 52, (0,120,197): 55, 58, 58, 54, 68, 87, 104, 115, 119, 114, 107, 91, (0,120,209): 88, 84, 84, 87, 90, 91, 90, 94, 98, 98, 94, 92, 95, 96, (0,120,223): 94, 83, 70, 61, (0,121,0): 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, (0,121,11): 105, 105, 105, 105, 105, 107, 107, 107, 108, 108, 109, (0,121,22): 109, 109, 109, 109, 109, 109, 109, 109, 109, 108, 103, (0,121,33): 111, 134, 164, 193, 214, 234, 247, 247, 248, 252, 254, (0,121,44): 255, 255, 255, 255, 255, 251, 237, 215, 192, 164, 130, (0,121,55): 103, 76, 71, 69, 71, 72, 73, 76, 75, 66, 71, 81, 96, (0,121,68): 124, 166, 207, 232, 255, 234, 201, 188, 199, 213, 219, (0,121,79): 216, 213, 210, 215, 219, 218, 212, 214, 221, 217, 217, (0,121,90): 218, 218, 217, 214, 212, 212, 220, 219, 211, 203, 191, (0,121,101): 177, 160, 146, 140, 135, 131, 129, 128, 127, 129, 129, (0,121,112): 127, 127, 127, 126, 125, 124, 124, 124, 124, 124, 124, (0,121,123): 124, 122, 123, 123, 122, 119, 117, 117, 115, 114, 110, (0,121,134): 111, 109, 109, 108, 108, 108, 108, 106, 108, 108, 107, (0,121,145): 110, 111, 110, 108, 105, 103, 101, 99, 100, 95, 94, 98, (0,121,157): 94, 96, 112, 129, 135, 135, 126, 114, 100, 81, 62, 58, (0,121,169): 54, 53, 51, 52, 52, 53, 55, 55, 55, 55, 53, 52, 49, 47, (0,121,183): 47, 46, 49, 52, 56, 57, 56, 52, 52, 46, 46, 46, 45, 50, (0,121,197): 52, 56, 57, 55, 68, 87, 104, 116, 119, 112, 103, 89, (0,121,209): 87, 84, 84, 86, 89, 89, 89, 91, 95, 95, 92, 91, 94, 94, (0,121,223): 94, 82, 70, 59, (0,122,0): 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, (0,122,11): 105, 105, 105, 105, 105, 107, 107, 107, 108, 108, 109, (0,122,22): 109, 109, 109, 109, 109, 109, 109, 110, 110, 108, 101, (0,122,33): 121, 151, 178, 205, 228, 244, 250, 251, 252, 253, 254, (0,122,44): 255, 255, 255, 255, 254, 250, 239, 225, 210, 188, 160, (0,122,55): 135, 96, 81, 68, 68, 74, 76, 75, 73, 68, 84, 107, 130, (0,122,68): 157, 192, 219, 234, 248, 255, 255, 234, 190, 177, 198, (0,122,79): 219, 216, 207, 202, 204, 210, 214, 216, 217, 214, 216, (0,122,90): 217, 217, 217, 214, 213, 213, 217, 217, 210, 203, 192, (0,122,101): 178, 161, 147, 142, 137, 131, 129, 127, 126, 128, 128, (0,122,112): 127, 127, 126, 125, 125, 124, 123, 123, 125, 125, 123, (0,122,123): 123, 123, 123, 122, 120, 116, 113, 114, 111, 110, 108, (0,122,134): 108, 107, 108, 106, 106, 106, 106, 105, 106, 106, 110, (0,122,145): 109, 109, 109, 109, 105, 102, 99, 100, 97, 93, 95, 99, (0,122,157): 92, 95, 115, 125, 129, 126, 112, 94, 79, 63, 52, 50, (0,122,169): 48, 49, 50, 52, 52, 53, 55, 55, 55, 54, 53, 53, 50, 48, (0,122,183): 48, 46, 48, 50, 54, 55, 56, 56, 57, 52, 51, 47, 44, 47, (0,122,197): 49, 53, 54, 54, 68, 89, 107, 119, 119, 108, 95, 87, 87, (0,122,210): 84, 84, 86, 88, 89, 89, 90, 93, 95, 93, 93, 95, 94, 90, (0,122,224): 78, 65, 54, (0,123,0): 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, (0,123,11): 105, 105, 105, 105, 105, 106, 107, 107, 108, 108, 109, (0,123,22): 109, 109, 109, 109, 109, 110, 110, 110, 110, 109, 106, (0,123,33): 131, 163, 185, 208, 229, 243, 245, 251, 251, 252, 252, (0,123,44): 253, 254, 255, 255, 248, 244, 238, 230, 221, 206, 182, (0,123,55): 161, 128, 102, 77, 70, 72, 75, 72, 68, 80, 106, 139, (0,123,67): 164, 183, 203, 223, 234, 247, 255, 255, 255, 245, 227, (0,123,78): 200, 176, 194, 200, 199, 195, 199, 211, 213, 207, 210, (0,123,89): 212, 213, 216, 214, 214, 213, 213, 214, 213, 210, 204, (0,123,100): 192, 178, 162, 149, 142, 137, 131, 129, 127, 126, 128, (0,123,111): 128, 127, 127, 126, 125, 125, 124, 123, 123, 126, 126, (0,123,122): 124, 123, 123, 123, 122, 120, 114, 111, 111, 109, 108, (0,123,133): 107, 106, 104, 105, 105, 105, 104, 104, 104, 104, 104, (0,123,144): 109, 108, 106, 105, 106, 106, 102, 97, 101, 97, 93, 97, (0,123,156): 98, 89, 97, 121, 129, 118, 105, 87, 73, 64, 58, 56, 48, (0,123,169): 47, 51, 52, 53, 53, 54, 54, 55, 54, 54, 52, 51, 51, 49, (0,123,183): 49, 46, 47, 48, 50, 53, 55, 59, 60, 57, 55, 50, 45, 46, (0,123,197): 47, 50, 52, 52, 69, 93, 114, 123, 119, 102, 85, 83, 84, (0,123,210): 83, 83, 84, 85, 86, 86, 87, 91, 93, 92, 94, 95, 92, 87, (0,123,224): 73, 61, 49, (0,124,0): 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, (0,124,11): 103, 103, 103, 103, 105, 106, 107, 107, 108, 108, 109, (0,124,22): 109, 109, 109, 109, 109, 110, 110, 111, 111, 110, 113, (0,124,33): 135, 164, 183, 205, 227, 242, 244, 248, 250, 251, 253, (0,124,44): 252, 250, 249, 246, 246, 243, 240, 238, 233, 222, 202, (0,124,55): 182, 157, 125, 89, 71, 70, 70, 67, 65, 98, 133, 170, (0,124,67): 192, 203, 213, 230, 241, 249, 250, 251, 255, 255, 255, (0,124,78): 233, 182, 164, 178, 192, 199, 197, 190, 193, 202, 203, (0,124,89): 206, 209, 210, 211, 211, 211, 211, 211, 210, 208, 201, (0,124,100): 189, 175, 160, 149, 142, 137, 131, 129, 127, 126, 127, (0,124,111): 127, 126, 126, 126, 125, 124, 123, 123, 123, 124, 124, (0,124,122): 124, 123, 122, 121, 121, 119, 110, 109, 108, 108, 107, (0,124,133): 104, 104, 104, 105, 104, 104, 103, 103, 103, 103, 104, (0,124,144): 107, 104, 102, 103, 105, 104, 101, 98, 99, 98, 95, 93, (0,124,156): 93, 86, 98, 123, 116, 97, 78, 65, 61, 59, 57, 57, 51, (0,124,169): 51, 53, 54, 54, 55, 53, 52, 54, 52, 51, 51, 51, 50, 49, (0,124,183): 49, 46, 46, 47, 48, 51, 54, 58, 60, 61, 58, 53, 48, 48, (0,124,197): 47, 49, 49, 50, 71, 98, 119, 124, 113, 92, 74, 79, 81, (0,124,210): 81, 81, 81, 81, 83, 83, 87, 91, 93, 93, 95, 95, 90, 82, (0,124,224): 65, 54, 43, (0,125,0): 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, (0,125,11): 103, 103, 103, 103, 105, 106, 107, 107, 108, 108, 109, (0,125,22): 109, 109, 109, 109, 110, 110, 111, 112, 112, 110, 108, (0,125,33): 122, 147, 171, 196, 220, 237, 244, 245, 246, 250, 251, (0,125,44): 251, 248, 245, 241, 244, 244, 244, 243, 242, 233, 216, (0,125,55): 197, 177, 143, 101, 77, 71, 70, 71, 74, 122, 158, 195, (0,125,67): 215, 222, 230, 243, 252, 243, 254, 255, 255, 255, 255, (0,125,78): 255, 255, 212, 181, 162, 178, 190, 182, 182, 199, 199, (0,125,89): 202, 205, 208, 208, 208, 208, 208, 210, 210, 206, 197, (0,125,100): 184, 170, 158, 149, 142, 137, 131, 129, 127, 126, 127, (0,125,111): 127, 126, 126, 126, 125, 124, 123, 123, 123, 124, 123, (0,125,122): 123, 122, 121, 120, 119, 117, 110, 108, 108, 106, 105, (0,125,133): 105, 104, 103, 103, 103, 102, 102, 102, 102, 102, 102, (0,125,144): 104, 104, 103, 103, 103, 104, 103, 102, 97, 101, 94, (0,125,155): 92, 96, 97, 105, 117, 88, 69, 60, 57, 59, 56, 53, 51, (0,125,168): 54, 53, 55, 54, 54, 53, 53, 51, 50, 49, 50, 49, 49, 49, (0,125,182): 49, 49, 46, 46, 46, 47, 48, 51, 54, 55, 60, 58, 56, 53, (0,125,196): 52, 50, 49, 48, 48, 72, 101, 117, 116, 102, 82, 66, 75, (0,125,209): 78, 80, 80, 78, 78, 79, 81, 86, 90, 93, 94, 95, 95, 86, (0,125,223): 78, 59, 48, 38, (0,126,0): 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, (0,126,11): 103, 103, 103, 103, 105, 106, 107, 107, 108, 108, 109, (0,126,22): 109, 109, 109, 109, 110, 110, 111, 112, 113, 111, 104, (0,126,33): 109, 133, 163, 191, 211, 229, 240, 242, 245, 248, 250, (0,126,44): 252, 250, 248, 246, 246, 247, 250, 252, 253, 247, 231, (0,126,55): 213, 192, 158, 117, 90, 80, 83, 91, 99, 146, 176, 210, (0,126,67): 230, 242, 249, 255, 255, 255, 255, 249, 247, 251, 255, (0,126,78): 255, 255, 255, 234, 183, 168, 174, 183, 185, 191, 195, (0,126,89): 198, 202, 203, 205, 204, 203, 204, 209, 208, 204, 194, (0,126,100): 179, 166, 156, 149, 140, 135, 133, 129, 127, 126, 127, (0,126,111): 127, 126, 126, 126, 125, 124, 123, 123, 123, 123, 123, (0,126,122): 121, 120, 119, 118, 118, 115, 110, 106, 106, 106, 106, (0,126,133): 104, 104, 104, 103, 102, 102, 102, 100, 100, 100, 102, (0,126,144): 103, 104, 105, 105, 104, 105, 106, 108, 103, 107, 98, (0,126,155): 97, 111, 120, 116, 110, 67, 53, 52, 56, 56, 52, 49, 50, (0,126,168): 53, 53, 53, 52, 52, 52, 52, 51, 47, 46, 48, 46, 46, 46, (0,126,182): 48, 48, 49, 48, 48, 47, 48, 49, 51, 52, 57, 58, 59, 58, (0,126,196): 58, 54, 50, 47, 50, 73, 99, 109, 102, 87, 73, 63, 72, (0,126,209): 76, 78, 78, 76, 76, 77, 79, 85, 89, 91, 93, 94, 92, 81, (0,126,223): 71, 54, 43, 34, (0,127,0): 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, (0,127,11): 103, 103, 103, 103, 105, 106, 106, 106, 108, 108, 109, (0,127,22): 109, 109, 109, 108, 109, 110, 111, 110, 111, 109, 107, (0,127,33): 109, 131, 165, 195, 213, 230, 244, 244, 247, 249, 250, (0,127,44): 252, 252, 252, 253, 251, 254, 255, 255, 255, 255, 239, (0,127,55): 221, 193, 162, 124, 98, 88, 93, 109, 124, 165, 187, 215, (0,127,67): 235, 250, 255, 255, 254, 253, 250, 250, 251, 250, 244, (0,127,78): 247, 255, 255, 255, 250, 188, 157, 171, 183, 177, 192, (0,127,89): 198, 201, 202, 202, 201, 199, 200, 207, 205, 199, 188, (0,127,100): 173, 159, 149, 145, 138, 132, 130, 129, 127, 126, 128, (0,127,111): 128, 126, 126, 126, 125, 124, 123, 123, 123, 122, 122, (0,127,122): 120, 119, 118, 117, 117, 113, 109, 107, 106, 106, 105, (0,127,133): 105, 105, 104, 103, 102, 103, 102, 102, 102, 102, 102, (0,127,144): 102, 106, 109, 107, 106, 106, 109, 111, 108, 111, 100, (0,127,155): 99, 122, 134, 121, 98, 62, 51, 52, 55, 52, 47, 50, 57, (0,127,168): 51, 50, 50, 48, 49, 50, 52, 52, 46, 44, 47, 45, 47, 47, (0,127,182): 47, 47, 49, 48, 48, 47, 47, 47, 48, 48, 55, 57, 60, 61, (0,127,196): 59, 56, 50, 45, 50, 74, 99, 104, 93, 79, 70, 65, 72, (0,127,209): 75, 78, 78, 75, 74, 76, 78, 84, 87, 90, 91, 93, 90, 78, (0,127,223): 67, 50, 41, 31, (0,128,0): 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, (0,128,11): 104, 104, 104, 104, 104, 106, 106, 106, 108, 108, 109, (0,128,22): 109, 109, 103, 106, 110, 111, 104, 102, 115, 129, 137, (0,128,33): 149, 170, 194, 215, 233, 245, 248, 252, 254, 255, 253, (0,128,44): 250, 249, 250, 251, 249, 250, 249, 252, 254, 249, 233, (0,128,55): 213, 186, 152, 113, 95, 98, 114, 132, 145, 180, 202, (0,128,66): 226, 240, 247, 251, 253, 252, 255, 254, 254, 253, 254, (0,128,77): 254, 254, 254, 251, 255, 255, 255, 215, 163, 155, 178, (0,128,88): 193, 195, 198, 201, 205, 206, 203, 202, 198, 195, 190, (0,128,99): 181, 166, 154, 144, 139, 133, 129, 127, 127, 128, 128, (0,128,110): 129, 129, 127, 126, 124, 123, 122, 122, 119, 118, 119, (0,128,121): 119, 119, 119, 118, 117, 113, 110, 108, 105, 105, 104, (0,128,132): 104, 103, 103, 103, 102, 103, 105, 105, 104, 103, 101, (0,128,143): 101, 104, 106, 109, 107, 106, 105, 105, 107, 103, 106, (0,128,154): 100, 118, 126, 138, 140, 82, 55, 52, 52, 51, 51, 51, (0,128,166): 50, 50, 49, 49, 51, 48, 50, 47, 49, 47, 47, 46, 47, 46, (0,128,180): 47, 47, 47, 47, 48, 47, 47, 46, 46, 47, 47, 47, 49, 51, (0,128,194): 54, 56, 57, 55, 53, 51, 52, 68, 87, 91, 80, 69, 64, 66, (0,128,208): 73, 75, 75, 75, 74, 74, 76, 79, 85, 89, 92, 93, 93, 87, (0,128,222): 72, 59, 37, 38, 36, (0,129,0): 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, (0,129,11): 104, 104, 104, 104, 104, 104, 104, 106, 107, 108, 109, (0,129,22): 109, 109, 105, 106, 109, 106, 103, 108, 126, 144, 167, (0,129,33): 183, 208, 225, 241, 250, 255, 255, 254, 255, 255, 254, (0,129,44): 251, 248, 246, 247, 247, 248, 248, 247, 249, 242, 223, (0,129,55): 204, 180, 145, 107, 89, 95, 116, 140, 157, 191, 211, (0,129,66): 231, 243, 247, 251, 252, 251, 254, 254, 254, 254, 254, (0,129,77): 254, 254, 251, 241, 237, 247, 255, 255, 239, 196, 164, (0,129,88): 176, 186, 193, 196, 194, 188, 190, 196, 196, 195, 191, (0,129,99): 180, 166, 153, 144, 138, 130, 127, 126, 124, 126, 127, (0,129,110): 128, 128, 125, 125, 122, 122, 121, 120, 118, 118, 117, (0,129,121): 118, 116, 116, 116, 114, 111, 109, 108, 105, 106, 104, (0,129,132): 105, 104, 103, 103, 101, 101, 103, 104, 106, 106, 106, (0,129,143): 107, 107, 108, 107, 107, 107, 106, 106, 105, 103, 107, (0,129,154): 103, 117, 129, 140, 134, 75, 54, 51, 51, 51, 50, 50, (0,129,166): 50, 49, 49, 49, 49, 48, 48, 47, 47, 47, 47, 47, 47, 47, (0,129,180): 47, 47, 47, 47, 48, 47, 46, 46, 46, 46, 47, 47, 46, 47, (0,129,194): 49, 52, 54, 54, 54, 53, 54, 67, 80, 82, 73, 65, 66, 69, (0,129,208): 74, 74, 75, 75, 73, 72, 73, 74, 83, 88, 92, 93, 91, 84, (0,129,222): 67, 54, 38, 39, 37, (0,130,0): 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, (0,130,11): 104, 104, 104, 104, 104, 104, 104, 106, 107, 108, 109, (0,130,22): 109, 109, 109, 107, 109, 106, 107, 119, 145, 167, 190, (0,130,33): 209, 235, 246, 253, 254, 255, 255, 254, 255, 255, 253, (0,130,44): 250, 245, 241, 241, 244, 245, 246, 245, 245, 238, 219, (0,130,55): 201, 176, 147, 117, 107, 116, 136, 159, 174, 205, 222, (0,130,66): 239, 248, 251, 254, 254, 253, 254, 254, 254, 254, 254, (0,130,77): 254, 254, 253, 245, 251, 254, 255, 255, 255, 248, 215, (0,130,88): 147, 164, 168, 167, 183, 207, 206, 189, 196, 198, 195, (0,130,99): 185, 170, 157, 149, 144, 134, 129, 126, 123, 122, 122, (0,130,110): 122, 122, 120, 120, 119, 119, 117, 116, 116, 116, 114, (0,130,121): 114, 114, 114, 111, 110, 108, 107, 108, 106, 108, 106, (0,130,132): 107, 105, 105, 104, 103, 103, 102, 103, 104, 105, 107, (0,130,143): 107, 108, 106, 105, 104, 107, 106, 105, 102, 102, 108, (0,130,154): 106, 117, 134, 145, 128, 69, 53, 50, 50, 50, 49, 49, (0,130,166): 49, 48, 49, 49, 49, 48, 48, 47, 47, 47, 47, 47, 47, 47, (0,130,180): 47, 47, 47, 47, 47, 47, 46, 45, 45, 46, 47, 46, 43, 43, (0,130,194): 45, 47, 50, 52, 54, 55, 56, 63, 69, 67, 59, 56, 62, 68, (0,130,208): 74, 74, 76, 75, 73, 71, 70, 71, 82, 88, 93, 94, 90, 80, (0,130,222): 61, 46, 38, 39, 37, (0,131,0): 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, (0,131,11): 104, 104, 104, 104, 104, 104, 104, 106, 107, 108, 109, (0,131,22): 109, 109, 110, 108, 108, 108, 112, 128, 158, 185, 195, (0,131,33): 218, 244, 250, 251, 251, 253, 251, 255, 255, 255, 251, (0,131,44): 245, 238, 233, 231, 237, 240, 241, 241, 242, 234, 216, (0,131,55): 199, 178, 161, 145, 144, 156, 170, 182, 192, 220, 233, (0,131,66): 246, 251, 253, 255, 255, 253, 254, 254, 254, 254, 254, (0,131,77): 254, 254, 254, 251, 255, 255, 245, 246, 255, 255, 255, (0,131,88): 232, 183, 148, 163, 185, 184, 180, 190, 193, 198, 197, (0,131,99): 188, 173, 161, 152, 149, 139, 133, 128, 124, 121, 119, (0,131,110): 117, 118, 118, 118, 118, 117, 115, 114, 114, 113, 111, (0,131,121): 111, 111, 110, 107, 106, 106, 105, 109, 110, 109, 108, (0,131,132): 108, 107, 105, 105, 108, 106, 104, 102, 102, 102, 104, (0,131,143): 102, 106, 102, 101, 102, 104, 105, 102, 99, 99, 104, (0,131,154): 105, 115, 133, 143, 112, 57, 52, 50, 49, 49, 49, 48, (0,131,166): 48, 48, 49, 49, 49, 48, 48, 47, 47, 47, 46, 46, 46, 46, (0,131,180): 46, 46, 46, 46, 46, 46, 45, 45, 45, 45, 46, 45, 42, 41, (0,131,194): 42, 43, 46, 49, 52, 53, 54, 58, 60, 56, 50, 50, 56, 62, (0,131,208): 68, 69, 75, 74, 75, 71, 72, 70, 83, 88, 96, 94, 90, 76, (0,131,222): 57, 41, 38, 37, 35, (0,132,0): 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, (0,132,11): 104, 104, 104, 104, 104, 104, 104, 106, 107, 108, 109, (0,132,22): 109, 109, 108, 107, 110, 111, 116, 133, 164, 191, 205, (0,132,33): 229, 251, 251, 250, 252, 255, 253, 255, 255, 254, 247, (0,132,44): 239, 231, 224, 222, 231, 234, 237, 236, 238, 232, 218, (0,132,55): 204, 194, 183, 177, 182, 193, 201, 210, 217, 232, 242, (0,132,66): 250, 252, 253, 255, 255, 252, 254, 254, 254, 254, 254, (0,132,77): 254, 254, 255, 255, 255, 250, 248, 252, 254, 254, 253, (0,132,88): 255, 245, 196, 157, 151, 165, 180, 186, 189, 196, 195, (0,132,99): 188, 176, 166, 157, 152, 143, 137, 130, 124, 119, 115, (0,132,110): 114, 115, 113, 115, 115, 114, 114, 114, 112, 111, 110, (0,132,121): 109, 108, 107, 106, 105, 105, 106, 110, 112, 112, 109, (0,132,132): 109, 108, 105, 105, 108, 107, 104, 101, 101, 101, 101, (0,132,143): 100, 102, 99, 99, 100, 100, 100, 98, 95, 94, 101, 106, (0,132,155): 114, 132, 132, 91, 51, 50, 50, 49, 49, 49, 48, 48, 48, (0,132,168): 49, 49, 49, 48, 48, 47, 47, 47, 46, 46, 46, 46, 46, 46, (0,132,182): 46, 46, 45, 45, 44, 44, 44, 44, 45, 44, 44, 43, 42, 42, (0,132,196): 43, 46, 48, 50, 50, 53, 54, 53, 49, 49, 53, 56, 61, 64, (0,132,210): 70, 72, 74, 73, 75, 75, 84, 91, 99, 97, 89, 74, 54, 38, (0,132,224): 36, 36, 34, (0,133,0): 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, (0,133,11): 104, 104, 104, 104, 104, 104, 104, 106, 107, 108, 109, (0,133,22): 109, 108, 106, 107, 108, 111, 115, 129, 159, 184, 213, (0,133,33): 236, 251, 251, 250, 253, 255, 253, 255, 255, 252, 243, (0,133,44): 235, 227, 221, 220, 228, 231, 233, 234, 235, 232, 223, (0,133,55): 211, 211, 204, 203, 208, 215, 224, 234, 240, 243, 249, (0,133,66): 253, 253, 253, 255, 254, 252, 254, 254, 254, 254, 254, (0,133,77): 254, 254, 255, 255, 255, 253, 254, 249, 246, 237, 240, (0,133,88): 235, 255, 255, 204, 163, 161, 170, 173, 182, 188, 189, (0,133,99): 185, 178, 169, 161, 153, 149, 142, 133, 125, 120, 115, (0,133,110): 112, 112, 112, 113, 113, 113, 113, 112, 111, 111, 111, (0,133,121): 110, 109, 107, 104, 104, 104, 108, 111, 113, 112, 112, (0,133,132): 109, 108, 106, 105, 104, 103, 101, 101, 100, 101, 102, (0,133,143): 100, 94, 97, 99, 100, 99, 96, 93, 93, 93, 98, 109, 115, (0,133,156): 128, 118, 70, 52, 51, 50, 50, 50, 49, 49, 49, 48, 49, (0,133,169): 49, 49, 48, 48, 47, 47, 47, 45, 45, 45, 45, 45, 45, 45, (0,133,183): 45, 45, 44, 43, 43, 43, 43, 44, 44, 46, 44, 42, 42, 42, (0,133,197): 43, 45, 46, 45, 48, 52, 53, 52, 51, 51, 51, 55, 57, 64, (0,133,211): 66, 71, 72, 77, 77, 85, 92, 100, 96, 88, 71, 52, 36, (0,133,224): 36, 36, 34, (0,134,0): 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, (0,134,11): 104, 104, 104, 104, 104, 106, 106, 106, 107, 108, 109, (0,134,22): 108, 108, 108, 108, 107, 107, 108, 121, 149, 174, 209, (0,134,33): 233, 251, 248, 248, 254, 255, 249, 255, 254, 249, 241, (0,134,44): 233, 227, 223, 224, 228, 231, 232, 231, 232, 231, 224, (0,134,55): 215, 218, 217, 222, 230, 238, 243, 250, 255, 250, 254, (0,134,66): 255, 253, 253, 255, 255, 252, 254, 254, 254, 254, 254, (0,134,77): 254, 254, 255, 255, 255, 255, 252, 245, 234, 234, 242, (0,134,88): 245, 239, 255, 255, 242, 171, 143, 170, 175, 179, 179, (0,134,99): 179, 177, 172, 162, 154, 150, 143, 136, 129, 122, 117, (0,134,110): 113, 113, 112, 113, 113, 113, 113, 113, 112, 112, 113, (0,134,121): 112, 110, 108, 105, 106, 106, 110, 111, 114, 112, 112, (0,134,132): 110, 108, 106, 105, 100, 100, 99, 100, 100, 99, 99, 95, (0,134,144): 90, 95, 103, 104, 99, 94, 91, 92, 93, 93, 110, 116, (0,134,156): 124, 99, 50, 54, 51, 51, 51, 51, 50, 50, 50, 49, 49, (0,134,169): 49, 49, 48, 48, 47, 47, 47, 45, 45, 45, 45, 45, 45, 45, (0,134,183): 45, 44, 44, 43, 42, 42, 43, 44, 43, 45, 43, 42, 42, 43, (0,134,197): 43, 44, 45, 44, 47, 50, 54, 55, 55, 53, 52, 50, 52, 58, (0,134,211): 61, 65, 68, 74, 76, 84, 92, 99, 94, 85, 68, 50, 35, 38, (0,134,225): 38, 36, (0,135,0): 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, 104, (0,135,11): 104, 104, 104, 104, 104, 106, 106, 106, 107, 108, 109, (0,135,22): 108, 108, 111, 109, 106, 103, 102, 114, 142, 168, 201, (0,135,33): 226, 247, 246, 249, 254, 255, 249, 255, 253, 248, 240, (0,135,44): 233, 229, 227, 229, 230, 233, 234, 232, 232, 232, 225, (0,135,55): 216, 216, 221, 234, 248, 255, 255, 255, 255, 254, 255, (0,135,66): 255, 254, 254, 255, 255, 253, 254, 254, 254, 254, 254, (0,135,77): 254, 254, 255, 255, 255, 251, 247, 245, 243, 240, 237, (0,135,88): 240, 251, 255, 255, 255, 255, 216, 170, 164, 169, 168, (0,135,99): 169, 173, 169, 161, 151, 149, 143, 137, 131, 125, 119, (0,135,110): 116, 115, 113, 113, 115, 113, 113, 113, 113, 112, 115, (0,135,121): 113, 111, 109, 108, 106, 109, 111, 111, 113, 111, 109, (0,135,132): 109, 105, 104, 102, 102, 100, 100, 98, 96, 93, 92, 87, (0,135,144): 84, 91, 102, 105, 98, 90, 90, 92, 90, 88, 107, 115, (0,135,156): 117, 85, 38, 56, 51, 52, 52, 51, 51, 51, 50, 50, 49, (0,135,169): 49, 49, 48, 48, 47, 47, 47, 45, 45, 45, 45, 45, 45, 45, (0,135,183): 45, 44, 43, 43, 42, 42, 43, 43, 44, 43, 41, 42, 43, 43, (0,135,197): 44, 45, 45, 44, 46, 50, 54, 57, 57, 55, 54, 48, 50, 53, (0,135,211): 57, 60, 64, 70, 74, 82, 91, 97, 92, 81, 66, 47, 34, 42, (0,135,225): 40, 38, (0,136,0): 104, 104, 104, 104, 104, 104, 104, 104, 105, 105, 105, (0,136,11): 105, 105, 105, 105, 105, 107, 107, 107, 108, 109, 110, (0,136,22): 109, 109, 113, 107, 107, 107, 106, 112, 135, 159, 187, (0,136,33): 208, 234, 246, 252, 254, 255, 254, 255, 254, 250, 246, (0,136,44): 244, 240, 234, 231, 240, 237, 235, 236, 232, 225, 221, (0,136,55): 222, 224, 231, 241, 249, 253, 255, 255, 255, 255, 254, (0,136,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (0,136,77): 254, 254, 254, 255, 255, 255, 254, 252, 250, 249, 249, (0,136,88): 254, 254, 254, 255, 255, 255, 255, 255, 182, 162, 147, (0,136,99): 155, 165, 160, 154, 155, 142, 141, 135, 128, 121, 116, (0,136,110): 115, 115, 114, 114, 116, 115, 117, 117, 116, 113, 115, (0,136,121): 113, 113, 113, 112, 110, 111, 111, 107, 109, 108, 108, (0,136,132): 108, 104, 103, 99, 99, 94, 100, 99, 84, 78, 77, 64, 87, (0,136,145): 80, 75, 79, 93, 105, 101, 86, 88, 93, 111, 122, 100, (0,136,157): 61, 45, 50, 52, 53, 52, 52, 52, 51, 51, 51, 51, 51, 51, (0,136,171): 50, 49, 49, 49, 48, 49, 49, 48, 48, 47, 47, 47, 47, 44, (0,136,185): 44, 44, 44, 44, 44, 43, 43, 46, 45, 45, 44, 45, 45, 46, (0,136,199): 46, 43, 45, 48, 53, 57, 61, 63, 63, 55, 53, 51, 49, 50, (0,136,213): 57, 66, 73, 79, 86, 93, 89, 76, 60, 47, 41, 42, 41, 40, (0,137,0): 104, 104, 104, 104, 104, 104, 104, 104, 105, 105, 105, (0,137,11): 105, 105, 105, 105, 105, 107, 107, 107, 108, 109, 110, (0,137,22): 109, 107, 111, 106, 107, 107, 106, 113, 137, 163, 190, (0,137,33): 210, 235, 247, 253, 254, 255, 254, 255, 254, 251, 247, (0,137,44): 244, 240, 234, 232, 234, 230, 228, 230, 227, 223, 222, (0,137,55): 223, 230, 236, 245, 250, 255, 255, 255, 255, 255, 254, (0,137,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (0,137,77): 254, 254, 253, 250, 250, 253, 253, 253, 253, 255, 255, (0,137,88): 255, 255, 255, 255, 255, 255, 254, 255, 255, 217, 163, (0,137,99): 142, 146, 152, 152, 150, 138, 137, 135, 131, 126, 122, (0,137,110): 118, 115, 117, 115, 117, 117, 116, 111, 112, 115, 113, (0,137,121): 112, 112, 110, 111, 109, 110, 109, 107, 108, 109, 107, (0,137,132): 106, 103, 101, 98, 100, 91, 94, 94, 78, 70, 71, 62, 76, (0,137,145): 71, 68, 68, 77, 92, 98, 96, 89, 100, 115, 115, 88, 58, (0,137,158): 47, 55, 54, 54, 54, 54, 53, 53, 53, 53, 53, 53, 53, 52, (0,137,172): 52, 51, 51, 51, 50, 50, 50, 49, 49, 49, 48, 48, 46, 46, (0,137,186): 45, 45, 44, 44, 43, 43, 42, 42, 41, 41, 41, 42, 43, 44, (0,137,200): 46, 45, 46, 48, 52, 57, 63, 66, 59, 58, 55, 52, 51, 54, (0,137,214): 60, 64, 76, 83, 89, 87, 76, 61, 49, 43, 44, 43, 42, (0,138,0): 104, 104, 104, 104, 104, 104, 104, 104, 105, 105, 105, (0,138,11): 105, 105, 105, 105, 105, 107, 107, 108, 109, 109, 110, (0,138,22): 109, 107, 109, 105, 106, 107, 105, 113, 138, 165, 191, (0,138,33): 212, 237, 247, 252, 253, 255, 254, 255, 253, 250, 247, (0,138,44): 244, 239, 231, 229, 226, 222, 221, 222, 222, 221, 224, (0,138,55): 228, 237, 242, 249, 254, 255, 255, 255, 255, 255, 254, (0,138,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (0,138,77): 254, 254, 253, 246, 246, 250, 253, 255, 255, 255, 255, (0,138,88): 255, 255, 255, 255, 255, 255, 250, 250, 254, 255, 255, (0,138,99): 223, 168, 132, 131, 145, 148, 139, 127, 118, 117, 118, (0,138,110): 121, 120, 113, 110, 113, 116, 115, 111, 113, 120, 110, (0,138,121): 109, 109, 107, 108, 106, 108, 106, 103, 103, 103, 103, (0,138,132): 101, 99, 96, 94, 98, 85, 90, 96, 82, 67, 69, 70, 65, (0,138,145): 66, 65, 60, 63, 78, 95, 105, 97, 110, 118, 103, 74, 52, (0,138,158): 52, 61, 56, 56, 56, 56, 55, 55, 55, 54, 56, 56, 55, 55, (0,138,172): 55, 54, 54, 54, 53, 52, 52, 52, 51, 51, 51, 50, 48, 48, (0,138,186): 47, 46, 45, 44, 43, 43, 41, 41, 41, 41, 41, 42, 43, 44, (0,138,200): 49, 47, 44, 44, 47, 54, 61, 65, 64, 62, 60, 56, 52, 50, (0,138,214): 51, 53, 68, 75, 81, 81, 72, 60, 50, 46, 46, 46, 45, (0,139,0): 103, 103, 104, 104, 104, 104, 105, 105, 105, 105, 105, (0,139,11): 105, 105, 105, 105, 105, 107, 107, 108, 109, 109, 109, (0,139,22): 109, 106, 107, 105, 106, 106, 104, 109, 136, 166, 191, (0,139,33): 211, 235, 246, 252, 253, 255, 255, 254, 253, 250, 247, (0,139,44): 244, 238, 229, 226, 219, 215, 214, 217, 221, 222, 229, (0,139,55): 236, 247, 250, 255, 255, 255, 255, 255, 255, 255, 254, (0,139,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (0,139,77): 254, 254, 253, 247, 247, 250, 253, 255, 255, 255, 255, (0,139,88): 255, 255, 255, 255, 255, 255, 250, 250, 255, 255, 253, (0,139,99): 255, 255, 238, 176, 118, 117, 117, 119, 123, 125, 120, (0,139,110): 107, 98, 123, 115, 113, 115, 111, 103, 100, 103, 105, (0,139,121): 105, 105, 103, 102, 102, 102, 101, 98, 98, 96, 95, 95, (0,139,133): 91, 90, 87, 88, 79, 92, 111, 99, 77, 73, 73, 62, 63, (0,139,146): 64, 60, 60, 70, 88, 100, 109, 120, 116, 91, 64, 54, 56, (0,139,159): 60, 57, 57, 57, 56, 56, 55, 55, 55, 57, 56, 56, 56, 56, (0,139,173): 56, 56, 56, 55, 55, 55, 54, 54, 54, 53, 53, 51, 51, 49, (0,139,187): 48, 47, 45, 44, 44, 43, 43, 42, 42, 43, 44, 45, 45, 48, (0,139,201): 46, 43, 43, 45, 50, 56, 59, 64, 64, 64, 61, 56, 51, 49, (0,139,215): 48, 60, 66, 72, 73, 68, 59, 50, 46, 45, 47, 46, (0,140,0): 103, 103, 103, 104, 104, 105, 105, 105, 105, 105, 105, (0,140,11): 105, 105, 105, 105, 105, 107, 108, 108, 109, 109, 109, (0,140,22): 109, 106, 107, 105, 105, 103, 100, 106, 133, 163, 189, (0,140,33): 210, 234, 244, 251, 253, 255, 255, 255, 255, 254, 251, (0,140,44): 247, 240, 230, 226, 217, 213, 210, 212, 218, 224, 234, (0,140,55): 244, 253, 255, 255, 255, 255, 254, 254, 254, 254, 254, (0,140,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (0,140,77): 254, 254, 253, 250, 250, 252, 255, 255, 255, 255, 255, (0,140,88): 255, 255, 255, 255, 255, 255, 253, 252, 244, 255, 255, (0,140,99): 255, 255, 255, 246, 228, 208, 183, 146, 118, 104, 104, (0,140,110): 109, 112, 108, 105, 103, 106, 110, 110, 111, 111, 101, (0,140,121): 99, 99, 99, 99, 99, 98, 96, 93, 92, 92, 90, 90, 87, 84, (0,140,135): 82, 80, 78, 102, 126, 114, 86, 74, 71, 60, 60, 63, 65, (0,140,148): 65, 68, 77, 84, 120, 123, 110, 85, 67, 63, 62, 58, 59, (0,140,161): 57, 57, 56, 56, 55, 55, 55, 56, 56, 56, 56, 56, 56, 56, (0,140,175): 56, 57, 57, 57, 56, 56, 56, 55, 55, 54, 53, 52, 51, 50, (0,140,189): 48, 47, 47, 45, 45, 44, 43, 43, 44, 45, 45, 44, 44, 44, (0,140,203): 44, 46, 48, 51, 52, 59, 61, 64, 64, 60, 55, 52, 50, 54, (0,140,217): 58, 64, 66, 63, 56, 49, 45, 45, 46, 45, (0,141,0): 102, 102, 103, 104, 104, 105, 106, 106, 105, 105, 105, (0,141,11): 105, 105, 105, 105, 105, 108, 108, 108, 109, 109, 109, (0,141,22): 109, 106, 107, 105, 105, 103, 98, 103, 130, 163, 192, (0,141,33): 212, 235, 245, 251, 253, 255, 255, 255, 255, 255, 255, (0,141,44): 250, 242, 231, 226, 215, 209, 205, 206, 214, 222, 236, (0,141,55): 247, 255, 255, 255, 255, 255, 253, 253, 253, 254, 254, (0,141,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (0,141,77): 254, 254, 254, 253, 254, 254, 254, 254, 254, 253, 253, (0,141,88): 251, 252, 254, 255, 255, 254, 254, 254, 251, 255, 254, (0,141,99): 249, 253, 255, 255, 255, 255, 252, 242, 226, 205, 179, (0,141,110): 155, 140, 122, 125, 116, 97, 87, 89, 91, 88, 96, 96, (0,141,122): 96, 95, 96, 96, 96, 93, 92, 92, 92, 89, 88, 85, 82, 81, (0,141,136): 78, 81, 105, 124, 109, 83, 70, 62, 60, 60, 63, 68, 69, (0,141,149): 68, 72, 76, 121, 116, 102, 84, 76, 75, 70, 60, 60, 57, (0,141,162): 57, 57, 56, 56, 56, 56, 55, 55, 56, 56, 56, 56, 57, 57, (0,141,176): 58, 58, 58, 58, 57, 57, 57, 56, 56, 56, 55, 54, 53, 52, (0,141,190): 51, 51, 47, 46, 45, 44, 43, 43, 43, 43, 43, 44, 45, 46, (0,141,204): 47, 47, 47, 45, 51, 55, 61, 64, 63, 60, 57, 56, 53, 56, (0,141,218): 60, 62, 60, 55, 49, 45, 44, 46, 45, (0,142,0): 102, 102, 103, 104, 104, 105, 106, 106, 105, 105, 105, (0,142,11): 105, 105, 105, 105, 105, 108, 108, 108, 109, 109, 109, (0,142,22): 109, 106, 106, 104, 104, 102, 99, 104, 133, 165, 199, (0,142,33): 218, 240, 248, 252, 253, 255, 255, 255, 255, 255, 252, (0,142,44): 248, 239, 226, 221, 213, 206, 201, 202, 208, 218, 233, (0,142,55): 246, 255, 255, 255, 255, 254, 252, 251, 252, 253, 254, (0,142,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (0,142,77): 254, 254, 254, 254, 255, 254, 253, 250, 247, 246, 245, (0,142,88): 243, 245, 250, 253, 255, 255, 255, 255, 252, 254, 255, (0,142,99): 255, 255, 252, 248, 245, 255, 255, 255, 255, 255, 255, (0,142,110): 251, 248, 249, 255, 227, 165, 116, 101, 98, 92, 94, 92, (0,142,122): 92, 93, 93, 94, 94, 92, 89, 87, 87, 86, 85, 83, 80, 78, (0,142,136): 77, 80, 96, 102, 85, 69, 65, 60, 63, 63, 67, 72, 72, (0,142,149): 70, 79, 89, 113, 106, 97, 91, 89, 84, 77, 66, 61, 59, (0,142,162): 59, 59, 58, 58, 58, 57, 56, 56, 56, 57, 57, 58, 58, 58, (0,142,176): 59, 59, 59, 58, 58, 57, 57, 57, 58, 58, 57, 57, 56, 56, (0,142,190): 55, 55, 52, 50, 49, 47, 45, 44, 43, 43, 44, 44, 45, 46, (0,142,204): 46, 46, 45, 43, 43, 47, 54, 59, 61, 60, 58, 58, 53, 55, (0,142,218): 58, 60, 58, 54, 48, 45, 45, 46, 45, (0,143,0): 99, 99, 100, 101, 101, 104, 105, 105, 104, 105, 105, 105, (0,143,12): 105, 105, 105, 107, 107, 107, 108, 108, 109, 109, 107, (0,143,23): 106, 105, 104, 104, 103, 100, 106, 137, 170, 205, 223, (0,143,34): 242, 250, 251, 253, 254, 254, 250, 250, 250, 248, 244, (0,143,45): 234, 223, 217, 211, 204, 197, 198, 204, 214, 230, 244, (0,143,56): 253, 254, 255, 254, 253, 252, 251, 252, 253, 254, 254, (0,143,67): 254, 254, 254, 254, 254, 254, 254, 254, 254, 255, 255, (0,143,78): 255, 255, 255, 255, 254, 252, 249, 246, 244, 243, 242, (0,143,89): 245, 250, 254, 255, 255, 255, 255, 255, 255, 255, 255, (0,143,100): 253, 251, 250, 252, 244, 244, 247, 247, 248, 251, 255, (0,143,111): 255, 253, 255, 236, 158, 96, 82, 88, 88, 91, 91, 90, (0,143,123): 90, 91, 91, 92, 91, 85, 84, 84, 81, 80, 78, 75, 73, 74, (0,143,137): 76, 83, 80, 64, 59, 65, 63, 67, 68, 72, 76, 73, 74, 89, (0,143,151): 107, 102, 98, 94, 95, 96, 90, 83, 76, 65, 64, 64, 62, (0,143,164): 62, 62, 61, 61, 57, 57, 57, 58, 58, 58, 58, 58, 59, 59, (0,143,178): 59, 58, 58, 57, 57, 57, 59, 59, 59, 59, 58, 58, 58, 58, (0,143,192): 56, 55, 52, 51, 49, 47, 46, 46, 46, 46, 44, 44, 43, 43, (0,143,206): 44, 41, 36, 41, 50, 56, 59, 59, 59, 59, 56, 57, 59, 60, (0,143,220): 60, 55, 49, 46, 46, 47, 46, (0,144,0): 92, 93, 95, 96, 98, 101, 103, 104, 102, 104, 104, 104, (0,144,12): 106, 107, 107, 108, 107, 106, 109, 108, 109, 106, 104, (0,144,23): 102, 102, 103, 102, 98, 99, 114, 150, 185, 209, 224, (0,144,34): 240, 247, 247, 250, 252, 252, 248, 250, 249, 243, 239, (0,144,45): 236, 224, 214, 216, 203, 188, 188, 195, 205, 219, 233, (0,144,56): 250, 253, 254, 255, 254, 252, 251, 252, 254, 254, 254, (0,144,67): 254, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, (0,144,78): 255, 255, 255, 255, 253, 253, 254, 254, 251, 249, 253, (0,144,89): 251, 253, 255, 255, 255, 255, 255, 255, 255, 254, 254, (0,144,100): 254, 251, 251, 250, 252, 252, 255, 255, 255, 255, 255, (0,144,111): 255, 251, 255, 233, 145, 86, 88, 85, 83, 87, 87, 85, (0,144,123): 85, 84, 84, 84, 83, 81, 82, 80, 80, 77, 75, 72, 71, 74, (0,144,137): 70, 65, 61, 62, 68, 70, 68, 77, 75, 70, 67, 79, 94, 96, (0,144,151): 90, 89, 91, 95, 95, 95, 92, 88, 85, 75, 71, 68, 65, 64, (0,144,165): 62, 63, 63, 60, 58, 58, 57, 57, 55, 55, 55, 58, 57, 57, (0,144,179): 56, 56, 57, 57, 58, 58, 58, 57, 58, 59, 60, 61, 62, 56, (0,144,193): 55, 55, 55, 53, 51, 50, 49, 46, 47, 45, 45, 46, 48, 54, (0,144,207): 55, 59, 59, 60, 59, 59, 60, 61, 61, 58, 63, 68, 68, 67, (0,144,221): 64, 55, 46, 45, 44, 41, (0,145,0): 89, 90, 92, 93, 97, 98, 103, 103, 103, 103, 105, 105, (0,145,12): 107, 108, 109, 109, 108, 106, 107, 108, 107, 106, 104, (0,145,23): 101, 104, 103, 103, 102, 106, 121, 156, 186, 208, 224, (0,145,34): 240, 246, 249, 249, 251, 249, 249, 248, 246, 238, 235, (0,145,45): 230, 221, 210, 203, 193, 184, 187, 194, 205, 219, 228, (0,145,56): 251, 253, 254, 255, 254, 252, 252, 252, 254, 254, 254, (0,145,67): 254, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, (0,145,78): 255, 255, 255, 255, 253, 253, 255, 255, 254, 253, 255, (0,145,89): 255, 255, 254, 245, 238, 244, 250, 255, 254, 253, 254, (0,145,100): 252, 251, 251, 250, 252, 252, 255, 254, 255, 255, 255, (0,145,111): 255, 248, 254, 229, 141, 83, 84, 82, 81, 85, 85, 84, (0,145,123): 84, 83, 83, 81, 81, 81, 79, 80, 78, 77, 74, 72, 69, 71, (0,145,137): 69, 65, 63, 66, 70, 74, 74, 75, 75, 82, 89, 93, 87, 83, (0,145,151): 83, 85, 86, 90, 91, 92, 92, 90, 89, 82, 80, 75, 72, 67, (0,145,165): 65, 66, 63, 61, 58, 58, 57, 55, 55, 54, 54, 58, 57, 57, (0,145,179): 56, 56, 57, 57, 58, 58, 58, 58, 58, 59, 60, 61, 60, 61, (0,145,193): 60, 60, 60, 60, 58, 57, 56, 55, 52, 51, 48, 51, 57, 66, (0,145,207): 71, 79, 76, 76, 70, 66, 60, 59, 58, 61, 68, 74, 76, 75, (0,145,221): 72, 60, 51, 43, 43, 40, (0,146,0): 89, 90, 92, 94, 97, 99, 103, 104, 105, 105, 107, 107, (0,146,12): 108, 109, 110, 110, 108, 107, 107, 107, 107, 106, 104, (0,146,23): 101, 104, 101, 100, 103, 111, 127, 157, 182, 204, 221, (0,146,34): 239, 246, 249, 248, 248, 245, 244, 241, 236, 226, 222, (0,146,45): 216, 208, 199, 192, 188, 187, 194, 204, 215, 227, 234, (0,146,56): 251, 253, 254, 254, 253, 252, 252, 253, 254, 254, 254, (0,146,67): 254, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, (0,146,78): 255, 255, 255, 254, 252, 253, 254, 255, 254, 253, 255, (0,146,89): 255, 255, 249, 232, 223, 234, 246, 255, 254, 253, 254, (0,146,100): 252, 251, 251, 250, 252, 252, 255, 254, 255, 255, 255, (0,146,111): 255, 249, 254, 228, 138, 80, 82, 82, 82, 84, 85, 84, (0,146,123): 85, 84, 83, 81, 80, 81, 79, 80, 77, 77, 74, 73, 70, 72, (0,146,137): 69, 67, 66, 70, 73, 79, 81, 80, 85, 103, 119, 112, 88, (0,146,150): 76, 78, 80, 81, 84, 85, 87, 88, 91, 92, 89, 86, 81, 77, (0,146,164): 71, 68, 67, 63, 61, 58, 58, 57, 55, 55, 54, 54, 58, 58, (0,146,178): 57, 57, 57, 57, 58, 58, 58, 58, 58, 58, 59, 60, 62, 60, (0,146,192): 64, 63, 64, 64, 65, 63, 63, 62, 62, 57, 54, 52, 57, 66, (0,146,206): 80, 88, 94, 91, 87, 77, 67, 57, 54, 52, 60, 69, 77, 82, (0,146,220): 82, 78, 65, 56, 47, 47, 44, (0,147,0): 89, 90, 92, 94, 98, 100, 104, 105, 107, 107, 109, 108, (0,147,12): 110, 110, 111, 111, 109, 107, 107, 107, 106, 106, 104, (0,147,23): 102, 102, 97, 95, 100, 112, 127, 151, 171, 199, 217, (0,147,34): 237, 245, 248, 245, 243, 238, 234, 228, 221, 212, 208, (0,147,45): 202, 195, 189, 196, 198, 203, 213, 224, 234, 244, 248, (0,147,56): 252, 253, 254, 254, 253, 251, 252, 253, 254, 254, 254, (0,147,67): 254, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, (0,147,78): 255, 255, 255, 253, 251, 252, 254, 255, 254, 253, 254, (0,147,89): 255, 255, 250, 234, 227, 239, 251, 255, 254, 253, 254, (0,147,100): 252, 251, 251, 250, 252, 252, 255, 254, 255, 255, 255, (0,147,111): 255, 252, 255, 228, 137, 80, 82, 84, 84, 84, 85, 85, (0,147,123): 85, 84, 83, 80, 79, 81, 79, 79, 76, 76, 74, 74, 71, 74, (0,147,137): 71, 70, 72, 76, 78, 85, 91, 103, 115, 135, 144, 133, (0,147,149): 110, 90, 82, 79, 78, 80, 79, 82, 85, 89, 91, 90, 88, (0,147,162): 84, 80, 74, 71, 69, 65, 61, 58, 58, 57, 55, 55, 54, 54, (0,147,176): 59, 58, 57, 57, 57, 57, 58, 59, 59, 58, 58, 59, 59, 61, (0,147,190): 62, 61, 61, 60, 62, 62, 64, 63, 63, 63, 61, 57, 54, 52, (0,147,204): 57, 68, 82, 91, 89, 87, 84, 73, 62, 51, 48, 46, 54, 64, (0,147,218): 75, 82, 83, 79, 65, 54, 49, 48, 45, (0,148,0): 89, 90, 92, 94, 98, 100, 105, 106, 109, 108, 110, 109, (0,148,12): 110, 110, 112, 111, 109, 107, 106, 106, 105, 105, 104, (0,148,23): 102, 103, 97, 94, 100, 112, 125, 145, 161, 194, 214, (0,148,34): 234, 243, 245, 242, 239, 233, 227, 218, 211, 204, 201, (0,148,45): 195, 190, 187, 202, 209, 218, 229, 238, 248, 255, 255, (0,148,56): 252, 253, 253, 253, 252, 251, 252, 254, 254, 254, 254, (0,148,67): 254, 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, (0,148,78): 255, 255, 255, 252, 251, 252, 254, 255, 254, 253, 254, (0,148,89): 254, 255, 254, 245, 239, 247, 254, 255, 254, 253, 254, (0,148,100): 252, 251, 251, 250, 251, 251, 254, 254, 255, 255, 255, (0,148,111): 255, 254, 255, 229, 138, 81, 84, 86, 87, 84, 85, 86, (0,148,123): 86, 85, 83, 79, 78, 81, 79, 79, 76, 76, 74, 74, 73, 76, (0,148,137): 73, 74, 78, 81, 82, 91, 99, 129, 146, 161, 157, 148, (0,148,149): 138, 115, 90, 80, 78, 78, 76, 78, 81, 86, 88, 88, 86, (0,148,162): 83, 80, 76, 73, 71, 67, 61, 58, 58, 57, 55, 55, 54, 54, (0,148,176): 59, 59, 58, 57, 57, 58, 59, 59, 59, 59, 59, 59, 60, 61, (0,148,190): 62, 61, 59, 58, 60, 60, 62, 61, 62, 61, 58, 55, 53, 52, (0,148,204): 57, 66, 78, 85, 83, 81, 79, 69, 57, 46, 44, 44, 49, 60, (0,148,218): 73, 80, 82, 78, 63, 52, 43, 43, 40, (1,0,0): 47, 47, 48, 49, 49, 49, 50, 50, 51, 51, 51, 51, 51, 51, 51, (1,0,15): 51, 50, 49, 49, 48, 48, 49, 49, 50, 48, 48, 48, 48, 48, (1,0,29): 48, 48, 48, 46, 46, 46, 45, 45, 44, 44, 44, 44, 44, 44, (1,0,43): 44, 44, 44, 44, 45, 42, 44, 44, 45, 46, 47, 48, 48, 51, (1,0,57): 51, 52, 53, 53, 54, 55, 55, 58, 60, 62, 64, 65, 66, 67, (1,0,71): 67, 68, 68, 67, 66, 67, 67, 68, 69, 63, 63, 64, 66, 69, (1,0,85): 72, 71, 70, 71, 71, 69, 71, 71, 71, 72, 69, 70, 67, 68, (1,0,99): 69, 67, 66, 62, 61, 59, 58, 58, 60, 63, 64, 63, 65, 61, (1,0,113): 64, 64, 63, 63, 64, 63, 64, 64, 65, 65, 66, 64, 65, 64, (1,0,127): 65, 62, 63, 63, 62, 62, 61, 60, 60, 63, 63, 61, 61, 61, (1,0,141): 62, 63, 64, 63, 62, 61, 63, 66, 68, 68, 68, 63, 65, 70, (1,0,155): 72, 72, 65, 56, 51, 53, 53, 53, 51, 49, 48, 48, 48, 50, (1,0,169): 50, 50, 49, 49, 48, 48, 49, 47, 48, 47, 47, 47, 47, 46, (1,0,183): 46, 44, 43, 42, 41, 40, 46, 54, 58, 66, 73, 77, 79, 87, (1,0,197): 100, 111, 116, 123, 127, 134, 136, 121, 97, 75, 68, 74, (1,0,209): 71, 72, 81, 100, 125, 145, 158, 169, 168, 160, 146, 124, (1,0,221): 103, 87, 78, 82, 81, 81, (1,1,0): 47, 47, 48, 48, 48, 49, 50, 50, 51, 51, 51, 51, 51, 51, 51, (1,1,15): 51, 49, 49, 48, 48, 48, 48, 49, 49, 48, 48, 48, 48, 48, (1,1,29): 48, 48, 48, 46, 46, 45, 45, 45, 44, 44, 44, 45, 45, 45, (1,1,43): 45, 45, 45, 45, 46, 43, 45, 45, 46, 47, 48, 49, 49, 51, (1,1,57): 51, 52, 52, 53, 54, 55, 55, 57, 59, 61, 63, 64, 65, 66, (1,1,71): 66, 67, 67, 65, 65, 65, 66, 67, 68, 62, 63, 65, 67, 68, (1,1,85): 69, 69, 67, 67, 65, 65, 66, 68, 69, 70, 67, 69, 66, 67, (1,1,99): 68, 68, 66, 64, 63, 59, 58, 58, 60, 63, 65, 64, 64, 62, (1,1,113): 64, 63, 63, 63, 63, 63, 64, 64, 64, 65, 65, 64, 65, 64, (1,1,127): 65, 62, 63, 62, 62, 62, 61, 60, 60, 63, 62, 61, 61, 61, (1,1,141): 62, 63, 64, 64, 62, 62, 62, 65, 68, 67, 68, 65, 67, 70, (1,1,155): 73, 71, 64, 57, 52, 54, 54, 53, 52, 50, 49, 49, 49, 50, (1,1,169): 50, 50, 49, 49, 48, 48, 49, 47, 48, 47, 47, 47, 47, 46, (1,1,183): 46, 45, 44, 42, 41, 41, 45, 52, 56, 62, 69, 74, 78, 84, (1,1,197): 97, 108, 114, 123, 128, 133, 132, 117, 91, 72, 67, 70, (1,1,209): 71, 72, 78, 89, 111, 135, 153, 158, 160, 157, 145, 127, (1,1,221): 107, 91, 83, 83, 82, 81, (1,2,0): 46, 46, 47, 48, 48, 48, 49, 49, 50, 50, 50, 50, 50, 50, 50, (1,2,15): 50, 49, 48, 47, 47, 47, 47, 48, 49, 48, 48, 48, 48, 48, (1,2,29): 48, 48, 48, 46, 45, 45, 45, 44, 44, 44, 44, 45, 45, 45, (1,2,43): 45, 45, 45, 45, 46, 45, 46, 47, 48, 48, 49, 49, 50, 51, (1,2,57): 51, 51, 52, 53, 54, 54, 55, 56, 58, 60, 62, 63, 64, 64, (1,2,71): 64, 64, 64, 63, 63, 63, 64, 65, 66, 65, 65, 66, 67, 67, (1,2,85): 67, 66, 65, 60, 58, 59, 61, 64, 68, 70, 68, 67, 64, 66, (1,2,99): 66, 68, 67, 65, 63, 59, 58, 59, 61, 64, 65, 64, 64, 61, (1,2,113): 64, 64, 63, 63, 63, 62, 64, 63, 64, 64, 65, 65, 63, 64, (1,2,127): 64, 62, 62, 62, 62, 61, 61, 61, 61, 62, 62, 60, 60, 61, (1,2,141): 61, 63, 63, 65, 63, 62, 62, 65, 67, 68, 67, 68, 70, 73, (1,2,155): 74, 71, 64, 58, 53, 55, 55, 54, 52, 52, 51, 50, 50, 50, (1,2,169): 50, 50, 49, 50, 49, 49, 49, 48, 49, 48, 48, 47, 47, 47, (1,2,183): 46, 47, 46, 44, 42, 42, 45, 50, 53, 57, 63, 69, 73, 79, (1,2,197): 91, 102, 109, 119, 125, 130, 126, 109, 86, 69, 65, 65, (1,2,209): 70, 72, 72, 75, 91, 116, 137, 140, 143, 144, 138, 122, (1,2,221): 105, 91, 83, 85, 84, 83, (1,3,0): 45, 46, 46, 47, 47, 48, 48, 48, 49, 49, 49, 49, 49, 49, 49, (1,3,15): 49, 47, 47, 46, 46, 46, 46, 47, 47, 48, 48, 48, 48, 48, (1,3,29): 48, 48, 48, 45, 45, 45, 44, 44, 44, 43, 43, 46, 46, 46, (1,3,43): 46, 46, 46, 46, 47, 48, 48, 48, 49, 49, 50, 50, 50, 50, (1,3,57): 50, 51, 52, 53, 53, 54, 54, 55, 57, 58, 60, 61, 61, 62, (1,3,71): 62, 61, 62, 60, 61, 61, 62, 64, 65, 68, 69, 68, 68, 68, (1,3,85): 66, 65, 63, 57, 57, 57, 60, 64, 69, 72, 70, 68, 65, 66, (1,3,99): 68, 67, 66, 64, 63, 59, 58, 59, 62, 65, 66, 64, 64, 61, (1,3,113): 64, 64, 64, 62, 63, 63, 63, 64, 63, 64, 64, 64, 64, 64, (1,3,127): 63, 62, 62, 62, 61, 61, 61, 60, 60, 61, 61, 60, 60, 60, (1,3,141): 62, 62, 63, 65, 63, 62, 64, 66, 67, 67, 66, 70, 74, 76, (1,3,155): 75, 70, 64, 58, 55, 56, 57, 55, 55, 53, 52, 51, 51, 50, (1,3,169): 50, 50, 50, 50, 49, 49, 50, 50, 50, 49, 49, 48, 48, 48, (1,3,183): 48, 49, 48, 47, 44, 43, 44, 48, 50, 55, 59, 65, 69, 72, (1,3,197): 82, 95, 105, 115, 121, 125, 119, 102, 82, 69, 64, 64, 69, (1,3,210): 70, 67, 66, 76, 94, 110, 121, 125, 128, 122, 111, 98, 89, (1,3,223): 84, 87, 86, 86, (1,4,0): 45, 45, 45, 46, 47, 48, 47, 48, 47, 47, 47, 47, 47, 47, 47, (1,4,15): 47, 47, 47, 46, 46, 46, 46, 47, 47, 48, 48, 48, 48, 48, (1,4,29): 48, 48, 48, 46, 46, 45, 45, 45, 44, 44, 44, 47, 47, 47, (1,4,43): 47, 47, 47, 47, 47, 49, 49, 49, 49, 49, 50, 50, 50, 50, (1,4,57): 50, 51, 51, 52, 53, 54, 54, 53, 54, 56, 57, 58, 59, 59, (1,4,71): 59, 58, 58, 58, 59, 60, 61, 62, 64, 71, 72, 71, 70, 69, (1,4,85): 68, 66, 62, 59, 58, 58, 61, 66, 70, 74, 73, 71, 68, 68, (1,4,99): 69, 66, 65, 61, 60, 58, 58, 60, 63, 66, 67, 65, 63, 63, (1,4,113): 63, 63, 63, 62, 62, 62, 63, 62, 63, 63, 63, 63, 63, 62, (1,4,127): 62, 62, 63, 62, 62, 62, 61, 61, 61, 61, 61, 61, 61, 60, (1,4,141): 62, 62, 63, 66, 65, 64, 64, 65, 67, 66, 65, 67, 72, 76, (1,4,155): 74, 69, 62, 57, 53, 57, 56, 55, 54, 53, 52, 52, 51, 50, (1,4,169): 51, 51, 51, 50, 50, 50, 50, 50, 50, 50, 50, 49, 49, 48, (1,4,183): 48, 50, 49, 49, 46, 44, 43, 46, 47, 53, 57, 61, 64, 66, (1,4,197): 75, 90, 103, 112, 120, 123, 115, 100, 84, 71, 66, 65, 66, (1,4,210): 65, 65, 66, 70, 75, 80, 99, 102, 105, 102, 96, 91, 88, (1,4,223): 88, 89, 87, 87, (1,5,0): 44, 44, 45, 45, 46, 47, 47, 47, 46, 46, 46, 46, 46, 46, 46, (1,5,15): 45, 46, 46, 45, 44, 44, 45, 46, 46, 46, 46, 46, 46, 46, (1,5,29): 46, 46, 46, 45, 45, 45, 45, 44, 44, 44, 43, 46, 46, 46, (1,5,43): 46, 46, 46, 46, 46, 49, 49, 49, 49, 49, 49, 49, 49, 49, (1,5,57): 50, 50, 51, 52, 53, 53, 53, 52, 53, 54, 55, 55, 57, 57, (1,5,71): 57, 57, 57, 57, 58, 59, 60, 62, 65, 71, 72, 71, 70, 69, (1,5,85): 67, 64, 62, 60, 59, 59, 61, 64, 70, 74, 74, 72, 69, 70, (1,5,99): 69, 67, 64, 62, 58, 59, 58, 60, 64, 67, 67, 64, 62, 63, (1,5,113): 64, 63, 63, 63, 62, 62, 63, 62, 63, 63, 62, 63, 62, 62, (1,5,127): 63, 62, 62, 62, 62, 61, 61, 61, 60, 61, 60, 60, 60, 60, (1,5,141): 61, 62, 63, 66, 65, 64, 66, 67, 67, 66, 65, 65, 73, 78, (1,5,155): 78, 71, 63, 59, 54, 57, 55, 55, 54, 52, 52, 51, 52, 51, (1,5,169): 51, 52, 51, 51, 50, 50, 51, 51, 51, 51, 51, 50, 50, 49, (1,5,183): 49, 49, 50, 50, 48, 46, 45, 46, 46, 52, 52, 56, 60, 63, (1,5,197): 71, 89, 107, 117, 124, 124, 117, 104, 91, 77, 66, 65, 64, (1,5,210): 61, 62, 66, 67, 66, 64, 71, 77, 81, 81, 81, 81, 85, 87, (1,5,224): 89, 89, 88, (1,6,0): 43, 43, 44, 45, 46, 46, 47, 47, 45, 45, 45, 45, 45, 45, 45, (1,6,15): 45, 45, 44, 43, 43, 43, 43, 44, 44, 43, 43, 43, 43, 43, (1,6,29): 43, 43, 43, 44, 44, 44, 43, 43, 43, 42, 42, 45, 45, 45, (1,6,43): 45, 45, 45, 45, 46, 49, 49, 49, 48, 48, 48, 48, 48, 49, (1,6,57): 49, 50, 51, 52, 52, 53, 53, 51, 52, 53, 54, 54, 54, 54, (1,6,71): 55, 56, 56, 56, 57, 59, 60, 62, 64, 69, 70, 69, 68, 67, (1,6,85): 66, 63, 61, 61, 58, 57, 59, 61, 66, 70, 70, 70, 70, 70, (1,6,99): 69, 68, 67, 64, 62, 58, 59, 60, 65, 67, 68, 64, 61, 63, (1,6,113): 64, 64, 63, 62, 62, 61, 62, 61, 63, 63, 63, 63, 62, 63, (1,6,127): 62, 62, 62, 62, 61, 61, 61, 60, 60, 60, 61, 59, 60, 60, (1,6,141): 62, 61, 63, 67, 66, 65, 66, 67, 67, 67, 67, 70, 81, 88, (1,6,155): 88, 82, 73, 67, 63, 57, 55, 55, 54, 53, 52, 51, 51, 51, (1,6,169): 51, 52, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 50, (1,6,183): 50, 48, 49, 50, 49, 47, 46, 46, 47, 48, 48, 51, 56, 60, (1,6,197): 70, 93, 115, 128, 132, 131, 122, 112, 101, 83, 67, 63, (1,6,209): 60, 59, 62, 66, 66, 65, 63, 66, 72, 77, 81, 81, 82, 86, (1,6,223): 88, 90, 89, 88, (1,7,0): 43, 43, 44, 44, 44, 46, 47, 47, 45, 45, 45, 45, 45, 45, 45, (1,7,15): 45, 44, 43, 43, 42, 42, 43, 43, 44, 42, 42, 42, 42, 42, (1,7,29): 42, 42, 42, 44, 44, 44, 43, 43, 42, 42, 42, 44, 44, 44, (1,7,43): 44, 44, 44, 44, 44, 47, 48, 48, 48, 48, 48, 48, 48, 49, (1,7,57): 49, 50, 51, 51, 52, 53, 53, 50, 51, 52, 53, 53, 53, 53, (1,7,71): 53, 56, 56, 56, 56, 58, 61, 62, 63, 67, 67, 66, 65, 65, (1,7,85): 64, 62, 60, 60, 57, 56, 56, 58, 61, 66, 66, 70, 69, 70, (1,7,99): 71, 71, 70, 67, 66, 59, 59, 62, 66, 68, 68, 64, 62, 65, (1,7,113): 65, 64, 64, 64, 63, 63, 62, 62, 64, 63, 63, 62, 63, 62, (1,7,127): 62, 62, 62, 62, 61, 61, 60, 60, 61, 61, 60, 60, 60, 60, (1,7,141): 62, 62, 63, 68, 67, 66, 67, 67, 68, 68, 69, 80, 91, 101, (1,7,155): 102, 95, 85, 77, 73, 57, 56, 55, 54, 52, 52, 51, 51, 51, (1,7,169): 52, 52, 51, 52, 51, 51, 51, 51, 51, 51, 51, 51, 51, 50, (1,7,183): 50, 47, 48, 50, 50, 48, 47, 47, 47, 44, 44, 48, 55, 60, (1,7,197): 73, 98, 122, 138, 141, 136, 128, 120, 107, 87, 68, 61, (1,7,209): 60, 60, 62, 65, 67, 68, 69, 81, 87, 94, 96, 95, 94, 94, (1,7,223): 95, 91, 90, 90, (1,8,0): 45, 45, 45, 46, 45, 45, 45, 45, 46, 46, 45, 44, 44, 44, 43, (1,8,15): 43, 43, 43, 43, 43, 43, 43, 43, 44, 43, 43, 43, 43, 43, (1,8,29): 43, 43, 43, 43, 43, 43, 44, 44, 45, 45, 46, 45, 45, 45, (1,8,43): 45, 45, 45, 45, 45, 44, 45, 46, 47, 47, 47, 47, 47, 47, (1,8,57): 47, 47, 47, 48, 49, 50, 52, 48, 50, 51, 52, 52, 53, 53, (1,8,71): 53, 52, 53, 53, 54, 55, 57, 58, 60, 63, 64, 64, 63, 62, (1,8,85): 60, 57, 54, 57, 56, 56, 57, 59, 61, 63, 62, 65, 65, 67, (1,8,99): 69, 71, 71, 69, 67, 64, 66, 68, 69, 68, 66, 65, 66, 65, (1,8,113): 64, 63, 62, 61, 61, 62, 63, 60, 61, 60, 62, 61, 61, 61, (1,8,127): 62, 60, 60, 61, 60, 60, 60, 58, 59, 61, 60, 60, 61, 62, (1,8,141): 64, 65, 65, 69, 68, 69, 73, 71, 68, 69, 77, 90, 102, 113, (1,8,155): 115, 114, 106, 94, 81, 76, 70, 62, 56, 53, 52, 51, 51, (1,8,168): 51, 52, 52, 52, 50, 49, 49, 49, 50, 50, 50, 50, 49, 49, (1,8,182): 49, 49, 50, 50, 49, 49, 49, 49, 49, 48, 43, 47, 51, 52, (1,8,196): 59, 79, 109, 133, 144, 150, 149, 137, 122, 110, 98, 91, (1,8,208): 73, 66, 62, 62, 66, 73, 85, 96, 113, 125, 134, 127, 121, (1,8,221): 117, 107, 95, 90, 90, 93, (1,9,0): 45, 45, 45, 45, 45, 45, 44, 45, 46, 45, 44, 44, 43, 43, 43, (1,9,15): 43, 42, 42, 42, 42, 43, 43, 43, 43, 43, 43, 43, 43, 43, (1,9,29): 43, 43, 43, 43, 43, 43, 44, 44, 44, 45, 45, 45, 45, 45, (1,9,43): 45, 45, 45, 45, 45, 44, 44, 45, 46, 47, 47, 46, 46, 46, (1,9,57): 46, 46, 46, 47, 48, 49, 50, 48, 49, 50, 52, 52, 53, 53, (1,9,71): 52, 52, 52, 52, 53, 54, 56, 58, 59, 62, 62, 61, 62, 61, (1,9,85): 59, 57, 55, 55, 55, 55, 57, 57, 60, 60, 61, 64, 65, 66, (1,9,99): 68, 69, 70, 69, 68, 68, 69, 70, 71, 70, 67, 66, 66, 67, (1,9,113): 66, 64, 63, 63, 63, 62, 62, 61, 62, 61, 61, 61, 62, 62, (1,9,127): 61, 60, 61, 60, 60, 60, 59, 59, 60, 60, 61, 61, 61, 62, (1,9,141): 64, 65, 66, 71, 69, 71, 74, 73, 71, 76, 84, 100, 113, (1,9,154): 126, 127, 124, 115, 102, 88, 78, 73, 67, 61, 58, 56, 52, (1,9,167): 49, 51, 51, 51, 50, 49, 48, 48, 48, 49, 50, 49, 49, 49, (1,9,181): 49, 49, 49, 50, 50, 49, 49, 49, 49, 49, 48, 43, 45, 50, (1,9,195): 53, 63, 86, 114, 136, 147, 151, 150, 139, 129, 121, 116, (1,9,207): 110, 95, 90, 85, 87, 94, 103, 118, 130, 136, 146, 149, (1,9,219): 142, 134, 128, 116, 101, 88, 88, 91, (1,10,0): 45, 45, 45, 45, 45, 46, 45, 45, 45, 45, 45, 44, 43, 42, (1,10,14): 42, 42, 43, 42, 42, 42, 41, 41, 41, 41, 43, 43, 43, 43, (1,10,28): 43, 43, 43, 43, 42, 42, 43, 43, 43, 44, 44, 44, 44, 44, (1,10,42): 44, 45, 45, 45, 45, 46, 44, 44, 45, 46, 46, 46, 46, 45, (1,10,56): 45, 45, 45, 45, 46, 47, 48, 49, 48, 49, 50, 51, 51, 52, (1,10,70): 52, 52, 52, 52, 52, 52, 54, 55, 57, 58, 59, 59, 60, 61, (1,10,84): 59, 58, 55, 54, 54, 54, 53, 55, 57, 59, 60, 60, 63, 64, (1,10,98): 64, 64, 67, 68, 69, 68, 70, 72, 73, 73, 69, 67, 66, 65, (1,10,112): 66, 65, 63, 62, 62, 62, 62, 63, 60, 61, 60, 61, 62, 61, (1,10,126): 60, 61, 60, 60, 60, 59, 59, 60, 58, 59, 60, 60, 60, 62, (1,10,140): 63, 65, 67, 68, 74, 72, 72, 75, 75, 76, 83, 96, 115, (1,10,153): 129, 140, 142, 137, 128, 113, 99, 82, 78, 73, 68, 64, (1,10,165): 59, 54, 49, 49, 49, 48, 48, 47, 47, 47, 47, 47, 48, 47, (1,10,179): 47, 47, 47, 47, 47, 48, 48, 48, 48, 48, 48, 48, 47, 43, (1,10,193): 43, 47, 54, 69, 94, 122, 141, 148, 151, 149, 142, 137, (1,10,205): 137, 139, 140, 136, 131, 126, 125, 126, 130, 142, 153, (1,10,216): 161, 168, 165, 157, 150, 141, 123, 104, 86, 87, 89, (1,11,0): 46, 46, 46, 46, 46, 46, 46, 46, 45, 45, 44, 44, 42, 42, (1,11,14): 42, 42, 42, 41, 41, 41, 41, 40, 40, 40, 42, 42, 42, 42, (1,11,28): 42, 42, 42, 42, 42, 42, 42, 42, 42, 43, 43, 43, 43, 44, (1,11,42): 44, 44, 44, 45, 45, 45, 43, 44, 45, 45, 45, 45, 44, 44, (1,11,56): 44, 44, 44, 44, 45, 46, 47, 48, 49, 50, 51, 52, 51, 51, (1,11,70): 51, 52, 51, 51, 50, 51, 52, 54, 55, 56, 57, 57, 58, 59, (1,11,84): 58, 57, 56, 53, 55, 54, 54, 56, 57, 58, 60, 62, 63, 63, (1,11,98): 63, 63, 65, 66, 68, 69, 71, 72, 74, 73, 70, 66, 65, 64, (1,11,112): 65, 65, 63, 62, 62, 62, 61, 62, 60, 61, 61, 61, 61, 61, (1,11,126): 61, 60, 59, 59, 59, 59, 59, 59, 59, 59, 59, 60, 60, 62, (1,11,140): 64, 67, 68, 69, 76, 72, 71, 74, 76, 81, 93, 106, 128, (1,11,153): 143, 154, 155, 149, 139, 123, 109, 90, 85, 79, 73, 68, (1,11,165): 61, 55, 51, 49, 48, 47, 45, 45, 45, 46, 47, 46, 46, 46, (1,11,179): 46, 46, 46, 46, 46, 47, 47, 47, 47, 47, 47, 47, 45, 44, (1,11,193): 42, 45, 54, 74, 102, 128, 144, 147, 150, 149, 144, 144, (1,11,205): 153, 164, 168, 168, 164, 160, 158, 153, 152, 156, 163, (1,11,216): 176, 177, 173, 163, 155, 146, 124, 102, 86, 85, 86, (1,12,0): 47, 47, 47, 47, 46, 46, 46, 46, 45, 45, 45, 44, 44, 43, (1,12,14): 43, 43, 42, 42, 42, 41, 41, 40, 40, 40, 42, 42, 42, 42, (1,12,28): 42, 42, 42, 42, 42, 42, 42, 42, 42, 41, 41, 41, 42, 43, (1,12,42): 43, 44, 44, 45, 45, 45, 43, 44, 44, 44, 44, 44, 43, 42, (1,12,56): 43, 43, 43, 43, 44, 45, 47, 48, 48, 50, 51, 52, 51, 51, (1,12,70): 50, 50, 50, 50, 49, 49, 50, 51, 53, 54, 54, 56, 57, 58, (1,12,84): 57, 57, 56, 53, 55, 54, 55, 55, 58, 60, 62, 62, 64, 63, (1,12,98): 63, 63, 64, 67, 67, 69, 69, 71, 72, 71, 68, 65, 63, 64, (1,12,112): 64, 64, 63, 62, 61, 60, 61, 61, 60, 59, 60, 60, 60, 60, (1,12,126): 60, 60, 59, 58, 58, 58, 58, 58, 58, 58, 58, 60, 61, 63, (1,12,140): 66, 68, 70, 72, 75, 72, 71, 76, 80, 88, 102, 118, 140, (1,12,153): 153, 164, 163, 157, 145, 130, 117, 101, 95, 85, 76, 70, (1,12,165): 64, 58, 56, 49, 48, 45, 44, 43, 43, 45, 46, 45, 45, 45, (1,12,179): 45, 45, 46, 45, 46, 46, 47, 46, 47, 47, 47, 47, 45, 44, (1,12,193): 41, 43, 54, 76, 104, 131, 146, 151, 154, 153, 150, 155, (1,12,205): 170, 185, 192, 183, 182, 183, 183, 177, 171, 171, 177, (1,12,216): 179, 180, 173, 162, 155, 146, 122, 98, 84, 84, 85, (1,13,0): 48, 48, 48, 48, 47, 47, 47, 47, 46, 46, 46, 45, 45, 45, (1,13,14): 44, 44, 43, 43, 43, 42, 41, 40, 40, 40, 41, 41, 41, 41, (1,13,28): 41, 41, 41, 41, 42, 42, 41, 41, 41, 40, 40, 40, 42, 42, (1,13,42): 42, 43, 44, 44, 45, 45, 43, 43, 44, 44, 43, 43, 42, 41, (1,13,56): 44, 44, 43, 44, 45, 46, 47, 48, 49, 49, 51, 52, 51, 50, (1,13,70): 50, 49, 50, 49, 48, 48, 49, 50, 52, 52, 53, 55, 57, 58, (1,13,84): 57, 56, 55, 53, 53, 53, 54, 56, 57, 60, 62, 61, 63, 62, (1,13,98): 63, 63, 66, 66, 67, 68, 66, 68, 69, 69, 66, 63, 62, 62, (1,13,112): 63, 63, 61, 61, 60, 60, 60, 60, 59, 60, 60, 59, 59, 60, (1,13,126): 59, 59, 58, 58, 57, 58, 58, 57, 57, 57, 60, 60, 63, 65, (1,13,140): 67, 70, 73, 73, 74, 71, 72, 78, 86, 96, 112, 131, 148, (1,13,153): 161, 168, 167, 160, 150, 136, 123, 112, 105, 94, 83, 75, (1,13,165): 69, 64, 60, 52, 50, 46, 44, 41, 42, 43, 44, 43, 43, 43, (1,13,179): 43, 43, 44, 44, 44, 45, 45, 45, 45, 46, 46, 46, 44, 42, (1,13,193): 40, 43, 54, 75, 103, 130, 147, 155, 158, 159, 158, 165, (1,13,205): 180, 197, 206, 201, 202, 203, 200, 190, 179, 176, 178, (1,13,216): 178, 178, 172, 161, 153, 142, 120, 95, 81, 81, 81, (1,14,0): 48, 48, 48, 48, 47, 47, 47, 47, 47, 47, 47, 47, 46, 46, (1,14,14): 45, 45, 45, 44, 44, 43, 42, 41, 41, 40, 41, 41, 41, 41, (1,14,28): 41, 41, 41, 41, 41, 41, 41, 40, 40, 40, 39, 39, 41, 41, (1,14,42): 42, 43, 44, 44, 45, 45, 43, 43, 43, 43, 43, 42, 41, 40, (1,14,56): 44, 44, 44, 44, 45, 46, 48, 48, 49, 50, 50, 51, 51, 50, (1,14,70): 50, 49, 49, 49, 48, 47, 48, 48, 49, 51, 54, 54, 56, 57, (1,14,84): 58, 57, 55, 54, 52, 52, 52, 53, 56, 58, 59, 59, 60, 60, (1,14,98): 62, 64, 65, 66, 65, 64, 62, 64, 66, 66, 64, 62, 61, 63, (1,14,112): 63, 63, 62, 61, 59, 59, 60, 60, 59, 59, 59, 59, 59, 58, (1,14,126): 58, 59, 57, 57, 58, 57, 57, 57, 56, 56, 60, 61, 64, 66, (1,14,140): 69, 73, 75, 77, 73, 72, 74, 83, 93, 104, 123, 142, 156, (1,14,153): 167, 172, 170, 161, 153, 139, 129, 120, 114, 104, 93, (1,14,164): 84, 76, 68, 63, 55, 52, 48, 43, 40, 40, 41, 43, 41, 41, (1,14,178): 41, 41, 41, 42, 42, 42, 43, 43, 44, 44, 44, 44, 44, 43, (1,14,192): 41, 41, 45, 54, 72, 99, 128, 146, 156, 160, 162, 161, (1,14,204): 168, 184, 200, 208, 211, 210, 209, 203, 189, 175, 172, (1,14,215): 176, 174, 177, 171, 159, 148, 136, 115, 93, 79, 77, 76, (1,15,0): 47, 48, 47, 47, 48, 48, 48, 47, 48, 48, 48, 47, 47, 47, (1,15,14): 46, 45, 46, 45, 45, 44, 43, 42, 41, 41, 41, 41, 41, 41, (1,15,28): 41, 41, 41, 41, 41, 41, 40, 40, 40, 39, 39, 38, 40, 41, (1,15,42): 42, 43, 43, 45, 46, 46, 44, 44, 43, 43, 42, 41, 40, 40, (1,15,56): 45, 45, 45, 45, 46, 47, 48, 49, 51, 51, 52, 52, 51, 50, (1,15,70): 49, 49, 49, 49, 47, 47, 47, 48, 49, 50, 51, 54, 55, 57, (1,15,84): 58, 58, 56, 54, 50, 49, 50, 51, 54, 57, 60, 59, 61, 61, (1,15,98): 63, 64, 64, 64, 63, 61, 60, 62, 66, 67, 66, 63, 62, 62, (1,15,112): 62, 61, 61, 61, 61, 61, 61, 62, 60, 60, 60, 59, 58, 59, (1,15,126): 59, 59, 58, 59, 58, 59, 59, 58, 58, 58, 62, 62, 64, 67, (1,15,140): 70, 74, 77, 79, 73, 73, 80, 92, 104, 117, 135, 153, 162, (1,15,153): 170, 172, 169, 162, 155, 144, 136, 126, 121, 112, 103, (1,15,164): 93, 82, 73, 65, 56, 53, 48, 43, 40, 40, 41, 42, 41, 42, (1,15,178): 42, 41, 41, 41, 41, 41, 42, 42, 43, 43, 44, 44, 44, 43, (1,15,192): 41, 42, 45, 54, 70, 96, 124, 144, 153, 158, 161, 161, (1,15,204): 167, 182, 196, 203, 201, 199, 198, 193, 183, 173, 174, (1,15,215): 181, 171, 174, 169, 156, 143, 131, 110, 90, 76, 74, 72, (1,16,0): 48, 48, 48, 49, 49, 49, 50, 49, 50, 51, 51, 50, 49, 49, (1,16,14): 47, 47, 48, 48, 47, 46, 44, 45, 44, 44, 44, 44, 45, 45, (1,16,28): 44, 43, 41, 41, 41, 41, 40, 41, 41, 41, 42, 42, 43, 43, (1,16,42): 44, 45, 45, 46, 47, 47, 45, 45, 44, 45, 46, 47, 46, 46, (1,16,56): 45, 44, 45, 46, 47, 49, 49, 50, 52, 52, 53, 53, 53, 52, (1,16,70): 51, 50, 50, 49, 49, 48, 47, 48, 48, 49, 47, 49, 51, 54, (1,16,84): 56, 55, 54, 50, 45, 41, 39, 41, 46, 53, 60, 63, 65, 64, (1,16,98): 65, 66, 64, 61, 59, 56, 59, 61, 65, 66, 67, 65, 62, 59, (1,16,112): 59, 58, 59, 61, 63, 63, 63, 63, 64, 63, 62, 61, 60, 59, (1,16,126): 58, 59, 57, 64, 60, 56, 62, 62, 59, 63, 59, 63, 68, 72, (1,16,140): 76, 77, 79, 78, 76, 84, 99, 113, 125, 138, 151, 159, (1,16,152): 166, 167, 168, 168, 165, 161, 155, 151, 142, 133, 122, (1,16,163): 116, 110, 101, 88, 75, 63, 57, 48, 43, 39, 39, 39, 38, (1,16,176): 41, 41, 40, 39, 38, 38, 38, 38, 39, 39, 40, 40, 41, 42, (1,16,190): 42, 42, 41, 43, 45, 47, 63, 92, 122, 139, 156, 157, 161, (1,16,203): 166, 168, 170, 180, 191, 193, 190, 186, 179, 174, 171, (1,16,214): 170, 170, 168, 166, 158, 148, 137, 124, 107, 90, 82, 73, (1,16,226): 65, (1,17,0): 48, 49, 49, 49, 50, 50, 49, 50, 51, 51, 52, 52, 51, 50, (1,17,14): 48, 48, 47, 47, 46, 46, 46, 45, 44, 44, 44, 45, 45, 45, (1,17,28): 44, 42, 42, 40, 41, 40, 40, 40, 41, 41, 42, 42, 43, 43, (1,17,42): 45, 45, 47, 47, 47, 47, 46, 46, 46, 46, 46, 46, 45, 46, (1,17,56): 45, 46, 46, 47, 47, 48, 50, 51, 53, 53, 53, 53, 53, 52, (1,17,70): 51, 51, 50, 49, 48, 48, 47, 47, 48, 49, 47, 47, 50, 51, (1,17,84): 52, 51, 50, 48, 44, 42, 41, 42, 45, 51, 57, 61, 65, 65, (1,17,98): 65, 64, 63, 61, 58, 59, 57, 60, 62, 64, 65, 65, 65, 63, (1,17,112): 59, 59, 60, 61, 62, 64, 63, 64, 64, 62, 61, 60, 59, 59, (1,17,126): 58, 60, 57, 61, 59, 57, 63, 63, 57, 58, 61, 64, 68, 72, (1,17,140): 74, 77, 79, 77, 74, 84, 102, 119, 135, 147, 159, 166, (1,17,152): 167, 168, 167, 167, 165, 160, 156, 153, 147, 139, 130, (1,17,163): 123, 119, 111, 97, 86, 73, 65, 56, 48, 42, 41, 40, 40, (1,17,176): 40, 39, 39, 39, 38, 38, 39, 39, 39, 40, 40, 41, 42, 42, (1,17,190): 43, 43, 45, 46, 44, 45, 58, 88, 120, 139, 150, 153, 158, (1,17,203): 163, 164, 165, 173, 182, 185, 182, 179, 174, 171, 168, (1,17,214): 168, 168, 166, 164, 157, 146, 136, 123, 106, 90, 77, 68, (1,17,226): 62, (1,18,0): 50, 50, 50, 50, 51, 51, 51, 51, 52, 52, 53, 53, 53, 52, (1,18,14): 50, 49, 48, 48, 47, 46, 47, 46, 44, 45, 45, 45, 46, 45, (1,18,28): 45, 44, 42, 41, 40, 39, 41, 41, 41, 41, 42, 42, 44, 44, (1,18,42): 46, 46, 46, 47, 47, 47, 47, 47, 46, 46, 47, 46, 45, 45, (1,18,56): 46, 48, 48, 49, 49, 51, 52, 53, 54, 54, 55, 55, 54, 53, (1,18,70): 52, 52, 50, 49, 48, 48, 48, 48, 49, 49, 49, 47, 46, 44, (1,18,84): 43, 42, 42, 42, 44, 46, 45, 45, 46, 48, 50, 52, 58, 59, (1,18,98): 59, 61, 60, 60, 58, 58, 60, 61, 62, 63, 65, 65, 66, 67, (1,18,112): 63, 61, 62, 62, 62, 62, 61, 61, 59, 60, 58, 58, 59, 60, (1,18,126): 61, 61, 62, 60, 59, 60, 65, 65, 61, 59, 63, 65, 70, 72, (1,18,140): 74, 74, 78, 77, 73, 83, 101, 117, 132, 144, 156, 164, (1,18,152): 168, 169, 169, 168, 164, 158, 153, 151, 149, 146, 139, (1,18,163): 134, 130, 124, 114, 104, 89, 80, 68, 58, 51, 47, 45, 42, (1,18,176): 38, 36, 36, 36, 37, 38, 40, 42, 42, 42, 43, 44, 45, 45, (1,18,190): 46, 45, 47, 47, 42, 42, 55, 85, 118, 138, 144, 147, 153, (1,18,203): 159, 160, 160, 165, 172, 175, 173, 170, 169, 167, 167, (1,18,214): 166, 166, 164, 162, 155, 145, 135, 124, 107, 90, 73, 64, (1,18,226): 58, (1,19,0): 51, 51, 52, 52, 52, 53, 52, 52, 53, 54, 54, 55, 55, 54, (1,19,14): 52, 52, 50, 49, 49, 48, 48, 47, 46, 46, 47, 47, 47, 47, (1,19,28): 46, 46, 45, 43, 41, 41, 42, 42, 42, 42, 43, 43, 45, 45, (1,19,42): 47, 47, 48, 48, 48, 48, 49, 49, 47, 48, 48, 46, 46, 46, (1,19,56): 50, 50, 50, 51, 52, 54, 54, 55, 56, 56, 57, 56, 56, 55, (1,19,70): 53, 53, 50, 50, 49, 48, 48, 49, 50, 49, 51, 49, 45, 41, (1,19,84): 38, 37, 38, 40, 47, 49, 50, 50, 47, 47, 45, 46, 57, 59, (1,19,98): 60, 60, 59, 59, 59, 58, 62, 64, 66, 66, 67, 66, 65, 65, (1,19,112): 64, 64, 63, 63, 62, 60, 59, 58, 56, 56, 57, 57, 59, 60, (1,19,126): 61, 62, 64, 55, 56, 60, 59, 62, 65, 64, 66, 68, 71, 73, (1,19,140): 73, 75, 78, 80, 81, 90, 101, 114, 125, 136, 147, 156, (1,19,152): 165, 167, 168, 168, 163, 158, 152, 150, 148, 146, 142, (1,19,163): 140, 139, 134, 125, 118, 103, 93, 80, 68, 58, 52, 47, (1,19,175): 42, 37, 35, 35, 36, 37, 39, 41, 44, 42, 43, 43, 44, 44, (1,19,189): 44, 45, 44, 42, 43, 43, 43, 56, 85, 113, 132, 140, 143, (1,19,202): 150, 156, 159, 158, 160, 165, 167, 165, 163, 163, 165, (1,19,213): 165, 165, 164, 161, 159, 153, 144, 135, 124, 107, 91, (1,19,224): 71, 61, 55, (1,20,0): 53, 53, 53, 54, 54, 54, 54, 54, 55, 55, 56, 57, 57, 57, (1,20,14): 55, 55, 52, 52, 51, 51, 51, 50, 49, 49, 49, 50, 50, 49, (1,20,28): 48, 47, 46, 45, 44, 43, 43, 43, 44, 44, 44, 44, 47, 47, (1,20,42): 47, 47, 49, 49, 50, 50, 50, 50, 50, 50, 49, 49, 49, 49, (1,20,56): 52, 53, 52, 54, 55, 56, 56, 57, 58, 58, 59, 58, 57, 56, (1,20,70): 53, 53, 51, 51, 50, 50, 50, 50, 51, 51, 52, 50, 48, 44, (1,20,84): 40, 39, 40, 44, 50, 53, 55, 54, 51, 49, 47, 47, 58, 59, (1,20,98): 60, 61, 60, 60, 59, 58, 59, 62, 65, 66, 67, 67, 64, 64, (1,20,112): 66, 67, 64, 62, 60, 59, 57, 56, 54, 55, 56, 58, 60, 61, (1,20,126): 62, 62, 57, 48, 56, 63, 53, 53, 66, 67, 69, 71, 73, 74, (1,20,140): 74, 76, 79, 85, 94, 102, 109, 114, 121, 131, 144, 154, (1,20,152): 159, 163, 167, 168, 166, 162, 156, 151, 144, 142, 140, (1,20,163): 139, 139, 136, 131, 126, 113, 104, 90, 75, 64, 54, 47, (1,20,175): 42, 39, 37, 38, 38, 39, 40, 43, 44, 43, 43, 43, 43, 42, (1,20,189): 42, 41, 41, 35, 42, 48, 54, 67, 90, 112, 125, 136, 138, (1,20,202): 144, 152, 155, 153, 154, 159, 162, 160, 159, 160, 163, (1,20,213): 165, 165, 163, 158, 156, 150, 142, 134, 123, 107, 92, (1,20,224): 69, 58, 52, (1,21,0): 54, 54, 55, 55, 56, 56, 55, 55, 56, 57, 58, 59, 59, 59, (1,21,14): 57, 57, 55, 55, 54, 53, 54, 53, 52, 52, 52, 52, 53, 52, (1,21,28): 51, 51, 49, 48, 45, 45, 45, 45, 46, 46, 46, 47, 48, 48, (1,21,42): 48, 49, 50, 50, 51, 51, 51, 51, 52, 52, 52, 53, 52, 53, (1,21,56): 54, 55, 55, 56, 57, 58, 58, 59, 60, 60, 60, 60, 59, 57, (1,21,70): 55, 54, 53, 53, 52, 51, 51, 52, 53, 53, 54, 53, 50, 49, (1,21,84): 46, 45, 47, 49, 53, 56, 57, 57, 55, 54, 50, 50, 50, 51, (1,21,98): 53, 54, 55, 56, 55, 54, 55, 58, 60, 62, 63, 64, 63, 65, (1,21,112): 65, 65, 65, 63, 60, 58, 57, 56, 55, 56, 57, 59, 60, 61, (1,21,126): 62, 60, 53, 51, 77, 89, 65, 57, 70, 75, 71, 74, 76, 77, (1,21,140): 77, 80, 85, 92, 105, 112, 114, 117, 117, 124, 135, 145, (1,21,152): 147, 153, 160, 165, 165, 161, 156, 150, 143, 141, 140, (1,21,163): 142, 142, 141, 138, 134, 125, 116, 104, 90, 77, 64, 54, (1,21,175): 47, 43, 42, 42, 42, 42, 44, 45, 45, 45, 45, 44, 43, 41, (1,21,189): 40, 39, 40, 40, 51, 62, 71, 82, 98, 113, 121, 130, 132, (1,21,202): 137, 145, 149, 149, 151, 154, 159, 156, 155, 158, 162, (1,21,213): 164, 162, 159, 154, 153, 148, 141, 133, 124, 108, 92, (1,21,224): 68, 57, 51, (1,22,0): 55, 56, 56, 56, 57, 57, 56, 57, 57, 58, 59, 60, 60, 60, (1,22,14): 59, 59, 58, 58, 57, 56, 56, 56, 55, 55, 55, 55, 55, 55, (1,22,28): 54, 53, 51, 51, 47, 47, 47, 48, 48, 48, 49, 49, 49, 49, (1,22,42): 50, 50, 51, 51, 52, 52, 52, 52, 52, 53, 54, 57, 56, 57, (1,22,56): 55, 56, 57, 58, 58, 60, 61, 61, 61, 61, 61, 60, 60, 58, (1,22,70): 56, 55, 56, 55, 55, 54, 54, 55, 55, 56, 54, 55, 56, 56, (1,22,84): 57, 56, 56, 57, 56, 56, 57, 56, 57, 57, 57, 54, 47, 47, (1,22,98): 51, 54, 57, 59, 59, 61, 65, 64, 61, 60, 58, 60, 61, 64, (1,22,112): 63, 64, 62, 62, 60, 59, 58, 59, 58, 59, 60, 61, 61, 60, (1,22,126): 59, 57, 49, 61, 108, 127, 91, 68, 76, 78, 73, 77, 80, (1,22,139): 81, 83, 85, 90, 100, 113, 120, 118, 115, 109, 107, 111, (1,22,151): 116, 128, 137, 148, 156, 159, 159, 154, 151, 143, 142, (1,22,162): 144, 146, 147, 147, 146, 144, 137, 130, 119, 107, 93, (1,22,173): 79, 67, 58, 50, 49, 48, 47, 47, 47, 47, 47, 47, 46, 44, (1,22,187): 42, 40, 38, 36, 38, 53, 67, 81, 89, 98, 109, 119, 123, (1,22,200): 130, 130, 134, 142, 148, 148, 150, 154, 157, 155, 153, (1,22,211): 156, 160, 162, 158, 155, 151, 151, 146, 139, 132, 123, (1,22,222): 109, 93, 73, 60, 54, (1,23,0): 56, 56, 57, 57, 57, 58, 57, 57, 58, 59, 60, 61, 61, 61, (1,23,14): 60, 60, 59, 59, 59, 58, 58, 57, 57, 56, 57, 57, 57, 57, (1,23,28): 56, 55, 53, 51, 48, 48, 49, 49, 49, 49, 49, 50, 49, 49, (1,23,42): 51, 51, 51, 52, 52, 52, 52, 53, 53, 56, 57, 58, 59, 59, (1,23,56): 56, 58, 57, 59, 60, 61, 62, 62, 62, 62, 61, 61, 60, 59, (1,23,70): 57, 56, 57, 57, 56, 55, 55, 56, 57, 57, 56, 57, 59, 60, (1,23,84): 60, 60, 60, 59, 54, 54, 54, 54, 55, 56, 57, 54, 53, 54, (1,23,98): 59, 64, 68, 72, 74, 76, 81, 76, 68, 59, 55, 55, 57, 60, (1,23,112): 60, 61, 60, 59, 59, 59, 60, 61, 62, 62, 62, 61, 59, 57, (1,23,126): 54, 51, 41, 63, 125, 150, 104, 72, 75, 72, 76, 81, 83, (1,23,139): 86, 86, 90, 95, 102, 113, 118, 115, 107, 95, 84, 81, 82, (1,23,152): 111, 121, 133, 142, 147, 148, 145, 142, 137, 137, 140, (1,23,163): 142, 144, 144, 143, 144, 137, 133, 121, 110, 97, 82, 68, (1,23,175): 59, 52, 49, 48, 47, 47, 46, 46, 47, 48, 47, 46, 44, 41, (1,23,189): 40, 39, 41, 66, 81, 94, 101, 108, 117, 123, 126, 132, (1,23,201): 132, 135, 143, 149, 150, 153, 157, 155, 153, 150, 153, (1,23,212): 157, 159, 154, 150, 148, 148, 144, 138, 132, 124, 109, (1,23,223): 93, 79, 67, 60, (1,24,0): 58, 58, 58, 58, 58, 59, 60, 60, 60, 60, 61, 61, 62, 63, (1,24,14): 63, 63, 64, 64, 64, 63, 63, 62, 62, 61, 59, 59, 59, 59, (1,24,28): 58, 59, 58, 58, 56, 56, 56, 55, 54, 55, 55, 55, 55, 55, (1,24,42): 54, 53, 53, 53, 52, 52, 54, 54, 54, 55, 55, 56, 58, 59, (1,24,56): 58, 60, 60, 62, 63, 64, 64, 64, 64, 64, 63, 62, 60, 59, (1,24,70): 59, 59, 57, 56, 57, 56, 56, 56, 57, 57, 53, 68, 64, 58, (1,24,84): 64, 54, 48, 60, 52, 54, 52, 48, 47, 54, 61, 60, 73, 71, (1,24,98): 73, 75, 70, 62, 61, 68, 78, 80, 86, 89, 79, 65, 59, 62, (1,24,112): 57, 56, 53, 51, 55, 62, 63, 60, 65, 63, 59, 57, 54, 50, (1,24,126): 44, 38, 72, 99, 70, 89, 122, 86, 70, 86, 82, 91, 98, (1,24,139): 100, 95, 94, 99, 106, 99, 110, 111, 89, 59, 45, 44, 49, (1,24,152): 65, 74, 91, 111, 124, 129, 133, 138, 126, 128, 131, 133, (1,24,164): 135, 136, 138, 138, 128, 125, 121, 110, 98, 85, 72, 65, (1,24,176): 58, 47, 48, 49, 39, 37, 48, 53, 51, 50, 49, 49, 46, 43, (1,24,190): 45, 54, 72, 87, 95, 100, 111, 124, 132, 129, 131, 135, (1,24,202): 141, 146, 149, 151, 153, 155, 150, 152, 151, 149, 149, (1,24,213): 153, 152, 150, 149, 141, 135, 132, 130, 122, 109, 95, (1,24,224): 80, 75, 73, (1,25,0): 58, 58, 58, 58, 59, 60, 61, 62, 61, 61, 62, 62, 63, 64, (1,25,14): 63, 63, 65, 64, 64, 64, 63, 63, 62, 62, 62, 62, 62, 61, (1,25,28): 60, 60, 59, 58, 57, 57, 57, 57, 56, 56, 57, 57, 55, 55, (1,25,42): 54, 54, 54, 53, 52, 52, 54, 54, 54, 55, 55, 58, 58, 60, (1,25,56): 59, 59, 61, 62, 64, 64, 64, 64, 64, 64, 63, 61, 60, 59, (1,25,70): 59, 59, 58, 57, 57, 57, 57, 57, 58, 58, 58, 56, 47, 46, (1,25,84): 55, 58, 59, 69, 68, 72, 73, 72, 74, 79, 80, 79, 68, 66, (1,25,98): 66, 67, 62, 55, 55, 61, 67, 63, 64, 69, 71, 70, 72, 78, (1,25,112): 75, 71, 64, 56, 55, 61, 62, 61, 60, 72, 75, 62, 43, 40, (1,25,126): 57, 75, 76, 79, 64, 65, 96, 89, 64, 84, 97, 91, 92, 104, (1,25,140): 108, 102, 99, 99, 102, 97, 88, 67, 46, 39, 40, 42, 48, (1,25,153): 53, 63, 76, 82, 84, 85, 90, 98, 101, 105, 108, 112, 116, (1,25,166): 118, 120, 124, 121, 118, 113, 107, 101, 97, 95, 97, 84, (1,25,178): 76, 72, 68, 70, 55, 28, 49, 48, 49, 54, 56, 58, 62, 69, (1,25,192): 79, 90, 97, 102, 114, 130, 137, 134, 137, 137, 139, 142, (1,25,204): 146, 148, 148, 148, 146, 150, 151, 150, 152, 157, 157, (1,25,215): 155, 153, 146, 137, 132, 129, 121, 109, 97, 83, 80, 79, (1,26,0): 57, 57, 57, 58, 60, 61, 62, 63, 63, 63, 64, 64, 64, 64, (1,26,14): 63, 63, 65, 65, 65, 64, 64, 64, 64, 63, 65, 64, 63, 62, (1,26,28): 61, 60, 60, 59, 58, 58, 58, 58, 59, 59, 59, 60, 56, 56, (1,26,42): 55, 54, 53, 53, 52, 52, 54, 54, 53, 55, 55, 57, 57, 59, (1,26,56): 59, 60, 61, 63, 63, 64, 65, 64, 63, 63, 62, 61, 60, 59, (1,26,70): 59, 58, 58, 58, 58, 58, 59, 60, 60, 59, 69, 51, 51, 65, (1,26,84): 76, 86, 93, 96, 66, 73, 77, 79, 82, 85, 80, 76, 65, 66, (1,26,98): 64, 63, 59, 55, 56, 61, 69, 62, 55, 58, 62, 65, 67, 67, (1,26,112): 48, 57, 68, 75, 77, 75, 65, 55, 56, 54, 49, 48, 51, 60, (1,26,126): 70, 77, 71, 54, 60, 52, 79, 99, 74, 91, 99, 95, 99, 111, (1,26,140): 111, 103, 103, 104, 100, 84, 71, 58, 52, 52, 50, 46, 53, (1,26,153): 51, 53, 56, 55, 54, 54, 57, 65, 67, 70, 73, 77, 81, 84, (1,26,167): 86, 84, 83, 80, 78, 78, 81, 83, 87, 105, 99, 93, 87, 90, (1,26,181): 101, 83, 45, 39, 49, 58, 63, 58, 56, 66, 78, 79, 86, 95, (1,26,195): 101, 117, 134, 140, 136, 140, 139, 139, 139, 140, 143, (1,26,206): 144, 144, 149, 155, 158, 160, 163, 168, 169, 166, 162, (1,26,217): 152, 141, 131, 126, 119, 109, 99, 87, 85, 85, (1,27,0): 56, 56, 57, 58, 60, 62, 63, 64, 65, 65, 65, 65, 65, 65, (1,27,14): 64, 64, 66, 66, 66, 65, 65, 66, 65, 65, 67, 66, 65, 64, (1,27,28): 62, 61, 60, 59, 58, 58, 59, 59, 59, 60, 60, 60, 57, 56, (1,27,42): 56, 55, 54, 53, 53, 53, 54, 54, 55, 55, 56, 58, 59, 60, (1,27,56): 60, 61, 62, 63, 64, 64, 64, 64, 63, 62, 62, 61, 60, 58, (1,27,70): 59, 58, 59, 59, 59, 60, 60, 61, 62, 60, 56, 43, 59, 85, (1,27,84): 85, 86, 86, 75, 52, 58, 62, 66, 70, 74, 67, 63, 66, 70, (1,27,98): 66, 64, 63, 62, 66, 68, 71, 66, 60, 59, 60, 58, 54, 51, (1,27,112): 57, 57, 56, 55, 61, 74, 84, 88, 63, 52, 45, 54, 72, 80, (1,27,126): 66, 52, 59, 47, 57, 56, 70, 93, 88, 87, 87, 100, 112, (1,27,139): 111, 102, 99, 109, 117, 85, 70, 62, 60, 64, 67, 61, 55, (1,27,152): 66, 60, 55, 54, 52, 50, 51, 56, 51, 53, 54, 56, 58, 61, (1,27,166): 63, 64, 67, 67, 64, 63, 65, 67, 71, 74, 81, 84, 87, 85, (1,27,180): 86, 99, 102, 89, 49, 48, 49, 56, 62, 64, 68, 70, 74, 84, (1,27,194): 96, 107, 124, 142, 145, 139, 141, 143, 143, 141, 138, (1,27,205): 140, 146, 151, 163, 169, 174, 177, 180, 185, 183, 181, (1,27,216): 171, 160, 145, 132, 124, 116, 108, 100, 88, 87, 88, (1,28,0): 55, 55, 56, 57, 59, 61, 62, 63, 65, 65, 65, 65, 65, 66, (1,28,14): 65, 65, 67, 67, 66, 67, 68, 68, 67, 67, 67, 66, 65, 64, (1,28,28): 61, 61, 60, 59, 59, 59, 59, 59, 59, 59, 59, 59, 57, 57, (1,28,42): 57, 56, 55, 54, 54, 53, 55, 55, 55, 56, 56, 59, 59, 60, (1,28,56): 61, 62, 63, 64, 64, 65, 63, 63, 63, 61, 61, 60, 59, 59, (1,28,70): 58, 58, 60, 60, 59, 60, 61, 63, 63, 61, 54, 52, 77, 94, (1,28,84): 78, 65, 55, 39, 50, 56, 58, 61, 65, 69, 63, 60, 63, 66, (1,28,98): 64, 63, 64, 67, 72, 74, 62, 63, 61, 59, 57, 58, 59, 61, (1,28,112): 71, 69, 64, 57, 56, 67, 77, 83, 68, 77, 84, 85, 75, 64, (1,28,126): 53, 51, 52, 57, 51, 59, 57, 65, 91, 85, 78, 98, 106, 96, (1,28,140): 90, 100, 112, 109, 70, 60, 59, 62, 68, 73, 74, 73, 76, (1,28,153): 68, 58, 55, 52, 49, 52, 58, 57, 58, 59, 59, 60, 63, 65, (1,28,167): 67, 69, 69, 68, 68, 67, 68, 68, 67, 72, 66, 74, 79, 75, (1,28,181): 80, 93, 99, 91, 64, 38, 43, 64, 79, 76, 67, 74, 89, 106, (1,28,195): 123, 141, 156, 156, 147, 142, 151, 155, 153, 146, 147, (1,28,206): 158, 168, 182, 188, 193, 193, 195, 198, 195, 190, 181, (1,28,217): 169, 151, 135, 123, 115, 109, 102, 90, 89, 91, (1,29,0): 54, 54, 55, 56, 57, 59, 60, 61, 63, 63, 64, 65, 66, 66, (1,29,14): 66, 66, 68, 68, 67, 68, 69, 69, 68, 69, 67, 67, 66, 65, (1,29,28): 64, 63, 62, 61, 61, 61, 60, 60, 59, 59, 59, 58, 58, 58, (1,29,42): 57, 57, 56, 55, 54, 54, 55, 55, 55, 56, 57, 59, 60, 61, (1,29,56): 63, 62, 63, 64, 65, 65, 63, 63, 63, 61, 60, 59, 59, 59, (1,29,70): 57, 57, 59, 60, 59, 60, 62, 63, 63, 59, 57, 71, 90, 88, (1,29,84): 68, 57, 52, 44, 50, 56, 58, 58, 61, 64, 59, 56, 55, 58, (1,29,98): 57, 55, 58, 66, 69, 69, 62, 63, 60, 54, 54, 62, 68, 71, (1,29,112): 58, 65, 70, 68, 63, 59, 52, 48, 57, 73, 85, 80, 63, 50, (1,29,126): 48, 55, 49, 61, 46, 56, 52, 55, 104, 108, 87, 90, 86, (1,29,139): 81, 91, 106, 103, 83, 69, 62, 60, 62, 66, 72, 80, 87, (1,29,152): 79, 68, 59, 54, 50, 47, 50, 55, 57, 58, 58, 59, 61, 63, (1,29,166): 67, 68, 60, 62, 63, 64, 64, 62, 61, 60, 74, 61, 66, 78, (1,29,180): 77, 80, 86, 91, 114, 97, 74, 58, 53, 56, 66, 76, 81, (1,29,193): 101, 124, 141, 157, 167, 166, 156, 158, 167, 175, 172, (1,29,204): 167, 168, 180, 193, 201, 206, 208, 208, 206, 207, 203, (1,29,215): 198, 189, 178, 159, 140, 126, 116, 110, 106, 95, 96, 95, (1,30,0): 54, 54, 54, 54, 55, 57, 57, 58, 60, 61, 62, 64, 65, 67, (1,30,14): 67, 67, 68, 69, 68, 68, 70, 70, 70, 70, 69, 68, 67, 67, (1,30,28): 66, 65, 64, 65, 65, 65, 64, 63, 61, 60, 60, 60, 58, 58, (1,30,42): 58, 57, 56, 56, 55, 55, 56, 56, 56, 56, 58, 59, 60, 61, (1,30,56): 63, 63, 64, 65, 64, 64, 64, 63, 61, 61, 61, 60, 59, 58, (1,30,70): 56, 57, 58, 59, 58, 59, 61, 62, 64, 58, 50, 75, 84, 63, (1,30,84): 49, 48, 49, 50, 50, 57, 61, 61, 61, 63, 59, 55, 54, 56, (1,30,98): 54, 52, 56, 64, 67, 64, 66, 65, 60, 56, 58, 67, 68, 65, (1,30,112): 64, 64, 55, 44, 36, 39, 44, 49, 44, 48, 53, 55, 53, 52, (1,30,126): 50, 51, 52, 55, 51, 55, 55, 63, 97, 127, 101, 86, 76, (1,30,139): 86, 100, 99, 82, 66, 69, 63, 62, 64, 63, 63, 69, 77, 74, (1,30,153): 63, 56, 54, 53, 50, 54, 59, 58, 58, 56, 56, 56, 59, 61, (1,30,167): 63, 64, 64, 65, 67, 68, 67, 67, 67, 73, 68, 72, 77, 77, (1,30,181): 88, 97, 94, 107, 113, 111, 93, 67, 54, 65, 85, 101, 125, (1,30,194): 150, 163, 174, 182, 182, 175, 183, 189, 193, 195, 194, (1,30,205): 198, 206, 215, 218, 221, 221, 218, 216, 215, 212, 207, (1,30,216): 197, 186, 167, 146, 130, 120, 115, 111, 106, 105, 104, (1,31,0): 54, 54, 54, 54, 54, 55, 55, 56, 59, 60, 61, 63, 65, 67, (1,31,14): 68, 69, 69, 69, 69, 70, 70, 71, 71, 72, 71, 71, 69, 68, (1,31,28): 68, 68, 67, 67, 67, 68, 66, 65, 62, 61, 61, 59, 58, 58, (1,31,42): 58, 58, 57, 55, 55, 55, 55, 55, 56, 57, 58, 58, 60, 61, (1,31,56): 64, 63, 64, 65, 65, 64, 64, 63, 62, 62, 61, 59, 57, 56, (1,31,70): 55, 56, 56, 58, 59, 61, 61, 62, 63, 57, 61, 93, 90, 56, (1,31,84): 47, 50, 47, 51, 58, 67, 71, 70, 66, 66, 61, 58, 57, 59, (1,31,98): 58, 55, 60, 67, 69, 64, 61, 60, 59, 60, 69, 76, 69, 56, (1,31,112): 55, 60, 61, 53, 44, 42, 40, 39, 44, 48, 52, 54, 53, 52, (1,31,126): 51, 52, 59, 50, 63, 55, 57, 63, 65, 108, 103, 82, 78, (1,31,139): 98, 103, 81, 64, 65, 60, 58, 59, 62, 61, 54, 52, 56, 71, (1,31,153): 63, 58, 57, 57, 55, 58, 63, 67, 65, 63, 59, 58, 58, 59, (1,31,167): 60, 64, 63, 63, 63, 64, 65, 64, 66, 68, 79, 86, 76, 66, (1,31,181): 86, 105, 102, 94, 96, 104, 112, 112, 102, 92, 89, 126, (1,31,193): 152, 176, 187, 194, 199, 199, 195, 202, 202, 202, 206, (1,31,204): 213, 219, 224, 227, 229, 232, 232, 228, 225, 224, 221, (1,31,215): 216, 202, 191, 171, 150, 134, 123, 117, 114, 114, 112, (1,31,226): 110, (1,32,0): 49, 50, 51, 53, 55, 56, 56, 56, 58, 59, 61, 63, 65, 67, (1,32,14): 69, 69, 72, 72, 72, 72, 74, 75, 76, 75, 74, 70, 68, 70, (1,32,28): 73, 73, 68, 63, 69, 67, 64, 65, 67, 66, 61, 57, 60, 58, (1,32,42): 57, 55, 56, 55, 55, 52, 58, 57, 57, 57, 58, 58, 59, 60, (1,32,56): 63, 64, 64, 64, 64, 64, 64, 63, 64, 62, 59, 56, 54, 52, (1,32,70): 55, 58, 62, 56, 59, 66, 64, 56, 59, 66, 106, 75, 55, 54, (1,32,84): 55, 54, 56, 61, 57, 60, 64, 65, 61, 57, 54, 55, 54, 55, (1,32,98): 56, 60, 64, 66, 66, 65, 62, 61, 60, 61, 67, 70, 62, 50, (1,32,112): 57, 57, 57, 57, 55, 54, 52, 50, 46, 47, 49, 50, 53, 55, (1,32,126): 58, 59, 58, 51, 52, 56, 56, 54, 66, 83, 78, 83, 92, 93, (1,32,140): 80, 62, 56, 63, 64, 67, 64, 62, 60, 58, 59, 59, 76, 75, (1,32,154): 70, 62, 60, 63, 62, 59, 69, 68, 68, 68, 64, 60, 61, 66, (1,32,168): 70, 65, 59, 58, 61, 68, 73, 75, 78, 78, 81, 82, 79, 79, (1,32,182): 90, 103, 93, 69, 86, 94, 91, 117, 92, 114, 143, 167, (1,32,194): 195, 213, 220, 219, 220, 219, 216, 216, 217, 220, 227, (1,32,205): 231, 236, 239, 243, 243, 240, 236, 231, 226, 221, 220, (1,32,216): 208, 201, 186, 165, 144, 131, 125, 123, 132, 128, 125, (1,33,0): 46, 47, 50, 52, 53, 54, 55, 55, 57, 58, 61, 63, 65, 67, (1,33,14): 68, 69, 72, 72, 72, 72, 74, 75, 77, 77, 74, 73, 74, 80, (1,33,28): 85, 88, 84, 79, 73, 68, 63, 61, 62, 63, 61, 59, 58, 57, (1,33,42): 55, 55, 56, 56, 56, 54, 52, 52, 53, 55, 57, 58, 60, 61, (1,33,56): 63, 63, 64, 64, 64, 64, 63, 63, 64, 64, 60, 57, 54, 52, (1,33,70): 51, 52, 60, 59, 61, 63, 58, 54, 65, 74, 80, 59, 50, 54, (1,33,84): 58, 55, 57, 62, 59, 60, 63, 64, 61, 57, 54, 55, 57, 58, (1,33,98): 57, 59, 62, 65, 66, 64, 63, 58, 60, 69, 72, 63, 56, 54, (1,33,112): 55, 55, 57, 59, 60, 58, 56, 52, 49, 46, 46, 48, 52, 55, (1,33,126): 58, 58, 60, 54, 56, 61, 59, 53, 58, 70, 70, 73, 79, 80, (1,33,140): 71, 59, 58, 67, 66, 68, 66, 62, 59, 58, 60, 61, 69, 76, (1,33,154): 78, 71, 63, 63, 63, 64, 67, 67, 68, 70, 66, 62, 62, 66, (1,33,168): 70, 67, 63, 64, 66, 70, 74, 75, 72, 71, 74, 82, 93, 96, (1,33,182): 88, 79, 70, 68, 68, 73, 92, 106, 71, 121, 148, 176, 209, (1,33,195): 226, 231, 232, 230, 226, 227, 225, 227, 230, 236, 242, (1,33,206): 247, 250, 249, 249, 246, 244, 238, 234, 231, 229, 221, (1,33,217): 214, 198, 178, 161, 147, 143, 144, 148, 144, 140, (1,34,0): 46, 47, 48, 49, 51, 52, 54, 54, 57, 58, 60, 62, 64, 66, (1,34,14): 67, 68, 70, 71, 72, 73, 74, 76, 76, 76, 73, 75, 82, 94, (1,34,28): 104, 109, 107, 104, 89, 81, 71, 64, 62, 61, 60, 58, 58, (1,34,41): 58, 55, 55, 56, 57, 58, 57, 51, 52, 54, 57, 58, 59, 60, (1,34,55): 60, 62, 63, 63, 64, 63, 63, 63, 63, 59, 61, 60, 58, 55, (1,34,69): 53, 52, 50, 55, 57, 56, 49, 43, 46, 58, 69, 58, 50, 49, (1,34,83): 57, 60, 55, 56, 60, 59, 61, 65, 65, 62, 60, 58, 60, 60, (1,34,97): 60, 57, 57, 60, 62, 62, 60, 63, 56, 62, 76, 71, 54, 50, (1,34,111): 57, 54, 54, 56, 58, 58, 56, 54, 51, 48, 46, 46, 49, 50, (1,34,125): 54, 56, 55, 56, 53, 57, 62, 61, 54, 57, 65, 60, 62, 69, (1,34,139): 75, 74, 67, 63, 67, 67, 68, 66, 61, 58, 56, 58, 59, 56, (1,34,153): 68, 78, 73, 64, 62, 66, 72, 65, 64, 67, 71, 69, 64, 63, (1,34,167): 65, 68, 67, 67, 70, 73, 75, 76, 74, 66, 68, 72, 78, 91, (1,34,181): 98, 87, 69, 77, 86, 64, 71, 121, 121, 64, 123, 140, 177, (1,34,194): 216, 234, 240, 245, 243, 236, 233, 233, 234, 237, 242, (1,34,205): 246, 251, 254, 253, 252, 249, 247, 244, 242, 239, 239, (1,34,216): 231, 223, 207, 189, 174, 165, 163, 163, 171, 165, 161, (1,35,0): 46, 46, 47, 48, 49, 50, 52, 53, 56, 57, 59, 61, 63, 65, (1,35,14): 66, 67, 69, 70, 72, 74, 75, 77, 76, 76, 74, 80, 93, 108, (1,35,28): 122, 130, 130, 128, 117, 107, 95, 83, 76, 69, 64, 60, 63, (1,35,41): 59, 56, 54, 54, 56, 57, 56, 55, 57, 59, 59, 61, 60, 59, (1,35,55): 59, 63, 63, 63, 64, 63, 63, 62, 63, 61, 62, 61, 58, 58, (1,35,69): 57, 57, 57, 56, 56, 52, 44, 41, 48, 55, 61, 54, 55, 58, (1,35,83): 63, 63, 57, 56, 59, 58, 60, 62, 64, 62, 61, 61, 62, 63, (1,35,97): 61, 57, 56, 57, 58, 58, 57, 59, 59, 66, 69, 62, 49, 50, (1,35,111): 57, 53, 52, 54, 55, 55, 54, 51, 49, 48, 46, 47, 48, 50, (1,35,125): 52, 54, 53, 50, 48, 52, 60, 61, 57, 61, 68, 53, 54, 59, (1,35,139): 68, 77, 75, 67, 61, 64, 65, 62, 60, 58, 56, 57, 59, 52, (1,35,153): 63, 72, 72, 66, 64, 70, 78, 63, 63, 66, 72, 72, 66, 64, (1,35,167): 65, 65, 67, 70, 73, 77, 79, 76, 72, 63, 74, 79, 73, 77, (1,35,181): 87, 87, 79, 75, 78, 62, 98, 156, 141, 57, 75, 119, 163, (1,35,194): 210, 231, 242, 251, 250, 241, 237, 237, 237, 240, 242, (1,35,205): 246, 250, 251, 252, 251, 249, 248, 245, 244, 243, 242, (1,35,216): 235, 227, 213, 198, 185, 180, 180, 182, 191, 183, 177, (1,36,0): 48, 48, 47, 47, 48, 49, 51, 52, 55, 56, 57, 59, 61, 63, (1,36,14): 65, 65, 69, 70, 72, 74, 75, 77, 76, 75, 74, 84, 100, 120, (1,36,28): 134, 144, 147, 144, 139, 131, 119, 109, 100, 91, 80, 74, (1,36,40): 71, 66, 61, 55, 53, 54, 53, 53, 55, 56, 57, 59, 60, 60, (1,36,54): 61, 60, 63, 63, 64, 65, 64, 63, 64, 62, 63, 62, 58, 56, (1,36,68): 56, 57, 59, 60, 60, 57, 51, 49, 55, 62, 61, 56, 59, 60, (1,36,82): 64, 65, 64, 60, 59, 62, 56, 58, 60, 61, 60, 59, 60, 61, (1,36,96): 63, 62, 58, 55, 55, 56, 56, 56, 55, 65, 67, 56, 49, 51, (1,36,110): 55, 53, 52, 51, 52, 54, 53, 53, 49, 47, 47, 47, 47, 48, (1,36,124): 50, 52, 53, 52, 49, 47, 50, 54, 57, 58, 63, 69, 70, 64, (1,36,138): 60, 64, 75, 78, 69, 59, 61, 60, 60, 59, 57, 58, 60, 63, (1,36,152): 57, 60, 64, 67, 67, 68, 74, 79, 63, 62, 66, 73, 74, 70, (1,36,166): 67, 67, 64, 66, 69, 74, 78, 79, 76, 72, 68, 78, 80, 72, (1,36,180): 74, 86, 87, 81, 71, 72, 88, 147, 178, 155, 72, 47, 106, (1,36,193): 149, 198, 225, 240, 251, 253, 246, 246, 245, 245, 246, (1,36,204): 248, 250, 252, 252, 251, 250, 248, 247, 245, 244, 243, (1,36,215): 243, 241, 233, 220, 209, 202, 201, 202, 205, 208, 200, (1,36,226): 192, (1,37,0): 53, 51, 50, 48, 48, 49, 50, 51, 54, 55, 56, 58, 60, 62, (1,37,14): 64, 64, 68, 69, 72, 75, 75, 77, 76, 75, 76, 87, 105, 126, (1,37,28): 143, 153, 158, 158, 152, 145, 138, 133, 126, 118, 107, (1,37,39): 101, 90, 84, 75, 65, 60, 58, 55, 54, 53, 53, 54, 55, 58, (1,37,53): 60, 62, 64, 63, 64, 65, 66, 65, 66, 65, 63, 61, 58, 55, (1,37,67): 54, 54, 55, 56, 57, 60, 52, 48, 56, 66, 71, 63, 52, 59, (1,37,81): 60, 63, 63, 62, 62, 63, 63, 56, 57, 58, 57, 57, 58, 58, (1,37,95): 60, 62, 59, 57, 56, 56, 57, 56, 54, 55, 67, 64, 48, 44, (1,37,109): 55, 60, 50, 51, 50, 50, 51, 51, 50, 47, 45, 47, 46, 48, (1,37,123): 49, 52, 53, 54, 53, 55, 51, 51, 51, 53, 56, 60, 63, 89, (1,37,137): 82, 72, 67, 69, 73, 69, 62, 58, 59, 58, 58, 58, 58, 62, (1,37,151): 65, 65, 60, 60, 65, 69, 71, 73, 76, 66, 64, 67, 75, 78, (1,37,165): 74, 70, 70, 65, 66, 69, 74, 78, 79, 78, 76, 77, 79, 77, (1,37,179): 79, 87, 95, 85, 71, 86, 83, 100, 144, 137, 130, 95, 77, (1,37,192): 104, 141, 187, 219, 238, 247, 250, 249, 250, 251, 250, (1,37,203): 250, 250, 251, 252, 251, 251, 251, 250, 250, 247, 245, (1,37,214): 242, 240, 237, 230, 221, 216, 215, 219, 222, 225, 228, (1,37,225): 216, 206, (1,38,0): 57, 56, 53, 50, 49, 49, 50, 51, 52, 53, 54, 56, 58, 60, (1,38,14): 62, 63, 66, 67, 71, 74, 75, 76, 75, 74, 74, 87, 108, 130, (1,38,28): 149, 160, 166, 169, 165, 160, 155, 152, 149, 145, 137, (1,38,39): 131, 121, 113, 99, 86, 78, 71, 67, 66, 63, 61, 58, 57, (1,38,52): 57, 59, 61, 64, 64, 65, 66, 67, 67, 67, 67, 65, 59, 61, (1,38,66): 64, 68, 71, 72, 72, 71, 72, 61, 58, 70, 80, 74, 63, 56, (1,38,80): 62, 62, 62, 63, 64, 64, 63, 60, 56, 56, 57, 57, 56, 56, (1,38,94): 57, 59, 58, 58, 56, 56, 57, 58, 55, 54, 60, 62, 57, 50, (1,38,108): 52, 59, 60, 51, 49, 49, 49, 50, 49, 47, 45, 44, 45, 47, (1,38,122): 49, 51, 53, 54, 55, 55, 57, 56, 54, 52, 52, 55, 56, 55, (1,38,136): 78, 88, 90, 81, 71, 68, 64, 62, 60, 60, 60, 58, 57, 59, (1,38,150): 62, 65, 68, 64, 64, 70, 73, 72, 71, 73, 70, 66, 68, 76, (1,38,164): 81, 79, 76, 75, 68, 68, 70, 73, 78, 79, 79, 80, 85, 84, (1,38,178): 84, 89, 93, 92, 83, 74, 89, 87, 79, 94, 78, 86, 86, 89, (1,38,192): 99, 128, 169, 208, 233, 241, 246, 252, 252, 253, 252, (1,38,203): 251, 250, 249, 249, 248, 250, 250, 251, 250, 247, 242, (1,38,214): 237, 234, 225, 221, 217, 217, 223, 231, 237, 241, 243, (1,38,225): 231, 219, (1,39,0): 61, 58, 55, 52, 50, 50, 50, 51, 52, 52, 54, 56, 58, 60, (1,39,14): 61, 62, 66, 67, 70, 74, 75, 76, 75, 73, 74, 88, 109, 132, (1,39,28): 151, 164, 173, 176, 177, 172, 167, 164, 163, 161, 155, (1,39,39): 150, 146, 136, 121, 105, 93, 85, 80, 77, 74, 71, 66, 61, (1,39,52): 58, 58, 60, 62, 64, 66, 67, 68, 68, 68, 69, 66, 67, 72, (1,39,66): 81, 91, 97, 99, 98, 95, 88, 74, 72, 83, 88, 76, 65, 63, (1,39,80): 66, 64, 65, 64, 65, 65, 61, 55, 55, 56, 56, 56, 54, 55, (1,39,94): 56, 59, 55, 55, 55, 56, 57, 57, 56, 54, 65, 56, 51, 56, (1,39,108): 61, 61, 57, 53, 50, 48, 48, 48, 47, 45, 44, 44, 45, 47, (1,39,122): 50, 52, 53, 55, 55, 56, 55, 56, 55, 54, 55, 57, 55, 52, (1,39,136): 52, 78, 100, 96, 79, 65, 59, 57, 62, 62, 60, 59, 57, 57, (1,39,150): 60, 62, 68, 65, 69, 75, 76, 71, 69, 72, 73, 67, 69, 77, (1,39,164): 83, 82, 79, 79, 72, 71, 71, 73, 78, 81, 82, 84, 84, 90, (1,39,178): 96, 96, 86, 78, 81, 90, 93, 102, 80, 88, 83, 90, 79, 83, (1,39,192): 92, 114, 152, 198, 226, 235, 242, 255, 255, 255, 255, (1,39,203): 255, 253, 252, 251, 249, 248, 248, 249, 249, 245, 239, (1,39,214): 232, 229, 221, 218, 217, 222, 232, 243, 250, 254, 250, (1,39,225): 237, 224, (1,40,0): 62, 61, 60, 58, 56, 54, 52, 51, 50, 50, 51, 52, 54, 57, (1,40,14): 60, 62, 64, 67, 70, 73, 74, 75, 76, 78, 73, 82, 100, 126, (1,40,28): 146, 160, 170, 176, 179, 178, 180, 178, 177, 175, 172, (1,40,39): 171, 161, 154, 141, 127, 114, 101, 90, 82, 81, 81, 79, (1,40,51): 72, 63, 58, 59, 63, 62, 66, 69, 68, 66, 67, 70, 75, 85, (1,40,65): 101, 113, 114, 117, 119, 111, 95, 91, 88, 87, 87, 78, 65, (1,40,78): 58, 59, 60, 61, 63, 64, 64, 63, 61, 59, 54, 54, 54, 55, (1,40,92): 55, 56, 57, 56, 56, 57, 58, 57, 54, 54, 56, 58, 67, 61, (1,40,106): 55, 64, 91, 108, 93, 63, 51, 50, 50, 47, 42, 40, 40, 43, (1,40,120): 45, 48, 50, 49, 48, 49, 52, 58, 59, 60, 60, 60, 58, 57, (1,40,134): 56, 55, 64, 56, 71, 99, 88, 66, 64, 52, 58, 60, 60, 60, (1,40,148): 58, 58, 60, 62, 62, 67, 80, 88, 79, 63, 63, 72, 72, 71, (1,40,162): 74, 80, 82, 78, 75, 76, 82, 79, 75, 74, 77, 81, 82, 82, (1,40,176): 88, 89, 89, 92, 93, 91, 88, 86, 101, 89, 95, 94, 73, 73, (1,40,190): 84, 88, 102, 103, 142, 181, 209, 234, 238, 248, 250, (1,40,201): 255, 255, 255, 254, 255, 252, 247, 250, 250, 247, 243, (1,40,212): 244, 243, 232, 217, 214, 209, 214, 231, 244, 247, 251, (1,40,223): 255, 254, 240, 227, (1,41,0): 63, 62, 61, 59, 57, 55, 54, 53, 51, 51, 51, 52, 53, 56, (1,41,14): 59, 61, 63, 66, 69, 72, 73, 74, 75, 77, 74, 81, 98, 123, (1,41,28): 143, 157, 166, 174, 180, 181, 182, 183, 183, 182, 180, (1,41,39): 178, 170, 163, 152, 138, 127, 113, 101, 94, 87, 86, 84, (1,41,51): 80, 73, 67, 65, 65, 60, 66, 69, 68, 63, 66, 77, 86, 103, (1,41,65): 116, 125, 125, 124, 124, 113, 96, 89, 87, 81, 73, 64, 60, (1,41,78): 61, 63, 56, 55, 56, 57, 56, 57, 55, 54, 51, 52, 55, 58, (1,41,92): 60, 61, 60, 60, 62, 60, 60, 62, 66, 67, 66, 65, 64, 66, (1,41,106): 64, 56, 49, 54, 73, 91, 64, 54, 43, 41, 45, 47, 44, 40, (1,41,120): 48, 52, 54, 54, 51, 50, 50, 54, 58, 59, 60, 58, 57, 55, (1,41,134): 53, 52, 57, 53, 61, 80, 84, 76, 66, 49, 59, 61, 60, 59, (1,41,148): 57, 56, 58, 58, 62, 66, 79, 87, 82, 68, 67, 72, 76, 74, (1,41,162): 77, 83, 84, 80, 78, 79, 86, 85, 83, 82, 82, 83, 83, 83, (1,41,176): 76, 84, 92, 96, 91, 85, 82, 84, 87, 84, 93, 93, 82, 87, (1,41,190): 93, 86, 96, 92, 127, 169, 199, 224, 233, 248, 250, 255, (1,41,202): 255, 255, 254, 255, 253, 248, 250, 249, 247, 244, 245, (1,41,213): 244, 233, 220, 215, 209, 213, 229, 245, 249, 252, 255, (1,41,224): 253, 241, 227, (1,42,0): 65, 65, 63, 61, 59, 57, 56, 55, 52, 52, 51, 52, 53, 56, (1,42,14): 58, 60, 62, 66, 68, 70, 71, 71, 73, 74, 75, 80, 94, 117, (1,42,28): 138, 153, 164, 171, 179, 181, 183, 185, 186, 187, 185, (1,42,39): 185, 178, 172, 163, 151, 141, 128, 117, 109, 96, 93, 90, (1,42,51): 87, 82, 75, 68, 64, 53, 60, 65, 64, 62, 69, 87, 99, 115, (1,42,65): 122, 127, 123, 118, 112, 99, 84, 71, 76, 73, 61, 54, 58, (1,42,78): 61, 61, 60, 59, 58, 59, 60, 60, 60, 60, 54, 56, 60, 63, (1,42,92): 65, 62, 60, 58, 55, 52, 51, 57, 65, 69, 66, 61, 60, 52, (1,42,106): 52, 55, 50, 44, 54, 71, 75, 64, 52, 45, 44, 44, 44, 42, (1,42,120): 42, 47, 50, 53, 52, 49, 49, 51, 55, 58, 58, 58, 59, 58, (1,42,134): 56, 56, 52, 60, 58, 60, 79, 89, 69, 51, 59, 60, 59, 58, (1,42,148): 57, 56, 56, 56, 61, 65, 74, 85, 82, 71, 68, 71, 75, 73, (1,42,162): 76, 83, 83, 80, 77, 78, 88, 90, 91, 90, 86, 82, 81, 81, (1,42,176): 70, 79, 89, 90, 86, 84, 87, 92, 89, 91, 98, 98, 96, 105, (1,42,190): 106, 94, 93, 77, 108, 151, 185, 211, 224, 245, 249, 255, (1,42,202): 255, 255, 254, 255, 252, 248, 249, 249, 247, 246, 247, (1,42,213): 246, 238, 228, 219, 209, 211, 228, 246, 251, 253, 255, (1,42,224): 251, 239, 229, (1,43,0): 69, 68, 66, 64, 62, 60, 59, 58, 54, 53, 53, 53, 53, 55, (1,43,14): 57, 59, 62, 64, 68, 70, 69, 69, 71, 73, 77, 78, 90, 112, (1,43,28): 134, 150, 161, 169, 176, 177, 179, 183, 183, 185, 184, (1,43,39): 184, 177, 173, 167, 158, 150, 139, 129, 121, 109, 103, (1,43,50): 96, 90, 88, 81, 71, 62, 53, 56, 61, 64, 67, 79, 93, 103, (1,43,64): 108, 110, 111, 105, 97, 88, 73, 59, 51, 65, 69, 60, 56, (1,43,77): 64, 65, 59, 54, 53, 53, 53, 55, 56, 59, 60, 64, 64, 64, (1,43,91): 63, 61, 57, 54, 52, 46, 45, 46, 51, 58, 60, 56, 53, 53, (1,43,105): 44, 41, 55, 66, 63, 52, 46, 70, 73, 72, 60, 45, 35, 39, (1,43,119): 47, 45, 47, 50, 51, 49, 48, 47, 48, 55, 57, 58, 60, 62, (1,43,133): 63, 64, 64, 54, 76, 74, 53, 71, 90, 73, 65, 60, 59, 58, (1,43,147): 58, 58, 58, 57, 57, 60, 62, 70, 79, 80, 72, 67, 67, 72, (1,43,161): 70, 74, 80, 82, 77, 75, 75, 88, 91, 97, 97, 88, 79, 77, (1,43,175): 78, 76, 79, 83, 82, 84, 90, 99, 105, 102, 98, 98, 101, (1,43,188): 103, 106, 106, 104, 94, 70, 93, 135, 171, 199, 218, 243, (1,43,200): 247, 253, 255, 255, 254, 255, 251, 248, 250, 250, 248, (1,43,211): 250, 251, 250, 243, 236, 224, 213, 212, 230, 247, 254, (1,43,222): 254, 254, 249, 239, 231, (1,44,0): 72, 71, 70, 68, 66, 64, 61, 60, 56, 55, 54, 54, 54, 55, (1,44,14): 57, 58, 62, 65, 67, 69, 68, 69, 70, 72, 77, 77, 87, 107, (1,44,28): 130, 147, 159, 166, 174, 175, 176, 179, 179, 180, 179, (1,44,39): 179, 174, 171, 167, 162, 156, 149, 140, 133, 127, 117, (1,44,50): 107, 101, 97, 91, 81, 72, 70, 67, 66, 69, 77, 85, 91, 90, (1,44,64): 84, 83, 84, 80, 74, 67, 57, 47, 57, 68, 72, 63, 62, 71, (1,44,78): 73, 63, 62, 61, 60, 62, 63, 66, 68, 69, 69, 66, 62, 59, (1,44,92): 54, 53, 51, 51, 49, 52, 55, 57, 56, 55, 54, 53, 47, 53, (1,44,106): 55, 50, 49, 57, 62, 59, 60, 68, 74, 68, 54, 42, 42, 47, (1,44,120): 54, 53, 51, 49, 48, 47, 48, 48, 56, 57, 58, 59, 60, 61, (1,44,134): 63, 62, 55, 87, 97, 59, 59, 80, 70, 80, 60, 58, 56, 57, (1,44,148): 58, 60, 59, 59, 58, 60, 65, 72, 73, 68, 64, 62, 70, 69, (1,44,162): 73, 80, 82, 78, 75, 76, 90, 94, 102, 104, 93, 80, 77, (1,44,175): 79, 83, 82, 81, 82, 92, 103, 105, 101, 101, 94, 94, 106, (1,44,188): 115, 107, 101, 110, 101, 71, 86, 123, 159, 193, 214, (1,44,199): 238, 245, 252, 255, 255, 253, 255, 251, 248, 254, 253, (1,44,210): 251, 253, 255, 253, 250, 246, 233, 221, 217, 233, 250, (1,44,221): 255, 254, 254, 248, 240, 233, (1,45,0): 75, 74, 73, 71, 69, 67, 64, 64, 59, 58, 57, 56, 56, 56, (1,45,14): 58, 59, 63, 66, 69, 70, 69, 69, 70, 72, 76, 75, 83, 105, (1,45,28): 129, 147, 158, 164, 172, 172, 173, 176, 177, 177, 176, (1,45,39): 176, 172, 170, 168, 166, 163, 158, 153, 148, 146, 138, (1,45,50): 128, 120, 117, 112, 103, 95, 95, 87, 80, 79, 83, 84, 80, (1,45,63): 72, 65, 65, 69, 69, 69, 65, 59, 54, 74, 73, 66, 56, 57, (1,45,77): 65, 68, 63, 69, 69, 70, 69, 70, 71, 71, 71, 62, 59, 56, (1,45,91): 52, 51, 52, 52, 54, 56, 60, 61, 60, 57, 53, 53, 55, 46, (1,45,105): 59, 61, 49, 45, 55, 61, 58, 57, 56, 58, 61, 64, 60, 51, (1,45,119): 44, 44, 43, 42, 43, 47, 52, 56, 57, 55, 55, 55, 55, 55, (1,45,133): 54, 53, 53, 53, 80, 109, 72, 52, 67, 62, 86, 65, 62, 56, (1,45,147): 54, 58, 60, 62, 61, 57, 60, 63, 65, 65, 64, 61, 60, 67, (1,45,161): 68, 72, 80, 82, 79, 78, 79, 94, 97, 105, 110, 100, 86, (1,45,174): 81, 86, 86, 86, 87, 93, 109, 117, 106, 87, 95, 94, 96, (1,45,187): 114, 135, 128, 117, 122, 106, 77, 85, 112, 149, 191, (1,45,198): 213, 233, 244, 250, 254, 254, 253, 254, 250, 249, 255, (1,45,209): 254, 253, 255, 255, 255, 252, 253, 241, 230, 226, 240, (1,45,220): 251, 254, 254, 255, 250, 244, 240, (1,46,0): 77, 76, 75, 73, 71, 69, 68, 67, 62, 61, 59, 58, 57, 58, (1,46,14): 57, 59, 64, 67, 69, 71, 71, 70, 70, 72, 75, 72, 82, 103, (1,46,28): 129, 147, 158, 162, 167, 167, 169, 172, 173, 174, 174, (1,46,39): 174, 172, 170, 168, 167, 168, 167, 164, 162, 158, 154, (1,46,50): 147, 143, 141, 136, 129, 121, 109, 99, 88, 81, 77, 73, (1,46,62): 65, 62, 62, 65, 69, 74, 75, 71, 68, 65, 86, 72, 60, 54, (1,46,76): 56, 59, 57, 56, 58, 60, 59, 58, 56, 55, 52, 50, 52, 51, (1,46,90): 51, 51, 51, 53, 54, 56, 61, 61, 59, 56, 55, 54, 52, 51, (1,46,104): 51, 51, 52, 54, 61, 62, 57, 50, 58, 52, 49, 53, 60, 61, (1,46,118): 55, 51, 45, 45, 45, 47, 52, 57, 59, 57, 50, 48, 48, 49, (1,46,132): 49, 50, 49, 51, 49, 61, 106, 84, 57, 64, 58, 82, 74, 67, (1,46,146): 58, 54, 56, 59, 60, 61, 59, 63, 64, 63, 59, 59, 59, 60, (1,46,160): 62, 62, 68, 76, 80, 78, 76, 78, 97, 97, 104, 111, 104, (1,46,173): 90, 85, 91, 91, 95, 98, 107, 125, 133, 118, 92, 101, (1,46,185): 107, 98, 106, 144, 161, 148, 140, 105, 81, 85, 103, 140, (1,46,197): 190, 213, 227, 242, 249, 253, 253, 253, 253, 251, 248, (1,46,208): 255, 253, 253, 255, 255, 253, 251, 255, 250, 240, 236, (1,46,219): 246, 252, 252, 253, 255, 254, 249, 246, (1,47,0): 79, 78, 75, 74, 71, 70, 68, 68, 64, 64, 60, 59, 57, 58, (1,47,14): 58, 60, 64, 68, 70, 71, 71, 70, 72, 72, 73, 71, 81, 104, (1,47,28): 130, 148, 157, 162, 160, 160, 163, 166, 169, 171, 172, (1,47,39): 172, 171, 170, 167, 167, 169, 170, 168, 167, 161, 161, (1,47,50): 159, 159, 155, 150, 141, 132, 102, 93, 82, 74, 66, 62, (1,47,62): 60, 61, 64, 67, 70, 74, 74, 71, 67, 64, 83, 68, 57, 62, (1,47,76): 68, 64, 56, 53, 67, 68, 67, 65, 62, 57, 54, 50, 50, 51, (1,47,90): 52, 53, 53, 52, 52, 52, 66, 60, 54, 54, 57, 57, 53, 49, (1,47,104): 56, 49, 49, 57, 56, 52, 55, 67, 55, 56, 54, 53, 51, 53, (1,47,118): 58, 63, 76, 72, 66, 62, 60, 55, 50, 44, 43, 41, 44, 47, (1,47,132): 49, 52, 53, 55, 48, 46, 100, 93, 64, 68, 59, 77, 82, 72, (1,47,146): 59, 54, 56, 57, 59, 58, 60, 64, 65, 60, 56, 57, 60, 63, (1,47,160): 55, 55, 62, 71, 75, 73, 73, 74, 97, 94, 100, 110, 107, (1,47,173): 93, 88, 94, 97, 100, 104, 110, 127, 141, 131, 110, 112, (1,47,185): 120, 97, 88, 136, 180, 173, 153, 104, 81, 84, 97, 136, (1,47,197): 192, 215, 224, 241, 248, 253, 252, 253, 253, 252, 249, (1,47,208): 255, 254, 252, 255, 255, 252, 251, 255, 255, 246, 242, (1,47,219): 249, 253, 251, 252, 255, 255, 252, 251, (1,48,0): 79, 80, 78, 78, 75, 75, 73, 72, 67, 67, 65, 64, 62, 63, (1,48,14): 62, 64, 67, 69, 71, 73, 74, 74, 74, 75, 78, 76, 84, 104, (1,48,28): 126, 143, 153, 159, 162, 161, 160, 161, 163, 167, 170, (1,48,39): 173, 170, 169, 168, 169, 170, 170, 170, 170, 168, 166, (1,48,50): 160, 159, 164, 160, 135, 105, 78, 70, 65, 61, 61, 62, 64, (1,48,63): 64, 61, 61, 70, 59, 68, 69, 49, 74, 75, 67, 62, 59, 60, (1,48,77): 61, 59, 60, 66, 63, 68, 77, 75, 61, 54, 57, 55, 54, 53, (1,48,91): 50, 47, 47, 50, 53, 65, 56, 49, 50, 57, 59, 55, 50, 50, (1,48,105): 51, 52, 51, 51, 51, 53, 53, 48, 50, 53, 54, 52, 51, 51, (1,48,119): 52, 50, 51, 53, 51, 47, 45, 45, 46, 45, 43, 43, 47, 53, (1,48,133): 57, 55, 52, 45, 51, 88, 89, 59, 78, 52, 72, 79, 74, 67, (1,48,147): 59, 56, 56, 57, 60, 60, 59, 57, 59, 60, 61, 61, 60, 56, (1,48,161): 59, 61, 63, 63, 64, 64, 65, 106, 112, 99, 109, 113, 97, (1,48,174): 103, 112, 107, 104, 103, 101, 103, 109, 110, 109, 119, (1,48,185): 126, 95, 105, 103, 174, 167, 141, 112, 89, 81, 110, 149, (1,48,197): 182, 213, 238, 244, 245, 247, 251, 254, 255, 254, 255, (1,48,208): 255, 252, 249, 254, 255, 255, 255, 253, 253, 251, 250, (1,48,219): 250, 249, 250, 250, 250, 253, 255, 255, (1,49,0): 80, 79, 79, 77, 76, 75, 74, 73, 69, 68, 67, 66, 65, 65, (1,49,14): 65, 65, 67, 68, 70, 72, 74, 75, 75, 75, 78, 76, 85, 104, (1,49,28): 125, 140, 149, 154, 156, 155, 157, 158, 161, 165, 170, (1,49,39): 172, 172, 171, 167, 166, 164, 164, 162, 160, 166, 164, (1,49,50): 160, 155, 153, 143, 115, 87, 70, 63, 59, 58, 59, 62, 64, (1,49,63): 65, 60, 57, 65, 59, 66, 64, 51, 79, 67, 63, 59, 56, 56, (1,49,77): 56, 58, 59, 69, 61, 60, 71, 76, 67, 58, 57, 55, 55, 54, (1,49,91): 52, 50, 51, 53, 56, 61, 58, 53, 52, 52, 53, 51, 50, 56, (1,49,105): 56, 56, 58, 58, 58, 55, 51, 51, 53, 55, 55, 54, 52, 52, (1,49,119): 52, 50, 50, 48, 46, 44, 44, 45, 46, 43, 44, 48, 50, 52, (1,49,133): 53, 56, 57, 63, 42, 68, 62, 70, 86, 66, 66, 85, 82, 75, (1,49,147): 67, 61, 57, 57, 56, 59, 59, 58, 60, 62, 63, 64, 62, 58, (1,49,161): 59, 61, 62, 63, 63, 66, 67, 105, 109, 98, 107, 111, 98, (1,49,174): 107, 115, 111, 110, 107, 97, 92, 99, 110, 119, 117, 121, (1,49,186): 89, 99, 99, 168, 162, 134, 114, 95, 90, 115, 157, 196, (1,49,198): 225, 245, 248, 248, 249, 251, 254, 255, 254, 255, 255, (1,49,209): 255, 251, 254, 255, 255, 255, 255, 253, 253, 251, 247, (1,49,220): 244, 243, 245, 247, 249, 252, 253, (1,50,0): 80, 79, 79, 77, 76, 75, 74, 74, 71, 70, 69, 67, 67, 67, (1,50,14): 67, 67, 67, 70, 71, 73, 75, 75, 75, 75, 77, 77, 87, 105, (1,50,28): 123, 137, 145, 150, 152, 151, 152, 156, 159, 163, 167, (1,50,39): 169, 170, 168, 165, 162, 160, 158, 154, 153, 154, 152, (1,50,50): 147, 140, 131, 115, 91, 70, 68, 65, 63, 62, 62, 62, 62, (1,50,63): 62, 60, 56, 63, 65, 67, 60, 57, 87, 66, 62, 59, 57, 54, (1,50,77): 54, 57, 59, 72, 59, 53, 65, 75, 72, 61, 56, 54, 55, 55, (1,50,91): 54, 53, 55, 57, 61, 50, 51, 53, 52, 52, 54, 57, 62, 51, (1,50,105): 51, 52, 53, 55, 55, 50, 44, 64, 62, 61, 60, 57, 55, 55, (1,50,119): 55, 55, 51, 47, 46, 46, 46, 47, 46, 44, 48, 53, 53, 51, (1,50,133): 52, 57, 62, 65, 49, 83, 59, 65, 67, 74, 84, 85, 83, 79, (1,50,147): 74, 67, 60, 56, 54, 55, 55, 55, 58, 60, 62, 61, 61, 58, (1,50,161): 59, 60, 61, 61, 63, 67, 69, 92, 103, 97, 108, 112, 97, (1,50,174): 102, 106, 80, 94, 106, 104, 99, 102, 111, 117, 114, 111, (1,50,186): 81, 90, 97, 158, 152, 122, 109, 100, 96, 119, 165, 209, (1,50,198): 238, 248, 251, 252, 253, 255, 255, 255, 255, 255, 255, (1,50,209): 252, 246, 247, 251, 251, 252, 255, 250, 250, 248, 242, (1,50,220): 234, 232, 236, 242, 248, 252, 254, (1,51,0): 80, 80, 79, 78, 77, 77, 76, 76, 73, 72, 71, 70, 70, 70, (1,51,14): 70, 70, 69, 71, 73, 75, 76, 76, 76, 75, 76, 77, 86, 104, (1,51,28): 121, 133, 141, 148, 148, 148, 149, 152, 155, 158, 161, (1,51,39): 163, 165, 162, 159, 155, 153, 151, 147, 144, 131, 130, (1,51,50): 124, 115, 102, 88, 72, 62, 68, 68, 69, 68, 66, 64, 62, (1,51,63): 62, 63, 58, 63, 69, 65, 54, 62, 90, 65, 64, 61, 58, 56, (1,51,77): 57, 60, 65, 69, 58, 50, 60, 69, 69, 62, 57, 56, 57, 56, (1,51,91): 58, 56, 57, 59, 62, 48, 49, 51, 51, 52, 54, 56, 59, 54, (1,51,105): 58, 59, 59, 58, 58, 59, 56, 67, 64, 64, 61, 57, 57, 58, (1,51,119): 59, 60, 55, 49, 49, 49, 51, 49, 47, 50, 53, 55, 55, 53, (1,51,133): 55, 59, 62, 59, 60, 94, 70, 51, 46, 64, 87, 117, 114, (1,51,146): 106, 94, 80, 65, 53, 46, 56, 56, 56, 59, 60, 61, 61, 60, (1,51,160): 59, 60, 60, 60, 59, 62, 66, 70, 77, 96, 97, 112, 116, (1,51,173): 96, 93, 93, 70, 88, 105, 107, 104, 109, 113, 115, 111, (1,51,185): 103, 74, 82, 93, 148, 145, 116, 106, 104, 103, 124, 170, (1,51,197): 220, 245, 249, 249, 252, 254, 255, 255, 255, 252, 251, (1,51,208): 247, 241, 234, 235, 237, 239, 243, 247, 246, 246, 246, (1,51,219): 237, 227, 222, 226, 233, 244, 246, 249, (1,52,0): 80, 80, 79, 79, 78, 77, 77, 77, 75, 74, 73, 73, 72, 73, (1,52,14): 73, 73, 71, 73, 73, 76, 77, 77, 76, 76, 75, 75, 85, 101, (1,52,28): 116, 126, 135, 143, 144, 145, 146, 148, 149, 151, 152, (1,52,39): 154, 157, 155, 148, 144, 139, 135, 130, 125, 115, 110, (1,52,50): 102, 92, 78, 65, 59, 59, 67, 71, 73, 73, 71, 66, 62, 61, (1,52,64): 66, 62, 64, 73, 62, 50, 67, 85, 68, 65, 63, 62, 63, 64, (1,52,78): 68, 70, 61, 56, 53, 57, 61, 61, 59, 60, 58, 59, 59, 59, (1,52,92): 56, 56, 56, 57, 56, 52, 49, 50, 51, 52, 49, 47, 48, 54, (1,52,106): 57, 54, 51, 51, 57, 62, 56, 55, 55, 53, 52, 53, 55, 58, (1,52,120): 61, 56, 52, 53, 56, 58, 57, 56, 62, 59, 56, 55, 57, 60, (1,52,134): 60, 58, 62, 58, 62, 67, 47, 58, 50, 53, 53, 59, 67, 75, (1,52,148): 81, 83, 84, 85, 63, 63, 60, 61, 62, 63, 63, 62, 60, 60, (1,52,162): 60, 61, 60, 61, 65, 68, 76, 98, 99, 110, 114, 96, 96, (1,52,175): 95, 105, 109, 110, 100, 98, 109, 117, 118, 107, 95, 71, (1,52,187): 75, 90, 137, 142, 121, 114, 117, 119, 136, 178, 226, (1,52,198): 250, 253, 252, 255, 255, 255, 255, 251, 241, 237, 232, (1,52,209): 227, 221, 222, 224, 226, 230, 235, 239, 242, 242, 235, (1,52,220): 225, 219, 221, 226, 231, 231, 233, (1,53,0): 79, 79, 79, 78, 78, 77, 77, 77, 76, 76, 75, 74, 74, 75, (1,53,14): 75, 76, 73, 73, 75, 76, 77, 77, 76, 77, 75, 76, 83, 94, (1,53,28): 106, 116, 125, 134, 138, 139, 141, 142, 143, 143, 144, (1,53,39): 144, 148, 144, 136, 129, 123, 116, 110, 104, 105, 98, 88, (1,53,51): 79, 65, 56, 53, 58, 66, 72, 76, 77, 73, 69, 63, 62, 67, (1,53,65): 67, 65, 73, 59, 52, 73, 76, 66, 63, 59, 60, 64, 69, 71, (1,53,79): 71, 56, 56, 56, 57, 57, 56, 58, 59, 59, 61, 60, 59, 56, (1,53,93): 54, 54, 53, 50, 46, 43, 47, 51, 54, 52, 50, 46, 51, 53, (1,53,107): 50, 46, 46, 53, 58, 48, 48, 51, 51, 53, 55, 57, 60, 56, (1,53,121): 54, 54, 58, 62, 65, 65, 65, 71, 65, 59, 57, 60, 61, 60, (1,53,135): 56, 58, 55, 48, 67, 50, 63, 47, 42, 49, 53, 56, 57, 56, (1,53,149): 53, 50, 49, 69, 65, 61, 58, 57, 57, 58, 58, 59, 61, 62, (1,53,163): 60, 60, 60, 62, 65, 83, 103, 99, 106, 110, 99, 106, 110, (1,53,176): 110, 114, 112, 102, 103, 116, 117, 110, 103, 90, 72, 72, (1,53,188): 87, 128, 146, 136, 134, 137, 138, 151, 183, 222, 244, (1,53,199): 250, 255, 255, 255, 255, 249, 239, 227, 222, 213, 211, (1,53,210): 209, 210, 213, 214, 218, 223, 230, 234, 237, 234, 227, (1,53,221): 221, 218, 220, 219, 217, 216, (1,54,0): 78, 78, 78, 78, 77, 77, 77, 77, 76, 76, 75, 75, 75, 76, (1,54,14): 76, 77, 73, 74, 76, 76, 78, 77, 77, 78, 77, 76, 79, 87, (1,54,28): 95, 102, 111, 121, 128, 130, 131, 133, 134, 136, 137, (1,54,39): 137, 136, 131, 124, 118, 112, 107, 101, 95, 94, 85, 78, (1,54,51): 74, 64, 54, 52, 58, 64, 70, 74, 75, 72, 68, 63, 63, 65, (1,54,65): 70, 65, 72, 58, 55, 79, 66, 61, 54, 49, 53, 62, 69, 70, (1,54,79): 68, 57, 58, 58, 58, 56, 57, 58, 58, 57, 58, 58, 57, 55, (1,54,93): 53, 51, 51, 42, 42, 45, 46, 49, 50, 51, 53, 55, 55, 57, (1,54,107): 56, 56, 55, 53, 53, 42, 45, 49, 52, 54, 56, 59, 61, 53, (1,54,121): 56, 59, 61, 62, 61, 62, 65, 74, 71, 65, 60, 57, 57, 56, (1,54,135): 57, 50, 57, 64, 68, 48, 46, 52, 54, 51, 55, 57, 58, 59, (1,54,149): 59, 58, 59, 76, 70, 64, 57, 54, 54, 55, 56, 59, 61, 62, (1,54,163): 61, 60, 60, 60, 61, 75, 100, 99, 107, 111, 105, 114, (1,54,175): 117, 101, 111, 116, 111, 111, 120, 116, 101, 98, 84, 72, (1,54,187): 68, 81, 118, 149, 153, 150, 151, 149, 157, 178, 204, (1,54,198): 224, 236, 244, 241, 235, 228, 221, 212, 203, 199, 193, (1,54,209): 194, 195, 201, 203, 203, 206, 211, 217, 222, 227, 229, (1,54,220): 226, 219, 212, 209, 205, 203, 198, (1,55,0): 78, 77, 77, 77, 77, 77, 76, 76, 77, 76, 76, 75, 75, 76, (1,55,14): 77, 76, 74, 74, 76, 78, 77, 77, 77, 77, 79, 77, 77, 82, (1,55,28): 88, 93, 102, 113, 119, 122, 125, 128, 129, 131, 132, 132, (1,55,40): 125, 121, 116, 111, 109, 105, 101, 95, 79, 72, 69, 71, (1,55,52): 66, 58, 54, 58, 62, 66, 69, 70, 69, 67, 63, 64, 64, 71, (1,55,66): 65, 71, 57, 58, 85, 62, 56, 47, 42, 47, 58, 67, 67, 62, (1,55,80): 59, 59, 60, 58, 59, 60, 59, 56, 53, 55, 56, 55, 53, 51, (1,55,94): 51, 50, 51, 54, 56, 52, 45, 40, 40, 43, 45, 41, 38, 41, (1,55,108): 44, 42, 32, 25, 34, 40, 44, 48, 49, 51, 53, 54, 54, 57, (1,55,122): 61, 62, 58, 55, 53, 57, 72, 75, 69, 61, 54, 51, 54, 56, (1,55,136): 52, 54, 67, 56, 50, 32, 56, 54, 49, 52, 52, 53, 54, 54, (1,55,150): 53, 55, 89, 82, 72, 64, 59, 59, 60, 60, 57, 59, 61, 61, (1,55,164): 59, 57, 57, 58, 60, 89, 98, 112, 118, 109, 113, 114, (1,55,176): 121, 127, 124, 109, 104, 114, 115, 105, 92, 80, 71, 64, (1,55,188): 78, 112, 152, 163, 156, 154, 151, 156, 169, 186, 205, (1,55,199): 220, 215, 210, 202, 193, 187, 182, 178, 176, 180, 181, (1,55,210): 186, 192, 195, 196, 197, 201, 206, 210, 218, 224, 222, (1,55,221): 216, 205, 199, 193, 188, 182, (1,56,0): 77, 77, 77, 77, 77, 77, 77, 77, 75, 75, 75, 76, 76, 77, (1,56,14): 77, 77, 76, 76, 77, 78, 77, 79, 79, 79, 77, 77, 76, 78, (1,56,28): 80, 85, 89, 93, 103, 109, 114, 116, 119, 126, 131, 131, (1,56,40): 126, 126, 120, 112, 112, 114, 106, 90, 71, 66, 65, 68, (1,56,52): 64, 58, 60, 68, 62, 62, 62, 65, 67, 68, 66, 67, 63, 64, (1,56,66): 63, 62, 60, 60, 68, 77, 54, 59, 50, 51, 67, 63, 54, 62, (1,56,80): 55, 58, 60, 59, 57, 57, 58, 58, 58, 57, 54, 50, 46, 47, (1,56,94): 55, 61, 57, 54, 49, 43, 40, 38, 38, 38, 38, 33, 34, 39, (1,56,108): 41, 33, 24, 23, 37, 34, 34, 43, 45, 42, 44, 50, 54, 54, (1,56,122): 54, 54, 49, 46, 44, 47, 57, 58, 57, 83, 34, 43, 70, 46, (1,56,136): 46, 60, 69, 58, 47, 46, 53, 60, 62, 60, 53, 51, 53, 59, (1,56,150): 59, 56, 98, 90, 67, 54, 58, 56, 51, 54, 48, 50, 50, 52, (1,56,164): 54, 58, 60, 61, 58, 67, 92, 112, 115, 120, 121, 113, (1,56,176): 122, 119, 117, 118, 116, 114, 107, 100, 94, 74, 69, 70, (1,56,188): 70, 103, 144, 155, 156, 153, 148, 151, 159, 166, 168, (1,56,199): 168, 163, 163, 159, 154, 154, 157, 160, 164, 172, 177, (1,56,210): 183, 188, 190, 189, 189, 189, 188, 189, 195, 205, 212, (1,56,221): 211, 200, 192, 185, 177, 168, (1,57,0): 77, 77, 77, 77, 77, 77, 77, 77, 75, 75, 75, 76, 76, 77, (1,57,14): 77, 77, 76, 77, 76, 77, 78, 79, 79, 79, 80, 79, 78, 78, (1,57,28): 80, 83, 85, 88, 93, 100, 105, 108, 113, 122, 128, 128, (1,57,40): 128, 125, 116, 108, 111, 115, 103, 86, 61, 55, 54, 61, (1,57,52): 65, 63, 64, 65, 61, 59, 60, 62, 66, 66, 66, 66, 60, 61, (1,57,66): 60, 59, 58, 58, 65, 74, 71, 65, 54, 53, 64, 67, 57, 53, (1,57,80): 56, 59, 61, 61, 59, 59, 58, 57, 57, 54, 50, 50, 53, 56, (1,57,94): 56, 57, 50, 49, 47, 45, 44, 45, 46, 46, 42, 37, 36, 39, (1,57,108): 37, 29, 20, 19, 29, 45, 50, 41, 39, 45, 47, 42, 58, 55, (1,57,122): 52, 50, 47, 48, 50, 56, 50, 59, 56, 69, 69, 47, 50, 34, (1,57,136): 53, 63, 69, 61, 51, 50, 54, 58, 58, 57, 53, 53, 57, 60, (1,57,150): 60, 57, 99, 88, 64, 52, 57, 58, 54, 57, 53, 52, 52, 53, (1,57,164): 54, 53, 54, 54, 59, 66, 89, 108, 113, 120, 124, 117, (1,57,176): 122, 119, 119, 118, 117, 111, 104, 97, 93, 75, 68, 70, (1,57,188): 73, 102, 138, 146, 147, 146, 142, 144, 149, 152, 149, (1,57,199): 148, 135, 137, 137, 141, 143, 149, 155, 158, 171, 177, (1,57,210): 183, 186, 187, 187, 188, 187, 181, 179, 183, 190, 199, (1,57,221): 200, 195, 188, 181, 172, 163, (1,58,0): 76, 76, 76, 76, 76, 76, 76, 76, 74, 74, 74, 75, 75, 76, (1,58,14): 76, 76, 76, 76, 75, 77, 78, 79, 79, 79, 82, 81, 80, 78, (1,58,28): 79, 80, 81, 82, 84, 89, 95, 99, 108, 119, 126, 125, 132, (1,58,41): 128, 118, 111, 115, 117, 104, 81, 61, 54, 54, 61, 68, 69, (1,58,54): 66, 63, 61, 58, 58, 61, 64, 66, 65, 66, 59, 57, 57, 57, (1,58,68): 56, 57, 63, 70, 68, 57, 55, 59, 67, 79, 72, 51, 57, 58, (1,58,82): 59, 61, 61, 60, 58, 57, 55, 50, 47, 52, 61, 63, 57, 52, (1,58,96): 54, 54, 50, 48, 46, 45, 44, 44, 44, 40, 39, 41, 37, 30, (1,58,110): 22, 24, 37, 47, 52, 53, 57, 58, 53, 45, 50, 47, 46, 45, (1,58,124): 46, 46, 47, 52, 48, 61, 54, 59, 109, 67, 47, 47, 58, 64, (1,58,138): 65, 60, 55, 53, 53, 54, 54, 54, 54, 56, 59, 60, 60, 59, (1,58,152): 96, 84, 60, 48, 59, 62, 59, 61, 61, 60, 61, 60, 59, 57, (1,58,166): 54, 54, 59, 64, 84, 103, 111, 122, 129, 123, 122, 121, (1,58,178): 122, 121, 117, 110, 99, 92, 89, 73, 65, 70, 76, 97, 122, (1,58,191): 128, 130, 133, 131, 133, 136, 136, 132, 130, 122, 127, (1,58,202): 133, 141, 149, 156, 160, 163, 171, 176, 180, 184, 184, (1,58,213): 185, 186, 186, 177, 172, 170, 174, 181, 186, 185, 183, (1,58,224): 171, 160, 150, (1,59,0): 75, 75, 75, 75, 75, 75, 75, 75, 74, 74, 74, 75, 75, 76, (1,59,14): 76, 76, 75, 75, 76, 77, 77, 79, 79, 79, 81, 81, 79, 79, (1,59,28): 78, 78, 79, 79, 80, 84, 89, 94, 104, 117, 124, 123, 132, (1,59,41): 133, 128, 122, 120, 116, 99, 77, 72, 67, 67, 70, 73, 72, (1,59,54): 69, 65, 64, 60, 60, 62, 65, 66, 65, 64, 63, 60, 57, 58, (1,59,68): 57, 56, 62, 68, 60, 51, 59, 65, 68, 83, 85, 58, 57, 55, (1,59,82): 55, 59, 61, 61, 57, 56, 52, 50, 50, 57, 62, 62, 53, 47, (1,59,96): 54, 55, 52, 50, 46, 46, 44, 44, 42, 39, 40, 42, 39, 34, (1,59,110): 31, 37, 56, 40, 44, 77, 93, 78, 60, 58, 41, 42, 45, 48, (1,59,124): 50, 48, 43, 40, 48, 55, 50, 67, 115, 86, 62, 71, 61, 60, (1,59,138): 58, 56, 55, 54, 52, 51, 53, 54, 56, 59, 60, 57, 58, 60, (1,59,152): 88, 77, 55, 48, 60, 65, 59, 60, 62, 61, 63, 64, 63, 60, (1,59,166): 58, 57, 57, 61, 78, 99, 110, 124, 132, 125, 118, 119, (1,59,178): 122, 122, 118, 109, 98, 91, 84, 71, 61, 68, 79, 91, 104, (1,59,191): 109, 115, 121, 122, 125, 129, 131, 129, 129, 135, 142, (1,59,202): 149, 157, 164, 168, 170, 170, 172, 176, 179, 182, 183, (1,59,213): 183, 184, 184, 180, 171, 165, 165, 172, 180, 184, 184, (1,59,224): 171, 158, 146, (1,60,0): 75, 75, 75, 75, 75, 75, 75, 75, 74, 74, 74, 75, 75, 76, (1,60,14): 76, 76, 76, 75, 75, 77, 77, 78, 79, 79, 79, 78, 78, 79, (1,60,28): 78, 79, 80, 79, 78, 80, 84, 89, 101, 114, 119, 118, 125, (1,60,41): 134, 137, 130, 119, 108, 89, 69, 70, 73, 77, 76, 71, 69, (1,60,54): 69, 67, 66, 63, 63, 65, 68, 68, 66, 63, 65, 61, 58, 58, (1,60,68): 57, 56, 59, 63, 70, 61, 66, 65, 59, 74, 88, 75, 64, 56, (1,60,82): 51, 56, 60, 58, 55, 56, 48, 51, 56, 59, 58, 54, 48, 44, (1,60,96): 48, 50, 49, 50, 51, 51, 53, 53, 46, 45, 47, 49, 46, 42, (1,60,110): 44, 52, 58, 51, 62, 92, 104, 85, 67, 64, 51, 51, 51, 54, (1,60,124): 57, 56, 52, 47, 50, 46, 55, 89, 92, 88, 65, 72, 66, 60, (1,60,138): 55, 54, 56, 57, 55, 53, 56, 57, 58, 61, 59, 54, 55, 61, (1,60,152): 78, 69, 53, 49, 62, 64, 56, 53, 50, 50, 53, 56, 58, 58, (1,60,166): 57, 58, 54, 56, 73, 95, 110, 125, 133, 126, 116, 118, (1,60,178): 122, 123, 116, 108, 97, 90, 81, 72, 62, 69, 83, 86, 91, (1,60,191): 98, 112, 118, 121, 126, 129, 133, 136, 140, 149, 154, (1,60,202): 160, 167, 170, 171, 171, 169, 172, 174, 178, 180, 181, (1,60,213): 182, 184, 184, 183, 173, 164, 165, 174, 186, 193, 198, (1,60,224): 186, 170, 156, (1,61,0): 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 74, 75, 75, 76, (1,61,14): 76, 76, 75, 75, 75, 76, 77, 78, 79, 79, 78, 78, 79, 79, (1,61,28): 79, 80, 81, 80, 76, 77, 79, 85, 96, 111, 116, 113, 118, (1,61,41): 131, 140, 131, 116, 101, 81, 63, 55, 64, 73, 71, 65, 66, (1,61,54): 67, 67, 67, 64, 64, 66, 68, 68, 66, 63, 64, 59, 56, 57, (1,61,68): 57, 56, 58, 59, 73, 63, 61, 55, 50, 65, 90, 104, 80, 65, (1,61,82): 53, 54, 57, 57, 55, 56, 48, 54, 59, 59, 52, 47, 45, 45, (1,61,96): 52, 52, 51, 50, 49, 49, 48, 49, 49, 50, 53, 53, 49, 46, (1,61,110): 49, 62, 51, 78, 95, 92, 84, 79, 68, 56, 65, 58, 50, 47, (1,61,124): 50, 56, 59, 58, 58, 50, 74, 107, 76, 80, 59, 59, 76, 64, (1,61,138): 55, 55, 60, 60, 58, 59, 59, 58, 60, 62, 57, 51, 58, 68, (1,61,152): 71, 67, 55, 50, 59, 58, 50, 50, 44, 44, 46, 51, 55, 58, (1,61,166): 60, 62, 54, 52, 66, 88, 106, 124, 134, 127, 117, 119, (1,61,178): 123, 122, 114, 105, 94, 89, 79, 75, 64, 70, 85, 83, 84, (1,61,191): 96, 115, 124, 129, 134, 136, 139, 144, 151, 156, 159, (1,61,202): 164, 168, 169, 170, 169, 169, 170, 173, 175, 178, 178, (1,61,213): 180, 182, 184, 181, 173, 166, 169, 181, 196, 206, 210, (1,61,224): 194, 178, 161, (1,62,0): 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 76, 76, 77, (1,62,14): 77, 76, 75, 74, 75, 76, 77, 78, 79, 79, 79, 80, 79, 80, (1,62,28): 80, 80, 80, 78, 75, 75, 78, 84, 97, 112, 118, 115, 117, (1,62,41): 128, 134, 127, 113, 101, 82, 62, 47, 55, 65, 64, 63, 66, (1,62,54): 67, 65, 65, 64, 63, 65, 67, 66, 64, 62, 62, 57, 55, 58, (1,62,68): 60, 60, 61, 63, 61, 57, 48, 47, 52, 57, 77, 108, 104, 81, (1,62,82): 60, 58, 58, 55, 54, 56, 52, 55, 57, 54, 49, 47, 49, 49, (1,62,96): 50, 48, 45, 43, 38, 35, 32, 32, 39, 43, 47, 49, 44, 42, (1,62,110): 51, 66, 67, 95, 103, 85, 74, 74, 65, 49, 64, 55, 45, 40, (1,62,124): 46, 56, 63, 64, 63, 58, 89, 93, 71, 68, 54, 59, 85, 70, (1,62,138): 57, 56, 58, 57, 57, 61, 63, 60, 59, 61, 55, 51, 61, 76, (1,62,152): 71, 69, 57, 51, 55, 53, 48, 49, 44, 43, 46, 49, 52, 56, (1,62,166): 59, 62, 57, 51, 59, 78, 97, 121, 136, 131, 121, 122, (1,62,178): 124, 122, 111, 101, 90, 86, 75, 74, 64, 69, 84, 77, 77, (1,62,191): 94, 114, 126, 136, 142, 144, 146, 151, 158, 164, 166, (1,62,202): 167, 168, 168, 169, 169, 168, 167, 169, 172, 174, 175, (1,62,213): 177, 181, 183, 179, 173, 168, 173, 185, 199, 207, 210, (1,62,224): 192, 174, 156, (1,63,0): 74, 75, 74, 75, 74, 75, 74, 75, 74, 75, 74, 76, 75, 77, (1,63,14): 76, 76, 75, 75, 75, 77, 77, 79, 79, 79, 81, 82, 82, 81, (1,63,28): 81, 80, 79, 76, 77, 76, 79, 87, 101, 117, 124, 120, 122, (1,63,41): 129, 132, 126, 117, 109, 90, 70, 52, 58, 64, 63, 65, 69, (1,63,54): 66, 60, 63, 62, 62, 64, 66, 65, 62, 61, 63, 59, 56, 60, (1,63,68): 63, 64, 65, 67, 55, 56, 46, 51, 58, 48, 53, 85, 119, 91, (1,63,82): 67, 60, 59, 55, 54, 58, 55, 56, 54, 51, 48, 49, 51, 53, (1,63,96): 37, 35, 34, 33, 32, 31, 29, 30, 28, 32, 39, 41, 39, 41, (1,63,110): 53, 70, 96, 94, 85, 80, 80, 75, 62, 48, 61, 54, 47, 46, (1,63,124): 52, 59, 63, 61, 57, 56, 86, 59, 63, 52, 50, 67, 87, 72, (1,63,138): 57, 54, 54, 53, 53, 58, 60, 58, 55, 57, 52, 49, 63, 82, (1,63,152): 73, 72, 59, 50, 52, 49, 45, 50, 44, 43, 43, 43, 45, 49, (1,63,166): 52, 56, 61, 50, 55, 73, 92, 119, 137, 134, 126, 125, (1,63,178): 125, 119, 107, 96, 87, 83, 68, 71, 59, 65, 81, 73, 70, (1,63,191): 93, 109, 125, 140, 150, 152, 155, 160, 165, 172, 171, (1,63,202): 170, 167, 165, 165, 165, 165, 164, 166, 170, 172, 173, (1,63,213): 175, 179, 182, 182, 176, 173, 176, 188, 198, 203, 205, (1,63,224): 191, 171, 152, (1,64,0): 75, 75, 75, 75, 75, 75, 75, 75, 76, 76, 76, 76, 76, 76, (1,64,14): 76, 76, 74, 75, 76, 76, 76, 78, 80, 83, 83, 82, 80, 81, (1,64,28): 82, 81, 78, 76, 75, 75, 79, 91, 107, 123, 133, 137, 132, (1,64,41): 136, 136, 130, 121, 114, 106, 97, 77, 65, 61, 66, 69, 65, (1,64,54): 61, 62, 59, 59, 58, 59, 60, 59, 58, 57, 54, 65, 60, 54, (1,64,68): 65, 70, 61, 55, 56, 55, 53, 54, 56, 60, 58, 54, 59, 83, (1,64,82): 90, 69, 56, 62, 66, 58, 50, 71, 47, 54, 55, 45, 66, 40, (1,64,96): 38, 41, 41, 29, 34, 39, 39, 29, 31, 44, 33, 38, 44, 33, (1,64,110): 86, 43, 92, 94, 89, 84, 79, 71, 62, 54, 61, 64, 62, 54, (1,64,124): 49, 53, 58, 59, 56, 55, 69, 59, 51, 54, 53, 68, 76, 75, (1,64,138): 68, 58, 52, 53, 52, 53, 60, 57, 47, 40, 45, 57, 67, 72, (1,64,152): 80, 69, 55, 48, 48, 50, 49, 49, 47, 48, 48, 48, 48, 50, (1,64,166): 53, 57, 61, 50, 62, 61, 95, 115, 143, 132, 135, 132, (1,64,178): 120, 104, 95, 92, 86, 77, 72, 60, 62, 66, 94, 63, 67, (1,64,191): 91, 116, 134, 150, 156, 157, 161, 166, 168, 167, 166, (1,64,202): 165, 165, 164, 163, 163, 163, 165, 166, 171, 172, 173, (1,64,213): 174, 177, 179, 181, 180, 177, 174, 180, 189, 194, 193, (1,64,224): 175, 152, 135, (1,65,0): 75, 75, 75, 75, 75, 75, 75, 75, 76, 76, 76, 76, 76, 76, (1,65,14): 76, 75, 75, 76, 77, 78, 78, 78, 81, 82, 83, 81, 79, 79, (1,65,28): 78, 80, 79, 77, 76, 78, 83, 95, 111, 126, 136, 139, 150, (1,65,41): 140, 127, 120, 121, 124, 117, 105, 94, 81, 71, 74, 76, (1,65,53): 71, 64, 60, 57, 58, 57, 60, 61, 60, 58, 59, 60, 63, 56, (1,65,67): 58, 65, 60, 54, 60, 53, 53, 53, 52, 56, 58, 59, 57, 54, (1,65,81): 65, 77, 73, 62, 56, 56, 59, 58, 73, 48, 55, 54, 46, 63, (1,65,95): 37, 36, 37, 41, 43, 42, 40, 40, 43, 36, 37, 37, 59, 26, (1,65,109): 50, 63, 35, 104, 97, 90, 86, 78, 65, 59, 61, 55, 66, 71, (1,65,123): 61, 47, 39, 38, 39, 45, 58, 84, 72, 53, 52, 61, 87, 71, (1,65,137): 71, 65, 57, 51, 54, 55, 55, 61, 57, 53, 50, 52, 56, 63, (1,65,151): 69, 74, 65, 54, 48, 48, 50, 48, 48, 48, 49, 48, 47, 48, (1,65,165): 49, 52, 57, 61, 51, 60, 61, 94, 118, 144, 133, 134, 128, (1,65,178): 115, 100, 92, 89, 84, 76, 68, 61, 66, 74, 83, 61, 67, (1,65,191): 92, 118, 135, 149, 156, 157, 161, 165, 166, 165, 165, (1,65,202): 164, 163, 161, 161, 161, 162, 163, 166, 169, 170, 171, (1,65,213): 173, 175, 177, 176, 178, 175, 171, 171, 172, 170, 162, (1,65,224): 133, 111, 95, (1,66,0): 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, (1,66,14): 76, 76, 75, 78, 80, 80, 80, 79, 79, 82, 81, 81, 79, 79, (1,66,28): 80, 81, 84, 84, 84, 86, 92, 105, 118, 131, 138, 142, 146, (1,66,41): 139, 131, 125, 128, 131, 126, 115, 102, 85, 73, 72, 73, (1,66,53): 71, 65, 61, 55, 55, 56, 60, 63, 63, 61, 61, 61, 60, 58, (1,66,67): 66, 72, 59, 48, 58, 54, 54, 55, 56, 55, 56, 57, 58, 52, (1,66,81): 52, 65, 79, 72, 53, 50, 64, 62, 72, 48, 53, 54, 49, 66, (1,66,95): 46, 41, 35, 36, 49, 45, 39, 38, 49, 40, 55, 42, 40, 50, (1,66,109): 81, 59, 89, 94, 85, 78, 76, 69, 58, 55, 62, 53, 62, 65, (1,66,123): 60, 55, 49, 43, 38, 36, 47, 69, 58, 44, 51, 65, 94, 63, (1,66,137): 67, 65, 61, 57, 61, 64, 64, 64, 61, 62, 65, 62, 58, 63, (1,66,151): 73, 66, 60, 53, 50, 49, 51, 49, 48, 48, 48, 48, 47, 48, (1,66,165): 49, 52, 57, 62, 52, 56, 59, 91, 122, 147, 135, 129, 124, (1,66,178): 113, 100, 90, 85, 79, 73, 65, 63, 71, 84, 64, 56, 70, (1,66,191): 95, 119, 135, 147, 152, 154, 158, 163, 163, 162, 162, (1,66,202): 161, 160, 159, 160, 160, 160, 162, 164, 167, 168, 169, (1,66,213): 169, 171, 174, 178, 181, 178, 172, 166, 158, 147, 134, (1,66,224): 99, 79, 65, (1,67,0): 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, (1,67,14): 77, 77, 76, 78, 80, 81, 80, 78, 79, 80, 79, 81, 85, 88, (1,67,28): 88, 89, 92, 94, 96, 99, 107, 116, 126, 135, 141, 143, (1,67,40): 135, 139, 138, 129, 121, 123, 129, 130, 116, 100, 88, 79, (1,67,52): 73, 68, 63, 60, 54, 55, 57, 60, 64, 64, 64, 63, 57, 62, (1,67,66): 61, 70, 82, 72, 53, 49, 57, 56, 59, 61, 59, 54, 54, 56, (1,67,80): 53, 50, 61, 78, 75, 58, 56, 66, 54, 62, 47, 48, 50, 52, (1,67,94): 74, 70, 62, 51, 36, 47, 44, 50, 42, 47, 57, 26, 50, 43, (1,67,108): 56, 68, 87, 75, 60, 64, 66, 62, 57, 56, 55, 57, 56, 56, (1,67,122): 57, 64, 77, 85, 77, 66, 55, 57, 75, 77, 81, 89, 82, 89, (1,67,136): 53, 62, 66, 64, 63, 66, 67, 64, 63, 56, 57, 63, 58, 53, (1,67,150): 62, 77, 57, 54, 51, 51, 52, 51, 50, 48, 48, 47, 48, 47, (1,67,164): 47, 48, 52, 56, 63, 54, 53, 57, 86, 124, 147, 135, 128, (1,67,177): 121, 110, 99, 88, 80, 72, 67, 61, 66, 77, 90, 50, 57, (1,67,190): 77, 101, 123, 137, 146, 149, 152, 157, 161, 162, 160, (1,67,201): 160, 159, 158, 159, 159, 159, 160, 162, 163, 167, 167, (1,67,212): 168, 168, 171, 173, 178, 180, 179, 173, 166, 157, 142, (1,67,223): 128, 98, 82, 71, (1,68,0): 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, 77, (1,68,14): 77, 77, 75, 77, 80, 80, 79, 78, 79, 81, 80, 87, 96, 102, (1,68,28): 104, 103, 103, 103, 108, 112, 118, 124, 130, 135, 139, (1,68,39): 140, 142, 141, 132, 117, 108, 110, 117, 118, 115, 109, (1,68,50): 104, 95, 83, 71, 60, 55, 53, 54, 57, 60, 64, 65, 65, 64, (1,68,64): 55, 64, 58, 59, 82, 92, 77, 59, 57, 55, 57, 62, 61, 54, (1,68,78): 52, 54, 51, 55, 61, 69, 70, 66, 65, 62, 48, 55, 48, 45, (1,68,92): 44, 51, 76, 87, 90, 79, 46, 48, 44, 69, 54, 44, 44, 61, (1,68,106): 49, 50, 98, 61, 41, 45, 38, 59, 65, 55, 51, 57, 55, 47, (1,68,120): 52, 59, 71, 83, 96, 105, 101, 94, 64, 69, 94, 104, 111, (1,68,133): 106, 75, 61, 52, 62, 68, 67, 62, 60, 58, 52, 53, 45, 44, (1,68,147): 46, 44, 44, 57, 74, 51, 51, 51, 51, 53, 52, 52, 50, 48, (1,68,161): 47, 47, 46, 47, 48, 51, 55, 63, 56, 50, 56, 78, 124, (1,68,174): 146, 135, 126, 117, 108, 97, 85, 74, 64, 59, 58, 68, 80, (1,68,187): 87, 46, 62, 84, 106, 124, 137, 146, 150, 153, 158, 161, (1,68,199): 160, 159, 159, 157, 158, 158, 159, 159, 161, 162, 165, (1,68,210): 166, 167, 167, 168, 170, 172, 172, 175, 174, 170, 165, (1,68,221): 160, 149, 138, 119, 107, 97, (1,69,0): 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, (1,69,14): 78, 78, 76, 78, 78, 79, 78, 79, 83, 84, 90, 98, 109, 117, (1,69,28): 117, 113, 112, 112, 116, 119, 124, 128, 131, 134, 138, (1,69,39): 141, 144, 139, 133, 131, 132, 126, 107, 82, 78, 82, 88, (1,69,51): 88, 84, 75, 63, 52, 56, 57, 58, 61, 64, 65, 63, 62, 57, (1,69,65): 65, 53, 46, 73, 103, 100, 85, 60, 54, 51, 58, 59, 54, 51, (1,69,79): 54, 49, 55, 59, 57, 62, 70, 66, 57, 48, 52, 51, 45, 41, (1,69,93): 47, 66, 82, 93, 92, 57, 57, 43, 74, 56, 47, 51, 39, 37, (1,69,107): 87, 61, 57, 54, 31, 40, 61, 66, 53, 44, 49, 48, 41, 52, (1,69,121): 76, 98, 105, 100, 96, 96, 98, 76, 78, 92, 86, 77, 72, (1,69,134): 52, 51, 65, 75, 79, 74, 64, 58, 54, 46, 50, 45, 42, 39, (1,69,148): 41, 48, 62, 74, 49, 51, 51, 53, 52, 52, 52, 51, 48, 47, (1,69,162): 46, 45, 46, 47, 50, 55, 61, 59, 49, 55, 67, 121, 141, (1,69,175): 136, 123, 113, 104, 96, 83, 69, 58, 55, 58, 72, 80, 74, (1,69,188): 52, 66, 87, 106, 124, 136, 145, 149, 153, 158, 160, 158, (1,69,200): 155, 156, 155, 156, 157, 158, 159, 161, 161, 164, 167, (1,69,211): 166, 166, 167, 169, 170, 170, 173, 172, 169, 167, 165, (1,69,222): 157, 148, 137, 128, 120, (1,70,0): 80, 80, 80, 80, 80, 80, 80, 80, 79, 79, 79, 79, 79, 79, (1,70,14): 79, 78, 80, 80, 79, 79, 79, 82, 86, 90, 103, 111, 122, (1,70,27): 126, 124, 119, 117, 118, 121, 125, 129, 132, 134, 138, (1,70,38): 142, 147, 147, 150, 156, 167, 173, 166, 136, 103, 70, 65, (1,70,50): 65, 66, 72, 78, 74, 63, 61, 59, 59, 60, 64, 63, 62, 60, (1,70,64): 58, 63, 52, 49, 73, 99, 104, 101, 79, 62, 52, 55, 57, 53, (1,70,78): 50, 54, 48, 52, 55, 55, 62, 67, 62, 52, 51, 47, 51, 46, (1,70,92): 45, 48, 54, 64, 77, 89, 70, 81, 51, 70, 56, 65, 53, 44, (1,70,106): 46, 70, 55, 55, 35, 59, 57, 60, 62, 55, 46, 42, 50, 61, (1,70,120): 77, 95, 109, 106, 97, 91, 90, 92, 100, 90, 87, 64, 49, (1,70,133): 52, 51, 67, 74, 82, 83, 74, 63, 57, 56, 51, 46, 48, 48, (1,70,147): 42, 46, 59, 67, 65, 49, 52, 52, 53, 52, 51, 52, 52, 48, (1,70,161): 47, 46, 45, 46, 47, 50, 55, 58, 62, 49, 55, 59, 115, (1,70,174): 138, 135, 116, 104, 97, 92, 82, 68, 55, 56, 61, 78, 81, (1,70,187): 57, 60, 68, 86, 100, 119, 133, 142, 148, 154, 158, 158, (1,70,199): 155, 152, 153, 154, 154, 155, 156, 157, 159, 161, 162, (1,70,210): 165, 164, 164, 164, 165, 167, 169, 172, 171, 168, 165, (1,70,221): 162, 154, 145, 132, 128, 121, (1,71,0): 80, 80, 80, 80, 80, 80, 80, 80, 79, 79, 79, 79, 79, 79, (1,71,14): 79, 78, 81, 81, 80, 80, 80, 84, 90, 95, 114, 120, 128, (1,71,27): 129, 126, 121, 117, 119, 124, 127, 133, 136, 138, 143, (1,71,38): 150, 157, 167, 172, 179, 184, 190, 193, 187, 172, 111, (1,71,49): 92, 71, 62, 71, 87, 87, 78, 64, 61, 60, 61, 61, 61, 59, (1,71,63): 57, 56, 60, 58, 61, 79, 88, 93, 101, 99, 76, 58, 56, 57, (1,71,77): 52, 50, 54, 52, 50, 53, 60, 67, 67, 58, 51, 52, 45, 48, (1,71,91): 48, 52, 54, 46, 50, 66, 88, 87, 111, 68, 72, 60, 91, 109, (1,71,105): 59, 123, 108, 81, 61, 48, 59, 72, 59, 56, 62, 56, 46, (1,71,118): 64, 95, 110, 107, 100, 94, 95, 99, 95, 90, 93, 80, 74, (1,71,131): 55, 47, 53, 48, 57, 68, 74, 73, 64, 54, 52, 55, 54, 39, (1,71,145): 48, 50, 43, 48, 62, 63, 52, 51, 53, 54, 52, 51, 51, 52, (1,71,159): 52, 48, 47, 46, 45, 46, 47, 50, 55, 57, 63, 48, 54, 54, (1,71,173): 112, 135, 134, 110, 99, 94, 90, 81, 67, 57, 59, 67, 84, (1,71,186): 82, 48, 68, 69, 83, 93, 115, 129, 139, 146, 152, 157, (1,71,198): 156, 153, 151, 151, 151, 152, 153, 155, 155, 158, 158, (1,71,209): 161, 163, 163, 162, 162, 163, 165, 164, 166, 166, 161, (1,71,220): 156, 151, 140, 130, 117, 113, 107, (1,72,0): 76, 78, 80, 80, 79, 79, 79, 81, 82, 79, 77, 77, 81, 83, (1,72,14): 82, 81, 83, 80, 80, 81, 81, 83, 97, 113, 120, 124, 128, (1,72,27): 129, 127, 122, 115, 111, 119, 124, 131, 141, 151, 164, (1,72,38): 176, 185, 197, 204, 207, 207, 207, 209, 203, 194, 168, (1,72,49): 128, 93, 122, 116, 72, 81, 99, 75, 63, 57, 59, 58, 55, (1,72,62): 54, 59, 56, 53, 66, 60, 73, 88, 79, 100, 99, 88, 71, 58, (1,72,76): 54, 55, 54, 52, 48, 50, 55, 61, 60, 55, 53, 55, 47, 47, (1,72,90): 47, 49, 50, 52, 53, 54, 55, 74, 89, 78, 56, 54, 88, 126, (1,72,104): 120, 107, 99, 102, 101, 92, 89, 91, 87, 70, 58, 57, 51, (1,72,117): 45, 50, 62, 85, 97, 104, 103, 100, 100, 97, 94, 83, 70, (1,72,130): 56, 52, 49, 47, 51, 57, 68, 66, 63, 60, 57, 56, 57, 54, (1,72,144): 55, 52, 52, 52, 54, 53, 51, 49, 51, 53, 55, 53, 51, 50, (1,72,158): 50, 50, 49, 48, 47, 46, 47, 48, 51, 55, 63, 56, 54, 47, (1,72,172): 59, 88, 152, 123, 109, 102, 93, 81, 72, 68, 61, 59, 79, (1,72,185): 84, 61, 44, 58, 70, 77, 94, 105, 120, 136, 146, 150, (1,72,197): 149, 150, 152, 149, 150, 151, 152, 153, 155, 156, 156, (1,72,208): 155, 157, 160, 161, 162, 162, 161, 160, 165, 163, 158, (1,72,219): 151, 139, 126, 114, 106, 85, 85, 84, (1,73,0): 75, 78, 80, 80, 80, 79, 80, 81, 82, 80, 79, 80, 82, 83, (1,73,14): 82, 80, 86, 81, 79, 84, 90, 96, 107, 119, 121, 125, 127, (1,73,27): 124, 117, 112, 111, 113, 119, 126, 137, 152, 167, 182, (1,73,38): 197, 206, 214, 219, 222, 221, 219, 216, 209, 199, 188, (1,73,49): 155, 124, 138, 125, 86, 96, 114, 90, 75, 63, 62, 63, 59, (1,73,62): 54, 54, 61, 56, 63, 54, 62, 75, 72, 93, 111, 96, 72, 53, (1,73,76): 48, 54, 53, 48, 53, 57, 61, 60, 56, 53, 52, 53, 55, 53, (1,73,90): 50, 48, 48, 50, 52, 53, 56, 62, 74, 87, 94, 92, 93, 97, (1,73,104): 79, 74, 78, 92, 104, 101, 89, 79, 53, 45, 44, 47, 40, (1,73,117): 34, 41, 57, 81, 92, 100, 101, 102, 101, 92, 82, 69, 60, (1,73,130): 54, 54, 53, 51, 50, 54, 62, 62, 59, 58, 56, 56, 57, 58, (1,73,144): 57, 55, 55, 55, 55, 54, 51, 50, 51, 54, 55, 54, 50, 49, (1,73,158): 49, 50, 49, 48, 47, 46, 47, 48, 51, 55, 60, 61, 56, 49, (1,73,172): 55, 90, 144, 115, 103, 94, 87, 80, 71, 65, 61, 66, 81, (1,73,185): 76, 60, 50, 57, 65, 71, 83, 99, 114, 131, 143, 147, 147, (1,73,198): 147, 148, 146, 148, 149, 150, 151, 153, 154, 154, 155, (1,73,209): 157, 159, 159, 158, 158, 157, 156, 152, 148, 140, 129, (1,73,220): 117, 105, 93, 87, 87, 87, 87, (1,74,0): 76, 78, 81, 81, 81, 81, 82, 83, 84, 83, 82, 83, 84, 84, (1,74,14): 83, 80, 85, 81, 81, 89, 100, 109, 117, 123, 123, 126, (1,74,26): 124, 115, 105, 103, 110, 117, 125, 133, 148, 167, 185, (1,74,37): 201, 215, 224, 228, 231, 232, 229, 225, 219, 207, 196, (1,74,48): 174, 154, 130, 130, 110, 81, 93, 109, 117, 96, 74, 66, (1,74,60): 65, 62, 57, 54, 61, 59, 65, 55, 55, 62, 61, 70, 106, 105, (1,74,74): 91, 66, 50, 52, 54, 50, 53, 65, 71, 61, 50, 49, 50, 48, (1,74,88): 52, 49, 46, 47, 50, 55, 61, 66, 45, 52, 68, 86, 94, 90, (1,74,102): 83, 81, 69, 70, 77, 91, 107, 109, 87, 60, 47, 45, 50, (1,74,115): 51, 44, 40, 55, 76, 74, 80, 87, 95, 100, 97, 82, 67, 57, (1,74,129): 55, 55, 60, 59, 57, 53, 54, 58, 59, 57, 57, 55, 56, 58, (1,74,143): 60, 57, 57, 57, 57, 56, 55, 52, 50, 54, 55, 56, 54, 50, (1,74,157): 48, 48, 49, 49, 49, 48, 47, 47, 48, 51, 54, 57, 68, 56, (1,74,171): 52, 47, 95, 131, 108, 99, 88, 81, 78, 69, 59, 61, 74, (1,74,184): 85, 68, 60, 62, 60, 63, 68, 72, 92, 107, 124, 137, 143, (1,74,197): 144, 143, 143, 144, 145, 146, 148, 150, 151, 151, 152, (1,74,208): 156, 157, 156, 156, 154, 151, 149, 148, 141, 136, 127, (1,74,219): 116, 105, 96, 88, 85, 93, 94, 95, (1,75,0): 74, 77, 79, 81, 80, 81, 82, 84, 83, 83, 83, 84, 84, 83, (1,75,14): 82, 80, 79, 81, 88, 99, 109, 117, 122, 124, 124, 121, (1,75,26): 114, 105, 100, 103, 114, 123, 138, 146, 162, 181, 196, (1,75,37): 209, 220, 227, 229, 233, 232, 226, 219, 211, 195, 182, (1,75,48): 164, 152, 134, 127, 113, 98, 104, 113, 139, 118, 92, 76, (1,75,60): 69, 65, 61, 60, 58, 60, 69, 67, 58, 58, 54, 49, 73, 97, (1,75,74): 107, 83, 58, 52, 54, 52, 52, 77, 90, 75, 56, 51, 52, 50, (1,75,88): 46, 44, 44, 45, 49, 54, 59, 63, 47, 52, 58, 67, 70, 69, (1,75,102): 71, 77, 81, 86, 87, 91, 102, 107, 86, 56, 50, 47, 46, (1,75,115): 43, 37, 41, 62, 83, 63, 65, 71, 81, 90, 88, 71, 54, 53, (1,75,129): 55, 59, 64, 64, 61, 57, 55, 56, 57, 56, 56, 55, 55, 57, (1,75,143): 58, 58, 59, 58, 58, 58, 56, 53, 51, 54, 55, 56, 54, 50, (1,75,157): 48, 47, 48, 50, 50, 49, 48, 48, 48, 51, 54, 56, 70, 57, (1,75,171): 51, 44, 102, 121, 103, 100, 86, 76, 72, 64, 55, 63, 82, (1,75,184): 89, 67, 67, 79, 70, 67, 71, 68, 85, 99, 116, 131, 139, (1,75,197): 141, 141, 142, 143, 144, 145, 147, 148, 150, 150, 151, (1,75,208): 155, 155, 153, 151, 147, 144, 142, 141, 135, 129, 121, (1,75,219): 113, 105, 102, 101, 102, 103, 104, 105, (1,76,0): 72, 74, 78, 79, 80, 80, 82, 84, 82, 83, 84, 84, 83, 82, (1,76,14): 82, 81, 77, 88, 102, 112, 116, 119, 122, 123, 121, 114, (1,76,26): 103, 99, 103, 114, 124, 132, 149, 159, 174, 189, 201, (1,76,37): 211, 218, 223, 224, 226, 222, 215, 208, 198, 182, 167, (1,76,48): 153, 141, 132, 123, 117, 114, 109, 111, 137, 129, 116, (1,76,59): 102, 88, 79, 69, 65, 58, 59, 66, 69, 60, 61, 66, 49, 48, (1,76,73): 73, 88, 78, 61, 56, 54, 51, 52, 85, 107, 93, 68, 59, 59, (1,76,87): 56, 52, 50, 49, 48, 48, 47, 47, 48, 57, 52, 51, 58, 67, (1,76,101): 69, 66, 64, 69, 80, 86, 86, 93, 101, 87, 63, 59, 53, 51, (1,76,115): 50, 50, 57, 72, 86, 53, 51, 54, 65, 74, 72, 59, 49, 53, (1,76,129): 57, 60, 60, 59, 58, 55, 55, 59, 59, 58, 57, 56, 55, 54, (1,76,143): 55, 58, 59, 58, 58, 59, 57, 54, 51, 55, 56, 57, 55, 51, (1,76,157): 49, 48, 49, 51, 51, 50, 48, 49, 48, 51, 54, 55, 67, 55, (1,76,171): 49, 49, 106, 113, 103, 95, 82, 68, 63, 59, 58, 71, 91, (1,76,184): 86, 69, 74, 89, 79, 73, 73, 69, 80, 92, 108, 124, 133, (1,76,197): 138, 140, 141, 142, 143, 145, 146, 147, 149, 149, 150, (1,76,208): 153, 152, 149, 146, 143, 140, 138, 136, 129, 124, 116, (1,76,219): 110, 107, 108, 110, 113, 111, 112, 111, (1,77,0): 69, 72, 75, 77, 78, 79, 81, 83, 83, 84, 84, 84, 83, 83, (1,77,14): 85, 86, 86, 101, 117, 121, 121, 121, 121, 119, 114, 106, (1,77,26): 99, 101, 112, 126, 135, 141, 157, 166, 179, 191, 199, (1,77,37): 206, 211, 213, 214, 213, 208, 201, 195, 186, 168, 155, (1,77,48): 137, 121, 116, 107, 107, 110, 97, 96, 115, 122, 128, 126, (1,77,60): 115, 100, 85, 73, 68, 62, 60, 65, 58, 67, 84, 62, 54, 57, (1,77,74): 61, 63, 66, 67, 64, 55, 50, 76, 95, 87, 68, 58, 56, 55, (1,77,88): 57, 57, 57, 58, 57, 57, 56, 56, 40, 51, 64, 73, 68, 59, (1,77,102): 55, 58, 57, 73, 86, 89, 93, 95, 83, 63, 64, 63, 64, 70, (1,77,116): 76, 81, 84, 85, 51, 46, 46, 55, 60, 58, 52, 48, 52, 57, (1,77,130): 56, 52, 50, 50, 52, 52, 60, 61, 60, 59, 56, 55, 52, 52, (1,77,144): 56, 57, 56, 57, 57, 55, 53, 51, 55, 56, 58, 55, 50, 48, (1,77,158): 48, 49, 52, 52, 51, 49, 49, 49, 51, 54, 57, 60, 55, 48, (1,77,172): 64, 110, 107, 99, 84, 74, 62, 55, 55, 64, 79, 92, 71, (1,77,185): 70, 76, 86, 81, 74, 71, 68, 74, 85, 99, 115, 127, 135, (1,77,198): 138, 140, 140, 142, 144, 144, 146, 148, 148, 148, 149, (1,77,209): 148, 145, 142, 140, 137, 136, 134, 130, 126, 120, 114, (1,77,220): 111, 112, 114, 117, 114, 115, 115, (1,78,0): 66, 69, 73, 75, 76, 78, 80, 82, 85, 86, 86, 85, 83, 85, (1,78,14): 90, 93, 103, 112, 120, 121, 120, 119, 117, 111, 104, 102, (1,78,26): 103, 109, 120, 133, 144, 151, 161, 168, 178, 186, 191, (1,78,37): 193, 195, 197, 194, 192, 186, 179, 176, 168, 153, 139, (1,78,48): 132, 111, 110, 101, 102, 109, 94, 99, 90, 103, 117, 124, (1,78,60): 125, 120, 106, 92, 83, 72, 61, 68, 59, 71, 92, 59, 60, (1,78,73): 55, 54, 62, 68, 66, 65, 65, 56, 62, 67, 66, 61, 56, 55, (1,78,87): 55, 58, 57, 58, 59, 62, 65, 69, 71, 45, 59, 74, 76, 61, (1,78,101): 48, 48, 57, 65, 76, 86, 90, 92, 89, 76, 62, 52, 53, 57, (1,78,115): 63, 66, 68, 64, 62, 51, 48, 49, 55, 54, 49, 45, 49, 50, (1,78,129): 57, 55, 48, 44, 48, 51, 51, 61, 61, 61, 60, 58, 57, 54, (1,78,143): 54, 53, 53, 53, 54, 54, 53, 50, 49, 55, 57, 58, 55, 52, (1,78,157): 49, 49, 49, 52, 53, 52, 50, 49, 49, 51, 54, 59, 52, 58, (1,78,171): 50, 85, 112, 99, 90, 75, 72, 58, 49, 54, 67, 77, 80, 53, (1,78,185): 71, 75, 78, 81, 74, 64, 68, 70, 79, 91, 106, 120, 129, (1,78,198): 136, 139, 138, 139, 141, 142, 144, 145, 145, 146, 146, (1,78,209): 144, 143, 139, 138, 136, 135, 135, 133, 130, 126, 121, (1,78,220): 119, 119, 120, 122, 116, 117, 117, (1,79,0): 67, 70, 72, 75, 75, 77, 79, 81, 87, 88, 88, 86, 85, 87, (1,79,14): 94, 99, 114, 117, 118, 115, 114, 117, 112, 103, 97, 101, (1,79,26): 108, 115, 124, 135, 147, 156, 161, 167, 174, 179, 180, (1,79,37): 179, 179, 179, 176, 172, 166, 161, 159, 153, 140, 126, (1,79,48): 120, 97, 99, 88, 90, 99, 86, 98, 77, 85, 97, 108, 121, (1,79,61): 129, 124, 112, 97, 84, 71, 79, 66, 71, 87, 44, 49, 52, (1,79,74): 62, 69, 62, 50, 55, 69, 69, 57, 51, 53, 59, 61, 60, 61, (1,79,88): 59, 57, 53, 52, 53, 56, 60, 63, 83, 71, 60, 58, 61, 59, (1,79,102): 55, 52, 75, 76, 80, 84, 89, 86, 77, 67, 52, 54, 53, 52, (1,79,116): 49, 49, 48, 46, 51, 50, 52, 56, 51, 41, 40, 46, 45, 53, (1,79,130): 53, 46, 42, 48, 53, 53, 60, 61, 61, 61, 59, 58, 55, 54, (1,79,144): 52, 51, 50, 51, 53, 52, 49, 48, 56, 58, 58, 56, 52, 51, (1,79,158): 51, 52, 53, 53, 52, 51, 50, 50, 52, 54, 61, 47, 62, 52, (1,79,172): 98, 112, 91, 80, 70, 72, 61, 50, 55, 71, 74, 66, 43, 72, (1,79,186): 75, 72, 80, 74, 64, 70, 67, 74, 85, 100, 114, 125, 132, (1,79,199): 136, 136, 137, 138, 141, 142, 143, 143, 144, 144, 144, (1,79,210): 141, 138, 136, 135, 135, 134, 129, 127, 125, 124, 123, (1,79,221): 123, 124, 126, 120, 121, 122, (1,80,0): 66, 68, 70, 71, 72, 73, 77, 79, 81, 82, 83, 86, 89, 98, (1,80,14): 106, 111, 113, 116, 121, 119, 112, 103, 97, 95, 98, 104, (1,80,26): 112, 122, 130, 139, 146, 153, 158, 160, 162, 163, 163, (1,80,37): 162, 160, 159, 158, 156, 154, 153, 150, 142, 131, 124, (1,80,48): 111, 103, 95, 90, 89, 86, 85, 86, 82, 89, 88, 91, 107, (1,80,61): 122, 131, 139, 117, 117, 95, 80, 69, 90, 55, 50, 54, 55, (1,80,74): 55, 55, 57, 59, 60, 63, 56, 60, 63, 59, 53, 51, 58, 64, (1,80,88): 57, 57, 55, 55, 55, 58, 63, 65, 61, 64, 69, 71, 67, 60, (1,80,102): 50, 43, 60, 69, 79, 86, 89, 88, 79, 67, 58, 58, 56, 53, (1,80,116): 46, 42, 40, 39, 44, 43, 42, 41, 39, 38, 36, 35, 35, 38, (1,80,130): 42, 44, 44, 46, 53, 60, 56, 58, 59, 59, 58, 57, 55, 53, (1,80,144): 51, 52, 53, 53, 53, 53, 53, 53, 56, 57, 57, 57, 56, 55, (1,80,158): 54, 52, 53, 52, 53, 52, 53, 53, 54, 56, 58, 55, 58, 62, (1,80,172): 109, 98, 85, 75, 79, 58, 57, 63, 64, 80, 73, 36, 43, 56, (1,80,186): 68, 76, 73, 67, 68, 73, 72, 75, 83, 93, 107, 118, 126, (1,80,199): 131, 134, 136, 137, 139, 141, 144, 144, 145, 145, 142, (1,80,210): 140, 139, 138, 137, 133, 131, 131, 129, 127, 126, 127, (1,80,221): 127, 126, 125, 123, 127, 130, (1,81,0): 63, 65, 67, 69, 69, 71, 75, 77, 79, 81, 83, 86, 91, 99, (1,81,14): 108, 111, 112, 112, 112, 109, 102, 97, 94, 92, 100, 106, (1,81,26): 114, 123, 130, 137, 142, 147, 149, 151, 152, 153, 151, (1,81,37): 150, 150, 149, 150, 148, 147, 147, 145, 138, 127, 121, (1,81,48): 109, 101, 94, 91, 90, 86, 84, 84, 84, 91, 88, 88, 102, (1,81,61): 114, 120, 126, 136, 135, 117, 103, 85, 90, 50, 47, 55, (1,81,73): 55, 55, 56, 56, 59, 59, 61, 57, 57, 58, 58, 57, 57, 56, (1,81,87): 56, 59, 57, 56, 56, 57, 57, 58, 57, 54, 56, 61, 64, 65, (1,81,101): 63, 60, 57, 52, 62, 72, 79, 81, 78, 67, 55, 55, 56, 55, (1,81,115): 52, 47, 43, 41, 40, 43, 42, 41, 38, 35, 33, 30, 29, 30, (1,81,129): 31, 36, 41, 45, 50, 55, 60, 57, 58, 59, 59, 58, 57, 55, (1,81,143): 53, 51, 52, 53, 54, 55, 54, 53, 53, 57, 57, 57, 57, 57, (1,81,157): 56, 56, 54, 53, 51, 52, 53, 53, 54, 55, 55, 61, 52, 53, (1,81,171): 84, 102, 91, 73, 76, 69, 64, 56, 62, 78, 76, 56, 41, 51, (1,81,185): 54, 59, 64, 66, 64, 68, 73, 68, 80, 98, 111, 118, 122, (1,81,198): 126, 130, 131, 134, 137, 140, 141, 142, 144, 145, 145, (1,81,209): 144, 141, 139, 138, 137, 133, 131, 131, 129, 127, 128, (1,81,220): 129, 129, 127, 126, 128, 132, 135, (1,82,0): 57, 60, 63, 65, 66, 69, 72, 76, 79, 79, 83, 87, 93, 101, (1,82,14): 109, 113, 111, 107, 102, 96, 91, 90, 93, 95, 106, 111, (1,82,26): 120, 128, 132, 136, 139, 142, 144, 144, 144, 144, 142, (1,82,37): 141, 140, 139, 140, 139, 139, 140, 139, 133, 123, 115, (1,82,48): 103, 96, 91, 91, 91, 88, 85, 83, 89, 95, 91, 88, 100, (1,82,61): 109, 113, 119, 138, 138, 133, 125, 110, 97, 52, 50, 56, (1,82,73): 58, 57, 57, 57, 59, 58, 58, 58, 53, 53, 56, 62, 62, 54, (1,82,87): 47, 58, 56, 55, 56, 58, 58, 57, 55, 53, 54, 56, 58, 61, (1,82,101): 64, 65, 66, 58, 64, 69, 70, 72, 71, 64, 55, 54, 54, 55, (1,82,115): 52, 48, 45, 43, 42, 39, 39, 37, 35, 33, 30, 28, 27, 29, (1,82,129): 30, 35, 42, 50, 55, 57, 59, 57, 58, 59, 59, 57, 56, 55, (1,82,143): 53, 51, 52, 53, 54, 54, 54, 53, 52, 56, 57, 57, 56, 56, (1,82,157): 55, 55, 54, 53, 52, 53, 54, 54, 55, 55, 56, 61, 50, 56, (1,82,171): 108, 93, 81, 62, 75, 59, 66, 56, 65, 87, 64, 34, 46, 52, (1,82,185): 53, 54, 59, 62, 61, 64, 69, 70, 97, 126, 140, 135, 127, (1,82,198): 125, 128, 131, 133, 137, 140, 142, 143, 144, 145, 147, (1,82,209): 145, 141, 140, 139, 139, 136, 134, 132, 131, 128, 129, (1,82,220): 130, 130, 129, 128, 134, 138, 141, (1,83,0): 53, 56, 60, 62, 64, 66, 69, 74, 76, 77, 81, 87, 94, 103, (1,83,14): 110, 111, 109, 103, 94, 87, 85, 88, 95, 99, 110, 115, (1,83,26): 124, 131, 134, 136, 136, 138, 142, 140, 140, 139, 137, (1,83,37): 136, 134, 133, 133, 133, 134, 136, 136, 131, 121, 112, (1,83,48): 96, 90, 89, 92, 94, 91, 86, 82, 84, 91, 89, 88, 99, 108, (1,83,62): 112, 121, 125, 122, 131, 134, 129, 107, 60, 56, 59, 58, (1,83,74): 59, 58, 58, 58, 57, 56, 58, 54, 53, 56, 62, 62, 56, 47, (1,83,88): 54, 53, 52, 54, 57, 60, 61, 59, 58, 58, 57, 57, 58, 59, (1,83,102): 60, 61, 68, 69, 65, 61, 60, 65, 64, 59, 53, 53, 53, 51, (1,83,116): 47, 43, 41, 41, 38, 38, 38, 39, 38, 37, 36, 35, 33, 34, (1,83,130): 37, 44, 53, 57, 57, 57, 57, 58, 59, 59, 57, 56, 55, 53, (1,83,144): 52, 52, 54, 54, 55, 54, 53, 53, 56, 56, 56, 56, 55, 55, (1,83,158): 54, 54, 53, 54, 55, 57, 57, 59, 58, 58, 59, 51, 73, 111, (1,83,172): 85, 69, 62, 67, 55, 60, 66, 79, 80, 47, 29, 48, 47, 52, (1,83,186): 58, 65, 64, 61, 64, 70, 93, 126, 159, 168, 152, 132, (1,83,198): 123, 126, 131, 134, 138, 143, 144, 145, 146, 146, 148, (1,83,209): 146, 142, 141, 140, 140, 138, 137, 133, 131, 129, 130, (1,83,220): 131, 132, 130, 130, 138, 142, 145, (1,84,0): 51, 54, 57, 59, 61, 64, 68, 71, 73, 75, 78, 85, 94, 103, (1,84,14): 107, 107, 104, 96, 86, 80, 81, 89, 99, 106, 114, 120, (1,84,26): 127, 133, 135, 136, 137, 138, 139, 138, 136, 135, 133, (1,84,37): 131, 131, 130, 132, 132, 133, 134, 134, 130, 120, 110, (1,84,48): 90, 84, 87, 92, 96, 95, 90, 83, 74, 83, 83, 82, 93, 102, (1,84,62): 108, 118, 117, 111, 126, 130, 135, 108, 63, 56, 59, 61, (1,84,74): 61, 60, 59, 58, 56, 55, 58, 56, 56, 57, 58, 58, 57, 55, (1,84,88): 57, 55, 56, 55, 55, 56, 60, 62, 60, 61, 60, 59, 58, 56, (1,84,102): 55, 53, 64, 64, 61, 57, 56, 59, 58, 53, 47, 48, 50, 50, (1,84,116): 47, 45, 43, 44, 45, 46, 47, 47, 47, 47, 45, 46, 40, 40, (1,84,130): 43, 48, 54, 56, 56, 53, 57, 58, 59, 58, 57, 56, 54, 52, (1,84,144): 52, 52, 53, 55, 55, 54, 54, 53, 56, 57, 57, 57, 57, 56, (1,84,158): 55, 56, 56, 58, 59, 61, 61, 62, 61, 61, 55, 60, 93, 96, (1,84,172): 80, 60, 66, 55, 55, 52, 78, 92, 64, 38, 40, 49, 46, 54, (1,84,186): 62, 65, 61, 61, 74, 92, 133, 163, 190, 190, 165, 139, (1,84,198): 127, 127, 132, 136, 141, 147, 148, 149, 147, 147, 148, (1,84,209): 146, 142, 140, 140, 140, 139, 138, 133, 132, 131, 132, (1,84,220): 133, 134, 133, 133, 142, 145, 148, (1,85,0): 49, 52, 55, 57, 58, 61, 65, 68, 72, 71, 74, 83, 94, 101, (1,85,14): 103, 102, 97, 89, 81, 79, 83, 94, 105, 111, 119, 124, (1,85,26): 129, 133, 135, 135, 135, 136, 135, 134, 132, 130, 128, (1,85,37): 128, 127, 128, 133, 133, 133, 134, 133, 128, 118, 106, (1,85,48): 87, 81, 85, 94, 100, 97, 93, 87, 78, 85, 84, 82, 92, 98, (1,85,62): 104, 113, 121, 113, 124, 115, 120, 92, 59, 53, 59, 61, (1,85,74): 61, 60, 59, 59, 57, 55, 53, 55, 58, 58, 58, 56, 58, 61, (1,85,88): 61, 64, 65, 62, 56, 52, 56, 60, 58, 58, 59, 59, 58, 57, (1,85,102): 53, 53, 54, 59, 62, 63, 63, 62, 55, 44, 43, 45, 48, 51, (1,85,116): 49, 48, 48, 48, 48, 49, 49, 48, 47, 45, 44, 42, 46, 46, (1,85,130): 48, 51, 54, 55, 54, 53, 57, 58, 58, 58, 57, 56, 54, 52, (1,85,144): 53, 53, 54, 55, 55, 54, 54, 54, 55, 56, 56, 57, 56, 56, (1,85,158): 55, 57, 57, 60, 61, 63, 64, 64, 63, 60, 55, 72, 103, 78, (1,85,172): 72, 56, 66, 49, 57, 55, 83, 87, 50, 41, 55, 50, 51, 55, (1,85,186): 59, 58, 56, 68, 99, 131, 174, 193, 206, 199, 174, 148, (1,85,198): 134, 130, 133, 136, 143, 150, 152, 151, 149, 148, 148, (1,85,209): 145, 141, 139, 139, 140, 139, 139, 134, 133, 132, 133, (1,85,220): 136, 137, 135, 134, 143, 147, 150, (1,86,0): 48, 49, 52, 53, 54, 56, 61, 62, 69, 69, 72, 80, 91, 98, (1,86,14): 98, 96, 94, 88, 84, 84, 93, 105, 115, 120, 127, 130, 132, (1,86,27): 134, 133, 132, 132, 133, 134, 133, 131, 129, 127, 128, (1,86,38): 128, 128, 133, 132, 131, 132, 130, 124, 113, 102, 86, 81, (1,86,50): 87, 95, 101, 100, 96, 91, 82, 91, 89, 85, 91, 93, 98, (1,86,63): 109, 122, 114, 120, 89, 91, 68, 53, 58, 58, 60, 61, 61, (1,86,76): 59, 58, 56, 54, 48, 51, 56, 59, 59, 59, 59, 60, 59, 67, (1,86,90): 75, 72, 61, 52, 53, 59, 57, 57, 57, 57, 56, 56, 55, 55, (1,86,104): 54, 60, 63, 64, 64, 65, 58, 49, 48, 49, 52, 54, 52, 49, (1,86,118): 48, 47, 46, 47, 47, 48, 45, 44, 43, 42, 49, 50, 53, 53, (1,86,132): 53, 53, 55, 56, 56, 57, 58, 58, 56, 55, 54, 52, 53, 53, (1,86,146): 55, 56, 55, 55, 54, 54, 55, 56, 56, 57, 57, 57, 56, 57, (1,86,160): 57, 58, 62, 63, 64, 64, 62, 59, 58, 85, 94, 71, 62, 58, (1,86,174): 56, 53, 58, 71, 80, 64, 50, 53, 57, 51, 51, 53, 56, 60, (1,86,188): 67, 92, 132, 168, 197, 203, 204, 195, 174, 153, 136, (1,86,199): 129, 131, 137, 143, 149, 153, 152, 149, 147, 147, 144, (1,86,210): 140, 138, 138, 139, 139, 139, 136, 134, 134, 136, 138, (1,86,221): 139, 137, 137, 146, 150, 153, (1,87,0): 46, 48, 50, 51, 51, 54, 57, 59, 68, 68, 70, 79, 90, 97, (1,87,14): 96, 92, 95, 90, 88, 92, 103, 115, 124, 128, 132, 133, (1,87,26): 134, 133, 131, 130, 130, 130, 135, 134, 132, 130, 130, (1,87,37): 130, 130, 131, 133, 131, 130, 130, 127, 120, 110, 99, 87, (1,87,49): 84, 87, 95, 101, 100, 96, 93, 79, 89, 89, 83, 86, 87, 90, (1,87,63): 100, 114, 110, 113, 68, 65, 49, 52, 67, 57, 58, 59, 60, (1,87,76): 58, 58, 56, 55, 44, 48, 54, 60, 64, 62, 59, 55, 52, 66, (1,87,90): 79, 78, 66, 55, 55, 62, 59, 58, 56, 55, 54, 54, 56, 56, (1,87,104): 59, 59, 57, 54, 55, 60, 60, 55, 56, 56, 58, 57, 52, 47, (1,87,118): 44, 44, 47, 49, 51, 52, 53, 53, 51, 53, 50, 53, 56, 54, (1,87,132): 52, 52, 55, 60, 56, 57, 57, 58, 56, 55, 54, 52, 53, 53, (1,87,146): 55, 56, 57, 56, 55, 55, 56, 58, 57, 59, 58, 58, 58, 59, (1,87,160): 57, 58, 61, 62, 63, 63, 61, 56, 60, 93, 81, 72, 56, 63, (1,87,174): 46, 62, 61, 93, 76, 45, 56, 66, 55, 52, 48, 50, 57, 68, (1,87,188): 86, 116, 157, 190, 203, 201, 195, 186, 172, 153, 135, (1,87,199): 124, 129, 135, 142, 149, 152, 151, 148, 146, 147, 143, (1,87,210): 139, 137, 137, 139, 139, 139, 136, 135, 135, 136, 138, (1,87,221): 139, 139, 138, 147, 151, 154, (1,88,0): 48, 47, 45, 46, 48, 51, 56, 58, 61, 64, 69, 76, 82, 88, (1,88,14): 92, 94, 88, 89, 93, 101, 110, 120, 129, 133, 140, 140, (1,88,26): 138, 135, 130, 128, 128, 130, 131, 133, 131, 132, 131, (1,88,37): 131, 132, 132, 128, 128, 128, 125, 120, 111, 101, 93, 92, (1,88,49): 92, 92, 94, 95, 96, 96, 94, 79, 84, 92, 96, 89, 81, 83, (1,88,63): 92, 104, 89, 68, 55, 55, 58, 61, 59, 57, 58, 57, 58, 56, (1,88,77): 56, 53, 53, 47, 51, 56, 62, 64, 64, 61, 57, 57, 48, 87, (1,88,91): 75, 47, 61, 60, 56, 59, 58, 57, 56, 55, 54, 53, 52, 55, (1,88,105): 59, 62, 60, 55, 56, 62, 67, 66, 57, 50, 52, 50, 45, 45, (1,88,119): 50, 55, 53, 54, 55, 57, 58, 55, 55, 59, 60, 58, 56, 56, (1,88,133): 55, 55, 55, 57, 57, 57, 58, 57, 57, 57, 56, 55, 54, 56, (1,88,147): 57, 59, 59, 57, 55, 56, 57, 57, 58, 58, 58, 59, 60, 57, (1,88,161): 61, 58, 52, 57, 68, 64, 49, 95, 87, 75, 61, 51, 50, 56, (1,88,175): 69, 91, 71, 52, 51, 63, 66, 54, 43, 46, 49, 56, 74, 110, (1,88,189): 155, 186, 198, 203, 190, 182, 178, 160, 132, 118, 123, (1,88,200): 128, 135, 143, 148, 149, 148, 146, 145, 142, 138, 134, (1,88,211): 134, 137, 139, 138, 136, 139, 140, 139, 139, 138, 139, (1,88,222): 143, 147, 155, 157, 158, (1,89,0): 48, 47, 46, 46, 47, 51, 54, 56, 60, 63, 68, 74, 80, 85, (1,89,14): 89, 92, 90, 93, 98, 106, 116, 126, 135, 140, 141, 140, (1,89,26): 137, 132, 128, 126, 127, 130, 134, 135, 136, 136, 136, (1,89,37): 134, 134, 133, 128, 127, 124, 120, 115, 107, 98, 93, 96, (1,89,49): 96, 94, 94, 92, 93, 94, 93, 93, 89, 88, 90, 86, 83, 82, (1,89,63): 89, 85, 76, 62, 54, 54, 57, 57, 57, 56, 56, 56, 56, 55, (1,89,77): 54, 52, 53, 48, 53, 57, 61, 65, 64, 60, 57, 56, 60, 82, (1,89,91): 72, 52, 58, 58, 52, 61, 60, 59, 59, 58, 57, 56, 54, 55, (1,89,105): 56, 55, 51, 49, 49, 55, 60, 68, 56, 47, 47, 48, 46, 49, (1,89,119): 54, 53, 51, 50, 58, 69, 73, 68, 63, 58, 57, 57, 57, 56, (1,89,133): 56, 57, 57, 56, 56, 57, 57, 57, 57, 57, 55, 54, 53, 54, (1,89,147): 56, 59, 58, 57, 55, 56, 58, 58, 59, 59, 60, 60, 60, 57, (1,89,161): 63, 58, 53, 58, 60, 58, 61, 95, 81, 67, 57, 57, 61, 64, (1,89,175): 74, 64, 63, 58, 58, 61, 61, 59, 61, 47, 55, 75, 104, (1,89,188): 143, 176, 195, 199, 186, 185, 182, 169, 142, 117, 112, (1,89,199): 123, 127, 134, 141, 147, 148, 147, 144, 144, 140, 137, (1,89,210): 134, 134, 138, 140, 140, 139, 141, 141, 142, 140, 140, (1,89,221): 142, 146, 149, 156, 157, 158, (1,90,0): 49, 49, 47, 46, 47, 49, 52, 53, 59, 62, 66, 72, 77, 82, (1,90,14): 85, 87, 89, 93, 100, 110, 120, 131, 139, 144, 142, 140, (1,90,26): 137, 132, 127, 124, 125, 127, 134, 136, 138, 139, 138, (1,90,37): 136, 132, 130, 128, 124, 118, 112, 106, 100, 94, 93, 98, (1,90,49): 98, 95, 92, 90, 91, 92, 92, 96, 87, 82, 85, 88, 86, 80, (1,90,63): 79, 62, 60, 56, 55, 54, 54, 55, 55, 55, 56, 56, 56, 54, (1,90,77): 53, 51, 53, 51, 54, 57, 60, 63, 63, 60, 56, 53, 74, 70, (1,90,91): 65, 60, 54, 59, 54, 58, 58, 58, 58, 56, 55, 54, 51, 57, (1,90,105): 55, 51, 51, 51, 54, 58, 60, 60, 52, 48, 49, 51, 52, 55, (1,90,119): 61, 55, 65, 78, 89, 90, 81, 66, 56, 54, 55, 55, 55, 56, (1,90,133): 57, 59, 59, 55, 56, 56, 56, 56, 56, 56, 56, 53, 52, 53, (1,90,147): 55, 58, 58, 56, 55, 56, 58, 59, 60, 60, 60, 60, 60, 57, (1,90,161): 64, 57, 54, 59, 49, 52, 80, 92, 75, 59, 57, 65, 73, 75, (1,90,175): 79, 56, 62, 63, 64, 60, 54, 52, 55, 43, 60, 93, 136, (1,90,188): 171, 188, 194, 192, 180, 184, 180, 154, 117, 98, 104, (1,90,199): 120, 125, 131, 140, 146, 146, 146, 144, 143, 137, 135, (1,90,210): 134, 136, 139, 142, 143, 142, 144, 144, 144, 144, 143, (1,90,221): 146, 148, 153, 161, 163, 163, (1,91,0): 52, 52, 49, 49, 50, 51, 52, 54, 59, 62, 65, 70, 74, 79, (1,91,14): 81, 83, 86, 90, 97, 108, 119, 130, 137, 143, 145, 144, (1,91,26): 139, 133, 127, 124, 124, 126, 131, 133, 136, 138, 136, (1,91,37): 133, 127, 125, 123, 118, 110, 102, 97, 93, 90, 91, 97, (1,91,49): 98, 95, 92, 89, 89, 90, 91, 86, 81, 81, 88, 91, 84, 71, (1,91,63): 63, 50, 53, 53, 54, 53, 53, 54, 56, 55, 56, 56, 57, 54, (1,91,77): 54, 51, 54, 54, 56, 55, 58, 62, 63, 59, 56, 52, 85, 60, (1,91,91): 56, 66, 53, 61, 61, 56, 56, 57, 58, 57, 55, 54, 51, 54, (1,91,105): 51, 50, 52, 58, 62, 63, 61, 52, 53, 54, 53, 50, 51, 55, (1,91,119): 60, 85, 98, 109, 105, 86, 65, 54, 52, 54, 55, 55, 56, (1,91,132): 56, 57, 57, 58, 55, 56, 56, 57, 56, 56, 56, 55, 53, 54, (1,91,146): 54, 57, 60, 60, 57, 57, 57, 59, 59, 60, 60, 61, 59, 60, (1,91,160): 58, 64, 56, 56, 59, 43, 53, 97, 85, 72, 62, 62, 73, 81, (1,91,174): 81, 85, 70, 70, 66, 67, 67, 61, 54, 50, 50, 70, 107, (1,91,187): 147, 172, 180, 184, 186, 187, 184, 167, 130, 95, 87, 99, (1,91,199): 114, 123, 131, 138, 145, 145, 145, 143, 142, 135, 134, (1,91,210): 135, 138, 141, 143, 145, 146, 145, 145, 146, 146, 145, (1,91,221): 147, 151, 156, 166, 166, 166, (1,92,0): 56, 56, 54, 54, 54, 54, 55, 56, 62, 64, 67, 71, 75, 78, (1,92,14): 80, 82, 85, 88, 95, 105, 115, 125, 134, 138, 146, 145, (1,92,26): 141, 135, 129, 125, 124, 124, 126, 129, 133, 134, 132, (1,92,37): 128, 122, 119, 115, 110, 101, 95, 91, 90, 89, 90, 96, 97, (1,92,50): 95, 92, 91, 90, 90, 90, 84, 81, 81, 86, 83, 72, 58, 52, (1,92,64): 49, 51, 53, 53, 51, 51, 53, 57, 56, 57, 58, 58, 56, 55, (1,92,78): 53, 55, 59, 58, 54, 56, 59, 61, 59, 55, 57, 92, 61, 53, (1,92,92): 65, 51, 58, 63, 58, 58, 58, 58, 59, 58, 56, 55, 51, 49, (1,92,106): 49, 55, 60, 62, 59, 55, 55, 59, 60, 54, 49, 53, 66, 77, (1,92,120): 120, 113, 96, 74, 56, 50, 55, 64, 57, 57, 55, 55, 54, (1,92,133): 55, 55, 55, 54, 55, 55, 56, 56, 56, 55, 55, 55, 55, 55, (1,92,147): 58, 61, 61, 59, 59, 56, 58, 59, 60, 60, 60, 59, 59, 59, (1,92,161): 61, 56, 57, 56, 48, 64, 105, 78, 72, 69, 73, 80, 85, 86, (1,92,175): 90, 75, 74, 68, 67, 67, 64, 66, 71, 85, 103, 129, 153, (1,92,188): 164, 169, 178, 185, 183, 167, 134, 99, 80, 83, 97, 108, (1,92,200): 123, 130, 138, 144, 146, 145, 144, 142, 135, 134, 138, (1,92,211): 140, 142, 144, 146, 147, 145, 146, 147, 147, 147, 150, (1,92,222): 154, 158, 167, 167, 167, (1,93,0): 61, 62, 61, 61, 61, 60, 61, 61, 66, 68, 71, 74, 76, 79, (1,93,14): 81, 82, 87, 90, 94, 101, 110, 121, 128, 133, 140, 140, (1,93,26): 138, 133, 127, 121, 119, 118, 119, 122, 125, 126, 125, (1,93,37): 121, 116, 114, 107, 102, 95, 91, 90, 90, 90, 91, 94, 95, (1,93,50): 94, 93, 93, 92, 92, 89, 94, 85, 77, 73, 64, 56, 50, 50, (1,93,64): 53, 54, 53, 52, 50, 52, 54, 59, 57, 59, 59, 59, 58, 57, (1,93,78): 55, 57, 62, 59, 53, 53, 57, 60, 59, 55, 63, 91, 73, 58, (1,93,92): 64, 54, 51, 60, 57, 55, 55, 55, 55, 55, 55, 55, 60, 58, (1,93,106): 57, 60, 62, 61, 56, 52, 57, 60, 58, 56, 62, 80, 98, 112, (1,93,120): 104, 84, 61, 49, 52, 59, 61, 59, 59, 58, 57, 56, 55, 55, (1,93,134): 53, 54, 54, 54, 55, 56, 56, 55, 55, 54, 56, 56, 56, 59, (1,93,148): 62, 62, 60, 60, 56, 58, 59, 59, 60, 59, 58, 58, 60, 57, (1,93,162): 59, 57, 54, 62, 84, 102, 76, 74, 76, 78, 83, 87, 92, 97, (1,93,176): 71, 74, 70, 62, 51, 54, 77, 102, 138, 148, 155, 154, (1,93,188): 155, 163, 173, 176, 149, 125, 96, 74, 70, 80, 95, 106, (1,93,200): 122, 130, 139, 145, 146, 145, 143, 142, 136, 137, 141, (1,93,211): 143, 143, 143, 145, 146, 148, 149, 150, 150, 151, 153, (1,93,222): 159, 162, 173, 172, 171, (1,94,0): 65, 66, 66, 67, 67, 67, 66, 67, 70, 72, 74, 77, 78, 81, (1,94,14): 82, 83, 90, 92, 93, 97, 104, 113, 122, 126, 130, 131, (1,94,26): 132, 129, 123, 115, 111, 109, 109, 111, 113, 115, 115, (1,94,37): 111, 107, 105, 97, 95, 92, 90, 91, 91, 92, 92, 92, 93, (1,94,50): 94, 95, 95, 96, 93, 89, 95, 79, 66, 59, 55, 50, 51, 53, (1,94,64): 55, 54, 52, 51, 52, 53, 55, 57, 58, 61, 61, 62, 60, 59, (1,94,78): 57, 59, 64, 60, 53, 51, 56, 60, 58, 53, 57, 78, 84, 66, (1,94,92): 66, 63, 49, 60, 60, 57, 55, 54, 55, 57, 59, 59, 68, 65, (1,94,106): 63, 62, 61, 59, 56, 56, 56, 57, 55, 59, 74, 92, 100, 99, (1,94,120): 61, 56, 52, 56, 65, 69, 61, 52, 59, 59, 57, 57, 56, 56, (1,94,134): 55, 55, 54, 55, 54, 56, 56, 55, 55, 54, 55, 54, 56, 59, (1,94,148): 62, 62, 60, 60, 56, 59, 59, 59, 59, 58, 58, 57, 62, 55, (1,94,162): 61, 57, 50, 80, 107, 93, 80, 75, 74, 77, 84, 93, 101, (1,94,175): 106, 75, 72, 63, 55, 53, 71, 111, 146, 178, 179, 165, (1,94,187): 146, 141, 150, 151, 140, 102, 84, 69, 66, 68, 74, 88, (1,94,199): 104, 124, 130, 139, 144, 147, 145, 145, 143, 139, 140, (1,94,210): 144, 145, 143, 142, 143, 145, 151, 153, 153, 154, 155, (1,94,221): 157, 163, 166, 175, 174, 172, (1,95,0): 67, 68, 69, 69, 71, 71, 70, 71, 72, 74, 76, 78, 80, 81, (1,95,14): 82, 84, 89, 90, 89, 91, 97, 107, 115, 120, 123, 125, 127, (1,95,27): 124, 119, 110, 105, 103, 102, 103, 104, 105, 105, 103, (1,95,38): 98, 96, 93, 92, 90, 91, 93, 94, 94, 93, 93, 93, 93, 93, (1,95,52): 93, 93, 91, 87, 84, 69, 57, 55, 56, 54, 54, 54, 54, 52, (1,95,66): 52, 52, 55, 55, 54, 54, 58, 60, 60, 61, 59, 59, 58, 60, (1,95,80): 65, 60, 51, 51, 57, 61, 59, 56, 50, 65, 91, 73, 68, 70, (1,95,94): 50, 63, 70, 66, 64, 63, 63, 66, 69, 71, 64, 61, 58, 54, (1,95,108): 54, 55, 57, 60, 63, 61, 58, 63, 77, 81, 64, 41, 45, 53, (1,95,122): 62, 65, 62, 59, 59, 61, 57, 57, 57, 56, 57, 58, 57, 58, (1,95,136): 56, 56, 56, 56, 57, 56, 55, 55, 54, 54, 56, 58, 61, 61, (1,95,150): 60, 59, 57, 59, 59, 59, 59, 59, 58, 58, 63, 53, 61, 56, (1,95,164): 47, 92, 122, 88, 89, 81, 77, 77, 87, 97, 104, 110, 84, (1,95,177): 72, 57, 59, 80, 116, 162, 193, 188, 184, 158, 130, 126, (1,95,189): 135, 125, 98, 68, 60, 61, 68, 69, 67, 80, 101, 123, 131, (1,95,202): 139, 145, 147, 146, 144, 142, 141, 143, 146, 147, 143, (1,95,213): 142, 143, 146, 155, 157, 157, 158, 158, 162, 166, 171, (1,95,224): 167, 165, 164, (1,96,0): 75, 75, 74, 74, 74, 74, 74, 75, 78, 79, 80, 81, 82, 84, (1,96,14): 85, 85, 91, 90, 89, 89, 93, 97, 102, 106, 110, 112, 115, (1,96,27): 115, 112, 106, 98, 93, 96, 95, 93, 90, 90, 89, 90, 90, (1,96,40): 91, 91, 92, 92, 92, 92, 93, 94, 98, 101, 90, 79, 87, 92, (1,96,54): 90, 91, 78, 70, 60, 56, 56, 56, 52, 49, 54, 55, 55, 55, (1,96,68): 55, 55, 54, 55, 56, 56, 57, 57, 57, 57, 56, 59, 59, 62, (1,96,82): 57, 49, 50, 57, 60, 57, 53, 53, 58, 67, 75, 72, 61, 50, (1,96,96): 80, 74, 70, 69, 73, 72, 68, 61, 55, 56, 58, 58, 57, 55, (1,96,110): 57, 61, 69, 65, 57, 50, 48, 52, 59, 63, 58, 61, 64, 64, (1,96,124): 62, 60, 57, 58, 56, 56, 56, 57, 57, 57, 57, 57, 52, 53, (1,96,138): 54, 55, 56, 57, 57, 57, 59, 57, 57, 61, 65, 66, 65, 63, (1,96,152): 58, 60, 61, 60, 58, 58, 56, 56, 65, 60, 47, 47, 76, 109, (1,96,166): 109, 86, 76, 78, 81, 85, 88, 93, 97, 106, 89, 75, 69, (1,96,179): 97, 141, 176, 188, 189, 181, 157, 128, 109, 100, 93, 80, (1,96,191): 68, 61, 67, 64, 62, 67, 67, 78, 100, 115, 131, 143, 147, (1,96,204): 146, 146, 147, 144, 144, 145, 147, 147, 146, 147, 150, (1,96,215): 152, 156, 158, 159, 161, 163, 167, 170, 170, 168, 155, (1,96,226): 145, (1,97,0): 78, 78, 78, 78, 78, 78, 78, 78, 79, 80, 80, 82, 83, 84, (1,97,14): 85, 86, 91, 90, 89, 89, 91, 95, 98, 100, 101, 103, 105, (1,97,27): 105, 102, 96, 91, 88, 91, 90, 86, 84, 84, 84, 86, 87, 90, (1,97,41): 90, 91, 92, 93, 94, 95, 95, 97, 103, 91, 83, 86, 88, 82, (1,97,55): 82, 73, 67, 61, 57, 56, 55, 52, 51, 54, 56, 56, 56, 55, (1,97,69): 56, 55, 55, 55, 55, 55, 55, 56, 56, 56, 58, 60, 62, 57, (1,97,83): 49, 50, 58, 62, 60, 58, 52, 52, 59, 69, 79, 81, 79, 70, (1,97,97): 65, 60, 59, 62, 62, 58, 53, 56, 56, 56, 56, 56, 58, 62, (1,97,111): 66, 64, 61, 57, 52, 52, 55, 60, 64, 64, 64, 65, 63, 58, (1,97,125): 56, 55, 56, 54, 54, 55, 56, 56, 57, 57, 58, 57, 58, 58, (1,97,139): 59, 59, 59, 57, 57, 58, 59, 60, 63, 65, 63, 61, 59, 59, (1,97,153): 61, 61, 60, 59, 58, 56, 58, 57, 56, 53, 60, 81, 101, 94, (1,97,167): 77, 78, 84, 89, 92, 94, 94, 95, 102, 95, 103, 114, 144, (1,97,180): 175, 190, 178, 160, 130, 117, 101, 88, 80, 72, 63, 56, (1,97,192): 60, 66, 63, 61, 65, 67, 77, 100, 116, 131, 144, 148, (1,97,204): 146, 148, 147, 145, 145, 146, 148, 148, 147, 148, 151, (1,97,215): 152, 157, 157, 160, 162, 166, 169, 169, 168, 152, 141, (1,97,226): 131, (1,98,0): 84, 84, 84, 84, 84, 84, 84, 84, 82, 83, 84, 85, 86, 87, (1,98,14): 88, 88, 93, 93, 91, 91, 91, 91, 93, 93, 93, 94, 95, 95, (1,98,28): 94, 91, 87, 86, 86, 84, 81, 78, 77, 79, 81, 82, 87, 87, (1,98,42): 89, 91, 92, 94, 96, 97, 96, 101, 94, 88, 91, 88, 74, 71, (1,98,56): 65, 63, 60, 56, 55, 57, 57, 57, 56, 55, 55, 57, 56, 55, (1,98,70): 55, 55, 55, 55, 55, 56, 56, 56, 57, 59, 62, 62, 58, 50, (1,98,84): 51, 58, 62, 62, 63, 56, 50, 52, 60, 70, 77, 78, 59, 53, (1,98,98): 51, 53, 58, 63, 62, 60, 57, 54, 51, 51, 54, 57, 60, 64, (1,98,112): 55, 56, 53, 52, 52, 55, 59, 61, 68, 67, 66, 63, 58, 56, (1,98,126): 54, 55, 54, 54, 54, 55, 55, 57, 57, 58, 58, 59, 59, 60, (1,98,140): 59, 58, 57, 56, 57, 60, 64, 66, 63, 58, 55, 55, 59, 60, (1,98,154): 60, 59, 58, 57, 55, 57, 54, 54, 57, 70, 83, 87, 80, 73, (1,98,168): 77, 83, 89, 94, 97, 97, 95, 101, 114, 141, 166, 185, (1,98,180): 192, 179, 144, 111, 82, 83, 80, 76, 67, 60, 57, 56, 59, (1,98,193): 65, 63, 60, 65, 66, 77, 99, 118, 133, 146, 150, 148, (1,98,205): 150, 149, 148, 148, 149, 150, 150, 148, 149, 151, 153, (1,98,216): 157, 157, 159, 164, 169, 170, 166, 160, 137, 127, 120, (1,99,0): 88, 88, 88, 88, 88, 88, 88, 88, 86, 87, 87, 88, 89, 90, (1,99,14): 91, 91, 93, 94, 94, 95, 94, 92, 92, 92, 93, 93, 93, 94, (1,99,28): 93, 91, 90, 91, 89, 86, 82, 78, 76, 77, 78, 79, 81, 84, (1,99,42): 86, 88, 90, 93, 95, 97, 97, 99, 91, 91, 98, 91, 71, 61, (1,99,56): 61, 60, 58, 57, 56, 57, 61, 62, 57, 55, 56, 57, 56, 56, (1,99,70): 56, 55, 55, 56, 56, 56, 56, 56, 57, 59, 63, 62, 57, 51, (1,99,84): 51, 56, 61, 64, 63, 58, 55, 53, 55, 58, 60, 58, 55, 50, (1,99,98): 50, 52, 56, 60, 62, 61, 56, 52, 49, 50, 54, 56, 55, 55, (1,99,112): 51, 54, 53, 54, 54, 56, 58, 58, 65, 66, 66, 64, 60, 58, (1,99,126): 56, 56, 54, 55, 55, 56, 56, 57, 58, 59, 57, 58, 58, 59, (1,99,140): 58, 58, 57, 57, 60, 64, 67, 65, 59, 54, 54, 55, 59, 59, (1,99,154): 59, 59, 58, 56, 55, 57, 61, 53, 53, 69, 80, 77, 76, 81, (1,99,168): 80, 85, 90, 94, 97, 97, 97, 103, 133, 169, 189, 184, (1,99,180): 161, 134, 96, 65, 62, 66, 70, 70, 65, 61, 61, 61, 57, (1,99,193): 64, 62, 60, 64, 66, 76, 98, 119, 134, 147, 151, 150, (1,99,205): 152, 151, 151, 151, 152, 152, 151, 150, 150, 153, 155, (1,99,216): 158, 159, 163, 168, 172, 167, 157, 146, 132, 123, 118, (1,100,0): 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 91, 91, 92, 93, (1,100,14): 93, 93, 94, 95, 96, 97, 97, 96, 95, 94, 96, 96, 96, 95, (1,100,28): 95, 96, 96, 97, 94, 90, 85, 80, 77, 75, 75, 75, 77, 79, (1,100,42): 81, 83, 87, 90, 92, 92, 96, 93, 85, 91, 105, 100, 79, (1,100,55): 67, 61, 58, 57, 56, 56, 60, 65, 65, 58, 55, 56, 58, 57, (1,100,69): 57, 57, 56, 56, 56, 56, 57, 57, 57, 57, 59, 63, 62, 58, (1,100,83): 54, 52, 55, 61, 66, 59, 59, 58, 57, 56, 58, 60, 59, 58, (1,100,97): 53, 51, 51, 53, 53, 52, 51, 54, 53, 52, 56, 57, 56, 51, (1,100,111): 48, 53, 57, 57, 58, 58, 58, 56, 55, 58, 59, 63, 64, 62, (1,100,125): 60, 58, 57, 55, 54, 54, 55, 56, 58, 58, 60, 58, 59, 60, (1,100,139): 61, 61, 62, 61, 62, 64, 66, 66, 61, 55, 53, 55, 58, 59, (1,100,153): 60, 59, 58, 57, 56, 55, 56, 64, 52, 51, 71, 81, 78, 78, (1,100,167): 87, 85, 88, 90, 92, 93, 96, 97, 104, 137, 165, 169, (1,100,179): 142, 107, 83, 64, 50, 58, 59, 61, 63, 63, 63, 59, 58, (1,100,192): 57, 63, 61, 59, 63, 65, 75, 98, 120, 135, 148, 152, (1,100,204): 151, 154, 153, 153, 154, 154, 154, 153, 151, 152, 155, (1,100,215): 158, 160, 162, 167, 169, 168, 159, 146, 134, 133, 124, (1,100,226): 120, (1,101,0): 92, 92, 92, 92, 92, 92, 92, 92, 92, 93, 93, 93, 94, 94, (1,101,14): 95, 95, 95, 96, 97, 98, 98, 98, 97, 97, 97, 97, 96, 96, (1,101,28): 96, 96, 97, 98, 95, 93, 88, 82, 77, 74, 72, 72, 74, 75, (1,101,42): 77, 79, 81, 84, 86, 85, 88, 85, 80, 87, 104, 102, 88, (1,101,55): 83, 65, 60, 57, 56, 58, 62, 66, 64, 59, 55, 56, 57, 57, (1,101,69): 57, 57, 56, 56, 57, 57, 57, 57, 57, 57, 59, 63, 61, 60, (1,101,83): 57, 54, 53, 59, 65, 66, 64, 59, 55, 50, 52, 59, 61, 54, (1,101,97): 52, 55, 57, 59, 59, 59, 58, 53, 55, 57, 61, 61, 58, 51, (1,101,111): 48, 57, 61, 61, 62, 61, 60, 58, 56, 54, 56, 59, 62, 61, (1,101,125): 60, 59, 59, 56, 55, 55, 56, 58, 59, 60, 61, 62, 63, 65, (1,101,139): 65, 65, 65, 64, 66, 63, 64, 61, 56, 53, 53, 56, 60, 60, (1,101,153): 60, 60, 58, 57, 55, 54, 54, 58, 51, 57, 79, 89, 82, 79, (1,101,167): 86, 89, 91, 90, 91, 92, 95, 96, 103, 120, 131, 124, 96, (1,101,180): 69, 59, 59, 60, 61, 60, 60, 63, 65, 65, 60, 55, 57, 63, (1,101,194): 60, 58, 62, 64, 74, 97, 120, 135, 148, 153, 152, 154, (1,101,206): 154, 154, 154, 156, 155, 153, 153, 155, 158, 161, 165, (1,101,217): 167, 168, 166, 159, 148, 138, 130, 134, 126, 121, (1,102,0): 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 94, 95, 95, 95, (1,102,14): 95, 96, 97, 98, 98, 98, 96, 96, 97, 97, 97, 96, 96, 96, (1,102,28): 96, 97, 97, 97, 95, 94, 91, 87, 82, 77, 73, 72, 72, 72, (1,102,42): 74, 75, 76, 77, 79, 78, 80, 81, 78, 82, 89, 87, 84, 91, (1,102,56): 75, 65, 57, 55, 59, 62, 64, 60, 58, 55, 56, 58, 57, 58, (1,102,70): 58, 58, 57, 58, 58, 58, 58, 58, 58, 59, 61, 61, 61, 60, (1,102,84): 56, 52, 57, 65, 67, 65, 61, 54, 47, 48, 54, 58, 53, 54, (1,102,98): 59, 64, 66, 66, 64, 63, 50, 55, 58, 62, 60, 56, 53, 53, (1,102,112): 60, 62, 62, 63, 62, 61, 59, 58, 55, 56, 56, 57, 56, 58, (1,102,126): 61, 63, 58, 57, 57, 58, 59, 59, 61, 62, 66, 67, 67, 66, (1,102,140): 65, 63, 61, 62, 60, 58, 56, 54, 55, 56, 58, 58, 61, 60, (1,102,154): 60, 58, 57, 55, 54, 54, 51, 53, 66, 85, 87, 80, 80, 90, (1,102,168): 89, 90, 92, 92, 91, 92, 91, 98, 98, 96, 83, 71, 63, 61, (1,102,182): 62, 63, 61, 63, 66, 70, 71, 68, 62, 57, 56, 62, 60, 58, (1,102,196): 62, 63, 74, 96, 119, 135, 148, 153, 152, 155, 154, 154, (1,102,208): 155, 157, 156, 155, 154, 157, 161, 165, 171, 169, 165, (1,102,219): 156, 145, 137, 135, 136, 136, 128, 121, (1,103,0): 95, 95, 95, 95, 95, 95, 95, 95, 94, 95, 95, 95, 95, 95, (1,103,14): 96, 96, 100, 99, 97, 96, 95, 94, 94, 96, 97, 97, 97, 97, (1,103,28): 96, 96, 97, 96, 97, 95, 94, 91, 87, 82, 77, 76, 70, 71, (1,103,42): 72, 72, 73, 75, 75, 74, 74, 80, 79, 76, 75, 69, 74, 91, (1,103,56): 83, 70, 59, 55, 59, 61, 60, 55, 58, 56, 57, 59, 59, 59, (1,103,70): 59, 59, 58, 58, 58, 58, 58, 58, 58, 59, 59, 58, 60, 62, (1,103,84): 57, 51, 55, 63, 57, 59, 62, 60, 56, 55, 60, 63, 61, 63, (1,103,98): 67, 68, 64, 59, 53, 49, 48, 54, 58, 60, 58, 57, 56, 58, (1,103,112): 61, 62, 63, 64, 64, 64, 62, 61, 59, 58, 55, 54, 53, 57, (1,103,126): 63, 67, 60, 59, 59, 60, 60, 61, 62, 64, 68, 68, 67, 65, (1,103,140): 63, 59, 56, 57, 55, 56, 53, 54, 58, 60, 58, 56, 61, 60, (1,103,154): 60, 60, 58, 56, 54, 54, 49, 56, 71, 83, 80, 76, 82, 95, (1,103,168): 87, 89, 91, 93, 93, 92, 89, 94, 88, 77, 64, 65, 71, 69, (1,103,182): 61, 55, 56, 62, 69, 74, 73, 67, 62, 58, 56, 62, 59, 57, (1,103,196): 62, 63, 73, 96, 119, 134, 148, 152, 152, 155, 154, 154, (1,103,208): 156, 156, 156, 155, 155, 158, 163, 167, 173, 171, 163, (1,103,219): 149, 135, 131, 136, 143, 138, 129, 122, (1,104,0): 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, (1,104,14): 96, 95, 96, 96, 96, 96, 96, 96, 96, 97, 97, 97, 97, 98, (1,104,28): 98, 98, 98, 98, 95, 95, 94, 95, 93, 88, 80, 76, 73, 72, (1,104,42): 69, 68, 69, 71, 71, 69, 74, 75, 68, 74, 81, 70, 75, 107, (1,104,56): 104, 86, 71, 65, 64, 61, 59, 59, 51, 53, 54, 55, 55, 56, (1,104,70): 59, 61, 60, 60, 60, 60, 59, 59, 59, 60, 50, 55, 59, 58, (1,104,84): 55, 53, 55, 57, 65, 59, 54, 52, 54, 60, 67, 72, 68, 69, (1,104,98): 67, 58, 54, 56, 55, 52, 57, 57, 56, 56, 57, 58, 60, 60, (1,104,112): 61, 61, 62, 63, 64, 65, 66, 64, 59, 58, 55, 54, 54, 56, (1,104,126): 58, 60, 61, 61, 63, 65, 65, 66, 64, 64, 72, 69, 65, 59, (1,104,140): 53, 51, 49, 50, 57, 59, 57, 58, 58, 59, 59, 60, 57, 56, (1,104,154): 57, 57, 57, 56, 54, 51, 45, 65, 79, 77, 76, 81, 85, 82, (1,104,168): 92, 92, 85, 84, 90, 88, 87, 103, 84, 81, 75, 75, 72, (1,104,181): 64, 61, 63, 60, 80, 94, 91, 79, 70, 65, 61, 59, 63, 61, (1,104,195): 61, 63, 61, 72, 98, 121, 136, 148, 151, 150, 153, 154, (1,104,207): 155, 157, 158, 159, 159, 159, 162, 167, 170, 173, 163, (1,104,218): 147, 137, 135, 137, 142, 144, 137, 128, 121, (1,105,0): 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, (1,105,14): 96, 95, 95, 95, 95, 95, 95, 96, 96, 96, 96, 97, 97, 97, (1,105,28): 97, 97, 97, 97, 96, 96, 95, 95, 93, 89, 82, 78, 74, 72, (1,105,42): 68, 68, 69, 70, 70, 69, 70, 67, 69, 76, 73, 65, 82, 117, (1,105,56): 100, 96, 86, 72, 64, 64, 62, 56, 57, 61, 61, 62, 59, 59, (1,105,70): 57, 58, 58, 58, 58, 58, 58, 58, 58, 59, 63, 66, 66, 61, (1,105,84): 54, 49, 49, 50, 53, 54, 59, 65, 69, 73, 74, 75, 66, 69, (1,105,98): 66, 59, 57, 61, 63, 61, 63, 62, 62, 61, 61, 62, 64, 63, (1,105,112): 61, 60, 60, 62, 63, 63, 63, 62, 64, 61, 58, 56, 55, 56, (1,105,126): 57, 56, 60, 60, 63, 65, 67, 67, 68, 69, 66, 65, 61, 58, (1,105,140): 54, 53, 52, 55, 58, 61, 59, 59, 58, 59, 60, 60, 59, 59, (1,105,154): 57, 58, 57, 56, 54, 52, 52, 68, 78, 75, 74, 81, 84, 82, (1,105,168): 83, 88, 85, 86, 93, 87, 83, 99, 87, 99, 106, 102, 84, (1,105,181): 67, 64, 72, 88, 98, 102, 92, 78, 69, 63, 60, 58, 62, (1,105,194): 60, 60, 64, 62, 72, 98, 122, 136, 148, 152, 150, 154, (1,105,206): 154, 155, 160, 159, 157, 158, 160, 164, 167, 170, 166, (1,105,217): 154, 140, 134, 137, 141, 141, 139, 137, 128, 121, (1,106,0): 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, 96, (1,106,14): 96, 95, 95, 94, 94, 95, 95, 96, 96, 96, 96, 96, 96, 96, (1,106,28): 96, 96, 96, 96, 97, 96, 97, 97, 95, 92, 86, 82, 75, 73, (1,106,42): 70, 69, 69, 70, 68, 67, 69, 62, 71, 75, 63, 64, 92, 116, (1,106,56): 87, 100, 101, 84, 70, 71, 66, 57, 55, 58, 58, 58, 57, (1,106,69): 56, 54, 54, 56, 55, 55, 55, 55, 56, 56, 56, 51, 53, 54, (1,106,83): 51, 48, 47, 49, 51, 65, 67, 71, 76, 76, 74, 70, 68, 66, (1,106,97): 67, 63, 59, 60, 65, 69, 69, 68, 67, 66, 65, 64, 65, 65, (1,106,111): 64, 59, 59, 58, 60, 60, 60, 61, 60, 63, 60, 59, 56, 56, (1,106,125): 56, 58, 57, 57, 57, 59, 62, 63, 65, 65, 65, 59, 58, 56, (1,106,139): 55, 54, 54, 55, 58, 59, 60, 59, 59, 58, 59, 59, 60, 59, (1,106,153): 59, 59, 57, 56, 55, 54, 52, 59, 70, 78, 74, 72, 79, 83, (1,106,167): 82, 79, 84, 83, 86, 93, 89, 91, 108, 125, 137, 139, (1,106,179): 120, 88, 68, 74, 90, 113, 111, 101, 85, 73, 67, 64, 60, (1,106,192): 57, 60, 58, 60, 65, 63, 73, 98, 122, 137, 149, 152, (1,106,204): 151, 154, 154, 154, 162, 160, 157, 159, 164, 167, 168, (1,106,215): 167, 153, 143, 132, 132, 140, 144, 141, 133, 136, 127, (1,106,226): 120, (1,107,0): 96, 96, 96, 96, 96, 96, 96, 96, 97, 97, 97, 97, 97, 97, (1,107,14): 97, 96, 96, 95, 96, 96, 96, 97, 97, 97, 97, 97, 97, 97, (1,107,28): 97, 97, 97, 97, 98, 98, 98, 98, 97, 94, 90, 86, 79, 75, (1,107,42): 72, 70, 69, 68, 68, 66, 70, 65, 73, 70, 59, 78, 100, 96, (1,107,56): 66, 84, 100, 95, 83, 74, 68, 64, 56, 57, 55, 55, 56, 58, (1,107,70): 59, 58, 62, 62, 62, 62, 63, 63, 63, 62, 63, 66, 68, 70, (1,107,84): 70, 73, 77, 80, 83, 80, 77, 73, 71, 67, 65, 65, 69, 67, (1,107,98): 62, 59, 61, 66, 70, 73, 69, 69, 66, 66, 64, 64, 64, 63, (1,107,112): 59, 57, 58, 59, 59, 60, 59, 59, 58, 57, 55, 55, 56, 58, (1,107,126): 59, 59, 58, 56, 57, 58, 58, 58, 57, 56, 55, 55, 54, 54, (1,107,140): 55, 56, 57, 60, 60, 60, 59, 57, 58, 57, 58, 59, 58, 59, (1,107,154): 59, 57, 56, 54, 55, 53, 68, 72, 75, 72, 73, 79, 84, 84, (1,107,168): 81, 84, 81, 83, 92, 95, 104, 126, 148, 146, 130, 104, (1,107,180): 82, 79, 96, 114, 116, 105, 88, 76, 69, 66, 65, 61, 56, (1,107,193): 59, 57, 60, 65, 64, 73, 97, 120, 136, 149, 153, 152, (1,107,205): 155, 154, 155, 160, 158, 158, 162, 168, 170, 165, 160, (1,107,216): 140, 135, 131, 135, 142, 145, 141, 135, 135, 126, 119, (1,108,0): 96, 96, 96, 96, 96, 96, 96, 96, 97, 97, 97, 97, 97, 97, (1,108,14): 97, 96, 96, 96, 96, 97, 97, 97, 98, 98, 98, 98, 98, 97, (1,108,28): 97, 97, 97, 97, 99, 98, 98, 98, 98, 97, 93, 90, 82, 79, (1,108,42): 75, 71, 69, 69, 67, 66, 72, 70, 71, 62, 62, 90, 96, 63, (1,108,56): 52, 64, 89, 106, 101, 82, 73, 77, 73, 70, 64, 62, 64, (1,108,69): 68, 71, 71, 74, 74, 74, 74, 75, 75, 75, 75, 83, 84, 83, (1,108,83): 82, 83, 83, 85, 85, 76, 73, 69, 67, 66, 67, 69, 70, 73, (1,108,97): 68, 61, 60, 62, 66, 68, 71, 68, 66, 65, 63, 62, 62, 62, (1,108,111): 62, 59, 58, 58, 58, 61, 60, 60, 59, 57, 56, 56, 56, 57, (1,108,125): 58, 58, 58, 59, 57, 57, 58, 57, 56, 56, 56, 56, 56, 56, (1,108,139): 56, 57, 58, 58, 59, 58, 58, 57, 56, 56, 55, 56, 57, 56, (1,108,153): 57, 58, 56, 53, 53, 55, 57, 72, 73, 73, 73, 75, 82, 87, (1,108,167): 88, 81, 85, 82, 86, 96, 98, 103, 122, 114, 105, 89, 82, (1,108,180): 90, 105, 118, 124, 105, 91, 76, 68, 68, 67, 65, 61, 57, (1,108,193): 59, 56, 59, 66, 64, 72, 94, 117, 133, 147, 152, 152, (1,108,205): 155, 155, 156, 157, 158, 161, 168, 170, 168, 157, 147, (1,108,216): 131, 132, 136, 140, 142, 142, 141, 138, 134, 123, 116, (1,109,0): 96, 96, 96, 96, 96, 96, 96, 96, 98, 98, 98, 98, 98, 98, (1,109,14): 98, 97, 98, 98, 98, 98, 98, 99, 99, 100, 100, 100, 99, (1,109,27): 99, 98, 98, 98, 98, 99, 98, 98, 99, 99, 98, 96, 93, 87, (1,109,41): 83, 77, 74, 72, 69, 66, 65, 71, 70, 66, 61, 69, 89, 79, (1,109,55): 46, 60, 62, 84, 112, 118, 100, 88, 93, 85, 80, 71, 67, (1,109,68): 68, 71, 71, 71, 72, 74, 72, 74, 74, 75, 75, 75, 72, 71, (1,109,82): 72, 71, 72, 72, 71, 70, 66, 65, 66, 66, 67, 66, 65, 65, (1,109,96): 73, 66, 59, 61, 63, 64, 65, 67, 64, 64, 62, 60, 60, 59, (1,109,110): 59, 60, 60, 61, 60, 61, 61, 61, 61, 61, 60, 60, 59, 57, (1,109,124): 57, 56, 55, 54, 57, 56, 57, 58, 59, 61, 60, 62, 57, 57, (1,109,138): 58, 58, 59, 59, 59, 58, 58, 57, 55, 54, 53, 53, 53, 54, (1,109,152): 54, 56, 57, 56, 52, 53, 58, 60, 77, 75, 74, 77, 81, 86, (1,109,166): 88, 87, 78, 84, 86, 92, 101, 94, 86, 94, 79, 78, 79, (1,109,179): 92, 114, 126, 120, 106, 95, 81, 69, 68, 70, 68, 62, 59, (1,109,192): 58, 59, 56, 59, 66, 64, 70, 91, 113, 129, 145, 151, (1,109,204): 151, 155, 155, 156, 156, 160, 164, 168, 168, 160, 147, (1,109,215): 138, 129, 134, 140, 142, 141, 141, 140, 140, 132, 122, (1,109,226): 115, (1,110,0): 96, 96, 96, 96, 96, 96, 96, 96, 98, 98, 98, 98, 98, 98, (1,110,14): 98, 98, 98, 98, 98, 99, 99, 100, 100, 100, 100, 100, (1,110,26): 100, 100, 99, 99, 98, 98, 99, 97, 98, 99, 100, 99, 96, (1,110,39): 95, 91, 87, 81, 76, 73, 71, 67, 67, 70, 69, 64, 70, 80, (1,110,53): 72, 57, 52, 67, 65, 75, 98, 113, 109, 97, 89, 81, 76, (1,110,66): 68, 66, 68, 69, 66, 64, 67, 67, 67, 68, 67, 68, 69, 68, (1,110,80): 65, 65, 68, 71, 73, 74, 73, 71, 65, 65, 66, 66, 65, 64, (1,110,94): 61, 60, 69, 60, 54, 58, 62, 61, 61, 63, 60, 59, 58, 57, (1,110,108): 56, 56, 57, 58, 60, 61, 61, 61, 61, 61, 61, 60, 60, 61, (1,110,122): 60, 58, 57, 56, 54, 54, 57, 57, 57, 57, 57, 59, 60, 61, (1,110,136): 57, 58, 58, 59, 59, 60, 59, 59, 56, 56, 54, 53, 52, 52, (1,110,150): 52, 53, 50, 54, 56, 54, 51, 53, 58, 64, 80, 78, 78, 81, (1,110,164): 86, 88, 85, 82, 79, 84, 84, 92, 102, 91, 75, 75, 78, (1,110,177): 90, 103, 114, 121, 122, 108, 93, 86, 72, 64, 66, 70, (1,110,189): 68, 61, 58, 59, 60, 56, 60, 67, 64, 68, 88, 108, 125, (1,110,202): 142, 149, 151, 155, 156, 157, 158, 162, 166, 166, 161, (1,110,213): 151, 140, 133, 134, 136, 138, 140, 141, 142, 139, 137, (1,110,224): 131, 121, 114, (1,111,0): 96, 96, 96, 96, 96, 96, 96, 96, 98, 98, 98, 98, 98, 98, (1,111,14): 98, 98, 98, 99, 99, 99, 100, 100, 100, 100, 100, 100, (1,111,26): 100, 100, 99, 99, 99, 99, 98, 97, 97, 97, 100, 99, 97, (1,111,39): 96, 93, 89, 83, 78, 75, 72, 68, 67, 69, 67, 65, 83, 92, (1,111,53): 63, 49, 74, 64, 61, 59, 71, 90, 101, 88, 71, 74, 69, 66, (1,111,67): 67, 71, 71, 67, 62, 68, 68, 68, 69, 69, 69, 67, 68, 63, (1,111,81): 64, 66, 69, 71, 70, 66, 62, 66, 64, 62, 61, 62, 64, 67, (1,111,95): 69, 65, 56, 52, 58, 62, 61, 60, 63, 59, 58, 58, 56, 55, (1,111,109): 55, 56, 59, 58, 59, 59, 60, 60, 60, 60, 60, 56, 57, 58, (1,111,123): 58, 59, 59, 57, 57, 58, 57, 55, 55, 54, 53, 55, 55, 56, (1,111,137): 57, 59, 60, 60, 61, 60, 59, 57, 55, 54, 53, 52, 52, 52, (1,111,151): 53, 50, 53, 56, 54, 52, 53, 59, 66, 85, 80, 79, 83, 87, (1,111,165): 86, 82, 78, 84, 85, 82, 88, 100, 90, 75, 74, 88, 107, (1,111,178): 120, 120, 110, 104, 99, 95, 76, 63, 57, 62, 67, 66, 60, (1,111,191): 60, 61, 61, 57, 60, 67, 63, 66, 85, 104, 122, 138, 147, (1,111,204): 150, 154, 157, 157, 160, 163, 164, 162, 154, 144, 136, (1,111,215): 131, 140, 137, 135, 138, 141, 142, 138, 133, 131, 121, (1,111,226): 114, (1,112,0): 96, 96, 96, 97, 97, 98, 98, 98, 97, 97, 97, 97, 97, 97, (1,112,14): 97, 97, 98, 98, 98, 98, 98, 98, 98, 98, 99, 99, 99, 99, (1,112,28): 99, 99, 99, 98, 93, 96, 100, 100, 98, 96, 96, 98, 97, (1,112,41): 97, 93, 86, 81, 78, 72, 65, 70, 62, 73, 103, 120, 108, (1,112,54): 89, 79, 66, 66, 68, 70, 72, 74, 75, 75, 69, 69, 70, 72, (1,112,68): 70, 68, 67, 70, 68, 69, 69, 68, 67, 66, 63, 61, 66, 67, (1,112,82): 67, 68, 68, 70, 70, 69, 67, 66, 64, 63, 63, 63, 63, 66, (1,112,96): 66, 62, 57, 55, 57, 61, 62, 62, 63, 63, 61, 59, 57, 56, (1,112,110): 56, 57, 59, 60, 60, 60, 59, 58, 58, 58, 58, 58, 58, 58, (1,112,124): 58, 58, 58, 58, 57, 57, 56, 56, 55, 55, 55, 56, 56, 56, (1,112,138): 57, 56, 57, 56, 56, 56, 56, 56, 55, 56, 54, 54, 53, 53, (1,112,152): 49, 54, 52, 51, 54, 52, 56, 73, 83, 83, 82, 82, 80, 81, (1,112,166): 81, 82, 84, 84, 91, 99, 95, 85, 86, 95, 126, 120, 111, (1,112,179): 106, 103, 98, 89, 82, 68, 62, 58, 59, 62, 66, 64, 62, (1,112,192): 56, 57, 58, 58, 61, 63, 66, 69, 95, 114, 134, 145, 149, (1,112,205): 154, 157, 157, 158, 167, 167, 152, 138, 134, 134, 132, (1,112,216): 134, 136, 138, 141, 140, 138, 135, 132, 130, 118, 109, (1,113,0): 96, 96, 96, 97, 97, 98, 98, 98, 97, 97, 97, 97, 97, 97, (1,113,14): 97, 97, 98, 98, 98, 98, 98, 98, 98, 98, 99, 99, 99, 99, (1,113,28): 99, 99, 99, 98, 98, 97, 98, 99, 102, 103, 101, 100, 99, (1,113,41): 104, 105, 103, 99, 94, 85, 76, 74, 62, 63, 80, 88, 78, (1,113,54): 69, 68, 87, 84, 81, 80, 78, 77, 76, 76, 85, 73, 62, 61, (1,113,68): 67, 70, 66, 62, 68, 68, 70, 69, 69, 66, 64, 63, 67, 67, (1,113,82): 67, 69, 69, 70, 70, 70, 69, 67, 66, 65, 64, 64, 64, 66, (1,113,96): 68, 67, 62, 58, 57, 58, 60, 60, 65, 64, 62, 60, 58, 57, (1,113,110): 56, 57, 59, 60, 59, 59, 59, 58, 58, 58, 57, 57, 57, 57, (1,113,124): 58, 58, 58, 58, 57, 57, 57, 57, 57, 57, 57, 57, 57, 58, (1,113,138): 58, 57, 57, 57, 57, 57, 56, 56, 56, 55, 54, 54, 54, 54, (1,113,152): 49, 55, 52, 51, 54, 51, 55, 72, 82, 83, 81, 80, 81, 80, (1,113,166): 81, 83, 79, 83, 91, 101, 105, 107, 113, 120, 116, 110, (1,113,178): 102, 97, 95, 92, 86, 80, 70, 64, 59, 58, 61, 64, 62, (1,113,191): 61, 58, 59, 59, 60, 60, 63, 65, 68, 91, 109, 129, 140, (1,113,204): 147, 153, 157, 158, 159, 162, 158, 145, 134, 131, 131, (1,113,215): 130, 134, 135, 137, 139, 138, 136, 134, 132, 127, 116, (1,113,226): 107, (1,114,0): 96, 96, 96, 97, 97, 98, 98, 98, 97, 97, 97, 97, 97, 97, (1,114,14): 97, 97, 98, 98, 98, 98, 98, 98, 98, 98, 99, 99, 99, 99, (1,114,28): 99, 99, 99, 98, 100, 95, 93, 95, 101, 103, 100, 98, 98, (1,114,41): 108, 120, 123, 121, 117, 105, 96, 84, 70, 62, 66, 64, (1,114,53): 56, 55, 61, 55, 57, 59, 64, 73, 80, 88, 91, 94, 84, 72, (1,114,67): 67, 68, 71, 68, 64, 65, 66, 68, 70, 70, 69, 68, 68, 68, (1,114,81): 68, 68, 69, 69, 70, 69, 69, 68, 68, 68, 67, 66, 66, 66, (1,114,95): 67, 69, 69, 66, 62, 58, 56, 57, 59, 64, 64, 62, 61, 58, (1,114,109): 57, 56, 58, 59, 59, 59, 59, 58, 58, 58, 58, 57, 57, 58, (1,114,123): 58, 58, 58, 58, 58, 57, 57, 57, 57, 57, 56, 56, 56, 59, (1,114,137): 59, 58, 59, 58, 58, 58, 58, 56, 56, 55, 55, 54, 53, 53, (1,114,151): 53, 49, 54, 52, 50, 54, 51, 55, 71, 80, 80, 80, 81, 82, (1,114,165): 83, 85, 86, 87, 91, 94, 98, 105, 114, 119, 119, 101, (1,114,177): 95, 89, 85, 86, 86, 84, 82, 73, 68, 62, 59, 60, 62, 61, (1,114,191): 59, 60, 61, 60, 60, 60, 62, 64, 67, 87, 105, 124, 136, (1,114,204): 145, 153, 159, 159, 161, 157, 148, 137, 130, 130, 130, (1,114,215): 128, 133, 135, 136, 138, 137, 135, 133, 131, 125, 113, (1,114,226): 103, (1,115,0): 96, 96, 96, 97, 97, 98, 98, 98, 97, 97, 97, 97, 97, 97, (1,115,14): 97, 97, 98, 98, 98, 98, 98, 98, 98, 98, 99, 99, 99, 99, (1,115,28): 99, 99, 99, 98, 100, 97, 95, 95, 97, 99, 101, 102, 102, (1,115,41): 116, 132, 141, 143, 140, 130, 122, 99, 84, 71, 69, 67, (1,115,53): 61, 60, 67, 57, 54, 52, 53, 54, 57, 61, 61, 76, 83, 86, (1,115,67): 79, 70, 66, 68, 70, 64, 65, 66, 68, 69, 69, 69, 69, 68, (1,115,81): 69, 69, 69, 69, 69, 69, 71, 70, 69, 68, 68, 67, 67, 68, (1,115,95): 68, 67, 70, 70, 65, 59, 56, 57, 60, 64, 64, 63, 61, 58, (1,115,109): 58, 57, 58, 58, 59, 59, 58, 58, 58, 57, 57, 57, 57, 58, (1,115,123): 58, 58, 58, 58, 58, 57, 57, 57, 56, 56, 56, 56, 56, 59, (1,115,137): 59, 59, 59, 58, 58, 58, 58, 55, 55, 55, 54, 53, 53, 53, (1,115,151): 52, 49, 54, 51, 50, 53, 50, 54, 70, 79, 79, 80, 82, 83, (1,115,165): 86, 87, 90, 93, 97, 95, 90, 95, 104, 102, 93, 85, 81, (1,115,178): 77, 75, 77, 81, 82, 83, 76, 71, 65, 61, 61, 61, 60, 59, (1,115,192): 61, 61, 59, 60, 60, 61, 63, 65, 83, 101, 120, 134, 145, (1,115,205): 155, 161, 162, 162, 152, 139, 130, 128, 130, 130, 128, (1,115,216): 133, 134, 135, 136, 135, 134, 132, 131, 124, 111, 102, (1,116,0): 97, 97, 97, 98, 98, 99, 99, 99, 98, 98, 98, 98, 98, 98, (1,116,14): 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 99, 99, 99, 99, (1,116,28): 99, 99, 99, 99, 102, 104, 103, 99, 97, 101, 110, 119, (1,116,40): 126, 141, 157, 165, 167, 164, 157, 150, 123, 102, 82, (1,116,51): 74, 72, 69, 69, 72, 76, 72, 68, 62, 57, 55, 54, 52, 53, (1,116,65): 66, 79, 79, 73, 71, 69, 66, 64, 65, 66, 67, 69, 69, 69, (1,116,79): 69, 69, 68, 68, 69, 69, 69, 69, 69, 70, 69, 70, 69, 69, (1,116,93): 69, 69, 70, 65, 67, 69, 66, 62, 57, 59, 60, 63, 63, 62, (1,116,107): 61, 59, 58, 58, 59, 58, 59, 58, 58, 58, 57, 57, 57, 58, (1,116,121): 58, 58, 58, 58, 58, 58, 58, 57, 58, 57, 57, 57, 56, 56, (1,116,135): 55, 58, 58, 57, 58, 58, 57, 57, 58, 55, 54, 54, 53, 52, (1,116,149): 51, 51, 52, 49, 55, 52, 50, 52, 50, 54, 68, 78, 78, 81, (1,116,163): 84, 85, 87, 89, 91, 89, 92, 90, 85, 88, 94, 89, 75, 72, (1,116,177): 69, 66, 65, 68, 73, 76, 78, 75, 72, 69, 65, 63, 62, 60, (1,116,191): 58, 60, 60, 59, 59, 59, 60, 62, 64, 80, 97, 118, 133, (1,116,204): 146, 157, 163, 163, 159, 145, 131, 125, 126, 129, 129, (1,116,215): 128, 131, 132, 133, 133, 132, 131, 130, 129, 124, 112, (1,116,226): 102, (1,117,0): 97, 97, 97, 98, 98, 99, 99, 99, 98, 98, 98, 98, 98, 98, (1,117,14): 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 99, 99, 99, 99, (1,117,28): 99, 99, 99, 99, 97, 100, 102, 99, 100, 109, 129, 144, (1,117,40): 163, 177, 193, 198, 196, 192, 185, 178, 156, 130, 99, (1,117,51): 81, 73, 69, 68, 70, 69, 69, 67, 66, 66, 67, 69, 69, 52, (1,117,65): 56, 61, 68, 79, 87, 81, 67, 71, 70, 70, 70, 70, 70, 68, (1,117,79): 68, 69, 68, 69, 69, 68, 68, 68, 69, 69, 70, 69, 69, 68, (1,117,93): 69, 70, 69, 63, 64, 67, 67, 65, 61, 61, 61, 62, 63, 62, (1,117,107): 61, 60, 59, 58, 59, 58, 58, 58, 58, 57, 58, 57, 56, 58, (1,117,121): 58, 58, 58, 58, 58, 58, 58, 58, 58, 57, 57, 56, 55, 55, (1,117,135): 56, 56, 57, 57, 57, 56, 57, 56, 56, 54, 54, 53, 52, 51, (1,117,149): 52, 51, 52, 50, 54, 51, 50, 52, 49, 53, 66, 77, 77, 80, (1,117,163): 84, 86, 88, 89, 92, 92, 91, 87, 83, 83, 81, 73, 64, 60, (1,117,177): 59, 57, 57, 59, 62, 66, 69, 72, 72, 71, 70, 67, 64, 62, (1,117,191): 60, 58, 57, 57, 57, 57, 59, 62, 64, 76, 94, 115, 132, (1,117,204): 147, 159, 163, 161, 152, 137, 125, 123, 127, 128, 128, (1,117,215): 129, 131, 131, 131, 131, 131, 130, 129, 128, 121, 110, (1,117,226): 101, (1,118,0): 97, 97, 97, 98, 98, 99, 99, 99, 98, 98, 98, 98, 98, 98, (1,118,14): 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 99, 99, 99, 99, (1,118,28): 99, 99, 99, 98, 96, 97, 100, 103, 112, 133, 158, 176, (1,118,40): 194, 210, 225, 230, 227, 222, 214, 206, 188, 165, 135, (1,118,51): 109, 89, 76, 69, 68, 74, 72, 70, 67, 62, 59, 56, 55, 60, (1,118,65): 59, 53, 55, 71, 92, 96, 87, 81, 79, 78, 77, 74, 72, 69, (1,118,79): 68, 68, 68, 68, 67, 67, 66, 67, 67, 68, 68, 68, 69, 68, (1,118,93): 69, 70, 69, 64, 64, 66, 67, 67, 64, 59, 57, 61, 62, 62, (1,118,107): 61, 60, 59, 59, 60, 58, 58, 58, 57, 57, 57, 56, 57, 58, (1,118,121): 58, 58, 58, 58, 58, 58, 58, 58, 58, 57, 57, 56, 56, 55, (1,118,135): 56, 56, 57, 56, 56, 56, 55, 55, 55, 54, 54, 53, 53, 52, (1,118,149): 51, 50, 51, 49, 55, 52, 49, 52, 48, 52, 65, 77, 77, 80, (1,118,163): 85, 88, 89, 90, 92, 94, 87, 80, 78, 74, 66, 58, 56, 55, (1,118,177): 55, 54, 53, 53, 56, 58, 60, 68, 70, 72, 73, 70, 67, 64, (1,118,191): 62, 56, 54, 54, 55, 56, 59, 60, 63, 72, 89, 113, 131, (1,118,204): 147, 158, 161, 156, 141, 129, 120, 122, 126, 126, 126, (1,118,215): 128, 130, 130, 130, 130, 129, 129, 128, 128, 118, 107, (1,118,226): 96, (1,119,0): 97, 97, 97, 98, 98, 99, 99, 99, 98, 98, 98, 98, 98, 98, (1,119,14): 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 99, 99, 99, 99, (1,119,28): 99, 99, 99, 98, 103, 103, 103, 113, 132, 160, 188, 208, (1,119,40): 207, 224, 242, 248, 247, 243, 236, 226, 208, 193, 171, (1,119,51): 145, 117, 92, 77, 72, 73, 73, 71, 68, 65, 61, 57, 57, (1,119,64): 58, 61, 53, 45, 54, 81, 102, 109, 92, 90, 87, 84, 78, (1,119,77): 74, 70, 68, 68, 69, 69, 67, 67, 66, 67, 67, 68, 67, 67, (1,119,91): 67, 67, 68, 69, 69, 66, 65, 66, 68, 69, 65, 58, 53, 60, (1,119,105): 61, 61, 61, 60, 60, 60, 60, 58, 58, 58, 58, 57, 56, 57, (1,119,119): 57, 58, 58, 58, 58, 58, 58, 58, 59, 58, 59, 57, 57, 56, (1,119,133): 57, 56, 55, 56, 56, 55, 56, 55, 55, 54, 54, 54, 54, 53, (1,119,147): 52, 51, 52, 51, 52, 50, 55, 52, 49, 51, 48, 51, 66, 77, (1,119,161): 79, 82, 85, 88, 90, 91, 92, 84, 74, 67, 68, 65, 56, 55, (1,119,175): 60, 55, 56, 55, 55, 53, 54, 56, 57, 65, 69, 74, 75, 73, (1,119,189): 70, 65, 62, 54, 52, 53, 54, 55, 58, 60, 63, 69, 87, (1,119,202): 111, 130, 146, 157, 158, 153, 134, 123, 118, 122, 126, (1,119,213): 124, 124, 127, 130, 130, 129, 129, 129, 128, 128, 127, (1,119,224): 116, 104, 93, (1,120,0): 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, (1,120,14): 99, 99, 98, 98, 98, 99, 99, 100, 100, 100, 100, 100, (1,120,26): 100, 100, 100, 100, 100, 100, 98, 100, 115, 146, 175, (1,120,37): 198, 220, 238, 244, 247, 252, 255, 255, 251, 247, 242, (1,120,48): 225, 216, 202, 182, 160, 132, 98, 72, 72, 71, 69, 68, (1,120,60): 60, 54, 52, 57, 60, 61, 56, 54, 69, 105, 147, 172, 140, (1,120,73): 119, 96, 86, 82, 77, 71, 69, 70, 74, 68, 60, 62, 72, 71, (1,120,87): 62, 64, 64, 65, 66, 66, 64, 64, 64, 67, 65, 64, 65, 66, (1,120,101): 64, 58, 56, 61, 62, 62, 62, 61, 60, 61, 60, 58, 57, 57, (1,120,115): 56, 56, 56, 56, 56, 57, 57, 57, 57, 58, 58, 58, 58, 61, (1,120,129): 60, 59, 58, 57, 56, 55, 55, 54, 55, 55, 56, 55, 56, 55, (1,120,143): 55, 50, 54, 57, 56, 52, 50, 50, 51, 48, 55, 50, 45, 48, (1,120,157): 47, 50, 62, 79, 80, 81, 82, 89, 95, 89, 78, 69, 69, 67, (1,120,171): 64, 60, 59, 58, 58, 56, 56, 54, 54, 53, 54, 54, 54, 57, (1,120,185): 61, 67, 71, 73, 71, 67, 63, 52, 50, 50, 51, 53, 57, 60, (1,120,199): 63, 62, 82, 108, 130, 148, 158, 155, 148, 126, 121, (1,120,210): 117, 117, 120, 123, 124, 123, 127, 131, 131, 127, 125, (1,120,221): 128, 129, 126, 113, 100, 88, (1,121,0): 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, (1,121,14): 99, 99, 98, 98, 98, 99, 99, 100, 100, 100, 100, 100, (1,121,26): 100, 100, 100, 100, 100, 100, 100, 110, 133, 164, 195, (1,121,37): 218, 238, 251, 251, 252, 253, 254, 255, 254, 252, 250, (1,121,48): 240, 235, 223, 205, 187, 163, 131, 106, 81, 74, 67, 66, (1,121,60): 62, 58, 57, 60, 56, 62, 69, 80, 104, 140, 178, 197, 213, (1,121,73): 177, 131, 99, 87, 83, 74, 67, 71, 70, 73, 75, 70, 62, (1,121,86): 61, 67, 63, 63, 64, 64, 65, 65, 64, 63, 65, 64, 64, 66, (1,121,100): 67, 65, 59, 56, 61, 62, 62, 62, 61, 60, 60, 60, 58, 57, (1,121,114): 57, 56, 57, 56, 56, 56, 57, 57, 57, 57, 58, 59, 59, 59, (1,121,128): 60, 60, 58, 58, 57, 56, 54, 55, 55, 56, 56, 56, 56, 56, (1,121,142): 56, 56, 54, 55, 56, 57, 55, 52, 50, 51, 49, 52, 47, 46, (1,121,156): 50, 46, 48, 62, 74, 82, 88, 88, 86, 82, 74, 63, 65, 65, (1,121,170): 64, 62, 60, 60, 59, 58, 57, 55, 55, 55, 54, 54, 54, 55, (1,121,184): 57, 60, 65, 69, 72, 71, 69, 66, 56, 53, 51, 50, 51, 54, (1,121,198): 58, 61, 63, 81, 108, 130, 149, 157, 152, 143, 124, 120, (1,121,210): 117, 117, 119, 122, 122, 122, 124, 128, 128, 125, 124, (1,121,221): 127, 127, 123, 109, 95, 84, (1,122,0): 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, (1,122,14): 99, 99, 98, 98, 98, 99, 99, 100, 100, 100, 100, 100, (1,122,26): 100, 100, 100, 101, 101, 102, 100, 123, 153, 182, 209, (1,122,37): 233, 249, 255, 255, 255, 254, 254, 254, 255, 255, 255, (1,122,48): 252, 249, 240, 229, 216, 196, 168, 145, 103, 88, 71, 67, (1,122,60): 68, 68, 65, 62, 58, 74, 95, 118, 146, 178, 206, 220, (1,122,72): 228, 240, 224, 167, 101, 67, 72, 86, 88, 79, 70, 69, 70, (1,122,85): 70, 68, 67, 61, 62, 63, 63, 65, 64, 65, 64, 64, 64, 66, (1,122,99): 69, 68, 66, 60, 57, 60, 61, 62, 62, 61, 60, 61, 61, 57, (1,122,113): 57, 58, 57, 57, 56, 56, 56, 58, 58, 59, 59, 59, 59, 59, (1,122,127): 60, 59, 59, 57, 57, 56, 56, 54, 55, 56, 56, 56, 56, 56, (1,122,141): 57, 56, 56, 57, 56, 56, 56, 56, 55, 52, 49, 50, 49, 45, (1,122,155): 48, 52, 45, 48, 68, 80, 86, 89, 84, 74, 67, 60, 54, 59, (1,122,169): 59, 60, 61, 60, 60, 59, 58, 57, 57, 56, 55, 55, 55, 55, (1,122,183): 56, 57, 59, 63, 67, 69, 71, 71, 70, 62, 58, 52, 50, 48, (1,122,197): 51, 55, 58, 62, 81, 109, 132, 151, 156, 147, 135, 120, (1,122,209): 117, 114, 114, 116, 118, 119, 119, 120, 123, 125, 123, (1,122,220): 123, 125, 124, 119, 101, 87, 76, (1,123,0): 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, (1,123,14): 99, 99, 99, 98, 98, 99, 99, 100, 100, 100, 100, 100, (1,123,26): 100, 101, 101, 101, 101, 103, 107, 135, 167, 190, 213, (1,123,37): 237, 251, 253, 255, 255, 255, 254, 254, 253, 254, 255, (1,123,48): 253, 253, 247, 242, 233, 218, 193, 171, 135, 109, 81, (1,123,59): 72, 74, 73, 68, 64, 70, 96, 129, 154, 175, 198, 218, (1,123,71): 230, 238, 249, 246, 215, 178, 141, 100, 68, 83, 85, 82, (1,123,83): 72, 72, 77, 74, 63, 62, 62, 63, 64, 64, 64, 65, 65, 62, (1,123,97): 64, 67, 69, 69, 65, 61, 59, 60, 61, 62, 62, 61, 60, 61, (1,123,111): 61, 57, 57, 58, 57, 57, 56, 56, 56, 59, 59, 60, 59, 59, (1,123,125): 59, 59, 60, 57, 57, 57, 57, 56, 55, 54, 54, 55, 55, 55, (1,123,139): 56, 56, 56, 56, 56, 59, 55, 53, 55, 56, 56, 52, 49, 53, (1,123,153): 50, 46, 50, 51, 42, 50, 78, 92, 87, 78, 67, 60, 58, 59, (1,123,167): 60, 56, 58, 59, 60, 61, 59, 57, 57, 57, 56, 56, 57, 56, (1,123,181): 57, 57, 57, 57, 58, 61, 63, 66, 69, 72, 73, 67, 63, 56, (1,123,195): 51, 48, 49, 52, 56, 60, 82, 112, 139, 154, 156, 141, (1,123,207): 124, 115, 114, 113, 113, 114, 115, 116, 116, 117, 121, (1,123,218): 123, 122, 124, 125, 122, 114, 93, 78, 66, (1,124,0): 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, (1,124,11): 100, 100, 100, 100, 99, 99, 98, 98, 99, 99, 100, 100, (1,124,23): 100, 100, 100, 100, 101, 101, 102, 102, 103, 113, 140, (1,124,34): 169, 191, 213, 237, 252, 254, 255, 255, 255, 255, 253, (1,124,45): 252, 249, 248, 255, 255, 253, 249, 244, 232, 210, 190, (1,124,56): 163, 130, 93, 76, 75, 74, 71, 67, 95, 125, 162, 184, (1,124,68): 195, 208, 225, 238, 246, 243, 237, 236, 242, 224, 165, (1,124,79): 105, 76, 82, 90, 92, 83, 69, 64, 67, 64, 64, 63, 64, 66, (1,124,93): 66, 66, 66, 63, 65, 69, 69, 67, 64, 62, 61, 60, 60, 61, (1,124,107): 61, 61, 60, 61, 61, 58, 58, 58, 57, 57, 56, 56, 56, 60, (1,124,121): 60, 60, 59, 59, 58, 58, 59, 55, 56, 55, 55, 54, 54, 54, (1,124,135): 54, 55, 56, 56, 56, 56, 56, 56, 56, 57, 54, 52, 53, 55, (1,124,149): 55, 52, 49, 50, 51, 48, 49, 49, 42, 54, 85, 89, 78, 63, (1,124,163): 55, 54, 57, 59, 60, 57, 59, 59, 60, 60, 58, 56, 55, 57, (1,124,177): 57, 56, 57, 57, 58, 57, 57, 57, 57, 58, 59, 62, 67, 69, (1,124,191): 71, 69, 66, 59, 54, 50, 49, 51, 53, 58, 83, 117, 143, (1,124,204): 155, 149, 130, 112, 111, 110, 110, 110, 110, 110, 112, (1,124,215): 112, 116, 120, 122, 122, 124, 124, 119, 108, 82, 67, (1,124,226): 56, (1,125,0): 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, (1,125,11): 100, 100, 100, 100, 99, 99, 98, 98, 99, 99, 100, 100, (1,125,23): 100, 100, 100, 101, 101, 102, 103, 103, 103, 110, 130, (1,125,34): 154, 181, 206, 230, 247, 254, 254, 255, 255, 255, 254, (1,125,45): 250, 246, 244, 253, 253, 252, 249, 246, 236, 215, 196, (1,125,56): 176, 142, 103, 80, 75, 77, 79, 82, 123, 155, 190, 207, (1,125,68): 212, 220, 235, 247, 240, 251, 255, 251, 243, 237, 226, (1,125,79): 210, 143, 100, 75, 85, 88, 71, 63, 74, 67, 67, 66, 66, (1,125,92): 66, 66, 66, 65, 65, 67, 68, 68, 65, 61, 59, 60, 59, 60, (1,125,106): 61, 61, 61, 60, 61, 61, 58, 58, 58, 57, 57, 56, 56, 56, (1,125,120): 60, 59, 59, 58, 58, 57, 56, 57, 55, 55, 55, 56, 55, 55, (1,125,134): 54, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 54, 53, 53, (1,125,148): 54, 55, 54, 53, 50, 54, 50, 48, 52, 53, 61, 83, 71, 62, (1,125,162): 53, 53, 56, 58, 55, 54, 57, 59, 58, 57, 57, 56, 55, 54, (1,125,176): 56, 57, 56, 57, 57, 57, 57, 57, 57, 57, 57, 58, 59, 62, (1,125,190): 65, 66, 68, 67, 63, 59, 54, 52, 51, 52, 55, 84, 120, (1,125,203): 141, 146, 137, 119, 104, 107, 107, 109, 109, 107, 107, (1,125,214): 108, 110, 115, 119, 122, 123, 124, 124, 115, 102, 73, (1,125,225): 59, 47, (1,126,0): 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, (1,126,11): 100, 100, 100, 100, 99, 99, 98, 98, 99, 99, 100, 100, (1,126,23): 100, 100, 100, 101, 101, 102, 103, 104, 104, 105, 116, (1,126,34): 140, 172, 200, 222, 240, 252, 252, 254, 255, 255, 255, (1,126,45): 253, 249, 247, 246, 247, 247, 246, 245, 236, 216, 198, (1,126,56): 177, 147, 110, 87, 81, 86, 98, 109, 154, 179, 207, 223, (1,126,68): 228, 235, 241, 248, 253, 251, 248, 247, 249, 252, 253, (1,126,79): 249, 224, 168, 111, 87, 85, 82, 77, 74, 71, 69, 69, 68, (1,126,92): 68, 67, 66, 65, 67, 69, 69, 67, 61, 59, 59, 60, 60, 61, (1,126,106): 60, 61, 60, 60, 61, 61, 58, 58, 58, 57, 57, 56, 56, 56, (1,126,120): 59, 59, 58, 57, 56, 55, 55, 55, 55, 56, 56, 56, 56, 56, (1,126,134): 56, 56, 55, 55, 55, 55, 56, 56, 56, 55, 54, 55, 56, 56, (1,126,148): 55, 56, 59, 61, 56, 60, 54, 53, 67, 76, 73, 77, 57, 54, (1,126,162): 53, 57, 59, 55, 52, 53, 56, 56, 55, 54, 54, 54, 54, 55, (1,126,176): 55, 57, 56, 57, 57, 57, 56, 56, 57, 56, 56, 55, 56, 57, (1,126,190): 59, 60, 66, 67, 66, 65, 60, 56, 52, 51, 57, 85, 117, (1,126,203): 132, 132, 121, 110, 100, 103, 105, 107, 107, 105, 105, (1,126,214): 106, 108, 114, 118, 120, 122, 123, 121, 110, 95, 66, (1,126,225): 52, 40, (1,127,0): 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, (1,127,11): 100, 100, 100, 100, 99, 99, 99, 98, 98, 98, 99, 100, (1,127,23): 100, 100, 101, 102, 103, 103, 104, 104, 106, 111, 116, (1,127,34): 138, 174, 204, 223, 238, 252, 253, 253, 254, 255, 255, (1,127,45): 255, 255, 254, 248, 250, 249, 250, 249, 242, 224, 206, (1,127,56): 178, 151, 117, 95, 90, 99, 119, 134, 173, 193, 215, 230, (1,127,68): 238, 244, 245, 244, 247, 249, 252, 255, 253, 247, 249, (1,127,79): 252, 242, 242, 201, 129, 85, 85, 85, 69, 74, 71, 70, 69, (1,127,92): 67, 66, 66, 65, 70, 71, 71, 67, 62, 58, 59, 62, 61, 62, (1,127,106): 62, 61, 60, 60, 60, 60, 58, 58, 58, 57, 57, 56, 56, 56, (1,127,120): 58, 58, 57, 56, 55, 54, 54, 54, 56, 57, 56, 56, 57, 57, (1,127,134): 57, 56, 55, 55, 55, 55, 55, 55, 55, 55, 53, 56, 59, 58, (1,127,148): 57, 58, 62, 67, 64, 68, 60, 61, 86, 100, 87, 76, 58, (1,127,161): 56, 57, 60, 58, 53, 53, 60, 54, 53, 52, 51, 51, 53, 54, (1,127,175): 55, 54, 55, 55, 56, 55, 55, 55, 55, 57, 56, 56, 55, 55, (1,127,189): 55, 56, 56, 63, 66, 69, 68, 65, 60, 54, 52, 59, 86, (1,127,202): 114, 124, 118, 109, 102, 97, 100, 104, 107, 107, 104, (1,127,213): 103, 105, 107, 113, 116, 119, 120, 122, 118, 106, 91, (1,127,224): 62, 47, 37, (1,128,0): 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, (1,128,11): 101, 101, 101, 101, 101, 100, 100, 100, 100, 99, 101, (1,128,22): 101, 102, 96, 101, 107, 108, 101, 101, 113, 130, 142, (1,128,33): 157, 178, 199, 220, 237, 246, 250, 254, 254, 255, 254, (1,128,44): 253, 252, 253, 254, 250, 250, 249, 250, 252, 247, 229, (1,128,55): 212, 185, 152, 116, 100, 107, 125, 144, 155, 185, 204, (1,128,66): 227, 239, 243, 247, 249, 248, 254, 254, 254, 255, 255, (1,128,77): 255, 255, 255, 253, 253, 251, 229, 166, 96, 68, 75, 79, (1,128,89): 71, 67, 68, 72, 73, 72, 71, 71, 72, 73, 71, 69, 66, 66, (1,128,103): 67, 67, 67, 65, 63, 62, 60, 59, 59, 57, 58, 57, 56, 55, (1,128,117): 55, 55, 54, 55, 55, 56, 56, 55, 54, 53, 51, 55, 56, 56, (1,128,131): 55, 55, 54, 54, 54, 53, 54, 55, 56, 55, 54, 52, 51, 51, (1,128,145): 53, 56, 57, 58, 59, 61, 65, 66, 73, 72, 95, 107, 120, (1,128,158): 127, 74, 57, 58, 58, 57, 57, 57, 56, 56, 55, 55, 54, (1,128,171): 54, 53, 53, 52, 53, 52, 53, 52, 53, 52, 52, 52, 52, 53, (1,128,185): 52, 52, 51, 51, 52, 52, 54, 59, 61, 64, 66, 68, 66, 64, (1,128,199): 62, 63, 81, 101, 107, 98, 88, 84, 87, 99, 101, 102, (1,128,211): 102, 101, 101, 103, 106, 112, 116, 118, 119, 119, 113, (1,128,222): 98, 79, 48, 43, 41, (1,129,0): 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, (1,129,11): 101, 101, 101, 101, 101, 101, 101, 99, 100, 99, 100, (1,129,22): 101, 102, 100, 104, 106, 107, 103, 108, 127, 147, 174, (1,129,33): 193, 213, 230, 242, 251, 254, 254, 253, 254, 255, 255, (1,129,44): 252, 251, 252, 253, 250, 250, 250, 250, 251, 245, 226, (1,129,55): 208, 184, 150, 113, 97, 107, 129, 152, 167, 193, 211, (1,129,66): 231, 243, 247, 251, 252, 251, 254, 254, 254, 254, 254, (1,129,77): 254, 254, 255, 255, 251, 249, 248, 233, 190, 128, 80, (1,129,88): 78, 76, 75, 74, 68, 61, 63, 70, 70, 74, 76, 73, 70, 67, (1,129,102): 68, 71, 68, 67, 66, 64, 62, 60, 60, 60, 58, 58, 58, 58, (1,129,116): 57, 56, 55, 55, 54, 55, 56, 56, 56, 54, 53, 52, 55, 56, (1,129,130): 56, 55, 55, 55, 54, 54, 51, 51, 53, 54, 56, 56, 56, 57, (1,129,144): 54, 55, 57, 59, 59, 62, 64, 68, 72, 80, 82, 102, 117, (1,129,157): 133, 131, 76, 57, 57, 57, 57, 56, 56, 56, 55, 55, 55, (1,129,170): 55, 54, 54, 53, 53, 53, 52, 52, 52, 52, 52, 52, 52, 52, (1,129,184): 53, 52, 51, 51, 51, 51, 52, 54, 56, 58, 61, 64, 66, 66, (1,129,198): 66, 66, 67, 80, 93, 96, 87, 79, 80, 85, 98, 100, 101, (1,129,211): 101, 99, 99, 100, 101, 110, 114, 118, 119, 116, 109, (1,129,222): 92, 73, 49, 44, 42, (1,130,0): 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, (1,130,11): 101, 101, 101, 101, 101, 101, 101, 99, 100, 99, 100, (1,130,22): 101, 102, 104, 105, 106, 107, 107, 119, 146, 172, 197, (1,130,33): 219, 240, 251, 254, 255, 254, 253, 253, 254, 255, 254, (1,130,44): 251, 248, 247, 247, 247, 249, 248, 248, 247, 238, 219, (1,130,55): 202, 177, 150, 121, 112, 123, 144, 167, 181, 207, 222, (1,130,66): 239, 248, 251, 254, 254, 253, 254, 254, 254, 254, 254, (1,130,77): 254, 254, 255, 250, 255, 254, 248, 250, 245, 204, 157, (1,130,88): 75, 81, 75, 64, 71, 89, 84, 63, 68, 72, 75, 73, 66, 63, (1,130,102): 65, 70, 66, 66, 66, 65, 64, 62, 62, 62, 60, 60, 59, 59, (1,130,116): 58, 57, 57, 57, 57, 57, 57, 57, 57, 56, 54, 53, 55, 56, (1,130,130): 55, 56, 54, 55, 55, 54, 53, 53, 53, 54, 55, 56, 58, 58, (1,130,144): 59, 59, 58, 60, 63, 67, 68, 69, 73, 86, 89, 106, 127, (1,130,157): 142, 127, 70, 56, 56, 56, 56, 55, 55, 55, 54, 55, 55, (1,130,170): 55, 54, 54, 53, 53, 53, 52, 52, 52, 52, 52, 52, 52, 52, (1,130,184): 52, 52, 51, 50, 50, 51, 52, 53, 53, 54, 57, 59, 62, 64, (1,130,198): 66, 68, 69, 76, 82, 81, 73, 70, 76, 84, 95, 98, 100, (1,130,211): 99, 97, 96, 95, 96, 107, 112, 117, 118, 113, 103, 84, (1,130,223): 65, 49, 44, 42, (1,131,0): 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, (1,131,11): 101, 101, 101, 101, 101, 101, 101, 99, 100, 99, 100, (1,131,22): 101, 102, 105, 106, 107, 109, 113, 130, 161, 190, 202, (1,131,33): 228, 249, 255, 252, 252, 251, 250, 254, 255, 254, 252, (1,131,44): 246, 241, 239, 237, 241, 244, 244, 244, 241, 234, 216, (1,131,55): 199, 177, 161, 147, 147, 158, 173, 187, 197, 220, 233, (1,131,66): 246, 251, 253, 255, 255, 253, 254, 254, 254, 254, 254, (1,131,77): 254, 254, 254, 251, 254, 254, 240, 237, 249, 250, 238, (1,131,88): 191, 127, 79, 80, 89, 78, 68, 69, 65, 70, 73, 71, 64, (1,131,101): 60, 62, 66, 64, 66, 65, 65, 64, 64, 64, 63, 61, 61, 61, (1,131,115): 60, 61, 60, 60, 59, 59, 59, 59, 58, 57, 56, 56, 55, 56, (1,131,129): 55, 54, 55, 55, 54, 55, 55, 58, 57, 55, 55, 55, 55, 57, (1,131,143): 58, 63, 62, 61, 62, 67, 69, 71, 71, 74, 86, 92, 107, (1,131,156): 130, 142, 113, 61, 55, 56, 55, 55, 55, 54, 54, 54, 55, (1,131,169): 55, 55, 54, 54, 53, 53, 53, 51, 51, 51, 51, 51, 51, 51, (1,131,183): 51, 51, 51, 50, 50, 50, 50, 51, 52, 52, 52, 54, 55, 58, (1,131,197): 61, 64, 65, 67, 71, 73, 69, 63, 64, 70, 78, 88, 93, 96, (1,131,211): 98, 96, 95, 94, 94, 105, 112, 117, 117, 110, 99, 77, (1,131,223): 58, 47, 42, 40, (1,132,0): 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, (1,132,11): 101, 101, 101, 101, 101, 101, 101, 99, 100, 99, 100, (1,132,22): 101, 102, 103, 105, 109, 112, 117, 135, 167, 196, 212, (1,132,33): 239, 255, 255, 251, 253, 253, 252, 255, 255, 253, 248, (1,132,44): 240, 234, 230, 229, 235, 239, 240, 240, 238, 232, 216, (1,132,55): 202, 189, 181, 174, 180, 190, 200, 211, 217, 232, 242, (1,132,66): 250, 252, 253, 255, 255, 252, 254, 254, 254, 254, 254, (1,132,77): 254, 254, 254, 251, 247, 246, 247, 255, 255, 255, 252, (1,132,88): 254, 220, 155, 98, 75, 76, 80, 74, 65, 68, 71, 69, 63, (1,132,101): 58, 59, 63, 62, 63, 65, 65, 66, 66, 67, 66, 63, 62, 62, (1,132,115): 61, 61, 61, 62, 61, 62, 61, 60, 59, 59, 58, 58, 58, 55, (1,132,129): 54, 54, 54, 54, 55, 55, 55, 59, 58, 57, 57, 57, 57, 58, (1,132,143): 60, 66, 65, 67, 68, 71, 73, 73, 73, 76, 86, 98, 109, (1,132,156): 131, 135, 96, 58, 56, 56, 55, 55, 55, 54, 54, 54, 55, (1,132,169): 55, 55, 54, 54, 53, 53, 53, 51, 51, 51, 51, 51, 51, 51, (1,132,183): 51, 50, 50, 49, 49, 49, 49, 50, 51, 54, 53, 52, 52, 53, (1,132,197): 56, 59, 61, 61, 64, 65, 65, 61, 61, 65, 70, 79, 84, 89, (1,132,211): 92, 93, 94, 94, 96, 103, 112, 118, 117, 107, 93, 71, (1,132,223): 52, 45, 41, 39, (1,133,0): 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, (1,133,11): 101, 101, 101, 101, 101, 101, 101, 99, 100, 99, 100, (1,133,22): 101, 102, 103, 106, 110, 114, 118, 133, 164, 191, 222, (1,133,33): 246, 255, 255, 251, 254, 254, 252, 255, 255, 252, 245, (1,133,44): 237, 231, 227, 227, 233, 236, 237, 236, 235, 230, 218, (1,133,55): 206, 206, 198, 195, 201, 210, 219, 230, 239, 242, 249, (1,133,66): 253, 253, 253, 255, 254, 252, 254, 254, 254, 254, 254, (1,133,77): 254, 254, 253, 252, 246, 249, 255, 255, 255, 255, 254, (1,133,88): 242, 255, 236, 166, 106, 90, 87, 76, 70, 70, 70, 70, 66, (1,133,101): 61, 59, 59, 61, 62, 63, 64, 65, 66, 68, 68, 63, 63, 63, (1,133,115): 63, 63, 62, 63, 63, 64, 63, 62, 60, 60, 60, 60, 60, 56, (1,133,129): 54, 54, 54, 54, 55, 56, 56, 55, 56, 57, 58, 60, 63, 64, (1,133,143): 66, 66, 71, 76, 77, 77, 75, 75, 77, 81, 88, 104, 115, (1,133,156): 131, 123, 79, 61, 57, 56, 56, 56, 55, 55, 55, 54, 55, (1,133,169): 55, 55, 54, 54, 53, 53, 53, 50, 50, 50, 50, 50, 50, 50, (1,133,183): 50, 50, 49, 48, 48, 48, 48, 49, 51, 53, 54, 52, 52, 52, (1,133,197): 53, 55, 57, 56, 59, 63, 64, 63, 63, 62, 64, 70, 75, 79, (1,133,211): 84, 87, 91, 93, 96, 101, 111, 116, 114, 103, 88, 66, (1,133,223): 50, 45, 41, 39, (1,134,0): 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, (1,134,11): 101, 101, 101, 101, 101, 100, 100, 99, 100, 99, 100, (1,134,22): 102, 102, 105, 107, 109, 110, 114, 127, 157, 183, 218, (1,134,33): 242, 255, 253, 249, 255, 254, 248, 255, 253, 249, 243, (1,134,44): 235, 231, 230, 232, 233, 237, 236, 233, 232, 229, 219, (1,134,55): 208, 211, 209, 212, 221, 228, 233, 241, 249, 249, 254, (1,134,66): 255, 253, 253, 255, 255, 252, 254, 254, 254, 254, 254, (1,134,77): 254, 254, 253, 250, 251, 254, 255, 255, 251, 255, 255, (1,134,88): 255, 245, 250, 250, 204, 119, 81, 93, 80, 76, 75, 75, (1,134,100): 73, 69, 63, 59, 61, 62, 63, 64, 65, 67, 69, 69, 63, 63, (1,134,114): 63, 63, 63, 63, 63, 63, 66, 65, 63, 61, 61, 62, 62, 61, (1,134,128): 56, 55, 54, 54, 55, 55, 56, 56, 56, 57, 59, 62, 64, 65, (1,134,142): 65, 67, 69, 78, 86, 87, 83, 79, 79, 82, 86, 89, 108, (1,134,155): 118, 129, 109, 62, 66, 59, 57, 57, 57, 56, 56, 56, 55, (1,134,168): 55, 55, 55, 54, 54, 53, 53, 53, 50, 50, 50, 50, 50, 50, (1,134,182): 50, 50, 49, 49, 48, 47, 47, 48, 49, 50, 52, 53, 52, 52, (1,134,196): 53, 53, 54, 55, 54, 58, 61, 65, 66, 66, 64, 63, 63, 67, (1,134,210): 71, 76, 79, 84, 88, 92, 98, 107, 113, 109, 98, 82, 62, (1,134,223): 47, 47, 44, 42, (1,135,0): 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, (1,135,11): 101, 101, 101, 101, 101, 100, 100, 99, 100, 99, 100, (1,135,22): 102, 102, 108, 108, 108, 107, 108, 123, 152, 177, 210, (1,135,33): 235, 252, 251, 250, 255, 254, 248, 255, 253, 248, 242, (1,135,44): 235, 233, 234, 237, 236, 237, 237, 232, 230, 227, 218, (1,135,55): 208, 206, 210, 223, 237, 244, 245, 245, 249, 252, 255, (1,135,66): 255, 254, 254, 255, 255, 253, 254, 254, 254, 254, 254, (1,135,77): 254, 254, 254, 249, 249, 250, 251, 255, 255, 255, 253, (1,135,88): 252, 255, 253, 242, 239, 225, 174, 114, 89, 84, 81, 82, (1,135,100): 81, 77, 68, 61, 62, 63, 62, 64, 65, 67, 68, 69, 63, 63, (1,135,114): 62, 63, 63, 63, 63, 63, 66, 66, 64, 62, 61, 62, 62, 62, (1,135,128): 56, 55, 56, 56, 56, 56, 57, 58, 59, 62, 64, 66, 67, 65, (1,135,142): 64, 66, 71, 83, 94, 94, 88, 83, 83, 87, 86, 87, 109, (1,135,155): 119, 125, 97, 50, 68, 59, 58, 58, 57, 57, 57, 56, 56, (1,135,168): 55, 55, 55, 54, 54, 53, 53, 53, 50, 50, 50, 50, 50, 50, (1,135,182): 50, 50, 49, 48, 48, 47, 47, 48, 48, 49, 50, 51, 52, 53, (1,135,196): 53, 54, 55, 55, 54, 56, 60, 65, 68, 68, 66, 65, 59, 63, (1,135,210): 66, 70, 73, 78, 84, 88, 96, 104, 110, 105, 94, 78, 59, (1,135,223): 44, 48, 46, 44, (1,136,0): 101, 101, 101, 101, 101, 101, 101, 101, 102, 102, 102, (1,136,11): 102, 102, 102, 102, 102, 101, 101, 100, 101, 100, 101, (1,136,22): 103, 103, 110, 109, 110, 114, 114, 121, 145, 170, 196, (1,136,33): 217, 239, 251, 253, 255, 254, 253, 255, 254, 250, 248, (1,136,44): 246, 244, 241, 239, 246, 242, 238, 236, 230, 220, 213, (1,136,55): 212, 211, 217, 227, 234, 241, 246, 248, 252, 253, 254, (1,136,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (1,136,77): 254, 254, 255, 254, 255, 255, 255, 255, 255, 254, 253, (1,136,88): 255, 253, 249, 248, 249, 248, 241, 232, 132, 100, 83, (1,136,99): 87, 93, 83, 75, 76, 63, 63, 63, 60, 59, 60, 63, 66, 61, (1,136,113): 61, 61, 62, 64, 64, 63, 63, 65, 64, 64, 64, 63, 63, 62, (1,136,127): 62, 57, 56, 58, 59, 59, 60, 60, 61, 63, 62, 71, 71, 61, (1,136,141): 57, 56, 49, 81, 78, 73, 75, 89, 101, 97, 85, 88, 96, (1,136,154): 115, 128, 108, 73, 57, 62, 60, 59, 58, 58, 58, 57, 57, (1,136,167): 57, 57, 57, 57, 56, 55, 55, 55, 54, 54, 54, 53, 53, 52, (1,136,181): 52, 52, 52, 49, 49, 49, 49, 49, 49, 48, 48, 53, 52, 52, (1,136,195): 51, 52, 52, 53, 53, 50, 52, 55, 61, 65, 69, 71, 74, 66, (1,136,209): 64, 62, 61, 62, 69, 78, 85, 91, 98, 104, 100, 87, 70, (1,136,222): 57, 51, 48, 47, 46, (1,137,0): 101, 101, 101, 101, 101, 101, 101, 101, 102, 102, 102, (1,137,11): 102, 102, 102, 102, 102, 101, 101, 100, 101, 100, 101, (1,137,22): 103, 104, 110, 108, 110, 114, 116, 124, 148, 174, 199, (1,137,33): 219, 240, 252, 254, 255, 254, 253, 255, 254, 251, 249, (1,137,44): 247, 245, 242, 237, 239, 235, 231, 230, 225, 217, 212, (1,137,55): 212, 216, 222, 230, 238, 243, 246, 249, 251, 254, 254, (1,137,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (1,137,77): 254, 254, 255, 255, 255, 255, 254, 252, 250, 250, 248, (1,137,88): 252, 250, 248, 249, 252, 252, 248, 241, 234, 178, 117, (1,137,99): 92, 92, 92, 87, 83, 70, 68, 68, 68, 67, 66, 65, 63, 64, (1,137,113): 62, 62, 64, 63, 61, 62, 65, 63, 63, 63, 63, 62, 62, 61, (1,137,127): 62, 60, 61, 62, 63, 63, 65, 65, 66, 71, 65, 71, 73, 61, (1,137,141): 55, 56, 54, 76, 75, 71, 68, 77, 91, 97, 97, 89, 103, (1,137,154): 119, 121, 96, 68, 59, 67, 62, 60, 60, 60, 59, 59, 59, (1,137,167): 59, 59, 59, 59, 58, 58, 57, 57, 57, 55, 55, 55, 54, 54, (1,137,181): 54, 53, 53, 51, 51, 50, 50, 49, 49, 48, 48, 49, 49, 48, (1,137,195): 48, 48, 49, 50, 51, 53, 52, 53, 55, 59, 65, 70, 74, 70, (1,137,209): 69, 66, 63, 63, 66, 72, 76, 88, 95, 100, 98, 86, 71, (1,137,222): 59, 53, 51, 49, 48, (1,138,0): 101, 101, 101, 101, 101, 101, 101, 101, 102, 102, 102, (1,138,11): 102, 102, 102, 102, 102, 101, 101, 99, 100, 100, 101, (1,138,22): 103, 104, 108, 109, 111, 116, 117, 125, 152, 178, 202, (1,138,33): 221, 242, 252, 253, 255, 254, 253, 255, 253, 251, 250, (1,138,44): 247, 244, 239, 235, 231, 225, 221, 222, 219, 215, 213, (1,138,55): 217, 225, 230, 237, 243, 246, 248, 249, 252, 254, 254, (1,138,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (1,138,77): 254, 254, 255, 255, 255, 254, 253, 250, 248, 246, 244, (1,138,88): 249, 247, 247, 250, 255, 255, 253, 248, 240, 246, 235, (1,138,99): 191, 131, 90, 83, 93, 93, 82, 70, 63, 62, 66, 70, 71, (1,138,112): 63, 60, 60, 66, 65, 63, 65, 72, 62, 62, 62, 63, 61, 62, (1,138,126): 61, 62, 63, 65, 65, 67, 67, 67, 67, 68, 75, 66, 73, 83, (1,138,140): 71, 59, 61, 65, 69, 72, 69, 64, 66, 78, 96, 106, 97, (1,138,153): 113, 122, 109, 79, 60, 61, 70, 62, 62, 62, 62, 61, 61, (1,138,166): 61, 60, 62, 62, 61, 61, 61, 60, 60, 60, 58, 57, 57, 57, (1,138,180): 56, 56, 56, 55, 53, 53, 52, 51, 50, 49, 48, 48, 46, 46, (1,138,194): 46, 46, 46, 47, 48, 49, 54, 52, 49, 49, 52, 59, 66, 72, (1,138,208): 75, 75, 73, 69, 65, 63, 65, 67, 81, 88, 94, 94, 84, 72, (1,138,222): 62, 56, 53, 53, 52, (1,139,0): 100, 100, 101, 101, 101, 101, 102, 102, 102, 102, 102, (1,139,11): 102, 102, 102, 102, 102, 101, 101, 99, 100, 100, 102, (1,139,22): 103, 105, 109, 109, 111, 115, 116, 124, 152, 179, 202, (1,139,33): 220, 240, 251, 253, 255, 255, 254, 254, 253, 251, 250, (1,139,44): 247, 243, 237, 232, 224, 218, 214, 215, 215, 215, 219, (1,139,55): 224, 235, 239, 244, 248, 249, 250, 250, 252, 254, 254, (1,139,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (1,139,77): 254, 254, 255, 255, 255, 254, 253, 251, 248, 246, 244, (1,139,88): 248, 247, 248, 252, 255, 255, 255, 252, 255, 248, 238, (1,139,99): 239, 239, 210, 144, 82, 76, 75, 74, 78, 80, 75, 64, 55, (1,139,112): 77, 68, 66, 68, 67, 59, 56, 61, 63, 63, 63, 63, 62, 62, (1,139,126): 62, 63, 64, 66, 67, 67, 67, 68, 69, 68, 73, 66, 84, (1,139,139): 105, 94, 75, 71, 75, 68, 72, 70, 66, 65, 73, 89, 101, (1,139,152): 109, 120, 118, 95, 67, 59, 64, 67, 63, 63, 63, 62, 62, (1,139,165): 61, 61, 61, 63, 62, 62, 62, 62, 62, 62, 62, 60, 60, 60, (1,139,179): 59, 59, 59, 58, 58, 56, 56, 54, 53, 52, 50, 49, 49, 48, (1,139,193): 48, 47, 47, 48, 49, 50, 50, 53, 51, 48, 48, 50, 55, 61, (1,139,207): 66, 75, 77, 77, 74, 69, 64, 63, 62, 73, 79, 85, 86, 80, (1,139,221): 71, 62, 58, 55, 54, 53, (1,140,0): 100, 100, 100, 101, 101, 102, 102, 102, 102, 102, 102, (1,140,11): 102, 102, 102, 102, 102, 101, 100, 99, 100, 100, 102, (1,140,22): 103, 105, 109, 110, 113, 115, 114, 121, 149, 178, 200, (1,140,33): 219, 239, 249, 252, 255, 255, 255, 255, 255, 255, 254, (1,140,44): 250, 245, 238, 232, 220, 213, 208, 209, 212, 217, 224, (1,140,55): 233, 242, 246, 250, 252, 253, 253, 253, 253, 254, 254, (1,140,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (1,140,77): 254, 254, 255, 255, 255, 255, 255, 253, 251, 249, 249, (1,140,88): 248, 249, 250, 254, 255, 255, 255, 253, 241, 251, 253, (1,140,99): 251, 248, 244, 227, 207, 183, 156, 118, 87, 73, 73, 76, (1,140,111): 79, 71, 66, 66, 69, 73, 74, 75, 75, 65, 66, 66, 66, 66, (1,140,125): 66, 67, 67, 70, 71, 71, 71, 71, 72, 71, 71, 72, 72, (1,140,138): 100, 126, 114, 88, 76, 77, 69, 70, 72, 71, 70, 71, 78, (1,140,151): 85, 119, 122, 110, 85, 66, 65, 65, 62, 62, 63, 63, 62, (1,140,164): 62, 61, 61, 61, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, (1,140,178): 62, 61, 61, 61, 60, 60, 59, 58, 57, 56, 55, 53, 52, 52, (1,140,192): 50, 50, 49, 48, 48, 49, 50, 50, 49, 49, 49, 49, 50, 53, (1,140,206): 55, 59, 71, 76, 79, 79, 75, 70, 67, 65, 69, 73, 79, 80, (1,140,220): 77, 70, 63, 57, 55, 53, 52, (1,141,0): 99, 99, 100, 101, 101, 102, 103, 103, 102, 102, 102, 102, (1,141,12): 102, 102, 102, 102, 100, 100, 99, 100, 100, 102, 103, (1,141,23): 105, 109, 110, 113, 115, 112, 120, 148, 178, 203, 221, (1,141,34): 240, 250, 252, 255, 255, 255, 255, 255, 255, 255, 253, (1,141,45): 247, 240, 232, 218, 209, 203, 203, 207, 215, 226, 238, (1,141,56): 245, 249, 252, 254, 254, 254, 254, 255, 255, 254, 254, (1,141,67): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (1,141,78): 254, 254, 254, 255, 255, 255, 255, 255, 254, 253, 251, (1,141,89): 252, 253, 254, 255, 254, 252, 252, 246, 250, 248, 244, (1,141,100): 246, 254, 254, 254, 248, 239, 227, 209, 187, 161, 134, (1,141,111): 117, 93, 94, 85, 68, 58, 60, 62, 61, 69, 69, 69, 70, (1,141,124): 71, 71, 71, 72, 75, 77, 77, 76, 77, 77, 76, 76, 76, 81, (1,141,138): 107, 128, 113, 89, 76, 71, 70, 70, 72, 74, 74, 71, 73, (1,141,151): 77, 120, 115, 100, 82, 73, 74, 69, 61, 63, 63, 63, 63, (1,141,164): 62, 62, 62, 62, 61, 61, 62, 62, 62, 62, 63, 63, 63, 63, (1,141,178): 63, 63, 62, 62, 62, 61, 61, 61, 60, 59, 58, 57, 56, 56, (1,141,192): 52, 51, 50, 49, 48, 48, 48, 48, 48, 49, 49, 50, 51, 51, (1,141,206): 51, 52, 63, 70, 76, 79, 78, 75, 72, 71, 68, 71, 75, 77, (1,141,220): 74, 69, 63, 57, 54, 53, 52, (1,142,0): 99, 99, 100, 101, 101, 102, 103, 103, 102, 102, 102, 102, (1,142,12): 102, 102, 102, 102, 100, 100, 99, 100, 100, 102, 103, (1,142,23): 105, 108, 109, 114, 115, 113, 121, 151, 183, 210, 227, (1,142,34): 245, 253, 253, 255, 255, 254, 255, 255, 255, 255, 251, (1,142,45): 244, 235, 227, 213, 204, 196, 196, 201, 210, 224, 237, (1,142,56): 246, 249, 252, 254, 254, 254, 255, 255, 255, 254, 254, (1,142,67): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (1,142,78): 254, 254, 251, 252, 253, 255, 255, 255, 255, 255, 254, (1,142,89): 255, 255, 255, 253, 251, 249, 248, 241, 245, 250, 253, (1,142,100): 252, 251, 248, 245, 255, 255, 255, 255, 252, 246, 239, (1,142,111): 235, 228, 230, 202, 143, 94, 79, 76, 72, 74, 74, 74, (1,142,123): 75, 75, 76, 76, 77, 78, 79, 79, 80, 79, 78, 78, 78, 79, (1,142,137): 84, 102, 111, 94, 79, 75, 70, 73, 73, 76, 78, 77, 73, (1,142,150): 80, 88, 109, 102, 92, 86, 84, 81, 74, 67, 64, 65, 65, (1,142,163): 65, 64, 64, 64, 63, 62, 62, 62, 63, 63, 64, 64, 64, 64, (1,142,177): 64, 64, 63, 63, 62, 62, 62, 63, 63, 62, 62, 61, 61, 60, (1,142,191): 60, 57, 55, 54, 52, 50, 49, 47, 47, 48, 48, 49, 50, 50, (1,142,205): 50, 49, 49, 57, 64, 72, 77, 79, 78, 76, 76, 71, 73, 76, (1,142,219): 77, 75, 71, 64, 59, 55, 53, 52, (1,143,0): 100, 100, 101, 102, 102, 102, 103, 103, 102, 102, 102, (1,143,11): 102, 102, 102, 102, 101, 101, 101, 100, 101, 100, 102, (1,143,22): 103, 105, 107, 109, 114, 116, 113, 123, 155, 187, 216, (1,143,33): 232, 249, 255, 255, 255, 255, 254, 250, 251, 251, 250, (1,143,44): 246, 238, 227, 219, 209, 199, 190, 190, 195, 206, 221, (1,143,55): 234, 246, 249, 253, 254, 253, 254, 255, 255, 255, 254, (1,143,66): 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, (1,143,77): 254, 254, 253, 250, 251, 252, 254, 255, 255, 255, 255, (1,143,88): 254, 255, 255, 255, 252, 249, 247, 246, 248, 247, 249, (1,143,99): 252, 252, 253, 255, 255, 250, 250, 249, 248, 246, 248, (1,143,110): 250, 253, 241, 251, 220, 142, 80, 66, 72, 72, 77, 77, (1,143,122): 78, 78, 79, 79, 80, 81, 79, 79, 79, 79, 78, 78, 77, 77, (1,143,136): 78, 82, 92, 89, 73, 70, 76, 74, 78, 79, 81, 83, 78, 77, (1,143,150): 90, 106, 101, 94, 89, 90, 91, 85, 78, 73, 66, 66, 66, (1,143,163): 65, 65, 65, 64, 64, 63, 63, 63, 64, 64, 66, 66, 66, 64, (1,143,177): 64, 64, 63, 63, 62, 62, 62, 64, 64, 64, 64, 63, 63, 63, (1,143,191): 63, 63, 61, 59, 56, 54, 52, 51, 51, 50, 50, 50, 50, 50, (1,143,205): 50, 52, 54, 54, 61, 70, 76, 79, 77, 77, 77, 74, 75, 77, (1,143,219): 78, 78, 72, 66, 60, 56, 54, 53, (1,144,0): 102, 103, 103, 104, 106, 106, 106, 107, 103, 103, 101, (1,144,11): 101, 100, 101, 101, 102, 101, 103, 103, 104, 102, 102, (1,144,22): 100, 100, 103, 108, 111, 111, 112, 130, 168, 199, 219, (1,144,33): 233, 247, 252, 253, 255, 255, 254, 249, 251, 248, 240, (1,144,44): 236, 233, 222, 209, 208, 191, 179, 178, 184, 195, 210, (1,144,55): 223, 243, 248, 251, 254, 254, 254, 253, 254, 254, 254, (1,144,66): 254, 254, 254, 254, 254, 254, 255, 255, 255, 254, 253, (1,144,77): 252, 252, 252, 254, 253, 253, 253, 255, 255, 255, 254, (1,144,88): 255, 252, 252, 255, 254, 249, 247, 250, 251, 252, 253, (1,144,99): 255, 255, 255, 255, 254, 255, 255, 255, 254, 254, 254, (1,144,110): 254, 254, 245, 252, 225, 137, 79, 78, 76, 74, 78, 78, (1,144,122): 78, 78, 79, 79, 78, 79, 77, 78, 78, 80, 79, 79, 77, 76, (1,144,136): 80, 79, 74, 70, 72, 75, 77, 78, 88, 87, 81, 77, 86, 99, (1,144,150): 99, 90, 89, 89, 90, 90, 88, 85, 81, 78, 70, 68, 65, 63, (1,144,164): 62, 62, 63, 65, 63, 64, 64, 65, 65, 66, 66, 66, 66, 65, (1,144,178): 64, 64, 63, 65, 64, 66, 65, 66, 64, 66, 66, 68, 68, 69, (1,144,192): 66, 65, 65, 63, 61, 59, 56, 54, 52, 53, 55, 57, 59, 64, (1,144,206): 71, 77, 86, 88, 86, 84, 82, 79, 78, 79, 76, 81, 86, 87, (1,144,220): 87, 84, 74, 63, 55, 51, 48, (1,145,0): 103, 104, 104, 105, 107, 108, 108, 108, 104, 104, 102, (1,145,11): 102, 101, 102, 101, 103, 102, 103, 103, 104, 103, 102, (1,145,22): 102, 102, 105, 108, 112, 115, 119, 137, 171, 200, 218, (1,145,33): 233, 247, 254, 255, 255, 254, 253, 250, 249, 243, 235, (1,145,44): 230, 225, 214, 201, 191, 179, 172, 174, 183, 195, 208, (1,145,55): 221, 243, 247, 251, 254, 253, 253, 254, 254, 254, 254, (1,145,66): 254, 254, 254, 254, 254, 254, 255, 255, 253, 253, 253, (1,145,77): 252, 252, 253, 254, 254, 253, 253, 255, 255, 254, 253, (1,145,88): 255, 255, 252, 247, 236, 228, 231, 241, 252, 254, 255, (1,145,99): 255, 255, 255, 255, 254, 255, 255, 254, 254, 253, 254, (1,145,110): 253, 254, 246, 252, 224, 137, 77, 79, 75, 74, 79, 79, (1,145,122): 79, 79, 79, 79, 80, 80, 77, 78, 78, 81, 79, 80, 77, 77, (1,145,136): 80, 78, 74, 73, 73, 77, 80, 82, 86, 88, 93, 100, 101, (1,145,149): 94, 88, 86, 85, 86, 85, 86, 85, 84, 82, 81, 76, 74, 70, (1,145,163): 67, 64, 63, 64, 65, 62, 64, 64, 65, 66, 66, 67, 67, 66, (1,145,177): 65, 65, 64, 64, 65, 65, 66, 66, 66, 66, 66, 67, 68, 69, (1,145,191): 70, 71, 72, 70, 71, 68, 66, 63, 61, 62, 62, 61, 62, 67, (1,145,205): 77, 89, 97, 112, 110, 105, 97, 89, 82, 76, 75, 79, 86, (1,145,218): 93, 95, 95, 92, 83, 70, 53, 50, 47, (1,146,0): 103, 104, 104, 106, 107, 109, 108, 109, 106, 106, 104, (1,146,11): 104, 102, 103, 102, 104, 102, 104, 103, 103, 103, 102, (1,146,22): 102, 102, 105, 106, 109, 116, 124, 143, 172, 196, 214, (1,146,33): 230, 246, 254, 255, 255, 251, 249, 245, 242, 233, 223, (1,146,44): 217, 211, 201, 190, 180, 174, 175, 181, 193, 205, 216, (1,146,55): 227, 243, 247, 251, 253, 252, 253, 254, 255, 254, 254, (1,146,66): 254, 254, 254, 254, 254, 254, 255, 254, 253, 253, 252, (1,146,77): 252, 252, 253, 254, 253, 252, 253, 254, 255, 254, 253, (1,146,88): 255, 255, 253, 242, 223, 213, 221, 237, 252, 254, 255, (1,146,99): 255, 255, 255, 255, 254, 255, 255, 254, 254, 253, 254, (1,146,110): 253, 254, 247, 252, 223, 134, 74, 77, 75, 75, 78, 79, (1,146,122): 79, 80, 80, 79, 80, 79, 77, 78, 78, 80, 79, 80, 78, 78, (1,146,136): 81, 78, 76, 76, 77, 80, 85, 89, 91, 98, 116, 130, 120, (1,146,149): 95, 81, 81, 80, 81, 79, 80, 80, 81, 83, 84, 83, 80, 76, (1,146,163): 72, 68, 66, 65, 65, 62, 64, 64, 65, 66, 66, 67, 67, 66, (1,146,177): 66, 65, 65, 65, 65, 66, 66, 66, 66, 66, 66, 67, 68, 70, (1,146,191): 70, 74, 75, 74, 75, 73, 71, 69, 67, 69, 67, 64, 66, 73, (1,146,205): 86, 103, 114, 127, 125, 116, 104, 90, 79, 71, 69, 78, (1,146,217): 87, 96, 101, 102, 98, 88, 75, 57, 54, 51, (1,147,0): 103, 104, 104, 106, 108, 110, 109, 110, 108, 108, 106, (1,147,11): 105, 104, 104, 103, 105, 103, 104, 103, 103, 102, 102, (1,147,22): 102, 103, 103, 102, 104, 113, 125, 143, 166, 185, 209, (1,147,33): 226, 244, 253, 254, 252, 246, 242, 235, 229, 218, 209, (1,147,44): 203, 197, 188, 180, 184, 184, 191, 200, 213, 224, 233, (1,147,55): 241, 244, 247, 251, 253, 252, 252, 254, 255, 254, 254, (1,147,66): 254, 254, 254, 254, 254, 254, 254, 254, 253, 252, 252, (1,147,77): 252, 251, 252, 253, 252, 251, 252, 254, 255, 254, 253, (1,147,88): 253, 255, 253, 243, 225, 217, 226, 242, 252, 254, 255, (1,147,99): 255, 255, 255, 255, 254, 255, 255, 254, 254, 253, 254, (1,147,110): 252, 253, 250, 254, 223, 133, 74, 77, 77, 77, 78, 79, (1,147,122): 80, 80, 80, 79, 79, 78, 77, 78, 77, 79, 78, 80, 79, 79, (1,147,136): 83, 80, 79, 82, 83, 85, 91, 99, 114, 128, 148, 156, (1,147,148): 143, 117, 95, 87, 79, 78, 75, 74, 75, 78, 81, 83, 84, (1,147,161): 82, 79, 75, 71, 69, 67, 67, 62, 64, 64, 65, 66, 66, 67, (1,147,175): 67, 67, 66, 65, 65, 65, 65, 66, 67, 67, 66, 66, 67, 67, (1,147,189): 69, 70, 71, 71, 72, 72, 73, 72, 71, 69, 68, 68, 67, 64, (1,147,203): 66, 73, 88, 105, 117, 122, 121, 113, 100, 85, 73, 65, (1,147,215): 63, 72, 82, 94, 101, 103, 99, 88, 73, 59, 55, 52, (1,148,0): 103, 104, 104, 106, 108, 110, 110, 111, 110, 109, 107, (1,148,11): 106, 104, 104, 104, 105, 103, 104, 102, 102, 101, 101, (1,148,22): 102, 103, 104, 102, 103, 113, 125, 141, 160, 175, 204, (1,148,33): 223, 241, 251, 251, 249, 242, 237, 228, 219, 208, 201, (1,148,44): 196, 190, 183, 178, 190, 195, 206, 216, 227, 238, 245, (1,148,55): 249, 244, 247, 250, 252, 251, 252, 254, 255, 254, 254, (1,148,66): 254, 254, 254, 254, 254, 254, 254, 254, 252, 252, 252, (1,148,77): 251, 251, 252, 252, 251, 251, 252, 254, 255, 254, 253, (1,148,88): 253, 253, 252, 247, 236, 229, 234, 245, 252, 254, 255, (1,148,99): 255, 255, 255, 255, 254, 255, 255, 253, 254, 254, 254, (1,148,110): 252, 252, 252, 255, 224, 134, 75, 79, 79, 80, 78, 79, (1,148,122): 81, 81, 81, 79, 78, 77, 77, 78, 77, 79, 78, 80, 79, 81, (1,148,136): 85, 82, 83, 88, 88, 89, 97, 107, 142, 162, 174, 169, (1,148,148): 158, 145, 120, 95, 80, 78, 73, 71, 71, 74, 78, 80, 82, (1,148,161): 80, 78, 75, 73, 71, 69, 69, 62, 64, 64, 65, 66, 66, 67, (1,148,175): 67, 67, 67, 66, 65, 65, 66, 67, 67, 67, 67, 67, 67, 68, (1,148,189): 69, 70, 71, 69, 70, 70, 71, 70, 69, 68, 66, 65, 65, 63, (1,148,203): 66, 73, 86, 101, 111, 116, 115, 108, 96, 80, 68, 61, (1,148,215): 61, 67, 78, 92, 99, 102, 98, 86, 71, 53, 50, 47, (2,0,0): 45, 45, 46, 47, 46, 46, 47, 47, 47, 47, 45, 45, 45, 45, 45, (2,0,15): 45, 47, 46, 46, 45, 45, 46, 46, 47, 45, 45, 45, 45, 45, (2,0,29): 45, 45, 45, 43, 43, 43, 42, 42, 41, 41, 41, 41, 41, 41, (2,0,43): 41, 41, 41, 41, 41, 36, 37, 37, 38, 39, 40, 41, 41, 44, (2,0,57): 44, 45, 46, 46, 47, 48, 46, 48, 48, 50, 52, 52, 53, 54, (2,0,71): 54, 53, 53, 51, 50, 51, 51, 52, 53, 49, 50, 52, 53, 54, (2,0,85): 56, 57, 55, 58, 57, 58, 59, 62, 63, 64, 64, 76, 76, 75, (2,0,99): 73, 73, 68, 66, 65, 65, 64, 63, 63, 64, 62, 60, 55, 47, (2,0,113): 46, 46, 45, 45, 45, 45, 45, 44, 44, 45, 44, 42, 41, 42, (2,0,127): 44, 45, 47, 47, 46, 44, 43, 43, 43, 43, 43, 42, 42, 42, (2,0,141): 43, 44, 47, 54, 53, 50, 49, 51, 51, 52, 52, 48, 50, 56, (2,0,155): 59, 57, 50, 42, 38, 50, 52, 52, 50, 49, 48, 45, 45, 47, (2,0,169): 47, 47, 46, 45, 44, 44, 44, 45, 45, 45, 45, 45, 45, 45, (2,0,183): 45, 45, 44, 43, 42, 43, 49, 57, 60, 67, 72, 77, 79, 91, (2,0,197): 110, 131, 144, 163, 174, 186, 189, 173, 145, 118, 104, (2,0,208): 103, 94, 94, 98, 111, 130, 144, 152, 159, 154, 147, 129, (2,0,220): 108, 85, 69, 69, 91, 98, 98, (2,1,0): 45, 45, 46, 46, 45, 46, 47, 47, 47, 47, 45, 45, 45, 45, 45, (2,1,15): 45, 46, 46, 45, 45, 45, 45, 46, 46, 45, 45, 45, 45, 45, (2,1,29): 45, 45, 45, 43, 43, 42, 42, 42, 41, 41, 41, 42, 42, 42, (2,1,43): 42, 42, 42, 42, 42, 37, 38, 38, 39, 40, 41, 42, 42, 44, (2,1,57): 44, 45, 45, 46, 47, 48, 46, 47, 47, 49, 51, 51, 52, 53, (2,1,71): 53, 52, 52, 49, 49, 49, 50, 51, 52, 48, 49, 51, 52, 54, (2,1,85): 52, 53, 51, 52, 52, 52, 55, 58, 60, 61, 64, 73, 73, 73, (2,1,99): 72, 71, 68, 67, 67, 65, 64, 63, 63, 64, 62, 60, 54, 47, (2,1,113): 46, 45, 45, 45, 44, 45, 45, 44, 43, 45, 43, 42, 41, 42, (2,1,127): 44, 45, 47, 46, 46, 44, 43, 43, 43, 43, 42, 42, 42, 42, (2,1,141): 43, 44, 47, 53, 53, 51, 49, 51, 52, 52, 53, 50, 54, 56, (2,1,155): 59, 58, 51, 42, 41, 51, 53, 52, 51, 50, 49, 46, 46, 47, (2,1,169): 47, 47, 46, 45, 44, 44, 44, 45, 45, 45, 45, 45, 45, 45, (2,1,183): 45, 45, 45, 43, 42, 43, 48, 55, 58, 61, 65, 73, 76, 86, (2,1,197): 106, 125, 142, 162, 174, 185, 187, 169, 141, 117, 105, (2,1,208): 101, 95, 95, 95, 102, 116, 136, 149, 151, 148, 143, 131, (2,1,220): 111, 89, 76, 74, 90, 97, 97, (2,2,0): 44, 44, 45, 46, 45, 45, 46, 46, 46, 46, 46, 46, 44, 44, 44, (2,2,15): 44, 46, 46, 45, 45, 45, 45, 46, 47, 46, 46, 46, 46, 46, (2,2,29): 46, 46, 46, 44, 43, 43, 43, 42, 42, 42, 42, 43, 43, 43, (2,2,43): 43, 43, 43, 43, 42, 39, 39, 40, 41, 41, 42, 42, 43, 44, (2,2,57): 44, 44, 45, 46, 47, 47, 46, 46, 46, 48, 50, 52, 53, 51, (2,2,71): 51, 49, 49, 49, 49, 47, 48, 49, 50, 49, 49, 50, 50, 51, (2,2,85): 50, 50, 48, 45, 43, 46, 50, 54, 58, 61, 62, 69, 70, 71, (2,2,99): 70, 70, 69, 68, 68, 64, 63, 64, 64, 64, 61, 59, 53, 46, (2,2,113): 45, 45, 44, 45, 45, 44, 44, 45, 45, 44, 43, 44, 42, 42, (2,2,127): 43, 45, 46, 46, 46, 43, 43, 43, 43, 44, 44, 43, 43, 44, (2,2,141): 44, 43, 46, 54, 53, 51, 50, 52, 53, 53, 53, 56, 59, 61, (2,2,155): 61, 59, 52, 44, 44, 52, 55, 54, 52, 49, 48, 47, 47, 47, (2,2,169): 47, 47, 46, 45, 44, 44, 44, 45, 45, 45, 45, 45, 45, 45, (2,2,183): 45, 47, 46, 45, 43, 43, 47, 52, 54, 55, 57, 64, 68, 77, (2,2,197): 96, 118, 136, 158, 173, 185, 183, 164, 137, 118, 107, (2,2,208): 101, 99, 99, 94, 92, 101, 121, 136, 134, 136, 133, 124, (2,2,220): 108, 88, 77, 76, 91, 96, 96, (2,3,0): 43, 44, 44, 45, 44, 45, 45, 45, 45, 45, 45, 45, 43, 43, 43, (2,3,15): 43, 45, 45, 44, 44, 44, 44, 45, 45, 46, 46, 46, 46, 46, (2,3,29): 46, 46, 46, 43, 43, 43, 42, 42, 42, 41, 41, 44, 44, 44, (2,3,43): 44, 44, 44, 44, 44, 43, 41, 41, 42, 42, 43, 43, 43, 43, (2,3,57): 43, 44, 45, 46, 46, 47, 45, 45, 45, 46, 48, 50, 50, 49, (2,3,71): 49, 49, 47, 46, 47, 47, 46, 48, 48, 50, 52, 52, 51, 50, (2,3,85): 49, 47, 45, 41, 39, 42, 45, 51, 56, 60, 62, 67, 67, 67, (2,3,99): 67, 68, 67, 67, 65, 64, 63, 64, 64, 64, 61, 57, 51, 45, (2,3,113): 44, 44, 44, 44, 44, 44, 43, 45, 44, 43, 42, 43, 42, 41, (2,3,127): 42, 44, 46, 46, 45, 43, 43, 42, 42, 43, 43, 42, 42, 43, (2,3,141): 44, 45, 45, 54, 53, 50, 52, 54, 56, 55, 55, 60, 63, 64, (2,3,155): 62, 58, 52, 46, 45, 53, 54, 55, 52, 50, 49, 48, 48, 47, (2,3,169): 47, 47, 46, 45, 44, 44, 45, 46, 46, 46, 46, 46, 46, 46, (2,3,183): 46, 48, 48, 47, 45, 44, 45, 49, 50, 49, 51, 55, 59, 68, (2,3,197): 85, 108, 130, 152, 171, 181, 181, 162, 139, 121, 112, (2,3,208): 104, 103, 102, 94, 86, 90, 102, 113, 120, 119, 118, 111, (2,3,220): 97, 84, 76, 76, 89, 93, 94, (2,4,0): 45, 45, 43, 44, 45, 46, 44, 45, 44, 44, 43, 43, 43, 43, 41, (2,4,15): 41, 44, 44, 43, 43, 43, 43, 44, 44, 45, 45, 45, 45, 45, (2,4,29): 45, 45, 45, 43, 43, 42, 42, 42, 41, 41, 41, 44, 44, 44, (2,4,43): 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 45, 45, 45, 45, (2,4,57): 45, 46, 46, 47, 48, 49, 47, 45, 44, 46, 47, 47, 48, 48, (2,4,71): 46, 46, 46, 46, 45, 46, 47, 48, 49, 54, 53, 53, 53, 51, (2,4,85): 49, 47, 44, 41, 41, 42, 44, 50, 56, 61, 63, 66, 67, 66, (2,4,99): 66, 66, 65, 64, 62, 63, 60, 62, 62, 62, 58, 53, 48, 45, (2,4,113): 44, 44, 44, 45, 45, 45, 45, 46, 45, 44, 43, 44, 43, 42, (2,4,127): 42, 44, 46, 45, 45, 45, 44, 44, 44, 44, 44, 44, 44, 44, (2,4,141): 45, 46, 46, 52, 52, 49, 51, 55, 57, 56, 55, 59, 63, 67, (2,4,155): 64, 59, 50, 45, 43, 51, 53, 53, 51, 50, 49, 48, 47, 47, (2,4,169): 47, 47, 46, 46, 45, 45, 45, 46, 46, 46, 46, 46, 46, 46, (2,4,183): 46, 48, 48, 48, 46, 44, 44, 47, 46, 46, 46, 49, 51, 59, (2,4,197): 75, 101, 128, 151, 170, 183, 180, 166, 148, 131, 119, (2,4,208): 109, 104, 101, 96, 89, 88, 87, 85, 99, 98, 97, 92, 84, (2,4,221): 77, 77, 80, 86, 88, 90, (2,5,0): 44, 44, 43, 43, 44, 45, 44, 44, 43, 43, 42, 42, 42, 42, 40, (2,5,15): 42, 43, 43, 42, 41, 41, 42, 43, 43, 43, 43, 43, 43, 43, (2,5,29): 43, 43, 43, 42, 42, 42, 42, 41, 41, 41, 40, 43, 43, 43, (2,5,43): 43, 43, 43, 43, 43, 44, 44, 44, 44, 44, 44, 44, 44, 44, (2,5,57): 45, 45, 46, 47, 48, 48, 46, 44, 43, 44, 45, 46, 46, 46, (2,5,71): 46, 47, 45, 45, 46, 47, 46, 48, 49, 54, 54, 53, 54, 51, (2,5,85): 50, 48, 45, 43, 41, 42, 44, 49, 53, 58, 61, 64, 65, 65, (2,5,99): 64, 65, 62, 63, 60, 60, 59, 61, 61, 61, 56, 50, 44, 44, (2,5,113): 44, 43, 43, 45, 44, 44, 44, 45, 44, 44, 44, 43, 42, 41, (2,5,127): 42, 43, 45, 45, 45, 44, 44, 44, 43, 44, 43, 43, 43, 45, (2,5,141): 44, 47, 46, 52, 50, 50, 53, 57, 58, 58, 59, 57, 64, 71, (2,5,155): 69, 61, 52, 47, 45, 51, 53, 52, 51, 49, 48, 47, 47, 47, (2,5,169): 47, 47, 46, 46, 45, 45, 45, 47, 47, 47, 47, 47, 47, 47, (2,5,183): 47, 47, 48, 48, 47, 45, 44, 46, 44, 45, 41, 43, 48, 54, (2,5,197): 70, 100, 133, 159, 178, 188, 187, 175, 161, 143, 126, (2,5,208): 114, 104, 99, 96, 94, 88, 79, 70, 74, 74, 74, 73, 70, 69, (2,5,222): 73, 79, 83, 83, 85, (2,6,0): 43, 43, 44, 45, 44, 44, 45, 45, 42, 42, 42, 42, 41, 41, 41, (2,6,15): 41, 42, 44, 43, 43, 43, 43, 44, 44, 43, 43, 43, 43, 43, (2,6,29): 43, 43, 43, 44, 44, 44, 43, 43, 43, 42, 42, 45, 45, 45, (2,6,43): 45, 45, 45, 45, 43, 44, 44, 44, 43, 43, 43, 43, 43, 44, (2,6,57): 44, 45, 46, 47, 47, 48, 46, 43, 44, 45, 46, 47, 45, 45, (2,6,71): 44, 46, 46, 47, 45, 47, 48, 50, 51, 54, 52, 53, 52, 50, (2,6,85): 50, 46, 44, 44, 42, 41, 42, 46, 50, 55, 56, 60, 62, 62, (2,6,99): 62, 64, 63, 64, 62, 58, 58, 60, 60, 59, 54, 47, 41, 45, (2,6,113): 45, 45, 44, 46, 46, 45, 45, 46, 46, 45, 45, 44, 42, 42, (2,6,127): 41, 43, 45, 45, 44, 46, 46, 45, 45, 45, 45, 44, 44, 47, (2,6,141): 46, 48, 47, 50, 49, 49, 54, 58, 60, 61, 61, 65, 74, 82, (2,6,155): 81, 73, 62, 55, 54, 51, 50, 49, 48, 47, 46, 47, 46, 46, (2,6,169): 46, 47, 46, 46, 45, 45, 45, 47, 47, 47, 47, 47, 47, 47, (2,6,183): 47, 46, 47, 48, 47, 45, 44, 45, 44, 43, 41, 41, 45, 52, (2,6,197): 70, 106, 141, 171, 190, 199, 198, 189, 175, 154, 130, (2,6,208): 113, 103, 99, 95, 93, 87, 78, 72, 69, 71, 72, 73, 72, 71, (2,6,222): 75, 77, 79, 78, 79, (2,7,0): 43, 43, 44, 44, 45, 44, 45, 45, 42, 42, 42, 42, 41, 41, 41, (2,7,15): 42, 44, 43, 43, 42, 42, 43, 43, 44, 42, 42, 42, 42, 42, (2,7,29): 42, 42, 42, 44, 44, 44, 43, 43, 42, 42, 42, 44, 44, 44, (2,7,43): 44, 44, 44, 44, 44, 44, 43, 43, 43, 43, 43, 43, 43, 44, (2,7,57): 44, 45, 46, 46, 47, 48, 48, 44, 43, 44, 45, 46, 46, 46, (2,7,71): 44, 47, 46, 47, 47, 49, 49, 50, 51, 52, 52, 53, 52, 50, (2,7,85): 50, 48, 45, 46, 42, 41, 40, 44, 47, 52, 53, 58, 59, 62, (2,7,99): 63, 64, 65, 65, 64, 59, 59, 59, 59, 58, 52, 45, 40, 45, (2,7,113): 45, 44, 46, 46, 45, 45, 47, 46, 46, 46, 45, 43, 42, 41, (2,7,127): 43, 45, 45, 45, 44, 46, 45, 45, 45, 45, 46, 46, 46, 47, (2,7,141): 47, 49, 49, 50, 49, 52, 54, 59, 62, 62, 65, 76, 84, 92, (2,7,155): 93, 84, 73, 65, 63, 50, 50, 49, 48, 46, 45, 46, 46, 46, (2,7,169): 46, 47, 46, 46, 45, 45, 45, 47, 47, 47, 47, 47, 47, 47, (2,7,183): 47, 45, 46, 48, 48, 46, 45, 45, 44, 44, 41, 42, 48, 54, (2,7,197): 72, 110, 148, 182, 198, 207, 204, 198, 182, 159, 132, (2,7,208): 110, 100, 97, 94, 89, 86, 80, 75, 82, 85, 87, 88, 85, 84, (2,7,222): 83, 83, 76, 74, 74, (2,8,0): 47, 47, 47, 45, 45, 45, 43, 43, 44, 44, 42, 41, 41, 41, 40, (2,8,15): 40, 42, 42, 42, 42, 42, 42, 42, 43, 42, 42, 42, 42, 42, (2,8,29): 42, 42, 42, 42, 42, 42, 43, 43, 44, 44, 45, 44, 44, 44, (2,8,43): 44, 44, 44, 44, 44, 41, 42, 43, 44, 44, 44, 44, 44, 44, (2,8,57): 44, 44, 44, 45, 46, 47, 47, 45, 44, 45, 46, 47, 46, 46, (2,8,71): 46, 46, 44, 45, 46, 47, 48, 49, 50, 52, 53, 54, 53, 51, (2,8,85): 49, 48, 43, 46, 45, 43, 44, 47, 48, 49, 48, 51, 52, 56, (2,8,99): 58, 61, 62, 63, 64, 63, 65, 65, 62, 56, 49, 46, 44, 46, (2,8,113): 45, 44, 46, 45, 45, 46, 47, 44, 44, 45, 45, 44, 43, 42, (2,8,127): 42, 43, 43, 45, 44, 44, 44, 45, 45, 47, 47, 47, 48, 51, (2,8,141): 50, 53, 52, 53, 52, 57, 62, 64, 62, 65, 71, 82, 95, 102, (2,8,155): 104, 100, 94, 83, 70, 66, 61, 53, 47, 44, 43, 44, 43, 46, (2,8,169): 46, 45, 45, 45, 44, 43, 43, 46, 46, 46, 46, 46, 46, 46, (2,8,183): 46, 47, 47, 47, 47, 47, 47, 47, 47, 48, 51, 50, 47, 54, (2,8,197): 79, 121, 159, 187, 207, 217, 211, 198, 183, 167, 148, (2,8,208): 116, 100, 93, 88, 85, 86, 92, 98, 110, 120, 124, 117, (2,8,220): 111, 104, 95, 80, 70, 68, 71, (2,9,0): 47, 47, 47, 47, 45, 45, 45, 43, 44, 43, 41, 41, 40, 40, 40, (2,9,15): 40, 41, 41, 41, 41, 42, 42, 42, 42, 42, 42, 42, 42, 42, (2,9,29): 42, 42, 42, 42, 42, 42, 43, 43, 43, 44, 44, 44, 44, 44, (2,9,43): 44, 44, 44, 44, 44, 43, 41, 42, 43, 44, 44, 43, 43, 43, (2,9,57): 43, 43, 43, 44, 45, 46, 47, 46, 46, 47, 46, 47, 48, 48, (2,9,71): 45, 46, 46, 46, 45, 46, 48, 50, 51, 53, 53, 54, 54, 52, (2,9,85): 50, 48, 47, 48, 46, 45, 45, 46, 49, 49, 49, 51, 51, 53, (2,9,99): 56, 58, 60, 61, 61, 64, 64, 65, 62, 56, 50, 45, 45, 46, (2,9,113): 45, 46, 45, 45, 45, 46, 46, 44, 44, 45, 44, 43, 43, 42, (2,9,127): 44, 43, 43, 44, 44, 44, 43, 45, 45, 47, 47, 49, 49, 50, (2,9,141): 54, 55, 54, 57, 55, 60, 64, 66, 65, 70, 78, 92, 102, 111, (2,9,155): 111, 109, 101, 90, 77, 65, 61, 55, 52, 49, 46, 44, 41, (2,9,168): 45, 45, 44, 43, 44, 43, 43, 43, 46, 46, 46, 46, 46, 46, (2,9,182): 46, 46, 47, 47, 47, 47, 47, 47, 47, 49, 52, 55, 51, 51, (2,9,196): 58, 84, 124, 158, 185, 202, 212, 207, 194, 184, 173, 158, (2,9,208): 128, 113, 106, 106, 104, 109, 118, 127, 127, 135, 137, (2,9,219): 129, 121, 113, 101, 84, 67, 62, 67, (2,10,0): 47, 47, 47, 47, 47, 45, 45, 45, 43, 43, 43, 42, 40, 39, (2,10,14): 39, 39, 41, 43, 43, 43, 42, 42, 42, 42, 44, 44, 44, 44, (2,10,28): 44, 44, 44, 44, 43, 43, 44, 44, 44, 45, 45, 45, 45, 45, (2,10,42): 45, 46, 46, 46, 46, 44, 43, 43, 44, 45, 45, 45, 45, 44, (2,10,56): 44, 44, 44, 44, 45, 46, 47, 46, 46, 46, 47, 48, 49, 47, (2,10,70): 47, 47, 48, 46, 46, 46, 48, 49, 51, 52, 53, 54, 55, 54, (2,10,84): 54, 53, 50, 46, 48, 46, 44, 47, 47, 48, 48, 49, 51, 52, (2,10,98): 51, 51, 54, 56, 58, 58, 64, 64, 66, 63, 58, 51, 46, 46, (2,10,112): 47, 46, 46, 45, 45, 45, 47, 48, 45, 45, 46, 46, 45, 44, (2,10,126): 43, 43, 42, 42, 44, 43, 45, 45, 45, 45, 48, 48, 50, 51, (2,10,140): 52, 56, 58, 57, 61, 59, 62, 68, 70, 71, 77, 86, 103, (2,10,153): 113, 122, 123, 119, 111, 98, 85, 68, 64, 59, 56, 52, 46, (2,10,166): 43, 38, 41, 41, 42, 42, 42, 42, 45, 45, 45, 45, 45, 45, (2,10,180): 45, 45, 45, 45, 46, 46, 46, 46, 46, 46, 46, 50, 57, 57, (2,10,194): 52, 51, 62, 89, 124, 154, 177, 191, 199, 195, 187, 182, (2,10,206): 178, 171, 154, 143, 135, 130, 126, 126, 133, 141, 148, (2,10,217): 152, 148, 138, 131, 123, 105, 84, 62, 58, 62, (2,11,0): 48, 48, 48, 48, 48, 48, 46, 46, 43, 43, 42, 42, 39, 39, (2,11,14): 39, 41, 43, 42, 42, 42, 42, 41, 41, 41, 43, 43, 43, 43, (2,11,28): 43, 43, 43, 43, 43, 43, 43, 43, 43, 44, 44, 44, 44, 45, (2,11,42): 45, 45, 45, 46, 46, 46, 42, 43, 44, 44, 44, 44, 43, 43, (2,11,56): 43, 43, 43, 43, 44, 45, 46, 47, 47, 48, 49, 49, 49, 49, (2,11,70): 49, 47, 47, 47, 47, 45, 46, 48, 49, 50, 51, 52, 53, 54, (2,11,84): 54, 52, 51, 48, 50, 48, 47, 47, 48, 47, 49, 49, 52, 52, (2,11,98): 50, 49, 50, 53, 55, 58, 62, 64, 65, 62, 58, 53, 48, 46, (2,11,112): 45, 45, 45, 44, 44, 44, 46, 46, 44, 44, 46, 45, 44, 43, (2,11,126): 45, 44, 41, 41, 43, 43, 44, 44, 45, 44, 47, 49, 49, 53, (2,11,140): 55, 58, 60, 60, 64, 60, 62, 67, 73, 76, 86, 94, 111, (2,11,153): 121, 130, 131, 128, 120, 106, 93, 74, 70, 64, 58, 54, (2,11,165): 48, 44, 40, 41, 40, 41, 40, 41, 41, 44, 45, 44, 44, 44, (2,11,179): 44, 44, 44, 44, 44, 45, 45, 45, 45, 45, 45, 45, 49, 58, (2,11,193): 56, 49, 49, 63, 88, 122, 147, 163, 176, 182, 178, 175, (2,11,205): 178, 182, 179, 171, 163, 158, 152, 143, 137, 139, 144, (2,11,216): 154, 155, 151, 141, 132, 124, 105, 79, 59, 56, 57, (2,12,0): 50, 50, 50, 50, 48, 48, 46, 46, 45, 45, 43, 42, 42, 41, (2,12,14): 41, 41, 43, 43, 43, 42, 42, 41, 41, 41, 43, 43, 43, 43, (2,12,28): 43, 43, 43, 43, 43, 43, 43, 43, 43, 42, 42, 42, 43, 44, (2,12,42): 44, 45, 45, 46, 46, 46, 42, 43, 43, 43, 43, 43, 42, 41, (2,12,56): 42, 42, 42, 42, 43, 44, 46, 47, 49, 48, 49, 50, 50, 49, (2,12,70): 48, 48, 48, 46, 46, 46, 47, 48, 47, 48, 51, 52, 53, 54, (2,12,84): 54, 52, 52, 48, 50, 48, 48, 47, 49, 49, 50, 50, 54, 53, (2,12,98): 53, 51, 51, 53, 54, 56, 59, 61, 62, 61, 56, 53, 48, 47, (2,12,112): 45, 45, 46, 45, 44, 44, 47, 47, 46, 45, 47, 46, 45, 44, (2,12,126): 44, 44, 43, 42, 42, 42, 43, 43, 44, 46, 48, 49, 52, 54, (2,12,140): 57, 61, 64, 63, 65, 61, 63, 69, 76, 81, 93, 104, 119, (2,12,153): 128, 135, 135, 131, 125, 113, 101, 82, 76, 67, 58, 54, (2,12,165): 50, 47, 45, 41, 40, 40, 39, 40, 42, 44, 45, 44, 44, 44, (2,12,179): 44, 44, 44, 44, 44, 45, 45, 45, 45, 45, 45, 45, 49, 58, (2,12,193): 53, 43, 44, 56, 81, 112, 135, 150, 160, 165, 163, 162, (2,12,205): 169, 177, 179, 168, 167, 168, 165, 156, 146, 144, 148, (2,12,216): 150, 149, 143, 133, 129, 120, 100, 73, 57, 56, 57, (2,13,0): 51, 51, 51, 51, 49, 49, 47, 47, 46, 46, 44, 43, 43, 43, (2,13,14): 42, 42, 44, 44, 44, 43, 42, 41, 41, 41, 42, 42, 42, 42, (2,13,28): 42, 42, 42, 42, 43, 43, 42, 42, 42, 41, 41, 41, 43, 43, (2,13,42): 43, 44, 45, 45, 46, 46, 42, 42, 43, 43, 42, 42, 41, 40, (2,13,56): 43, 43, 42, 43, 44, 45, 46, 47, 50, 50, 49, 50, 50, 49, (2,13,70): 48, 47, 48, 47, 45, 45, 46, 47, 46, 46, 49, 50, 51, 52, (2,13,84): 52, 52, 52, 47, 49, 47, 47, 45, 46, 47, 48, 49, 53, 53, (2,13,98): 53, 52, 52, 52, 52, 52, 53, 56, 58, 59, 55, 52, 49, 48, (2,13,112): 46, 43, 44, 44, 43, 43, 46, 46, 45, 45, 46, 45, 44, 44, (2,13,126): 43, 43, 42, 42, 41, 41, 43, 42, 45, 45, 49, 51, 54, 56, (2,13,140): 60, 63, 66, 67, 65, 62, 67, 74, 82, 90, 101, 114, 125, (2,13,153): 131, 138, 136, 132, 126, 117, 106, 92, 83, 74, 64, 58, (2,13,165): 53, 50, 49, 44, 42, 41, 39, 41, 42, 43, 44, 43, 43, 43, (2,13,179): 43, 43, 43, 43, 43, 44, 44, 44, 44, 44, 44, 44, 46, 55, (2,13,193): 49, 40, 38, 49, 71, 100, 121, 138, 148, 154, 152, 151, (2,13,205): 158, 165, 173, 173, 176, 177, 172, 159, 145, 141, 144, (2,13,216): 142, 143, 138, 130, 123, 114, 93, 69, 54, 53, 53, (2,14,0): 51, 51, 51, 51, 49, 49, 49, 49, 47, 47, 47, 47, 44, 44, (2,14,14): 43, 43, 46, 45, 45, 44, 43, 42, 42, 41, 42, 42, 42, 42, (2,14,28): 42, 42, 42, 42, 42, 42, 42, 41, 41, 41, 40, 40, 42, 42, (2,14,42): 43, 44, 45, 45, 46, 46, 42, 42, 42, 42, 42, 41, 40, 39, (2,14,56): 43, 43, 43, 43, 44, 45, 47, 47, 50, 51, 51, 52, 50, 49, (2,14,70): 49, 48, 47, 47, 47, 46, 45, 45, 46, 47, 48, 48, 51, 52, (2,14,84): 53, 51, 50, 48, 46, 43, 43, 43, 44, 45, 46, 46, 52, 53, (2,14,98): 51, 51, 50, 49, 50, 48, 49, 52, 55, 57, 54, 53, 50, 50, (2,14,112): 45, 45, 44, 43, 42, 42, 45, 45, 46, 46, 45, 45, 46, 45, (2,14,126): 44, 44, 41, 41, 41, 40, 42, 42, 44, 44, 49, 52, 55, 57, (2,14,140): 62, 65, 70, 70, 65, 64, 70, 79, 88, 98, 110, 121, 129, (2,14,153): 134, 139, 136, 132, 128, 119, 110, 97, 91, 81, 73, 67, (2,14,165): 59, 54, 52, 47, 44, 43, 39, 41, 41, 42, 44, 42, 42, 42, (2,14,179): 42, 42, 42, 42, 42, 43, 43, 43, 43, 43, 43, 43, 45, 50, (2,14,193): 45, 37, 33, 38, 59, 87, 109, 125, 134, 140, 138, 137, (2,14,205): 142, 148, 157, 171, 174, 173, 165, 151, 135, 132, 134, (2,14,216): 133, 136, 134, 123, 116, 107, 87, 66, 51, 48, 48, (2,15,0): 49, 49, 49, 49, 47, 47, 47, 47, 46, 46, 46, 45, 45, 43, (2,15,14): 44, 44, 45, 44, 44, 43, 44, 43, 42, 42, 42, 42, 42, 42, (2,15,28): 42, 42, 44, 42, 44, 42, 44, 41, 41, 40, 40, 39, 41, 42, (2,15,42): 43, 41, 44, 43, 44, 44, 42, 42, 42, 42, 41, 40, 39, 39, (2,15,56): 44, 42, 42, 42, 43, 44, 45, 46, 49, 49, 50, 50, 49, 48, (2,15,70): 47, 47, 47, 47, 46, 46, 44, 45, 46, 46, 45, 46, 49, 49, (2,15,84): 50, 50, 49, 47, 43, 44, 41, 42, 43, 45, 46, 47, 50, 51, (2,15,98): 50, 50, 51, 49, 49, 47, 47, 50, 54, 55, 55, 52, 50, 49, (2,15,112): 47, 46, 45, 44, 44, 44, 46, 47, 46, 46, 47, 46, 45, 45, (2,15,126): 44, 44, 43, 43, 42, 42, 43, 42, 44, 46, 50, 53, 54, 58, (2,15,140): 61, 66, 69, 71, 67, 68, 74, 84, 96, 105, 117, 128, 133, (2,15,153): 137, 139, 135, 132, 127, 121, 111, 98, 93, 85, 79, 72, (2,15,165): 65, 56, 51, 46, 46, 44, 41, 41, 41, 42, 43, 44, 42, 44, (2,15,179): 42, 44, 44, 44, 44, 45, 45, 45, 45, 45, 45, 45, 47, 47, (2,15,193): 43, 37, 33, 37, 56, 81, 103, 116, 122, 126, 122, 123, (2,15,205): 130, 136, 144, 153, 157, 154, 149, 138, 128, 130, 137, (2,15,216): 127, 133, 130, 120, 111, 102, 83, 63, 50, 47, 48, (2,16,0): 43, 43, 43, 44, 44, 44, 45, 45, 46, 47, 47, 47, 46, 44, (2,16,14): 44, 44, 45, 45, 44, 43, 44, 44, 43, 43, 45, 45, 47, 47, (2,16,28): 46, 45, 46, 43, 47, 45, 47, 45, 45, 45, 43, 43, 42, 42, (2,16,42): 42, 41, 43, 41, 42, 42, 45, 45, 45, 46, 44, 45, 43, 43, (2,16,56): 42, 41, 42, 43, 42, 44, 42, 43, 45, 45, 48, 48, 48, 47, (2,16,70): 46, 45, 46, 45, 47, 46, 46, 47, 47, 46, 41, 41, 42, 45, (2,16,84): 45, 46, 46, 45, 41, 39, 39, 38, 40, 44, 48, 48, 48, 47, (2,16,98): 49, 51, 51, 48, 47, 45, 47, 46, 49, 50, 50, 48, 46, 44, (2,16,112): 48, 50, 49, 48, 48, 47, 46, 46, 49, 48, 49, 48, 47, 46, (2,16,126): 45, 45, 43, 51, 46, 41, 45, 45, 45, 50, 47, 52, 57, 63, (2,16,140): 65, 66, 67, 69, 73, 80, 89, 97, 106, 113, 124, 130, 135, (2,16,153): 137, 138, 140, 136, 130, 123, 117, 105, 95, 88, 85, 83, (2,16,165): 78, 69, 61, 54, 51, 46, 42, 41, 43, 43, 42, 45, 42, 44, (2,16,179): 41, 43, 44, 45, 45, 46, 46, 48, 48, 49, 49, 49, 48, 45, (2,16,193): 43, 40, 35, 42, 64, 88, 103, 117, 115, 118, 119, 118, (2,16,205): 117, 123, 134, 143, 143, 138, 131, 125, 124, 123, 126, (2,16,216): 125, 126, 124, 117, 109, 99, 85, 70, 61, 51, 46, (2,17,0): 42, 43, 43, 43, 44, 44, 44, 45, 46, 46, 47, 47, 46, 45, (2,17,14): 44, 44, 44, 44, 44, 44, 43, 42, 43, 43, 45, 46, 48, 47, (2,17,28): 49, 47, 46, 45, 47, 47, 47, 47, 45, 45, 43, 43, 42, 42, (2,17,42): 41, 41, 42, 42, 41, 42, 46, 48, 46, 46, 44, 44, 42, 43, (2,17,56): 42, 40, 41, 40, 41, 42, 41, 42, 44, 44, 46, 46, 46, 45, (2,17,70): 46, 46, 46, 45, 46, 46, 46, 46, 47, 46, 42, 41, 43, 43, (2,17,84): 45, 44, 45, 45, 43, 41, 40, 39, 41, 45, 49, 47, 47, 45, (2,17,98): 48, 50, 52, 51, 50, 49, 46, 47, 46, 48, 49, 49, 47, 49, (2,17,112): 50, 50, 50, 48, 48, 47, 47, 46, 49, 47, 48, 46, 46, 44, (2,17,126): 44, 44, 44, 49, 45, 43, 46, 46, 42, 44, 49, 53, 58, 61, (2,17,140): 64, 65, 67, 69, 72, 82, 93, 102, 112, 119, 127, 134, (2,17,152): 136, 138, 141, 141, 137, 131, 125, 118, 105, 96, 90, 88, (2,17,164): 88, 83, 74, 67, 59, 55, 51, 45, 43, 42, 43, 42, 43, 44, (2,17,178): 44, 44, 44, 45, 48, 48, 48, 48, 49, 49, 49, 51, 51, 49, (2,17,192): 49, 45, 41, 37, 44, 66, 93, 105, 111, 108, 110, 112, (2,17,204): 112, 112, 119, 128, 135, 132, 129, 123, 120, 119, 121, (2,17,215): 124, 124, 127, 123, 117, 110, 101, 87, 72, 59, 51, 45, (2,18,0): 44, 44, 44, 44, 45, 45, 46, 46, 47, 47, 48, 48, 48, 47, (2,18,14): 46, 45, 45, 45, 44, 43, 44, 43, 44, 44, 46, 46, 49, 48, (2,18,28): 47, 46, 47, 46, 47, 47, 45, 45, 45, 45, 43, 43, 43, 43, (2,18,42): 42, 42, 41, 42, 42, 43, 45, 47, 47, 47, 45, 44, 42, 42, (2,18,56): 43, 42, 43, 42, 43, 42, 43, 44, 45, 45, 46, 46, 47, 46, (2,18,70): 45, 45, 46, 45, 46, 46, 46, 46, 47, 46, 43, 43, 43, 45, (2,18,84): 47, 46, 47, 46, 44, 42, 40, 40, 41, 42, 45, 44, 44, 45, (2,18,98): 48, 52, 54, 53, 52, 52, 50, 50, 50, 51, 50, 51, 53, 53, (2,18,112): 50, 47, 49, 46, 47, 44, 46, 44, 46, 44, 45, 42, 44, 41, (2,18,126): 43, 43, 49, 49, 47, 47, 49, 49, 46, 45, 53, 56, 61, 63, (2,18,140): 65, 65, 67, 70, 72, 81, 92, 101, 110, 116, 123, 131, (2,18,152): 135, 137, 140, 140, 137, 131, 125, 120, 109, 101, 97, (2,18,163): 96, 96, 93, 86, 80, 69, 63, 57, 50, 44, 41, 41, 40, 40, (2,18,177): 42, 42, 42, 42, 43, 46, 47, 46, 46, 48, 48, 48, 49, 49, (2,18,191): 48, 50, 46, 39, 34, 42, 65, 91, 105, 107, 106, 106, 110, (2,18,204): 110, 109, 113, 120, 124, 122, 120, 118, 118, 117, 119, (2,18,215): 121, 121, 125, 121, 116, 109, 99, 85, 70, 58, 50, 44, (2,19,0): 45, 45, 46, 46, 46, 47, 47, 47, 48, 49, 49, 50, 50, 49, (2,19,14): 48, 48, 47, 46, 46, 45, 45, 44, 46, 46, 48, 48, 48, 50, (2,19,28): 49, 48, 47, 46, 48, 46, 46, 46, 46, 44, 44, 42, 44, 44, (2,19,42): 43, 43, 43, 43, 43, 44, 47, 49, 48, 46, 46, 43, 43, 42, (2,19,56): 44, 44, 43, 44, 43, 45, 45, 46, 47, 47, 48, 47, 49, 48, (2,19,70): 46, 46, 46, 46, 47, 46, 46, 47, 48, 46, 46, 46, 46, 48, (2,19,84): 47, 46, 47, 46, 46, 43, 41, 41, 40, 41, 42, 41, 47, 47, (2,19,98): 51, 54, 56, 57, 55, 54, 56, 56, 57, 57, 55, 55, 55, 53, (2,19,112): 49, 47, 46, 46, 45, 44, 43, 43, 42, 42, 42, 41, 41, 40, (2,19,126): 40, 42, 49, 46, 46, 49, 45, 47, 51, 50, 55, 58, 61, 63, (2,19,140): 64, 66, 68, 72, 74, 81, 91, 98, 103, 109, 118, 124, 131, (2,19,153): 135, 137, 138, 135, 130, 126, 121, 111, 105, 103, 101, (2,19,164): 103, 101, 95, 91, 80, 74, 63, 54, 47, 42, 40, 37, 38, (2,19,177): 40, 40, 40, 40, 43, 44, 45, 43, 45, 45, 45, 47, 47, 47, (2,19,191): 45, 43, 43, 39, 34, 44, 65, 89, 99, 104, 104, 105, 108, (2,19,204): 109, 107, 109, 114, 116, 113, 112, 112, 115, 118, 120, (2,19,215): 120, 120, 122, 119, 113, 106, 98, 82, 71, 57, 48, 42, (2,20,0): 47, 47, 47, 48, 48, 48, 49, 49, 50, 50, 51, 52, 52, 52, (2,20,14): 51, 51, 49, 49, 48, 48, 48, 47, 46, 46, 48, 49, 49, 50, (2,20,28): 49, 48, 47, 46, 48, 46, 46, 46, 46, 44, 44, 44, 46, 44, (2,20,42): 44, 44, 44, 44, 45, 46, 48, 48, 48, 48, 48, 46, 46, 45, (2,20,56): 46, 47, 45, 45, 46, 47, 47, 47, 49, 49, 50, 49, 48, 47, (2,20,70): 47, 47, 47, 47, 46, 46, 48, 48, 49, 49, 49, 49, 50, 52, (2,20,84): 51, 50, 49, 49, 48, 45, 43, 42, 41, 41, 41, 41, 49, 51, (2,20,98): 55, 58, 58, 59, 59, 58, 55, 56, 56, 57, 58, 58, 57, 55, (2,20,112): 50, 49, 48, 47, 46, 46, 45, 45, 43, 43, 43, 43, 43, 42, (2,20,126): 42, 42, 45, 39, 47, 52, 43, 42, 54, 55, 58, 60, 62, 63, (2,20,140): 66, 68, 71, 74, 78, 81, 89, 93, 98, 105, 117, 124, 126, (2,20,153): 130, 133, 134, 132, 128, 125, 119, 112, 108, 108, 107, (2,20,164): 109, 108, 103, 100, 88, 82, 72, 61, 52, 44, 38, 36, 39, (2,20,177): 39, 39, 38, 38, 40, 41, 42, 40, 42, 42, 42, 44, 44, 44, (2,20,191): 42, 36, 39, 42, 42, 53, 70, 87, 94, 101, 98, 101, 105, (2,20,204): 107, 104, 105, 107, 110, 108, 109, 110, 115, 117, 119, (2,20,215): 119, 117, 119, 116, 111, 104, 95, 80, 69, 55, 47, 41, (2,21,0): 48, 48, 49, 49, 50, 50, 50, 50, 51, 52, 53, 54, 54, 54, (2,21,14): 53, 53, 52, 52, 51, 50, 51, 50, 49, 49, 49, 51, 52, 51, (2,21,28): 50, 49, 50, 47, 48, 46, 48, 46, 46, 46, 46, 44, 45, 45, (2,21,42): 45, 46, 45, 45, 46, 46, 47, 49, 50, 48, 49, 48, 48, 47, (2,21,56): 48, 47, 46, 47, 48, 48, 49, 50, 51, 51, 51, 51, 50, 48, (2,21,70): 49, 48, 49, 49, 48, 47, 49, 50, 51, 51, 50, 50, 53, 54, (2,21,84): 54, 53, 53, 50, 50, 48, 45, 43, 41, 40, 41, 41, 43, 44, (2,21,98): 48, 52, 55, 55, 55, 54, 53, 52, 54, 53, 57, 56, 57, 56, (2,21,112): 51, 49, 49, 48, 47, 46, 46, 45, 44, 44, 44, 44, 44, 44, (2,21,126): 44, 44, 42, 44, 69, 81, 56, 48, 59, 61, 58, 60, 62, 63, (2,21,140): 66, 69, 74, 76, 79, 82, 88, 93, 98, 105, 115, 122, 122, (2,21,153): 124, 127, 129, 130, 126, 121, 118, 112, 111, 112, 112, (2,21,164): 112, 112, 109, 107, 98, 92, 83, 71, 62, 51, 42, 39, 39, (2,21,177): 40, 39, 40, 39, 39, 39, 40, 40, 40, 42, 42, 42, 42, 42, (2,21,191): 40, 36, 44, 52, 56, 64, 75, 86, 90, 93, 92, 93, 98, 101, (2,21,205): 100, 101, 102, 109, 106, 105, 110, 114, 118, 118, 118, (2,21,216): 116, 118, 114, 107, 102, 94, 79, 69, 54, 47, 41, (2,22,0): 49, 50, 50, 50, 51, 51, 51, 52, 52, 53, 54, 55, 55, 55, (2,22,14): 55, 55, 55, 55, 54, 53, 52, 52, 51, 51, 51, 52, 52, 52, (2,22,28): 51, 50, 51, 48, 48, 46, 48, 46, 46, 46, 46, 45, 45, 45, (2,22,42): 45, 45, 46, 46, 47, 47, 48, 48, 49, 50, 51, 52, 52, 51, (2,22,56): 48, 47, 48, 48, 49, 48, 49, 49, 52, 52, 52, 51, 51, 49, (2,22,70): 47, 46, 49, 48, 50, 49, 49, 50, 50, 51, 52, 53, 54, 55, (2,22,84): 54, 54, 54, 52, 48, 47, 45, 43, 44, 42, 43, 42, 38, 39, (2,22,98): 45, 51, 56, 57, 58, 59, 62, 58, 54, 51, 51, 52, 55, 55, (2,22,112): 53, 51, 50, 50, 49, 48, 47, 47, 46, 46, 46, 47, 47, 47, (2,22,126): 47, 47, 43, 56, 102, 121, 84, 60, 65, 64, 60, 61, 63, (2,22,139): 64, 64, 68, 74, 79, 79, 85, 91, 95, 99, 102, 107, 111, (2,22,152): 119, 122, 126, 128, 129, 126, 121, 118, 114, 114, 114, (2,22,163): 114, 114, 115, 112, 112, 105, 101, 92, 81, 71, 59, 48, (2,22,175): 43, 43, 44, 42, 42, 41, 40, 39, 41, 42, 42, 43, 43, 43, (2,22,189): 43, 43, 40, 45, 52, 62, 68, 74, 81, 86, 87, 91, 87, 87, (2,22,203): 92, 97, 97, 98, 102, 107, 106, 105, 110, 116, 120, 119, (2,22,215): 118, 115, 118, 114, 108, 99, 91, 77, 67, 59, 51, 45, (2,23,0): 50, 50, 51, 51, 51, 52, 52, 52, 53, 54, 55, 56, 56, 56, (2,23,14): 56, 56, 56, 56, 56, 55, 54, 53, 53, 52, 53, 53, 53, 53, (2,23,28): 53, 51, 49, 48, 46, 46, 46, 46, 47, 46, 46, 46, 45, 45, (2,23,42): 46, 46, 46, 47, 47, 47, 48, 49, 50, 51, 52, 52, 53, 51, (2,23,56): 47, 47, 47, 47, 48, 49, 50, 50, 53, 53, 52, 52, 51, 50, (2,23,70): 48, 47, 50, 50, 51, 50, 50, 51, 52, 52, 50, 51, 53, 55, (2,23,84): 54, 54, 53, 52, 46, 44, 43, 43, 42, 43, 41, 39, 42, 44, (2,23,98): 51, 57, 64, 68, 71, 70, 74, 68, 59, 48, 45, 45, 49, 52, (2,23,112): 53, 55, 54, 53, 53, 52, 51, 51, 51, 51, 51, 51, 51, 51, (2,23,126): 51, 49, 38, 59, 122, 146, 99, 64, 64, 58, 60, 61, 62, (2,23,139): 62, 64, 69, 76, 80, 81, 85, 92, 94, 95, 92, 91, 92, 117, (2,23,153): 120, 124, 126, 128, 125, 120, 118, 114, 116, 117, 117, (2,23,164): 117, 115, 115, 114, 110, 106, 97, 87, 78, 66, 53, 47, (2,23,176): 45, 45, 44, 42, 40, 38, 39, 39, 41, 41, 43, 43, 43, 43, (2,23,190): 43, 39, 52, 60, 70, 76, 79, 86, 88, 88, 90, 86, 86, 93, (2,23,204): 98, 98, 100, 105, 108, 107, 106, 109, 118, 120, 121, (2,23,215): 117, 117, 117, 113, 107, 101, 91, 77, 66, 63, 58, 51, (2,24,0): 52, 52, 52, 52, 52, 53, 55, 55, 55, 55, 56, 56, 57, 58, (2,24,14): 59, 59, 60, 60, 58, 57, 57, 56, 56, 55, 53, 53, 53, 53, (2,24,28): 55, 53, 52, 52, 51, 51, 51, 50, 52, 49, 49, 49, 49, 49, (2,24,42): 48, 47, 46, 46, 47, 47, 49, 49, 49, 48, 49, 50, 50, 49, (2,24,56): 49, 49, 50, 50, 51, 50, 51, 53, 55, 55, 54, 53, 51, 50, (2,24,70): 50, 50, 48, 47, 49, 48, 48, 48, 51, 51, 47, 61, 58, 51, (2,24,84): 57, 50, 43, 54, 45, 46, 43, 39, 37, 44, 49, 48, 61, 59, (2,24,98): 63, 65, 62, 55, 54, 59, 68, 69, 74, 75, 66, 53, 48, 54, (2,24,112): 56, 56, 53, 50, 52, 56, 54, 49, 52, 50, 48, 48, 50, 51, (2,24,126): 49, 44, 73, 97, 68, 85, 118, 79, 60, 70, 61, 65, 70, 72, (2,24,140): 69, 68, 76, 84, 76, 93, 104, 93, 76, 69, 72, 76, 89, 92, (2,24,154): 101, 114, 124, 125, 127, 130, 118, 119, 120, 120, 120, (2,24,165): 119, 121, 120, 112, 110, 106, 98, 90, 78, 67, 63, 60, (2,24,177): 50, 50, 49, 39, 35, 45, 49, 46, 44, 45, 46, 44, 42, 45, (2,24,191): 47, 52, 58, 66, 69, 78, 90, 93, 89, 87, 90, 93, 97, 98, (2,24,205): 100, 102, 104, 106, 111, 113, 111, 116, 120, 124, 122, (2,24,216): 121, 114, 106, 102, 100, 90, 77, 68, 64, 66, 64, (2,25,0): 52, 52, 52, 52, 53, 54, 56, 57, 56, 56, 57, 57, 58, 59, (2,25,14): 59, 59, 61, 60, 58, 58, 57, 57, 56, 56, 56, 56, 56, 53, (2,25,28): 54, 52, 52, 49, 50, 50, 50, 50, 51, 51, 51, 51, 49, 49, (2,25,42): 48, 48, 47, 46, 47, 47, 49, 47, 47, 48, 49, 49, 48, 48, (2,25,56): 48, 47, 49, 48, 50, 50, 51, 51, 53, 55, 54, 52, 51, 50, (2,25,70): 50, 50, 49, 48, 49, 49, 49, 49, 52, 50, 51, 49, 43, 44, (2,25,84): 54, 57, 59, 67, 63, 64, 65, 62, 66, 72, 76, 71, 55, 52, (2,25,98): 54, 56, 51, 45, 45, 48, 53, 48, 48, 51, 54, 54, 58, 69, (2,25,112): 77, 76, 68, 59, 56, 58, 56, 51, 48, 59, 65, 56, 43, 46, (2,25,126): 68, 87, 78, 77, 61, 63, 92, 81, 53, 68, 73, 64, 63, 73, (2,25,140): 79, 74, 75, 78, 88, 91, 90, 78, 69, 68, 72, 73, 78, 78, (2,25,154): 82, 90, 94, 93, 93, 98, 105, 108, 110, 113, 114, 116, (2,25,166): 119, 119, 125, 123, 121, 117, 115, 111, 108, 108, 110, (2,25,177): 95, 85, 81, 75, 73, 57, 27, 45, 42, 43, 47, 49, 50, 54, (2,25,191): 56, 53, 57, 65, 69, 79, 93, 98, 94, 95, 95, 96, 96, 100, (2,25,205): 100, 100, 102, 105, 114, 120, 120, 125, 132, 135, 133, (2,25,216): 131, 122, 111, 104, 100, 91, 77, 69, 67, 68, 69, (2,26,0): 51, 51, 51, 52, 54, 55, 57, 58, 58, 58, 59, 59, 59, 59, (2,26,14): 59, 59, 59, 59, 59, 58, 58, 58, 56, 55, 58, 57, 56, 53, (2,26,28): 54, 51, 51, 49, 49, 49, 49, 49, 52, 52, 52, 52, 48, 48, (2,26,42): 49, 48, 47, 47, 46, 46, 47, 47, 47, 46, 47, 47, 48, 48, (2,26,56): 49, 48, 49, 49, 50, 48, 49, 48, 53, 52, 51, 50, 51, 50, (2,26,70): 49, 48, 49, 49, 48, 48, 50, 51, 51, 52, 60, 46, 51, 71, (2,26,84): 87, 96, 102, 98, 62, 63, 65, 66, 74, 82, 83, 75, 52, 48, (2,26,98): 48, 49, 46, 43, 43, 47, 54, 43, 36, 39, 45, 47, 50, 58, (2,26,112): 50, 66, 76, 82, 82, 76, 62, 49, 47, 44, 42, 45, 55, 71, (2,26,126): 87, 91, 73, 51, 57, 49, 75, 93, 63, 74, 76, 67, 69, 79, (2,26,140): 81, 74, 78, 89, 98, 90, 81, 73, 74, 78, 77, 72, 79, 75, (2,26,154): 74, 76, 77, 75, 76, 80, 88, 91, 93, 97, 99, 101, 104, (2,26,167): 107, 107, 106, 106, 105, 109, 112, 115, 118, 133, 124, (2,26,178): 116, 108, 108, 114, 93, 50, 39, 44, 52, 53, 45, 41, 49, (2,26,191): 57, 51, 54, 63, 68, 84, 101, 105, 100, 105, 101, 100, (2,26,203): 99, 101, 104, 105, 106, 118, 126, 133, 138, 144, 150, (2,26,214): 153, 153, 146, 134, 121, 109, 98, 89, 77, 71, 67, 70, (2,26,226): 73, (2,27,0): 50, 50, 51, 52, 54, 56, 58, 59, 60, 60, 60, 60, 60, 60, (2,27,14): 60, 60, 60, 60, 60, 59, 59, 57, 57, 57, 60, 57, 56, 55, (2,27,28): 53, 51, 50, 49, 48, 48, 49, 50, 50, 51, 53, 53, 49, 48, (2,27,42): 50, 49, 48, 47, 47, 47, 47, 45, 46, 44, 46, 46, 48, 47, (2,27,56): 48, 46, 48, 47, 48, 48, 47, 48, 50, 52, 51, 50, 51, 49, (2,27,70): 49, 48, 50, 50, 49, 49, 51, 52, 53, 51, 49, 38, 63, 96, (2,27,84): 101, 102, 99, 79, 48, 47, 48, 51, 61, 71, 72, 64, 55, 53, (2,27,98): 51, 51, 51, 51, 52, 54, 53, 47, 41, 40, 40, 40, 38, 40, (2,27,112): 55, 61, 62, 60, 66, 76, 83, 83, 55, 42, 37, 49, 75, 87, (2,27,126): 81, 64, 57, 42, 52, 52, 64, 85, 75, 70, 64, 73, 83, 81, (2,27,140): 74, 75, 91, 105, 87, 80, 74, 73, 78, 81, 76, 72, 83, 77, (2,27,154): 75, 75, 74, 73, 78, 83, 84, 86, 87, 87, 90, 92, 94, 97, (2,27,168): 102, 103, 101, 103, 105, 109, 115, 115, 117, 117, 118, (2,27,179): 113, 110, 120, 118, 98, 53, 47, 42, 44, 47, 46, 47, 47, (2,27,192): 46, 56, 67, 78, 96, 114, 118, 113, 113, 115, 115, 111, (2,27,204): 109, 111, 117, 122, 138, 149, 157, 161, 167, 174, 176, (2,27,215): 173, 162, 148, 130, 113, 99, 88, 78, 72, 67, 69, 72, (2,28,0): 49, 49, 50, 51, 53, 55, 57, 58, 60, 60, 60, 60, 60, 61, (2,28,14): 61, 61, 60, 60, 60, 61, 59, 59, 59, 57, 58, 57, 56, 54, (2,28,28): 52, 49, 48, 47, 47, 47, 47, 49, 49, 49, 50, 50, 47, 47, (2,28,42): 49, 48, 49, 48, 48, 47, 46, 46, 46, 45, 46, 47, 48, 47, (2,28,56): 49, 47, 49, 48, 48, 48, 47, 48, 50, 51, 51, 49, 48, 47, (2,28,70): 48, 48, 49, 49, 49, 49, 50, 51, 54, 52, 46, 50, 83, 105, (2,28,84): 95, 81, 69, 43, 41, 40, 38, 41, 51, 61, 63, 59, 53, 52, (2,28,98): 50, 50, 53, 57, 59, 60, 47, 47, 43, 41, 41, 44, 47, 49, (2,28,112): 65, 65, 63, 57, 60, 69, 78, 79, 62, 67, 76, 77, 74, 66, (2,28,126): 62, 55, 46, 46, 43, 52, 52, 57, 80, 67, 57, 73, 80, 70, (2,28,140): 70, 84, 100, 104, 75, 68, 67, 68, 72, 75, 76, 77, 83, (2,28,153): 77, 73, 72, 71, 70, 76, 82, 86, 88, 88, 90, 93, 95, 98, (2,28,167): 101, 105, 107, 108, 109, 111, 111, 113, 111, 112, 104, (2,28,178): 109, 112, 104, 107, 114, 115, 99, 68, 36, 34, 51, 61, (2,28,190): 55, 45, 51, 67, 86, 103, 121, 139, 140, 131, 128, 136, (2,28,202): 141, 136, 130, 130, 142, 153, 167, 174, 182, 185, 189, (2,28,213): 193, 195, 190, 177, 162, 140, 118, 101, 89, 79, 74, 66, (2,28,225): 67, 71, (2,29,0): 48, 48, 49, 50, 51, 53, 55, 56, 58, 58, 59, 60, 61, 61, (2,29,14): 62, 62, 61, 61, 61, 62, 60, 60, 58, 59, 58, 56, 56, 53, (2,29,28): 52, 51, 50, 49, 49, 49, 48, 48, 49, 49, 50, 49, 48, 48, (2,29,42): 49, 49, 50, 49, 48, 48, 46, 46, 44, 45, 45, 47, 47, 48, (2,29,56): 48, 48, 47, 48, 48, 48, 47, 47, 50, 51, 50, 49, 48, 47, (2,29,70): 48, 47, 48, 48, 49, 49, 50, 51, 54, 52, 52, 69, 95, 98, (2,29,84): 81, 70, 59, 43, 39, 37, 33, 32, 38, 46, 50, 49, 44, 45, (2,29,98): 45, 44, 49, 56, 59, 58, 50, 48, 44, 39, 41, 48, 59, 61, (2,29,112): 45, 54, 63, 66, 65, 62, 55, 48, 53, 66, 76, 71, 57, 48, (2,29,126): 50, 55, 40, 47, 34, 49, 44, 47, 92, 92, 67, 67, 63, 61, (2,29,140): 76, 97, 98, 84, 75, 70, 64, 62, 62, 66, 77, 87, 82, 77, (2,29,154): 71, 70, 70, 68, 71, 78, 83, 84, 86, 87, 92, 97, 101, (2,29,167): 107, 101, 104, 106, 108, 110, 110, 108, 105, 114, 97, (2,29,178): 100, 110, 110, 109, 111, 110, 130, 106, 76, 56, 45, 43, (2,29,190): 50, 58, 65, 85, 110, 130, 145, 159, 159, 152, 155, 164, (2,29,202): 172, 168, 163, 163, 176, 188, 192, 197, 204, 205, 206, (2,29,213): 209, 207, 202, 192, 175, 152, 126, 107, 91, 82, 78, 71, (2,29,225): 72, 72, (2,30,0): 48, 48, 48, 48, 49, 51, 52, 53, 55, 56, 57, 59, 60, 62, (2,30,14): 63, 63, 61, 62, 62, 62, 61, 61, 60, 60, 58, 57, 57, 55, (2,30,28): 54, 51, 51, 51, 50, 50, 49, 48, 49, 48, 49, 49, 49, 49, (2,30,42): 50, 49, 50, 50, 49, 49, 47, 45, 45, 45, 46, 47, 47, 48, (2,30,56): 48, 49, 48, 48, 48, 48, 45, 47, 49, 49, 48, 47, 48, 46, (2,30,70): 47, 47, 47, 47, 48, 48, 49, 50, 52, 49, 47, 75, 86, 68, (2,30,84): 54, 51, 47, 41, 33, 35, 33, 31, 32, 35, 37, 37, 41, 45, (2,30,98): 44, 44, 49, 58, 60, 54, 55, 52, 47, 43, 48, 56, 61, 55, (2,30,112): 45, 45, 43, 38, 37, 43, 49, 52, 42, 43, 44, 44, 44, 44, (2,30,126): 45, 43, 37, 38, 38, 44, 46, 55, 85, 113, 83, 66, 58, 73, (2,30,140): 91, 95, 84, 73, 77, 68, 63, 60, 56, 55, 65, 76, 78, 75, (2,30,154): 72, 72, 72, 69, 71, 77, 80, 82, 82, 85, 88, 93, 97, 103, (2,30,168): 106, 108, 112, 115, 116, 116, 115, 111, 109, 97, 101, (2,30,179): 106, 107, 116, 122, 116, 126, 126, 119, 97, 65, 47, 55, (2,30,191): 74, 92, 118, 144, 161, 171, 182, 185, 179, 189, 197, (2,30,202): 202, 202, 202, 205, 214, 219, 216, 219, 221, 220, 223, (2,30,213): 224, 222, 216, 203, 186, 163, 135, 113, 98, 87, 83, 80, (2,30,225): 79, 79, (2,31,0): 49, 49, 49, 48, 49, 49, 50, 51, 54, 55, 56, 58, 60, 60, (2,31,14): 61, 62, 62, 62, 60, 61, 59, 59, 59, 58, 59, 59, 58, 59, (2,31,28): 59, 61, 63, 61, 55, 53, 51, 50, 50, 49, 50, 50, 49, 51, (2,31,42): 50, 52, 51, 52, 51, 49, 47, 47, 47, 48, 49, 50, 50, 51, (2,31,56): 53, 51, 50, 49, 48, 48, 45, 47, 49, 51, 50, 51, 49, 49, (2,31,70): 48, 50, 47, 47, 47, 47, 48, 47, 48, 44, 55, 91, 89, 54, (2,31,84): 42, 43, 37, 35, 38, 42, 44, 39, 38, 38, 35, 35, 42, 48, (2,31,98): 48, 46, 52, 60, 59, 53, 48, 47, 46, 48, 57, 65, 60, 44, (2,31,112): 36, 40, 46, 44, 42, 43, 43, 39, 42, 43, 44, 44, 42, 41, (2,31,126): 40, 37, 42, 31, 48, 41, 45, 53, 54, 96, 89, 66, 65, 90, (2,31,140): 98, 82, 70, 74, 68, 61, 60, 57, 52, 44, 46, 52, 72, 69, (2,31,154): 68, 72, 73, 71, 73, 78, 85, 86, 84, 84, 85, 90, 94, 99, (2,31,168): 104, 107, 110, 111, 112, 113, 115, 112, 106, 109, 115, (2,31,179): 104, 96, 115, 133, 130, 119, 120, 123, 125, 120, 103, (2,31,190): 88, 81, 119, 146, 173, 186, 195, 204, 207, 207, 216, (2,31,201): 216, 218, 223, 228, 233, 235, 235, 230, 230, 232, 230, (2,31,212): 232, 233, 231, 226, 209, 194, 169, 143, 120, 104, 95, (2,31,223): 90, 89, 88, 86, (2,32,0): 47, 48, 49, 49, 53, 52, 52, 52, 53, 54, 53, 55, 57, 57, (2,32,14): 59, 59, 64, 62, 60, 59, 56, 55, 56, 56, 57, 58, 59, 67, (2,32,28): 77, 80, 79, 69, 62, 52, 52, 53, 57, 56, 52, 48, 53, 53, (2,32,42): 51, 52, 53, 53, 52, 50, 53, 52, 54, 53, 55, 55, 56, 57, (2,32,56): 58, 55, 54, 52, 48, 45, 43, 44, 50, 52, 51, 52, 53, 55, (2,32,70): 57, 58, 58, 48, 45, 49, 43, 35, 36, 46, 92, 65, 44, 41, (2,32,84): 43, 39, 38, 43, 36, 38, 42, 41, 41, 38, 37, 37, 39, 41, (2,32,98): 42, 46, 50, 52, 50, 49, 44, 44, 44, 47, 52, 56, 49, 38, (2,32,112): 43, 42, 43, 45, 45, 46, 47, 45, 44, 45, 44, 44, 42, 41, (2,32,126): 41, 40, 38, 31, 32, 39, 39, 40, 53, 73, 67, 75, 87, 90, (2,32,140): 82, 67, 63, 71, 70, 68, 65, 57, 51, 47, 47, 48, 64, 67, (2,32,154): 67, 63, 65, 71, 73, 71, 81, 81, 82, 85, 86, 85, 90, 100, (2,32,168): 107, 106, 103, 103, 109, 115, 121, 122, 121, 117, 116, (2,32,179): 113, 106, 106, 119, 135, 128, 105, 118, 120, 109, 125, (2,32,190): 92, 109, 132, 156, 187, 208, 218, 224, 231, 235, 237, (2,32,201): 238, 241, 242, 243, 244, 244, 243, 240, 239, 238, 237, (2,32,212): 235, 232, 227, 225, 212, 202, 184, 160, 137, 120, 111, (2,32,223): 107, 115, 109, 107, (2,33,0): 47, 48, 48, 50, 51, 50, 51, 50, 52, 53, 53, 55, 55, 57, (2,33,14): 56, 59, 62, 62, 60, 57, 54, 54, 53, 56, 56, 61, 69, 82, (2,33,28): 96, 106, 106, 96, 75, 63, 58, 56, 57, 58, 56, 53, 56, 54, (2,33,42): 52, 52, 53, 53, 53, 50, 47, 47, 50, 52, 54, 57, 58, 57, (2,33,56): 58, 57, 54, 52, 48, 45, 43, 44, 46, 50, 53, 54, 55, 55, (2,33,70): 55, 55, 57, 54, 49, 49, 42, 37, 46, 58, 66, 45, 35, 38, (2,33,84): 39, 36, 37, 42, 37, 40, 43, 45, 44, 42, 40, 41, 41, 42, (2,33,98): 41, 43, 46, 49, 47, 46, 44, 40, 43, 54, 57, 49, 43, 41, (2,33,112): 43, 44, 46, 45, 47, 46, 47, 45, 45, 43, 43, 43, 41, 40, (2,33,126): 39, 36, 39, 35, 37, 42, 42, 38, 47, 60, 63, 68, 77, 81, (2,33,140): 73, 64, 65, 72, 69, 67, 65, 56, 49, 45, 45, 46, 53, 63, (2,33,154): 69, 67, 62, 66, 70, 74, 74, 76, 80, 84, 83, 83, 88, 97, (2,33,168): 104, 105, 105, 106, 112, 118, 122, 123, 120, 115, 111, (2,33,179): 116, 122, 123, 118, 112, 107, 107, 104, 102, 111, 116, (2,33,190): 72, 115, 137, 165, 200, 220, 230, 237, 242, 243, 249, (2,33,201): 250, 253, 253, 254, 253, 254, 251, 246, 244, 243, 241, (2,33,212): 239, 237, 236, 234, 224, 216, 197, 174, 154, 140, 133, (2,33,223): 131, 134, 128, 126, (2,34,0): 44, 45, 46, 47, 47, 48, 50, 49, 52, 50, 52, 54, 54, 56, (2,34,14): 57, 58, 61, 59, 59, 56, 55, 55, 55, 57, 58, 66, 83, 102, (2,34,28): 120, 133, 138, 131, 105, 92, 82, 75, 71, 69, 65, 60, 59, (2,34,41): 55, 52, 51, 50, 51, 49, 48, 45, 46, 48, 50, 51, 52, 53, (2,34,55): 51, 52, 52, 51, 48, 48, 47, 45, 44, 39, 42, 47, 48, 51, (2,34,69): 52, 50, 49, 52, 53, 50, 44, 39, 44, 57, 67, 48, 36, 32, (2,34,83): 39, 41, 36, 34, 38, 38, 41, 45, 47, 46, 45, 45, 47, 46, (2,34,97): 46, 43, 43, 43, 45, 45, 44, 45, 40, 46, 61, 58, 42, 38, (2,34,111): 46, 44, 43, 44, 46, 47, 46, 47, 44, 45, 43, 43, 41, 39, (2,34,125): 38, 34, 33, 36, 35, 39, 47, 46, 41, 44, 55, 53, 56, 65, (2,34,139): 73, 74, 67, 65, 67, 65, 63, 61, 52, 46, 42, 42, 43, 41, (2,34,153): 56, 69, 69, 64, 65, 73, 80, 71, 73, 79, 84, 85, 85, 88, (2,34,167): 95, 102, 105, 107, 112, 119, 123, 124, 122, 116, 116, (2,34,178): 113, 116, 124, 128, 118, 99, 109, 119, 92, 94, 132, 123, (2,34,190): 59, 112, 129, 166, 208, 228, 239, 249, 253, 251, 255, (2,34,201): 255, 255, 255, 255, 255, 255, 252, 250, 248, 247, 245, (2,34,212): 245, 243, 243, 242, 234, 225, 206, 185, 168, 158, 153, (2,34,223): 151, 158, 150, 148, (2,35,0): 44, 44, 45, 44, 45, 46, 47, 48, 48, 49, 51, 53, 53, 55, (2,35,14): 56, 57, 60, 59, 57, 57, 56, 56, 56, 59, 62, 76, 98, 122, (2,35,28): 146, 161, 168, 166, 151, 138, 123, 109, 100, 90, 80, 72, (2,35,40): 70, 63, 55, 51, 48, 47, 46, 47, 48, 49, 51, 50, 49, 49, (2,35,54): 47, 45, 47, 46, 47, 47, 48, 47, 48, 47, 42, 44, 46, 48, (2,35,68): 50, 51, 53, 52, 52, 53, 49, 43, 43, 54, 65, 65, 46, 40, (2,35,82): 40, 45, 44, 38, 35, 38, 38, 41, 44, 47, 47, 48, 49, 50, (2,35,96): 51, 50, 46, 42, 43, 44, 44, 42, 44, 45, 52, 57, 51, 39, (2,35,110): 40, 47, 43, 42, 45, 45, 46, 44, 44, 42, 44, 43, 41, 40, (2,35,124): 38, 36, 32, 31, 30, 31, 36, 46, 47, 46, 50, 58, 45, 48, (2,35,138): 53, 64, 73, 73, 63, 56, 57, 56, 52, 47, 43, 42, 43, 45, (2,35,152): 38, 51, 64, 67, 64, 68, 76, 85, 69, 69, 77, 85, 87, 87, (2,35,166): 88, 94, 99, 102, 109, 114, 121, 124, 123, 121, 113, 122, (2,35,178): 122, 112, 110, 117, 117, 106, 102, 103, 85, 113, 164, (2,35,189): 141, 51, 64, 109, 155, 202, 226, 241, 254, 255, 254, (2,35,200): 255, 255, 255, 255, 253, 254, 251, 250, 249, 247, 247, (2,35,211): 246, 246, 245, 247, 246, 239, 228, 210, 193, 180, 172, (2,35,222): 169, 170, 180, 172, 166, (2,36,0): 44, 44, 43, 43, 44, 44, 46, 47, 47, 48, 49, 51, 51, 53, (2,36,14): 55, 56, 58, 58, 58, 58, 57, 58, 58, 61, 68, 85, 113, 141, (2,36,28): 168, 185, 195, 198, 192, 182, 169, 154, 141, 126, 110, (2,36,39): 97, 88, 77, 66, 56, 50, 47, 44, 44, 49, 51, 49, 49, 47, (2,36,53): 43, 42, 41, 44, 43, 44, 47, 48, 50, 52, 51, 52, 53, 51, (2,36,67): 50, 50, 52, 52, 53, 51, 49, 46, 47, 56, 68, 71, 60, 48, (2,36,81): 43, 46, 47, 45, 41, 39, 42, 36, 39, 43, 46, 45, 46, 48, (2,36,95): 51, 54, 51, 47, 44, 44, 43, 43, 43, 43, 53, 56, 46, 38, (2,36,109): 41, 45, 43, 43, 41, 45, 44, 44, 43, 42, 42, 44, 42, 41, (2,36,123): 39, 35, 33, 31, 30, 30, 30, 34, 41, 45, 48, 54, 61, 62, (2,36,137): 55, 53, 57, 68, 71, 62, 49, 49, 48, 47, 44, 42, 43, 45, (2,36,151): 48, 45, 50, 58, 63, 66, 72, 79, 86, 69, 67, 76, 85, 89, (2,36,165): 88, 89, 93, 95, 100, 108, 115, 122, 124, 121, 118, 114, (2,36,177): 124, 122, 111, 108, 116, 115, 105, 95, 93, 104, 158, (2,36,188): 184, 155, 69, 42, 98, 142, 192, 220, 239, 253, 255, 253, (2,36,200): 255, 255, 255, 255, 255, 254, 251, 249, 247, 247, 247, (2,36,211): 246, 247, 246, 247, 247, 243, 234, 218, 205, 195, 191, (2,36,222): 192, 194, 200, 191, 183, (2,37,0): 49, 46, 46, 43, 43, 44, 45, 46, 46, 47, 48, 50, 50, 52, (2,37,14): 54, 52, 56, 56, 56, 59, 58, 59, 60, 65, 73, 94, 124, 157, (2,37,28): 184, 204, 216, 222, 218, 212, 201, 191, 181, 167, 150, (2,37,39): 135, 119, 105, 89, 74, 63, 56, 52, 50, 53, 55, 52, 50, (2,37,52): 46, 43, 42, 42, 42, 43, 44, 48, 52, 54, 57, 58, 58, 58, (2,37,66): 55, 53, 53, 52, 49, 48, 53, 43, 41, 50, 65, 71, 64, 52, (2,37,80): 47, 43, 45, 45, 44, 42, 43, 45, 37, 40, 43, 45, 44, 46, (2,37,94): 48, 52, 53, 52, 49, 46, 46, 47, 46, 44, 45, 57, 55, 38, (2,37,108): 35, 47, 52, 42, 44, 40, 43, 42, 43, 43, 42, 42, 42, 41, (2,37,122): 41, 40, 36, 34, 32, 31, 35, 35, 36, 38, 41, 44, 49, 54, (2,37,136): 81, 74, 65, 59, 60, 63, 59, 49, 42, 40, 42, 41, 40, 43, (2,37,150): 48, 51, 54, 51, 54, 61, 69, 72, 77, 80, 70, 67, 73, 84, (2,37,164): 89, 90, 92, 95, 95, 97, 105, 112, 119, 122, 120, 118, (2,37,176): 119, 118, 116, 115, 121, 123, 111, 94, 107, 99, 113, (2,37,187): 154, 145, 134, 98, 76, 101, 137, 183, 215, 237, 247, (2,37,198): 253, 254, 255, 255, 255, 255, 254, 252, 250, 248, 247, (2,37,209): 248, 249, 249, 249, 247, 246, 242, 239, 230, 219, 210, (2,37,220): 206, 207, 210, 214, 220, 211, 201, (2,38,0): 52, 49, 48, 43, 42, 42, 43, 44, 45, 46, 47, 49, 49, 51, (2,38,14): 53, 52, 55, 55, 56, 59, 59, 61, 63, 67, 75, 99, 130, 166, (2,38,28): 197, 218, 234, 241, 239, 235, 229, 221, 214, 202, 189, (2,38,39): 177, 161, 145, 126, 107, 92, 82, 76, 74, 75, 71, 64, 58, (2,38,52): 52, 47, 45, 44, 42, 43, 47, 52, 55, 59, 62, 65, 67, 70, (2,38,66): 72, 75, 76, 75, 71, 66, 65, 52, 48, 59, 70, 64, 53, 45, (2,38,80): 47, 44, 42, 43, 44, 45, 45, 42, 39, 41, 42, 44, 45, 46, (2,38,94): 49, 53, 52, 51, 49, 49, 50, 50, 48, 47, 53, 53, 49, 40, (2,38,108): 42, 50, 51, 42, 42, 39, 42, 41, 41, 41, 40, 40, 41, 41, (2,38,122): 41, 40, 39, 37, 33, 32, 37, 37, 37, 37, 40, 43, 46, 47, (2,38,136): 71, 80, 83, 73, 62, 57, 55, 47, 42, 38, 40, 39, 40, 42, (2,38,150): 48, 52, 59, 55, 58, 67, 72, 71, 74, 75, 72, 68, 73, 83, (2,38,164): 90, 93, 93, 96, 94, 97, 102, 108, 117, 120, 120, 119, (2,38,176): 119, 117, 118, 120, 123, 119, 107, 95, 106, 102, 93, (2,38,187): 107, 89, 96, 96, 96, 100, 124, 166, 207, 231, 240, 247, (2,38,199): 253, 255, 255, 255, 253, 252, 249, 247, 245, 246, 247, (2,38,210): 250, 249, 247, 242, 240, 237, 228, 221, 213, 210, 213, (2,38,221): 219, 225, 229, 236, 227, 215, (2,39,0): 54, 51, 48, 45, 43, 43, 43, 44, 45, 45, 47, 49, 49, 51, (2,39,14): 52, 51, 55, 55, 56, 58, 59, 60, 63, 67, 77, 102, 136, (2,39,27): 171, 203, 227, 245, 253, 255, 250, 243, 238, 234, 225, (2,39,38): 214, 204, 196, 180, 159, 139, 124, 112, 104, 101, 99, 94, (2,39,50): 83, 72, 62, 54, 49, 47, 47, 48, 51, 55, 61, 64, 68, 72, (2,39,64): 82, 92, 99, 106, 110, 109, 104, 97, 87, 69, 63, 73, 76, (2,39,77): 60, 49, 46, 48, 47, 45, 45, 46, 47, 43, 38, 40, 43, 43, (2,39,91): 45, 45, 47, 49, 52, 50, 50, 50, 50, 52, 52, 51, 47, 58, (2,39,105): 47, 42, 47, 53, 53, 49, 44, 41, 39, 40, 41, 41, 41, 40, (2,39,119): 40, 41, 41, 41, 41, 39, 38, 36, 35, 34, 37, 36, 38, 41, (2,39,133): 43, 43, 42, 43, 71, 92, 89, 70, 55, 50, 45, 41, 39, 38, (2,39,147): 37, 38, 42, 47, 50, 57, 57, 63, 72, 73, 68, 69, 71, 73, (2,39,161): 68, 72, 83, 90, 92, 94, 97, 94, 96, 100, 105, 114, 120, (2,39,174): 121, 122, 116, 119, 126, 125, 113, 103, 105, 109, 108, (2,39,185): 116, 94, 102, 97, 104, 94, 94, 93, 111, 150, 195, 225, (2,39,197): 233, 242, 253, 255, 255, 255, 253, 252, 249, 247, 246, (2,39,208): 244, 245, 248, 248, 245, 239, 235, 229, 221, 217, 211, (2,39,219): 213, 221, 229, 236, 242, 246, 236, 223, (2,40,0): 53, 52, 51, 49, 47, 45, 43, 42, 41, 41, 42, 43, 48, 51, (2,40,14): 54, 54, 55, 55, 56, 57, 58, 59, 65, 72, 77, 96, 129, 167, (2,40,28): 202, 227, 246, 255, 255, 255, 255, 252, 249, 243, 236, (2,40,39): 232, 218, 210, 193, 177, 161, 146, 135, 126, 122, 118, (2,40,50): 110, 95, 77, 64, 58, 56, 52, 53, 58, 61, 62, 66, 72, 84, (2,40,64): 106, 126, 137, 136, 139, 139, 126, 106, 101, 91, 87, 81, (2,40,76): 68, 51, 40, 40, 42, 42, 44, 46, 45, 45, 44, 44, 39, 40, (2,40,90): 42, 45, 45, 47, 49, 51, 52, 53, 54, 51, 49, 49, 51, 51, (2,40,104): 60, 54, 48, 55, 82, 99, 84, 54, 41, 41, 42, 41, 38, 37, (2,40,118): 38, 40, 43, 44, 43, 39, 35, 34, 36, 40, 38, 40, 41, 42, (2,40,132): 44, 43, 44, 45, 56, 49, 65, 94, 81, 60, 59, 42, 38, 36, (2,40,146): 38, 38, 40, 43, 48, 50, 52, 59, 74, 82, 74, 58, 58, 68, (2,40,160): 71, 69, 75, 84, 87, 86, 88, 92, 102, 102, 101, 102, 108, (2,40,173): 115, 118, 118, 119, 118, 117, 120, 120, 115, 110, 106, (2,40,184): 117, 103, 109, 108, 88, 88, 101, 101, 103, 101, 139, (2,40,195): 178, 207, 231, 238, 247, 249, 253, 254, 252, 252, 252, (2,40,206): 248, 244, 246, 246, 244, 241, 244, 243, 232, 217, 213, (2,40,217): 206, 208, 222, 231, 231, 232, 243, 248, 239, 226, (2,41,0): 54, 51, 52, 50, 48, 46, 45, 44, 42, 42, 42, 43, 47, 50, (2,41,14): 53, 53, 54, 54, 55, 56, 56, 57, 62, 69, 78, 95, 127, 164, (2,41,28): 201, 226, 245, 254, 255, 255, 255, 255, 255, 252, 248, (2,41,39): 245, 235, 227, 216, 201, 187, 174, 160, 152, 142, 136, (2,41,50): 127, 116, 98, 84, 73, 67, 58, 61, 65, 63, 64, 69, 82, 99, (2,41,64): 131, 150, 157, 155, 154, 150, 136, 117, 107, 98, 88, 71, (2,41,76): 57, 47, 41, 41, 37, 37, 38, 40, 39, 40, 40, 40, 37, 40, (2,41,90): 45, 50, 51, 53, 53, 53, 57, 55, 55, 57, 61, 61, 60, 59, (2,41,104): 58, 57, 55, 47, 40, 43, 62, 79, 54, 44, 35, 35, 41, 45, (2,41,118): 43, 40, 46, 47, 49, 46, 41, 38, 37, 38, 39, 39, 40, 40, (2,41,132): 42, 41, 41, 40, 47, 45, 54, 74, 81, 72, 63, 40, 40, 38, (2,41,146): 39, 39, 40, 40, 44, 47, 52, 56, 70, 80, 73, 61, 59, 67, (2,41,160): 72, 70, 76, 82, 87, 86, 86, 90, 102, 104, 105, 107, 109, (2,41,173): 113, 116, 117, 108, 115, 121, 123, 117, 110, 105, 101, (2,41,184): 102, 98, 104, 104, 94, 99, 105, 94, 95, 87, 125, 165, (2,41,196): 197, 222, 233, 245, 247, 253, 254, 252, 252, 252, 251, (2,41,207): 245, 245, 245, 243, 241, 244, 244, 233, 219, 212, 203, (2,41,218): 204, 219, 229, 231, 232, 239, 246, 238, 225, (2,42,0): 54, 53, 52, 50, 48, 46, 45, 44, 43, 43, 42, 43, 47, 50, (2,42,14): 52, 52, 53, 55, 56, 54, 54, 55, 60, 67, 75, 93, 121, 156, (2,42,28): 194, 220, 240, 250, 254, 254, 255, 255, 255, 255, 255, (2,42,39): 255, 249, 244, 235, 224, 211, 199, 188, 179, 162, 155, (2,42,50): 145, 133, 119, 104, 86, 76, 60, 64, 66, 66, 66, 74, 93, (2,42,63): 115, 149, 165, 167, 162, 154, 147, 131, 110, 94, 92, 82, (2,42,75): 62, 48, 43, 41, 39, 41, 41, 41, 42, 44, 45, 45, 46, 42, (2,42,89): 46, 49, 53, 56, 55, 51, 52, 49, 46, 45, 51, 59, 63, 60, (2,42,103): 53, 52, 44, 43, 45, 39, 32, 42, 58, 62, 54, 45, 41, 42, (2,42,117): 44, 44, 44, 41, 43, 46, 46, 43, 40, 39, 39, 40, 41, 40, (2,42,131): 41, 42, 42, 43, 44, 43, 52, 53, 55, 78, 87, 69, 47, 44, (2,42,145): 40, 42, 41, 41, 40, 42, 44, 51, 54, 65, 75, 71, 62, 58, (2,42,159): 62, 68, 67, 73, 80, 84, 83, 83, 87, 100, 104, 112, 114, (2,42,172): 110, 108, 108, 112, 106, 116, 123, 121, 113, 107, 107, (2,42,183): 109, 104, 104, 109, 107, 103, 110, 109, 95, 87, 70, 102, (2,42,195): 148, 182, 209, 223, 244, 247, 253, 255, 252, 252, 254, (2,42,206): 253, 247, 244, 242, 242, 242, 244, 244, 236, 226, 215, (2,42,217): 203, 201, 216, 228, 232, 231, 236, 242, 235, 225, (2,43,0): 57, 56, 54, 52, 51, 49, 48, 47, 45, 44, 44, 44, 47, 49, (2,43,14): 51, 53, 54, 55, 55, 53, 52, 53, 56, 62, 75, 87, 113, 150, (2,43,28): 186, 212, 233, 245, 249, 249, 253, 255, 255, 255, 255, (2,43,39): 255, 252, 248, 242, 234, 226, 215, 205, 197, 182, 170, (2,43,50): 158, 144, 132, 117, 99, 81, 68, 66, 67, 69, 74, 85, 100, (2,43,63): 120, 141, 153, 152, 143, 131, 120, 103, 85, 72, 80, 79, (2,43,75): 60, 49, 50, 44, 36, 34, 36, 36, 38, 40, 43, 45, 47, 54, (2,43,89): 55, 54, 54, 53, 51, 46, 44, 40, 39, 40, 45, 52, 52, 49, (2,43,103): 45, 45, 34, 31, 44, 54, 48, 37, 31, 55, 60, 63, 55, 42, (2,43,117): 37, 41, 50, 46, 46, 46, 44, 42, 42, 41, 39, 42, 43, 43, (2,43,131): 45, 47, 48, 51, 51, 42, 66, 69, 48, 70, 92, 75, 63, 47, (2,43,145): 43, 42, 42, 42, 42, 43, 42, 48, 50, 57, 66, 68, 60, 55, (2,43,159): 55, 63, 63, 69, 75, 79, 76, 77, 80, 96, 103, 113, 117, (2,43,172): 109, 103, 103, 107, 112, 116, 115, 110, 108, 111, 117, (2,43,183): 120, 117, 111, 109, 108, 108, 106, 104, 97, 84, 60, 85, (2,43,195): 129, 169, 197, 217, 243, 246, 252, 255, 254, 254, 255, (2,43,206): 255, 248, 245, 242, 243, 245, 247, 247, 241, 232, 218, (2,43,217): 204, 202, 214, 228, 232, 229, 233, 238, 232, 224, (2,44,0): 58, 57, 56, 54, 54, 52, 51, 50, 48, 47, 46, 46, 48, 49, (2,44,14): 51, 52, 56, 56, 56, 54, 51, 50, 54, 59, 71, 82, 104, 139, (2,44,28): 177, 206, 227, 238, 247, 249, 253, 253, 255, 254, 255, (2,44,39): 253, 251, 248, 244, 239, 233, 226, 217, 209, 201, 187, (2,44,50): 172, 158, 146, 132, 115, 98, 89, 81, 76, 77, 84, 93, 98, (2,44,63): 104, 112, 118, 117, 110, 99, 89, 74, 63, 69, 77, 75, 60, (2,44,76): 54, 58, 52, 41, 43, 45, 45, 47, 48, 52, 55, 58, 57, 55, (2,44,90): 53, 50, 45, 44, 43, 42, 42, 45, 46, 48, 48, 47, 46, 44, (2,44,104): 38, 43, 43, 35, 34, 41, 45, 41, 45, 55, 65, 63, 52, 45, (2,44,118): 45, 50, 55, 53, 48, 44, 42, 44, 45, 43, 49, 49, 49, 50, (2,44,132): 48, 48, 48, 49, 43, 76, 90, 54, 58, 81, 72, 81, 52, 47, (2,44,146): 44, 44, 45, 46, 45, 44, 45, 46, 51, 57, 59, 54, 50, 48, (2,44,160): 60, 60, 66, 73, 77, 75, 75, 79, 96, 104, 114, 120, 113, (2,44,173): 101, 101, 107, 117, 116, 111, 106, 111, 119, 119, 115, (2,44,184): 116, 109, 107, 114, 117, 102, 92, 97, 86, 57, 74, 114, (2,44,196): 156, 193, 214, 239, 246, 252, 255, 254, 254, 255, 255, (2,44,207): 250, 248, 244, 245, 248, 250, 249, 244, 241, 226, 210, (2,44,218): 204, 215, 228, 230, 229, 233, 234, 231, 225, (2,45,0): 61, 60, 59, 57, 57, 55, 54, 54, 51, 50, 49, 48, 50, 50, (2,45,14): 52, 53, 56, 57, 57, 54, 51, 50, 51, 55, 67, 76, 99, 133, (2,45,28): 171, 200, 222, 235, 248, 251, 253, 255, 255, 254, 253, (2,45,39): 253, 249, 247, 242, 240, 237, 232, 227, 222, 218, 205, (2,45,50): 192, 178, 169, 157, 142, 125, 120, 106, 95, 92, 92, 93, (2,45,62): 87, 83, 83, 84, 85, 81, 77, 70, 60, 54, 76, 74, 65, 52, (2,45,76): 50, 55, 53, 46, 54, 54, 55, 56, 56, 58, 60, 61, 51, 49, (2,45,90): 47, 44, 42, 43, 44, 45, 49, 52, 52, 51, 48, 45, 44, 45, (2,45,104): 36, 48, 46, 34, 29, 38, 41, 38, 39, 41, 47, 57, 64, 62, (2,45,118): 55, 47, 46, 42, 41, 40, 44, 52, 56, 57, 53, 52, 51, 49, (2,45,132): 45, 42, 40, 38, 40, 69, 99, 65, 50, 67, 66, 86, 60, 52, (2,45,146): 46, 43, 45, 47, 47, 46, 43, 45, 48, 50, 50, 46, 46, 45, (2,45,160): 54, 57, 63, 71, 76, 73, 76, 78, 99, 103, 116, 122, 117, (2,45,173): 106, 105, 111, 115, 113, 110, 110, 120, 127, 115, 98, (2,45,184): 109, 109, 111, 125, 138, 124, 104, 106, 88, 58, 71, 103, (2,45,196): 146, 191, 216, 235, 245, 251, 255, 254, 255, 255, 255, (2,45,207): 253, 251, 244, 246, 250, 250, 248, 246, 245, 232, 219, (2,45,218): 213, 221, 229, 229, 226, 231, 234, 231, 229, (2,46,0): 61, 60, 61, 59, 57, 55, 56, 55, 52, 51, 51, 50, 51, 52, (2,46,14): 54, 55, 59, 59, 57, 55, 50, 48, 49, 53, 63, 70, 94, 130, (2,46,28): 167, 196, 218, 231, 246, 250, 252, 254, 255, 254, 251, (2,46,39): 251, 246, 244, 241, 240, 238, 237, 232, 230, 226, 219, (2,46,50): 210, 202, 194, 183, 168, 154, 136, 122, 105, 95, 89, 82, (2,46,62): 73, 65, 62, 60, 61, 60, 60, 53, 50, 49, 73, 63, 55, 51, (2,46,76): 53, 54, 52, 48, 46, 46, 46, 46, 43, 42, 39, 38, 42, 42, (2,46,90): 40, 41, 42, 44, 46, 47, 51, 50, 49, 47, 45, 44, 42, 41, (2,46,104): 38, 37, 37, 38, 41, 42, 36, 28, 38, 37, 39, 49, 60, 64, (2,46,118): 61, 55, 49, 46, 45, 46, 51, 58, 61, 61, 54, 51, 49, 47, (2,46,132): 42, 40, 37, 36, 36, 49, 95, 76, 53, 63, 61, 83, 72, 61, (2,46,146): 51, 46, 46, 48, 48, 47, 42, 45, 46, 45, 42, 40, 43, 44, (2,46,160): 48, 50, 56, 66, 72, 70, 73, 76, 101, 102, 114, 123, 120, (2,46,173): 107, 106, 114, 114, 115, 113, 116, 128, 136, 121, 100, (2,46,184): 116, 124, 117, 119, 149, 159, 138, 124, 85, 60, 70, 92, (2,46,196): 136, 190, 217, 230, 245, 251, 255, 255, 255, 255, 255, (2,46,207): 253, 251, 243, 243, 247, 248, 246, 245, 246, 240, 226, (2,46,218): 220, 226, 230, 227, 225, 230, 236, 235, 234, (2,47,0): 63, 62, 62, 60, 58, 56, 55, 56, 53, 52, 51, 49, 50, 50, (2,47,14): 51, 54, 57, 58, 58, 55, 50, 48, 50, 53, 61, 69, 93, 128, (2,47,28): 168, 197, 216, 231, 242, 247, 250, 253, 255, 254, 253, (2,47,39): 251, 245, 242, 238, 235, 237, 238, 237, 238, 230, 227, (2,47,50): 221, 213, 203, 190, 175, 160, 127, 114, 99, 88, 78, 72, (2,47,62): 67, 62, 58, 55, 55, 55, 52, 47, 44, 45, 69, 60, 55, 61, (2,47,76): 67, 64, 57, 51, 57, 56, 56, 53, 50, 44, 41, 39, 40, 40, (2,47,90): 42, 44, 46, 46, 46, 44, 55, 49, 44, 44, 45, 45, 41, 37, (2,47,104): 40, 32, 33, 40, 39, 34, 37, 48, 38, 42, 44, 46, 47, 51, (2,47,118): 57, 62, 75, 70, 66, 61, 61, 58, 54, 49, 49, 47, 46, 46, (2,47,132): 43, 42, 41, 40, 33, 31, 89, 83, 58, 67, 59, 77, 81, 69, (2,47,146): 54, 47, 46, 47, 45, 43, 44, 45, 46, 41, 37, 38, 41, 46, (2,47,160): 41, 43, 49, 58, 64, 65, 66, 69, 95, 96, 106, 119, 117, (2,47,173): 105, 101, 109, 116, 116, 112, 114, 127, 139, 132, 115, (2,47,184): 121, 134, 113, 102, 145, 180, 162, 135, 80, 57, 63, 85, (2,47,196): 129, 191, 217, 227, 244, 251, 255, 255, 255, 255, 255, (2,47,207): 253, 249, 240, 241, 244, 247, 241, 242, 244, 243, 232, (2,47,218): 226, 229, 231, 226, 224, 233, 241, 240, 239, (2,48,0): 64, 64, 63, 62, 60, 59, 58, 59, 55, 54, 53, 51, 50, 50, (2,48,14): 50, 52, 58, 57, 56, 54, 53, 52, 52, 57, 68, 77, 98, 131, (2,48,28): 167, 195, 215, 231, 246, 249, 252, 252, 255, 255, 255, (2,48,39): 252, 245, 241, 236, 237, 239, 243, 246, 246, 246, 238, (2,48,50): 222, 211, 203, 188, 155, 120, 93, 84, 77, 73, 71, 69, 69, (2,48,63): 68, 65, 61, 66, 52, 59, 60, 41, 69, 73, 69, 66, 63, 63, (2,48,77): 62, 59, 57, 59, 55, 59, 65, 62, 48, 41, 44, 43, 44, 45, (2,48,91): 42, 42, 43, 47, 46, 53, 43, 36, 38, 43, 45, 38, 31, 31, (2,48,105): 31, 33, 34, 34, 37, 39, 41, 38, 41, 41, 42, 40, 38, 39, (2,48,119): 41, 41, 46, 50, 51, 50, 50, 52, 53, 51, 47, 44, 45, 46, (2,48,133): 44, 40, 37, 28, 34, 72, 78, 51, 73, 49, 72, 80, 74, 64, (2,48,147): 54, 48, 44, 43, 43, 42, 40, 38, 40, 41, 41, 43, 44, 44, (2,48,161): 48, 49, 51, 51, 52, 53, 55, 97, 105, 95, 106, 113, 100, (2,48,174): 109, 121, 122, 120, 111, 105, 106, 110, 111, 111, 123, (2,48,185): 133, 108, 119, 112, 175, 154, 117, 81, 58, 56, 90, 136, (2,48,197): 176, 211, 240, 245, 249, 251, 253, 255, 255, 255, 254, (2,48,208): 243, 232, 233, 237, 245, 244, 242, 240, 241, 238, 234, (2,48,219): 230, 227, 225, 225, 229, 241, 250, 250, (2,49,0): 65, 64, 64, 62, 61, 60, 59, 58, 54, 53, 52, 51, 50, 50, (2,49,14): 50, 52, 56, 57, 56, 54, 53, 52, 55, 58, 69, 77, 99, 131, (2,49,28): 166, 192, 211, 225, 236, 241, 244, 249, 253, 255, 255, (2,49,39): 251, 244, 237, 232, 232, 234, 237, 238, 237, 243, 235, (2,49,50): 220, 205, 189, 166, 130, 98, 77, 70, 67, 65, 67, 67, 68, (2,49,63): 70, 67, 63, 68, 59, 63, 61, 49, 80, 70, 68, 66, 63, 59, (2,49,77): 57, 56, 55, 63, 53, 52, 62, 65, 53, 44, 43, 42, 43, 45, (2,49,91): 45, 46, 47, 51, 52, 50, 45, 41, 38, 39, 39, 34, 31, 36, (2,49,105): 34, 37, 38, 43, 44, 44, 42, 46, 45, 43, 41, 38, 34, 33, (2,49,119): 34, 36, 38, 43, 44, 45, 47, 50, 51, 46, 45, 46, 46, 42, (2,49,133): 39, 39, 39, 46, 25, 53, 49, 62, 80, 63, 65, 86, 82, 72, (2,49,147): 62, 53, 46, 43, 40, 42, 40, 39, 41, 43, 45, 47, 46, 44, (2,49,161): 48, 48, 49, 48, 49, 51, 53, 92, 100, 91, 102, 108, 97, (2,49,174): 108, 120, 126, 124, 114, 102, 96, 102, 112, 120, 119, (2,49,185): 126, 100, 112, 110, 169, 147, 107, 79, 59, 59, 92, 141, (2,49,197): 184, 220, 241, 248, 249, 250, 251, 253, 254, 255, 250, (2,49,208): 242, 232, 229, 234, 240, 241, 241, 240, 239, 237, 233, (2,49,219): 229, 224, 221, 223, 228, 239, 246, 249, (2,50,0): 66, 65, 65, 63, 62, 61, 60, 60, 57, 56, 55, 53, 53, 53, (2,50,14): 53, 55, 57, 59, 57, 55, 54, 53, 55, 58, 67, 78, 98, 129, (2,50,28): 161, 185, 203, 214, 222, 227, 233, 238, 244, 247, 248, (2,50,39): 244, 239, 232, 227, 224, 224, 225, 227, 226, 221, 214, (2,50,50): 204, 189, 169, 145, 111, 81, 76, 68, 65, 63, 65, 67, 68, (2,50,63): 70, 67, 61, 65, 64, 63, 56, 54, 87, 67, 66, 63, 60, 56, (2,50,77): 54, 54, 54, 65, 49, 43, 53, 62, 58, 47, 41, 41, 41, 44, (2,50,91): 46, 48, 49, 53, 57, 42, 42, 42, 42, 42, 41, 42, 44, 33, (2,50,105): 31, 33, 34, 41, 41, 40, 37, 59, 56, 51, 46, 41, 36, 34, (2,50,119): 35, 37, 36, 38, 39, 42, 45, 47, 47, 41, 43, 45, 44, 38, (2,50,133): 37, 38, 42, 47, 32, 69, 48, 59, 63, 73, 85, 84, 81, 77, (2,50,147): 67, 59, 50, 43, 38, 38, 37, 38, 39, 42, 45, 44, 44, 44, (2,50,161): 47, 46, 47, 46, 48, 52, 55, 81, 93, 89, 103, 109, 96, (2,50,174): 103, 113, 94, 107, 113, 109, 103, 105, 113, 119, 117, (2,50,185): 117, 93, 104, 109, 161, 138, 96, 72, 61, 65, 93, 146, (2,50,197): 194, 230, 241, 247, 248, 248, 251, 253, 253, 251, 246, (2,50,208): 237, 226, 221, 224, 229, 231, 234, 236, 233, 234, 230, (2,50,219): 224, 216, 213, 217, 223, 239, 244, 249, (2,51,0): 66, 66, 65, 64, 63, 63, 62, 62, 59, 58, 57, 56, 56, 56, (2,51,14): 56, 58, 59, 60, 59, 57, 55, 54, 56, 59, 66, 75, 96, 126, (2,51,28): 155, 178, 194, 206, 210, 214, 219, 227, 232, 236, 237, (2,51,39): 235, 232, 223, 218, 213, 213, 214, 214, 210, 189, 182, (2,51,50): 175, 162, 143, 120, 97, 75, 74, 67, 65, 65, 67, 69, 70, (2,51,63): 70, 70, 62, 64, 68, 60, 49, 58, 89, 66, 67, 64, 61, 57, (2,51,77): 55, 56, 56, 59, 46, 40, 47, 55, 54, 47, 40, 41, 41, 46, (2,51,91): 47, 48, 49, 55, 56, 43, 42, 44, 44, 45, 46, 46, 47, 40, (2,51,105): 41, 43, 44, 46, 48, 54, 53, 64, 60, 55, 49, 42, 37, 38, (2,51,119): 37, 40, 39, 37, 37, 40, 44, 44, 42, 42, 44, 43, 41, 39, (2,51,133): 37, 40, 42, 40, 44, 80, 60, 47, 44, 64, 88, 115, 111, (2,51,146): 103, 89, 71, 55, 40, 32, 39, 40, 38, 41, 44, 45, 44, 45, (2,51,160): 46, 46, 47, 45, 45, 46, 51, 55, 65, 87, 91, 108, 114, (2,51,173): 97, 97, 100, 84, 101, 114, 111, 108, 112, 118, 118, 115, (2,51,185): 110, 88, 98, 107, 150, 131, 89, 67, 63, 69, 95, 148, (2,51,197): 202, 232, 240, 239, 242, 245, 249, 250, 248, 243, 235, (2,51,208): 222, 210, 204, 206, 210, 213, 219, 225, 225, 227, 227, (2,51,219): 219, 209, 205, 209, 217, 234, 240, 243, (2,52,0): 66, 66, 65, 65, 64, 63, 63, 63, 61, 60, 59, 59, 58, 59, (2,52,14): 59, 61, 60, 61, 60, 58, 56, 55, 57, 60, 65, 73, 93, 120, (2,52,28): 147, 165, 183, 194, 195, 200, 207, 212, 220, 224, 223, (2,52,39): 222, 220, 214, 206, 199, 197, 195, 193, 184, 159, 150, (2,52,50): 143, 134, 118, 101, 85, 75, 71, 67, 65, 65, 67, 71, 72, (2,52,63): 72, 73, 64, 63, 69, 56, 44, 60, 80, 67, 67, 64, 63, 61, (2,52,77): 60, 59, 60, 50, 42, 41, 42, 45, 45, 43, 41, 42, 42, 47, (2,52,91): 47, 47, 47, 51, 53, 53, 50, 48, 49, 50, 48, 43, 39, 39, (2,52,105): 45, 48, 46, 45, 48, 59, 64, 59, 54, 49, 44, 38, 34, 35, (2,52,119): 37, 41, 38, 38, 39, 44, 48, 47, 45, 49, 45, 39, 37, 39, (2,52,133): 41, 41, 40, 45, 42, 50, 58, 45, 58, 52, 54, 51, 54, 62, (2,52,147): 67, 73, 72, 72, 71, 48, 46, 44, 45, 45, 46, 47, 48, 46, (2,52,161): 46, 46, 44, 44, 46, 51, 54, 65, 88, 93, 108, 114, 99, (2,52,174): 101, 103, 118, 122, 118, 104, 102, 113, 123, 124, 115, (2,52,185): 106, 87, 93, 104, 141, 131, 93, 73, 73, 80, 102, 150, (2,52,197): 204, 233, 237, 237, 240, 242, 243, 241, 234, 224, 215, (2,52,208): 200, 189, 186, 188, 192, 196, 204, 211, 216, 222, 223, (2,52,219): 217, 210, 205, 207, 214, 222, 224, 226, (2,53,0): 65, 65, 65, 64, 64, 63, 63, 63, 62, 62, 61, 60, 60, 61, (2,53,14): 61, 62, 62, 62, 62, 59, 57, 55, 57, 59, 63, 71, 87, 110, (2,53,28): 131, 150, 165, 177, 180, 185, 193, 200, 207, 212, 213, (2,53,39): 211, 211, 202, 192, 184, 178, 173, 171, 156, 140, 123, (2,53,50): 120, 113, 102, 87, 78, 72, 69, 66, 66, 66, 69, 71, 73, (2,53,63): 74, 72, 67, 62, 68, 52, 44, 64, 70, 65, 61, 59, 59, 61, (2,53,77): 63, 60, 58, 42, 40, 42, 40, 39, 38, 40, 40, 41, 44, 46, (2,53,91): 46, 46, 46, 47, 48, 50, 47, 48, 50, 55, 55, 53, 49, 42, (2,53,105): 47, 50, 50, 49, 52, 61, 68, 54, 50, 47, 44, 41, 39, 40, (2,53,119): 40, 36, 36, 40, 44, 50, 53, 53, 54, 56, 49, 40, 38, 41, (2,53,133): 42, 42, 38, 43, 41, 39, 60, 47, 65, 50, 44, 47, 46, 49, (2,53,147): 48, 46, 42, 38, 35, 53, 50, 46, 42, 41, 43, 44, 44, 47, (2,53,161): 48, 47, 46, 43, 44, 47, 50, 71, 94, 95, 105, 111, 104, (2,53,174): 113, 120, 123, 126, 117, 107, 110, 122, 126, 117, 112, (2,53,185): 102, 89, 91, 102, 131, 134, 107, 93, 90, 96, 114, 152, (2,53,197): 194, 222, 229, 239, 238, 238, 234, 227, 217, 205, 193, (2,53,208): 173, 167, 168, 171, 175, 178, 186, 193, 204, 212, 218, (2,53,219): 216, 212, 209, 207, 211, 211, 211, 210, (2,54,0): 62, 62, 62, 62, 61, 61, 61, 61, 60, 60, 59, 59, 59, 60, (2,54,14): 60, 63, 63, 62, 61, 60, 58, 58, 58, 60, 63, 69, 82, 98, (2,54,28): 115, 129, 144, 157, 164, 169, 178, 188, 198, 203, 204, (2,54,39): 202, 200, 191, 181, 173, 167, 164, 160, 142, 117, 97, 96, (2,54,51): 98, 90, 79, 71, 69, 64, 62, 64, 66, 69, 71, 73, 74, 68, (2,54,65): 68, 61, 66, 47, 44, 70, 60, 56, 52, 48, 49, 56, 59, 57, (2,54,79): 53, 40, 40, 42, 39, 37, 38, 39, 38, 38, 41, 44, 43, 43, (2,54,93): 43, 43, 45, 43, 45, 51, 52, 55, 55, 56, 56, 59, 60, 62, (2,54,107): 65, 68, 70, 72, 69, 53, 50, 50, 47, 45, 42, 43, 44, 38, (2,54,121): 42, 47, 50, 52, 52, 53, 54, 60, 55, 49, 44, 41, 39, 42, (2,54,135): 41, 39, 47, 56, 62, 47, 46, 54, 54, 45, 46, 48, 49, 49, (2,54,149): 48, 48, 47, 63, 58, 49, 42, 41, 40, 42, 42, 45, 47, 48, (2,54,163): 47, 43, 43, 46, 48, 65, 90, 94, 105, 115, 110, 122, 127, (2,54,176): 112, 121, 121, 115, 118, 127, 125, 111, 110, 98, 91, 89, (2,54,188): 97, 123, 137, 122, 107, 102, 104, 117, 142, 173, 196, (2,54,199): 209, 220, 215, 207, 199, 191, 182, 174, 164, 149, 144, (2,54,210): 148, 154, 158, 162, 168, 177, 187, 196, 206, 213, 214, (2,54,221): 210, 205, 202, 201, 198, 193, (2,55,0): 62, 61, 61, 61, 61, 61, 60, 60, 61, 60, 60, 59, 59, 60, (2,55,14): 61, 63, 62, 62, 62, 60, 60, 58, 58, 60, 65, 68, 76, 90, (2,55,28): 102, 113, 127, 141, 150, 156, 167, 181, 191, 197, 200, (2,55,39): 199, 191, 183, 173, 167, 165, 162, 160, 141, 93, 75, 75, (2,55,51): 82, 82, 73, 67, 64, 61, 59, 63, 65, 66, 70, 72, 73, 65, (2,55,65): 68, 60, 63, 46, 47, 75, 53, 51, 44, 38, 42, 51, 57, 54, (2,55,79): 47, 42, 41, 41, 39, 40, 41, 39, 37, 36, 37, 41, 42, 42, (2,55,93): 42, 41, 42, 51, 56, 60, 58, 50, 45, 45, 49, 51, 48, 49, (2,55,107): 54, 63, 65, 57, 47, 48, 46, 49, 47, 44, 43, 41, 42, 43, (2,55,121): 48, 54, 55, 52, 49, 48, 50, 61, 60, 55, 47, 40, 37, 41, (2,55,135): 45, 42, 45, 60, 50, 49, 32, 57, 51, 40, 41, 41, 41, 43, (2,55,149): 42, 43, 43, 78, 70, 59, 50, 47, 46, 49, 49, 45, 47, 48, (2,55,163): 46, 44, 42, 44, 45, 50, 81, 93, 112, 121, 114, 124, 125, (2,55,176): 131, 137, 128, 113, 112, 124, 127, 116, 106, 97, 94, 87, (2,55,188): 94, 116, 139, 132, 110, 103, 104, 113, 130, 150, 173, (2,55,199): 189, 185, 178, 167, 158, 151, 144, 140, 134, 130, 127, (2,55,210): 133, 140, 144, 146, 154, 162, 170, 181, 196, 205, 210, (2,55,221): 207, 201, 195, 189, 184, 180, (2,56,0): 61, 61, 61, 61, 61, 61, 61, 61, 59, 59, 59, 60, 60, 61, (2,56,14): 61, 61, 63, 63, 61, 61, 61, 60, 60, 62, 61, 67, 72, 79, (2,56,28): 88, 98, 105, 114, 129, 142, 155, 167, 179, 193, 201, 199, (2,56,40): 192, 188, 178, 168, 167, 171, 163, 132, 82, 60, 64, 67, (2,56,52): 67, 62, 62, 69, 60, 58, 61, 64, 67, 72, 73, 72, 62, 57, (2,56,66): 54, 51, 47, 48, 56, 68, 49, 54, 46, 46, 59, 51, 39, 44, (2,56,80): 37, 39, 41, 40, 37, 38, 39, 40, 39, 40, 40, 36, 34, 37, (2,56,94): 46, 53, 51, 49, 46, 43, 41, 40, 40, 40, 42, 41, 46, 55, (2,56,108): 62, 59, 54, 49, 54, 43, 42, 45, 45, 39, 40, 47, 50, 52, (2,56,122): 54, 53, 50, 47, 44, 44, 50, 49, 49, 75, 26, 35, 62, 38, (2,56,136): 40, 55, 64, 55, 42, 42, 49, 55, 52, 46, 41, 38, 42, 46, (2,56,150): 48, 46, 88, 79, 58, 44, 47, 45, 39, 42, 37, 38, 38, 37, (2,56,164): 39, 42, 46, 49, 48, 59, 87, 112, 118, 124, 131, 124, (2,56,176): 132, 128, 123, 122, 124, 124, 120, 115, 110, 92, 92, 91, (2,56,188): 86, 107, 128, 122, 109, 102, 99, 106, 119, 129, 131, (2,56,199): 132, 127, 124, 118, 113, 111, 114, 118, 117, 119, 121, (2,56,210): 127, 132, 134, 135, 140, 144, 147, 154, 167, 185, 199, (2,56,221): 202, 196, 188, 183, 174, 168, (2,57,0): 61, 61, 61, 61, 61, 61, 61, 61, 59, 59, 59, 60, 60, 61, (2,57,14): 61, 61, 63, 61, 61, 61, 59, 60, 60, 62, 64, 67, 70, 74, (2,57,28): 81, 88, 94, 102, 116, 131, 145, 157, 172, 188, 196, 196, (2,57,40): 193, 186, 171, 162, 164, 168, 158, 125, 69, 46, 46, 53, (2,57,52): 59, 58, 58, 61, 61, 60, 62, 65, 69, 70, 70, 67, 55, 52, (2,57,66): 49, 47, 44, 43, 53, 65, 64, 61, 51, 49, 57, 56, 43, 35, (2,57,80): 39, 40, 42, 42, 40, 40, 40, 40, 40, 38, 37, 37, 42, 46, (2,57,94): 48, 49, 39, 38, 38, 39, 40, 42, 44, 47, 45, 43, 46, 55, (2,57,108): 59, 55, 51, 48, 47, 56, 59, 48, 43, 47, 49, 45, 62, 61, (2,57,122): 58, 54, 52, 51, 53, 55, 45, 53, 50, 63, 63, 43, 46, 30, (2,57,136): 49, 58, 64, 56, 45, 44, 48, 49, 46, 42, 39, 40, 43, 48, (2,57,150): 50, 47, 89, 78, 56, 43, 49, 48, 44, 47, 43, 42, 42, 41, (2,57,164): 41, 40, 40, 41, 48, 57, 84, 106, 116, 124, 132, 128, (2,57,176): 132, 128, 125, 125, 125, 123, 118, 113, 110, 93, 92, 92, (2,57,188): 89, 104, 119, 111, 98, 92, 93, 99, 107, 112, 112, 109, (2,57,200): 93, 93, 92, 94, 95, 101, 105, 107, 116, 118, 124, 125, (2,57,212): 127, 130, 134, 137, 134, 139, 151, 168, 183, 191, 188, (2,57,223): 186, 181, 172, 163, (2,58,0): 60, 60, 60, 60, 60, 60, 60, 60, 58, 58, 58, 59, 59, 60, (2,58,14): 60, 60, 61, 61, 61, 61, 59, 60, 60, 60, 65, 65, 68, 70, (2,58,28): 75, 78, 83, 90, 103, 118, 133, 145, 164, 181, 190, 189, (2,58,40): 193, 183, 169, 158, 162, 165, 152, 118, 70, 49, 45, 50, (2,58,52): 56, 59, 58, 57, 62, 62, 63, 66, 69, 69, 66, 63, 52, 48, (2,58,66): 43, 42, 40, 42, 51, 60, 62, 54, 52, 55, 61, 69, 60, 35, (2,58,80): 40, 39, 41, 43, 44, 43, 41, 41, 41, 35, 35, 42, 51, 54, (2,58,94): 49, 43, 39, 38, 37, 37, 37, 38, 40, 41, 45, 43, 47, 54, (2,58,108): 58, 55, 51, 51, 55, 58, 64, 64, 66, 67, 62, 55, 60, 59, (2,58,122): 57, 55, 51, 49, 49, 50, 44, 57, 52, 57, 106, 65, 45, 44, (2,58,136): 55, 60, 59, 54, 46, 45, 43, 42, 39, 37, 39, 41, 46, 49, (2,58,150): 49, 49, 89, 77, 51, 40, 51, 54, 51, 54, 56, 55, 54, 50, (2,58,164): 49, 46, 42, 41, 47, 54, 77, 101, 114, 126, 136, 131, (2,58,176): 131, 129, 127, 127, 127, 124, 117, 111, 109, 94, 90, 92, (2,58,188): 90, 97, 101, 90, 81, 79, 82, 88, 93, 94, 92, 88, 77, 80, (2,58,202): 85, 89, 96, 103, 106, 109, 114, 116, 120, 121, 121, 122, (2,58,214): 126, 129, 127, 128, 134, 146, 162, 174, 178, 180, 173, (2,58,225): 165, 155, (2,59,0): 59, 59, 59, 59, 59, 59, 59, 59, 58, 58, 58, 59, 59, 60, (2,59,14): 60, 60, 61, 61, 60, 61, 59, 60, 60, 60, 64, 64, 66, 67, (2,59,28): 69, 70, 73, 79, 95, 109, 123, 137, 156, 173, 183, 179, (2,59,40): 186, 180, 170, 161, 159, 156, 140, 108, 82, 66, 63, 61, (2,59,52): 60, 59, 59, 60, 65, 65, 68, 69, 72, 68, 64, 59, 54, 49, (2,59,66): 43, 42, 41, 42, 48, 58, 55, 49, 57, 63, 63, 76, 74, 43, (2,59,80): 41, 36, 37, 41, 44, 44, 42, 41, 38, 38, 41, 47, 55, 54, (2,59,94): 46, 38, 41, 41, 42, 40, 41, 41, 41, 43, 44, 44, 49, 57, (2,59,108): 60, 59, 61, 65, 74, 54, 58, 89, 105, 90, 73, 72, 56, 56, (2,59,122): 57, 58, 55, 49, 42, 37, 45, 50, 47, 64, 112, 83, 59, 68, (2,59,136): 58, 57, 53, 48, 45, 42, 38, 35, 35, 36, 38, 44, 47, 45, (2,59,150): 47, 50, 81, 71, 48, 41, 55, 58, 53, 53, 57, 57, 57, 56, (2,59,164): 53, 50, 46, 45, 44, 49, 72, 95, 111, 127, 136, 133, 127, (2,59,177): 127, 127, 128, 128, 123, 116, 110, 104, 92, 86, 90, 92, (2,59,189): 90, 82, 71, 66, 67, 73, 80, 86, 88, 88, 87, 90, 92, 98, (2,59,203): 104, 108, 111, 113, 112, 113, 116, 117, 118, 118, 118, (2,59,214): 119, 122, 124, 123, 124, 133, 150, 164, 175, 181, 175, (2,59,225): 165, 153, (2,60,0): 59, 59, 59, 59, 59, 59, 59, 59, 58, 58, 58, 59, 59, 60, (2,60,14): 60, 60, 60, 60, 60, 61, 59, 60, 60, 60, 60, 62, 62, 63, (2,60,28): 65, 66, 69, 74, 89, 100, 113, 125, 145, 162, 168, 164, (2,60,40): 167, 171, 169, 158, 148, 137, 119, 95, 84, 78, 78, 72, (2,60,52): 62, 60, 62, 62, 66, 67, 71, 74, 73, 70, 63, 57, 55, 47, (2,60,66): 43, 42, 41, 42, 46, 54, 65, 59, 66, 65, 54, 66, 76, 62, (2,60,80): 50, 40, 35, 40, 45, 42, 41, 43, 37, 41, 47, 52, 53, 48, (2,60,94): 43, 39, 43, 44, 48, 48, 53, 54, 56, 58, 53, 54, 61, 67, (2,60,108): 70, 71, 78, 82, 77, 63, 75, 105, 118, 100, 83, 82, 68, (2,60,121): 65, 62, 60, 57, 51, 42, 36, 42, 40, 50, 84, 90, 86, 63, (2,60,135): 70, 64, 55, 48, 45, 45, 43, 39, 35, 35, 36, 40, 45, 44, (2,60,149): 41, 46, 53, 71, 65, 48, 45, 57, 58, 49, 49, 48, 49, 50, (2,60,163): 51, 50, 47, 46, 46, 42, 43, 66, 89, 108, 128, 137, 131, (2,60,176): 124, 126, 127, 129, 129, 124, 117, 112, 101, 93, 86, 90, (2,60,188): 93, 82, 66, 60, 63, 67, 75, 81, 86, 90, 95, 97, 101, (2,60,201): 104, 109, 113, 114, 114, 112, 111, 114, 116, 116, 116, (2,60,212): 116, 114, 116, 119, 123, 120, 120, 130, 149, 167, 181, (2,60,223): 193, 191, 182, 168, (2,61,0): 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 59, 59, 60, (2,61,14): 60, 60, 60, 60, 60, 61, 59, 60, 60, 60, 59, 59, 60, 63, (2,61,28): 63, 64, 65, 70, 80, 93, 101, 115, 133, 151, 157, 151, (2,61,40): 150, 159, 161, 150, 133, 117, 100, 80, 72, 78, 81, 74, (2,61,52): 64, 60, 63, 66, 70, 70, 71, 72, 73, 69, 62, 54, 53, 45, (2,61,66): 40, 40, 41, 42, 45, 51, 69, 63, 62, 56, 47, 58, 80, 91, (2,61,80): 67, 51, 37, 39, 43, 43, 43, 44, 38, 45, 52, 52, 48, 44, (2,61,94): 43, 45, 56, 59, 61, 60, 61, 61, 60, 62, 65, 66, 75, 78, (2,61,108): 78, 79, 88, 95, 72, 91, 108, 107, 99, 95, 88, 74, 81, (2,61,121): 71, 58, 50, 45, 45, 43, 42, 47, 40, 66, 99, 71, 75, 57, (2,61,135): 57, 74, 60, 48, 45, 47, 43, 41, 40, 38, 37, 41, 45, 41, (2,61,149): 39, 47, 59, 65, 61, 50, 46, 55, 54, 46, 45, 45, 44, 47, (2,61,163): 49, 49, 49, 49, 50, 41, 41, 58, 82, 104, 125, 137, 132, (2,61,176): 125, 127, 128, 128, 127, 121, 115, 111, 99, 96, 88, 91, (2,61,188): 95, 78, 58, 56, 69, 73, 83, 89, 93, 96, 103, 108, 108, (2,61,201): 109, 111, 112, 111, 110, 108, 108, 113, 113, 114, 114, (2,61,212): 111, 112, 114, 116, 118, 116, 119, 132, 153, 175, 190, (2,61,223): 204, 202, 192, 175, (2,62,0): 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 57, 57, 58, (2,62,14): 58, 58, 60, 60, 60, 61, 59, 60, 60, 60, 58, 59, 59, 62, (2,62,28): 62, 62, 60, 65, 77, 87, 95, 109, 128, 146, 152, 145, 142, (2,62,41): 148, 148, 135, 121, 108, 91, 75, 66, 75, 79, 73, 67, 66, (2,62,54): 67, 66, 69, 69, 70, 70, 70, 66, 60, 53, 51, 43, 39, 41, (2,62,68): 42, 44, 49, 55, 58, 57, 51, 50, 50, 52, 69, 97, 91, 67, (2,62,82): 47, 45, 46, 42, 43, 47, 44, 47, 51, 50, 47, 44, 47, 53, (2,62,96): 66, 68, 69, 65, 63, 60, 56, 55, 65, 69, 77, 80, 80, 84, (2,62,110): 96, 104, 87, 108, 116, 100, 89, 90, 84, 66, 82, 67, 49, (2,62,123): 40, 36, 38, 38, 39, 46, 44, 77, 81, 62, 62, 51, 55, 81, (2,62,137): 64, 49, 45, 44, 40, 40, 41, 39, 38, 38, 42, 40, 40, 52, (2,62,151): 70, 65, 64, 54, 48, 51, 49, 43, 45, 47, 45, 47, 47, 47, (2,62,165): 49, 49, 50, 46, 40, 50, 72, 94, 122, 138, 135, 129, 130, (2,62,178): 132, 130, 124, 117, 111, 108, 96, 97, 87, 89, 93, 71, (2,62,190): 49, 54, 68, 78, 91, 99, 104, 106, 110, 115, 116, 116, (2,62,202): 114, 112, 110, 109, 108, 108, 110, 110, 111, 111, 108, (2,62,213): 107, 110, 114, 116, 116, 119, 133, 154, 175, 189, 204, (2,62,224): 201, 189, 171, (2,63,0): 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 57, 57, 58, (2,63,14): 58, 58, 60, 60, 60, 61, 61, 60, 60, 60, 62, 61, 63, 63, (2,63,28): 63, 62, 59, 63, 75, 84, 92, 107, 127, 148, 156, 151, 148, (2,63,41): 149, 144, 133, 122, 111, 91, 76, 69, 78, 81, 76, 74, 73, (2,63,54): 70, 64, 68, 67, 67, 65, 65, 61, 56, 52, 49, 43, 40, 44, (2,63,68): 46, 49, 55, 61, 52, 53, 46, 48, 54, 39, 41, 71, 106, 80, (2,63,82): 55, 48, 48, 42, 43, 48, 48, 50, 51, 50, 49, 50, 54, 60, (2,63,96): 53, 56, 56, 56, 55, 53, 52, 53, 50, 57, 66, 71, 74, 77, (2,63,110): 92, 104, 115, 106, 98, 93, 93, 89, 76, 59, 70, 59, 46, (2,63,123): 40, 39, 40, 38, 37, 39, 43, 74, 50, 56, 49, 47, 64, 83, (2,63,137): 65, 49, 42, 40, 37, 36, 40, 40, 38, 37, 42, 38, 37, 53, (2,63,151): 74, 65, 66, 54, 46, 49, 47, 43, 50, 47, 46, 45, 43, 42, (2,63,165): 42, 44, 44, 49, 40, 46, 66, 88, 119, 139, 138, 133, 133, (2,63,178): 134, 130, 122, 114, 108, 105, 92, 94, 85, 86, 90, 67, (2,63,190): 45, 53, 63, 74, 92, 103, 108, 110, 114, 118, 122, 119, (2,63,202): 114, 109, 105, 103, 103, 105, 107, 109, 109, 108, 104, (2,63,213): 105, 106, 111, 115, 114, 120, 132, 152, 169, 181, 194, (2,63,224): 196, 183, 164, (2,64,0): 55, 55, 55, 55, 55, 55, 55, 55, 56, 56, 56, 56, 56, 56, (2,64,14): 56, 58, 60, 61, 62, 60, 60, 61, 63, 65, 66, 63, 64, 65, (2,64,28): 66, 66, 65, 66, 76, 80, 91, 108, 134, 156, 170, 173, 166, (2,64,41): 166, 159, 144, 128, 115, 102, 96, 87, 79, 74, 76, 79, 75, (2,64,54): 69, 70, 66, 63, 61, 58, 57, 54, 48, 44, 38, 48, 44, 40, (2,64,68): 53, 61, 53, 50, 53, 49, 46, 45, 42, 42, 39, 37, 48, 76, (2,64,82): 79, 57, 42, 46, 51, 45, 42, 66, 47, 59, 62, 56, 77, 51, (2,64,96): 50, 50, 50, 39, 42, 47, 47, 38, 41, 55, 46, 55, 64, 57, (2,64,110): 112, 66, 108, 105, 99, 92, 87, 77, 64, 52, 55, 55, 49, (2,64,123): 38, 33, 35, 39, 41, 45, 47, 63, 55, 49, 52, 52, 67, 72, (2,64,137): 69, 59, 48, 41, 40, 41, 42, 47, 44, 35, 30, 36, 47, 59, (2,64,151): 63, 70, 61, 48, 42, 44, 49, 51, 52, 49, 49, 49, 46, 46, (2,64,165): 45, 45, 47, 48, 37, 49, 51, 89, 113, 143, 134, 140, 141, (2,64,178): 135, 123, 116, 115, 110, 101, 99, 89, 91, 89, 105, 59, (2,64,190): 45, 54, 66, 77, 93, 99, 103, 106, 110, 111, 110, 109, (2,64,202): 108, 105, 104, 102, 101, 102, 108, 109, 108, 107, 103, (2,64,213): 102, 103, 105, 109, 114, 118, 124, 137, 153, 164, 174, (2,64,224): 173, 158, 141, (2,65,0): 55, 55, 55, 55, 55, 55, 55, 55, 56, 56, 56, 56, 56, 56, (2,65,14): 56, 58, 59, 62, 63, 62, 61, 61, 63, 66, 67, 65, 66, 66, (2,65,28): 68, 70, 72, 73, 78, 84, 97, 116, 142, 166, 183, 187, 199, (2,65,41): 182, 160, 142, 133, 125, 111, 100, 99, 90, 82, 83, 86, (2,65,53): 80, 74, 69, 63, 60, 58, 56, 55, 52, 47, 44, 43, 45, 40, (2,65,67): 44, 54, 52, 49, 55, 48, 45, 42, 40, 38, 38, 37, 39, 46, (2,65,81): 59, 68, 60, 47, 40, 41, 46, 51, 69, 49, 60, 65, 60, 77, (2,65,95): 50, 44, 40, 44, 44, 43, 40, 40, 44, 39, 40, 44, 68, 38, (2,65,109): 65, 80, 51, 117, 106, 97, 93, 83, 67, 56, 54, 44, 53, (2,65,122): 54, 44, 31, 26, 25, 27, 37, 54, 80, 71, 52, 53, 61, 85, (2,65,136): 66, 63, 57, 47, 41, 44, 47, 48, 51, 49, 46, 45, 46, 51, (2,65,150): 57, 61, 64, 56, 45, 42, 44, 49, 51, 51, 50, 50, 49, 48, (2,65,164): 46, 45, 45, 45, 49, 36, 47, 50, 87, 115, 144, 136, 140, (2,65,177): 138, 132, 121, 116, 114, 110, 103, 97, 90, 95, 96, 92, (2,65,189): 55, 46, 57, 67, 75, 89, 95, 98, 102, 105, 106, 105, 105, (2,65,202): 104, 101, 100, 100, 99, 101, 106, 108, 108, 105, 101, (2,65,213): 99, 99, 99, 104, 107, 112, 115, 124, 132, 135, 139, 126, (2,65,225): 111, 95, (2,66,0): 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, (2,66,14): 56, 56, 58, 62, 64, 64, 63, 62, 63, 67, 69, 71, 71, 73, (2,66,28): 77, 79, 84, 86, 88, 96, 112, 134, 161, 185, 201, 206, (2,66,40): 210, 196, 178, 159, 147, 138, 122, 109, 105, 92, 81, 79, (2,66,52): 82, 81, 75, 69, 61, 58, 57, 55, 55, 52, 48, 45, 45, 43, (2,66,66): 44, 54, 63, 50, 41, 50, 47, 46, 44, 44, 40, 38, 38, 42, (2,66,80): 45, 46, 57, 67, 58, 37, 35, 50, 53, 68, 50, 59, 63, 61, (2,66,94): 80, 59, 48, 38, 39, 51, 47, 39, 37, 50, 41, 57, 48, 48, (2,66,108): 60, 93, 73, 101, 102, 92, 84, 82, 73, 59, 52, 57, 44, (2,66,121): 50, 53, 49, 45, 41, 35, 32, 30, 42, 67, 58, 44, 53, 66, (2,66,135): 93, 58, 59, 57, 51, 47, 52, 56, 59, 60, 59, 59, 63, 62, (2,66,149): 58, 61, 68, 57, 52, 44, 43, 45, 49, 50, 50, 50, 50, 49, (2,66,163): 48, 46, 45, 45, 45, 50, 37, 43, 48, 84, 119, 146, 138, (2,66,176): 137, 137, 129, 120, 114, 111, 107, 102, 95, 92, 98, 103, (2,66,188): 72, 51, 50, 60, 69, 78, 90, 94, 95, 99, 103, 103, 102, (2,66,201): 102, 99, 98, 98, 97, 98, 99, 102, 104, 104, 101, 97, 96, (2,66,214): 96, 96, 106, 110, 115, 116, 119, 117, 110, 108, 87, 76, (2,66,226): 62, (2,67,0): 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, (2,67,14): 57, 57, 56, 58, 60, 62, 63, 62, 67, 69, 72, 79, 84, 89, (2,67,28): 95, 99, 102, 104, 108, 116, 134, 155, 181, 200, 214, 220, (2,67,40): 212, 208, 194, 167, 144, 130, 124, 123, 116, 103, 92, 84, (2,67,52): 80, 77, 71, 66, 59, 56, 55, 55, 54, 52, 49, 46, 42, 45, (2,67,66): 48, 58, 71, 63, 46, 41, 49, 49, 48, 49, 45, 39, 38, 43, (2,67,80): 45, 43, 52, 66, 61, 44, 42, 54, 45, 58, 48, 53, 58, 62, (2,67,94): 86, 79, 69, 56, 38, 49, 44, 50, 42, 46, 57, 28, 54, 49, (2,67,108): 63, 76, 98, 85, 67, 68, 70, 65, 61, 57, 56, 55, 51, 49, (2,67,122): 50, 58, 72, 83, 78, 64, 50, 53, 73, 76, 82, 90, 81, 86, (2,67,136): 49, 54, 57, 55, 53, 57, 60, 59, 64, 61, 61, 67, 63, 56, (2,67,150): 61, 74, 51, 48, 43, 44, 46, 48, 49, 49, 50, 50, 49, 48, (2,67,164): 46, 45, 45, 45, 51, 39, 40, 46, 79, 121, 146, 139, 137, (2,67,177): 135, 126, 118, 111, 106, 102, 98, 92, 94, 100, 104, 53, (2,67,189): 48, 56, 67, 75, 80, 89, 92, 94, 98, 101, 102, 100, 97, (2,67,202): 97, 96, 96, 96, 97, 99, 102, 103, 102, 98, 96, 93, 93, (2,67,215): 95, 103, 110, 116, 115, 117, 113, 105, 100, 84, 75, 64, (2,68,0): 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, (2,68,14): 59, 57, 53, 53, 57, 59, 62, 64, 70, 75, 81, 92, 104, 115, (2,68,28): 121, 123, 125, 127, 129, 138, 153, 172, 193, 208, 220, (2,68,39): 225, 224, 214, 190, 159, 130, 115, 111, 107, 109, 108, (2,68,50): 105, 96, 87, 77, 66, 61, 59, 56, 56, 55, 55, 53, 48, 47, (2,68,64): 41, 51, 48, 49, 72, 81, 67, 48, 48, 45, 47, 51, 49, 42, (2,68,78): 39, 42, 44, 48, 53, 57, 57, 51, 50, 50, 38, 50, 47, 48, (2,68,92): 50, 59, 84, 94, 95, 83, 49, 51, 45, 69, 54, 44, 45, 63, (2,68,106): 52, 54, 104, 66, 49, 52, 42, 61, 69, 58, 55, 61, 59, 48, (2,68,120): 51, 59, 70, 83, 99, 108, 107, 97, 62, 64, 91, 103, 112, (2,68,133): 106, 75, 59, 48, 55, 60, 59, 53, 52, 49, 49, 59, 55, 54, (2,68,147): 56, 52, 51, 60, 75, 47, 46, 43, 44, 46, 48, 47, 49, 50, (2,68,161): 50, 49, 48, 46, 45, 45, 45, 51, 42, 37, 45, 71, 121, (2,68,174): 145, 140, 137, 132, 124, 116, 109, 102, 96, 93, 92, 97, (2,68,186): 101, 97, 43, 48, 62, 73, 77, 83, 92, 95, 95, 99, 99, 98, (2,68,200): 96, 96, 95, 95, 95, 96, 97, 98, 100, 101, 100, 96, 94, (2,68,213): 90, 92, 94, 97, 103, 109, 112, 115, 114, 110, 106, 100, (2,68,225): 94, 84, (2,69,0): 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, (2,69,14): 60, 58, 52, 52, 56, 58, 62, 69, 77, 84, 97, 112, 129, (2,69,27): 140, 145, 147, 147, 148, 149, 157, 170, 183, 196, 207, (2,69,38): 216, 218, 218, 201, 180, 162, 145, 123, 93, 64, 66, 73, (2,69,50): 82, 85, 82, 77, 67, 58, 60, 59, 57, 56, 56, 54, 48, 47, (2,69,64): 44, 54, 43, 36, 63, 92, 90, 73, 50, 41, 41, 48, 48, 44, (2,69,78): 41, 45, 42, 49, 50, 47, 48, 53, 51, 43, 39, 45, 49, 46, (2,69,92): 45, 53, 71, 87, 98, 97, 60, 60, 44, 75, 57, 47, 53, 40, (2,69,106): 41, 89, 65, 61, 58, 35, 43, 62, 69, 57, 50, 55, 53, 46, (2,69,120): 55, 78, 101, 110, 108, 105, 108, 107, 76, 74, 90, 84, (2,69,132): 77, 70, 50, 47, 60, 68, 72, 67, 56, 51, 46, 45, 58, 58, (2,69,146): 55, 52, 52, 58, 67, 74, 46, 44, 44, 44, 45, 47, 47, 47, (2,69,160): 50, 50, 49, 48, 46, 45, 45, 45, 49, 45, 36, 44, 61, 118, (2,69,174): 141, 141, 135, 129, 120, 114, 107, 98, 92, 90, 92, 99, (2,69,186): 96, 77, 43, 48, 64, 73, 78, 82, 91, 95, 96, 100, 99, 96, (2,69,200): 93, 92, 92, 93, 94, 95, 97, 98, 98, 98, 98, 95, 91, 89, (2,69,214): 89, 90, 95, 101, 107, 109, 115, 117, 115, 114, 112, 109, (2,69,226): 102, (2,70,0): 61, 61, 61, 61, 61, 61, 61, 61, 60, 60, 60, 60, 60, 60, (2,70,14): 60, 58, 54, 54, 57, 60, 65, 75, 86, 97, 118, 134, 151, (2,70,27): 161, 165, 163, 165, 167, 171, 178, 184, 191, 196, 200, (2,70,38): 206, 205, 198, 187, 179, 176, 169, 148, 109, 76, 50, 52, (2,70,50): 52, 57, 68, 78, 75, 67, 63, 61, 59, 58, 56, 53, 49, 48, (2,70,64): 48, 54, 44, 39, 63, 86, 91, 87, 66, 50, 41, 44, 48, 44, (2,70,78): 43, 48, 44, 47, 47, 46, 49, 52, 48, 37, 41, 42, 47, 46, (2,70,92): 46, 51, 55, 67, 82, 94, 75, 87, 55, 74, 60, 69, 56, 46, (2,70,106): 51, 73, 59, 58, 37, 61, 59, 62, 65, 60, 54, 50, 59, 68, (2,70,120): 83, 101, 115, 115, 106, 103, 104, 102, 100, 86, 84, 61, (2,70,132): 48, 52, 51, 64, 69, 75, 76, 65, 55, 51, 49, 51, 55, 62, (2,70,146): 61, 55, 58, 69, 72, 66, 47, 45, 45, 44, 45, 44, 47, 48, (2,70,160): 50, 50, 49, 48, 46, 45, 45, 45, 47, 48, 37, 44, 53, 113, (2,70,174): 138, 141, 132, 124, 116, 112, 106, 97, 93, 94, 95, 102, (2,70,186): 91, 54, 48, 49, 64, 69, 77, 82, 91, 94, 97, 100, 97, 93, (2,70,200): 89, 87, 88, 88, 92, 93, 95, 96, 95, 94, 94, 92, 89, 87, (2,70,214): 86, 88, 95, 100, 104, 108, 111, 113, 109, 106, 104, 101, (2,70,226): 96, (2,71,0): 61, 61, 61, 61, 61, 61, 61, 61, 60, 60, 60, 60, 60, 60, (2,71,14): 60, 58, 57, 57, 60, 64, 71, 82, 97, 109, 138, 152, 168, (2,71,27): 176, 176, 175, 176, 181, 190, 195, 196, 196, 193, 191, (2,71,38): 190, 188, 187, 180, 175, 169, 166, 162, 150, 136, 84, 71, (2,71,50): 53, 48, 63, 81, 86, 79, 67, 63, 61, 59, 58, 53, 49, 48, (2,71,64): 48, 53, 51, 53, 69, 77, 79, 88, 85, 62, 45, 46, 49, 45, (2,71,78): 44, 48, 48, 45, 46, 51, 55, 52, 45, 37, 43, 37, 45, 45, (2,71,92): 50, 53, 47, 52, 70, 93, 92, 117, 74, 77, 67, 96, 115, 64, (2,71,106): 128, 112, 84, 63, 50, 62, 75, 62, 63, 70, 66, 56, 74, (2,71,119): 103, 119, 114, 110, 103, 107, 111, 110, 101, 93, 73, 71, (2,71,131): 52, 48, 52, 46, 53, 63, 68, 65, 56, 47, 47, 49, 54, 47, (2,71,145): 60, 61, 54, 58, 69, 65, 52, 46, 46, 45, 44, 42, 44, 47, (2,71,159): 49, 49, 50, 49, 48, 46, 45, 45, 45, 46, 50, 37, 44, 49, (2,71,173): 111, 136, 142, 128, 120, 113, 111, 106, 97, 95, 96, 98, (2,71,185): 103, 87, 39, 51, 47, 60, 63, 76, 81, 91, 95, 98, 100, (2,71,198): 95, 90, 85, 85, 85, 86, 90, 92, 93, 93, 91, 91, 91, 88, (2,71,212): 87, 85, 84, 88, 90, 95, 99, 100, 102, 102, 93, 88, 81, (2,71,225): 82, 76, (2,72,0): 60, 62, 64, 64, 63, 63, 63, 65, 66, 63, 61, 61, 65, 67, (2,72,14): 66, 62, 63, 62, 64, 73, 80, 90, 112, 137, 154, 165, 177, (2,72,27): 185, 186, 183, 180, 182, 198, 202, 202, 198, 195, 190, (2,72,38): 187, 180, 181, 176, 172, 165, 163, 161, 156, 152, 136, (2,72,49): 103, 70, 103, 101, 63, 78, 99, 76, 65, 57, 58, 57, 53, (2,72,62): 49, 54, 49, 46, 59, 51, 63, 75, 65, 86, 84, 73, 57, 47, (2,72,76): 45, 47, 47, 47, 45, 44, 48, 52, 48, 41, 40, 44, 36, 38, (2,72,90): 41, 45, 48, 48, 49, 52, 57, 78, 93, 83, 61, 60, 96, 132, (2,72,104): 128, 113, 107, 109, 107, 97, 92, 96, 90, 75, 66, 65, 62, (2,72,117): 57, 62, 72, 95, 105, 114, 112, 109, 110, 111, 103, 83, (2,72,129): 64, 53, 49, 49, 46, 49, 52, 61, 58, 55, 52, 48, 49, 51, (2,72,143): 54, 60, 59, 59, 60, 59, 57, 51, 47, 44, 46, 46, 43, 43, (2,72,157): 44, 44, 48, 50, 51, 50, 49, 47, 46, 46, 46, 53, 44, 44, (2,72,171): 38, 55, 87, 154, 131, 128, 124, 114, 104, 101, 101, 100, (2,72,183): 96, 108, 100, 63, 32, 38, 46, 53, 67, 69, 77, 90, 98, (2,72,196): 96, 92, 89, 89, 83, 82, 83, 84, 88, 90, 93, 91, 88, 87, (2,72,210): 88, 87, 87, 85, 84, 83, 91, 93, 94, 91, 85, 77, 67, 62, (2,72,224): 46, 47, 46, (2,73,0): 59, 62, 64, 64, 64, 63, 64, 65, 66, 64, 63, 64, 66, 67, (2,73,14): 66, 64, 71, 70, 71, 83, 97, 111, 131, 150, 162, 174, 184, (2,73,27): 185, 181, 180, 182, 190, 206, 211, 209, 206, 199, 193, (2,73,38): 186, 177, 172, 167, 167, 164, 164, 163, 158, 154, 154, (2,73,49): 128, 100, 119, 109, 74, 91, 112, 91, 76, 64, 62, 64, 59, (2,73,62): 54, 52, 56, 51, 56, 46, 51, 64, 59, 77, 96, 81, 58, 41, (2,73,76): 38, 45, 45, 41, 49, 53, 55, 51, 46, 41, 42, 42, 46, 43, (2,73,90): 43, 43, 44, 44, 46, 50, 55, 64, 76, 91, 98, 100, 101, (2,73,103): 105, 87, 82, 86, 100, 111, 107, 95, 84, 58, 53, 54, 57, (2,73,116): 53, 45, 54, 67, 90, 100, 108, 109, 110, 109, 104, 90, (2,73,128): 69, 55, 52, 51, 53, 48, 47, 50, 57, 55, 52, 51, 49, 50, (2,73,142): 53, 54, 59, 58, 58, 57, 57, 53, 49, 44, 44, 45, 44, 44, (2,73,156): 43, 44, 44, 48, 50, 51, 50, 49, 47, 46, 46, 46, 51, 50, (2,73,170): 46, 42, 52, 91, 147, 125, 122, 118, 111, 105, 102, 98, (2,73,182): 99, 99, 104, 86, 56, 35, 35, 40, 47, 56, 65, 74, 88, 95, (2,73,196): 93, 88, 86, 84, 79, 80, 81, 82, 86, 88, 91, 89, 88, 87, (2,73,210): 87, 87, 84, 81, 82, 81, 80, 78, 76, 70, 63, 54, 47, 43, (2,73,224): 45, 45, 45, (2,74,0): 60, 62, 65, 65, 65, 65, 66, 67, 68, 67, 66, 67, 68, 68, (2,74,14): 67, 67, 77, 77, 82, 98, 116, 132, 149, 164, 172, 182, (2,74,26): 187, 181, 176, 175, 184, 196, 213, 217, 217, 216, 209, (2,74,37): 202, 193, 184, 173, 169, 167, 166, 167, 165, 160, 154, (2,74,48): 144, 129, 107, 112, 96, 71, 85, 105, 117, 95, 76, 68, 68, (2,74,61): 64, 58, 54, 58, 54, 58, 48, 44, 51, 47, 56, 92, 91, 77, (2,74,75): 54, 40, 43, 45, 44, 50, 62, 67, 54, 41, 39, 39, 37, 42, (2,74,89): 41, 41, 41, 44, 47, 52, 57, 40, 51, 67, 88, 98, 97, 91, (2,74,103): 91, 80, 81, 87, 101, 116, 115, 93, 66, 53, 52, 60, 62, (2,74,116): 57, 52, 69, 87, 83, 87, 95, 102, 107, 105, 89, 73, 55, (2,74,129): 49, 53, 56, 59, 53, 49, 48, 51, 50, 48, 48, 49, 51, 54, (2,74,143): 56, 57, 57, 55, 56, 56, 52, 48, 43, 45, 45, 44, 44, 41, (2,74,157): 41, 44, 48, 50, 51, 50, 49, 47, 46, 46, 46, 48, 57, 48, (2,74,171): 46, 46, 98, 136, 119, 120, 115, 109, 108, 102, 93, 95, (2,74,183): 102, 103, 74, 52, 44, 39, 40, 47, 48, 60, 69, 81, 91, (2,74,196): 90, 85, 82, 79, 77, 75, 76, 80, 84, 85, 88, 87, 89, 87, (2,74,210): 85, 84, 82, 77, 77, 76, 71, 69, 65, 59, 51, 45, 42, 39, (2,74,224): 48, 49, 50, (2,75,0): 58, 61, 63, 65, 64, 65, 66, 68, 67, 67, 67, 68, 68, 67, (2,75,14): 66, 68, 77, 86, 99, 115, 134, 149, 163, 173, 180, 183, (2,75,26): 180, 175, 172, 177, 190, 202, 221, 225, 225, 225, 217, (2,75,37): 208, 198, 189, 179, 175, 174, 171, 170, 167, 158, 150, (2,75,48): 139, 132, 118, 113, 99, 87, 96, 109, 137, 116, 93, 78, (2,75,60): 71, 68, 63, 60, 56, 56, 63, 59, 48, 47, 41, 35, 59, 82, (2,75,74): 92, 69, 44, 39, 43, 45, 50, 75, 88, 70, 48, 42, 43, 40, (2,75,88): 38, 37, 37, 37, 41, 44, 48, 52, 39, 44, 54, 66, 72, 73, (2,75,102): 78, 86, 93, 98, 97, 100, 111, 115, 94, 61, 55, 52, 54, (2,75,115): 52, 50, 52, 73, 95, 73, 73, 76, 86, 96, 93, 77, 56, 51, (2,75,129): 51, 56, 62, 63, 59, 53, 50, 50, 49, 48, 48, 49, 51, 54, (2,75,143): 55, 55, 57, 55, 56, 54, 52, 46, 43, 44, 45, 44, 44, 41, (2,75,157): 41, 43, 47, 50, 51, 50, 49, 47, 46, 46, 46, 47, 60, 49, (2,75,171): 46, 44, 106, 128, 116, 121, 113, 107, 106, 99, 89, 94, (2,75,183): 104, 101, 66, 55, 59, 49, 45, 51, 45, 54, 62, 76, 85, (2,75,196): 88, 82, 80, 75, 73, 74, 75, 77, 80, 84, 87, 86, 88, 85, (2,75,210): 83, 80, 77, 74, 72, 71, 68, 65, 61, 56, 54, 54, 55, 56, (2,75,224): 56, 56, 58, (2,76,0): 56, 58, 62, 63, 64, 64, 66, 68, 66, 67, 68, 68, 67, 66, (2,76,14): 66, 73, 82, 104, 123, 137, 151, 161, 171, 180, 183, 179, (2,76,26): 173, 171, 176, 187, 198, 206, 223, 224, 228, 228, 225, (2,76,37): 217, 209, 202, 194, 191, 188, 182, 181, 175, 163, 151, (2,76,48): 140, 128, 121, 113, 107, 105, 101, 105, 132, 126, 114, (2,76,59): 100, 89, 78, 69, 64, 55, 55, 61, 63, 51, 51, 53, 35, 34, (2,76,73): 59, 75, 64, 47, 42, 42, 42, 50, 85, 104, 88, 62, 51, 50, (2,76,87): 48, 45, 44, 43, 41, 39, 36, 36, 35, 44, 39, 41, 53, 65, (2,76,101): 71, 71, 72, 80, 91, 97, 97, 104, 109, 95, 68, 60, 55, (2,76,114): 56, 56, 61, 67, 83, 95, 63, 59, 59, 68, 79, 77, 65, 51, (2,76,128): 49, 53, 56, 57, 57, 55, 51, 48, 50, 49, 48, 48, 50, 51, (2,76,142): 52, 53, 56, 56, 56, 57, 55, 53, 47, 44, 45, 46, 45, 42, (2,76,156): 41, 41, 41, 45, 50, 51, 50, 49, 47, 46, 46, 46, 47, 58, (2,76,170): 48, 45, 51, 112, 122, 116, 116, 109, 102, 100, 99, 94, (2,76,182): 100, 109, 91, 62, 61, 70, 59, 52, 54, 46, 51, 56, 70, (2,76,195): 78, 83, 82, 77, 74, 72, 72, 73, 76, 79, 83, 86, 85, 86, (2,76,209): 85, 82, 76, 75, 72, 70, 70, 66, 63, 59, 56, 58, 61, 64, (2,76,223): 67, 63, 61, 63, (2,77,0): 53, 56, 59, 61, 62, 63, 65, 67, 67, 68, 68, 68, 67, 67, (2,77,14): 69, 80, 99, 124, 144, 154, 161, 169, 176, 180, 179, 176, (2,77,26): 171, 174, 185, 199, 209, 209, 220, 221, 226, 228, 227, (2,77,37): 224, 219, 214, 209, 204, 198, 192, 190, 184, 168, 153, (2,77,48): 134, 116, 113, 101, 101, 103, 91, 91, 109, 117, 123, 121, (2,77,60): 112, 99, 84, 71, 63, 58, 54, 59, 49, 58, 74, 50, 41, 44, (2,77,74): 46, 47, 49, 53, 49, 45, 47, 77, 93, 83, 63, 52, 49, 48, (2,77,88): 51, 50, 50, 49, 47, 44, 43, 41, 24, 34, 50, 62, 64, 58, (2,77,102): 59, 64, 67, 83, 95, 98, 102, 104, 89, 67, 62, 59, 67, (2,77,115): 74, 84, 89, 93, 94, 58, 53, 51, 58, 65, 63, 56, 50, 50, (2,77,129): 53, 54, 50, 48, 48, 48, 46, 52, 52, 51, 50, 51, 51, 51, (2,77,143): 51, 56, 56, 56, 57, 55, 53, 47, 44, 45, 44, 43, 42, 40, (2,77,157): 40, 40, 44, 50, 51, 50, 49, 47, 46, 46, 46, 49, 51, 49, (2,77,171): 45, 67, 117, 117, 113, 105, 102, 97, 94, 98, 100, 105, (2,77,183): 105, 70, 58, 60, 67, 62, 55, 52, 46, 46, 50, 62, 72, 77, (2,77,197): 79, 75, 71, 70, 71, 72, 74, 78, 82, 85, 85, 85, 81, 78, (2,77,211): 75, 72, 69, 70, 71, 69, 68, 65, 63, 64, 66, 71, 71, 66, (2,77,225): 64, 64, (2,78,0): 50, 53, 57, 59, 60, 62, 64, 66, 69, 70, 70, 69, 67, 69, (2,78,14): 74, 89, 119, 142, 153, 160, 166, 173, 175, 175, 172, 174, (2,78,26): 176, 182, 192, 205, 216, 214, 210, 210, 217, 222, 223, (2,78,37): 224, 223, 221, 217, 212, 204, 196, 193, 186, 170, 153, (2,78,48): 139, 113, 111, 101, 101, 106, 89, 95, 84, 96, 110, 118, (2,78,60): 119, 115, 102, 87, 78, 66, 54, 61, 52, 61, 82, 48, 48, (2,78,73): 43, 40, 46, 51, 51, 49, 51, 54, 62, 67, 64, 55, 49, 47, (2,78,87): 47, 51, 51, 51, 51, 53, 53, 56, 54, 24, 37, 56, 61, 53, (2,78,101): 43, 48, 62, 74, 85, 97, 101, 100, 97, 82, 64, 47, 47, (2,78,114): 57, 64, 72, 74, 73, 70, 59, 54, 54, 60, 57, 52, 50, 52, (2,78,128): 48, 53, 52, 46, 42, 44, 46, 44, 53, 52, 52, 51, 53, 53, (2,78,142): 53, 53, 55, 55, 55, 56, 54, 52, 46, 43, 46, 45, 43, 42, (2,78,156): 38, 38, 40, 44, 50, 51, 50, 49, 47, 46, 46, 46, 51, 43, (2,78,170): 53, 48, 88, 120, 110, 105, 96, 102, 98, 93, 98, 104, (2,78,182): 101, 89, 47, 55, 58, 59, 62, 56, 48, 48, 44, 46, 54, 64, (2,78,196): 71, 74, 73, 70, 68, 66, 69, 72, 76, 79, 82, 83, 82, 80, (2,78,210): 78, 74, 72, 70, 72, 72, 72, 72, 71, 70, 72, 75, 79, 78, (2,78,224): 66, 64, 64, (2,79,0): 51, 54, 57, 60, 61, 63, 63, 65, 70, 71, 72, 70, 73, 77, (2,79,14): 85, 102, 137, 154, 158, 159, 164, 173, 175, 169, 169, (2,79,25): 175, 184, 191, 200, 211, 221, 222, 211, 209, 216, 221, (2,79,36): 223, 223, 223, 222, 217, 213, 203, 196, 193, 185, 170, (2,79,47): 150, 132, 103, 102, 90, 88, 95, 80, 93, 70, 77, 88, 99, (2,79,60): 114, 122, 119, 106, 92, 79, 66, 73, 61, 64, 79, 34, 39, (2,79,73): 39, 46, 54, 45, 34, 39, 55, 63, 55, 46, 48, 53, 53, 52, (2,79,87): 52, 52, 50, 46, 43, 41, 43, 44, 45, 62, 50, 41, 45, 50, (2,79,101): 53, 52, 51, 78, 81, 85, 89, 93, 88, 79, 64, 43, 43, 47, (2,79,115): 50, 52, 54, 56, 54, 62, 59, 63, 66, 62, 53, 51, 57, 51, (2,79,129): 55, 57, 47, 43, 46, 49, 47, 52, 52, 52, 52, 54, 54, 54, (2,79,143): 54, 54, 53, 53, 52, 53, 49, 45, 40, 44, 43, 43, 40, 38, (2,79,157): 36, 38, 42, 48, 50, 50, 47, 47, 44, 44, 46, 52, 38, 57, (2,79,171): 53, 103, 121, 105, 99, 93, 104, 101, 93, 97, 104, 93, (2,79,183): 70, 35, 56, 58, 54, 63, 57, 45, 49, 39, 40, 49, 58, 69, (2,79,197): 73, 74, 72, 67, 66, 67, 69, 72, 77, 80, 81, 80, 77, 74, (2,79,211): 73, 71, 70, 72, 73, 71, 70, 71, 73, 75, 77, 78, 78, 67, (2,79,225): 63, 66, (2,80,0): 54, 56, 59, 62, 62, 62, 62, 63, 62, 63, 66, 71, 82, 95, (2,80,14): 110, 126, 147, 160, 168, 169, 166, 163, 162, 164, 173, (2,80,25): 181, 192, 204, 214, 223, 231, 232, 223, 218, 219, 220, (2,80,36): 220, 219, 216, 213, 210, 207, 201, 198, 193, 184, 171, (2,80,47): 155, 124, 108, 96, 90, 85, 80, 78, 79, 73, 80, 80, 83, (2,80,60): 100, 114, 124, 134, 113, 115, 93, 76, 65, 84, 49, 42, 42, (2,80,73): 40, 39, 38, 40, 43, 46, 49, 46, 50, 52, 48, 40, 39, 47, (2,80,87): 53, 48, 48, 46, 43, 41, 42, 44, 47, 46, 52, 58, 60, 59, (2,80,101): 52, 44, 38, 55, 66, 76, 83, 86, 82, 73, 58, 42, 40, 44, (2,80,115): 46, 47, 50, 51, 54, 62, 63, 63, 63, 63, 63, 60, 60, 55, (2,80,129): 56, 59, 57, 54, 53, 54, 58, 52, 51, 52, 53, 53, 53, 51, (2,80,143): 52, 53, 54, 52, 52, 51, 47, 44, 41, 44, 42, 40, 38, 38, (2,80,157): 37, 37, 38, 45, 47, 48, 46, 44, 43, 42, 44, 48, 46, 53, (2,80,171): 64, 117, 113, 106, 99, 105, 90, 94, 103, 99, 107, 87, (2,80,183): 35, 32, 39, 52, 60, 57, 49, 47, 47, 38, 37, 46, 56, 68, (2,80,197): 75, 78, 74, 70, 66, 64, 66, 70, 74, 80, 81, 76, 72, 71, (2,80,211): 72, 74, 73, 72, 71, 74, 73, 71, 71, 74, 72, 71, 67, 60, (2,80,225): 61, 66, (2,81,0): 52, 54, 60, 63, 63, 62, 62, 61, 59, 60, 65, 73, 88, 105, (2,81,14): 121, 134, 149, 158, 162, 162, 159, 159, 161, 164, 176, (2,81,25): 186, 197, 207, 217, 224, 230, 229, 221, 217, 218, 219, (2,81,36): 218, 217, 214, 211, 210, 205, 200, 198, 192, 183, 170, (2,81,47): 154, 123, 105, 94, 89, 83, 77, 74, 75, 75, 82, 82, 82, (2,81,60): 97, 106, 111, 119, 133, 133, 115, 100, 83, 85, 44, 37, (2,81,72): 41, 38, 37, 38, 39, 42, 45, 47, 44, 44, 44, 44, 43, 43, (2,81,86): 43, 44, 49, 48, 46, 44, 42, 40, 38, 38, 42, 48, 53, 56, (2,81,100): 57, 55, 52, 49, 45, 54, 64, 71, 73, 70, 59, 42, 37, 36, (2,81,114): 41, 44, 47, 51, 55, 58, 64, 65, 65, 65, 64, 60, 61, 58, (2,81,128): 57, 56, 58, 59, 57, 58, 58, 60, 52, 53, 52, 53, 53, 53, (2,81,142): 51, 50, 53, 54, 52, 52, 49, 47, 44, 41, 42, 42, 40, 38, (2,81,156): 38, 37, 37, 37, 43, 43, 44, 42, 42, 40, 41, 42, 49, 43, (2,81,170): 51, 88, 114, 111, 98, 104, 99, 95, 91, 97, 109, 98, 64, (2,81,183): 37, 39, 40, 44, 49, 48, 45, 46, 44, 29, 39, 60, 74, 82, (2,81,197): 81, 79, 76, 70, 65, 64, 64, 68, 72, 77, 78, 75, 71, 72, (2,81,211): 70, 74, 73, 74, 72, 75, 73, 72, 70, 71, 71, 69, 65, 62, (2,81,225): 63, 66, (2,82,0): 46, 49, 55, 58, 59, 60, 61, 60, 60, 60, 66, 77, 93, 108, (2,82,14): 123, 137, 148, 153, 152, 149, 148, 152, 160, 166, 181, (2,82,25): 191, 202, 210, 216, 220, 224, 221, 215, 211, 211, 211, (2,82,36): 212, 211, 208, 206, 205, 199, 194, 191, 186, 175, 162, (2,82,47): 145, 119, 102, 91, 86, 82, 75, 72, 72, 81, 89, 89, 87, (2,82,60): 98, 105, 107, 113, 132, 134, 129, 121, 104, 88, 43, 38, (2,82,72): 41, 39, 38, 37, 38, 40, 43, 44, 45, 41, 39, 42, 47, 47, (2,82,86): 40, 34, 46, 45, 44, 44, 43, 41, 38, 36, 41, 44, 46, 48, (2,82,100): 51, 54, 55, 56, 49, 54, 59, 60, 62, 61, 54, 43, 37, 38, (2,82,114): 44, 47, 51, 53, 57, 60, 59, 61, 61, 59, 58, 55, 55, 54, (2,82,128): 55, 53, 55, 59, 60, 62, 60, 59, 52, 53, 52, 53, 53, 53, (2,82,142): 51, 50, 54, 55, 53, 53, 49, 47, 44, 40, 41, 41, 39, 37, (2,82,156): 37, 36, 36, 37, 39, 41, 42, 40, 40, 40, 41, 43, 50, 42, (2,82,170): 54, 112, 108, 104, 91, 108, 92, 100, 90, 98, 113, 82, (2,82,182): 41, 42, 43, 39, 38, 41, 42, 40, 41, 38, 29, 52, 84, 100, (2,82,196): 96, 83, 76, 71, 67, 63, 64, 64, 69, 74, 77, 78, 77, 72, (2,82,210): 72, 71, 75, 75, 76, 74, 75, 74, 70, 71, 72, 71, 70, 66, (2,82,224): 68, 69, 72, (2,83,0): 42, 45, 52, 55, 58, 59, 60, 60, 60, 61, 68, 79, 98, 114, (2,83,14): 128, 140, 149, 148, 143, 139, 142, 152, 162, 173, 187, (2,83,25): 195, 206, 213, 217, 219, 220, 217, 212, 209, 209, 210, (2,83,36): 211, 210, 209, 206, 202, 196, 191, 187, 180, 169, 154, (2,83,47): 137, 112, 96, 89, 84, 81, 73, 70, 69, 76, 89, 91, 92, (2,83,60): 103, 107, 108, 115, 118, 115, 126, 129, 123, 97, 50, 41, (2,83,72): 40, 39, 38, 37, 38, 39, 41, 42, 46, 42, 39, 41, 46, 46, (2,83,86): 40, 33, 41, 41, 40, 41, 43, 43, 42, 41, 45, 47, 48, 47, (2,83,100): 49, 49, 51, 51, 60, 59, 57, 51, 52, 55, 56, 49, 39, 41, (2,83,114): 46, 49, 53, 54, 55, 58, 57, 59, 59, 60, 60, 58, 58, 58, (2,83,128): 54, 54, 55, 59, 62, 63, 59, 56, 52, 53, 52, 53, 53, 53, (2,83,142): 51, 52, 55, 55, 54, 53, 50, 47, 44, 42, 42, 40, 40, 38, (2,83,156): 38, 36, 36, 36, 37, 40, 39, 40, 40, 40, 41, 43, 49, 46, (2,83,170): 74, 119, 104, 94, 95, 102, 91, 97, 99, 108, 101, 61, 33, (2,83,183): 46, 39, 39, 44, 46, 43, 36, 36, 36, 48, 77, 114, 124, (2,83,196): 109, 87, 74, 69, 67, 64, 65, 67, 74, 76, 79, 79, 78, 73, (2,83,210): 73, 72, 76, 76, 78, 77, 76, 74, 71, 72, 72, 73, 71, 68, (2,83,224): 72, 73, 76, (2,84,0): 39, 43, 49, 54, 57, 58, 61, 61, 61, 62, 68, 81, 101, 117, (2,84,14): 129, 138, 144, 143, 136, 134, 141, 154, 170, 180, 193, (2,84,25): 201, 208, 214, 217, 216, 217, 214, 209, 206, 209, 210, (2,84,36): 210, 211, 211, 207, 205, 199, 192, 185, 175, 162, 146, (2,84,47): 129, 104, 90, 84, 82, 79, 72, 68, 66, 68, 82, 87, 89, (2,84,60): 100, 106, 108, 113, 110, 104, 118, 123, 126, 96, 50, 40, (2,84,72): 40, 39, 39, 39, 39, 39, 40, 41, 47, 46, 44, 43, 43, 42, (2,84,86): 41, 40, 43, 43, 44, 43, 42, 42, 44, 45, 48, 48, 50, 47, (2,84,100): 48, 44, 45, 42, 55, 53, 52, 46, 48, 49, 50, 44, 37, 41, (2,84,114): 48, 53, 56, 57, 59, 60, 63, 63, 64, 64, 65, 63, 63, 64, (2,84,128): 56, 55, 55, 58, 61, 61, 56, 52, 52, 53, 54, 55, 53, 53, (2,84,142): 53, 52, 56, 56, 54, 54, 50, 47, 44, 42, 42, 40, 40, 38, (2,84,156): 38, 38, 38, 38, 37, 38, 39, 40, 40, 42, 44, 46, 47, 56, (2,84,170): 100, 111, 103, 89, 104, 95, 95, 88, 108, 113, 79, 46, (2,84,182): 45, 48, 41, 43, 47, 43, 34, 30, 40, 53, 83, 108, 139, (2,84,195): 141, 119, 91, 75, 70, 68, 66, 68, 71, 78, 80, 83, 83, (2,84,208): 78, 73, 73, 71, 76, 76, 79, 78, 74, 73, 72, 73, 73, 72, (2,84,222): 71, 68, 73, 75, 78, (2,85,0): 37, 42, 48, 51, 55, 58, 59, 60, 60, 61, 68, 82, 102, 117, (2,85,14): 127, 134, 137, 138, 133, 135, 147, 163, 179, 190, 202, (2,85,25): 209, 214, 216, 217, 215, 213, 212, 205, 204, 205, 207, (2,85,36): 210, 210, 212, 208, 210, 201, 192, 182, 169, 155, 138, (2,85,47): 120, 97, 86, 81, 80, 77, 73, 69, 67, 69, 82, 90, 90, 99, (2,85,61): 103, 106, 111, 114, 104, 116, 106, 109, 81, 43, 35, 39, (2,85,73): 40, 40, 40, 40, 41, 42, 42, 43, 45, 46, 44, 41, 39, 41, (2,85,87): 44, 46, 50, 52, 49, 42, 38, 41, 44, 44, 44, 47, 45, 47, (2,85,101): 43, 43, 40, 44, 47, 52, 51, 54, 51, 46, 35, 37, 42, 50, (2,85,115): 57, 59, 60, 63, 63, 64, 64, 64, 61, 60, 57, 57, 55, 59, (2,85,129): 58, 58, 58, 59, 58, 54, 51, 52, 53, 54, 55, 53, 53, 53, (2,85,143): 52, 57, 57, 55, 54, 52, 47, 45, 42, 43, 41, 41, 39, 39, (2,85,157): 37, 39, 37, 36, 37, 38, 39, 40, 42, 46, 48, 49, 72, 113, (2,85,171): 98, 100, 90, 108, 92, 96, 87, 106, 102, 57, 43, 58, 51, (2,85,184): 48, 48, 45, 35, 24, 29, 58, 84, 119, 135, 151, 147, 125, (2,85,197): 98, 81, 70, 66, 66, 70, 74, 79, 82, 85, 84, 78, 75, 72, (2,85,211): 70, 75, 76, 78, 79, 75, 74, 73, 73, 73, 72, 71, 67, 74, (2,85,225): 77, 80, (2,86,0): 35, 39, 45, 48, 52, 53, 56, 56, 60, 60, 67, 81, 101, 116, (2,86,14): 124, 130, 136, 138, 138, 144, 160, 179, 196, 205, 216, (2,86,25): 219, 222, 221, 216, 214, 212, 209, 203, 202, 205, 207, (2,86,36): 211, 212, 214, 211, 210, 200, 188, 176, 163, 146, 127, (2,86,47): 109, 91, 81, 78, 79, 77, 73, 71, 69, 70, 84, 91, 90, 97, (2,86,61): 100, 101, 108, 115, 106, 111, 80, 80, 56, 39, 41, 39, 38, (2,86,74): 39, 40, 42, 42, 42, 42, 39, 41, 44, 44, 42, 40, 40, 41, (2,86,88): 42, 52, 61, 58, 47, 38, 39, 44, 41, 41, 43, 41, 43, 41, (2,86,102): 43, 41, 43, 46, 52, 51, 54, 53, 49, 41, 46, 52, 57, 62, (2,86,116): 62, 62, 64, 63, 60, 60, 57, 55, 53, 50, 50, 49, 57, 58, (2,86,130): 59, 57, 55, 53, 54, 54, 54, 55, 54, 55, 55, 55, 55, 54, (2,86,144): 58, 58, 58, 55, 52, 48, 45, 42, 42, 42, 42, 40, 40, 38, (2,86,158): 40, 38, 34, 34, 36, 37, 40, 42, 45, 49, 54, 91, 111, 97, (2,86,172): 95, 96, 102, 98, 95, 99, 96, 72, 51, 52, 61, 55, 54, 49, (2,86,186): 43, 34, 30, 46, 80, 113, 138, 142, 146, 141, 125, 101, (2,86,198): 81, 69, 64, 64, 68, 74, 80, 83, 85, 83, 78, 74, 71, 69, (2,86,212): 74, 75, 78, 78, 75, 73, 73, 72, 74, 73, 72, 69, 76, 78, (2,86,226): 81, (2,87,0): 33, 37, 43, 46, 49, 52, 53, 54, 61, 60, 66, 81, 100, 112, (2,87,14): 121, 126, 137, 140, 145, 154, 173, 192, 209, 220, 225, (2,87,25): 228, 227, 225, 219, 213, 210, 206, 204, 201, 204, 206, (2,87,36): 211, 214, 215, 212, 208, 196, 183, 171, 155, 136, 117, (2,87,47): 99, 85, 76, 75, 77, 77, 73, 70, 70, 63, 77, 83, 82, 90, (2,87,61): 92, 96, 101, 109, 102, 104, 59, 55, 37, 38, 50, 37, 38, (2,87,74): 39, 41, 43, 44, 44, 44, 35, 37, 41, 44, 45, 42, 39, 36, (2,87,88): 35, 50, 65, 64, 52, 41, 41, 47, 43, 42, 40, 39, 39, 40, (2,87,102): 42, 43, 46, 47, 45, 42, 44, 49, 50, 49, 56, 61, 65, 66, (2,87,116): 65, 60, 59, 58, 59, 57, 56, 56, 55, 54, 54, 55, 54, 58, (2,87,130): 59, 57, 53, 52, 54, 58, 54, 55, 54, 55, 55, 55, 55, 54, (2,87,144): 58, 58, 58, 57, 53, 50, 47, 43, 43, 42, 43, 42, 42, 40, (2,87,158): 42, 40, 34, 34, 36, 37, 40, 43, 46, 49, 62, 102, 103, (2,87,171): 100, 91, 103, 92, 104, 91, 111, 85, 45, 51, 63, 58, 57, (2,87,184): 54, 49, 41, 38, 42, 63, 97, 127, 140, 139, 139, 132, (2,87,196): 122, 101, 80, 64, 63, 62, 67, 74, 79, 82, 84, 82, 78, (2,87,209): 73, 70, 68, 73, 75, 78, 78, 75, 74, 71, 70, 72, 71, 71, (2,87,223): 68, 76, 79, 82, (2,88,0): 33, 34, 38, 40, 45, 49, 51, 52, 53, 56, 64, 75, 89, 101, (2,88,14): 115, 125, 130, 139, 150, 163, 182, 200, 216, 226, 238, (2,88,25): 240, 236, 228, 220, 214, 211, 206, 198, 197, 201, 206, (2,88,36): 208, 211, 210, 207, 197, 188, 175, 160, 143, 122, 103, (2,88,47): 88, 81, 77, 76, 75, 73, 72, 71, 70, 59, 65, 79, 89, 88, (2,88,61): 84, 91, 96, 101, 80, 60, 48, 47, 49, 47, 43, 40, 38, 40, (2,88,75): 41, 41, 42, 44, 44, 37, 41, 44, 47, 47, 45, 42, 39, 41, (2,88,89): 34, 74, 63, 35, 49, 47, 40, 43, 41, 40, 39, 38, 38, 38, (2,88,103): 38, 41, 46, 50, 48, 44, 45, 52, 60, 69, 63, 60, 63, 64, (2,88,117): 59, 58, 61, 62, 59, 56, 56, 57, 57, 56, 55, 61, 60, 58, (2,88,131): 55, 53, 52, 53, 53, 55, 56, 57, 58, 59, 60, 60, 60, 59, (2,88,145): 58, 58, 58, 57, 53, 48, 44, 43, 41, 43, 41, 41, 40, 42, (2,88,159): 41, 35, 39, 35, 30, 37, 51, 54, 44, 101, 103, 98, 92, (2,88,172): 88, 89, 99, 105, 111, 81, 51, 44, 54, 60, 56, 49, 51, (2,88,185): 46, 38, 40, 61, 95, 119, 130, 140, 130, 128, 126, 110, (2,88,197): 82, 66, 63, 62, 65, 68, 73, 76, 78, 79, 78, 73, 68, 66, (2,88,211): 66, 73, 75, 76, 74, 77, 78, 75, 72, 69, 69, 73, 74, 81, (2,88,225): 82, 83, (2,89,0): 34, 35, 39, 40, 44, 48, 49, 50, 52, 55, 61, 71, 84, 97, (2,89,14): 107, 117, 127, 137, 148, 164, 186, 206, 223, 233, 239, (2,89,25): 240, 235, 226, 216, 210, 207, 204, 199, 199, 201, 204, (2,89,36): 207, 206, 204, 200, 188, 177, 161, 147, 130, 112, 96, 83, (2,89,48): 79, 75, 75, 75, 73, 72, 71, 69, 71, 67, 70, 76, 80, 83, (2,89,62): 88, 95, 83, 69, 57, 48, 47, 48, 44, 40, 38, 38, 40, 41, (2,89,76): 41, 42, 44, 44, 39, 41, 43, 45, 47, 45, 42, 40, 41, 46, (2,89,90): 69, 60, 40, 45, 44, 38, 44, 43, 42, 42, 41, 41, 41, 40, (2,89,104): 42, 44, 44, 41, 39, 40, 46, 53, 71, 62, 57, 58, 61, 59, (2,89,118): 60, 63, 58, 54, 50, 56, 66, 70, 67, 62, 55, 56, 55, 54, (2,89,132): 53, 53, 56, 56, 55, 56, 57, 58, 59, 60, 60, 59, 58, 57, (2,89,146): 56, 56, 56, 53, 47, 43, 42, 42, 42, 42, 42, 41, 43, 41, (2,89,160): 36, 41, 37, 31, 39, 47, 50, 61, 103, 100, 91, 87, 91, (2,89,173): 96, 100, 101, 76, 62, 50, 47, 48, 50, 58, 61, 46, 47, (2,89,186): 53, 69, 91, 112, 125, 129, 125, 128, 131, 120, 94, 69, (2,89,198): 61, 66, 64, 64, 67, 72, 75, 76, 77, 77, 71, 67, 66, 68, (2,89,212): 74, 76, 78, 77, 79, 77, 75, 71, 70, 69, 73, 76, 81, 82, (2,89,226): 83, (2,90,0): 34, 35, 38, 41, 45, 47, 47, 45, 48, 49, 55, 65, 76, 87, (2,90,14): 97, 105, 116, 127, 140, 160, 183, 206, 223, 234, 239, (2,90,25): 237, 231, 223, 211, 203, 200, 195, 196, 196, 198, 199, (2,90,36): 201, 197, 191, 183, 175, 161, 145, 129, 114, 99, 88, 81, (2,90,48): 76, 75, 74, 74, 73, 72, 71, 69, 73, 63, 61, 68, 79, 83, (2,90,62): 84, 83, 60, 55, 52, 49, 47, 46, 43, 40, 38, 36, 38, 39, (2,90,76): 41, 42, 44, 44, 40, 40, 41, 43, 45, 45, 43, 40, 39, 61, (2,90,90): 58, 53, 47, 40, 43, 38, 41, 41, 41, 42, 41, 41, 40, 39, (2,90,104): 45, 44, 42, 42, 43, 47, 51, 56, 61, 57, 55, 56, 60, 60, (2,90,118): 64, 67, 59, 65, 75, 85, 85, 76, 62, 52, 50, 50, 50, 50, (2,90,132): 53, 54, 56, 56, 55, 56, 58, 59, 60, 60, 60, 59, 56, 55, (2,90,146): 55, 55, 55, 52, 47, 44, 43, 43, 43, 43, 43, 41, 43, 41, (2,90,160): 38, 42, 36, 36, 43, 39, 48, 84, 105, 96, 85, 86, 93, (2,90,173): 102, 100, 97, 57, 54, 50, 48, 44, 41, 43, 47, 35, 44, (2,90,186): 66, 95, 116, 123, 122, 123, 120, 133, 133, 109, 75, 53, (2,90,198): 56, 66, 63, 64, 68, 71, 73, 74, 76, 75, 68, 67, 68, 70, (2,90,212): 75, 78, 79, 78, 79, 79, 77, 74, 72, 72, 75, 77, 86, 87, (2,90,226): 88, (2,91,0): 38, 38, 41, 43, 45, 46, 46, 43, 45, 45, 51, 57, 68, 78, (2,91,14): 87, 93, 100, 111, 126, 148, 172, 195, 214, 227, 234, 235, (2,91,26): 226, 217, 204, 195, 191, 189, 189, 190, 193, 193, 189, (2,91,37): 183, 174, 166, 157, 143, 127, 112, 99, 90, 83, 78, 75, (2,91,49): 74, 74, 74, 75, 74, 73, 70, 65, 59, 61, 70, 80, 80, 73, (2,91,63): 65, 47, 47, 49, 48, 46, 43, 41, 41, 36, 36, 38, 39, 41, (2,91,77): 42, 44, 45, 41, 39, 38, 40, 43, 45, 43, 41, 39, 73, 49, (2,91,91): 44, 52, 37, 43, 43, 40, 39, 40, 41, 41, 41, 40, 39, 42, (2,91,105): 41, 41, 44, 51, 55, 57, 58, 53, 57, 59, 59, 58, 57, 61, (2,91,119): 64, 86, 98, 106, 100, 81, 60, 51, 47, 49, 49, 49, 50, (2,91,132): 53, 54, 55, 56, 56, 57, 59, 60, 60, 60, 60, 60, 58, 56, (2,91,146): 55, 55, 55, 52, 47, 44, 42, 42, 41, 41, 43, 41, 42, 40, (2,91,160): 39, 44, 38, 39, 45, 34, 52, 103, 100, 92, 85, 88, 95, (2,91,173): 100, 95, 90, 65, 57, 50, 49, 48, 42, 35, 30, 29, 42, 72, (2,91,187): 102, 116, 116, 115, 120, 133, 138, 125, 91, 58, 48, 55, (2,91,199): 63, 64, 64, 67, 70, 72, 71, 72, 74, 66, 66, 69, 72, 77, (2,91,213): 79, 81, 82, 80, 78, 76, 74, 71, 71, 75, 79, 88, 90, 90, (2,92,0): 40, 42, 44, 46, 48, 48, 47, 43, 45, 45, 46, 52, 62, 70, (2,92,14): 78, 82, 83, 93, 108, 129, 155, 178, 199, 211, 225, 226, (2,92,26): 220, 211, 196, 186, 181, 179, 181, 182, 183, 181, 176, (2,92,37): 166, 155, 146, 135, 124, 108, 95, 88, 83, 79, 76, 76, 76, (2,92,50): 76, 75, 76, 75, 75, 71, 65, 61, 65, 70, 72, 64, 56, 51, (2,92,64): 45, 47, 47, 46, 44, 41, 40, 40, 36, 36, 38, 39, 41, 42, (2,92,78): 44, 45, 43, 41, 37, 39, 43, 46, 46, 44, 48, 84, 53, 43, (2,92,92): 53, 36, 40, 43, 41, 42, 43, 44, 45, 45, 45, 45, 42, 41, (2,92,106): 43, 49, 55, 58, 55, 52, 53, 60, 63, 57, 53, 58, 70, 79, (2,92,120): 119, 110, 91, 67, 51, 46, 51, 58, 51, 49, 50, 50, 50, (2,92,133): 51, 54, 54, 56, 57, 59, 60, 62, 62, 61, 59, 59, 57, 58, (2,92,147): 58, 58, 55, 50, 47, 42, 42, 42, 41, 42, 40, 41, 41, 40, (2,92,161): 42, 39, 42, 45, 41, 67, 114, 94, 91, 89, 91, 94, 93, 87, (2,92,175): 85, 63, 57, 52, 49, 45, 39, 35, 35, 46, 60, 84, 102, (2,92,188): 109, 110, 114, 125, 136, 128, 100, 67, 48, 49, 57, 61, (2,92,200): 66, 66, 67, 69, 70, 70, 72, 71, 66, 67, 72, 74, 78, 80, (2,92,214): 82, 83, 78, 79, 77, 75, 73, 73, 75, 79, 89, 88, 88, (2,93,0): 46, 46, 49, 51, 53, 52, 50, 47, 47, 45, 46, 51, 58, 65, (2,93,14): 73, 72, 74, 78, 92, 114, 137, 161, 183, 196, 209, 211, (2,93,26): 207, 199, 186, 175, 166, 165, 169, 171, 170, 166, 161, (2,93,37): 149, 137, 129, 115, 104, 94, 86, 82, 80, 78, 78, 77, 77, (2,93,50): 77, 77, 77, 77, 77, 73, 79, 71, 64, 61, 55, 46, 43, 43, (2,93,64): 49, 47, 46, 45, 41, 39, 38, 40, 36, 36, 38, 39, 41, 42, (2,93,78): 44, 45, 44, 40, 35, 35, 41, 46, 47, 45, 55, 84, 65, 48, (2,93,92): 51, 38, 32, 41, 39, 39, 39, 40, 41, 42, 44, 45, 51, 50, (2,93,106): 51, 55, 58, 57, 53, 49, 54, 57, 58, 58, 64, 80, 99, 112, (2,93,120): 101, 80, 54, 43, 48, 55, 58, 55, 53, 50, 52, 51, 51, 51, (2,93,134): 53, 54, 57, 57, 59, 60, 62, 61, 61, 58, 60, 57, 58, 58, (2,93,148): 58, 55, 50, 47, 41, 41, 41, 40, 40, 39, 38, 40, 41, 40, (2,93,162): 41, 42, 42, 56, 88, 112, 92, 93, 92, 91, 90, 86, 82, 82, (2,93,176): 55, 57, 53, 43, 27, 23, 37, 54, 84, 92, 101, 100, 102, (2,93,189): 107, 116, 124, 109, 92, 67, 48, 44, 49, 59, 61, 68, 66, (2,93,202): 68, 70, 70, 70, 70, 71, 67, 70, 75, 77, 79, 79, 81, 82, (2,93,216): 81, 79, 80, 76, 74, 74, 78, 81, 94, 93, 92, (2,94,0): 48, 51, 54, 57, 59, 59, 54, 51, 48, 45, 45, 50, 57, 63, (2,94,14): 69, 68, 67, 68, 79, 97, 120, 144, 166, 181, 191, 195, (2,94,26): 193, 186, 174, 161, 151, 148, 154, 158, 154, 150, 142, (2,94,37): 131, 120, 110, 97, 89, 83, 80, 79, 80, 78, 78, 78, 78, (2,94,50): 78, 79, 79, 79, 78, 77, 83, 69, 56, 50, 45, 40, 41, 44, (2,94,64): 48, 47, 45, 44, 42, 40, 37, 37, 34, 34, 36, 39, 41, 42, (2,94,78): 44, 45, 45, 40, 33, 33, 40, 46, 47, 45, 51, 73, 77, 57, (2,94,92): 53, 46, 29, 40, 44, 43, 42, 41, 43, 46, 49, 51, 61, 60, (2,94,106): 59, 59, 59, 58, 56, 53, 53, 53, 52, 58, 74, 91, 99, 95, (2,94,120): 57, 50, 46, 49, 61, 64, 59, 50, 53, 51, 52, 52, 52, 52, (2,94,134): 55, 55, 57, 58, 59, 60, 62, 61, 61, 58, 58, 57, 57, 57, (2,94,148): 57, 54, 49, 46, 41, 41, 40, 39, 40, 39, 39, 38, 43, 37, (2,94,162): 43, 41, 39, 75, 109, 102, 94, 92, 87, 83, 83, 82, 81, (2,94,175): 85, 56, 55, 47, 36, 27, 35, 61, 86, 111, 113, 104, 89, (2,94,188): 89, 99, 100, 95, 67, 56, 45, 42, 44, 48, 55, 62, 70, 67, (2,94,202): 69, 70, 71, 70, 71, 71, 70, 73, 78, 79, 79, 78, 79, 81, (2,94,216): 84, 83, 83, 80, 78, 78, 82, 85, 96, 95, 93, (2,95,0): 51, 54, 57, 58, 59, 59, 57, 53, 51, 50, 50, 52, 59, 62, (2,95,14): 68, 65, 62, 62, 72, 84, 104, 126, 147, 160, 167, 171, (2,95,26): 173, 166, 157, 143, 133, 130, 133, 134, 134, 128, 120, (2,95,37): 110, 101, 94, 84, 80, 77, 76, 77, 79, 79, 78, 79, 79, 78, (2,95,51): 79, 78, 78, 76, 76, 72, 60, 47, 45, 47, 45, 45, 45, 47, (2,95,65): 45, 44, 44, 44, 41, 39, 36, 36, 36, 38, 39, 41, 42, 44, (2,95,79): 45, 47, 39, 33, 32, 39, 46, 47, 46, 42, 59, 84, 64, 55, (2,95,93): 55, 31, 44, 55, 53, 51, 50, 51, 55, 60, 63, 59, 57, 55, (2,95,107): 52, 52, 53, 55, 57, 57, 54, 53, 58, 72, 76, 57, 35, 38, (2,95,121): 45, 55, 59, 57, 56, 59, 61, 54, 54, 54, 54, 53, 54, 57, (2,95,135): 58, 56, 56, 59, 59, 60, 59, 58, 58, 58, 56, 56, 56, 56, (2,95,149): 53, 49, 45, 40, 42, 41, 40, 39, 38, 40, 39, 45, 34, 46, (2,95,163): 42, 38, 88, 124, 95, 100, 91, 82, 79, 80, 85, 85, 86, (2,95,176): 56, 42, 28, 27, 43, 68, 102, 126, 118, 115, 97, 77, 81, (2,95,189): 94, 86, 64, 41, 37, 40, 50, 50, 43, 50, 62, 72, 70, 71, (2,95,203): 71, 71, 71, 71, 71, 74, 77, 80, 80, 77, 75, 74, 76, 84, (2,95,217): 85, 83, 81, 79, 82, 85, 90, 91, 91, 90, (2,96,0): 59, 59, 61, 61, 61, 61, 61, 59, 60, 61, 62, 63, 64, 68, (2,96,14): 69, 69, 72, 72, 76, 82, 91, 105, 116, 123, 132, 136, 139, (2,96,27): 137, 132, 123, 114, 106, 105, 101, 98, 94, 89, 85, 82, (2,96,39): 79, 79, 75, 75, 73, 71, 72, 70, 72, 79, 84, 74, 66, 74, (2,96,53): 80, 76, 76, 61, 52, 44, 40, 45, 48, 49, 45, 47, 46, 46, (2,96,67): 46, 46, 43, 41, 41, 41, 41, 41, 41, 43, 43, 43, 44, 43, (2,96,81): 45, 40, 32, 33, 42, 47, 46, 43, 45, 48, 56, 62, 57, 44, (2,96,95): 35, 70, 64, 60, 59, 63, 64, 62, 58, 52, 55, 58, 58, 55, (2,96,109): 52, 51, 55, 62, 57, 47, 40, 38, 41, 47, 51, 48, 51, 55, (2,96,123): 58, 59, 57, 57, 58, 58, 58, 58, 57, 55, 55, 53, 53, 48, (2,96,137): 49, 53, 54, 57, 58, 58, 59, 62, 59, 57, 58, 61, 59, 54, (2,96,151): 49, 41, 43, 42, 40, 38, 37, 38, 38, 48, 45, 35, 38, 74, (2,96,165): 111, 111, 90, 78, 79, 77, 79, 79, 82, 84, 83, 47, 22, (2,96,178): 15, 41, 80, 111, 121, 120, 115, 97, 76, 67, 66, 66, 57, (2,96,191): 48, 44, 50, 49, 48, 51, 48, 50, 62, 66, 72, 75, 75, 71, (2,96,205): 73, 75, 74, 80, 83, 83, 80, 77, 74, 74, 73, 76, 77, 78, (2,96,219): 80, 82, 85, 89, 94, 101, 92, 82, (2,97,0): 63, 63, 63, 63, 63, 63, 63, 63, 64, 65, 65, 67, 68, 69, (2,97,14): 70, 71, 74, 73, 77, 79, 85, 93, 100, 104, 108, 112, 114, (2,97,27): 114, 109, 103, 95, 89, 86, 82, 79, 75, 73, 72, 72, 71, (2,97,40): 75, 73, 73, 72, 71, 70, 71, 73, 77, 84, 77, 70, 77, 79, (2,97,54): 74, 69, 57, 48, 44, 41, 44, 48, 50, 48, 46, 46, 46, 46, (2,97,68): 45, 45, 44, 43, 43, 43, 43, 43, 43, 43, 43, 44, 46, 46, (2,97,82): 40, 32, 32, 41, 46, 46, 45, 42, 41, 48, 58, 66, 67, 67, (2,97,96): 63, 59, 53, 52, 55, 56, 54, 51, 55, 56, 57, 56, 55, 55, (2,97,110): 57, 58, 55, 52, 44, 39, 38, 41, 45, 49, 52, 54, 55, 56, (2,97,124): 55, 55, 54, 58, 58, 60, 58, 57, 55, 53, 53, 53, 50, 51, (2,97,138): 53, 54, 56, 56, 57, 57, 59, 59, 61, 61, 59, 54, 50, 45, (2,97,152): 43, 42, 43, 41, 40, 38, 37, 37, 39, 41, 42, 53, 80, 101, (2,97,166): 97, 77, 76, 77, 80, 81, 83, 83, 86, 81, 47, 42, 51, 79, (2,97,180): 110, 124, 112, 98, 72, 66, 59, 55, 55, 53, 49, 45, 47, (2,97,193): 52, 52, 50, 51, 48, 51, 62, 69, 72, 77, 76, 72, 72, 76, (2,97,207): 75, 81, 84, 83, 81, 76, 72, 72, 72, 74, 74, 76, 81, 84, (2,97,221): 88, 88, 94, 89, 83, 73, (2,98,0): 69, 69, 69, 69, 69, 69, 69, 69, 67, 68, 69, 70, 71, 72, (2,98,14): 73, 71, 74, 72, 74, 76, 81, 85, 89, 91, 93, 94, 95, 95, (2,98,28): 92, 89, 83, 81, 77, 75, 72, 67, 66, 67, 67, 66, 71, 69, (2,98,42): 70, 70, 72, 72, 74, 76, 77, 85, 80, 78, 85, 81, 69, 64, (2,98,56): 55, 49, 47, 43, 43, 44, 47, 47, 46, 45, 45, 46, 45, 44, (2,98,70): 44, 43, 43, 43, 43, 43, 43, 43, 43, 44, 48, 46, 40, 32, (2,98,84): 31, 38, 44, 46, 48, 43, 40, 42, 48, 57, 63, 68, 54, 51, (2,98,98): 48, 50, 55, 60, 60, 60, 60, 58, 55, 54, 56, 57, 58, 58, (2,98,112): 45, 43, 39, 37, 37, 40, 43, 46, 53, 54, 56, 55, 52, 52, (2,98,126): 53, 57, 57, 57, 57, 55, 55, 53, 53, 51, 51, 52, 54, 54, (2,98,140): 56, 57, 57, 56, 58, 60, 62, 61, 57, 49, 43, 40, 44, 43, (2,98,154): 43, 41, 40, 38, 37, 38, 35, 37, 44, 61, 79, 84, 79, 70, (2,98,168): 72, 76, 80, 83, 87, 87, 86, 80, 70, 86, 110, 128, 135, (2,98,181): 123, 91, 60, 36, 43, 47, 50, 48, 46, 48, 47, 46, 51, 52, (2,98,195): 49, 51, 47, 51, 61, 71, 74, 79, 78, 74, 74, 78, 78, 84, (2,98,209): 85, 83, 80, 75, 73, 72, 73, 76, 76, 78, 83, 88, 91, 87, (2,98,223): 88, 74, 69, 62, (2,99,0): 73, 73, 73, 73, 73, 73, 73, 73, 71, 72, 72, 73, 74, 75, (2,99,14): 76, 74, 72, 71, 73, 76, 79, 80, 82, 83, 87, 87, 87, 85, (2,99,28): 84, 81, 80, 78, 77, 74, 70, 66, 64, 62, 64, 63, 65, 65, (2,99,42): 67, 68, 71, 74, 76, 77, 81, 85, 79, 81, 92, 88, 68, 58, (2,99,56): 56, 54, 48, 45, 41, 42, 46, 47, 45, 44, 45, 45, 45, 44, (2,99,70): 44, 43, 43, 43, 43, 43, 43, 43, 43, 44, 49, 46, 39, 32, (2,99,84): 29, 34, 41, 46, 45, 43, 42, 42, 43, 46, 47, 50, 53, 52, (2,99,98): 50, 52, 56, 60, 63, 62, 60, 56, 54, 53, 56, 55, 53, 49, (2,99,112): 40, 39, 38, 38, 38, 40, 41, 42, 49, 52, 55, 56, 53, 53, (2,99,126): 54, 55, 56, 56, 56, 54, 54, 52, 52, 52, 50, 50, 52, 55, (2,99,140): 56, 56, 55, 57, 58, 60, 61, 59, 50, 43, 39, 40, 42, 41, (2,99,154): 41, 40, 38, 36, 35, 37, 42, 35, 39, 58, 72, 71, 71, 76, (2,99,168): 74, 76, 79, 82, 86, 86, 87, 84, 95, 120, 142, 136, 116, (2,99,181): 89, 56, 27, 28, 37, 46, 51, 51, 50, 52, 53, 45, 50, 51, (2,99,195): 49, 50, 47, 50, 60, 72, 75, 80, 79, 76, 76, 80, 79, 84, (2,99,209): 85, 82, 80, 74, 72, 74, 75, 77, 78, 83, 88, 93, 91, 83, (2,99,223): 77, 69, 65, 60, (2,100,0): 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 76, 76, 77, 78, (2,100,14): 78, 76, 71, 72, 73, 76, 78, 79, 80, 79, 84, 81, 81, 78, (2,100,28): 78, 77, 77, 78, 78, 76, 71, 66, 62, 58, 58, 58, 60, 62, (2,100,42): 64, 64, 67, 70, 72, 75, 81, 81, 74, 82, 99, 96, 77, 67, (2,100,56): 61, 57, 52, 48, 43, 41, 43, 43, 43, 41, 42, 43, 43, 42, (2,100,70): 42, 41, 41, 41, 41, 41, 41, 41, 41, 44, 49, 48, 40, 34, (2,100,84): 30, 32, 38, 45, 42, 44, 44, 45, 46, 48, 48, 52, 60, 60, (2,100,98): 57, 56, 56, 56, 56, 53, 60, 57, 58, 58, 60, 54, 49, 40, (2,100,112): 40, 40, 40, 40, 40, 40, 38, 38, 43, 47, 51, 55, 56, 56, (2,100,126): 54, 55, 54, 54, 54, 52, 52, 51, 51, 51, 50, 50, 53, 55, (2,100,140): 58, 60, 59, 61, 60, 60, 58, 53, 45, 40, 40, 42, 41, 41, (2,100,154): 42, 40, 38, 37, 36, 37, 45, 34, 37, 58, 73, 70, 71, 78, (2,100,168): 76, 76, 78, 78, 82, 85, 87, 87, 102, 122, 129, 106, 72, (2,100,181): 52, 38, 25, 38, 42, 46, 51, 52, 52, 51, 48, 45, 49, 50, (2,100,195): 48, 49, 46, 49, 60, 73, 76, 81, 80, 77, 78, 82, 81, 83, (2,100,209): 83, 81, 77, 75, 73, 76, 79, 81, 83, 89, 94, 95, 86, 74, (2,100,223): 67, 73, 69, 65, (2,101,0): 77, 77, 77, 77, 77, 77, 77, 77, 77, 78, 78, 78, 79, 79, (2,101,14): 80, 78, 74, 73, 76, 77, 79, 79, 80, 80, 80, 78, 77, 75, (2,101,28): 75, 73, 74, 75, 77, 74, 72, 66, 61, 57, 55, 54, 56, 57, (2,101,42): 59, 61, 63, 65, 69, 69, 76, 73, 69, 78, 97, 97, 85, 82, (2,101,56): 67, 62, 55, 48, 46, 43, 42, 40, 42, 40, 41, 42, 42, 42, (2,101,70): 42, 41, 41, 41, 41, 41, 41, 41, 41, 44, 49, 47, 41, 36, (2,101,84): 31, 29, 34, 42, 46, 47, 44, 42, 40, 43, 48, 56, 58, 60, (2,101,98): 61, 62, 62, 62, 61, 60, 56, 58, 62, 62, 62, 54, 47, 39, (2,101,112): 43, 42, 42, 42, 41, 40, 39, 37, 37, 41, 48, 51, 53, 55, (2,101,126): 56, 55, 55, 53, 53, 53, 52, 52, 52, 52, 53, 55, 58, 59, (2,101,140): 62, 63, 61, 63, 58, 56, 51, 45, 40, 39, 40, 42, 40, 41, (2,101,154): 40, 38, 39, 37, 36, 37, 41, 33, 42, 65, 78, 71, 69, 74, (2,101,168): 78, 77, 77, 77, 81, 84, 87, 87, 88, 94, 90, 66, 44, 37, (2,101,182): 42, 46, 50, 49, 50, 54, 57, 54, 48, 43, 43, 49, 49, 47, (2,101,196): 48, 45, 48, 59, 73, 76, 81, 81, 78, 78, 83, 82, 81, 80, (2,101,210): 79, 75, 74, 76, 79, 82, 88, 90, 93, 93, 87, 79, 69, 66, (2,101,224): 77, 71, 66, (2,102,0): 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 79, 80, 80, 80, (2,102,14): 80, 79, 80, 79, 79, 79, 79, 79, 78, 78, 78, 75, 75, 73, (2,102,28): 73, 71, 71, 71, 76, 75, 73, 68, 63, 58, 56, 54, 54, 54, (2,102,42): 57, 58, 59, 60, 63, 63, 67, 70, 67, 68, 77, 76, 76, 89, (2,102,56): 74, 66, 57, 50, 49, 45, 42, 36, 41, 40, 41, 42, 42, 42, (2,102,70): 42, 42, 41, 41, 41, 41, 41, 41, 41, 44, 48, 47, 44, 41, (2,102,84): 32, 27, 32, 41, 45, 47, 47, 43, 37, 39, 46, 56, 57, 62, (2,102,98): 65, 67, 69, 67, 65, 63, 50, 54, 60, 59, 57, 49, 46, 41, (2,102,112): 45, 43, 43, 44, 43, 40, 39, 39, 37, 39, 43, 46, 48, 52, (2,102,126): 57, 59, 55, 53, 53, 52, 52, 52, 52, 52, 55, 57, 60, 59, (2,102,140): 61, 60, 59, 57, 51, 47, 43, 40, 39, 41, 41, 40, 41, 42, (2,102,154): 41, 39, 40, 38, 37, 36, 35, 37, 50, 69, 75, 67, 68, 76, (2,102,168): 77, 78, 81, 81, 84, 85, 86, 85, 69, 61, 52, 44, 42, 44, (2,102,182): 51, 54, 54, 56, 59, 61, 60, 54, 47, 42, 42, 48, 49, 47, (2,102,196): 48, 44, 48, 58, 72, 76, 81, 81, 78, 79, 83, 80, 79, 78, (2,102,210): 77, 76, 75, 78, 84, 88, 96, 97, 93, 85, 76, 71, 69, 73, (2,102,224): 79, 73, 66, (2,103,0): 80, 80, 80, 80, 80, 80, 80, 80, 79, 80, 80, 80, 80, 80, (2,103,14): 81, 81, 85, 84, 82, 81, 80, 79, 77, 77, 78, 76, 76, 76, (2,103,28): 73, 73, 71, 73, 75, 76, 75, 72, 68, 63, 60, 58, 52, 52, (2,103,42): 55, 55, 57, 58, 58, 58, 62, 68, 65, 60, 58, 53, 62, 83, (2,103,56): 79, 69, 58, 53, 51, 47, 41, 34, 41, 39, 40, 42, 42, 42, (2,103,70): 42, 42, 41, 41, 41, 41, 41, 41, 41, 44, 48, 46, 44, 43, (2,103,84): 35, 26, 30, 39, 35, 41, 48, 49, 46, 47, 53, 61, 66, 68, (2,103,98): 69, 67, 63, 55, 48, 46, 44, 49, 54, 54, 50, 46, 44, 43, (2,103,112): 45, 43, 44, 45, 45, 43, 42, 42, 42, 40, 40, 41, 43, 48, (2,103,126): 57, 62, 55, 53, 53, 52, 53, 52, 53, 53, 57, 58, 59, 57, (2,103,140): 58, 54, 53, 51, 45, 40, 39, 39, 41, 42, 41, 38, 42, 43, (2,103,154): 42, 41, 39, 37, 38, 38, 35, 42, 56, 67, 66, 61, 69, 83, (2,103,168): 76, 78, 82, 84, 86, 86, 84, 81, 59, 40, 30, 38, 50, 52, (2,103,182): 50, 46, 49, 54, 60, 63, 59, 49, 42, 38, 40, 48, 48, 46, (2,103,196): 48, 44, 47, 58, 72, 75, 81, 80, 78, 79, 83, 80, 77, 76, (2,103,210): 76, 75, 76, 79, 86, 92, 101, 100, 92, 80, 69, 65, 72, (2,103,223): 80, 81, 74, 67, (2,104,0): 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, (2,104,14): 81, 83, 87, 87, 87, 87, 86, 86, 84, 82, 82, 80, 80, 79, (2,104,28): 79, 79, 77, 77, 74, 74, 73, 73, 73, 67, 61, 58, 55, 55, (2,104,42): 54, 53, 55, 56, 56, 55, 61, 61, 52, 54, 59, 47, 57, 93, (2,104,56): 96, 83, 69, 64, 61, 53, 48, 45, 37, 38, 39, 40, 40, 41, (2,104,70): 44, 46, 45, 45, 45, 45, 44, 44, 44, 45, 40, 46, 47, 41, (2,104,84): 34, 31, 30, 34, 45, 43, 41, 42, 47, 55, 63, 69, 69, 72, (2,104,98): 67, 54, 49, 48, 46, 43, 47, 46, 46, 45, 44, 43, 43, 43, (2,104,112): 43, 42, 43, 44, 45, 44, 45, 45, 42, 40, 40, 41, 43, 45, (2,104,126): 51, 52, 54, 54, 56, 55, 57, 54, 54, 53, 61, 59, 56, 50, (2,104,140): 47, 45, 42, 43, 45, 42, 43, 42, 41, 41, 43, 43, 39, 40, (2,104,154): 40, 40, 40, 39, 38, 36, 32, 52, 67, 65, 64, 69, 74, 71, (2,104,168): 82, 82, 77, 76, 85, 83, 84, 90, 53, 42, 40, 44, 47, 43, (2,104,182): 45, 49, 49, 67, 80, 74, 58, 46, 39, 37, 41, 49, 50, 50, (2,104,196): 49, 42, 46, 60, 74, 77, 81, 79, 76, 77, 83, 81, 76, 75, (2,104,210): 78, 78, 80, 85, 92, 98, 102, 94, 79, 71, 69, 74, 80, (2,104,223): 84, 83, 76, 69, (2,105,0): 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, (2,105,14): 81, 83, 89, 91, 91, 89, 89, 87, 86, 84, 84, 82, 82, 82, (2,105,28): 82, 82, 80, 80, 77, 75, 74, 74, 74, 69, 63, 58, 58, 55, (2,105,42): 54, 53, 55, 55, 55, 54, 56, 53, 49, 53, 48, 39, 58, 98, (2,105,56): 88, 90, 84, 71, 62, 61, 57, 48, 43, 44, 46, 45, 45, 43, (2,105,70): 43, 42, 44, 43, 44, 43, 44, 43, 44, 46, 53, 58, 55, 47, (2,105,84): 35, 29, 29, 29, 35, 40, 47, 56, 63, 68, 70, 72, 65, 68, (2,105,98): 62, 51, 47, 48, 49, 48, 49, 50, 48, 47, 47, 46, 46, 44, (2,105,112): 42, 42, 43, 44, 43, 43, 44, 44, 46, 45, 44, 44, 43, 45, (2,105,126): 48, 47, 50, 50, 53, 55, 57, 57, 57, 56, 54, 52, 51, 48, (2,105,140): 47, 46, 44, 44, 46, 44, 44, 43, 42, 42, 42, 44, 42, 41, (2,105,154): 41, 41, 40, 39, 39, 36, 39, 55, 67, 63, 62, 68, 73, 71, (2,105,168): 74, 79, 79, 80, 88, 82, 79, 84, 53, 57, 66, 66, 54, 41, (2,105,182): 42, 52, 71, 81, 84, 70, 55, 42, 35, 34, 40, 48, 49, 49, (2,105,196): 50, 43, 46, 60, 75, 77, 81, 80, 76, 78, 83, 81, 79, 76, (2,105,210): 76, 77, 81, 87, 95, 99, 97, 85, 74, 68, 74, 78, 78, 79, (2,105,224): 83, 76, 69, (2,106,0): 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, (2,106,14): 81, 85, 91, 94, 94, 93, 89, 87, 86, 84, 84, 84, 84, 84, (2,106,28): 84, 84, 86, 84, 79, 76, 78, 78, 76, 72, 67, 62, 60, 57, (2,106,42): 56, 54, 54, 54, 54, 53, 53, 45, 49, 51, 37, 39, 67, 96, (2,106,56): 74, 90, 98, 83, 72, 72, 68, 54, 43, 42, 44, 42, 44, 41, (2,106,70): 41, 39, 43, 41, 43, 41, 43, 42, 44, 46, 45, 47, 45, 40, (2,106,84): 34, 30, 32, 36, 50, 55, 63, 70, 71, 70, 66, 64, 65, 65, (2,106,98): 58, 49, 47, 49, 52, 51, 51, 52, 50, 48, 48, 47, 46, 46, (2,106,112): 42, 43, 41, 42, 43, 43, 42, 42, 46, 45, 43, 42, 43, 45, (2,106,126): 46, 47, 46, 48, 48, 51, 51, 52, 51, 52, 44, 44, 45, 43, (2,106,140): 43, 44, 46, 47, 47, 44, 45, 44, 43, 43, 43, 44, 43, 42, (2,106,154): 44, 42, 41, 40, 41, 38, 49, 60, 66, 61, 60, 66, 72, 73, (2,106,168): 73, 79, 81, 83, 90, 85, 84, 91, 88, 94, 97, 82, 52, 35, (2,106,182): 46, 64, 89, 87, 77, 62, 48, 40, 35, 36, 39, 46, 47, 49, (2,106,196): 51, 44, 47, 60, 75, 78, 82, 80, 77, 78, 83, 80, 81, 76, (2,106,210): 76, 79, 86, 92, 96, 96, 85, 77, 69, 69, 77, 81, 78, 72, (2,106,224): 82, 76, 69, (2,107,0): 81, 81, 81, 81, 81, 81, 81, 81, 82, 82, 82, 82, 82, 82, (2,107,14): 82, 86, 92, 95, 94, 92, 90, 88, 87, 85, 85, 85, 85, 85, (2,107,28): 87, 87, 88, 87, 82, 80, 79, 79, 78, 75, 71, 69, 62, 60, (2,107,42): 58, 56, 55, 54, 53, 51, 52, 45, 51, 48, 37, 57, 79, 78, (2,107,56): 53, 76, 95, 94, 85, 79, 72, 65, 49, 45, 43, 43, 45, 47, (2,107,70): 48, 48, 52, 52, 52, 52, 53, 53, 53, 55, 59, 62, 62, 61, (2,107,84): 60, 62, 64, 68, 72, 71, 71, 69, 66, 63, 61, 61, 66, 63, (2,107,98): 55, 48, 46, 48, 51, 54, 52, 51, 51, 49, 48, 46, 46, 45, (2,107,112): 44, 44, 43, 44, 44, 45, 43, 43, 43, 41, 41, 42, 44, 47, (2,107,126): 47, 48, 47, 46, 47, 46, 46, 44, 43, 42, 41, 40, 41, 42, (2,107,140): 43, 45, 47, 48, 46, 45, 44, 42, 42, 42, 42, 43, 44, 44, (2,107,154): 44, 42, 42, 40, 41, 41, 56, 61, 63, 58, 60, 68, 75, 76, (2,107,168): 76, 80, 79, 79, 88, 88, 94, 106, 112, 102, 87, 63, 43, (2,107,181): 42, 60, 81, 85, 75, 61, 49, 43, 41, 40, 39, 40, 45, 46, (2,107,195): 49, 51, 45, 47, 59, 73, 77, 82, 81, 78, 79, 83, 80, 79, (2,107,209): 77, 77, 82, 93, 97, 94, 91, 74, 69, 68, 72, 79, 80, 76, (2,107,223): 72, 81, 75, 68, (2,108,0): 81, 81, 81, 81, 81, 81, 81, 81, 82, 82, 82, 82, 82, 82, (2,108,14): 82, 84, 90, 92, 90, 88, 87, 85, 83, 83, 83, 83, 83, 85, (2,108,28): 87, 87, 88, 87, 85, 82, 81, 81, 81, 79, 77, 74, 66, 62, (2,108,42): 60, 56, 54, 53, 51, 49, 49, 47, 49, 43, 45, 76, 83, 52, (2,108,56): 43, 57, 85, 103, 101, 85, 78, 80, 65, 60, 54, 52, 54, (2,108,69): 58, 61, 62, 65, 65, 66, 66, 67, 67, 68, 69, 82, 84, 82, (2,108,83): 79, 76, 76, 76, 78, 72, 70, 66, 64, 64, 64, 66, 68, 70, (2,108,97): 64, 55, 50, 50, 49, 51, 52, 51, 51, 51, 48, 49, 48, 47, (2,108,111): 47, 46, 46, 46, 46, 45, 45, 45, 45, 42, 42, 43, 42, 43, (2,108,125): 45, 46, 47, 47, 45, 45, 44, 44, 43, 42, 42, 41, 41, 40, (2,108,139): 41, 42, 44, 45, 45, 45, 44, 43, 42, 41, 43, 43, 43, 44, (2,108,153): 45, 45, 43, 42, 41, 43, 43, 59, 60, 61, 59, 63, 70, 77, (2,108,167): 79, 77, 81, 80, 81, 89, 87, 91, 100, 81, 64, 48, 40, (2,108,180): 48, 63, 78, 86, 69, 58, 46, 41, 44, 45, 45, 44, 43, 45, (2,108,194): 45, 48, 52, 45, 46, 56, 70, 74, 80, 80, 78, 79, 84, 81, (2,108,208): 77, 76, 80, 89, 97, 96, 88, 81, 65, 69, 73, 77, 77, 75, (2,108,222): 74, 76, 80, 73, 66, (2,109,0): 81, 81, 81, 81, 81, 81, 81, 81, 83, 83, 83, 83, 83, 83, (2,109,14): 83, 85, 89, 89, 89, 86, 86, 82, 82, 81, 81, 81, 82, 84, (2,109,28): 86, 88, 88, 88, 85, 82, 81, 82, 82, 81, 80, 77, 71, 67, (2,109,42): 63, 59, 57, 54, 51, 47, 46, 45, 45, 45, 58, 82, 74, 43, (2,109,56): 57, 59, 82, 110, 118, 104, 94, 95, 81, 70, 64, 58, 61, (2,109,69): 62, 65, 63, 67, 66, 68, 67, 70, 68, 71, 71, 72, 73, 72, (2,109,83): 71, 68, 68, 66, 66, 65, 66, 65, 66, 66, 64, 62, 63, 71, (2,109,97): 63, 54, 51, 51, 48, 48, 51, 50, 49, 49, 49, 48, 49, 49, (2,109,111): 49, 49, 49, 51, 49, 49, 47, 49, 47, 47, 45, 45, 44, 44, (2,109,125): 42, 43, 41, 46, 46, 45, 47, 46, 46, 47, 46, 41, 40, 42, (2,109,139): 43, 44, 43, 44, 43, 44, 43, 41, 40, 41, 41, 41, 41, 42, (2,109,153): 44, 44, 42, 41, 41, 45, 48, 64, 60, 60, 61, 67, 72, 77, (2,109,167): 78, 73, 79, 82, 85, 92, 80, 70, 71, 45, 41, 40, 50, 69, (2,109,181): 81, 75, 64, 55, 45, 38, 42, 49, 52, 48, 45, 44, 45, 45, (2,109,195): 48, 52, 45, 44, 53, 66, 70, 78, 79, 77, 79, 84, 81, 76, (2,109,209): 79, 85, 92, 96, 91, 81, 72, 66, 71, 77, 77, 74, 71, 71, (2,109,223): 76, 78, 72, 65, (2,110,0): 81, 81, 81, 81, 81, 81, 81, 81, 83, 83, 83, 83, 83, 83, (2,110,14): 83, 83, 88, 86, 86, 82, 82, 79, 79, 77, 77, 77, 79, 81, (2,110,28): 82, 84, 86, 86, 85, 83, 83, 84, 85, 84, 81, 79, 75, 71, (2,110,42): 65, 60, 57, 54, 51, 46, 43, 42, 43, 57, 76, 72, 60, 57, (2,110,56): 69, 64, 73, 96, 112, 112, 101, 92, 78, 68, 63, 59, 63, (2,110,69): 62, 62, 57, 63, 61, 64, 63, 65, 64, 67, 67, 68, 68, 70, (2,110,83): 72, 72, 73, 73, 72, 67, 68, 69, 69, 65, 62, 58, 58, 70, (2,110,97): 60, 51, 50, 52, 49, 48, 49, 47, 48, 49, 48, 49, 51, 52, (2,110,111): 52, 51, 51, 52, 51, 51, 49, 51, 48, 48, 46, 46, 45, 44, (2,110,125): 41, 42, 42, 46, 46, 45, 46, 46, 46, 46, 45, 41, 41, 42, (2,110,139): 42, 43, 42, 43, 42, 42, 44, 42, 41, 40, 40, 42, 42, 41, (2,110,153): 44, 45, 43, 41, 42, 47, 51, 66, 63, 61, 64, 70, 73, 74, (2,110,167): 73, 73, 78, 79, 86, 90, 74, 55, 49, 48, 57, 67, 74, 79, (2,110,181): 76, 62, 47, 45, 36, 33, 42, 53, 57, 54, 51, 46, 46, 45, (2,110,195): 49, 53, 45, 42, 50, 61, 66, 75, 77, 77, 79, 85, 82, 80, (2,110,209): 81, 87, 90, 89, 82, 74, 69, 72, 73, 75, 75, 74, 72, 70, (2,110,223): 73, 77, 71, 64, (2,111,0): 81, 81, 81, 81, 81, 81, 81, 81, 83, 83, 83, 83, 83, 83, (2,111,14): 83, 83, 86, 84, 84, 82, 81, 79, 79, 77, 77, 79, 79, 81, (2,111,28): 82, 84, 84, 84, 84, 83, 83, 83, 85, 84, 82, 80, 77, 73, (2,111,42): 67, 62, 56, 53, 49, 46, 42, 40, 44, 71, 88, 65, 51, 78, (2,111,56): 69, 62, 60, 71, 91, 102, 91, 72, 71, 66, 63, 62, 66, 66, (2,111,70): 62, 55, 61, 61, 64, 65, 66, 67, 69, 70, 67, 68, 69, 69, (2,111,84): 71, 70, 67, 63, 68, 67, 65, 62, 62, 63, 64, 67, 66, 56, (2,111,98): 48, 52, 54, 51, 47, 50, 47, 48, 48, 49, 51, 51, 52, 53, (2,111,112): 50, 50, 50, 50, 48, 48, 48, 48, 44, 45, 46, 46, 45, 45, (2,111,126): 44, 44, 47, 47, 46, 44, 42, 42, 42, 40, 42, 42, 43, 45, (2,111,140): 45, 44, 44, 43, 44, 45, 44, 42, 42, 41, 41, 44, 40, 43, (2,111,154): 45, 43, 41, 42, 48, 54, 71, 66, 64, 68, 73, 74, 71, 71, (2,111,168): 78, 78, 75, 77, 83, 68, 50, 44, 57, 73, 84, 81, 69, 61, (2,111,182): 56, 52, 38, 30, 29, 41, 53, 56, 55, 53, 50, 48, 46, 49, (2,111,196): 53, 45, 41, 49, 59, 67, 77, 78, 78, 81, 83, 82, 85, 88, (2,111,210): 91, 90, 85, 78, 72, 68, 78, 75, 72, 73, 74, 75, 69, 69, (2,111,224): 77, 71, 64, (2,112,0): 81, 81, 81, 82, 82, 83, 83, 83, 82, 82, 82, 82, 82, 82, (2,112,14): 82, 82, 83, 83, 83, 83, 81, 81, 81, 81, 82, 82, 82, 82, (2,112,28): 84, 84, 84, 84, 80, 81, 87, 87, 86, 84, 83, 84, 83, 81, (2,112,42): 77, 67, 61, 56, 50, 41, 44, 36, 51, 87, 109, 101, 87, (2,112,55): 79, 69, 69, 71, 72, 75, 75, 77, 77, 69, 69, 68, 69, 66, (2,112,69): 61, 60, 60, 56, 57, 60, 63, 64, 67, 68, 67, 70, 68, 68, (2,112,83): 69, 69, 68, 68, 68, 67, 64, 63, 62, 62, 61, 61, 63, 63, (2,112,97): 58, 51, 48, 48, 50, 51, 50, 50, 51, 50, 51, 51, 51, 49, (2,112,111): 50, 48, 46, 46, 45, 47, 46, 46, 46, 45, 45, 45, 45, 47, (2,112,125): 47, 47, 47, 48, 48, 48, 46, 46, 46, 46, 44, 44, 44, 44, (2,112,139): 45, 45, 44, 44, 44, 46, 46, 45, 45, 44, 43, 42, 43, 39, (2,112,153): 44, 41, 40, 43, 41, 45, 61, 72, 74, 71, 72, 72, 74, 75, (2,112,167): 76, 77, 75, 78, 81, 72, 58, 55, 59, 89, 81, 72, 67, 64, (2,112,181): 59, 53, 49, 38, 35, 35, 39, 48, 53, 54, 51, 45, 45, 46, (2,112,195): 47, 47, 46, 44, 40, 59, 70, 82, 85, 81, 83, 83, 85, 90, (2,112,209): 101, 101, 89, 75, 71, 72, 71, 73, 75, 77, 78, 77, 75, (2,112,222): 72, 71, 76, 68, 59, (2,113,0): 81, 81, 81, 82, 82, 83, 83, 83, 82, 82, 82, 82, 82, 82, (2,113,14): 82, 82, 83, 83, 83, 83, 83, 83, 83, 83, 84, 84, 84, 84, (2,113,28): 84, 84, 84, 84, 83, 82, 85, 86, 90, 90, 88, 86, 87, 89, (2,113,42): 89, 84, 79, 72, 61, 52, 48, 37, 41, 61, 71, 66, 61, 63, (2,113,56): 86, 84, 81, 79, 77, 77, 74, 74, 84, 71, 62, 58, 64, 65, (2,113,70): 59, 52, 57, 57, 61, 62, 66, 68, 69, 69, 70, 68, 68, 69, (2,113,84): 67, 68, 68, 68, 65, 64, 63, 62, 61, 61, 61, 63, 63, 60, (2,113,98): 54, 48, 48, 47, 48, 48, 50, 51, 52, 51, 51, 49, 49, 48, (2,113,112): 46, 45, 44, 44, 45, 44, 44, 44, 45, 45, 45, 45, 47, 47, (2,113,126): 47, 47, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 47, (2,113,140): 47, 47, 46, 46, 47, 47, 46, 45, 44, 44, 43, 43, 38, 44, (2,113,154): 41, 40, 43, 40, 44, 62, 73, 76, 74, 74, 76, 77, 78, 79, (2,113,168): 71, 72, 75, 80, 80, 76, 81, 84, 77, 71, 63, 58, 58, 58, (2,113,182): 55, 52, 45, 41, 39, 41, 47, 50, 50, 48, 48, 48, 49, 48, (2,113,196): 47, 46, 44, 42, 57, 68, 82, 82, 83, 82, 83, 86, 94, (2,113,209): 101, 97, 84, 73, 70, 70, 69, 73, 74, 76, 78, 77, 75, (2,113,222): 73, 73, 76, 66, 57, (2,114,0): 81, 81, 81, 82, 82, 83, 83, 83, 82, 82, 82, 82, 82, 82, (2,114,14): 82, 82, 83, 83, 83, 83, 83, 83, 83, 83, 84, 84, 84, 84, (2,114,28): 84, 84, 84, 84, 84, 80, 80, 82, 89, 92, 89, 86, 87, 96, (2,114,42): 105, 106, 105, 98, 86, 74, 60, 46, 40, 46, 47, 40, 42, (2,114,55): 51, 48, 49, 53, 58, 66, 74, 80, 82, 89, 78, 69, 63, 66, (2,114,69): 67, 64, 58, 59, 60, 62, 64, 67, 70, 70, 70, 68, 68, 68, (2,114,83): 68, 69, 69, 67, 67, 66, 66, 63, 62, 61, 61, 61, 62, 64, (2,114,97): 63, 60, 53, 49, 45, 44, 45, 50, 49, 50, 49, 49, 49, 49, (2,114,111): 48, 46, 44, 44, 44, 44, 44, 46, 46, 45, 45, 47, 47, 47, (2,114,125): 47, 47, 47, 48, 48, 48, 48, 48, 47, 47, 47, 49, 49, 48, (2,114,139): 48, 47, 47, 47, 47, 46, 46, 45, 45, 44, 43, 42, 42, 38, (2,114,153): 43, 41, 39, 42, 39, 43, 61, 73, 73, 74, 76, 77, 78, 80, (2,114,167): 80, 79, 80, 79, 78, 81, 85, 89, 85, 66, 58, 54, 51, 54, (2,114,181): 57, 56, 56, 48, 45, 42, 42, 46, 48, 47, 46, 50, 50, 50, (2,114,195): 48, 47, 48, 45, 41, 53, 64, 77, 78, 81, 82, 85, 87, 96, (2,114,209): 96, 87, 76, 69, 69, 69, 67, 72, 74, 75, 77, 76, 74, 72, (2,114,223): 72, 74, 66, 56, (2,115,0): 81, 81, 81, 82, 82, 83, 83, 83, 82, 82, 82, 82, 82, 82, (2,115,14): 82, 82, 83, 83, 83, 83, 83, 83, 83, 83, 84, 84, 84, 84, (2,115,28): 84, 84, 84, 84, 87, 84, 82, 83, 87, 90, 91, 93, 93, 105, (2,115,42): 120, 129, 129, 126, 114, 103, 78, 62, 50, 49, 48, 44, (2,115,54): 44, 52, 43, 42, 42, 41, 43, 47, 49, 49, 66, 74, 79, 75, (2,115,68): 68, 66, 67, 70, 62, 63, 62, 64, 67, 68, 68, 68, 68, 68, (2,115,82): 68, 68, 68, 68, 66, 67, 66, 65, 62, 62, 60, 60, 61, 62, (2,115,96): 60, 63, 62, 56, 49, 44, 43, 45, 48, 49, 48, 47, 49, 47, (2,115,110): 47, 46, 45, 44, 44, 43, 44, 44, 45, 45, 45, 45, 47, 47, (2,115,124): 47, 47, 47, 47, 48, 48, 48, 47, 47, 47, 47, 46, 49, 48, (2,115,138): 48, 48, 47, 47, 47, 47, 45, 45, 45, 44, 43, 42, 42, 41, (2,115,152): 38, 43, 40, 38, 41, 38, 42, 60, 71, 74, 75, 77, 78, 80, (2,115,166): 80, 81, 82, 85, 80, 71, 73, 79, 75, 64, 56, 52, 48, 46, (2,115,180): 51, 55, 58, 59, 52, 50, 47, 44, 46, 46, 45, 45, 51, 53, (2,115,194): 52, 50, 49, 47, 44, 42, 52, 62, 73, 76, 81, 84, 87, 90, (2,115,208): 97, 91, 78, 69, 67, 69, 69, 67, 72, 73, 74, 75, 74, 73, (2,115,222): 71, 74, 74, 64, 55, (2,116,0): 81, 81, 81, 82, 82, 83, 83, 83, 82, 82, 82, 82, 82, 82, (2,116,14): 82, 82, 83, 83, 83, 83, 83, 83, 83, 83, 84, 84, 84, 84, (2,116,28): 84, 84, 84, 84, 88, 92, 91, 89, 88, 93, 104, 112, 119, (2,116,41): 134, 148, 156, 156, 153, 145, 135, 107, 83, 63, 55, 53, (2,116,53): 50, 50, 53, 60, 57, 53, 48, 44, 43, 42, 40, 42, 56, 72, (2,116,67): 75, 71, 73, 73, 69, 66, 66, 65, 66, 65, 65, 65, 65, 68, (2,116,81): 70, 70, 70, 68, 68, 68, 67, 66, 65, 62, 61, 61, 61, 61, (2,116,95): 62, 58, 59, 61, 57, 51, 45, 46, 47, 48, 47, 46, 45, 47, (2,116,109): 45, 45, 46, 45, 45, 44, 44, 44, 43, 45, 45, 47, 47, 47, (2,116,123): 47, 49, 49, 49, 49, 49, 49, 49, 48, 48, 47, 47, 46, 49, (2,116,137): 49, 48, 48, 48, 47, 47, 47, 47, 46, 46, 45, 44, 43, 43, (2,116,151): 43, 40, 45, 42, 40, 42, 39, 43, 59, 71, 72, 74, 76, 79, (2,116,165): 80, 82, 81, 77, 79, 74, 66, 68, 72, 65, 51, 47, 46, 43, (2,116,179): 43, 46, 51, 55, 57, 54, 53, 50, 47, 47, 46, 44, 44, 52, (2,116,193): 53, 53, 52, 48, 47, 45, 41, 49, 58, 71, 75, 82, 86, 89, (2,116,207): 91, 96, 87, 73, 67, 68, 71, 71, 70, 73, 74, 75, 75, 74, (2,116,221): 73, 72, 73, 73, 66, 56, (2,117,0): 81, 81, 81, 82, 82, 83, 83, 83, 82, 82, 82, 82, 82, 82, (2,117,14): 82, 82, 83, 83, 83, 83, 83, 83, 83, 83, 84, 84, 84, 84, (2,117,28): 84, 84, 84, 84, 85, 90, 92, 90, 92, 103, 124, 140, 160, (2,117,41): 174, 188, 193, 190, 186, 177, 168, 143, 114, 84, 63, 56, (2,117,53): 51, 49, 50, 51, 51, 50, 51, 52, 56, 58, 57, 40, 47, 54, (2,117,67): 65, 79, 91, 86, 73, 74, 70, 70, 68, 66, 66, 63, 65, 68, (2,117,81): 70, 70, 70, 67, 67, 67, 67, 65, 65, 64, 61, 60, 60, 61, (2,117,95): 61, 56, 57, 58, 57, 55, 48, 47, 46, 47, 47, 46, 45, 45, (2,117,109): 45, 45, 46, 44, 44, 44, 44, 43, 43, 45, 44, 47, 47, 47, (2,117,123): 47, 49, 49, 49, 49, 49, 49, 48, 48, 47, 46, 46, 46, 47, (2,117,137): 47, 47, 46, 46, 46, 45, 45, 46, 46, 45, 44, 43, 43, 42, (2,117,151): 42, 40, 44, 41, 39, 41, 38, 42, 57, 71, 72, 74, 76, 79, (2,117,165): 78, 79, 81, 78, 76, 70, 66, 66, 63, 54, 44, 43, 42, 40, (2,117,179): 40, 42, 45, 49, 52, 55, 53, 52, 50, 50, 47, 45, 44, 51, (2,117,193): 53, 53, 50, 49, 46, 45, 42, 47, 55, 68, 77, 83, 89, 89, (2,117,207): 89, 89, 79, 67, 65, 69, 70, 70, 71, 73, 73, 73, 73, 73, (2,117,221): 72, 71, 74, 73, 64, 57, (2,118,0): 81, 81, 81, 82, 82, 83, 83, 83, 82, 82, 82, 82, 82, 82, (2,118,14): 82, 82, 83, 83, 83, 83, 83, 83, 83, 83, 84, 84, 84, 84, (2,118,28): 84, 84, 84, 86, 86, 88, 90, 94, 106, 128, 154, 174, 192, (2,118,41): 208, 223, 228, 224, 218, 211, 200, 178, 151, 122, 93, (2,118,52): 73, 58, 49, 47, 54, 55, 53, 52, 53, 51, 51, 48, 51, 50, (2,118,66): 49, 52, 72, 95, 100, 90, 83, 79, 75, 74, 71, 68, 65, 66, (2,118,80): 68, 70, 70, 69, 69, 68, 66, 66, 67, 64, 63, 63, 60, 60, (2,118,94): 61, 61, 58, 58, 58, 58, 58, 52, 47, 43, 47, 46, 45, 44, (2,118,108): 44, 44, 44, 45, 44, 44, 44, 43, 45, 45, 46, 46, 47, 47, (2,118,122): 49, 49, 49, 49, 49, 49, 49, 49, 48, 48, 47, 46, 45, 45, (2,118,136): 46, 46, 45, 45, 45, 44, 44, 44, 45, 45, 44, 44, 43, 42, (2,118,150): 41, 41, 39, 44, 41, 38, 41, 37, 41, 56, 71, 72, 74, 76, (2,118,164): 78, 79, 79, 78, 78, 71, 65, 61, 58, 49, 43, 41, 43, 45, (2,118,178): 44, 43, 41, 43, 43, 45, 52, 53, 55, 55, 53, 49, 44, 45, (2,118,192): 48, 50, 50, 49, 50, 48, 46, 41, 43, 53, 67, 76, 86, 91, (2,118,206): 89, 86, 80, 73, 64, 66, 70, 70, 70, 72, 74, 74, 74, 74, (2,118,220): 73, 73, 72, 74, 73, 64, 55, (2,119,0): 81, 81, 81, 82, 82, 83, 83, 83, 82, 82, 82, 82, 82, 82, (2,119,14): 82, 82, 83, 83, 83, 83, 83, 83, 83, 83, 84, 84, 84, 84, (2,119,28): 84, 84, 84, 86, 94, 95, 97, 106, 127, 156, 186, 207, (2,119,40): 207, 224, 242, 249, 246, 240, 233, 223, 198, 181, 157, (2,119,51): 129, 98, 71, 55, 50, 50, 52, 53, 55, 55, 57, 55, 54, 53, (2,119,65): 55, 49, 43, 54, 82, 105, 109, 92, 87, 83, 78, 75, 72, (2,119,78): 68, 67, 70, 70, 70, 69, 69, 68, 66, 66, 67, 66, 63, 62, (2,119,92): 62, 60, 60, 61, 61, 57, 58, 59, 58, 54, 45, 38, 47, 46, (2,119,106): 45, 44, 44, 44, 42, 45, 44, 44, 44, 43, 45, 44, 46, 46, (2,119,120): 47, 47, 49, 49, 49, 49, 49, 49, 49, 49, 48, 47, 46, 46, (2,119,134): 45, 44, 45, 45, 44, 44, 44, 43, 43, 43, 45, 45, 44, 43, (2,119,148): 42, 42, 41, 41, 39, 44, 41, 38, 40, 37, 40, 56, 71, 73, (2,119,162): 74, 77, 79, 79, 77, 76, 68, 58, 52, 54, 50, 43, 42, 50, (2,119,176): 48, 49, 50, 48, 46, 44, 45, 44, 51, 53, 57, 57, 55, 51, (2,119,190): 44, 45, 46, 48, 49, 48, 49, 47, 46, 43, 42, 52, 65, 77, (2,119,204): 86, 92, 88, 85, 73, 67, 62, 66, 70, 68, 68, 71, 74, 74, (2,119,218): 73, 73, 73, 72, 72, 76, 73, 65, 55, (2,120,0): 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, (2,120,14): 83, 83, 83, 83, 83, 84, 84, 85, 85, 85, 85, 85, 85, 85, (2,120,28): 85, 85, 85, 87, 90, 93, 110, 142, 173, 197, 219, 239, (2,120,40): 246, 249, 254, 255, 253, 250, 244, 236, 212, 199, 181, (2,120,51): 159, 135, 105, 70, 45, 47, 48, 49, 53, 51, 48, 50, 57, (2,120,64): 57, 58, 55, 53, 70, 106, 146, 169, 136, 112, 90, 81, 79, (2,120,77): 76, 73, 72, 71, 75, 70, 62, 64, 74, 73, 64, 64, 64, 64, (2,120,91): 62, 62, 60, 59, 57, 62, 57, 57, 57, 56, 53, 46, 42, 48, (2,120,105): 47, 46, 45, 44, 43, 42, 44, 43, 45, 45, 44, 46, 45, 45, (2,120,119): 45, 48, 48, 48, 48, 49, 49, 49, 49, 53, 52, 51, 50, 49, (2,120,133): 47, 46, 46, 45, 45, 45, 45, 45, 45, 45, 45, 43, 47, 50, (2,120,147): 49, 45, 42, 42, 43, 40, 46, 41, 35, 38, 37, 40, 54, 74, (2,120,161): 75, 74, 74, 77, 81, 73, 62, 53, 53, 50, 48, 47, 48, 48, (2,120,175): 48, 51, 51, 52, 49, 48, 47, 46, 43, 43, 45, 50, 54, 54, (2,120,189): 52, 46, 46, 43, 46, 46, 45, 47, 46, 47, 43, 38, 49, 67, (2,120,203): 82, 93, 95, 87, 82, 68, 68, 64, 64, 67, 70, 71, 70, 74, (2,120,217): 78, 78, 74, 72, 75, 76, 77, 75, 66, 55, (2,121,0): 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, (2,121,14): 83, 83, 83, 83, 83, 84, 84, 85, 85, 85, 85, 85, 85, 85, (2,121,28): 85, 85, 85, 89, 93, 106, 131, 162, 194, 219, 239, 252, (2,121,40): 254, 255, 255, 254, 253, 250, 249, 243, 224, 212, 197, (2,121,51): 178, 157, 132, 99, 75, 51, 47, 46, 47, 50, 51, 53, 57, (2,121,64): 55, 63, 69, 80, 103, 139, 174, 191, 207, 168, 123, 93, (2,121,76): 85, 83, 77, 69, 70, 69, 72, 75, 70, 63, 63, 69, 63, 63, (2,121,90): 64, 64, 62, 61, 60, 57, 60, 59, 57, 58, 59, 54, 49, 45, (2,121,104): 48, 47, 46, 45, 44, 43, 44, 44, 43, 45, 45, 44, 46, 45, (2,121,118): 45, 45, 48, 48, 48, 48, 49, 50, 50, 50, 52, 51, 50, 49, (2,121,132): 48, 46, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 46, 48, (2,121,146): 49, 49, 47, 44, 42, 42, 40, 42, 37, 36, 40, 36, 38, 53, (2,121,160): 69, 76, 82, 79, 75, 68, 58, 47, 49, 48, 48, 48, 49, 49, (2,121,174): 49, 51, 52, 53, 53, 50, 49, 47, 46, 44, 43, 46, 48, 52, (2,121,188): 53, 52, 50, 49, 47, 46, 45, 43, 43, 43, 45, 44, 40, 51, (2,121,202): 69, 85, 96, 98, 89, 80, 68, 67, 64, 64, 66, 69, 69, 69, (2,121,216): 71, 75, 75, 72, 71, 74, 74, 77, 74, 66, 55, (2,122,0): 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, (2,122,14): 83, 83, 83, 83, 83, 84, 84, 85, 85, 85, 85, 85, 85, 85, (2,122,28): 85, 86, 86, 90, 95, 120, 152, 183, 210, 236, 252, 255, (2,122,40): 255, 255, 255, 254, 252, 251, 250, 244, 231, 221, 209, (2,122,51): 196, 180, 159, 131, 108, 69, 55, 44, 46, 52, 55, 56, 58, (2,122,64): 57, 75, 95, 118, 144, 175, 200, 211, 217, 229, 214, 159, (2,122,76): 97, 68, 75, 89, 85, 76, 66, 66, 69, 70, 68, 68, 63, 64, (2,122,90): 63, 63, 64, 63, 61, 58, 58, 58, 58, 60, 60, 55, 50, 46, (2,122,104): 48, 48, 47, 46, 45, 44, 45, 45, 45, 45, 47, 46, 46, 45, (2,122,118): 47, 47, 49, 49, 50, 50, 50, 50, 52, 52, 50, 49, 48, 47, (2,122,132): 46, 45, 44, 44, 45, 45, 45, 45, 45, 45, 45, 45, 49, 48, (2,122,146): 48, 48, 48, 46, 43, 40, 41, 39, 35, 38, 42, 35, 38, 60, (2,122,160): 74, 80, 81, 73, 63, 55, 45, 40, 42, 43, 46, 47, 49, 49, (2,122,174): 49, 51, 52, 54, 51, 50, 50, 48, 47, 45, 43, 45, 46, 50, (2,122,188): 52, 52, 52, 53, 51, 50, 45, 40, 40, 40, 42, 41, 39, 53, (2,122,202): 74, 90, 102, 102, 90, 75, 67, 67, 64, 64, 66, 68, 69, (2,122,215): 69, 70, 73, 75, 73, 73, 75, 74, 75, 72, 64, 53, (2,123,0): 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, (2,123,14): 83, 83, 83, 83, 83, 84, 84, 85, 85, 85, 85, 85, 85, 86, (2,123,28): 86, 86, 86, 91, 102, 136, 168, 193, 216, 239, 253, 255, (2,123,40): 255, 255, 255, 251, 249, 248, 247, 243, 230, 222, 216, (2,123,51): 206, 195, 180, 153, 134, 101, 76, 54, 48, 53, 58, 57, (2,123,63): 55, 68, 95, 128, 153, 172, 194, 212, 221, 229, 239, 235, (2,123,75): 207, 172, 140, 100, 66, 76, 78, 73, 65, 66, 74, 71, 62, (2,123,88): 62, 63, 62, 63, 63, 63, 61, 61, 57, 58, 61, 63, 62, 57, (2,123,102): 53, 50, 49, 48, 47, 46, 47, 44, 45, 45, 45, 45, 47, 46, (2,123,116): 46, 45, 47, 47, 50, 50, 51, 50, 50, 50, 52, 52, 48, 47, (2,123,130): 47, 46, 45, 44, 43, 43, 44, 44, 44, 44, 44, 44, 44, 44, (2,123,144): 50, 47, 45, 46, 47, 47, 43, 39, 43, 40, 36, 40, 41, 32, (2,123,158): 40, 69, 86, 82, 71, 58, 51, 46, 45, 46, 41, 42, 46, 47, (2,123,172): 50, 49, 48, 48, 52, 51, 51, 50, 49, 47, 46, 46, 43, 44, (2,123,186): 44, 46, 49, 52, 54, 56, 56, 52, 46, 39, 37, 36, 38, 39, (2,123,200): 39, 56, 80, 100, 110, 105, 88, 69, 65, 64, 63, 63, 64, (2,123,213): 65, 66, 66, 67, 71, 73, 72, 74, 75, 72, 73, 68, 60, 48, (2,124,0): 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, (2,124,14): 83, 83, 83, 83, 83, 84, 84, 85, 85, 85, 85, 85, 85, 86, (2,124,28): 86, 87, 87, 93, 111, 143, 172, 194, 216, 239, 254, 255, (2,124,40): 255, 255, 252, 250, 245, 241, 237, 234, 232, 228, 225, (2,124,51): 217, 210, 197, 173, 153, 129, 98, 66, 53, 55, 57, 57, (2,124,63): 56, 88, 122, 159, 181, 193, 205, 221, 233, 239, 233, (2,124,74): 226, 227, 234, 219, 162, 99, 64, 68, 78, 82, 73, 61, 59, (2,124,87): 64, 61, 62, 63, 64, 63, 63, 63, 61, 59, 60, 64, 64, 62, (2,124,101): 57, 53, 51, 49, 50, 49, 48, 49, 46, 47, 47, 47, 47, 47, (2,124,115): 46, 48, 47, 47, 47, 51, 51, 51, 50, 52, 51, 51, 51, 48, (2,124,129): 48, 47, 47, 46, 45, 45, 45, 46, 46, 46, 46, 46, 46, 46, (2,124,143): 46, 50, 47, 45, 46, 48, 48, 45, 42, 43, 43, 40, 40, 40, (2,124,157): 33, 45, 76, 82, 72, 56, 46, 44, 45, 46, 49, 45, 46, 47, (2,124,171): 48, 48, 47, 45, 46, 48, 50, 49, 47, 47, 47, 46, 44, 43, (2,124,185): 43, 44, 45, 46, 50, 53, 55, 56, 53, 47, 40, 37, 36, 37, (2,124,199): 36, 37, 59, 87, 107, 114, 103, 81, 61, 62, 62, 62, 62, (2,124,212): 62, 62, 64, 64, 68, 72, 74, 74, 76, 76, 71, 69, 63, 57, (2,124,226): 46, (2,125,0): 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, (2,125,14): 83, 83, 83, 83, 83, 84, 84, 85, 85, 85, 85, 85, 86, 86, (2,125,28): 87, 88, 88, 93, 109, 133, 160, 183, 208, 232, 249, 255, (2,125,40): 253, 252, 250, 249, 243, 237, 232, 227, 234, 232, 229, (2,125,51): 223, 219, 205, 185, 165, 146, 114, 79, 59, 58, 61, 66, (2,125,63): 71, 115, 148, 184, 204, 211, 219, 233, 244, 235, 244, (2,125,74): 246, 241, 234, 229, 218, 199, 127, 81, 58, 70, 74, 60, (2,125,86): 55, 68, 62, 63, 63, 64, 62, 62, 62, 61, 60, 63, 65, 63, (2,125,100): 61, 56, 53, 52, 51, 50, 51, 50, 49, 48, 49, 47, 47, 47, (2,125,114): 47, 46, 48, 47, 47, 47, 51, 50, 50, 49, 51, 50, 49, 49, (2,125,128): 48, 47, 47, 47, 46, 46, 45, 45, 45, 45, 45, 45, 45, 45, (2,125,142): 45, 45, 48, 47, 46, 46, 47, 48, 47, 46, 42, 46, 41, 39, (2,125,156): 43, 44, 52, 74, 64, 54, 47, 44, 47, 47, 44, 43, 46, 47, (2,125,170): 47, 46, 46, 45, 44, 43, 44, 44, 46, 44, 46, 44, 44, 44, (2,125,184): 43, 43, 43, 44, 43, 46, 49, 50, 53, 50, 47, 45, 41, 39, (2,125,198): 37, 37, 37, 62, 92, 109, 108, 95, 75, 57, 60, 59, 61, (2,125,211): 61, 59, 59, 60, 62, 67, 71, 74, 75, 76, 76, 67, 66, 56, (2,125,225): 51, 42, (2,126,0): 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, (2,126,14): 83, 83, 83, 83, 83, 84, 84, 85, 85, 85, 85, 85, 86, 86, (2,126,28): 87, 88, 89, 94, 107, 122, 148, 177, 205, 226, 242, 252, (2,126,40): 251, 249, 247, 246, 242, 236, 231, 231, 234, 235, 232, (2,126,51): 230, 226, 214, 195, 175, 154, 125, 91, 70, 67, 75, 90, (2,126,63): 100, 141, 168, 198, 217, 227, 235, 244, 249, 251, 248, (2,126,74): 243, 237, 237, 240, 241, 234, 203, 144, 89, 68, 69, 70, (2,126,86): 65, 65, 63, 63, 64, 64, 62, 61, 60, 60, 63, 64, 65, 61, (2,126,100): 57, 53, 53, 54, 51, 52, 53, 52, 51, 48, 49, 49, 47, 47, (2,126,114): 47, 46, 48, 47, 47, 47, 50, 50, 51, 50, 49, 48, 48, 47, (2,126,128): 48, 47, 47, 47, 47, 46, 46, 46, 45, 45, 45, 45, 45, 45, (2,126,142): 45, 45, 47, 48, 49, 49, 48, 49, 51, 53, 48, 52, 45, 44, (2,126,156): 58, 67, 64, 68, 48, 46, 47, 49, 50, 46, 43, 44, 45, 45, (2,126,170): 44, 43, 43, 43, 41, 41, 40, 41, 43, 41, 43, 41, 41, 41, (2,126,184): 42, 41, 43, 42, 43, 44, 46, 45, 49, 48, 48, 49, 46, 42, (2,126,198): 38, 36, 39, 63, 91, 103, 98, 84, 69, 56, 59, 59, 61, (2,126,211): 61, 59, 59, 60, 62, 68, 72, 74, 76, 77, 75, 64, 59, 52, (2,126,225): 47, 38, (2,127,0): 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, (2,127,14): 83, 83, 83, 83, 85, 86, 86, 87, 85, 85, 85, 85, 86, 87, (2,127,28): 90, 92, 94, 101, 114, 122, 144, 179, 209, 225, 241, 254, (2,127,40): 250, 249, 247, 244, 242, 241, 238, 240, 239, 241, 239, (2,127,51): 237, 233, 223, 203, 183, 155, 129, 98, 78, 76, 87, 110, (2,127,63): 125, 162, 181, 207, 226, 238, 244, 247, 245, 247, 247, (2,127,74): 247, 249, 244, 238, 238, 239, 225, 224, 184, 113, 71, (2,127,85): 72, 74, 59, 64, 64, 62, 62, 61, 60, 59, 59, 62, 62, 62, (2,127,99): 59, 53, 50, 51, 54, 53, 52, 53, 52, 51, 48, 49, 49, 47, (2,127,113): 47, 49, 48, 48, 47, 47, 47, 49, 49, 50, 49, 48, 47, 47, (2,127,127): 46, 48, 48, 47, 47, 47, 47, 47, 46, 45, 45, 45, 45, 45, (2,127,141): 45, 45, 45, 46, 49, 52, 51, 50, 48, 52, 56, 53, 59, 50, (2,127,155): 50, 74, 90, 77, 65, 49, 49, 50, 53, 48, 43, 44, 51, 43, (2,127,169): 42, 41, 40, 40, 42, 43, 44, 41, 41, 42, 42, 42, 42, 42, (2,127,183): 42, 44, 43, 45, 44, 44, 44, 45, 43, 48, 49, 52, 52, 51, (2,127,197): 46, 39, 36, 42, 66, 91, 97, 88, 75, 65, 58, 59, 60, 63, (2,127,211): 63, 60, 57, 61, 61, 69, 72, 75, 76, 78, 77, 65, 59, 52, (2,127,225): 47, 37, (2,128,0): 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, (2,128,14): 86, 86, 86, 86, 88, 89, 90, 90, 88, 86, 78, 82, 88, 93, (2,128,28): 92, 97, 114, 134, 146, 160, 181, 202, 223, 238, 248, (2,128,39): 249, 253, 252, 250, 246, 242, 241, 242, 243, 242, 242, (2,128,50): 237, 235, 231, 222, 202, 182, 155, 124, 89, 77, 88, 108, (2,128,62): 130, 144, 178, 199, 222, 235, 242, 246, 248, 247, 252, (2,128,73): 252, 252, 250, 250, 250, 250, 250, 248, 248, 246, 223, (2,128,84): 159, 88, 61, 66, 69, 61, 57, 59, 63, 64, 64, 61, 56, 56, (2,128,98): 56, 56, 53, 52, 53, 53, 53, 54, 52, 51, 50, 49, 49, 49, (2,128,112): 49, 49, 49, 48, 47, 47, 46, 45, 46, 46, 47, 47, 46, 45, (2,128,126): 43, 43, 47, 49, 49, 48, 48, 47, 47, 47, 46, 47, 48, 49, (2,128,140): 48, 47, 45, 44, 45, 47, 48, 48, 48, 46, 48, 51, 50, 58, (2,128,154): 58, 79, 92, 106, 111, 61, 46, 48, 48, 47, 47, 47, 46, (2,128,167): 46, 45, 45, 45, 44, 44, 43, 43, 43, 45, 45, 45, 45, 45, (2,128,181): 45, 45, 45, 46, 45, 45, 44, 44, 45, 45, 46, 50, 50, 53, (2,128,195): 55, 54, 52, 48, 45, 46, 61, 78, 81, 72, 60, 56, 54, 62, (2,128,209): 62, 61, 61, 60, 58, 62, 63, 71, 75, 79, 80, 82, 78, 63, (2,128,223): 54, 42, 46, 44, (2,129,0): 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, (2,129,14): 86, 86, 86, 86, 89, 90, 92, 91, 90, 86, 81, 83, 87, 91, (2,129,28): 95, 108, 132, 154, 180, 195, 216, 233, 244, 253, 255, (2,129,39): 255, 251, 250, 250, 249, 244, 242, 242, 243, 241, 239, (2,129,50): 237, 233, 229, 218, 195, 175, 151, 118, 85, 73, 85, 111, (2,129,62): 138, 156, 188, 209, 229, 241, 245, 249, 250, 249, 252, (2,129,73): 252, 252, 252, 252, 252, 252, 254, 255, 252, 248, 247, (2,129,84): 230, 185, 119, 70, 65, 63, 63, 61, 56, 52, 54, 58, 55, (2,129,97): 55, 58, 55, 54, 50, 54, 55, 55, 56, 55, 53, 52, 51, 49, (2,129,111): 51, 50, 50, 49, 49, 48, 47, 46, 46, 45, 46, 46, 46, 46, (2,129,125): 44, 42, 43, 47, 49, 49, 48, 48, 48, 47, 47, 44, 44, 46, (2,129,139): 47, 49, 49, 49, 50, 48, 49, 48, 49, 47, 49, 48, 50, 54, (2,129,153): 61, 65, 83, 101, 115, 114, 60, 46, 47, 47, 47, 46, 46, (2,129,166): 46, 45, 45, 45, 45, 44, 44, 43, 43, 43, 46, 46, 46, 46, (2,129,180): 46, 46, 46, 46, 47, 46, 45, 45, 45, 45, 46, 47, 48, 50, (2,129,194): 51, 54, 54, 54, 52, 49, 49, 62, 73, 73, 64, 54, 55, 58, (2,129,208): 64, 63, 64, 62, 60, 58, 59, 60, 69, 75, 81, 84, 84, 79, (2,129,222): 62, 53, 45, 48, 46, (2,130,0): 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, (2,130,14): 86, 86, 86, 86, 89, 90, 92, 91, 90, 86, 85, 84, 87, 91, (2,130,28): 99, 119, 151, 178, 203, 221, 243, 254, 255, 255, 255, (2,130,39): 254, 251, 250, 250, 248, 243, 239, 235, 235, 236, 235, (2,130,50): 234, 229, 225, 212, 191, 171, 146, 121, 96, 90, 105, (2,130,61): 129, 156, 173, 202, 220, 237, 246, 249, 252, 252, 251, (2,130,72): 252, 252, 252, 252, 252, 252, 252, 254, 253, 255, 254, (2,130,83): 246, 244, 235, 193, 143, 60, 65, 58, 49, 59, 77, 73, 51, (2,130,96): 55, 58, 61, 59, 55, 51, 55, 59, 57, 57, 56, 54, 53, 52, (2,130,110): 52, 52, 52, 52, 51, 51, 50, 49, 49, 49, 48, 48, 48, 48, (2,130,124): 47, 46, 44, 43, 47, 49, 49, 49, 48, 48, 48, 47, 46, 46, (2,130,138): 46, 47, 48, 49, 51, 51, 52, 51, 48, 49, 50, 52, 50, 50, (2,130,152): 55, 65, 71, 86, 109, 123, 109, 54, 45, 46, 46, 46, 45, (2,130,165): 45, 45, 44, 45, 45, 45, 44, 44, 43, 43, 43, 46, 46, 46, (2,130,179): 46, 46, 46, 46, 46, 46, 46, 45, 44, 44, 45, 46, 46, 45, (2,130,193): 46, 47, 49, 50, 52, 52, 51, 51, 58, 62, 58, 50, 45, 51, (2,130,207): 57, 64, 64, 66, 63, 61, 57, 56, 57, 68, 76, 83, 86, 84, (2,130,221): 75, 56, 46, 45, 48, 46, (2,131,0): 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, (2,131,14): 86, 86, 86, 86, 89, 90, 92, 91, 90, 86, 86, 85, 87, 93, (2,131,28): 105, 129, 166, 196, 208, 230, 252, 255, 254, 254, 252, (2,131,39): 248, 252, 251, 249, 244, 238, 230, 227, 223, 226, 229, (2,131,50): 227, 223, 220, 208, 188, 171, 149, 137, 125, 128, 145, (2,131,61): 162, 180, 191, 218, 231, 244, 249, 251, 253, 253, 251, (2,131,72): 252, 252, 252, 252, 252, 252, 252, 254, 253, 255, 255, (2,131,83): 237, 230, 240, 236, 222, 173, 110, 63, 64, 75, 64, 56, (2,131,95): 58, 54, 59, 63, 61, 57, 52, 54, 60, 59, 60, 58, 59, 57, (2,131,109): 57, 56, 56, 52, 52, 52, 51, 51, 50, 50, 49, 48, 48, 48, (2,131,123): 47, 46, 45, 45, 46, 50, 50, 49, 49, 49, 48, 48, 48, 51, (2,131,137): 50, 48, 47, 47, 47, 49, 49, 54, 52, 49, 50, 51, 53, 51, (2,131,151): 50, 54, 64, 73, 86, 111, 122, 95, 44, 44, 46, 45, 45, (2,131,164): 45, 44, 44, 44, 45, 45, 45, 44, 44, 43, 43, 43, 45, 45, (2,131,178): 45, 45, 45, 45, 45, 45, 45, 45, 44, 44, 44, 44, 45, 45, (2,131,192): 44, 44, 44, 45, 46, 49, 50, 51, 50, 53, 55, 49, 43, 41, (2,131,206): 47, 52, 60, 61, 65, 64, 63, 59, 58, 58, 69, 78, 86, 88, (2,131,220): 83, 73, 52, 40, 44, 46, 44, (2,132,0): 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, (2,132,14): 86, 86, 86, 86, 89, 90, 92, 91, 90, 86, 84, 84, 89, 96, (2,132,28): 109, 134, 172, 202, 218, 241, 255, 255, 253, 255, 254, (2,132,39): 250, 253, 251, 248, 240, 232, 223, 218, 213, 218, 219, (2,132,50): 219, 217, 214, 208, 191, 177, 167, 160, 157, 167, 181, (2,132,61): 195, 206, 215, 230, 240, 248, 250, 251, 253, 253, 250, (2,132,72): 252, 252, 252, 252, 252, 252, 252, 252, 254, 250, 245, (2,132,83): 243, 248, 248, 244, 234, 236, 200, 137, 80, 59, 60, 64, (2,132,95): 60, 55, 59, 63, 61, 59, 55, 56, 59, 59, 60, 61, 61, 60, (2,132,109): 59, 59, 59, 54, 54, 54, 53, 53, 53, 53, 52, 52, 51, 50, (2,132,123): 49, 49, 48, 48, 48, 50, 50, 50, 49, 49, 49, 48, 48, 52, (2,132,137): 51, 49, 48, 48, 48, 49, 50, 54, 53, 52, 53, 53, 54, 51, (2,132,151): 50, 54, 63, 77, 87, 111, 114, 76, 40, 44, 46, 45, 45, (2,132,164): 45, 44, 44, 44, 45, 45, 45, 44, 44, 43, 43, 43, 45, 45, (2,132,178): 45, 45, 45, 45, 45, 45, 44, 44, 43, 43, 43, 43, 44, 44, (2,132,192): 46, 45, 43, 43, 44, 45, 45, 47, 45, 47, 48, 45, 41, 41, (2,132,206): 45, 47, 53, 56, 61, 64, 63, 61, 62, 63, 71, 81, 90, 90, (2,132,220): 83, 71, 52, 37, 42, 44, 42, (2,133,0): 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, (2,133,14): 86, 86, 86, 86, 89, 90, 92, 91, 90, 86, 84, 85, 89, 97, (2,133,28): 109, 132, 168, 199, 227, 248, 255, 255, 255, 255, 255, (2,133,39): 250, 251, 250, 244, 234, 226, 217, 213, 209, 211, 213, (2,133,50): 214, 212, 211, 207, 196, 184, 186, 182, 184, 193, 206, (2,133,61): 216, 229, 237, 240, 247, 251, 251, 251, 253, 252, 250, (2,133,72): 252, 252, 252, 252, 252, 252, 252, 252, 253, 247, 248, (2,133,83): 253, 253, 250, 243, 239, 226, 237, 217, 147, 87, 70, 69, (2,133,95): 59, 58, 60, 62, 63, 62, 58, 57, 57, 60, 61, 61, 59, 60, (2,133,109): 59, 59, 59, 56, 54, 54, 54, 54, 53, 53, 53, 54, 53, 52, (2,133,123): 50, 49, 49, 49, 50, 51, 50, 50, 50, 49, 49, 49, 49, 48, (2,133,137): 48, 48, 49, 50, 52, 53, 54, 52, 56, 58, 59, 56, 54, 51, (2,133,151): 52, 57, 63, 82, 91, 110, 101, 58, 42, 45, 46, 46, 46, (2,133,164): 45, 45, 45, 44, 45, 45, 45, 44, 44, 43, 43, 43, 44, 44, (2,133,178): 44, 44, 44, 44, 44, 44, 44, 43, 42, 42, 42, 42, 43, 44, (2,133,192): 46, 46, 43, 43, 43, 44, 44, 43, 42, 43, 47, 47, 46, 43, (2,133,206): 45, 44, 47, 51, 56, 58, 60, 63, 66, 68, 74, 83, 90, 90, (2,133,220): 82, 69, 49, 37, 42, 44, 42, (2,134,0): 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, (2,134,14): 86, 86, 86, 86, 89, 90, 92, 91, 90, 86, 86, 86, 88, 93, (2,134,28): 104, 125, 160, 190, 223, 247, 255, 255, 253, 255, 255, (2,134,39): 246, 251, 248, 241, 232, 222, 216, 214, 211, 210, 211, (2,134,50): 211, 209, 208, 206, 199, 190, 195, 198, 203, 216, 227, (2,134,61): 234, 244, 251, 247, 252, 253, 251, 251, 253, 253, 250, (2,134,72): 252, 252, 252, 252, 252, 252, 252, 252, 249, 250, 253, (2,134,83): 253, 252, 245, 248, 253, 250, 231, 234, 232, 185, 98, (2,134,94): 58, 73, 62, 61, 62, 64, 64, 62, 58, 55, 57, 58, 57, 58, (2,134,108): 58, 58, 58, 60, 56, 56, 56, 56, 56, 56, 56, 56, 58, 57, (2,134,122): 55, 53, 52, 53, 53, 54, 51, 51, 50, 50, 50, 49, 49, 49, (2,134,136): 47, 48, 49, 51, 52, 53, 53, 53, 52, 60, 66, 67, 60, 56, (2,134,150): 53, 55, 60, 62, 85, 94, 107, 85, 40, 46, 46, 47, 47, (2,134,163): 47, 46, 46, 46, 45, 45, 45, 45, 44, 44, 43, 43, 43, 44, (2,134,177): 44, 44, 44, 44, 44, 44, 44, 43, 43, 42, 41, 41, 42, 43, (2,134,191): 43, 45, 45, 44, 44, 44, 44, 43, 44, 43, 44, 47, 49, 50, (2,134,205): 49, 48, 46, 45, 46, 51, 53, 56, 58, 63, 66, 73, 84, 90, (2,134,219): 88, 80, 65, 48, 37, 44, 44, 42, (2,135,0): 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, 86, (2,135,14): 86, 86, 86, 86, 89, 90, 92, 91, 90, 86, 89, 87, 87, 90, (2,135,28): 98, 120, 154, 184, 215, 240, 255, 254, 254, 255, 255, (2,135,39): 244, 250, 245, 238, 229, 221, 216, 216, 214, 210, 210, (2,135,50): 210, 206, 207, 207, 200, 195, 196, 204, 219, 235, 246, (2,135,61): 249, 251, 252, 253, 253, 253, 252, 252, 253, 253, 251, (2,135,72): 252, 252, 252, 252, 252, 252, 252, 250, 247, 247, 248, (2,135,83): 250, 254, 255, 255, 250, 248, 250, 241, 226, 219, 203, (2,135,94): 150, 91, 68, 64, 62, 65, 66, 64, 60, 53, 55, 54, 56, 55, (2,135,108): 55, 54, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 59, 58, (2,135,122): 56, 54, 53, 53, 54, 55, 51, 51, 51, 50, 50, 49, 49, 49, (2,135,136): 50, 51, 52, 53, 53, 51, 50, 49, 52, 62, 71, 72, 63, 57, (2,135,150): 55, 58, 59, 59, 85, 94, 102, 73, 28, 48, 46, 48, 48, (2,135,163): 47, 47, 47, 46, 46, 45, 45, 45, 44, 44, 43, 43, 43, 44, (2,135,177): 44, 44, 44, 44, 44, 44, 44, 43, 42, 42, 41, 41, 42, 42, (2,135,191): 43, 43, 43, 44, 45, 44, 45, 46, 44, 43, 45, 49, 51, 54, (2,135,205): 52, 52, 49, 43, 45, 48, 50, 53, 55, 61, 63, 73, 84, 90, (2,135,219): 87, 77, 64, 47, 35, 44, 44, 44, (2,136,0): 86, 86, 86, 86, 86, 86, 86, 86, 87, 87, 87, 87, 87, 87, (2,136,14): 87, 87, 87, 87, 90, 91, 93, 92, 91, 87, 91, 87, 89, 96, (2,136,28): 103, 118, 147, 176, 201, 222, 243, 254, 255, 255, 255, (2,136,39): 249, 250, 246, 240, 235, 232, 227, 223, 216, 218, 212, (2,136,50): 209, 210, 209, 201, 200, 202, 205, 216, 227, 237, 243, (2,136,61): 250, 255, 255, 254, 252, 252, 252, 252, 252, 252, 252, (2,136,72): 252, 252, 252, 252, 252, 252, 252, 250, 250, 251, 253, (2,136,83): 255, 255, 255, 255, 255, 255, 251, 243, 238, 233, 226, (2,136,94): 217, 207, 105, 75, 58, 64, 71, 65, 58, 61, 50, 50, 51, (2,136,107): 47, 46, 45, 49, 52, 53, 55, 56, 56, 58, 58, 57, 56, 58, (2,136,121): 57, 57, 57, 56, 55, 55, 55, 50, 50, 51, 52, 52, 51, 51, (2,136,135): 50, 51, 49, 57, 57, 45, 40, 39, 30, 59, 55, 48, 50, 62, (2,136,149): 74, 68, 55, 60, 67, 90, 102, 85, 49, 35, 42, 47, 49, (2,136,162): 48, 48, 48, 47, 47, 47, 47, 47, 47, 46, 45, 45, 45, 44, (2,136,176): 48, 48, 47, 47, 46, 46, 46, 46, 43, 43, 43, 43, 43, 43, (2,136,190): 42, 42, 46, 45, 45, 44, 45, 44, 45, 45, 42, 44, 47, 50, (2,136,204): 54, 56, 60, 60, 50, 47, 45, 41, 42, 47, 56, 63, 71, 78, (2,136,218): 87, 84, 73, 59, 46, 42, 44, 43, 44, (2,137,0): 86, 86, 86, 86, 86, 86, 86, 86, 87, 87, 87, 87, 87, 87, (2,137,14): 87, 87, 87, 87, 90, 91, 93, 92, 91, 87, 90, 86, 89, 96, (2,137,28): 105, 120, 150, 180, 204, 224, 244, 255, 255, 255, 252, (2,137,39): 249, 250, 244, 239, 235, 230, 225, 221, 214, 209, 203, (2,137,50): 202, 204, 204, 201, 202, 206, 215, 222, 233, 242, 247, (2,137,61): 250, 253, 254, 252, 252, 252, 252, 252, 252, 252, 252, (2,137,72): 252, 252, 252, 252, 252, 252, 252, 252, 249, 249, 252, (2,137,83): 255, 255, 255, 255, 255, 255, 253, 246, 242, 239, 234, (2,137,94): 226, 215, 206, 149, 91, 67, 66, 68, 67, 64, 51, 52, 51, (2,137,107): 51, 51, 49, 49, 49, 56, 56, 57, 58, 57, 54, 55, 58, 56, (2,137,121): 56, 56, 55, 55, 54, 54, 54, 52, 53, 54, 54, 54, 54, 53, (2,137,135): 53, 57, 50, 55, 56, 43, 36, 37, 33, 52, 50, 44, 42, 49, (2,137,149): 63, 67, 66, 61, 74, 94, 95, 73, 44, 37, 47, 49, 50, 50, (2,137,163): 50, 49, 49, 49, 49, 49, 49, 49, 48, 48, 47, 47, 47, 49, (2,137,177): 49, 49, 48, 48, 48, 47, 47, 45, 45, 44, 44, 43, 43, 42, (2,137,191): 42, 42, 42, 41, 41, 41, 42, 42, 43, 45, 44, 45, 47, 51, (2,137,205): 54, 62, 63, 56, 53, 49, 46, 43, 46, 50, 54, 68, 75, 84, (2,137,219): 82, 75, 60, 50, 44, 44, 45, 44, (2,138,0): 86, 86, 86, 86, 86, 86, 86, 86, 87, 87, 87, 87, 87, 87, (2,138,14): 87, 87, 87, 87, 90, 91, 93, 92, 91, 87, 88, 86, 89, 97, (2,138,28): 105, 121, 153, 184, 208, 226, 246, 255, 255, 254, 252, (2,138,39): 248, 247, 243, 237, 233, 228, 222, 216, 209, 201, 194, (2,138,50): 193, 198, 200, 203, 207, 215, 225, 234, 241, 247, 250, (2,138,61): 251, 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, (2,138,72): 252, 252, 252, 252, 252, 252, 252, 252, 250, 250, 253, (2,138,83): 253, 254, 255, 255, 254, 255, 252, 247, 245, 246, 242, (2,138,94): 236, 227, 214, 219, 208, 166, 105, 66, 60, 71, 72, 62, (2,138,106): 50, 42, 42, 45, 51, 54, 52, 51, 52, 57, 56, 53, 55, 62, (2,138,120): 52, 52, 52, 52, 51, 51, 51, 51, 53, 54, 54, 55, 55, 54, (2,138,134): 53, 53, 59, 49, 55, 64, 51, 38, 40, 43, 44, 46, 42, 37, (2,138,148): 37, 50, 65, 75, 69, 84, 97, 83, 57, 37, 40, 51, 50, 52, (2,138,162): 52, 52, 51, 51, 51, 50, 52, 52, 51, 51, 51, 50, 50, 50, (2,138,176): 52, 51, 51, 51, 50, 50, 50, 49, 47, 47, 46, 45, 44, 43, (2,138,190): 42, 42, 40, 40, 40, 40, 40, 41, 42, 43, 48, 46, 43, 43, (2,138,204): 46, 52, 60, 64, 61, 58, 55, 51, 45, 43, 42, 44, 61, 68, (2,138,218): 77, 77, 72, 60, 52, 47, 46, 46, 45, (2,139,0): 85, 85, 86, 86, 86, 86, 87, 87, 87, 87, 87, 87, 87, 87, (2,139,14): 87, 87, 87, 87, 90, 91, 93, 92, 91, 87, 88, 86, 89, 96, (2,139,28): 104, 119, 152, 185, 208, 227, 246, 255, 255, 254, 253, (2,139,39): 249, 246, 241, 237, 231, 226, 220, 213, 206, 192, 187, (2,139,50): 188, 194, 199, 205, 217, 224, 239, 245, 250, 253, 252, (2,139,61): 250, 250, 251, 252, 252, 252, 252, 252, 252, 252, 252, (2,139,72): 252, 252, 252, 252, 252, 252, 252, 252, 253, 253, 253, (2,139,83): 253, 253, 254, 253, 250, 251, 250, 248, 249, 248, 248, (2,139,94): 244, 238, 237, 228, 219, 219, 217, 188, 121, 60, 54, 53, (2,139,106): 53, 57, 59, 54, 45, 38, 64, 58, 56, 58, 56, 48, 45, 49, (2,139,120): 51, 51, 51, 51, 50, 50, 50, 50, 52, 53, 53, 53, 53, 52, (2,139,134): 52, 51, 54, 47, 63, 83, 72, 52, 48, 51, 42, 45, 42, 38, (2,139,148): 35, 44, 58, 70, 81, 92, 94, 70, 46, 37, 43, 49, 51, 53, (2,139,162): 53, 52, 52, 51, 51, 51, 53, 52, 52, 52, 52, 52, 52, 52, (2,139,176): 54, 54, 54, 53, 53, 53, 52, 52, 50, 50, 48, 47, 46, 44, (2,139,190): 43, 43, 42, 42, 41, 41, 42, 43, 44, 44, 47, 45, 42, 42, (2,139,204): 46, 49, 57, 58, 61, 59, 59, 54, 49, 44, 40, 39, 53, 59, (2,139,218): 67, 69, 66, 59, 52, 48, 47, 47, 46, (2,140,0): 85, 85, 85, 86, 86, 87, 87, 87, 87, 87, 87, 87, 87, 87, (2,140,14): 87, 87, 87, 87, 90, 91, 93, 92, 91, 87, 88, 87, 90, 95, (2,140,28): 101, 116, 149, 183, 206, 226, 245, 253, 255, 254, 253, (2,140,39): 250, 248, 243, 241, 235, 229, 222, 214, 204, 191, 185, (2,140,50): 185, 190, 200, 209, 223, 237, 248, 251, 255, 255, 254, (2,140,61): 251, 249, 249, 252, 252, 252, 252, 252, 252, 252, 252, (2,140,72): 252, 252, 252, 252, 252, 252, 252, 254, 255, 255, 255, (2,140,83): 255, 254, 251, 250, 248, 246, 247, 247, 249, 251, 251, (2,140,94): 250, 248, 234, 243, 244, 241, 235, 228, 210, 188, 163, (2,140,105): 135, 97, 67, 53, 53, 57, 60, 55, 51, 50, 53, 57, 58, (2,140,118): 59, 59, 49, 49, 49, 49, 49, 49, 49, 51, 54, 54, 54, 54, (2,140,132): 54, 53, 52, 51, 51, 50, 77, 102, 90, 64, 52, 51, 42, (2,140,145): 43, 43, 43, 40, 42, 47, 54, 91, 94, 86, 61, 46, 44, 46, (2,140,159): 45, 51, 53, 53, 52, 52, 51, 51, 51, 52, 52, 52, 52, 52, (2,140,173): 52, 52, 52, 56, 56, 56, 55, 55, 55, 54, 54, 53, 52, 51, (2,140,187): 50, 49, 47, 46, 46, 46, 46, 45, 44, 44, 45, 46, 46, 45, (2,140,201): 45, 45, 45, 49, 49, 54, 52, 57, 57, 60, 58, 54, 47, 44, (2,140,215): 42, 46, 52, 60, 63, 62, 55, 50, 45, 46, 45, 44, (2,141,0): 84, 84, 85, 86, 86, 87, 88, 88, 87, 87, 87, 87, 87, 87, (2,141,14): 87, 87, 87, 87, 90, 91, 93, 92, 91, 87, 88, 87, 90, 95, (2,141,28): 99, 114, 148, 183, 209, 228, 246, 254, 255, 254, 253, (2,141,39): 250, 248, 244, 243, 239, 232, 224, 213, 204, 189, 181, (2,141,50): 180, 186, 197, 209, 227, 243, 253, 255, 255, 255, 252, (2,141,61): 249, 248, 249, 250, 252, 252, 252, 252, 252, 252, 252, (2,141,72): 252, 252, 252, 252, 252, 252, 252, 254, 255, 255, 255, (2,141,83): 255, 253, 250, 248, 245, 241, 244, 248, 250, 253, 254, (2,141,94): 255, 255, 252, 254, 250, 241, 240, 244, 241, 237, 230, (2,141,105): 220, 208, 189, 167, 141, 115, 99, 75, 76, 67, 50, 40, (2,141,117): 42, 44, 42, 50, 50, 50, 50, 51, 51, 51, 51, 55, 58, 58, (2,141,131): 57, 57, 56, 54, 54, 53, 57, 83, 103, 88, 63, 50, 44, (2,141,144): 43, 43, 43, 46, 44, 42, 42, 46, 92, 87, 77, 59, 54, 54, (2,141,158): 51, 45, 52, 53, 53, 53, 52, 52, 52, 52, 51, 51, 52, 52, (2,141,172): 52, 52, 53, 53, 57, 57, 57, 57, 56, 56, 56, 55, 55, 55, (2,141,186): 54, 53, 52, 51, 50, 50, 48, 47, 46, 45, 44, 44, 44, 44, (2,141,200): 44, 45, 48, 49, 50, 50, 50, 45, 49, 51, 55, 58, 55, 52, (2,141,214): 49, 48, 45, 48, 54, 58, 57, 54, 50, 45, 45, 45, 44, (2,142,0): 84, 84, 85, 86, 86, 87, 88, 88, 87, 87, 87, 87, 87, 87, (2,142,14): 87, 87, 87, 87, 90, 91, 93, 92, 91, 87, 87, 86, 90, 95, (2,142,28): 100, 115, 151, 187, 216, 234, 251, 255, 255, 254, 253, (2,142,39): 249, 245, 242, 240, 236, 230, 221, 208, 199, 185, 179, (2,142,50): 176, 180, 191, 207, 227, 242, 254, 255, 255, 255, 252, (2,142,61): 249, 247, 248, 250, 252, 252, 252, 252, 252, 252, 252, (2,142,72): 252, 252, 252, 252, 252, 252, 252, 254, 255, 255, 255, (2,142,83): 254, 250, 248, 243, 240, 238, 242, 246, 250, 254, 255, (2,142,94): 255, 255, 255, 255, 255, 255, 255, 249, 240, 233, 241, (2,142,105): 239, 237, 237, 234, 229, 223, 218, 209, 208, 180, 120, (2,142,116): 71, 56, 53, 48, 50, 50, 50, 51, 51, 52, 52, 54, 56, 58, (2,142,130): 58, 58, 57, 56, 55, 54, 55, 59, 76, 84, 67, 52, 48, 43, (2,142,144): 46, 46, 47, 50, 47, 44, 49, 58, 82, 75, 70, 64, 65, 62, (2,142,158): 57, 51, 53, 55, 55, 55, 54, 54, 54, 53, 52, 52, 52, 53, (2,142,172): 53, 54, 54, 54, 58, 58, 58, 57, 57, 56, 56, 56, 57, 57, (2,142,186): 56, 56, 55, 55, 54, 54, 53, 51, 50, 48, 46, 45, 46, 46, (2,142,200): 47, 47, 48, 49, 51, 51, 50, 45, 42, 45, 50, 55, 55, 52, (2,142,214): 50, 50, 47, 49, 54, 58, 57, 55, 51, 46, 46, 45, 44, (2,143,0): 82, 82, 83, 84, 86, 87, 88, 88, 87, 87, 87, 87, 87, 87, (2,143,14): 87, 87, 87, 87, 89, 91, 93, 92, 91, 87, 86, 87, 90, 96, (2,143,28): 103, 117, 157, 194, 222, 239, 255, 255, 255, 254, 250, (2,143,39): 246, 238, 237, 233, 229, 225, 215, 202, 195, 184, 177, (2,143,50): 172, 177, 188, 204, 224, 242, 254, 255, 255, 255, 251, (2,143,61): 249, 249, 250, 252, 252, 252, 252, 252, 252, 252, 252, (2,143,72): 252, 252, 252, 252, 252, 252, 252, 254, 255, 255, 255, (2,143,83): 253, 251, 247, 244, 241, 240, 242, 246, 250, 251, 252, (2,143,94): 255, 255, 255, 255, 255, 255, 255, 252, 251, 250, 240, (2,143,105): 238, 236, 234, 231, 231, 234, 234, 219, 228, 197, 119, (2,143,116): 55, 41, 47, 47, 51, 51, 52, 52, 53, 53, 54, 56, 55, 57, (2,143,130): 57, 56, 55, 54, 53, 52, 53, 56, 65, 60, 44, 40, 46, 42, (2,143,144): 46, 47, 50, 50, 48, 46, 59, 78, 73, 69, 67, 70, 71, 66, (2,143,158): 59, 56, 52, 53, 53, 54, 54, 54, 55, 55, 53, 53, 53, 54, (2,143,172): 54, 55, 55, 55, 57, 57, 58, 56, 57, 55, 56, 55, 58, 57, (2,143,186): 58, 57, 57, 56, 57, 57, 56, 57, 52, 50, 48, 46, 47, 47, (2,143,200): 49, 49, 46, 46, 43, 42, 41, 37, 30, 33, 43, 49, 54, 53, (2,143,214): 53, 53, 50, 51, 53, 54, 56, 53, 48, 45, 45, 46, 45, (2,144,0): 78, 79, 80, 81, 85, 86, 87, 88, 85, 85, 86, 86, 86, 87, (2,144,14): 89, 88, 87, 88, 91, 93, 94, 91, 88, 85, 85, 86, 90, 93, (2,144,28): 103, 127, 172, 208, 228, 240, 253, 255, 251, 251, 248, (2,144,39): 243, 235, 235, 230, 221, 217, 214, 201, 189, 189, 175, (2,144,50): 164, 169, 180, 196, 215, 231, 251, 255, 255, 255, 255, (2,144,61): 253, 250, 251, 254, 254, 254, 254, 254, 254, 252, 252, (2,144,72): 253, 253, 251, 250, 250, 249, 249, 249, 255, 254, 253, (2,144,83): 253, 255, 253, 252, 248, 250, 246, 247, 250, 248, 244, (2,144,94): 243, 249, 255, 255, 255, 255, 255, 252, 252, 253, 255, (2,144,105): 255, 253, 249, 242, 237, 234, 232, 223, 230, 202, 114, (2,144,116): 53, 51, 47, 45, 49, 49, 49, 49, 50, 50, 52, 52, 50, 53, (2,144,130): 53, 54, 55, 54, 54, 53, 54, 52, 45, 39, 38, 42, 43, 41, (2,144,144): 48, 47, 41, 40, 52, 67, 68, 62, 63, 66, 68, 70, 69, 66, (2,144,158): 62, 59, 51, 49, 48, 48, 49, 50, 53, 54, 54, 54, 54, 54, (2,144,172): 52, 52, 52, 52, 55, 54, 56, 53, 55, 54, 56, 55, 57, 55, (2,144,186): 56, 55, 58, 57, 60, 61, 58, 57, 56, 52, 48, 46, 46, 48, (2,144,200): 48, 49, 47, 45, 41, 38, 39, 39, 43, 44, 49, 52, 56, 57, (2,144,214): 59, 57, 54, 55, 60, 59, 60, 59, 52, 44, 44, 43, 40, (2,145,0): 77, 78, 80, 81, 83, 84, 88, 88, 86, 86, 87, 87, 87, 88, (2,145,14): 90, 89, 88, 88, 91, 93, 94, 91, 90, 86, 87, 86, 93, 98, (2,145,28): 110, 136, 178, 209, 227, 238, 253, 255, 253, 249, 245, (2,145,39): 239, 236, 231, 226, 216, 211, 206, 196, 184, 175, 166, (2,145,50): 160, 166, 181, 196, 214, 228, 254, 255, 255, 255, 255, (2,145,61): 255, 253, 253, 254, 254, 254, 254, 254, 254, 252, 252, (2,145,72): 253, 253, 250, 250, 250, 249, 248, 248, 253, 252, 253, (2,145,83): 253, 255, 255, 254, 253, 253, 251, 249, 241, 229, 219, (2,145,94): 222, 234, 253, 255, 254, 253, 251, 250, 254, 255, 255, (2,145,105): 255, 255, 252, 244, 236, 231, 229, 223, 231, 202, 112, (2,145,116): 51, 50, 46, 45, 47, 47, 49, 49, 50, 50, 52, 52, 50, 50, (2,145,130): 53, 54, 55, 54, 54, 53, 53, 49, 45, 39, 40, 43, 44, 43, (2,145,144): 43, 42, 51, 60, 64, 60, 58, 57, 61, 62, 65, 66, 66, 65, (2,145,158): 61, 60, 54, 52, 51, 48, 49, 50, 52, 54, 54, 54, 54, 54, (2,145,172): 52, 52, 50, 50, 55, 54, 54, 53, 53, 54, 54, 55, 55, 55, (2,145,186): 55, 55, 56, 57, 58, 59, 63, 62, 59, 55, 53, 51, 51, 54, (2,145,200): 55, 54, 52, 45, 41, 42, 47, 49, 59, 59, 61, 62, 63, 61, (2,145,214): 58, 56, 57, 60, 65, 65, 67, 64, 57, 48, 42, 42, 39, (2,146,0): 77, 78, 80, 82, 83, 85, 88, 89, 88, 88, 89, 89, 88, 89, (2,146,14): 91, 90, 88, 89, 91, 92, 94, 91, 90, 86, 87, 84, 90, 99, (2,146,28): 115, 142, 179, 205, 223, 235, 252, 255, 253, 248, 242, (2,146,39): 235, 231, 224, 216, 204, 198, 192, 183, 173, 164, 161, (2,146,50): 163, 173, 191, 206, 222, 234, 254, 255, 255, 255, 255, (2,146,61): 255, 253, 254, 254, 254, 254, 254, 254, 254, 252, 252, (2,146,72): 253, 252, 250, 250, 249, 249, 248, 248, 253, 251, 252, (2,146,83): 253, 254, 255, 254, 253, 253, 251, 250, 236, 216, 204, (2,146,94): 212, 230, 253, 255, 254, 253, 251, 250, 254, 255, 255, (2,146,105): 255, 255, 252, 244, 236, 231, 229, 224, 231, 201, 109, (2,146,116): 48, 48, 46, 46, 46, 47, 49, 50, 51, 50, 52, 51, 50, 50, (2,146,130): 53, 53, 55, 54, 55, 54, 54, 49, 47, 42, 44, 46, 49, 50, (2,146,144): 48, 52, 73, 90, 83, 61, 51, 52, 56, 57, 59, 60, 61, 62, (2,146,158): 62, 63, 61, 58, 57, 53, 53, 53, 53, 54, 54, 54, 54, 54, (2,146,172): 52, 52, 50, 50, 55, 55, 54, 54, 54, 54, 55, 55, 55, 55, (2,146,186): 55, 55, 56, 57, 59, 59, 66, 65, 63, 59, 58, 56, 57, 60, (2,146,200): 62, 59, 55, 49, 47, 51, 61, 66, 74, 74, 72, 69, 64, 58, (2,146,214): 53, 50, 56, 61, 68, 71, 74, 70, 62, 53, 46, 46, 43, (2,147,0): 77, 78, 80, 82, 84, 86, 89, 90, 90, 90, 91, 90, 90, 90, (2,147,14): 92, 91, 89, 89, 91, 92, 93, 91, 90, 87, 85, 80, 85, 96, (2,147,28): 116, 142, 173, 194, 218, 231, 250, 255, 252, 245, 237, (2,147,39): 228, 221, 211, 201, 190, 184, 178, 170, 163, 168, 171, (2,147,50): 179, 192, 211, 225, 239, 248, 255, 255, 255, 255, 255, (2,147,61): 254, 253, 254, 254, 254, 254, 254, 254, 254, 252, 252, (2,147,72): 252, 252, 250, 249, 249, 249, 247, 247, 252, 250, 251, (2,147,83): 252, 254, 255, 254, 253, 251, 251, 250, 237, 218, 208, (2,147,94): 217, 235, 253, 255, 254, 253, 251, 250, 254, 255, 255, (2,147,105): 255, 255, 252, 244, 236, 230, 228, 227, 233, 201, 108, (2,147,116): 48, 48, 48, 48, 46, 47, 50, 50, 51, 50, 51, 50, 50, 50, (2,147,130): 52, 52, 54, 54, 56, 55, 56, 51, 50, 48, 50, 51, 55, 60, (2,147,144): 71, 82, 105, 116, 106, 83, 65, 57, 55, 54, 55, 54, 56, (2,147,157): 59, 60, 62, 62, 60, 60, 56, 56, 56, 55, 56, 54, 54, 54, (2,147,171): 54, 52, 52, 50, 50, 56, 55, 54, 54, 54, 54, 55, 56, 56, (2,147,185): 55, 55, 56, 56, 58, 59, 60, 63, 62, 61, 57, 57, 56, 57, (2,147,199): 61, 61, 59, 55, 49, 47, 53, 63, 69, 69, 70, 69, 65, 59, (2,147,213): 52, 47, 44, 50, 56, 66, 71, 75, 71, 62, 51, 48, 47, 44, (2,148,0): 77, 78, 80, 82, 84, 86, 90, 91, 92, 91, 92, 91, 90, 90, (2,148,14): 93, 91, 89, 89, 90, 91, 92, 90, 90, 87, 86, 80, 84, 96, (2,148,28): 116, 140, 167, 184, 213, 228, 247, 253, 249, 242, 233, (2,148,39): 223, 214, 201, 191, 182, 177, 171, 165, 161, 174, 182, (2,148,50): 194, 208, 225, 239, 251, 255, 255, 255, 255, 255, 255, (2,148,61): 254, 253, 255, 254, 254, 254, 254, 254, 254, 252, 252, (2,148,72): 252, 252, 249, 249, 249, 248, 247, 247, 251, 249, 251, (2,148,83): 252, 254, 255, 254, 253, 251, 249, 249, 241, 229, 220, (2,148,94): 225, 238, 253, 255, 254, 253, 251, 250, 254, 255, 255, (2,148,105): 255, 255, 252, 245, 236, 230, 227, 229, 235, 202, 109, (2,148,116): 49, 50, 50, 51, 46, 47, 51, 51, 52, 50, 50, 49, 50, 50, (2,148,130): 52, 52, 54, 54, 56, 57, 58, 53, 54, 54, 55, 55, 61, 68, (2,148,144): 98, 115, 131, 129, 121, 111, 90, 65, 56, 54, 53, 51, (2,148,156): 52, 55, 57, 59, 60, 58, 59, 56, 58, 58, 57, 58, 54, 54, (2,148,170): 54, 54, 52, 52, 50, 50, 56, 56, 55, 54, 54, 55, 56, 56, (2,148,184): 56, 56, 56, 56, 57, 58, 59, 60, 61, 60, 59, 55, 55, 54, (2,148,198): 56, 59, 58, 57, 54, 49, 47, 51, 59, 63, 63, 64, 64, 61, (2,148,212): 54, 47, 43, 42, 45, 52, 64, 69, 74, 70, 60, 49, 42, 42, (2,148,226): 39 } ATTRIBUTE "CLASS" { DATATYPE H5T_STRING { STRSIZE 5; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "IMAGE" } } ATTRIBUTE "IMAGE_MINMAXRANGE" { DATATYPE H5T_STD_U8LE DATASPACE SIMPLE { ( 2 ) / ( 2 ) } DATA { (0): 0, 255 } } ATTRIBUTE "IMAGE_SUBCLASS" { DATATYPE H5T_STRING { STRSIZE 16; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "IMAGE_TRUECOLOR\000" } } ATTRIBUTE "IMAGE_VERSION" { DATATYPE H5T_STRING { STRSIZE 3; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "1.2" } } ATTRIBUTE "INTERLACE_MODE" { DATATYPE H5T_STRING { STRSIZE 15; STRPAD H5T_STR_NULLPAD; CSET H5T_CSET_ASCII; CTYPE H5T_C_S1; } DATASPACE SIMPLE { ( 1 ) / ( 1 ) } DATA { (0): "INTERLACE_PLANE" } } } } } } hdf-java-2.11.0/config/0000755002344600011330000000000012441355011013012 5ustar byrnhdfhdf-java-2.11.0/config/config.guess0000755002344600011330000004763007403742116015354 0ustar byrnhdf#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 93, 94, 95, 1996 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Written by Per Bothner . # The master version of this file is at the FSF in /home/gd/gnu/lib. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit system type (host/target name). # # Only a few systems have been added to this list; please add others # (but try to keep the structure clean). # # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@@noc.rutgers.edu 8/24/94.) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown trap 'rm -f dummy.c dummy.o dummy; exit 1' 1 2 15 # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in alpha:OSF1:*:*) # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//'` exit 0 ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit 0 ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-cbm-sysv4 exit 0;; amiga:NetBSD:*:*) echo m68k-cbm-netbsd${UNAME_RELEASE} exit 0 ;; amiga:OpenBSD:*:*) echo m68k-cbm-openbsd${UNAME_RELEASE} exit 0 ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit 0;; Pyramid*:OSx*:*:*|MIS*:OSx*:*:*) # akee@@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit 0 ;; NILE:*:*:dcosx) echo pyramid-pyramid-svr4 exit 0 ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; i86pc:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit 0 ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit 0 ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit 0 ;; atari*:NetBSD:*:*) echo m68k-atari-netbsd${UNAME_RELEASE} exit 0 ;; atari*:OpenBSD:*:*) echo m68k-atari-openbsd${UNAME_RELEASE} exit 0 ;; sun3*:NetBSD:*:*) echo m68k-sun-netbsd${UNAME_RELEASE} exit 0 ;; sun3*:OpenBSD:*:*) echo m68k-sun-openbsd${UNAME_RELEASE} exit 0 ;; mac68k:NetBSD:*:*) echo m68k-apple-netbsd${UNAME_RELEASE} exit 0 ;; mac68k:OpenBSD:*:*) echo m68k-apple-openbsd${UNAME_RELEASE} exit 0 ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit 0 ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit 0 ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit 0 ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit 0 ;; mips:*:*:UMIPS | mips:*:*:RISCos) sed 's/^ //' << EOF >dummy.c int main (argc, argv) int argc; char **argv; { #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF ${CC-cc} dummy.c -o dummy \ && ./dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ && rm dummy.c dummy && exit 0 rm -f dummy.c dummy echo mips-mips-riscos${UNAME_RELEASE} exit 0 ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit 0 ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit 0 ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit 0 ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit 0 ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 -o $UNAME_PROCESSOR = mc88110 ] ; then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx \ -o ${TARGET_BINARY_INTERFACE}x = x ] ; then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit 0 ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit 0 ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit 0 ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit 0 ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit 0 ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit 0 ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i?86:AIX:*:*) echo i386-ibm-aix exit 0 ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then sed 's/^ //' << EOF >dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0 rm -f dummy.c dummy echo rs6000-ibm-aix3.2.5 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit 0 ;; *:AIX:*:4) if /usr/sbin/lsattr -EHl proc0 | grep POWER >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=4.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit 0 ;; *:AIX:*:*) echo rs6000-ibm-aix exit 0 ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit 0 ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC NetBSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit 0 ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit 0 ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit 0 ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit 0 ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit 0 ;; 9000/[3478]??:HP-UX:*:*) case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/7?? | 9000/8?[1679] ) HP_ARCH=hppa1.1 ;; 9000/8?? ) HP_ARCH=hppa1.0 ;; esac HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit 0 ;; 3050*:HI-UX:*:*) sed 's/^ //' << EOF >dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF ${CC-cc} dummy.c -o dummy && ./dummy && rm dummy.c dummy && exit 0 rm -f dummy.c dummy echo unknown-hitachi-hiuxwe2 exit 0 ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit 0 ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit 0 ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit 0 ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit 0 ;; i?86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit 0 ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit 0 ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit 0 ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit 0 ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit 0 ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit 0 ;; CRAY*X-MP:*:*:*) echo xmp-cray-unicos exit 0 ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} exit 0 ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ exit 0 ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} exit 0 ;; CRAY-2:*:*:*) echo cray2-cray-unicos exit 0 ;; F300:UNIX_System_V:*:*) FUJITSU_SYS=`uname -p | tr [A-Z] [a-z] | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "f300-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit 0 ;; F301:UNIX_System_V:*:*) echo f301-fujitsu-uxpv`echo $UNAME_RELEASE | sed 's/ .*//'` exit 0 ;; hp3[0-9][05]:NetBSD:*:*) echo m68k-hp-netbsd${UNAME_RELEASE} exit 0 ;; hp3[0-9][05]:OpenBSD:*:*) echo m68k-hp-openbsd${UNAME_RELEASE} exit 0 ;; i?86:BSD/386:*:* | *:BSD/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit 0 ;; *:FreeBSD:*:*) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit 0 ;; *:NetBSD:*:*) echo ${UNAME_MACHINE}-unknown-netbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` exit 0 ;; *:OpenBSD:*:*) echo ${UNAME_MACHINE}-unknown-openbsd`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` exit 0 ;; i*:CYGWIN*:*) echo i386-pc-cygwin32 exit 0 ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin32 exit 0 ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; *:GNU:*:*) echo `echo ${UNAME_MACHINE}|sed -e 's,/.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; *:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. ld_help_string=`ld --help 2>&1` if echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf_i.86"; then echo "${UNAME_MACHINE}-pc-linux-gnu" ; exit 0 elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i.86linux"; then echo "${UNAME_MACHINE}-pc-linux-gnuaout" ; exit 0 elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: i.86coff"; then echo "${UNAME_MACHINE}-pc-linux-gnucoff" ; exit 0 elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68kelf"; then echo "${UNAME_MACHINE}-unknown-linux-gnu" ; exit 0 elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: m68klinux"; then echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 elif echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations: elf32ppc"; then echo "powerpc-unknown-linux-gnu" ; exit 0 elif test "${UNAME_MACHINE}" = "alpha" ; then echo alpha-unknown-linux-gnu ; exit 0 elif test "${UNAME_MACHINE}" = "sparc" ; then echo sparc-unknown-linux-gnu ; exit 0 else # Either a pre-BFD a.out linker (linux-gnuoldld) or one that does not give us # useful --help. Gcc wants to distinguish between linux-gnuoldld and linux-gnuaout. test ! -d /usr/lib/ldscripts/. \ && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0 # Determine whether the default compiler is a.out or elf cat >dummy.c </dev/null && ./dummy "${UNAME_MACHINE}" && rm dummy.c dummy && exit 0 rm -f dummy.c dummy fi ;; # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions # are messed up and put the nodename in both sysname and nodename. i?86:DYNIX/ptx:4*:*) echo i386-sequent-sysv4 exit 0 ;; i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*) if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE} fi exit 0 ;; i?86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit 0 ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit 0 ;; paragon:*:*:*) echo i860-intel-osf1 exit 0 ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit 0 ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit 0 ;; M68*:*:R3V[567]*:*) test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; 3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4.3${OS_REL} && exit 0 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4 && exit 0 ;; m68*:LynxOS:2.*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit 0 ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit 0 ;; i?86:LynxOS:2.*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit 0 ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; rs6000:LynxOS:2.*:* | PowerPC:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit 0 ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit 0 ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit 0 ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit 0 ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit 0 ;; *:*:*:FTX*) # From seanf@@swdc.stratus.com. echo i860-stratus-sysv4 exit 0 ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit 0 ;; R3000:*System_V*:*:* | R4000:UNIX_SYSV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit 0 ;; PENTIUM:CPunix:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 cat >dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) #if !defined (ultrix) printf ("vax-dec-bsd\n"); exit (0); #else printf ("vax-dec-ultrix\n"); exit (0); #endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF ${CC-cc} dummy.c -o dummy 2>/dev/null && ./dummy && rm dummy.c dummy && exit 0 rm -f dummy.c dummy # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit 0 ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; c34*) echo c34-convex-bsd exit 0 ;; c38*) echo c38-convex-bsd exit 0 ;; c4*) echo c4-convex-bsd exit 0 ;; esac fi #echo '(Unable to guess system type)' 1>&2 exit 1 hdf-java-2.11.0/config/config.sub0000755002344600011330000004612110401624211014774 0ustar byrnhdf#! /bin/sh # Configuration validation subroutine script, version 1.1. # Copyright (C) 1991, 92, 93, 94, 95, 1996 Free Software Foundation, Inc. # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. if [ x$1 = x ] then echo Configuration name missing. 1>&2 echo "Usage: $0 CPU-MFR-OPSYS" 1>&2 echo "or $0 ALIAS" 1>&2 echo where ALIAS is a recognized configuration type. 1>&2 exit 1 fi # First pass through any local machine types. case $1 in *local*) echo $1 exit 0 ;; *) ;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in linux-gnu*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple) os= basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco5) os=sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. tahoe | i860 | m68k | m68000 | m88k | ns32k | arm \ | arme[lb] | pyramid \ | tron | a29k | 580 | i960 | h8300 | hppa | hppa1.0 | hppa1.1 \ | alpha | we32k | ns16k | clipper | i370 | sh \ | powerpc | powerpcle | 1750a | dsp16xx | mips64 | mipsel \ | pdp11 | mips64el | mips64orion | mips64orionel \ | sparc | sparclet | sparclite | sparc64) basic_machine=$basic_machine-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i[3456]86) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. vax-* | tahoe-* | i[3456]86-* | i860-* | m68k-* | m68000-* | m88k-* \ | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \ | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* | power-* \ | none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \ | hppa-* | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \ | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \ | pdp11-* | sh-* | powerpc-* | powerpcle-* | sparc64-* | mips64-* | mipsel-* \ | mips64el-* | mips64orion-* | mips64orionel-* | f301-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-cbm ;; amigados) basic_machine=m68k-cbm os=-amigados ;; amigaunix | amix) basic_machine=m68k-cbm os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | ymp) basic_machine=ymp-cray os=-unicos ;; cray2) basic_machine=cray2-cray os=-unicos ;; [ctj]90-cray) basic_machine=c90-cray os=-unicos ;; crds | unos) basic_machine=m68k-crds ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; i370-ibm* | ibm*) basic_machine=i370-ibm os=-mvs ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i[3456]86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i[3456]86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i[3456]86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i[3456]86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; miniframe) basic_machine=m68000-convergent ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; np1) basic_machine=np1-gould ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5) basic_machine=i586-intel ;; pentiumpro | p6) basic_machine=i686-intel ;; pentium-* | p5-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; k5) # We don't have specific support for AMD's K5 yet, so just call it a Pentium basic_machine=i586-amd ;; nexen) # We don't have specific support for Nexgen yet, so just call it a Pentium basic_machine=i586-nexgen ;; pn) basic_machine=pn-gould ;; power) basic_machine=rs6000-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; symmetry) basic_machine=i386-sequent os=-dynix ;; tower | tower-32) basic_machine=m68k-ncr ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; xmp) basic_machine=xmp-cray os=-unicos ;; xps | xps100) basic_machine=xps100-honeywell ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. mips) basic_machine=mips-mips ;; romp) basic_machine=romp-ibm ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sparc) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; # Added for the case of a 64-bit architecture machine # -- Stephen Aiken 2005.08.29 x86_64-pc) basic_machine=x86_64-pc ;; # Added for the case of a 64-bit IA architecture machine # -- Peter Cao 2006.03.02 ia64-pc) basic_machine=ia64-pc ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -unixware* | svr4*) os=-sysv4 ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigados* | -msdos* | -newsos* | -unicos* | -aof* | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -cygwin32* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -linux-gnu* | -uxpv*) # Remember, each alternative MUST END IN *, to match a version number. ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -ctix* | -uts*) os=-sysv ;; -ns2 ) os=-nextstep2 ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -xenix) os=-xenix ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in *-acorn) os=-riscix1.2 ;; arm*-semi) os=-aout ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-ibm) os=-aix ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigados ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f301-fujitsu) os=-uxpv ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -hpux*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs*) vendor=ibm ;; -ptx*) vendor=sequent ;; -vxsim* | -vxworks*) vendor=wrs ;; -aux*) vendor=apple ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os hdf-java-2.11.0/config/cmake_ext_mod/0000755002344600011330000000000012441355011015611 5ustar byrnhdfhdf-java-2.11.0/config/cmake_ext_mod/HDFCXXTests.cpp0000644002344600011330000000115112401656217020332 0ustar byrnhdf #ifdef OLD_HEADER_FILENAME #include int main(void) { return 0; } #endif #ifdef HDF_NO_NAMESPACE namespace HDF { int fnord; } int main(void) { using namespace HDF; fnord = 37; return 0; } #endif #ifdef HDF_NO_STD #include using namespace std; int main(void) { string myString("testing namespace std"); return 0; } #endif #ifdef BOOL_NOTDEFINED int main(void) { bool flag; return 0; } #endif #ifdef NO_STATIC_CAST int main(void) { float test_float; int test_int; test_float = 37.0; test_int = static_cast (test_float); return 0; } #endif hdf-java-2.11.0/config/cmake_ext_mod/hdf.icns0000644002344600011330000117457412437404707017267 0ustar byrnhdfMM*æ€?à@$ „BaP¸þˆD`°Ø”V-Y­ßâ0H"ƒ9ºéþþ‡@Pø þ~€A˜ 1àu;ÑGÐD”|žNO`&ûà0 ¡Ò°üC’±+@òi ¡Ž!ˆ*2éB& dX‰ªÛ|¥•.gkÉøû}?Í%€¹¬²‚¿_¯ð@!©Ïe±bÂ,‚¢Õ t2™¦ßT‚ C1°î(—îgsÙd‹¸X`Òƒ ƒÁ€ˆ&ªq;/'³å˜‚9†‚ è)‰6©V2š@ÈGh |¿ƒ1qS)Ð… È4*…à )^lˆ%˜‚@ lÒ¯G«lH</רÀ4‚H¼ áxä Øh5"Æ‘Øj …°ÔtžÇXôŽxb3¡`áJ ¡`Ü;ú |§ÁÂzqðw§IˆO$ø€ç™öy !PÔ9£¢ ” Àà# \; ¤é²MFXð€@(08# ð¸_ BøL0IRbaœæB„Ø §!êrÇIŠ àˆHÁØ‚˜1~á 8ƒ¨b\‹Ñ‰eFÒ:)HÒˆ*ÐÖÝæî(1ö=S‡s H icon_16x16.pngHHtiffutil v268.1 HLinomntrRGB XYZ Î 1acspMSFTIEC sRGBöÖÓ-HP cprtP3desc„lwtptðbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiømeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o¢8õXYZ b™·…ÚXYZ $ „¶ÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤þ_.ÏíÌ \žXYZ L VPWçmeassig CRT curv #(-27;@EJOTY^chmrw|†‹•šŸ¤©®²·¼ÁÆËÐÕÛàåëðöû %+28>ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ€?à@$ „BaP¸d6‚@Ÿñ¤V-‡Ä£¸ävHdQ¹ŽM'†Ie¹dªY/‘¨Õ/äêmþO)€Mæp ö«X¿ÒÉ—ûôŸDfèŽd0AA×³ÙØÀ –8 <£Âž¯` t÷r6¢`ˆ\NÉÄéÛ ñþÂL ²Ö¡0ˆ x<ŸâÒ#±Îê@ ÃÝü~ÄÀ 8R Öø5Åòù‰[¢b! ¶Ÿ¹{ø”­‰ù8SÅæþÛîG;ð  ÁLKõˆÍ{3¯gËéü ì7+ú'ؤϡ ¨Ds¶ÄÀžq¸¼²voûø Ž£‰¶ÍëÑú‹&‰Æt xšE`^ `:"a™§¡MœEé–w€JœÒŒÌ še`b À28 å¹ø:à8bàF hYäzŸ°È`gQî`)ˆK‡±œjƒŸm˜ÐE%!tp€S‰Ã§ø€†12 €¨Ž¢©Fù 0fb”þ!'ñúÃQVqGœ®Xœƒ rzÐ|:FñÐx€Ï[fÀP h‚¼ Þ#ÀÆG"OX(á(AÈQõ•¦A²yžçÈ€¥ñ/„@¸"‡E‰ˆA•†G"TH,‡X2¡ñÿP¢°pƒ ˜‚ƒƒˆôž£G©ò}Å‹“T‚§ ¨D—c˜à ¢[šf˜¸NÀX Þ+}¤ ’ {ŸgД…ehÒ5€Iè@?ŒÈ*äzŸgµŒÑ!W¬X (aÄ@F (qtlâéJGX²}{G²5z¡áò%¹R/(‘‚¥2€bð`%‚ HŠ. Šáp†bK%a`€h;Çô\Šá`€ËÈ}2çøÂV @h*‚„ĸ†Ì☱~-”€ ­)l¡ø|‰ÅhÆmÇ´Egà†¶T .†…%kºlà9b&”á&Áö=äTmòÄÌ( ` ‚iV `Â8•!Vè€`A\#•á$ÌÉúdF9(j’†AÐdd Qô~Ÿ30 ¬õÀad#–€ÈŽ£aYVxÝàWˆ¥ˆ?á¡Çôxi¡éŸ'gên&Ùžv™Æ±Þ5‹°üàaø=Â(£Xx aØ>Z%âÈ# W¼øÀ)@˜‚À0ú‹ž)ü}@À0BèÉC$ Ý+F…8ú>Ð à¤4…àJÂh¹ høuð Â8µ@( À`+Ahé㤠€,.BP»à%Û¡Ð=‡8C¡yÁç ‹Y`  p&@¸; œ1 & ‘Àõ"Ð!è8€à ‚è% Ð$À‘CŒ\Šaº)B` L…R(+Fø¬ã€WX\0F€lT #¼K‰¤*L ±R7…HV!X* ¬HIs}—DZ\˹|S¿˜Df`Ì9ŒB¥ìǘó&eL9™3eù  T Á (1(=S8‡s H>&Hicon_16x16@2x.png  tiffutil v268.1 HLinomntrRGB XYZ Î 1acspMSFTIEC sRGBöÖÓ-HP cprtP3desc„lwtptðbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiømeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o¢8õXYZ b™·…ÚXYZ $ „¶ÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤þ_.ÏíÌ \žXYZ L VPWçmeassig CRT curv #(-27;@EJOTY^chmrw|†‹•šŸ¤©®²·¼ÁÆËÐÕÛàåëðöû %+28>ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ€?à@$ „BaP¸d6‚@Ÿñ¤V-‡Ä£¸ävHdQ¹ŽM'†Ie¹dªY/‘¨Õ/äêmþO)€Mæp ö«X¿ÒÉ—ûôŸDfèŽd0AA×³ÙØÀ –8 <£Âž¯` t÷r6¢`ˆ\NÉÄéÛ ñþÂL ²Ö¡0ˆ x<ŸâÒ#±Îê@ ÃÝü~ÄÀ 8R Öø5Åòù‰[¢b! ¶Ÿ¹{ø”­‰ù8SÅæþÛîG;ð  ÁLKõˆÍ{3¯gËéü ì7+ú'ؤϡ ¨Ds¶ÄÀžq¸¼²voûø Ž£‰¶ÍëÑú‹&‰Æt xšE`^ `:"a™§¡MœEé–w€JœÒŒÌ še`b À28 å¹ø:à8bàF hYäzŸ°È`gQî`)ˆK‡±œjƒŸm˜ÐE%!tp€S‰Ã§ø€†12 €¨Ž¢©Fù 0fb”þ!'ñúÃQVqGœ®Xœƒ rzÐ|:FñÐx€Ï[fÀP h‚¼ Þ#ÀÆG"OX(á(AÈQõ•¦A²yžçÈ€¥ñ/„@¸"‡E‰ˆA•†G"TH,‡X2¡ñÿP¢°pƒ ˜‚ƒƒˆôž£G©ò}Å‹“T‚§ ¨D—c˜à ¢[šf˜¸NÀX Þ+}¤ ’ {ŸgД…ehÒ5€Iè@?ŒÈ*äzŸgµŒÑ!W¬X (aÄ@F (qtlâéJGX²}{G²5z¡áò%¹R/(‘‚¥2€bð`%‚ HŠ. Šáp†bK%a`€h;Çô\Šá`€ËÈ}2çøÂV @h*‚„ĸ†Ì☱~-”€ ­)l¡ø|‰ÅhÆmÇ´Egà†¶T .†…%kºlà9b&”á&Áö=äTmòÄÌ( ` ‚iV `Â8•!Vè€`A\#•á$ÌÉúdF9(j’†AÐdd Qô~Ÿ30 ¬õÀad#–€ÈŽ£aYVxÝàWˆ¥ˆ?á¡Çôxi¡éŸ'gên&Ùžv™Æ±Þ5‹°üàaø=Â(£Xx aØ>Z%âÈ# W¼øÀ)@˜‚À0ú‹ž)ü}@À0BèÉC$ Ý+F…8ú>Ð à¤4…àJÂh¹ høuð Â8µ@( À`+Ahé㤠€,.BP»à%Û¡Ð=‡8C¡yÁç ‹Y`  p&@¸; œ1 & ‘Àõ"Ð!è8€à ‚è% Ð$À‘CŒ\Šaº)B` L…R(+Fø¬ã€WX\0F€lT #¼K‰¤*L ±R7…HV!X* ¬HIs}—DZ\˹|S¿˜Df`Ì9ŒB¥ìǘó&eL9™3eù  '2'8!† Á'H'P(1'X=S'h‡s H'n=úicon_32x32.pngHHtiffutil v268.1 HLinomntrRGB XYZ Î 1acspMSFTIEC sRGBöÖÓ-HP cprtP3desc„lwtptðbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiømeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o¢8õXYZ b™·…ÚXYZ $ „¶ÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤þ_.ÏíÌ \žXYZ L VPWçmeassig CRT curv #(-27;@EJOTY^chmrw|†‹•šŸ¤©®²·¼ÁÆËÐÕÛàåëðöû %+28>ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ€?à@$ „BaP¸d6ˆDbQ8¤RÿŠÆcQ¸äv=…Åä9$–M'‡H¥¹d¶]•KæS9¤’c5œNgR˜î}?ŸMè:$²…E¤RcÔzU6¦SêU8=F©W§Õ«ºEj¹_ŸÅÚ Gú­\ÿ|>bm™6[€J±þëw?À@;â1 À%hV(-—oâ©müõwÁY ?rrvþQ,¿ÎxÅð¬_áˆ4`¨žêàš­<6þýB—E X<}5Oà0. û}  Uˆµ‘çæàzL}2|@~Î3¬¿ôâ¥Ë ñ>žÀ0œ <ÀwÀÒþú}€«0HèjÓ#ljæ…aéêsGø "ÈóÄñ¨›Ê×¾«H„k^ï6¨¹ø~&!`œžg¡þˆ§Âr 0 ‚:oð¤¯:+¢±ÄnˆÆ îzŸÁPR!)Ì ‡ëpa€˜p€ÉæzŸá€tœ',bÇ9þ{žíp€{&³oB«Cu °Ú{žÇðNh„lƒ>­j =@¨T ¨›Í”öŒIÇù‚TaÀ`ÊÒ b&œ‡Ì}ÆP“hÀCðœ4úð~GÁüÍ @V“¢0ÖÊ«J€"àœ@„Ú”O€$€BpˆÁ ²CHO†Fá{™H˜¤nU5À‚ gìøc•!`'QÚ~Gôb™Ç±pažfI¦zžõp€``˜PKX~O@@ šEˆJòª|†Æt˜ÉÀ~Oá¸\ã[‡èh,§Î}T+ýÊ~ŸøØP… bdG©,T%Yvv\ÎUfÖµÕÄûsà8 ¥)ø˜±ûkr XÉ|MÁ°XÊDZú ¦iÂsŸ5¨h…ñ0ë@r(]çxèH†±¾z TOAC·$á©Ó挄àf„Úvˆeâ0Õ5“ÖÑ–¤ lnìP{¸ÆcGIï²||o¢„˜n@‚4uÇȾAš%á˜uÛÔú†ÜÇð€F0„àödŸbQeƒQçùý–Dxz ”¬{ŸÈÐ^œGQì`;ñþêŸåÙúž²8xž§Ø–;˜Fq´w@Föˆè€?€`’BNZá>DSsÀ¹\ºA‚svGÇ ÷`è7 Wº=@+À;ËP‹‘àl#ÃHoŽðŠŹÕÌ\†0à€(0%‚`8æ‰Ø x…x^ËDHQÀ„ ’>?Á p„u7À}»Up"àAðj €¹%"la ‘n4ÝËoÍMr?˜b0ÄPV ]·à0Ä¢>6eýÀñ&‚ *±cðÄ ·#Àz€ExÙÝè¶¡\‚@2IFˆà!A@S$†ÈcÎ I Š0ÞÁuÄlŸ0À` (,ˆÎ"SûB&´…ÂÓTEÚ µ| 6IaPB‚lkAÔþb…Æœñ ¸Y2¥¤.<& /ðÒð@ä8àþDSã*#i…ÉÂàGð´Aœ‚™aÄ@W„‘S˜­Q;B£$Æ3f}nh©¢˜@aœ…àå‚ gˆ‘¸@`„€Ð CP&÷Pƒò ˜.O>Jùç€ExE@ˆh’tEÐNðgj'Ž/(ø@ ‹P-À ¤€uÕñÂS±ºžÁûyo8þ½ùï„2 ¦ ¨`"Äâ{î ¡r A¾a¾ i¢úà4@6üÁp³h'o¶ÀÒ€Ì¡ê¢ a ÀD âPÁÀ ö`òÉèëªáKÐ~À >€@à&îr@d€fûÂ4A ì èñ" ßÁ @ "ˆ"îüî8ÁôÁô .Nâd¡Þ¡ƒ ½ øð~ÀÀ2@2 "à"%¡¦Á¤Ø¡t·€ˆ`Œ×-.+£bÎQ &‚½1(µlÿ±0”‘18$q'±@"Q?1H6Ñ7±P*O1X“1W±`¨QclÓñi1Gñqñu‘s±8 @@>ä>ê3¶@ D>ü?(1? =S?‡s H?"c‚icon_32x32@2x.png  tiffutil v268.1 HLinomntrRGB XYZ Î 1acspMSFTIEC sRGBöÖÓ-HP cprtP3desc„lwtptðbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiømeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o¢8õXYZ b™·…ÚXYZ $ „¶ÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤þ_.ÏíÌ \žXYZ L VPWçmeassig CRT curv #(-27;@EJOTY^chmrw|†‹•šŸ¤©®²·¼ÁÆËÐÕÛàåëðöû %+28>ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv ǤR9$–M'”JeR¸¤‚Y/˜LfS9¤Öa.›NgS¹äö}#œOèT:%/ ÑéTºe6ÓêU:¥V‘Q«VkUºäB“]°XlU*ýŽÍg´Nì¶›e¶Ý&µÛîW;¤Jãu¼^o7{Õöýi¾_ðX:Þ ‡ÄSpØœf6‹ÇdrS<†O-—“ås¼äk5ÐhkÕ—M-ÒiõZ¸VY¯Ìk¶<ŽËi·Äm·»þëy¿¼]ÞO0Äÿ~>ÀP :¼¾_@ûþö{€ øàÀ`Ã(.g@+Ö÷C¬þ€ Ì^# )‰ÎâÆz  KÅ1Vœ~¨$ ð 8 ¼ÂˆšŽH h2@føª.Ç´‚` ÇòB»/¸7 à C€NÚ´qœ ¨.Ÿ¦Q†‚?€ í6 ¨ŒJк +!Ð. ð4Á.»J'1BÒÛ!ìpT ^€'i܇1úmš§ø L¨\¸üéâĈ8ÄÊ¡ô鈂‘úa—t"‡Lró[ KÔìÔ‡Í ³+ÌrüÃ+ÅUmP…SÕeFŠV5U^ƒg‘þ Œ\¤A"~©ú‚H•J}Ÿ Êf *D©:~ƒiøõ•lîTµukRKðÒ BÕ•=¿[\õœÒ–ÝõMWv(W æ¢õÅyT²ÑôwÐú‚!ðf§ø LóT¬}ž§ùbTÂp’©ˆx&&1ŒÏâ3uPÕƒµÞgýí{!9dº‹d™-½uTUu•w"ÙekNÇrÖwwËçã¦r6ze¹Â4G¡þKà8Ò0½*Y礡ùêq”§~çvM›h-å*+Œ/³fz—u½[ráx¦»ovî¦L~Ÿ¸P:xÈצn‚Ÿ'™þK‘àHÐ/ÊjYê{ဆz‡üñ©ÕAÁm7[º[ÈFk|t7ÏA¼f]:!±HÈÅ4e×·˜ ùVO·K/Áþ„IÐ\;ó§äh4 Ðò–{Ÿøf$FÁ¶~óçkØl3GG·Ýݵéq£}¢K}gºV“ël.áx}\}ŸgøF€€@BûoÒ ŸŸ‰.#hh ¬1å¼ÐfGx؃ñÌ+ìêf®Ñ³”eö¸“›\Åb¿´´øˆœM)r A§DÊWkK'p{ŽáüƒÐ tAõÌC^Òí8L°Âã")O0ƒ@–;ÀÝ€O>R+ãr"/ê "§`ö¢‘D„M÷E3´¨bÌO £ÜyàX À0Á@X‚aȹR§s§já0"@ˆg `0¦D@hGDIn`ð>·Zïгâ\)eïE¹R£4†í¶JChÂGÝ“BÍšÇ9Gø5 #ˆláõHÑÒÁl'àV @8ÞƒìoŽ1ö8G(ûè~!è…P¨=' ù3B‰Œó#ιIñH#È6à$³’“qð°\6]»w"ƒÔzá2!Àf ên‹ðlõ@iN¹ÆíRý„E°¼£Ü!Ì>ƨÛ#(iqŽ4°ÔcàxûO@ž‚Nh²Ê,%²òúÎU‘ñ5†¤@èÄ#Ô+ΩV ú&D ÁYdÑqü °Ü||½W\R«ÖÄ3TRE†Í¼ƒyŠáx?…èž øGÃA¨Ïa¯¤1ê?Ѐá”*Hû5¸Y÷&ÞÖØ¼«/°ý¿7ì*RF3¨õÀvбr;‡Pî`,Y5Ïcvn­°Ü¹ˆÀŸâðN€| æI„ÀàeÅfU#eZ^C×ðBB˜¿ãø±¨6G÷„jûÁ2@ÈD n1ð#æbÐu§â€K!3Ö.’'ƒ&±HúÂðL¼^Œ8cʽÅN?ñݯ ”2… .S/87 Ã@mìz'‹Û!™äL‡Ìø10ÃDy±(7ÆÍìÓçÆI‡ÆjBXƒàeEŒÉ?2‘\&Ø' ¡D ä0tFXØ#ÜZ [^hwPL‡ N€&™xq@8DH¡ä%çXqŽhiJל] @dd0`@ ‹Ø<¹U»à ¹4LV~Ê)wœ†A‘¡G­l °CV¥ý†?Àw›Àè±b0GHfSÄ:âu@Ìr^ÖèU·6 ÂÚ˜0"EÎ&•d3‰pì C NÚ|ÐtÆ ÙCÔëæ`…¹(uܧ•“áŽ5xXÃ,uô@0¨[ªs9¾' Çþ¡ÂäG®7qÌ ÓlJ–èš9È0 a0hô?AØi#hq=V¨c¢ä¡Ìv>ÊPÆ ÒD=Œaò>ÙÜ4›kbѰUoQÍBàFàz ¯ñ„a,WÉZÝ ôãðKfÂX"ìÃôÁx6Góæ»ì»sì>İrŒ%2Ž)Åèá b(dpû)k;„ìe÷m´Ç">Øüâ$!Ð[”Ì ©ë]™é$ÀòõâX8rc$‰X4 …BáØ[áôý— §+ÈAÀ0Wü;€$0W›Ýö•7 àBXt¾a1˜L„ÚÙ´aR9,6C#…Ϥ‘÷ýðû~­Äaè°/2©Tê•Z˜T¦¥H+uØ4üB‚½Ò“pèÄHU­–؃ôzrY¶œ8@X¨ <¤Ú;1ÄöÜ5QØñ{Nk7;¹ìÆá”K ‚¾É/rLÜÞ¶A’‡‚ÀÆQ©ÕJÊ –;Øì€ 5…éIJ‡˜1N«ˆŽªø³Âïy˜X¨»‹*PÖ>1·ü´%(³iŒPx, ×—í²ô—êÕM Ã^/w¾ -&ê™ùÒP“4 DQSàà"à|<†ÙÌw€À#”˜, áæ{D Ð Œ"(W:Çiä{‡ÃÉTsç¨ £psÞ£(‰h? !àT Ã1“T ‹¤³8Ë£ˆK-žP‰86âÐ~êÆm@r;†ÉÊw# Žæ§É+2Ì£©9ôIŒÂ(Â!…²3‚C†1U˜Àxµ-¢¶Ë6à]Èlƒ2ü "‡9‰‚’~ "\ €üð«gáú@•FBzÁ`N‘2ìÒºüDÆ#ÐA…Ô'Ò#e#jDÑÒc?%éõE’Ž =@…Ä ÐàH€L Œ„b8±U±Äy*QøÌ5”ñ# LI¼–£ì®2çš IŒ"XÀ 5à E¢ Nšç)ÖÁR™þÙ#ÕE+(JvìÛ}¡k˜¡ß¶ZdÚ€0Pk€¡˜D Âlᬠ$4r†R‘ÞÛˆv=nªWâKÏ´­V“çÉ$0 ã|Üí@ÐN•¥9Žh DÒžª˜xŽŸ×¦0™Z‹ÖO,7¦„ÀX8ò'ˆC’ 5@ØØ@ç±ÂÛŸÕz6¶®³{æ<›:¯*Kéè|Ÿ$€¸(Œèm™0är`åinW÷Ë*°ä¨6†Ïä¹¾†Õ©ÿ Jl»;?6–üzŸÉ,/ŠÂàuº0ÀàÞ>lü¨3^†ÎlÔEÿ³¶æÆ—·;p´* áàqº°ÅyšgŒdùHÞ,ÔÝ’loŽ¢GžN1}JFOçà6”(µú Qx: à$­€àæ;õž®‹¯c½‡GóAÙ^­ä>6¢öDx°, áÐuÜ­¦ÚAHK‰PIãÏtމø›éŠã‹Mp$å¼wÒýÑ}yÐ$ì=ĘY axƒÂ؃¸rhœÌ¶uøßáKÑ‚N•´½Gf"¨uùVØ>xU„0þ–Á˜8FðNÂ86 ØûÓ=´E7ÙkÓi-h¯¿8=Ã`@Â&…XJƒq 6fyè8è§£Cñc-}þ¦Øz#‚ ^ ÀÜD2¬50ã ‚\D4ŲUbËÐ@ì¯Â¹^xòx‘¹láô4Ã9Á"”71l˯—b|/”ði°ÃQþåGÀ A„/f«  ÈNtd<‡UÏ!<;Êò`‰>1CÔJ@Θ?-€€@GæÆÒ”Pw-Uºˆ¯ fé–cä{ˆà è4Rت ñ¸4BÈ£@(ž‘“f“±`÷‘ø>À¨ âà2ˆ@0€‘l" /ÏcQ<`s IùƒD “lâ4'pº Â$ê*b”g Ðâ,„¸ à!áÀ×^£“!‘”M¤5©òL–€ýãð|‰€¢B-fpµK%ASƒü~­¤«!ÔN`N¨®8H`—ǘúÂ@&†ÐÀ ÂE *B _ &1Eh à*GMxc d,$ôÔ׉LŸ|ª‘¥J¹â’>O ¡0† hÍP"AZnÁcm— ÿ`(Ò…‡"[ ɪ%YéÒÊ>È? Á@TÀL¸¨ƒp ®Ï,Å ª±¾*"B4L¥|ÇŽ8FÓ>@ @dfAˆ-gТщý+YkÐŽQô=Ä0E Ad{Jžù“RH2î¡Ð=hG!¨y‘줩•m¢DôÙ+$ÃÅÇ0±ð‘ÄÀ€K} !JµQœTõ#­°{ÐÂÐ- 7 RT5EÈo €`6&ýï‚DŽ~¡\„ˆ4Hc £0J$ð‰luƒÐ}a [¡3ãµÎ³Â¸®#0s00SGQVn@¸&'àù!HH€6§ñâÂX#O¢E]È>2Â(!`¶ vWÍ |\ á„Ũx¯îSÐé„CÇèú!@I€4¹³IîÂ` ÒʤØ"«ƒèzˆ ‚Ø+ ÿI!ó¯ ÃPu˜ šcbl±­m7/u•²u:#>-&uÁ8›´…Qʹ¢G°‰áì-‚ £«uñ©4Mˆ±–%°Ø ^ÕAÍ‚9­2pý"œ& €pYŽ¿5@ O½•Hv2¢$‡Ð´ BžØÝL`AŠÐpR` þ4{6Æ ‹ìE4èS„¡9µv¾é0À Ps­¸H<áhNÃHXÒƒP0‹°Ö<ÉvsÒ™¿KrúJ)Úœ$ àn§-  QCa·rD,cìzˆ€t ‚Ð'Œœ£‡ Ö4ƒ0¾ £°|À‘©}/xµ†éQò)‚?à×`R)3ö ÛÅ{p€r!Ð& ÝOt qÂ.ÐÈÃÈ}<ŠÏ(k­Þ®EeôÁLE7îw± T)Áuyc”OA(Y¡c½æ‘ì?°’bLN qE(D Ü w¯LP¨“ÖGVÐ=ç3â,‚@³éqX¿ÂøG!4`ЀoPláu,Óí*5îA炦ô\ÛV*’)ªðbgQ~œ¶c¸i Qª%ØåFk"ä|ÑóE(Aþ‰Ü}ò ÅX(à£ìz}¡Aï?¡;‡À~¸bHbho…`a@`¼h{PQÁ¡ñ‚À¢Í ¦?{ø€³ùÀ…¿³ü ì³þ¿üs˜i‡xjðr…èaÀhm‡ˆm–I„>!/ªH~ X€¹èÿsø?”Aû¿ËýÁ;ÿ@& hàu‡Àu‡y†øj‡xj†wˆjpi‡ z‡ |‡ð|¼¸»€_-€øØØˆƒM†ÀMp|‡r&/©ÂLA*4Â{þB“€@{‡@v¸uÀÂÛ<è|6ƒÁ‡ˆ}€v‡ÀvÄxs‡z‡t°tEx¸¼5Ëx€0Ä Ã‰#C˜¥*PGÀHø ø …¨ Ø--±XS†èSÀe°€(½*¹ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”F OùL¶]/˜LfS9¤Öm7œNgS¸¼®y? PhT:%G¤Re3êU6O¨TjU:¥VmL«VkUºåv½_°I+%–Íg´ZmS;®Ýo¸\nW:í¶éw¼^oW»äŠí}À`pX<%¾ÿ…ÄbqX¼e ÈdrY<¤c•ÌfsY¼N_9ŸÐhtV|öM§Ôjhú]V·]¯ØJ5›¦×m·‡l÷½æ÷Uºßpx\<Ÿ‰ÇäroœnW7ÏÒ@ú>§W£,ëv{]ºŸ3¹ßðxeÝï—Íç•t½¿g¶7ä÷|~^o‡Ïí÷ë}¿ç#ôþÀ pÿÀP, ß½P<·$ Œ« ÂÐÌ4»ÃÜ=­0ìAÄ‹¬ÅJãEQl\£E‘|e§QŒiÇ „mÇ‘êGÇÒ „ŒÈ#¡ò,‘%Ɉ,•&Ê4Ÿ(Ê‘ì§*ˤ¯,Ë‘l·.Ì$¿0ÌÜÇ2ͤÏ4Í\×6Îß8ÎÜç:Ï”ï<Ï\÷>Ðàœ‡(fùäy €"!poÁâx€¡®›§é4 H€e"€À0ƒÀào|N†g`S‡ùLUŸæÑ¼žZì!($ PL‹âÐ,Š€;ŽÁl]äáB™Fqþs!õSB4r µh*P.Šà˜$ H‰4¤©6‘yür¨  0hyø~Tw8~€(RŽ#X4ŒU+ fàä<ŸÆˆ–;8aõÑ;õ b$‚t±<€"˜—!k±áN c¡üS‰fàéö| š€Ä3D¡|ßn!"LãÑÇžZ€:_éè& 5ãD ehJ°yž€š,Æ r€”žÊ“ gáÞ "ÈT€ …7„)ƒÝ €( äcÖB‘Ì¡¼â Ï$Ña;°ôõ ³!™GWÒsÝeŽu)HˆöüêÍsè!ú´à˜(€EyFî2sÔ4gñ2Ià($¶m\ì>$Hýu6¥%€.ŒGðàR÷›7ÓÚý=VÚÉÝ_M÷oýWà‚óŸºÉÜ÷¿rëC¼~OúÀ%F©Ytw¤ —>§üç @ÿuN AXé_Ä } ºˆìSe'ÏÕ÷À÷âéVCš¯ú;( Ü Cñ‚P– 4/Ÿé¹€d!û¿¢ ûû4À%Ä[ Xä] ñþÂpýŽP½Âÿ¸þbŒL pÁØ6…ÆŒrŽuà‡â›z Ô?wdætƒÐæ6Á&€©œ8„ŠŽÀ[ßlcu01ÙÇùüŸ„ƒ…ïÎ=¿8k³†qÞDH¸ôí cQ`ˆ;˜±'L…ŠHÀH¯!c¤±â?IPB¤Ù…/ÊTÈ iáÚ£f@~7QV)€(T À ˆG较ø*©]!ßK±—æVqô£ˆTB´P>yjghx¢PIÐ ˆ¬>wpD”J ¥+›“º”ÏþGè],fœ —+ò|Éy§(e4 5sì™Ð)Õ>e[ñ“RBGÊ8ùçƒí¡IPI^>‡°àÀ ‘r†XÏÀè#·Ê.Òª‡Pw4?T€eƒDaPLæù•#‚°t>Ǹùo‘(¹øÁ pP … oøL2'„ÂâQdZƒ€bð¨J- ŠG¤ÐHÌ¢W*ŒJäÉŒÊg4šÍ¥ ¼9'’Ê䓪 —NáñIÌeôô«TÀt:Aöy=?@Àú U:¥CO'ú19š€u«Mª×lµ%“ÏÓY½ôQ­·Š<¦e0¯^®óYäV‚¡a/5¹|v‹¿áïsæ#H‰¿äY<~&g—”Ácôœ2ÓDÃhó2É&e.¿D$˜ îV%ˆÊ_/7ùD "ß Åëø Í×$ÚÜDôó‹ÀE P ÊêõºóÙ¡ô¦S¿ÀÞ6WŽ—égñM¯Ñ£ñlµ˜ÿ?‹ËïÑ^«\˜ô;ž“´D~Є^fDáãOšò‚Yá^áaïjf¹Øež—íëz^D˜ý?€@@ xö?ÖÙíM ç±’I“ÔÿÄ`¸*@xj=œ¡ W> ’ìýÀ¸Â K_ná)6†^X=[zv je&5,jÚ‡ÖQr¡˜ÉŠŒeÔùø–¤øõùJSøý`lô€¦Èa‹d“Ú6@2à¨gŠ…J&ä1c€á?ÀPcB™ùBšf*^g…!å®IÞz„R¡yå”ÞÔrw_á62§¨jÂx˜aÑCª8mgåôe¶GÀptòž”Šò.OiÄÖ|Ÿ£’Ŭlùàø>@ðN=LãAW”^©í >eZìTÑ zšT!^Ø*í –d¦†N¥¬‰Q”¼šdB©kÐDr-H•·òQ‡f‹“Q.‡“¿vª˜OTuúÂßЂoqì¡D³¼g!„±põ-‹“îGdíì KgfÍÇ_nÛÎ mQ¬I§—œ†sΟ”n º‘jRK‚à\Úæ±r÷͵ÑXÊúL¦s¤Ò¯È—ZMB3•ªÓž:ݾn¼ÇPôdÝ ?¢0;ߨ3Cˆ3 ZM~qÁ. `3WßQ$[= ‚ìû2 §g`x¬‰D™a+F+~F`»Ó¦–dã.>nçmþBšÏ¯F'¤LjIš­ê7mK¬±ºTLû?l€€€îuuœÕ„>`HÞKr•áßüu·<Ë‚ôú®­ˆæº,SZäi¹nðë©Å šÍ¹Þ{Âtn“¼ò,5³ÝÕ v«5ܱE×;ß›®Á=”,øSEÁXì]oÔ›´ÈCÇÂ5x@[Š@ùàyZ !px¼Çœô ƒ˜m  ×TÓ{ªU¯yO¦³í—ºâƒN¥ð*‡ÚÓ¹üWm0ù6& F‹×[ŒÑº5â­Wºlzg¹ûÁ˜@cà@ÿBˆ€€F:Ö1F)L½ùÃô¯_ÿá !À±F Ä`&$.˜>^xg(Iš0þÏr-‡(=õ(býÊ B}Á²<‡y!n@ŠaÐ=økàüaP¨û¿„Û4o‘`{§Ðd €(ÇàL‚AÒ¼N1’[åò99)‚]2&U’€”‡x·ÃäÁuê©M‹Šir²•2»c‹_pþ/h &#Èqò ï¾)ŽÕÔFtoáôGøBÒôËŽ¡s4V@‘·`P! A(ç•’˜$„0-…—sȃ ¾;eŒ³–²‰žÂ‰H•gô%V,ÁUÄ,Ý[@z‘ñÖ½×(Œ Ø¡SrÆÅàÔI Qê7˜bÄÍSOVhj}¤ó.?Ǹñâ?ð`q ˜r½t4]×9(®v‹a@'œó A€vKðRDUŸõ3þƒù—@Ràˆ¯ã1T ü€´‘ÎP’ÓVå»S£Nƒ&·Ô¹Üý™©ŽIV‘6¡!¢d~±þ>“èr „„°Ÿµy Â:Ÿ¿à* ½Ã­WÑü½–ΙóªúÄ}}«Ö‡rshìšá›.Áî¥x÷Mf¥ˆÊ½µ€~?€pB: Ø©@¤pÍ™pžµŒ &Èka+Pb6bÍK[­X!õhš¤i›ÃÐÀa…$Tm~ð3ëY”9tðúÃ.”G¬5][ãøÚÚòÙYæu"Xé¡û^[‹Ãk®Ãè''žBXAb8 V T‰,@¨pL‰>Gm«^=´U__€=‡¸þ ! a:îô‰ aŒt a~=€[ÐЮĵ,H˜­àú®©Ü–€Œñ5un„ŠÞ¹‹Œí¹Ö¢@Ú8ƘY-*I{!³ £/[fLžM20€,ÐLÁ°/D"€°Z Ñá6`°oIˆRt™Ð‹QíŠB Å g3A€–0¶ÜåFÐßC¯RAÎ>ÇÀ÷!cüm@ ¬&ó “>…°Æ‡ù5O‡ é§$˜ymôÍp%½¸t•uP—¹… ™¥hyìQ°7GÈÔcèl áò1höã}ŽqÖ>À#{Si€Ñ ^öÖÄÏ/*œhf?½1Øf,¨{G ó¢:€òéÿ\õ*°[r]Í&;ä%o±h&€÷ªjá03Ž!l0wÝåêǪ„ ~{‡¸CCt±˜4ǸÊùâðcA¸8‡ÐïÔž4€ªõkr}m¡ÉëâsY#Ǿۆ®r{ðþ‡ ôAÐ ‡Íd½ÏøG 0T_­M –¡6ŒHÜZ?ßÐ&}þLd 8Ø0ƒÌÀ%ÙNôqšá{Í|UDDŸŸ&€¬ð6ƒ€>C3Ô,ô4Þ:œŽ^ ?ÞVY,å5N2K^`JÂq‚@Œòh‚O<ƒzÑÍxVu'èÄÂÊ)hb8CN‰C¸"ñGT†f„î™B8 dì9ð>ì%Ct(‚Ø:"\zÛR¦0ZšbJ&zq)LÁ~)¢NÀ< RR9 ¥Ú{åΡ‘¹èÂÄ#€º¥…àÁÌ4h”;h¢ŠžU³á0A(j©Ä#@¾sBx,ƒ˜‚H6ªˆh¦Ýž0’²*ê€×ÆÄ®ª>M¬ AÜ€†ªd/ɱi¥ †€æ©B4 +T[<@-Ã:é¼]HÜ•$‹†µmp=âw€äÄ#ƈ4ÃÀ4Ã|9ƒÞm(ªT…X“¹+,aPÕ#8NƒÂƒB€˜Áv,ëŠ(ÀD‚õçXì…®™`…Ö½ @T,B.¿,pZA<C8.+¢B#il ?lªË( êX9¬>hC<0Ã@;ÀD‡R£å®Òùç­:Ó¤¨BƒÄ=bp¢Æ@ŽÌ,té—Øu2—äÙéÒÊÂÆÏ­|V@ƒ0-à :«ªÃê8MɄ޷@T,$ kˆ:ÃÀ>À$P*Bô9€8šÁÍÕ¥”…ª€­™˜gmU‰­”€%>¤ÁnS­²€D‚â.Z˜¬æLáÍ|Ó¬ ?$Zßmþè„Üà2‚âܪÁ™*6Éë„? \, ®Ü‚04Bl,ƒ€€2Ó%åmçNVÐ`¹-`>€¬®‚íáX -˜ö&(N¬êñ®Ð!ÀÞøÄØä2à2C¦Š Þ“­6È~éÀì ï !ÀâíÃè?XC0ƒ@;8ë­© ¬é"ë)-H`yN"ùød*”œBh2æÁ˜ ئJü_à$,ã§Èÿp ,p¤MDƒýƒ¢B )̬áÓX C0 €`+°¤:ƒ¼>A0 4ÃzAÀ"þ¡ÒpÖŠÂÛÖ^ªÊÉg=nl@´fiðÙê€LÂÅ!-ÎÕ”º› hâñ@ÜB¼!q'„ÄAð10îþgYÎ&ãñ0 ‚1çCÄØ0Ì=Ã윃‰Yûžmä¥îÓà¿ZU ƒþ÷¼bx±å×LB¹MœkCþû1+Âr KDC .(9€0-1G±m•Ml•ÓaybüDï@Ø‚¸ ò×-‚À1ŒB1²M—%̆0NvÖ+ ÆÖè!Aˆ Ô¯-<+/eÎD¼Œ™zC±È×3B ³¤JHƒ.,9±ý䆄¶ÊìØ¸ @ÿ>„ l3B4+X0¤WöC2WÁ5‰|Ì×ÄRJ„ÜQNÖç8ÀÈAZt=£P¦ï㣠3Ó=´04¸DÁH ü.C,9oå4&ì‡1¾^©1ÈÀ×BÂtº÷ä5C„;À'$ïfœthš­H—D‚ÏJéçN™<H)×Èà åË"±Ƭ=µ( 54µ¤AÁH Bô.C09(¢õK”­£g¯AÁ]¸Á^‚ø4˜ü.ã^mùgí[G38u Ôjë^—xAP) ]A„ =\ÀÌ63c¶ŒL ‚ì.6@Š{.[ïðAµÔ>ö(B´Al€0/¨0ƒx@(VvI¤°øjCop Á| AÔ+‡qÖLAX(žQË |šb:„½o sqqÁL Âè.C48¶ ú¶ÔMav¬?6·pÁð÷6ƒ<ø‚ÃCù‘®5Ré9² %S7WSgAx ÁÐì¿wÓÌ`'ö¢LnÃk@x+x |B.7×}ñQ6¯p@ˉìxt¤%C(Bð5®)ž0N¼KîzÑ­nxEB\ͽ[I @äH ¸Û‡h'c¬¿ ‹ÐwL)N7€È·7ÉÃ88v ±§eDÞÁ¸ƒà>ù|´+ƒ87C¨ð+@ªÙhvkz\˜`Õ<Ì–ßXCä ÁpÐ@Ó”“ÈÁl&‘Ù`ju@¸Àù€+äù!ÂÐ.C88 W`ãjÙw¦Pö'§àzD|$Ü+ƒ6è¢5T™È޾ÞëGˆÜä´KnDDº$ hú:íºÉ"@\B]ðª):˜Ÿœ@ȳ¬9"BÈ.ƒ?©Àª`ð„†Ë¤­ÔpI8À€ÄB°Á;¬‚ì4C€ ,(î2ãdÁ[Ç×»5z‘c¢B €ôÁ>òû9"@`ÂV{FVĪ|Eö¬> „*ÁÜ÷B(,ä3Ã~ caï >$ €Œ*AÓÌvÈÂ4+Âßž6 5£ª‚Þœ¼´*ù?Ó‚+ƒ!‚´18Yã'ÙvÓ<»Î…6ѾÕ@<5Ô"At´{7Ó@Aˆ$"ZgüQ »ˆ‹öDLˆƒü©¼ yýÔ–R@¼œªëƒÅE´5ˆ:ú86%pp’¹³ÚÃ耼¬ÁSÓƒ5ÈB$)õcVxCÌ! ȃ…<=Ãä?D €£Æ£þ¾Jì?À6¡F›Èˆ?€\À0ÀT2ÿñVLA#b÷voŒ¹¿ƒÊÉʲ½u^yx;ÚDþ`ph B ÐX<CaиN ` þC$qHÄ‚AeQXTªS…½Ÿ²0¼Fª9¦séýƒB¡Ñ(´j=èø}é×µâŽÃásœ¾‘Z¡ÕjÓ\Hù}¿_O×ín+ŸÊ¥uwývD¸Ëì2MÒQrGÀ7×ô0ÑȘ^#È-­Šb”’=‘S%U-Ñö>§ÌwÔL$e¤Hfm!j¶­pW[¦yÞld½A˜ÝÄÆ6ŽœÆºHƒah%0F&ù:'xá(xgœ$Ü- J‘¸\–èª-Ë-Í`Z%JP,¤Ž&R†á.’›™%y©‡:›^X*9ÑtN6‘?^ÓÈ÷> >!A*ŒQ±¬ƒQªØ&ihzvB *9®®yÚ(¥rÜЧž›ÉÝa\­FÒ;¢èE r¤mkÛžèQN°îHbU6|€ Ž$;R V›F’j­½l™ùƒn–Ú~Ÿ$ðð=Ïr8ZFa:ÁÑppm !xò ª[)™ª*È1¾œ[Çjiަô…¶*|†W粯“h·‚È›’‰ž ÈQUÛ?\'â*±Òt«Ä@!É#|ê;@`§®|&³è©ÊÌž/Ìç/‚ãlϰë#ù}-Ç1¬-­(Çí&¥Êuªš¨³pª‰þ›0=†úžô¦Hõ”„mi¸>.ç{Oñ,%ŒÃ|â<–øž`ÙŸ~‡9Äù¸Žd;;…ói"ö¶‘ŒÛyk,>•¾ ,í{Îs={z«Ú÷ù‚@ˆ«†nXÁÁÁÄ|Ýú ?¯ã<¾·µÚôŸ)nÒä´A0*sÏi[;ó"™Öõvi‘\ÂÉ]ï®à ‚’ iüï΋‰rh½5Í,¥µc"›a¿uÄØ¾v:ýë¹UohϪךéKl#Ð|ZƒHA¡ƒÐäY£Ym?©wG „ 4Lÿ´ò´ÛÛóéD}„GÜ*8e…pñ‡¡\+ĸÀ8v~EŸQË…/(Í›ôʇJú4æén;BN¶SRÅs¯0£¸%–V3£(cÈ|€Äè ¡^@ïQCÜz% ð>€¿SãuAg=¸Ö“ê{ ùM¾'¾´ßx‰Nå(®R …8f ðöJœá&/…à}"¼€d¡4"‰l‘ÇØµ’Kÿ4éâ0EÔ”Ù úƒð`..ƒ€u ÿ(À<ƒ¡EŽÑâ1ʇÉM)tž:LVûå„20ñ׳ÀˆÌ7bœ2™-8 °‚àA A`Œeå¨VW¬Xý;ÝÔÍo¹Øßß!ž[°Iô±Ö\í`rKLƱz¹™äÊUý—€^ô€\àx<AF' ofõÒÅTÞ!°có:x,£Ñ!`Œ™q5b AH+ÁŒ5ѪnVÅÈaÈV @ÀE"€p ˜ÁŒé椯9©Í8Q)X4ü©²™ðJ"d{GóT‚Ü6€L€Êçáä7Ê©Y¨)£€ðEÔ-°f {¬T•<粈¨J«~‰,ò¦âÀŠå1¢˜1Êqb 0­ã(4 q6¥G(ñ2?ÒÙIëÜU­uÕÕÒw¦!iXt¶¯rF?GøþÀ  `Ô«bW |=†ÙèèTz™).ÏÏØø±çµ¸ÖºÈUXµSª3](Í Oan±7P¡ ‘œ1ƒ`ª¶EÔ‰ãRmEP_`ô½4 ƒb„öŠón¸¹™Š.ÍÈu§+J´4e¹Þ— Úžì>ÇÈCºø.]…ŽÃ¨ÂÜkŒ·ùPŠÓ­[+š´w` ŸÏ}Üœ;'ž¤¾w ;LöEã(ö À¬‰°ªKë"LÄëu?v|xTr3zð‡ÒWõ ï´›êÜtiÉs9J:ìH£‡?± „)Š2×—ˆÍd;*ëbrÔš.;ñë¨Ë0ûâÌ0ˆPJÛJ"/`¬{¶Š Ñ1r+庤wfJo›utÚ.ùÙ]#Ûコ'ˆB %éáfõ:p>Gé7aØoÑÎG&ÎŽ7¿BÊÚ‰ ‘nìòkãKÕßÐó<Ä÷áò?Ø” ¼)‚À|ã‡Q=Ÿv¸Ê÷zã—EÞ<,ôk‘Hf1áàà!‚@f)ÀzòôàpÒDèuãí)¯:• ™CŸâôM°-û™1ç$-‹Øºï¢†Œ£é9oc¡E°þij°Š jÐ1sô ˆ"Qâjg#7ÇbS0ts*#Yã&§÷uö°Ta&mµ(³æ="—LG× 0W<—ÜQ Á àШ¼ƒÖ|‘\±ozã=f_0wÈw—ŒmURå-\¶Š$ðô ÷ À|`€HCÀ"X>Ug5Ö£içýEY@üqtI\VBQ·ÿu6]k FP5 €X(0Q ™  °༠Å@c'fEáèt†?7‡…05~^!r7,È^d5zzÁÍ&ÿZ˜áey  @" xà^–0‹Ò†¨‚z5–CŽ?À °`ò(·Æx˜kjèbbšm!£~Öòñ~@ù€Àˆv‡„àÀ«ð¾ à̰qŒtµbЖ1¸f)Òb ¼ùo~¥«Ï³ì.„¢ðô€8£ùŇչ¼ÏXi› CžÂ9þľœ®è¬^Šo)Õ«k>ä.±H©Â˜B*$ºÖšÁXŽÁ¹ð‹‚4ìÜ*Ü?™£é:l“€€ q\ªŸ§¡öz ¨lB†¤6(ÛõÆùð\·Tƒl‡Õ¨ÇAìt eȺ¾=‡{Ÿ‡¸bÀD,Ž`âø ÷M®fÍÍ_ÝrÝl×ú !^p㉎75€g«±sÑè‚™Öݺ¶ù|ɯyþÿ é>ž§äqƒñ@mÔðýÙÐõƒÔ€08c %¡|²ôûXƒðg0±?Cæý ¡ à 2 ÁÊ.ÀPPet3F‹ø¼‡bÁ‘¡‚ uçA8HÐ ±Ëƒ܇!„æð†ÃÄæɲ@¸ ‚ðÖ ƒhG áÃ7šÁxy‰á²#4T*Á:–bäDã+xºFÃÁ ãsŒ‰ÐÔ&@ÃäZA0a À|(,Prâ³,AðàÌ CÉ ÷Ùp<Â@DK”Œ 3(åD0Ђ\k jþoØRLEƒP•ÈV,¤ƒ ÑÌ/C@Ä ­!¥ÈLÿ…0B,!…_"ÚG WÁXsQÍ.ƒ«ºFÌûk€ð ÀØ ƒpvÁà6ÀÞ·=òÂ<ÂÝ.c¸i\ð š5ž`tÑZ…ÞÀÊâú…à,¨Éj5hþ[g˜ÀHFƒ‘ÈAÇd8gŽÑŸÃ¼í.|9ƒšsÇá\›@8€À> €€' Xð& € ¿±œl°aøç2S(¶£RëMÀˆœ"ò e;j¡HX¿Âú½ ñæ7àns$Q" .Ä æ@¹hb46‡ˆÙc 8e( DJ‰-ÌeÔ\?Gðý £ýI)à8`nT– ôØ(4Úª¶5Ç€× òod }PPÊ1—+#ÐàF$È’…àÇO,ìzCIX鯂pX/d9Ñ©ï£Dœ“œÒ¸ €ˆ+ @Œ-Ò`«o¶é@ pH, äúx§›)Õ#qFê|:€€ €€`üƒH€#õÿ'È@édªU ?ßÓ)¤²9’@@˜&ô!8F& à ȊŽT@€©Z¯X¬Ö«uÊíz¿ZxÂS tº­¼©u=Ý@`.œU¦¯·óíòþ|ÑäÐñ8à,8…!{ˆÄâ±xÌm~__µ:˜n†5ØÌl¼[/·ëè —‚€€±PDT: ŽÇ¡ðÇl¶{M®5Êör°œìÛ‘tàz8aƒéß’×_á8H Gßô„PA 0Ht¨†Â€€ 0 Á…©â0^“_±Û|¾O¬Èõr*­ çàã<“ÁLœ” @Ðl ÚèTE`¤ _hZ†!–ÑlÃøüI$};!¨š'ŠcØü=œcÀâp’W)ZtÁð0hÀ¸ˆwSˆ’)$ `M_ƒã=N3°ø:ÒðLÁ•J6× W–%–6–¥Ùz_˜&Šc™&Yšg}eÉ¢k›&Ùºoœ'ÊsŠf©Òwž'™ê{Ÿ'Ùùµ§ú ƒ¡(Z‡¢"j‰£(Ú:¤)拤©ZZ—¦)ši³¥)ºzŸ¨*Љ§j:š§ª*šª^©jºº¯¬+Ɇ«k:Ú·®+šŽµ®«Úú¿°(:òÁ±,[ǘì;"˳,Û9ô²¬ûJÓµ-U^ѵ­›jÛ±­‹r߸.¾Þ¸®[šç¦.K¢ë».Û 0»¯Êó¡n«Ò÷¾/™jö¾¯Ûúÿ}¯ÌÁ0VÁ°œ+ A0Œ3Ä/ì;Å1[»űœjàÆ1¼{´±Üƒ#É,L‹%Ê2šÛ'ʲܺ¨Ë2üË3¦³Ó7Î(ìÛ9Ï3Ú ;Ï´ tÐ4=Gš4]#KÓ*ËÃMÔ5ïJÔµ][Óõ}k[™5Ms_Ø {aÙ6U[cÙ¶§hڶ݃lÛ·_pÜ·]CtÝ·xÞ·Üû|߸߀à¸\»„Ḝ—ˆâ¸Ü{Œã¹Wä¹\3”幜˜æ¹ÜKYçºï èº\ù©¾©Ä©Øª©à©è©ð(1©ø=Sª‡s Hªî8icon_128x128@2x.pngpòë,ù é  tiffutil v268.1 HLinomntrRGB XYZ Î 1acspMSFTIEC sRGBöÖÓ-HP cprtP3desc„lwtptðbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiømeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o¢8õXYZ b™·…ÚXYZ $ „¶ÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤þ_.ÏíÌ \žXYZ L VPWçmeassig CRT curv #(-27;@EJOTY^chmrw|†‹•šŸ¤©®²·¼ÁÆËÐÕÛàåëðöû %+28>ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”F OùL¶]/˜LfS9¤Öm7œNgS¸¼®y? PhT:%G¤Re3êU6O¨TjU:¥VmL«VkUºåv½_°I+%–Íg´ZmS;®Ýo¸\nW:í¶éw¼^oW»äŠí}À`pX<%¾ÿ…ÄbqX¼e ÈdrY<¤c•ÌfsY¼N_9ŸÐhtV|öM§Ôjhú]V·]¯ØJ5›¦×m·‡l÷½æ÷Uºßpx\<Ÿ‰ÇäroœnW7ÏÒ@ú>§W£,ëv{]ºŸ3¹ßðxeÝï—Íç•t½¿g¶7ä÷|~^o‡Ïí÷ë}¿ç#ôþÀ pÿÀP, ß½P<·$ Œ« ÂÐÌ4»ÃÜ=­0ìAÄ‹¬ÅJãEQl\£E‘|e§QŒiÇ „mÇ‘êGÇÒ „ŒÈ#¡ò,‘%Ɉ,•&Ê4Ÿ(Ê‘ì§*ˤ¯,Ë‘l·.Ì$¿0ÌÜÇ2ͤÏ4Í\×6Îß8ÎÜç:Ï”ï<Ï\÷>Ðàœ‡(fùäy €"!poÁâx€¡®›§é4 H€e"€À0ƒÀào|N†g`S‡ùLUŸæÑ¼žZì!($ PL‹âÐ,Š€;ŽÁl]äáB™Fqþs!õSB4r µh*P.Šà˜$ H‰4¤©6‘yür¨  0hyø~Tw8~€(RŽ#X4ŒU+ fàä<ŸÆˆ–;8aõÑ;õ b$‚t±<€"˜—!k±áN c¡üS‰fàéö| š€Ä3D¡|ßn!"LãÑÇžZ€:_éè& 5ãD ehJ°yž€š,Æ r€”žÊ“ gáÞ "ÈT€ …7„)ƒÝ €( äcÖB‘Ì¡¼â Ï$Ña;°ôõ ³!™GWÒsÝeŽu)HˆöüêÍsè!ú´à˜(€EyFî2sÔ4gñ2Ià($¶m\ì>$Hýu6¥%€.ŒGðàR÷›7ÓÚý=VÚÉÝ_M÷oýWà‚óŸºÉÜ÷¿rëC¼~OúÀ%F©Ytw¤ —>§üç @ÿuN AXé_Ä } ºˆìSe'ÏÕ÷À÷âéVCš¯ú;( Ü Cñ‚P– 4/Ÿé¹€d!û¿¢ ûû4À%Ä[ Xä] ñþÂpýŽP½Âÿ¸þbŒL pÁØ6…ÆŒrŽuà‡â›z Ô?wdætƒÐæ6Á&€©œ8„ŠŽÀ[ßlcu01ÙÇùüŸ„ƒ…ïÎ=¿8k³†qÞDH¸ôí cQ`ˆ;˜±'L…ŠHÀH¯!c¤±â?IPB¤Ù…/ÊTÈ iáÚ£f@~7QV)€(T À ˆG较ø*©]!ßK±—æVqô£ˆTB´P>yjghx¢PIÐ ˆ¬>wpD”J ¥+›“º”ÏþGè],fœ —+ò|Éy§(e4 5sì™Ð)Õ>e[ñ“RBGÊ8ùçƒí¡IPI^>‡°àÀ ‘r†XÏÀè#·Ê.Òª‡Pw4?T€eƒDaPLæù•#‚°t>Ǹùo‘(¹øÁ pP … oøL2'„ÂâQdZƒ€bð¨J- ŠG¤ÐHÌ¢W*ŒJäÉŒÊg4šÍ¥ ¼9'’Ê䓪 —NáñIÌeôô«TÀt:Aöy=?@Àú U:¥CO'ú19š€u«Mª×lµ%“ÏÓY½ôQ­·Š<¦e0¯^®óYäV‚¡a/5¹|v‹¿áïsæ#H‰¿äY<~&g—”Ácôœ2ÓDÃhó2É&e.¿D$˜ îV%ˆÊ_/7ùD "ß Åëø Í×$ÚÜDôó‹ÀE P ÊêõºóÙ¡ô¦S¿ÀÞ6WŽ—égñM¯Ñ£ñlµ˜ÿ?‹ËïÑ^«\˜ô;ž“´D~Є^fDáãOšò‚Yá^áaïjf¹Øež—íëz^D˜ý?€@@ xö?ÖÙíM ç±’I“ÔÿÄ`¸*@xj=œ¡ W> ’ìýÀ¸Â K_ná)6†^X=[zv je&5,jÚ‡ÖQr¡˜ÉŠŒeÔùø–¤øõùJSøý`lô€¦Èa‹d“Ú6@2à¨gŠ…J&ä1c€á?ÀPcB™ùBšf*^g…!å®IÞz„R¡yå”ÞÔrw_á62§¨jÂx˜aÑCª8mgåôe¶GÀptòž”Šò.OiÄÖ|Ÿ£’Ŭlùàø>@ðN=LãAW”^©í >eZìTÑ zšT!^Ø*í –d¦†N¥¬‰Q”¼šdB©kÐDr-H•·òQ‡f‹“Q.‡“¿vª˜OTuúÂßЂoqì¡D³¼g!„±põ-‹“îGdíì KgfÍÇ_nÛÎ mQ¬I§—œ†sΟ”n º‘jRK‚à\Úæ±r÷͵ÑXÊúL¦s¤Ò¯È—ZMB3•ªÓž:ݾn¼ÇPôdÝ ?¢0;ߨ3Cˆ3 ZM~qÁ. `3WßQ$[= ‚ìû2 §g`x¬‰D™a+F+~F`»Ó¦–dã.>nçmþBšÏ¯F'¤LjIš­ê7mK¬±ºTLû?l€€€îuuœÕ„>`HÞKr•áßüu·<Ë‚ôú®­ˆæº,SZäi¹nðë©Å šÍ¹Þ{Âtn“¼ò,5³ÝÕ v«5ܱE×;ß›®Á=”,øSEÁXì]oÔ›´ÈCÇÂ5x@[Š@ùàyZ !px¼Çœô ƒ˜m  ×TÓ{ªU¯yO¦³í—ºâƒN¥ð*‡ÚÓ¹üWm0ù6& F‹×[ŒÑº5â­Wºlzg¹ûÁ˜@cà@ÿBˆ€€F:Ö1F)L½ùÃô¯_ÿá !À±F Ä`&$.˜>^xg(Iš0þÏr-‡(=õ(býÊ B}Á²<‡y!n@ŠaÐ=økàüaP¨û¿„Û4o‘`{§Ðd €(ÇàL‚AÒ¼N1’[åò99)‚]2&U’€”‡x·ÃäÁuê©M‹Šir²•2»c‹_pþ/h &#Èqò ï¾)ŽÕÔFtoáôGøBÒôËŽ¡s4V@‘·`P! A(ç•’˜$„0-…—sȃ ¾;eŒ³–²‰žÂ‰H•gô%V,ÁUÄ,Ý[@z‘ñÖ½×(Œ Ø¡SrÆÅàÔI Qê7˜bÄÍSOVhj}¤ó.?Ǹñâ?ð`q ˜r½t4]×9(®v‹a@'œó A€vKðRDUŸõ3þƒù—@Ràˆ¯ã1T ü€´‘ÎP’ÓVå»S£Nƒ&·Ô¹Üý™©ŽIV‘6¡!¢d~±þ>“èr „„°Ÿµy Â:Ÿ¿à* ½Ã­WÑü½–ΙóªúÄ}}«Ö‡rshìšá›.Áî¥x÷Mf¥ˆÊ½µ€~?€pB: Ø©@¤pÍ™pžµŒ &Èka+Pb6bÍK[­X!õhš¤i›ÃÐÀa…$Tm~ð3ëY”9tðúÃ.”G¬5][ãøÚÚòÙYæu"Xé¡û^[‹Ãk®Ãè''žBXAb8 V T‰,@¨pL‰>Gm«^=´U__€=‡¸þ ! a:îô‰ aŒt a~=€[ÐЮĵ,H˜­àú®©Ü–€Œñ5un„ŠÞ¹‹Œí¹Ö¢@Ú8ƘY-*I{!³ £/[fLžM20€,ÐLÁ°/D"€°Z Ñá6`°oIˆRt™Ð‹QíŠB Å g3A€–0¶ÜåFÐßC¯RAÎ>ÇÀ÷!cüm@ ¬&ó “>…°Æ‡ù5O‡ é§$˜ymôÍp%½¸t•uP—¹… ™¥hyìQ°7GÈÔcèl áò1höã}ŽqÖ>À#{Si€Ñ ^öÖÄÏ/*œhf?½1Øf,¨{G ó¢:€òéÿ\õ*°[r]Í&;ä%o±h&€÷ªjá03Ž!l0wÝåêǪ„ ~{‡¸CCt±˜4ǸÊùâðcA¸8‡ÐïÔž4€ªõkr}m¡ÉëâsY#Ǿۆ®r{ðþ‡ ôAÐ ‡Íd½ÏøG 0T_­M –¡6ŒHÜZ?ßÐ&}þLd 8Ø0ƒÌÀ%ÙNôqšá{Í|UDDŸŸ&€¬ð6ƒ€>C3Ô,ô4Þ:œŽ^ ?ÞVY,å5N2K^`JÂq‚@Œòh‚O<ƒzÑÍxVu'èÄÂÊ)hb8CN‰C¸"ñGT†f„î™B8 dì9ð>ì%Ct(‚Ø:"\zÛR¦0ZšbJ&zq)LÁ~)¢NÀ< RR9 ¥Ú{åΡ‘¹èÂÄ#€º¥…àÁÌ4h”;h¢ŠžU³á0A(j©Ä#@¾sBx,ƒ˜‚H6ªˆh¦Ýž0’²*ê€×ÆÄ®ª>M¬ AÜ€†ªd/ɱi¥ †€æ©B4 +T[<@-Ã:é¼]HÜ•$‹†µmp=âw€äÄ#ƈ4ÃÀ4Ã|9ƒÞm(ªT…X“¹+,aPÕ#8NƒÂƒB€˜Áv,ëŠ(ÀD‚õçXì…®™`…Ö½ @T,B.¿,pZA<C8.+¢B#il ?lªË( êX9¬>hC<0Ã@;ÀD‡R£å®Òùç­:Ó¤¨BƒÄ=bp¢Æ@ŽÌ,té—Øu2—äÙéÒÊÂÆÏ­|V@ƒ0-à :«ªÃê8MɄ޷@T,$ kˆ:ÃÀ>À$P*Bô9€8šÁÍÕ¥”…ª€­™˜gmU‰­”€%>¤ÁnS­²€D‚â.Z˜¬æLáÍ|Ó¬ ?$Zßmþè„Üà2‚âܪÁ™*6Éë„? \, ®Ü‚04Bl,ƒ€€2Ó%åmçNVÐ`¹-`>€¬®‚íáX -˜ö&(N¬êñ®Ð!ÀÞøÄØä2à2C¦Š Þ“­6È~éÀì ï !ÀâíÃè?XC0ƒ@;8ë­© ¬é"ë)-H`yN"ùød*”œBh2æÁ˜ ئJü_à$,ã§Èÿp ,p¤MDƒýƒ¢B )̬áÓX C0 €`+°¤:ƒ¼>A0 4ÃzAÀ"þ¡ÒpÖŠÂÛÖ^ªÊÉg=nl@´fiðÙê€LÂÅ!-ÎÕ”º› hâñ@ÜB¼!q'„ÄAð10îþgYÎ&ãñ0 ‚1çCÄØ0Ì=Ã윃‰Yûžmä¥îÓà¿ZU ƒþ÷¼bx±å×LB¹MœkCþû1+Âr KDC .(9€0-1G±m•Ml•ÓaybüDï@Ø‚¸ ò×-‚À1ŒB1²M—%̆0NvÖ+ ÆÖè!Aˆ Ô¯-<+/eÎD¼Œ™zC±È×3B ³¤JHƒ.,9±ý䆄¶ÊìØ¸ @ÿ>„ l3B4+X0¤WöC2WÁ5‰|Ì×ÄRJ„ÜQNÖç8ÀÈAZt=£P¦ï㣠3Ó=´04¸DÁH ü.C,9oå4&ì‡1¾^©1ÈÀ×BÂtº÷ä5C„;À'$ïfœthš­H—D‚ÏJéçN™<H)×Èà åË"±Ƭ=µ( 54µ¤AÁH Bô.C09(¢õK”­£g¯AÁ]¸Á^‚ø4˜ü.ã^mùgí[G38u Ôjë^—xAP) ]A„ =\ÀÌ63c¶ŒL ‚ì.6@Š{.[ïðAµÔ>ö(B´Al€0/¨0ƒx@(VvI¤°øjCop Á| AÔ+‡qÖLAX(žQË |šb:„½o sqqÁL Âè.C48¶ ú¶ÔMav¬?6·pÁð÷6ƒ<ø‚ÃCù‘®5Ré9² %S7WSgAx ÁÐì¿wÓÌ`'ö¢LnÃk@x+x |B.7×}ñQ6¯p@ˉìxt¤%C(Bð5®)ž0N¼KîzÑ­nxEB\ͽ[I @äH ¸Û‡h'c¬¿ ‹ÐwL)N7€È·7ÉÃ88v ±§eDÞÁ¸ƒà>ù|´+ƒ87C¨ð+@ªÙhvkz\˜`Õ<Ì–ßXCä ÁpÐ@Ó”“ÈÁl&‘Ù`ju@¸Àù€+äù!ÂÐ.C88 W`ãjÙw¦Pö'§àzD|$Ü+ƒ6è¢5T™È޾ÞëGˆÜä´KnDDº$ hú:íºÉ"@\B]ðª):˜Ÿœ@ȳ¬9"BÈ.ƒ?©Àª`ð„†Ë¤­ÔpI8À€ÄB°Á;¬‚ì4C€ ,(î2ãdÁ[Ç×»5z‘c¢B €ôÁ>òû9"@`ÂV{FVĪ|Eö¬> „*ÁÜ÷B(,ä3Ã~ caï >$ €Œ*AÓÌvÈÂ4+Âßž6 5£ª‚Þœ¼´*ù?Ó‚+ƒ!‚´18Yã'ÙvÓ<»Î…6ѾÕ@<5Ô"At´{7Ó@Aˆ$"ZgüQ »ˆ‹öDLˆƒü©¼ yýÔ–R@¼œªëƒÅE´5ˆ:ú86%pp’¹³ÚÃ耼¬ÁSÓƒ5ÈB$)õcVxCÌ! ȃ…<=Ãä?D €£Æ£þ¾Jì?À6¡F›Èˆ?€\À0ÀT2ÿñVLA#b÷voŒ¹¿ƒÊÉʲ½u^yx;ÚDþ`ph B ÐX<CaиN ` þC$qHÄ‚AeQXTªS…½Ÿ²0¼Fª9¦séýƒB¡Ñ(´j=èø}é×µâŽÃásœ¾‘Z¡ÕjÓ\Hù}¿_O×ín+ŸÊ¥uwývD¸Ëì2MÒQrGÀ7×ô0ÑȘ^#È-­Šb”’=‘S%U-Ñö>§ÌwÔL$e¤Hfm!j¶­pW[¦yÞld½A˜ÝÄÆ6ŽœÆºHƒah%0F&ù:'xá(xgœ$Ü- J‘¸\–èª-Ë-Í`Z%JP,¤Ž&R†á.’›™%y©‡:›^X*9ÑtN6‘?^ÓÈ÷> >!A*ŒQ±¬ƒQªØ&ihzvB *9®®yÚ(¥rÜЧž›ÉÝa\­FÒ;¢èE r¤mkÛžèQN°îHbU6|€ Ž$;R V›F’j­½l™ùƒn–Ú~Ÿ$ðð=Ïr8ZFa:ÁÑppm !xò ª[)™ª*È1¾œ[Çjiަô…¶*|†W粯“h·‚È›’‰ž ÈQUÛ?\'â*±Òt«Ä@!É#|ê;@`§®|&³è©ÊÌž/Ìç/‚ãlϰë#ù}-Ç1¬-­(Çí&¥Êuªš¨³pª‰þ›0=†úžô¦Hõ”„mi¸>.ç{Oñ,%ŒÃ|â<–øž`ÙŸ~‡9Äù¸Žd;;…ói"ö¶‘ŒÛyk,>•¾ ,í{Îs={z«Ú÷ù‚@ˆ«†nXÁÁÁÄ|Ýú ?¯ã<¾·µÚôŸ)nÒä´A0*sÏi[;ó"™Öõvi‘\ÂÉ]ï®à ‚’ iüï΋‰rh½5Í,¥µc"›a¿uÄØ¾v:ýë¹UohϪךéKl#Ð|ZƒHA¡ƒÐäY£Ym?©wG „ 4Lÿ´ò´ÛÛóéD}„GÜ*8e…pñ‡¡\+ĸÀ8v~EŸQË…/(Í›ôʇJú4æén;BN¶SRÅs¯0£¸%–V3£(cÈ|€Äè ¡^@ïQCÜz% ð>€¿SãuAg=¸Ö“ê{ ùM¾'¾´ßx‰Nå(®R …8f ðöJœá&/…à}"¼€d¡4"‰l‘ÇØµ’Kÿ4éâ0EÔ”Ù úƒð`..ƒ€u ÿ(À<ƒ¡EŽÑâ1ʇÉM)tž:LVûå„20ñ׳ÀˆÌ7bœ2™-8 °‚àA A`Œeå¨VW¬Xý;ÝÔÍo¹Øßß!ž[°Iô±Ö\í`rKLƱz¹™äÊUý—€^ô€\àx<AF' ofõÒÅTÞ!°có:x,£Ñ!`Œ™q5b AH+ÁŒ5ѪnVÅÈaÈV @ÀE"€p ˜ÁŒé椯9©Í8Q)X4ü©²™ðJ"d{GóT‚Ü6€L€Êçáä7Ê©Y¨)£€ðEÔ-°f {¬T•<粈¨J«~‰,ò¦âÀŠå1¢˜1Êqb 0­ã(4 q6¥G(ñ2?ÒÙIëÜU­uÕÕÒw¦!iXt¶¯rF?GøþÀ  `Ô«bW |=†ÙèèTz™).ÏÏØø±çµ¸ÖºÈUXµSª3](Í Oan±7P¡ ‘œ1ƒ`ª¶EÔ‰ãRmEP_`ô½4 ƒb„öŠón¸¹™Š.ÍÈu§+J´4e¹Þ— Úžì>ÇÈCºø.]…ŽÃ¨ÂÜkŒ·ùPŠÓ­[+š´w` ŸÏ}Üœ;'ž¤¾w ;LöEã(ö À¬‰°ªKë"LÄëu?v|xTr3zð‡ÒWõ ï´›êÜtiÉs9J:ìH£‡?± „)Š2×—ˆÍd;*ëbrÔš.;ñë¨Ë0ûâÌ0ˆPJÛJ"/`¬{¶Š Ñ1r+庤wfJo›utÚ.ùÙ]#Ûコ'ˆB %éáfõ:p>Gé7aØoÑÎG&ÎŽ7¿BÊÚ‰ ‘nìòkãKÕßÐó<Ä÷áò?Ø” ¼)‚À|ã‡Q=Ÿv¸Ê÷zã—EÞ<,ôk‘Hf1áàà!‚@f)ÀzòôàpÒDèuãí)¯:• ™CŸâôM°-û™1ç$-‹Øºï¢†Œ£é9oc¡E°þij°Š jÐ1sô ˆ"Qâjg#7ÇbS0ts*#Yã&§÷uö°Ta&mµ(³æ="—LG× 0W<—ÜQ Á àШ¼ƒÖ|‘\±ozã=f_0wÈw—ŒmURå-\¶Š$ðô ÷ À|`€HCÀ"X>Ug5Ö£içýEY@üqtI\VBQ·ÿu6]k FP5 €X(0Q ™  °༠Å@c'fEáèt†?7‡…05~^!r7,È^d5zzÁÍ&ÿZ˜áey  @" xà^–0‹Ò†¨‚z5–CŽ?À °`ò(·Æx˜kjèbbšm!£~Öòñ~@ù€Àˆv‡„àÀ«ð¾ à̰qŒtµbЖ1¸f)Òb ¼ùo~¥«Ï³ì.„¢ðô€8£ùŇչ¼ÏXi› CžÂ9þľœ®è¬^Šo)Õ«k>ä.±H©Â˜B*$ºÖšÁXŽÁ¹ð‹‚4ìÜ*Ü?™£é:l“€€ q\ªŸ§¡öz ¨lB†¤6(ÛõÆùð\·Tƒl‡Õ¨ÇAìt eȺ¾=‡{Ÿ‡¸bÀD,Ž`âø ÷M®fÍÍ_ÝrÝl×ú !^p㉎75€g«±sÑè‚™Öݺ¶ù|ɯyþÿ é>ž§äqƒñ@mÔðýÙÐõƒÔ€08c %¡|²ôûXƒðg0±?Cæý ¡ à 2 ÁÊ.ÀPPet3F‹ø¼‡bÁ‘¡‚ uçA8HÐ ±Ëƒ܇!„æð†ÃÄæɲ@¸ ‚ðÖ ƒhG áÃ7šÁxy‰á²#4T*Á:–bäDã+xºFÃÁ ãsŒ‰ÐÔ&@ÃäZA0a À|(,Prâ³,AðàÌ CÉ ÷Ùp<Â@DK”Œ 3(åD0Ђ\k jþoØRLEƒP•ÈV,¤ƒ ÑÌ/C@Ä ­!¥ÈLÿ…0B,!…_"ÚG WÁXsQÍ.ƒ«ºFÌûk€ð ÀØ ƒpvÁà6ÀÞ·=òÂ<ÂÝ.c¸i\ð š5ž`tÑZ…ÞÀÊâú…à,¨Éj5hþ[g˜ÀHFƒ‘ÈAÇd8gŽÑŸÃ¼í.|9ƒšsÇá\›@8€À> €€' Xð& € ¿±œl°aøç2S(¶£RëMÀˆœ"ò e;j¡HX¿Âú½ ñæ7àns$Q" .Ä æ@¹hb46‡ˆÙc 8e( DJ‰-ÌeÔ\?Gðý £ýI)à8`nT– ôØ(4Úª¶5Ç€× òod }PPÊ1—+#ÐàF$È’…àÇO,ìzCIX鯂pX/d9Ñ©ï£Dœ“œÒ¸ €ˆ+ @Œ-Ò`«o¶é@ pH, äúx§›)Õ#qFê|:€€ €€`üƒH€#õÿ'È@édªU ?ßÓ)¤²9’@@˜&ô!8F& à ȊŽT@€©Z¯X¬Ö«uÊíz¿ZxÂS tº­¼©u=Ý@`.œU¦¯·óíòþ|ÑäÐñ8à,8…!{ˆÄâ±xÌm~__µ:˜n†5ØÌl¼[/·ëè —‚€€±PDT: ŽÇ¡ðÇl¶{M®5Êör°œìÛ‘tàz8aƒéß’×_á8H Gßô„PA 0Ht¨†Â€€ 0 Á…©â0^“_±Û|¾O¬Èõr*­ çàã<“ÁLœ” @Ðl ÚèTE`¤ _hZ†!–ÑlÃøüI$};!¨š'ŠcØü=œcÀâp’W)ZtÁð0hÀ¸ˆwSˆ’)$ `M_ƒã=N3°ø:ÒðLÁ•J6× W–%–6–¥Ùz_˜&Šc™&Yšg}eÉ¢k›&Ùºoœ'ÊsŠf©Òwž'™ê{Ÿ'Ùùµ§ú ƒ¡(Z‡¢"j‰£(Ú:¤)拤©ZZ—¦)ši³¥)ºzŸ¨*Љ§j:š§ª*šª^©jºº¯¬+Ɇ«k:Ú·®+šŽµ®«Úú¿°(:òÁ±,[ǘì;"˳,Û9ô²¬ûJÓµ-U^ѵ­›jÛ±­‹r߸.¾Þ¸®[šç¦.K¢ë».Û 0»¯Êó¡n«Ò÷¾/™jö¾¯Ûúÿ}¯ÌÁ0VÁ°œ+ A0Œ3Ä/ì;Å1[»űœjàÆ1¼{´±Üƒ#É,L‹%Ê2šÛ'ʲܺ¨Ë2üË3¦³Ó7Î(ìÛ9Ï3Ú ;Ï´ tÐ4=Gš4]#KÓ*ËÃMÔ5ïJÔµ][Óõ}k[™5Ms_Ø {aÙ6U[cÙ¶§hڶ݃lÛ·_pÜ·]CtÝ·xÞ·Üû|߸߀à¸\»„Ḝ—ˆâ¸Ü{Œã¹Wä¹\3”幜˜æ¹ÜKYçºï èº\ùï"ï(ï:ªïBïJïR(1ïZ=Sïj‡s Hïpœ®icon_256x256.png¶VãO,ù éHHtiffutil v268.1 HLinomntrRGB XYZ Î 1acspMSFTIEC sRGBöÖÓ-HP cprtP3desc„lwtptðbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiømeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o¢8õXYZ b™·…ÚXYZ $ „¶ÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤þ_.ÏíÌ \žXYZ L VPWçmeassig CRT curv #(-27;@EJOTY^chmrw|†‹•šŸ¤©®²·¼ÁÆËÐÕÛàåëðöû %+28>ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œL OùÌö}? PhT:%G¤RiTºe6O¨TjQÝN­W¬VkUºåv½_°XlV;%–™U³ZmV»e¶Ýo¸\nW;¥Öí´]ïW»åöýÀ`pX<&3yÃbqX¼f7ÈdrX\FO-—ÌfsY¼æw=ŸÊçôZ=&—M§ÔjuRݯ]¯Ølv[=¦Öå­Ûnw[½æ÷}¿àaà|'ÇäryXÝÇ/Ïètz]>¤û›Õìv{]¾çw©×ïx|^?'—͘ðyý^¿g·Ýï¯z~?§×í÷üIþ_Ÿç÷üÿÀƒ÷À, Á Ál ´¬- à \' Ãì=Ä 7Ä‘,MÅÔGÅ‘l]Ãñ\aÆ‘¬lþÆQ¼uÇ‘ë·ÇÒ …!ÈÜ"ÉL•%³r<™'ÊŒ¤¾ÉÒœ­+ËÊ¿*ËRì½/Ì ¹0Ì“,Í3¤ÓÑ5Í“l܆MS|å9Î’üã:ÏÌõ$NóÜý?Ð|û@Д- Pt=EÑ FÒ$öQô-KÓ­+LÓ”í<àStýEQÔ]CRÕMTô8u]]WÖ …OXÖ•­l¸Öu½u]×[^Ø „º×6cÙ Å‹dÙ–mœýWö}¥iÚŠ—jÛÍ´ƒZöݽoÙ¶íÁqÜ•íÅrÝM_sÝWmÝOÝ—}åyÒ7é{ß í|ß—ìç}ߨ2à ƒÊø.…á’N†âŒw‡âX®-☾5Æ6Ž9äÎ3ä™, ‘äÙNTüe^]—Ò˜öa™æ‘6[šç˧›çYî|ãç™þ…¡ÈÙ–‰£é®ƒ¤éškI¥éÚŽ¥V'šž­«»Z†±­ëŒµ®ì ‰£l[.ÍYl›>ÕµéûNÙ·î¦ã¹îŒÎ¿ºïÌÅ·o[îü»nûÿÁµ›ç Ãñ €?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œL OùÌö}? PhT:%G¤RiTºe6O¨TjQÝN­W¬VkUºåv½_°XlV;%–™U³ZmV»e¶Ýo¸\nW;¥Öí´]ïW»åöýÀ`pX<&3yÃbqX¼f7ÈdrX\FO-—ÌfsY¼æw=ŸÊçôZ=&—M§ÔjuRݯ]¯Ølv[=¦Öå­Ûnw[½æ÷}¿àaà|'ÇäryXÝÇ/Ïètz]>¤û›Õìv{]¾çw©×ïx|^?'—͘ðyý^¿g·Ýï¯z~?§×í÷üIþ_Ÿç÷üÿÀƒ÷À, Á Ál ´¬- à \' Ãì=Ä 7Ä‘,MÅÔGÅ‘l]Ãñ\aÆ‘¬lþÆQ¼uÇ‘ë·ÇÒ …!ÈÜ"ÉL•%³r<™'ÊŒ¤¾ÉÒœ­+ËÊ¿*¤‡±î‰ŸÀËLT½2ÍJÊ*t¸‹gXggùz`€Æ˜Æbxž €<€!HH¡À…ÀR€ 8 5,¦¹°œ'^˜€Ç=˜Æ]PTÅUU©hQ”tØÇè ‚`‚hApÍ©¬Þ†çˆ]Çù0OŸæ¹¬'B 0 ÀB-B€Ú à:0~Œ"à5MX¦g`Q•'ùfZŸæQžžÖRm]ø¥Ÿ ÂTÐ@ ´ƒ`t€"ˆ”ˆÂ\)eŽƒY >Rä©4ÆÒ ”¸ ”$ÇôÂ~Û’ø˜šŽƒmÖ]Ørk'ùJå‘ng2€´Öö¥©  ƒAá˜T.¿ÀÇä ñˆÅ ‘,b/EP 6I ‡Ä$²DÂyþŠG¿›í¸$Jg˜#ùü~½f ¨Ñ4v8FBùê™M§Sê•N©U«UçN×pî€)•o÷»ÂB+›U®Ùm·[î•Îéu»]ï›Õîù}¿No¨Ø € …` !ƒêòzƒm¼9_ËEœBnßá“ÉóÌ gPìçKÐkö•Ýb¶œçh`=Ÿ‰ÅãqùžW/™ÍçsùÏ×èüô„À±Èg0kª*bÍrÿ1ŸÎÇ8 ¿ø9± ýä4(Cð&è?ð§ŠFŸÄ1Î&¬üAð„# Bp¤+ BðÂJ}Ÿ(&2Œ` C7ÀZœñ%$,>ˆ‚h›"Йö²á Z•€6 Ã1äz»/¨ -Æt€;ßIrd›'Iò„"”>B–‡ R£Œ” o„¦„KÏš +J ­0KÀ Ìs*-Ë$Í8Æ;]1ÍólÃ1N“‚ OÓÜôƒIW‡OÖÝÁiÜ3ü¿,Y–-Ý< ÖzÍs-Ûr×UÌé_®5ºÕz ‡Ú€`FMaÐmÞ’ºK%ƒXÒ`s{LÉ´Ý:áÆ9tðmk“C0 &Šò!yW´÷ÞN¸àyÙ~ÜsT»sX–…×ygYõ½uhKÁ^ͳÅÔ’Y­1ÖùÖ¡qÙHV©ßz–nÛ7î´†Ìù½é°Æ–°©_W>}‡ÞÙÚ©eéº q«'¦ÙyÞZ¾«n©6o¤ìzU­›nè=ïÀo¶îá«qyçžÜ[§¢pVM¸ çÛ¬„ ¦c€~2†QÈ)”gâ@ °ÖgÛê5  $DSÞeÝB éüE§ð é™Íýdí3 Éo숵‚‹rÒÝÓ¤y.¿Ì™Æír[š/;ozsîpþ÷t_*ŽÁÊü›vÇÈ©ûäÝö. \ýû§±µyi' Â/…zõÚ»×Wð ǽÐØœL|e]ŧxÓŸâã^ Æ´&Ðó`™9r/áÆ6e|ù—‹Š„Ou`A´Äx‹áxƹn-±IKk}P±.%5®ÑáSK‡ `}Qþ‚…Ð:$¿ Èõ0€ô$Ñž2É«¢€ÏÉÿ¿2˜ÛâSÇ‚ÏÙ:ÁÚ˜˜A°2;—wNp’Cø7†ñüËÊ|Ð*ņNýc©9~¯©ÉÅx¸ùà U‚¯Ç4h ½ßÁ:rk>·îÕ!45ƒ É><æ©"äd`2jNÉu¿××N0U.-W™dÕ“)ú¸6#Ó«Å‹ÒÅkÉ“ß-¢]‡«ÎB¨ädT-yîI5Ê5|µû9Xò¡9Jxpô$Á’†a M5µ &|˜y1¼¸Ù+ ÒôN2ÑêAia$'‹Ãî0†΄ð“-%¤‡Á ?„(x'ø”Á–‡§ k.ƒô}€‰FxÂ`‰ÎFª qưØàì#ÑäP¯|°=Ëwä% ?{ÏYÇÎy¯, P•äÊi&T¤3‚“RžIApáã„rŽ?<¶˜¹æ«s]°4­·ý ›ò»™D9xÐ(±*=>—Í5ÿT÷:›zÀ$ï~/SdÃ7›D΃1mt̪˜à¦CèLórsEÙ_š+Ü«­aÔfÉL(ô€ŽíéÀ׿ÓA(ìz¨Á¶Õwúå#ûÛ¯íMi>v±•Ý-™3MrÀ ÙQåJoMkÁåW…˜OGØ÷âÀTPžcCÏKcXl€b‘À8EÒ¦·øû,;ÕFCü5†à%Mµ¢7Ù°Î?E0¢ÀÓ­)«!‘ÍšU´; «SO„éÊ轪¾õX‹Òp·f*½’ÔT:q’õoYÇOçd/¤²ºH&Ô© å5ä¬7’tÎztåfÍ"ºÐÊpÐ;3,©J庶 )€gfºM~W¬ˆs8kˆÀö*Ĭ¶¼·ié5rANZÀoåkkÓÃÌ{ãGêÚçO÷k_ªo)W=’0žñ·15%ÌêÄó-8ó߈cþÀTï#¶¨¿ä+<³2Ýá*²¿ úC€|ž0@0f°†Ø?Ež¹¦B7õ£œ)VVá2]x=†›‰Ò,ž0À #¡÷C±„1ÇøG òƒ±§ô¡ÝyÇr'Ÿ9_{ýØëØoQr]Oø°äZÿ^‚P¼Ùª—ƒ÷°ó}ŠzšŠl©ËàÃ{½bû¿²u£³Ñ( %›ó]¶âðœJŸ"´­¹›1c»¿òê;³=@CÀÀŒÀ„ÀXæÀH¨ }€„`E09ƒP¸|øØ}ðo‰¨›¬Šý±!î¬á`<²¦Áè¸*:+]1v³z©¬°Ðú…N€ /»¾´0 °A„p~ƒð>‡Ø{â@#ã?*¾¢Í¬ZÁÁ ̼ëä¼»S?9¥¥!*°zÀ¤Z¤À„=AT 1A»Ã{ºÁ#¤;Ñ2@Ã;óÀ¹S¼7|C¦tB¤àÄÜ60SÅÁ½Ã¢?¨ª)™ìº¢ ¼a>?ãð¶´L‹f7SÕº‹µ$s?ëµ®š¿!¨} °Y€Cìð|‡È­[Ò=ùD¤gÃF•È}˜‚)€V…ŽC p ˆùÐ%Ðe†bæ³ú.Ä: ɱ«Ã\hGù.µÓ]63‘¥<Ó—zIK;}7 ”·E)a5ÅDIv*+K¬#28˘@B€8.ƒP}Q‡àjo¿Ì€?tÁ¼hÄÔKEÜv0Ñ8ÈÀc@üjJÜ­…@Xè,‚à|ÃL+-/ÛpG„e¹[¥»Û¹T‡ø‚8{†èo›¼òÄ µKøX±.Ë ¡í‡_[”ÞÝiC_bÉ3g¼‰±0j¨^§Kkĵ0¢´ï¬4€ÜÅÎ?}åà-ša$JÖÚX3ÉD’%M jÑ5Š\êÀtja.%ÒNxÞT:Û6üZZ=ZŸ ±Pu¯¼È›,¸e$£àå>\ކ¤E;‚ ÞXe‘ ÙSúe¦oßùÍð†cx2æNeW -ƒP{0TØ€n`à-›@žSG•È\ÎEÞÔRÓ ²ç…e¥ýî‹gnŸd–V2½ÅDœµ›qÝ{[ආÂUa[¥çz“縶j-ÐjÆy³¾z¬t]\ñ3d@d$Xúð.ÕŠÝBžU,•Êá­œ™­7ô(WþH0YèžKj½T€ñNä¦Hކ€·i@éV–im6‚¸3°Uh}8C…Rhf›èHYý2¥²`s€2­XЋÃD¥Mä½–XÛ닎~ÛfîÂ)v£èÜæúÿA.  ™gBªÂšÔ|@Å´˜)±kË2K5û"&fÑE.ÃÒó+Žäµºíd•jý J]óT5àX¾¦M~ì4V˜zi\ªß-†ì{¶>L[dîîÆ¦Ä‹ ¿h¦…§E0!&È„VɃ)’ì¶Ëƒ8zìÞšlþ°Q3«$åÉv‡°UÚΆdôQж`BUI¦±æÌ8¹m%8ê±QfúPÅË f.;Dù–W_m¤!Ãj´j']2c­g;eö´»sÔòf"¾[<§m ß!¸}¨8€þÿa½„a÷'FkÐ…ÉCþðç&È9€HPiWðT­‚¿lÞÎÓ¶l,¡j¯Û¥ÙÙveøÔŖ̓ãHƒsfŸr±ÎZR.â.ð’ÍÚrì\näCp±¹¥eÏkßOjEÀçÝus•SØ@â¥õÀÆø_Fs6;vO•í.l. ó.ÃΟ_ó,ÈCöÛ¾®ö4‡õCÕ­à(û„¤›¿EzñÜuê»É–{; Rè4™£º“Fa‡ÿC€X7ƒ'Eôdp‚¸4§HGXdÀLÞù£Þ‚5{ ä$»áöâ¦=çBƒ¨<)*ÐõlÝÚOˆMÔRggZ_YpþrÀßÒeääF ßTþ·ì‘v¶ñâ–ƒõ$FL¸ºÅT£ë>ÈOl«œ òM ÈåØc{ÔZf¹bÌÚÇÖ^°îáñç>ùÖûÇ|FÀ2€8 ßtÊö†ÈÔ6Ú'2QÐ|t7DwÜuw÷FøUp|ø&÷tß…êůûÂõÙ¬H¿jv– éþLr˜ô¼l`¼íÍ Ï®éÜeL¦Å‰_n\e]‘]ÉïbœDB>¶^Ïv1—muçµ ¶ûOeŽzõîMz¬QvƒTG§´ó·Ü9v¿è £â2ć `O€¬#*ÒÖNŽ®è+V#ݨ2¢·vli{/|O}'´üìpxyûo·ø/ îø¶–?ÇSAÝåì[d¾øì{iWÝ:¯M®9úßüCùNéßgûÆ#Ÿfzæ‘k"–K¿œ0øÈ¬ÅüÀàÐ($BàÐø„F!ƒC"Qx1ÿ‰G"1èĆE#’H£’xÌš!ˆÆ¡²Yd>)+…H¦39,¶k N"±8|ºi/œÐhGãð šËà˜ BíÆ(TYMr?æ5‹«E|<Ÿé@,ÞdØmÖû…Æåsº]n×yÉ\ÒóU+Ÿ€e~á ¼apØx¾YÅÂfUœT«£KåªÔÿ•‘ϲ–ú¼f Êç¢T-—cžUr9œv¿’ÍPôÚš> ‰ºï2ûZ<óM½àçêÚËÆâ·¬åXy²W> \ÍìdšŽW]•è甽MœH‡ŸŠÎD‹ZÛÅÑ|aÆQŠôyEzþ°I»4ø,is¦™°ˆrzÛ3ñãTÕA kxæ&²[ äI’JŠÙ1zC+3rj:‹Ë ›ˆ†È3¥/¹oû/JI£pŠTã”ѳTgKs…@ÕC“¼³R$äâ5ïâ^ø¬oÝRPò6ÿW켂ùºÖ<ÆöÍiû¸ŸgÈc@˜l°¹ÕYV6;»I²’…sÔ´-!KÙ.<ÐáT4=Å hÞ1űézÞ×½ð‡ŠãQâ¾¯ì ½>¾“Ì˸t”é`­Ó2ÄêÁuœÆ»-ЄÑM\ë>¤sÓÃŽ7/c¯Œ§ÕTÕb5^fX“›¿Utãývb7tãÙ}ÆòH×&ažÐ¹ÌÕʲ>‚¡¢tr-”Ïik½e&V+ë=7+©d\0ÎzÝO–K“K„åù‡dOxÍ;8j5ƒ9G×Û6ØŒ22´¸ËKz=»î8vÛtÝ»{ž‡ð’"¡>¦€@Û2žÂËv·°àû–ÁQ9rÑx `UóÐô]H¹ áRWžàLt¯?/DC«D8£ciüª[ÚÔÌ_(Øôº~¬ê·KY&)Næê½q·ó®ú›á˜`äi/–Ã^«iU¥m*§øôÜòzIÙÌ8&øŸ[a"Cø²”/H Øg:T©E5±M Ã튻Oé¸í@„J¸%R"qü$8^.ÒĘ•âS§¤X:°âÙÃzvÅó.·] àÄ=]oA²)U!LQý‚*%J?ÖˆÎâ;n‘ûª—”]Û¢I~0mî·æw£ (EÆù¡togJ‚<-·4¬Õëq¶F>ÄGÌ”‡rÑîGªÄÎåäœ.2& vŠÝ ‰­R1Øät?èn¢(<€ò" èI Þ17£-ãT”ooqV$Ñÿ*â  áŠ$J•2æa³ ®'º À#‚0Rl@1!d$+6p2Ã#érr*ÕŸMé}$[Õ~*ŒÖ—i'£cn—Î^]A‰Ø|›rnfÎYE!'<š'$C°EÂuW+#az #ØÒV“|miSé£< *lÌŒº“ÅÂP@:®ÍaãÜÀR†@¯À(•ð ;Òv´MdN†ìÒ& IAñ CL`Äè E¨Õ¬Lñß´ÓŠ‘å¡dLbVVíPÄÐÖÀÚZ«ŒºÒ;R+!xoUˆ”4•̧•Äð¤¯^‹±¦OÚ­shD›¤ÄmªŒL¤)ê"øÂÊŒœè‚pIDͧþlW”;*)v*e7¡F‹29õNDÔñ"ÃïXÊ4Y×l°›ëÆHªéˈÀÞ_ úCü€€2Eˆ € G4ˆRÍ= ïGÌ=€$”üH`!1ê%e¹×>¢…€Ø;K«š“üçO¹ûYŸtibö&rŸi-)l²ÀxLüïCÄÖ­ZêÉQ”jlš‘>o]Ú)nâ3•j‚}ô&w<É.Ü=¡hÓŠGà n Q™;2žE³&´ö¬fIK0Å®V¯ Emi2^]ôðÓ•ärN‡¢*x¨íAã© z?*ñOfÃB‚­ù¥F÷o¯àûcü~”¡<#˜_ w4€L9UD »&è[‘rƒxa™G,e—Kt® °©·^â³Z?AiÝ,1ÆtÏÌ ±œõg0åOÜlRoï¥ÁǸCw°Öuϲ¡›kÀÅ_‡Àøæ™ga=Òì[NæÝäFð~4ž“ .¦Z§òƒË´æ é«Éñ• w×ånF¹ðûW#°XŠòóCV-¥ñ<—RM©soðˆËH̤ý‚'DX œä¬™§Í®(i„ö‰âDèø[ä9Š ^UݪHn@…9W+ëýŸÑÒµ2iÞ ¬ìÙ®°§¿ žK“l¼VU·H¿)…UhA¹?„ž¬1yâª÷›ðA¶w]0íd—u®ðÀ–­ŒnæáÁqÜr‘‘nÈ­CžláX}6°Žj+Y‚àpБëWïÏ*8»JDë¼ÚÈûsšû“DWº6ﯯÑ4ÚÉQDË}´.Mf´QÍ|ÐÃǸù#cô‰ñr6á( $ŽH dtÕjM XS†]}ùâëfg¦¼œ\[O°ñˆ{{*€ÞqÜû¡x !´v Œ¼³¾ƒ;eú¥kÅ•n:žÊèóáø¥·b™ÀÇ|È×^}÷ê2Ê’aSÌ%ʼn¦´m‹7x~ë+£ûæþ1Ÿt½®  Ò\PÏ^? èeÿ¼‰sŠQˆë;ùÞ7÷œFêé3í}žºÎZ÷æoFægçmÀQ À˜K3$° P8øKo«›QuYƒíÍ^Í8· °j·ÑÓö]¼ ðÁܾ_õþÄ”,áÙ¯|7KÄ­lðÊtïÏÔ¯î¾-´µOˆÓBý-8«g€‡J¸Û‚¢ FøNÐÿ¦Æôð”†úæGôTvçj¤“îˆçìal,:ÄÌçEθI Q xÐ@ùŠÀøj0á,8rÏ4W¦¢¯o&®Î¶l°HÇ4ÙVì,ÔÁ¡þ+^®œ ”a &`<¢äûAÄÍgÌ匜…®’nLûÆ…æRžjJì¬`ч¬ j~!`ÜþpPö À² ÁÖbÿ¤t[ã˜ðR²°âëÅ)Øé,LÛpyÏo©"8îÏã|Éír[PœË´ÁFCEZ̯`[Ž<ާÂÓ† ë¥<Ô*ªÅDçnÀ <½©,k(®æhÙ ¯ÌÅQ&½Tc§p7¬n*ÌõcĈ fü®ËàëÆÖ¢ PÍXe"¹ŽF³)4SÞ;bˆ ^ÊP@R@$ `Éê@R/0ÝÏÑ §Dxá°n¼ìtR¯ÜÐëàÀÐù!OïÁÕ!èq”›é{"¦lç±p+IÜ‘5BèÌdUò4  ¹ÏVDí O<é‚p]-4üµ#Sâ¸áìàŒÀ@îµ×]ujEÖ‰dÄbÔJ€2€'X)š@X«ýR/QD,)(Rw¯LmªÚäeÛqIô£\À¾…m Ÿ]µÞAä`"TšøIZVŒD‚¯0þ @„`h€ ÁÞAúA–à;!ÐaøáÔ€Y¡òêT G qvO•Gò@Úv:¡ÔÒóïWeíOHNxÎÒ¿Mo“(ÄGS°’÷Jçt˜35R.æÍSkŠ=V'-Q7Käz¡êÀ² ÀÁVÓyןz¹ ÛW­RÖüÓÙ#ã†>?ëpa" -\öÏzÒ™`²!ÏKvÜuš¡màÑoLó~eKeÔA ÏD"!êíÁ>À0 ¥]"1qAø¡Ò€0á‚!ìÁ⡾ø²ÜýáÊø„Laý0×/G4q0×vBê~ç&»¶.?N„ìÏÔÂï½Bt¡-6zç¸(†e(î4ÄÔÁÐ{"¿cDõPF iýD6lÁw®`‚,ê ¬ `! wÕ‹Ø¿`¡¶·Ç%¦½Œ¶ oÕX8‚¹€ WÌ À#ŒêtwØÁPwán&QRfÈ4¸Ø‹‘qÏ•:*¿"\¡æÁ, 0 ³} AÚ¡ÄÁöÊa ÁòÕ“¡¬ǃáàýáý„b€ W9Ãjå.36VôK¾ü]9õüù9ü¢}xp[?‘…w0Tö+ '~|õ(²§œ{0ÜdÏ#nDaRàóÆŽGÕ(<Åh†2fA¥,:x«Šà”ø·‹¸íYÖËXÄXWõQsê IQ}‰b/‘t . Øç™þF@´AÊø÷6úÓw鈣wV#{²zìº!#ŽT¹Á.€0 ³Ž…î4¶!õ!|ì!ÊAœð·¡ßD® `XQsS£42Î%"iBN¯N/>î‚{ņÚÒˆÚlþí ~štňa›y‰rløod- 僢eg6•4ÞÓÉîÁ)&›:mþÒðDתMxìÀ­œÁRà9 箉š`^2ÐéO™™‘îD¯w+1‘÷AÚ º;®»/´z m ne3Ðä5ÃÀPí^šËx*Ev x4þ!áépa,€5’;™CHÄA¤ð¡œáˆ¡ì¡ÆAÜbàÚj·8Û5êVÒÔ÷Ó?'¶ó¬3ˆ×išLÝ¡º« íPP¶g}Z­N;(–@ƒ¸ªÀ¯œÁPà;±›Ó½Eð €Åí€ ‚¿à°€( ƒ?áè\- ŠÅâqˆ´nÃ£ÐØ@%„€19TB9ŠKbò¬šZôy?RHÁ´º‹ÐhT:%G¤RiTºe6O¨TjT‚ÑÍȧY¼A€°fECŠGa2YM~5 ³Ëæqš š#™XlÖëD¢8~¥Ð£AbSÀ``­· é¦Ù|1¯f#9ìÞq¾®×ä @’ëU:Ãv´Æ$ô,ü릎Q¤r:³œ¹×¨1¸ö»]M“\-:]m¿GlØïè¹ÈŒÊ- ·l46¹D‹y æn4û*Ñêþ+’ê„p{ßðx|^?'—Íçôz|ృ_kѶs8šŸ+oGºQ«ÿ›VÆÆ•¡G¡æàÊ|¿½PLÁk¾ªªå¡à­«¯+î£Âê$2Õ:kè».‹Á.Aƒkì=I¡ºqEÁ†y™†¡î`™g©ÄsŸgñú€€(€ÉZVº¾m#tèHìQ%°0Û†‡¤)SÒþD { “$©ŠNÜ­¨ÓVäIÍlš>­>Ö9Mš\˜¡rȯ:ÎÀ’;Žô™;ÏÌõ=Ï“ê&´ü¦ÌïÓ¨Û, ì>‹/þ 'ÀIÒ”¬-‡O BÝ-&ÉO¼@äMO½ià~š†Ùð^™¡l`žUiò|ŸèR…7,)òؽëSrá5bPÛ®+z'"ÃŽ:“4Õ C›`Ô2¥¥$J®J)Hô\ªŽ£t-Ãp"’ËS4Ý–=3QJüâ+ÎeAÚ·Íõ}ß—ë@·{©¬Š-‡O#·6m¢+žÙòpœ”p66‹”•ýã—Í0qå¬&®[x…£3[ "…0Ô-PÉà朒õ*ûc¯!üaª{eùä[˜u­][Ÿà8̳s^úÊÊöéÞ3„–,ö<½o¦ºŽå]6ä­h-ÛüØ9Ól“±¿nÏ0[˜:DÖLÆÀÛO3¼ÜjYæzŸ· #{Ï ÃñLPF¥ ± îCMjPºÄ‰Lkß6Ëšä5DòZ„fiÐücÇÕõ8´:ä¡Þä›Z# ÑŽUÝjýÅJû;:¢o™–hA£@¯Õu¯wžçå)fwåéâqØ„Xæ_ûá“õµ*x¹:¿büšô¡•Xø/Ú™ÜÜânŽZ‘³`~j,ßÜIpb0¿è àCþ€Ìi¹öÒøž¤~¯Ý%.§oVS$) Ñ5ʻ౧! 4>º€¸ L)…E-a¦ݙ\tK°ù—Òž[Û]#͉qòB¼(…g”wø0†`õ‚°v a =Gxð€¥«è†´ß1içÁÈÙæ¡&3¡3ÛE’'*„ Z}OÃÈ=°þcy á\;ÐÅ#è~ð@—Ó\šÈ„=KbÏ‹“a.55M&HÇ5·2xÎúçkû¦2*™Óê_ £G|®þl9ùO#*|o‘:ê0?B°G›àŽ‹UÚ½8Àh6îüÛ®¨¶Õ¥3ó”ñ¸Æ*åê“2„è=Ï€¶ªýyRal;ê@¨$9ë³°7*èRëq`pæ¶ÔÇâñ‡è˜€3ÑJôzbpôbèw 1fdÇpüEp=²äü¦¤6%Î娜j\äæ[dÙ)7ùšäª«Åe[Öûßµk?G¦HWàT­M 7Ñþ¥Ã2Sn àÚ«ÅÚ¾H8-‡»'å |á»PÊ–” ÝMF¥f²»Nh)q¶=åÎjVgH€ÄÀ~²Zøß3Î7ø¢œtŠAj;G`î`*Ò«Fu‰mSÉkA 1`Ô7™ì·ÜŠh&LËžuÇÎúÔg›}=aØî´X" ßÎÅÓâ&ëál“×È ã4ébˆE4˜C¸†µG\™ªl–ñCÌ~ 0öÃ`ZùC6[ê7E8¶²ŠvÖÈÙÎXÈϽd?Ú”º ‘¬ÌvD?‚Îp®m<Ø`| AP:E(´ƒ°w⻟´ ÁŒ–&šDÐXîýÂ¥~8„p)’Á.ŠÖZÍ&àn3)ä] ì2Cc¼|Sð<‡­,º,Ç™CØ g5ëMœT/¨ÜâÜvJ"ák³öœ‹Gm „t0UÙ»? á‘**FÒzT­€0…JsùÇ”ïÎ[ý–_ ƒ™´Fç¨=¾ì-åUkÍæ=œ®â nNÃÏ .ªàZ‰ [¹­›×Û¹Ù\nõÇY‡2½Ž$ÃÖÊ cˆrÒŠÃÈÛÚyÍÚÈ ‘Áà-ãa”¸o±ðˆ# áSqòí†D ©âlVŽ‘î>Gð  ootI=øó¯žqVok~„»k’gjÛO:M­Ã;^ƒéìwž÷¸·+÷ xH¸8üï TSˆpQïÇÀèdó{Æ`‹Ò¼ð·ê˜îD0>6¬¢"ro2Ù`2ÿ.ZóïBÖ”KÄïÔ­é²ÞOû®Æ]ì$‰„7Ä¥¢Óøúކ÷$=!OÁaÄá¾À'¾—Ð Çè"L#Jò)¦‹Lro­NÞ&§àNäÎîÂæPÔi"5bQpV\ póCÒ¡î°jA&ÊjJ˜ 0”°Ÿ ®@·ÎvA­ºÐ/Ì|‘R•ÐQBÚÓÊu 4žxq2 àŠн -,Úàxîèì E”™%œ¨‘Ëp³ B äàñÀ°Q„ÖpøgØÙíTxH#ðœ)aâòá0`L ñ)$!š æáº¡¬N¤¥JËQÌíñþ¨ÄîÄä‹oʦƒ¦ßqäG,th(MïRD#®þaL U0¾@¡Œlª#î®Ô Ž{ b¥&H €¯2ʸ¯aÔv€¡£ù‰ äQòŽâA1!qÚ r]%ãÔ¥r6!&!ÈDr`gzõíâvÍ{ cí Ìj5íü­êlÀéZìp†ªX|R˜ìŒ¬Ì]$küÞçHp­²*r.ê½#aˆ)nØf'Ý/°¤)úá".ÁÈ c5 Íwê 0j’6s°âÖä¬c3BãW$æ˜jàê°€.Á´-Gè®à~QÏî²8óþ¼ÌÀÐ áªu2j˜´jw/¦ÏÔ‹*ñÊ¡†Ú7ôªa2 SBt+K„LÐ a1Dß‘™A2¿ æÂ¼I²¨²Û<ÒÔÎó*õSËÁFª×P¦£ø  ˆLt}NÕ<À ƒ ®,ü¶ñŒõŽ|‡Sœ<4ª( N tµSê,  üOL Ls«9tÈö”œ)_N4æ 4·VÄ ¶¡¦Á®@ À +õUS¬)’Ø™¢àeœJs"¨)—¨‚Ñœí¯L¹‚½ „²ÓÎÜjÊ® À†J`]Y•üq !~kñ[˜<òL=_V5f  ;_éÈ  þuvz”u õ¹®± Õ+r6ñÓ`ð@ÍYV AaÊaða.B¡ÊÑÝÀðÒÈ´MÊ“=•% C{ EŒnãJ$†æÎ¶È+€¿´Tw“€Zð«JB^Jã_2¡öSk¥û`!}Q5lhm9G@ñTHjMHâMá(€P `ªNÖ¼V%btõ{&èÿ=5ÄD JK±i6ðá`µ™öFJ À¡aöêA€ôÁ´aV"3MàÆ´jµÍ`Ñ\ß”iæÄLôPÏhÍ"*0z¼?Uº)Ö®–² aq÷lRÀ A{[pœYêƒ,§% µ€¡Šjüîsx±\ôÁ ²$Ì è6ån—nˆ`º¥LõLv2íPýö¦0×$Ö×Â;Uá0àWq—z¤‚ º!¢J ¢»cÒÀíP­'vÿ×õEÄ•a)öÆFd¯äwf7ݤö †¢¹vš¿ç…'4¥” û˜L„„Á†æ¶‘‚Æj¢-Uá'z Ö …ñÈU~a£LÍ&ÔÖÛ.ég7\ý®;{¶Ï‡£}ì—z˜\=!baÒ áù *‹m7 Õ6ëÂ.Xmpï×gø_Jžx½Fb#J°V²eˆ¸ÐAÀ"v4ë‰QQwéÝÄ©-4ÒABAÁö`æxW…¸Ò€×æPxfRouVYm?UY8ëÎkªà¤Ô‚Ce1ÔÀZ ÀŸˆ™<ábAÐ!$¶Vw*„Ï@O(ª’’¨ÊÁÕÂ,U ²Ü\8Fµ'c”ÔÓëÆ8jì¹plôW—î`ª@4¡y?š#Ð Š6 ‡ /Møø€Ö yšGV ÁáOÖ.jk–ùig£F¤98DîuËIH°ÅÒA.À]“™¿œÎÔà ”!¸Vi[+{R˜àÔ†$òSqƒÈµ7ù…yxE8Ï^n¨Íi5Îç3Žz6~ nCfø¹Ù@þÏä@6€ÿšý¦#¾ Œ …gí¶=ÛsÕ!ÿda$Y¸ g ¦GœAœx®¥[%Ö×£a‘Öx±Lú˸sŠtÐÛ#YMá. _ŸšŒ=YN àð:  ‘¿LÑ¢|øß -âÚA^¶ÿ!oTã0ÕŠúÛªö7•„îúW¥ üšÃ°¢  ŽìPlþj.¼ìEÑI'&Q5 77˜[†è6˜é3¦!ö@⹺ŽÛ cºz–÷Hç$K% ý‘RÚXxßõá‡Â…³Á-«ÀÌ Ú‹´£ÎÖX àòªáâ ‘8¿3¹QT<ú› «U¶Å†ì½'Óxä@k¸Ä)$ám$/l,‚mLµÖ¸7ŠíÊm¢ ùU»ƒ»ÙJO ´ß´\ `¥´›Æ_€¼a™µË6yŒo–Ä“rs 78"Ù·@è{·ü<¡²Aè Ðñ@÷ï6دŠÎÚ7›â[+• ¹±[í:×Äà ,_T·—, R9"bþ9–¡H»ÃÃ<€"À$ !kj«øMs–5PãU0–e4§gQuº­Qà¿`á¿ ¤œ<‚_@¼œ µ<»Ðµ6‰*Š9'ªv@¬û<àæ Ê ÜËcLjáÌ Á wí£jŽ8´ò±ör.š+ª¶w»K‹X›ç 2ªà8£-ݵب‘YÓ¥8ïRà€œzüéÈ<†e£sXoÓAÍr BŠ!ë³àÞàÕË=>Z¼º{QµY°‘ÎLÃïÑKžyõɘèÑ+mƒð†"¼Ú`d  ›Î}fb8äîÎ2últªž3ARÂÞ™eæƒCNAÁ„]5Ç€÷Þ~I´½ì=ƒÂÛp:¥Aý eÛ²‹o°‹¢<ª\> àÞ’OÀ¾Á•µÅáÝTR{¢;ûkëaöàãä>Áì#½²A(á.!·f€ Õ2ÈYyÙÑ{ê¼eºMê{µß[ŸÒ×?¹Ýw=,?0`¨à<€ö>é° & aa/ÔÈî¤Øõ'vmÅáÝŽ5’ÚpI1k€ö þ¼ ›óä÷ìa’}ìúÔ*x·'Xt¡JË–EÕ¡, h  ™îp<ž „!zºðv·ƒÆ;°ÛcPÔe˜¿ñú«çÄ»õ"7ú?@œ拙tŒªÝ2 ¿4`ô_Ÿ¦@& Åp ‚`ø8 ƒCâÀ:…ÄbøÌ7‹Ddj/#x=i#pÈÔPHæ”Îi5›Mç™Ôîy=—Ðì…Jù gqØL– …¿êxu6!N…FêpútB³«L«ðGŒ¡,q™I‚9õ®Ùm·[îëÖö!œ—ŽgkÜ×j‘û nÛ]°àjðˆ¬zIK­á µ–/!K†Gaµ…*C‡˜æã”Í2«–ÎÄ^ogÙT~Qž‡w-–ÏiµÛm÷Öà&NVÇôü n-žƒU©Z &•æDáXø-ô‘6Œå¢]ßo¹Ýïwè uBý£ÕàøL”ŒõÁñ1îèãåéõ-êA€Ï8Œx§Ñ,8Ã(–—»ðdAéfcœ‚éb€Oh $Lãõ?Œ«âÊ#  þ«O£„ûÅM,Y DK$hQæ{µmiF<‡‘„{Gòƒ!' éXœ¸ÑŠ@Â"¨¢¾Œ«›BöÀ(JÊ2®‚¦ö«o³ðÉpPëƒPžíHsDÓ5'‚ùc/ €‘4då²1S+'1I Æ“³•,+ˆœø‚¤ð(àÁ0\×GQóHøOIPjbÒ3RL[:°cMHAóü•QCÒóš†-KV5ÃÈ{QÖu¥k[M` žU³’{à©1Lxè½ÎLSÐ’œërÙ£—P^ ê}’£u%ÌöÝû-‡±ð~C©ri›Ç€/è“ßAÔ´VÛb5=S\²j—OÉ•N«c‘käѦ'¡î~ µyD<×þ[—eù‚F SÎשÖ@ÚçI¤:¯Àn¨ÖÌ¡>c£héµ»o˜ýÅd]Ñ>;EFE‹Þw4¿tjZ…ÊxÀ„¨Þ ¢U±¤lû9ˆjBXö]€€ PÈ̘öCìuU­nÕõV‹KúÔÅ©¯\¿bKi$L¨qÌ·N0Or¥wDQMç‡âö<“A$±ö*Á F;å›GKÓtñ€((•C¹ #Xl5 Ú/[ÛfùbZ`9½.…;ËÎ°ÛØ{;½!úü 7#&ËÛúvÈúPÄIRiS4³¿?œ$XÁðí`PÛý~¬ðÞ ÕB+صh&ø§è¦k©ÌÿΊïB;ƒ÷©`'¨S§räÏ ³ø4 eä²5ÌûÈ3_b@5; œ $Ta€E 1R0Fòâ+É˵g„¼œÃ9Ìyˆ¨8PLü_@$»X9Qû ;‹aª8xÀ›xüYËÄ…P çÄõ?Iãõ'Ж'fJ>Ÿà"AØ C¨Á^˜ b™t¥ƒìtœÊQa¦i÷'…œæOÛ[]«%ù¢E耨&Á¨Å Q€`c Â0¸Ý+Æ~ I*³gš%Ch; ÞAIs¾0†ç aô\€-ÈP$†@€#’ô9ȉÊ5<Þߢb‘R¢×öbàu2b_Kõ¶B˜¤j„$ÉFøÜÔÜ<0X‘8ÝËb`ëÃH8 !4Ì °nCŒ0„n´é_|j~Mm«JdÑ$Cd” 2lÎòâTøQ"è] áÈï¤Sà'MìFdžÆ#ªz}¦9*žÙäfÌqr<æ·T» ^CX+î‡NhÏ‹%sÀò]„)áHi>¡TQѧã×[R•p¥UDØaJÍ)04H€s5AU#§…²mŒT0†è "fj+R(5(”±·À©Ô HÔö«‘²9ˆAâÄ|±ú˜Ä-ªÅyù ˜ü.KŠ’J‚{Wƒ]YN´±W Öàu+j¯¸ÔÅ zÅtu^ÃXsgIE4•%)Ë8 ä[ÊïI”UŽK"žViw‚%Œ|‰ÒƒHL§v"ÓÀ#Eøª3|ó¬8ðøck~*mÖшæßÒâVSd–Ç7Ú.Ft‘ `ö©Í{OrI€tƒI‹!¦[Ý®&šhû®OeªYvjÉ,óˆ°ˆ€óxØ è.Uë½„Ì …aBæÜ]24xÔã&àO[ˆžGÞÞ<àΣ¬çP¼ˆG°Ïh‚`+½¸6Ô‹áT0æýEœöü‘R¨àð¬¯ms¥F±-žh” W$Z\ƒGé@ð: ëÊ?Õd_·d™×K98qÍ.©6FÛ2d=/(T¼â„9„\S’rP â|ÐL†¡*¢e3¾Ò®Í㨲ò±ôQ@3ƒ»Gƒ2UÉ "8_ ‘„6ÀiG‰æDâWkg ×RÍbÔ¿ _|:åb–# @ø2|Q˜ï`u£I‹1¢ÀXCÖT®üðú^ü2\˜â<Âãäb¿¿‚ÜauÐú#I–‹!PQB²F‚Õ–œ ðÝÿwöód0‰uß§0áïOÒ¿Ü„ gAË|Ú¬?}TÈ^ ÄäIÀèðŸ‘húÞUã|+Ó£zúÕ!Kî !Ý`:Ø8Kð@€¸-„Èû±²q (4›ü:›¤“~ ð|€2‚4H@"_>x\…PbÓ镲*+:Ÿ°Æ>Óî"»Ä)à`†¨q‚xB…€€)¸¹ P¢;{ª ;8ˆªµÁQ0´iô˜Ëþ£Æ ĺß4Èù-€Èœè)¿øPƒx%AŒ/@ ‚àL,›¥£ZV5«6£, š¹ ñ¯»˜2@Ð$|/¤0„\XbÉß.£¹2í.ãürX“³à¸‹¼“šƒ0!ÁtCªw‡Ð~èÐSÐr‡|€%¸‹ì"È-é;¼PüɺB‹ÇªZ´7Jº¤a$?ð…7\HE©£¸/ºZ )½:Ì6qs¾ª³¬³ö- á½<¶¬84D:E²ƒI¸U,>*)Ç:úŸI÷ :ÛBqB †CK,9‰æ°|„˜2‚$@ìh'x>(apYX€SF1r?sú˜Ô½óÁ몌ûNÄ<Àƒ¶=`㜣¬ÌXƒp&G|‰ì\¬5˜“(™@¼*³"‰À§+ÕÑô!”+£’—4 x1‚f„‰  1˜[F¨l€k ?´~8\s(Ó+‘ðŠ;”uG`"F|—¥ðn8wø>$I‡ò±Éë`@QŽ :»û!Ð)ÀE”ˆÊ,¯ øJ:zÚ#bÊ™òÜÁà?ä)HZ·Óu<©©6°Gƒ!Él¯ž 1 [Xb†º¢:§2”ÈL¨ë¨7Û‰H0¦Ê2(1ʽ¤»Ðø'„8U†k|,6Š£úM C>" ;lÅB‰Ë˜ŠÃÈZKqg=ée:Ä­6‚tÊÍÙ4À0›x˃jG §¸sëÄâ¹t¼@#ŒÞl¾…¨U†4Á"$1áÄÍ}–€/™ö£BýIÌÄ£Gœt˜201‚—NŠ@„À\†h9…]ǸFLÄ×9Lò®²+Âs†Fú–—d#9¥L<¹ÁKJô«‚HPdÝO… € >xÝM$ ÃG,jÈÐJc°8z‡ÀL@Ø/‚ Gй¤@L°Rj’ê+[ã­ÓfÍbÌ c´W?’àFÓË0ˆÀ´õDöÏ}!ÈoHxè>„ø~‡è½+“ô’³¥N;,¬¤ãDñ˜²|ÊÈ„ø5Э%ÓHí€À1‚€ÎKÃÉ.&j£¼c#RˆÉÓP¬˜ÉÌIøðð ,bx¦½Lð·s¥AÃB¼¯êüͶ,&ÆôcL+×óh+i/ãZ·Œ·Ì}´ùØh†ðm‡8w",NóýÐÌ ‡ÄI*ø~> /ÂeN,ÛgO:–±^²‘T|ÅêÓ¡bI)¾WR:Vد%|€AãáNÔð¥ VdÀTžB$ÅÓ借[ FB2:»I$É]aW „UøFb4üÏ$àŠe ¬ÚRÂ()û–K¨,pù¼ d¬ÊbÇôý‰à§L¹…0 pØâ™œ?’ïS¥§BC;¯´þÁB³W•JB¥H3sZ½ã–§!Hü’ɹØ€ôψƒñø˜P[¨ €è €{¼€È2u¯·…0)ÛÖºQÆD\Q¬£³gÜ|„‡ZòØÍ};•LR—õMLáTÛK[ ÆÃjtBC´´ðá9˜|˜1P1Y’Hm‡ &HR ˜|SÑä³¼YòW{u0%ÎñB§òˆÐ%”º„¾5kK’š+sU¶óÐ+B;ã!,Ã#KRÓêEÝ-ÖÍiDEyÏû¥Ý „MmÕˆdIãÐ:E*mߘ€X€¨8.(è µh ƒ(F]d½!.Ë…NÕÇÕLj%H:ƒ¹}I“ÅHU7È y3k+*d-õâZ`É¡QÊ?µMJ¾§%<È»µátU7¥9Ñê…œ¡ÇÝpHƒ%É]ÚݲUà}È>„Èspy€)¸UP3ò¾9'¨mëFÓÎˈOÖWêú“äòÚ\RV‹”^½u§Q¸•ÐÐãH\^ XÌíbº¶·MaKã ôÛÈ}RœIì›8à ø*¸:}­0 ƒ0E°üã;uªb†úþÕ[VÖ . ÑéT`®6Ìuø¾¬™åëÕIÙ0ôœ;$PŸuŠ_²ïI2ÔdWRº¯­¼Œ™_|3TL Ø„¹ß ‘âÕMÆÜqÅû9¥VV@©€„– ž! $˃LhW†PkLÍU.=xÚd„áS…xTTb¨" 2­Í/ÕóÞÄäáÆ,V­z ~WtžÏ;ö›Íg_O¬¾O“ÌÙTí‡úò‡è}Ę€ð @"¸,ÐÁÕW¬6E„V^1óÔ\Õ”ÈþI¼-9=ëI03“%>te…°Ã8bþP¶kâ_tguÎ-Õ#tÑØ*ïÜŽH– ²Ÿÿ ¼¶W£d«ÞNZf(Ef£…çÖ„ÄZ{JQÞÅëSžp‰…–&iæªÈ^P;0[*$|êsáç®-´„ðXAP)ŽÖtØÐCâÇî·Yþ)(„·ŽM”õ(ÃZ«ÙÆ FS(q.ÈÔƒaek†^/âM*äþ,kÀË|)œ°„1Ž" B°#pÊ«€Ð3„Abãb”ªV¸(SgßT~jD5çÝö^=óÑÅ‹º5gÙ˜—”ÖH&‘–ÁÀ¤¸æ9ñÛF¿K.žéÔÈ™mVæK]±f.ß`nD¦]pI&ƒ ¦® Ø`¸o€F…0e¦€³°ÄâµeÖLؽûBT8nÇ0ýh¾¾QnB”†dÔ‘Ej†ŽBþéùÔ•·U•¢äÆùÜòÈåUjZ†½ _§+¦´º™Gé‡È|€x€@=‚x!ƒ8!žÐ4>oâäqئӬy=ö‘VÆ1Ú$´Y ”Z—íí.ž6}w êƒÕâöÓ³Mâùg•/cFLI=¸ïÅ”°½ŠÕñT^)ä ™nÀ/‚vînöï u‡˜zð@„°wÑ) 7?‡ ËQÉ,q;:R1¶˜?¾cÃ)«ñ¬`Æ@Ìd­lb¹UlÇÿ f IÞcoÎML¨`Žé3Õƒi«z€ °äI‡ø4‚ ñ" îD¤¸ HCbض%›K–»FúÚïæÈ`¶RamËËUðo|‚Ö¼^4%^¬ë¶ët ÄÝÏíÔÿ:bÿò„ŽëÊ´ÚÄŒæèÇ+l¦aR%нVÂîõfác‘(gO@{„ˆ/~î¯0 =‚ CÈk‡0u% No“Ñé…¥‡!æ-k¸oBî­‹j¬ª2›NlVP`âèÖ霖wáEx%¢e?ëžqeÆ ’yhz°( „ð3ÂDõ 0€Ð5*X,¸ÿÉÍžöZ: ¼ªøŒì—aôÄ ½ót6äðCvQo°ÌaÒß&>Â'9`åék0°p›ÃÕ–/N>{ÀM„b„³Ÿ í›¶ëÃÇquLéó‰ˆ{‡Çqw ·s Ø7Waa9YÝ/åÆ:v¯F·Ç¢ö3HOœsχ{Ï~vâöö÷vVyÎáÂË]çåæà»HMðÈÙ½6Êjg‰øœÃ<{‚`Ó(2‚Ê¢ùÐ5„òÛ!TúÄìMSH/†^Æh’Z6ûÞ‘foÕ`á¼u'ú7&çw¼ì3ÁòHôw½Te9G­ó×”ù¶}Ú]EÊ­Æ£ýÆÔ ~ð(±û*°^†(=HZɶôû§öö ju¯p"ƒ¼,Ú]Wéܾ.%gÆ¥úåÖHGBrâˆü‚ P0 ÿ„Àáø4‰ÁaP—ü…ÆbQi+H¡ÑøŒ*AÉäÑà V)™Ëf³Yt¢C$ƒBdr9ÔºLgt)L5Úôz JD“©(‡GªUjÕzÅfµX ›R™T.©8­ÙlÖz½’“4‘K)[UÕ%“D PËeZ6¾Uèvû¾At”a/·ûZr¾E/ó‰¾+;Çâ°×YåúO8½Õ3¶›?¡„¼^Ï„‰p¢b´:ý†Çe³ÚmvÛ}³°Ý($€À8‹¡Æ(³ù–+“Ž¢]l—º4Fï>ÌÞz0é/^×<‡Åh×LGJ}‘•\%½¿F%ÖÁ{lwÝõ9Ìø}ž¿'»ñåÆs½oªÈÂ8îk¾ÿª«‹Àû¦i‚„·,J©üÇÉòJ °¶†Ä9¨àØÚ@±,ĽI›DÌ»ìô½ñ#¶Ë¼®FÂÃÌóèÜ1o2«­Ë+¼Í£lë®éìH±Hê 7Iz>Š0ޤ„Ê>ŠˆÁ) É"¶‘Ûäü¿i ’¾:0ZðžÇç‰î|à¤1Á¼o:ÎÓ¼ñ<ÏM‰Žm›â$N *FLÔj’DÓ$ªâ½ÓBÛÉŽ¬Ç(¼ô;E¬\{ÇîËõ RQä[=ÔÔd ¶)û§2Iq²/MÒ(òVš4uªàñ¶ ™ô~ xC Ú€•Od« àÚ@&òT©&Ö‹ ðźqd…¸Ñ‚±[­/:´ HʳžÉÄîD´ø0êDœþF1£úÿVw…,8¶š’ËhÕtú¸ˆU^ÇÕ•HwKùÚ©ƒÂù?µ-̈ÀµCÅaŽmÝXG˜%65ئ0ÎvVI’äÙ>P‚çÑö¤yÈwž”¾÷ó߉ԕ¿Õ˜Þ5‹:ü¡ c2Ý'.wI¬¬ !+,wîomÖú¼FIUC ‚Í4Ãç¨ñli°WWÞ‚“!§”Ú&†i@2‹Ô(›d àÜ?Gk*Ì[JT^’móê3x&VC.Iëc»¿h„ÅÒ ˆo©ð›|$BÓ æÅ¥ÓÚáœPŠaZ3p àÊ7րΚé9;Ëm£¹WFŽßûãs1¿åqÑAH«F#1c†xÜTpé°·&üQq€\nÁ2¶¨q{š‹’#À\ÒÞ´#cjiÿ«†Ðè: ì8&¤TC€p8Èá#ÔB2~°ì­¥—eã\fv­«)èàØM¬0m0ÅûÄ4™&Õ„ŽJ.WÈÉ’¨”I£Žñ%NÃ&4öã¡k`j)$ÇUGHb]È0Œ¶Äܨa‘BSN™Õ:͈x‚¼L ñ„€Ho™›°†%7šb’¦0æ.yòÒD´…ÉÔ‰´4kB”Ä„’²R‡PhjÍÕ{ŒEêMÚHz0î”Ж2Öƒ›b*=GÐú!°5ƒÀJ 'a´Ä=9g4fYÊc”ÆèÙ!¡ËÚA´Ýu3ÕòBê!ê›°©-$Æ¿¹iÒCÁúù”™w”Eu–ƒ4£SŽŸóÔ ch±ÃŽÄÅθ" ‹[T ~9[K»lâ@,…iÌ©m}¯Õü‡P*…ÄÓÐ4Ù#>$+[ó}ÊËé‰U#}\°yöXõ ÷(<0u R~˜0ã‘’iV•/Ñäfž‰Åv A ˆ`¤¬¹¡¡È<ɸ}Ueܰ™N•ÍÐú³Sä™û©’V×k ®; #63»•¡BOÈ=ŠÑ/BÚ¦Vn!±¢ej<È÷iVh!µvUɨoM!–¡°áßW€¯^í­õ¾ÑHI‹Ñ|ň±8&ÌÜV¾š S(Íõf¤•ൠŸ[âög¡qH‡0Ú['i6:JÅ|MX /(í^·oZTfQµÝ½F j‘ø?‚ô9‡P€5÷+@t9‡Œ]#luÛÄ×{Þ›ÈÖl­ºµPê¯ÏÛQ‰Í|ƆSRª›z‰!®†¯~6Ú¦K„b€Ì¤…šdÜ/˜<xû8gR1†àÜ ÂPIã° Ùñó¸rs8„Ń2É–….…r¥-—0NÏùõÌ7.¬²Vɳ GèV"˜ò «xKÇ8¿iÝÏ­sy¨ºûáSJŠ­ºY2–áð>ÇØ° A¸:YœŠ¨Þñd™!"%Õš®x¦ËbüÎö^e½óK½ÙgYTåØh:bÚÖ£Uªít[zßY}šm$¡ ®Â@,Àó~¼ÝÛ½< ´6B˜—¹êYBÑ <6Á¬à¹ïÜ#4´–ÐÚW-œY!jÃè±{Ã"àí÷w8|‹Ð.ÍкƒÇ3¥´×[…Rjì pQ á#qBC¨vÕfFÈÌ~ªwÕxNžì›9ÁSÞãÈœK+jÇò×Týì£÷›‚8×OEk›N†,VbàÙýz¹SÖ9¢æ:¾/Ñ wÂ<+…ÂÁç*ìÝœÙo!°À”ÇqƒˆÏ­…Üw&áÙÝ;¥Ð½6Z&§NÒ ÚïñK…¨xoCîÏŸx{I¨*Àô#à)h&ÂècíPê¡ë{ô²ÛR94[GA¼? –—<âÚA. Šºï§’·ÝW¦j’žÁý"­1yü7­ÑЊÑtùo ’"­qâ‚ô'Xûüö§ékŸ–ÈOïv6T¼¤‚ø…p´×eòÿðŽÔÎyÝÃ{Ow+,cçÊÓûÄæ=‹D)k—Î%Hä~¡j8^Ä¢îŒÛv6OLTÌÈÜozÊÃì¢Z¡ìaô`F¡P €ÚàŽÐÀîeiFoìÂ1ªÖs¢z®MÑI´ÕãÒøÄR}¥}†~øk¶ëk€þ&ž«¤<ð%vÁë>ðcþè§@RˆÒ(Êæi"¹kŠæÃ^{ ºîb,Mì0û€zü0¯ @Á²Àªü  ´MHËe¨…Çò;Žç ÄñN/‹xÒ‹6Ø®rbí¼¬âàº0ïJŠ›ˆÞëeÊ3eJ—(æÿ¯ô³‹°Ð @øNªì˜õP”ê*ÀÛf ~Â’B!ú` ˆ€þ€®Ð îFúöêºoêŸé£Gw.:ßPrßðæ•ið–—¬’Èoú‹(—ðÚQ ”³æèëˆþ蒡΂+pœu¡äìઠ« 1« ¨ÁÈ ¡,ú¡ü bv÷1hÅî°áGV¢Nvî†v»¯Œ¨Ê,rÏZÅ0ø(ŽªGÂX`,<à ý-Àð-;èBbqôÛqk RZÏòý1æ›2Ùò&ÚäÈü    äà&`í€ÿÁaP¸d †Cb0È„:#‰Â£8¬n3‚Å¡üRI%HàÒ¨T:7–Éar™œÊ#"‡ÍàЙ„ês>‹Ìf²Ø8i6¤Pet™üâ‡N¦L¥2ꌂW=¥Õ©Ó;þ±žH«Òz»Y£Blñú-ª©)£?îTÛ%â÷{£Ê¥Ãä}UÀ`pX<& ‡ÄbqX¹+íúý#Nk¬ Xêõiõº_¥Ù­´IdþÙsžCë³ÚÅRccžë¨T©^ÂÉ&’ÜôÛºÍ Y·§ã8\:ŒWGºÔÉ"Üžâqf´jº9¸^ÚOž—á¨ñ=”~1ÝâBŸçð@ `œP0X3Ãïć&üD{™kø}xþÌï^Ð)J‚@ä3ÍÛ ¯5¯ô¢´Ë:Œê¼>ƒ5 SJ¬´iŒä:ðì(Ü'Pz€°8ê$’DMóö©CñKB†ÁêFè%« T±@B Í, [÷3®“4ÙBÐküyç±* «è~üÊŒ¥)Ê’«|gØ€G'Þv€  1Ž4f™"ÐØÆ)Ì%#MtÔÅ»r´ìŒÂLCŸH.¬A>EhêPü;Ô O:³“ÄI?(kdÏ20TB2ñŸ¯0`Ž Ø÷Nôê Cs›FÅn y<ÑJ9CÄôMS¤2ÈûÆé*ÐÇC°·DKZÒ¹NIi ÃôiV3k4 ºÕ{}9Õitá[.I…{cQSt.ëÏmÌ2­óEÂî)-ŒuZ®‰§UÅôe=v°.Ùâ|IB˜½']÷Íõ}ß—éð~KDy/Lv:Êu»h+I5—RLˆÅ‰tÇ5tÛÂ6dXÃØ-ãsmÏS\?Wan܆9ÌlåĵmЋÀ®ri“e·s™p\¸»kUXÙdŸÃm&‚œµ­Ð~ŸçðFàA‚Omû*ÃØÛŠ¢Vl"«ê¤|®[xÎ=Žè¹I?ÒeFüÕ$âæ»]˜îÕX{[Za$'µ f߸êo~·4e8¢ï% ‚øÀIüÇò‹Ç¡ù ?'qÖ³ -%ùŽ_ÑÝ4‘’Å\!7ù•#7Ö:ˆÔØxÅÛŸF½+k‘O¹EãU>7ÕE]Ûãi¶:Î#Í”†ØHŽSKnÄr6 ÚV­{…oiË~€`_¤"Sœ“ˆcf/5n‹#Ž–z•Äfu.ÿx0»môÿŽz¯åä17…™FwNà“fyVÙÛl‹e¬'Ø,·4oMá7´vÚ)-KÐG ÀâÂê…P®51Ð<‡€F‚wqêQÄ¡—1â’´4=6Žü=(t‰ªm"íõj±´qC\kÉ´©ÂŒµ‘lAYÊ¡\¢gêlÖüD‚§ÂAHÌ»”[ÜhŽœ¤×|UG¨ú! ƒ@pEдÄðø”Z*eÁ"ƆÞ}•,‡­Ö1'UVôE…E±E©*‡ôíùš°ÆVêâ?‘$ÌÑ-¢ã—ÅF/.QR°ÊámVíys¶7´ÈÓ:Ë~lQ<Á5Ǽ%q@Ü ÇÉ1æAïãhja>#`HHØvC[Äc<2dÿªg€ÞJ<ˆæ7AÔ`&ªP’íé¬I¸9fóÙ$,y‘îAàIa(-O3Ãèiˆq¢y@é:𫢇ŠAϬ ¤0A ù œø ž³­ZKQìõºLj›ê´ÁÇ÷ž2Îx±ï«Wp…ì…x-ÜÈÉØSeS‰ Y+"vÐàä ¦ïò•(’´% !‚bOêSê2#pjÌá€(¥ ñÅf?;èWÉJ¼GšÍÍdë¯:ú.ÂŒ‹LÝïœÃ®»NnïãBŠNhxå‹€ô ¼1"¨„aì œ ¯|øûpx!€öÁ@AÏ–+ÖMæÐN”û¤þáËtü,ȃD¦ön,½í6Šp>ê¨Ò¢n@ÄÔõ‹B» ^Ê£© Œ<¿ƒë>—J•麠"ÕP:o –‹`¶¬þNØaz áÏ™ ! $¬Ýìz€ªx±ÌJ¡PÞ®.9¤"A)- ŒÎׯo +"¶Q®È2é¯NÌgI ím$Ö©É,Pûc|Iê ž À¾€‹‘pø!ü.@ØÁ(¡¦`ɦWípä‚44J'îL´DhÇh³ÇZ¶Ð DÀ¥Ϧ×*ΨϠ9J4–®¦õȰ9ð°hn ±ëÒõ Èœ$gO¸üQБìòôPc å "æž¡î ž `´+—1 €Á9p²]m¾ëïFe/ÙG=±K"R,¬ ‘lì¼Æºd jkòÇ Ü’p¨ýÆ# ä¬ÛöÍ2*0†¸þ°l ñkò &­Žáö@€àæÁä` ˆ'¸PJ ?´­‹FBÖÐGxÔ®—k¼Á ¿róN2Uï/)¬W%±]ã",Z8m<¿ãœ—p^~Í ¤B°!î ÀTA6 €ç& ! äPa§¡ Ló/±* +Ç-ìÕ p¯²Ä\1”ËD5ªäÕ¤ÜòrYލˆ©n&éRÆÀyðÖÄdñ rÖÇ®tëm\dæh|Víu)m ²d€.ÓpÈÒp@„ ä¡â#,ma$D¤Þl½ó^v3JÅpPá)y3M"ð¢·s­§ÿa Ð=QXÜëÌ6‚ ¡öà> 0€Ê Ð.ÀD ¼Êɰ”åµ 0ÀFæë/¯6Zê^C„Ì¡ìAÎÆDqÑ#‹;¬úõªgÄv¤1IJÎXnê„’²Äù¯rʳõq¾µ ^3ì/½ ,E…!Ï¥CäZ„qb  Ð àg6ósFë˜!Æàªa‡-22ôÐW,¬ÑêâLîö®É0˜ïÐ\PÐá2'î I CÒ³5žü¦Xö”(N%•L$Hê'§D0ªœtÙi(ã`Áö ,€ `®`ZEGDÀ¸ÔoTõqâêrJQìfÔîÊŠë ¨MmÌü¦„ñEÆ»lKJ Gu?ÊÉHÑLáô\Ö"¥R(£C¦5JÄ\ki{'@ô¯œÛJ-FA ”f`Gxª!~¡ž !L@óâ6îüÆ4O.‰¿‚(µCáC"9lIQ08‹1®zM €0B·+N(‚²X§P fw5T-<b+F `Ô Àf  w¨ølÁFÁpš -6e)qÍ#Ó'UqJ-° ̃Œo}1°ÐE’§)’Weïªë¨z5Õt/m{q6l¨÷ VGAnhþ4·e·¹I%ΰ$ÃÈíð@Fa€È@,}pá 6ª²··Ä‘ÄTG0M*PŽýUµDvX+WUSk~ïUÉT´ÊD.ï¤~a þàÅfZb;$ÆLìýmÌ5In‰ïm1(×&Ä")‚šZÏ?rW»mÚ4/câ1b @Ö Àew˜‰'aü –èáÔ€ ‡óWm6W}©‡ö#‡r+US8Ò1+´ÚþsµMrÈ&zXüôÓØS4µ;)÷ç:Ge#dËbPôò@ €h Àîàºà¸•€@°¿ªr·Fs+$g­f„yÒ´X ³nuèÀ5¤\ ÀІ³÷’˜|åWf7c´¼7<õ=Ž8Z³þð‰HTU?*L‚˜LF§BÜ‘I|¸Çijó6 »_v æÏ$ ¬‚ ” ˜‰šeòÁÜÀ’ç‰÷7¦5BǧcT©d·_lQðÏP!9’ÜínV㕇x&Ö¯TƒbÑ»Yz…YQTûAþAòÁ 9 Mÿ¢Z NÁ`Á‚ áb ÀmUéA*U“5[3 ,ëdøyb”E”êK3wE¸NÄú¹|ym€éäô¶>® ;—ôÐ)ùq Öñ?„;n™‡Œ¥k‰†¡ö!SàÈ`ž Tà‹­ª"a Å[RíSn¡\¸Ñ}©92ëpïrp:[î™D8gqí«Ug#¬>ïºí+‡GZ“·¦V.d7K¬¯O’#L^aæ œ¹ Û1¹d¤ár@Áj «u«!—*‚q¤›Näªs¡'o‡ÇêhËѶåItd0Öù)4“ŒñÙ#r:Ý–u²ÔT[ Vf¤›!X˜íAüƒ. :à.@* ¸’: ²Û˜# F€ªÅN+QY÷ƒ,ôêø¾aš >xù˜1¹:åû{X¾I<´˜Å[Å»ƒ 7à”9jògîwYë†Ô„B¡JãHð“Cuñ†@ ¡ò  P€f`S¼¨8G¾ HX¤à ŠÃ¾ñæ@nزëÅÔQkññÌÕ¹rDó™€5#ÈÛ–0ä3ŠÄÍ»1+.Usù0ÀëüTñ¦gñ—)ïÉ"` 9 &ÀB 4 :Àh`U=õÊ¢eÂà©‚L?S„_ÔÓƒÓ÷ŽºßmYùoZц@.áè˜ ¶öuÔy×½}×ãÞÞÀ@Üí!øhô^<¶gxNou”z1:a5¶T0ûR @è`¼ÂÖQ¥÷ÂÍúsµÒ'M|T&ÀSÁxª2à‡]€0 F §6²Qês’Ú|¶ööX•‰@Îa A°==Åëš¾üRú•+‡D#”s&TòÜ àP0 €÷é~Íg`Hà ­÷ã7:‘è^ˆ @d þÏî¾íîï†áð@Œ@Òì€a¶?ßcõëT‰çéã­QKµ3TrýÚƒž„~à ¾åó¿5õ¿]õéü¸ Â ÿ«  ý+)VUÚlÚÎ8ߘXÓQ´JÝr¬D¾T ÿ*à˜¿aú.~!èûáŶÛaùw:½JFäOìT^×ú_ÍüÿÐS±vàÀöÁ¾J°7®="ª-Ç"Ws þAh.‚Â!PØ<%„ÅaÑxdB‰€^¯§±ÞNð`+‰KŠìx~M¾K€ô‘IIrV‹Çýÿ?ðú’BZVÄ*ïJà7l¤õ6¯z:¨¸0ƒÖø·Jšö=0Êx«Ä8„å"ŒDñDSEqdZ›géö$”ã9¶w@8½Ì“˪°\€ó¼Ok1p¢jÈ*-ì|á+p´#Hˆ#_%ÇcrÙ¡) ì'ïÈ’?ÅÓ$Ë3LàJI‰KKÃɲŒ§ Ë :Ý#Š‘þ+§© !ŽaÍ% CPôE2˜Ç!ž,•Ø ¬$-NèÄÝ:ÉHtƒ'¾rª "­@ŠOQ䶦%• +K)ÈŠ=WÁï¥i;=,­BÍžâpM0UƒaXkxJJ /’[!¦Zef¥p̳8# âºyÂã@ŠV%»o[÷Ãq8Gø¼XŽÅùÀd`(DzJ_gÎvƒãLIÉÜgÕ »#yÂH¤)KHÅv'³ qáxeÄ¢B=,©¯„± Ù/l’ŽI’BU Ùµ" +½Ï^B8ä0ƒmž—eù†c™4f!Æf E€ä€<UÇó­ù9U”Þ7 ¦wý àwÂÓ*u삾ÉL!’ÂF™ëzäPÂ=Q)é8õ6ɽJ6àUz¯~¶Y-ÞƒÖ•-§’ §‰ôze6Ð_–ë¼Áp|Ø\%q²\ 0‚'wŽ€˜ÓK6—ÀúŒ"—iúmkK·À¨'„¢&°ApGRÓkâ6‘©s¶¦²¡ÏéºÒ×øÌ"òŽ'«Šñ ŽcýÕxþG“åEáÞpŠEhÒ{3€ùw§/ÌÞ½†ÇOó*aê}ËÁ.®#~ÇÓõ'1."û1>Ó´`œŒ‡Î6± xx©õ¿ø`æ áxY‡1~8F8 q©,Ë«¶ýŸ¢T.ȵ9Bf•ÈŒj ™Q”òÜÒ;~dUñ%àHé_<…´…‚a0’@&P…'&˜å’Ù0>ÔØ¶.¦úb‡GŠÿ¡tK‰‘5õŒaÊ3‚ȱ ¬ìB^ä•2ž{n½’WîìR‚HÐÚª¨r§+*¸ù;vêJ˜Ò8UÝ·2@øÂt)ÁBDéòá€C4­³Ã”èÑ LCoq0‚à« d”“’Œ4}áøŨrcŒe  šzW ¾CBªãÉ´§^îE§Ad‰*Íó¹6†n:PŒ!d¬»pœL„&ÄpaÑuY¦ZÃG4÷ã;ÀZàü:Èù#/&”Óš‰RQ^ø„àB7Àœ&4àc1uUEþå ³Gl’fKã Âh$¢X"Ë©«>W&!¢½åS"Ëg+m¥¨B(zG_œ^ Ê„?t‡Ö¸>™à¸+Oª1FhÑÍÔu1`Ç8ô@;BïIr«b®>;Èâç ÊMŸäÑÌ$W_MݵYG .Ï9êD5¨Š(  €ï£Lïi²µi–Å÷< ŒCˆ ø;[Eê-[«•t´áˆ#ÐÑ€Dú ÷fT\sqz€SZ_Ô=/*…"yOA,=^¯ˆ¸‰ ~“§]jfäz±V«í‹±–4†Œ±Ð4д j¸ÂBmBìɉZIâ8ˆ5JLcq´Œõ«iI\—Åš)ní8§Tãh Ë®$ªy0^kÝŽ·‡ô‰°|Àc„Ëw‰ÚU[ZWM)äŠO-¸˜¿{bhW··VëQÒ=‡X[²ƒpx ðtjZRª¦»&6ÇÕll«Í‘ª UÖ‹ŽéI›Aqn3´Ž÷ÞѲ2?¬K¡:Ü Pˆ".¾ :œNÛͧ46¦ìNsj¨!Aèx ²ê`ÌAˆbhrøS q_Y€OT-º6f@è#eçsøÑ9JH6ÐØÅÌvgD)Ö)D1ꪎ8FÛ>0šÂ8•x+dó ƒ°…,6 7:bÈš Œ  €ü%‰³ƒ"èœ;‡ò†kÍY ÑrðxW‰[ûÕr æzlÓ„ú!vÙz§Ow÷¢ÙL—o¡*fJ°œ',–ÄNmÒ…À‰Ðy+¡ûB*y cZžL¥Hêµ\åˆñr’”¥+1­¼ÄPyš`XÒº×[2ñ¾|"UPB¾UË:çkí‡<>Œq '† ¥ÀôGpÐ]* Xœ\±Þc¦‚Å»n2f ËA;þŠ|ƆÐx+BT!èø¡²L²JßÊA$J„µÛ}(V¥Œ‚ìaÊ6Ñ‹^Kf뱯"Y8d°ÁÚ½»÷…ÌYánEðt€˜+0زÔÁ©r+/ëòdóÏŒ½“ŒÉlhÇéúŠ O·V},ÁzEKW3-ÒØÑþWÝ”ÒØ&ùß?è}ï[ô€ãÉ}{“ãþVI‡8ü?ãĉk;8=ƒÓùÀ\ ø\^p`¸…€!ë>aX›A‹¶Ó¾º,;Û/ëo½bD˜Ò‡¥Bô8TšS†*‹†/ðòˆ€Í‡«G‚HJF@k—½ ©‰%+æ1cÔ±Ù¸¯Ñ "´¼À̳ËÌ b–2Ȧ"“Ð>@DAÔ-BØ—…Èp…è6†:ˆ (¢¼ ˜“ĻҜ¾kÇ¿~¡Ú,·#>¼s º|²ù+' “9ƽ¤ÁLÁ¬„l.7p>Âæ|$›2ÁªT"*™>‹§;ùOCÄ"Ss(è0@LDÅ,S@|† 1“Ô36€<1| ˜âC²½ ´9콊4šcþ2î ’y DE3h@Qª·ÅËךt ÃD‹CW„ ¸ÜcFÜ…Èqà6ÅQ=C(EsüÄs‹kì$9Š,ë/8ÑŠ˜¤iÆ‘¢Æyi£ª„#´ûçˆ+Í‚la „tn5°…E“1A‚šÆ[¥ºçF“é’£È8ðƒ@,PƒÆÔƒÈû­Àx]ƒpa¢R)0<ˆù0ªÍ¥3AGTIƒÿªƒlÇB14ІÈ‚T‚H43h……¢Ðç6»×H¼Äs²‡Ó“ÌQH.Iü©7doG`ƒœ20IJ/Gœ>Š& U¼±µ†D޳ÔL¼É±œÃq˜ì¸A ¡ÇYQGò3¾ë0¢ûÇÁ˜&žøGÊ›5ÊÈ‹O²§H‚ø<<)™ŒñŽ:rX‡}¹8ôŽJŒÁLÛ5…€o˜<8> ür)ß<‹;¼»MJT9F‚ͿܜCì8ÅÛ…+Jº1Í”A²ºùøÇ2ã÷¾IØJðHLãPRœ•Cظ»$×JB›"ì* üÌÎDí.¸>†H@…l:³¨€½˜pzw?ô‡#(ÅL\ŒLT¹©¢cÆŒ}Ë‚ÏMk¼\GÄêÑϜ˙»­\K!) Kä¿N,ãÎÛHR‰íI¬5M»ýŠ×ÊH¥¼Ë‚¶ôÚ,μìÐe*às‡°tHg`WèX>(Œ¨EÁÎz§ T «dz£ ˸ü£ Òö:$MÄ—ÁX¶P@%ÐU®°…-%‰ÌPœ£¤K€V‡žÕD¯Ä=WãpU- I˜÷V`Ô˜IW2¾V•j ‚ k˾Y9Œm<¸[ÊH‚P©·Ø(ôÕXAµW@/Xe“]4à@†`A†s€  ëˤ³Y½n±ä¢ Œ¼CQKÑâýÂÃ9ÝD4[OØ´7ϵbVÅCñ¥H‚`Jå…Ù:­PSspט¸ÖH»Â¥×’Zµ²O†ÀP€iˆx‡ØxÙ‰Ç-™‰”ÓÄÐÛNÙÝ{ ´è ̉ɴGMo;ëð±øzàzh‚hIÚ¥²ª%¬j¸CÍ!¡å ô–Röˆ]°¸AÙ-ÆÝ ††ðyðJ J…HnIÆiê€#ë¯y¨¼©Â=m(B.² Ü/L #T‹ÎiŸ)êá¿eQDÔ´Ë] ØÉ­ÊX5 D€€ø&\XIÝŒÜ|]XÅNGÑ Ü¹ï•ÌÄ LU°µq8/ÞÅöõ³„øH¶Ðx`ðÃ¥|ßÍ¢WÅîO²™WìÜ•b¦CTl\ÛµkÁDL¸M;H©×(`ÍÜ=ê\XJ_j|ˆ©P,A`Ð` ÿ†CaÐød$ ƒ€a/ø¤>%Ä#P¨tv=#ƒ¼Ÿo$Õ`—ä’ù„Æe3šMfÓyÄæu;žOgÓú…C¢QhÓ¦ÛŶ‚f ˜.f( €‘€ŠŠc0XÝz'ŽÇ,–7ýzÅ]†BâÖØœJIi…\¢ó«¤v/i‹Bí7ëÊA]ÁAëøL&×"ÅWàלujÁpÄcò×i•b³›EdGãÔš&$ÇiJ>§U«ÖkuÚý†ÆF*TŠìU›^c¬Ù«x v{y[áð¬Û{,Fë’c-™i{Éõ( å’í—gµÛîw{Ýÿ‡Å°s=œÉ–²ebáX</`hÅ[x9>…1ºÊáÿ Û"‘¹èrÙ® â·0¨| ΫÐRüú®oü›Àpl ÿ¹ˆü "póâ@0"Hzm>&´ÍCÇÅÑ|aÆ  Vâ!±nå1ï»9Á¬Ci“%C­Ä?"G‰ôx©/¥±”©*ÊÒ¼±,ËRÙì~ÅY¼U“¦Á8ofð€Ñ 8ü¤r*bÆHi¬€ÞAi´ò™Î´5-·RDõ2g¬N&E$˜uPT}!HÒNÓh?r ¿;Ns¼ÆÓ­ë&Í? Ë ²ÓÐÀçÎ2°·ºN¡/„Ã'ZÖÕ½q\×Miˆtd9 CGi¤€€H€èÅWQ¦Ì-›MаsŠÓ‘ì(¸Ô ô3Û22!V°L‹ >‘ëïÓPM RÀö…l8Wd÷NW”Š­Q­D­w€àXl•AM®OK½Áa¸vzÐÎ<ƒUWŠÆI’t¡YV˜&AäYHïW¦8lf!Òa¬@Z–£"Zù-­jçÉêЉ€õý€gz‰¢¨86‘ÓYªx“%¤£YèÚž©ªêÕÆO”“YaˆçíŒ\ھɲ¢íù QšͶíÙ&‘mÏpÄyˆÁ‹eáyÇ/í§G‘´¹?Ø}âÕähBãÛÆñÜzh}ŸÇÙ’uÖ¹¯l&ÅÂrþq´gúAÒôÒ¨VU…ÇNpú…d0õ½ŸiÚ×WÙZp…1¸RÌÆéø–0±öÞ>ÑmWÿ‘æùÊ7SÕùè_¨ö^Ÿ±ìûJ9¼y¥Q¼T—ç1|kž&¸à0xÞßá-y]'ãúþÈg£ûz½ïþÿÏÁFN*F𨣰fáà À?ø$–›k‚p]ç?—êþÁ3׃~6d̘_½¢ôm°›"É} Bd‹à«Ì†pÝÇÁ§ã ô8‡ÐýIÂ1„9Æ&£Hw Þ>G| ÐB Eà [dRŠÍ?yâä];‘ " ÑÍÇhÑèx@ VP†y-#æ$ò"¤pŽÌ†,½¸·ãä}&Íxè8F aÂñaÆhÑ£d/†1ù+¡ò?‡Êlr0À=ˆë$$â“/j=ÉÙEÇpùФlŒQÐ1DƒÔqÊQÝ#!tn‘ò,‘ú>xØ ƒq46Ã0/fMˉ”•ˆ€ Õb€ „BaP¸d6ˆDbQ8CÉôòA…ñ1†)HdR9$–M'”JeR¹d¶]/˜DßOçÓaà×g»ísA”êd¹ÞÎwëýø©@1¨TjU:¤•øþ«€Ë‚Jé¯741 Àð(>«g´B^¯Ç©0 À€"˜ÇjuZ¸M]ùE~£‡ h|œ§n©Žì£¨8 ÖpmvÛ}ÆçÁäry\¾dûÍÖ`£1¸ïC­×ìv{Q÷ÿu¾ôoµÝíf›½§âk9žÎgÑÄø~è  `(€?=¿çöH~(̓dG‰ ðžƒ7 Óxß8òðá­Ë‚åB¬,í9ðºòé0ެ5Ä D…Géôlž&ÉÄz&©ÞjG¹ÔjEçIîtÑà~ŸÇè Çêrü?Q ÇúhšáÉ#‰ÈLÝ·­üލÂ,'+Ë’ì¼”C2ú¡:Œ4Å3ÍJVnžFáì~Ç X›ì’uÌLpfùösùö€R´êh5QŽÉÞ}ã N2!™†Jp\­F¤ÒÌ$ãÓ• EÌ5M20µ5UU»fáämÏGËò˜ÇQŒzG›†efJ φùî~Øqìþ} ’¤Ù4;ïYÕ–‹”xŸGˆ´ d8jDÑTÃs*A–’'O8×Ís±Õ-ЈÕõ×wÈæüú @ËH$RIýWj)üý¡‘‰Ög¦hµBlkNGN‚Ÿóa»XÙ­ï$Ÿöh ¤ Ò›h^ YjZÖÁYLʰnD„\’Þ_™æ‰}Õš ÷lÍœgŒAØ|†=ložFôVqG‘´üa ºy›ÀÀ ` ‘@å\n6R4/‹õ€ À&ƒ©àÿ_ãÖJ ¯g»‹S’ZâÞO”ȨŽYpç™A¹p ›ç¹×ên€c&+pSÎGÔs5Í>Ìm{[æ¤ë7ÒEYã`6òˆîGLë_L¶‹›¿J‡ïtÞq¿tý®åÂgœ7mÝ£çYðu”†ÙDUÅIÑô NÞy›“\Ø !´@†„_½[ôÖ]šöžo½u÷Çuïûì,k¥IºSœ§±Ê€`L‡ò~™åÌ‘a¹'ƒâ‚Pì^Û4{¯Ö*7ÂÍ_tÌgš hì€)«?8ׂ‚_B4ˆðœ‰\g° BT¿Ù¤ „ÌÑ} 1¸(„(Ïhð~€a\9UŠÌøršßÈ À}’ØDßKb\°ê&"(PÌáTM\ê8ŒpÞ,‡°`6ˆ¥ÔàócÌ€ðPþD`/`À˜ÄwgRÓŒÌíÄö_c¢£PAÀc†è°,@pÏ^<ÈT@=GØõ@À¸‰@:ñRÏr8)ù %΄vdQâL&tJ>CÉ"Äp ‹4•H]}#‘à(`:pX©É8%b\«—K¤¸y9.Ò¸™â\@Œá€8˜,íÐ@g°9,ÒÓ-™œ$™“l¼É¦C/æâƒ a…ñ€@8ëvpÎÓV›Ç´§â%ó6|ÚÓì©Íåá8'áÚŒCÌ)‹° 7š‚÷ 4,¿¯©à #ZM@„‚ÿ>ú¡”l•Oåß@(áÍSN 7 ` !¥EIA5´ÂØ}AýИŠ0ÈhÕ+§D~.ºANÍRòá8\„¶³ªI%cÜ~zP¥DCˆ¦2›¯ sRªÁ §«¢ŸÕ“`zchP€ÙW«A6 0f$p ¢¦®ª®ú¯ZjÍ[\õv¼‘Þ>GxFá¹zûaÈULçÐ) ÌXm äWU×]ìE;¯Kš¾Y’è'ÆÐžÁüEË=aë\‰@PÓ ü À 4:YtY‹OHlÚâ³¶Ü©9Ê0ƒ½Âñª€»yVlU“ `œ2YÝdÎÅ´\öÚãлr´­ÝÕ&È} ”-Â8ì#²Ã]ª8k§…°aò™Þ£ýt—5ԼӺ뭳|É`È#/ ºÇø›nfDP&À˜rÁÐ*«t¥ð\WËM»ê«/¾%°o ©B[æ™gÀ|(°ÀÈ@€Ä>ðZXSK¼.ªðÎ5$‘T7‹Â+î.:“»` ƒ, „”¹Œ–Ž4ÈRwª¬s”Éj [ŽAmrÄM_CÐ~L%€^ @¨6a»”fRÌ2*ªl¯œÈk¡¤[1k˜3ÄÀƒìzZPKÂØ\¡xIœ^rÐ1ƒ:ª<ï¤ÈvzÏ™û@i‡vægƒ— dÀTmX3TÚAUi-=4ª¢0SÐA†Lµy,ÓY÷?€K®]2ÇÀà2Ã,ÑX.-X©ŽI¡(K±1°1´½pFBƒQ A(_Û¤°†ar9ÆÜl‰Ì±bf>Á°áÔm–W†ÏTyzJD3[®UT \»™f«éE Њ,#('à„˜>ŒÀ÷ … €3‰®@>ǵŒ¢Â!… ƒçS/ßJЉ€x&¶Jã²\‹ tï‡]Hfkéf‹`.@ø üÌ‘‹1Â,CXÆ X‡¢*@œ¾(ámîà Üaäe‡rÉ*_Ý8ÏñÿtØè0nã€WZ^8Í(ú@8аˆ+@h½˜ Î/àVNBwÄBlxõc`cu0PAÈNŸ^ь߄8fŽg¸‰Ð~'Áðþ0 ¬%Ä0Ðç½³IáèAø ‹Òr;Â@¶ÃÄ}uíPÑÄ€Th>‚0àä ù7˜z‡(Há×NÆBÖ}`» "øp!ð"hËc(, Эá0 "áè‡ÀÐ COà"i$~†rÄ/G(¼‚_ù§2©ì_ÀJÀJ4)` ’'ê߀¬€¦â‹eìH‘aJ!N¡Oú…i਀˜!æ*]ç< ¡bÁf Ð:"gˆ æâžP^  ƒAá˜T. ý¿^¯Ç¨ †ˆD€é$$‚€€¨dŽI%“Iå™T¬æÈ8«[êÀ`+›Mç™#Íôò0Š h’ uE£QéšU.™M§Sê7ýMÎ@' °pQ¯WàÏgãØ„!¦G©°`·[î”1Öøu”—d÷SÝÔnx …•ÔßÏwëÝýS ‚B¤ é2:H…ÇXlÖn¶q­M,C84 Îi䑪ˆ€¤†Ú–ÏiµÛlªoöÛŶR^߯çèÛéÞ/·’Xv–&‡‰ü~—O©%=³JFÒ€õ|rù>OçØ, lñáØ`v†<šM‰íx'›§‘º€`;ô¹éðAqP!•`0@Ф+ Bêcr&XîS…+HÓC ||à`@XˆÅšfšÄ‘„b¥§yªÿ-`ˆãFQäz¯Ÿàþ}½Q3ØÁazÊ!ˆÐ‚á<})$dQ¢D’f©"»Òš”xŸGˆö£@T4˳DÓ54ðÒ¢ir% Gûˆ¶Íi<€Ÿ'éòL„؈ ˆ“Å 5‘f‰IšÄˆ«´5#4ÏR÷>+ð ¡t ‡l–‚ÁÅ%HœÇ±Ì&"Iì}ž "ÿS$§Ñú}`@&Z‰À$‚UƒaXi$Ú‚&¡!*‘:Xˆ!è}ž‚(8#aé;h[p1à|žX’½@0 Û—CdÆŸÏIõZŸW( Sà.PB(d iEtÏ¡ªI‘F‘G;÷úy'¤hB‹á0Á„âx¤¥c lQî4c1„s˜ ˜=XO1ó#B1h€þ+—6…¹Æ[ ÆÉGY~r¤Ÿ‡ùùJŸSH°eF†€ k}_‰uBÝ¢Ù|,™‡a—#ZžgÙæƒB@”:Ìw§lûCm‹ §êq EРxGx9 ‡ úJDºÊ!m<# ,Di¤EÅÜ/Ýt­Ú # ņ ˆb2! xMÇXF™Üi‹eø±Ér–€~EÅLÁ'GÛvë†Öƒš'i 1˜CæxnÛă4ORùà:…ÃÀÞÇ¢° &¾^œ¥Ú·„zVõ×]¨E•ƒá°*"â@ƒ¿¹n&`Üc €€k:Í u뇙: ðŒ;»¢ïóÀxO¼£öÂÇia¬>&8 JHò9Ll3 AÐ0ÊÚƒHÁÈ¥ÚŽˆ€(€ V¨F€D@ _Ä%])ée‰Vw@t;K«¬Õ<°ìXn‡‘6'˜Bƈîa„vq؈ zDÀ$Ú Ãxfž'Ærnÿ@Ä £sŒ¶â$h3oxÆö¥\™í ,Gæ– À¨4¤%¼c£g#DC‰Q¬$Ús„ÃüèòÃÄJ ².OCÈ¢HÝ(Ò*¢cŽ¡d¡à€d‘ DK‚“òÔ“ŸÁ,5„¨’Y2%LËd2]s{u`À_` P™pv€@ŽÑœLl"ˆ†ˆPÇØö…Ôª&‰*&M‰Ðôe %AÜC  ‡Å*ë‘2¬Ó±“‚?x !䇰0Äé „ŒRÁH#Ƙ\gtÏiÓ™ä–<Ãè¸öÀX@( ‚p Á€3  €@&‹AÄ,ÃØË0py5sÀž‡ª¯  ˆpl"WÅ.¨Ž6u’¨Ü0ðÙƒtŒCsJÀD×0#Ü~À?˜„ –‚eE¬„Œo1¾&F¸˜cxT$¿`Ìvd®ÓpËaÆP¬ÌÁ«I@/P{TH¥T²²Î²ÅÙûWkí·ŸöžÝÜ{—sîœw¸w^ñÞ{×{Àýß¾wÿà|OïÞÃxâm?Rñ^7Çxÿ!âò_‘òžWËytÕá|Ç›óžwÏ;Ÿçý£ôž—Ðy?Mê}W«õ„§Ízßaì}—ˆõþÏÛ{qÜ}¯¹÷ž÷ßuwïþÃøàü_‘ò~W,øÿ/ç|ÿ¡ÅþoÑúŸWëb¯§õþ×Ûû“¤€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œL OùÌö}? PhT:%G¤RiTºe6O¨TjQÝN­W¬VkUºåv½_°XlV;%–™U³ZmV»e¶Ýo¸\nW;¥Öí´]ïW»åöýÀ`pX<&3yÃbqX¼f7ÈdrX\FO-—ÌfsY¼æw=ŸÊçôZ=&—M§ÔjuRݯ]¯Ølv[=¦Öå­Ûnw[½æ÷}¿àaà|'ÇäryXÝÇ/Ïètz]>¤û›Õìv{]¾çw©×ïx|^?'—͘ðyý^¿g·Ýï¯z~?§×í÷üIþ_Ÿç÷üÿÀƒ÷À, Á Ál ´¬- à \' Ãì=Ä 7Ä‘,MÅÔGÅ‘l]Ãñ\aÆ‘¬lþÆQ¼uÇ‘ë·ÇÒ …!ÈÜ"ÉL•%³r<™'ÊŒ¤¾ÉÒœ­+ËÊ¿*ËRì½/Ì ¹0Ì“,Í3¤ÓÑ5Í“l܆MS|å9Î’üã:ÏÌõ$NóÜý?Ð|û@Д- Pt=EÑ FÒ$öQô-KÓ­+LÓ”í<àStýEQÔ]CRÕMTô8u]]WÖ …OXÖ•­l¸Öu½u]×[^Ø „º×6cÙ Å‹dÙ–mœýWö}¥iÚŠ—jÛÍ´ƒZöݽoÙ¶íÁqÜ•íÅrÝM_sÝWmÝOÝ—}åyÒ7é{ß í|ß—ìç}ߨ2à ƒÊø.…á’N†âŒw‡âX®-☾5Æ6Ž9äÎ3ä™, ‘äÙNTüe^]—Ò˜öa™æ‘6[šç˧›çYî|ãç™þ…¡ÈÙ–‰£é®ƒ¤éškI¥éÚŽ¥V'šž­«»Z†±­ëŒµ®ì ‰£l[.ÍYl›>ÕµéûNÙ·î¦ã¹îŒÎ¿ºïÌÅ·o[îü»nûÿÁµ›ç Ãñ €?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œL OùÌö}? PhT:%G¤RiTºe6O¨TjQ˜ž²UÎêò(1ú=Sž ‡s HžKNicon_256x256@2x.pngû¸þÆ(°]¿†Ù™@œN)ê5)g`  tiffutil v268.1 HLinomntrRGB XYZ Î 1acspMSFTIEC sRGBöÖÓ-HP cprtP3desc„lwtptðbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiømeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o¢8õXYZ b™·…ÚXYZ $ „¶ÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤þ_.ÏíÌ \žXYZ L VPWçmeassig CRT curv #(-27;@EJOTY^chmrw|†‹•šŸ¤©®²·¼ÁÆËÐÕÛàåëðöû %+28>ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œL OùÌö}? PhT:%G¤RiTºe6O¨TjQÝN­W¬VkUºåv½_°XlV;%–™U³ZmV»e¶Ýo¸\nW;¥Öí´]ïW»åöýÀ`pX<&3yÃbqX¼f7ÈdrX\FO-—ÌfsY¼æw=ŸÊçôZ=&—M§ÔjuRݯ]¯Ølv[=¦Öå­Ûnw[½æ÷}¿àaà|'ÇäryXÝÇ/Ïètz]>¤û›Õìv{]¾çw©×ïx|^?'—͘ðyý^¿g·Ýï¯z~?§×í÷üIþ_Ÿç÷üÿÀƒ÷À, Á Ál ´¬- à \' Ãì=Ä 7Ä‘,MÅÔGÅ‘l]Ãñ\aÆ‘¬lþÆQ¼uÇ‘ë·ÇÒ …!ÈÜ"ÉL•%³r<™'ÊŒ¤¾ÉÒœ­+ËÊ¿*ËRì½/Ì ¹0Ì“,Í3¤ÓÑ5Í“l܆MS|å9Î’üã:ÏÌõ$NóÜý?Ð|û@Д- Pt=EÑ FÒ$öQô-KÓ­+LÓ”í<àStýEQÔ]CRÕMTô8u]]WÖ …OXÖ•­l¸Öu½u]×[^Ø „º×6cÙ Å‹dÙ–mœýWö}¥iÚŠ—jÛÍ´ƒZöݽoÙ¶íÁqÜ•íÅrÝM_sÝWmÝOÝ—}åyÒ7é{ß í|ß—ìç}ߨ2à ƒÊø.…á’N†âŒw‡âX®-☾5Æ6Ž9äÎ3ä™, ‘äÙNTüe^]—Ò˜öa™æ‘6[šç˧›çYî|ãç™þ…¡ÈÙ–‰£é®ƒ¤éškI¥éÚŽ¥V'šž­«»Z†±­ëŒµ®ì ‰£l[.ÍYl›>ÕµéûNÙ·î¦ã¹îŒÎ¿ºïÌÅ·o[îü»nûÿÁµ›ç Ãñ €?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œL OùÌö}? PhT:%G¤RiTºe6O¨TjQÝN­W¬VkUºåv½_°XlV;%–™U³ZmV»e¶Ýo¸\nW;¥Öí´]ïW»åöýÀ`pX<&3yÃbqX¼f7ÈdrX\FO-—ÌfsY¼æw=ŸÊçôZ=&—M§ÔjuRݯ]¯Ølv[=¦Öå­Ûnw[½æ÷}¿àaà|'ÇäryXÝÇ/Ïètz]>¤û›Õìv{]¾çw©×ïx|^?'—͘ðyý^¿g·Ýï¯z~?§×í÷üIþ_Ÿç÷üÿÀƒ÷À, Á Ál ´¬- à \' Ãì=Ä 7Ä‘,MÅÔGÅ‘l]Ãñ\aÆ‘¬lþÆQ¼uÇ‘ë·ÇÒ …!ÈÜ"ÉL•%³r<™'ÊŒ¤¾ÉÒœ­+ËÊ¿*¤‡±î‰ŸÀËLT½2ÍJÊ*t¸‹gXggùz`€Æ˜Æbxž €<€!HH¡À…ÀR€ 8 5,¦¹°œ'^˜€Ç=˜Æ]PTÅUU©hQ”tØÇè ‚`‚hApÍ©¬Þ†çˆ]Çù0OŸæ¹¬'B 0 ÀB-B€Ú à:0~Œ"à5MX¦g`Q•'ùfZŸæQžžÖRm]ø¥Ÿ ÂTÐ@ ´ƒ`t€"ˆ”ˆÂ\)eŽƒY >Rä©4ÆÒ ”¸ ”$ÇôÂ~Û’ø˜šŽƒmÖ]Ørk'ùJå‘ng2€´Öö¥©  ƒAá˜T.¿ÀÇä ñˆÅ ‘,b/EP 6I ‡Ä$²DÂyþŠG¿›í¸$Jg˜#ùü~½f ¨Ñ4v8FBùê™M§Sê•N©U«UçN×pî€)•o÷»ÂB+›U®Ùm·[î•Îéu»]ï›Õîù}¿No¨Ø € …` !ƒêòzƒm¼9_ËEœBnßá“ÉóÌ gPìçKÐkö•Ýb¶œçh`=Ÿ‰ÅãqùžW/™ÍçsùÏ×èüô„À±Èg0kª*bÍrÿ1ŸÎÇ8 ¿ø9± ýä4(Cð&è?ð§ŠFŸÄ1Î&¬üAð„# Bp¤+ BðÂJ}Ÿ(&2Œ` C7ÀZœñ%$,>ˆ‚h›"Йö²á Z•€6 Ã1äz»/¨ -Æt€;ßIrd›'Iò„"”>B–‡ R£Œ” o„¦„KÏš +J ­0KÀ Ìs*-Ë$Í8Æ;]1ÍólÃ1N“‚ OÓÜôƒIW‡OÖÝÁiÜ3ü¿,Y–-Ý< ÖzÍs-Ûr×UÌé_®5ºÕz ‡Ú€`FMaÐmÞ’ºK%ƒXÒ`s{LÉ´Ý:áÆ9tðmk“C0 &Šò!yW´÷ÞN¸àyÙ~ÜsT»sX–…×ygYõ½uhKÁ^ͳÅÔ’Y­1ÖùÖ¡qÙHV©ßz–nÛ7î´†Ìù½é°Æ–°©_W>}‡ÞÙÚ©eéº q«'¦ÙyÞZ¾«n©6o¤ìzU­›nè=ïÀo¶îá«qyçžÜ[§¢pVM¸ çÛ¬„ ¦c€~2†QÈ)”gâ@ °ÖgÛê5  $DSÞeÝB éüE§ð é™Íýdí3 Éo숵‚‹rÒÝÓ¤y.¿Ì™Æír[š/;ozsîpþ÷t_*ŽÁÊü›vÇÈ©ûäÝö. \ýû§±µyi' Â/…zõÚ»×Wð ǽÐØœL|e]ŧxÓŸâã^ Æ´&Ðó`™9r/áÆ6e|ù—‹Š„Ou`A´Äx‹áxƹn-±IKk}P±.%5®ÑáSK‡ `}Qþ‚…Ð:$¿ Èõ0€ô$Ñž2É«¢€ÏÉÿ¿2˜ÛâSÇ‚ÏÙ:ÁÚ˜˜A°2;—wNp’Cø7†ñüËÊ|Ð*ņNýc©9~¯©ÉÅx¸ùà U‚¯Ç4h ½ßÁ:rk>·îÕ!45ƒ É><æ©"äd`2jNÉu¿××N0U.-W™dÕ“)ú¸6#Ó«Å‹ÒÅkÉ“ß-¢]‡«ÎB¨ädT-yîI5Ê5|µû9Xò¡9Jxpô$Á’†a M5µ &|˜y1¼¸Ù+ ÒôN2ÑêAia$'‹Ãî0†΄ð“-%¤‡Á ?„(x'ø”Á–‡§ k.ƒô}€‰FxÂ`‰ÎFª qưØàì#ÑäP¯|°=Ëwä% ?{ÏYÇÎy¯, P•äÊi&T¤3‚“RžIApáã„rŽ?<¶˜¹æ«s]°4­·ý ›ò»™D9xÐ(±*=>—Í5ÿT÷:›zÀ$ï~/SdÃ7›D΃1mt̪˜à¦CèLórsEÙ_š+Ü«­aÔfÉL(ô€ŽíéÀ׿ÓA(ìz¨Á¶Õwúå#ûÛ¯íMi>v±•Ý-™3MrÀ ÙQåJoMkÁåW…˜OGØ÷âÀTPžcCÏKcXl€b‘À8EÒ¦·øû,;ÕFCü5†à%Mµ¢7Ù°Î?E0¢ÀÓ­)«!‘ÍšU´; «SO„éÊ轪¾õX‹Òp·f*½’ÔT:q’õoYÇOçd/¤²ºH&Ô© å5ä¬7’tÎztåfÍ"ºÐÊpÐ;3,©J庶 )€gfºM~W¬ˆs8kˆÀö*Ĭ¶¼·ié5rANZÀoåkkÓÃÌ{ãGêÚçO÷k_ªo)W=’0žñ·15%ÌêÄó-8ó߈cþÀTï#¶¨¿ä+<³2Ýá*²¿ úC€|ž0@0f°†Ø?Ež¹¦B7õ£œ)VVá2]x=†›‰Ò,ž0À #¡÷C±„1ÇøG òƒ±§ô¡ÝyÇr'Ÿ9_{ýØëØoQr]Oø°äZÿ^‚P¼Ùª—ƒ÷°ó}ŠzšŠl©ËàÃ{½bû¿²u£³Ñ( %›ó]¶âðœJŸ"´­¹›1c»¿òê;³=@CÀÀŒÀ„ÀXæÀH¨ }€„`E09ƒP¸|øØ}ðo‰¨›¬Šý±!î¬á`<²¦Áè¸*:+]1v³z©¬°Ðú…N€ /»¾´0 °A„p~ƒð>‡Ø{â@#ã?*¾¢Í¬ZÁÁ ̼ëä¼»S?9¥¥!*°zÀ¤Z¤À„=AT 1A»Ã{ºÁ#¤;Ñ2@Ã;óÀ¹S¼7|C¦tB¤àÄÜ60SÅÁ½Ã¢?¨ª)™ìº¢ ¼a>?ãð¶´L‹f7SÕº‹µ$s?ëµ®š¿!¨} °Y€Cìð|‡È­[Ò=ùD¤gÃF•È}˜‚)€V…ŽC p ˆùÐ%Ðe†bæ³ú.Ä: ɱ«Ã\hGù.µÓ]63‘¥<Ó—zIK;}7 ”·E)a5ÅDIv*+K¬#28˘@B€8.ƒP}Q‡àjo¿Ì€?tÁ¼hÄÔKEÜv0Ñ8ÈÀc@üjJÜ­…@Xè,‚à|ÃL+-/ÛpG„e¹[¥»Û¹T‡ø‚8{†èo›¼òÄ µKøX±.Ë ¡í‡_[”ÞÝiC_bÉ3g¼‰±0j¨^§Kkĵ0¢´ï¬4€ÜÅÎ?}åà-ša$JÖÚX3ÉD’%M jÑ5Š\êÀtja.%ÒNxÞT:Û6üZZ=ZŸ ±Pu¯¼È›,¸e$£àå>\ކ¤E;‚ ÞXe‘ ÙSúe¦oßùÍð†cx2æNeW -ƒP{0TØ€n`à-›@žSG•È\ÎEÞÔRÓ ²ç…e¥ýî‹gnŸd–V2½ÅDœµ›qÝ{[ආÂUa[¥çz“縶j-ÐjÆy³¾z¬t]\ñ3d@d$Xúð.ÕŠÝBžU,•Êá­œ™­7ô(WþH0YèžKj½T€ñNä¦Hކ€·i@éV–im6‚¸3°Uh}8C…Rhf›èHYý2¥²`s€2­XЋÃD¥Mä½–XÛ닎~ÛfîÂ)v£èÜæúÿA.  ™gBªÂšÔ|@Å´˜)±kË2K5û"&fÑE.ÃÒó+Žäµºíd•jý J]óT5àX¾¦M~ì4V˜zi\ªß-†ì{¶>L[dîîÆ¦Ä‹ ¿h¦…§E0!&È„VɃ)’ì¶Ëƒ8zìÞšlþ°Q3«$åÉv‡°UÚΆdôQж`BUI¦±æÌ8¹m%8ê±QfúPÅË f.;Dù–W_m¤!Ãj´j']2c­g;eö´»sÔòf"¾[<§m ß!¸}¨8€þÿa½„a÷'FkÐ…ÉCþðç&È9€HPiWðT­‚¿lÞÎÓ¶l,¡j¯Û¥ÙÙveøÔŖ̓ãHƒsfŸr±ÎZR.â.ð’ÍÚrì\näCp±¹¥eÏkßOjEÀçÝus•SØ@â¥õÀÆø_Fs6;vO•í.l. ó.ÃΟ_ó,ÈCöÛ¾®ö4‡õCÕ­à(û„¤›¿EzñÜuê»É–{; Rè4™£º“Fa‡ÿC€X7ƒ'Eôdp‚¸4§HGXdÀLÞù£Þ‚5{ ä$»áöâ¦=çBƒ¨<)*ÐõlÝÚOˆMÔRggZ_YpþrÀßÒeääF ßTþ·ì‘v¶ñâ–ƒõ$FL¸ºÅT£ë>ÈOl«œ òM ÈåØc{ÔZf¹bÌÚÇÖ^°îáñç>ùÖûÇ|FÀ2€8 ßtÊö†ÈÔ6Ú'2QÐ|t7DwÜuw÷FøUp|ø&÷tß…êůûÂõÙ¬H¿jv– éþLr˜ô¼l`¼íÍ Ï®éÜeL¦Å‰_n\e]‘]ÉïbœDB>¶^Ïv1—muçµ ¶ûOeŽzõîMz¬QvƒTG§´ó·Ü9v¿è £â2ć `O€¬#*ÒÖNŽ®è+V#ݨ2¢·vli{/|O}'´üìpxyûo·ø/ îø¶–?ÇSAÝåì[d¾øì{iWÝ:¯M®9úßüCùNéßgûÆ#Ÿfzæ‘k"–K¿œ0øÈ¬ÅüÀàÐ($BàÐø„F!ƒC"Qx1ÿ‰G"1èĆE#’H£’xÌš!ˆÆ¡²Yd>)+…H¦39,¶k N"±8|ºi/œÐhGãð šËà˜ BíÆ(TYMr?æ5‹«E|<Ÿé@,ÞdØmÖû…Æåsº]n×yÉ\ÒóU+Ÿ€e~á ¼apØx¾YÅÂfUœT«£KåªÔÿ•‘ϲ–ú¼f Êç¢T-—cžUr9œv¿’ÍPôÚš> ‰ºï2ûZ<óM½àçêÚËÆâ·¬åXy²W> \ÍìdšŽW]•è甽MœH‡ŸŠÎD‹ZÛÅÑ|aÆQŠôyEzþ°I»4ø,is¦™°ˆrzÛ3ñãTÕA kxæ&²[ äI’JŠÙ1zC+3rj:‹Ë ›ˆ†È3¥/¹oû/JI£pŠTã”ѳTgKs…@ÕC“¼³R$äâ5ïâ^ø¬oÝRPò6ÿW켂ùºÖ<ÆöÍiû¸ŸgÈc@˜l°¹ÕYV6;»I²’…sÔ´-!KÙ.<ÐáT4=Å hÞ1űézÞ×½ð‡ŠãQâ¾¯ì ½>¾“Ì˸t”é`­Ó2ÄêÁuœÆ»-ЄÑM\ë>¤sÓÃŽ7/c¯Œ§ÕTÕb5^fX“›¿Utãývb7tãÙ}ÆòH×&ažÐ¹ÌÕʲ>‚¡¢tr-”Ïik½e&V+ë=7+©d\0ÎzÝO–K“K„åù‡dOxÍ;8j5ƒ9G×Û6ØŒ22´¸ËKz=»î8vÛtÝ»{ž‡ð’"¡>¦€@Û2žÂËv·°àû–ÁQ9rÑx `UóÐô]H¹ áRWžàLt¯?/DC«D8£ciüª[ÚÔÌ_(Øôº~¬ê·KY&)Næê½q·ó®ú›á˜`äi/–Ã^«iU¥m*§øôÜòzIÙÌ8&øŸ[a"Cø²”/H Øg:T©E5±M Ã튻Oé¸í@„J¸%R"qü$8^.ÒĘ•âS§¤X:°âÙÃzvÅó.·] àÄ=]oA²)U!LQý‚*%J?ÖˆÎâ;n‘ûª—”]Û¢I~0mî·æw£ (EÆù¡togJ‚<-·4¬Õëq¶F>ÄGÌ”‡rÑîGªÄÎåäœ.2& vŠÝ ‰­R1Øät?èn¢(<€ò" èI Þ17£-ãT”ooqV$Ñÿ*â  áŠ$J•2æa³ ®'º À#‚0Rl@1!d$+6p2Ã#érr*ÕŸMé}$[Õ~*ŒÖ—i'£cn—Î^]A‰Ø|›rnfÎYE!'<š'$C°EÂuW+#az #ØÒV“|miSé£< *lÌŒº“ÅÂP@:®ÍaãÜÀR†@¯À(•ð ;Òv´MdN†ìÒ& IAñ CL`Äè E¨Õ¬Lñß´ÓŠ‘å¡dLbVVíPÄÐÖÀÚZ«ŒºÒ;R+!xoUˆ”4•̧•Äð¤¯^‹±¦OÚ­shD›¤ÄmªŒL¤)ê"øÂÊŒœè‚pIDͧþlW”;*)v*e7¡F‹29õNDÔñ"ÃïXÊ4Y×l°›ëÆHªéˈÀÞ_ úCü€€2Eˆ € G4ˆRÍ= ïGÌ=€$”üH`!1ê%e¹×>¢…€Ø;K«š“üçO¹ûYŸtibö&rŸi-)l²ÀxLüïCÄÖ­ZêÉQ”jlš‘>o]Ú)nâ3•j‚}ô&w<É.Ü=¡hÓŠGà n Q™;2žE³&´ö¬fIK0Å®V¯ Emi2^]ôðÓ•ärN‡¢*x¨íAã© z?*ñOfÃB‚­ù¥F÷o¯àûcü~”¡<#˜_ w4€L9UD »&è[‘rƒxa™G,e—Kt® °©·^â³Z?AiÝ,1ÆtÏÌ ±œõg0åOÜlRoï¥ÁǸCw°Öuϲ¡›kÀÅ_‡Àøæ™ga=Òì[NæÝäFð~4ž“ .¦Z§òƒË´æ é«Éñ• w×ånF¹ðûW#°XŠòóCV-¥ñ<—RM©soðˆËH̤ý‚'DX œä¬™§Í®(i„ö‰âDèø[ä9Š ^UݪHn@…9W+ëýŸÑÒµ2iÞ ¬ìÙ®°§¿ žK“l¼VU·H¿)…UhA¹?„ž¬1yâª÷›ðA¶w]0íd—u®ðÀ–­ŒnæáÁqÜr‘‘nÈ­CžláX}6°Žj+Y‚àpБëWïÏ*8»JDë¼ÚÈûsšû“DWº6ﯯÑ4ÚÉQDË}´.Mf´QÍ|ÐÃǸù#cô‰ñr6á( $ŽH dtÕjM XS†]}ùâëfg¦¼œ\[O°ñˆ{{*€ÞqÜû¡x !´v Œ¼³¾ƒ;eú¥kÅ•n:žÊèóáø¥·b™ÀÇ|È×^}÷ê2Ê’aSÌ%ʼn¦´m‹7x~ë+£ûæþ1Ÿt½®  Ò\PÏ^? èeÿ¼‰sŠQˆë;ùÞ7÷œFêé3í}žºÎZ÷æoFægçmÀQ À˜K3$° P8øKo«›QuYƒíÍ^Í8· °j·ÑÓö]¼ ðÁܾ_õþÄ”,áÙ¯|7KÄ­lðÊtïÏÔ¯î¾-´µOˆÓBý-8«g€‡J¸Û‚¢ FøNÐÿ¦Æôð”†úæGôTvçj¤“îˆçìal,:ÄÌçEθI Q xÐ@ùŠÀøj0á,8rÏ4W¦¢¯o&®Î¶l°HÇ4ÙVì,ÔÁ¡þ+^®œ ”a &`<¢äûAÄÍgÌ匜…®’nLûÆ…æRžjJì¬`ч¬ j~!`ÜþpPö À² ÁÖbÿ¤t[ã˜ðR²°âëÅ)Øé,LÛpyÏo©"8îÏã|Éír[PœË´ÁFCEZ̯`[Ž<ާÂÓ† ë¥<Ô*ªÅDçnÀ <½©,k(®æhÙ ¯ÌÅQ&½Tc§p7¬n*ÌõcĈ fü®ËàëÆÖ¢ PÍXe"¹ŽF³)4SÞ;bˆ ^ÊP@R@$ `Éê@R/0ÝÏÑ §Dxá°n¼ìtR¯ÜÐëàÀÐù!OïÁÕ!èq”›é{"¦lç±p+IÜ‘5BèÌdUò4  ¹ÏVDí O<é‚p]-4üµ#Sâ¸áìàŒÀ@îµ×]ujEÖ‰dÄbÔJ€2€'X)š@X«ýR/QD,)(Rw¯LmªÚäeÛqIô£\À¾…m Ÿ]µÞAä`"TšøIZVŒD‚¯0þ @„`h€ ÁÞAúA–à;!ÐaøáÔ€Y¡òêT G qvO•Gò@Úv:¡ÔÒóïWeíOHNxÎÒ¿Mo“(ÄGS°’÷Jçt˜35R.æÍSkŠ=V'-Q7Käz¡êÀ² ÀÁVÓyןz¹ ÛW­RÖüÓÙ#ã†>?ëpa" -\öÏzÒ™`²!ÏKvÜuš¡màÑoLó~eKeÔA ÏD"!êíÁ>À0 ¥]"1qAø¡Ò€0á‚!ìÁ⡾ø²ÜýáÊø„Laý0×/G4q0×vBê~ç&»¶.?N„ìÏÔÂï½Bt¡-6zç¸(†e(î4ÄÔÁÐ{"¿cDõPF iýD6lÁw®`‚,ê ¬ `! wÕ‹Ø¿`¡¶·Ç%¦½Œ¶ oÕX8‚¹€ WÌ À#ŒêtwØÁPwán&QRfÈ4¸Ø‹‘qÏ•:*¿"\¡æÁ, 0 ³} AÚ¡ÄÁöÊa ÁòÕ“¡¬ǃáàýáý„b€ W9Ãjå.36VôK¾ü]9õüù9ü¢}xp[?‘…w0Tö+ '~|õ(²§œ{0ÜdÏ#nDaRàóÆŽGÕ(<Åh†2fA¥,:x«Šà”ø·‹¸íYÖËXÄXWõQsê IQ}‰b/‘t . Øç™þF@´AÊø÷6úÓw鈣wV#{²zìº!#ŽT¹Á.€0 ³Ž…î4¶!õ!|ì!ÊAœð·¡ßD® `XQsS£42Î%"iBN¯N/>î‚{ņÚÒˆÚlþí ~štňa›y‰rløod- 僢eg6•4ÞÓÉîÁ)&›:mþÒðDתMxìÀ­œÁRà9 箉š`^2ÐéO™™‘îD¯w+1‘÷AÚ º;®»/´z m ne3Ðä5ÃÀPí^šËx*Ev x4þ!áépa,€5’;™CHÄA¤ð¡œáˆ¡ì¡ÆAÜbàÚj·8Û5êVÒÔ÷Ó?'¶ó¬3ˆ×išLÝ¡º« íPP¶g}Z­N;(–@ƒ¸ªÀ¯œÁPà;±›Ó½Eð €Åí€ ‚¿à°€( ƒ?áè\- ŠÅâqˆ´nÃ£ÐØ@%„€19TB9ŠKbò¬šZôy?RHÁ´º‹ÐhT:%G¤RiTºe6O¨TjT‚ÑÍȧY¼A€°fECŠGa2YM~5 ³Ëæqš š#™XlÖëD¢8~¥Ð£AbSÀ``­· é¦Ù|1¯f#9ìÞq¾®×ä @’ëU:Ãv´Æ$ô,ü릎Q¤r:³œ¹×¨1¸ö»]M“\-:]m¿GlØïè¹ÈŒÊ- ·l46¹D‹y æn4û*Ñêþ+’ê„p{ßðx|^?'—Íçôz|ృ_kѶs8šŸ+oGºQ«ÿ›VÆÆ•¡G¡æàÊ|¿½PLÁk¾ªªå¡à­«¯+î£Âê$2Õ:kè».‹Á.Aƒkì=I¡ºqEÁ†y™†¡î`™g©ÄsŸgñú€€(€ÉZVº¾m#tèHìQ%°0Û†‡¤)SÒþD { “$©ŠNÜ­¨ÓVäIÍlš>­>Ö9Mš\˜¡rȯ:ÎÀ’;Žô™;ÏÌõ=Ï“ê&´ü¦ÌïÓ¨Û, ì>‹/þ 'ÀIÒ”¬-‡O BÝ-&ÉO¼@äMO½ià~š†Ùð^™¡l`žUiò|ŸèR…7,)òؽëSrá5bPÛ®+z'"ÃŽ:“4Õ C›`Ô2¥¥$J®J)Hô\ªŽ£t-Ãp"’ËS4Ý–=3QJüâ+ÎeAÚ·Íõ}ß—ë@·{©¬Š-‡O#·6m¢+žÙòpœ”p66‹”•ýã—Í0qå¬&®[x…£3[ "…0Ô-PÉà朒õ*ûc¯!üaª{eùä[˜u­][Ÿà8̳s^úÊÊöéÞ3„–,ö<½o¦ºŽå]6ä­h-ÛüØ9Ól“±¿nÏ0[˜:DÖLÆÀÛO3¼ÜjYæzŸ· #{Ï ÃñLPF¥ ± îCMjPºÄ‰Lkß6Ëšä5DòZ„fiÐücÇÕõ8´:ä¡Þä›Z# ÑŽUÝjýÅJû;:¢o™–hA£@¯Õu¯wžçå)fwåéâqØ„Xæ_ûá“õµ*x¹:¿büšô¡•Xø/Ú™ÜÜânŽZ‘³`~j,ßÜIpb0¿è àCþ€Ìi¹öÒøž¤~¯Ý%.§oVS$) Ñ5ʻ౧! 4>º€¸ L)…E-a¦ݙ\tK°ù—Òž[Û]#͉qòB¼(…g”wø0†`õ‚°v a =Gxð€¥«è†´ß1içÁÈÙæ¡&3¡3ÛE’'*„ Z}OÃÈ=°þcy á\;ÐÅ#è~ð@—Ó\šÈ„=KbÏ‹“a.55M&HÇ5·2xÎúçkû¦2*™Óê_ £G|®þl9ùO#*|o‘:ê0?B°G›àŽ‹UÚ½8Àh6îüÛ®¨¶Õ¥3ó”ñ¸Æ*åê“2„è=Ï€¶ªýyRal;ê@¨$9ë³°7*èRëq`pæ¶ÔÇâñ‡è˜€3ÑJôzbpôbèw 1fdÇpüEp=²äü¦¤6%Î娜j\äæ[dÙ)7ùšäª«Åe[Öûßµk?G¦HWàT­M 7Ñþ¥Ã2Sn àÚ«ÅÚ¾H8-‡»'å |á»PÊ–” ÝMF¥f²»Nh)q¶=åÎjVgH€ÄÀ~²Zøß3Î7ø¢œtŠAj;G`î`*Ò«Fu‰mSÉkA 1`Ô7™ì·ÜŠh&LËžuÇÎúÔg›}=aØî´X" ßÎÅÓâ&ëál“×È ã4ébˆE4˜C¸†µG\™ªl–ñCÌ~ 0öÃ`ZùC6[ê7E8¶²ŠvÖÈÙÎXÈϽd?Ú”º ‘¬ÌvD?‚Îp®m<Ø`| AP:E(´ƒ°w⻟´ ÁŒ–&šDÐXîýÂ¥~8„p)’Á.ŠÖZÍ&àn3)ä] ì2Cc¼|Sð<‡­,º,Ç™CØ g5ëMœT/¨ÜâÜvJ"ák³öœ‹Gm „t0UÙ»? á‘**FÒzT­€0…JsùÇ”ïÎ[ý–_ ƒ™´Fç¨=¾ì-åUkÍæ=œ®â nNÃÏ .ªàZ‰ [¹­›×Û¹Ù\nõÇY‡2½Ž$ÃÖÊ cˆrÒŠÃÈÛÚyÍÚÈ ‘Áà-ãa”¸o±ðˆ# áSqòí†D ©âlVŽ‘î>Gð  ootI=øó¯žqVok~„»k’gjÛO:M­Ã;^ƒéìwž÷¸·+÷ xH¸8üï TSˆpQïÇÀèdó{Æ`‹Ò¼ð·ê˜îD0>6¬¢"ro2Ù`2ÿ.ZóïBÖ”KÄïÔ­é²ÞOû®Æ]ì$‰„7Ä¥¢Óøúކ÷$=!OÁaÄá¾À'¾—Ð Çè"L#Jò)¦‹Lro­NÞ&§àNäÎîÂæPÔi"5bQpV\ póCÒ¡î°jA&ÊjJ˜ 0”°Ÿ ®@·ÎvA­ºÐ/Ì|‘R•ÐQBÚÓÊu 4žxq2 àŠн -,Úàxîèì E”™%œ¨‘Ëp³ B äàñÀ°Q„ÖpøgØÙíTxH#ðœ)aâòá0`L ñ)$!š æáº¡¬N¤¥JËQÌíñþ¨ÄîÄä‹oʦƒ¦ßqäG,th(MïRD#®þaL U0¾@¡Œlª#î®Ô Ž{ b¥&H €¯2ʸ¯aÔv€¡£ù‰ äQòŽâA1!qÚ r]%ãÔ¥r6!&!ÈDr`gzõíâvÍ{ cí Ìj5íü­êlÀéZìp†ªX|R˜ìŒ¬Ì]$küÞçHp­²*r.ê½#aˆ)nØf'Ý/°¤)úá".ÁÈ c5 Íwê 0j’6s°âÖä¬c3BãW$æ˜jàê°€.Á´-Gè®à~QÏî²8óþ¼ÌÀÐ áªu2j˜´jw/¦ÏÔ‹*ñÊ¡†Ú7ôªa2 SBt+K„LÐ a1Dß‘™A2¿ æÂ¼I²¨²Û<ÒÔÎó*õSËÁFª×P¦£ø  ˆLt}NÕ<À ƒ ®,ü¶ñŒõŽ|‡Sœ<4ª( N tµSê,  üOL Ls«9tÈö”œ)_N4æ 4·VÄ ¶¡¦Á®@ À +õUS¬)’Ø™¢àeœJs"¨)—¨‚Ñœí¯L¹‚½ „²ÓÎÜjÊ® À†J`]Y•üq !~kñ[˜<òL=_V5f  ;_éÈ  þuvz”u õ¹®± Õ+r6ñÓ`ð@ÍYV AaÊaða.B¡ÊÑÝÀðÒÈ´MÊ“=•% C{ EŒnãJ$†æÎ¶È+€¿´Tw“€Zð«JB^Jã_2¡öSk¥û`!}Q5lhm9G@ñTHjMHâMá(€P `ªNÖ¼V%btõ{&èÿ=5ÄD JK±i6ðá`µ™öFJ À¡aöêA€ôÁ´aV"3MàÆ´jµÍ`Ñ\ß”iæÄLôPÏhÍ"*0z¼?Uº)Ö®–² aq÷lRÀ A{[pœYêƒ,§% µ€¡Šjüîsx±\ôÁ ²$Ì è6ån—nˆ`º¥LõLv2íPýö¦0×$Ö×Â;Uá0àWq—z¤‚ º!¢J ¢»cÒÀíP­'vÿ×õEÄ•a)öÆFd¯äwf7ݤö †¢¹vš¿ç…'4¥” û˜L„„Á†æ¶‘‚Æj¢-Uá'z Ö …ñÈU~a£LÍ&ÔÖÛ.ég7\ý®;{¶Ï‡£}ì—z˜\=!baÒ áù *‹m7 Õ6ëÂ.Xmpï×gø_Jžx½Fb#J°V²eˆ¸ÐAÀ"v4ë‰QQwéÝÄ©-4ÒABAÁö`æxW…¸Ò€×æPxfRouVYm?UY8ëÎkªà¤Ô‚Ce1ÔÀZ ÀŸˆ™<ábAÐ!$¶Vw*„Ï@O(ª’’¨ÊÁÕÂ,U ²Ü\8Fµ'c”ÔÓëÆ8jì¹plôW—î`ª@4¡y?š#Ð Š6 ‡ /Møø€Ö yšGV ÁáOÖ.jk–ùig£F¤98DîuËIH°ÅÒA.À]“™¿œÎÔà ”!¸Vi[+{R˜àÔ†$òSqƒÈµ7ù…yxE8Ï^n¨Íi5Îç3Žz6~ nCfø¹Ù@þÏä@6€ÿšý¦#¾ Œ …gí¶=ÛsÕ!ÿda$Y¸ g ¦GœAœx®¥[%Ö×£a‘Öx±Lú˸sŠtÐÛ#YMá. _ŸšŒ=YN àð:  ‘¿LÑ¢|øß -âÚA^¶ÿ!oTã0ÕŠúÛªö7•„îúW¥ üšÃ°¢  ŽìPlþj.¼ìEÑI'&Q5 77˜[†è6˜é3¦!ö@⹺ŽÛ cºz–÷Hç$K% ý‘RÚXxßõá‡Â…³Á-«ÀÌ Ú‹´£ÎÖX àòªáâ ‘8¿3¹QT<ú› «U¶Å†ì½'Óxä@k¸Ä)$ám$/l,‚mLµÖ¸7ŠíÊm¢ ùU»ƒ»ÙJO ´ß´\ `¥´›Æ_€¼a™µË6yŒo–Ä“rs 78"Ù·@è{·ü<¡²Aè Ðñ@÷ï6دŠÎÚ7›â[+• ¹±[í:×Äà ,_T·—, R9"bþ9–¡H»ÃÃ<€"À$ !kj«øMs–5PãU0–e4§gQuº­Qà¿`á¿ ¤œ<‚_@¼œ µ<»Ðµ6‰*Š9'ªv@¬û<àæ Ê ÜËcLjáÌ Á wí£jŽ8´ò±ör.š+ª¶w»K‹X›ç 2ªà8£-ݵب‘YÓ¥8ïRà€œzüéÈ<†e£sXoÓAÍr BŠ!ë³àÞàÕË=>Z¼º{QµY°‘ÎLÃïÑKžyõɘèÑ+mƒð†"¼Ú`d  ›Î}fb8äîÎ2últªž3ARÂÞ™eæƒCNAÁ„]5Ç€÷Þ~I´½ì=ƒÂÛp:¥Aý eÛ²‹o°‹¢<ª\> àÞ’OÀ¾Á•µÅáÝTR{¢;ûkëaöàãä>Áì#½²A(á.!·f€ Õ2ÈYyÙÑ{ê¼eºMê{µß[ŸÒ×?¹Ýw=,?0`¨à<€ö>é° & aa/ÔÈî¤Øõ'vmÅáÝŽ5’ÚpI1k€ö þ¼ ›óä÷ìa’}ìúÔ*x·'Xt¡JË–EÕ¡, h  ™îp<ž „!zºðv·ƒÆ;°ÛcPÔe˜¿ñú«çÄ»õ"7ú?@œ拙tŒªÝ2 ¿4`ô_Ÿ¦@& Åp ‚`ø8 ƒCâÀ:…ÄbøÌ7‹Ddj/#x=i#pÈÔPHæ”Îi5›Mç™Ôîy=—Ðì…Jù gqØL– …¿êxu6!N…FêpútB³«L«ðGŒ¡,q™I‚9õ®Ùm·[îëÖö!œ—ŽgkÜ×j‘û nÛ]°àjðˆ¬zIK­á µ–/!K†Gaµ…*C‡˜æã”Í2«–ÎÄ^ogÙT~Qž‡w-–ÏiµÛm÷Öà&NVÇôü n-žƒU©Z &•æDáXø-ô‘6Œå¢]ßo¹Ýïwè uBý£ÕàøL”ŒõÁñ1îèãåéõ-êA€Ï8Œx§Ñ,8Ã(–—»ðdAéfcœ‚éb€Oh $Lãõ?Œ«âÊ#  þ«O£„ûÅM,Y DK$hQæ{µmiF<‡‘„{Gòƒ!' éXœ¸ÑŠ@Â"¨¢¾Œ«›BöÀ(JÊ2®‚¦ö«o³ðÉpPëƒPžíHsDÓ5'‚ùc/ €‘4då²1S+'1I Æ“³•,+ˆœø‚¤ð(àÁ0\×GQóHøOIPjbÒ3RL[:°cMHAóü•QCÒóš†-KV5ÃÈ{QÖu¥k[M` žU³’{à©1Lxè½ÎLSÐ’œërÙ£—P^ ê}’£u%ÌöÝû-‡±ð~C©ri›Ç€/è“ßAÔ´VÛb5=S\²j—OÉ•N«c‘käѦ'¡î~ µyD<×þ[—eù‚F SÎשÖ@ÚçI¤:¯Àn¨ÖÌ¡>c£héµ»o˜ýÅd]Ñ>;EFE‹Þw4¿tjZ…ÊxÀ„¨Þ ¢U±¤lû9ˆjBXö]€€ PÈ̘öCìuU­nÕõV‹KúÔÅ©¯\¿bKi$L¨qÌ·N0Or¥wDQMç‡âö<“A$±ö*Á F;å›GKÓtñ€((•C¹ #Xl5 Ú/[ÛfùbZ`9½.…;ËÎ°ÛØ{;½!úü 7#&ËÛúvÈúPÄIRiS4³¿?œ$XÁðí`PÛý~¬ðÞ ÕB+صh&ø§è¦k©ÌÿΊïB;ƒ÷©`'¨S§räÏ ³ø4 eä²5ÌûÈ3_b@5; œ $Ta€E 1R0Fòâ+É˵g„¼œÃ9Ìyˆ¨8PLü_@$»X9Qû ;‹aª8xÀ›xüYËÄ…P çÄõ?Iãõ'Ж'fJ>Ÿà"AØ C¨Á^˜ b™t¥ƒìtœÊQa¦i÷'…œæOÛ[]«%ù¢E耨&Á¨Å Q€`c Â0¸Ý+Æ~ I*³gš%Ch; ÞAIs¾0†ç aô\€-ÈP$†@€#’ô9ȉÊ5<Þߢb‘R¢×öbàu2b_Kõ¶B˜¤j„$ÉFøÜÔÜ<0X‘8ÝËb`ëÃH8 !4Ì °nCŒ0„n´é_|j~Mm«JdÑ$Cd” 2lÎòâTøQ"è] áÈï¤Sà'MìFdžÆ#ªz}¦9*žÙäfÌqr<æ·T» ^CX+î‡NhÏ‹%sÀò]„)áHi>¡TQѧã×[R•p¥UDØaJÍ)04H€s5AU#§…²mŒT0†è "fj+R(5(”±·À©Ô HÔö«‘²9ˆAâÄ|±ú˜Ä-ªÅyù ˜ü.KŠ’J‚{Wƒ]YN´±W Öàu+j¯¸ÔÅ zÅtu^ÃXsgIE4•%)Ë8 ä[ÊïI”UŽK"žViw‚%Œ|‰ÒƒHL§v"ÓÀ#Eøª3|ó¬8ðøck~*mÖшæßÒâVSd–Ç7Ú.Ft‘ `ö©Í{OrI€tƒI‹!¦[Ý®&šhû®OeªYvjÉ,óˆ°ˆ€óxØ è.Uë½„Ì …aBæÜ]24xÔã&àO[ˆžGÞÞ<àΣ¬çP¼ˆG°Ïh‚`+½¸6Ô‹áT0æýEœöü‘R¨àð¬¯ms¥F±-žh” W$Z\ƒGé@ð: ëÊ?Õd_·d™×K98qÍ.©6FÛ2d=/(T¼â„9„\S’rP â|ÐL†¡*¢e3¾Ò®Í㨲ò±ôQ@3ƒ»Gƒ2UÉ "8_ ‘„6ÀiG‰æDâWkg ×RÍbÔ¿ _|:åb–# @ø2|Q˜ï`u£I‹1¢ÀXCÖT®üðú^ü2\˜â<Âãäb¿¿‚ÜauÐú#I–‹!PQB²F‚Õ–œ ðÝÿwöód0‰uß§0áïOÒ¿Ü„ gAË|Ú¬?}TÈ^ ÄäIÀèðŸ‘húÞUã|+Ó£zúÕ!Kî !Ý`:Ø8Kð@€¸-„Èû±²q (4›ü:›¤“~ ð|€2‚4H@"_>x\…PbÓ镲*+:Ÿ°Æ>Óî"»Ä)à`†¨q‚xB…€€)¸¹ P¢;{ª ;8ˆªµÁQ0´iô˜Ëþ£Æ ĺß4Èù-€Èœè)¿øPƒx%AŒ/@ ‚àL,›¥£ZV5«6£, š¹ ñ¯»˜2@Ð$|/¤0„\XbÉß.£¹2í.ãürX“³à¸‹¼“šƒ0!ÁtCªw‡Ð~èÐSÐr‡|€%¸‹ì"È-é;¼PüɺB‹ÇªZ´7Jº¤a$?ð…7\HE©£¸/ºZ )½:Ì6qs¾ª³¬³ö- á½<¶¬84D:E²ƒI¸U,>*)Ç:úŸI÷ :ÛBqB †CK,9‰æ°|„˜2‚$@ìh'x>(apYX€SF1r?sú˜Ô½óÁ몌ûNÄ<Àƒ¶=`㜣¬ÌXƒp&G|‰ì\¬5˜“(™@¼*³"‰À§+ÕÑô!”+£’—4 x1‚f„‰  1˜[F¨l€k ?´~8\s(Ó+‘ðŠ;”uG`"F|—¥ðn8wø>$I‡ò±Éë`@QŽ :»û!Ð)ÀE”ˆÊ,¯ øJ:zÚ#bÊ™òÜÁà?ä)HZ·Óu<©©6°Gƒ!Él¯ž 1 [Xb†º¢:§2”ÈL¨ë¨7Û‰H0¦Ê2(1ʽ¤»Ðø'„8U†k|,6Š£úM C>" ;lÅB‰Ë˜ŠÃÈZKqg=ée:Ä­6‚tÊÍÙ4À0›x˃jG §¸sëÄâ¹t¼@#ŒÞl¾…¨U†4Á"$1áÄÍ}–€/™ö£BýIÌÄ£Gœt˜201‚—NŠ@„À\†h9…]ǸFLÄ×9Lò®²+Âs†Fú–—d#9¥L<¹ÁKJô«‚HPdÝO… € >xÝM$ ÃG,jÈÐJc°8z‡ÀL@Ø/‚ Gй¤@L°Rj’ê+[ã­ÓfÍbÌ c´W?’àFÓË0ˆÀ´õDöÏ}!ÈoHxè>„ø~‡è½+“ô’³¥N;,¬¤ãDñ˜²|ÊÈ„ø5Э%ÓHí€À1‚€ÎKÃÉ.&j£¼c#RˆÉÓP¬˜ÉÌIøðð ,bx¦½Lð·s¥AÃB¼¯êüͶ,&ÆôcL+×óh+i/ãZ·Œ·Ì}´ùØh†ðm‡8w",NóýÐÌ ‡ÄI*ø~> /ÂeN,ÛgO:–±^²‘T|ÅêÓ¡bI)¾WR:Vد%|€AãáNÔð¥ VdÀTžB$ÅÓ借[ FB2:»I$É]aW „UøFb4üÏ$àŠe ¬ÚRÂ()û–K¨,pù¼ d¬ÊbÇôý‰à§L¹…0 pØâ™œ?’ïS¥§BC;¯´þÁB³W•JB¥H3sZ½ã–§!Hü’ɹØ€ôψƒñø˜P[¨ €è €{¼€È2u¯·…0)ÛÖºQÆD\Q¬£³gÜ|„‡ZòØÍ};•LR—õMLáTÛK[ ÆÃjtBC´´ðá9˜|˜1P1Y’Hm‡ &HR ˜|SÑä³¼YòW{u0%ÎñB§òˆÐ%”º„¾5kK’š+sU¶óÐ+B;ã!,Ã#KRÓêEÝ-ÖÍiDEyÏû¥Ý „MmÕˆdIãÐ:E*mߘ€X€¨8.(è µh ƒ(F]d½!.Ë…NÕÇÕLj%H:ƒ¹}I“ÅHU7È y3k+*d-õâZ`É¡QÊ?µMJ¾§%<È»µátU7¥9Ñê…œ¡ÇÝpHƒ%É]ÚݲUà}È>„Èspy€)¸UP3ò¾9'¨mëFÓÎˈOÖWêú“äòÚ\RV‹”^½u§Q¸•ÐÐãH\^ XÌíbº¶·MaKã ôÛÈ}RœIì›8à ø*¸:}­0 ƒ0E°üã;uªb†úþÕ[VÖ . ÑéT`®6Ìuø¾¬™åëÕIÙ0ôœ;$PŸuŠ_²ïI2ÔdWRº¯­¼Œ™_|3TL Ø„¹ß ‘âÕMÆÜqÅû9¥VV@©€„– ž! $˃LhW†PkLÍU.=xÚd„áS…xTTb¨" 2­Í/ÕóÞÄäáÆ,V­z ~WtžÏ;ö›Íg_O¬¾O“ÌÙTí‡úò‡è}Ę€ð @"¸,ÐÁÕW¬6E„V^1óÔ\Õ”ÈþI¼-9=ëI03“%>te…°Ã8bþP¶kâ_tguÎ-Õ#tÑØ*ïÜŽH– ²Ÿÿ ¼¶W£d«ÞNZf(Ef£…çÖ„ÄZ{JQÞÅëSžp‰…–&iæªÈ^P;0[*$|êsáç®-´„ðXAP)ŽÖtØÐCâÇî·Yþ)(„·ŽM”õ(ÃZ«ÙÆ FS(q.ÈÔƒaek†^/âM*äþ,kÀË|)œ°„1Ž" B°#pÊ«€Ð3„Abãb”ªV¸(SgßT~jD5çÝö^=óÑÅ‹º5gÙ˜—”ÖH&‘–ÁÀ¤¸æ9ñÛF¿K.žéÔÈ™mVæK]±f.ß`nD¦]pI&ƒ ¦® Ø`¸o€F…0e¦€³°ÄâµeÖLؽûBT8nÇ0ýh¾¾QnB”†dÔ‘Ej†ŽBþéùÔ•·U•¢äÆùÜòÈåUjZ†½ _§+¦´º™Gé‡È|€x€@=‚x!ƒ8!žÐ4>oâäqئӬy=ö‘VÆ1Ú$´Y ”Z—íí.ž6}w êƒÕâöÓ³Mâùg•/cFLI=¸ïÅ”°½ŠÕñT^)ä ™nÀ/‚vînöï u‡˜zð@„°wÑ) 7?‡ ËQÉ,q;:R1¶˜?¾cÃ)«ñ¬`Æ@Ìd­lb¹UlÇÿ f IÞcoÎML¨`Žé3Õƒi«z€ °äI‡ø4‚ ñ" îD¤¸ HCbض%›K–»FúÚïæÈ`¶RamËËUðo|‚Ö¼^4%^¬ë¶ët ÄÝÏíÔÿ:bÿò„ŽëÊ´ÚÄŒæèÇ+l¦aR%нVÂîõfác‘(gO@{„ˆ/~î¯0 =‚ CÈk‡0u% No“Ñé…¥‡!æ-k¸oBî­‹j¬ª2›NlVP`âèÖ霖wáEx%¢e?ëžqeÆ ’yhz°( „ð3ÂDõ 0€Ð5*X,¸ÿÉÍžöZ: ¼ªøŒì—aôÄ ½ót6äðCvQo°ÌaÒß&>Â'9`åék0°p›ÃÕ–/N>{ÀM„b„³Ÿ í›¶ëÃÇquLéó‰ˆ{‡Çqw ·s Ø7Waa9YÝ/åÆ:v¯F·Ç¢ö3HOœsχ{Ï~vâöö÷vVyÎáÂË]çåæà»HMðÈÙ½6Êjg‰øœÃ<{‚`Ó(2‚Ê¢ùÐ5„òÛ!TúÄìMSH/†^Æh’Z6ûÞ‘foÕ`á¼u'ú7&çw¼ì3ÁòHôw½Te9G­ó×”ù¶}Ú]EÊ­Æ£ýÆÔ ~ð(±û*°^†(=HZɶôû§öö ju¯p"ƒ¼,Ú]Wéܾ.%gÆ¥úåÖHGBrâˆü‚ P0 ÿ„Àáø4‰ÁaP—ü…ÆbQi+H¡ÑøŒ*AÉäÑà V)™Ëf³Yt¢C$ƒBdr9ÔºLgt)L5Úôz JD“©(‡GªUjÕzÅfµX ›R™T.©8­ÙlÖz½’“4‘K)[UÕ%“D PËeZ6¾Uèvû¾At”a/·ûZr¾E/ó‰¾+;Çâ°×YåúO8½Õ3¶›?¡„¼^Ï„‰p¢b´:ý†Çe³ÚmvÛ}³°Ý($€À8‹¡Æ(³ù–+“Ž¢]l—º4Fï>ÌÞz0é/^×<‡Åh×LGJ}‘•\%½¿F%ÖÁ{lwÝõ9Ìø}ž¿'»ñåÆs½oªÈÂ8îk¾ÿª«‹Àû¦i‚„·,J©üÇÉòJ °¶†Ä9¨àØÚ@±,ĽI›DÌ»ìô½ñ#¶Ë¼®FÂÃÌóèÜ1o2«­Ë+¼Í£lë®éìH±Hê 7Iz>Š0ޤ„Ê>ŠˆÁ) É"¶‘Ûäü¿i ’¾:0ZðžÇç‰î|à¤1Á¼o:ÎÓ¼ñ<ÏM‰Žm›â$N *FLÔj’DÓ$ªâ½ÓBÛÉŽ¬Ç(¼ô;E¬\{ÇîËõ RQä[=ÔÔd ¶)û§2Iq²/MÒ(òVš4uªàñ¶ ™ô~ xC Ú€•Od« àÚ@&òT©&Ö‹ ðźqd…¸Ñ‚±[­/:´ HʳžÉÄîD´ø0êDœþF1£úÿVw…,8¶š’ËhÕtú¸ˆU^ÇÕ•HwKùÚ©ƒÂù?µ-̈ÀµCÅaŽmÝXG˜%65ئ0ÎvVI’äÙ>P‚çÑö¤yÈwž”¾÷ó߉ԕ¿Õ˜Þ5‹:ü¡ c2Ý'.wI¬¬ !+,wîomÖú¼FIUC ‚Í4Ãç¨ñli°WWÞ‚“!§”Ú&†i@2‹Ô(›d àÜ?Gk*Ì[JT^’móê3x&VC.Iëc»¿h„ÅÒ ˆo©ð›|$BÓ æÅ¥ÓÚáœPŠaZ3p àÊ7րΚé9;Ëm£¹WFŽßûãs1¿åqÑAH«F#1c†xÜTpé°·&üQq€\nÁ2¶¨q{š‹’#À\ÒÞ´#cjiÿ«†Ðè: ì8&¤TC€p8Èá#ÔB2~°ì­¥—eã\fv­«)èàØM¬0m0ÅûÄ4™&Õ„ŽJ.WÈÉ’¨”I£Žñ%NÃ&4öã¡k`j)$ÇUGHb]È0Œ¶Äܨa‘BSN™Õ:͈x‚¼L ñ„€Ho™›°†%7šb’¦0æ.yòÒD´…ÉÔ‰´4kB”Ä„’²R‡PhjÍÕ{ŒEêMÚHz0î”Ж2Öƒ›b*=GÐú!°5ƒÀJ 'a´Ä=9g4fYÊc”ÆèÙ!¡ËÚA´Ýu3ÕòBê!ê›°©-$Æ¿¹iÒCÁúù”™w”Eu–ƒ4£SŽŸóÔ ch±ÃŽÄÅθ" ‹[T ~9[K»lâ@,…iÌ©m}¯Õü‡P*…ÄÓÐ4Ù#>$+[ó}ÊËé‰U#}\°yöXõ ÷(<0u R~˜0ã‘’iV•/Ñäfž‰Åv A ˆ`¤¬¹¡¡È<ɸ}Ueܰ™N•ÍÐú³Sä™û©’V×k ®; #63»•¡BOÈ=ŠÑ/BÚ¦Vn!±¢ej<È÷iVh!µvUɨoM!–¡°áßW€¯^í­õ¾ÑHI‹Ñ|ň±8&ÌÜV¾š S(Íõf¤•ൠŸ[âög¡qH‡0Ú['i6:JÅ|MX /(í^·oZTfQµÝ½F j‘ø?‚ô9‡P€5÷+@t9‡Œ]#luÛÄ×{Þ›ÈÖl­ºµPê¯ÏÛQ‰Í|ƆSRª›z‰!®†¯~6Ú¦K„b€Ì¤…šdÜ/˜<xû8gR1†àÜ ÂPIã° Ùñó¸rs8„Ń2É–….…r¥-—0NÏùõÌ7.¬²Vɳ GèV"˜ò «xKÇ8¿iÝÏ­sy¨ºûáSJŠ­ºY2–áð>ÇØ° A¸:YœŠ¨Þñd™!"%Õš®x¦ËbüÎö^e½óK½ÙgYTåØh:bÚÖ£Uªít[zßY}šm$¡ ®Â@,Àó~¼ÝÛ½< ´6B˜—¹êYBÑ <6Á¬à¹ïÜ#4´–ÐÚW-œY!jÃè±{Ã"àí÷w8|‹Ð.ÍкƒÇ3¥´×[…Rjì pQ á#qBC¨vÕfFÈÌ~ªwÕxNžì›9ÁSÞãÈœK+jÇò×Týì£÷›‚8×OEk›N†,VbàÙýz¹SÖ9¢æ:¾/Ñ wÂ<+…ÂÁç*ìÝœÙo!°À”ÇqƒˆÏ­…Üw&áÙÝ;¥Ð½6Z&§NÒ ÚïñK…¨xoCîÏŸx{I¨*Àô#à)h&ÂècíPê¡ë{ô²ÛR94[GA¼? –—<âÚA. Šºï§’·ÝW¦j’žÁý"­1yü7­ÑЊÑtùo ’"­qâ‚ô'Xûüö§ékŸ–ÈOïv6T¼¤‚ø…p´×eòÿðŽÔÎyÝÃ{Ow+,cçÊÓûÄæ=‹D)k—Î%Hä~¡j8^Ä¢îŒÛv6OLTÌÈÜozÊÃì¢Z¡ìaô`F¡P €ÚàŽÐÀîeiFoìÂ1ªÖs¢z®MÑI´ÕãÒøÄR}¥}†~øk¶ëk€þ&ž«¤<ð%vÁë>ðcþè§@RˆÒ(Êæi"¹kŠæÃ^{ ºîb,Mì0û€zü0¯ @Á²Àªü  ´MHËe¨…Çò;Žç ÄñN/‹xÒ‹6Ø®rbí¼¬âàº0ïJŠ›ˆÞëeÊ3eJ—(æÿ¯ô³‹°Ð @øNªì˜õP”ê*ÀÛf ~Â’B!ú` ˆ€þ€®Ð îFúöêºoêŸé£Gw.:ßPrßðæ•ið–—¬’Èoú‹(—ðÚQ ”³æèëˆþ蒡΂+pœu¡äìઠ« 1« ¨ÁÈ ¡,ú¡ü bv÷1hÅî°áGV¢Nvî†v»¯Œ¨Ê,rÏZÅ0ø(ŽªGÂX`,<à ý-Àð-;èBbqôÛqk RZÏòý1æ›2Ùò&ÚäÈü    äà&`í€ÿÁaP¸d †Cb0È„:#‰Â£8¬n3‚Å¡üRI%HàÒ¨T:7–Éar™œÊ#"‡ÍàЙ„ês>‹Ìf²Ø8i6¤Pet™üâ‡N¦L¥2ꌂW=¥Õ©Ó;þ±žH«Òz»Y£Blñú-ª©)£?îTÛ%â÷{£Ê¥Ãä}UÀ`pX<& ‡ÄbqX¹+íúý#Nk¬ Xêõiõº_¥Ù­´IdþÙsžCë³ÚÅRccžë¨T©^ÂÉ&’ÜôÛºÍ Y·§ã8\:ŒWGºÔÉ"Üžâqf´jº9¸^ÚOž—á¨ñ=”~1ÝâBŸçð@ `œP0X3Ãïć&üD{™kø}xþÌï^Ð)J‚@ä3ÍÛ ¯5¯ô¢´Ë:Œê¼>ƒ5 SJ¬´iŒä:ðì(Ü'Pz€°8ê$’DMóö©CñKB†ÁêFè%« T±@B Í, [÷3®“4ÙBÐküyç±* «è~üÊŒ¥)Ê’«|gØ€G'Þv€  1Ž4f™"ÐØÆ)Ì%#MtÔÅ»r´ìŒÂLCŸH.¬A>EhêPü;Ô O:³“ÄI?(kdÏ20TB2ñŸ¯0`Ž Ø÷Nôê Cs›FÅn y<ÑJ9CÄôMS¤2ÈûÆé*ÐÇC°·DKZÒ¹NIi ÃôiV3k4 ºÕ{}9Õitá[.I…{cQSt.ëÏmÌ2­óEÂî)-ŒuZ®‰§UÅôe=v°.Ùâ|IB˜½']÷Íõ}ß—éð~KDy/Lv:Êu»h+I5—RLˆÅ‰tÇ5tÛÂ6dXÃØ-ãsmÏS\?Wan܆9ÌlåĵmЋÀ®ri“e·s™p\¸»kUXÙdŸÃm&‚œµ­Ð~ŸçðFàA‚Omû*ÃØÛŠ¢Vl"«ê¤|®[xÎ=Žè¹I?ÒeFüÕ$âæ»]˜îÕX{[Za$'µ f߸êo~·4e8¢ï% ‚øÀIüÇò‹Ç¡ù ?'qÖ³ -%ùŽ_ÑÝ4‘’Å\!7ù•#7Ö:ˆÔØxÅÛŸF½+k‘O¹EãU>7ÕE]Ûãi¶:Î#Í”†ØHŽSKnÄr6 ÚV­{…oiË~€`_¤"Sœ“ˆcf/5n‹#Ž–z•Äfu.ÿx0»môÿŽz¯åä17…™FwNà“fyVÙÛl‹e¬'Ø,·4oMá7´vÚ)-KÐG ÀâÂê…P®51Ð<‡€F‚wqêQÄ¡—1â’´4=6Žü=(t‰ªm"íõj±´qC\kÉ´©ÂŒµ‘lAYÊ¡\¢gêlÖüD‚§ÂAHÌ»”[ÜhŽœ¤×|UG¨ú! ƒ@pEдÄðø”Z*eÁ"ƆÞ}•,‡­Ö1'UVôE…E±E©*‡ôíùš°ÆVêâ?‘$ÌÑ-¢ã—ÅF/.QR°ÊámVíys¶7´ÈÓ:Ë~lQ<Á5Ǽ%q@Ü ÇÉ1æAïãhja>#`HHØvC[Äc<2dÿªg€ÞJ<ˆæ7AÔ`&ªP’íé¬I¸9fóÙ$,y‘îAàIa(-O3Ãèiˆq¢y@é:𫢇ŠAϬ ¤0A ù œø ž³­ZKQìõºLj›ê´ÁÇ÷ž2Îx±ï«Wp…ì…x-ÜÈÉØSeS‰ Y+"vÐàä ¦ïò•(’´% !‚bOêSê2#pjÌá€(¥ ñÅf?;èWÉJ¼GšÍÍdë¯:ú.ÂŒ‹LÝïœÃ®»NnïãBŠNhxå‹€ô ¼1"¨„aì œ ¯|øûpx!€öÁ@AÏ–+ÖMæÐN”û¤þáËtü,ȃD¦ön,½í6Šp>ê¨Ò¢n@ÄÔõ‹B» ^Ê£© Œ<¿ƒë>—J•麠"ÕP:o –‹`¶¬þNØaz áÏ™ ! $¬Ýìz€ªx±ÌJ¡PÞ®.9¤"A)- ŒÎׯo +"¶Q®È2é¯NÌgI ím$Ö©É,Pûc|Iê ž À¾€‹‘pø!ü.@ØÁ(¡¦`ɦWípä‚44J'îL´DhÇh³ÇZ¶Ð DÀ¥Ϧ×*ΨϠ9J4–®¦õȰ9ð°hn ±ëÒõ Èœ$gO¸üQБìòôPc å "æž¡î ž `´+—1 €Á9p²]m¾ëïFe/ÙG=±K"R,¬ ‘lì¼Æºd jkòÇ Ü’p¨ýÆ# ä¬ÛöÍ2*0†¸þ°l ñkò &­Žáö@€àæÁä` ˆ'¸PJ ?´­‹FBÖÐGxÔ®—k¼Á ¿róN2Uï/)¬W%±]ã",Z8m<¿ãœ—p^~Í ¤B°!î ÀTA6 €ç& ! äPa§¡ Ló/±* +Ç-ìÕ p¯²Ä\1”ËD5ªäÕ¤ÜòrYލˆ©n&éRÆÀyðÖÄdñ rÖÇ®tëm\dæh|Víu)m ²d€.ÓpÈÒp@„ ä¡â#,ma$D¤Þl½ó^v3JÅpPá)y3M"ð¢·s­§ÿa Ð=QXÜëÌ6‚ ¡öà> 0€Ê Ð.ÀD ¼Êɰ”åµ 0ÀFæë/¯6Zê^C„Ì¡ìAÎÆDqÑ#‹;¬úõªgÄv¤1IJÎXnê„’²Äù¯rʳõq¾µ ^3ì/½ ,E…!Ï¥CäZ„qb  Ð àg6ósFë˜!Æàªa‡-22ôÐW,¬ÑêâLîö®É0˜ïÐ\PÐá2'î I CÒ³5žü¦Xö”(N%•L$Hê'§D0ªœtÙi(ã`Áö ,€ `®`ZEGDÀ¸ÔoTõqâêrJQìfÔîÊŠë ¨MmÌü¦„ñEÆ»lKJ Gu?ÊÉHÑLáô\Ö"¥R(£C¦5JÄ\ki{'@ô¯œÛJ-FA ”f`Gxª!~¡ž !L@óâ6îüÆ4O.‰¿‚(µCáC"9lIQ08‹1®zM €0B·+N(‚²X§P fw5T-<b+F `Ô Àf  w¨ølÁFÁpš -6e)qÍ#Ó'UqJ-° ̃Œo}1°ÐE’§)’Weïªë¨z5Õt/m{q6l¨÷ VGAnhþ4·e·¹I%ΰ$ÃÈíð@Fa€È@,}pá 6ª²··Ä‘ÄTG0M*PŽýUµDvX+WUSk~ïUÉT´ÊD.ï¤~a þàÅfZb;$ÆLìýmÌ5In‰ïm1(×&Ä")‚šZÏ?rW»mÚ4/câ1b @Ö Àew˜‰'aü –èáÔ€ ‡óWm6W}©‡ö#‡r+US8Ò1+´ÚþsµMrÈ&zXüôÓØS4µ;)÷ç:Ge#dËbPôò@ €h Àîàºà¸•€@°¿ªr·Fs+$g­f„yÒ´X ³nuèÀ5¤\ ÀІ³÷’˜|åWf7c´¼7<õ=Ž8Z³þð‰HTU?*L‚˜LF§BÜ‘I|¸Çijó6 »_v æÏ$ ¬‚ ” ˜‰šeòÁÜÀ’ç‰÷7¦5BǧcT©d·_lQðÏP!9’ÜínV㕇x&Ö¯TƒbÑ»Yz…YQTûAþAòÁ 9 Mÿ¢Z NÁ`Á‚ áb ÀmUéA*U“5[3 ,ëdøyb”E”êK3wE¸NÄú¹|ym€éäô¶>® ;—ôÐ)ùq Öñ?„;n™‡Œ¥k‰†¡ö!SàÈ`ž Tà‹­ª"a Å[RíSn¡\¸Ñ}©92ëpïrp:[î™D8gqí«Ug#¬>ïºí+‡GZ“·¦V.d7K¬¯O’#L^aæ œ¹ Û1¹d¤ár@Áj «u«!—*‚q¤›Näªs¡'o‡ÇêhËѶåItd0Öù)4“ŒñÙ#r:Ý–u²ÔT[ Vf¤›!X˜íAüƒ. :à.@* ¸’: ²Û˜# F€ªÅN+QY÷ƒ,ôêø¾aš >xù˜1¹:åû{X¾I<´˜Å[Å»ƒ 7à”9jògîwYë†Ô„B¡JãHð“Cuñ†@ ¡ò  P€f`S¼¨8G¾ HX¤à ŠÃ¾ñæ@nزëÅÔQkññÌÕ¹rDó™€5#ÈÛ–0ä3ŠÄÍ»1+.Usù0ÀëüTñ¦gñ—)ïÉ"` 9 &ÀB 4 :Àh`U=õÊ¢eÂà©‚L?S„_ÔÓƒÓ÷ŽºßmYùoZц@.áè˜ ¶öuÔy×½}×ãÞÞÀ@Üí!øhô^<¶gxNou”z1:a5¶T0ûR @è`¼ÂÖQ¥÷ÂÍúsµÒ'M|T&ÀSÁxª2à‡]€0 F §6²Qês’Ú|¶ööX•‰@Îa A°==Åëš¾üRú•+‡D#”s&TòÜ àP0 €÷é~Íg`Hà ­÷ã7:‘è^ˆ @d þÏî¾íîï†áð@Œ@Òì€a¶?ßcõëT‰çéã­QKµ3TrýÚƒž„~à ¾åó¿5õ¿]õéü¸ Â ÿ«  ý+)VUÚlÚÎ8ߘXÓQ´JÝr¬D¾T ÿ*à˜¿aú.~!èûáŶÛaùw:½JFäOìT^×ú_ÍüÿÐS±vàÀöÁ¾J°7®="ª-Ç"Ws þAh.‚Â!PØ<%„ÅaÑxdB‰€^¯§±ÞNð`+‰KŠìx~M¾K€ô‘IIrV‹Çýÿ?ðú’BZVÄ*ïJà7l¤õ6¯z:¨¸0ƒÖø·Jšö=0Êx«Ä8„å"ŒDñDSEqdZ›géö$”ã9¶w@8½Ì“˪°\€ó¼Ok1p¢jÈ*-ì|á+p´#Hˆ#_%ÇcrÙ¡) ì'ïÈ’?ÅÓ$Ë3LàJI‰KKÃɲŒ§ Ë :Ý#Š‘þ+§© !ŽaÍ% CPôE2˜Ç!ž,•Ø ¬$-NèÄÝ:ÉHtƒ'¾rª "­@ŠOQ䶦%• +K)ÈŠ=WÁï¥i;=,­BÍžâpM0UƒaXkxJJ /’[!¦Zef¥p̳8# âºyÂã@ŠV%»o[÷Ãq8Gø¼XŽÅùÀd`(DzJ_gÎvƒãLIÉÜgÕ »#yÂH¤)KHÅv'³ qáxeÄ¢B=,©¯„± Ù/l’ŽI’BU Ùµ" +½Ï^B8ä0ƒmž—eù†c™4f!Æf E€ä€<UÇó­ù9U”Þ7 ¦wý àwÂÓ*u삾ÉL!’ÂF™ëzäPÂ=Q)é8õ6ɽJ6àUz¯~¶Y-ÞƒÖ•-§’ §‰ôze6Ð_–ë¼Áp|Ø\%q²\ 0‚'wŽ€˜ÓK6—ÀúŒ"—iúmkK·À¨'„¢&°ApGRÓkâ6‘©s¶¦²¡ÏéºÒ×øÌ"òŽ'«Šñ ŽcýÕxþG“åEáÞpŠEhÒ{3€ùw§/ÌÞ½†ÇOó*aê}ËÁ.®#~ÇÓõ'1."û1>Ó´`œŒ‡Î6± xx©õ¿ø`æ áxY‡1~8F8 q©,Ë«¶ýŸ¢T.ȵ9Bf•ÈŒj ™Q”òÜÒ;~dUñ%àHé_<…´…‚a0’@&P…'&˜å’Ù0>ÔØ¶.¦úb‡GŠÿ¡tK‰‘5õŒaÊ3‚ȱ ¬ìB^ä•2ž{n½’WîìR‚HÐÚª¨r§+*¸ù;vêJ˜Ò8UÝ·2@øÂt)ÁBDéòá€C4­³Ã”èÑ LCoq0‚à« d”“’Œ4}áøŨrcŒe  šzW ¾CBªãÉ´§^îE§Ad‰*Íó¹6†n:PŒ!d¬»pœL„&ÄpaÑuY¦ZÃG4÷ã;ÀZàü:Èù#/&”Óš‰RQ^ø„àB7Àœ&4àc1uUEþå ³Gl’fKã Âh$¢X"Ë©«>W&!¢½åS"Ëg+m¥¨B(zG_œ^ Ê„?t‡Ö¸>™à¸+Oª1FhÑÍÔu1`Ç8ô@;BïIr«b®>;Èâç ÊMŸäÑÌ$W_MݵYG .Ï9êD5¨Š(  €ï£Lïi²µi–Å÷< ŒCˆ ø;[Eê-[«•t´áˆ#ÐÑ€Dú ÷fT\sqz€SZ_Ô=/*…"yOA,=^¯ˆ¸‰ ~“§]jfäz±V«í‹±–4†Œ±Ð4д j¸ÂBmBìɉZIâ8ˆ5JLcq´Œõ«iI\—Åš)ní8§Tãh Ë®$ªy0^kÝŽ·‡ô‰°|Àc„Ëw‰ÚU[ZWM)äŠO-¸˜¿{bhW··VëQÒ=‡X[²ƒpx ðtjZRª¦»&6ÇÕll«Í‘ª UÖ‹ŽéI›Aqn3´Ž÷ÞѲ2?¬K¡:Ü Pˆ".¾ :œNÛͧ46¦ìNsj¨!Aèx ²ê`ÌAˆbhrøS q_Y€OT-º6f@è#eçsøÑ9JH6ÐØÅÌvgD)Ö)D1ꪎ8FÛ>0šÂ8•x+dó ƒ°…,6 7:bÈš Œ  €ü%‰³ƒ"èœ;‡ò†kÍY ÑrðxW‰[ûÕr æzlÓ„ú!vÙz§Ow÷¢ÙL—o¡*fJ°œ',–ÄNmÒ…À‰Ðy+¡ûB*y cZžL¥Hêµ\åˆñr’”¥+1­¼ÄPyš`XÒº×[2ñ¾|"UPB¾UË:çkí‡<>Œq '† ¥ÀôGpÐ]* Xœ\±Þc¦‚Å»n2f ËA;þŠ|ƆÐx+BT!èø¡²L²JßÊA$J„µÛ}(V¥Œ‚ìaÊ6Ñ‹^Kf뱯"Y8d°ÁÚ½»÷…ÌYánEðt€˜+0زÔÁ©r+/ëòdóÏŒ½“ŒÉlhÇéúŠ O·V},ÁzEKW3-ÒØÑþWÝ”ÒØ&ùß?è}ï[ô€ãÉ}{“ãþVI‡8ü?ãĉk;8=ƒÓùÀ\ ø\^p`¸…€!ë>aX›A‹¶Ó¾º,;Û/ëo½bD˜Ò‡¥Bô8TšS†*‹†/ðòˆ€Í‡«G‚HJF@k—½ ©‰%+æ1cÔ±Ù¸¯Ñ "´¼À̳ËÌ b–2Ȧ"“Ð>@DAÔ-BØ—…Èp…è6†:ˆ (¢¼ ˜“ĻҜ¾kÇ¿~¡Ú,·#>¼s º|²ù+' “9ƽ¤ÁLÁ¬„l.7p>Âæ|$›2ÁªT"*™>‹§;ùOCÄ"Ss(è0@LDÅ,S@|† 1“Ô36€<1| ˜âC²½ ´9콊4šcþ2î ’y DE3h@Qª·ÅËךt ÃD‹CW„ ¸ÜcFÜ…Èqà6ÅQ=C(EsüÄs‹kì$9Š,ë/8ÑŠ˜¤iÆ‘¢Æyi£ª„#´ûçˆ+Í‚la „tn5°…E“1A‚šÆ[¥ºçF“é’£È8ðƒ@,PƒÆÔƒÈû­Àx]ƒpa¢R)0<ˆù0ªÍ¥3AGTIƒÿªƒlÇB14ІÈ‚T‚H43h……¢Ðç6»×H¼Äs²‡Ó“ÌQH.Iü©7doG`ƒœ20IJ/Gœ>Š& U¼±µ†D޳ÔL¼É±œÃq˜ì¸A ¡ÇYQGò3¾ë0¢ûÇÁ˜&žøGÊ›5ÊÈ‹O²§H‚ø<<)™ŒñŽ:rX‡}¹8ôŽJŒÁLÛ5…€o˜<8> ür)ß<‹;¼»MJT9F‚ͿܜCì8ÅÛ…+Jº1Í”A²ºùøÇ2ã÷¾IØJðHLãPRœ•Cظ»$×JB›"ì* üÌÎDí.¸>†H@…l:³¨€½˜pzw?ô‡#(ÅL\ŒLT¹©¢cÆŒ}Ë‚ÏMk¼\GÄêÑϜ˙»­\K!) Kä¿N,ãÎÛHR‰íI¬5M»ýŠ×ÊH¥¼Ë‚¶ôÚ,μìÐe*às‡°tHg`WèX>(Œ¨EÁÎz§ T «dz£ ˸ü£ Òö:$MÄ—ÁX¶P@%ÐU®°…-%‰ÌPœ£¤K€V‡žÕD¯Ä=WãpU- I˜÷V`Ô˜IW2¾V•j ‚ k˾Y9Œm<¸[ÊH‚P©·Ø(ôÕXAµW@/Xe“]4à@†`A†s€  ëˤ³Y½n±ä¢ Œ¼CQKÑâýÂÃ9ÝD4[OØ´7ϵbVÅCñ¥H‚`Jå…Ù:­PSspט¸ÖH»Â¥×’Zµ²O†ÀP€iˆx‡ØxÙ‰Ç-™‰”ÓÄÐÛNÙÝ{ ´è ̉ɴGMo;ëð±øzàzh‚hIÚ¥²ª%¬j¸CÍ!¡å ô–Röˆ]°¸AÙ-ÆÝ ††ðyðJ J…HnIÆiê€#ë¯y¨¼©Â=m(B.² Ü/L #T‹ÎiŸ)êá¿eQDÔ´Ë] ØÉ­ÊX5 D€€ø&\XIÝŒÜ|]XÅNGÑ Ü¹ï•ÌÄ LU°µq8/ÞÅöõ³„øH¶Ðx`ðÃ¥|ßÍ¢WÅîO²™WìÜ•b¦CTl\ÛµkÁDL¸M;H©×(`ÍÜ=ê\XJ_j|ˆ©P,A`Ð` ÿ†CaÐød$ ƒ€a/ø¤>%Ä#P¨tv=#ƒ¼Ÿo$Õ`—ä’ù„Æe3šMfÓyÄæu;žOgÓú…C¢QhÓ¦ÛŶ‚f ˜.f( €‘€ŠŠc0XÝz'ŽÇ,–7ýzÅ]†BâÖØœJIi…\¢ó«¤v/i‹Bí7ëÊA]ÁAëøL&×"ÅWàלujÁpÄcò×i•b³›EdGãÔš&$ÇiJ>§U«ÖkuÚý†ÆF*TŠìU›^c¬Ù«x v{y[áð¬Û{,Fë’c-™i{Éõ( å’í—gµÛîw{Ýÿ‡Å°s=œÉ–²ebáX</`hÅ[x9>…1ºÊáÿ Û"‘¹èrÙ® â·0¨| ΫÐRüú®oü›Àpl ÿ¹ˆü "póâ@0"Hzm>&´ÍCÇÅÑ|aÆ  Vâ!±nå1ï»9Á¬Ci“%C­Ä?"G‰ôx©/¥±”©*ÊÒ¼±,ËRÙì~ÅY¼U“¦Á8ofð€Ñ 8ü¤r*bÆHi¬€ÞAi´ò™Î´5-·RDõ2g¬N&E$˜uPT}!HÒNÓh?r ¿;Ns¼ÆÓ­ë&Í? Ë ²ÓÐÀçÎ2°·ºN¡/„Ã'ZÖÕ½q\×Miˆtd9 CGi¤€€H€èÅWQ¦Ì-›MаsŠÓ‘ì(¸Ô ô3Û22!V°L‹ >‘ëïÓPM RÀö…l8Wd÷NW”Š­Q­D­w€àXl•AM®OK½Áa¸vzÐÎ<ƒUWŠÆI’t¡YV˜&AäYHïW¦8lf!Òa¬@Z–£"Zù-­jçÉêЉ€õý€gz‰¢¨86‘ÓYªx“%¤£YèÚž©ªêÕÆO”“YaˆçíŒ\ھɲ¢íù QšͶíÙ&‘mÏpÄyˆÁ‹eáyÇ/í§G‘´¹?Ø}âÕähBãÛÆñÜzh}ŸÇÙ’uÖ¹¯l&ÅÂrþq´gúAÒôÒ¨VU…ÇNpú…d0õ½ŸiÚ×WÙZp…1¸RÌÆéø–0±öÞ>ÑmWÿ‘æùÊ7SÕùè_¨ö^Ÿ±ìûJ9¼y¥Q¼T—ç1|kž&¸à0xÞßá-y]'ãúþÈg£ûz½ïþÿÏÁFN*F𨣰fáà À?ø$–›k‚p]ç?—êþÁ3׃~6d̘_½¢ôm°›"É} Bd‹à«Ì†pÝÇÁ§ã ô8‡ÐýIÂ1„9Æ&£Hw Þ>G| ÐB Eà [dRŠÍ?yâä];‘ " ÑÍÇhÑèx@ VP†y-#æ$ò"¤pŽÌ†,½¸·ãä}&Íxè8F aÂñaÆhÑ£d/†1ù+¡ò?‡Êlr0À=ˆë$$â“/j=ÉÙEÇpùФlŒQÐ1DƒÔqÊQÝ#!tn‘ò,‘ú>xØ ƒq46Ã0/fMˉ”•ˆ€ Õb€ „BaP¸d6ˆDbQ8CÉôòA…ñ1†)HdR9$–M'”JeR¹d¶]/˜DßOçÓaà×g»ísA”êd¹ÞÎwëýø©@1¨TjU:¤•øþ«€Ë‚Jé¯741 Àð(>«g´B^¯Ç©0 À€"˜ÇjuZ¸M]ùE~£‡ h|œ§n©Žì£¨8 ÖpmvÛ}ÆçÁäry\¾dûÍÖ`£1¸ïC­×ìv{Q÷ÿu¾ôoµÝíf›½§âk9žÎgÑÄø~è  `(€?=¿çöH~(̓dG‰ ðžƒ7 Óxß8òðá­Ë‚åB¬,í9ðºòé0ެ5Ä D…Géôlž&ÉÄz&©ÞjG¹ÔjEçIîtÑà~ŸÇè Çêrü?Q ÇúhšáÉ#‰ÈLÝ·­üލÂ,'+Ë’ì¼”C2ú¡:Œ4Å3ÍJVnžFáì~Ç X›ì’uÌLpfùösùö€R´êh5QŽÉÞ}ã N2!™†Jp\­F¤ÒÌ$ãÓ• EÌ5M20µ5UU»fáämÏGËò˜ÇQŒzG›†efJ φùî~Øqìþ} ’¤Ù4;ïYÕ–‹”xŸGˆ´ d8jDÑTÃs*A–’'O8×Ís±Õ-ЈÕõ×wÈæüú @ËH$RIýWj)üý¡‘‰Ög¦hµBlkNGN‚Ÿóa»XÙ­ï$Ÿöh ¤ Ò›h^ YjZÖÁYLʰnD„\’Þ_™æ‰}Õš ÷lÍœgŒAØ|†=ložFôVqG‘´üa ºy›ÀÀ ` ‘@å\n6R4/‹õ€ À&ƒ©àÿ_ãÖJ ¯g»‹S’ZâÞO”ȨŽYpç™A¹p ›ç¹×ên€c&+pSÎGÔs5Í>Ìm{[æ¤ë7ÒEYã`6òˆîGLë_L¶‹›¿J‡ïtÞq¿tý®åÂgœ7mÝ£çYðu”†ÙDUÅIÑô NÞy›“\Ø !´@†„_½[ôÖ]šöžo½u÷Çuïûì,k¥IºSœ§±Ê€`L‡ò~™åÌ‘a¹'ƒâ‚Pì^Û4{¯Ö*7ÂÍ_tÌgš hì€)«?8ׂ‚_B4ˆðœ‰\g° BT¿Ù¤ „ÌÑ} 1¸(„(Ïhð~€a\9UŠÌøršßÈ À}’ØDßKb\°ê&"(PÌáTM\ê8ŒpÞ,‡°`6ˆ¥ÔàócÌ€ðPþD`/`À˜ÄwgRÓŒÌíÄö_c¢£PAÀc†è°,@pÏ^<ÈT@=GØõ@À¸‰@:ñRÏr8)ù %΄vdQâL&tJ>CÉ"Äp ‹4•H]}#‘à(`:pX©É8%b\«—K¤¸y9.Ò¸™â\@Œá€8˜,íÐ@g°9,ÒÓ-™œ$™“l¼É¦C/æâƒ a…ñ€@8ëvpÎÓV›Ç´§â%ó6|ÚÓì©Íåá8'áÚŒCÌ)‹° 7š‚÷ 4,¿¯©à #ZM@„‚ÿ>ú¡”l•Oåß@(áÍSN 7 ` !¥EIA5´ÂØ}AýИŠ0ÈhÕ+§D~.ºANÍRòá8\„¶³ªI%cÜ~zP¥DCˆ¦2›¯ sRªÁ §«¢ŸÕ“`zchP€ÙW«A6 0f$p ¢¦®ª®ú¯ZjÍ[\õv¼‘Þ>GxFá¹zûaÈULçÐ) ÌXm äWU×]ìE;¯Kš¾Y’è'ÆÐžÁüEË=aë\‰@PÓ ü À 4:YtY‹OHlÚâ³¶Ü©9Ê0ƒ½Âñª€»yVlU“ `œ2YÝdÎÅ´\öÚãлr´­ÝÕ&È} ”-Â8ì#²Ã]ª8k§…°aò™Þ£ýt—5ԼӺ뭳|É`È#/ ºÇø›nfDP&À˜rÁÐ*«t¥ð\WËM»ê«/¾%°o ©B[æ™gÀ|(°ÀÈ@€Ä>ðZXSK¼.ªðÎ5$‘T7‹Â+î.:“»` ƒ, „”¹Œ–Ž4ÈRwª¬s”Éj [ŽAmrÄM_CÐ~L%€^ @¨6a»”fRÌ2*ªl¯œÈk¡¤[1k˜3ÄÀƒìzZPKÂØ\¡xIœ^rÐ1ƒ:ª<ï¤ÈvzÏ™û@i‡vægƒ— dÀTmX3TÚAUi-=4ª¢0SÐA†Lµy,ÓY÷?€K®]2ÇÀà2Ã,ÑX.-X©ŽI¡(K±1°1´½pFBƒQ A(_Û¤°†ar9ÆÜl‰Ì±bf>Á°áÔm–W†ÏTyzJD3[®UT \»™f«éE Њ,#('à„˜>ŒÀ÷ … €3‰®@>ǵŒ¢Â!… ƒçS/ßJЉ€x&¶Jã²\‹ tï‡]Hfkéf‹`.@ø üÌ‘‹1Â,CXÆ X‡¢*@œ¾(ámîà Üaäe‡rÉ*_Ý8ÏñÿtØè0nã€WZ^8Í(ú@8аˆ+@h½˜ Î/àVNBwÄBlxõc`cu0PAÈNŸ^ь߄8fŽg¸‰Ð~'Áðþ0 ¬%Ä0Ðç½³IáèAø ‹Òr;Â@¶ÃÄ}uíPÑÄ€Th>‚0àä ù7˜z‡(Há×NÆBÖ}`» "øp!ð"hËc(, Эá0 "áè‡ÀÐ COà"i$~†rÄ/G(¼‚_ù§2©ì_ÀJÀJ4)` ’'ê߀¬€¦â‹eìH‘aJ!N¡Oú…i਀˜!æ*]ç< ¡bÁf Ð:"gˆ æâžP^  ƒAá˜T. ý¿^¯Ç¨ †ˆD€é$$‚€€¨dŽI%“Iå™T¬æÈ8«[êÀ`+›Mç™#Íôò0Š h’ uE£QéšU.™M§Sê7ýMÎ@' °pQ¯WàÏgãØ„!¦G©°`·[î”1Öøu”—d÷SÝÔnx …•ÔßÏwëÝýS ‚B¤ é2:H…ÇXlÖn¶q­M,C84 Îi䑪ˆ€¤†Ú–ÏiµÛlªoöÛŶR^߯çèÛéÞ/·’Xv–&‡‰ü~—O©%=³JFÒ€õ|rù>OçØ, lñáØ`v†<šM‰íx'›§‘º€`;ô¹éðAqP!•`0@Ф+ Bêcr&XîS…+HÓC ||à`@XˆÅšfšÄ‘„b¥§yªÿ-`ˆãFQäz¯Ÿàþ}½Q3ØÁazÊ!ˆÐ‚á<})$dQ¢D’f©"»Òš”xŸGˆö£@T4˳DÓ54ðÒ¢ir% Gûˆ¶Íi<€Ÿ'éòL„؈ ˆ“Å 5‘f‰IšÄˆ«´5#4ÏR÷>+ð ¡t ‡l–‚ÁÅ%HœÇ±Ì&"Iì}ž "ÿS$§Ñú}`@&Z‰À$‚UƒaXi$Ú‚&¡!*‘:Xˆ!è}ž‚(8#aé;h[p1à|žX’½@0 Û—CdÆŸÏIõZŸW( Sà.PB(d iEtÏ¡ªI‘F‘G;÷úy'¤hB‹á0Á„âx¤¥c lQî4c1„s˜ ˜=XO1ó#B1h€þ+—6…¹Æ[ ÆÉGY~r¤Ÿ‡ùùJŸSH°eF†€ k}_‰uBÝ¢Ù|,™‡a—#ZžgÙæƒB@”:Ìw§lûCm‹ §êq EРxGx9 ‡ úJDºÊ!m<# ,Di¤EÅÜ/Ýt­Ú # ņ ˆb2! xMÇXF™Üi‹eø±Ér–€~EÅLÁ'GÛvë†Öƒš'i 1˜CæxnÛă4ORùà:…ÃÀÞÇ¢° &¾^œ¥Ú·„zVõ×]¨E•ƒá°*"â@ƒ¿¹n&`Üc €€k:Í u뇙: ðŒ;»¢ïóÀxO¼£öÂÇia¬>&8 JHò9Ll3 AÐ0ÊÚƒHÁÈ¥ÚŽˆ€(€ V¨F€D@ _Ä%])ée‰Vw@t;K«¬Õ<°ìXn‡‘6'˜Bƈîa„vq؈ zDÀ$Ú Ãxfž'Ærnÿ@Ä £sŒ¶â$h3oxÆö¥\™í ,Gæ– À¨4¤%¼c£g#DC‰Q¬$Ús„ÃüèòÃÄJ ².OCÈ¢HÝ(Ò*¢cŽ¡d¡à€d‘ DK‚“òÔ“ŸÁ,5„¨’Y2%LËd2]s{u`À_` P™pv€@ŽÑœLl"ˆ†ˆPÇØö…Ôª&‰*&M‰Ðôe %AÜC  ‡Å*ë‘2¬Ó±“‚?x !䇰0Äé „ŒRÁH#Ƙ\gtÏiÓ™ä–<Ãè¸öÀX@( ‚p Á€3  €@&‹AÄ,ÃØË0py5sÀž‡ª¯  ˆpl"WÅ.¨Ž6u’¨Ü0ðÙƒtŒCsJÀD×0#Ü~À?˜„ –‚eE¬„Œo1¾&F¸˜cxT$¿`Ìvd®ÓpËaÆP¬ÌÁ«I@/P{TH¥T²²Î²ÅÙûWkí·ŸöžÝÜ{—sîœw¸w^ñÞ{×{Àýß¾wÿà|OïÞÃxâm?Rñ^7Çxÿ!âò_‘òžWËytÕá|Ç›óžwÏ;Ÿçý£ôž—Ðy?Mê}W«õ„§Ízßaì}—ˆõþÏÛ{qÜ}¯¹÷ž÷ßuwïþÃøàü_‘ò~W,øÿ/ç|ÿ¡ÅþoÑúŸWëb¯§õþ×Ûû“¤€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œL OùÌö}? PhT:%G¤RiTºe6O¨TjQÝN­W¬VkUºåv½_°XlV;%–™U³ZmV»e¶Ýo¸\nW;¥Öí´]ïW»åöýÀ`pX<&3yÃbqX¼f7ÈdrX\FO-—ÌfsY¼æw=ŸÊçôZ=&—M§ÔjuRݯ]¯Ølv[=¦Öå­Ûnw[½æ÷}¿àaà|'ÇäryXÝÇ/Ïètz]>¤û›Õìv{]¾çw©×ïx|^?'—͘ðyý^¿g·Ýï¯z~?§×í÷üIþ_Ÿç÷üÿÀƒ÷À, Á Ál ´¬- à \' Ãì=Ä 7Ä‘,MÅÔGÅ‘l]Ãñ\aÆ‘¬lþÆQ¼uÇ‘ë·ÇÒ …!ÈÜ"ÉL•%³r<™'ÊŒ¤¾ÉÒœ­+ËÊ¿*ËRì½/Ì ¹0Ì“,Í3¤ÓÑ5Í“l܆MS|å9Î’üã:ÏÌõ$NóÜý?Ð|û@Д- Pt=EÑ FÒ$öQô-KÓ­+LÓ”í<àStýEQÔ]CRÕMTô8u]]WÖ …OXÖ•­l¸Öu½u]×[^Ø „º×6cÙ Å‹dÙ–mœýWö}¥iÚŠ—jÛÍ´ƒZöݽoÙ¶íÁqÜ•íÅrÝM_sÝWmÝOÝ—}åyÒ7é{ß í|ß—ìç}ߨ2à ƒÊø.…á’N†âŒw‡âX®-☾5Æ6Ž9äÎ3ä™, ‘äÙNTüe^]—Ò˜öa™æ‘6[šç˧›çYî|ãç™þ…¡ÈÙ–‰£é®ƒ¤éškI¥éÚŽ¥V'šž­«»Z†±­ëŒµ®ì ‰£l[.ÍYl›>ÕµéûNÙ·î¦ã¹îŒÎ¿ºïÌÅ·o[îü»nûÿÁµ›ç Ãñ €?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œL OùÌö}? PhT:%G¤RiTºe6O¨TjQL8L>LPULlLˆL(1L˜=SL¨‡s HL®ëBicon_512x512.pngªX­f×P _5yGàJî)ê5)g`HHtiffutil v268.1 HLinomntrRGB XYZ Î 1acspMSFTIEC sRGBöÖÓ-HP cprtP3desc„lwtptðbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiømeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o¢8õXYZ b™·…ÚXYZ $ „¶ÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤þ_.ÏíÌ \žXYZ L VPWçmeassig CRT curv #(-27;@EJOTY^chmrw|†‹•šŸ¤©®²·¼ÁÆËÐÕÛàåëðöû %+28>ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿ€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ð±œrœgø€‘ª¤9üI9ø|€Iè@F€ À-@Õ ™¾p€1ËEQ†q£L‘T˜T×Íu]·çáðÄ„(yü}€ð>ƒ ÛA«&¡®“¤éþ \Zæù¤‚è ‚ÔWP€ ˜_…ÁØ"ˆ ûL#p€ y}©‡Ý>§ñø~ ôVGùÂj\És_˜Ž%‰âŒÝ‘O¢øLh} ‡í~À¶*ä • ¤ŸÁcŸãPócÔ'ä†ò •¸ pÝ)Õô}žè&‹Œ!0Ü ˆ"¤X\!xY”âºÊLfçùây€XéPYù­ˆ  `ܺµ·îŽäÉètÀz çè`B€îð8Ž l€x`€ûjÉ•¨F¦Å1üj n€+_àh € H<6ˆDbQ8¤Vû}ÁŸÐçÈ L€Iœ#Å¥R¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:$˜Ï'“ïäºz…A€0 5­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nW;¥Öí3Fß±Lüƒ=€²¨U).Bá]ÞXÿÈc Ìö“ý¯—¯÷ƒš … Õ ”Ç"üv€¡À4œ8@"ÑUûK·Ünw[½æöîÞp Çú@þv½Àç ('¾ètz]>§W­×ìv{]¾çw½ßðx|]j›íéC`!x6€BA0€=ºÈi.,Ö€>ã’¤â À*ÓÆƒ#b ªŽ£02 €LÁpÌ5 ÃêÒzž  GÄáFG !;GFŒeÆ‘¬mÇÌuÇ‘ì|ܼ«ã9@ÐJ BØ>€ª®ïÊÜišÇøþDåù~Îît m@ >âX–ŽˆT¶ÒüÝ7ÎЬp`HTäñ<æÚú€$NT- CÑMEÑ”mGÒŠŠòŸH3ÎÈã:L+Š`<õ®2’ÔF‡øê9#`LZÊ$}JAʈî4€CÀ…=%]וë®c™l ~çr ¡VE}eÙ–mgÚ¥iÚ–­}£ ñ1ƒnX€a^·ÔK”fÉYük‡ø©€0%vÓ€8Æ•¤ð †Zإǫ+ ÇñˆdŸç‘æ…EN ‰â˜®-‹ãÎ5ã”3Êå € à =€!LØ´\ªæ ©þI‡ôRmyY¯-²óŠRQXPSn;£é6QåPeÚ EØ–“«ëε­ëšî½¯èõ‚þƒ[dQ¯ŠË–«½¶' çéxY#Îx€UÖ‹ÊÔ‹"èQ“`„ì/ éDIü?hX´Z·Éòœ¯-ËóÏ5Í­‡ú6~aäI b¸ ÛªþØ¢>›×ÅÁþ‚:9÷c  -‹ ¨×óž„«ÆYþS”Çù(L]ÙÖyáú¥éúž¯­_/Ûϲ¾Åìp©²)jïòHª¡£%¾Ú'õ ÿb%ó¡  Ÿxñú§©þ –ñdÁ 0}YÕ”‰Ðw k!È=Ö:yG‰R`K έ޼ƒD`ŒaþB þc­/>X7 áD)…P­Í¾â(øßA{oÀšÃG¹ ¡|&oe£7–¬úŸD<ÐÙøš1þù „~H&¾ÒŸX”=‡H)í¾F% ";íÄAñš8€C¢£Ü~O„©>} Èsò^†Ÿ¨TŸ„]ŠðÞ,ŧ%“lx?/ÒDHŒŒB‰dóÆhu!"„„’,GBúyGÀ8‹q`¸2+PžTHÂîP í¯1ú`ò!bhFý %ƒ”Xü#„èD`€*ª‡Æ^KÙ}/Øä~‘± ¢Ì)÷b”Ä™$½íLD_£”S‘Ò5ø¿ žÌYq‚2ÆhÔ$߈ï|ÒFrs %Ú/ŠÑ2ŸÝà”ËšsÊ1NÉ×3ãäT‰óPˆDæ_gü\$Fs&Ù· #Mžr&…N¨5^ädŸ‘.mQ’úäDušqj5Dhß@$1Ž“Ž(ω¸ûi´JΙãC¨Z` tÒMWáédb)ãìÁ EȲP&“é8NHÁâP€F©=Ü0ÿ~ãùm‰a) ÄÀ«LjðG™‚‹*­ÖZÌõ¡q4ž„ÊtPYáHi”Î!óƒPÒ'7â…n‰‘‚›ÐÚ)QIUx¤ó‚cÚo<,$†£”f&ÄH]_áÍPžÔ‚ÒZ÷K¦=¡’pÌé 7#­mÆ#ѪcÌp‰ÏÒœ¾[Gâôõ®1–ØDÉÉ@¤u¦°Ñ"¼X©=-å5}”©ïÆ9çg#õž6–܈«@!Ä‹~qšÛÊQ3â-*ŽÖVpMzcEmôý†vîèH[N.üŽ¥ŽwÜûwiM´ûˆIBk8ûïtT¾”¾íL‹cm©uŸµ¶†â²Û­5ìuš1jqX([ïTÖˆtÎ8Ü›#Câ€û[gÍ‘ƒ°)DàI壓A #Çð{˹‘JG1)¥B!Ž1…ËYñ½0„`›‘4cäW1h¬)5­3ƒ a,flE rXÞd›¡DItÆ‘4å;o;/VTÂ3ö™_šë_éQ¥6qM)ï oûé »ܺKq$4BÉÓ7"Yl±23Í'®¶_&ÞdÁ0ï\s¦¯ÆÁFËý|cUw[._Í!äOº·ÞŒWù÷˜sW¼7`¨§­ˆ¢‚›NØ™|(Îd²öæßæ¥Ë î]§SÔR¬ÛræÎV·W4ß«g}¯dõ›Ù.nÆLµïöu»·ÿÖŸyfÍÒ±º¶Ïa*;I¬5/ÁûŽînw¢ö[|´~e¾x‰#t¥pû¿aç½ÃEnÛóдC5Ä9ÇM2íø£×oØa kKò[y†€¯À¹y‰IhúR¢8Kàóªq}yï©?U¶%Ĩ XØ8LËÔm] ð„yV*ÉÌ ½š|ÛŠÎ×"‡ kfÂÖV‡.îì§F0}쥴ÆÕkI¥Ï¬$êß´nÃÇ}…]!ÎÀÌ®þç®™¨+Œù†×PÐm£$Vç»]/jnªçØ.U²Ž{6‹í+·Ô·7]ï«OÏÍ빤~ÉîV#ÞKiÝgE®à:–øô|ÕÕµ> ѯe%àb4к]uì_)“»ŒVÓøÄf=vï?–¼”"à?êûîÝî™jÅöÛvw.ã˜^‹oÎk›v$~e¦‚öh©®Í Ó4råÿ}r#~9¦yܚᣭǟÃêzØÉ"ôÞø0ÛGY å“n?ÂܘB½îÚäû'×à¿ÖÃÖz/²¢~øÎS¦jýjînÔõN ‡ÎŒôÌʆl–Íì úÐþnø°ªH×Nüš´³+à¾L0ñïʦ°2Ü-ZÓkŒÞΈîé°ÔlⲄÀ~‹H^ôÁþ @¤Ajî\'N0%žaþ\AücžÅǪª¦9AÌÀ .ç˜PÁ†þ `¢–â—O|F'Üýìêªôû(Ý/ ËÊÇÜÏOʯ\ÑhúõîÒ›m˜™/®ÊKM ÊÖ°ÎýPÚ­ãôØÏ°ñ*욊ìóO.ò0ã.òÌPø$ù-ºðúúi°ÐP÷ÉÞýoX§N‹¨Ø¸1! ¸§KúÓ°K‘ íD¯FÐ @ÎÍžµ- .ÐýŠæ¾ËfÓ”ý‘è¦óN€‹XøNöÊh؈¼ôm2Ò/:Ù0Ê¥)þçMÕO "1œñé+¨¶1C¬¸ˆ¶±ï»Œøè±+ N›£ÆéïžôY ñι­& NØì‹¶‰²K ¦ÝÌ,‹ñ‚þñi˦ùëñ/dêÊ ÓQN‘íõq¤Û JÖm¢¡nŒ^üÛï8}î„ú/ì÷*òìRè­ù¨ƒ±Ù£âéÑÕ#-ÎõéŒÁÌø-_¾ý­Rò0@¯*ô˜¹òlÏ1™©ìKxÔ`ý«O'ÐøíðàúO0¶®ø÷S$ B‘2ø~à@Á~`\ÌGÅ‚\c  ®Ár‡fb(NÃ@ `¬AFK‹ ²ôKà¦a!\uÀ Qµ©òèlбÍ íÐÅ%®¯Ò%ïß Xõ-‚Ý’9J]«¯)ß/êò Ü£q‰Ì¢RW*ÏÑ¿*r ×nxë!Òg1m¸ëÎ÷3LþïR1 i¶ï‘ÎÞ¢obê1í,ñ ùˆ`×Ïq$ÒŸ+&ìh» Ó”î_9ôë*VéQÎÏ8s°3°àé®§=}2k€éó/(Ø›NއqÓQí)Œ¤ÓçR ÓfçÐ Õ’ ÆïâÎl ßH¾è •1j8ö3âï0A+ÔM/-bõ®yïWC«d×MVýtA/€»Ó,¾Q{ ‘ÞúqoBÐÇ>Ïu*ѬÜÊÝ/´ºª=kó&‰g´í5ï7!ˆæÞ0êíËÂìGrZžLÍG¬&¥¯õ8´a°-ëK‘IÍpÛ |ØFÀê¯3’ÏÓÂ.ôô¥I²E óªìêl×[Q‰/›M  ñÓôÝ‘›>ìîÖ2©AòHËŽÇÈf‰"F¨\€prÈ"Ðr"AÖ^ ´ Aünvs–'n¦ @á:B/u`FÀþqAü€Q ›:XTS 9ª-QžÚ&îë5:«½!½·Kœ0Õ’†·SíN±'#îñ¨ñÍÐUÍþþ”2ísKô+3œ›­.%sé3³Kp¬“0ÑM]Ëó¡@®ëŠ<¤oI;/‡DÕ·SÍ#2ÈÁÂU ª&ð’`ñq‘§5Ó/­V±Ô7:)õý6V3_S®áÚÐÒ=YI¤ÿLÇdË&¡»& z©ìS‡Y±/gÂb1Ÿ`Ì'}$aØ ¾$Á@—£V7ì:ÄA$ÀøUndBýrÑq_õ“hUËiK Ò3Vœúòt¡ׯü/uj•<—=q.¢Ê­1—rÖÇ„7A®½³Ë;¯@ÓÒ7%¸Uo·Dë±wÓ‚ýì£eu©&–SJïø"N š4 Ò±iÐgî³$´øUÓ93±Snn„¿k=4nïg*ït"Ùt–Ò”'ÔàwE” gO%8 ë˜ž²leoÒùµ4àà­©Z¸ ô͵×nñµn*÷«+rüvÙˆ¸ßlו£ؘ¡ík4W[’CX­Šu³‚Xý<÷͆s½B8)i•îD™A9¨Õpá2’jëx&Û+‡F’)9øs€ñÇN³w”sØøñ2Ž Yí8£«v4’àŽå,§9Ruq Ø¹vO3Blд’EJëP¤¯âØ×zðd¤yƒL³v¤j5rí ”…Ž™WÐö÷«Í!µÛ 8+tGs!@ˆSëŒÓŒÕµ¾ÞvÍZ•¿ÓÂ*§öÀU÷“ë0í‘"ïHMRR@A„ DêÙzb&!œƒèB¡ä]À 5³Á Œçf²¤Wxó«g1ô¹ÍF1¥Px/a)¹&i­QÑq7AøR &à¡x`JCï¨ã¾  r€§¾@‹ŒRÍt«3ó±Ö%|+¹Aðõ"Z²ÍÙ¼†+©€â-b/ÑÙù•÷ˆ5õ|N|¹a‰8-n¾:«‘e"qèÞÔPÜ·mjvÅ ô}NUiÔED«zØúÍ9“#}xKö— Žý—:ªüðYm=®˜éš¯KJ9^Ýt鲓š™¹õhn¢í²ÒºÓ²‘¯%¿¥P½Zs;•™^L¤–ŸC†Ù5ÓŠÕ”ÇLh_BRCi í5ÌûWYÞèŒÞ¡zéFë]4·Nº:k%[«3úéô­9óë?¯ë¸TþŠ5;oyMše°(°àï ˜tÝ®ùXö·YxyའÉvŒÅ¯Mþ®{A·“¶ÙV ¤­´Í”€µ—€ôÏG½+mW•ðßÒÁZ›Û ™Jg],  ÷oÁð ónµ4iH¹€ÔÙ„¢ÙÿŸê_Žójœ8ÜHï·“»šXÀÏhºº[¯>Ìá0°3rÏ»>O‰vØÐ^À`ääbX €?à@$ ‚– OåJþ €0'ü ŠÁ"ñpÆ¡(¬f9&ŽF$ш4~;“Æã29;þe‰H ñ9ÄjO=”Ë&1‰¼®{¡D ³i,¶u”Q)±ùÕ6•@’GeÐX›íê‡,æ( ÈíV»e¶Ýo¸\nW;¥Öíw¼^oW»åöýÀ`pX<%íäóËÏÕãü×%r,þ¹PŸÚhÔ¨¦Ù ˜e©Œìþg™ÑQç:ª%f—;Ëë4ÛlÎEXÜm©ÒÊŒš™G”ìërªT×W0£Í¥š8Õ[5ŸÖíùÕ ŽžuÁ•m¥Ò¥byÈ­Z»UžG~‹Ò‹só|¾ïÍÔôUõõÎ g;Å?ú¿ƒ”Ù=ŽÛNË¥núF£&Ï»ª˜¿)Ãþò©‰ã8×»p¢ž 4Í„ê¾n’6ö?Éó؃@mÂv«>ã@ª8ëúÏ<ӦحP2DÔÄpËŠå"o—8ÑrZ’¸j“n×2NâsÅÑã ¤Œ¬"”7Mjjÿ&I“îEŽË‚ª¼1´ºÊJ |{Br{®ª¨0’S"C°ôœÐÅ®4ŠÐ¢ŠÜˆàÅüTúÄŒ¼Ü—ÉÈ !ÁЬ+Я“:œ3Ï{@ÿµsŒ…N¯”‡:9s3K@´òz‘ŠIY×ô¦sU “ÂêÀ³ì×Á26ml3O\fAlpøÈràËg€LÎ0L.µ­ëšî½¯ìűì›.̼ ¡úL‘§ð  ‡óS=BU4Þ¶¾øRáÏ,“oIz©™¾¦šÌs"|îJ±Äw˜Rµ e Þ0Do pÜóGçnlÅ┆œ¡èî=íÁYo‹‹8æØƒgÛ.ÃUkhtägÆðµ„Tµý×Ôá{¬HÔ7õ3ž8ñ«8;TïzÒ´ß<ê\ç“!<Ý’šÍÕÕà'7ou2f%0ä”Ôß7^ö˜Ptþ%.ÄÓÏ(×Mt$¾é»SsJø•½B*i>ºÖ$ƒÎžSéV*ÀX*òO¨ì“æd¢[á¥Mí欅(ƒÑ Y$ˆ!J'¥|s•ÛÛ„HÐÛB–‹\[iªÅt»”V™‚êTéÙS¥cI Ñ¢ðiÊ¡3½÷¬Š^„)wÇõùDÇ”]\³º_‹¡r%в9ÐZKÚDò¢ìâ{ËRíÍn™£-á³År(‰…EÆñV¤S]ÍšÆ¸Ê·Ô H[‹ÌØ<èÎjRt}ƒ©¹µq˜‚þ_ïEa@v £[­@jM¤Ä‡ÂD‹©•Ì=w\u+èwŒE/+g"eâ¤7ìY›ºµÿ)$ã tN©-Ÿ&ë-R±SZäˆ}0Áи€À\ŸIk£Ü€L? ÷!à ÀÁȨw–ú8›OdÏýæ)< ßÛÝž…¯&²Ó»&Ýà%'Q.TÄãv¶"‹ñ¦gê›8ÔÁ/Ij?™9ÁX#cKqôyÖFÌrrocâ³60¥¦¤Bh¢Š ’Zƒ|Â@FÐS€wqp4…·GšUÃÌÌç!)‡:ØCóÄ©ÙCSN.Oñ »> ®Ã‘ýd:š’l/[Ò¡k”Q‡ÒjL*Çwhœ[¤S¥„8ÌâÄsN ïæªª'#”sÁQ6IÂâdþÿ¢âÓbZ~kª±ªóù‘vÍ|ÎeUŸ6I·±N>‹³‘­½*Ã.>ok!c¾p‰ Ó€ºCÝ['m½Xb8D|>¹b¦Ð¤±’‹ºj[›µÛ¯µQk!BnK}éEP¿6W™ŒÇk’ž¸€Õ±ÚºrÖÁá.tºj†DäJÍVŠM‘Tcv>n}oöØ2ÏWÊÝcyÔf;U©ËÌ”XV±Åg¢°îÞ©ïrsÁÑ·q <÷óË1OøÑ—¿ø"u“eåéá(¨ÃØ·ƒ¾ï.QDµ$“OÅ{’1Ë6ô5#|+n’¸Ž W]¦ýRÒÌ‹.T˜¥ÄxÌ(CŽîÚEíý‘„MŽ8¦F:XÑk¤í¢w`õ¬ë+é¼Ç°ÀE¾kn»•ê ýc‚ ApA 0k&Ö6Q´7@F ƒôrŽš$¾)4>®ÖÝ©p8§CØFÐê®ë‡©ÖvwP§zõ/']¤Ý|…ùýÊVGèû”€„. šCþßüÿð0-Áì @aø"©¨°iÐDl Tô²FÃONÞj,°Í ó…èf£Ö‘îVn®´®.°„è`ÔŒ«~ºÅ³ëöôíNíKަ¼RåÚ–Êࢮ:µ…È7¦–áÏ@´È´°xúèf¼î¼ŒôÃô­h‡§úº¤vÉK„À$Åp®›+âêØÌ&–§ÈtÉMŠKÍ6õÍtöÈÐOÒäï>·PºÔËÆÕ-DõíÎXì qI „Ž® Îz³Ð*¹ŽdU¨7*é ­4ƬdÖ¦hìM6}NæëäÌ1$@’¬Cm˜§Ëíƒ7*¸hæ ¾Eô[ÊŽí.®v ºÇ¨~•/.⤔lPámÆÂï(Ù H‡’½,Ìò§EèÜ­«y Âð Q…{+B®qÎZ^Ž&áQhã ræF¦PΩG´i¦‹e–¬êq&»®Þ¨Ñ(àI»)Â冘öe@xŒÚòNDŦvÉ-ôB¬|zð:°Gž×«ÆL(rõ°¢ö‚ððgB渎gIYî,ô¯j{Œì}¯U%ð­'V"áô¡þ À¶aL` o†ÆéÔ”Œ Ûò w¤²?#È$ØkVª½³NgK$…1 vèbÌpØÔ„ ×G\³NÖ8ù02½OF¹‹œÏ‚éVŠ­¹ 0DNd&•'h½ð Ɇ‡±òV뢇ð*&Œnsq¢²^z“d¤q¤vÃF§ 8²1,ëgÞž„2‹ÊÔçN· ®Ù)É!n˜]!íÔãð§#ÎÐN0„ÝÍÆ<ìÏ3,£ìdûî‡Ñ­) D•碀 Wq³1ÐÀ¦1Ýl”¸kA.2ä1êàP˜Âk"ûÇ­@¦öØk¨æðÚ°-ŠôJ>Þrô¬2h®ˆ(‘ßoq9+ÚÈñªVæû‹Â‰"' $0¹s ÒôàÐ#‰rg„ƆP4`T8…NœîËÚÂóPCŽ4y«dªPvMGààed rÊäIcx#)¤Azàprº×$ª™`àNp +¨2–Ò¤“Ô…³©?*œÏfÿ8.øxÌDò'´¿1Æéd·.Œ(ÕS y²iF”ðêñ t.¦B@Aô8€᜕i,•mVõqW5tÑÁfü À’†ßRQM#ôá‹fpLë5ôy=¯eÆM3…AŽîf00öЪ|Ùqr_ ©'4åQÄêQt’ô$ogÈ€®{2â’`àOhúÈ©V­kñkþs ñEiÜöì­14ÇŒ5Œ—!DªšÊG* ÑQìÖ]t×òsNOdŽVq²¤Ãæmò% }UJÃÊT£±Nx{7LÓ6IeÖ‰:óB•É|oÓ±ßmvâ×4.T˜¶‡óçŽrïH1Í.˜ï´¢ô%ê0Ôâ4Gi34ïøÙHe1k;Ö©qæýRXüw8û× Zj3|6á׬¯.؈ç÷'år%jÌûl&{8‹HÒqE±#ªûIQv²ßêÐY7ˆWF×3^nëDËîÂlr¯ù§ÌXÓlñæ?óJÈ® Ö§3*ßY at13Y Ò/v3ITn¼ïʱwk„óm¿æB×@âIh¯9ÙR3”}“ýxW_ la=φqjÕ®ô•MÔQžÏR/tànAŒ` `]OnÒ `º ø¡F1ànëGcåmlá4S2y®à±p¬ÎBóHH7vÍò‰£‘9Xú] €¡òN T Bùm€º}§ú¨0!ä*ÁôÐ%tÏ NóEMìŪAf˜£/.ÃùW°éZNg!β¤¹ˆ"ŒX툓 Ù£‡ºCjò ͘‹™/%ŽLQgè9GvÚÏiqÅšxÚîË›tl/'ígðj|îOu¡GmA3iiG´;!}vp‹¹$TyI²®À z{B6‡3›+•;©„g’šÔqk™ŸŒ«©lqüÔÛ1¶L³ÖòØÅ¼v×±J‚_QB½“¹±‘E<¸ž,Ë¿'3Ù3•ãI 3K±_ÛãË[»æ{rñ˜r‚ë•5OWö,ã}Ot=pÐ'du?õÓ×®˜ÜšnËùÉ‹¿q‡9Þl𒉤÷[¡Ôò´S¬'7UXÞF$Y.Û¿£ê9[ô+ÅòÊ_NçúÁ^'‘Àq§ûáò„gÉô~ 0‹6ˆKn¿±Êúxä3ISØã% Jjß3hÖì®+Ú^ã-p[~Ò))ZHñ&lbPàºÒ­DɃ'0ÉŠ ­ˆÓ’³A-ŒZ‡ŸGР ÆhÌ<“%Ird›'Iò„£)Jr¤«+Jòij-KräºÃ–%¹ü+‹gÑþ²îZb§»ðŠE3tõÁÑ›¢ª/1Ã<«Qê¶ç·SŒÔ÷<ðZÞõ¼ŒSq =)]Ê:±ÂA8"qš–ÝÄî\È(JkÍA3Ž e»ªƒ¤‹44k&ÂÕ4rÒ£4Êzƒ=E´ý*¤ÐmÃÌÄQ5xôR-5\¶4nÜGT­vï8ͨ}L²XŠ+¯]Å,mmFÍPMFµUôv‘A¨\æà*,j«^Ä—HÉZ(Õ4¬AMT}uOÖ­;QUwS¼ˆ)Sey¥ÖåHÁ(w´ià­«ÞÈA–CARÒ’U‘+¹ÕÆY Äxfu7B°{A·º5wŽUN•¤»³öuO¨Ùo~@ê-(l\¨Cêeʈ9Ödc½XM/SRnÃXÊEOeA¸å·sŠòÕö!„ÁZ•°­ÐëWì “5±^°’ÛN¨w*÷kX.=Íx&Pöïh[ûƒ¯9äQ–“².6ë§µ¸|”O¼ØnfrëERü½³ÎÕCÎ!Çéön CôþèZ|ç€€Ž¹ÓIú´ù¶æ©c®;I=,wOy]ÿ›eóõ+¹§«<­É‘ûNW7§ÜNÌŸ €é.Šbl /çûÿ?ø`€AR+ÇèX #è3œë“ƒFB¤ì×Òº.‹ ‡#>Ä– „n¡Æ­£™Þ²¬F*é•­æa+CV 1~ª*ô Á_uêÉ¡uæÜÍ\k†uÇÁ£^À ÙBø«”‡®÷—; SÌ©sAtØÅ*±1ìÕsÂ8€QÚ 3ZʪȺÍÒjögñ /,f×'g…Ú§%,££c=/ z>½6mÙgqù$¸òbXÓ‘Ž&è{¢cÛ͆Gö>Αv’í­kžæÔš›|ëex5%·ä)44ïuµœC•£œ`&m®35[OráŒM]ÅæL UùÑ=]Õ·æÐö›J•Ž5ÓFˆ¬¿›¹^è2&§Ê°›2¯Š°y_·¨‰ŽS)×5hí6£±E’®r=Æ ^e´^aÑmö*ˆ&ú£3­11Ÿ¯…H„L‘‡Ra+1ÙŽŸ™ Á1T6®5±%4×0,ÑŸ/3HÐô*/°žv.õžc–à2À{`w‚\KÀ¤a,´DÐ+ˆU¡ä48Q<½)ö(øH{Ù^&‰Ȓ¢ãæ=6.OJ£\ÍZKn5$¡Ø?ÃHobXE?8Xkc¬•–³VzÑZRˆô ±ð9Ç8ÿ@k=Êç‰ú³¨Ð¡´vË$Ö‹K–1ÎÍÄ$穳¬‹ç}ÉSÉgÊý€‘eIëÏHèÛœC–¬FnF‡D¥XÄ ¢²Ò@ǶœÔ'íª;ÑŽÐNûRé^L€£r{Ñ{R¾lͬœI.aº(Ôÿ(³ r6ĦˉY@d˜™ ´FSÛoiý³d¥ÞçMÙù ä#³PÔêâFV ÞüîlͶ¾*æÎ¾.¬T¦vñ¸I«ÆƒŽÓä›ñà©¢É"ÓÎ…è–3ÊÖ°;ŽšWy×o1ŽTÉk‚øžYµDj!Ó¨¶/k+Ù0‚ǾÕkÕ»´Ñi ™Ö˜¤nÓ‘£1åºÆ{K}* ߆7¾Èë‡ <.™v‘P¹ Öª~¨×§ÛíbÒ©D‹—JçÚè¨ì°ô_²tâ¡] ñ# Á“/"6Õ¯ fŒ™kkuÒé‹et–G¹T‘5ÓY3­8¾K‰F#Qò<ðP €WŠ{èjbPÐ ÌÔÀÆNiÏØW«)$ .·÷2tÁRÛš²œ_Ì2C©ˆå†Ü:SpJ7·,çõªÄåL}þ°b°V­a¬u–³Öš×[V¡æ=øCà};`f j¢‚Ô×a7‡lŒê“´fãŒ^ÅÚɵòóÜ­žÝQ ÔÓ)nçP%sYmØ„5I’O7|ÜÁ‡ÜŒªérË»j¢²RLíÍï:ÿ´#ûƒ£…YH0|yˆ(Ý e58‰w$& ‚nÇ‘ãW_h¦0°6‡Bo]Ã`—$çÔs3©— ÖNÌŸpÒíXÉ~â-GQ>òæë¢ÔX^}h¦[f Ëˉ®j…y‚cSJÒnŠf·Wd8¬gš×Ò‡Ü3å’BsUw^Ç™-=ÆEfÆ¥¨r%@øò³Î¿Z“©YSÏ#Gæí¨4Ö££­Æ[í¤Þ±´Ô,½g*†]_î“bJ$žZ%@èKËn¹ŠßùÊŶo›FÍ9q;ÿ¨á“ét­ÿA‡Ðóáp.QF%@8íÃø-Aö.…àý€-®Þx«Ñœ´’Ù½GôlËGm_º[Y;ŠIKhò¨_Ъ»¼—Cà¥S~p À`ÀŸÓ[À|@Œ @œ 5°2ˆ}„ðO‡à€[g2Ü7Šÿ¨9o/ÉJ,ªÜ;að´ºë²46zß?[ý/º@ù'*Yº+}š-1ëqu¯ H7’Y‰“Û0Y ó;#Ï‹Ÿ¯‚Z8’¾°i’·J‘SÛ°úù âÊ:é¼;Ù³)é¾yj®â^ºÀ%¹À¹ÒÍ‘’pšúþB™K:‰ 2é ¥#›ŽÙ#Ë´ñ²¢à¼aL‘sO' õ)¼8ê{$íž”<Úð§J‹![8*å¶êÄ»!:Rÿ¼l ˜°Ù!Û¶¬œë*­´I „ÃâFž¡p3CË®‹D3`²Ùä\¡‚{ S¤ÚûÀ ó¿ú ™#ݬI½¹‹¬/K 2P¨,$?6ºS¤SPáj%ñ•!ªžõã­.<9 ™ÂAaG¢,`Áã'SÄéš-¤,u¶¤<¸˜ñ¬{CÃ#±D %¬DG+•A2ÂÂrù‘Ë2;Zˆ“ü:›M³xÝ+»üÈŠ<‚ø,RS ㇬ƒ,²)!k¯‚^€ ~øW…@XX‡à*‚š´P¹Y@µ¤-¬=»Â¨ÂòÄ9šî5#ùê«8;H3ã¼ZƒËÉœ8Ór´[S‡øcÈ@t ʼ¬JÌ­JÜ®P&‚à} X‡è€zt0šÛ¢jšDSݽqfl "¬‚Á{›!qbɺcBtr£KãÇ‘yļÀºÉäeÇ#mËy}»XǬt#ÈÉ»¸ËºÁð™3 l6›¢1?T #ۋĘܖ“%KDš¼Tdš9Ô,¡FƒÃ<Ë{°ÜS´á9;‹¼96¼Ñ¡¶,E=jBƒ{$»°A”X“Ú©ÁØ´tjMé‰FSe¿ü‰"Qc ¤¼ nŠÜšû7*‘S½² 9ÂZE³ø'¢kB¤ÇÏÀFºu­ v3É'k¡$*¨›ôµ:Èýc…´f¼±:7:½CôÑòXä`FÈ䑚¦¯)ÐP$# äÁÃ;‡ª€‰ƒ„¨d»ÆÚ¼ä¶ Ë¥©ì‹ÇK™BÁ:4ÿ&!GÂê?O¨µ18ÍÂ22h½{.á~M´È¼ ¡¶£,¼‚QP0®SŽÈ²ìMAq4lS% žr4°U'¤`H¾‹J=¼Óºk®/¢Ã¹«,PÛÕM¡:ü4Ó©P©¢,Ô}–u”ÒVÐ¥)¿àÏR™Ž;²PR¸é¬#dŽ$™¦Íý:Ç Èv‡ðZ……x[à(‚ |€0J±tO°µ°¢R}1ÔËÿ>+ H#R«ô…9[ÔRbÌ “•Aq%>Šî§tN›é‡øc…øÀÔ”®Õ½\UÍ]UÚ²¸3ÐU8~4³mÕPt$ßyICù™’vC…ÛFK3¨”fP™¯!ònáë¤`æ FÚÖ‘|û´ß¬WOUdZ%j1:ÇÅ›Ëú#ZcNñv‘Ú”-9*dzCõžSý݃H;ö(FUÂ[EM ੱi]üÖ¤cm¬8Ø]ˆ³C4ÌÂÆW‰9á9ÓS|™°4j?õ4(í$HP‰l&Ô/³k Ⱥä¨j%§Ì½G\ÖKlûÑB6BÍÎbˆEÁ´œ¦9q².Ôý—¯ÚÞOO9ú O&:uˬ¥b5Ç[Cu]ƒ‘Ö£øIÓ”Ù]Ð…É:䀹3šfƒŒQAF Á~XãÜS5™ZM û]Ø®¯doNÞ$޳çÏÎw9ðÛPº§ä6'÷H~6#õ=.(7M‚LÜw dé€:¢9ãŽmRSów°…ÆhuÍc=ÙÖ… ÆvÉ©~ )uãxêç`ŠÐ|G„À}ƒ;ЀdQEõ4ãÚu‰µ9&bj`áM‰­ÈÉU"fŒ„ÌKÝðh-j¿‘ÃMäc¡Ü-tˆ@|è¸ ZíþêέjÞ®U¸OÖ1`€½«ãºIX±Y-…LTÅýê/ª¿K‚8ɬ5—Ž6*q[8]šYc¹V¼£ó¬¢îÏ$âÖ¶—*![¡•ÇÝÊþ¾FöîûÜB®ÖmžÒ¦¥«$»¦\Õ·Æ™‘;»¹f><™cÚÍͱì4º¡ÇVýn?{c dÚ³fjuÕL ¼?¥ôâŽJQ—^Ö†®-¦®*Ó¹"œ4¸ÜBªEu\ÀÃçmPUÝ>$­Ì+WZ£¬ÓÄ^ãîŒÈ­qÊlj¸iEGüÌ,/[ÜU£&DXÚܺN×jNPÒÝu§É«gíz&&¤—¯+ëÍßîC"UЦ¦Zõ•¹ °;X[Õ-y–7;¸oÚM-ÑÏcLv‚Є*˜!¶0©‡SuŠgÝí ÓzH·>¯·Wq^ð €p†xêïKt¿LtÊ´…0V‡à-àHgòF+I&Ó+™½:,äÒÐ5¯l×AtTSH<»ÄãwÏ•ö‘æ…=„w˜¼i\<îä ½PnÐ*f:¡3¼A_kù;“ìõb]“YáÎáí[6—>r9–¼ã•Ÿ¯{ÈÑZÜ}ÂD¯.AÌŒ_m´é½ò&`Ï×+qzHh´ý!vQH뾃п­6Hsåvú>u›öž$bbkÕLÇO2ë—äÍ>Ï|ê®ó‡üî†&¢;˜’bGØ¿dÆN'ƒJxu“§½=!ÃJ±Ë‹p­zíFË×+iÚCœ^OÁÛçBç+é¬âŒ+¹½Q5Q ¦tìÒ{ùòU‹ÔéÞ˜Ñj#’h5ŸPHÈÒ (Ù* Ò*ºé Y Þê4wÄ>:r,³½[B0·EQn¶ÐÅ.L¦Ò8Ÿ–ðñr÷vHóÞv Æá„ßÜÉgRoâÁ“ T cÒÙfVKz;“Ïòfƒz>ñtÓb2Ä»}ÆÖ‹'?ñÍß âAÝ0œpgWXpÒŸ]œ«Å¼õΊšlB"4Á=៛¤ÃKj€0 «m‰cn4ÃÏï7î‹&''á?ê3á$LïràŸB§ÕnäR–T1ý¬1ßù€†àet¯M~ÿðñ×Ntð/‡À€ŽLlŒúòs{…³é·Œv1˜™{ίÑþS¥S !‚?Àø†C ÐÐ &‰Bà°¨„ ÆãXT†Eb¯ø4FA``|– )™Dáy4^u0†Â Q¹äzQ/ŸÈ`QD‰1¥N铈´¶Q#E"yô®-6’ÖiT™T~Y °Bè4©%jɤJbTÊ-®$Y)—YÕšED¼Õ«T5î‹1¾YjØ ]à jÄÓcŒ}Âõo¿[%Ñ«½öÃ"ÉÞóå&¯ŒÇ'—j>9MÐè*xêþ>A„¸ßj; Þ7]¢£Ë-8Ê&Ÿ1’ÂÖxÜ þ?-Ô^&Ù'M£Ãu'²ú~’W›ÃêåS–²§®ëÅû“;×aã½l°y cËUŸÍ-U Æö…¸±÷ö+›³¸¬Û„˜-ÈœÚ>ìË Á*¬òN°3o´ʦëCDç¼Ë:¨ð$j꾡¿ÊÛl³µ‰d>·,ª̇< òÞF šÜÊ1P2æóÂ*¢ŒšCQ·9JŒ2ï£Î¢ô£ð‚{&Ä‹,5Gï³ë²­ÊÅ&Äi«_Én[øÝ>‰”$ÁL’£,QTÐÅ6ð܆íK+S7NRÄì­NÎdîÆMÈìÃ>Îm#“9O“Ã+-ÐSJNÿ®®‹åEÁ ›á=¢Š„œ¼PtÓ­ÀÙëJO®›Nû²Ðji'ñ´Â‰?.›ú—D«Š‘K¢“NÃ' ô ýÁ1€è¡RU;.;U##Ñ͵‡'KKÒ6}`F&Ù’ÒVݹnÛÖýÁpÜWÉrÜ×=ÑtÝW]ÙvÝÖáLW‚ؾ|À|¹ºVlþ¸JäÁ½Žz}GT±SW˜"Ó†¿õeدŽëà°’g5c-ëq<ÈXB±´˜Ãs!P Èê–‰>s|¾ëPóÔ/-•ÆY}Ãd£UÙ-'àP¥n¼» âÑRÅÏ}1m\’ü¶ï”­ ߪô‰Iá­õkKF°òJúDØæµ3cBÿQR^­*«jŽÁ/x¾ŽãISZïVn9[ܱN»$¿™êL\ž¦ãÕO“P,LEWѳýÆä5äíÑrìfð-qÔó´xß,ì[›á¥Í\–ƒLÆ:¬£”¦¶ZzŽç±ï3ƺ«e²¯Ò>3Ò.cÑÄVpËÇoN ¿º½Œ`ñàùJsY5t `¦Ú{a©/ï@óŠ…»6xb3;±s±­ù›|âëK6$°Ðæúç‹QKŽ Qг#c¬oË1cµxúPDø¾:LÚ¢ÆN -Û£ìÝJPè9ò›'özO »z.y$<Ô¨”‹“ÉRo©u(Ü l(we|·Áô3 ]‹LtçüÒ¤¶®Êœ['{Lq™ÁÕ"hR²UFi6ÕúšÑ {p*†ŠËY3¼Vd¡OGîøÚÃz¯dß1`ðÝ1©2*`¢³ˆÂO3Ül*ý¶Óp€ âºnî1Gš§ÎqÎZ…f¯¸™63~i‰MCåj7H ]ò>HI%$䤕’Ò^LI™4Jň¸¡@*pL¡·4ýD¸Î–Ûâk+ ±³2œß2Œ3J ý'§º´"*±…ë¡¿è/,ÒŸ72•¬¢Ø¿ `9w/¶gF÷$ÍuO@H°D±Œ 9óÀXø4âfªÁþÌÄÀP j– !MK§ªQ¬–G1­§ÉjõOôèIðÌÙ˜Cü“*œÉ,â·BÖSÖCJÔb+G&]"]ŒÅ½±sÜRÓŠSfåàö*‡O4Þ#½wëîJx'™¡¨@*¸ïGæçI#côÅØ¼äÏáô±0*f(6g.T;L°Œ¾ijëÓ£ qk•ÎÉJ† •}DPÕ>£ÃÕ>Ž\õK0YVÏg”…žõX©“AaDyDå©ì~y8EMçŠp­¨œÕCŸ“SL.%¥ù©å58PEü¨¦Þ]^\P‰ðfa*7‡%Êg+tò ŸÄ$Øé¬sõ‰[ öš¬Ïº‘S5Fy:úÓQj¬Å{sÁËšËf½_¶“7¾ª‘”8TÌj«2 lCú¡Œ(}Ó3=7¨½ŽnÑ´À‡ ÖžÒ5Ô­\ÃÉRæ•8J.Œcñ2ä•‚T¥æ»6ëj5¹r0ÀüC¢È´€"ZÒ2GI»õ~ïåý¿×ÿ`¢Ç¸ø”9N*GØHM$ËÈl{P»ZhÇ ÚÑè[ ÍMT†ˆAë½JítH€“e/>F­'áÉAQZžÞLM¦{qË7øDÜjý ¼Î–3¢FÖƒÊ\VaV†¼6òÅJPš–Æ#¶yË?ëZœ².Ö½fõÜtñŽÆ·Z%”D$©¥Èžã¯¬5£#§žŒ[#æQuò²Ì†cJƒÛ–g-‹ŠêŽ_âÕàÖS)á´• m˜l^® ¸0˜õè{l”³²bÜ–ûPÏ”xºY”™ðš_º GöÖÓº*²Ð›¬ÊlÐŽ|¤érœ5:ŠQEB^²œöišUˆ" [³Ô}\,ñ‹Ì—BXJƒ•©ŸqÉ®, Õ&wTóÝßAê]ëC½¯å9Ù«åJ‹Û 7=g–ßíÇÛ‹õüBÙÇ üQ„6‰ŸǽiÄ/ýåNÔmºQtøÝÛcp**~R³CÓilj›ƒÊw8Î ¸Â£l5*üT\.3ªÕ0³G­4B÷àn–7[•¦³Ï¬–ŸtŠÞ©ñé2;R@ÙåßppÜd^@0ë‚#LÌò'IJóñU¸X3^í%§0'a¦6‰,°ŒÈ皜ó 4c.Õ0Å3œ ¨ùKRûŒ€ûgmíÝ¿¸wåhïàP@@ÎÛŸLq$ƒÙC_o:õúáÈMh¤¡]ÿJ¥Ã%8ö—ùaönˆ™ÒzEzwYùõ­d6{²Æ_o×Óés,o¦ºµKÛRvØ»*ôEzÏ;å™Ö©%¸¬÷Ô×MµoW`ä6’aä+ASZ[b´ŸÞ¿®®¸*ŸÁÑuTuÓòa_ÎÝ{Û'+(Ç´òí ˜Ì¿™§$(·q'êÌ{}ФÉ5b’ìÀ©N,såê:ÞÎ,¦KFRËMÈHõf&Å0 ÎÉTÏéLÉ­‰Ò×î"»N¤²ê”ÆÃš°èFD¬¶J¶G"÷EšÊf”g06Qè@¡Ž*µð¢Òú'Ü®«q¥ÖRË€Õ0t[âÄ©š¢~ãK†…+Êë~‡®·Ê¦ù'¶ar°°yœð\²¯TÌ„®á’õÉÄNˆ[èÙ.º¹ÔC¬¤ù rzíXË:÷pi êäD‚އê€H~ùƒ2oëˆçËZšFÑj~©%lmÇ@êjüÖ«.Ú$XŽü¹jYÏÜo00Ü«ÃHg ì:WF`ÚÚ¬$^W pÇ!þà…¬[ÖîqW‘[Ñ_ÜÁàà<AèNÎæ§MÌÛ-jÔoljâèqРd@ŽíHãâìöÍâ|$R÷B§ÈYnLqO†QƒŒýЯ gôÅΚú ®õ1”sè6›o¼nÃb¬âŠ|¸m„eðß N pÑxëe»ŒÑ Åúêšñª»ΨÚÏ@µ –ÕF@©Nš¡… oòÝ äx©¸~jåGøŠQø¤ÐžÈÍL¡jDb¦ÚnëâsP.ÒFÔçüüÌH鈊î‘ÒÈF ¯…váb®  t³á‘”èÑ‚*ÚÝGÙ ’ê}*¢ëë]'+^g|µ)Tÿë>²*pœæN©"иôŽ3íôh,c e$õð†VW fñMM‹Ü¯£€Âð~þ¨­é´ÜP×2ñ+RzÆÐ|àKži‹êé( µo&r"RE‰¬2šÄs"n¦äî·QÔ‡í #¶çR®üHV 0jÆÔ!!üèë‚AŒ+-1<¬Ð#möÍs-ggÖ¡Åbø• «\k`¡ç$¦’ÃÏS'ìràû ‡ófÓŠ¿ h®» ”±ŠÍ­øŒ®³-‰úˆƒ‚‰QFrÇnã«fâ ZE¨å®íQc=Ó=S×=“ÚQqfà?î̲Ç0- jZÞ¢×6úŠÌª†bä°O/q,`, ùÍü·-Í N„™P>tPÑ"j»Š—ÒŒÍÔ.¬ŒxV‘0BªE0+ð²ÌêÜæÐi(àM°ƒlÄ›æ#éæê²iEü*SN³ª*öq­jÄð/Óû;¦Y30Fë °•A3W Ï,ó ú ”·(~tt*…Å/Ô›íÏî]9§/@FG1é:4Í?£,ÅÂX³nßT–ñQÈ·“÷Iñ–üQBJi\dz_*‚¥.rž¶ÒM0°ªÐÆtA’Z·óM¦Œ˜Ôè©°± Fˆ¢†Žé‡=éúÈ4v0ðßô¹*Ôz§èøQoûÏå?kÑNMÅM}C‹# «ÜâÒó'Jœðg¬ý0ÊS‡úûRÀÈŽ•*—Ç;4ÂÌ)ijótß3F|õ @l/W1U8¹§<¤´pM§`‘6Âiàî¾Üm¯1”ºfE*u¢7“|BΠòdyP&ØŽÿ‘$snJí>qJ¼IÃ_)rß›:zµU¿.1 ÇdŒˆ³‰Eüuíáô0"˜aöàDà‘‘U=Ö3cV7c–:¿nêà0Ž~âŽj³,YC/®ÜK ÚrI^î`ùÈ0wm††%fÜw ä®qö(޼í¾_Ðö9¶Â‡£;äW S˜TBÍÇÒ|©†…“lÃÁ'Ãvö†z¶~ùõð5íÕ²o#6|ôÐ(ÚR¬žéÔLÇ;åLµW –Á-døRÉ!–Á)S;!P¹W4âã‘—j”«1·]Âss\ÖóÓ'm¶âý”¸æ÷ñ¿(C*tqô 3$Àû2z:‡¨¢Õ—7ëd»C©i’½r=3Õ,Óqöa£•2t™Yòi4ôæ³7kVóZQ‰V7B–ÐÇ[Éö+mEUu2Öçsm1ð²ÖÑÝQ+59k)10þ'.nÉI¨FL7!×I<'xõ¦v£UÙP [ÌxrƒÄì+Ø¢O›X'ð‚Õã!09l6«,gôEKô¬å1’ÞöÔciÅ~qßJ¥˜@Iouò'j“eî³ ÷NN±ÿP` ` ¡åvLœåŠ´óí,äÖÆö·*L5T¬qÍ@È%2èî‰Vùg(óòøg 8C\BiZ¥®c؇ˆ˜‹ˆØŽ[ø€á& þe샟j7%m÷™n¸(å°½W‚ûµ‘K4å‹V„ tñŽ>ð6Ô[°‡'®ü·ã@¥w­éÇ ðµLxuª¡nI[S‰¸¹6¿Ò 9NtuOµlÌo!EsS_ÍB­whþTˆ<3˜âËS«B÷ýlÙ;‘á[2OJÕ¥ŽS)€1ŽQõo²­)»lt7’°i %»s +ZŒVhÆ8´ì¢7¥GöÑ’ôš­ r«º{Ø5®“‘Y&Fò2Ïglæë$ro póÊCpÚw}‹5Rn3=39y-—WŠC7€Ñ.¢V4©‘MXÅUG2‰¯y#¬w ßã“‘vÍr7Ï@uN䉹N¸ÂÛµmQèjw~Âõ¡DÈjza¢*—ïЇ UDÉŸM¹8,‹4 [›-ŒW­W¡T5âšvO#&•⺳l<   ÓxSAÒÇqX÷m9Wus[¨+kfS¹? ´ªî#eMx(Ú3ŸØ³ÏŽß#8¾˜~aˆX‘«Ú¿¬Ãc!Z¡ö €²ÉF!+ZuWœ—z½·#‹ 34¸q„8ÓVòË,æN÷ôYSï¡Ú©.•nT¶ýU@·²†ósrQ94Ƙݓqžª)k2²ãÑ2°¬7f'ƒ) ¯Ùvf±×;K¿¡è+³põF»x‹Uù:Î:'›¶ës`‚ò;”Z‰÷<ýº- ¯]v-Bô7c'æÒ•lÄ9ÔLq÷i´¡¸V¸O3ôn`u‚-òˇè¾Zö.>yœÚS‡:EŒ÷•×ÚÈl_`èãLöÝjsC¶‹O’Vk¸au‰žÉn;J-àó/,ž§¾TKrW“4mQ[{vÚ¡¹m'\’héW§œ¹¯{œ£“b¥ïUšòš±Óø8‘´_3uB ÒžÆ\õ­WGÃŦšYKjÕ V…†Q»ª$‰2»îÂnk°„ñ¸ j¯q……9| ij—EG251ÁB¶¢Í·›eòT mÿˆr „|FÀ<\¦Å·\üÕDoŠÕ8È w‹tòl;kOÏ/LRðe¿°h{Ÿ2¥-¯2«éXQ_/p¯‰åªA·ˆ:ÅÑÑÝÀEâ`¶ !êà!­v·n›!¢% Å•R±f6Pã»×]TQ¼µadôî22íÓ›…¶ÚFòe‚%Ë[‡–YSÖ8àÛ«º®/…Ë;rÊ·p»iׯîÝŒ>—õ« ™çU*°r†gƒÐ мå±s=ôZ°¦t½ÈÉíÒkÚIf÷ôiû-.Œ’¹KÛêo$±’ôÌÆæ<1Â]=¸×èåy{=`}BÃ–Š¸A)y/¬Ž{¯+u·‡?^¾•¤ï–´ísú~áOl‚ûKn·fq-ìw¹ ï»?Y•)Öž ãÛ·ž=2Úm’)`ÞM›Ÿ¤(2rbR0„y×Ùp)jÏQfuQHhÙÔÉÐ;Ä‹Hc÷´ÐâÙÞAÞŠY—¬÷Õ¥š|‹‘mÏöé~+s9àúð€¸“I¢Z먺‡²;¨yÿhÉ[žœÍ}5–ãë+¨)ŒW¦f@Áã˜|…+kÍyÜÞí³!ãu4¡QÕÆ±úÿLûUvë/ðOmš?s‹1rí«!õSõ_V]%Ò,.)µG y5YfñJWyu•’©Ñƒ…ÇjK¾¹[Iwy”ˆ×˜Õų9o¹emy™Ø\ͽ[ÃYôó^ÏÇöË á9 Ök°ÙO1AØ}w›,Üh¥7ÍÿÇ|ú[zÔWFßÖ».ÈœóSÎ=ùì&û;‚ÿ€/ð BáPXLˆ€`p¸„ ŠÆ"Q¸Œ2‚?ä‘H”*O†Fàq¸Ôf=,Å£0™\ªE—ÊgˆT’{”M£òØDöU& R)”*Lf#§R*tùäâ…ŸÆ t¹¥Fc]È&ñyÄb]9´Hä±ú”Þ½X´Å.0Ú$þÉ&‰[çV9”µ‹QçÕª…)U`ø™$rg/³c®öä 1YšËqvì­j‡Xá³\6‡‹º^ë ]³a¢T±ô©+S+ÃcâÛ¼†ÚYjÛÈêó{Ý/FžK#Ø+üÛqÉ®ákÕÌ §¥b¢Äö|-FOÓñN±9}FöûÈ•d|õúäê¿ëÓÛý“ê…»ãXÄk°ùϺ`â/ æ¨ÉšÈÝ=i*”§¬ÍË4ø/Oûòð5,ƒD³¯/Ä1 °Ðëð´@ðûàïÄm4=îÔ=5-"ã0‹Ó ¾J„¸ NÓt—'k\HÃ3«ø’àñâþ¾Ê‹Þð¼+¼c 70ÛŒ¦J¬¬7E²Š{+ÄКÔ÷L0| 'Äo¬g&Í3,À¦ÊIô}@f8*Ï3Ô÷>O³ôÿ@P4BP´5DQ4UFQ´uB”Åqô-Œ'°?Ê#‚¬¨ëã¡,3,ÂiF1Ô7A3¨qó%6®œ¦µîSfü¿ÍbÕ=ó+‚ðGªË>+¬„E lwrZ–ËMÝV5Ê4Šº¦˜»ŽÚê ÚÌ<·?\}EvË­£&Dòü ÈÀÕ+DÑ´eç>-2“9^aòåßͯˆ·I šù¹"ÍP1I’;xºÿMYŠ×t娶  GoVPòßt® ÅÀËÆp3Ý[¸—Km{MnT8”ߘÆHÛ:‹®ªš:0›AœÄdV‘èé˰Ä)ׯ#F[ /1µÕc¬¿ëmasÛQ>¸¸È2Ä­1E–´ES¶ô¶úÔÚ„Ò¤`×ì?ª@‘¶+ ÇöÝk§Il-ý®ñ ®ÁR>w2™UÓË/òl;•Ä­°­{Uk:W§¹½÷ªWšFãÕ½œovf8µ HkÜÉÊ”QÊ; ó!§S›WÆI|ÌÃä%Î,¿ƒêÊ{ŽY=[¾sÙp쥾Ĥå"²4‘{ßÜGåh?7yAº Ioã{‚ÜsŠ•T¯ º‘{$A-匧“€k_ÌeæÝµ&ÖrϸúiȧTî¤ ô„†B8I a4'…¥F a^¥õà<:eT·Œ“JWÍið25VÿÓ`k¦|®æ(R` b$H907ƒk So•29÷v®ÜÂʼn+aD…®æÒûú\f1Ϲ— ½t.ÏÍö¥8%»éENEþ=‡öc[a¸]°ËÅe¶ŽJoLgmVÇ } [S©®?²Ú“Y»Sˆ14ÿ«âVÒÒ£×5k-»$4XÒâSmkæE–ð« BX’N6¦è­™Ã2eЗ¤óÎtŽ=+éÏ:ÃxzY¾r­#8[¤½\Œ©úIV\Õœm2VP,‡,ØÝ’âpo,Ô1fý#Ñßr¨dýM8£8–ªÏ^hŠe4æiçKt‡ÎwÄðfÛjI²qí¯%¬°&”M™SÊu®ùô{U£ÂAÉTªÇpþUú^c´Fy&§DâD6—”1ëGºÃŽÛ*¡&(®WR†$k~Œ­±'Di]ÌCŠ3ñ °˜žS©‹¢1ÑÙ]9ö³QL7‰îvhÏRýg44S"C:ytýäù(3á°Ç¾ÑMlÈcÏUTÎÇßå&} Ž:«IÚÃj,a&y\¸ȇN«±™‘ü$aàµd¥D…-y5ˆ‘X$e5¬Ý%,z0Øß•zœ©¹C×–ÞZÛ¶l¶ ¤Øê JÅ rȼA„䨯OªÑZ;Iim5§µ¦ÕBY ¡‚™œõ¾š¸ûNíMtù.ÔG¶m¼;€´,ÎÁiïFŒ¥¤ìê0§ªýÞ÷;Ôm7w,ÎîjC‘ÊŒö=Ê“/ëÑû˜ôé¨/ÅÐWžsnrE§¤ã–À¯-ݨ©ø ÆÍ|Vl’EŸÍ:?v+\í‡ ý3EÜ©¦6–u&A¡(yéŠÓ{lÂÉ¿å´ó¶‰kÝA/_–Þ¢5¶™¡J8j’²ÕìôÏföqmíq8Šø°Öñ§ìr°su×ÃÌsŽ%æŠ* Ãø¾´9}{÷™‰áì15'½÷m¦I¶Oó™@iõ¾‰N¢åIH#z×Ä©ÅYÀ`“}Ì챟ëîSâr‹@ÏaÐ,O"q¼Õ¿†YR’J|¥Wß\CªrZqfW“f Ó碬}¹º˜ÂË:ß›©Z²6KAÚ&¿E‚;¹'§F–E6|Òþµ:ÌVL1ƒ]Ì“IW7§ Ï3ï¹)u¡ÍØq±ÅÈ*­3ꆵNÖsN\jâíÚðSZòÌiz—ˆmêm‚Ïw=ݪú‰tsnÜ{ é`ÜI½f»*w+¬y‡Õ’I¦; .Ëe÷+÷e’æP INoËŠe9ŸsÖ³µóĪϓl'þœÓ¨ÆÖ¯…p¾ÃxwâD•ZÕ*=8QàÏä½t_c.ŽhTmŠõ,•¾Ôg±¡â纙5aài,w MÅ]9eÞ §PýšÝ%Q¼O-þ4–¬ßìîX„®¥’6I*rü$ôȜÒrt… ãLu€7 À´k&´«*yÂÖ rö›²ã›.“\]é6Tdìû~¯t&ñ£þãÉ.´Çܺ”ü à:æöhgÕö>°Xn’u|7šª®úêJÆ…ÛœÁ®ÚSnÍÕ•ž½“·’±²ˆ/ix=MÛ3èè’g' 5”^OLé•þÆ:\âúÕ0UE˜Ë}¥b©­ÔhZæì£§\œÏr¿0Ò¨¦ÅùD‡ÆéåY6ùU{mÞl°Û¡hsóª7ÔSܧòú§cnê•«ÿòTCEwD¹ê§Ñ™Ðm"qîŽÕöâŸcºÙTë²:³Î¡©££÷&«ÎŠ£J.š ËÄ®¢vT¼¹ú,ì2ZôÀ»»§¡>3L ƒô'©}/˺SB›ãš*Sª[ <b§ 7è}‡øà@‡yM•ê•<©ô¹£¾§›=13j a­»©WÁ2~@ñ63´ý+áß,»"Š¡ò˜@ˆa8,ó„8”2Ã43ÃD4ÃT5…:‚Ð1-yÓ=¢ý s ¶Ã0äêñ[ê› 6²s;skÀ-1RŠ¡š#qA ”¿‰¿c½žô)#ƒr’ƒœ ·Žº"ŸZt":´c™¾Ù?â C±/Âî=j0Š{б œÚL© ù›CéëŽàè¹L½*Z¶™X!Ü`륙I'±Sÿ«À¶D“%À›[”g> U¢ƒ{ 9ß™\’‰£lJ5¡$Ÿ1±R>l.>CD/++ƪºí­£ž:‘_™Q+Ÿå’ãQ=ÊÜŸ`‘6xù+;ü¬Cß¹ä<ÄCð?Ø«(£,IŸÀHÅ™¢6¾Üw¿zëJÄâVÄk»jLD3ÇD­‹ýD¡½§ã´ˆØ6„$ÁYZ– "AÆ»û(³ q#ü#·ü#IÔ :b¨|‚µÜ‘ ɾ3´¬NÂKg¹²­‘Éì@³«À$¡?œ±w‚.ºò<›ñV´{$µäz´‘2!¤Y¦©Û%&'B#?Sº;{½ÅBÜDÃîDP²Àx‡ø^ˆAèwÅ$C¯Ü‘Â¥DbõŸ# ,´*Š ‰¦Ä›‹™'´ Òí%’Úª@ýPJñ@=ÄÛ”çÓL‘Àù Z½N°ŒöœÁ{UKî·äÞ»ô,?ª™x4{ªT‚±SûJ¸Õ¢H;ù²@Ib·\õ<0áÁ”~%Û Ç<Éš\6ekM´‘Š)3ù-SÛÁQŒ;,­SÕy0»ù03ÅI£¸Ùø¬£»U#ÃÇìæÂÑBµœ‚*”ŸÁ¥²ÈDÂ[­ÜŸ¬’ÄasP=ÜJB¾#c3‹®1Ó//;¼ 3«½SR-·ãm…€Rx€ý\Rë“täÑ-]À{P^BpSó)3åkZÄ…¼ÊÙTžPsÇšõÒÇÊ|Û»â@dM‘©8!9€Ò×%u`†à– à¡C…8XÈ- ‹ˆ×ºÊh©üá̤^œâR~Cú„Qô{ÝÚßäA¾‹³U4e’(”¦Mã³›7=ë ôu¿=/»§¬ÇÆTQ„_¹—DSsMRõ—ÖßÑtIÔéà<T½ÆÏ<|¥¢®KLƒF¥½>Î/ÓÃu̵&ÒÜFžŠ7ÒŽT©=Û(Êá?¶%·c}ÚPcÂÕuÚÓ¤ÜDÃæŠK˜L㔩]~36Lˆ¥5›–“Á™³XLI§´è¢ÚÿâQZËK³”K·>ü¥–…#ãB͉½5ãyªŠÌQ4tc‹j»½Îä³"³Å¾b¾[ÇÖ>ÄMÖ]ðÕmL]ݶ•ì}¡"Þå­Þ¨„ÿeö?Þ8 £“Fä‚DD$©<2GæF+²ËÆ"Ä´ì‹=‹ü9ËXÆÌ‡e]é2 ,ÙÚÿ¬uÂÅ] >ÛÚekG8Æ µÜØ2Xº5ç8åÁ|‚¸*€@R„˜8l˜gÞVí¬áµkޤäšaóJ±}ŠK4E¦™dÉ1µg0ñ‘8×®Ìü±£I¢µÍÚ:?5"^®8‡Ð|¸*Ï(`®éæžéö…6 Mˆy”ÃŒ¶þJ¿Ûu%3yµm¾ý)YFe¶v8A…ÃÛIs¼X³úS ¾ÆiÏ}æÚê*ÝÝÏaK#e£íLT”NºfeèÖ©h•Leß”>¯l#‡ã¥··dp*ŒfëÇ_¢÷AÛç $ìµ§2mÂ@Õ¦¨_¡Š]²BZO¯=×ßÍÔ,2a-¡Ò²æíìB,“Fê Þ¤çÜÔZX>oÔÍõ£¾Qf³þLmU­ ƒgÞ<"Î6¼§}ª“þþ¶ZK…ÍRÛȹúQìŒßü­¡¾-¾eÏÉvÔÒüå9€|è(0‚ð„èFp€€€çø Áàà+þ‚Âb1p„Æb‘XDR‚È!÷ür-ŠÃ$ $.,…IaQh”N32™Ã¢PxŒ²C*”Ìä: y –Eá³JTB‘0’ΩÑj\v§L”Oe9lòoV—Õ+”`åö‡ÀM¶(BÉo¸\nW;¥Öíw¼^oW»åöýÀ`pX<& ‡Â©Ö¢Ñ‰äL-òJÔ‡'[œØ&“ý#3 ÐN+µjöw-š»R£ùøüîÅGŽê¤úȦn;QÒgôîQ»ªä¬2Øt›3P»êìu}†¯•Á¡r¨Z.,Ž‘ÃØJ9ÙÞΓOA°ö¶zz4ÖOÜ­s+Õ¼–b/çÎÓfrÚ†Ÿ‘¯­ÏþóŽÖ|ù³¢ã¸›{¾ï{]#jKÈ—,dÔ@¯¾ý?Ы„壊#š÷COsv|®5i“ZÌ..➨´i»}03¤ÖFlDu=K»ôó/°Äzå¯sÊð¼¯òÈô7+œŒþ$í”F¬¸ šé ,,Ž«Æò„/(»Ò^ä*²Šs&9³_»3Kjà+ïZnœ6Îü"H´«O2k攺’ãٲКÁ£HôA ¿*–Ë>¯¬’‘Ì­‹‚×J/®ê§Š$;&ÉîëÆ'n2ðÊK/ì!U-ñTت#RDÂPM*ûM”O&HÉìTлÒôMR×MÌB§U--_Àt'>H‘câ£×Ê ”ÜÙÐݳDE¤X¦7üÌ÷ѬÔM+§éþ  ¶b`€áÚŸ4PÜõ%Û“ú1Y35f×¢“k6ÏÍPÇðlÈçIHšWÕ“5¥^Y˜~%¼/K3j6• ë?âí$nË'ÒÐ-f #æ™®m›çÎuç™î}Ÿ¯ Qò- g˜½´ÜH„>PKXÓ;ºN:룄)àp„õY(Ñ+¿¦+šµXÖÑïj?Rê{<ýll »+ROnš[¶<ã;év~¯uÀöOÔÎ×há0®0ÝGQλJUŽÿšÙúßKP%UòîO3NÜ/t‘Ã]TÆÑ/LÀYìhé³yJl±AíU—ÑÔP7Lõ\Ì÷I5M5¯E] ƒCR4§oÅ)tNo´iUR<ôù? ÿØÜ8Ÿ£Be0´©( æ¯Ür\Uÿ9R´ÕaØ)ôWIÝûø|‘€$—5½ôrMÓéÛ“ªyÎÉñlOmÚ·F²Ü‹n{Ëö8Ò¨¬•J~fé8µ†áÙ3êQ-ù%²#(O]š‡s*IÝ*$.¸ÃwÍíE öÞ Þ¢2}-aʵ(û‚–zŽž ½bšŒÓ•TjJä»]k¬Epqò¤´LŒ]ƒOLèèè¡+ò6ð˜æ¸Õ´›ÛjéSŽ#âv¿i/æ…jpGèüT €¾1À  ÚŸC8­a¶õJÏûT=fMY$²١RŸ}KE#Ô`M_ª Y‰Lç±ÃøqŸ2šTËUd´–¸ÉŸ©qL¸3æÌÚ±–RÎZKYm-åĹ0M ¢0ңшì AÔNQ»WçmÂ=U|øâ³Õ@S=>©ãÄðbêãvôô7tZûÜâCIîÑÁÎ $Ë«ù„®j)ÍiCK«æCS¼Ô¹ØÀûe;›y á@å¡ Îaûœl5Û¢XH\!¬,³A’›Èg%KîTt2u£Ðè&„D}”Fa6Ê9$tmªA1’©FgžL&°û§ç KNŠüz !=Òª:Q#‰ìÔçQqšrÌŸ?&ý9´!¸?ÄzOÎÄôqs†q.H•;«˜QUÇ2Bå#š’•(3Î{Ó-&Ðr(DUBhПšllUÕU+MSµ!5;2‡nNräF“̓hvE¹—=¦ëª¬èaaÌ£~¸ž[!fN¤ÛJœÊóRS–Å" =ÇXþ‚|… ¢|}Œr$”µ;áE~¡U€ÚVÇ| ¡0ú¦—fêÊÛœUк¹•˜A> C"Ãè}ðD‹XÅRë`܃ð†ÂXB^1â E³åêö_e”üa «öÞx_ u[¤E}°fa¾z8›iâç{í0Ü;¦¶§î&`˜Í•A÷¯ãks“ ÒÙ–ÿ]§ú= ;ƶ«a™ÇUµ„Äê71¥!Rüè0[YIW,8¯õ.TS*²èƒ€MgÈëYPÚRe@ìg9¹x…V®*ÄU M¦ç±4å³ËJæzü·Ò´p®¯FR*[5¬5…±—[Bç ³í-·¼ò̘¶æë¥Ç8&%–é\WaÑ5.IS Oä¥6B¦ÖÈ5}Æ…Ñ$*ÖOhî>йÁD–÷‘lZ“å!Ò8[ᤄ¾yßQê¹±n•F Å¨Ï,S«rö¨Ì-Ýg1©%¢ïõ(Ly£nƵw©›XNÒiÙóã^V¹ý1;ÆÃ'ÜÈÌ å0·éª*ž©:÷B¦÷e¬läPµ‡nÑvš¬ÐB \ªÏ&’-——µI¿ßIÙIù"¦Å¼wC8÷ÉËðèúãü@ *DÈ \p‡bDVõ–t7ÇÓAÜ/,à:zЬY¨—Ä’î/•½Æ÷mnŽåì+W&¾å_kT½Aʰ€ø•øO¶vÞÝÛû‡qîF(|4Aå†9íŽÔÛ/Q.Gs°¶‹ÀôËéVÓá÷ñïr]Ÿd9uÁÔjæDˆ4ª5O²›°<¥´ìYlÎÜÍ´‹ž—ñ¥,éX©ñh"m}® |ò¦©,õÚ¸¶ÔS*èÛ|ÎYMYäq£·úiü÷?!þÐ,ƒ|[V6£CØ7ÿ¶oó ½Ì—Pæˆl©Kz¬’ŒôÅW±©ýª^èþY5ÓlÄ‚_ÅñĉÏÜšbï£ýÏ §Ù­J½lšéd¹ˆÇ&§jÿh†{+ìïëÎmŒVðŠ”ÓGôͤªÕçPÏ*÷IûhÎÕ Ì-œ>š½B\yð#gZ°‹‚Û(ï¬hÉîRüöúÊ–P*êÑD„lF ap ÜÊ„Ö |×êTcïhÑ0bà¤þЪlŒîFÿ'så§®8ÇŠb«lÛ딹ëà£M²hP“é’«¯´Íͽ j‚æàÅæô®MºÇ¦Ò¦TŒG™íÔûd(dhµh¾{ÜÖ‹òÕ«tÈÌVP+ôM/Ü“¥"ò( ÆÊšé‚iîáü €¶AF(N~mžöððêJ¦Ú0fÖ-Êo‡Êðþw€ú¬J0Ž”¼Ì40D´"H•l í%æÁnåñ1…qˆ/Îè @ÈÂà ç±`xÏnp~а™‡cbèÍpºAgË Ox©)Ì«^‰)ë*¨¨Ôä"Š`Î"k­*Þp$ÙÊÆ¡¥Åuô´ªÆ°}íøÈ/vØŠ·±ce&NÃÀá¼Íˆˆ¯,ô鎶pLbìûJÐÌN¤Oð&,¢g#¬ÅÏPç €„(È„§‰"Êiišø²Hå(ÛˆVá§ù‡¸Û+$t£®ñI‘-ìÙ‡†y°Fº¤.²tƒ Ø$8Þm×#l¤c¦ ôÄH®,¾¸2ŒËZÿnÒ‰¦óÉ>ºŠÊÊblàrÈà1Ü\/êë* ÞF'§Â”Ï^뎖LêÎÏ/ŽÏç“KêmfÔ}pÕ ÏÐ÷ÀOqj¬ô'™΢«P.ê$­O²¹²ÎT«%åk'ƒ€Éh¨yy¢°“m5¯>´/•/é8A¯›Ðp†:*F}Žþ³ïæõªÄŒ)¯MÌ~gs5/>‰/N­$>±¬œ`Š yÆÒÒoVm2FX‘ÿ(ÇîZé±yï0ypºnF@ª;*ç_áüÂ-ó0ˆ0^Z«q/€ƒ­]¬~ÜÜd~E´BktBHQÖš[ô¯Kaô  xÁv &-î~QºåŽ*{L ®¨c@‰SË!66€ëSr/gÑÊõ¼ÓЉ0¬×ÔŸ³$ŸÓfã À‘víA‡f4)kv¹k¶½kãàÊñ*‰ÎªS³h¨óuÈü¯üJH^ú/³ú‡ˆn (°ØmÞ¦ô 7òü7O°Tá\ˆŒ-a?Âèvû– Gì¦úû_V8Ä’ìƒìöÍî)ë ƒÚÑCñcí°ïkpURÎGŒ5ük‰p-÷bŒqS ÿ92ýtÔ¯ Šï,O8{´m¤>έµ;nUV*ÎÃûtjÓF攨Óñ<,^KßWPï ”v|‰òP‘Ó ,; ¥X9T¬ÊŸ‰ w>>)hRÕV%ÆÈßqo)t‡RÔøsȶiÄÕ#r.šŽ„ll¹ãÁ"´©1ñ T*5yÑUXØí[{JÑmq!ÒJ.ýQÖ-{sïz ˜Wh¥ Lù^ò‰qʆã’r±àéµ{&“Éõb,py~”ói…¯qC±˜g²ùdWÚ­ƒ‘§N à ˆëw 2¸«VÜù•eVÖ ’¬”UÇxìè¦K’8B5°å×Tž˜ü¹:õneožžŠÃ[èŸ^ÄXáâÁ„`* m=‚ÈGf†ÿtÖàÍL•9“t[ªtô?b²êS( y³­MO RjcÌéf¶ 2n&µÒKS›h‚iXí!µk6Á“y9“¹=kL!ð `Él”3 ‰9$Dá$ˆË]ÈDã7&DS ³(Fpvõi"‡:“YFË!ZlŸ•ÍŸä’ð§RŒ¾Ü’+m}+ ‰k,Eø‹owÁ1îÑȽ)©÷øê“v­K­3·^¯ÌÒ¨˜¥0ðÒåmœµ—/w²|p=OW9Ý8”Š…‹«b.¸qE]ÑÁuI=x;ƒ=3Ø'•sTs’™;F´àLØnä±65Äãkª‚6†õÚÜ3LbY_/£ñÒŠÆíµ×Œf"P±[6©ŠDõs´¡ ÍÏijôz‡›Ôsx yæê­smyJßX7?õ'?0žûš€á/ª oX佩D†ÇpUVÎK`pø0#M—ŸMp7i7üJž –Gy.·Z'¨¹û›]&Œx¢ò5î»_8žäkpr Ö”$Úí–VKùw³nëˋͩ­ùöÕ,ÆÈ'?d·‹ÆJÑ›—%<áàÀ  À* Å<çáÓ_H-¯Í7©‡ðñL̫٠­‹qWԕΛ¬ùO±pØù3ÂȾÊ:i ò\e¢Ñ“5“û¡º;¥ºt+”Q25ÒE;vÛv´c§Ð½Ð[ZȾµ$Šh-¼D0­.R\tT*ÓÉr •ž{9Ŷâ6üÛ¬9ðé«zQÁJë#FY©“K»wŸÛg©Šã«ç NšXw8Ô•µäê€SŒÈQ|/—Dµ6³Š9ª£«.”1 @ ×iˆƽK1;QEœ_¨³|'϶›oƒ§2gO·9 ³ dˆ¥Àww$–aòw­Wjì.¾üwƒ«Ú“²T·ˆ÷}o»~U´U'ê³V ‹;ÙŠ}ËÙpø™-Ò4ƒ6ƒdìñ%Æ;½w§7¿§Å§ëöM RL–%<7u²Ë(ÏÓõέ!iÑ uMtˆ’îÿö0}Sk¾Ñë~ÜJÿ£Ñ˜û¶„}>,]·PÎ뙤qÏ`¦È˲á@€°  .¸ä9 S/¶²2Ý*ô›5àÖ“9_•=wÖ þÿ` þƒ@á ”) ‰C¢Ð¨4j%…Bãðˆ$6+„I$p($~7 •Å#±ù\²MÄ&’¨[˜ÁañÙ„ª4ù}aði„™Sê•N©U«UëšÕn¹]¯WìŽÉe³Yí›U®¦§X¾ FGx$#8ƒÆ¢5œRˆC$38Í_‘ÅhX ED¨ßñØ»Ü2w¢BfRèöQ Åaäq=ªù‘›d/¸¨|.O=–å¥5^ý>ŽIgpzê‡!ØeæYʶº{½anó˼ös¹¨oã~_çK0“>v[K¹Õe.Ýê‹MÓòö«Ý“4ÏJ8ù’-ÐÅæiô¿£¹†æÎS*Í3 cÌöÌileÀ ÌÖÇFJ8)?=N3Ú«BÎò3=ÆÉƒ‰,I5-G‹Ã+N"8Û>òL·#OÒ¬å*ÔÉJTª½9BkÞÌuDIU«tÒJŽEòTCÁ²sO!TôuÕHµLU9E©<+B¿mÚoS×.ÕTÏ]£51sDáN–=\ÜËŒ›FYô”Žó¿Í oUBvƒÖÉ;L³Z•³¨ô{á ^äè& ‚À²‡EîüÎl{!Or/aÊ3míÐÉä=_Á2[c*Tí=XK¬ ûzÇÕ|ý|V ®¬P½{v%—Éò© "˜§-™æ{Ÿgúƒ¡hz&‹£hú"Ü{®'€€U´¿5±:”-˜¼5“A0¸¹£ç•LJ–+uÎ ;±4c&ËDe[9—JO£ãxNî ƒEÊ£™Šm0ç·ªlÅ&Úe MU Lûö­(C›‡‹Òø„|åɼàê¾UN_kTs³k«P|$Æ7¯´­5Ò•û= QQ¬øÕîwdÒÜ—i¾Ô4 ·Ôdq>æX¦«‘øj¾¯%ïrTÍÚøŽu¿™ž]&¿ýÛûqöñŤÁp0GmRGû†¯D­ÆéêmœóÝS{õ/®änapùùC<µqúó=Ãþ?ÅýUdcÈqµ7¢¼üŸéeˆñ‡(Bn§®Sé ØµˆÇ^‹¢O/‰Ï“…ÊÉ!Æ^éi:7V× ‘Å;ë.§`‰–2ðF¦tÞÅÚöÍ›˜YÈmî¨Ã ±ÖBÂ… É“¥„¢á³†Eˆa±%–¨ Ñ Sd™] 3á•"âQqX¼½ãòé]«ÊK0ñ5µØš‡Øüà,€!Æ2@È Müª–ÖPZÈR(õØ¥‚šP+\7pa“(h ›ÚCQtð¹…†^a«’túž³¼i]º¯bÏj åìža97Soq˜R:>‡Ðÿ@}œŒ*Ò%”³–’Ö[Kyq.eÔ³iAh2ŽðéÑtÎZB7T|Të—%Ë<¢é(MQj;‡fñö7ù-$$¦k¤¹m-%8Êd©å}Ñöd¶¤€½\«Ù}q]îÀôØ„[$4Íé'£Ö†ääŸe åçFS[(aÌn©ý’Át-BLÜù]e"9®øb“3n”*„ÎèÙH«¯>T°ÎÊ •Ï|{›`›ã¨Aèkø%ðñÍ×:’j•|ÑN ¸6Dè{îŸTrC -§S÷Z¨H˜ôWK‚\ΦŠú™BÊ#s‹°1.c\iþ€RAÚª~&r …MèðRÚnç™\‡Æ%5BÃi$[‹SŒíåØ6åÉ&Y£üMÆÒ=ºT±"tG³†Ôú¹R'²ãzÌf¿¦”@äQ5c4…6›XYRjÍ]ÇHÔX ÜלBñ¯kºÀ¾ú¼w"\Ȭ+^¹Áxj_Š"¥1]Gd½ «ZXÇ&2AªŽ§“êåB nEcýdô@ó%.œk•M ñkÖÁa]:qeË[,¦Yâ^ ¼¶•h¶ÔPF¡~òß¿ë>?‡ðÀ`â„Hx|QÏ +<ß…ïF½{a!UÛâDÊDßi¼ïÕâ nBÏ (Ö¬ =îöž›)šžD"vvOå:ú'±€cè <ÎF±—x×c|qŽqÖ;Ç…b^†aÜ@€‹î ?š¬ŽÕÊòŒ¯5ÉĉKrE3vÏÏŸƒ_]Þ[ÅH¹2‚eu’tÙ:w‘t›Ù9Äý™]Ÿ>å‹©62í›Íð‘¹fâµ7 ÊocŒ¶‹Ã—Ê·!£mž¹ªxkKÔJ»AíY˜hjuj],9…ö3Ëu\-Ú¨Ðêb¢Á( ’´ì ÓÓ1ÿ2'(íIÃʬ-‚Ñ«çˆ܈Ÿ¦|‡a €£5ši6Ãô­¦‘úƒÚŠN¬Ó}5r–lÂmÉ”˜yBÄŽÅ&lÓZäÝÛE \¢'D–û0$jÆrШm¸¼ž¨•¥— ŸZ«FkQÖ_>–óy€É'4¸Uœ‰ôòv‡jk7Õéaàf­°j®º®dx%D} ®Óž‘'üøAš ujwWònò±Ì*m×ݯ'3Ý)s; ÑÐ{Ýy·ew…9Ú¥ÔĤÕ}°|Ê=¡ùàq,ã©­úºGñ̬Rä²?(ëÔÑÍøPõÖeðó¸>Çør à8B‡`X¯øçl3zðȉ¼Ò®@Íoqý($ ô©³0Ûwº¶«ý8­Zê´k†£´ ¶§N›buê {ã ZqhJ¡üR@(Ú–÷Çxÿ!ä|—“ò…Kä‡:ÇnÜJ{GçŸCg¦ïaœ‡yéù3ž“*k LÇYy—H²Ìü#™©x!b#\×ûve†ª›î±"¾liñ«r6ˆóæó–‡Q ¡á3,‹ôΖ›WjÇK€«aÝÈë–«¾OB¯ç*d–Ï¿³$Ûúû¾ÚÖ+'E9·ÎÌQf•ê‰H¸-Ó!bÉÉY®âÖ;Õ0é=jœ™h%B$èÛ&˜ë& õÓÒ¶BJ©qÑSãÀ )R¬¡U‘³ò«—®Øô=RŒ* íÁo¥2lªÃ;Q—”¦R÷ƒ"ª“^¶Úº)h†>c¶«zš-ÂA{ÿ$é*+×7¤ 8Òn#4j…‡ù¨?…¢ *Q7'¼'ûjŸ’жŠõ´c µáxî6ÙER" D ‡ ‹OÁ“u¸ñù–T¬jP-º#¢¢(Àzp¶ëm7ª)°ô5¹š"4Dh ä3ä?•ä>¼ ºCÿ( ÕÊ€›ñp/b>4sšã œü*';“3/7DÁ)Y“Ê' Ú¤Ÿå3ÒL¤œ62ó  aO¾˜\XDy!›CX?yˆ¸{¨à € q†0 *ÿ‡1Á3»î.65:M-ò­¸Wªs¤.Rœº³>2C¸Ó©ý½êF¡ôƒˆÚß§„üQ&A)Þ)Jø(,¿ñ´³‘ÂÓ©1œÇÌ€Ò-#R=$RK8YX3H#Ì­P¾PÝ«;‚¶ù¯°«°Äbn;kãÏtM¼Â(Ë×3±2Ç“TRà¤#<*G%ÈP4…P*«½}0,À Cð­Ì2QÁ=ªË–¡Ô>J,¦kjET¬ÄÔDÜÊS'?Ûüìþ<ùˆ°cúÐÆâpBû¸¶œ³:¹ôý‰´YÎ[¿8˵™%0á˧Èõ$£›=«iT(À›*±»ä #ÔÛ ET 2-W»Ô½1,áK’3+$œìF!¶³GMM›[B‘Ö¹Ù"4«L¡©6SŒ<Ôí5˜Ã‚.ÂIK+œ¤šÞJ’×D*Ò?l ;»Ý°‹x!3DWq?QmžÐÆ|/?úÊ“¨Ù¯œÓT”ÉVã ÆÉ=Œà›%ËU-U<ž¢L<êKªÙ²*§UËl7",ä7 ÓSõPÒœ++Í„‡=@¦‚ÏVäSó=ÔZâÓrjXšÊ°°<Ë'{ÌOÙŒ¼¿‰µ›ØWâ È…ZtñÄìôÌ,®3Ÿ€ æ@[‹&-*jæ¥-c9ZQ<ª6£X¢Š’b1:›X|‡À€@€Yø @´H‡2z˜ù¼@#°›Œ!=¼ˆQºK8 $Úˆ³Ì°¢€Û¿íHýBsA¼4?l•bU%bWGÀ ÒUÒ]-Ó]=Ô (·°-;Ì‚Á@åGJ”×)êNÁÜl8«Q\1Ã5_’Moº…N½óð»šw>t¸ \éÄ#P¢«íÃËÁÁÍv²½ÈX£ã:¿M=Š?C¾=5×ô†Éø¢kÕ 7!òßS2'Sû¢ÚUÙ‹¿lqÛϹÝAO¹Y:rw¬ê—¸¼Æ+"Ù^&cgª;UÀÚ¦Ljð(êÍàE³8õáF¼žŒª4SVjA»-t¶´ôº ëCPÜQÁ$ú©¢¹E[ŽA¶ûsºI¬_‚'5û\E’IFÖ”X¼4:7…άrèF㊕íŒMI0Š„¶ÒK¦ÚìÍÃ$-Ä×­LÖÎ[lLcbÁf[K'·òºÃÍ‚)‰†Cn%Ì4"nYíQôÚá­¤9/¨¬@$¿•V@ ,,úVzÄ[@;µ¨O<7SÒïÖ³—8lAô)C·=+WtÐ';3.Œ·‚A—Ä d¶MI1ÞdØÉʃ_^ÓÒ¨¬ÙLøªŠˆ@}™°…xM€°#õ¾ P0r¨A[,V*¸†9Ê\»ê© ÙqO±ÜËûDâÛ÷fd%©_”t¨âü°È’Ò›¥pl…ýÑÝNtgNug]ÒReÖR|‚È=˜¦tô4%޼ßÔ%ÈíÆ#bÀÍT$S/+ä§¥| ³æQ|ˆ¸]‘,B-ÙÛÁ[BÍñáC¡+PEö7É«tѤ_˜ócDÜ—Ä£‚¡’oÕ»£YÝà”ÎÄŒ‡7e^ÀÛSÊyeÐúŽL Q$Uä¹Åt·ñÍÝ—æ.fê¬þ`)e@*»fœö“Æ)3áo¤iéœy7X™“+½?täNÛÀ³lxê%ÏYÁÀ¢cfóâ@JÒá{yjúe}Ø4 §îË­Ã+FÊܣꅷ@ðÕM»›:cNW¤þâ®Ã63À>êéüM´ufáfÚ€çÑši¬4Å Åæ†Ó%ÇB`H=þÓ(*ø0qHBVX~5ÐÑÑöÙ3ö¾(¤ÊÃ[‘&,Yè¤\Ðä;^ÐOw=~át4äÅàß|Ä)åêPãËOE‰f¤”ät9ë•?ô=àiêÙØÞþgEÏ•+Êƒ†à"“ÕD=læÑÂòS3z3ÁQ^Â+NÄ#¶Ì¢¹è»z^&¬1U«™‚ë\~ã">¸¿ m)ÌŽë„Ô"d3³©!b/:i&{ä¶ËÎîµÞÑ©ª41i5)-nU óYÅ]Ál-ÌÑï+•|ÉVŠõžjŸ1´ÆëßçÐ}Ñæ‰äNµÂLëíò\ß?Þ¯_|c&mRÆB9"•ôvÆl:ËëüU·ìbêpõƒ5J>\;'óêãböÏÀÓ^öÏbºÈ<\éêîöâÈó–&ÝÝÏ€Z†[‚8ЩŸÐ¸rä­Ki·iòƒ~àG)õÜôXsL¶§¶–C¬7tªÀïi{´ëÞÚˆ¥?3•EYÖÒѲtæÚÑåÝ!)BÜúV™È_ñÏ{¸{¹ÿ 8vg‰K²E1{領\ÒÖ–øàÞ´XAmàt©ëäA‘å_cJòË:ükr®Pâ0‡¿ùKlî5íZ‘œÜmáŽàÌJÛm½)±¶5lÿbrpÏ`è~*(›\Åï‘|ëMÖÛK>ø:Ø!;g°Ÿ–¡9èã$ÂF¸Ù»¡Ä”܈îùOzÔ=E|mL9ãØ¬Z‘þÈ+¤D.Ò±k´6ÅÅZÕJ×Ö3Ö¦´k¶(zMj#einæj§Nuú% ÅþÕC?¿àÀ & €ðX\‡A ÐøL6ŠCãp˜¤V B$ÑØ”: •F"rØÆI˜Åa’ˆŒB%†Â¥Pˆ,–=5‘A'’Zn%Ò¤ÑdZ—7ŒÔ' Å:_¦V+µš½FGD¯Ó¤6[-zSj§×-u›…b!%¢V§¶5‚•L@«°xüž~µÒ#Õº¶€š\'µ æЏÞ2³:}2IŸd%7yµž8šHèÙ9Dvë˜Ðâõ³lE]£¶á³™ÛM"µz·[oÛ¬¶~w‰³ÊçxwûúS>ÍÖï•ÍÕÇ?ªÂg§8‹Þi¤³oúû –Sw’áR¡UûMg®Óoµ“»áþ € ÐÁ téˈœ‹“$õ¼ûš¦ªÍêtÀÁ­ê&à³0<%8Sš½&¬^Ù)0ä>«9›€ï9£Á 8ñDJ×£rLÆBÉáò}>%ø0ÿÇÑü ÈR‰"ÈÒ<‘$ÉR\™&ÉÒ|¡(ÊR›üS–G°´4€H/°„ì©.Û!/¬RêËðLR—£‰B‡ ÅMSØÓ­+šy¥PÂ@èÅñC;?±S¬îNÌe ë; j¯8Å“Øõ'3BØÁ0nëP¼Áð3¯7Ó0lî³K|†1ð]<Ø:/ -THÃçÑ- âǘÿÄp꟠uÈ٬ªuzûPMÃ"øÓ$;m„ =Py“aD¥P)½5¶V/>d4…l!Ú§‰Í@ =S‡P4·Õ¢&Gûãch_ªkZëem­Õ¾¸Wå\ˈ§i`3ޤ¸Õr±ƒç­¹Oו V1¿Žy᩟bEBÐýéÙbÐÚ/eJM¢J˜ÈY÷)pmº¨ƒ¹%,]ÓØõ'v:õ^™úDFÈ < À‹IÍU;k5æ=° ªJ±ïXcðŽqœØÇ帶“D6¸ˆ¹a&£4ô,€\õþ5óÀôÚ<¶ •L0tÜòVŠy„YÂШä”û³¼ÖÂGV•8-B•·Q®ÙK…ØÃœÔš…Ù26ÝZª‚ôjÚ‰¸4äJœD–N‹«:‰Þ‡Zóãr IÇw¬ïà1w}í”›ÅL ì˜$—¿q*­ õE0?ŽPüƒü}!ü È ¢p @%_+x ÓZùMHK^Ölʸ„…òÇÈ9ùo¼‘0G‰]hµé¦G³TYPÂnÙ¿¢õCýHfZíZk„Ð(¬„p¡²ªÔÙÐÐ#JäÚ ¤$ºÛînœF»ç~f*r¤îÇÿ)þë°u«¬ñp¢øŒdœgŒ‚²÷gsƒnï°ð×h>ˆŠ´ªÌz“£¨ôð`(©\¹¯ÐæONÑÕ%x¨¶0¤ð©,DpBd†¤BÌÃÅ:KËÊ–j °«®o¬ jI ¯vjå7E ”*snbºâ€ièë êì8ÂQZ¸gùH؉ƎŠæÀq¸×%8ÝŠoÄâŠál¤‹lŽÊfx‘tÐ,o7lº[Ñø5krfÄXËW©.Þ¬ÂA«.b#6Â¥ `.a &€z@$Ò æûÁÂVPx2Q-t…ˆ^¡ƒÐ³Èvae~iež€ÉÉe&‰DöŠ ¬ÉÄDÑ>×øòïFX&2ó΀=R[ Ø!þ`<pp'*R§*’«*Ò®?°* !ÔJøô‚n±0„odýèF;0îö*¼0lS(ÌA‘Ór€qF»-‡1ðèÁ žlBÖp—/2ìÞ žiÑ$‘±ÔÁë{-ä€n-d©´ïî¼l(âgH í~ê„ði>oŒjC¨ŽëÆî‘Hî¬`ãÉDCÄö Þê0§Ñ@„®â÷%´“Ù3 ÆP˜ÔÈ!Œ •âÂ÷çPÌÀ3mçüé«þš1ïRkz1l6ð2ÏÈM/e–q‰-, ”VnÊëLu†‚q_MÑeXwË$Ä©³Ó(A šÎ“0ág˯n8YNª¶ŒVgÎdsF({32x¬’÷ÂL—@5+æÊg‘Cg¾ì2êøÑh0H ²üìG€þÆÒy¬Ô1H¹ ÍBò®ÅÃ×M;$ô$ß?/÷g¸1SZd } óHÞI,ÍÆne´uè™!©Í†¡³äŒ\ݯ1E• 3•sŠ¿kB²"ùÀâ ü (ÜI8Øà!ÂJ“ O-Ä’ñÒÛ ´#„okWs>Á ïËþ»-'3²'¬ £ZEÔ‡¢Ä8q f±§pxȂà ô ±ÂíÃt Êð•Q·—y—›yמ?õÚAÒp0îRÅ8kCµkA°á?ôQ3‚礢iv¦€®]{ÓGbm,mËB,cbrúø/ÉRªbeSiµ;,òŒ,ÔÝOÊŸîí&uøÿg”°Ô2L”<ñ1Ñ7J [ ÞÛìÅ\hï&èYpC±2 mGó„dŽˆE¦†U·e¶/Cïofq6IRýXói9𓱷{©ðÄÐÖI tÝc~‰õOn æçŒÞ(¦æõ¶^9Ðl4'°5UMCIÁ[Ñ9=é‰û‡S 8‹Þ®¹IM€ðîËðmO ΡK~ñ¤ºHh6ØÊ0ß3ÌëfRøþõÝ€C ¼Øåe¿p±–Я.±pòmtˆÃk%Uuˆžò¯Êw«-ˆÐÂUO3O.€¯ ºlÝ%Q1–Å”ÔÞùÃAÞÀz€6€¼  os°'s÷B·"¿3MV-l´¦d5ÀUqØå©¿h‰£'Ñ´-K½VÀYÔá*F2gÂEP—¡  Z*Šì¤WªžOÍjpô“ d͵ДClz˜—”&ì‡ðW£o˲fÊ»FOò„OŒ,=^‰zö/á6é³Q/mß{c>tçžñ ÕLε9Øc{¬10Ù8HÕ™Ífïoe’Y×=£j¿Ø~‹+:—¢´jÙm C:V¡#Š{f¦‘¢ ð팽W±m¤Ó]£‰ OläëóÃ5³T–êœÎó4ˆ¤"4•2(õÀTÙXú­H–hˆL‘™âÔ—G”P¯­Åè•’[ƒyåOCwŠŽ/V´#C×M¨·96øà”A±ÞóðƒqI“úëÊHÞÅì³o,š»©ÏY<Ô0Šøƒ^c‚ž£t礆îžÿ±BN³#<™sj.gbñ¦Æ1Z*{×Ò÷O[?¤ôèûp›4ÖõÙ¢Y9l·cµØþͪºÁ+STµ^w¥³v9ÏAjü˜A€rÛª·K ¯`¹x6<ÁìAú(2  !À( |` Ê?*÷>÷e]Ç®§»·Û•7™ðâÓíËÃE[…_2t™ñ~\Bù Ú[ÊŠ@;!{Ÿú ÇÜÈ‚­Paè Ô2»v`z+Û1± ‘[¸¥åA‹ôÐö°“Rõ3E ¦¨“è¶–¾È‘˱'sx·1[¯k¤6îõqå;ÖZþ›i«ÍÃ'HŒféb™ÑcΨª'« `Ü­¦kYMÚí¯?‡Úø1ŒÙfʱ)lº.é‚›àä6ÓS¥™/Wy$Ç ñ—øýg²r‹ý0(»ËÙ/Qi¶ÿÀQ3“&®ºp]ÍÝbm¦ d¹Á²A¯9æ°>ÐlðÆmc3–³¸A[ùÑ’˜³i­eãW?‰³¸'Ÿ¼H­\Ú·ÒòU“OÓ0Q@igW¯û㑱ðƒ8uS«?€´VÕk.°ÉQÞ„ñ^^Xaœ°»ß/ÿLš&“•”£E¥RÚý Ël†ÔxñÚ\Å“Ñae¸ç—ôàqr7 / šy¶Ö¹0•ûa§é²Y¼ZqÕ™EÈ¥•Üe¶Ö ŒmÜ$IÓc•"&°!è9\ ` À@@ì  Á|Ë`A¿wvnkXó†a„8J¨ÉTLu÷…XKÙ·ý%|; \¡ä™e¦*¼õÎb«4ŠÉÇ5 ¼…ížÛíÞÞI¼‰ÈÜ‘¡Idíq‘¼içFémYO2Íc¶¤¿hJª^êiŸ‰ÐV6›†RBðI:ˆ#ÿ¾{C¼mÞ}ÓÖ~*v'… dßïÐÝu2:²UÈÔ5ëc¯¶Q·n_N9Ìï뀜J|ˆÙ/^g£mÊôó°.Ök{|ÄïyσOtqyQŽ{“vð™6¶ê}ˆ¹52ÒÌcöópùp‹ßoSÁÜŒöVÊЕ¿uÒ´Sð¸PéÊþ'‘{`j˜ÕÏõUÓfjã[Æ ?=\©:"@0'ü „Báxd „Ã!Ñþ ƒÆàpHÜf(ÿƒÁ#Q¼JM Æ phl²)‘F&18|že MåñØ\Î[’Eçó©,+D–Òh³yŒŠ;(‡Æ& ŒZƒ žQàµ*$•JšÖ+óZ,ÂÅR®Èè¶ ÔºÝ.¹M§W9Ô~y[¼J¨P»%¾ÍL§]¯7˜­ÿ ‰©Îì4ÛZm^œàìXK&Jý™›Ó34®w¼b$¶Œ¬â–ek–šÕÆ9YÆãæX*EŠ»€ÄÊ-ÛlFÙ¸žJ*´Ýþú3¶Èb¡¯àÙéÎÔ€¯ð00ŸÐpPŽ=@ x æzýžßw¾ò ·è‘É$JEÉE¢5Ê{òÜ®KŠT¶* hÖ'ò ä) ‚ÌÝ ÎL ý*Žº¹0búµ©n Lã(Jº^ñKû8õ \J¾«ðô}ŸÁ:›%à:øG1ÔwG±ô H2‡"H²4$I2TŠT‡ ²4P2(„22²@°Cð#Pz¿Ákœ@ƒ)-kð™>òÚL±¨ ô¶±ÌŠ¢ù26í\7 O0äöí#dÓÂ,3j”µð‚]4QˆšŸ?¤mkŠ'.+Ï2ŠÓ ©â) 6P¥͹‹T%BTtƒ36Dodß0¨ ë÷ M4[K7D­µq[.ò2ÌÍDû0¤óÝ„«+•1A”„Õ4Ñ*Ì,âÖ³>¡ÎMêU\@+,$ûYv¼4J:&åªrºO в³ e'î ýI0–ûGSÅ=çAXhíâ¹NêºZw2–¡RöjàÞÌ’Ë–Œ»[0.ÜÕϬ³DÝ5Zj™ÖsÕoJ´wÜY„busc,R­þ\‡ÙN%'T³ô–ÛÔV’ÎÏ®ªr zžÎé÷C=wÖAzÄ::óLÝjó;˜g×V^°éllY¤Ú*lªÆÏ±LëÐ;BÌQ; ßPÀHÞ¹²ÀSƒ¥o]Oíá°5ËN5È“Gê3ƒ}z´K o­ëåOBìóšïk[5å‰júwÉÄ4ˤæl¶G_³L•u~^Úþ» oœª~€( "h‡Ÿ'ÁüPÄ)î˜p’_AY½Ÿomß‹än‘oŒÙó—>»Ë¸l›IÅi—µiš] åJÚeÕåŸ8͸eý 3ÚÃøà{qió¢q¡±ø—çú~¿·ïü?×÷þ=å@³ad5Ž€•âñU¬¾5JµS«Þrѯ‡°qº+r-ùU®‚ôÏYÉý>ËMÆšW,ÊÐú–oðxÈ«´ô©SkQÊ‘¯uÆj‹óqJÅU, È {nrhz ¦öb‚žÑ>z ‚©vÐñÔÁ•4Á,E(ÔÞz¤j‰Ê*&²Û’Òd\†œß"$ msj{ é;±‚¸²Y›(b’HÚ´£s7Cf˜Î²çS<7ŠÌ±Ã˜Ç¥ ]J>Ÿãñ‚/mI˜5âÞS‚Ç$Ç&‹b¾DΈݵ—£¤aî`™6B(3(¢,F…NœæBH‘$ÃNq…©E–¥ðP‡ËB ¡Œ„l_ìÇ™ñÓK9]2¦lÉzÒrhLÉ¥,¦DËšsfm#ù°aGñ΀(@v¦Üç1/ âÅoÔBppË­©ÆBÕr’ajLÎBB†‰ á*1N%'óö‡£¢²l'Ýž*šƒ’üt`3¡%™*⺞)/l‘ø˜"ìNŠIIi5'¥¦•<›CT m7VAWñ´†Ð\ž¹µBµÛýŒŒzz¨õe+סŠWK8¿%·¶§K‹Õ3hj&3´Pñ¥¢Û—PBG:‹7áå_-Œ¾ö¾åkJŽÎ-FÔ6*ˆäŒ2s躞ÔXG<Õ¤òsFåæ3Ò«X)g2¼ÐG¢¶Ö ¹òywIµ`"D˜”]ÌIeZ³ˆ¢ÇµÂ*9!l<ÝjÖú:²ä‘ÔflNzÒ1ÔZŽUŨ”¦rÇ™¯u­¬ÐÊTÇ’ŒTÏÉÓV y52Æ[”RŒ°ð}½I$þˆk;&ŒïFÔ6£–B¶† ^¼óVænsb³lî'Ç"=GˆýBd …Pi]ï¾Æù_;é}oµ÷¿ Á»aÓ–Œ×&·¦¾fµÌ³/féÉé ÇVK2r‰£Ûì-ª£džŠá-&DUsìϸ ŠE~q6'ŧRJ[‡8 Õ‰†±‚ÚŠèie—†ò:³•PÇî\:AÒYw°ðÉj•=rúHûÛ®±‰Ã·]»9̇êY/IUÞ ¸ŸóÃÍÔåÆÜÎÅ¢³Q¶æ¬›3íŠy3±ÑU;Uf³‰Ím74.és ùŽ-F¬P kÃËѩػ‡v“Å Ç—jC¬M ‚\Û†2Z'W”fôÍžƒ’²B³úøžlÕ1w+TE\óÑd|&¶fÌÕŽ¬fqµiîä½i`®s¾5O¢‰ØÆÓnA‘Sç-¶½× ‰óÖÈÔ³â-(x‡yo8¡h/aŠööß܇qn=ɹR@ ¿/è©7 ²R÷¸úÿv%µ©SôïÎ2Îèk)‚î#–]ƒïµœõ±=§ºU¯õp [ì£Àv °?¹¸·ãfùbÐÔ9à(¢Aã½ÝŸS³­»lXNeÀø‰•e ÆkºXû]3ùzúTÉÍhÑð>‡ø*€bŠ”pzÆÉÂpS8–˜ú@X‹æu\!€€ 'ÉTÊvǤk/U+AtÉ[tr¬‚ƒ@!IªËUéÍàǸYÏUÌ ¬&W3SÅjÛÞõùÎsª¡˜Áh¨Í¥¬°CïHò—1ÉjÖRÊÒa?/x¼o8ó7|ºö½r—|–î=Ò¨ýPíy“Ú\ØTõJ;›ögsóÕ…èœ{B­DD\ãY7=íý5?àÝ–»Ø@[/²±ü“ü|0»mVi!÷˜m€3¶Ý×ü‡ñ~?Éù1ï¿cr~´úšã·Ó[ çzûù†pqª+lyTÕ«Åš¨ »r¥8S!-kº®A”21„@Q4²(¹:€ lÐ?< ÀäÀð¼±h5‡3¿²Ñ)Ùx™’Ü-²‰0ów´û™›á`²i¥¿õ2[YKÝ$ûQ¿³ùAy<²é¯ ñ•®¨ƒÀ|‡ø0†€Y8©"…X[³1”XN…Xx†(e‡¸@Žpx˜ç¨ÙIÖ+Ô“‘ò°Û ´’w"i<Ãj%÷¬«5ª3c Û&»»Ü³£™´¾x+{f—cJŠñOžàµŠ¹…®i –1‹4jىʷ- ´°a«rÚ"’}•ò Ä$§‹~Š0Žú¤'놦‰zê¨E]ŒË™Þ¢#a)Ù¾¿á¹7|#ûúÁ»ü¤‹ÿ­Áí:%9VàÖ.ƒý="+7²/Is˜¶6, ²ˆ4YS bÈEr"¬ªò/0~…G€Ø.‚ƒïÀüsÇDtÇTuÇa#·@n9:¡d "DÒŠºàŒÙ‹ÇÉâ¢éM’º(«ÓC™«]—")šDAÜ]!Œ5=Bã É!À@˜ó…Ô'ÇlÈ䎯ƒƒ`r (Á3È&éV5²Æ˜“£D¤9‹Î7sâ3kK,Ë\Ø=Ìœ5ð›Â<$Â\&ÈÑûØ}‡øy‡¨ ¬¸çCPw*ˆPYðz‡é¡¦@ìÄ`¨­é&kÿ›MÆ (Dkš¡žcµÅ‚Á93Ù½á/=£¿5<¸®‡—l¤Y3'Ë'"òï.º6»z#Â!¼ŒtRØHØ/|sP]lÖÕmÖån’ñÏ,ÏŠÜÆë³Uƒ½Ïê?*Ü…,•H´<êD"Ô(ÍQ‹%WlO¿ÂäÔbÁ8;ü++Ÿ`ȵP5oX5ƒÖÝÐ|©Œ†‘Sæ®1Ót¸ *Ÿ8`üMò·»Q”üÂ5zŒ5»R# Wùƽý-U»²»AJ3|†,*¶9èl%†xXÐ;è‡ËŸC8„èH‡Xo}€0€mð}†Èk¹Õ*±PP˜´(+È=ëI$› Ǫ¼ 5¢ F4¾bXD<Ö2™ïÓ„ËÀ²¶QÓL5ÍçRÍ}½‹NËŒ>Õ–#ü!Zó\FœÙ\9ÔT"¬ãÐ7Y‹°´#»)ƒ²MP­}“ÝN¼›á%!‚E-]¿Á›ÝGÆÉ‡4zy¯õ‰«kþª ½®ÂÛ­Ëà+Ý.“u•!:M$~¸3ú™ZB=òß´²w›ç8K)áMȧ+¤Ð=Íi qVµlXEçÞ…èÞ”vˆ€Å­ „Aßðx4&ˆDa0¸,J-ŒFa±HT2=ŽÅbñ¹ŠEŒÉâp` ¢–Hd $&k)—Ã&àüni<‡KñÇËì#Zë‘ âO¨TjU:¥V­W¬VkUºåv½_°XlP…BÕäY69`àk>“J%Óú.i  Oeó”2]!ŸÎa×kÄó @¸â"S{æ †ˆcâ³]ê-Pè1Û¤Ã9—Ìecùéó5&ƒ_ïs¼´sLø}?Å‚P;=cM±îkÍÇ é~Æz@à'{Åü|H:€SL«Ýðÿ?c€0 Ìg$—­‡¼æm×ü÷g´xïÓʳ“›KnЭ6 -à‚ç®·O„VÞÍ5/ðÒ4í îÊ% RžÁH›Ê“¨l @+Ûôø/Ìʤ‰ŠnŽ;rm>Ïc ?Ìæ÷>Kô5&[\ŸCâs½ÌºžÂ?i³ß±P$Œ°ì¤r‰@ˆûG@í$JÈ¢2L|Å4oZL‡ÈÌœ"€Kì}1ÂÀ(³ ¸&1D„ü±P¬ ÉNëÁò£?-ЬÔLs£ç4ÈíüÖÈ«s ÏΉ;%´\îBoèxŸ¥ ‹ÂxÝS”í=OÔ EQÔ•-MSÕMUUÕ€X\‚%)Ü—%L‰j¹ÊmRd¼Ϻu'O¥j¼»ñÔsHPô4ÖùÙ‰ÌÅ)Pqb{iÌ0[ËLm:=7Î1ë3<§ùôØ„@è l)•eÕuÝ—mÝwÞЬ²¬ëH­¨½ ˆ½²Õ¶™Ew…^ÏôŒ¦½Ì‹Å•VV4‘~GöŒ±~ÇSZ_]N/} »tl°ï<óÅ®ðÐÌC`…­£lÜ^UIÐvŒyM¦y¬|îÆtf© {€0:–½3Ì„º×óÜØ•d´c÷ <8-¹pÅ5¦I· ib1–ž=3Úökó^jY#êæB8< ä²õ‹ @±ûëaîQ q0Ęv"͢ܟ1J.ÄÊö'1ÖÜdwa ßÎþ)*±Ñ;Qm`û%„É<’³™0ÖÆån,¾ûÌnŠ…¶õð¦ÉAm^ß`ÈÖ¤—ªJKéÊ.èîßm?Œ– …p<14ø˜®¿Ãi\jäÆÉüþ>þ¡´™úQÀàº'‚oÅñüŸ/ÍóýOÕõý X^lØÝÌ3/M‹œõBó´>çø³|'èà R8nÊÝe1vš\•¢usŽ-8)ÀÈIYçxIU" Æü±2¾cð‚’6À"}ŽBXM áA ^d6Ž5îS÷[PøÃDLòû$O.• Øç ëJ@«Y³Ÿ—`¤XF5hµÄ²$ÇXVntî¯ø‘l€M=¿1dbÂÇÉÏ`œa¡J©ƒ¤~ !t<€3G¢°x Á¤>1ØãÜ@ÀhéI‘¤ã¶éQìakÇ,4j‰ârQ†íqß·ÃÄš»Ë‹eÈÀgGŸ‹Kf•]µ’Å2C‰¢¤Ÿâü~)m­¶Ö@ò7j²1(æ¥ØrÜmOùÖ8ãå¤l6Y Ú,̹\hñ‰tÍÎbX.}ÐLÔ’F}¯°øšèŒNpS1丈pÖÊ ·NÏòS$©Ôãfòe‹°åM´Êæ cxciýw´÷ëß|1¦‚PZ AèE ¡T-T¾çá4Q´805i1•²À`hzï0ø±£Ú 2+>Ìz&KDŽ֔cykÖÏYî²VÛ WýÓȘ*î (ÿ)kÂOêA¨P¦ÂÕîäáæG”Šr»‰õÍ2a,OI{,´©î8‡¼R®œ±}šªùÚ¿¹/Læ´å5#à|€V £,g¨jzQü<˜ý‡H7AÐ=G¸ÿƒ¼~ !žÐ(4)FòVCaGš\5ÙÔ”l–Œ^ÓiëR`CQhy3ŸE¨x+ªw&¢(EZYJà!*²'â ¼ZkëKOYôU¨9#ím*Å·èöŽ;Éß<Å[Om”þ»‰Árgã¡wâµ]Jªßåì㟵Ϸ[¶êe6z—}D¬:Ã:ÔTÜ¥¤X¶M)oC¤Uš«·iF®\YW2hŠQàöÔ½®x`\ ðF + 1÷¶'«%ïAŒužt¸ÉZ„ìŒKpËößR–§0©lŸE²A¦ø°Â ,ÇÉÈÐL¬[%ÌBNyMÓDœÉApn®a°-Á ÈY"dRSQG E¡(«&ÏvXѳJGŽåÓµšî‹`ôCGétWÅÏ ­‹‡UÂ˵ŠmUÈknÈø9à²2 ñ_r2¤C¸~ qd‡Þ=\ù…óÞ}ÏßIe!d72× /~ªr¬J|r™5yvëƒ`Ðöó?ù[·ÞÝaø_™H­1FʃãŒÿáµíÂcãäÐL3¶xè €zaü:óàÀC~ð?;¨þö €@ Jûu<½|Äïgº3®ßIJ‡ïÅñ—±ÿÍJ½9<ן{Ó˜Õ Ž³ž¶ázq>·×C’¾ÏìñcíT³®˜&¢bOóO«oo¼Q,ÓØÝÊÊP›[Ý)0r¦x]­æ[üü®d~g}O”ª›± ±*[Çz ÕéÑ¿Dãñ”ýZJ8|Ïö~ßÝûÿ„)`Àk죫j´Â‡6ëI:’=¼ö'd¥Dêš%K+œlŽ •dº-f˜/6Å)Ö¹J^€)˜ ˜tbþN²£¥ÆÅʧnã°Mâ¸èNˆH^–06¶ïúôp*ÆAäÖéù-ö•fÇç|M­¬1dü¾ªÐdF"‹*(£¨(yð˜ÿjHêØ6FTðIJAèÁ6AÜ,øa8`hAúÀ ¡þÈ`À ñ$ªM†H Ȭhx vO‰úiÌ8Å&˜‡púꊲbi¸›íx5«m oDû("ê,.ØÅvÞÅbùmn*$:½M£."Vâ ñ%Žüª¬EÅ©±2u‘¨v¦œñ‹d¤Ð3h´3©PwMHÛD„ÿL-Ã:åq&ßä@‚Ã)¨&8o‡šÃŽ*–êF4HzÄm¼bïΦ08Dk2£‘¤•Ž”C,Tˆ‰î©LfI€RaøAý@# ÑÍñÑ1Ô*æç~sQ¬£®+ ôøBu$gJYJnÅn²ˆÐË8úiN¹ð=è‚éª˜Ì ¾—-Cˆ‚‚Ð[Kæâ-’Ñ`DÊxЫr=#ïÞlènŠ^亸)×¥¾DhXë/ ¯ºêO½+zæi¬ïí&i²’ǰuer5P;pîÕ,×'°¢6ná ’@T¡¸AôdºˆÞahÎÏÈô /ˆ`ñQ(pï(æ0dÚQ0õËÒ·2i-­q(O-è"éI' 1öŸ+ÖòI ´jÅ~ÝL\ì‹4vËŒEíñ-q.%fضigö´…¼ß¦À0ÆÐQÄÚ÷y ó¨¹lÒÇî—ˆhÌvñ© W/ ´Éä“-ÒÆ­&¾+Ëp÷mÂJ‰ÕëpöDÐíFÔ⤖"ã(¬¶æRDà@º ÑË)s™9³9ì„`bÑTœÎ@ãÑø1¼²rGK2±ã´Ãí*¶‘l­)œ·/r=OŒ·M´/ÌÖP‡ƒ7îCitÚÌÌ()ð;ó$rÔpåÊá±#“¡@´ ÀðT ðXäºF0‡5³cè¤DSl~’-Çì¦tæ²Ì$´£ 1Ð÷"!Mè½ÃÔKòBÍ|'rŽ®žÀK@åP¡ªátAæÑ AJ¡÷* d¸T_ì>êmÐo#ºÌ®Ü°:æÉ¶lKëtFG/0ù;E ¤¨µj^K²ë2­0;CnÇCÈÿS<‹&æÎ.´ò'>±\§WN°s;Ñ=ñ1À¨ •¦O”yQŽYìf‘ r©É;¯töo;‘GC”BÖÌo$ôö¤õ Íœä«Öp„†ˆXéNq¢ÕJБBfËTžBAT´Æ´n3Jó&–Ã×8§¶ ?93—F•X5…Xeà“¦ø ¡JÕd«rÎñr|qÒÈãHŸ.çCK»6(sSp÷,¿tXzKë%ÑŸ'-ç/cí?ðBámFu‰]µÜ}’DV¥ñL¢F¦°^ûÏË")øz­–ñóRñ¯ºÛräQî$´òõ3Gmc”ÈN6'ǘ'¡ò6 VeTe]åP¡Ôaæ®ÁÁÒáº!®ìäR€-€ :¯å[%0’·r#(‡S4Ñ.ùM¡&•*ŠÄ“«ù8Uû.*&ÓvqfX.j¥iR^ì »Yô¬¬)p£-nx°†ó‰&ôàVsâ‡'é‹Bë-TD6²“îÿuÅak‹.)< –òé½'b~røÖ35 N·D-ái†!PÊÔ×oùIvxYÌáiYÃÄéþ€AWÖ5r7%rw(*UŒª®¾æ-M²W ƒŽ®"lL%Œp~H¸òn®ÆË=;Óä«Åš~ðê`æ˜zÄýu°Íâ€H8\¢” Mr·‰x¥O^ ² á‚ØZ)`‚“NoÏ% &‘$'qæ×µqK]pQU1vÞwÔß=êB‰,FNFº£SÕVpgz0žºë»AκPV*ÀV’“xwŒUAN¡á)¡òAbá¸áò` là h@9w9{ÊeRò†³#1h›Bì AÑEYOAq`½T£P5iVZ±³>„]I—Æ'ÄܤlÄÊ„12•®yxDF øû oå…¥–³‚i‘eÌ¥ƒ×ÓnU"º,¦<+¦Òñíu62YzéTÝ®k>$³d3tÏdÔËìCpO[W íj­êü2ZÖ«øRó@NO[i¸ÒÍ]{ˆÄÑvy/‹:°¢)ÅW œW÷y ´ XÁ¨I· º‰“5Kó{>‰ KR ~×õ 7u$‘KoIBXFôâ¯ë²a¯¹”U—ªs]7…ÙY•¢³y•^Š‘;&ÜìÓº´•°‡VžÛ×nt ÞG‘?ñ~2'h«÷]{%OÄØvìJÇ×4ÿ/£hæLí’‘F7õ•ÅNÖ:8¡ú>Tlá¼ò¿Áúà ôq>õÿzØ[n0€¬•G(´MZ©ôìÓÏŸfñ|ø{80r¤’d¹~à f–±ôÆŒm˜ ›=Ñô¦ !kíEubL¢ßéÃSFÚ M?®©,PåÖx6mís¢Ií ‘¥O¬í+í™™‘S\«V¢9—wŽ!´™I(3$r0ûvrKå!éîaá799›Z¡ª:¤á@a¨H4 Aª+˜¢DÒÕÆlâå%–ÙnyÿYç*Ã¥ùvI1`—IL®BUH–Ë:©q»QvóJ¡o²ð¼IB\EÈÀái›:§°» –À…è¡„Ž½`ËQˆReYŒKl¨¢M׌1A—ñV¦7[!9?¤Ùu˜çI¬$Û+1Èm©ªžÓ ãœÃf9±°ÅÖAn¦aîv!°Að8U9` ´¶{@¶Qh ™Šô¢œÈ‘sw¶rX³Ú¡äfÜóbqxPLHž»×QªY7qQ¨.?9‡cÒ©‹p—°z—r¬³èŠIA5j¦j¦=¸ó_¢³²ºxK¯v–ÆÐ´QZ•Kº†­=fÕ5Cñ¾t›I²A _4D ÝÑœ•V^ÞÌcgTSÛ)Iºø×zyKÆšÃã}§3*]Pòá8‹ÿW;iÆüqÇ* ddg[:±I¶ŠÚÙ®ÕS™Ég«5¡2ûS'ò¼zÙÉ×'uË3pôºÌ_NµË%&®h!RŠx OÇ\Í·;-£¯QL1g³>i$™oo 7¼—ÐmL*Ëšÿ7n Ó5³"ÑN—Ð|ë–Ï82!™é2¿bè­€)œ» ÌåS›öa~! !ÖáöÁÀÀ8`u=GRcì£Ê¢ÍEB©V÷F%oY¡ã¡è$—lW¦LÊܪ¢öóôO†Ò‰U¦ƒùIòBÓŽÍ\œ‰ÑÕ«žz½ÄŽ™×ݘß<›“‰èöH­NéªùÚa.kÃVa˜Ú^+¹@*1þ»‚¨ôõ V—h›yçZPã¦ÔØÓ{#WAD`C©Ý-à>àe媡¤Ú­$µT•,°šxýTâŒsÙCMçÒù51ºÖ§³Î­j$ŽÃ½±¼^šÇ-®!t´”´b(¡ü|ÄÁj æuÜn àÑ9ºÕýa„U¢&—1T“Þ²å_Õ«•À2 !xï|H0ß±|j#ÒÕú] Já°Ê¤63[Ì+ñ¨ô~)]ƒÇ£QJÔ9V„Dí›}š±XŒG"ÒêôZ®D/–¨öû¼Ùl·XD²Ã ¯ÙâÕKÍË WŠ×àçûáò ìålª“¥ÓiõT¹üþ2šOSŠ)Èóz¿Z­Ç¸öƒÀ€,MËsŠËï9ÎfÊÊL¸¼î<²Õp±Eâ1éZñ‹–Ç8¼kÁŒÂÃrXô¯ zõEìüžG²[ñöb{7̧/•ò¸ï ð°ËR"-Ìcê¶@¬³žú*ës¢™,,lë@ÐJ´:°Kˆõ§°£&´£oÓ¨±¿‰œ*þ»Î’¸#ñTD®,±TCÆÐÓ¾ÅÄ1ŒwCï£ó:pæxŸ¥ ¢h$ÕÉò„£)Jr¤«+Jòij-Krä»/' hfi/ì;¸è³LsûHb×C,‚Øê+ Ëí1Læ¶°ˆìó;Oø=°òíÂ1¤òºÃQ…ºÓ+˜ÁªÎÚ2²?ÏÚúð?)ò}¤€àk–$¿STõESUUueZ••²š8›êЧ8ÒÓ­Á¬¼.ÁÇ1r6ö¢ŒÓ³\"±Í)4EԢ走³½ƒ5ÓëÖíYo‹ÑN8”<:Ã+S½ÅQ3#½q-Χ¬”ÓÎÁ`J™ÅeKW^÷ÅòÄÙÐygñ(SG±ðà0€p„o»ô­özÛ9âîM³\÷bã7Á„<ò&¶‰ Qh„IÙ*^ò1/>BúݳB\tÄås9%\¾$ØõR] :è0M/h“{ë9·4 ºÑÌ×9Åø‚; ²X¬ñŒh]÷*®¦'¨fïûѤáÉŒjûçùÎ'±Qî~çCP »ã;ƒÎP¯ýƒEB4~¬óÀ甎QRXš ß\‡#Ér|§+ËrüÇ2¡¢Œ=ñý!sýäîÃîé¹–šÇÄ|DýCo6õjÚ¿Òk3´;hÌŒPÆG¹ugN¬ÂWOáLkO5éz~§«ëKÊ]do p ßGè”ݲÕÒ!rætCl;º<)Mèpv7Ûé5ä1§,][Ý´m’ßÚ5çZè_û]H<‚ô¼"óEëÀø NˆÙâhUŽÁX.xêFt€ @þt¦DÊ,5 ŽŠy]¬èœ¼S*à”‘“lÉb¶¤W LÚcÐFòtßârmPþ²óˆïY1ó†°3/ ¢ñeÅé‹DâÒú[5tíž+ÚYÚ{XNÅá±Fo—#b†ÎÇÇ“QV/è`åGTf™S*ÙRªYµ¶ŒùÌÄyjÐñ(Õ‚¢^2|gìÁð”Œ?[qðFKIy1&dÔ›“’qÎ9çY#y5\ կǨTš#ÊDB®; 5Ë\ûæWjñCFòP[:ŠˆùEì¹›#t:,qj¿7‚¢ þ@t“‹0U'f”Óš“US=²^ÙR~°¢XÎáS>€²ÕoKcðþYÊ#FÚ:£èQ8ËÔ¯|Άy76XÐdTæg²ÍØ?²ÌÈ$P#ä¯3E\šÔ5Ì!Î>„h ¸yÑH+‡`@ =à×Ic+€¯Â@ßÔ[â>'¤æKØÀí&*Š\.ªÎãÍV¡Û€q‚:IÕ-¢%M´ÚT¬¶Sd|líj.K¹€Ãå­jªæG8u™MšR,Dç4È8eÑãÚ–Xq*<¢zÂØ5^ªÕA×H¸Ø'j݇\çU†#>Кȗs‰jLŸ%K&Mjú5G^¯aq÷0 u+¨ÈÏ›‚.eªaK´ƒ ¡\L’@&IZhm£´––ÓA Fƒø•oÜ¡4êxQé:FÔÞ¡-Ëol'm›¶¼˜DÚðX-Ë߯gÜ¿Gô_I ™à®ÓÜû¡thtØCuî=â†|¥er‰ñ~ÛÛ9WÛ5†§Ó½]×F0â5¿[õ*zÌølçm“ºöWÂ+ RósFé_õV0ÆpôbDr á®=‡¨ñ€€0i1 QµžÅO•.»(PS™»¸hˆ`g­É+*©T‹jÝSDuƱT8˜Ô ¿—S¬¢2wóŽ”m‹žù¶‹3f»]¯ðíù#ôZ‚‹ò¬X•™òv!ø¥–ð?Tij•F:¹Amb2·VŒµ•ZW¥j¸|™KáÙLŒµõ³Æ´ óaü¾ÎÕüˆR¦W$‘B&ÏÐ)€4ƒÐšChpjm^y™95ÖËö%q2~œ-Ç'cÇÑk-Ûi¼µ ¬F¶ëŒ¦õø†˜ÂPÐ ‰28Æe¨}ÂHînˆÖš×[%¹°î´"¾y ÷©'Û§,=0Ÿ “^æ"Läsð|+ŽÂÆvª…ÃBÅ1)àĸ§#[Œ'ÂË*ü‘ú 2óW;[ît¢-ðÃx Ѳ=†PÌ`$Ñð 9³ŽIxµßHÊg)á}d—ŽáÞ´Äy˜î$dE«¬Î¶¤ì\"CÅ3üÏF"ÒãˆV·‡XŠÕ!l•]Ù®ñ”¬›{/©~%XY»(ž8í’ì‘ßPÎ#jU§N>¹5Hó’7(Û {.ü˜÷¾Ú©eN–@¦Vðý(¦xÝwy!:CjÖ¢È8òCðQçà¸4èì—³v~Еh6öò-ã¹Ïn}k˜fve;´ì·ê‡ksD\Ïn$Mô…½FT¶é¾‹¿»O³)Å >‡ÜÌT#XYnnÓæ|×›UâÜwä7hº’Ø,à´zÍuEò ÕRüÌN¯ŒÃoÎ]<¬Çë&Px0¡!UHËê ìÁ×ÞB˜çÇÜÉm^ Èfî_9ôJé£ì] aäÄäã±O‘àƒÚ}á„ÔËKÕ3ý}kSá÷j2ß•«Ë{‘=?Øãæ›;îÁ²žãÝ «™ó®+(º»:9J[;é¶¡™ êñÙN/3’ª‰õÆ¿²à±ƒ-Å2’QŸcÅû8” a/DZ«¤hëµ3IœQ£rE§x˜©™ ¹ž$1û'ú(šb Ë®:ðD#°»éB<$BL%4+µ†xò/¡³Àþ–‹#,»ó³³Çt(8@ê¿»‹¥¸T-À‘×>1Ù6Si²;P¢›l3©Š>(ëX’€;Ë<Ä%ü<-(T¼ð,= Ñ€"&¯»Æ§™Ð-F ´E‰Ñ³%GÈdˆÀB×·íLµüÞAÙñTÌÊ)G¬‹G¬x°`Q@è&­*ÕZU¬§tú£Äì3[Ú»Ô,«ÖUô{­’x9s›Ö4kLpDü¹©pG¤:Ë'L½Åɕ֬à)ídªðçÌùMËk/ˆå€8j…€ÕµuWX¤@\h,ƒ˜nqî³M_M­j4b®'ëÞª4¡»œ©‚¥0ëH…!H £§:º4ËüPLÜ {N ë¬\/Û¾ BƒÅ0T×MvHÈv‡€~Àb€<ˆqHw<˜×`0œï®ÊÜÔ«k6T0T}b-ñGܧêÜ?#ú-òÙÖBF$· ,7ÎY•=ºTXÑãYŶ1ÊÐsJH•iPMdãfAfä¢ÔjM\½ìSŸç&+± æu¬ìÕŸÇÎ0ç6*É —®YÅ|Ä$~ײ$¬£ÍÖåDfer†nmŒ“þbK!‘' þ8ÆÀä•;N$KlêQSá»å²ªÊ+#Š,ζ›<ÓÁaÕX}…C@.çÏóÏ=sØ™€vâeh®4àžC[EI­åÒ`l/¥³ŠF^‘¤e…¶×ãlÚV6”ü9†¨Wð‡>të³oNõãÕ›Xzt¢6-g‚pbúõb«ƒêeJÍ/[è 6q†UŸW©ô3iÁf›'T=™¯tá¯ÐKôçOBPahyRÐr… bt[€M¤¸¢S¶^x@–JæÛG)¬cýFµÿBÔ T ãPÞCnÇ dÀ‘¥Ø§ZÎc¦)|»Aª§qóÞqN;­e=•Æ*(®:B9$»³7ºÆ¼±²Fæñ‰3,4í5Ucà¬êнT^Öj9—8Ù­h?7Ô”Í0«0¢Ø…OHCmØ%€·eù™mÿ?TÝ*é!µÊùG(ä/‰V•µd'HB·¡ìgmQÎDžFðÆ!.îÛ²à`ÑoL…pyŸ¬4?P¨lãÖHæ`¹°üÕÎfAŸ š2$÷Kž°º¸3+‰«¶„“\lkÂò.åɬ5Ǫ=U-ÓFÞŠë@Í Hv@f?«úÌ;…`‡pLPs…ðeˆ˜` ÿ„[“‡š%9 §x¬\/ñMò«Á³hÿrkfI.ÈTKü½õ}ËäòÑ’ø_\퉶û®ÿØh´…²½œzG{ê(ö&^ž'z~üH|'=èUÓ}§U½¬–Ì2Í Þ> EUº÷–á÷˜|Wò-Õ€pLAZ^‰ß¢bž?KŒì@ÄDæÉïŸsx#‰á ûˆÿ@ü& †AàðH\@†ÀŸñHeôûˆƒ€†ª¸a’IdÒyD¦U+–KeÒù„Æe3šMfÓyÄæu;žOgÒõJåØX:¶Àà,V ‚D¢‘µ>†B!”èJ‡@êP¸rOP‚Ŭ±› j ƒU¢ñ8MBÃbºUk°J]âQ†Þ¤–Ht"Ý`¥É*U«."3X…a«uØ´ðú `¦jžG?ÎgsÙý‡E£ž¿¯ö+AäT:5ÝŽ×Õ ·U²û½~©W©ÄkÛª›o+ÅL8±÷‰gÞâìøŽ=ò¹‚é]xW>¾úË…ê㪨NÓ¿|ê[{ð{_J±¸Æ+øn›Ïßv0wŒ=¶·r»Ôé«JÀ7Svè?Kc¦³8 SÔü, #Ȭ­ëë™1o3šÿ¹JËÄļC¬çD ¢œ§©‰+Äð܃'‘öQÁ@¸%í$qÇQÜyÇÑü ÈR‰"ÈÑØŠž¹ÃP´PêÉð,0мúÒöA14P¼»pÔ›¾lr¯1¯Ò²Þ¶°¢LÝ@®œßÍ3 …:ÍÄ¿;°L «Ÿ'Ò:¤hc#ÐÔ=DÑT]E('X°; xI’»xôAŠó}¶¨½A«ÒÄœ²;“Í49œ<ÛÌïʨó¿Nä¸ô;ˆ+w ©Ëclû¼Q[ 9³# ÁÉKªSîbžÉŸÁXF™¥37FÚÖ½±l§æq°zeÑØIç)öàPÌ­ÌëS.Cìñ½ÏLFíMµìWìÒÀÞÑœóAªÍ9El%:ŒLòÓ3>vK¦âàóâìë<.ÃÅŠÕx–c–>ŠÍ˜SèÈBcµ’dÙ,¼ø:¬çXå™ \M’Þ UOSzU¼÷ò£P»3æ ºç}”ΩËÞ§ÅçäeFÖÖ©ªêÚ¾±¬ëZÞ¹®¤ t•„gêS³\èvîÅ/8ki*øS©›c·ì=U¯„Á!Ïúß|<ïº]“ZJJ”N7›]ƒ 912õ*áŽ|£ˆðj•¡–½ÎóÜÿAÐÇô}#I×V”ú̲léÓІIÀ<0Ûß+?ÜRQ¤äY¼+Šd:?{¢ã9£xü6Û?y÷©n|'øXFaKBô^¿±ì¦§aà}‹Ãá²[—§` €À½Ó—âU3ùV[ø¥·ËuðV´gÑsÌy/þ˜ãäIØ#¸~¨…/”íIJY€„Æ6H1 áv>I† ¢††ËÛJcDÐV)—â­Xi·Cðx ŒÑª7{Pþ D…â$Ek <Œw„Ìá’jvLëBRªÿá\U° ø´&Fÿ݃"vÅžãÛq×.,Á‹–³ —’þ)ý´$Ö]ÃëO }Áü€Û™ Î#H ä"=tÜk€òsšxVF²CxmWyŒLÇAÙ7·"±cŠmÆN*T´îÑ"ûUâ58ØúäÒr}¯1–9bí1]ãäÐHÞ£Ö²þ`(Ñä=Gଃ°?‰qÂ9@øÀ0ÒÅOãD‚'õÝCVå &Òd¤±Ý%ÒÄðàQcxÉ>:–ìòå)PÅW øZúÅ•µBÇËϱ‘ž‹õ›;•Ú»™É›/!±ÉÙ© •¸q0±G4¬ë ±U(*²„Àˆ]lÔŠP:&ÑÒdÓ‡“P ¦ÌUJée-¥Ô½lĈ”Ê"wCðÖ2·Ê.ƒé©pXñv€?r”Çaß`*`ý¸ª@LmŽr9=ªÅÚÛUA…’¥ ý¬¢åY¹]䙉%t凸#` j9ºaZëem‡î;H¥›1L`PÅ€Næk)åvÒi/Ðã<ÙÌc­ÍÔ³bj"®›æ%-Jæ4ÿlKįéAgixõku³Äød 1äD°àÃDy04€]ŽRQ°ÓЕ´¯-Ò*¥:Ò%P±¥¢(HÕYX`‹*2A&Pg(qW¥9SSÅ£8gŽÅë/=rÖÏ›#@Ÿõ‹š³èÃ2Ø¥ ÅÜTÔd™ ·nY£ƒí©ÂSgiVoeÀŸ‰÷÷8(´Ta^•aàŒ…T¦Ïàœ‚ðf ˆÀ8 hC,„Öšò²áK(˜¨Z#¿/ú±Aÿ¯èãÕx{ñ\§NöF©ÛF0ÂgA£í˰Z\æÇØÿ !R.”€vÒ(¤Ý3Õ`r]}åœ7ÒÝbe•ÉDÒƒÝØ›‡gMè6 2D¶SlyÃÌ 8WœeV‹Ôǹ8d(‡{ƒ~Õùì­å%iÆ æd3“±=ø–5µÉèeM˜60Ñ, ~Bh²ÜrlÝvåÙŸ¸ˆÄ²\=ÿ9ð!½QR:ÈyåJwˆ¨Û*´TßÍQ·†þq˜IS*f¦qsåá/4Z£>¯v÷L²º‘ ï‘ð<²…ˆãY¾ðßf7¡1ºYp1€¯gµ¶öæÝÛÄäá½CtüÔ;’¯—ÝŽ^mžNˆ]7'7ìÞlSµòaQ-Gzì=?¿oq]J3˜"äv̱’Áô õh’oñ%¶òEÈõÎâ´·' ÃtÄS³ ]¼ËS%,6“îÍ~f)÷è­ßŠÎ{fœúÊg'5W÷dí¤]Àû¶hf N!Äú%.ã°} 6E¹@0 `´¥T‹7êŸ9=©TÄíÓÈ-–%#~­{¥ÔEej4™U™o+M黲p~cm,9õ”XrÝU†Ñ•teãW/ ÄÅ7«´·&¯m½èInà.¥±Çw„>¥/ªô®ºÞRäPöålw—p4n14KУ…œwË´–,Ô6¾Ù辿Ø{eK7Å~ÑÄÝÕ7…VDÿÌVSå·Ü¥–OÃWÖ¾åÄ[Â¿ŠøpPÃz «§ÈÙ#ãPUƒOgöþäÀÈc¨,~.¥§'¹\‹ÀÝ\ÿÆ¥W#Ðó{0ò8op5 ù¯°×aïªy֙ÅîüMgØ‹ê”ùÃø!î2Ž€èO»ˆˆ¡î¡D¡Ð!>AÂáîÀ®¨¯Ëb†æù+,×XXjpá.w´Ä¨Lªd(JŒÌׇ|¿lÈå‡fÖpòÈ,¢* Õ©¶;l¼ÿ%ÚÐ$š¿é.XŠuÏÍ+ŽØƒ*–ì<7¯ìšïÔ%ìgH¯ +å ·£WéVå*’…Öꇎ£iø•/êdÌL‘꺒MFõl Û’P÷úQ`¡‰¯‰oÞùLÇ¢|º¯æã,ýíãÑ ÐÏÜò- ¤.Úþ †ØëºáhöÇA¨µÑG†°ûïÂüiï¯NÆ.¶$ŒíV:®6tÅ Â;.ꛘK)T^d.*®pƒÐrNüíf%è”Êÿ‹žÅ0”ÖF®ã&çévGQKF¼¬`äá¶á°ch}¨Øk„<Œ¯=í¢(¨Ö0LØa%ÜŠç*¨*¬·ŠJäM8àÍ”œ_G€ÜË©éÎNxÒh´Òï3ì6ô§kp¾–J¶¥fÙ'cO  $k’•Nº×K ÉfÙD±Œ·o fç?Æ.¿lC¯[·'Ò(‚%€Á†TPŽØ­!ŽÐí’ZƒR<ƒQ2’$¦£¢^«‚n¤öÉ‹ K&OÉZym~ ,£ !Ì^)Q1âú¨øÇo³(Rã.Dyàð©RËžCl>}Q†°Ë þ-„õ+&ÙÉFNË”‰j¹ §Úï0âÂÍPµóžJ¤²ÃÒÞ/è+!üm«zKénz/àk.sF[!"ÁǶÃfåÒÕª¨æŒW *ó¨6…ªpý±Z›,¯1sPºÂrª^§\بÂï𚢠í îøÿp°ùò,÷ÒM+аã†f~Œ»Ï"¼:cäh"Ñ"P`ý­ÞýŒ\úoÒ½ózX ûÊîðÑc7rÞ¦ØÝ&ˆ7E@iáF`X ’{4“ÿ@âb€ÌGø „?À …Ã`Ðø¤V ‰Å#ø(ŠÆáðxŒ&E¥R¸dš5”Æ$r¹¾3,šËbs)t²/0ˆK£ò$öœÐgpØäz £Ác°ÇËíü" ‚Zб¬ú½_°XlV;%–Íg´ZmV»e¶Ýo¸\nW;¥Ö©]:‹†˜@©Å*¼ ¶›<ŽE媚`èüLz‡‘G±3¬ÞB NL©˜mR•ŽT&ùé<ß;+ŽÊ2Ù¹üJ¥QÆm$Yhœ+#‰E¨¹Ãåü,‚Ùj:íÛÏètz]>§W­np¹ß${m\½uAàJl&SG™è§pšNãI:ánì4\Ÿ!¦j½øÉ¼«è±§/û8¥7ècèۥO3ìÄ3¯T©2*y0Íl'?©ྠô?5q$Ç¥QI¢ Cc3ê+ ¡CTV ³¬^Û>If’©ñJpÆÇ1ë(q Bû®0êxgÙFA…‚à’ ºò̵-Ë’ì½/Ì Å1Ì“,Í3¬H‡&M{Ð!JE8ͬl–Ͱü ¦±„â¥Â4zô½”+?C&sÄ #¶hsôÊOñŠKGP“Ò- ÂŒ•©ÏL#@ûAo[ʋŠ2}*Ê´UÓE]WÖeYÖ’ÙR]¯CÁ¨À$`›2²JyDͱ\*…HiüøP­FÏ– eGÎa7³¼/$³¶áPñuºÿµ1jaÙÊ\;?XjCÖ¶’]…7&‡Áô~…afumkàžçÉú*×E©†u`H³óPؼ÷tŽ×[ª}¯f\–Ìñ&P2 Fp%‚ùÔ#Ù&0\x’[Ð6:ø]öcÛ'Ïm¯Ð-ÛƒZ-ì5œ¥ÒuÁé­ÛfT7`µEÊu¥TÖ[RGVqu<í `3*|àÖkìö[r[v•-ŠÈgå)Al­,`{®í»ïÎõ½ï›íj‡æÖûëÙ&,D—Áë`69ÛûDªDEbjÔ>±DÏuçji™ê…¨Ù¶ŸL&ŠÍTh9ô~á4ePo¿wÏuÝ÷޽nt¯kêÿÈâ­S$¾³„wõ˜æ‡Æë]DÂR9Fm79W%ÞSÜJiEÏ%Q/B“«ûOü甡³}9w÷{ùþŸ¬ÐªŸÆQªx‹Cá¨;xú v¢¯ÖÁ°qe‰'2w·’Ac@MPÿ>ÈXœÉ^0(5ð6h2ÍÕ3ây…ñAWCÌjqm\Òµ”há™Ûk7/ò‘¶tg âñ2nx²@ÖÂŒÊw|«Áâ>†XÒÜa,…‹QO¹`ò*Pn É+¿h­âÄY‹Qn.7W0W3šF.4ÙÄ“\~Ú”dl†"›ÃÌŽ–;KN§ ß"ÓhdšÛBPiÈˑЦU" S±Ö™u<ÇÏ«0zPê2¡D\‹MÞlä1TÀD€PÔvÑvNIÙ='γ¿/cP7±–3RYÏž0™„¢<cÆ}8”І^2t@æKÊèpfœ¬d‘Ì­K'Ġᄺ‘0Ù‘Ë5·‰‚r(”ü“§Ü  ~2‚nMÙ¼€Úa,8 áÐ;GÐ  ,—Ræá$ÆF‹•°)v˜äãAŽ?Ê5ŠÃ”ÜêÊ3OhJ)‹ÌÔÞg 4nTP Ê§Œ‚Q|¹„­5ÉF¢0S‡ó…Shš³ôµäO•1΂³cR»M’Šd¨ ¡ªNΑíR﬛=§¸¢¢’&½ ((N¡@¸§3©Q´©”A¤êByAÞ<ÇУ@¸.†é7êÅY«Un®UÔÄÂ`]ÎÓÀéw=Úµghq ˜§Lió'¬•ç3'»3Þ™“?1®8©÷.Ÿa ž‰ÐCzôéÉ4µO¯ ªõT5K·«ÖNÊYWq(ƒË‹R¼ÈÖ×l#£‚šǸòçi‹•¨ƒVŒ»6È@òID×›#,QY+-mí³ã´|Š¡v:C˜ *uÎÇ=Ú«ébÓ¾²¨hmäm¬ˆIžXX áӫᕯBÐ+:Fž,++ðÙÃÍIN£4´™0áÄDCå¨äñ&ˆ`œM7 ìX¾çà×A7:æ”sGiîæX$Í)Àºï=rKÊVmf=ÿiã½·Š1Õ¹ÃXoaÜ<ïkÁy0Ô2EA4Òb ºÌM©Å–µá³ÅljŠ6{H©íZf>WÖÜ~è›+=u¦šÍ*:çù0#“¸¦×*_]xÿ h­ q‡òÆYËEÔT‹Ç€F Äâ; –ýZ+iÖ2Ü“#'­$…V5Æ*j¢Ê"v½´¹‹1ÚALq[N1F^¼@叨)¡üš {•i±6… ¶ËzOJA,+GkC\€` & ˜Ú(PhuC\êǾ&Us’PIBË Ø—¼|sG¤LÍD"wš3?¤P×K-Žc\ŽucYº‰~“ÜߊTÊ®­‰$3ø¦Öµ-¡þ‡¶5Ÿ=¬ærº1¦ÜØ¡·^Q'ЉüÂÍ[ë¡1-F˜xšímüô‘˜ž(P»$—Æ“ãc!ƒìR^⮕á\/†pÞW€€A j2Ä©hºu²¡–1†åfU2÷óÔÄŒ~ã¾#oF =†Ê”F}¯o¦+µÐí”ß”o_óVI¦Ñ(‚²5FWáý¢aÌ»—ó ³pŠù@|r# Ä:kýrC¢žÎβÏ#ë(Hhh®~¶\yñVk§ÐŽØÖcgžLÄÏ|šeH¸™µ5S×P …TñõÁx8HÃ=çî}ß½÷ß°ÿ¶ñI›Hñ¾ñ•n×:mL¡:~Azx†Tÿ‹óLÎå7IíÖþÌõâŒëkømˆ$òfŽã‚&Uü 8+AN/Á0$Šån°A¢"þÞ#Nà ÛE~tæÊÕ&BˆeÆÀhınT=i¨‹ÈñjBõ'ÂÿêLÈiN"!ü˜®²Ÿg°Y-¢ÝĨ…€êÏ<1-^'íd& }îëpœË0 Àö!bÓLȵmú±£&’YçÖ2͈¨/4¥X»øioB™íÜâ«’¢ÃÐãíj?JhŸÉt|AÊòÕ„xº„ntêX¼ýÉd½¤èâŒÐÅF|ŸIò¥ðYδjǾTcHΪ 5„BßÕõÌ ŸI_Oì¡€þÎrçFzgïîìˆà£ãVÝmgíˆ]¤ì(° oµ ñy±}ã®â/Éî@ùnº® èu&j’ èìéäX0êê+ÊñL­Käß« kï@Îì^.»n4}…ØÅ1ÂêÑ©!ùl¨èuÝåd˰,02xhb‘º7Ltêlvóò®,ì)n¾ðúNPŽe´Ú®]èî‘ ¬ŠfŽØY¬ZcÑÐÌžzj–öâ¶I´!H«gÜ €þAZáÊ€"b VMl‘šÜ Ê)ÝjpiÂ’ŸÐŠù±Pä(Šyç&´/ûʯ ¹’´ÐJtrm)…¤ÄèÆ÷r©¬òHR¡'/ÊÅJ+èÕ"Êt¯*‡’…)¡,²ŠæÌ ­Íhq„v4Š× Tž$úÇþŠN ¶ï·$³0s î"ÎX¾J¬â7&B¢çC`ÇbRll­ˆ¬®œ…ð×%¤¼È3h$Q‡/ jS‡0GÎÈ÷/.ͼÜP @i2ñÛ0³q7#¡ ± p4<„2NL|ŒsE HE°íE>¨„èùoÕ\]&Ø‚[&Ic9Ë ä¯Ù5â>S±ÉÍ,*PFQ ð0AòAþ_2C$su>(´úá ºÁpÁÀðIÔqf]g¤šP‹(&2 10)¬™ΪS ‹Ïo; …²ó¨Ž‚0äFªv5òÝ*8±SÆØ¬Š §2ÇO#2ês†0zë4e’3sœÌ¦/"D/ðõlí L—.‹Añ+b1 1“+Šè„ž‡ÌÁ¯=+lGÐܤ°XæƒàúÁHcS>B@àX4 …BáØt>!‰Dâ‘X´^1Fã‘Øô~A!‘Häp {Á_à[ýþ•€&0IœÖ7ƒMå`lþi:‚ÌàrÙ”âi*Mg”zM*}I—M)”¹ÍZD—ʦ5X$ÆuBÖ tJu2_H™V,U M‡V´ÌªvùõÞ‹f¨Þ@·ÓøB4Ôã©.‰Åbñ˜Üv?!‘ÉAUKÇA\öЃ@´ºDº}0°Òêuë|ÚYuŸÞìóÚ-ËD®Ò§i½‚窰èwÊýº£«ÙÞ¯3•‰dØPk|ª†ÏQJÓÝ'uÞ ªÍj±ï­o‹ø°D e'Ç9?7ŸÑéõzý’&«yæI8³n÷Ð(˜v´Ú]ëö×9Ëj½4 ‚Ö§­‹$§­°BÛ5èSƒ­K2ë)ÈC>Ü´‰³ Ò%Ð#¤¦*°Ì/³Ñ#¨Úº*;DÕEj2Ê¢ÂÍ\¯¬ ’÷4élc·¨\-Äò$RßÄëãX×®«#M ¹Ñ¤$ ÏìTµÁÌt´µç‘öR€¶#ƒolÏ4M3T×6M³tß8N3’.¥ ³fÜ:鲿ÔBTvÏGNb·Fk[µC­„(áÃRr¬¸+t{öà@êÔ,ÄÊä`ì¨.ÒÅ”ÝR7Î%êÏÊðª;ãk€Éö„@ÐÂsw^Wµõ`1åIxs‹ È ÎBëDÿ#;Ì«.2¥¥AT«, ß¯–»hé!6á9q*{KCÒ0äÓÄ’ÚB1íŸ!!0U±âÖ nñü„@a–O°Ö‚`¸4Øi‡˜˜9™gIÜ|€H Ö2¥—A‘Ä¡KEµ ÂVu«^²µñ@´“nêZxó—jJ­MIYV˳<¹ÖÅåf!¹ÜüÆæÒ¦ÈQYŽC å©d¡¡C=ÒçÜOýªCNwž«0zpwžgäÃ1̸>Dzl»6Ï´m;UvˆeâìèÄqÆ—QižD«Û.Þñ¹æéÕ¾¶ÁËɧPñþ‰¾ÛëŒÆHQÑ-]øÄ±8”§º?gÝhÀ×0yµô=GÒtVŠ>ìØ «Q ÛCÌÞ•lCØnÖ£ÿ¦k9–}–Óñs«uU{Ú¨ÿ[°0î+^MísÜ]ê¯r¹z¹ÊÊÁó~_ØuÒû¾÷¿^çæ#ŽYÔwŸ [óuJËwÔî?n"¼@äîå¢dÑY­'‡¹#•ºÜT8çP¬Ö0’R%QnC”PßË¢zRIIÉ"Çà`ÊIs )%U”ò‚¦oï Â.–BœS}!l±ÄÀRÄi›“þy+*#†º˜ûa‚!D8‰b4G‰L„Ax€3qj‘9ÿ¯tqÕ#F^în8÷2‹P2£hQR ;dQÔ-¦”s®àÒx«™Ç(³„“ÜRGñ©<œ2V?ž£QCðÀ!¦)]I‘&EH²*…èç3¨Î‡¢’ßsHfÎM¤§t›ṆJ M'xÎ^W ZfèB!`ÿ£zr²]á»6Xk•Z…j*”¨ªÈõ×à#£,O=É1f4Ç ãLn0–ÆS}@ F8I-R“^&ðžKɬ^ “Áv ݵ£pºÁÒ…p®£³n‡¹Uh’yòØsZt_&²r'­$U”ƒ*F±Lˆ©Èw7åÔPo&Õää¹PÄ&!b'¶®ÓâÊ™[qrŒ#¥TkÕ‰¢fpé×»TRž‰”=ý2D‘Kiu/¦Æ™`ˆ.çŠÒ©¹¿†6]¦Ã9£Ê ý$×›%'[z¨éa Á£Î™±p³GT×…@[ºõE¨’^@•×<¢‡VcüÀ€¡©!©g­¤öÈé s«fôƉIxÂDŸ»ò¤®R%$®¹Pb🅱FªÂõÇè+˜,NÈzÕclsÀz€à2çÀ@yíV I:l©JET4w ÍFµÈÕ8vÒctj„.Ì¡§ÇªË­AR@H.6@‰Ï& ²³Ò‰àÚ˜¸—$¡\åjØ;ó•F«¸·ÍézÎúp!™MI—:k®b‡`SÑ£óò5ZœJáwR/ñnϦ“ÎALk£èRàeJì}÷¿æý_³#ÅÕ ½oÉÁJH9YÄëd‘Ñųú*hÙƒ[Ÿ…5âYöW„u´,–¼ÊãlÐ"Hµ1h·VL¹Gü¬JÞBƒëù‹qv/ Õ°+Öêá‡hnôêÜ`+ÇG ôÝSXR¥–«lÛÔ/¶· `õÏÛ¬Õbô6d˜½¡I.Ñžu¡ð>ì9á±V3f<Èc˜HòB¬oŠx9@ Î ¥\Òãz"±þnW&ÜÁˆ,(¥YÉ$2ˆG'žaT. pÝœŒÊðû34”jàç˜óx(Ì ³™úÊ%›åe¶á¡¢šK›Šè䌟W«Ã+½µVÞsêõ»*D–Ðó‰ͳ«uô±©°L×øÁŽöö¨9 ¸OmÏ@býæ§êV-—¬Mtrc´“9áù¿ûmAfݽy9p—¡ð3 a–rßã|wM`GgðÅŸÃü²hço¥ÞÒË´;…‡̆â\o¯ø‹®¤Þ’¨p’>d!ÅBùiíVþ áö·¬œé­r&Ÿ´y?Pš¦¨h Þ+A«wm£U¸Ð-kª¯QŸ•>€é×p” +ç§WêÝâáed_ÁV`å>ÛõxÁ8,‡gcD±0Î|òTi¦ïËØ-;>ÿ‹AD$á:)æ«ë·0‚½·2.šSÊ–iD˜ûO:Ún'*±Ô ›³ï.Q”°ÒP¹Ó­R–\޲S¥ªªBS>y"ËQ´Ó£> ™óº8Sð0Bw©¡œ¶ûrˆs´€ƒb?ùm;²®£úîóá4£1# ”´)ã®Ä’ðP›—ع8eë|ÃìW¯àK…poƒhG†“š€+œ) ª²«¡ çŠÉ£C[À¾z­ˆÁ¬D)Þ7‚YC<Ÿùž!xáºSÌ%C¼;zwÆz’D8"sÑ ’…Æ{¿DËv=J A‰š cO8Lg%ʪ>co¸â“8™#¶CQŽ¢Â,#€ìXH€È2€ˆ#ÄnªJ:Ôq¯[A²€»0cû“Ât¹é%Çr[´ÛV©ì:ÌG4¡M8£#Jò=üv½–7¨°RÉ”™ˆ«Üèf8y-²k?¼6µº©JÖÊ$’.:¥äiÄòT=+Õ¾û¥G@+Ó©ÊO¿Ä!°‡¸ïPNEtšK˜àY‡4Xhh3zò¼ü¥Ä{±%³v¹ûÊû¯Å4sžiy”™¨‘ ï€Có–ÑOi¥G£JÄY|£³8rÒšzÝL{·=S!«¬„i·,¨Dš¨£úOL„Ë™é‹+¤ÆÁ ”ǃµŸrM ˆw‡ }>£ÄÇü±ÍÄÜÍÒ$#º µ„NGÊ­&£¿(ä¤&Ò—jç¨AU£Œz0Âñ”„‹Ljˆ¡¨ç‘"À”L±W¾ò ¿ã³¢Ð–½t;ŒQÉŒÝÏd±P_+ÜÉÄNÙ˜±W­ ‘|‘Nñø™«ë)ºÚ7‚J™ O#¬»>[&/A¡|Ò?7|¿KìÇ5Ñü¬(¿ÅPñãÙÏm¤HL€oƒ`G‰‰9Ãûq™{…Áä|yب;Ée@1gM ¦ÌŽÍdE8í:ÄF\Ï0ë ÉúöˆÛ-ˆ›GsË!;ÌÊQ¡¸ò2;¡çR“\t+5q./ŒÙ¬ÛPõ/Ó0– <ß»ÀàO,»dÿѬÁ@ƒ¡lú¸ër%L’@³'3üï¶ìu íššVN,º@±´ÿÈR¢µûÈ©YÜ–CÀi ÓIÂZG,@D€1éÈÚPl8Ê”ºAü¸?äeˆ²¹ÃK5M>ã»N¶ò«>º#o-ˆ%kÓšEHÊõ Ô¥`žðN…˜pHF†€Ka8ûˆÊ³‰NiÝ8Üê8å!Ò…D4 «:›IJZ®Ê|h7'úô;20kÖ½&Vüª ”ç&ÔC„7# F|ÆÍH•d é|Íj©Ôv$æ½A ô~í.‚,ÛÖ…Øe†Œe2³ ÕÃDB4d` á’?DÌa/yAKð§¬oÒ³ñÔ=]‹yaWý=ÔàÛΩȨ¸žC°€ÌôÔ•‡Yã}Ï}KƒðeZ¹Ê‹&D»¨Uun°Â¾²tþZJöN‰!ÑsZ9{Tû«·Pˆ;ø ‹.—äU„ÜõÙí±›HPnˆI €}M£Â¥µÃÁLJÔŸpÑ×ËWDÁÚ-êì(™U«U‹“¶-#>W¬{tèCM(8­Ã9ÙãPw7kR»Ï׌R×<:}¬´µS œÉ*$u³ËD³ÿŸÜÖÄÁUŒØM=Òè#õ²]•ÙÝ †€ˆ#…²ßÍKˆ11«pµÀÆÒêµCHFj¼:stÙ2ZD1q¾â\Ìí¹»$¦E qܸšÏÃ{Š­…"¡9![XiÝ­ó¯Ì÷‡ ,ý¡TÑ塲¤Þ)ú”%fU©ÕWdaߺ¬E{V~Ó;R­þRm)ó/M_5ô`q7†úÌø6u‡€}XýHå[ÜMlZ“Ó6q+´·Ñem3úNÆa„)Ý<;1-WÀrWÔb¾j£0¥g.ÂÖ”âXN=æ.ã£ä/Ó¢¢^ §®b'j š¼êµ‰F¾NKÚÙYšÖ/M>°-‚-Øà~/ã`€$­"`ú¢®B­©É|dQÓõÒ¼áaTÙMµyŽÔR’X’â4Iæ8Ý]»µ‘%ÄçN âÛ ¾ÔkØ_P‚0är˜ßUö_t­^8׬SÓBÙ#¡Ú=xOàÛVb3ÏuBâ…^3»«ŒQZSu´lÖ®1L©*’€|‡Ð~¹6änGåàö†Ðq "ƒ˜a˜x|?˜2ɘÞþ(ì+ÌCÌboX í0T8L\*â´“¢Ñ‘ p.¥Ãš[åHý£Bõ(×îÄõ6MBÔëAc=,ǼOÙ üK‘"WŠ ¨þá†l»5)ÀÓºðÐD¼Ó²U* èwœÙæ-âî^膈È HZ@Ä2D¤¹Ã4MÜÅàYd ×+¥–åEçDaíÏgؤÄËvõAe}ø8{VÉRkz‡ëØ`idf‰iò$äˆ?†S¡TÿU´ü¨ÍCÝržfÁþåiùÃÎTKËš43¾>&5uˆ¦JKÒAwˆ.ÅT¯Ö]éþµŒxi†ðx‚h;(u‚hàÓä<Ìã5üÔ.ÕÝßSÎØÑá]î’Oâ¦R-?Îv™¾.bö¶mÆÜ¼fŠž›M;R6\Æ™ÉNÏó\åq­\Fsá]mçv³)nã0™þ€• €Xh…!íÖïH„d€D%Ò\¬ñË9âæêìI/< Ôý×4LYV˜Ý€UvQY8ÆÖRªz%$Jí>hðØÎƒí¸Tü?*ÃN´ï ‰(lò˜aIô¿˜£õ“´#²gÔêZßñÁî ¸µ´}RµìÍX*>ÕÊ}éÛ£mR£°*C©áÂÚu—ÇÔPfÜϲ¡()Î<ðQ„ª Eפq¥É:LîÛ†”•w¼îxEKÝÊÕA$/ˆQÞÚ‚(ð§2ó2þmàÆ?&¦cFP—8döR¸÷&± Ýö÷ÆÌÍDc”dÓþ‘ÕÕXŠ9͇øTxP'3ôa‚ßP,„d€„jd)¹ @ìÃN#âp²´ ä…ì÷oG"é~ªÆÎSX¶Kgãìò»a#lç;j4[„ìÁ5ÓààH†W to_ˆÎ·ˆ&Àa‡`x‡Ð€0Ä]å¿ëEãÂ)·Cq²Òßýh_®ÉWkßš’[[y¦ôÑ©ÌÆÆ,cFNßÕ‘¥ïå¢SMûÛÈÆ\3^™%¤Ü…jŽÐʲ,jÚ+ר’KÖØ¶ Qm -‚'2vƒøBc%mìÄašŽFeòÔm÷¶WBYÝ)×Éô{K¶x¿7ÍV—­&Êëme;š¤éØ tY¾íExO˜“xU…øq‚¿HÄèÑŽ¤\Ú«ó¿wìi|‡cd¦²Þ±Ÿ¾0«Œâ4Æ]½wK¢ò‹µ#£_R›uÎaY¬8€xd„Æïy—°ˆw ƒh_Úð¹Ê‰j|Ám’JHòëìµ _­{¢'ìÏÌ•Š£akw%%ç$á-aA©«u²â¬ÊãÜžuM8ë&¸µüFAÅXjHv£{¨Ã[vS9'rèƒòø=Ç‚x7±}GÔ……—×ȸ‡•¶ôieô%'h'‘btñäw¡žuap[ûmúÂ6ÏMë<Ü®}âi>[Tví…"ýWê@UørÈ@†@€dá/"¯ãd×öŽÿ@ûE Kû¦ç’çM2U#­¥ÑhÍ6 ÁœhÿWK¸€ýÿ‚A@ð 2†Ä °xáöþì¤ÉHdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgSRê’¥]8`ð#8PlÂŒ% ¡V_œbÁdh þ¼‹Ëžò»“ ì°‹Ó>Ê:âŽÍ¾‹«B¸®Q¤*ÌuÅ1»@÷¼.Ûì‰9ª®¤"§Ùú„q’L°¬¥)Ê’¬­+Ëyî|Ÿ¢Ùc–Ê À2æ÷=‘ pµDŽ«£<ók‘4°Qû÷;3®BŒÊÎrBÈý9O¬‘ Ð+œM=¤sê岃òèF Õ ÑÇ‘ÌBÉE´Ø“ErCÊÒMót?ÑìÄw:"t•6§Î “<Ï=kÙHÓ »º¨Šø¡J1ÞyŸeôÕˆ³cÙM•eÙ–mgÚ ¸$%–1œ[0õꪴSÕ î¾½,ƒòÀÒ.: Á®·<ÕJÒÕ"¤Ü‘|ÏQ@>üT1ÓÛxÕ\ä¥Ýû°ÎGáü Y£Ú8n‡âŒ²U˜Éc‚ dÍu]ÕT}yÕVüê²Û‘BŸdµ¢ß"Õ´½¾Ú×4ëS³Œ•á#:w ¥R,ùKå4dXöpÕ“ù< ê$ë È´–IòŽ%©êš®­†Ÿ§ñÿ/噌r 0ù±ÚßSÕ²,×o/“!™SÓæáv¿FËq¹yÝSrÓT•»!Ü·D÷]¼ÏeÀëWYìïÄ»‹Z•nå/ÖýÉÖ+vË{Ìîõ·;Þù_iw纙nãKDûjGÏ´ÝÕÖTLBw4åô‹V.¯Ý÷ï}ßø„ ‰ezõ¹rÏ6}Á«¯üìù™ÎܲPhEnÁ½ºZªæÈÊý\p\<©º“Êî Å@ò²{ÿµ¶ewCÙf5Ò}¢á h“Â?„ÿà€HMŠ1aŒÆS3v|èÌ.³hë ‹JcìÕ€¹–L¶_k®FΩ³GVì“£ÈZäL|¡ü Á Nè2ÂØ] àÝ£ÐÑfÀX`;xÀ܃†Mª†">¶•Γ…ˆi±‘:gÔãÞB4Rj9Ò)…jJÕ`d‘é”çNå×/O(-¶tÚ]#‚Šâ(+4@ TQ^sQTµ+uÞZ_*ŠhÇùx8ȺL•T¬ØÆx~«;Ö}̵Ú¡DAѬXÐÂJIY-%äÄ™YÀL&9hŽWÚ´/aD"¼Ö£R”³Ñ ð qi—[L‹ìÅWù´ÀL†¶î¦_·¤é+˜ŠD|Âb3=çÍ’¹W.¯‰qb6Ø— .„(Fòæ•Ûd\‡õÏ+Yå‘G¨°^":ˆ¯ êþ¦ÂÀÚß)NúòmF9ûK[Çn™aj*†ûëCÎóöQJI·IZEl¤J|(*Œ¯_γjËÅFÑNíÁè.Ñ|wI$ˆD73b\M‰ñA3a6±¶µ+9U58N6•B$zŒÏ½±­²È”ãKwxq¼ßŽ—zXÛKÝÇý‰±s$✓î]”²Ó>hÆ ãlò≋û &ü`ÔZÖlˆº)Ðü¿l"[„¸"¹ÞVG:g\EeÊ3+ß8¸¯zê)pOa’%ŸöPÐZ ß!,3Dx¬P¢3RJÜ«Câ(òƒG¯ÈÌòž¼|µ¯Žøž(G‚eõ>lÑ“®sþÙkŸ^²•æàÚK74¥¥XØÎ´K]ÚF“¨IòÅ7YÑ–¨4Ž WK¸Î¥#kŽme—Û*`©ïÇd _‘DÛ¹Äznmݽ·à µùæëUu¯¤§SŽ¿5dKý©«²x›Wÿ8Í™°ßO<ØÈÒâˆÕ)o¾ç#—‰Àø–µÈS¶, ;“wâPU ÄDÅc6iX³íªm“Öˆ÷£ÓIfyôOIй °½­Ä‹Ø›‹âÍm~¯eÂMZ=.Ðý¬¶~Nrp®Ö|§BàД-"ðN ÕC¹ OÆÓE¸Ò‡’mïü:Ó©|h€×P8½ ˜aúa8 P¿ñ06¦(.0€"ÀsŽG jʸ+ÖzHØÓ‘Hù †®¬ÀËÏÑ‘H¼îˆnÂÖË:¿«Jª#¾ÙœqŒŒ3oíO ‰ˆàìË\n+Š„à?-q31¤#á"Á® (€§‡d2H‚Ñåf·Šò–(-tŒ‡ê?ꔕ§£ÐXFLî‰júÙM¦K‹ÝzªitèL‡PÕìiAüHÈH-ÿ,ò„ ®¿h´~F„à-†”ijéí²`ErA$2D¬( ÁX,+²µ‘,‰*^ìE §^¨ÇÌ纷ä÷¤à[îÂΤŽå«V-LGE`=œòªPñ ·ð̰÷Šã ¢>`¡ü¨1+$rµ+bI`²‘r,„j[ëºPŽ@›1nÂŒ""’í2ÐÍHªö 8¿c¯2ÍCÎÖÅ⸅")1Hí¸ÁÚÀ> AXÀÈy Œ¤*Û4”@öH~oÒRUô-Q*ÒÍã¾i*1>­ó ÓÓ3‡Ze®lãÑ’3".2y1}=sèOx9S̵æR40ØÍã#'’{T.°gÃ/4]åPUÑ’ÒÏ”¦ï tCL!B| @…:‘TuIT¤&€ UP¨žýpü„/îñÊZÙ$JtÐY=/þ_.òÁ®ì91ÓÏö3§ˆ´Oü?/G7>9NcÖÆƒ'@í½3Nïú.…$éQ}«ÅÂ2Î>( Râñp1þóò¯Ÿhœ‡Bûè‡Ñú ºÚMV{—]×ödÂW¢Õ`²ÜVCˆ²w«¬ß#qÛÙ+ñæ#ÎÛZRg+®X£E¾Ý™í1AA24£œoÖ‘”µM,Aq¶zt²Û)Áö`øîß½ŸåùþŸ®L†ÈÒF˜`¨&šËDkHd¬ª »Jò0U„Õ¡·c|Ïš:#‰Ktˆ§Ó-AÅ›·eÜ3jèaÍ2€@ùtÇh q$üdäÙ›Sn-Áâ>@‘ÂèfŽ@€!Q7äpëLõäS£rL[‰x˜3˜1 ‰îµ©èù§ô«4 áãÐâË7.Èž„@HåœÒVf/Eøp¹Ô›?ô “Q"ÄÊY2¨™QJ„©÷F 0Lƒá3„´bÌܦTΚSZmMÌ4còÖAÎÊ/ %äst'VÒ™ÙPZÚ„(‘à•˜”fIŠŠ€s½¼ˆYcÁu((]SÔ:4ß<¯dGá0AÆ…*ÇÉiE°g‰ŸN+…q®JîOJpsc‰»i3Ö“Q&g1ÑÜqªÓ@¦³c œÜ;R0%bG¸HÏ©Ü|ëÄÔ»÷³V£ë/Ž¡J#¿EY³â”íœÍ!û5&³­®v®ÖZÓÐ:æø b ‰ÒMÚó¡LÆ‚Ué¤<kI½P÷=ÞÄýV3²i”%U3VL» ï½Ïs'Ì-Cut„¨ž&í¥»(¶ÞÓ¸ñ¦}µ¸<¢$,­q Þú\ŠN"¢fÔº˜ZëýðÀIä !ME¢l¨ŒÊ’Ë£>W¼ÃžÐÕ½µd7Tciù¯íÝç7Á.& ðT­ ³e¯^«Ì*pfÁKâ Zð V5»ã\mËÄžîØ`£¥RT/©Êx)&žnšÒ_{ò^MÂ0yà j@)qDVi¥t}v† ²ØŸP(6;„ù¶ÑÔ‹qɹž¸[#‡éKbˆ£:7=èj›YRm-¸¨>¡Äü3Ka)•,ûT¹OQbêr]N%EÉ$“ôË­¯à$äýϺw^ìÀ¶¥8œ/uñ¢oAt©²ŸLŸ0ÑuëÒ¶VQ •‡ùÆCrN)¾œ2 ƒÞÓ`´êÖx˜ ßÒzVß¾D>ûÇò–bÕK‹™Eëã¯Weý["j¬¾ÔkFðs.ý¬y§p]W.]?V57ì‚Óð"1Ä$ôßOê+±ˆ5G@EâØ£ívïRÉËT$®Ãü‘ Ù÷ܱýFìÿ„ëÄÍÚQóö% ƒ„nÆÉñÐ'(u§ö)Ÿ/Ä3ffæªNF \Tp ÄÏ&t-&ÂMB¼Øéþýθžî Òˆ‚íÁòè*^îO«pI°L/ * nôãeLo‰É&’Ü('Ž‚¢Éf]¤t±©|Èk¬8 l2–¤À˜ á«:¤% à `\ˆ k HÚbbº¨<’Ld¡ ôPO p¸NPł߭ Ò¥œýìZñ4Ð/6ç0ؼ®6Ñ*2æÂÌ·©Ž´¥”Ôå¯|¸ÄtÂù‡ÚO úP»ñ2!^`ö!”@“9 ¶ös”¢d5ˆT¹ÐÃ’öÌsloL‰ïd¾¨Ë JiðKNij0øŠQ÷4#Y¬ƒ&M¬©ò·òÏ 1ÐKS­.®fo§‚—ŠŽId-Xý¢<s1óåGtyG¥v ªI„ðíDðç «ÎФ–¬Óœp.›A³V£M;PÝ«,:e_7Aš¹°çf‰žApÂð_›Å.’ýWtëùB¾ØÛç£yÅe’I•’í~” ª™Ik©G¤C Ó¢9º+±h~ÁB° €. ä$öóI ð:°€Ð¸™fLò4G–“u¨†Ÿ+Õ?«Ýš[.wåJÆxÑQ”»LJóÇA ŽFªCÖJ)*0„ `±[†ïm›z‚ºn›@tºžÈ”·¦ªà²ù¶¼À, °ìÍ_Ó™J2×»ºÿ]…OêĨ$ÈRû-¨af-3ÎÕÚk-9j-¸q–õÂL+m­ÊqX¢Áœ™ÛÀ\\m;™æ˜·øG”Îq€z£¼8lñYNÐñÞ¸·U…ÍmYI9âõ¡+Òe‘–q¶ ©Åü¨nAÌÁê !¡ª!ܶ¯¿xª…+É:Í%uõ¸“Á¦çÈS[§ I$ZUÆÙY:zk;éÕÌh½å±Nhn9ï`öª6†š¬œÊKˆéçŸx{<ÝÝËÕ¡à¡ðã«~ü«Ó½<›z¼Ö‡„YÁg lE¾2ÿ’ì.u…Ÿ–øDu 0׃ c¡Ün.Óru\V ý?Ø%mÆ9ç±Å…Œ™~¹E–ÙªP»<Ðs¿O35xÛC0ʔۗ†L¹yz€Ü*0ö¤½«Ãµ¥_¶Œ¼§Ø]Ø`A&a£>áŽ÷Œúz‚Xwƒo]Z×LøÛéy…¨U—,=ü¾$U4 Èц³:uxNÎÂ×÷¯1 ijˆâT’@.ËHò•¨ˆˆÚÑá;g?ZXÔìéU÷·€«©­»Ï ür%sÓ;ûÓÛæ~hv@, !:êþ5¾G¿&O™pŸ•z†(}µk£ì…“O^wO#$뀑ïZ+·}”H9Oj!½z¡œ}æ¾ÀMýˆauÆ­I:7Sueü‘JTf)øUh|¯&àW, {šþ¹ðåwŠJüý·2OâjØ0ܘûÝžÃñ¤òtáþàÎAâÁóTYcg{SUB1‘B:Ûpd»¯mºˆ6ÉîçÖ½zo“>£»ÐŸ Ê1cc¯È±ö™ƒNÉ*q½)QJŽD2á{KIO°'æ¥~’#õ? àÞcñß©ú¥þÀ±ç>ó¬œq‚{ѸQyÈ:ƒ~>¤0)R¼ñåÃUí_̽ÚãÈÖ³0- âþ¹ëß­ÿ#Åì~Ê À8ÿ€!p .„A XtF ˆÂ#lb9ŽÄãà¤R=‡IdòHìŠ3ŽJ¥’i,bA—Âe³iŒÖO9‡ÆäPH4îQ-JãÔ9\^-8¦N©óÙ¼qîû~ŠÃÁ20­H¯WìŽÉe³Yí›U®Ùm·[î•Îéu»]ïø:‰|Ö1#×a`ˆ&†ÿ…ÑçIB¡†„á¢ñx4¦Yˆ‰dgé”ç5ˆH)Y(,«?Ÿe¦ÙÕJ)Žˆcq’º>i‡¥Rgö u_­¢e*9 ´ÃqSba|yï&OÃêaûLÞ®ƒÍÅåé‘\õ{'ÉÑË"pØÖ¾C×—HµÛ-Ϧix=_ ²?ÞŸ×ïùýÿ?ð@p$ @ðD´‚âÉ:Þ1*šj5l£ŽŸ'nÒ¤ ¼î‹”¤9îì ï1Läc_¸Ñ"Ó2¬5¢¯´Å\GTlûJ"Ö;·bG1,e_B ¬ó,n%‘ Ò ŒåG,w-ç£â8 È|ûÔ·åû_ø`x& ´ÂÉ6èÍñ|'D)Î,ë;É£†ôDõëvï´V­Žaxê\Ì\v&7uC)øÒbU¾M>Gvìa†6Žf'1¶¶ŒëpÛé÷#°grn £húF“¥IòÁ·-— Š 4îFCŠÚÝqgpûºìêôS2é]6]~ölTÍFвHã4HÁ‰Q8gã`°|FBÖÕܾmŒ¾]œè ÑäHbN©Ê¡( Ä3"vr(â„~°KÓq†²bă:Ë$?wíô~€&1DTTœ”V‹Qv’=Ò(R¢Èd¡Î€ \êŽ:–‰0[£3XM‹6 œV[%—ï ñ¤$†·zfxÒºbÓe@¦ÃÂ’ÈÉ›OèÚþÔ¡!Î;9*ÊѕƚE”…è|CxI_2†ŒUúÁXkc`2¨ML «j[,j…OfÐæ£Ÿ)î¨UŸ/gúž02#·[<œº2ôÆJ”DG!kÈQ›H#“6‡è àkUÏ[a¦×™çPZÓŽè!»“åÐÌó3¯õ”ÊÖKB\–öÉ®ËM3¨°ç!”‹‘dÀµ–ÊOo÷ –Ð[Ù`BM‡5¹êf¦Ù[n‹y0ó¬;y.¨ê\M¶²QTN±¿ìG90liÎ[— ®œ{¹”/%ùv"ì vóà¢9ÿ€s~qEðÒ\ZÑüŸc}/Ù˜µ¹¹ªrÖ+†¾$³È·j‚™$ )£K¤ ˆ }.@€êˆ„JÌÂôID™¸àR†K…¸hP€#c¾bÖ°s‹¿â¤º50{Z9jDšó [⪻6D(ß“rµ@D”D ºìY6<¹I;´&=c¸);˜ùÌ‹AÚœû«¤4*2KɦYݪËÁ[¼‘å–ª¶H–3Z !é–‰äw¬,S>ãc±hƪ¯ÆK©F{–Ü£<¯1£RLœ QŸòÊ2pGôÇMëÛÃl‚ØGÈ«-*©¹ƒz!<¼1Ô¯£ <ÚÓ'SÕ-š{²ä>$g$Hè  µåNäÔ YÊÒùIô‘GàÔ´*(J†Íô÷J@pPx‚ÀFˆk‡(wDò’$°+ÀröŽœäª‚?Ã…Ìã³s#DD([ ’›:z3±À#"Fq:ñç3”þ!óLµ!Âb~$¢õÎt“Ð$ÒÍ ¢Ï „xz¤è6LDÅO}Q­Èªš´±­Îq”/ûz°Š™Jñ· ÇËÚ÷Èä<9‚º%É”²™¾BÖÅdpž$ÿPJ}“iâ«ä˜Ç)œ²bʆdÝѽ26|àHœŠ¸;ê êá8½,¡AŠ󰚣—Ü¿Eê˜Ëî¿ê±U=·7B_¬—ÊÄ‹ÎÔZ¦«ï KÐä €õH(ˆCÏm2ÔÌ.hYPAHbDðÎi®#еÓc…Rϸúº/•U, ZQE‰”€«Àá›î!C˽¡B3J©ž-+MŠ?B,¾F,ÿ©EVT¼™"ð‰p÷‡ÀOƒ`&ÄÄÔÕmVÝn  ‚ý'Â8& žGŒ*TŠv»r8±Zµ„Q2£SÃéÅq6ÌT$Σák¢3’És¡Jù1Ä&zÁ© Ý”°~}Ó/Öí‡,ìàèHšìªBÉÛȳËÓ“€CÛŸè K[<ÍGrZ$9¤®ËJ» Å Ô/#V¯PÌó®§ÝG©Û‡*2'Ì ¨ˆÞ‡É"ÄmKí‡ÚKÛ4„¸z(п»ƒ»&)ͪzWÑ °3`NÚ‚Í7aŒ7“ŒXóX”{S›&»ÔcÕ¤&s£dëÜãLÑsÇdάZ¥8×À›µ•qÀùËAß#ìÆc$„?Uk¼|ð6‚`,àÚUÌ\Ì÷€À/„¤ÎÌU$:ØMb•í‚Ú¬ÂD?£¹Ý3”ÉÝÐF-a-´P­Ô«3 ¬±ô 5\E ± &èGXmÍ^qÓ=‰½ó —>¹rP“U̽;+^¹d×CÍÄZìqVmFV†]MFYô¶Ðeª :®;ó€ëô„=¤^%ö4äð$„Tˆo‡@©G™¸É[M~ ÔuÄ×+´àÜ#ñº§Š]Á-J\R=Z°CÒ­Vµñå¯Yâ;K8—E` <­Þõ+‘™Ë­ Í<Í3ð¸p‡Quj`&Ü­Ëßna¬.\àI¤³Úå°¬î¹ _áV5:zœ¨= ?'ù:""!R…#È<ïIíҌȅY ›ØÂG |“]”£}VÔˆ˜¬’Ê&èFƒcJ+`c†È.xY2ÈÏ2&7´ày4Us[`º€GµqÍYCÑõ:;V\ Û°ËSíØOúž>ü[µc£Þâ!ËÄ·`¡: 1 Õó?@b„4ÞcVP.€`¨p‚0@…0 h>¥âR«š¥u[/Ën] cººR2C»çL%TÒ!_I?N{qŸ6;Ê»j–Íwer•É+üÌ 7 ¶Ü;6»›0Hî=£„ƒeu>ÝÒï }¶RÒ\(ŒapOƒ^ܶPçnw7ø »Å e Å"ÎŽ'PÖ2- Y”ËK›¥¯L¬}b«|ÉÀRu¼í8]<¸Ø^3ç~о6À.†8²Ñd†HåÀº&’%©.!Å&^¼êÅÕ°êLµ·GjXK{§¨ '¸µ~8îd¸äʇû>_@bdöŠê Œ@m()„XVD³û#¾»¶ÆJžâÛáFm“,{žzIШàÞd)¡æV*SY%Ú@-WÉ镤ž°u˜  –dIuMV¯èt¯­–\à]ñ:d낺ãùH×”`±àQrNçP,gf¡l>Ä,è Ù9þ¥Þ\ž<ÍTµ:¦˜L[47 —¥Ö-¦il{˜Š@úÛä5n/­{3ßé‘´Ç4èDQKèˆ`FcFÄíé‚hc†À-èÐ 8;Sžñfî–ÂBGý y[“Í µû8µ|[:Kn›J'­UP‡b½/óNê‚fF—ŽüT¦† Z ~H®NäþßoªQƒpNÀM…èg²Èš€ÙyoÿNöKqy_Ú9*÷Ë¥ÅÕ†L ŸITSŸ#½ÒT-ÝI±Uº·n¢€Œ†GÚ1J»ˆ†ÓrW°§uW‘UŸo\³¼õýèe^νL00ßx{Ö¨'‚Àážûr/#%&Å„Õjña@cϲ·eggéC®*­=(àü4ídÖub3Fƒ`ôCphŒ2` mÈF#óYPX’ðð]¦³EÆ—@ÄQ¥´ò­¥aq$>, GÚíÜr¢Ag*Ç^¬q‹¯¼6 "\:k°µt~ôpÄ?0à iýásgPàB…hbPX,OhÎ3¾¾ÇB «²P¼ÊðOVó%¸iŠÉBv›t›î–TÍKC`eÖ(kD€1sèPy^ëÔ>[´n¹åRIÔK¦:¯ÊÙáìS~ÀÑ~t‚w!r'P÷/s@ ƒ%q& [$4IÜ9YpÃj`Ûª´~uÝ:Æ”¹ÿ¡ë;\R°„ðu÷*­et÷ªÓt_”M‚²r` íÙˆ´‰räå…ˆe„_5w?@X†Pm¸Gsß$´ÁÑ2B í›ßk‡Y ”˜ŽD8õ”b´E•u*nÓøM.Þ\ï_xùí€ÕCøi±_Ö÷lŒ´Ç>Iô:mÄŽª(x€°b/Oøÿ®XpJÜ‚‘ŽËþ\W¥±žqt}*©m¿J¾I*&÷@´¬éÎa³Ò†a-óLÍÂÙí±´øšç¬Qé|[ö§U¯,Î 6?¦d\ÇW…‘Ð¥hZü:é)H‡x{$è4÷g®ýÑþÅ„„æ'’p£PÝqÚîU«Ò¶±A;°'‰ª>€Ëýº8ÉËå‡È:œû§»;ZzFë*P~¸ €˜x<§Åí•™:Jü g/ê™’»¤¯éMf¼cáhçÖ|þá~€µÆ%í–wïü'PX²Àž|àÏ苇ò \xnƒ˜P…ØDö‚ˆ?à@üƒÁ oø\…Â`ñ8|# ‰Fãq(ä ‘È`rI,"5"‹Áä’¸,Ž+ —Êe’ü‚ %G!r©”Æ1 œÆ"ÑI¼žYŸI§ø[áôü‡B¬D!‚M[®WkÕû†Åc²YlÖ{E¦Õk¶[mÖû…Æåsº]@×󸆀Qµ\Ž (  ¦N!™üŠi>ÂÄ"pjeYHÂÁ(Ùì¿-J‘ä'8º>rJžÐbÑŒÔî‡O¤Ïò¸I~R+•N)z½&³i–Æsz­üs+$×HwRmOq]ÖjwÙ)Þ.Ìðz½ÓÆ¢y`v-»w{Ýÿ‡Åãòy|ÞG§Õëö{}Á“C•šmiÛž Ï—¡~1ÈÛ޳-«ìݦ òϤèƒ"›¡ sN‰© Z€±(J ŠÁ,Œ¨o¢zË2Œê\£¥kxü³3BÓ¥çÙú~Ä/Ô&¤·¯Ûn£Fèì4Ǧsd·¸ìó‚æGmÓŽ³I*$É’zË"BÌSzž?ñsž²9ÐsĸВtáÉmc â)-g7Ž“V›(Hô0?RrQ¹Í{®I,<í,Nétß'@€”#„Ñ¥©*˜šH‰‹BÓįÎÊ$»JÊT L6Œ$Ê™´o´HÄñ¬êÍ?’µǺM ÒôÓUÕ±âŸÖ•‚d|ŸgàR*êËÝbØÖ=‘dÙV]™f¬æ!®qä)H@=UGѳ#9·ôÜå¿ Üë&­ì·/È0«-È)Š)RÓPDvú"€—%ÏTãÕ£ñ4GF WÂX!x$ËA3çNH1Üê”Ãx¦(†ÁM–åÙ~a˜æYžišæÙºÎ€€€LH÷øA¡ûþ ˆBáÑ : ŠÁã0xt* „Ca`ô2 ‹F¢‘8D*&‹Éä1©dª’Cáñˆ”â9>šÎ¡1i<¦.™ÅåSI¤òuŽF¤´9ÄòE9™ÐétHŒŠŸ¤R!“ê̾GQŠNäpi½.gX´KkQû5ÖX£\¥óš ’[fV:Šu@šEeÕj †‡¡Yêö«ujÏ„HlX‰ŒBoƒ‰er7©NÙL®Ó%“,n71R«M²zɬ{ «âäÖ\z7p–Uu[Ûtc'¹Éoœ*¦Jv‘ѯ›,”v‡·¶u®ömÕÎõ£ðe7ö¨ÿÑ©ùýZ>Go¡„¸w<<.Å\ÃLu~,-æöÃ=(Áò}ŸH: ˜„ÂõÁlÂŒ% ¬- ÃÌ5 Ãì=Ä 8]šFð’B”`¸ 3ë‹l¨ºk‹Rµ»/ÚêÐ)NÒèò¨ŽË 9é|löÇj|€ô«jêŠîGÑ‹¡Fñ’VÐÉ-–ç·Î‹v½¬ 󂵩î4¨Ì¥±kv©´#d’"¯¢Òš±¨óržË,ÎÀ,s辇éþÅ@L¯s(Ò+kêU$0«C7*уOF²n¢[$GŽÝ*ÍF'952t½2Trtt°§ô»þÁFOŒ·,Ê)B\ÀÈT‹¶ßÍ³Äæ¿µsÄÀ¡±z¡2ÔZûY®¯-:Р®›¤ìÍ“‚íXtK”´ þ*ˆ!,¯Í"~ŸÇýÀH]—mÝwÞä„)Ù•DŸ*XlëNºW¨•®ù&Ô5¥C7N.ªeeG,õÌÉ^Jm]€Èa¹qPï ‘ZËS´ÛÖ×$)ÄŽËdø«…¼ÏðßS,ôïŒä˼³O½´sJú¶5¤½•Kð„žÕU<¶Øúóe #]±5.S‘© *W4Ìwæ1f“c2$¬~z…É‚¥+JPþzþ\)›Q“ ¶ö8¬V·¯Ò^}¿kÉBåL6‹å†»Ø^¼÷Ô|©fëµy&>m[7ª]ÁQhš-’_¯G&Ë¿ÐûHÅyõo]×öeÙö¯lnp¸I•ÆÙÎvà ï˼}W´YBË/MžŸFΖtÇje§ŒQø½ °k-EœÖIïwE=:V€ñïRæ ±s¹¨ïѬë[¥3b^}2Çñ¡_t,ŠéÙÒYk¸#2>Sê}m%Üß–ÒŽÙM Æz¹ª”Ð\“™YoN û@â¤Äšj²)Láï…W‹sÍE®^ 0#¯Ïd1Œ…0(¦&z”,R: ¿Ö¾Qf­Õ;ÖŒÕáê3}Ì弯Ê}`œ¥âøCð08Ø-"`)† € ´iQ®6!•ê#˜Š_Mçhˬ•š÷VTM„HÝ+—ˆ\×^ºþ`êº (èt~ÓiGÒ'³b~šV¬Lhi–0§¬Ó"2¥TëÇÌz¤üޱ©¾=ƒÔÙ˜âHŒqó'¨äVâ„+°Ùõ8§:òºª“ B)'¢¤ä”>~Œï7(°è¢ñˆM­¢·y.R2ÉH0 ȯ†! ÜA¬>ÍÙ“ Ì´±2(ôÄb¸‘ìÀfðäDIJÃ%”ÍœóMŶ3ÌÇU"MH "O¡N¯È8øƒð°*0Ä«´.†PÚCè…¢HP8 n%ÅÐÊ€83˜õ`Ätœlz|*K •D(“Ôœ¯µäÄ©Uq®—nr£É8ÿÔ¹‹“¬ék¶ tä RLbP}M“†Â^d³cò>¼V@¢àƒG.:1x^Ì’aŒjGÍ»ÀffŸ,ïj0•¼—Yb$àVÊ$ÊÖsÎØÞ#q®3Ú±š˜òÔæ3qÐXûÙ6[æ»qÓ}X£fñ(‹Â²ŸV²å£1 ÁMgJ½ÌÈIjÀª´8V¯ØŸè¨ @ý¨ ±Å@ÁX! cø‚ 4‚88  €ðºè¹·Ví¯Qeªì‰©jV\¯óo^¥uh”¨²!ËÙ%E¤é¶L"’×õR€µ¾ Ÿ‰Ù $JcŒøÉêè᪠{3©„ÀI¹,™”ÿ¹”Ä÷Á$~ÇdB‡ŸëN§^Ø2çɯ¸¨IO¼z¼òž)µ»räÊ”$Å& Â7½è(¦kW4©ÁÊà ™,¤µáoµ#Ëxm[¬,¸°1ÕúßæÖYgkÏ–­Öò\*¢ ÛŸOÊêÇ™váÞ>'İÞh@ A@è-aŽÞdÜ“ò†QÊTLVŒ‘ªDð´\ )Ýà®i¬—‰˜ÇšwœÈ•Åšgu¥§–¶f‘Íàb5N$O‘"eñ0¦™†E6öÍîN.«’fæ™å60Z1^MKk´ÿ¢L£_‰Ê]‰ÂÄ0Ûã…+þ’ Ö7‚œ¥Ò¯ùÌ×½í(ZJ…/®%ÅÈUY Ú›’fs²®£gl!áFt°ˆÜ¹Ãæà,¹kðK ìL_5&œÄ²Jeû%dtæq™ÒŸ2•V ΪÑy÷Ô8"ƒ`_XF_©Â6C‡°úK”åÒ> ÀØ àø‚¾Ah$Ê{ï~;2mí1ÚH©žËõ"¾ª¶µãi­7œŽ|ƲùJæW*ẫåC¸lÄbÊ»=j ÓrúGDéÚfÛplï`¦vgl‡ ¦--£ïN%af¦i9xf¯Rhÿ¡ÜNšN’´ñ ‡‚®bJÇgùÿ󷹇¥¼M­P“_­›Vñ…lï¾ægüù††Ï W¶x_zE‚Ûù†+´Æ…˜&Œæ~ÌԞŠä-ök瞬GéìÕŸ_7x—Å ñ¨"Êåy@h 7ï‘ò^OÊy_,Bv£Œw0 2òh¸£©'¼ì|¸î+¥Ï%Íã#c'½mi—‹ÂqDxÒ¯þh°×{_-;†]“Ö f{b¸°°îuÁ°Ó£%Ÿ©{öÇ¥¿ž÷ͺ©6â©áõ!îý‹ Æ·olÝaª%¥2ýn»Wc´5/qì¢Æ–ºß[ˆÝ=—_Z‰wïûô5ô–ŒLè.ŠèÄ1lŒ¥°­ï’øDìYD¡à¡ðÀ``à2 â š .àòðEcÎ Êà'¥m¦ŸÉXùÌ?ðV¯ÊòŽNF/í€>ð^Òiöä¦NÇ®zÜ,$ïpîì~°Lˆæ"Ò¼ŽrI%Lhî©ï˜Í8ä,†‡d^}KÆs¯zHÎá àÔîâÿ«Ìþ«‚ºè`€Ð€«ÌÄ£€çå(½IÒï 8:ËŽõÌⳈ*0LÌ,ŽK${gÄüã¾of?C± ‚F«ªEh„e„ûHˆ‰) d‹ ì †®€mí|½n€V¾ærí­?)èS…ÂhϰED᪖ÍÍZFTËî9$Ø‹OñÏ!‘y±}ñ€CMØààâÁòŠB2Ñg4ƒãŽ‘KÒ%m´Û+è%.ÖB¾“­¿ËÐÉœ|+˜‰"oºZ§F±ò¯æ`(ŽX«oÆ` MlÐ1\8Ízæm”ün®SLôYNè7IP„½‘Òl-È»ÎpÛ¯Îi/ðoÿMö)¶šðhú¨x9+¦í"„«Ð|‚nPâͦ‚ ïbÔF.’ƒ¦$.HjòýP€±¼ælîèm‚ÚËÀ1Ä’ Ôˆ.”iP¥`üÁîAöŠ`óà`–€¦àX[À%2¬Ê`4 ¡„nãðIR8•ƒü†ªËÏlžŒ}±0쀾 0qNT•í’ 휓’^hëòV®-/~ýÞŠÎ Ã˺‰ŽÙ-‚|’Ã0\çQ*ÆÂe lsLÚÙñ:»ìD•r&ø²ºÜÐÑ„tù2ÆSÓJÍ-²(åË0§QŽËÙhD6Ѐű.íª8ˆT-åŠû¨L/6‡1ìÖjì‰E .Üj’i$kMPQïNFêÓl pæµ1’h¤lHãò.|m®ÓK€åAî@€V€,ar¯=³Ý=óàòb&Á~€äAn€Ì¥ó¯"² M1Ù"Jæùjk“å,ÈÔ4D6ðD-ÊÒÍFœSw.ë5’Mˆy Dë2Q8,þH4Ñót”èeSÄôãïEbÿ˜ì o$®4‰zkŽÑéfÃRsFï®Â±èÌR¿“Ho AN¾ˆñ2ÒJë F¿‡Œì4[;°x4’Dб©4±E +)GaØaêà2ÀŒàJœà( >4Ü 2 Áǵ0‹¾äO®„å-JΕ M 0)gbæ)"Û6GtðÑ K#=3Í™òÂÔ’W8³¼Ç§2…¯£;îq2ô=Ԝ䇕RŒoÉÅS"Ù³ÏL±IÊh. Æ¥M’áÊ®íËúìs(aåp‚²ôðð¼MÓ°ÿ,æýã®q*XÓ^'¥PБWN(8gÙ"QÇ(-RòQDÆ&¯Dõ„Á,°r7.+D”šÔ-œJÑ ÉÌôgú\(ïQeˆqëIÅ “(›”7Í; üa¤†ìÞ!ˆ ËMö `¶ `èÒ¼ ~!6CÍV¥” ¬Ì–/HÀÊBëO7†F†¯8ÆJ¤UA-ÕRqJ™‘×5R Roî•Ϥé©*ÂöS Ï}1®6iæ@»,¡HÐ…3f oJ”q;[‹[%#«ðÃTt܈)'e–”å ®ªÙ“Î6.éÐÝHªªpLc‘½v/T‹úöC ? (8ªŠs]Æ-1¶Â‡0v}Ó/6Orãµò[$ú! xRœ ¢ V`.vqåßN!æFW u)¶[KO. ¬™FR³‡*Ò¶*°²üMNæ²vV;æœùVE3o@E‚Eé°úU÷9n¤àƒm/°‘« Bé$ð¿6™D¶sS•yU²~mÂbƒjUÇdC‘-Gi§sËzvL7¡'óNÅõë  üËÿ V@•e³‡væœ(£fÿB­¨‡ÚWÕRÔÔƒŽ†SU7HAS(/\- }Í”ÅqôíõÁÔ Û‘FNUãBey Æz5°TÓG¸¸I{IÍÌ_"Ap@Tñ¡†ÍrI„¸M„ä&!¸`˜ABŠKLº'Ùe‹ÔŽm©{w-XWF³Q7SX}k&á²?bª<ÐîŽúv2Ž%~(/0«{©³fÍɉ³˜b´]~LT…±fgó£Ô.×cYÃVP`_m*Xt†øöçŸjÕùCÆ’¦Xz—TO©@¦Q¢;±ã{Öt‚ùKxoüˆ¸ŒõQ¼OsŒk"KNuönðm^®³tCiT×*ö¤6øÐ¯‚ÿÕ â´o: L * Ø Z 1…`B·$œ3XJësPê?LqgrùlU´rµwH®s¤Yä6³|¾ Ç“6=XTn®žxËATY€Èez Ñgø5wÔR¼x®äW|ÙuhY96ÚB“&ùhöqÁdvX©x0ï ËDJÀ„ о‘×~‹ÂÅÅ€&,¦œeÕK˜ŸhiÖçÔ`ÀÑϹE7vc…wp“—PýŠ¿ž5nÿ¦NsMq‚¹Ù³·&¹Adêmy´°vaF:=ƒ—.–—|™†þ#ÕδötøA„Yc§:u§v&àîáp¡t V$à­˜nV÷k3i‹ÓA-¥Ò½—O,s#VРîpiq­—Òò“Mb7νt0餶Ŗä¹2E‚O QÍhÖÔSyÖAA&í{VØûõžRŠvªæwk²óŒ6ùŸØ‘ŒË'¡±”Ù)EvSU÷KJrgîå²eqª+—‰1CkuDȨO%5®lå@З $]©u“K WlöIÝ6¬ÕOSZµÇË6³÷\ü ÀfA: ÀªËºy¹"t Î'›‚ÑÇžì埶Õ.ÃÿlÙ+™—Ê5iÉšL(à‰`©Ï ¬Ž`qß·–ž€XãÓ‡ XûI3¹“txêcœÏ/դ˷€¥øæÃ“¤hŽ_9šT*˜KÝŒpô¹§ÖáOié¥uw§ý;Œ&Ð[ˆ9Žd‘ky¨B:eNöÚ×YÇi/õ©ƒÑ°WWcœŸ'­.ÑJšã…OÐýûKT|O‚î*Nñ:±jŸ{ŸŽC3Wiä¦2tvõNÛ–O-ㄠϹ\¡Ê<¥`ó¨$A¨ WZõl›S‘{'z·•WgU|†wFÓ9øêcL?—µPG¢ïz§,Ciü׉S‡OIÅfì|Š­y…yâ¸í´N,xã[£YÎáø%¢±»%7—Zç½mRÙ†§ýwµò™uÛ´ï=&W²ÕÇže9úõÅñŶÆ€& ëÑþãÐU›Ã,ô­[aYΡSÅÒ0‰ç´rq!—–™—üE3X3‡s S /bÌaðl`< àx`º gÊzt@ÐÉEùÕ: ´û&‰÷½}¤ü{€|I”;y²W|À¼³ÂÙ’þ¥-wÓpì©‘w4Ö÷ÌË­»ö¡ÔÉ)ÄÉÆýš8š£×õ?#ŽUAd!’nœ7[}í~' &êÖ‹Ù›T£]^I·Ù;©mŧ§ðÑÁ‰«Á}g²o‹µ¦s[ž3ÄS NÚÖ©” AŒÊî!¡UÍÙÍèüQ¦23"ê=U"Éj „ ÑÛ^­êþ°·`Þ!dA|%f³é˜Ê¬k G~6…ÿ,už‹ª³y#ŽœŽ‚º¼Å9>ÔY›±)]ÒsP’º®þPòÈ|rxS~?‹o¦ƒÑÑ].ª œºò¸eÕp¼…¡;Jý»žh}ìý›×}S¯/™—>ò–¿]ãÉí>ó4Õqéo—› Åéù¤³[Þ\ÁŠÓÖÑšj¹C÷¬€´)ÂfÔ®¤›TãÍÊaZÓr²`c¸Õ蘅nXrŽ&á& à Þ`ië8IÛ½F«Ã:xƒéd4ê¸tC%…4em~¿Ë3>õ"uϼÚß'ñBijÇP m#l*ÂÅ0DÂ’D ÆŠƒrʬKjJª)mÙ 8m”Þ@ â§#§ªBá(ÃR*ËA0üÉÇŒ[Nª$1ã;®K¬ÊFÓD¬Û1*L‡%S²œÇ® +V®E¥1ɸ£ÇTbÈâ+ ¸Å+ªôÅ §éüžçÉöIŒˆ¬…à8 <õ…cYVu¢¸ ZÌ«ZJ²¤ŒÖ?VÖÀ(”åß´’/ÈMê‰@[R}¢Ì˰eÈá¶-ລPµ–ÿÚwµ7ª¶IM2SIDÕYsÕq¶q ¦“&Öå#m¬­$%“OqõváF¶jÃx[7äUàÙÄW€çˆä6FÔt͉jæVØZé㶉ž$ÏdrîÂαJ…J}… Ø.æ9Õ®ã¹n{¦ë»nûÆó½oo(j>' ÚxÀ¤Ó;÷cOϲ·{J7ž‰X·õ-ªHÙ5'#Ú´b—‡g—GÂZì·j¦W$Ÿ–G,u€¬·ùœ 51=íHKm¡hÎ+E©×¾î#Æ´R¤àôØ6çÞS—Q’?œFGÐc=þ¹R³Ç7NGqŒÂÝå|··FÒ_'É{2•ïª]7M ]ò×_Ñ.”ÏØ<‹¡È^´ƒEt?vt_z¿}K û,·6ñRcÆ6'QwÀ?Gøýƒð°$…ho Œ 6ùa#:Àh4«“H¾ 3n(Ñ (äbtÓS,R%Í…h\ÆÌCfB™e.¢p`C·bŒ¤¾8¥Æl‰Q6¨a1Àb0gŠˆcgÞ CÖ \ó™#&EcÐû`p Œ üa$Û›“voMùÁ8gxAÔEŽÑè=€ r]Kˆtg&"A{~'”òjÁ àŠ­œ¤õ?ä0KÑË¿XicŒx Ê±9uŸE Q®>Oõ(î:­1œ¨§;,Ó¹[kJ1¢À'úŸÚ½¡RÂ0¹Xÿèk¡©çB©ñ*^¬˜}R&Ɔ@ÎÔüCióZ.Y‘H]„Ê¡™ùÓäv•äÌ6}ÆjÔz L£Qµ¨Êq_¸õttõ2NÑ Y¦€€ ƒa„ -8ë•s<Àl4ˆVÎ`R+BRÐöŠ:š¬Ú&bs”Ë¡—Ç™S0ëîJÑé2Ï"E.ì A±µÄXõFÝ=i‰,Ù$:…, wQ&±:úqIâSé´×HÈÏšû L4qä˜þp¤œ |ŽM¡Ç4ºœŒÂž,=„¼:QmÉdTh65MFW à €æç-Û–€š*™’mëÓ§ÞâårH7VMçUä´Î©»7£QÚΩ–nkÛut-HkUxÕíò‡Ÿèésï‚+P5Š$™ÿp˜zw‘ÑZ(Ž›^mNÕK¢>ØüM¶lMªéˆq#Ę—bs®Ȩ£~¯&Þ ×N)$—¬9ýw¦Á0¯+äÚWOB¶Íf'«jì4Æ(ïY½zÔîn&ÌîJÍ!3lc—Çå®Å4þŠËÛ'…-Í™wIÀŒ‰LxûñÆ5˜¦æP*9øö.—]G8»²RÄÒëêöÒaêqµ-l ሚãÕT$A¨BÉ ÈÐå+¥z,îwÕw}üR^[Úoš!#% _–c·"3ù;«-»IÄ$Ñ)½:3­ÚJ´ò•7á~7Ü­êéž¡{»ñ<8Ú‹Ry- ¾b:¯ØÌ£êªòX¸‚N·pÖ‘í¸sŽ‘)oš œrž)I¥Kq$¢Æ4#.;iГ):³Ë¶<{\úû&Z“¤b$7º¼8â!>it6ÙÏú+ã¢Ò(¼5¶‹sp²CA"Y‡Aˆ™ä$#Ø«^5ûl,ÒÝ(¹K¤ázAsѶ«2»ã2  0à &»¦¿\ED\FDlG&ðdàp‚0D„Ë®€C'2ú¶áг8ª”:C뇿™èÑÙ“â-£rEÅ2b¿Ò´‹N)ÔY¾³GŠÅEý4Ó´B$V³27¼ò ±²ÁžäF"øE°¬ªû×°Ö®Ñÿ”òó‹´c‘1ô®ËÊ#:Ã+…6])™¡;‚TQs´[±EìгÑ5ëB´H•(ä0ð>ƒ\Í|ØMŒÙM˜è†LI@EÈ€C¯šs·Ì-r/ |j/J€<Ù;ŠS;’ǰKÌ<Œá0ßBÁ9ÆóÄœ™ÔÇ”YŠ p˹ØðšÄó/+â÷¿úH¿šäÇZ~ÊÌä8\iÅ#ÔF†ËáüÂkÝJ4½Ê,ËS²Å‰×¨Ä3°iÏ”Tkß”ù1ÔªGA@"ÇŠ.ô™9,ô uKDL·j3¥‘;½¡7>ˆ?Û&%kCˆãÇ)K¹Ò;!ýŸ³˜¸Â–ªÂŸ£ôV¢ê…8å¤ô›€u‡˜z¸Kƒ+M¥#Ü„’Åô£—{nª4Ÿ#¤¡Ïùl±´+À½-pàEÌ%ǤîH]»Ã|A’òŽ,q>Œm‘ꯘêwO²Ì²F‘%J{Ó2sØ®TnÏñë"ËüAÅR˜ëËûÐR‘9S^ÄšO~ž[”žì_PT(EŠRò‰=)Î)ÛšF2û«ã;Rq©²{Ó»4ÑÓÜxRãLÍúRE­LË4QÇÙy<Ô!¢„ü­e[+Ã…%¥ôñÏéjS€À`ƒä×R=cV=dVKáPƒÀT…˜Mød:믄k¹±Ž'ÜrŸtÔAÌœ4dýÀth¸:å¶ù:2ðºKèÀ,÷;3!0±B£)$<T;È-yxÎË)Bc×%³;ªÃ= ô…ž™™×Á)X?9©àOkà‘4{=ò)<Á­¼œ«T¢Q¤t¯Ð:9W%4°#¿·]&Ÿ¹p‘5X­Ø¾ÍôQLQ‘kC¬MGñN“z)Añ㡚O¬ ˆ#y“ëå¹³€N|#¾\¯ÂÛv¦#„¼Ü/>c80s &„ºS=+GùÍ9€~pD¨&ƒ ÖU° p ƒ`AU…E£2QÌZÊ0 ›ÊAò»‚ƒ«ÃÚ}G<¢WŠïJ\_Ñéªb »:“LšéUÍtTE *=›²]M2Œ¦»\o½4Ûiż[0=RP)CtUév²„†ÊYìê—¥3[ÑÌ"u ¡JžÄíŸÒúõ8í0³ iÉl™DÂ(Yæ9Il3|¢¤Š~X:Ãͪ¯ 2¼ƒB<ÕY»á#E.OêLP)Ö;%¦4…Ç»türMS€½aƒe°ß ñ_ò˜?…h[h[†€XËþ’È”4å;,žKMzW3(W=·rVÃ4¬±Ó­ËÀ4·E*àÅ×6ç@ÜÁ”wOížT¹¶be¢dSJ\ ºÄZk '¼m,}—ôàÐsº¥ÂT‡Ç1ŒRšʽÔTì ÞÔåYZ‡¾öË”2øé³ù.%\º3¸*„´bW{hÔ$ø/MPÚªÚ]SÎÔBà0¥—>™TKÝZ„·}x¹|–Å3¹˜W£ûCz JeéP‡°}ÐKR -À_-dÛ²Ú„QbDìTl]Ì|Ù¤@Ú¢ÓñœÆÍ4q=ÏôÇ;DÐÆéµ2ÅæF<¼ÊÛ5Vׯ%ÕÅ[zïÐò®Ÿ»þ®¾CÌ$W-t½\„–b–¥EPÉ|£ÌÛ‰fQ£½3s— ʽ³xÕnQ²bJaÖJGÅ7=ãIF]k¤›X €ÀaÝðc¦zg®{g¸èƒèV…¨G…À`€€_}%ÄÜ«¶ã ߃º”¡TÓS±^< 3:Rªf*4©'†2‰(\ 1¦ˆPÃ#d³›N5éÛÅ•Clü¢Ìº”VÝ6GÜOEÂ2hÉ×y¤Ý“ªmÃÐeèÞ*Sô˜žB3}uZŽ*Ì+ÃÁc¸™ë\ázU6TœAªÆXû¶¥†Ã’ò=UÖ è-þ6p¾rÍêäç¹UA;Ú0ãÓÄé¾ÜT½iä?Cø °˜|ÀaÐ8€î|M±„ æ{ÝöK®‘c¹¾„j© Ò]±NaÒ>ÝbÁº‘žñÿZ{ºf^×[ƶZ ÊEení:ÓE£ø^…o¾eåÞŽÅTòéÅ}{E¹>W%Eãõ€š3hIΊÂÊîNû]Fm…¬¶¹ú%;Êlý¬.ãÚEÀ| Gí;¾k†Ù2éŒRÖß6у¦例gG<à³FâæËë G?‰/æþ™"3Ú`¶ÝÕùÊJWAI¦mªç+.ÔUÎoÌ*М{MK Fwçˆ6ìpo_;…HX„ ^ XéNUãjë4´Ï®R™!¦ÛÙá²f¥í}oÔÿìlAÎ\²b ’iœèb³CPW‡YBØÛ#®\]ÎêKÎóÙTÃ!bD³ÈLÄÂõrªÎT¶4„bb`ä´NN­E;Ocò¾É.%ãÔ iBإ湟&T‡ð¾Q†û×ó"LE|Cb%Ñ®Q Þ¬MM×ÿò:sn^ ˜\ëqs•Ë.Ioy–ê ̆šc`}˜ˆK‚ø+—>ð|E€Ø6„CëLS¦ 4–ÞÖ›¦>,sË¢Ÿ£zÞ¶f4}‹êQÔÑTû ´F X þpø–KÁ®ÅQ=Ž‹ßÍ<]Ñšn³Ã|k<²û"MŽX­«vAÈ'Ö&uY|nƒÃM"[×/]C‚y¾Iù\d9;úÕ¶’,_ãäRHèŸÄ ¹NÙ¹EÕžô=½Ó쇓‡jçBu²C–ÅvHËz÷Cж,aåŽÃ_jx+ËE—P?­’#ñp¼*@Äô¶€îh`ƒØ7t§xߎDpNcƒØV… ™qJ’#M¾(`_²¯=ÂâÞ£.4ã÷ªÜF”»l<·su†¾üˆÎg=·¾ìã}áú‡õå·]L¶0Dt^^MÛÏ01ÝGŽ×/dç)ìHñsM'-Wóc!ÇÓ£ÝnH8‘ÅYÚè>«àB¦Ã:ÔxwOaSÁ?¶Gå?bb–ÑÆeïƒÁÅV[Hú}/Ó}”‰Ô5ÞÀ‚@y‡˜>`$ƒð(OŽº¨wL1¿g+*Ær©8Ûñ6qw™>Sa"_m—¦Ø²ÖÜÃ7xYß•M+³åNïáä¹½‹™sJvœ¼Ýú.qó£òÜóä®Ñ¼©yóÏe{г~Ìýq¼{ÐðÔP­ˆsîæ¬ å•>@§¢‰#¶ Húx)îõÙlj›åUÝî²oߢ q˜®CÌö°iÞ¥Ò¬r¦pˆÁ oðü„€ah|& ‰ÁàqX¼fŠA¢P(Œ !G#Rhüuÿ!…Ç!¨„b]•¢’9”² ˜D£±™¢%6†Dftô¦? ‚Î ôÙ|vw0¢Å Õ:lfQ+’Õjõ¨µz/?|¾ß‚€Øa„z7F­Öû…Æåsº]n×{Åæõ{¾_o×üƒÂapØ|F'p ÑÍçS° Éá»ý ãbç3r &]kq‹–zÝ—•P41|Õj³°f)UÌÄ’}UªH"rJ j«PšIªzŒîÃucäÕ§r~ú¹Ü[ôò(O9Xåè©rå"eßìun=Þ¤—űçX;ÞÚ/›{ÊìSàîG³A çÜ+Îz•¿ZÆà¤Íbj‰¨¨¢¢Û%ï¬Î¦ï£þé)Éú”â­Ðœò@®Ëa)Šcƒ ·Ïâk «9 {ʰºLÛÂúÆô-¾0‚ºÎ2ñ{ŽŠÁˆjǤPzYÀÔæ7rc’²Ÿ€è$”Ã8ƒ ».ËÒüÀƒpþô"Éë×ÂQ ;AQ»H×µ:ß 5ð‚«1 ^ü½®kÀ’sº»Cs…®Š$W"PéJ"Òºt³4Q*¥ÅÑRÞAÍ£}4%°O¡TŒûSÈ‘CB¡°ê{¶qƒþ–£qmG9Ï’-Vô'ˈϨϬfíN±š,1¬Ö£ºÓÚ‡?´r´Ó·-úx¬¶4 ÎÚBö­±e¹¶C²¬È*½nXu>¨ÕQ´›ÎïÜ' ¥íPªR4›8ÙNõ†¯×oÔw~Ãs…(’ÎsÓ>ŸT4ÌþõWÔTþëÙ);ÄçO8ÍÖÕ5b) Ð.`C|ÔåY^Y–åÙ~a˜æYžhºä p‡k&b—K}6Ò…ñ‡8ð]S Ô 4÷€èô$ ¦Ê]Œû;í#ÜôÝ=WkÜ'LES55Išm¹ˆÑV¾Œ=öí%ê“MíÆrºÐ5¼2¹Ýt}yKQW¥c·Ñ{¦7†íÏK‰Ya ’Ý::ýʹ51ƒC1ü=­kQŽïŸÒî_DªjÅ\òuÊsñeËÍ\-›¿¸N_h¤^Ñ- êáu]¸Ýíí™õ|^0 !ÚSø×mpM¸WžþÞ2{0yŸÈH ¦Pü;æ¿ÉšƒcpýÆuÒVõNU›;å5 —ˆ¨1EóëÛ—AÍéù87&óV#Rbé +BTÚJKü9Ž%i®ò ˆIø+êЦ/Cn| º]êÙS•$ΫàŠÒ2Ʊ%”et‹ÒJ·Wí]<³ÈóAk­mÉ/Õ:´É‰ûVϵ甤†oJä<Íø§´5\èÝ»eˆKñ¨ X á’HO <ÍDv²ZCðjkEµâ¶°ZÊ>0¡;“®ÿPbH }%ÔÜä <¥ A§Œ‹à£Ž1ùKCCâ¹ êy)¼ØÕ´xeNÎõ4Æ–÷!ÍüYU*åd­•Ò¾XKd[ÁÀ‚c|vàÀï\ѳž÷è\Ë^Œ¨á†A×ü#˜Èá>>©ÚÑ$guó.-ÌJuÈñøZò0HçèÛiÂD¨ð¹Î ÈyUBšjf:œ•Œªœùœ³É#ÇU`WPlx+xÕ¸ðì ì˜>ˆJN°^dk+ ²Á—Nþâ”ã#s Î#,ÅΡ½^ëíR8Õv–…sHñ‹:ȬŠ&™b_(E|Rä>«i+ ›“5ËMs5Zo^4 Ö>·ôÚй!ŒsöwCB6£ $Μô²JŸˆ¿j3C5¨=È‘ø?D¸] L)gXë!sLaùXÔȪ~gÔÚQî?­J.ÿ鼘xIp¨zïVóixfýýUˆ~½Øƒ€ˆºÇë\§ чŠ>aÐvšþÚUU}f•¬9µŽ€g‹—pâh°”Û)öRM>ÌEYE“QI5EÝ»E¸üU|XcµJÈhé^#´°*£I7ƒ4ߌ2 4aHEwkhür5tÖÈ®êdbŒÐ¦åÂ7»Ùè„致ŽuXbål]œ¹ö¦Ñcõ"¥épõ:^ÛÞ¡í}î¾7Xë7“`È€Ô¦A²à€ð&ÀØÅ‚Àø!`ò€€Dk˜u»Drk¹©Úé(‰ò}×ÀàOµÆýÑ;¢§8^εg8¡lœav§"Îö ã[Åz;k1Õk‚üé­sQ/áá¹+ê*n« *v$*‚³¢9ÁŽîä‰ÎÀ˜eÚ%Íu¾)Æ8Ùä”WˆyjÃÚ÷J妗µ¹’x]ëŤLI®×âg=‰V¤;R¬€°H”¬­Lç½gÍݧåz¼aqÑ¢ÔØf¿*-»zm./Â9¯7ãsøÑO&2!¥Ñ‡«]ˆ:/ÁþÒ÷؇‡“Û€ŠP΀x 8#X>@8ÃíÊ`3Iµet€1¹¾Æd']N•Ž½Ðªb@±«Cvë–@»ëþeSCoXó¶6˜Ç*Ún•$$&niKåÉ@±]çËð[jÓ!$ÕÚØîŒ Ýµ–T¼ÌmÊ)|¬FiߘÍm¡«qnn'×6¿Qg}Ф‘¼¸ÅòémBôJ‘®Ù»~Z+bÝ+h¦v[]ì^êa®1MneÿºÚ[amë¹f«6h›´Oùxü¬U *¦kÞ÷æÐd«« abG#à~¦G)ƒÈqÖ=?¨u¥Ôú£*âÐ\ˆÑr/Nh÷¡´>÷‰^W%ÎøéÌ ¬ýb¸Sø¿M3°iØ©Åãó&¢lŽ3I³ÃnœÌ<õsu U‰P‹°aå¬8$¶š:xuÇ:º†ƒôÎV4x›®¹´ÃAìö‘ªxU¼6òË¿_¬̹a…¡–jS(A aµØrmÙAºŠ¶‰r’'K?{*%Ë1ÐCvr†E>s'½úÎæ¾’§ÝÛ”¤C§¤›`›Ê¤CcíR±Dî rv;Þ¶úo«ótV¶LsÒ»¤³Ä§¥¿··*u]Ä #x¡E%ŽT AæaX @Î `\®«D¼Ömj§ŽÌ([-žƒNôELÒÚod¡® +f§¬&®Ë†:XQŽDù¦ú³-àk 8p¸…*æË.€“'ÆÏë×+ؼGbßÔ‹Mô‰o€s<[­ÜMnv*èÆ@ËdÔôæÊŽZªœÊ‹ÌÛë<¥¦ôlbÒ 2(G¦ÊNné†äÇ@¦G ˜°8M/å,.›È”ÜÍÒóf<òÏ.iE(˰ºgé>ÊË:4홤ìOÃD“ªhÄ‚d:/rÎð³Ef’É Ð·MÊÃ$¤Kú›q3Q7‘:À¡°áÐ!`w/ðqV°Ï{%&sg¯‡p‘+~œQ²Hz©PF±éµ¯úFI’®ï² hP©nÕÄ(ð@j+XßeØ^Cª  ê7cŽÑFˆ±K¤µ…‰ÊucøûhQ"æ«9‹ 2s.8¥#?‰þ]òNzDìWB¼ËäÊ£´ÑÏãÇ$$#oaåž~êéÐÀA†ýÈO(VhJîk¡7/c ÉêÖÈëK3ÈHÊ›ˆ†„K0¸%ÔÇ£ ñ¨fSËS/Ò†Ò±Ðo¯Èø¨‰ ‡æO ˜u¯+ôO“0ìÐtÊqTçžýJ2Ø%zÈjxÉɳ%.qñ3%þÍ €€1ƒ9E` ¤¤€¶ ¬ i=5 `8öXí–÷Q" ®ÄR¤4g KrŒ+êã±^è&ó"”îÃèulʾ Q°šÞRäPD6EŠïi%Gã5\§%æc/HµcT‘m ôQMëŸHŒÔ¼e6Å’v>E÷Tž³LÄIDá¯WoêE•‘AÏDÕCO ha(Rþ­&ÊL/Ql&¡Ke!*8˜(gO â·ï5#¨Hô(ÈŦ¨ªÅZ¶Œø¢Då i©LæHªÐêñ;G Œì(@ŠwYi4€d9+«1ð öRË kì¹k⿉LåPÖ/c3cP=aÄ¡è ,àFðIðnµIï¦NÉ+@5$èè§té-õ>¼æ°~…gx‚RV¯BotŒå„lµ4õë[W\ 3V#J•QZ2Ôp%ToËKK¦’vÙmÛk#ØÆ²\Ç\ɰ~Ër,kF9Ž|ÛV›ŠØ©¶Ð/R‰\ãSõ¾a¶ìšýo÷3(_v7µûaïü‰Ð'ÊÞçðÊàáî @d!@ @ÅcsÌ€ãQPN“n‰[Öã/´>z¯¨Ÿ Ø×h–å‚§?Ó²¶±ì*õ›2’KjþÊ)Z´ß´ÚÈóH÷ÔŽÎÉ~ƒëhÇÛúÏFÉÅLÿÔ$9»?➌wTÊ (ý–Q3!òV~he¢s "tiPƒW´I^uÞåQÐÞnP¹²‹g±,þõ·VóK~ТW¯…2«V=m”Ö÷&lT:s"ƒ£%C‡E'*3…6/îÔiDø®×æ+hÈ$ys33? êgj?5ŠÝnÌ¡/fqQŽj5ÛEt ù#Ð úA¤4!‚ö-sx‡ˆ˜‹ˆÉUc¶>à1P·ÆqÎ`ËRØŸuã\ O2©¬ô ›w%O0ø^\­$¯'`n<àn"zÍ:M¸Å·ÑHfy)‹ŒóMÃÛ|¯Åetm4Kye–š.Yn®BDÑôžJBÄ ü¤r–7xsW€ 9MŽNVŠªåÂ>ת”ùØÄ‡ 1eÈV¢ûÕ«{¯Ã§yeÌõ3ÒKÕGoú¯ë²V}7Õ-yó9^êò§Œ™~÷òÇÏ^ÈfUC͇–—±gTËm¦§Õ!‘•¬×Da0“P­¥ú$að,ÀF{Á> $²1ˆñ5s ôY¨9wì^F7Ú˜I*¶ìÌtòï.Ò›LϰYtr8ŠI»žfªõ‘rúÍ)(Õ‘g‚tˆ pª¦ò®z™ÑxHÑ~:ž…Ñ5™ùF6‰ÏùZô #Dy9ìZ/iôPÅÔƒNuSe‘Xt&åTåz#MÎ4óÉÉ|N$°nntýq¼Þ˜Ë™íE>°š„fйÒ6¯ Œå­`(¥>ò¦Ý†zåT²ÒÔ,ö³MÀhжKERël*óNR&Í¢1šÁödx~àç›úß®ã®C c ˆd@~°† öÞô=TKm‘Ó÷wÖËpFÎRű*Ⱦ·SÍ*«™¤éÒ±iª†÷ߤl3{—„Hß”å6Ìö—[r¿™7×éï*}lKO–¯kºSY”o³ö’Ó «t-¸°¹²ðXQ ‰X2ái:L§(¦ððÞßy uÚqa5$ÄñMê†}B‘­h;„¼ ù“Ž AÎ!âàÔ `”À]®n¦ â*=`j}z¤c¨óV ânq£¾A³þ“84ÐÙ4ÌṁyXò:"Îx=ñ[„—ªNe¥{iº! Œí. Œ{Yæ@Œõž¡W!^–² ãÇÜ·Lxº3c¹ÒÊ£Žõé ; ®aäó-®ÓôËnct§±µVÙ˜êWDM¥‰úܹ”Ägd© ƒz¡¢ñ“?iÍŽ°HŸ lª´ùnìÆÖê¢qëe|ò“iºycC+|ð!MfÞÅpfœ/Ò¢ïóÆü!- BI1¥¥—9ãT›nÙÍ´ ŠI*ûÏB¿†Jàé½}ÑÑ¡–ÀA€$` u®ç¨Ó²+“¨ºJÊL‹µ;Æ{*­!´½Ÿ£l ƒ˜.Êv¸­.……àì‘øm Š<¥Ý?³¸ 9¯T81¨›ˆZ5t°¬w¢VµëéÙK-K@ó”©D¨a¹\·`ÉUŠ·³‹‚µwv`œ©¥†Úæú>‰(ž3kÁ¬Qƒ…»WõX˜¢‡Ì+–8ÁUOãͱ.ŸÏS“í6y×Ùí¡¡tM•o‚&$:m¬ÌÄŽ¿Uýmbš$ˆô@°Àn`ª À†}ÑÌ  ä`×yeÇ ôîhôV¦ÕúðëKTqÜÆª®§Ó]Â숡+/¡]ªGÍ!ÚÐ:æ‘§mÛ?þ^xž…ønTxÍðŒºx`6oÇP õ©jS ¤™‹E<”áõ]Žî3}s.]ŽxS3Zºì”;iòXZ$¿]sÏüá·Š‚Ç-« z\Eo.» 9MܳÍà Ÿ.­Áªü Ïx°Y…‘¼¦˜ŒSîÌèÃWÕ OÔ*놷3¨ÅК3Dw Ükø!€ÝåkößoPÁíäìaV¡QL 6rIß]ýÝIö‘á^·e¦Vòp>ÎÍÅùÇEW <þ¡â?§è5Èja¥··ÊuæÂœx)6tƒÊÉŠÓ÷“ï%XEêZ"Æ_èSèxø6¢@÷ø ?À0˜d> „AàðÐ …B ‘X\F!‰ÆãPHL*+ƒI£1¹t?’G&1Ù|¾1,ˆÍæpÙ¼a ‡Ng“9”~AœEæ õ….ŠNâÒØ•&%9©Ò¨õ¹´Žiת3Št6¡(Ùa–ü¦±/¸Î%Òz•Ó2±Lm‘¹Ô®¥&²Q®°»µ2ÛT¾^ OçóýÀ‰E@:._1™Ífó™ÜöA¡ÑQC§#ÄÂí@›à ±|+»ð㾌½ÇèÛÝ3,Ð*½$(OTÖ ®+‹»JLÚæËµì"yŸ'Ùøƒ@Á€;­'JR´µ/LS4Õ7NS´õ?PT5GRTD9l[űj @\âž­ Ý ÈóÛ?VŽÛU ªÏ,ÀÔCp{õ7WËÿ0­‘ã‘«vL)$ÍJ[šñ×ö;Ó*¶3ŠÖH+ÜÝVsÒÇF úJš¸²ÅÑ(:oðÅ®‘µÄáH ê¢´Ý ”}Þ)<ö+òew @ÑÔÎé'ëÒç(Šž¦ÓD¥VïÌë^Hn#xX ºÕâ6Þâ2Eq¿R•ŠÉ–dÃ×ø…|åAÛ2 HK•Á”ËVê-6ËòÅ8ÀòTLæE*å÷<;Ð]ÍY7÷ó›J*Õ!¾DÚ±/sŽJ "à †U.×¶m´ð:9Žð¤‘o¾ò#b–ô ®¹ôŠåÉõÂk‡/7üI®1Ž •›:Æ^缑+@¹Þ ëu?úEºýÖ ¶üÎFò~on³„‹6Å“=}¯8’ëj¼-ÃÑD÷Z›»êö5d9 G Ú]=BO;þµYó„eà³Ô%ïƒ÷^o=Mk-—±àueß{™_xû<&ÁpÙ<³£ïï4dOÅBGñä4oMé‡ÚøŸÂœZ³]@Ðé«8+ÿP mè«•Þé”D¢[‘=7¥ÅpÕ`••/4PúZJZo:0äJt–䄱u49Þ„ᯇ/…#UBQ"4Dì4ºÎ„[,âl|]/•-$hž»`8ü`¤ ¡€T”Ê®ƹW:é]kµw‚PlYÁp.x tš€¼*DØjcMk•Âv2¸ÒjÔkïâ”ÏDÓP¥Ëìf¤]:0ʺí*<Ú[%ꛇ Çßec|kö?HhŠžX°yOF£P2©eŠe@+•§5FrPå2pŽ:ª:ÉäÜéU«bA‚)äýé¶·¶ÚÚ®ø¥8£²lJ”I©—ƒù@™ ‹†”9j/DÁŸmÚ;GXcá±4¢ò‚;Ó8RÝÞ=cºQrÙD¦°eݽϮݷéo<æD^ô梡֎lnF¸kjZôïTR±Cä{…Pd DÐ] 5ãW@8»­“•‰2SEäéa¦*À ~–>,b¨d›Ô¢’’3á…%ãý²™Ê¸Çïe»™æýwc …‹"`N®¹~ÈHà™"”ˆ'ïÚ›Ú¨fxš2zk²5:ùžðèÔ·Œ*âªHýeÎ5ÇïÛã‰ef/VpŒ©Ä´å|dÒT€ZÆÍøÌÖhëÉn‘‡73™7­P~X!ú0–ô•í®^f÷†|ÕiU°:ÀÜG­u¶·×ç]kµ4 …¥{ƒà@Â9ÏMl°¶ÒŠ/ÙþŒ&N´m5ú¸üRÞ)ÒmÍ©¾”uœWÐ(Í h}8ÿubgW¸±ß¬“B­?}FvúÒÌ[ŸY%¬ÖܾÒíåj)ÔrAå¨îÍ-vkVZɱZv­]¬=zÉks*vTªŸr¬Eñ?)Ä{D%rØf4â#$t  !fÅ¥©cÝÊaéÈÑßYuù¶A©/çwCÎ]]Ze|ŒÂkøIéŽÀ à¾&:ó©6°:5¢ƒ|èn¼ˆ˜÷K(uÆç5Ù,×o¤¦ª1²-»eÍ% †ü0X8ËÈ,ÿªË“£˜î@±ÚÏœäÎh¬¥Í.úàóšÏWûij•w+­¨•uóH€f4LºÕf3›ºCX\¾Ë~F7µ³‚-…²PÒör¨k•ýÍ‘-’vF•ôe‚¹ø·ØiY«¦ÿ`g—0Œó Åo5‡Éƒ3EååàË$ŸŽ3sT2è Òñ¿Çò{tµœŠ˜Ä°d{ÎL Ðo·A'¾RÅŸ‡?ÝêÑú>Hu·«õ?éý·÷ÿåPW¡.…¸¡ #ké j#ù§²’Jœëw£Ö-Š/¯+×)›ÅšÓˆ@Sñ¥»~b±"c¹·ðê3›æŽ‰1¨’«‘Áu®êr¥ƒ¸§:èûG@Yã:ÛÓ'1™{· SSãå»Ñ¿‘;—"j8+"²™cÒëB1¡÷­Ú÷—Ó6(ïÀòÀ»ž%À̶Àù!;¹Cz˜"KŠB $”0¼¬ "ø»»Ã{!4+'Z*3¡ƒÂÒÔ“гó„({¿2bÓ±X²‡Xy‡£¦+ ?ÔC”£ª””3¾ Í©C³J*D&¼,7D¡õŽË/ )“/RÓ>šXAûQ1©Ë#CÛÁIf•à–r(­;J'¤ÚÁ)Ÿ¥B)©JC61÷ ËŒ>2™Ò'ÓŽº ˜'k·Ajž'"ÊŸ9â·R¥Ã뱤r§ÃRðžÛ0œëÈ);Å'ª×B™[;ôÂ#Ý'z%(ùѧ š;{í"9c<)áA‹ß=3sÅzЋ“e7ëS.ƒ˜Æ3ûÄŠ¼ã4i¾G#uÅ}¢œ>Aó7­+Œ§ü%x´?{Y¼DHÔÈäŽÈóZ«ÐE…Ð[‹aÁ9Á;ÏB²Æ¨›ò qd=„]–"ÜF)¾#Ð.;€>™ë<ÑGㆵöž{,»*7ãPDcÍÀ|£¡Ûñ®›œÚÊ:^D-·»Ùêl¯4L”žD´:74yË ÓK»AZ.1šÃÅzœãá2Ú¯$ „¥œY»r=‹:¨ó|7Ô,ÉlÃéo¬Œ9CU4°-t½,zœ¯Y+.³Î¡ÈÝ®Q]7ùzÅ©Æ7ÈßÁ±å´Øx°{:`2‚˜¬Í ž€ާ@Â!PX;þˆBÀ8T%‹E!OøÄ&9†Ã£QŒ>'&†Hc‘hô²S"ŒÂå’¹‘f¢I,S©E>ab¦Ç­³kNMšÔî³L<Ê?j‚ÎfõéT]¼Ñã7¼-R‡}°dïqL…Æ¥d¬êhëÌû¹Òm›µ¾ÚÚ4ë^òïnÁßw“ˆ¾"˜Ìñ¬s[®ö—`äl8 &¶«%ÚÚ·6郛ß廳¾WdñÉ=]*5¯³Ô¨Î¦7j…Ï%ÍÁQ¨v¼tó¼Å¯N;,ó0‹#`«!KFÆÁŒÂÄ|‡ÐT ƒeøè;¿Ì5 Ãì=Ä EÄ‘,MÅLUÅ‘l]ÆŒeÅ$jX‘…Ñn R¾×²NÚ4¿²í‹¾¸¾ ûÖÜÈJt…1)™;rk@Ú1pÀþI²;ù%5c|ëKŽ›âçJ“:®ùJò¢Æ ´3‹”ݵl˪îΪë¯9C®—7ÐQÉ+§ªÔ°R›g<Á³c²Ú½.K°Û¸TS1Il;8ü?nM&Ptšx Ô.Ó!74쌧L¢ªÌGQðë Ç®ÉUhßAl3ÖîHÔ¥<ÄÊtMæ?TlQBÃó¼72ËpÓÛR.–dûh¬gyêz(Ø%|iqÜ—-Í ƒ£°é%-4kÛGJ\¾ñº6E±1±Ï³šÎV ¢¿ÖN[JåÏ‹ó½y>•­)`´ŽãüÒWÝ’ûRx¥‹eOu*á!еdöÆÐK´Û£wd5Ú“#¹­0Î4Åa>Su“áKmBÜ.s¢ôÛ3UŒ7 ¯ë ’­do<×€Ê5 ×ÕØ10Tô W#•óJ¨V"÷Ͱ"Õa°ˆ¨×:fRÅk÷ÅâW.>U¶ëÜAæ«óÅM¤Šä¿[M3,3˜E7ëýÌ,Ÿ¨Ú¤†ó´® ª-÷TO9*ëFa¨9ò}ŸaH2 —ã˜ósõOUÕõo]×öeÙÄ!jXeÜvvFc<–U­mÒO~ùVY¢–áNžË-NÖsQT¹ì¯a랦cc1X]¬Ëš²Ë!p]ýpßW*&Ù²úM¦Áaä·¼——°›–q_øîÛQ¼_ƒ`Íq3Aû@E"àŒ»'PK±ç³×졌Lß&ô2ÇVC>Oªr¦•J÷ kÄIéèªÌ™QÈKme² ¢[™6…Œ±a'6 É_Û›SOœÛ%è Q×t-Æ|ÿ….fÖ"\0 @á1ÆÆ¢]a¬VÂÒF>‡àýÀp ÀÌ€`Ò2FTb—S@gGA-E¦ñ9ikæìÖ*5¤|Ï“boã=U|µNzšoì–Aw¶þM¢gdpP´7Eô³ž#‡±N'žTxá|n>Šå æ 3z?F-§¶uuŠÑ¦‡ !0¶ã“é|1ʯh7‰IÔ| ‰“Æé&Oß z쑺¯·ØáÜÌ‘‚qa¿‡ù[{Imâ$ÂùžÊ£J,³9¼Í¨dpW„ßW rC"ÌÁcÃc—mõF@È 7˜\HAMúbăÜ{&;ŽÌ¶Lf,õƒB:RªY6†÷8áÔ‹„n|~:'Hé£5¢TNŠQZ-EèÅCŽØX»‘lP )“¼ÏЗ֧"#NÁ¿N9dä\¹î¥ðucÃzf›UJ&v'¶ENeclò_äÉ­À¯)ÉÅ??¯))%çÔÖ¤Œ¥Ò?N ¨ž)«òLq 0TBpØó]@ËaœHSpȤú`'íÞÎY&±ßDk‘m.|–óŒNè,|ýCÌ 8T ’¿|§¾šÖË%<ˆó–UjÑ2ë¯q ©2˜Qì3–«J@¦ÙÙ] K‚Ï=ìSÄ«a¿‡'ý$ÙYˆ}i›úM*c·!ú?ÇðÒ‚ °F®Î~·G‚—m,=T´ÏOÕÜÖm (ŽQODÕ2Lå*úq&å]:‹$šÙ¬rÕ$Kx`ኤœYó6/æ¯4 «Æ°7º'(Am&¢µhl 8¤òð‡÷häíL!Æ‹x«¥c%ðÙ7™–k)+mi±Ùƒ±ˆám—&faF)&i½ˆ^J¾ÿÜû=4oÔ¶z³J ßZß$i¼k¿sN÷a„P˜lä­‚ŽY¤óJ&\¾ÁÇ6úë}oCòyÒ31ñò?N”=\­•òÆYËYo.:Ñ-…‚9£à)/…U^ž|ƒÐ‡5@¶}œU£œG)®¯š]Xó´¯ìÅVì‰@/LϪµ´æÎ¤!“ˆsS´üášòI팤rvÌO6n§k½f•ºYæg,Ï"qSw .n%—†å.XJA+ÓÓäI­¨s³;Õ9ÍcT1¡§´:Y‘››¬Qži›ÅŸíÙœ4á>1Rè–“t•}zšBR›W@c¤ØzóZÆÖg “-“îÐoNJSƒðpuS´®2Ùß0æŽ8` f @S½Ë»íÔÐî¬ög” è=ª‹ž%胛/hæŒiygºõ¿¯ßwª Ù²b*K/ÝÇâ "Òlб>iðò Êç#U5éžÿÌŠØû)e¹ …‘y=М¦²®üñ^/ÆxßãÝ{¨H‹ñr` ^×MÇ” êëVìµþgBù në´ÛoDnYhS6"Y¨•ÏIÞ«'‚ô}MåòZvª®Ø6­Ïç—…Km4¤Ÿu—4mòï|´=ÍÌ£ã—-›ELêµv«%M jUkŽòdÈyõâËרãËUW?öÇ ìUûé{Ý»9õßI‹±k5 ºz8ÛÙ3;0ì©¢bg¼`jâÏzÕ‰¾¶Ž6‚$4å¬P gê°€^læ/Æ”:üZ%Vˆ%2“iˆþ£`æÞ­îß/!äRÀî%Š~,˜ÿC(ÝÊô³LvÝmzïè>ž­ÚÍcsŠòéÎÂÆkjȧî©”7ð~oéî¹pˆÃkÞâ&w l†ô&°mÆ®Žák„†lz.s ªøïh7®æ²ËÚÁpáåÞÍ©Š4.x¦‡öûN‚¿%I °ŠíúÊÿ ÉHÕjäéM Ma«©.šÈ0 6.è‹ æ8›Œ’¨ŒÐâPÖŸ&"¨Ìs È’ÝŒ)î&C[ ”‡o,,¤àäpQ1eqi¯AÔà¨A"¡èälxÇ(þp.º½dÎÛîFÿh„ç%[ 0®OE¦Ð¯mÇ$ ø‘F ;8ÆJÑ´ý0¤3nTIÁ)Ä7Hl‚Í>×hHÛ>í0~ö(<¨Ï¨o©ôùH&Æ$ŽÚ˼ë-¦À´îzú¸®t:mÁc¨ÏÑLMˆ¦+`ä±²e ý)l Áî žê…#Ñ”иÂ/tg¶§ED=ðû˜Ó®ÏŽzèï¯pŒ%Þí®žª–8à A–á ß õÒ-`<X¬q °³Ä´øŸ’q&MlLkýòœã/‡’0MŒ›¼Ïï|«e,–o- `Y®È…xHv‘LM&¤SòxûÒ±·Ç°–¦ÏL°Æù'qÖÛþ7¨Nì þÎòþº£èå>ÍL?+"îæ¢;É6ÙÑÕ…6VèRo Ʀ’Š2hZÅPχðï S/Jj¥HÓ0ºx¥b¶ tgíNn 9Ðh—…«Ä2iV8ìž¡¯ àã“9³9ó¡:%Èáa´!Ï( n«¨a‘ Nsv è`eã\î.^ Ò®s ±ÒïO8?1¼Á4íÉÀ“)*m## øˆóna‹¥2+œú¤ê膮®±è³_ ÊÝÑôšp’%®rDl}ð*Z ~—hr0 ÂOî ê…Wç¡CØbìà±!²PóÉ-Î}4' *ô+?SE+æ•îb]±¯+0¾>1ЬGã "ª¦éªN„Éü` ÀÑ3Î~…à. Úá꘯tŠº«F„Í"ÐÂnÍç(r‹Ó¥)—’[,®ì§-pôÙf>š“̼ÒiqâP¼üîÐÄrä’Q‰74)xöô2NÔX4 žÌ,¨ñºíHÚ`çþ±.Ô1DfL•)ÍG.Ö¨äñLéÔ§ÆÝôNó(P4}>sÆ™²H䆶„±“Fk[,òàb‡4kÈÀ‹C §ïÏkíq+¦õÓü+cPµÂ„”4ô ´‡èÏ#ää•RõKïÒZŸ•¨|¥n…&ïÆ°î-O´â´÷*“ ,)X™"4B ¢B³—Luá^5å^uâ!¼aÑ;N¾=Ÿ#²O vJfðI|/í,á(Q%)†”tSF´µ'ŽÝ/`}TM[F{$Õ/å¥0pÄÚÆ™d±û=2ªDH”ôqñ1 ž‡É|–‘£K2ÙB†‘-)ý@"¿b,†²RÇÈtª¦j¾åygüþõ²}4úúÏg, giÖ¤U…ŒÆÏ„F4v–³Còò¾‚åJ¬þTÚj Q< r†ò^‘e)`Þ¥v.ýïZ„Jg”°¥åúTÙîìµÑ̜ϑ,VY=UevTZ¯5ô3 îMŠãmµ0¹O2Á&5>ä0´ÈFÖÀ0ÁOÝ3Q8ø­Šþ/`®F¸Û×6”"³VBc"ÎÔ‘©XË;plq•жsBUfÚsL”U~¼2`nª¦ï2ÓŒ@—Dm2,BÀÚKÀÁÎì4öÉ5'³eî‡pÈìá\ÝLiTßQ ‘[ “Y2Åy¦HBõ•Ü–á·ýøË`z¡¡Ö2‚¨9ÃJyËclp4†w-òÍ(›S1$BÚ$A,dex&Ã0fË<Ôêî±vA#,_y&t{a±›7•\”‚ôá°ÿ„Å[xç­v3‡óЕ,xùëÐxáŽñ6t›Dzç‹Û ge‰2G‡_Qù’µÒesÇM6¯ç¬ö{Q7ÛS„L•W#ô/<¨~€ðtÜ•`ÏW4sÕrÀ A–Ámøñ <6çM÷Õ!ó&÷“€¦ËõhöC†mÚ©Õ“†÷¬û–Pš)¶Î¬™>å,òm¶½F—[kV@®•~u,iQ>À–SgwÞ)j<¤¿çÞÏoˆÉ·s.+µÏÙ‚VØÕNE'Äìùdž¹] ƒ9]G§‰ÊÕ>X~óôävìQõº‚Q±>í$Åw+oušœ˜yPˆ­&Ö˜YjÃ*×CÔ€Lù8Ã@ðq“˜œ2"U$­46ºð lNn¦<Êw OŃæÃz€sáö(àᙢº-¢ú0u@zØ _T½Vƒ‡Eñ‘ñ/4ÉnÃп-S;¤mƺ×)kŽM–9F6¶¢v0éø½ž˜¡Špƒ²Å/ÔNMXúxQšJí’wY-“kž½oç–rwhv˜Ûò9{8ZåßbwB­9¹.EU2Å™§lk–yEM¸7‘dlÈ'b˜A”m¤L–aí ˜£d™[q³jÿtlØQ ª‘U˜^ì@‰My«ü!1ƒ¸ÿLZ2Ë€>@ß8Gj.Re×mu9+–"OC§®dNç"÷ÖÒo`Ñ“E8D˜q º”)®PrsS¥§˜Ÿ]õ#v™_ šeµø•sëM*âípÓde-]6ÃPªÔ”:ÚâW U½© N‡³sÖyvhµCž»÷=»oQ‘Èrù@çtQƒMÎå;©¶Lóuu%‡sîåÐ ·®r¸=¬»Ìh”QHk_ôT2QÉušð°™n’j”çÔ§]6|ÔQc "‚)8àQ à»ÃüAÄÜŠÍs[L‘p)†yxãû†;«ÛccøêÓÒêÔ=—'˜&à¯Ôs1Äý†Ó³Ôx¦\Ò"æýZgõ`‘!h7zÄMVÄcÉäbGlY2oSD¥ƒTñÉpàûvE³e®WŽj8¯ÀÌÃw“Üd)0Ÿt«?)Ñe!ÏGÕ!”ÁFÊÀ<@ݖм²aX“Ej²Ø}‚ÇùuÓÁx; Ø"à‰ž}Qš/8‘ÇÄ@ðÅgzÃ;›œÈU‰*•Mbï/‹–Ö©ïM”ŠÃ3_i*ßuågÉ"^´Ü/žrt•Ý~â¾÷©»´Æã­k Û/Ê×ìnß cO*úЛT0?TÝOV<·jq­tlS¯‹C6ºDöašã•/Ÿ47똌âŒpÛ”öT¼™¿'0;¡W|Ó²nǸÿù™àçÂ5ÙZ%ÃÝCå~Yå¹£`üØ |U5}²Ž%iÝÒÛNSäÚÐÅßvÍgúã´:ý®³ö¼,çŸYQêwwÎ.«P%½ØG‹ál=«eÌ#¾ª¨}ô~q%ê—[q’Kì/ÇŠô¥ÚÕ¸Y1fm½ ´ã67ƒap–nŠYÓ’F‘å{ß=´¦©ä Ü[wž:‹wú Y5¤Å°!%h*•¿ËžÚ¸…¿w³ôL¹U"Ñ/Ô(Z|ÏU!ܵ¡×ù”lÓ ó_·TJQ=© Íc%x!2×µ2Þ4¾¡Ô\¢û" ¶ÇEºcORNõTAÂ;·eA½ÄÕ‚í¿ªzö²±ù’ubJ›º2Å5©ÝóÛqê´#¾Ö­ÍN—Þxˆvcà·i©ÿÖÍÖù£ûó–9¿Ž—ü5C ~Ýn™Ÿ+¦lí7 ¿à`, †A`𨔂A¡Ð¸dN‚Gb‘ÈÜNG‚€aÐøl†5*•¿å²¨Ì‚I ”ÄbRy\–76Ì!SH„fE$’JdÑ)Ä&™8Ge³é´êI”Q%ÑILž¡A„×eY¼*?IŠF§ÔhŒÆ{,šPeª„Â31¢LìÕŠ%†!žK/÷Û|Ž/¦Uo±\$º…†Ââ­¸‹f‡‰Àeð/—ãðP /ÍçìI¥ÓiõV¯Y­×kö–ÏiµÛm÷Öïy½£ÍÇc Úeð:^T­a,´ ÆC HžKms¼~KÃÐ,5ØK­qðO)x,?k+9òèéÔ[?·•Ž™EyZœï)ü‘+‹;ø»%Kãüî¿ÊŠÞü½ÏDú¾,b‘¹ˆ¯<“ Ä/μ ‘£ÐŒ*å&nl(È=δF­*nd$´»r*/ Td‚*邦¨:®|nƒ¢Èzl™¼)ÊV´:‹\ ,‹š¾µ+hü’ñÈ¢zÆÇ¨l޳DO»ÑÚ®¦±pü¶»*PT¬,S$S25sZe*/ëÛ¸®F‘|é6¾³²ï Àì ¼N«ä‰*<Aü`–:`ˆ·´¥+KRëø<=²ËÕ/,‰úêï20„Ç ´“‹ç Õ-#‘C²nœ‰ %¥LÆMŒ´6ëÔu4[S§ËÓ×=Ê®›1Ô‰úã ®S¬ ð¼ÎëÎò¨S¡ºUíˆÅKé|ïPY˽›ÐïBçSîÛÓQ 3ÅBJô ‚­«Ï”‡ ×°@ÇÉS[+XK¬dí²ö KVAÖ-Y=W, ¤ÔaMn!mUi‚ßöD%Ãôàº/õ«÷]+8âËO°OÌòc¸ =vNqƒYa“¢ub´ëÇçqdÍaH0 —ÃxÿLhúF“¥izf›§iú†£©5é>§YÔ€&H¿*ŽÌíHÛì SÏ0P¯m`MõåÛg® ;±Ü÷óæøÔn­xUQü‚û®©¿°£ŽÍ žíñÇPOÒëÉ*|KjÇ0ŒBÑo&1Ke]7̲6M¶ñ|óeXÖ ’tLŒáÑܰëá'^›Òkؓٳ÷$-HQŒmÁ*«¢Ÿdñm÷%ïŽÒoÆq’É1(Ù»ª¹*ÎçZµ` ÝõZȲ¿žAøËÿPßjEç,ãï=oeÛ{rÝVô‘ÒM<ÐjŒé8±‡¢Ï^«ÇrdPP 2C˜ˆR 1©Àø n€ø{ ‹i¼¬T2äŽzß=ìlõ¸wvÎŽpMüœ®ɳxous8nrVû»Fe8´&å°QÓÂ8fÉù²'ðûÞÚ©y0å^$%ãí}•2¸Gn¥`글 ,¶E8¬Ó"S4l¬5œ:ÇÍbu&Í`¢gÈ‹Üyèz¼µÊ‘â#sÏÍÛ¬¨\‡[›9 ù ŸuîõùyG͆ 2²}DAËÉǸ¨ØÛ››né¦1ÁرâÜxDb1Bøvˆ˜øcìp6/ÃF‚2¶WJùa,e”³–’ÔÓ„"ÆÐéÀµ×' VëñFNa ;³œXlb˜i“¶{  XË…&D‰¥‹F§ˆù2¦[Q|>vIHk&¼m~ð‚ °7\þŸ+qJÍ}Œ9Hd¬$;–Jì*J²Önƒ )Ë;Çå•J&Yޱ½cž¶ |0O(®z¦ØŒ¢;¦I.B³1&݃3Où”, Pa³ïoʺNE¹=Þ,)v†M1¨0šáÂ*F¦ :­G«Jc]€­Ò{³‡ «\í½¦Ç$ä@ñØI0È >˜RÚ¯K> ¬d‹Ðï·X9;c;^ÙOEZ ìÝë„TÖ¯Éìäh« ª¢mNÈTýä‚ey°ý®fN†”é&±æ·¦—Ë¡1ZóélÁâšÈ¢œG¡5¥Í-µn¯lžsÒÌ1…`¡ûžp¬ë¤Ú{jcyb©±EWÖÖä†íŸ.TË.(T­’¿S©)ž˜þžÑL‹}ɺpŸÛNéä$È„.=7/‹ ÜÓYÔn§#Ok"cälù)¥A Þ÷^ûá|o•ó¾ŠXZAšE`ƒô~€,>™ciª)Î.Òƒ–×äÚŸ ó(¼Ë,úü nÚ:Y¼ø‹rÌ:í(Y–Àª3Ò¡3 À­k8óÊ<]‹ î¶¶>[a©"UôU0ÜŠÈò¦%xˆ5‰ãìzÝ¡s,J½ø¾ÛjÁ#£†Žñv¹—<Îí¹v‰hál8ô ÂU¹Ú³Ge=‡Wªý¦”ìËY{Ž€´úL×å'}КÉjëççM—bùû`Êbí¨¾Z°ô ?aà=Ǩ  ¸'‚Ðm}t“I¬!¬Ø×rÄó|Ì× 2çf©ØŠ¶[,Ï3’ôÚ ½e¤°^DY£×%5K&#jæ2 M6g^kT³]?׳d*ÛºÌÊgÝSôÆiõ™šÇìë1–Õ Ç{8C8Ý!íRrÇû­ÌÌ÷´5Rž)ï;5ú4i¤k¸›u¥¢Í§‹5Š+öÞ8!Œ¾ÿ_²äv©WiùóM$êšzp¼ÂöFe¨eýÂ=H‹q±eÌØ¯ Ÿ…ô‘vô”¡l‹W’ó„É š@¤ Á|¯n“圷—rþaÌZP{b˜IŒ!jÀX Ä8œåCÈÏzD+˜ ÜÒŽ-B›­”ogfl]k´º0NX¥Z…úgºÑ§³•AUP¦¤¥É›k“£¼¬êÜXþ¥¼>si#RDc%“ØÉZm}R,ÝXïm$ˆ54¿ðLã­öV¶ ù(ÓÜñŽnìá-ú5mË|whUG°k¸ P™…î¸ïÍÄ¥ç»Ç’‡¿µ¤èе»‹ÿl¹Ýa×½³g]5Äœt1à'BÐl Èó/€lëjÅåû×i˜¿Õ÷¬â›Ùé–í(ß³mYUxJ2¼«´<¯Fà/ðÄ£»]¸¤µ·ÖF'ÃnÝ¢Ují ØßquTÇ©!e?ŽA!Ç]8(¾Èؼ+õ5ól§3q1bà,#BAŠh6“'„ºŠâ²ãÅ¢ªg6ò¬Aä>±†A‰.z:;¨Z)+ç3Ëô”ºçÄYÎAB|`z>¡ÑQ19#µ0û2»Ä.á¸[åŸ"gª[^7ÂND$aÀré¸9Sø€°è,ƒ`  C v ƒè4¾ZÆb;‹ƒ’Ó±õ›¡óúo«iÕ·£¡¾SRa)ÛĒŒ$ƒQÚDdº#N1ÓŠß)ÿA´•"d¼sлᨛ5‚²Ñ7LC›Ãµ£»3c¶³dg»»¦A²£,K— ‰( ×­ÁøIÛ®¼)ÈŽ‚ލ²píA›’”;CÌ#6Ä"+»²ÙB$PHyÑ116D<ŒG³)¤Ó!Ĭ‚º:áº:+-‘Ìk׿ â¶§B¡|­ãh¸ƒ^£iĶa›q‡Ca=3‹D!(ÆÀl*Éøƒû“9@7BÜvÌ\ÆLlÇLxÛ2t3€IA ž»Õû¶¼µb©˜[d½ZÏÆ¾«:*¸û­±û'-Ë,Ê‹•+Æ)Ò¤#dÛŠï°£»¸DÝIZ1ô+Li>9|Èê Î@Ô=ƒm³¨ÕÆ8Æ7\_À è SºEó㣋ð­£Z!$¿#ÊG:»4M+;–|"!DݦQlÂK{¿¤8K²%£ÃwÄŒK!;¢ª·¨DHd (ñÜž †ÇúǼ—ê:r¿¬J5’ª‚°àK‚´x̄ƀø?C —A‚§Os‹”š¡ä—ºyÎC©Ý”|;¢§À20Ï1, ä°ck±[NDê:’m¦|:™‚#Ë<²‘µ°‰00§dVÁÑ=4ñ”Ä!¡¼{Ÿä´,­±jêάâH´ÑÑ3®žìCÒÃ/:Ì}µ4–ÂAÁëìMáÊÍ<Ü Òƒ«Ò•,Ù~Q)쨚C!yhIœ£84·;ÁœþŠjCHí#´ §$óë²A ºqŠÐÒê-jàÍûtK¹ƒ<|ìÐ#|© E…7>¼"Ò“Í\ñ#Y—ÃÛ²²ù’ ˜Í ä,ƒhAP¥XUYUœvÌUp_…”4”œ¢$ÜW"ã0ÐDÔ´(RD鳤H*Ѹs¾ÄôO%pPS)ˆ˜+1³sF¤ ‘JkC5qoIZÊžÃ!RW¨$ÞRóøcy1RÄÝ×+-­FI⺣C~ýÍ¢GéÏ<^ÛJ×á´CkθðΜ¢ÚÝÏ1OºãIqÈ~¥4rõWZé^ê^ª[CUh_Ã@Õã>A;kB•ïÎ-A2ŒcÀñ=$Á<¸åµž$ƒZE+ÞT°ºYõJ ®¯T58±²á:BFSšc>C¿¬l9,Ô%M+ŒZu¸´5Ö=Œ<ÜüCk@½3n`z¶Q`"óÏ2h–5s3ÊÅ©CMôŒÀ]I$³Ë­Óæ3öCÉ,tCJ¬´&‹K E/VÔCÙ—R>Ø+¤®s©”CìKS!eÅC²Z0a[mÂ8”`]ƒHB µë>ø3Äü.Ôž‹%⚘×lø¦ ÑùrK;/#ºÏ±jS¬ÔÛéí°ˆèÞF=K|hÈÊ›¬ºÚAd“)†§üÕ;eE^r3_6_œê¦äD«Üܱ Û";uØI€ôDúÒÔbÖ]f&!EÄÓMŠ×*-‘•ßLùIµ„ªIÀD890›µÛÞLñ«Ñ˜À†VãÛ$¢Q“ódì" S¸‹Lý&?<¥_äF¼Éu²4Tô"»¬¨/4˜—Ýô*›E0Û7t|H|ŸK¤;f2f¼ÌY­æTˆbR 9@6.çÎ}gÞ~ B…ÐU`_„Ë^ó8[[Ø]ò>ŠD©d®¦“ý7Û÷ˆkæ}ÊÞ;þ1’ÙàÞÀ £LHvkd6AN3Ti3ÅSí–·augƒ¥du§Ê ™­ãÉ(¥¦=<áûbãÛøR}9¼DöW»Ø&Ë«ÎWÄ»átƒ)âÓ±¸×¹ð´Í áoiqÌV¸€eÁ©Íö¬ÕÂ} £t±,•ËÌá;}›"lû«‘úÝ£¯æ†*¶˜­@f¤¶k‘&WFÜÒo^+0`ÃÔ¬öÈ@Ö¸‚˜;¨€0gë—?8õ3$×E— äÛY>%Ý8›Ýé¶g3Ðɉ§%ÝE»Õ•©µÜÞVXÍAE"xäÜÐMú¥ÜóxÕMÉ%{×SAÚÊèaV2Œnd̽å3¤wˆÌËôVzñžnªdåuK3ûÏßÎ$±ÐìÚÖU¯©°k„¡±‰ÜJõ¿=YÏž½µ^?iä™WC³:Öa¬XŽ 'F½8ܨ3î=(ÔÄUh']KØtë]Ê]ßpPúSç¶|lÇ pÏ pØ’çýì…øW€}î½SƼ²@ÙœƒÃìâBS(ê].•vãoàÍÅC”d­;øÞjýêy?¸Ìoëõjy÷&¾ÂqÅâqcù mm8vÔHž¸1—Ùc –ú=,7àQ^ÑF%ì-¥ÕOžyëÁ‡1­Ö¤À|æcw¸šeT!e8“>å¶ÎŽd?.†ã‚>-Ø DÏn‰ë¬þh›óš :E<°RiÉëÅnZ¼3vHÆ¢ nç+F|#æOÒzI.&ážÅv凸~ð0 €ØY >ì®ËðâùâþÎ>…$–­òÀ=¢CxÁ᜻ÙÔ›pge;«5ÉrTU[<ÖA!¶-ƒ÷ånÈRÅ0SZd\lã9CïÖ´Ü Ž)Àã€dè¥í îæ<¸ç&`Rã-—Mé"ÑZo›?ó›ŠÄ†še÷7q8»6ì˜eEPŸÄ oìØÁŠ’ÍΛa°Ö5Cí â¥[©Îbt¹u‚m¬Ù$0ÊD¶¯Y–IëthüâÛe¬H¥PH~•'¸Û¥ÕëÝ"I0´@âséE¶?>ÂY1˜ ¦&Å×àS+6B§‰³Â0ùë”ß?~©\gk½âëiž`­p}5R…±Xìøìª7­S+ÛKÖnùÄV- =*Ãàïê9ú„Ãc\|¿b€¸q|kBW;Ýÿ‡Åãòy|ÞG§Õëö{}Þÿ‡Çåóõ¡Wj”jý^-®"<˶ÈóZ—¬É£Ï(ëf·/PS^Î9Ž:ÀÆ)-¼ä3i"öÛ4j3 ¦Œ²Í3 T?ÃPp³¦ìš›®ÐâÜÖ@éKŒ· Ô]ºj¬aC±š‚½%1’4è4Òxæ°òBŽè!ëÌ å:NJÕ6nbm%6’›"KK›)Ä-Òµ1ªmÒb‰F³t™¯Ót²ÅJÈÄŸ+È)’ù#)qÄ&ɸ BJ°ºlrLå@Úó"6ItæŽR4’E6QP½/JCq2Û»ôœä½¯«²-Oh«NTój‚äÆ0»/ÓêX!Gñþ~€@O‹€€Ï¥‰bØÖ::4ÜγÂåfª••iW31„Ëi$°Ì¯ BÒêC6ÌhAü†RZ޲JJ-L¤ÛòÂlç)À »WL(Í(±{k´ ½JšÞ€ü‘7ðs10ÍQÜëLÔÕ¦—·“Õ£€ßòk[‰È¬,Õ8[mjÐR LJGØÍùQ·Œt_y4Ëì«E¥íÍ–¶ \›ƒJ™^ ¥r¥ýG«Q"]  ΧµÅv¯“Ž,ˆ¯ ì…-e5vZ…`t\yS5Ó¦‘ЍRÂf´ÔU"#'ä2ÝZ¡ÅšYf®p¤¹hèLƒŽP®CŽÄm:–åp]4ñq±;Q-S†¦àГDÁRqríjÛÁÐÆa›ÆÐë/jÛÉô~NÀ:^»–GQÔõ]_YÖõÝaØö]I ]?\@[  ÕÚëšñ‹ÍwV¸•-`§18W}5Xlºy­K…ÖŒ¼Ž¥ßù-+kD^ŽÁc¼Ÿ/qxÛoØK02k<ý—Åà0#QõÞSMÆ3ž…ú,Á (DbåŠb:,N-y"æ¡”Ò` s½ƒÀž›Â’MëÅ´“ Ðò;]Í•u*Ç úß*c{)Ív¶FøaÜ j(t™½†ePëŽE õ†9% Ú•zoLEo¢•ÀÃâ 2HFQ&78*¢RsX|í¥Y*Ç¦Ššz4OYµ95ûú^6Q.,Ö´ÛKDfÐÖ(E•:Gˆ÷¡H±6ƒ{³ŽÑÝc‚yHѽ¡CŒâZž$½ 4õý”‹ÁHjãÈçàQÓ¢*}²«•Å!Øûì{¬]ÂÅB„šÒoRT•³Èú‹ ‘¤]q­9—3qUTgè…E¿â¸Ôsü_‡¦)Hfãäz=P&B[¤Þ1M™¦JBž?^E-et°rjaÔždŒºXA‡“å*ðPpõ}·™:È‹“¾ŠQyŠ/¶ÀÎZ„œ"±.&÷8§DC{‹²\·ß%¤sÒ]͹$H&«=dX°!ÈÄYCA€hl‘ëÂD˜Îà‘#ä}º3²vÄ4x¤Ôž”RšUJée-¥ÄF; .E@`4³Awç7¨ëŒ™ ˆÙT-”L h(Æ¡V½éä·i1‚¸ ¥åáË<µ-ËY•‰ùÃg’ÁT•º±!Û2$*= ‰­;*¢ ‡0JXûÔ£›bPË$¢Èš#âg0þm¨…Æ—ëÓ {Ó^P·éó=èÃÎcÈ-$¹>‘µ[Î]M“©‹ T=bzñùt¢)…blí]²Õ¶«@JhÏL,m†Ôͪr¯V¥QÙ˜PBGØýƒ5 HÕ/¸×†‚P¼ï­Ô˯ֈL›…o¡ó)i)%Ëù © ¥zÈ)Àê–T/Åt“ “ ¶•¥¦dŸ\ CH§,«*²úþ_Ô’nŠILĆØJ†“ö¾ì7k0‡}p’IHQ»Úð‘ZJ2ÉPOE–Á].‰µ§k¨Ó›Y2 iŒ-;$ÍŸ£•Fø%ï7"zâ'1™?˜Ç™XÌq×9€Mìžê]ÞqPún¯¥·2D¨Hæ*ÿ¿¶êŒÓ+/±’&`˜kë‡kÌ¡q3uOD#(ÝýO"‹–€U‰W†'h¯õg2 #RhÒ‚'t£æ+Ó5_È"ÇT}‚“²/CU%¹Dh¢ôf=# yðÎ*ÄËclP ÝSäP ÌøÛY&rÃé}W¡·³I!/ÒNžc͉Eý! .V—²Ž¹¡æÆï²ôl±k,/.pÌ΂ÒZŒÐFÑÔÄ:jÒW7^èåòz9˜Æ§¢v sIf Uu›ø;Zƒ f5Îer©šÔ†»­;"Ù«kíAÒ­[ÌËw" ¶Ìáǽ;䦂( yzØ„]*5N ñœ•RŸ…§5bT Ú³N¡ÝâO½ÍÖjŒ–òu ]x¶Ê_ŠJvÛ8Šùi"Æ=GÈ÷ ÀÀ‰0¢´w=v@„@†<ë1”{~˸Aö>kîW\ÖÊK;XG)®á9‘]Žsªþ2hP $º;a9H¾µÒpdëß;éW 5;Z¡Ê–?²^©žÌÅ…¹Ñ_+í«½Ý2²·!Ô ‹NžeƒQk6–¸šäU^Î:¶Ü8þ÷o—sG:Å^}k­ê7US†öè1]|¦1°‰½‚ƒ¶[½8oÇÊöadº;»øÔÑlۃέ¤ã1£ÏœøŽór´5l ;ÀПƒzwÓŠÔžFÙ¥úÊw›&ÙâYð¿8Oú}!©"tºŸ~Åøÿ'åüÇÈe!´¸y 4øãëš í8U]¼§j*?DÜ‹(míâTòàŽÖŸr¶„NºãJµn†*ÂñN ímìR¶á«bªMêgÎø8O~÷OnöŒíÏbhgêö¦Øk­b¾‡¶sk®Ä’® )î` rÉkFï4ÉNF)°zÁ *6/0zjÊ¢éÔ—LÆã…⣌x†ÊÞnÖkdĆpú¬´øgžJÉ´[%<†É:èЈ¶F&½°Ï&’Ù¤lž"Êú/" ¾ h Lüðò>K” dÖŠÐ’#¼…ükC,&$táˆX¤&É*rnÇèïi\Ƈ´¢fjnôòªÌxê2Á¬@š)ªŽ òÞ8©¦½l)ƲZ‡ó„¶é©Ål¡ MäÍ0H°%Þ‰ê¬âÃV|ízñ+¤Qoäíð“)RáŽ< %è0`š‚r‘cþxÔlÜgm¾šË‹¬ƒñr³PnžL+­kf>Ì̘çðzÊ™‹ªw©nê2ÈëèódŽ~cŠñŽ\rÑvŸ,£#rÙk!ÑJÿ±qæÐˆ‰ˆd'r«ÂS‰Þk4áQjÙeM„œ„ÍHbâ½Ê<^H~%®co„ ,ûí RW%’[%Ò^¥Áœ¸á4€à³ìL§&z¨Èdj}léxï©’´KNÍ ’yfþâÄDž/ðDƯ Ý©ÒôÐf.螌0ÑBˆ´­üúDÏÆÛd$?攣ÂÞ#m¼î)¶íMØb+ào-Xó±&–(àpH›OŒ«OTòn/.O¬÷ïž®îŒé}$ìùh´À ‰2QÜ©؉NȉQJ`gñ"-‡;îŒc2€DЫ.Ë2Eêø¥Ó'Åko¡«òèÊÆMkœ1¢†+¼MC‰ŸŒ4ŸbìÀ| ¨Ž²a9ÃÈ nÈÙSP:P!'²JÏgª…°p›g>†] -è·2¾Ø_<³Ó-ª¦¿ÿn(…‘×)ˆ xñ©ö×e>‘hBQRÛïõéR§gþP‰‘-qÖêrÈm G$&–w³¼Ô¬ä|‰ì” 7:ðT“ÀˆÐ¹±6´£„ù1ËMè0t7Hª|cžzEÈx«C¼ù¯Yp5ΊÉ@•jÂÂopÎÇ8PlºÓˆ<»±Û Žõ|ª­`Þ@®ŒB^%ßI£OB)3⊀—ìòArLÀ8 ÒóŸLÔÏMÓMCÆáË&4`À Ç3!RµF³óE|H¶¼€“S†÷Sþ–ŽÖ5Pïú)EMFì&Š~/,‹j4C*w “0eŒ1®ßKÎjPuIÐSÒ~ÿjë7r¹3à;ËóNë7p †ãSÉŠëc}U‘Y´m‘8à­rï"tePÿBl~_ÐtA-9N› 2¿©L7q’ÉæùCÄðÑzòµVÜF”ì7I‚qª÷#Å¡$o5¦®+ÐO‡þ„b …r Î@J€7Muò# C:EÔ ²Ôï! ŒüÚ3&¡QÌ›,Ê3Cñ÷ +ÊÙÅ¥*öHʈ8lìƒbØp± [oÜKÕúãVÌ ]qí*2Έ‰6! IË ¢øvgBtp]‹ØG¬ªÊ+¢þD‰æŒÌžQ ‚ò6mb¢¡•/aÓ´ÀÎo  ?êèœkBôiìÛq˜äOeUaoñÇ t@EVH¹X$ÏVÔUæb»lv‹°rfï!8cY1OsèŽgLÉH%žÁ2zõy,%ð§6Öpä&ÛJ6)®¬r7Z s E´ÎöpâF(öVùï^ßÂWkC{öz­4φ€ÓÍ2¤NBb^Œ ø’  †ß‘\Õ×~l‹#´rà˜MÁêAñ9~€¢ —'r¢ Mž™³l—至l¹¯—E ³‡'DtfÈMŒÞÑýv‘pÍÖ¶¸uiO¦ÚI]pP ~ÄŒ5`kögW¡`SãSçå!QUˆÉ6¥Ö± ~±‡—|UÔr.Ú¨kz›…¯Dð`ÏœLEPµqRÊÏ„ CX}i3Ýtiÿ4g5h jtP´ª«)øfqÞ¸Û‹uã³ß‰ôê4)Ý|Ä8f7Q?IS5‹@îxÄâÙ@¯²¹t0eW tj¿q#¯q€ÐY–c–YfvA²aÈ(Rp/@ópÈó§hmJ’‹µpèÁQ†YÔõE‘ÙIv;30ŸR¡jÛA91Y™.§Œ €± |†6ú‹M¬Áe‹5NÔ0:èï°›ÙÈÖhƒ·æÚï‚j™&¡oI÷ZÎ&÷‘Öñ‡Ùj‘¼àJ¹h¥;l)sVrŠ·>nQé¥>ÆR•òœn븛„íÔáMŽN ÁQVúιJ‹Yƒ–˜ß¹ÛÎ0SID.Œ)Ži‚ºn˜J@Ê f€K–”Ò 5Ko— 2‹ãU7G‘/cm‰TÕG“Žço««œê¥møxí¯ ŒVb­i©ËGj§DÒŠÅ©E2#·íH«?P7FêªÖ|0 O03‘(‘Iø8ï4«F™+wFV«oõux³ÛPY3B¤‘4] Ÿ‡éö¯¹Gò» nµçc™³iJ›WúñVPÌàã™›é%w2ãXÎRµgÕŠ¯PgñEOKŸ©˜ù0•Ê@2Là<¹]¨;ƒ¸[‡¸ƒÌ†ÁÁT-4’)cd–Né}OC"væ±~³Û!§ Õù÷Æ%즅Âmd@¤õY¯²›ú¥C“Q´½Öõ¾Òlë2P.5„Yá²LJzó ×•fžª¸f™7U™´ZEv55fº¡J“‰ó×¶¬<_F›*¦ˆUÎ;4ªšË²ÖÊ()Vü¶:\›X­¸z˜óoŠçù ¡@zÖʂڨiÁ°¼dK’›¦îÅn–° ¿ì»Áø·Á àÒ €Zû‹LÀB`À<-Ç„]"m}<ê¶·TlS.Wõ/ÅÚån¸v÷™Ç{7p÷}÷’õ‰²$?[¥ËõKâ•ó/<0„í]C¦õ|9´U\ïšÃp†4S«ÍYQXðµ£ZxÕ+ ƒ›µßËï=`ìj@±µê»c'âøõÍË ©õªåÕ5«FâoTŠ.‡Â 'ÎA0hв ‘¤­¦ÏÆ7ΣÅÎݘ\#ðtRO·ÀÐ<¥Ú£Ú[ˆ! !Ø¡â wÏêÊôK=`wcˆºÑ’0b³‹m /S¡t]¥S~Ψ‘º_vsÑ™G:o©LÌDTÓjIԼ݇÷ø½"öÝqà4/ë'5šÔ•–g¸´Ý¥· O¶€­r‰Ž¥ë#hËŽaôFPèQ¶J'omÐ4úÂ>>à3ÏŸGIÜÏËjöR)°<Ûyeg½«¹å(‰—h>Z+Oü»WzˆzTÞ& njÀ*a† !#Úsœ! øÕoÞnô{ßÚÑoyÕgÌÝàŸ¥3Äý7|–tyΉõ—Îã[ukØ\ô05*öSWî•(~Ó Ì|Û0CÄ1\RëÎÚ¡Í_¾ž¶¬’ÙÆe0¿ñ›¼Q®œžþA ïO‰ñ´þUÅÀ²)XŒó¥ná]\qcÙ§PæMYÁn²¬.šë Q>ñ˜fàœt‡}‰Wc9®"Bt`,ÁyÙÞ§û³ûTÒ*!ÀáÐຠir£ÒAÍ9•×LØJݵ‡d„|€gÈê0[+\Ô\jÕ‚à ƒÁ p(<þˆÀâpÈ\ÿ‹Âá1($/„C¡0ÈÄ9Ç Òid^•L&2I´6-#’G"’ lfw’¦R¹¤â‘&œÅ%PI2' ˆE£q ~[8ŽÏ)2êì:u:•Èä³ë†ÁI¡Ç+•ûUJSi‘W®0Ú=j¥(„\îÖ‹åŽe1³W¦°«DR»w·Vhu«•¦qR-¸KnÏJ‘ei3ËF÷?ÇÖk¹¶}@”d±ššT;Y€ÄXñÜÜ‹Uy²éáù oC´ÆÂ'χãä0 ©ËGÁ0P9‹étú^·_±ÙívûØh‰_áô¦™übÍ%op÷{o‹«²g%™™þN%!£î=sêÖö2Kâôô*Ê"¨ªkû2Š¼í²¶‰3êDÒ¿¬²<«6,’òû®ú×¶¯K¶0ð#jØ)Íñ«‘*¯¾ORÁ EŒJž<¬«èØÇ3:â$ðZ€À-qûH¿/I|T¾¨Ê6²%©LF¼$ò*Æ:Žl©­‘s56òœŠ›Ê ´(Ë¥Ò‚öÐ7ª×ÁÍ’#:0M$$¢)Jºì”¦mS-(Ó|õ È1Ü™!'Ѭ@Š¡k GG)„ÿ>Ïå öÍ4|­-Ë2BÔÙ³Òü— Âí ¥Rlj|Ÿ‡àP ¥àÎE;Õµo\W5Õw^Wµõ`X6‡bX¶5ˆÃÂw0Á0P°*rCÎݪŠ,K7´Ô¯HíÆ›§/]É#°pdË«ðÃÊÈÑ,u?<1P§{Ú”üovß/³8ÊQ³1"[ôÄ y¨ñíüê3E‡8kæ}4Íe=L’ËhàÀ6¶7>¨Ñ4[It¢ðÙ/­Ê„¦Ë‘J™OKxŠ™Ž4×ÙHÎö­±繋ªú,ø,•Þ4s}@T¼E„¾Ì[ÿ‰ßšc ÅJú-é¤c t)Ý«®«¦¥ùü5FÎG„ˆ1cí»v߸+¡ /¥Ôw§«Üs­J|Ï)®Ö¶k¡ÓRÝ>hÃó:éŒ,©^VÂ78±x;œËuÌï¼­ºÑË÷mãt^Ü ÷p\pä{,^ Ú_dX,ÿ&ðï$…ªQšÖôØR”+KÇCµƒ“ã}Å©²{Øœµ0¶åb¶îDÍ? C{ɽNóe•D =JJu”ï<ô‰Ô郻Ì:fLÿêz7K»x-ûàãŒSêMúmhì¥p9öTOT)õk+„¨×È•T$i F³ö„Qã÷fà)•È‚\ã^HÁõ–R¬«GÐ)ÀyY«Vã at/†ÆC8i a´0â\8áÜ9À0Š– ·ÌuXc]­YÁFµàK¹~q-ÏADÞâ^ »o¬!'Ÿ'ª¥Y2¥}Ïèɾ‡F†Ü›©A.(fFo•!¿Fˆ ³XÀÞU#í2.±•<øÛÖó9éF8Åä°»3ˆÊI#¹„’¾Î» DQÊ7/7u%"»`_ %DHàˆ[x]#<ÂÔŠÙ{iuÜwí¨yZêB*ÉåRb¼3ÚTKØ?T’B1)?!UWBã™gˆ¯e8Q(áƒÌ›Ž,߸’ã?âl±¨F•¹´?A#"(NK¥‡Ð'Õ.Ú.2©¢…)7æê–¹¯)í5tOJÔìöttºYHÆòÀ­`X‹ÐÌ#&]°ÁX; al2ÁC8]‡Áp'@@ È4èb“«žëÙ—·zÞ¨`ÌÒ§°V[Í9¬Ö"bîš«ÅËéÛ#ŽìFÔ¶ÔWïšTóŠ2!§ºW\û„+íA—²Ä×X«³0“Í8ºH³>n™óü5" ÔD`kk!bbô©5!6kT í»/}ÉPYÒñnó­]r±l¥™¢‹›É:t€Ðtðeþ‘Í~–ÇkvšMÇ­®FAÞ¹$™›ŒlT˜ò¿KЖŸ©Y˜È*‚à‚$Âxn‡àÃá¼8v˜^¨Rêy§Ù5ž&4W^V±˜èÎo$#tw ñ[ùîd.¼"«ÈÊ(É»åNŸbÕ\®VE`½J_– ªG¡ƒ:‰jØôjˆPН•D•£d‚fSÕ‚QK(ï&æ!7ŽÅîÁ¨<Þé;ÞKÇú)¸,)Œ[QsˆÇºù×,gMhÆÕnÜÏ[“Zå!u¸rYzÚÖ5%Ù¼ÍÄÕ–©ÉP‰ÓsŒŸuJöÐã]²‚ú‹ëxÀÝi5Q§§ŒqôчH\–šl.þÒÅ:sÖ“ºwMæYÌ©«Ž8=ð% ¡ø>Õ„* Â/ì=‰±v6ÇÙ$¯‡‘n'ÀÈ Hæ&œÔ‹;3E|Ðç¾®ïjõ“nç\Úè¡´y¼Íž<šõ½ÙŸörþä—…ÅKñA¹á¡iV—f®°ïœw“žÌ¶ 4¾Wo|kð2Æ»¨ûw;t_¬Q­mÞå+]g쥻˜ÎાøB(³MŸW¹`$ÒÜvÞQkg{1ÛÆÎÂK´y¾ô 'Æ¢ªwçf¸®¤yhî= -âd)M•Õv"ÁvIduŽyýž\êG2ëΜªjAM{W.æÄäÄBj¢"PÑ«ÈÒ¹q±?Éø½.tž-ÌY÷Á.r²vïmêþZ— D’ëúqÈZlP—ÇS w0(/Ÿ.dÌÛݤþ—\5™/ŸE5k“³º5êlI±åÈõUv"ÄÙÝ$“VAÝ¡ïÍQ€mZÁkî 4ÝÇHŸì¢‰ñbNwDÀp—÷G»aÅ=ÏWi ‚pËS—ü,éðêó›ênŠÒÜOA,®0|‹¾æ¹БGÈý×ÀW`Wî­ý·÷ÿçý.ÅI†(W€cÙªâ|¾ÛÓ:òÞ‚.7aлZ/"Û¯‰Ž¸‰Ÿ2Ø>c$, “䬲ä§:«rå ;Ë ,¶ªí"ÀAQÜÖÉ r͹¼®¥S–¼*rš»/S¾4‘$±ž»øÒA«Ñ8®ñÀ¸K™»Òî­ë9œäÂ)ó”:ç¨i³â°ÂªêÂAýÁã2ÚT¢³ðŠ‘ô9 @šò‡Ásħ¤1² ô§Qw©ó䌼0;ô%£«Ê®*³1xÑh{‡+k ‚x7°ËýÄbºÀ./cÒ±;¢3#Z«²òÿ“Û*©‘>bN£¹Á¢’?[8½:Ï È¼‘œŠ ‰z«­“ðC±ÑËMžA$ä„L<¨Õ·cêÛN¹S°œ4ÅÃÒ?Ç1l =!Ä+¬$Eêº0÷3Ž6ì$Æ»‡8j$¤É$BÉAÀLb©B—iô“r€Â%¸Û‚˜{è@¢Œ1ú 4i¾´Y*âÚ»!Qš¹Ý+ ™”#¼1¶ü ­¢ZÃ<Œ|Ÿ ,”­´LÊ.T±™U”ºà>³€0w¸yº{¨‚ˆ:Élᛀ€€€å° ÿ@0`" ƒÁ@0è„Aþÿ…DâPȼb †Ä!qÉ#Ǥ2¤–C‹BarÙŒ>a–Iç3 4ÊI<“Ï%ÓJ+A¡Ñ£óØ<.Q¤C#Qé¡”Bjñµ7K—É©Ñx•RO-•M)ÔÈ­f{DµËêu›v·­Yhó EVål°Y!ö8n£ŸË"2 MÿjšÔ¯5Ëì6‰]±dé—êþ.:Àe3yÊû/˜ži1¸ê,*;ˆÔR0WÔ«EmÇÆò­å+›Øgó±l%sanÝÑø¼ -BÁ_ŠZµÝ¤›eФã:Øj”Î)×åm\è—Nq™Âó/Y(»åøûƒËÃ*7{÷ü~_¿ç÷üÿÀ À, ÁLÁj*m‡ºT§Aæv€€·8ÎÂ>Æ5铼´¶+ªÐ6m ’ì0kLêò.2š;Õóõs_k­]󺊒ҸU˜<çR2ÔžÈÑDøMšÜ%xÞq£I‘†âæfVm|‡ÐP ¾c)rò%Éòœ¯-ËóÏ5çª%ã¨&àü¹böÙ‹ÍØäÕ¯K”ÉN&y+[b}°W5Or‘6[ }lìÄ›(Ð]Û#ÑÊÃ!+ЖBϵÉÝ‹bS•ýö»¶rÕç¦á’ (6Áž3Uiè)ÖÄeÎB·6O…M'!à> U¡Lêæâ„QŠGýs®””¦ÃSO®ðÜ£‡þjÍã3,0­Åó)”ó:XÌŠ-3çZýÙ³8hOÙE4(ÀÐâüs20m*§æ» ÙiÉ}Ì-¹6HX B{ñ]E36N½ž´adK )4Õå[Cð/¨„¾I5[s}Y0¼Ò±‡l‘%¼|°ªJÕŠpUf®¹;iÍ $9}²V¼GZ‡)e噤Kù`mRã ‘ž@5G"¤ ;IÄé©5 ¤ŽÙbXí$å8%Ù¦ÁŽRñ¸ÉØA\@û'È]†Gç„ñžSÎzOYí=ܰÊc\&Šð@8 €±eʸaœ!Ã]ïÔÖGhÊÍ!³J1Œï¬x²ÓЂ“Fo4´›Gá{1Xoäö<†XÒÌ›Îøð«ò›4 Ó΄ÏQjX» IŠv±ŽS&m,x4Æ¥Xk~ý-Aú˜3K· µ-“Ê?*ÆàU«îÀË»^ ÃØ}€4@ ¢ Áø`AvÆÙ>àŒD…¬ñ–Ë 9XGg@È5G8ð30ÒÝ¥iš‘QcüM²ÇF^L¸md¾¬ªš‰N/ŠoiÈ©—ºùçµ hÍÎÆ(çP:=ˆÑ&ÀØ*%òU§¾Íè¢V]°ÁGê¼aš“œ*nüT‹š«!Åã™ìzÛØ ÿº5UÅHfáâ*%‹9Âw ÷‚îZ5c÷b¯EÝ*¥ª¾¼ò²^õئ릹S£ÑeÜY]WT­°ZBwÓN ž”Ï“‚Ÿ£íB»¶'^ɼP³·\ßYâC²9ØC1þâV6Gí®ýßüð^ ÿ†±b#…ˆÖ` €fˆÿ™¬\Žû÷ÖÍÚp±uëàÍAóö{@ª®ÓråuÒ—}¥w‡UZÁ;[‡ …æ.bjšñ¬L ÜØõc”ŸþÓ®£QÜ›³s @ÕøÅ&ƒËN7Í[ß§ÎhWuÙ>2÷®X¶‘æ?Gʵ¡ÈYUv·x?M?ÏžpZ°ÏO=˜˜.Ýw+0=oÖê¦}Bu’ù$cìÑøÿÀ8,à®@B 2ðÈ D ²µ,Â#|_*Äz.ÌϯΔ.„¯Iþ ÜMî® zælP).Dò¢…ÌìþÝ$†ÞÊšn ²åm~…®èölDägìçöû†¾âÄ8·'¸îÆ'_Fœ­LبhHZdÀ¥ ‹iÑp<90nmù’-¤ÝïXNJÆšèPü-l¹C¸ì0@nŠ4–­œinO†¿Ï†¯ &ô©Ê*ÏjĪ8¨(Þ× "Lïš: Ä(ÒÔÏŽœ®Æ8­b÷kúÞäŽjuÏ/‹pýDx4iЮò>`Æ1EqI¨¢$ !àáäC üQ GjP½º]LV_Îs¦ÒÀ­ó Îwèé°ÆÏä÷¨àÃnP†'ä“(ÝOâÔ†¶Ù-”û. ãVæoO pQÃɆ€ç„âÚ¨íÀ®dvÂGØÌ,úúÒyŠ=L*&Mo$¹KVŒèbŽ‘ÌýPîopE£î´ãûR I\ûÑ–Ã$†Øòæ€^Ž@Œ"òôçNÁ$ €æ àR ÒHž F@± Œ¢|ÌÚ¡Çø÷+Øýò•P@­DÄí0|Fæ:öËöVPÌä¥üE®´fºOæóËÜ*øÓŒΜdÊ’euд󃈬¨2xñè»Âìc1ØHDY¦¬c ”ï¯Q€÷G®¹èÓò€L˜ÝÌ¡Š$£ì£Ð‹?ªR¦zÖÑæ½°¹ªÚ¨JLþü…‘*о‹ˆ{‚øOç|ó² ‡ðòNNŒÃªë¨6¶¥ßO@hè:Z2‘§p°ÓJ¤¿ e0OM2­.±ˆ±0ûN¯ Oóâ˜=Áô,lq?$³…8s‰8³Œ"¡üáüa0 ÌaØ å6+€gíÊôz4øJÜßl»:Ï ºÒþÄrüýpZ¿å gQ¨ís}SÀ: 12ìš)ˆw*»5Z<ѰÂáÃôÖ/q@ LŒ†ž¶g”oC=$X‹¤á41¸ëòÒ‡NJÜP”Ï.þÉpvk*a±c&&̈I ŽäÎôDˆ,>¿g“E°ì´äÐ|Æbº Q#Êʪ-3èÈ'r^פ¸„&T$ºiÅ?‚¸²ð±Ò,À°ÀŒ àZ€€ e8ô°Š ¹%$âFª6ÀŒ¨ÉÐáÓ2+æ”Oòð —MCdîØSòjMè ¶šwF8)æS*Ü€“ôNÏG ¥Õ<Ò½4g¼†CRà -Ðhùà®Ò£;Oº°1Ž¢°þ4M”“½.öHˆzOÑ Eýˆ¶îÅOÛND¶¼ œîʵÂsB4^§GÌÛîvQç„ÝÍñ6tÖeXíjj÷’™.w=o´ó…ùAÃÍ)Pê‹>uÎtÚa•%’äõ MæÜˆ•›jî¡QˆÓi¦ËÆMß­p®æN=Áù7À=8AK5é^µí^ë4Á‚A$¡T€M+ñØïÒŽ*#Õ×MEcï ÓUaïðEr,J SæU/ä“48 üÁÅ/ Ö ®•Õ%*‘,5NnétE( ê஦èÌN€Ì¿j]%¶\gðOTÐô‚««-qy„ÇcÖfS+’¨4,º2ÌÃòñ]6:×åã.)~-E­Æí”@þrÁZÑüŬÅ=ÄºØ €ÑJ I ÿUa£Ö,ÜáâÀ( „@hàŒ Uño')$à®S«M0²˜-Ôö6°îσbr¾«Ð"Ԭꆮ¾ö2†½ê®Mj•½&I>’´C°y7¬êÍ$™Ì ¥µP ò!Âé5¡SŠJV‹‹…A‰³dõµŒÞÊ vÎl[>³nACèCBfÁ NÔv­®¶šU#N•½®,…œé@úËázRÞh¸_±lçÚÞIwq3ÌùÖ“)ÏÈÖUpTBy«†1¯iGÛ1ö W%=#vFõ(ÓzÖ+G'f° œx(ÆàÆ6õ8xAaÁ:Œ` @q•›i¬ÂzÉ"9mÖpVYb)©ï~¡8?*tˆ„ËÇ\6f,NŽ2*xügiýOp‡ H+['ü©øPâ¦d^0õ¾ëµåU{&•…“t‘îOíí aoå,1)a2Zï³;ìøU×ÊÁ³Þ‘˜E.ÌG3°–¹~ކèÒáFxw+¨? ràUSbÓ[ÍJµŒJÉ£®œØ×%¬a.JÀäÇo…6;·RÚ)Áî¡ó9Aþï àt œz!8“äa Ǫ°Ž?ÐÌÌðÙPâsX¾ ‘Q r³>Æl÷Á{ìkŽOPÇX.ÛZFR”w‘Ÿ.îiiqzÅ"Ë;˜ô¬sMµÅŠñÓ(7¦ÍN{{ ¶Œ·~ X”I¤ºM”â‰âÁ"á´à Œç™Gf±ˆ$CGË™¸=?ÅfðÖ¼ËGÊ š˜¦ÖMÄ}w²'!q19°Àhï2qsf™v©¡ME‘iqZRòÎYUBP' X‡Z—Ðéú4±LYw7CDî©jŒ³rš}húp⦨Án2þw0ÄÕ—,rh2íÀè´g£ Fê+ňsËiŽe–rb©’iˆî1íOTÃ=7ˆñ|\†s4×5RN¥¡¬kK¨ Ùˆ‘"àR€@€HÀâ@²`tºO¶ä ”YHû¹®9’7±ÙE)€xuL»UVÓíáZ3»…¹ ˜Ø£¹w¸âÙñ¬l´õjd˜Á[ ® ógËFŒYsgû{SkÉFïf©kH޹šä™Ù´1|zF7;,ý¸ÙüßC:•PŽ«)-÷7 kÔk‰Á|óÝ·±ŒEçÑóuÇ‹¤kS¤ @rY®Ü(@\/ë·Ña©|ÃX«¼¹í³*Íéx$nðq`@zE·]Åüa$†!¢ ÁF`*@"*à–ÛòáV–ZÐÓņïBëZ³|˜ÏguÌ0ÐO7:ÝG&S»Õ‹H;1G»>ƒÌõ°øOÊ×€aúàô,Ó|Ú6‡ãˆm+ó~ø[¡ªß—¥…q l%Q*q‘ wsX``ˆ³ì²ùg‚b55¿f­¿OÅqŽŽžh´¶®ÁHÚ˜À.ÜÜî8O½-ÚÅ ¯Ã¹Ñ¢T~÷¤áLó!ÓXÛ˜=7øáø/஀Š2À‚ hÀ cפa ¥§U4ÕÓåƒ*Ö¶‡!»¨–Õfûظ‰7ºMÐüGŠYìÝ‹‡vÚ3lYª-·=œlÜ)£˜³7ûs“ù|ìje¯áÒۭϱ ´4°9ÂÞ´5Z{¦øj/½­Àø5a ØoeàËã|ï1~ÂRRc¡Ú;º™bÓ +IYnCáÙÎ2Âöô,’÷(!ÂÌç®íaC=°¸ø §N%‡cŠ–0{éJ#¾bÔ|”Dôø°P"ëç" ÆnóÅ`Â]}è~‰è¬x!Ð`ŒàÚÉ6…ÇÙ¢Éü7}gŒPEo;>ðëzμœü l „“û¯©eF˜?6»{>W en{¹ýU¼"Ã+—ÁÖªU©Æ`ºrÌôy2.ÚLÜ©©•z’ƒS=䇀¦’ùÛßWŠó6û‘}½ÓÒ;P1Í%ªÆ|›–S¼8ožùù£#Ÿ{ß ü¬Ä®[=S0æõK6à±ßòÚ4«,ñ¾œ9²§ç2xè Ë !ë"ÿ~hÀ4À("@þ Êø èßœ?ÙEØZ'|:·v2¥<|ä’ — ÂÛïA-û‹¶ÿL;!]©@œ3Ý0i Öq¾âPßád³qb_©³³£˜@­É™ô ø‚¿ßðX$ A!p˜tNƒÂb1hl.„Çã‘80D¤xä~G…B#™„v1•Æ QXŒ¢“J£’Y4B/ŒÁ'óØtV7<Ì¡³Éê“QAâÒZÔJ5\‘CäJfÁ ¯Èj0©-ªA,–Úæ•êüyd£Ö.4úÆi5‡R.”kÄNÉ-³\%¶;œŠDœà°÷‹FF)•Öñ×é<÷ |‘R'ܳ_”[mVi¬ê»¢ÈܲzGËñô( ‡×¦$¦/y½ßoø‰ÅãqùžW/™Íçsú—O©É˜W)%KMvìnQ)º]|rìoª;CÄålU”ƧíÒ[êR \ºC°ýµ®C`ο-sè¹5LƒÖÍ0Œû$˜*»ÜÆ?kBº.ì³$²Âéëôµª‰ª}4Š @®¨ì°±))"Ч4*∯5Š“(±©ÐÊ6Œ¼°z] 'q<@·4­Rôó¼¯|7 ,“,ªE‘ÛðÌ@«ïů:ÄA bU0 b‰´ ÂV¿¥Q¤2Ä.¬{ÍISk Ó¼L¤/4j¸ú(³ròª63«xØF­óN×2²DHÓ7‰|‡ÉúÐܘ 2{ŸgÀ¸‰A8(‰(r À³«UUue[WUîFF Œë:¥D-sFËì|å );[.h†ãXÕ½ƒWÙK¨W;Ë2DVL®}Ÿ§à8‚Åh´CVÃq8veÇs\÷EÓu]weÛw]÷ƒ‚€€ `…ã}_wåû_øWŸÈ@`J‹g™òz€`»C­Tú¯Yð\Bb1T½Ìñµ‰JÍIdA-+÷‹âñ$¯e.ÒŠŒý#qÒ/`LPôã,±ÈFigM–G#Ï9Ë1£É~r ?©}&iöqŒ0ÒËKBeïF‚›¯IÑê}ô‰÷ {á¡ËÕí°Ï‰] Öï¼+⪅#c¹-zúˬ®ÒÔi1Œ|ÿìló“¬úVþã?ÔHÌí³ƒ¹ñÌE@f´ÍLÛõfÊ3= <ÐÖïµEtJ }ŸÇàh  ˜Ë 8‚ÓØ€Ô‘ûSÕ8{ßwî¨FFŠ™ŒãHº¡5+îB¿è[’ÎøÆ:¤)b,ÂÉznÁJùl±¦l›âƒÅzqGsG²Ì¨§ÁÐÃÊáö~€ø C11à?ø`€@x`T 6@ó˜DÈaãÔv@^[8Oïy ˆŸBDFkQ2<ÇË‹Jyp¨q˜¥ÅcÚz+<»$òNùœ»çLÇ¡d˜ßMYüsJE²$sT3™fíª&C³$BÔ¤Oqä)±ð`D`˜¶¦ÒZ"xˆÍ•* W,ª™C•Їý¨8f+bTiq‘%~ƵZâ ‚á6cè*°†ëWÌ{’x‚AÏóÜf¯Ež¾´†­‹o/΂!¶Ä¤¬srQ汆ĈÑsד Ù‘¬¦*èsY­â:¦t$ÊH+] da†Wý!¥Ô»—’ö_Kù0fØ“c/ñ0Å✀cÁ :Ô{Pö"˜Bäã€t(Ž!8ŸáŒ~nÆãìß§¢ˆ°µ¶`Ð$$šg†OŸ•vÆçTsóŒö=G˜Ôg38Dpwä(‚ @˜Lz!Dh•¢”V< ¦’\J0-å7Ê å= J)Œ¸Æ¢cçHÓ*a~iœ­Ob€aé)a'3Q˜D].ciº—¶#PÜVšp›¨½¸ÒþBG˨@ Œ É.hµSª•V«Uz±VjÕ[«•tåt$ÄèÍ@€ä~äIÚbW4Õ¥†”ätú“,N87‡«8ãÁ­HN,´”ôÛ9=GE'JÔæOòl'åÕ¡VæH‰Ùìó’Mþ0­WIe”¦RUò·HdëÛšÀ{A.CÔuz×Zûalm•ÁHË>†Î{àóG5àÑ'£?''å°¦½ÛØT° „ØbñçË?Pkƒ7²'ͱZJ~í o(2D® CúN¸ý/ì2 ›gzoUë½—¶÷^ûá|eÐÌ£X,аôÁð¿‘A¼ÎC{,â ƒó‚2¤Y®ç!ŒC’×þ5Ÿ•r®û>Žù¸ÚIaqåsîtU•¶L ñÌ;áœñÄ¥%¹ærÖ.$š´Ô‡Ðqæ%Âe«Ëc|qŽm„ˆ )iÝÜFzê;Å&Å-=˜Û”déCä­¸R3O¦Y%ëóô*Æ è\ÞB¥1½4YîiKÙhÅ’É(`†Ü÷ŠPúƒîZÕ5޳–sΙ×;g|ñžfÇcH&ŠPàk> cŒO%ÐLNú‘%Wñ9ëR8ê±i$bÏj¤Â‹$±U”î"|hL£¥b‡¬E#’òI¦PšŽ¨’SËðE2š$ z~|›FGYAÖͯñ3p6”|ÚŒfPDÏ[7glý ¾ Ž 0§IWEÜšu…ÑÆh¹Òû!B…Üfw%iþÄ^ÂÒ'4¬Ë­ À‘#uˆšÉàÄâÂüFS<àkæçõTÞÑàœƒp~ÂxUò#â¬j ÀÞ-ÄP à*J,%;8ÖXº÷Q§ál•¯ðMÛZ×BÅ[§»yIIM˜£%GÅ4Ñäbin»$ënÏ7vjIDîÀ{²”ÞÒuIò“wÓzø_ùJqÛ£'3Xç÷º é¥üxP.ÃÜÙœ/¯uþÁÂA 75J¤œ®ùSim Ñ0êlh–t¡Í³a>÷ÅÜÒ,3·¢d*æñ§Þ^"óý[#ô# ¾màb°>@õ<2gÃæ|×›óžwÏyõÎ ÀWCàz/@Iò²>jFXÉÈn®-Õ/nô|s6W¯£Õ0IªTñQÎøz0¶N•çÙß2퉟õÒŸâ¿&x¯ËÆm&\'d¨³I¤}ÕzfÃß½_„η²ýëýŸ¶¬NÉîÎUÞ›^ ö;G¢#¤UŠ’zí(Ò¸²9-ú¤±‚0;B”1¾•øÑl3x1¸÷@œ @¬ @¼ /s˜u‚XRƒcÒ‡¡†€ë¹:— \ùÊ>¹ì;úÀ;»r©áŒ¸Ûð¶ò$+¢¸ rÔ@cG™q30‰ô©§7$<È:Rä Êx3Iµ©‰5SžI«+ü#:xù!$'›q8š°Å@xÈy„³­6P"ÀÌ4CL5 ø]'B‘7”,€œ ÞAãl½Z((ãJ£’VA+ì «Œ¢BaåŒ2)­&¶á P«²‚n¼s¼0˜’@qü*pa C\NDìODüPE ƒ ]pQ€Y{AÀ¿‰íÙϱ6"‰õB;2‚2\Á›¡\ÒG ò-Ûk¨ó 2шÑJ0µ¼IïÃ*$F­Ëݵó~“s! ›¥:Ízð¹æG&Cãê5ë‡ûóC >C4QGŒyG˜é HzSaÀR€›ù(°ÜK¿¯úÄ¡{¼|ƒ1*Ä»£Oš„X%{N¦ËO6(à–BÊćÀs€*x1äzHüI ‘IO¢À8…ÈFlûŠQ¨›4p±1µšŃ$§êã&’, +‘­º'&ã+ÔÄ#¢:?ŸÂa´ZëDd—¢ÄGäµ3ÂF™ Së!(ÑÊríšœ Úÿ é±­41‚\wT3É$¶Klǰ'6,A¨L3;àJI¿³4©ì=J3ºÊ;N>ÂÄ;žH‚ÄIFi±«²%ª1Jø¶é3IÆ7,*h †1ì·M ÑMÒM+†(qx'…@7€€|͉³ p&êÌÃéé!«í22嬻¡Œ‹\ÂûÕC«Ÿ¾Üd™kH'ùó>óp¾„¦ˆ‰2Ø“­ô£·è‡Ì‰å'óB<(Ê[å©tãC‹\Ï ë6ê¼$™Ê aŠ$vË@*LµÍ4ùO›Ïǰ&’’¤:+¼»;4 Ì!¶ÁÁ½4;‚Ã6º™¹Ë,OÀ©Ã³05©iÛ&J— òë©ÔjHy1°°ÐK9ÅÂiӇ؀x DÌÐO¥Q]Qm yÓ‡à*…P9†€t†ÀÈ‘.Oؾ£(ô»ƒIë½z¹Iê:Aá¦ÆI§«z»”lM«1ËÊ嬋a½{ú“ÿ;rœÃ¹ìµ¼Y°úpC¼‚4²w,ºIÄ[[Ïh>Ï|øÑ}:S«;O²ÌR䃑”A,ÊSQ«»Ê˜€ÌP²7&£º,0 ½Ar¬ÒÏPqA!cC¥yí©jR¾rÁ)Qí‘43x0„õ;URU-SU9VpL™­±†A%>°ªâ'³Ñéµâ¥§U?ÔÔ8Ty¥ÅœD¹-'mMÊ»ÛBSâ?ÝLPÝf̨ü·=YH‹°ù8á͘èùà 1‚U8H#UErW*×(H‚cšJÙãÏô'?¤ÊE²™Jœ…Æ#´ù¦ ê=¤/4áåâÇSµ½¨¸ÁËœÅØ3¢˜³ãØ &™³ Ô0*X}ªh 0UsXÝŽXíQhH@Q„pd…€9L±ÓELÈßÂúÉ.æCÛ¥¥€Ó.,…Õœà{ò72È¢PÄP$}_¬œ.>efŸœêY!7’Ý4«Œ¼SqB­(|K=p×Úí¯&tlÿÒÄ@Î*Æ“˜HµÚk©c©HsSðÔµg@Yê ¹Æ(Å”XÓ#NÙ«|´Å*ÉÉ¡¼*Ÿ$^‡ùk‡à…ØÍ¯ÜÉ\Ê@¸8ÈD…0i…š³}ÖÝ?¨e˜‚¸Õèø+{+7µ¡·Ä¤,ݽ·E©ZBÅ"²ê¹2ÇÎd­"b)wÞ°%¹´XáLˆÆK&ØSu[ Ö‹¹îC{+¬ L ‹e[1íÀ5ÑNLº‘¿£#¯\9ˆ‰ÕOÑ5Œ`#cŽ9cž:&Ü„a„¸LhT€€l+bš È^*+m»´B²îLC‰³$:mBYaM½ Çá)JZäœ%Ko:fâÄ8̬WOé¸5¼º]$ÆÓ]²¾¼µt1•6Ì®Z5â.xÃKb)×:åî_–$D¡¹ZÇ\*²ö'“WS Âû"%ŸJ”J#²µ)¢m¼ÇÚ‚ÂÝÀCªRñÞ ÓK<¤ÎƒPeþug^vgiC¬‡à~‡é†‚ðGENƒßÇý4ÆBeŽ R¥3%EíC’8̈©F/¶ëí_h"hPÕµidÓ62F|˜}Ïl ȹ¶ÁnQdËN•¬VmCÙçÚÀy„¨$b‚>wiŽ™ ˜„˜%;Ôï$ÛýKš¤7Ê"A§Ž éE¥Ó=Ñû ÎÝgŽ]ié5õ0¡êœÎ6ؾtiž«j¾¬jÈå q†h1… >’ý‚(¬êìßzè å²Ä áNZØ)Æ¿•jGÝ‚áª7¬‹`®&ëràÒÁfkSF¹©Ç—*#T¬=.:ºã61húMÚ#ÙF˜Á™òµIGn–Ï~˜jÖÍeð„¦›ã!‰] äRivµ;c`ÅöîH¤Z¼½\\G+]è͘”~è,lR<~l´3—âvÓ Ær¼¨`‚øPìÞänNåi‹êø>Ðo cû¤G0©©é(éýwië")^ùÒ²F¸SvÆÿº„Ì2úïäí;I!šH¤jèP#,‰|èÄõ!]8¨"æ-ÄÙ®å.Oþf¤¾ŒDn†'ÙbÚŠ¼5ýD“!c­»«‡–\ƒø*FÌî_`&Îé»Jo33ª.S4H»½{'È|7&¶#cúʆŠk3®‚rÛkÈbºv£–¹è‚ÈÐcvãpï!r"^af°Wx0OÙ§'…zeކíw\±ý€J´†O.õ‚0lßÁÑIÿ 2]·„¦ ÜJaçî ¦ü„%e-Ç]HI¾UªÊk—Ì˶%úH˜b?‚Ÿ r/EZþ΂Oe4ñ¦¿!ìí6Yæûûb§=&èÔiôÛIå„Ëí<̵ž>vFtù9¼>á2jžâ…EõŸZu­:‚ÀWƒˆd(h8”ÊtEî'\#V>$VCCñU×óÃå ûŸ,‘îF*™C­¶¸ÆBÎLÏaW70ê›´b»æ¦êòÔ»lžŽ¿»«^¸ÇÑ#µN¿!:9Kªmì2Š®[Ã$Dpß[wíRlè$îIA3M²ç7µ±šWöú·*pÌ›ØuLcø6Æÿoª3Î]Üßk¤k)hÛï;fŠÊ¹waˆ“6HØ`‚ðQ÷÷•y_–G˜bêè-…ˆ9€0 ÐY³MëmÔ6ý"û{BŠb\IÉ–3¶ì‹s,Ë)ËQu¡ßtŒq/qH=ûøÙ\+]^Õ}Cöê ™èw¨º#]*w—ˆ{3­ð¥VðK?}tO–û}6–zs•fòtîûñ¥˜®sþíœáyϹ̩µÄÊH¥ü#¿ä?TvÝñ^¨ä5k>Æñý‹ùG¸|ÏÍ|ÛÏàè0˜;…èp0òrHU$æ®íܨlE¸f1¿ß®!¢j‡<{ F¡%jV'SØxâVÇÃz$'x…%z½å*uF*û£]2âxÇ…ºœFp¯µ„DGÎ~ì¶û—î;­dðT©s%aã¥%5qÆ,ÎTL6ž£âg¨{·Œ°`²=þÿA`ÀÓùö ˜å%ŠEbÑxÄf5ŽGcÑù†E#’IdÒyD¦U+–KeÒù„Æe3šMfÓyÄæu;žOgÓú…"\7XF%©äA€1J| %Q‚Aê•8%TQ‚Àà´ú½v¾°Äë‘*­:ÑZ¨X«u+’ãj¸Y«¶Ë¤µY³Ý-0K}¦7eŠá/·¨>Ÿx¿×ð8BÔÁ`±*Ç ˜ËblvÞn)x±Ü4Ën{9™ºámGƒáä–$ Jb‚Eu»ÞowÛþ…ÃâqxÑQ2Td¯Wkx½-Þ¾ÿÓÀ­ý>¯1s¹b²9z¥ƒ©Ìø²•>…§)g³Ö{:Û&.Ùé®u/žßš­ê½yñNƒ¤¾¿/Š¤Ê²nc¬¶<®cÕµêÛÜê)çÑø~À€4`‹¨‹ÃÐüAÄQIÄÑ, Õ4ÓA®ô ŠËœñÌ’¼ý@RÚ¤ðËU9^UÍsG@¿UõƒG-md}§Ø>¡ÂéIIÚV©jÚÖ½±lÛVݹnÛÉüŸÁ±@)Éä ùÇRúÕ,H–;V­BMyP×K+%#T•:ë{12]d½^S Ö5Ì{*ôI]Ï…ϘlÖ“ßÍd­$Ïr–8ŒGN:Œäqüß* §}ÐKÔCqoæYžišæÙ¼>’Â.ÖWk9*VÖ-ª×»ù†T öË.ÛíS¹¯E0ða³…TȼϼðÂ?5~Œí´:ÕVÌÖz¼ÁŸÖšúÛw vU™géKœnÛ¾ñ¼ï[Þù¾ïÛý¿pŸÄ¹žR‘fA4`>2¨i²/&`œÿ‘9Ët»ÌU0$¬Ô?Ò%³á{c®»Sþ§´ÇñöÈÞF¾/”‚õÔlOÚ1ùTÛ$d»¥³vó“ú¨kù.a°ºŽÈjU¥~ç°ï>ø+Íâé䵉<Áðü_É € Rä` ýþ€øL ƒAÀ18ŒN‹Æ!Ðx”& ƒÇâиlV …A£ðˆô®=!•ÇåPø¤^QŒFeðùLòe?P%³ÙŒúS‘Lfê\Ê9ŽI%Ò„v‹W›SéTiÕR®ú~¾ÃàðÓ¸¥¬ZmV»e¶Ýo¸\nW;¥Öíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f7ÈdrY<¦W ¾p² ŠóPLh`°i}¥Ôç“;L–7%•Ò&” 2“8Íê1=ÄrqDžIjÓiÕVi£˜P÷úŠŒºO¶§s麘ԣk9¶W·žä³‘EÞQèÜÚLêS;‹Rúžo6§Ýâ ×tü c§ÒåR¾þY—j¼˜+ÇðyÂ9)„âK-ÁlÂŒ% ¬- «Š÷¥Iªœë8m󰨦(ƒV®;«Z¼ð8Ò²›¨ZNáÅ1“Øè$MÒšþF1ìRòÇnt:«ÆË›Jž½.šÀ},`ÚÌ´CŒ¥)Ê’¬­+Ë̵-Ë’ì½/Ì çð¼ZfÆe©/ú¥:³œJû>±ä?rNç?³ƒñ-(ë|ë$Š£Ló*(b[Cг¦¥·JãY"O âf—¶NŒèü½ìLé6n" ÓSµ#a'´¬@è+Sêß=jE9$É1ÅWG¶4Bx'‘*#pD1YM•eÙ–mg±1."ÒŠÓi;Ïiªä«sƒe ÐäöÖÇÕ|"È[-®5ºÝB÷N+—|n, ²‹…5¡àà˜. ƒáN…®9ÊgŠå€Ö€ DYz=)ýìŒO×3”æ×‘]®ã[°íÀ:"ç5ËÉ]+uÍÒµ½Õ~§´sÍ®¦d6úXë¨Ðö€ô<é;„–exÊ”ôVµ‹Õ£99‹Ί†M»¯UÝ5C`ìë±äaX–6³íNյ풘NLuJ©RO®¸à¤õIz¾ žç’¶©¥{¶Ùß¿ÄyMQRЛí½RÖXâ;’.¯Y¸®îz䢇ÊÃ&˜Ýý¶ô/MÓõOUÕõn Ž EÞ`œFHn¦˜µR÷µ_#¢éëÞÅ”e pÍÎgªi®Mo[ê|E[n[ŸAnt3Ià)‘s¹íjñÜi¥È1 [êÜ‘ðhºÿÏDïÚÓ¾ðÑ´ÔíÕ™¶®îmǨä +Þk’1â°D¨E™×@Øà„K ˜LG¹ ÑI-­u6¸—'+puñ»k’[ùqµg\”‚ªIоCBLGØþ`x$çE¢AˆQ"DXâB£„b†j !©é¡÷Ψ¾?/Õ<#þößzÛG/Y÷”uÊÑUQÌäÕ4‡0õZ²ŠEªpÂ( ×S…h–š¥Ìß¡B¢Žj ëµ3ÔÍ#F†Šñf”kO"ï5ëu÷5´z¼‹©!€ë @È“'å¡”P6 2ªk™|.x ¤§¤a›ÃÁ>u¹sÖÎ;-rŽXê¨dJ€ôg‹ò<(©Z¢%;KwQÉ#—\rš‘&®cñö?Gà,ƒ- yG7çáœSŽrNȲǨûÁœ\¡†9P ŒYïªuÜŠ•‚x$DQ?3³ÞUßÃŒh aʧõc¤ˆ’Šª*ŸÜ!ÝU… Ã(Ó¼|ûÁ7ê$÷”7²óc{*?¯ …Ì®ø\Å''ôNK¢òH£ä‹¿fж@H¸T¶ÊÀ0&‚`•9êA¨U A@„v(cä.Ø¿gK§â¶ŒS‰8ù=arw{uaž³&îÒ¥k?DåŸBˆo#àÑlŸéõçK' MHüׇpõÐÍê‰]ëÅy¯Uî¾WÖ…ð‚CPV@¨ Ñk^91©RÑã‹Ôñ¹“YYi!§‘¨Ž°´¶²ôô`‚ò¸HÖßê™áTÏB‹‘UÝSÒC^•Š3S49,[ËÂV±n)ɂЬ´¾WÐÒÉJ"m(Íšv¦hÒRØéâ§õúê][­_8™¨ë®¤$5;kç­kbì¦EQ¨ð &Œ/±O¥¤Èª7aTû[¤ûRʰÐmu0+-MB«™tÇ_¤!¬¬°¨G<>‚þnÝ|ƒð†ÂXO ¦:ÆÀ_ÁÊ0 @q FÑñ½ÚÌ¡iEœ»‡ð÷Zæ©på¤sW‘í^¥ZµÙâ³*}Þ)k+!!~1Ç·¢ùÏ™õd‹Fò¼BiI–¶E«4¨ûÇ—Y‰‚ÀwFŸa\½—ó¨»! éÌÙ Z&Fpq½žÐ)$îR ¹7ö¨·ÊjšLˆƒ×*ÐEÄóN»¬RGÕ Šmá=½ÄWÄ…Cšæ“‚Ð¨Ì:OJi]-¥ôÃÃI‰š'Lð•4 çÖ6[ò:©%º*£Z³ 1:r¾ú«>’噞9t£ªR3‰šc‹w´{5J«ÁéJ1r™OZÇJÂ良÷ÕÍT, 8!Bž]Ó;onmÔ° „ÈA{—¹úêýƒ¹-äe]f¹ÝÚCïÞHÕ9Þ×ÝíÜǜӤêÓÅÛé!Z:¶rUjÓˆn¯ý>fç`cp?&À,‚ü,нŸÇã\oŽ‘:4…8}‚0`qkål6™>?à\-U®ƒ®ZÑËOŠ›yYX.q@ }:˜Â‚t ñ¥sñ«ÄpC<á –²†ÌºBUaŽUîv©±ŠTÃì­°+ø#À}S°ˆ!¶ÍÓ㽯¶vÒþ „Ð@£ªœÐw3ѦLÕ³öX—Pnò.wÜêD(êÝ©T™ÜÎC'x½˜ñrt7­W3MXx– :K·yß=çý¡¨´{Žð¬,ƒ@Üã~yœ‰6žó¸ï##wL£äŸõÄeÙÄì–gä,þ¶¾¿ßƒ©¤Åë¬n3©õšï÷¤°(&ÿ¾.•eDíH±âod¨ âp?c]ÍsØà@DÛkÑ~ßÝÛ»€@ft㣿6kSâ¾íŸ”¢3ÛT¼ËV¤èÃg®àF°Ž†©Î†reÖ´èX?Lðß'ì þzE>ú‹p¢„\PìÜïO.,N& !TýðI°MðPaFÁX!| * & áüÊí ÐÏ`ï̤ÙC€’BŽrŠ謁È)¨™'4¿Š0ØE0üΟj,á¥î8Dv×'нk:ç/Ãiþ ÅLwEÊ8)RpJ¶Ù%,ñ¯­üTK|¬ úQhÝLj#ÁÞ†íÙ0õl&Á6îL„¡Ç£ò™ÉŒÚ‡Ð¥ãšI˜ðÌÞD´HŒ\¡·‹f¾MôŠƒ¼Ï+= -Õ(«ðÌÊi^¼,ŠpÀaøi´IÐE‘a1eqh2žAª átÄ  ±(êFÉo°ÂÊlf½*hNïðèúòL®ÐOšåÊZ °æ®D‡tͪ¢·P¾5è¾Ýtß VU%Ô€-ï,ë&ö>-Þ©ÏœHçæ³èᦢ–K@rO΋ɦðÄæÚÁ)í² qk ² œÀN`~FëÀ{ìJf*fÆNþèkh².¼y1â2Ê €èÌfd ò¹À¤f7’HU™ªäâ@6à°r'²}'ò À¦ ÈaÁ˜àÉž Ñ&¶§¨÷æˆï‘À&Ê·ŠÝ†VžÇ”iíÔÊÑÑn”Pq¨iÅ$ÎCÎΣŽEò¼×i¨xép«GÖTåæO¶GìÿgÕÉ›íãæð˜ê¡kÞ—¬h—RNÿðr#.šÚ’ìûhÂò‹¾&0êXRÒ (313(!!2Ê­ðoOqí>QÄë&pºÊNþ\Œ’Їy ÐØqØVžñSNfƒ$Bö+’!ô‡@>_ru'“58³8óÒÁ4!Fa˜"nšæ*šÿëPæ¯ÄòO-ñª¡/*¤‘;OkeÈèÐl^)ðþ§ÊàÐ-§"kÓÈ­±>ë ^Åì^Úö‘êS6¨ÿ³½+„å?“§’ÆZ¾“Wâ§Rò94!B&á8Ò˜p¬¢žï»>’:üËšú³—²ÊæìüÇâRé 0ó¶<è:72#Ò-LÊö"1my<ï.+€ÅQW82r 3‰BT‰H´HéB¡¦Àöä òe@QÏ4G«2Efà1À—M]%Ë++Tœ¥sM ¯‚ªjàÿ”ºës#å,TW>EH𮢫p6OƒY&³07 ¥@㉠Êf¾ÊË ØÖcúÎF3*4˜é+ttÏBD!ð*a S-I=SäÁB”-Lrê¥êZ¦²å­FûI Ø?‡•.o#ª5ôw*óz¼Æž¢vò(V«ñÆÔól+£˜‡!øÀ'2wTYõ¡Z&ÀàŒ€®!ä€`5ÌLüµ$щ…:ñ* "¶Ð1‹WR(ÓAf„y­ôÆNÕu×.§ðü%—/^QŠC^³ Ñ"ös Ly"n ²‡5üÏOžàŠ0÷¶,ÊëS Å~!ã ! `K2õ¥dvHAÔ(£Š[Q´}®Tè²k1«ý<èQ+Æh4µ\†3@ôöN1„•kZ~KÖiDµxް:bB—†B‡AýY3„ á[d¶©j¶­jä$ÁöàÒ€ìáÈ €ÝDV!²N¡M“%néh0€¶.óõ½ ‹Fn¸‹¯ìpòP¬l‘uÏgZ¡çÐŒŒtOKÕ¯°­ðÅWÏÀ¢ö„î±%J°ÙÆQЀÅf?ä?>¶6OmD“ÎF,Ì?“ ‡AÀJ –±u·\0–Nj½ae{`¶< VÒ+X¦GXm¤j,­Q.“"G§èNu÷Lgõ tXφ¡>ìvÏ-ž7µoS>²ÑR‡Hy' ®—_{÷Á|7Ä.Áœ!¤ A\ @"-E^­lÎõÔïuÚñ6¾î[FDì™UÒñЩrFyöÍÈ{ÖÚ¥J—×_°-&‡†“8+QÜÑ"_ïðB`ðgü„€`hDBÂá‘hd& ‚Å!°(#ÁòóJå1)2?1™Læ“Y´Þq9Nç“ÙôþA¡Pè”Z5‘I¥Ré”Úu>¡Q©TêÁ:ty1…Å«s:ìÊ¿"Ö£ðèU~'3®L °ˆTFAn°Cnø„Já$ºÇ$°ûÅÖÓ“Ak•»åÒ=vºI17Ku®»½Zí¸ËŽMp¿`±r\;éúúƒ‹òº¶«©ÕjõšÝv¿a±Ùlö›]¶ßq¹Ýn÷›Ýöÿ±w¾EaQÜøw‚€ˆì+ŽÈÅ$X+ög5êMq7ü–AØ®e-·,œ«³FæØÜ¾÷h½Äò±–ck²Øüx9Æô0/Óô¸±éú¶¯Ž‹â†À‰£®¿§“_ §K»ÀŸA,žŒ£éAä•‘ r`àı4OE1TWE±sx«‡nàʮQ³´ÂïT6ó£l“$´¤hä/> Â2ÐëÁ¬2(ú¼¨$*‡º«øŒ@O¬·Æ²Ì»*£H˾ö¾r:2Ҳoáò~Ÿ`ûHÓ5|ïO³ôÿ@P4BPªY>jãéŒC 0ˆÀ5&µAܯM²|°±Ð| Ô u; Ó5*ÉS¨h”¾¢ÁÕD¤²ÔÒ´õ®nzõOLÕST³¬äÙ^?ïcËÈ ¢ÃcS Df®Cñ¦D”5§jZ¶µ¯l[1PNOFPkØìÓl*+*¾ol§Z× Õu‹TW]'RPÃçX#—œ13ÚØè:Ñ›ÁÖ$|íHï£!‚<ÒJ.‹gñô é|+NÖÖ7Žc¸ö?d9G’d¸ñ—§êz©¡šžÿ·É–ì¯pöëbÞZ«ÊÂ:J:Ji9©&•’þš9‚JÙ½®d:ú "À<í}¥ÅD™•sª-IWVàt×ú¶|­" ´7fbƒ®VdÙ ’âJÜH$ ¯ZC8i a±®r`êc0ÙT£²\«µ]&§1ãHƒpýÞ.ã¥W ¨?%u{¸VŠÖœ ùXj™Ü$Vxê]štÉcñöœMÁTWÃxÙctoŽÆ9G6L?Gðý¬&ê:€0ËŠ,¤²<ÝÛÚB°ª1ôÃ!—zïHqmý4Ç  ü „nñp-öاRùør±aÁ zé”°EøžçÙ äÔ"ŠIYñªˆu"i1‹¬üDò6˜“d=RÇÕ©£ú¤lµ‰Ä& 0„"–„1Ž“FiM9¨ÈA@Ÿ‡S&T#ÒÊx¢3<:é þ3¨šxû^;rp²:ˆ' d+q`‹Ò%+ÙÛœ-“%$I+§„>Ÿ³:ÂM¤1®jкChu¢F8§ò…èuƒŒa  [qk+†D·Bt›‚¤.¦¯YGJ¢š€0š'&y;aꩊMž{d‹M%j¾aÇò DtÌ|¥Ì¹‹UEÊRÎü—ámÍþN³E_NZJ@B&ýGɺË1õf£S:š[Gˆù…³4)C %[kuo®®k͘ *—ý;“TÁ>Wm,DLg²Â0ªv ¤–=K¤p¦¦J$¶åÕê¡’Íèž1!öžE ®6fÍY»9glõŸ*#ôÐÎ/¶ì`_#—ôÍXtVkôˆ´‘L5ÅoK î]ÏÂÜ 0¢AœU=Ÿ¸Céb]Ä¥-N4·~}¥Ñ™Fµ O™; ]½Ëƒ4³Lx€Àê¹Þ61ñËÃXÌ®T‹}š)z…1KˆðP´ ˆª×4-ÿÀ†‚@b—‰%$Õfé‚®ñK¯ b½§é$R<‚q] L™Èc4LZÌ`,I‰q6'Å¥æVqäF{Ä] knóÁpÁ£êÓí”T¼r˜» ‡2 CA»jÄû°HׂYg ¥!´ÞëC^¸-¹´a#ÿ\ùšliÑ0{¸b³$MnçEff6 H©Iý¨NÁÓça sj¾U]„9·_꣹Õ‰ÒxX%‹™ø«Eh½Éf¸8~x>°Ê½l䜰qµ»‹¾€ô¶žwìúždÊèÛU¯‰EÈîÕl5x—1î>ð¨Ã+Y¸BMr¡PXhÝy¯uö¿ØÖ Î3h² XB ?šý¾¸ºc:¾»¤’˜Zj.ºBV%bÖ`u'—Ç?ϸCt®V­’ÏVHý&6×høû./Ô¡ ª­ÔÝÆm¿K¹Õ£‚*_kÕý7˜æƒVŽÇzãÅèîžA!Užý»û°¸·ã›GéI¥DûSööI:ý{÷d\VÍ`gmÏ©jF²8m­Ù$xæ Ûj‡Ê¾,aþ>‡ðüb±£]qž‰Ñz7Géxm¼ÀfÃäxPø¹ÓøçX!еL=¶O¶P¶Ä]xQú§q3þƒl®©rjâ3=¥ÏÏ+&7X¤g±Ë9ö»ɳ“@¾w£}äyXlñ©·Î£l‡(3xñ216äåÐ^R¾³¬¶Û/?ýiI»¼ì¨JàèPÅ+gIõ§ÕpR(Ä ÂÐ_­Ê‹—t» ß4¯#ðH›ÒõbDnßÛTöH|š¾§Ì¸ë`>°±÷%WÙHÎ/‚˜±õgí}¿¹÷Y×Ãh.‹Ì;GÀî ¯»Çè¸3EMÍ’óü*ž½’œIbrÉÇWÊæóܲK¾¢¸Â²»öé£4ÚZ¼¹¤¤+•;Ë*Âé·ò*Â\cô€œ q©%zD$ƒ9œ"©@ ­Û€:Òï‘»K¤{(”Ò‚+‰£Ò«X'>ôÁÃÔ½k×·* ‹»¢ l AHª3M—Bš©Âr¥B²™¹¼[„ pɼª\.{)ºy2sÎ":®³"“·÷.a&Â05ºË:ìAÌ5Ãd6Ãt7€n:`,¸1X{‡i—Sœ{ ûkä(9™Ï#ÙÁ9…Aq°·y¹¾ù< æ“$@ñÜDõ7Bö¶Ò™.#”û±°Ó’‰ë®D“”@‹U3ZA"a|¥Ï{J7ËÅEE·Ê­6›pDóU¬rwÁ€®¸I‚F8¬8Fa±(ÀƒzB[ Ùö©Òqò Ë›5n¬ܧbåŽü02Ë÷¸1 ³c19÷¶-ÛȾKN.rF2kS8Ú‘ù6ŒãCCë”bGÄ|ÇÔ}Æl?.?#ó?@æ‰ÌX©(¶?ÔR«Û³› ’Úí@˪£¸¢/‚\©¤¼J€1Ó/ sÆúò â—$Œ@ÇC'|)Qݰi¿/ÄçÊ=&‚}Z¡Ð… hŒŒR ;»ÝWA-³ªÉCäLÄý,Zuq·aü.xXü Ú]sMñ' J{ɱ“Dþ¬±‹×Å¢[u·Û…¸‰´ÁT@\L0{ÌA—¸…<U•$Rñc¹²•YuÀ‰é¯½/Ä̵“¸ÅɾÀ’š}F«ÛÆóW܃—¹Q2Bü®B­ ÑyÞ×QóÊ­Íd" U4¿v×Ê ÝR·ã¿®DI²K}L›™È),ü^ýc Û•àÞ§HQ¥³EIrÂÙ±ŠÜÓ¸ÿÑBÆ ô*¹ÈÂ,ÝŽÔÍ«ÞÝÕí¿õ;]«Ê ž$Å–Ÿ‰ÖŸ}¤ÏkËÍV/ZêOë …è(…¥áßµûßÅP8/Ø2`|kô€S‚§šZDBèÈ¢K ™V´Ô¦ë—ÝCÁ¼m3„DRC*a•êßGAÓ›™´-CùzÙ*LÜÕÃ0¸èÈ“'ÂlÑÕŬE^aA¦¥„Öïºîápœ=Š4(]õà_Î!â œ^(Be5}G×*œMÉÄŒ»Ôs·jVÄ«4N.&Hûµe¿ÔæU5r.T %/‹ˆ}#$zߦ"ãf6ãtºXn‚Ð\ƒÿÃÍF¶tW4›„˜EÛV³3Ÿ½Ãá›éž44_˜ZéÞ®êö¯«uCè,ã¦;[õcÌí#Ú=ºq×*Dj0À»ÌçÞT(IÖŽWNX)BuÝLÓ›&‹Ý´¸ÉÛU~h¹œ!A#*UY}dì÷©Œ)ÅÊ HìÍ.@¤Ù7MlOQÝäÝ—`+IÙjø7œ¹cwZ|I¬3t'1.]%ñ„˜eµßëÛÖX€€€ Tc0Áà°xL*„AâØ|%ÿ‰C!±ˆ\:7ŽC¤RTRE'”C¢q9LžY+J¦2èd¶3•Éa™Ü7"ŸÄc±éܪ5CŸB@3éÔ.YFÅ¡·ûð< /J+Yµv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nW;¥Öíw¼^oW»åöýÀ`pX<& )k;›õá•Ø÷v@ ªLÞƒ‹Ñ£Óú|VGBÐAi•ÜäÖ‡`åôù¼´f1©×h)YY­/;ªì';š,2£ÎÊ#|^¾‚ɳ:ýo7ËËï$Ôe/…J qâ|m´#§¨èt]™/‚›Ç¢SzÜ.¥6’z'QN›ÃÓ‡ücñ/¿ßøÙ*"`Ð=Í ºï%IcT)(Ãhÿµ-²(ï¤[R‹©íÜnŽÀ­‹0ž´ÎK¶ð:3´÷Æâ„õÇÛÆ£ˆš$ò4xú¾HAôj¸:­+ìÅ1Ì“,Í3ÍLÕ5Í“lÝ7ÎŒ*|‡Á’t™c¹Ž>G±Ô€Iý<ŽÛ,ì9¯ª£ÅÒsÌü%-q*'ñ»º÷Ä0+¸ÕÑÓ—N7¯:oQÓ ¤±H94"H™¤rD’¡ÉÃÔù¥ñ|S3Uœ–Ú©t³jä%õÃ\™Ç¯µRòÖë|ÊÔî-!`·­œPëF5ûÙjZQœäÊÏ…~ÞYŽ<&W½7ATNWmÝwÞåyÞÈRR Š#¡#¼I’3i<îã‚“[ZζïPôU ƒRr]LÍak VÖâŠü¦¯7‰C‰¢Gܸ²ø¡0Þ¹NU•å™n]—æŽe™æ‹éúŸÃ9~5–gjà€€”ÅSM88-ÈÙ·W-e¦¸+QW4ÌLŽ[±r’ ¶oó9©¦Mú544þ¶÷D°"ŠÜ¹Úmw·¾’‚ÓÆiæã‡JŠ:µ;5É·£TýÅNÜsGI7ZÄ}(WŽb¥²VMÖ:;ݦÛ5{ˆj5•-j)™¥)‘®±Dn‰ÛéD·AâI‡·\šö¯mÛ÷Íç{†Xî9¹ÛÛ†1†_ýBÉÑv.7ôQý³}ãÖ›²žaVÕ@Õ¢\zÀÖþÏ­‚û~M‡SڻŔ‘dGÒ®L×Ý÷þåùþŸ¯íû®'Áú| ¦æ-øµ` (6ŒÄVs™iç‰ß:×°ÈòÍhëñ»©öwÖc‡>o WŸè qU"{g©W=wˆÀi¢q$}F*¶¾Á ó\9tÕ%fÿ ürÎEm’†ŽÒb†oj¨ï«5´Â!JØz ’—¾³‘à mÏdú•&º÷2ÛqŠEI%XTæøñN¼‰¤›øQ®6FØÜÊAP¥,×¶çžHÝÄ5¨µ§ÁèFâZqý\+õÊ<ÕÆ¯Nĉ[1Pü 4µÖKcor(ؾ#þ´bùÐrñ^ "ÔlÖd›}F®„“²$ºÉEèPѾVJÙ]+儱–RÍú%±ô†nãˆ]ð ÜœZ‘}…I†— T,SpÏ8ó93òw¤[›_Ë">uôÚó¬pM鱿ø•æ|ÐDç*n½•t¤ObÜ<°Þ8YÈØßU{Æ| >w”i:'š Ý®NfÍ7 ÜZœÐ"Î)Ì^…J„ò%™ñ?ÞÆ¢-Y\ÐÙè<#°A€ˆ(KJ=Gé!¤Dœ HçèÉSÓeO)%”–GÎbxå.Ib+W6MÙ"AÅŠ®âm*É ¸G¢z[ÄÆEJÖQ(CQ cöS²iWHêÅY«Un®UÚ½+Äð×"lk ÑÒŸ” =é8þ+ãµN)M-IUÍBº%|y’…Q©æ87± kÁ—T²àN–ž­u§"‰Ð—c©ÊºEl^‹Wú÷:Xë¾s•Ô²1zr“è yx†¢’FALáƒ\4¶ˆ“iIP8ò]QžŽÕûmmíŹM ¦9 m+dQ3ñÆZ /?¦ì‰Š=ºº:“A*°E“í·ÛnéÄQ|³h×Ã4™`ãµoŸm.t\ö&K•dL4Ï¥/J‘on¯…ñ¾WÎú_[ì[…Ù¡å=™ @sÌb 1&¢ÓPpìPY“ÏÅ‘aó(:fÖ"°ñMJ4Æ¥r jš(дå™ÓZoNiÝ<ʇ8õâÐp‹a2Ä8 2` àÜÚuÑ´òÂV¾æ#ÓrÚIìuu:eŸ·)¯›µÂÐð:Bi*_ œù’7R~Í–×äÄá„¶e ¾L¹‡ì‹‡+[6m ³¯Qă©Ðí×zŽ¥_+T´ÇÚ×îÓÓC’Sк¯aFºª‘oÞŽVS¢ô-YèI²ð’Œ¶ÓOð^ Áå”qŽxî>VÚó ^+Üyñ8w´ŽsaG| fäÒýEX2ŽÃ3y pö¼7^Rµy2}NÖÚÀŽÎáŠÜ¡ó(QTÇØŒ›LpŽ}ÏúAè] °‘®Eè`CÜu€À Á¸mÈH12U‹»6jÊMœR?ÆJ…ŸgO¹Ö 4ÐnŽÑÀý¿ÛM½FÜKWݘ;Õá²ÆÖ“;HYùŽÄ±ñ9ÉP¦Äß¶Cp×Fë*¼çïJ™kô¦A£Ùû’åê¬ÅØŒ'ŽOrA< ‰éýG©^¹§|PyÎó'·kI|·ë‡(™‘7¸ÙA2Þâ£Â‘ûï¯lØ*.œ°_†Sd• ˆsÌß+J:¦yfkOæy®ì¥føH¤ LðâŠk"*Žr§Ø Î{ðÁ 0Å pÈCô¡ôA®RaTê €æk¥Mà{ ðÿ« Ù©¬4ðþتûÍòÂ.KÎþ¬m±JŽIo§†ü:C⧦*U­¶©¬bDFHo¤Yç6Æìê¡ËšÈpn®‹T±,xzÏ:ëæËȸöä¢`ÉÊϬ㠊VUêÙå¦ ´"DàHÌ/M ±ñ+ÐbÍMе9ªÚ*õ†œ=¬°°°&¸ð0õ±¸ðq»êöa/鋲#‚û * œû‘“ñá1åbE áô !„ bd€`FŠ\ð÷‰ùñzç¨zk\Üñ¢á¦cIêniŽñmpãc,ZÌÈEŸR)…; î8&/¸¨L¡ ±"ÂίˆÙ02ñ+§ò;Èý ÑNðoó&N4?F Ù¬æ®c ¼`x£‘é)r˜ûÐbæ2ÞOvcqÍ )õ®DqÌÖ‰ßÏ#¬ºF»ŒA‰°qL ÃÉøR(Sç>…Ìö)n3è„Hþ@:gØûr›/ó03Ó¡^Á`À!xz Û‘¨ì–âEºßæ2G)†r«0³’<@!ü‘Ò`>ñXGˆ¹Êžî¦ô ×ÏžÅûHža,,›Prmdš…ìŦòÍ̆ÚuK4nÈ@‰S_î,¸k–ïŠ^Å’é7oŒ4NøSÌŒYF@N´´ÍÜWŽY:^”P 6RŠ¡#)1‹0sÕ=lÊAO*{$Å6®G¥iI:‡¤‡EÊ틶⨺I®ª¦I†ÇîÎÖ2ßìHšó¯E8Z ¦Ê  Ðå¯-ß#.ÄÁÿ RöÒÁs=”=CôAD(Þn™1b–Léà †p:i‰‡´p˜Ä-îP¥ÃF3{X‹mvY¨*$dЮþ¸²4‰¯ êéÄjÀ©mäó0oî2ES1.ƒ;ÍÒø‰FxC¢Eíä©o£Ïêήú-Á&3ôògÑ&7TLòp*Œj”i$2'(HÂŒa% ¥)TEOõ«ÜÌ °T‰Ò\‚ÔoiÎÉ-rÊóMô¸n`bBb!­\!l+N[9QÝe°¢Øïäÿ"6”Ô6ûT;P5]UõaV%ÜÜ ¾À¾¡ðÀ€Õˆfä¬g,+,S¨³âÀVφT²Þ¨®m'çQ(rr­Ϙ²­îÁð<›f‘ËA#hRùô©"¨÷5Å´†Âñu3å¼Ñ³ÿ.²HjQÌ}­¼a$Ri':šsŽ‚ÊoJriõ°º'„:у3ÑVVaçî!NÏ÷_òШ”wN“žä'k[(Utã-p0´BËPò-!­¹!2WJà}.u µ[bmföqg"ò–Àä äAÔaÜ!Þý¯ß6*œÀ´î,²Ã8‚αiìÐÌó2B»#”ªÑ&hÛÔë Зk§8lôe4Ë]Ï…>æ$˜V,ónU¶ºëJQ%§ñ¡9$Ræt“f÷ma+Ð>ª¾¥ ™ö½m2¦¸”jð5Èæ©ÆJPTû=6urw(e`T[¯ ¬])( Y´Ûj´§L#•õJËZ¢–ß%‘4LJi«ÔëÉýO(UT•šW+w·}w÷|áúàÌ Î³  ¬ÂŽ´ÃGRY%UÅ%ñ›v¯…L3\Ò|Ä{{é†H•õÏ7KÞ´·XÓ±NèŠp¤ª»i¸æ§;p“JxÚé¢Ùvyòã RÉiÆ>†§PqS®ÁÎHÛuoUÉ?(?GŒý<h[l¦Sð@RMöB=TÐr(Ä$w!Oׄ¸LMU2u”jçÅuóúɬY_ׯl6ÉU‘36ä³VZ°ö£Ö5fÇ H"AfP¸·w„ø™‰¸)¶†ÁZÁ\Aºa¸!¶€ EÀ€ÔŠÕéú“õ¢ è\vTtPpE“î§Ž“ìyíbnæ€j`ßÓÄÝš§ Én z<·æìÌ{5ËÚÇìÈ‹Í:§ÉJ ñ¸ÅRóu^´l|%Y€Ré;\q*ñ/2µ¹Åmµ8´!?WQsFÁe’z€Tõ„V‰ùi–¤%=×3u³).v¤,Q½"sezRr÷+M „J§/’U®íµ‡…ó|“,a5e¶´ð/XP¹ÃÄç;wWy–Ù½›ùÀôõh€»WPŒÝ×B’ƳŒÅÙ-3)œøè蓪ZQǃ&ðð¤w)B6¯O ¢t®ÈkdSàÆðn\-{cfȧŸ§&3-].2*¹7A~ôш6Y•”ª¯¹‰ÖÇ_ùuc©é'°Ecxx&’³–-cT•‚ £A„Tú Yçº|.×/—4°Üòþh†:VâcjÏèJi­5÷Tñ=F¦ók%ŽÍPx±û °µì­—Ê·ÎG3ºù-­ÝèQq§Œ‡(øºjS5¡KPóµ(‰ñp‚1uSlŲ¢þÅY@– JLÚÞnhF—Âj»=Žbïøƒ€`Ð`*‚À¡HŒUÿÃ"pˆTv- ÆcñˆÜB <Oí$R”¡Y´Þq9Nç“ÙôþA¡Pè”Z5‘I¥Ré”Úu>¡Q©Tê•Zµ^±Y*™&›ÆâPyUzC`‰YãÓ[d~#!¸Xëöˆ4Rm²ÛbØÕ†Ùr¯Þ"×9ּͰӼl{>’Èì‘l^V3ƒ>ŸÏ°ð0:¼&®ë:]6ŸQ©ÕjõšÝv¿a±Ùlö›]¶ßq¹ÝnÖ®%ª¥º©]¸×`à08 ì3X­ÆëÏæÇ­øË­»‘ÆF:ÓŒLG¿ëÁ!ž^þjñ¾Ä¼]އG ×âc_ ½®çd•]ñò‹ ý?ëÃÌî$ïÛ2ù¥"lÌ¥)Ö³,ä¸=¯»2B₾ïšì“²ËÚÔ±BÎcÐŒÅ/#ê¿,Ðú.‘¹‰DD‡³ûçÅTK@,‚o:kCÀ‰²©L.•HÊü/ÀЋ¡>ç‰ò—& ’hÝË2Ô·.K²ô¿0L3Æ¢EHVòÂ1:íF1« !Dñ{³¤Ò"{$KK³Æk;/9Ò„i¬Óì–¿­r{· #’dÃŒÄ&¯Cëü[=²Žlã=Gùøm G2Tµ5OTU5UWVUµu_XV5’rx¥®P?d@P gò2É57DÊSBÉoŠÒñ;O#Þø¾ñäWj¤ÒÓ¤Žš9OW š¼Ú0<ß"Ó6›ÅÊô2éY2SÉÇ3Mžó¯p­Á_®»øñÛWL7ÍÒkvÏÑÚ²Ázá‡S7e¬œÑòå5aŽŒNæP®?C¿qü;LD5àÖüÕ¿ÒÓ2(Úòþf0ÅÞ¹ RœªI )g h:‡¢hº6Ž­…”ä|’°uëLGðìE±[±;–ò×&3P}H·¼½kÖ. EB[F;wëstPölËT1oR1 ÅI¬ÏFûuŒ†Ÿlè<´"ay£ñKbiM9©5f²dƒ`¬·Ç—nNd ä=2z8}à< ~’.!0Ç+'8–Å$Ç»F).±Ñ?É!¹Îyt"LK±5ÄMz Ah5¡&…P²j4‡pÒsÌKE° r€XIþV/Fa'å[’2åb=› ¥jëcjô þ¦^M™I¸ÜÙ&FÔ=7Ñ%ߋđ†˜¢ù‹`K`‘Ú·˜XÔrÏo“öS<áTu›kAÝMùÎ[^‰î3 Áu_Wž¢ Ž‚~©h,a|@o Z š%&… ¯æ½Wº ™“E"lì±§Ê…% à]„;’¿ÂüIkŠN“í²FKF>Ã[¼Áƒ°Õ-Ú¡bZ[r\ÑÚ @¨UeÙR#‰&}à Úùkmu¯¶ÆÙ[2š;Àì£X²·8(•e¬Ä¹g-e¼¹—rò°ƒHF Á°&‡Àü s’‡ó17<ÆCÚÂŒø²l=eÙ+¹[nн—þ_RuÇ;e½×½: ÀBûy”¡¬R#MÇ‹YŸf¨Ç­ˆËª‘‹ÉëO2© …±[çÉ…¹Œ=yÊ·Ô=EIÐÂtsHØCÅJ-ÎøÞœ(ð!·¬Qê¡ah X+˜’5Ú eý™³vvÏ'¬U©;­Ú‚ØM³'Q‚4]ã}L{Ck] J4YÏMa© å'°DÃb•K©ã¦‘Þ­a»bö?ÇÔKâð%Ð=¡Áx7á'hÑþ?F@êtk‰±„:F¢¥ÅóãFMUw«ÊaË’™¬é߀§Œr¨Û–0'Ùžó¾]šeíÂÆ÷Èë{÷Ø:î ļ5ëåÒ1x>ÝFï´$û’¼sHÑü  È„Wòñäë£}YdFYȺÕÞsž0wY~œÖ›OM@¸¬®5ªúWEuÂ~ö¡9Øó8(áþÝ{·w ðoj"IÅiyÜ«ÖéAù_ó½Qâ}Ö®Ùœ\R5ÉÙ}“j{³¬>×Yßúœ—N=>Bƒ |rD˜Qø?·ø Ü ,wYë}w¯öH^Qv'†Èžc¬d‘ú>€iÇlvuxövU|áŸ>n–@îéûM}w‘Ú¹ï¾Õm`ðןy¤<„õbî&6vÆ»ïs,õ4§Ô»õ,þc BËn™æ«BŽY,E”þöRþ/¼ÀtI迊ÉÛ5©»k? »‹1ØÀtÀ¢Si»sE©ó›–Û´7²©«åºX¢«Zš£ò¾:ž%S`²ó%)·¹²ª.ñ½­œ4iüŒYÁÐ=TÁÔÁäÁðÒ³x-àbmð]‡ ]€@€@€žóü·ç4ºM$s}´‹´þÀD¿šÄ?šç$ô0¿|.ŠíAü43¸«³ºCT7Ä8[iJ·¬ À!Ú§©¸ø'K”¡›ö—ü"1á”JY¿q­/1©ÈÉqÛ'¹J{ÁŠÂ/Ùq*{¥²¢%½H%½\9DôOÅP¸(_‡0_ØlÈf‡`f‡¸~¸ãq,ÂüQE¤Ãc¹ÀlZÅÔ]ÅàƒÀ˜ºû¢ž Ã2þ™a¿·Ë“:K³´@>Z"¯êY5n4»U*S?  ø0+@—“,ð‡à~²¬MÄì^ÇDtÇTuœˆ††s†Q†ØP…ÈrÀ€ ŽL(3ÌvGôŠ[Ãt€H$‚»¼:* HÆÊP72“!dˆ+J¨Ò˜;c‹s”™ôÀËÈ?ÙðÀ¬2¤3C#<[Ĥ $¾àòÓÄØ_H4˜É”™É Ø†s†‰„¨hhgÅh{0ɬ¡Ê ƒÈ\Ê,¤ÊR¾H@Ê#›A?„mHén ÀÜ/“D“ÛÅ%ûsÉYq¿aÖÂ|{)=Ò†` h†u{~ã꥽Éóý ßmô¤ýÏÙ÷þ,Øy‡Ùëq™gY’PDþÈžüƒ b<ñüÖÀ`ŽiøÀÒ‚GÈþ%L JéÞù|.µ~Àâ4ù ô!„EÝõÂ2$û¡4)…J)ˆ‚9ÆPUþ¡ä6ÌCø}tèÿá\A'o]쀡8…5 Ô‰A¶à뢄F*ERk b±…f.EÓìZKL\ÄG1 MH,|ï H™ ^ŽDÍÏ:E?n¶Hœøã˜ŠrBHRü@ä1 ‹r&FHÓŸGÈ®µ­a*5D˜çÞ8TÎÕÓ£[WÐ2GJR0aRP—‚h=â1â„„ršZEX±d\µ—RìšÆ‚?^™ÃÌo ÌQ#äx 1Ò0Í"s0€Ö&àdÁ—“l‹§QÖ>GXYAhGƒ‘"Få„–E¨ø(y¹;á4·‹’æxOYìA†xíãq€`jÈ(ýÃôE !=àóBóH~ñø=GØôN„k¿ùI=èÁN£Éw€,„Ø=©*t6è9!¥¥NÞyE™éJé„ zï^maœ;hŸBz …¨3ãk „0iáñ ¦´Æ¦Q£Ì;ÇÈï d‰x')!'4¢v"&Sk¥±Z—ÖÌ×ÜXÄ‹…‰ÔB'ÀšCÆ.‚åÕqŒ„/Æ·Eë=%l}*<E@Qܕչ Jl@ pH,„¡pÈl:ˆÄ¢qH¬Z/ŒÆ£qÈìz? ‚ Õb‰ šO(”Ê¥r‡Ûùö—„¥ô²o8œÎ§sÉìú@ Ð¨tJ,õüÿ~½_`r=\hÖš0Ã×îeûµòí@PÌ?íp` ºP£\®wK­Úïx¼Þ¯W{éÞ; cÔè8 “—DƳ½«X^òyL¬1âúx$‡IBˆ€§–Ðè´zM.›O¨Ôê£Ò9.¯_°›Ë¦)¤Ûc¸Üî·{ÍîøÙx6Žö¡2@ ‚”EÑo¸G•måSÒÆ2Qãùù~wô¡À° ,¿À½ÿ»ßðøü¾rƒÉöò‡ Œ À”¡‹cXöEô‚ašgæ‚ „!J…!XYkaxi•lÓÍ5†âŠ#‰!#Üü=Þ³ýP>Óä…43ìý>Öô0Ì:̳Uü!B'=ËcŒ´AWm‘€0k{QAn¢YZW–%™i _WððI– €ô®c™ Ü–æÔž fÙÖ~n'YÚwžfyŸ¨uµˆ'Ú ƒ¡'rðå.ÏCðô!Ìòþ)=k?ŽÃàëŠ))d@udöS5pP2…ª*šª«}gà9ƒ§ô¢Óy¢šêʲpƒg:ê¿°, ƒžì:ª‡Û{˳,Õù‹‰£`˜6ÏmH?‹„°[ÞP-ãA U³®[šçº! u€`˜Bq‡™“ªÞj›.™n¼œ ûÚû¿/ÛùC±oùnÈm°,³Âú !îX-åèªP7Æ1œkNWÄû‰Ä€•œ‰àÔ —ã]u®SVÛdŸq’õÎÉÆQj8… zaÜ—ÉKf-§ƒô|LÀ#ÁÈ‘}`Ù£¡ &,¤¶®¼€€€ Õb€ „BaP¸d6ˆDbQ8¤V-ŒFcP÷Ûùö—„¥ônM'”JeR¹d¶]/˜LfS9¤Ö`ºr.M,S8€€¯ðmG¤RiTºe6O¨TjU:¥V­W…¿ßïç«õìõÀ&1¬S‰Ë¢cYÞÕÁ›¥Öí1x¾ž !ÒP¢ )ÝðX<& ‡ÄbqX¼dbÆärUXì~C#’äóY¼æw=Ÿƒ–×å–#¡„ ƒ´½f·]¯Ølv[õmüAaäXÝf´lâV»m¾ãsáru—›Ýöÿåtz]>§W­×£ãû¼fVA"’w<^?'–5DŸg¥3qJ ‚üß?§×í÷ükò¯WÛÔü0P3¾Î"ܸ.OÌ›9‹âüÀApŒ% «¸íBÐÊVï2ï 5Ä –tžçH|Y‡`  EÆŒe²Qp{‡°*‚ÂðJ/ APØüÀÎ4IkIl'Êœ1(ÆãÀÌʒ̵ g¡Ä2Cºy›®<·3ÍLÕŸ§ùúzg € $ÐxM ȰC‘5ÂrTèP- CÑ ´§DÂR³1FR‹$­å¸PŽÆHê «ÑIT EQª±±ð~ŸÈ‚©&’ PùBsìÍR<”Ÿ\W•í}IQuûÅGCÖc¥çáü~¥€d|Ÿ§È€VE­kÛ({«À€“ÁñB³m#Û.Mu&]7mÝw¼– àÙØ’Åç{ݤ‰¨HF¡<ÏwÆàËj`àÀ Ù,!l_sÏø+=uИ¶5㋭厳—®A‘Ñ'êqŒ&¼p†úâ䙎e™°öQøzŸ‡¡ƒN1ɦhÆc£é¦?¤°Ù™§Ä4¡EKÐ)NÓú†µ­ëˆ”l{[« 4 áHÑ'èZêë¢í[nÝ|i{z­§n[«Ç8aìP}§Ô[n܎ͧéÜ|ÂP:%’¡Ù/Y`2†ÓÁªg)ËóFãÌ©{§9ϵ§1ìr‰¸Œ~ŸÇîÿÐum$ôÉà`áÁà0rß'×&¼·áøÏ7â¦÷‘å°£qŒ6' `Ô¾g­ëÅçáÿe+b@8$Œ¡@Ì‚Außû W…ôýŸk•ãýÈß•øþŠIŒt˜£aŠ4ì¼T¬€GE-ÁîÕ˜ma¼2€Ê£D"¯® AX,a„"Î AÒ4+øª £55p,Ö`ô)…EÝÂŽÑð;Bx è9€)(# ÈT‡î3H,ˆô ‘º)ÔÈtÀÄ8É‹°#¼€À@Ad CUC â:ŠŽ2è"eƒÃ¾)„1l€øEËV5GXìCœ*”@l!†ÀTAPjú0DÅäDNŒðö4Șް8 Õ£i%â6#ø|™PÀPuáØ0`ĵ¤,=òbVAÙ$l­}à Óq†[ü––Rî qø=ÀÐ Ql ‡€` B´Zò¦J¹y3ߌ¯‡rÆh=`¶/‚ÀÅC@5gíp¦T €0(‚£`8/9™ætážOiC‰©<Þ` Bôs É“>(®’ (}ˆ“|_Â’·^ó¾OCÜÄõ…sÞˆ9†FcÜ^Ïú+GÚìšUôÜ€6¨# óÐÈWC©1m´JQJdÝ…ˆàÄdæ.©½Ahc´|ŽÐDA™¢tÈ*KKb¡QŽ˜T*¬Ñé¤)¦Õ]µ ¡º*CÉ å€ÕÊÌÆ–€ù€T‚X ³¬³J] ª­g¯Lr¬Áê·^Úx«¨9 €ÞË €±K]íÈ\;Bà% ¡ð‡à&À›L®ð¦¼Ø»<¼+ì¯ö}¡Ø+ a¬@´–­II ]' ¡PWþ֬ܳ¶²Þ,kC­½dvšÂØ{p®BPFÆTy±æ € 2  ”/½à“ÍSm·0vÝÜ›¼¨-ü¸7}‹\KQqï%éBÈÙÂ!ö¨Ú÷'¨ùp‰Â(À>ç/Ü¿¸+$üp]8Ôâ,Lr‘µoƒæÆ„Ð<ËøQ`l"¼ 3°Þ'ÇH‡Á,CŽÖ>$½"Ì>lj¨À¹òÙ@ü @ˆ*©î»Á\s‘r ǰå•y°F^ÌEß½±ô?‡Ðû£ì'‚¡ BˆDaöåX%•óy^$GeÜô¨3ÐEU›``±`?‚ `v~¨ØuÒ$KèWAgAéÔ%–à•a@d`„Á‡§—nÕ¬˜É©8ê)!q¢\$Г´“ôoƒë á*¸'æCVlS˨ üµ(N`8¶2Ö£lR1’ä'(»GnTl=Èø—à|‚ ¬™þÂð{\¿š<ñpOa¢WnïS·²ªp‚Ô$ Š› ÷²¾@á­ýº!ÌP@/à9”~]Ä>È$ @d4€Ü‡»µ÷o ŽEJ|+’@)ÉÞ…}f0 ŒˆL* †Ã¡ñŒJ'ŠÅ¢ñˆÌj7ŽÇ£ò ŠG$’ɤ&–!nä[€É<Êg4šÍ¦ó‰Ìêw<žÏ§ô ^§€@ „…§Á‰üTPêõŠÍj.N]Îö¨ ­Ù¬öŠ Ñöô#‡ ‘ênÓtºÝ®÷‹Íê÷|¾ß¯ç9½fáYÀ`{þ+u¼i+2Ðdc2ùŒÎk7œ‡™F%ë™x óºN«W¬Öë®Ï×ûõøþ~=߯r€¦R”È’¿‡ÄŠ×kö—‹ÌáÚí¶ûÏ›ÔêõºýŽÏjøÆt1J«Ò,!ÛòßßÏ÷ðTÕb€§Íôúý¾ñ¢Òø°Æu1RôÅø€ 8—…G>Žõ,S‚Ñè1BÀD,áuÐD-„#€ó7ܨb!N3èóü£JXŠ-‹¢øÂ1‹Ë“Œ¸ xÁ(Ê=HóÀo Ð.£é"I’“‚Û(È3Óà7,Cðÿ? šv©ªª¸^ =ÃÙF0!À`v €¼ êʨæ=Ž`ø³çk!˜OðŒ¡<ÌzÀk&Õµ­{a{²Çc(t* Òœ@ëf;Ï“¸h F‘ô2 .[Âñ_Óäí‹ÞS¼¯»òýVeº™µ<ϳÈ6C4F0œe¿¨clò6„bØDiZ|=æ²À*<ÄLp=LÆr<“%¿P€?àF¶)¡báX„Á6ˆDbQ8¤V-ŒFcQ¸äv=Hcï·óì. )ÈJ°Ø,7"˜LfS9¤Öm7œNgS¹äö}?›¿Ïij](Ži#€PmO¨TjU:¥V­W¬VkU¸p~?ß'ÓÈËCgaqÜv¡•Ë¥Öíwœ8òŠèžù~¾@@ã ‡ÄL߯çèXZÖÀÐ(;—ÌfsY¼æw=ŸÐhf'ú±¾«>³x<E¯ØOßOçÕ©~Kalw[½æ÷}¡X8UƆ˜* ?À­ÿ7Ïètz[Çëÿ«{¿^üp©4>M ‚ƒ¦AA—§çôV dº ‚¹z~[Ç‹éâ—¦IÒoÏüÿÀ À‹«H‡pZ}§ÓY ¹ì~Ä€rI ÀøŸÃì=£Çiðv  Îg†jÎÄl]ÆŠ(xG€,ä  *" žŠ!0FR+þHdyiÀ¨ ¹Nd)¦ ðuQ."@)Ê“ Å1Ì“,\Ò(Gàæd%±ÆZà3Nˆ¬¬vŸ'i|%˜@ δ A©Ã‚0‡)v̵ GÒ$‡J,[ë   "àJ.†À¨oIÔŒÁ„s˜#7çáî€ K2$‡Ø,”¡Ù0Aug_Ø …RÀèiˆt¢™v'V༣aÆ/©âï ÄXlF`(h[–ìŒffX®_  H[×MÕu³2±è~€(‚ 8$Oã@R5à°qv` €˜\‰F¹àk\×F,‡ˆ’ dÈxMáx®-‹ã Mа3cÐ{0c/óª~€€I‡D € ˆYNm›´'ñþ ¹ †s˜@4uœhš.1gN[|Âg¨v ‡Žðž/¢ü£kéhÄѰL@ ¬ºrŒ|Aˆú0„ÃÉ·îŽo¡ÄA¢C’æ©*€ÊnäÞéabQ}¿ñJ~[œ…°À` Ñ»’åñ\¯-Ê6—$†€#N1…€Z‚¢—mòüQÙˆE¨•ÊÝKE•‚€@*a † Ýö]ï}ßÌè#¥‡ˆkLŸ…eà30™ì.‚éžg­ë™çiž4˜ƒ1Þ|÷ ëüŸ+1•´‡©øzüBX:%Œa@Ì!^[ñüÛü¢Lšä¹3ÄÀEü˜”h<À<A0Ø à„3MІ¿·úÿÄÀIgÁ"¬”Z@¼pÄ´AèLÖCÈËâœn R–ß¡<1†Dy(1ô<ÍbÍmˆ=ƒüYÀCOÍÄ !¶( H|tîÆ"$¢«G¸š¢p"°‹bÄY‹D‚ ñÂ<Ç[huqÒ¼™D['€u¥Þ ˆyê&F¨ì°žøï/Á€6¯äÀJ&‘¥˜0ÔŒ  ¼=2Ðø¤ oea4\„±²Ç‘\‘'cÈ} Š‚0›Âv?É©M)à,]""%»‰aª%⎕ˆ’ >˜¢lÐE,æebTj‰1&5D“BÑÖ`ÌÖ•‡Èþ1AÓ€@ðáh¸…3œ@µBÑîp€|œq(´)‚ª€TN¹í=Û|ª" ,‹ j=‡Ø÷‘ÓàŠ%aÞ>‡hº "ø?Z CÒ2†Q™E™Z!EÔ Ï9SD|1ö<Á[õà<4‚l ,펌6ñè>ǨZá]ŽvMiii`ô á<Å9¨U aÏ¢$'ÀšCDD#™–k¨ÄœP0&ˆ°n#aØ ¨•m ¡Ô2BØ¿ 3*fUÊÌ|æS#Ýl€Ã B0  „JB Á ¾¬íüUñT† hVàZ²Ñvžh°ÂÈ`u^ì…‘L5ŠŽÅHÞI{QV¦GȧÁ ;%iΘ[ÁdbŽ‘‰"gU¨¶Fq¤;°`ÅŠðàÂX  „ilÜBµÃ@BŠ!´($ͦÐ9Ðêy,Ö—"î]Óÿe˜ÕãQÇ…áÜž[ ¶2¡+@q$ÌBˆ Wzú¤+â—¦úßÒ¤•‹ B’8€P=‡èö Àx'ƒ .Ávø_ç,}G€5àÌÖ>+×0¶Ç €ž2°¶)ÅFîðQ©xÑ(fŒ£ªH^¾ú‡®!ZNpŠò˜ãhOÁ–@€6 äÒ2”SId@Tª%Dp" À¬7´Œ}“œ»H#\”˜úyS­4ä $AÈ“_«ÿ0g\ì]1i¥%»bNå2VcðyËp@(¥™ßFA4Än{j0Ê]бÃH|Oˆ€ðJ(b( `àw¥ß*† âã20ðüJæ3T„3z£^kÒžH²­Á°b†¡t9EÑrÖ1ZËp?h„ø˜W_mR¨%&@’‚E€\™µ®‘ËÄ(S4Öð…]M% a•ù0›£¸°ä£0Œ¾7‡Ýl +eÅ„­TÕŽ øNê-¼8G ™!1ï`:‰yº;21Ð$ÁÈ• -p®Ë)à¦yƒ_g$s0vcpQ-¿ÚC ÷¡Ø8ÐåñþÆò„}4²Æ.ÔWXJNÿ­Žð°ÂÀ‹;çýŸÜD†@êìô1‘ø>{gïh¿FNäÒÀ,î–Q€Àd ¼ &&ÿI€a–ABȅꃎ²ç2, îàî ¬¹Ð@ȶ$!ðUÀÐóÙ(vI šD@¤ ¤Àp90p"¡œ¡œõ€¶yKðrR$¬Í%j‚¦„æv )ÀÜ!Ã@¦ ª2‡Qiî!”ï–)ÎÚu&Z@ë€àޱ +½b`V¤J ¡tTdfÌB¬r—,a.OÀS 0Õ!’A † AÞݰë$Z£Áä:¢†$ HÀJp@A ðò@Jo`)ʶ˜A>!<³,ügRJ,¤Ð9Àß‘l´ðØ&G‘ á|Á|a*o¥¼ÀÄî*BFÐÑo¢õA^_a? Çv0±œ?Ç4„¢yG”À Ø`ܳ€"´xx_W+–ÁHADà  qBÄh0ÊðÎ1Ù *‰"hÍ! ž aŒ /`„Xl|EðA®æ„² A" ¤P 61.R$¥Þ‚" *Êni ²`´› €9Aü Ú’J¾¤¢ÈÀôf¾É%ê@"%ÙáìyÀò‘€Ü€á'r ¢'!¬᪠Á‚ §V``Òży½á(ª’£*2;#òC!î‡,â@àX4 „>¯wüÄ€ Óõô' â"Ä 0‰Ì€TžQ)•Jå’Ùt¾a1™Læ“Y´Þq9Nç“Ùôþ~¢m¨UMÕCMÞÓAÐù ¡Q©K/§€ð0>)J…Q V§a±Xì–[5žÑiµZí–Ûu¾áq ?î—[áÖ³p¬OìÓð`©×,4ÒM>]øÃ  Ìišƒ Àö1™Ífó™ÜöA=o¼ÛçÖaétä\…P…Ðìö›]´œò}2b@ºXah$ vp"‚$d@¢ óƒà`?dÜ·5Ït'å©ÄZ’¡M›`(Øv=ÒÄÏG«^„€pHA„ j †×N„a8VZR-±bp–Œ\µOØ2Ð")ԙÀ^)“3a™VW–e©aPoø™`a0¸ eÙóžgñô„-”hGäP25€­¬ŸŽ¨$-„‚î}¬k:ÕÊOMÕé]J™àNrKs¶ºLY솇ÀÀ~'„€° :Þï¼o;ÖöaÎÆ„}™çaœBäöŸF¡Üj nA*©ápwøÖ ‚4 :µžùÐt=ZãžÆYÖe& nféè}žœx€—¿Gß3ÞÕ¢ º–ÕJ } Èð…W Ú4wwŸè?ÌiÜaæ(kFáän_›ÛÈŒIè~—˜ ¡îX lý¿¾çú~¿´Ç¿=ωüKÄ›lâpk‰¡øÔ]  gó™×Ѐ€4Äz0) ïÞ A¸8fBkƒÔr áÀ+ôhQŽùÎ,,K8~áøJÒÁÏ.¤,~€ž€(¤ƒ;ÀFúŠØS†&%D³8'È›bb¼g87ã—¢.w‰å=ƒð2!ësmÚ&F8Éc1h(l®éDÎêLy±æ7s´ld`ÙÉúËF‡=g¤Ñþ?ž&g`H ü CúÀ‚XÏ%d´—%°œqö6„ô¤˜dó!x9EåÏ%)(¢h Ä1¢0¦W.Ý÷¿äìÕËõoõÿÀ`:ì ×Yp¹ùt‘€ a<(XïæÃg a¼9‡pöć.\/ˆñ6'ŧb¼Y‹qv/Ø—c'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉ—*Ë̵-Ë’ì½/Áò¼Á1Ì“,Í3ÍLÔØÌS\Ý7ÎŒå9Γª³6ÎÓÌõ=Ï“ìý?Ð$ñ@Д- CÑMÐt]GÒ%IÒJÓÍ5MÓ”í<ËÒôýEQÔ•-MSÕ ¤gTÕ•m]WÖdÔ5m[×Íu]Ï•­y_Ø …aØ’}bÙM•eÙ–l cÙÖ¥iÚ–­­Õv½µmÛ–í½oµ–…ÁqÜ—-ÍsÝ ýÅtÝ—mÝwÞŠUuÞW­í{ßÍÝz_Wíýà ~`X. ƒáM!‚aXn‡âŒÇ†bX®-‹ãÌmŠcXî=ä ŽdY.M“åM-låYn]—拯’fY®m›çËšgYî}Ÿè Ì€€€?à@$ „BaP¸d6ˆDbQ8¤V-ŒFcQ¸äv=HdR9$–M'”JeR¹d¶]/˜LfS9¤Öm7œNgS¹äö}? PhT:%G¤RiTºe6O¢@Ÿõ ¥V­W¬VkUºåv½_°XlV;%–Íg´ZmV»e¶Ýo¸\nTú•Îíw¼^oW»åöýÀ`pX<& ‡ÄbqX¼f6+uÇdrY<¦W-—ÌfsY¼æw=ŸÐhtZ=$g!¥ÔjuZ½f·]¯Ølv[=¦×m·Ü[ôûæ÷}¿àpx\>'ÇäryZÝß/Ïètz]>§W­×ìv{]»Ÿ7¹ßðx|^?'—Íçôz}^»g{Ùïø|~_?§×í÷ü~Y?wïüÿÀ À, Á+ûÁlÂŒ% ¬,¢Áp¼5 Ãì=Ä E¹PÌIÅLUÅ‘l]ÆÂÆ‘¬mÇÌuÇDMÈ …!È’,#É d$É’l'ÊŒ¥)ʉì,ì2ìF*ìªíí(1í=Sí.‡s Hí4icon_512x512@2x.pngXö[¬^bacÎf„|ZÎ;Rš‚u¯WúGEfs ”æ³Â¿ˆÊÜ'ÞÝá“äIæÿéµ¶¶¶¶¶ÖQ¬N56_/Û,âJðK-º!ÆÜ Æ ‘¶¶¶¶¶  tiffutil v268.1 HLinomntrRGB XYZ Î 1acspMSFTIEC sRGBöÖÓ-HP cprtP3desc„lwtptðbkptrXYZgXYZ,bXYZ@dmndTpdmddĈvuedL†viewÔ$lumiømeas $tech0 rTRC< gTRC< bTRC< textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ óQÌXYZ XYZ o¢8õXYZ b™·…ÚXYZ $ „¶ÏdescIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view¤þ_.ÏíÌ \žXYZ L VPWçmeassig CRT curv #(-27;@EJOTY^chmrw|†‹•šŸ¤©®²·¼ÁÆËÐÕÛàåëðöû %+28>ELRY`gnu|ƒ‹’š¡©±¹ÁÉÑÙáéòú &/8AKT]gqz„Ž˜¢¬¶ÁËÕàëõ !-8COZfr~Š–¢®ºÇÓàìù -;HUcq~Œš¨¶ÄÓáðþ +:IXgw†–¦µÅÕåö'7HYj{Œ¯ÀÑãõ+=Oat†™¬¿Òåø 2FZn‚–ª¾Òçû  % : O d y ¤ º Ï å û  ' = T j ˜ ® Å Ü ó " 9 Q i € ˜ ° È á ù  * C \ u Ž § À Ù ó & @ Z t Ž © Ã Þ ø.Id›¶Òî %A^z–³Ïì &Ca~›¹×õ1OmŒªÉè&Ed„£Ãã#Ccƒ¤Åå'Ij‹­Îð4Vx›½à&Il²ÖúAe‰®Ò÷@eНÕú Ek‘·Ý*QwžÅì;cвÚ*R{£ÌõGp™Ãì@j”¾é>i”¿ê  A l ˜ Ä ð!!H!u!¡!Î!û"'"U"‚"¯"Ý# #8#f#”#Â#ð$$M$|$«$Ú% %8%h%—%Ç%÷&'&W&‡&·&è''I'z'«'Ü( (?(q(¢(Ô))8)k))Ð**5*h*›*Ï++6+i++Ñ,,9,n,¢,×- -A-v-«-á..L.‚.·.î/$/Z/‘/Ç/þ050l0¤0Û11J1‚1º1ò2*2c2›2Ô3 3F33¸3ñ4+4e4ž4Ø55M5‡5Â5ý676r6®6é7$7`7œ7×88P8Œ8È99B99¼9ù:6:t:²:ï;-;k;ª;è<' >`> >à?!?a?¢?â@#@d@¦@çA)AjA¬AîB0BrBµB÷C:C}CÀDDGDŠDÎEEUEšEÞF"FgF«FðG5G{GÀHHKH‘H×IIcI©IðJ7J}JÄK KSKšKâL*LrLºMMJM“MÜN%NnN·OOIO“OÝP'PqP»QQPQ›QæR1R|RÇSS_SªSöTBTTÛU(UuUÂVV\V©V÷WDW’WàX/X}XËYYiY¸ZZVZ¦Zõ[E[•[å\5\†\Ö]']x]É^^l^½__a_³``W`ª`üaOa¢aõbIbœbðcCc—cëd@d”dée=e’eçf=f’fèg=g“géh?h–hìiCišiñjHjŸj÷kOk§kÿlWl¯mm`m¹nnknÄooxoÑp+p†pàq:q•qðrKr¦ss]s¸ttptÌu(u…uáv>v›vøwVw³xxnxÌy*y‰yçzFz¥{{c{Â|!||á}A}¡~~b~Â#„å€G€¨ kÍ‚0‚’‚ôƒWƒº„„€„ã…G…«††r†×‡;‡ŸˆˆiˆÎ‰3‰™‰þŠdŠÊ‹0‹–‹üŒcŒÊ1˜ÿŽfŽÎ6žnÖ‘?‘¨’’z’ã“M“¶” ”Š”ô•_•É–4–Ÿ— —u—à˜L˜¸™$™™üšhšÕ›B›¯œœ‰œ÷dÒž@ž®ŸŸ‹Ÿú i Ø¡G¡¶¢&¢–££v£æ¤V¤Ç¥8¥©¦¦‹¦ý§n§à¨R¨Ä©7©©ªª««u«é¬\¬Ð­D­¸®-®¡¯¯‹°°u°ê±`±Ö²K²Â³8³®´%´œµµŠ¶¶y¶ð·h·à¸Y¸Ñ¹J¹Âº;ºµ».»§¼!¼›½½¾ ¾„¾ÿ¿z¿õÀpÀìÁgÁãÂ_ÂÛÃXÃÔÄQÄÎÅKÅÈÆFÆÃÇAÇ¿È=ȼÉ:ɹÊ8Ê·Ë6˶Ì5̵Í5͵Î6ζÏ7ϸÐ9кÑ<ѾÒ?ÒÁÓDÓÆÔIÔËÕNÕÑÖUÖØ×\×àØdØèÙlÙñÚvÚûÛ€ÜÜŠÝÝ–ÞÞ¢ß)߯à6à½áDáÌâSâÛãcãëäsäü儿 æ–çç©è2è¼éFéÐê[êåëpëûì†ííœî(î´ï@ïÌðXðåñrñÿòŒóó§ô4ôÂõPõÞömöû÷Šøø¨ù8ùÇúWúçûwüü˜ý)ýºþKþÜÿmÿÿhdf-java-2.11.0/config/cmake_ext_mod/NSIS.template.in0000644002344600011330000006741212430760246020551 0ustar byrnhdf; CPack install script designed for a nmake build ;-------------------------------- ; You must define these values !define VERSION "@CPACK_PACKAGE_VERSION@" !define PATCH "@CPACK_PACKAGE_VERSION_PATCH@" !define INST_DIR "@CPACK_TEMPORARY_DIRECTORY@" ;-------------------------------- ;Variables Var MUI_TEMP Var STARTMENU_FOLDER Var SV_ALLUSERS Var START_MENU Var DO_NOT_ADD_TO_PATH Var ADD_TO_PATH_ALL_USERS Var ADD_TO_PATH_CURRENT_USER Var INSTALL_DESKTOP Var IS_DEFAULT_INSTALLDIR ;-------------------------------- ;Include Modern UI !include "MUI.nsh" ;Default installation folder InstallDir "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" ;-------------------------------- ;General ;Name and file Name "@CPACK_NSIS_PACKAGE_NAME@" OutFile "@CPACK_TOPLEVEL_DIRECTORY@/@CPACK_OUTPUT_FILE_NAME@" ;Set compression SetCompressor @CPACK_NSIS_COMPRESSOR@ @CPACK_NSIS_DEFINES@ !include Sections.nsh ;--- Component support macros: --- ; The code for the add/remove functionality is from: ; http://nsis.sourceforge.net/Add/Remove_Functionality ; It has been modified slightly and extended to provide ; inter-component dependencies. Var AR_SecFlags Var AR_RegFlags @CPACK_NSIS_SECTION_SELECTED_VARS@ ; Loads the "selected" flag for the section named SecName into the ; variable VarName. !macro LoadSectionSelectedIntoVar SecName VarName SectionGetFlags ${${SecName}} $${VarName} IntOp $${VarName} $${VarName} & ${SF_SELECTED} ;Turn off all other bits !macroend ; Loads the value of a variable... can we get around this? !macro LoadVar VarName IntOp $R0 0 + $${VarName} !macroend ; Sets the value of a variable !macro StoreVar VarName IntValue IntOp $${VarName} 0 + ${IntValue} !macroend !macro InitSection SecName ; This macro reads component installed flag from the registry and ;changes checked state of the section on the components page. ;Input: section index constant name specified in Section command. ClearErrors ;Reading component status from registry ReadRegDWORD $AR_RegFlags HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" "Installed" IfErrors "default_${SecName}" ;Status will stay default if registry value not found ;(component was never installed) IntOp $AR_RegFlags $AR_RegFlags & ${SF_SELECTED} ;Turn off all other bits SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading default section flags IntOp $AR_SecFlags $AR_SecFlags & 0xFFFE ;Turn lowest (enabled) bit off IntOp $AR_SecFlags $AR_RegFlags | $AR_SecFlags ;Change lowest bit ; Note whether this component was installed before !insertmacro StoreVar ${SecName}_was_installed $AR_RegFlags IntOp $R0 $AR_RegFlags & $AR_RegFlags ;Writing modified flags SectionSetFlags ${${SecName}} $AR_SecFlags "default_${SecName}:" !insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected !macroend !macro FinishSection SecName ; This macro reads section flag set by user and removes the section ;if it is not selected. ;Then it writes component installed flag to registry ;Input: section index constant name specified in Section command. SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading section flags ;Checking lowest bit: IntOp $AR_SecFlags $AR_SecFlags & ${SF_SELECTED} IntCmp $AR_SecFlags 1 "leave_${SecName}" ;Section is not selected: ;Calling Section uninstall macro and writing zero installed flag !insertmacro "Remove_${${SecName}}" WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" \ "Installed" 0 Goto "exit_${SecName}" "leave_${SecName}:" ;Section is selected: WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" \ "Installed" 1 "exit_${SecName}:" !macroend !macro RemoveSection_CPack SecName ; This macro is used to call section's Remove_... macro ;from the uninstaller. ;Input: section index constant name specified in Section command. !insertmacro "Remove_${${SecName}}" !macroend ; Determine whether the selection of SecName changed !macro MaybeSelectionChanged SecName !insertmacro LoadVar ${SecName}_selected SectionGetFlags ${${SecName}} $R1 IntOp $R1 $R1 & ${SF_SELECTED} ;Turn off all other bits ; See if the status has changed: IntCmp $R0 $R1 "${SecName}_unchanged" !insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected IntCmp $R1 ${SF_SELECTED} "${SecName}_was_selected" !insertmacro "Deselect_required_by_${SecName}" goto "${SecName}_unchanged" "${SecName}_was_selected:" !insertmacro "Select_${SecName}_depends" "${SecName}_unchanged:" !macroend ;--- End of Add/Remove macros --- ;-------------------------------- ;Interface Settings !define MUI_HEADERIMAGE !define MUI_ABORTWARNING ;-------------------------------- ; path functions !verbose 3 !include "WinMessages.NSH" !verbose 4 ;---------------------------------------- ; based upon a script of "Written by KiCHiK 2003-01-18 05:57:02" ;---------------------------------------- !verbose 3 !include "WinMessages.NSH" !verbose 4 ;==================================================== ; get_NT_environment ; Returns: the selected environment ; Output : head of the stack ;==================================================== !macro select_NT_profile UN Function ${UN}select_NT_profile StrCmp $ADD_TO_PATH_ALL_USERS "1" 0 environment_single DetailPrint "Selected environment for all users" Push "all" Return environment_single: DetailPrint "Selected environment for current user only." Push "current" Return FunctionEnd !macroend !insertmacro select_NT_profile "" !insertmacro select_NT_profile "un." ;---------------------------------------------------- !define NT_current_env 'HKCU "Environment"' !define NT_all_env 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !ifndef WriteEnvStr_RegKey !ifdef ALL_USERS !define WriteEnvStr_RegKey \ 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !else !define WriteEnvStr_RegKey 'HKCU "Environment"' !endif !endif ; AddToPath - Adds the given dir to the search path. ; Input - head of the stack ; Note - Win9x systems requires reboot Function AddToPath Exch $0 Push $1 Push $2 Push $3 # don't add if the path doesn't exist IfFileExists "$0\*.*" "" AddToPath_done ReadEnvStr $1 PATH ; if the path is too long for a NSIS variable NSIS will return a 0 ; length string. If we find that, then warn and skip any path ; modification as it will trash the existing path. StrLen $2 $1 IntCmp $2 0 CheckPathLength_ShowPathWarning CheckPathLength_Done CheckPathLength_Done CheckPathLength_ShowPathWarning: Messagebox MB_OK|MB_ICONEXCLAMATION "Warning! PATH too long installer unable to modify PATH!" Goto AddToPath_done CheckPathLength_Done: Push "$1;" Push "$0;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done Push "$1;" Push "$0\;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done GetFullPathName /SHORT $3 $0 Push "$1;" Push "$3;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done Push "$1;" Push "$3\;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done Call IsNT Pop $1 StrCmp $1 1 AddToPath_NT ; Not on NT StrCpy $1 $WINDIR 2 FileOpen $1 "$1\autoexec.bat" a FileSeek $1 -1 END FileReadByte $1 $2 IntCmp $2 26 0 +2 +2 # DOS EOF FileSeek $1 -1 END # write over EOF FileWrite $1 "$\r$\nSET PATH=%PATH%;$3$\r$\n" FileClose $1 SetRebootFlag true Goto AddToPath_done AddToPath_NT: StrCmp $ADD_TO_PATH_ALL_USERS "1" ReadAllKey ReadRegStr $1 ${NT_current_env} "PATH" Goto DoTrim ReadAllKey: ReadRegStr $1 ${NT_all_env} "PATH" DoTrim: StrCmp $1 "" AddToPath_NTdoIt Push $1 Call Trim Pop $1 StrCpy $0 "$1;$0" AddToPath_NTdoIt: StrCmp $ADD_TO_PATH_ALL_USERS "1" WriteAllKey WriteRegExpandStr ${NT_current_env} "PATH" $0 Goto DoSend WriteAllKey: WriteRegExpandStr ${NT_all_env} "PATH" $0 DoSend: SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 AddToPath_done: Pop $3 Pop $2 Pop $1 Pop $0 FunctionEnd ; RemoveFromPath - Remove a given dir from the path ; Input: head of the stack Function un.RemoveFromPath Exch $0 Push $1 Push $2 Push $3 Push $4 Push $5 Push $6 IntFmt $6 "%c" 26 # DOS EOF Call un.IsNT Pop $1 StrCmp $1 1 unRemoveFromPath_NT ; Not on NT StrCpy $1 $WINDIR 2 FileOpen $1 "$1\autoexec.bat" r GetTempFileName $4 FileOpen $2 $4 w GetFullPathName /SHORT $0 $0 StrCpy $0 "SET PATH=%PATH%;$0" Goto unRemoveFromPath_dosLoop unRemoveFromPath_dosLoop: FileRead $1 $3 StrCpy $5 $3 1 -1 # read last char StrCmp $5 $6 0 +2 # if DOS EOF StrCpy $3 $3 -1 # remove DOS EOF so we can compare StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoopRemoveLine StrCmp $3 "$0$\n" unRemoveFromPath_dosLoopRemoveLine StrCmp $3 "$0" unRemoveFromPath_dosLoopRemoveLine StrCmp $3 "" unRemoveFromPath_dosLoopEnd FileWrite $2 $3 Goto unRemoveFromPath_dosLoop unRemoveFromPath_dosLoopRemoveLine: SetRebootFlag true Goto unRemoveFromPath_dosLoop unRemoveFromPath_dosLoopEnd: FileClose $2 FileClose $1 StrCpy $1 $WINDIR 2 Delete "$1\autoexec.bat" CopyFiles /SILENT $4 "$1\autoexec.bat" Delete $4 Goto unRemoveFromPath_done unRemoveFromPath_NT: StrCmp $ADD_TO_PATH_ALL_USERS "1" unReadAllKey ReadRegStr $1 ${NT_current_env} "PATH" Goto unDoTrim unReadAllKey: ReadRegStr $1 ${NT_all_env} "PATH" unDoTrim: StrCpy $5 $1 1 -1 # copy last char StrCmp $5 ";" +2 # if last char != ; StrCpy $1 "$1;" # append ; Push $1 Push "$0;" Call un.StrStr ; Find `$0;` in $1 Pop $2 ; pos of our dir StrCmp $2 "" unRemoveFromPath_done ; else, it is in path # $0 - path to add # $1 - path var StrLen $3 "$0;" StrLen $4 $2 StrCpy $5 $1 -$4 # $5 is now the part before the path to remove StrCpy $6 $2 "" $3 # $6 is now the part after the path to remove StrCpy $3 $5$6 StrCpy $5 $3 1 -1 # copy last char StrCmp $5 ";" 0 +2 # if last char == ; StrCpy $3 $3 -1 # remove last char StrCmp $ADD_TO_PATH_ALL_USERS "1" unWriteAllKey WriteRegExpandStr ${NT_current_env} "PATH" $3 Goto unDoSend unWriteAllKey: WriteRegExpandStr ${NT_all_env} "PATH" $3 unDoSend: SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 unRemoveFromPath_done: Pop $6 Pop $5 Pop $4 Pop $3 Pop $2 Pop $1 Pop $0 FunctionEnd ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Uninstall sutff ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ########################################### # Utility Functions # ########################################### ;==================================================== ; IsNT - Returns 1 if the current system is NT, 0 ; otherwise. ; Output: head of the stack ;==================================================== ; IsNT ; no input ; output, top of the stack = 1 if NT or 0 if not ; ; Usage: ; Call IsNT ; Pop $R0 ; ($R0 at this point is 1 or 0) !macro IsNT un Function ${un}IsNT Push $0 ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion StrCmp $0 "" 0 IsNT_yes ; we are not NT. Pop $0 Push 0 Return IsNT_yes: ; NT!!! Pop $0 Push 1 FunctionEnd !macroend !insertmacro IsNT "" !insertmacro IsNT "un." ; StrStr ; input, top of stack = string to search for ; top of stack-1 = string to search in ; output, top of stack (replaces with the portion of the string remaining) ; modifies no other variables. ; ; Usage: ; Push "this is a long ass string" ; Push "ass" ; Call StrStr ; Pop $R0 ; ($R0 at this point is "ass string") !macro StrStr un Function ${un}StrStr Exch $R1 ; st=haystack,old$R1, $R1=needle Exch ; st=old$R1,haystack Exch $R2 ; st=old$R1,old$R2, $R2=haystack Push $R3 Push $R4 Push $R5 StrLen $R3 $R1 StrCpy $R4 0 ; $R1=needle ; $R2=haystack ; $R3=len(needle) ; $R4=cnt ; $R5=tmp loop: StrCpy $R5 $R2 $R3 $R4 StrCmp $R5 $R1 done StrCmp $R5 "" done IntOp $R4 $R4 + 1 Goto loop done: StrCpy $R1 $R2 "" $R4 Pop $R5 Pop $R4 Pop $R3 Pop $R2 Exch $R1 FunctionEnd !macroend !insertmacro StrStr "" !insertmacro StrStr "un." Function Trim ; Added by Pelaca Exch $R1 Push $R2 Loop: StrCpy $R2 "$R1" 1 -1 StrCmp "$R2" " " RTrim StrCmp "$R2" "$\n" RTrim StrCmp "$R2" "$\r" RTrim StrCmp "$R2" ";" RTrim GoTo Done RTrim: StrCpy $R1 "$R1" -1 Goto Loop Done: Pop $R2 Exch $R1 FunctionEnd Function ConditionalAddToRegisty Pop $0 Pop $1 StrCmp "$0" "" ConditionalAddToRegisty_EmptyString WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" \ "$1" "$0" ;MessageBox MB_OK "Set Registry: '$1' to '$0'" DetailPrint "Set install registry entry: '$1' to '$0'" ConditionalAddToRegisty_EmptyString: FunctionEnd ;-------------------------------- !ifdef CPACK_USES_DOWNLOAD Function DownloadFile IfFileExists $INSTDIR\* +2 CreateDirectory $INSTDIR Pop $0 ; Skip if already downloaded IfFileExists $INSTDIR\$0 0 +2 Return StrCpy $1 "@CPACK_DOWNLOAD_SITE@" try_again: NSISdl::download "$1/$0" "$INSTDIR\$0" Pop $1 StrCmp $1 "success" success StrCmp $1 "Cancelled" cancel MessageBox MB_OK "Download failed: $1" cancel: Return success: FunctionEnd !endif ;-------------------------------- ; Installation types @CPACK_NSIS_INSTALLATION_TYPES@ ;-------------------------------- ; Component sections @CPACK_NSIS_COMPONENT_SECTIONS@ ;-------------------------------- ; Define some macro setting for the gui @CPACK_NSIS_INSTALLER_MUI_ICON_CODE@ @CPACK_NSIS_INSTALLER_ICON_CODE@ @CPACK_NSIS_INSTALLER_MUI_COMPONENTS_DESC@ @CPACK_NSIS_INSTALLER_MUI_FINISHPAGE_RUN_CODE@ ;-------------------------------- ;Pages !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_LICENSE "@CPACK_RESOURCE_FILE_LICENSE@" Page custom InstallOptionsPage !insertmacro MUI_PAGE_DIRECTORY ;Start Menu Folder Page Configuration !define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX" !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder" !insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER @CPACK_NSIS_PAGE_COMPONENTS@ !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_FINISH !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES ;-------------------------------- ;Languages !insertmacro MUI_LANGUAGE "English" ;first language is the default language !insertmacro MUI_LANGUAGE "Albanian" !insertmacro MUI_LANGUAGE "Arabic" !insertmacro MUI_LANGUAGE "Basque" !insertmacro MUI_LANGUAGE "Belarusian" !insertmacro MUI_LANGUAGE "Bosnian" !insertmacro MUI_LANGUAGE "Breton" !insertmacro MUI_LANGUAGE "Bulgarian" !insertmacro MUI_LANGUAGE "Croatian" !insertmacro MUI_LANGUAGE "Czech" !insertmacro MUI_LANGUAGE "Danish" !insertmacro MUI_LANGUAGE "Dutch" !insertmacro MUI_LANGUAGE "Estonian" !insertmacro MUI_LANGUAGE "Farsi" !insertmacro MUI_LANGUAGE "Finnish" !insertmacro MUI_LANGUAGE "French" !insertmacro MUI_LANGUAGE "German" !insertmacro MUI_LANGUAGE "Greek" !insertmacro MUI_LANGUAGE "Hebrew" !insertmacro MUI_LANGUAGE "Hungarian" !insertmacro MUI_LANGUAGE "Icelandic" !insertmacro MUI_LANGUAGE "Indonesian" !insertmacro MUI_LANGUAGE "Irish" !insertmacro MUI_LANGUAGE "Italian" !insertmacro MUI_LANGUAGE "Japanese" !insertmacro MUI_LANGUAGE "Korean" !insertmacro MUI_LANGUAGE "Kurdish" !insertmacro MUI_LANGUAGE "Latvian" !insertmacro MUI_LANGUAGE "Lithuanian" !insertmacro MUI_LANGUAGE "Luxembourgish" !insertmacro MUI_LANGUAGE "Macedonian" !insertmacro MUI_LANGUAGE "Malay" !insertmacro MUI_LANGUAGE "Mongolian" !insertmacro MUI_LANGUAGE "Norwegian" !insertmacro MUI_LANGUAGE "Polish" !insertmacro MUI_LANGUAGE "Portuguese" !insertmacro MUI_LANGUAGE "PortugueseBR" !insertmacro MUI_LANGUAGE "Romanian" !insertmacro MUI_LANGUAGE "Russian" !insertmacro MUI_LANGUAGE "Serbian" !insertmacro MUI_LANGUAGE "SerbianLatin" !insertmacro MUI_LANGUAGE "SimpChinese" !insertmacro MUI_LANGUAGE "Slovak" !insertmacro MUI_LANGUAGE "Slovenian" !insertmacro MUI_LANGUAGE "Spanish" !insertmacro MUI_LANGUAGE "Swedish" !insertmacro MUI_LANGUAGE "Thai" !insertmacro MUI_LANGUAGE "TradChinese" !insertmacro MUI_LANGUAGE "Turkish" !insertmacro MUI_LANGUAGE "Ukrainian" !insertmacro MUI_LANGUAGE "Welsh" ;-------------------------------- ;Reserve Files ;These files should be inserted before other files in the data block ;Keep these lines before any File command ;Only for solid compression (by default, solid compression is enabled for BZIP2 and LZMA) ReserveFile "NSIS.InstallOptions.ini" !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS ;-------------------------------- ;Installer Sections Section "-Core installation" ;Use the entire tree produced by the INSTALL target. Keep the ;list of directories here in sync with the RMDir commands below. SetOutPath "$INSTDIR" @CPACK_NSIS_EXTRA_PREINSTALL_COMMANDS@ @CPACK_NSIS_FULL_INSTALL@ ;Store installation folder WriteRegStr SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "" $INSTDIR ;Create uninstaller WriteUninstaller "$INSTDIR\Uninstall.exe" Push "DisplayName" Push "@CPACK_NSIS_DISPLAY_NAME@" Call ConditionalAddToRegisty Push "DisplayVersion" Push "@CPACK_PACKAGE_VERSION@" Call ConditionalAddToRegisty Push "Publisher" Push "@CPACK_PACKAGE_VENDOR@" Call ConditionalAddToRegisty Push "UninstallString" Push "$INSTDIR\Uninstall.exe" Call ConditionalAddToRegisty Push "NoRepair" Push "1" Call ConditionalAddToRegisty !ifdef CPACK_NSIS_ADD_REMOVE ;Create add/remove functionality Push "ModifyPath" Push "$INSTDIR\AddRemove.exe" Call ConditionalAddToRegisty !else Push "NoModify" Push "1" Call ConditionalAddToRegisty !endif ; Optional registration Push "DisplayIcon" Push "$INSTDIR\@CPACK_NSIS_INSTALLED_ICON_NAME@" Call ConditionalAddToRegisty Push "HelpLink" Push "@CPACK_NSIS_HELP_LINK@" Call ConditionalAddToRegisty Push "URLInfoAbout" Push "@CPACK_NSIS_URL_INFO_ABOUT@" Call ConditionalAddToRegisty Push "Contact" Push "@CPACK_NSIS_CONTACT@" Call ConditionalAddToRegisty !insertmacro MUI_INSTALLOPTIONS_READ $INSTALL_DESKTOP "NSIS.InstallOptions.ini" "Field 5" "State" !insertmacro MUI_STARTMENU_WRITE_BEGIN Application ;Create shortcuts CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER" @CPACK_NSIS_CREATE_ICONS@ @CPACK_NSIS_CREATE_ICONS_EXTRA@ CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe" ;Read a value from an InstallOptions INI file !insertmacro MUI_INSTALLOPTIONS_READ $DO_NOT_ADD_TO_PATH "NSIS.InstallOptions.ini" "Field 2" "State" !insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_ALL_USERS "NSIS.InstallOptions.ini" "Field 3" "State" !insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_CURRENT_USER "NSIS.InstallOptions.ini" "Field 4" "State" ; Write special uninstall registry entries Push "StartMenu" Push "$STARTMENU_FOLDER" Call ConditionalAddToRegisty Push "DoNotAddToPath" Push "$DO_NOT_ADD_TO_PATH" Call ConditionalAddToRegisty Push "AddToPathAllUsers" Push "$ADD_TO_PATH_ALL_USERS" Call ConditionalAddToRegisty Push "AddToPathCurrentUser" Push "$ADD_TO_PATH_CURRENT_USER" Call ConditionalAddToRegisty Push "InstallToDesktop" Push "$INSTALL_DESKTOP" Call ConditionalAddToRegisty !insertmacro MUI_STARTMENU_WRITE_END @CPACK_NSIS_EXTRA_INSTALL_COMMANDS@ SectionEnd Section "-Add to path" Push $INSTDIR\bin StrCmp "@CPACK_NSIS_MODIFY_PATH@" "ON" 0 doNotAddToPath StrCmp $DO_NOT_ADD_TO_PATH "1" doNotAddToPath 0 Call AddToPath doNotAddToPath: SectionEnd ;-------------------------------- ; Create custom pages Function InstallOptionsPage !insertmacro MUI_HEADER_TEXT "Install Options" "Choose options for installing @CPACK_NSIS_PACKAGE_NAME@" !insertmacro MUI_INSTALLOPTIONS_DISPLAY "NSIS.InstallOptions.ini" FunctionEnd ;-------------------------------- ; determine admin versus local install Function un.onInit ClearErrors UserInfo::GetName IfErrors noLM Pop $0 UserInfo::GetAccountType Pop $1 StrCmp $1 "Admin" 0 +3 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Admin group' Goto done StrCmp $1 "Power" 0 +3 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Power Users group' Goto done noLM: ;Get installation folder from registry if available done: FunctionEnd ;--- Add/Remove callback functions: --- !macro SectionList MacroName ;This macro used to perform operation on multiple sections. ;List all of your components in following manner here. @CPACK_NSIS_COMPONENT_SECTION_LIST@ !macroend Section -FinishComponents ;Removes unselected components and writes component status to registry !insertmacro SectionList "FinishSection" !ifdef CPACK_NSIS_ADD_REMOVE ; Get the name of the installer executable System::Call 'kernel32::GetModuleFileNameA(i 0, t .R0, i 1024) i r1' StrCpy $R3 $R0 ; Strip off the last 13 characters, to see if we have AddRemove.exe StrLen $R1 $R0 IntOp $R1 $R0 - 13 StrCpy $R2 $R0 13 $R1 StrCmp $R2 "AddRemove.exe" addremove_installed ; We're not running AddRemove.exe, so install it CopyFiles $R3 $INSTDIR\AddRemove.exe addremove_installed: !endif SectionEnd ;--- End of Add/Remove callback functions --- ;-------------------------------- ; Component dependencies Function .onSelChange !insertmacro SectionList MaybeSelectionChanged FunctionEnd ;-------------------------------- ;Uninstaller Section Section "Uninstall" ReadRegStr $START_MENU SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "StartMenu" ;MessageBox MB_OK "Start menu is in: $START_MENU" ReadRegStr $DO_NOT_ADD_TO_PATH SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "DoNotAddToPath" ReadRegStr $ADD_TO_PATH_ALL_USERS SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "AddToPathAllUsers" ReadRegStr $ADD_TO_PATH_CURRENT_USER SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "AddToPathCurrentUser" ;MessageBox MB_OK "Add to path: $DO_NOT_ADD_TO_PATH all users: $ADD_TO_PATH_ALL_USERS" ReadRegStr $INSTALL_DESKTOP SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "InstallToDesktop" ;MessageBox MB_OK "Install to desktop: $INSTALL_DESKTOP " @CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS@ ;Remove files we installed. ;Keep the list of directories here in sync with the File commands above. @CPACK_NSIS_DELETE_FILES@ @CPACK_NSIS_DELETE_DIRECTORIES@ !ifdef CPACK_NSIS_ADD_REMOVE ;Remove the add/remove program Delete "$INSTDIR\AddRemove.exe" !endif ;Remove the uninstaller itself. Delete "$INSTDIR\Uninstall.exe" DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" ;Remove the installation directory if it is empty. RMDir "$INSTDIR" ; Remove the registry entries. DeleteRegKey SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" ; Removes all optional components !insertmacro SectionList "RemoveSection_CPack" !insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk" @CPACK_NSIS_DELETE_ICONS@ @CPACK_NSIS_DELETE_ICONS_EXTRA@ ;Delete empty start menu parent diretories StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP" startMenuDeleteLoop: ClearErrors RMDir $MUI_TEMP GetFullPathName $MUI_TEMP "$MUI_TEMP\.." IfErrors startMenuDeleteLoopDone StrCmp "$MUI_TEMP" "$SMPROGRAMS" startMenuDeleteLoopDone startMenuDeleteLoop startMenuDeleteLoopDone: ; If the user changed the shortcut, then untinstall may not work. This should ; try to fix it. StrCpy $MUI_TEMP "$START_MENU" Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk" @CPACK_NSIS_DELETE_ICONS_EXTRA@ ;Delete empty start menu parent diretories StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP" secondStartMenuDeleteLoop: ClearErrors RMDir $MUI_TEMP GetFullPathName $MUI_TEMP "$MUI_TEMP\.." IfErrors secondStartMenuDeleteLoopDone StrCmp "$MUI_TEMP" "$SMPROGRAMS" secondStartMenuDeleteLoopDone secondStartMenuDeleteLoop secondStartMenuDeleteLoopDone: DeleteRegKey /ifempty SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" Push $INSTDIR\bin StrCmp $DO_NOT_ADD_TO_PATH_ "1" doNotRemoveFromPath 0 Call un.RemoveFromPath doNotRemoveFromPath: SectionEnd ;-------------------------------- ; determine admin versus local install ; Is install for "AllUsers" or "JustMe"? ; Default to "JustMe" - set to "AllUsers" if admin or on Win9x ; This function is used for the very first "custom page" of the installer. ; This custom page does not show up visibly, but it executes prior to the ; first visible page and sets up $INSTDIR properly... ; Choose different default installation folder based on SV_ALLUSERS... ; "Program Files" for AllUsers, "My Documents" for JustMe... Function .onInit StrCmp "@CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL@" "ON" 0 inst ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "UninstallString" StrCmp $0 "" inst MessageBox MB_YESNOCANCEL|MB_ICONEXCLAMATION \ "@CPACK_NSIS_PACKAGE_NAME@ is already installed. $\n$\nDo you want to uninstall the old version before installing the new one?" \ IDYES uninst IDNO inst Abort ;Run the uninstaller uninst: ClearErrors StrLen $2 "\Uninstall.exe" StrCpy $3 $0 -$2 # remove "\Uninstall.exe" from UninstallString to get path ExecWait '$0 _?=$3' ;Do not copy the uninstaller to a temp file IfErrors uninst_failed inst uninst_failed: MessageBox MB_OK|MB_ICONSTOP "Uninstall failed." Abort inst: ; Reads components status for registry !insertmacro SectionList "InitSection" ; check to see if /D has been used to change ; the install directory by comparing it to the ; install directory that is expected to be the ; default StrCpy $IS_DEFAULT_INSTALLDIR 0 StrCmp "$INSTDIR" "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" 0 +2 StrCpy $IS_DEFAULT_INSTALLDIR 1 StrCpy $SV_ALLUSERS "JustMe" ; if default install dir then change the default ; if it is installed for JustMe StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2 StrCpy $INSTDIR "$DOCUMENTS\@CPACK_PACKAGE_INSTALL_DIRECTORY@" ClearErrors UserInfo::GetName IfErrors noLM Pop $0 UserInfo::GetAccountType Pop $1 StrCmp $1 "Admin" 0 +4 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Admin group' StrCpy $SV_ALLUSERS "AllUsers" Goto done StrCmp $1 "Power" 0 +4 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Power Users group' StrCpy $SV_ALLUSERS "AllUsers" Goto done noLM: StrCpy $SV_ALLUSERS "AllUsers" ;Get installation folder from registry if available done: StrCmp $SV_ALLUSERS "AllUsers" 0 +3 StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2 StrCpy $INSTDIR "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" StrCmp "@CPACK_NSIS_MODIFY_PATH@" "ON" 0 noOptionsPage !insertmacro MUI_INSTALLOPTIONS_EXTRACT "NSIS.InstallOptions.ini" noOptionsPage: FunctionEnd hdf-java-2.11.0/config/cmake_ext_mod/prunTest.cmake0000644002344600011330000001321512401656217020451 0ustar byrnhdf# runTest.cmake executes a command and captures the output in a file. File is then compared # against a reference file. Exit status of command can also be compared. cmake_policy(SET CMP0007 NEW) # arguments checking if (NOT TEST_PROGRAM) message (FATAL_ERROR "Require TEST_PROGRAM to be defined") endif (NOT TEST_PROGRAM) #if (NOT TEST_ARGS) # message (STATUS "Require TEST_ARGS to be defined") #endif (NOT TEST_ARGS) if (NOT TEST_FOLDER) message ( FATAL_ERROR "Require TEST_FOLDER to be defined") endif (NOT TEST_FOLDER) if (NOT TEST_OUTPUT) message (FATAL_ERROR "Require TEST_OUTPUT to be defined") endif (NOT TEST_OUTPUT) #if (NOT TEST_EXPECT) # message (STATUS "Require TEST_EXPECT to be defined") #endif (NOT TEST_EXPECT) #if (NOT TEST_FILTER) # message (STATUS "Require TEST_FILTER to be defined") #endif (NOT TEST_FILTER) if (NOT TEST_SKIP_COMPARE AND NOT TEST_REFERENCE) message (FATAL_ERROR "Require TEST_REFERENCE to be defined") endif (NOT TEST_SKIP_COMPARE AND NOT TEST_REFERENCE) set (ERROR_APPEND 1) message (STATUS "COMMAND: ${TEST_PROGRAM} ${TEST_ARGS}") if (TEST_ENV_VAR) set (ENV{${TEST_ENV_VAR}} "${TEST_ENV_VALUE}") endif (TEST_ENV_VAR) # run the test program, capture the stdout/stderr and the result var EXECUTE_PROCESS ( COMMAND ${TEST_PROGRAM} ${TEST_ARGS} WORKING_DIRECTORY ${TEST_FOLDER} RESULT_VARIABLE TEST_RESULT OUTPUT_FILE ${TEST_OUTPUT} ERROR_FILE ${TEST_OUTPUT}.err OUTPUT_VARIABLE TEST_ERROR ERROR_VARIABLE TEST_ERROR ) message (STATUS "COMMAND Result: ${TEST_RESULT}") file (READ ${TEST_FOLDER}/${TEST_REFERENCE} TEST_STREAM) file (WRITE ${TEST_FOLDER}/P_${TEST_REFERENCE} "${TEST_STREAM}") if (ERROR_APPEND) file (READ ${TEST_FOLDER}/${TEST_OUTPUT}.err TEST_STREAM) file (APPEND ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") endif (ERROR_APPEND) if (TEST_APPEND) file (APPEND ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_APPEND} ${TEST_ERROR}\n") endif (TEST_APPEND) message (STATUS "COMMAND Error: ${TEST_ERROR}") if (TEST_MASK) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) STRING(REGEX REPLACE "Storage:[^\n]+\n" "Storage:
    \n" TEST_STREAM "${TEST_STREAM}") file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") endif (TEST_MASK) if (TEST_MASK_MOD) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) STRING(REGEX REPLACE "Modified:[^\n]+\n" "Modified: XXXX-XX-XX XX:XX:XX XXX\n" TEST_STREAM "${TEST_STREAM}") file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") endif (TEST_MASK_MOD) if (TEST_MASK_ERROR) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) STRING(REGEX REPLACE "thread [0-9]*:" "thread (IDs):" TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE ": ([^\n]*)[.]c " ": (file name) " TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE " line [0-9]*" " line (number)" TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE "v[1-9]*[.][0-9]*[.]" "version (number)." TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE "[1-9]*[.][0-9]*[.][0-9]*[^)]*" "version (number)" TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE "H5Eget_auto[1-2]*" "H5Eget_auto(1 or 2)" TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE "H5Eset_auto[1-2]*" "H5Eset_auto(1 or 2)" TEST_STREAM "${TEST_STREAM}") file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") endif (TEST_MASK_ERROR) if (TEST_FILTER) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) STRING(REGEX REPLACE "${TEST_FILTER}" "" TEST_STREAM "${TEST_STREAM}") file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") endif (TEST_FILTER) #if (TEST_REF_FILTER) # message (STATUS "TEST_REF_FILTER: ${TEST_APPEND}${TEST_REF_FILTER}") # file (READ ${TEST_FOLDER}/P_${TEST_REFERENCE} TEST_STREAM) # STRING(REGEX REPLACE "${TEST_APPEND}" "${TEST_REF_FILTER}" TEST_STREAM "${TEST_STREAM}") # file (WRITE ${TEST_FOLDER}/P_${TEST_REFERENCE} "${TEST_STREAM}") #endif (TEST_REF_FILTER) if (NOT TEST_SKIP_COMPARE) if (WIN32 AND NOT MINGW) file (READ ${TEST_FOLDER}/P_${TEST_REFERENCE} TEST_STREAM) file (WRITE ${TEST_FOLDER}/P_${TEST_REFERENCE} "${TEST_STREAM}") endif (WIN32 AND NOT MINGW) # now compare the output with the reference EXECUTE_PROCESS ( COMMAND ${CMAKE_COMMAND} -E compare_files ${TEST_FOLDER}/${TEST_OUTPUT} ${TEST_FOLDER}/P_${TEST_REFERENCE} RESULT_VARIABLE TEST_RESULT ) if (NOT ${TEST_RESULT} STREQUAL 0) set (TEST_RESULT 0) file (STRINGS ${TEST_FOLDER}/${TEST_OUTPUT} test_act) LIST (LENGTH test_act len_act) file (STRINGS ${TEST_FOLDER}/P_${TEST_REFERENCE} test_ref) LIST (LENGTH test_ref len_ref) if (NOT ${len_act} STREQUAL "0") MATH (EXPR _FP_LEN "${len_ref} - 1") foreach (line RANGE 0 ${_FP_LEN}) LIST (GET test_act ${line} str_act) LIST (GET test_ref ${line} str_ref) if (NOT "${str_act}" STREQUAL "${str_ref}") if (NOT "${str_act}" STREQUAL "") set (TEST_RESULT 1) message ("line = ${line}\n***ACTUAL: ${str_act}\n****REFER: ${str_ref}\n") endif (NOT "${str_act}" STREQUAL "") endif (NOT "${str_act}" STREQUAL "${str_ref}") endforeach (line RANGE 0 ${_FP_LEN}) endif (NOT ${len_act} STREQUAL "0") if (NOT ${len_act} STREQUAL ${len_ref}) set (TEST_RESULT 1) endif (NOT ${len_act} STREQUAL ${len_ref}) endif (NOT ${TEST_RESULT} STREQUAL 0) message (STATUS "COMPARE Result: ${TEST_RESULT}") # again, if return value is !=0 scream and shout if (NOT ${TEST_RESULT} STREQUAL 0) message (FATAL_ERROR "Failed: The output of ${TEST_OUTPUT} did not match P_${TEST_REFERENCE}") endif (NOT ${TEST_RESULT} STREQUAL 0) endif (NOT TEST_SKIP_COMPARE) # everything went fine... message ("Passed: The output of ${TEST_PROGRAM} matches P_${TEST_REFERENCE}") hdf-java-2.11.0/config/cmake_ext_mod/HDFMacros.cmake0000644002344600011330000002753112434671624020406 0ustar byrnhdf#------------------------------------------------------------------------------- MACRO (SET_GLOBAL_VARIABLE name value) set (${name} ${value} CACHE INTERNAL "Used to pass variables between directories" FORCE) ENDMACRO (SET_GLOBAL_VARIABLE) #------------------------------------------------------------------------------- MACRO (IDE_GENERATED_PROPERTIES SOURCE_PATH HEADERS SOURCES) #set(source_group_path "Source/AIM/${NAME}") string (REPLACE "/" "\\\\" source_group_path ${SOURCE_PATH}) source_group (${source_group_path} FILES ${HEADERS} ${SOURCES}) #-- The following is needed if we ever start to use OS X Frameworks but only #-- works on CMake 2.6 and greater #set_property (SOURCE ${HEADERS} # PROPERTY MACOSX_PACKAGE_LOCATION Headers/${NAME} #) ENDMACRO (IDE_GENERATED_PROPERTIES) #------------------------------------------------------------------------------- MACRO (IDE_SOURCE_PROPERTIES SOURCE_PATH HEADERS SOURCES) # install (FILES ${HEADERS} # DESTINATION include/R3D/${NAME} # COMPONENT Headers # ) string (REPLACE "/" "\\\\" source_group_path ${SOURCE_PATH} ) source_group (${source_group_path} FILES ${HEADERS} ${SOURCES}) #-- The following is needed if we ever start to use OS X Frameworks but only #-- works on CMake 2.6 and greater #set_property (SOURCE ${HEADERS} # PROPERTY MACOSX_PACKAGE_LOCATION Headers/${NAME} #) ENDMACRO (IDE_SOURCE_PROPERTIES) #------------------------------------------------------------------------------- MACRO (TARGET_NAMING libtarget libtype) if (WIN32) if (${libtype} MATCHES "SHARED") set_target_properties (${libtarget} PROPERTIES OUTPUT_NAME "${libtarget}dll") endif (${libtype} MATCHES "SHARED") endif (WIN32) ENDMACRO (TARGET_NAMING) #------------------------------------------------------------------------------- MACRO (INSTALL_TARGET_PDB libtarget targetdestination targetcomponent) if (WIN32 AND MSVC) get_target_property (target_name ${libtarget} OUTPUT_NAME_RELWITHDEBINFO) install ( FILES ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${target_name}.pdb DESTINATION ${targetdestination} CONFIGURATIONS RelWithDebInfo COMPONENT ${targetcomponent} ) endif (WIN32 AND MSVC) ENDMACRO (INSTALL_TARGET_PDB) #------------------------------------------------------------------------------- MACRO (INSTALL_PROGRAM_PDB progtarget targetdestination targetcomponent) if (WIN32 AND MSVC) get_target_property (target_name ${progtarget} OUTPUT_NAME_RELWITHDEBINFO) get_target_property (target_prefix ${progtarget} PREFIX) install ( FILES ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}/${target_prefix}${target_name}.pdb DESTINATION ${targetdestination} CONFIGURATIONS RelWithDebInfo COMPONENT ${targetcomponent} ) endif (WIN32 AND MSVC) ENDMACRO (INSTALL_PROGRAM_PDB) #------------------------------------------------------------------------------- MACRO (HDF_SET_LIB_OPTIONS libtarget libname libtype) if (${libtype} MATCHES "SHARED") if (WIN32) set (LIB_RELEASE_NAME "${libname}") set (LIB_DEBUG_NAME "${libname}_D") else (WIN32) set (LIB_RELEASE_NAME "${libname}") set (LIB_DEBUG_NAME "${libname}_debug") endif (WIN32) else (${libtype} MATCHES "SHARED") if (WIN32) set (LIB_RELEASE_NAME "lib${libname}") set (LIB_DEBUG_NAME "lib${libname}_D") else (WIN32) set (LIB_RELEASE_NAME "${libname}") set (LIB_DEBUG_NAME "${libname}_debug") endif (WIN32) endif (${libtype} MATCHES "SHARED") set_target_properties (${libtarget} PROPERTIES OUTPUT_NAME_DEBUG ${LIB_DEBUG_NAME} OUTPUT_NAME_RELEASE ${LIB_RELEASE_NAME} OUTPUT_NAME_MINSIZEREL ${LIB_RELEASE_NAME} OUTPUT_NAME_RELWITHDEBINFO ${LIB_RELEASE_NAME} ) #----- Use MSVC Naming conventions for Shared Libraries if (MINGW AND ${libtype} MATCHES "SHARED") set_target_properties (${libtarget} PROPERTIES IMPORT_SUFFIX ".lib" IMPORT_PREFIX "" PREFIX "" ) endif (MINGW AND ${libtype} MATCHES "SHARED") ENDMACRO (HDF_SET_LIB_OPTIONS) #------------------------------------------------------------------------------- MACRO (HDF_IMPORT_SET_LIB_OPTIONS libtarget libname libtype libversion) HDF_SET_LIB_OPTIONS (${libtarget} ${libname} ${libtype}) if (${importtype} MATCHES "IMPORT") set (importprefix "${CMAKE_STATIC_LIBRARY_PREFIX}") endif (${importtype} MATCHES "IMPORT") if (${CMAKE_BUILD_TYPE} MATCHES "Debug") set (IMPORT_LIB_NAME ${LIB_DEBUG_NAME}) else (${CMAKE_BUILD_TYPE} MATCHES "Debug") set (IMPORT_LIB_NAME ${LIB_RELEASE_NAME}) endif (${CMAKE_BUILD_TYPE} MATCHES "Debug") if (${libtype} MATCHES "SHARED") if (WIN32) if (MINGW) set_target_properties (${libtarget} PROPERTIES IMPORTED_IMPLIB "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${IMPORT_LIB_NAME}.lib" IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${IMPORT_LIB_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}" ) else (MINGW) set_target_properties (${libtarget} PROPERTIES IMPORTED_IMPLIB "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_IMPORT_LIBRARY_SUFFIX}" IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}" ) endif (MINGW) else (WIN32) if (CYGWIN) set_target_properties (${libtarget} PROPERTIES IMPORTED_IMPLIB "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_IMPORT_LIBRARY_SUFFIX}" IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_IMPORT_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}" ) else (CYGWIN) set_target_properties (${libtarget} PROPERTIES IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_SHARED_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}" IMPORTED_SONAME "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_SHARED_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_SHARED_LIBRARY_SUFFIX}.${libversion}" SOVERSION "${libversion}" ) endif (CYGWIN) endif (WIN32) else (${libtype} MATCHES "SHARED") if (WIN32 AND NOT MINGW) set_target_properties (${libtarget} PROPERTIES IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}/${IMPORT_LIB_NAME}${CMAKE_STATIC_LIBRARY_SUFFIX}" IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) else (WIN32 AND NOT MINGW) set_target_properties (${libtarget} PROPERTIES IMPORTED_LOCATION "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/${CMAKE_STATIC_LIBRARY_PREFIX}${IMPORT_LIB_NAME}${CMAKE_STATIC_LIBRARY_SUFFIX}" IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) endif (WIN32 AND NOT MINGW) endif (${libtype} MATCHES "SHARED") ENDMACRO (HDF_IMPORT_SET_LIB_OPTIONS) #------------------------------------------------------------------------------- MACRO (TARGET_C_PROPERTIES wintarget addcompileflags addlinkflags) if (MSVC) TARGET_MSVC_PROPERTIES (${wintarget} "${addcompileflags} ${WIN_COMPILE_FLAGS}" "${addlinkflags} ${WIN_LINK_FLAGS}") else (MSVC) if (BUILD_SHARED_LIBS) set_target_properties (${wintarget} PROPERTIES COMPILE_FLAGS "${addcompileflags}" LINK_FLAGS "${addlinkflags}" ) else (BUILD_SHARED_LIBS) set_target_properties (${wintarget} PROPERTIES COMPILE_FLAGS "${addcompileflags}" LINK_FLAGS "${addlinkflags}" ) endif (BUILD_SHARED_LIBS) endif (MSVC) ENDMACRO (TARGET_C_PROPERTIES) #------------------------------------------------------------------------------- MACRO (TARGET_MSVC_PROPERTIES wintarget addcompileflags addlinkflags) if (MSVC) if (BUILD_SHARED_LIBS) set_target_properties (${wintarget} PROPERTIES COMPILE_FLAGS "${addcompileflags}" LINK_FLAGS "${addlinkflags}" ) else (BUILD_SHARED_LIBS) set_target_properties (${wintarget} PROPERTIES COMPILE_FLAGS "${addcompileflags}" LINK_FLAGS "${addlinkflags}" ) endif (BUILD_SHARED_LIBS) endif (MSVC) ENDMACRO (TARGET_MSVC_PROPERTIES) #------------------------------------------------------------------------------- MACRO (TARGET_FORTRAN_PROPERTIES forttarget addcompileflags addlinkflags) if (WIN32) TARGET_FORTRAN_WIN_PROPERTIES (${forttarget} "${addcompileflags} ${WIN_COMPILE_FLAGS}" "${addlinkflags} ${WIN_LINK_FLAGS}") endif (WIN32) ENDMACRO (TARGET_FORTRAN_PROPERTIES) #------------------------------------------------------------------------------- MACRO (TARGET_FORTRAN_WIN_PROPERTIES forttarget addcompileflags addlinkflags) if (MSVC) if (BUILD_SHARED_LIBS) set_target_properties (${forttarget} PROPERTIES COMPILE_FLAGS "/dll ${addcompileflags}" LINK_FLAGS "/SUBSYSTEM:CONSOLE ${addlinkflags}" ) else (BUILD_SHARED_LIBS) set_target_properties (${forttarget} PROPERTIES COMPILE_FLAGS "${addcompileflags}" LINK_FLAGS "/SUBSYSTEM:CONSOLE ${addlinkflags}" ) endif (BUILD_SHARED_LIBS) endif (MSVC) ENDMACRO (TARGET_FORTRAN_WIN_PROPERTIES) #----------------------------------------------------------------------------- # Configure the README.txt file for the binary package #----------------------------------------------------------------------------- MACRO (HDF_README_PROPERTIES target_fortran) set (BINARY_SYSTEM_NAME ${CMAKE_SYSTEM_NAME}) set (BINARY_PLATFORM "${CMAKE_SYSTEM_NAME}") if (WIN32) set (BINARY_EXAMPLE_ENDING "zip") set (BINARY_INSTALL_ENDING "exe") if (CMAKE_CL_64) set (BINARY_SYSTEM_NAME "win64") else (CMAKE_CL_64) set (BINARY_SYSTEM_NAME "win32") endif (CMAKE_CL_64) if (${CMAKE_SYSTEM_VERSION} MATCHES "6.1") set (BINARY_PLATFORM "${BINARY_PLATFORM} 7") elseif (${CMAKE_SYSTEM_VERSION} MATCHES "6.2") set (BINARY_PLATFORM "${BINARY_PLATFORM} 8") endif (${CMAKE_SYSTEM_VERSION} MATCHES "6.1") set (BINARY_PLATFORM "${BINARY_PLATFORM} ${MSVC_C_ARCHITECTURE_ID}") if (${CMAKE_C_COMPILER_VERSION} MATCHES "16.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2010") elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "15.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2008") elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "17.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2012") elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "18.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2013") else (${CMAKE_C_COMPILER_VERSION} MATCHES "16.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO ${CMAKE_C_COMPILER_VERSION}") endif (${CMAKE_C_COMPILER_VERSION} MATCHES "16.*") elseif (APPLE) set (BINARY_EXAMPLE_ENDING "tar.gz") set (BINARY_INSTALL_ENDING "dmg") set (BINARY_PLATFORM "${BINARY_PLATFORM} ${CMAKE_SYSTEM_VERSION} ${CMAKE_SYSTEM_PROCESSOR}") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using ${CMAKE_C_COMPILER_ID} C ${CMAKE_C_COMPILER_VERSION}") else (WIN32) set (BINARY_EXAMPLE_ENDING "tar.gz") set (BINARY_INSTALL_ENDING "sh") set (BINARY_PLATFORM "${BINARY_PLATFORM} ${CMAKE_SYSTEM_VERSION} ${CMAKE_SYSTEM_PROCESSOR}") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using ${CMAKE_C_COMPILER_ID} C ${CMAKE_C_COMPILER_VERSION}") endif (WIN32) if (target_fortran) set (BINARY_PLATFORM "${BINARY_PLATFORM} / ${CMAKE_Fortran_COMPILER_ID} Fortran") endif (target_fortran) configure_file ( ${HDF_RESOURCES_DIR}/README.txt.cmake.in ${CMAKE_BINARY_DIR}/README.txt @ONLY ) ENDMACRO (HDF_README_PROPERTIES) hdf-java-2.11.0/config/cmake_ext_mod/HDFTests.c0000644002344600011330000001711212401656217017413 0ustar byrnhdf#define SIMPLE_TEST(x) int main(){ x; return 0; } #ifdef HAVE_C99_DESIGNATED_INITIALIZER #ifdef FC_DUMMY_MAIN #ifndef FC_DUMMY_MAIN_EQ_F77 # ifdef __cplusplus extern "C" # endif int FC_DUMMY_MAIN() { return 1;} #endif #endif int main () { typedef struct { int x; union { int i; double d; }u; }di_struct_t; di_struct_t x = { 0, { .d = 0.0}}; ; return 0; } #endif #ifdef HAVE_C99_FUNC #ifdef FC_DUMMY_MAIN #ifndef FC_DUMMY_MAIN_EQ_F77 # ifdef __cplusplus extern "C" # endif int FC_DUMMY_MAIN() { return 1; } #endif #endif int main () { const char *fname = __func__; ; return 0; } #endif #ifdef VSNPRINTF_WORKS #include #include #include int test_vsnprintf(const char *fmt,...) { va_list ap; char *s = malloc(16); int ret; va_start(ap, fmt); ret=vsnprintf(s,16,"%s",ap); va_end(ap); return(ret!=42 ? 1 : 0); } int main(void) { return(test_vsnprintf("%s","A string that is longer than 16 characters")); } #endif #ifdef TIME_WITH_SYS_TIME /* Time with sys/time test */ #include #include #include int main () { if ((struct tm *) 0) return 0; ; return 0; } #endif #ifdef STDC_HEADERS #include #include #include #include int main() { return 0; } #endif /* STDC_HEADERS */ #ifdef HAVE_TM_ZONE #include #ifdef HAVE_SYS_TIME_H #include #endif #include SIMPLE_TEST(struct tm tm; tm.tm_zone); #endif /* HAVE_TM_ZONE */ #ifdef HAVE_STRUCT_TM_TM_ZONE #include #ifdef HAVE_SYS_TIME_H #include #endif #include SIMPLE_TEST(struct tm tm; tm.tm_zone); #endif /* HAVE_STRUCT_TM_TM_ZONE */ #ifdef HAVE_ATTRIBUTE #if 0 static void test int __attribute((unused)) var) { int __attribute__((unused)) x = var; } int main(void) { test(19); } #else int main () { int __attribute__((unused)) x ; return 0; } #endif #endif /* HAVE_ATTRIBUTE */ #ifdef HAVE_FUNCTION #ifdef FC_DUMMY_MAIN #ifndef FC_DUMMY_MAIN_EQ_F77 # ifdef __cplusplus extern "C" # endif int FC_DUMMY_MAIN() { return 1; } #endif #endif int main () { (void)__FUNCTION__ ; return 0; } #endif /* HAVE_FUNCTION */ #ifdef HAVE_TM_GMTOFF #ifdef HAVE_SYS_TIME_H #include #endif #include SIMPLE_TEST(struct tm tm; tm.tm_gmtoff=0); #endif /* HAVE_TM_GMTOFF */ #ifdef HAVE___TM_GMTOFF #ifdef HAVE_SYS_TIME_H #include #endif #include SIMPLE_TEST(struct tm tm; tm.__tm_gmtoff=0); #endif /* HAVE_TM_GMTOFF */ #ifdef HAVE_TIMEZONE #ifdef HAVE_SYS_TIME_H #include #endif #include SIMPLE_TEST(timezone=0); #endif /* HAVE_TIMEZONE */ #ifdef HAVE_STRUCT_TIMEZONE #include #ifdef HAVE_SYS_TIME_H #include #endif #include SIMPLE_TEST(struct timezone tz; tz.tz_minuteswest=0); #endif /* HAVE_STRUCT_TIMEZONE */ #ifdef HAVE_STAT_ST_BLOCKS #include SIMPLE_TEST(struct stat sb; sb.st_blocks=0); #endif /* HAVE_STAT_ST_BLOCKS */ #ifdef PRINTF_LL_WIDTH #ifdef HAVE_LONG_LONG # define LL_TYPE long long #else /* HAVE_LONG_LONG */ # define LL_TYPE __int64 #endif /* HAVE_LONG_LONG */ #include #include #include int main(void) { char *llwidthArgs[] = { "l64", "l", "L", "q", "ll", NULL }; char *s = malloc(128); char **currentArg = NULL; LL_TYPE x = (LL_TYPE)1048576 * (LL_TYPE)1048576; for (currentArg = llwidthArgs; *currentArg != NULL; currentArg++) { char formatString[64]; sprintf(formatString, "%%%sd", *currentArg); sprintf(s, formatString, x); if (strcmp(s, "1099511627776") == 0) { printf("PRINTF_LL_WIDTH=[%s]\n", *currentArg); return 0; } } return 1; } #endif /* PRINTF_LL_WIDTH */ #ifdef SYSTEM_SCOPE_THREADS #include #include int main(void) { pthread_attr_t attribute; int ret; pthread_attr_init(&attribute); ret=pthread_attr_setscope(&attribute, PTHREAD_SCOPE_SYSTEM); if (ret==0) return 0; return 1; } #endif /* SYSTEM_SCOPE_THREADS */ #ifdef HAVE_SOCKLEN_T #include #include #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif SIMPLE_TEST(socklen_t foo); #endif /* HAVE_SOCKLEN_T */ #ifdef DEV_T_IS_SCALAR #ifdef HAVE_SYS_TYPES_H #include #endif int main () { dev_t d1, d2; if(d1==d2) return 0; return 1; } #endif /* DEV_T_IS_SCALAR */ #ifdef HAVE_OFF64_T #include int main() { off64_t n = 0; return (int)n; } #endif #ifdef HAVE_STAT64_STRUCT #include #include ], struct stat64 sb; int main() { return 0; } #endif #ifdef TEST_DIRECT_VFD_WORKS #include #include #include int main(void) { int fid; if((fid=open("tst_file", O_CREAT | O_TRUNC | O_DIRECT, 0755))<0) return 1; close(fid); remove("tst_file"); return 0; } #endif #ifdef HAVE_DIRECT SIMPLE_TEST(posix_memalign()); #endif #ifdef TEST_LFS_WORKS /* Return 0 when LFS is available and 1 otherwise. */ #define _LARGEFILE_SOURCE #define _LARGEFILE64_SOURCE #define _LARGE_FILES #define _FILE_OFFSET_BITS 64 #include #include #include #include int main(int argc, char **argv) { /* check that off_t can hold 2^63 - 1 and perform basic operations... */ #define OFF_T_64 (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) if (OFF_T_64 % 2147483647 != 1) return 1; /* stat breaks on SCO OpenServer */ struct stat buf; stat( argv[0], &buf ); if (!S_ISREG(buf.st_mode)) return 2; FILE *file = fopen( argv[0], "r" ); off_t offset = ftello( file ); fseek( file, offset, SEEK_CUR ); fclose( file ); return 0; } #endif #ifdef GETTIMEOFDAY_GIVES_TZ #include #ifdef HAVE_SYS_TIME_H #include #endif int main(void) { struct timeval tv; struct timezone tz; tz.tz_minuteswest = 7777; /* Initialize to an unreasonable number */ tz.tz_dsttime = 7; gettimeofday(&tv, &tz); /* Check whether the function returned any value at all */ if(tz.tz_minuteswest == 7777 && tz.tz_dsttime == 7) return 1; else return 0; } #endif #ifdef LONE_COLON int main(int argc, char * argv) { return 0; } #endif #ifdef CXX_HAVE_OFFSETOF #include #include #ifdef FC_DUMMY_MAIN #ifndef FC_DUMMY_MAIN_EQ_F77 # ifdef __cplusplus extern "C" # endif int FC_DUMMY_MAIN() { return 1;} #endif #endif int main () { struct index_st { unsigned char type; unsigned char num; unsigned int len; }; typedef struct index_st index_t; int x,y; x = offsetof(struct index_st, len); y = offsetof(index_t, num) ; return 0; } #endif #ifdef HAVE_IOEO #include typedef void (WINAPI *PGNSI)(LPSYSTEM_INFO); int main () { PGNSI pGNSI; pGNSI = (PGNSI) GetProcAddress( GetModuleHandle(TEXT("kernel32.dll")), "InitOnceExecuteOnce"); if(NULL == pGNSI) return 1; else return 0; } #endif /* HAVE_IOEO */ #ifdef HAVE_STRUCT_VIDEOCONFIG SIMPLE_TEST(struct videoconfig w; w.numtextcols=0); #endif /* HAVE_TM_GMTOFF */ #ifdef HAVE_STRUCT_TEXT_INFO SIMPLE_TEST(struct text_info w; w.screenwidth=0); #endif /* HAVE_TM_GMTOFF */ #if defined( INLINE_TEST_inline ) || defined( INLINE_TEST___inline__ ) || defined( INLINE_TEST___inline ) #ifndef __cplusplus typedef int foo_t; static INLINE_TEST_INLINE foo_t static_foo () { return 0; } INLINE_TEST_INLINE foo_t foo () {return 0; } int main() { return 0; } #endif #endif /* INLINE_TEST */ hdf-java-2.11.0/config/cmake_ext_mod/HDFLibMacros.cmake0000644002344600011330000002666712407565041021041 0ustar byrnhdf#------------------------------------------------------------------------------- MACRO (EXTERNAL_JPEG_LIBRARY compress_type libtype jpeg_pic) # May need to build JPEG with PIC on x64 machines with gcc # Need to use CMAKE_ANSI_CFLAGS define so that compiler test works if (${compress_type} MATCHES "SVN") EXTERNALPROJECT_ADD (JPEG SVN_REPOSITORY ${JPEG_URL} # [SVN_REVISION rev] INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DJPEG_EXTERNALLY_CONFIGURED:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${jpeg_pic} ) elseif (${compress_type} MATCHES "GIT") EXTERNALPROJECT_ADD (JPEG GIT_REPOSITORY ${JPEG_URL} INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DJPEG_EXTERNALLY_CONFIGURED:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${jpeg_pic} ) elseif (${compress_type} MATCHES "TGZ") EXTERNALPROJECT_ADD (JPEG URL ${JPEG_URL} URL_MD5 "" INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DJPEG_EXTERNALLY_CONFIGURED:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${jpeg_pic} ) endif (${compress_type} MATCHES "SVN") externalproject_get_property (JPEG BINARY_DIR SOURCE_DIR) # Create imported target szip add_library (jpeg ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (jpeg "jpeg" ${libtype} "") add_dependencies (JPEG jpeg) # include (${BINARY_DIR}/JPEG-targets.cmake) set (JPEG_LIBRARY "jpeg") set (JPEG_INCLUDE_DIR_GEN "${BINARY_DIR}") set (JPEG_INCLUDE_DIR "${SOURCE_DIR}/src") set (JPEG_FOUND 1) set (JPEG_LIBRARIES ${JPEG_LIBRARY}) set (JPEG_INCLUDE_DIRS ${JPEG_INCLUDE_DIR_GEN} ${JPEG_INCLUDE_DIR}) ENDMACRO (EXTERNAL_JPEG_LIBRARY) #------------------------------------------------------------------------------- MACRO (PACKAGE_JPEG_LIBRARY compress_type) add_custom_target (JPEG-GenHeader-Copy ALL COMMAND ${CMAKE_COMMAND} -E copy_if_different ${JPEG_INCLUDE_DIR_GEN}/jconfig.h ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ COMMENT "Copying ${JPEG_INCLUDE_DIR_GEN}/jconfig.h to ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/" ) set (EXTERNAL_HEADER_LIST ${EXTERNAL_HEADER_LIST} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/jconfig.h) if (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") add_dependencies (JPEG-GenHeader-Copy JPEG) endif (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") ENDMACRO (PACKAGE_JPEG_LIBRARY) #------------------------------------------------------------------------------- MACRO (EXTERNAL_SZIP_LIBRARY compress_type libtype encoding) if (${compress_type} MATCHES "SVN") EXTERNALPROJECT_ADD (SZIP SVN_REPOSITORY ${SZIP_URL} # [SVN_REVISION rev] INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DSZIP_EXTERNALLY_CONFIGURED:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} -DSZIP_ENABLE_ENCODING:BOOL=${encoding} ) elseif (${compress_type} MATCHES "GIT") EXTERNALPROJECT_ADD (SZIP GIT_REPOSITORY ${SZIP_URL} # [SVN_REVISION rev] INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DSZIP_EXTERNALLY_CONFIGURED:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} -DSZIP_ENABLE_ENCODING:BOOL=${encoding} ) elseif (${compress_type} MATCHES "TGZ") EXTERNALPROJECT_ADD (SZIP URL ${SZIP_URL} URL_MD5 "" INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DSZIP_EXTERNALLY_CONFIGURED:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} -DSZIP_ENABLE_ENCODING:BOOL=${encoding} ) endif (${compress_type} MATCHES "SVN") externalproject_get_property (SZIP BINARY_DIR SOURCE_DIR) # Create imported target szip add_library (szip ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (szip "szip" ${libtype} "") add_dependencies (SZIP szip) # include (${BINARY_DIR}/SZIP-targets.cmake) set (SZIP_LIBRARY "szip") set (SZIP_INCLUDE_DIR_GEN "${BINARY_DIR}") set (SZIP_INCLUDE_DIR "${SOURCE_DIR}/src") set (SZIP_FOUND 1) set (SZIP_LIBRARIES ${SZIP_LIBRARY}) set (SZIP_INCLUDE_DIRS ${SZIP_INCLUDE_DIR_GEN} ${SZIP_INCLUDE_DIR}) ENDMACRO (EXTERNAL_SZIP_LIBRARY) #------------------------------------------------------------------------------- MACRO (PACKAGE_SZIP_LIBRARY compress_type) add_custom_target (SZIP-GenHeader-Copy ALL COMMAND ${CMAKE_COMMAND} -E copy_if_different ${SZIP_INCLUDE_DIR_GEN}/SZconfig.h ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ COMMENT "Copying ${SZIP_INCLUDE_DIR_GEN}/SZconfig.h to ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/" ) set (EXTERNAL_HEADER_LIST ${EXTERNAL_HEADER_LIST} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/SZconfig.h) if (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") add_dependencies (SZIP-GenHeader-Copy SZIP) endif (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") ENDMACRO (PACKAGE_SZIP_LIBRARY) #------------------------------------------------------------------------------- MACRO (EXTERNAL_ZLIB_LIBRARY compress_type libtype) if (${compress_type} MATCHES "SVN") EXTERNALPROJECT_ADD (ZLIB SVN_REPOSITORY ${ZLIB_URL} # [SVN_REVISION rev] INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DZLIB_EXTERNALLY_CONFIGURED:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} ) elseif (${compress_type} MATCHES "GIT") EXTERNALPROJECT_ADD (ZLIB GIT_REPOSITORY ${ZLIB_URL} # [SVN_REVISION rev] INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DZLIB_EXTERNALLY_CONFIGURED:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} ) elseif (${compress_type} MATCHES "TGZ") EXTERNALPROJECT_ADD (ZLIB URL ${ZLIB_URL} URL_MD5 "" INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DZLIB_EXTERNALLY_CONFIGURED:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} ) endif (${compress_type} MATCHES "SVN") externalproject_get_property (ZLIB BINARY_DIR SOURCE_DIR) # Create imported target zlib add_library (zlib ${libtype} IMPORTED) if (WIN32) set (ZLIB_LIB_NAME "zlib") else (WIN32) set (ZLIB_LIB_NAME "z") endif (WIN32) HDF_IMPORT_SET_LIB_OPTIONS (zlib ${ZLIB_LIB_NAME} ${libtype} "") add_dependencies (ZLIB zlib) # include (${BINARY_DIR}/ZLIB-targets.cmake) set (ZLIB_LIBRARY "zlib") set (ZLIB_INCLUDE_DIR_GEN "${BINARY_DIR}") set (ZLIB_INCLUDE_DIR "${SOURCE_DIR}") set (ZLIB_FOUND 1) set (ZLIB_LIBRARIES ${ZLIB_LIBRARY}) set (ZLIB_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR_GEN} ${ZLIB_INCLUDE_DIR}) ENDMACRO (EXTERNAL_ZLIB_LIBRARY) #------------------------------------------------------------------------------- MACRO (PACKAGE_ZLIB_LIBRARY compress_type) add_custom_target (ZLIB-GenHeader-Copy ALL COMMAND ${CMAKE_COMMAND} -E copy_if_different ${ZLIB_INCLUDE_DIR_GEN}/zconf.h ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ COMMENT "Copying ${ZLIB_INCLUDE_DIR_GEN}/zconf.h to ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/" ) set (EXTERNAL_HEADER_LIST ${EXTERNAL_HEADER_LIST} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/zconf.h) if (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") add_dependencies (ZLIB-GenHeader-Copy ZLIB) endif (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") ENDMACRO (PACKAGE_ZLIB_LIBRARY) hdf-java-2.11.0/config/cmake_ext_mod/hdf.bmp0000644002344600011330000000234612330505415017061 0ustar byrnhdfBMæ6(°ÄÄüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüü´ä´¼ä¼üüüüüüüüüìôìœÜœœÔœ¬Ü¬ÜôÜüüüüüüäôäœÜœìôìüüüüüüüüüüüüüüü$¬$<´Düüüüüüüüü¬Ü¬ ¤ ¤¤$¬,dÄdÜìܜܜœ ¬Ü¬üüüüüüüüüüüüüüü$¬$<´Düüôüüüüüüôüô¬Ü¬œÔœ„Ì„D´D¤4´<\¼\¤¤Ü¤üüüüüüüüüüüüüüü,¤$L´Lüüüüüüüüüüüüüüüüüüüüüìôì”Ô”,¤$$¤$$¤$¤Ü¤üüüüüüüüüüüüüüüD”$\¤DìôìôüôüüüüüôüüüüüüüüüüüüüüüŒ¼t<”<”¤Ìœôüôüüôüüüüüüüüüd\„$tŒ4tŒ4lŒ4tŒ4dŒ,´Ä”üüüüüüüüüÌÔ´T„\„$dŒ,lŒ4lŒ4dŒ,´Ä”üüü„l„l„|,„|,„|,„t$td´¬|üüüüüüüüüÔ̬|l|l„t$„|,„|4||,ļ”üüüœT¬l,üììüôôüôôÔ´œœDÌœ|üüüüüüüüü¼ŒdœDœT Ô´”üôôüôôüüôüüüüüü¼< ÌT,üüüüüüüüüä´¤¼,Üœ|üüüüôôÜ”|¼D¼D¼<ä´¤üüüüüüüüüüüüüüüä$ä@$üüüüüüüüüô¬œÜ$ä\Dì|lÜD$Ü$Ü,Í,Ü$ìl\ô¤”ô¤”ô¤”ô¤”ô¼´ôô4$üôôüüüüüüü¬¬ì ôôì ô ô ôôì ìôìììü¬¬ü´¬üüüüüüüüüüôìü””üŒ„üŒ„üŒ„ü”„üŒ„üŒ„üŒ„üŒ„üŒŒüŒ„üŒ„üŒ„ü¬¬üüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüüühdf-java-2.11.0/config/cmake_ext_mod/GetTimeOfDayTest.cpp0000644002344600011330000000035012401656217021444 0ustar byrnhdf#if defined (TRY_SYS_TIME_H) #include /* #include */ #endif #if defined (TRY_TIME_H) #include #endif int main(int argc, char **argv) { struct timeval t1; gettimeofday(&t1, 0x00); return 0; } hdf-java-2.11.0/config/cmake_ext_mod/CPack.Info.plist.in0000644002344600011330000000214712401656217021162 0ustar byrnhdf CFBundleDevelopmentRegion English CFBundleExecutable @CPACK_PACKAGE_FILE_NAME@ CFBundleIconFile @CPACK_BUNDLE_ICON@ CFBundleIdentifier org.@CPACK_PACKAGE_VENDOR@.@CPACK_PACKAGE_NAME@@CPACK_MODULE_VERSION_SUFFIX@ CFBundleInfoDictionaryVersion 6.0 CFBundlePackageType FMWK CFBundleSignature ???? CFBundleVersion @CPACK_PACKAGE_VERSIO@ CFBundleShortVersionString @CPACK_SHORT_VERSION_STRING@ CSResourcesFileMapped CFBundleName @CPACK_BUNDLE_NAME@ CFBundleGetInfoString @CPACK_APPLE_GUI_INFO_STRING@ NSHumanReadableCopyright @CPACK_APPLE_GUI_COPYRIGHT@ hdf-java-2.11.0/config/cmake_ext_mod/CheckTypeSize.cmake0000644002344600011330000000365712401656217021350 0ustar byrnhdf# # Check if the type exists and determine size of type. if the type # exists, the size will be stored to the variable. # # CHECK_TYPE_SIZE - macro which checks the size of type # VARIABLE - variable to store size if the type exists. # HAVE_${VARIABLE} - does the variable exists or not # MACRO (HDF_CHECK_TYPE_SIZE TYPE VARIABLE) set (CMAKE_ALLOW_UNKNOWN_VARIABLE_READ_ACCESS 1) if ("HAVE_${VARIABLE}" MATCHES "^HAVE_${VARIABLE}$") set (MACRO_CHECK_TYPE_SIZE_FLAGS "-DCHECK_TYPE_SIZE_TYPE=\"${TYPE}\" ${CMAKE_REQUIRED_FLAGS}" ) foreach (def HAVE_SYS_TYPES_H HAVE_STDINT_H HAVE_STDDEF_H HAVE_INTTYPES_H) if ("${def}") set (MACRO_CHECK_TYPE_SIZE_FLAGS "${MACRO_CHECK_TYPE_SIZE_FLAGS} -D${def}") endif ("${def}") endforeach (def) message (STATUS "Check size of ${TYPE}") if (CMAKE_REQUIRED_LIBRARIES) set (CHECK_TYPE_SIZE_ADD_LIBRARIES "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}" ) endif (CMAKE_REQUIRED_LIBRARIES) try_run (${VARIABLE} HAVE_${VARIABLE} ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/CheckTypeSize.c CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_TYPE_SIZE_FLAGS} "${CHECK_TYPE_SIZE_ADD_LIBRARIES}" OUTPUT_VARIABLE OUTPUT ) if (HAVE_${VARIABLE}) message (STATUS "Check size of ${TYPE} - done") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeOutput.log "Determining size of ${TYPE} passed with the following output:\n${OUTPUT}\n\n" ) else (HAVE_${VARIABLE}) message (STATUS "Check size of ${TYPE} - failed") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Determining size of ${TYPE} failed with the following output:\n${OUTPUT}\n\n" ) endif (HAVE_${VARIABLE}) endif ("HAVE_${VARIABLE}" MATCHES "^HAVE_${VARIABLE}$") set (CMAKE_ALLOW_UNKNOWN_VARIABLE_READ_ACCESS) ENDMACRO (HDF_CHECK_TYPE_SIZE) hdf-java-2.11.0/config/cmake_ext_mod/ConfigureChecks.cmake0000644002344600011330000010210012411070621021645 0ustar byrnhdf#----------------------------------------------------------------------------- # Include all the necessary files for macros #----------------------------------------------------------------------------- include (${CMAKE_ROOT}/Modules/CheckFunctionExists.cmake) include (${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake) include (${CMAKE_ROOT}/Modules/CheckIncludeFileCXX.cmake) include (${CMAKE_ROOT}/Modules/CheckIncludeFiles.cmake) include (${CMAKE_ROOT}/Modules/CheckLibraryExists.cmake) include (${CMAKE_ROOT}/Modules/CheckSymbolExists.cmake) include (${CMAKE_ROOT}/Modules/CheckTypeSize.cmake) include (${CMAKE_ROOT}/Modules/CheckVariableExists.cmake) include (${CMAKE_ROOT}/Modules/CheckFortranFunctionExists.cmake) include (${CMAKE_ROOT}/Modules/TestBigEndian.cmake) include (${CMAKE_ROOT}/Modules/TestForSTDNamespace.cmake) #----------------------------------------------------------------------------- # APPLE/Darwin setup #----------------------------------------------------------------------------- if (APPLE) list (LENGTH CMAKE_OSX_ARCHITECTURES ARCH_LENGTH) if (ARCH_LENGTH GREATER 1) set (CMAKE_OSX_ARCHITECTURES "" CACHE STRING "" FORCE) message(FATAL_ERROR "Building Universal Binaries on OS X is NOT supported by the HDF5 project. This is" "due to technical reasons. The best approach would be build each architecture in separate directories" "and use the 'lipo' tool to combine them into a single executable or library. The 'CMAKE_OSX_ARCHITECTURES'" "variable has been set to a blank value which will build the default architecture for this system.") endif () set (${HDF_PREFIX}_AC_APPLE_UNIVERSAL_BUILD 0) endif (APPLE) # Check for Darwin (not just Apple - we also want to catch OpenDarwin) if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") set (${HDF_PREFIX}_HAVE_DARWIN 1) endif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") # Check for Solaris if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS") set (${HDF_PREFIX}_HAVE_SOLARIS 1) endif (${CMAKE_SYSTEM_NAME} MATCHES "SunOS") #----------------------------------------------------------------------------- # This MACRO checks IF the symbol exists in the library and IF it # does, it appends library to the list. #----------------------------------------------------------------------------- set (LINK_LIBS "") MACRO (CHECK_LIBRARY_EXISTS_CONCAT LIBRARY SYMBOL VARIABLE) CHECK_LIBRARY_EXISTS ("${LIBRARY};${LINK_LIBS}" ${SYMBOL} "" ${VARIABLE}) if (${VARIABLE}) set (LINK_LIBS ${LINK_LIBS} ${LIBRARY}) endif (${VARIABLE}) ENDMACRO (CHECK_LIBRARY_EXISTS_CONCAT) # ---------------------------------------------------------------------- # WINDOWS Hard code Values # ---------------------------------------------------------------------- set (WINDOWS) if (WIN32) if (MINGW) set (${HDF_PREFIX}_HAVE_MINGW 1) set (WINDOWS 1) # MinGW tries to imitate Windows set (CMAKE_REQUIRED_FLAGS "-DWIN32_LEAN_AND_MEAN=1 -DNOGDI=1") endif (MINGW) set (${HDF_PREFIX}_HAVE_WIN32_API 1) set (CMAKE_REQUIRED_LIBRARIES "ws2_32.lib;wsock32.lib") if (NOT UNIX AND NOT MINGW) set (WINDOWS 1) set (CMAKE_REQUIRED_FLAGS "/DWIN32_LEAN_AND_MEAN=1 /DNOGDI=1") if (MSVC) set (${HDF_PREFIX}_HAVE_VISUAL_STUDIO 1) endif (MSVC) endif (NOT UNIX AND NOT MINGW) endif (WIN32) if (WINDOWS) set (${HDF_PREFIX}_HAVE_STDDEF_H 1) set (${HDF_PREFIX}_HAVE_SYS_STAT_H 1) set (${HDF_PREFIX}_HAVE_SYS_TYPES_H 1) set (${HDF_PREFIX}_HAVE_LIBM 1) set (${HDF_PREFIX}_HAVE_STRDUP 1) set (${HDF_PREFIX}_HAVE_SYSTEM 1) set (${HDF_PREFIX}_HAVE_LONGJMP 1) if (NOT MINGW) set (${HDF_PREFIX}_HAVE_GETHOSTNAME 1) endif (NOT MINGW) if (NOT UNIX AND NOT CYGWIN AND NOT MINGW) set (${HDF_PREFIX}_HAVE_GETCONSOLESCREENBUFFERINFO 1) endif (NOT UNIX AND NOT CYGWIN AND NOT MINGW) set (${HDF_PREFIX}_HAVE_FUNCTION 1) set (${HDF_PREFIX}_GETTIMEOFDAY_GIVES_TZ 1) set (${HDF_PREFIX}_HAVE_TIMEZONE 1) set (${HDF_PREFIX}_HAVE_GETTIMEOFDAY 1) set (${HDF_PREFIX}_LONE_COLON 0) if (MINGW) set (${HDF_PREFIX}_HAVE_WINSOCK2_H 1) endif (MINGW) set (${HDF_PREFIX}_HAVE_LIBWS2_32 1) set (${HDF_PREFIX}_HAVE_LIBWSOCK32 1) endif (WINDOWS) # ---------------------------------------------------------------------- # END of WINDOWS Hard code Values # ---------------------------------------------------------------------- if (CYGWIN) set (${HDF_PREFIX}_HAVE_LSEEK64 0) endif (CYGWIN) #----------------------------------------------------------------------------- # Check for the math library "m" #----------------------------------------------------------------------------- if (NOT WINDOWS) CHECK_LIBRARY_EXISTS_CONCAT ("m" ceil ${HDF_PREFIX}_HAVE_LIBM) CHECK_LIBRARY_EXISTS_CONCAT ("dl" dlopen ${HDF_PREFIX}_HAVE_LIBDL) CHECK_LIBRARY_EXISTS_CONCAT ("ws2_32" WSAStartup ${HDF_PREFIX}_HAVE_LIBWS2_32) CHECK_LIBRARY_EXISTS_CONCAT ("wsock32" gethostbyname ${HDF_PREFIX}_HAVE_LIBWSOCK32) endif (NOT WINDOWS) CHECK_LIBRARY_EXISTS_CONCAT ("ucb" gethostname ${HDF_PREFIX}_HAVE_LIBUCB) CHECK_LIBRARY_EXISTS_CONCAT ("socket" connect ${HDF_PREFIX}_HAVE_LIBSOCKET) CHECK_LIBRARY_EXISTS ("c" gethostbyname "" NOT_NEED_LIBNSL) if (NOT NOT_NEED_LIBNSL) CHECK_LIBRARY_EXISTS_CONCAT ("nsl" gethostbyname ${HDF_PREFIX}_HAVE_LIBNSL) endif (NOT NOT_NEED_LIBNSL) # For other tests to use the same libraries set (CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${LINK_LIBS}) set (USE_INCLUDES "") if (WINDOWS) set (USE_INCLUDES ${USE_INCLUDES} "windows.h") endif (WINDOWS) if (NOT WINDOWS) TEST_BIG_ENDIAN (${HDF_PREFIX}_WORDS_BIGENDIAN) endif (NOT WINDOWS) # For other specific tests, use this MACRO. MACRO (HDF_FUNCTION_TEST OTHER_TEST) if ("${HDF_PREFIX}_${OTHER_TEST}" MATCHES "^${HDF_PREFIX}_${OTHER_TEST}$") set (MACRO_CHECK_FUNCTION_DEFINITIONS "-D${OTHER_TEST} ${CMAKE_REQUIRED_FLAGS}") set (OTHER_TEST_ADD_LIBRARIES) if (CMAKE_REQUIRED_LIBRARIES) set (OTHER_TEST_ADD_LIBRARIES "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") endif (CMAKE_REQUIRED_LIBRARIES) foreach (def ${HDF_EXTRA_TEST_DEFINITIONS}) set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D${def}=${${def}}") endforeach (def) foreach (def HAVE_SYS_TIME_H HAVE_UNISTD_H HAVE_SYS_TYPES_H HAVE_SYS_SOCKET_H ) if ("${${HDF_PREFIX}_${def}}") set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D${def}") endif ("${${HDF_PREFIX}_${def}}") endforeach (def) if (LARGEFILE) set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE" ) endif (LARGEFILE) #message (STATUS "Performing ${OTHER_TEST}") TRY_COMPILE (${OTHER_TEST} ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFTests.c CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS} "${OTHER_TEST_ADD_LIBRARIES}" OUTPUT_VARIABLE OUTPUT ) if (${OTHER_TEST}) set (${HDF_PREFIX}_${OTHER_TEST} 1 CACHE INTERNAL "Other test ${FUNCTION}") message (STATUS "Performing Other Test ${OTHER_TEST} - Success") else (${OTHER_TEST}) message (STATUS "Performing Other Test ${OTHER_TEST} - Failed") set (${HDF_PREFIX}_${OTHER_TEST} "" CACHE INTERNAL "Other test ${FUNCTION}") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Performing Other Test ${OTHER_TEST} failed with the following output:\n" "${OUTPUT}\n" ) endif (${OTHER_TEST}) endif ("${HDF_PREFIX}_${OTHER_TEST}" MATCHES "^${HDF_PREFIX}_${OTHER_TEST}$") ENDMACRO (HDF_FUNCTION_TEST) #----------------------------------------------------------------------------- # Check for these functions before the time headers are checked #----------------------------------------------------------------------------- HDF_FUNCTION_TEST (STDC_HEADERS) #----------------------------------------------------------------------------- # Check IF header file exists and add it to the list. #----------------------------------------------------------------------------- MACRO (CHECK_INCLUDE_FILE_CONCAT FILE VARIABLE) CHECK_INCLUDE_FILES ("${USE_INCLUDES};${FILE}" ${VARIABLE}) if (${VARIABLE}) set (USE_INCLUDES ${USE_INCLUDES} ${FILE}) endif (${VARIABLE}) ENDMACRO (CHECK_INCLUDE_FILE_CONCAT) #----------------------------------------------------------------------------- # Check for the existence of certain header files #----------------------------------------------------------------------------- CHECK_INCLUDE_FILE_CONCAT ("sys/resource.h" ${HDF_PREFIX}_HAVE_SYS_RESOURCE_H) CHECK_INCLUDE_FILE_CONCAT ("sys/time.h" ${HDF_PREFIX}_HAVE_SYS_TIME_H) CHECK_INCLUDE_FILE_CONCAT ("unistd.h" ${HDF_PREFIX}_HAVE_UNISTD_H) CHECK_INCLUDE_FILE_CONCAT ("sys/ioctl.h" ${HDF_PREFIX}_HAVE_SYS_IOCTL_H) CHECK_INCLUDE_FILE_CONCAT ("sys/stat.h" ${HDF_PREFIX}_HAVE_SYS_STAT_H) CHECK_INCLUDE_FILE_CONCAT ("sys/socket.h" ${HDF_PREFIX}_HAVE_SYS_SOCKET_H) CHECK_INCLUDE_FILE_CONCAT ("sys/types.h" ${HDF_PREFIX}_HAVE_SYS_TYPES_H) CHECK_INCLUDE_FILE_CONCAT ("stddef.h" ${HDF_PREFIX}_HAVE_STDDEF_H) CHECK_INCLUDE_FILE_CONCAT ("setjmp.h" ${HDF_PREFIX}_HAVE_SETJMP_H) CHECK_INCLUDE_FILE_CONCAT ("features.h" ${HDF_PREFIX}_HAVE_FEATURES_H) CHECK_INCLUDE_FILE_CONCAT ("dirent.h" ${HDF_PREFIX}_HAVE_DIRENT_H) CHECK_INCLUDE_FILE_CONCAT ("stdint.h" ${HDF_PREFIX}_HAVE_STDINT_H) # IF the c compiler found stdint, check the C++ as well. On some systems this # file will be found by C but not C++, only do this test IF the C++ compiler # has been initialized (e.g. the project also includes some c++) if (${HDF_PREFIX}_HAVE_STDINT_H AND CMAKE_CXX_COMPILER_LOADED) CHECK_INCLUDE_FILE_CXX ("stdint.h" ${HDF_PREFIX}_HAVE_STDINT_H_CXX) if (NOT ${HDF_PREFIX}_HAVE_STDINT_H_CXX) set (${HDF_PREFIX}_HAVE_STDINT_H "" CACHE INTERNAL "Have includes HAVE_STDINT_H") set (USE_INCLUDES ${USE_INCLUDES} "stdint.h") endif (NOT ${HDF_PREFIX}_HAVE_STDINT_H_CXX) endif (${HDF_PREFIX}_HAVE_STDINT_H AND CMAKE_CXX_COMPILER_LOADED) # Darwin CHECK_INCLUDE_FILE_CONCAT ("mach/mach_time.h" ${HDF_PREFIX}_HAVE_MACH_MACH_TIME_H) # Windows CHECK_INCLUDE_FILE_CONCAT ("io.h" ${HDF_PREFIX}_HAVE_IO_H) if (NOT CYGWIN) CHECK_INCLUDE_FILE_CONCAT ("winsock2.h" ${HDF_PREFIX}_HAVE_WINSOCK2_H) endif (NOT CYGWIN) CHECK_INCLUDE_FILE_CONCAT ("sys/timeb.h" ${HDF_PREFIX}_HAVE_SYS_TIMEB_H) if (CMAKE_SYSTEM_NAME MATCHES "OSF") CHECK_INCLUDE_FILE_CONCAT ("sys/sysinfo.h" ${HDF_PREFIX}_HAVE_SYS_SYSINFO_H) CHECK_INCLUDE_FILE_CONCAT ("sys/proc.h" ${HDF_PREFIX}_HAVE_SYS_PROC_H) else (CMAKE_SYSTEM_NAME MATCHES "OSF") set (${HDF_PREFIX}_HAVE_SYS_SYSINFO_H "" CACHE INTERNAL "" FORCE) set (${HDF_PREFIX}_HAVE_SYS_PROC_H "" CACHE INTERNAL "" FORCE) endif (CMAKE_SYSTEM_NAME MATCHES "OSF") CHECK_INCLUDE_FILE_CONCAT ("globus/common.h" ${HDF_PREFIX}_HAVE_GLOBUS_COMMON_H) CHECK_INCLUDE_FILE_CONCAT ("pdb.h" ${HDF_PREFIX}_HAVE_PDB_H) CHECK_INCLUDE_FILE_CONCAT ("pthread.h" ${HDF_PREFIX}_HAVE_PTHREAD_H) CHECK_INCLUDE_FILE_CONCAT ("srbclient.h" ${HDF_PREFIX}_HAVE_SRBCLIENT_H) CHECK_INCLUDE_FILE_CONCAT ("string.h" ${HDF_PREFIX}_HAVE_STRING_H) CHECK_INCLUDE_FILE_CONCAT ("strings.h" ${HDF_PREFIX}_HAVE_STRINGS_H) CHECK_INCLUDE_FILE_CONCAT ("time.h" ${HDF_PREFIX}_HAVE_TIME_H) CHECK_INCLUDE_FILE_CONCAT ("stdlib.h" ${HDF_PREFIX}_HAVE_STDLIB_H) CHECK_INCLUDE_FILE_CONCAT ("memory.h" ${HDF_PREFIX}_HAVE_MEMORY_H) CHECK_INCLUDE_FILE_CONCAT ("dlfcn.h" ${HDF_PREFIX}_HAVE_DLFCN_H) CHECK_INCLUDE_FILE_CONCAT ("inttypes.h" ${HDF_PREFIX}_HAVE_INTTYPES_H) CHECK_INCLUDE_FILE_CONCAT ("netinet/in.h" ${HDF_PREFIX}_HAVE_NETINET_IN_H) #----------------------------------------------------------------------------- # Check for large file support #----------------------------------------------------------------------------- # The linux-lfs option is deprecated. set (LINUX_LFS 0) set (HDF_EXTRA_C_FLAGS) set (HDF_EXTRA_FLAGS) if (NOT WINDOWS) if (NOT ${HDF_PREFIX}_HAVE_SOLARIS) # Linux Specific flags # This was originally defined as _POSIX_SOURCE which was updated to # _POSIX_C_SOURCE=199506L to expose a greater amount of POSIX # functionality so clock_gettime and CLOCK_MONOTONIC are defined # correctly. # POSIX feature information can be found in the gcc manual at: # http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html set (HDF_EXTRA_C_FLAGS -D_POSIX_C_SOURCE=199506L) set (HDF_EXTRA_FLAGS -D_BSD_SOURCE) option (HDF_ENABLE_LARGE_FILE "Enable support for large (64-bit) files on Linux." ON) if (HDF_ENABLE_LARGE_FILE) set (msg "Performing TEST_LFS_WORKS") TRY_RUN (TEST_LFS_WORKS_RUN TEST_LFS_WORKS_COMPILE ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFTests.c CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=-DTEST_LFS_WORKS OUTPUT_VARIABLE OUTPUT ) if (TEST_LFS_WORKS_COMPILE) if (TEST_LFS_WORKS_RUN MATCHES 0) set (TEST_LFS_WORKS 1 CACHE INTERNAL ${msg}) set (LARGEFILE 1) set (HDF_EXTRA_FLAGS ${HDF_EXTRA_FLAGS} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE) message (STATUS "${msg}... yes") else (TEST_LFS_WORKS_RUN MATCHES 0) set (TEST_LFS_WORKS "" CACHE INTERNAL ${msg}) message (STATUS "${msg}... no") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Test TEST_LFS_WORKS Run failed with the following output and exit code:\n ${OUTPUT}\n" ) endif (TEST_LFS_WORKS_RUN MATCHES 0) else (TEST_LFS_WORKS_COMPILE ) set (TEST_LFS_WORKS "" CACHE INTERNAL ${msg}) message (STATUS "${msg}... no") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Test TEST_LFS_WORKS Compile failed with the following output:\n ${OUTPUT}\n" ) endif (TEST_LFS_WORKS_COMPILE) endif (HDF_ENABLE_LARGE_FILE) set (CMAKE_REQUIRED_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS} ${HDF_EXTRA_FLAGS}) endif (NOT ${HDF_PREFIX}_HAVE_SOLARIS) endif (NOT WINDOWS) add_definitions (${HDF_EXTRA_FLAGS}) #----------------------------------------------------------------------------- # Check for HAVE_OFF64_T functionality #----------------------------------------------------------------------------- if (NOT WINDOWS OR MINGW) HDF_FUNCTION_TEST (HAVE_OFF64_T) if (${HDF_PREFIX}_HAVE_OFF64_T) CHECK_FUNCTION_EXISTS (lseek64 ${HDF_PREFIX}_HAVE_LSEEK64) CHECK_FUNCTION_EXISTS (fseeko64 ${HDF_PREFIX}_HAVE_FSEEKO64) CHECK_FUNCTION_EXISTS (ftello64 ${HDF_PREFIX}_HAVE_FTELLO64) CHECK_FUNCTION_EXISTS (ftruncate64 ${HDF_PREFIX}_HAVE_FTRUNCATE64) endif (${HDF_PREFIX}_HAVE_OFF64_T) CHECK_FUNCTION_EXISTS (fseeko ${HDF_PREFIX}_HAVE_FSEEKO) CHECK_FUNCTION_EXISTS (ftello ${HDF_PREFIX}_HAVE_FTELLO) HDF_FUNCTION_TEST (HAVE_STAT64_STRUCT) if (HAVE_STAT64_STRUCT) CHECK_FUNCTION_EXISTS (fstat64 ${HDF_PREFIX}_HAVE_FSTAT64) CHECK_FUNCTION_EXISTS (stat64 ${HDF_PREFIX}_HAVE_STAT64) endif (HAVE_STAT64_STRUCT) endif (NOT WINDOWS OR MINGW) #----------------------------------------------------------------------------- # Check the size in bytes of all the int and float types #----------------------------------------------------------------------------- MACRO (HDF_CHECK_TYPE_SIZE type var) set (aType ${type}) set (aVar ${var}) # message (STATUS "Checking size of ${aType} and storing into ${aVar}") CHECK_TYPE_SIZE (${aType} ${aVar}) if (NOT ${aVar}) set (${aVar} 0 CACHE INTERNAL "SizeOf for ${aType}") # message (STATUS "Size of ${aType} was NOT Found") endif (NOT ${aVar}) ENDMACRO (HDF_CHECK_TYPE_SIZE) HDF_CHECK_TYPE_SIZE (char ${HDF_PREFIX}_SIZEOF_CHAR) HDF_CHECK_TYPE_SIZE (short ${HDF_PREFIX}_SIZEOF_SHORT) HDF_CHECK_TYPE_SIZE (int ${HDF_PREFIX}_SIZEOF_INT) HDF_CHECK_TYPE_SIZE (unsigned ${HDF_PREFIX}_SIZEOF_UNSIGNED) if (NOT APPLE) HDF_CHECK_TYPE_SIZE (long ${HDF_PREFIX}_SIZEOF_LONG) endif (NOT APPLE) HDF_CHECK_TYPE_SIZE ("long long" ${HDF_PREFIX}_SIZEOF_LONG_LONG) HDF_CHECK_TYPE_SIZE (__int64 ${HDF_PREFIX}_SIZEOF___INT64) if (NOT ${HDF_PREFIX}_SIZEOF___INT64) set (${HDF_PREFIX}_SIZEOF___INT64 0) endif (NOT ${HDF_PREFIX}_SIZEOF___INT64) HDF_CHECK_TYPE_SIZE (float ${HDF_PREFIX}_SIZEOF_FLOAT) HDF_CHECK_TYPE_SIZE (double ${HDF_PREFIX}_SIZEOF_DOUBLE) HDF_CHECK_TYPE_SIZE ("long double" ${HDF_PREFIX}_SIZEOF_LONG_DOUBLE) HDF_CHECK_TYPE_SIZE (int8_t ${HDF_PREFIX}_SIZEOF_INT8_T) HDF_CHECK_TYPE_SIZE (uint8_t ${HDF_PREFIX}_SIZEOF_UINT8_T) HDF_CHECK_TYPE_SIZE (int_least8_t ${HDF_PREFIX}_SIZEOF_INT_LEAST8_T) HDF_CHECK_TYPE_SIZE (uint_least8_t ${HDF_PREFIX}_SIZEOF_UINT_LEAST8_T) HDF_CHECK_TYPE_SIZE (int_fast8_t ${HDF_PREFIX}_SIZEOF_INT_FAST8_T) HDF_CHECK_TYPE_SIZE (uint_fast8_t ${HDF_PREFIX}_SIZEOF_UINT_FAST8_T) HDF_CHECK_TYPE_SIZE (int16_t ${HDF_PREFIX}_SIZEOF_INT16_T) HDF_CHECK_TYPE_SIZE (uint16_t ${HDF_PREFIX}_SIZEOF_UINT16_T) HDF_CHECK_TYPE_SIZE (int_least16_t ${HDF_PREFIX}_SIZEOF_INT_LEAST16_T) HDF_CHECK_TYPE_SIZE (uint_least16_t ${HDF_PREFIX}_SIZEOF_UINT_LEAST16_T) HDF_CHECK_TYPE_SIZE (int_fast16_t ${HDF_PREFIX}_SIZEOF_INT_FAST16_T) HDF_CHECK_TYPE_SIZE (uint_fast16_t ${HDF_PREFIX}_SIZEOF_UINT_FAST16_T) HDF_CHECK_TYPE_SIZE (int32_t ${HDF_PREFIX}_SIZEOF_INT32_T) HDF_CHECK_TYPE_SIZE (uint32_t ${HDF_PREFIX}_SIZEOF_UINT32_T) HDF_CHECK_TYPE_SIZE (int_least32_t ${HDF_PREFIX}_SIZEOF_INT_LEAST32_T) HDF_CHECK_TYPE_SIZE (uint_least32_t ${HDF_PREFIX}_SIZEOF_UINT_LEAST32_T) HDF_CHECK_TYPE_SIZE (int_fast32_t ${HDF_PREFIX}_SIZEOF_INT_FAST32_T) HDF_CHECK_TYPE_SIZE (uint_fast32_t ${HDF_PREFIX}_SIZEOF_UINT_FAST32_T) HDF_CHECK_TYPE_SIZE (int64_t ${HDF_PREFIX}_SIZEOF_INT64_T) HDF_CHECK_TYPE_SIZE (uint64_t ${HDF_PREFIX}_SIZEOF_UINT64_T) HDF_CHECK_TYPE_SIZE (int_least64_t ${HDF_PREFIX}_SIZEOF_INT_LEAST64_T) HDF_CHECK_TYPE_SIZE (uint_least64_t ${HDF_PREFIX}_SIZEOF_UINT_LEAST64_T) HDF_CHECK_TYPE_SIZE (int_fast64_t ${HDF_PREFIX}_SIZEOF_INT_FAST64_T) HDF_CHECK_TYPE_SIZE (uint_fast64_t ${HDF_PREFIX}_SIZEOF_UINT_FAST64_T) if (NOT APPLE) HDF_CHECK_TYPE_SIZE (size_t ${HDF_PREFIX}_SIZEOF_SIZE_T) HDF_CHECK_TYPE_SIZE (ssize_t ${HDF_PREFIX}_SIZEOF_SSIZE_T) if (NOT ${HDF_PREFIX}_SIZEOF_SSIZE_T) set (${HDF_PREFIX}_SIZEOF_SSIZE_T 0) endif (NOT ${HDF_PREFIX}_SIZEOF_SSIZE_T) if (NOT WINDOWS) HDF_CHECK_TYPE_SIZE (ptrdiff_t ${HDF_PREFIX}_SIZEOF_PTRDIFF_T) endif (NOT WINDOWS) endif (NOT APPLE) HDF_CHECK_TYPE_SIZE (off_t ${HDF_PREFIX}_SIZEOF_OFF_T) HDF_CHECK_TYPE_SIZE (off64_t ${HDF_PREFIX}_SIZEOF_OFF64_T) if (NOT ${HDF_PREFIX}_SIZEOF_OFF64_T) set (${HDF_PREFIX}_SIZEOF_OFF64_T 0) endif (NOT ${HDF_PREFIX}_SIZEOF_OFF64_T) if (NOT WINDOWS) #----------------------------------------------------------------------------- # Check if the dev_t type is a scalar type #----------------------------------------------------------------------------- HDF_FUNCTION_TEST (DEV_T_IS_SCALAR) # ---------------------------------------------------------------------- # Check for MONOTONIC_TIMER support (used in clock_gettime). This has # to be done after any POSIX/BSD defines to ensure that the test gets # the correct POSIX level on linux. CHECK_VARIABLE_EXISTS (CLOCK_MONOTONIC HAVE_CLOCK_MONOTONIC) #----------------------------------------------------------------------------- # Check a bunch of time functions #----------------------------------------------------------------------------- foreach (test HAVE_TM_GMTOFF HAVE___TM_GMTOFF # HAVE_TIMEZONE HAVE_STRUCT_TIMEZONE GETTIMEOFDAY_GIVES_TZ TIME_WITH_SYS_TIME HAVE_TM_ZONE HAVE_STRUCT_TM_TM_ZONE ) HDF_FUNCTION_TEST (${test}) endforeach (test) if (NOT CYGWIN AND NOT MINGW) HDF_FUNCTION_TEST (HAVE_TIMEZONE) # HDF_FUNCTION_TEST (HAVE_STAT_ST_BLOCKS) endif (NOT CYGWIN AND NOT MINGW) # ---------------------------------------------------------------------- # Does the struct stat have the st_blocks field? This field is not Posix. # HDF_FUNCTION_TEST (HAVE_STAT_ST_BLOCKS) # ---------------------------------------------------------------------- # How do we figure out the width of a tty in characters? # CHECK_FUNCTION_EXISTS (ioctl ${HDF_PREFIX}_HAVE_IOCTL) HDF_FUNCTION_TEST (HAVE_STRUCT_VIDEOCONFIG) HDF_FUNCTION_TEST (HAVE_STRUCT_TEXT_INFO) CHECK_FUNCTION_EXISTS (_getvideoconfig ${HDF_PREFIX}_HAVE__GETVIDEOCONFIG) CHECK_FUNCTION_EXISTS (gettextinfo ${HDF_PREFIX}_HAVE_GETTEXTINFO) CHECK_FUNCTION_EXISTS (_scrsize ${HDF_PREFIX}_HAVE__SCRSIZE) if (NOT CYGWIN AND NOT MINGW) CHECK_FUNCTION_EXISTS (GetConsoleScreenBufferInfo ${HDF_PREFIX}_HAVE_GETCONSOLESCREENBUFFERINFO) endif (NOT CYGWIN AND NOT MINGW) CHECK_SYMBOL_EXISTS (TIOCGWINSZ "sys/ioctl.h" ${HDF_PREFIX}_HAVE_TIOCGWINSZ) CHECK_SYMBOL_EXISTS (TIOCGETD "sys/ioctl.h" ${HDF_PREFIX}_HAVE_TIOCGETD) endif (NOT WINDOWS) #----------------------------------------------------------------------------- # Check for some functions that are used # CHECK_FUNCTION_EXISTS (alarm ${HDF_PREFIX}_HAVE_ALARM) CHECK_FUNCTION_EXISTS (fork ${HDF_PREFIX}_HAVE_FORK) CHECK_FUNCTION_EXISTS (frexpf ${HDF_PREFIX}_HAVE_FREXPF) CHECK_FUNCTION_EXISTS (frexpl ${HDF_PREFIX}_HAVE_FREXPL) CHECK_FUNCTION_EXISTS (gethostname ${HDF_PREFIX}_HAVE_GETHOSTNAME) CHECK_FUNCTION_EXISTS (getpwuid ${HDF_PREFIX}_HAVE_GETPWUID) CHECK_FUNCTION_EXISTS (getrusage ${HDF_PREFIX}_HAVE_GETRUSAGE) CHECK_FUNCTION_EXISTS (lstat ${HDF_PREFIX}_HAVE_LSTAT) CHECK_FUNCTION_EXISTS (rand_r ${HDF_PREFIX}_HAVE_RAND_R) CHECK_FUNCTION_EXISTS (random ${HDF_PREFIX}_HAVE_RANDOM) CHECK_FUNCTION_EXISTS (setsysinfo ${HDF_PREFIX}_HAVE_SETSYSINFO) CHECK_FUNCTION_EXISTS (signal ${HDF_PREFIX}_HAVE_SIGNAL) CHECK_FUNCTION_EXISTS (longjmp ${HDF_PREFIX}_HAVE_LONGJMP) CHECK_FUNCTION_EXISTS (setjmp ${HDF_PREFIX}_HAVE_SETJMP) CHECK_FUNCTION_EXISTS (siglongjmp ${HDF_PREFIX}_HAVE_SIGLONGJMP) CHECK_FUNCTION_EXISTS (sigsetjmp ${HDF_PREFIX}_HAVE_SIGSETJMP) CHECK_FUNCTION_EXISTS (sigaction ${HDF_PREFIX}_HAVE_SIGACTION) CHECK_FUNCTION_EXISTS (sigprocmask ${HDF_PREFIX}_HAVE_SIGPROCMASK) CHECK_FUNCTION_EXISTS (snprintf ${HDF_PREFIX}_HAVE_SNPRINTF) CHECK_FUNCTION_EXISTS (srandom ${HDF_PREFIX}_HAVE_SRANDOM) CHECK_FUNCTION_EXISTS (strdup ${HDF_PREFIX}_HAVE_STRDUP) CHECK_FUNCTION_EXISTS (symlink ${HDF_PREFIX}_HAVE_SYMLINK) CHECK_FUNCTION_EXISTS (system ${HDF_PREFIX}_HAVE_SYSTEM) CHECK_FUNCTION_EXISTS (tmpfile ${HDF_PREFIX}_HAVE_TMPFILE) CHECK_FUNCTION_EXISTS (asprintf ${HDF_PREFIX}_HAVE_ASPRINTF) CHECK_FUNCTION_EXISTS (vasprintf ${HDF_PREFIX}_HAVE_VASPRINTF) CHECK_FUNCTION_EXISTS (waitpid ${HDF_PREFIX}_HAVE_WAITPID) CHECK_FUNCTION_EXISTS (vsnprintf ${HDF_PREFIX}_HAVE_VSNPRINTF) if (NOT WINDOWS) if (${HDF_PREFIX}_HAVE_VSNPRINTF) HDF_FUNCTION_TEST (VSNPRINTF_WORKS) endif (${HDF_PREFIX}_HAVE_VSNPRINTF) endif (NOT WINDOWS) #----------------------------------------------------------------------------- # sigsetjmp is special; may actually be a macro #----------------------------------------------------------------------------- if (NOT ${HDF_PREFIX}_HAVE_SIGSETJMP) if (${HDF_PREFIX}_HAVE_SETJMP_H) CHECK_SYMBOL_EXISTS (sigsetjmp "setjmp.h" ${HDF_PREFIX}_HAVE_MACRO_SIGSETJMP) if (${HDF_PREFIX}_HAVE_MACRO_SIGSETJMP) set (${HDF_PREFIX}_HAVE_SIGSETJMP 1) endif (${HDF_PREFIX}_HAVE_MACRO_SIGSETJMP) endif (${HDF_PREFIX}_HAVE_SETJMP_H) endif (NOT ${HDF_PREFIX}_HAVE_SIGSETJMP) #----------------------------------------------------------------------------- # Check for Symbols CHECK_SYMBOL_EXISTS (tzname "time.h" ${HDF_PREFIX}_HAVE_DECL_TZNAME) #----------------------------------------------------------------------------- # Check a bunch of other functions #----------------------------------------------------------------------------- if (NOT WINDOWS) foreach (test LONE_COLON HAVE_ATTRIBUTE HAVE_C99_FUNC # STDC_HEADERS HAVE_FUNCTION HAVE_C99_DESIGNATED_INITIALIZER SYSTEM_SCOPE_THREADS HAVE_SOCKLEN_T CXX_HAVE_OFFSETOF ) HDF_FUNCTION_TEST (${test}) endforeach (test) endif (NOT WINDOWS) # For other CXX specific tests, use this MACRO. MACRO (HDF_CXX_FUNCTION_TEST OTHER_TEST) if ("${OTHER_TEST}" MATCHES "^${OTHER_TEST}$") set (MACRO_CHECK_FUNCTION_DEFINITIONS "-D${OTHER_TEST} ${CMAKE_REQUIRED_FLAGS}") set (OTHER_TEST_ADD_LIBRARIES) if (CMAKE_REQUIRED_LIBRARIES) set (OTHER_TEST_ADD_LIBRARIES "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") endif (CMAKE_REQUIRED_LIBRARIES) foreach (def ${HDF_EXTRA_TEST_DEFINITIONS}) set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D${def}=${${def}}") endforeach (def) foreach (def HAVE_SYS_TIME_H HAVE_UNISTD_H HAVE_SYS_TYPES_H HAVE_SYS_SOCKET_H ) if ("${${HDF_PREFIX}_${def}}") set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D${def}") endif ("${${HDF_PREFIX}_${def}}") endforeach (def) if (LARGEFILE) set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE" ) endif (LARGEFILE) #message (STATUS "Performing ${OTHER_TEST}") TRY_COMPILE (${OTHER_TEST} ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFCXXTests.cpp CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS} "${OTHER_TEST_ADD_LIBRARIES}" OUTPUT_VARIABLE OUTPUT ) if ("${OTHER_TEST}" EQUAL 0) set (${OTHER_TEST} 1 CACHE INTERNAL "CXX test ${FUNCTION}") message (STATUS "Performing CXX Test ${OTHER_TEST} - Success") else ("${OTHER_TEST}" EQUAL 0) message (STATUS "Performing CXX Test ${OTHER_TEST} - Failed") set (${OTHER_TEST} "" CACHE INTERNAL "CXX test ${FUNCTION}") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Performing CXX Test ${OTHER_TEST} failed with the following output:\n" "${OUTPUT}\n" ) endif ("${OTHER_TEST}" EQUAL 0) endif ("${OTHER_TEST}" MATCHES "^${OTHER_TEST}$") ENDMACRO (HDF_CXX_FUNCTION_TEST) #----------------------------------------------------------------------------- # Check a bunch of cxx functions #----------------------------------------------------------------------------- if (CMAKE_CXX_COMPILER_LOADED) foreach (test OLD_HEADER_FILENAME ${HDF_PREFIX}_NO_NAMESPACE ${HDF_PREFIX}_NO_STD BOOL_NOTDEFINED NO_STATIC_CAST ) HDF_CXX_FUNCTION_TEST (${test}) endforeach (test) endif (CMAKE_CXX_COMPILER_LOADED) #----------------------------------------------------------------------------- # Check if InitOnceExecuteOnce is available #----------------------------------------------------------------------------- if (WINDOWS) if (NOT HDF_NO_IOEO_TEST) message (STATUS "Checking for InitOnceExecuteOnce:") if ("${${HDF_PREFIX}_HAVE_IOEO}" MATCHES "^${${HDF_PREFIX}_HAVE_IOEO}$") if (LARGEFILE) set (CMAKE_REQUIRED_DEFINITIONS "${CURRENT_TEST_DEFINITIONS} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE" ) endif (LARGEFILE) set (MACRO_CHECK_FUNCTION_DEFINITIONS "-DHAVE_IOEO ${CMAKE_REQUIRED_FLAGS}") if (CMAKE_REQUIRED_LIBRARIES) set (CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") else (CMAKE_REQUIRED_LIBRARIES) set (CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES) endif (CMAKE_REQUIRED_LIBRARIES) if (CMAKE_REQUIRED_INCLUDES) set (CHECK_C_SOURCE_COMPILES_ADD_INCLUDES "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}") else (CMAKE_REQUIRED_INCLUDES) set (CHECK_C_SOURCE_COMPILES_ADD_INCLUDES) endif (CMAKE_REQUIRED_INCLUDES) TRY_RUN(HAVE_IOEO_EXITCODE HAVE_IOEO_COMPILED ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFTests.c COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS} CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS} -DCMAKE_SKIP_RPATH:BOOL=${CMAKE_SKIP_RPATH} "${CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES}" "${CHECK_C_SOURCE_COMPILES_ADD_INCLUDES}" COMPILE_OUTPUT_VARIABLE OUTPUT) # if it did not compile make the return value fail code of 1 if (NOT HAVE_IOEO_COMPILED) set (HAVE_IOEO_EXITCODE 1) endif (NOT HAVE_IOEO_COMPILED) # if the return value was 0 then it worked if ("${HAVE_IOEO_EXITCODE}" EQUAL 0) set (${HDF_PREFIX}_HAVE_IOEO 1 CACHE INTERNAL "Test InitOnceExecuteOnce") message (STATUS "Performing Test InitOnceExecuteOnce - Success") file (APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log "Performing C SOURCE FILE Test InitOnceExecuteOnce succeded with the following output:\n" "${OUTPUT}\n" "Return value: ${HAVE_IOEO}\n") else ("${HAVE_IOEO_EXITCODE}" EQUAL 0) if (CMAKE_CROSSCOMPILING AND "${HAVE_IOEO_EXITCODE}" MATCHES "FAILED_TO_RUN") set (${HDF_PREFIX}_HAVE_IOEO "${HAVE_IOEO_EXITCODE}") else (CMAKE_CROSSCOMPILING AND "${HAVE_IOEO_EXITCODE}" MATCHES "FAILED_TO_RUN") set (${HDF_PREFIX}_HAVE_IOEO "" CACHE INTERNAL "Test InitOnceExecuteOnce") endif (CMAKE_CROSSCOMPILING AND "${HAVE_IOEO_EXITCODE}" MATCHES "FAILED_TO_RUN") message (STATUS "Performing Test InitOnceExecuteOnce - Failed") file (APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log "Performing InitOnceExecuteOnce Test failed with the following output:\n" "${OUTPUT}\n" "Return value: ${HAVE_IOEO_EXITCODE}\n") endif ("${HAVE_IOEO_EXITCODE}" EQUAL 0) endif ("${${HDF_PREFIX}_HAVE_IOEO}" MATCHES "^${${HDF_PREFIX}_HAVE_IOEO}$") endif (NOT HDF_NO_IOEO_TEST) endif (WINDOWS) #----------------------------------------------------------------------------- # Determine how 'inline' is used #----------------------------------------------------------------------------- set (HDF_EXTRA_TEST_DEFINITIONS INLINE_TEST_INLINE) foreach (inline_test inline __inline__ __inline) set (INLINE_TEST_INLINE ${inline_test}) HDF_FUNCTION_TEST (INLINE_TEST_${inline_test}) endforeach (inline_test) set (HDF_EXTRA_TEST_DEFINITIONS) if (INLINE_TEST___inline__) set (${HDF_PREFIX}_inline __inline__) else (INLINE_TEST___inline__) if (INLINE_TEST___inline) set (${HDF_PREFIX}_inline __inline) else (INLINE_TEST___inline) if (INLINE_TEST_inline) set (${HDF_PREFIX}_inline inline) endif (INLINE_TEST_inline) endif (INLINE_TEST___inline) endif (INLINE_TEST___inline__) #----------------------------------------------------------------------------- # Check how to print a Long Long integer #----------------------------------------------------------------------------- if (NOT ${HDF_PREFIX}_PRINTF_LL_WIDTH OR ${HDF_PREFIX}_PRINTF_LL_WIDTH MATCHES "unknown") set (PRINT_LL_FOUND 0) message (STATUS "Checking for appropriate format for 64 bit long:") foreach (HDF5_PRINTF_LL l64 l L q I64 ll) set (CURRENT_TEST_DEFINITIONS "-DPRINTF_LL_WIDTH=${HDF5_PRINTF_LL}") if (${HDF_PREFIX}_SIZEOF_LONG_LONG) set (CURRENT_TEST_DEFINITIONS "${CURRENT_TEST_DEFINITIONS} -DHAVE_LONG_LONG") endif (${HDF_PREFIX}_SIZEOF_LONG_LONG) TRY_RUN (HDF5_PRINTF_LL_TEST_RUN HDF5_PRINTF_LL_TEST_COMPILE ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFTests.c CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${CURRENT_TEST_DEFINITIONS} OUTPUT_VARIABLE OUTPUT ) if (HDF5_PRINTF_LL_TEST_COMPILE) if (HDF5_PRINTF_LL_TEST_RUN MATCHES 0) set (${HDF_PREFIX}_PRINTF_LL_WIDTH "\"${HDF5_PRINTF_LL}\"" CACHE INTERNAL "Width for printf for type `long long' or `__int64', us. `ll") set (PRINT_LL_FOUND 1) else (HDF5_PRINTF_LL_TEST_RUN MATCHES 0) message ("Width with ${HDF5_PRINTF_LL} failed with result: ${HDF5_PRINTF_LL_TEST_RUN}") endif (HDF5_PRINTF_LL_TEST_RUN MATCHES 0) else (HDF5_PRINTF_LL_TEST_COMPILE) file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Test ${HDF_PREFIX}_PRINTF_LL_WIDTH for ${HDF5_PRINTF_LL} failed with the following output:\n ${OUTPUT}\n" ) endif (HDF5_PRINTF_LL_TEST_COMPILE) endforeach (HDF5_PRINTF_LL) if (PRINT_LL_FOUND) message (STATUS "Checking for apropriate format for 64 bit long: found ${${HDF_PREFIX}_PRINTF_LL_WIDTH}") else (PRINT_LL_FOUND) message (STATUS "Checking for apropriate format for 64 bit long: not found") set (${HDF_PREFIX}_PRINTF_LL_WIDTH "\"unknown\"" CACHE INTERNAL "Width for printf for type `long long' or `__int64', us. `ll" ) endif (PRINT_LL_FOUND) endif (NOT ${HDF_PREFIX}_PRINTF_LL_WIDTH OR ${HDF_PREFIX}_PRINTF_LL_WIDTH MATCHES "unknown") # ---------------------------------------------------------------------- # Set the flag to indicate that the machine can handle converting # denormalized floating-point values. # (This flag should be set for all machines, except for the Crays, where # the cache value is set in it's config file) # set (${HDF_PREFIX}_CONVERT_DENORMAL_FLOAT 1) hdf-java-2.11.0/config/cmake_ext_mod/version.plist.in0000644002344600011330000000116412401656217020772 0ustar byrnhdf BuildVersion @CPACK_PACKAGE_VERSION_MAJOR@ CFBundleShortVersionString @CPACK_APPLE_GUI_SHORT_VERSION_STRING@ CFBundleVersion @CPACK_APPLE_GUI_SHORT_VERSION_STRING@ ProjectName @CPACK_APPLE_GUI_BUNDLE_NAME@ SourceVersion @CPACK_PACKAGE_VERSION_MINOR@ hdf-java-2.11.0/config/cmake_ext_mod/runTest.cmake0000644002344600011330000001776112401656217020303 0ustar byrnhdf# runTest.cmake executes a command and captures the output in a file. File is then compared # against a reference file. Exit status of command can also be compared. cmake_policy(SET CMP0007 NEW) # arguments checking if (NOT TEST_PROGRAM) message (FATAL_ERROR "Require TEST_PROGRAM to be defined") endif (NOT TEST_PROGRAM) #if (NOT TEST_ARGS) # message (STATUS "Require TEST_ARGS to be defined") #endif (NOT TEST_ARGS) if (NOT TEST_FOLDER) message ( FATAL_ERROR "Require TEST_FOLDER to be defined") endif (NOT TEST_FOLDER) if (NOT TEST_OUTPUT) message (FATAL_ERROR "Require TEST_OUTPUT to be defined") endif (NOT TEST_OUTPUT) if (NOT TEST_EXPECT) message (STATUS "Require TEST_EXPECT to be defined") endif (NOT TEST_EXPECT) #if (NOT TEST_FILTER) # message (STATUS "Require TEST_FILTER to be defined") #endif (NOT TEST_FILTER) if (NOT TEST_SKIP_COMPARE AND NOT TEST_REFERENCE) message (FATAL_ERROR "Require TEST_REFERENCE to be defined") endif (NOT TEST_SKIP_COMPARE AND NOT TEST_REFERENCE) if (NOT TEST_ERRREF) set (ERROR_APPEND 1) endif (NOT TEST_ERRREF) message (STATUS "COMMAND: ${TEST_PROGRAM} ${TEST_ARGS}") if (TEST_ENV_VAR) set (ENV{${TEST_ENV_VAR}} "${TEST_ENV_VALUE}") endif (TEST_ENV_VAR) if (NOT TEST_INPUT) # run the test program, capture the stdout/stderr and the result var EXECUTE_PROCESS ( COMMAND ${TEST_PROGRAM} ${TEST_ARGS} WORKING_DIRECTORY ${TEST_FOLDER} RESULT_VARIABLE TEST_RESULT OUTPUT_FILE ${TEST_OUTPUT} ERROR_FILE ${TEST_OUTPUT}.err OUTPUT_VARIABLE TEST_ERROR ERROR_VARIABLE TEST_ERROR ) else (NOT TEST_INPUT) # run the test program with stdin, capture the stdout/stderr and the result var EXECUTE_PROCESS ( COMMAND ${TEST_PROGRAM} ${TEST_ARGS} WORKING_DIRECTORY ${TEST_FOLDER} RESULT_VARIABLE TEST_RESULT INPUT_FILE ${TEST_INPUT} OUTPUT_FILE ${TEST_OUTPUT} ERROR_FILE ${TEST_OUTPUT}.err OUTPUT_VARIABLE TEST_ERROR ERROR_VARIABLE TEST_ERROR ) endif (NOT TEST_INPUT) message (STATUS "COMMAND Result: ${TEST_RESULT}") if (ERROR_APPEND) file (READ ${TEST_FOLDER}/${TEST_OUTPUT}.err TEST_STREAM) file (APPEND ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") endif (ERROR_APPEND) if (TEST_APPEND) file (APPEND ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_APPEND} ${TEST_RESULT}\n") endif (TEST_APPEND) # if the return value is !=${TEST_EXPECT} bail out if (NOT ${TEST_RESULT} STREQUAL ${TEST_EXPECT}) message ( FATAL_ERROR "Failed: Test program ${TEST_PROGRAM} exited != ${TEST_EXPECT}.\n${TEST_ERROR}") endif (NOT ${TEST_RESULT} STREQUAL ${TEST_EXPECT}) message (STATUS "COMMAND Error: ${TEST_ERROR}") if (TEST_MASK) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) STRING(REGEX REPLACE "Storage:[^\n]+\n" "Storage:
    \n" TEST_STREAM "${TEST_STREAM}") file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") endif (TEST_MASK) if (TEST_MASK_MOD) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) STRING(REGEX REPLACE "Modified:[^\n]+\n" "Modified: XXXX-XX-XX XX:XX:XX XXX\n" TEST_STREAM "${TEST_STREAM}") file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") endif (TEST_MASK_MOD) if (TEST_MASK_ERROR) if (NOT TEST_ERRREF) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) else (NOT TEST_ERRREF) file (READ ${TEST_FOLDER}/${TEST_OUTPUT}.err TEST_STREAM) endif (NOT TEST_ERRREF) STRING(REGEX REPLACE "thread [0-9]*:" "thread (IDs):" TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE ": ([^\n]*)[.]c " ": (file name) " TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE " line [0-9]*" " line (number)" TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE "v[1-9]*[.][0-9]*[.]" "version (number)." TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE "[1-9]*[.][0-9]*[.][0-9]*[^)]*" "version (number)" TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE "H5Eget_auto[1-2]*" "H5Eget_auto(1 or 2)" TEST_STREAM "${TEST_STREAM}") STRING(REGEX REPLACE "H5Eset_auto[1-2]*" "H5Eset_auto(1 or 2)" TEST_STREAM "${TEST_STREAM}") if (NOT TEST_ERRREF) file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") else (NOT TEST_ERRREF) file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT}.err "${TEST_STREAM}") endif (NOT TEST_ERRREF) endif (TEST_MASK_ERROR) if (TEST_FILTER) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) STRING(REGEX REPLACE "${TEST_FILTER}" "" TEST_STREAM "${TEST_STREAM}") file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") endif (TEST_FILTER) if (NOT TEST_SKIP_COMPARE) if (WIN32 AND NOT MINGW) file (READ ${TEST_FOLDER}/${TEST_REFERENCE} TEST_STREAM) file (WRITE ${TEST_FOLDER}/${TEST_REFERENCE} "${TEST_STREAM}") endif (WIN32 AND NOT MINGW) # now compare the output with the reference EXECUTE_PROCESS ( COMMAND ${CMAKE_COMMAND} -E compare_files ${TEST_FOLDER}/${TEST_OUTPUT} ${TEST_FOLDER}/${TEST_REFERENCE} RESULT_VARIABLE TEST_RESULT ) if (NOT ${TEST_RESULT} STREQUAL 0) set (TEST_RESULT 0) file (STRINGS ${TEST_FOLDER}/${TEST_OUTPUT} test_act) LIST (LENGTH test_act len_act) file (STRINGS ${TEST_FOLDER}/${TEST_REFERENCE} test_ref) LIST (LENGTH test_ref len_ref) if (NOT ${len_act} STREQUAL "0") MATH (EXPR _FP_LEN "${len_ref} - 1") foreach (line RANGE 0 ${_FP_LEN}) LIST (GET test_act ${line} str_act) LIST (GET test_ref ${line} str_ref) if (NOT "${str_act}" STREQUAL "${str_ref}") if (NOT "${str_act}" STREQUAL "") set (TEST_RESULT 1) message ("line = ${line}\n***ACTUAL: ${str_act}\n****REFER: ${str_ref}\n") endif (NOT "${str_act}" STREQUAL "") endif (NOT "${str_act}" STREQUAL "${str_ref}") endforeach (line RANGE 0 ${_FP_LEN}) endif (NOT ${len_act} STREQUAL "0") if (NOT ${len_act} STREQUAL ${len_ref}) set (TEST_RESULT 1) endif (NOT ${len_act} STREQUAL ${len_ref}) endif (NOT ${TEST_RESULT} STREQUAL 0) message (STATUS "COMPARE Result: ${TEST_RESULT}") # again, if return value is !=0 scream and shout if (NOT ${TEST_RESULT} STREQUAL 0) message (FATAL_ERROR "Failed: The output of ${TEST_OUTPUT} did not match ${TEST_REFERENCE}") endif (NOT ${TEST_RESULT} STREQUAL 0) if (TEST_ERRREF) if (WIN32 AND NOT MINGW) file (READ ${TEST_FOLDER}/${TEST_ERRREF} TEST_STREAM) file (WRITE ${TEST_FOLDER}/${TEST_ERRREF} "${TEST_STREAM}") endif (WIN32 AND NOT MINGW) # now compare the error output with the error reference EXECUTE_PROCESS ( COMMAND ${CMAKE_COMMAND} -E compare_files ${TEST_FOLDER}/${TEST_OUTPUT}.err ${TEST_FOLDER}/${TEST_ERRREF} RESULT_VARIABLE TEST_RESULT ) if (NOT ${TEST_RESULT} STREQUAL 0) set (TEST_RESULT 0) file (STRINGS ${TEST_FOLDER}/${TEST_OUTPUT}.err test_act) LIST (LENGTH test_act len_act) file (STRINGS ${TEST_FOLDER}/${TEST_ERRREF} test_ref) LIST (LENGTH test_ref len_ref) MATH (EXPR _FP_LEN "${len_ref} - 1") if (NOT ${len_act} STREQUAL "0") MATH (EXPR _FP_LEN "${len_ref} - 1") foreach (line RANGE 0 ${_FP_LEN}) LIST (GET test_act ${line} str_act) LIST (GET test_ref ${line} str_ref) if (NOT "${str_act}" STREQUAL "${str_ref}") if (NOT "${str_act}" STREQUAL "") set (TEST_RESULT 1) message ("line = ${line}\n***ACTUAL: ${str_act}\n****REFER: ${str_ref}\n") endif (NOT "${str_act}" STREQUAL "") endif (NOT "${str_act}" STREQUAL "${str_ref}") endforeach (line RANGE 0 ${_FP_LEN}) endif (NOT ${len_act} STREQUAL "0") if (NOT ${len_act} STREQUAL ${len_ref}) set (TEST_RESULT 1) endif (NOT ${len_act} STREQUAL ${len_ref}) endif (NOT ${TEST_RESULT} STREQUAL 0) message (STATUS "COMPARE Result: ${TEST_RESULT}") # again, if return value is !=0 scream and shout if (NOT ${TEST_RESULT} STREQUAL 0) message (FATAL_ERROR "Failed: The error output of ${TEST_OUTPUT}.err did not match ${TEST_ERRREF}") endif (NOT ${TEST_RESULT} STREQUAL 0) endif (TEST_ERRREF) endif (NOT TEST_SKIP_COMPARE) # everything went fine... message ("Passed: The output of ${TEST_PROGRAM} matches ${TEST_REFERENCE}") hdf-java-2.11.0/config/cmake_ext_mod/CTestCustom.cmake0000644002344600011330000000074312401656217021044 0ustar byrnhdfset (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 3000) set (CTEST_CUSTOM_WARNING_EXCEPTION ${CTEST_CUSTOM_WARNING_EXCEPTION} "note.*expected.*void.*but argument is of type.*volatile" "SZIP.src.*:[ \t]*warning" "jpeg.src.*:[ \t]*warning" "POSIX name for this item is deprecated" "disabling jobserver mode" "warning.*implicit declaration of function" "note: expanded from macro" ) set (CTEST_CUSTOM_MEMCHECK_IGNORE ${CTEST_CUSTOM_MEMCHECK_IGNORE} ) hdf-java-2.11.0/config/cmake_ext_mod/NSIS.InstallOptions.ini.in0000644002344600011330000000122112431500062022445 0ustar byrnhdf[Settings] NumFields=5 [Field 1] Type=label Text=By default the @CPACK_PACKAGE_NAME@ bin directory is added to the system PATH. This allows shared library (dll) discovery (if installed) and running HDF5 tools from the command line. Left=0 Right=-1 Top=0 Bottom=20 [Field 2] Type=radiobutton Text=Do not add @CPACK_PACKAGE_NAME@ to the system PATH Left=0 Right=-1 Top=30 Bottom=40 State=0 [Field 3] Type=radiobutton Text=Add @CPACK_PACKAGE_NAME@ to the system PATH for all users Left=0 Right=-1 Top=40 Bottom=50 State=1 [Field 4] Type=radiobutton Text=Add @CPACK_PACKAGE_NAME@ to the system PATH for current user Left=0 Right=-1 Top=50 Bottom=60 State=0 hdf-java-2.11.0/config/cmake_ext_mod/HDFUseFortran.cmake0000644002344600011330000001341412401656217021240 0ustar byrnhdf# # This file provides functions for Fortran support. # #------------------------------------------------------------------------------- ENABLE_LANGUAGE (Fortran) #----------------------------------------------------------------------------- # Detect name mangling convention used between Fortran and C #----------------------------------------------------------------------------- include (FortranCInterface) FortranCInterface_HEADER ( ${CMAKE_BINARY_DIR}/FCMangle.h MACRO_NAMESPACE "H5_FC_" SYMBOL_NAMESPACE "H5_FC_" SYMBOLS mysub mymod:my_sub ) file (STRINGS ${CMAKE_BINARY_DIR}/FCMangle.h CONTENTS REGEX "H5_FC_GLOBAL\\(.*,.*\\) +(.*)") string (REGEX MATCH "H5_FC_GLOBAL\\(.*,.*\\) +(.*)" RESULT ${CONTENTS}) set (H5_FC_FUNC "H5_FC_FUNC(name,NAME) ${CMAKE_MATCH_1}") file (STRINGS ${CMAKE_BINARY_DIR}/FCMangle.h CONTENTS REGEX "H5_FC_GLOBAL_\\(.*,.*\\) +(.*)") string (REGEX MATCH "H5_FC_GLOBAL_\\(.*,.*\\) +(.*)" RESULT ${CONTENTS}) set (H5_FC_FUNC_ "H5_FC_FUNC_(name,NAME) ${CMAKE_MATCH_1}") #----------------------------------------------------------------------------- # The provided CMake Fortran macros don't provide a general check function # so this one is used for a sizeof test. #----------------------------------------------------------------------------- MACRO (CHECK_FORTRAN_FEATURE FUNCTION CODE VARIABLE) if (NOT DEFINED ${VARIABLE}) message (STATUS "Testing Fortran ${FUNCTION}") if (CMAKE_REQUIRED_LIBRARIES) set (CHECK_FUNCTION_EXISTS_ADD_LIBRARIES "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") else (CMAKE_REQUIRED_LIBRARIES) set (CHECK_FUNCTION_EXISTS_ADD_LIBRARIES) endif (CMAKE_REQUIRED_LIBRARIES) file (WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompiler.f "${CODE}" ) TRY_COMPILE (${VARIABLE} ${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompiler.f CMAKE_FLAGS "${CHECK_FUNCTION_EXISTS_ADD_LIBRARIES}" OUTPUT_VARIABLE OUTPUT ) # message ( "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ") # message ( "Test result ${OUTPUT}") # message ( "* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ") if (${VARIABLE}) set (${VARIABLE} 1 CACHE INTERNAL "Have Fortran function ${FUNCTION}") message (STATUS "Testing Fortran ${FUNCTION} - OK") file (APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log "Determining if the Fortran ${FUNCTION} exists passed with the following output:\n" "${OUTPUT}\n\n" ) else (${VARIABLE}) message (STATUS "Testing Fortran ${FUNCTION} - Fail") set (${VARIABLE} "" CACHE INTERNAL "Have Fortran function ${FUNCTION}") file (APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log "Determining if the Fortran ${FUNCTION} exists failed with the following output:\n" "${OUTPUT}\n\n") endif (${VARIABLE}) endif (NOT DEFINED ${VARIABLE}) ENDMACRO (CHECK_FORTRAN_FEATURE) #----------------------------------------------------------------------------- # Configure Checks which require Fortran compilation must go in here # not in the main ConfigureChecks.cmake files, because if the user has # no Fortran compiler, problems arise. # # Be careful with leading spaces here, do not remove them. #----------------------------------------------------------------------------- # Check for Non-standard extension intrinsic function SIZEOF CHECK_FORTRAN_FEATURE(sizeof " PROGRAM main i = sizeof(x) END PROGRAM " FORTRAN_HAVE_SIZEOF ) # Check for F2008 standard intrinsic function C_SIZEOF CHECK_FORTRAN_FEATURE(c_sizeof " PROGRAM main USE ISO_C_BINDING INTEGER(C_INT) :: a INTEGER(C_SIZE_T) :: result result = c_sizeof(a) END PROGRAM " FORTRAN_HAVE_C_SIZEOF ) # Check for F2008 standard intrinsic function STORAGE_SIZE CHECK_FORTRAN_FEATURE(storage_size " PROGRAM main INTEGER :: a INTEGER :: result result = storage_size(a) END PROGRAM " FORTRAN_HAVE_STORAGE_SIZE ) CHECK_FORTRAN_FEATURE(RealIsNotDouble " MODULE type_mod INTERFACE h5t MODULE PROCEDURE h5t_real MODULE PROCEDURE h5t_dble END INTERFACE CONTAINS SUBROUTINE h5t_real(r) REAL :: r END SUBROUTINE h5t_real SUBROUTINE h5t_dble(d) DOUBLE PRECISION :: d END SUBROUTINE h5t_dble END MODULE type_mod PROGRAM main USE type_mod REAL :: r DOUBLE PRECISION :: d CALL h5t(r) CALL h5t(d) END PROGRAM main " FORTRAN_DEFAULT_REAL_NOT_DOUBLE ) #----------------------------------------------------------------------------- # Checks if the ISO_C_BINDING module meets all the requirements #----------------------------------------------------------------------------- CHECK_FORTRAN_FEATURE(iso_c_binding " PROGRAM main USE iso_c_binding IMPLICIT NONE TYPE(C_PTR) :: ptr TYPE(C_FUNPTR) :: funptr INTEGER(C_INT64_T) :: c_int64_type CHARACTER(LEN=80, KIND=c_char), TARGET :: ichr ptr = C_LOC(ichr(1:1)) END PROGRAM " FORTRAN_HAVE_ISO_C_BINDING ) #----------------------------------------------------------------------------- # Add debug information (intel Fortran : JB) #----------------------------------------------------------------------------- if (CMAKE_Fortran_COMPILER MATCHES ifort) if (WIN32) set (CMAKE_Fortran_FLAGS_DEBUG "/debug:full /dbglibs " CACHE "flags" STRING FORCE) set (CMAKE_EXE_LINKER_FLAGS_DEBUG "/DEBUG" CACHE "flags" STRING FORCE) endif (WIN32) endif (CMAKE_Fortran_COMPILER MATCHES ifort) hdf-java-2.11.0/config/cmake_ext_mod/FindMPI.cmake0000644002344600011330000007326712401656217020070 0ustar byrnhdf# - Find a Message Passing Interface (MPI) implementation # The Message Passing Interface (MPI) is a library used to write # high-performance distributed-memory parallel applications, and # is typically deployed on a cluster. MPI is a standard interface # (defined by the MPI forum) for which many implementations are # available. All of them have somewhat different include paths, # libraries to link against, etc., and this module tries to smooth # out those differences. # # === Variables === # # This module will set the following variables per language in your project, # where is one of C, CXX, or Fortran: # MPI__FOUND TRUE if FindMPI found MPI flags for # MPI__COMPILER MPI Compiler wrapper for # MPI__COMPILE_FLAGS Compilation flags for MPI programs # MPI__INCLUDE_PATH Include path(s) for MPI header # MPI__LINK_FLAGS Linking flags for MPI programs # MPI__LIBRARIES All libraries to link MPI programs against # Additionally, FindMPI sets the following variables for running MPI # programs from the command line: # MPIEXEC Executable for running MPI programs # MPIEXEC_NUMPROC_FLAG Flag to pass to MPIEXEC before giving # it the number of processors to run on # MPIEXEC_PREFLAGS Flags to pass to MPIEXEC directly # before the executable to run. # MPIEXEC_POSTFLAGS Flags to pass to MPIEXEC after other flags # === Usage === # # To use this module, simply call FindMPI from a CMakeLists.txt file, or # run find_package(MPI), then run CMake. If you are happy with the auto- # detected configuration for your language, then you're done. If not, you # have two options: # 1. Set MPI__COMPILER to the MPI wrapper (mpicc, etc.) of your # choice and reconfigure. FindMPI will attempt to determine all the # necessary variables using THAT compiler's compile and link flags. # 2. If this fails, or if your MPI implementation does not come with # a compiler wrapper, then set both MPI__LIBRARIES and # MPI__INCLUDE_PATH. You may also set any other variables # listed above, but these two are required. This will circumvent # autodetection entirely. # When configuration is successful, MPI__COMPILER will be set to the # compiler wrapper for , if it was found. MPI__FOUND and other # variables above will be set if any MPI implementation was found for , # regardless of whether a compiler was found. # # When using MPIEXEC to execute MPI applications, you should typically use # all of the MPIEXEC flags as follows: # ${MPIEXEC} ${MPIEXEC_NUMPROC_FLAG} PROCS # ${MPIEXEC_PREFLAGS} EXECUTABLE ${MPIEXEC_POSTFLAGS} ARGS # where PROCS is the number of processors on which to execute the program, # EXECUTABLE is the MPI program, and ARGS are the arguments to pass to the # MPI program. # # === Backward Compatibility === # # For backward compatibility with older versions of FindMPI, these # variables are set, but deprecated: # MPI_FOUND MPI_COMPILER MPI_LIBRARY # MPI_COMPILE_FLAGS MPI_INCLUDE_PATH MPI_EXTRA_LIBRARY # MPI_LINK_FLAGS MPI_LIBRARIES # In new projects, please use the MPI__XXX equivalents. #============================================================================= # Copyright 2001-2011 Kitware, Inc. # Copyright 2010-2011 Todd Gamblin tgamblin@llnl.gov # Copyright 2001-2009 Dave Partyka # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) # include this to handle the QUIETLY and REQUIRED arguments include(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake) include(GetPrerequisites) # # This part detects MPI compilers, attempting to wade through the mess of compiler names in # a sensible way. # # The compilers are detected in this order: # # 1. Try to find the most generic available MPI compiler, as this is usually set up by # cluster admins. e.g., if plain old mpicc is available, we'll use it and assume it's # the right compiler. # # 2. If a generic mpicc is NOT found, then we attempt to find one that matches # CMAKE__COMPILER_ID. e.g. if you are using XL compilers, we'll try to find mpixlc # and company, but not mpiicc. This hopefully prevents toolchain mismatches. # # If you want to force a particular MPI compiler other than what we autodetect (e.g. if you # want to compile regular stuff with GNU and parallel stuff with Intel), you can always set # your favorite MPI__COMPILER explicitly and this stuff will be ignored. # # Start out with the generic MPI compiler names, as these are most commonly used. set(_MPI_C_COMPILER_NAMES mpicc mpcc mpicc_r mpcc_r) set(_MPI_CXX_COMPILER_NAMES mpicxx mpiCC mpcxx mpCC mpic++ mpc++ mpicxx_r mpiCC_r mpcxx_r mpCC_r mpic++_r mpc++_r) set(_MPI_Fortran_COMPILER_NAMES mpif95 mpif95_r mpf95 mpf95_r mpif90 mpif90_r mpf90 mpf90_r mpif77 mpif77_r mpf77 mpf77_r) # GNU compiler names set(_MPI_GNU_C_COMPILER_NAMES mpigcc mpgcc mpigcc_r mpgcc_r) set(_MPI_GNU_CXX_COMPILER_NAMES mpig++ mpg++ mpig++_r mpg++_r) set(_MPI_GNU_Fortran_COMPILER_NAMES mpigfortran mpgfortran mpigfortran_r mpgfortran_r mpig77 mpig77_r mpg77 mpg77_r) # Intel MPI compiler names set(_MPI_Intel_C_COMPILER_NAMES mpiicc) set(_MPI_Intel_CXX_COMPILER_NAMES mpiicpc mpiicxx mpiic++ mpiiCC) set(_MPI_Intel_Fortran_COMPILER_NAMES mpiifort mpiif95 mpiif90 mpiif77) # PGI compiler names set(_MPI_PGI_C_COMPILER_NAMES mpipgcc mppgcc) set(_MPI_PGI_CXX_COMPILER_NAMES mpipgCC mppgCC) set(_MPI_PGI_Fortran_COMPILER_NAMES mpipgf95 mpipgf90 mppgf95 mppgf90 mpipgf77 mppgf77) # XLC MPI Compiler names set(_MPI_XL_C_COMPILER_NAMES mpxlc mpxlc_r mpixlc mpixlc_r) set(_MPI_XL_CXX_COMPILER_NAMES mpixlcxx mpixlC mpixlc++ mpxlcxx mpxlc++ mpixlc++ mpxlCC mpixlcxx_r mpixlC_r mpixlc++_r mpxlcxx_r mpxlc++_r mpixlc++_r mpxlCC_r) set(_MPI_XL_Fortran_COMPILER_NAMES mpixlf95 mpixlf95_r mpxlf95 mpxlf95_r mpixlf90 mpixlf90_r mpxlf90 mpxlf90_r mpixlf77 mpixlf77_r mpxlf77 mpxlf77_r mpixlf mpixlf_r mpxlf mpxlf_r) # append vendor-specific compilers to the list if we either don't know the compiler id, # or if we know it matches the regular compiler. foreach (lang C CXX Fortran) foreach (id GNU Intel PGI XL) if (NOT CMAKE_${lang}_COMPILER_ID OR "${CMAKE_${lang}_COMPILER_ID}" STREQUAL "${id}") list(APPEND _MPI_${lang}_COMPILER_NAMES ${_MPI_${id}_${lang}_COMPILER_NAMES}) endif() unset(_MPI_${id}_${lang}_COMPILER_NAMES) # clean up the namespace here endforeach() endforeach() # Names to try for MPI exec set(_MPI_EXEC_NAMES mpiexec mpirun lamexec srun) # Grab the path to MPI from the registry if we're on windows. set(_MPI_PREFIX_PATH) if(WIN32) list(APPEND _MPI_PREFIX_PATH "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MPICH\\SMPD;binary]/..") list(APPEND _MPI_PREFIX_PATH "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MPICH2;Path]") list(APPEND _MPI_PREFIX_PATH "$ENV{ProgramW6432}/MPICH2/") endif() # Build a list of prefixes to search for MPI. foreach(SystemPrefixDir ${CMAKE_SYSTEM_PREFIX_PATH}) foreach(MpiPackageDir ${_MPI_PREFIX_PATH}) if(EXISTS ${SystemPrefixDir}/${MpiPackageDir}) list(APPEND _MPI_PREFIX_PATH "${SystemPrefixDir}/${MpiPackageDir}") endif() endforeach() endforeach() # # interrogate_mpi_compiler(lang try_libs) # # Attempts to extract compiler and linker args from an MPI compiler. The arguments set # by this function are: # # MPI__INCLUDE_PATH MPI__LINK_FLAGS MPI__FOUND # MPI__COMPILE_FLAGS MPI__LIBRARIES # # MPI__COMPILER must be set beforehand to the absolute path to an MPI compiler for # . Additionally, MPI__INCLUDE_PATH and MPI__LIBRARIES may be set # to skip autodetection. # # If try_libs is TRUE, this will also attempt to find plain MPI libraries in the usual # way. In general, this is not as effective as interrogating the compilers, as it # ignores language-specific flags and libraries. However, some MPI implementations # (Windows implementations) do not have compiler wrappers, so this approach must be used. # function (interrogate_mpi_compiler lang try_libs) # MPI_${lang}_NO_INTERROGATE will be set to a compiler name when the *regular* compiler was # discovered to be the MPI compiler. This happens on machines like the Cray XE6 that use # modules to set cc, CC, and ftn to the MPI compilers. If the user force-sets another MPI # compiler, MPI_${lang}_COMPILER won't be equal to MPI_${lang}_NO_INTERROGATE, and we'll # inspect that compiler anew. This allows users to set new compilers w/o rm'ing cache. string(COMPARE NOTEQUAL "${MPI_${lang}_NO_INTERROGATE}" "${MPI_${lang}_COMPILER}" interrogate) # If MPI is set already in the cache, don't bother with interrogating the compiler. if (interrogate AND ((NOT MPI_${lang}_INCLUDE_PATH) OR (NOT MPI_${lang}_LIBRARIES))) if (MPI_${lang}_COMPILER) # Check whether the -showme:compile option works. This indicates that we have either OpenMPI # or a newer version of LAM-MPI, and implies that -showme:link will also work. execute_process( COMMAND ${MPI_${lang}_COMPILER} -showme:compile OUTPUT_VARIABLE MPI_COMPILE_CMDLINE OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE MPI_COMPILE_CMDLINE ERROR_STRIP_TRAILING_WHITESPACE RESULT_VARIABLE MPI_COMPILER_RETURN) if (MPI_COMPILER_RETURN EQUAL 0) # If we appear to have -showme:compile, then we should # also have -showme:link. Try it. execute_process( COMMAND ${MPI_${lang}_COMPILER} -showme:link OUTPUT_VARIABLE MPI_LINK_CMDLINE OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE MPI_LINK_CMDLINE ERROR_STRIP_TRAILING_WHITESPACE RESULT_VARIABLE MPI_COMPILER_RETURN) if (MPI_COMPILER_RETURN EQUAL 0) # We probably have -showme:incdirs and -showme:libdirs as well, # so grab that while we're at it. execute_process( COMMAND ${MPI_${lang}_COMPILER} -showme:incdirs OUTPUT_VARIABLE MPI_INCDIRS OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE MPI_INCDIRS ERROR_STRIP_TRAILING_WHITESPACE) execute_process( COMMAND ${MPI_${lang}_COMPILER} -showme:libdirs OUTPUT_VARIABLE MPI_LIBDIRS OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE MPI_LIBDIRS ERROR_STRIP_TRAILING_WHITESPACE) else() # reset things here if something went wrong. set(MPI_COMPILE_CMDLINE) set(MPI_LINK_CMDLINE) endif() endif () # Older versions of LAM-MPI have "-showme". Try to find that. if (NOT MPI_COMPILER_RETURN EQUAL 0) execute_process( COMMAND ${MPI_${lang}_COMPILER} -showme OUTPUT_VARIABLE MPI_COMPILE_CMDLINE OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE MPI_COMPILE_CMDLINE ERROR_STRIP_TRAILING_WHITESPACE RESULT_VARIABLE MPI_COMPILER_RETURN) endif() # MVAPICH uses -compile-info and -link-info. Try them. if (NOT MPI_COMPILER_RETURN EQUAL 0) execute_process( COMMAND ${MPI_${lang}_COMPILER} -compile-info OUTPUT_VARIABLE MPI_COMPILE_CMDLINE OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE MPI_COMPILE_CMDLINE ERROR_STRIP_TRAILING_WHITESPACE RESULT_VARIABLE MPI_COMPILER_RETURN) # If we have compile-info, also have link-info. if (MPI_COMPILER_RETURN EQUAL 0) execute_process( COMMAND ${MPI_${lang}_COMPILER} -link-info OUTPUT_VARIABLE MPI_LINK_CMDLINE OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE MPI_LINK_CMDLINE ERROR_STRIP_TRAILING_WHITESPACE RESULT_VARIABLE MPI_COMPILER_RETURN) endif() # make sure we got compile and link. Reset vars if something's wrong. if (NOT MPI_COMPILER_RETURN EQUAL 0) set(MPI_COMPILE_CMDLINE) set(MPI_LINK_CMDLINE) endif() endif() # MPICH just uses "-show". Try it. if (NOT MPI_COMPILER_RETURN EQUAL 0) execute_process( COMMAND ${MPI_${lang}_COMPILER} -show OUTPUT_VARIABLE MPI_COMPILE_CMDLINE OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE MPI_COMPILE_CMDLINE ERROR_STRIP_TRAILING_WHITESPACE RESULT_VARIABLE MPI_COMPILER_RETURN) endif() if (MPI_COMPILER_RETURN EQUAL 0) # We have our command lines, but we might need to copy MPI_COMPILE_CMDLINE # into MPI_LINK_CMDLINE, if we didn't find the link line. if (NOT MPI_LINK_CMDLINE) set(MPI_LINK_CMDLINE ${MPI_COMPILE_CMDLINE}) endif() else() message(STATUS "Unable to determine MPI from MPI driver ${MPI_${lang}_COMPILER}") set(MPI_COMPILE_CMDLINE) set(MPI_LINK_CMDLINE) endif() # Here, we're done with the interrogation part, and we'll try to extract args we care # about from what we learned from the compiler wrapper scripts. # If interrogation came back with something, extract our variable from the MPI command line if (MPI_COMPILE_CMDLINE OR MPI_LINK_CMDLINE) # Extract compile flags from the compile command line. string(REGEX MATCHALL "(^| )-[Df]([^\" ]+|\"[^\"]+\")" MPI_ALL_COMPILE_FLAGS "${MPI_COMPILE_CMDLINE}") set(MPI_COMPILE_FLAGS_WORK) foreach(FLAG ${MPI_ALL_COMPILE_FLAGS}) if (MPI_COMPILE_FLAGS_WORK) set(MPI_COMPILE_FLAGS_WORK "${MPI_COMPILE_FLAGS_WORK} ${FLAG}") else() set(MPI_COMPILE_FLAGS_WORK ${FLAG}) endif() endforeach() # Extract include paths from compile command line string(REGEX MATCHALL "(^| )-I([^\" ]+|\"[^\"]+\")" MPI_ALL_INCLUDE_PATHS "${MPI_COMPILE_CMDLINE}") foreach(IPATH ${MPI_ALL_INCLUDE_PATHS}) string(REGEX REPLACE "^ ?-I" "" IPATH ${IPATH}) string(REGEX REPLACE "//" "/" IPATH ${IPATH}) list(APPEND MPI_INCLUDE_PATH_WORK ${IPATH}) endforeach() # try using showme:incdirs if extracting didn't work. if (NOT MPI_INCLUDE_PATH_WORK) set(MPI_INCLUDE_PATH_WORK ${MPI_INCDIRS}) separate_arguments(MPI_INCLUDE_PATH_WORK) endif() # If all else fails, just search for mpi.h in the normal include paths. if (NOT MPI_INCLUDE_PATH_WORK) set(MPI_HEADER_PATH "MPI_HEADER_PATH-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) find_path(MPI_HEADER_PATH mpi.h HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} PATH_SUFFIXES include) set(MPI_INCLUDE_PATH_WORK ${MPI_HEADER_PATH}) endif() # Extract linker paths from the link command line string(REGEX MATCHALL "(^| |-Wl,)-L([^\" ]+|\"[^\"]+\")" MPI_ALL_LINK_PATHS "${MPI_LINK_CMDLINE}") set(MPI_LINK_PATH) foreach(LPATH ${MPI_ALL_LINK_PATHS}) string(REGEX REPLACE "^(| |-Wl,)-L" "" LPATH ${LPATH}) string(REGEX REPLACE "//" "/" LPATH ${LPATH}) list(APPEND MPI_LINK_PATH ${LPATH}) endforeach() # try using showme:libdirs if extracting didn't work. if (NOT MPI_LINK_PATH) set(MPI_LINK_PATH ${MPI_LIBDIRS}) separate_arguments(MPI_LINK_PATH) endif() # Extract linker flags from the link command line string(REGEX MATCHALL "(^| )-Wl,([^\" ]+|\"[^\"]+\")" MPI_ALL_LINK_FLAGS "${MPI_LINK_CMDLINE}") set(MPI_LINK_FLAGS_WORK) foreach(FLAG ${MPI_ALL_LINK_FLAGS}) if (MPI_LINK_FLAGS_WORK) set(MPI_LINK_FLAGS_WORK "${MPI_LINK_FLAGS_WORK} ${FLAG}") else() set(MPI_LINK_FLAGS_WORK ${FLAG}) endif() endforeach() # Extract the set of libraries to link against from the link command # line string(REGEX MATCHALL "(^| )-l([^\" ]+|\"[^\"]+\")" MPI_LIBNAMES "${MPI_LINK_CMDLINE}") # add the compiler implicit directories because some compilers # such as the intel compiler have libraries that show up # in the showme list that can only be found in the implicit # link directories of the compiler. Do this for C++ and C # compilers if the implicit link directories are defined. if (DEFINED CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES) set(MPI_LINK_PATH "${MPI_LINK_PATH};${CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES}") endif () if (DEFINED CMAKE_C_IMPLICIT_LINK_DIRECTORIES) set(MPI_LINK_PATH "${MPI_LINK_PATH};${CMAKE_C_IMPLICIT_LINK_DIRECTORIES}") endif () # Determine full path names for all of the libraries that one needs # to link against in an MPI program foreach(LIB ${MPI_LIBNAMES}) string(REGEX REPLACE "^ ?-l" "" LIB ${LIB}) # MPI_LIB is cached by find_library, but we don't want that. Clear it first. set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) find_library(MPI_LIB NAMES ${LIB} HINTS ${MPI_LINK_PATH}) if (MPI_LIB) list(APPEND MPI_LIBRARIES_WORK ${MPI_LIB}) elseif (NOT MPI_FIND_QUIETLY) message(WARNING "Unable to find MPI library ${LIB}") endif() endforeach() # Sanity check MPI_LIBRARIES to make sure there are enough libraries list(LENGTH MPI_LIBRARIES_WORK MPI_NUMLIBS) list(LENGTH MPI_LIBNAMES MPI_NUMLIBS_EXPECTED) if (NOT MPI_NUMLIBS EQUAL MPI_NUMLIBS_EXPECTED) set(MPI_LIBRARIES_WORK "MPI_${lang}_LIBRARIES-NOTFOUND") endif() endif() elseif(try_libs) # If we didn't have an MPI compiler script to interrogate, attempt to find everything # with plain old find functions. This is nasty because MPI implementations have LOTS of # different library names, so this section isn't going to be very generic. We need to # make sure it works for MS MPI, though, since there are no compiler wrappers for that. find_path(MPI_HEADER_PATH mpi.h HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} PATH_SUFFIXES include Inc) set(MPI_INCLUDE_PATH_WORK ${MPI_HEADER_PATH}) # Decide between 32-bit and 64-bit libraries for Microsoft's MPI if("${CMAKE_SIZEOF_VOID_P}" EQUAL 8) set(MS_MPI_ARCH_DIR amd64) else() set(MS_MPI_ARCH_DIR i386) endif() set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) find_library(MPI_LIB NAMES mpi mpich mpich2 msmpi HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} PATH_SUFFIXES lib lib/${MS_MPI_ARCH_DIR} Lib Lib/${MS_MPI_ARCH_DIR}) set(MPI_LIBRARIES_WORK ${MPI_LIB}) # Right now, we only know about the extra libs for C++. # We could add Fortran here (as there is usually libfmpich, etc.), but # this really only has to work with MS MPI on Windows. # Assume that other MPI's are covered by the compiler wrappers. if (${lang} STREQUAL CXX) set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) find_library(MPI_LIB NAMES mpi++ mpicxx cxx mpi_cxx HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} PATH_SUFFIXES lib) if (MPI_LIBRARIES_WORK AND MPI_LIB) list(APPEND MPI_LIBRARIES_WORK ${MPI_LIB}) endif() endif() if (${lang} STREQUAL Fortran) set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) find_library(MPI_LIB NAMES fmpi fmpich fmpich2 fmpich2g msmpifec msmpifmc HINTS ${_MPI_BASE_DIR} ${_MPI_PREFIX_PATH} PATH_SUFFIXES lib lib/${MS_MPI_ARCH_DIR} Lib Lib/${MS_MPI_ARCH_DIR}) if (MPI_LIBRARIES_WORK AND MPI_LIB) list(APPEND MPI_LIBRARIES_WORK ${MPI_LIB}) endif() endif() if (NOT MPI_LIBRARIES_WORK) set(MPI_LIBRARIES_WORK "MPI_${lang}_LIBRARIES-NOTFOUND") endif() endif() # If we found MPI, set up all of the appropriate cache entries set(MPI_${lang}_COMPILE_FLAGS ${MPI_COMPILE_FLAGS_WORK} CACHE STRING "MPI ${lang} compilation flags" FORCE) set(MPI_${lang}_INCLUDE_PATH ${MPI_INCLUDE_PATH_WORK} CACHE STRING "MPI ${lang} include path" FORCE) set(MPI_${lang}_LINK_FLAGS ${MPI_LINK_FLAGS_WORK} CACHE STRING "MPI ${lang} linking flags" FORCE) set(MPI_${lang}_LIBRARIES ${MPI_LIBRARIES_WORK} CACHE STRING "MPI ${lang} libraries to link against" FORCE) mark_as_advanced(MPI_${lang}_COMPILE_FLAGS MPI_${lang}_INCLUDE_PATH MPI_${lang}_LINK_FLAGS MPI_${lang}_LIBRARIES) # clear out our temporary lib/header detectionv variable here. set(MPI_LIB "MPI_LIB-NOTFOUND" CACHE INTERNAL "Scratch variable for MPI lib detection" FORCE) set(MPI_HEADER_PATH "MPI_HEADER_PATH-NOTFOUND" CACHE INTERNAL "Scratch variable for MPI header detection" FORCE) endif() # finally set a found variable for each MPI language if (MPI_${lang}_INCLUDE_PATH AND MPI_${lang}_LIBRARIES) set(MPI_${lang}_FOUND TRUE PARENT_SCOPE) else() set(MPI_${lang}_FOUND FALSE PARENT_SCOPE) endif() endfunction() # This function attempts to compile with the regular compiler, to see if MPI programs # work with it. This is a last ditch attempt after we've tried interrogating mpicc and # friends, and after we've tried to find generic libraries. Works on machines like # Cray XE6, where the modules environment changes what MPI version cc, CC, and ftn use. function(try_regular_compiler lang success) set(scratch_directory ${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}) if (${lang} STREQUAL Fortran) set(test_file ${scratch_directory}/cmake_mpi_test.f90) file(WRITE ${test_file} "program hello\n" "include 'mpif.h'\n" "integer ierror\n" "call MPI_INIT(ierror)\n" "call MPI_FINALIZE(ierror)\n" "end\n") else() if (${lang} STREQUAL CXX) set(test_file ${scratch_directory}/cmake_mpi_test.cpp) else() set(test_file ${scratch_directory}/cmake_mpi_test.c) endif() file(WRITE ${test_file} "#include \n" "int main(int argc, char **argv) {\n" " MPI_Init(&argc, &argv);\n" " MPI_Finalize();\n" "}\n") endif() try_compile(compiler_has_mpi ${scratch_directory} ${test_file}) if (compiler_has_mpi) set(MPI_${lang}_NO_INTERROGATE ${CMAKE_${lang}_COMPILER} CACHE STRING "Whether to interrogate MPI ${lang} compiler" FORCE) set(MPI_${lang}_COMPILER ${CMAKE_${lang}_COMPILER} CACHE STRING "MPI ${lang} compiler" FORCE) set(MPI_${lang}_COMPILE_FLAGS "" CACHE STRING "MPI ${lang} compilation flags" FORCE) set(MPI_${lang}_INCLUDE_PATH "" CACHE STRING "MPI ${lang} include path" FORCE) set(MPI_${lang}_LINK_FLAGS "" CACHE STRING "MPI ${lang} linking flags" FORCE) set(MPI_${lang}_LIBRARIES "" CACHE STRING "MPI ${lang} libraries to link against" FORCE) endif() set(${success} ${compiler_has_mpi} PARENT_SCOPE) unset(compiler_has_mpi CACHE) endfunction() # End definitions, commence real work here. # Most mpi distros have some form of mpiexec which gives us something we can reliably look for. find_program(MPIEXEC NAMES ${_MPI_EXEC_NAMES} PATHS ${_MPI_PREFIX_PATH} PATH_SUFFIXES bin DOC "Executable for running MPI programs.") # call get_filename_component twice to remove mpiexec and the directory it exists in (typically bin). # This gives us a fairly reliable base directory to search for /bin /lib and /include from. get_filename_component(_MPI_BASE_DIR "${MPIEXEC}" PATH) get_filename_component(_MPI_BASE_DIR "${_MPI_BASE_DIR}" PATH) set(MPIEXEC_NUMPROC_FLAG "-np" CACHE STRING "Flag used by MPI to specify the number of processes for MPIEXEC; the next option will be the number of processes.") set(MPIEXEC_PREFLAGS "" CACHE STRING "These flags will be directly before the executable that is being run by MPIEXEC.") set(MPIEXEC_POSTFLAGS "" CACHE STRING "These flags will come after all flags given to MPIEXEC.") set(MPIEXEC_MAX_NUMPROCS "2" CACHE STRING "Maximum number of processors available to run MPI applications.") mark_as_advanced(MPIEXEC MPIEXEC_NUMPROC_FLAG MPIEXEC_PREFLAGS MPIEXEC_POSTFLAGS MPIEXEC_MAX_NUMPROCS) #============================================================================= # Backward compatibility input hacks. Propagate the FindMPI hints to C and # CXX if the respective new versions are not defined. Translate the old # MPI_LIBRARY and MPI_EXTRA_LIBRARY to respective MPI_${lang}_LIBRARIES. # # Once we find the new variables, we translate them back into their old # equivalents below. foreach (lang C CXX) # Old input variables. set(_MPI_OLD_INPUT_VARS COMPILER COMPILE_FLAGS INCLUDE_PATH LINK_FLAGS) # Set new vars based on their old equivalents, if the new versions are not already set. foreach (var ${_MPI_OLD_INPUT_VARS}) if (NOT MPI_${lang}_${var} AND MPI_${var}) set(MPI_${lang}_${var} "${MPI_${var}}") endif() endforeach() # Special handling for MPI_LIBRARY and MPI_EXTRA_LIBRARY, which we nixed in the # new FindMPI. These need to be merged into MPI__LIBRARIES if (NOT MPI_${lang}_LIBRARIES AND (MPI_LIBRARY OR MPI_EXTRA_LIBRARY)) set(MPI_${lang}_LIBRARIES ${MPI_LIBRARY} ${MPI_EXTRA_LIBRARY}) endif() endforeach() #============================================================================= # This loop finds the compilers and sends them off for interrogation. foreach (lang C CXX Fortran) if (CMAKE_${lang}_COMPILER_WORKS) # If the user supplies a compiler *name* instead of an absolute path, assume that we need to find THAT compiler. if (MPI_${lang}_COMPILER) is_file_executable(MPI_${lang}_COMPILER MPI_COMPILER_IS_EXECUTABLE) if (NOT MPI_COMPILER_IS_EXECUTABLE) # Get rid of our default list of names and just search for the name the user wants. set(_MPI_${lang}_COMPILER_NAMES ${MPI_${lang}_COMPILER}) set(MPI_${lang}_COMPILER "MPI_${lang}_COMPILER-NOTFOUND" CACHE FILEPATH "Cleared" FORCE) # If the user specifies a compiler, we don't want to try to search libraries either. set(try_libs FALSE) endif() else() set(try_libs TRUE) endif() find_program(MPI_${lang}_COMPILER NAMES ${_MPI_${lang}_COMPILER_NAMES} PATHS "${MPI_HOME}/bin" "$ENV{MPI_HOME}/bin" ${_MPI_PREFIX_PATH}) interrogate_mpi_compiler(${lang} ${try_libs}) mark_as_advanced(MPI_${lang}_COMPILER) # last ditch try -- if nothing works so far, just try running the regular compiler and # see if we can create an MPI executable. set(regular_compiler_worked 0) if (NOT MPI_${lang}_LIBRARIES OR NOT MPI_${lang}_INCLUDE_PATH) try_regular_compiler(${lang} regular_compiler_worked) endif() set(MPI_${lang}_FIND_QUIETLY ${MPI_FIND_QUIETLY}) set(MPI_${lang}_FIND_REQUIRED ${MPI_FIND_REQUIRED}) set(MPI_${lang}_FIND_VERSION ${MPI_FIND_VERSION}) set(MPI_${lang}_FIND_VERSION_EXACT ${MPI_FIND_VERSION_EXACT}) if (regular_compiler_worked) find_package_handle_standard_args(MPI_${lang} DEFAULT_MSG MPI_${lang}_COMPILER) else() find_package_handle_standard_args(MPI_${lang} DEFAULT_MSG MPI_${lang}_LIBRARIES MPI_${lang}_INCLUDE_PATH) endif() endif() endforeach() #============================================================================= # More backward compatibility stuff # # Bare MPI sans ${lang} vars are set to CXX then C, depending on what was found. # This mimics the behavior of the old language-oblivious FindMPI. set(_MPI_OLD_VARS FOUND COMPILER INCLUDE_PATH COMPILE_FLAGS LINK_FLAGS LIBRARIES) if (MPI_CXX_FOUND) foreach (var ${_MPI_OLD_VARS}) set(MPI_${var} ${MPI_CXX_${var}}) endforeach() elseif (MPI_C_FOUND) foreach (var ${_MPI_OLD_VARS}) set(MPI_${var} ${MPI_C_${var}}) endforeach() else() # Note that we might still have found Fortran, but you'll need to use MPI_Fortran_FOUND set(MPI_FOUND FALSE) endif() # Chop MPI_LIBRARIES into the old-style MPI_LIBRARY and MPI_EXTRA_LIBRARY, and set them in cache. if (MPI_LIBRARIES) list(GET MPI_LIBRARIES 0 MPI_LIBRARY_WORK) set(MPI_LIBRARY ${MPI_LIBRARY_WORK} CACHE FILEPATH "MPI library to link against" FORCE) else() set(MPI_LIBRARY "MPI_LIBRARY-NOTFOUND" CACHE FILEPATH "MPI library to link against" FORCE) endif() list(LENGTH MPI_LIBRARIES MPI_NUMLIBS) if (MPI_NUMLIBS GREATER 1) set(MPI_EXTRA_LIBRARY_WORK ${MPI_LIBRARIES}) list(REMOVE_AT MPI_EXTRA_LIBRARY_WORK 0) set(MPI_EXTRA_LIBRARY ${MPI_EXTRA_LIBRARY_WORK} CACHE STRING "Extra MPI libraries to link against" FORCE) else() set(MPI_EXTRA_LIBRARY "MPI_EXTRA_LIBRARY-NOTFOUND" CACHE STRING "Extra MPI libraries to link against" FORCE) endif() #============================================================================= # unset these vars to cleanup namespace unset(_MPI_OLD_VARS) unset(_MPI_PREFIX_PATH) unset(_MPI_BASE_DIR) foreach (lang C CXX Fortran) unset(_MPI_${lang}_COMPILER_NAMES) endforeach() hdf-java-2.11.0/config/cmake_ext_mod/FindSZIP.cmake0000644002344600011330000001517412401656217020221 0ustar byrnhdf # - Find SZIP library # - Derived from the FindTiff.cmake that is included with cmake # Find the native SZIP includes and library # This module defines # SZIP_INCLUDE_DIRS, where to find tiff.h, etc. # SZIP_LIBRARIES, libraries to link against to use SZIP. # SZIP_FOUND, If false, do not try to use SZIP. # also defined, but not for general use are # SZIP_LIBRARY, where to find the SZIP library. # SZIP_LIBRARY_DEBUG - Debug version of SZIP library # SZIP_LIBRARY_RELEASE - Release Version of SZIP library # message (STATUS "Finding SZIP library and headers..." ) ############################################ # # Check the existence of the libraries. # ############################################ # This macro was taken directly from the FindQt4.cmake file that is included # with the CMake distribution. This is NOT my work. All work was done by the # original authors of the FindQt4.cmake file. Only minor modifications were # made to remove references to Qt and make this file more generally applicable ######################################################################### MACRO (SZIP_ADJUST_LIB_VARS basename) if (${basename}_INCLUDE_DIR) # if only the release version was found, set the debug variable also to the release version if (${basename}_LIBRARY_RELEASE AND NOT ${basename}_LIBRARY_DEBUG) set (${basename}_LIBRARY_DEBUG ${${basename}_LIBRARY_RELEASE}) set (${basename}_LIBRARY ${${basename}_LIBRARY_RELEASE}) set (${basename}_LIBRARIES ${${basename}_LIBRARY_RELEASE}) endif (${basename}_LIBRARY_RELEASE AND NOT ${basename}_LIBRARY_DEBUG) # if only the debug version was found, set the release variable also to the debug version if (${basename}_LIBRARY_DEBUG AND NOT ${basename}_LIBRARY_RELEASE) set (${basename}_LIBRARY_RELEASE ${${basename}_LIBRARY_DEBUG}) set (${basename}_LIBRARY ${${basename}_LIBRARY_DEBUG}) set (${basename}_LIBRARIES ${${basename}_LIBRARY_DEBUG}) endif (${basename}_LIBRARY_DEBUG AND NOT ${basename}_LIBRARY_RELEASE) if (${basename}_LIBRARY_DEBUG AND ${basename}_LIBRARY_RELEASE) # if the generator supports configuration types then set # optimized and debug libraries, or if the CMAKE_BUILD_TYPE has a value if (CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE) set (${basename}_LIBRARY optimized ${${basename}_LIBRARY_RELEASE} debug ${${basename}_LIBRARY_DEBUG}) else (CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE) # if there are no configuration types and CMAKE_BUILD_TYPE has no value # then just use the release libraries set (${basename}_LIBRARY ${${basename}_LIBRARY_RELEASE} ) endif (CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE) set (${basename}_LIBRARIES optimized ${${basename}_LIBRARY_RELEASE} debug ${${basename}_LIBRARY_DEBUG}) endif (${basename}_LIBRARY_DEBUG AND ${basename}_LIBRARY_RELEASE) set (${basename}_LIBRARY ${${basename}_LIBRARY} CACHE FILEPATH "The ${basename} library") if (${basename}_LIBRARY) set (${basename}_FOUND 1) endif (${basename}_LIBRARY) endif (${basename}_INCLUDE_DIR ) # Make variables changeble to the advanced user MARK_AS_ADVANCED (${basename}_LIBRARY ${basename}_LIBRARY_RELEASE ${basename}_LIBRARY_DEBUG ${basename}_INCLUDE_DIR ) ENDMACRO (SZIP_ADJUST_LIB_VARS) # Look for the header file. set (SZIP_INCLUDE_SEARCH_DIRS $ENV{SZIP_INSTALL}/include $ENV{SZIP_INSTALL}/include/szip /usr/include /usr/include/szip ) set (SZIP_LIB_SEARCH_DIRS $ENV{SZIP_INSTALL}/lib /usr/lib ) set (SZIP_BIN_SEARCH_DIRS $ENV{SZIP_INSTALL}/bin /usr/bin ) FIND_PATH (SZIP_INCLUDE_DIR NAMES szlib.h PATHS ${SZIP_INCLUDE_SEARCH_DIRS} NO_DEFAULT_PATH ) if (WIN32) set (SZIP_SEARCH_DEBUG_NAMES "sz_d;libsz_d") set (SZIP_SEARCH_RELEASE_NAMES "sz;libsz;libszip") else (WIN32) set (SZIP_SEARCH_DEBUG_NAMES "sz_d") set (SZIP_SEARCH_RELEASE_NAMES "sz;szip") endif (WIN32) # Look for the library. FIND_LIBRARY (SZIP_LIBRARY_DEBUG NAMES ${SZIP_SEARCH_DEBUG_NAMES} PATHS ${SZIP_LIB_SEARCH_DIRS} NO_DEFAULT_PATH ) FIND_LIBRARY (SZIP_LIBRARY_RELEASE NAMES ${SZIP_SEARCH_RELEASE_NAMES} PATHS ${SZIP_LIB_SEARCH_DIRS} NO_DEFAULT_PATH ) SZIP_ADJUST_LIB_VARS (SZIP) if (SZIP_INCLUDE_DIR AND SZIP_LIBRARY) set (SZIP_FOUND 1) set (SZIP_LIBRARIES ${SZIP_LIBRARY}) set (SZIP_INCLUDE_DIRS ${SZIP_INCLUDE_DIR}) if (SZIP_LIBRARY_DEBUG) get_filename_component (SZIP_LIBRARY_PATH ${SZIP_LIBRARY_DEBUG} PATH) set (SZIP_LIB_DIR ${SZIP_LIBRARY_PATH}) elseif (SZIP_LIBRARY_RELEASE) get_filename_component (SZIP_LIBRARY_PATH ${SZIP_LIBRARY_RELEASE} PATH) set (SZIP_LIB_DIR ${SZIP_LIBRARY_PATH}) endif (SZIP_LIBRARY_DEBUG) else (SZIP_INCLUDE_DIR AND SZIP_LIBRARY) set (SZIP_FOUND 0) set (SZIP_LIBRARIES) set (SZIP_INCLUDE_DIRS) endif (SZIP_INCLUDE_DIR AND SZIP_LIBRARY) # Report the results. if (NOT SZIP_FOUND) set (SZIP_DIR_MESSAGE "SZip was not found. Make sure SZIP_LIBRARY and SZIP_INCLUDE_DIR are set or set the SZIP_INSTALL environment variable." ) if (NOT SZIP_FIND_QUIETLY) message (STATUS "${SZIP_DIR_MESSAGE}") else (NOT SZIP_FIND_QUIETLY) if (SZIP_FIND_REQUIRED) message (FATAL_ERROR "SZip was NOT found and is Required by this project") endif (SZIP_FIND_REQUIRED) endif (NOT SZIP_FIND_QUIETLY) endif (NOT SZIP_FOUND) if (SZIP_FOUND) include (CheckSymbolExists) ############################################# # Find out if SZIP was build using dll's ############################################# # Save required variable set (CMAKE_REQUIRED_INCLUDES_SAVE ${CMAKE_REQUIRED_INCLUDES}) set (CMAKE_REQUIRED_FLAGS_SAVE ${CMAKE_REQUIRED_FLAGS}) # Add SZIP_INCLUDE_DIR to CMAKE_REQUIRED_INCLUDES set (CMAKE_REQUIRED_INCLUDES "${CMAKE_REQUIRED_INCLUDES};${SZIP_INCLUDE_DIRS}") CHECK_SYMBOL_EXISTS (SZIP_BUILT_AS_DYNAMIC_LIB "SZconfig.h" HAVE_SZIP_DLL) if (HAVE_SZIP_DLL STREQUAL "TRUE") set (HAVE_SZIP_DLL "1") endif (HAVE_SZIP_DLL STREQUAL "TRUE") # Restore CMAKE_REQUIRED_INCLUDES and CMAKE_REQUIRED_FLAGS variables set (CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES_SAVE}) set (CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS_SAVE}) # ############################################# endif (SZIP_FOUND) if (FIND_SZIP_DEBUG) message (STATUS "SZIP_INCLUDE_DIR: ${SZIP_INCLUDE_DIR}") message (STATUS "SZIP_INCLUDE_DIRS: ${SZIP_INCLUDE_DIRS}") message (STATUS "SZIP_LIBRARY_DEBUG: ${SZIP_LIBRARY_DEBUG}") message (STATUS "SZIP_LIBRARY_RELEASE: ${SZIP_LIBRARY_RELEASE}") message (STATUS "HAVE_SZIP_DLL: ${HAVE_SZIP_DLL}") message (STATUS "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") endif (FIND_SZIP_DEBUG) hdf-java-2.11.0/config/cmake_ext_mod/grepTest.cmake0000644002344600011330000000445312401656217020426 0ustar byrnhdf# grepTest.cmake executes a command and captures the output in a file. File is then compared # against a reference file. Exit status of command can also be compared. # arguments checking if (NOT TEST_PROGRAM) message (FATAL_ERROR "Require TEST_PROGRAM to be defined") endif (NOT TEST_PROGRAM) #if (NOT TEST_ARGS) # message (STATUS "Require TEST_ARGS to be defined") #endif (NOT TEST_ARGS) if (NOT TEST_FOLDER) message ( FATAL_ERROR "Require TEST_FOLDER to be defined") endif (NOT TEST_FOLDER) if (NOT TEST_OUTPUT) message (FATAL_ERROR "Require TEST_OUTPUT to be defined") endif (NOT TEST_OUTPUT) #if (NOT TEST_EXPECT) # message (STATUS "Require TEST_EXPECT to be defined") #endif (NOT TEST_EXPECT) if (NOT TEST_FILTER) message (STATUS "Require TEST_FILTER to be defined") endif (NOT TEST_FILTER) if (NOT TEST_REFERENCE) message (FATAL_ERROR "Require TEST_REFERENCE to be defined") endif (NOT TEST_REFERENCE) message (STATUS "COMMAND: ${TEST_PROGRAM} ${TEST_ARGS}") # run the test program, capture the stdout/stderr and the result var EXECUTE_PROCESS ( COMMAND ${TEST_PROGRAM} ${TEST_ARGS} WORKING_DIRECTORY ${TEST_FOLDER} RESULT_VARIABLE TEST_RESULT OUTPUT_FILE ${TEST_OUTPUT} ERROR_FILE ${TEST_OUTPUT}.err OUTPUT_VARIABLE TEST_ERROR ERROR_VARIABLE TEST_ERROR ) message (STATUS "COMMAND Result: ${TEST_RESULT}") message (STATUS "COMMAND Error: ${TEST_ERROR}") # now grep the output with the reference file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) # TEST_REFERENCE should always be matched STRING(REGEX MATCH "${TEST_REFERENCE}" TEST_MATCH ${TEST_STREAM}) STRING(COMPARE EQUAL "${TEST_REFERENCE}" "${TEST_MATCH}" TEST_RESULT) if (${TEST_RESULT} STREQUAL "0") message (FATAL_ERROR "Failed: The output of ${TEST_PROGRAM} did not contain ${TEST_REFERENCE}") endif (${TEST_RESULT} STREQUAL "0") STRING(REGEX MATCH "${TEST_FILTER}" TEST_MATCH ${TEST_STREAM}) if (${TEST_EXPECT} STREQUAL "1") # TEST_EXPECT (1) interperts TEST_FILTER as NOT to match STRING(LENGTH "${TEST_MATCH}" TEST_RESULT) if (NOT ${TEST_RESULT} STREQUAL "0") message (FATAL_ERROR "Failed: The output of ${TEST_PROGRAM} did contain ${TEST_FILTER}") endif (NOT ${TEST_RESULT} STREQUAL "0") endif (${TEST_EXPECT} STREQUAL "1") # everything went fine... message ("Passed: The output of ${TEST_PROGRAM} matched") hdf-java-2.11.0/config/cmake_ext_mod/hdf.ico0000644002344600011330000005600612330505415017057 0ustar byrnhdf è†(n00¨– ¨>hæ00 ¨%N!  ¨öF hžW( @€yu ÛQ74«3hŽ2>´CXµSlÅn¥’Yͱ¸‡ñ´©¥Ö¡Ú˳øøõÿÿÿÿßßÝýßýßßÝýÿßßßÿýÿÿßÿÿßÿÿßÿßßýýýÿýÿÿßßßßßÿßßÿýÿÿÿÿýýÿÿÿÿÿýÿÿýÿýýÝÝÿÿÝÝÝÝßÝÝÝÿßýÿÝÝÝýÝÝÝÝÝÝÝÝÝÿßÿÜÝßÝݽ½ÝÝÝÜÝýÿÿß»½ÝýÛ¸ˆ»ÝÝ»½ÿýýÿeŒÿݸDDE‹Û…‹ÝÿÿßR[ÿýËeDDFˆRkÝßßÿRkßýÛ»¸eDEBkÝÿÿßTlÝÝÝÝÍ»e""[ÝÝÿßRkÝÝÝÝýÝÈB"kÝÝýÿS[ÝÝÝÝÝýÛc#YÝÝÝÝS9™™™œÍý݃#W™™œÝp30s0yÍÝý—333{Ýppÿü§yÍp™™p­ÝÜ™™œÝp|Íܧ­ÝÚqzÍÝÝÝÿݧ­Ý§ÝýÝÝÝý¡ªªªÚÜÝÿý¡ªªªªÝß¡Ýý¡ª­ßÝÚ¡¡¡¡¡¡¡¡¡¡ªÚÝßÝݪªªªªªªªªª­ÝÝÿÿýÝÝÝÝÝÝÝÝÝÝÝÿßýÿßýÿßýÿßýýÿßÝßýÿßýÿßýÿßýÿÿßÿÿÿßýÿßýÿßýÿßýÿßýýßýÿßýÿßýÿßýÿßýÿßÿßýÿßýÿßýÿßýÿßýÿ( À×G+6¥-eŒ.S¯ItÉv’:™¢cÙ–|»»öž–£Ö ÷Á¸øøõÿÿÿÿÿüüüüüÿÏÏÿÿüüÏÏÏÿÌÌÌÌÏÌÿϬÌʬ̬ÌÏ:Ï£J:Ïÿ:üʪ3ÌÏ4ÌÌÌ£ÌÌ"fhÌÆ"fŒUfU¼Æ%fŒÌp¼¼ÏÌpw»» ü»ÌÉ™™™™›ÏÿÌÌÌÌÌÌüÿÏüÿÏüÿüÿÏüÿÏüÿ(0`€ g|uth~#zz%é ð íØ*Ç6 Þ.À?Ö:è ê'ò"å3ß;!î+&ñ-)ì6+ó4,î?4ò51›Q \\¨I µC ºL®U¼Rƒk”f…p¡a¤]"¶U$šk*†v)r/Ž|3˜x5£a#­i4¸e5®s8ÆFÖAÊI#ØG(ÍR/Ã[3×Z9âC+ëH8óN>åR:Åc9¯tA·wGóJEëZJôRGñ[SÉmL×fIÉtLÉ{WØvXã`HèjV÷e]÷eaçwdôtkö{t?“4š!+¥)2£)/®57¬66°:JL"Z‡#F—'U‘+Wš4h…)rƒ,eŽ1y‡4j—=p’<@ -F¥7=µBgBz–DTªAC´DD¶HK·MI¹LQ´KM¹R]µWS»VV¼YZ½\e¦Kk«R©]c´Yu¸f\Á_^Áb`ÂbfÄhjÃinÈoqÁloÈrqÆssÈvvÉxyÉ|‚„4ˆ‰@•ŠF†—L™‘O‡žT˜”T©‹S´‹[‹¡Y¨šb³˜g‡®e”§d„±dŸ®q½{—³t¤¤j¨ªs·¢s¤±x‚ZÄŠdÑ„b–kÚsÖ˜zå€hê‹yô…zâ’|’Á}~Ì€¦»…»²‡Ùž†ùˆ‚陈ô•Šú˜’È­ŠÔ¡…ź–Ö´™ç§”÷¡šÖº¢ø¨¤ì³¦÷±«ì½°ú·³…͆ώ“ËŒƒÐ…‡Ð‰ŠÐ‹ŽÓ‘’Ô’˜Ô——Õ˜™ÕšœØœ¨Á«È”¸Ç›ŸÚ¡»Ê¡¯Ð¢¢Ú£¦Û¨«Ü¬»Ö®»Þ·¬à­³á³¼ä¼ÅÁœÈ˨ÚÁ¨ÆÑ­ßÏ»ËÖ·ÖÔ¹æÅ¶öÄ»àѾÀ⽿æÀÍßÂØÝÄêÎÀûÈÅèØÊ÷ÑÌéÞÓùÙÖÃæÃËäÇÅèÅÍêÍÛäÎÏëÐÒìÒÝéÔ×îØÛîÙÝñÝâàÎæèØöáÜàñßêíâúéèâòâìñçìõëîøîõòìôöñûôóôùôúùöûûûÿÿÿþþþÿþÿþþÿþÿþÿþÿþþþÿþÿþÿþÿþþþÿþþþþþþþþþþþþÿþþþÿþþþÿþþþþþÿþþþþþþþþÿþþþþþþþþþÿþþþÿþÿþÿþÿþÿþÿþþÿþþÿþþþÿþÿþþÿþÿþÿþÿþþþÿþÿþÿþÿþþþÿþþþþþþþþþþþþÿþþÿþþþþþþÿþþþþÿþþþþþþþþÿþþþþþþþþþÿþþþÿþÿþÿþÿþÿþÿþþÿþþÿþþþÿþÿþþÿþÿþÿþÿþþþÿþÿþÿþÿþþþÿþþþþþþþþþþþþÿþþÿþþþþþÿþþþþþÿþþþþþþþþÿþþþþþþþþþÿþþþÿþÿþÿþÿþÿþÿþþÿþþÿþþþÿþÿþþþÿþþÿþÿþþþÿþÿþÿþÿþþÿþÿþþþþþþþþþþþÿþþÿþþþþþþÿþþþþÿþþþÿþþþþþþþþþþþþþþÿþþÿþþÿþþÿþÿþÿþþþÿþþüüüüüþÿþþþÿþþýüøøøøøüüüþþÿþþþþüüøüþþþþþþþþÿþþÿþþõîîõ÷üþþþÿþþüøõìéêêììõ÷üýþþþþü÷îìõøýþþÿþÿþÿþþÿþþçÛÏæìøþþþþþýøîæÎÉÉÊÊÏäêî÷üüýø÷ìÛÎæòøýþþþþþÿþþÿþþͽ½ÅÛõýþÿþþøõæÅ¹~~€¹¼ÈÎÛêõöõêϽ»Èæõüþþþÿþÿþþÿþþºwu~Èìýþÿþý÷êÍ€mbbbgimwzºÅÚêçÏ¿xnÊé÷ýÿþþþÿþþÿþþzbbn¼éüþÿþý÷éÉiSSSSSSbgnz¾ÊÍÁgSu¿äõþþÿþþÿþþÿþþxSQkºçüþþþþøîÛ¿~vuonkgbSSiw¢wSQn½ÛõüþÿþþÿþþÿþþxSSk»çúþþÿþüøîÛÉÀ½·¶€yngSSbinohQSn½Ûõüÿþÿþþþþÿþþ{RSm»çüþþÿþþýøîçæÛÏÎÊÀ¶}ogbSSfSOSo¼ÛõüþþÿþÿþþÿþþyRbm·çüþþþþþþýø÷÷õõòíêäÊ·zjSRPQORu½Ûòýþÿþþþþþÿþþ{aal¸éøþþþþÿþþþýþýþýüø÷êϾ{jaPPPRs½Úòüþþÿþÿþþÿþþtaas¸å÷üýþþþýýýþþþþÿþþü÷îÚ¸te`NNas¸ÌîøýýþþþþþÿþþtYYp‘Ëèëðóðóóððóö÷úýþþþýúîË¡qaMMWq¡ÇÜëòððòóöùüþþ\Xcr£ÃÄÆÆÆÆÆÆÆÆÓÝð÷ýþþþþöÜÃcUTXcr¡ÂÄÄÆÄÆÓÕèóýþŽ[V\_„ŠŠŠŠŠŠŠŠŠŽ’ÄÕðýþþÿþùèÆ’^VVV\^d†ŠŠŠŠŠÂÓèùþŽ[[]]]]]]][[]„–ÑðúþÿþþùëÑ–dZ[[_]]_]_„ÆÝùþ‹'"‚“ÐïúþþþýùðÑ”‚]]„”ÐÝöþ‹'!')ƒ……‡‡‡…ƒ)"")ŒÐïúÿþÿþùàÐŒ*" "')ƒ……‡‡‡‡“¤Ñâùþ‰&!(ˆ•¬¬¬¬¬¤•ˆ(!(Œ­àùþÿþýöÙª‰(!*ˆ•¤¬Ð¬Ð¬ÑÖïóúþ‰++.šÒàðâðâÙ°›;+,˜­àûÿþýûâ°š;##<•°Ùâððñðóùùýýÿ—%%<œÞôûûûûñ׫C%-™­àùþýùñ´«C-%<«×ñûûýýýþýþþþþD: àûýþþûñ×¥C%4™­àôûôã´¥™:C¥×ñùýýûûýýýýþþE1/5 áûÿþÿûô×§B13E§´ááØ²§E5// /A ²áññôôôñôôôôûG0 5žáûþÿþûñاB22F§¯®žJF20 9¨³ØØØØØØßßßáñG9žßûþþÿþñب> 7FHGG96  6>JŸ¨©¨©¨¨¨§¯³Ø@7Ÿßûþþþûñب@   8?@@@@@@@@HK¯H8Ÿßûþþÿûôß©@8LL??H©áûþþÿýôá±L=?Ÿ±¦¦©µñûþÿþþûñ߯LIIIHIHHHKHHHIHIHIIIIIIIIIHIIIKŸ±ßµµµãôþþþþþýûñß±¯©©©©©©©©©©©©©©©©©©©©©©©©©©©©±³ßôãããôûþÿþÿþÿûûããáßßßßßßßáßáßßßßßßßßßáßßßßßßßßáãôûûûûûþþÿþþþþþýûûôôôôôôôôôôôôôôôôôôôôôôôôôôôôôûûûþþþÿþÿþÿþÿþÿþÿþÿþþÿþþÿþþÿþþÿþþÿþþÿþþÿþþÿþþÿþþÿþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþþþþþÿþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþÿþþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþÿþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþÿþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþ€þþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþ€þþ( @€h}wr|r~u#}x$åéèÒ,Ø- Ã; Í?Ü1Ý:ç#í(ê%é)à2ßõD6âS:¶zDµ{K¹SñKDïTCå[BðQ@ðXKÔdDÙgH×jJÄpHÉrIØnPË{VË{\Ùv\èjVèmZôi^çp[òobìwhì{lùslúxlørpö~y<–-Ÿ#/©/7£,-¬24¬46²:9²<MŒ RŽ&XŒ'Eš)M›1a€!j‚'i…*s‰3xŠ4uŽ9z;h—>|’>@¦5R¡8>´CjDQ¯FB´CD¶HC¸HI¸NMºQR¹RY¾Zo­Wm­X}£TdµXa¾bh¹ao¾ir±`\À`dÂgfÃhjÃkqÆrrÉtzË|„ƒ5ƒ†9“ŽKšMŒ™Q›P”™V¨†N­W»„U¿†^ª•] œ^Š V­˜b‡¬e­j‚ºmž¸~µ©y¡°tË‚[Ôqà€hò…yø}͸­€©º…«½ˆ¶´†¸°…½½“枈ò–Šú‘ŒÄ©„Õ·œé§˜íªœõ£—õ¤™Û»£Þ¿«ù¦¢õ®¤ú¨ â¹£ä½¬ì¼¯ô¹­é¿±úµ°õ»³ø¸²ü½¸ƒÍƒŠÏ‹‡ÐŠŠÑŒ”ו—Ö˜˜Ô˜šÙ›§ÄŽ¯Â¶Â“¶Çš¾ÈŸ«Ð ¢Ù£­Þ­¶Ôª³Ý°¾Ü´®à®³à´ºãºÄÀšÌȨÒÀ¤ÆÓ°ÍÔ´ÙÖ¾ÐÛ¾ëõóļúÀ¹Àâ¾ûÆÄõÏÇæÛËéÜÎüÑÏûÙÖùÝÙÄæÄÉçÉÇèÈÊêÊÝäÐÒëÑÚîÚÝðÞáäÒ鿨äêÛðãÛúàÜìíâöåáúãàóêãúéæóíèûìëãòãìñäìôëíøíñòëôöñûòòôùôùùöûûûþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüüýþþþþþþýüüüüþþþþþþýüýþþþþþþþþþèçèüþþþþüèäãäæèøýþþüõæõüþþþþþþþþÌÀÌèþþþýõͼ›¹¼ÇÎæõøèνÍèüþþþþþþþoäþþþøã¹mVWhnz€ÈäΛo€áøþþþþþþþqTzÎþþþüæ¾zoolWWk|»»qT|Í÷þþþþþþþqUzÙýþþþøæÌÇ¿ºpWWlplT|Í÷þþþþþþþqUvÙýþþþþúõèçæáÇ€pUURR}Í÷þþþþþþþufwÙýþþþþþþþþþüõÙ¹jSQSxÊöþþþþþþþr\rÉëööùöóùúýþþþ÷Ë’gP[yÆæöööøúþþtZd‘žžÂžžÂÒéýþþþåÁiXYi“žžžÄÕîý…^aeeeccae•ÓùþþþëÅ„]]_`bcebŽÃéý†(‚‚(Ðùþþýêσ(‚‚‚‚‡¡éýˆ$)œ  ”Œ)%‰ÑóþþþÜ¥*#+Œ”  ŸÏÔîþ5"4«ìññݦ6&Š«ôþýò¬‹&"ЦÝñññùûýþ?!@Öûþþò±C'B°òýï´—, –±ïþþýþþþþ< =×þþþò²D.>¢×ר˜/- -A§Ûíííííïò99Øýþþò³H0EKF3  0J£©ªªªª®Ú:8·ýþþô·G777777;™G2GØýþþûÚOI­¤¯ßþþþýðµšNLLLMMMMLMMMNNNLLLNš­ßÞßûþþþþýíÚ¸¸¸¸ØØØØ¸¸¸¸¸¸¸¸¸¸ØÚßýýþþþþþþþþýûûûûûûûûûûûûûûûûûûûýûþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþ( @Í5 î%î$î(í+í,"ò.(î1&ñ;6ò<7ð=8ªNi”|7¶e4»i=ÙL-ÛQ3ñJ:ñdXäxc9%3­6X‡!s’<s–Au”@W«EY©F@²ABµGHµGF¸KI¹NN¹OS½US½XtÉv€9–‚=˜ZŸš\ޤ_œœ`¯œi¦b”¤a”¦d”²p¤µ}ÏœЛxë‹zè}Ï ~»»õƒë’‚è—„ú–‘ú–”ö™“û™‘úšä¾®ú±®ú·´õº°‰Ï‰‘LJ“LjŽÑޓՖ–Õ˜²Á’¥Û¦¦Ü§«Ü¬¬Þ­³ß³»ß¶¾æ¿÷Á¸êÔÇáÛÉùÑÍûÛ×ÃåÃÉêÊÖî×ÙïÙæéÛòéãðìäöïëèòäìðæïñèéõéî÷îñðèöóîðõìõ÷ðúòðüóòúôóü÷öòøòõøôøøóøùöúúúüúùûüúüüütް©ÏÂðÑÿØÿ1ÞÿQãÿqéÿ‘ïÿ±öÿÑÿÿÿ/&PAp[t°ŽÏ©ðÃÿÒÿØ1ÿÝQÿäqÿê‘ÿð±ÿöÑÿÿÿ/P"p0>°MÏ[ðiÿyÿŠ1ÿQÿ¯qÿÁ‘ÿÒ±ÿåÑÿÿÿ/Pp ° Ï ðÿ ÿ>1ÿ\Qÿzqÿ—‘ÿ¶±ÿÔÑÿÿÿ/Pp!+°6Ï@ðIÿZÿ1pÿQ†ÿqœÿ‘²ÿ±ÈÿÑßÿÿÿ/ P6pLb°xÏŽð¤ÿ³ÿ1¾ÿQÇÿqÑÿ‘Üÿ±åÿÑðÿÿÿ,/KPip‡¥°ÄÏáððÿò1ÿôQÿöqÿ÷‘ÿù±ÿûÑÿÿÿÿ/-P?pRc°vψð™ÿ¦1ÿ´QÿÂqÿÏ‘ÿܱÿëÑÿÿÿÿ/Pp!°&Ï,ð>ÿX1ÿqQÿŒqÿ¦‘ÿ¿±ÿÚÑÿÿÿÿsrsssssssssssrrsrsssssssssssssssorsspoprsspsssssQYsrZLMXbcQZrsss#HrmN! %L$ImsssGrsbWOD"GlsssFfggnrlPE_gor./.1[s`0*-Ja &)(&'Ts], &(+7d3^\2Sj@ 6\enr5sh:94CRRU8qi= BUsqV?;;>;><<;¶Cÿ=µBÿ?µDÿC¶HÿJ¸OÿR½Wÿ^ÂcÿoÈrÿ…ІÿŸÙŸÿ¾ä¾ÿÒêÒÿÏêÏÿ¸ä¸ÿ”Ö•ÿeÄiÿV½ZÿuÈxÿªÜ«ÿÐêÐÿéõéÿøúøÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®.°/°3±4î;´@ÿV½[ÿÒÿÏëÐÿôùóÿüüûÿüüüÿüüüÿ÷ú÷ÿéôéÿÎêÏÿ§Ü¨ÿtÉwÿIºNÿ5²;ÿ3±9ÿ3°9ÿ3°9ÿ5°;ÿ6±;ÿ:³?ÿD·HÿV¾WÿpÇqÿ“Ô”ÿ¬Ü®ÿ­Þ®ÿ™ØšÿvÊwÿE·Jÿ7±=ÿ[¾_ÿ—Õ˜ÿÄæÄÿäóäÿ÷ú÷ÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®$¬%°(­*î1°6ÿMºRÿ‡Ð‰ÿÍêÌÿôùñÿüüúÿüüûÿüüüÿùûùÿï÷ïÿÝñÝÿ¿æÀÿ–Ö—ÿrÈuÿ_Ácÿ[¿_ÿX½\ÿS»WÿN¸QÿCµGÿ;²>ÿ7±9ÿ:²;ÿH¸HÿaÂcÿvÊzÿ~Ì€ÿwÊxÿ^À`ÿ7±<ÿ/®5ÿU¼YÿÓ’ÿ¿å¿ÿâòâÿöúöÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®%ª%°)¬*î2°6ÿNºSÿˆÐ‰ÿÍêËÿôùðÿüüúÿüüûÿüüüÿúüúÿöûöÿîøîÿÜñÜÿÀæÀÿ¦Û¨ÿ˜Õ™ÿ“Ò”ÿÏŽÿ…͆ÿzÉ|ÿiÃkÿW¼XÿF¶Gÿ9±9ÿ6±7ÿ>µAÿJºNÿS¼WÿX¼YÿK·Mÿ1®6ÿ1®6ÿW½[ÿÔ‘ÿ¾å¾ÿáòáÿöúöÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®'©%°+«+î6¯8ÿRºUÿŠÐ‹ÿÎêÌÿôùñÿüüúÿüüûÿüüüÿûüûÿúüúÿ÷û÷ÿîøîÿÞñÞÿÎêÎÿÅæÅÿÁäÁÿ¼á¼ÿµàµÿ«Û«ÿ›Õ›ÿ‡Í‡ÿpÅpÿX½XÿF¶Fÿ;²<ÿ8°9ÿ;°<ÿ@±Aÿ;¯<ÿ,ª/ÿ3®7ÿZ¾\ÿÔ‘ÿ½å½ÿáòáÿöúöÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®+¥%°1¨+î<­9ÿW¹WÿŽÏŽÿÏêÎÿôùóÿüüûÿüüûÿüüüÿüüüÿûüûÿúüúÿöúöÿðøðÿêõêÿæóæÿäòäÿâñâÿàñàÿÚîÚÿÑêÑÿÂäÂÿ«Ü«ÿŽÑŽÿoÅnÿR¸Oÿ<®9ÿ3©0ÿ2©0ÿ.¨-ÿ)¦)ÿ6¬7ÿ^½^ÿ‘Ó‘ÿ½å½ÿáòáÿöúöÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®2 %°7£+îB©9ÿ]µWÿ‘ÍÿÎèÌÿòøñÿùûùÿúüúÿûüûÿûüûÿüüûÿüüúÿûüúÿúûùÿùûùÿøúøÿøúøÿøúøÿ÷ú÷ÿõùõÿð÷ðÿçóçÿÔìÔÿºâºÿ˜Ô—ÿqÁlÿP±Gÿ<§2ÿ2£)ÿ,¡%ÿ+ $ÿ<¨5ÿbº]ÿ“Ðÿ½â»ÿàñßÿõúôÿûüúÿüüúÿüüûÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®;™%°@+îJ£7ÿb°Tÿ’ȉÿËäÇÿìõëÿôùôÿöûöÿùûøÿúûùÿûûùÿûûøÿûû÷ÿûûøÿûûúÿûûûÿûüûÿüüûÿüüüÿûüûÿùúùÿõøõÿëõëÿÜïÛÿÀâ½ÿ˜Íÿq¹aÿTªAÿ@ -ÿ5›"ÿ4š ÿD¢2ÿg´Zÿ”ÊŒÿ»Þ·ÿÝîÛÿñùðÿùûöÿúûöÿûûøÿûûùÿûûûÿûûûÿüüûÿüüüÿüüüìüüü®E’$°I”(îQ›3ÿe¦Kÿ¼yÿ½Õ¯ÿØåÎÿàé×ÿâëÙÿåìÜÿæìÝÿèìÝÿèìÛÿèìÚÿçìÛÿèíßÿêïäÿïòêÿôöðÿøùöÿûûúÿûüûÿúûúÿ÷ú÷ÿòøñÿÝìÙÿ¹Ø­ÿ’Á}ÿn­TÿPž3ÿ@•!ÿ?“ÿLš.ÿiªQÿ޾}ÿ¯Ð¢ÿËßÂÿÝéÔÿäìÙÿæìÚÿçìÛÿçìÝÿéîâÿíñçÿòôîÿöøôÿúúùìüüü®R‹!°TŒ%îX‘,ÿd™=ÿ¨\ÿ ¹€ÿ³Ä•ÿ¸Ç›ÿ¹ÉÿºÉŸÿºÉ ÿ¼É ÿ½Éžÿ¼ÉÿºÉÿ¼Ì¢ÿÅÓ°ÿÔÞÃÿâè×ÿðòêÿùù÷ÿüüüÿüüüÿüüüÿúûùÿëñçÿÏßÂÿ«È”ÿ„±dÿ_›9ÿL"ÿJÿS’*ÿgBÿª_ÿ”·xÿ¨Áÿ´Ç™ÿ¸ÉÿºÉÿ¹ÉÿºÊ ÿÀϪÿÎÙ¼ÿÝäÏÿêîãÿö÷óìüüú®_‚°_‚ î_†$ÿdŠ-ÿp’<ÿ‚šMÿŒŸVÿŽ¡YÿŽ¡Zÿ¡[ÿŒ¡[ÿ¡[ÿŽ¡Zÿ¡Xÿ‰ VÿŒ¥]ÿœ²tÿµÅ–ÿÎØ¹ÿæëÜÿö÷óÿüüüÿüüüÿüüüÿûûúÿðóëÿÛãÎÿ½Í¤ÿ–²qÿm˜?ÿXˆ#ÿV† ÿ[ˆ&ÿeŽ1ÿo”=ÿyšHÿ‚žSÿ‡¡XÿŠ¡Zÿ‰¡Zÿˆ¡Yÿ‰£[ÿ•­kÿ¬¾ŠÿÆÑ­ÿÝäÏÿðóëìúúù®ly°lzîk|ÿk~$ÿp‚*ÿw†1ÿ{‰5ÿ|‰6ÿ{‰6ÿy‰6ÿx‰6ÿy‰5ÿzˆ4ÿx†0ÿs„+ÿv‰1ÿ‰™Nÿ¦²yÿÅ˦ÿâåÓÿõõñÿüüüÿüüüÿüüüÿûûúÿòóíÿâäÓÿÈΫÿ£°wÿ{’Aÿf€#ÿc}ÿf~"ÿj'ÿn„+ÿq‡/ÿu‰3ÿv‰5ÿw‰7ÿv‰7ÿt‰5ÿtŒ7ÿƒ˜KÿŸ®qÿ½Æ›ÿÙÝÅÿîðçìúúù®yq°zqîysÿzu!ÿ|z&ÿ.ÿƒ1ÿƒ3ÿ„3ÿ€„3ÿƒ2ÿ€0ÿ€-ÿ}{&ÿwvÿyy ÿ‹Š>ÿ¦¦mÿÄÃÿááÏÿõõðÿüüüÿüüüÿüüüÿûûúÿóòìÿäãÑÿÍÊ©ÿ¬ªuÿˆ‰@ÿuw"ÿrsÿstÿwx#ÿz{'ÿ|+ÿ~‚0ÿ~ƒ3ÿ„5ÿ~„6ÿ|„5ÿ|†7ÿŠ“Kÿ¥ªqÿÂÛÿÜÜÅÿïïçìúúù®†h°†jîˆlÿŠq$ÿ|3ÿ•‰Eÿ™‘Oÿš“Rÿš”Rÿ™”Sÿ™’Qÿ—ŽKÿ”‡BÿŽ|3ÿ…pÿ„nÿ“~6ÿ¬œfÿǼ˜ÿãÞÍÿõôïÿüüüÿüüüÿüüüÿûûúÿóðéÿãÜÉÿÍÀžÿ°žjÿ“}9ÿƒkÿ€hÿ‚lÿˆu)ÿŽ~5ÿ“‡Aÿ—Kÿ˜“Rÿ™”Vÿ˜”Wÿ—•Vÿ—˜Xÿ¢¢hÿ·¶ˆÿÎˬÿãáÏÿóòëìúúù®^°’aî–fÿr/ÿªŠPÿº¦xÿöÿÅ»–ÿż—ÿŽ˜ÿù”ÿ¾°‡ÿµ¡rÿ©‹Tÿšq0ÿ•eÿŸs4ÿ¶“dÿη—ÿæÛÌÿöóïÿüüüÿüüüÿüüüÿûúùÿñëäÿßÏ»ÿÈ­Šÿ±ŠXÿœl-ÿ\ÿ\ÿ’gÿy7ÿªŽVÿ¶¡pÿ¾±‡ÿú•ÿŽšÿĽšÿþšÿÃÁ›ÿÊÈ¥ÿÖÔ¹ÿãàÎÿîìâÿ÷öóìüüú®œU°žXî£` ÿ®s8ÿ–kÿÚÁ¨ÿèÚËÿêáÕÿêâÖÿêã×ÿèÞÒÿàÑ¿ÿÓ¹ ÿšuÿ¯tAÿ¥_$ÿ­i4ÿÀŒdÿÕ³—ÿéÙÌÿ÷òïÿüüüÿüûúÿûø÷ÿùóðÿíÞÕÿÚ»¤ÿÄ–pÿ²uCÿ¤\ ÿœPÿ›R ÿ¡aÿ°|EÿÞtÿÓºÿàѽÿèßÒÿêãØÿêäØÿêåØÿêèØÿìëÜÿðïåÿôóìÿø÷ôÿúúùìüüü®¨K°«Pî±X ÿ¼n=ÿÒšyÿêÎÀÿøíéÿûôóÿûõõÿûöõÿøñïÿðáÙÿãŶÿÑ …ÿ¾rJÿ³W'ÿ¸b4ÿɈdÿÛ±—ÿìØÌÿøòïÿüúúÿû÷öÿøîëÿóÞ×ÿæÄ´ÿÔŸƒÿÂ|Tÿµa0ÿ­Pÿ¨H ÿ¨J ÿ¯Zÿ¿{LÿÒ¤„ÿãÆ´ÿñáÙÿøòïÿûöõÿû÷õÿûøõÿûúõÿûû÷ÿûûùÿüûúÿüüûÿüüüìüüü®¶A°¹Fî¾NÿÉf=ÿÛ—{ÿîÑÆÿúòðÿüùùÿüúúÿüúúÿúõôÿóäÞÿèÆºÿÚŸˆÿÉmLÿ¿P'ÿÃ[3ÿÑ„bÿà­”ÿîÔÇÿøìèÿûóòÿùëéÿôÙÒÿê½°ÿÞ‡ÿÏ{ZÿÂ`5ÿºOÿ·HÿµCÿµC ÿ¼RÿÉtLÿÚ ‡ÿèĶÿôáÚÿùòðÿüööÿü÷öÿü÷öÿüøöÿüøöÿüø÷ÿüøøÿüùøÿüùùìüùù®Å8 °Ç=îËEÿÔ^;ÿâ’{ÿñÑÈÿúôòÿüüüÿüüüÿüüüÿúöõÿõäßÿíÆºÿ✈ÿÓiLÿÊI&ÿÍR/ÿØxYÿã„ÿî¾°ÿõÑÊÿöÓÍÿóÇ¿ÿí±¤ÿä“ÿÚvZÿÐ\8ÿÇJÿÂAÿÀ?ÿÀ< ÿÁ; ÿÇHÿÒhFÿà’|ÿ뵨ÿôÑÉÿøáÜÿúæâÿúæâÿúæâÿúæâÿúæâÿúæâÿúçãÿúéæÿúëéìúëê®Ô.°Ö2 îØ;ÿÞW9ÿèŽzÿôÏÈÿûôóÿüüüÿüüüÿüüüÿûöõÿ÷äßÿòĹÿ陆ÿÝeKÿÖC$ÿ×F&ÿÝdHÿå€hÿì—‡ÿÿÿê‹yÿåwaÿà`FÿÛN/ÿÖAÿÐ9ÿÌ6 ÿÉ5 ÿÉ3 ÿÍ1ÿÓ<ÿÛW:ÿåzfÿ홋ÿó²§ÿöÁ·ÿ÷żÿ÷żÿ÷żÿ÷żÿ÷żÿ÷żÿ÷È¿ÿ÷ÌÅÿ÷ÑËì÷Óήâ$°ã) îã3ÿæP7ÿí‰xÿöÍÆÿûóòÿüüüÿüüüÿüüüÿûöõÿùãßÿö¹ÿï–†ÿæaJÿß;!ÿß7ÿãK4ÿè]Iÿëk[ÿìn_ÿéeSÿäT=ÿáE+ÿà7ÿß.ÿÞ+ ÿÛ+ÿØ*ÿÔ+ÿÔ)ÿØ(ÿÝ/ÿãB+ÿé\Kÿíteÿñ‡{ÿó“†ÿô–Šÿõ–Šÿô–Šÿô–Šÿô–Šÿô–ŠÿôšŽÿô •ÿô§ìô«¡®ê°ë# îë-ÿíK6ÿò„wÿøÊÄÿûñðÿüûûÿüüüÿüüüÿûöõÿúãàÿù¼ÿô”‰ÿì\Lÿç1ÿæ%ÿé.ÿì7+ÿî?4ÿî@5ÿê9+ÿæ.ÿå&ÿæ ÿæÿçÿæÿäÿá ÿá ÿäÿç# ÿé-ÿì;-ÿíH=ÿïSIÿñZQÿò[Sÿó[Sÿó[Sÿñ[Sÿð[Sÿð[Sÿð_Uÿðf[ÿðnaìðsc®ð!°ñ'îñ2 ÿóN>ÿõ†{ÿùÉÅÿüðïÿüúúÿüûûÿüüüÿüööÿûäãÿûÅÂÿ÷—“ÿñ_Vÿí0&ÿíÿïÿò ÿò#ÿò$ÿï#ÿì ÿìÿîÿï ÿð ÿï ÿï ÿî ÿî ÿï ÿï!ÿî#ÿî'ÿí*"ÿî+&ÿð-)ÿò-*ÿó-*ÿò-)ÿð-)ÿï-)ÿï-)ÿï1+ÿï8.ÿî@0ìîD3®öD8°öH=îöQEÿ÷i]ÿø˜ÿûÑÍÿüòñÿüúúÿüûûÿüüüÿüøøÿüêéÿüÑÏÿúª§ÿöwqÿóJEÿó50ÿõ2.ÿö0.ÿö1.ÿö1.ÿó3-ÿò4-ÿó6,ÿõ6,ÿõ6,ÿö6,ÿö6,ÿö7,ÿö9,ÿö:,ÿö:,ÿõ9,ÿó8-ÿò6.ÿñ5/ÿñ30ÿò21ÿô20ÿõ2/ÿô2/ÿò2/ÿñ2/ÿñ2/ÿñ61ÿñ>5ÿòF:ìñL<®ù~x°ù€zîù†~ÿú–ÿú·±ÿûßÜÿüöõÿüûûÿüüüÿüüüÿüùùÿüòñÿüäáÿûÈÄÿùŸ›ÿø{wÿøieÿùe`ÿùc^ÿùc^ÿùc^ÿød^ÿøf^ÿøh^ÿùi^ÿùj^ÿùh^ÿùg^ÿùg^ÿùh^ÿùh^ÿùh^ÿùh^ÿøg^ÿøf^ÿ÷e`ÿ÷daÿøcbÿøc`ÿùc^ÿùc^ÿøc^ÿ÷c^ÿ÷c^ÿ÷hbÿ÷qjÿ÷zsì÷x®ü°­°ú±®îû´°ÿû¾¸ÿüÒÎÿüëéÿüùùÿüüüÿüüüÿüüüÿüûûÿüøöÿüòîÿüàÜÿûÄÀÿû©§ÿûœ™ÿû™”ÿû—’ÿû—‘ÿû—‘ÿû˜‘ÿû™‘ÿûš‘ÿûœ‘ÿûœ‘ÿû›‘ÿû™‘ÿû˜‘ÿû˜‘ÿû™‘ÿû™‘ÿû˜‘ÿû˜‘ÿû˜’ÿû˜”ÿû˜•ÿû—–ÿû—”ÿû—’ÿû—‘ÿû—‘ÿû—‘ÿû—‘ÿû›–ÿû£Ÿÿû«©ìú¯®®ü×Ö°û×ÖîüÙ×ÿüÞÛÿüèåÿüôóÿüûûÿüüüÿüüüÿüüüÿüüüÿüûúÿüøöÿüðíÿüàÞÿüÒÑÿüËÉÿüÉÆÿüÈÅÿüÈÅÿüÈÅÿüÈÅÿüÉÅÿüÊÅÿüËÅÿüËÅÿüÊÅÿüÉÅÿüÈÅÿüÈÅÿüÈÅÿüÈÅÿüÈÅÿüÈÅÿüÈÅÿüÈÆÿüÈÇÿüÈÇÿüÈÆÿüÈÅÿüÈÅÿüÈÅÿüÈÅÿüÈÅÿüËÇÿüÏÍÿüÔÓìü××®üðð°ûïïîüñðÿüòñÿüõõÿüùùÿüüüÿüüüÿüüüÿüüüÿüüüÿüüûÿüûúÿüø÷ÿüóòÿüîîÿüììÿüìëÿüëêÿüëêÿüëêÿüëêÿüëêÿüìêÿüìêÿüìêÿüìêÿüëêÿüëêÿüëêÿüëêÿüëêÿüëêÿüëêÿüëêÿüëëÿüëëÿüëëÿüëëÿüëêÿüëêÿüëêÿüëêÿüëêÿüìëÿüííÿüïïìüðð®üüú°ûúúîüûûÿüûûÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûÿüûûìüüü®üüü°ûûûîüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®üüü°ûûûîüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®üüü°ûûûîüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®üüü°ûûûîüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®üüü°ûûûîüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüìüüü®ûûû¤ûûûÝûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíûûûíýýýÛûûû¢üüüyûûû¤üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°üüü°ûûû£úúúxÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ( @ €ûûû•ûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûû•ûûûÃüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃûûûÃüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃûûûÃüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃûûûÃüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃôøôÃõúõÿ÷ú÷ÿúûúÿüüüÿüüüÿüüüÿüüüÿúûúÿ÷ú÷ÿôùôÿóøóÿóøóÿõùõÿ÷ú÷ÿùûùÿûüûÿüüüÿüüüÿúûúÿøúøÿõúõÿ÷ú÷ÿúûúÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃÓíÓÃÕîÕÿÝñÝÿð÷ðÿûüûÿüüüÿüüüÿúûúÿóøóÿßñßÿÊëÊÿÆçÆÿÉçÉÿÐëÐÿÞñÞÿíøíÿ÷û÷ÿüüüÿúûúÿòùòÿáóáÿÑíÑÿßñßÿóøóÿúûúÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÖזÚٛÿ®ß¯ÿÞñßÿûüûÿüüüÿüüüÿõùõÿàñàÿ´áµÿˆÒŠÿÍÿƒÍ…ÿÑÿ¡Û£ÿ¹åºÿÐìÑÿåóåÿìöìÿÝñÞÿ¸ä¹ÿ”וÿ³à´ÿàðàÿõùõÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃG¹GÃN¼QÿrÉvÿÇèÈÿùûùÿüüüÿüüüÿíöíÿÆçÆÿƒÎ…ÿC¸Hÿ5³;ÿ8²>ÿ>´CÿH¹Nÿ\Á`ÿ|Í~ÿ«Ý«ÿËéËÿ¸ã¹ÿ€Ï‚ÿK¹PÿzÊ}ÿÃåÃÿìõìÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃ%¬%Ã.¯2ÿX¿^ÿ½ä½ÿùû÷ÿüüüÿüüüÿñøñÿÑìÑÿ—Ö˜ÿ]ÀaÿN»RÿJ¸NÿE¶Iÿ;³?ÿ7±:ÿB¶CÿeÃgÿ‡ÐŠÿ„Ï…ÿZ¿]ÿ-­3ÿdÁgÿµàµÿèôèÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃ'«%Ã0®3ÿZ¿^ÿ¾ä¼ÿùûõÿüüûÿüüüÿùûùÿîøîÿÐìÐÿ®Þ¯ÿ¡Ø¢ÿ˜Ô˜ÿŠÏ‹ÿqÆrÿTºTÿ;³;ÿ8²;ÿD·HÿQ¹RÿC³Dÿ-¬2ÿfÃhÿ³á³ÿçôçÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃ+§%Ã6¬5ÿa¾bÿÀä¿ÿùû÷ÿüüüÿüüüÿûüûÿùûùÿï÷ïÿãòãÿÞðÞÿÚîÚÿÒëÒÿÃåÃÿ¥Ù¥ÿzÊzÿQ¹Qÿ7­5ÿ5«3ÿ/©/ÿ/ª1ÿjÃkÿ³á³ÿçôçÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃ5Ÿ%Ã@¦5ÿh¹aÿÀá¾ÿõùõÿùüùÿûüûÿüüûÿüüúÿûüúÿûûúÿúûúÿúûúÿùúùÿóøóÿáñáÿ½ã¼ÿ†ÊÿQ¯Fÿ7£,ÿ-Ÿ#ÿ7¤-ÿo¾iÿ³Ý°ÿåóäÿúüùÿüüúÿüüûÿüüüÿüüüÿüüüÿûûûÃC•$ÃM›1ÿm­Xÿ¶ÔªÿãìÜÿéñãÿìñæÿîñçÿïñäÿîñåÿïòéÿóõïÿ÷øõÿûûúÿûûûÿöúöÿêôèÿ¾Ü´ÿ‚ºmÿR¡8ÿ<–ÿEš)ÿr±`ÿ«Ð ÿ×èÐÿêñãÿíñäÿîñæÿðóëÿõöñÿùúøÿûûûÃV‡ ÃXŒ'ÿh—>ÿ­jÿ©º…ÿ¬½ˆÿ¬½Šÿ¬½‹ÿ®½‰ÿ¬½ˆÿ¯ÂÿÆÓ°ÿàçÔÿö÷óÿüüüÿüüüÿùú÷ÿÛæÐÿ§ÄŽÿkŸEÿMŒ ÿRŽ&ÿj›Cÿ‡¬eÿž¸~ÿ©½ˆÿª½ˆÿ©¾ˆÿ¶ÇšÿÐÛ¾ÿêîâÿøù÷ÃizÃh}ÿj‚'ÿv‰4ÿ~;ÿ}Ž;ÿ{Ž<ÿz;ÿ|Œ:ÿxŠ4ÿ|’>ÿ¡°tÿÍÔ´ÿòòìÿüüüÿüüüÿúúøÿæéÚÿ¾ÈŸÿšMÿ`€ ÿc€#ÿi…*ÿqŠ2ÿv9ÿxŽ<ÿxŽ<ÿu:ÿŠ Vÿ¶Â“ÿßãÐÿ÷øôÃ}oÃ}pÿ~u#ÿƒ/ÿ†…7ÿ††8ÿ…†8ÿ„ƒ5ÿƒ~.ÿ|uÿy#ÿ œ^ÿÌȨÿñðéÿüüüÿüüüÿúúøÿ鿨ÿÇÁœÿ“ŽKÿwrÿwrÿ|x&ÿ.ÿƒƒ5ÿ„†;ÿƒ†<ÿ€‡:ÿ”™Vÿ½½“ÿãáÐÿø÷ôÃŽbÃ’fÿšv1ÿ­˜bÿ¸­€ÿ¹°ƒÿ¹±„ÿµ©zÿª•^ÿ˜w3ÿ’hÿ­WÿÒÀ¤ÿòîèÿüüüÿüüüÿúù÷ÿæÛËÿÄ©„ÿŸw:ÿŒ_ÿeÿš|9ÿª–]ÿµ©yÿ¹±†ÿ¸±‡ÿ¶´†ÿÂÀ˜ÿÙÖ¾ÿîìâÿùø÷ßSÃ¥\ÿ¶zDÿÛ»¢ÿðãÛÿñéáÿñêâÿéÜÏÿÕ·žÿ¹Sÿª\%ÿ¾‚WÿÛ»¤ÿôíèÿüûûÿû÷öÿõëæÿÞ¿«ÿ¿†^ÿ©]%ÿŸM ÿ¢Zÿ¹†TÿÕ·šÿéÜÎÿñêãÿðëãÿðîãÿòòèÿöõñÿúùøÿûûûóEùNÿÉrIÿéÄ´ÿûõôÿüùùÿüùùÿõéäÿä¾®ÿË{\ÿ¼Q&ÿË{Vÿâ¹£ÿöêåÿüööÿöåáÿ鿱ÿÔqÿ¿`4ÿµLÿ²D ÿ¶NÿË‚[ÿ佫ÿõèâÿüøøÿüøøÿüùøÿüúùÿüúúÿüûúÿûùùÃÈ5 ÃÍ?ÿÙgHÿîöÿûùøÿüüüÿüüüÿ÷êæÿ켯ÿÙv\ÿÍF#ÿ×jJÿ枈ÿòĺÿôļÿíªœÿà€hÿÓZ8ÿÈBÿÃ=ÿÃ9 ÿÈ@ÿØnPÿ駘ÿõÏÇÿùßÚÿùßÚÿùßÚÿùßÚÿùàÛÿùãàÿøäãÃÞ(Ãà2ÿæ]Dÿó¾µÿüøøÿüüüÿüüüÿúéæÿô¹­ÿçp[ÿÝ:ÿáK2ÿèjVÿì{lÿèmZÿâS:ÿßÿòKDÿóKDÿñKDÿðKDÿðMEÿðXKÿï`QÃô:-ÃõD6ÿöj^ÿùÁ»ÿüõõÿüûûÿüüüÿüíìÿûÅÃÿö~yÿñ:4ÿó*&ÿõ)&ÿõ*'ÿò+%ÿð-$ÿó-#ÿõ-"ÿõ-"ÿô/"ÿô1"ÿô1#ÿò0%ÿð/'ÿð-*ÿó,*ÿô,*ÿò,)ÿð,)ÿð.*ÿð:/ÿïC2Ãù‡Ãú‘Œÿú¨ ÿûÚ×ÿüùùÿüüüÿüüüÿüöõÿüäàÿúµ°ÿù‚ÿùtoÿúqlÿúrlÿùrlÿùulÿúxlÿúvlÿútlÿútlÿúulÿúulÿùtlÿøsmÿørpÿùqnÿúqlÿùqlÿøqlÿøtnÿø{ÿ÷‹…ÃûÎÎÃüÑÏÿüÚÖÿüîíÿüûûÿüüüÿüüüÿüûúÿüöòÿüàÝÿüÆÅÿü¿»ÿü½¸ÿü½¸ÿü½¸ÿü¾¸ÿüÀ¸ÿü¿¸ÿü¾¸ÿü½¸ÿü½¸ÿü½¸ÿü½¸ÿü½ºÿü½¼ÿü½»ÿü½¹ÿü½¸ÿü½¸ÿü¿»ÿüÇÅÿûÍËÃûóóÃüõôÿüööÿüúúÿüüüÿüüüÿüüüÿüüüÿüûúÿü÷÷ÿüóóÿüòñÿüññÿüññÿüññÿüññÿüòñÿüòñÿüññÿüññÿüññÿüññÿüññÿüññÿüññÿüññÿüññÿüññÿüññÿüòñÿüóóÿûóóÃûûûÃüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃûûûÃüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃûûûÃüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃûûûÃüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿûûûÃûûû•ûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûûÃûûû•(  @ûûûÄûûûßûûûßûûûßûûûßûûûßûûûßûûûßûûûßûûûßûûûßûûûßûûûßûûûßûûûßüüüÃûûûàüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüßøúøàúûúÿüüüÿüüüÿúûúÿøúøÿøúøÿúûúÿüüüÿüüüÿùûùÿûûûÿüüüÿüüüÿüüüÿüüüß¶â·àÖî×ÿüüüÿúûúÿÙïÙÿ¦Ü§ÿ«Ü¬ÿÉêÊÿêõêÿî÷îÿ¿ç¿ÿÚïÚÿúûúÿüüüÿüüüÿüüüß<µ>à“Õ–ÿûüúÿõùõÿ¬Þ­ÿI¹NÿBµGÿF¸KÿtÉvÿ¥Û¦ÿS½Xÿ–Õ˜ÿóøóÿüüüÿüüüÿüüüß/«.àŽÑŽÿûüùÿûüûÿéöéÿÃåÃÿ³ß³ÿ‰Ï‰ÿN¹Oÿ@²Aÿ3­6ÿŽÒÿñøñÿüüüÿüüüÿüüüßCž-à“Ljÿðõìÿõ÷òÿö÷ðÿöøôÿúûùÿòøòÿ»ß¶ÿW«Eÿ9%ÿ‘LJÿèòäÿö÷ðÿøùöÿûûûß`„"àu”@ÿ•¥bÿ”¦dÿ”¤`ÿ¤µ}ÿæéÛÿüüüÿìðæÿ”²pÿX‡!ÿs–Aÿޤ_ÿ¦bÿ²Á’ÿíðå߆kà’€9ÿŸš\ÿ˜Zÿ€8ÿ–‚=ÿáÛÉÿüüüÿðìäÿ¯œiÿiÿ‚:ÿ˜[ÿœœ`ÿ»»ÿðîåß«QàЛxÿöïëÿòêãÿÏœÿ»i=ÿêÔÇÿúôóÿä¾®ÿ·d4ÿªNÿÏ ~ÿòéãÿöóîÿøøóÿûûúßÖ5àè}ÿüûûÿúòðÿè—„ÿØL.ÿë’‚ÿë‹zÿÛQ3ÿÍ6 ÿÎ5 ÿäxcÿõº°ÿ÷Á¸ÿ÷¹ÿøËÅßð2àõƒÿüùùÿüóòÿö™“ÿí,"ÿò.(ÿí+ÿî$ÿî%ÿî(ÿî1&ÿñ;6ÿò<7ÿð=8ÿðNAßú®ªàûÑÎÿüûûÿüúùÿûÛ×ÿúšÿû–‘ÿú—‘ÿûš‘ÿû—‘ÿû˜‘ÿú—’ÿú–”ÿú–‘ÿú—’ÿú¦£ßûøøàüúúÿüüüÿüüüÿüûúÿü÷÷ÿü÷öÿü÷öÿü÷öÿü÷öÿü÷öÿü÷öÿü÷÷ÿü÷öÿü÷÷ÿüøøßûûûàüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüÿüüüßûûûÅûûûàûûûàûûûàûûûàûûûàûûûàûûûàûûûàûûûàûûûàûûûàûûûàûûûàûûûàüüüÄ&&&&&&&&&&&&&&&&hdf-java-2.11.0/config/Rules.mk0000644002344600011330000000767512326542262014464 0ustar byrnhdf#/**************************************************************************** #* Copyright by The HDF Group. * #* Copyright by the Board of Trustees of the University of Illinois. * #* All rights reserved. * #* * #* This file is part of HDF Java Products. The full HDF Java copyright * #* notice, including terms governing use, modification, and redistribution, * #* is contained in the file, COPYING. COPYING can be found at the root of * #* the source code distribution tree. You can also access it online at * #* http://www.hdfgroup.org/products/licenses.html. If you do not have * #* access to the file, you may request a copy from help@hdfgroup.org. * #****************************************************************************/ SRCDIR=. JAVADOC_FLAGS = -version -author #make this relative to the source root... LIBDIR=$(JH45INSTALLDIR)/lib BINDIR=$(JH45INSTALLDIR)/bin DOCDIR= $(JH45INSTALLDIR)/docs CLASS_DIR=$(TOP)/lib CP="$(CLASSPATH):$(CLASS_DIR):. " RM = rm -f # New suffixes .SUFFIXES: .java .class .h # Temp file for list of files to compile COMPILEME = .compileme$(USER) COPYME = .copyme$(USER) CURRENTDIR = . JAR_DIR=$(CLASS_DIR) OUT_DIR=$(CLASS_DIR)/$(DIR) JFLAGS= -g -deprecation -d $(CLASS_DIR) -classpath $(CP) RMICFLAGS= -g -d $(CLASS_DIR) JARFLAGS = cfm JAVAH = $(JAVAH) -jni RMIC = rmic $(RMICFLAGS) JC = $(JAVAC) $(JFLAGS) PACKAGE = $(subst /,.,$(DIR)) JAVA_OBJS = $(JAVA_SRCS:%.java=$(OUT_DIR)/%.class) RMI_OBJS = $(RMI_SRCS:%.java=$(OUT_DIR)/%.class) STUB_OBJS = $(RMI_OBJS:%.class=%_Stub.class) SKEL_OBJS = $(RMI_OBJS:%.class=%_Skel.class) H_FILES = $(JNI_SRCS:%.java=$(JNI_DIR)/%.h) # Notice that each line that starts with an @ is ONE LONG LINE # It may not show up or print out like that in the FAQ # Walk down the SUBDIRS first all:: @echo "subdirs is " $(SUBDIRS); \ if test "$(SUBDIRS)" != "NULL" ; then \ for i in $(SUBDIRS) ; do \ (cd $$i ; echo "making" all "in $(CURRENTDIR)/$$i"; \ $(MAKE) CURRENTDIR=$(CURRENTDIR)/$$i all); \ done \ fi # Then compile each file in each subdir all:: $(JAVA_OBJS) $(RMI_OBJS) $(JNI_OBJS) @if test -r ${COMPILEME}; then CFF=`cat ${COMPILEME}`; fi; \ $(RM) ${COMPILEME}; if test "$${CFF}" != ""; then \ echo $(JC) $${CFF}; fi; if test "$${CFF}" != ""; then \ $(JC) $${CFF}; fi @$(RM) ${COMPILEME} # "make clean" will delete all your class files to start fresh clean:: $(RM) $(OUT_DIR)/*.class *~ $(COMPILEME) $(RM) $(OUT_DIR)/*.gif *~ $(COMPILEME) $(RM) $(OUT_DIR)/*.jpg *~ $(COMPILEME) $(RM) $(OUT_DIR)/*.py *~ $(COMPILEME) # SUBDIRS clean:: @echo "2nd check: subdirs is " $(SUBDIRS); \ if test "$(SUBDIRS)" != "NULL"; then \ echo "Past the 2nd if then"; \ for i in $(SUBDIRS) ;\ do \ (cd $$i ; echo "making" clean "in $(CURRENTDIR)/$$i"; \ $(MAKE) CURRENTDIR=$(CURRENTDIR)/$$i clean); \ done \ fi clean:: @if [ "$(H_FILES)" != "/" ] && [ "$(H_FILES)" != "" ]; then \ echo $(RM) $(H_FILES); \ $(RM) $(H_FILES); \ fi @if [ "$(RMI_OBJS)" != "/" ] && [ "$(RMI_OBJS)" != "" ]; then \ echo $(RM) $(RMI_OBJS); \ $(RM) $(RMI_OBJS); \ fi @if [ "$(STUB_OBJS)" != "/" ] && [ "$(STUB_OBJS)" != "" ]; then \ echo $(RM) $(STUB_OBJS); \ $(RM) $(STUB_OBJS); \ fi @if [ "$(SKEL_OBJS)" != "/" ] && [ "$(SKEL_OBJS)" != "" ]; then \ echo $(RM) $(SKEL_OBJS); \ $(RM) $(SKEL_OBJS); \ fi all:: $(STUB_OBJS) $(SKEL_OBJS) $(H_FILES) ### Rules # .class.java rule, add file to list $(OUT_DIR)/%.class : %.java @echo $< >> $(COMPILEME) # Rule for compiling a Stub/Skel files $(OUT_DIR)/%_Skel.class :: $(OUT_DIR)/%_Stub.class $(OUT_DIR)/%_Stub.class:: %.java $(RMIC) $(PACKAGE).$(notdir $(basename $(¨ˆ¦r©yUI$  ¸* X/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 8Ÿ/usr/lib/libSystem.B.dylib 8ä/usr/lib/libobjc.A.dylib h{–/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation `A,/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation X/r-/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit&pCjH‰åHƒäðH‹}Hu‰úƒÂÁâHòH‰ÑëHƒÁHƒ9uöHƒÁè ‰Çè™ôUH‰åHìЉø‰EüH‰uðH‹å H‰EH‹Š H‹MH H‰ÏH‰ÖÿÐH‰E˜H‹¤H‹M˜H‰ÏH‰ÆèeH‰EˆH‹EðH‹H‰ÇèëÇE„é|H‹…hÿÿÿH‰Çè#H‰…XÿÿÿëH‹…XÿÿÿH‰ÁH‰xÿÿÿH‹ d H‰M H‹  H‹U H5öH‰×ÿÑH‰…PÿÿÿëH‹…PÿÿÿH‰E¨H‹ H‹U¨H‰×H‰ÎèÏH‰…HÿÿÿëH‹…HÿÿÿH‰ÁH‰pÿÿÿH‹pÿÿÿH‰M°H‹ ÛH‹U°¾H‰×H‰µ@ÿÿÿH‰ÎH‹•@ÿÿÿèëH‹…pÿÿÿH‰E¸H‹…xÿÿÿH‰EÀH‹¢H‹MÀH‰ÏH‰ÆèSH‰…8ÿÿÿëH‹‹H‹M¸H‰ÏH‰ÆH‹•8ÿÿÿè-ëH‹…pÿÿÿH‰EÈH‹iH‹MÈH‰ÏH‰Æè ëÇE„èðë2‹…dÿÿÿ‰EèH‹…hÿÿÿH‰EàèÕH‹EàH‰…hÿÿÿ‹E艅dÿÿÿé€H‹EˆH‰EÐH‹H‹MÐH‰ÏH‰Æèª‹E„‰EÜ‹E܉Eì‹EìHÄÐ]ÃH‰…hÿÿÿH‹…hÿÿÿ‰Ð‰…dÿÿÿëH‰…hÿÿÿH‹…hÿÿÿ‰Ð‰…dÿÿÿ븋dÿÿÿ9Á„ þÿÿëéNÿÿÿH‹…hÿÿÿH‰Çè÷UH‰åHìpH‹æH‹H‰EøH‰}ðH‰àH‰…PýÿÿH‹bH‰… ûÿÿH‹\H‹ ûÿÿH‰ÏH‰ÆèêH‰…èúÿÿëH‹…èúÿÿH‰…˜ûÿÿè¶H‰…àúÿÿëH‹…àúÿÿH‰ÁH‰¨ûÿÿH‹ H‹•¨ûÿÿH‰×H‰Îè›H‰…ØúÿÿëH‹½ØúÿÿèPëH‹…˜ûÿÿH‰…°ûÿÿH‹ßH‹°ûÿÿH‰ÏH‰Æè]H‰…ÐúÿÿëH‹…ÐúÿÿH‰…ûÿÿH‹ûÿÿH‰¸ûÿÿH‹ 9H‹•¸ûÿÿH5+H=¤H‰½ÈúÿÿH‰×H‹•ÈúÿÿÿÑH‰…ÀúÿÿëH‹…ÀúÿÿH‰ÁH‰ˆûÿÿHÇ…€ûÿÿH‹ˆûÿÿHƒù„AH‹$H‰…ÀûÿÿH‹H‹ÀûÿÿH‰ÏH‰Æè¬H‰…¸úÿÿëH‹…¸úÿÿH‰ÁH‰ÈûÿÿH‹ H‹•ÈûÿÿH‰×H‰ÎèyH‰…°úÿÿëH‹…°úÿÿH‰ÁH‰ÐûÿÿH‹ ØH‹•ÐûÿÿH‹µˆûÿÿH‰×H‰µ¨úÿÿH‰ÎH‹•¨úÿÿè1H‰… úÿÿëH‹… úÿÿH‰…ûÿÿH‹ûÿÿH‰ØûÿÿH‹ …H‹•ØûÿÿH5ŸH‰×H‰µ˜úÿÿH‰ÎH‹•˜úÿÿèÞH‰…úÿÿëH‹…úÿÿH‰ÁH‰àûÿÿH‹ EH‹•àûÿÿH‰×H‰Îè«H‰…ˆúÿÿëH‹…ˆúÿÿH‰…€ûÿÿëH»H‰…€ûÿÿH‹…€ûÿÿ¹H‰Ç‰Îè>H‰…€úÿÿëH‹…€úÿÿH‰…xûÿÿHÇ…pûÿÿH‹xûÿÿHƒùt3H‹…xûÿÿH ·H‰ÇH‰ÎèüH‰…xúÿÿëH‹…xúÿÿH‰ÁH‰pûÿÿH‹…pûÿÿHƒø…H‹TH‰…èûÿÿH‹>H‰…ðûÿÿH‹8H‹ðûÿÿH‰ÏH‰ÆèÆH‰…púÿÿëH‹…púÿÿH‰ÁH‰øûÿÿH‹ 5H‹•øûÿÿ1öH=}LVH‰½húÿÿH‰×H‰µ`úÿÿH‰ÎH‹•húÿÿL‰ÁL‹…`úÿÿèdH‰…XúÿÿëH‹ìH‹èûÿÿ1ÒH5LH‰ÏH‰µPúÿÿH‰ÆH‹…PúÿÿH‰•HúÿÿH‰ÂH‹XúÿÿL‹…HúÿÿèH‰…@úÿÿëH‹…@úÿÿH‰ÁH‰üÿÿH‹ ’H‹•üÿÿH‰×H‰ÎèàëH‹…ûÿÿH‰…üÿÿH‹ÑH‹üÿÿHÃH5ÜH‰ÏH‰µ8úÿÿH‰ÖH‹•8úÿÿÿÐH‰…0úÿÿëH‹…0úÿÿH‰ÁH‰hûÿÿH‹hûÿÿHƒù…H‹ÌH‰…üÿÿH‹¶H‰…üÿÿH‹°H‹üÿÿH‰ÏH‰Æè>H‰…(úÿÿëH‹…(úÿÿH‰ÁH‰ üÿÿH‹ ­H‹• üÿÿ1öH=ULÎH‰½ úÿÿH‰×H‰µúÿÿH‰ÎH‹• úÿÿL‰ÁL‹…úÿÿèÜH‰…úÿÿëH‹dH‹üÿÿ1ÒH5ÄH‰ÏH‰µúÿÿH‰ÆH‹…úÿÿH‰•úÿÿH‰ÂH‹úÿÿL‹…úÿÿè‹H‰…øùÿÿëH‹…øùÿÿH‰ÁH‰(üÿÿH‹ H‹•(üÿÿH‰×H‰ÎèXëH‹…˜ûÿÿH‰…0üÿÿH‹éH‹0üÿÿH‰ÏH‰Æè/H‰…ðùÿÿëH‹…ðùÿÿH‰…`ûÿÿH‹`ûÿÿH‰8üÿÿH‹ ³H‹•8üÿÿH5]H‰×H‰µèùÿÿH‰ÎH‹•èùÿÿèÜH‰…àùÿÿëH‹…àùÿÿH‰…XûÿÿH‹ &H‰@üÿÿH‹ hH‹•@üÿÿH‹µXûÿÿ@0ÿL @ˆ½ßùÿÿH‰×H‰µÐùÿÿH‰ÎL‰ÂH‹ÐùÿÿDŠ…ßùÿÿDˆÀèkH‰…ÈùÿÿëH‹…ÈùÿÿH‰ÁH‰PûÿÿH‹ ºH‰HüÿÿH‹ üH‹•HüÿÿH‰×H‰Îè*H‰…ÀùÿÿëH‹…ÀùÿÿH‰…HûÿÿH‹HûÿÿH‰PüÿÿH‹ ÆH‹•PüÿÿH‹µXûÿÿ1ÿH‰½¸ùÿÿH‰×H‰µ°ùÿÿH‰ÎH‹•°ùÿÿH‹¸ùÿÿèÇH‰…¨ùÿÿëH‹…¨ùÿÿH‰…@ûÿÿH‹@ûÿÿHƒù…H‹øH‰…XüÿÿH‹âH‰…`üÿÿH‹ÜH‹`üÿÿH‰ÏH‰ÆèjH‰… ùÿÿëH‹… ùÿÿH‰ÁH‰hüÿÿH‹ ÙH‹•hüÿÿ1öH=áLúH‰½˜ùÿÿH‰×H‰µùÿÿH‰ÎH‹•˜ùÿÿL‰ÁL‹…ùÿÿèH‰…ˆùÿÿëH‹H‹Xüÿÿ1ÒH5ðH‰ÏH‰µ€ùÿÿH‰ÆH‹…€ùÿÿH‰•xùÿÿH‰ÂH‹ˆùÿÿL‹…xùÿÿè·H‰…pùÿÿëH‹…pùÿÿH‰ÁH‰püÿÿH‹ 6H‹•püÿÿH‰×H‰Îè„ëHÇ…XýÿÿHÇ…`ýÿÿHÇ…hýÿÿHÇ…pýÿÿHÇ…xýÿÿHÇ…€ýÿÿHÇ…ˆýÿÿHÇ…ýÿÿH‹…@ûÿÿH‰…xüÿÿH‹-H‹xüÿÿH•˜ýÿÿHµXýÿÿ¿L H‰½hùÿÿH‰ÏH‰µ`ùÿÿL‰ÆH‹`ùÿÿH‰•XùÿÿH‰ÊH‹XùÿÿL‹…hùÿÿÿÐH‰…PùÿÿëH‹…PùÿÿH‰…þÿÿH‹þÿÿHƒù„òH‹…hýÿÿH‹H‰… þÿÿHÇ…(þÿÿH‹…hýÿÿH‹H‹ þÿÿH9Èt#H‹…@ûÿÿH‰…€üÿÿH‹…€üÿÿ0ÉH‰ÇˆÈè> ëH‹…`ýÿÿH‹(þÿÿH‹ÈH‰…ûÿÿH‹…(þÿÿH¹HÈH‰…(þÿÿH‹…ûÿÿH‰…ˆüÿÿH‹ÉH‹ˆüÿÿH³H‰ÏH‰Æèà ˆÁˆOùÿÿ늅Oùÿÿ<t~H‹…PûÿÿH‰…üÿÿH‹H‹üÿÿH‹•XûÿÿH‹µûÿÿH=ƒE0ÀH‰½@ùÿÿH‰ÏH‰µ8ùÿÿH‰ÆH‹…@ùÿÿH‰•0ùÿÿH‰ÂH‹0ùÿÿH‹…8ùÿÿDˆ…/ùÿÿI‰ÀŠ…/ùÿÿèP ëH‹…(þÿÿH‹þÿÿH9È‚¼þÿÿH‹HH‹xüÿÿH•˜ýÿÿHµXýÿÿ¿L'H‰½ ùÿÿH‰ÏH‰µùÿÿL‰ÆH‹ùÿÿH‰•ùÿÿH‰ÊH‹ùÿÿL‹… ùÿÿÿÐH‰…ùÿÿëH‹…ùÿÿH‰…þÿÿH‹þÿÿHƒù…,þÿÿHÇ…ûÿÿë HÇ…ûÿÿH‹ H‰…˜üÿÿH‹=H‹˜üÿÿH‹•`ûÿÿ@0öH=uH‰½ùÿÿH‰Ï@ˆµÿøÿÿH‰ÆH‹…ùÿÿH‰•ðøÿÿH‰ÂH‹ðøÿÿŠ…ÿøÿÿè6 H‰…èøÿÿëH‹…èøÿÿH‰ÁH‰8ûÿÿH‹ûÿÿH‰ üÿÿH‹ H‹• üÿÿH5H=H‰½àøÿÿH‰×H‹•àøÿÿÿÑH‰…ØøÿÿëH‹…ØøÿÿH‰ÁH‰0ûÿÿH‹0ûÿÿHƒùuAH‹1H‰…¨üÿÿH‹ƒH‹¨üÿÿH‰ÏH‰Æè‘ H‰…ÐøÿÿëH‹…ÐøÿÿH‰ÁH‰0ûÿÿH‹…ûÿÿH‰…°üÿÿH‹jH‹°üÿÿH\H5•H‰ÏH‰µÈøÿÿH‰ÖH‹•ÈøÿÿÿÐH‰…ÀøÿÿëH‹…ÀøÿÿH‰ÁH‰(ûÿÿH‹(ûÿÿHƒùuAH‹‰H‰…¸üÿÿH‹ÛH‹¸üÿÿH‰ÏH‰Æèé H‰…¸øÿÿëH‹…¸øÿÿH‰ÁH‰(ûÿÿH‹…0ûÿÿH‰…ÀüÿÿH‹âH‹ÀüÿÿHÔH‰ÏH‰ÖÿÐH‰…°øÿÿëH‹…°øÿÿ‰ÁH‹•(ûÿÿH‰•ÈüÿÿH‹¥H‹µÈüÿÿH=—H‰½¨øÿÿH‰÷H‹µ¨øÿÿ‰¤øÿÿÿÒH‰…˜øÿÿëH‹…˜øÿÿ‰Á‹•¤øÿÿ‰Ö΃Ɖµ$ûÿÿ‹$ûÿÿ‰Ôüÿÿ‹Ôüÿÿ‹Ôüÿÿ‹ÔüÿÿH¹‹µÔüÿÿ‹µÔüÿÿHcöH¯ñ‰ñ‰ÉHIHƒáðH‰æH)ÎH‰ôH‰µØüÿÿÇ… ûÿÿH‹ØüÿÿH‹uðHc½ ûÿÿH‰4ù‹ ûÿÿI‰ ûÿÿH‹µPûÿÿH‰µàüÿÿH‹=þH‰½øÿÿH‰÷H‹µøÿÿ‰ŒøÿÿèzH‰…€øÿÿëH‹½€øÿÿèGH‹Øüÿÿ‹•ŒøÿÿHcòH‰ñ‹… ûÿÿƒÀ‰… ûÿÿ‹… ûÿÿH‹8ûÿÿH‰èüÿÿH‹ H‹µèüÿÿH‰÷H‰Î‰…|øÿÿèH‰…pøÿÿëH‹½pøÿÿèÜH‹Øüÿÿ‹•|øÿÿHcòH‰ñ‹… ûÿÿƒÀ‰… ûÿÿHÇ…0þÿÿHÇ…8þÿÿHÇ…@þÿÿHÇ…HþÿÿHÇ…PþÿÿHÇ…XþÿÿHÇ…`þÿÿHÇ…hþÿÿH‹…0ûÿÿH‰…ðüÿÿH‹‚H‹ðüÿÿHµpþÿÿH½0þÿÿA¸L `H‰½høÿÿH‰ÏH‰µ`øÿÿL‰ÎH‹høÿÿH‰ÊH‹`øÿÿÿÐH‰…XøÿÿëH‹…XøÿÿH‰…ðþÿÿH‹ðþÿÿHƒù„H‹…@þÿÿH‹H‰…øþÿÿHÇ…ÿÿÿH‹…@þÿÿH‹H‹øþÿÿH9Èt#H‹…0ûÿÿH‰…øüÿÿH‹…øüÿÿ0ÉH‰ÇˆÈè ëH‹…8þÿÿH‹ÿÿÿH‹ÈH‰…ûÿÿH‹…ÿÿÿH¹HÈH‰…ÿÿÿH‹…ûÿÿH‰…ýÿÿH‹…˜ûÿÿH‰…ýÿÿH‹õ H‹ýÿÿH‰ÏH‰Æè;H‰…PøÿÿëH‹ H‹ýÿÿH…H‰ÏH‰ÆH‹Pøÿÿè H‰…HøÿÿëH‹…HøÿÿH‰…ûÿÿ‹ ûÿÿH‹•ûÿÿH‰•ýÿÿH‹A H‹µýÿÿH‰÷H‰Ö‰DøÿÿèÁH‰…8øÿÿëH‹½8øÿÿèŽH‹Øüÿÿ‹•DøÿÿHcòH‰ñ‹… ûÿÿƒÀ‰… ûÿÿH‹…ÿÿÿH‹ðþÿÿH9È‚•þÿÿH‹ƒ H‹ðüÿÿH•pþÿÿHµ0þÿÿ¿Lb H‰½0øÿÿH‰ÏH‰µ(øÿÿL‰ÆH‹(øÿÿH‰• øÿÿH‰ÊH‹ øÿÿL‹…0øÿÿÿÐH‰…øÿÿëH‹…øÿÿH‰…ðþÿÿH‹ðþÿÿHƒù…þÿÿHÇ…ûÿÿë HÇ…ûÿÿ‹… ûÿÿH‹hûÿÿH‰ýÿÿH‹ " H‹•ýÿÿH‰×H‰Î‰…øÿÿè¢H‰…øÿÿëH‹½øÿÿèoH‹Øüÿÿ‹•øÿÿHcòH‰ñ‹… ûÿÿƒÀ‰… ûÿÿHÇ…ÿÿÿHÇ…ÿÿÿHÇ…ÿÿÿHÇ… ÿÿÿHÇ…(ÿÿÿHÇ…0ÿÿÿHÇ…8ÿÿÿHÇ…@ÿÿÿH‹…(ûÿÿH‰… ýÿÿH‹ H‹ ýÿÿHµHÿÿÿH½ÿÿÿA¸L ó H‰½øÿÿH‰ÏH‰µø÷ÿÿL‰ÎH‹øÿÿH‰ÊH‹ø÷ÿÿÿÐH‰…ð÷ÿÿëH‹…ð÷ÿÿH‰EÈH‹MÈHƒù„ûH‹…ÿÿÿH‹H‰EÐHÇEØH‹…ÿÿÿH‹H‹MÐH9Èt#H‹…(ûÿÿH‰…(ýÿÿH‹…(ýÿÿ0ÉH‰ÇˆÈèBëH‹…ÿÿÿH‹MØH‹ÈH‰…ûÿÿH‹EØH¹HÈH‰EØH‹…ûÿÿH‰…0ýÿÿH‹…˜ûÿÿH‰…8ýÿÿH‹  H‹8ýÿÿH‰ÏH‰ÆèæH‰…è÷ÿÿëH‹¾ H‹0ýÿÿH0 H‰ÏH‰ÆH‹è÷ÿÿè¶H‰…à÷ÿÿëH‹…à÷ÿÿH‰…ûÿÿ‹ ûÿÿH‹•ûÿÿH‰•@ýÿÿH‹ìH‹µ@ýÿÿH‰÷H‰Ö‰Ü÷ÿÿèlH‰…Ð÷ÿÿëH‹½Ð÷ÿÿè9H‹Øüÿÿ‹•Ü÷ÿÿHcòH‰ñ‹… ûÿÿƒÀ‰… ûÿÿH‹EØH‹MÈH9È‚§þÿÿH‹4 H‹ ýÿÿH•HÿÿÿHµÿÿÿ¿L H‰½È÷ÿÿH‰ÏH‰µÀ÷ÿÿL‰ÆH‹À÷ÿÿH‰•¸÷ÿÿH‰ÊH‹¸÷ÿÿL‹…È÷ÿÿÿÐH‰…°÷ÿÿëH‹…°÷ÿÿH‰EÈH‹MÈHƒù… þÿÿHÇ…ûÿÿë HÇ…ûÿÿH‹…ØüÿÿH‹pûÿÿ‹•$ûÿÿHƒì@H‰æH=ÚH‰~H‰~H=H‰~H‰>ÇF8ÇF0ÇF(ÇF 1ö1ÿH‰½¨÷ÿÿ‰×‰µ¤÷ÿÿH‰Æ‹•¤÷ÿÿH‹…¨÷ÿÿH‰˜÷ÿÿH‰ÁD‹…¤÷ÿÿI‰ÁH‹…˜÷ÿÿÿÐHƒÄ@‰Á‰”÷ÿÿë‹…”÷ÿÿ‰…LýÿÿH‹PýÿÿH‰Ì‹Lýÿÿ‰Mìë4‹…ôúÿÿ‰EèH‹…øúÿÿH‰EàH‹…PýÿÿH‰ÄH‹EàH‰…øúÿÿ‹E艅ôúÿÿë?‹EìH‹ KH‹ H‹UøH9щ…÷ÿÿu2‹…÷ÿÿH‰ì]ÃH‰…øúÿÿH‹…øúÿÿ‰Ð‰…ôúÿÿëH‹…øúÿÿH‰Çèèÿ%ÿ%ÿ%ÿ% ÿ% ÿ%ÿ%ÿ%ÿ%ÿ%ÿ%ÿ%L™ASÿ%‰héæÿÿÿh!éÜÿÿÿh9éÒÿÿÿhFéÈÿÿÿhTé¾ÿÿÿhaé´ÿÿÿhméªÿÿÿh|é ÿÿÿh”é–ÿÿÿh­éŒÿÿÿhÄé‚ÿÿÿhåéxÿÿÿÿ›¼4^^&{3>®Ñäÿ›œCÊF°NSExceptionJVMRuntimeContents/Home/jre/lib/jli/libjli.dylib/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/jli/libjli.dylibJLI_LaunchJRELoadErrorJavaLaunchErrorJVMMainClassNameMainClassNameRequired/Contents/Java-Djava.class.path=%@/ClassesJavaDirectoryNotFound.jar:%@/%@-Djava.library.path=%@/Contents/MacOSJVMOptionsJVMArguments$APP_ROOTjavastringByReplacingOccurrencesOfString:withString:arrayappendFormat:hasSuffix:contentsOfDirectoryAtPath:error:defaultManagerstringWithFormat:stringByAppendingString:bundlePathraiseexceptionWithName:reason:userInfo:localizedStringForKey:value:table:fileSystemRepresentationstringByAppendingPathComponent:builtInPlugInsPathinfoDictionaryUTF8StringmainBundledrainrunModalsetMessageText:reasonsetAlertStyle:initautoreleaseallocobjectForKey:countByEnumeratingWithState:objects:count:count $Q@0L<G*LÐ+PX+ @ÀzPLRx›Å 4$@áÿÿÿÿÿÿwûÿÿÿÿÿÿ† 4\ˆãÿÿÿÿÿÿöûÿÿÿÿÿÿ† 44 4(4 *ª*´*¾*È*Ò*Ü*æ*ð*ú*++¥.–...v.p.e.Z.K.8..ÿ-Ü-¹-³-¨--}-n-M-B-4-.-ý,¶.¼.Ê.õ.ª.È„+ È+&Ȭ,È, È',È7,ÈH,È^,Èm,ÈŠ,È ,È¥,Ȱ,%ÈÖ, Èá, Èî, "UE\A`B€pP€Q@___stack_chk_guardQrH@dyld_stub_binder€Øÿÿÿÿÿÿÿÿ@___objc_personality_v0€@_objc_msgSend_fixup€¸À@_OBJC_CLASS_$_NSArray€@@_OBJC_CLASS_$_NSException€Øÿÿÿÿÿÿÿÿ@_OBJC_EHTYPE_$_NSException€Èüÿÿÿÿÿÿÿ@___CFConstantStringClassReference€ÐÀ@_OBJC_CLASS_$_NSAutoreleasePool€Øûÿÿÿÿÿÿÿ@_OBJC_CLASS_$_NSBundle€@_OBJC_CLASS_$_NSFileManager€@_OBJC_CLASS_$_NSMutableString€ðÿÿÿÿÿÿÿÿ@_OBJC_CLASS_$_NSString€@_OBJC_CLASS_$_NSAlert€ÐÿÿÿÿÿÿÿÿrP@__Unwind_Resume_or_RethrowrX@___stack_chk_failr`@_chdirrh@_dlopenrp@_dlsymrx@_exitr€@_strduprˆ@_NSHomeDirectoryr@_objc_begin_catchr˜@_objc_end_catchr @_objc_enumerationMutationr¨@_objc_msgSend_ startS_/mainXlaunch]NXArgbenvirontmh_execute_headerO_prognamey!Ð!Ð&cjvoh˜h h¨h!@€+X+&4.46(4BV 4_PgÐms„š°Ðç;RmˆªÁÓæíõü$>L`h"  #@"  GCC_except_table1GCC_except_table2_NXArgc_NXArgv___progname__mh_execute_header_environ_launch_mainstart_NSHomeDirectory_OBJC_CLASS_$_NSAlert_OBJC_CLASS_$_NSArray_OBJC_CLASS_$_NSAutoreleasePool_OBJC_CLASS_$_NSBundle_OBJC_CLASS_$_NSException_OBJC_CLASS_$_NSFileManager_OBJC_CLASS_$_NSMutableString_OBJC_CLASS_$_NSString_OBJC_EHTYPE_$_NSException__Unwind_Resume_or_Rethrow___CFConstantStringClassReference___objc_personality_v0___stack_chk_fail___stack_chk_guard_chdir_dlopen_dlsym_exit_objc_begin_catch_objc_end_catch_objc_enumerationMutation_objc_msgSend_objc_msgSend_fixup_strdupdyld_stub_binderhdf-java-2.11.0/config/cmake/FindJNI.cmake0000644002344600011330000002624312373426221016332 0ustar byrnhdf#.rst: # FindJNI # ------- # # Find JNI java libraries. # # This module finds if Java is installed and determines where the # include files and libraries are. It also determines what the name of # the library is. The caller may set variable JAVA_HOME to specify a # Java installation prefix explicitly. # # This module sets the following result variables: # # :: # # JNI_INCLUDE_DIRS = the include dirs to use # JNI_LIBRARIES = the libraries to use # JNI_FOUND = TRUE if JNI headers and libraries were found. # JAVA_AWT_LIBRARY = the path to the jawt library # JAVA_JVM_LIBRARY = the path to the jvm library # JAVA_INCLUDE_PATH = the include path to jni.h # JAVA_INCLUDE_PATH2 = the include path to jni_md.h # JAVA_AWT_INCLUDE_PATH = the include path to jawt.h #============================================================================= # Copyright 2001-2009 Kitware, Inc. # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) # Expand {libarch} occurences to java_libarch subdirectory(-ies) and set ${_var} macro(java_append_library_directories _var) # Determine java arch-specific library subdir # Mostly based on openjdk/jdk/make/common/shared/Platform.gmk as of openjdk # 1.6.0_18 + icedtea patches. However, it would be much better to base the # guess on the first part of the GNU config.guess platform triplet. if(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") set(_java_libarch "amd64" "i386") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^i.86$") set(_java_libarch "i386") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^alpha") set(_java_libarch "alpha") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^arm") # Subdir is "arm" for both big-endian (arm) and little-endian (armel). set(_java_libarch "arm") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^mips") # mips* machines are bi-endian mostly so processor does not tell # endianess of the underlying system. set(_java_libarch "${CMAKE_SYSTEM_PROCESSOR}" "mips" "mipsel" "mipseb") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64le") set(_java_libarch "ppc64" "ppc64le") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64") set(_java_libarch "ppc64" "ppc") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)") set(_java_libarch "ppc") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^sparc") # Both flavours can run on the same processor set(_java_libarch "${CMAKE_SYSTEM_PROCESSOR}" "sparc" "sparcv9") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(parisc|hppa)") set(_java_libarch "parisc" "parisc64") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^s390") # s390 binaries can run on s390x machines set(_java_libarch "${CMAKE_SYSTEM_PROCESSOR}" "s390" "s390x") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^sh") set(_java_libarch "sh") else() set(_java_libarch "${CMAKE_SYSTEM_PROCESSOR}") endif() # Append default list architectures if CMAKE_SYSTEM_PROCESSOR was empty or # system is non-Linux (where the code above has not been well tested) if(NOT _java_libarch OR NOT (CMAKE_SYSTEM_NAME MATCHES "Linux")) list(APPEND _java_libarch "i386" "amd64" "ppc") endif() # Sometimes ${CMAKE_SYSTEM_PROCESSOR} is added to the list to prefer # current value to a hardcoded list. Remove possible duplicates. list(REMOVE_DUPLICATES _java_libarch) foreach(_path ${ARGN}) if(_path MATCHES "{libarch}") foreach(_libarch ${_java_libarch}) string(REPLACE "{libarch}" "${_libarch}" _newpath "${_path}") list(APPEND ${_var} "${_newpath}") endforeach() else() list(APPEND ${_var} "${_path}") endif() endforeach() endmacro() #include(${CMAKE_CURRENT_LIST_DIR}/CMakeFindJavaCommon.cmake) INCLUDE (CMakeFindJavaCommon) # Save CMAKE_FIND_FRAMEWORK if(DEFINED CMAKE_FIND_FRAMEWORK) set(_JNI_CMAKE_FIND_FRAMEWORK ${CMAKE_FIND_FRAMEWORK}) else() unset(_JNI_CMAKE_FIND_FRAMEWORK) endif() if(_JAVA_HOME_EXPLICIT) set(CMAKE_FIND_FRAMEWORK NEVER) endif() set(JAVA_AWT_LIBRARY_DIRECTORIES) if(_JAVA_HOME) JAVA_APPEND_LIBRARY_DIRECTORIES(JAVA_AWT_LIBRARY_DIRECTORIES ${_JAVA_HOME}/jre/lib/{libarch} ${_JAVA_HOME}/jre/lib ${_JAVA_HOME}/lib ${_JAVA_HOME} ) endif() get_filename_component(java_install_version "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit;CurrentVersion]" NAME) list(APPEND JAVA_AWT_LIBRARY_DIRECTORIES "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.4;JavaHome]/lib" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.3;JavaHome]/lib" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\${java_install_version};JavaHome]/lib" ) JAVA_APPEND_LIBRARY_DIRECTORIES(JAVA_AWT_LIBRARY_DIRECTORIES /usr/java/lib /usr/java/jre/lib /usr/lib /usr/lib64 /usr/local/lib /usr/local/lib64 /usr/lib/jvm/java/lib /usr/lib64/jvm/java/lib /usr/lib/java/jre/lib/{libarch} /usr/lib64/java/jre/lib/{libarch} /usr/lib/jvm/jre/lib/{libarch} /usr/lib64/jvm/jre/lib/{libarch} /usr/local/lib/java/jre/lib/{libarch} /usr/local/share/java/jre/lib/{libarch} /usr/lib/j2sdk1.4-sun/jre/lib/{libarch} /usr/lib/j2sdk1.5-sun/jre/lib/{libarch} /opt/sun-jdk-1.5.0.04/jre/lib/{libarch} /usr/lib/jvm/java-6-sun/jre/lib/{libarch} /usr/lib/jvm/java-1.5.0-sun/jre/lib/{libarch} /usr/lib/jvm/java-6-sun-1.6.0.00/jre/lib/{libarch} # can this one be removed according to #8821 ? Alex /usr/lib/jvm/java-6-openjdk/jre/lib/{libarch} /usr/lib/jvm/java-7-openjdk/jre/lib/{libarch} /usr/lib/jvm/java-7-openjdk-{libarch}/jre/lib/{libarch} /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0/jre/lib/{libarch} # fedora # Debian specific paths for default JVM /usr/lib/jvm/default-java/jre/lib/{libarch} /usr/lib/jvm/default-java/jre/lib /usr/lib/jvm/default-java/lib # OpenBSD specific paths for default JVM /usr/local/jdk-1.7.0/jre/lib/{libarch} /usr/local/jre-1.7.0/lib/{libarch} /usr/local/jdk-1.6.0/jre/lib/{libarch} /usr/local/jre-1.6.0/lib/{libarch} ) set(JAVA_JVM_LIBRARY_DIRECTORIES) foreach(dir ${JAVA_AWT_LIBRARY_DIRECTORIES}) list(APPEND JAVA_JVM_LIBRARY_DIRECTORIES "${dir}" "${dir}/client" "${dir}/server" ) endforeach() set(JAVA_AWT_INCLUDE_DIRECTORIES) if(_JAVA_HOME) list(APPEND JAVA_AWT_INCLUDE_DIRECTORIES ${_JAVA_HOME}/include) endif() list(APPEND JAVA_AWT_INCLUDE_DIRECTORIES "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.4;JavaHome]/include" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\1.3;JavaHome]/include" "[HKEY_LOCAL_MACHINE\\SOFTWARE\\JavaSoft\\Java Development Kit\\${java_install_version};JavaHome]/include" ${_JAVA_HOME}/include /usr/include /usr/java/include /usr/local/include /usr/lib/java/include /usr/lib64/java/include /usr/local/lib/java/include /usr/lib/jvm/java/include /usr/lib64/jvm/java/include /usr/lib/jvm/java-6-sun/include /usr/lib/jvm/java-1.5.0-sun/include /usr/lib/jvm/java-6-sun-1.6.0.00/include # can this one be removed according to #8821 ? Alex /usr/lib/jvm/java-6-openjdk/include /usr/lib/jvm/java-7-openjdk/include /usr/lib/jvm/java-7-openjdk-i386/include /usr/lib/jvm/java-7-openjdk-amd64/include /usr/lib64/jvm/java-7-openjdk/include /usr/lib64/jvm/java-7-openjdk-amd64/include /usr/local/share/java/include /usr/lib/j2sdk1.4-sun/include /usr/lib/j2sdk1.5-sun/include /opt/sun-jdk-1.5.0.04/include # Debian specific path for default JVM /usr/lib/jvm/default-java/include # OpenBSD specific path for default JVM /usr/local/jdk-1.7.0/include /usr/local/jdk-1.6.0/include ) foreach(JAVA_PROG "${JAVA_RUNTIME}" "${JAVA_COMPILE}" "${JAVA_ARCHIVE}") get_filename_component(jpath "${JAVA_PROG}" PATH) foreach(JAVA_INC_PATH ../include ../java/include ../share/java/include) if(EXISTS ${jpath}/${JAVA_INC_PATH}) list(APPEND JAVA_AWT_INCLUDE_DIRECTORIES "${jpath}/${JAVA_INC_PATH}") endif() endforeach() foreach(JAVA_LIB_PATH ../lib ../jre/lib ../jre/lib/i386 ../java/lib ../java/jre/lib ../java/jre/lib/i386 ../share/java/lib ../share/java/jre/lib ../share/java/jre/lib/i386) if(EXISTS ${jpath}/${JAVA_LIB_PATH}) list(APPEND JAVA_AWT_LIBRARY_DIRECTORIES "${jpath}/${JAVA_LIB_PATH}") endif() endforeach() endforeach() if(APPLE) if(CMAKE_FIND_FRAMEWORK STREQUAL "ONLY") set(_JNI_SEARCHES FRAMEWORK) elseif(CMAKE_FIND_FRAMEWORK STREQUAL "NEVER") set(_JNI_SEARCHES NORMAL) elseif(CMAKE_FIND_FRAMEWORK STREQUAL "LAST") set(_JNI_SEARCHES NORMAL FRAMEWORK) else() set(_JNI_SEARCHES FRAMEWORK NORMAL) endif() set(_JNI_FRAMEWORK_JVM NAMES JavaVM) set(_JNI_FRAMEWORK_JAWT "${_JNI_FRAMEWORK_JVM}") else() set(_JNI_SEARCHES NORMAL) endif() set(_JNI_NORMAL_JVM NAMES jvm PATHS ${JAVA_JVM_LIBRARY_DIRECTORIES} ) set(_JNI_NORMAL_JAWT NAMES jawt PATHS ${JAVA_AWT_LIBRARY_DIRECTORIES} ) foreach(search ${_JNI_SEARCHES}) find_library(JAVA_JVM_LIBRARY ${_JNI_${search}_JVM}) find_library(JAVA_AWT_LIBRARY ${_JNI_${search}_JAWT}) if(JAVA_JVM_LIBRARY) break() endif() endforeach() unset(_JNI_SEARCHES) unset(_JNI_FRAMEWORK_JVM) unset(_JNI_FRAMEWORK_JAWT) unset(_JNI_NORMAL_JVM) unset(_JNI_NORMAL_JAWT) # Find headers matching the library. if("${JAVA_JVM_LIBRARY};${JAVA_AWT_LIBRARY};" MATCHES "(/JavaVM.framework|-framework JavaVM);") set(CMAKE_FIND_FRAMEWORK ONLY) else() set(CMAKE_FIND_FRAMEWORK NEVER) endif() # add in the include path find_path(JAVA_INCLUDE_PATH jni.h ${JAVA_AWT_INCLUDE_DIRECTORIES} ) find_path(JAVA_INCLUDE_PATH2 jni_md.h ${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH}/darwin ${JAVA_INCLUDE_PATH}/win32 ${JAVA_INCLUDE_PATH}/linux ${JAVA_INCLUDE_PATH}/freebsd ${JAVA_INCLUDE_PATH}/openbsd ${JAVA_INCLUDE_PATH}/solaris ${JAVA_INCLUDE_PATH}/hp-ux ${JAVA_INCLUDE_PATH}/alpha ) find_path(JAVA_AWT_INCLUDE_PATH jawt.h ${JAVA_INCLUDE_PATH} ) # Restore CMAKE_FIND_FRAMEWORK if(DEFINED _JNI_CMAKE_FIND_FRAMEWORK) set(CMAKE_FIND_FRAMEWORK ${_JNI_CMAKE_FIND_FRAMEWORK}) unset(_JNI_CMAKE_FIND_FRAMEWORK) else() unset(CMAKE_FIND_FRAMEWORK) endif() #include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake) INCLUDE (FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(JNI DEFAULT_MSG JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH) mark_as_advanced( JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_AWT_INCLUDE_PATH JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 ) set(JNI_LIBRARIES ${JAVA_AWT_LIBRARY} ${JAVA_JVM_LIBRARY} ) set(JNI_INCLUDE_DIRS ${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH2} ${JAVA_AWT_INCLUDE_PATH} ) message ("JNI_LIBRARIES=${JNI_LIBRARIES}") message ("JNI_INCLUDE_DIRS=${JNI_INCLUDE_DIRS}") hdf-java-2.11.0/config/cmake/NSIS.template.in0000644002344600011330000007155612326542262017036 0ustar byrnhdf; CPack install script designed for a nmake build ;-------------------------------- ; You must define these values !define VERSION "@CPACK_PACKAGE_VERSION@" !define PATCH "@CPACK_PACKAGE_VERSION_PATCH@" !define INST_DIR "@CPACK_TEMPORARY_DIRECTORY@" ;-------------------------------- ;Variables Var MUI_TEMP Var STARTMENU_FOLDER Var SV_ALLUSERS Var START_MENU Var DO_NOT_ADD_TO_PATH Var ADD_TO_PATH_ALL_USERS Var ADD_TO_PATH_CURRENT_USER Var INSTALL_DESKTOP Var IS_DEFAULT_INSTALLDIR ;-------------------------------- ;Include Modern UI !include "MUI.nsh" ;Default installation folder InstallDir "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" ;-------------------------------- ;General ;Name and file Name "@CPACK_NSIS_PACKAGE_NAME@" OutFile "@CPACK_TOPLEVEL_DIRECTORY@/@CPACK_OUTPUT_FILE_NAME@" ;Set compression SetCompressor @CPACK_NSIS_COMPRESSOR@ @CPACK_NSIS_DEFINES@ !include Sections.nsh ;--- Component support macros: --- ; The code for the add/remove functionality is from: ; http://nsis.sourceforge.net/Add/Remove_Functionality ; It has been modified slightly and extended to provide ; inter-component dependencies. Var AR_SecFlags Var AR_RegFlags @CPACK_NSIS_SECTION_SELECTED_VARS@ !include "FileAssociation.nsh" !insertmacro RegisterExtension ${FileAssociation_VERBOSE} 4 # all verbosity !insertmacro UnRegisterExtension ${FileAssociation_VERBOSE} 3 # no script ; Loads the "selected" flag for the section named SecName into the ; variable VarName. !macro LoadSectionSelectedIntoVar SecName VarName SectionGetFlags ${${SecName}} $${VarName} IntOp $${VarName} $${VarName} & ${SF_SELECTED} ;Turn off all other bits !macroend ; Loads the value of a variable... can we get around this? !macro LoadVar VarName IntOp $R0 0 + $${VarName} !macroend ; Sets the value of a variable !macro StoreVar VarName IntValue IntOp $${VarName} 0 + ${IntValue} !macroend !macro InitSection SecName ; This macro reads component installed flag from the registry and ;changes checked state of the section on the components page. ;Input: section index constant name specified in Section command. ClearErrors ;Reading component status from registry ReadRegDWORD $AR_RegFlags HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" "Installed" IfErrors "default_${SecName}" ;Status will stay default if registry value not found ;(component was never installed) IntOp $AR_RegFlags $AR_RegFlags & ${SF_SELECTED} ;Turn off all other bits SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading default section flags IntOp $AR_SecFlags $AR_SecFlags & 0xFFFE ;Turn lowest (enabled) bit off IntOp $AR_SecFlags $AR_RegFlags | $AR_SecFlags ;Change lowest bit ; Note whether this component was installed before !insertmacro StoreVar ${SecName}_was_installed $AR_RegFlags IntOp $R0 $AR_RegFlags & $AR_RegFlags ;Writing modified flags SectionSetFlags ${${SecName}} $AR_SecFlags "default_${SecName}:" !insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected !macroend !macro FinishSection SecName ; This macro reads section flag set by user and removes the section ;if it is not selected. ;Then it writes component installed flag to registry ;Input: section index constant name specified in Section command. SectionGetFlags ${${SecName}} $AR_SecFlags ;Reading section flags ;Checking lowest bit: IntOp $AR_SecFlags $AR_SecFlags & ${SF_SELECTED} IntCmp $AR_SecFlags 1 "leave_${SecName}" ;Section is not selected: ;Calling Section uninstall macro and writing zero installed flag !insertmacro "Remove_${${SecName}}" WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" \ "Installed" 0 Goto "exit_${SecName}" "leave_${SecName}:" ;Section is selected: WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@\Components\${SecName}" \ "Installed" 1 "exit_${SecName}:" !macroend !macro RemoveSection_CPack SecName ; This macro is used to call section's Remove_... macro ;from the uninstaller. ;Input: section index constant name specified in Section command. !insertmacro "Remove_${${SecName}}" !macroend ; Determine whether the selection of SecName changed !macro MaybeSelectionChanged SecName !insertmacro LoadVar ${SecName}_selected SectionGetFlags ${${SecName}} $R1 IntOp $R1 $R1 & ${SF_SELECTED} ;Turn off all other bits ; See if the status has changed: IntCmp $R0 $R1 "${SecName}_unchanged" !insertmacro LoadSectionSelectedIntoVar ${SecName} ${SecName}_selected IntCmp $R1 ${SF_SELECTED} "${SecName}_was_selected" !insertmacro "Deselect_required_by_${SecName}" goto "${SecName}_unchanged" "${SecName}_was_selected:" !insertmacro "Select_${SecName}_depends" "${SecName}_unchanged:" !macroend ;--- End of Add/Remove macros --- ;-------------------------------- ;Interface Settings !define MUI_HEADERIMAGE !define MUI_ABORTWARNING ;-------------------------------- ; path functions !verbose 3 !include "WinMessages.NSH" !verbose 4 ;---------------------------------------- ; based upon a script of "Written by KiCHiK 2003-01-18 05:57:02" ;---------------------------------------- !verbose 3 !include "WinMessages.NSH" !verbose 4 ;==================================================== ; get_NT_environment ; Returns: the selected environment ; Output : head of the stack ;==================================================== !macro select_NT_profile UN Function ${UN}select_NT_profile StrCmp $ADD_TO_PATH_ALL_USERS "1" 0 environment_single DetailPrint "Selected environment for all users" Push "all" Return environment_single: DetailPrint "Selected environment for current user only." Push "current" Return FunctionEnd !macroend !insertmacro select_NT_profile "" !insertmacro select_NT_profile "un." ;---------------------------------------------------- !define NT_current_env 'HKCU "Environment"' !define NT_all_env 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !ifndef WriteEnvStr_RegKey !ifdef ALL_USERS !define WriteEnvStr_RegKey \ 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"' !else !define WriteEnvStr_RegKey 'HKCU "Environment"' !endif !endif ; AddToPath - Adds the given dir to the search path. ; Input - head of the stack ; Note - Win9x systems requires reboot Function AddToPath Exch $0 Push $1 Push $2 Push $3 # don't add if the path doesn't exist IfFileExists "$0\*.*" "" AddToPath_done ReadEnvStr $1 PATH ; if the path is too long for a NSIS variable NSIS will return a 0 ; length string. If we find that, then warn and skip any path ; modification as it will trash the existing path. StrLen $2 $1 IntCmp $2 0 CheckPathLength_ShowPathWarning CheckPathLength_Done CheckPathLength_Done CheckPathLength_ShowPathWarning: Messagebox MB_OK|MB_ICONEXCLAMATION "Warning! PATH too long installer unable to modify PATH!" Goto AddToPath_done CheckPathLength_Done: Push "$1;" Push "$0;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done Push "$1;" Push "$0\;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done GetFullPathName /SHORT $3 $0 Push "$1;" Push "$3;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done Push "$1;" Push "$3\;" Call StrStr Pop $2 StrCmp $2 "" "" AddToPath_done Call IsNT Pop $1 StrCmp $1 1 AddToPath_NT ; Not on NT StrCpy $1 $WINDIR 2 FileOpen $1 "$1\autoexec.bat" a FileSeek $1 -1 END FileReadByte $1 $2 IntCmp $2 26 0 +2 +2 # DOS EOF FileSeek $1 -1 END # write over EOF FileWrite $1 "$\r$\nSET PATH=%PATH%;$3$\r$\n" FileClose $1 SetRebootFlag true Goto AddToPath_done AddToPath_NT: StrCmp $ADD_TO_PATH_ALL_USERS "1" ReadAllKey ReadRegStr $1 ${NT_current_env} "PATH" Goto DoTrim ReadAllKey: ReadRegStr $1 ${NT_all_env} "PATH" DoTrim: StrCmp $1 "" AddToPath_NTdoIt Push $1 Call Trim Pop $1 StrCpy $0 "$1;$0" AddToPath_NTdoIt: StrCmp $ADD_TO_PATH_ALL_USERS "1" WriteAllKey WriteRegExpandStr ${NT_current_env} "PATH" $0 Goto DoSend WriteAllKey: WriteRegExpandStr ${NT_all_env} "PATH" $0 DoSend: SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 AddToPath_done: Pop $3 Pop $2 Pop $1 Pop $0 FunctionEnd ; RemoveFromPath - Remove a given dir from the path ; Input: head of the stack Function un.RemoveFromPath Exch $0 Push $1 Push $2 Push $3 Push $4 Push $5 Push $6 IntFmt $6 "%c" 26 # DOS EOF Call un.IsNT Pop $1 StrCmp $1 1 unRemoveFromPath_NT ; Not on NT StrCpy $1 $WINDIR 2 FileOpen $1 "$1\autoexec.bat" r GetTempFileName $4 FileOpen $2 $4 w GetFullPathName /SHORT $0 $0 StrCpy $0 "SET PATH=%PATH%;$0" Goto unRemoveFromPath_dosLoop unRemoveFromPath_dosLoop: FileRead $1 $3 StrCpy $5 $3 1 -1 # read last char StrCmp $5 $6 0 +2 # if DOS EOF StrCpy $3 $3 -1 # remove DOS EOF so we can compare StrCmp $3 "$0$\r$\n" unRemoveFromPath_dosLoopRemoveLine StrCmp $3 "$0$\n" unRemoveFromPath_dosLoopRemoveLine StrCmp $3 "$0" unRemoveFromPath_dosLoopRemoveLine StrCmp $3 "" unRemoveFromPath_dosLoopEnd FileWrite $2 $3 Goto unRemoveFromPath_dosLoop unRemoveFromPath_dosLoopRemoveLine: SetRebootFlag true Goto unRemoveFromPath_dosLoop unRemoveFromPath_dosLoopEnd: FileClose $2 FileClose $1 StrCpy $1 $WINDIR 2 Delete "$1\autoexec.bat" CopyFiles /SILENT $4 "$1\autoexec.bat" Delete $4 Goto unRemoveFromPath_done unRemoveFromPath_NT: StrCmp $ADD_TO_PATH_ALL_USERS "1" unReadAllKey ReadRegStr $1 ${NT_current_env} "PATH" Goto unDoTrim unReadAllKey: ReadRegStr $1 ${NT_all_env} "PATH" unDoTrim: StrCpy $5 $1 1 -1 # copy last char StrCmp $5 ";" +2 # if last char != ; StrCpy $1 "$1;" # append ; Push $1 Push "$0;" Call un.StrStr ; Find `$0;` in $1 Pop $2 ; pos of our dir StrCmp $2 "" unRemoveFromPath_done ; else, it is in path # $0 - path to add # $1 - path var StrLen $3 "$0;" StrLen $4 $2 StrCpy $5 $1 -$4 # $5 is now the part before the path to remove StrCpy $6 $2 "" $3 # $6 is now the part after the path to remove StrCpy $3 $5$6 StrCpy $5 $3 1 -1 # copy last char StrCmp $5 ";" 0 +2 # if last char == ; StrCpy $3 $3 -1 # remove last char StrCmp $ADD_TO_PATH_ALL_USERS "1" unWriteAllKey WriteRegExpandStr ${NT_current_env} "PATH" $3 Goto unDoSend unWriteAllKey: WriteRegExpandStr ${NT_all_env} "PATH" $3 unDoSend: SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000 unRemoveFromPath_done: Pop $6 Pop $5 Pop $4 Pop $3 Pop $2 Pop $1 Pop $0 FunctionEnd ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Uninstall sutff ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ########################################### # Utility Functions # ########################################### ;==================================================== ; IsNT - Returns 1 if the current system is NT, 0 ; otherwise. ; Output: head of the stack ;==================================================== ; IsNT ; no input ; output, top of the stack = 1 if NT or 0 if not ; ; Usage: ; Call IsNT ; Pop $R0 ; ($R0 at this point is 1 or 0) !macro IsNT un Function ${un}IsNT Push $0 ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion StrCmp $0 "" 0 IsNT_yes ; we are not NT. Pop $0 Push 0 Return IsNT_yes: ; NT!!! Pop $0 Push 1 FunctionEnd !macroend !insertmacro IsNT "" !insertmacro IsNT "un." ; StrStr ; input, top of stack = string to search for ; top of stack-1 = string to search in ; output, top of stack (replaces with the portion of the string remaining) ; modifies no other variables. ; ; Usage: ; Push "this is a long ass string" ; Push "ass" ; Call StrStr ; Pop $R0 ; ($R0 at this point is "ass string") !macro StrStr un Function ${un}StrStr Exch $R1 ; st=haystack,old$R1, $R1=needle Exch ; st=old$R1,haystack Exch $R2 ; st=old$R1,old$R2, $R2=haystack Push $R3 Push $R4 Push $R5 StrLen $R3 $R1 StrCpy $R4 0 ; $R1=needle ; $R2=haystack ; $R3=len(needle) ; $R4=cnt ; $R5=tmp loop: StrCpy $R5 $R2 $R3 $R4 StrCmp $R5 $R1 done StrCmp $R5 "" done IntOp $R4 $R4 + 1 Goto loop done: StrCpy $R1 $R2 "" $R4 Pop $R5 Pop $R4 Pop $R3 Pop $R2 Exch $R1 FunctionEnd !macroend !insertmacro StrStr "" !insertmacro StrStr "un." Function Trim ; Added by Pelaca Exch $R1 Push $R2 Loop: StrCpy $R2 "$R1" 1 -1 StrCmp "$R2" " " RTrim StrCmp "$R2" "$\n" RTrim StrCmp "$R2" "$\r" RTrim StrCmp "$R2" ";" RTrim GoTo Done RTrim: StrCpy $R1 "$R1" -1 Goto Loop Done: Pop $R2 Exch $R1 FunctionEnd Function ConditionalAddToRegisty Pop $0 Pop $1 StrCmp "$0" "" ConditionalAddToRegisty_EmptyString WriteRegStr SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" \ "$1" "$0" ;MessageBox MB_OK "Set Registry: '$1' to '$0'" DetailPrint "Set install registry entry: '$1' to '$0'" ConditionalAddToRegisty_EmptyString: FunctionEnd ;-------------------------------- !ifdef CPACK_USES_DOWNLOAD Function DownloadFile IfFileExists $INSTDIR\* +2 CreateDirectory $INSTDIR Pop $0 ; Skip if already downloaded IfFileExists $INSTDIR\$0 0 +2 Return StrCpy $1 "@CPACK_DOWNLOAD_SITE@" try_again: NSISdl::download "$1/$0" "$INSTDIR\$0" Pop $1 StrCmp $1 "success" success StrCmp $1 "Cancelled" cancel MessageBox MB_OK "Download failed: $1" cancel: Return success: FunctionEnd !endif ;-------------------------------- ; Installation types @CPACK_NSIS_INSTALLATION_TYPES@ ;-------------------------------- ; Component sections @CPACK_NSIS_COMPONENT_SECTIONS@ ;-------------------------------- ; Define some macro setting for the gui @CPACK_NSIS_INSTALLER_MUI_ICON_CODE@ @CPACK_NSIS_INSTALLER_ICON_CODE@ @CPACK_NSIS_INSTALLER_MUI_COMPONENTS_DESC@ @CPACK_NSIS_INSTALLER_MUI_FINISHPAGE_RUN_CODE@ ;-------------------------------- ;Pages !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_LICENSE "@CPACK_RESOURCE_FILE_LICENSE@" Page custom InstallOptionsPage !insertmacro MUI_PAGE_DIRECTORY ;Start Menu Folder Page Configuration !define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX" !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder" !insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER @CPACK_NSIS_PAGE_COMPONENTS@ !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_FINISH !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES ;-------------------------------- ;Languages !insertmacro MUI_LANGUAGE "English" ;first language is the default language !insertmacro MUI_LANGUAGE "Albanian" !insertmacro MUI_LANGUAGE "Arabic" !insertmacro MUI_LANGUAGE "Basque" !insertmacro MUI_LANGUAGE "Belarusian" !insertmacro MUI_LANGUAGE "Bosnian" !insertmacro MUI_LANGUAGE "Breton" !insertmacro MUI_LANGUAGE "Bulgarian" !insertmacro MUI_LANGUAGE "Croatian" !insertmacro MUI_LANGUAGE "Czech" !insertmacro MUI_LANGUAGE "Danish" !insertmacro MUI_LANGUAGE "Dutch" !insertmacro MUI_LANGUAGE "Estonian" !insertmacro MUI_LANGUAGE "Farsi" !insertmacro MUI_LANGUAGE "Finnish" !insertmacro MUI_LANGUAGE "French" !insertmacro MUI_LANGUAGE "German" !insertmacro MUI_LANGUAGE "Greek" !insertmacro MUI_LANGUAGE "Hebrew" !insertmacro MUI_LANGUAGE "Hungarian" !insertmacro MUI_LANGUAGE "Icelandic" !insertmacro MUI_LANGUAGE "Indonesian" !insertmacro MUI_LANGUAGE "Irish" !insertmacro MUI_LANGUAGE "Italian" !insertmacro MUI_LANGUAGE "Japanese" !insertmacro MUI_LANGUAGE "Korean" !insertmacro MUI_LANGUAGE "Kurdish" !insertmacro MUI_LANGUAGE "Latvian" !insertmacro MUI_LANGUAGE "Lithuanian" !insertmacro MUI_LANGUAGE "Luxembourgish" !insertmacro MUI_LANGUAGE "Macedonian" !insertmacro MUI_LANGUAGE "Malay" !insertmacro MUI_LANGUAGE "Mongolian" !insertmacro MUI_LANGUAGE "Norwegian" !insertmacro MUI_LANGUAGE "Polish" !insertmacro MUI_LANGUAGE "Portuguese" !insertmacro MUI_LANGUAGE "PortugueseBR" !insertmacro MUI_LANGUAGE "Romanian" !insertmacro MUI_LANGUAGE "Russian" !insertmacro MUI_LANGUAGE "Serbian" !insertmacro MUI_LANGUAGE "SerbianLatin" !insertmacro MUI_LANGUAGE "SimpChinese" !insertmacro MUI_LANGUAGE "Slovak" !insertmacro MUI_LANGUAGE "Slovenian" !insertmacro MUI_LANGUAGE "Spanish" !insertmacro MUI_LANGUAGE "Swedish" !insertmacro MUI_LANGUAGE "Thai" !insertmacro MUI_LANGUAGE "TradChinese" !insertmacro MUI_LANGUAGE "Turkish" !insertmacro MUI_LANGUAGE "Ukrainian" !insertmacro MUI_LANGUAGE "Welsh" ;-------------------------------- ;Reserve Files ;These files should be inserted before other files in the data block ;Keep these lines before any File command ;Only for solid compression (by default, solid compression is enabled for BZIP2 and LZMA) ReserveFile "NSIS.InstallOptions.ini" !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS ;-------------------------------- ;Installer Sections Section "-Core installation" ;Use the entire tree produced by the INSTALL target. Keep the ;list of directories here in sync with the RMDir commands below. SetOutPath "$INSTDIR" @CPACK_NSIS_EXTRA_PREINSTALL_COMMANDS@ @CPACK_NSIS_FULL_INSTALL@ ;Store installation folder WriteRegStr SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "" $INSTDIR ;Create uninstaller WriteUninstaller "$INSTDIR\Uninstall.exe" Push "DisplayName" Push "@CPACK_NSIS_DISPLAY_NAME@" Call ConditionalAddToRegisty Push "DisplayVersion" Push "@CPACK_PACKAGE_VERSION@" Call ConditionalAddToRegisty Push "Publisher" Push "@CPACK_PACKAGE_VENDOR@" Call ConditionalAddToRegisty Push "UninstallString" Push "$INSTDIR\Uninstall.exe" Call ConditionalAddToRegisty Push "NoRepair" Push "1" Call ConditionalAddToRegisty !ifdef CPACK_NSIS_ADD_REMOVE ;Create add/remove functionality Push "ModifyPath" Push "$INSTDIR\AddRemove.exe" Call ConditionalAddToRegisty !else Push "NoModify" Push "1" Call ConditionalAddToRegisty !endif ; Optional registration Push "DisplayIcon" Push "$INSTDIR\@CPACK_NSIS_INSTALLED_ICON_NAME@" Call ConditionalAddToRegisty Push "HelpLink" Push "@CPACK_NSIS_HELP_LINK@" Call ConditionalAddToRegisty Push "URLInfoAbout" Push "@CPACK_NSIS_URL_INFO_ABOUT@" Call ConditionalAddToRegisty Push "Contact" Push "@CPACK_NSIS_CONTACT@" Call ConditionalAddToRegisty !insertmacro MUI_INSTALLOPTIONS_READ $INSTALL_DESKTOP "NSIS.InstallOptions.ini" "Field 5" "State" !insertmacro MUI_STARTMENU_WRITE_BEGIN Application ;Create shortcuts CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER" @CPACK_NSIS_CREATE_ICONS@ @CPACK_NSIS_CREATE_ICONS_EXTRA@ CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe" ;Read a value from an InstallOptions INI file !insertmacro MUI_INSTALLOPTIONS_READ $DO_NOT_ADD_TO_PATH "NSIS.InstallOptions.ini" "Field 2" "State" !insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_ALL_USERS "NSIS.InstallOptions.ini" "Field 3" "State" !insertmacro MUI_INSTALLOPTIONS_READ $ADD_TO_PATH_CURRENT_USER "NSIS.InstallOptions.ini" "Field 4" "State" ; Write special uninstall registry entries Push "StartMenu" Push "$STARTMENU_FOLDER" Call ConditionalAddToRegisty Push "DoNotAddToPath" Push "$DO_NOT_ADD_TO_PATH" Call ConditionalAddToRegisty Push "AddToPathAllUsers" Push "$ADD_TO_PATH_ALL_USERS" Call ConditionalAddToRegisty Push "AddToPathCurrentUser" Push "$ADD_TO_PATH_CURRENT_USER" Call ConditionalAddToRegisty Push "InstallToDesktop" Push "$INSTALL_DESKTOP" Call ConditionalAddToRegisty !insertmacro MUI_STARTMENU_WRITE_END CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\HDFView.lnk" "$INSTDIR\bin\hdfview.bat" ${registerExtension} "$INSTDIR\bin\hdfview.bat" ".h5" "HDF5 File" ${registerExtension} "$INSTDIR\bin\hdfview.bat" ".hdf5" "HDF5 File" ${registerExtension} "$INSTDIR\bin\hdfview.bat" ".he5" "HDF5 File" ${registerExtension} "$INSTDIR\bin\hdfview.bat" ".hdf" "HDF4 File" ${registerExtension} "$INSTDIR\bin\hdfview.bat" ".h4" "HDF4 File" ${registerExtension} "$INSTDIR\bin\hdfview.bat" ".hdf4" "HDF4 File" ${registerExtension} "$INSTDIR\bin\hdfview.bat" ".he4" "HDF4 File" @CPACK_NSIS_EXTRA_INSTALL_COMMANDS@ SectionEnd Section "-Add to path" Push $INSTDIR\bin StrCmp "@CPACK_NSIS_MODIFY_PATH@" "ON" 0 doNotAddToPath StrCmp $DO_NOT_ADD_TO_PATH "1" doNotAddToPath 0 Call AddToPath doNotAddToPath: SectionEnd ;-------------------------------- ; Create custom pages Function InstallOptionsPage !insertmacro MUI_HEADER_TEXT "Install Options" "Choose options for installing @CPACK_NSIS_PACKAGE_NAME@" !insertmacro MUI_INSTALLOPTIONS_DISPLAY "NSIS.InstallOptions.ini" FunctionEnd ;-------------------------------- ; determine admin versus local install Function un.onInit ClearErrors UserInfo::GetName IfErrors noLM Pop $0 UserInfo::GetAccountType Pop $1 StrCmp $1 "Admin" 0 +3 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Admin group' Goto done StrCmp $1 "Power" 0 +3 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Power Users group' Goto done noLM: ;Get installation folder from registry if available done: FunctionEnd ;--- Add/Remove callback functions: --- !macro SectionList MacroName ;This macro used to perform operation on multiple sections. ;List all of your components in following manner here. @CPACK_NSIS_COMPONENT_SECTION_LIST@ !macroend Section -FinishComponents ;Removes unselected components and writes component status to registry !insertmacro SectionList "FinishSection" !ifdef CPACK_NSIS_ADD_REMOVE ; Get the name of the installer executable System::Call 'kernel32::GetModuleFileNameA(i 0, t .R0, i 1024) i r1' StrCpy $R3 $R0 ; Strip off the last 13 characters, to see if we have AddRemove.exe StrLen $R1 $R0 IntOp $R1 $R0 - 13 StrCpy $R2 $R0 13 $R1 StrCmp $R2 "AddRemove.exe" addremove_installed ; We're not running AddRemove.exe, so install it CopyFiles $R3 $INSTDIR\AddRemove.exe addremove_installed: !endif SectionEnd ;--- End of Add/Remove callback functions --- ;-------------------------------- ; Component dependencies Function .onSelChange !insertmacro SectionList MaybeSelectionChanged FunctionEnd ;-------------------------------- ;Uninstaller Section Section "Uninstall" ReadRegStr $START_MENU SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "StartMenu" ;MessageBox MB_OK "Start menu is in: $START_MENU" ReadRegStr $DO_NOT_ADD_TO_PATH SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "DoNotAddToPath" ReadRegStr $ADD_TO_PATH_ALL_USERS SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "AddToPathAllUsers" ReadRegStr $ADD_TO_PATH_CURRENT_USER SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "AddToPathCurrentUser" ;MessageBox MB_OK "Add to path: $DO_NOT_ADD_TO_PATH all users: $ADD_TO_PATH_ALL_USERS" ReadRegStr $INSTALL_DESKTOP SHCTX \ "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "InstallToDesktop" ;MessageBox MB_OK "Install to desktop: $INSTALL_DESKTOP " @CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS@ ${unregisterExtension} ".h5" "HDF5 File" ${unregisterExtension} ".hdf5" "HDF5 File" ${unregisterExtension} ".he5" "HDF5 File" ${unregisterExtension} ".hdf" "HDF4 File" ${unregisterExtension} ".h4" "HDF4 File" ${unregisterExtension} ".hdf4" "HDF4 File" ${unregisterExtension} ".he4" "HDF4 File" Delete "$SMPROGRAMS\$STARTMENU_FOLDER\HDFView.lnk" ;Remove files we installed. ;Keep the list of directories here in sync with the File commands above. @CPACK_NSIS_DELETE_FILES@ @CPACK_NSIS_DELETE_DIRECTORIES@ !ifdef CPACK_NSIS_ADD_REMOVE ;Remove the add/remove program Delete "$INSTDIR\AddRemove.exe" !endif ;Remove the uninstaller itself. Delete "$INSTDIR\Uninstall.exe" DeleteRegKey SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" ;Remove the installation directory if it is empty. RMDir "$INSTDIR" ; Remove the registry entries. DeleteRegKey SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" ; Removes all optional components !insertmacro SectionList "RemoveSection_CPack" !insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk" @CPACK_NSIS_DELETE_ICONS@ @CPACK_NSIS_DELETE_ICONS_EXTRA@ ;Delete empty start menu parent diretories StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP" startMenuDeleteLoop: ClearErrors RMDir $MUI_TEMP GetFullPathName $MUI_TEMP "$MUI_TEMP\.." IfErrors startMenuDeleteLoopDone StrCmp "$MUI_TEMP" "$SMPROGRAMS" startMenuDeleteLoopDone startMenuDeleteLoop startMenuDeleteLoopDone: ; If the user changed the shortcut, then untinstall may not work. This should ; try to fix it. StrCpy $MUI_TEMP "$START_MENU" Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk" @CPACK_NSIS_DELETE_ICONS_EXTRA@ ;Delete empty start menu parent diretories StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP" secondStartMenuDeleteLoop: ClearErrors RMDir $MUI_TEMP GetFullPathName $MUI_TEMP "$MUI_TEMP\.." IfErrors secondStartMenuDeleteLoopDone StrCmp "$MUI_TEMP" "$SMPROGRAMS" secondStartMenuDeleteLoopDone secondStartMenuDeleteLoop secondStartMenuDeleteLoopDone: DeleteRegKey /ifempty SHCTX "Software\@CPACK_PACKAGE_VENDOR@\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" Push $INSTDIR\bin StrCmp $DO_NOT_ADD_TO_PATH_ "1" doNotRemoveFromPath 0 Call un.RemoveFromPath doNotRemoveFromPath: SectionEnd ;-------------------------------- ; determine admin versus local install ; Is install for "AllUsers" or "JustMe"? ; Default to "JustMe" - set to "AllUsers" if admin or on Win9x ; This function is used for the very first "custom page" of the installer. ; This custom page does not show up visibly, but it executes prior to the ; first visible page and sets up $INSTDIR properly... ; Choose different default installation folder based on SV_ALLUSERS... ; "Program Files" for AllUsers, "My Documents" for JustMe... Function .onInit StrCmp "@CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL@" "ON" 0 inst ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@CPACK_PACKAGE_INSTALL_REGISTRY_KEY@" "UninstallString" StrCmp $0 "" inst MessageBox MB_YESNOCANCEL|MB_ICONEXCLAMATION \ "@CPACK_NSIS_PACKAGE_NAME@ is already installed. $\n$\nDo you want to uninstall the old version before installing the new one?" \ IDYES uninst IDNO inst Abort ;Run the uninstaller uninst: ClearErrors StrLen $2 "\Uninstall.exe" StrCpy $3 $0 -$2 # remove "\Uninstall.exe" from UninstallString to get path ExecWait '$0 _?=$3' ;Do not copy the uninstaller to a temp file IfErrors uninst_failed inst uninst_failed: MessageBox MB_OK|MB_ICONSTOP "Uninstall failed." Abort inst: ; Reads components status for registry !insertmacro SectionList "InitSection" ; check to see if /D has been used to change ; the install directory by comparing it to the ; install directory that is expected to be the ; default StrCpy $IS_DEFAULT_INSTALLDIR 0 StrCmp "$INSTDIR" "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" 0 +2 StrCpy $IS_DEFAULT_INSTALLDIR 1 StrCpy $SV_ALLUSERS "JustMe" ; if default install dir then change the default ; if it is installed for JustMe StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2 StrCpy $INSTDIR "$DOCUMENTS\@CPACK_PACKAGE_INSTALL_DIRECTORY@" ClearErrors UserInfo::GetName IfErrors noLM Pop $0 UserInfo::GetAccountType Pop $1 StrCmp $1 "Admin" 0 +4 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Admin group' StrCpy $SV_ALLUSERS "AllUsers" Goto done StrCmp $1 "Power" 0 +4 SetShellVarContext all ;MessageBox MB_OK 'User "$0" is in the Power Users group' StrCpy $SV_ALLUSERS "AllUsers" Goto done noLM: StrCpy $SV_ALLUSERS "AllUsers" ;Get installation folder from registry if available done: StrCmp $SV_ALLUSERS "AllUsers" 0 +3 StrCmp "$IS_DEFAULT_INSTALLDIR" "1" 0 +2 StrCpy $INSTDIR "@CPACK_NSIS_INSTALL_ROOT@\@CPACK_PACKAGE_INSTALL_DIRECTORY@" StrCmp "@CPACK_NSIS_MODIFY_PATH@" "ON" 0 noOptionsPage !insertmacro MUI_INSTALLOPTIONS_EXTRACT "NSIS.InstallOptions.ini" noOptionsPage: FunctionEnd hdf-java-2.11.0/config/cmake/UseJava.cmake0000644002344600011330000011056112341422524016441 0ustar byrnhdf#.rst: # UseJava # ------- # # Use Module for Java # # This file provides functions for Java. It is assumed that # FindJava.cmake has already been loaded. See FindJava.cmake for # information on how to load Java into your CMake project. # # :: # # add_jar(target_name # [SOURCES] source1 [source2 ...] [resource1 ...] # [INCLUDE_JARS jar1 [jar2 ...]] # [ENTRY_POINT entry] # [VERSION version] # [OUTPUT_NAME name] # [OUTPUT_DIR dir] # ) # # This command creates a .jar. It compiles the given # source files (source) and adds the given resource files (resource) to # the jar file. If only resource files are given then just a jar file # is created. The list of include jars are added to the classpath when # compiling the java sources and also to the dependencies of the target. # INCLUDE_JARS also accepts other target names created by add_jar. For # backwards compatibility, jar files listed as sources are ignored (as # they have been since the first version of this module). # # The default OUTPUT_DIR can also be changed by setting the variable # CMAKE_JAVA_TARGET_OUTPUT_DIR. # # Additional instructions: # # :: # # To add compile flags to the target you can set these flags with # the following variable: # # # # :: # # set(CMAKE_JAVA_COMPILE_FLAGS -nowarn) # # # # :: # # To add a path or a jar file to the class path you can do this # with the CMAKE_JAVA_INCLUDE_PATH variable. # # # # :: # # set(CMAKE_JAVA_INCLUDE_PATH /usr/share/java/shibboleet.jar) # # # # :: # # To use a different output name for the target you can set it with: # # # # :: # # add_jar(foobar foobar.java OUTPUT_NAME shibboleet.jar) # # # # :: # # To use a different output directory than CMAKE_CURRENT_BINARY_DIR # you can set it with: # # # # :: # # add_jar(foobar foobar.java OUTPUT_DIR ${PROJECT_BINARY_DIR}/bin) # # # # :: # # To define an entry point in your jar you can set it with the ENTRY_POINT # named argument: # # # # :: # # add_jar(example ENTRY_POINT com/examples/MyProject/Main) # # # # :: # # To define a custom manifest for the jar, you can set it with the manifest # named argument: # # # # :: # # add_jar(example MANIFEST /path/to/manifest) # # # # :: # # To add a VERSION to the target output name you can set it using # the VERSION named argument to add_jar. This will create a jar file with the # name shibboleet-1.0.0.jar and will create a symlink shibboleet.jar # pointing to the jar with the version information. # # # # :: # # add_jar(shibboleet shibbotleet.java VERSION 1.2.0) # # # # :: # # If the target is a JNI library, utilize the following commands to # create a JNI symbolic link: # # # # :: # # set(CMAKE_JNI_TARGET TRUE) # add_jar(shibboleet shibbotleet.java VERSION 1.2.0) # install_jar(shibboleet ${LIB_INSTALL_DIR}/shibboleet) # install_jni_symlink(shibboleet ${JAVA_LIB_INSTALL_DIR}) # # # # :: # # If a single target needs to produce more than one jar from its # java source code, to prevent the accumulation of duplicate class # files in subsequent jars, set/reset CMAKE_JAR_CLASSES_PREFIX prior # to calling the add_jar() function: # # # # :: # # set(CMAKE_JAR_CLASSES_PREFIX com/redhat/foo) # add_jar(foo foo.java) # # # # :: # # set(CMAKE_JAR_CLASSES_PREFIX com/redhat/bar) # add_jar(bar bar.java) # # # # Target Properties: # # :: # # The add_jar() functions sets some target properties. You can get these # properties with the # get_property(TARGET PROPERTY ) # command. # # # # :: # # INSTALL_FILES The files which should be installed. This is used by # install_jar(). # JNI_SYMLINK The JNI symlink which should be installed. # This is used by install_jni_symlink(). # JAR_FILE The location of the jar file so that you can include # it. # CLASS_DIR The directory where the class files can be found. For # example to use them with javah. # # :: # # find_jar( # name | NAMES name1 [name2 ...] # [PATHS path1 [path2 ... ENV var]] # [VERSIONS version1 [version2]] # [DOC "cache documentation string"] # ) # # This command is used to find a full path to the named jar. A cache # entry named by is created to stor the result of this command. # If the full path to a jar is found the result is stored in the # variable and the search will not repeated unless the variable is # cleared. If nothing is found, the result will be -NOTFOUND, and # the search will be attempted again next time find_jar is invoked with # the same variable. The name of the full path to a file that is # searched for is specified by the names listed after NAMES argument. # Additional search locations can be specified after the PATHS argument. # If you require special a version of a jar file you can specify it with # the VERSIONS argument. The argument after DOC will be used for the # documentation string in the cache. # # :: # # install_jar(TARGET_NAME DESTINATION) # # This command installs the TARGET_NAME files to the given DESTINATION. # It should be called in the same scope as add_jar() or it will fail. # # :: # # install_jni_symlink(TARGET_NAME DESTINATION) # # This command installs the TARGET_NAME JNI symlinks to the given # DESTINATION. It should be called in the same scope as add_jar() or it # will fail. # # :: # # create_javadoc( # PACKAGES pkg1 [pkg2 ...] # [SOURCEPATH ] # [CLASSPATH ] # [INSTALLPATH ] # [DOCTITLE "the documentation title"] # [WINDOWTITLE "the title of the document"] # [AUTHOR TRUE|FALSE] # [USE TRUE|FALSE] # [VERSION TRUE|FALSE] # ) # # Create java documentation based on files or packages. For more # details please read the javadoc manpage. # # There are two main signatures for create_javadoc. The first signature # works with package names on a path with source files: # # :: # # Example: # create_javadoc(my_example_doc # PACKAGES com.exmaple.foo com.example.bar # SOURCEPATH "${CMAKE_CURRENT_SOURCE_DIR}" # CLASSPATH ${CMAKE_JAVA_INCLUDE_PATH} # WINDOWTITLE "My example" # DOCTITLE "

    My example

    " # AUTHOR TRUE # USE TRUE # VERSION TRUE # ) # # # # The second signature for create_javadoc works on a given list of # files. # # :: # # create_javadoc( # FILES file1 [file2 ...] # [CLASSPATH ] # [INSTALLPATH ] # [DOCTITLE "the documentation title"] # [WINDOWTITLE "the title of the document"] # [AUTHOR TRUE|FALSE] # [USE TRUE|FALSE] # [VERSION TRUE|FALSE] # ) # # # # Example: # # :: # # create_javadoc(my_example_doc # FILES ${example_SRCS} # CLASSPATH ${CMAKE_JAVA_INCLUDE_PATH} # WINDOWTITLE "My example" # DOCTITLE "

    My example

    " # AUTHOR TRUE # USE TRUE # VERSION TRUE # ) # # # # Both signatures share most of the options. These options are the same # as what you can find in the javadoc manpage. Please look at the # manpage for CLASSPATH, DOCTITLE, WINDOWTITLE, AUTHOR, USE and VERSION. # # The documentation will be by default installed to # # :: # # ${CMAKE_INSTALL_PREFIX}/share/javadoc/ # # # # if you don't set the INSTALLPATH. #============================================================================= # Copyright 2013 OpenGamma Ltd. # Copyright 2010-2011 Andreas schneider # Copyright 2010-2013 Kitware, Inc. # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) include(CMakeParseArguments) function (__java_copy_file src dest comment) add_custom_command( OUTPUT ${dest} COMMAND cmake -E copy_if_different ARGS ${src} ${dest} DEPENDS ${src} COMMENT ${comment}) endfunction () # define helper scripts set(_JAVA_CLASS_FILELIST_SCRIPT ${CMAKE_CURRENT_LIST_DIR}/UseJavaClassFilelist.cmake) set(_JAVA_SYMLINK_SCRIPT ${CMAKE_CURRENT_LIST_DIR}/UseJavaSymlinks.cmake) function(add_jar _TARGET_NAME) # In CMake < 2.8.12, add_jar used variables which were set prior to calling # add_jar for customizing the behavior of add_jar. In order to be backwards # compatible, check if any of those variables are set, and use them to # initialize values of the named arguments. (Giving the corresponding named # argument will override the value set here.) # # New features should use named arguments only. if(DEFINED CMAKE_JAVA_TARGET_VERSION) set(_add_jar_VERSION "${CMAKE_JAVA_TARGET_VERSION}") endif() if(DEFINED CMAKE_JAVA_TARGET_OUTPUT_DIR) set(_add_jar_OUTPUT_DIR "${CMAKE_JAVA_TARGET_OUTPUT_DIR}") endif() if(DEFINED CMAKE_JAVA_TARGET_OUTPUT_NAME) set(_add_jar_OUTPUT_NAME "${CMAKE_JAVA_TARGET_OUTPUT_NAME}") # reset set(CMAKE_JAVA_TARGET_OUTPUT_NAME) endif() if(DEFINED CMAKE_JAVA_JAR_ENTRY_POINT) set(_add_jar_ENTRY_POINT "${CMAKE_JAVA_JAR_ENTRY_POINT}") endif() cmake_parse_arguments(_add_jar "" "VERSION;OUTPUT_DIR;OUTPUT_NAME;ENTRY_POINT;MANIFEST" "SOURCES;INCLUDE_JARS" ${ARGN} ) set(_JAVA_SOURCE_FILES ${_add_jar_SOURCES} ${_add_jar_UNPARSED_ARGUMENTS}) if (NOT DEFINED _add_jar_OUTPUT_DIR) set(_add_jar_OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}) endif() if (_add_jar_ENTRY_POINT) set(_ENTRY_POINT_OPTION e) set(_ENTRY_POINT_VALUE ${_add_jar_ENTRY_POINT}) endif () if (_add_jar_MANIFEST) set(_MANIFEST_OPTION m) set(_MANIFEST_VALUE ${_add_jar_MANIFEST}) endif () if (LIBRARY_OUTPUT_PATH) set(CMAKE_JAVA_LIBRARY_OUTPUT_PATH ${LIBRARY_OUTPUT_PATH}) else () set(CMAKE_JAVA_LIBRARY_OUTPUT_PATH ${_add_jar_OUTPUT_DIR}) endif () set(CMAKE_JAVA_INCLUDE_PATH ${CMAKE_JAVA_INCLUDE_PATH} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_JAVA_OBJECT_OUTPUT_PATH} ${CMAKE_JAVA_LIBRARY_OUTPUT_PATH} ) if (WIN32 AND CMAKE_HOST_SYSTEM_NAME MATCHES "Windows") set(CMAKE_JAVA_INCLUDE_FLAG_SEP ";") else () set(CMAKE_JAVA_INCLUDE_FLAG_SEP ":") endif() foreach (JAVA_INCLUDE_DIR ${CMAKE_JAVA_INCLUDE_PATH}) set(CMAKE_JAVA_INCLUDE_PATH_FINAL "${CMAKE_JAVA_INCLUDE_PATH_FINAL}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${JAVA_INCLUDE_DIR}") endforeach() set(CMAKE_JAVA_CLASS_OUTPUT_PATH "${_add_jar_OUTPUT_DIR}${CMAKE_FILES_DIRECTORY}/${_TARGET_NAME}.dir") set(_JAVA_TARGET_OUTPUT_NAME "${_TARGET_NAME}.jar") if (_add_jar_OUTPUT_NAME AND _add_jar_VERSION) set(_JAVA_TARGET_OUTPUT_NAME "${_add_jar_OUTPUT_NAME}-${_add_jar_VERSION}.jar") set(_JAVA_TARGET_OUTPUT_LINK "${_add_jar_OUTPUT_NAME}.jar") elseif (_add_jar_VERSION) set(_JAVA_TARGET_OUTPUT_NAME "${_TARGET_NAME}-${_add_jar_VERSION}.jar") set(_JAVA_TARGET_OUTPUT_LINK "${_TARGET_NAME}.jar") elseif (_add_jar_OUTPUT_NAME) set(_JAVA_TARGET_OUTPUT_NAME "${_add_jar_OUTPUT_NAME}.jar") endif () set(_JAVA_CLASS_FILES) set(_JAVA_COMPILE_FILES) set(_JAVA_DEPENDS) set(_JAVA_COMPILE_DEPENDS) set(_JAVA_RESOURCE_FILES) set(_JAVA_RESOURCE_FILES_RELATIVE) foreach(_JAVA_SOURCE_FILE ${_JAVA_SOURCE_FILES}) get_filename_component(_JAVA_EXT ${_JAVA_SOURCE_FILE} EXT) get_filename_component(_JAVA_FILE ${_JAVA_SOURCE_FILE} NAME_WE) get_filename_component(_JAVA_PATH ${_JAVA_SOURCE_FILE} PATH) get_filename_component(_JAVA_FULL ${_JAVA_SOURCE_FILE} ABSOLUTE) if (_JAVA_EXT MATCHES ".java") file(RELATIVE_PATH _JAVA_REL_BINARY_PATH ${_add_jar_OUTPUT_DIR} ${_JAVA_FULL}) file(RELATIVE_PATH _JAVA_REL_SOURCE_PATH ${CMAKE_CURRENT_SOURCE_DIR} ${_JAVA_FULL}) string(LENGTH ${_JAVA_REL_BINARY_PATH} _BIN_LEN) string(LENGTH ${_JAVA_REL_SOURCE_PATH} _SRC_LEN) if (${_BIN_LEN} LESS ${_SRC_LEN}) set(_JAVA_REL_PATH ${_JAVA_REL_BINARY_PATH}) else () set(_JAVA_REL_PATH ${_JAVA_REL_SOURCE_PATH}) endif () get_filename_component(_JAVA_REL_PATH ${_JAVA_REL_PATH} PATH) list(APPEND _JAVA_COMPILE_FILES ${_JAVA_SOURCE_FILE}) set(_JAVA_CLASS_FILE "${CMAKE_JAVA_CLASS_OUTPUT_PATH}/${_JAVA_REL_PATH}/${_JAVA_FILE}.class") set(_JAVA_CLASS_FILES ${_JAVA_CLASS_FILES} ${_JAVA_CLASS_FILE}) elseif (_JAVA_EXT MATCHES ".jar" OR _JAVA_EXT MATCHES ".war" OR _JAVA_EXT MATCHES ".ear" OR _JAVA_EXT MATCHES ".sar") # Ignored for backward compatibility elseif (_JAVA_EXT STREQUAL "") list(APPEND CMAKE_JAVA_INCLUDE_PATH ${JAVA_JAR_TARGET_${_JAVA_SOURCE_FILE}} ${JAVA_JAR_TARGET_${_JAVA_SOURCE_FILE}_CLASSPATH}) list(APPEND _JAVA_DEPENDS ${JAVA_JAR_TARGET_${_JAVA_SOURCE_FILE}}) else () __java_copy_file(${CMAKE_CURRENT_SOURCE_DIR}/${_JAVA_SOURCE_FILE} ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/${_JAVA_SOURCE_FILE} "Copying ${_JAVA_SOURCE_FILE} to the build directory") list(APPEND _JAVA_RESOURCE_FILES ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/${_JAVA_SOURCE_FILE}) list(APPEND _JAVA_RESOURCE_FILES_RELATIVE ${_JAVA_SOURCE_FILE}) endif () endforeach() foreach(_JAVA_INCLUDE_JAR ${_add_jar_INCLUDE_JARS}) if (TARGET ${_JAVA_INCLUDE_JAR}) get_target_property(_JAVA_JAR_PATH ${_JAVA_INCLUDE_JAR} JAR_FILE) if (_JAVA_JAR_PATH) set(CMAKE_JAVA_INCLUDE_PATH_FINAL "${CMAKE_JAVA_INCLUDE_PATH_FINAL}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${_JAVA_JAR_PATH}") list(APPEND CMAKE_JAVA_INCLUDE_PATH ${_JAVA_JAR_PATH}) list(APPEND _JAVA_DEPENDS ${_JAVA_INCLUDE_JAR}) list(APPEND _JAVA_COMPILE_DEPENDS ${_JAVA_INCLUDE_JAR}) else () message(SEND_ERROR "add_jar: INCLUDE_JARS target ${_JAVA_INCLUDE_JAR} is not a jar") endif () else () set(CMAKE_JAVA_INCLUDE_PATH_FINAL "${CMAKE_JAVA_INCLUDE_PATH_FINAL}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${_JAVA_INCLUDE_JAR}") list(APPEND CMAKE_JAVA_INCLUDE_PATH "${_JAVA_INCLUDE_JAR}") list(APPEND _JAVA_DEPENDS "${_JAVA_INCLUDE_JAR}") list(APPEND _JAVA_COMPILE_DEPENDS "${_JAVA_INCLUDE_JAR}") endif () endforeach() # create an empty java_class_filelist if (NOT EXISTS ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_class_filelist) file(WRITE ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_class_filelist "") endif() if (_JAVA_COMPILE_FILES) # Create the list of files to compile. set(_JAVA_SOURCES_FILE ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_sources) string(REPLACE ";" "\"\n\"" _JAVA_COMPILE_STRING "\"${_JAVA_COMPILE_FILES}\"") file(WRITE ${_JAVA_SOURCES_FILE} ${_JAVA_COMPILE_STRING}) # Compile the java files and create a list of class files add_custom_command( # NOTE: this command generates an artificial dependency file OUTPUT ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_compiled_${_TARGET_NAME} COMMAND ${Java_JAVAC_EXECUTABLE} ${CMAKE_JAVA_COMPILE_FLAGS} -classpath "${CMAKE_JAVA_INCLUDE_PATH_FINAL}" -d ${CMAKE_JAVA_CLASS_OUTPUT_PATH} @${_JAVA_SOURCES_FILE} COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_compiled_${_TARGET_NAME} DEPENDS ${_JAVA_COMPILE_FILES} ${_JAVA_COMPILE_DEPENDS} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMMENT "Building Java objects for ${_TARGET_NAME}.jar" ) add_custom_command( OUTPUT ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_class_filelist COMMAND ${CMAKE_COMMAND} -DCMAKE_JAVA_CLASS_OUTPUT_PATH=${CMAKE_JAVA_CLASS_OUTPUT_PATH} -DCMAKE_JAR_CLASSES_PREFIX="${CMAKE_JAR_CLASSES_PREFIX}" -P ${_JAVA_CLASS_FILELIST_SCRIPT} DEPENDS ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_compiled_${_TARGET_NAME} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) endif () # create the jar file set(_JAVA_JAR_OUTPUT_PATH ${_add_jar_OUTPUT_DIR}/${_JAVA_TARGET_OUTPUT_NAME}) if (CMAKE_JNI_TARGET) add_custom_command( OUTPUT ${_JAVA_JAR_OUTPUT_PATH} COMMAND ${Java_JAR_EXECUTABLE} -cf${_ENTRY_POINT_OPTION}${_MANIFEST_OPTION} ${_JAVA_JAR_OUTPUT_PATH} ${_ENTRY_POINT_VALUE} ${_MANIFEST_VALUE} ${_JAVA_RESOURCE_FILES_RELATIVE} @java_class_filelist COMMAND ${CMAKE_COMMAND} -D_JAVA_TARGET_DIR=${_add_jar_OUTPUT_DIR} -D_JAVA_TARGET_OUTPUT_NAME=${_JAVA_TARGET_OUTPUT_NAME} -D_JAVA_TARGET_OUTPUT_LINK=${_JAVA_TARGET_OUTPUT_LINK} -P ${_JAVA_SYMLINK_SCRIPT} COMMAND ${CMAKE_COMMAND} -D_JAVA_TARGET_DIR=${_add_jar_OUTPUT_DIR} -D_JAVA_TARGET_OUTPUT_NAME=${_JAVA_JAR_OUTPUT_PATH} -D_JAVA_TARGET_OUTPUT_LINK=${_JAVA_TARGET_OUTPUT_LINK} -P ${_JAVA_SYMLINK_SCRIPT} DEPENDS ${_JAVA_RESOURCE_FILES} ${_JAVA_DEPENDS} ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_class_filelist WORKING_DIRECTORY ${CMAKE_JAVA_CLASS_OUTPUT_PATH} COMMENT "Creating Java archive ${_JAVA_TARGET_OUTPUT_NAME}" ) else () add_custom_command( OUTPUT ${_JAVA_JAR_OUTPUT_PATH} COMMAND ${Java_JAR_EXECUTABLE} -cf${_ENTRY_POINT_OPTION}${_MANIFEST_OPTION} ${_JAVA_JAR_OUTPUT_PATH} ${_ENTRY_POINT_VALUE} ${_MANIFEST_VALUE} ${_JAVA_RESOURCE_FILES_RELATIVE} @java_class_filelist COMMAND ${CMAKE_COMMAND} -D_JAVA_TARGET_DIR=${_add_jar_OUTPUT_DIR} -D_JAVA_TARGET_OUTPUT_NAME=${_JAVA_TARGET_OUTPUT_NAME} -D_JAVA_TARGET_OUTPUT_LINK=${_JAVA_TARGET_OUTPUT_LINK} -P ${_JAVA_SYMLINK_SCRIPT} WORKING_DIRECTORY ${CMAKE_JAVA_CLASS_OUTPUT_PATH} DEPENDS ${_JAVA_RESOURCE_FILES} ${_JAVA_DEPENDS} ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_class_filelist COMMENT "Creating Java archive ${_JAVA_TARGET_OUTPUT_NAME}" ) endif () # Add the target and make sure we have the latest resource files. add_custom_target(${_TARGET_NAME} ALL DEPENDS ${_JAVA_JAR_OUTPUT_PATH}) set_property( TARGET ${_TARGET_NAME} PROPERTY INSTALL_FILES ${_JAVA_JAR_OUTPUT_PATH} ) if (_JAVA_TARGET_OUTPUT_LINK) set_property( TARGET ${_TARGET_NAME} PROPERTY INSTALL_FILES ${_JAVA_JAR_OUTPUT_PATH} ${_add_jar_OUTPUT_DIR}/${_JAVA_TARGET_OUTPUT_LINK} ) if (CMAKE_JNI_TARGET) set_property( TARGET ${_TARGET_NAME} PROPERTY JNI_SYMLINK ${_add_jar_OUTPUT_DIR}/${_JAVA_TARGET_OUTPUT_LINK} ) endif () endif () set_property( TARGET ${_TARGET_NAME} PROPERTY JAR_FILE ${_JAVA_JAR_OUTPUT_PATH} ) set_property( TARGET ${_TARGET_NAME} PROPERTY CLASSDIR ${CMAKE_JAVA_CLASS_OUTPUT_PATH} ) endfunction() function(INSTALL_JAR _TARGET_NAME _DESTINATION _COMPONENT) get_property(__FILES TARGET ${_TARGET_NAME} PROPERTY INSTALL_FILES ) if (__FILES) install( FILES ${__FILES} DESTINATION ${_DESTINATION} COMPONENT ${_COMPONENT} ) else () message(SEND_ERROR "The target ${_TARGET_NAME} is not known in this scope.") endif () endfunction() function(INSTALL_JNI_SYMLINK _TARGET_NAME _DESTINATION _COMPONENT) get_property(__SYMLINK TARGET ${_TARGET_NAME} PROPERTY JNI_SYMLINK ) if (__SYMLINK) install( FILES ${__SYMLINK} DESTINATION ${_DESTINATION} COMPONENT ${_COMPONENT} ) else () message(SEND_ERROR "The target ${_TARGET_NAME} is not known in this scope.") endif () endfunction() function (find_jar VARIABLE) set(_jar_names) set(_jar_files) set(_jar_versions) set(_jar_paths /usr/share/java/ /usr/local/share/java/ ${Java_JAR_PATHS}) set(_jar_doc "NOTSET") set(_state "name") foreach (arg ${ARGN}) if (${_state} STREQUAL "name") if (${arg} STREQUAL "VERSIONS") set(_state "versions") elseif (${arg} STREQUAL "NAMES") set(_state "names") elseif (${arg} STREQUAL "PATHS") set(_state "paths") elseif (${arg} STREQUAL "DOC") set(_state "doc") else () set(_jar_names ${arg}) if (_jar_doc STREQUAL "NOTSET") set(_jar_doc "Finding ${arg} jar") endif () endif () elseif (${_state} STREQUAL "versions") if (${arg} STREQUAL "NAMES") set(_state "names") elseif (${arg} STREQUAL "PATHS") set(_state "paths") elseif (${arg} STREQUAL "DOC") set(_state "doc") else () set(_jar_versions ${_jar_versions} ${arg}) endif () elseif (${_state} STREQUAL "names") if (${arg} STREQUAL "VERSIONS") set(_state "versions") elseif (${arg} STREQUAL "PATHS") set(_state "paths") elseif (${arg} STREQUAL "DOC") set(_state "doc") else () set(_jar_names ${_jar_names} ${arg}) if (_jar_doc STREQUAL "NOTSET") set(_jar_doc "Finding ${arg} jar") endif () endif () elseif (${_state} STREQUAL "paths") if (${arg} STREQUAL "VERSIONS") set(_state "versions") elseif (${arg} STREQUAL "NAMES") set(_state "names") elseif (${arg} STREQUAL "DOC") set(_state "doc") else () set(_jar_paths ${_jar_paths} ${arg}) endif () elseif (${_state} STREQUAL "doc") if (${arg} STREQUAL "VERSIONS") set(_state "versions") elseif (${arg} STREQUAL "NAMES") set(_state "names") elseif (${arg} STREQUAL "PATHS") set(_state "paths") else () set(_jar_doc ${arg}) endif () endif () endforeach () if (NOT _jar_names) message(FATAL_ERROR "find_jar: No name to search for given") endif () foreach (jar_name ${_jar_names}) foreach (version ${_jar_versions}) set(_jar_files ${_jar_files} ${jar_name}-${version}.jar) endforeach () set(_jar_files ${_jar_files} ${jar_name}.jar) endforeach () find_file(${VARIABLE} NAMES ${_jar_files} PATHS ${_jar_paths} DOC ${_jar_doc} NO_DEFAULT_PATH) endfunction () function(create_javadoc _target) set(_javadoc_packages) set(_javadoc_files) set(_javadoc_sourcepath) set(_javadoc_classpath) set(_javadoc_installpath "${CMAKE_INSTALL_PREFIX}/share/javadoc") set(_javadoc_doctitle) set(_javadoc_windowtitle) set(_javadoc_author FALSE) set(_javadoc_version FALSE) set(_javadoc_use FALSE) set(_state "package") foreach (arg ${ARGN}) if (${_state} STREQUAL "package") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "CLASSPATH") set(_state "classpath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () set(_javadoc_packages ${arg}) set(_state "packages") endif () elseif (${_state} STREQUAL "packages") if (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "CLASSPATH") set(_state "classpath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () list(APPEND _javadoc_packages ${arg}) endif () elseif (${_state} STREQUAL "files") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "CLASSPATH") set(_state "classpath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () list(APPEND _javadoc_files ${arg}) endif () elseif (${_state} STREQUAL "sourcepath") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "CLASSPATH") set(_state "classpath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () list(APPEND _javadoc_sourcepath ${arg}) endif () elseif (${_state} STREQUAL "classpath") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () list(APPEND _javadoc_classpath ${arg}) endif () elseif (${_state} STREQUAL "installpath") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () set(_javadoc_installpath ${arg}) endif () elseif (${_state} STREQUAL "doctitle") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "CLASSPATH") set(_state "classpath") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () set(_javadoc_doctitle ${arg}) endif () elseif (${_state} STREQUAL "windowtitle") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "CLASSPATH") set(_state "classpath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () set(_javadoc_windowtitle ${arg}) endif () elseif (${_state} STREQUAL "author") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "CLASSPATH") set(_state "classpath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () set(_javadoc_author ${arg}) endif () elseif (${_state} STREQUAL "use") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "CLASSPATH") set(_state "classpath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () set(_javadoc_use ${arg}) endif () elseif (${_state} STREQUAL "version") if (${arg} STREQUAL "PACKAGES") set(_state "packages") elseif (${arg} STREQUAL "FILES") set(_state "files") elseif (${arg} STREQUAL "SOURCEPATH") set(_state "sourcepath") elseif (${arg} STREQUAL "CLASSPATH") set(_state "classpath") elseif (${arg} STREQUAL "INSTALLPATH") set(_state "installpath") elseif (${arg} STREQUAL "DOCTITLE") set(_state "doctitle") elseif (${arg} STREQUAL "WINDOWTITLE") set(_state "windowtitle") elseif (${arg} STREQUAL "AUTHOR") set(_state "author") elseif (${arg} STREQUAL "USE") set(_state "use") elseif (${arg} STREQUAL "VERSION") set(_state "version") else () set(_javadoc_version ${arg}) endif () endif () endforeach () set(_javadoc_builddir ${CMAKE_CURRENT_BINARY_DIR}/javadoc/${_target}) set(_javadoc_options -d ${_javadoc_builddir}) if (_javadoc_sourcepath) set(_start TRUE) foreach(_path ${_javadoc_sourcepath}) if (_start) set(_sourcepath ${_path}) set(_start FALSE) else () set(_sourcepath ${_sourcepath}:${_path}) endif () endforeach() set(_javadoc_options ${_javadoc_options} -sourcepath ${_sourcepath}) endif () if (_javadoc_classpath) set(_start TRUE) foreach(_path ${_javadoc_classpath}) if (_start) set(_classpath ${_path}) set(_start FALSE) else () set(_classpath ${_classpath}:${_path}) endif () endforeach() set(_javadoc_options ${_javadoc_options} -classpath "${_classpath}") endif () if (_javadoc_doctitle) set(_javadoc_options ${_javadoc_options} -doctitle '${_javadoc_doctitle}') endif () if (_javadoc_windowtitle) set(_javadoc_options ${_javadoc_options} -windowtitle '${_javadoc_windowtitle}') endif () if (_javadoc_author) set(_javadoc_options ${_javadoc_options} -author) endif () if (_javadoc_use) set(_javadoc_options ${_javadoc_options} -use) endif () if (_javadoc_version) set(_javadoc_options ${_javadoc_options} -version) endif () add_custom_target(${_target}_javadoc ALL COMMAND ${Java_JAVADOC_EXECUTABLE} ${_javadoc_options} ${_javadoc_files} ${_javadoc_packages} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} ) install( DIRECTORY ${_javadoc_builddir} DESTINATION ${_javadoc_installpath} ) endfunction() hdf-java-2.11.0/config/cmake/FindHDFJAVA.cmake.in0000644002344600011330000000514712326542262017364 0ustar byrnhdf# # To be used by projects that make use of CMakeified hdf-java # # # Find the HDFJAVA includes and get all installed hdf-java library settings from # HDFJAVA-config.cmake file : Requires a CMake compatible hdf-java-@HDFJAVA_PACKAGE_VERSION@ or later # for this feature to work. The following vars are set if hdf-java is found. # # HDFJAVA_FOUND - True if found, otherwise all other vars are undefined # HDFJAVA_VERSION_STRING - full version (e.g. @HDFJAVA_PACKAGE_VERSION@) # HDFJAVA_VERSION_MAJOR - major part of version (e.g. @HDFJAVA_PACKAGE_VERSION_MAJOR@) # HDFJAVA_VERSION_MINOR - minor part (e.g. @HDFJAVA_PACKAGE_VERSION_MINOR@) # # Target names that are valid (depending on enabled options) # will be the following # # # To aid in finding HDFJAVA as part of a subproject set # HDFJAVA_ROOT_DIR_HINT to the location where @HDFJAVA_PACKAGE@@HDF_PACKAGE_EXT@-config.cmake lies INCLUDE (SelectLibraryConfigurations) INCLUDE (FindPackageHandleStandardArgs) # The HINTS option should only be used for values computed from the system. set (_HDFJAVA_HINTS $ENV{HOME}/.local $ENV{HDFJAVA_ROOT} $ENV{HDFJAVA_ROOT_DIR_HINT} ) # Hard-coded guesses should still go in PATHS. This ensures that the user # environment can always override hard guesses. set (_HDFJAVA_PATHS $ENV{HOME}/.local $ENV{HDFJAVA_ROOT} $ENV{HDFJAVA_ROOT_DIR_HINT} /usr/lib/@HDFJAVA_PACKAGE@ /usr/share/@HDFJAVA_PACKAGE@ /usr/local/@HDFJAVA_PACKAGE@ /usr/local/@HDFJAVA_PACKAGE@/share ) FIND_PATH (HDFJAVA_ROOT_DIR "@HDFJAVA_PACKAGE@@HDF_PACKAGE_EXT@-config.cmake" HINTS ${_HDFJAVA_HINTS} PATHS ${_HDFJAVA_PATHS} PATH_SUFFIXES cmake/@HDFJAVA_PACKAGE@ lib/cmake/@HDFJAVA_PACKAGE@ share/cmake/@HDFJAVA_PACKAGE@ ) FIND_PATH (HDFJAVA_LIBRARY "jhdfview.jar" HINTS ${_HDFJAVA_HINTS} PATHS ${_HDFJAVA_PATHS} PATH_SUFFIXES lib ) if (HDFJAVA_ROOT_DIR) set (HDFJAVA_FOUND "YES") INCLUDE (${HDFJAVA_ROOT_DIR}/@HDFJAVA_PACKAGE@@HDF_PACKAGE_EXT@-config.cmake) set (HDFJAVA_LIBRARIES "${HDFJAVA_LIBRARY}") set (HDFJAVA_INCLUDE_DIRS ${HDFJAVA_LIBRARY}/jarhdf-@HDFJAVA_PACKAGE_VERSION@.jar ${HDFJAVA_LIBRARY}/jarhdf5-@HDFJAVA_PACKAGE_VERSION@.jar ${HDFJAVA_LIBRARY}/jarhdfobj.jar ${HDFJAVA_LIBRARY}/jarfitsobj.jar ${HDFJAVA_LIBRARY}/jarh4obj.jar ${HDFJAVA_LIBRARY}/jarh5obj.jar ${HDFJAVA_LIBRARY}/jarnc2obj.jar ${HDFJAVA_LIBRARY}/fits.jar ${HDFJAVA_LIBRARY}/netcdf.jar ${HDFJAVA_LIBRARY}/slf4j-api-1.7.5.jar ${HDFJAVA_LIBRARY}/slf4j-nop-1.7.5.jar ) endif (HDFJAVA_ROOT_DIR) hdf-java-2.11.0/config/cmake/PkgInfo.in0000644002344600011330000000001012326542262015756 0ustar byrnhdfAPPL????hdf-java-2.11.0/config/cmake/HDFJAVA-config-version.cmake.in0000644002344600011330000000206012326542262021500 0ustar byrnhdf#----------------------------------------------------------------------------- # HDFJAVA Version file for install directory #----------------------------------------------------------------------------- set (PACKAGE_VERSION @HDFJAVA_PACKAGE_VERSION@) if ("${PACKAGE_FIND_VERSION_MAJOR}" EQUAL @HJAVA_VERS_MAJOR@) # exact match for version @HDFJAVA_VERS_MAJOR@.@HJAVA_VERS_MINOR@ if ("${PACKAGE_FIND_VERSION_MINOR}" EQUAL @HJAVA_VERS_MINOR@) # compatible with any version @HJAVA_VERS_MAJOR@.@HJAVA_VERS_MINOR@.x set (PACKAGE_VERSION_COMPATIBLE 1) if ("${PACKAGE_FIND_VERSION_PATCH}" EQUAL @HJAVA_VERS_RELEASE@) set (PACKAGE_VERSION_EXACT 1) if ("${PACKAGE_FIND_VERSION_TWEAK}" EQUAL @HJAVA_VERS_SUBRELEASE@) # not using this yet endif ("${PACKAGE_FIND_VERSION_TWEAK}" EQUAL @HJAVA_VERS_SUBRELEASE@) endif ("${PACKAGE_FIND_VERSION_PATCH}" EQUAL @HJAVA_VERS_RELEASE@) endif ("${PACKAGE_FIND_VERSION_MINOR}" EQUAL @HJAVA_VERS_MINOR@) endif ("${PACKAGE_FIND_VERSION_MAJOR}" EQUAL @HJAVA_VERS_MAJOR@) hdf-java-2.11.0/config/cmake/FindHDF4.cmake0000644002344600011330000000507712326542262016403 0ustar byrnhdf# # To be used by projects that make use of CMakeified hdf-4 # # # Find the HDF4 includes and get all installed hdf4 library settings from # HDF4-config.cmake file : Requires a CMake compatible hdf-4.2.6 or later # for this feature to work. The following vars are set if hdf4 is found. # # HDF4_FOUND - True if found, otherwise all other vars are undefined # HDF4_INCLUDE_DIR - The include dir for main *.h files # HDF4_FORTRAN_INCLUDE_DIR - The include dir for fortran modules and headers # HDF4_VERSION_STRING - full version (e.g. 4.2.5) # HDF4_VERSION_MAJOR - major part of version (e.g. 4.2) # HDF4_VERSION_MINOR - minor part (e.g. 5) # # The following boolean vars will be defined # HDF4_ENABLE_PARALLEL - 1 if HDF4 parallel supported # HDF4_BUILD_FORTRAN - 1 if HDF4 was compiled with fortran on # HDF4_BUILD_CPP_LIB - 1 if HDF4 was compiled with cpp on # HDF4_BUILD_TOOLS - 1 if HDF4 was compiled with tools on # # Target names that are valid (depending on enabled options) # will be the following # # hdf : HDF4 C library # hdf_f90cstub : used by Fortran to C interface # hdf_fortran : Fortran HDF4 library # mfhdf : HDF4 multi-file C interface library # xdr : RPC library # mfhdf_f90cstub : used by Fortran to C interface to multi-file library # mfhdf_fortran : Fortran multi-file library # # To aid in finding HDF4 as part of a subproject set # HDF4_ROOT_DIR_HINT to the location where hdf4-config.cmake lies INCLUDE (SelectLibraryConfigurations) INCLUDE (FindPackageHandleStandardArgs) # The HINTS option should only be used for values computed from the system. set (_HDF4_HINTS $ENV{HOME}/.local $ENV{HDF4_ROOT} $ENV{HDF4_ROOT_DIR_HINT} ) # Hard-coded guesses should still go in PATHS. This ensures that the user # environment can always override hard guesses. set (_HDF4_PATHS $ENV{HOME}/.local $ENV{HDF4_ROOT} $ENV{HDF4_ROOT_DIR_HINT} /usr/lib/hdf /usr/share/hdf /usr/local/hdf /usr/local/hdf/share ) FIND_PATH (HDF4_ROOT_DIR "hdf4-config.cmake" HINTS ${_HDF4_HINTS} PATHS ${_HDF4_PATHS} PATH_SUFFIXES lib/cmake/hdf4 share/cmake/hdf4 ) FIND_PATH (HDF4_INCLUDE_DIRS "hdf.h" HINTS ${_HDF4_HINTS} PATHS ${_HDF4_PATHS} PATH_SUFFIXES include Include ) # For backwards compatibility we set HDF4_INCLUDE_DIR to the value of # HDF4_INCLUDE_DIRS set ( HDF4_INCLUDE_DIR "${HDF4_INCLUDE_DIRS}" ) if (HDF4_INCLUDE_DIR) set (HDF4_FOUND "YES") INCLUDE (${HDF4_ROOT_DIR}/hdf4-config.cmake) endif (HDF4_INCLUDE_DIR) hdf-java-2.11.0/config/cmake/CPack.Info.plist.in0000644002344600011330000000522712421757204017445 0ustar byrnhdf CFBundleDevelopmentRegion English CFBundleInfoDictionaryVersion 6.0 CFBundleExecutable @CPACK_PACKAGE_FILE_NAME@ CFBundleIconFile @CPACK_BUNDLE_ICON@ CFBundleTypeIconFile @CPACK_BUNDLE_ICON@ CFBundleIdentifier org.@CPACK_PACKAGE_VENDOR@.@CPACK_PACKAGE_NAME@@CPACK_MODULE_VERSION_SUFFIX@ CFBundleName @CPACK_APPLE_GUI_BUNDLE_NAME@ CFBundleDisplayName @CPACK_APPLE_GUI_BUNDLE_NAME@ CFBundlePackageType APPL CFBundleSignature ???? CFBundleVersion @CPACK_APPLE_GUI_VERSION_STRING@ CFBundleShortVersionString @CPACK_APPLE_GUI_SHORT_VERSION_STRING@ CFBundleDocumentTypes CFBundleTypeExtensions hdf h4 hdf4 h5 hdf5 CFBundleTypeName HDF Files CFBundleTypeRole Editor JVMMainClassName ncsa.hdf.view.HDFView JVMOptions -Xmx1024m -Djava.library.path=$APP_ROOT/Contents/Resources/lib -Dhdfview.root=$APP_ROOT/Contents/Java -Xdock:icon=$APP_ROOT/Contents/Resources/HDFView.icns -Dapple.laf.useScreenMenuBar=true -Dcom.apple.macos.use-file-dialog-packages=true -Dcom.apple.macos.useScreenMenuBar=true -Dcom.apple.mrj.application.apple.menu.about.name=@CPACK_APPLE_GUI_BUNDLE_NAME@ -Dcom.apple.smallTabs=true -jar $APP_ROOT/Contents/Java/jhdfview.jar NSHumanReadableCopyright @CPACK_APPLE_GUI_COPYRIGHT@ LSApplicationCategoryType public.app-category.developer-tools hdf-java-2.11.0/config/cmake/HDFJAVA-config.cmake.install.in0000644002344600011330000000672512330772207021475 0ustar byrnhdf#----------------------------------------------------------------------------- # HDFJAVA Config file for compiling against HDFJAVA install directory #----------------------------------------------------------------------------- get_filename_component (SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) get_filename_component (_IMPORT_PREFIX "${SELF_DIR}" PATH) get_filename_component (_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) if (NOT WIN32) get_filename_component (_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) endif (NOT WIN32) #----------------------------------------------------------------------------- # User Options #----------------------------------------------------------------------------- set (HDF_ENABLE_PARALLEL @HDF_ENABLE_PARALLEL@) set (HDF_ENABLE_JPEG_LIB_SUPPORT @HDF_ENABLE_JPEG_LIB_SUPPORT@) set (HDF_ENABLE_Z_LIB_SUPPORT @HDF_ENABLE_Z_LIB_SUPPORT@) set (HDF_ENABLE_SZIP_SUPPORT @HDF_ENABLE_SZIP_SUPPORT@) set (HDF_ENABLE_SZIP_ENCODING @HDF_ENABLE_SZIP_ENCODING@) set (BUILD_SHARED_LIBS @BUILD_SHARED_LIBS@) set (HDF_PACKAGE_EXTLIBS @HDF_PACKAGE_EXTLIBS@) #----------------------------------------------------------------------------- # Version Strings #----------------------------------------------------------------------------- set (HDFJAVA_VERSION_STRING @HDFJAVA_PACKAGE_VERSION@) set (HDFJAVA_VERSION_MAJOR @HDFJAVA_PACKAGE_VERSION_MAJOR@) set (HDFJAVA_VERSION_MINOR @HDFJAVA_PACKAGE_VERSION_MINOR@) #----------------------------------------------------------------------------- # Directories #----------------------------------------------------------------------------- set (HDFJAVA_LIBRARY "${_IMPORT_PREFIX}/lib") set (HDFJAVA_LIBRARIES "${HDFJAVA_LIBRARY}") #----------------------------------------------------------------------------- # Don't include targets if this file is being picked up by another # project which has already build HDFJAVA as a subproject #----------------------------------------------------------------------------- if (NOT TARGET "@HDFJAVA_PACKAGE@") if (HDF_PACKAGE_EXTLIBS AND NOT TARGET "jpeg") include (${SELF_DIR}/../JPEG/@JPEG_PACKAGE_NAME@@HDF_PACKAGE_EXT@-targets.cmake) endif (HDF_PACKAGE_EXTLIBS AND NOT TARGET "jpeg") if (HDF_PACKAGE_EXTLIBS AND NOT TARGET "zlib") include (${SELF_DIR}/../ZLIB/@ZLIB_PACKAGE_NAME@@HDF_PACKAGE_EXT@-targets.cmake) endif (HDF_PACKAGE_EXTLIBS AND NOT TARGET "zlib") if (HDF_PACKAGE_EXTLIBS AND NOT TARGET "szip") include (${SELF_DIR}/../SZIP/@SZIP_PACKAGE_NAME@@HDF_PACKAGE_EXT@-targets.cmake) endif (HDF_PACKAGE_EXTLIBS AND NOT TARGET "szip") if (HDF_PACKAGE_EXTLIBS AND NOT TARGET "hdf4") include (${SELF_DIR}/../hdf4/@HDF4_PACKAGE_NAME@@HDF_PACKAGE_EXT@-targets.cmake) endif (HDF_PACKAGE_EXTLIBS AND NOT TARGET "hdf4") if (HDF_PACKAGE_EXTLIBS AND NOT TARGET "hdf5") include (${SELF_DIR}/../hdf5/@HDF5_PACKAGE_NAME@@HDF_PACKAGE_EXT@-targets.cmake) endif (HDF_PACKAGE_EXTLIBS AND NOT TARGET "hdf5") include (${SELF_DIR}/@HDFJAVA_PACKAGE@@HDF_PACKAGE_EXT@-targets.cmake) endif (NOT TARGET "@HDFJAVA_PACKAGE@") set (HDFJAVA_INCLUDE_DIRS ${HDFJAVA_LIBRARY}/jarhdf-@HDFJAVA_PACKAGE_VERSION@.jar ${HDFJAVA_LIBRARY}/jarhdf5-@HDFJAVA_PACKAGE_VERSION@.jar ${HDFJAVA_LIBRARY}/jarhdfobj.jar ${HDFJAVA_LIBRARY}/jarfitsobj.jar ${HDFJAVA_LIBRARY}/jarh4obj.jar ${HDFJAVA_LIBRARY}/jarh5obj.jar ${HDFJAVA_LIBRARY}/jarnc2obj.jar ${HDFJAVA_LIBRARY}/fits.jar ${HDFJAVA_LIBRARY}/netcdf.jar ${HDFJAVA_LIBRARY}/slf4j-api-1.7.5.jar ${HDFJAVA_LIBRARY}/slf4j-nop-1.7.5.jar ) hdf-java-2.11.0/config/cmake/CMakeFindJavaCommon.cmake0000644002344600011330000000272512341646044020646 0ustar byrnhdf #============================================================================= # Copyright 2013-2014 Kitware, Inc. # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) # Do not include this module directly from code outside CMake! set(_JAVA_HOME "") if(JAVA_HOME AND IS_DIRECTORY "${JAVA_HOME}") set(_JAVA_HOME "${JAVA_HOME}") set(_JAVA_HOME_EXPLICIT 1) else() set(_ENV_JAVA_HOME "") if(DEFINED ENV{JAVA_HOME}) file(TO_CMAKE_PATH "$ENV{JAVA_HOME}" _ENV_JAVA_HOME) endif() if(_ENV_JAVA_HOME AND IS_DIRECTORY "${_ENV_JAVA_HOME}") set(_JAVA_HOME "${_ENV_JAVA_HOME}") set(_JAVA_HOME_EXPLICIT 1) else() set(_CMD_JAVA_HOME "") if(APPLE AND EXISTS /usr/libexec/java_home) execute_process(COMMAND /usr/libexec/java_home OUTPUT_VARIABLE _CMD_JAVA_HOME OUTPUT_STRIP_TRAILING_WHITESPACE) endif() if(_CMD_JAVA_HOME AND IS_DIRECTORY "${_CMD_JAVA_HOME}") set(_JAVA_HOME "${_CMD_JAVA_HOME}") set(_JAVA_HOME_EXPLICIT 0) endif() unset(_CMD_JAVA_HOME) endif() unset(_ENV_JAVA_HOME) endif() hdf-java-2.11.0/config/cmake/HDFJavaMacros.cmake0000644002344600011330000000245112330267210017446 0ustar byrnhdf#------------------------------------------------------------------------------- MACRO (HDFJAVA_SET_LIB_OPTIONS libtarget libname libtype) HDF_SET_LIB_OPTIONS (${libtarget} ${libname} ${libtype}) #message (STATUS "Target: ${libtarget} is ${libname} libtype: ${libtype}") if (${libtype} MATCHES "SHARED") if (WIN32) set (LIBHDF_VERSION ${HDFJAVA_PACKAGE_VERSION_MAJOR}) else (WIN32) set (LIBHDF_VERSION ${HDFJAVA_PACKAGE_VERSION}) endif (WIN32) #message (STATUS "Version: ${LIBHDF_VERSION}") set_target_properties (${libtarget} PROPERTIES VERSION ${LIBHDF_VERSION}) set_target_properties (${libtarget} PROPERTIES SOVERSION ${LIBHDF_VERSION}) endif (${libtype} MATCHES "SHARED") #-- Apple Specific install_name for libraries if (APPLE) option (HDF_BUILD_WITH_INSTALL_NAME "Build with library install_name set to the installation path" OFF) if (HDF_BUILD_WITH_INSTALL_NAME) set_target_properties (${libtarget} PROPERTIES LINK_FLAGS "-current_version ${HDFJAVA_PACKAGE_VERSION} -compatibility_version ${HDFJAVA_PACKAGE_VERSION}" INSTALL_NAME_DIR "${CMAKE_INSTALL_PREFIX}/lib" BUILD_WITH_INSTALL_RPATH ${HDF_BUILD_WITH_INSTALL_NAME} ) endif (HDF_BUILD_WITH_INSTALL_NAME) endif (APPLE) ENDMACRO (HDFJAVA_SET_LIB_OPTIONS) hdf-java-2.11.0/config/cmake/SetupFromAppBundle.sh.in0000644002344600011330000000144512326542262020566 0ustar byrnhdf#!/bin/sh # HDFJAVA_BUNDLE="`echo "$0" | sed -e 's/\/Contents\/MacOS\/HDF-JAVA//'`" HDFJAVA_RESOURCES="$HDFJAVA_BUNDLE/Contents/Resources" HDFJAVA_TEMP="/tmp/hdfjava/$UID" HDFJAVA_ETC="$HDFJAVA_TEMP/etc" echo "running $0" echo "HDFJAVA_BUNDLE: $HDFJAVA_BUNDLE" mkdir -p "$HDFJAVA_TEMP" # Setup temporary runtime files rm -rf "$HDFJAVA_TEMP" # Because the bundle could be located anywhere at runtime, we have to # create temporary copies of the configuration files that # reflect our current location mkdir -p "$HDFJAVA_ETC" sed -e 's|\/usr.*|'"$HDFJAVA_RESOURCES|g" "$HDFJAVA_RESOURCES/bin/hdfview.sh" > "$HDFJAVA_ETC/hdfview.sh" chmod u+x "$HDFJAVA_ETC/hdfview.sh" export "DYLD_LIBRARY_PATH=$HDFJAVA_RESOURCES/lib" export "PATH=$HDFJAVA_RESOURCES/bin:$PATH" #export exec "$HDFJAVA_ETC/hdfview.sh" hdf-java-2.11.0/config/cmake/ConfigureChecks.cmake0000644002344600011330000010170212373411151020141 0ustar byrnhdf#----------------------------------------------------------------------------- # Include all the necessary files for macros #----------------------------------------------------------------------------- set (HDF_PREFIX "HJAVA") include (${CMAKE_ROOT}/Modules/CheckFunctionExists.cmake) include (${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake) include (${CMAKE_ROOT}/Modules/CheckIncludeFiles.cmake) include (${CMAKE_ROOT}/Modules/CheckLibraryExists.cmake) include (${CMAKE_ROOT}/Modules/CheckSymbolExists.cmake) include (${CMAKE_ROOT}/Modules/CheckTypeSize.cmake) include (${CMAKE_ROOT}/Modules/CheckVariableExists.cmake) include (${CMAKE_ROOT}/Modules/TestBigEndian.cmake) #----------------------------------------------------------------------------- # APPLE/Darwin setup #----------------------------------------------------------------------------- if (APPLE) list (LENGTH CMAKE_OSX_ARCHITECTURES ARCH_LENGTH) if (ARCH_LENGTH GREATER 1) set (CMAKE_OSX_ARCHITECTURES "" CACHE STRING "" FORCE) message(FATAL_ERROR "Building Universal Binaries on OS X is NOT supported by the HDF5 project. This is" "due to technical reasons. The best approach would be build each architecture in separate directories" "and use the 'lipo' tool to combine them into a single executable or library. The 'CMAKE_OSX_ARCHITECTURES'" "variable has been set to a blank value which will build the default architecture for this system.") endif () set (${HDF_PREFIX}_AC_APPLE_UNIVERSAL_BUILD 0) endif (APPLE) # Check for Darwin (not just Apple - we also want to catch OpenDarwin) if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") set (${HDF_PREFIX}_HAVE_DARWIN 1) endif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") # Check for Solaris if (${CMAKE_SYSTEM_NAME} MATCHES "SunOS") set (${HDF_PREFIX}_HAVE_SOLARIS 1) endif (${CMAKE_SYSTEM_NAME} MATCHES "SunOS") #----------------------------------------------------------------------------- # This MACRO checks IF the symbol exists in the library and IF it # does, it appends library to the list. #----------------------------------------------------------------------------- set (LINK_LIBS "") MACRO (CHECK_LIBRARY_EXISTS_CONCAT LIBRARY SYMBOL VARIABLE) CHECK_LIBRARY_EXISTS ("${LIBRARY};${LINK_LIBS}" ${SYMBOL} "" ${VARIABLE}) if (${VARIABLE}) set (LINK_LIBS ${LINK_LIBS} ${LIBRARY}) endif (${VARIABLE}) ENDMACRO (CHECK_LIBRARY_EXISTS_CONCAT) # ---------------------------------------------------------------------- # WINDOWS Hard code Values # ---------------------------------------------------------------------- set (WINDOWS) if (WIN32) if (MINGW) set (${HDF_PREFIX}_HAVE_MINGW 1) set (WINDOWS 1) # MinGW tries to imitate Windows set (CMAKE_REQUIRED_FLAGS "-DWIN32_LEAN_AND_MEAN=1 -DNOGDI=1") endif (MINGW) set (${HDF_PREFIX}_HAVE_WIN32_API 1) set (CMAKE_REQUIRED_LIBRARIES "ws2_32.lib;wsock32.lib") if (NOT UNIX AND NOT CYGWIN AND NOT MINGW) set (WINDOWS 1) set (CMAKE_REQUIRED_FLAGS "/DWIN32_LEAN_AND_MEAN=1 /DNOGDI=1") if (MSVC) set (${HDF_PREFIX}_HAVE_VISUAL_STUDIO 1) endif (MSVC) endif (NOT UNIX AND NOT CYGWIN AND NOT MINGW) endif (WIN32) if (WINDOWS) set (${HDF_PREFIX}_HAVE_STDDEF_H 1) set (${HDF_PREFIX}_HAVE_SYS_STAT_H 1) set (${HDF_PREFIX}_HAVE_SYS_TYPES_H 1) set (${HDF_PREFIX}_HAVE_LIBM 1) set (${HDF_PREFIX}_HAVE_STRDUP 1) set (${HDF_PREFIX}_HAVE_SYSTEM 1) set (${HDF_PREFIX}_HAVE_LONGJMP 1) if (NOT MINGW) set (${HDF_PREFIX}_HAVE_GETHOSTNAME 1) endif (NOT MINGW) if (NOT UNIX AND NOT CYGWIN AND NOT MINGW) set (${HDF_PREFIX}_HAVE_GETCONSOLESCREENBUFFERINFO 1) endif (NOT UNIX AND NOT CYGWIN AND NOT MINGW) set (${HDF_PREFIX}_HAVE_FUNCTION 1) set (${HDF_PREFIX}_GETTIMEOFDAY_GIVES_TZ 1) set (${HDF_PREFIX}_HAVE_TIMEZONE 1) set (${HDF_PREFIX}_HAVE_GETTIMEOFDAY 1) set (${HDF_PREFIX}_LONE_COLON 0) if (MINGW) set (${HDF_PREFIX}_HAVE_WINSOCK2_H 1) endif (MINGW) set (${HDF_PREFIX}_HAVE_LIBWS2_32 1) set (${HDF_PREFIX}_HAVE_LIBWSOCK32 1) endif (WINDOWS) # ---------------------------------------------------------------------- # END of WINDOWS Hard code Values # ---------------------------------------------------------------------- if (CYGWIN) set (${HDF_PREFIX}_HAVE_LSEEK64 0) endif (CYGWIN) #----------------------------------------------------------------------------- # Check for the math library "m" #----------------------------------------------------------------------------- if (NOT WINDOWS) CHECK_LIBRARY_EXISTS_CONCAT ("m" ceil ${HDF_PREFIX}_HAVE_LIBM) CHECK_LIBRARY_EXISTS_CONCAT ("dl" dlopen ${HDF_PREFIX}_HAVE_LIBDL) CHECK_LIBRARY_EXISTS_CONCAT ("ws2_32" WSAStartup ${HDF_PREFIX}_HAVE_LIBWS2_32) CHECK_LIBRARY_EXISTS_CONCAT ("wsock32" gethostbyname ${HDF_PREFIX}_HAVE_LIBWSOCK32) endif (NOT WINDOWS) CHECK_LIBRARY_EXISTS_CONCAT ("ucb" gethostname ${HDF_PREFIX}_HAVE_LIBUCB) CHECK_LIBRARY_EXISTS_CONCAT ("socket" connect ${HDF_PREFIX}_HAVE_LIBSOCKET) CHECK_LIBRARY_EXISTS ("c" gethostbyname "" NOT_NEED_LIBNSL) if (NOT NOT_NEED_LIBNSL) CHECK_LIBRARY_EXISTS_CONCAT ("nsl" gethostbyname ${HDF_PREFIX}_HAVE_LIBNSL) endif (NOT NOT_NEED_LIBNSL) # For other tests to use the same libraries set (CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${LINK_LIBS}) set (USE_INCLUDES "") if (WINDOWS) set (USE_INCLUDES ${USE_INCLUDES} "windows.h") endif (WINDOWS) if (NOT WINDOWS) TEST_BIG_ENDIAN (${HDF_PREFIX}_WORDS_BIGENDIAN) endif (NOT WINDOWS) # For other specific tests, use this MACRO. MACRO (HDF_FUNCTION_TEST OTHER_TEST) if ("${HDF_PREFIX}_${OTHER_TEST}" MATCHES "^${HDF_PREFIX}_${OTHER_TEST}$") set (MACRO_CHECK_FUNCTION_DEFINITIONS "-D${OTHER_TEST} ${CMAKE_REQUIRED_FLAGS}") set (OTHER_TEST_ADD_LIBRARIES) if (CMAKE_REQUIRED_LIBRARIES) set (OTHER_TEST_ADD_LIBRARIES "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") endif (CMAKE_REQUIRED_LIBRARIES) foreach (def ${HDF_EXTRA_TEST_DEFINITIONS}) set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D${def}=${${def}}") endforeach (def) foreach (def HAVE_SYS_TIME_H HAVE_UNISTD_H HAVE_SYS_TYPES_H HAVE_SYS_SOCKET_H ) if ("${${HDF_PREFIX}_${def}}") set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D${def}") endif ("${${HDF_PREFIX}_${def}}") endforeach (def) if (LARGEFILE) set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE" ) endif (LARGEFILE) #message (STATUS "Performing ${OTHER_TEST}") TRY_COMPILE (${OTHER_TEST} ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFTests.c CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS} "${OTHER_TEST_ADD_LIBRARIES}" OUTPUT_VARIABLE OUTPUT ) if (${OTHER_TEST}) set (${HDF_PREFIX}_${OTHER_TEST} 1 CACHE INTERNAL "Other test ${FUNCTION}") message (STATUS "Performing Other Test ${OTHER_TEST} - Success") else (${OTHER_TEST}) message (STATUS "Performing Other Test ${OTHER_TEST} - Failed") set (${HDF_PREFIX}_${OTHER_TEST} "" CACHE INTERNAL "Other test ${FUNCTION}") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Performing Other Test ${OTHER_TEST} failed with the following output:\n" "${OUTPUT}\n" ) endif (${OTHER_TEST}) endif ("${HDF_PREFIX}_${OTHER_TEST}" MATCHES "^${HDF_PREFIX}_${OTHER_TEST}$") ENDMACRO (HDF_FUNCTION_TEST) #----------------------------------------------------------------------------- # Check for these functions before the time headers are checked #----------------------------------------------------------------------------- HDF_FUNCTION_TEST (STDC_HEADERS) #----------------------------------------------------------------------------- # Check IF header file exists and add it to the list. #----------------------------------------------------------------------------- MACRO (CHECK_INCLUDE_FILE_CONCAT FILE VARIABLE) CHECK_INCLUDE_FILES ("${USE_INCLUDES};${FILE}" ${VARIABLE}) if (${VARIABLE}) set (USE_INCLUDES ${USE_INCLUDES} ${FILE}) endif (${VARIABLE}) ENDMACRO (CHECK_INCLUDE_FILE_CONCAT) #----------------------------------------------------------------------------- # Check for the existence of certain header files #----------------------------------------------------------------------------- CHECK_INCLUDE_FILE_CONCAT ("sys/resource.h" ${HDF_PREFIX}_HAVE_SYS_RESOURCE_H) CHECK_INCLUDE_FILE_CONCAT ("sys/time.h" ${HDF_PREFIX}_HAVE_SYS_TIME_H) CHECK_INCLUDE_FILE_CONCAT ("unistd.h" ${HDF_PREFIX}_HAVE_UNISTD_H) CHECK_INCLUDE_FILE_CONCAT ("sys/ioctl.h" ${HDF_PREFIX}_HAVE_SYS_IOCTL_H) CHECK_INCLUDE_FILE_CONCAT ("sys/stat.h" ${HDF_PREFIX}_HAVE_SYS_STAT_H) CHECK_INCLUDE_FILE_CONCAT ("sys/socket.h" ${HDF_PREFIX}_HAVE_SYS_SOCKET_H) CHECK_INCLUDE_FILE_CONCAT ("sys/types.h" ${HDF_PREFIX}_HAVE_SYS_TYPES_H) CHECK_INCLUDE_FILE_CONCAT ("stddef.h" ${HDF_PREFIX}_HAVE_STDDEF_H) CHECK_INCLUDE_FILE_CONCAT ("setjmp.h" ${HDF_PREFIX}_HAVE_SETJMP_H) CHECK_INCLUDE_FILE_CONCAT ("features.h" ${HDF_PREFIX}_HAVE_FEATURES_H) CHECK_INCLUDE_FILE_CONCAT ("dirent.h" ${HDF_PREFIX}_HAVE_DIRENT_H) CHECK_INCLUDE_FILE_CONCAT ("stdint.h" ${HDF_PREFIX}_HAVE_STDINT_H) # IF the c compiler found stdint, check the C++ as well. On some systems this # file will be found by C but not C++, only do this test IF the C++ compiler # has been initialized (e.g. the project also includes some c++) if (${HDF_PREFIX}_HAVE_STDINT_H AND CMAKE_CXX_COMPILER_LOADED) CHECK_INCLUDE_FILE_CXX ("stdint.h" ${HDF_PREFIX}_HAVE_STDINT_H_CXX) if (NOT ${HDF_PREFIX}_HAVE_STDINT_H_CXX) set (${HDF_PREFIX}_HAVE_STDINT_H "" CACHE INTERNAL "Have includes HAVE_STDINT_H") set (USE_INCLUDES ${USE_INCLUDES} "stdint.h") endif (NOT ${HDF_PREFIX}_HAVE_STDINT_H_CXX) endif (${HDF_PREFIX}_HAVE_STDINT_H AND CMAKE_CXX_COMPILER_LOADED) # Darwin CHECK_INCLUDE_FILE_CONCAT ("mach/mach_time.h" ${HDF_PREFIX}_HAVE_MACH_MACH_TIME_H) # Windows CHECK_INCLUDE_FILE_CONCAT ("io.h" ${HDF_PREFIX}_HAVE_IO_H) if (NOT CYGWIN) CHECK_INCLUDE_FILE_CONCAT ("winsock2.h" ${HDF_PREFIX}_HAVE_WINSOCK2_H) endif (NOT CYGWIN) CHECK_INCLUDE_FILE_CONCAT ("sys/timeb.h" ${HDF_PREFIX}_HAVE_SYS_TIMEB_H) if (CMAKE_SYSTEM_NAME MATCHES "OSF") CHECK_INCLUDE_FILE_CONCAT ("sys/sysinfo.h" ${HDF_PREFIX}_HAVE_SYS_SYSINFO_H) CHECK_INCLUDE_FILE_CONCAT ("sys/proc.h" ${HDF_PREFIX}_HAVE_SYS_PROC_H) else (CMAKE_SYSTEM_NAME MATCHES "OSF") set (${HDF_PREFIX}_HAVE_SYS_SYSINFO_H "" CACHE INTERNAL "" FORCE) set (${HDF_PREFIX}_HAVE_SYS_PROC_H "" CACHE INTERNAL "" FORCE) endif (CMAKE_SYSTEM_NAME MATCHES "OSF") CHECK_INCLUDE_FILE_CONCAT ("globus/common.h" ${HDF_PREFIX}_HAVE_GLOBUS_COMMON_H) CHECK_INCLUDE_FILE_CONCAT ("pdb.h" ${HDF_PREFIX}_HAVE_PDB_H) CHECK_INCLUDE_FILE_CONCAT ("pthread.h" ${HDF_PREFIX}_HAVE_PTHREAD_H) CHECK_INCLUDE_FILE_CONCAT ("srbclient.h" ${HDF_PREFIX}_HAVE_SRBCLIENT_H) CHECK_INCLUDE_FILE_CONCAT ("string.h" ${HDF_PREFIX}_HAVE_STRING_H) CHECK_INCLUDE_FILE_CONCAT ("strings.h" ${HDF_PREFIX}_HAVE_STRINGS_H) CHECK_INCLUDE_FILE_CONCAT ("time.h" ${HDF_PREFIX}_HAVE_TIME_H) CHECK_INCLUDE_FILE_CONCAT ("stdlib.h" ${HDF_PREFIX}_HAVE_STDLIB_H) CHECK_INCLUDE_FILE_CONCAT ("memory.h" ${HDF_PREFIX}_HAVE_MEMORY_H) CHECK_INCLUDE_FILE_CONCAT ("dlfcn.h" ${HDF_PREFIX}_HAVE_DLFCN_H) CHECK_INCLUDE_FILE_CONCAT ("inttypes.h" ${HDF_PREFIX}_HAVE_INTTYPES_H) CHECK_INCLUDE_FILE_CONCAT ("netinet/in.h" ${HDF_PREFIX}_HAVE_NETINET_IN_H) #----------------------------------------------------------------------------- # Check for large file support #----------------------------------------------------------------------------- # The linux-lfs option is deprecated. set (LINUX_LFS 0) set (HDF_EXTRA_C_FLAGS) set (HDF_EXTRA_FLAGS) if (NOT WINDOWS) if (NOT ${HDF_PREFIX}_HAVE_SOLARIS) # Linux Specific flags # This was originally defined as _POSIX_SOURCE which was updated to # _POSIX_C_SOURCE=199506L to expose a greater amount of POSIX # functionality so clock_gettime and CLOCK_MONOTONIC are defined # correctly. # POSIX feature information can be found in the gcc manual at: # http://www.gnu.org/s/libc/manual/html_node/Feature-Test-Macros.html set (HDF_EXTRA_C_FLAGS -D_POSIX_C_SOURCE=199506L) set (HDF_EXTRA_FLAGS -D_BSD_SOURCE) option (HDF_ENABLE_LARGE_FILE "Enable support for large (64-bit) files on Linux." ON) if (HDF_ENABLE_LARGE_FILE) set (msg "Performing TEST_LFS_WORKS") TRY_RUN (TEST_LFS_WORKS_RUN TEST_LFS_WORKS_COMPILE ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFTests.c CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=-DTEST_LFS_WORKS OUTPUT_VARIABLE OUTPUT ) if (TEST_LFS_WORKS_COMPILE) if (TEST_LFS_WORKS_RUN MATCHES 0) set (TEST_LFS_WORKS 1 CACHE INTERNAL ${msg}) set (LARGEFILE 1) set (HDF_EXTRA_FLAGS ${HDF_EXTRA_FLAGS} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE) message (STATUS "${msg}... yes") else (TEST_LFS_WORKS_RUN MATCHES 0) set (TEST_LFS_WORKS "" CACHE INTERNAL ${msg}) message (STATUS "${msg}... no") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Test TEST_LFS_WORKS Run failed with the following output and exit code:\n ${OUTPUT}\n" ) endif (TEST_LFS_WORKS_RUN MATCHES 0) else (TEST_LFS_WORKS_COMPILE ) set (TEST_LFS_WORKS "" CACHE INTERNAL ${msg}) message (STATUS "${msg}... no") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Test TEST_LFS_WORKS Compile failed with the following output:\n ${OUTPUT}\n" ) endif (TEST_LFS_WORKS_COMPILE) endif (HDF_ENABLE_LARGE_FILE) set (CMAKE_REQUIRED_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS} ${HDF_EXTRA_FLAGS}) endif (NOT ${HDF_PREFIX}_HAVE_SOLARIS) endif (NOT WINDOWS) add_definitions (${HDF_EXTRA_FLAGS}) #----------------------------------------------------------------------------- # Check for HAVE_OFF64_T functionality #----------------------------------------------------------------------------- if (NOT WINDOWS OR MINGW) HDF_FUNCTION_TEST (HAVE_OFF64_T) if (${HDF_PREFIX}_HAVE_OFF64_T) CHECK_FUNCTION_EXISTS (lseek64 ${HDF_PREFIX}_HAVE_LSEEK64) CHECK_FUNCTION_EXISTS (fseeko64 ${HDF_PREFIX}_HAVE_FSEEKO64) CHECK_FUNCTION_EXISTS (ftello64 ${HDF_PREFIX}_HAVE_FTELLO64) CHECK_FUNCTION_EXISTS (ftruncate64 ${HDF_PREFIX}_HAVE_FTRUNCATE64) endif (${HDF_PREFIX}_HAVE_OFF64_T) CHECK_FUNCTION_EXISTS (fseeko ${HDF_PREFIX}_HAVE_FSEEKO) CHECK_FUNCTION_EXISTS (ftello ${HDF_PREFIX}_HAVE_FTELLO) HDF_FUNCTION_TEST (HAVE_STAT64_STRUCT) if (HAVE_STAT64_STRUCT) CHECK_FUNCTION_EXISTS (fstat64 ${HDF_PREFIX}_HAVE_FSTAT64) CHECK_FUNCTION_EXISTS (stat64 ${HDF_PREFIX}_HAVE_STAT64) endif (HAVE_STAT64_STRUCT) endif (NOT WINDOWS OR MINGW) #----------------------------------------------------------------------------- # Check the size in bytes of all the int and float types #----------------------------------------------------------------------------- MACRO (HDF_CHECK_TYPE_SIZE type var) set (aType ${type}) set (aVar ${var}) # message (STATUS "Checking size of ${aType} and storing into ${aVar}") CHECK_TYPE_SIZE (${aType} ${aVar}) if (NOT ${aVar}) set (${aVar} 0 CACHE INTERNAL "SizeOf for ${aType}") # message (STATUS "Size of ${aType} was NOT Found") endif (NOT ${aVar}) ENDMACRO (HDF_CHECK_TYPE_SIZE) HDF_CHECK_TYPE_SIZE (char ${HDF_PREFIX}_SIZEOF_CHAR) HDF_CHECK_TYPE_SIZE (short ${HDF_PREFIX}_SIZEOF_SHORT) HDF_CHECK_TYPE_SIZE (int ${HDF_PREFIX}_SIZEOF_INT) HDF_CHECK_TYPE_SIZE (unsigned ${HDF_PREFIX}_SIZEOF_UNSIGNED) if (NOT APPLE) HDF_CHECK_TYPE_SIZE (long ${HDF_PREFIX}_SIZEOF_LONG) endif (NOT APPLE) HDF_CHECK_TYPE_SIZE ("long long" ${HDF_PREFIX}_SIZEOF_LONG_LONG) HDF_CHECK_TYPE_SIZE (__int64 ${HDF_PREFIX}_SIZEOF___INT64) if (NOT ${HDF_PREFIX}_SIZEOF___INT64) set (${HDF_PREFIX}_SIZEOF___INT64 0) endif (NOT ${HDF_PREFIX}_SIZEOF___INT64) HDF_CHECK_TYPE_SIZE (float ${HDF_PREFIX}_SIZEOF_FLOAT) HDF_CHECK_TYPE_SIZE (double ${HDF_PREFIX}_SIZEOF_DOUBLE) HDF_CHECK_TYPE_SIZE ("long double" ${HDF_PREFIX}_SIZEOF_LONG_DOUBLE) HDF_CHECK_TYPE_SIZE (int8_t ${HDF_PREFIX}_SIZEOF_INT8_T) HDF_CHECK_TYPE_SIZE (uint8_t ${HDF_PREFIX}_SIZEOF_UINT8_T) HDF_CHECK_TYPE_SIZE (int_least8_t ${HDF_PREFIX}_SIZEOF_INT_LEAST8_T) HDF_CHECK_TYPE_SIZE (uint_least8_t ${HDF_PREFIX}_SIZEOF_UINT_LEAST8_T) HDF_CHECK_TYPE_SIZE (int_fast8_t ${HDF_PREFIX}_SIZEOF_INT_FAST8_T) HDF_CHECK_TYPE_SIZE (uint_fast8_t ${HDF_PREFIX}_SIZEOF_UINT_FAST8_T) HDF_CHECK_TYPE_SIZE (int16_t ${HDF_PREFIX}_SIZEOF_INT16_T) HDF_CHECK_TYPE_SIZE (uint16_t ${HDF_PREFIX}_SIZEOF_UINT16_T) HDF_CHECK_TYPE_SIZE (int_least16_t ${HDF_PREFIX}_SIZEOF_INT_LEAST16_T) HDF_CHECK_TYPE_SIZE (uint_least16_t ${HDF_PREFIX}_SIZEOF_UINT_LEAST16_T) HDF_CHECK_TYPE_SIZE (int_fast16_t ${HDF_PREFIX}_SIZEOF_INT_FAST16_T) HDF_CHECK_TYPE_SIZE (uint_fast16_t ${HDF_PREFIX}_SIZEOF_UINT_FAST16_T) HDF_CHECK_TYPE_SIZE (int32_t ${HDF_PREFIX}_SIZEOF_INT32_T) HDF_CHECK_TYPE_SIZE (uint32_t ${HDF_PREFIX}_SIZEOF_UINT32_T) HDF_CHECK_TYPE_SIZE (int_least32_t ${HDF_PREFIX}_SIZEOF_INT_LEAST32_T) HDF_CHECK_TYPE_SIZE (uint_least32_t ${HDF_PREFIX}_SIZEOF_UINT_LEAST32_T) HDF_CHECK_TYPE_SIZE (int_fast32_t ${HDF_PREFIX}_SIZEOF_INT_FAST32_T) HDF_CHECK_TYPE_SIZE (uint_fast32_t ${HDF_PREFIX}_SIZEOF_UINT_FAST32_T) HDF_CHECK_TYPE_SIZE (int64_t ${HDF_PREFIX}_SIZEOF_INT64_T) HDF_CHECK_TYPE_SIZE (uint64_t ${HDF_PREFIX}_SIZEOF_UINT64_T) HDF_CHECK_TYPE_SIZE (int_least64_t ${HDF_PREFIX}_SIZEOF_INT_LEAST64_T) HDF_CHECK_TYPE_SIZE (uint_least64_t ${HDF_PREFIX}_SIZEOF_UINT_LEAST64_T) HDF_CHECK_TYPE_SIZE (int_fast64_t ${HDF_PREFIX}_SIZEOF_INT_FAST64_T) HDF_CHECK_TYPE_SIZE (uint_fast64_t ${HDF_PREFIX}_SIZEOF_UINT_FAST64_T) if (NOT APPLE) HDF_CHECK_TYPE_SIZE (size_t ${HDF_PREFIX}_SIZEOF_SIZE_T) HDF_CHECK_TYPE_SIZE (ssize_t ${HDF_PREFIX}_SIZEOF_SSIZE_T) if (NOT ${HDF_PREFIX}_SIZEOF_SSIZE_T) set (${HDF_PREFIX}_SIZEOF_SSIZE_T 0) endif (NOT ${HDF_PREFIX}_SIZEOF_SSIZE_T) if (NOT WINDOWS) HDF_CHECK_TYPE_SIZE (ptrdiff_t ${HDF_PREFIX}_SIZEOF_PTRDIFF_T) endif (NOT WINDOWS) endif (NOT APPLE) HDF_CHECK_TYPE_SIZE (off_t ${HDF_PREFIX}_SIZEOF_OFF_T) HDF_CHECK_TYPE_SIZE (off64_t ${HDF_PREFIX}_SIZEOF_OFF64_T) if (NOT ${HDF_PREFIX}_SIZEOF_OFF64_T) set (${HDF_PREFIX}_SIZEOF_OFF64_T 0) endif (NOT ${HDF_PREFIX}_SIZEOF_OFF64_T) if (NOT WINDOWS) #----------------------------------------------------------------------------- # Check if the dev_t type is a scalar type #----------------------------------------------------------------------------- HDF_FUNCTION_TEST (DEV_T_IS_SCALAR) # ---------------------------------------------------------------------- # Check for MONOTONIC_TIMER support (used in clock_gettime). This has # to be done after any POSIX/BSD defines to ensure that the test gets # the correct POSIX level on linux. CHECK_VARIABLE_EXISTS (CLOCK_MONOTONIC HAVE_CLOCK_MONOTONIC) #----------------------------------------------------------------------------- # Check a bunch of time functions #----------------------------------------------------------------------------- foreach (test HAVE_TM_GMTOFF HAVE___TM_GMTOFF # HAVE_TIMEZONE HAVE_STRUCT_TIMEZONE GETTIMEOFDAY_GIVES_TZ TIME_WITH_SYS_TIME HAVE_TM_ZONE HAVE_STRUCT_TM_TM_ZONE ) HDF_FUNCTION_TEST (${test}) endforeach (test) if (NOT CYGWIN AND NOT MINGW) HDF_FUNCTION_TEST (HAVE_TIMEZONE) # HDF_FUNCTION_TEST (HAVE_STAT_ST_BLOCKS) endif (NOT CYGWIN AND NOT MINGW) # ---------------------------------------------------------------------- # Does the struct stat have the st_blocks field? This field is not Posix. # HDF_FUNCTION_TEST (HAVE_STAT_ST_BLOCKS) # ---------------------------------------------------------------------- # How do we figure out the width of a tty in characters? # CHECK_FUNCTION_EXISTS (ioctl ${HDF_PREFIX}_HAVE_IOCTL) HDF_FUNCTION_TEST (HAVE_STRUCT_VIDEOCONFIG) HDF_FUNCTION_TEST (HAVE_STRUCT_TEXT_INFO) CHECK_FUNCTION_EXISTS (_getvideoconfig ${HDF_PREFIX}_HAVE__GETVIDEOCONFIG) CHECK_FUNCTION_EXISTS (gettextinfo ${HDF_PREFIX}_HAVE_GETTEXTINFO) CHECK_FUNCTION_EXISTS (_scrsize ${HDF_PREFIX}_HAVE__SCRSIZE) if (NOT CYGWIN AND NOT MINGW) CHECK_FUNCTION_EXISTS (GetConsoleScreenBufferInfo ${HDF_PREFIX}_HAVE_GETCONSOLESCREENBUFFERINFO) endif (NOT CYGWIN AND NOT MINGW) CHECK_SYMBOL_EXISTS (TIOCGWINSZ "sys/ioctl.h" ${HDF_PREFIX}_HAVE_TIOCGWINSZ) CHECK_SYMBOL_EXISTS (TIOCGETD "sys/ioctl.h" ${HDF_PREFIX}_HAVE_TIOCGETD) endif (NOT WINDOWS) #----------------------------------------------------------------------------- # Check for some functions that are used # CHECK_FUNCTION_EXISTS (alarm ${HDF_PREFIX}_HAVE_ALARM) CHECK_FUNCTION_EXISTS (fork ${HDF_PREFIX}_HAVE_FORK) CHECK_FUNCTION_EXISTS (frexpf ${HDF_PREFIX}_HAVE_FREXPF) CHECK_FUNCTION_EXISTS (frexpl ${HDF_PREFIX}_HAVE_FREXPL) CHECK_FUNCTION_EXISTS (gethostname ${HDF_PREFIX}_HAVE_GETHOSTNAME) CHECK_FUNCTION_EXISTS (getpwuid ${HDF_PREFIX}_HAVE_GETPWUID) CHECK_FUNCTION_EXISTS (getrusage ${HDF_PREFIX}_HAVE_GETRUSAGE) CHECK_FUNCTION_EXISTS (lstat ${HDF_PREFIX}_HAVE_LSTAT) CHECK_FUNCTION_EXISTS (rand_r ${HDF_PREFIX}_HAVE_RAND_R) CHECK_FUNCTION_EXISTS (random ${HDF_PREFIX}_HAVE_RANDOM) CHECK_FUNCTION_EXISTS (setsysinfo ${HDF_PREFIX}_HAVE_SETSYSINFO) CHECK_FUNCTION_EXISTS (signal ${HDF_PREFIX}_HAVE_SIGNAL) CHECK_FUNCTION_EXISTS (longjmp ${HDF_PREFIX}_HAVE_LONGJMP) CHECK_FUNCTION_EXISTS (setjmp ${HDF_PREFIX}_HAVE_SETJMP) CHECK_FUNCTION_EXISTS (siglongjmp ${HDF_PREFIX}_HAVE_SIGLONGJMP) CHECK_FUNCTION_EXISTS (sigsetjmp ${HDF_PREFIX}_HAVE_SIGSETJMP) CHECK_FUNCTION_EXISTS (sigaction ${HDF_PREFIX}_HAVE_SIGACTION) CHECK_FUNCTION_EXISTS (sigprocmask ${HDF_PREFIX}_HAVE_SIGPROCMASK) CHECK_FUNCTION_EXISTS (snprintf ${HDF_PREFIX}_HAVE_SNPRINTF) CHECK_FUNCTION_EXISTS (srandom ${HDF_PREFIX}_HAVE_SRANDOM) CHECK_FUNCTION_EXISTS (strdup ${HDF_PREFIX}_HAVE_STRDUP) CHECK_FUNCTION_EXISTS (symlink ${HDF_PREFIX}_HAVE_SYMLINK) CHECK_FUNCTION_EXISTS (system ${HDF_PREFIX}_HAVE_SYSTEM) CHECK_FUNCTION_EXISTS (tmpfile ${HDF_PREFIX}_HAVE_TMPFILE) CHECK_FUNCTION_EXISTS (asprintf ${HDF_PREFIX}_HAVE_ASPRINTF) CHECK_FUNCTION_EXISTS (vasprintf ${HDF_PREFIX}_HAVE_VASPRINTF) CHECK_FUNCTION_EXISTS (waitpid ${HDF_PREFIX}_HAVE_WAITPID) CHECK_FUNCTION_EXISTS (vsnprintf ${HDF_PREFIX}_HAVE_VSNPRINTF) if (NOT WINDOWS) if (${HDF_PREFIX}_HAVE_VSNPRINTF) HDF_FUNCTION_TEST (VSNPRINTF_WORKS) endif (${HDF_PREFIX}_HAVE_VSNPRINTF) endif (NOT WINDOWS) #----------------------------------------------------------------------------- # sigsetjmp is special; may actually be a macro #----------------------------------------------------------------------------- if (NOT ${HDF_PREFIX}_HAVE_SIGSETJMP) if (${HDF_PREFIX}_HAVE_SETJMP_H) CHECK_SYMBOL_EXISTS (sigsetjmp "setjmp.h" ${HDF_PREFIX}_HAVE_MACRO_SIGSETJMP) if (${HDF_PREFIX}_HAVE_MACRO_SIGSETJMP) set (${HDF_PREFIX}_HAVE_SIGSETJMP 1) endif (${HDF_PREFIX}_HAVE_MACRO_SIGSETJMP) endif (${HDF_PREFIX}_HAVE_SETJMP_H) endif (NOT ${HDF_PREFIX}_HAVE_SIGSETJMP) #----------------------------------------------------------------------------- # Check for Symbols CHECK_SYMBOL_EXISTS (tzname "time.h" ${HDF_PREFIX}_HAVE_DECL_TZNAME) #----------------------------------------------------------------------------- # Check a bunch of other functions #----------------------------------------------------------------------------- if (NOT WINDOWS) foreach (test LONE_COLON HAVE_ATTRIBUTE HAVE_C99_FUNC # STDC_HEADERS HAVE_FUNCTION HAVE_C99_DESIGNATED_INITIALIZER SYSTEM_SCOPE_THREADS HAVE_SOCKLEN_T CXX_HAVE_OFFSETOF ) HDF_FUNCTION_TEST (${test}) endforeach (test) endif (NOT WINDOWS) # For other CXX specific tests, use this MACRO. MACRO (HDF_CXX_FUNCTION_TEST OTHER_TEST) if ("${OTHER_TEST}" MATCHES "^${OTHER_TEST}$") set (MACRO_CHECK_FUNCTION_DEFINITIONS "-D${OTHER_TEST} ${CMAKE_REQUIRED_FLAGS}") set (OTHER_TEST_ADD_LIBRARIES) if (CMAKE_REQUIRED_LIBRARIES) set (OTHER_TEST_ADD_LIBRARIES "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") endif (CMAKE_REQUIRED_LIBRARIES) foreach (def ${HDF_EXTRA_TEST_DEFINITIONS}) set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D${def}=${${def}}") endforeach (def) foreach (def HAVE_SYS_TIME_H HAVE_UNISTD_H HAVE_SYS_TYPES_H HAVE_SYS_SOCKET_H ) if ("${${HDF_PREFIX}_${def}}") set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D${def}") endif ("${${HDF_PREFIX}_${def}}") endforeach (def) if (LARGEFILE) set (MACRO_CHECK_FUNCTION_DEFINITIONS "${MACRO_CHECK_FUNCTION_DEFINITIONS} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE" ) endif (LARGEFILE) #message (STATUS "Performing ${OTHER_TEST}") TRY_COMPILE (${OTHER_TEST} ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFCXXTests.cpp CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS} "${OTHER_TEST_ADD_LIBRARIES}" OUTPUT_VARIABLE OUTPUT ) if ("${OTHER_TEST}" EQUAL 0) set (${OTHER_TEST} 1 CACHE INTERNAL "CXX test ${FUNCTION}") message (STATUS "Performing CXX Test ${OTHER_TEST} - Success") else ("${OTHER_TEST}" EQUAL 0) message (STATUS "Performing CXX Test ${OTHER_TEST} - Failed") set (${OTHER_TEST} "" CACHE INTERNAL "CXX test ${FUNCTION}") file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Performing CXX Test ${OTHER_TEST} failed with the following output:\n" "${OUTPUT}\n" ) endif ("${OTHER_TEST}" EQUAL 0) endif ("${OTHER_TEST}" MATCHES "^${OTHER_TEST}$") ENDMACRO (HDF_CXX_FUNCTION_TEST) #----------------------------------------------------------------------------- # Check a bunch of cxx functions #----------------------------------------------------------------------------- if (CMAKE_CXX_COMPILER_LOADED) foreach (test OLD_HEADER_FILENAME ${HDF_PREFIX}_NO_NAMESPACE ${HDF_PREFIX}_NO_STD BOOL_NOTDEFINED NO_STATIC_CAST ) HDF_CXX_FUNCTION_TEST (${test}) endforeach (test) endif (CMAKE_CXX_COMPILER_LOADED) #----------------------------------------------------------------------------- # Check if InitOnceExecuteOnce is available #----------------------------------------------------------------------------- if (WINDOWS) if (NOT HDF_NO_IOEO_TEST) message (STATUS "Checking for InitOnceExecuteOnce:") if ("${${HDF_PREFIX}_HAVE_IOEO}" MATCHES "^${${HDF_PREFIX}_HAVE_IOEO}$") if (LARGEFILE) set (CMAKE_REQUIRED_DEFINITIONS "${CURRENT_TEST_DEFINITIONS} -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE" ) endif (LARGEFILE) set (MACRO_CHECK_FUNCTION_DEFINITIONS "-DHAVE_IOEO ${CMAKE_REQUIRED_FLAGS}") if (CMAKE_REQUIRED_LIBRARIES) set (CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") else (CMAKE_REQUIRED_LIBRARIES) set (CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES) endif (CMAKE_REQUIRED_LIBRARIES) if (CMAKE_REQUIRED_INCLUDES) set (CHECK_C_SOURCE_COMPILES_ADD_INCLUDES "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_REQUIRED_INCLUDES}") else (CMAKE_REQUIRED_INCLUDES) set (CHECK_C_SOURCE_COMPILES_ADD_INCLUDES) endif (CMAKE_REQUIRED_INCLUDES) TRY_RUN(HAVE_IOEO_EXITCODE HAVE_IOEO_COMPILED ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFTests.c COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS} CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS} -DCMAKE_SKIP_RPATH:BOOL=${CMAKE_SKIP_RPATH} "${CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES}" "${CHECK_C_SOURCE_COMPILES_ADD_INCLUDES}" COMPILE_OUTPUT_VARIABLE OUTPUT) # if it did not compile make the return value fail code of 1 if (NOT HAVE_IOEO_COMPILED) set (HAVE_IOEO_EXITCODE 1) endif (NOT HAVE_IOEO_COMPILED) # if the return value was 0 then it worked if ("${HAVE_IOEO_EXITCODE}" EQUAL 0) set (${HDF_PREFIX}_HAVE_IOEO 1 CACHE INTERNAL "Test InitOnceExecuteOnce") message (STATUS "Performing Test InitOnceExecuteOnce - Success") file (APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log "Performing C SOURCE FILE Test InitOnceExecuteOnce succeded with the following output:\n" "${OUTPUT}\n" "Return value: ${HAVE_IOEO}\n") else ("${HAVE_IOEO_EXITCODE}" EQUAL 0) if (CMAKE_CROSSCOMPILING AND "${HAVE_IOEO_EXITCODE}" MATCHES "FAILED_TO_RUN") set (${HDF_PREFIX}_HAVE_IOEO "${HAVE_IOEO_EXITCODE}") else (CMAKE_CROSSCOMPILING AND "${HAVE_IOEO_EXITCODE}" MATCHES "FAILED_TO_RUN") set (${HDF_PREFIX}_HAVE_IOEO "" CACHE INTERNAL "Test InitOnceExecuteOnce") endif (CMAKE_CROSSCOMPILING AND "${HAVE_IOEO_EXITCODE}" MATCHES "FAILED_TO_RUN") message (STATUS "Performing Test InitOnceExecuteOnce - Failed") file (APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log "Performing InitOnceExecuteOnce Test failed with the following output:\n" "${OUTPUT}\n" "Return value: ${HAVE_IOEO_EXITCODE}\n") endif ("${HAVE_IOEO_EXITCODE}" EQUAL 0) endif ("${${HDF_PREFIX}_HAVE_IOEO}" MATCHES "^${${HDF_PREFIX}_HAVE_IOEO}$") endif (NOT HDF_NO_IOEO_TEST) endif (WINDOWS) #----------------------------------------------------------------------------- # Determine how 'inline' is used #----------------------------------------------------------------------------- set (HDF_EXTRA_TEST_DEFINITIONS INLINE_TEST_INLINE) foreach (inline_test inline __inline__ __inline) set (INLINE_TEST_INLINE ${inline_test}) HDF_FUNCTION_TEST (INLINE_TEST_${inline_test}) endforeach (inline_test) set (HDF_EXTRA_TEST_DEFINITIONS) if (INLINE_TEST___inline__) set (${HDF_PREFIX}_inline __inline__) else (INLINE_TEST___inline__) if (INLINE_TEST___inline) set (${HDF_PREFIX}_inline __inline) else (INLINE_TEST___inline) if (INLINE_TEST_inline) set (${HDF_PREFIX}_inline inline) endif (INLINE_TEST_inline) endif (INLINE_TEST___inline) endif (INLINE_TEST___inline__) #----------------------------------------------------------------------------- # Check how to print a Long Long integer #----------------------------------------------------------------------------- if (NOT ${HDF_PREFIX}_PRINTF_LL_WIDTH OR ${HDF_PREFIX}_PRINTF_LL_WIDTH MATCHES "unknown") set (PRINT_LL_FOUND 0) message (STATUS "Checking for appropriate format for 64 bit long:") foreach (HDF5_PRINTF_LL l64 l L q I64 ll) set (CURRENT_TEST_DEFINITIONS "-DPRINTF_LL_WIDTH=${HDF5_PRINTF_LL}") if (${HDF_PREFIX}_SIZEOF_LONG_LONG) set (CURRENT_TEST_DEFINITIONS "${CURRENT_TEST_DEFINITIONS} -DHAVE_LONG_LONG") endif (${HDF_PREFIX}_SIZEOF_LONG_LONG) TRY_RUN (HDF5_PRINTF_LL_TEST_RUN HDF5_PRINTF_LL_TEST_COMPILE ${CMAKE_BINARY_DIR} ${HDF_RESOURCES_EXT_DIR}/HDFTests.c CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${CURRENT_TEST_DEFINITIONS} OUTPUT_VARIABLE OUTPUT ) if (HDF5_PRINTF_LL_TEST_COMPILE) if (HDF5_PRINTF_LL_TEST_RUN MATCHES 0) set (${HDF_PREFIX}_PRINTF_LL_WIDTH "\"${HDF5_PRINTF_LL}\"" CACHE INTERNAL "Width for printf for type `long long' or `__int64', us. `ll") set (PRINT_LL_FOUND 1) else (HDF5_PRINTF_LL_TEST_RUN MATCHES 0) message ("Width with ${HDF5_PRINTF_LL} failed with result: ${HDF5_PRINTF_LL_TEST_RUN}") endif (HDF5_PRINTF_LL_TEST_RUN MATCHES 0) else (HDF5_PRINTF_LL_TEST_COMPILE) file (APPEND ${CMAKE_BINARY_DIR}/CMakeFiles/CMakeError.log "Test ${HDF_PREFIX}_PRINTF_LL_WIDTH for ${HDF5_PRINTF_LL} failed with the following output:\n ${OUTPUT}\n" ) endif (HDF5_PRINTF_LL_TEST_COMPILE) endforeach (HDF5_PRINTF_LL) if (PRINT_LL_FOUND) message (STATUS "Checking for apropriate format for 64 bit long: found ${${HDF_PREFIX}_PRINTF_LL_WIDTH}") else (PRINT_LL_FOUND) message (STATUS "Checking for apropriate format for 64 bit long: not found") set (${HDF_PREFIX}_PRINTF_LL_WIDTH "\"unknown\"" CACHE INTERNAL "Width for printf for type `long long' or `__int64', us. `ll" ) endif (PRINT_LL_FOUND) endif (NOT ${HDF_PREFIX}_PRINTF_LL_WIDTH OR ${HDF_PREFIX}_PRINTF_LL_WIDTH MATCHES "unknown") # ---------------------------------------------------------------------- # Set the flag to indicate that the machine can handle converting # denormalized floating-point values. # (This flag should be set for all machines, except for the Crays, where # the cache value is set in it's config file) # set (${HDF_PREFIX}_CONVERT_DENORMAL_FLOAT 1) hdf-java-2.11.0/config/cmake/runTest.cmake0000644002344600011330000002071112330267210016541 0ustar byrnhdf# runTest.cmake executes a command and captures the output in a file. File is then compared # against a reference file. Exit status of command can also be compared. cmake_policy(SET CMP0007 NEW) # arguments checking if (NOT TEST_TESTER) message (FATAL_ERROR "Require TEST_TESTER to be defined") endif (NOT TEST_TESTER) if (NOT TEST_PROGRAM) message (FATAL_ERROR "Require TEST_PROGRAM to be defined") endif (NOT TEST_PROGRAM) if (NOT TEST_LIBRARY_DIRECTORY) message (STATUS "Require TEST_LIBRARY_DIRECTORY to be defined") endif (NOT TEST_LIBRARY_DIRECTORY) if (NOT TEST_FOLDER) message ( FATAL_ERROR "Require TEST_FOLDER to be defined") endif (NOT TEST_FOLDER) if (NOT TEST_OUTPUT) message (FATAL_ERROR "Require TEST_OUTPUT to be defined") endif (NOT TEST_OUTPUT) if (NOT TEST_CLASSPATH) message (STATUS "Require TEST_CLASSPATH to be defined") endif (NOT TEST_CLASSPATH) if (NOT TEST_REFERENCE) message (FATAL_ERROR "Require TEST_REFERENCE to be defined") endif (NOT TEST_REFERENCE) if (NOT TEST_ERRREF) set (ERROR_APPEND 1) endif (NOT TEST_ERRREF) if (NOT TEST_LOG_LEVEL) set (LOG_LEVEL "info") else (NOT TEST_LOG_LEVEL) set (LOG_LEVEL "${TEST_LOG_LEVEL}") endif (NOT TEST_LOG_LEVEL) message (STATUS "COMMAND: ${TEST_TESTER} -Xmx1024M -Dorg.slf4j.simpleLogger.defaultLog=${LOG_LEVEL} -Djava.library.path=\"${TEST_LIBRARY_DIRECTORY}\" -cp \"${TEST_CLASSPATH}\" ${TEST_ARGS} ${TEST_PROGRAM} ${ARGN}") if (WIN32 AND NOT MINGW) set (ENV{PATH} "$ENV{PATH}\\;${TEST_LIBRARY_DIRECTORY}") endif (WIN32 AND NOT MINGW) # run the test program, capture the stdout/stderr and the result var execute_process ( COMMAND ${TEST_TESTER} -Xmx1024M -Dorg.slf4j.simpleLogger.defaultLogLevel=${LOG_LEVEL} -Djava.library.path=${TEST_LIBRARY_DIRECTORY} -cp "${TEST_CLASSPATH}" ${TEST_ARGS} ${TEST_PROGRAM} ${ARGN} WORKING_DIRECTORY ${TEST_FOLDER} RESULT_VARIABLE TEST_RESULT OUTPUT_FILE ${TEST_OUTPUT} ERROR_FILE ${TEST_OUTPUT}.err ERROR_VARIABLE TEST_ERROR ) message (STATUS "COMMAND Result: ${TEST_RESULT}") if (EXISTS ${TEST_FOLDER}/${TEST_OUTPUT}.err) file (READ ${TEST_FOLDER}/${TEST_OUTPUT}.err TEST_STREAM) if (TEST_MASK_FILE) STRING(REGEX REPLACE "CurrentDir is [^\n]+\n" "CurrentDir is (dir name)\n" TEST_STREAM "${TEST_STREAM}") endif (TEST_MASK_FILE) if (ERROR_APPEND) file (APPEND ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") else (ERROR_APPEND) file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT}.err "${TEST_STREAM}") endif (ERROR_APPEND) endif (EXISTS ${TEST_FOLDER}/${TEST_OUTPUT}.err) if (TEST_MASK_ERROR) if (NOT TEST_ERRREF) file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) else (NOT TEST_ERRREF) file (READ ${TEST_FOLDER}/${TEST_OUTPUT}.err TEST_STREAM) endif (NOT TEST_ERRREF) string (REGEX REPLACE "Time:[^\n]+\n" "Time: XXXX\n" TEST_STREAM "${TEST_STREAM}") string (REGEX REPLACE "thread [0-9]*:" "thread (IDs):" TEST_STREAM "${TEST_STREAM}") string (REGEX REPLACE ": ([^\n]*)[.]c " ": (file name) " TEST_STREAM "${TEST_STREAM}") string (REGEX REPLACE " line [0-9]*" " line (number)" TEST_STREAM "${TEST_STREAM}") #string (REGEX REPLACE "v[1-9]*[.][0-9]*[.]" "version (number)." TEST_STREAM "${TEST_STREAM}") string (REGEX REPLACE "HDF5 .[1-9]*[.][0-9]*[.][0-9]*[^)]*" "HDF5 (version (number)" TEST_STREAM "${TEST_STREAM}") string (REGEX REPLACE "H5Eget_auto[1-2]*" "H5Eget_auto(1 or 2)" TEST_STREAM "${TEST_STREAM}") string (REGEX REPLACE "H5Eset_auto[1-2]*" "H5Eset_auto(1 or 2)" TEST_STREAM "${TEST_STREAM}") if (NOT TEST_ERRREF) file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT} "${TEST_STREAM}") else (NOT TEST_ERRREF) file (WRITE ${TEST_FOLDER}/${TEST_OUTPUT}.err "${TEST_STREAM}") endif (NOT TEST_ERRREF) endif (TEST_MASK_ERROR) # if the return value is !=0 bail out if (NOT ${TEST_RESULT} STREQUAL ${TEST_EXPECT}) message (STATUS "ERROR OUTPUT: ${TEST_STREAM}") message (FATAL_ERROR "Failed: Test program ${TEST_PROGRAM} exited != 0.\n${TEST_ERROR}") endif (NOT ${TEST_RESULT} STREQUAL ${TEST_EXPECT}) message (STATUS "COMMAND Error: ${TEST_ERROR}") if (NOT TEST_SKIP_COMPARE) if (WIN32 AND NOT MINGW) file (READ ${TEST_FOLDER}/${TEST_REFERENCE} TEST_STREAM) file (WRITE ${TEST_FOLDER}/${TEST_REFERENCE} "${TEST_STREAM}") endif (WIN32 AND NOT MINGW) # now compare the output with the reference execute_process ( COMMAND ${CMAKE_COMMAND} -E compare_files ${TEST_FOLDER}/${TEST_OUTPUT} ${TEST_FOLDER}/${TEST_REFERENCE} RESULT_VARIABLE TEST_RESULT ) if (NOT ${TEST_RESULT} STREQUAL 0) set (TEST_RESULT 0) file (STRINGS ${TEST_FOLDER}/${TEST_OUTPUT} test_act) list (LENGTH test_act len_act) file (STRINGS ${TEST_FOLDER}/${TEST_REFERENCE} test_ref) list (LENGTH test_ref len_ref) if (NOT ${len_act} STREQUAL "0") MATH (EXPR _FP_LEN "${len_ref} - 1") foreach (line RANGE 0 ${_FP_LEN}) list (GET test_act ${line} str_act) list (GET test_ref ${line} str_ref) if (NOT "${str_act}" STREQUAL "${str_ref}") if (NOT "${str_act}" STREQUAL "") set (TEST_RESULT 1) message ("line = ${line}\n***ACTUAL: ${str_act}\n****REFER: ${str_ref}\n") endif (NOT "${str_act}" STREQUAL "") endif (NOT "${str_act}" STREQUAL "${str_ref}") endforeach (line RANGE 0 ${_FP_LEN}) endif (NOT ${len_act} STREQUAL "0") if (NOT ${len_act} STREQUAL ${len_ref}) set (TEST_RESULT 1) endif (NOT ${len_act} STREQUAL ${len_ref}) endif (NOT ${TEST_RESULT} STREQUAL 0) message (STATUS "COMPARE Result: ${TEST_RESULT}") # again, if return value is !=0 scream and shout if (NOT ${TEST_RESULT} STREQUAL 0) message (FATAL_ERROR "Failed: The output of ${TEST_OUTPUT} did not match ${TEST_REFERENCE}") endif (NOT ${TEST_RESULT} STREQUAL 0) if (TEST_ERRREF) if (WIN32 AND NOT MINGW) file (READ ${TEST_FOLDER}/${TEST_ERRREF} TEST_STREAM) file (WRITE ${TEST_FOLDER}/${TEST_ERRREF} "${TEST_STREAM}") endif (WIN32 AND NOT MINGW) # now compare the error output with the error reference execute_process ( COMMAND ${CMAKE_COMMAND} -E compare_files ${TEST_FOLDER}/${TEST_OUTPUT}.err ${TEST_FOLDER}/${TEST_ERRREF} RESULT_VARIABLE TEST_RESULT ) if (NOT ${TEST_RESULT} STREQUAL 0) set (TEST_RESULT 0) file (STRINGS ${TEST_FOLDER}/${TEST_OUTPUT}.err test_act) list (LENGTH test_act len_act) file (STRINGS ${TEST_FOLDER}/${TEST_ERRREF} test_ref) list (LENGTH test_ref len_ref) MATH (EXPR _FP_LEN "${len_ref} - 1") if (NOT ${len_act} STREQUAL "0") MATH (EXPR _FP_LEN "${len_ref} - 1") foreach (line RANGE 0 ${_FP_LEN}) list (GET test_act ${line} str_act) list (GET test_ref ${line} str_ref) if (NOT "${str_act}" STREQUAL "${str_ref}") if (NOT "${str_act}" STREQUAL "") set (TEST_RESULT 1) message ("line = ${line}\n***ACTUAL: ${str_act}\n****REFER: ${str_ref}\n") endif (NOT "${str_act}" STREQUAL "") endif (NOT "${str_act}" STREQUAL "${str_ref}") endforeach (line RANGE 0 ${_FP_LEN}) endif (NOT ${len_act} STREQUAL "0") if (NOT ${len_act} STREQUAL ${len_ref}) set (TEST_RESULT 1) endif (NOT ${len_act} STREQUAL ${len_ref}) endif (NOT ${TEST_RESULT} STREQUAL 0) message (STATUS "COMPARE Result: ${TEST_RESULT}") # again, if return value is !=0 scream and shout if (NOT ${TEST_RESULT} STREQUAL 0) message (FATAL_ERROR "Failed: The error output of ${TEST_OUTPUT}.err did not match ${TEST_ERRREF}") endif (NOT ${TEST_RESULT} STREQUAL 0) endif (TEST_ERRREF) endif (NOT TEST_SKIP_COMPARE) if (TEST_GREP_COMPARE) # now grep the output with the reference file (READ ${TEST_FOLDER}/${TEST_OUTPUT} TEST_STREAM) # TEST_REFERENCE should always be matched string (REGEX MATCH "${TEST_REFERENCE}" TEST_MATCH ${TEST_STREAM}) string (COMPARE EQUAL "${TEST_REFERENCE}" "${TEST_MATCH}" TEST_RESULT) if (${TEST_RESULT} STREQUAL "0") message (FATAL_ERROR "Failed: The output of ${TEST_PROGRAM} did not contain ${TEST_REFERENCE}") endif (${TEST_RESULT} STREQUAL "0") string (REGEX MATCH "${TEST_FILTER}" TEST_MATCH ${TEST_STREAM}) if (${TEST_EXPECT} STREQUAL "1") # TEST_EXPECT (1) interperts TEST_FILTER as NOT to match string (LENGTH "${TEST_MATCH}" TEST_RESULT) if (NOT ${TEST_RESULT} STREQUAL "0") message (FATAL_ERROR "Failed: The output of ${TEST_PROGRAM} did contain ${TEST_FILTER}") endif (NOT ${TEST_RESULT} STREQUAL "0") endif (${TEST_EXPECT} STREQUAL "0") endif (TEST_GREP_COMPARE) # everything went fine... message ("${TEST_PROGRAM} Passed") hdf-java-2.11.0/config/cmake/UseJavaSymlinks.cmake0000644002344600011330000000221612341422524020170 0ustar byrnhdf#.rst: # UseJavaSymlinks # --------------- # # # # # # Helper script for UseJava.cmake #============================================================================= # Copyright 2010-2011 Andreas schneider # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) if (UNIX AND _JAVA_TARGET_OUTPUT_LINK) if (_JAVA_TARGET_OUTPUT_NAME) find_program(LN_EXECUTABLE NAMES ln ) execute_process( COMMAND ${LN_EXECUTABLE} -sf "${_JAVA_TARGET_OUTPUT_NAME}" "${_JAVA_TARGET_OUTPUT_LINK}" WORKING_DIRECTORY ${_JAVA_TARGET_DIR} ) else () message(SEND_ERROR "FATAL: Can't find _JAVA_TARGET_OUTPUT_NAME") endif () endif () hdf-java-2.11.0/config/cmake/USING_CMake_Examples.txt0000644002344600011330000000776212430743420020435 0ustar byrnhdf************************************************************************ * Build and Test HDF-JAVA Examples with CMake * ************************************************************************ This short set of instructions is for users who want to quickly test the installation of HDFView with hdf-java by using the CMake tools to build and test the HDF-JAVA examples. These instructions will show the default usage and then present common changes for non-default installations. For more information, see the USING_HDFJAVA_CMake.txt file. More information about using CMake can be found at the KitWare site at www.cmake.org. CMake uses the command line, and these instructions use the script method of the ctest command. ======================================================================== I. Preconditions ======================================================================== 1. We suggest you obtain the latest CMake for Windows from the Kitware web site. The HDF-JAVA 2.10.1 product requires a minimum CMake version of 2.8.10. 2. You have installed the HDF-JAVA Library built with CMake by executing the HDF Install Utility (the *.exe file in the binary package for Windows or the *.sh file on Linux). If you are using a Windows platform, you can obtain a pre-built Windows binary from The HDF Group's website at www.hdfgroup.org. See the "Common Changes to the HDF-JAVA_Examples.cmake File" section below for the line to change the location. 3. On Windows, you have installed the 7Zip package. See the "Common Changes to the HDF-JAVA_Examples.cmake File" section below for the line to change the command. ======================================================================== II. Building HDF-JAVA Examples with CMake ======================================================================== Confirm that these files are in the HDFview with hdf-java install location's share sub-directory: HDFJavaExamples-0.1.1-Source.zip (or HDFJavaExamples-0.1.1-Source.tar.gz) HDFJAVA_Examples.cmake Note: Windows default is C:/Program Files/HDF_Group/HDFView/2.10.1 Mac OS X default is /Applications/HDFView.app/Contents/SharedSupport Linux default /HDF_Group/HDFView/2.10.1/share Run the default installation process: Create a directory to run the examples, i.e. \test_hdfjava. Copy HDFJavaExamples-0.1.1-Source.zip(.tar.gz) to this directory, do NOT unzip. Copy HDFJAVA_Examples.cmake to this directory. Edit line 8 of the HDFJAVA_Examples.cmake file, and change the INSTALLDIR to the HDF-JAVA install location. Execute from this directory: ctest -S HDFJAVA_Examples.cmake,HDFJavaExamples-0.1.1-Source -C Release -O test.log The script will uncompress the examples file HDFJavaExamples-0.1.1-Source.zip (.tar.gz), and create a build directory inside the HDFJavaExamples-0.1.1-Source directory. It will then configure, build, and execute the examples. All of the log files will be found under the build\Testing\Temporary directory; check these for errors. The amount of script information can be increased by adding -V to the ctest command. Even more information can be shown by adding -VV instead of -V. ======================================================================== III. Common Changes to the HDFJAVA_Examples.cmake File ======================================================================== Line 8: change the INSTALLDIR to a different HDF-JAVA install location. Line 13: comment to use an existing source directory. Line 43: change the CTEST_7Z_COMMAND to a different unzip program on Windows. hdf-java-2.11.0/config/cmake/HDFJAVA_Examples.cmake.in0000644002344600011330000001067012430743420020411 0ustar byrnhdfcmake_minimum_required(VERSION 2.8.10 FATAL_ERROR) ############################################################################################################### # This script will build and run the examples from a compressed file # Execute from a command line: # ctest -S HDFJAVA_Examples.cmake,HDFJavaExamples-0.1.1-Source -C Release -V -O test.log ############################################################################################################### set(INSTALLDIR "@CMAKE_INSTALL_PREFIX@") set(CTEST_CMAKE_GENERATOR "@CMAKE_GENERATOR@") set(CTEST_SOURCE_NAME ${CTEST_SCRIPT_ARG}) set(CTEST_DASHBOARD_ROOT ${CTEST_SCRIPT_DIRECTORY}) set(CTEST_BUILD_CONFIGURATION "Release") set(CTEST_USE_TAR_SOURCE "true") ############################################################################################################### # Adjust the following SET Commands as needed ############################################################################################################### if(WIN32) set(ENV{HDFJAVA_DIR} "${INSTALLDIR}/cmake/hdf-java") set(CTEST_BINARY_NAME ${CTEST_SOURCE_NAME}\\build) set(CTEST_SOURCE_DIRECTORY "${CTEST_DASHBOARD_ROOT}\\${CTEST_SOURCE_NAME}") set(CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}\\${CTEST_BINARY_NAME}") else(WIN32) set(ENV{HDFJAVA_DIR} "${INSTALLDIR}/share/cmake/hdf-java") set(ENV{LD_LIBRARY_PATH} "${INSTALLDIR}/lib") set(CTEST_BINARY_NAME ${CTEST_SOURCE_NAME}/build) set(CTEST_SOURCE_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${CTEST_SOURCE_NAME}") set(CTEST_BINARY_DIRECTORY "${CTEST_DASHBOARD_ROOT}/${CTEST_BINARY_NAME}") endif(WIN32) ############################################################################################################### # For any comments please contact cdashhelp@hdfgroup.org # ############################################################################################################### #----------------------------------------------------------------------------- set(CTEST_CMAKE_COMMAND "\"${CMAKE_COMMAND}\"") ## -------------------------- if(CTEST_USE_TAR_SOURCE) ## Uncompress source if tar or zip file provided ## -------------------------- if(WIN32) set(CTEST_7Z_COMMAND "C:/Program Files/7-Zip/7z.exe") message(STATUS "extracting... [${CTEST_7Z_COMMAND} x ${CTEST_SOURCE_NAME}.zip]") execute_process(COMMAND ${CTEST_7Z_COMMAND} x ${CTEST_SOURCE_NAME}.zip RESULT_VARIABLE rv) else(WIN32) message(STATUS "extracting... [${CTEST_CMAKE_COMMAND} -E tar -xvf ${CTEST_SOURCE_NAME}.tar.gz]") execute_process(COMMAND tar -xvf ${CTEST_SOURCE_NAME}.tar.gz RESULT_VARIABLE rv) endif(WIN32) if(NOT rv EQUAL 0) message(STATUS "extracting... [error-(${rv}) clean up]") file(REMOVE_RECURSE "${CTEST_SOURCE_DIRECTORY}") message(FATAL_ERROR "error: extract of ${CTEST_SOURCE_NAME} failed") endif(NOT rv EQUAL 0) endif(CTEST_USE_TAR_SOURCE) #----------------------------------------------------------------------------- ## Clear the build directory ## -------------------------- set(CTEST_START_WITH_EMPTY_BINARY_DIRECTORY TRUE) file(MAKE_DIRECTORY "${CTEST_BINARY_DIRECTORY}") ctest_empty_binary_directory(${CTEST_BINARY_DIRECTORY}) # Use multiple CPU cores to build include(ProcessorCount) ProcessorCount(N) if(NOT N EQUAL 0) if(NOT WIN32) set(CTEST_BUILD_FLAGS -j${N}) endif(NOT WIN32) set(ctest_test_args ${ctest_test_args} PARALLEL_LEVEL ${N}) endif() set (CTEST_CONFIGURE_COMMAND "${CTEST_CMAKE_COMMAND} -C \"${CTEST_SOURCE_DIRECTORY}/config/cmake/cacheinit.cmake\" -DCMAKE_BUILD_TYPE:STRING=${CTEST_BUILD_CONFIGURATION} ${BUILD_OPTIONS} \"-G${CTEST_CMAKE_GENERATOR}\" \"${CTEST_SOURCE_DIRECTORY}\"" ) #----------------------------------------------------------------------------- ## -- set output to english set($ENV{LC_MESSAGES} "en_EN") #----------------------------------------------------------------------------- ## NORMAL process ## -------------------------- CTEST_START (Experimental) CTEST_CONFIGURE (BUILD "${CTEST_BINARY_DIRECTORY}") CTEST_READ_CUSTOM_FILES ("${CTEST_BINARY_DIRECTORY}") CTEST_BUILD (BUILD "${CTEST_BINARY_DIRECTORY}" APPEND) CTEST_TEST (BUILD "${CTEST_BINARY_DIRECTORY}" APPEND ${ctest_test_args} RETURN_VALUE res) if(res GREATER 0) message (FATAL_ERROR "tests FAILED") endif(res GREATER 0) #----------------------------------------------------------------------------- ############################################################################################################## message(STATUS "DONE")hdf-java-2.11.0/config/cmake/HDF45Macros.cmake0000644002344600011330000003676312355027542017043 0ustar byrnhdf#------------------------------------------------------------------------------- MACRO (EXTERNAL_HDF4_LIBRARY compress_type libtype) set (HDF45_BUILD_XDR_LIB OFF) if (WIN32) set (HDF45_BUILD_XDR_LIB ON) endif (WIN32) if (${compress_type} MATCHES "SVN") EXTERNALPROJECT_ADD (HDF4 SVN_REPOSITORY ${HDF4_URL} # [SVN_REVISION rev] INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} -DHDF4_BUILD_TOOLS:BOOL=OFF -DHDF4_BUILD_FORTRAN:BOOL=OFF -DHDF4_BUILD_XDR_LIB:BOOL=${HDF45_BUILD_XDR_LIB} -DHDF4_EXTERNALLY_CONFIGURED:BOOL=OFF -DHDF4_PACKAGE_EXTLIBS:BOOL=${HDF_PACKAGE_EXTLIBS} -DHDF4_ALLOW_EXTERNAL_SUPPORT:STRING="SVN" -DJPEG_SVN_URL:STRING=${JPEG_SVN_URL} -DZLIB_SVN_URL:STRING=${ZLIB_SVN_URL} -DSZIP_SVN_URL:STRING=${SZIP_SVN_URL} -DHDF4_ENABLE_JPEG_LIB_SUPPORT:BOOL=${HDF_ENABLE_JPEG_LIB_SUPPORT} -DHDF4_ENABLE_Z_LIB_SUPPORT:BOOL=${HDF_ENABLE_Z_LIB_SUPPORT} -DHDF4_ENABLE_SZIP_SUPPORT:BOOL=${HDF_ENABLE_SZIP_SUPPORT} -DHDF4_ENABLE_SZIP_ENCODING:BOOL=${HDF_ENABLE_SZIP_ENCODING} ) endif (${compress_type} MATCHES "SVN") if (${compress_type} MATCHES "TGZ") EXTERNALPROJECT_ADD (HDF4 URL ${HDF4_URL} URL_MD5 "" INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} -DHDF4_BUILD_TOOLS:BOOL=OFF -DHDF4_BUILD_FORTRAN:BOOL=OFF -DHDF4_BUILD_XDR_LIB:BOOL=${HDF45_BUILD_XDR_LIB} -DHDF4_EXTERNALLY_CONFIGURED:BOOL=OFF -DHDF4_PACKAGE_EXTLIBS:BOOL=${HDF_PACKAGE_EXTLIBS} -DHDF4_ALLOW_EXTERNAL_SUPPORT:STRING="TGZ" -DTGZPATH:STRING=${TGZPATH} -DJPEG_TGZ_NAME:STRING=${JPEG_TGZ_NAME} -DZLIB_TGZ_NAME:STRING=${ZLIB_TGZ_NAME} -DSZIP_TGZ_NAME:STRING=${SZIP_TGZ_NAME} -DHDF4_ENABLE_JPEG_LIB_SUPPORT:BOOL=${HDF_ENABLE_JPEG_LIB_SUPPORT} -DHDF4_ENABLE_Z_LIB_SUPPORT:BOOL=${HDF_ENABLE_Z_LIB_SUPPORT} -DHDF4_ENABLE_SZIP_SUPPORT:BOOL=${HDF_ENABLE_SZIP_SUPPORT} -DHDF4_ENABLE_SZIP_ENCODING:BOOL=${HDF_ENABLE_SZIP_ENCODING} ) endif (${compress_type} MATCHES "TGZ") externalproject_get_property (HDF4 BINARY_DIR SOURCE_DIR) # Create imported target hdf4 add_library (hdf ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (hdf "hdf" ${libtype} "") add_library (mfhdf ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (mfhdf "mfhdf" ${libtype} "") add_dependencies (HDF4 hdf mfhdf) set (MFHDF_IMPORTED_LINK_INTERFACE_LIBRARIES "hdf") if (HDF45_BUILD_XDR_LIB) add_library (xdr ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (xdr "xdr" ${libtype} "") add_dependencies (HDF4 xdr) set (MFHDF_IMPORTED_LINK_INTERFACE_LIBRARIES "xdr;${MFHDF_IMPORTED_LINK_INTERFACE_LIBRARIES}") endif (HDF45_BUILD_XDR_LIB) if (HDF_ENABLE_JPEG_LIB_SUPPORT) add_library (jpeg ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (jpeg "jpeg" ${libtype} "") add_dependencies (HDF4 jpeg) endif (HDF_ENABLE_JPEG_LIB_SUPPORT) if (HDF_ENABLE_Z_LIB_SUPPORT) if (NOT ZLIB_LIBRARY) add_library (zlib ${libtype} IMPORTED) if (WIN32) set (ZLIB_LIB_NAME "zlib") else (WIN32) set (ZLIB_LIB_NAME "z") endif (WIN32) HDF_IMPORT_SET_LIB_OPTIONS (zlib ${ZLIB_LIB_NAME} ${libtype} "") set (HDF4_ZLIB "TRUE") endif (NOT ZLIB_LIBRARY) add_dependencies (HDF4 zlib) endif (HDF_ENABLE_Z_LIB_SUPPORT) if (HDF_ENABLE_SZIP_SUPPORT) if (NOT SZIP_LIBRARY) add_library (szip ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (szip "szip" ${libtype} "") set (HDF4_SZIP "TRUE") endif (NOT SZIP_LIBRARY) add_dependencies (HDF4 szip) endif (HDF_ENABLE_SZIP_SUPPORT) if (${libtype} MATCHES "SHARED") set_target_properties (hdf PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "jpeg;zlib;szip" ) set_target_properties (mfhdf PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "${MFHDF_IMPORTED_LINK_INTERFACE_LIBRARIES}" ) else (${libtype} MATCHES "SHARED") set_target_properties (hdf PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "jpeg;zlib;szip" IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) set_target_properties (mfhdf PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "${MFHDF_IMPORTED_LINK_INTERFACE_LIBRARIES}" IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) if (HDF45_BUILD_XDR_LIB) set_target_properties (xdr PROPERTIES IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) endif (HDF45_BUILD_XDR_LIB) if (HDF_ENABLE_JPEG_LIB_SUPPORT) set_target_properties (jpeg PROPERTIES IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) endif (HDF_ENABLE_JPEG_LIB_SUPPORT) if (HDF_ENABLE_Z_LIB_SUPPORT) set_target_properties (zlib PROPERTIES IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) endif (HDF_ENABLE_Z_LIB_SUPPORT) if (HDF_ENABLE_SZIP_SUPPORT) set_target_properties (szip PROPERTIES IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) endif (HDF_ENABLE_SZIP_SUPPORT) endif (${libtype} MATCHES "SHARED") set (HDF4_LIBRARY "hdf;mfhdf") if (HDF45_BUILD_XDR_LIB) set (HDF4_LIBRARY "${HDF4_LIBRARY};xdr") endif (HDF45_BUILD_XDR_LIB) if (HDF_ENABLE_JPEG_LIB_SUPPORT) set (HDF4_LIBRARY "${HDF4_LIBRARY};jpeg") set (JPEG_LIBRARY "jpeg") set (JPEG_INCLUDE_DIR "${BINARY_DIR}/JPEG-prefix/src/JPEG/src") set (JPEG_INCLUDE_DIR_GEN "${BINARY_DIR}/JPEG-prefix/src/JPEG-build" PARENT_SCOPE) set (H425_HAVE_JPEGLIB_H 1) set (H425_HAVE_LIBJPEG 1) set (H425_JPEGLIB_HEADER "jpeglib.h") set (JPEG_LIBRARIES ${JPEG_LIBRARY}) set (JPEG_INCLUDE_DIRS ${JPEG_INCLUDE_DIR_GEN} ${JPEG_INCLUDE_DIR}) set (JPEG_FOUND 1 PARENT_SCOPE) endif (HDF_ENABLE_JPEG_LIB_SUPPORT) if (HDF_ENABLE_Z_LIB_SUPPORT AND HDF4_ZLIB) set (HDF4_LIBRARY "${HDF4_LIBRARY};zlib") set (ZLIB_LIBRARY "zlib") set (ZLIB_INCLUDE_DIR "${BINARY_DIR}/ZLIB-prefix/src/ZLIB/src") set (ZLIB_INCLUDE_DIR_GEN "${BINARY_DIR}/ZLIB-prefix/src/ZLIB-build" PARENT_SCOPE) set (H425_HAVE_FILTER_DEFLATE 1) set (H425_HAVE_ZLIB_H 1) set (H425_HAVE_LIBZ 1) set (H425_ZLIB_HEADER "zlib.h") set (ZLIB_LIBRARIES ${ZLIB_LIBRARY}) set (ZLIB_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR_GEN} ${ZLIB_INCLUDE_DIR}) set (ZLIB_FOUND 1 PARENT_SCOPE) endif (HDF_ENABLE_Z_LIB_SUPPORT AND HDF4_ZLIB) if (HDF_ENABLE_SZIP_SUPPORT AND HDF4_SZIP) set (HDF4_LIBRARY "${HDF4_LIBRARY};szip") set (SZIP_LIBRARY "szip") set (SZIP_INCLUDE_DIR "${BINARY_DIR}/SZIP-prefix/src/SZIP/src") set (SZIP_INCLUDE_DIR_GEN "${BINARY_DIR}/SZIP-prefix/src/SZIP-build" PARENT_SCOPE) set (H425_HAVE_FILTER_SZIP 1) set (H425_HAVE_SZLIB_H 1) set (H425_HAVE_LIBSZ 1) set (SZIP_LIBRARIES ${SZIP_LIBRARY}) set (SZIP_INCLUDE_DIRS ${SZIP_INCLUDE_DIR_GEN} ${SZIP_INCLUDE_DIR}) set (SZIP_FOUND 1 PARENT_SCOPE) endif (HDF_ENABLE_SZIP_SUPPORT AND HDF4_SZIP) # file (READ ${BINARY_DIR}/h4config.h _h4config_h_contents) # string (REGEX REPLACE ".*#define[ \t]+H4_VERSION[ \t]+\"([0-9A-Za-z.]+)\".*" "\\1" HDF4_VERSION_STRING ${_h4config_h_contents}) set (HDF4_INCLUDE_DIR_GEN "${BINARY_DIR}") set (HDF4_HDF_INCLUDE_DIR "${SOURCE_DIR}/hdf/src") set (HDF4_MFHDF_INCLUDE_DIR "${SOURCE_DIR}/mfhdf/libsrc") set (HDF4_INCLUDE_DIR ${HDF4_HDF_INCLUDE_DIR} ${HDF4_MFHDF_INCLUDE_DIR}) set (HDF4_FOUND 1) set (HDF4_LIBRARIES ${HDF4_LIBRARY}) set (HDF4_INCLUDE_DIRS ${HDF4_INCLUDE_DIR_GEN} ${HDF4_INCLUDE_DIR}) ENDMACRO (EXTERNAL_HDF4_LIBRARY) #------------------------------------------------------------------------------- MACRO (PACKAGE_HDF4_LIBRARY compress_type libtype) add_custom_target (HDF4-GenHeader-Copy ALL COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDF4_INCLUDE_DIR_GEN}/h4config.h ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ COMMENT "Copying ${HDF4_INCLUDE_DIR_GEN}/h4config.h to ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/" ) set (EXTERNAL_HEADER_LIST ${EXTERNAL_HEADER_LIST} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/h4config.h) if (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") add_dependencies (HDF4-GenHeader-Copy HDF4) endif (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") ENDMACRO (PACKAGE_HDF4_LIBRARY) #------------------------------------------------------------------------------- MACRO (EXTERNAL_HDF5_LIBRARY compress_type libtype) if (${compress_type} MATCHES "SVN") EXTERNALPROJECT_ADD (HDF5 SVN_REPOSITORY ${HDF5_URL} # [SVN_REVISION rev] INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} -DHDF5_BUILD_TOOLS:BOOL=OFF -DHDF5_EXTERNALLY_CONFIGURED:BOOL=OFF -DHDF5_PACKAGE_EXTLIBS:BOOL=${HDF_PACKAGE_EXTLIBS} -DHDF5_ALLOW_EXTERNAL_SUPPORT:STRING="SVN" -DZLIB_SVN_URL:STRING=${ZLIB_SVN_URL} -DSZIP_SVN_URL:STRING=${SZIP_SVN_URL} -DHDF5_ENABLE_Z_LIB_SUPPORT:BOOL=${HDF_ENABLE_Z_LIB_SUPPORT} -DHDF5_ENABLE_SZIP_SUPPORT:BOOL=${HDF_ENABLE_SZIP_SUPPORT} -DHDF5_ENABLE_SZIP_ENCODING:BOOL=${HDF_ENABLE_SZIP_ENCODING} ) endif (${compress_type} MATCHES "SVN") if (${compress_type} MATCHES "TGZ") EXTERNALPROJECT_ADD (HDF5 URL ${HDF5_URL} URL_MD5 "" INSTALL_COMMAND "" CMAKE_ARGS -DBUILD_SHARED_LIBS:BOOL=${BUILD_SHARED_LIBS} -DHDF_PACKAGE_EXT:STRING=${HDF_PACKAGE_EXT} -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX:PATH=${CMAKE_INSTALL_PREFIX} -DCMAKE_RUNTIME_OUTPUT_DIRECTORY:PATH=${CMAKE_RUNTIME_OUTPUT_DIRECTORY} -DCMAKE_LIBRARY_OUTPUT_DIRECTORY:PATH=${CMAKE_LIBRARY_OUTPUT_DIRECTORY} -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY:PATH=${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} -DCMAKE_ANSI_CFLAGS:STRING=${CMAKE_ANSI_CFLAGS} -DHDF5_BUILD_TOOLS:BOOL=OFF -DHDF5_EXTERNALLY_CONFIGURED:BOOL=OFF -DHDF5_PACKAGE_EXTLIBS:BOOL=${HDF_PACKAGE_EXTLIBS} -DHDF5_ALLOW_EXTERNAL_SUPPORT:STRING="TGZ" -DTGZPATH:STRING=${TGZPATH} -DZLIB_TGZ_NAME:STRING=${ZLIB_TGZ_NAME} -DSZIP_TGZ_NAME:STRING=${SZIP_TGZ_NAME} -DHDF5_ENABLE_Z_LIB_SUPPORT:BOOL=${HDF_ENABLE_Z_LIB_SUPPORT} -DHDF5_ENABLE_SZIP_SUPPORT:BOOL=${HDF_ENABLE_SZIP_SUPPORT} -DHDF5_ENABLE_SZIP_ENCODING:BOOL=${HDF_ENABLE_SZIP_ENCODING} ) endif (${compress_type} MATCHES "TGZ") externalproject_get_property (HDF5 BINARY_DIR SOURCE_DIR) # Create imported target hdf5 add_library (hdf5 ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (hdf5 "hdf5" ${libtype} "") add_dependencies (HDF5 hdf5) if (HDF_ENABLE_Z_LIB_SUPPORT) if (NOT ZLIB_LIBRARY) add_library (zlib ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (zlib "zlib" ${libtype} "") set (HDF5_ZLIB "TRUE") endif (NOT ZLIB_LIBRARY) add_dependencies (HDF5 zlib) endif (HDF_ENABLE_Z_LIB_SUPPORT) if (HDF_ENABLE_SZIP_SUPPORT) if (NOT SZIP_LIBRARY) add_library (szip ${libtype} IMPORTED) HDF_IMPORT_SET_LIB_OPTIONS (szip "szip" ${libtype} "") set (HDF5_SZIP "TRUE") endif (NOT SZIP_LIBRARY) add_dependencies (HDF5 szip) endif (HDF_ENABLE_SZIP_SUPPORT) if (${libtype} MATCHES "SHARED") if (WIN32) set_target_properties (hdf5 PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "zlib;szip" ) else (WIN32) set_target_properties (hdf5 PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "dl;zlib;szip" ) endif (WIN32) else (${libtype} MATCHES "SHARED") set_target_properties (hdf5 PROPERTIES IMPORTED_LINK_INTERFACE_LIBRARIES "zlib;szip" IMPORTED_LINK_INTERFACE_LANGUAGES "C" ) endif (${libtype} MATCHES "SHARED") set (HDF5_LIBRARY "hdf5") if (HDF_ENABLE_Z_LIB_SUPPORT AND HDF5_ZLIB) set (HDF5_LIBRARY "${HDF5_LIBRARY};zlib") set (ZLIB_LIBRARY "zlib") set (ZLIB_INCLUDE_DIR "${BINARY_DIR}/ZLIB-prefix/src/ZLIB/src") set (ZLIB_INCLUDE_DIR_GEN "${BINARY_DIR}/ZLIB-prefix/src/ZLIB-build") set (H425_HAVE_FILTER_DEFLATE 1) set (H425_HAVE_ZLIB_H 1) set (H425_HAVE_LIBZ 1) set (H425_ZLIB_HEADER "zlib.h") set (ZLIB_LIBRARIES ${ZLIB_LIBRARY}) set (ZLIB_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR_GEN} ${ZLIB_INCLUDE_DIR}) endif (HDF_ENABLE_Z_LIB_SUPPORT AND HDF5_ZLIB) if (HDF_ENABLE_SZIP_SUPPORT AND HDF5_SZIP) set (HDF5_LIBRARY "${HDF5_LIBRARY};szip") set (SZIP_LIBRARY "szip") set (SZIP_INCLUDE_DIR "${BINARY_DIR}/SZIP-prefix/src/SZIP/src") set (SZIP_INCLUDE_DIR_GEN "${BINARY_DIR}/SZIP-prefix/src/SZIP-build") set (H425_HAVE_FILTER_SZIP 1) set (H425_HAVE_SZLIB_H 1) set (H425_HAVE_LIBSZ 1) set (SZIP_LIBRARIES ${SZIP_LIBRARY}) set (SZIP_INCLUDE_DIRS ${SZIP_INCLUDE_DIR_GEN} ${SZIP_INCLUDE_DIR}) endif (HDF_ENABLE_SZIP_SUPPORT AND HDF5_SZIP) # file (READ ${BINARY_DIR}/H5pubconf.h _h5pubconf_h_contents) # string (REGEX REPLACE ".*#define[ \t]+H5_VERSION[ \t]+\"([0-9A-Za-z.]+)\".*" "\\1" HDF5_VERSION_STRING ${_h5pubconf_h_contents}) set (HDF5_INCLUDE_DIR_GEN "${BINARY_DIR}") set (HDF5_INCLUDE_DIR "${SOURCE_DIR}/src") set (HDF5_FOUND 1) message ("HDF5_LIBRARY is ${HDF5_LIBRARY}\n") set (HDF5_LIBRARIES ${HDF5_LIBRARY}) set (HDF5_INCLUDE_DIRS ${HDF5_INCLUDE_DIR_GEN} ${HDF5_INCLUDE_DIR}) ENDMACRO (EXTERNAL_HDF5_LIBRARY) #------------------------------------------------------------------------------- MACRO (PACKAGE_HDF5_LIBRARY compress_type libtype) add_custom_target (HDF5-GenHeader-Copy ALL COMMAND ${CMAKE_COMMAND} -E copy_if_different ${HDF5_INCLUDE_DIR_GEN}/H5pubconf.h ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/ COMMENT "Copying ${HDF5_INCLUDE_DIR_GEN}/H5pubconf.h to ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/" ) set (EXTERNAL_HEADER_LIST ${EXTERNAL_HEADER_LIST} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/H5pubconf.h) if (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") add_dependencies (HDF5-GenHeader-Copy HDF5) endif (${compress_type} MATCHES "SVN" OR ${compress_type} MATCHES "TGZ") ENDMACRO (PACKAGE_HDF5_LIBRARY) hdf-java-2.11.0/config/cmake/cacheinit.cmake0000644002344600011330000000420112423745433017033 0ustar byrnhdf# This is the CMakeCache file. ######################## # EXTERNAL cache entries ######################## set (BUILD_SHARED_LIBS OFF CACHE BOOL "Build Shared Libraries" FORCE) set (USE_SHARED_LIBS OFF CACHE BOOL "Use Shared Libraries" FORCE) set (BUILD_TESTING ON CACHE BOOL "Build HDFJAVA Unit Testing" FORCE) set (HDF_PACKAGE_EXT "" CACHE STRING "Name of HDF package extension" FORCE) set (HDF_BUILD_EXAMPLES ON CACHE BOOL "Build HDFJAVA Library Examples" FORCE) set (HDF_ENABLE_JPEG_LIB_SUPPORT ON CACHE BOOL "Use Jpeg library" FORCE) set (HDF_ENABLE_Z_LIB_SUPPORT ON CACHE BOOL "Enable Zlib Filters" FORCE) set (HDF_ENABLE_SZIP_SUPPORT ON CACHE BOOL "Use SZip Filter" FORCE) set (HDF_ENABLE_SZIP_ENCODING ON CACHE BOOL "Use SZip Encoding" FORCE) set (HDF_DISABLE_COMPILER_WARNINGS OFF CACHE BOOL "Disable compiler warnings" FORCE) set (HDF_ENABLE_PARALLEL OFF CACHE BOOL "Enable parallel build (requires MPI)" FORCE) set (HDF_ENABLE_COVERAGE OFF CACHE BOOL "Enable code coverage for Libraries and Programs" FORCE) set (HDF_SKIP_GUI_TESTS OFF CACHE BOOL "Skip testing of GUI" FORCE) set (HDF_PACKAGE_EXTLIBS OFF CACHE BOOL "(WINDOWS)CPACK - include external libraries" FORCE) set (HDF_ALLOW_EXTERNAL_SUPPORT "NO" CACHE STRING "Allow External Library Building (NO SVN TGZ)" FORCE) set_property (CACHE HDF_ALLOW_EXTERNAL_SUPPORT PROPERTY STRINGS NO SVN TGZ) set (ZLIB_TGZ_NAME "ZLib.tar.gz" CACHE STRING "Use ZLib from compressed file" FORCE) set (SZIP_TGZ_NAME "SZip.tar.gz" CACHE STRING "Use SZip from compressed file" FORCE) set (JPEG_TGZ_NAME "JPEG8b.tar.gz" CACHE STRING "Use JPEG from compressed file" FORCE) set (HDF4_TGZ_NAME "HDF4.tar.gz" CACHE STRING "Use HDF4 from compressed file" FORCE) set (HDF5_TGZ_NAME "HDF5.tar.gz" CACHE STRING "Use HDF5 from compressed file" FORCE) set (HDF4_PACKAGE_NAME "hdf4" CACHE STRING "Name of HDF4 package" FORCE) set (HDF5_PACKAGE_NAME "hdf5" CACHE STRING "Name of HDF5 package" FORCE) set (ZLIB_PACKAGE_NAME "zlib" CACHE STRING "Name of ZLIB package" FORCE) set (SZIP_PACKAGE_NAME "szip" CACHE STRING "Name of SZIP package" FORCE) set (JPEG_PACKAGE_NAME "jpeg" CACHE STRING "Name of JPEG package" FORCE) hdf-java-2.11.0/config/cmake/NSIS.InstallOptions.ini.in0000644002344600011330000000105112437654501020745 0ustar byrnhdf[Settings] NumFields=4 [Field 1] Type=label Text=By default @CPACK_PACKAGE_NAME@ does not add its directory to the system PATH. Left=0 Right=-1 Top=0 Bottom=20 [Field 2] Type=radiobutton Text=Do not add @CPACK_PACKAGE_NAME@ to the system PATH Left=0 Right=-1 Top=30 Bottom=40 State=1 [Field 3] Type=radiobutton Text=Add @CPACK_PACKAGE_NAME@ to the system PATH for all users Left=0 Right=-1 Top=40 Bottom=50 State=0 [Field 4] Type=radiobutton Text=Add @CPACK_PACKAGE_NAME@ to the system PATH for current user Left=0 Right=-1 Top=50 Bottom=60 State=0 hdf-java-2.11.0/config/cmake/UseJavaClassFilelist.cmake0000644002344600011330000000430412341422524021120 0ustar byrnhdf#.rst: # UseJavaClassFilelist # -------------------- # # # # # # This script create a list of compiled Java class files to be added to # a jar file. This avoids including cmake files which get created in # the binary directory. #============================================================================= # Copyright 2010-2011 Andreas schneider # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the License for more information. #============================================================================= # (To distribute this file outside of CMake, substitute the full # License text for the above reference.) if (CMAKE_JAVA_CLASS_OUTPUT_PATH) if (EXISTS "${CMAKE_JAVA_CLASS_OUTPUT_PATH}") set(_JAVA_GLOBBED_FILES) if (CMAKE_JAR_CLASSES_PREFIX) foreach(JAR_CLASS_PREFIX ${CMAKE_JAR_CLASSES_PREFIX}) message(STATUS "JAR_CLASS_PREFIX: ${JAR_CLASS_PREFIX}") file(GLOB_RECURSE _JAVA_GLOBBED_TMP_FILES "${CMAKE_JAVA_CLASS_OUTPUT_PATH}/${JAR_CLASS_PREFIX}/*.class") if (_JAVA_GLOBBED_TMP_FILES) list(APPEND _JAVA_GLOBBED_FILES ${_JAVA_GLOBBED_TMP_FILES}) endif () endforeach() else() file(GLOB_RECURSE _JAVA_GLOBBED_FILES "${CMAKE_JAVA_CLASS_OUTPUT_PATH}/*.class") endif () set(_JAVA_CLASS_FILES) # file(GLOB_RECURSE foo RELATIVE) is broken so we need this. foreach(_JAVA_GLOBBED_FILE ${_JAVA_GLOBBED_FILES}) file(RELATIVE_PATH _JAVA_CLASS_FILE ${CMAKE_JAVA_CLASS_OUTPUT_PATH} ${_JAVA_GLOBBED_FILE}) set(_JAVA_CLASS_FILES ${_JAVA_CLASS_FILES}${_JAVA_CLASS_FILE}\n) endforeach() # write to file file(WRITE ${CMAKE_JAVA_CLASS_OUTPUT_PATH}/java_class_filelist ${_JAVA_CLASS_FILES}) else () message(SEND_ERROR "FATAL: Java class output path doesn't exist") endif () else () message(SEND_ERROR "FATAL: Can't find CMAKE_JAVA_CLASS_OUTPUT_PATH") endif () hdf-java-2.11.0/config/cmake/HDFJAVA-config.cmake.build.in0000644002344600011330000000343512330772207021121 0ustar byrnhdf#----------------------------------------------------------------------------- # HDFJAVA Config file for compiling against HDFJAVA build directory #----------------------------------------------------------------------------- get_filename_component (SELF_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH) #----------------------------------------------------------------------------- # User Options #----------------------------------------------------------------------------- set (HDF_ENABLE_PARALLEL @HDF_ENABLE_PARALLEL@) set (BUILD_SHARED_LIBS @BUILD_SHARED_LIBS@) set (HDF_ENABLE_JPEG_LIB_SUPPORT @HDF_ENABLE_JPEG_LIB_SUPPORT@) set (HDF_ENABLE_Z_LIB_SUPPORT @HDF_ENABLE_Z_LIB_SUPPORT@) set (HDF_ENABLE_SZIP_SUPPORT @HDF_ENABLE_SZIP_SUPPORT@) set (HDF_ENABLE_SZIP_ENCODING @HDF_ENABLE_SZIP_ENCODING@) #----------------------------------------------------------------------------- # Directories #----------------------------------------------------------------------------- set (HDFJAVA_INCLUDE_DIRS "@HDFJAVA_INCLUDES_BUILD_TIME@") #----------------------------------------------------------------------------- # Version Strings #----------------------------------------------------------------------------- set (HDFJAVA_VERSION_STRING @HDFJAVA_PACKAGE_VERSION@) set (HDFJAVA_VERSION_MAJOR @HDFJAVA_PACKAGE_VERSION_MAJOR@) set (HDFJAVA_VERSION_MINOR @HDFJAVA_PACKAGE_VERSION_MINOR@) #----------------------------------------------------------------------------- # Don't include targets if this file is being picked up by another # project which has already build HDFJAVA as a subproject #----------------------------------------------------------------------------- if (NOT TARGET "@HDFJAVA_PACKAGE@") include (${SELF_DIR}/@HDFJAVA_PACKAGE@@HDF_PACKAGE_EXT@-targets.cmake) endif (NOT TARGET "@HDFJAVA_PACKAGE@") hdf-java-2.11.0/config/install-sh0000755002344600011330000001272707403742116015037 0ustar byrnhdf#! /bin/sh # # install - install a program, script, or datafile # This comes from X11R5 (mit/util/scripts/install.sh). # # Copyright 1991 by the Massachusetts Institute of Technology # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that # the above copyright notice appear in all copies and that both that # copyright notice and this permission notice appear in supporting # documentation, and that the name of M.I.T. not be used in advertising or # publicity pertaining to distribution of the software without specific, # written prior permission. M.I.T. makes no representations about the # suitability of this software for any purpose. It is provided "as is" # without express or implied warranty. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. It can only install one file at a time, a restriction # shared with many OS's install programs. # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" transformbasename="" transform_arg="" instcmd="$mvprog" chmodcmd="$chmodprog 0755" chowncmd="" chgrpcmd="" stripcmd="" rmcmd="$rmprog -f" mvcmd="$mvprog" src="" dst="" dir_arg="" while [ x"$1" != x ]; do case $1 in -c) instcmd="$cpprog" shift continue;; -d) dir_arg=true shift continue;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; -s) stripcmd="$stripprog" shift continue;; -t=*) transformarg=`echo $1 | sed 's/-t=//'` shift continue;; -b=*) transformbasename=`echo $1 | sed 's/-b=//'` shift continue;; *) if [ x"$src" = x ] then src=$1 else # this colon is to work around a 386BSD /bin/sh bug : dst=$1 fi shift continue;; esac done if [ x"$src" = x ] then echo "install: no input file specified" exit 1 else true fi if [ x"$dir_arg" != x ]; then dst=$src src="" if [ -d $dst ]; then instcmd=: else instcmd=mkdir fi else # Waiting for this to be detected by the "$instcmd $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if [ -f $src -o -d $src ] then true else echo "install: $src does not exist" exit 1 fi if [ x"$dst" = x ] then echo "install: no destination specified" exit 1 else true fi # If destination is a directory, append the input filename; if your system # does not like double slashes in filenames, you may need to add some logic if [ -d $dst ] then dst="$dst"/`basename $src` else true fi fi ## this sed command emulates the dirname command dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` # Make sure that the destination directory exists. # this part is taken from Noah Friedman's mkinstalldirs script # Skip lots of stat calls in the usual case. if [ ! -d "$dstdir" ]; then defaultIFS=' ' IFS="${IFS-${defaultIFS}}" oIFS="${IFS}" # Some sh's can't handle IFS=/ for some reason. IFS='%' set - `echo ${dstdir} | sed -e 's@@/@@%@@g' -e 's@@^%@@/@@'` IFS="${oIFS}" pathcomp='' while [ $# -ne 0 ] ; do pathcomp="${pathcomp}${1}" shift if [ ! -d "${pathcomp}" ] ; then $mkdirprog "${pathcomp}" else true fi pathcomp="${pathcomp}/" done fi if [ x"$dir_arg" != x ] then $doit $instcmd $dst && if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi else # If we're going to rename the final executable, determine the name now. if [ x"$transformarg" = x ] then dstfile=`basename $dst` else dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename fi # don't allow the sed command to completely eliminate the filename if [ x"$dstfile" = x ] then dstfile=`basename $dst` else true fi # Make a temp file name in the proper directory. dsttmp=$dstdir/#inst.$$# # Move or copy the file name to the temp name $doit $instcmd $src $dsttmp && trap "rm -f ${dsttmp}" 0 && # and set any options; do chmod last to preserve setuid bits # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $instcmd $src $dsttmp" command. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi && # Now rename the file to the real destination. $doit $rmcmd -f $dstdir/$dstfile && $doit $mvcmd $dsttmp $dstdir/$dstfile fi && exit 0 hdf-java-2.11.0/config/config.sh0000755002344600011330000000672111552127342014632 0ustar byrnhdf#!/bin/bash ########################################################### # Sample configuration file to build hdf-java # ########################################################### BUILDDIR=/mnt/scr1/xcao/hdf_java/build LIBDIR=/mnt/scr1/xcao/hdf_java/lib ############################################################ # linux32 (jam) # ############################################################ #MACHINE=linux32 #JAVAINC=/usr/lib/jvm/java/include #JAVALIB=/usr/lib/jvm/java/jre/lib #EXTRA_FLAGS=--with-javax="-Xmx1024m" ############################################################ # linux64 (koala) # ############################################################ #MACHINE=linux64 #JAVAINC=/usr/lib/jvm/java/include #JAVALIB=/usr/lib/jvm/java/jre/lib #export CC="gcc -fPIC" ############################################################ # solaris32 (linew) # ############################################################ #MACHINE=solaris32 #JAVAINC=/usr/java/jdk1.6.0_12/include #JAVALIB=/usr/java/jdk1.6.0_12/jre/lib #export CC="/opt/SUNWspro/bin/cc" #EXTRA_FLAGS=--with-javax="-Xmx1024m" ############################################################ # solaris64 (linew) # ############################################################ #MACHINE=solaris64 #JAVAINC=/usr/java/jdk1.6.0_12/include #JAVALIB=/usr/java/jdk1.6.0_12/jre/lib #JAVABIN=/usr/java/jdk1.6.0_12/bin/sparcv9 #export CC="/opt/SUNWspro/bin/cc -KPIC -m64" #EXTRA_FLAGS=--with-javabin=$JAVABIN ############################################################ # macintel32 (tejeda) # ############################################################ #MACHINE=macintel32 #BUILDDIR=/Users/xcao/hdf_java/build #LIBDIR=/Users/xcao/hdf_java/lib #JAVAINC=/System/Library/Frameworks/JavaVM.framework/Headers #JAVALIB=/System/Library/Frameworks/JavaVM.framework/Libraries #EXTRA_FLAGS="--with-javax=-Xmx1024m -build=powerpc-apple --with-jdkclasses=/System/Library/Frameworks/JavaVM.framework/Classes --with-javabin=/System/Library/Frameworks/JavaVM.framework/Commands" ############################################################ # macintel64 (fred) # ############################################################ #MACHINE=macintel64 #BUILDDIR=/Users/xcao/hdf_java/build #LIBDIR=/Users/xcao/hdf_java/lib #JAVAINC=/System/Library/Frameworks/JavaVM.framework/Headers #JAVALIB=/System/Library/Frameworks/JavaVM.framework/Libraries #EXTRA_FLAGS="-build=powerpc-apple --with-jdkclasses=/System/Library/Frameworks/JavaVM.framework/Classes --with-javabin=/System/Library/Frameworks/JavaVM.framework/Commands" #export CC="gcc -mmacosx-version-min=10.5 -isysroot /Developer/SDKs/MacOSX10.5.sdk -fPIC" ############################################################ # Do not change below this line # ############################################################ INSTDIR=$BUILDDIR/$MACHINE HDF4=$LIBDIR/$MACHINE/hdf4 HDF5=$LIBDIR/$MACHINE/hdf5 JPEG=$LIBDIR/$MACHINE/jpeg SZIP=$LIBDIR/$MACHINE/szip ZLIB=$LIBDIR/$MACHINE/zlib rm -rf $INSTDIR; mkdir $INSTDIR ./configure $EXTRA_FLAGS --prefix=$INSTDIR \ --with-jdk=$JAVAINC,$JAVALIB \ --with-hdf5=$HDF5/include,$HDF5/lib \ --with-hdf4=$HDF4/include,$HDF4/lib \ --with-libjpeg=$JPEG/include,$JPEG/lib \ --with-libsz=$SZIP/include,$SZIP/lib \ --with-libz=$ZLIB/include,$ZLIB/lib \ hdf-java-2.11.0/CMakeLists.txt0000644002344600011330000010724312440357532014325 0ustar byrnhdfcmake_minimum_required(VERSION 2.8.10) PROJECT ( HDFJAVA C Java ) #----------------------------------------------------------------------------- # Instructions for use : Normal Build # # For standard build of HDFJAVA libraries,tests and tools. # Run cmake using the HDFJAVA source tree to generate a build tree. # Enable/Disable options according to requirements and # set CMAKE_INSTALL_PREFIX to the required install path. # Make install can be used to install all components for system-wide use. # #----------------------------------------------------------------------------- # Instructions for use : Sub-Project Build # # To include HDFJAVA as a sub-project within another project. # Set HDFJAVA_EXTERNALLY_CONFIGURED to 1 in the parent project and # supply values for the following variables... # # HDFJAVA_EXPORTED_TARGETS : # Set this to the name of the targets variable which controls exports # If unset (because parent project does not support/use the # install (EXPORT target...) syntax), then targets are not configured # for export during install. # # HDFJAVA_LIB_DEPENDENCIES : # If the build of HDFJAVA libs is being customized, then rules for the # dependencies of the HDFJAVA libs may be 'incomplete', add additional # dependencies to this variable so that external projects pick them up # # HDFJAVA_EXTERNAL_LIB_PREFIX : # If the parent project needs to install hdf libraries, but avoid # name conflicts with system versions, then a prefix may be added # to ensure that the correct versions configured are used. # #----------------------------------------------------------------------------- #----------------------------------------------------------------------------- # Set the core names of all the libraries #----------------------------------------------------------------------------- set (HDFJAVA_JNI_HDF_LIB_CORENAME "jhdf") set (HDFJAVA_JNI_HDF5_LIB_CORENAME "jhdf5") set (HDFJAVA_NCSA_HDF_LIB_CORENAME "jarhdf") set (HDFJAVA_NCSA_HDF5_LIB_CORENAME "jarhdf5") set (HDFJAVA_NCSA_OBJECT_LIB_CORENAME "jarhdfobj") set (HDFJAVA_NCSA_FITS_LIB_CORENAME "jarfitsobj") set (HDFJAVA_NCSA_H4_LIB_CORENAME "jarh4obj") set (HDFJAVA_NCSA_H5_LIB_CORENAME "jarh5obj") set (HDFJAVA_NCSA_NC2_LIB_CORENAME "jarnc2obj") set (HDFJAVA_TEST_HDF5_LIB_CORENAME "jartest5") set (HDFJAVA_TEST_OBJECT_LIB_CORENAME "jartestobj") set (HDFJAVA_TEST_UITEST_CORENAME "jaruitest") set (HDFJAVA_NCSA_VIEW_LIB_CORENAME "jhdfview") #----------------------------------------------------------------------------- # Set the true names of all the libraries if customized by external project #----------------------------------------------------------------------------- set (HDFJAVA_JNI_HDF_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_JNI_HDF_LIB_CORENAME}") set (HDFJAVA_JNI_HDF5_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_JNI_HDF5_LIB_CORENAME}") set (HDFJAVA_NCSA_HDF_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_NCSA_HDF_LIB_CORENAME}") set (HDFJAVA_NCSA_HDF5_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_NCSA_HDF5_LIB_CORENAME}") set (HDFJAVA_NCSA_OBJECT_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_NCSA_OBJECT_LIB_CORENAME}") set (HDFJAVA_NCSA_FITS_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_NCSA_FITS_LIB_CORENAME}") set (HDFJAVA_NCSA_H4_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_NCSA_H4_LIB_CORENAME}") set (HDFJAVA_NCSA_H5_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_NCSA_H5_LIB_CORENAME}") set (HDFJAVA_NCSA_NC2_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_NCSA_NC2_LIB_CORENAME}") set (HDFJAVA_TEST_HDF5_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_TEST_HDF5_LIB_CORENAME}") set (HDFJAVA_TEST_OBJECT_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_TEST_OBJECT_LIB_CORENAME}") set (HDFJAVA_TEST_UITEST_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_TEST_UITEST_CORENAME}") set (HDFJAVA_NCSA_VIEW_LIB_NAME "${HDFJAVA_EXTERNAL_LIB_PREFIX}${HDFJAVA_NCSA_VIEW_LIB_CORENAME}") #----------------------------------------------------------------------------- # Set the target names of all the libraries #----------------------------------------------------------------------------- set (HDFJAVA_JNI_HDF_LIB_TARGET ${HDFJAVA_JNI_HDF_LIB_CORENAME}) set (HDFJAVA_JNI_HDF5_LIB_TARGET ${HDFJAVA_JNI_HDF5_LIB_CORENAME}) set (HDFJAVA_NCSA_HDF_LIB_TARGET ${HDFJAVA_NCSA_HDF_LIB_CORENAME}) set (HDFJAVA_NCSA_HDF5_LIB_TARGET ${HDFJAVA_NCSA_HDF5_LIB_CORENAME}) set (HDFJAVA_NCSA_OBJECT_LIB_TARGET ${HDFJAVA_NCSA_OBJECT_LIB_CORENAME}) set (HDFJAVA_NCSA_FITS_LIB_TARGET ${HDFJAVA_NCSA_FITS_LIB_CORENAME}) set (HDFJAVA_NCSA_H4_LIB_TARGET ${HDFJAVA_NCSA_H4_LIB_CORENAME}) set (HDFJAVA_NCSA_H5_LIB_TARGET ${HDFJAVA_NCSA_H5_LIB_CORENAME}) set (HDFJAVA_NCSA_NC2_LIB_TARGET ${HDFJAVA_NCSA_NC2_LIB_CORENAME}) set (HDFJAVA_TEST_HDF5_LIB_TARGET ${HDFJAVA_TEST_HDF5_LIB_CORENAME}) set (HDFJAVA_TEST_OBJECT_LIB_TARGET ${HDFJAVA_TEST_OBJECT_LIB_CORENAME}) set (HDFJAVA_TEST_UITEST_TARGET ${HDFJAVA_TEST_UITEST_CORENAME}) set (HDFJAVA_NCSA_VIEW_LIB_TARGET ${HDFJAVA_NCSA_VIEW_LIB_CORENAME}) #----------------------------------------------------------------------------- # Define some CMake variables for use later in the project #----------------------------------------------------------------------------- set (HDF_RESOURCES_DIR ${HDFJAVA_SOURCE_DIR}/config/cmake) set (HDF_RESOURCES_EXT_DIR ${HDFJAVA_SOURCE_DIR}/config/cmake_ext_mod) set (HDFJAVA_JNI_SRC_DIR ${HDFJAVA_SOURCE_DIR}/native) set (HDFJAVA_JAVA_SRC_DIR ${HDFJAVA_SOURCE_DIR}/ncsa/hdf) set (HDFJAVA_JAVA_OBJECT_SRC_DIR ${HDFJAVA_SOURCE_DIR}/ncsa/hdf/object) set (HDFJAVA_TEST_SRC_DIR ${HDFJAVA_SOURCE_DIR}/test) set (HDFJAVA_EXAMPLES_SOURCE_DIR ${HDFJAVA_SOURCE_DIR}/examples) set (HDFJAVA_LIB_DIR ${HDFJAVA_SOURCE_DIR}/lib) set (HDFJAVA_FITS_JAR ${HDFJAVA_SOURCE_DIR}/lib/fits.jar) set (HDFJAVA_NETCDF_JAR ${HDFJAVA_SOURCE_DIR}/lib/netcdf.jar) set (HDFJAVA_LOGGING_JAR ${HDFJAVA_SOURCE_DIR}/lib/slf4j-api-1.7.5.jar) set (HDFJAVA_LOGGING_NOP_JAR ${HDFJAVA_SOURCE_DIR}/lib/ext/slf4j-nop-1.7.5.jar) set (HDFJAVA_LOGGING_SIMPLE_JAR ${HDFJAVA_SOURCE_DIR}/lib/ext/slf4j-simple-1.7.5.jar) if (NOT HJAVA_INSTALL_BIN_DIR) set (HJAVA_INSTALL_BIN_DIR bin) endif (NOT HJAVA_INSTALL_BIN_DIR) if (NOT HJAVA_INSTALL_LIB_DIR) if (APPLE) option (HDFJAVA_PACK_MACOSX_BUNDLE "Create a Mac OSX Application Bundle" OFF) if (HDFJAVA_PACK_MACOSX_BUNDLE) set (HJAVA_INSTALL_JAR_DIR ../Java) else (HDFJAVA_PACK_MACOSX_BUNDLE) set (HJAVA_INSTALL_JAR_DIR lib) endif (HDFJAVA_PACK_MACOSX_BUNDLE) set (HJAVA_INSTALL_LIB_DIR lib) else (APPLE) set (HJAVA_INSTALL_JAR_DIR lib) set (HJAVA_INSTALL_LIB_DIR lib) endif (APPLE) endif (NOT HJAVA_INSTALL_LIB_DIR) if (NOT HJAVA_INSTALL_INCLUDE_DIR) set (HJAVA_INSTALL_INCLUDE_DIR include) endif (NOT HJAVA_INSTALL_INCLUDE_DIR) if (NOT HJAVA_INSTALL_DATA_DIR) if (NOT WIN32) set (HJAVA_INSTALL_DATA_DIR share) set (HJAVA_INSTALL_CMAKE_DIR share/cmake) if (APPLE) if (HDFJAVA_PACK_MACOSX_BUNDLE) set (HJAVA_INSTALL_EXTRA_DIR ../SharedSupport) else (HDFJAVA_PACK_MACOSX_BUNDLE) set (HJAVA_INSTALL_EXTRA_DIR share) endif (HDFJAVA_PACK_MACOSX_BUNDLE) else (APPLE) set (HJAVA_INSTALL_EXTRA_DIR share) endif (APPLE) else (NOT WIN32) set (HJAVA_INSTALL_DATA_DIR ".") set (HJAVA_INSTALL_CMAKE_DIR cmake) set (HJAVA_INSTALL_EXTRA_DIR ".") endif (NOT WIN32) endif (NOT HJAVA_INSTALL_DATA_DIR) #----------------------------------------------------------------------------- # parse the full version number from hjava.h and include in HJAVA_VERS_INFO #----------------------------------------------------------------------------- file (READ ${HDFJAVA_SOURCE_DIR}/VERSION _hjava_version_contents) string (REGEX REPLACE ".*VERSION=hdf-java-([0-9]*.[0-9]*).*$" "\\1" HJAVA_FULL_VERSION ${_hjava_version_contents}) string (REGEX REPLACE ".*VERSION=hdf-java-([0-9]*).*$" "\\1" HJAVA_VERS_MAJOR ${_hjava_version_contents}) string (REGEX REPLACE ".*VERSION=hdf-java-[0-9]*.([0-9]*).*$" "\\1" HJAVA_VERS_MINOR ${_hjava_version_contents}) string (REGEX REPLACE ".*VERSION=hdf-java-[0-9]*.[0-9]*.([0-9]*).*$" "\\1" HJAVA_VERS_RELEASE ${_hjava_version_contents}) message (STATUS "VERSION: ${HJAVA_FULL_VERSION}") message (STATUS "VERSION MAJOR: ${HJAVA_VERS_MAJOR}") message (STATUS "VERSION MINOR: ${HJAVA_VERS_MINOR}") if (NOT HJAVA_VERS_RELEASE) set (HJAVA_VERS_RELEASE 0) endif (NOT HJAVA_VERS_RELEASE) message (STATUS "VERSION RELEASE: ${HJAVA_VERS_RELEASE}") #----------------------------------------------------------------------------- # Basic HDFJAVA stuff here #----------------------------------------------------------------------------- set (HDFJAVA_PACKAGE "hdf-java") set (HDFJAVA_PACKAGE_NAME "HDFView") set (HDFJAVA_PACKAGE_VERSION "${HJAVA_VERS_MAJOR}.${HJAVA_VERS_MINOR}.${HJAVA_VERS_RELEASE}") set (HDFJAVA_PACKAGE_VERSION_STRING "${HDFJAVA_PACKAGE_VERSION}") set (HDFJAVA_PACKAGE_VERSION_MAJOR "${HJAVA_VERS_MAJOR}") set (HDFJAVA_PACKAGE_VERSION_MINOR "${HJAVA_VERS_MINOR}") set (HDFJAVA_PACKAGE_STRING "${HDFJAVA_PACKAGE_NAME}") set (HDFJAVA_PACKAGE_TARNAME "hdf-java") set (HDFJAVA_PACKAGE_URL "http://www.hdfgroup.org/hdfjava") set (HDFJAVA_PACKAGE_BUGREPORT "help@hdfgroup.org") set (CMAKE_MODULE_PATH "${HDF_RESOURCES_DIR};${HDF_RESOURCES_EXT_DIR}") find_package (Java) #----------------------------------------------------------------------------- # Include some macros for reusable code #----------------------------------------------------------------------------- include (${HDF_RESOURCES_DIR}/UseJava.cmake) include (${HDF_RESOURCES_EXT_DIR}/HDFMacros.cmake) include (${HDF_RESOURCES_EXT_DIR}/HDFLibMacros.cmake) include (${HDF_RESOURCES_DIR}/HDF45Macros.cmake) include (${HDF_RESOURCES_DIR}/HDFJavaMacros.cmake) #----------------------------------------------------------------------------- # Setup output Directories #----------------------------------------------------------------------------- if (NOT HDFJAVA_EXTERNALLY_CONFIGURED) set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all Executables." ) set (CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all Libraries" ) set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all static libraries." ) set (CMAKE_JAVA_TARGET_OUTPUT_DIR ${PROJECT_BINARY_DIR}/bin CACHE PATH "Single Directory for all java jars." ) if (WIN32) set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${CMAKE_BUILD_TYPE}) else (WIN32) set (CMAKE_TEST_OUTPUT_DIRECTORY ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) endif (WIN32) else (NOT HDFJAVA_EXTERNALLY_CONFIGURED) # if we are externally configured, but the project uses old cmake scripts # this may not be set and utilities like Hdetect will fail if (NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY) set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${EXECUTABLE_OUTPUT_PATH}) endif (NOT CMAKE_RUNTIME_OUTPUT_DIRECTORY) endif (NOT HDFJAVA_EXTERNALLY_CONFIGURED) #----------------------------------------------------------------------------- # Targets built within this project are exported at Install time for use # by other projects using FindHDFJAVA. #----------------------------------------------------------------------------- if (NOT HDFJAVA_EXPORTED_TARGETS) set (HDFJAVA_EXPORTED_TARGETS "HDFJAVA-targets") endif (NOT HDFJAVA_EXPORTED_TARGETS) #----------------------------------------------------------------------------- # To include a library in the list exported by the project AT BUILD TIME, # add it to this variable. This is NOT used by Make Install, but for projects # which include HDFJAVA as a sub-project within their build tree #----------------------------------------------------------------------------- SET_GLOBAL_VARIABLE (HDFJAVA_LIBRARIES_TO_EXPORT "") SET_GLOBAL_VARIABLE (HDFJAVA_JARS_TO_EXPORT "") SET_GLOBAL_VARIABLE (HDFJAVA_HDFVIEWJAR_TO_EXPORT "${HDFJAVA_LOGGING_JAR}") SET_GLOBAL_VARIABLE (HDFJAVA_SOURCE_PACKAGES "") SET_GLOBAL_VARIABLE (HDFJAVA_OBJECT_JARS "") #----------------------------------------------------------------------------- # Option to use code coverage #----------------------------------------------------------------------------- option (HDF_ENABLE_COVERAGE "Enable code coverage for Libraries and Programs" OFF) if (HDF_ENABLE_COVERAGE) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage") set (LDFLAGS "${LDFLAGS} -fprofile-arcs -ftest-coverage") endif (HDF_ENABLE_COVERAGE) #----------------------------------------------------------------------------- # Include user macros #----------------------------------------------------------------------------- include (UserMacros.cmake) #----------------------------------------------------------------------------- # Include the main src and config directories #----------------------------------------------------------------------------- set (HDFJAVA_INCLUDE_DIRECTORIES ${HDFJAVA_JNI_SRC_DIR}/hdflib ${HDFJAVA_JNI_SRC_DIR}/hdf5lib ${HDFJAVA_BINARY_DIR} ${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH2} ) INCLUDE_DIRECTORIES (${HDFJAVA_INCLUDE_DIRECTORIES}) set (CMAKE_JAVA_INCLUDE_PATH "") set (HDFVIEW_OPTIONS_INCLUDE_PATH "") set (MAKE_SYSTEM) if (CMAKE_BUILD_TOOL MATCHES "make") set (MAKE_SYSTEM 1) endif (CMAKE_BUILD_TOOL MATCHES "make") set (CFG_INIT "/${CMAKE_CFG_INTDIR}") if (MAKE_SYSTEM) set (CFG_INIT "") endif (MAKE_SYSTEM) #----------------------------------------------------------------------------- # Dashboard and Testing Settings #----------------------------------------------------------------------------- option (BUILD_TESTING "Build HDFJAVA Unit Testing" OFF) if (BUILD_TESTING) set (DART_TESTING_TIMEOUT 1200 CACHE INTEGER "Timeout in seconds for each test (default 1200=20minutes)" ) enable_testing () include (CTest) include (${HDFJAVA_SOURCE_DIR}/CTestConfig.cmake) configure_file (${HDF_RESOURCES_EXT_DIR}/CTestCustom.cmake ${HDFJAVA_BINARY_DIR}/CTestCustom.ctest @ONLY) endif (BUILD_TESTING) #----------------------------------------------------------------------------- # Add the HDFJAVA Library Target to the build #----------------------------------------------------------------------------- add_subdirectory (${HDFJAVA_SOURCE_DIR}/native native) add_subdirectory (${HDFJAVA_SOURCE_DIR}/ncsa ncsa) if (BUILD_TESTING) if (NOT HDFJAVA_EXTERNALLY_CONFIGURED) add_subdirectory (${HDFJAVA_SOURCE_DIR}/test ${PROJECT_BINARY_DIR}/test) endif (NOT HDFJAVA_EXTERNALLY_CONFIGURED) endif (BUILD_TESTING) #----------------------------------------------------------------------------- # Option to build HDFJAVA Examples #----------------------------------------------------------------------------- if (HDF_BUILD_EXAMPLES) add_subdirectory (${HDFJAVA_SOURCE_DIR}/examples examples) endif (HDF_BUILD_EXAMPLES) #----------------------------------------------------------------------------- # Option for external libraries #----------------------------------------------------------------------------- option (HDF_PACKAGE_EXTLIBS "CPACK - include external libraries" OFF) if (HDF_PACKAGE_EXTLIBS) if (HDF4_FOUND) PACKAGE_HDF4_LIBRARY (${HDF_ALLOW_EXTERNAL_SUPPORT} ${LIB_TYPE}) endif (HDF4_FOUND) if (HDF5_FOUND) PACKAGE_HDF5_LIBRARY (${HDF_ALLOW_EXTERNAL_SUPPORT} ${LIB_TYPE}) endif (HDF5_FOUND) endif (HDF_PACKAGE_EXTLIBS) #----------------------------------------------------------------------------- # Add Required Jar(s) #----------------------------------------------------------------------------- install ( FILES ${HDFJAVA_FITS_JAR} ${HDFJAVA_NETCDF_JAR} ${HDFJAVA_LOGGING_JAR} ${HDFJAVA_LOGGING_NOP_JAR} DESTINATION ${HJAVA_INSTALL_JAR_DIR} COMPONENT libraries ) #----------------------------------------------------------------------------- # Configure the HDFJAVA_Examples.cmake file and the examples #----------------------------------------------------------------------------- option (HDFJAVA_PACK_EXAMPLES "Package the HDFJAVA Library Examples Compressed File" OFF) if (HDFJAVA_PACK_EXAMPLES) configure_file ( ${HDF_RESOURCES_DIR}/HDFJAVA_Examples.cmake.in ${HDFJAVA_BINARY_DIR}/HDFJAVA_Examples.cmake @ONLY ) install ( FILES ${HDFJAVA_BINARY_DIR}/HDFJAVA_Examples.cmake DESTINATION ${HJAVA_INSTALL_EXTRA_DIR} COMPONENT docs ) if (NOT ${HDFJAVA_EXAMPLES_COMPRESSED} STREQUAL "") if (EXISTS "${HDFJAVA_EXAMPLES_COMPRESSED_DIR}/${HDFJAVA_EXAMPLES_COMPRESSED}") install ( FILES ${HDFJAVA_EXAMPLES_COMPRESSED_DIR}/${HDFJAVA_EXAMPLES_COMPRESSED} ${HDF_RESOURCES_DIR}/USING_CMake_Examples.txt DESTINATION ${HJAVA_INSTALL_EXTRA_DIR} COMPONENT docs ) endif (EXISTS "${HDFJAVA_EXAMPLES_COMPRESSED_DIR}/${HDFJAVA_EXAMPLES_COMPRESSED}") endif (NOT ${HDFJAVA_EXAMPLES_COMPRESSED} STREQUAL "") endif (HDFJAVA_PACK_EXAMPLES) #set (CREATE_JAVADOCS "TRUE") #----------------------------------------------------------------------------- # Add Required JavaDocs #----------------------------------------------------------------------------- if (CREATE_JAVADOCS) set (HDFVIEW_TEST_CLASSPATH "${${HDFJAVA_NCSA_VIEW_LIB_TARGET}_JAR_FILE}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${HDFJAVA_LOGGING_SIMPLE_JAR}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${HDFJAVA_LOGGING_JAR}${CMAKE_JAVA_INCLUDE_FLAG_SEP}${HDFJAVA_LIB_DIR}") CREATE_JAVADOC (hdf_java_doc PACKAGES ${HDFJAVA_SOURCE_PACKAGES} SOURCEPATH "${CMAKE_CURRENT_SOURCE_DIR}" CLASSPATH ${HDFVIEW_TEST_CLASSPATH} INSTALLPATH ${HJAVA_INSTALL_DATA_DIR} WINDOWTITLE "HDFJava 2.11" DOCTITLE "

    HDFJava 2.11

    " AUTHOR TRUE USE TRUE VERSION TRUE ) else (CREATE_JAVADOCS) install ( DIRECTORY ${HDFJAVA_SOURCE_DIR}/docs/javadocs DESTINATION ${HJAVA_INSTALL_DATA_DIR} USE_SOURCE_PERMISSIONS COMPONENT docs PATTERN ".svn" EXCLUDE ) endif (CREATE_JAVADOCS) #----------------------------------------------------------------------------- # Add Required Document(s) #----------------------------------------------------------------------------- option (HDFJAVA_PACK_SAMPLES "Package the HDFJAVA File Samples" OFF) if (HDFJAVA_PACK_SAMPLES) install ( DIRECTORY ${HDFJAVA_SOURCE_DIR}/docs/samples DESTINATION ${HJAVA_INSTALL_EXTRA_DIR} USE_SOURCE_PERMISSIONS COMPONENT docs PATTERN ".svn" EXCLUDE ) endif (HDFJAVA_PACK_SAMPLES) if (NOT ${HDFJAVA_USERSGUIDE_COMPRESSED} STREQUAL "") if (EXISTS "${HDFJAVA_USERSGUIDE_COMPRESSED_DIR}/${HDFJAVA_USERSGUIDE_COMPRESSED}") execute_process( COMMAND ${CMAKE_COMMAND} -E tar xzf ${HDFJAVA_USERSGUIDE_COMPRESSED_DIR}/${HDFJAVA_USERSGUIDE_COMPRESSED} ) install ( DIRECTORY ${HDFJAVA_BINARY_DIR}/UsersGuide DESTINATION ${HJAVA_INSTALL_DATA_DIR} USE_SOURCE_PERMISSIONS COMPONENT docs ) endif (EXISTS "${HDFJAVA_USERSGUIDE_COMPRESSED_DIR}/${HDFJAVA_USERSGUIDE_COMPRESSED}") endif (NOT ${HDFJAVA_USERSGUIDE_COMPRESSED} STREQUAL "") #----------------------------------------------------------------------------- # Check for Installation Utilities #----------------------------------------------------------------------------- if (WIN32) find_program (NSIS_EXECUTABLE NSIS.exe PATHS "$ENV{ProgramFiles}\\NSIS" "$ENV{ProgramFiles(x86)}\\NSIS") if(NOT CPACK_WIX_ROOT) file(TO_CMAKE_PATH "$ENV{WIX}" CPACK_WIX_ROOT) endif() find_program (WIX_EXECUTABLE candle PATHS "${CPACK_WIX_ROOT}/bin") endif (WIN32) #----------------------------------------------------------------------------- # Add Target(s) to CMake Install for import into other projects #----------------------------------------------------------------------------- if (NOT HDFJAVA_EXTERNALLY_CONFIGURED) install ( EXPORT ${HDFJAVA_EXPORTED_TARGETS} DESTINATION ${HJAVA_INSTALL_CMAKE_DIR}/${HDFJAVA_PACKAGE} FILE ${HDFJAVA_PACKAGE}${HDF_PACKAGE_EXT}-targets.cmake ) endif (NOT HDFJAVA_EXTERNALLY_CONFIGURED) #----------------------------------------------------------------------------- # Export all exported targets to the build tree for use by parent project #----------------------------------------------------------------------------- if (NOT HDFJAVA_EXTERNALLY_CONFIGURED) export ( TARGETS ${HDFJAVA_LIBRARIES_TO_EXPORT} ${HDFJAVA_LIB_DEPENDENCIES} FILE ${HDFJAVA_PACKAGE}${HDF_PACKAGE_EXT}-targets.cmake ) endif (NOT HDFJAVA_EXTERNALLY_CONFIGURED) #----------------------------------------------------------------------------- # Configure the HDFJAVA-config.cmake file for the build directory #----------------------------------------------------------------------------- set (HDFJAVA_INCLUDES_BUILD_TIME ${HDFJAVA_JNI_SRC_DIR} ${HDFJAVA_JAVA_SRC_DIR} ${HDFJAVA_BINARY_DIR} ) configure_file ( ${HDF_RESOURCES_DIR}/HDFJAVA-config.cmake.build.in ${HDFJAVA_BINARY_DIR}/${HDFJAVA_PACKAGE}${HDF_PACKAGE_EXT}-config.cmake @ONLY ) #----------------------------------------------------------------------------- # Configure the FindJAVA.cmake file for the install directory #----------------------------------------------------------------------------- if (NOT H4H5_EXTERNALLY_CONFIGURED) configure_file ( ${HDF_RESOURCES_DIR}/FindHDFJAVA.cmake.in ${HDFJAVA_BINARY_DIR}/CMakeFiles/FindHDFJAVA${HDF_PACKAGE_EXT}.cmake @ONLY ) install ( FILES ${HDFJAVA_BINARY_DIR}/CMakeFiles/FindHDFJAVA${HDF_PACKAGE_EXT}.cmake DESTINATION ${HJAVA_INSTALL_CMAKE_DIR}/${HDFJAVA_PACKAGE} ) endif (NOT H4H5_EXTERNALLY_CONFIGURED) #----------------------------------------------------------------------------- # Configure the HDFJAVA-config.cmake file for the install directory #----------------------------------------------------------------------------- if (NOT HDFJAVA_EXTERNALLY_CONFIGURED) configure_file ( ${HDF_RESOURCES_DIR}/HDFJAVA-config.cmake.install.in ${HDFJAVA_BINARY_DIR}/CMakeFiles/${HDFJAVA_PACKAGE}${HDF_PACKAGE_EXT}-config.cmake @ONLY ) install ( FILES ${HDFJAVA_BINARY_DIR}/CMakeFiles/${HDFJAVA_PACKAGE}${HDF_PACKAGE_EXT}-config.cmake DESTINATION ${HJAVA_INSTALL_CMAKE_DIR}/${HDFJAVA_PACKAGE} ) endif (NOT HDFJAVA_EXTERNALLY_CONFIGURED) #----------------------------------------------------------------------------- # Configure the HDFJAVA-config-version .cmake file for the install directory #----------------------------------------------------------------------------- if (NOT HDFJAVA_EXTERNALLY_CONFIGURED) configure_file ( ${HDF_RESOURCES_DIR}/HDFJAVA-config-version.cmake.in ${HDFJAVA_BINARY_DIR}/CMakeFiles/${HDFJAVA_PACKAGE}${HDF_PACKAGE_EXT}-config-version.cmake @ONLY ) install ( FILES ${HDFJAVA_BINARY_DIR}/CMakeFiles/${HDFJAVA_PACKAGE}${HDF_PACKAGE_EXT}-config-version.cmake DESTINATION ${HJAVA_INSTALL_CMAKE_DIR}/${HDFJAVA_PACKAGE} ) endif (NOT HDFJAVA_EXTERNALLY_CONFIGURED) #----------------------------------------------------------------------------- # Option to include jre #----------------------------------------------------------------------------- option (HDFJAVA_PACK_JRE "Package a JRE installer directory" OFF) if (HDFJAVA_PACK_JRE) if (WIN32) install ( DIRECTORY "C:/Program Files/Java/jre7" DESTINATION ${HJAVA_INSTALL_BIN_DIR} USE_SOURCE_PERMISSIONS ) else (WIN32) install ( DIRECTORY "/usr/lib/jvm/jre" DESTINATION ${HJAVA_INSTALL_BIN_DIR} USE_SOURCE_PERMISSIONS ) endif (WIN32) endif (HDFJAVA_PACK_JRE) #----------------------------------------------------------------------------- # Configure the README.txt file for the binary package #----------------------------------------------------------------------------- set (BINARY_SYSTEM_NAME ${CMAKE_SYSTEM_NAME}) set (BINARY_PLATFORM "${CMAKE_SYSTEM_NAME}") if (WIN32) set (BINARY_EXAMPLE_ENDING "zip") set (BINARY_INSTALL_ENDING "exe") if (CMAKE_CL_64) set (BINARY_SYSTEM_NAME "win64") else (CMAKE_CL_64) set (BINARY_SYSTEM_NAME "win32") endif (CMAKE_CL_64) if (${CMAKE_SYSTEM_VERSION} MATCHES "6.1") set (BINARY_PLATFORM "${BINARY_PLATFORM} 7") elseif (${CMAKE_SYSTEM_VERSION} MATCHES "6.2") set (BINARY_PLATFORM "${BINARY_PLATFORM} 8") endif (${CMAKE_SYSTEM_VERSION} MATCHES "6.1") set (BINARY_PLATFORM "${BINARY_PLATFORM} ${MSVC_C_ARCHITECTURE_ID}") if (${CMAKE_C_COMPILER_VERSION} MATCHES "16.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2010") elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "15.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2008") elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "17.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2012") elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "18.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2013") elseif (${CMAKE_C_COMPILER_VERSION} MATCHES "19.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO 2014") else (${CMAKE_C_COMPILER_VERSION} MATCHES "16.*") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using VISUAL STUDIO ${CMAKE_C_COMPILER_VERSION}") endif (${CMAKE_C_COMPILER_VERSION} MATCHES "16.*") elseif (APPLE) set (BINARY_EXAMPLE_ENDING "tar.gz") set (BINARY_INSTALL_ENDING "dmg") set (BINARY_PLATFORM "${BINARY_PLATFORM} ${CMAKE_SYSTEM_VERSION} ${CMAKE_SYSTEM_PROCESSOR}") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using ${CMAKE_C_COMPILER_ID} C ${CMAKE_C_COMPILER_VERSION}") else (WIN32) set (BINARY_EXAMPLE_ENDING "tar.gz") set (BINARY_INSTALL_ENDING "sh") set (BINARY_PLATFORM "${BINARY_PLATFORM} ${CMAKE_SYSTEM_VERSION} ${CMAKE_SYSTEM_PROCESSOR}") set (BINARY_PLATFORM "${BINARY_PLATFORM}, using ${CMAKE_C_COMPILER_ID} C ${CMAKE_C_COMPILER_VERSION}") endif (WIN32) set (BINARY_PLATFORM "${BINARY_PLATFORM} / Java ${Java_VERSION_MAJOR}.${Java_VERSION_MINOR}") if (HDFJAVA_PACK_JRE) set (BINARY_PLATFORM "${BINARY_PLATFORM}. An embedded JRE will be installed.") endif (HDFJAVA_PACK_JRE) configure_file ( ${HDF_RESOURCES_DIR}/README.txt.cmake.in ${HDFJAVA_BINARY_DIR}/README.txt @ONLY ) #----------------------------------------------------------------------------- # Configure the COPYING.txt file for the windows binary package #----------------------------------------------------------------------------- if (WIN32) configure_file (${HDFJAVA_SOURCE_DIR}/COPYING ${HDFJAVA_BINARY_DIR}/COPYING.txt @ONLY) endif (WIN32) #----------------------------------------------------------------------------- # Set the cpack variables #----------------------------------------------------------------------------- set (CPACK_PACKAGE_VENDOR "HDF_Group") set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "HDF-JAVA Installation") set (CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/Readme.txt") set (CPACK_PACKAGE_NAME "${HDFJAVA_PACKAGE_NAME}") if (CDASH_LOCAL) set (CPACK_PACKAGE_VERSION "${HDFJAVA_PACKAGE_VERSION}") else (CDASH_LOCAL) set (CPACK_PACKAGE_VERSION "${HDFJAVA_PACKAGE_VERSION_STRING}") endif (CDASH_LOCAL) set (CPACK_PACKAGE_VERSION_MAJOR "${HDFJAVA_PACKAGE_VERSION_MAJOR}") set (CPACK_PACKAGE_VERSION_MINOR "${HDFJAVA_PACKAGE_VERSION_MINOR}") set (CPACK_PACKAGE_VERSION_PATCH "") set (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING") set (CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/Readme.txt") set (CPACK_PACKAGE_RELOCATABLE TRUE) set (CPACK_PACKAGE_INSTALL_DIRECTORY "{CPACK_PACKAGE_VENDOR}/${CPACK_PACKAGE_NAME}/${CPACK_PACKAGE_VERSION}") set (CPACK_PACKAGE_ICON "${HDF_RESOURCES_EXT_DIR}/hdf.bmp") set (CPACK_GENERATOR "TGZ") if (WIN32) set (CPACK_GENERATOR "ZIP") if (NSIS_EXECUTABLE) list (APPEND CPACK_GENERATOR "NSIS") endif (NSIS_EXECUTABLE) # Installers for 32- vs. 64-bit CMake: # - Root install directory (displayed to end user at installer-run time) # - "NSIS package/display name" (text used in the installer GUI) # - Registry key used to store info about the installation set (CPACK_NSIS_PACKAGE_NAME "${HDFJAVA_PACKAGE_STRING}-${CPACK_PACKAGE_VERSION}") if (CMAKE_CL_64) set (CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES64") set (CPACK_PACKAGE_INSTALL_REGISTRY_KEY "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION} (Win64)") else (CMAKE_CL_64) set (CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") set (CPACK_PACKAGE_INSTALL_REGISTRY_KEY "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}") endif (CMAKE_CL_64) # set the install/unistall icon used for the installer itself # There is a bug in NSI that does not handle full unix paths properly. set (CPACK_NSIS_MUI_ICON "${HDF_RESOURCES_EXT_DIR}\\\\hdf.ico") set (CPACK_NSIS_MUI_UNIICON "${HDF_RESOURCES_EXT_DIR}\\\\hdf.ico") # set the package header icon for MUI set (CPACK_PACKAGE_ICON "${HDF_RESOURCES_EXT_DIR}\\\\hdf.bmp") set (CPACK_NSIS_DISPLAY_NAME "${CPACK_NSIS_PACKAGE_NAME}, a visual tool for browsing and editing HDF files") set (CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_PACKAGE_VENDOR}\\\\${CPACK_PACKAGE_NAME}\\\\${CPACK_PACKAGE_VERSION}") set (CPACK_MONOLITHIC_INSTALL ON) set (CPACK_NSIS_CONTACT "${HDFJAVA_PACKAGE_BUGREPORT}") set (CPACK_NSIS_MODIFY_PATH ON) if (WIX_EXECUTABLE) list (APPEND CPACK_GENERATOR "WIX") endif (WIX_EXECUTABLE) #WiX variables set (CPACK_WIX_UNINSTALL "1") # .. variable:: CPACK_WIX_LICENSE_RTF # RTF License File # # If CPACK_RESOURCE_FILE_LICENSE has an .rtf extension it is used as-is. # # If CPACK_RESOURCE_FILE_LICENSE has an .txt extension it is implicitly # converted to RTF by the WiX Generator. # The expected encoding of the .txt file is UTF-8. # # With CPACK_WIX_LICENSE_RTF you can override the license file used by the # WiX Generator in case CPACK_RESOURCE_FILE_LICENSE is in an unsupported # format or the .txt -> .rtf conversion does not work as expected. set (CPACK_RESOURCE_FILE_LICENSE "${HDFJAVA_BINARY_DIR}/COPYING.txt") # .. variable:: CPACK_WIX_PRODUCT_ICON # The Icon shown next to the program name in Add/Remove programs. set(CPACK_WIX_PRODUCT_ICON "${HDF_RESOURCES_EXT_DIR}\\\\hdf.ico") # # .. variable:: CPACK_WIX_UI_BANNER # # The bitmap will appear at the top of all installer pages other than the # welcome and completion dialogs. # # If set, this image will replace the default banner image. # # This image must be 493 by 58 pixels. # # .. variable:: CPACK_WIX_UI_DIALOG # # Background bitmap used on the welcome and completion dialogs. # # If this variable is set, the installer will replace the default dialog # image. # # This image must be 493 by 312 pixels. # elseif (APPLE) # list (APPEND CPACK_GENERATOR "DragNDrop") set (CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE ON) set (CPACK_PACKAGING_INSTALL_PREFIX "/${CPACK_PACKAGE_INSTALL_DIRECTORY}") set (CPACK_PACKAGE_ICON "${HDF_RESOURCES_EXT_DIR}/hdf.icns") if (HDFJAVA_PACK_MACOSX_BUNDLE) list (APPEND CPACK_GENERATOR "Bundle") set (CPACK_BUNDLE_NAME "${HDFJAVA_PACKAGE_STRING}") set (CPACK_BUNDLE_LOCATION "/") # make sure CMAKE_INSTALL_PREFIX ends in "/" # set (CMAKE_INSTALL_PREFIX "/${CPACK_BUNDLE_NAME}.app/Contents/Resources") set (CPACK_BUNDLE_ICON "${HDF_RESOURCES_EXT_DIR}/hdf.icns") set (CPACK_BUNDLE_PLIST "${HDFJAVA_BINARY_DIR}/CMakeFiles/Info.plist") set (CPACK_BUNDLE_STARTUP_COMMAND "${HDF_RESOURCES_DIR}/JavaAppLauncher") set (CPACK_APPLE_GUI_BUNDLE_NAME "HDFView") set (CPACK_APPLE_GUI_COPYRIGHT "Copyright © 2006-2014 by The HDF Group. All rights reserved.") set (CPACK_APPLE_GUI_VERSION_STRING "${CPACK_PACKAGE_VERSION}") set (CPACK_APPLE_GUI_SHORT_VERSION_STRING "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}") #----------------------------------------------------------------------------- # Configure the Info.plist file for the install bundle #----------------------------------------------------------------------------- configure_file ( ${HDF_RESOURCES_DIR}/CPack.Info.plist.in ${HDFJAVA_BINARY_DIR}/CMakeFiles/Info.plist @ONLY ) configure_file ( ${HDF_RESOURCES_DIR}/PkgInfo.in ${HDFJAVA_BINARY_DIR}/CMakeFiles/PkgInfo @ONLY ) configure_file ( ${HDF_RESOURCES_EXT_DIR}/version.plist.in ${HDFJAVA_BINARY_DIR}/CMakeFiles/version.plist @ONLY ) install ( FILES ${HDFJAVA_BINARY_DIR}/CMakeFiles/PkgInfo ${HDFJAVA_BINARY_DIR}/CMakeFiles/version.plist DESTINATION .. ) endif (HDFJAVA_PACK_MACOSX_BUNDLE) else (WIN32) list (APPEND CPACK_GENERATOR "STGZ") set (CPACK_PACKAGING_INSTALL_PREFIX "/${CPACK_PACKAGE_VENDOR}/${CPACK_PACKAGE_NAME}/${CPACK_PACKAGE_VERSION}") set (CPACK_COMPONENTS_ALL_IN_ONE_PACKAGE ON) set (CPACK_DEBIAN_PACKAGE_SECTION "Science") set (CPACK_DEBIAN_PACKAGE_MAINTAINER "${HDFJAVA_PACKAGE_BUGREPORT}") set (CPACK_RPM_COMPONENT_INSTALL ON) set (CPACK_RPM_PACKAGE_RELOCATABLE ON) set (CPACK_RPM_PACKAGE_GROUP "Development/Tools") set (CPACK_RPM_PACKAGE_LICENSE "BSD-style") set (CPACK_RPM_PACKAGE_URL "${HDFJAVA_PACKAGE_URL}") set (CPACK_STRIP_FILES "${HDFJAVA_LIBRARIES_TO_EXPORT};${HDFJAVA_JARS_TO_EXPORT};${HDFJAVA_HDFVIEWJAR_TO_EXPORT};${HDFJAVA_LOGGING_NOP_JAR};${EXTERNAL_LIBRARY_LIST}") endif (WIN32) set (CPACK_NSIS_MUI_FINISHPAGE_RUN ${HDFVIEW_SCRIPT}) # By default, do not warn when built on machines using only VS Express: if (NOT DEFINED CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS) set (CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS ON) endif( NOT DEFINED CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS) include (InstallRequiredSystemLibraries) set (CPACK_INSTALL_CMAKE_PROJECTS "${HDFJAVA_BINARY_DIR};HDFJAVA;ALL;/") if (HDF_PACKAGE_EXTLIBS) if (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") if (HDF4_FOUND AND HDF4_USE_EXTERNAL) set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${HDF4_INCLUDE_DIR_GEN};HDF4;libraries;/") set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${HDF4_INCLUDE_DIR_GEN};HDF4;configinstall;/") set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${JPEG_INCLUDE_DIR_GEN};jpeg;libraries;/") set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${JPEG_INCLUDE_DIR_GEN};jpeg;configinstall;/") set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${ZLIB_INCLUDE_DIR_GEN};zlib;libraries;/") set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${ZLIB_INCLUDE_DIR_GEN};zlib;configinstall;/") set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${SZIP_INCLUDE_DIR_GEN};szip;libraries;/") set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${SZIP_INCLUDE_DIR_GEN};szip;configinstall;/") endif (HDF4_FOUND AND HDF4_USE_EXTERNAL) if (HDF5_FOUND AND HDF5_USE_EXTERNAL) set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${HDF5_INCLUDE_DIR_GEN};HDF5;libraries;/") set (CPACK_INSTALL_CMAKE_PROJECTS "${CPACK_INSTALL_CMAKE_PROJECTS};${HDF5_INCLUDE_DIR_GEN};HDF5;configinstall;/") endif (HDF5_FOUND AND HDF5_USE_EXTERNAL) endif (HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "SVN" OR HDF_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ") endif (HDF_PACKAGE_EXTLIBS) include (CPack) #----------------------------------------------------------------------------- # Now list the cpack commands #----------------------------------------------------------------------------- cpack_add_component (apps DISPLAY_NAME "HDFJAVA Applications" DEPENDS libraries GROUP Applications ) cpack_add_component (libraries DISPLAY_NAME "HDFJAVA Libraries" GROUP Runtime ) cpack_add_component (headers DISPLAY_NAME "HDFJAVA Headers" DEPENDS libraries GROUP Development ) cpack_add_component (docs DISPLAY_NAME "HDFJAVA Documents" DEPENDS libraries GROUP Documents ) hdf-java-2.11.0/Readme.txt0000644002344600011330000000512412423745433013520 0ustar byrnhdf ******************************************************************************* HDF-Java Products ******************************************************************************* The HDF Java Products include three distinct components: =============================================================================== 1) Java HDF Interface (JHI4 & JHI5): a Java Native Interface to the standard HDF (4&5) libraries 2) Java HDF Object Package: a Java package that implements HDF data objects in an object-oriented form 3) HDFView: a visual tool for browsing and editing HDF files Features and changes =============================================================================== For major changes, please read "About This Release" at http://www.hdfgroup.org/products/java/hdf-java-html/ Files included in the release download folder =============================================================================== 1) The "hdfview/" directory contains the installation programs for easy download and installation for HDFView. The installation programs are named by platforms. For example, "HDFView-2.11-Linux.sh" for Linux machines. After you install HDFView, you have the pre-built binaries for all the HDF-Java products: JNI wrapper, object package, and HDFView. 2) The "bin/" directory includes the pre-built binaries for all of the HDF-Java product. 3) The "src/" directory has all of the source code for the HDF-Java product. You will only need it if you are building HDF-Java from the source. Install and use pre-built HDF-Java products =============================================================================== For instructions on the installation and use of HDF Java Products, please read "Installing and Using HDF Java Products" at http://www.hdfgroup.org/products/java/hdf-java-html/ or http://www.hdfgroup.org/products/java/hdf-java-html/install_use_hdf_java_products.pdf Build HDF-Java products from the source with CMake =============================================================================== For instructions for building the source with CMake, visit http://www.hdfgroup.org/products/java/release/cmakebuild.html For more information, read ======================================= http://www.hdfgroup.org/products/java/hdf-java-html For questions, send email to ======================================= help@hdfgroup.org Exception when using a Java 1.7 built program on Java 1.6: Exception in thread "main" java.lang.UnsupportedClassVersionError: ncsa/hdf/view/HDFView : Unsupported major.minor version 51.0 hdf-java-2.11.0/ncsa/0000755002344600011330000000000012441355003012472 5ustar byrnhdfhdf-java-2.11.0/ncsa/hdf/0000755002344600011330000000000012441355003013233 5ustar byrnhdfhdf-java-2.11.0/ncsa/hdf/object/0000755002344600011330000000000012441355002014500 5ustar byrnhdfhdf-java-2.11.0/ncsa/hdf/object/h4/0000755002344600011330000000000012441355002015013 5ustar byrnhdfhdf-java-2.11.0/ncsa/hdf/object/h4/H4Vdata.java0000644002344600011330000004761212437621046017134 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object.h4; import java.util.List; import java.util.Vector; import ncsa.hdf.hdflib.HDFConstants; import ncsa.hdf.hdflib.HDFException; import ncsa.hdf.hdflib.HDFLibrary; import ncsa.hdf.object.Attribute; import ncsa.hdf.object.CompoundDS; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; /** * H4Vdata describes a multi-dimension array of HDF4 vdata, inheriting CompoundDS. *

    * A vdata is like a table that consists of a collection of records whose values * are stored in fixed-length fields. All records have the same structure and * all values in each field have the same data type. Vdatas are uniquely * identified by a name, a class, and a series of individual field names. *

    * How to Select a Subset *

    * Dataset defines APIs for read, write and subset a dataset. No function is defined * to select a subset of a data array. The selection is done in an implicit way. * Function calls to dimension information such as getSelectedDims() return an array * of dimension values, which is a reference to the array in the dataset object. * Changes of the array outside the dataset object directly change the values of * the array in the dataset object. It is like pointers in C. *

    * * The following is an example of how to make a subset. In the example, the dataset * is a 4-dimension with size of [200][100][50][10], i.e. * dims[0]=200; dims[1]=100; dims[2]=50; dims[3]=10;
    * We want to select every other data points in dims[1] and dims[2] *

         int rank = dataset.getRank();   // number of dimension of the dataset
         long[] dims = dataset.getDims(); // the dimension sizes of the dataset
         long[] selected = dataset.getSelectedDims(); // the selected size of the dataet
         long[] start = dataset.getStartDims(); // the off set of the selection
         long[] stride = dataset.getStride(); // the stride of the dataset
         int[]  selectedIndex = dataset.getSelectedIndex(); // the selected dimensions for display
    
         // select dim1 and dim2 as 2D data for display,and slice through dim0
         selectedIndex[0] = 1;
         selectedIndex[1] = 2;
         selectedIndex[1] = 0;
    
         // reset the selection arrays
         for (int i=0; i
     *
     * 

    * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class H4Vdata extends CompoundDS { /** * */ private static final long serialVersionUID = -5978700886955419959L; private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(H4Vdata.class); /** * The list of attributes of this data object. Members of the list are * instance of Attribute. */ private List attributeList; /** * Number of records of this Vdata table. */ private int numberOfRecords; /** * The data types of the members of the compound dataset. */ private int[] memberTIDs; private int nAttributes = -1; public H4Vdata(FileFormat theFile, String name, String path) { this(theFile, name, path, null); } /** * Creates an H4Vdata object with specific name and path. *

    * @param theFile the HDF file. * @param name the name of this H4Vdata. * @param path the full path of this H4Vdata. * @param oid the unique identifier of this data object. */ public H4Vdata( FileFormat theFile, String name, String path, long[] oid) { super (theFile, name, path, oid); numberOfRecords = 0; numberOfMembers = 0; memberOrders = null; } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute () { if (nAttributes < 0) { int id = open(); try { nAttributes = HDFLibrary.VSnattrs(id); } catch (Exception ex ) { nAttributes = 0; } close(id); } return (nAttributes>0); } // implementing Dataset @Override public Datatype getDatatype() { if (datatype == null) { datatype = new H4Datatype(-1); } return datatype; } // Implementing Dataset @Override public byte[] readBytes() throws HDFException { byte[] theData = null; if (rank <=0 ) { init(); } if (numberOfMembers <= 0) { return null; // this Vdata does not have any filed } int id = open(); if (id < 0) { return null; } String allNames = memberNames[0]; for (int i=0; i=0) attr.setProperty("field", memberNames[j]); attributeList.add(attr); Object buf = H4Datatype.allocateArray(attrInfo[0], attrInfo[1]); try { HDFLibrary.VSgetattr(id, j, i, buf); } catch (HDFException ex) { buf = null; } if (buf != null) { if ((attrInfo[0] == HDFConstants.DFNT_CHAR) || (attrInfo[0] == HDFConstants.DFNT_UCHAR8)) { buf = Dataset.byteToString((byte[])buf, attrInfo[1]); } attr.setValue(buf); nleft--; } } // for (int i=0; i0) { return; // already called. Initialize only once } int id = open(); if (id < 0) { return; } try { numberOfMembers = HDFLibrary.VFnfields(id); numberOfRecords = HDFLibrary.VSelts(id); } catch (HDFException ex) { numberOfMembers = 0; numberOfRecords = 0; } // Still need to get information if there is no record, see bug 1738 // if ((numberOfMembers <=0) || (numberOfRecords <= 0)) { // // no table field is defined or no records // close(id); // return; // } // a Vdata table is an one dimension array of records. // each record has the same fields rank = 1; dims = new long[1]; dims[0] = numberOfRecords; selectedDims = new long[1]; selectedDims[0] = numberOfRecords; selectedIndex[0] = 0; startDims = new long[1]; startDims[0] = 0; memberNames = new String[numberOfMembers]; memberTIDs = new int[numberOfMembers]; memberTypes = new Datatype[numberOfMembers]; memberOrders = new int[numberOfMembers]; isMemberSelected = new boolean[numberOfMembers]; for (int i=0; i isMemberSelected[i]={} memberNames[i]={} memberTIDs[i]={} memberOrders[i]={}", i, isMemberSelected[i], memberNames[i], memberTIDs[i], memberOrders[i]); } catch (HDFException ex) { continue; } } // for (int i=0; i * Every GR data set must contain the following components: image array, name, * pixel type, and dimensions. The name, dimensions, and pixel type must be * supplied by the user at the time the GR data set is defined. *

    * An image array is a two-dimensional array of pixels. Each element in an image * array corresponds to one pixel and each pixel can consist of a number of * color component values or pixel components, e.g., Red-Green-Blue or RGB, * Cyan-Magenta-Yellow-Black or CMYK, etc. Pixel components can be represented * by different methods (8-bit lookup table or 24-bit direct representation) and * may have different data types. The data type of pixel components and the number * of components in each pixel are collectively known as the pixel type. *

    * How to Select a Subset *

    * Dataset defines APIs for read, write and subet a dataset. No function is defined * to select a subset of a data array. The selection is done in an implicit way. * Function calls to dimension information such as getSelectedDims() return an array * of dimension values, which is a reference to the array in the dataset object. * Changes of the array outside the dataset object directly change the values of * the array in the dataset object. It is like pointers in C. *

    * * The following is an example of how to make a subset. In the example, the dataset * is a 4-dimension with size of [200][100][50][10], i.e. * dims[0]=200; dims[1]=100; dims[2]=50; dims[3]=10;
    * We want to select every other data points in dims[1] and dims[2] *

         int rank = dataset.getRank();   // number of dimension of the dataset
         long[] dims = dataset.getDims(); // the dimension sizes of the dataset
         long[] selected = dataset.getSelectedDims(); // the selected size of the dataet
         long[] start = dataset.getStartDims(); // the off set of the selection
         long[] stride = dataset.getStride(); // the stride of the dataset
         int[]  selectedIndex = dataset.getSelectedIndex(); // the selected dimensions for display
    
         // select dim1 and dim2 as 2D data for display,and slice through dim0
         selectedIndex[0] = 1;
         selectedIndex[1] = 2;
         selectedIndex[1] = 0;
    
         // reset the selection arrays
         for (int i=0; i
     *
     * 

    * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class H4GRImage extends ScalarDS { /** * */ private static final long serialVersionUID = 1029672744963360976L; private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(H4GRImage.class); /** * The list of attributes of this data object. Members of the list are * instance of Attribute. */ private List attributeList; /** * The GR interface identifier obtained from GRstart(fid) */ private int grid; /** * The number of components in the raster image */ private int ncomp; /** the datatype identifier */ private int datatypeID = -1; private int nAttributes = -1; public H4GRImage(FileFormat theFile, String name, String path) { this(theFile, name, path, null); } /** * Creates a H4GRImage object with specific name, path, and object ID. *

    * @param theFile the HDF file. * @param name the name of this H4GRImage. * @param path the full path of this H4GRImage. * @param oid the unique identifier of this data object. */ public H4GRImage( FileFormat theFile, String name, String path, long[] oid) { super (theFile, name, path, oid); palette = null; isImage = isImageDisplay = true; unsignedConverted = false; grid = ((H4File)getFileFormat()).getGRAccessID(); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute () { if (nAttributes < 0) { grid = ((H4File)getFileFormat()).getGRAccessID(); int id = open(); String[] objName = {""}; int[] grInfo = new int[4]; //ncomp, data_type, interlace, and num_attrs int[] idims = new int[2]; try { HDFLibrary.GRgetiminfo(id, objName, grInfo, idims); nAttributes = grInfo[3]; } catch (Exception ex) { nAttributes = 0; } close(id); } return (nAttributes>0); } // To do: Implementing Dataset @Override public Dataset copy(Group pgroup, String dname, long[] dims, Object buff) throws Exception { Dataset dataset = null; int srcdid=-1, dstdid=-1; String path=null; int[] count=null; if (pgroup == null) { return null; } if (pgroup.isRoot()) { path = HObject.separator; } else { path = pgroup.getPath()+pgroup.getName()+HObject.separator; } srcdid = open(); if (srcdid < 0) { return null; } if (dims != null) { count = new int[2]; count[0] = (int)dims[0]; count[1] = (int)dims[1]; } int[] grInfo = new int[4]; //ncomp, data_type, interlace and num_attrs try { String[] tmpName = {""}; int[] tmpDims = new int[2]; HDFLibrary.GRgetiminfo(srcdid, tmpName, grInfo, tmpDims); if (count == null) { count = tmpDims; } } catch (HDFException ex) { log.debug("copy.GRgetiminfo:", ex); } int ncomp = grInfo[0]; int tid = grInfo[1]; int interlace = grInfo[2]; int numberOfAttributes = grInfo[3]; dstdid = HDFLibrary.GRcreate( ((H4File)pgroup.getFileFormat()).getGRAccessID(), dname, ncomp, tid, interlace, count); if (dstdid < 0) { return null; } int ref = HDFLibrary.GRidtoref(dstdid); if (!pgroup.isRoot()) { int vgid = pgroup.open(); HDFLibrary.Vaddtagref(vgid, HDFConstants.DFTAG_RIG, ref); pgroup.close(vgid); } // read data from the source dataset int[] start = {0, 0}; if (buff == null) { buff = new byte[count[0]*count[1] * HDFLibrary.DFKNTsize(tid)]; HDFLibrary.GRreadimage(srcdid, start, null, count, buff); } // write the data into the destination dataset HDFLibrary.GRwriteimage(dstdid, start, null, count, buff); // copy palette int pid = HDFLibrary.GRgetlutid(srcdid, 0); int[] palInfo = new int[4]; HDFLibrary.GRgetlutinfo(pid, palInfo); palInfo[1] = HDFConstants.DFNT_UINT8; // support unsigned byte only. Other type does not work int palSize = palInfo[0]*palInfo[3]; byte[] palBuff = new byte[palSize]; HDFLibrary.GRreadlut(pid, palBuff); pid = HDFLibrary.GRgetlutid(dstdid, 0); HDFLibrary.GRwritelut(pid, palInfo[0], palInfo[1], palInfo[2], palInfo[3], palBuff); // copy attributes from one object to the new object copyAttribute(srcdid, dstdid, numberOfAttributes); long[] oid = {HDFConstants.DFTAG_RIG, ref}; dataset = new H4GRImage(pgroup.getFileFormat(), dname, path, oid); pgroup.addToMemberList(dataset); close(srcdid); try { HDFLibrary.GRendaccess(dstdid); } catch (HDFException ex) { log.debug("copy.GRendaccess:", ex); } return dataset; } // ***** need to implement from ScalarDS ***** @Override public byte[][] readPalette(int idx) { return null;} // ***** need to implement from ScalarDS ***** @Override public byte[] getPaletteRefs() { return null;} // implementing ScalarDS @Override public Datatype getDatatype() { if (datatype == null) { datatype = new H4Datatype(datatypeID); } return datatype; } // Implementing Dataset @Override public byte[] readBytes() throws HDFException { byte[] theData = null; if (rank <=0 ) { init(); } int id = open(); if (id < 0) { return null; } try { // set the interlacing scheme for reading image data HDFLibrary.GRreqimageil(id, interlace); int datasize = getWidth()*getHeight()*ncomp; int size = HDFLibrary.DFKNTsize(datatypeID)*datasize; theData = new byte[size]; int[] start = {(int)startDims[0], (int)startDims[1]}; int[] select = {(int)selectedDims[0], (int)selectedDims[1]}; int[] stride = null; if (selectedStride != null) { stride = new int[rank]; for (int i=0; i1) && (selectedIndex[1]>selectedIndex[0])) isDefaultImageOrder = false; else isDefaultImageOrder = true; return theData; } // Implementing DataFormat @Override public void write(Object buf) throws HDFException { if (buf == null) { return; } int id = open(); if (id < 0) { return; } int[] select = new int[rank]; int[] start = new int[rank]; for (int i=0; i0)) { attributeList = new Vector(n, 5); } boolean b = false; String[] attrName = new String[1]; int[] attrInfo = {0, 0}; // data_type, length for (int i=0; i0) { return; // already called. Initialize only once } int id = open(); String[] objName = {""}; int[] grInfo = new int[4]; //ncomp, data_type, interlace and num_attrs int[] idims = new int[2]; try { HDFLibrary.GRgetiminfo(id, objName, grInfo, idims); // mask off the litend bit grInfo[1] = grInfo[1] & (~HDFConstants.DFNT_LITEND); datatypeID = grInfo[1]; // get compression information try { HDFCompInfo compInfo = new HDFCompInfo(); boolean status = HDFLibrary.GRgetcompress(id, compInfo); if (compInfo.ctype == HDFConstants.COMP_CODE_DEFLATE) { compression = "GZIP"; } else if (compInfo.ctype == HDFConstants.COMP_CODE_SZIP) { compression = "SZIP"; } else if (compInfo.ctype == HDFConstants.COMP_CODE_JPEG) { compression = "JPEG"; } else if (compInfo.ctype == HDFConstants.COMP_CODE_SKPHUFF) { compression = "SKPHUFF"; } else if (compInfo.ctype == HDFConstants.COMP_CODE_RLE) { compression = "RLE"; } else if (compInfo.ctype == HDFConstants.COMP_CODE_NBIT) { compression = "NBIT"; } } catch (Exception ex) { log.debug("get compression information:", ex); } // get chunk information try { HDFChunkInfo chunkInfo = new HDFChunkInfo(); int[] cflag = {HDFConstants.HDF_NONE}; boolean status = HDFLibrary.GRgetchunkinfo(id, chunkInfo, cflag); if (cflag[0] == HDFConstants.HDF_NONE) { chunkSize = null; } else { chunkSize = new long[rank]; for (int i=0; i= 3); interlace = grInfo[2]; rank = 2; // support only two dimensional raster image // data in HDF4 GR image is arranged as dim[0]=width, dim[1]=height. // other image data is arranged as dim[0]=height, dim[1]=width. selectedIndex[0] = 1; selectedIndex[1] = 0; dims = new long[rank]; startDims = new long[rank]; selectedDims = new long[rank]; for (int i=0; i0) && (chunks==null))) { return null; } H4File file = (H4File)pgroup.getFileFormat(); if (file == null) { return null; } String path = HObject.separator; if (!pgroup.isRoot()) { path = pgroup.getPath()+pgroup.getName()+HObject.separator; } if (interlace == ScalarDS.INTERLACE_PLANE) { interlace = HDFConstants.MFGR_INTERLACE_COMPONENT; } else { interlace = HDFConstants.MFGR_INTERLACE_PIXEL; } int rank = 2; int idims[] = new int[rank]; int imaxdims[] = new int[rank]; int start[] = new int [rank]; for (int i=0; i= 0) { try { grid = HDFLibrary.GRcreate(gid, name, ncomp, tid, interlace, idims); } catch (Exception ex) { throw (ex); } } if (grid < 0) { throw (new HDFException("Unable to create the new dataset.")); } if ((grid > 0) && (data != null)) { HDFLibrary.GRwriteimage(grid, start, null, idims, data); } if (chunks != null) { // set chunk HDFChunkInfo chunkInfo = new HDFChunkInfo(ichunks); HDFLibrary.GRsetchunk(grid, chunkInfo, HDFConstants.HDF_CHUNK); } if (gzip > 0) { // set compression int compType = HDFConstants.COMP_CODE_DEFLATE; HDFDeflateCompInfo compInfo = new HDFDeflateCompInfo(); compInfo.level = gzip; HDFLibrary.GRsetcompress(grid, compType, compInfo); } int ref = HDFLibrary.GRidtoref(grid); if (!pgroup.isRoot()) { // add the dataset to the parent group vgid = pgroup.open(); if (vgid < 0) { if (grid > 0) { HDFLibrary.GRendaccess(grid); } throw (new HDFException("Unable to open the parent group.")); } HDFLibrary.Vaddtagref(vgid, HDFConstants.DFTAG_RI, ref); pgroup.close(vgid); } try { if (grid > 0) { HDFLibrary.GRendaccess(grid); } } catch (Exception ex) { log.debug("create.GRendaccess:", ex); } long[] oid = {HDFConstants.DFTAG_NDG, ref}; dataset = new H4GRImage(file, name, path, oid); if (dataset != null) { pgroup.addToMemberList(dataset); } return dataset; } /** * copy attributes from one GR image to another GR image */ private void copyAttribute(int srcdid, int dstdid, int numberOfAttributes) { if (numberOfAttributes <=0 ) { return; } try { boolean b = false; String[] attrName = new String[1]; int[] attrInfo = {0, 0}; for (int i=0; i * The data contained in an SDS array has a data type associated with it. The * standard data types supported by the SD interface include 32- and 64-bit * floating-point numbers, 8-, 16- and 32-bit signed integers, 8-, 16- and * 32-bit unsigned integers, and 8-bit characters. *

    * How to Select a Subset *

    * Dataset defines APIs for read, write and subet a dataset. No function is defined * to select a subset of a data array. The selection is done in an implicit way. * Function calls to dimension information such as getSelectedDims() return an array * of dimension values, which is a reference to the array in the dataset object. * Changes of the array outside the dataset object directly change the values of * the array in the dataset object. It is like pointers in C. *

    * * The following is an example of how to make a subset. In the example, the dataset * is a 4-dimension with size of [200][100][50][10], i.e. * dims[0]=200; dims[1]=100; dims[2]=50; dims[3]=10;
    * We want to select every other data points in dims[1] and dims[2] *

         int rank = dataset.getRank();   // number of dimension of the dataset
         long[] dims = dataset.getDims(); // the dimension sizes of the dataset
         long[] selected = dataset.getSelectedDims(); // the selected size of the dataet
         long[] start = dataset.getStartDims(); // the off set of the selection
         long[] stride = dataset.getStride(); // the stride of the dataset
         int[]  selectedIndex = dataset.getSelectedIndex(); // the selected dimensions for display
    
         // select dim1 and dim2 as 2D data for display,and slice through dim0
         selectedIndex[0] = 1;
         selectedIndex[1] = 2;
         selectedIndex[1] = 0;
    
         // reset the selection arrays
         for (int i=0; i
     *
     * 

    * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class H4SDS extends ScalarDS { /** * */ private static final long serialVersionUID = 2557157923292438696L; private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(H4SDS.class); /** tag for netCDF datasets. * HDF4 library supports netCDF version 2.3.2. It only supports SDS APIs. */ // magic number for netCDF: "C(67) D(68) F(70) '\001'" public static final int DFTAG_NDG_NETCDF = 67687001; /** * The list of attributes of this data object. Members of the list are * instance of Attribute. */ private List attributeList; /** * The SDS interface identifier obtained from SDstart(filename, access) */ private int sdid; /** the datatype identifier */ private int datatypeID = -1; private int nAttributes = -1; public H4SDS(FileFormat theFile, String name, String path) { this(theFile, name, path, null); } /** * Creates an H4SDS object with specific name and path. *

    * @param theFile the HDF file. * @param name the name of this H4SDS. * @param path the full path of this H4SDS. * @param oid the unique identifier of this data object. */ public H4SDS( FileFormat theFile, String name, String path, long[] oid) { super (theFile, name, path, oid); unsignedConverted = false; sdid = ((H4File)getFileFormat()).getSDAccessID(); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute () { if (nAttributes < 0) { sdid = ((H4File)getFileFormat()).getSDAccessID(); int id = open(); try { // retireve attributes of the dataset String[] objName = {""}; int[] sdInfo = {0, 0, 0}; int[] tmpDim = new int[HDFConstants.MAX_VAR_DIMS]; HDFLibrary.SDgetinfo(id, objName, tmpDim, sdInfo); nAttributes = sdInfo[2]; } catch (Exception ex) { nAttributes=0; } close(id); } return (nAttributes>0); } // ***** need to implement from ScalarDS ***** @Override public byte[][] readPalette(int idx) { return null;} // ***** need to implement from ScalarDS ***** @Override public byte[] getPaletteRefs() { return null;} // implementing Dataset @Override public Datatype getDatatype() { if (datatype == null) { datatype = new H4Datatype(datatypeID); } return datatype; } // To do: Implementing Dataset @Override public Dataset copy(Group pgroup, String dname, long[] dims, Object buff) throws Exception { Dataset dataset = null; int srcdid=-1, dstdid=-1, tid=-1, size=1, theRank=2; String path=null; int[] count=null, start=null; if (pgroup == null) { return null; } if (dname == null) { dname = getName(); } if (pgroup.isRoot()) { path = HObject.separator; } else { path = pgroup.getPath()+pgroup.getName()+HObject.separator; } log.trace("copy(): start with path={}", path); srcdid = open(); if (srcdid < 0) { return null; } if (dims == null) { theRank = getRank(); if (theRank <=0) { init(); } theRank = getRank(); dims = getDims(); } else { theRank = dims.length; } start = new int[theRank]; count = new int[theRank]; for (int i=0; i 1) && (selectedIndex[0] > selectedIndex[1])) isDefaultImageOrder = false; else isDefaultImageOrder = true; log.trace("read(): finish"); return theData; } // Implementing DataFormat @Override public void write(Object buf) throws HDFException { if (buf == null) { return; } log.trace("write(): start"); int id = open(); if (id < 0) { return; } int[] select = new int[rank]; int[] start = new int[rank]; for (int i=0; i0)) { attributeList = new Vector(n, 5); } boolean b = false; String[] attrName = new String[1]; int[] attrInfo = {0, 0}; for (int i=0; i0) { return; // already called. Initialize only once } log.trace("init(): start"); int id = open(); String[] objName = {""}; String[] dimName = {""}; int[] dimInfo = {0, 0, 0}; int[] sdInfo = {0, 0, 0}; boolean isUnlimited = false; int[] idims = new int[HDFConstants.MAX_VAR_DIMS]; try { HDFLibrary.SDgetinfo(id, objName, idims, sdInfo); // mask off the litend bit sdInfo[1] = sdInfo[1] & (~HDFConstants.DFNT_LITEND); nAttributes = sdInfo[2]; rank = sdInfo[0]; if (rank <= 0) { rank = 1; idims[0] = 1; } isUnlimited = HDFLibrary.SDisrecord(id); datatypeID = sdInfo[1]; isText = ((datatypeID == HDFConstants.DFNT_CHAR) || (datatypeID == HDFConstants.DFNT_UCHAR8)); //idims = new int[rank]; //HDFLibrary.SDgetinfo(id, objName, idims, sdInfo); // get the dimension names try { dimNames = new String[rank]; for (int i=0; i 1) { selectedDims[0] = dims[0]; if (isText) { selectedDims[1] = 1; } else { selectedDims[1] = dims[1]; } } log.trace("init(): finish"); } // Implementing ScalarDS @Override public byte[][] getPalette() { return palette; } /** * Creates a new dataset. * @param name the name of the dataset to create. * @param pgroup the parent group of the new dataset. * @param type the datatype of the dataset. * @param dims the dimension size of the dataset. * @param maxdims the max dimension size of the dataset. * @param chunks the chunk size of the dataset. * @param gzip the level of the gzip compression. * @param data the array of data values. * @return the new dataset if successful. Otherwise returns null. */ public static H4SDS create( String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, Object fillValue, Object data) throws Exception { H4SDS dataset = null; if ((pgroup == null) || (name == null)|| (dims == null)) { return null; } log.trace("create(): start"); H4File file = (H4File)pgroup.getFileFormat(); if (file == null) { return null; } String path = HObject.separator; if (!pgroup.isRoot()) { path = pgroup.getPath()+pgroup.getName()+HObject.separator; } // prepare the dataspace int tsize = 1; int rank = dims.length; int idims[] = new int[rank]; int start[] = new int [rank]; for (int i=0; i0)) { throw new HDFException("Unlimted cannot be used with chunking or compression"); } int sdid = (file).getSDAccessID(); int sdsid = -1; int vgid = -1; // datatype int tid = type.toNative(); if(tid >= 0) { try { sdsid = HDFLibrary.SDcreate(sdid, name, tid, rank, idims); // set fill value to zero. int vsize = HDFLibrary.DFKNTsize(tid); byte[] fill = new byte[vsize]; for (int i=0; i 0) { // set compression compInfo = new HDFDeflateCompInfo(); compInfo.level = gzip; if (chunks == null) HDFLibrary.SDsetcompress(sdsid, HDFConstants.COMP_CODE_DEFLATE, compInfo); } if (chunks != null) { // set chunk HDFChunkInfo chunkInfo = new HDFChunkInfo(ichunks); int flag = HDFConstants.HDF_CHUNK; if (gzip > 0) { flag = HDFConstants.HDF_CHUNK | HDFConstants.HDF_COMP; chunkInfo = new HDFChunkInfo(ichunks, HDFConstants.COMP_CODE_DEFLATE, compInfo); } try { HDFLibrary.SDsetchunk (sdsid, chunkInfo, flag); } catch (Throwable err) { err.printStackTrace(); throw new HDFException("SDsetchunk failed."); } } if ((sdsid > 0) && (data != null)) { HDFLibrary.SDwritedata(sdsid, start, null, idims, data); } int ref = HDFLibrary.SDidtoref(sdsid); if (!pgroup.isRoot()) { // add the dataset to the parent group vgid = pgroup.open(); if (vgid < 0) { if (sdsid > 0) { HDFLibrary.SDendaccess(sdsid); } throw (new HDFException("Unable to open the parent group.")); } HDFLibrary.Vaddtagref(vgid, HDFConstants.DFTAG_NDG, ref); pgroup.close(vgid); } try { if (sdsid > 0) { HDFLibrary.SDendaccess(sdsid); } } catch (Exception ex) { log.debug("create.SDendaccess:", ex); } long[] oid = {HDFConstants.DFTAG_NDG, ref}; dataset = new H4SDS(file, name, path, oid); if (dataset != null) { pgroup.addToMemberList(dataset); } log.trace("create(): finish"); return dataset; } public static H4SDS create( String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, Object data) throws Exception { return create(name, pgroup, type, dims, maxdims, chunks, gzip, null, data); } /** * copy attributes from one SDS to another SDS */ private void copyAttribute(int srcdid, int dstdid) { try { String[] objName = {""}; int[] sdInfo = {0, 0, 0}; int[] tmpDim = new int[HDFConstants.MAX_VAR_DIMS]; HDFLibrary.SDgetinfo(srcdid, objName, tmpDim, sdInfo); int numberOfAttributes = sdInfo[2]; log.trace("copyAttribute(): numberOfAttributes={}", numberOfAttributes); boolean b = false; String[] attrName = new String[1]; int[] attrInfo = {0, 0}; for (int i=0; i * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class H4Group extends Group { /** * */ private static final long serialVersionUID = 3785240955078867900L; private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(H4Group.class); /** * The list of attributes of this data object. Members of the list are * instance of Attribute. */ private List attributeList; private int nAttributes = -1; /** The default object ID for HDF4 objects */ private final static long[] DEFAULT_OID = {0, 0}; public H4Group(FileFormat theFile, String name, String path, Group parent) { this(theFile, name, path, parent, null); } /** * Creates a group object with specific name, path, and parent. *

    * @param theFile the HDF file. * @param name the name of this group. * @param path the full path of this group. * @param parent the parent of this group. * @param oid the unique identifier of this data object. */ public H4Group( FileFormat theFile, String name, String path, Group parent, long[] oid) { super (theFile, name, path, parent, ((oid == null) ? DEFAULT_OID : oid)); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute () { if (nAttributes < 0) { int vgid = open(); try { nAttributes =HDFLibrary.Vnattrs(vgid); nMembersInFile = HDFLibrary.Vntagrefs(vgid); } catch (Exception ex) { nAttributes = 0; } close(vgid); } return (nAttributes > 0); } // Implementing DataFormat public List getMetadata() throws HDFException { if (attributeList != null) { return attributeList; } else { attributeList = new Vector(); } int vgid = open(); if (vgid <= 0) { return attributeList; } int n = -1; try { n = HDFLibrary.Vnattrs(vgid); boolean b = false; String[] attrName = new String[1]; int[] attrInfo = new int[5]; for (int i=0; i * * @version 2.4 9/4/2007 * @author Peter X. Cao */ public class H4File extends FileFormat { /** * */ private static final long serialVersionUID = 8985533001471224030L; private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(H4File.class); /** * the file access flag. */ private int flag; /** * The root node of the tree structure of this file. */ private DefaultMutableTreeNode rootNode; /** * The list of unique (tag, ref) pairs. It is used to avoid duplicate * objects in memory. */ private List objList; /** * The GR interface identifier. The identifier is returned by GRstart(fid), * which initializes the GR interface for the file specified by the * parameter. GRstart(fid) is an expensive call. It should be called only * once. Calling GRstart(fid) in a loop should be avoided. */ private int grid; private boolean isNetCDF = false; /** * The SDS interface identifier. The identifier is returned by * SDstart(fname, flag), which initializes the SD interface for the file * specified by the parameter. SDstart(fname, flag) is an expensive call. It * should be called only once Calling SDstart(fname, flag) in a loop should * be avoided. */ private int sdid; /* * secret flag: show CDF0.0, etc., to help debug */ private boolean showAll = false; /** * Creates an H4File with read only access. */ public H4File() { this("", WRITE); } /** * Creates an H4File with read only access. */ public H4File(String pathname) { this(pathname, WRITE); } /** * Creates an H4File instance with specified file name and access. *

    * The access parameter values and corresponding behaviors: *

      *
    • READ: Read-only access; open() will fail file doesn't exist. *
    • WRITE: Read/Write access; if file doesn't exist, open() will create * it; open() will fail if read/write access not allowed. *
    • CREATE: Read/Write access; create a new file or truncate an existing * one; open() will fail if file can't be created or if file exists but * can't be opened read/write. *
    *

    * This constructor does not open the file for access, nor does it confirm * that the file can later be opened read/write or created. *

    * The flag returned by {@link #isReadOnly()} is set to true if the access * parameter value is READ, even though the file isn't yet open. * * @param fileName * A valid file name, with a relative or absolute path. * @param access * The file access flag, which determines behavior when file is * opened. Acceptable values are READ, WRITE, and * CREATE. * @throws NullPointerException * If the fileName argument is null. */ public H4File(String fileName, int access) { super(fileName); isReadOnly = (access == READ); objList = new Vector(); this.fid = -1; if (access == READ) { flag = HDFConstants.DFACC_READ; } else if (access == WRITE) { flag = HDFConstants.DFACC_WRITE; } else if (access == CREATE) { flag = HDFConstants.DFACC_CREATE; } else { flag = access; } String shwAll = System.getProperty("h4showall"); if (shwAll != null) { showAll = true; log.debug("show all is on"); } else { log.debug("show all is off"); } } /** * Checks if the given file format is an HDF4 file. *

    * * @param fileformat * the fileformat to be checked. * @return true if the given file is an HDF4 file; otherwise returns false. */ @Override public boolean isThisType(FileFormat fileformat) { return (fileformat instanceof H4File); } /** * Checks if the given file is an HDF4 file or netCDF. HDF4 library supports * netCDF version 2.3.2. It only supports SDS APIs. *

    * * @param filename * the file to be checked. * @return true if the given file is an HDF4 file; otherwise returns false. */ @Override public boolean isThisType(String filename) { boolean isH4 = false; try { isH4 = HDFLibrary.Hishdf(filename); } catch (HDFException ex) { isH4 = false; } if (!isH4) { isH4 = isNetCDF(filename); } return isH4; } /** * Creates an HDF4 file with the specified name and returns a new H4File * instance associated with the file. * * @throws HDFException * If the file cannot be created or if createFlag has unexpected * value. * @see ncsa.hdf.object.FileFormat#createFile(java.lang.String, int) * @see #H4File(String, int) */ @Override public FileFormat createFile(String filename, int createFlag) throws Exception { // Flag if we need to create or truncate the file. Boolean doCreateFile = true; // Won't create or truncate if CREATE_OPEN specified and file exists if (createFlag == FILE_CREATE_OPEN) { File f = new File(filename); if (f.exists()) { doCreateFile = false; } } if (doCreateFile) { int fileid = HDFLibrary.Hopen(filename, HDFConstants.DFACC_CREATE); try { HDFLibrary.Hclose(fileid); } catch (HDFException ex) { log.debug("Hclose failure: ", ex); } } return new H4File(filename, WRITE); } /** * Creates an H4File instance with specified file name and access. *

    * * @see ncsa.hdf.object.FileFormat#createInstance(java.lang.String, int) * @see #H4File(String, int) */ @Override public FileFormat createInstance(String filename, int access) throws Exception { return new H4File(filename, access); } // Implementing FileFormat @Override public int open() throws Exception { if (fid >= 0) { return fid; // file is openned already// System.err.println } // check for valid file access permission if (flag < 0) { // invalid access id throw new HDFException("Invalid access identifer -- " + flag); } else if (flag == HDFConstants.DFACC_READ) { if (!exists()) { throw new HDFException("File does not exist -- " + fullFileName); } else if (exists() && !canRead()) { throw new HDFException("Cannot read file -- " + fullFileName); } } else if ((flag == HDFConstants.DFACC_WRITE) || (flag == HDFConstants.DFACC_CREATE)) { if (exists() && !canWrite()) { throw new HDFException( "Cannot write file, try open as read-only -- " + fullFileName); } } isNetCDF = isNetCDF(fullFileName); if (isNetCDF) { isReadOnly = true; // read only for netCDF } // only support SDS APIs for netCDF if (isNetCDF) { fid = 0; } else { fid = HDFLibrary.Hopen(fullFileName, flag); HDFLibrary.Vstart(fid); grid = HDFLibrary.GRstart(fid); } sdid = HDFLibrary.SDstart(fullFileName, flag); // load the file hierarchy rootNode = loadTree(); return fid; } // Implementing FileFormat @Override public void close() throws HDFException { // clean unused objects if (rootNode != null) { DefaultMutableTreeNode theNode = null; HObject theObj = null; Enumeration local_enum = (rootNode).breadthFirstEnumeration(); while (local_enum.hasMoreElements()) { theNode = (DefaultMutableTreeNode) local_enum.nextElement(); theObj = (HObject) theNode.getUserObject(); if (theObj instanceof Dataset) { ((Dataset) theObj).clearData(); } theObj = null; theNode = null; } } try { HDFLibrary.GRend(grid); } catch (HDFException ex) { log.debug("GRend failure: ", ex); } try { HDFLibrary.SDend(sdid); } catch (HDFException ex) { log.debug("SDend failure: ", ex); } try { HDFLibrary.Vend(fid); } catch (HDFException ex) { log.debug("Vend failure: ", ex); } HDFLibrary.Hclose(fid); fid = -1; objList = null; } // Implementing FileFormat @Override public TreeNode getRootNode() { return rootNode; } @Override public Group createGroup(String name, Group pgroup) throws Exception { return H4Group.create(name, pgroup); } @Override public Datatype createDatatype(int tclass, int tsize, int torder, int tsign) throws Exception { return new H4Datatype(tclass, tsize, torder, tsign); } @Override public Datatype createDatatype(int tclass, int tsize, int torder, int tsign, Datatype tbase) throws Exception { return new H4Datatype(tclass, tsize, torder, tsign); } @Override public Datatype createDatatype(int tclass, int tsize, int torder, int tsign, String name) throws Exception { throw new UnsupportedOperationException( "HDF4 does not support named datatype."); } @Override public Datatype createDatatype(int tclass, int tsize, int torder, int tsign, Datatype tbase, String name) throws Exception { throw new UnsupportedOperationException( "HDF4 does not support named datatype."); } @Override public Dataset createScalarDS(String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, Object fillValue, Object data) throws Exception { return H4SDS.create(name, pgroup, type, dims, maxdims, chunks, gzip, fillValue, data); } @Override public Dataset createImage(String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, int ncomp, int interlace, Object data) throws Exception { H4GRImage dataset = H4GRImage.create(name, pgroup, type, dims, maxdims, chunks, gzip, ncomp, interlace, data); return dataset; } /** * Delete an object from the file. * * @param obj * the data object to delete. */ @Override public void delete(HObject obj) throws Exception { throw (new UnsupportedOperationException("Cannot delete HDF4 object.")); } /** * Copy an object to a group. * * @param srcObj * the object to copy. * @param dstGroup * the destination group. * @return the new node containing the new object. */ @Override public TreeNode copy(HObject srcObj, Group dstGroup, String dstName) throws Exception { TreeNode newNode = null; log.trace("copy(): start"); if ((srcObj == null) || (dstGroup == null)) { return null; } if (dstName == null) { dstName = srcObj.getName(); } log.trace("copy(): dstName={}", dstName); if (srcObj instanceof H4SDS) { log.trace("copy(): srcObj instanceof H4SDS"); newNode = new DefaultMutableTreeNode(((H4SDS) srcObj).copy( dstGroup, dstName, null, null)); } else if (srcObj instanceof H4GRImage) { log.trace("copy(): srcObj instanceof H4GRImage"); newNode = new DefaultMutableTreeNode(((H4GRImage) srcObj).copy( dstGroup, dstName, null, null)); } else if (srcObj instanceof H4Vdata) { log.trace("copy(): srcObj instanceof H4Vdata"); newNode = new DefaultMutableTreeNode(((H4Vdata) srcObj).copy( dstGroup, null, null, null)); } else if (srcObj instanceof H4Group) { log.trace("copy(): srcObj instanceof H4Group"); newNode = copyGroup((H4Group) srcObj, (H4Group) dstGroup); } log.trace("copy(): finish"); return newNode; } /** * Creates a new attribute and attached to the object if attribute does not * exist. Otherwise, just update the value of the attribute. * *

    * * @param obj * the object which the attribute is to be attached to. * @param attr * the attribute to attach. * @param isSDglobalAttr * The indicator if the given attribute exists. */ @Override public void writeAttribute(HObject obj, Attribute attr, boolean isSDglobalAttr) throws HDFException { String attrName = attr.getName(); int attrType = attr.getType().toNative(); long[] dims = attr.getDataDims(); int count = 1; if (dims != null) { for (int i = 0; i < dims.length; i++) { count *= (int) dims[i]; } } log.trace("writeAttribute(): start count={}", count); Object attrValue = attr.getValue(); if (Array.get(attrValue, 0) instanceof String) { String strValue = (String) Array.get(attrValue, 0); if (strValue.length() > count) { // truncate the extra characters strValue = strValue.substring(0, count); Array.set(attrValue, 0, strValue); } else { // pad space to the unused space for (int i = strValue.length(); i < count; i++) { strValue += " "; } } byte[] bval = strValue.getBytes(); // add null to the end to get rid of the junks bval[(strValue.length() - 1)] = 0; attrValue = bval; } if ((obj instanceof H4Group) && ((H4Group) obj).isRoot()) { if (isSDglobalAttr) { HDFLibrary.SDsetattr(sdid, attrName, attrType, count, attrValue); } else { HDFLibrary.GRsetattr(grid, attrName, attrType, count, attrValue); } return; } int id = obj.open(); if (obj instanceof H4Group) { HDFLibrary.Vsetattr(id, attrName, attrType, count, attrValue); } else if (obj instanceof H4SDS) { HDFLibrary.SDsetattr(id, attrName, attrType, count, attrValue); } else if (obj instanceof H4GRImage) { HDFLibrary.GRsetattr(id, attrName, attrType, count, attrValue); } else if (obj instanceof H4Vdata) { HDFLibrary.VSsetattr(id, -1, attrName, attrType, count, attrValue); } obj.close(id); log.trace("writeAttribute(): finish"); } private TreeNode copyGroup(H4Group srcGroup, H4Group pgroup) throws Exception { H4Group group = null; int srcgid, dstgid; String gname = null, path = null; log.trace("copyGroup(): start"); dstgid = HDFLibrary.Vattach(fid, -1, "w"); if (dstgid < 0) { return null; } gname = srcGroup.getName(); srcgid = srcGroup.open(); HDFLibrary.Vsetname(dstgid, gname); int ref = HDFLibrary.VQueryref(dstgid); int tag = HDFLibrary.VQuerytag(dstgid); if (pgroup.isRoot()) { path = HObject.separator; } else { // add the dataset to the parent group path = pgroup.getPath() + pgroup.getName() + HObject.separator; int pid = pgroup.open(); HDFLibrary.Vinsert(pid, dstgid); pgroup.close(pid); } // copy attributes int numberOfAttributes = 0; try { numberOfAttributes = HDFLibrary.Vnattrs(srcgid); } catch (Exception ex) { numberOfAttributes = 0; } String[] attrName = new String[1]; byte[] attrBuff = null; int[] attrInfo = new int[3]; // data_type, count, size for (int i = 0; i < numberOfAttributes; i++) { try { attrName[0] = ""; HDFLibrary.Vattrinfo(srcgid, i, attrName, attrInfo); attrBuff = new byte[attrInfo[2]]; HDFLibrary.Vgetattr(srcgid, i, attrBuff); HDFLibrary.Vsetattr(dstgid, attrName[0], attrInfo[0], attrInfo[2], attrBuff); } catch (Exception ex) { continue; } } long[] oid = { tag, ref }; group = new H4Group(this, gname, path, pgroup, oid); DefaultMutableTreeNode newNode = new DefaultMutableTreeNode(group) { private static final long serialVersionUID = -8601910527549035409L; @Override public boolean isLeaf() { return false; } }; pgroup.addToMemberList(group); // copy members of the source group to the new group List members = srcGroup.getMemberList(); if ((members != null) && (members.size() > 0)) { Iterator iterator = members.iterator(); while (iterator.hasNext()) { HObject mObj = (HObject) iterator.next(); try { newNode.add((MutableTreeNode) copy(mObj, group)); } catch (Exception ex) { log.debug("newNode.ad failure: ", ex); } } } srcGroup.close(srcgid); try { HDFLibrary.Vdetach(dstgid); } catch (Exception ex) { log.debug("Vdetach failure: ", ex); } log.trace("copyGroup(): finish"); return newNode; } /** * Retrieves and returns the file structure from disk. *

    * First gets the top level objects or objects that do not belong to any * groups. If a top level object is a group, call the depth_first() to * retrieve the sub-tree of that group, recursively. * */ private DefaultMutableTreeNode loadTree() { if (fid < 0) { return null; } long[] oid = { 0, 0 }; int n = 0, ref = -1; int[] argv = null; MutableTreeNode node = null; log.trace("loadTree(): start"); H4Group rootGroup = new H4Group(this, "/", null, // root node does not // have a parent // path null, // root node does not have a parent node oid); DefaultMutableTreeNode root = new DefaultMutableTreeNode(rootGroup) { private static final long serialVersionUID = 3507473044690724650L; @Override public boolean isLeaf() { return false; } }; // get top level VGroup int[] tmpN = new int[1]; int[] refs = null; try { // first call to get the number of lone Vgroup n = HDFLibrary.Vlone(fid, tmpN, 0); refs = new int[n]; // second call to get the references of all lone Vgroup n = HDFLibrary.Vlone(fid, refs, n); } catch (HDFException ex) { n = 0; } int i0 = Math.max(0, getStartMembers()); int i1 = getMaxMembers(); if (i1 >= n) { i1 = n; i0 = 0; // load all members } i1 += i0; i1 = Math.min(i1, n); // Iterate through the file to see members of the group for (int i = i0; i < i1; i++) { ref = refs[i]; H4Group g = getVGroup(HDFConstants.DFTAG_VG, ref, HObject.separator, rootGroup, false); if (g != null) { node = new DefaultMutableTreeNode(g) { private static final long serialVersionUID = 8927502967802143369L; @Override public boolean isLeaf() { return false; } }; root.add(node); rootGroup.addToMemberList(g); // recursively get the sub-tree depth_first(node, null); } } // for (int i=0; i * * @param parentNode * the parent node. */ private void depth_first(MutableTreeNode parentNode, H4Group pgroup) { if ((pgroup == null) && (parentNode == null)) { return; } // System.out.println("H4File.depth_first() pnode = "+parentNode); int nelems = 0, ref = -1, tag = -1, index = -1; int[] tags = null; int[] refs = null; MutableTreeNode node = null; DefaultMutableTreeNode pnode = null; if (parentNode != null) { pnode = (DefaultMutableTreeNode) parentNode; pgroup = (H4Group) (pnode.getUserObject()); } String fullPath = pgroup.getPath() + pgroup.getName() + HObject.separator; int gid = pgroup.open(); if (gid == HDFConstants.FAIL) { return; } try { nelems = HDFLibrary.Vntagrefs(gid); tags = new int[nelems]; refs = new int[nelems]; nelems = HDFLibrary.Vgettagrefs(gid, tags, refs, nelems); } catch (HDFException ex) { nelems = 0; } finally { pgroup.close(gid); } int i0 = Math.max(0, getStartMembers()); int i1 = getMaxMembers(); if (i1 >= nelems) { i1 = nelems; i0 = 0; // load all members } i1 += i0; i1 = Math.min(i1, nelems); // Iterate through the file to see members of the group for (int i = i0; i < i1; i++) { tag = tags[i]; ref = refs[i]; switch (tag) { case HDFConstants.DFTAG_RIG: case HDFConstants.DFTAG_RI: case HDFConstants.DFTAG_RI8: try { index = HDFLibrary.GRreftoindex(grid, (short) ref); } catch (HDFException ex) { index = HDFConstants.FAIL; } if (index != HDFConstants.FAIL) { H4GRImage gr = getGRImage(tag, index, fullPath, true); pgroup.addToMemberList(gr); if ((gr != null) && (pnode != null)) { node = new DefaultMutableTreeNode(gr); pnode.add(node); } } break; case HDFConstants.DFTAG_SD: case HDFConstants.DFTAG_SDG: case HDFConstants.DFTAG_NDG: try { index = HDFLibrary.SDreftoindex(sdid, ref); } catch (HDFException ex) { index = HDFConstants.FAIL; } if (index != HDFConstants.FAIL) { H4SDS sds = getSDS(tag, index, fullPath, true); pgroup.addToMemberList(sds); if ((sds != null) && (pnode != null)) { node = new DefaultMutableTreeNode(sds); pnode.add(node); } } break; case HDFConstants.DFTAG_VH: case HDFConstants.DFTAG_VS: H4Vdata vdata = getVdata(tag, ref, fullPath, true); pgroup.addToMemberList(vdata); if ((vdata != null) && (pnode != null)) { node = new DefaultMutableTreeNode(vdata); pnode.add(node); } break; case HDFConstants.DFTAG_VG: H4Group vgroup = getVGroup(tag, ref, fullPath, pgroup, true); pgroup.addToMemberList(vgroup); if ((vgroup != null) && (pnode != null)) { node = new DefaultMutableTreeNode(vgroup) { private static final long serialVersionUID = -8774836537322039221L; @Override public boolean isLeaf() { return false; } }; pnode.add(node); // check for loops boolean looped = false; DefaultMutableTreeNode theNode = pnode; while ((theNode != null) && !looped) { H4Group theGroup = (H4Group) theNode.getUserObject(); long[] oid = { tag, ref }; if (theGroup.equalsOID(oid)) { looped = true; } else { theNode = (DefaultMutableTreeNode) theNode .getParent(); } } if (!looped) { depth_first(node, null); } } break; default: break; } // switch (tag) } // for (int i=0; i * * @param index * the index of the image. * @param path * the path of the image. * @param copyAllowed * The indicator if multiple copies of an object is allowed. * @return the new H5GRImage if successful; otherwise returns null. */ private final H4GRImage getGRImage(int tag, int index, String path, boolean copyAllowed) { int id = -1, ref = -1; H4GRImage gr = null; String[] objName = { "" }; int[] imgInfo = new int[4]; int[] dim_sizes = { 0, 0 }; // int tag = HDFConstants.DFTAG_RIG; try { id = HDFLibrary.GRselect(grid, index); ref = HDFLibrary.GRidtoref(id); HDFLibrary.GRgetiminfo(id, objName, imgInfo, dim_sizes); } catch (HDFException ex) { id = HDFConstants.FAIL; } finally { try { HDFLibrary.GRendaccess(id); } catch (HDFException ex) { log.debug("GRendaccess failure: ", ex); } } if (id != HDFConstants.FAIL) { long oid[] = { tag, ref }; if (copyAllowed) { objList.add(oid); } else if (find(oid)) { return null; } gr = new H4GRImage(this, objName[0], path, oid); } return gr; } /** * Retrieve a SDS for the given sds identifier and index. *

    * * @param sdid * the SDS idendifier. * @param index * the index of the SDS. * @param path * the path of the SDS. * @param copyAllowed * The indicator if multiple copies of an object is allowed. * @return the new H4SDS if successful; otherwise returns null. */ private final H4SDS getSDS(int tag, int index, String path, boolean copyAllowed) { int id = -1, ref = -1; H4SDS sds = null; String[] objName = { "" }; int[] tmpInfo = new int[HDFConstants.MAX_VAR_DIMS]; int[] sdInfo = { 0, 0, 0 }; // int tag = HDFConstants.DFTAG_NDG; log.trace("getSDS(): start"); boolean isCoordvar = false; try { id = HDFLibrary.SDselect(sdid, index); if (isNetCDF) { ref = index; // HDFLibrary.SDidtoref(id) fails for netCDF tag = H4SDS.DFTAG_NDG_NETCDF; } else { ref = HDFLibrary.SDidtoref(id); } HDFLibrary.SDgetinfo(id, objName, tmpInfo, sdInfo); isCoordvar = HDFLibrary.SDiscoordvar(id); } catch (HDFException ex) { id = HDFConstants.FAIL; } finally { try { HDFLibrary.SDendaccess(id); } catch (HDFException ex) { log.debug("SDendaccess failure: ", ex); } } // check if the given SDS has dimension metadata // Coordinate variables are not displayed. They are created to store // metadata associated with dimensions. To ensure compatibility with // netCDF, coordinate variables are implemented as data sets if (isCoordvar) { objName[0] += " (dimension)"; } if (id != HDFConstants.FAIL) { // && !isCoordvar) long oid[] = { tag, ref }; if (copyAllowed) { objList.add(oid); } else if (find(oid)) { return null; } sds = new H4SDS(this, objName[0], path, oid); } log.trace("getSDS(): finish"); return sds; } /** * Retrieve a Vdata for the given Vdata identifier and index. *

    * * @param ref * the reference idendifier of the Vdata. * @param path * the path of the Vdata. * @param copyAllowed * The indicator if multiple copies of an object is allowed. * @return the new H4Vdata if successful; otherwise returns null. */ private final H4Vdata getVdata(int tag, int ref, String path, boolean copyAllowed) { int id = -1; H4Vdata vdata = null; String[] objName = { "" }; String[] vClass = { "" }; // int tag = HDFConstants.DFTAG_VS; long oid[] = { tag, ref }; log.trace("getVdata(): start"); if (copyAllowed) { objList.add(oid); } else if (find(oid)) { return null; } try { id = HDFLibrary.VSattach(fid, ref, "r"); HDFLibrary.VSgetclass(id, vClass); vClass[0] = vClass[0].trim(); HDFLibrary.VSgetname(id, objName); } catch (HDFException ex) { id = HDFConstants.FAIL; } finally { try { HDFLibrary.VSdetach(id); } catch (HDFException ex) { log.debug("VSdetach failure: ", ex); } } if (showAll || ((id != HDFConstants.FAIL) && !vClass[0].equalsIgnoreCase(HDFConstants.HDF_ATTRIBUTE) // do not display Vdata named "Attr0.0" // commented out for bug 1737 && !vClass[0].startsWith(HDFConstants.HDF_CHK_TBL) // do not display internal Vdata, "_HDF_CHK_TBL_" && !vClass[0].startsWith(HDFConstants.HDF_SDSVAR) // do not display attributes && !vClass[0].startsWith(HDFConstants.HDF_CRDVAR) && !vClass[0].startsWith(HDFConstants.DIM_VALS) && !vClass[0].startsWith(HDFConstants.DIM_VALS01) && !vClass[0].startsWith(HDFConstants.RIGATTRCLASS) && !vClass[0].startsWith(HDFConstants.RIGATTRNAME) && !vClass[0].equalsIgnoreCase(HDFConstants.HDF_CDF))) // do not display internal vdata for CDF, "CDF0.0" { vdata = new H4Vdata(this, objName[0], path, oid); } log.trace("getVdata(): finish"); return vdata; } /** * Retrieve a VGroup for the given VGroup identifier and index. *

    * * @param ref * the reference idendifier of the VGroup. * @param path * the path of the VGroup. * @param pgroup * the parent group. * @param copyAllowed * The indicator if multiple copies of an object is allowed. * @return the new H4VGroup if successful; otherwise returns null. */ private final H4Group getVGroup(int tag, int ref, String path, H4Group pgroup, boolean copyAllowed) { int id = -1; H4Group vgroup = null; String[] objName = { "" }; String[] vClass = { "" }; // int tag = HDFConstants.DFTAG_VG; long oid[] = { tag, ref }; log.trace("getVGroup(): start"); if (copyAllowed) { objList.add(oid); } else if (find(oid)) { return null; } try { id = HDFLibrary.Vattach(fid, ref, "r"); HDFLibrary.Vgetclass(id, vClass); vClass[0] = vClass[0].trim(); HDFLibrary.Vgetname(id, objName); } catch (HDFException ex) { id = HDFConstants.FAIL; } finally { try { HDFLibrary.Vdetach(id); } catch (HDFException ex) { log.debug("Vdetach failure: ", ex); } } // ignore the Vgroups created by the GR interface if (showAll || ((id != HDFConstants.FAIL) && !vClass[0].equalsIgnoreCase(HDFConstants.GR_NAME) // do not display Vdata named "Attr0.0" && !vClass[0].equalsIgnoreCase(HDFConstants.RI_NAME) && !vClass[0].equalsIgnoreCase(HDFConstants.RIGATTRNAME) && !vClass[0].equalsIgnoreCase(HDFConstants.RIGATTRCLASS) && !vClass[0].equalsIgnoreCase(HDFConstants.HDF_CDF))) { vgroup = new H4Group(this, objName[0], path, pgroup, oid); } log.trace("getVGroup(): finish"); return vgroup; } /** * Check if object already exists in memory by match the (tag, ref) pairs. */ private final boolean find(long[] oid) { boolean existed = false; if (objList == null) { return false; } int n = objList.size(); long[] theOID = null; for (int i = 0; i < n; i++) { theOID = (long[]) objList.get(i); if ((theOID[0] == oid[0]) && (theOID[1] == oid[1])) { existed = true; break; } } if (!existed) { objList.add(oid); } return existed; } /** * Returns the GR identifier, which is returned from GRstart(fid). */ int getGRAccessID() { return grid; } /** * Returns the SDS identifier, which is returned from SDstart(fname, flag). */ int getSDAccessID() { return sdid; } /** * Reads HDF file annontation (file labels and descriptions) into memory. * The file annotation is stroed as attribute of the root group. *

    * * @param fid * the file identifier. * @param attrList * the list of attributes. * @return the updated attribute list. */ private List getFileAnnotation(int fid, List attrList) throws HDFException { if (fid < 0) { return attrList; } int anid = HDFConstants.FAIL; try { anid = HDFLibrary.ANstart(fid); // fileInfo[0] = n_file_label, fileInfo[1] = n_file_desc, // fileInfo[2] = n_data_label, fileInfo[3] = n_data_desc int[] fileInfo = new int[4]; HDFLibrary.ANfileinfo(anid, fileInfo); if (fileInfo[0] + fileInfo[1] <= 0) { try { HDFLibrary.ANend(anid); } catch (HDFException ex) { log.debug("ANend failure: ", ex); } return attrList; } if (attrList == null) { attrList = new Vector(fileInfo[0] + fileInfo[1], 5); } // load file labels and descriptions int id = -1; int[] annTypes = { HDFConstants.AN_FILE_LABEL, HDFConstants.AN_FILE_DESC }; for (int j = 0; j < 2; j++) { String annName = null; if (j == 0) { annName = "File Label"; } else { annName = "File Description"; } for (int i = 0; i < fileInfo[j]; i++) { try { id = HDFLibrary.ANselect(anid, i, annTypes[j]); } catch (HDFException ex) { id = HDFConstants.FAIL; } if (id == HDFConstants.FAIL) { try { HDFLibrary.ANendaccess(id); } catch (HDFException ex) { log.debug("ANendaccess failure: ", ex); } continue; } int length = 0; try { length = HDFLibrary.ANannlen(id) + 1; } catch (HDFException ex) { length = 0; } if (length > 0) { boolean b = false; String str[] = { "" }; try { b = HDFLibrary.ANreadann(id, str, length); } catch (HDFException ex) { b = false; } if (b && (str[0].length() > 0)) { long attrDims[] = { str[0].length() }; Attribute newAttr = new Attribute(annName + " #" + i, new H4Datatype(HDFConstants.DFNT_CHAR), attrDims); attrList.add(newAttr); newAttr.setValue(str[0]); } } try { HDFLibrary.ANendaccess(id); } catch (HDFException ex) { log.debug("ANendaccess failure: ", ex); } } // for (int i=0; i < fileInfo[annTYpe]; i++) } // for (int annType=0; annType<2; annType++) } finally { try { HDFLibrary.ANend(anid); } catch (HDFException ex) { log.debug("ANend failure: ", ex); } } return attrList; } /** * Reads GR globle attributes into memory. The attributes sre stroed as * attributes of the root group. *

    * * @param grid * the GR identifier. * @param attrList * the list of attributes. * @return the updated attribute list. */ private List getGRglobleAttribute(int grid, List attrList) throws HDFException { if (grid == HDFConstants.FAIL) { return attrList; } int[] attrInfo = { 0, 0 }; HDFLibrary.GRfileinfo(grid, attrInfo); int numberOfAttributes = attrInfo[1]; if (numberOfAttributes > 0) { if (attrList == null) { attrList = new Vector(numberOfAttributes, 5); } String[] attrName = new String[1]; for (int i = 0; i < numberOfAttributes; i++) { attrName[0] = ""; boolean b = false; try { b = HDFLibrary.GRattrinfo(grid, i, attrName, attrInfo); // mask off the litend bit attrInfo[0] = attrInfo[0] & (~HDFConstants.DFNT_LITEND); } catch (HDFException ex) { b = false; } if (!b) { continue; } long[] attrDims = { attrInfo[1] }; Attribute attr = new Attribute(attrName[0], new H4Datatype(attrInfo[0]), attrDims); attrList.add(attr); Object buf = H4Datatype.allocateArray(attrInfo[0], attrInfo[1]); try { HDFLibrary.GRgetattr(grid, i, buf); } catch (HDFException ex) { buf = null; } if (buf != null) { if ((attrInfo[0] == HDFConstants.DFNT_CHAR) || (attrInfo[0] == HDFConstants.DFNT_UCHAR8)) { buf = Dataset.byteToString((byte[]) buf, attrInfo[1]); } attr.setValue(buf); } } // for (int i=0; i0) return attrList; } /** * Reads SDS globle attributes into memory. The attributes sre stroed as * attributes of the root group. *

    * * @param sdid * the SD identifier. * @param attrList * the list of attributes. * @return the updated attribute list. */ private List getSDSglobleAttribute(int sdid, List attrList) throws HDFException { if (sdid == HDFConstants.FAIL) { return attrList; } int[] attrInfo = { 0, 0 }; HDFLibrary.SDfileinfo(sdid, attrInfo); int numberOfAttributes = attrInfo[1]; if (numberOfAttributes > 0) { if (attrList == null) { attrList = new Vector(numberOfAttributes, 5); } String[] attrName = new String[1]; for (int i = 0; i < numberOfAttributes; i++) { attrName[0] = ""; boolean b = false; try { b = HDFLibrary.SDattrinfo(sdid, i, attrName, attrInfo); // mask off the litend bit attrInfo[0] = attrInfo[0] & (~HDFConstants.DFNT_LITEND); } catch (HDFException ex) { b = false; } if (!b) { continue; } long[] attrDims = { attrInfo[1] }; Attribute attr = new Attribute(attrName[0], new H4Datatype(attrInfo[0]), attrDims); attrList.add(attr); Object buf = H4Datatype.allocateArray(attrInfo[0], attrInfo[1]); try { HDFLibrary.SDreadattr(sdid, i, buf); } catch (HDFException ex) { buf = null; } if (buf != null) { if ((attrInfo[0] == HDFConstants.DFNT_CHAR) || (attrInfo[0] == HDFConstants.DFNT_UCHAR8)) { buf = Dataset.byteToString((byte[]) buf, attrInfo[1]); } attr.setValue(buf); } } // for (int i=0; i0) return attrList; } /** * Returns the version of the HDF4 library. */ @Override public String getLibversion() { int[] vers = new int[3]; String ver = "HDF "; String[] verStr = { "" }; try { HDFLibrary.Hgetlibversion(vers, verStr); } catch (HDFException ex) { log.debug("Hgetlibversion failure: ", ex); } ver += vers[0] + "." + vers[1] + "." + vers[2]; log.debug("libversion is {}", ver); return ver; } /** HDF4 library supports netCDF version 2.3.2. It only supports SDS APIs. */ private boolean isNetCDF(String filename) { boolean isnetcdf = false; java.io.RandomAccessFile raf = null; try { raf = new java.io.RandomAccessFile(filename, "r"); } catch (Exception ex) { log.debug("RandaomAccessFile {}", filename, ex); try { raf.close(); } catch (Exception ex2) { log.debug("RAF.close failure: ", ex2); } raf = null; } if (raf == null) { return false; } byte[] header = new byte[4]; try { raf.read(header); } catch (Exception ex) { header = null; } if (header != null) { if ( // netCDF ((header[0] == 67) && (header[1] == 68) && (header[2] == 70) && (header[3] == 1))) { isnetcdf = true; } else { isnetcdf = false; } } try { raf.close(); } catch (Exception ex) { log.debug("RAF.close failure: ", ex); } return isnetcdf; } /** * Get an individual HObject with a given path. It does not load the whole * file structure. */ @Override public HObject get(String path) throws Exception { if (objList == null) { objList = new Vector(); } if ((path == null) || (path.length() <= 0)) { return null; } path = path.replace('\\', '/'); if (!path.startsWith("/")) { path = "/" + path; } String name = null, pPath = null; boolean isRoot = false; if (path.equals("/")) { name = "/"; // the root isRoot = true; } else { if (path.endsWith("/")) { path = path.substring(0, path.length() - 2); } int idx = path.lastIndexOf('/'); name = path.substring(idx + 1); if (idx == 0) { pPath = "/"; } else { pPath = path.substring(0, idx); } } HObject obj = null; isReadOnly = false; if (fid < 0) { fid = HDFLibrary.Hopen(fullFileName, HDFConstants.DFACC_WRITE); if (fid < 0) { isReadOnly = true; fid = HDFLibrary.Hopen(fullFileName, HDFConstants.DFACC_READ); } HDFLibrary.Vstart(fid); grid = HDFLibrary.GRstart(fid); sdid = HDFLibrary.SDstart(fullFileName, flag); } if (isRoot) { obj = getRootGroup(); } else { obj = getAttachedObject(pPath, name); } return obj; } /** get the root group and all the alone objects */ private H4Group getRootGroup() { H4Group rootGroup = null; long[] oid = { 0, 0 }; int n = 0, ref = -1; int[] argv = null; rootGroup = new H4Group(this, "/", null, null, oid); // get top level VGroup int[] tmpN = new int[1]; int[] refs = null; try { // first call to get the number of lone Vgroup n = HDFLibrary.Vlone(fid, tmpN, 0); refs = new int[n]; // second call to get the references of all lone Vgroup n = HDFLibrary.Vlone(fid, refs, n); } catch (HDFException ex) { n = 0; } // Iterate through the file to see members of the group for (int i = 0; i < n; i++) { ref = refs[i]; H4Group g = getVGroup(HDFConstants.DFTAG_VG, ref, HObject.separator, rootGroup, false); if (g != null) { rootGroup.addToMemberList(g); } } // for (int i=0; i= 0) { return getGRImage(HDFConstants.DFTAG_RIG, idx, HObject.separator, false); } // get top level SDS try { idx = HDFLibrary.SDnametoindex(sdid, name); } catch (HDFException ex) { idx = -1; } if (idx >= 0) { return getSDS(HDFConstants.DFTAG_NDG, idx, HObject.separator, false); } // if (sdid != HDFConstants.FAIL && HDFLibrary.SDfileinfo(sdid, argv)) int ref = 0; try { ref = HDFLibrary.Vfind(fid, name); } catch (HDFException ex) { ref = -1; } if (ref > 0) { long oid[] = { HDFConstants.DFTAG_VG, ref }; H4Group g = new H4Group(this, objName[0], path, null, oid); depth_first(null, g); return g; } // get top level VData try { ref = HDFLibrary.VSfind(fid, name); } catch (HDFException ex) { ref = -1; } if (ref > 0) { return getVdata(HDFConstants.DFTAG_VS, ref, HObject.separator, false); } // for (int i=0; i * This class provides several methods to convert an HDF4 datatype identifier to * a datatype object, and vice versa. A datatype object is described by four basic * fields: datatype class, size, byte order, and sign, while an HDF5 datatype is * presented by a datatype identifier. *

    * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class H4Datatype extends Datatype { /** * */ private static final long serialVersionUID = -1342029403385521874L; /** * Constructs a H4Datatype with specified class, size, byte order and sign. *

    * The following is a list of a few example of H5Datatype. *

      *
    1. to create unsigned native integer
      * H4Datatype type = new H4Dataype(CLASS_INTEGER, NATIVE, NATIVE, SIGN_NONE); *
    2. to create 16-bit signed integer with big endian
      * H4Datatype type = new H4Dataype(CLASS_INTEGER, 2, ORDER_BE, NATIVE); *
    3. to create native float
      * H4Datatype type = new H4Dataype(CLASS_FLOAT, NATIVE, NATIVE, -1); *
    4. to create 64-bit double
      * H4Datatype type = new H4Dataype(CLASS_FLOAT, 8, NATIVE, -1); *
    * @param tclass the class of the datatype, e.g. CLASS_INTEGER, CLASS_FLOAT and etc. * @param tsize the size of the datatype in bytes, e.g. for a 32-bit integer, the size is 4. * @param torder the byte order of the datatype. Valid values are ORDER_LE, ORDER_BE, ORDER_VAX and ORDER_NONE * @param tsign the sign of the datatype. Valid values are SIGN_NONE, SIGN_2 and MSGN */ public H4Datatype(int tclass, int tsize, int torder, int tsign) { super(tclass, tsize, torder, tsign); } /** * Constructs a H4Datatype with a given native datatype identifier. *

    * For example, *

         * Datatype dtype = new H4Datatype(HDFConstants.DFNT_INT32);
         * 
    * will construct a datatype equivalent to * new H4Datatype(CLASS_INTEGER, 4, NATIVE, SIGN_NONE); *

    * @see #fromNative(int nativeID) * @param nativeID the native datatype identifier. */ public H4Datatype(int nativeID) { super(nativeID); fromNative(nativeID); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute () { return false; } /* * (non-Javadoc) * @see ncsa.hdf.object.Datatype#fromNative(int) */ @Override public void fromNative(int tid) { datatypeOrder = NATIVE; datatypeSign = NATIVE; switch(tid) { case HDFConstants.DFNT_CHAR: datatypeClass = CLASS_CHAR; datatypeSize = 1; break; case HDFConstants.DFNT_UCHAR8: datatypeClass = CLASS_CHAR; datatypeSize = 1; datatypeSign = SIGN_NONE; break; case HDFConstants.DFNT_INT8: datatypeClass = CLASS_INTEGER; datatypeSize = 1; break; case HDFConstants.DFNT_UINT8: datatypeClass = CLASS_INTEGER; datatypeSize = 1; datatypeSign = SIGN_NONE; break; case HDFConstants.DFNT_INT16: datatypeClass = CLASS_INTEGER; datatypeSize = 2; break; case HDFConstants.DFNT_UINT16: datatypeClass = CLASS_INTEGER; datatypeSize = 2; datatypeSign = SIGN_NONE; break; case HDFConstants.DFNT_INT32: datatypeClass = CLASS_INTEGER; datatypeSize = 4; break; case HDFConstants.DFNT_UINT32: datatypeClass = CLASS_INTEGER; datatypeSize = 4; datatypeSign = SIGN_NONE; break; case HDFConstants.DFNT_INT64: datatypeClass = CLASS_INTEGER; datatypeSize = 8; break; case HDFConstants.DFNT_UINT64: datatypeClass = CLASS_INTEGER; datatypeSize = 8; datatypeSign = SIGN_NONE; break; case HDFConstants.DFNT_FLOAT32: datatypeClass = CLASS_FLOAT; datatypeSize = 4; break; case HDFConstants.DFNT_FLOAT64: datatypeClass = CLASS_FLOAT; datatypeSize = 8; break; default: datatypeClass = CLASS_NO_CLASS; break; } } /** * Allocate a 1D array large enough to hold a multidimensional * array of 'datasize' elements of 'datatype' numbers. * * @param datatype the data type * @param datasize the size of the data array * @return an array of 'datasize' numbers of datatype. */ public static final Object allocateArray(int datatype, int datasize) throws OutOfMemoryError { if (datasize <= 0) { return null; } Object data = null; switch(datatype) { case HDFConstants.DFNT_CHAR: case HDFConstants.DFNT_UCHAR8: case HDFConstants.DFNT_UINT8: case HDFConstants.DFNT_INT8: data = new byte[datasize]; break; case HDFConstants.DFNT_INT16: case HDFConstants.DFNT_UINT16: data = new short[datasize]; break; case HDFConstants.DFNT_INT32: case HDFConstants.DFNT_UINT32: data = new int[datasize]; break; case HDFConstants.DFNT_INT64: case HDFConstants.DFNT_UINT64: data = new long[datasize]; break; case HDFConstants.DFNT_FLOAT32: data = new float[datasize]; break; case HDFConstants.DFNT_FLOAT64: data = new double[datasize]; break; default: data = null; break; } return data; } /* * (non-Javadoc) * @see ncsa.hdf.object.Datatype#getDatatypeDescription() */ @Override public String getDatatypeDescription() { return getDatatypeDescription(toNative()); } /** * Returns the short description of a given datatype. */ public static final String getDatatypeDescription(int datatype) { String description = "Unknown"; switch(datatype) { case HDFConstants.DFNT_CHAR: description = "8-bit character"; break; case HDFConstants.DFNT_UCHAR8: description = "8-bit unsigned character"; break; case HDFConstants.DFNT_UINT8: description = "8-bit unsigned integer"; break; case HDFConstants.DFNT_INT8: description = "8-bit integer"; break; case HDFConstants.DFNT_INT16: description = "16-bit integer"; break; case HDFConstants.DFNT_UINT16: description = "16-bit unsigned integer"; break; case HDFConstants.DFNT_INT32: description = "32-bit integer"; break; case HDFConstants.DFNT_UINT32: description = "32-bit unsigned integer"; break; case HDFConstants.DFNT_INT64: description = "64-bit integer"; break; case HDFConstants.DFNT_UINT64: description = "64-bit unsigned integer"; break; case HDFConstants.DFNT_FLOAT32: description = "32-bit floating-point"; break; case HDFConstants.DFNT_FLOAT64: description = "64-bit floating-point"; break; default: description = "Unknown"; break; } return description; } /* * (non-Javadoc) * @see ncsa.hdf.object.Datatype#isUnsigned() */ @Override public boolean isUnsigned() { return isUnsigned(toNative()); } /** * Checks if the datatype is an unsigned integer. *

    * @param datatype the data type. * @return True is the datatype is an unsigned integer; otherwise returns false. */ public static final boolean isUnsigned(int datatype) { boolean unsigned = false;; switch(datatype) { case HDFConstants.DFNT_UCHAR8: case HDFConstants.DFNT_UINT8: case HDFConstants.DFNT_UINT16: case HDFConstants.DFNT_UINT32: case HDFConstants.DFNT_UINT64: unsigned = true; break; default: unsigned = false; break; } return unsigned; } /* * (non-Javadoc) * @see ncsa.hdf.object.Datatype#toNative() */ @Override public int toNative() { int tid = -1; int tclass = getDatatypeClass(); int tsize = getDatatypeSize(); // figure the datatype switch (tclass) { case Datatype.CLASS_INTEGER: int tsign = getDatatypeSign(); if (tsize == 1) { if (tsign == Datatype.SIGN_NONE) { tid = HDFConstants.DFNT_UINT8; } else { tid = HDFConstants.DFNT_INT8; } } else if (tsize == 2) { if (tsign == Datatype.SIGN_NONE) { tid = HDFConstants.DFNT_UINT16; } else { tid = HDFConstants.DFNT_INT16; } } else if ((tsize == 4) || (tsize == NATIVE)) { if (tsign == Datatype.SIGN_NONE) { tid = HDFConstants.DFNT_UINT32; } else { tid = HDFConstants.DFNT_INT32; } } else if (tsize == 8) { if (tsign == Datatype.SIGN_NONE) { tid = HDFConstants.DFNT_UINT64; } else { tid = HDFConstants.DFNT_INT64; } } break; case Datatype.CLASS_FLOAT: if (tsize == Datatype.NATIVE) { tid = HDFConstants.DFNT_FLOAT; } else if (tsize == 4) { tid = HDFConstants.DFNT_FLOAT32; } else if (tsize == 8) { tid = HDFConstants.DFNT_FLOAT64; } break; case Datatype.CLASS_CHAR: int tsign2 = getDatatypeSign(); if (tsign2 == Datatype.SIGN_NONE) { tid = HDFConstants.DFNT_UCHAR; } else { tid = HDFConstants.DFNT_CHAR; } break; case Datatype.CLASS_STRING: tid = HDFConstants.DFNT_CHAR; break; } return tid; } /* * (non-Javadoc) * @see ncsa.hdf.object.Datatype#close(int) */ @Override public void close(int id) {;} //Implementing DataFormat public List getMetadata(int... attrPropList) throws Exception { throw new UnsupportedOperationException("getMetadata(int... attrPropList) is not supported"); } } hdf-java-2.11.0/ncsa/hdf/object/fits/0000755002344600011330000000000012441355002015445 5ustar byrnhdfhdf-java-2.11.0/ncsa/hdf/object/fits/Makefile.in0000644002344600011330000000265612326542262017533 0ustar byrnhdf#/**************************************************************************** #* Copyright by The HDF Group. * #* Copyright by the Board of Trustees of the University of Illinois. * #* All rights reserved. * #* * #* This file is part of HDF Java Products. The full HDF Java copyright * #* notice, including terms governing use, modification, and redistribution, * #* is contained in the file, COPYING. COPYING can be found at the root of * #* the source code distribution tree. You can also access it online at * #* http://www.hdfgroup.org/products/licenses.html. If you do not have * #* access to the file, you may request a copy from help@hdfgroup.org. * #****************************************************************************/ TOP = ../../../.. DIR = ncsa/hdf/object/fits SUBDIRS = NULL JAVAC = @JAVAC@ JAVADOC = @JAVADOC@ JAR = @JAR@ FIND = @FIND@ RM = @RM@ SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ CLASSPATH=@CLASSPATH@:$(TOP)/lib/fits.jar:$(TOP)/lib/netcdf.jar:$(TOP)/lib/slf4j-api-1.7.5.jar JH45INSTALLDIR=@JH45INST@ H45INC=@H45INC@ H4INC=@HDF4INC@ H5INC=@HDF5INC@ JAVA_SRCS = \ FitsDataset.java \ FitsDatatype.java \ FitsFile.java \ FitsGroup.java include $(TOP)/config/Rules.mk hdf-java-2.11.0/ncsa/hdf/object/fits/FitsFile.java0000644002344600011330000003073212326542262020032 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object.fits; import java.io.DataInput; import java.io.IOException; import java.io.InputStream; import java.io.RandomAccessFile; import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.MutableTreeNode; import javax.swing.tree.TreeNode; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.HObject; import nom.tam.fits.AsciiTableHDU; import nom.tam.fits.BasicHDU; import nom.tam.fits.BinaryTableHDU; import nom.tam.fits.Fits; import nom.tam.fits.ImageHDU; import nom.tam.fits.RandomGroupsHDU; import nom.tam.fits.TableHDU; /** * This class provides file level APIs. File access APIs include retrieving the * file hierarchy, opening and closing file, and writing file content to disk. *

    * @version 2.4 9/4/2007 * @author Peter X. Cao */ public class FitsFile extends FileFormat { private static final long serialVersionUID = -1965689032980605791L; private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(FitsFile.class); /** * The root node of the file hierearchy. */ private MutableTreeNode rootNode; /** the fits file */ private Fits fitsFile; private static boolean isFileOpen; /** * Constructs an empty FitsFile with read-only access. */ public FitsFile() { this(""); } /** * Constructs an FitsFile object of given file name with read-only access. */ public FitsFile(String pathname) { super(pathname); isReadOnly = true; isFileOpen = false; this.fid = -1; try { fitsFile = new Fits(fullFileName); } catch (Exception ex) { if(!pathname.isEmpty()) log.debug("Fits({}):", fullFileName, ex); } } /** * Checks if the given file format is a Fits file. *

    * @param fileformat the fileformat to be checked. * @return true if the given file is an Fits file; otherwise returns false. */ @Override public boolean isThisType(FileFormat fileformat) { return (fileformat instanceof FitsFile); } /** * Checks if a given file is a Fits file. *

    * @param filename the file to be checked. * @return true if the given file is an Fits file; otherwise returns false. */ @Override public boolean isThisType(String filename) { boolean is_fits = false; RandomAccessFile raf = null; try { raf = new RandomAccessFile(filename, "r"); } catch (Exception ex) { raf = null; } if (raf == null) { try { raf.close(); } catch (Exception ex) { log.debug("closing RandomAccessFile({}):", filename, ex); } return false; } byte[] header = new byte[80]; try { raf.read(header); } catch (Exception ex) { header = null; } if (header != null) { String front = new String(header, 0, 9); if (!front.startsWith("SIMPLE =")) { try { raf.close(); } catch (Exception ex) { log.debug("closing RandomAccessFile({}):", filename, ex); } return false; } String back = new String(header, 9, 70); back = back.trim(); if ((back.length() < 1) || (back.charAt(0) != 'T')) { try { raf.close(); } catch (Exception ex) { log.debug("closing RandomAccessFile({}):", filename, ex); } return false; } is_fits = true;; } try { raf.close(); } catch (Exception ex) { log.debug("closing RandomAccessFile({}):", filename, ex); } return is_fits; } /** * Creates a FitsFile instance with specified file name and READ access. *

    * @param pathname the full path name of the file. * Regardless of specified access, the FitsFile implementation uses * READ. * * @see ncsa.hdf.object.FileFormat@createInstance(java.lang.String, int) */ @Override public FileFormat createInstance(String filename, int access) throws Exception { return new FitsFile(filename); } // Implementing FileFormat @Override public int open() throws Exception { if (!isFileOpen) { isFileOpen = true; rootNode = loadTree(); } return 0; } private MutableTreeNode loadTree() { long[] oid = {0}; FitsGroup rootGroup = new FitsGroup( this, "/", null, // root node does not have a parent path null, // root node does not have a parent node oid); DefaultMutableTreeNode root = new DefaultMutableTreeNode(rootGroup) { private static final long serialVersionUID = 5556789624491863365L; @Override public boolean isLeaf() { return false; } }; if (fitsFile == null) { return root; } BasicHDU[] hdus = null; try { hdus = fitsFile.read(); } catch (Exception ex) { log.debug("fitsFile.read():", ex); } if (hdus == null) { return root; } int n = hdus.length; int nImageHDU = 0; int nTableHDU = 0; String hduName = null; BasicHDU hdu = null; for (int i=0; i * @param obj the object which the attribute is to be attached to. * @param attr the atribute to attach. * @param attrExisted The indicator if the given attribute exists. * @return true if successful and false otherwise. */ @Override public void writeAttribute(HObject obj, ncsa.hdf.object.Attribute attr, boolean attrExisted) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } /** * Returns the version of the library. */ @Override public String getLibversion() { String ver = "Fits Java (version 2.4)"; return ver; } // implementing FileFormat @Override public HObject get(String path) throws Exception { throw new UnsupportedOperationException("get() is not supported"); } } hdf-java-2.11.0/ncsa/hdf/object/fits/CMakeLists.txt0000644002344600011330000000276412350374322020223 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_NCSA_HDF_OBJECT_FITS Java) set (CMAKE_VERBOSE_MAKEFILE 1) INCLUDE_DIRECTORIES ( ${HDFJAVA_NCSA_HDF_OBJECT_FITS_SOURCE_DIR} ${HDFJAVA_NCSA_HDF_OBJECT_FITS_BINARY_DIR} ) set (HDFJAVA_NCSA_HDF_OBJECT_FITS_SRCS FitsDataset.java FitsDatatype.java FitsFile.java FitsGroup.java ) INCLUDE_DIRECTORIES (${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/${HDFJAVA_NCSA_FITS_LIB_CORENAME}.dir/ncsa/hdf/object/fits) file (WRITE ${PROJECT_BINARY_DIR}/Manifest.txt " " ) set (CMAKE_JAVA_INCLUDE_PATH "${${HDFJAVA_NCSA_OBJECT_LIB_TARGET}_JAR_FILE};${HDFJAVA_FITS_JAR};${HDFJAVA_LOGGING_JAR}") add_jar (${HDFJAVA_NCSA_FITS_LIB_TARGET} OUTPUT_DIR ${CMAKE_JAVA_TARGET_OUTPUT_DIR} MANIFEST ${PROJECT_BINARY_DIR}/Manifest.txt ${HDFJAVA_NCSA_HDF_OBJECT_FITS_SRCS}) install_jar (${HDFJAVA_NCSA_FITS_LIB_TARGET} ${HJAVA_INSTALL_JAR_DIR} libraries) get_target_property (${HDFJAVA_NCSA_FITS_LIB_TARGET}_JAR_FILE ${HDFJAVA_NCSA_FITS_LIB_TARGET} JAR_FILE) SET_GLOBAL_VARIABLE (HDFJAVA_HDFVIEWJAR_TO_EXPORT "${HDFJAVA_HDFVIEWJAR_TO_EXPORT};${${HDFJAVA_NCSA_FITS_LIB_TARGET}_JAR_FILE};${HDFJAVA_FITS_JAR}") SET_GLOBAL_VARIABLE (HDFVIEW_OPTIONS_INCLUDE_PATH "${HDFVIEW_OPTIONS_INCLUDE_PATH};${${HDFJAVA_NCSA_OBJECT_LIB_TARGET}_JAR_FILE};${HDFJAVA_FITS_JAR}") SET_GLOBAL_VARIABLE (HDFJAVA_OBJECT_JARS "${HDFJAVA_OBJECT_JARS};${${HDFJAVA_NCSA_FITS_LIB_TARGET}_JAR_FILE};${HDFJAVA_FITS_JAR}") add_dependencies (${HDFJAVA_NCSA_FITS_LIB_TARGET} ${HDFJAVA_NCSA_OBJECT_LIB_TARGET}) hdf-java-2.11.0/ncsa/hdf/object/fits/FitsGroup.java0000644002344600011330000001176612437621046020256 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object.fits; import java.util.List; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; /** * An H5Group represents HDF5 group, inheriting from Group. * Every HDF5 object has at least one name. An HDF5 group is used to store * a set of the names together in one place, i.e. a group. The general * structure of a group is similar to that of the UNIX file system in * that the group may contain references to other groups or data objects * just as the UNIX directory may contain subdirectories or files. *

    * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class FitsGroup extends Group { private static final long serialVersionUID = 4993155577664991838L; /** * The list of attributes of this data object. Members of the list are * instance of Attribute. */ private List attributeList; /** The default object ID for HDF5 objects */ private final static long[] DEFAULT_OID = {0}; /** * Constructs an HDF5 group with specific name, path, and parent. *

    * @param fileFormat the file which containing the group. * @param name the name of this group. * @param path the full path of this group. * @param parent the parent of this group. * @param oid the unique identifier of this data object. */ public FitsGroup( FileFormat fileFormat, String name, String path, Group parent, long[] theID) { super (fileFormat, name, path, parent, ((theID == null) ? DEFAULT_OID : theID)); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute () { return false; } // Implementing DataFormat public List getMetadata() throws Exception { if (!isRoot()) { return null; // there is only one group in the file: the root } if (attributeList != null) { return attributeList; } return attributeList; } /** * Creates a new attribute and attached to this dataset if attribute does * not exist. Otherwise, just update the value of the attribute. * *

    * @param info the atribute to attach */ public void writeMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /** * Deletes an attribute from this dataset. *

    * @param info the attribute to delete. */ public void removeMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#updateMetadata(java.lang.Object) */ public void updateMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } // Implementing DataFormat @Override public int open() { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /** close group access */ @Override public void close(int gid) { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /** * Creates a new group. * @param file the file which the group is added to. * @param name the name of the group to create. * @param pgroup the parent group of the new group. * @return the new group if successful. Otherwise returns null. */ public static FitsGroup create(String name, Group pgroup) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } //Implementing DataFormat public List getMetadata(int... attrPropList) throws Exception { throw new UnsupportedOperationException("getMetadata(int... attrPropList) is not supported"); } } hdf-java-2.11.0/ncsa/hdf/object/fits/FitsDatatype.java0000644002344600011330000001763412326542262020734 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object.fits; import java.util.List; import ncsa.hdf.object.Datatype; import nom.tam.fits.BasicHDU; /** * Datatype encapsulates information of a datatype. * Information includes the class, size, endian of a datatype. *

    * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class FitsDatatype extends Datatype { private static final long serialVersionUID = 6545936196104493765L; private int nativeType; /** * Create an Datatype with specified class, size, byte order and sign. * The following list a few example of how to create a Datatype. *

      *
    1. to create unsigned native integer
      * FitsDatatype type = new H5Dataype(CLASS_INTEGER, NATIVE, NATIVE, SIGN_NONE); *
    2. to create 16-bit signed integer with big endian
      * FitsDatatype type = new H5Dataype(CLASS_INTEGER, 2, ORDER_BE, NATIVE); *
    3. to create native float
      * FitsDatatype type = new H5Dataype(CLASS_FLOAT, NATIVE, NATIVE, -1); *
    4. to create 64-bit double
      * FitsDatatype type = new H5Dataype(CLASS_FLOAT, 8, NATIVE, -1); *
    *

    * @param tclass the class of the datatype. * @param tsize the size of the datatype in bytes. * @param torder the order of the datatype. * @param tsign the sign of the datatype. */ public FitsDatatype(int tclass, int tsize, int torder, int tsign) { super(tclass, tsize, torder, tsign); } /** * Create a Datatype with a given fits native datatype. *

    * @param theType the fits native datatype. */ public FitsDatatype(int theType) { super(-1); nativeType = theType; fromNative(0); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute () { return false; } /** * Allocate an one-dimensional array of byte, short, int, long, float, double, * or String to store data retrieved from an fits file based on the given * fits datatype and dimension sizes. *

    * @param dtype the fits datatype. * @param size the total size of the array. * @return the array object if successful and null otherwise. */ public static Object allocateArray(int dtype, int size) throws OutOfMemoryError { Object data = null; if (size <= 0 ) { return null; } switch (dtype) { case BasicHDU.BITPIX_BYTE: data = new byte[size]; break; case BasicHDU.BITPIX_SHORT: data = new short[size]; break; case BasicHDU.BITPIX_INT: data = new int[size]; break; case BasicHDU.BITPIX_LONG: data = new long[size]; break; case BasicHDU.BITPIX_FLOAT: data = new float[size]; break; case BasicHDU.BITPIX_DOUBLE: data = new double[size]; break; } return data; } /** * Translate fits datatype identifier into FitsDatatype. */ public void fromNative() { fromNative(nativeType); } /** * Translate fits datatype identifier into FitsDatatype. *

    * @param nativeID the fits native datatype. */ @Override public void fromNative(int dtype) { switch (dtype) { case BasicHDU.BITPIX_BYTE: datatypeClass = CLASS_INTEGER; datatypeSize = 1; break; case BasicHDU.BITPIX_SHORT: datatypeClass = CLASS_INTEGER; datatypeSize = 2; break; case BasicHDU.BITPIX_INT: datatypeClass = CLASS_INTEGER; datatypeSize = 4; break; case BasicHDU.BITPIX_LONG: datatypeClass = CLASS_INTEGER; datatypeSize = 8; break; case BasicHDU.BITPIX_FLOAT: datatypeClass = CLASS_FLOAT; datatypeSize = 4; break; case BasicHDU.BITPIX_DOUBLE: datatypeClass = CLASS_FLOAT; datatypeSize = 8; break; } } // implementing Datatype @Override public String getDatatypeDescription() { String description = "Unknown data type."; switch (nativeType) { case BasicHDU.BITPIX_BYTE: description = "8-bit integer"; break; case BasicHDU.BITPIX_SHORT: description = "16-bit integer"; break; case BasicHDU.BITPIX_INT: description = "32-bit integer"; break; case BasicHDU.BITPIX_LONG: description = "64-bit integer"; break; case BasicHDU.BITPIX_FLOAT: description = "32-bit float"; break; case BasicHDU.BITPIX_DOUBLE: description = "64-bit float"; break; default: if (datatypeClass==Datatype.CLASS_STRING) { description = "String"; } else if (datatypeClass==Datatype.CLASS_CHAR) { description = "Char"; } else if (datatypeClass==Datatype.CLASS_INTEGER) { description = "Integer"; } else if (datatypeClass==Datatype.CLASS_FLOAT) { description = "Float"; } break; } return description; } // implementing Datatype @Override public boolean isUnsigned() { return false; } // implementing Datatype @Override public int toNative() { if (datatypeClass == CLASS_INTEGER) { if (datatypeSize == 1) { nativeType = BasicHDU.BITPIX_BYTE; } else if (datatypeSize == 2) { nativeType = BasicHDU.BITPIX_SHORT; } else if (datatypeSize == 4) { nativeType = BasicHDU.BITPIX_INT; } else if (datatypeSize == 8) { nativeType = BasicHDU.BITPIX_LONG; } } else if (datatypeClass == CLASS_FLOAT) { if (datatypeSize == 4) { nativeType = BasicHDU.BITPIX_FLOAT; } else if (datatypeSize == 8) { nativeType = BasicHDU.BITPIX_DOUBLE; } } return nativeType; } /* * (non-Javadoc) * @see ncsa.hdf.object.Datatype#close(int) */ @Override public void close(int id) {;} //Implementing DataFormat public List getMetadata(int... attrPropList) throws Exception { throw new UnsupportedOperationException("getMetadata(int... attrPropList) is not supported"); } } hdf-java-2.11.0/ncsa/hdf/object/fits/FitsDataset.java0000644002344600011330000002730312437621046020541 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object.fits; import java.lang.reflect.Array; import java.util.Iterator; import java.util.List; import java.util.Vector; import ncsa.hdf.object.Attribute; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.HObject; import ncsa.hdf.object.ScalarDS; import nom.tam.fits.BasicHDU; import nom.tam.fits.Header; import nom.tam.fits.HeaderCard; /** * FitsDataset describes an multi-dimension array of HDF5 scalar or atomic data * types, such as byte, int, short, long, float, double and string, * and operations performed on the scalar dataset *

    * The library predefines a modest number of datatypes. For details, read * * The Datatype Interface (H5T) *

    * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class FitsDataset extends ScalarDS { private static final long serialVersionUID = 3944770379558335171L; private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(FitsDataset.class); /** * The list of attributes of this data object. Members of the list are * instance of Attribute. */ private List attributeList; private BasicHDU nativeDataset; /** * Constructs an FitsDataset object with specific netcdf variable. *

    * @param fileFormat the netcdf file. * @param ncDataset the netcdf variable. * @param oid the unique identifier for this dataset. */ public FitsDataset( FileFormat fileFormat, BasicHDU hdu, String dName, long[] oid) { super (fileFormat, dName, HObject.separator, oid); unsignedConverted = false; nativeDataset = hdu; } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute () { return false; } /* * (non-Javadoc) * @see ncsa.hdf.object.Dataset#copy(ncsa.hdf.object.Group, java.lang.String, long[], java.lang.Object) */ @Override public Dataset copy(Group pgroup, String dstName, long[] dims, Object buff) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /* * (non-Javadoc) * @see ncsa.hdf.object.Dataset#readBytes() */ @Override public byte[] readBytes() throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /* * (non-Javadoc) * @see ncsa.hdf.object.Dataset#read() */ @Override public Object read() throws Exception { Object theData = null; Object fitsData = null; if (nativeDataset == null) { return null; } try { fitsData = nativeDataset.getData().getData(); } catch (Exception ex) { throw new UnsupportedOperationException("This implementation only supports integer and float dataset. " + "It may not work for other datatypes. \n"+ex); } int n = get1DLength(fitsData); theData = FitsDatatype.allocateArray(nativeDataset.getBitPix(), n); to1Darray(fitsData, theData, 0); return theData; } /* * (non-Javadoc) * @see ncsa.hdf.object.Dataset#write(java.lang.Object) */ @Override public void write(Object buf) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#getMetadata() */ public List getMetadata() throws Exception { if (attributeList != null) { return attributeList; } if (nativeDataset == null) { return null; } Header header = nativeDataset.getHeader(); if (header == null) { return null; } attributeList = new Vector(); HeaderCard hc = null; Iterator it = header.iterator(); Attribute attr = null; Datatype dtype = new FitsDatatype(Datatype.CLASS_STRING, 80, 0, 0); long[] dims = {1}; String value = null; while (it.hasNext()) { value = ""; hc = (HeaderCard)it.next(); attr = new Attribute(hc.getKey(), dtype, dims); String tvalue = hc.getValue(); if (tvalue != null) { value += tvalue; } tvalue = hc.getComment(); if (tvalue != null) { value += " / " + tvalue; } attr.setValue(value); attributeList.add(attr); } return attributeList; } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#writeMetadata(java.lang.Object) */ public void writeMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#removeMetadata(java.lang.Object) */ public void removeMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /* * (non-Javadoc) * @see ncsa.hdf.object.DataFormat#updateMetadata(java.lang.Object) */ public void updateMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /* * (non-Javadoc) * @see ncsa.hdf.object.HObject#open() */ @Override public int open() { return -1;} /* * (non-Javadoc) * @see ncsa.hdf.object.HObject#close(int) */ @Override public void close(int did) {} /* * (non-Javadoc) * @see ncsa.hdf.object.Dataset#init() */ @Override public void init() { if (nativeDataset == null) { return; } if (rank>0) { return; // already called. Initialize only once } int[] axes= null; try { axes = nativeDataset.getAxes(); } catch (Exception ex) { log.debug("nativeDataset.getAxes():", ex); } if (axes == null) { return; } rank = axes.length; if (rank == 0) { // a scalar data point rank = 1; dims = new long[1]; dims[0] = 1; } else { dims = new long[rank]; for (int i=0; i 2) { selectedIndex[0] = 0; selectedIndex[1] = 1; selectedIndex[2] = 2; selectedDims[0] = dims[0]; selectedDims[1] = dims[1]; } if ((rank > 1) && isText) { selectedDims[1] = 1; } } /* * (non-Javadoc) * @see ncsa.hdf.object.ScalarDS#getPalette() */ @Override public byte[][] getPalette() { if (palette == null) { palette = readPalette(0); } return palette; } /* * (non-Javadoc) * @see ncsa.hdf.object.ScalarDS#readPalette(int) */ @Override public byte[][] readPalette(int idx) { return null; } /** * Creates a new dataset. * @param name the name of the dataset to create. * @param pgroup the parent group of the new dataset. * @param type the datatype of the dataset. * @param dims the dimension size of the dataset. * @param maxdims the max dimension size of the dataset. * @param chunk the chunk size of the dataset. * @param gzip the level of the gzip compression. * @param data the array of data values. * @return the new dataset if successful. Otherwise returns null. */ public static FitsDataset create( String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, Object data) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } /* * (non-Javadoc) * @see ncsa.hdf.object.ScalarDS#getPaletteRefs() */ @Override public byte[] getPaletteRefs() { return null; } /* * (non-Javadoc) * @see ncsa.hdf.object.Dataset#getDatatype() */ @Override public Datatype getDatatype() { if (datatype == null) { try {datatype = new FitsDatatype(nativeDataset.getBitPix());} catch (Exception ex) {} } return datatype; } /* * (non-Javadoc) * @see ncsa.hdf.object.HObject#setName(java.lang.String) */ @Override public void setName (String newName) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } private int get1DLength(Object data) throws Exception { if (!data.getClass().isArray()) { return 1; } int len = Array.getLength(data); int total = 0; for (int i = 0; i < len; i++) { total += get1DLength(Array.get(data, i)); } return total; } /** copy multi-dimension array of fits data into 1D array */ private int to1Darray(Object dataIn, Object dataOut, int offset) throws Exception { Class component = dataIn.getClass().getComponentType(); if (component == null) { return offset; } int size = Array.getLength(dataIn); if (!component.isArray()) { System.arraycopy(dataIn, 0, dataOut, offset, size); return offset+size; } for (int i = size - 1; i >= 0; i--) { offset = to1Darray(Array.get(dataIn, i), dataOut, offset); } return offset; } //Implementing DataFormat public List getMetadata(int... attrPropList) throws Exception { throw new UnsupportedOperationException("getMetadata(int... attrPropList) is not supported"); } } hdf-java-2.11.0/ncsa/hdf/object/nc2/0000755002344600011330000000000012441355002015162 5ustar byrnhdfhdf-java-2.11.0/ncsa/hdf/object/nc2/NC2Dataset.java0000644002344600011330000002452712437621046017740 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object.nc2; import java.util.List; import java.util.Vector; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.HObject; import ncsa.hdf.object.ScalarDS; import ucar.ma2.DataType; import ucar.nc2.Variable; /** * NC2Dataset describes an multi-dimension array of HDF5 scalar or atomic data * types, such as byte, int, short, long, float, double and string, and * operations performed on the scalar dataset *

    * The library predefines a modest number of datatypes. For details, read The Datatype Interface * (H5T) *

    * * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class NC2Dataset extends ScalarDS { private static final long serialVersionUID = -6031051694304457461L; /** * The list of attributes of this data object. Members of the list are * instance of Attribute. */ private List attributeList; private Variable nativeDataset; /** * Constructs an NC2Dataset object with specific netcdf variable. *

    * * @param fileFormat * the netcdf file. * @param ncDataset * the netcdf variable. * @param oid * the unique identifier for this dataset. */ public NC2Dataset(FileFormat fileFormat, Variable ncDataset, long[] oid) { super(fileFormat, ncDataset.getName(), HObject.separator, oid); unsignedConverted = false; nativeDataset = ncDataset; } /* * (non-Javadoc) * * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute() { return false; } // Implementing Dataset @Override public Dataset copy(Group pgroup, String dstName, long[] dims, Object buff) throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } // implementing Dataset @Override public byte[] readBytes() throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } // Implementing DataFormat @Override public Object read() throws Exception { Object theData = null; if (nativeDataset == null) { return null; } int[] origin = new int[rank]; int[] shape = new int[rank]; for (int i = 0; i < rank; i++) { origin[i] = (int) startDims[i]; shape[i] = (int) selectedDims[i]; } ucar.ma2.Array ncArray = null; try { ncArray = nativeDataset.read(origin, shape); } catch (Exception ex) { ncArray = nativeDataset.read(); } Object oneD = ncArray.copyTo1DJavaArray(); if (oneD == null) { return null; } if (oneD.getClass().getName().startsWith("[C")) { char[] charA = (char[]) oneD; int nCols = (int) selectedDims[selectedIndex[1]]; int nRows = (int) selectedDims[selectedIndex[0]]; String[] strA = new String[nRows]; String allStr = new String(charA); int indx0 = 0; for (int i = 0; i < nRows; i++) { indx0 = i * nCols; strA[i] = allStr.substring(indx0, indx0 + nCols); } theData = strA; } else { theData = oneD; } return theData; } // Implementing DataFormat @Override public void write(Object buf) throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } // Implementing DataFormat public List getMetadata() throws Exception { if (attributeList != null) { return attributeList; } if (nativeDataset == null) { return (attributeList = null); } List ncAttrList = nativeDataset.getAttributes(); if (ncAttrList == null) { return (attributeList = null); } int n = ncAttrList.size(); attributeList = new Vector(n); ucar.nc2.Attribute ncAttr = null; for (int i = 0; i < n; i++) { ncAttr = (ucar.nc2.Attribute) ncAttrList.get(i); attributeList.add(NC2File.convertAttribute(ncAttr)); } return attributeList; } // implementing DataFormat public void writeMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } // implementing DataFormat public void removeMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } // implementing DataFormat public void updateMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } // Implementing HObject @Override public int open() { return -1; } // Implementing HObject @Override public void close(int did) { } /** * Retrieve and initialize dimensions and member information. */ @Override public void init() { if (nativeDataset == null) { return; } if (rank > 0) { return; // already called. Initialize only once } isText = nativeDataset.getDataType().equals(DataType.STRING); boolean isChar = nativeDataset.getDataType().equals(DataType.CHAR); rank = nativeDataset.getRank(); if (rank == 0) { // a scalar data point rank = 1; dims = new long[1]; dims[0] = 1; } else { dims = new long[rank]; for (int i = 0; i < rank; i++) { dims[i] = (nativeDataset.getDimension(i).getLength()); } } startDims = new long[rank]; selectedDims = new long[rank]; for (int i = 0; i < rank; i++) { startDims[i] = 0; selectedDims[i] = 1; } if (rank == 1) { selectedIndex[0] = 0; selectedDims[0] = dims[0]; } else if (rank == 2) { selectedIndex[0] = 0; selectedIndex[1] = 1; selectedDims[0] = dims[0]; selectedDims[1] = dims[1]; } else if (rank > 2) { selectedIndex[0] = 0; selectedIndex[1] = 1; selectedIndex[2] = 2; selectedDims[0] = dims[0]; selectedDims[1] = dims[1]; } if ((rank > 1) && isText) { selectedDims[1] = 1; } } // Implementing ScalarDS @Override public byte[][] getPalette() { if (palette == null) { palette = readPalette(0); } return palette; } /** * read specific image palette from file. * * @param idx * the palette index to read * @return the palette data into two-dimension byte array, byte[3][256] */ @Override public byte[][] readPalette(int idx) { return null; } /** * Creates a new dataset. * * @param name * the name of the dataset to create. * @param pgroup * the parent group of the new dataset. * @param type * the datatype of the dataset. * @param dims * the dimension size of the dataset. * @param maxdims * the max dimension size of the dataset. * @param chunk * the chunk size of the dataset. * @param gzip * the level of the gzip compression. * @param data * the array of data values. * @return the new dataset if successful. Otherwise returns null. */ public static NC2Dataset create(String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, Object data) throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } /** * returns the byte array of palette refs. returns null if there is no * palette attribute attached to this dataset. */ @Override public byte[] getPaletteRefs() { return null; } // implementing ScalarDS @Override public Datatype getDatatype() { if (datatype == null) { datatype = new NC2Datatype(nativeDataset.getDataType()); } return datatype; } /** * Sets the name of the data object. *

    * * @param newName * the new name of the object. */ @Override public void setName(String newName) throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } //Implementing DataFormat public List getMetadata(int... attrPropList) throws Exception { throw new UnsupportedOperationException("getMetadata(int... attrPropList) is not supported"); } } hdf-java-2.11.0/ncsa/hdf/object/nc2/NC2Datatype.java0000644002344600011330000001621412326542262020117 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object.nc2; import java.util.List; import ncsa.hdf.object.Datatype; import ucar.ma2.DataType; /** * Datatype encapsulates information of a datatype. Information includes the * class, size, endian of a datatype. *

    * * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class NC2Datatype extends Datatype { private static final long serialVersionUID = 5399364372073889764L; DataType nativeType = null; /** * Create an Datatype with specified class, size, byte order and sign. The * following list a few example of how to create a Datatype. *

      *
    1. to create unsigned native integer
      * NC2Datatype type = new H5Dataype(CLASS_INTEGER, NATIVE, NATIVE, * SIGN_NONE); *
    2. to create 16-bit signed integer with big endian
      * NC2Datatype type = new H5Dataype(CLASS_INTEGER, 2, ORDER_BE, NATIVE); *
    3. to create native float
      * NC2Datatype type = new H5Dataype(CLASS_FLOAT, NATIVE, NATIVE, -1); *
    4. to create 64-bit double
      * NC2Datatype type = new H5Dataype(CLASS_FLOAT, 8, NATIVE, -1); *
    *

    * * @param tclass * the class of the datatype. * @param tsize * the size of the datatype in bytes. * @param torder * the order of the datatype. * @param tsign * the sign of the datatype. */ public NC2Datatype(int tclass, int tsize, int torder, int tsign) { super(tclass, tsize, torder, tsign); } /* * (non-Javadoc) * * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute() { return false; } /** * Create a Datatype with a given Netcdf native datatype. *

    * * @param theType * the netcdf native datatype. */ public NC2Datatype(DataType theType) { super(-1); nativeType = theType; fromNative(0); } /** * Allocate an one-dimensional array of byte, short, int, long, float, * double, or String to store data retrieved from an Netcdf file based on * the given Netcdf datatype and dimension sizes. *

    * * @param dtype * the netdcdf datatype. * @param size * the total size of the array. * @return the array object if successful and null otherwise. */ public static Object allocateArray(DataType dtype, int size) throws OutOfMemoryError { Object data = null; if ((size <= 0) || (dtype == null)) { return null; } if (dtype.equals(DataType.BYTE)) { data = new byte[size]; } else if (dtype.equals(DataType.SHORT)) { data = new short[size]; } else if (dtype.equals(DataType.INT)) { data = new int[size]; } else if (dtype.equals(DataType.LONG)) { data = new long[size]; } else if (dtype.equals(DataType.FLOAT)) { data = new float[size]; } else if (dtype.equals(DataType.DOUBLE)) { data = new double[size]; } else if (dtype.equals(DataType.STRING)) { data = new String[size]; } return data; } /** * Translate Netcdf datatype identifier into NC2Datatype. *

    * * @param nativeID * the netcdf native datatype. */ @Override public void fromNative(int tid) { if (nativeType == null) { return; } datatypeOrder = NATIVE; if (nativeType.equals(DataType.BYTE)) { datatypeClass = CLASS_INTEGER; datatypeSize = 1; } else if (nativeType.equals(DataType.SHORT)) { datatypeClass = CLASS_INTEGER; datatypeSize = 2; } else if (nativeType.equals(DataType.INT)) { datatypeClass = CLASS_INTEGER; datatypeSize = 4; } else if (nativeType.equals(DataType.LONG)) { datatypeClass = CLASS_INTEGER; datatypeSize = 8; } else if (nativeType.equals(DataType.FLOAT)) { datatypeClass = CLASS_FLOAT; datatypeSize = 4; } else if (nativeType.equals(DataType.DOUBLE)) { datatypeClass = CLASS_FLOAT; datatypeSize = 8; } else if (nativeType.equals(DataType.STRING)) { datatypeClass = CLASS_STRING; datatypeSize = 80; // default length. need to figure out the actual // length } } // implementing Datatype @Override public String getDatatypeDescription() { if (nativeType == null) { return "Unknown data type."; } return nativeType.toString(); } // implementing Datatype @Override public boolean isUnsigned() { return false; } // implementing Datatype @Override public int toNative() { if (datatypeClass == CLASS_INTEGER) { if (datatypeSize == 1) { nativeType = DataType.BYTE; } else if (datatypeSize == 2) { nativeType = DataType.SHORT; } else if (datatypeSize == 4) { nativeType = DataType.INT; } else if (datatypeSize == 8) { nativeType = DataType.LONG; } } else if (datatypeClass == CLASS_FLOAT) { if (datatypeSize == 4) { nativeType = DataType.FLOAT; } else if (datatypeSize == 8) { nativeType = DataType.DOUBLE; } } else if (datatypeClass == CLASS_STRING) { nativeType = DataType.STRING; } return -1; } /* * (non-Javadoc) * * @see ncsa.hdf.object.Datatype#close(int) */ @Override public void close(int id) { ; } //Implementing DataFormat public List getMetadata(int... attrPropList) throws Exception { throw new UnsupportedOperationException("getMetadata(int... attrPropList) is not supported"); } } hdf-java-2.11.0/ncsa/hdf/object/nc2/NC2File.java0000644002344600011330000002657212326542262017233 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object.nc2; import java.io.IOException; import java.io.RandomAccessFile; import java.util.Iterator; import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.MutableTreeNode; import javax.swing.tree.TreeNode; import ncsa.hdf.object.Dataset; import ncsa.hdf.object.Datatype; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ncsa.hdf.object.HObject; import ucar.nc2.NetcdfFile; import ucar.nc2.Variable; /** * This class provides file level APIs. File access APIs include retrieving the * file hierarchy, opening and closing file, and writing file content to disk. *

    * * @version 2.4 9/4/2007 * @author Peter X. Cao */ public class NC2File extends FileFormat { /** * */ private static final long serialVersionUID = 6941235662108358451L; // private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(NC2File.class); /** * file identifier for the open file. */ private int fid; /** * the file access flag. */ private int flag; /** * The root node of the file hierearchy. */ private MutableTreeNode rootNode; /** the netcdf file */ private NetcdfFile ncFile; private static boolean isFileOpen; /** * Constructs an empty NC2File with read-only access. */ public NC2File() { this(""); } /** * Constructs an NC2File object of given file name with read-only access. */ public NC2File(String pathname) { super(pathname); isReadOnly = true; isFileOpen = false; this.fid = -1; try { ncFile = new NetcdfFile(fullFileName); } catch (Exception ex) { // if(!pathname.isEmpty()) // log.debug("constuctor {}:", fullFileName, ex); } } /** * Checks if the given file format is a NetCDF file. *

    * * @param fileformat * the fileformat to be checked. * @return true if the given file is an NetCDF file; otherwise returns * false. */ @Override public boolean isThisType(FileFormat fileformat) { return (fileformat instanceof NC2File); } /** * Checks if a given file is a NetCDF file. *

    * * @param filename * the file to be checked. * @return true if the given file is an NetCDF file; otherwise returns * false. */ @Override public boolean isThisType(String filename) { boolean is_netcdf = false; RandomAccessFile raf = null; try { raf = new RandomAccessFile(filename, "r"); } catch (Exception ex) { raf = null; } if (raf == null) { try { raf.close(); } catch (Exception ex) { // log.debug("raf close:", ex); } return false; } byte[] header = new byte[4]; try { raf.read(header); } catch (Exception ex) { header = null; } if (header != null) { if ( // netCDF ((header[0] == 67) && (header[1] == 68) && (header[2] == 70) && (header[3] < 4))) { is_netcdf = true; } else { is_netcdf = false; } } try { raf.close(); } catch (Exception ex) { // log.debug("raf close:", ex); } return is_netcdf; } /** * Creates an NC2File instance with specified file name and READ access. *

    * Regardless of specified access, the NC2File implementation uses READ. * * @see ncsa.hdf.object.FileFormat#createInstance(java.lang.String, int) */ @Override public FileFormat createInstance(String filename, int access) throws Exception { return new NC2File(filename); } // Implementing FileFormat @Override public int open() throws Exception { if (!isFileOpen) { isFileOpen = true; rootNode = loadTree(); } return 0; } private MutableTreeNode loadTree() { long[] oid = { 0 }; NC2Group rootGroup = new NC2Group( this, "/", null, // root node does not have a parent path null, // root node does not have a parent node oid); DefaultMutableTreeNode root = new DefaultMutableTreeNode(rootGroup) { /** * */ private static final long serialVersionUID = -9190644912409119072L; @Override public boolean isLeaf() { return false; } }; if (ncFile == null) { return root; } Iterator it = ncFile.getVariables().iterator(); Variable ncDataset = null; DefaultMutableTreeNode node = null; NC2Dataset d = null; while (it.hasNext()) { ncDataset = (Variable) it.next(); oid[0] = ncDataset.hashCode(); d = new NC2Dataset(this, ncDataset, oid); node = new DefaultMutableTreeNode(d); root.add(node); rootGroup.addToMemberList(d); } return root; } // Implementing FileFormat @Override public void close() throws IOException { if (ncFile != null) { ncFile.close(); } } // Implementing FileFormat @Override public TreeNode getRootNode() { return rootNode; } public NetcdfFile getNetcdfFile() { return ncFile; } // implementing FileFormat @Override public Group createGroup(String name, Group pgroup) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } // implementing FileFormat @Override public Datatype createDatatype(int tclass, int tsize, int torder, int tsign) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } @Override public Datatype createDatatype(int tclass, int tsize, int torder, int tsign, String name) throws Exception { throw new UnsupportedOperationException("Unsupported operation."); } // implementing FileFormat @Override public Dataset createScalarDS(String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, Object fillValue, Object data) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } // implementing FileFormat @Override public Dataset createImage(String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, int ncomp, int intelace, Object data) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } // implementing FileFormat @Override public void delete(HObject obj) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } // implementing FileFormat @Override public TreeNode copy(HObject srcObj, Group dstGroup, String dstName) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } /** * copy a dataset into another group. * * @param srcDataset * the dataset to be copied. * @param pgroup * teh group where the dataset is copied to. * @return the treeNode containing the new copy of the dataset. */ private TreeNode copyDataset(Dataset srcDataset, NC2Group pgroup) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } private TreeNode copyGroup(NC2Group srcGroup, NC2Group pgroup) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } /** * Copy attributes of the source object to the destination object. */ public void copyAttributes(HObject src, HObject dst) { // not supported throw new UnsupportedOperationException("Unsupported operation."); } /** * Copy attributes of the source object to the destination object. */ public void copyAttributes(int src_id, int dst_id) { // not supported throw new UnsupportedOperationException("Unsupported operation."); } /** * Creates a new attribute and attached to the object if attribute does not * exist. Otherwise, just update the value of the attribute. * *

    * * @param obj * the object which the attribute is to be attached to. * @param attr * the atribute to attach. * @param attrExisted * The indicator if the given attribute exists. * @return true if successful and false otherwise. */ @Override public void writeAttribute(HObject obj, ncsa.hdf.object.Attribute attr, boolean attrExisted) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation."); } /** converts a ucar.nc2.Attribute into an ncsa.hdf.object.Attribute */ public static ncsa.hdf.object.Attribute convertAttribute( ucar.nc2.Attribute netcdfAttr) { ncsa.hdf.object.Attribute ncsaAttr = null; if (netcdfAttr == null) { return null; } String attrName = netcdfAttr.getName(); long[] attrDims = { netcdfAttr.getLength() }; Datatype attrType = new NC2Datatype(netcdfAttr.getDataType()); ncsaAttr = new ncsa.hdf.object.Attribute(attrName, attrType, attrDims); ncsaAttr.setValue(netcdfAttr.getValues()); return ncsaAttr; } /** * Returns the version of the library. */ @Override public String getLibversion() { String ver = "NetCDF Java (version 2.4)"; return ver; } // implementing FileFormat @Override public HObject get(String path) throws Exception { throw new UnsupportedOperationException("get() is not supported"); } } hdf-java-2.11.0/ncsa/hdf/object/nc2/Makefile.in0000644002344600011330000000261212326542262017240 0ustar byrnhdf#/**************************************************************************** #* Copyright by The HDF Group. * #* Copyright by the Board of Trustees of the University of Illinois. * #* All rights reserved. * #* * #* This file is part of HDF Java Products. The full HDF Java copyright * #* notice, including terms governing use, modification, and redistribution, * #* is contained in the file, COPYING. COPYING can be found at the root of * #* the source code distribution tree. You can also access it online at * #* http://www.hdfgroup.org/products/licenses.html. If you do not have * #* access to the file, you may request a copy from help@hdfgroup.org. * #****************************************************************************/ TOP = ../../../.. DIR = ncsa/hdf/object/nc2 SUBDIRS = NULL JAVAC = @JAVAC@ JAVADOC = @JAVADOC@ JAR = @JAR@ FIND = @FIND@ RM = @RM@ SLEXT=@SLEXT@ JSLEXT=@JSLEXT@ CLASSPATH=@CLASSPATH@:$(TOP)/lib/fits.jar:$(TOP)/lib/netcdf.jar JH45INSTALLDIR=@JH45INST@ H45INC=@H45INC@ H4INC=@HDF4INC@ H5INC=@HDF5INC@ JAVA_SRCS = \ NC2Dataset.java \ NC2Datatype.java \ NC2File.java \ NC2Group.java include $(TOP)/config/Rules.mk hdf-java-2.11.0/ncsa/hdf/object/nc2/CMakeLists.txt0000644002344600011330000000272312350374322017733 0ustar byrnhdfcmake_minimum_required (VERSION 2.8.10) PROJECT (HDFJAVA_NCSA_HDF_OBJECT_NC2 Java) set (CMAKE_VERBOSE_MAKEFILE 1) INCLUDE_DIRECTORIES ( ${HDFJAVA_NCSA_HDF_OBJECT_NC2_SOURCE_DIR} ${HDFJAVA_NCSA_HDF_OBJECT_NC2_BINARY_DIR} ) set (HDFJAVA_NCSA_HDF_OBJECT_NC2_SRCS NC2Dataset.java NC2Datatype.java NC2File.java NC2Group.java ) INCLUDE_DIRECTORIES (${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/${HDFJAVA_NCSA_NC2_LIB_CORENAME}.dir/ncsa/hdf/object/nc2) file (WRITE ${PROJECT_BINARY_DIR}/Manifest.txt " " ) set (CMAKE_JAVA_INCLUDE_PATH "${${HDFJAVA_NCSA_OBJECT_LIB_TARGET}_JAR_FILE};${HDFJAVA_NETCDF_JAR}") add_jar (${HDFJAVA_NCSA_NC2_LIB_TARGET} OUTPUT_DIR ${CMAKE_JAVA_TARGET_OUTPUT_DIR} MANIFEST ${PROJECT_BINARY_DIR}/Manifest.txt ${HDFJAVA_NCSA_HDF_OBJECT_NC2_SRCS}) install_jar (${HDFJAVA_NCSA_NC2_LIB_TARGET} ${HJAVA_INSTALL_JAR_DIR} libraries) get_target_property (${HDFJAVA_NCSA_NC2_LIB_TARGET}_JAR_FILE ${HDFJAVA_NCSA_NC2_LIB_TARGET} JAR_FILE) SET_GLOBAL_VARIABLE (HDFJAVA_HDFVIEWJAR_TO_EXPORT "${HDFJAVA_HDFVIEWJAR_TO_EXPORT};${${HDFJAVA_NCSA_NC2_LIB_TARGET}_JAR_FILE};${HDFJAVA_NETCDF_JAR}") SET_GLOBAL_VARIABLE (HDFVIEW_OPTIONS_INCLUDE_PATH "${HDFVIEW_OPTIONS_INCLUDE_PATH};${${HDFJAVA_NCSA_OBJECT_LIB_TARGET}_JAR_FILE};${HDFJAVA_NETCDF_JAR}") SET_GLOBAL_VARIABLE (HDFJAVA_OBJECT_JARS "${HDFJAVA_OBJECT_JARS};${${HDFJAVA_NCSA_NC2_LIB_TARGET}_JAR_FILE};${HDFJAVA_NETCDF_JAR}") add_dependencies (${HDFJAVA_NCSA_NC2_LIB_TARGET} ${HDFJAVA_NCSA_OBJECT_LIB_TARGET}) hdf-java-2.11.0/ncsa/hdf/object/nc2/NC2Group.java0000644002344600011330000001342412437621046017441 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object.nc2; import java.util.List; import java.util.Vector; import ncsa.hdf.object.FileFormat; import ncsa.hdf.object.Group; import ucar.nc2.NetcdfFile; /** * An H5Group represents HDF5 group, inheriting from Group. Every HDF5 object * has at least one name. An HDF5 group is used to store a set of the names * together in one place, i.e. a group. The general structure of a group is * similar to that of the UNIX file system in that the group may contain * references to other groups or data objects just as the UNIX directory may * contain subdirectories or files. *

    * * @version 1.1 9/4/2007 * @author Peter X. Cao */ public class NC2Group extends Group { private static final long serialVersionUID = -1261533010442193447L; /** * The list of attributes of this data object. Members of the list are * instance of Attribute. */ private List attributeList; /** The default object ID for HDF5 objects */ private final static long[] DEFAULT_OID = { 0 }; /** * Constructs an HDF5 group with specific name, path, and parent. *

    * * @param fileFormat * the file which containing the group. * @param name * the name of this group. * @param path * the full path of this group. * @param parent * the parent of this group. * @param oid * the unique identifier of this data object. */ public NC2Group(FileFormat fileFormat, String name, String path, Group parent, long[] theID) { super(fileFormat, name, path, parent, ((theID == null) ? DEFAULT_OID : theID)); } /* * (non-Javadoc) * * @see ncsa.hdf.object.DataFormat#hasAttribute() */ public boolean hasAttribute() { return false; } // Implementing DataFormat public List getMetadata() throws Exception { if (!isRoot()) { return null; } if (attributeList != null) { return attributeList; } NC2File theFile = (NC2File) getFileFormat(); NetcdfFile ncFile = theFile.getNetcdfFile(); List netcdfAttributeList = ncFile.getGlobalAttributes(); if (netcdfAttributeList == null) { return null; } int n = netcdfAttributeList.size(); attributeList = new Vector(n); ucar.nc2.Attribute netcdfAttr = null; for (int i = 0; i < n; i++) { netcdfAttr = (ucar.nc2.Attribute) netcdfAttributeList.get(i); attributeList.add(NC2File.convertAttribute(netcdfAttr)); } return attributeList; } /** * Creates a new attribute and attached to this dataset if attribute does * not exist. Otherwise, just update the value of the attribute. * *

    * * @param info * the atribute to attach */ public void writeMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } /** * Deletes an attribute from this dataset. *

    * * @param info * the attribute to delete. */ public void removeMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } // implementing DataFormat public void updateMetadata(Object info) throws Exception { // not supported throw new UnsupportedOperationException("Unsupported operation for NetCDF."); } // Implementing DataFormat @Override public int open() { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } /** close group access */ @Override public void close(int gid) { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } /** * Creates a new group. * * @param file * the file which the group is added to. * @param name * the name of the group to create. * @param pgroup * the parent group of the new group. * @return the new group if successful. Otherwise returns null. */ public static NC2Group create(String name, Group pgroup) throws Exception { // not supported throw new UnsupportedOperationException( "Unsupported operation for NetCDF."); } //Implementing DataFormat public List getMetadata(int... attrPropList) throws Exception { throw new UnsupportedOperationException("getMetadata(int... attrPropList) is not supported"); } } hdf-java-2.11.0/ncsa/hdf/object/FileFormat.java0000644002344600011330000030663112372724053017415 0ustar byrnhdf/***************************************************************************** * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of the HDF Java Products distribution. * * The full copyright notice, including terms governing use, modification, * * and redistribution, is contained in the files COPYING and Copyright.html. * * COPYING can be found at the root of the source code distribution tree. * * Or, see http://hdfgroup.org/products/hdf-java/doc/Copyright.html. * * If you do not have access to either file, you may request a copy from * * help@hdfgroup.org. * ****************************************************************************/ package ncsa.hdf.object; import java.io.File; import java.util.Enumeration; import java.util.Hashtable; import java.util.Map; import java.util.StringTokenizer; import java.util.Vector; import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.MutableTreeNode; import javax.swing.tree.TreeNode; /** * FileFormat defines general interfaces for working with files whose data is * organized according to a supported format. *

    * FileFormat is a pluggable component. New implementing classes of FileFormat * can be added to the list of supported file formats. Current implementing * classes include H5File and H4File. By default, H5File and H4File are added to * the list of supported file formats maintained by the static FileFormat * instance. * *

     *                                    FileFormat
     *                       _________________|_________________
     *                       |                |                |
     *                     H5File          H4File           Other...
     * 
    *

    * A FileFormat instance may exist without being associated with a given file. A * FileFormat instance may be associated with a file that is not open for * access. Most typically, a FileFormat instance is used to open the associated * file and perform operations such as retrieval and manipulation (if the file * access is read-write) of the file structure and objects. * * @author Peter X. Cao * @version 2.4 9/4/2007 */ public abstract class FileFormat extends File { /*************************************************************************** * File access flags used in calls to createInstance( String, flag ); **************************************************************************/ /** * */ private static final long serialVersionUID = -4700692313888420796L; private final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(FileFormat.class); /** * File first time access flag for open file. With this access flag, added * to the regular value, indicates this file has no existing state. * */ public static final int OPEN_NEW = 1; /** * File access flag for read-only permission. With this access flag, * modifications to the file will not be allowed. * * @see #createInstance(String, int ) */ public static final int READ = 2; /** * File access flag for read/write permission. With this access flag, * modifications to the file will be allowed. Behavior if the file does not * exist or cannot be opened for read/write access depends on the * implementing class. * * @see #createInstance(String, int ) */ public static final int WRITE = 4; /** * File access flag for creating/truncating with read-write permission. If * the file already exists, it will be truncated when opened. With this * access flag, modifications to the file will be allowed. Behavior if file * can't be created, or if it exists but can't be opened for read/write * access, depends on the implementing class. * * @see #createInstance(String, int ) */ public static final int CREATE = 8; /*************************************************************************** * File creation flags used in calls to createFile( String, flag ); **************************************************************************/ /** * Flag for creating/truncating a file. If the file already exists, it will * be truncated when opened. If the file does not exist, it will be created. * Modifications to the file will be allowed. * * @see #createFile(String, int ) */ public static final int FILE_CREATE_DELETE = 10; /** * Flag for creating/opening a file. If the file already exists, it will be * opened without changing the existing contents. If the file does not * exist, it will be created. Modifications to the file will be allowed. * * @see #createFile(String, int ) */ public static final int FILE_CREATE_OPEN = 20; /** * Flag to indicate if the earliest version of library is used when creating * a new file. * * @see #createFile(String, int ) */ public static final int FILE_CREATE_EARLY_LIB = 40; /*************************************************************************** * Keys and fields related to supported file formats. **************************************************************************/ /** Key for HDF4 file format. */ public static final String FILE_TYPE_HDF4 = "HDF4"; /** Key for HDF5 file format. */ public static final String FILE_TYPE_HDF5 = "HDF5"; /** * A separator that separates file name and object name. * * @see ncsa.hdf.object.FileFormat#getHObject(String) */ public static final String FILE_OBJ_SEP = "://"; /** * FileList keeps a list of supported FileFormats. This list can be updated * and queried at runtime. * * @see #addFileFormat(String,FileFormat) * @see #getFileFormat(String) * @see #getFileFormatKeys() * @see #getFileFormats() * @see #removeFileFormat(String) */ private static final Map FileList = new Hashtable(10); /** * A list of file extensions for the supported file formats. This list of * file extensions is not integrated with the supported file formats kept in * FileList, but is provided as a convenience for applications who may * choose to process only those files with recognized extensions. */ private static String extensions = "hdf, h4, hdf5, h5, nc, fits"; /*************************************************************************** * Sizing information and class metadata **************************************************************************/ /** * Current Java applications, such as HDFView, cannot handle files with * large numbers of objects due to JVM memory limitations. For example, * 1,000,000 objects is too many. max_members is defined so that * applications such as HDFView will load up to max_members objects * starting with the start_members -th object. The implementing class * has freedom in its interpretation of how to "count" objects in the file. */ private int max_members = 10000; // 10,000 // by // default private int start_members = 0; // 0 // by // default /** * File identifier. -1 indicates the file is not open. */ protected int fid = -1; /** * The absolute pathname (path+name) of the file. */ protected String fullFileName = null; /** * Flag indicating if the file access is read-only. */ protected boolean isReadOnly = false; /*************************************************************************** * Class initialization method **************************************************************************/ /** * By default, HDF4 and HDF5 file formats are added to the supported formats * list. */ static { // add HDF4 to default modules if (FileFormat.getFileFormat(FILE_TYPE_HDF4) == null) { try { Class fileclass = Class.forName("ncsa.hdf.object.h4.H4File"); FileFormat fileformat = (FileFormat) fileclass.newInstance(); if (fileformat != null) { FileFormat.addFileFormat(FILE_TYPE_HDF4, fileformat); log.debug("FILE_TYPE_HDF4 file format added"); } } catch (Throwable err) { log.debug("FILE_TYPE_HDF4 instance failure: ", err); } } // add HDF5 to default modules if (FileFormat.getFileFormat(FILE_TYPE_HDF5) == null) { try { Class fileclass = Class.forName("ncsa.hdf.object.h5.H5File"); FileFormat fileformat = (FileFormat) fileclass.newInstance(); if (fileformat != null) { FileFormat.addFileFormat(FILE_TYPE_HDF5, fileformat); log.debug("FILE_TYPE_HDF5 file format added"); } } catch (Throwable err) { log.debug("FILE_TYPE_HDF5 instance failure: ", err); } } // add NetCDF to default modules if (FileFormat.getFileFormat("NetCDF") == null) { try { Class fileclass = Class.forName("ncsa.hdf.object.nc2.NC2File"); FileFormat fileformat = (FileFormat) fileclass.newInstance(); if (fileformat != null) { FileFormat.addFileFormat("NetCDF", fileformat); log.debug("NetCDF file format added"); } } catch (Throwable err) { log.debug("NetCDF instance failure: ", err); } } // add Fits to default modules if (FileFormat.getFileFormat("Fits") == null) { try { Class fileclass = Class.forName("ncsa.hdf.object.fits.FitsFile"); FileFormat fileformat = (FileFormat) fileclass.newInstance(); if (fileformat != null) { FileFormat.addFileFormat("Fits", fileformat); log.debug("Fits file format added"); } } catch (Throwable err) { log.debug("FITS instance failure: ", err); } } } /*************************************************************************** * Constructor **************************************************************************/ /** * Creates a new FileFormat instance with the given filename. *

    * The filename in this method call is equivalent to the pathname in the * java.io.File class. The filename is converted into an abstract pathname * by the File class. *

    * Typically this constructor is not called directly, but is called by a * constructor of an implementing class. Applications most frequently use * the createFile(), createInstance(), or getInstance() * methods to generate a FileFormat instance with an associated filename. *

    * The file is not opened by this call. The read-only flag is set to false * by this call. * * @param filename * The filename; a pathname string. * @throws NullPointerException * If the filename argument is null. * @see java.io.File#File(String) * @see #createFile(String, int) * @see #createInstance(String, int) * @see #getInstance(String) */ public FileFormat(String filename) { super(filename); fullFileName = filename; if ((filename != null) && (filename.length() > 0)) { try { fullFileName = this.getAbsolutePath(); } catch (Exception ex) { log.debug("File {} getAbsolutePath failure: ", filename, ex); } } isReadOnly = false; } /*************************************************************************** * Class methods **************************************************************************/ /** * Adds a FileFormat with specified key to the list of supported formats. *

    * This method allows a new FileFormat, tagged with an identifying key, to * be added dynamically to the list of supported File Formats. Using it, * applications can add new File Formats at runtime. *

    * For example, to add a new File Format with the key "xyz" that is * implemented by the class xyzFile in the package companyC.files, an * application would make the following calls: * *

         *    Class fileClass = Class.forName( "companyC.files.xyzFile" );
         *    FileFormat ff = (FileFormat) fileClass.newInstance();
         *    if ( ff != null ) {
         *       ff.addFileFormat ("xyz", ff )
         *    }
         * 
    *

    * If either key or fileformat are * null, or if key is already in use, the method * returns without updating the list of supported File Formats. * * @param key * A string that identifies the FileFormat. * @param fileformat * An instance of the FileFormat to be added. * @see #getFileFormat(String) * @see #getFileFormatKeys() * @see #getFileFormats() * @see #removeFileFormat(String) */ public static final void addFileFormat(String key, FileFormat fileformat) { if ((fileformat == null) || (key == null)) { return; } key = key.trim(); if (!FileList.containsKey(key)) { FileList.put(key, fileformat); } } /** * Returns the FileFormat with specified key from the list of supported * formats. *

    * This method returns a FileFormat instance, as identified by an * identifying key, from the list of supported File Formats. *

    * If the specified key is in the list of supported formats, the instance of * the associated FileFormat object is returned. If the specified key is not * in the list of supported formats, null is returned. * * @param key * A string that identifies the FileFormat. * @return The FileFormat that matches the given key, or null * if the key is not found in the list of supported File Formats. * @see #addFileFormat(String,FileFormat) * @see #getFileFormatKeys() * @see #getFileFormats() * @see #removeFileFormat(String) */ public static final FileFormat getFileFormat(String key) { return FileList.get(key); } /** * Returns an Enumeration of keys for all supported formats. *

    * This method returns an Enumeration containing the unique keys (Strings) * for the all File Formats in the list of supported File Formats. * * @return An Enumeration of keys that are in the list of supported formats. * @see #addFileFormat(String,FileFormat) * @see #getFileFormat(String) * @see #getFileFormats() * @see #removeFileFormat(String) */ public static final Enumeration getFileFormatKeys() { return ((Hashtable) FileList).keys(); } /** * Returns an array of supported FileFormat instances. *

    * This method returns an array of FileFormat instances that appear in the * list of supported File Formats. *

    * If the list of supported formats is empty, null is returned. * * @return An array of all FileFormat instances in the list of supported * File Formats, or null if the list is empty. * @see #addFileFormat(String,FileFormat) * @see #getFileFormat(String) * @see #getFileFormatKeys() * @see #removeFileFormat(String) */ public static final FileFormat[] getFileFormats() { int n = FileList.size(); if (n <= 0) { return null; } int i = 0; FileFormat[] fileformats = new FileFormat[n]; Enumeration local_enum = ((Hashtable) FileList).elements(); while (local_enum.hasMoreElements()) { fileformats[i++] = (FileFormat) local_enum.nextElement(); } return fileformats; } /** * Removes a FileFormat from the list of supported formats. *

    * This method removes a FileFormat, as identified by the specified key, * from the list of supported File Formats. *

    * If the specified key is in the list of supported formats, the instance of * the FileFormat object that is being removed from the list is returned. If * the key is not in the list of supported formats, null is * returned. * * @param key * A string that identifies the FileFormat to be removed. * @return The FileFormat that is removed, or null if the key * is not found in the list of supported File Formats. * @see #addFileFormat(String,FileFormat) * @see #getFileFormat(String) * @see #getFileFormatKeys() * @see #getFileFormats() */ public static final FileFormat removeFileFormat(String key) { return FileList.remove(key); } /** * Adds file extension(s) to the list of file extensions for supported file * formats. *

    * Multiple extensions can be included in the single parameter if they are * separated by commas. *

    * The list of file extensions updated by this call is not linked with * supported formats that implement FileFormat objects. The file extension * list is maintained for the benefit of applications that may choose to * recognize only those files with extensions that appear in the list of * file extensions for supported file formats. *

    * By default, the file extensions list includes: "hdf, h4, hdf5, h5" * * @param extension * The file extension(s) to add. * @see #addFileFormat(String,FileFormat) * @see #getFileExtensions() */ public static final void addFileExtension(String extension) { if ((extensions == null) || (extensions.length() <= 0)) { extensions = extension; } StringTokenizer currentExt = new StringTokenizer(extensions, ","); Vector tokens = new Vector(currentExt.countTokens() + 5); while (currentExt.hasMoreTokens()) { tokens.add(currentExt.nextToken().trim().toLowerCase()); } currentExt = new StringTokenizer(extension, ","); String ext = null; while (currentExt.hasMoreTokens()) { ext = currentExt.nextToken().trim().toLowerCase(); if (tokens.contains(ext)) { continue; } extensions = extensions + ", " + ext; } tokens.setSize(0); } /** * Returns a list of file extensions for all supported file formats. *

    * The extensions in the returned String are separates by commas: * "hdf, h4, hdf5, h5" *

    * It is the responsibility of the application to update the file extension * list using {@link #addFileExtension(String)} when new FileFormat * implementations are added. * * @return A list of file extensions for all supported file formats. * @see #addFileExtension(String) */ public static final String getFileExtensions() { return extensions; } /** * Creates a FileFormat instance for the specified file. *

    * This method checks the list of supported file formats to find one that * matches the format of the specified file. If a match is found, the method * returns an instance of the associated FileFormat object. If no match is * found, null is returned. *

    * For example, if "test_hdf5.h5" is an HDF5 file, * FileFormat.getInstance("test_hdf5.h5") will return an instance of H5File. *

    * The file is not opened as part of this call. Read/write file access is * associated with the FileFormat instance if the matching file format * supports read/write access. Some file formats only support read access. * * @param filename * A valid file name, with a relative or absolute path. * @return An instance of the matched FileFormat; null if no * match. * @throws IllegalArgumentException * If the filename argument is null or * does not specify an existing file. * @throws Exception * If there are problems creating the new instance. * @see #createFile(String, int) * @see #createInstance(String, int) * @see #getFileFormats() */ public static final FileFormat getInstance(String filename) throws Exception { if ((filename == null) || (filename.length() <= 0)) { throw new IllegalArgumentException("Invalid file name: " + filename); } if (!(new File(filename)).exists()) { throw new IllegalArgumentException("File " + filename + " does not exist."); } FileFormat fileFormat = null; FileFormat knownFormat = null; Enumeration elms = ((Hashtable) FileList).elements(); while (elms.hasMoreElements()) { knownFormat = (FileFormat) elms.nextElement(); if (knownFormat.isThisType(filename)) { try { fileFormat = knownFormat.createInstance(filename, WRITE); } catch (Exception ex) { log.debug("File {} createInstance failure: ", filename, ex); } break; } } return fileFormat; } /*************************************************************************** * Implementation Class methods. These methods are related to the * implementing FileFormat class, but not to a particular instance of that * class. Since we can't override class methods (they can only be shadowed * in Java), these are instance methods. * * The non-abstract methods just throw an exception indicating that the * implementing class doesn't support the functionality. **************************************************************************/ /** * Returns the version of the library for the implementing FileFormat class. *

    * The implementing FileFormat classes have freedom in how they obtain or * generate the version number that is returned by this method. The H5File * and H4File implementations query the underlying HDF libraries and return * the reported version numbers. Other implementing classes may generate the * version string directly within the called method. * * @return The library version. */ public abstract String getLibversion(); /** * Checks if the class implements the specified FileFormat. *

    * The Java "instanceof" operation is unable to check if an object is an * instance of a FileFormat that is loaded at runtime. This method provides * the "instanceof" functionality, and works for implementing classes that * are loaded at runtime. *

    * This method lets applications that only access the abstract object layer * determine the format of a given instance of the abstract class. *

    * For example, HDFView uses the following code to determine if a file is an * HDF5 file: * *

         * FileFormat h5F = FileFormat.getFileFormat(FileFormat.FILE_TYPE_HDF5);
         *                                                                       HObject hObject = viewer.getTreeView()
         *                                                                                               .getCurrentObject();
         *                                                                                                                    FileFormat thisF = hObject
         *                                                                                                                                             .getFileFormat();
         *                                                                                                                                                               boolean isH5 = h5F.isThisType(thisF);
         * 
    * * @param fileFormat * The FileFormat to be checked. * @return True if this instance implements the specified FileFormat; * otherwise returns false. * @see #isThisType(String) */ public abstract boolean isThisType(FileFormat fileFormat); /** * Checks if the implementing FileFormat class matches the format of the * specified file. *

    * For example, if "test.h5" is an HDF5 file, the first call to isThisType() * in the code fragment shown will return false, and the second * call will return true. * *

         * FileFormat h4F = FileFormat.getFileFormat(FileFormat.FILE_TYPE_HDF4);
         *                                                                       FileFormat h5F = FileFormat
         *                                                                                              .getFileFormat(FileFormat.FILE_TYPE_HDF5);
         *                                                                                                                                         boolean isH4 = h4F.isThisType("test.h5"); // false
         *                                                                                                                                                                                   boolean isH5 = h5F.isThisType("test.h5"); // true
         * 
    * * @param filename * The name of the file to be checked. * @return True if the format of the file matches the format of this * instance; otherwise returns false. * @see #isThisType(FileFormat) */ public abstract boolean isThisType(String filename); /** * Creates a file with the specified name and returns a new FileFormat * implementation instance associated with the file. *

    * This method creates a file whose format is the same as that of the * implementing class. An instance of the FileFormat implementing class is * created and associated with the file. That instance is returned by the * method. *

    * The filename in this method call is equivalent to the pathname in the * java.io.File class. The filename is converted into an abstract pathname * by the File class. *

    * A flag controls the behavior if the named file already exists. The flag * values and corresponding behaviors are: *

      *
    • FILE_CREATE_DELETE: Create a new file or truncate an existing one. *
    • FILE_CREATE_OPEN: Create a new file or open an existing one. *
    *

    * If the flag is FILE_CREATE_DELETE, the method will create a new file or * truncate an existing file. If the flag is FILE_CREATE_OPEN and the file * does not exist, the method will create a new file. *

    * This method does not open the file for access, nor does it confirm that * the file can later be opened read/write. The file open is carried out by * the open() call. * * @param filename * The filename; a pathname string. * @param createFlag * The creation flag, which determines behavior when the file * already exists. Acceptable values are * FILE_CREATE_DELETE and * FILE_CREATE_OPEN. * @throws NullPointerException * If the filename argument is null. * @throws UnsupportedOperationException * If the implementing class does not support the file creation * operation. * @throws Exception * If the file cannot be created or if the creation flag has an * unexpected value. The exceptions thrown vary depending on the * implementing class. * @see #createInstance(String, int) * @see #getInstance(String) * @see #open() */ public FileFormat createFile(String filename, int createFlag) throws Exception { // If the implementing subclass doesn't have this method then that // format doesn't support File Creation and we throw an exception. throw new UnsupportedOperationException("FileFormat FileFormat.createFile(...) is not implemented."); } /** * Creates a FileFormat implementation instance with specified filename and * access. *

    * This method creates an instance of the FileFormat implementing class and * sets the filename and file access parameters. *

    * The filename in this method call is equivalent to the pathname in the * java.io.File class. The filename is converted into an abstract pathname * by the File class. *

    * The access parameter values and corresponding behaviors at file open: *

      *
    • READ: Read-only access. Fail if file doesn't exist. *
    • WRITE: Read/Write access. Behavior if file doesn't exist or can't be * opened for read/write access depends on the implementing class. *
    • CREATE: Read/Write access. Create a new file or truncate an existing * one. Behavior if file can't be created, or if it exists but can't be * opened read/write depends on the implementing class. *
    *

    * Some FileFormat implementing classes may only support READ access and * will use READ regardless of the value specified in the call. Refer to the * implementing class documentation for details. *

    * This method does not open the file for access, nor does it confirm that * the file can later be opened read/write or created. The file open is * carried out by the open() call. *

    * Example (without exception handling): * *

         * // Request the implementing class of FileFormat: H5File
         * FileFormat h5file = FileFormat.getFileFormat(FileFormat.FILE_TYPE_HDF5);
         * 
         *                                                                          // Create
         *                                                                          // an
         *                                                                          // instance
         *                                                                          // of
         *                                                                          // H5File
         *                                                                          // object
         *                                                                          // with
         *                                                                          // read/write
         *                                                                          // access
         *                                                                          H5File test1 = (H5File) h5file.createInstance(
         *                                                                                               "test_hdf5.h5",
         *                                                                                               FileFormat.WRITE);
         *                                                                                                                  // Open
         *                                                                                                                  // the
         *                                                                                                                  // file
         *                                                                                                                  // and
         *                                                                                                                  // load
         *                                                                                                                  // the
         *                                                                                                                  // file
         *                                                                                                                  // structure;
         *                                                                                                                  // file
         *                                                                                                                  // id
         *                                                                                                                  // is
         *                                                                                                                  // returned.
         *                                                                                                                  int fid = test1.open();
         * 
    * * @param filename * The filename; a pathname string. * @param access * The file access flag, which determines behavior when file is * opened. Acceptable values are READ, WRITE, and * CREATE. * @throws NullPointerException * If the filename argument is null. * @throws Exception * If the instance cannot be created or if the access flag has * an unexpected value. The exceptions thrown vary depending on * the implementing class. * @see #createFile(String, int) * @see #getInstance(String) * @see #open() */ public abstract FileFormat createInstance(String filename, int access) throws Exception; // REVIEW DOCS for createInstance() // What if READ ONLY in implementation? What if file already open? // Can we doc exceptions better or in implementation methods? /*************************************************************************** * Final instance methods * * Related to a given instance of the class, but at the FileFormat level, * not at the implementing class level. **************************************************************************/ /** * Returns the absolute path for the file. *

    * For example, "/samples/hdf5_test.h5". If there is no file associated with * this FileFormat instance, null is returned. * * @return The full path (file path + file name) of the associated file, or * null if there is no associated file. */ public final String getFilePath() { return fullFileName; } /** * Returns file identifier of open file associated with this instance. * * @return The file identifer, or -1 if there is no file open. */ public final int getFID() { return fid; } /** * Returns true if the file access is read-only. *

    * This method returns true if the file access is read-only. If the file * access is read-write, or if there is no file associated with the * FileFormat instance, false will be returned. *

    * Note that this method may return true even if the file is not open for * access when the method is called. The file access is set by the * createFile(), createInstance(), or getInstance() * call, and the file is opened for access by the open() call. * * @return True if the file access is read-only, otherwise returns false. * @see #createFile(String, int) * @see #createInstance(String, int) * @see #getInstance(String) * @see #open() */ public final boolean isReadOnly() { return isReadOnly; } /** * Sets the maximum number of objects to be loaded into memory. *

    * Current Java applications, such as HDFView, cannot handle files with * large numbers of objects due to JVM memory limitations. The maximum * number limits the number of objects that will be loaded for a given * FileFormat instance. *

    * The implementing FileFormat class has freedom in how it interprets the * maximum number. H5File, for example, will load the maximum number of * objects for each group in the file. * * @param n * The maximum number of objects to be loaded into memory. * @see #getMaxMembers() * @see #setStartMembers(int) */ public final void setMaxMembers(int n) { max_members = n; } /** * Returns the maximum number of objects that can be loaded into memory. * * @return The maximum number of objects that can be loaded into memory. * @see #setMaxMembers(int) */ public final int getMaxMembers() { if (max_members<0) return Integer.MAX_VALUE; // load the whole file return max_members; } /** * Sets the starting index of objects to be loaded into memory. *

    * The implementing FileFormat class has freedom in how it indexes objects * in the file. * * @param idx * The starting index of the object to be loaded into memory * @see #getStartMembers() * @see #setMaxMembers(int) */ public final void setStartMembers(int idx) { start_members = idx; } /** * Returns the index of the starting object to be loaded into memory. * * @return The index of the starting object to be loaded into memory. * @see #setStartMembers(int) */ public final int getStartMembers() { return start_members; } /** * Returns the number of objects in memory. *

    * This method returns the total number of objects loaded into memory for * this FileFormat instance. The method counts the objects that are loaded, * which can take some time for a large number of objects. *

    * It is worth noting that the total number of objects in memory may be * different than the total number of objects in the file. *

    * Since implementing classes have freedom in how they interpret and use the * maximum number of members value, there may be differing numbers of * objects in memory in different implementation instances, even with the * same "use case". *

    * For example, say the use case is a file that contains 20,000 objects, the * maximum number of members for an instance is 10,000, and the start member * index is 1. There are 2 groups in the file. The root group contains * 10,500 objects and the group "/g1" contains 9,500 objects. *

    * In an implementation that limits the total number of objects loaded to * the maximum number of members, this method will return 10,000. *

    * In contrast, the H5File implementation loads up to the maximum number of * members objects for each group in the file. So, with our use case 10,000 * objects will be loaded in the root group and 9,500 objects will be loaded * into group "/g1". This method will return the value 19,500, which exceeds * the maximum number of members value. * * @return The number of objects in memory. * @see #getMaxMembers() * @see #setMaxMembers(int) * @see #getStartMembers() * @see #setStartMembers(int) */ public final int getNumberOfMembers() { int n_members = 0; TreeNode rootNode = getRootNode(); if (rootNode != null) { Enumeration local_enum = ((DefaultMutableTreeNode) rootNode).depthFirstEnumeration(); while (local_enum.hasMoreElements()) { local_enum.nextElement(); n_members++; } } return n_members; } /*************************************************************************** * Abstract Instance methods * * These methods are related to the Implementing FileFormat class and to * particular instances of objects with those classes. **************************************************************************/ /** * Opens file and returns a file identifier. *

    * This method uses the filename and access * parameters specified in the createFile(), createInstance(), * or getInstance() call to open the file. It returns the file * identifier if successful, or a negative value in case of failure. *

    * The method also loads the file structure and basic information (name, * type) for data objects in the file into the FileFormat instance. It does * not load the contents of any data object. *

    * The structure of the file is stored in a tree starting from the root * node. * * @return File identifier if successful; otherwise -1. * @throws Exception * If the file cannot be opened. The exceptions thrown vary * depending on the implementing class. * @see #createFile(String, int) * @see #createInstance(String, int) * @see #getInstance(String) * @see #getRootNode() */ public abstract int open() throws Exception; /** * Closes file associated with this instance. *

    * This method closes the file associated with this FileFormat instance, as * well as all objects associated with the file. * * @throws Exception * If the file or associated objects cannot be closed. The * exceptions thrown vary depending on the implementing class. * @see #open() */ public abstract void close() throws Exception; // REVIEW DOCS for close() // What if we try to close a file whose fid is -1? Does this set fid to -1? // What if it's not open? What if no file? are structures & root node // still loaded? // Can we doc exceptions better or in implementation methods? /** * Returns the root node for the file associated with this instance. *

    * The root node is a Java TreeNode object * (javax.swing.tree.DefaultMutableTreeNode) that represents the root group * of a file. If the file has not yet been opened, or if there is no file * associated with this instance, null will be returned. *

    * Starting from the root, applications can descend through the tree * structure and navigate among the file's objects. In the tree structure, * internal nodes represent non-empty groups. Leaf nodes represent datasets, * named datatypes, or empty groups. * * @return The root node of the file, or null there is no * associated file or if the associated file has not yet been * opened. * @see #open() */ public abstract TreeNode getRootNode(); /** * Gets the HObject with the specified path from the file. *

    * This method returns the specified object from the file associated with * this FileFormat instance. *

    * If the specified object is a group, groups and datasets that are members * of the group will be accessible via the returned HObject instance. The * exact contents of the returned HObject instance depends on whether or not * {@link #open()} was called previously for this file. *

      *
    • If the file was opened prior to this method call, the complete tree * of objects under the group will be accessible via the returned HObject * instance. *
    • If the file was not opened prior to this method call, only the * members immediately under the group will be accessible via the returned * HOBject instance. *
    *

    * The decision to have different behaviors was made to give users some * control over the "cost" of the method. In many cases, a user wants only * one level of a tree, and the performance penalty for loading the entire * hierarchy of objects in a large and complex file can be significant. In * the case where open() has already been called, the HObject * instances have already been created in memory and can be returned * quickly. If open() has not been called, this method creates the * HObject instances before returning the requested HObject. *

    * For example, say we have the following structure in our file: * *

         *        /g0                      Group
         *        /g0/dataset_comp         Dataset {50, 10}
         *        /g0/dataset_int          Dataset {50, 10}
         *        /g0/g00                  Group
         *        /g0/g00/dataset_float    Dataset {50, 10}
         *        /g0/g01                  Group
         *        /g0/g01/dataset_string   Dataset {50, 10}
         * 
    * *
      *
    • If open() is called before get(), the full structure of * file is loaded into memory. The call get("/g0") returns the * instance for /g0 with the information necessary to access * /g0/dataset_comp, /g0/dataset_int, /g0/g00, /g0/g00/dataset_float, * /g0/g01, and /g0/g01/dataset_string. *
    • If open() is not called before get(), only the objects * immediately under the specified group are accessible via the returned * HObject instance. In this example, the call get("/go") * returns the instance for /g0 with the information necessary to access * /g0/dataset_comp, /g0/dataset_int, /g0/g00, and /g0/g01. *
    * * @param path * Full path of the data object to be returned. * @return The object if it exists in the file; otherwise null. * @throws Exception * If there are unexpected problems in trying to retrieve the * object. The exceptions thrown vary depending on the * implementing class. */ public abstract HObject get(String path) throws Exception; // REVIEW DOCS for get(); What if no file associated w/ instance? // Look at exceptions. Confirm example. Make sure perf tradeoffs // documented properly. /** * Creates a named datatype in a file. *

    * The following code creates a named datatype in a file. * *

         * H5File file = (H5File) h5file.createInstance("test_hdf5.h5", FileFormat.WRITE);
         *                                                                                 H5Datatype dtype = file.createDatatype(
         *                                                                                                          Datatype.CLASS_INTEGER,
         *                                                                                                          4,
         *                                                                                                          Datatype.NATIVE,
         *                                                                                                          Datatype.NATIVE,
         *                                                                                                          "Native Integer");
         * 
    * * @param tclass * class of datatype, e.g. Datatype.CLASS_INTEGER * @param tsize * size of the datatype in bytes, e.g. 4 for 32-bit integer. * @param torder * order of the byte endianing, Datatype.ORDER_LE. * @param tsign * signed or unsigned of an integer, Datatype.SIGN_NONE. * @param name * name of the datatype to create, e.g. "Native Integer". * @return The new datatype if successful; otherwise returns null. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public abstract Datatype createDatatype(int tclass, int tsize, int torder, int tsign, String name) throws Exception; /** * Creates a named datatype in a file. *

    * The following code creates a named datatype in a file. * *

         * H5File file = (H5File) h5file.createInstance("test_hdf5.h5", FileFormat.WRITE);
         *                                                                                 H5Datatype dtype = file.createDatatype(
         *                                                                                                          Datatype.CLASS_INTEGER,
         *                                                                                                          4,
         *                                                                                                          Datatype.NATIVE,
         *                                                                                                          Datatype.NATIVE,
         *                                                                                                          basetype,
         *                                                                                                          "Native Integer");
         * 
    * * @param tclass * class of datatype, e.g. Datatype.CLASS_INTEGER * @param tsize * size of the datatype in bytes, e.g. 4 for 32-bit integer. * @param torder * order of the byte endianing, Datatype.ORDER_LE. * @param tsign * signed or unsigned of an integer, Datatype.SIGN_NONE. * @param tbase * the base datatype of the new datatype * @param name * name of the datatype to create, e.g. "Native Integer". * @return The new datatype if successful; otherwise returns null. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public Datatype createDatatype(int tclass, int tsize, int torder, int tsign, Datatype tbase, String name) throws Exception { // Derived classes must override this function to use base type option return createDatatype(tclass, tsize, torder, tsign, name); } // REVIEW DOCS for createDatatype(). Check and document exceptions. /*************************************************************************** * Methods related to Datatypes and HObjects in the implementing FileFormat. * * Strictly speaking, these methods aren't related to FileFormat and the * actions could be carried out through the HObject and Datatype classes. * But, in some cases they allow a null input and expect the generated * object to be of a type that has particular FileFormat. Therefore, we put * them in the implementing FileFormat class so that we create the proper * type of HObject... H5Group or H4Group for example. * * Here again, if there could be Implementation Class methods we'd use * those. But, since we can't override class methods (they can only be * shadowed in Java), these are instance methods. * * The non-abstract methods just throw an exception indicating that the * implementing class doesn't support the functionality. **************************************************************************/ /** * Creates a new datatype in memory. *

    * The following code creates an instance of H5Datatype in memory. * *

         * H5File file = (H5File) h5file.createInstance("test_hdf5.h5", FileFormat.WRITE);
         *                                                                                 H5Datatype dtype = file.createDatatype(
         *                                                                                                          Datatype.CLASS_INTEGER,
         *                                                                                                          4,
         *                                                                                                          Datatype.NATIVE,
         *                                                                                                          Datatype.NATIVE);
         * 
    * * @param tclass * class of datatype, e.g. Datatype.CLASS_INTEGER * @param tsize * size of the datatype in bytes, e.g. 4 for 32-bit integer. * @param torder * order of the byte endian, e.g. Datatype.ORDER_LE. * @param tsign * signed or unsigned of an integer, Datatype.SIGN_NONE. * @return The new datatype object if successful; otherwise returns null. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public abstract Datatype createDatatype(int tclass, int tsize, int torder, int tsign) throws Exception; /** * Creates a new datatype in memory. *

    * The following code creates an instance of H5Datatype in memory. * *

         * H5File file = (H5File) h5file.createInstance("test_hdf5.h5", FileFormat.WRITE);
         *                                                                                 H5Datatype dtype = file.createDatatype(
         *                                                                                                          Datatype.CLASS_INTEGER,
         *                                                                                                          4,
         *                                                                                                          Datatype.NATIVE,
         *                                                                                                          Datatype.NATIVE,
         *                                                                                                          basetype);
         * 
    * * @param tclass * class of datatype, e.g. Datatype.CLASS_INTEGER * @param tsize * size of the datatype in bytes, e.g. 4 for 32-bit integer. * @param torder * order of the byte endian, e.g. Datatype.ORDER_LE. * @param tsign * signed or unsigned of an integer, Datatype.SIGN_NONE. * @param tbase * the base datatype of the new datatype * @return The new datatype object if successful; otherwise returns null. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public Datatype createDatatype(int tclass, int tsize, int torder, int tsign, Datatype tbase) throws Exception { // Derived classes must override this function to use base type option return createDatatype(tclass, tsize, torder, tsign); } // REVIEW DOCS for createDatatype(). Check and document exceptions. /** * Creates a new dataset in a file with/without chunking/compression. *

    * The following example creates a 2D integer dataset of size 100X50 at the * root group in an HDF5 file. * *

         * String name = "2D integer";
         *                             Group pgroup = (Group) ((DefaultMutableTreeNode) getRootNode).getUserObject();
         *                                                                                                            Datatype dtype = new H5Datatype(
         *                                                                                                                                   Datatype.CLASS_INTEGER, // class
         *                                                                                                                                   4, // size
         *                                                                                                                                      // in
         *                                                                                                                                      // bytes
         *                                                                                                                                   Datatype.ORDER_LE, // byte
         *                                                                                                                                                      // order
         *                                                                                                                                   Datatype.SIGN_NONE); // signed
         *                                                                                                                                                        // or
         *                                                                                                                                                        // unsigned
         *                                                                                                                                                        long[] dims = {
         *         100, 50                                                                                                                                                   };
         *                                                                                                                                                                       long[] maxdims = dims;
         *                                                                                                                                                                                              long[] chunks = null; // no
         *                                                                                                                                                                                                                    // chunking
         *                                                                                                                                                                                                                    int gzip = 0; // no
         *                                                                                                                                                                                                                                  // compression
         *                                                                                                                                                                                                                                  Object data = null; // no
         *                                                                                                                                                                                                                                                      // initial
         *                                                                                                                                                                                                                                                      // data
         *                                                                                                                                                                                                                                                      // values
         *                                                                                                                                                                                                                                                      Dataset d = (H5File) file
         *                                                                                                                                                                                                                                                                        .createScalarDS(
         *                                                                                                                                                                                                                                                                                name,
         *                                                                                                                                                                                                                                                                                pgroup,
         *                                                                                                                                                                                                                                                                                dtype,
         *                                                                                                                                                                                                                                                                                dims,
         *                                                                                                                                                                                                                                                                                maxdims,
         *                                                                                                                                                                                                                                                                                chunks,
         *                                                                                                                                                                                                                                                                                gzip,
         *                                                                                                                                                                                                                                                                                data);
         * 
    * * @param name * name of the new dataset, e.g. "2D integer" * @param pgroup * parent group where the new dataset is created. * @param type * datatype of the new dataset. * @param dims * dimension sizes of the new dataset, e.g. long[] dims = {100, * 50}. * @param maxdims * maximum dimension sizes of the new dataset, null if maxdims is * the same as dims. * @param chunks * chunk sizes of the new dataset, null if no chunking. * @param gzip * GZIP compression level (1 to 9), 0 or negative values if no * compression. * @param data * data written to the new dataset, null if no data is written to * the new dataset. * * @return The new dataset if successful; otherwise returns null * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public abstract Dataset createScalarDS(String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, Object fillValue, Object data) throws Exception; public Dataset createScalarDS(String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, Object data) throws Exception { return createScalarDS(name, pgroup, type, dims, maxdims, chunks, gzip, null, data); } // REVIEW DOCS for createScalarDS(). Check and document exceptions. /** * Creates a new compound dataset in a file with/without chunking and * compression. *

    * The following example creates a compressed 2D compound dataset with size * of 100X50 in a root group. The compound dataset has two members, x and y. * Member x is an interger, member y is an 1-D float array of size 10. * *

         * String name = "2D compound";
         * Group pgroup = 
         *           (Group)((DefaultMutableTreeNode)getRootNode).getUserObject();
         * long[] dims = {100, 50};
         * long[] chunks = {1, 50};
         * int gzip = 9;
         * String[] memberNames = {"x", "y"};
         * 
         * Datatype[] memberDatatypes = {
         *     new H5Datatype(Datatype.CLASS_INTEGER, Datatype.NATIVE, 
         *                    Datatype.NATIVE, Datatype.NATIVE)
         *     new H5Datatype(Datatype.CLASS_FLOAT, Datatype.NATIVE, 
         *                    Datatype.NATIVE, Datatype.NATIVE));
         *     
         * int[] memberSizes = {1, 10};
         * Object data = null; // no initial data values
         * Dataset d = (H5File)file.createCompoundDS(name, pgroup, dims, null, 
         *           chunks, gzip, memberNames, memberDatatypes, memberSizes, null);
         * 
    * * @param name * name of the new dataset * @param pgroup * parent group where the new dataset is created. * @param dims * dimension sizes of the new dataset. * @param maxdims * maximum dimension sizes of the new dataset, null if maxdims is * the same as dims. * @param chunks * chunk sizes of the new dataset, null if no chunking. * @param gzip * GZIP compression level (1 to 9), 0 or negative values if no * compression. * @param memberNames * names of the members. * @param memberDatatypes * datatypes of the members. * @param memberSizes * array sizes of the members. * @param data * data written to the new dataset, null if no data is written to * the new dataset. * * @return new dataset object if successful; otherwise returns null * @throws UnsupportedOperationException * If the implementing class does not support compound datasets. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public Dataset createCompoundDS(String name, Group pgroup, long[] dims, long[] maxdims, long[] chunks, int gzip, String[] memberNames, Datatype[] memberDatatypes, int[] memberSizes, Object data) throws Exception // REVIEW DOCS for createCompoundDS(). Check and document exceptions. { // If the implementing subclass doesn't have this method then that // format doesn't support Compound DataSets and we throw an // exception. throw new UnsupportedOperationException("Dataset FileFormat.createCompoundDS(...) is not implemented."); } /** * Creates a new image in a file. *

    * The following example creates a 2D image of size 100X50 in a root group. * *

         * String name = "2D image";
         *                           Group pgroup = (Group) ((DefaultMutableTreeNode) getRootNode).getUserObject();
         *                                                                                                          Datatype dtype = new H5Datatype(
         *                                                                                                                                 Datatype.CLASS_INTEGER,
         *                                                                                                                                 1,
         *                                                                                                                                 Datatype.NATIVE,
         *                                                                                                                                 Datatype.SIGN_NONE);
         *                                                                                                                                                      long[] dims = {
         *         100, 50                                                                                                                                                 };
         *                                                                                                                                                                     long[] maxdims = dims;
         *                                                                                                                                                                                            long[] chunks = null; // no
         *                                                                                                                                                                                                                  // chunking
         *                                                                                                                                                                                                                  int gzip = 0; // no
         *                                                                                                                                                                                                                                // compression
         *                                                                                                                                                                                                                                int ncomp = 3; // RGB
         *                                                                                                                                                                                                                                               // true
         *                                                                                                                                                                                                                                               // color
         *                                                                                                                                                                                                                                               // image
         *                                                                                                                                                                                                                                               int interlace = ScalarDS.INTERLACE_PIXEL;
         *                                                                                                                                                                                                                                                                                         Object data = null; // no
         *                                                                                                                                                                                                                                                                                                             // initial
         *                                                                                                                                                                                                                                                                                                             // data
         *                                                                                                                                                                                                                                                                                                             // values
         *                                                                                                                                                                                                                                                                                                             Dataset d = (H5File) file
         *                                                                                                                                                                                                                                                                                                                               .createScalarDS(
         *                                                                                                                                                                                                                                                                                                                                       name,
         *                                                                                                                                                                                                                                                                                                                                       pgroup,
         *                                                                                                                                                                                                                                                                                                                                       dtype,
         *                                                                                                                                                                                                                                                                                                                                       dims,
         *                                                                                                                                                                                                                                                                                                                                       maxdims,
         *                                                                                                                                                                                                                                                                                                                                       chunks,
         *                                                                                                                                                                                                                                                                                                                                       gzip,
         *                                                                                                                                                                                                                                                                                                                                       ncomp,
         *                                                                                                                                                                                                                                                                                                                                       interlace,
         *                                                                                                                                                                                                                                                                                                                                       data);
         * 
    * * @param name * name of the new image, "2D image". * @param pgroup * parent group where the new image is created. * @param type * datatype of the new image. * @param dims * dimension sizes of the new dataset, e.g. long[] dims = {100, * 50}. * @param maxdims * maximum dimension sizes of the new dataset, null if maxdims is * the same as dims. * @param chunks * chunk sizes of the new dataset, null if no chunking. * @param gzip * GZIP compression level (1 to 9), 0 or negative values if no * compression. * @param ncomp * number of components of the new image, e.g. int ncomp = 3; // * RGB true color image. * @param interlace * interlace mode of the image. Valid values are * ScalarDS.INTERLACE_PIXEL, ScalarDS.INTERLACE_PLANEL and * ScalarDS.INTERLACE_LINE. * @param data * data value of the image, null if no data. * @return The new image object if successful; otherwise returns null * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public abstract Dataset createImage( String name, Group pgroup, Datatype type, long[] dims, long[] maxdims, long[] chunks, int gzip, int ncomp, int interlace, Object data) throws Exception; // REVIEW DOCS for createImage(). Check and document exceptions. /** * Creates a new group with specified name in existing group. *

    * If the parent group is null, the new group will be created in the root * group. * * @param name * The name of the new group. * @param parentGroup * The parent group, or null. * @return The new group if successful; otherwise returns null. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public abstract Group createGroup(String name, Group parentGroup) throws Exception; // REVIEW DOCS for createLink(). // Verify Implementing classes document these and also // 'do the right thing' if fid is -1, currentObj is non-null, if // object is null, or the root group then what? document & verify! /** * Creates a soft, hard or external link to an existing object in the open * file. *

    * If parentGroup is null, the new link is created in the root group. * * @param parentGroup * The group where the link is created. * @param name * The name of the link. * @param currentObj * The existing object the new link will reference. * @param type * The type of link to be created. It can be a hard link, a soft * link or an external link. * @return The object pointed to by the new link if successful; otherwise * returns null. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public HObject createLink(Group parentGroup, String name, HObject currentObj, int type) throws Exception { return createLink(parentGroup, name, currentObj); } /** * Creates a soft or external links to objects in a file that do not exist * at the time the link is created. * * @param parentGroup * The group where the link is created. * @param name * The name of the link. * @param currentObj * The name of the object the new link will reference. The object * doesn't have to exist. * @param type * The type of link to be created. * @return The H5Link object pointed to by the new link if successful; * otherwise returns null. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public HObject createLink(Group parentGroup, String name, String currentObj, int type) throws Exception { return createLink(parentGroup, name, currentObj); } /** * Copies the source object to a new destination. *

    * This method copies the source object to a destination group, and assigns * the specified name to the new object. *

    * The copy may take place within a single or across files. If the source * object and destination group are in different files, the files must have * the same file format (both HDF5 for example). *

    * The source object can be a group, a dataset, or a named datatype. This * method copies the object along with all of its attributes and other * properties. If the source object is a group, this method also copies all * objects and sub-groups below the group. *

    * The following example shows how to use the copy method to create two * copies of an existing HDF5 file structure in a new HDF5 file. One copy * will be under /copy1 and the other under /copy2 in the new file. * *

         * // Open the exisiting file with the source object.
         * H5File existingFile = new H5File("existingFile.h5", FileFormat.READ);
         * existingFile.open();
         * // Our source object will be the root group.
         * HObject srcObj = existingFile.get("/");
         * // Create a new file.
         * H5File newFile = new H5File("newFile.h5", FileFormat.CREATE);
         * newFile.open();
         * // Both copies in the new file will have the root group as their
         * // destination group.
         * Group dstGroup = (Group) newFile.get("/");
         * // First copy goes to "/copy1" and second goes to "/copy2".
         * // Notice that we can use either H5File instance to perform the copy.
         * TreeNode copy1 = existingFile.copy(srcObj, dstGroup, "copy1");
         * TreeNode copy2 = newFile.copy(srcObj, dstGroup, "copy2");
         * // Close both the files.
         * file.close();
         * newFile.close();
         * 
    * * @param srcObj * The object to copy. * @param dstGroup * The destination group for the new object. * @param dstName * The name of the new object. If dstName is null, the name of * srcObj will be used. * @return The tree node that contains the new object, or null if the copy * fails. * @throws Exceptions * are specific to the implementing class. RUTH CONFIRM USE * SRC.copy not DEST.copy. Also what is returned on failure. * ALSO exceptions. ALSO, does it copy data or just structure? */ public abstract TreeNode copy(HObject srcObj, Group dstGroup, String dstName) throws Exception; // REVIEW DOCS for copy(). // CONFIRM USE SRC.copy not DEST.copy. Also what is returned on // failure. ALSO exceptions. ALSO, does it copy data or just structure? /** * Deletes an object from a file. * * @param obj * The object to delete. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public abstract void delete(HObject obj) throws Exception; // REVIEW DOCS for delete(). Check and document exceptions. /** * Attaches a given attribute to an object. *

    * If an HDF(4&5) attribute exists in file, the method updates its value. If * the attribute does not exists in file, it creates the attribute in file * and attaches it to the object. It will fail to write a new attribute to * the object where an attribute with the same name already exists. To * update the value of an existing attribute in file, one needs to get the * instance of the attribute by getMetadata(), change its values, and use * writeAttribute() to write the value. * * @param obj * The object to which the attribute is attached to. * @param attr * The atribute to attach. * @param attrExisted * The indicator if the given attribute exists. * @throws Exception * The exceptions thrown vary depending on the implementing * class. */ public abstract void writeAttribute(HObject obj, Attribute attr, boolean attrExisted) throws Exception; // REVIEW DOCS for writeAttribute(). Check and document exceptions. /*************************************************************************** * Deprecated methods. **************************************************************************/ /** * @deprecated As of 2.4, replaced by {@link #createFile(String, int)} *

    * The replacement method has an additional parameter that * controls the behavior if the file already exists. Use * FileFormat.FILE_CREATE_DELETE as the second * argument in the replacement method to mimic the behavior * originally provided by this method. */ @Deprecated public final FileFormat create(String fileName) throws Exception { return createFile(fileName, FileFormat.FILE_CREATE_DELETE); } /** * @deprecated As of 2.4, replaced by {@link #createInstance(String, int)} * * The replacement method has identical functionality and a more * descriptive name. Since open is used elsewhere to * perform a different function this method has been deprecated. */ @Deprecated public final FileFormat open(String pathname, int access) throws Exception { return createInstance(pathname, access); } /** * @deprecated As of 2.4, replaced by * {@link #createCompoundDS(String, Group, long[], long[], long[], int, String[], Datatype[], int[], Object)} *

    * The replacement method has additional parameters: * maxdims, chunks, and gzip. To mimic * the behavior originally provided by this method, call the * replacement method with the following parameter list: * ( name, pgroup, dims, null, null, -1, * memberNames, memberDatatypes, memberSizes, data ); */ @Deprecated public final Dataset createCompoundDS(String name, Group pgroup, long[] dims, String[] memberNames, Datatype[] memberDatatypes, int[] memberSizes, Object data) throws Exception { return createCompoundDS(name, pgroup, dims, null, null, -1, memberNames, memberDatatypes, memberSizes, data); } /** * @deprecated As of 2.4, replaced by {@link #copy(HObject, Group, String)} *

    * To mimic the behavior originally provided by this method, * call the replacement method with null as the 3rd * parameter. */ @Deprecated public final TreeNode copy(HObject srcObj, Group dstGroup) throws Exception { return copy(srcObj, dstGroup, null); } /** * @deprecated As of 2.4, replaced by {@link #get(String)} *

    * This static method, which as been deprecated, causes two * problems: *

:O=9P>:O@;R@8R=8R=8S>9S>9R=8R=8R=8P;6O:5M83L72K61L72L72M83J52K63K63K63J52H30F1.E0-1! 0$ 1*"10#46&3:%4;%25(1&-#'%"$##$!&!& $ $!%!%#$$%'$(%+',(-',&,&+%.)/*0+1,0,/+.,+++,+,*.*.*.*.(.(.-/-/-/-/-/-/-/-/+-*,*,*,)+)+(*&*&-%,%,$+#*!(!( '%%%%%%%%"#$%%%$#"!!! !!                      !!""!#!"""!!!#$% % % % $$###$$% % &!&!'"'"&!&!&!'"'"(#(#(#(!(!(!(!(!(!(!(!' ' ' ' ' ' ' ' *+++++++--------../03467 5689:;;:7!5!4 4 33225 6!6!7"7"8#8$:#!?"?"?"@#>!>!= = <<;;= = = = = = = = >!>!>!>!>!>!>!>!B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$E#E#F$F$G%G%H&H&K) K) J(K) L*!N,#O-$Q/&R0'S1'T4'V7%W:(Y=(]>)^?*bB-eB,iE-pI,wN.U/†[0Š_,—g'­|7³„>¯€:®‚;ª€8¨~6ª„;«†?¨ˆ?¨ˆ?§‰@¨ŒC©DªFªH©ŒHªKªŽM¬O®’S°”U¯•X°–Y©‘U¨V¦U£ŠRŸˆR†Pœ…QƒP¤„Q¦…R§†S¨‡T«‡U¬ˆV¬ˆV­‰W®ˆW¯‰X´Œ[¶Ž]¹‘`¼”c¿•eÕdÌ”cÑ•aÒ–dÕ—dÖ˜eטcטbטbÛšbÝœbáŸeâ däŸdå eè£hé¨hñ²kò·k÷¼nûÂsüÃrûÂqùÀoõ¾lö¿mõÁnô¿oñ¼ní¸lì¸mîºqñ½rõÂqöÆqûËwþÎ|ýÌ}øÉ{òÄwìÀuáµlÛ°kÕ­hÔ­j×°oÙ³tÚ´uÙ³tزqÕ²pÔ±oÓ²oѳmÒµoÔ·qÔºpÕ»qÕ»qÖºpغqܼsÞ¾uâÀvãÂuéÆtêÇsëÉrîÌsñÏuõÔwùØyûÚyÿá€þÞ{ø×vòÑpîÍnìËlíÌoëÌqîÐvèÍtãÈmÞÃhÞÀfáÄhæÉmêÍoìÍpïÑqôÓtöÕtõÔsòÑpðÎlíËjâÁdÞ¿dܽcÚ¼dÚ»hÕ¸hϳiʯh¶[«•Y¡‹R›†Q˜„R•€QŽ|N‰vKˆqH‡pG‡pG‡pGˆqH‹tKŽwNyPŒuLxO“|S—€W™‚Y˜X–V“}T‘{RŽ{QzPŒyO‹zOŒ{PŽ}R~SŽTŽTŒSŒS‹~R‰|P…zMƒwMpI~nJ}mI}mI}mI}mI~nJoK†vR…uQ„tPƒsOqM€pLoK~nLnN‚mPƒnQ„oR„oR…pS†qT†qT†qT†qT†qT†qT…pSƒnQlO€kNzeHydGvaDt_Bq\AnY>lWlV?mW@mW@mWBlUCkTDjUDjSCgR?gP>dO!>!?"?"@#@#@#>!>!= = <<;;= = = = = = = = ?"?"?"?"?"?"?"?"B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$E#E#F$F$G%G%H&H&K) K) J(K) L*!N,#O-$Q/&R0'S1'T4'V7%W:(Y=(]>)^?*cC.eB,hD,oH+vM-~T.…Z/Š_,—g)­|9³ƒA¯€<®>ª:§|8©‚=©„>¦…>¥„?£…=£†@¥ˆB¥ŠC¦‹F¨‹I©ŒJ©LªŽM¬Q­‘R¬’U¬’U¦T¥ŒS¢‰Q ‡Oœ…O›„NšƒOœ‚O¦†S¨‡T©ˆU«ŠW­‰W­‰W­‰W¬ˆV±‹Z²Œ[¶Ž]¸_º’a½•dÀ–fÅ•eÏ•cÓ•bÖ—dØ™fÙšeÙšeØ™cØ™cØ—aÛšbÞeßždÞeßždâ¡gå¥hë°lí´mò¸oô¼qö¾qö¿oô½mð¼iñ½jò¿nóÀoï¾oï»oí¼pï¾ròÁtöÆrøÈsûËwüÎyûÌ|öÈzïÄvë¿vßµmׯiѪeѪiÕ¯pÚ´uÛµwÚ´v×´tÖ³qÓ²oбnѳmÒµoÓ¸qÕºsÕ»qÕ»qÖºp×»qܼsß¿vãÁwäÃvìÉwìÊsíËtïÍsóÑwöÕvùØyûÚyþÞ{ûÛxöÕtðÏníÌmëÊkìËnêËpìÎtèÍtäÉnßÄiÞÀfàÂhæÉmëÎpíÎqïÑqôÓrôÓrñÐoïÎmîÌjíÌkâÃfÝ¿eÙ»cÔ¹bÒ¶cÏ´cɯdĬf²šZ§‘UžˆO˜ƒN–‚P”RzOˆuJ‰rIˆqHˆqH‰rI‹tKvMxO‘zQyP“|S—€WšƒZ›„[›„[™‚Y–€W•V‘~T}S|RŽ}RT“‚W”ƒX“„Y‘‚W‚V‚V‚V€T‰~Q†zPƒtMƒsOƒsOƒsOƒsOƒsOƒsOƒsO‡wS†vR…uQ„tP‚rNqM€pL€pN‚mN‚mP‚mPƒnQƒnQƒnQƒnQ„oR…pS…pS†qT…pS„oRƒnQlOjMxcFwbEu`Cs^Aq\AnY>lWlV?kU>jT?jSAhSBhRDgRAfQ@eP=dO`J<^H=\F;ZC=YB!>!= = <<;;= = = = = = = = ?"?"?"?"?"?"?"?"B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$B$E#E#F$F$G%G%H&H&K) K) J(K) L*!N,#O-$Q/&R0'S1'T4'V7%W:(Y=(]>)^?*cC.fC-hD,nG*tK+}S-„Y.‰^+˜g,¯~<µ…E±?°ƒB«€<§{:©‚?¨ƒ?¥„?£‚? ‚< ƒ?¡„@¡†A£ˆC¥ˆF¥ˆF¥‰H¥‰H¦ŠK§‹L¥‹N¦ŒO£ŠQ¢‰PŸ†N„LšƒMšƒMšƒOƒP¥…R§†S¬ˆV®ŠX¯‹Y°ŒZ°ŠY°ŠYµ\¶Ž]·^¹‘`¼’b½“c¿•eÓcÒ–dÕ–aÙ—cÛ™eÜšfÜšfÚ›fÙšdØ™cÚ›eÜgÜžeÚ›eÙ›bÛdÜ dâ¨hâ«hè¯jé³kì¶lí¸lî¹kíºiê·fì¼jï¿mïÀpï¾oí¾pïÀrñÂrùÉuúÊuúÌwúÌwøÉyóÅwíÂtê¾ußµmÖ®hϨcЩhÕ¯pÛµwÚ¶zÙµwÙ¶v×´tÔ³pѲoѲoÒµqÔ¹rÖ»tÕ»qÕ»qÖºqؼsݽtàÀwäÂzæÅxïÌzïÍvðÎwñÏuóÑwöÕvùØyûÚyúÚw÷×tóÒqïÎmìËlëÊkëÊméÊoéËqçÌsäÉpàÅlßÁgáÃiæÉmëÎpñÒuòÔtôÓrñÐoìÌiéÉfêÈfêÉhäÅhÝ¿eÖ¸`Ï´]̰]É®_Ī`À¨b°˜X§‘U†P˜‚P—‚S•€SŽ{P‰vL‰rH‰rHŠsI‹tJŒuKxNyO’{Q•~T–U™‚X›„Zœ…[œ…[šƒY™„Y—‚W”V’T‘~S‘€T“‚V–…Y˜‡[–ˆ[”†Y‘„W‘„W’…X‘„WŒSˆ}P‡xQˆxTˆxTˆxTˆxTˆxTˆxT‡wS†vR†vR…uQ„tPƒsO‚rN‚rNqO‚mN‚mP‚mPlOlOlOlO€kN„oR„oR…pS„oRƒnQlO€kN~iLwbEvaDu`Cs^Aq\Ap[@nY>mX=iS;jTkU>kU>jT=iS>hQ?gRAeRCdQ@cP?bP!>!= = <<;;= = = = = = = = ?"?"?"?"?"?"?"@"B$B$D#B$D#B$D#B$D#B$D#B$D#B$D#D#E#E#F#F$G$G%H&H&K) K) J(K) L*!N,#O-$Q/&R0'S1'T4'V6'Y:([<*]>*_>+dD/fC-hD,nF,tK+{T-ƒY/‰],™h.°=·†C³‚?´ƒ>¯€<©|9ª‚=¨ƒ?¤ƒ@ ‚<ž;‚;žƒ<…?ž†@¡†C¡†C¡…D¡…D ‡G †I †IŸ‡K¡ˆO ‡O„L›‚L›N›Nœ‚Qž‚P¢‚O¥„Q«‡U®ŠX±[³\³\µ\·]¸Ž^¹_»`¼aÀ‘cÁ’dÄ’aÒ–dÕ–aÙ—cÛ™eÞ›gÞ›fÞ›fÞ›fÝšcßœeßžhÝœfØ™cÕ˜aÖ™bלdØ¢dØ¥dÛ¨g߬jã±læ´mé·nê¹mä³fç¸jì½oî¿qî¿qí¾pïÀrñÀsþÉyþÉyýÊyùÈyöÇyñÃxë¿vè¾vݵpÕ®iϨeΨgÖ°qܶwÛ¸xÚ¶xضwÕ¶vÒ³sгqгqÒ·tÕºu×¼uÕºsÕ»q×»rؼrܾuáÁxäÄ{çÆyïÎ}ñÎzñÏxòÐwôÒxöÔzùØ{úÙzöÕvõÔuòÑrïÎoìËnëÊmêÉlèÉnçÉqæËråÊqãÅkàÂhâÃhçÈmìÍpõ×w÷ÖwõÔsïÎmèÇfäÃbäÃbæÅfåÆiÝÀdÔ¶^˯[Ç­YĪ]¿§]¼¥a¯š[¦’WœˆS˜„R–„V•‚W~S‹xN‰sJŠsJ‹tKŒuKvLxN‘zP’{O˜U˜UšƒW›„Xœ…[œ…[›„Zš…Z™„Y•‚W“€U’T’U•„X˜‡[š‰]˜Š]•‡Z’…X’…X”‡Z“†Y‚T‰~Q‰|RŠ|UŠ|U‹}V‹}VŠ|UŠ|W‰{V…wR…wR„vQ„vQ„tPƒsOƒsOƒsQnMnNlM€mM€kLjKjK~iJƒnOƒnO„oP„oP‚mPlOjM~iLvaFvaFw_Es^Cr\Dq[CpZBoYAjT=kU>kU@kU@kU@hS>gP>eP=dQBdQBcPAcP?bO>aN=aO;`N:bO>aN?_L>]J<[G"?#?$= @"B$D&D&D&B$A#> > > > > > > > <<<<<<<<> > ?!@"A#B$C%C%C"C#D"C#D"C#D"C#D"C#D"C#D"C#D"D"E"E"F#F#G$ G$H%H%J(J(L* M+!O-#P.$R0&R0&P.$Q/%T2(W5)Z8,];/`?0c?/dA.gC-kE.mH-rK,yS/‚\5Œc5¤s9·‚@ÂŽEÁŒ@»†8¸„8¶„=°ƒ?­†A§†A¡…<›ƒ9™ƒ8–ƒ7—ƒ:™‚<„A „C „Ež…E…Gš…F™ƒG™ƒI—H—€J—€L™L›Pž‚R „U£„U§†S«‡S¯ŠV²Yµ\¹‘^»‘_¼_¿‘`¾_¾Ž^À^Â`Æ’cÊ–gÍ—h×›iÙœfÜhàhãiägçœeæ›dã˜aá˜aà™cßšcÜ›eÚ›eØ›eÔeÌžcÊ dΤhÓ§j׫lÚ­lܯlß°lå¶pè·rêºrì¼rî¼sí»rìºqî¸nüÀxÿÀyýÁ{ùÀ{ó¾zì»yä·váµvÖ¯nÏ©hË¥dÌ©gÔ±mÚ·sÜ·sÖµrÖ¸zÒ¸{жyϵxεuÒ¶wÓ·vÔ¹vÖ»t×½sÙ½tÚ¾tÝ¿vßÂvàÃwâÂuíÌ{ðÐ{óÓ~òÒ{ïÏxìÌuíÍvïÐvíÎtìÍsêËqèÉoèÉnéÊoêËpëÌrèÊrãÈoáÃkßÁgâÃhèÇjïÎoóÒsõÔsõÔsòÑrïÎoçÉiàÄcÛ¾`׺\׸[׸[Ô¶\Ï´]ɰ^«]»§`·¥c¨˜\¢“Z›‹W”†U‘ƒV~S‰zO‡uM‰sLŠrL‹sMŒuLyO•~RšƒW‡X‡Xœ†W›…Vš„U›„X†Z ‰] ‹^ž‰\›‰[šˆZšˆZ™ˆZš‰[›Š\œ‹]›^šŒ]™]˜Œ\—‹[–ŠZ•‹Z”‰[ކX†ZŒ…YŠƒW‰€UˆT‡~U†}T…yQ†zRˆ|Vˆ|V‰{V‡yT…wT…uQqMpI~lF|mFmI~lH{iEygC~jIkJjJ‚kKjK€iJhI~fJx`Hw_Gw]Fu]Et[ErYCoYBoYBkU@jT?gR?eP=cN;aO;cN=aN?bO@aOAaOA`N@`N@`N@`N@`N@aOC`NB^LB\J@YG=VC ?"@#?!@"B$C%D&C%B$A#> > > > > > > > <<<<<<<<> > ?!@"A#B$C%C%E#E#E#E#E#E#E#E#D"D"D"D"D"D"D"D"E"E"F#F#G$ G$ H%H%J(J(L* M+!O-#P.$R0&R0&R0&S1'U3)W5+Z8.\:.`<.a=-e@.gC-jD-lG,pL,vR.\6‹b4£r7¸‚<ÇDÆ=Á‰6¾‡5¹…:³„>®†A¨†?¡…;œ…9—„7–„8—ƒ:—ƒ> „C „CŸƒD„D›ƒE˜‚F—G–‚G–€G–I–K™Nœ€P S¢ƒU¥…Vª†T­ˆT²ŠW¶Ž[º^¼’`¿“bÁ“bÄ”dÅ’cÅ‘bÅ‘bÇ‘cÊ”fÏ–iÓ™kÙkÛžhßžhážgägçœeéšbéšbç˜`æ™aåšcâ›eßœeÛœfÙœfÔgÍžfÊ¡i̤iÏ¥kÒ¨lתoÙ­pÜ®pà³rä´rå¶rç¸té¸sé¸sè¸pêµoø»xû»{ù¼}ö¼}ðº~è·|á´yÛ³vÔ­rÍ©mÉ¥g˨hÒ¯m×´pÙ´pÔ³pÓ¶z϶}ζz͵yϵxзwÓ·vÔ¹vÖ»v×½sÙ½tÛ¿uÝÀtßÂtàÃuáÄtëÌyïÏzñÑ|ñÑ|îÎyëËvìÌwíÍxìÌuëËtéÉrèÈqèÈqéÉrêÊsêÌtçÌuåÊqãÅkáÄhåÃiéÈiïÌnòÐoõÓrôÒqñÐqìÎnçÈkáÄfÚÀcÚ½aÙº]ع\Õ·]Ï´]ɰ^Á«_º§b´¥d¦—\Ÿ’[˜ŒX“‡WƒV€Tˆ{Q†wNŠtO‹sO‹sMvMyO•~Rš„U‡V‡Vœ†Uœ†Uœ†U‡Xž‡[Ÿˆ\ŸŠ]ž‰\›‰[šˆZšˆZ™ˆZš‰[œ‹]Œ^›^›^šŽ^™]˜Œ\˜Œ\–Œ[”Œ[‰YŒˆY‹‡XІWŠƒUˆU‡€T‡€T†}T‡~UŠ~XŠ~X‰}W‡{U†xS…wR‚sL€qH}nE}nE~oH€nH}kEzhB~jG~jGjJjJ€iIhH}fG}cHy_Hx]Hw\Gv[FsZFrYEoYDnXClUCkTBgRAeP?aN=`M<`M>`M>_M?_M?_M?_M?^L@^L@^L@]K?_MC^LB\IBZG@XE>VC ?"?"?!@"A#B$C%C%B$B$> > > > > > > > ========> > ?!@"A#B$C%C%F$F$F$F$F$F$F$F$D"D"D"D"D"D"D"D"E"E"F#F#G$G$H%H%J(J(L* M+!O-#P.$R0$R0$T2&U3'V4*X6,Y7+[9-^:,_;+d?-fA.jD-kF+nJ*uQ-~[5‰`2¡p5¸‚:Ê’EÍ•BÈŽ:ÄŒ9½ˆ<¶†>°…@©‡@¢†<†8›…9˜…9™ƒ:šƒ?¢„D¡ƒE ‚F€Dš€E˜€D—~E”~D—~F—~H—~Hš~Lž€N¢‚S¥…V¨†V¯ŠV³‹W¸[¼“_Á–cÅ—eÇ™gȘgÌœkÌši̘hË—gÍ—hÏ™jÔœmÖœlÜ lÝ iá jå iæfçœcéšbé˜`ëšbëœdéœdçžgäŸhàŸiÜgמgÒŸhÏ hΟgÏ hÑ£hÔ¦kשmÙ«mÛ­oܯnݰoß²oß²oß²oÞ±mà±mì¶vî¶yî¸|ê¸}å·|á´{Ú±yÕ°yЭw˨pǤjȦiάmÒ°pÓ°pѯpÑ´zϵ|δyδyϵxзwÔ¸wÕºwØ»wؼsÚ¼tܾuÞÁußÂtàÃuáÅrêÌvìÎvîÐxíÏwëÍuéËséËuêÌvèÊtçÉsæÈræÈræÈræÈrçÈuèÉvçÌuåÊqåÇmäÇkèÆlëÊkïÌnòÐoôÒqóÑpðÏpëÍmçÈkâÅgÜÂeÛ¾bÛ¼_Ú»`Ö¸^ϵ^ɰ^Àª^¹¦a³¤c¥–[Ÿ’[—‹W“‡W‘„WŽTŠ}QˆyP‹uPŒtPŒtNŽwN‘zP–Sš„U‡V‡V‡UžˆWŸ‰X Š[ Š[Ÿˆ\ž‰\ˆ[›‰[šˆZšˆZš‰[›Š\Œ^ž_``›_›_šŽ^šŽ^™^–Ž]’Œ\‘‹[ŠZŽˆXކWŒ„V‹ƒUŠ‚TŒ€VWŽ€YXŒ~WŠ|U‰zSˆyR†tLƒqIoGoG‚pJƒoJmH~jE€iG€iGhIhIfG~eF|cEz`Ey_Hx]Hw\Gv[FsZFqXDnWEmVDmVDlUChSBeP?`M>_L=^K<^K<]K=]K=\J<\J<[I=ZHYF?XE>WD=VC >!>!?!?!@"A#A#B$B$B$> > > > > > > > ========> > ?!@"A#B$C%C%H&H&H&H&H&H&H&H&E#E#E#E#E#E#E#E#E"E"F#F#G$G$H%H&J(J(L* M+!O-#P.$R0$R0$V4(V4(W5+X6,Y7+Z8,]9+]9)d?/e@-hB+jE*mI)sO-{W3‡^2žn0¸‚:Í–FÒšEΕ>É‘<ÁŒ>¹ˆ<±‡?¬‡@¦‰=¢ˆ;ž‡;…;œ„<žƒ@£ƒF¢‚G €ECš}C–|A–|C•|C—|E—|E˜}FK¡N¦…R©‡W®ˆWº‘]½’]”`Ç™eËœhΟkÒ mÒ mÔ¢oÔ nÒžlМjÒkÔŸmØ oÛ¡oߣmâ¤kå¢kç¢iè fêždê›bêš_ïžfï gî¢hë£iè£jã¢jß¡hÛ hØ¡iÓ iÑžgÏœeÏždÒ¡gÓ¥jÕ§kÔ¨kÕ©lÓªjÔ«kÔ«kÓ¬kÒ«jÓªjݯsà¯uà±yß²{Û²|ذ|Ó®zЬxÌ«xȧtŤoŤn˨pΫqЬrΫqϲxδyδyϵxзwÔ¸wÕºwÖ»vÙ¼vÚ¾uܾuÝÀtßÂtàÃsâÅuäÅréËsêÌrëÍuëÍuêÌtèÊrçÉsçÉsâÄnâÃpâÃpâÃqãÄrãÄräÅsäÅsäÉräÉnæÈnèËoíÌoðÏpóÑpõÓr÷ÕtõÓrñÐqëÍmæÇjàÃeÛÁdÙ¿bÝÀdÛ¾bÖ»bжaǰ`Àª_·¤_±¢a¤•Zž‘Z—‹W“‡U‘„W‚UŒSŠ{PŽxQwQxOyO“|R—R›…VžˆWžˆVŸ‰W¡‹Z¢Œ[¢Œ]¡‹\ ‰]ˆ[ˆ[›‰[šˆZšˆZš‰[œ‹]ž_ŸŽ`Ÿ‘bža‘a‘a‘a‘aœ’aœ’a–Ž]•]”Œ]“‹\‘‰ZˆY‘†X…X‘†Y’…[‘„ZƒY€Y~W‹|UŒzTˆvN…sK„qI„qI†rM†rM„pKƒmH€iGiGhI€gHdF|aCz_Bx]By_Hx]Hv[FtYDqXDpWClUCkTBmVDkTBgRAdO>_L=]J;\I:[H9ZH:ZH:YG9YG9XF:WE9VD8VD8VD:VD:VC > > > > > > > > > > > > > > > > > ?!@"A#B$C%C%H&H&H&H&H&H&H&H&E#E#E#E#E#E#E#E#E"E"F#F#G$G$H&H&J(J(L* M+!O-!P."R0$R0$W6'W6'X6*X6*Y7+Y7+\8*\8(c>.e@-gA*iD)kF)qM+yU1„[/œl.·7ΗEÕFÓš@Í–<Ç>¾Š>¶‡?°ˆ@¬‹>§Š<¥Š=£‡=¡„>¡‚A¥ƒF¥€I¡~Fœ|CšzA˜y@˜{A–|A™|Dš}E~G¢L¦…P­‰U²Y·ŽZÅ—cʘcÍ›fÑŸjÕ£n×¥pÙ¦qÚ§rØ¥pØ£oÖ¡mÕ lÕ l×¢nÙ¤pݦpä§på§né§mì¦kì¤jí¡gîŸdìž`ò£hó¤ió§mð¨nî¨mè¦lã¢jÞ¡jÝ¡kÙ iÕžfÒ›cÏšdÐfÑ hÑ¢jÏ¢iÍ£iË£hÊ£hȤhȤhȤhȤjЩrÒ©uÓ«xÓ­|Ò®|ά|Ë«zÉ©zÉ©zƦwãrãpǦsÊ©tÍ©u˪tϰyϲxÑ´zÓ¶zÕ¹z×¹yØ»yÙ¼xܾxÝ¿wàÀwáÁvãÃvåÆvæÇwæÇtéËsçÍpçÌqçÌqçÌsæËråÊsãÈqÜÀlÜÀlÝÁnÞÁqßÂrßÂrßÂràÄqáÆoãÈmèËoíÐróÒuöÕvù×vúØvúØv÷ÕtòÑrêÌlåÆißÂdÙ¿b×½`àÃgÞÀfؽfзcƱ`½ª^µ¤^¯ _£”Y[—‹W”ˆV’…X‘„WŽUŒ}R’|U’zT’{R“|R•~T™ƒT‡X ŠY ŠX¡‹Y£\¤Ž]¤Ž_¢Œ]¡Š^ž‰\ˆY›‰YšˆX›‰Y›‹Z\Ÿ^ _ ’a¡“b ”b ”b ”b ”bŸ•bŸ•bœ’_™’^š_™^—\–Œ[•‰Y•ˆ[—Š]—ˆ]•†[’ƒX’€X~VŽ|TŽ{S‰vN‡tL‡qLˆrMŠtOŠtOˆqO‡oM‚iJƒhJ‚gI€eG€bF}_Cz\@v[@w\Gv[HuZGrWDoVBmT@iR@hQ?kTDiRBeOAaK=\I:ZG8YF7YF7YG9XF8WE7VD6UC7SA5SA5R@4R@6R@6R?8R?8R?8R?8R?9R?9O:7K65H32F21G53E63D52A30D63B41A2/A/-B.-E10I43K63K61L72N94O:5P;6P;6O:5O:5Q<7Q<7R=8R=8S>9S>9S>9T?:P=7P=7O<6L93I60E2,A.(?,&2",2",0#,.!*+(&#   " #$&&"'#$&%('*)+*+*+*+*-,-,-,-,,+,++*+*-,-,-,-,-,-,-,-,/././././././././0/0/0/000000000202030303030403.3-0,0,/+.*+(+((''&'&'&&&&&%&%&&&)$)$)$*%*%+&+&+&*%*%+&+&,',','-*()'*%)#'!%#! ""! !!##$$%%""!# # $!$% % $$%%&&'(+ + + **)))))))))))((((****,,-.//12000134565588::;;;;;;;;;;<<<<= = = = ?!?!> > ?!@"A#B$> > > > > > > > > > > > > > > > > > ?!@"A#B$C%C%H&H&H&H&H&H&H&H&F$F$F$F$F$F$F$F$E"E"F#F#G$G%H&H&J(J(L* M+O-!P."R0$R1"V5&W6'W5)X6*Y7+Z8,\8*]9)b=-d?,f@)gB'iD'oK+wS1‚Y-›k-µ6ΗDÖŸEÕœBЙ>Ë“@ÃŽ@¹‰=µ‹?±A­@¬Œ?©‰@§†A§„D¨H¦H¡|EzBœyAšzAš{B›|C~EžF¡H¨…M­ŠR´X»”]¿”_ÍœdÑœfÔŸi×¢lÙ¤nÛ¦pܧqܧqÙ¤nØ£mÖ¡kÕ jÖ¡kØ£mÛ¦pߨpæ©pê©oìªnï©mð¨mñ§jð¤fò¤fõ§iõ©kö¬oõ­rò¬pë©mæ¥ká£jߤlÛ¢kØŸhÔeЛeΛdÎeËžgÉžgÇžhÄfÀeÀg¾g¿žh¿žiÅ¡oÇ£sʦvʨzË©{Ê©|ȧzƧyŦxävãt¢sÅ£sȦvÍ©wͬwίvϲvÒµyÕ¹zغzÚ½{Û¾zÝ¿yßÁyàÂyãÃxäÄwæÇwèÇvêÉxêÊwçÌsæËpæËpçÌsèÍtçÌsäÉrâÇpÛ¿kÜÀlÞÂoàÃsáÄtáÄtáÄtàÄqáÆmåËníÐró×vúÙzûÚyüÚxüÚxù×u÷ÕsñÐqêÌläÅhßÂfÚ¿dÙ¾cáÆkÞÃhÙ¿hѸfƱb»©_³¢]¬ž_ ”ZœZ–ŠV”ˆV“†Y’…XƒWŽT–€Y–~X–V–U˜Uœ†W ŠY¢ŒZ¤Ž\¤Ž\¤Ž]¤Ž]¤Ž_£^¢‹_ ‹^ˆYšˆXšˆX›‰YœŒ[žŽ] _¢’a¢”c¢”c¢–d¢–d£—e£—e¢˜e£™f –cŸ•bž”aœ’_œ^šŽ^™]˜Œ\œŽašŒ_™ˆ]•„Y’VT|R|T‹uN‰sL‡qLˆrM‹uPŒtP‹sQˆpN…jL„iK…hJƒfH€bF|^By[?wY?vZEtYFrWDpUBlS?jQ=fO=eNaK=^H:ZG8XE6XE6WD5XF8WE7VD6TB4SA5Q?3P>2P>2P>4P>4P=6P=6O<5O<5O<6O<6L76I43E10C1/C41D52B41@2/C52B41A2/@1.B0.D0/G21I41J52K61M83N94O:5P;6O:5O:5R=8S>9S>9T?:T?:U@;U@;U@;Q>8Q>8O<6L93H5/D1+@-'>+%3$+3$+1$+/"),(($"  ! !"!" #!&!&#&$%'&)(*),+,++*+*/..-.--,,+,++*+*-,-,-,-,-,-,-,-,/./././././././././.0.0.0.0.2.2.4/4/4/4/5/5/5/4/4.3-2,/+.*-),(+()&'&'&'&'&&&&&&&)$+%+%,&,&-'-'-'+%+%+%,&-'.(.(-**+)*'(%&#$ "  !!"#$%%%$ $ %!%!& & '!' %%&&''((+++**)))))))))))((((****,-..//22/00134555588::;;;;;;;;;;== = = <<<<@"?!> => ?!A#B$> > > > > > > > ?!?!?!?!?!?!?!?!> > ?!@"A#B$C%C%G%G%G%G%G%G%G%G%F$F$F$F$F$F$F$F$E"E"F#F#G%G%H&H&J(J(L*M+O-!P/ R1"R1"U4%V5$W6'X7(Y8)Z9*]9+^:*a<,c>+e?*fA'hC(mI)uQ/~W,˜j,²5Ë—CÕžDÕ@Ñš?Í•@Æ‘A¼?¹Ž@µB´B²ŽB®ŒB­ˆD¬†G©€H§~H¤{E yBxAž{CŸ|BŸD €E¤G§„J­‰OµŽU¼“[™aÈ›bЛeÔ›dמgÙ iÚ£kÚ£kÚ£kÚ£kØ¡i× hÖŸgÖŸgØ¡iÚ£kܨoá©pé«pí«oð«pò¬pô­oõ«lõ©kõªiö«jø¬nù¯pø±sõ¯sð«pé§kã¥jà¥mݤmÚ¡lÖŸiÑœhΛfË™dÇ™eÆ›hÛh¿šf¼˜f¹—g¹™h¹™hºškÀ›nÞqÆ¡tÇ¥xɧzȧ|Ǧ{Æ¥zâuâu¢s¢sĤsȨw̪zÏ®yίvѳuÔ¶xغzܽ}Þ¿~ßÀ}áÀ{äÄ{äÄyæÅxèÇxêÉzíÊyîËzíÍzèÍvåÌräËqåËtçÍvçÍväÊsáÇpÞÄoßÅpáÇräÊvåËwåËwåËwäÊsæËpêÐqóÖxøÜ{þÝ|þÞ{üÚxúØtöÔróÑoîÍnèÊjåÆiáÄhÞÃhÞÃhãÈm߯lÙÁkкgıd¹¨`°¡\«^Ÿ“YšY–ŠV”ˆV”‡Z“†Y’„W’V™ƒ\š‚\™‚Y™‚X›„XŸ‰Z¢Œ[¥]§‘_¦‘\¥]¤Ž\£\£\£^£Ž_œ‡XšˆX›‰Y›‰YœŒ[Ÿ^¡‘`£“b¤–e¤–e£—e¤˜f¥™g¥™g¥›h¥›h£—c£—c¢–b ”`Ÿ’^ž_^œŽ] až_›ˆ]–ƒX“€U}R‘|Q‘{RŒtNŠrNˆpN‰qOŒtRŽtSŒqSŠoQ‰kOˆjNˆiM…fJaH}]DzZAwW@tXCrWDpUDmRAiO>gMaJ<^H:[E7XE7WD6VC5VC5WE7WE7UC5TB4R@4P>2O=1N<0O=3O=3O<5N;4M:3M:3L93L93J54G21C/.A/-A2/C41A30=2.@51A30B30A2/C1/D0/F10F1.H30I4/K61M83N94O:5O:5N94T?:T?:T?:U@;U@;VA8O<6L93H5/D1+@-'>+%3$+3$+1$+0#*- ))%$!"! "!"#"#!$!$"'$'$%'&)(+*,+,+,++*/./..--,,+,++*+*-,-,-,-,-,-,-,-,/./././././././././.0.0.0.0.2.2.4/4/4/4/5/5/5/5/5.4.3-2,1+.*-)-)+'*'*'('('('('('+%+%+%,&-'-'-'.(*$+%+%,&-'.(.(/)-,*+()&'#$!"    !"#$%%& %!%!&"& '!'!' (!%%&&''((+++**)))))))))))((((****,-.//022//0033555588::;;;;;;;;;;= = = = <<<<@"?!===?!A#C%> > > > > > > > ?!?!?!?!?!?!?!?!> > ?!@"A#B$C%C%G%G%G%G%G%G%G%G%F$F$F$F$F$F$F$F$E#E"F#F$G%G%H&H&J(J(L*M+O.P/ R1"R1 T3"U4#V5&X7(Y8)[:+^:,_;+a<,c>+e?*fA'gB'lG*tP0}V+—k.±7Ê–CÔžFÔ@Ò›@Í—?Ç“@½Ž>»A¸‘B·’BµB³D°‰D¯†H©E§|G¤yD¡xB yB |B¢~D£€F¥G§ƒGª†J±ŠO¹‘VÁ—[ÆœbÌžcÑšbÕ™c×›eÙgØŸhØŸhØŸhמgמgÕžfÕžfÕžf× hÚ£kܨoá©pê¬qî¬pò®qó¯põ¯qö¯o÷­l÷­l÷­lø®mù²rù´sö²uï­pê¨lä¦kÞ¦mݦnÙ¤nÖ¡kÒŸjÍ›fÈ™eÅ—eĘgÁ™h½—hº•h·•g¶•h·–k¹–l¾™mÁšoÄŸsÇ¢vɤxÊ¥yɤxƤvásásáqãrĤqȨuͬyЯzаuѳsÖ·wÚ»zÞ¿~àÁ~âÁ|ãÂ{åÅzçÆyèÇxìÉxíÊyïÌzðÍ{ïÏ|éÍyæÌwäÊuæÌwèÎyèÎwäÊsáÇpáÇpãÉræÌuèÎwêÐyêÑwéÏxèÏsëÑtïÕt÷Ûzüà}ÿà}þÞyûÙuøÖròÐnðÎlìËjçÉiåÆkäÇkâÇlâÇnãÊpßÇoØÂmϺiñe¹¨`¯ ]¨]ž”YšY–ŠV”ˆV”‡Z”‡Z“…X“‚Vœ†]œ…\›„Z›„X‡X ŠY¤Ž\¦‘\©”_¨“^¦^£[£\£\¤Ž_¤`œ‡XšˆX›‰YœŠZ\Ÿ^¢’a£“b¤–e¥—f¤˜f¥™g¦šh§›i¦œi§j¥™e¤˜d£—c¢–b¡”`Ÿ’^ž_ž_¡bž_›ˆ]–ƒX’T}R‘|QzQ‹sM‰qMˆpN‰qOsRŽtSŒqSŠoQŠlP‰kO‰jN†gK‚bI}]D{Y@wW@sWBqVCoTClQ@hN=eK:aJ:_H8`I;_H:\F8ZD6VC5VC5VC5VC5WE7WE7UC5SA3Q?3P>2N<0M;/O=3O=3N;4M:3L92K81J71J73H32D0/@.,@.,@1.A30>3/<1-?40?40A30C41D20D20D0/D/.G2/H3.J50L72N94N94N94N94T?:T?:U@;U@;VA8O<6L93H5/D1+@-'=*$/ '2#*3&-1$+,(($&#&##"#""#!" # #"'%('()()(*)*)+*+*,+-,-,-,-,-,-,-,-,/./././././././.-,-,-,-,-,-,-,-,3!12 02.1-1-2.50615/5/5/5/7/7/7/5/5-4+4+3*2)1)1).(+%+%+%*%*%*%*%*%+%.&/'0(0(/'.&-%-%.&0(1)0(.&,$)#(''&&%%$!" !   !""###&&&''(() (()+,.!/ / ++++++++++**))(''''')))),-.//022//00335544678999<<<<<<<<;;;;;;;;=> > ?!?!@"@"@"===<<;;:<<==> > ?!?!> > > ?!?!@"@"@"I'I'H&H&H&H&G%G%C!C!D"E#F$F$G%G%H&H&I'I'J(J(K)K)L*M+M+N-O.O.P/P/U4#V5"W6%Y8'[:)]<+`<.a=-b=-a<)b<'d>'iD*nI,tP0{T+“f-¨y3Å’CÔ JÙ¢GÓœAÌ–>È”@Ä”BÁ”C½”D¹“B·AµŽC¶‹Fµ‰Jª}Dª}F©|E§|E¥|D¤}B¥~C£C«„I¯‰K´ŽP¸S¼’VÁ•XÇš_ÎbÔœcךcלdØeØeÙžfÚŸgØ gןfÕdÒšaÒšaÕžeÛ¤kâ«rç¯tä¦kç§jê¨kï«lò®oö±pø³pú³qó¬jñ¬ið«jñ­lò®qï­pë©mä¨lÜ¥lÖ£jÑ hÏžfΟiÍŸkÌžlÇ›jÇmØk½”h·e¶f¶‘g¸’k»•n½“kÁ–lÅšoÊŸtÌ¡vË¢tÊ¡sÉ¡pÈ¢qÈ£oÇ£oÆ¥pȧr˪uÌ­wÏ®xÍ­pбqضwÞ¼|ãÂæÅ€éÇ€éÇåÃyêÆzïË}õЀ÷ÒöÒ~ôÐ|ñÎzíÎ|çËxâÆsâÆsãÇtäÈtâÇpßÄmêÏvìÑvðÕzóÙ|õÛ~öÜ}õÛ~ôÚ{÷Ý|øß{üà}üà|ýÝzùÙtõÓoñÐióÑmïÍkèÇfãÅeäÅjäÇkâÇlàÇmáÉqÚÄnÓ¾kÊ·hñe¸ªc¯¡`¦›]Ÿ”\’\™Y–ŠX”†Y”†Y–…Y˜…Z‡^Ÿˆ_ ‰_£Œ`¥`§‘`©“aª•`«–a©”]§’]¥[¥]¥]§‘`§“aŸ‹Y‹Y‹YžŒZžŽ[¡‘^£“`¤”a£–b¤—c¤˜d¦šf§›g¨œh¨ži¨ži¦šf¥™e£—c¢–b¡”`¡”` ’a ’aŒ^Œ^œ‰^š‡\–ƒX’T{PŽxOŠrNŠrP‹sQ‹sQ‹pRˆmO†kM„iK‰kO…gKaH~^E|\CxX?uR0N<0K9-H6*G5)L:0L:0K81J70I6/I6/I60J73G32F23C11A//>..<.-:/-:/-:/-:/-<.->..A//B00C/0D0/F1.G2-H3.I4/K61M83N94N94N94O:5Q<7R=8S>9S>9S>9R=8R?9R?9P=7N;5J71F3-B/)@-'1")3$+2%,0#*,(($'$(&"!! !" !" %!&$'()*)*)+*+*,+,+,+-,-,-,-,-,-,-,-,/./././././././.-,-,-,-,-,-,-,-,2 02 03/2.2.3/50505/5/5/5/7/7/7/7-8,5+5+3*3*2)2)1).&,&,&,&,&+&+&,&.&/'0(0(0(0(/'.&.&.&/'.&.&-%+#*"($'&&%%$#" !     !""###&&''((()()*+,- ./ ++++++++++**))(()''')))),-..//22//00335544678999<<<<<<<<;;;;;;;;=> > > ?!?!@"@"==<<;;;:<<<==> > ?!> > > ?!?!@"@"@"H&H&H&H&H&H&H&H&C!D"D"E#F$F$G%G%H&H&H&I'I'J(J(K)M+M,N-O.P/ Q0!Q0R1 T3 U4!V5"X7&Z9(\;*_;-`<,a<*a<*b<)d>'hC)nI.sN1yS,‹`+ s0¼Œ@ÐJÕ¢GÔžDÏ™AË—CÄ”B•D¾•C»•B¹“B¸ŽB¶ŠCµˆG®€E­~Fª}D§}C§}C§B§€E¨‚D«…G¯‰K¶ŽQº’UÀ”W×ZÈš^ΜaÔœcÖ›cÖ›cÕdלdלdØeØeÓ›bÒšaÑ™`Ó›bÖŸfݦmã¬sè°uã¥jæ¦iè¨kìªmî­mñ°nõ±pö³oó°lñ­lï®lð¯oò°sð°sí­pæªnئkÒ¤iÍ gËžeÌŸhÊŸjÈjÆšiÇœoÄ™l¾”jºf¸Žf¶h¹‘m¼’lÄ—nÆ™oÍžtÑ¢vÓ¤vÔ¦uÑ¥tѦsÎ¥oͦoÊ¥nɦnʧoʪqË«r̬qЮoÒ°p×µuݼyâÁ|çÅ~êÈ€íÉêÆzíÉ{óÎ~÷ÒøÔ€öÒ|õÏzñÎzìËzæÉyãÄtàÄqäÅsãÇsåÇqáÆmîÐvïÕxô×yõÛzùÝz÷ÞzøÜyöÝxùà|úá|ýá}þã|ÿßzûÛt÷ÖoõÔmõÓoðÎléÈgäÆfäÅjäÇkáÆmßÅnÚÄnÕÁkÍ»iǶhÁ±f·©b« ^¤š\Ÿ”\œ‘[™[•‰W”†W“…X–…Y˜…Zœ†]ž‡] ‰]¢Œ]¥^§‘_¨“^©”_ª•^©”]¨“^§’]¦^¦^§‘`¦’` ŒZ‹YžŒZžŒZŸ\¡‘^¤”a¥•b£–b¤—c¤˜d¦šf§›g¨œh¨ži¨ži¦šf¦šf¥™e¤˜d¤—c¢”c¡“b ’aŒ^œ‹]œ‰^š‡\–ƒX’T‘|QŽxOŽvRŽvTŽvTuS‹rS‰nP†kM…jLˆjN„fJ_F{[BxX?tT;nN7jJ5eH6cH7bG6`E4]C4[A2XA3W@2V?1W@2WA4XB5WC8WC8VB7UA6R@2R@2Q?1P>0N<0K9-I7+G5)K9/K9/K81K81J70I6/H5/H51F21D22B00>..;-,9.,9.,:/-9.,:/-<.-=/.?//B00D01D0/F1.F1,H3.I4/K61L72N94N94N94O:5Q<7R=8S>9S>9R=8R=8R?9R?9P=7N;5J71F3-C0*A.(3#-3#-0#,.!**')&)'** ! """& '#()*+*+*,+,+-,-,-,-,-,-,-,-,-,-,-,/./././././././..-.-.-.-.-.-.-.-1-3-4.5 /6/5.4-4-6.6.8.8.8.8.9.8.8,8+8+5*5*4)4)3)/%.%.%.%.%,%,%,%/'/'0(1)1)0(/'/'0(/'-%+#*"*"*"*"($'#&"%"# #    !""###&'''() ))))*+,-..,-------,,++**)()''')))),,-.//12//00335544678999<<<<<<<<;;;;;;;;===> ?!?!?!@"=<<<;:::;<<==> > > > > > ?!?!@"@"@"H&H&H&H&H&H&H&H&E#E#E#E#F$F$G%G%G%H&H&I'I'J(J(J(N, N-O.P/Q0R1 S2!T3"T3 U5 V6!W6#Y8'Z9(]9)^:*`;)`;)b<)d>)hB+mH-rM2wQ-Y(•l.±…>ǘHÒ IÓ GÏ›EË™D“A•BÁ™DÀ˜C¾•Cº‘B¶ŠAµ…C±ƒE¯E«~C§}A§}A¨€Bª„F¬†G«…F±‹L¸R½•W•ZÄ—\Èš_ÍœbÓœcÔœcÓ›bÒ›bÓ›bÒšaÒšaÒšaΖ]Ï—^ÒšaÕdÙ¡hÞ¦mä¬sé®vâ¥lä¦kæ¨kêªlí­oï¯oñ²oò³pñ²oï°mî®nï¯qñ±sï±tì®sç¬rÕ¤jÍ£iÉžgÇœeÈhÇžhÅœhÙgÆ›nØk¿”j»f¹f¹g»‘k¾’kËœrÍžrÒ¡vÖ¦xÙ©yÚ«wÚ«wÚ«uØ«rÕ«oÒªmЪlÍ©k̪kË«nˬlѯoÔ±o×´rܹuâ¿{êÅîÉ‚ò̃ñÌ~óÎ~øÒúÔúÔøÒ}÷ÏzòÎzíÊyçÈxãÂsáÂpãÃpåÇqçÇpæÈnóÔwôØwøÚxúÞzýàzüáxüßwúßvúázûâ{þã|ýâyÿßxüÝsúÙpø×p÷ÕqòÐnëÊiæÈhåÆkäÇkàÅlÝÃlÓ½hÍ»gɸhŵh¾°g¶©c« `£™\Ÿ”\›’[˜ŒZ•‰W”†W“…V–…W—…Wœ‡\ž‡] ‰]¢Œ]¤Ž]¦^§’]¨“^¨“\©”]©”]©”_¨’`§‘_¦^¤]¡ZŸŽZŸŽZ [ \¢’^¥•a¦–b¥˜c¥˜c¤™c¥šd¦›e§œf§žg¨ži¦œg§j§j§j¦šh£—g ”dž’bšŒ_šŒ_›Š_˜‡\•„Y‘€U|RzR’{Y‘zZyYŽwWŠsTˆoQ„kMƒjL‚gL}bGz\DuW?rT2V@5XB7VB7VB7UA8UA6R@2R@2R@2Q?1N<0L:.I7+G5)H6,I7-K81L92K81I6/G4.E2.B00A.0?,.<,-:,,8,,8,,7-,8.-9/.;//>00@01A12D13E12F1.G2-H3.I4/K61L72N94N94N94O:5Q<7R=8R=8R=8Q<7Q<7R?9R?9P=7N;5K82G4.D1+B/)3#.2",- *+()&)())**! "#%&#()*,+,+-,-,.-.-.--,-,-,-,-,-,-,-,/./././././././..-.-.-.-.-.-.-.-2,3-5 /6!07 06/4-3,6.6.8.8.8.8.9.9,9,9,9,8+8+5*5*5*1&0&0&/&/&/&/&-&0(0(1)2*2*1)0(0(1)/',$)!'''( '#'#&"%!$!# " ! !    !""###'''(())****+,--.--------,,++**)()'''))))+,-../11//00335544678999;;;;;;;;;;;;;;;;<==> > ?!?!?!<<<;;::9;;;<===> > > > ?!?!@"@"@"G%G%G%H&H&I'I'I'F$F$F$F$F$F$G%G%G%G%G%H&I'I'I'J(N-O.P/Q0S2!T3"U4#V5"T4T4U5 W7"X7$Y8'\8(\8(`;)`;)b<)d>)hB+lG-pK1rN,{T)Œe.¤{9»BÊœGÍžFÊšEÆ–BÀ“@Á—CÛDÄœEšE¼“C¹‹@µ†@²…B¯ƒB«@¦}=¦>¨‚A¬†E¯‰J®ˆI³Nº’T¾–XÁ—[Ä—\Ç™^Ëš`ΛbÏ›aÏ›bΚ`Í™`Η^Η_Ζ]Ì“\И_Ô›dØ gÚ¡jÝ¥là§påªrä§på¨oç«oé­oë¯qî²sï´rðµqí²pë°né­nê®pì°rì°té¬sä¬sУjÊ¢gÆeÅœdÅœfÅœfÄšh˜fÁ—gÀ•h½’g»f»f½‘j¿“lÁ•nËžtÏ tÓ¤vÖ¨wÛ«zÞ¬wß®vݯtâ´xß³tÛ²tׯqÔ®oÑ®nЮnЮnÔ±oÕ²nÖ³oÚ¸qâ½wéÄ}ñË‚õÏ„öуøÓ‚úÔûÕ€üÔùÑzöÎwòÌwíÊyèÇvçÄrãÃpæÃoæÆoëÉpëÌoø×xøÚxýÝxþáyÿâxÿãvÿáuýátúßvùáwûàwúßtüÝsûÜrûÚqúÙpù×sõÓqîÍlèÉlæÇläÆlßÄkÛÁjÏ»eʹgƶhµg¾²h¶¬g¬£b¥›^ž•\›’[™[•‰W”†W“…V–…W˜†Xˆ]Ÿˆ^ ‰]¡‹\£\¥]¦‘\§’[§’[©”]ª•^«–_ª•`¨’`¦^¤]¢Ž[ [ [¡\¢’^¤”`¦–b¨˜d¦™d¦™d¥šd¥šd¥šd§œf§žg¨ži§j¦Ÿk©Ÿn©Ÿn§l£™h ”dc™Œ_™Š_˜‰^–‡\•ƒ[’€X}UŽzU‘}Z|[xX‹tT‡pQƒlMhI~eGy_Dv[@qU=nR:mO7jL4eF1_C.\A0[?1[?1Y=/W=0V2V@5WA6VB7VB7UA8T@5SA5SA3R@2Q?1O=1L:.I7+H6*F4*H6,J70L92K81I6/E2,C0,@..?,.;+,9++6**6**6,+6,+8.-9/.;//<00?11B23E24E33G2/G2-I4/J50L72M83N94O:5O:5P;6Q<7R=8S>9R=8Q<7P;6R?9Q>8P=7N;5L93H5/E2,C0*0 -.))('&'&()')(* !!"$& (#)),,+,+-,-,.-.-.--,-,-,-,-,-,-,-,/./././././././././././././././.3-4 ,7!.8"/8"/7!.6,5+9-9-9-9-:-:-:-:-;-;-;-9,9,8+8+6+3(2(2(2(2(1(1(1(2)3*4+4+4+4+3*2)3*1(.%*!(&&&& & & %%###""    !""###'))* *+++,,,,----........,,++**)()'''))))++,--.01//00335544678999;;;;;;;;;;;;;;;;<<<==> > ?!<;;::999:;;;<===> > > ?!?!@"@"@"F$F$G%H&H&I'J(J(G%G%G%G%G%G%F$F$F$G%G%G%H&I'I'I(N-O.P/R1 T3 U4!V5"W6#U5 U5V6!W7"X7$Y8%[7'\8(^9)_:(b<)d>)gA*kF,mH.oJ-wT,ƒ_-šr5°†>À“BƘCÕ@À‘?¿’?À–BÄœEÄŸGÄœE¿–D¼ŽA·ˆ@²…A¯„@«€<§:§€=©„@®‰E¯ŒJ°M´‘Q»•W¾–Y¿•[¿•[Ö]Æ—_ËšbÊ™_˘aÊ—^É–_É•\É”^Ë”\Í–`ÑšbמiÙ iÛŸkÛŸiÞ¢ná¥oçªsç¬ré®tê¯sí³tî´tð¶vñ¸uë±qè®nå«kå«læ«oæ«qä©oÞ§nÏ¢iÈ¡hÄd›bÜeÜešgÀ˜e»“bº‘cº‘cº‘e¼“g¿•k˜nÄšpÇžrÉ rÍ£sÒ¦uשuÛ¬vݯtݯsèº|æ¹xã·xÞµuÚ³rزqÕ²pÕ²p×´rسoÙ´pÜ·qã¼wêÄ}òÊ‚÷ЃúÓ„úÔƒýÔ‚ýÕ€üÒ~ùÏyöÌvóËtïËwíÊvìÈréÇpêÆnêÈnîËoðÏpûÙxüÜwÿßxÿâxÿâyÿãwÿàuÿàt÷ÜqõÝqöÛpõÚoøÙoøÙmúÙpúÙpüÚvøÖtñÐoêËnèÉnäÆlÝÂiØÀjÍ»gɺiƶh´i¿³k·¬j¯¥g¨ŸdŸ–]”]šŽ\–ŠX•‡X•‡X—†X™‡Yž‰^ ‰_¡Š^¢Œ]¤Ž]¥]¦‘\§’[¨“\©”[ª•^«–_«–a©”_§‘_¤]¤]¢‘]¢‘]£’^£“_¦–b¨˜d©™e¨›f§še¥šd¤™c¤™c¦›e§žg¨ži¥l¥Ÿm§Ÿp§Ÿp¥n ˜iž“e›c—Œ_—Š`—Š`•ˆ^”…^Z~WŽ|VŽ|XŒyX‰tU„oPjK{fGxcFx`DqY?oU2Y?2X>1U=1U=1U=3V>4WA6XB7WC:VB9VB9UA6TB6SA3SA3R@2O=1M;/J8,H6*E3)G5+I6/K81J70H5.D1+B/+>,,=*,:*+8**5))6**5+*5-+7/-8.-;//<00@22C34F35G55H30I4/J50L72M83O:5P;6Q<7Q<7R=8S>9T?:S>9S>9Q<7Q<7Q>8Q>8Q>8O<6L93I60F3-D1++()&$#$#%&%&$&"&!!"#$(!+$*),+*+*,+,+-,-,-,-,-,-,-,-,-,-,-,/././././././././././././././.0,4.5!-7!.7!.7!.7!.7-6,9-9-9-9-:-:-:-:-< .< .< .;-;-9,9,9,4)4)4)3)3)3)2)2)3*4+5,5,5,5,4+3*4+2)/&,#) &%$'%%%%%$$"!    !""###)))* +++,,,,,----........,,++**)()'''))))*+,,-.00//00335544678999::::::::;;;;;;;;;<<<=> > > ;;;:9998:::;;<<=> > > ?!?!@"@"@"E#F$G%G%I'I'J(K)H&H&H&H&G%G%F$F$F$F$F$G%G%H&H'I(M,N-O.Q0S2U4!W6#X8#V6W7 W7"X8#X7$Y8%[7'\8(]8(^9'a:)d>+gA,iC,lG-mH-uS0|Z-Œh.¡y4´‰;¾‘@¿>»Ž;½“?¿—@ÁœCÅ GÆžGšEÀ’EºŽC´ˆA±‡?­…=«…>«†?®‰C°I²K¶“Q¸•U¼–X»•Wº’W»‘W¿’Y•\Ä—^Å–^Å–^Æ•]Æ•]Ç”]Æ“\Ç’\ΗaÓœfÙ kÙ kÙiØœhÝŸlá£pç«uæ®uç¯vé±vê²uëµuì¶ví¸vêµsæ°pâ¬lá©lá©nà¨oÞ¦mؤkÏ¢iÈ¡hÄd›bÜeÜeÁ™e¿—d¹‘`¹‘`¹bº‘c½”fÀ—kÚnœoÁœoÞqÆ¢r̤qѨrÕ«qÚ­rÜ®pé»}è»zå¸wâ¶uÞµuܵtÛµtÛµtÛ¶rÚµqÛ¶pÞ¹sã½vêÄ{ñÊõÎùÒƒùÓ€ûÒ€úÒ}úÐz÷ÎvõÌtòÊròÍuòÎvóÎuñÎtðËpïÌpñÍoóÑpüÙuýÜuÿÞvÿáxÿâwÿávÿßtþßsöÜnóÛoóØmò×lö×k÷ØlûÚqüÛrÿÞwúØvóÒqíÎqéÊoäÆlÜÁjÖ¾hϽkɹköh¿³g»±j¶­j¯§hª¡f¡˜_ž”_œ^˜ŒZ—‰Z˜‡YšˆZ›‰[¡Š`¢‹_£^¤Ž]¥^¦‘\§’]§’[ª•\ª•\ª•^ª•^ª•`©”_¨’`¦’_¥‘^£’^£’^¤“_¥•a§—c©™e«›g©œg¨›f¥šd¤™c¤™c¥šd¦f¦Ÿi¤žl¤žn¤žn£m¡™j•gš’d—a–Š`–Š`–ˆa•‡`“…^‚[ŽXŒ|X‹xW‰vU„qQlLzgGvaBt_Br]@nV2M;/K9-I7+E3)F4*H5.H5.H5.F3,D1+B/+=++:*+8**7))5))5+*5-+6.,6.,7/-:0/=11A33C55E56H66J73K61L72N94P;6Q<7R=8S>9T?:U@;U@;VA8Q>8Q>8O<6M:4J71G4.F3-%$#" !!"#&#&#!""$%'+".%-(+*)*)+*+*,+,+,+-,-,-,-,-,-,-,-,/./././././././.0/0/0/0/0/0/0/1-7"17!.6 -6 -7-7-8 .9!/:.:.;.;.;.;.=.=.? /?!-?!-< ,< ,;+: +9*6'4'4'4'3'3'3'3)4+4+5,6 -6 -5,4+4+4+3*1(/&+"'$" ''%%%%$$!!            !""###)* **++,,----,,,,/1111111..--,,+))'''))))**,,--/0//00335544678999::::::::;;;;;;;;;;<<===> ;:::99889::;;<<<> > > ?!?!@"@"@"E#E#F$G%I'J(K)K)J(I'I'H&G%G%F$F$E#F$F$G%G%H&H'H'L+M,N-P/S2U4!W6#X8#X8!X8X8!Y9$Y8%Z9&\8(\8(]8(^9'a:)d>+f@+iC,jE+jG+qP1uT+^(•n-ª€6·Œ=¼>º<¼’>¾–?ÁœCÄŸDÇŸGÄœEÄ–H¿“H¸ŒA¶ŒB´B³D³ŽGµI¶”M¶•Pº™V»˜X¼–X¹“U¶ŽS·ŒU¼X¿’[À“ZÀ“ZÁ”[Á”[“[Å”\Æ“\Ç’\Í–`Ò›eØŸjÚžjØšgÙ›hß mä¦sãªuã¬tä­tå¯sç±uæ³tç´sèµtì¹xç´sâ¯pá«oß©mÞ§nÜ¥m×¢lÏ¢kÉ hÅœfÄ›eÄ›eÄ›ešfÀ˜d»“`»“`¹“b¹“b»•d½—h¾˜i¼šl½n½žoÁ¡pŤq̧rÓªr×­qÛ¯på·yä·vâµtà´sß³tÝ´tݵwÞ·vݶsݶsÞ·ráºuä¾wéÃzïÈ}òË~ùÐùÐ~úÐ~ùÏ{÷ÍwõÌtóÊròÉo÷ÐuøÔvüÕxùÕwøÑróÏoõÏnôÑmþØuýÚtÿÝuÿßwÿßwÿßtÿÜrýÜq÷ÝoóÛmóÙkòØjö×kùÚnýÜqÿßvÿàyüÚvõÔsîÏrêËpäÆlÛÀiÔ¼fϽkȸjÀ³e»¯e¶¬e²©f­¥fª¡f£šc –a‘_šŽ\™‹\š‰[œŠ\œŠ\£Œ`¤a¤Ž_¥^¦_§’]¨“^¨“\¬—^«–]ª•^©”]©”_©”_©“a¨”a§“^¥”^¥”^¥”^¦—`¨™b«œe¬fªf©œe¥šb£˜`£˜`¥šb¦d¦Ÿi¤žl¡nŸ›l™jœ•g™’f–c•Žb“Ša“Ša•‰c”ˆb’†`ƒ]Ž€[Œ~[‰yW†vTqP{kJvfEubBr_Ar_AnY>kV;jR8iQ7iQ9hP8dL4bG2\@2\@4\@4[?3Z@3Z@3W?3W?3X@6YA7YB:[D2N<0K9-I7+F4*F4*F3,F3,E2+E2+D1+C0,=*,:*-8),7(+5)+5+,6-.6-.6-.7./:01=13A25D58F69I68L95N94O:5P;6R=8S>9U@;U@;VAWB=U@;T?:S>9Q>8Q>8Q>8P=7M:4K82H5/G4.  !%!%! ""#$( *#-&,'*)()(*)*)+*+*,+-,-,-,-,-,-,-,-,/./,/./,/./,0.0,1/1-1/1-1/1-1/3-9"29!/7/6,6.7-; /"0=!-=!-=!-;!,: +: +: +7(7(5(5&5(5&5&5(5*6+7,8 -8 -7,6+5*5*4*3)0&-#(#  &$%$%$% %        !!""#%%)**++,,,----,,,,/1111111..--,,+))''))))**++,,//01/22345546688999;:::::::;;;;;:;;:;;<<==> ;::9988899::;;<<> > > ?!?!@"B!B"D"E#F$G%I'J(K)L* J(J(I'H&G%G%F$F$E#E#F$F$G%G%H&H'K*L+N-P/R1U4!V5"W7"[8"[8"[8"\9%\9&\9&\8(\8(\7'^9'`;)c>+e@-gC-hD,iE+nL0oN+xV(f-¤{9µ‰@º@¹;¼’<¾—<›>ÅžAÇ EÇGÇ™KÅ—LºD¸‘D¸’G¹“J¹”M»–Pº—S»˜T¾›[½šZ¼–X·U³ŠR³ŠR¸X»Y»’Z»“X¼“[½•ZÀ“ZÁ”[Å”\Å”\É”^ΙcÖhÖhÖšfØœfà¢oæªvà©sÞ©sß«rà¬sâ®tã¯uã±tã±rï½€ê¸{å±wà¬rß«qÝ©pÚ¥oÕ¤lΣlÈ¡hÄfÜeÄfÄfšfÀ˜e¾–c½•d»•dº”e¹•eº–f¸–h¸˜i¼n»Ÿo¿¡oĤq˨rÒ«rׯtÚ±sß³và²tß±sÞ°rÞ°rÞ²sß³vÞµuáµtß·rá¹sã»uæ¾vêÃxïÅyñÈy÷Î~÷Î~øÎ|÷ÍyõËuôËsòÉqñÈnúÒsþÖvÿÙyÿÚyûÕt÷ÑpôÐoõÑpûØtýÚvÿÜvÿÞxÿÞxÿÝuþÛsûÚoúÞq÷ÝnöÚmôØk÷ØlüÛpÿßtÿâyÿázüÜwôÖtîÑsèÎqáÈlØÀfÑ»eνmŸj¼°dµ«c²¨c¯¦c¬¢d©Ÿd¥šd¢–b ’aœŽ]œŒ[œŠZ‹[ ‹\¥`¥`¦a¦_§‘_¨’`¨“^©”]­˜a¬—`ª•^§”\¦’]§“^©•`ª–a¥”^¤•\¤•^¥–_§˜a§šc©œe«žg«žg¨e¥šb¢™`¡˜a£šc¦f¦Ÿi¤žn œo™lš–i™’h–e•Žd”c“Šc“Šc“‰e’ˆd’…b‚_€^Œ}\‰yX†vUqP{kJvfEscBtaCs`Bq\AnY>jU:hR:jR:fP8dL4_I4XA1XA3Y>3Y?2Y>3W?3W?3V>2YA7ZB8ZC;ZF=YG=YG=XF3O;0L8-J8.G5+F3,E2+D1*D1+D1+D1+D1-=++:*+9),8**6*,6,+7-.8.-7-.8.-:01=11@46D66F7:H88L:6N;5R;5U<7X<8Z>:Y@;YBWD>XE?XE?WD>UB;UA:S@9Q>8P?8Q>8O>7N;5J92I60F5. # #"! #$& '!(")!(#(()*)+*+*,+,+-,-,-,-,-,-,-,-,-,-,0,0*0,1+1-2 ,4.4 ,5 /5!-6/6 -5.5,6.6.9/9/919/919/:/:/:-;.< .>"0>"0>"0=!/<"/8 -7!-7!-7!-8!+8!+8!+8!+4%4%6%7$7&8%8%:&=)=+=+=+;+;+: +: +9*7 *6)4'0$, (&#$$#$!          !"$%$$%&()()+,-,,+++++++++,,--..//--,+*)(('''((((),.//012232333555789:;;<<<:::;;::8888868899888:;< 99988776778888::>>>?@ A!B C!G%G%G%G%G%G%G%G%H&H&H%H%H%H%H%H%H%H%H%H%H&H&H&H&L*M,P/S2!U4!V5"W6#Y6#]8%^8%]8%]8&]8&[6$Y4"X3!Z7$[8%]:'_<)`=*b?+b?+b?)iG.kJ+uR,†`3›r<ª?´ˆ=µ‹7»4Á–7ÉŸ=ϤEФKÏ¢OРTТW˜L¿šL¾˜M¾˜O¾˜Q¾—T¾˜W¾˜Y¿˜]¼•Z¸WµŒT³ŠTµŒV¸Wº‘Y¸”Z¸•[¸“\·“Y¹X»’ZÄ—^È›bÏžfÑ hÖ¢iÙ¥lÞ§oáªqãªsâ«sÚ©qרrÙ¨pÚ©qÜ©rݪsà«uá­të¶€êµç´}ä±zß®vÛªrÕ¦nЦlÍ©oÅ¥jŸgàhÇ¢mÈ lšg¼’`½“c¾•g½—hº•h´’d²’c´•g·˜j¹›i¼œi¿ŸlÄ£nʧqϨqѨpÓ©oÚ­tÚ¬qÙ«oÛªoÞ­râ±vç·yêºzï¾{ê»uè¹sê»sðÁy÷É~øÌøÍûÐúÏ€ùÏ}øÎ|÷ÏzöÎy÷ÏzøÏwÿÖwÿØvÿØvÿÙyÿÙxúÖv÷ÕtôÓr÷ÙwøÚxùÜxûÞzüÜwûÛtúÙrøÙoùÛm÷ÜkùÛmúÚmüÜoÿÞsÿàuÿâyÿßx÷ÚvïÓpæÎnàÌmÚÊkÖÇjÒÄkǺk÷m½³k·­f²§e®£c¬ d«Ÿe¦–b§—c§•c¤’`Ÿ[ ŒZ¡[£]§‘`«“c®–f­–dª”b©“a«–a¬—b¬˜c¬™a¬™aª™aª™aª™aª™a©šaªždªžb©c¨žc©Ÿd©ŸdªŸgª¡hª¡j¥žg¡šc ™b¡šd ›dž™b›•c¥žrŸ—p˜i’Šcˆc…`Š‚]‡Z†~Z‡[‡~]‡~]‡|\„yYvX‚tW…tVƒpR~kM{hJyfHvcEr^CnZ?iU3V>4W@8W@8U>6Q:2L5-G3,H4-G2-F1,D/*C0,C0,D1-D1-@..=--<,-<,,;--<.->00<1/B66B75A55A64B66D97F::H=;B71N=5^C"0>"0>"0=!/<"/7!-6"-6"-6"-7"+7"+7"+7"+4%4%7$7$8%8%:$<$>)?)>)>)=)=)=); ): )9(6'5&1#-*%$"###" !      """"    !""&%$$&')*)*+,--,+++++++++,,--..//.-,+*)('('(((())..//112233335555889::;=><<::;;::88886666998889;< 99887776667889::???@ AAB B G%G%G%G%G%G%G%G%H%H%H%H%H%!H%!H%!H%!H%!H%!H%!H%!H%H&H&H&L*M,P/ S2!U4!V5"W6#Y6#^7&`6&_8'_8'^7&]6%Z5#Y4"Z7$[8%\9&^;(^=*_>+`?,`@+gD.kI.tP0‚\5•m<£{>°†>¶Œ8Á–8Ç›8Ï¡?Ò¦GÒ¤LÒ£QÓ£WÑ¥\ÁšMÀ›M¿™N¾˜O½–Q½–S½•W½•Z¼“[¹Z¶W³ŠT²‰S´‹U·ŽX¹’[·”\¶–]¸•]·”\·“Y»”[Á™^ÇcÌŸfÏ hÔ£iÙ¦mÝ©oß«qâ«rà¬sÚ©qרrئq×¥pÙ¦qÛ¦rݨtߪvæ±}æ±}ä±|á°xÝ®vÙ¬sÖ©pÑ©nË«nÇ©mĤiÆ£kɤmÉ¡mÅœh¿•c¾”d¿”g¿–h»•hµ“e´“f¶—i¹šl»›j¾hÁ kǤņrЩrÒ©sÔ©rܯvÜ®sݬrݬqà®sä²uéµyë¸yï½xì¼të»sí¾vôÄzùË€üÎúÏûÐúÑûÑúÒ}ùÑ|÷Ñ|øÐ{øÑvÿÕvÿ×sÿØvÿØvÿØyúØw÷ÖwôÖvñÕtòÖuôØuöÚv÷Úv÷ÚtøØq÷Øn÷ÙkùÙjûÛlýÝnÿÝqÿßtÿÞvÿàyÿßzöÚvìÒqâÎmÜÌm×ÊlÒÈiÎÄkÄ»lÁ¸m¼²k·­h±¦d­¢d¬b«œc¨—c©˜dª–d§“a¢Ž\¡Z¢Ž[¥]©’`¬•c°–e®—c­–d«–a­˜c¯še¯še®›c­šb«šbª™a©ša¨™`¨™^ªžb©Ÿb©Ÿb©Ÿb¨Ÿd¨Ÿd© g© g§ i¤f ›d ›d¡œe¡œešeš–f¢›qœ”o”ŒgކaŠ‚^‡[ƒ{W€xTxW‚yXƒz[„{\ƒz[‚yZ€wZ€uWƒrVnP}jLzgIxeGvcEq]BnZ?jV=jV=jV>iU=gS;eQ9bN6_M9RB2OA4P@3P>2R>3WA6[E:^F<\D:\F;ZF;XH;UG:RF8OF7PD6V?7Y>7W>7V=6T;4P70L5/I2,H3.G2-E0-D/,B/+C0,C0,C1-@..?--=--=--=--?//?10A32C86C86B75A64A75B86D:8E<7JA:PB9_BVH?TF=PB9M?6J<3G90F8/$$#"! !"$!&"'"'"'$')*+*+*,+,+-,-,.--,-,-,-,-,-,-,-*0,0*0*1+3+4 ,4 ,4 ,5,5,6,6,7-7-9-9-919191919/9/9/9/9-:.;!.=#0=#0=#0<"-:#-7!-6"-7!-7!-7"+7"+8!)8!)7&7&8%8%:$:$; %= %?*@*?*?*?*> *> *+`@+eB,iG,sO/~X1‹e4›s6¬‚:¶Œ8Ø<Ç;Í¡@΢CΠHÍ MÏ¡TÏ£ZÁšO¾šN½™O¼—Pº•Q¹“R¸’T·UµŽW³‹W°ˆT®†R¯‡S±‰UµYµY·”\¶–]¹–^¸•]¹•[½–]ÚbÈfΡhÑ¢jÖ¥kÙ¨nÜ©pÞ«rà¬rà¬sÜ©rÙ§rפoÕ lÕ lÙ¡nÛ¤nݦpà«uá¬và­vß®vÛ®u×­qÕ«oÒ¬nάm̪mË©l˧kÌ¥lÊ¡kÇžhÅšgÀ•bÀ–d¿—f¼–g¹•e¸–h¹™j¼œm¾jžjÅ¡mÊ¥pΩtÒ«tÔ«uÖ«tÞ±xÞ°uß®tÞ­rá¯tä°té³wé¶uì»xê»uì½wîÂyöÈ}øÌûЂúÑ‚ùЀùÓ€ýÕ€ü×ü×ú×}ùÔ{øÔvþÖtÿ×sÿØvÿÙvýÙyûÙxùØyöØxîÒqïÓrñÕròÖrô×sô×qõÕnõÖlöÖgúÙhþÝlÿßqÿàtÿßtþÝtüÛtøÛwïÖrçÏoÞËlØÉlÕÈlÏÆkÊÃkżm¹n¼²k¶¬g²¤c® c¬œaª™a©˜dª™e«—d¨”a¥]£[¥]§’]¬’_¯•b²–d²™c±—d¯˜b²›e´Ÿh²f±žd°c¬œa«›`©™^¨˜]§˜]«Ÿcª cª cª c© e© e© g¨Ÿf¦Ÿh£œe ›d¡œe¢œh¢œhž›h›—g–l—jކbˆ€\„|X€xT|sRypO{rS|sT~uVvWvYvY~uXtV~oR|kMxgIveGudHsbFp_Cl[?jY?jY?iW?hV>eS;bP8_M7\K7SF5QD4PC3RB3TB4WD6\F9^H;_I<_I<^K=[K7T;4P91N7/K4.J3-G2-F1,C0,B/+B/+B/+B0,B0,@..=--=-->..?//A11B43D65E:8D97B86A75A75A75B86B94LCO@9K<5H92G81 % %$#"!  "# %!&#(#(#($')*,+,+,+-,.-.-.--,-,-,-,-,-,-,-*0,0*0*1+3+4 ,4 ,4 ,5,5,6,6,7-7-9-9-:2:2:2:2:0:0:0:.9-:.;!.=#0=#0=#0<"-:#-7!-7!-7!-7!-7"+7"+8!)8!)8'8%9 &:&; %; %!&? (@*?*?*?*?*> *> *="+<"+;!*8!)6'3$0!-() *#)#)"'!&!% # !   """"    !"##'&%%'()**+,-..-,,,,,,,,,,,--..//..-,+*)()())))**..//1122111133337789::<===;;::9977775555887779:;88877665557889;;C#B"B"A!AA@@G%G%G%G%G%G%G%G%G$G$G$G$G$ G$ G$ G$ H%!H%!H%!H%!H%H&H&H&L*M,P/ S2!U4!V5"W6#Y6#]8&_8'`9(a:)a:)_:(]8&]8&Z7$Z7$Y8%Z9&[:']<)_>+`@+c@*iG,qN.yV0ƒ].’k0¥}7´‹;¿–<Ø:Æ›<Æ›=ĘA˜FĘMÅ›Q¼–Kº–L¹”M¸“M¶O³N±ŠO¯ˆO®†R­…R«ƒP«ƒP¬„Q¯‡T²ŠW²X¶“]¶–]º—_º—_º–\¼˜^ÜcÈŸgÍ£iУjÔ¦kÙ¨nÜ«qÞ«rß­r߬sÜ©rÙ¦qÖ¡mÓžjÔœiÕj× jÙ¢lݨrݪsݪsÛ­rÙ¬qÖ¬pÔ¬oÒ¬mΫkΫkÑ«lÏ©kΦkÌ¢hÌŸhËžgÅ—cØe˜fÀ˜e¾˜g¾šh¾œl¿žkžjÆ¡lɤoϨqÒ«tÕ¬tØ­vÚ­tÞ°uݯsÞ­rß­pá­qâ¯pç±sæ³rç¸tç»tê¾wíÃyòÈ~öÌ€øÏ€÷Ñ€÷Ñ~ùÕüØ€ÿÜ‚ÿÜ€ýÜûÚ{úØwþØuÿØsÿØvÿÙvüÚxúÙxøÚz÷ÛzñÕtñÕrñÕrñÕqòÕoòÕmóÓlóÔhöÕdúÙfÿßlÿäsÿãuÿÞsùØqôÔoêÎkâÊjÜÅgÔÃgÒÃhÏÄjËÄjÉÁlżm¹n¼²j¶¬e²¤c­Ÿ`«›`ª™aª™c«šd­™fª–a§‘_¦‘\¨“^«”^°•`´–`¶˜bµšc´™bµœd¸Ÿgº¤k·¡hµ¡f´Ÿf°b®›aªš^¨˜\§™\«Ÿc«¡d«¡d«¡dª¡f© e¨Ÿf¥Ÿe¤f¢›d ›d¡›g£i¢œjšgš–g–Žgˆcˆ€\ƒ{W€xT}uQzqPwnMxoPypQypQypQypSypSypSzoS{lOyhJudFtcEudHsbFp_Cm\@l[Al[AkYAiW?fTYL/,>..?//@00B22C54F87G98G<:G<:D:8C97B86A75A75@72E<5L>5gNGˆg`‘jcYPmOEjRHhWMdWNdWOdUNeTLeTJdTEdTG_QH]NG[LEWHASD=O@9M>7K<5!&!& %$#"!!"# %"'#(#(#(%(*+,+,+-,.-.-.-/.-,-,-,-,-,-,-,-*0,0*0*1+3+4 ,4 ,4 ,4+4+5+6,7-8 .:.:.82828 08 08 08 08 .8 .7-8 -9!.;#0;$.;$.:#-:#-8!+8!+8!+8!+8!+8!+: ): ):&:&; '= %>!&>!&?"'?"'@!)A )A )A )@!)@!)?!)?!)@"*>#*>#*<#):!'7$5"1"."-".#,#.%*#)"'!$$# "  """"           !""#$''&&')*+*+-...----------,,--..////.-,+*)*)****++..//11221111333367889:<<>><;:988777755558766789:877665554 4 679:<<C#C#B"B"B AA@F&F&F&F&F&F&F%F%E$E$E$E$E$E$E$E$H%!H%!H%!H%!H%H&H&H&L*M,P/ S2!U4!V5"W6#Y6#]8&^7&`9(a:)`;)_:(^9'\9&\9&[8%Y8%Y8%Z;']>*_@,aB-`@)hF+qN0vS-Y,Žg0¢y7±‡;¾–?™=Û<™=¿–>¼“A½“G½–Kµ‘G³‘I²I±ŽJ®‹K«‡I§ƒI¥€K§‚N§P¦€O¦€O¨‚Qª„S­‡V¯ŠV´‘[µ”^º—_º—_»–_½˜aÜcÈŸgÍ£iѤkÓ¦mרpÙ«pÜ«qÜ«qݪqÛ¨qÙ¤pØ mÕjÔ›fÔ›fÖhÖŸiܨoÜ©pݪqÚ¬pجoÕ¬nÒªlЪiЩhѪiÓªjÓªjÓ§jÒ¦iÑ£hÑ¢jÌgÉœeÆ›fÄ›gÄœiÞjÄŸkÄŸkÆ¡lÊ£lΧpÓªtÖ­wÙ®wÚ°vݰuÜ®sݬqÞ¬oÞ¬mà­nâ¯nå¯oä±pã¶råºué¿wêÃxîÇ|ðË}òÍ}ôÏ~÷Ó}øÖ}üÛ~þà€ÿáþà~ýà|ýÝxþÛuÿÛsÿÙtýÚvúÚwøÛwøÚx÷Ûx÷ÛxôÛwòÙuó×sòÕoñÔlñÔlòÓgöÕbýÚfÿànÿätÿâtýÛpóÒkéÌhÚÀ_Ô½_ι^ʺb˽eÊÀiÇÁkÇÁmÄ»l÷m¾²j¸«e´¥d¯Ÿa¯œb­šb­šb¯œd¯še­˜a«”`ª“]¬•_°—_¶™a¹šcº›d¹œd¹œd¹Ÿf½£jÀ§n»¥k¹¥h·£h³¡c±žc®œ^ªš\¨š[¬¡c¬¢d¬¤f¬¤f«¢g© e¦ f¤f£œf¡œe šf¡›g jŸ›k›—g˜”eˆ`‡]{W}wS|vT{uSysQwqOvpPuoOtmPslOrkNqjMpiMriLwiLufGrcFrcFteHsdGqaGn^Dm]Dl\Ck[BiY@fV?cS<`P9]N9YN^N?_M?cQCcQCdRDbRC_RB]P@ZN>ZM=_KB`G@[D:I>:G>9F=8C<6B;5@93?82A:2J=4gPHˆjb’me~\SlOGgQFfUKcVMdUNdUNeTLeTJcUHcUH^PG]NG\MFYJCVG@TE>RC!&>!&?"'?"'@#(A"(A )A )A )A )@!)@!)@!)?!)B$,B$,B$,?$+="); '8$6#1"0$1%1%1'.%-$*#& $# "  """"          !""#$$('&&()*++,-.//.---------,,--..//0/.-,+*)*)****++..//112211113333667889;<??<;:977666644447766679:77765554 3 4 679:<=C#B"B"B"C!B B B F&F&F&F&F&F&F%F%E$E$E$E$E$E$E$E$H%!H%!H%!H%!H%H&H&H&L*M,P/ S2!U4!V5"W6#Y6#[6$]6%^7&_:(_:(_:(]:'\9&^;([:'Z9&Z9&[<(^?+aB.cD/aA*gH,pO0uS.~Y-‹f1Ÿw9¬„<ÀšGÞEÆŸDÞC¾™A»•B¹’E¹“J®ŒD­ŒE®‹G­ŒI«‡I¦„G¤J |H¥N£O¤~O¤€P¦€S§ƒSª„U«‡U°Z³’\¹–^º—_¼—`½˜aÜeÆŸfÌ£kΤjЦlÕ¨oÖ©nتoتoÚ©qÙ¦qØ¥p×¢nןlÖŸiÖhÖhÖfݦnܨnܪoÛ«mÙ«m׫lÔ«kÓªhÖ«gתgתgÙ¬iÝ­mÝ­oÛªoÚ©nÕ¤jСiÌŸhÊŸhÊ¡kÉ¢kÉ¢kÈ¡jˤmÎ¥mѨrÕ¬tÙ®wܲxß²wà²vݬqÞ®pß­ná°nã°oä±oç±qå´qåºuä¾wèÂyêÄyëÆxìÉxðÍ{ñÑ|õÖ|÷Ø{úÜ|üà}þâ~ýä}ýå{ÿâzÿàwÿÝuÿÜvüÛtøÛuöÚvöÚwôÛwöÝyõÜxóÚuñØqò×nòÕmòÖkôÖhø×dÿÜfÿânÿåtÿàt÷ÖmëËfàÄcѸ[ʵZij[õ]ùbŽhÄ¿kžmÆ»l÷kÀ²kº«f¶§d²£b²Ÿd°c¯œd±œe±œe°ša­—^¬–]®˜_´ša¼d¾žc¿Ÿd½Ÿc¼žb½ dÁ¤hĪmÀ¨j½¨i»¦g¸¤e´¢d² `®ž`¬ž_¬¡c«£d­¥g­¥g¬£h¨¢f¥žg¢e¢f šfŸ™ež›hŸ›kœ˜h˜”d“b‡‚\‚|X}wSztPztRztRysQwqOtnNsmMqjMohKmfIleHleIneHtfIsdEqbErcFteHufIscIqaGn^En^Em]Dk[BiYBfV?cS<`Q<\TA[TB\SB\SB^RB_RB_RBbRCdTEdTEeUFfVGcVFbUEaTDbRCcODeLE`IA\E=W@8S<4M92K70G4.F3-E2.D1-B0,B0,C1-B3.D52D52D52C52E74G96G<8H=9J?;I@;I@;I@;F?9D=7B;5A:2F?7J@7]IBvYS~]VuTMlQHiULcULbULcTMcTMeTLeTLcUJcUJ_PI^OH]NG[LEXIBVG@UF?TE>#(#("'!& %$###$!&#($)$)$)&)+,-,-,.-.-/./.0/-,-,-,-,-,-,-,-*0,0*0*1+3+4 ,4 ,4 ,2)3*5+6,7-8 .; / (>!&@!'@!'A"'A"'B#(C")B!*B!*B!*B!*B!*B!*B!*A"*D%-D%-D%-B$,A#+?!)=';%4#3$4%4%3&1%0&.%&&$#   """"  !!!!!!!!!""#$%((''()+,+,-///..........,,--..//00/.-,+)+*++++,,..//112233335555567889;;@?<;:976666644447655679:7666554 4 2 3 5 79;=> A!A!B"B"C!D"D"D"F&F&F&F&F&F&F%F%D#D#D#D#D#D#D#D#H%!H%!H%!H%!H%H&H&H&L*M,P/ S2!U4!V5"W6#Y6#Y4"Z5#\7%]8&^9']:'\9&\9&^=*\;([:'Z;'\=)_@,`D/eF1cC,hI-pN2wU2\2g6v;¨<¾™IÁGÄŸFŸE½™C¶“A³A°ŽD«ŠCªŒF­ŒI«ŒK«‰L¥…J£KŸ~K£O¡Q£~Q¡Q¤S£S§‚U¦„T®X±Z¶•_¸—aº—a¼™aÀ›dÅžeÊ£jÌ£kΦkѧmÓ©oÕ¨oÕ¨oÕ¨oÔ¥oÖ¤oØ¥nפmØ£mØ¡kמgÖžeÚ¢iÛ¥iݧkݪkÝ«lÝ­mÛ®mÚ­jß®kݬgݬiá°mç¶té¸vçµvâ²rܬnÖ¨lѤiΤhΤjΦkÌ£kÊ¡iÎ¥mѧmÔ©rØ®tݰwà³xâ´xâ´và°rá±qã²på´qèµsê¸së¸vê»wéÁ{éÄ}ëÇ}éÈ{èÇxëÊyðÐ{ôÖ~õØ|ôÚyöÝyùàyûãyüæyþèyÿèzÿäxÿáxþÞwùÜtöÛtóÚuóÚvòÚvñÙuðØtð×rïÖoñÖmò×nõÙnøÚjüÙeÿÝgÿânÿäsþÞqñÑjáÅa×½^и^ɵ^ó\À´`À¸e»j½l»kŹmĶk±k½¬g¹§e·¥e¶¢gµ¡f±œc³d³d³ša±˜_°˜\³›_¶œ_Á¡dÄ¢cÄ¢c a¾Ÿ_¿¡açhŬlªj¿ªi½¨gº§e·¥eµ£a²£b°¢a¬£b¬¤e®¦h¬¦h«¥i¨¢f¥žg¡œd¢fž›fšg™i™i™—g’`Š_ƒY~zUxtQuqNuqNtpMsnNqlLpkMniKlgIkfHjeHjeHkfImfIqfHqcFpbEqcFtfKvhMtfLrdJm_En`Fm^Gl]Fj[FhYDfWBbV@`XE`YF`YFaYFaYFbWEbWEcVEbUDeUEgWGhXHhXHhXHgWGgWHgSHhQIfOGbKC[G>UA8O;4L81I60H5/E3/D2.D2.D2.C4/C4/G85F85E74E74F85E:6G<8H=9JA8B>5FB9JA8UB;bG@iJEjMGiPIhUNdVMcVMdUNdUNfUMfUMeWNdWNbSLaRM_PK\MHYJEVGBTE@SD?$)#("'!& %$###$!&#($)$)$)&)+,-,.-.-/./.0/0/-,-,-,-,-,-,-,-*0,0*0*1+3+4 ,4 ,4 ,2)2)4*6,7-9!/!&@!'@!'A"'A"'C#(C#(C#(B!(B!*B!*B!*B!*B!*B!*B!*E$-D%-F%.E$-D#,B!*@(=&8$7%7%7&6'3&1&/%(&%#"  """"  !!!!!!!!""##%%((''(*+,+,.////.........,,--..//00/.-,+*+*++++,,..//112233335555557788;;@@=;:8666666444476556789766554 4 4 2 3 5 79;=> @ A!A!B"D"E#E#E#F&F&F&F&F&F&F%F%D#D#D#D#D#D#D#D#H%!H%!H%!H%!H%H&H&H&L*M,P/ S2!U4!V5"W6#W6#W4!Y4"[6$]8&\9&\9&\9&Z9&_>+]>*[<([<(\=)`A-bF1dH2dF.hI-pN2wV5^8Ži<›v?¥>¸”J»˜F¾œE½›Dµ•@®Ž;©Š:§‡<©‹CªI«ŽL¬ŽNªŒP¦‡N¢ƒM €O €Q €Q R R¡€S¢T¢‚S£ƒR¬‹V°Yµ”^·–`º—a»˜bÀ›dÂfÇ¢kÊ£jÌ¥lϧlÑ©nÑ©nÑ©nÒ¨nÐ¥nÓ¦oÕ¨oרpÙ¦oؤk× gÖžcןdÙ¡dܤgߨhá«ká®lâ¯mã°nç²lä®hã®hè³oð»wò¿}ï¼zê¹wà°pÛ«mÕ§iÒ¦iÓ§jЦjΤhË¡eЦlÒ¨lÕ«oÙ¯sÞ±váµxãµwã¶uâ²rä´ræ·sê¹tì»vî¾vð¾wïÀzîÈìÊ€íËêÊ}éÊxëÌyñÓ{õÛ~óÙzóÛwôÝu÷àvùãvûçwþêyÿë{ÿçzÿäxýávøÝtóÚsñÚrñÚtðÚuìÔpëÔnëÔlìÓlðÕlóØm÷ÛnúÜlüÛgÿßiÿãpÿâsûÜpìÏiÜÂaѺ\мcʸbĵbÀµcÀ·hÁºjÀºlÀ¹kÅ·lŵj±k¾­g»©g¹¥f¸¤g¹£i²œb´žd¶d´œ`±™]±™[µ›^ºž_ƤdǤbǤbÄ¡_Á ]À¡`ħeÇ«jÄ«i«h¿ªi¼©g¹§e¶§dµ¦c³¥d¬£b­¥f¬¦h­§i¬¦j¨¢f£žf¡œe hž›h™i™j›™i—”g`Ї\}W|xSvrOrnKqmJplIniIlgGlgIkfHjeGidFidGkfImhKohLqfJodFpbEpeGugLujNvhNrfLn`Fl`Fn_Hk_Gl]Hh\FhYDeXEc[Fc[Hd\Id\Ic[Hc[HdYGcXFbUDcVEgWGiYIjZJjZJjZJkYKiUJkTLiRJdPG_KBXD;Q=6L92J71H70F40E3/E3/C4/D50C60H:7G96G96F85D95E:6G<8G>9JALE?KD>IBeIEeNHbQIdWNdWNeVOfWPhWOfXOeXOeXPeVQdUPaRM]NIYJEUFARC>PA< % % % % % % % % %!&"'$)$)$)#(%(+,-,-,-,-,-,-,-,,+,+,+-,-,.-.-.+0,0*0*1+3+4 ,4 ,4 ,3*3*5+6,7-8 .; /; /7-8 .9!/;#1;#1;#0:"/:"/:#-:#-;$.;$,;$,;$,<%+<%+=#,>#,>#,@",@"*@"*@"*A"(<#>$@ %B"'B"'D!%D!%D!'C")B!(B!(A 'B&A%A%@$F#*C")E")D!(D!(C 'C 'A '=&='=); ); )8'4'2&,"*!%"   "#$$$#""""""""!!#$$%&&''((**++++,,--..10/../01........0000000/+*++++,,-./1221122224444766567;=>>;;::88555533336778899955555555656679<=@ @ @ A!B C!C!C!E%C&C%C%C%C%C%C%C%B$A#A#A"A"B#E$I&"I&"H%!H%!H%H&G%G%N, O.P/ R1 S2U4!V5"W6#Y6#Y6#Z7$Z7$[8%[8%Z9&Z9&^=*]>*]>*\@+^B-`D/bF1dH2jL2mO3qR5vU6}[6‡d:”p«;ª>¨@¤Š@¥ŠE¦‹H¦ŠI¥ˆL¢…MŸKž€N~O~PžQžQ S¢ƒU£„V¤…V«‹X±[·–aº™dº™c»šd¾›eÀeÅ¢jȤjÉ¥kˤkÉ¢iÉ¢iÌ¥jϨmͦmΧnÑ©nÔªpتoÚ§nÚ¦lܤiߤhߣeÞ¢dà¤eä©gé°mð·tô»vï´në°jè¯hë²mðºtó¾zî¼wé¸uܬjÛ«kØ«jÖªkÔ¨iÒ¦iÑ¥hϦhÒ¨lÓªlجoܰqà´uã·væºyç¼xçºvæºså¹rç¸péºrí¿tóÃyóÇ|õÑ…òÒ…ñÒ‚ïÓ€îÒ~îÓ|íÒwìÔtñÙwòÜvöávúåxþêyÿîzÿð|ÿð}ÿê{ÿçyþãxüäzúã{õàwïÙsçÔmïÙsëÕoèÑiêÑjñÖmöÛpøÜoúÜlÿÞjÿßkþÞmùÛmïÒjäÈeØ¿bϺ_ȶ`Å´b¿²c¿´e¿¶g¿¸j½µj¼³h¿±f°f¯jÁ®iÀ­k¾©h¼§h½¥iº¢f»£g¼¢gº c¸žaº¡aÁ¥fȪjʧeͨdϪfϬhέhÌ­jÊ­iÈ­jêg«gÀ«h¾«g¼ªh·¨eµ¦c±¦d­¥d«¦d«¦fª¤f§£f¥¡d£žf¡œeŸœgœ™f™—f˜–f–“f‘ŽcЉ]„‚Y{wRzvSxsSvqQtoOrmMpkMojLmhKlgJjeHhcFhbHhbHhbHibFneHofIrgKsjMuiOtjOuiOsiNqeMoeLnbLk`Jk_Ij_Ik^Kk`Lj_Kf[Gf[Gi^Jf[GaVBcXDk`LfYFgZGh[Hi\Ik\Ij[HiZGiXHnZOlXOiULdPG^JAUC9O<5K81I60G6/G51E61E61E61D50C60H;5F;5E:4F;5G<6I>8JA:LCTG?YD?]D@^FB]JD[LE_RJ`SKbTKeTLfUNfWPdZQdZQbUObSP`QN^OL[LIXIFVGDUFC % % % % % % % %!&"'#($)%*%*$)&)+,-,-,-,-,-,-,-,,+,+,+-,-,.-.-.+0,0*0*1+3+4 ,4 ,4 ,3*3*5+6,7-8 .; /#,@",@",@"*@"*A"*A"(A"(>$?$A!&D!'E"&E"&D!%D!%C#(B!(B!(A 'B&B&A%A%F#*E")F!)F!)E (E (F'D'?'>'?*> *=)9'6'3&-"+!(#!  "#$$$#""""""""!!#$$%&&''((**+++,,--...10/../01........0000000/,+,,,,---./1221122224444766567;<>=;::988555533336667788855555555666689<=@ @ @ A!B C!C!B"C&C&C%C%C%C%C%C%C%B$A#@"@!A"B#C$G&!H%!H%!H%!H%H&H&H&N, O.P/ Q0S2U4!V5"V5"Y6#Y6#Y6#Z7$Z7$Y8%Y8%Y:&\=)\=)Z>)[?*]A,_C.aE0cG1jL2lN2pQ4tU6zY8„b°’I¼ŸO¹J±—B­”@«’@§@¥C¤G¦J¤J¤ŠM ‡NŸ„Mœ‚Oœ€P›€QR‚SŸƒTŸ„U¢†W¢†VªŠW°Z¶•`¹˜c¹˜c¹˜b½šd¾›eÁžfàhÅ¢jÅ¢hÅ¡gÄ¡gÇ£gɧjÈ¥kʧmÍ©mÒªoÖ©nÙ¨mÛ§kÝ¥hߥfá¤eá¤eä¤dè©fî¯jôµp÷¸sö·pð´lí±kï´nõ¼wõÀzñ¿zì»vÞ¯kÛ®kÙ¬kתiÔ¨iÓ§hÑ¥hФgÒ©kÔ«kÙ­nܰoà´sä¹uæ»wè½xè¾vç½sç»rç»pé½ríÂtñÆxóÊ{öÒ„óÔ„ðÔðÔ€ðÕ~ïÔyîÕxîÖtñÛuóÞu÷âuûçwüëyÿîzÿðzÿï|ÿî~ÿë}ÿé}ÿé|ýè}÷ä{ñÞwìÙrïÜuíÚqì×nìÕkï×kóÙköÚmùÛkÿânÿânÿáqøÜoîÓlàÈfÒ½`Ë·`ijaÁ²a¼¯a¼°d½´g½¶h½´i¾²hÁ±f°f°hïjÁ¬i¿ªi¿§i¾¦h»£e½£f¾¤g¼£c¼ a½¡`Á¥dǨeͨbϨcЫeÏ­fέhÌ®hɬhÈ­h©fÀ¬g¿¬h¾­h»¬i¸«g¶©e²©f¯§f­¨f¬§gª¦f¨¤g¥ f¢eŸœež›hš˜g˜–f–“f•’gdˆ†]ƒZ{wTzvSxsSvqQtoOrmMpkMojLmhKlgJkfIidGicIicIicIjdJleIofIqhKsjMtjOtjOtjOsiNqgNpfMncMlaKk`Jk`Jk`Lk`Ln_Lj[HiZGl]Ji\IdWDdWDj]JgZGgZGh[Hh[Hj[Hj[HiZGiYImYNlXOiULdPG\J@VD:P=6K:2I81I81F72F72F72E61D71D71F;5F;5F;5G<6H=7I@9KB;LE=MF>NG?NJAPLCQMDQMDQMDPNBLM?NL?RH?WEAZEB\GD\JFZME]SJ_RJaSJdSKfUNeVOcYPcXRbTQbSP`QN^OL[LIXIFVGDUFC % % % % % % % %"'#($)&+&+&+%*'*+,-,-,-,-,-,-,-,,+,+,+-,-,.-.-.+0,0*0*1+3+4 ,4 ,4 ,3*4+6,7-8 .9!/"0=#0=!-<"->".=#,="+<#)=")<#)=")=")A#+B#+B#+B#+B#+C")C")C")A$B%D!'F"&F"&F"&E!#E!%D!'B"'D!'C &C &C &C%C%G")G")I!)H (G'G'H'F'C(B(B(@(>';%7%5$.!+($!  !"$$$#"""""""""!!#$$%&&''((**++,,,--../10/../01........0000000/-,----..-./1221122224444656567:;==;::98755553333555667776666666666778:=> @ @ @ A!B C!C!B"C&B&B&B&B&B&B&B&B%A$@#?"?"@#A$C$G&!H%!H%!H%!H%H&H&H&N, N-O.Q0S2T3 U4!V5"X5"Y6#W6#X7$X7$Y8%Y8%X9%[<(Y=(Y=(Z>)Z?*]B-_D/`F/gL1iN1nP4rS6xW8€^9‰h;q;š{;¨‹E·œO¹ N³H¯›E­˜Eª•D¨’G¦’K§L¤L¥O ŠN ‡O†RƒR›„RžƒT…U …VŸ‡W¡‡V£‡W¨ˆU®Z´“`·–a·–a·–a¹˜b»šd»šd¾žeÀ gÁ¡hÁždÀ eÄ¡gĤiÃ¥iĦjʨkϨmÓ©mتnܨlß§já¥gâ¥fæ¥eè§eî«gó°jø³nú·qù¹qõ·nñµmò¸oö½vöÂyòÀyí¼wà±mݰlÛ®kØ­iÕ©hÓ§fÑ¥fФeÓªjÕ¬j×®lÛ³nß·râºtå½wç¿wèÁvçÀsé¿séÀqìÃtïÆvóÊzóÍ|õÕ‚ôÕ‚ò×€ò×~ò×|òØ{ñÙyñÙuòÝtôßtøãvûçwýìzÿîzÿïyÿï{ÿòÿñ€ÿð€ÿïÿíûê~õäzñàvðßuñÞuñÜsðÙoï×kñ×iõÙl÷ÜkÿåsÿårüâsõÝsëÓoÜÈiмcŵ`¿°_º­_·«_¸¬`»¯c¼³f¾²f¾°e°fïfïhÅ®jÄ­jìi©iÁ¨h¾¥e¦gçh¦eÂ¥cÁ¤`æbƨbϪcÑ«dЫdÏ­eέfË­eɬfÅ­gÀ©e¿«f¾­h¼­h»®j¸®i¶­j´­i°«i¯¬i®ªj¬¨h¨¤g£¡fŸdšcœ™f™—f–“f”“g’g‹d†„]~~XzwTyvUwtSurQspQqnOolMnkLmiLlhKkgLjfKieJjfKjfMlfLleImfJohLqjNrkOrkOrkQqjPphQnfOldOkcNjbMiaLjbMm`Mq^Mp[Jp[Jp]Lm\JiXFgXEgZGi\Ii\Ih[Hh[Hj[Hj[Hk\Ik[KmYNkWNgUKbPF\J@VD:P?7M<4K:3I:3H94H94F93E82E82E82G=4G=4F=4G>5I@7KB9NE.? /@!0A"1A#/@".?!-A#-@",@"*@"*?!)?!)?!)?!)B#+B#+B#+B#+C")C")C")C#(C &D!'F"&G#'G#'G#'H!$E!#D!'B"'D!'D!'D!'C &D&D&J"*I!)I!)I (I (H'I'H'F'D)D)C)?'<%9%6$0!- * $#!!"#$$#""!!!!!!!!!!#$$%&&''((**++,---.///10/../01///////////////..-....//-./1221122224444445667::=<::98774444222244 4 556676666666676778:=> @ @ @ A!B C!C!B"B%A%A%A%A%A%A%A%A$@#?">!>!?"@#B#F% G$ G$ H%!H%I'I'I'M+N-O.P/R1T3 U4!U4!X5"X5"V5"W6#X7$X7$W8$X9%X<'W;&X<'X<'Y>)[@+^C._E.eJ/hM0mO3oQ5sT7{Z9„c:Šj9“u9 …@°–K· P¸£P³¡K¯I«šHª—K©•L¨”M§“N¥O¢ŒP¡‹R ‰S†R†TŸ‡W ˆX¡‰Y¡ŠX¡ŠX¢ˆU¦†S¬‹X²‘^µ”a¶•`¶•`·–a¹˜bº™c¼fÀ gÀ¡hÀ e¿¡e¢gĦjÁ£gÃ¥gȦįjÓªlتlÞ«lâ«kâ¦gæ¦fé¨fî«gò­hö²kú´nû·pü¹r÷·oôµnó¹põ¼uó¿vð¾wë¼tà³oÞ³nܱmذk׫jÔ¨gÓ§hЧgÔ«iÕ®iذkÛµnà¸râ¼sæ¾vçÁvéÄvéÄtéÄtêÅtìÇvïËwòÎzóÐ|öÖõ×óØ}ôÙ~õÛ~öÜ}õÝyõÞxõÞtöátùåuüèwýìzþíyÿîxÿîzÿóÿóÿò‚ÿòÿðúìõç|òäyïÞtñàvòàtòÝpðØjï×iöÚlùÞmþäsúãs÷ßsñÜsèÔqÛÊnξgŶe¹¬^¶¨]³§]´¨^·«_¼®c½¯d¿¯d®eůfÅ®hƯiƯkÄ­jÄ«kêjçhĨgƪiǪhÆ©eÆ©cÆ©cÇ©aÒ­fÒ®dѬeÏ­eͬeÉ­dǬeÅ­g½©d½ªf»¬g¼¯kº°k¹°m¸±mµ°n³°m²¯l°¬l­©i¨¦i£¡fŸdœ›eš˜e˜–f”“g’gŽg‹‰c[||XzwVyvUwtSurQspQqnOolMnkLnjMmiLlhMkgLkgLkgLlhOmiNkeKmfJohLqjNrkOrkOrkQqjPqiRogPmePldOkcNjbMkcNnaNv_Ox\Ny]Ox^Ot]MmZIiXFhYFk^Kj]Ji\Ih[Hj[Hk\Il]Jm]MkYMjVMfTJaOE\J@WE;RA9O>6L=6K<5K<7J;6H;5G:4F93D93I?6I?6H?6I@7KB9NEQJ@RNCSODUQFVRGVTHVTHUSGSSGOSDOQDTMEUJFXHHXHHVKIVMHZQJ\RIaPHcPIcRKaRM^UP^UPaSPaRO_PM]NKZKHWHEUFCTEB!&!&!&!&!&!&!&!&#($)%*&+',',&+'*+,-,-,-,-,-,-,-,,+,+,+-,-,.-.-.+0,0*0*1+3+4 ,4 ,4 ,5,5,7-8 .9!/:"0="1>"1>.@ /B"1C#2D$1C#0C#0B"-D$/C#.C$,B#+A"(A"(@!'@!'D#,D#,D#*D#*F#*F#*F#)F#)F!(G#'J#(J#(J#&I"%I $G #E 'D!'D!'D!'E 'F!(H (H (K"*K"*K"*K )K )J(L(I'I)H )G(E (B(=%9%5#1 -*%#!""#$$#"!!!!!!!!!!!#$$%&&''((**++---.///010/../01///////////////..-....//-./122112222444433566799<<:988764444222244 4 556677777777777889;> ?!@ @ @ A!B C!C!B"B%A%A%A%A%A%A%A%A$@#?">!>!?"@#B#E$F#G$ H%!H%I'J(J(M+M,N-P/R1S2T3 U4!U4!V5"V5"V5"V7#W8$W8$W8$W;&W;&V;&W<'X=([@+\C-]E-bH-eL.jO4nP4rS7wX9€`:…f8Žq9–};§Eµ Qº¨T·§R±¢M®ŸL­œN¬šPª˜P§”O¥’P£P¢ŽS¡ŒUž‰TŸŠU¡‹Y¢ŒZ¢ŒZ¢ŒZ¡‹Y¡ŠV¤†RªŠW°]³“`³“`´•_µ–`·˜b¹šc¼Ÿg£jÂ¥käkÂ¥kÄ¥lƨl¤hÃ¥gȦiͧiÕ©lÛ«má«mæ¬må¨géªgì«gò¯iö²kø´kûµmû·nú·pö¶nó´mò¶nñ¸qîºqêºrç¸pàµpݵoÛ³nرl×®lÕ¬jÓªjÒ©gÔ­hÕ°iÙ³lÛ¶oàºsã¿uæÀuçÃuéÅwêÇvêÇuìÉuîËwñÏxóÑzòÒ{ôÖ|õØ|öÙ{÷Ú|÷Ý|øß{ùà{ùâzøáwùãvûçwýéxÿëzÿìyþíyþíyÿð|ÿó€ÿòÿò€üï÷ë}óç{ñåyëÝrïÞtòàtóÞqòÚlòÚløÜnúàoõÞnñÝmïÚoêØråÕuÛÍtÎÂnƹj·«_´¨^²¤[²¤[¶¨]¼¬_¿­aÀ­aídÅ­eǯiȰjȯlȯlÉ­lȬkȪjȪjÈ«iÊ«hÌ®hÌ®fË­e̬cÓ±gÔ°fÓ®gήeË­eÉ­dÅ­eÄ­g»¨c»ªeº­iº¯m¹²n·²p¶±oµ²oµ²o´±n°¯n­¬k©§j¤¢gŸžeœfš˜g—–f“’f‘fŒe‡‡a€€\zzXxxVwwUutUsrSqpQonOmlNlkMkjNkjNjiMihLigNjhOljQnjOkeKlgJniLpkNqkQqkQqkSpjRqkSoiQnhRlfPkdQjcPkdQqbOz]O„`R…dUaRy^Mr[IlZFjYEm^Ik_Ij^Hj^Hj^Hj^Hm^Im^KjXLhVLdRH`NDZI?VE;SB:RA9O@9N?8L?9K>8J=7I<6F;5E:4J@7I@7JA8KB9LE;OH>RKATMCVRGWSHWUIXVJYWKXVJUUITVIPWGQUGTPGULGWIHWIHUKIULGZQJ[QH`OGaNGaPI_PK[QO[SPaSRaQQ_OO\LLYIIWGGUEETDD"'"'"'"'"'"'"'"'"'#($)&+&+&+%*'*+,-,-,-,-,-,-,-,,+,+,+-,-,.-.-.+0,0*0*1+3+4 ,4 ,4 ,5,5,7-8 .9!/:"0="1?#2B"1D"2E#3F$4G%3G%3F%0E$/G&1G&1F%.E$-D#*C")B!(B!(D#,D#,D#*D#*F#*F#*F#)F#)H$(I%)K$)L%*K$'J#&I $H!$E!%D!'D!'E"(F!(F!(I!)I!)L#+K"*L!*L!*M)L(L(L(K *J *I)G(C(=%:%7#2 .+%$"  "#$$$"!         !!#$$%&&''((**++-..//00010/../0100000000.......--,----..-./122112222444423567687<;9887663333111155566777777777778788:;> ?!@ @ @ A!B C!C!B"A$@$@$@$@$@$@$@$@#?">!= = >!?"A"D#F#G$ G$ I& I'J(K)L*M,N-O.Q0S2T3 T3 U4!U4!U4!V5"U6"V7#V7#W8$W;&W;&V;&W<'Y>)[@+\C-^F.`F+cJ,hM2kP5pR8vW:^;‚e9‰n9w7Ÿ‰@±žOº©W¸©T±¥O¯£O¯ŸQ®œP«™O¨–N¥’N£P¢ŽS¢T ‹T¡ŒW¤Ž\¥]¥]¤Z¢X¡ŠV¤†RªŠW°]³“`³“`³“`µ–`¶—a¸›c½ hÂ¥kŨnħmħmŨnǪnĦjƦiʦhϧjÕ©lܬnã­oè®næ©hë¬gð°iö³lø¶lû·lû·lú¶kùµn÷´mô´mð´lîµnê¶mæ¶nâ¶oß´oܶoÚ³nÙ²mرnÖ¯lÖ­mÕ®kÔ¯iÖ±jÙ´mܸnà¼räÀtæÂtæÅtèÇvéÉvêÊuëÍuîÎwïÑyñÓ{òÔzô×yôØwöÚyøÜyúÞ{úá|ûâ{üäzúäwûåxýçxþêzÿëzÿìyýìxýìxýîyþò|ÿòþñùí}õéyòæxòæzëÝrîÝqðÞpòÝpòÜmóÜløÝløÞoíÙié×kæÕmåÖqâÕwÛÐwÏÄrǼm¹­cµ©_²¤[²¤Y·§\¼ª^¿¬_Á«_ĬbÅ­eǯiȰjɰmʱn˯n˯nË­mɬjÊ«hË­gΰhвiвiÒ²iÖ´jÔ²hÒ°hήeʬdǬeĬfÁ­hº©d¹ªg·¬j¸¯l¶±oµ²o´°p´°p¶³p¶³n²±p¯®m«©l¦¤i¡ gŸžhššh—–h”“g‘hŒŒf††b]yyWxxVwwUutUsrSqpQonOmlNlkMjiMjiMihLihLigNjhOljQmkRjfKlgJniLpkNqkQqkQqkSpjRrlTpjRoiSmgQleRkdQleRrcP}[OŒdX’l_‹gY~^Ou[Jp[Hl[Gl]Hk_Il`JmaKmaKl`Jm^Il]JiWKgUKcQG_MCZI?WFRKAUNDWPFXTIYUJYWKZXLZXLZXLWWKUWJRYISWIURIVNKVJJUIISKHTMGYPIZPF_ND`MF_NG\NKYOMXPN`RQ`PP^NN\LLYIIVFFTDDSCC"'"'"'"'"'"'"'"'!&"'#($)%*%*$)&)+,-,-,-,-,-,-,-,,+,+,+-,-,.-.-.+0,0*0*1+3+4 ,4 ,4 ,5,6 -8 .9!/:"0;#1>#2?#2E#3H#4I%3K'5K'5K'5J&2J&2L(2K'1J&0I%/H%,G$+F#*E")G$+G$+G$+G$+G$+G$+H#*H#*K$)L%*M$(N%)M$(K"&J!%H!$D $D!%D!%E"&G#'G#'J#(J#(L#)M")N!(N!(N'N'N'L(L!+K!+J *H )C(?%;#7!3!.+&$"  #$$$#"         !!#$$%&&''((**++...//00110/../0100000000.......-,+,,,,---./122112222444412567676;;9887653333111166677888888888888899:< ?!@"@ @ @ A!B C!C!B"@$?%?%?%?%?%?$?$?$>#="#@#D#E"F#G$ I& J(K) K)L*L+M,O.Q0R1S2T3 T3 U4!U4!V5"U6"V7#T8#T8#X<'X<'W<'X=(X?)[B,]D.^F.^D)bI+gL1kP5qS9uX:}_=‚e;ˆm8‹s5˜„=¬›M¸©X¶ªV²¦P±¥Q°¡P®žQ«›P§–N¤“N¢N¢R¢U¡ŽV¢W¥‘\¦’]¦’]¤[¢ŽY¢‹U¤†TªŠY°]³“`´”a´”a´–`¶˜b·šb¼Ÿg¿¥l¨oén¨ménÆ©mȨm˧kΨjѧkשmÝ«nã­oè®næ«iì­hò²kö¶nù¹oû¹mú¸lù·kú¶où¶pö¶oñµmì¶nçµläµmá·oÜ´nÛµnÚ³nÙ´pÙ²qÙ²qرpرnÕ°iÕ³i×µkÛ¹oß½sâÁtåÄuæÇuçÈvèÉvêÌvêÏvîÐxîÓxïÔyðÖyó×võØtöÙuøÜxúÞzýâ{üã|ýå{ýåyýçzþèyÿê{ÿëzÿëzÿëzüëyüíxþò|ÿó€þó€ùí}õéyóçyóçyîàsïÞrïÝoñÜoóÝnôÝmõÚiðÙièÖhâÔiàÑjáÓrßÔxÙÏxÎÃqúk»²g¸¬d´¦]´¤Y¸¦\½ª]Á¬]«]ëaÅ­eǯiɱḵnͲoΰpΰpͰnÊ­kɪgË­gÒ±jÖ¶mظo×·lضlÖ´jÓ±iÌ®eÉ­dĬdìfÀ­h¸©d¸«g¶­j¶®m³¯o±°o°¯o°¯n·´q¶³n²±p°¯n¬ªm¨¦k£¢i¡ j››i˜—i”“g‘hŒŒf††b~~\yyWxwXwvWutUsrSqpRonPmlNlkMihLihLhfMhfMigNjhOljSmkRjfKkgJmiNokPplQplQplSokRqlVpkUniSmhRkfRkfRlgSsdQ[O•i^žth’l_`Qv[Js\Jq_KkZFm^InbLpdNpdNnbLm^Ij[HiWKfTJaPF]LBZI?WFRE=QD>OBTNBUQEWSGZVJ[WK[YL[YLYZLXYKWXJUWIT[KUYKVSJWOLVLKTJISKHSLFXOFYOE^MC_LE^MF[MJXNLWOM`RQ`PP^NN[KKXHHVFFTDDSCC$'"'$'"'$'"'$'"'"%!&$'$)&)$)%(%(+,-,-,-,-,+,+,+,*+,+,+-,-,/+/-/+/*/*/*0 +1+2!+4 ,4 +6 ,7,8 -;!.<"/=#0?#1A#/H$2J$3L&3M'4N(5O&4O'2N&1P(3P(1O'2K&.J%-I$,H#+F#*G$+E$+E$+G$+G$+G$+H#*H#*L%*M&+N%+N%)M$*L#'J!'H!&D $D!'D!'E"(G")H#*J"*K#+L#+L#+M"+L!*N *M)M)J(L!*K!+K!+H )C(?%9"7!2!.*&#  !#$$$#"         ###$$%&&''(())++..//001110/../0100000000........++++++,,-./1111011112222/1456554997766543333111156788999888888889899:< ?!@"> > @ A!A!B"B"@"@$?%?%?%?%?$?$?$>#>#="#?"C"E"F#G$ I& J(K) L* K)L+M,O.P/R1S2T3 S4 S4 T5!T5!U6"S7"T8#T8#Y=(X<'X=(X=(Y@*[B,]D._G/\B)aG,gK3kP5oT9vY;|_=e=‡m<‰p7•€=ª˜N¸§Y¸©V´¦N´¥P±¢Q¯ŸR«›P§–N¤“N¢P¢T¢U¡ŽV£Z¦’]¨”_¨“^¦‘\£ŽY¢‹U£ˆS©‹W¯‘[³”^´”a´”aµ–`¶˜bµ—aºeÀ£kænælælħmƨlÍ«lͪjШjÒ©iתi߬må®nê®oè«hí®iõ²lú·püºpüºnû¹m÷¸kø¸n÷¹põ¹pñ¹oì¶nè¶må¶pâ¸pÛ³mÚ³nÚ³nÙ´pÚ³pÚ³pÚ³pÙ´nÔ²jÔ´i×·lÚºoÞ¾qâÃsåÆväÈuæÇtæËtèÍtêÏtíÒwîÔwîÕxðÖwòÖsô×söÙuøÛwûÞzýâ{ÿä}þæ|ýå{þæzÿè|ÿê{ÿê{ÿë{þêzüêzýí|þñÿô‚ÿóƒûî~öê|õçzöè{òäwðßsîÞoïÝoòÝpòÜmï×iêÔgçÖnàÓmÞÐmÞÑqÜÓxÖÏwËÃpÁ¹h½´g¸¯b´¨\µ¥X¸¦Z½ª]«]«]Å«`Ç­cǯeɱiͲkγnγnγnγnʯhÈ«eÉ­dвjÖ¸oÛ»rÛ»pظmÔ·kгg˯eÇ­cídÁ­f¿®h·ªd¶«iµ­l³®n±°o¯¯o®®n­­m´³r´³p±²p¯¯o¬¬n¨¨l¤£k¡¡k››i–˜i“”h‘gŒŒf…‡b}ZxyWwxXvwWtuUrsSpqRnoPmlNlkMhgKhgKgeLgeLhfMjhOkiRmkThgKihLkjNmlPnmQnlSplSokRrmWqlVojTmhRlgSmfSmfSscS{[N”naŸ{m“rc~aQu[Js^KsaMjYEm^IocMrfPrfPocMm^IiZGgWHeUHaQD[M@YISF=RE=PC;LB9J@7I?6H>5LD9KE9LF:NH!>!= = = >!>!?"?"?"D#E$E$F% H' I(I(J*L,L,M-N/O0P1Q2Q2Q5 R6!R6!S7"U9$U:%U:%V;&Y>)Y>)Z?*Z?*[@+[@+\A,\A,_E.aG0dJ1hN3mT5rX7v\9z^7|a6‰o>˜G¥M´žU¾©X½©R³¢J³¢R°žT«šR©˜R¦—T¥•W¡‘VŒT Y¢Ž[¢Ž[£[£ŒZ¥‹Z¥‹Z¥ŒV¢ŒR¤ŽR«‘X±”\´•_·–a·–c¶–c½j¾ŸiÀ¡j£lÅ¥lʧmΧnÏ©kʧeÌ©eѪg׬hÞ¯kå°nê±nî±né¨dï¬f÷±kü¶pÿ¹qþ¹nü¸m÷¸kõ¼mò½mñ¼nï»oëºnè¸näµoáµnܱlÚ²mÚ³nÚ³nÙ´nÙ´nÙ´nضnÓ³jÒ´kÕ¸lØ»oÜ¿qßÂrâÅuâÈsèÍvåÌrãÊnæÍpëÒuï×wï×wïÕtóÕuöÕt÷ÖuøÚxúÜzüà|ÿãÿå~ÿä}ýä}ÿæÿè~ÿè~þè{ýçzüç|ÿì…þí…þí…ûí‚ûê€öè{öåyôãwóãtóãtôãwóâvòßvïÜsíÚqêÙqáÑoÜÏoÙÌnÖËoÒËpÎÉnÊÄlÆÀjÀºdº²_µªXµ¦U¸§W½ª[«_Å«^Ǭ_ʯ`̳cͳfʳeË´h̶jϹmDZeưdȱe˱gϳjÓ·nغrÚ¼sÖ»lÓºjзgË´fưdÁ¯c¾­eº®f¹¯h·°l´¯m³¯o°°p°²s±³t²´u±³r°²q¯±r¯°t®¯u§ªqŸ¢kšh˜šh•˜i“–i‘”iŽh†‹c~ƒ[x|WuyXuxYtwXruVorUknQjjNhhLggMggMjhQkiRkiRkiRmhTkiRhhNfiNgjOhkPllRmmUomVomVqlXqlXslYslYrkYpgVmdSobQtaPybP{fS}hU{iUygSudPsbNrcNpaLo`KpaLpaLo`Kj[FfWBaTC`SB]P?YNL?9')&(%'%'%'%'&(')')')(*(*)+)+*,*,*,*,(+),)-*.),),&&&&*'+(/'0(3)2*-"*,"*-#+.#+0#*2#*6"+7"+8!);!*?!)B#+E$-I%/K(/L'/Q(0R'0T&0U'1W(2Y'2Z&2['3Z&2Y%1W%0T%/S$.Q#-N#,K#+C#(B#(C#(D$)E%*H%+H%+H%+N)0M(/N&.L$,L#+J!)J(H'G(E*F +F +G!,G!,H"-H"-H"-H"-H"-G!,G!,F +F +E (I!)I"'F!(D!'?%;"7!2,)% !""!!      """##$$%%%&'()*,,./012331111111111111111///..--,////////.......-.--,,+,,,,/012330134554322210 / / / 223366778898879 6 8 7 89:;;< < < =!>"?#@$A%B&A%@$@$?#?">!>!>!= = = >!>!?"?!?"B# E$E$F% H' I(I(J*M- M-N.O0P1Q2R3P4P5 Q6!Q6!R7"T9$U:%U:%V;&Y>)Y>)Z?*Z?*[@+[@+\A,\A,_D/`F/cI0hO1lS4qY7u[8w]8~b;ˆm@”xF †K¯—Q½¦VÀ«Rº¦Oµ¢U°žV«šT©˜S¦—V¤”XŸUœTŸŽZ [£\£\¦Œ[¦Œ[¨‰Z¥ŠU¡R£P©‘U°“Y´•^¶•`·–c·–c¼›h¼g¿ i¢iÉ¥kϧlÔ§lÕ©lϨcЪcÔ¬fÚ®gá¯jè²lí²nò³nñ®hõ±jûµoÿ¹qÿ»sÿ»pü¸m÷ºjò¾kîÀkí¾në¼né¹må·là´mݳkÛ°lÙ±lرlײlسlÖ´lÖ´lÖ¶mвiдjÓ·mÖ»nÚ¿pÝÂqßÄsáÇråËtãÊpãÊnçÎqìÔtîÖvîÖtíÓròÔtõÔu÷Öw÷ÙwúÜzûß{þâ~ÿãþâ~ýä}ÿæÿè~ÿè~ÿè~þç}üç~ûè‚ûé…ûéƒûê‚úéùè|÷æzöåyóãtôãwôãwôãyñàxìÚtèÖrãÓqÛÎpÖËoÓÈlÑÈmÏÈmÌÇkÈÄiÄÀeýe¾·_»¯[º«X¾«\į`ȱe˱dʯ^Ͳaеd϶d̶cÌ·fϺiϼm̹j˸iηiϸlÒ¸mÕ»pÙ»sÚ¾tÔ½mÒ½jϺiʸfÅ´fÁ±d½¯d¹¯g¸°h´¯k²¯l°¯n°°r°²s¯³v°´w¯´t®³s­±t®²w­°w©¬u ¥o›Ÿl˜œj•˜i–hŽ”h‹g…Ša|ƒZv|VtzXtyYsxXrwWpsVmpSjmPhkNhhNhhNigPigPigPjhQlgSkiTdfNcgLdhMeiNgiQjjRljSljSpkWqlXrkXrkXriXofUocSncQm`MpdNufQwkUzkVxlVxiTuiStePpdNqbMnbLqbMl`Jj[FdXB`UA^S?\Q=YN:WL:VK9VJ:VJ:YM=WK;UI;RF8PD8OC7OC7MC7OK?OM@QOBTREUUIVXKXZMX\NW]QW_RW_TV`UUaUUaUUaWV`WX[RY[PYYOWWMWTKURIUPJTOIWPJWNIXMKXMKYKJYKJZJKZJJZLIZMG[NH[NHYLFUHBPC=NA;(*')&(%'%'&(')(*')')(*(*)+)+*,*,*,*,),),)-)-),),&&''+(,)0(1)4*2*/"+.#+.#+/"+2#*3"*6!(7 (<"+>#,B#+F%.J'.M(0O*2R*3R)1T)2V(2W(2Z(3[)4\(4]'4\&3['3Y'2V'1U&0S%/P%.O&.F#)E%*G$*G$*H%+I$+J%,J%,P(0O'/N&.L$,L#+J!)I (H'G(E (F!)F!)G"*G"*H#+H#+I$,H#+H#+G"*G"*F!)F!)F!)I!)H!&E 'B%>$9 50*'#!!    !!!""##$$$$$%&'()+,-./012333333333111111110//..---////////-------,.---,,,,.../01110134443322110 0 / / 223366779898879 7 6 6789;< < ;< < >"?#@$@$A%@$@$@$?#?">!>!= = = = >!>!?"?!?"B# C$C$D% F( G)G)H*L/!L/M0 N1O3P4Q5 Q5 P5 Q6!Q6!R7"T9$U:%U:%V;&Y>)Y>)Z?*Z?*[@+[@+\A,\A,]D._G/cI0gN0kR3oW5sY6u[6~b;…j=s@–~B§I¹¢TÁ«U¿«Uµ¢U°žV«šT©—U¦—V£“WžT›ŒSŒXŸŽZ£[¥]¨Ž]¦Œ[¨ŠX¥ŠU¡R£R©‘U¯’X´“]¸•_¹•a·–a¹˜c»šd¾žeÄ¡gË¥gѨjשkÛ«kתfÙ­fÝ®hâ°iè³mîµnò¶nö¸o÷·oû¹oþ¼pÿ¿qÿÀqþ¿pû¼mõ¼kî¾jì¿jë¾mç¼mä¹kßµiܲjذhÕ®iÔ¯iÔ¯iÓ±jÔ²jÓ³jÔ´kÒ´kβiδiжkÓ¹l×¾nÚÁoÜÃqÝÅoàÈpàÈnâËnæÏqêÓsìÕuêÔqéÑoïÓpñÓqóÕsöØvùÛyúÞzüà|ûâ{üã|ýä}þå~þç}ÿè~þé|ýè{ûé}öå{õç~öè}÷é|÷é|öéyõèxôçwòäwóåxôæ{óå|îßzçØsàÐnÛÍlÑÆjÎÅjËÂgÉÂhÉÄiÉÄiÆÀhľfÈÁiüdÁµaÁ²_ųa˶eϸjÒ¹iжbÓ¹eÕ»gÔ»gÑ»fлhÒ½jÓÁoÓÁoÓÁoÕ¾nÕ¾pؾqÙ¿rܾuÜÁtÖ¿oÒÀlоlÌ»iɸjµg¿³g»³j¶¯g³®j²¯l°¯n¯¯q°²s°´w±µx¯³v®²u­³w®´x®³yª¯w£¨rž¢o–j“™i•g“g‰Že„‰a|YvzUsyWsxXsxXrwWqtWorUloTknSiiOhhNgeNfdMecNgePjeQjhSbdLaeLceMdfNffNggOigPigPojVojVpiVpiVphUnfSmdSncQk`LmbLsgQvkUznXzoY{oYzoYwkUshRqeOodNocMk`Jh\FcXB_T@\T?ZR?XP=WOTK(*')&(%'%'&(')(*')')(*(*)+)+*,*,+-+-),),)-)-(+(+''''+(,)0(1)4*3*1!+/"+2",3",6"+7"+8!);!*?$-C$,F%.J&0N)1R*3T,5V,6U*3W)3X)3[)4[)4])5^(5^(5]'4]'4['3Z(3Y'2V'1U'1R'0L$,J%,L$,L$,L$,L$,M%-M%-P(0O'/N&.L$,L#+J!)I (G'E (E (F!)F!)G"*G"*H#+H#+I$,I$,I$,H#+G"*G"*G"*F!(H (H!&D&A$>"83.(%"        !"!!!"###$##$%&'(*,-./01223333333322222222000/...-000//...,,,,,,,,-,--,,--....//000123443211110 0 0 0 2233667799:988: 7 4 5 689:< < :;;=!>"?#?#@$@$?#?#?#>!= = = = = = >!>!?"?!?!B# C$C$D% F( G)!G)H*M0"M0"N1!O2 P3!Q5 R6!R6!P5 Q6!Q6!R7"T9$U:%U:%V;&Y>)Y>)Z?*Z?*[@+[@+\A,\A,\C-^F.bH/eL.iP1mU3qW6rX5z^7f;ˆn=‘x?£ŠG¶ŸSÀªU¿ªW´¡U°žVª™T¨–T¥–U£“WžT›ŒSœ‹UžY£[¥]¨Ž]§Z¨ŠX¥ŠU¢ŽS¤S©‘U¯’X³’\¸•_¹–`º—aº—a¼™aÀcÈ¢dϦhתiÞ¬má®lâ°iä²iè³mëµmð·pôºq÷»rú¼qû½rý¿rÿÂrþÄrþÄrûÃnøÀmó¿kí¿jé¿iè¾lä»ká¸iÛ´gׯgÔ®eѬfÏ­fЮgЯhаgϱhвiϳi̲hͳiϵjÒ¸mÕ»n×¾nÙÀnÛÂnÜÄnÞÆlâÊpæÏréÒtéÒrçÐpçÏmíÑnïÓpòÔrôØt÷Ûw÷Þwøßxùàyûâ{ûäzýæ|ýè{þé|þé|þé|üê|÷æzõçzöè{öéyöéyôçwóævòåuôæyõç|öèôå~íÝ{äÔtÛËkÔÅhËÀgžfüd¼dľfÆÀhÅ¿gýeÈÁiȾgǸeǶd˶eϸhÕ¼lؽl×½iÙ¿jÚÂlÚÂlÖÀjÔÀjÔÂlÖÄpÖÄpÖÄpØÃpÙÂrÜÃsÝÄtßÄwÞÅuØÃrÔÄoÓÂpÏÀo̼nƹkÀ·l½µl´°i³°k°¯l¯¯o¯±r®³s¯³v°´w¯³v­³u­³w¯µy¯´z¬±y¦ªw ¤r–œl“™k•i‹gˆe‚‡_{€XuyTsyWsxXsxXsxXruXpsVnqVmpUjjPhhNecLcaJb`KcaLgbNgePacKaeLbdLceMffNggOigPjhQniUniUohUngTogTnfSmdSldQkcNnfOshRumVzoYzr[}r\{s\{pZumVshRogPodNjbKg\FaYB^VA]U@[S@YQ>XP=XP=YP?YP?YPAXO@VM>TKSK>VRFVTGXVJXXL[[O\^Q]`U^aV]cY^f[`j_cmbcoeamc_ka_i`[`Y^aX`a[_`X]\WYXSVSNROJUPLWOLWMKVLJVJJUIIWIIVHGTFCUHBWJDXKEWJDVICUHBTGA)+(*')&(&(')(*)+')')(*(*)+)+*,*,,.,.*-*-(,(,'*'*((((,)-*1)2*5+4+4 +4 )6!*7"+:#-=#.?$-A#-E&.I%/L&1P(1R*3U+5W-7Y.8W)3X)3Y*4[)4])5^(5_)6a)6_'4]'4]'4\(4Z(3X)3X)3V(2P%.P%.O&.O&.O&.O&.N%-N%-Q(0P'/O&.M$,K#+I!)H (G'E (E (F!)F!)G"*G"*H#+H#+J%-I$,I$,I$,H#+G"*G"*G")H (H!&D&A$=!62-(%"         !! !!!"###""#$%&')+,-./01133333333222222221000/...110//.--,,,,,,,,,,,,..00////1111/013332200001 1 1 1 22336677:9::98: 8 5 4 56789: 899: ;!=#=#>$?#?#?#>"= = = <= = = >!>!?"?!?!B# C$!C$D% F( G)!G)H*M0"M0"N1!O2 P3!Q4"R6!R6!P5 P7!P7!Q8"S:$T;%T;%U<&X?)X?)Y@*Y@*ZA+ZA+[B,[B,[B,]E-_G-cL-hO0kS1nV4oW3rX3y`7„j9Žu<ŸˆE²œQ¼¦Sº¥R²ŸS®œT©˜S§•S¥–U£“WŸUœTœ‹UŒV¢X¤Z¨Ž[§ŽX©‹W§ŒU¤U¥‘Tª’V¯’X´“]¹–`¼—b½˜a½™_¿›_ÅŸaÌ¥dÕ©hÞ¯kä±oé³mí·oï·mñ¸qôºqõ»rø¼sú¿sú¿qú¿qúÁpûÃpûÅoøÄnöÄkñÂjïÁiéÀhåÀhä¾kà»jݸhØ´fÔ°fЮd˪cʬdË­e˯f̰f̲gͳhδiʲh˳i̵iϸlѺlÔ½mÖÀm×ÁlÖÀjÚÅjßÊoãÎqäÐqäÐoãÏnäÎkêÑmìÓnñÕqóÚsöÝv÷Þwøßx÷àvùâxùäwûæyûé{üê|ýë{ýë{ûë|øë{÷ë{÷ë{öëxõêwòçtðätïãsöê|÷ëöéóæ€ëÝ|áÒsÖÇjÏÂfǽfÁ»e¾¸b¾ºcÁ½fÿhľhýgƾiǽhɺeɹd͸eÑ»h×¾lÛÁmÞÄoàÆoàÈpßÇoÚÅlØÄmØÇoÚÈrÔÂlÕÃmÙÅoÛÅr߯tàÇuâÇxáÈxÙÇu×ÈuÖÇvÒÆtÍÂrǾoûp¿¹o·³lµ²m²±n°°p¯±r®²u¯³x¯µy®´x¬´x¬´y­µz®¶}«³z¤«wŸ¦s—m“™kŽ”h‰Že…Šb€„_y}XtxUsxXsxZsxZsxZruXpsVnqVmpUiiQggOdbMa_J_]H`^Id_KcaLcbMacMedOfePhgRjiTljUmkVniUniUmhTlgSmfSmfSmfSmfSqkUrlTumVvpXyqZys[{s\zt\}u^wqYskToiQnfOjdLg_Hb\D^XB]VC[TAZS@YR@YR@ZSAZSAYRBXQAWOBVNAUM@VNAWODWQEWSHWUIWWKYYM\\R]_T^aV_bW`f\ai^cmdfpggsifrhcpgbme_f_af_ce`be^_`[Z[VUTPTPMUPMUPMVNLUMKUKJSIHSGGSHFQFBRGCSHDTIETIETIETIETIE)+(*')&(&(')(*)+')')(*(*)+)+*,*,-/-/*-*-(,(,&)&)((((,)-*1)2*5+6+6+6): +<"-?#/B'0F&1H'0K'1M'2P(1R(2T*4V+5W,6Z,7X)3X)3[)4[)4^(5^(5`(5a)6_'4_'4]'4\(4\(4[)4X)3X)3V'1T&0T&0T&0S%/Q&/P%.P%.R'0P'/O&.M$,K#+I!)H (G'E (E (F!)F!)G"*G"*H#+H#+J%-J%-J%-I$,I$,H#+H#+I!)J!'J!'G'B$>"62,(&$          !!""#!!"#$%&(*,-./011333333333333333311100//.2100..-,--------++,,..1100102111/0123321/ / 001 1 2222336677::;::9;8 656667777889: <"<"=#?#>">"=!= <<<= = = >!>!?"?!?!B# C$!C$!D% F'"G)!G)!H* L.#L/!M0"N1!O2"P3!Q4"P5 O6 P7!P7!Q8"S:$T;%T;%U<&X?)X?)Y@*Y@*ZA+ZA+[B,[B,[B,\D,^F,aI-fM/iP1kR3mU3nT1v]5f7Œs;…E¯™P¸¡Q¶¡P®šQ«˜S§–Q¦”R¥–U¥•W¡’WžTŒTŒV¡ŒW¢V¦W§ŽX«Y©ŽW§“X§“V«“W°“Yµ”^»–_À™b›bÜaÅŸaˤcÑ©dÛ®jä´lì¶pð·pó¸ró¹põ¹sõ¹qöºrõ»qö½pö½nò»kñ½jó¿kóÁjòÃkðÃhîÂiëÂhä¿fã¿gá¾jß¼jܹhÖµfÒ²gаeȪbÇ«bÇ­cɯeȱeʳgÊ´h˵iɳhÊ´i͵kθlѺlÒ½lÕ¾nÕÁkÕ¿iØÄkÝÈmßÌnàÌmßÌmáÍlâÎkèÐlëÔnð×póÜtößw÷àx÷àvõàu÷âu÷åwùçyúê{ýë{üì{üì{üì{úî~úî~úî~ùî{öëxôévñåuïãsùíùí÷ê‚òåêÜ{ßÐqÕÆiÌÁgƾiÀ»g½¸d½¸dÀ»gþjÅ¿iƾiÅ»fÇ»eË»f˹eιfÒ¼gÙÀnÞÄoãÉräÌråÍsáÌqÝÊnÙÈnÚÉoÜËsÕÄlÖÅmÛÇpÝÉsßÉtâÉuäÉxáËxÛÊxØÌx×ÌzÕÊzÐÇxÊÃuÅ¿sÀ¼s»¸q¸·tµ¶t²´s¯´t®²u®´x®´x­µy«µx¬´y­µ|­µ|ª±{£ªwž¤t˜žp“™m’iˆe„ˆc~‚]x|WswTsxXsxZsxZrwYqtWorUloTknShhPffNcaL`^I^\G][F`[G^\G`_Ja`KcbNfePhgSkjUnlWomXojVniUmhTlgSmfSngTohUoiSupZuqXvrYwsZxt[yu\yu\yu\}y`yu\soVokRnjQkgNhdKe`JaZG`YF^WD\UBZSAZSAZSAZSAZSCYRBXPCXPCXPCZRE[SH[UIYUJWWKYYMZ\O]_T_bWadY`fZai^ak`dnefrhhtjgtjfsjfqiekgfkggifdfaaa_\]XXWUUTPUQNUPMVNLUMKTJIRHGRFFRGEQFDQFBRGCSHDSHDTIETIETIE)+)+(*')')(*)+)+')')(*(*)+)+*,*,-/-/+.*-(,'+&)&)(())-*.+2*3+6,6+8*9)> *A#-E%0H(3N*6P*5Q)4R(2S)3T)3W)3W)3X*4Y*4W(2W(2Z(3Z(3]'4]'4`(5`(5^&3^&3\&3['3['3[)4Y*4Y*4Y'2Y'2Y'2V'1U&0S%/S%/Q&/R'0Q&/O&.M$,K#+I!)F!(E 'G'G'H (H (I!)I!)J"*J"*M%-L$,L$,K#+K#+J"*J"*J"*L#)K"(H (C%>"83-,'$              !!"""  !"#$%'*+,-./01111111113333333321100///2210.-,,........,,,-011133433221./122211/ / / 01 22222336677;:;::9;97554433345678 9!:"">">"=!= <<;= = = >!>!?"?!?!A#!B%!B%!C& E("F)!F)!G+ J."J. K/!L1 M2!N3 O4!O4!O6 N8!N8!O9"Q;$R<%R<%S=&V@)V@)WA*WA*XB+XB+YC,YC,XB+YC+[F+^I,dM.fO/jQ2kS1lT0t]4|d8†o;˜€B«”N´ŸP³žO«—N¨•P¥”O¥“Q¥–U¦–X£”Y¡’WŸŽVžU ‹TŸŠS¤‹U¦U¬ŽX¬’Yª”Xª”X®”Y²“Z¸•]½˜a›bÅbÉ¡dË£eϨeØ­há²jé¸lòºpõ»rò·qò·qñ¶rðµoðµoî¶líµjë¶hèµfç·eé¹eê¼fë¿hêÁgëÂjèÃjá¿fßÀfÞ¾iܽjÙºhÔ·gеhÏ´gÅ«aĬbÄ®cưeŲeÇ´gȵhɶiȵiɶj̶k̹lлlоlÔ¿nÒÀjÓ¿hÕÄjÛÈlÚÊkÜÉjÚÊjßÍkâÐlçÑkêÕlðÙqóÞuöáv÷âwöávóáuõãuõåv÷çvøëyüì{ûî|ûî{úï|ûïúðúðúðøî}öì{ôêyóéxüòƒúïƒöë‚ðä~èÜzÞÑqÕÈjÎÃiÇÁmÁ¿l½»h¼ºgÁ¼jÅÀlÇÁkÈÀkƺdÊ»fͽhμfмfÔ¾hÛÂnàÈpæÎtèÑtèÑtäÏrßÌnÛÊnÛÊnÜÍrÚËpÛÌqÞÍsáÍvãÍwâÌvãÊvàÌvÚÎxØÐ{ØÐ}ÕÎ}ÒË{ÌÆxÅÂuÁ¿u¾¾v»¼x·ºw²·u°µu®´v­³w«³x­·{«¶z¬µ|¬µ|«´}§°{ ¨uš¢q˜žp“™mŒ‘h†‹c‚†a}^yzXrvUtyYty[sw\rv[psXmpUjlThjRfePdcNcaLa_J^[H\YF\WD\WD\YF]ZG`]LdaNheTkhUnkXpmZnkXmjWniUmhTmhTniUpkWqlVtr[usZusZvt[wu\xv]yw^zx_|zawu\rpWnlSmkRkiPhfMfdMc^Ja\I_ZG\WDZUBYTAYSCYSCYSEYSEYSGYSGZTH[UI]WK\XL\ZN[[O]]S^`UacXcf[eh_dj`cjbblcdneeqgfqigtkhulhuniroiomgkjchd`ba[]ZYYYXWUUQPTPOTNNRLLRJHQIGPFEPFDPFDPGBPGBQHCQHCRIDSJESJE*,)+(*')')(*)+*,')')(*(*)+)+*,*,.0-/+.*-(,'+&)%())))-*.+2*3+6,8+9'<)@*D#.J&2N*4R,7V.9T*4U*4U*4W)3X)3X)3X)3X)3W(2W(2Y'2Z(3['3]'4_'4_'4]%2]%2\&3['3Z(3Z(3Y*4Y*4Z(3['3Y'2Y'2V'1U&0S%/S%/R'0Q&/O&.M$,K#+I!)F!(E 'G'G'H (H (I!)I!)J"*J"*M%-M%-L$,L$,K#+K#+J"*J"*M$*L#)J!)F&@#83.-(%     !!              !!"" !"#$%'*+,-./001111111133333333221100//3210.-,+////////+,,-0112445433320/022211. / / 01 22322336677;;;;::;98654321 1 445678 9!9!>">"=!=!<<;;= = = >!>!?"?!?!A#!B$"B%!C&"E($F)#F)!G*"I-"I-!J. K/!L1 M2!N3 M4 M7 N8!N8!O9"Q;$R<%R<%S=&V@)V@)WA*WA*XB+XB+YC,YC,XB+YC+[E-^I,cK/fO0iP1jQ2nV4t\6za8‚k9”|@¨‘M³R±žQ¨–N¦“N¤“N¥“Q¥–U§—Y¤–Y¢“X WžUŸŠSž‰P¢‰Q¦T­X®”Y¬–Z¬–Z¯•Z³”[¹–^À™`ÄœaÇŸb̤fΧfÔ¬gÛ±iåµkí¹mô¼o÷¿tï¶qîµrí´qé²oè²lå±hä°gá°dß°bá²bâµdã¹eæ¼fç¿hèÀiçÂjÞ¿eÛÀeÛÀiÚ¾jؼiÔ¹hÑ·jͶhëa¬a¯cñeÅ´fŵgÇ·iÉ·kȶlȶlË·n̺nλnϾnÒÀnÑÁlÑ¿iÔÄlØÇm×Èk×ÇhØÊiÝÍmáÒmæÓléÖmïÚqòßvõâyôãwôâvòáuóãtóævõèx÷ìyúí{úï|úï{ùï|ùï€÷ï‚úðùñ‚ûñ‚øñùï~öï}ýó„ùñ„÷ì‚îå|çÛwÜÒpÖÉiÏÆiÉÅnÃÁn¾¼iÀ»i½kÇÁmÉÁlËÁjƺd˽eоhпgÒ¾gÖÀjÛÅoàËræÑtçÓtçÔväÑsÞÎoÛÌmÚÍoÜÏqÞÑußÒváÒwãÒxäÐyãÏxáËuÝËuÚÐy×Ó|×Ò~ÖÑÑÎ}ÌÉ|ÆÄyÁÁwÀÁ{½À{·¼z³¹y°¶x®´x­²xª²w­¸|ª¸}«¶|«¶~©³~¦®{ž¦u˜ q˜žr“˜oŒ‘i†Še…b|€]xyYruVux[ty[sw\quZorWknShjRfhPdcNdcNcaLa_J^[H[XE[VCYSCWTCYVE\YJa^MebQjgVmjYolYolYmjWniUmhTmhTojVqlXpnWssYqtYttZsv[ww]wz_{{az}b{{aux]qqWloTmmSjmRiiOggOcaLc^K`[H]XE[VCYTAXRBXRBZTFYSEYSGZTH[UI]WK^XL^ZN_]Q^^R_aVbdYcf[fi^flbfncblcblcbndboedqhgtkgwmjwplutkqqgmmcgh^bc\^]Y[ZXXXSQRTPOSONRLLPKHPHFOGEOEDQGEQHCPGBPGBQHCQHCRIDSJE*,*,)+)+(*(*')')')')')')')')')')*,*,(+(+'+'+&)&)''((,)-*1)2*4*5(?+C+F".I%1L&1P(3P(3R(2U*4V(3U'1U&0V'1Z(1\*3\-5[,6Z+5[)4Z(3['3]'4`(5a)6a)6`(5\&3Y%1W%0X&1W(2X)3X&1Y%1X&1X&1V'1V'1U'1U'1N#,N#,L#+K"*J"*I!)F!(F!(I"'J!'J!'J!'J!'J!'J!'J!'M$*M$*M$*M$*M$*M$*M$*M$*L!(K"(K"*J"*E (@$:"6 *&$                        !!""##%(**+,-./222222222233445 5 221100////..--,,----------01224466778653/-./001132000 24544457888=!=!> =;88 4 5332211034455666;;;;;;;;;<<= ?"@#@" A#!C'$C'$D(%D($D($D)"E*!E*!F+ I/"M3$O5&N4#N4#P6%R9%O9"O9"P:#Q;$R<%S=&T>'T>'Q;$T>'XB+[E.\F/ZD-WA*U?(UA)VB)XB*[F)^I,bM.hQ2jS3mT5pX4xa8†p?˜‚I¤Lª–M«˜L¡G¡ŽI J¢N¢“R¥•W§™\¨š]¤”Y£“X¤V£T¦T©‘U¯’X®”W²š\±™[³–Z¶–[¼˜^ÜcÉ¡f̤g̤fͦcÑ©cÙ¯eãµhê¹lî¹kí¸lå°lá®mÞ«jÛ¨gÛ¨fÜ«fß®iß°hÔ¨]׬^Ú±bÞµeá¸fãºhãºhà¼fáÃkÜÃgÙ¿hÔ¼fѸdÍ·d̵g˶gƳg°d¿­a¿¯bóeƹjÈ»lɼnƶkÇ·lʸnË»nͼn;mνk;iÐÀiÐÂiÓÄiÕÈjÚËlÜÐnàÒqâÔqçÕoéØpïÜuòáwôãyòäyóâvðâuñãvòævôèxöì{øízöìyõëxóìzïç|ïè~òêóì÷ï‚øò‚ûó„ûõ…ÿø‰ûõ…öîïè}ëâyãÜtÜÓnÓÍkÌÈoÅÃnÁ¼h¿ºfýiÉÁlÏÅpÒÆpοjÍ¿gϾfϾdпeÔÀgÕÁhÖÃgâÏpáÑoâÔsãÕtâÖtÞÔrÙÑoÖÎlÚÑrÛÒsÝÓtáÔvâÓxâÓxâÑwàÒy×Ñ{×Õ€ÙØ…ÛÚ‡ÙØ†ÑÒ„ÊÍ€ÄÈ|½Ày¼Â|¼ÁºÀ€¶¼~¯·{ª²w¥¯s§µz¦µ|§´|¨µ¨µ¦°|ž¨v˜¡r•œr—nŠŽi‚†c~]|}]|}^z}^twZrv[osXlpUikSfhPceObdNcbMbaL`]J\YFXUDURATN>SM=XRD[UG_YMd^PgaSicSgdSgdSifSkhUomXomXomVpnWsqZvt]qtYquZux]vz_y|ay}b{~cz~cvy^tx]ruZnrWloThlQfiNegOecNdaNc`Oa^M_\K^[J\YJ\YJZVJZVJYUIYUIYUJ[WL\XM\ZN__U_aVabZde]fi`hkbhmfhogcmecmebmebofdqjfunixqmyujtultvksujorejm`de[_`Z\[UUUSQRQPNRNMRNMRLLNIFLDBPFDOECNDBNDBNDBOECPFDQGE*,*,)+)+(*(*')')')')')')')')')')*,*,(+(+'+'+&)&)((((,)-*1)2*4*7)B,D+I .L$/N&1Q'3Q'1R'1X*5W)3W(2V'1X&/Y'0[)2Z+3Y+5X*4X)3Z(3Z(3['3]'4^(5`(5\&3Y%1W%0V$/U&0U'1V(2W%0W%0W%0U&0U&0T&0T&0R'0N#,N#,L#+K"*J"*I!)F!(H (J!'J!'J!'J!'J!'J!'J!'J!'M$*M$*M$*M$*M$*M$*M$*M$*L!(M")M"+L#+H )A%<$7!-)&#                        !!!""#%()*+,-..0000000022233445 32211000//..--,,----------01234566778754/../001122101 24544457888=!=!> =;88 5 5322111034445566:;;;;;;;;<<= ?"@#@" A#!C'$C'$C'$C'$B&#B&"B' B'E*!I.#L2%N4%M3$M3"O5$Q7&N8#N8!O9"P:#Q;$R<%S=&T>'S=&T>'WA*ZD-[E.ZD-XB+WA*VB*VB*YC+[F+_J-cN/hQ2jS4nU7pX6w_9„n?”}G¡ŒM¨”Mª–M¡ŽI¡ŽJ¡M¢N¢’T¤”V¦˜[¨š]£“X£“W¥‘V¥‘T©‘Uª’T¯’V®”W°˜Z°˜Z´—[·—\¾š`ÄdÉ¡f̤gÍ¥gΧdЪcÖ¯dà´iç¸jê·héµjݬiÛ«kبjÕ¨gÕ¨gÖ«gÙ®iÙ±iϧ_Ñ«`Õ°bÙ´dݸhá»jâ»lâ½lÞÃjÛÂf׿gÔ¼fϹdθeÌ·hÊ·hǵiIJfÀ°c¾±cögǺkȽmȽnƸmƸoƸmƸmÈ»mɼmË¿mÌÀlÍÁkÎÃiÑÆlÔÉmØÎoÛÑpÞÔsâÖräÕnæØoìÚtîàwðâyðäxïãwîâtòæzòèyôê{ôí{õî|ôíyóìzòì|ëäzìå}îçðéóì÷ñƒúô„ûõ…ûõ…øò‚óíðê|ìåzçàvàÙoÙÔpÑÍrËÇpÅÁjľhÈÁiÎÄmÓÈoÖÈpÓÅmÓÃkÓÄiÒÃhÓÄiÔÅhׯjØÈiÜÎmÜÐlßÓqßÕsÞÖsÜ×sÚÔrØÔqÖÒq×ÓrÜÓtÞÕváÖzâ×{åÖ{áÖ|ÛÙ‚Ú݆Ýß‹ÜàŒÚÝŒÔ׈ÌЄÆÌ‚ÂÈ‚ÁÈ„ÀƆ¼Å†·¿ƒ²º~¬´y§°w§´|¥´{¥´}¦´¦³~¢®|œ¥v— s’™pŽ”nˆŒi…d~_{|]z{\zz^tw\quZosXlpUjlTgiQegQdfPdcNbaL`]J]ZGYVEURAUO?SM?WQEYSG^WMb\Pf`ThbTgdUgdSheTkhUnlWomXomVpnWsqZuu]tw\uy^vz_x|az~cz~cz~cz~cuy^sw\quZnrWkoThlQfjOfhPedOedPdaPa`N`]L]\J]ZK[YJ[WKYWJYUIXVIZVKZXL\XM\ZN_aV`bWbc[dg^fi`gmchoggqheogdogcpgaqgcrkfunixqkzuny{mv{lsyhpsfkobgj_cf^bc[\^XXXTRSRQORNMPLKMHEJEBNFCNDBMCAMCAMCANDBOECPFD*,*,)+)+(*(*')')')')')')')')')')*,*,(+(+'+'+&)&)((((,)-*1)2*5+9+C+G*K!-M#/P&2R'1R'1T&1X*4W)3W(2V'/X&/X&/Y(.X)1V+4V+4W)3W(2W(2Z(3\(4\(4[%2Y%1W%0T%/S$.R$.Q&/Q&/Q#-Q#-Q#-Q#-Q#-O$-O$-O$-M"+L#+L#+K"*J"*I!)I!)I!)K"(L!(L!(L!(L!(L!(L!(L!(N#*N#*N#*N#*N#*N#*N#*N#*O")N#*N#,M$,J"+C '>&:#3!.*%!                        !"""%()*+,-..--------1223344433322110//..--,,--------//013478679998751///001121111 24544457888< < ==;99 5 31110///22234446:;;;;;;;;<<= ?"@#@" A#!C'&B&%B&%A%"@$!?#>#>#C(G,!K1$L2#L2#K1"M3$O5$M7"M9!M9!O;#P<$Q=%Q=%R>&S?'T@(UA)VB*WC+XD,YE-YE-WC+XD,YE,[G,^K-bO1fQ4hS6oW;qZ:w_;j>xC™…H¢K§”O¢J¢K¡M¢N¡‘S£“U¤–Y¦˜[¢’V£“W§“X©•X­•W­•U°”U°”U¯–V°—W¶˜Z¼š]›`ÇŸdÉ¡fË£fΨiΨgϪdÔ®eÚ³hàµgá³eß±fÓ¨dЧgϦhͦeͧfͪfЮgÒ°hʨ`̪`ЯbÕ´eÛ·iߺjá¼nà½kÜÁhÙÂeÖ¾fÔ¼fкeϹfιj̹jÉ·kÆ´h²eÁ´fŸiȽmɾnɾoƺnĸn¶jÀ´h·hźjɾlËÁlÌÂkÍÄiÐÇlÔËnØÏpÛÓqÞÖtá×uãÖpåØpêÛvìßwïâzîãyîãyíâvóè~òê}óë~óí}ôî~óí{òì|ðì~èäyèã{éä|ëç|ïëôð‚øõ„ûø‡õòóð}ðí|îê|íé{êæzåáuáÜv×ÒtÒÍrÌÇlËÄjÏÆkÓÈn×ÉpÙÊoÚËpÚËpØÉlÖÉkÖÉk×ÊjØËkØËk×ÍkØÐmÚÒoÙÔpÙÕrÙ×sÛØwÚÚxÒÒpÔÔrÚÕwÝØzáÚãÜçÜ‚ä݃áá‹ßåáæ’àå‘ÜáÔÛ‹ÍÔ‡ÈÐ…ÆÍ‡ÄΉÃÌ‹ÀÉŠ»Ã‡´¾‚¯¸ªµ{¦µ|¢³|¡²|¡²|¢°}ž¬{—£u”r”kŠj†Šg…d~`zz^yx\ww]sv[rv]pt[nrYlnXjlVhjTgiSedPcbNb_N^[JZWFWTCVPBTN@VMDXOF\SL`WNd]SgaUicUjdTheTkhUnmXonYooWppXss[tv^y}by}b{d{d|€e{dz~cy}btx]sw\quZosXlpUimRhlQgkRfhSefTedRabPa_P]^N][NZ[MZXKXYKYWKWWKZWNYYO\YP[[Q`aY`cZbe\eh_hkdhmfiphhrihrjgrjfsldslfunfwohyskzwr}p{mv}irwgntempejneilbce]_^WWWQQQONLMLJKGDIDAMECLDBKCAJB@JB@JB@KCALDB*,*,)+)+(*(*')')')')')')')')')')*,*,(+(+'+'+&)&)((((,)-*1)3+7-;-E,I+L".N$0Q&0R'1T&1T&0X*4X*4X)1W(0X&/W%.W&,U&,U*3T+3T)2U'1U'1W(2Z(3Z(3W%0V$/S$.R$.Q#-O$-N%-N%-L#+M"+L#+L#+L#+L#+L#+L#+K"*K"*K"*K"*J"*J"*J"*K"*M")M")M")M")M")M")M")M")N#*N#*N#*N#*N#*N#*N#*N#*P#*P#*O$-N%-K#,F!)B(<%6$1",!'$                       !!""$'()*+,-.++++++++1112333433322111//..--,,,,,,,,,,./0145897799:875200000111111233444457888;< =<;99 6 21100//. 12233445:;;;;;;;;<<= ?"@#@" A#!A%$A%$@$#?#"=!< ;; A&E*!I.#J0#J0#I/ K1"K4"K6!L8 L8 N:"O;#P<$P<$Q=%T@(T@(T@(T@(VB*XD,ZF.\H0YE-YE-ZF-\H/_K0cP2gR5iT7pX~g=†p>‘}Bœ‰G¤‘M¢K¢K¡M¡M R¡‘S¢”W£•X T¢’T©•X­™Z±™Y±šW³—V²–U±•T³—X¸˜[½›^ÄbÇŸdÉ¡fÉ¢gÍ©kË©i˪eÏ­fÕ±gײdÙ¯cÖ¬bˤaÉ£bÉ£dǤbȧdȪdÉ­d˯eȬbʯbͰbÑ´dÖ·gÙ¸gݹkܼiÚÁgØÁdÕ½eÓ»eкeιfϺkͺkʸlƶiÄ´göhźjɾnɾnɾoÄ»nÁ¸m¼³h¹°c¹°a¾¶eļkÈÀkÉÂjËÄjÎÇlÓÍo×ÑqÛÕuÝ×uàØuäØtæÚtêÜyìàzîâ|íä{íä{íä{óêòë€óìñíñíñíñíðì~êå}êå}ëæ~íé~ñíöò„ûø‡ýú‰ôñ~òï~ïì{ïë}ïë}íé}èäyäßwÛÕsÖÐrÓÊmÐÇjÓÉj×ÊlÚËnÚËnÞÏrÝÎoÚÍo×ÍlÕËjÔÌjÔÌjÕÍkÔÏkÖÑm×ÓoÖÔpÔÔpÕÕq×ÙvØÝyÏÔpÓÕtØØxÜÜ|âß‚åà„èá†çãˆãçàè’áé”Þç”Ûâ’ÓÜÌÔ‡ÆÐ‡Ä·Ã̉ÂËŠ¿Éлʼn¶À„²»‚­º‚¤µ~¡´|Ÿ²{Ÿ°|ž®}›¨z• ušp‡h‡i„ˆg€ƒd~~bzz^yw^vv\tv^sw^qu\osZnpZmoYkmWkmWfeQedPc`O`]L\YHXUDWQCVPDTKDVMFXOH\SL`WPd]SgaUicUheTkhUnmYonYooWoqYrt\uw_}f}f}f}f|€e{dy}bx|asw\rv[quZosXmqVkoTimRimThjUghVfgUcdRabR^_O\]O[\NZ[MZ[MYYMYYMYYO[[Q\\R\^Sad[be\dg^dj`gleiphisjjtkjumivmgvohwphyqizrj{ujzyr…r|…py‚nw~nu}krxintfkoaeh\]_UUWOOOMLJKJHKGDIEBJEBKCAIA?H@>H@>H@>IA?JB@*,*,)+)+(*(*')')')')')')')')')')*,*,(+(+'+'+&)&)))))+(,)1)4 ,8 .=!/F -L -N#-P%/Q&0R'1T&0T&0W)3W*1W*1V)0V'-U&,T%+S&+S*2Q)1P(0Q(0R'0T&0U'1W(2S$.R$.R$.O$-N%-L$,K#+I$+G")G")I!)I!)I!)I!)I!)I!)J"*J"*J"*J"*K"*K"*K"*K"*N#*N$(N$(N$(N$(N$(N$(N$(N$(N$(N$(N$(N$(N$(N$(N$(O")P#*O$-N%-L$-G"*C)>'7%2#-"'$                         !!$&()*+,--++++++++0111233333221100//..--,,,,,,,,,,.01378::89;;:9:7311111000112333344457888;;<<;:: 72..--,,,///00114:;;;;;;;;<<= ?"@#@" A#!@$#=#$<"!;! :!877=%A)E-!F/!E. E. G0 I2 J5 I7I7J8 K9!M;#M;#N<$R@(R@(Q?'Q?'SA)VD,YG/\J2YG1YG/ZI/[J0`L1cO4gR7iT9nY>r]@w`@zd;€j9‰t;•BŸŒH¢K¡ŽJŸKŸKOžŽPžSŸ‘TžŽP¡‘Sª–Y¯›\µ]¶Ÿ\¸Z·œY³˜U¶˜X»™Z¿›]ÄbÇŸdÇ eÆ¢f̪kÈ©hǪfʬfÏ®gЮdÑ«bΨ_Ƥ]Ť_ŤaĦ`ħaÅ«aÅ®bŰaȳdÉ´c˵bεaÑ·cÓ¹dÖºg×»gÚÁgØÁdÕ½eÓ»eкeιfϺkͺkÉ·kƶiÄ´göhÆ»kȽmȽmÆ»l¹n½µj¶®c²«]²«[·°_¾·fýgÅ¿gÈÃhÍÈlÒÍo×ÓrÚÖuÜØuÝ×uäÚxæÝxêÞ|ëâ}íäíæ~îçîçñê‚ïë€ïë€îìïí€ðîðîñï‚ðí‚ðí‚ðí‚òðƒõó„øö…üú‰þý‰óñ€ðî}îì}íë~íêëè}æãzãÞxÞÖqÚÒoÕËiÕÉg×ËiÚÌkÛÍlÛËkàÒqÞÐoÛÎnÖÌkÑËiÎÊgÎÊgÍËgÓÑmÖÔpÖÖrÔÖsÏÔpÏÔpÑ×uÕÛyÏÕsÑ×wÖÚ{Û߀àá„äã‡èä‰åå‹áçÞè‘Þè’Ùå‘ÖߎÎÙŠÇÒ„ÃÏ…½É½È„¼Ç…ºÆ†¸Ã‡¶Á…´¿…±¾†§¸¢·Ÿ³~ž°|œ¬{˜¨y“ tŽ™o†Žg…‹gƒ‡f€ƒd~~b{{azxaxx`vx`uy`sw`rv_qs]oq[moZmoZhgUgfTebQa^M]ZKZWHYSEXRFSJCTIEUJFWNG[RK`WNc]Qf`RheTkhUnmYonYnpXprZtw\vz_~f~f~f~f|dy|awz_vy^sv[ruZqtYpsXorWmpUloTlnVjmZil[gjYehWbeT_bQ]_Q\^P\^Q[]P[]RZ\Q[]R\^S^`U_aVbe\cf]chafkdingjqijtlkumlwqkxqjyrkzsk|vl}wj}wl|{r‡q~‡r|†s}†t}†py€ipvdim[_bUYZPQSKMLKKIJJHIHDIEBIDAHC@GB?E@=D?*,*,)+)+(*(*')')')')')')')')')')*,*,(+(+'+'+&)&)))))+(,)1)4 ,:"0?#1J!/M!.O$.Q&0R'1R'1T&0S%/T'.U(/V)0V)0W(.V'-U&,Q'+Q)1N)0O'/O'/P'/Q&/T&0U'1Q#-O$-P%.O&.M%-J%,I$+G$*F#)D$)F#)F#)F#)G")G")G")I!)I!)I!)J"*K"*L#+L#+L#)O$+O%)O%)O%)O%)O%)O%)O%)N$(N$(N$(N$(N$(N$(N$(N$(N!(O")O$-N%-M#-G"*C)>'7%2#-"($                          !!#&'()*+,,,,,,,,,,0001122321110/////..--,,++++++++/01379; !#;!";! : 9 887;"?'C+D, C,C,E.F1I4H6H6I7J8 L:"L:"M;#Q?'Q?'Q?'Q?'TB*WE-ZH0\J2[I3[I1[I1]L2aM2dP5gR7iT9mX=r]@ybBzd={e4‚m6Žz=™†D¡ŽJ I‹IœŠHšŠLšŠLšŒO›PœŒN R©•V°[· ]º£_¾£^¾£^¹œZº›Z½›\¿›]ÄœaÅbÆŸdÅ¡eȨkÅ©hÄ©fÆ«fɬfʬdÉ©`Ç¥]Ǧ_Ǧ_ŧ_Å©`ëaía¯`Á°^ǶdÇ·bȶ`ɸ`θbѼcÕ½eÖ¾fÚÂhÙÂeÖ¾fÔ¼fкeϹfιj̹jǵiųgófµgŸiÆ»kźjÁ¸i½µj¹±h²ª_­¥Z­¦X²«[¹²a¾¸d¼fÆÁfËÆkÑÌpÖÑsÙÕtÛ×vÛ×tâÚxäÚxæÜzèÞ|éá~ëã~íå€ëæ€íè‚ìé€ëèìé~íêïìðïƒññƒöô‡÷õˆøö‡ù÷ˆù÷†úù…úù…ûú†ñï~îì}ìê}ëè}ëèéæäà|áÜvߨpÞÓjÚÎhÚÍgÜÏißÐkßÐkßÏmáÓpÞÒpØÎlÔÌiÎÊgËÉeÇÇcÆÈcÎÐkÒÔoÖØuÓØtÎÔpÌÔoÏ×tÑÛxÏÙxÑÛzÖÝ}Ûáßã…áå‡äåˆâåŠÛåŒÙæŽØäŽÕáÐÜŠÊ׈ÄЄÀÌ‚¹Ä¹Ä€·Ã·Ã…¶Á…µÀ†µÀˆ²¿‰ª½†¥º‚¡µ€ž²œ®~˜¨{“ uŽšr‡j…Œjƒ†g€ƒfe}}c}{d||dz|dx|cvzctxart^pr\np[np[jiWhgUfcRc`O_\M[XI[UGZRGSHDRGERGCRGCTKDZQH^WMa[MgdUkhUnmYnpZoqYqs[tx]w{`{~c{~c{~cz}bx{`vy^tw\ruZqtYqtYqtYpsXorWorWnqVnpXmp]lo^jm\gjYdgVadS^`R]_Q_aT_aT^`U^`U^`U`bWacXbdYdg^eh_ejcgleiphlsklvnlwolwqmzsm|un}vo€zo€zm€zm€~rˆr~Št~Šv€ŠwŠr{„how_flV[_RVYNOQKMLKKKKKIJIEGFBIEBIDAGB?E@=D?'5#0!+ '$                    #&'()*+,,--------/0011222000//..-//..--,,++++++++/0138:= >!9:<<=<:763321100/ 0234322444578889:<<<;;71---,,++..//0003:;;;;;;;;<<= ?"@#@" @$!<!: !: : 9 9 9 9 :!=%A)B*B+B+C,D/H3G5H6I7J8 K9!L:"L:"O=%P>&Q?'R@(UC+XF.ZH0[I1\J4\J2\J2^M3bN3dP5gS:hT;kU=r]BzcCzd=xc4|i1‰u8“€>ŸŒHž‹GœŠHšˆF—‡I—‡I–ˆI—‰J›‹MžŽP¨”U¯œZ¹¢_½¦bècŪc¾¡]¾Ÿ^¾œ]¾š\š_Û`Ädàfƨlçh¿¨eÁªfĬfÆ«dħa¤\Ê©bË«bÉ«bÈ®aŰañ_Á²_À±\·^·]Å·^Ǻ^ͼbÑÀd×ÄhÚÅjÜÅhÛÂf׿gÔ¼fϹdθeÌ·hÊ·hųgñeÁ±dÀ³eögÄ·hÁ¶f½´e¹±f´®d­§[¨¢V¨¢T­¨W³®\·²^¿»dÿdÉÅjÏÌoÔÑr×ÔsØÕtÚÖuÞÕvß×uàØvâÚxäÜzæÞ{æá}çâ|êåèå~èå~èç}ëê€îíƒñð†òñ…ùù‰úúˆûû‰üýˆûü‡øù„õöóôëëyééyçæzçæ|èææä€ãààÜxâÙpáÖlÞÑhßÑhâÓlæÔnçÕoäÕpãÕràÔpÚÐnÒÍiÍËgÈÈdÃÈbÂÇaÆËgÌÒnÒØtÒÚuÍ×tÊÖrÍÙwÑÝ{ÒÞ|Óß}Öà€ÙãƒÜã†Þã‡ßâ‡Ýã‰ÙãŒÖäÔâÒà‹ÎÛ‰ÇÕ†ÂЃÀ΃¹Æ€¹Æ¸Ä‚¶Â„µÀ„´¿…´¿‡²¿‰®ÁЧ¾ˆ¤¸… ´¯™©|•¢wœtŠ’m‡Žl„‡h€ƒfe€~gh‚‚j}i{hy}fvzctv`qs]oq\moZkjXihVheVdaR`]N]ZK\VH[SHSHDSEDODBNC?OF?TKBXQG\VHgdUkhUnmYnpZoqYqu\uy^x|awz_yy_yy_xx^ww]ttZrrXqqWssYssYrrXrrXrrXrrXrrXprZor_mq`ko^gkZdhYaeV^bS]aRaeWaeW`cX`cX`cXbeZcf]dg^ehafibfkdingjqjmtmmwomxplwqmzsn}xq€{rƒ}rƒ}pƒp‚‚v„r€‹q}‰rˆu‰pzƒfov^ekV[_RWZOSTMQPNPOLNKIIGGFDJFEICCGAAF@@D>>D>>D>>D>>*,**)+))(*((')''')''')''')''')')(+(+()()')')&)&'**)))(+(/)3!-:&2A'4H$0M#-O%/P&0Q'1Q'1Q'1P'/N#,P%,R'.T*.U+/T*.U(-Q(.N)0L)/K(.K&-M%-O&.P'/R'0N#,O$-P'/P'/P'/M&+K#+H#*D$)C$)C$*D$)D$)F#)F#)F#)F!(F!(I!)J"*K"*L#)N#,N#*R%*R%*R%*R%*R%*R%*R%*P&*N$(N$(N$(N$(N$(N$(N$(N$(L&M)M"+N#,L",I!*D)?'5 2,'#                    !%&'()*+,//////////001122///..--,//..--,,++++++++.0148:{dB{e>F=>F=>***(***(***(***(***()))'(((&'''')))))))))))))))'-!++))'*'+(/",2%/:&1F&1H$.H$.G#-G!,F!)H )G'O'/O'/P'/P'-Q(.Q(.R'.P).L)0J)0J)0L)0K(/L'/N&.O&.R)/Q(.R'.Q&-R%,Q$)Q$+M$*G"*D#*E$-G$+G$+I$,I$+I$+J"*K#+L#)L#)M$*N%)O$+Q$)T%+U$*S$*R#)R#)Q"(Q"(P#(O"'O"'O"'O"'N$(N$(N$(N#*N#,M",L!+K *J)H'F&E&?$:"5/(!                     #%%%&&''.-../033////////000//..-........,,+++-.035679 :!;";"::998877333221111112233334677777::;;;987 3 3 3 3 1 1 1 0/ . /001237 7 7 7 8777< < < =!> ?!?!?!> >"@" ?# A#!?#@#?$A$@%B&C)E)E+G,G-F/E0F/G2!I3%L6(N8*P;*L9(M;'N>'P@'SC)VG*XI*YJ-^L4^L6`L4`L3bN3dQ3hS6iU4oX6r\7t^7u`5wa2zd2€k6…p;–‚M•„N”ƒMGz@Ž{@•ƒEœŠJ ŽL§”O°X·£\º¦]¼¨_Á«`Å­eͬiɦdÆ _ÅŸ`Æ aÅ¢bà`Àž^Á¤bÀ¥bÀ¥b¾¦`¿§aÁ©cªdëcÅ®bƯaǰdȲfɳhÇ´hÇ´hųgųgÁ±d½­_½­_³b̽jÖÇtßÍwÜÇlÝÆiÛÃkØÀjÓºfεeʰcÅ®bÄ®cïf°f»­b¶ª^±ª\²¬^µ¯a±ªb®§_©¥\§£Y§¥Z«©^°®a´³c»ºhÀ¾iÉÅnÏËrÕÐuØÑvØÒt×ÑsÖÑu×ÔwÚ×zÞÛ~áÞäá‚åâƒæã„ãàááããä䀿æ‚ççƒéê„éê‚ôøŠóúŠõüŒõüŒôø‰ïó„êî€èê}èç{çæ|çä{èå~êç€êåæá}âÝwäÝräÞpàÚjßÙiæàpïé{ìè|äàuÚÕmÚ×pÚØtÙÖuÓÓsÍÎpÈÉlÄÇl¾ÃgÂÇkÆÌrÇÐuÆÓwÈ×zÍÞ€Ðä…Îã†Ïä‡Ðã‡Ñâ†Ðß„ÏÜ‚ÏÙ€ÌØ‚ÑÞŒÎÜÌÚËÙŒÊØÄÔ‹¾Íˆ¸Ç„¸ÆˆµÅ‡±À…®½„­¼…­»†¬½‰­½Œ©»‹«¼¬½‘¨·Œ ¯†š©€—¦—¥›y˜xˆ“sƒŽpˆm|…jz‚jz‚j|„o{ƒn|mzkw|huxesvcqtcoralm]hiYfdUdbS`^O[YJYSGVKERDAK@8G<6G>5RJ?]WIhbTmgWqn[tr]us^tt\vv^ww]ssYssWrrXqqWmpUloTkmUjnUkmUjnUimVimVjoXkpYmr[ns]or_or_op`mp_kl\gjYdeWacUaaUacVddXegZgg]fh]gg]eg\dj^dlafncgqfjtkkwmmxpmzqn{to{wo~{q€}r‚t„ƒv†…w†‰u†t„“s€p~‹lx†ht€fpzenwbis^emZ_eUZ^RVYMQTHIMEEGHFGIEFHBDF@BF=@F=@G<@G<@*(*(*(*(*(*(*(*(*(*()')'(&(&'%'%)')')')')')')')'-!++)*()'*(-!+1%/6&0@&1C#.C#.B#+B!*B!*C)C 'G$+G$*I$+I$+L$,M&+M&+L'.J)0I*2I(/I(/K(/L'/N&.N&.R)/Q(.R'.S&-S$*S$*R#)Q$+M%.I%/I%/I#.H#+H#+G")I!)K#+L#+L#)M$*M$(O%)O%)R%*V%+V#*U$*U$*T#)T#)Q"(Q"(O"'O"'O"'O"'N$(N$(N$(N#*L!*L!+K *K *L)I(H'G'C$>"81)"                      """#&'''..//0134///////////..---........,,+++-.035678:!:!;"88776655333221111112233366777899::;;;987 3 3 3 3 2 2 0 0 0001123344446566:!:!< =!> ?!?!?!?!?!@" @#A$ A$A$A$B&C'C'E)F+G,H-G-H.F/G0"H1#I3&K5(N8+O9,L9*M:)N=)P@'SC)VG*WJ*XK+^L4^L6`L4`L3bN5dQ3hS4iU2oY4r\5t^5u`3wa2zd3€j9„n<{I‘M“‚N”€K}C‘~C—…E‹I¥’M«™Q³ŸV¸¤[»¨\¼©]¿¬`ĬdÏ®k˨fÇ¡`Ÿ]à^â_¡^¿ ]¾¡]¾£^¿¤_¿§aÀ¨bÁ©cªdªbÁ«_­^Ä®bưdDZhűhűjñiÀ®f¾¬dºª_ºª]¿¯bɹkÔÅtÛËvßËrÝÈmÜÄl׿iÒ¹gÍ´dɯdÅ­c¿©`¿«d½¬d¸ªa±¨]®¨\®«^±®a±ªb­©`ª¦]©§]««a°±e³´fµ¶f¼»iÀ¿lÇÅnÎÊqÓÎsÖÏtØÏrÖÐrÖÓvÖÕxÚÙ}ÞÝ€áàƒãâ…äã†åå…ââ‚ââ€ããää€ååƒææ‚ççƒæé‚êð„êòƒëó„ëó„êð‚çíåè}äæ{èç}æå{æãzèå|ëæ~ëæ~ëä|æâwæâtçäsäápàÞmåãrììzëë{ååwÞÝqÜÝuÜÜxØÚyÒÓuÊÊpÂÂj¼¿h¸»dº¾g¼Âl¼Æo¼ÉqÀÐwÆÙËà…Ëà…Éà†Ìà‡Íà‡ÎÞ†ÍÛ„ÌÚƒËÙ„ÏÝŽÍÛËÙŽÈØÇ×ÄÓŽ¾ÍŒ¸È‰·Æ‹³Å‹°ÁŠ­¾ˆ«¼ˆ©»‡©»‰©»‹§¸Œª»¬»’¨¹¢±Ššªƒ—¥•¥|‹šy‡”vq~‹oyˆky†lx„l|…p|ƒq{‚py€nx|kuyhtwfrudpsbmp_kl\hiYhfWdbS^\MZVJXMGSEBNA;J?9H>5I?6SI?^VIh`SlfVrmZup]vq]us^vt]xv_ttZttXssYrrXorWnqVmqXmqXkoXjnWinWinWhpYjr[lt]ot^or_or_pqamp_kl\gjYefXbdVbbVceXeeYfh[hh^hj_hh^fi^dl_cmbeodgsiiukkxomzqn{tnzvm|yo~{p€sƒ‚u……w‡‡x‡Œwˆ’v†•vƒ“ro{‰jv‚hr~fpzdku_fn[_hV[aSV[NQVJKPFGKHFIGEFFBCE?AF=@E'>%? &A"(C")E%*F&+F&+I(/I(1K(/K(/L'/L'/N&.N&.Q(.R'.T'.S&-T%+T%+U$*R%,O'0M'2L'/L$-K#,I!*H (H'M$*N#*N#*O$+O%)R%*R%*S$*V%+W$+V%+U$*T#)T#)R#)Q"(P#(P#(P#(P#(M#'M#'M#'M")I (I)J)J)J)I(I(H(F'A%;"3+#                          !#&())./011244////////...--,,,--------,,+++-.0456789 9 :!887766553332211111122333986668:<::;;;987 3 3 3 3 2 2 0 0 12232334 22224455:!:!< =!> ?!?!?!@" @" @#@#A$ B%B%C&D(E)E)F*G,H-I.H.I/ G0 G0"H1#H2$K5'M7*N8+K8)L9(M<(P@'SC)UF)VI)WI,^L4^L6^L4^M3bN5dQ3hS4iU2mY4o\4t^5va4xb3{e4€j9„n<‰uB{F”I–H”€E•Dš‡E Iª–Q¯›Tµ¡X¹¥\º¦]»§^½©`ªbίl˪gǤbâ_¡^À¡^¿ ]¾¡]ºY» [¾£^¿§aÁ©cÁªdÀ©c¿©`¼¦Z¾©Z¾«^À­`Á­dÁ­dÁ­fÀ®f»©a·¦^µ¥Z¶¦Yº­_Ä·hÎÂp×ÈußÎvßËrÛÅoÕ¿jϸhʳeÆ®díd¹¥^¸¥`µ§`³§_®¦]­§[­ª]®¬_°¬c­©`¬¨_®¬a²³g·¸j¹ºj¸ºg»½iÀÀjÆÄmÍÉpÒÍrÕÎsØÏrÖÐrÙÖwÙÙyÜÛ~àà€ããƒåå…çç‡çç…ããããää€äåää€äåäåãæ}åëäì}åë}äê|æê|åé{åçzåçzéè|æåyæãxçäyëç|îêíé~ìè|ìéxíìxìëwçærèçsíí{íí}çé{âäwáâzàà|ÛÝ|ÓÔwÅÈmº½f²´`®°\®²]®³_®¶a±»e¶ÄmÀÐxÄØÄØÅÙ‚ÇÛ„ÈÜ…ÉÛ…ÊÙ„ÊÙ„ÉØ‡ËÙŒÈØÆÖÆÖÆÕÂӽ͌¶É‰µÇ‹´ÆŒ±Â‹­À‰ª¼ˆ¦º‡¤¸‡¤¸‡£¶‰¦¸Žª»‘§¹£³Œ›­…—§‚“¤€ž}‹œzˆ—xƒ“vs{‹pzˆny‡n~‡r}†s|ƒqy€nw~lt{itxgtwfqtcqrbqo`qo`om^kiZebSa[O^QKVHEPC=NA;L?7J@7SI?]UHf^QkdTqjXto\up\vq]xs]wu^uu[uu[uu[ttZrt\rt\qu\qu\lpYkoXjoYjoYiqZks\mu`nvaptcosboralp_kn]fjYegYbfWdfYdhZgi^gj_jlailaik`fl`cmbcoeeqggtkjwnlyrn{tm|wm|ym}|o~r‚‚u……vˆŠxŠŒyŠ‘{‹˜zŠ™z‡—w„”snz†lv‚is}fmwahp]ajY^dVY^QTYNOTIJNHFIFDEFBCE?AEE:>E:>*(*(*(*(*(*(*(*(*(*()')'(&(&'%'%)')')')')')')')', *+)*(*(*(, *.",0#-5!,6!*7,6)6)6)8)8'8&9%:& ?!?!?!@" @" @#A$ B%C& D'E)G+G+H,I-I.J/J/J1K1 I2"H1#H1#H2$J4&K5(M7*K8)L9(M<(O?(RB)UE+VH+WI,^L4^L4^L4^M3bN3dQ3hS4iU4lX5o\4u_6wb7yb6{e6i:ƒm<Šu@zC”F•F“B•‚@œ‰E¢J­™R±Tµ¡X·£Z·£Z·£Z¸¤[¼¥_ɬhÈ©fƧdÄ¥bÁ¤`¿¢^¼Ÿ[ºŸZ¶›V¶žX»£]¾§aÀ©c¾ªc¾§a»§^¹£W¸¥Vº§Z¼©]½©`½«a¼ªb»ªb¶¥]µ¤\³¢Z³¥Z¹¬^Á¶fÌ¿pÒÆrÜÌuÛÊrØÆpÔÂnͺkƳfÀ¬c½©b¶£^µ¤^²¥_¯¥]­§]­©_®¬a¯­b±­c¯«a®¬a³±d¸¹k¼½m»½j¹»g¼¿h¾ÁhÅÄjËÇlÑÌpÕÏqÚÑrÙÓsÛØwÛÛyÞÞ|ââ€ååƒèè†éé‡éé…ææ‚æç忀åæ~äå}ãä|ãä|âå|åëäì}äê|ãé{åé{çë}êìëíêê|ççyæäuèæwíé{ñíóïòðñðzôõ}ôô|íîwëìuíð{îñ~êí|äæyâå|àâ}ÚÞ}ÒÖxÅÈo·¹e®°]¨©Y§¨X¥¨W£«X§°_®»i·Æs½Ï{»Ïz½Ñ|¿Ò€ÁÔ‚ÃÖ„Å×…ÆØ†Æ×‰ÅÕŒÃÔÃÒÃÔŽÄÕ‘¿ÒºÍ¶ÈŠµÇ³ÆŽ°ÃŒ«¿Š§»ˆ¤¸…¡µ„Ÿ²„ ²ˆ£µ‹¦¸Ž§¹¤¶Ž¯‰—¨„“¤€ ~ž~Šš}†–y‚’w~Žs|ŒqzŠp~Štˆu}„rzow~lu|jvziuyhtuestdusdwufvterpakhYgaUdWQ[LISD?PC=NA9NA9UH?]SGe[OibRohVslZun[up\wr\yt^wu\vv\vv\vv\tv^uw_tx_tx_mqZmqZlq[lq[ks\mu^owbpxcovdovdosbkr`jn]elZeiZbiYei[dj\hk`hnbknciockncgodeofdqhfsjhunkxql{vn}xn~{m}|oqr„†u‡‹wŠŽzŒ{Œ”}š}œ~‹›{ˆ˜wƒ‘r~Šoy…lv€hoycjr`dm[`fY\aUX]QRWMNRHFIGEFFBCD@AE'-B'.F%.I#.J%-J%-M%.N&/O&.Q&/R'.T'.U&.W%.W&,Y&-Y&-X&/O$-N$.N$.O%/P%.P%.P%.R$.R%,S$,S$*T%+T%+U&,W&*W&*X%,X%,W&,V%+V%+U$*S$*R#)Q$)Q$)Q$)P#(M#'L"&L"&L!(G&G'G'H(H(H(H(G(E")A '<$5 /(#!        !#&(**./234343////////.--,,+++,,,,,,,,,,+++-.0456667778877665533322111111223336420 1 379::;;;987 4 4 4 4 3 3 1 1 44342233///03355:!:!< =!> ?!?!?!B$"A#!A$ A$ B%D'!F)!H,!J."J."K/!K/!K0L1L1K2M3"J3!I2"I2"H2$I3%J4'K5(J7(K8'L;'O?(RB)TD*UG*VH+^L4^L4^L4^M3`O3bQ3gT4hU4kW4o\4u_6wb7xc8ze8~i<‚l;ŽyB’|B”~B“~?‘|;•<žŠC¦’I®šQ±žR´¡Uµ¡X³ŸV³ŸX´ Y¸¡]Á¦cħeŪgŪg§d¼£`·ž[³œX²›WµžZ¹¢^º¦a¼¨c»¨cº¦a¸¦^·¤X·¦X¸¦Z¹§[º¨^¸§_¸§aµ§`´¦_²¤[±£Z²¦Z·¬]¾¶eɾnÏÄrÑÅoÔÅpÔÅrÒÃrÍ»oųi½«c¶¥_µ¦a³¦`°¦a°¨`®ªa¯­c®®d¯°d²°e²®d³±f·µhº»k½¿l¼Àiº¿eÀÃhÁÅgÆÅhÌÉjÑÌn×ÑqÝÔuÝ×uÜÚvÝÝyàà|ää€ççƒéê„ëì†ëì„éê‚éê‚èéçé~æè}åç|äæ{ãæ{åëãé}äèzäèzåézèì}ëííðìì|êêxèétêëvñð|õô€÷ö€ø÷öø}÷û€øúïóxìðwðô|ðó~ëï~áåwÝãyÛà|ØÞ~Ò×{ÇËt¹½i°±a¨©[¥¦Z¢¥X¡¥X¤«^©´f°½n²Ãs°Ãt²Åv´É|¸Í€¼Ñ„ÀÒ†ÂÔˆÂÔŠ¿ÐŠ¼Ð‰¾Ï‹¾ÑÀÓ‘¾Ó’¹ÍŽ¶Ê³ÆŽ°Å¬À‹¦½‰¡¸„ž´ƒœ²ƒ›±‚›°…ž³Š¡¶£¸¢·²‹—«†’¦ƒŽ¡ €Š‡š~ƒ•{€’x}u}s€Œv~Šv|…ry‚ow~lu|jw{jw{juvfuvfxvgzxi|yjxufsm_og\j[V_PMVGBSD?QB;PC;UH?[QEbXLg^OneTqjXslYtmZwq[xs]wu\vv\ww_ww_uw_uw_txauybor]or]mr\mr\mu`nvapxcqydqxfoxenucjs`ho_en]dj\ck\ek]em^hnbhpcjpfjrgjpfgqhephcrketmhwrkzul|yn~}mn€€p‚„r„ˆs†Šv‰x’{Ž”|–œž€~‹›{‡•uq{‡nx‚ipzeltaen]bh[^cWZ_TUZPQUJHKHFIGBFD?CE ?!?!?!C%#B%!A$ A$B%E( H,!K/$M1%M1#M1#M2!M2M2M2L3N4#K4"J3#I2"G1#H2$I3&I3&J7(K8)L;)N=)QA*TD+UG,VH-]M4^L4^M3^M3`O3bQ3gT6hU4jV3nZ5u_8xb9yc:{f;~i>k:ŽwA‘{?“~?‘|;|7•:Ÿ‹B¨•I°Q²ŸS´¡U´¡U²žW±V³ŸZ¶¢]¹¢^½¤aÁªfÁªf¾§c¹¢^³ŸZ²žY±žY²ŸZµ¢]·¤_¸¥`¶¥_¶£^´£[¸¦Z¸¨Z¸¨[¸¨]¸§_´¦]³¥^±¥]²¦^°¤\¯£[¯¦[³ª]º³cúkÈÀoȾiÉ¿jËÀnÊ¿oǹnÀ²i¹«d´¥`¶©e²¨c°§b¯¨b¯¬e¯¯e®°e®°e²°e´²e¸¶iº»k½¿l¿ÃlÂÇmÃÈjÈÌnÈÌmÊÌkÍÍkÒÏn×ÓpÜÖtÞØvÝÛvÝÞxáâ|åæ~èéêëƒëì„ìîƒìîƒìîëí€êìêìéë}èê|èê}äèzâè|ãçyãçyäèyçëzêí|ìï|ïï}íîyíîwðñyöö~úú‚üü‚úüøýùÿöû}ïõwîôxòø~ñö~êñ}ÜâtØßuÖÜxÔÛ{Ò×}ÉÏy½Âp´·hªª`§§_£¥\¢¦\£©a¦®e¦²h¥³h¦¶m¨ºp«¿w°Ä|¶Ê‚ºÎ‡¼Ð‰½ÑŒ¹ÌŠ¸Ë‰¹ÌŒ»Ð½Ñ’½Ñ’¹ÍµÊ°Å«ÂŒ¦½‰ ¶…œ²™±™±™°‚𱇛²ˆž³Š ¶¢·ž´Ž™­Š“¨‡¢‚¢ƒ „‰‡™‚–{€’x~xŒx~Šv|…rxnv}ku|jw{jw{jvwguvfxvgzxi}zk{xixrdtlapa\eSQXIDUFASD=RCBD;@E:@D9?*(*(*(*(*(*(*(*(*(*()')'(&(&'%'%)')')')')')')')'*(+)+)+)+)*(*()')))))++*,+,+-,/*0 +2!+2!+3"*4#-6"+7#,9"*D#,G!,J"+K#,M#-O%/Q&/Q&/S&-U&.W%.X&/Z'.Z'.\'/[(1U&0T&0U&0T&0T%/T%/T%-U#,V$-X%,X%,Y&+Z%+Z',[&,Z',Y&-Y&-W&,W&,V%+V%+T%+S$*S&+R%*Q$)P#(M#'L"&K!%J&I (H )G(F'E&C&B%A%?%=$:"4/,*&             """#&'''+-033220///////////..---++++++++,,+++-.05665555588776655333221111112233366666788::;;;987 8888775533220000./014578:!:!< =!> ?!?!?!C&"B%!A$ A$C& F)!J.#L0%O3'O3%O3%O4#O4!N3 N3M4P7#L6!K4"I2 G2!G2!H2$H2$I6'J7(K:(N=)QA*SC*TF+UG,]M4]M4]M3]M3`O3bQ3eT6fV4iW3m[5t`;wdk<ˆr9w9“{;•~;•~8š„9¢Bª—J³ Sµ¢U¶¤Xµ£W³¡Y³¡Yµ¢]¸¥a´¡\·¤_º§b¹¦a¶£^´¡\³¢\´£]²¡[³¢\³¢\³¢\³¢\±£\³¢\±£Z»«`¹¬^¸ª_¸ª_¶¨_²¦^°£]­£\­£\¬¢Z«¡Y«£X®§Y´¯^¼µeÀ¹hÀ¹hÀ¹hÀ·h¿¶i¾²h¼°h¹¬f¶¬gµ«f±¨e­¦b¬¨a¬¬d­¯f­¯d«®a±¯b·¶f¾½kÀÂnÂÅnÅÊnÍÒtÒÚwÓÙwÒ×sÒÔoÑÑmÓÑmÖÒnÚÕqÛ×sÝÛtÝÞváâzåç|èêêììîìîïñ„ïñƒîð‚îñ€îñ€íðíðíðèì~èì~éë~êìëíìï~îñ~ïò}ïó{ïózðô{ôø}ûý€þÿƒýÿ€üþùÿöÿ~óúyìõvî÷zóûðøèñ|ÚâsÕÞsÒÚuÏÙyÑ×ÉÑ|¾Åu·»n¬®eªªd§¨d¥¨c¤©f¢©eœ¥b—¢^¬i ±m£¶tª½{¯ÄµÊ‰¸ÍŒºÎ´È‰´È‰µÉŒ¹Í¼Ð•»Ð•¸Í”³Ê’­Äލ¿‹¡·†š²‚–®~”®•¯€—±„˜±‡—°ˆš°‰›´Ÿµœ´š°Œ”¬Š¤…Œ£†Ž¢†Š¡…‰„ƒš€•|’|~x|‰wy„stnt}lt{kvzkw{lvwiuvhwuhzvj~xl~xl|tizpgte`hVT\JFXFBUF?TE>WI@[OC`THfZLkbQofUrjWtlYuoYwr\wu^vv^uu]uu]rt^qs]os\os\ru`qt_puapuaowbqydszhs|iq|kn{ilwfhucfqacp_do_cp_bm_coaeodfrfhrghthhrigrjetoeutgwvh{yj||moƒo‚†uˆŽu‰vŠ‘w‹”xŒ•w˜xŽ™zŽ™|Žœ~ŽŽžŒœ|ˆ–upz†lv€ipzeltbfo_dj]`eZ]bWX]STXMLQKKMIGJGBFE?CD>BE ?!?!?!D'#B%A$A$C&G+ K/$N2&P4&P5$P5$P5"O4!O4O4N5P7!M7"K5 I2 G2!G2!G1#G1#I6'J7(K:(N=+Q@,SC,TF,UG-]M4]M4]M3]M3`O3bQ5eT6fV5hU4m[7t`=wc>xe=yf<}g@j>‚l3Šr4’z:—€<™ƒ:›ˆ;¤‘B«˜I¶£T·¦V¹¨Z·§Zµ¤\µ¤^·¦aº©d²£^³¥^´¦_±£\® Y® Y±¥]¶ªb²¦^±¥]°¤\¯£[®¢Z®¢Z®¢Z¯£Yº®bº¯`¹­a¶­`µ©a°¦^­£\ª¢Zª¢Z¨¡Y§ŸV§¡Uª¤X®«\¶±`¸µd¼¹hº·f¸²dµ¯cµ­d¶®f¸¯j¹°k´«h¯¨dª¥a©¦aªªb«­d©­a§«^®¯_¶¸e¿ÁmÃÇpÅÊnËÑqÕÝzßç€Ýä}ÙàxÕÛqÓÖmÑÒjÔÒkÖÓlØÕnÝÜrÝßráãxäæyèê}êì~ëíìî€ðò„ðó‚ðó‚ðó€ðó€ðó€ðó€ðó‚ðò„ðò…ñó†òô†óö…ô÷„ô÷‚õùñõ}ñõ|ó÷|÷ü~þÿÿÿƒÿÿúÿ~øÿôÿ}ïøwêõuîø{óÿƒðù‚æð}ÚätÓÞuÎØuÌ×yÎ×~ÈÒ|¾Çv¶¾q­®jª«i¨©g§©h¤©gž¤d–œ^—Xš¦hœªl¡±s¦¸z­¿ƒ²Æ‰¶Ê¸Ì‘²Æ‹²Æ‹´Ç¸Ë“ºÏ—»Ð˜¶Í—³Ê”«Âަ¼‹µ…–­‘«|’¬•¯‚˜±‡˜±‰—°‰–¯ˆ™²‹œ´µ“™±–®Ž¤‡¤ˆ¤ˆ‹¢ˆˆŸ…„šƒ€–€“}~z|‰wxƒrtns|kr{jt{kw{lvwiwuhwsgxth}wk~xl}uj|rivgbjXV]KGYGCVG@TE>WI@[OC_SGeYKjaPofUqiVskXuoYvq[wu^vv^uu]ss[pr\oq[mqZlpYru`ru`qvbqvbpxcrzet{it}jr}lo|jkxfhuceradq`cp_cp_am_bn`dpdfrfgsggsggsifsjfurfvvfxxhz|k}n€„o‚†pƒ‰w‹’w‹”w‹”xŒ—vŒ—wšwšyŒš{›}œ€Œœ{‡•upz†kuipzeltbfo_dj^afZ]bWX]STYNMRLLNJHKFDGE@DD>BE$=$<$>!&; %; %8#6!20+#          #%%$$$$#   !""##!"""$%%%+,./013411111111//..--,,********,--..//034444444234554323332211122222222567887658:=!>">"< 97 6 7 9;;!;!8 8 4321/...1112456689 ;< ?!@" @" A#!A$ B%C& D'G*"K/$N2'O3'P4&P5$P5$P5"P5"P5 P5 O7P8 M7 L6!K4"I4#G2!F0"F0"J7(K8)L;)O>,RA-UE.VG0WI/ZL2[M2\N3^P5`Q4bS6dS5eU4hX6jZ6o]9sa;wc>yf>zfA|g<}f0‹s5™AŸˆD‰@ @ª—H³¢P·¦Tº«Z¾®`½°b¼®eº¬eº«hº­i´ªc±©a®¦^«£[«£[¬¤\¯§_°¨`³©b³©b´ªc´ªcµ«d·­f¸®g¹¯g¼³f¼³d»²e¹²d¸®fµ­d²ªb°©a¬¥]¤ W¦ Vª§Z¯¬_°¯_¹¶eÁÀnÄÃqÂÁq»¸k¯«a®§_³¬f·°j¶¯kµ­l²ªi¬§c¨¥`¥¥]¦¨_©­a«¯b²³c¸ºfÂÅnÉÎtÎÓuÓÛxÙázÝæ{ßè}ßçzÞävÝásÛÝrÚÙoÙÖm×ÔkÞÝqÝßqàâuäæxèê|ìî€ïñƒñôƒóö…óöƒóöƒô÷‚ô÷‚õøƒõøƒöù†ùûûúŽûûûûùü‹ùü‰ùü‡ùý…úþ†ûÿ†üÿ…ýÿ„ýÿ‚üÿ€ûÿùÿ~óþ|òþ~òý}ðü|ïû}ëù~ì÷ê÷…ÚæxÓàwË×uÇÔxÉÓ|ÆÒ~ÁÌ}»Æz¸»x°²q§©h ¥ež¢e™Ÿa–Z‡TŒ•\• fŸ¬t¥´}§¸‚«¼†±Ã¸Ê–»Î—·Ê“³Å‘³Å‘´È•µÉ–²È—°Æ•¦¼Ÿµ‡”«}Ž¥yŒ¦y¨~‘ª€’«ƒ–¯ˆ–®Š—¯‹š²Žµ“œ´’™±‘–­§Š¦ŠŽ¥‹Œ¢‹‰Ÿˆ…›†‚˜ƒ‚•€‘}‹zw„ss€or}ms{lrxjrvhvvjywkzvk|uk{rizqhzpg|ogfWR`NLUFAQB=SD=WHAYLCZNBfZNh_PneTriXrkXtmZwq[xs]vt_ut_ut_ts^rt_qs^ps^ps^qtaps`mq`mq`lsaovdqxhr{jn{jiwfesbdraftchveguffteftgdreboe`mcandcpfgtjivoessetwfxzi{mƒq‚‰r…‹t‡Žq…Žs‡’u‰”wŠ˜wšxŽœxŽœzœy‹™xˆ—x…•u‚’sp|ˆoy…nx‚ls}ipxfjs`ekZ]bUX]STYQRWOPTMNRLKPIGLHCIE@FCTE>WJB[NE[QEe[OibRqhWun\vo\vq]ys]zu_wu`vu`ut_ut_rt_qs^ps^or]nq^mp]ko^jn]ip^lsaovfpyhmziiwfesbesbgudhveguffteesfcqdand`mc`mcboeerhgtmessfuxhw|i{m~…pˆs„Œs†r„s‡’uˆ–wŠ˜x‹šw›wŒyŒ›wˆ˜w‡–w„”u‚’sp|ˆpz†oyƒnukrzhlubgm\_dVY^TUZQRWPQUOPTMLQJINGEJFAGD=DC$/E'1G&/F%,H%,H%,I$,L$,N%-Q(.R'.S(/U(/W(.W(.X)/X)/W(0W(0V'/V'/X'-W&,W&,W&*X%*X%*Y%)Y%)Y%)Y%'[$'Y%)Y$*X%,V%+V%+U$*U$*R#)R#)R%*Q$)P#(O"'L"&K!%J $I &C%B&B&?%>%<$:$9 $:!%:!%9 $8#7!41-#          #%%%%&&&$$$###""  !#&'(),,./014411111111//..--,,********+++,,--.344444442345543233322111222222226789987679;< < ;97 9:< =!<"<"9!9!553300//1112456689 ;< ?!@" @" A$ B%B%C&E( H,!K/$N2&P4&Q6%Q6%Q6#Q6!Q6!Q7 Q7 P8 R: P:"O9"N8#L7$K6%J4&J4&I6(J7(K:*M<*P?-RA-SD/TE.XL2YN2\N1^P3_Q4aS6cT5dU6gW6iY8l\;o_=ta@uc?vcBwd<~h7‹u<š„H¢M¥’M¥•H§›I«¡L²¨Q´¬W¹±^º³c·±e¶¯g¶¯iµ°l««c©«b©«bª¬c­­e±±i·´m¹¶o»¸q»¸q½¹r¾ºs¿»tÀ¼uüvüt½·k¿¹kÁ»oÁ¾qýs¿»r¼¸q¹¶o´±j¬¬bªª`­®b¯°b­°_²³c¸»j½Àq¼¿p´µi¨¦[¤ Y¦¢[ª£_§ \¦Ÿ[¦Ÿ[¤Ÿ[£ Y££Y¤§Z§ª]¨«Z±³_¸»bÀÅiÉÏoÐØsÕàwÝéyâï{ëõ‚ëö€ìóíò~íðìî€ííìì~îð‚ïñƒðò„óõ‡õø‡÷ú‰ùü‹ùü‹úýŠúýŠúýˆûþ‰ûþ‰üÿŠüÿˆüÿŠýýþüþüýýýý‹ýý‹ýþ‰ýþ‰úþ†ûÿ†ûÿ…üÿ„üÿ„ûÿúÿ‚öÿöÿˆôÿˆóÿˆðÿ†íü…éû…çø…çøˆÙé~Ñâ|ÊÚxÇØ|ËÚ…Í܉ÌÚ‹É׌¿Ê†¹Âƒ¯¸y¨°t£«o¢h”™aŒ‘[‹]Ž”d”œm˜¡r™¥wª|¦³‡«»Ž©¹Œ©¹Œ«º¬½‘¬½‘©ºŽ¤µ‹ž°†š¬„’§~‹ w‡œu‰žwŒ¢|¥¦€¦‚¥„“¦†–«Œš­š®’˜«”¨¢Š¢Œ¡‹ŒŸ‹Š›‰†™†„•ƒ“ƒ€‘|}y‡xv‚tvsv~qsymrujooenkblh_oh`ribqf`na[i\VTEBRDAQD>OD>RE=UKB[QG_WJf^QlfVun\zub{vbywb{v`zxaxwbwvavuaut`rt_qs^or_or_lo^kn]hl[hl[gn^ip`lscmvenyijwfgsefrdhtfiughthfrfcoebnd`lb_ka`kcbmedogerkfttguxiv|kzn}„o€‡q‚Šrƒ‹t„‘t†’vˆ–v‰—wŠ™x‹šwŠ›wŠ™t…•u…”u‚’t‘sq}‰r|ˆq{…pwnu}koxejp_bgY\aVW\STYPSXPQVNMSKJPHELFAHD=EC%= %:$9 $7!$7!$7!$9 $8#7!42."         #&&&'''''&&%$$##  "#')++,-/0125522222222//..--,,++++++++***++,,.344444442345543233322111222222226789987678:;;;:9;< =!>">$=#:"9!664411001112456689 ;< ?!@" @" A$ C& C&D'F*H,!L0$O3%P4&Q6%Q6#Q6!Q6!Q7 Q7 Q7 P8S;!Q,Q@.RC0SD-XL2YN2\N1^P3_Q4aS6cT5dU6gW6iY8k[:n^=s`@ta@ubAvb={d8‡r=–H¡Q¨—R©›P« P«£N³«V¶°Zºµa¼·f¹¶i·µk¸µn··q¬°fª°f«±g¬²h°´j´¸n¸ºqº¼s»½t½½u¿¿w¿xÃÀyÄÁzÅÁzÅÁx½ºm¿¼m¿rÄÀvÿvÀ¾t¼¹r¸¸p±±i«­d©«b¬®c­°c«°`¯²cµ¸g»¾o¹¼m±²f£¤X œS¡V£œX ™U¢›W£œV¥žX¥¡X§¥Z¨©[«¬^«¯[²´`¸½cÁÆhÉÑnÏÚqØäváî|çô~ðûƒðûñûòúƒôù…õø‡öö†ööˆöøŠöøŠ÷ù‹øúŒùûúýŒûþüÿŽûþ‹ûþ‹ûþ‹üÿŠüÿŠýÿ‹ýÿ‰ÿÿ‹ÿþÿþÿþÿþÿþÿÿÿÿ‹ÿÿ‹úþ†ûÿ‡ûÿ‡üÿˆüÿ†ùÿ…øÿ„öÿ…õÿŠñÿòÿŒîÿŠìýŠêýŠèúŠèúŽÜí…Ôæ‚ÌÝ}ÈÛË݇ÍßÌÝÉÙŽ¿Î‹»Ç‡²¾€«µx¤®rœ¤k“˜bŒ]‰Œ]ŒbŽ”h–l™n”Ÿuœ§}¢®†¢®†£²‰©µª¹’©¸‘£³Œœ¬…–¦“£~Ÿy‡˜t„˜s‡›vŒ {£~‘¥‚£ƒ£ƒ’¥‡–©‹š­‘›®’˜ª•§Ÿ‰Ÿ‰ž‹‹œ‰‰šˆ†—…ƒ”„‚“ƒ~€{}x‰yx†wwƒuu€rrzmqtimmckg^haYjaZnc]na[hYTaRMQC@OD@OD>LC#*@"*?"'@!'B#)F%,I).M*0L(,N',O(-P'-Q(,R(,S)-U(-S&+S&+S&+T',T',U&,U'*U'*W&)W&)X&)X&'X&'X&'X&'X&)X%*X%,V%+V%+U$*U$*R#)R#)P#(P#(O"'N!&K!%J $I#H%C%B&@&>%; %9 $7!$6"$5!#5!#6 #8#7!550"       &'(()***))(('&&$!!#%)*,,--/0125622222222//..--,,++++++++***++,,.34444444234554323332211122222222789::987789;;;;;>"?#@$@$?%>$;#:"775522111112456689 ;< ?!@" @" A$ C& C&D(F*I-"L0$O3%Q5'R7&R7$R7"R7"R8!R8!R8Q9S;!Q.Q@.QB/RC.XM1YN0ZO1\Q3_Q4aS6bU5cV6gX9hY:l[=n^=qa@rbAtaAua>v`7€k<ŽzG›‹P¦—V¬ X¯¦W°ªVµ±Z·µ^»»e½¼j»¼nººpº¼sº½v¯·l­¸l°¸m°¸m³¹o´ºp¸¼r¹½sº¾t½¿v¿ÁxÂÂzÃÃ{ÃÃ{ÅÂ{ÄÂx¾¼q¿½pÁ¿tÁ¿t¿½sººr¶¶p³´n«¬f¦¨_¦¨_©­a«¯b¨¯_­²b³¸h·¼l·ºk¯°d¢£WžšQŸ›R¡šT–P”Ož—Q ™Q¢žT¥£V§¨Xª«[¬®Z³·`¹¾bÂÈhÊÒmÑÝqÚçuãò{êú~ïþòþ‚óý‚õý„÷ü†ùü‰ûû‹ûûùûùûŽùûŽúüŽúüŽûýûþûþùü‹úýŠúýŠúýŠûþ‰ûþ‰üÿŠþÿŠÿþÿþÿþÿþÿþÿþÿÿ‹ÿÿ‹úýˆûþ‰ûÿˆüÿ‰úÿ‰ùÿˆøÿ‡õÿˆðþŒíÿíþŽìþŽëýéýŽèûèûÞðŠÕé†Íá‚ÉÝ„ÊÞ‰ËÞŒÈÛŠÂ׊»ÏŠ¸È‡±Á‚ª¸z¤®r›£j“˜b‘^‹^‹Ža‹Žc‰ŽeŠg“m”št˜ {›¥€žª„¤®‹¥±£¯‹›©…”¢~ž{Œšw‡—sƒ’q‚“q‡˜vž|‘¢€“¤‚”¥…”¤‡•¥Š™©Žœ¬’­“š©’–¥Žœ‡œ‰›ŠŒš‰‰—ˆ‡•†„’…‘„}zŒ|yŠzy‡xy…wvsrzmpshnndjf]e^Ve\Uh]Wh[UcTO\MHTIERIDOF?JC;JC9PI?[UIb_PfcTmlZvua|{g~}h{}gz|dz|d|{f{zfyxdwvbstbpq_mp]lo\mp_lo^im^im^ho_krbntfowhjughsefqcfqchrghrgfpecmb`ja_i`_ia_ia`jbakcbkfalhhrshsujuymx|p{q~„t‰t‚‹w…x†‘x†“w‡”w‡–t†”t„”sƒ“oŽoŽp}p}p|Šo{‡q{‡pz„ryƒpwpt}kpvfin`ch\]bYZ_PSXNQVMNSIHNFCJA>E@;B?:A, *, *, *, *, *, *, *, *+)+)+)*(*()')')', *, *, *, *, *, *, *, *-!+-!+.",.",/#-/#-/#-0$./#//#/0"/0#-0#-2"-2"-2",2",3"*3"*5!*5!*5"(5"(6!(:!'; '"@$A%B&B&@&?%<$;#8 8 6 6 33221112456689 ;< ?!@" @" A$ D'!D'E)G+ I-!M1%P4&R7&R7$R7$R7"R7"R8!R8!R8Q9S;Q<Q.Q@0QB/RC.XM1YN0ZO1\Q3_Q4aS6bU5cV6hY:j[o^@qa@rbAtaAta@t`;yf;„rB’ƒL¡“T«¡Z²«]´¯]´²]¸¸`»½i¼Àl¼¿p»¿s¼ÀvºÂy²½q±½q±½q²½q³¾rµ½rµ½r·½s¸¾t»¿u¿ÁxÂÄ{ÄÄ|ÃÃ{ÂÂzÁÁw¿½r¿½p¾¼qº»o¸¸pµ·n²³m±²l¨©c£¦_£§]§®a©°c¨¯a«²b±¸h´¹i´¹i®¯c¢£W œS¡T£œVŸ˜Rš‘L›“Kœ–LŸ™M¡žO¦¥Sª©W«­Y¶»a¼ÁcÃÊjÌÔmÒÞpÜéuåõ{ìüðÿ€ðÿ€ôþõÿ„øý…ùþˆýý‹ýýúüúüúüúüûýûýûýûþùü‹ùü‹ùü‰úýŠúýŠûþ‰ûþ‰ýþ‰ÿþÿþÿþÿþÿþÿþÿÿ‹ÿÿ‹úýˆúÿ‰ûÿŒúÿ‹úÿùÿŒ÷ÿ‹õÿŒíþŽëý‘êüéûçúŽæùåøâ÷ŽÜñŒÔêˆÍâ…ÊÞ…ÊÞ‰ÈÛ‰ÁÖ‡»Ðƒ·Í…´É†°Ãƒ«»|¥°tœ¥l”›e”b‘bŽd‹ŒdˆŠcˆŠeˆŒg‹l“q“šx•Ÿ}˜¢€˜¢€”ž|Ž™wŠ•s†”q‚ol}‹j~l…”s‹œz¡‘¢‚•¥ˆ•¥ˆ—¥‹˜¨œª‘›«‘˜¦”£ŽŒ™‡‹š‡Œ™ˆŠ˜‡‰•‡†”…„„‚ƒzŒ|wŒ{w‰yx‰yx†wvspxkmpemmcjf]c\TaVPbUOaRM_MIZKFWNISLFOH@KG>LH=RNC[WKa_PecTjkYrt_xzey{ex|ey}dy}d|~i}|h{zfxwcstbpq_lo\kn[mp_lo^im^im^ho_jqamseougiqdepbdoaepbgqffpecmb`j__i`_i`_ia_ia`jbakcajeajgfnpgqsirwlw{p{t…wŠvƒ‹y†x†‘x†“x†“w„”t„“r‚’q‘l|‹l|‹n{‹mzŠmy‡lx„nx„mwpwov~pt}mrxilqcfk_`e\]bRUZQTYOPUKLQHELC@GB=D@;B-!+-!+-!+-!+-!+-!+-!+-!+, *, *+)*(*()'(&(&-!+-!+-!+-!+-!+-!+-!+-!+, *, *-!+-!+.",/#-/#-/#-/#-.$-/#-/#-/#-0#,0#,0#,2%.4%,4%,5$*5$*5$*4#)6#'7 &:!'<#'?$)@%*C&+D%*E%*G'*I&*K'+K'+N'*N'*O(+P'+O%)O%)P&*P&*Q')R(*T'*U(+U')U')W''W''W''W''W'%W''X%*X%,V%+V%+U$*U$*R#)R#)P#(O"'N!&M %J $I#H"G$B%@&? &= %; %7!$7!$6"$3 "4 "5"7"7!8 72"      &()*+,-.))****+*'&&'**++..01236633333333//..--,,,,,,,,,,,,,--../3444444423455432333221112222222289::::98::;< =!>"@$@$B&C'C'C'A'@&<$;#9!9!7!7!4 4 331112456689 ;< ?!@" @" A$ D'!D'E)G+ J."M1%P4&R7&S8%S8%S8#S8#S9"S9 S9 R: R:P;P; P:"O;#P;(P;*P:,M:,M:,M;-O=/P?/RA1RC0RC.XM1YN0ZO1\Q3]R4_T6bU5cV6j[H-!+-!+-!+-!+-!+-!+-!+-!+, *, *+)*(*()'(&(&-!+,"+-!+-!+-!+-!+-!+-!++)+), *-!+.",.",/#-/#-0$.0$.0$.0$.0%-1$-1$-1$-7(/7(/7(/7&,7&.7&,6%+8%+9"*:#+<%+?&,?&,?$)@#(?"'F',F',G',J'+J'+K(,L(,M)-L%*M&)N%)N'*P'+Q)*Q)*S)+R(*T()T()T('U''T('U''U''U'*W&,T%+T%+U$(U$(R$'R$'P"%O"%N!$K!#J $H#G"F$B%@&? &= %; %:$9 $7!$4!5"5"7"7!8 62"     &()*+-..))**+,,-)))***+,./01236733333333//..--,,,,,,,,,,,--..///3343434322445332333221112222222279:;;:98;;<= ?"@#B%C&D'C'D(D(C'@&?$<$9!9!9!7!7!4 631112456689 ;< ?!@" @" A#!D'!D) E)F+ J."L2#P4&Q7&S8%R9#S8#R:"S9 R:S9R:O:O:P; P:"O;#O:%P;(P;*N;,N;,N=-P?/Q@0RA/RC0SD/ZL1YN0\N1\Q3_Q4aS6bU5cV6k\=l]>o^@q`BsbDsbDsbDscBwgEvg@xi>ƒuD“‰N¤›X¯©]²°]¯¯W±´]¶ºe¸½k¶½oµ½r¶¾u¶Àw¯½r°¾s²Àu³ÁvµÁw¶Âx·Áx·Áx¸¿yºÂy¾Ä|ÁÇÅÈÄÇ€ÂÅ~ÀÄzº¼q¸ºoµ·l³µl²µn´·p¶¹r¶¼t­°i§­e§­c¬³f¬´gª³d«´c°¹h®µe±¶f­°a¤§X¢£U§¦V¨¥V¥¢S§¤S¦£R¥£P§¥PªªR¯²W·»]º¿a¼ÁcÀÇgÇÏjÌ×nÒàoÜëvä÷zëþ€òÿƒôÿ‚öÿ„÷ÿ†ùÿˆûÿŠüÿŒüÿŽûýûý’üþ‘ýÿ’ýÿ”þÿ•ÿÿ–ÿÿ”üþ‘üþ‘üþ‘ýÿ’ýÿ‘þÿ’þÿ’ÿÿ‘ÿýŒÿýŒÿýŒÿýŒÿýŽÿýŽþþŽþþŽúüŽúþûÿúÿ‘ùÿ‘øÿ÷ÿóÿ“ðÿ™ëÿ›çü—ãø“ÞóŽÙï‹Õë‡ÒêˆÏç‰Ëâ‡Æß„ÆÞˆÇÝ‹ÃØ‰»Ðƒ²È±Ë„°Ëˆ¯È†­Á‚¨·| ­uœ¥p™Ÿo”—j“”ji‹‹gˆˆf††dƒ„d€„c~ƒc„f~ƒey~`sz[pwXryZs|]t}`q|^q|^vc~‰k†‘sŠ—y‹˜|–£‰”¡‡” ˆ•£Š–¤‹”¢‹‰‹˜„‰–„‰–„‰–…‰•‡‡“‡†…„Žƒ‚Ž‚zˆ{w‡zw‡zzˆ{y…yv~soukkmbii_fbY^WOULEQD>PC=TE@VICQJDNJAPLCURI\ZN`^R_]P[\LbcQfiVloZor]qu^rw`tz`w|e~l|jy|ivyfrubnq^kn]jm\hj\gi[dhYdhYei[gk]jn`lodek_ck`ck`dlafmeeldah`^e^`g`ahabhdajedjfbkhajgajibjlcmohpslvxqzv‡yƒŒz‡y†y…‘x†“w„”t„“q‘on~ly‰my‡kw…jv„jt€isiq|hp{jq{kr|nr{mrxknufipbel^ah]`g[^eYYaTUZQNULIPJELHCJ*(*(+)+), *, *-!+-!+*(*(+)+), *, *-!+-!+,"+*#+,"+,"+,"+,"+,"+,"+-!+-!+/",/",0#-0#-1$.1$.1$-1$-1$-1$-1$-3#-3#-3#-4#-4#-5$.7#,8$/8$-9%.:%.:%.:%.:%.;$.;$,;$,=#,=$*=")?$+A&+E(-E(-E(,D%*C$)C#(D$'F#'E%(G$(H&'H&'I%%K''M&'M&'M'&N&&M'&N&&N&&O%'P&*T'*U(+U')T&(T$$Q##P""O#"P$%N$%L$%J#$H!$E!%B%@ %?$=#<";!9 7 9"9"9"8!7 420     !#'(*,--,*)++++++++------..//0011223333333310.,****-,,,,,,,-------.224242423131313333111133444444442368:;<= D'D'F&F&F&F&F&F&D$B$B$B$B$B&B&A'S>P; P; O9!O9!N:"M9!M8#M8#O=)O=)O>,P?-Q@.RA/RC0RC.ZL1ZL/\M0\N1_P3bS6eV9fW:j[>k\?l]@m^Ao`CqbErcFrcDuhExlDykD|oB‹€H¤›Zµ¯a¸¶a³±Z³³]³¶e¶ºm·½u¸¿yºÁ{¸Ây¸Äx·Ãw´Àt³¿u²¾t³¿w´ÀxµÁy¹Ã~¹Ã|ºÄ}ºÄ{ºÄ{¹Äx¸ÃwºÂw¶¼v³¹s°¶p¯´q°µr±¶s°µr­´n®´n«³j©±f«³f¯·j²»l°¹h®·f¯¸g²¹i±¸h«³`¦®X¨®V°·Z¸¿_¯·T¯·R°¸Qµ¾U»Ä[¼È\»Ç[¹Ä[¿ÊbÀËcÂÏeÇ×jÎánØëuÞózâø|èüêý€íýïý‚ôý†÷þŠúÿ‹ûþýÿ’ýÿ’ýÿ”ýÿ”ýþ–ýþ˜ýþ˜ýý™ÿÿ›ÿÿ›ÿÿ›ÿÿ›ÿÿšÿÿ˜ÿÿ˜ÿÿ–ÿÿ‘ÿÿÿÿÿÿÿþ‘ÿþ‘ÿý’ÿþ’ÿþ’ýÿ’ûþ“ùÿ“÷þ”öÿ”õþ“òÿ–íÿžéþŸäüœáù›Ýö˜Öñ”ÎèÇäŠÆâ‹Äà‹ÅÞ‹ÄÜŽÅÛÁ׎¼Ðˆ¶Ë†®È‰¬È‹­ÇŠ«Ã‰§¼ƒ¡´}ž¬y©y–q•šq‘–nj‡‡e€€^{xWutUqrSnqRmpQmpQmpQorSpuWqvXlpUntXqw]r{`u~czƒh‚‹p†u“…“Ÿ‡•£Œ•¤”£ŒŽ Š‰›…„—ƒ†™…†—„…–„…“‚ƒ‘‚‚Ž€‚‹€„Ž…ƒ…€Š~…}y~wtwpopjmmepmfid^^WQSJELCQHAVOGUQHXTK\XM`\Qb`TdbUbcSfgUjkYnp[or]os\pt]sw^tybv~gt}hs|gr{foxenuclsclpako`jn_ik^hj]gi^fh]gg]fh]be^af_bg`bg``g`_f_^e^]c_Yb][d_^gd`kgclidnmeoneop`jlalnenshswmx~p}ƒs€ˆt‚‹t…sƒp‚nlll~’n~Žr{Šsy…rx„qwƒpv‚ouov€pwqu€ptos~mqzjnwfjscgpben_bi\_d[\aYZ^XVYTRUOKLJFG*(*(*(+)+), *, *-!+*(*(+)+), *, *-!+,"+,"+*#+*#+*#+,"+,"+,"+,"+-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-6"-6"-7#.7#.9#/9#/:$0:$09%09%0:$0:$0:%.:%.;$,;$,=#,>$-@'-A(.C(-B',A&+@%*A$(C$)C%'C%'D&(D&(F&'F&'I'(I'&J&&J&&J'%J'%J'%J&&M&)O&*Q')R(*T()T&&T$"S#!R%"R%"Q%$O%&L$%I"#G #D $C &B%?$>#="<!: : :!;":!:!641-          !"&)+,--,+*++++++++........//0011223333333310.,****-,,,,,,,-------.222222221111111133111133444444443468:;= = G'G(G(G(H'H'H'H&E%E%C&B%B%B%A%A%=#R=P; P:"P:"P:"N:"N:"N:"N:"O='P>(P?+Q@,RA-SB.SD1SD/[K1[L/\M0]N1_P3bS6dU8fW:j[>j[>k\?m^Ao`CpaDqbEqdDtgDvmFymE{pC‰}I¡—Y´®b½¸d´²[´´^³´d³·k³¹sµ¼xµ¿z¶ÀyµÁu´Àt²¾r°¼r°¼t°»v±¼w²½xµÀ|¶Á|¶Á|¶Âz¶ÂxµÁuµÁuµÁw²¹u¯¶s¬³p­´q¯¶s±¸t±¸t¯¶p®µo¬´k«³h¬´g°¹j±ºi°¹f®·d³¼kµ¾m´½j±»d®¹]±¼\»ÇcÄÑhÆÓiÄÒcÃÑ`ÄÒaÇÕcÇÕcÅÓaÂÐ_ÃÐdÃÐdÂÒeÅ×gËàkÔérÚòxß÷}çýéý‚ëýƒðý‡óþˆöÿŒúþûÿýÿ’ýÿ”ýÿ”ýþ–ýþ˜ýý™ýý›ýýÿÿŸÿÿŸÿÿŸÿÿŸÿÿÿÿ›ÿÿ›ÿÿšýÿ”ýÿ’ýÿ’ýÿ’ÿþ”ÿý”ÿý–ÿý–ÿþ—ýþ–üÿ˜ùþ—øÿ˜ôÿ—ôÿ—ñÿ›íÿ¢çþ£ãü ßùžÚ÷Ôð™Ìê”ÆãÄáÂßÂÝÂÜ’ÄÛ“ÂØ½ÑŒ¶Ì‹¯ÈŽ«ÈŽªÆŒ§Ã‰§¾ˆ¤¸…ž°€›«|˜£x—Ÿv’˜r‹j„…c}}[yvUvsTtsUstUstUstUrsTpsTpsVpsVlpUosXrx^u{aw}c|‚h‚ˆn…u˜ƒŽœ…ž‡‘ ‰Ž ŠŠ‡‡š†ƒ™„ƒ™„‚˜ƒ„•ƒƒ”‚ƒ‘‚‚ƒŽ€‚Œ…Š„„‰…‚‡~ƒ}{}xuwrrqlonimjcfc\^WQSLFOF?NE>QHATKDWPHYRJYUJ]YN`\Qb^RcaRdbScdRghVkmXmoZlpYmqZosZpu^o{en|enzdnzdmyeoxeovfnuelpako`km`ik^hh^gg]he\ff^be^af`bgabgaafb_ea]c_\b^\b`\eb_hgakjdnmeonfpqeqqbmocnpfqujuynyo|‚rˆsŠsƒqƒo€lŽk~i~‘k}“n}rz‡uy„txƒsw‚rvrvrvrvqu€qu€ptnr}kozhlwdhscgp_bi\_d[\aYZ^XXZUSTQMNMIH)'*(*(+)+), *, *, **(*(+)+), *, *-!+,"+,"+*#+*#+*#+,"+,"+,"+,"+-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-6"-6"-7#.7#.9#/9#/:$0:$09%09%0:$0:$0:%.:%.;$,;$,=#,>$-?&,@'-B',B',A&+A&+A$(A$(B#(C$)D&(D&(E%(F&'I'(I'(I'&I'&J&&J&&J'%J&&L%(M&)O'(Q')S'(S%%T$"T$"V&$T'$T&&R&'N$&J"#H#E#D&C &@ %?$>#=";!: 9 9 9 9 530,           "#%*+,--,++,,,,,,,,........//001122333333331/.,++++--------........111111111111111133111133444444444578:< >!?"H)H)H)H)I(I(I(I(G(G(D'C&B%B%@%@$>$=#<";!8 76564 3357 9 :!78;::<A##E)&E*#D, E-!G0"J3%K4$M6$N8#O9"O9!O:P;P;Q<Q<R=P; Q(Q?)P@)QA*RA-TC/SD/TE.[K2[K1[K1\L2_O5aQ7dT:fV%+?&,@%*A&+A&+A&+@#'A$(B#(C$)C%'D&(E%(E%(H&'H&'H&%H&%I%%I%%I&$I%%J&(L%*M&)N&'P&'R&'U%%U%#X(&X((W&)T&(Q$'M %I%F#D&C &@ %?$>#=";!;!9 9 9 8420+"       !"#$+,,--,,,,,,,,,,,//////////001122222222220/.,,,,---------........111111111111111133111133555555556689:< ?"@#J+J+J+J+K*K*K*K*J+I*F*E)C'B%@%@%?%>$=#<"8 76463225689 79 ;:;=B$$F)%G,#F/!G0"I2"J3#L5#M7"N8!O9"O9!O:P; P;Q<Q<Q<Q%R>&R>&Q?)R@*QA*RB+SB.UD0TE0UF/ZJ1ZJ0[K1\L2^N4aQ7dT:eU;hX>iY?jZ@k[Am]Cn^Dp`FobBreBulC{oI{oG‚uH”‰Q¬¥_¿¹k½»hº¹fµ¶f±µh°¶n±¸t²»x´½z±½u±½u°¼t¯ºu¯ºv®¹w®¹w®¹w­·x­¸v¬·u¬·s­¸s­¹q®ºr¯»s®¸q­´p«²n¬³m¯¶p±¸r±¹p¯·n²ºo±¹l±ºk±ºi²»j²»h²»h±»e·Áj¹ÆlÀËoÁÏpÆÒpÉØqÓàw×ç|ÓárÐáqÑßnÏànÓápÔåsØæw×èx×èvÔçtÑäpÍâkÎãjÔênÜôxãûéÿƒëÿ„ïþ‡òÿ‹õÿŽøÿ‘üÿ’ýÿ•þÿ—þÿ—þÿ™þþšþþœþþžþý þý¡ÿÿ¥ÿÿ£ÿÿ£ÿÿ¢ÿÿ¢ÿÿ ÿÿ ÿÿ ýÿžýÿœþþžþþžÿýžÿýžÿý þý þý ýþ¡ûÿ¡ùþ öÿ¢ôÿ¡òÿ¡ðÿ£ëÿ¦åý¥áû¢ÜùŸÙõžÒðšÉé”Ãã¾Ý½Ü޾ÚÀÚ“ÁÛ”ÁØ”¾Ó’¸ÎŽ®Ê©ÆŽ¦ÁŠ¨ÃŽ­Å‘¬Â‘§ºŒ¡°…¡®ƒœ§•›w‹l‚†e~_|}]{|]€a€b‚ƒd‚c|bv{]ptYlpUquZsy]v|bvdwgz‚j~†n‹s†’~†“‡”€ˆ—‚ˆš„ˆ›‡‰œˆ‡ˆ€•‚€•‚‚“ƒ‚“ƒ„’ƒ„’ƒ…‚…„†‹…„‰…†€|{y{vtvqrqlonihe^c`Y_XRYRLWNGXOH[RK]TM]VN^WO\XM^ZO`\Pb^RcaRdbSabRefTijXkmXilWimVkoXlq[lubjvbjvbjvbmvcnwfqxhryiqugptfprgmodkkagg]ddZabZbc^bd_de`ce`bdaac``ba]a``dcagedjjenmkpsksultvltvltwlvxnu{ox}py€q|‚r|†q~‡s‹qŒo|Œl|ŒjyŒjyŒkzmz‹pw‡qwƒrx„rx„rx„qwƒpv‚pv‚qwƒqwƒpv‚oulr~io{flxekw`dm]bh[^eY\aZ[_YY[VTWRPQ(&)')')'*(+)+)+)*(*(+)+), *, *-!+,"+,"+*#+*#+*#+,"+,"+,"+,"+-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-6"-6"-7#.7#.9#/9#/:$0:$09%09%0:$0:$0:%.:%.;$,;$,=#,=#,=$*>%+?$)@%*A&+A&+@#(@#(@#'A$(B#(C$)C%'D&(D$%D$%F$%F$%F$#F$#G##G##I%'I%)L%(M%&O%&R&'U%%V&&Z()Z()Z(+W&)U$(P!'M&H$G'D!'A!&@ %?$>#<"<"9 9 9 8420+"     !!"##$,--,,-----------//////////001122222222220/.-,-..--------........000000001111111133111133555555558889;="A%B&M.M/M.M.N.N.N.N.L.K-H-G+F*D(B'B'@&@&>$=#9!76453224589 89 < ;;= B$"G*$I.#I/"J0#L2#M3$O5$P7#P7!Q8"Q9!R: R: S;S;T=T=R="R="S>#S>#S?&T@'T@'UA(R@(SA)RB+TD-UE.VF/UF1VG0YI0ZJ0ZJ0[K1^N4`P6cS9eU;gW=gW=iY?jZ@l\Bm]Cn^DnaApc@ri@ymGznH~qGŒ€N£›\¸±iÁ¾m½¼i¸¹i´¸k±·o±¸t²»x´½z²½x±¾x±¾x°½x°¼z¯»{®ºz®ºz©µw©µu¨´t§³q¨µpª·q¬¹s®ºr²¼u®¸q«µn«µl­·n®¹m­¸j«¶h±¼m²¾l³¿m³¿k³¿k³¿i´Àj´ÁiµÂfºÊhÂÐoÇØrÌÛtÍßsÐàsÑãsÍÞnËÞkËÜjÉÜiËÜlÍßoÒâuÔævÝð|ÜñzÚïv×íqÖìpØñrâøzéÿëÿ„ìÿ‡ðÿŠóÿŽöÿùÿ”ýÿ—þÿšÿÿ›ÿÿ›ÿÿÿÿŸÿþ¡ÿþ¢ÿþ¤ÿþ¤ÿþ§ÿþ§ÿþ§ÿÿ¥ÿÿ¥ÿÿ£ÿÿ£ÿÿ£þÿ¢þÿ¢þþ¤þþ¤ÿþ¤ÿþ¤ÿý¦ÿý¦ýý¥ûþ§ùý¦øþ¦ôþ§òÿ§ðþ¦íÿ§çþ¦ãý¦ßù¢Û÷¢×ô ÏïœÇæ–Àᒼܼڼڒ¿Ú•ÁÚ˜Á×–¼Ò’¶Î’­É¨Å¦ÁŒ©Ä‘®Æ”®Ä•©¼Ž¤³ˆ¢®†§‚–žy“q‡Šk„‡hƒ†gƒ†i…ˆk‡Šmˆ‹n‡Šmƒ†k{dtx_ou[u{ax~d|j{ƒk{ƒl{…m~ˆp‹s„|…’€‡”‚ˆ—„ˆ™†‰œ‰ŠŠ‰ž‹€•„€•„‚’…‚’…„’…„’……„…†‡Œ†…І€…zyvxsprmnmhlkfhe^eb[b[U]VP\SL\SL^UN_VO_XN_XN]YN^ZO`\Pc_SdbUfdUfgWijXmn\no]lo\loZnq\ot^oxelwfludktcktcksdmsentfrujrujqtknqhkldgh`cd\`a[bc^bb`dcaccaccaaa_```^`_bcebfgeilhmpmqtnsvpuxpuxpuyov|rw}qx~ryr{‚rz…r|†t~Šs|‹qz‹my‰lw‰kx‰kx‰lw‰nu…ow„px…rz‡rz‡qy†px…ow„ow„ow„ow„nvƒltiq~go|emx`gq]dlZ^gY\c[\aYZ^VUZSSU(&(&(&)')'*(*(+)*(*(+)+), *, *-!+,"+,"+*#+*#+*#+,"+,"+,"+,"+-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-6"-6"-7#.7#.9#/9#/:$0:$09%09%0:$0:$0:%.:%.;$,;$,=#,=#,<#)<#)>#(?$)@%*A&+?"'@#(@#'@#'B#(C$)C%'C%'C#&C#$E#$E#$E#"E#"F""E#$H%)G$(H$(K$'N$&Q%&T&(W''Z()Z()Z(+Y&+W$+S"(Q(L&H (D!'A!&@ %?$>#<"<"9 9 9 9 530.# !!"#$$&-.-,,-..--------00000000//001122111111110/.--.//--------........00000000111111113311113366666666:999; >#B&D(O1O1O1O1P0P0P0P0M0M0J/J/I.H,F,F+B)A'?%=#9!764521145788:!< < <>!C& G*"K1$K1"L2#M3"N4#O6"P7#Q8"R:"S;#S;!S;!T< U=!U>U=!S>!S>#T?$U@%UA(VB)WC*WC*SA)TB*SC,UE.VF/WG0VG2WH1YI0YI/ZJ0[K1]M3`P6bR8dT:fViY?k[Al\Bm]Cm_Bob?of?uhExkH{mH„wJ˜V¬¤c¿¼o½¼j¹ºjµºj²¸n±¸r±ºw±¼z±¼x°½x±¾y±½{°¼|¯»}®º|­¹{¨³w§³u¦²t¦²r§³q©¶q¬¹t®»u³¿w°¼r­·n«·k®¹m­ºk­¸iª·e²¾j³Ál¶Âl¶Äm¶Âl¶Äl¹ÅoºÉn¹Ég½ÏiÅÖnËÞsÐâvÐäuÑãsÏãpÓæsÐäqÍàmÇÛjÅ×gÅÙjÊÜnÍápÜñzÝõyß÷{Þ÷xÜõvÝöwåû}ëÿƒìÿ…îÿˆñÿôÿøÿ“úÿ—üÿ›ÿÿœÿÿŸÿÿŸÿþ¡ÿþ¢ÿþ¤ÿý¦ÿý¨ÿý¨ÿÿ¬ÿÿ¬ÿÿªÿÿªÿÿ¨ÿÿ¨ÿÿ¦ÿÿ¨þþ¨þþ¨þþ¨þþ¨ÿýªÿýªÿýªþýªúü©øü¨÷üªôýªñý©ïý¨îýªëÿªäü¨Þú¥Û÷£×ô ÒòŸËì›Ä喽ߒ½Ý’¼Ü“»Ú–½Ú—¿Ù˜¾Ö˜¹Ñ•´Ì’¬Ç¨Ä‘¨ÃªÄ”®Æ–­Ã•ª½¥¶Œ¡°‰Ÿ«‡˜¢’™xŽ“s‹r‹rŒ‘sŽ‘vŽ“u’w‘vˆŒq€†jyeu{a{g|„l€ˆp€Šr‰q~ˆp€Šr‚‹v‚|ƒ~†“ˆ—„ˆ™‡‰œ‰‰œ‰‡œ‹–…–…ƒ“†‚’…„’…ƒ†„Ž…„ކ…І‚‡ƒ}‚|w|vsupnpkmlglkfkhahe^f_Yb[U_VO^UN^UN_VO`YO_XN]YN^ZO`\Pd`TgeXigZjk[mn^qrbrsapsbor_qtaqvbqzioxgludjsbhpaiqbkqclrfrujrujrulpsjmnfhicde_ab]ba_cb`dcadcacb`aa_```___bbdcdfghljnqmqtptwrvyqvzqv|qv|rw}rw}qx€rysz„rz…tzˆrz‡pw‡mv‡lu†lu†lt‡mv‡lsƒnvƒpx…rz‡s{ˆrz‡px…ow„nvƒnvƒnvƒmu‚ltiq~go|fn{bht^eo[_jX\eX[bXY^VU[SRW'%(&(&)')'*(*(*(*(*(+)+), *, *-!+,"+,"+*#+*#+*#+,"+,"+,"+,"+-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-6"-6"-7#.7#.9#/9#/:$0:$09%09%0:$0:$0:%.:%.;$,;$,>$-=#,<#);"(="'>#(@%*A&+="'="'>#(>#(A$(A$(B#(C%'B$&B$&C#$C#$E#$E#$E#"E#$E%(E%(F#'G#%L$%O%&T&(X'*Y'*['+[&,Z%+Y$,V#,T ,P!+H (E"(B"'A!&@ %?$=#<":!;":!:!641/#   !"!"#$%&'(..-,,-./........00000000//001122111111110/.--.00........////////////////111111113311113366666666; ::9; >#C'F+P2P2P2P2Q1Q1Q1Q2N1N1L2L2L1K0J0J0C*B)@&>$9!764421135789 :!=!!C'H, L2#L2!M3"N5!O6"P7#P7#Q8"T<$T<$T<"U=#U=!V>"V>"W?#S>!T?"U@%VA&VB'WC(XD+YE,TB*TB*TD+UE,VF/WG0WH1XI2YI0YI0YI0ZJ1]M4_O6bR9dT;eUhX?jZAl\Cm]Dl^Am`=kb;pcAviGykHqJŽ„Q —\º¶o¹·j¶·g³¸h°·j¯¶p­¶s¬·u®¹w®ºx¯»y¯»{¯»}­¸|«¶zªµy©´z§²v¦±u¥±s¦²r©µs­¹w¯¼w±¾v®¼q¬¸l«¹j®»k¯¾k¯½h­½e²Àh´Äk¸Çl¸Ém¹Èm¹Ên½Ës¿ÐrÂÔnÂØlÉÜpÌâsÒæuÔëw×ëxÖíxØíxÓêvÏãpÅÜjÁÕf¾ÔgÄ×kÆÝkÓìtÚôuáû|ãþ}àûzàùyåû}éÿƒíÿˆïÿ‹òÿõÿ“ùÿ˜ûÿ›ýÿ þÿ¡ÿÿ£ÿÿ£ÿÿ¥ÿÿ§ÿÿ©ÿþ«ÿþ¬ÿþ¬ÿÿ¯ÿÿ¯ÿÿ¯ÿÿ­ÿÿ¬ÿÿ¬ÿÿ¬ÿÿ¬ÿþ¬ýÿ¬ýÿ¬ýÿ¬ÿþ¬ÿþ¬ÿþ®ýþ®÷ú«öû«óü­ðû¬ïü¬ëý«êý«çý«áú©Ûø¦Øõ¥Óò¢Ïð¡ÈêÁ㗹ݓ½Þ—¼Ý˜ºÚ™¼Ú𼨛»Õ˜¶Ï•±Ê‘ªÅ©Å”©Å”«Å–¬Ã•ªÁ•¦»¥·¤´¡¯Œ¨†— ’›|‘—{–z–z”˜“™}”˜–|Œ’x†Œr„mz‚j‡o‹s…wƒyw€Œvw‚Žx}ˆwŒ{„‘€‡•„‡˜ˆ†˜ˆ…—‡–‡ƒ˜‰‚—ˆ„”‰ƒ“ˆƒ†‚†ƒ…‚Œ„„€|}x}wsxrqsnnpkoninmholelibjc]e^XbYR_VO]TM]TM`YO_XN]YN^ZOa]QeaUigZlj]lm_opbstfstdqsepsbqtcrveqxhouglrdioahnbiockqelrhqtkrulrunqtmnqjikfdfabc^ba_d`_eabeabeabb`a`^a^^`a`ecdhghlklpopursxtuzsv{pszqt{qu~rvsw€txtxƒsz„uy…rx†pv„nt„msƒlsƒls…mt„kr‚lu„ox‡r{Šr{Šqz‰ox‡nw†lu„lu„lu„lu„js‚hq€fo~eo{ckv`gq[_jX\eWZaWX]UTZRQW'%'%(&(&)')'*(*(*(*(+)+), *, *-!+,"+,"+*#+*#+*#+,"+,"+,"+,"+-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-6"-6"-7#.7#.9#/9#/:$0:$09%09%0:$0:$0:%.:%.;$,;$,>$-=#,;"(;"(#(@%*B',="'="'="'>#(@#(A$(B#(C$)A"'A#%B"%B"#D"#D"#D"#B"#D%*C$)D$'F#'J#&N&'S'(V(*Y'*Z&*[&,[&.Z%/W$-U!-Q",H (E"(B"'A!&@ %?$=#=#;";";":!7 420#  !"!!"$&'(+0/-,,-/0........00000000//00112211111111//.-./01........////////////////111111113311113366666666$:#764411134789 :!="$V>"W?#W?#X@$T?"T?"U@%VA&WC(XD)YE,ZF-UC+UC+UE,VF-WG0XH1XI2XI2XH/XH/YI0ZJ1\L3_O6bR9cS:eU#(>#(>#(>#(=$*=$*>#*>#(>#(>#(@#(@#'A"'A#%A#%A#%B"%B"#B"#B"#=#=#@ #C $H!$J"#O#$P"$W&)W%(W$)V#*S )P'M&H%G'D!'B"'B"'B"'B"'A"'A"'9 :!<#<#: #8!64'%$###$%$%%&())*++,,--..--------////////--./00111111111132210//.0001122233333333--./00111111111144444444777766669;!=!>#?$C)J.O4S5R5P3O2P1R3T5U6U8Q5L2 L2O5Q6O6L2B*A(?%=#8!6422000469: 9 :!="?$B&E)G,H-N3 N3O4P6Q6!R8!R8!R8!X>'X>%X>%Y?&Y?$Z@%Z@%ZB&WB#WB#XC&YD'YF(ZG)[G,[G,[J0ZI/XH.WG-WG.XH/XJ0YK1XH1XH1XH1YI2[K4]M6_O8aQ:dT=dT=eU>fV?gW@hXAiYBhZ?i\:lb>sfFtfIufIzkL„xR‚T£a²¯j»¼pµºj­´g¬´k¬µtª´u§³s¦µt¦´v§µw§µx¦´y¤±y¤±y¢¯w£±v¥³x§µx¨¶x©¸w©¸w©¸s¬¼q°Áq¶Èv¸Êv¸Ër¸Ëo¹ÍnºÎmºÎk¼Ðm¿ÓpÁÕrÂÖuÁÕtÀÔs¾Òo¾Õi¿ÚiÆÞnÍèu×ð{Úõ€ÜõØô}×ð{ÏêuÈàn¿Úi¾Öh¾ØkÅÜrÆàrÊêoÐñoØùwáÿæÿƒèÿ…æþ‚çû‚ëü‰ïýŒóÿ“÷ÿšüÿ ýÿ¤þÿ§ýÿ¨üþªüþªüþ«ýþ®ýþ°þÿ³þþ´ÿÿ·ÿÿ¹ÿÿ¹ÿÿ·ÿÿ·ÿÿµÿÿµÿÿ´ÿÿ´ÿÿ´ýÿ±ýÿ³üÿ²üÿ²ûþ±ûþ±úþ²ôü¯òý±ðü°ìý¯éþ±æþ°åý¯âþ±Úù­×÷¬Óõ©Ïó©Íñ©Èî¥À袻⟽䣻⣽᤾ߦ¼Ý¦ºØ¢³Ïœ­É˜«Ç—ªÅ˜¨Ã–¦Á–¦¿•¥¾–§½—©½š§»˜¥¶– ¯’ªŽœ©›¨Žš¤‹˜¢‰”œ„’š‚‘™˜€˜€Œ–~‡‘ywŠ–€‹—Œ˜„Œ™…Œ™…‹š…‹˜†Š—…†‘ƒƒ‚‚’…‚”†€’†|„€”ˆ€”‰‚’ˆ‰€†}Šƒ}†{„~ƒuzvjoiglflniqsnsrmrqlpmfspivoiohbe\U^UN^UNaXQ`YO`ZN`\Pb^Rd`UeaVfdXgeYffZjj^nnbooclnakm`moboqforgpshorimpgilchkbjmfmpiqvoqvppuonsokplhmidiedfcgefhdehdegcdfaefaecafcafedifejghmijokksmmuoowppxnqzkoxjnwkoxos|qu~qu€os~qsqsqs€proq~mq}mo~kn}hp}iq~iq~jrltmu‚nvƒnvƒks€ks€jrjriq~hp}hp}go|`fr_eq_cn[_hWZcTT\QPVNMS)')')')')')')')')')')'*(*(+)+)* )+!*)"*)"**#+,"+-#,-#,-#,-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-8$/8$/8$/8$/9#/9#/9#/9#/8$/8$/9#/9#/9$-9$-:#+:#+=#,=#,=$*=$*>#(>#(>#(>#(=$*=$*>#*>#*>#(>#(@#(@#(A"'A"'A#%A#%B"%B"%B"#A#%= $>!&? %A!$F"$I"%K!#N"#S%'S%(U$*T#)P!)N)L(G&E 'D!'B"'B"'B"'B"'A"'A"':!:!;"<#9"8!64'%$###$$$%%&())*++,,--..--------////////-../00111111111122210////000112233333333-../0011111111114444444466666665:;!=!=">#C)J.P5R4R5P3O2Q2R3S4T5T7P4K1 K1M3O4M4K1B*A(@'=#9"7 533001469: 9 :!#B&F+J/L1R7"R8!R8!S9"T:#U;$U;$U;$X>%X>%Y?&Y?&Z@%Z@%[A&[A&ZC$XC$YD'ZE(ZG)[H*\H-\H-[J0[J0XH.XH.XH/XH/YK1YK1YI2YI2YI2YI2[K4]M6_O8`P9cSfV?gW@hXAgY?i\#(>#(>#(>#(=$*=#,=$*=$*=$*=$*>#(>#(@#'@#'A"'A"'A#%A#%A#%A#%@#'@#(A"'B"%D"#E!#H !I!M#%O"%P#(P#(M")L!*I)G(D&C &A!&A!&A!&A!&@!&@!&:!;";";"9"8!64(&$#"##$$%%&())*++,,--..--------00000000////001111111111221100////00112233333333////0011111111114444444455555555; <"=!=">#B(K/Q6R4Q3P3P3Q2Q2R2S4Q4O2J0 I/K0K0J1I/B*A(@'>$:#8!654212569: :!:!$C(I.O5S9"W;%W;#W;#X<$X<$Y=%Y=%Y=%Z>&Z>&[?'[?'\@(\@(]A)\B'\E&ZE&[F'\G(\I+]J,^K-^K-\K/\K/ZJ0YI/YI/ZJ0ZL2ZL2[K4ZJ3ZJ3ZJ3[K4]M6^N7_O8aQ:bR;cSfV?gW@fX>hZ?j_ApbGqcHrbIueK|nQƒvS‘‰Z¤Ÿe¶µr¹½q²¹l­µl«µpªµs¥´q¥¶r¥µt¥µv¥µw¤´v¢±v¡°u£²w£²w¤³x¦¶x¨¸y©¹x«»z«¼u¬¿n¯Åp¸ÌsºÑv½Òs¼ÕpÀ×oÀÚoÃÚnÃÝpÈßuÈâwÉàxÃÜvÁ×s¼ÕoµÐe·Õe¿ÛlÈætÓð|Öõ~×ô~Ôó|ÍêvÈçrÄào¿Ým¿ÛmÁÞrÇâyÇçxÊðwÎõx×ûÞÿ…åÿ‹çÿŒèÿ‹êüŒìüðý”óþ˜øÿŸûÿ¤ýÿªýÿ­ýÿ¯ûþ¯üÿ²üþµüþµýþºþÿ»þþ¾þþ¾þþÀþþÀþþ¾þþ¾þÿ½þÿ½þÿ»þÿ»þÿ¹ýÿ·ýÿ¹üÿ¸ûþ·ûþ·ùÿ¹÷þ¸ñü·ïü¶ëüµçý´ãý´ßý³Ýý²Üþ´Òö°Îó­Ìñ¬Éñ«Éò°Æð®Á물è©À鯾篻㮻ᮻ߯¸Ùª²Ó¦®Í¡¬ÈŸªÆ©Ãœ§Áš¥¿˜¤¾™¥½›¥½§¼£·›Ÿ±—œ®–›­•œ«”™¨“—¥Ž›ƒš‚‘›ƒ“Ÿ‰˜¤Žš¦™¥‘—¤“ Œ“¢“¢“¢’  ŽžŒŽœ‹†’†ƒ…ƒ€ƒ€…†}Ž„y„}‘ˆ}‘ˆމ}Œ‡|ˆ„y…x€v|rwslqmglfglflniprmqpkonioleqngslfmf`e\U_VO_VOaXOc\Rd^Rc_Sd`TfbWhdYhfZhfZccYee[hh^ii_hiagh`hiajkelmgmnhmnhjkefibegbfhcikhkplmrnousqwuouskqoflldhiiikjhkjhkkilkinjinkjokjoihnijojjrilsknulovmpymqzhowenucjrcjrdksdkscgpaen]aj]aj^aj_bkaambblbbnacoaep_fpbfr`gqbfrahrcgsahrgkwelvfjvcjtdhtahrbfraep^bm^`l\^j[[eWV^TQXPMTMKP)')')')')')')')')')')'*(*(+)+)* )+!*)"*)"**#+,"+-#,-#,-#,-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-8$/8$/8$/8$/9#/9#/9#/9#/8$/8$/9#/9#/9$-9$-:#+:#+=#,=#,=$*=$*>#(>#(>#(>#(=#,=#,=$*=$*=$*=$*>#(>#(@#(@#'A"'A"'A#%A#%A#%@#'B%*?$)A$)A"'B"%C!"F"EI!"I!"J!%K"(J"*H#*G"*F!)C &C &A!&A!&A!&A!&@!&@!&;";";";"8!7 7 5*'&$###$$%%&())*++,,--..........00000000000000111111111111110000//0011224444444400000011111111115555555544455566#C)L0R7R4Q3Q3P2Q2Q2Q1Q2O2M0I.H-H-H-G-G-C+B)A(?&;$9"8!6 6 33357: ;! ;";"#Z>&Z>&Z>&Z>&Z>&Z>&[?'[?'\@(\@(]A)]A)^B*]C(]F'\G(]H)^I*^K-_L.`M/`M/^M1]L0[K1ZJ0ZJ0[K1[M3\N4]M6\L5[K4[K4[K4\L5]M6^N7`P9aQ:aQ:bR;dT=eU>eU>eV?hZ@i]Cn`En`Ep`GscJwiN|oO…|Qš”`°¯o¹½sµ»q¯·l«µn«¶r¦µp¦·s¦¶u¦¶u¥µv£³u¢±v¡°u¡°u¢²t¢²t¤´u¦¶u¨¹uª»w¬½v­Ãq²Éq¹Ðv¾ÖxÀÙtÂÛsÅßrÇásÈâtËæuÍçyÏé|Ìæ{ÇàxÂÛu½Øq³Ðd´Ôe½ÚlÄåtÐî|Òó~Ôó~Ðñ|ÉèsÄårÃáq¿àoÂßsÄäwÊç}Êì~ÍôÏø~ÖüƒÝÿˆäÿŽçÿêÿ‘ìþ’îý”òý—öý÷þ¡úþ§üÿ«ýÿ¯ýÿ±üþ³üþµüý·ýþºýþ¼þþ¾þþÀÿÿÃÿþÅÿþÅÿÿÃÿÿÃÿÿÁÿÿ¿ÿÿ¿ÿÿ¾þÿ¾ýÿ½ýÿ½üÿ¼üþ½ùþ¼øÿ¼öÿ¾ðüºíþºêý»äý¹âý¸Ýü¶Ûü·Ùý·Ïô¯Ëò¯Èï®Çð®Èò²Åñ²Âë°Âíµ¿ê´½å±»ã±ºà±·Û¯´Õª°Ð§«Ê¡¬È ªÄ§Áœ¥¿š¤¾›¥½¥¼Ÿ¥¼Ÿ¤¸ ´›ž²™°šœ¯™™«•–¨’œ†›…œ†•¡‹›§‘ž¬•ž«—œ«–™¨•™¨•™¨•—¨–•¦”“¤’‘¢’ ‘ˆ”Š…‘‡ƒ…Ž„€††|…xŒƒ{†zŽ…|‹†z‰„y…ƒut}|r{zkonhmifkeglfmojoqlpojnmholepmfrkemf`f]VaXQ`WPaXOc]Qc]Qb^Rc_SeaVfbWfdXfdX``VbbXdd\ff^ef^ef`ef`ef`ijdjkejkeghbde`ac^cebfheglhjokntrrxvrxxnttgpoekkhikiikkilkkmkjolkpmlqlmqklqilqjmtintknukpvlpyjqyenubms`ip`ip`ip_fn[bjZ^gTXaTXaUXaUXaXXbYYc[[e[[e]`i]aj_am_clacobfodfrcgpfhtdhqdfrbfoaco_cl_am^aj[]i\\fZZdXW_URYSNTOJPNHL)')')')')')')')')')')'*(*(+)+)* )+!*)"*)"**#+,"+-#,-#,-#,-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-8$/8$/8$/8$/9#/9#/9#/9#/8$/8$/9#/9#/9$-9$-:#+:#+=#,=#,=$*=$*>#(>#(>#(>#(=#,;$,;$,;$,=$*=$*>#*>#(>#(>#(@#'@#'A"'A"'A#%@#'B%*@%*A$)A"'B"%C!"B !C!F"F"F"&G#'F#)D#*C"+C")B%B%@ %@ %@ %@ %? %? %<#;";":!7 7 7 6 -+)'&%%&%&&')**+++,,--..........1 1 111111111111001111111100001111022234445555555411111100111111115555555544456777">"?$D)L0R7Q3Q3Q3P2Q1P0O/N.M/M/I.G,E*D(D*E+C+B)A(@'<%;$:#8#8"5!4 4 68 : !;! <#<#>#A'H-Q7 Y?$^E'[@%[@#Z?$Z?$Z?$Z?$Z?$Z?$\A&\A&]A)]A)^B*^B*_C+^D)_H)]I(^I*_J+_L,`M-aN0aN0`O3_N2]N1\M0\L2]M3]O4^P6_O8^M9]L8\K7[J6\K7]L8]L8`O;`O;aPdS?eT@dU@fW@g[Ck]Cm_Eo_FqaHtfLxjM}sO‰Y¦¤iµ¸s¶¼r±¹n¬¶m­¹q¨·r§¸r¨¹u§·v¦¶w¤´u¢²t¡±s °r °r °r¡±r¤´s§¸tª»w¬¾t±ÇtµÎs½ÖzÂÜ{ÄßxÆávÉåvÌéuÏìxÐíyÒî}Òî}Ïë}ÊåzÄßvÁÜsµÕj¶×l»ÛpÁãuÊê{Íï~Îï|Ìï{ÅæsÃærÃäsÂäsÅåxÇé{ÌìÌð‚Ðø†Ðû‡×þ‹Þÿäÿ’èÿ”ëÿ•îÿ—òþšóýœöý ÷ý£ùý¨ûÿ«ûÿ®üÿ³üý·ýþºýþ¼þþ¾þþÀÿÿÃÿþÅÿþÅÿþÆÿþÆÿþÆÿþÆÿþÅÿÿÃÿÿÃÿÿÁþÿÁüÿÃüÿÃûÿÂûÿÄúþÃùÿÃõÿÃðþÁìþÀêþÁäþ¿àý½Üü»Øü¼×û»Íô³Ëò±Èï°Çï±Èò³Çó¶Åñ¶Âï¶Åñ¼Áíº¼æ¶ºá´¹Þ²¶Û°³Ö¬±Ñª­Ë¥­É£ªÆ §ÂŸ¦À¤½¤½¤½Ÿ¥¾¡£º  ·Ÿµžž´Ÿ³ž›®š—ª–’Ÿ‹‘žŠ‘žŠ”¡š§“ª–ž«™¬™«š›¬š›¬šš¬œ˜ªš–¨˜”¦–”¥•Œ˜Ž‰”Œ†‘‰„‘ˆ‚‘Š€‘‰}Žˆx‹…z‡yŒ†{Їx‡„wƒƒsqy{oxwimlhmiglfhmgmojoqlpojoniqngqngrkemf`h_Xd[TbYRbYPb\Pb\Na]Qb^Rc_Td`Uc`WdaX^^V__W`_Zba\cd^cd_cd_bc^gfbhgcgfbde```^__]`bacedcgfgkjlrrpvvpxzmuwiqshmphikhikjinjkojkoklplmrjmrjmtintjouhoujnwhowhowhowcmv_lt_ir_ir_jp^gnZcjW^fPW_OV^PU[OTZPSZRU\UU]VV^\\d[^e^^h_biccmcfmggqfipeeocfmccm`cj``j\_f]]g\\dXXbXW_WT]WRYSNTPJNNEJLCF)')')')')')')')')')')'*(*(+)+)* )+!*)"*)"**#+,"+-#,-#,-#,-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-8$/8$/8$/8$/9#/9#/9#/9#/8$/8$/9#/9#/9$-9$-:#+:#+=#,=#,=$*=$*>#(>#(>#(=$*=#,;$,;$,;$,=$*=$*>#*>#*>#(>#(@#'@#'A"'A"'A#%@#'B%*@%,A$)@#'A"'A!$B !B !B !C!"D!%C#&B#)A$)>#*?"'@&B%@ %@ %@ %@ %? %? %= $<#:!9 7 7 7 7!0.,)('''%&&')**+++,,--..////////1 1 1111112222110011111111//00112233445566666666654222110011111111666666664556789 9 ; ="@$@$A&E*L0Q5Q3Q3Q3Q3Q1O/N.L,M/M/J.G+D(B&B(D*C*C*B)A(=&<%<%:%:$7$6"5!78 : !;! =#">% A&E+L1T:![B$`G)]B%]B%]B%\A$\A&[@%[@%[@%]B']B'^B*^B*_C+_C+`D,_E*_H)]I(^I*_J+_L,`M-aN0aN0aP4`O3^O2^O2^N4^N4^P5_Q7aQ:`O;^M9\K7[J6[J6\K7\K7`O;`O;aPdS?eT@dU@eVCeYCiZCk]Co_FrbIsdMugMzpM…~Rš˜_®±nµ»q³»n¯ºn°¼r«»tª»uª»w©ºv¨¸w¥µv£³u¢²t¢²t¡±r¡±r¢²q¥¶r©ºt­¾x­ÂwµÍyºÓxÂÛÇá~Éä{ËçyÎêyÐíwÕò|Õò|Õò|Ôñ}Ñí~Íé{ÉäyÅâx½Üt»Üs¼ÝtÀávÅçyÉë{Êì{ÉìxÅètÅètÅçvÇéyÉë}Ìî€Ïð…Îô‡Ñû‹Òþ×ÿÜÿ’äÿ•èÿ—íÿ™ñÿœóÿôþžöü¢öü¤øü¨úý¬ûÿ°üÿ´ýþºýý½ýý½þþÀÿÿÃÿþÅÿþÆÿÿÉÿÿÉÿÿÉÿÿÉÿÿÉÿÿÇÿÿÆÿÿÆÿÿÆÿÿÇüÿÆüÿÈüÿÈûþÇùþÆ÷þÈöÿÈòÿÉîÿÈêÿÆåþÄàýÃÛýÁ×ýÀÖü¿Ïõ¸Ëó´Èð²Çð´Çó¶ÈõºÇô»Åò»ÈôÁÂ渷ഷ޲µÚ±³Ö®²Ò«®Ì¦®Ê¤«Æ£¨Ã ¦¿Ÿ¤½¤½Ÿ£¼Ÿ¥½££»¡¢¸¡¡· ¡·¢Ÿµ ›°š­š•¤‘”¡“ Œ•¢Žš§“¬—¬™¬™›¬šœ­››­›­š¬œ™«›—©™—§š‘œ”Ž™‘Š•ˆ•Œ…”ƒ”ŒŠz‡yŒ†x‹…z‰†w†ƒuq}}owymvujnmjokinhjoinpkoqlrqlrqlrohrohrkengakb[g^We\Ud[Rc]Qc]Ob^Rb^Rc_Td`Uc`Wc`W]]U]]U]\W`_Zbc^cd_ab]_`[dc_ed`dc_ba]]][\\Z]_^`ba`dccgfhnnmssnvxmuwksuiqshlmjkmklpklpklpjnqjmrinrjouhouhougntgnvfmufmuenu`mu_lt_lt`mucntalr^gnZcjU\dSZbRW]PU[ORYORYRRZSS[XX`YZ_[Zb]^c`_gabgdckdejbai`af`_g]^c\[cYZ_XW_WV^SRZSPWTOVSLSOIMMDGK@DI>B)')')')')')')')')')')'*(*(+)+)* )+!*)"*)"**#+,"+-#,-#,-#,-!+-!+/",/",0#-0#-3#.3#.1$-1$-3#-3#-3#-3#-4#-4#-8$/8$/8$/8$/9#/9#/9#/9#/8$/8$/9#/9#/9$-9$-:#+:#+=#,=#,=$*=$*>#(>#(>#(=$*=#,;$.;$,;$,=#,=#,=$*=$*>#(>#(@#(@#(@#'@#'A"'@#'A$)?$+A$)@#'A"'@"$A!"A!"@ !@""A#%A$&>#(<#'9"(:!%?%A$?$?$?$?$>$>$= $<#:!9 67 8!7!3 0.,*)))%&&')**+++,,--..////////2!2!2222224332110011111111///01222556677886666666563321100111111116666666655689 :!;";"9(>(='<';%8%7#6"8 9!;!";! >$#?&!D)I/ P5 VdS?eT@fUAeVCcSCcVCgXAk]Cp`FscJteNugMynP~wMŒU¦¨g´ºrµ½p²½o³¿s¬¾tª¾vª¾w©½x§ºx¥¸v¢µu¡´t¤·w¤·w£¶v¤·u§»v«¿x°Ä}³È{ºÒ|¿Ø|ÆßÊäÌç~Îê{ÐíyÒïyÚ÷€Øõ~Öó}Ôñ}Ñí~Ïë}Íè}Ëç€Åæ~Àã}¼ßw¼àv¿ãwÃçyÄéxÄéwÅêxÅêxÇì{Éî}ËïÎò„ÐôˆÐö‰Ôþ’Ôÿ“Øÿ’Ûÿ”áÿ–çÿ™îÿœòÿŸôÿŸõþ¡öü¢÷û¤÷ü¨ùþ¬ûÿ°üÿ´ýþºþþ¾þþÀþþÂÿþÅÿþÆÿÿÉÿþËÿþËÿþËÿþËÿÿÉÿÿÉÿÿÇÿÿÇÿÿÇÿÿËýÿÍüþÍüþÍúþÌúþÌøþÎõÿÍóÿÐïÿÏêÿÍåÿËáÿËÛþÈØýÇÖýÄÑù½Îö¸Êò¶Éò¶ÉõºÉö½Èõ¾Åô¾ÇöÂÁᄏ渶߳µÛ²³Ù²²Ö°±Ó®¯Í©¯Ê§¬Ç¦¨Ã¢¥À¡£¾Ÿ£¼Ÿ£¼Ÿ¦¾¤¤¼¤¢º¤¢º¤£º¦¡¸¤œ³¡™®›˜§”—¤–£˜¥‘›ª—Ÿ®› ®ž¯š«™›¬š›­œ®ž™®Ÿ˜­ž—¬˜ªœ–¡™“ž˜š”Œ™’‰˜‘†—‚“}ŠyŒˆx‹‡zˆˆw……up||nvxlutnrqnsolqklqknpkoqlsrmtsntqjspislfpicmd]jaZg^We\SgaUgaSeaUfbVfbVfbWfcZfcZ]]U\\T\[V_^Yab]cd_``^^^\a`^d`_ba__^\[[YZZX[]\]_^^bcaefejmhprksultvkuvltvmqtmqtmqtlpslpskpskptjosjouhougnvenuenudmtclsbms`mu_nu`ovcryfsyfsycntajq^ek[bhX]cSX^QTYPSXPSXSTYTSYTSXVSZVUZXU\XW\ZW^YX]]Za[Z_[X_WV[VSZSRWROVQNUOLSQLSPKRNGNMDIK@DG<@F:<)))')))')))')))')))'))*(**+)+++)+!*)"*+!*,"+,"+-#,-#,.",-!+.!+/",/",2"-2"-3#.3#.3#-3#-3#-3#-3#-3#-4#-4#-8$/8$/8$/8$/8$/8$/9#/8$/8$/8$/8$/9#/9$-9$-9$+:#+;$,=#,=$*=$*=$(>#(>#(=$*;$,:%,;$,;$*;$,=$*=$*=$(=$(>$'>#(@#'@#'@#%@#'@#'@#(@#(@#(@#'A"'A#%B"%B"#@"$@"$@#%@#'>$'<#':!%9 $>$?$>$>$>$>$>$= $= $<#:!8668!8"5"2 0-+***%&&&))*+++,,--..////////2222222244321100113131310/1032456677889 9 6666666664 52312031313133668686868698 #?$8= C%F(G*H+K/O1P2Q3Q3Q3Q1N.L,J*M.N/L0H,C'A%A&D)C*C*B)B)?)>(>(=&<'9&:$9"8!:!;! ;! >%!B' F+ L1 R8!X?!\C$`F%gJ*gJ*fI+eH*dG)cF(cE)cE)`B&aC'aC)`E*bD*aF+aF+`F+^G(]I(]I(^J)_L,`M-`M-aN.cR4bQ3`Q2_P1_P3`Q4`R5aS8dT;bR;`P9]M6\L5[K4[K4[J6aPdS?eT@fUAgVBbS@dU@gY?l\Bp`FseKteNsgOzoS{sNˆ†U¡¢f³¹s¶¾q´¿pµÂs¯Àr¬Át«Àuª¾v¨¼u¦ºu¢·r¡¶s§¼y§¼w¦»v¨¼u«¿w°ÅzµÊ}¸Î|¼ÕzÁÛzÈâÌæÎé~Îì|Ñí|Òñ|ÛúƒÙøÖõ€Òð~Ðî~Îë}ÎëÌëƒËë†Äç¾á{»Þv½áwÀäxÂæzÂèyÅë|Æì}ÈîÊðÍó†ÎõˆÏö‹Ð÷ŒÖÿ•Öÿ•Ùÿ–Üÿ™áÿ›èÿ¡íÿ£òÿ¥óÿ¦ôþ¥ôü¦ôü©ôû«öý°ùÿµüÿºüþ½þþÀþýÄÿþÅÿþÈÿÿÉÿþÍÿþÍÿþÎÿþÎÿþÍÿÿÍÿÿËÿÿËÿÿÉýÿËýÿÎüÿÐýþÒûþÓûþÓøýÔ÷þÕóþÔòÿØïÿ×êÿÕåÿÓÞÿÐÙÿÌ×ýÊÕýÈÓúÁÏø¼ËôºÈó»Èõ¾È÷ÁÇöÂÆôÃÊõÇÃîÁ»äº·Ý¶µÙ³³×³²Ô±±Ó°®Í«­Ë§ªÈ¦©Ä¥¦Á¢£½ £»¡£»£¦¾¨¤»§£º¦¢»¨£»«¡¹©šµ¦˜° •ª™•¨•”¦––¨˜™®²¡Ÿ´¥Ÿ´¥–«œ—¬˜­ž™®Ÿš®¢˜®¡˜¬ —«Ÿ–¥ž’¡œž˜‰œ–ˆ›•…š“–‘|“xŒŠxŒŠw‰‰v††r€p{}mwyksupvtouqnsomrnlqmprmstouvptsnrrjqngokblh_kd\haYd`UhdXgeXhfYhfYhfZhfZff\gg]\]UZ[SZ[U]^Xab]bd_``^]][`_]a`^a`^]][ZZXWYVY[ZZ^]\`a^dd`hjemoiqsltvlvwmwxpuxpuxotwotwltvksuksvjruhougpufovenudmtclsalr^ks`nw^ow`qyct|iw€ixfs|dnwclu`ip[bjU\bRW]PUYPUYQTYQPVQPUPOTPOTONSNMRNMROMRXV[WUZVTYSQVQOTNLOMKPLJONIOOHONGNNEJKBEH=AE;(+>(+>(*;%'=%%=$'>$%>$%>$#>$%@#%@#'A"'A"'A"'A"'A"'A"'A#%>$? %? %@!&>!%= $;":!<#<#= $= $= $= $>!%<"%9"9"9"8!8!7 7 6 4!4#3"2!/,('''(&)'**+,,,,,,,//0011221111111122222222334343434221335688776655777777777664533254657688::;:;:;:<; ;:< &>">">"A%!D'H, O2 T8 Y> ]C"bF!hL'iK'iK'iK'hK)gJ(fI)eH(cI(bH'_D&]D%^C&^E'aH*aJ+_K*`L+aM,bN-bO/cP0dQ1dQ1^N-^N-^O._P/`Q2aR3aT4aT4bS6bR8aQ8`P7_O6^N5]M4]M6`P9_O8_O8_O8`O;bQ=dS?eU>eS;gViY?jZ@l^DpdLsiPwpTzvS~Rˆ‹T£cµ½r¼Èv¸Æq´Ær²Æq°Ãq¬Âpª¿r¨¾s¦¾t¦¾t¨Àv¬Äx°È|³Ê|µËy·Íz¾Ò}À×}ÃÝzÃßxÆãyÈå{Ëè|Ëë|Îë}Íí~Òó‚Òó‚ÏñÊì|ÆèxÆèzÇë}ËïƒÊëƒÈèƒÁä~»Þx¶Ûr·Üs½âyÂéÃì‚Æï…Éô‰Ì÷ŒÏúÎüÍûÏú×ý–Ùþ—ÛÿÞÿ¡ãÿ¦çÿªêÿ¬íÿ¬ïÿ­òÿ®óÿ°õÿ²öÿ·ùÿ¼úÿÀüÿÃûÿÄýþÄýýÇþþÈÿýÌÿþÍÿýÐÿþÑÿýÒÿýÒþýÏüþÏûÿÍùÿÍøÿËøÿÌöüÌøþÒûýÖûÿÚûÿÞùþàõþáóýâîüâëþàçÿàãÿÝÞÿØØÿÔÖÿÐÕÿËÑùÄÏøÀÊ÷ÀÇöÀÆöÄÆøÇÉøÌÌùÐÍõÐÇëǽ߾ºÙ¹º×¸¸Õ¶³Ò²¯Î¬¥Ç¤¥Ç¤¦Å¥¤Á¢¡»žŸ¹ž¡¹¡¤¹¦žµ£Ÿ¶¦ž¶©œ¶«šµ¬—µ«”³«“²ªŒ¬¡‹«žŒ¬¡‘±¤˜¶ªœº® ¼°Ÿ»¯š´©™³¦˜°£—¯¢–®¡–®¡˜®¢˜°£’©¡¨¢Œ¥Ÿˆ£œ„Ÿšœ—|™•{˜”y“wsˆ‰oƒ„mƒn}‚q~„tƒpxzoxuousntrntrqvrrwqsxqtwpsvmqrjnpejlagg[ddXccW_aT`dVbfXdhZeh]eh]dg\cf][^WZ]VZ]VY\UZ\WY^X]_Z^`]Z\YY[ZXZYWYXWYXUYXVZ[V\\X]`Yac^fickngqsjtvkuwlvxoyznxymwymwylvxlvxmv{mv{kt{hsydoualraktblueoxer{cucw‚ey„g{†gy…fx„dtƒes€fr~anw]gqZclX_eU]`PX[MUXQTYRSXQRWPQVNOTLMRKLPLKPQQSPPRQORPNQOMPNLMNLOOJNKEIMDIKBGJADH?BF=@E')')(*(*)+)+*,*,)+)+)+*,*,+-+-++-!--!+-!+-!+-!+-!+.!+.!+2"-2"-3!-4".4".5#/5#/5#/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/7&07&07&07&09%.9%.9&,9&,:%,:%,;$*;$*;%(;%(=$(;%(<',;(,;(*;(*<(*<(*=')=');&%;&%=%%=%%>$#>$#>$#>$#A"'A"'A"'A"'A"'A"'A"'A"'>$? %@!&@!&? %>$=#;"= $;!$;!$;!$;!$;!$;!$;!$9"9"9"8!8!7 7 7 6!4#4#2!0-)''(&''((*+,,,,,,,/00112221111111122222222444444444322346788877665777777777765543355667788;;;;;;;;< < ;;< >"@$B$C"D!E#G%I(J)K+L,S4Q2O0M.L-M.O0P1K-K-H,G+F*E)C)C)A)B*C*E,E/F0G1H2I3H2E/C,C(B'A&A%!D'!G+ M0"S7"X="]B$bE#dH#iK%jL&jL&kM'jN)jN)iL*hK)dJ'bH%_G%]E#]D%_F'`I)bK+aM,aM,bN-cO.cP0dQ1dQ1eR2^N-^N-^O._P/`Q0aR1aT2bU3cT7bS6aQ7`P6_O5^N4]M4]M4aQ:`P9`P9`P9`O;bQ=cR>dT=gVk\?k[Ak_EpdLsiPslRvqSzxQ‚„S–œ`®µo¸Är¶Äm¶Æn³Çp²Æq¯År­ÄtªÂt§Âu¦Át«Æw®Éz´Í|¶Ï|¸Ð|ºÑy¾Õ{ÂÚ|ÃÞwÄáuÇäzÉé|Ëë€Íí€Íí‚ÍïÍîƒËïÉíÅé{Áåy¿åvÂè{Åë~Çê‚Åè‚Áä~ºßx¶Ût¶Üu»áz¿è€Ãî…Ãð‡Çô‹ÊùÍü’Ìý’Ìý’Íü’×ý˜Úü›Üþ Þÿ¦âÿ«åÿ¯èÿ²êÿ±ìÿ²îÿ²ðÿµóÿ¸õÿ¼÷ÿÁúÿÅúÿÇûþÇûþÇþþÊþþÌÿþÎÿýÐÿýÒÿþÕÿüÖÿýÖýþÔûþÓùÿÑ÷ÿÎöÿÎöÿÐöýÑ÷þÕøþÚúÿßúþãùþçôýèòþêíüéêýçæÿåâÿâÝÿÞØÿ×ÕÿÓÔÿÏÎøÆÏúÅÌûÇËûÉÈüÌÈüÎÊúÒË÷ÓÊòÐÅæÇ½Ú¾¹Ó¶·Ñ¶¶Ð³°Í¯«Êª¥Ç¦¥Ç¤¦Å¥¢¿¡Ÿ¹žž¶žžµ¡ ·¥³¦œ´§›µ¬šµ®˜µ°”µ®‘´®³­‰®§‰®¦‰®§Ž³«•¸±™½³¼¶œ»³š¸°™·­š´«˜²§˜¯§—®¤—®¤•¯¤«¤ª¥‰¨¢…¤ž€ ›}˜zš—y™–x–”v“‘tŽr‡Špƒ‰o€‡q€‡r…oy{oxwnwvlutnttouspvrqxqrwqqvopsjmpejmbgk]fh[cgYcgYbhZci]ci]ci]bh\`f\_e[Z_XZ_XY^WX]VX]WX]WY^XZ_[Z\YY[ZVZYUYXUYXVZYVZ[V\\X]`Yac\dg`hkcmoeoqfprfprkwwkwwkvxkvxlwylwymx|mx|ju{hsydoualraktblueoxdr{cw‚cy†dz‡f|‰gz‰fw‡eu…csƒer‚co}`jv]gp[dkXafR\^OWZRW]RU\QTYORWNQVLOTMNRLMQPPROOQPNQOMPOMNNLMMKLOKLNEHMDGMBFJADI>BF=@F;?D;>')')(*(*)+)+*,*,)+)+)+*,*,+-+-++-!--!+-!+-!+-!+-!+.!+.!+2"-2"-3!-4".4".5#/5#/5#/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/7&07&07&07&09%.9%.9&,9&,:%,:%,;$*;$*;%(;%(=$(;%(;&+:'+;');');');')<&(<&(>&&>&&>&&>&&?%$?%$?%$?%$B#(B#(B#(B#(B#(B#(B#(B#(? %? %@!&@!&@!&>$=#;"= $;!$;!$;!$;!$;!$;!$;!$9"9"9"8!8!7 7 7 7"6!4!3 1.*)((()'((+,-------00011223111111112222222244444444443334679 8877666777777776665544455667788<<<<<<<<< < < < =!?#A%C%D#F$G%I'J)L,M-N.R3Q2Q2P1P1O0O0O0K-K-H,G+F*E)C)C)@(A)C+F.G1J4L6M7 L6K5I3F/G- F+ F+"F+"G+ J."Q4$W;%]B'aF(eH&fJ%iK%jM%lN(nP*nR+nR+nR-mQ,eK(cI&`H$_G#_G%`H&aJ(cL*dP/dP/dP/eQ0dQ0dQ0eR1eR1^N-_O._P/`Q0aR1bS2bU3bU3cT7cT7bR8aQ7`P6_O5^N5]M4bR;bR;aQ:`P9aPdT=iX>kZ>m\@m^Al\Bk_EocKrgQogPpkNspM{|P’Z¤«h²ºm´Àn²Äp³Çr´Çu³Éw²Éy¯Çy«Æy©Åx°Í}²Ï¶Ñ€ºÓ»Õ~½Õ}ÁØ~ÃÜ~ÁÝwÂâwÇæ~ÌìÏî†Îï„Îï†ÍîƒÈ逯ê~ÅéÀæy¼áw»át¾ãyÁæ|Äé‚Ã烿ã¹ßzµÛv´Ýw¸á{¼æ€Áî‡Âñ‰ÆõÊû’Ìý”Ëþ•Ëþ•Íþ•ÕýšÙýÚý¡Ýþ§áþ¬äÿ°èÿ´êÿµìÿ¶îÿ¶ðÿ¹óÿ»õÿÀöÿÄøÿÉøÿËúþËûÿÌüþÍüþÏÿþÒÿþÕÿý×ÿý×ÿþØÿý×ýý×ûýÖùþÕ÷þÒöÿÒóÿÑõýÔöþÙ÷þÜöÿà÷ÿåöÿèõþëòÿíìýëéþëçÿèãÿåÞÿàÙÿÚÖÿÖÔÿÑÎøÈÏûÊÎþÎÏÿÑÍÿÕËþÕÉûÖÊ÷ÖÆïÏÀãÅ·Õ»±Î²°Ì³¯Ì°¬É­¨Å§¦Å¥¦Å¥¤Ã¤ ½Ÿœ¶›š²šš±›² š°£š²¥™³ª—µ­–µ¯”´¯‘´°´°Œ°¬‹°©Œ°¬´­–¹³š½¶¼·¼¶ºµœº²ž·±œ¶­œ³­™°¨–­¥’¬£‘¬§ª¦‰¨£†¥ ‚ ž~œšzš™x˜—z˜˜z–—y’–yŽ“v‰t…t‚‹t‡pz|oyznxylvumvumvsmvqnxpqxqpwooukmsgjpdhnbilahk`hk`hk`hk`gj_eh_cf]ad[_bY_b[^aZ\^YZ\WY[VY[VZ\YZ\YZ\YY[XXZWWYVWYXVZYW[\W]]Y__Z``[ce]eg_gjailailakmhsuguvhvwiwxky|lz}mz€n{iv|fsybow`mu_luanwdqzes~ex†dzˆh{Ši|‹j{gxŠfuˆdt„er‚co}blxaku`ir[diV^aQY\SX^SV]RUZQTYQRWPQVONSONSNNPNNPOMPNLOPLMOKLOKLPJLQFJPEIOCGLAEK?CH=AG;?E:>')')(*(*)+)+*,*,)+)+)+*,*,+-+-++-!--!+-!+-!+-!+-!+.!+.!+2"-2"-3!-4".4".5#/5#/5#/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/7&07&07&07&09%.9%.9&,9&,:%,:%,;$*;$*;%(;%(=$(;%(:%*9&*:&(:&(:&(:&(;%';%'>&&>&&>&&>&&?%$?%$?%$A%$B#(B#(B#(B#(B#(B#(B#(B#(? %@!&A"'A"'@!&? %>$<#>!%<"%<"%;!$;!$: #: #: #9"9"9"8!8!7 7 7 7"7"5"4!2/,+))))())+,-------01112333222222222222222255555555543345679 9 9 87776777777775555555555667788<<<<<<<< =!< < =!>"A%C'E(F&H&I'K*L+N.O/P1Q2R3S4T5S4R3P1O0L.L.I-H,G+F*D*D*C+D,F.H0I3K5M7 N8!M7 L6!J4H1I/ I/ J0!J0!J. N3 T8#[?'`E(cI(gJ(gK&jL&lO'oR*rT.sW0sW0rV/rV1gM(fL)bJ&aI%aI%bJ(dM+eN,gS0gS0gS2gS2fS2fS2eR1eR1_O._O._P/`Q0aR1bS2bU3bU5cT7cT7bR8aQ7`P6_O5^N5^N5cSdT=kZ@n]Ap_Co`Cl^Cm_EmaKodNmeNngMpkKwuN†ˆV™Ÿaª±k±¼n°Áq±Är³ÉwµÌ|µÍ±Ì}®Ê}­É|³Ð€µÒ€¶Ó¹Õ€ºÖ¾Ø}ÁÚÂÛ}¾ÜxÁâzÈç€Ìí…ÏðˆÍðˆÍî†Éì„ÄçÃèÂç~¾å{»àw¸ßuºáw½äzÁç‚À惾ä¸à}´Üy²Üx¶à|·ä¿îˆÁñ‹ÅõÈû”Ëþ—Ëÿ˜Ëÿ˜Ìÿ˜Óý›×üŸÙý¥Üþªßþ°ãÿ´åÿ¶èÿ·êÿ¸ëÿ¸îÿ»ðÿ¾óþÂõþÇöþÍøþÎùÿÑûþÑüýÑýþÔÿýÖÿþØÿýÚÿþÝÿýÜþþÜüýÝùýÚøþØöþÕóþÔòþÖòþÚòýÛóþàôþãóÿçôÿìóÿïòÿñìüïéþíçÿëãÿçßÿäÛÿß×ÿÚÕÿ×ÎùÌÍûÍÌýÐËþÓÊþ×Éý×ÈûÚÊùÙÄïÓ¾âȲҺ­É²«Ç°«Ç®©Å¬§Ä¨¦Ã¥¥Â¤£À¢Ÿ¹ž™±™•­—”«™•­–®¡•¯¤–±ª”³­•µ°“¶²’¶²‘µ³³±Ž²°Ž²°‘µ³—º¶š½¹»¹œ»¶Ÿ¼¸Ÿ¼¸¡º¶Ÿ¸´³°˜®«”«¥¨¤ª§ª¦Š§¥…£¡Ÿ~œšzš™y™˜|šš}™œ~—›}”š{–x‹’u†Žu„‹q|€r|}pz{oyznxynwvmvsmvqqwspwpovnoukmsilrfkqelodkncjmbilahk`fi`dg^be\ad[ad]_b[]_Z[]XY[VXZUXZWXZWZ\YY[XXZWXZWXZYY[ZY]^Y]^Z^_Z``\ad\df^fi`hkbjmakmeprestguvjxym{~o}€p}ƒq~„jw}gtzdqyanv`mvboxer{ftgzˆf|Šj}Œk~k|Žhy‹fuˆgt‡cn€bn~bkzblvajs]fmW^dSX\SV]SV]RUZPSXPQVOPUONSNMRMMOMMONLONLOPLMPLMPLMPJLRGKRFJQEINBFL@DI=AG;?F:>')')(*(*)+)+*,*,)+)+)+*,*,+-+-++-!--!+-!+-!+-!+-!+.!+.!+2"-2"-3!-4".4".5#/5#/5#/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/7&07&07&07&09%.9%.9&,9&,:%,:%,;$*;$*;%(;%(=$(;%(:%*:%*:&(:&(;%(;%(=$'=$'?''?''@&'@&'B&%B&%B&%B&%C$)C$)C$)C$)C$)C$)C$)C$)@!&@!&A"'A"'A"'@!&>$<#?"&=#&<"%;!$;!$: #9"9"9"9"9"8!8!7 7 7 7"7"7"7"3 1/-**)*++),-.......11123334 22222222222222225555555555444678:!9 9 9 8777777777775555555555667788= = = = = = =!=!=!=!=!>"@$B&D(G*H(J)K*M,N.P0Q2R3R3S5U7V8V7T5Q2O0N0M/K/J.H,G+F,E+I1I1J2K3J5K6L6L6K5K5 J4J4L3M4 O6"P7!P6R8X="\A$aF(cI(gJ(gK&kN&mP&qT*uX0vZ2vZ2uY1tX1jQ)iO*fN(dL&dL&fN*gQ,hR-kW2kW2jV3jV3hV2gU1fS2fS2`P.`P.`Q0aR1bS4cT5cV6cV6dU8dU8cS9bR8aQ7`P6_O6_O6cSdS?eU>m\Bo^BqbEpaDm_Dk]Ck_IlaMkcNkcLniLurO€T“^¢¦i¬¶q¬¼q®Ár°Åv³Ê|µÍ³Î±Í€®Í²Ñ²Ò³Ó~·Õ¹×¼Ù}½Ú~½Û{¾Þ{Àã}Çç‚Êí‡Ìï‰ÊïˆÉì†Æë„Âç€ÂèÂè½æ~»áz·àx¸áyºã}¼äƒ½å„¼äƒ·á³Ý{°Üz²Þ|³á~½í‰¾ñŒÂõÆú•Éý˜ÉÿšÉÿšËÿ›ÑýžÕü£Öü§Úý­Ýý²àþ¶äÿºæÿ½èþ½êÿ¾ìÿ¿ïþÃñþÈôþÌõþÓöýÓùþÖúÿ×üþ×ýÿÚþýÞÿþàÿþàÿþâÿþâÿþâýýãúýàöýÜóýÚòüÙïýÚìýÝíýàíýâîýæïþëñÿðòÿóñÿöìýóéÿòèÿðäÿíàÿéÜÿäØÿàÕþÜÍùÕËùÔÇùÓÅùÓÂú×ÃúÚÅúÜÉùßÅï×¼â˰Ѽ©Æ²¨Ä®©Å¯§Ä®¦Â«¥¿¤¤¾£¢¼¡œ´œ•¬˜‘¨–§—¨š‘« ’­¤‘°ª“³®“¶²‘¸µ’¹¸’¹¸‘´¶³µ³³’¶¶—¹ºš¼½œºº›¹¹Ÿ»¼Ÿ¼º ¸¸µµ›±¯–¬ª‘§¥Œ¥¢§¦Š§¥ˆ¤¥…¡¢ŸŸ~œœz™›y˜š|šœ~šž€™ž€—Ÿ“œ|Ž˜xŠ”wˆt‡u€‚tr~~p||oyxnxwmxtqzupzrpzrpwoovnnvkmujntjloflmekldijbhicghbfgafgacd_ab]^^\\\ZZZXXXVXXXXXVZZXZ[VYYWYYWY[XZ\Y\^][_^Z^_Z``\bb_eebgjejmfnpfprbpqdsvgvyl{~o~ƒq€…rˆrˆkzixes|bpybp{cq|ftfvƒj{‹j}Žk~k~k|hyfuŠfs†`k}_k{`ixaivbht^emW^dTY_RU\TT\RSXQRWPOUONTOMRNLQNLONLOPKOPKORLNRLNRLNTKNUIMVGLTEJRCHO@EL=BJ;@I:?')')(*(*)+)+*,*,)+)+)+*,*,+-+-++-!--!+-!+-!+-!+-!+.!+.!+2"-2"-3!-4".4".5#/5#/5#/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/7&07&07&07&09%.9%.9&,9&,:%,:%,;$*;$*;%(;%(=$(=$(<%+;&+;');')<&)<&)>%(>%(?''?''@&'@&'B&%B&%B&%B&%C$)C$)C$)C$)C$)C$)C$)C$)@!&A"'B#(B#(A"'@!&? %= $@#'=#&<"%<"%: #: #9"8!9"9"9"8!8!7 7 7 7"8#8#7"6!21/*++++,*,-.......1223344 4 33333333222222226666666665445678:!:!:!9 9 887777777774445566655667788= = = = = =!=!=!=!=!=!?#A%D(F*I,J*L+M,O/P0R2S4T5T6U7V8W9W8U6S4Q2P2P2M1L0K/J.H.H.N6N6N6N6L7L7K6K6K5K5 L6M7 Q9!T<"V>$X@$Y@"ZA"]B$_E$bH'dJ'iL*jN)lO'oR&tW-x[1y^3x]2w\1uY1nU,mT,jS*hQ(hP*jR,kU.lV/o\4nZ5mY4lX3iW1hV2gU1fS2`P.`P.`Q0aR1bS4cT5cV6dW7eV9dU8cS9bR8aQ7`P6_O6_O6aQ:aQ:aQ:aQ:cR>eT@gVBhXAn]Cp_CqbEp`Fl^Dj[Dh\Fi\Kk`NiaNmeNsnP|xR‡†X™™c¦¬n©¶p©»o«Àu¯Åz±É}±Ì±Í€¯Î~±Ñ~°Ð{±Ñ|´Õ|ºØ€½Û¾Û½Ü~½ß~ÀâÄæ…ÆêˆÇë‰Åé‡Ãç…Áç„À惿ç„À腽傹á~¶à|·á}¸â€¹â‚ºã…ºã…¶âƒ²Þ®Û|¯Ü}°ß¹ëŠ»ï¿ó‘Âø–ÆüšÇÿœÈÿÉÿŸÏü¡Ñû¥Õü«Øý°Üý¶ßþ»áþ¾äþ¿æþÀèýÂêþÃìýÇïýÌðýÑòü×ôûÙùÿÝùÿÝúýÞûþßþþäþþæþþæÿþéÿþêþýéûýèøýæôýâòüáñûàíüßèüáæýãæüåéüèêüììþòîÿõðÿùêý÷éþ÷æÿõäÿòáÿîÜÿéÚýåÖþãÍúÛÈùÙÅøÙÁ÷׿÷ÚÁùÞÄúâÉúäÄïÛ»àέν£Â°£À®¥À­¤Á­¤Àª¢º¢¡¹¡Ÿ·¡™±›’©—¤”Œ¤–‹¥˜Ž© Ž¬¤°«‘´°‘¸µ’º¹”¼¼”¼¾¶¹‘´º³·’µ¹—¸½™º¿›¸¼™¶º¹¼œ¸»œ´¸˜°´–«®‘¦©¢¥‰¡£Š¢¤ˆ¢£„ £ƒŸ¢Ÿ}›{šœz™œ{˜œ{˜ž}˜Ÿ˜Ÿ~”Ÿ~’{šzŒ–x‡Žy‡Šx†‰v„…s‚r~~p||oyxs~zr}wq|vq{spzrnxoovnowlnqhnoglmejkehichicghbghcbc^aa_^^\\\ZZZXYYYXXXXXXZZXZ[VYYWYYWY[X[]Z]_^^`_\`a\`a]cc_eebgjfkngoqhrtdruetwjy|o~ƒr†tƒˆtƒŠtƒŠn}„ky‚hves|dr}ftiw‚iy†j{‹j}Žk~k~k|ixgs‰eq‡`k`h{`gy`huags^eoY`hW\bUU]TT\TSYSRXQPVPOUOMROMROMPQLPQLPSMQSMOSMOTNPVMPWKOXINWFLSDIP?EL=BK:@I:?')')(*(*)+)+*,*,)+)+)+*,*,+-+-++-!--!+-!+-!+-!+-!+.!+.!+2"-2"-3!-4".4".5#/5#/5#/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/7&07&07&07&09%.9%.9&,9&,:%,:%,;$*;$*;%(;%(=$(=$(=&,=&,='*='*?&*?&*?&)?&)A'(A'(C&(C&(C'&C'&D&&D&&D%*D%*D%*D%*D%*D%*D%*D%*A"'A"'B#(B#(B#(@!&? %= $@#'>$'=#&<"%: #9"8!8!9"9"9"8!8!7 7 7 8!9"9"8"7!6 21,++,+,,-.///////2223344 5!33333333222222226666666666555689 ;":!:!9 9 888777777773345567755667788>!>!>!>!>">">">"=!=!>"?#B&E*G,J-L-N-O/P0R2T5U6U7W9W9W9W9W8V7U6T5R4R3O3N2M1L0J0J0P8P8O7O7M8M8M8M8M7M7 O9!R="X@$\E&`I)bK)eM)dL&dJ%cI$eK&gM*lO-oS.nQ'qU&uX,y\0z_2y^1v[.tY.rZ.pW.mV,kT*kT+mV-nX/pZ1r_5q^6p]5n[3kY1iW1gU1gU1`P.aQ/aR1bS2cT5dU6dW7dW7eV9eV9dT:cS9bR8aQ7`P7_O6`P9`P9`P9aQ:cR>fUAiXDjZCm]Dp`FrbHp`Fk]ChYBeXEeXGfZJd[JiaNqjPwqQ}ySŒ_ i¥±o¤¶l¥¹q©¿t¬Äx®É|°Í}°Ï±Ó°Ò|°Ò|´×}ºÛ‚¾ß„Áàƒ¿Þ¿áƒ¿â„Àã…Áä†Áä†¿ä…¾ã„½âƒ½âƒ½å…¾æ†»ä„·à€´Ý}´Ý}³ß€µà„·â†¸ã‡µâ…±Þ­Ü~­Ü~¬Þ¶éŠ·í¼ò’Àø—Äü›ÅþÆÿžÇþ Ìý¤Ðû©Òû­Ôü³ØýºÛþ¾ßþÂáþÄãÿÅåþÅçþÈêþÍìýÑîýÖñüÜñüÞöÿâùÿãúþåúþçüþéüýëýþîýþîþÿñüþðúþïöýíóüéîüåíûäéûãâûåßûåßúçâúêåûïçüóêÿøìÿüêþüéÿüçÿúåÿ÷áÿóÝÿïÛýíÖýêÌùâÈú߯ûáÄüãÂüäÂüæÅúæÉùéÁëݶÜͨȻž½®¹ªŸ¼ª ½« »¨žµ¡Ÿµ œ±ž—¬›¦–‹¡”Š¡—‰£šŒ©¤¬§Ž°¯‘µµ“¹º•½¿•¾À–¿Ã‘¶¾‘³¼²»’´½–·¾—¸¿™¶¾—´¼šµ¼˜³º—®´’©¯¤«Œ §ŠŸ¤‡Ÿ£…¡„¡¡€œ ~›Ÿ}šž|›žyšŸx—œy–žz—Ÿ{–Ÿ|” }“ ~‘Ÿ~œ{Œ”}Œ‘|‹z‰Œw†‰t‚ƒq€q}}ut€|s{r}wp{uozroyqpwotwprsmopjklghidghcfgbffdaa_```^^^[[[ZZZYY[YY[ZZZZZXZ[VYYWZZXZ\Y\^[\`_]a`^bc^bc]cc^dd^fhaikdlneoqetwfx|k}o€‡s„‹t…Œt…s„Œo€ˆl}‡hyƒfweu‚gw„jz‡l|‹j{‹j}Žl}‘l}‘kz‘hwŽfrŠdp†cn‚bj}ahz`hubhtahr_cl]`iZYaYX`YV]WT[VSZTQXUPVTOUQLPSMQSMQVMRWNQWNQXORYNR[LQZIOZGMUDJS@FN=CM:@J9?')')(*(*)+)+*,*,)+)+)+*,*,+-+-++-!--!+-!+-!+-!+-!+.!+.!+2"-2"-3!-4".4".5#/5#/5#/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/6%/7&07&07&07&09%.9%.9&,9&,:%,:%,;$*;$*;%(;%(=$(=$(>'->'->(+>(+@'+@'+@'*@'*A'(A'(C&(C&(C'&C'&D&&D&&D%*D%*D%*D%*D%*D%*D%*D%*A"'B#(B#(B#(B#(A"'? %= $A$(>$'=#&<"%: #9"8!7 9"9"9"8!8!7 7 7 8!9"9"9"8"6 51,,,,-,-.////////2233445!5!33333333222222226666666666555789 ;";":!:!9 9 88777777773345567755667788>!>!>!>">">">">"=!=!>"@$B'E*H-K.M.O/P0Q1S4T5V7V8X:X:W9W9V7V7V7U6T6S4Q5P4N2M1L2K1O7O7P8P9N9O:O:O:O9!P:"R="VA"]F&bL'fP)iS*mV,kT*iP'gN%gN&jQ)pT/rV/oR&rV&vZ*z^.z_0y^/v[,sX+t\.rZ.oX,nW+nW+oX,p[0r]2s`5r_5q^4o\4kY1iW/hV0gU1aQ/aQ/aR1bS2cT5dU6dW7dW7eV9eV9dT:cS9bR8aQ7`P7`P7^N7^N7_O8aQ:dS?gVBjYEl\Em]Dp`FrbHp`Fk]CgXAcVCcVFdVIcWIi]MogRrkOwqOˆƒ[˜˜f£­n¢²k¤µn¦ºrªÀu¬Çz¯Ì|°Ï²Ô€°Ò~±Ó}µ×€½Þ…Áâ‰ÄâˆÀá†¿âˆ¿âˆ¿âˆ¿âˆ½á‡¼à†»ß…ºÞ„¹à…»â‡»äˆ¹â†µÞ‚²Û°Û±Ü‚´ß†µáˆ·ãŠ´âˆ°Þ„«ÜªÛ€ªÝ²ç‹´ë޹ð“¾÷™ÂûÂýŸÃþ Åý¢Ëý¨Ìû«Ðü±Óü¶Öý¾ÚþÁÝþÇàþÈáþÈãþËæþÎèýÒëý×ìýÛíûáïûãóÿçöÿê÷ÿêøÿíúþïûÿñûþóûþõüÿöùÿõ÷þöóýòðüîíûêêûéæûèÞûéÚûêÛúëÛùíàúñãüöæÿüèÿþçÿÿçÿÿæÿýãÿüàÿùÝþõÙýóÔýïÉøæÈûèÉþêÇÿíÆÿïÆÿîÆüîÆøì¾èÞ³ÙΥź™·«™µ§›·¨œ¸©¸§²¡Ÿ±¡š¯ •ª›Ž¤—‰¡”‡¡˜ˆ£œŠ©¤Œ¬©±±µ¶“»½•¾Â—ÀƘÁÇ‘¶¿‘³½²¾‘³½•µÀ–·À˜´À–²½˜³¾•°¹“©´Ž¥­Œ «‰¦ˆœ¥‡›¢‚™¡šŸš¡š¡}š |› z›¢z›¢w•w•Ÿx”Ÿx”Ÿy“ |“¡}“¡’ }™}–~–|Ž’xŠŽv…ˆr„ot„ƒtƒ€s‚s{p|xn{tmzsnxpv{uuwrqrmkmhhiddfcddbbda```^`_]]]Z[]ZZ\YZ\ZZ\YZ\ZZXXZWYYWY[XZ\YZ^]\`_^ba`de^dd]cc[ce\df^fh`hj`kmfuzgxl}„q‚‰t…Œu†Žu†Žt…p‹n‰j{…gw„gw„hx…k{ˆl~Œj{‹j}Žk|k|jygveq‰do…hp…em€bi{aivciucjtcgpben]\d]Zc\Y`[X_YV]YT[XSYYRYSMQSMQVMRWNSXORXORZOS[OS\KQ]JPZGMWDJS@FP=CN;AL9?*,*,*,*,*,*,*,*,, ., ., .-!/-!/."0."0.".0$00$.0$.0$.0$.0$.1$.1$.2"-2"-3!-4".4".5#/5#/5#/5$.5$.6%/7&07&08'19(29(27&07&07&07&07&07&07&07&07&07&07&07&09%.9%.9&,9&,9$+9$+:#);$*;%(<&)>%)?&*;$*<%+>%)>%)?&*@'+A'*A'*B%'C&(C&(D')F((G))G))H**D%*D%*C$)C$)B#(B#(A"'A"'B#(B#(B#(A"'A"'@!&@!&?"&= $;!$: #: #9"9"8!8!9"9"9"9"9"9"9"9"::8887772/+'&)-/////////2233444 5!22222222222222227777777777777777777777779 9 9 887777777777777777777;;< < =!=!>">"B&B&A%A&C(F+I.L/K,M-P0R2U6X9Z;\>Y;Y;X:W9V7U6T5T4R4R3P4Q5Q5Q5P6P6S;S<T=T=R>R>Q=Q=Q#VA"[G&bL'hR)mX+oZ+v`1xb1ya3v^0pX,mT+pT-rW,sW'vZ(x\*x\*sY(rX'sY(uZ+t\,t\.s].s].u_0xb3ze8|g:tb4ta6ta6r_5o^3lZ2jX2hV0bR.cS1bS2cT3cT5dU6cU8cU8cT7bS6bR8bR8aQ7aQ7`P7`P7aQ:`P9_O8_O8bQ=fUAkZFn^GqaHp`Gn^Ek[BgY?eV?cTA`SC`REbTGdVIf[ImbLwnQ…}Y‹ˆ[ž¦j¨µp¬¼u¦·pŸµj¥½q®Éz±Ð€²Ô€°Ò~°Ò|´Ö€ºÜ…½ßˆ¾ßˆ¼Ý†»Ý‡½ß‹¾àŒ»Ý‰¶Ù…µØ„¸Û‡¼ß‹³Ù„³Ù„³Û…³Û…²Ú„°Ø‚­×«Õ°Ü‡°Ü‡°Ü‡¯Ü‡¯Ü‡¬Ü†¬Ü†ªÜ…°åµë“¼òšÀøŸÀøŸ¾ùŸ¿ú Àú£Åù¦Éú«Íû³Ñþ»ÖÿÃÙÿÇÛÿÌÝÿÌÞþÍáþÎäÿÔæÿØéþÝêýáëúåëúçñÿíñÿîòÿîòþðóýòóýôõüõõû÷óü÷òûöñüøðýöîþôìþòêþòæÿòàÿóÝÿõßÿõßÿ÷áþùáþúãýþãýþæÿÿäÿÿäÿÿâÿÿßÿüÛþúØû÷ÔüôÇõëÊþñËÿóÆþñÄþðÇÿôÆûñÃõì»äܬÑʼ´—²©”®£ª«œ•­Ÿ“¥—“¥—Ž¢–‰’…š‘‡ž–‹¦¡­©¯®’´µ—º¾›ÀÆœÃÊšÃÉ–¾Æ•»ÆŽ²¾±½Ž¯¾²¾”´Á•µÀ•±¿’®ºª·Š¥°‡ªƒ™¤ƒ–¤‚–¡€”Ÿ~’›}“ž}–}˜¡~™¢}š¢{™¡w˜¡v— s”s“žv”Ÿx” z–¤|–¥}—¦€—¥ˆœ§‡›¢‡š¡…˜Ÿ”›~–zŒw‰‹w‰‹xˆˆv†…tƒ€r~q€{q€{t{|‚~y~zvxumrnhjgaed_a`[_^Z[]Y]^[\^Z^a\]a[_b]^b[_b_a`[_^\^]Y]\Y]\Z^_[_`\bb^cf]eg\dfYceWacXbd]gi`kocryexm€‡uˆyŒ“{—zŒ–xŠ”w‰•r„l~Šj|Šk}‹mn€Žnq‚”o€’m|jyŒhtŠfrˆep†do…em‚eldi|bhvbfr_cn^aj__g\Yb[U_XSZXSZZU\\U][T[[QYYPUXOTYNTXMSXMQYNR\PT]QUaPVbOU`MS]JPYFLTAGP=CN;A*,*,*,*,*,*,*,*,, ., ., .-!/-!/."0."0."./#//#-/#-/#-/#-/#-0#-0#-2"-2"-3!-4".4".5#/5#/5#/6%/6%/7&07&07&07&08'18'17&07&07&07&07&07&07&07&07&07&07&07&09%.9%.9&,9&,9$+9$+;$*;$*<&)<&)>%)?&*<%+<%+>%)?&*?&*@'+A'*B(+C&(C&(D')D')F((G))G))H**D%*D%*D%*C$)C$)B#(B#(A"'B#(B#(B#(A"'A"'@!&@!&?"&= $;!$;!$: #: #9"9"8!9"9"9"9"9"9"9"9"::88888750,('(+.........1122334 4 22222222444444447777777766666666777777779 9 8877667777777777777777;< < =!=!>">">"B&B'C(D)E*G,I.K/K,M-P0R3U6X9Z;[=[=[=Z<X9W8U6T5T4S4S4R6 S7!S7T8 T:T:P9Q:S<V?VB!XD!YE"ZF#WB#YD%\H'`L'gQ(lW*p\*r^+v`.xc.zc1yb0v^0s[-sX-rW*tX&w\'y^)y^)v\)u[(w]*y_.w`.v_-u_.u_.wa0yc2{f7|g8vd4vd6uc5ta6p_3m\1jX0hV0dT0dT0cT3cT3dU6dU6cU8cU8dU8cT7cS9cS9bR8aQ7aQ8aQ8aQ:`P9_O8`P9bQ=fUAjYEm\HqaJp`Gn^Ek[BgY?dU>bS@`P@_QD`REcUHfYIl`JukP„yYŠ…[›¡e¤¯j«¸r¥µl¡³i¥¼n«Æw¯Ìz´Ô³Õ´Ö‚¸Ú†½ß‹¿á¿ßŒ¼Û‹»ÚŒºÛŒ¸Ùеև²Ó„°Óƒ±Ô„²Õ…°Óƒ®Óƒ¯Ô„¯Ö…¯Ö…®Õ„­ÔƒªÔ‚°ÙŠ¯ÚŠ°Û‹¯Ü‹¯Ü‹¬ÛŠ«Ú‰ªÛ‰®â³é•ºðœ¾õ¡¿ö¢½÷¢½÷¢¿ù¥ÅúªÈû°Ëý¶Ñÿ¿ÔÿÅØÿËÚÿÍÛÿÏÝþÑßþÒãÿ×åÿÜçþâçýæéüééûëîÿòîÿòïÿôïÿõñþ÷ñýùñýûñýûñýýïýýíýüëþüéþùçþöåÿöáÿõÝÿ÷ÜÿùÜÿúÝÿúßÿüßÿþàþÿàþÿãÿÿãÿÿâÿÿáÿÿÝÿÿÙýýÕüûÒúùÈ÷ñËþ÷ÌÿùÇÿöÅþ÷ÈÿùÇüöÄóí¸áݪÍÉ›¸³•®¨ª¡Œ¤—Š¢•£–Œ“‹œ’ˆœ“†›’‡ž–Š£¬¨“±¯“µ¶•¸º—¼Âš¿Ç™¿È•½Ç’¸ÅµÂŠ®¼‹¬»Š«º®½‘±À‘±¾’®¼«¹‹¥´† ­‚˜¦~”¡~‘Ÿ}ž{Žœy˜xŽ™yšz’žz• z–¡x–¡v–¡u• t”Ÿu•¢v–£y–¦{˜¨}˜©~™ª€š©ˆž«‡ž¦‰¨‡›¤„˜¡€”›~‘—|“x‹w‰‹u‡‡s†„sƒ‚sƒ€r‚v‚€zƒ€y{syulrpfljage_ec^dd\bb\ad]be]be^cf^cg_dh_dh_ee^dd\bb[aa[aa\ad^cf]eg`hk_ik]fkYdhWbfZei_jnbouev~g{‚nˆs‡y‹•zŽ—zŒ–y˜y‹—t‡•p‚m€Žn€Žnnm~Žo€nm|kzjwŠhuˆfq‡go„ipƒhogm}ekydhsbfoadkcck_\e]WaZU\[T\\U]]V^^T\\RZYPUYNTXMSWLRXLPYMQ[OS]NS^MS^MS^KQZIOXEKRAGQ>DM!%;!$;!$: #: #9"9"9"8!8!8!8!8!8!8!8!; ; ; ; ; 9 9 8 63-*()+-........00112233333333336!6!6!6!6!6!6!6!777777776666666677777777887766657777777777777777< < < =!=!>">"?#B&C(E*G,H-I.J/K/L-N.O/R3U6W8Y:Z;]>\=[<Y:W8U5T4S3S4T5!S7!T8"U9!W;#W="W="R;S<U>XAXD![G"]I$^J%_K(aM*dP+hU+nY.q\-t`-ua,xc,yd-|e/~g1~g5{d2x].u[*v[&x]&z_(z_(y`*y`*{b,}c0{d0zc/yc1yc1zd2{e3|h6}i7yg5yg7xf6vd6ra5n]2kY1iW1fV2fV2eV5eV5eV7dU8cU:cU:eV9eV9eU;dT:cS9cS9cS:bR9aQ:`P9`P9`P9cR>fUAjYEl[GqbMo`Im^GiZCfX>bS<`Q<_O?_OB`PCbREeUEk\GthNƒvV‰‚X˜™_¢©e©³n¦³k£³h¦»l«Äs¬Çv²Ï}²ÒµÕ‚ºÙ‰¾Ý¿Þ¿ÛºÙ¹×¶ÔŠ²Ð†®Îƒ¬Ì«Ë€©É~¦È|©Ë¨Í€ªÏ‚«Ðƒ¬Ñ„¬Ò…«Ñ„©Ò„­ÖЭ׋®ØŒ®Ú®Ú«ÚŒªÙ‹¨ÙŠ«Þ°å•·ìœ»ò¡¼ó¢ºó¢ºó¢»ô£Åû­Èü²Ëþ¹Îÿ¿ÒÿÈÕÿÌ×ÿÑÙÿÑÚÿÓÜÿÕáÿÛåÿáæÿçèÿëèýîçýðêÿôéÿôêÿöêÿøëþúëþüëýýëýÿíÿÿíÿÿëÿÿèýþäþûáþùàýøÝþ÷ÛÿùÙÿûÙÿýÛÿýÛÿýÜþÿÞýÿÞýÿàÿÿÞÿÿÞÿÿÝÿÿÙÿÿÖþÿÓüþÏûüÊøöÌþûÎÿÿÉÿýÇÿüÉÿýÇùöÃñïµÜÛ¨ÈÇš´±“ª¤¢›…›€–ЕЀ”‹“Š”ƒš”‡¢Ž«§”²²–µ·˜»¿—¼Â˜½Æ—»Ç•¹Ç¶Ã±ÁŠ®¾‡¨¹†§¸†§¸ˆ©¸Œ¬»­¼Ž©º‹§µ…Ÿ®™¦|’ xŽœx‹šwŠ˜uˆ–s†”q‡”rˆ•t‹™uœv’žv“¡u•¢u•¢v˜¤v—¦x™¨z™«~›­œ®ž°‚®Š¡¯Š¢¬Š ­ˆž©†œ§ƒš¢‚–€•šx’x‹vŠ‹tˆ‡s……s†„s……v„„y„€v|pyvirqdmlaji`ih`hj`hj`hkailailbjmbiocjpcknbjmaik`hj_gi_gi_ik`jl`kmcnrcnralr\io[hn]jpboufu|h{‚g~†mŠp†‘u‰”vŒ—y˜xŽ›yŒštŠ˜r…”o…“pƒ’m‚“li|‹izŠk{Šk{‹k{‹kx‰hu†fq…fnip‚hogm{gkwfirdgncfkdejc]g`Xc]V^^T]_U^_U^_T\]RZYNTYLSXKRWJQYJOZKP[LQ[LQYJOYJOYHNWHMUDJQBGP?EM>C*,*,*,*,*,*,*,*,, ., ., .-!/-!/."0."0.".-!--!+-!+-!+-!+-!+.!+.!+2"-2"-3!-4".4".5#/5#/5#/9(29(28'17&07&06%/5$.5$.7&07&07&07&07&07&07&07&07&07&07&07&09%.9%.9&,9&,:%,:%,;$*<%+<&)='*?&*@'+@'-@'-@'+A(,B',C(-E(,E(,E(*E(*F(*G)+H()H()H()H()E&+E&+E&+D%*C$)C$)C$)B#(B#(B#(B#(A"'A"'@!&@!&?"&>!%<"%<"%;!$: #: #: #9"8!8!8!8!8!8!8!8!; ; ; ; ; ; 9 9 8 52,**+,--------/0001122333333336!6!6!6!6!6!6!6!888888886666666688888888887766557777777788888888 < =!=!=!>"?#?#?#B'D)G,I.K0K0K0K/L-N.O/R2T5V7X9Y:[<Z;Y:W8U5S3Q1P0Q2R3Q5S7!U9!V:"W="W> W@ W@ XAXBXDYF[H \I!eQ,gT,jW-mZ/s^/ua/vb-wd,ze,ze,}g.‚l3…n8„m7€f3za+z_(z`'{a({a(za){b*}d,f0~g1~g3}h3}h3}h3}h3}i6}i6|k7|j8{i9yg7tc5q`4m\1kY1iZ3iY5gX7gX7fW:eV9dV;cU:fW:fW:fVfUAiXDjYEpaLo`Kl]HhYBeW=aR;_P;]N;^N?_O@aQBcTAiZEseJrS‡~S––Z ¦`©°j¨²i¨´h«¼l­Ãq¬År¬Çv¯Ìz´Ñ¸×‰½ÙŽ½ÙºÕŽ¸ÓŒ¹Ô²ÐЮɄªÈ‚©Ç§Æ€¤Â| ¿y¤Ã}¥Æ§È¨Ì„¬Í†«Ï‡¬Ðˆ«Ñˆ«Ñˆ«ÓŠ­ÕŽ­×®Ø¬ØªÕ§ÕŠ©Ù­à“´çœ¸íŸ¹í¢·íŸ¸î¢·ð£Ãü¯Äü±Çÿ¸ÍÿÁÐÿÉÓÿÎÖÿÓ×ÿÔÙÿÔÛÿ×àÿÝãÿâåÿêçÿïçÿòçþôåÿ÷åÿ÷æÿùæÿûèþüèýþèýÿèýÿëÿÿéÿÿæÿÿãÿÿàþþÛþúÙüøØüøÙÿýØÿÿÙÿÿÙÿÿÛÿÿÛÿÿÛþÿÛþÿÜýÿÜÿÿÜÿÿÚÿÿ×þÿÔýÿÐûÿÎûþÌùüÎÿÿÏÿÿÊÿÿÊÿÿÊÿÿÇùúÁíîµØÚ§ÅÅ™²¯‘¦¡Š—“ˆzŒ€w‹€yŒ†xˆz‘‹€™•‰¦¢’°®–µ·•·¹™¼Â–»Ã–ºÆ”¸Æ‘µÅ°Ã‹¬¿‰ª½…¦·„¥¶ƒ¤µ†§¸Šª¹Šª¹‹¦·ˆ£´€š©{•¤w›s‰—t‡–r…”pƒ‘nl‚n„’p‡—q‹štžv“£v–¥v—¦w˜§x™ªz›¬|°ž²‚ž³„ µ…¢´Œ¦µ‹¦±‹£¯ˆ ¬…©ƒ™¤€—Ÿ–œwŽ”x’v‹Žtˆ‰s‡ˆr†…r†…s†„v‚€r~zmwvfrpcml`ljaklammcmobmocmocnpensdosensfotgpugpufoteptepteptfqwdqwdqyet{fu|es|cqzbs{ev~gzj~‡i€ˆj€‹mƒŽo…rˆ“tŠ—vŒ™vŒštŠ˜q‡•p†”o„•k€‘f{Œcv…bt‚dtgw„hx‡iv†gsƒem€cl}cjzdjxdhtcgrbel`ch_cfa`eb]daWb]S\[QZ\R[\R[[PXYNVXKRWJQVIPWHOWHMWHMXINXINTEJTEJTEJTEJSDIQBGO@EN?D*,*,*,*,*,*,*,*,, ., ., .-!/-!/."0."0.".-!--!+-!+-!+-!+-!+.!+.!+2"-2"-3!-4".4".5#/5#/5#/9(29(28'17&07&06%/5$.5$.7&07&07&07&07&07&07&07&07&07&07&07&09%.9%.9&,9&,:%,;&-<%+=&,='*>(+@'+@'+B'.B'.B',C(-E(-F).F)-F)-H*,H*,I),H(+H()H()J()H()F',E&+E&+E&+D%*C$)C$)C$)B#(B#(B#(A"'A"'@!&@!&?"&?"&<"%<"%<"%;!$: #: #: #8!8!8!8!8!8!8!8!<!===< < : : : 741---........./00011224444444444444444888888887777777788888888888776667777777788888888 =!=!=!>"?#?#?#@%B'D)G,J/L1L1K0L0L-N.O/Q1S3U6W8W8W8V7U5T4R2P0O.N-O0O0O3P4R6T8 T:U<V?U>U>V@VCYF\I^K!hU+jW,m[-q_/vb0wc0xe-xe+|g.|h-i/„n4‰s9Št;ˆo7„k3€f-e*}c(|b'{b)}d+~e,~e-i0€i3j3€k4€k4€k4k6k6~m9~m9}k9{i9wg6tc5q`5o]5l]6l\8j[:iZ9gX;fW:dV;cU:gX;gX;fV`O?bQAdS?iYBsdGqP‡|Oš–Y£¥\¬°f«³f«¶h¯¾m¯Âp­Ãq¬Åt®Éz´Ï‚·ÓˆºÔ¹ÒŽ·ÐŽ¶ÏŽ³ÌŠ­È…©Â€¦Á~§Â¥Â¤¿|Ÿ¼y¡¾{¡À|¥Ä€§Èƒ«Ê†¬Íˆ¬Íˆ«Ï‰¦Ë…¦Î‡©Ñ‹«Õ¬Õ©ÔŒ§Ò‹¤Ò‰¥ÔŒ©Ü‘°â™³çœ´èž³é´êŸ³ìŸ¾ø«Àú®Ãü·Èÿ¾ÎÿÈÑÿÍÓÿÒÖÿÔÕþÔÙÿØÜÿÞßÿããÿêåÿñåÿôäÿöáÿøàÿúáÿúáÿûâÿýâþÿâþÿâþÿåÿÿåÿÿâÿÿÝÿÿÚþþ×þûÕüùÔýù×ÿþÖÿÿ×ÿÿ×ÿÿØþÿØþÿØþÿØþÿÙüÿØýÿ×þÿÖÿÿÓþÿÑþÿÍüÿÌüÿÎûÿÐÿÿÐÿÿËÿÿËÿÿÍÿÿÆöøÀéëµ×Ù§ÃÄ™¯­¢žˆ™‘}Ž„v†{t…{v‹„vŒ‰y’Ž‚œ™Š¨¦‘±°’´¶‘´¸’·¿’·À’¶Ä‘µÅ±ÄŽ­Â‹ª¿‰¨½…¦¹ƒ¤µƒ¤µ„¥¶ˆ¨·ˆ¨·ˆ¤²…¡¯}—¦x’¡u‹™q‡•q„’pƒ‘nlŽk~k€‘m„–o‰šržv“¥x—©yš«x™ªwš­x›®|œ±Ÿ´‚¡¶„£¸‡£¸¨¹‹§³‰£°… «œ§€˜¢}•Ÿ|•œy’—x”vŽ’uŠr‡Šq†‡q†‡q…„t‚‚p|myyfttdpp`nnaln`nodosbpseptcqtfqwdqwgrxgrxlw}lw}lw}kx~kx~ix}ixixgu~iz‚m~†m‰k}‡i{…i{…i}†j€‹i‹ij‚Žl„n†’p‡•r‰—r‰™p‡—n…•m„”k‚”g~axŠ]s\nz_pzcq|dreqbn|aj{_hw[cp\bn]aj[`f[^cZ^a[\^[[]_X`^R^ZNXXLVWKUWKUUHQSFOYJQXIPVGNVEMUDJUDJVEKUFKPAFNBFOCGOCGOCGNBFL@DK?C*,*,*,*,*,*,*,*,, ., ., .-!/-!/."0."0.".."..",.",.",.",.",/",/",2"-2"-3!-4".4".5#/5#/5#/8'18'17&07&07&07&06%/6%/7&07&07&07&07&07&07&07&07&07&07&07&09%.9%.9&,9&,;&-;&-<%+=&,>(+>(+@'+A(,C(/C(/C(-D).F).G*/G*.G*.I+-I+-I),I),I)*H()J()H()G',F',F',E&+E&+D%*D%*C$)B#(B#(B#(A"'A"'@!&@!&?"&?"&=#&=#&<"%<"%;!$;!$: #: #: #: #: #: #: #: #: !=!===< < : : ;! : 741011////////0011223344444444444444449 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 :!9 9 9 8777777777779 9 9 9 9 9 9 9!=!>">"?#?#@$@%@%C(D)F+H-J/K0K0M1L-N.O/Q1S3T4U5V7T5T4S3S3R1Q0P/P/O0O0N2P4Q5R7R8S:P9Q:R<U?XE^K!cP&fS(iW)lZ*p^.tb0ye2{g2{h0{h.k0k0k/„n2ˆr6Œv:w;x<‹q6‡m2ƒi.€f+g+g+f-~e,i0€j1€k4l5‚m6‚m6n6€m5n8n:~l:}k9zj9xg9ud8sa9pa:o_;l^;j[:hYbQ?cR@eT@kYAudFqP‰|P—Y¥¥[¬®c­±d¬µf¯¼l¯Áo­Àn­Ät°Èz´Ì‚³Í„±Êˆ­Æ…«Ã…«Ã…¢º| ¹xž¶xž·vŸ·yŸ¹xŸ¹zŸ¹xž¸yž»y¡¾~£Â¦Ä„¨Ç„©Ç‡©É†¢Åƒ¤É„§Ì‰©Ñ‹ªÑŽ§ÐŠ¥ÎŠ¢Í†¢ÏŠ¦Õ®Ý—°â™±ãœ°äš±å¯çœ·ñ¤¸õ¨¾÷²ÃûºÈýÅÎÿÍÑÿÑÓÿÕÒüÔÕýØÙþÝÝÿäàÿëãÿðåÿöâÿøßÿùÜÿùÝÿúÝÿüßÿþßþÿßþÿßþÿáÿÿàÿÿÝþÿÙÿÿ×ÿÿÔþüÓýûÑþûÖÿÿÖÿÿ×ÿÿ×ÿÿØþÿØþÿØþÿØþÿÖûÿÕüÿÕþÿÓþÿÏþÿÍþÿÌýÿËüÿÏüÿÐÿÿÏÿÿÌÿÿÍÿÿÌÿÿÄôø¼åç²ÔÖ¥¿À•©¨š…”zŠv„wr„xv‹†v‹}—”„¡Ÿ‹«ªŽ°±²¶Œ±·‹°¹Œ°¼Ž²Â‘²Å¯Ä¬ÄŒ¨ÀЦ¾†¥¹ƒ¤µ‚£´‚£´„¤³„¤³ƒŸ­€œª{•¤užrˆ–n„’nm€Žk~Œi|‹i|h}k€“l†—p‹žt‘£w–¨x™ªt—ªu˜«wš®z±Ÿ´¡¶„¢º…¤¹Œ©¹‹§µ‡£±ƒŸ«€š§~™¤~–¢}•Ÿ˜Ÿ}–›{’˜w“v‹sˆ‹r‡Šr†…u…„sƒ€p~~k{zhvvdtscqraqqdrudsvesvdsvfsyfuzgtzfuzn{n}„p}…p†p~‡m~†l}…k|†k|†n€Šs…‘tˆ“r†‘oƒŽo‚mƒŽm…m…m…‘m…‘n†’o‡“p‡•qˆ–qˆ˜o†–lƒ“k‚’j“f}`w‰\q‚[mw]nv`nwaozamy_kw^gv^fsY_kX_iY^dX]aX\_W[\XZYYY[_U^[O[VJTTHRSGQRFPPCLM@IXIPWHOVEMTCKSBHSBHSBHTCIK?CK@DMAELAEMAEK@DK?CI>B*,*,*,*,*,*,*,*,, ., ., .-!/-!/."0."0."./#//#-/#-/#-/#-/#-0#-0#-2"-2"-3!-4".4".5#/5#/5#/6%/6%/7&07&07&07&08'18'17&07&07&07&07&07&07&07&07&07&07&07&09%.9%.9&,9&,;&-<'.=&,=&,>(+>(+A(,A(,C(/D)0D).E*/G*/H+0I*/I*/J,.J,.J*-J*-K)*J()J()G'(H(-F',F',E&+E&+D%*D%*D%*B#(B#(B#(A"'A"'@!&@!&?"&@#'=#&=#&<"%<"%;!$;!$;!$;!$;!$;!$;!$;!$;!$;!$;!"> "> > > =! =! =! =! <"!;! 8 76645 111111111122334 4 5 5 5 5 5 5 5 5 6!6!6!6!6!6!6!6!9 9 9 9 9 9 9 9 ;";";";";";";";"9 9 9 9 9 9 9 9 ;";";":!9 9 9 8777777779 9 9 9 9 9 9 9!>">">"?#?#@$@%A&D)D)E*F+H-J/L1N2M.N.O/Q1R2S3T4U5U5U5T4T4T3 T3"T3$T3$R3!R3!Q5 R6 R6 S8S9S:R;S<T>WAZGaN$gT)kX-lZ*o]+tb0yh4~j7€l7€m5l2‚n3m2‚l0‚m.…p1‹v7•}?›ƒE˜~A“y<Œr5‡m0…m1„l0‚j.€h,}g-~h.€k2‚m4„o6„o6‚o7‚o7~m7n8n:m;}m<{jrcdS?fT@hV@m\BvfE„qP‹}PŸ—X¦¤Zªª`ª­`©°b­¹g®½l©¼j©¾oªÁs©Áw¥¼vž´t˜®p•ªq•ªqŽ£h¦h’§l‘©k’ªn•­o™±u›µv˜²u˜µu›·zž»{¡½€¢À€£Áƒ¢ÂÀ€ŸÄ¤Èˆ¦ÍŠ§Î¥ÎŠ¢Ë‰ŸÊ…ŸÌ‰£ÒŒ«Ú–­ß˜®à›­á™®áœ®ã›¯ìŸ±ï¢·ó­¿÷¶ÅúÂÌþËÐÿÑÒÿÔÐúÒÓûÖ×üÛÛýâßÿêàÿðãþ÷áþùÛÿùÙÿùÛÿûÛÿûÜþýÜþÿÜþÿÜýÿÝþÿÛþÿÙþÿ×ÿÿÕÿþÒÿýÑÿüÑÿüÓÿþÕþÿÖþÿÖþÿ×ýÿ×ýÿ×ýÿ×ýÿÓúÿÓüÿÒýÿÑþÿÎÿÿÌÿÿÈýÿÉûÿÏûÿÒþÿÏþÿÌþÿÍÿÿÍþÿÄñö¹àå¯ÎÑŸ¹º£¢†–“އx…{uusƒxsŠ„w‘Žœš‡¥£Œ«­¯±Œ²µ‹²·†¬µ‰­¹Œ°À±Ä¯Ä«Ã‹¥Àˆ¢»…¤¸¢³ ¯~Ÿ®€ ¯}¬|˜¦x”¢vq‹˜n„’j€Žj}‹i|Šgzˆex‡ew‹dyŽf{g€”k†™pŸs’¦u–©r•©t—«v™¯x›±{ž´~¡·‚¢¹„£¸Š§¹ˆ¥³†¢°ƒŸ«©¨‚¨‚¦ˆ¡¨†Ÿ¤‚› }–šy‘•vŽtŒŽuŠ‹y‹‹x‹‰xˆ‡s†„p€€i{{gwwbttgvyewyhw|fx|ix}gy}jy€hy€p†o€ˆsŠrƒ‹rƒp‚Œn€Šm‹r„s‡’v‰—s‰–q‡”q‡”s‰—tŒ˜rŠ–p‹–qŒ—qŒ—q‹˜q‹˜pŠ™pŠ™pŠ™m‡–j„•iƒ”h•e~’azŽ`u†_q{apwapw`nw`mv^kt_iu_gr[blZai\ag\_d]^`\^]\^[\\\^T][O[VJTSGQREOPCMO?ILBI@CK@DJADJ?CH?BH=AF=@+,**+,**+,**+,**-., ,-.-!-. /."./!0.".1$.0$.1$.0$.1$.1$.1$.1$.2"-2"-3!-4".4".5#/5#/5#/5#/4$.6$06&07%17'19'38(27%16&07%16&07%16&07%16&07&06&07&07&07&.9%.9&,9&,;&-<'.=&,>'->(+A(,A(,B',D)0F(0F).G*/H+0I*0I*/J+0K-/J,.K+.J*-K)*J()J()G'*G(-G(-F'-F',E&,E&+D%+D%*B#)B#(B#)A"'A"(@!&@!'?"&@#'@#%?"$?"$>!#>!#= $= $>!%>!%>!%>!%>!%>!%>!%>!#=! =!=!=!=!=! =! =! <"!;! ;! : : : 9!9!222222222233444 5 5 5 75 75 75 :" 8# :" 8# :" 8# :" :"9 9 9 9 9 9 9 9 <#<#<#<#<#<#<#<#9 9!; 9!; 9!; 9!>#<$=";#$>$@$@$A%A&E*D)D)D)F+I.L1N2M.N-O/P0R2S3T4U5V6V6V6W7 W7"X7$X7$Y8'W6%V7#V7#T8"T8 T:T;S<ZC!YCYCZD\IaN$eT)hW+n\.q_/we3|j8€o;‚q;„q9ƒp6‚o4‚p2€n.~l*n,‰v4•‚>ŸŠG¡‰I›‚B“z:s6Šp5‰o6…l4‚i1{d.|g0j3n6„o8…p7„o8„o8€m5n6m8‚n9m;~l<|juc;tbn^=kZDH?DI@EI@CH?BH=AF;?E:>.++(+()&+(+(/,/",-*+(.+- *1!.0#-3#02%/2"-0#-2"-0#-2"-2"-2"-2"-2"-2"-2"-3#.3#.4$/4$/5%06&14'16&34'16&34'16&34'18(56)38(56)38(56)38(56)38(26)28(29)39*1;*2=)2=)2=(/>)0?(.A(.B)/D)0D).D).J+3J+3J+3J+3J+1K*1K+0K+0K+0K+0J*-J*-I)*I)*H()H(+I*0H+0G)1F).F(0E(-D&.D',B$,B%*B$,B%*B$,B%*B$,B%*C%'C%%B$$B$$A##A##@"$@"$@"$@"$@!&@!&@!&@!&@!&@"$9 9 :!;"<#<#?# ?# =!>"?#"?#">!#= "<!99!7"6!6!5 4335 6!6!6!7"8#8#8#9!9!;":"<#;#=$ <$ =$ ;#<#:";"9!:!:!8; =!>#>"=";:=!="=!="=!="=!="@%@%@#>#>!$?%@&A'B'@%?$B'I-O3Q5 R6!P1S3U5 T4Q1Q1S3V6W8X9[< \= \=!Z;X9V6_<(^;(Y:%U9!U<U>XAYC]G aI#cL#cM$aN$cR'gX-l]2m\1p]2sa3xf8}k;€p=„s=…v=ƒu8‚t5€s/}s,‚v.‰7•ŒA¢”I§“L¤‹Hš?“v:Œo7Šl8‡k;„lmZdUBeVCdWDgXEhYFeTBeTBgTCfUCfSDdQBbOAaN?hUFjUDjUBjV>nZAyfH‡tS€UŸ™[›˜Q™–QššT ¡]¦©f¨­k¨®n¥«oš¢iŽ—b„ŽZ€‰Z|ˆZ|…Xy„Y~‹_b‚’eƒ“fƒ“dƒ•e‡™iŠžk‡lˆ lŠ¥pªt®u±x³y‘µx²u•·z›½€ÁƒÁ„›Á„›Á„œÄ†žÇ‹ŸËŽ¤Ð“©×™­ÚŸ¬Ü «ÛŸ¨ÚŸ¨Ý¥¦ß¨«ä­µî·¿øÃÅþËÆþÍÆûÏÆúÓÉûØÎüßÒþåØÿíÛÿóßÿùÝÿýÖÿþÒÿþÒÿþÑÿýÐþüÏýýÐüýÎüüÓÿÿÒÿÿÒÿÿÒÿÿÐÿÿÐÿÿÐÿÿÐÿþÒÿÿÍÿùÌÿúÐÿÿÏÿÿÌþýÌþÿÑÿÿÅøûÊýÿÌÿÿÌÿÿÈÿÿÅýüÄÿýÇþÿÊüÿËüÿÏÿÿÏÿÿÍùÿÂíöµÜã­ÐÔ¡¾Â‘«¬€–”yŒˆw†u‚{vyw†y‹y‘‘™š…¡¤‰¨­Œ­¶¯»Œ°¾²Ä‹°Ãˆ¬ÂˆªÃ‰«ÄŠªÃˆ¦À…£»‚œ³„Ÿ´ƒž³š­z“©v£uŽ¢y¢o†˜m‚“i~gz‹dwˆdw†fw‰gxŠgxŒhyhzgyfz’i–n†žrŒ£tާtªw’­y—³|š¶€žºƒ ¾ƒ¢¾†©¿†©½‡§¼†¦»‡¦»‡¦»‰¥»Š¦»‹¦¹‰¤µˆ¢¯„Ÿª‚š¤~—ž{”™y’—}”œz‘™xŒ•vˆ’t…o€ˆjxƒes|gu~hvgx€izk~…m‚‡q†‹s‡Žr†s‡’t†’tˆ“u‰”vŠ•vŠ•vŠ•x‹™z›yœxŽ›vŒ™wš{‘ž}”¢y“¤x“¦x“¨z•ª{–«y”©t¤oŠŸr¢qŒ¡p‹ n‰žk†›hƒ˜d~•c|’\u‹^t‰_uŠ`uˆbtˆct†csƒer‚ht‚isio{hlwegsbenbbjbai\Yd]Wc\VbZT`XP]VNYUMXTLWXNYVLUTHRQFNODLNCKPCLODLJ@HIBIKAIKBGK@DK?CI=?H<>.)-(,'+&,'-(/*0 +.).)/*0 +1!,2"-2"-3#.2"-2"-2"-2"-2"-2"-2"-2"-2"-2"-3#.3#.4$/4$/4$/5%04&34&34&34&34&34&34&34&36(56(56(56(56(56(56(56)36)26)26)27*39*1;*2=)2=)2>)0?(0A(.B)/C(/D)0D).G*/J+3K*3K*3K*3K*1K*1K+0K+0K+0K+0K+.J*-J*+I)*I)*H(+I*0G)1G)1F(0E'/E'/D&.D&.D&.D&.D&.D&.D&.D&.D&.E&,F&'E&$E&$D%#C#$B"#A!"A!"A!$A!$A!&A!&A!&A!&A!&@"$:!:!:!;">">"?# ?# >"@" @""A##@"$?!#=!;9!7"7"6!5 5 446!6!6!7"7"8#8#9$;";";"<#<#=$ =$ =$ =$ =$ <#<#;";":!:!;#>#>#>#>#>#>#>#A$A%@$?#>"=!< < =!=!=!< ;::9977777778889 9 :!:!;"9#9#;#;$;$;$>$>$B'A&@%D)K/P4R6!U6!S3T4U5S3Q1Q1U6X9X9Z;\=^? ^? ]?\>[<_;%]:&Z:#W„u<‚w9‚w5x3€x/‚z1Š‚7”Ž@ž•F©—K§‘HŸ†C˜|=’s‡o?h<j;~l<n:ƒo:†p7‰p7‹q6‰q3‰q3†p6†p6…n8„m9‚l:‚l=|gaPbS>cTAcTAbUBcVCdWDfWDdS?eT@fSBfSBfSEdQCcODbOAhRDiTCiTAjV>nZAxeG†qR~U”[˜“S–R—‘S›–\Ÿšbž›dœf””bŒ^‚Vy{SvxQtyQswRqwQs~Vv‚Zy…]{‡_|‰^}Œae„•h„—i„šk„Ÿl†¢oˆ¦pˆ©rˆ«sˆ«s‡¦m¬q’³z˜¹€š»‚š½ƒšÀ‡ÃŠœÃŒžÇ¡Ì”§Òš©ÖŸª× ¨× ¦× §Ûª©ß®®ä²´íº»õÂÀúÈÂüÌÂûÎÄýÔÆüØËýàÏÿçÔÿî×ÿôÚÿøØÿýÓÿþÐÿÿÏÿÿÏÿÿÎþþÍýýÍýýÌüüÐÿÿÐÿÿÐÿÿÐÿÿÐÿÿÐÿÿÐÿÿÏÿþÒÿÿÍÿúËÿúÍÿýÈÿüÀöö½òöÀõùÂùþÅüÿÇþÿÆýÿÂüýÁûüÂýûÄþÿËÿÿÊþÿÊùÿÈöÿÂîû¸àê«ÐؤÅʘµ¹Š¤¥|’x‹‰xˆ…v…€x…~yˆƒxŒ‹y‘‘—›„ ¤Š§¯«¶Ž®½Ž¯Â°Ä‰­Ã…©Á„¨À…§Âƒ¥À‚¢»µ}—®˜®˜®z“©w¤s‰žrˆs‰žnƒ–k€“i|fyŠdwˆcv‡fw‰gxŠhyizŽhxfvdvŽfxj~—n„œrФtŒ¨v­x“°|—µ~›¹ž¾ ½…§À„¨¾†¨Á†¨Á‰©Â‰©ÂŠ¨ÂŠ¨ÀŒ¨¾Š¦»‰¤µ† ¯„œ¨—¡{”›x‘˜|”žy‘yŒšwŠ˜w‡”qŽky†es€gu€hviw€iz‚k~…mˆp…Šp‡s‡tˆ“tˆ“u‰”vŠ•w‹–xŒ—xŒ—yŒš{Žœ{‘ž{‘žyœyœ{‘ž}”¤{”ªy“ªz”«|–­~˜¯|–­x’©tŽ¥tŽ¥s¤rŒ£o‰ l†h‚™d~•b|“]w^x_w`ycxdvŠevŠeu…iv‡kt…jqhn|givdfsddpcco^\i][h\XfZVdXTbVS^VP\UO[WQ[VNYSKVPIQQGPPFOPFNPFNJCKKDLMCLMCKNAHMAEM>CL=@-(-(,','-(.)/*0 +0 +0 +0 +1!,1!,1!,1!,1!,2"-2"-2"-2"-2"-2"-2"-2"-2"-3#.3#.3#.4$/5%05%05%06&16&16&16&16&16&16&16&18(38(38(38(38(38(38(38(36)26)28(29)3:)1;*2=*0=*0?*1@)1B)/C*0D).E*/G*/G*/K,4L+4L+2L+2L+2L+2L,1L,1L,/K+.K+.J*-J*+I)*I)*I),H).G(.G(.G(.F'-F'-E&,E&,H)/H)/H)/H)/H)/H)/H)/H).H()H)'G(&F'%D$%C#$B"#A!"A!"A!"A!$A!$A!$A!$A!$@""=!="=">#?"@#@#@#@" B#!B"#C#$B"#A!"? =:"7"7"7"6!6!5 5 7"7"7"8#8#9$9$9$<#<#<#=$ =$ >%!>%!?&">%!>%!=$ =$ <#<#;";">">!>!= = >!>!?"?"?"?"?"?"?"?"?"B%B&A%@$?#>"=!=!>">"=!;:876977777777889 9 :!:!:!<$<$<$;#="<"<"<"C(B'C'G+M1R6V7"V8 V6V7U6S4Q2S4X9\=]>]>_A`B aC!aCaC`A"`<$^;%[=#Y@"[D"]I$cM$fQ&kT(nV*oW+nW+lW*jY+j]0m`3p_3r_4ub7xf8{k:~n:r;‚s8ƒx:…z8†}8‡6‰8‡<—‘CŸ–G®žP«˜K§Gž…B˜{?“v>t?ŒuA†p?„p=€o;n6‚o5†p6Šr6s6u7u7Št:‰s9ˆq;†o;…o=„n?}h=zd=v`;t]=q\=nYjU@iWAiWAhV@gU?dS?cR>bS>cT?cTAcTAaTAaTAbUBbUBbS>cT?eTBeTBdRDcQCcPBbOAfPBfQ@hQ?jT=nX@wbEƒlM‰uP•‡V’…PƒOŽ‚NƒRŒS‰S†SxsKsnHkgBeb?ebAfcBfeFefDgmIhsKmxPq|TtWw„Yz‰^}Žbc’d€–e™gœij€žj€žj|šd‚ jЍr°y“´–¹ƒ˜½‰œÁ™À‹›ÃŽžÉ”¢Í˜¤Ð¥Ñž¦ÒŸ¥Ó¢¨Ú©©ß®¯å´²ê¹¶ð¾ºô½øÈÀûÏÃýÕÅýÚÉþâÍþèÐÿïÓþôÔýõÓýùÑÿýÏÿÿÎþþÎþþÎþþÍýýÍýýÍýýÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÏÿÿÎÿÿÒÿÿËÿýÊÿþÊÿÿÃùû·ìð¯äì®ãëÁøÿÃúÿÄûÿÄûÿÃúÿÃúÿÄþÿÆÿÿÌÿÿÇûÿÁðÿ¹çô±Ýê§ÏÙœÁÊ–·¾Œ©­›œxŽyŒŠ{‹ˆz‰„{‡ƒ{ЇvЉw~–šƒŸ£‰¦®«¶Ž®½Ž¯ÂŒ¯Ãˆ«Á„¦¿£¼‚¢»Ÿ¸{™³z–®x¨z§y¦u‹¢q†›m‚—l–m‚•k}‘i{gxŠdu‡ct„ct„eu…fv†hwŠhwŠevŠbs‡^p†_q‡bvŽe{“m…Ÿo‡¡q‹¦tªy”±}˜µ~›¹ž»‚¤½„¦¿‡©Ä‰«Æ¬È­Æ«Å«Ã«ÃŽªÀŒ§ºˆ£´„ž«~™¢{”›y’™{“z’ž|{Žœ{‹˜t„‘m{ˆftiuhviw€iz‚k~…mˆp…Šr†vˆ’vˆ”vŠ•w‹–xŒ—y˜z›z›xŽ›{‘ž•¢€–£~”¢|’ }“¡}”¤|•«z”«{•¬~˜¯€š±€š±}—®y“ªw‘¨v§tŽ¥q‹¢m‡žh‚™d~•b|“a{’b|“d|”e~”h}’i{izŽiy‰lyŠnwˆmt„kqjlygivgftfesa`n`_m_]k][h[YfYWdXU`XU`WT_XR\VPZTNXSLTRKSRKSRKSNFQOHPQGPQGORELPDHPAFO@E-(-(-(.).)/*0 +0 +2"-2"-2"-1!,1!,1!,1!,1!,2"-2"-2"-2"-2"-2"-2"-2"-3#.3#.3#.4$/4$/5%05%06&16&16&16&16&16&16&16&16&18(38(38(38(38(38(38(38(36)26)28(29)3:)1;*2=*0>)0A*2A*0C*0D+1E*/F+0H+0H+0L+4L+4L+2L+2L+2L+2L,1L,1L,/L,/L,/K+.J*+J*+J*+I)*G(-G(.G(.G(.G(.F'-F'-F'-I*0I*0I*0I*0I*0I*0I*0I*/K+,J+)I*(H)'F&'E%&D$%C#$C#$C#$C#$C#$C#&C#$C#&C$"@#@#A"A"A"A"A"B# C$"C$"F$#D$%F$%B"#C!"?!;"8#8#8#7"7"7"7"8#8#8#9$9$:% :% <$ =$ >%!>%!>%!?&"?&"@'#@'#?&"?&">%!>%!=$ =$ <#>"A$@#>!= = >!@#A$@#@#@#@#@#@#@#@#C'C'B&A%@$?#>">">">"< ;97649777777777789 9 9 :!;";#;#;#="=#=#=#C(C(E)I-P4U:Y;!X:Z;X9U7S5T6W9\>`B dF$dF$cE#cE#bD cE!cE!cE#cA&cA(`B&^F$`J%bO%iT)kV)s[-u]-v^.t^-q]+m]*l`.oc1tc5vd6xf8zh8|l9o;r9‚s8‚w9…z8‰€;…=‘‰@–ŽC—K£œL±¥S± P®˜M¦ŽFŸƒB™|@”zA‘{B‰t?†r=p8€p5„p5ˆr6w7“z:‘y;‘y=Žx>Œv<‹t>‰r>‡q?‡qB€k@|f=xb=u^kVAiWAiWAiWAgU?eT@dS?cT?cT?bS@bS@`S@`S@`S@_R?_S=`T>aTAcTAcSCcQCbPBbOAdN@dO>fO=jQ=nV>t\B|bG€iI†sK…rHoG}kCxiBsc?n`=j];aT4\Q3WN1VL1UN2XQ5[U;ZY;^b?aiBfqIlwOp{Su€Xz†^|‹`}Œa}Ža~‘c}“b}•c|”bz•by”aw“b|šh„¢p‹©w­}“³‚—¸‰™½˜¼Œ›ÁžÅ–ŸÉ™ Êœ¡Ìž¤Ï¡¥Ó¤§Ø©©Ý­®â²°æµ°è·³í½¸óŽ÷ÎÂüÖÃüÛÇþáÊÿéÌÿîÎþòÎûôÍüöÎÿüÍÿþÎþþÌþýÍýýÌþýÍýýÌþýÏÿÿÎÿÿÏÿÿÎÿÿÏÿÿÎÿÿÏÿÿÎÿÿÏÿÿËÿÿÊÿÿËÿÿÂ÷ý²çï¦Ú夨å¹ïû»ñý¾ôÿÁ÷ÿÃùÿÄûÿÄýÿÇýÿÅùÿÀñÿµäôªØç¡ÍÚ™ÁË‘¶¿®µ…¢¦}–šxŽzŽŽ|‹ˆyˆ…z‰†vЉw‘~–š‚ž¢‰¤­ŒªµŒ¬»Œ­¾Ž¯Âˆ«¿ƒ¦¼¡º~ž·|š²w•¯u‘©t£u‹¢s‰ q†›m‚—j’h}i{fxŒfw‰du‡bsƒar‚br‚csƒdt„cr…cr…ap…]n‚ZjZl‚_q‰aui—i›m…¡q‹¦v­y”±}˜¶}›· ¼‚¤½†¨Ã‹­È¯Ë¯Ë®Ê­Ç“®É’®Æ«ÀŒ§ºˆ¢±œ§}•Ÿz’œ|” {“Ÿ|’Ÿ’ }›xˆ•p~‹hvƒjv‚jv‚jxky‚k|„m€‡pƒ‰r…Œw‰“w‰•xŠ–y˜zŽ™{š|}žyœ~”¡ƒ™¦…›¨ƒ™§€–¤~”¢}”¤{”ªy“ªy“ª|–­€š±›²™°|–­y“ªx’©v§s¤nˆŸiƒše–b|“d~•e–h—k˜l–m“l}‘l{Žp{qz‹ov†msƒlo~jlyjiwhgucerbdq`bo^`m^]k\\h[[g[YdYWbXVaXU`WT]UR[VQXVQXVQXSKVSKVUKTUKSTIQSFMSDIRCH-(-(.)/*/*0 +0 +0 +2"-2"-2"-2"-2"-1!,1!,1!,2"-2"-2"-2"-2"-2"-2"-2"-3#.4$/4$/5%05%06&16&16&16&16&16&16&16&16&16&16&18(38(38(38(38(38(38(38(36)26)08)09*1:)1;*2=*0>)0B+1B+1D+1E,0F+0I,1I,1I,1M,3M,3M,3M,3M-2M-2M-2M-2M-0L,/L,-L,-K+,J*+J+)J*+G(-G(-H).H).H).H).H).H).H).H).H).H).H).H).H).H*,L,-N,+M+*L*)J('I'&I'&H&%G%$G%$G%$G%$G%&G%$G%&G%#F% F%F%E$E$E$E$E$F$"G%#I&$H&%H$$F$#F""B#!;":#:#:#;$;$;$;$;$;$;$<%<%=& =& =& ?&!A%!B&"B&"C'#C'#C'#D($B&"B&"A%!A%!@$ @$ ?#?#B%A$?">!>!?"A$B%B%B%B%B%B%B%B%B%D(D(C'B&A%@$?#?#>">"< ;976497777777677789 9 9 89 ; #?%@$A&E(E)G+L1U7Z< [> Z=^@[=X:V8X:]?aCdF"kM)iK'fH$dF"bD bD cE!dF$jH,hI,fI)dL(eO(gT)mX+p\*yb0{d0f0{d.wb-sb,qd-re0zj7{i7}k9~m9o;€q:‚s:‚t7€u5…z8Œƒ>’ŠB—F•J£Q©¢R²¨Sµ¦Q³ Q¬–K¢ŠDœ€?—}@–~BŠu<‡t:‚r6q3†r3Œw6”}:™€>•}?”|@‘{Ay?v@ŒuA‰sA‰sDƒnA€jA{e@xa?ua@r]>mX9jU8lX?lX@jX@jX@iW?gU=eU>cSaR=aR?aR?_R?_R?^Q>^Q>\Q=]R>_T@`S@aTCbRBbPBbOAdN@cN=dM;gN:kP;nT=qU?qW>tZ?sY>oW;jR8bM2]G/WC*SA)O='N=)L=(L=*L?,QD1UJ8VP8Z]>^fAgoJnvQr|Wxƒ[}‰aŽc}Œa}Žb~c~‘c~‘c{‘bzax`z”e~™l… s‰¦xª~®‚“´‰•¹—»š¿“œÃ—œÅ™œÅ›ŸÈž¤Í£§Ò§¥Ô¨¨Ù¬©Ý¯ªß±©á²­æ¹³íÄ·ô˽ùÕ¿úÚÃþâÆÿêÉÿïÉÿñÈûòÇúõËýüÊýþËýþËþÿÌþÿËþÿÌþÿËþÿÍÿÿÌÿÿÍÿÿÌÿÿÍÿÿÌÿÿÍÿÿÌÿÿÌÿÿÉÿÿÉÿÿËÿÿÂøÿ±çó¥Úè¡Öä¦Ûë©Þî¯äò´é÷¹îü»ñý»ñýºðü¸ìú²ãô¨×çžÌÛ—ÃГ»ÇŒ²½Š¬µ…¤©}™z’”“”““~Žy‡‡w‡†vŠ‹w‘}•™‚¤ˆ£¬Š¨³Šª·‰ª»Œ­Àˆ¨½ƒ£ºŸ·~œ´|˜®w“«tŽ¥u‹¢t‰žq†›p‚˜m•k}‘hzŽgxŠct†cr…bq„`p€`p€an~an~bo^k|]m}\k~Xi{Wh|Xj~^p†`tŒdz’d|”h€šl†ŸrŒ§w’­{–³{™µ~¹‚¡½‡¦ÂŒ«Ç­Ë’¯Í‘®Ì®Ê•°Ë•±É”®Å‘¬Á‹¦·„ ®~˜¥z• }•¡|” ~”¡€“¡‘zŠ—r€lx†kwƒkwƒkxky‚m{„n‡pˆrƒ‹x‰“w‰“y‹—zŒ˜|Žš~œ~‘Ÿ’ {‘Ÿ—¥†œªˆž¬…œ¬˜¨~•¥}”¦x‘§v§v§y“ª}—®™°}—®{•¬z”«y“ªw‘¨s¤o‰ iƒše–c}”g€–i‚˜mƒšo…œp…šp‚–o€”n}q|Žr{Œpw‡nt„mpjm|ikzgixehwdgvbet`dp_an]_k[]i\\hZZfZZd[YdZYaYX`YV_XU^XU^VPZVPZWPXXNVWLTUJPTHLRFJ-(.)/*0 +1!,1!,0 +0 +2"-2"-2"-2"-2"-3#.3#.3#.2"-2"-2"-2"-2"-2"-2"-2"-4$/4$/4$/5%06&16&16&17'26&16&16&16&16&16&16&16&18(38(38(38(38(38(38(38(28)06)08)09*1:)1=*0>)0>).C,2C,2E,0G,1I,1J-2J-2K,2M,3M,3M,3M,3M-2M-2M-2M-0M-0M-.M-.L,-L,-K+,K,*J*+H*,I*/I*/I*/J+0J+0K,1K,1I*/I*/I*/I*/I*/I*/I*/J*-N,-N,+O++M+*N**M+*M))L*)K''J(&K''J(&K''J(&K(&K($J'!L'L'K& K& H%J$!H%!I&"I&$J'%J'%J&&I%%G##E#!=!;$;$;$<%<%=& =& <%<%<%=& =& >'!>'!?&!B&"C'#C'#D($D($E)%E)%E)%C'#C'#B&"B&"A%!A%!@$ @%B%A$A$@#@#A$A$B%C&C&C&C&C&C&C&C&E)E)D(C'B&A%@$@$>">"=!;:8769777777766677889 78;#?$A%B'E(F*I-O4X:]@"^A!]@aC^A[>[>_BcFfH"gI#mO)jL(fH$cE#aC!bD"dF$fH&oN/lM.kN,iR)kV+m[+s_-va,€i3ƒm4‡n5†m4€l1}j0zk0{l3‚q;‚q=ƒr<ƒr<ƒt=„u<„u:„v9‚w5‡}8ކ>•Eš’I¡™P¦ T¬¥U°¨Sµ©S¶¥S®›N¥E‚?—~>–~@‹w:ˆv8†t6†t4Šw5{:˜>œƒA—A—C“}C‘{AxBvBŠtBŠtCˆsF„oDiB|fAxdAua@p\;lW8nZAnZAlZBkYAiW?gU=cS`Q>^Q>^Q>^Q>^S?YQ]dBgnLmwRt~Yy…_‹eg~d~cdd~‘d}b|aya}–l€›p… uˆ£xŠ¥|©€¯†’²‰–¶—ºš¿–™¿–˜¾—™Âš É¡§Ð¨£Ð§£Ò¦£Ô§£Ö«¦Û¯©â·¯éÁ²îʹöÕºùܾüãÂÿëÆÿñÅÿñÅýôÃúôÇþûÇýýÊýþÈþþÊýþÉÿÿËþÿÉÿÿÌÿÿÊÿÿÌÿÿÊÿÿÌÿÿÊÿÿÌÿÿÊÿÿÉÿÿÆýÿÈÿÿÊÿÿÃùÿ³éõ§Üì£Øè•ÊÜ—ÌÞšÏß Õå¦Ûé¨Ýë¨Þê§Ûè«Üí¥ÖçžÍݘÆÕ”¿Ï’ºÆ³¾Œ®·‹©±ƒž¥€˜œ„™œ…™š€’’{‹‹y‰‰xŒz’~•›ƒœ£†¡ªˆ¤°ˆ¥³‡¦¸ˆ§»…¤¹€Ÿ´›±~š°|–­y‘©uޤuŠŸt†šp‚˜n€”m~’k|ŽgxŠfuˆapƒaqbo€`m}_l|^k{^jz]jzZgx[hyZgzWfyVezXi}_o†cu‹`tŒbxf{–j‚œq‰¥v«z“±|—´~œ¸€Ÿ»„£¿‰¨ÄªÈ¬Ê­Ë­Ë–±Î–±Ì—±Ê”®Åª½ˆ£´«~˜¥|—¢}•¡}“ €“¡‘zŠ—unzˆkwƒkwƒly‚ly‚n{„o}†rˆq‚‰wˆ’x‰“zŠ—{™}›‘’ €“¡~”¢ƒ™§ˆž¬ˆŸ¯…œ¬˜¨–¨|–§w’§u¦tŽ¥w‘¨{•¬}—®|–­z”«y“ªx’©v§s¤o‰ j„›f€—c}”g€–i‚˜o…œr‡œt†œr„˜p’n}p{ozŒox‰mt„kqil{gjyfixdjxbjw`hu_es]cq[am[_kZ^iX\gZ\hZ\hZ]f\\f[[cYYaYX`WT]YS]ZR]YRZYNVWLRUHOTHL-(.)0 +1!,2"-1!,0 +/*0 +1!,1!,2"-3#.4$/5%05%02"-2"-2"-2"-2"-2"-2"-2"-4$/5%05%05%06&16&17'27'27&07&07&07&07&07&07&07&09(29(29(29(29(29(29(28(28)08)09(.:)/<)/=*0>)0>).C,2F-1G,1H-2J-1K.2L-2L-2N.3N.3N.3N.3N.3N.3N.1N.1N.1M-.M-.L-+L-+K,*K,*K+,K+.K+.K+.L,/M-0M-0N.1N.1M-0M-0M-0M-0M-0M-0M-0M-0N*,O++Q*+O++R,+P-+S-,Q.,O)(M*&O)(M*&O)(M*&O)&O*$Q*#P*!P*!O(!N' M( M&!L'!L'!M'$M'$N(%M'&L&%H%#F$">"<#<#=$>%>%?&?&=$>%>%?&?&@' @' @' D)"D)"D)"E*#E*#F+$F+$F+$D)"D)"C(!C(!B' B' A&A&A$B$C%D&D&C%B$B$D&D&D&D&D&D&D&D&F*F*E)D(C'B&A%A%=!=!=!< ;::99777777756677888;;< =">!?#@$@%F*G+L.S5Z=_B `B _AcFaD_B`CeG!hJ$iK'iK'jL(gI'cE#`A"`A"cD%gH)jK,oN/mO-mQ*lU+oZ-r`.ye0}h/‰s9Žv:‘w:x:‹v7‡s4„u4…u7ˆx=ˆw?ˆw?ˆx=‡x=‡y<‡y<‡y:‡|:Œ‚=‘‰A–ŽF›“J ˜O¦ Vª¤V®¨T´ªS¶§T¯žP¤ŽEš>–};•}?z;‹y9Šx8‰w7Œy7‘|;—€=š‚B™C˜€D”~D’|ByCvB‹uCŠtC‹vI‡rG‚lCiB{gBwc@s_fU;bR9`P7]N7]N9^O<_P=^Q>^Q>_RA^SAWQ;XR).?(.F-1F-1G,1H.1K.2K.2L-2M.3N.3N.3N.3N.3N.3N.1N.1N./N./N./M.,M.,L-+L-+K,*K,*K+,L,-L,/M-.N.1O/0O/2P01O/2O/0O/2O/0O/2O/0O/2Q/0P)*P)*Q*+R+,S-,T.-U/.U/,Q+(Q+(Q+(Q,&Q,&Q,&Q,&R+$T,$S+#U*#R*"Q)!O(!O(!N'"N'"M("N(%N(%N(%L&#I&$G&!>#<#=$=$>%?&@' @' >%>%>%?&@' @' @' A(!D)"D)"E*#E*#F+$F+$G,%G,%D)"D)"D)"C(!C(!B' B' B%A#B$D&E'E'D&B$A#E'E'E'E'E'E'E'E'G+ F*E)D(C'B&A%A%=!=!=!< < < < ; 9777777755667788>">"=!=">!>"=!="F*G+M/T7[>`DaC`BdGbEaCdF iK'lN*kM+jL*fG(cD%`A$^?"`A%eF*jK/nO2nM,lN*mQ)nW+r^,ve/~k1ƒo2x:•|<˜=˜=”}9|7|7Œ}:Œ|>Œ|@‹{?‹{?Š|=‰{<‰{<‰{:Œ‚=†A”ŒD—Gš’Iž–M£S¨¢V¬§S°ªT³¨V¯Q¤ŽE™€=•|:”|<’}>{<{;Œz:Žz;};”>—?™E˜€D•E’|CyCŽwA‹uCŠtCxI‰tG„oDkB}jBye@t`;p\9r_Ar_Ao^Bl[?iX+1?,2A,1B-2D-3D.1F-1H-2K.2M04O05O13O/2O/2P05P05P03P03P03P03P03P01P01P1/P1/Q20Q2/R30R30R31P.-R0/U34W54W56U32R01P.-R01Q/.Q/0P.-P./O-,O-.O-,S,-U-.U--U--V..V..W/-W/-V.,V/*W0+W0)X1*X1*Y2+Y3*[0)[0'[/&Y.%X-$U-%T,$S,%Q*#Q*#O*$N)#K("J'!I&"H'"G,%E,%E,%D+$D+$C*#C*#C*#A(!A(!A(!A(!A(!A(!A(!A(!C(!D'!E("E("F)#F)#G*$G*$I,&H+%H+%G*$G*$F)#F)#F)#G)!H'H'G&G&F%F%F%G&G&G&G&G&G&G&E'B&C'D(E)D(C'@$?#?#?#>"=!< ;:9; 87655677888889 9 < > ?"A$C%E'F)F)L-O1T5X9\>_AbAcC]?^@`BcE!eG%fH&fG(fG(`A$]>![< ]>"bB)fF-gG0fG+nP.nP*nS(pZ+wc0p8Ž{@–‚Cš‚BŸ†C¥ŠE§ŒG¤ŒD¡‹BžŒBžE›ŒI•†EŽ>€?“…D˜ŠI—‰H”‡C•‹F–ŒE—G–ŽF–ŽF™‘I–N¢œP­ªY±¬Z²©Z° U§“Lž‡C—~<’z:{<|?~@’€B”€C–‚C˜ƒD™ƒGš‚F™€G–€G”~E“|F‘zDyGŽxG‰tEŠuHŠuJŠtK…rH€mE|iAye@yfFxeEtcEq`Bn]?iX]P?]R@[TAZUA\UB\UB^S?]P=^O<_L;eOAcL>aE9[?3V6+P0%L* H'F)#B)$@'">'!>'=) >,"?-#>.!<.!=0 =1!?6%D;*I@/ID0LO4PW8YbCdoOm|[u†byhzix‘i{”j–l~•kz‘gxbxdyŽe”k–m„™p†sˆžw‡ x† y…¡y©¬ƒ­†Œ¯‡Œ®‰²–¸“š¾˜“»––ÀššÆ¢žÌ¨ Ñ±£Ù¹©áÄ«çͰîÕ´óÞºúé¼þð½ÿó½ÿõ¾ÿöÁÿøÀüúÁýýÂüýÂþþÃýþÃÿÿÄþÿÃÿÿÄþÿÃÿÿÄþÿÃÿÿÄþÿÃÿÿÄþÿÃÿÿÁýýÁýþÁýþ¾ùý¹òû°éôªßí¥Úè™ÍÛ—ËÙ—ÈוÆÕ•ÆÕ™ÉלÌÚžÎÜÌÜ›ÊÜ™ÇטÆÖ™ÄÔ˜¿Î“¹Æ³¿¯º®¸‘¬µ©°Œ£«ˆœ£‚–”™€•š”™}”š€—Ÿƒ›¥ƒª«š«x“¦w¤t¡vŒ¡wŒ¡w‰u†šr”s€“n{Œhu†ep‚dobn~_k{_hw]fu^eu]dt[cpZboZ`lY_mX^l[cpXapV_nT`pWcs\izbo€ds†`q…as‰ewi}•oƒ›s‰¡xަxª|–±šµ„Ÿ¼‡¢¿ˆ£Á‰¤ÂŒ¦Ç©ÊŽ©Ç”¯Í–´Ð–´Î–´Ì”³Ç‰¨¼œ®|˜¤x“žu‹˜v‰—y‹—y‰–v‚q}‹nx„mu‚ow‚s{†qy„lv€qzƒyƒŒw„x†zˆ“x‰“w‡”w‰•{›~‘ ~“¤ƒ˜«‰Ÿ´Š£·‡ ¶‚²™°|˜®y“ªx’©w‘¨v§u¦v§v§w‘¨s¤rŒ£q‹¢o‰ m‡žk…œj„›jƒ™g|‘m“qƒ—s†—s„–o€’jyŒfuˆlw‰kvˆlt‡js„ip‚gn€fmdm~]iy[hx[hx[gw[gwZftZft\fr\fr]er]er]ep\do[amY_kZ^i[Yf[Xc]Wc_WbaW`^T\YNVTIQ.).)-(-(-(/*0 +1!,0 +0 +1!,1!,2"-2"-3#.3#.2"-2"-2"-3#.3#.4$/4$/4$/2"-3#.5%06&16&16&15%05%/:&1:&/;'0;'0<(1<(1=)2=)2:&/;'0;'0;'0<(1<(1=)2=)2:)/;*0=*0>+/A,1B-2C-0F-1G,1H.1L/3M04O13O13O/2O/2P05P05P03P03P03P01P01P01O0.P1/P1/P1.Q2/Q2/R30R30Q/.R0/U32W54W54U32R0/Q/.R0/R0/Q/.Q/.P.-P.-O-,P,,V./V./W-.V..W-.V.,W.,W0+X/+W0)X/)X2)Y1)Y3(Z2(Z2(]1(]1&\0'[/&Y.%X-$U-%T,$R,#P+#P+#M*$K("J'!J'!F( G,%E,%D+$D+$C*#C*#C*#B)"B)"B)"B)"B)"B)"B)"B)"D)"D'!E("E("F)#F)#G*$G*$G*$I,&H+%H+%H+%G*$G*$F)#G)!I(I(H'H'G&G&F%F%G&G&G&G&G&G&G&E'C%C'D(D(D(B&A%?#@$?#>"=!< ;:9!>!?"@#C%E'G*H+M.O1T5X9\>_AbAcB\>^@aB#cD%eF'eF)dE(cD'`A%^?#\<#^>%bB+fF/gG2fF-qS1pT,oW+s],zf1ƒs8‘}@˜ƒB¦K­’M³–P´˜O²˜N®—K«˜L«™O«šT¢“NœH›ŒGž‘K¡”N “MJ•‹D—F–ŽF•E•E˜Hœ•MŸ›Q¦¥Uª©W¯¨Z® U¦”L†B—~<”{;–~@”~B”€C”‚D–‚E—ƒF™ƒGš„H›‚IšH–€G”~E’{EyCŽxFwE‹wEŒwHŒwJ‹vK‡tI‚oE~kA{h@wdCwdCtdCqa@n^=jY;eV9cS9_Q7_P9^O:]N;[N=\O>]P?\Q?ZS@[TA\UB]UB^S?^Q>_P=`M3T6,P/(K*#F( D)"@)#?("<(<(<* <+!;- =/";/!<0 ;2!>7%B=*FA-GE.HH.JM0RV;[dEdrQl}[r†cu‹ex‘jy”k|•m{”jz‘gwŽdxdyŽe|‘h~“j–m„™p‡œu‡v†Ÿx…Ÿx…Ÿx†¢z†¤~…¥~†¦ˆª…ް‹’¶•»–—¿œÆ¤ŸÌ«¡Ò´¤Ù½©áÈ«æÐ±ïÚ¶õä»ûí¼þò¿þõ½ÿõÀÿ÷Âÿû¿ýüÀþýÁýýÀþýÂþþÁÿþÃÿÿÂÿÿÃÿÿÂÿÿÃÿÿÂÿÿÃÿÿÂÿÿÃÿÿÃÿÿÀüüÀüüÀüý½øü·ð÷®çð§Üê¡Öä—ËÙ–ÊØ–ÇÖ”ÅÔ–ÆÔ˜ÈÖ›Ë×ÍÛŸÎÞœËÝšÈØ™ÇךÃÕ–ÀД¹É´Â±½¯º‘­¸ª³Œ¤®‡ž¦˜ €”›”™~“˜|“™–ž‚š¤„œ¨›ª™¨{•¦z¥w¢wŒŸy‹Ÿx‰›u„—t’q|ŽmxŠjr…hq‚gpen}cjz`gw]dt^dr]cq\bn\`l[_kZ^jZ^j\bpYanW^nV_nYbs\hxal~cpapƒbs‡fvk}“p‚šs‡Ÿw‹¤y§}—°€œ´… »ˆ£À‰¤Á‹¦ÄŽ©Ç«ÉªÈ•°Í–´Ð–´Î•³Ë“²Ç‰¨¼}œ®{—£w’tŒ˜v‰—y‹—zˆ•uqz‰mu‚ks€ousy…rx„mu€ryƒxŠz„Žz‡{‡“zˆ“y‡”xˆ•z‹›}¡~“¦ƒ™®‡ ´‰¤¹† ·³~š°}™¯z”«x’©w‘¨u¦u¦u¦u¦v§rŒ£rŒ£pŠ¡o‰ m‡žk…œj„›jƒ™h}m€‘q„•s†—s„–o€’jyŒfuˆkx‰kvˆlt‡jr…hq‚gn€fmdm~]hz[hy[hy[hx[gw[gwZfvZft\et\fr^fs^fs\dq[cnZ`l[_k][h]Yg^Xd^Xb_Wb^T]YNVTIQ.).)-(-(-(/*0 +1!,0 +0 +1!,1!,2"-2"-3#.3#.2"-2"-2"-3#.3#.4$/4$/4$/3#.4$/5%06&17'27'26&15%/9%0:&/:&/:&/;'0;'0<(1<(1:&/:&/;'0;'0<(1<(1=)2=)2<)/=*.>+/?,0A,1B.0C-0F-1H.1I/2M04O13P03P03O/0O/0P03P03P03P03P01P01P01P1/O0.O0.P1.P1.Q2/Q2-R3.R3.R0.S1/U31W53W53U31S1/R0.S1/S1/R0.R0.Q/-Q/-P.,Q.,X01Y/1Z./X./Z.-X/-Y-*W.([0*Y1)[0)Z2(\2&[3']3'^4(^2'_1$]1&[/$Y/#X."V.$U-#S-"R-$Q,#N,#M+"K*!J) G)G,#G,#F+"F+"E*!E*!D) D) D) D) D) D) D) D) D) D) E( F( F( G)!G)!H*"H*"I+#J,$J,$J,$I+#H*"H*"H*"G)!J) J*I)I)H(H(G'G'G'G'G'G'G'G'G'E'D&C'D(D(C'B&A%@$@$@$?#>"=!< ;9%]=$\<#^>%bB+eE.fF/fG+sU3rV.rZ.v`/}j2†v:“@š…B¦ŽH¬‘J²–M³—M²–L¯•H¬–J«˜KªšO¢”KœŽE›DœHž’JœH™E˜ŽF˜ŽF–ŽF”ŒD“ŠE–Hœ•OŸ›Qž¡P¤¨T­ª[¬£V¦”L†B—~<•|<™A—‚C—ƒF˜„G˜„G™…H›…K›…KœƒJ›‚I—H•F“|FyCŽxFwEyGŽyJŽyJxKˆuJ„qF€mB}j@weAvd@scAqa?n^=jY;fW:dT:_Q7^O8]N9]N;[N=[N=\O?\P@[RA\SB]UB_TB_T@_R?_P=`M^bGepRn}\v‡exŽjuiw‘jz”mz“kyhwfyŽgzh{g|Žh‘k–o„˜s…›u†œv…žw† {‡£}‰¤ˆ¦‚‰§ƒ‹«†’±•·”–¹˜˜ÀžÇ¥¢Í¯¤Ò¶§ÙÀ«áʬåÒµïà·õè¼úï¿þõÀýõ¿þöÂÿúÂÿû¿ýü½ýý¿üý¾þþÁþÿ¿ÿÿÁþÿÀÿÿÂÿÿÀÿÿÂÿÿÀÿÿÂÿÿÀÿÿÂÿÿÂÿÿ¿ýüÀþý¿üý¼ùüµðö¬åî£ØæÒà–ÉÚ•ÈÙ–ÇÖ–ÅÕ˜ÆÕšÈלÊמÌÛ ÏßÌÞ›ÈÛ™ÇךÃÕ–ÀД¹É´Â±À‘±¾‘¯º«¶‹¦±‡Ÿ©™£–ž~’™}’—|“™–ž‚š¤„œ¨‚™©–¦~•§z‘£x x‹œyˆ›z‡˜vƒ”t€pyŠmv‡kr„ip€hofm}bhx^dr\bp^bn]am\`l\^k[]i[]iZ\h[amZ`lX^lV^kX_o[ds^jz`m~cpƒcr…fw‹j|o—t†œxŠ¢xŒ¤—¯‚œ³‡¡ºŠ¤½‹¥ÀŒ¥ÃŽ©Æ‘¬É­É•³Ï—µÑ–´Î”´Ë’²Çˆ©¼}œ®z–¢v‘œtŒ˜u‹˜y‹—zˆ•sox‡iq~io}nr~tx„tx„nt€rvv}‡{…z‡|ˆ”zˆ“x†“w‡”yŠš{ŽŸ”§ƒ™®‡ ¶ˆ¢¹† ·µ›³~š²z”«y“ªw‘¨u¦tŽ¥s¤s¤tŽ¥q‹¢q‹¢pŠ¡nˆŸl†k…œj„›jƒ™k}‘nrƒ“t…•t„”p€k{‹gw‡lyŠkx‰ju‡hs…fqƒfndlck~]h|\i|\i|[hy[fx[fx[fxZfv]fw]fu_fv^eu]dt[cp[ao[_k^^j][h]Ze^Xb_Wb\U]XNVSIQ.).)-(-(-(/*0 +1!,0 +0 +1!,1!,2"-2"-3#.3#.2"-2"-2"-3#.3#.4$/4$/4$/3#.4$/5%07'27'27'26&17&09%.9%.:&/:&/;'0;'0<(1<(1:&/:&/;'0;'0<(1<(1=)2=*0=*.>+/>+/?,0A-/C-0F-1G.1I/2L/3O13O13Q14P03O/0N./P03P03P03P03P01P01P1/P1/O0.O0-P1.P1.Q2-Q2-R3.R3.T20U31V42W53W53V42U31T20T20T20S1/S1/R0.R0.Q/-R/-Z02\/2\01[/0[/.Z.+Z/)Z/)\1*]2)]2)]3'^4&^4&_5'`4'_3&`2%^2%\0#Z0$W/#W/%U/$S/#Q/#P.$N.#M,#J,"I+!H,!H+#G,#F+"F+"E*!E*!D) D) E*!E*!E*!E*!E*!E*!E*!F)!F( G)!G)!G)!H*"I+#I+#I+#K-%J,$J,$I+#I+#H*"H*"H* K+ K+ J*J*I)I)H(H(G'G'G'G'G'G'G'G'D&D(C'C'C'B&A%A%@$@$?#>"=!< ;:!`A%cD(cD(aB&^?#\=![< [< \=!^?#aA(dD+fF-gH+qS/qU-rZ.vb0l4Šw<•Bœ‡D¢ŠD©D¯‘H±”H°“G­“F«”Fª—H¦–I “E›Ž@šŒA›CœF›E™Eœ’J›‘I—G”ŒD“ŠE–Hœ•OŸSœ¡O¤©U¯®\°©Y©™N‰B—€<–}:—€=–>—‚C˜„Eš†GœˆIžˆLŸ‰MŸ†Mž…Lš„K—H•~H’{EzEŽxF{I{IŽyJxIˆvH„qFnClBxf@weAtd@rb>p`>l\;hY:fW:_Q6_P9^O:]N;[N=\O>]P@]P@]QA^RB_TB`SB_R?`Q>`O=`M<^I8[E7X@4U:1P3-K.*G(%C'#>';):(9)9)7)7+7+90818183 96#=:'@?+FA-PH5VK7[U?caJjnUr{^v…fw‹hs‰etŒhwkwiwgwŒewŒe{gzŠf|Œh~Žj€‘m„•s„˜u†šw†œx‡Ÿ}ˆ¢Š£ƒŠ¥„‹¦…«‰”±’–¸—•¸—˜ÀžŸÆ§£Î°¥Ó·¨ÙëàÌ®äÔ¶ðä¸ôê½ùñ¿úô¿úôÀû÷ÂýùÃÿý¼üû¼þý½ýý½ÿþ¾þþ¾ÿÿ¿ÿÿ¾ÿÿ¿ÿÿ¾ÿÿ¿ÿÿ¾ÿÿ¿ÿÿ¾ÿÿ¿ÿÿ¿ÿÿ¿ÿÿÁþÿÀýÿ¼ùþ´ï÷©ãî Øå›Ðà˜ËÞ—ÊÛ™ÈÚ™ÈØšÈØœÊÙžÌÛŸÍÜ¡ÏßœËÝ™ÆÙ—ÄטÁÓ•¾Ð“¸Ê´Ä³Ã±À°½­¸‹§³†¡¬€š§—¡}”š~’™~•˜ …›¨…©ƒšª€—§~•§{¡x‹œv‡—x…–wƒ“t€s|ovˆmt„jqiohn~djx]cqZ^j[_k\^k\^k[]iZ\h[[g[[gY[g\`lX^jW]kV\jX^nZaq\ev]iydoer…fuŠj{o–s…›vˆ vŠ¢•ªš°†Ÿµˆ¢¹‰£¼‹¥ÀŒ§ÂªÇ‘¯Ë–´Î˜¶Ð”´Ë”´É’³Æˆ©¼}œ®y—¢u‘œu™u‹˜y‹—y‡”r~Œnu…hn|ekyjnzqurv‚osptsz„{ƒŽ{…|†’y…‘w…’u…”xˆ˜zž€•¨š°‡Ÿ·‡¡º„ ¸·}›µ|š´z–®y“ªw‘¨tŽ¥rŒ£q‹¢q‹¢q‹¢pŠ¡pŠ¡o‰ m‡žl†k…œj„›k„šlo€rƒ“t…•sƒ“p€l|Œiy‰mz‹lyŠkvˆhs…fqƒcn€ck~`k}]j}\i|\i|[h{\g{[fx[fx[fx^fy^gx`gy_fv^eu\cs\br\_n`_m_]j]Yg\Yd]U`ZS[VLURHP.).)-(-(-(/*0 +1!,0 +0 +1!,1!,2"-2"-3#.3#.2"-2"-2"-3#.3#.4$/4$/4$/4$/5%06&17'28(38(37'27&0:&/;&-;&-<'.<'.=(/=(/=(/<'.=(/=(/=(/>)0?*1?*1?*1?,0?,0A-/B.0D.1E/2H/2H/2K14N13P24P24Q12P01Q/0P./P01P01P01P01P01P01P1/P1/P1.Q2/Q2/Q2-R3.S4/S4/S4/V50W40X51X51X51X51W40W40V3/V3/U2.U2.T1-T1-S0,U/,\01]/1]/1]/1]//]0-]0+]0+_2,_3*`4)`4'a5(a6&a6&b7'`5%_4$_4$^3#\2$X1"X0$V0#U1#S2#Q1$N1#M/$K/#J."J."I-"I-"I-"H,!G+ G+ G+ F*H,!H,!H,!H,!H,!H,!H,!H,!G)G)G)H* I+!I+!I+!J,"K-#K-#K-#J,"J,"I+!I+!H* L,!M+!L* L* K)K)J(J(H&H&H&H&H&H&H&G'E'D(C'B&B&B&A%B&A%A%@$?#>"=!< ; =":!9 7778866789 ;";">#E)E(E(F)I)L-N/P1T4V6Z8];_=!_>a> `? Z;\=!_@$aB&aB%_@#]>![<W8Z;]>!`A$cD%fG(iJ+jL*oS.pT,rZ.wc1m8Œy>–‚CŸˆD«I±•L·™PºQºQ¹žO¹ P¸£R¯ OªN¨›L©œN©žO«ŸSªžR©S¢˜P –N›“K–ŽF“ŠE—ŽIž—S¡ŸUŸ§R¨°Z¶µb¹²a³£V¦“G‡>™9–9•:—‚?™†B›‰GžŒJ¡N£ŽO¢‰P¡ˆP‡N›…L™‚L—€J”J“~I|I|I{IxIˆvF…sE‚pBnC|jB{iCxiBvfBscAo_>k\=iZ=aS8`Q:_P;^O<\O>]P?^QA_RB_RB_RB_RAaQA`Q>_N<]L8]K7YD3WA3T<0Q6-L0,G+(E''B&#<%9':(9)9)7)5)5)8/ 6/6/60 63":7&>;*D=-P?/XB4]L)0>)0>)0?*1>)0>)0?*1?*1@+2@+2A,3A,3A.2A.2C/1D02F03G14J14L25N13O24Q35Q35Q12P01Q/0P./P01P01P01P01P01P01P1/P1/R30R30S4/S4/T50T50U61U61X51X51Y62Y62Y62Y62X51X51W40W40V3/V3/U2.U2.T1-V0-[/0]/1]/1^00^00_2/`3.`3-`4+a5*a5(b7'b7'c8'c8'c8'a6&`5%`5%^4$[4%Y2#X2%V2$U4%S3$P3%N2$M1%K1$J0#J0#K/$K/$J.#J.#I-"I-"H,!H,!I-"I-"I-"I-"I-"I-"I-"I-"G)H* H* I+!I+!J,"J,"J,"L.$K-#K-#K-#J,"I+!I+!K*!N,"N,"M+!M+!L* L* K)K)H&H&H&H&H&H&H&G'F(D(C'B&A%A%B&B&B&A%@$?#>"=!< ; =":!9 87789 778:!;"=$>%A&F*H+I,K.N/P1Q2Q2V6X8!\:!]; _="_=!`=!_=![9Z;[< ]>!^?"^? ]>]>X9\>aC!fH&iK'mO+pR.sU1sW0sZ1w_3{g5ƒo:z@–‚Cž‡C«I³•L»›R¿ŸTÁ¡T¿¤UÀ§U¿ªW¶§T³§U³§U´§X´©Yµª[µ©]´¨\© U¦œTŸ—O˜H–H™K¡šV¥£Y§¯Y®¹]»¾eýg¿³aµ¢S¨’F¡Š>›ƒ9›…:›‡@‹CŸŽH¢‘K¥’N§”R¥ŒS¤‹S¡‹R ŠQž‡Q†P›†Qš…P•N”€M’~L|J‹yIˆvF†tF…sE‚qF‚pH~oH{lEwgCrb@n_>k\?bT9bS<`Q<`Q>^Q@^Q@`SC`SCbRCbRCbQAaP@_N<\K9ZH4XF2S>-Q;-O7+K2+G.)B('A$&=#":#9%:&:(:(8(5'3'8,5+5+4,5/!74%=7)C7+[@5`B7cI)0>)0>)0?*1@+2@+2@+2@+2@+2A,3A,3B-4B-4C.5C.5C04D13E13G35I36J47L36N47O24P35Q33Q33R23R01Q/0P./P01P01P01P01P1/P1/P1/P1/T52T52U61U61V72V72W91W91Z71Z71Y60Y60Y60Y60Z71Z71X5/X5/W4.W4.V3-V3-U2,W1.Z./[-/]/1^00`22a41b50c60b6-b6+b6)c8(c8(d9(d9(d9(b7'a6&_5%^4$[4#Z3"X3#W3#V5&T4%R5'P4&M3$J3#J3#I2$L1&M1&L0%L0%K/$K/$J.#J.#I-"I-"I-"I-"I-"I-"I-"I-"H* J) J) K*!K*!L+"L+"M,#N-$N-$M,#M,#L+"L+"L+"K*!O-#O-!N, N, M+M+L*L*H&H&H&H&H&H&H&G'G)D(C'A%A%A%B&C'B&B&A%@$?#>"=!; >#;"9 8889 9 89 :!;"=$?&@' C(G+J-O0R3!T5#T5!T3 S3Z7![8"];"^_A`B[=aCiK%oQ+rU-vY1{^4b:~b;}d<f=l=‡s>Ž{A•B›„A¥ŠC­F¶–M¼œQ¿ŸR¿¢RÁ¦UÀ«Xº«X¸¬X¸¬X¸¬Z¶«[¶«[µª[µ©]°§\«¡Y£›Sœ”L˜Jœ“P¥žZ©§\«µ\²½_ÀÃhËÇnÎÂlÆ´`¸¡Q¬•E¦A¥A¤‘E¥“G¥•J§–N©–Q©–R§S§ŽV¥V¤ŽU¤W£ŒV¢X¡ŒWœˆUš†S˜„R•O~LŽ|J{KŒzL‰xMˆwL„uL€qJ{kGvfDpa@m^AdV;cT=bS>bS@`SB`SCaSFdTGdRDcQCcPAaN?]J9YG3VD0TB.O:)M7)J4'F/'B*&?'%=#$:" 9":$;%:&:&8&6%3%7)5(2(2*4,!60$;3(C2(hG>jD;eE:cI+1?*1>+1@+2@+2A,3A,3A,3A,1B-2B-2C.3C.3D/4D/4G14G14H25K26L37N38O58Q48P35Q35R46S34R25R01P-1M-0P03O13P03P01P1/P1/P1.P1.U63U61V72V80W91W91X:2Z92[82\71[60[60[60[60\71]82Z5/Z5/Z5/Y4.Y4.X3-X3-X1,Y-*Z.+\..]1.`3.a60d71d90b6+a7+c7*b8(d9)c9)e:)e:)b7'a7'`6&_5%\5$[4#Y4$X4$V5$U5&R5%Q4$O4#M3"L2!L2#N2&N2'M1&M1&L0%L0%K/$K/$J.#J.#J.#J.#J.#J.#J.#J.#H* H* I+!I+!J,"L+"M,#M,#N-$N-$N-$M,#M,#L+"L+"K+ N.#N.!O-!M- N, L,M+K+H&G'H&G'H&G'H&G'F*E)B&A%@$A%B&C'B&B&A%@$?#>"=!#;"`BaE_BeI!nQ'tY,y].}c2ƒg7‡l=ˆm@ˆmB‡o?ˆs>Šw=|?•€?™‚>£‹C¬Fµ˜L»žR¿¢TÁ¦WÄ«[į^³^À´^À´`¿³_½°aº¯`º¬a¸¬bµ©a¯¥^§Vž•Pš‘L–P§ Zª«]­·^³¾`ÁÆjÎÍqÖÌuÏÀkÀ®Z² L«šHª›H¨œJ¨œJ¨›L¨›M©™Lª˜N©’N©‘Q©‘Q©‘QªSªUªWªX¥ŒV¡ŠTŸˆT›…S—ƒP“‚N’€N‘O}OzOŠwM…tImEzhBscAo`?fW:eWcT?aTAbUDcVFeUFeSGeQFcPB`M>\I:WD3S@/Q>-L7&J4&H2%D-%@($=%#:""9!!8!7#;$:&:&8%5$4#6(5&3&1'3) 5,#90'A0(cE=c>6Z90S8-Q>0UI9[VB]_IekQgpUkuZmxZmw\nwZpy^r{`s}er{fqzepydo{ep|hrkrno~ko€no„qp‡usŠxw}~—„€‡Ž²–’»™Ä© Ìµ¤Ð¿¤ÔÈ¥ØÏ§ÜÖ²æä³êçµëëµëë´êì´êìºíðºñôºüû·ýý·ýý¸þü¸þü¹ÿý¹ÿýºÿþºÿþºÿþºÿÿºÿÿ»ÿÿ»ÿÿ»ÿÿ»þÿ¸øÿ´òÿ«éø¤ßñœÖì˜Ðé—Íé˜Ëê—Èè™Çè˜Åæ—Â╾ޓºÙ·Ô·Ñ†³Êƒ°Å«Á¬¿„­Áˆ®Ãˆ®Áˆ­Àˆ©¼‰¨º‰¦¸‡¢³ƒ®}—¨w‘¢v›y˜{—}‘šƒ—¢‡š¨†™§‚•¤~‘ yŠšt„”mzŠht„hoemzdjxagueiuaeq\`l[]j[]j[]iZ\hZZdOOYPNYPNYQPXQPXROVSPWRQYOR[OS^QU`SWbVZfW]iZ`n[cp\et]iybmhu†n~Žt…—z‹| ƒ˜«†¯Œ¡´Ž¥·¥º¨¼‘¬Á’®ÃŽ­Â“²Ç”´É³Ç’µÉ“¸Ë²Å…©¹†¤¯€›¦xœtŠ—w‰•w‡”wƒ‘u‹nvƒeky`dpceregtegtgiukmynr}ov€py‚rz…r|ˆsu…•x‰›|‘¦•¬€˜°™²|—²z•²x•³y—³|–±z”­v©rŒ¥nˆ¡k…žj‚œj‚šm…m…l„œl„œl„œl…›l…›n„™q‚’sƒ’vƒ“vƒ“u‚“s€‘p}Žm}m|l{Žix‹fuˆbq†_nƒ\k€[j^j€^j€^j€]i^i]h|_g|^f{ai~bjcj}cj}ch{afy_dw`ct\[iWWcRP]NKVMGQIDKE>FA:A- *, *- *-!+.!+/",/",0#-2"-2"-3!-3!-3!-3!-3!-3",3"*3"*3"*4#+4#+5$,5$.6%/7&07&08'18'19'39'3:(4:)3<+3=,2A.4@/5C04B/3@-1?,0C.3C/1E/2E/2F03F03G13I03L25N15N15O05O05O05O05O05P16Q16Q16Q14Q16Q14Q16Q16P16O26P16P24P22Q40Q4.Q4,U7/U7-X7.X7.Y8/Z92[:3\93\50\50\50\50[4/[4/[4/[4/_83^72[4/Y2-X1,X1,Y2-[2,[3+[3)^3,^6,a6-`8.c8/b:.f<0d<0e;/c<-d:,b;,c9+c9+`6&`6&_5%]6%\5$\5$[6$Y6#Z7$W6%V5$U4#R3!Q2 P1M0 N1#N0%N0%N0%N0%N0%N0%N0%K-"K-"K-"J,!J,!I+ I+ G+J."J."J."J."J."K-"K-"K-"J,!K-"N.#P0%Q/%Q/%P.$O/$M-"K-"M-"K-"M-"K-"M-"K-"I)G)J*H*J*F(G'D&B&A'A'A'B(B(B(B(C)C)A'?%=#<": 9="=!<:;:; #>#=%>&@(B*D, H.!G*L+O.S2!T5!T5 S5R4T6W9W<W<U:T9U:W<T8 V:"Z<"Y>![> \B!dH#fM$iN#kS#tZ)zc-„k3ˆr8t;v=v>“xA–}D—C”>“~;–9—8¥C¨“D¯˜Jµ Q½¨Yî_ƳfÈ·gȽdù`¿³]»¯[º­_¹«b¸§b³¤a²£bªœ[¤™W¤›V ™Q™O¦£V°²_¯¹`µÀdÁÇmÌÌrÎÊsÉÂj¿¸`¸±Y³­U²®U°¯U²®U²¬T±©T³§Sµ¥P°›H²œIµœLµšM¶–M¹—P¾˜Wœ^»—[µ•\®‘Y¥ŒTˆQ—†P•…Q•„P˜‚Q”~OzKŒuI‡rE‚mBxe;r`8n^:hY8bT7aS8`TYE:TA3Q>/N;,H5&G4%D1#A-$>*#=(%<'&<'&7"6#7"6#6#4#3"2!3$3$1$2%3& 4)#7,&<-&K7.N6,N8-N<0QC6UL=YSC[XGfgUhkXkp\ns]puapu_ot`ns]px`py^rw`pu^ot^ks\iq\gp]kwcmzhnlpƒpqˆvw}€™†‚¢‹³›»¤—ݜ̼ ÒÇ£ØÒ¥ÝÚ§âà¨äâ®êè²ðí±ïî®ëì®ëî´ïó¹öù¼ýÿºþýºþý¹þû¹þù¸ýø¸þö¸þö´ùôºÿüÀÿÿÀÿÿ¾ÿÿ»üÿ¼ýÿÀÿÿ²ðý¨ãõŸÙížÖí›Ñí•Èç“Äå˜Æè™Åè˜Ã旿㓹ݎµÖŒ°Ð‹°Í‰±Ë~«Â{ª¾{¨½{¥»|¥¹~¤¹‚¥¹…¥ºˆ¤¹ˆ£¶ˆž³…š­‚”¨¢}ŒŸ{Œœvˆ–uˆ–v‰—{Žœ€“¡‚”¢‘ }œqŒp|Šnw†iq~ckx_eq[amY_k]dn]dn\cm[_hX\eTXaQU^PSZKNUMNSMNSMNSMNSMLQMLQLMRKOXKO[LP\MQ]PSbTWfX[jX^l\br`gwdp€jw‡m}Œrƒ“yŠš}¡‰›³‰µŽ ¸¥º’¨½“¬À“®Á“°ÂŽ­Á‘°Ä”´É–¹Ï–¸Ó‘´Ð°ÌЬņ¡²‚š¦z›vŠ•u‡“sƒp‹o}ˆeq}blv\doYal\cm^eobfqbfqgnvjqymt~nvnx„o{‰t‘v†–}Ž¢}¥|©}’­|”°}•±|•³}–´}”´|“³y¯uŒ«q‰¥n†¢m‚Ÿlœk™k™n‚šoƒ›p„œp…šr„šr„˜r‚’s€qqq‘p€p€o€l}k|Žj{izŽew‹btˆ_q‡]oƒct†cr…apƒ_n`m€_l}`m~`m~bmbmem€go‚hpƒem€`gz[aq[ZhVT_PMXKHQKFMHAHE;CA8=, *, *-!+-!+.",.",/",0#-2"-2"-3!-3!-3!-3!-3!-3",3"*3"(4#)4#)5$,5$,5$,6%-7&07&07&08'18&29'39'3:)3;*2<+1>-3@/5A14@03A.2A.2C/1D02E/1F02F02G13G21I11O05P05P05P05P05P05P05P05Q16Q16Q16Q16Q16Q16Q16Q16P17O27O26P35Q33R51R5/S5+W9/W9/Z:/[;0[:1];2]:4`;5^72_62_62_62_62_62^51^51b95`73^51\3/[2.[2.\3/\3-\4*]5)]5)^6*_7+`8,a9-a9-d<0d<0c;/c;/b:.b:.a9-a:+a7)a7'^7&^7&]6%]6%[6$[6$\9&[8%Z7$Y6#V5"U4!T3 R3!Q1$O1&O1&O1&O1&O1&O1&O1&L.#L.#K-"K-"J,!J,!I+ H, J."I/"I/"I/"J."J."K-"K-"J,!K-"O/$P0%Q/%Q/%P.$O/$M-"K-"K-"K-"K-"K-"K-"K-"G)H*H*I+ H*G)E'D&B&A'B(B(B(B(B(B(C)B(A'?%=#<": : >!= <;:;; #?$@%?'C)C,G- H,J*M,P/S2S4S4R4Q3R7T9U<U<R9Q8Q:S<T8 V:"Z?$\A$^C%bH%iP(nV*t\,w`,~h/…o3Œw8’}<•€?—‚A˜€B›D„D„B›„@‡>¡‹@¥Cª—H­›I² N¹§U¿®^ijcÈ·iɺiɾeź`¿³]¼°^¼¬a¹¨b´¢`±Ÿa®žb¦˜[¡–V¡˜S¢›S¡ŸTª©Y³·c³»e·ÁhÂÈpÈËrÊÈqÅÁj½¹bµ´Z¯²Y°µY´·\¸¼^¿¾dÄÀeÈÁiÍÂhÊ»\λ\Ϻ]ε[Ë«VÆ£RÅžQÄœTÅXÁ›\º˜[°“Y¦WŸŒT™ˆR—†R‡V›ƒS—O“}NyMˆsH~kAwe=sc?m_EC:?@7<, *-!+-!+-!+.",/#-0#-0#-2"-2"-3!-3!-3!-3!-3!-3",3"*4#+4#+4#+5$,6%-6%-6%-6%/7&07&08'18'19(29'39(2:)1;*0=,2?.4B/3C04C04C04D02D02E/1F02F02G13I11K12O05P05P05P05P05P05P05P05Q16Q16Q16Q16Q16Q16Q16Q16Q28Q28Q27R44S42T50T6.W6-[:1\<1];1];1^<2`;2a<4a<4`92a82a82a82a82a82a82a82d;5c:4a82_60^5/^5/^5/^6._7-_7+_7+_7+`8,`8,`8,`8,d<0d<0c;/c;/b:.b:.a9-a:+`9*`9(_8'_8'^7&^7&\7%\7%^;(]:'Z9&Z9&X7$X7$W6#U6$Q1$O1&O1&O1&O1&O1&O1&O1&M/$M/$L.#L.#K-"K-"J,!I-!K/#J0#K/#K/#K/#K/#L.#L.#M-"N.#O/$P0%R0&R0&Q/%O/$N.#L.#L.#L.#L.#L.#L.#L.#H*I+ I+ J,!I+ H*F(E'C'C'C'C'C'C'C'C'C'B&A%@$>"=!;;; ; :99:<= A%A%B&C)F*F,H,H,K+N-Q0S2S4R3Q3O1Q6S8S:R9P7O6O8R;T9X= ]B$aG&eK(kR*rZ.w_/h4‚l3‡q7Žy:•€?š†AžŠEŸ‹F¤J¥ŽK¥ŽJ¥ŽH¦Gª”H°N¶¤R¶¤P¹§S¾¬Xñ]Ƕd˺hͼjξiÍ¿gÉ»cĵbÀ°b½«a¸¥a°ž^«™[¨˜\¡“V›P–R¢žW©§\°±c¸»j¹Ák¼ÄnÂÈrÆÉrÆÆpÁ¿jº¸c´´\²¶_³¹_¹¾d¾ÃgÅÈoÎÍsÕÑzØÓwßÚvåÞvëßyìÚvæÎnÝÀdÕ³ZÒ¬YѪ[Ψ_È¥cÀ c¶œc®—a¨’`¥‘_¢Œ[¡‹ZŸ‰Z†Z™‚XzS„pM|iHxhGrcDm]Ci[Ag[Ag[CeYCeUEeSIdOJ_KDZF=T@5O<.K8)H5&G4%F3$B.#?+"<(!:% 9$#9$#5"3 1/./012#2#2%3& 4'!6)#7,&:-%E4,G5+F5+G9.J>2LD7QI-3B/3C04D15E26D02E13F02F02G13H24J22K12P16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16R18R38S36T45U64X72Y81Y9.\<1];1];1_:1`;2`;2`;3a:3`80`80a91a91a91b:2b:2b:2f>6e=5d<4c;3b:2a91a91`80a9/a9-a9-a9-`8,`8,`8,`8,d<0d<0c;/c;/b:.b:.a9-a:+a:+`9(`9(`9(_8'^9']8&]8&]:']:'Z9&Y8%Y8%X7$X7$V7%P3%P2'P2'P2'P2'P2'P2'P2'O1&N0%N0%M/$M/$L.#L.#L.#K/#J0#K/#K/#K/#K/#L.#L.#M-"N.#O/$Q1&R0&R0&Q/%Q/%N.#L.#L.#L.#L.#L.#L.#L.#I+ J,!J,!K-"J,!I+ G)F(E)E)D(D(D(C'C'C'A%A%@$?#>"< < ;::989:<=!B&C'F(G)I+ I,J-I,N-O.R1S2S4Q2P2N0P4R7R8P7N4N5O7R;V<aG"gN&kR)qY-x`0}f2‚l3…o3Šu6{8—ƒ>‰B¡F£H¬•Q­–R¯˜R±›R³Q¹¤U¿­[ų_ñ[Ƶ]ʹaνeÐÀiÒÂkÒÂkÒÂkÓÃlÍ¿gÈ·eòd½«c¶£_®š[§•W¢’VœŽQ–ŒN›“R£ Y®®d·ºm¼Áq½Åp¾ÆpÂÇsÃÅqÂÁn¾½j¸·d³µa´ºd³»eµ¾eºÀh¿ÃlÄÇpÉÉsËÌoàã|èì~õôˆýö‹ýï†÷á{ðÔqëÍmà¾dݺfÕ³iÌ®hĨi½¢k¶Ÿk³k¦^¥^¤Ž_¢`žˆ_”€[ˆuT€mOziMveKp`Gl^Dl]Fi]EiZEgXEgUKeQJ_KBYE:R?1L9+H5&F3$G4%E2$B.#>*!;' 9$8# 8#"5"2/-+-/12#2#2%3& 5("7*$6+%9,$C2*C2(B4)C7+D:.G?2KC6JG8LI:OP@YZJcfUko^pweszhu}huzctz`pu^lqZinXdlUbjU`iVep_ivdn|kq„quŒzz•‚ƒ Ž…§–‰´£½¯•ǼžÑÊ¢ÙÖ¥ßàªçè¬ìì·ùø¸ýú»ÿûºÿû¹þû¹ýü¼ÿÿ¿ÿÿ¼ýÿ¼ýÿºþÿ¸þü·ÿû´ÿø´ÿö´ÿöµþ÷³ù÷¶÷ù¹øÿ¼öÿµéþ¤Öí–Å߈»Ö‰¼×ÀÛ”Åã—Èè–Äæ¼ß¸Ûвք¬Ï¥É¥Ç†©Çˆ«Ç„¨Â£»}£º{¡¸yµu™¯t”«r‘¦rŽ£r‹Ÿp…šr„˜s‚•s€‘s~t|t{Žr{Œp}oŽrt‚v‚t€Œt~Šr|ˆmu‚lr~jnzfjuaco]_k[[gWYeSV_SV_RU^OR[NNVJJRGGOFEMGFLGDKGEJGEJFDIFDIHCGEDIHKTHLWKMYNP\RTaUWdXZiZ\kbdsdjxjqmy‡q~Žv†•|Žœ€“¢†˜®Š›µ º•¦À–ªÂ—«Ã–ªÂ”ªÁ”­Ã•®Ä“­Ä’¬ÃލÁˆ¤¼„ ¸‚œ³€—§|’ŸwŠ˜q„’n€Œm‹n~‹n~‹nz†iufpzcmwdlwemxelvdkucgpfjsjnylp{kqnvƒszŒw’{†š|ˆž~¤€©‚’¬’®’°~‘¯’²}’±z®x‹©t‡¥p„Ÿmœn™gy‘hxgwŽgxŒgxŒix‹jyŒjzŠkxˆky†ly‰ly‰ly‰k{Šk{‹k{‹gv‰fw‰gxŠgz‹fxŒew‹cu‰cv‡fw‰ev†bsƒ_p€^n~]m}]m}]m}_l}_l}al~dogr„fqƒdlahz]_l_]h[XcQNWGBI?8?>4<>5:-!+.",.",/#-/#-0$.1$.1$.3#.3#.4".4".4".4".4".4".4#-5$.5$.6%/6%/7&07&07&08'18'18'19(2:)3:)3:)3;*4:)1;*0>+1?,2A.2C04F16G27F03F03F02G13J14J14J22L23P16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16Q16S38T49V37X65Y75[82\:1];1];1_;/_;/`:/`:/`:/_90`80_7-`8.`8.a9/a9/b:0c;1c;1g?5g?5g?5f>4e=3d<2b:0b:0b:.b:.b:.b:.a9-a9-a9-a9-d<0d<0c;/c;/b:.b:.a9-a:+a:+`9(`9(`9(^9'^9']8&\9&[8%[8%X7$X7$W8$V7#V7#V7%R5%R5'R5'R5'R5'R5'R5'R5'P3%P3%P3%O2$O2$N1#N1#M0"L0"L0"L0"L0"M0"M0"M0"M0"N.!O/"Q/#R0$S1%S1%T0$Q/#O/"O/"O/"O/"O/"O/"O/"O/"L,M- M- N.!M- L,J*G)F*F*E( E)D'C'C&B&@#@$?">"= < <;:777:; >"?#E'F(J*L,M- M- M+L+N-O/R2S3S4Q2P1N/P4Q5Q7P6N4O5Q9U>[A`HgO#mU'rZ*xa/~g1ƒm3‡q5‰t3x5“8™…< A¥’F§”H¬˜O°œS´ W¸¥Y»¨YÀ®\ǵ_Ì»cνeпeÔÃiׯlÙÈpÙÈpØÇo×ÅoØÆpÑÁlÊ·hðd¼¨a³ \«—X¤’TžŽR™ŽP•N—’P¡¡[°²i¸¿r½ÄvÀÈuÀÈsÁÆtÁÅq¿Ánº¼i¶¸e³·c²ºe°ºd°ºd°ºd³»f·¼hº¾j»ÁgÒÞxÝê~ïù‰ýÿ’ÿÿÿùˆÿðÿè~ïÖqëÏnáÃmÔ·iÈ­f¿¦fº¡h¶Ÿiª•^¨”_§“a¤’b b˜…]ŒyX„qS|kQxfNtbJqaJq`Lo`Kn^GkZHjWIfRG`LAXE7Q>0L9+H5&G4%H5'F3%C/$?+";' 9$7"7"5"2/-+-/11"2#2%4'!6)#7*$6+%8+#?1(@2'A3(B6*C9-E=0H@3FC4JG8KLED?EE@FGBHHCIJDHHFKJJRILUOOYSS]WWcZZf]\j\^kbdqfjvkqoy…r~Œv†“|Žš’¢‰™°Œœµ¡»•¦À˜©Ãš«Åš«Å—«Ä—«Ä˜¬Å—«Ã”ªÁ¥¼‡´€–­|’§{¡ywŠ˜r…“n€Žmn~‹n~‹o{‡kwƒhr~fp|hp{hp{hnzimxehqhktkmykozlo~msrwŠu|z‚—{†œ‰¢‚ލ…¬ƒ‘¬‚­€®~‘¯|­yŒªx‰§t…£pn™m}–iy’ixhwŒfuˆfuˆiv‡jwˆkx‰ht„ht‚iuƒhvƒiv†jw‡jw‡iyˆfv†fw‡gxŠgxŠgxŠex‰dvŠcv‡fw‰ev†csƒaq_o^n~`m~`m~bmal~al~dohpƒhpƒem€bi{_an__i[YdROXHCJ@;A>7>>7>.",.",.",/#-0$.0$.1$.2%/4$/4$/5#/5#/5#/5#/5#/5#/5$.5$.5$.6%/7&07&07&08'1:)3:)3:)3;*4;*4<+5<+5<+3<+1<+1>+1?,2@-1B/3E05F16F03G14G13H24J14K25K33L23Q27R27R27R27R27R27R27R27Q16Q16Q16Q16Q16Q16Q16Q16V39V37X67Y76\95]:4^<3a=1a=1a=/b<1a;0a;0b:0a91a9/`8,a:+b:.c<-d<0e>/e=1f?0h@4hA2h@4hA2g?3e>/c;/b:.b:.b:.b:.b:.c;/c;/c;/c;/d<0d<0c;/c;/b:.b:.a9-a:+`9*`9(_8'^9']8&]8&[8%[8%Z7$X7$X7$X7$W8$W8$W8$W8&S6&S6(S6(S6(S6(S6(S6(S6(R5'R5'Q4&Q4&P3%P3%O2$O2$L0"L0"L0"L0"M0"M0"M0"M0"N.!O/"R0$S1%S1%S1%T0$T0$P."O/"O/"O/"O/"O/"O/"O/"M- N.!N.!O/"N.!M- K+J*H* G*"F)!E( D'C&C&B%?"?">!>!= <<<8 8 8 8 ; ="?#B$F(J*M+Q-!R."Q-Q+N*L,N.Q1S3S4R3Q2O0P4Q5Q7 Q7P6R8V>$ZC#`GfNoX&v_-|e1‚k5ˆr8w;“~=”<–‚=š†?Ÿ‹B¤‘E¨•Iª—K¬˜O¯Sµ¢V¸§Y½ª[°\É·aνeÔÃiÖÅkÚÉmÝÌpÞÍsÝÌrÛÊrÙÇqØÆrÑ¿mɳg¾«_¶¢[®™V¦’S ŽPQ›S˜Q—“SŸ \¯²k¸Àu¼ÄwÀÇwÂÇuÁÆtÁÄs¾Ápº½l¶¹j²·g®·f¬¸f«·e¬¸f®ºh³¼k¶¿n·ÃmÅÙvÐå|âôˆñýúÿþÿŠÿû†ÿø…üì}öãzíÖvÜÇnϸh¬c»¤`µ _² b°b¬›c«šd§•cŸ_”‚Z{W…rR‚nS}iP{gOxfPvdNr`Jo]ImZKhUGbOAZG9S@2N;-K8)J7(J7)H4)D0'@,#<'"9$7"7"5"3 1/./010!1"3& 5("6)#7*$6+%6,#9@@9AA:AD=DF?FIBIMDIKFLIHPHKTNNXSS]WWc[[g^\i^]kcbpeiujp~ow„r~Šw…’|Œ™€’ Š›¯ŒœµŸ¹‘¢¼–¦À—¨Âš©Æš©ÆšªÄ™©Ã–¦¿‘¡¸Šœ°‚”¨{ŽŸv‰švŒšvŒšx‹™t‡•qƒ‘mm}Šn~‹nzˆkwƒishr~ks~ltkq}lp|hjvllvlnzlnzln}mpqt…sx‹y€“{ƒ˜€ˆŸƒ¦†«…¬„«€Ž«}Žª|©yЍv‡£s‚Ÿo™l|•l{’jyhwŒhuˆfs„erƒfsƒit†jv†dp~eqeqfr€gsƒgt„hu…hu…hu†gw‡hwŠgxŠgxŠfw‰evŠdu‡du…ct„csƒaq`p€`p€bo€cpdocn€bmdohpƒhpƒem€bi{`bo__k[YdRP[JGPE@GB;BA:A.",/#-/#-/#-0$.0$.2%/2%/4$/4$/5#/5#/5#/5#/5#/5#/5#/6$06$06$07&07&08'18'1<+3<+3<+3=,4=,4>-5>-5>-3@-3@-3?,2>+1@+0B-2E.4F/5G14G14I03J14K14L25L23O24Q27R27R27R27R27R27R27R27Q16Q16Q16Q16Q16Q16Q16Q16V37X46Y55[86_96a<4b=4d>3gA4gB2g?3g?3f>2g=1g<3d<2d=.d?-e@0fA/gB2hC1iD4jE3gB2gB0hC3hC1gB2e@.c>.a<,`:-`:-a;.b1d>1e?2c=0c=0b > > ==<9!8"9!9"=#>$A%D'J*L+Q-T.!U/"S.R+O*M*M-P0S3S4S4R3Q2P4R6 R8!R8!R8V<#[C'`I'eMlU!v_+h2‡q8Žx>•Cš…Fž‰HˆE‰DžŠCŸ‹B¢C¤‘E¦“G«™O¬œQ°žR²¢T·¦V¾®YÇ·`ξfÕÆkØÉnÝÌràÏuáÐxßÎvÜËsÚÈrÖÁpιj«_¶ W¯˜R¦‘NŸŒJ›‰KQŸ”V›–V—–UœŸZª°hµ¿v¹Äx¾ÅwÀÅuÁÆvÀÅu½Âr¹¾n³ºl°¹j­¶g«¶g©¶fª·g­ºj²¿o¶Ãt¸Çv½Ö{Ä߀ÒêˆßôéùŽïû‹öý‰ûþ‰þûˆþö‡ùî„îâ~âÕw×ÇpÌ»iŵgÀ°e»­f·¨c´¥d±¡eª™a¢^œŠ\“€V{VŠuV…pS‚mR~hPxbKr]Hq\KjWHcPA[H9UB3Q>/O<-N;,K8*I5*E1(A-$=(#:% 8#7"5"5"4!3 2!2!2!2!0!1"3&5( 7*"8+#5+"5+"9/%;1%>4(A7+E;/G=1IA4IC5KH9KLHC;F?8@A7@C9AE;CG=EI?GLAGJCJDCIFFNLKSQPXVT_YWb\Yd\Zgbbnegsko{nvs}‡wƒ}‹–€Ÿ‡˜¬ˆ˜¯‰™²Œœ¶ž¹“¢¿—¥Â™§Ä›©Ä—¥¿žµ†•ª€ z‡˜vƒ“sƒ’s†•tŠ˜yŒ›x‹št†”om}Œm}Šlx†iuƒisismu‚nvƒnt€nr~kmyoo{pp|mo{ln}kn}orƒpuˆx}‘{—€†ž…Œ¦‡Ž¨ˆ«†©‚©|Œ¦{‹¥x‡¤t„žr€›n|–kz‘lxŽiu‹gt‡ep‚bn~am}co}gphq€cl{dnzen}fo~gpfr€gsƒgt„iv‡jwˆkx‰iy‰hwŠgv‰et‡ds†dt„csƒdq‚cpcpdq‚fqƒfqƒiq„go‚em€fnho‚ho‚elch{`cr\^jXXbRP[NKTIFMGBHD?E.",/#-/#-0$.0$.1%/2%/2%/4$/4$/5#/5#/5#/5#/5#/5#/5#/6$06$07%17%18'18'18'1=,4=,4=,4>-5>-5?.4?.4?.4B/5A.4?,2>+1@+0A,1D-3E.4G14G14J14J14L25L25M34O24Q27R27R27R27R27R27R27R27Q16Q16Q16Q16Q16Q16Q16Q14X46X44Z75\95`;5a<4d>3e?2kF6kF6kD5jC4kA5j@4j@4h@4gB2gB0hC1iD2kF4lG5mH6nI7fA/gB0hC1hC1gB0e@.c>,a<*_9,`:-a;.b > > > > ==< :":#:#<">$A%D'G'K*O+S- V/ W0!W-T*P*L)L,O/S3T5 T5 S4 R3P4R6 S9"S9 T:!Y?$_H)dN)gOoY {e,†p7y?—EŸŠK¥Q£ŽM¡ŒIŸ‹FœˆA›‡@œˆ?‰@œŠ@ª™Q©›R«›P¬œO°¡P¹ªWƶaξgÖÆnÙÊoÞÍuáÐxâÑyàÎxÝËuÜÇtÓ¼lʳe¼¤Z°˜P§J ŒG›†E—…EžŽP¡–XŸšZ˜—TšX§®h³½t¸Ãw¼Ãu¿ÄtÁÆvÀÅu¾Âu¸¿q³¼m®¹j¬·iª·h©¶g¨¶i«¹l¯½p´Âu´Çx·Ð}¼ØƒÈâ‰ÒëÜòŽäúŽíÿ‘õÿ’ùÿ’üÿ“þÿ“ýü’öòŽëåƒàÚ|ÛÑxǽhĹg¿´d»°a¸¬b³¤_¬\¦–ZŒV™‡W”~UyT‰rRƒkO{cIv]Gr]HkYEdR>]J9WD3S@1Q>/Q>0M9.J6+F2)B.'=)":% 8#8#6#6#6#6#5$4#3"2!/ 1"3&6)!7*"8+#5+"5+!9/#;1%>4(B8,F<0I?3JB5JD6KH9KLFJ?EI?GB?FDCKIHPNMUTQZWT_YVaYVab`mffrjnyous{†x‚Œ}Š“œ†•¨…”«…”«‡•¯Š˜³º”¢¿™¤Àž©Å–¢¼Š–®Šžv‚’r~Œr~Šr€‹q„’tŠ˜zœzœv‡—p‚m}Œl|‹kw‡ht‚hq€jt€nvƒow„ouƒpt€mo{qq}qq}po}ln}ln}nq‚qt…y|{€”†œ…‹£‰¦‰©‡§„‹§~Фzˆ¢x† v‚œr~˜o{“lxŽkvŠgr†go‚cl}`ix`ixbjwdlyfn{ckxckxdk{dm|fo~gphq‚gsƒkvˆkx‰kx‰kx‰jwŠfuˆds†cr…br‚br‚cpcpcperƒgr„hs…jr…hpƒfnfnho‚gndk~bgz`cr[]jVVbQQ[QNWNKTKFMGBH0$.0$.1%/1%/2&02&04'14'15%05%06$06$06$06$06$06$06$26$27%38&29'3:(4;*4;*4<+3=,4>-3@/5@/5@03?/2?/2B/5C.5C.5C.5D-3D-3D-3D-3I04I04K14K14L25L25O24O24R38S38S38S38S38S38S38S38R27Q16P05P05Q16S38V6;X8;[79[77\97^;7b=5c>5e?4f@3fA1hC1lE4mF5oE7nD6kA3g@1kF4jG4jG4jG4jG4jG4jG4jG4gD1hE2hE2gD1fC0dA.b?,`=*c?1c?1c?1c?1d@2d@2d@2d@2c?1b>0b>0a=/`<._;-_;-^:*\8(\9&\9&\9&\9&\9&Z9&Z9&]<)\=)\=)Y=(X<'X<'X<'W;&V9)V9)V9)V9)V9)V9)V9)V9)V9)V9)U8(S6&R5%Q4$P3#O2"Q4$Q4$S3$S3$S3$S3$T3$T3$[7)[7)Z6(X4&X2%W1$V0#T0"S2#S2#R1"R1"Q0!Q0!P/ P/ V5&U4%T3$R1"P/ N-M,L*N.#M,#L+"J) H'F%E$D#E$E$D#D#C"B!A ?!>$>$>$?%C'G*M-P/ V2$X3#Z5%[4#[1!Y.U*Q(L*P1V6Y9"W8#U6!U6"U6"S7!S7!S9 W="\C%bI*fO-hR)mV"v`&ƒm3y?—EžˆL£ŽO§’S§’Q¢Jš…B”€;“:–‚;œˆAŸŒGšŒE›G ’I§™N¯¢T·ª[Á²_Ŷa̼eÑÁiÙÇqÞÌvÞÌvØÆrÓ¾k͸gƯaÀ©[µSª’J¡ŠDœˆCœ‡F›‰I ‘P¡–V ›YžZ [¡©`¬¶m·ÂvÀÇyÃÈxÃÊ|ÄË}ÂÉ{¼Åv¸Às³¾p¯ºn¬¸l©µi¦´i§µj©¹n¯¿t°Åz¸Î…´Ï‚¹ÒÁÚ†ÍçŒ×ò‘Þø“áûìÿ—íÿ”ïÿ’óÿ”úÿ™úÿ˜öø“ññìéŠèã‡ãÜÝÖ|×ÐvÏÅnøfº¯`¯¡Z¥•WŸŒTœ‡X•~U†nL}dF{cIvbJm[EbP:ZH4VC2S@1P=.N;-S?4M9.E1(@,%>*#=)"<'":% >+$>+$>+$?,%?.&<+#6%1 3%1#1$5(;.%@3*=3)<2(91$=5(A9,C;.E;/H>2KC6NH:LI:OM>TWFZaObnZkxdq€ku„otmq~jmzfkxflwfmziq~msr{‹~‘…‚˜‹…Ÿ’†¤˜‹«ž²¤¸¯œÊÇžÑÒ¦Øßªáè­çó°îû¶öÿ¸üÿµúÿµüÿµÿÿ¶ÿÿ¶ÿÿµÿÿ³ýÿ²üÿ²ùû¶üþ¹ýÿºúÿ¸ôÿ²ëü°äù¯áø¦Ôî›Ç䌵ӂ©È€§ÆƒªÉ‡®Í‰°Ñ‘´ÚŽ±ÙŠ¬Ò‡©Ï…§Ì¡Äx›»r“²hЦl‹§p«t”­x–®{™±|›°›±Šž¶‰›±…•¬¦yˆŸu—r}‘qyŒpwŠmr…lo€mo~qs‚vuƒwuƒtsprnr}np|lnzkkwggqecncal_\g`Zd^Va[T\[QZZPYZNXYOXTLWSMYSKXRJWPHSNFQNDOMCNF:DE9CD9AD9AE8AF9BG:AF=BHCIHELJGNMJQSNUVPZXR\WT]_]hccmhktlp{nw€q{„u‚Šx†‘Œ£„¨ˆ”®Œ˜²š¶’¹”º’›¸‰“¬|‡v~‘u~wyƒw…s†”xž{ŽŸuˆ—t…•u†–q‘iyˆlxˆiuƒhq€irnu…px…qw…qutv‚uutssr€oq€mo~lmknqt‡wyŽ€‚—†‹¡¦Œ©‰¦†Œ¦}‡ x„œs—q|’q|’p{lw‹ks†hq‚cjzZaqRZgQYfU[g\bn`fr_eq_eq_es_gtbjwdlygn~hq€lu†jv†jv†kw‡ju‡iv‡hu†gt…erƒerƒerƒerƒfqƒfqƒfqƒfqƒhpƒgo‚elcj}ah{_fy_dx_dw`cr]_lXXdTT^SPYPMVNIPKFM0$.0$.1%/1%/2&02&04'14'15%05%06$06$06$06$06$06$06$26$27%38&49'5:(4;*4<+5<+3=,4?.4@03@03@03?/2A.2C.5C.5C.5C.5D-3D-3D-3D-3I04I04K14K14L25L25O24O24S38S38S38S38S38S38S38S38R27R27Q16Q16R27T49V6;X8;Z87\97]:6^;5b=5d@4eA3fA1fA/hC1lE4mF5mF5nD6kA3g@1kF4jG4jG4jG4jG4jG4jG4jG4hE2hE2hE2hE2fC0dA.b?,a>+c?1c?1c?1c?1c?1c?1d@2d@2c?1b>0b>0a=/`<.`<._;-_;+]9)]:']:']:']:'[:'[:'Z;']>*\=)Z>)Y=(Y=(X<'X<'X<'V9'V9)V9)V9)V9)V9)V9)V9)V9)U8(T7'S6&R5%Q4$P3#O2"R5%R5%T4%T4%T4%T4%U4%U4%[7)Z6(Y5'X4&X2%W1$V0#U/"V2$S2#S2#S2#R1"Q0!Q0!Q0!V5&U4%T3$R1"P/ O.M,M,N.#M-"L+"J*I(G'F%E%F%E%E$D$C"C#B!@"A%A%B&C(F)K+P/ S/X3#Y4"[4#^4$]2"Z/X*S*N,Q2V7X8V8 T5 T5!U6!Q5S7T:X? \D"cK'iS,mX+xa+€j.‹v7”@š…Fž‰J¡ŒM¤N¤N ‹Jš…B•€=•<˜„?‰DŸŒG¡’MŸ•N¥™Q©S°¤X¸«\¾²`ôaË»fͽfÑ¿iÓÁkÓÁmϽi͸gʵd­^¾©Z¸¡U¯™N¨’I¡FŠEš‰DžLŸ•Pž™UœœVœŸX¡§_«µlµÀt¾ÅwÂÇwÃÊ|ÃÌ}ÂË|½Èy¹Äv·Ât²½q®ºnª´k¤°f¢¯g¢²i¥µl§¸q¯Ã|¯Å}²Ê€¸Ó†ÁÞŒÊè’Ïñ“Ôô“Þþ™âþ˜åÿ™ëÿšñÿœñÿ™ðü–ðø“úÿ›ùû˜öö”óóòðŒìéˆåà‚àÙÐÈsÀ´h­ž[ŸT“M‡qH‚jFƒlMzfKp^FeS;\J4WE1TA0Q>/O<.S?4M90E1*@,%>*#>*#<'";' >+$>+$?,%A.'A0(>-%7&2!5'3%2%4'9,#>1(?5+?7,?9+C=/GA3IA4KA5LB6NF9QI-5?.4@03A14A12@01A.2C.5D-5D-5D-5D-3D-3F-3F-3J/4J/4M04M04N15N15O24O24S38S38S38S38S38S38S38S38R27R27R27R27S38U5:W7/_>/_>/^=.^=,^:*^;(\;(\;(\;(\;(\;([<(]>*[?*[?*Z>)Y>)X=(X=(X=(W:(W:(W:(W:(W:(W:(W:(W:(U8&U8&T7%S6$R5#Q4"P3!P3!U6$U6$U6$U6$V5$V5$X4$X4$Z6&Z6&Z5%Y4$Y2#X1"W0!V1!W3#W3#W3#V2"V2"U1!U1!T0 X4$W3#V2"U1!S/Q-P,N-O/"N.!M-"K+J*H(G'G'G'F&F&F&E%E%D$D$F)F)G*J+L-P/S2!V3 Z5#\6#_6$_6$^3"[0X-U,Q/R3W8X8U7T6T5 U6!Q5U:Y@!]E!`I gP&q\-ye2ˆr6Žy8–@œ‡Fž‰HŸŠI¡ŒK¢J ‹Hž‰F›†C™„A™„Aœ‡D ‹H¢K¨›W§ŸWª X®¥Z²©\¹®^¾²`ÁµaɺeʺeʸdÉ·cÉ´aȳ`DzaƱ`¿ª[¼©Z¼§X¶£V°Qª–M£‘IžEŸ‘JŸ•N ™Sž›Tž W¤¨^­µj¶¾q½ÄtÂÇuÃÊzÄÍ|ÂÍ~¿Ì|»ÈyºÅw¶Áu±»r«²l¢¬ež¨c¨cšªc›ªe¢³m£·p¨¾v®Æ|³Íƒ¸×‰¿àÄæÏñšÔõšÛúâý äýŸèýžêþîÿ÷ÿ¡öÿ›öþ—öÿ–øÿ•÷þ”õú“õ÷’ðíŽÞ؀ƽp±§b¡’Y’‚OŠwL‡uO€mMudHiX>_M5YG3UB1R?0P=/R>3M90E1*@,%?+$>*#=)"<(!=*#>,"A/%D2(E4*A0&:)4#6(6(5)5)7+<0$A7+E=0GD5JG8QK=RL>SK>RJ=UK?VNA[UG[YJ_bQelZkxds‚mwŠt{Žx|z|‹xy‡vv„sv„uy‡x|Š}|ŒxŠ~z„~˜„ ”‡§œŒ­¤’¶¬”¼´˜ÆÄšËÏ¡ÓܧÛè«ãò±êû¶óÿ¹ûÿ¹ýÿ·ýÿµûÿ³úÿ²øÿ±÷ÿ°öÿ±õÿ¶ùÿµôý¶ðü¹îþ»êþ°ÚòÂÝŽ¯Î‡¤Æƒ Â~œ¾}œ»~ ¼¥¿„©Ã‡ªÆ†¤Ê‡£Ë…¡È€œÁy–¸r¯n‹©m‹§eƒŸh† oŠ¥u‘©{–±𵂏…·‹›´Š–¬‚ޤ{†št“rzpx‹pw‰ou…ornpnp}qp~sssq~qq{ps|or{mpyjmthhpcck`_g_\c\W^[V\ZSZ[QY[PX[PV\QW[QYYQ\XR^WQ]UO[SKVOGRLDOJBMF-3?.4A14A12A12@01B/1C.3D-5D-5D-5D-3D-3F-3F-3J/4J/4M04M04N15N15O24P24S38S38S38S38S38S38S38S38S38S38S38T49U5:V6;W75aA6cB3dC2eE0fF1iF0jG1lH2lG4kF3jE3iD2kH5iH5iH5iH5iH5iH5iH5iH5fE2fE2gF3gF3fE2eD1cB/bA0bA2bA2bA2a@1a@1a@1`?0`?0`?0`?0`?0`?0`?0_>/_>/_>-`<,`=*^=*^=*^=*^=*]>*]>*\@+\@+\@+[?*Z?*Y>)Y>)Y>)X;)X;)X;)X;)X;)X;)X;)X;)U8&U8&T7%T7%S6$R5#R5#R5#W8&W8&W8&W8&X7&X7&Z6&Z6&Z6&Z6&Z5%Z5%Z3$Y2#Y2#Y2#Z5%Y5%Y5%X4$X4$W3#W3#W3#W3#W3#V2"U1!T0 R.Q-Q-P/ O/ N.!M-L,J*I)I)I)I)H(H(H(H(H(H(N-N-O.Q0T0 V3 X5"Z5"]7$]7$`7%_6"^3 \1Y.W.T2U6X9X9U7T6V7"X:"V; ]B$cK'hQ(kT(r\+~j5ˆu:•€=š†? ŒE£H£J£J¤K¥‘L¡H ŒG ŒG ŒG¡H¤K§“N§–P¬¢[¬¤\¯§^³¬^¸¯`¼´c¸cĸb̽hʼd˹cȶ`È´^Dz_Ʊ^Ʊ`À®\¿®^À­^¾«\º§Z³¢T­›O©™N¦˜O¦R¦ V¥¡X¥¥[ª¬c±·m¸¿rÁÆvÁÉvÃÌyÃÏ}ÁÎ|¿Ì|»Èy¹Äv¹Áv´ºrª°j¢¨bž¥aš¤_˜£_—¤_•¤_›ªež²k£¹q¦½uªÄ{®Ì‚´Ó‡¼ÜÄå”Îî›ÔñÖòÚôàú¡çÿ¤æûœæú—èú”èû’êû‘íý’ïü’ñü“òø”èìŽÚÙ†Íɾ¶u«¢g™Y€S…uQ{jLn]AaP6ZH2UB1Q>/O;0R>5L8/E1*@,%?+$?+$>*#=)"=+!>,"B0&F4*G6,D3)=,"7&5'8*:.":.";/#>2&B8,F>1LI:PN?WTE\VH\TG\TG]SG^VI_YK`^OcfUip^n{gs…owvzy~‘}}Ž||ŠyzˆwzˆyzŠ}}‚~„y‚}’‰€šƒ¡—‡¦ž‰­£µª‘º²–ÂÁ˜ÈÌŸÏÙ¥Öä©Þî®çú´ñÿ¹øÿºüÿ·ûÿ³÷ÿ¯õÿ®òÿ­ñþ­ðÿ®ðÿµðÿ¶îÿ¸ëþ¸çû²Úó£Çá®Ëœº|•´|•´}˜¶¹ ¼‚¤¿ƒ§¿…§Ã€œÁƒœÄƒ›Á|–¹u¯n‰§m†¤mˆ£hƒžk†¡o‹£tªy”¯}˜µš·‚š¶ˆ˜±†“¦Šžv“rzox‰ovˆov†ouƒpt€proq}qq}qq{qozooyps|orympwilsffnabg^]c\Z_YTZXSYXQXYPUZOU[PV\QW\RZ[U_[Ua[UaYS_UOYQITMEPJBMG=FF-5?.4@/5A14B23B23A11B/1C.3D-5D-5D-5F-3F-3G,3G,3J/4J/4M04M04O05O05P24P24S38S38S38S38S38S38S38S38S38T49U5:V6;W76]?7^@5`C5cD2eF2eF1fG2gG0hH1kI0kH2jG1iF2iF3iH5iH7iH7iH7iH7iH7iH7iH7fE4gF5hG6hG6hG6gF5eD3dC2dC4dC4cB3cB3bA2a@1a@1`?0`?0`?0`?0`?0`?0a@1a@1a@/_>-_>+_>+_>+^?+^?+^?+^?+]A,]A,\A,[@+[@+Z?*Y@*Z?*Y=(Y=(Y=(Y=(Y=(Y=(Y=(Y=(V:%V:%V:%U9$U9$T8#T8#T8#X9%Y8%Y8%Y8%Y8%Y8%[8%[8%\7%\7%]6%\5$\5$[4#[4#[4#\7%\7%\7%[6$[6$Z5#Z5#Z5#X3!X3!W2 V1U0T/T/R.Q0Q0P/ O.N-M,M,L+M,M,M,M,M,M,M,N-T0 T0 W2"X3!Z5#[6$\7%]7$^8%^8#^8#]7"]4 [2Y0V0W5W8Y:X9V8 V8 Y;#\>&_D'gM,pY0v_3zd2‚m6Œy>–„B‰@¡ŽA¦“F©–I¨•I¨•I©–J«˜L¦’I¦’I¦’I¨”Kª–O­™R°œU¯žV­¥\®¨\²¬^·²a½¶eûfȾgËÀgÐÂiÐÂiÒÁiÑÀhѽfκdÍ·bʶ`Ç·bŶcÅ´bijaÁ°`¾­]¼«]¹©[µ¨Zµ©]³«`²¬`±¯d³³i¹»p½ÁtÃÈvÃËvÄÎxÂÎzÀÍ{¼Éw·ÄtµÀr¸¾t²µn©ªf£¤` £`¤`š£`—¢^‘žX”¤]š©dœ­gœ°kž³p£¸u§¾zªÃ²Í†½ÙÃß”Åá”Éæ–Óð Ûø¤ßý¥ßþ¡àþžßý›áý—ãþ—çþ–éþ—åõ’ãñ’áé“Üá‘ÔÖÃÄ€­¬l˜a‚X…uStcEfU9[I1UC/P=.M9.R>5L81E0+A,'@,%@,%@,%?+$=+!>,"B0&F4*H7-F5+@/%:)3%8*=1%@4(A5)A5)B8,DEF>F?>DA@FAAIJJVNP\WYf`bogivjnzjm|hn|iohn~gm}fm}fmhojqƒjs„gr„gr„iq„iq„iq„iq„jq„jq„joƒjoƒjoƒin‚ik€fh}cezadw]csY_mW[gUWdXXdWWaVU]TS[0$.0$.1%/1%/2&02&04'14'15%05%06$06$06$06$06$06$28&68%89&9:':;)9<*8=+7>-7>-7?.4A06B25B23B22A11C02C.3D-5D-5D-5F-3F-3G,3G,3J/4J/4M04M04O05O05P24P24S38S38S38S38S38S38S38S38S38T49V6;X8=Y9>Y9>Y9>Y9:[>:\?7]A6^B6aD6bE3dH3fH0gI1gI1hH/hH/hH1jG1jG3jG3jI8jI8jI8jI8jI8jI8jI8jI8fE4gF5hG6iH7iH7hG6gF5fE4gF7fE6fE6eD5dC4cB3bA2a@1`?0`?0`?0a@1a@1a@1bA2bA0a@/a@-a@-a@-`A-`A-`A-`A-^B-^B-]B-\A,\A,[@+ZA+ZA+Z>)Z>)Z>)Z>)Z>)Z>)Z>)Z>)W;&W;&W;&W;&W;&W;&W;&W;&[:'[:'[:'[:'[:'[:']:']:']8&]8&^7&^7&^7&^7&^7&^7&_:(^9'^9']8&]8&\7%\7%\7%X3!X3!W2 W2 V1U0U0T1T0 R1 Q0Q0P/O.O.O.P/P/Q0Q0R1 R1 R1 U1!W2"Z3$[4#]6%^7&_8'_9&^8%_9$^8#]7"\6!\3[2Y0V1Y7Y:Z;Y:W9!Z<$_A)cE+iN0qW4{d:ƒm<Šu>‘}@˜†DŸŽF¢@¦”@ª˜F¬šH«™G«™G­šK¯œM«˜K«˜K«˜K­šM¯œP²ŸS¶£W¶¦Y¯¨Z®«\µ°_»¶b¼fÇÁiÍÃjÎÅjÓÆjÕÈjØÇkÙÈlÙÅlÖÂiÓ¾eмeÏ¿h;i̽h˼g˺h˺hɺgÊ»jƹjĹjÁ¸i½·i»¸k¼ºo½½s¿ÂuÁÆtÁÉtÂÌv¿Ív¼Ëv¸Çt´Áq´½n´¸n­¯f¤£` Ÿ\ ¡_ £`ž£a™¢_“žY•¢\˜¥`˜§dš¦f™¨gš¨jšªkšªlŸ³t©¿~®Çƒ²Í†·ÕÀà•ÈêÓù¦Ôü¦×þ¥×þ£×üÙûšÜü™àûšÚô“Üñ”Ùì“Øæ‘×â“ÐÛÀȲ´uœ‘d’‚^oNm\@`N6XF2R?0N:/R>5L81E0+A,'A-&A-&A-&@,%>,">,"@.$D2(F5+F5+B1'>-#4&9+ ?3'D8,F:.F:.D:.C;.KI:QRB\ZKdaRgaSg_Rg]Qf^Qd\OdaRfiXir_n{gq„ntŒtwyyŽ{zŒ|z‹{yŠzy‰|y‹z‹y‚€•Œƒš’… ™„£›…¦Ÿ…ª¢‡¯¦Š³­“½»•ÁÄ™ÅΛËמÑâ¥Ùî¬åù±ëÿ³ðÿ°ïÿ®íÿ©êü§èü¥æü¤äý©àþ¬×ú²Õû®ÐóŸÀጩÇ}˜³x’©z“§}“¨ƒ™®ˆ¡·‹£»‰£¼ƒž¹}›·}˜¶|’·{‘¶y²v­r‰¨o‡£o‡¡pˆ¢pˆ¢pŠ£q‹¦r‹©sŒ«s‹­q‹®sŠª}Œ£}ˆœw‚”q|ŽpyŠnwˆov†px…qwƒsy…uy„sw€ps|mpynnvlovmrxmrxkpthmqdglbcg_^c\[`WUXVTWXSWXRTZQT[RU^SW[UY\Yb\Ze^[f]ZeZW`UR[RLVNHRKDLJCKHAHF?FG=EG=EG>CH?DF@BF@BH?BI@CK@FK@FKBGKBGQGORMSVSZZ[`_bgglpov|v}…‡•ƒ‰™…‹›„‹›ƒ‹˜‰•y…‘v‚Žr€‹t„‘zŠ™}€‘¡ƒ–§‡š«ˆ°†›®‚—ª“§“§¢x‰›v…˜x‡šv“v“vs|qxŠovˆqw‡rxˆrz‡qy„pxƒnvmu‚ks€kqjp~nt‚ouƒpv†qw‡twˆtwˆux‰ux‰puˆqv‰ruˆmpehy]`oY[hWYeOO[LLVHHPCDIA@F?>D@?E@?GFFPKKWRTa\^kcergivgjyhkzil}fl|ek{djzdk}gn€ip‚js„jr…hs…jr…jr…jr…jr…kr…kr…kp„lq…lq…lq…lnƒhjeg|bex_dw[aqX[jVZfYYeXXdWU`UT\0$.0$.1%/1%/2&02&04'14'15%05%06$06$06$06$06$06$28%89&::':;(;<*:=+9>,8>-7>-7?.4A06B25C34C33B22C11C.3D-5F,5F,5F-3F-3G,3G,3L/4L/4M04M04O05O05P24P24S38S38S38S38S38S38S38S38S38U5:W7Z:?Z:?Y9>Y9:\?;[@7\A6^D5aF5bG2cI2eI1fJ2fK0hJ0gI/gI/iI0iI2iI4jI8jI:jI:jI:jI:jI:jI:jI:gF7gF7iH9jI:jI:iH9hG8gF7iH9iH9hG8gF7eD5dC4cB3cB3_>/`?0`?0a@1bA2bA2cB3cB1bA0bA.bA.bA.aB.aB._C._C._C._C.^C.]B-\C-[B,[B,ZA+[?*[?*[?*[?*[?*[?*[?*[?*Y=(Y=(Y=(Y=(Z>)Z>)Z>)Z>)\;(\;(\;(\;(^;(^;(^;(^;(_:(_:(`9(`9(a:)a:)c9)a:)`;)`;)`;)_:(^9'^9'^9']8&X3!W2 W2 W2 V1V1V1U2T1R1R1R1Q0Q0Q0Q0S2T3 T3 U4!V5"V5"W6#Y6#Z3"]3#`6&a7'b9'b9'a8&a8&_9$^8#\6[5Y3X2W2U1[9Z;[< Z;Y;#]?'dF,iK/oU4v\7k<ŒwB•Fœ‰GŸŽF¡‘C§•?ª™?­œD®E­›E¬šD®œH°žJ¯K®œJ­šK­šK°P³ S¸¥X¸¨Z°«Z°¯\·µ`¿»dÅ¿gÉÄhÎÅhÏÆgÕÈhÖÉiÙÉjÚÊkÛÈlÙÆj×ÂgÕÁhÓÅlÑÆmÒÇnÒÇnÕÆqÕÆqÕÆqÕÆsÔÈvÑÆvËÂsÇÀrľrÀ¾qÀ¾s¾¿q¼Ám»Ån¼Éq¼Ês¹Ès¶År³Àp³¼m®²h§§_¡œZž™WŸ›[Ÿ ^Ÿ^˜Ÿ\š¥a˜¥`˜¥`™¤bš£dš b—a’š_Œ”[‘œb˜¨jž²s¢»y¨Å‚±ÐŒµÛ’½éž¾ï Åô¤Éö£ÊöŸÊõœÏö›Ô÷›ÔõšÕò˜Ñë’ÎäÒæ‘Òä’ÈÖ‡½Ä€ª¢s l‹{ZwfHhV>]K7VC4R>3Q=4L81E0+A,'A-&B.'B.%A-$?-#>,">,"A/%D3)F5+D3)A0&:,!;-"=1%B6*G;/I=1G=1DC?>DCCMHHTPP\YYe_ancerfhueiuhkzgjyciybhxdjzgm}ip‚js„jr…hs…jr…jr…jr…jr…kr…kr…mr†ns‡otˆotˆnp…km‚gi~dgzafy]csZ]lX\hZZfYYeWU`US^0$.0$.1%/1%/2&02&04'14'13&05%05%05%05%25%05%25%29&99&9:':;)9<*:=+9>,8>-7?.8B.7C06D15E24E33D22C11D-3D-3F,5F-3F-3F-3G,3G,3L/4L/4M04M04O05O05P16P24S36S36S36S36S36S36S38S38S38U5:X8=Z:?[;@[;@Z:?X::\?9\A6]C6^D5aF5cH5dI4dJ3gK5fJ2fJ2eI1gI1hJ2hJ2iJ5jI8jI8jI8jI8jI8jI8jI8jI8gF5hG6iH7jI8jI8jI8iH7hG6kJ9jI8kG7hG6hD4eD3fB2dC2a=-`?.b>.a@1d@2cB3eA3dC2cB1bC/cB/bC/bC/bC/`D/`D/`D/_C.^C.^C.]B-[B,\A,\A,[?*[?*]>*[?*]>*[?*]>*[?*\=)Z>)]>*[?*]>*[?*^?+^?*]=(]=&_<(_<&_<(_<(_<(_<(`;(`;(b<)b<)b<)b<)c=*c=*b<)a='`<&`<&_;%_:'^9&^9&W2W2W2W2W2V3V1U2U2S2U2R1T1R1T1R2W4!V6!X5!Y6"Z7#[8$[8$]8%]3#_4$b7'd9)d9)c:(b9'a8&^8#]7"\6!Y5W3V2U1T2Y:Z;[< [< [=#_A%gI-mP0qW2x`4ƒm;{B›‡H¡ŽI¡‘F¢‘Aª™A¯›B±D±F¯›E¬šD­›G¯K°žL¯œM¬›K«šJ­œL± P¶¥U¶ªXµ­Z¶±]¼¶`Á»cÇÀfÌÃhÏÄhÏÅfÕÈhÖÇh×Çh×ÇhÙÆhØÅgØÅgÕÄhÕÇnÕÊq×ÌsÛÍuÜÎvÜÎvÛÍuÚËvÛÏy×ÍxÒÇuÌÄsÆÁp¿pÀ½n¾½m¹½iºÀjºÄnºÆp¹Çr¶Ãq´¿pµ¼o«¬f¥¢]˜Xš•Uœ˜Yœœ\šœ]•›[žªh™¨e–¥d˜¤d˜¢e–žb’—]’Z„‰SˆYšb•¤k›¯t¢º|©Åˆ¬Ï±Þ™´æ¼ï¤Áô§Äõ¦Æõ¤Ê÷¤Íù¤Îö ÎôŸËí™Çç’Ìç–Ïè—ÃÜ‹¹Æ€±®y©œp”…^~nLp\AdP8\G4XB4Q=2L8/E1*B.'A-&B.'B.%A-$?-#<,<+!>-#B1'C5*E4*A3(>0%<0$;/#@4(F:.J>2I?3E?1MKBA;BDBMGGSNNZVVb\^jacpdfsegtgjyfixbhxagwciyfl|ip€js„ht„ht„ht„ht„jr…jr…jr…jr…mt‡nuˆov‰ou‹ns‰jo…fkch|ahz]dtY_oX[jXZgWYeVVbTT^6+35*23(02'/1&.2'/2&03'13'34&33%23%22$32$11#21#26%78%88%89'7<'8=(7>*6?+6@,7B-6D/6E05F16G35G14G14G14G14H/5H/3G.2G.2G,1G,1L/4L/4M05M05O06O06P17P16O11O11P22P22Q33Q33Q35R46R46S57T68V8:W8=Y:?Z;@[==\?7\@4^B6`D8bF8cH7eJ9fK8eJ7eJ7eJ5eJ5fJ5fJ5fJ5fJ5jK7kJ7kJ7kJ7kJ7kJ7kJ7kJ7iH5jI6kJ7lK8mL9nM:oN;oO:nK7oL6pL6oL6oJ7lI5kF4iF3gB0fC0gB0eA1fA1d@0e@0d@0aB0`C1dE3dG5eH6eH6dG5dG5bE3bE3bE3bE3`C1]B/\?-[?*_@,_@+`@+_@+`@+_@+`@+_@+]=(\=(^>)]>)_?*^?*`@+`@)\:];_;!`=!`<"_;!^: ]9b>&c?'d@*d@*d@*d@*c?)c=&c>$d?$d?$d?$b?#_;!]9[7[9 Z8Y6 X5X5W7 Z7#Z7#X5!W4 W2V3W2X5!\7$\9#c>+_<&_;%`<&c?)fB,eA)e?*e:*h:-i;.h=-g<,e:*b9'`7%`:']8%[6#W4 U2S0S0Q1U5Y9"^>%aB&bE'fI)jP+nU,u]-j6’~C¡N¨—Q«›P¬œO­œL±›E·ŸGº¢Lº¡M¶ M³žO´žR´¡U°Q­›O©™L¨˜J¨œJ®¢P´ªUº®Zº®XÀ±\Æ·bÉ»c˽dξfÑÂgÔÅjÓÄgÖÅiØÇkÙÉjØÈiÚÊkÞÎoâÑuâÒ{âÒ}ãÓ|ãÕ}ãÕ|ãÕ|âÔ{âÔ{ßÔzÝÓzÚÐwÓÌtÍÅpÅ¿kÀºf»¶d·´c¶µeµ¸i¸½m¸Ár¸Àsµ»q³¶o£¤b›šY”S‘P““W˜™_—›`’œ_•£f‘£e‘£g’¤h”£h’ eŽ™aŠ“\‚‰U‚†S…‰W‰‘^Œ™d j›¯z£À†¢Ë‰¦Ø‘³åžºì£ºî¤ºî£¼ñ£Áô§Æ÷¨Åô¦Æò¥Çð¢Èì¢Ã固ڑºÏЏ¹}²©rŸ“a‹|QzfClW8dN6`I7YC5R?1K9-G5+F2)D0'B+#=) <,;.=/"@2%B4'B6(D6)C7)?3'=3'=3)>4*A7-E;1H>4GA5LJ;ORAYZHcbPfeSebOb\L\YHfcThfYkm`psht|oyƒx~Š€‚Ž„‹€Š~Š~~Š~}Š€}Š€|Œ‚|…yŒ†|‘Š˜’ƒœ˜ƒ œ‡¤ Œ«¦®®—´¼›¸Æž½Ï¡ÁÖ¡ÅÝ Éå ÏíŸÔô Øù¢Þÿ¤àÿ¢Þÿ¦Ýÿ©Þÿ¨Ùÿ¨Îõ¥¹Ú“žºwƒlxkzn~t„‘y‰–z‹•y‰–w‡”v†•u„—v…šv…œv† s„ r…£s†¤s‡¢s‡¢r†¡q… pƒ¡o‚ p…¤t‰¨vŠ«w‹¬u‰¬r†©sƒ¤t€˜x€•x€•w~‘szqxŠtyŒw}{~|Ž}Ž|~‹y{ˆvuƒqq}kmyhoyhqxipxipximvgjsffncckb_h_\e]X_[T\[QZ\R[^S[]V^YVaYWd[Yd\[c[X_XV[XSWWQUSMOSJKRHIPFGNBFMAEL@DK?CL@DL@DL@DK?CK?CH=AG<@F=@E*6>*5A,5B-6E.6G06H17H17J15I04G14G14H/3H/3G.2G.2G,1G,1L/4L/4M05M05O06O06P17P16P22P20P20Q31R44R44R44S55S57T68U79W9;X9>Z;@[>\?7]A5^B6`D8bF8cG9eI;eI;eJ9eJ9eJ7eJ7eJ7eJ7eJ5fJ5iJ5jJ5jJ5jJ5jJ5jJ5jJ5jJ5jJ5jJ5kK6lL7mM8nN9oO:oO8qM7qM5rN6qM5pL6nJ4mH5kF3jE2jE2iD2iD2hC3hC3gB2fB2aB0`C1bE3cF4dG5dG5cF4cF4aD2aD2aD2aD2`C1^A/\?-[?*_?*_?*_?*_?*_?*_?*_?*_?*\<']=(]=(^>)^>)_?*_?*_?(`=!a> b?!b?!b?!b?!a>"`=!c?%c?%eA)eA)eA)eA)c?'c?%d?"eA!eA!e@#c@"a> ^;]:^'gA*hB+iA(g>(k=-l<.k=.j<-f;+c8(`7%^5#Z4!X3!V1S0Q.O.O.O.V5"Y9$]=&_@$`C%dH#iP'nV&j6Œv<›‡H¨•P¯ŸT±¡T²¢T´£QµŸI»¡J¾¤P¼£Q· PµžRµŸT¶ W²žW¯S«›N¨›LªN¯¤Rµ«Vº®X½­VòZÈ·_Ì»cνeпeÓÂhÖÅiÕÄhׯjÙÈlÙÉjÙÉjÚÊjÞÎoâÑuãÒzäÒ|äÒ|ãÓ{ãÓ{áÔxáÔxßÔxßÔxßÖyÞÕzÙÒwÓÌtÊÄlýg¾¸d¹´c·´g·µh·ºm¹½p·¾qµ¸q±´o£¢aš™Y’ŽQ‹PV’•\”™_š^’¢d¢f’¤h”¨m•©n’¤jœf‹•`ƒŠW…S‚„U…ˆY…^†’bŸn—°y›Á„¢ÏŒ®Û˜µä µç¢¶é¤¸í¥¼ñ©¾òª¾ð©Àï§Ãî§Ãì¦À堹ܘ¸Ó»Ä…¶´y¦Ÿi’†VoGr^=kS9dN7^I8WD5O=/K9-J6+H4)G0(B.#?/ =1!?3#A5%C7)E9+F:,G;-C9-B8,A7-A7-C9/F<2J@7JD8PNAQTCXYG^_McbNcbNb_L`]LecTfgYkm`qtkuzszz|…€~ˆ€ƒŠ‚‚Љ~‰~}‰|‰€|‰‚yŠ‚z‹…{‹€”’ƒ™–„š‡¡ž§¤‘ª®“®¹—²Ãœ·ÌŸ»Ó¿ÚžÃàÊëÏò™ÑôšÔùšÖû™ÓûžÓý£Ôÿ¡Ìù¿å˜¨Âˆ£s{Žmv‡my‡p|ˆs‹wƒv‚Žv‚Žt€Žt€Žt‘u€’v—u™t…Ÿs‡¢s‡¢tˆ£s‡¢r†¡q„¢pƒ¡o‚¢q„¤uˆ©x‹¬yŒ­wŠ«t‡¨u„£wƒ›z‚—{—w}“tzszw|z’{~‘|}~|~{zŠvu…rqmo|ipzir{kr|kr|kozikwhhrffpb_j_\g^Xb[S^\R]\R]^R\]U`YUcXVdYWd[Zb]Za\Z_[VZYSUWNOWOMVLKUIITEHRCFO@CN?BPAFPAFO@EMAEL@DJ?CH?BG>AE?AJFGOMNVTU[[[bbbjjjpprxu~ut|srzrrzqtysx|t{t…y†Ž{Œ”ƒ“ ‡š©Šœ°Œ ¸¤¿”¨ÃŽž¸‹›´…™±š°€š±}™¯{“«y¦y‹£w†›t•px‹nu‡ow„pz†p|ˆp{n{ŽlyŠjw‡hu…ftfr~eq}dnzdnzfm}gn~ipƒjq„kq‡ls†ns‡or…kl~dcuYVgQM\NEVMERODRRFPSGQQGONEJJDFJDFKFJGFNGGQJJTNNXRU^Y\e^bmaep`dp`dp_es`ft`huaivaiv`jveq}es~ftgu‚hvƒgt„fs„fs„jwŠkx‹lxŽlxŽkwiugsfrŠbm_k{^gv\fr]cqY_kVZeRVa5*04)/3(01&.1&.1&.2&02&04(43'33'32&22&41%31%32$35$46$47%58&6;&5<'6=)5=)4A,5B-6E.6G06H17H25J15J15G14G14F03F03G.2G.2G,1G,1J/4J/4M05M05O06O06P17P16Q33R42R42R42S55T66T66T66U77V88W9;Y;=Z<>\>@]?A^@>]@8^B6_C7`D8bF8cG9eJ9eJ9fK:fK:fK8fK8fK6fK6fK6gK6iJ5jJ5jJ5jJ5jJ5jJ5jJ5jJ5kK6kK6lL7mM8nN9oO:pP;pP9sO9sO7tP8tP8rN8qM7oK5nJ4lG4lG4lG5kF4kF4jE3jE5iE5`A-_C.aE0bF1cG2bF1aE0aE0_C.`D/`D/`D/_C.]A,[?*Z>)_?*_?*_?*_?*_?*_?*_?*_?*\<'\<'\<']=(]=(^>)^>)_?(b?#c@"dA#eB$eB$dA#c@$b?#d@&d@&fB*fB*fB*fB*d@(d@&fC'fC%fC%fC'eB&c@$a=#`<"a?&`>%^<#[9 Z7!Y6 Y6 Y6 [7![7!]7"^8#`:%b<'e?*f@)nE/lC-jA+kB,mE,mE,lB*j@(oB/nA.m?/j<,e:)a6%\2"Z0 V/T/S.Q-P-Q.P/P/Y8%[;&^>'aB&cF&iM(rV.y^/yC™ƒG¦“O±ŸW·¥Y¹¨Xº«X¼¬W»¥O¾¦NÀ§S¼¦S¹¢R¶ŸS´žS´žS´ W±ŸU®œP¬œN®žP±¥S¶ªV¼­XÀ¯WƲY̸_Ï»bѽdÓÀdÖÃgÙÆhÙÆhÛÈjÝÊlÜÉjÛÈiÜÊhàÍnãÐråÑzåÑ{åÑ{ãÒzãÒxâÓváÔvßÕvàÖwáØ{àÙ~ÞÙ}ÙÓ{ÏËrÆÂkÀ»gºµd·´e·¶f¶¹j·»n´»n²¶l¯²k£¢_™˜W‘NŠˆKŒŒPŽ’W‘—[Ž˜[Žœ^Ÿa’¤f—©m™«o–¨n‘žhŽ—b‡‹YƒT~}Q|}QySxTŒ^†šg±x—¿€¤Ì¬Ö–®Ûš°Þ³ä¢¸é§ºé¥¼é¦¿é§Âë©Â騿㣹ܜºÔ•Á̽À‡¯®x•gŠ|U{hHp[@jT?cN;\I:SA3N<.M:,L9+L6+H5'A1"@3#A4$D7'E9+G;-I=/J>0KA5I?3F<2C9/B:/E=2JA8MG;RPCSTDYXF^]Ka`LcbNebQdaPdbSfgYkm`rulv{txxvzuwˆ€‰~~ˆ~ˆ|‡z‡~z‡€v‡x‰ƒyމ~’—”š—…ž›‰£¢¦ª¨³¬º•°Ã–µÊ˜·Ó˜½Ú˜Ãå™Éí’Æë‘ÉîÇîÅí–ÇðšÇð“ºåŒªÐ‘ªw’jr…irƒnw†oy…q{‡s}‡nz†nz†my‡nzˆozŒp{r}“r~–v†Ÿu† v‡¡v‡¡v‡£t…¡s„ rƒŸpŸs„¢w‡¨{‹¬|Œ­{‹¬y‰«x‡¦z† z…›z‚™v~“s{s{Žx’|”{~‘|}~|}y{Švx‡tsƒoq~mq|ls}os~os~or{loxkkuiisb_j`]h_Yc\V`[S^[S^^T_]UbYUdVUcWUb[Yda^gb`e`[_]WY\ST\ST\RS[QRYMOUIKSDIPAFRCHQBGNBFMAEL@DJ?CH?BH?BGACKGHPNOVTUZZZ___egfjkmihnjiqkjrlmrmpuqvzt{v‡~‹“‚“Šš©Ž¡²‘£¹‘¥½“¨Ã–ªÅŽž¸Œœµ‡›³„³„žµ³—¯}“ªzŒ¤w†›q|’muˆkr„mu‚q{‡r~Šr}p}o|ly‰jw‡hvƒgsfr~dnzeo{fm}gn~ho‚ipƒjp†jq„mr†nq„jk}cbtXUfPL[OFWNFSNCQPFORHQPFNNEJKEILFHLJMIHPIISJMVNQZTW`Y\e]al`do^dp_eq_es`ft`hubjwckxblxfr€fthvƒiw„jw‡iv†iv‡hu†lyŒlyŒlxŽkwiugs‹frŠdp†doam}_hw]gs^drZ`lW[fRVa5*04)/3(02'/1&.1&.2&03'14(44(44(43'32&42&42&42$35$46$47%58&4;&5<(4=)4=)4B-6C.5F/5G06I36I36K26J15G14G14F03F03G.2G.2G,1G,1J/4J/4M05M05O06O06P17P16S55S53S53T64T66U77U77U77W99X::Y;=Z<>\>@^@B_AC_A?_B:_C7`D8aE9bF8dH:dI8eJ9fK:fK8fK8fK8fK6fK6fK6gK6iJ5jJ5jJ5jJ5jJ5jJ5jJ5jJ5lL7lL7mM8nN9oO:pP;qQ)^>)^>)^>)^>)^>)^>)^>)\<'\<'\<']=(]=(^>)^>)^>'b?#c@"dA#eB$eB$dA#c@$b?#eA'eA'fB*gC+gC+fB*eA)eA'gD(gD(gD(fC'fB(eA'd@&c?%dB)cA(`>%^<#\9#[8"Z7!Z7!\8"]9!_9$a;$d>)h?)jA+lB,qG1oE/qD/rE0uH1vI2tG0qD-rE.qD-nA,g<)c8%^3"Y/W-U.U.S.R-Q.R/S0R2Y9$\<%`@'eF)kN,vZ2‚g:‹q>œ†L£ŽM­›S¶¤Xº©Y½­X¾°XÁ±Y¿«RÀ«RÀªU¾¨Uº£S· R³Q²œQ¶ U²ŸS°Q¯œO°ŸO´£S¹¨V½«WİYɶZϺ_ѾbÓ¾cÔÁcØÃfÚÇhÛÇhÜÉjßËlÝËiÝÉhÝËiâÎmåÑräÏväÎxäÎxäÐwåÒvåÕvåÖyãÙzâØyáÛ{áÜ~ßÜÚÖ{ÐÏuÈÆoÃÁj¾¹gº·f¸·e¶¹h¶»k³ºl±µi­±g¢£]›šW’ŽNЉIŠŠLŒS•WŽ˜Yˆ—V‹›Z’¢c˜ªl­o™¨m“žf–aˆŠY€RyxLuvLruJovLs~SyŠ]„Ÿj¬s™º¡ÄŠ¤Ê¨Ð”®×›±Ý ·à¤¹ã¤½å©¿ç©¿åª½á¤¸Ù ·Ôš¼Ð•½È¶ºˆ§¤w”Šf‚sTuaHmXCcQ=]J9TC3N=-M:,L9*M7)I6'B2#A4$B5%C6&E7*G;-I=/K?1ND8LB6H>4B:/@8-B:/H?6LF:RPCSTDYXF_^LbaOdcOebQebQdbSefXkm`pvlu|tt~vq|vmxpz„{z„y{…|{‡}{†~z‡~w†v‡u…‚wІ{}“•“€™–„œœ‡ ¤‡¤¬Š¨³Ž«½¯Ä‘±Ê’µÓ”¼ß–ÂåÁæŒÀ牽䋻㑽䓺ቪÓ~˜»tƒšlu†cj|dm|jt€kumwpz„jv‚jv‚jv„kw‡mxŠozŽq|’r~–v†Ÿv‡¡v‡¡v‡¡u†¢t…¡rƒŸq‚žpŸs„¢w‡¨{‹¬}®}®{‹­z‰¨z† yƒœv€™t|“s{’t|‘w}“z”y~’{~‘|}‘{|Žy{Švx‡vu…rtptqu€rvrvqt}nqzmmwljub`kb_ja[e^Xb^Va]U`]U`]WcZXfVUeWUc\Zeebkhfke`d_[\^XZaXYbXYaWX_SUZNPWHMTEJSDIRCHNBFL@DJ?CI>BH?BF@BFBCKGHPNOUSTWWW[[[_a`cdfcbhdejhinilqlqupx{u~ƒy„Šƒ™‡˜¢Ÿ®“¦·•§½”¨Á”©Æ–ªÅ ºŽž·Šž¶ˆ¡·ˆ¢¹†¢¸ƒ›³—®|ަw†›p{‘jr…hoks€pz†s‹s~rq~o|Œlz‡iw‚ht€fr~eo{eo{gn~hohoho‚hn„gnmpƒlo€hi{a`pXUfQM\PHWPHUODRQGRRHQOHOMFMLGKNIMOMPMLTMMWNQZRU^VYb[^g]al_cnagsagsagubhvbjwdlyfn{fp|gsgu‚iw„ky†ly‰ly‰kx‰kx‰lyŒlyŒkwiu‹htŒfrŠdpˆco…cn€`l|^gv]er\bpY_kUYdPT_6+15*04)/3(.2'/2'/3(04)15)34(24(44(43'32&22&43%45$47%57%38&4<'6=)5=)4>*5B-6C.5F/5H17I36I36K25K25G14G14F03F03E/2E/2F-1F-1J/4J/4M05M05N16N16O27O26R57R65S76S76T87T87U98U98W;:X<;Y=<[?>\@?^BA_CB`D@`D9`D6aE7bF8cG9dH:dI8eJ9gL9gL9gL9gL7gL7gL7gL7hL7jK6kK4kK4kK4kK4kK4kK4kK4mM6mM6nN7oO8pP9qQ:rR;rR;vT;vT9wU*_?*_?(_?(_?(_?(_?(_?(_?(\<%\<%]=&]=&^>'^>'_?(_?&a>"b?!c@"dA#dA#c@"b?#a>"eA'eA'fB*gC+gC+fB*eA)eA)gC)gC)fB(eA'eA)eA)eA)eA)fB*d@(b>&`<$_;#_;#_;#_;#_9"a<"c=&e@&jA+lD+nD,qD-tG0sF/uG0xJ3|L6}M7{K5wI1rF-nE)j@'e;#`5"[2 W-V,R+R+Q,Q,R.R/T2U3X6];bC$jL(uX0ƒf:‘wF›‚J¤Pª–Q²ŸS¸¦TºªS½­UÁ²WĵX±WïVÁ­W¿ªW¼§V¹¤Uµ Q²œPµŸS´žR²œP²œP´ŸP¸£T¾§WÀªWÉ´[͸[Ô½`Ô¿bÖ¿bÕÁbÙÂdÚÆgÞÇiÞÊiáÊjßËhàÊgàÌiæÐméÒråÎqåÍuæÎvåÐuçÔvéÙyëÜ}êàæÜ{ãÝ}áÝ|ÞÛ|Ø×{ÒÓvÍÍsÊÊrÂÀk¿½jº¼h¸¼h·¼j´»k°·i®²f¥§^ŸŸY•”QŽLŒŽMŒ’R–UšX‰•S‹šW“¢ašªiž¬nš¨k“œe”`ˆ‡W~{NvsHsqHpqImrJpxOu‚Wz_‚˜i§w–°€š¸†½‹¢Ç“¨Í™°×¢³Ú£¸ßª»â«»â­¹Þ¨µÚ¦¶×¢³Î™·Ë˜¶Ä“¬±ˆš–q†{]ueLlZDbP<\I8TC1O>,M<,K:(J7&H5$E4$C3$C3$A4$C5(E7*G;-I=/MC7LB6G?4A9.=5*>8,D=3HD8NL?RPAYWH`_MebQfcRebQc`OcaRcdVik^ouku|tuwoztkvpt~vuvx‚zy„|z…z‡€w†v‡sƒ€t‡…w‹Šyzz’’~–˜šž„¡§†¤®‰¦¶‹§¼‹©ÃŒ®Ê´Ö’ºÞ»àŽ¼à‹¹ÝŠ´Ú‘´Ú¯Õ‚œÁt‡§p{‘gn~_euaivemzhp{jt~oyƒlv€lv‚kw…lxˆmz‹p}r~”t€˜v†Ÿv†Ÿw‡ v†Ÿu…Ÿsƒq›p€šq€tƒ x‡¦|‹ª~¬~¬|‹¬z‰¨y„ wƒs™q{”q{”t|“v|’w~‘w|y|z{z{zy‰yxˆwv†vuƒuwƒvy‚vy‚vy‚uurr|omxmkvdbmcalb_j`]h`Zf_Ye_Ye_Yg\YjYXhYXf_]jhepjgnhcib^_a[]d[^f[_eZ^cW[^RV\MTXIPUFMSDKNAHL?FI>DH=CG>CE?CFAEKFJPNQTRUVVXWXZ[\^^_abcgghllmqnrupuxs{~y‚‡~‰‡”Šš§’¢²•§»–¨À”¨Á“¨Å”§Å“£½’¢»£»¦¼§¾Š¦¼‡Ÿ·„š±~¨yˆq|’jr…gn€jroy…r~Šsrrq~Žn|‰ky„iugt}eoyfpzhp}ip€hogn€eldk~jm€il}efx_^nWTeRN]SKZTLYRGUSITRKSPIPNGNMHLQLPQPUQQYQT]SV_WZcY]f\`i^bm_cnciuciuaivbjwdlygo|hr~jt€gshvƒjw‡ly‰mzŠmzŠmz‹mz‹lyŒkx‹iv‰gt‡frˆdp†co…cpƒal~`iz]dtZboY_mW[gRT`MO[8-37,26+15*04)14)15*25*25)35)35)54(44(43'33'53%46%58&69'5:(6=)5>*6?+6?+4C.5D/6G06I36J47J47L36K25G14G14F03F03E/2E/2F-1F-1J/4J/4M05M05N16N16O27O26R57R65S76S76T87T87T87U98W;:X<;Y=<[?<\@?^B?_CB`D@aE:aE7bF8bF8cG9dI8dI8dI6gL9gL9gL7gL7gL7gL7gL7hL6lN6mM6mM6mM6mM6mM6mM6mM6nN7nN7oO8pP9qQ:rR;sS'^>'^>'_?(`@)`@)b@'a>"b?!c@"dA#dA#c@"b?#a>"d@&d@&fB*fB*fB*fB*d@(d@(eA)dB)d@*c?'c?'d@(d@(eA)d@(c?'b>&b>$b>&c?%d@&eA'fA&gB'iD)nF,pH.rH/tH/vH0xJ2xH1yI3~L5‚O:ƒO:€L7zJ3oC(kB$g>"a9 \3Y0W-V,O(P)P+R.V2Z7]:^=_>eEkN$uX,e5t?ƒJ¦ŽN®—Q°Q¶¤Rº¨R¼­RÀ±RŶWɺ[ȹ\Ƕ\ij[ñ[î[¿ªW»¦U¸¡Q¶ŸQ¸žQ·P¹ŸR»¡TÀ§WŪ[È®ZѹaÔ½`×ÀcØÁd×ÀcÖ¿aØÁcÚÃeÝÆhßÈháÊjâÌiâÌiäÎkèÒoíÕsêÑtêÑuêÑuêÓvë×xìÜzïá~ñåƒéá~çáäà}ßß}ÚÛ}ÕÙ{ÑÔyÏÒwÊÈqÆÄoÀÃl¼Âl¹Ál·¿l³ºj°·i©«`¥¥]W–—S’•R—T‘šW‘œXŽ›V‘žY˜¥`¬iŸ®m©k•d”^„„R{xKupFtpJqqKmrJnvOr}UsWz‰`†—mŸu¦z’¬˜µ‡œ¼§È™«ÏŸ²Ø§¶Þ¬¸à®·ß­¶Þ¬·Ý¬±Ó¡µÒ¢¶Ìž­¸››y„}`vgPn\HcQ=^M;XG5UD2RA/P?+L;'I8&H7'G5'D4%C3$D4'D6)E9+G;-J@4KA5H@5A;/<6*<6*@<1FB7KI*6?+7@,7@,5C.5D/6G06I36J47J46L36L36G14F24E13E13E/2E/2D.1D.1I04I04K05K05L16L16O27O26O56O54P65P65Q76Q76R95R95U<8V=9W>:X?:ZA=\C>]D@_D=bF:bF8cH7cH7cH7dI8dI8dI6hM:hM8hM8hM8hN7hN7hN7iM7nP8oO8oO8oO8oO8oO8oO8oO8oO8oO8pP9qQ:rR;sS(a>(a>(b?)b?)c@*c@*dB)dA%dA#eB$fC%fC%eB$dA%dA%c?%c?%eA)eA)eA)eA)c?'c?'b?)_?(`=)_<&_<&`='b@'cA(a=#a=#a=#b?#e@&hC(kF+lG*pI*rK,tM.wN0yP4{O4{O4{M3~O5M4€N7‚N6„P:„M8€I4xF-k?"e>b;]5Z1V0U.U.T.V0Y4_:fB mK%sR)vU(wY'}_+…g1p8–y=Ÿ†Fª‘N°šO·¢S»¦S½¬TÀ¯SóTȸVÏ¿]ÒÄaÑÂcοd˼aɹaʹaɵ_į\ÀªW»¢R¼¡R½¢S¿¤UħYɬ\бaдaÖ¼eÙÀfÜÃiÛÂfÙÀd×¾b×¾bØ¿bÜÃfßÇgâÊjãËkäÌlçÏmìÔrðØvóÙzñ×zðÖwï×wîÚwðÞzòã~òæ€ìäêæ‚êè„çç…áå†Ûá×Ü~ÓØ|ÐÐvÌÌtÆÉpÁÇo½ÅoºÄn¶¿l³ºj®±d«­b¥§^Ÿ ZšX–Y”ŸZ”¡[˜¤\š§_ž«e£°k¤°nŸ«k—Ÿd“–a‚€OzvIvoEupJtrLoqLmsOowRpvRwZ€Še‡“m‡—r‰žw¦~’®…›º Ä˜©Ð¤°Ù­´ß²µãµ¸æ¸ºèº·á³ºÞ²·Ò©ªº–•šz‚|bthPp_KiXDfUAbQ=^O:\M8XI2SD-N?*N=-L:,I7)F6'E5(D6)E9+G;-H>2KA5JB7D>2>8,;7+@<1FB7MI=PL@VSD\YJb\Ne_QdaRcaR`^Q^`SbeZjrgt~vxƒ}t€|p|xq~wrxu‚{vƒ|v‚~r|p|m}|l}or†‡s†Šs†ŠsˆwŒ‘w”z™žyš¡|š¥{˜¨{—­}˜µž¾…£Ç†§ÊŠ«ÎŒªÌ‡¤Ä‡œ»€‘¯q|˜biƒbgz\`lX\h]amcgsdkuhqzoxq{…q{…o{‰o{‹p}Žr’t€–u™u„›u„›u„›tƒšr˜p~˜m{•lz”sœuƒžy‡¢|Ч}‹¨{‰¦x†£v„¡y‡¤w…¢uƒ xƒŸ{… z„x€—u{‘sxŒuwŒuvŠuvˆwv†xu†xv„xvƒ}ˆ~†~}…|{ƒwv~qpxljuigrigrigrhfsgerecpcanb`m`_mbasabtdcsfeshfsgfnebid_eb\`b\`cZ_cZ_bW]aV^aT]`S\]PW[NUWJQRGMODJNEJMGKMGKNIMQORXVY\\^]^`^_a^bc`deaedgmkqwuu~}x€‚|†ˆ„•‰–ž“¡¬”¤³˜©»˜ªÀ˜ªÂ•©Ä—ªÈ›¬È›«ÅšªÃ—«Ã•®Ä”®Å«ÁŠ¢º†œ³„–®Ž£v—nv‰jqƒiq~lv‚my…my‰n{Œp}qŒqŠn|‡ly‚jweoxgq{iq~jrhoel~ah{`exbetbdqa`n[ZhWSbUQ_YSa\VbZR]ZR]XQYTOVOLSNMRQPUTUZY\cZ^g\`i_claenaen_fp_fp^dp]ep\dq[eq^htakwfp|fr€fr‚fs„iv‡kx‰mz‹n{Œn{Œn{Œiv‰huˆfs†dq„cpƒcpƒdq„er…dlaj{^eu[cp[^mVZfQS_LNZ<04;/3:.29-18+28+29,5:-67*37*36)36)35'45'44&36&3:(6:(6;)7<*6?+7@,7A-6A.4C.5D/4G14I35J46J46L36J46F24F24E13E13E/2E/2D.1D.1I04I04K05K05L16L16O27O26O56O54O54P65P65Q76Q84Q84U<8U<7W>9X?:ZA<[B;\C>]E;cG;cG9cH7cH7cH7dI6dI6dI6hM8hM8hM8hN7hN7hN7hN7iM5oQ9pP9pP9pP9pP9pP9pP9pP9oO8oO8pP9qQ:rR;sS$c?%d@(d@(d@(d@(c?'a>(_?*^>)\<'[;&]:$_<&a?&b@%^: _< `=!c@"gB%kF)nJ*rK,wP/zR/|T1€U3V6€U5€S4€Q5…S8„R9„P8„P8†P8ƒM5}D0uA)g;b;_7[3W1V0U/V0\6_:eA!mJ$wU(_/‰h3o3‘s3•z5œ<£ˆA¨ŽD¯•JµžNº¤Q¿©SÁ­TŲVƶVɹWοZÖÇ`ÚÍg×ÉhÓÆhÐÁdÐÁdпeмc˵_ɱ[¿¥QÁ¥R¦SǨVͬ[Ò±`Ù¶eÙ¸gÚ¿hÜÃiÝÃlÜÃiÙÀfÖ½aÖ½a×¾bÛÂfÞÅháÈkãËkåÍmèÐpîÖvòÚxûß~ùÝ|ôÚyòÚvñÛvðßwñãzñæ}îçíêƒïíˆîð‹éíŒâèˆÚá‚ÖÛ}ÕÕ{ÑÑwÉÌsÄÊpÀÉp½Çp¹Ãm¶¾k°µe¯²eª¬a¤¨^ž¤\š¡[—¢]–£[ ¬b¢®d¤±i§´n§´o£­nš¢g–™b€~MxtGunDupJusMnpKkoLlrNopPvzY€„c„‹i…m…•q‰xŒ¤€‘¯‰˜»“¤Ê£­×¯±à¶¶æ¼¹ìÁ¿ïÅ¿ìÃÀ濺ղ¦¹™‘—{|zatiSrcNn_Jl]HiZEfZDdX@^T;WM4RF0RB2P>0M;-H8)G7*F8+F:,H<.H>2KA5LD9GA5A;/=9-B>3GC8OK?PL@SOCZTF^XJc]OebSfdU_]P]_R`cZipht}xy…u„q€}s{u‚{vƒ|wƒs‚}o~{jzyhxxk}}n€‚qƒ‡r…‰q„Šr…‹v‰v“w”šw•v”žv’ v¥xª}”´™»ƒ¾ˆ¢Ã‹¤Ã‡œ¹‚‘®z„Ÿkoˆ]_t\^mVXdVXe\`kcgreithoymvrz…q{…o{‰o{‹o|q~‘s—t€˜v‚˜tƒ˜v‚˜s‚™s—n}”nz’jx’u›uƒž{†¢{‰¤~‰¥zˆ¥y„¢uƒ {‰¦x‡¤y‡¤}ˆ¤€‰¦~ˆ¡{‚œw}“tv‹tu‰tu‡vu…wt…xtƒyu„yuƒ„~ˆ‚ˆ€}†}zƒxu~powjhsgepkitjhsjhuhhtffrddpbbn_anbcudeyhgyhgwhfsecnc`ib_fa\ba[_bX`aW_bW_aV^cV_cV_cV__TZZOUULQRINPJNQKOQLPPNQTTV\\^`acbceaefcghdjj]cadmhoxuu~yƒ„~‰‹†“™›¤–¦³™©¸›¬¾›«Â™«Ã—«Ä™­Èž¯Ë­Çœ¬Å™­Å—°Æ–°Ç¬ÂŠ¢º†œ³†˜°¥y„špx‹kr„iq~jt€jv‚kw‡ly‰o}ŠqŒqŠo}†mz‚kx€fpygqziq|jrhoel|ahz_dw`cr`bo_^lZYgWSaVR`[Ua^Xd]U`\V`YS]SPWONTMNSQRWSV[[`f]aj_clbfocgpahp`gq^gpZbmYalWamWamZdp^htblxco}dqfs„hu†kx‰mz‹n{Œn{Œn{Œgt‡fs†dq„cpƒcpƒcpƒer…gr„gpcl}`gw^dr]`oX\hSUaNP\?03@14@16A27@16?05=.5<-49)39)38(28(27'27'26&16&16$07%18&2;)5?+7A-8B.7C06D/6E05H25J46J46J54L44I35H46F35F35E24F24E13F03F03D.1E/2H/3I04K05L16L16M36O56O56P65Q76R87S98T;7T;7U<7V=8W>9X?8ZA:\D:]D=]E9bF8cH7dI8eJ9eJ7dI6cH5bG2eJ5fK6gM6hN7iO8jP7kQ8lP8nP8oO6pP7pP7qQ8qQ8rR9rR9rR9rR9rR9rR9rR9rR9rR9rR9uV:uV9uV9uV9uV:uV:uV:uV:qQ8qQ8pP9pP9oO8oO8nN9nN9jJ3jJ3iI2hH1gG0gG0fF/fF/bB+bB+cC,cC,dD-dD-eE.eE.gD.hD,gC+gC+fB*fB*eA)eA)eA)gC+iE-kG/kG/jF.iE-hD*gD(iF(lI+oL.oL.nK-lI-jG+hD*gC)eA)c?'b>&b>&b>&b?)^>)[<(Y:&W8#W7 Y9"];"^‹_<ˆ[:†Y8‰[:‹\>‘`BŽ\AŠW<„Q6€J0zD*v@(q?&c:Z5T/R-U/X2Z4Z5b= hD pM#{Y)Šg1›y<¬‹Hµ—NºŸN¹ŸJ¸žI¸žI»£KÀ¨PĬRŰSÈ´UɶWμZÓÁ_×ÅaÚÈbÙÊcÙÌfØÊiÕÉgÓÅdÑÃbÐÀaÒ¿aÔ¿bÖ¿b϶\ͲYÍ­XήYÕ²`Ú·eߺiÞ»iÜÀlÝÃlÞÄoÝÃlÙ¿hÖ½cÖ½cØ¿e×¾dÜÃgâÉmæÍpçÎqéÐsìÓvðØxøÜyûß{üã~ûä|öáxñàvðâwðå{õî„ñî…ïíˆìî‰éíŒäêˆÜãƒ×Ý}ÎÒtÌÐrÈÍqÄÍrÃÍt¾Ës¼Æp¹Án°µe®²e«­b¦ª`¢¨`ž¨_©aªb©µk­¹o¬¹q¨µo¦³n¦°qž¦j–™bƒP{wHvoEtoIywQxzUquRkoLvuVxwY|{]‚cƒŠk†‘qˆ—v‡œ{†¡~²žÄŸ£Ð©«Ûµ³çÀ·îƸìžìȺâÀ°Í®ž±•‰’wyyaphSnaNl`JpdNtjQqjPkdJc\B\U;[P:]P?XH9N>/I9*I9,H:-F:,E9+G=1H>2IA6IC7HB6F@4C<2A:0OH>QK?VPDZTH^XJa[M`\P_]P^\P]_R_e[dnekvpp|xr~sƒ€u„s‚}r|p|o~{n||n~}n~~q€ƒs…‰vˆŒv‡Žt…s„Œt…u‰’s–x–ž~™¤~•£yŽ£wˆ¢yЦ{ެƒ–´”²¬y‡¡t{•jo…dbx^[nWUcXXb\\h[^g^ajaenfmujs|gozgq{fr€ht„iv‡lyŒl{’p|”r~”r’s~’r~”r}“o{‘ozmy‘x‚›y…Ÿ‰¤‚ލ…ª„«„ª‚«ª~‹«€‹©Œ¨‚‹¨€‡¡{›v{‘uwŒpq…nk~mizqm|ys}w…y……~†ƒ~…€{‚|w~xszqnumjsjiqnlwooyqq}np|jlygivgivgjyeh{gi~kl€lmlkyggscbj`]d_Za_Z`_X`_X`aW`aW`cWacWacX``U]]RZXNVVLTSLSTMTTOUVTYYX]_^cabfcdhdhkhlokqqjspnyst{x„‚}ˆŠ‚“Š—Ÿ¦˜¨µ™©¹›¬¾ž®ÅŸ±ÉŸ°Ê±Êž¯É¤´Í °É𮯖¯Å”®Å‘­Ã¥½Š ·Œž¶‡–«Š v~‘pw‰mu‚lv‚kwƒlx†kxˆky†ky†jxƒjxkx€kx€fpyfpyhp{go|fm}el|cj|bhx`dp^`l[[gWWcVR`VR`YS_ZT`[Ua[U_XU^WV^UU]SV]RU\QV\[_h\`i[bj\ck]dl_fn`gq_hqZbmXblV`lV`lUamWcoZfr\hvdq‚er…gt‡iv‰iv‰iv‰iv‰huˆlyŠgt…cpbo€dq‚erƒdq‚cn€irƒhoek{ciwbet]_lXXdRR^?03@14@16A27@16?05=.5<-49)39)38(28(27'27'26&16&16$07%19'3;*4?+6A-6C06C06E05F24H24J46J54J54L44I43H45F35F35F35F24F24F03F03E/2E/2H/3I04K05L16M27M36O58O56P65Q76R87S98T;7U<7U<7V=6W>7YA7ZB8\D8]E;^F:bH9dI8eJ9eJ7eJ7eJ7dI4cH3fK6fL5gM6hN7iO6jP7kQ8lQ6nP6pP7pP7qQ8qQ8rR9rR9rR9rR9rR9rR9rR9rR9rR9rR9rS7uV9uV9uV9uV9uV:uV:uV:uV:rR9rR9qQ:qQ:pP9pP9oO:oO:lL5lL5kK4jJ3hH1gG0fF/fF/dD-dD-dD-eE.eE.fF/fF/hE/iE-hD,hD,hD,gC+fB*fB*fB*fB*hD,jF.lH0mI1mI1lH0kG-lI-mJ,pM/rO1rO1pM/mJ.kH,gC)eA'd@(b>&a=%`<$a=%`='[;&Y:&W8$V7"W7 Y9 ^-3=,2:)1:)19(29(28'18'17&07&07%18&29(2;*4?+6A-6C06D17F16G35I35J46K65J54L42I43G55E56G46F35E24E24F24E13E/2E/2F03G14J15K26L37L36N58O77P88Q99R:8S;9T<8T=7U>8V?7WA6YC6ZD7\F8]G:_H:cI8dI6eJ7fK8fK8eJ5dI4dI4gM6gM6hN7iO6jP7kQ8lR7mR7oQ7pQ5pQ5qR6qR6rS7rS7sT8sT8sT8sT8sT8sT8sT8sT8sT8tW9tW7tW7tW7tW9tW9tV:tV:sU9sU9rT:rT:qS;qS;pR:qQ:pP9qN8pM7nK5lI3jG1iF0hE/hE/hE/hE/iF0iF0jG1jG1kH2jF.kF,kF,jE+jE+iD*iD*hC)hC)jE+kF,mH.oJ0oJ0oJ0oJ0qN2rO1sP2tQ3sP2qN0nK/lI-d@&c?%a=%`<$_;#^:"_;#^;%W8#T8#S7!S7!W9![;"`>"bA"hF#jH#oL&vP)}V-„]2Šc8f:–k@—j@•h?’e<‘a;b;‘c?“eA’dB_>…W6N0xG)tC%r@%n@&b="^/H<0H<0J=4H>4I?5H>4H>5G=4NC=QG>UKBYQF^VK`ZNc]Qb^RcaUeg\ingjtljwpkzuo‚~uˆ†u…„t„ƒsƒ‚r‚r‚‚r‚‚s‚…tƒˆx‡Œ{Š‘–˜{‰”uƒp~‹k}‰o…q‰•v‰—u…”q|ŽowŒowŒpxqyŽryŒqx‹qt‡oljcueZk`Ue]Wa^[ba^ga`f_`e]`e^ci^em]fo]gq`jvam}dq„et‰hwŽixq|rzqyŒqyŒrzt|‘w”y–‚Š¡ƒ‹¢…Œ¦†§†§…Œ¦‚‰£‰¤†‘¯„­„¬ƒŒ©ƒŠ¦~„žy{’tuŠvs†rnphwqftuiuznx~q{€s|‚w€u{~s{zpxunvqlsmjskjrtr}uuvx…tx„pv„ltmu‚nu‡qvŒtvtv‹ruˆnojiwdbo`^ia^gb\fbZebZee[fg\ji^lj`kf\edZc`V_\R[XQYXQYWRYVSZ[Z``_edejgjojmrnswty}wwƒv…‚w……xˆˆ{Š‚‘˜Œš¥‘¡®”¤³”¥µ—¨ºš«½›­Á¯Ãž±Âž°Äœ¬Ã›«Ä—«Ã”­Ã”®Å’®Ä¨À¦½Ÿ·Š™®„¥}…˜x‘u}Št~Šr~Šq}‹o}Šm{ˆky„hvet{dqycpvepvfqwgpygozfn{dlybiybhvbdpccmb`k`^i_\g]Ze\Yd[Xc^[f^[f^\g^^h\`i[bj[bj\ckW^fX_gX_gY`hYbiZcj[dm[en[eoYcmVbnVbnWcoXfq[it]kxgt‡htŠiu‹iu‹iv‰huˆfs†er…gt…iv‡jw‡iv†fsƒdqdqeqgn€fk~ehycfuacr^]kXVcRP]@03A14A14B25A14@03>-3=,2:)1:)19(29(28'18'17&07&07%18&2:)3<+5@,5B.7C06D15G35H46J46K65K65K65L42I43H66E56G46F35F35E24F24F24E/2F03G14H25K26L37M48M48O69O77P88Q99R:8S;7T<8T=7V?7WA6XB5ZD6[E7]G9^H:`I9dJ9eJ7fK8gL9gL7fK6eJ5eK4hN7hN7iO6jP7kQ8lR9mS8nS8oQ5qR6qR6qR6rS7sT8sT8sT8sT8sT8sT8sT8sT8sT8sT8sT7tW9tW7tW7tW7tW9tW9tV:tV:uW;tV:tV$`<$^:"]9!]9!]9!\9#U6!S7!S7!T8 X: \>"cB#fE$nL'pO&xS)Z-‡a4Žh9“m<˜p?ŸsD qEžmB™j@—h>–f>•h?—jC’d@‹_<ƒW4zM,sF'pC$oB%lC%a>"`>"b?!eB"kI&rP*yV,|Z*l6˜v7¦…>³“FÀ KˬRÔ¶VÚ½YÚ¿VÚÂTÜÄVÛÃWØÂU×ÀV×ÀV×ÂYãÍgäÎiâÏiãÏlâÐlâÐnâÐnáÏkáÐhâÏfãÑeäÒfèÓfêÔgíÕiðÕjìÐeäÇ_ܺVÔ²NÔ°PÖ²RÛ´YÚ·[Ñ·ZϺ]Ô½`Ó¾aÕ¾aÕÁbÛÄfÝÉhæÏoæÒoêÔqêÖsí×të×tîØuîØróÞqõáp÷ãr÷æt÷èuõèuôévòëwóë|îê|ìé~êè忀ßá~×ÙxÐÑsÅÈmÂÇkÀÆl¾Èo¾Ëq½Ës»Çs¸Är±ºk±¸k±µk®´l­´n¬¸p®»s­½t¯¿x³Ã|´Ä}±Â|±À}±À¬¶y£«p™™c‘\‡…U‚S„…Y„Š\‚‹^€‰^x|Wz|W|}[}`…d†‰jŠoŠ“t˜¥‡Ÿ¯’£¸™¦¿¡­Ê¬¸ÙºÀáÄÁâǽÙµʷ§¶£™¢Ž}‚lwr^ojTnlSooUnqVlpUgmQdjPeiPgiSojWleSd]K\UCUN>QH9MD5KB3I=1I=1I<3J<3K=4L>5M>7M@8PC=PE?TJAYOF]UJaYNc]Qc_Tc`Wgh`kpilupkwsl|ys†„zŽŒyŒŠzЉw‡†u…„sƒƒs‚…r†s‚‡x‡Žzˆ‘{‰”zˆ“w…’sŽo}Šjz‰lnp€o{‹ls…glhk~hk|gj{il{jl{lkyjfuh`ogYjbVd_Wba\ce`gc`g_^d\]bZ]dZ_e[bj[eo_iu`m}dq„et‰fvixozŽowŠnv‰nv‰px‹t|y–|„™€ˆŸ‚Š¡ƒ‹¢…Œ¦…Œ¦…Œ¦„‹¥ƒŠ¤ˆ‘®‡­†¬‡Žª‡§ƒ‡ ~”zxxt…votiwthtxku~nx‚q{‚qy€qx}pw{nwxmuuktrkspjtnktvv‚wy…y}‰w}‰t|‰q{‡r{Št}Žy~”{}–y{’vyŒqr„jl{edrb`mdaldaje_if^ii^lk`nmbpncqi_jf\ecYb]V^[T\YT[XU\YV]\[a_`ecfkhkpkptqvzx}{ƒ†{‡‡zЉ|ŒŒ~€–ƒ”œ‹›¨ ¯¡±’£³”¥µ–§·˜«ºš­¼œ¯½°¿—¦½—§À•©Á“¬Â“­Ä’®Ä’ªÂ“©À’¤¼Ÿ´‹–¬„ŒŸ~…—z‚wtŠr~Œp~‹n|‡ky‚hw~et{dqwcpvfqwfqwgpygpyfnydlybiybhvdfrffpfdoecndalb_j`]h_\g_\g_]h__i_bk_cl^gn_ho`ipZcj[bj\ck\ck\el]fm\fo\fo]gqZgpXdpXdpXfq[it]kv_mziv‰jvŒjvŒjvŒiu‹huˆfs†er…fs„iv‡ly‰ly‰gt„dqdrfr€fmdi|dgxbetcbr^]kXVcRP]@01A12A12B23A14@03>-3=,2:)/:)/9(09(08'18'17&07&08'19(2:)3<+5@,5B.7D17E26H46I57K57L76L76K63K31I43H66F67F67E56G46F35F35E24E13E13G14H25I36J47M48N59N8:N8:O:9P;:Q<9R=8S>9S?8UA8VB7WD6YF7ZG8\I8]J9`K8eL8gL9hM8hM8hM8hM8gM6fL5iO8iO6jP7kQ8lR7mS8nT9oT9pR6qR6qR6rS7sT8sT8sT8tU9tU9tU9tU9tU9tU9tU9tU9tU8tW9rX7rX7rX7rX7rX7rW9rW9tY$`<$^:"]9!]9!]9!\9#T8"S9"S9"V:"[=!`C%hG&jI&tR,xW,€[.ˆd2j9™q>žvB¢yE§yH¦vH¤qDŸoAœmA›lB˜kA˜kBŽb;ˆ^8T1wL)oG$lD!kD#jF&`?aC!gF#mM'uT+~]0‡f3‹k2£Bª‰B·–IÀ MȦMͬMѰOÒµOÕºQ׿SÚÂVÚÂXØÀVÖ¿WÙÂZÛÄ^äÎiäÎkâÎkáÍláÍláÍnáÍnâÎkãÐgæÑdèÔdëÕfí×gðÙgñÚhôÚiéÎ]ãÇYß¾SÛºQÛ¸TܹUÛ·WØ·VÖ¾\ÔÂ^×Ã`×ÅaÙÅbÛÉeáÍjäÒléÖpéØpìÙríÜrñÞuñàvòßvñßsõãsöåqøçsùêuûìwúîxøíyôíyôí{ïì{ìê}êéçå€ÞÞ|ÖÖvÏÎqÅÅkÁÆl¿Åm¾Èo¾Ës½ËtºÈs¸Är°¹j°·j®´j®´l®µo®¹t®¾w¯Ày¯Àz³Ä~´Å°Ä³Ä€³Ã‚¯»}¦°t i——c[‡‰XˆŒZ‡^…‘a„`zƒX{‚Yz€Z}\€„a‡ˆhŒmq˜›~¡¥Š©²—±» »È®ÆÖ»ÊÚÀÆØÀÅÓºǶª³¢œŸŽ}†nzuaqoXooUnrWntZjsXeoTcmTemUhmWqp\pmZlgTd_L\VFVO?RI:PG8L@4K?3K=4M<4M<4O>6S@:SB;SF@RGAUKBYOF]SJaXOc\Rc_T__Udg^iphkvpjytm€|w‹‰€”“€’’~zŒŒvˆˆr„†oƒo~ƒo~…v„t‚‹sŒqŒq}q}p|Œn{‹jzŠk{‹mxŠls…il}dfucbpdbobbnddngepjgrkcpj_mjYieWdaW`a\bd_ea_d^\aZY^WZ_V[a[bj\fp`jvbofs†gv‹gwixowŠovˆmt†mt†pw‰t{x’{‚•{—}ƒ™…›‚ˆ „Š¢†Œ¤‡¥†§‰­‰­ˆ¬Š¬¨ŠŠ¢†ƒ˜|}t…{p€ykxzjt~muƒpv…pw„qw}lrzkpwjqtiosiqrksrlvqnwxx„y{‡|€Œ{xvŽu‘w‚”}ƒ›}š|~•xzstˆln}gftecphephepkeqkeqmetnfupeupeskali_hc\d_X`]V^\W^ZW^[X_[Z`^_dbejfinjosqvzw‚{…‡zˆ‰{€’–ƒ”›…–ž‡˜¢‹›ªž® °¡±‘¢²“¥³”¨³—«¶™­¶š­»“¢·”¤½“§¿’«Á’¬Ã‘­Ã“«Ã•«Â˜ªÂ–¥º’³Œ”§…Œž‡”z„vƒŒsqŒp~‰m{„kzhw~hu{guxgrvgrxhqzhqzgozemzcjzciwfirhhpihphgohenfcldalc`k_]h`^iaak_cl`gqajsaktblu`ip`ip`ipajqajqajqaktakt^kt]js\htZhs[it^lwaozcq~kx‹kwlxlxŽkwiu‹huˆgt‡fs„iv‡ly‰ly‰gu‚drdrfr€el~di|cfwbetcbr^]kXVcSQ^@01A12A12B23A14@03>-3=,2:)/:)/9(09(08'18'17&07&08'19(2;*4=,4A-6C06D15E26J68J67L76L76L74K63K31H32I77F67F67F67G46F35F35F35F24F24H25I36J47K58N59N59N8:N8:O:9P;:Q<9R=8S>9T@7VB9WD6XE7ZG8[H7]K7^L8aL7fM9hM:iN9iN9iN9iN9hN7gM6jP7jP7kQ8lR9mS8nT9oU:pU:pR6rS7rS7sT8sT8tU9tU9tU9tU9tU9tU9tU9tU9tU9tU9sV8tW7rX7rX7rX7rX7rX7rW9rW9tY yB¤}D¨}F«{J«xI¨uF¥rC¢rDžoC™lB•j?ˆ^4‚[2{S/tN)oI%kG#jF$iG$cBfH"oO(xX/`3‹k8–v=~>²‘L¸˜M¡PǧP˪MÌ«JÍ­J̯IÕºSØ¿XÛÂ[ÛÂ[ÙÀ[ÙÀ[ÝÅaâÊfâÌiáÊjßËjßËlßËlàËnáÌoâÎmèÓhëÕeîØhñÚhôÝiõßhøßiøßiñÖaðÒ`ìÌ_éÈ]èÅ]åÂ\à½YØ»WÞÈbÝÌdÞÍeÞÍeÝÌdàÏeåÔjêÙmëÚnëÚníÝnñáröæwùézùézøèwûìwúëtûìuûïwþòzýózûò{÷ð{÷ð|ôî~ïëìé€èä€àÞz×ÔsÎÍpÆÆlÁÆlÀÆn¾Èq¾Êt½ËvºÇu¸Ãt°¸k°¶l¯µm®µo­·r¯ºu¯¾y°Á{­¾x¯Ã~±Å€°Ä±Ä‚²Åƒ®¼~§±u¢j˜›d’’^‹[‰\ˆ’^…“^„’_{ˆZ{†[|…Z}„[€„_‡ˆfŽ‹j’p–‘t¡›®ª‘¸¶ŸÇŰÓÒ½ÓÕÀÍнÌÒÄÁÇ»²´§¡Ÿ’“}†n|wcus\qtYqw[oy^kx^gtZeqYeqYiqZor]qp\nmYheR`]LZTDVO?UL=QE9PB7O>6O<5O<5R>7VAXIDUJDWMDZPG]SJaXOd[Rc_T``Vdg^gnfitnkzuq„€zŽ—•ƒ—–‚””}w‰‰r„†n€„m|ƒl{‚t‚‹qŠm{ˆlz‡nzŠp|Œq}p{kx‹kx‹mt‡lo‚jiyfdrc`ka^g`]db_febiidklbmj^jjYihXeaU_`Y`b[ba\b\Z_YX]XY^W\b\ck^fqblxdqgt‡gvgwhwŽnv‰nu…mt†mt†nu‡qxŠszu|tzv|’y•}ƒ™‡Ÿ„Š¢‡¥ˆŽ¨‰Ž«ˆªˆªŠŽ©¥ŒŠ ‡‚˜„}t„|p~{kv{jrls„ms…nt…nt{hnxgmvgnsfmshptjrumxtqzyy…y}ˆ{{ƒy‚‘wƒ‘x…•{†˜}ƒ›}œ|~—xzstˆmn€jiygftjhumjuqkwsmyskzrjyqfvpeslbmj`id]eaZb]X_]X_\Y`[Z`[\a^_dadiehmhmqotxv~{„‰z‰Œ}“„•œˆ™¡‰š¤Šš§‹«ž® ° °¡¯¢®‘¥®“§®•©°—©³Ÿ´’¢»’¦¾‘ªÀªÁ¬Â“«Ã–¬Ã›­Å𩾗¢¸’š­Œ“¥…š‰•z‡wƒuƒŽsŠqˆn}„l{€ky|jx{hswitxjszjs|iq|gozemzekwilujjrjiqihpifohengdogdocalccmbencgpcjtblubowcpxenuenuenuenuenuenudnwdnwboxanw_mx^lw_mxbp{es~gt„lxŽlxmy‘nz’mylxŽkx‹jwŠgt…iv‡jw‡iv†ftdrdreqel~di|dgxcetdcs`_mZXeUS`@01A12A12B23A14@03>.1=-0:)/:)/9(09(08'/8'/7&07&09(29(2;*2=,4A-6C06E26F37K79K78M87M87L74K63K3/H30I77G78F67F67E56E56G46F35F24F24H25I36J47K58L69L69N8:O9;P;:Q<;R=:S>9T?:T@7WC:XE7YF8[H9\I8^L8_M9bM8gN:hM8iN9jO:jO:iN9hN7hN7kQ8kQ8lR7mS8nT9oU:pV;qV;qS7rS6rS6sT7sT7tU8tU8uV9uV9uV9uV9uV9uV9uV9uV9tW9tW7rX5rX7rX7rX7rX7rW9rW9tY&a=%`<$a=%`>%]A)ZB(\B)]D&dG)hK)nP*rR)€_4…c3i7•r<Ÿx?¤}B©D¬‚H®|I­yIªvF¨uF¥uG qC˜l?’g<‚X.~W.wT.qO)nL'jJ$iH%iI#gI#mP&wZ.e5o;˜{C¥‡I­ŽK»›RÀ¡QȨSÍ®TЯPÏ®MѯMѱNÙ»YÜÀ_ÜÂaÛÁ`×½^ؾ_ÞÆfäÌlßÈjßÈjßÈjßÈkßÊmáÌqäÏtçÐpïÙlòÛiõÞlúámüãmýämÿålþäkÿåoþákûÛjùÙj÷ÖkóÒiíÌeæÉaæÑfáÓfáÔdàÓcßÒbáÔdæÙiêÝkêÝkêÝjíàmóæsúîxÿó}ÿó}þò|ÿô|þòxþòxÿõzÿ÷|ÿøþõ~ùò}úó÷ñôî€ïë€ëæ€âÞ{ÙÕtÑÎqÈÈpÃÇp¿Çq¿Ér¿Ëu½ËvºÇu¸Ãt³»n³¹o²¸p°·q¯¹t°½x±À}²Ã¨¼w­À~¯Â€­Â¯Äƒ±Ä„­»~¦±uš¢i—œd’•`’\Š“\‡”^ƒ”]€“\|Ž\{‹\{ˆZ}†[†^ˆˆd‹k–p›u¨™‚·¨“Ŷ¡×ȵä×ÄæÙÈÞÕÆÔÒÆÉÉ¿»·¬¨¢–•Ž~†m}xdxv_vz_u~ateqem{bjxaiw`lu`lq[oq\np[kjVc`O]WGZSCZQBVJ>TF;RA9P=6Q=6U>8YA=ZE@\MH[NH\OI]PJ^TK`WNd[Rc_TddZeh_fmehsmk|vr…zŽ•“ƒ—–•”}‘w‰‹r„ˆn€„n}„l{‚t‚‹qŠo{‰o{‰q}r~Žp{ny‹lwkvŒmrˆmn‚khyjdrf^id]d`Z^a\`e`fhahk_ii\fiWeeU`_T\^X\_Y]]X\YWZXW\Z[`Y^d\ck^fqblxcp€fs†et‹dtdsŠmuˆou…nt„nt„ns†ns†ns†ot‡rw‹sxŒv{‘y~”}‚˜‚‡…‰¢†Œ¦‡Œ©†‹¨†Š¥‰‹¤‰‰¡ˆ…š„|‘v‡}qzlyyhr{gphnƒjnƒjn‚imzejvektejrelshpukswozwt}xx„y}ˆ{|„‘zƒ’x„’z‡—|‰š{›z~™x|•vxst‰nolk{jiwmkxqm{wqysyq€um|qfwncsmbpj`ke]haYd^Xb]Wa\Yb\[c]]e``hbelehohmsmtzv}ƒ{„‰}Œ‘~‘—ƒ–†˜¢ˆš¦Šœªž®¡±¡±¡±¡¯Ž ¬¢©£©’¥©“¦­Ž°‘¡º’¦¾‘ªÀ©ÀŽªÀ’ªÂ–¬Ã™«Ã𩾙¤º–ž±’™«Œ”¡†œŽ—~Š–|Š•y‡uƒŒq€‡n}‚lz}jx{juykvzlu|lu~ks~iq|go|gmyloxlmrjiqhgohenifojgrkhsigrhhrgiufmwfoxgqzfs{fs{gpwgpwgpwfovepvepveoxeoxer{dqzbp{aozcq|es~fwhx‡lxŽmy“o{“p|”p|’p|’o|n{Žjwˆhu†fsƒdres€es€dr}dp~fk~fi|efxdfuedtb`n\XfWSa?03@14@14A25@16?05=.3=,2:)/:)19(09(08'/8'/7&07&09'3:(4;*4?+6A-6E07F18H17L69O69O69O77N66M53K31J20J67I68I68H57H57G46G46G35F24G34H25I35J46K57L68M79O:9N:9P;8Q<9R=:S>9T@9T@7XD9XE7YF7[H9]J9^L8_M9bM8gN8iN9jO:kP;kP;jP9iO8hN7kQ8kQ8lR7mS8oT9pU:qV;rW:rS6rS6sT7sT7tU8tU8uV9uV9uV9uV9uV9uV9uV9uV9uV9uV7rX7rX7rX7rW9rW9rW9rW9rW:sX;sX=sX=rW&b>$b>&b@'`E*^D)`E*aF(fI)kM)rR+vU*„b4Šf4‘l7™t=¡zA§D«E¯‚G­|D­zEªxCªxE§wF¡sB–l<Že7}V+zU+vS+rP*oM'kK%jJ$gJ"lO#sW'~b0‰n7–y?¡…D¯’N¸šQ¾ŸOÅ¥R̬UÒ°VÔ³TÕ³R×µTÙ·VÙ»[Û¾`ÝÀbؾ_Ó¹ZÔº[ÛÂeâÉlÞÇiÞÇiÜÈiÝÉjßÊmâÏqåÒtçÕqñßoõâløåoûèpþérÿërþêoþêoÿïuÿìtÿçqÿærþäsýãtùßqóÝnç×fäÙfãØdâÕbàÓ`ãÔaèÙdìÝhìÝhìÝfíákõéqüòyÿøÿù€ÿù}ÿú~þø|ý÷{þø|ÿûÿûþø~úô|ûöøò€õïòë€ìçãàyÚÖsÒÏpÉÉoÄÉoÀÉpÀÊq¿Ëu½ËtºÇu¶Ãs´¿qµ½r´¼s±»t±¼w²¿y³Â}´Å¦ºsªÀx¬ÂzªÁ{­Â¯Äƒ©»}£±v—¢j•œf—c”`Š“^†“^ƒ‘\€‘]‚aŒ^}ˆ]~‡\†^‡‰dŒk”p¢–|° ‰¿¬›Î»¬áÎÀòßÑ÷ãØðßÕÞÑÈÓÉÀù¯¬¢––~…~l{ydwycwgw„jw‡mt†np‚lm|ikzgmxgho]lq]nq^jkYdbS]ZK\VH\TGYLCWI@TC;Q>7Q<7V>:YA=ZE@_PK]PJ]PJ\QK^SM`WNc\Rc_Vhh`fibelegrll{xr…ƒxŒ‹|•–“”|Ž’w‰rƒŠo€‡o}†n|…uƒŽsr~Œsu‘t€qyŒmuŠowŒntŠmr†mn€ljxkeqh`ke^f_X_aZad]dh^fj]giYffTbcS^^SY]WY]W[[VZXV[WX\Y\a\`i[bl]erajycodq„cr‡bqˆco‡nuˆqt‡qt‡ps†or…nq„lnƒlnƒrt‰suŠvxy{{€–„š‚‡„‰ŸŠŠ¦‹ˆ¥Š†¡Š„ž‰„›†}’€tˆ|n|lyzisyenydk|fi€gjgj~ehzejveksdirfjtgpvltyq|xu€wwƒx|ˆz€Ž{‚’zƒ’y…•z‡˜}ˆœx~˜x|—vz“sxŽrt‰op„nmlk{nlzrp~xtƒ}v†|s„vm~qfwlarmbpkale]haYd^Xb\Yb\Yb\[c``hbbjcfmejnintnvyv}ƒ|…ŠŽ•€‘™ƒ”ž…•¢‡—¦‹›ª °”¥µ‘¢²¢°Ž ¬Ÿ© §Ž¡§£§‘¤«Žž®‘¢¶”¦¼“©¾¨¼¨¼‘ª¾–¬Á—©½—¨¼˜¥¸•¢³’ž®Žš¨‰—¢†”Ÿ„ž‚Žœ~Š–y…‘sŠn}„jy€iv~jw}jw}lw}lw}ku~is|gqzgpylpyknuiisffpgfnhgojhsljumkvmmwkozjq{is|hu}iv~iv~dqydqweoxcpvcpxcpxbowbowgt}fs|eq}dp|fr~ht€jxƒlz‡kzlz”m|“o~•p”r~”q~‘q~‘lyŠhs…dp€co}eqfr€eqeo{il}hi{hgwgfvhdsd`n`Zh[Uc=07=07mS„D¥ŠE¬’H·œOÀ£SƨRʪSѯUصYݺ\á½_â¾`ã¿aݼ]ܾ^ÞÀ`ßÃbáÅdàÆeàÈháÉiçÐpçÓré×uæÖtåÕsæÖtéÛxíàwïæqòênöîrúòvýóxýóxûñuúðtÿø|ÿù~ÿúÿúÿøþô{úðwöítíçmìælìãjëáhëÜeéØbéÖ`éÔ_çÔ^éÙ`ïài÷ëqÿ÷{ÿý€ÿþ€ýþýÿ€ýÿþÿ€ÿÿ€ÿþýü~þúü÷ü÷öñ|ïéwîèxíé}éæ{áÞuרrÎÒqËÐrÆÍpÁÊm½ÇnºÇm¹Çp¹Çr¸Çt·Æu¶ÄuµÃv²Âw²Ây²Â{²Äz°Çy¯Èw¬Äv§Âu­Ä~²É…®Âƒ¥¹~™ªs—¥p” n’›lŽ—hŠ“f†bƒŠ^ˆˆb‰‰e‡‰d‡a…a‚ˆf‰l’‘s®¨®£¼¬ÛÉ¿üéâÿúóÿõñþëåïÙÎÝǺÀ® ¦™‰”‹z‰†s‚…r}†q~‹wx‰vuˆur‡vs…up‚tk{njvjltejpbjn`hl^gi\ccW_[P\UK`VM]PHWHARA:P=9Q<9U=;U@=XJGZOK]RN[PJXMGXOH_XPd`Wa^Wab\dicirmo{ysƒ‚vˆˆy‹ƒ”›‚“›ƒ‘š€Ž—zˆ“sŒmy…iuƒo{‰r{Œt}Žw’y”w’synuˆpuˆpv†ru†qs‚po}ljwieshbnc[hc[fcYdcWcbTabR_aQ^^Q[`WZ]WW\XY[Y\[\a]`g_cl^fq[eq]fu^jzal~bmbmbmck€in„kkƒiihh€igjh~mi‚njnl‚qo…st‰yzŽ|~“~ƒ–†˜„…™‚ž€|˜Šx’„rŠ~kzexwbqu_lr]fqZbs]`y`czbbx`^t_^wdfuehufkthlwjsyowzr}yvxvƒy{ˆ}€‘~…—€ˆ›}ˆš|‡›z…›|‚š{˜x|•uzuwŽsuŠstˆusˆro‚ur…zu‰{vŠ{t†tmnexi`speuncqialf^ic]g_\e^[d]\dbchefkgjoinqnsws{}|„‡‚‹‡‘›„œ„’Ÿ…“ ‰–¦Ž›«“ °”¤³”¤³•¥²”¤±‘¢¬ŒŸ¦‹ž¤Ž¡§‘¤«“£°–¦µ˜©¹›¬¼›®½—­»•«¹”ª¸¥³“¦µ–©¸”§¶Ž¤²‹¡®Š ­Ÿ­Žšª–¨Š“¤…ŽŸ|ˆ˜t‚n|‰iy†k|†m~†p†q€…r€ƒq€p~~q|~hqzio{kozkozloxloxnnvlovpszpu{qx€r{„r|…p}†n|…l}…gx€gz€hyhy€fwdu}cqzboxdqzdqzdqzfpzhr|jt~lv€kw…hyhzl|“o–p•q€•r’r’ozŒpx‹nwˆkt…ip‚hojp€mpmo|kivgcqfbpjbqg_l`UcXLZ<19<19;08;08:/7:/7:-6:-69)39)3:)39(29(28'18'17%1:(8:(8<'8>'7A)7F*8J+:M-8R16R@6TB8VD8VD8YF8YF8]G9^H:`JrV@rXArV@oU>nR=lP;mN:mL9lL7jJ5jJ5jJ3kK4kK4kK2lL3mM4nO3oP4pQ5qR6tR7wS9xS9xS9xS9xS9xS8xS8xS6wR5xS6xT4xT4wS3uQ1sO/rN.rM0sN3sN3sN3rM2pK0oJ/mH-nI.mH-lG,jE*iD)iD)jE*iF*iJ.jM/nO0qP-uS-{Z/†a4Œh6–n:›t=¢z?©E­€G­€E®€E®€D©}>«>§~> v:žt:œs=“k7‰a0‚\/}X,uS&qN$pO$tS(yZ.~_0†l3v6›‚@£‹E©E°•F¹œLÀ¥NÉ«SϰUØ·Zß¾_åÂdçÄfçÃeåÂdß¾]Ý¿]ÝÁ^ßÃ`ãÇdæÍiéÑmëÕpîÛuïÝwîßxìßwêÝuêÝuíâyîæyòíuôðsøôwû÷zýù|ýù|üø{û÷zþú}ÿû~ÿý€ÿý€ÿû~üø{øôwôóuñðrðïqñëoñémòäjñáhòÝfñÜeðÛdðÝeòâiøìrý÷{ÿþ€þÿ€øý}ûÿûÿ€üÿ€þÿ€þÿýü}ýù|üø}ùô|óîxìçréæsêçvèæwáásÙÛnÑÖoÎÖoÍÕpÉÓpÆÒpÃÑpÃÑrÂÑvÀÐw¾Ðz¾Ð|½Ï}ºÍ|·Ê{µÆx²Åv®Çs¬Ès©Åq§Âs«Å{±Ë„°Æ†§½ž±z™«w•£r‘žpœnŽ—j‰d„‰`Œ‡gŒ‡iˆ‡hƒ‡f‡eƒŠh‹p‘”w¡Ÿ†ª£¾°£ÛÍÄýëçÿûøÿúúÿïëèÐÆÛÁ´¿¬¥˜‡“Œz†‡uˆv~‹y}Ž|zŒ|uŠ{t‰zr†zqƒwm}sjwmhrghpcgmafl`gj_ceZ`]T\XOaXQ^SMYLFTE@Q?;P=9Q<9Q>:WIFXOJ]RN\QMXOHYPI^WOb^Ua^Yab]ejfiroo{ysƒ‚x‡ŠxŠŽ~—šš˜{‰–v„‘r~Œo{‰s|s|t|w’z”x’synuˆou…ru„tv…su„rqmlzigufbqd^ld\keZhcWebTcaP`_O\\OY\SVYUTXVWYY[[\a\`i]co_gt]fu\hx_j|ck~dldm~dk~di}ik‚iiifhf~ie~kf}lg~mhpk‚pm‚tq†xw‰{|Ž‚“€†–ˆ…˜~˜‘x•sŽ…m…~e{w^srZjoWenWalU]mTZpWZt\\w__v^\r]Zvcetdgtejthlwjqyow{t|zw‚zx…{zˆ{~|”|ƒ–z‚—y˜x€—{˜y~”v{‘uwŽrt‹pr‡qr‡rp…sp…ur‡ytŠytˆxp…sk€mdyi`speuncqjbmg_jc]gb\f_\e^]edejfglhlokornsvs{}|„†Š„Œ—ƒŒ›‚Žœ„ž‡“£Œ˜¨œ¬‘ž®‘¡®’¢¯’£­¡« §ŒŸ¦¢¨’¥¬—¨²™©¶›«¸œ¬¹›­¹˜ª¶”¨³’¦±“¦´”ª·–¬¹“«·§³Š¥°‹£¯Ž¡¯’ž®“š­—ª‰‘¤€‹x…–p€m}j|Šm‰q‚Št†Šv…ˆt„ƒr~p~lu~ltlr~lr~mq|mqzmpwmpwpu{pw}rys}†t~ˆqˆqŠo€Šk}‡kˆm‰m‰l~ˆk|†jxƒiw‚ht€gsishr~iskumu‚kw…gyf{j|’m•o–o€”r’r}‘px‹pw‰nu‡lq„jo‚lo€mn€mo~nlyjgrgamf`li^leZh^P_VHW<19<19;08;08:/7:/7:-6:-6:*49)3:)39(29(28'18'18&2:*7;)9=(9?(8A)7G+9K,;L.8R2=R39S4:S49R46P35O32L23K26I28I36J47J47K58K57K57K65K65K65L76L74M85M85M:4L93L;3N;4P=6R@6TB8WC8XD9\F9]G:^H:_I;bK;dM=eN>eO:jQ;jR:lR;lR;mSoS=pQž‚A§ŒG­’K±•KµšI¾¢OèOͯUÓ¶XÝ¿_æÈfíÌkíÌkìËjèÊhâÆbàÇ`áÈaâËcèÑiîÙpõàwøå|ùè~øêøêõé}òæzñæzòç{óìzøó{øö{ûù~þüÿþƒÿþƒÿý‚þüüúýû€ÿý‚ÿþƒÿý‚ýû€úø}ù÷|ùù}øø|ùõzøòxúîvúëtüésüçrúåpöãmôãm÷ësÿö}ÿþƒÿý‚ùû|üÿûÿüÿ€þÿ€þÿýü}ýù{û÷z÷ñuñëqêåoæãnèårèæuäärßâqØánØâoØâqÖârÔâsÑávÐßvÎßyÊÜyËÜ~ÊÝÊ݃ÅÙ‚ÀÔºÎy´Êu±Ët¯Ët«Çs©Äs®É|´Î…´Ê‰¬Â‚¤·œ¯x—¥r”¢q•¡q’žn‹”e†‹b‹ˆg‹‡jˆ‰j„‰iƒŠi„ŽlŒ“t’—y››®©•ƺ¬ÚÍÄõæßÿùöÿ÷öùêåÛǾҼ¯½«Ÿ¦šŒ“}‡ŠyƒŒ{‚€‘|Ž~v‹|t‰zu‡{r‚wm}rjwmgqfepbfnafl`hk`eg\aaW^[Rb[S`WP\QKXKESD?Q?;O=9N<8RGCVLJ\SN]TO[RK[RK]VN`\Sa^Ybc^ejfjspp|zsƒ‚w†‰w‰{‰’|Š•}‹–~Œ—}‹˜zˆ•x„’wƒ‘u~t}Žv}y€“{‚•y€“syov‰nt„pv„tw†tw†su„on~kiwhdshbpg_ng\jdXf`Tb^P_[M\YMWTNRRPQTRUVW[X[b\`i^dp`hu_hw`ixaj{cj|dk}cjzdi|eh{gh}gh}hf~ge{hd{je{me|nf}rjsk€vnƒxt…{x‰~Ž€‚‘†‚“ˆu‹ˆn‡‚f}v]rpUhgO_cKYaIVcLVbKQdNQhRTmXWq\[r]Zq]\tbbscdsdgthlwjqyow{t||v‚}y‡{zˆyzŒy|w|u|u{‘u{‘y~”y{’vxst‰pq†op…pn„om‚ur‡vq…yq†xp…um‚pi{mdwjarpesoepjbmg_jd^hc]g`]d_^defkhinjmrmpupuxv{~|„†Š€ˆ“ˆ—‹™›…‘Ÿˆ”¢Š˜¥Œš§ªŸ¬¡«¡«Ž¡¨Ž¡¨’¥¬•¨¯œ­·œ¬¹­ºœ®ºš¬¸—©µ“¥±¤­•©´˜¬·™­¸•«¶‘§²¥¯Ž¤¯‘¥°—£±˜Ÿ±•œ®Ž—¨…¢}Š›v†–q‚’k}‹os…x‰{Šyˆ‹v„…t‚…s{†rz‡rx„qwƒqu€pt}pszorysx~ryt{ƒuˆw‹uƒŒuƒŽsƒsƒr„t„‘u…’t„‘t„‘uƒt‚m{ˆlz‡kw…jv„jv„jv„mv…jwˆgye{’g{“k}“m}”m~’p}q|nv‰mt†lq„mpmn€ln}ml|nlzkivhepf`ld^jf[iaVdZL[SET<19<19;08;08:/7:/7:-6:-6:*4:*4;*4:)39(29(29(28&2:*7:*7=(7?)6B*8F,9I-9M/9R3;S4:R39Q48Q46N45M32L44K26I28I36J47J47K58K57K57K65L76L76L76M85N96N96N94L93M:3O<5Q?5SA7UC7WC8XE7^H;^H:_I;bK;dM=eN™zC£…G§ŒG¯’Lµ™O¸N½£OŪSʯTжWÕ»ZÝÄ`äËfìÐlîÒnîÒnëÒkêÓiêÕhì×jðÛnóásùçyýí~ÿñ‚ÿô„ÿóƒýñúî~÷í|öì{÷í|õîzü÷üúþüƒÿþƒÿÿ‡ÿÿ…ÿÿ†ÿÿ„ýû‚þüÿý„ÿþƒÿÿ†ÿþƒþüƒüü€ýÿ„ýÿ‚þüƒþúÿ÷€ÿõ}ÿò~ÿñ{ÿëxúçqôãoõéqýô}ÿü‚ÿý„ûûüÿƒüÿþÿÿÿ€ÿþýü}ýù{üøzøóuóíqìèméçpëèsìëuëìwèëvåïtåñuäòwäòyâñzàî|Ûì|ÙëÔç~ÕçƒÒæƒÐå†Ìá„ÇÜÂÖ}½ÔzºÔ{·Ôz³Ïz°Ìx´Ï‚¹Ó‰¸Ï‹¯Å„¤¸{›®v”¥o”¢m˜¦q˜¥pœg‰dЉj‰ˆl†‰l…Šjƒk‡‘o‹”u–z›…³±œÈÁ±ÒȾàÖÍñæâïåãäÙÕÔüͼ²¼¯¦§Ÿ””’…‰~†‘‡•†’‚|Ž€xŠ|u‡ysƒxrulyoiukeqedoacn`fnagmagj_bdY__U`\S`YQ^UN[PJXKESF@PA*6@*7B*8G-:J.:K09R45T@7VB7ZD9[E8`I;aJ:bK;eK:gMJX:FU:CV;DV=CXAGZDG^JKcOPhTSlZXr^]tb`s_`s`bvcewgjzkp{nu|qy|r{xp{vp|so}qo}qp€qr„tu‰vw‹xv‹wuŠtr‡ro‚pm‚ololpl}so€un~tk|rizpgxnfuoduncsqgroenmclibjhaifahdahdahihnklqmpupsxrw{uz~{€„~…‹‡’€Š–„Žš‡‘ˆ” ‰–Ÿ‰•¡ˆ–Ÿ‰—¢Œš£ ¨’£«“¤®•¦°˜ª´›­·›­¹›®¼›¯ºœ°»œ°¹›¯¸›­·›®µ—ª±˜«±™¬²–©¯’¥©£§‘¥¦“¥©š§°˜¤°–¢°‘Ÿ¬‰™¨ƒ•£~Ÿzœv‰˜uˆ–t†”s…‘w…y‡|‰‘~‹“€Š–ˆ—~†“}ƒ|€‹z~‰x|…w{„{ˆy€ˆy‚‹yƒŒy†zˆ“zŠ—zŠ™{ˆ™{ˆ›{ˆ›|‰œ}Š~‹žŒŸ€ x‡šv…˜s‚•q€“n}m|l{Žk|f|”f|”g{”g{“jz‘l{o{‘rzlq„il}fesecpgdoicoialf^ijdnhblf^id\gbXc^R^XJWSER<19<19;08;08:/7:/7:-6:-6;+5;+5<+5;*4;*4:)3:)39(2;+5<+5>*6?+6C+8E.8I/8L18S5=P5:O58M47L44J54K65K57K26K28K26L37L37M48M47M47N66O77O77P88P86Q97Q97Q95P84O;4Q=4S?6UA6YC8ZD7[E7bK;bK9eK:gN:iP}Z>zX˜m:‘f9f:‡]3…_2…a1Šf4‘p:ž~C¨ŠJ¯’N·™Q¹œP¾¡SĨUʰYѸ\ØÀ`ÛÅ`ÜÆ`ÜÉ`ßÌcäÒféØlïßpõäxöéyûð}ýôÿøƒÿü‡ÿýˆÿü‡ÿú…ÿøƒÿù„ýöýôüó~ýôþõ€ýôúó~ÿú„ýû„þû†ÿý†ÿü‡ÿþ‡ÿýˆÿþ‡ÿü‡ÿý†ÿýˆÿþ‡ÿýˆÿÿˆÿþ‰ÿÿ‰ûÿˆùÿˆüÿˆþÿˆÿýˆÿüˆÿûˆÿùˆÿñ€ûëzóãríànïäqõêwúð}ûö€úú‚úüýýƒÿý‚ÿþÿýÿý}ÿüzÿûyþùyûøwùøyùù}úüüý…úÿ„÷ÿôÿôÿ€ñÿ€îþëûæø‚åö„äöˆáôˆÛð‡Öì‡Ñé‡Îè‡ÍæˆÌçˆÇäˆÇæ‰ÅáŠÂÞ‰ÅÞÅÝ‘½Ó‹°Å€ µtš®o–¨l˜ªn¯u±t™­r–¤q–rŽ“uŒ“rŠ”rŠ˜u‹šyŒ›zš|•Ÿ†¦®—µ¸§¸¹«»»³ÄþÈÇÃÄÿÈÿ¿º·¶±ª«¥œ¡š’œ“š‹›„–Š~„y‰~u‚xsuo{qkulgqhfsidrecpfeqeeqgdncbg`_bY^_Y^^V^[V]XR[SPXQKUMJSKHJEANIETOKXSO[VP\WQ\WQZWR_^Zbdahlkmvus}t‚…u‚ˆu„‹w…Žx†‘x†‘y‡’{‡•{‡•~‡–~‡–|…–zƒ”z”z”|•z“v{‘sxŒls…mt„pv†pv†ru„ps‚npmo|on|nlzjhueao`\j\VbXR^TQ\NNXNR[RVaU\fY_k]cq^eu_fv`gw`ft_bq]_l\\h\Ze^Xd\Yd][h^\ia]ke_mi^lj^lk]jl\ir`nsaoucoucoq`jkZdeT^cNWaCM`?H[:CU6>T5;T7P5:O58L36J46I56J65K78K26L18L16M27M27N38N47N47P67P67P67Q78Q76R87R87R:6Q95Q:4S<4U>6WA6ZB8\D8]F8eK€[>}Z<|W:yV:wR7tQ5sN4pL2qL2pL4rL5qM5rP7qO6pN5oM2nL1nL1oM2pN2tR6uT5vU6wV7xW8yX7zY8{Z9{X8|X8|X8|X8|X8|X6|X6|X6~Z8~Z6~Z6~[5}Z4{X2yV0xU/zW1yV0yU1wT.uQ-rO)oK'nK%rN*rO)tP,vS-zV2~[5]9ƒ`8‡f9Œl=•sC›zE¡H§‡J°ŽO¶•RÀYÀžVÂVÀ›T¾˜Qº”K¹“L¹‘IºF±…>©~:§{< u>–k8Žc6d8Œc7Œf9k9–s=ž~Cª‹J´—QºžTħYǨXȬYγ\Ô»_ÛÃcàÊgâÏhâÑgåÕfçÚjíàpóçwøízûñ€üõýøƒýú…ÿü‡ÿþ‰ÿþ‰ÿýˆÿû†ÿú…þù„ûöúóûô€þ÷ƒÿù…ÿù…þù„ÿü‡þý‡þý‰þý‡ÿþŠÿþˆÿÿ‹ÿÿ‰ÿÿ‹ÿþˆÿþŠþý‡þý‰þý‡ÿþŠþÿŠùÿŠøÿŠüÿ‹ýÿ‹ÿÿ‹ÿþŒÿýŒÿüŒÿõ…üïòåuéÜlåÙièÜlðæuõî|øõ‚ùø‚üúƒþüƒÿþÿÿÿÿÿÿ}ÿüzÿüzÿþ}ÿþþþ‚þÿ…ÿÿˆýÿ‰öÿ†òÿ…òÿ…ðÿ„îþ„íü‡êûˆêû‹êüèûãø‘ßõØðŽÒì‹ÎéŠÉç‡Ãâ…Åä‡ÇãŒÅáŒÈáÇß“½ÓНÄ¥¸x¡³u±rž²s ´w ¶v³uš­u˜£y•Ÿ|‘yžz’¢}’£‘¢€ €•£‰¡­—°¹¨·½¯¹¾·¼¾¹½¿¾½¿¾½¿¼¸º·­²®¤ª¦œ¦ž•¢™Ÿ•Œ“ˆ™ƒ”Š|Œ‚x…|uwr|sovnjtkgtjdticsierhericoe_ia\c[af`ad]^_Z[ZUYURURMSOLQMJJFCLHEQNIURMYVQ[XS[XS[XS_^Zbdahlknwvs}s„t‡s‚‰u‚‹uv‚Žwƒ{„“}†•ˆ—€‰˜†˜}„–|•{€”|•{€”y{’tymt†mt†msƒmsƒmsƒmsorproq~on|kjxgera_l]YgYUcVTaRT`QXbTZfW_l[cp]dt]dt^eu_es_bq^]k[YfYV_YT[[QZYRZWQ[XR\\T_`VacV`eU`fU_gS^kUakS`iR\fOYbKS^GOZCKZAG[;@[8ZBB\GF`LKcONdRPfWTk\Yq_]uabwcdyef{hj|im{jpzkpwjqk^gi]gh^ie]jd^je_mc_nd`okdtjcsibribribrkcrldsmerldqodrqftrhsrhsqgrpfqoenrfpqfnndlmckjckibjidkgdkhgolksppxpszqt{tw~v{x‡}…€ˆ“†Ž™‰“œ‹•žŠ”ˆ’›„‘™‹˜ Ž¤”¢«˜¦¯š¨³šª·­ºŸ±¿›±¾›³¿œ²¿³¾ž´¿ ·¿£·¾¥¸¿ž±·Ÿ±µ ¯²­­™©©˜¨§š¨¨œ¬¬™ª±—©³—©µ”¨³’¥³£±ŠŸ°ˆ®ƒ˜©€•¦~‘¢{Œœ{‹›Œœ‚Žœ„ž‰’£ˆ‘ ‡Žž…š„Š–ƒŠ”ˆ’€‡‘ˆ’ˆ‘~†‘z‡y‡’xˆ•y‰˜zŠšŒ €‹¡Š ~‰Ÿ~Š ‹¡Ž£€¤Ž£|¡z‹Ÿvˆœs…™p…˜p…˜o…ši›h€ši}–j|”k{”o{‘s{u|Žprfes[XcWOZZOW^QX`QX\OX_U^_U`_U`^T_[O[VJVRFROCO<19<19;08;08:/7:/7:-6:-6<,6<,6<+5<+5;*4;*4:)3:)3=,4?,2?+4A,3C,4H/5J17L18R7Z=}X;{V9xS8wR7tO4rM3pK1pK1qL2rM3tP8rP5qO4pN3oM2oM1pN2qP1vU6vU6wV7xW6yX7yX7zY8{X8|X8|X8|X8|X6|X6|X6|X6|X4€\8^8^8^8€]7~[3|Y1{X0}Z2|Y1|Y3zW/xU/tQ)rO)pM%tQ+tQ)vS-xU-|Y3\4ƒ`:…b8‹kœ|A§ˆG±”N»ŸUÀ¥Vβ_γ\е^Ô»_ÚÂbàÊeãÐiåÔjæÙiéÞkðår÷ízûô€ÿø„ÿû†ÿü‡üû‡üû‡üû‡üû‡þûˆþûˆÿü‰ÿü‰üù†ûõƒùóûõƒÿù‡ÿý‹ÿý‹ÿû‰ÿÿ‹ÿÿ‹ÿþÿþŠÿþÿÿ‹ÿÿŽÿÿÿþÿÿ‹ÿýŒþý‰ýûŠýüˆþü‹ûþ‹ùÿùÿûÿýÿÿÿ‘ÿÿ‘ÿÿ’ÿþ’ÿ÷‹þò†óç{çÛoÞÒfßÓgèÝqïçzöó‚÷õ„ûøƒþü…ÿÿ„ÿÿƒÿÿÿÿÿüzÿþ{ÿÿÿÿ‚ÿÿ…þÿ‡þÿ‰ûÿŠôÿŠðÿˆîÿˆìþˆíû‰îü‹íþŽîþ“ïÿ–îÿ˜êÿ˜äý˜Ý÷”ÕðËé‡Ææ…¾Ý€Âà†ÅáŠÅáÊâ”Èà”½Ó‹®Ã~ª½}¨»{¥¹z£¹y£¹y ¹x¶u›³w­~™¨–¥|•¦|—©–«„”¨ƒ¥„™¬¡³›°¿¬ºÆ¸ºÆ¼µ¾¹²»º³¼»²»º«¶²¤¯«žª¦™¨¡—¦Ÿ‘¢šž–ž–‡˜Ž€†{ˆxƒ{uvryqlvmivmeukdtjdtjeribof]h`Zd\elechb`b]Z\WVWRRSNOPKNOJIHDJIEMLHTQLXUP[XS\YTZYT^_Zbdahlmnvxs}u€„t‰s‚‰q}‰r~Šs‹v‚Ž{„“~‡–€‰˜‚‹š€‡™~…—|•|•|•{€”y{’vxns‡mr…lr‚kqkqlr‚orƒps‚prnp}lkyhgucan^\iZXeWWcTXdTZfW_lZbo\cs]dt]dt^dt`cr^`m][hYVaYQ\XNVYNVXMUQJQSLSXNV[PX_OYaPXcNWcLTgMVeJS`EN[@GWˆb=‰c>Šd?‹e@ŒfA‹e@Šd?Šd@ƒ]9„]<…^=…^=…^=‚[<€Y:X9}V9|U8zS6xP6wO5wO5wO5uP5vR8vS7vS7wT8wT8wT6xU7xU7{X:{X8|Y9}[8|Z7{Y6zX5yW4[9|X6yU3yU1}Y5[7~Z6|Y3^8€]5\4~[3|Y1{X.zW-zW-zW-{X.|Y1}Z0|Y1zW-xU-vS)vS+xU+zW/{X.|Y1€]3…b:Šh;Žm:”s=zB¤G©‡H¯ŽK¶•P»›RÀžTÁ SÁ SÁ SžRÁQ¿›O¿™N¹’G·G²ŠE©€@žt:–m7‘i6i8™sB—s?—w>ŸA®‘K»¡TŬZ˱\̱ZÏ´YÕº_ÜÄdãÍjçÔméØnèÛköëxøïzûôÿú„ÿþ‡ÿÿˆÿÿˆÿþˆÿÿÿÿÿÿþþŽþüüú‹ûùŠûùŠ÷õ†ùõ‡üøŠþúŒÿüŽÿýÿþÿþÿþÿÿÿÿÿÿÿÿÿÿÿÿÿÿþþŽþþŒþþŽþþŒþþŽþþŒþþŽüÿŽùÿ‘ùÿ‘úÿ‘üÿ‘ýÿ‘ÿÿ‘ÿý‘ÿü‘ÿü‘ÿû‘ÿôŠðå{àÕkÚÏeßÔjåÝrïë€îìñî}öó~ÿú‚ÿÿ„ÿÿ‚ÿÿþûzýý{þÿ€ÿÿ„üÿˆùÿˆøÿ‰õÿŒðÿŽîÿŽìþŽëýìüíý’ïþ•ðÿ–òÿ›óÿŸíÿäý—áû–ßû—ÑñŒÀâ¶×|·Õ¹Õ¼×†ÀØŒ¾Ô‹¸Ì‡²Åƒ«¾~«½«¿‚«Áƒ¨Â¤Á¢¿}¡»~œ³}ž²±€›±‚š±ƒ—±„•®†”¬ˆ•®Žš²˜¨¾©³È¹²Ã¹§¶±¥±±©µµ©¸µ¤´±Ÿ°ªš«¥”§¡“¦ “¦ ”¨Ÿ’¦ŽŸ—ˆ—ƒ‡Š‚y„|t~vozrgvodumdsldslgtmerkbmg_hc]fa\b^Y_[X]YY[XUWTPROKMJFFDGHCIJENMISRMYXS_^Yba\efahjglpqpxzt~€tƒr‡p}…r|ˆs}‰s}‰u‹x{„“†–ˆ˜}‚•~ƒ–€‚—€‚—}”z|‘vxtv‹suŠruˆruˆruˆqt‡ps„qr„qs‚rtƒpron|jiwdcq]\jXWeSUbMSaQYfX_o^eu`gy_fx[brY_oX[jXZgYWdZT^ZPYYNVXKTWJQVKQVKQWJQZKP^KQaLQeLRgLSdFNaDI\=CV7\D@^IFbOKeSQgUSeVShVTs^]yaaggkmkm|hjvbdq^bkX^eT\`QX_OY^Q[_R\^R\\PZ_Q^_Q^_Q^`R_`T`bV`eYcf[cm`incksfoujpvkqtioqflodjpcjqflrgmofkmckkdkngopkroluonvqozooyooyor{tv‚w{†{‚Œ|ƒ}†ˆŠ‘‚‹‚‘ƒŽ’‡•˜Ž›¡–£«›¨±š¨³™§´˜¥µ•¦¶”«»–°¿›µÄ·ÆŸ¶ÄŸ·Ã¢¸Ã¥¹Â¤¸¿£¶¼¢µ¹¡³µ ²´¢²²¢²²¡³µš®µ—­¸–¬·“«·‘¨¶Ž¨·Œ¦·‹¤¸ˆ¡µ†œ±ƒ˜­ƒ•©ƒ”¦„”¤„¡‚Ÿˆ“¥‡“£ˆ‘ ‡Ÿ‡œ‡šˆ™ˆ™…Ž—ƒŒ•‹•~Š–}‹˜|Œ™} ŽŸŒžŒžŒž€žŽŸŸ€ z‹›|ž}ŸxŽœs‰—p‡•qˆ–sŠšp„œrƒrƒt„u—q|ns†lmgesb\hZPYUHQVEMYFLZGKXGMYISZNX]PZZNXUISPDNNBLNBL<19;08:/78-58-58-5:-6:-6:*4:*4;*4<+5<+5=,6=,6@,5B-2D.1H/5J15L18L16N16N16O27M27M36L36J46I56H66H66L39M29M27M27M27M27M36M36N45N45O56P67Q76R87S98S:6R94V;4Y>7Y>5Y>3\@4`D6dI8kO:lP:mQ9qS9sU9uX:vY;xY:z\:|[8|[:|[8}\9~\7~\7~\7]9^8^8„^7„^7„^7„^7…_8…_8„^7ƒ]8ƒ]6„^9†`9‰c>Šd=Šd?Šd=ŒfAg@gBŒf?‹e@Šd?„^9…_;…_;…^=„]<ƒ\;‚[:Z;X9~W:|U8zS6yR5yQ7yQ7wR7xS8wT8wT8wT6xU7xU7xU7xU5zW7{Y6|Z7|Z7|Z7{Y4zX3yW2~Z6{W3yU1zV2}Y5\6\6~[3‚_7‚_7^6^4€]3\2\2~[1\2€^1€]3€^1\2|Z-zW-xV)yV,{Y,}Z0~\/\2‚`3ˆe;k=‘p;™v>¡~D¨†I­‹K³’M¸—P¼œQÀŸRÀŸRÁ SÁ SßSÁQÀœP¿›O¹“H·‘H²‹F¨@Ÿw<˜q:”o:”p<ž{E›{BA¤‰D²˜M¾¨UDZ[ζ^϶ZÓº]ÚÂbàÊgæÓlëÚpíßríâoüó~üõ€ýø€þüƒÿÿ‡þÿ‡ýþ†üýˆÿÿ‘ÿÿ”ÿÿ“þý‘üûûúŽûøú÷Œ÷ô‰ùö‹üøÿûÿý’ÿý’ÿþ“ÿÿ’ÿÿ‘ÿÿÿÿ‘ÿÿÿÿ‘ÿÿÿÿ‘ÿÿþþþþŽþþþþŽþþþþŽþþüþúÿ’ùÿ”úÿ”úÿ”ýÿ”ÿþ”ÿý”ÿü”ÿþ–ÿý•þõŽíä}ÛÒkÓÊcÚÎháØqèã}èå|ëé|óðûøƒÿþ…ÿÿ…ÿÿ‚ýü}ýþþÿ…ûÿ‡ùÿŠ÷ÿôþñýîÿ”íÿ•íÿ•ïÿ–ñÿ™óÿ›õÿŸöÿ óÿ ïÿæû–Þ÷’Þú”àÿ˜×ú”Ìî¿à‡¼Ü‰º×‡·Ò…¶Î„±Æ©¼z£¶v©»ª¾­Â‡®Æˆ«Èˆ§Å…£Á ¾€žº€ ¹‚ ¸„Ÿ·ƒœ·„š¶…—´†—³Š˜¶’›º›¤À©¨Ã°¤¼¯›°©›®¬¢µ³ ³¯²«˜­¦”© ‘¦Ÿ¥ž‘¦Ÿ’§ ‘¥œ¡˜‰š’†•Žƒ‡~‰w‚zr}wgvodumdsndslgsoerkbmi^ic^gd[d_Z`^X^ZW[ZTYUNRQJOKFHEGIFIKFNOJSTOYXS^]X`a\hjgimlnrsowzpy~q|‚q~†s€‰q{‡q{‡q{‡s}‰u~x{‚’}„”}‚•~ƒ–ƒ˜€‚—~€•z|‘wytvrt‰ruˆstˆqt‡rs‡qr†qr„pqƒqr„oq€nm}jiwedr_^lZYgUWdRXfU]j[br`gwbi{`gy\csZ`pX[jZYgZXe[U_\R[\QY]NU]NUYMQYMO\MR]MP`KPaKNdINfINaBH]>CY9>U58R46S57U79W99Y75Y62X51V50U63V74W:6W;7Y@<[C?^FD`KHbNMcQOdRPeQPjRRoUVu[\yaazadt^`oY[jVXiTYdQU`MS_LR^MU_NV\MT[KU[IU[IU[IU[KU]MW`PZcS]dU\gX_h\`l`docgqeioefmcdlaepdhqdkqdkncilailbjngoqjrqkuroxtq|sq|rr|tt~uwƒy{‡x|‡w~ˆx‡y‚‡|…Š}‡‰~ˆŠ~‰‹Š•—›ž“ ¦—¤­—£¯”¡±”¡²’£µ§¹’­À™²Æ·ÈŸ¹È¢¹Ç¦½Ë¨ÀÌ¡·Â ·¿ ´»ž³¸Ÿ²¸ ³·£µ¹£¶¼›±¼—²½–°½”®»’¬»ª»Ž©¼¨»Š£¹†Ÿ³„𝅗«†—«†•¨†“¤…¢‰”¦ˆ“¥‰’£ˆ‘ ˆ‡œˆŽš‡™†˜…™‚Žššœ‘Ÿ’¡’¢€Ÿ‚Ÿƒ ƒ „‘¡‚’¡‚’¡“¡|}ž{‘žyœu™s‹—s‹—u‹™r„šsƒœuƒx„œxƒ—v}qt…ml|d`n_WdWKUSDKRAIUBHWBGVCGSCMUHRXKUXKURFPNBLK?IK?I<19;08:/79.68-58-5:-6;.7;+5;+5<+5=,6=,6>-7>-7@,5E.4H/2K05M36P38Q27Q27P16Q27P37N47M47K57J67I77J67N3:P2:P38P38P38P38P37P37P35P35Q46R57S76T87U98U96U95X;5Z=7[>6[?4]?4bE5fI7mN9nP8pR8sT8uV7wY7y[9|[8€_<_:_<_:€^9^8^8^8†`;†`9†`9‡`7†_6†_6†_6†_6†a7†a7†`9†a7‡a:‰d:Šd=‹f<Œf?Œg=g@Ži?ŽhAh>Œf?‹e>…b<„a;ƒ`:‚^:‚^:‚^:‚^:‚^<€\:[;}Y9|X8zV6zU8{V9{V9zU8zU8zU8zV6zV6zV6zV6yU3{W5{W3}Y5}Y5}Y5}Z4|Y3{X2}Z4{X2yV0{X2~[5^8^8^6„a9„a7„a7…c6…c6†d7†d7†d7‡e8‡e7†d7…c5ƒa4€^0~\/}[-}[.]/€^1_1‚`3†d6Œj=‘o?—t<Ÿ{?©…I°ŒNµ’P¹—P¼šR¿S¿žQÀŸRÁ QÁ QÁ SÀŸR¾œR¿›Qº–L·’K±ŒF¦ƒAžz<šw=œyA}D¤†J£‡H¦‹F¬”J¸¡QïY̸_н_ÕÁbÙÅdßËhæÔnìÛsðâuôèxöìyÿû†ÿü„ÿý„þþ„þþ†üý…üý†ûü‡ÿÿ”ÿÿ–ÿý”ÿü“ýú‘ûøú÷ŽùöøõŒú÷Žüùþû’ÿý”ÿÿ•ÿþ•ÿþ”ÿþ’ÿÿ‘ÿþ’ÿÿ‘ÿþ’ÿÿ‘ÿþ’ÿÿ‘þý‘þþþý‘þþþý‘þþþý‘üþ‘ûÿ—ûÿ—ûÿ—ûÿ—þÿ—þÿ—ÿþ—ÿþ—ÿÿ˜ÿÿ™ÿ÷’í倨ÐkÍÅ`ÒÉdÙÑnÝÙvÞÜwãázíê÷õ„þý‡ÿÿˆÿÿ†þÿ…üÿ‡ûÿŠøÿöþñý‘îû‘êù’å÷‘åú•éû—íýšðþœòÿžõÿŸóÿŸéù—áóÕé†Ïç…ÖòŽßÿšÞÿ›ØüœÅç‘Àß‘¸Ô‰¯É€¨¿y¡¶uš¬n˜§l£´}§º‚­Â‰¯ÈŽ­ËªÊ‹¤Ç‡¡Ä„¤Ãˆ¥Âˆ¦ÁŠ£Àˆ¡¾ˆŸ½‰½Œš¾Â™£É¤¬Ï±­Ï·¥Á²™³¦˜¯§´¬™°¦•¯¤“ª §š¤šŒ£™¤šŽ£š£š¡˜ž–Œ›”ˆ—„‘Š{ˆu‚{hwrfupfrpfrngsqeqmcml_jf_hg\ebXa`V_\W]]TZXNTTJPNFKGGLHINJNPKRTOXYT\]X^_Zjlilpoquvowzmv{mx~p}…tŠpz†pz†qy†qy†szŠu|Œx~Žy€ƒ–€ƒ–ƒ˜€‚—€•|}’xxuursˆrsˆtrˆqr‡sq†rp…rp…rqƒqp‚ponm}jiyfeua`p]\jXZgY\k[ao`ftdjxek{djzagw_euZ]l]\j][h_Ye`Va`U]bSZaRW^OR`PQcPTcOQbLObIMaDI`AFY:?W7:T47Q12P22Q33S76V86W53W61V42V42U63V74W:6W;7X?;X@<[C?\GB^IF_LH`MIaLIcIHiMLoSRsYXtZ[rXYmSTiPSgNQbLO_HN]HM^IN_JO]HO\GNWCLWCNWCNWCLYENYHN\KQ]LR]LR^ORbSVfXXi[[h\\h\\h\\o`cmaemaei^bh]ch_dkdkpiqpjtroxvs~vtuuvv‚xw…y{ˆvz…u|†v}…x…{ƒ†|†‡~ˆ‰~ŠŠ‰••˜š‘œ¢¦›©Žšªš®Ž²‰¢¸Œ¨½”¯ÄšµÊ¸Ë¢¼Í§ÁÒ«ÅÔ¢¹Ç ¸ÄµÁ›³½³¾Ÿ¶¾¢¹Á¤ºÅœ¶Ãš¶Â˜´Â•²Â“°Â‘­Â«ÀŽª¿Œ¦½Š£¹‡²‰›¯Š›¯Š™¬Š—¨ˆ•¦‰–§‰–§‰•¥ˆ”¢‰“Ÿˆ’žˆ›‡š‰‘œˆ’œ‡“Ÿˆ–¡†–£…—¥„—¦„—¦€’ ƒ“¢…•¤‡—¦ˆ˜§†˜¦…—¥ƒ–¤”¢€“¡|’Ÿ{‘ž{‘žzxŽ›x‹štƒ˜v‚˜w‚˜{ƒ˜{‚•y|qs‚mky_YgZP[REOM>EL;COFF-7>-7?.8?.8A-6I04M04P16R38T49T49T49S38R27Q27P37N47M47K57J67K58N3:P2:P38P38P38P38P37P37P35Q46R57S68T87U98V:9V:7W:6Y<6[>6\@5]?5^A3cF6gK6nO:oQ7rS7tU8wY7y[7}\9~^8†d?†d>…c>„b<…b<„a9ƒ`8ƒ`8‰c<‰d:Šc:‰b7ˆa6‡`5‰_5ˆ^4‰b7ˆc9ˆc9‰d:Še;Œg=h>h>Ži?Ži?j@kAj@Ži?h>Œg=‡d<…b<„a;‚_9‚^:ƒ_;…a=†b>„`>ƒ_=]=[;~Z:~Z:~Y<Z=|W:|X8|X8{W7{W7{W5zV4zV2{W3|X4}Y5~[5~[5~[5}Z4}Z4|Y3|Y3|Y3}Z4\6‚_7„a9…b8†c9‡e8ˆf9‰g:‹i<Œj=Žl?Žl>Žl>k;Œj<Šh8ˆf8…c3ƒa3‚`0]/_/‚`2‚`0ƒa3‡e5Žl>–r@žyB¥E¯‹M·”T»˜V½›T¿UÁŸU¿žQÀŸRÁ QÁ QÁ S¿žQ¾œR½›S¸–Nµ“L¯ŒH¥„A ~?ž~A£ƒH§‰K«Pª‘N®–L´ŸP¾©VƵ]ϾbÔÄdÝËiâÐlèÖpìÞuñãxõé{úðüõÿÿŠÿÿ‡ÿÿ†þÿ…ýþ†ýþ†ûÿ‡ýý‹ÿÿ”ÿý—ÿü–ÿú”ýø’ûø‘ú÷ùöú÷ûø‘ýú“þü•ÿý–ÿþ—ÿý–ÿý–ÿþ”ÿþ’ÿþ”ÿþ’ÿþ”ÿþ’ÿþ”ÿþ’ÿþ”ÿþ’ÿþ”ÿþ’ÿþ”ÿþ’ÿþ”ýÿ”ýÿ™ûÿ™ýÿšýÿ™þþšþÿ™þþšÿþ™ÿý™ÿÿ›ÿû˜ïë‡ÛÕsÍÈdÍÇeÑËiÕÒqÕÕsÝÛwçå~óó…ûû‰þÿŠÿÿ‰ýÿ‰ûÿŠøÿóüîù‘è÷’æô’âó“ÙíŒÚïÞò“ãô–åô—çô˜èó—èó—Öã‰ÊÛ¿Òv¾ÖxÉæ‰×ùšÝÿ¡Üÿ£È隿ߖ´ÏЦ¿}œ²r•©l“¢k‘Ÿjš«wŸ±}¦º…©Â‹©ÆŒ§É§Ë§ËªÌ­Ì‘¬Ë’ªÉ§Å¤Å¢Ç“£É˜¦Ð¢²Ý²¿éÅÁè˴׿¤Ã±›·¨š´§–²£”°¡¬¨™‰¤•‡¡”ˆ “ˆŸ•ŠŸ–‹Ÿ–Œ —ŽŸ—Œ•†•Ž|‹„tƒ~ixuiusfrpfrpfrpfrpcml`ji`ih]feYbaW`_X^^U[[OUUKQQGMKHNJKPLNSOSUPVXSZ[V[[Ygihlpqswzrz}ov~mvpz„s€‰r|ˆq{‡qy†qy†ry‰szŠu{‹v|Œ‚•€ƒ–ƒ˜€‚—€•{|‘xxwusq‡tp‡tp‡so†sp…qo„ro„qo„pm€on€ml|jiygfvbaq_^l\[iZ^j]`obetdjxfl|gm}fl|fizacrbaob`nc]idZecWabU^dU\cSVfSUgSUfPSdKO`FI]>CZ;@R25P03O/0M//M//O32R65T85V74V74X64U63U64U63T73T73X<9W>:Y@\DB^FD_GE_GEeIHiMLpTSuYXwZ\vY[sVXoUVeKLbIL`GJaHKcJNdKOcJN_HNYBJXAIW@HVAHVAHVCGWDHXEGUBDUEFXHI[ML_QPbTQbWUcXVi[[iZ]fZ^dX\bW]dY_h^fkdkmgqqkutq|wtvtuuwv„wy†{}‰z~‡y€†{ƒ†~†ˆŠ‰‚Œ‹„Žˆ’‘‰”–‹–œŠ”ž†’ †‘£ˆ“©ˆ—®†ž¶‰¥½‘«Ä–°Çš´Ëž¹Î¤¿Ô¨ÃÖ£¾Ñ »Ì¸Éš¶Ä›µÄ·Æ ºÉ¡½Ë¸É›¸È™¶È•´Æ’±Å¯ÄŽ­Â«ÁŽªÀŒ§¼Š ·ŠŸ²ž°Žž®œ­Œ™ª‹˜©Š—¨‹–¨Š–¦‹”£‰“Ÿˆ‡šŠ”ž‰–ŸŒ˜¤‹›¨‹«Š«†œª†œª‚•¤…˜¦ˆ›ª‹ž¬ž®‹ž¬‰œ«‡š¨‡š©„—¥~”¢}“ ~”¢~”¡|žz‹›w‚–w”w~‘z“|’xy‹qo}jftYQ^TJUL?IH8BI5>I6HQAKOBKK@HG=ED:B=2:<19;08:/79.69.6;.7-7?.8?.8@/9@/9C.7K05O13R25T47W48W48W4:V39U28S38R38Q48N59L69L69N59Q3;R3;R39R39R39R39R38R38R46R46S57T68U77V88W99X:8Y:7[<7]?7^@6`?6bB5fG5jK6pP9qQ8uS7xW8{Z9}\9_:‚`:ŠgA‰f>‰f@ˆe=‰c<‰d:ˆc9ˆc9f=Œe:Žd:d8Œc7‹b6Œa6‹b6‹d9‹d9Œe:Žgi>i>i>‘j?‘j?‘j?‘j?h=Žg<‹f<ˆe=…d;„c:ƒb9ƒa;„b<†d>‡e?‡e@…c>ƒa>‚`=_<€^;^>^>[;~Z:~Z:}Y7|X6|X6{W5{W3{W3|Y3~[5\6€]7€]5€]5\4~[3\4\4€]5^6„a7‡d:‰f<ˆe;‰g:‹in>Žm:‹i9‰h5ˆf6‡f3‚`0ƒb/ƒa1ƒb/„b2ˆg4n>˜t@£E¬…J¶R½—V¾›WÀžW XáWÁ SÁ SÁ¡TÀ S¿ŸT½R»›RºšQ´“L¯‘KªŒF£†BŸ‚@¡…D¨ŒK­”Q®—S®šQ³ S¹¨VÁ±ZʽaÒÅe×ËiâÔqçÚtíàxðå{óè|õí~üõƒÿû†ÿÿ‰ÿÿˆÿÿˆþÿ‡ÿÿ‰ýÿ‰þÿŒÿÿÿû‘ÿú•ÿù”ÿø“ÿ÷’ü÷‘ü÷‘ûöûø‘üù’ýû”ÿý–ÿþ—þÿ—ýþ–ýþ–ýþ–ýÿ”ýþ–ýÿ”ýþ–ýÿ”ýþ–ýÿ”ýþ–ýÿ”ýþ–ýÿ”ýþ–ýÿ”ýþ–ýþ–ÿÿ›þÿ›ÿÿÿÿ›ÿÿÿÿ›ÿÿÿÿ›ûû™ÿÿ›ÿþ÷õ‘æâØÔqÒÎmÑÎmÓÒuÓÔvÙÙwâã}íï„÷ù‹ûþüÿúÿ÷ÿóüëøäòÞï‘Ûë’Øë’ÒæÓçŽÖè’Ùè“Úè“Úæ’Úã’ØáÅкÇw°Âp´ÊwÀ܈Íí˜Õù¢ÙüªËë¢Àß›±ËŠŸ·y’§nŠfŠ˜eŠ˜gŸp”¦v™¯~œ·„Ÿ½‡¡ÄŒ¥Í‘ªÒ–«Ñ–¯Ò˜°Ñš­Î—ªË”¨Ë“©Ð™«Óž´à­¿ï¿ÊùÍÈöѼåŮҶ¤Ä¬ ½§šº¥˜¸£“² ­›Š§•‡¢“†ž…‡‘‰Ÿ“‹ —Ž¢™ š‡˜’|‡t„mywkuvgqrgqrgqrgqremockmaik^fh]be[`cY^aV[^PUXLRRGPMHQNLRNOUQRWSTYUWYVXZW`bahlmswzt|rynw€oyƒq{‡t|‰t|‰s{ˆrz‡sy‰tzŠu{‹v|Œ~”‚•€–€–~”z{xvŽvtŒtnˆtnˆto†sn…sn…qm„rmƒqnƒpknk~mj}kh{gduc`q`]n]\j[Zh[]j_ancgsfixil{jm~jm~fhwgftfdrf`le]heYcdWaeV]hUYjTWiSVhOScIL^AEY:?U58L,/L,/J,,K--L0-M40P73R95X:8X:8X97V86U77S53R42Q31Y;9Y=:Z>;Y@<[B>]D@_FBbFChJHlNLrTRwYWy[[y[[wYYtXWiMLeKLeKLgMNjPSkQTjPShNQaFM_FL]DJXAGV?EUACT@BTBBQ??P@@RBBUFCXJG\OI_QNaSPbTTcUUaUW`TX]RX`U[dZbf_ficmmgqqnytp~sqtr€ut„uw„|~Š{ˆ|‡}‚†~‡†‚‹ˆ†Œ‡’އ‘ˆ’“ˆ“™‡‘›„ž„ŒŸ…¦…“­‡Ÿ¹‰¤¿¨Ã‘­Å“¯Ç—³Ëœ¸Ð ¼Ô¦ÂÚ¤ÀÖŸ¾Óœ»Ð›ºÏ›ºÎ¼Ðž½Ñœ»Ïš¹Í˜·Ë•µÊ’²Ç¯Æ­Ä«Ã¬Â¨½Œ¢¹Œ¡´¡³‘¡±’Ÿ¯­Œ™ªŒ™ªŽ™«™©–¥Š” ˆ’ž†œ‹•¡‹—£Žš¨ªŸ­ŒŸ®‰ž¯‰ž¯„™ª†œªŠŸ°£±‘¤µŽ¤²Œ¡²Š ® ±‰œ«„—¨ƒ–¥ƒ–§”£~¡{‹›y‚“w|ux‹vw‰yxˆuslhwe_mTLYPDPH;ED4>E1:E28E07D/6F2;G6@K:DM=GM@IK@HG=ED:B>3;=2:<19:/7:/7:/7.8>.8?.8@/9@/9A0:A0:D/6M04R/3T15W37X48X48Z2:X3:V18U28S38Q48O49N59N59N59Q3;R3;R39R39R39R39R38R38S57S57T68U79V88W99X::X:8Z;8\=8^@8_A7aA6cC6gH6kL7qQ:rS7vT8yX7|[8_9ƒa;„c:Šg?Šg?Šg?Šg?‹f<‹f<‹f<‹f:f;g:f:f:Že9Že9d7Že7e;ŽgŽg‡e?ˆf@ˆf@‰gBˆfA†dA„b?ƒa>ƒa>ƒ`@ƒ`@]=]=€\:[9~Z8}Y5|X4|X4}Z4~[5€]7‚_7ƒ`8ƒ`8‚_7‚_7‚_7ƒ`8„a9„a9„a7…b8‰f<Œj=Šh;‹in;l9Œk8Œk8Œk8†e2†e2†e2…d1†e2‹j7”s@œyC¨„J°ŠL¸’S¾˜W¿œXÁŸWáYÅ£YÄ£VÄ£V¢UÁ¡T¿ŸT¼œQ¹™Pµ—O­IªI§ŠF¢‡B …B£ŠG«’O±šT±T´£Uº©WÀ±\ȺaÎÄe×ÍlÝÔoçÛwëßyðå|ðè}ñé|óí{úô‚þû†ÿý†ÿÿ‡ÿÿˆÿÿ‰þÿŠÿÿ‹ÿÿÿÿ‘ÿ÷Žÿöÿö’ÿ÷ÿ÷’ÿøÿ÷’ýøüù’ýú‘þü•ýÿ”þÿ—ýÿ•üÿ–üÿ–ýþ–ýþ–ýþ–ýþ–ýþ–ýþ–ýþ–ýþ–þÿ—þÿ—þÿ—þÿ—þÿ—þÿ—þÿ—þÿ™ÿÿÿÿÿÿÿÿÿÿÿÿþÿþÿûýšþÿÿÿžüüšññææ„àÝ|ÚÚzÙÚ}ØØ~ÙÚ|àâêí†óö‹ùýŽúÿ‘øÿ‘ôýëøãñÛìÔçŽÏâËáÍã‘Íã‘Îá’ÐÞ‘ÏÛÎØÎÖÍÔŽ¾Èƒ³¾y©¸s«¿x³Í„¼Ú’ÅçËï§Êê§ÀÞž¯ÈŽ™°xˆœg^Œ^€aˆ—lžr’¨z”®~•µƒ™¾ˆ¢É’©Òš«Ò›®Ó±Ôž¯Òœ¬Ï—ªÐ—®Õž±Ü¦ÀñºÇùÄÈüËÁõǸ署ܸ­Ò±©Ê­¢Âª À¨›»¤•µ ‘®š‹¨–‰¡‘‡Ÿ‘ˆž’Š ”Œ¡˜¤›Ž£œ†›”{‹s†‚nzzkuvhrsfpqgqrgqrfnpdlnbjl_gi^cf\adZ_bW\_QVYMSSIRQKTQNTPPVRSXTSXTUWTUWTZ\[bfgnrusz€t{ƒqzƒpz†pz†s{ˆs{ˆrz‡qy†sy‰tzŠu{‹v|Œ|’}€“€•~”|}’xyŽwuuqŠul‡ul‡um…tl„tl„qlƒql‚ql‚oj~ni}mh|ifyfctb_p^[l\ZhYWdZZf]\j^`mbdsdgvfizhi{jiyihxieticqg_lg]hfZfhXbkV[mTXjQUfKPbEI[H8BI3;=2:<19;08:/7:/7.8?/9@/9A0:A0:B1;B1;E07N/4S/1U13Y25Z38Z38[28Y27W29V39T49S49R5:O6:O6:P5:R49a@9bA8aA6cC4iH7lL7sQ8uS7xU7{X8]8‚`:„b<†e<Šg?Šg=Œg=Œg=h>h>Žg<Žgƒb?ƒb?ƒb?…c@ƒ_=‚^<];€\:[7~Z6}Y5|Y3\6€]7‚_7„a9…b:…b8…b8…b8†c;ˆe=‰f<ˆe;†c9‡d:Šh;Žl?‹i<Œj‘p;n9Žm8Žm8Žm8n9Œk6Œk6‹j5Ši4‹j5‘p;™xC¢I¬ˆN³O¹“T½—V¿šVÂVáYƤZƦYÅ¥XĤY¢W¾žUºšQµ—O³•M¦‰E¤‰F£ˆEŸ†C ˆB¤G­–P²žUµ¤Vº«Z³^ǼcÎÃgÕÌmß×uåÝxèßzìã|ðç~ïè}íçyïéwöð~ûøƒþü…ÿÿ‡ÿÿŠÿÿ‹ÿÿŽÿÿýÿÿýŽÿô‹ÿó‹ÿôŽÿõÿöÿùÿú’ÿü‘ýú‘þûÿþ”þÿ“þÿ•ýÿ“üÿ”ûþ“ýþ–ýþ˜ýþ˜ýþ˜ýþ˜ýþ˜ýþ˜ýþ˜þÿ™þÿ™þÿ™þÿ™þÿ™þÿ™þÿ™þÿ™ÿÿžÿÿ ÿÿ ÿÿ ÿÿ ÿÿ ÿÿ ÿÿ ÿÿ¢þÿ¡ÿÿ þÿŸûýœöø—ððêëáä‰ÞáˆÛßÞâæë…ïõ‹öüùÿ”õþ“ïú‘åôÜëŒÒåŒËÞŒÅÚÂØÃÙÂÖÂÓÃЋÂÍ‹ÁÊ‹ÃÉÂǺ‰­¶} ­u®wµ{Ÿ¼‚©Ëµ×›Àߣ·Õ™§À‰‘¨t“cy‰\z‡\}Š_…”k‹œr‘¦{”®’²ƒ”¹†›Ã¢Ê•©Ïœ­ÒŸ¯Ô ­ÒžªÏ™«Ò›±Ú¢µâ©Åø¿ÈÿÅÈÿÈÁ÷ü躴ݳ®Ò®§Ê¬¥Ç¬¢Âªœ¼¤˜µŸ’¯›‘©™Ž¦˜Œ¤—¥˜¦œ‘¨ž§ŸˆŸ™}“vŠˆo{{muwiqsgoqhprhprinqgloejmbgj^cf\ad[`cW\_RWZNTTKTSKVRNWTRXVSXTSXTTVSSURWYX\`agknmtzsz‚t}†s}‰s}‰ow„ow„nvƒnvƒpv†qw‡ux‰vyŠ{~‘{~‘}~“|}’|zywus‹soˆul‡uk†uk†tj…tjƒrj‚rjrjqi€nilg{idxeara]n]YjYWeYWdXXbYYeY[h[]l]_n_`rabtfewfeuhdsicqianj`kk_kn^hnW]nSXiNSeHM^AEX9>T49Q16I+-I+-J,,K/.K10M53M83O:7S9:V9;W:<^@>bCAeGEjKHlMJmNLpQOtUSxYWz[Yz[YyZXwXVz[YwYWvVWuWWuWWsUUnPPiLNfINcHMaFK_EH^DG\CFZDFZFE[GFXFBVD@TE@UFAYJC\OG^QK^PObTTfWZeY[eY]dY_e[cg]ekcnmgqokyplzqo}spxuˆ{zŠ}‹|‡|…}ƒƒˆ…„ˆˆ‘ŒŒ•š–‘›š“ž¢“§‘š«‘™®‘›´ž¹Ž¥ÄŽ©Ç«É«ÉŽ«É‘®Ì•²Ð˜·ÔŸÀߟÂà¡Äâ¢Åã¢Çä¢Çä¢Çä¢Åá¢ÄߣÃÜ ÀÙ›½Ö—¹Ò”¶Ï”´Í’²ÉŽªÀŒ§¼‰¢¶Œ¡²¢±‘£±“¡®‘Ÿ¬­Ž°‘ž¯‘­‘š«–¥‰“Ÿ†œ‰•¡‰•¡‰—¤ˆ˜¥‰šªŠ¬ŠŸ°Š¡³ˆ¡µ‰¢¸Š£¹Ž¤»¦½’¨¿”¨À”¨À“¥½’¤¼ ¹Šš³„’¬~Œ¦{‰£}ˆž~’vuƒjiwfdrgcqf`n]WeUMZSITNBNG:DD4>C2A8=?6;?4<>39<19;06;.7h=h=j=g:g:Žh9i:‘h:’i;“j<“j<‘h‘k>j=i<Œg:‹e8†d7„c8‚e9‡h<‰j>ŠjA‰i@ˆhA‡g@ŠjCˆhA‡g@…e>„d>ƒc=„d>…c>„`<ƒ_;‚^<];[9~Z8}Y5}Y5€]7^8ƒ`8…b8†c9‡d:‡d:‡d:‹fŽi?Œg;Še;‰d8h<‘l?Ži<Ži’n>”p@•qA—sC˜tB—sA•q=“o=‘m9l8l8’n:’n:“o;“o;’n:l8‘m9—s? |H§„L­‰M´ŽO¹“T¼–U¾™S¿UáWƦ[Ȩ[Ũ\æZÀ¢Y¼žV·™Q²•O¯”OŸ†CŸ†Dž‡Dž‡CžŠC£H¬˜O± R¸©X¿°[źaÍÂfÔÊkÛÓpåÝzìäëß}ïãóçƒðç€ìãzîæyôî~ùöƒÿü‰ÿþŠÿÿÿÿ‘ÿÿþÿûþûûúó‹ýñ‹ÿóÿõÿø‘ÿú’ÿü”ÿý•þû’þý“ýÿ”þÿ•ýÿ•ýÿ•üÿ”ûþ•ýþ–ýþ–ýþ˜ýþ˜ýþ˜ýþ˜ýþ˜ýþ˜þÿ™þÿ™þÿ™þÿ™þÿ™þÿ™þÿ™þþšÿÿžÿÿ ÿÿ ÿÿ ÿÿ ÿÿ ÿÿ ÿÿ¢ÿÿ¨ÿÿ¤ûÿ üÿ¡ÿÿ£ÿÿ¤üý õøçì’áçÜã†Üãƒãë†êõòý”õÿ˜îý”éú”áò”ÖéÎàŽÆØŒÀԾѹ̌·ÊŠ¶Æ‡´Â„´¿ƒµ¾…·¾ˆ·¾Š¶½Š§¯~—£soŠoŠ¢r–°¤ÀµÐ®Æ’Ÿµ„ r}Žbz‡\|ˆb€Œf„’nŒœw”©‚–¯‡•±ˆ”µŠ—½ŽÃ”¨Ìž¬Ð¢¯Ó¥­Ñ¡©ÏžªÒž°Ü©µæ¯ÂùÂÈÿÊÊÿÏÇÿÍÆúÉÃôŸ庬խ¦Î¬¦Ë¬¤Æ« Â§œ¼¤˜µŸ”±“®Ÿ©›Žªž«Ÿ‘¬£©£‰¢ž~—”zŽm{|lvxhrtfprgqshpsgorempcknbgk_dh]bf[`dX]aRW[NSVLUTMVUOXWRXXSYWRVUQUTPTSUYZY]``ehhpsox}t…v€‰v€Šltks€kr‚kr‚msƒou…sv‡twˆy|{||}‘}{{yŽxuŠuqˆsn…uk„wj„wj„tjƒsi‚rj‚rjqi€phphlg{hduf_qaZj]Vf[Td]Wc]WcZWbXVcXWeYXfY[jZ\kcbrdbpfbqicqlaonbppbosblpW]pSXjMRcFJ\=BV7\><\=;\=:]>;_=;`>gDBjHFoMKqOMuSRxVU}YY€\\‚^^€^]]\|][€a_~_]zZ[xXYvVYrRUjKPeFKcFJbEI_EH^EH]DG\FH]GI]IH_LH]JDZGAWF?XG@YJC\OG^QK`RObWUj\[j^^j^^h^_h_bgaengnoispmxpn{po}tsƒzy‰}Ž‚†‘‚††Œƒˆ‹„ŒŠ“˜•’›˜“œ–¡£™£¬˜¤°–£¶•¡¹”¢½”¥Ã‘¨È‘«Î’¬Ï’¬Ï¬Ñ“¯Ô—µÙ™ºÝ›»á¿ä Äè¤Èì¥Ìí¥Ìí¥Ëï¤Ëì¥Êç¤Çã¢ÅãžÁß›¾Þ˜¹Ú˜·Ö—´Ò¨ÃŒ¤¼Š µ ± °“ °“Ÿ­‘«‘œ®’¯“ž°”®“šª•¥‹‘ŸˆŽœ‹“ ‹“ ‰“Ÿˆ”¢‰—¤Šš©¬ŽŸ±¢·Œ¢¹£ºŽ¤¼¦¾’¨À”ªÂ—«Ä’¦¿”¥¿“£½›¶…¬~ˆ£~…¡€„€wshepa^ic]iaYdYQ\RHSTHRNBLH;DE5?C4;B19@/7@,5C06?,2;*0;,1=15?37>37=26=07=15=07=15?07?05?07@/5>-5@-3?+4@-3A-6C06G2;K28N+1S*0T+1U,2U.3W05V26U26T15R25Q14P24O24O56P69Q7:O27O19P2:P2:R39R39T49T47T47T45U64X64Z86[97\:8]<7b@7b@6d@4f@3hC3mF5rI7uK5xN5zQ5~U5‚Z7„^9‡a:ˆb;‰d:Šc:Šc:‹d9Œe:e;Žg–m?–m?—n@˜oA˜oA—qB—qB’n>‘m=l<Žj:Œh8‰g7Šf6†f7‡h<„i>†i?‡j@ˆkA‰lBŠmCŠmCŠjA‰i@Ši@‰h?†e<ƒb9`7€]5^6„a;‡c?ƒ_=~Y<|W:‚^>‡cA‚^:…b<ˆe;‰g:‡e8‡d:ˆe;Œg=•nC”mB“lA‘k>i>i•o@–p?˜rA˜rA˜rA—q@”n=“m<“m>”n=•o>—q@™sBštC–q=™t@œwBxCŸzE¢}H§‚M«‡M´ŽP¶O¸•S½šV YĤ[Ʀ[ŨZÆ©]Ä©\¨]¾¤Z¶žV°˜R©M¤Jœ‡F›ˆF›ˆF›ˆDŸŒG¨–L´¢V¼­\³^ʼcÕÈlßÒråÙwçÞwëâ{ðä€ôã‡õáŠó߆ðàòäƒ÷é†ûï‰ýô‹ÿþ”ÿüýûŽýüÿÿ“ÿÿ—þÿ•üþ“üú•ýù–þú—þú—ÿû˜ÿý™ÿþšÿþšüú–ûû—ýý™þþšÿÿ›þþšþþšýþ˜ÿÿ˜ÿÿ–ÿÿ˜ÿÿ˜ÿÿ˜ÿÿ˜ÿÿ˜ÿÿ˜ÿÿšÿÿšÿÿ›ÿÿ›ÿÿ›ÿÿ›ÿÿ›ÿÿÿÿÿÿÿÿŸþÿŸþÿ¡þÿ¡þÿ¡þÿ¢þþ¤þþ¤þþ¦ÿÿ§ÿÿ§ÿÿªÿÿªþÿªíöåð”ÛéŠØè†ÜîŠâ÷çþ–èÿ™ìÿ âúšÕì”ËÞÄÖŒ¿Î‹¹ÇŠµÃˆ²Á†°À‚¬¼~§¶{¢¯wªt›¥q™£q— q“œoŒ•j„b~‰_€b‰•mžuš«–©|¡w†—mŽg}‰c~‰gj…“rž|—ªŠš²’—²‘•³‘—¶”›»–¡¿›¤ÂœªÊ£¬Ñ¨¦Ï¥ Ï£§Ú¯³ë¼½øÊ¿ýÎÇÿÔÉÿØÈÿÕÀõË·çÁ°Þ¹¬Ú¶¦Ò¯ É©Á¥›½¤š¼¤˜¹¤–·¦—¹©•·©“´«‘²«¬§†£¡~–˜xn}€ny}juyitxjuyktyhqvfot_hm^ekZagV]cSZ`PW]QV\PU[MRVMRVNSWOTXPUYPUYQVYQVYOWYRZ\Xbceopp||x„„y„†v„‡r|ˆqz‰ovˆmt„lr‚kqmpmpuvˆyxˆ|{‹~{Œ|yŠyu†tprk}vj€vj€uirh€pfme}kc{hczje{idziavg`rd[l_Wf^Sc[P^^P_^R^^T_\TaZWbYWbXXbWWa^^hb`kicoodrqcpsaor]lrZguZasTYkLQaBGX9>R46P24P24L.0L..N00P20P41R63T85R95U<8V=9W>9Z>:]@:`B:cB9dB9hC:lF=nG@oHCpGCrJHwOO{SSyRS{STUW…X[…[\ƒ[[\Z|]Z‚ea€b`}]^zW[tQWpLVjIThIQjKPhKMdKN`JL^JL]JL^LL^LJ`MG_LE_MC_MC`OE`RIbUMdWQkaXmd[qg^qhaofamebogenhhkghnlqqrwsv}txƒx|ˆ|‚Ž€ˆ“‰›‰›ˆ™ˆ•’–’—›–›Ÿ˜ £‘š¡˜¢¬ªº¬¿—¨Â“¦Ä”¨Ë–¬Ñ—®×˜¯Ù˜±Ú—¯Û•°Ý™´ážºé¡À랿ì¡Äî§Êô«Ñø®Ôû«Ó÷¨Ðô¡ÌîÈê™Ä瘿旼斷⒲ۑ­ÔŒ¤ÆŽ£À‘¡ºŸ´‘œ®”®–­™Ÿ¯“˜«’—ª“˜«—š«™š¬˜—©’‘¡ŒœŽ›Š‰—‚„‘}}‡“‰›”¤‹–ªˆ—®‰™°Œž¶£¼“©Á—¬Ç˜­È˜¬Ç”¥Áž¹›·”™¶‘•°‹‹§†‚™~zˆrmt`[bXQYYRY[QYWMURINPEKMBHI=AD8<@46@14?03@039),9),9),9),9*-;,/=.1>/2=15=15?05?05?05?05@/5@/5@-3@-3@-3@-3B-4D/6F18K28O,2S*0T+1T-2V/4U15U26U26R25Q14P24O13O24P35P67Q7:O27O19P2:P38R39R38T47T47T45U64W53Y75[84\95]:6^;5b@6d@4e?2g@1lB4pE4vI6xK4{M5}P3€U5„Y6…]9ˆa:ˆc9Šc:c;c;c9Žd:e;f<Žh;Žh;Œh8Œh8‹i9Œj:l9Žm:n;’n<–n=—m=–n=—o>—o>—o>–p?–p?l:k9k9k9Œk8Œk8‹j7Šj9‡j>†k@†k@ˆkA‰lB‰lBŠmCŒmAŒmAlAlAŒk@Ši>ˆe;†c9„b5^4„a7…a=‚^<}X;|W:\?†bB„`<‡d>‹h>Œj=‹i<Šh;Œi?kA—qD˜oC—nB–mA•l@”k=”k=”k=—n@˜oAšrAœtCœtCuDœtAœtA—o>–m?–m?–n=—o>˜p?šrA›s@˜p=›s?ŸwC¡yE¢zF¦H¬…N°‰P·‘R¹“R¼—S¾œU YĤYÅ¥ZħYÆ©]Ä©\¿¥[¸ X²šT«”P§ŽL£‹Kž‹IžŒJŸŽI I£’JªšM´¥T»¬YȺbÐÃgÚÍoã×uèÜxëßyîãzòäøãŠøß‹ôÞˆó߆õâ†÷éˆüî‹ýôÿü•ÿû“þù‘ýü’ÿþ—ÿÿ™ýÿ—ûþ—ûû—ûû™üüšüüšýý›þþœþþœÿÿúú˜ûû™ýý›þþœÿÿþþœþþœýý™ÿÿ˜ÿÿ–ÿÿ–ÿÿ–ÿÿ˜ÿÿ˜ÿÿ˜ÿÿ˜ÿÿšÿÿšÿÿ›ÿÿ›ÿÿ›ÿÿ›ÿÿÿÿþÿþÿŸþÿŸþÿ¡þÿ¡þÿ¢þÿ¢þþ¤þþ¦þþ¨þþ¨ÿþ«ÿþ«ÿÿ­ÿÿ­ýÿ­òú¥éöžáð•ÚîÛñÞ÷’ãý˜åÿãþŸÛõšÐ镯ÝÁÒŽ¼Ê¸ÅµÂŒ±¾†¬»‚¨µ}¡°wªt˜¥p’žl™j˜kŽ•k‰g‡a|€[z€\~‚_€ˆc›u‹›tŠ™r„“li€Œh€Žmƒ‘p†“uŒ}“¦ˆ–­•®‘”®‘”±“–³•¸™¡¼¥Ä¤§Ìª¢Ë©Ì¨¢Ù²®èÀ¹õϾüÕÅÿÝÉÿßÅýÚ½óѶçǰáÁ©Û¸¤Ó±žÉ«›Â¥›¿¥œ¾¦›¾ªš¼«˜½¬”º­’¸­²«¬§„¡Ÿ|”–uŠn}‚kx~hu{fsyitzitzgrxepv_ho]fmZaiV]eSZbPW_QU^PT]NSYOTZOTZOTZMTZNU[NVYNVYOYZT^_]iihttsy…ƒyˆ…x†‡u‰s|‹pw‰mt„lr‚kqnq‚op‚vu…xw‡|zˆ}{‰|x‡xtƒun~sj{th|uh|sg}pg|oe}ld|id{hczje{idxiavf_of[laVf^R`]O\_O\`P]_Q^_U`]Wa\Yb\[c[[c``hcbjhblndorbot_nt\luYgtV^nOTdEJ[9[@9_A9cB9eC9hD8pH>rJ@wLCyLF{KG|LJ€PPSS{RP{QR~RS€SVƒVY‚Z[]]`^ƒfb€b`|][xVWsPVnMVkKXiKUkLQiMLdKN`LM^KO\LM\LM_MK`MG`NDbNCcODeSIhWMiZSh^Upg^sk`wodwpfunfqlfrmirnkkijnnprsxtyy}†|ƒ‰”ƒ—ˆˆ‰›Š‘›”•š šž§›¢ª—Ÿª›§µ¡®ÁŸ¯È˜­Ê“«Í•¯Ô˜±Úš±Ý›²Þš²à™±ß—±âš´åžºì¡¿ñ Àñ Àñ¢Äò¥Êö«Ðü®Óý¬Óú¨Òø£Ñõ ÎòÈò›Äð›Áò™»ë•´ã“®Ù“©Ð“¦Æ“¡¼’³’š­“˜«–™¬˜›¬—š«—š«–™ª—™¨—–¨•’£‘ž‰˜‹‡–ˆ„’ƒ~|‰~|‰‹††’ˆŠ—€…˜‡œ~Š €¦†–¯Šž¶¥½“©Á“§À‘¢¼‘·“š¶•™´““­‹‡ †~“yq~lel]V]VOVXOTXOTTKNNEHNCGLAEJ>@E9;B66?33@22?119)*8()8()8()9)*:*+<,-=-.=15=15?05?05?05?05@/5@/5A.4@-3@-3@-3B-4D/6F18J17P-4T,4T,4U-5V.6U07U28U28Q16P05O05N/4N15O26O58P69O27O19Q28Q28R39R38T47T47W56X65X64Y75[84\95]:4];2c>5c?3e?2hA2mC5qF5vI6xK4|N6~Q4‚U6„Y6†^:ˆa:‰b9Šc:Žd˜n>—o>–n=–n=–n=“m<“m<Žj8k9k9k9Žm:n;n;Žn=‹l>‰l@‰l@ŒmAŒmAŒmAŒmAŽmB‘pE’pC’pC‘oBnAk?h<Œg:‚`3„b5„a;€\8|X8{V9€[>…a?†c=‰f>Žl?m?m?m@‘oB•pDštG›rD›rDšqC™pB—n@—n@–n=œtCœtCžvEŸwFŸwDŸwDžvCžvC˜p?˜p?—o>–n;–n;—o<™q>™q=™q=œu> yB£|E¥~GªƒJ°‰P´R¼”V½—V¿šVÀžW YãXãXÁ¤Vħ[À¥X¼ WµšS¯”O¨L§‹J¤‹I¤K¥’M¨–Nª˜N­›O³¢T»ªXÁ±\ÔÄlÛÌqãÔwêÜ{íß|ïâ|ñä~ô䂸ãŠùá‹õ߉ôá…öã…÷éˆüî‹üóŽÿû”ÿú’ÿú”þü•ÿþ™ÿÿšþÿšüþ™ýý›ýý›þþœþþœþþœÿÿÿÿÿÿúú˜ûû™ýý›þþœÿÿþþœþþœýý™ÿÿšÿÿ˜ÿÿ˜ÿÿ˜ÿÿšÿÿšÿÿšÿÿšÿÿ›ÿÿ›ÿÿÿÿÿÿÿÿÿÿŸÿÿŸþÿŸüÿ¡üÿ¡üÿ¢üÿ¢üÿ¤üÿ¤üÿ¦üÿ¨üþªüþªýÿ¬ýÿ¬þÿ¯þÿ¯ýÿ±÷þ®ñý©êø¡ãóšÝð”Ûó•ßøšâý Øò—Ôî—Ìå”Ãٺ͋¶ÅŠµÄ¶ÃŽ¯¼†ª·¤®yœ©t™£q”nŒ•f‡Žb…Œb†‹c„ˆc€„a|}[vzYwxXtzX}‰c}Œc‚Žh‚Žhi‚Žj…p†”s†“uŠ™zŸ‚‘¥‰‘¨ŒªŽ«Ž«”®‘–³•»Ÿ¡Æ§žÇ©šÉ©žÔ´©âÁ¶ñѽøØÇÿâÈÿãÃùߺïÕ¶æÎ³ãɫټ¥Ò³È¬šÀ§›¾¨¾«ž¿¬¿®™¾­—»¯“·­²«Œ«¦‚Ÿy‘‘t‡‹n}‚kx~itzgrxhsyhsyhqxfov_fn]dlY`hV]eTXaRV_QU^PT]QV\PU[PU[PU[NU[MTZMUXMUXPZ\Xbdcnpnzzuy……y‡‡{‰Šx‚ŒwŒry‰nvƒlr€lr€orqs‚vu…wv†zwˆ|x‰|u‡yr„tmsj}qeyreypdzmdylbzkczhczhczidzhcwiavf_oeZkaVf^R`]O\^N[_OZ_R\_U^`Ya`]da`fbagcbhebijcknblr`lt^ks[iuYgpRZgHM[@H<>E99A55@22>008()7'(6&'6&'6&'7'(9)*:*+=15=15?05?05?05?05@/5@/5A.4A.4@-3@-3B-4C.5E07I06O.5S.5U-5T/6T/6T17U28S38P05N/4N/4M.3M04N15N47O58O27O19Q28Q28R38R38T47T45X65Y76Y75Z94\95\95]:4];2b=4c?3f@3iB3nD6sH7wJ7yL5~P8R5ƒV7†Z7ˆ]:ˆa:‰b9‰b9c˜n>–n=•m<•m<”l;‘k:‘k:l:l:l:‘m;n;oŽoAŽoCŽoCŽoCnCnAnCnA”rE–qD–qD–qD•pC”oB“m@‘m=ˆd4†d6…b:^8}Y7}Y9]=†b>‡d<‹ižvEŸwF xG xG xEŸwDžvCuBšr?™q>˜p=—o;—o<—o;˜p<™r;›t=Ÿx?£|C¦F©‚I®‡L´T¹’WÀ˜Z›ZÜYÄŸYÅ ZáY VÁ¡TÁ¡V¼ŸS·™P±“K­J«ŽJ«ŽLªL­—N®›O±žRµ¢U¹¦WÀ®\É·cоháÐvçÖzíÝ~ñá‚òâ‚óãô䂸å†ùä‰úâŠöáˆõâ†÷䆸ê‰ûíŠûòÿø‘ÿú”ÿû•ÿý˜ÿÿšÿÿ›þÿýÿœÿÿÿÿÿÿÿÿÿÿžÿÿžÿÿžÿÿžúú˜ûû™ýý›þþœÿÿþþœþþœýý™ÿÿšÿÿ˜ÿÿ˜ÿÿšÿÿšÿÿšÿÿšÿÿ›ÿÿ›ÿÿÿÿÿÿÿÿÿÿŸÿÿŸþÿ¡üÿ¡üÿ¢üÿ¤üÿ¤üÿ¦üÿ¦üÿ¨üÿ¨üþªüþ«üý­ýþ®ýþ°þÿ±þÿ³ýÿ³ùÿ³÷ÿ²ñü­éö¤ÞðšÛï–ÛòšÝõÐê“Îç”Éá•À×·Ì‹±Åˆ²ÃŒ¶Ä°¼Š¬¶„£­{œ¦t— q™l‰d‚‰_„\€„_‚ƒa‚b~_{|]yz[uyXq{Vs‚Y{‡a€Œfi‚Žj„m‡’r†“u‡–w‰™|ŠŸ€‹¢…Œ¥ˆŠ¤‡‡¤†Œ¦‹©•³›™½£—§–Ī›Ð´§ÝõíÔ»õÝÆýèÆýèÀóâ·êÙµå×¶åÓ«ØÁ¤Ð·›Å­—½¨˜º©™º©šº«šº«˜º¬”¸¬´¨°§‹¨£ƒšzŽs‡ˆm|jw}hsyfqwgrxgrxgpwenu]dl\ckX_gU\dTXaRV_QU^QU^RW]RW]QV\QV\NU[MTZLTWLTWOY[Yceeproz|twƒƒw…†zˆ‹|…ŽyŒt|‰ow„nt‚ps‚rtƒsu„vu…xu†zv‡{wˆ{t†xqƒtmsj}pcwobvn`wl`vj`xiaxjbzhcyidzhcwhasg^oeZj`Uc^R^\OY]MX^NY^Q[`V_b[ce`ggdkhgmgdkhelkdlnblq_kr\iqYgsWclOTbCHU6;O05P24R46P24M/1M//M//N0.O1/P20R42S62R62W;8X<9[>:^?jE?kF>rKDyNGPI†QKŠMJLK–LM–OM˜YR”^T]Z‡YY„Z^†_d…ae^b]^{YXuSRmNLiKMeJOfMSgNTlOSkNPhNQdNQcNSbOQcPReQPfRKjTIlVIoYLq]RscVse\rh_|sj€yq…~v…€zƒ~x|w|{w{{yxxzwx|x{‚€„‰š‘˜¢“›¦”œ©“šª“šª”šª•›©—©š ¬£¯ž¦± ¬º£°Á¤´Ë¤µÏ ´Õœ´ØœµÝ¹á ¸ä¢ºæ£»é »èž¸éžºê ¾ð£Áó¨Èù¥Ç÷£Èõ¦Ë÷ªÑü®Õþ¯Öý­×ÿ©Ôþ§Ôþ¦Ñþ¥Ïÿ£ËþŸÃõ™¹è•²Ü•¯Ô–«Ê•¥¿•¡·–œ²•—¬“‘§Ž¢‹“ —¡’˜¤“—¢‘“ŸŽŒ™‹‡•Š„†~‹„z…u€{s~zr}zs{xszur{oq~lr€lr‚lu†p|Œw‡—ƒ’¥Š›­ˆ—¬Š—ª•¨Ž“¦Ž¢†ƒ–{t†pjxd]e\U\SLSPIPSJORINMDGH?BG<@H=AJ>@I=?G;;B66@22=//7'(6&'5%&4$%4$%4$%5%&6&'=15=15=15=15?05?05?05?05@/5@/5A.4A.4A.4B/5D/6H/5P/6R/5S.5R/5S06Q16Q16Q16O/4M.3M.3K.2L/3M04M36N47O27P17Q28Q28S38S38T47T45Z87Z87[86\95\95\93_:4_:2a<3b>2f@3jC4pF8tI8xK8zL5€P9‚S7„W8‡[8ˆ]:Š`:‰b9‰b9Žb;c”k=”k=“j’n>m=m=m=m=oBoBoB‘pC’pC“qC“qD•pC—rE™sDštEštEštE™sBšrA—q@Žj8i9Še;…_8‚\8ƒ]9‡a=Šd?‹f xE xE¡yF¡yF xEžvCœtA›s@œt@›s?šr>™r;™q=™r;šs<›t;Ÿx?£|A§€EªƒH­†K²ŒN¸‘V½—YÛ]Åœ\Æ[ÅžYÅžYÞWžTÁS½™O¹—Mµ“K±I°J²‘N³”Q´—Q¶ŸQ¸£R½¨W­Zȳ`Ò¾hÝÉräÐwîÚò߃öã…øå‡÷ä…÷ä…øå†úæ‡ûã‰ûã‰øãˆ÷䆸冸ê‰ûíŠúñŒÿö‘þù“ÿû—ÿþšÿþÿÿŸþÿ¡þÿ¡ÿÿ¡ÿÿ ÿÿ ÿÿ ÿÿ ÿÿ ÿÿ ÿÿ úúšûû›ýýþþžÿÿŸþþžþþžýý›ÿÿ›ÿÿšÿÿšÿÿ›ÿÿ›ÿÿ›ÿÿ›ÿÿÿÿÿÿŸÿÿŸÿÿŸÿÿŸÿþ¡ÿþ¡þÿ¡üÿ¤ûÿ¤ûÿ¦ûÿ¦ûÿ¨ûÿ¨ûÿªûÿ«ûþ­ûþ­ûþ¯üÿ°üÿ²ýÿ³ýÿ´ýÿ¶ûþ¹ùÿ¹öþµíø¬ãñ¢ÜîœÙïÚñŸÌå”Ìä–Æà–¾×“·Í²ÇŒ²ÇµÇ“´À°¹Š¨° §{™ t’™oŠg„ˆcƒ…`‚ƒa€a~`}|^{z^yx\twXmwRr~Vz†`‹e‹h‹h‚Œj‚m…’t„“t…•x…˜z‡›‡ ‚† ƒ† …‰£Š‰¥Œ¬—“¶ ’¼¦”Á¬œÍ¸¥ÚÆ´êÚ»ñãÂøëÁ÷ê»íä³äÞ³áÞµâÛªÖǣλšÃ±•º©”¶¨”´§”²¦‘±¤‘²§°¥®£‹ª¢Š¥ž‚›—zŽŒs……ky|ju{grxgrxhqxhqxenubkr\ckZaiY]fVZcTXaRV_RU^RU^SX^SX^RW]QV\NU[NU[MTZMTZPY^Ybgdosmx|q|€s~€t‚…v„‡}†zƒŒw}‰sy…swƒswƒtvƒuw„wv†xu†zv‡zv‡zr‡wo„ulsj}pcwnasm`tk_sh_th`uiaxjbyjbyiavi`sf]ndYiaUc^P]\OY]MX]MW^QZaV^e[chcimhnnlqmhnmhnpfnqdmq`jpZfmUbnR^gJO]@DR59N15Q46S68R57O24P43P43Q52R63S74T85T84U95Y;9[<:_=H<>I=?G;;C77@22=//7'(6&'4$%3#$2"#2"#2"#2"#=15=15=15=15?05?05?05?05A06@/5A.4A.4A.4B/5D/6E.4N/5O/4O/4O/4O/4N/4O/4N/4M.3K.2K.2J-1K.2L/3L25O26P17P17Q28Q27S38S36T45T45[98[97\95\95\93\93^93^91`;2c=2g?3nD6rF9wI9zK9{M6Q:ƒT8†W9‡[8Š^;Š`:‹a9‹a9Œ`9a:Žc9d:e;f<‘h<’i=i:i:j;l<‘m;’n<‘p=”p>”k=•j=“j<“j<“j<’i;j;j;“o?“o?’n>’n>m=m=Žl<Žl<‘oA‘oB”oC”rD—rE˜tD™uEštE›uFžvE xG¡yF¢xF¡yF¡xD xD—r>“o=j=Še;ˆb;‰c>ŒfAj@k>”p>˜t@šwA™v@™uA›wEžzF£{H¤|H¥}I¦~J¥}I¢zF xDžvB£{G£{G£{H¢zF¡yFžvCœtA›s?v?œu<›t=›t;›t=œu>g??gA@hB?hAAD;>A6:B7;E9;F:008()6&'4$%2"#1!"0 !0 !0 !<15<15<15<15=15=15=15=15A27@16@/5?.4?.4?.4B/5E.4J/4M.4M.4M.4M.4L/4L-3K.3K.3K.3J-2H-2H-2I.3K05N16P17Q07R27R27S38S36V45V45]99]:8_96_96_:4^93^91^91`:1b<1h@4nD6sG:xJ:{L:|L6„R;„U9†W9ˆ\9Š^;Š`:Š`8Š`8Š^7Œ_8`7Žc9‘f<“h>“j>”k?‘h:j;‘k<’l=’n<“o=”p>•o>‘h:’g:’i;’i;’i;“j<‘k<‘kn>’m@“nA–pC—sCštEœvEwF xE£{H¥|H§~J¨KªJ©€JªH¨GŸzCšwA”p>j=h>j@’mC•pD˜tD›wCŸ|F }EŸ|Dž{C }G¢GªƒL«„K­†M®‡N­†OªƒL§€I¤}F§€I§€I§K¦H¤|H¡yEžvBuAžw>v;v=v;žw>Ÿx=¡z?¢|>¨‚D«…F¯‰J±‹J³N¶O¼–W›ZÄ›[ÆšYÇ›ZÅXÄœWšTÁ™SÀ˜R½•M»•L»•L»•L½—PÀšSÃVÁ SǬUεXÛÂfåÌoíÔwóÚ}ùà„üã‡ûâ†þå‰ÿçÿçþå‹üã‡ýäŠÿæŠüåˆüåˆúåˆùæ‡úçˆùëˆúì‰øïŠúðŽü÷“ÿüœÿÿ ÿÿ¢ÿþ¢þþ¤ÿÿ¥ÿÿ£ÿÿ£ÿÿ¢þÿ¡þÿ¡ýþ ýþ üýŸùúœúûüýŸýþ þÿ¡ýþ ýþ üþþÿþÿþÿþÿþÿŸþÿŸþÿŸþÿ¡þÿ¡þÿ¡þÿ¢þÿ¢þÿ¢þÿ¢þþ¤üÿ¦ûÿªúÿ«úÿ«úÿ«úÿ­úÿ¯úþ±úþ±úþ²úþ´úý¶ûþ·ûþ¹üÿºüÿºüÿ¼üþ¿ûüÀøý½÷þ»óü¹îûµç÷°âó¬Õë£Ñè¢ÉâžÄÝ›¿Ùš¹ÕšµÑ—µÎ—±Ã“´Á•°½‘¦³‡š¥{›qŒ—oŒ—oŒ”oˆk„Šh‡e~„bz_uxYotTu[x‡`‹g‚Žj‚Œj€Šhˆi~‰i‚o‚‘t„”y‚•y€”y€™|†ž„‹¥ŒŽª”‰¦’‡¦”Œ®¶¤“½¯žÌ¿ªÜÑ·êã¹ëè¹ëì¸éí³äë­ÝçªÙãª×Ý¢ÎÍ ÉÜÀ¼˜»µ—¶±”±­‘¬§Œ©¤Š¨ ‡¦ž…£™‚ –‚™‘z†rƒ{kzueprfqwirykt{lu|hqxbiq\ck\`iZ^gX\eUYbTW`SV_SV_SV_QV\QV\QU^RV_PW_PW_PW_QX`Ybi[dk_irfpymw€s}†s€ˆv€‰xŠy€ˆz‰z‰|€‹z~‰z|ˆ{{‡{y‡{y‡{wˆ|u‡|sˆzq†xo„xl€ugxrdunark^ph\pg^qg`ribtibtibrh`og\jdXd`T^]PZ]MW]LV^MU^OV`SZeZ`kbgqhmulqulqxmsylsyjquajlW`cLV_ENS8=R8;P69O58P67Q78Q78Q78P65P65Q84Q84Q84R95R94T84\=:_=;b;=d>;hC=pE?{I@ŒLC¡NJ·URÎ\\ØebÛngÞuoØnnÆ_c´Yb«^f˜]c‚UXtPRpPSpMQnKQnJVlJXiM\iO\tV^rW\pW]nW_nY`oZar\_s^]w^Z|aZ~fZk]‚pb‚tg€vj~wm~w‚}„…€„†ƒƒ‡ˆ…Šˆ“”𖙢”¦˜ «›£®Ÿ§²£«¶¦®»¬µÆ¬´Ç«³Æª²Å©²Ã¥±Á£°Á ¯Â¨¸Ï¦¸Ð£¸Õ¡¸Ø¡¹ß¡ºâŸºåŸºç¤¿ê§ÂíªÅòªÇóªÆö©È÷«Éû­Íþ¬ÎþªÎþ«Ðý®Õÿ³Úÿ²Üÿ°Úÿ¬Øÿª×ÿ§Óÿ¥Ñÿ¤Ïÿ¥Ìÿ£ÈÿŸÂøž¾ïœ·â™¯Ô—¦Å—¡ºšœ³˜•ª‘‰ž‰‚’~~†y|{|ƒ‚‡Ž‰’‹’Ž„Œˆ}ƒ‚w}|ptthlrfjshltjkpghlcdgachcgech`_d[[c\_feirmqzw{„uxqqyjioe`g^W^WQUVMRTMTOHOHAHC009)*7'(5%&2"#0 !/ / / <15<15<15<15=15=15=15=15A27@16@/5?.4?.4?.4B/5D/6I06I.3K.3I.3K.3H-2J-2H-2K.3H-2G,1G,1H-2I.3J/4M05P17Q16R27R25S36S34V45V43^;9^;7_96_:4_:4^91^91^90_9.c;1j@4pD7vH;zK;|K:|L6…S<†T9‡X:‰[9Š^;‹_:Š`8‹_8Š]6‹^7`7b9‘f<“h>•j?•l@’i;’i;‘k<’l=“m<“o=”p>•o>g9‘f9‘h:‘h:’i;“j<‘k<’l=Œh8Œh8Žj:k;m=‘o?’p@“qA“m>”n?–pA˜rA›uDžyE¡yF£{G¨I©€J¬J®ƒL¯…K°†L¯…I®†I¤€Dž{A—t>’n<‘l?“nB–qD˜tDyE¡~F¤G¥ƒF£D¢€C¤G¦‚H¯ˆM±‹M³O´ŽP³ŒQ°‰N¬…JªƒJ«„K«„MªƒL©‚K¦H¤}F¡yEŸxAžw>žw;_=;b;5:=49=47<36>37>37@46@46@44?33?11>00:*+8()5%&2"#0 !/ ..8/28/29.29.29.29.2:.2:.2<-2<-2=.3=.3?.4?.4@/5B/5E.4G.4H-4F-3G,3E,2F+2D+1H-4H-4H-4H-4I.5K07M29P38P17R27U28V37W48X67Y57Z66^87^85^85_:4`94a:3a:3b<3f>4g?5kA5pD7uG:zK;}L;O9„R;…S8†U7†X6‡[8‰]8‹_8Œ`9‹^7Ž^8Ža8c:“f=•j@—lA˜mB•l>•l>•l>“m>”n=”n=”n=”n=‘h:’g<‘h<‘h<‘h<‘h=e==f>>iCBjGCfA;jB:~IA ]U»f_Ã]Xßigþ’ÿÐÐÿäåÿ¼Åë…Úr}Âgp]^Œ`]ea{cax[]uUZtQXqRZkV[kX\jS[nWapZfp\gp\hr\hv_g{bfghƒje‰pi‘}r™‰|›’ƒ›“†•“‡‘Œ‹ŽˆŽŽ†Ž†”‰”š‹˜ ›¤“¡¬˜¦±ž¬·¢®º¦°¼¨²¼®¶Á²ºÅ²»Ì°¸Ë®¹Ë°»Í²¿Ò°¿Òª¼Ð¤¹ÎªÀØ©ÁÝ©Âá©Ãæ©Ãè¥Á飾颽衾è«Èò´Ñý·Ôÿ°Ïþ¬Ëú­Íþ¯Ñÿ©Íý§Ëû§Íú©Óý¯Ùÿ³ßÿ´àÿ³ßÿ­Úÿ¬Ùÿ¬Öÿ¬Õÿ­ÑÿªÌÿ¨Æÿ§Àùª¾ñ¢±Ü•ÁŽª‡„™€y‰wlzpdnqfntioynt~rv€tx‚sxpv€psxhkrddk__f\[f^\gb^jgbmjetljqigmdehbdfbcidhjhmmkpifmb`eXVYTPQTNPTNNUMKTKLICGD=D=6=929:169056-03*-;04:/3;/1:.0:..;//=//>009)*6&'3#$3#$3#$2"#/ ,8/28/29.29.29.29.2:.2:.2<-2<-2=.3=.3?.4?.4@/5B/5D/4E.4D-3D-3C,2C,2E,2D+1G.4G.4H-4H-4I.5K07M29P38Q27R27U26V37W56X67Z66Z75^85^85_:4_:2a:3a:3a;2b<3f>4g?5lB6pD7vH;zK;}L;O9ƒQ:„R7…T6‡V5ˆZ8‰]8Š^7‹_8Ž^8_9b9‘d;“f=•h?–i?–k@•j=”k=”k=”k=’l;“m<“m<•l>’g<’g<‘h<‘h<‘h<‘h•o>–q=šr?uA¡yE¤}F§~F¨€E¬‚F­„F°‡G³ŠJ·‹J¸ŒK¹ŽJ·J²I¬‰G§ƒE¡}CžyDžyE {F¡|E©…I«ˆH¬‰G¬‰Eª‡Cª‡C­ŠH°K·’N¶‘M·’Nº•Q¼–U¹“R³N®ˆJ­‡I­†K¬…J«„KªƒJ¨H§€I¦F¦D¦D¥A¢|> z<¢|>§B¬†G±‹L±‹J±‹J°ŠI°‹G±ŒH³ŽJ¶‘M½–Q¿—RÀ˜SÁ™TšUØT—SÁ–Q—RÆœTË¡WÍ£WÍ£WͤUϤVШSÜ»ZäÉbó×süà|þâýá~ÿâ„ÿä†ÿâˆÿâˆÿã‹ÿãÿãÿãÿä‘ÿå‘ÿåŽÿçþéŽÿìŽÿîÿñÿñüòÿø—ÿúšÿûÿþ¡ÿý¢ÿþ¤ýý¥ýý¥þÿ¤ýÿ¢ûÿ úþŸúþŸúþŸûÿ ûÿ ùýžùýžùýžúþŸúþŸûÿ ûÿ ûÿ¡üÿ¢üÿ¢üÿ¤üÿ¤üÿ¤üÿ¤üÿ¦üÿ¦þÿ¨þÿªþÿªþÿªþÿ¬þÿ¬þÿ¬ýÿ­úÿ±øÿ²÷þ±õý°öü²õý²÷ýµöý·÷ü¹÷þºùþ¼úÿ¾ûÿÀúÿÀúþÁùÿÃúÿÅûÿÆûÿÆùÿÆøÿÅõÿÃóýÁñüÂëú¿äö¼Úï¶Óê²Ïè±Ìç²Èå¯Å㯸֤µÒ¢°Ìœ¨Ä”Ÿ»‹–²‚‘«|§x‹¢v‡žr„›o…œpˆr‰žs†›p‚—n…–r†—uˆ—x†•v„“v‚‘t„’x†”z†”{„–~„—‚š‚ƒœ††¢‹‹¨’­–°™±œ²žŽ³¡¶§–¿±ŸÈÀ¤ÑÌ©×Õ¨ØÚ©Úß©Ùã©Ùç¨×ç¦Õç¦Ôä¡ËןÅΛ½Ç˜¶À–±º’«²¤ª‰¡¥‹££ˆ¡žƒ™–|‘Œw†p}vktogpmailbkrgnvipxhowcjr_cl[_hZ]fX[dVYbSV_SS]QQ[QQ[QQ[PS\NR[MQZNR[NU_QXbU[gW]i\dq_fvbkzgpmv‡s|u‘y‚‘{|€‹|€Œ{Š{}‰}}‰~|‰~|‰„€Ž…„|‹yˆ€u…~sƒ}r‚}q}mz}mz{kxtfumaoi^ni^niapkcrjboj`ki]gfYbcV]bSX`QTfVYbRU_OR`PSeUXl\_p`cqadtdgtaep]akV[eNT]FLX?ET;?S99c@gA@iC@kHDnKGqLDsKC}KB–WN´d]Ægaçzuÿ  ÿÔÕÿãéÿ¼Çâx„Îow§fd•jd€iczhdy`cuZ_tV^qX^j\\i]_mYbpZgr]lq_mq_ou`ozdp~go‡nq‰qoys—…{ž… ˜‹™™™“•’••‹“•‰’—Š•›‹™¢¨ ­”¦´™©¸Ÿ¯¾¤²¿§³¿­·Á²ºÅ¶¾É·Àϵ½Ð²½Ï²¿Ð³ÂÕ²Ã×­Âש¿ÖªÂܪÄߪÅã¨Åç¨Äé§Ãê¦Âê¦Áì¥Âì¬Éó´ÑýµÔÿ²Ñÿ­Íü«Íý¬Îþ¨Ìü¦Ìû¤Íù¨Òü­Øÿ²Þÿ´àÿ³áÿ´âÿ¯Üÿ¬×ÿ«Óÿ¯Ñÿ°Îÿ®Çÿ­Áü¤´è¥Ó”·‡„Ÿ~yyn|pcmj[bfW^gX_jY_m\bq^ds`ftaetaevcepbbh\\bXW`XU_\Web]ifaskhqgfndekbckbelfjpipqlrkflc^dXSWQMNOIIOIIPHFOGEF@DA:A:3:7078/47.35,/3*-8-18-19-/9-/9--9--;--;--:*+7'(4$%3#$3#$3#$0 !-6026028/28/28/28/29.29.2:.2:.2;/3;/3>/4>/4?05@/5C04C.3C.3C.3B-2A,1B+1B+1E.4D-3F-3F-3H/5I06L18O27R27T15U26V37X46Y57\56\65^85_96`94`92b93c;3c;3c;3g?5h@6mC7qE8vH;zK;}L;€M8ƒO9„Q6„S5†U4‡Y7‰[7‰]6Š^7`:‘a;‘a9“c;”d<“f=”g=“h=”i<”i<“j<“j<’j9’j9’j9’i;e:e;e;e;e;e;f;f;‹f:‹f:Œg;h<Œj=k>Žl?m?—q@™t?›vAžyB£|E§€G©‚Gª„F¯ˆG±ŠG´ŒG·Jº’L»“M½“K»“K¹“L³ŽJ¬†G¤}B¡zA¡zC£|E¥~E¬†H°ŠI³ŽH´H³ŽG³ŽGµJ·’L¼—P¼—P¼—Q½˜R½˜T¹”P³L¯‰H«…F«…Gª„F©‚G¨F¨F§€G§€G¨F¨F§€E¤}B¢|>¤~@©ƒE®ˆI¯‰J³NµN´ŽM°ŠI¯‰H³ŽJ·’Nº•O½–Q¾—RÀ™TÁšWšUÁ™TÁ™SÅšUÉŸWΤZѧ[Ò§YÓ¨YÕ«YÖ®WèÇfïÒlùÜxþá}ýß}üÞ|ýÞÿàƒÿâˆÿâˆÿáŠÿâÿâÿâ‘ÿâ‘ÿä‘ÿåþæŽýèýêŽÿìþïÿñ’þô“ÿù˜ÿû›ÿüžÿþ¡ÿþ£ÿÿ¥þþ¦ýý¥ýÿ£ûÿ¢úÿ¡ùþ øýŸøýŸùþ úÿ¡øýŸøýŸøýŸùþ ùþ úÿ¡úÿ¡úÿ¡ûÿ¤ûÿ¤ûÿ¦ûÿ¦ûÿ¦ûÿ¦ûÿ¨ûÿ¨ýÿªýÿ¬ýÿ¬ýÿ¬ýÿ­ýÿ­ýÿ­üÿ¯øÿ²õÿ²öþ³óþ²ôü³òü³õü¶ôþ·÷þºöÿ¼ùÿ¿øÿÀûÿÃùÿÃúÿÄ÷ÿÃ÷ÿÆøÿÇùÿÈøÿÈøÿÊ÷ÿÉöÿÊôþÊôÿÌîüÉå÷ÅàôÃÜôÄÚôÅ×óÃÔñÃÆæ·Ãã´¿Ü®·Ô¦®Ë¤Á“œ·Š—²…¦|Œ¥{Œ¥{¦|‘¨~‘¨~§}¥~ޡޡƒŸ‚‹›~ˆ˜}‡—}‰˜Šœ„Šœ†ˆ›‡†›ˆ†ŸŠ‰¤‘Œ¬—¯š±œ‘²’³ ’´£µ¤¶©”¼±›Ä¾ ÊÈ¡ÍΟÏÓ¡ÒÙ¤ÔÞ¥Öä§Øç§Øé©Øê£ÍÛŸÅÒ—¹Å’°»‘©µŽ¤¯¡ªŠž¥Œ¡¤ˆž‚–•yŒŠs}juqflhcgf_gjahpdksfmufjsbfo]ajY]fY\eWZcVV`SS]QQ[PPZPNYOOYLOXKOXKOXLPYNU_RYcW]iY_m]dt_fvbk|go‚lt‡qyŒs~w€‘z€{‹y{Šxz‡yx†zy‡|z‡}{ˆ‡„ˆ‚އŒ„|‡ƒy„€v~r~}q}oz~ny|lwvhupdrlaolaombpmbpkali]ifZdcV]cTYbQWaQTfSWbOQ_LN_LNdQShUWkXZlY[hUWhTVeQSbLO]GJZAEV;@S8=R97^A9cE=gF?iFBlICpMGrQHuSIzTI~PCŽTI«bYÂmfß~xó™˜þÀÅÿÌ×ÿ­¼ð‡–ë}ŠÚy€¶rqžuo‚mhynlxhkwclu`iq`hiceicgm`jr`psbttcvudwxex€iy†n{Žu{‘yy—‚}ž…¢˜Ž¥ž”  ” —•›™’šœŽ™Œ™Ÿ›¤¡­”¦´–©¸™¬»°¿¢³Ã¦¶Å¬¸Æ²¼Æ·¿Ê»ÃμÅÔºÃÔ¶ÂÒ¶ÃÔ´Å×´ÆÚ±ÇÜ®ÇÝ®Èá­ÈåªÇå©Çé©Çë©Çí«Çï¬ÈðªÇñ®Ëõ±Ðü´Óÿ´Óÿ°ÐÿªÌü§Éù¦Êú£Éø¡Êö¥ÏùªÕÿ°Üÿ±ßÿ±ßÿ´âÿ®Ûÿ¨ÓÿªÏÿ¯Íÿ°Éÿ­Áÿ©¸ó™ Ö‘”Á…„¦zuŒrizk_icT[]LRYENYDMZCK[DL^GOcLThQWjUZp]_m]^gYY]SRWOLVSN]ZUda\ndcmaaj^`h^_i^bkbgndlohojcjb[bWQUNHJICCICCIDAJDDC=A?8?9296/66-25,14+.3*-5*.5*.6*,6*,6**6**8**8**:*+7'(4$%4$%4$%4$%1!".6026028/28/28/28/29.29.2:.2:.2;/3;/3>/4>/4?05?05@03@03B/3A.2A.2A,1A,1@+0D-3D-3F-3F-3G.4I06L18O27R27U26V37W56Y57Z66]76]76_96_:4`92a:3b:2c;3c;3d<4h@6k@7oC8sE8wG;{J;L;€M8‚N8ƒP5…R5†U4ˆW6ˆZ6‰\5Š]6’b<’b<’b:“c;“c;“c;’e;’e;“h;“h;’g:‘h:‘i8h7h7g9e:e;e;e;e;e;f;f;‹f:Œg;h<Ži=Žl?m@nA‘oA˜t@šu>xA |B£E¨Fª„F¬†G²‹H´H·Iº’J¼”L½–K¾—L¾—L»•LµI¬‡C¥@¡z?£|A¦D©ƒE¯‰H³ŽH¸”Jº–Jº–L¹•Kº•N¼—P¿›Q¿›Q¾šP½˜Q»–O¶‘K±ŒF®‰Eª„C©ƒD¨‚C§C§€E§€E¨H¨HªƒHªƒH¨F¦D¤}B¦€B«…G°ŠL®ˆJ³N¸’S¶O±‹J¯‰H´ŽM¹”Pº•O¼—Q¾™SÁšU›X›XÛVÛVÉžYÌ¢ZÏ¥[ЧXÓ¨Y×­[ܲ^à¸`òÑpõØtûÞzýß}ýß}üÞ~þß‚ÿá†ÿá‡ÿà‰ÿà‹ÿáŽÿàÿáÿáÿâÿå‘þæüæûçŽýéýî‘ÿñ”ÿö•ÿù˜ÿû™ÿüœÿÿ ÿÿ¢ÿÿ£þþ¤üÿ¤ýÿ¥ûÿ¢úÿ¡øýŸøýŸøýŸùþ ùþ øýŸøýŸøýŸùþ ùþ úÿ¡úÿ¡úÿ£ûÿ¦ûÿ¦ûÿ¦ûÿ¨ûÿ¨ûÿ¨ûÿ¨ûÿªüÿ«üÿ¬üÿ¬üÿ¬üÿ¬üÿ®üÿ®ûÿ°øÿ²õÿ²ôÿ³òý±òü³òü³óý¶óý¶õÿºöÿ¼÷ÿ¿ùÿÁùÿÃùÿÃøÿÄ÷ÿÅöÿÈõÿÊöÿËøÿÍùÿÎùÿÐùÿÒùÿÔûÿÙôÿÖíüÓêúÓèýÖçýÖãüÕáûÔØ÷ÎÒòÉÍìÃÅä»»Ú±¯Î¤¥Á™žº‘•¯ˆ•°‡–±ˆ•°‡•®†”­…”­…•­‰”¬Œ“ªŽ’¦‹¡†Šœ„‰›ƒ‹‡Ž¡ŒŸŒ‡žŠ†ŸŒ‰¤“Ž­”µ¤—¸§–¸§–·¦–¸¨–¸ª”¸¬’¸­•º³™À½œÆÅœÈËÊÐÌÖ ÐÜ£Ôã¦×è¦Ùì©Úë¤ÎÞžÃÓ“´Ã‹¨¶Š¡¯‰Ÿ¬‰¨‰¦‹ ¥‡šž‘“v††myyenmced_`b_dj_fnahpbiqbfo]ajX\eUYbVYbTW`SS]QQ[NNXMMWMKVLLVILUHLUIMVLPYNU_SYeY_m\br^eu`gyck~go„lt‰pxq|’u}’{€“{~yzŒvx‡xw‡yx†}{ˆ{‰‹…‘ЄމŒ‡€ˆ†|…‚x€€u}r{q{€nz}mxyitserpdrodroepndokajh\feXadUZbSVbRUbRSbOQ^KM[HJZGI]JLbNPcOQcOQ_IL^HK]GJ\CGY@DV=AU:?S8=R97[C9cF>fIAkJAnMDsSHwWLsQE}YK‚VIŒXK¤f[·neÅrlÎ}zàš¢ï§²ô˜¥ë‚ë‹Þ‚‡½{|£zv…rn|stzowwkwugtrhqljolipncsrcvrd{se|uf}{i…pƒ‹u‚y•‚œˆ‡¢“Œ¥œ•¤¡˜ £˜œ£›˜¡ – ¢‘ž¤‘ §‘£¯•¨¶˜­¾›²Ä´Æ µÆ¤·È©¹È¯½Ê¶ÀÌ»ÃνÅÐÁÉÖ¼ÈÖ¹ÇÔ¶ÆÕ¶Ç×´ÉÚ²Ëß²Íâ²Îæ¯Íç­Ìé¬Ëê¬Êì®Ìð±Íô±Îö°Í÷®Î÷°Ïû²Óþ´Ôÿ±Óÿ«Íý£Ç÷¡ÇöÆôÆòŸÊô¥Ðúª×þ­Ûÿ¬Üÿ«Ûÿ§Ôû£Îû¨Ìÿ®Ëÿ­Áþ¡¯ì— ÙˆŠ»‚€¨wp‘lbzdWh[NXVEMR?EQ/4?.4>-3>-3?,2?,2?,2C.5B-4C,4C,4F,5H.7K09N08U28V26W35X46Y57Z66]76^87`86a:5b93c:4c;3d<4d<2d<2lA8mB9pD9tF9xH<{J;L;M8„M8ƒP5…R5†U4ˆW6ˆZ6‰\5Š]6’b<“a<“b:“b:’b:’b:c9‘d:“g:’g:’g:‘f9g6g6Žf5Že7e:e;e;e;e;e;f;f;hk?nA’pC“qD”rD™uAšw?œyA }C£D§ƒE©†Fª‡E²G´H¸’Iº”I½˜J¾™I¾™I¾™I¹•G´F¬‡A¦€?¤~@¦€B«…G®ˆI³ŽJ·’K¼˜L¾šL½™M½™M¾šNÀœP¿›O¿›O¿›O¼˜L¸”J³ŽG¯ŠC¬‡A«†Bª„C¨‚C§B¦€B§C¨F©‚G«„K«„KªƒJ§€G¥~E§€E¬…J±‹M®ˆJ³N·‘R¶Q²ŒM±‹L·‘R½—V»™R¼šR¾œUÂWÄŸ[ÄŸ[Åž[ÅžYË£]̤\Ï¥[ЧXÔªXܲ^æ¼fìÅjø×x÷Ûxûß|üàüàüßþá…ÿâˆüÞ„ý߇ý߉ýÞ‹þßþßÿàýàþã’ýä’úä‘úæýé’ýî“ÿò•ÿö—ÿø—ÿú˜ÿüœÿþŸÿÿ¢ÿþ¢þÿ¢ûþ£üÿ¤úÿ£ùþ¢øý¡÷ü ÷ü øý¡ùþ¢øý¡øý¡øý¡ùþ¢ùþ¢úÿ£úÿ£úÿ£ûÿ¦ûÿ¨ûÿ¨ûÿªûÿªûÿªûÿªûÿ«üÿ¬üÿ®üÿ®üÿ®üÿ®üÿ°üÿ°ûÿ°õÿ±óÿ±òÿ°ñþ¯ðü°ðü²ñýµòþ¶óþ¹ôÿ»öÿ¿÷ÿÀøÿÃ÷ÿÂ÷ÿÂöÿÄóÿÊóÿÍóÿÏöÿÐ÷ÿÕøÿ×úÿÚûÿßüÿâöÿàòýßïþáïÿâîÿåìÿåèÿâæÿâàþÜÙ÷ÕÒðÎÊåĽص¯Ê©¤¿œ ¹™Ÿ¹–ž¶”š²–®Œ”¬Š•ª‰”¬Œ•®‘”¬’’¨‘Œ¢‹‰œˆˆ›‡‹ž‹Œ¡‰ ‡Ÿ†¡’Š©™“³¤š¼¬›¿±›¿±›¼±›¼±›¼³—º³”¹²–º¸˜¿¾œÄÆžÇÍœÈÑœÊ×ÍÛŸÐá¢Òæ£Öé¦Öê£ÍÝ›ÀÐŽ¯¾…¢°ƒšª„š¨‡›¦ˆš¤‰œ£„—{‘s„jtvdila`e\]a_dj^em`dm`dm]ajX\eTW`PS\RR\QQ[OOYLLVLJUKITKITJJTHKTGKTIMXLP[OUaU[g[ao^dt_fxah{ck~go„ksŠowŽoy’s{’~€•}~’z{wxŠyxˆzy‡~|‰}‹‰ƒ‰ƒŠƒŠ‹‚‡Š…‡|‚„y}ƒw{„s{‚q{}mwzjuvhuthtrhsqgroeplbki^ffY`eV[cTWcSVeRT_LN[IIWEEVDDYEF[EG[EGZDF[BEZADY@CX>AVT:=T:=Q8;O9;O9;O9;N98N98N98M87F1.I41L72L72K61K61N:3P<3T@7XD9`HJ5>I2Z?HdIRiPVeNTePUbOQYKKOCCMCBSKH[SQaWXaUY^RV\OV\OX[OY]Q[]S\cYd^T]TMULELGBFECDKGHNJKICGF?F@9@:3:6-22).1(+1(+2'+3(,6*,7+-7++6**6((5'':*+8()5%&5%&7'(7'(4$%2"#6026026026028/28/28/28/29.29.2;/3;/3<04<04?05?05>/4>/4>/4=.3=,2=,2?,2>+1B-4B-4C,4C,4F,5H.7K09N08V39W37X46Y57Z66[77^87^85a:5a:5b93c;3d<4d<4d<2e=3mB9nC:sD:uG:yG<{J;€K;M8…N9†P6…R5‡U4‰X7‹[7Š]6‹^7’`;’`;’a9“b:’b:’b:c9c9”h;”h;’g:‘f9g6Žf5e4d6e:e;e;e;e;e;f;f;j>k?‘l@“nB“qD•sF—uH—uGœyCz@Ÿ|B¢€C¦„E©‡G¬‰G­ŠFµJ·“Iº”I½˜J¿šJÁœKÁœKÁœK¼™H·“G±ŒE¬‡Cª„E¬†G°ŠK³L·’L»—M¾šL¿œK¾šL¾šLÀœNžP¿›MÀœNÀœN¼˜J·“G±C®‰B®‰B­ˆB¬‡C©ƒD§B¦€B§C¨F©‚G«„K«„KªƒJ§€G¥~E§€G­†M±ŠO°‰N³O´ŽP³N²ŒM´ŽO»•V¿œZ¿žWÀ W¡ZÅ£\Æ£_È£_Ç¢^È¡\Ì¥`Φ^Ò¨^Õ¬]Û±_å»eñÈp÷ÒwùÛ{úÞ}ûß~üàýà‚ýà„þà†þà†úÜ„ú܆úÛˆû܉ûÜŠüÝ‹üÝúÝûà‘ûâ’úã“ûæ“þê”þî–ÿñ–ÿõ–ÿ÷–ÿù—ÿû›ÿýœÿýžþý üýŸúþ üÿ¤úÿ£øý¡÷ü ÷ü ÷ü øý¡øý¡øý¡øý¡øý¡ùþ¢ùþ¢úÿ£úÿ£úÿ¥ûÿ¨ûÿ¨ûÿªûÿªûÿªûÿªûÿ«ûÿ«ûþ­ûþ­ûþ­ûþ­ûþ¯ûþ¯ûþ¯úþ±õÿ±óÿ±ñþ¯ðý®ðü°ðü°ñý³ñýµòý¸óþ¹õÿ¼öÿ¿öÿÁöÿÁõÿÀôÿÃòÿÍòÿÑñþÒòýÓóýØ÷þÜùþàúþãûÿéùþèôýèòþêóÿîòÿîïÿîéÿêìÿíæÿçâüáÝ÷ÜÖðÕÊäǻԷ°É¬ªÃ¦¦½¡žµ™–­”¨Œ‘¥‰¤ˆ£ˆ§Ž§‘¦‰ Œ„›‡‚™‡…š‰‡žŽ†ž…Ÿ’†¥–Œ¬Ÿ“µ§˜¼°›Á´Ã¸œ¿¸ž¿¸š½·–¹µ“·µ”·¹—½À›ÂÉÅÏ›ÅÑ›ÆÖ™ÈØ›ÊÞÍãžÑæ¡ÑåžÉÙ—¼ÌŠ«º€­–¦‚•¤…—¥‡™¥†˜¢‚“›z‰p}ƒipvdglbag_^d`cj]dl^bk\`iX\eRV_MPYJMVKKUJJTIISGGQHFQHFQIGRIISILUHLUJNYMQ\PVbW]i\br`fvah{bi|ck€go†jq‹mtŽnx‘qx’}–}~“z{yzŽzy‹|yŠ~z‰|‡„~ˆ‡€ˆŠ€ˆŒƒ†Œ…Š€ˆ~ˆ|~†u{…qznx|lvylvxjwvjvsitpfoodlm`ij^bhY^gWZgTVgUU`NN\JJXFFWCDXBDXBDX?BV=@X?BV=@VD/8C,6B+5E+6I/:Q6?Y>G^CL]DJ]FL[FKVCEN@@K??MCARHG\PT[NUYLSXKTXKUXJWXLXYMY\Q_ZP[SKVLGNECHDBEHFIKILFAGE>E@9@9294+00',0'*1(+4)-6+/9-/:.0:..9--9++7)):*+8()6&'6&'8()8()6&'4$%6026026026028/28/28/28/29.29.2;/3;/3<04<04?05?05<04;/3;/3;/3<-2=,2>+1>+1B-4B-4B+3B+3F,5G-6J/8M/7V37W35X46Y57\56]67^87^85a:5b;6c:4c;3d<4d<2g<3g<3nC:oD;sD:uG:yG<{J;€K;€L7†O:‡Q7†S6ˆV5ŠY8Œ\8‹^7Œ_8‘_:‘_:‘`8’a9’b:’b:“d:“d:•i<”h;“h;‘f9f6e5e4Œc5’g=’f?‘g?‘g?‘g?‘g?h?h?‘lB’mC“nD–qG–sI˜uKšwM›yKŸ~H €E¢‚G¦†I©ŠJ¬L°L²‘J·•M¹—M¾šLÁžMàNÄ¡MÄ¡MÅ¢NÄŸOÀ›M»•L¶J³ŒK´LµŽM·M¼–O¾˜MÀ›K¿šI½˜H¾™IÁœNÄŸQÁžMàOàO¿›M¸”H³C±C²F±ŒF®‰E«…F¨‚C¦€B§C¨F©‚G«„K«„M©‚K§€I¥~G§€G¬…L±ŠO²‹P±‹M°ŠL°ŠL²ŒN¸’TÀš\à`Ť]Ħ]ŧ_ȧ`ȧbɦbÈ¥aɤ^Ì¥`Ñ«bرdÞ¸gç¿jñÉrüÓyÿÝýÞúàûá‚ûá‚ûá„úàƒùÞƒøÝ„õÚƒõÚƒõÙ…öÚ†÷Ûˆ÷Ûˆ÷ÚŠøÛùÞ‘ùß’úã•üç–ÿë•þî–ÿñ–ýó”ÿö•þø–ÿù—þûšÿü›ýýûýœøüüÿ¢úÿ£øý¡÷ü öûŸöûŸ÷ü øý¡øý¡øý¡øý¡ùþ¢ùþ¢úÿ£úÿ£úÿ¥ûÿ¨ûÿªûÿ«ûÿ«ûÿ«ûÿ«ûþ­ûþ­ûþ¯ûþ¯ûþ¯ûþ¯ûþ±ûþ±ûþ±úþ±õÿ±òÿ°ðþ¯ïý®îü¯îü¯ïý²ðýµðý·ñþ¸òÿºóÿ»ôÿ¾ôÿ¾óÿ¿ðþÃñÿÐïÿÔïþÕðüÖñûÙõûßøüåùüçüÿîùýïöüðõýòôÿöôÿ÷ðÿöìþòíÿòéÿíçþêæýéãúæÙñÛËáÌ¿ÕÀ°Æ±¨»¥›®˜‘¤Ž¡‹Ž ŠŒž†‰œ†‡Ÿ‰…¡‹…¡‹„Š˜…}•…~•…—‰„ž‘‡£—ЍœŽ®£³§“¹®•½²˜À·œ¿¹œ¼¹–¸·’´µ±³³¹•ºÂ™¿È˜ÀÌ•¿Ï•ÀÑ“ÂÔ•ÃÚ—ÇÞ˜ÊáœÌâšÅÖ’·Ç‡¦¸~™ª}”¤”£„–¤‡—¤„•Ÿ˜x‡Žq|‚kpvhhpfclcbjben`dm]ajY]fUXaNQZHKTDGPDDNDDNDBMDBMECNFDOIFQIGRKNWJNWLP[OS^RXdX^j]csagwah{cj}dlfn…ipŠlslv‘ov’y{”yy‘{y‘zxŽzwŠzwˆ{w†{xƒyƒ‚{‚ˆ„‹‚…Ž„ƒŽ„‚‚€Ž€€ˆw}†r{nx}mw{nx{nxxlxuiurfprgoqdmnbfm^ck[^jWYhVVdRR`NL]IH[GF[FEZEDYAAW=>V<=U;CAACCCE>9??8?<5<6/61(-.%*0'*2),7,09.2=13>24>22=11<..:,,;+,8()6&'7'(9)*9)*7'(5%&8/46028/48/28/48/28/48/29.49.2;.5;/3+1B-6A,3A,5B+3C,6G-6I/:M/7T49X46X46Y57\56^66_75`94b95c:4c:4d<4d<4e=5g<5g<5oD;oE9rF;uG:xH:{J;~K8L7…Q9†S8‡T5‰W6‹Y6Œ\6Ž^8_7^6_6‘`7’a8“b9“d:“d:”e9˜i=•i<”h;’g:f6e5Žd4b5’g=’g=’g=‘g=‘g=h=h=Ži=’m@“nA•pC—rE˜vHšxJœzL|I¥‚H¤…E©‡Gª‹J¯ŽK²‘L´“L¶–M»™O½œMÁžMÄ¡OÆ£OƦQȦOȦOʧSǤRÂO½—Nº”M¸‘L¸‘L¸’K¿™RÀšOÀ›M¾™I¼—G½˜HÀ›KÄŸOÄŸNÆ¡PÆ¡PÂM»–H¶EµF¶I´J°ŠI¬†G¨‚C§B§C¨‚D©‚G¨„J¨„J§‚K¤€F£E¥Gª†L¯‹O²ŽR¯‹M«‡I¬‰I°ŒN¹–VÁž^ŤaɨaȪaȪaÉ«c˪cÊ©bɧ_ɧ]˧]Ó®`ݸgçÁlðËsúÓxÿÛ~ÿâ„ÿàƒþáƒþá…þá…ýà„û݃øÚ‚óØõ×ó׃ôØ„ôØ…õÙ†õ؈öÙ‰õÚ‹öÜöß‘úã•ýè—ÿë˜ÿî˜ÿï—þð—ÿô˜ÿö—ÿ÷šÿù›ÿúœþûœýúúùœýþ¡üü¢ûû¡øû ÷úŸ÷úŸøû ùü¡ùü¡øý¡øý¡ùþ¢ùþ¤úÿ¥úÿ¥úÿ¥úÿªúÿ«úÿ«úÿ­úÿ­úÿ­úÿ­úÿ¯úÿ¯úþ±úþ±úþ±úþ±úþ²úþ²øÿ²óÿ±ñÿ°ðþ¯ïý°îü¯îü±íý´îþ·íü·îýºïþ½ïÿ¾ðÿÁðÿÁïÿÁìþÄðÿÒîÿÖíýÖíû×ïúÚðúßóûäöúéüÿôøþô÷üõ÷þ÷÷ÿýöÿýòþüíü÷ëÿõèÿðçÿïêÿñêÿñãúèÖëÚÊß̳Ƴ¦¹¦—¨•ž‹‹œ‰‹‡‹š……˜‚™ƒ€œ†ƒœ‡š‡}–ƒz’‚z’‚{“……Ÿ’‰¥™Œ¬¡Ž¯¦°©Œ´¬¹±”½·™½»˜º»’µ·Œ¯±Š­³¯¸’·À—½È’¹ÈºÊºËŽ»Î‘¾Ó”ÂÙ–ÆÝšÉÝšÀÓ“´Å‡¤´~˜§}“¡€“¡„”¡ˆ–¡…“ž–x…Žpzƒjqygjsffneemeemadk^ajY\cTT^MMUGGQCCK@@JA@HA?JA@HCALEDLHEPHFQLOXLPYMQ\PT_RXdX^l^dt`gybi|cidlƒfn…ipŠkrŒkunuuwvvŽywywyv‰xu†xt‚wt{v}x†}‚‹‚ƒ…„†„…‘ƒ‚ˆx{†sy‚nw~mu~nx|oxzmwwjttgqtgpsfmtejpafm]`iYZhVVhVVeSQaML^JI^IH\GF[CCY?@U;:TA;UBZIAXL>]QAdYGk^KsbNzhP„nV‹sY”zc—}f—{fš}kŸ‚r™|n˜zp©‡}À•ŒÇ‘昴¡“¤–žŒž‹›…‘{ŒˆwŠ{r‡rmolto…~rŠ„vzqŽxqyo‘yo‘}r”ˆ{™•‡¡Ÿ§¤“£­§µª®¹³³¶¸µ¯¸µ­¹µ«¹¹«¸¾©·À¨¸Å¨»ÉªÁÓ®ÉÞ´Ðæ¸ÔìÀÜô¼Öí¹Ïä»ÎßÁÎÞÇÑÝÉÏÛÈÏ×ÇÒØÈ×ÜÉÜâÈÜåÂÙç½Øé¼ÙëºÚïµØî¶Úò¸Ý÷ºßù¼áü¼áþ½Þÿ¼Ýÿ¹ÛÿµÖÿ®ÑûªÍ÷¨Íù¬Ñý²×ÿµÛÿ°ÙÿªÕÿ¥Ðû¢Ïù£Óû§×ÿ¨Ùÿ©Úÿ«Úÿ¤Îÿš»îФÕ{‹¼ls¡_]…ZPrUGaUDWS>MM9DI5@H4?I5AK7CI5>H5;G2;F18F/7F,5G,3F+2L18M29M48N59M7:K57H46D13?.4>.8@0:C3>D7AG9FI=KI>LTIWSKXPJTJELA>E<:?;:?=;>7158268/44+0.%(-$'0'*4*+9.2<02?35A57C55A33>00<..;+,8()7'(7'(9)*:*+8()6&':/7905:/7:/5:/7:/5:/7:/5:/7:/5:/7:/5:/7:/5:/7;.5.8>/6>.8>/6?.8?.6B.9B.7A-8C.7D.:F/9H0=K1:P05S04U13Y23]55`75c74d93g:5g:5h;6g<6h=7h=7g>:g>8k@7lB6nD6rG7wI9zK9|N7~N7„R7…T6‡T5‰W6ŠX3ŽZ3[4\4”a4”a4”a4’b4’b4’b4’b4‘b4‘b4d5’f9“g:”h;’g:’g:‘f9”g=“f<‘f9g9‘i8‘k:’n<’q>•t?”s>•t?–u@›xBŸ|F£€H¦„G¬‰G¬‹D°ŽG²’I¶”L·•K¸–L¸—J¿žO¿žMÀ M¢MÅ¥PÇ©QË«TÍ®TÈ©NÈ©NɧNÄ¡M½šIº–H»—M½™OÃTÁ›R¿˜M¼•J¼•H½–G¿˜IÚJË¢PÊ¢MÇžLÄ›KÁ—K¾”J¹‘I¸J·ŽLµŽM´ŒN²ŠL°ˆJ­…G¬„Fª„E¤‚E£ƒF£ƒH¤„G¤„G£ƒF£ƒF¢ƒC¥†F¥†E¦‡Fª‹H°‘P¸™V¿ ]Ħ`Ç©aÉ«bʬcÈ«_Ȩ]ǧZÊ©ZÍ­ZÔ´aÛ¹båÃjðÍqùÖxÿÛ{ÿÞ}ÿàÿÞÿÞ„ÿ߆ÿÞ…ýÞ„úÚƒ÷×€ôÖ€ôÔòÓñÒ€ñÒ‚ðÓƒòÕ‡õØŠõÚ‹úà“úã“üå•þé˜ÿëšÿí™ÿí™þî™ÿïšÿñ™ÿð›þòœÿôžÿöŸÿöŸÿ÷ ÿøžþùžþùžýùžýù þú¡üû¡üû¡ýý¥ûþ¥ûþ¥úý¤ùý¦øü¥÷ý¥÷ý§øÿ­øÿ­øÿ­øÿ¯øÿ¯øÿ¯øÿ¯øÿ±÷þ°÷þ±öþ±õý°õý°ôü±ôü±òý±òþ²ñÿ²ñÿ²ñÿ´ïÿ¶ïÿ¸îÿ¹îÿ»éü¼éû½éýÀèýÂéþÅéþÆêþÉêþÉèÿËèþÏëþÑëýÕíýÙíüßîüãïúéõÿôõÿ÷öÿúöÿüöþÿõýÿòüþîüüëÿùåÿôäþóéÿôëÿöèÿòÞõåÕìڴɶŸ´¡££–¨’“¥Œž†‡›‚ƒ›…˜ƒ|“{’~{’~{’€y~u}~˜‹‘…¤œŠ­¦³¯“º·—¿¾˜ÂÁ›Ãø¸‰±³‹²·¶»·¾”ºÃ˜ÀÊ›ÃÏšÁЖÀΔ¾Î“¼Î”½Ï”¿Ò˜¾Ó™ºÍ’¯Á† ¯~–¢~’›”›ˆ–Ÿ‹˜ †š€Š”w‹nvgozclucjrejpggofek`_gXW]ONVGFLA@H>=C<;C>;B?P7:O69M47J14J03I/2I/2I/2J/4I04K25L36L68M79M98N:9P>:SA=UFAXIDYLDYLDXKCTJ@WQCZTD_ZGe_IoeLznT‰z]’c›Šn›‡l™…lš…p›ˆwŠ|œˆš†}¦…«—Œ°Ÿ•¯¢š¨žœŸ–—š˜—Œš‡~yŽ{s‹vpŠvpŒzqŽ{pŽ{pŽu—}s•€t˜†xœˆx‹|™‰¦¨™°¬Ÿ°·­¸Á¼ÂÁÂĺ¿Â²¾¾°ÀÀ³ÂǶÃ̵ÁϱÁѰÂÖ±ÇÞµÏè»Öñ½Û÷ÂÝøÃÝöÅÛòÈÚîÌÙéÐØåÔØãÒÙßÊØÙÅÙØÃÛßÃÞçÄáïÂáõÂÞö½Ûõ¹Ùò¹Þøºäü·åý´âü³ßü·ÞÿºÝÿ¸Ýÿ²Ùÿ¬Óü¬Óü°×ÿ±Ûÿ²Üÿ¯Ûÿ°Ûÿ°Ýÿ¬Ûÿ¤Õþ›ÎùœÏú£Øÿ¬ßÿªÖÿ¬ÐÿŸºé…–Âowždc…]TqXJaQ@PQ@JO>DL;AI8>F5;D3;E1:D15E12D02C/0C-/D+.D*-D*-F)-G*.J-1M04O26O24P16L16@)1=)4=)4<+5>.8B5?G;EI?HKDLJELIDKD?E=8>94:94:;59<36:129/06,-4*+2()2()3''@46E77H::H::E56B23@01A12=//<..9++7))7))7))8**9++:/7:/7:/7:/7:/7:/7:/7:/7:/7:/7:/7:/7:/7:/7:/7:/7.8>.8>.8>.8?.8?.8B.9A-8A-8A-8C-9E/;G1=K1:k@7lB4nD6rG6wI9yL7|N7}O5ƒT8†U5ˆU6ŠX5Y4[4‘\4’]3”a2”a2”a2”a2’b2’b2’b4’b4’c5“d6’f9“g:”h;”h;’g:’f9–g;“g:“g8’j9“k8“o;•q=•t>–w>—x?˜x=šz? }C£D¨„Hª‡G­‹C¯ŽA²F¶•H¹˜K¼›L½œM¾LĤQĤOãNĤMĦNƨPȪRɬPÉ«KÉ«KɪMÄ¥KÀI¼™G»—I¼˜LœSÀšQ¿—O½–K½–I¿˜KÄ›LÅœLÌ¢NË¡KÈžLÅšK—I¾”J»‘IºK·ŽL·ŽN´ŒN²ŠL°‰H®‡F¬…Dª„E£„D¢„F¢„F£…G£…E¢„D¢„D¢„D¥ˆF¥ˆF¦‰E©ŒH¯’N·šV¿¢\æ`Ç©aÉ«bÊ­aɬ^É©\ɪX̬YϯZÙ¹bÞ¿dèÇjòÑrúØwÿÝ{ÿß}ÿàÿÞ„ÿÝ…ÿÝ…ÿÝ…þÜ…üÚƒ÷ׂõÕ€ôÔóÒòÓƒòÓƒñÔ†óÖˆõØŒõÚúá‘ùâ’üå•ýè—ÿê™ÿëšÿëšþìšÿí›þí›ÿîœÿïÿðžÿòŸÿó ÿóžÿôžÿõœþ÷þ÷ý÷Ÿþø ýù ûú þü¥ýý¥ûþ§úý¦ùý¦øü¥÷ý§÷ü¨øÿ­÷ÿ¯÷ÿ¯÷ÿ¯÷ÿ±÷ÿ±÷ÿ±÷ÿ±öþ±öþ±ôÿ³óþ²óþ²òý±òü³ñý³òþ²ñÿ²ñÿ´ïÿ¶ïÿ¸îÿ¹ìÿ½ìÿ¿èü¿çüÁæýÅæýÇæþÊæþÊçÿÍçÿÍèþÍèþÍéÿÑéþÓìýÙìüßíüåíûêóÿõôÿùõÿüõÿþôþÿóýÿóúÿîüýëÿþåÿùãþ÷åÿ÷èÿøæÿóàøêØðàµÌº¢¹¥“©”’¨‘—ª”“§ŽŒ ‡†œ…ƒ›…€™„˜ƒ˜ƒ˜„˜…}”‚x€{•ˆ~šŽ ˜†©£Ž²°“»»˜ÁÜÅÇœÅÇ‘º¾Š³·Œµ»Ž·½·¿’ºÂ˜ÀÊÅÑ›ÂÑ™ÀÏ—¾Ï–½Î–¼Ï–¼Ï˜½Ð•´ÈŽ©¼ƒš¨z›y”}Ž•‚‘–„‘—‚Š•~†‘wŒow„gq{cmvaktbiofemc`g]ZaTQXLIPEBI@=D>;B=:A>;B@=D?(4='3;*4>.8@5=F;CG@GHAHGBHFAGA.8>.8>.8>.8?.8?.8A-8A-8A-8A-8C-9E/;G1=K18i=:j?9lA8mC5pD7rG6wI9zM8}O8~P6…V:ˆW7ŠW8ŒZ7[6‘]6“^6”_5•`4•`4”a4”a4”a4”a4’a6’a6’c7“d8”e9–g;”g=”g=“f<“f<–g;”h;•i<•m<—o<—s?šwAšyC›|Cœ~Bž~A¡‚B¦„EªˆH®‹K°I³Eµ‘C¹•I½™K¿žO¡PâQĤQʪWÉ©TƨRŧOŧOƨNƨNǪNÉ­LÊ®MˬOÈ©N¢K½J»—Iº–HÁ›PÀšO¾˜M¾˜MÀ™L›NÅžOÉ PÌ¢NË¡KÈžLÅšKÁ˜I¾”J»K¸K¸M·ŽN´ŒN²ŠL¯‰J­‡H¬†E©†F¤„G£…I£…G£…G£…G£…G£…E£…E¦‰G¦‰G§ŠHªK°“O¸›W¿¢^ħaÇ©aÉ«bÊ­aÊ­_Ë«^Ì­[б^Óµ_àÀiåÆkîÍpöÕvüÛzÿà}ÿà~ÿàÿÞ„ÿÝ…ÿÞ…ÿÝ„ýÛ„ûÙ‚÷ׂõÕ€ôÕ‚óÔóÔ‚óÔ‚óÖ†ôׇöÙ‹öÛŒùàúá‘ýä”ýæ–þç—þé˜þé˜þé˜ÿê™ýë™þìšþí›ÿîœÿïÿðžÿñœþòœýóšüõüõüöžý÷Ÿüø¡úø¡þü§ýý§ûþ§úý¦ùý¨øü§÷ý§÷ü¨øÿ­øÿ¯÷ÿ¯÷ÿ¯÷ÿ±÷ÿ±÷ÿ±÷ÿ±ôÿ±ôÿ±ôÿ³óþ²óþ²òý±òü³ñý³òþ´ñÿ´ïÿ¶ïÿ¶ïÿ¸îÿ¹ìÿ½ìÿ¿èü¿çüÁæýÅæýÇæþÊæþÌåÿÏçÿÍèþÍèþÍéÿÑéþÕêþÛêýßëýåëüêòÿõòÿøóÿûóÿýóþÿñüþñúÿìüüéÿþãÿûàýøâÿøåÿùæÿöáýïÜøé¿Ú˯ʹ »¨œ¸¢ž·¡š´›”®•¨’‡€›ˆš‡€›ˆƒœ‰š‡}•…w’ƒz–ˆz˜Ž}ž—‚¦¢‹²±•½½ÆÈ ÌÏÉÌ“¾ÄŒ·½Œ·¾¸¿Œ·À»Ä–ÀÌÇÕœÆÖ™ÃÓ—ÀÒ•¾Ð”½Ñ“¼Ð–ºÐ¯Ä‰¤·–¦vŒ™tˆv‡Žyˆ{ˆŽ|„yŒu}Špx…jr}enwajs`gmbai`[bWRYNIPGBIC>E@;B?:A?:AAEC>EC>EFAHLGNNMSKNULS[RYcU\fW_lZaq_fydj€fn…go†gqŠitŠju‹kvŠiv‰lt‡ruˆstˆtu‡tv…vu…uuur}tqzwryxsw}tw€wxƒyx†|zˆ~|Š}~~{Œ||}}Œ|}„tu}mpwhkyjmzkn|nn|mpzllvjlwiiweer^_kWXgSTcOP^JKUABM9:N8:M79K57I35H24J14J14K25N58M79N8:O9;Q<;R>=R@>PA)2=(1;*2=.5?4:E:@E?CE?CE@DD?C?:>:486044.25/1:019/.7-,6,+5+*5+*7++7++@22D66H89G78D45@01?/0?/09++9++8**8**8**9++:,,;--9.69.69.69.69.69.69.69.69.69.69.69.69.69.69.69.6.8>.8>.8>.8?.8?.8A-8@,7@,7@,7C-9D.:F09j>;j?9lA8mC5pD7sH7xJ:zM8}O8P6‰W<ŠY9ŒY:[8‘]8“_8•`8•`8•`6•`4”a6”a4”a6”a6’a6’a6”c8”e9•f:–g;•h>•h>”g=“f<–g;•i<—k>˜p?œtCœxDŸ|Fž~E ‚F¢„F¥†F¨‰H®J±Mµ’N·•M¼˜L½šIÀLàOĤQƦSƦQǧRË«VʪSȪRÇ©OÇ©OǪNÈ«OɬN˯N̰MίRÌ­RȨQÁ¡L½šI¹•G¿šL¿™N¿™N¿šL›NÅžQÇ QÉ£RË£NË¡MÈžLÄ›KÁ—K¼•J¹‘K¸M¸O¶NµO²ŒM°ŠK®ˆI¬†E©†F¥…H¤†J£…G¢„F¢„F£…G¤†F¤†F§‰I§ŠH¨‹I«ŽL±”P¹œXÀ£_ŨbÇ©aÉ«bË®bË®`Í­`б_Õ¶dÚ¼fèÈqìÍsõÔwûÚ{ÿÞÿàÿàÿß~ÿÞ„ÿÝ…ÿÝ„þ܃üÚƒúØ÷ׂöÖôÕ‚õÖƒõÖ„ö×…õ؈öÙ‰÷ÚŠ÷ÜùÞúá‘üã“þå•ÿæ–ýæ–ýæ–üç–üç–ýè—ýè—üê˜þìšþí›ÿí›ÿîœüðšûñ˜úó›ûôœüõüöžû÷ üø¡þü§ýý§ûþ§úý¦ùý¨øü§÷ý§÷ü¨úÿ­øÿ¯øÿ¯÷ÿ¯÷ÿ±÷ÿ±÷ÿ±÷ÿ±ôÿ±ôÿ±ôÿ³óþ²óþ²òý±òü³ñý³ñÿ´ñÿ´ïÿ¶ïÿ¸îÿ¹îÿ»ìÿ¿ëÿÀçüÁçüÃæýÇåýÉæþÌæþÌåÿÏåÿÏçÿÏçÿÏéþÓèþ×êþÛéýáëýçëüêïÿôïþ÷ðÿüðþþðþÿîüýíûþéûýèÿÿâÿüßþùàÿùâÿùãÿøáÿôÞþñÐïàÄãÓ¶Õïμ­Í¸©É²¢Â«½¦‘°žŽ­›Œ©—Ч•‰¦”‡¤’ƒŸ€œŽ€ž’~Ÿ–~¡›„¨¤µ´˜ÁßËΤÏÕ ËÑ–ÁȺÁŽ¹Â¸Á‹µÁ¹Å–ÀΟÉÙžÇÙœÅ×™ÂÖ–¿Õ”½Ó’»Ñ”¸ÐŽ­Âˆ£¶~•¥u‹˜r†rƒŠtƒŠv€‰u}ˆt|‡s{ˆpx…ks~enw`ir_dj^]eYT[OJQFAHA9@=8??:AB=DD?FE@GE@GHCJMHONMUNQZOV`T[eW]iX_o\cuag}ekƒiqˆjq‹isŒkuŽkuŽkvŒiu‹itˆqsˆrs‡st†su„tsƒtrtp~spytovvovzqt}tuwxƒyx…{z‡|zŽ€}€}~”…‚•……’‚‚‹{{„tt}on~po~poqp~po|nmxmkxji{iiwcdp\]iUVcOP[GHR>?K78M79L68K57J46I35J46K57K57P:R>=T@?UC?TE@SF@WJDWMDYPG\VJ^XL^ZN^ZN^[L`_KbdNjhSrmW{u[‡€c•Œkž”pŸ“mm›Žlœ‘u¡•¥™‰§š‘¥›’©Ÿ•§Ÿ”¦Ÿ—¥ š¤ ŸžœŸ”“›™†…•”{yyuŽzv‘}w“}w“~u”€v™uš„xžŒ}¤‘¦–†ª¤•²³§½¿¸ÈÇÆÎÐÓØÏÙÚÆÖÖ¿ÔÕ¿×ÛÀÛâÅßîÃÞñÂÞóÂáõÄäùÇêþËïÿÎóÿÍðÿËïÿÌìùÍëöÏêóÒëðÕíñÙîñÛðñÖðñÐïôËðùÌòÿÌñÿÊíÿÈëÿÀåø¼åù¶æü²äý¯àþ®Üþ°×ÿ¯Öÿ²Ýÿ±Þÿ¯ßÿ¬Þÿ«Ýÿ©Þý¬âü®äü°çü±èý²æþ­àý¥Õû ÌùÈûžÇýœÁõ•³å‰ŸÎ}Š´ux›ke^RfSETSCMQBGO@CK==H9(*@'*?&)=#&@#'C$)E&+F',H).H).H+0B(1>)0<(1;*0<-4>37C:?D>@E@DFBCFAEB>?<6:7136046028./8.-7-,6,+6,+7-,9--:..?11C55G78F67C34?/0>./>./7))7))8**8**9++:,,;--;--9.69.69.69.69.69.69.69.69.69.69.69.69.69.69.69.6.8>.8>.8>.8?.8?.8@,7@,7@,7@,7B,8D.:F09k>9k>9l?9nB9oC6qE8sH7xJ:{N9~P9€Q7ŠX=‹Z:Z;‘\:“]9•_9–a9—b:•`8•`6•`8•`6”`8”`8”`8’a8”c:•d;–g=—h>—h>—h>”g=”g=—h>—j@šnAœtCŸwF }G¢G¡F¤†F¦‰Gª‹H®J´“L¸—P»™Q½œOÅ¢QÇ£OǤPɦRɧPɧPǧPƧMȪPÈ«OÈ«OÈ«OƬOÈ®OʰQ˱PͱNβOϲTαUÌ­SÅ¥N¾žK¹˜G½šI¾šL¿šLÁœNÞPÅ PÈ¡RʤSË£NÊ¢MÇžLÄ›KÁ—K¼”L¹‘K·M¸‘P·QµO²ŒM°ŠK¬‰I«ˆH©‡H¥‡I£†J¢…I¡„H¡…F¢†G£‡H¤ˆG§‹J§‹J¨J«M±–S¹ž[Á¦aŪcƪaȬbË®b̯aαcÒ¶cÛ¼jáÃmîÎwñÒx÷Ø}üÝ€ÿàÿàÿß~ÿÞÿÞ„ÿÝ„þÜ…üÚƒøØ÷×€öÖöÖõÖƒöׄõÙ…öÚ†÷ÛˆøÜ‰÷݉øÝŒúßûà‘ýâ“þã”ÿä•þå•þå•ûä”üå•üå•ýæ–ýè—þé˜ýë™ÿëšýìšûï™úð™ûñšúó›üôŸüö üø¡üø¡þü§ýý§ûý©úü¨ùý¨øü§øü¨÷ü¨úÿ­øÿ¯øÿ¯øÿ¯øÿ±øÿ±÷ÿ±÷ÿ±ôÿ±ôÿ±ôÿ³óþ²òþ²ñý±ñý³ñý³ñþ¶ïÿ¶ïÿ¸ïÿ¸îÿ¹îÿ»ìÿ¿ëÿÀçüÁçüÃæýÇåýÉæþÌäþÎåÿÐåÿÐåÿÐåÿÐèÿÕæÿØéþÝçþâêýçêüìíþôíþöîþûîþýíýýìüüëúýçûüåÿÿáÿþÞþûÞþùàÿûáÿûáÿùàÿøÙýñÑõçÆëÚ¼áзÜÊ³ØÆ®Ô¿¨Î¹¬Î¾¥Ç·œ¼­•µ¦“²£‘°¡¯ ­ ‰ª¡…¨¡ƒ§£†¯«º¹šÆÇ¡ÎÓ¥ÒØŸËÔ—Ã̼Żƌ¸Ã‰µÂ޹ɕÀÑ ËÜŸÊÝÇÝšÄÚ—ÁÙ”¾Ö‘»Ó“¸Ò®ÆŠ¥º˜ªxŽ›tˆ‘rƒŠrˆs}†pxƒrx„rx†pv„lr~elv^eo\agYX`SNUHCJ@;B>9@=8?=8?<7>@;BB=DE@GFAHGBIIDKMHONMUPS\QXbU[gX^lY`p\cuag}ekƒjq‹krŽjtkuŽkuŽkvŒiu‹itˆpr‡rs‡ts…tsƒurƒtrso}roxrmttmtxot{ru~tuwv„xx…zxŒ~{Ž€}’„—Š„™‹ˆ–ˆ…~Š|y…wt„vsƒur‚tqqn}olzlizkhmk{gfs_^kWVcONYEDO;:I54L87K76J65J65J65K76L87M98R>=R@>SA?SDATEBUHBVICUKBXOFYRH[TJ]YM`\Pa_Pb`QcbPdfPgiQomVuqX}w]‡€c”Œhœ”m¨Ÿv¥œs£šs¤›zª ‡­¥’±§°§ž¬£š©¢˜¥¡˜£ ›¡Ÿ œ› ““‹š†ˆ—‚–{|‘zx{x“~z•~z•x—†|¡…z¢ˆ|¤§‘ƒ§•‡ª¢•±¯¦»¾ºÉÄÇÎÍÕØÌÚÚÄØ×¿×׿ÛÞÂàèÊç÷ÈçûÈçûÉêýÌíÿÐñÿÒöÿÕùÿÐñÿÏïüÍíøÍëõÎëóÑìóÕîó×ðôÚòöÕñõÎïöÊðùÊòþÉóÿÉðÿÇîÿÁëû¼éü¶æü°ãþ­Þþ¬Úþ­Ôý¬Ñý­Øÿ¯Üÿ¯Þÿ­Þÿ¨Ýÿ¦Ýûªâû®çû±êû²ëü²éý¯áú©×û¡ÌùœÃú›¿ù”µëŒ¨Úƒ˜Ç~Š´x{žlf‚[OcOAPTDNRCHO@CJ>@G8=D5:B17B/3A-/B,.A+-@*,?)+>(*?&)?&)@&)@&)C&*D'+F)-H+/I,0H-2B+1@+0=*0;+.=.3?56C:=D>>HDEHGEHFGEDBA=>;76:469338.-7-,7-,6,+7-,8.-:..;//>00B44F67E56B23>./=-.=-.7))5))6**7++8,,8,,9--9--8-58-58-58-58-58-58-58-58-58-58-58-58-58-58-58-5.8>.8>.8>.8?.8?.8@,7?+6?+6?+6A+7C-9E/;G0:N08P17R27V45\56_77a86d93k;7l=7l=7m>8m>8l?:l?:l?9nB9oC6qE8tI8yK;|M9O9€Q7ŠX=ŒY:Z;‘\:“]9•_9–a9—b:•`8•`8•_9•`8”`8”`8”`8”`8•d;–e<–g=—h>˜i?˜i?•h>”g=™j@™m@œpCžvE¢zG¢I£€F¢‚E¦‰G©ŒH®J²”K¹™N¼œO¿žQŸN˧Q̨P̨P̪QË©OʨNǨMƧLÆ©MÆ©KÆ©KÅ«JÇ­NʰO̲QδSϳPβOϳRϲTϰUÊ«QãN½J½šH½šI¿šJÁœLÞNÅ PÇ QÈ¢QÉ£NÈ¢MÇžL›L¿˜K»•L¸‘L·M¸‘P¶QµP±ŽN¯ŒL­ŠJ«ˆH©‡H§‰M¤‡K¢…I¡„H¡…F¢†G¤ˆI¦ŠK¨ŒK¨ŒK©ŽK¬‘N²—TºŸ\§bÆ«dƪaÈ­`Ë®bͰbгcÖºgáÂpçÈuðÐ{ôÔ}øÙýÞƒÿàƒÿ߀ÿÞýÜ}ÿß…ÿÝ„ýÛ„ûÙ‚÷×€öÖöÖõ×öׄõÙ…÷Û‡øÜˆúÞŠúÞŠùß‹øÞŠüßýà’þá“ÿä•ÿä•ÿä•þã”ýä”ýä”ûä”üå•ýæ–þç—þé˜ÿê™ýë™üí˜úð™ûñšüò›þôŸýõ þø¢ýù¢ÿû§þü§ýü©úü¨úü¨øü§øü¨øü¨ûþ¯úÿ¯úÿ¯øÿ¯øÿ±øÿ±÷ÿ±÷ÿ±ôÿ±ôÿ±ôÿ³òþ²òþ²ñý±ñý³ðþ³ïÿ¶ïÿ¶ïÿ¸îÿ¹îÿ»ìÿ½ëÿÀëÿÂçüÃåüÄåýÉåýËäþÎäþÏåÿÐåÿÒåÿÒåÿÒæÿ׿þÚçÿßæþäèþéçþîéÿóéþ÷êþüêþüéýüèüûçûüåúûãÿÿàÿÿßÿþßÿüÝÿüÝÿúÝÿúÜÿùÙÿôÖüñÍóæ¿èÚ¸áÑ´ßΰÙǪÓóÙÌ©ÏÂÁµ’¶ª°¥Ž¯¤®£®¥²«Š¯¨…®ªŠ´²“¿ÀÊÍ ÏÕ¢ÑÙœËÕ–ÂÏ‘½Ê»È‹¶Æˆ³Ã¸É–ÁÔ ËÞŸÉßžÈàœÆß™ÃÜ•¾Ú’»×“¸Ó’°Ê§¾‚›¯{‘ŸvŠ•s„Œqˆpzƒoupv‚ru„qtƒlp|cjt^bk[^eVSZOJQD?F>9@=8?>9@=8?;6=@;BC>EGBIHCJIDKJELNIPOLUQT]RYcV\jY_oZ_r\cvagdj„kpkrŽlskukuŽkuŽjtksˆpr‡rs…ut†ut„ustrso}tnzrjusltwmuypu}rv€vwƒwy„xxŠ|{|“†€˜‹…š‡˜‹ƒ“†~ƒ{‹~v‰|t‡zr„wotl~qk|oi|mj€lk|hgua`lXWaMLWCBM98H43K76K76J65J65K76M98O;:O=;TB@RC@SDATGAVICUKBVLCVMDZSIYUI[WK^\Ma_PbcSdeUefThjRknSrpWvuYz]‡‚b“iœ•k©¢t¦Ÿq£œr£y¨¡…­¦“°¨±ª¢­¦žª¦¦£œ¡ œŸ˜™ž‘”Œœˆ‹œ‚…˜|~•zz’{{•|—|—€{›ˆ€¥‰~¦Š©ƒ«„ª’‡©Ÿ•°ª¥¹º¸ÅÁÆÌÊÔÖÉÙÙÃØÙ½ÙÚÀßâÄåìÌìûÌëÿÍìþÎíÿÑñÿ×ôÿÚ÷ÿÜùÿÕñýÒîúÏëöÎéòÎéòÐëôÓîõÖñøÖòöÑðõÉîöÅðùÆòýÈôÿÈòþÆðþÄðý½ìü´æý®áþ¬Ýþ«×þ«ÐüªÌù¨Ïú«Öÿ¯Üÿ¬Ûÿ¥Ùÿ¤Ûú¨áü®èü³îþ³íû²êû¯áú©×û¢ÊûœÀú™»øŽ­æ‡¡Ô“Ã~вx{œie~WNaNBPRENQDKNBFJ>BG8=C49A06B/3A-/B,.A+-@*,?)+>(*?&)?&)A'*A'*A'*B(+F)-F,/J-1I.3D.1A.2?,0<-0<02?56C:;C?>JIGLKIMLJJIGFBA@<;>88=7780.8.-7-,7-,7-,8.-:..;//=//A33E56D45A12=-.<,-;--5))6**7++8,,8,,8,,7++7++8-58-58-58-58-58-58-58-58-58-58-58-58-58-58-58-5.8>.8>.8>.8?.8?.8?+6?+6?+6?+6A+7C-9E/;G0:L1:P17R27V37\58_77a86d93l<8l=7m<5n=6n=6n?9n?9o@:oC:pD7tF9vH8zK;}N:€P:R8ŠX=ŒY:Z;[9“]9•_9—`9—`9–^9–^9•_;•_9•_9•_9”`9”`9•d;–e<—f=™h?˜i?˜i?—h<—h<šk?šnAžrC xE£{G¢G£D¡‚B§ŠFªŽE¯‘Hµ˜J»œL¾ŸMÁ OÄ¡M˨NÌ©MͪNΫOΫOÌ«NɪMȪJƪIƪIĪIŬHÇ­LȰLʲNÌ´PεQÍ´PβQϲTгU̯SǨN¢K¼™E½šH¿œJÀKÞMÄŸNÅ PÅ OȤPÇ£MÅŸLÁœL¾˜M»•L¸‘L¶‘M¸’Qµ’R³Q°ŽO®ŒM¬ŠKªˆI¨‰I§ŠN£‰N †IŸ…HŸ…H †I£ŠJ¥ŒL§ŽL§ŽL¨M«’P±˜U¹ ]À§dǬgƪ`È­`˰cͲcѶeؾjãÇtêÎzðÒ|óÕ}øÙüÝ‚þß„ýÞûÜúÛ~ÿà†ý݆úÚƒøØöÖöÖõ×õ×÷ÙƒöÛ„øÝ†ù߈úà‰úà‰úà‹ùߊýàÿá‘ÿâ’ÿã“ÿä”ÿä“ÿä“þã’þã’ýä’þå“ýç”þè•ÿé–ÿê—ýë—üí˜ûï™üðœýóžÿõ þö¡ÿù¥þù¥ÿû©þü©ýü©úü¨úü©ùû¨ùû¨øü¨ûþ¯úÿ¯úÿ¯úÿ¯øÿ±øÿ±÷ÿ±÷ÿ±ôÿ±ôÿ±óÿ³òþ²òþ²ðþ±ðþ³îþ³ïÿ¶ïÿ¸îÿ¹îÿ¹îþ½ìÿ¿ëÿÀëÿÂçüÃåüÄåýÉåýËäþÎäþÏäÿÒäÿÔäÿÔäÿÖåÿØåÿÜæÿáåÿæçþêæþðçþôçþöèþûèþüæþþäüüãûûáûüâþÿáÿÿàÿÿßÿþÜþýÛýüÚþüÙýùØýöÖþöÏ÷îÁëá¸âÖµáÔ³ÝÑ­×Ë®ØÎ¦Îƚ¹¸¯²ª‹°¨Š­¦ˆ­¦Ž²®ˆ¯¬†®®‹´¶”ÁÆœËÑ ÑØ ÐÚ™ÇÔ“ÁÐŽ¼ËŒºÉˆ¶Æ…²ÅŒ¹Ì•Â×ÊáÉâœÈá›Çâ˜Äß•ÁÞ’¾Û“º×’±ÍލÁ„³|“£x‹™s„Žp}†nx‚ouƒru„rtƒprkmzcgr]`i[[cSPWMFNC7?;4FIBJKDLKDLLEMPIQPMVQT]TXcX[jY_oZ_r\auae~ciƒin‹ipŒkrŽlsmtkuŽjtlt‹qt‡ut†vs†vs„ws‚vr€vp~uo{qittjswltzou~qx€tx„uz…vy†{yŠ{…•Š„—„–Œ‚–‰€”‡~Œv‹~uŠ|s‡yp„vm‚slrk€ql€lk}hgwbamXWaLKVA@L87G32J65J65I75J86K97M;9P>BE9=C49A14A.2B.0C-0B,/A+.@*-?),@'+@'+?&*?&*?&*?&*B',C*.G,1G.2F03C02A.0=//=11?75B=:D@=LKGNMIPOKMLHGFB@?;?;8?:791/:0/8.-7-,7-,8.-:..;//=//@22D45C34@01=-.;+,;--6**6,+7-,8.-8.-6,+5+*3)(8-58-58-58-58-58-58-58-58-58-58-58-58-58-58-58-5.8>.8>.8>.8?.8?.8?+6?+6?+6?+6A+7C-9E/;G0:L1:O19Q28T47Z68_77a86e83l=7l=5n=6n=6o>7o>7p?:o@8qB8pD7tF9vH8zK;}N:€P:ƒQ8‹X=‹X9Z;[9“]9”^8–_8—`9–^;–^;–^;•_;•_9•_9•_9”`8—c;–e<˜g>™h=™h?˜i=˜i=—h:›l>›o@ŸsB¡yE¤}F¢€C¢€A >§‹BªB°“Eµ™F¼J¿¡K¢MÅ£JɦJ˧GÍ©IÍ«JΫMάKͬMʬJȬIÇ«HŬHĬHÅ­IǯKɱMʲNζRÍ´PβQϳRдSαSÊ«PŦL¼šC½šF¿œHÀKÂLÞMÞNÞMȤPÇ£OÄŸNÁœL¾˜Mº•N·’L´‘O¶“S´’R³‘R°ŽO®ŒMª‹K«‰J¨ˆK§ŠN£‰N †KŸ…HŸ…H †I£‰L¥ŒL§ŽN§ŽL¨M«’P±˜V¹ ]Á¨eÅ­gÅ«`È­`˰aγdÒ·fÚ¿nåÉvíÑ}ïÐ}òÔ~øØûÜ‚ýÞ„ýÞƒûÜùÚÿ߈ý݆úÚƒ÷×€öÖôÖ~õ×ôÙ€õÚƒöÛ„øÞ‡úà‰ûáŠûâˆúà‰ù߈þâÿâ’ÿã“ÿä”ÿä”ÿä”ÿä“þã’þã’þã’þå“ÿæ”þè•ÿé–ÿê—ÿê—üí˜ûï™ýñþòžÿõ ÿ÷¢ÿù¦ÿú¦ÿû©ÿû©þü©üû¨üû©ùû¨ùû¨ùúªûþ¯ûþ¯ûþ¯úÿ¯úþ±øÿ±øÿ±÷ÿ±ôÿ±ôÿ±óÿ³ñÿ²ñÿ²îÿ±îþ³îþµïÿ¸îÿ¹îÿ¹ìÿ»ìÿ¿ëÿÀëÿÂêÿÄåüÄäýÆåýËãýÍäþÏãþÑäÿÔäÿÖäÿÖãÿ×åÿÚäÿÞåÿâãÿèäÿìäÿðäþóäÿøåÿûåÿüâÿýáþüàýûßûüßýÿàýÿáþÿàÿÿÞýÿÚüýÙûü×ûùÙýûÙÿûÓúõÄíå»äܹäÛ¶áØ°ÛÒ´ÞÚ­×Ó£Íɜſ—Àº•¼·’¹´·²‰°¯…­­ƒ¬®‰µ¸”ÁÇœÍÔ ÐÚŸÏÛ—ÅÔ’ÀÐŽ¼ÌŒ¹ÌˆµÈ…²ÇŒ¹Î–ÃÚœÈáœÈãœÈã›Çä™Åâ–Áᓾޔ»Ú’±ÐީĄžµ}”¦x‹šr‚nz†mu€pv„ru„rtƒnpikxbdp]]gZYaTOVLEMCFIBJKDLLEMMFNPIQRLVSS]TXcY[hZ]l\_r\aubd}dhƒimŠin‹kpkrŽmrmtŽlsms‰rs‡ut†wt…wt…ws‚vrwqwo|shvtjuwkuzow~qz€sz„u|…vy…yy‰~z„€“ˆ‚–Œƒ–Œ‚—‹—‹}‹q‹}p‰{n‰xnˆwm‡vn†un†un€khggyaanVVbJJU@?L76F21J65J65J65J86L:8N<:P>RH?TJATKBVNCVPDURCYWHZXIZ[K\_L_bOcfSejVglUknQorSvwW||Z…‚_Œf™l¥¡r®ªz©§v¥¢w¤¢|©¥Š­ª™°«¥±­ª«§¦ª©§¨¨ª¡¢¦—š£”Ÿ“£”¦‡£‚ˆ |‚œz~™z~›~€ž~ž†©…~¨‡€ªŒ„­…¬‘Š«—±«¨¹´¶Â»ÄÉÄÒÓÅÙØÁÛܾÝßÂåëÉëôÌìùÐìúÒìùÖîúÙïüÞòýáóýäõýãñúÞïùÚê÷ÖèöÖç÷ØëüÚïÿÜóÿÕòúÍðöÅðùÂñûÃõÿÆøÿÈùÿÇøÿÆöÿ¿ðÿ´æÿ®ßÿ­Øÿ¬Òÿ¬Ëú«Æõ£¾ë¬Éõ²Òÿ°Ôÿ¨Ñÿ¦Óý«Ýÿ°çÿ·ïÿ´íÿ±èý­àý¨Õü¢ÊýœÀþš¹ú’¬éˆÔ€Ž¿z«qr‘a]tWN_VLWRFPQFNMBHI>DE9=A59?03A.2C/1C-0B,/A+.@*-?),A(,@'+>%)=$(=$(=$(?&*?),D+/D.1F24D13@01>00>22@86C>;EA>LKGNMIPOKMLHGFBA@.8>.8>.8>.8?.8?.8=)4=)4>*5@,7B,8D.:E/;F/9N4=Q3;S4:U5:Z6:^78b97g:5m>8p?8sA:r@7p>5n>4p?8qB:sD:tF9vF:xI9|K<O;…R=‡U<ŠW“];“[8“[6—]7š`:—\:•]:–^;—_<˜`;˜b<™d<˜d<šf>™f;˜e:–f8˜g<œl> pB£sC¨zI¦{H¦{F¥~E¨F©‡H­‹K­I°”J³˜I·šJ¹I½ŸIÀ¢HǨNͬǪHÑ«JÕ¯NÔ°OЮMάJÌ«JË®J̰L̰L˲MʳM˳OÊ´O˵P˵P˳OÌ´PзSѸTѸTδSͰRË®RÈ©N£I¼œE¹™D¼™E¾›G¾›I½šHÆ£OÁžJ»˜F¸”F·“G²H®‹G¨‡D­‹K­‹L¬ŠM©‰L¨ˆK¦ˆJ§ˆH¦ˆJ¨‹Q¢ˆMž„IŸ…J¢ˆM¦ŒO©R©P®•U­”T­”T°—U´›Y¹ ^½¤b¿§a¨]Æ­]̳cÒ¹iÛÀoãÈwìÒ~ò؃ñÕò×€õ×öØ€øÚ‚ùÛûÜ‚ûÜ‚ý݆ùÙ„ôÖ~ðÒzïÑyòÔ|öØ€÷܃ûà‡ûâˆüã‰ýäŠýå‹ÿè‹ÿèŽÿèŽÿæ’ÿå“ÿä’ÿä’ÿä‘ÿãýãýãÿå‘ÿæ’ÿæ’ÿæ’þè“ÿé”ÿé”þé–ùé”ùê—øìšúîœûðžýò üô£üõ¤ÿú©ÿú©ýú©üû©üû«üû«úû«úû«üý¯ûþ¯üÿ°ûÿ°ûÿ²ùÿ²øÿ±÷ÿ±òý¯òý¯ñý±ðþ±ðþ±îÿ±îþ³íÿµíþ¸íþºíþºëþ¼ëþ¾êþ¿êþÃéþÅèÿÉçÿËçÿÏåÿÐåÿÒäÿÔäÿÔãÿÖâþÖàþØâýÜàýÞàýáßüæßüêÝüíâÿöâÿøáÿúàÿúßÿüÞþûÞþûÝýüÞûÿÞûÿÞûÿÝüÿÝüÿÛýÿÛýÿÚþþÝÿÿÚÿþÖýúÏøôÈñí¿èâ¶áÚ²ÜØµáà±ÝÜ«×Ö¥ÏÎÇŘÀ¿•½¼”¼»µ·Ž·»‘ºÀ“¾Å–ÂÍ–ÆÒ˜ÈÔšÊØ•ÃÓ“¾ÑŒ·Ê‡±Ç†°Æˆ²Ê·ÏºÓ”½Ù—ÀÞšÃáœÅåœÅå˜À㔼ߒ¹Ú”²ÔªÇ„ž·~”©zœu…’q}‰ow„orkm|ihxihxihveeq\ZeUR[IBJG=FB8A@6?B8AD:CD:CD:CD:CE;DG=FJ@INDMQGPSIRQKUUS^TVbXWeY[j]^racxeefhjk‡imˆjn‹kposŽpvqw‘sxŽstˆurƒurƒtq‚uq€tpvp~vn{qftrhsuisxku|lw~nx€pzrwuw„yw‰~zŒ{‚z’†z—‰|›Ž~•ˆx–†w“ƒt‘sŽ|r{qŒyrxsŠpo‚hgv\[gMLZ@?R:8O75M85I41K84N;7P=9O=9P>:SA=TE@WJBVLBWMCYOEZRG\TG\VH[XI][L_^L`aOcfQhkVlq[qv`sy_y|_|€_„…c‹‹gŒŠcŽažœl±¯~·µ‚¶µ…µ³Š¯¯ªª’¨©›¬«§°®±¬ª¯«ª°§§¯ž¡ª”—¦“£‹‘§‹“ª‚‰¥ƒŠ§ƒŠ§‚‡§„¤€ƒ¤ƒ†§‰‰­µ‡³‡³’‹µ”Œ³•ޝœ–°¤£³°²¾¶¿Ä¼Ê˹ÍβËϳÐÔ¾ßèÊìõÐñúÔðûÚõþâûÿëÿÿíÿÿíüÿéøÿéöþèõþåóþÞîýÙêüØêþÙîÿÜóÿÞüÿÏôüÀì÷»ë÷¾òýÄûÿÉüÿÊûÿËûÿÊûÿ¿ðÿ²ßÿ©Òþ¦Êú¢¾í›±àŽ¡Ì‘¤Ï•«Ú›·çœ¼ïÃô¨Óþ´äÿ¶éÿºíÿ¹ìÿ±âÿ«Øÿ§Îÿ Ãÿš¹ü‘©çˆ›Õz†¸ipš_`VShOIWJBMSIRSIQSIQQHMMBFG;?C47B/1A*0C*0B)/A(.=&,<%+;$*;$*8!'8!':#)<%+?(.B-2G06H38E13D13A12>22@65F>43:0/8.-:0/;10<00;//B44@22>./<,-:*+:*+:*+:,,4((4*)4*)5+*4*)3)(1'&0&%6+37,47,48-58-59.69.69.6;08;08;08;08;08;08;08;08.8>.8>.8>.8?.8?.8=)4>*5?+6@,7B,8C-9D.:F.;N4?O4=Q3;T49X59^78c:8g:5l=7o>7r@7q?6o=4o=4q?6rB8tD:tF9vF:xI9|K<O;„Q<‡S;‹U;Z;“\>”^<”\9”\7˜^8š`:™^<™^<˜`=™a<šb=›d=›f>œg=še;™f9˜e8™f7šj:žn>£sC¦vE©{G¨}Fª€F«…G¯‰K±M´“N´–M²—HµšI¹IºŸH½ŸEÀ£GƧLÌ«LÍ©HÒ¬IÖ°M×±PÓ¯NÏ­KήK̯KͰL˲M˲MË´NÊ´OɶPɶPɶP˵P͵QзSѸTѸTзSдSϳRϰSɪOÀ¡GºšCº˜Aº—C¼™G¼™GŸK¿œJ»˜Gµ”E²F®ŽE«ŠE©‡GªˆI§ˆH¦†I¤†H£…G£…G£…E£‡H£‰N †Mœ‚GƒH¡‡L¥‹P§P§P¬’U­”T¯–V²™YµœZ¸Ÿ]º¡_»£]¿¥ZŬ\εeÖ½mÞÃråÊyìÒ~ñ׃ó׃ó׃öØ‚÷ÙùÛƒúÜ„üÜ…üÜ…ûÛ†ùÙ„ôÖ~ñÓ{ñÓ{ò×~öÛ‚ùÞ…ûâˆûâˆüã‰üåˆýæ‰ÿè‹ÿéŒÿèŽÿæ’ÿå“ÿä’ÿå’ÿä‘þäþäýãÿæ’ÿæ’ÿæ’þè“þè“ÿé”ÿé”ÿë•úé—ùê—ûì›úîœüðžýò þó£ýõ¤ÿø¨þù¨þù¨üù¨üùªûúªûúªùúªûü®ûü®üý¯ûþ¯ûþ±úþ±÷þ°öÿ°òý¯ñþ¯ðþ±îÿ±îÿ±íÿ±íÿ³íÿµíþ¸íþºëþ¼ëþ¾êþ¿êþÁéþÅçþÆèÿÌèÿÎæÿÑåÿÓåÿÕåÿÕäÿ×äÿØàþØàþÚàýÞßýáßýåÝýèÝüìÜüïáÿøàÿúßÿúÝÿúÛÿûÛÿûÚþúÛýüÝüÿÞûÿÞûÿÝüÿÝüÿÛýÿÛýÿÚýÿÜÿÿÛÿÿ×þýÒùøÊòñÁêæ¹áà³Ýܳàã°Ýâ«ØÝ¥ÑÔ¡ÊÎ›ÄÆ˜À–¾ÀŽ·»¹¿‘¼Ã”¿È–ÂÏ–ÄÓ—ÇÕ—ÆÖ–ÁÔ“¾ÑŽ·Í‰³É‰±ÊŠ´ÌŽ¶ÐºÓ”»Ú–¿ÝšÁâ›ÄäœÂæ˜Àã•»à”¸Ü–´Ö‘¬Ê‡¡¼—®| xˆ—t€Žrz‡ornm}kjzljxkiwfdo]ZcTQZIBJG=FB8A@6?B8AD:CD:CD:CE;DFYLCXNDYOEZPD[SF\TG]WI[XG_^LbaMdfQilWps^tybx}fz€d‚c‚†c‹h’”l“”h™˜h©§tºº†¾¾Š»½Ž¸¸’±²“«¬š©ª¢­­­°±¶¬¬¶¬«¹§©¸Ÿ¢³•𮕭”°Œ•²†°†Ž²†Ž³…а‚‡­‚†«„ˆ®ˆŠ±»Ž‹¸Œ¹–‘º™“¹›–¶£Ÿ¸¬«»¯²»±¸¾²ÀÁ°ÄůÇ˲ÍÔ»ÙãÂâíÖ÷þÚùþàûÿèÿÿïÿÿñÿÿóÿÿñÿÿíúÿîûÿìúÿèøÿäõÿãõÿäøÿäýÿÞüÿÒ÷ÿÅñü¿ñü¿õÿÄûÿÈýÿÊüÿÉùÿÆõÿ»éÿ®Ùÿ§Íü¤Äõµå”¥Ñˆ”¾ˆ”¾‹™È¡ÓŽ¥ÙŽ¬Þš¼ê¤Îøµáÿ¹çÿºèÿµàÿ°Øÿ«Òÿ¥ÈÿŸ¼ÿ“¨é‰™Ôw´gl”[\zSPeNHVKCNRKSTJRTJRRHPNCIH<>D66C02B+1C*0B)/A(.=&,<%+;$*:#)8!'8!'9"(:%*=(-@+0C.3D15H57F67F88D88E;:HC@PLITSO[\W\]X[\WXYTTSOMLHFEAC?.8>.8>.8>.8?.8?.8>*5>*5?+6@,7B,8C-9D.:D.:K3@M3>P2:S4:X59^78c:8g:5j;5n=6q?6q?6q=2p<1s?4sA8uE;uE9vF:xI9|Kœa?œb=c>œd?f?žg@ži?še9šf7šg8œj9Ÿm<¤r?§xDª{E«~E«E°‡I³L¸’Q¹˜Q¼œS¼ŸQ¶›J¸žJ» I¼¡H¾ FÀ£GŦK˪KÑ«JÕ®IÙ²MÙ³PÔ±MѯKϯLαMαM˲M˲N˳OÊ´QɵRɵRÊ·Q̶QηQϸRйSÒ¹TÓºUÓºVÓºVÖºYѵTɪO¿ F¸˜Aµ•@¸•C»˜FºšGºšG¸—F³”D®ŽC«ŠC©ˆC¦‡F¥†F¢„F¡ƒG ‚FŸCŸƒDŸƒD ƒG¡‡L„KšH›‚IŸ‡K£‹O¥Q¥O©‘S¬”V±™Y´œ\¶ž^¶ž^¶Ÿ\¶ŸYº£WÄ­]ѺjÜÅuäËyçÎ|ìÒ~îÔ€óÙ…óÙ„õÙ…öÛ„ùÛ…ú܆û݇û݇ùÛ…÷ÙƒôÖ€óÕò×~õÚùÞ…úá‡üã‡üã‡üåˆýæˆþç‰ýéŠýéŠÿéŒÿçÿæ’ÿå‘ÿæ‘ÿåÿåÿåþæÿè’þè’þè’ÿé“ÿé“ÿë”ÿë”ÿë•ûê˜úëšûì›ûïýð¡ýò¢þó£ýõ¤þ÷§ýø§ý÷©ûø©ûø©úù©úø«úø«üú­úû­ùú¬øû¬øû®÷û®öý¯õþ¯òý¯ñþ¯ðþ±îÿ±îÿ±íÿ±íÿ³ëÿµëÿºëþ¼ëþ¾ëþ¾êþ¿êþÁéþÅçþÆèÿÌèÿÎæÿÑåÿÓåÿÕäÿ×äÿØäÿÚáÿÛàÿßàþâÞÿäÞþçÝþëÜþîÚþòÝÿùÜÿúÛÿùÙÿû×ÿú×ÿúÖÿù×þûÛýþÝüÿÝüÿÛýÿÛýÿÚýÿÚýÿÚýÿÚýÿØþÿ×ýþÔúûÎôõÄìë¼ää¶ßá³àæ¯Þæ­Ùâ©ÖÜ¥ÐסÉÑÄËšÁÈ“¹Â“»Å”¾Ê–ÀΗÂÒ•ÃÓ”ÃÕ•ÂÕ•¾Ò“¼Ð’¸Ï¶ÌŽ³ÍµÎµÐ¸Ò”¸Ø•¼Ûš¾àšÁâœÀä˜¾â—ºà–¸Ý˜¶Ú”®Ï‹¤Âƒ™±~¤y‰™xv|Œqr„ponk|okznjygdo]WaSNUHAIF\NE\PD[QE\SD]VF^WG^XH]ZGcbNgfQlnXrv_z~gƒj‡mƒ‰m†‰j‰h’”l™œoŸ¡o§ªuº»‚ÊÊ”ËË™ÅÆœ½¾ž³µŸ¬®£«­ª¬¯´°²¾¬­¿«¬Á§©ÀŸ£¾—œ¹’˜¸˜¹Ž˜¼‹”½Œ•¾‹”¿‰¼„‹·„‰³…‰¶ˆ‹¸‘¿Ž½”“¿›˜Ã¡Â¤Ÿ¿®ªÃ¸·Ç»¾Ç¼ÁźÅǹÈ˹ÌÓºÒÜ¿ÛçÃáìÕöýØùþàýÿäÿÿèÿÿêÿÿéüÿêüþàïôàñøàñûÝïûÙìûÖëüÖíÿÖðÿ×õÿÏôüÇóþÁòÿÀöÿÂøÿÅúÿÈúÿÈøÿÀîÿ³ßÿ¨Ñÿ¦Çú¡½ï™«ÛŽšÄ…Š²ƒ‡­€‡³€‹¹}À|’Ć¡Ð‘°Þ¦Éó¬Ñû°Õÿ°Ôÿ¯Òÿ®Ðÿ¦Çÿ »ÿ•¨êŠ–Òt~±bgVWuQNaPJXOGRTMUTMUTMUTJRPEKJ>@F88E24B+1D+1B)/A(.=&,<%+:#):#)7"'7"'7"'7$(9&*;(,>+/=-0G7:J:=K22<00;--:,,9)*6&'5%&4$%4$%3%%3)(3+)3+)4,*3+)2*(0(&/'%7,48-58-58-59.6:/7:/7:/7;08;08;08;08;08;08;08;08.8>.8>.8>.8?.8?.8?+6?+6?+6@,7B,8C-9C-9C-9J2?J3=N35p>3q=2q=2s?4vB7wEžd>f?žg>Ÿh?Ÿi=›g8œh8k: n;¤r?©wB¬}G¯F¯ƒF°‡GµŒJ¹”N½˜R½R¿ŸR½ P¹ŸK»¡L¾£J¾£H¿¢FÀ£GŦI˪KÒ¬I×°KÛ´OܵPزOÔ±MÒ°NгOͱM̳N˳OÊ´OɵRÉ·SÉ·SÉ·SθSϸRйSѺTÔ»VÖ½VØ¿ZÙÀ[Ú¾ZؼYÓ´WɪO¾ŸE¶–?·”B¶–Cµ•B¶—D·˜H³“F¬ŒA¥‡?¤…B¤‡E¢„D ‚DŸEœCœ€ABŸƒDž„GŸ†M„K›‚I„K¢ŠN¥Q¦ŽR¦ŽR§Q¬”V²šZ¶ž^·Ÿ_µ]´Z³œVº£WƯ_ØÁqäÍ}êÑëÒ€ìÒ~íÓñ׃òØ„ó׃ôØ„÷Ø…÷ÙƒøÙ†øÚ„÷Ùƒ÷ÙƒöØ‚öØ‚öÛ‚ùÞ…ûâˆýäˆýäˆüå‡ýæˆýæˆüè‰ýéˆýéˆÿé‹ÿçÿç’ÿæ‘ÿæ‘ÿæ‘ÿç‘ÿç‘ýç‘ÿé“ÿé“ÿé“ÿë”ÿë”þí•ÿì•þì–üë™üë›üíœþïžÿï¡þñ¢þó£þó£þõ¦ýö¦üö¨üö¨ú÷¨ú÷¨ù÷ªù÷ªûù¬úø«ù÷ª÷øªöù¬õù¬öú­ôý®òý¯ðþ¯ðþ±îÿ±íÿ±ëÿ±ëÿ³ëÿµëÿºëþ¼ëþ¾êþ¿êþÁéþÃçþÆçþÈéÿÏçÿÑæÿÔæÿÖåÿØåÿØåÿÙãÿÛàÿÝÞÿàÞÿäÝÿæÝþéÜþíÚþðÙÿôÛÿøÙÿùØÿú×ÿúÕÿùÓÿùÒÿøÔþú×þý×ýþÙüþ×ýþ×ýþ×ýþ×ýþ×ýþÕýýÖþþ×ÿÿÕýýÑ÷øÈððÀèèºãç³âì¯ßë­Ûè­Ùä«Õá¦ÑÚ¢ÈÓÃΗ½È˜¾Ë™ÀÏ™ÃÓ™ÂÔ—ÂÕ“ÀÕ’¿Ô”ºÏ”ºÏ“·Ï‘·Î‘µÏµÏ‘´Ð‘¶Ñ“¶Ô”¸Ø˜ºÝ™½ß›½â™½á˜ºà—¹Þ—µÛ”®ÑŒ¥Ä„™´~¦xˆ˜x’w}rs…ro‚qm~qm|qjzico[U_PIQI?HF?V22R0/S10Q20N0.N0.P41R95S;7T<8T?:XC>ZG@_QF^RD_SE_VG`WHaZHb[Ib]IigRmlWts^{}eƒk„ˆo†Šq‡‹p‰lŒk”—l¡o¨«t¸¼ÍΔÙÜ£ÒÔ£Ëͦ¿Â§´¶¨­¯ªª­²«¯º®±Â«­Æ©ªÈ£¦Ç¡Ä—Á’šÁ™Â˜Å˜ÆŽ˜É—È‹“Ä…¾ƒ‰»‚ˆº…‰¹ŽÁ‘Á–—Å¡ Ê¦¤É«¨Ç¸´ÍÅÂÓÊÊÔÎÑÖÐØÛÎÙÝÅÖÞÁÔâÂÙéÃßí×õÿÝüÿåÿÿêÿÿíÿÿëÿÿèûÿæùýáó÷áó÷àñùÚìöÒæñÊàíÇÝëÄßêÊèðÇìôÄðûÁòÿ¿õÿÀöÿÂ÷ýÅ÷ÿÉøÿ¼êÿ¬Öÿ£Éú¤Ãù¤»ïœª×“šÄŒŒ²†„©}¦y~¨s{©p}ªw‰·€—˦ѓ°Ú›ºè ¾ð§Äþ«Çÿ¦ÁÿŸµþ—¨íŠ–Òt{¯adVVrSPcTN\TNXWRYXSZXQYVOVRINLBCH::G55C,2D+1C*0A(.=&,;$*:#)8#(7"'5"&5"&5"&6#'6&)8(+9),C36E69J;@KABMDGOKJSQRWWUceddfcdfeceb___YYWSSSPOMPHFNDCJ@?H>=G=.8>.8>.8>.8?.8?.8@,7@,7@,7@,7B,8B,8B,8B,8G1>I1>M1=P2:U5:\8:c:8h;6i:4m<5p>5s?4r<2s=1u?3wC8xF=wG;xF;yH9}I;€M:ƒO:…Q9ŠT:Y;—^AšbAœa?›aŸe= g<žh<Ÿi;žj: l:¢o:¦s<ªyA¯~D³‚H´†J¶‹G¶ŽH¹‘K»—M¾šP¼œO¼MºžK¼¢M¾¤MÀ¥LÀ¥JÀ£GÁ¤HƧJ˪KÓ­JÚ°LܵPݶQÙ³PÕ²NÓ±OÑ´PβO̳O˳Q˵RʶUÉ·UÉ·UʸVϹTϹSѺRÒ»SÔ½U×ÀVÚÁZÛÂ[Ú¿XÛ¿[Ú¾]Ó¶XɪP¾žG¸˜E¶–C´•B´˜Dµ˜H±”FªŒC¥‡?£„A¢…C¡ƒCŸƒDœC™B™B›DƒFŸ…H¡ˆO‡Nœ†LŸ‰O£S§‘W¨’V§‘U¤Pª•V±œ]´Ÿ`³ž]±œ[±œ[´Y¾§YÍ·dßÉvëÕ‚íׄëÕ‚íÔ‚îÕƒïÕïÕñÕ‚ñÕ‚ñÕ‚òÖ‚òÖƒòÖ‚õÚƒõÚƒöÛ„øÝ†ú߆üáˆýäˆþå‰ýæ‰ýæˆþç‰üè‡üè‡ýé†ýé†ýéŠÿçÿç‘ÿè’ÿè’ÿè’þè’þè’ýé’ÿë”ÿë”ÿë”þí•þí•þî–ÿî–þî—ýìšþíþíŸþî ÿï¡þñ¢þó¤þó¤þõ¨ýö¨üö¨üö¨ú÷ªú÷ªú÷ªú÷ªûø«ù÷ªøö©õö¨ô÷ªôø«õù¬óü­òý¯ðþ¯ðþ±îÿ±íÿ±ëÿ±ëÿ³êÿµëÿºëþ¾êþ¿êþ¿êþÃéþÅçþÆçþÈèÿÎæÿÐåÿÓåÿÕäÿ×äÿØâÿÚâÿÜÞÿßÝÿâÝÿäÝÿçÜÿëÚÿîÙÿò×ÿôØÿ÷×ÿøÕÿùÓÿûÑÿúÑÿúÐÿùÐÿùÓÿýÓÿýÕÿýÓÿýÓÿþÓÿþÕÿþÕÿþÔþýÕÿþÖÿÿÕþÿÒúüËôöÅîð¿êð¶äñ²áñ¯Ýí¯Úê¯ÙéªÔâ¦ËÛ¡ÇÔ™¿Ì›ÀÐÂÔÃÖšÃ×—Á×”¾Ô’¼Ò“·Í“¸Ë”·Í’¶Ì“µÎ‘µÍ’´Ï‘´Ð‘²Ñ’µÓ–·Ø˜»Ûš»Þ™»Þ™¹ß™¹ß•³Ù“­Ð‹¤Ã‚š´|ޤv…˜w€‘w}tu‡tq„rnsl|qhyh`mYQ\MFNH>GF:DD8BE9CG;EI=GH:X?;YA=]EA_KDbQG_SEaUGaXGd[Je^Lf_MfaMpnYss[yya~€h„†n†Šo‡‹p‡ŒnŠŽm”l—šm¡¦p²¶{ÇÌŒÚߟåè¯ÕרÍά¿Â¯´·°¬°³ª®¹©¯¿ª¯Å¦©Ê¤¦ÌŸ¢ËšŸÉ•œÈ’šÉŽ˜ÉŒ˜Ì˜ÎŽ™Ï˜ÎŠ“ʃŒÃˆ¿†½†½‰ÁŽ’Á™šÈ¦¥Ï«©Î±®Í¿»ÒÍÊÛÕÓÞàáææëïàéîÏÜåÁÑàÀÑåÂ×êÈßíÍèóÛóýåüÿëÿÿéüÿãöüßñõàïôßîóÚéîÎàäÂÓÚ·ÊѱÄˬÃɽÚÞ½âè¿ëöÂóÿÃøÿÄúÿÅúÿÇùÿÉøÿ¸äÿ¦Ìù¡Â÷¥À÷¦ºí£®ÛŸ£É±ˆ…¤|{uu™lp•fn“luœt‚©w‰±”¾‹ Ï–«à¢¸ô«Àÿ©½ÿ¢´þ›¨î—Õx~²eh‘\\x[Xi]Wc^Y`^Xb\Yb]WaZS[VLTODHJ<;I77D-3F+4C)2A'0=&.;$,8#*7")6!(4!'4!'2!'2!'3$)4%*5&+:)/>/4E6=H=AMDIPLMUSVYYYefhfhgghjgihdeg_a`[[]XVWXOPVLKRHGPFEMCBH>=B66=11;--:,,;+,9)*8()6&'4$%3%%2*(1,)1,)2-*1,)0+(.)&-(%8-59.69.6:/7:/7;08;08;08;08;08;08;08;08;08;08;08.8>.8>.8>.8?.8?.8@,7@,7@,7@,7B,8B,8B,8B,8F0=G/6t@5t>2t>2wA5yE8xF=wG;yGžb=Ÿc>žb=Ÿc>žd>Ÿe=¡h=¢i< j<¡k<¤o=¥r=¨u>­zA°Eµ„I¸‡L¸‹J½L»”I¼•J¼˜L½™Kº›Iº›I¸œH½£L¿¦LÁ¦KÁ¦KÂ¥IæJÈ©NΫMÕ­KÚ°LÞ´PݶQÚ´QÕ²NÔ²PÑ´PβOÌ´PÌ´RʶSʶUʸVȸXʸVͺTкTÒ»SÔ½UÖ¿UØÁWÚÂXÚÂXÙ¾WÛ¿[ÝÁ^Ú½_Ôµ[ʪSÁ¡L»œI·˜E¶šG¶™I²•G­F¦‰C¡„@ŸAŸƒDB˜~A–|?—}@™BƒFž†JŸ‰O‡N‡M¡‹Q¦V©“Yª”X©“W¥Sª•V¯š[°›\¯šY¯šY³ž]·£^ƱbÕ¿lçÑ~ðÚ‡ðÚ‡íׄïÖ„ñ؆ïÕïÕðÔñÕ‚ñÕ‚ñÕ‚ñÕ‚ñÕ‚öÚ†÷Ü…ùÞ‡üáŠþãŠÿä‹þå‰þå‰ÿèŠÿèŠýéˆýé†ýé†ýé†ýé†ýéˆÿçÿç‘ÿè’þè’ÿé“þê“þê“þê“ÿì•þí•þí•þî–þî–ÿï—ÿï—ÿï˜ÿîœÿîžÿî ÿï¡ÿð¢þñ¢ÿò¤þó¤ÿö©þ÷©þ÷©ý÷©ûø«ûø«ûø«ûø«üù¬ú÷ªøõ¨öô§ôõ©ô÷ªõù¬ôý®òý¯ðþ¯ðþ±íÿ±íÿ±ëÿ±êÿ³êÿ·ëþ¼ëþ¾êþ¿êþÁéþÃéþÆçþÈæþÊåÿÏåÿÐäÿÔãÿÖãÿ×ãÿ×áÿÙàÿÛÜýÞÛýâÛýäÚýåØþé×þìÕþðÔþôÖÿ÷ÕÿùÒÿúÑÿúÎÿùÎÿùÍþøÌÿøÏÿüÎÿüÏÿüÏÿüÏÿýÏÿýÑÿýÑÿýÒÿþÒÿþÓÿÿÒþÿÐüýÌøùÊóõÆñ÷»éøµäö°Ýð°Ûì°Ùë¯Öç©Îà£ÈØ›ÀÐÂÔŸÄ× ÄÚžÄÛ˜Á×”¼Õ’»Ñ‘µË’µÉ”´Ë‘´Ê“³Ì‘³Ì”³Ï’´Ï‘°Í‘²Ñ•³Õ–·Øš¸Ü™ºÝ›¹ß›¹ß”²Ø’®ÓŒ¦Ç‚š¶|ަu„—w€‘x~Žvw‰ur…tmqjznfue]jVNYMCLHHI=GG;EMAKNBLQEOTHRWKUZNX\PZ^S[`SZbU\hXbj]gm_nm`qm`tm_voaxoc{pd|pf~rh€ulvm‚vovrvrxqwp€xo€wnynyn}o€|n~m~m~k~~k~€k~j}†q‚‰uwƒŽw}wyws’yr—|qš~sœ~sž}tšwqlhƒ]\uNOmEFg:=a47[.1W-/X.0X01U./P,,S10T53X:8Y=:[?<[B>`GC`LEaPFaSFcVFeYIi]MjbOldQleRwr\xv_}{d‚‚h‡‡mˆ‹pŠrŠq“r–›s¢¥v¯´|ÃȈØÝšåê¨èí³Ô׬Ëα¿Á³´¸·®²»«±Áª±Ä©®Ë¦¨Ï¡¤Ñœ Ï—Í•œÐ’œÑšÐ˜ÐŒ˜Ô™ÕŽ˜ÕŠ”хˇŅÁ…¿‰ÃŽ”ÄŸÏ©«Ô°®Õ·´ÓÅÁØÖÒáãáìîíóóöûìñ÷ØàíÇÓãÂÎæÁÑè¶ÇÛ¼ÏÞÉÛé×éõâóýåóüÞìõÙæîÍÚàÊØÛÆÑÕ¸ÆÇ«¹º ®¯š¨©•§©­ÉÌ­ÒØ´àë¾ïýÅúÿÉÿÿÊüÿÉùÿÂïÿ±Ùü Äôž½ô¥»ô¦¶ê¥¬Ø¥¥Ë‘Ž­†‚yv‘roŒhi…bfƒfk‰ms“r| z†®…“‘ ×¢°ï¯¾ÿ¯¼ÿ©´ÿž¨ð‘›Ù€†ºqsškh…hevhepjelebkdajd^h_ZaXQXRGKJ?=H88G.4G,5D*3A'0=&.:#+7")6!(4!'3 &1 &1 &1"'2#(4%*5&+4#+9*1>18E:@JAFOJNVTW[[]degefhhikijlhikefhbbd`^_^UV]SRZPOWMLSIHLBAD88=11;--;--<,-;+,:*+7'(5%&3%%2*(1,)1,)2-*1,)0+(.)&-(%9.69.69.6:/7:/7;08;08<19;08;08;08;08;08;08;08;08.8>.8>.8>.8?.8?.8A-8A-8A-8A-8A+7A+7A+7A+7E/4t?7uA6u?3v@4yC7{G:yG>yG d?£h@£h@¤iA¥jB¥lA¦m@§o@¥p>ªuA«v@®{B²€E¶„IºˆK¼ŒN»ŽK–M¿˜K¾—J¼™H½šI»œI½žK¼¡J½£L¿¦L§L§LÃ¥KŨLÊ«PÑ®PÔ¬JÚ°LÞ´PݶQÙ³PÕ²NÓ±OѳQϳRÌ´RÌ´TʶUʶWÊ·XȸY˸Y̹SкTÓ¾UÕÀWØÁWØÂU×ÁT×ÁTØÀVØ¿XÜÀ]Ü¿aÚ½aÔ¶^̬WƧT½žK¹J·šJ´—K¯“I¨‹E¡„@›>›@™|@”z=’x;’z<•}?™Cœ„Hœ†L›…Lœ†M ŠQ¥U©“Y©“Y§‘U¦Tª”X­˜Y¬—Xª•V­˜Yµ _½©dϺkÜÇtíׄóÝŠðÚ‡íׄñ؆ôÛ‰ò׆ò׆ò׆ò׆óׄóׄóׄóׄ÷Û‡ù݉üáŠÿäÿæŒÿæŒÿæŠþå‰ÿé‹ÿé‹ýéˆýé†ýé†ýê„üê„üêˆýèýç‘þè’ýé’þê“ÿë”ÿë”þí•þí•þî–þî–ÿï—ÿï—ÿñ˜ÿñ˜ÿñ™ÿïŸÿï¡ÿï¡ÿï¡ÿð£þñ£þñ£þó¤ÿ÷ªÿøªÿ÷¬þø¬üù¬üù¬üø®üø®ÿù­ûø«øõ¨öô§ôõ©ô÷ªöú­õþ¯òý¯ðþ¯ðþ±íÿ±íÿ±ëÿ±êÿ³éÿ·êÿ¼êþ¿êþÁêþÁéþÃéþÆçþÈæþÊãýÍãýÎâýÒáýÔáýÕßý×ßýÙÞýÛÛüßÚüáÙýãÙüæ×üêÖüíÔýïÓýóÔÿöÒÿøÐÿùÎÿùÍþøÌÿøËþ÷Êÿ÷ËÿúÊÿúËÿüËÿüËÿüËÿüÍÿýÎÿýÐÿÿÐÿþÑÿÿÐþþÎüüÍûûÍùúËøþ¿íý·æú±Þó¯Úí°Ùí°ÖéªÏá¥ÈÛœ¿ÒžÁÕ¡ÄØ¡ÅÛŸÅÜ™ÁÚ•½×”¹Ó’µË“³È’±Æ°Å’°È’²Ë”²Î”³Ï­Ë‘°Ï”±Ó–´Öš¶Ûš¸Ü¹Þœºà–´Ú”°Õ©Ê…¹~¨w†™y”{€“{zŒvs†sl~ofwmbrcYdVLUKAIG;EF:DE9CG;EJ>HK?II=GG;EMAKNBLQEOTHRWKUZNX]Q[_R[bSZeV]jYcm]hp`moapn_rm^spaxpbyrd{sg}uiwkxl€wnvotpvowp€xo€yp{p{p€q„pƒpƒ€o‚€m€l€k~€k~†oƒˆq‹s‹t|ŒsvŒrq‘vo”xm—yo–vk‘ofŠe_}WTqIIf>?`68`25^02[-/X,-X,-V,-T,,S-,Q.,S1/V74X;7X<8[?;`D@`IAaOC`SCcVFg[Kk`NmeRqiVqkUzu_zxa}dƒƒi‰‰oŒr“v’•x—›z¤©³º‡ÃËØß›èï©ëò®æë±ÔÖ®ÊγÀú¸¼¿´¸Ä±¶Ê®´Ì«±Ñ§ªÕ£¥Ö Ó™ŸÓ˜ŸÖ–ŸØ’œ×›×˜ØšÚšÜŒ—نЊË‡ÆˆÃ‹’È’˜È¢¤Ô¯±Ú¶´Û¼¹ØËÇÞÜØçæãîæåëäåêÜßæÎÔâÂÉÛ¹ÀÚ²¼×°ºÓ±¼Ò·ÂÖÅÍàÐÙêÔÛëÍÕàÆÍ׸¿Ç¶½Ã³¸»ª°° ¦¦™Ÿ—›” ž•¯®–¹½ ÊÖ°àî¾òÿÄùÿÄõÿÀïÿµáú¦Îò™½ï›¸ò¡µð ­âž¡Î›ÀŒ©„€—yuŒsq†nlhi}jlosŒty—{€¦„‹¹‘˜Ï¡©ê°¸ÿ±¸ÿª±ÿ ¨ñ–žßŠÂ}¦yv“urƒtq|rovlirkhqhepd^h\U\TIMK@>I99G.4G,5D*3A'0=&.:#+7")6!(3 &2%0%1 &1"'3$)3'+4(,4%,9)3>1:C8@I?GNIOVTY[Z_abfaeheilhlojkohimfejecfd[\bXW`VU]SRXNMOEDE99=11:,,:,,;+,;+,9)*7'(4$%1##2*(1,)1,)2-*1,)0+(.)&-(%9.69.4:/7:/5;08;06<19<17;08;06;08;06;08;06;08;06.8>/6>.8>/6?.8?.6A-8A-6A-8A-6A+7A,5A+7A+7D.:F.;I/8O19U5:[9:a;:f=9i<6o>7sA8vB7v@4wA5zE7}G;{G<{G<{G:|H:}J9L9‚N9…N9‰S;X=š^B cD£dA¢d=£d9¤e:¨jA©kBªlC©nBªpBªrAªr?©t>­y@®|A°€B´„D¶‰H¹ŒI»ŽK»KÁšMÀ™J¾™I½šI¾›I¿ŸJÀ¢L¤L¾£JÀ¥JħKħKŦKǨKͬOÒ°OÓ­JرLܵPÛµP×´PÓ±OÒ±PѳSͳRÌ´T̵UʶUʸVʸVɹW˹W̹SкTÔ¿V×ÂYØÃX×ÂUÕÀUÓ¾SØÁW×ÀXÖ¾ZØÀ^ÚÂb×¾aѶ[̱X¾£Lº K·œK´™L±•LªH …B—~>–|?“y>w;u9Žv8’z<–~@—E˜ƒJ˜ƒL™„Mœ‰O£ŽU¦’W¦‘X¤U§‘Wª”Z«•Y©”U§’S«˜V¶£_À®dÕÀoãÍxðÚ‡ôÞ‰ðÚ‡íׂòÙ‡÷ÞŠõÚ‰õÛ‡õÚ‰õÛ‡õÛ‡ôÚ†õÙ†ôÚ†øÜˆùߊþãŒÿåŽÿçÿç‹þå‰ýäˆÿé‹ÿé‹þê‰þê‰ýéˆýéˆýéˆüéŠüèüè‘ýé’ûê’þê“ýì”þí•þí•þî–þî–þî–ÿï—ÿñ˜ÿñ˜ÿñ˜ÿòšÿðÿðŸÿð¢ÿð¢ÿð¢þñ£ýò£ýò£ÿø©ÿø«ÿù«ÿø­ÿù­ÿù­ÿù­ÿù­ÿù­ûø©ùö§öô§ôõ§õø«öú­öý°òý¯ñý±ðþ±îþ³íÿ³íÿ³ëÿµêÿ¸êÿ¾êþ¿êþÁéþÃéþÅçþÆæÿÈäÿÌáýÌàýÏàýÑÞýÓÝýÖÝýÖÝýØÛýÜØüàÖýâÖüãÕüçÓýéÒýìÑýðÏýòÑÿøÎÿùÍÿùÌÿúËÿúÊÿùÈÿùÈÿúÊÿýÈÿýÊÿýÊÿýÊÿýÊÿýËÿÿËÿÿÐÿÿÐÿÿÎÿÿÌþýÌüüÌüüÍýýÍüÿÁðÿ¹èü±Þó®Ùì¯Øì°Öé«Ðã¥ÊÝœ¿ÓžÁסÄÚ£ÅÞ¡ÅßÁÛ—¼×•¹Ó“³Ì“±Ë‘¯É­Ç®È”¯Ê–±Î˜³Ñ‘¬Ê“­Î•¯Ò˜²×›´Ü¶ÞŸ¸à¹à™µÝ™³Ø“«ÍŠŸ¾‘«{‡|‚˜€ƒ–}zyq†sj}odtk_mbVbVKSLAIH;DF9CF9CG;EJ>HK?IJ>HH%+:#)7 &5 '2%2%0%1 &1"'3$)4(,5)-8)09,3>3;C8>H>FNHLUSX[[]_`dbcefgkjkmklpjkmihmhfig^_e[ZcYX`VUZPOPFEF::=118**8**9++9++8()4&&2"#-!!3)(1,)3+)2-*3+)0+(0(&-(%;06;04;06;04;06;04;06;04>39=26=28<15<17;04;06;04>18=15>/6<-2<-4<-2>-5>-3A-6A.4A-6A.4B-6B-4B-6B-6B+5E.8J09L18Q27U58]99d<:j?9nA;uE;wE:xD7yD6|D5~F9{E9~H>K?€L>~K:~K:N;…P>†O;U>š^D¦gH¬lF¯l?®k7¬i4¯m=®n@®pA°rC°tB°wB°yA¯{A²‚D±„C³ˆDµG¸’Kº–L½™O¾šN¿›M¿›M¿œKÀLÁžLàLãLÄ¥KÇ¥KȧJÊ©JͬMÏ­LЮMЮMЮJÔ³JÕ´KÖµNÖ´PÔ´QѳQϳR̲SɯPɱQɲRÈ´SÉ·SʸRÊ»TÌ»SнVÓ¾UÕÀW×ÂYØÃZÕÃWÔÁXÓÀWϼSÒ¿V×Ä]ÙÈ`ØÇ_ÕÃ]оXκYɲUÅ­U¾¥Q´Oª’H¡ŠFš‚B—C’|B’|Cy@Št:‡q5‰t5{<•D”€K“‚N”„P•ˆQ™ŠQœRŸŽV¢W£ŒV¥ŒV§ŽVª’V¥’P¦•O³§[ŹgáÌyíÕòÙ…ðØ‚ð׃ô܆õ܈òÚ„÷ÞŠöÞˆõ܈ô܆ô܆õ݇÷݈÷߉úà‹úâŒýãŒýåÿçÿêÿìÿìŽÿëÿêŒÿêŒÿéŒÿè‹þæŒþæŒüçŽùèùç‘úè’ùé’ûé“úê“ûë”ûë”þî—ÿï˜ÿñšÿóœÿóœÿò›ÿñšþð˜ûï›ûï›ûïûïûïúïŸúïŸúïŸÿô¤ÿô¥ÿö§ÿö©ÿö©ÿö©ýô§üõ§ùö¥ø÷¥ø÷¥÷ø¨÷øª÷ú­öú­õü¯óû°ðú±îø±ì÷²ëø²ìù´ìû¸ìü»äù¸äúºæü¾æþÂæþÄåþÅãþÇâþËáÿÍÝþÏÝþÑÚþÒØýÔÖüÓÕûÔÒúØÒýáÐþäÐýæÎþèÎýéÍþëËþïÊþñÉüóÈýõÆýøÇþûÆþûÅÿþÅÿþÅÿÿÉÿÿÈÿÿÈþÿÇýÿÇýÿÈþÿÉÿÿÊÿÿÉÿÿËþÿÊýþÉüýÈûüÈûüÈûüÈûÿÂòÿ½ìþ¸åøµàñ±Üí­Öè¦Ïá£ÉÞš¾Ô›¿×žÀÙŸÁÚžÀÛœ¾Ùœ»×›º×‘°ÏŽ­ÌŠ©ÈŠ§ÅªÈ’«Ê”«Ë“ªÌ§É¥Ê¦Ï•ªÕ›²ÞŸµäž´ã´àš±Û—­Ô‘¥È‹›½‡’²„‹¨ƒ„ …šƒ{’zn‚qdvk]ldTaYHRRAIRAIN>HN>HO?IM@ILAIK@HI?GI?GMCKODLRENVFPYHR^JU`JV`LWbR]cV`h[el^koannbpn`ql_ppcuqdvsfxuh|wj~xkyl€yl~~qƒ|o€{m~zl}{m~}o€ƒr„…t†ƒpƒ‚o‚€m€l€k~‚k‚kƒl~rƒŠo~‡ky‰kw‹mwŽounsŒlo‡ef|ZYpJIhBAf>>c;;^66Z01Y,/Y,/Y,1V,.V,.V,.U-.U-.S-,V0/W40X51W61X72[:5Z?6\L?\SDcZKg`NkdRohUtnXvq[yu\€|a…„f‰‰gŒŒh’’lœœv§¦z¬¦r¼€Ùؘìí«ôù¶ôý¼èó¹Úæ¸ÉÖºÄпÉË»ÄÓ¹Áص¼Ù­¶×ª¯×««ß§¦à¢¢Þž¢á›£ä™£è“¡èŽŸçŽœåŒšãŒ•àŠ‘ÙŠÒŠ‰Í‰†É‹…Åœ“̤šÎ°¤Ôº¯Ù·ÙǺÔȼÐɽËÁ´½¼¯¶µ©­¯¢©ªš¤ “–ˆ•ƒ‘‚w‡|tƒyn~wlzwkwuisqfnnciujnzpq~vt|wsytpxun||t€‚}{…†yˆ„–¤š¬À§½Õ§¾Ý§½â©¿è—©×–¨Ú–¦Ú˜¥Ù˜¢Ó•œÈ”ºŠ®‡‹¨ƒ…ž{}–vvŽvtŠwt‰wt‡vs†usˆuwŽ{€†Ž³”¡Îž­ä¥µñ¨¶÷¦¯ò¦«ë›¢Ùޔċ¶‹°…‰¤|~•pq†ljebuaZj[S`XMUQEIO?@R9=N47H-2B)-@'+='*:$'7"'5"&5"&3#&3#&1"'1"'/#'/#'0$(2&*7,2@59I@EQKMWQUZVWgehjhimmooqppqsnpolmoljkrijl`bbVX[OQWKMPDFE9;<023')2&(1%'0$&2#&1%'4%(3')4*)3+)4*)3+)2('/'%.$#,$";04;04;04;04;04;04;04;04>37=26=26=26<15<15;04;04>26=15>/4<-2<-2<-2>-3>-3A.4A.4A.4A.4B-4B-4B-4B-4B+5D-5I06L16O27T47[98c=:h?;mB;tE;vF:xD7yD6}E6G8}D9~H~K:~K:N=„Q@‰Q@WCœ`F¨iH¯nF´p?´o6³n5³q=±r?²s@²tA²v@±y@¯{?®|=µ…C³ˆD´ŒFµ‘G¸”J¹˜KºšM»œL½œM½œM½œK½œKÁžLŸKÄ¢KƤKǤJÈ¥I˨JάKЮMÒ®MÒ®MѯKÓ´JÔµKÕµNÓ¶PѵRδS̲SʲRȯRȱSdzTǵSÉ·SɺSʼSʼQнTÓ¾UÕÀWÕÂYÕÂYÕÂYÓÂXÒÁWÑÀVÑÃXÔÆ[ÖÈ]ÕÉ]ÒÆZÏÃWοX͹Z˳YíX¹¢R­—L¡ŠF–B‘{A’|C{DzC‹v=‰s9‰s7Žy:’~A~JL‚N…M’‡O•‰Oš‰QŠR¡ŠV£ŠT§ŒW¨T¤‘O¥—N²ªYƼgãÏyîÖ€ô܆òÚ„òÚ„öÞˆ÷߉ô܆ùá‹øàŠ÷߉öÞˆöÞˆ÷߉øàŠùá‹øâŒùãúåŒüçŒþéŒÿëŽÿíŽÿîÿìÿìÿêþéŒýèüçŽüæúæùç‘øè‘øè‘ùé’ùé’úê“úê“ûë”ýí–þî—ÿð™ÿò›ÿò›ÿò›ÿñšÿñœüðšûñœûñœûñœûðžûðžûð ûð ÿô¤ÿô¤ÿö§ÿö§ÿõ©ÿõ©ÿó§ýô¥úø¥ùø¥ùø¦øú§øù©øû¬øû®÷û¯óù¯ñù°ïö²ëõ°ëô±êõ³ëõ¶éø·å÷¹äúºæü¾åýÁæþÄåþÇâýÈàþÊßÿÎÛÿÏÙþÒ×þÒÔýÓÒüÔÑûÕÏûØÎüàÌüäËüæËüæÉýçÉüéÈýíÇýïÅýòÅýôÄý÷ÅýúÃþüÃÿÿÃÿÿÅÿÿÉÿÿÉþÿÈýÿÇüÿÇüÿÈýÿÉþÿÊÿÿÉþÿÈþÿÇýÿÇýýÆüþÆüüÆüüÆûÿÂóÿ¿îþºèøµãó²Ýî¬×è¦Ïã ÉÝ›¿×œÀØžÀÙžÀÙŸ¾Ú¼Ø»×š¹Ö”²Ô®ÏŠ¨Ê‰¦ÆŒ¦ÇŽ¦È¤Ç£Æ£ÆŽ¢Ç¢Ì”§Ò˜­Üœ°âœ²ã›±à›±Ú™­Ò“¥ËŽœ¿Š’¶†‹«†…¤ˆ‚ž…{“{n‚pbsk[hcQ]ZFOUAJUBHP?IP?IO?IM@IM@ILAIJ@HJ@HMCKODLRENWFP\HS_IUdJWbLXcS^cWchZgk_kn`onbpn`ol_prdurevufyuhzxi|xkyjyj}{m~|k}{j|{j||k}€m€‚o‚„q„…pƒƒn‚m€j~€i}€i}€i}‚i|‰m|ˆix†gv‡gt‰it‹js‰ho‰fl{X^rNPiBEc<=b::`88[31X./W-/W-1W-1W-1V,0U-.U-.T-.T-.W10[54Z73Z73[84^;7]@8\L?[RC_VGcZIg^MkdQsmWxrXxsV~_Ž‹h•–n˜™oœq¡£t©§tº´xÏLjáÝíí­ò÷·î÷¾àì¼ÐÞºÄÑ¿½ÌǹÆÏ·Âص¾ß±¹Þ«²Ü©­Ý©¨â¦¤ã¡¢ãœ¡ã—Ÿç’žè苛芚猘䌔ߌٌ‹ÏˆÊŽ…ÆƒÁš‰¿ Ž¾¨—ñ¡Æ¹©Æ»¬Á»ªº¸¨²¬œŸ©–˜¡Žš†ˆ“‹v{„ms}irtdnnakl\fjZdjYchW_eTZbRUaQReWVj\[g^Yd]Wc_Vie\lkfnoqlqwu{‡‡Ž š³›»™Â›ÈšË‘™Ê‘™È“šÈ–™Ä“•¼ŽŽ²‰Š©„ˆ£~‚›xy•vvyuŽ{vzu‰ws„spƒrs‡v{‘ˆ¥ŒšÁ—¨Öž¯å¢²î¤¬í¦«ëž¤Þ’šË”ÀŽ“¹Š¯„ˆ¥uv’qo‡if{c\n_TbZOWTHLSCDT;>R57H.1C),@'*?&);%(8$&6!&5"&3#&3#&1"'1"'/#'/#'2&*4(,9-1@59J?CSJM[RU]WYf`bhdekijpnopppooommmmijrhik_a`TVXLNSGIL@BB68:.03')2&(1%'0$&0$&1%'2&(3')3)(4*)4*)4*)3)(2('0&%/%$<15<15<15<15<15<15<15<15>37>37>37=26<15<15<15;04>26=15>/4<-2<-2<-2>-3>-3A.4A.4A.4A.4B-4B-4B-4B-4A*2D-5I06K05N16S36Z89a;:f?:mB;tE=vF:xD7xD6{F6}H:{E9~H~K:~K:N=„Q@ŒTC’YEaG©jI±pH·sBºu>·u;µv@´wAµxB´yA³{B³}A²~B°€@¸‹H¸I¸J¸”Jº–Lº™L»›N¼œO¾N½œM½œK½œK¾žKÀ K¢KäJÅ£IǦIÊ©LͬMÏ®MÒ°OÒ°OÓ±OÓ³LÑ´LÒµMѶOѵRδS̲SʱTȱTƲSdzTȶTʸVɺUÊ»T˽TнVѾWÒ¿XÔÁZÔÁZÓÂZÒÁYÒÁYÒÄ[ÓÅ\ÕÇ^ÕÈ_ÕÈ_ÔÇ^ÑÆ\ÒÅ]ÓÁ_Ѽ_˵_Á«X²œP¤G˜€@y=‘{B‘{ByCŽx?‹u;Št8u7w=yF‹{H‹~JŒHŽJ„J”ƒK˜ƒL †S¡†Q£ˆS¥Q£N¦˜Oµ­\ÊÀkæÒ{ñÙ÷߇õÝ…õÝ…ùá‰úâŠ÷߇ûã‹úâŠùá‰ùá‰ùá‰ùá‰úâŠùä‹ùåŽúæûçŽüéþëÿìŽÿîÿïÿîŒÿíŽÿìŽþëýêŽüèûçøç÷çøè“øè“ùé”ùé”úê•úê•úê•ûë–üì—þî™ÿð›ÿñœÿòÿòÿòüò›úó›úó›úó›úòúòúòŸúòŸýõ¢ýõ¢ÿ÷¦ÿ÷¦ÿö§ÿö§ýô¥üõ¥ýø¦úù¦úù§ùû¨ùúªùü­ùü¯øü°ôú°ñù°ïö²ëõ°êó°èó¯èó±çó³æö¸äø»æú¿æûÀäüÂãüÅàûÆÞüÈÞþÍÚþÎÙþÒ×þÒÓüÒÑûÓÑûÕÍû×ËùÜÉùßÈúáÈùãÆúäÆùæÅúêÄúìÃûðÃûòÃüöÃûøÂýûÂýûÂþþÃýÿÈÿÿÇþÿÆýÿÅüÿÅüÿÆýÿÇþÿÈÿÿÆýÿÆýÿÆýÿÅýþÅüÿÄüýÄüýÄùýÄõÿÀïÿ¼éü·ä÷³Þñ­Øë¥Îä ÉßœÀØœÀؿؿ؞½Ùœ»×›¹Õ™¸Õ•´ÓŽ¯ÎŠ©È‡¤Â‡¢À‡ ¿ˆœ½†š»Š¾ŠœÀ‹žÆ¢Ì’§Ò—¬Ù˜®Ý˜¯Û›±Ú™­Ò”¦ÌÀŒ”¸ˆ­ˆ‡¦‰… †|”{n‚m_pgWdaO[XGOUAJWDJP?IP?IO?IM@IM@ILAILBJLBJNCKODLRENXGQ]IT`JVeKXeMZeS_dWajZek^hp`mn`mp`mm_nudttfuxgyxj{{j|xi|zi|yh{zi{{iy{iy|jz~l|l}‚m~ƒn…n€ƒl~j|€gzfy~exfyfw…fu…er…er†dr†ep†bl^e~Y`kFMf?B`9<^67_56^45Z1/V,-X.2X-4W,3V-1U,0U,0T+/S,-U./V31Y64[86Z75[:5^=8^A;^J?^NAaQBbUEfYHnaNvlS}tW{uS…\“gœ›m¢¡q§§s®®x´³{ÌÇÚÕ›åã¨éê°èíµáë¹ÔàºÅÓ¹¼ÉÀ¸ÅË´ÀÖ³¾Þ±ºå­µæ¨¯å¥ªä¦¦æ¥¤è¡¤éœ é”œå™åŠ—åŠ—åŠ˜ãŒ•àŒ“ÛŽŽÔ‹Ì‡ÅŽ„Á‚¸‘€­’€¦–…§¨¥”§§—¤£’š žŒŠ˜…Ž{w†qnjgydcu\_mY[bSX]PW[LSZKP[JPYILWDHTACTDEWIH[MLYPKWPJWRL]YPb_Xgeffgkjmtuy…{€”{›z€¢{€¦‚‡±‚‡±…ˆ±‰‹²±Œ®Š‡¦†ƒ ƒœz|“wtxt~y‚z‘xŠ{t„rnqp‚rt‰y~›ƒ±›È–¦Ú©å¢ªé§«ë£¨âš Ô•™Æ“˜¾’—·‘•²šzxŽpkhaqdZc_TZZNN[IIX@@U8:J03D*-@'*?&)<&)9%'7"'6#'3#&3#&1"'1"'."&."&5&+7(-;,1B38J;@SGK]QUbW[cX\g^alfhrlntpqsopplmnhjqegj\\^PPUGGOAAH::?119++5''4&&3%%3%%3%%3%%4&&3''3)(4*)5+*5+*5+*4*)3)(2('=26=26=26=26=26=26=26=26?48>37>37=26=26<15<15<15>26=15>/4<-2<-2<-2>-3>-3A.4A.4A.4A.4B-4B-4B-4B-4A*2D-5H/5J/4M05Q35X67^;9d=8iA9pD;tE;vD9xD7zF8|H:{E;}I>€L?€L>~K:~K:N=…P>ŒUA‘YBœ`F§hG°oE·uC»xA¼z@·y@¶{C·|B·D·C·„E·…F·‡E¼‘Mº’Lº”M»–Oº˜N¼šP¼œO½P¿žO¾N¾L½œK¾LÀ MÁ¡L¢KäJŦKʨNˬOЯPÒ±PÒ±RÓ²QгMеNѵQ϶QδSÌ´T˲UɲUƱTƳUÇ´VƶVȸXÉ»XʽWʽWϽWѾWÒ¿YÑÀXÒÀZÒÁYÒÀZÐÂYÕÆ_ÔÇ^ÔÇ_ÔÇ^ÕÈ`ÔÉ_ÕÊaÖÉa×ÅcÖÂcѼaȲ]º¥Vª”Kœ…B“{=”{B’|C“zDy@Žu=Œs:Šr6ˆr9‹wDŠxHŠzGŠ}FŽH€G”I•€IƒPO …P¢‰P¡ŽL¦˜O¸¯`ÎÄoéÕ~õÝ…úâŠùá‰øàˆüäŒýåûã‹þæŽýåüäŒûã‹ûã‹üäŒýåüçŽùèùêûêŽûìýíŽþðÿïÿñŽÿïþðþîŽûìûêŽùêùèŽ÷ç÷ç’öç’÷ç’÷è“ù锸é”ùé”ùê•ùé”ùê•üì—ýî™ÿð›ÿñœÿòÿóžýóœûôœûôœûôœûóžûóžûóžûó ýõ¢ýõ¢ÿ÷¦ÿ÷¦ÿ÷¦ÿö§ýô¥üõ¤ýø¦üú§üù¨üû©üû«ûü¬ûü°úü±øü²õû³óù³ð÷³íô±êó°èñ°æò²æö¸äöºæø¾æùÁåúÂáúÃÞùÆÛùÇÜüÍÙýÏ×üÑÓüÒÒûÓÐúÒÍúÓËùÕÈöÙÆöÜÅ÷ÞÅ÷ÞÅöàÃ÷áÂ÷åÂ÷çÃùìÁùîÁúóÁúôÀû÷ÀûùÀüüÁûüÄþÿÃýÿÄûÿÁûÿÃúÿÂüÿÅüÿÄþÿÄûÿÂüÿÄûÿÂüÿÄûÿÁûÿÂùüÁøÿÄõÿÁðÿ½êÿ¸åøµßõ­×í¦ÏåŸÈÞÁÙÁÙ¿Ø›½Öœ»×š¹Õ™·Ó˜¶Ò“²ÏŽ­Êˆ¥Ã… ½„»„›ºƒ˜·–µ„—·„—¸†˜¼‰œÄ Ê¥Ð“¨Õ”«Õš°Ù—­Ò•§Ë‘ŸÂŽ–º‹°Š‰¨‹‡¢‡}•ymj\mcS`^LXWFNVCIWDJQ@HP?GO?IO@GM@IMBHNCKNCIODLQDKUEOYHP_IUcLVgMZfN[iU`hWakYen\hp^jp^jp^lp^lwesygw{iy|jz}j}|i|zgzyfy|gx}hw~iz€kzl}‚k{‚k}‚k{„k~‚jz‚gz€ev~cv~ct~cvbr„brˆdpŠftŠfr‡alZbwOXpHP`7=]48\24\23]34]34[/.V,-X.2W.4V-3U,2T+1R+.R+.O+-Q-/T00W33W53W53X64[97\=8`E@N47F,/A(+@'*='*:&(8#(6#'4$'3#&1"'0!&."&/ %4#)6%+<)/?.4F5;O@E[LQaUY`TXeZ^laeshlvmpulorilqghmaafXXZLLPBBI;;C55<..8**6((6((5''4&&4&&5''6((4((4((4*)5+*6,+7-,6,+5+*5+*>45>45>45>45>45>45>45>45?56?56?56>45>45=34=34<23>24=13>/2<-0<-0<-0>.1>.1A.2A.2A.2A.2B-2B-2B-2B-2A*2C,4H/5J/4L/4O13W56\97b:8g>8nA;rC9sC7uD6wF8yH:zF;{I>~M?~M>|K:|K:N;…P>ŠS?U?—[A¢cB«lA¶tB¼yB¿~D¸|>¶?¸Aº„D½‡G¾‹J¾ŽL½L¿”O½•O½—P½™O½›Q½R¾žS¾žQÀ¡Q¿ P¾ŸO¾ŸM¾ŸM¿ MÁ£M¤LĦNŧMɪOË®PίRвRбTϳRÍ´PÍ´OεQ͵S͵UʳUDzUŲVƳWijWĵXŸXǺZȼZɽ[ʾZοZоXоZοXÏÀ[ÏÀYÐÁ\ÐÃ[ÕÈbÔÉ`ÓÇaÓÈ_ÔÈbÓÊaÕÌeØÌfÕÆaÖÄbÔ¿b͸_Á«X³œP¥GœƒC—}B•|C”yB‘x@u>‹r:‡n5ƒl6‹uD‹vGŠxF‹|E~H‘€H”€K—€L›P›MœLŸ†MŸŒJ¦˜O¹°aÑÇrêÙõà…ûæ‹ùä‰ùä‰ýèþéŽûæ‹þéŽýèüçŒüçŒüçŒüçŒýèýêŽûì‘úí‘üíüï‘þïþòÿñŽÿóÿòþòŽþðûîŽúëŽøë÷èöèõæ‘ôè”öç”ôè”÷è•öê–øé–öê–øé–÷ë—úë˜ùí™ýî›ýñÿòŸÿôžýóœûôšûôšûôšûôœûôœûôœûóžýõ ýõ ÿ÷¤ÿ÷¤ÿ÷¤ÿ÷¦ýõ¤üõ¤ýø¦üú¥üú§üû©üû«ûü¬ûü°úü±ûÿµøþ¶÷ý·ôû·ñøµìõ²êó²èò³æô¹æõ¼æõ¾åö¿ãøÀà÷ÁÞöÄÚöÅÙùÊÖúÌÔùÎÐùÏÏøÐÍ÷ÑÊöÒÉ÷ÓÅóÖÃô×ÃóÙÂôÛÂóÝÀôÞ¿ôâ¿ôäÁ÷ê¿÷ì¿øñ¿øò¾ùõ¾ùõ¿úø¿ùúÁûÿ¿úÿ¿øÿ¾ùÿ¿øÿ¾ùÿÀùÿÀûÿ¾÷þ¾ùÿÀùÿ¿úÿÀùÿ½øþ½öý½óýÂóÿÀïÿ½êÿ¹æû¶àø®Øð¦ÎçŸÇàŸÃÝžÂÜœ¾Ùš¼×™¸Ô—¶Ò—µÑ–´Ð®Ê‰¨Ä„¢¾‚¸›¶™µ–³€“±®~‘¯”´ƒ—º‡›ÀŠ Ç¥Î’¨Ñ—¯Õ–¬Ñ•§Ë‘¡ÃšºŒ“°‹Œ¨‹‰¡†~•wkgYh_R\\LVVGNTCIUDJP?EO>DM>EM>CN?FMAEOBIQEIPCJSDIWFN\IO`KTeNViOZjP[lU_mV`oWdqYfs[hs[ht\jt\j{cq}eu€hx‚jz‚i|€gz~ex|cv~gwiv€iy€jwjz‚jx‚jziw‚gxfu€cu~bq}`r|`o}`r€`o†`oŒdoftŽfq…]hwOXjAIb9?\18[15]03^23_34_32]//Z./V-3U-5T,4S+3Q)1P).O(-M)+K')M+*Q/.P1/P1/Q20T53W85_@;dG?lPEsYJxaOkS…tVŠ|Y†[—‘a¡ži©¨o²³w¾ÀÊÏÕÙœÜÞ¬ÛܰÓÖ«ÄË¢½Å ºÅ§¶Ã±°½¶¬¹Á­¹Ï¬¹Ü«·ç©´ì§¯î£ªî¡¨ð¦©ö¨«ü¦«ü¡¨ù˜ ñ‘™êŽ—æ–äŠÚŒÔŽŽÎŽŠÅŽ…¼³Š}«Šz¡‡sŽƒn}hw~ju…puˆtu…rlƒohxd[r\QhQIaHA^E@\C?Z@?X@>WHCTGATEBUFCXFDWCBS?>O=;J86I:7H:7G<8G>9IB(+<(*9$)7$(4$'3#&1"'0!&-!%.$2#5"&:%*=*.B/3I945=34=34=34>24=13>/2<-0<-0<-0>.1>.1A.2A.2A.2A.2B-2B-2B-2B-2A*2C,4G.4H/3I.3M02S34Y75^85c<7j?8nB9pA7qC6tD8wG;xF={I@~LA~M>|K:|L8N;…Q<‰R=S=”X<ž_>¨i>³sC½|FÀ‚E»Aº…A¼‡C½‹FÀŽIÁKÔNÁ—OÀ–N½—N¾˜O¾šP¾œR¾žS¿ŸTÀ S¢UÁ¢RÀ¡QÀ¡QÀ¡OÁ¢P£PÃ¥OƨRȪRʬR̯SͰTαSαU̲S˳Q˵R͵U̵UË´VȳVƳWòVijYĵZÄ·[ùZÅ»\ƽ^Ⱦ_Ⱦ]Í¿^ξ\ͽ[̾[ͽ[ÎÀ]ÏÁ^ÏÃ_ÓÇcÑÈcÑÈcÒÉdÓÊeÓËfÖÍhÖÍfÕÆ_×ÅaÕÂcл`ůZ¹¢T¬”L¥ŒJš€C˜~E”yB‘v?t=‹p9…l6‚h5‰qC‰sDŠvD‹zFŽ}G‘€H–L˜Mš€O™}KšJœƒJ‰J¥—Pº±dÓÉtêÚ‚öã‡üéúç‹úç‹þëÿìüéþëþëýêŽüéüéýêŽþëüëýî“ýð”ýð’þñ‘þñ‘ÿó‘ÿóÿóÿôÿóþòüðŽúíøëöéóèŽóç‘òè“óç“óé”ôè”ôê•õé•õë–÷ë—öì—÷ë—÷í˜ùí™úð›ýñýóžúó™úó™úó™úó™úó›úó›úó›úó›ýõ ýõ ÿ÷¤ÿ÷¤ÿ÷¤ÿ÷¤ýõ¤üõ¤þø¤ýø¤ýø¦üú§üùªüû«üú¯úû¯üþµûÿµúý¸÷ý·ôù·ð÷´îô´éó´çò¸æó½æó½äõ¿âôÀÞõÁÜôÄØôÄÖõÉÒöÊÑöÍÍöÎÌôÏÈôÐÇóÏÅòÑÃñÔÁòÕÁñ×Áñ×ÀòÙÀñÛ¾ñÞ½òà¿õç¿õè¾öí½öï¾÷ñ¼÷ó½øö½÷ø½øþ¼÷ÿ»öþºõýºõý»öþ¼öÿ½÷ÿ¹óþºôÿ¼öÿ½÷ÿ¼öÿºôÿ¸òý·ïü¿ïÿ½ëÿ»çÿ¸åü¶àù¯Ùñ§Ïé Èá ÄÞžÂÜœ¾Ù˜ºÕ—¶Ò•´Ð•³Ï”²Î«Çˆ¦Àƒž¹€š³€˜²—¯€”­€‘«z‹¥|©®’²‚•¶‡›¾¡Æ¦Ë”¬Ð”ªÏ“§Ê‘¡Ã›»”±Œ©ŒŠ¢…}”ui}dXf]PZ\LVWHMTDGTDGO?BN>AL;AK]05_27`25_13_13_11^00^..Z./U,2S+3R*2P(0O'/K&-J&*J&*F$%I'(J*+L-+K,*M.,P1/S41^=8eD;pPEy\NfS‡qYŽ{[‘ƒ^™Ža¢œj¯¬w»ºÁ†ÆË‹ÎÕ’ÔÚžÑ׫ÎÔ°Âɧ²»œ«µœ¬¸¤¬¹°¨¶¹§´ÄªµÑ¬¸â¬¸ì©³ð¦¯ò¤«ó£©õ§¬þ¨­ÿ¦¬ÿ£©ÿ£÷—žï“˜é“–ãÕΊƇ¼Ž‚²‹|§‡u†s‘…pƒ‚lx}hq}hmikjg|haxd[iRJcLD\C7V=9W>:W=S@:O<8K84I75F74D63D95F=8KA?OECSHDYNL[OOXNOXOT]S[^Va^Vcd\kcZkf[lj_pobtrcvqbum`rjarg`pj_pncttgy{m~o|~q{wjtuisrjypktqŒ}|ž‡‰²‘’™–Íœ™Ò¡ŸÑ¡¢Î›Ã–™º™º¡¥¾››³•“¨‹‡–„|‡v{{ooxidwd^u[ZlOQZ@CM36D+.A(+>(+<(*9$)8%)5%(3#&1"'/ %, $.$0!5"&:%*<)->+/E26O<@XEI_ORbRUeVYiZ]k\_j[^g[]eY[_QQ[MMTFFM??G99B44?11>00;--;--:,,9++9++:,,;--;--9--8.-9/.:0/:0/9/.7-,6,+@67@67@67@67@67@67@67@67@67@67?56?56>45>45>45=34>24=13>/2<-0<-0<-0>.1>.1A.2A.2A.2A.2B-2B-2B-2B-2A*0C,2G.4G.2H-2K.0R23W53Y62_:4f=7j?8k@7mA6rC9tE;wG=zJ@}MA}N>|K:|L8N;…Q<ŠS>S;“W;^=¨i@´tD¾IĈJÁ‹E¾ŒC¿FÁHÁ‘I“KÁ•LÀ–L¿•K½—L¾˜M¿›O¿SÀžTÁ¡VÁ¡TÆ¥XŤUÄ£RâQâQâQäQĦPÉ«UʬTÉ®U˰U˰U˱TʯTʰSʳUÈ´SË´VÉ´WÉ´WÇ´XòVÁ²WĵZöZ·[ú]ż_ľ`ǾaÈ¿`Ì¿_̾]˽\ʾ\˽\ÌÀ^ÎÂ`ÍÃaÏÅcÏÇdÐÈeÒÊgÓËhÒÍiÔÌiÕÍhÖÉaÖÇ`ÓÃaн_Ʋ[¼¥U±™O­’O „E›~D•x@’t>r=Šo:„j7€f5„l>…nB‡rCŠvCŒ{EI•€K˜Mš€O™}K˜I˜‚HšˆH£—O¹²dÒÊwêÜ„õäŠúéùèŽùèŽýì’þí“ûêýì’üë‘ûêúéúéûêüë‘üí’þñ•üñ•üò“ýó’ýó’þô’þõþõÿö‘þõýó‘úðŽøîöìôéóèŽñç’ðè•òç•ñé–óè–òê—ôé—òê—÷ìšõíšöë™ôì™öë™öî›úïùñœùò˜øó—øó˜øó˜øó˜øó˜øòšøòšüö üö þø¢þø¢þø¤þø¤üö¢üö¢ý÷£ü÷£ü÷¥ûù¦ûø©ûúªûù®ùú®úü³ùý³ùü·öü¶ôù·ð÷´íó³éò³çð·åò¼æó¾åóÀâòÁÞòÁÛñÂ×ñÄÕñÈÑñÈÎóÊÊóËÉñÌÅñÍÄðÍÂïÎÂðÓÂðÓÀñÔÀðÖ¿ñØ¿ðÚ½ðݼñß½óå¾ôç¼ôë¼õî¼õï½öð»öò»õöºõû¸ôþ·óý¶òü¶òü·óý¸ôÿ¹õÿ´ðû¶òý¸ôÿ¹õÿ¹õÿ·óþ´ïý´ìý»ëÿºèÿ¹åÿ·ãü¶ßû¯Ùò§Îë Èâ¡ÄàŸÂÞœ¾Ú—¹Õ–µÑ“²Î“±Í“±Í«ÅŠ¥Àƒž¹™²€–®€”¬‘©~ާw‡ zФ}§~«’°„—·ŒŸÀ‘¥Æ“©Î’¨Í’¦É‘¡Â›»”±ŒŽ§‰ ƒ{shybVd]PZ]NUYHNSCFRBEO<@N;=L9=J:;M:>P=?S@DVCEUBFXDF[FK_ILcLRiPTmRYnSZtV^uV^vW_vW_wWbxXcyYdzZg~^kan…et‰ix‹kzŠiz‡fw…et„fr€dp}amz^jz\hy[g{[h|\i}]j}]j}[i}[i[i€\j‚^l„^k‰^hŠ\f†Wa|MWpAKf7?`19^/5c4:d37b14`/2^..\,,\*+Y+-S*0Q)2P(1N&/K&-I$+H$(F#'E"&H&'I)*J*+I+)J,*M/-Q2/]:4dB9nLBxXI€eP‹sY”a™‹fž•j§¡q±¯|¹¹ƒº¿…¼ÄˆÁËŽÆÏšÀÈ£¾Ç¬¶À¨ª³ž¥° ¨³«©µµ¤°¼¤°È©³Ö¬·ä®¸í«³ñ¨¯ó¦­õ¦¬ú¦¬ÿ¥ªÿ¤ªÿ¢¨ÿ ¤ûŸò˜šç–”Ý‹Î’ŠÆ’ˆ¼’…±Ž~¥Šv™„oŽ‚lƒ‚lyƒlt„msƒmo€kjydaq]VkWP_KD[G@X@ZF=UA:Q=6Q<7N;7J86G85G98I>(+=)+:%*8%)5%(3#&1"'/ %, $-#/"5%(<)-<,/=-0A14I9..=--<,,<,,=-->..>0/;//;10;10;10:0/9/.7-,6,+@67@67@67@67@67@67@67@67@67@67@67?56?56>45>45=34>24=13>/2<-0<-0<-0>.1>.1A.2A.2A.2A.2B-2B-2B-2B-2@)/C,2G.4G.2G-0K.0P22U64V42[84c<7g>8h@8k@7nC:qE|K:|L8‚N9‡P;ŒT=ŽT<”X<›_=¨jAµwHÀƒMÆŒMÆ’IÄ“GÄ“GÂ’FÁ“FÁ“F¿“H¿“H¾”H½–I¾˜M¿›OÁQÁ S¡TâUǦWÆ¥TǤSĤQÄ£RĤQÅ¥RŧQË­WË­WʯV˰W˰UʯTÉ®SȯSʳVȳVÉ´WȵWȵYijW³XÁ²WöZÁ¶Z¹^ú_üaĽbžcÆ¿dÊÀaÉ¿`ʽ_ǽ^Ⱦ_ÊÀaÌÂcÌÃdÍÄeÌÆfÎÈhÏËjÒÌlÑÍlÑÍlÒÍiÕÌeÖËbÓÅbξ_ij[»¦S²šP¯”O¢†GœE•x@r>Œp>ˆn;ƒi6d5€hƒn?…sAŠyEŽ}G“J–L›P˜~M—}J–H—ˆG –O¸²dÑËwéÞ…óæŠùì÷êŽ÷êŽûî’üï“ùìûî’úí‘ùìøëøëùìúí‘ûî’ÿò–ýò–ýò–þô•þô“þô’þô’þõÿ÷’ÿõ“ýó‘ûñøîöëôéóèïç’îè”ðè—ïé•ñé˜ðê–òê™ñë—÷ïžôîšôì›òì˜óëšôîš÷ïž÷ñ›÷ò—÷ò–÷ò—÷ò—÷ò—÷ò—÷ñ™÷ñ™üö üö þø¢þø¢þø¤þø¤üö¢üö¢üö¢ûö¤ûö¤ú÷¦ú÷¨úø«úø­ùù¯öø¯öù²öù´ôù¶ò÷µïö³ìò²èð´çð¹çñ½åñ¿äòÁáñÂÞñÃÚðÂÖðÃÓïÆÐðÉÌðÊÊðËÇïÌÅîÌÂîÍÀíÎÃðÓÂðÓÂðÔÀðÖÀðØ¿ðÚ¿ðݽðß¾òå½óæ½òê¼óí¼óî¼õï¼ôñºôõ¸óû¶òüµñü´ðû´ðûµðþ¶ñÿ·òÿ²íý´ïÿ¶ñÿ¸óÿ·òÿµðÿ²íÿ±êþ¸çÿ¸åÿ¸äÿ·ãÿ¶ßý°Ùõ¨Ïì¡Èå¢ÅãŸÂÞ›½Ù—¹Õ•´Ð’±Í’°Ì’°Ì‘¬ÇŒ¦Á…Ÿ¸€˜°€”¬€’¨~Ž¥{‹¢v†y‰¢|Œ¥}§€¬„•±ž¼’¥Å‘¨Ê‘¨Ê’¥Æ’¡Â›»Ž“±§‰ yŽrgxcUd`P[_NVYHNSCFR?AN;=N:;L8:K78M9;P<=U?BWACWADYCE^EIbILgLQkQTpSXrSXwW\yV\yV\yV\zW^{X_|Xb}Yc[eƒ_iˆdpiuŽjxŽjx‹gu‡es„cn€ai{\dwX`uT]uT]xT^yU_~Zd}Yc~Xc~XcYdƒ[f…]h‡]gŠ[eˆV_MVrAGg4;`/5b/6d37g6:f58c25_.1\*+Z()Y'(X'*S(/P(1O'0M%-I$+G")F"&D!%E"&H&'I)*K+,J+)K-+N0.R30\93b@6kI?tTE}bM‰tY—„fm£šs¥¡t©¨z©­{¨¯|ª´€³½‰¹Ä™²¼¡²½¬¯º¬§±¨¤¯«¨²´¨²¾¢­Á¤­Ìª±Û¯·è±·ñ®³õ«¯ö©­÷¨­þ§«ÿ£¨ÿ¢¦ÿ¤¦ý¤¤ú¡ ðœ˜ä˜‘Õ“‰Æ–‰¾˜‡´–¨{š‹s„k€hv€io„np‰ts‰tq‚mhvb[iUNaMDWC:T@9Q<7R=:W??YCE\CFZEBXF:VF6XG7[I;_L>^J?[E:W@8Q:4L72G32D20D44F87H<>SED[ML^POYKKVHHZLL\MPXLN]NS[LSYISZJU[KX[KXYHXVEUTFSVISZJW[IW\JXdP\mYduajtagsbhpclocqqeywmˆ‚xš‰¦‡¦ˆ€§‰«™–µ››µ™›²Ÿ´¦¨½Ÿ ´›š¬•‘¢‘‰˜‚ŠŠ{~…sqnj…kly\^dJMS9(+=)+:%*9&*5%(3#&1"'/ %+#+#0!$6'*=.1>/2=.1@14G8;N?BWHKVGJUFITEHTEHSDGSDGRDDSCCSCCRBBP@@M==J::H88G77A11@00?//>..>..?//@00@21=11=32=32<21;109/.7-,5+*B87B87A76A76@65@65?54?54>43?54?54@65A76B87B87C98=11=11?11?11?11?11@01@01A.0A.0A.0A.0B.0B.0B.0B.0B-2B-2C-0E,0H.1J01N21P20U31X51Z71`;3d=6iA9kC;oD=uHBwHBvG=xH:zI8}M7„P:ˆR:ŽV?W<•Z<š^:¡f<°sD¾‚LÈŽO̘OÈ—JÄ•GÔFÁ“E”FÀ•GÀ•GÚKÁšKÁšMÁœNÞPÄ RÆ¢TȤVÈ¥TǤRÈ£RÆ£OǤRƦQȨSÉ©TΰZͯWÉ®UÈ­TÇ®RȯSʱU˲VɲUDzWƳWÇ´XÇ´XƵYŶYŶYŸ\Ĺ]ú_Ä»`übĽcþcždÈ¿dÈ¿bǼ`ƽ`ƽ`ƽ`È¿bÆÀbÇÁcÇÂdÈÃeÈÅfÊÅgËÈiÌÉjÍÉhÖÑkÖÏgÔËfÑÄdÌ»c­ZµS«“M§‹LŸ‚H–xB‘s?Žr@Šp?„j9|d4€h<€i=l=ƒq?‡vBŒ{G’~K–€NwGvDŽwC’E•‡F ˜P¹¶gÕÓ~ïèŽóèŽöë‘øí“ùî”ùî”øí“÷ì’øí“øí“ùî”ùî”úï•úï•ûð–ûð–üî•ýï–þñ•ÿò”ÿô–ÿõ•ÿ÷•ÿ÷•ÿõ“ÿô’þñ‘ýð’ûîùì÷éõé“òê—ðë™ðé™ïê˜ïè˜îé—îç—íè–ðé™îé—îç—ìç•îç—îé—ñêšòí™ñí”ðì‘ðì‘ñí’òî•ôð—öò›øôùõžùõžùô úõ¡úõ£ûö¤ûö¤ûö¤ûö¤ûö¥úõ¤öó¤öó¤õó¦õó¨ôôªñò¬òõ°ô÷´óø¶óø¶ñ÷·ðö¸íõ¹éò½èòÀæòÀäòÁáñÂÜïÁØíÂÓìÂÑëÄÍëÅÈêÇÆéÈÄéÈÂéÊÁêÊÀëÍÃðÓÂðÔÁïÕ¿ïÕ¿ï×¾ïÙ¾ïܼïÞºîá¹ïâ¹îæ·îè¸ïê·ïì·ïîµïñ±ëö®êõ­èö«æô«æô¬ç÷­èø®éù¯êü±ìþ³íÿ´îÿ³íÿ°êÿ¬æü«ãüµäÿ¶ãÿµàÿ²Ýý°Ùù¬Õó©Ðï§Îë¡ÄâÀÞš¼Ø—¹Õ—¶Ó“²Ï­É‹©Å¨Ãˆ¢½‚š´~”¬}‘©}¥|Œ£{ŠŸw†›w†yˆŸzŠ£¨„•¯‰š¶‹ž¼‹ŸÀ£Æ’¢ÄšºŒ•´“°ŽŽ¨‹†v‰revgWdcR\^MUYFLS@DT@BP:X;=]@D_BDcDIgIKlMRoQSqRWsSV}Y]~W\|UZ|UZ}U]W_Yaƒ[cˆ`iˆ`i‡_j…]h„\gƒ[f‚YgYdxS[wT[vSZvSZxS[zU]{V^|W_‚Zc€XaU_‚Xb…[e‡]g†[e†Xb„R[}JQr?Fi6;f17c05b-3_-0d25c12`./]+,[)*Z()Z('Y(+O$+N%-M%-L$,L$,I%)I%)H$(K)*J()I'(G(&H)'K,*N/,O0+U2,];1fD:kN>qXD|hO‹z^”‰iŸ–u›uŸxœ¢|¥~Ÿ«…¥±‹©¶˜«¶¥ªµ­¨³¯¥¯°£¬³¤«»©¯Ç®³Ó¦©Ôª­à®°ë°±ò®±ø­¯üª«ý§§ý£§ÿ¡¥ÿ ¢ù£ ÷¥ ò¤œéž’ÚšŒÊ”ƒº|ª‹uœ‹rtŠŽs„‰m{ƒjp‰qoŠvoypŒxo„pewcXiUJ`LAYG;ZH>YF?WD>U@=UA@ZED]JD^L>aP>fSBgTEgQCaK>\D:V?7Q:4M83I54F42D44D66E99G;;L@@N@@N@@N@@OAAOAAO@CO@CO>DN?FO?ISCNVFSVFSQ@PM=JO?JO>HM;GM9EN:FU?K^IRfQXfQVkX\m\bjZedVggYpte‚r{pŽyoŠ|tŒ‡‚˜¡–—©Ÿ¢³©¬½¦§»¨§¹£Ÿ°˜Ÿ‘ƒŽ†‰vxƒmo}cdtWY`FIP69D+.@'*<&);')=(-;(,6&)4$'1"'0!&-!%-!%* -!!3''9--?33C77E99F::I==J>>J>>J>>H<22=32<21<21:0/8.-7-,6,+B87B87B87A76A76@65@65?54@65@65@65@65A76A76A76A76>22>22@22@22@22@22A12A12A.0A.0A.0A.0B.0B.0B.0B.0C.3B-2C-0D.1G.1J01N13O32S42V42X72]:4b=7e@8iB;kByK<|M;‚O:†R<‰S9W>‘X=–[=š`;¢g=­sC»‚MÅP̘OɘIǘHÆ—GÅ–HÄ–HÕGÁ–GÅšKÄ›KÄ›KÃLÅŸNÇ¡PÈ£SÊ¥TË¥TʤQʤOÉ¥OÉ¥OɧPË©RʪSήWͯUÌ®VÉ®SÉ®SɰTʱUʱUʲXȳXÇ´XȵYƵYǶZÆ·ZǸ[Ǻ\ź^ż_żaĽcždľfľfÆ¿eÆ¿eƼcĽcĽcþcÆ¿eÅÀeÆÁfÆÂgÇÃhÆÅiÉÅjÈÇkÉÈlÊÊjÑÏkÑÍiÐÊhÐÆg˽eÁ¯]µŸT¬”N§‹LŸ‚H–xBsAsB‰r@ƒk;}g8~g=h>~l>€p?„tAˆxDŒ{G|IŽxGŒvEŽxFG”‰I¡T»¼nÖØ„íéðéóì’õî”öï•öï•õî”õî”õî”õî”öï•öï•÷ð–÷ð–øñ—øñ—ûð—üñ˜ýò˜þó—ÿô˜ÿö—ÿ÷–ÿø—ÿö•ÿõ”ýó”ûð”ùî’÷ì’õê‘ôê•ðé˜íê™ïê™ìé˜îé˜ëè—íè—êç–îé˜ëè—ìç–êç–ìç–ìé˜ðëšñìšðì•ðì‘ñí”òî•óï–õñšöò›÷óœøóŸøóŸøóŸùô¢ùô¢úõ£úõ¤ûö¥÷ò¡õò£÷ô¥öô§öô§òó§ðð¦îð§íð«ìñ®îó±îô´îô´ëôµêò¶èò¶èò¾çóÁçóÃåòÄáòÅÝðÃÙîÅÕîÆÑëÆÏêÇÊéÉÇèÉÅèÊÄèÌÂéÌÁéÎÄïÔÃïÖÂîÕÁî×ÁîÙ¾íÙ½íݽíߺìá¹ìã¹ìç¸ìè¶íê¶ìì´ìë²ìî¯éô­èö«æôªåõªåõ«æø¬çù­çû«åù­çý¯éÿ¯éÿ®çÿ«äÿ¨áü¨Þú±ßÿ±Ýÿ±Üÿ¯Úü­ÕøªÓó§Îï¥Ìë¢ÅåŸÂà›¼Û™»×™¸Õ•´Ñ‘¯ËŽ©Æ‹¥À†žº–±~’«~¨~Ž¥|‹ |ˆžz†œz†œz†žz‰ §„”­Šš´žº‹ž¿£Ä”£Ä‘œ¼•µ‘’°Ž‹¦Š‚™s‡rdugUccOZ_KTXCHS?AT>@R::S98V9;W;:Y;=\<=]=@^>?b?CdBChEIlJKpMQtRSwTXyUWVZ€VX€VXUW€VZ€VZW[‚W^T[T[~S\~S\}R[|Q[|Q[{Q[yQYxQVxQVxQVzQW{RX}TZ~U[€U\€U\ƒV]†Y`Š]dŠ]dˆYa†U[}HNwCGn:>h48f26f24e15d02c12b01_-.]+,[)*Z()Z('Y))S&+O&,O&.M&+M$*K$'J#(H$&K')J('K''J(&K)(L-*P.,R1,Z92_>5eE:gJMJ:GK:DM9BK7BI5@J4@O:CWBK^IN_JOeQSiVZeT\bP^eRfp^xxh‚whrgxtl{y‡ˆ†“‘‘Ÿ¬¨«º¦§¹¨¦»¢±—ŽŸ‚‘Ž}‡Šu|ƒmp|beqTV\BEM36E,/B),>(+<(*>).;(,7'*4$'0!&/ %, $, ")+#!1'&7-,=32B87E;:G==H>=I==H<31>31@21@21@21@21A11A11B00B00B00B00C/0C/0C/0C/0C/1C/1C-0D.1G.1H00K12N21P20S41U61Z92]<5a>8e@:gB{M>€Q=†T=‰U=ŒVš`;¡h=«sB¹‚LÂŒNË™PËšKÌ›LËšKÊ™JÈ™IǘHÇšIÉœKÇKÇKÇžLÉ NË¢PͤRϧRϧRΦOΦOÍ¥NΦOͨPΪRάSÏ­TÍ®SͯU̲U̲U˱TʰSɰTÌ´ZʵZʵZÊ·[ȸYɹZȹZȹZɼ\ǽ^ǾaǾcÆ¿eÆ¿eÅ¿gÆÀhÅ¿gÅ¿gĽeýeýe¾eÅ¿gÄÀgÅÁhÃÂhÄÃiÄÄjÆÅkÆÆlÇÇmÇÈkÊÌkËËiÍÊkÌÇkË¿i±aµ¡X­–R¥ŒLƒH”yBŽtA‹tB‰sBƒn?j;|g<}h=~l>€p?t@ƒvB…xD‡wDŒzJ‹yGŒ{GŽ‚H–ŽM¦¤ZÁÆvÚß‹êê’íì’îí“ðï•ñð–ñð–ñð–ñð–ñð–ñð–òñ—òñ—óò˜óò˜ôó™öò™úó›üò›ýóœþô›ÿö›ÿ÷šÿ÷šÿø™ÿ÷˜ÿö™ýô—ûò—ùï–öì•õë”òê—ïê™ëêšìéšêé™ëè™éè˜êç˜éè˜ëè™éè˜êç˜éè˜êç˜êé™íê›îëšðë—ðì“òî—óï˜ôð™õðœõðœõðœöñŸöñŸ÷ò ÷ò¡øó¢øó¢ùó¥ùó¥ñîŸòð£õó¦õöªôôªðò©ìí§éì§èíªèï¬éï¯çð±çï³åï²äî²ãî¶åó¾åóÂæóÅäôÅâóÇßñÇÛðÇ×ðÈÒìÇÐëÈÌéÊÉèÉÈæÊÅæËÅçÎÄçÏÆîÖÂî×Âî×ÀíØÀíÙ½ìÚ¼ìÞ»ëß¹ëâ¸ëä·éæµéç²èè²èê±çé°çì­åò«äõªãôªãöªãö«äø¬åù¬äû¨àù©áúªâý«ãþ©àþ§Þü¤Ûú£Øø«Ùý¬Øý¬Öü«Õû«Ó÷¨Ðó¦Ìð¤Ëì£Åè Ã㞿ޜ½Üœ»Ø—¶Ó’°Ì«È‰ ¿†›¸€•°}‘ª¨Ž¥‹¡~‰Ÿ|‡›{†šz…›z†œ‹£ƒ’©Š˜²Žž¸Œœ½’¢Ä•¢Ä“œ»’—µ““¯Žˆ¢‡}•~q…raqgS_cNW`IQXAGS=@T;>V:9W97Z:;\=;`>?c??g@ChABi@DjBCmDHpHIsLOwPQxTV{TU~TU€TUUVUV€SV€SVRU~QVsFKsFKtGNtGNtGNuGQuGQuHOxNRvMQwMQwMQyOSzPT~QV€SX€QW‚SY…V\‰Z`\bŠY_„SY€MRu>Cp9]J;_L>fSElYJtaPu`Os]OoXJgOC`E:X=4S81P40M40I11E0/C11A11C34C47@48@48B38B38B17B17D17D17H4=F5=G6@J9CK;HK;HF8EE5@H4=I4;G2;E09D.:G2;M8AS>CU@E[GIaLQ`MS]IU_J[hRin[qo]mh[ei^fqjq{x‡‡–˜¤¥©µ§¨º©§¼¢±—ŽŸŽz…‰rz‚imz`clOQW=@J03E,/E,/B,/>*,?*/<)-7'*4$'/ %-#*") )!)$ .,):2/A96F>;IA>I?=H>,*A/-B0.@.,<-*9--8.-7-,7-,7-,7-,7-,7-,C97C97C97B86A75A75A75@64C97B86B86A75@64?53?53>42?42?42A32A32A32A32B22B22C11C11C11C11D01D01D01D01D02C/1D.1D.1G.1H/2K12L21N21Q31T52V72Y:5^=6`?8b?9hA“Z=˜]?›a< g<ªrCµ~H¾ˆJË—NÌ›LÑžOÏžOÎNÌœJÌœJËœJÍžLÌŸJÌŸJÌŸJΡLУNÓ¦QÔ¨QÕ©RÔ¨OÓ§NѨNÒ©OÒ«PѬSÑ®RЭSЮTбVгWгWͳV˱TɰSηZÌ·\͸]͸[ͺ\Ë»[̼\˽\Í¿^Ì¿_ÊÀaÉÀcÉÀeÇÀfÈÁiÇÁiÅ¿iÄÀiýi¾g½i¾gÄ¿kÂÀiÃÁlÂÂjÃÃmÁÄkÄÄnÃÆmÃÆoÂÇmÃÈjÃÉiÆÊlÉÈnÉÁnµg·¥]°™U¥M…I“zBŒuA‹uC‰uCƒqAm?|i?}j@nBq@€tB‚vB‚vBƒvB‹{J‹{H‹~J„L—“S«­dÅÎÜæçë–éì•êí–ëî—íð™íð™îñšîñšíð™íð™îñšîñšïò›ïò›ðóœòòœøóŸøôúôžùõœûö›ûø›ü÷›üùœýøœûø›úõš÷ó˜öð˜óï˜òì˜ðë™ëê˜éêšëêšèé™êé™çè˜éè˜çè˜éè˜çè˜éè˜çè˜êé™éêšëêšìë™íë–ðë—òí™óîšôï›ôïóîœóîôïžôïžõðŸõï¡öð¢öð¢÷ñ¥õò¥ñï¢ðñ¥òò¨óõªòô«ïò«ìïªèíªçî«åî­åî¯äî±ãí±âí³áì´ßì¶áò¾áóÃâôÄâóÆáóÉÞóÊÜòËÛñËÔìÊÑêÊÎèËÌæËÈäËÈäÍÇäÎÄåÐÆì×ÂìØÁìØÀëØ¾êÙ½éÚºèݹèÞ¶çá¶çã´æå²äå°ãæ­âæ¬áåªáè©áð¨áô©àô¨áõ©àõ©áøªàøªâû§Ýù¦Ýû¨Ýü§Þý§Üþ¤Úü£×ü£Õú¨Õü©ÕüªÔüªÔüªÑø¨Ðô§Íò¥Ëï¤Æé¢Äç Á➿ޞ½Ú™¸Õ”²Î‘¬ÉˆŸ¾†›º”²’®‚«ƒ©‚Œ¥Š |‡{†šy„šz…›~ˆ¡„¨‹—±›¶Œ›¼’¡Â—¡Ä–œ¼—˜·–“°Ž… †x‘nq_ofP]bKUaGPZ?DU;>W:h@AkABnADoCDnADnBCoBEpDEpFHrHItLMvLMyML{NK|NN}OO|NNzLNxJLvHJk=@l>Am?Bo@FpAGrCIsDLsDJwJMvJKvILxJLyKN|NP€OSPS‚QU†TW‰V[‹Y\ŠU[„PT|GMvBFm77k32f00f00i33k55i65h54`.-_-,]+*Z*(Y)'X(&X(&W))X*-V),U(-T'*R%(O%&N$%L$$N&&O'%P(&Q,&S.(S0*W2,V4+U2,X7.\;2[?3^D5aL9gVDk^Kwn]€zl‹‰}‘’Œ’”‘’–—–›Ÿœ ©˜žªœ¢² ¥»£¤Â£¡È¦žÍ¨žÓ¬žÙ­ŸÝ¥–Ù¢‘ئ–᪙餕æŽã˜ŒÞކӑ‰Ò”‰Î”…È–‚¿„»ªŒ¾¸•¿²Š¬­…Ÿª“©Š­†‰¬‰‡¨…£ƒv›|g–{`‘v[ŒqVˆlT†lS†lU†nVƒjT|fOs]HiS>cL:dO[@7T92P40N2/M10I/0D/.B./A//B/1@03>/4>/4>/4>-3>-3@-3@+2@+2B-6C.7C/:C2C3>A1<@0:E1:F18E09B-6@*6A+7F1:J5,*?-+A/-B0.?-+=+);)'=+)?-+@.,?-+;,)6+)5+*5+*4*)4*)5+*6,+7-,D:8C97C97C97B86A75A75A75C97B86B86A75@64?53?53>42A64A64C54C54C54C54D44D44D22D22D22D22E12E12E12E12E13D02D.1D.1D.0E/1I11K10N21O30R42T73W:6Z;6\=8_>9d>;iB;rG>yN>R>†V?ŒY>ŽX<’Y>”[=˜]=›a^<;`=9f>>jA?nBCoAAq@Cr@Ar@Cp>?o=@m==j<>k==k?@l@?rEBsFAtGDtGDsFCrDDoAAn@@i;=j<>l>@n@CpBErDGtEKuGJuGIuGGuGIxHHzIL|LL€NQOP„RU‡SU‰UYˆTV„MRzCFq:?l58k32i2/g/.g/.i31j42f30d1.^-)],(Z*(W*'V)&V)&V)&V((Y+-X*,X*-V(*U')S'&R&%P'%O&$Q($S*&T-&V/(W2*Z3,Y4,U2,W6/[:1\>3_C7cLmR?rXGw]Lr[MnVJjODbG>\?7V93R51P20M/-K/.H./E--B,.?--?,.=-.>/2>/4>-3?,2@+2@)1B(3A'2?%2A'4@(5@*6?+6=,6<,6=,4C06E07E09B-6?)5?)5A,5D/6H38N:+';($:'#;($=*&?,(?,(=*&<)%=*&@-)B/+A.*>,*6+)4*)3)(2('3)(4*)5+*7-,D:8D:8D:8C97C97B86B86A75A75A75A75A75@64@64@64@64B75B75D65D65D65D65E55E55E33E33E33E33F23F23F23F23F24E13E/2D.1D.0E/1H00I11M32P43R42T64W:6Y<8[<7\=8a>:e@:lD:uJ:}P=„T=ŠW<ŽV;‘X;“Z<—\<™_:›e9¢l=«vB±}AÀŠDÈ“GÑœPÕ RÕ RÒŸNÓ MÖ£PÕ£NÕ£LÕ£LÔ¥K×¥LØ©MÜ«OݬOÞ­QݬOݬPÚ«OÛ¬PÛ®QܱUÛ²VÙ²UØ´V×´V×¶Y×¶YÔµXÔµXжYÕ¼`Ô¼bÔ½`Õ¾`Õ¾^ÔÀ]ÓÁ]ÑÂ]ÑÁ_ÐÂ_ÎÂ`ÌÂaËÀdÊÁfÊÀgÇ¿jÄ¿kÂÀmÀ¾kÀ¾kÀ¾k¿¾kÁÀm¿Ám¿Ám¿Ám¾Âm¾Âm¾Âm¿Ãn¿Ãn¾Än·Äl¸Åm¼ÄoÁÅqÄÁr¹n¼­h·¥c©•XŸ‹P“~G‹wBˆvD†vCsC{nA~oD~oD}pC}s@}vBxB‚{E†|G„zG‰LŒ…OR ]³½tËÚ‰×é•ßë—ßë•áë•ßë•âì–âî˜æðšåñ›äî˜ãï™åï™ãï™æðšäðšçñ›çñ›ëóžëóžíòžëóíó›ëô™íó™ëô—îôšìõšîôšëô›íóëóžìñìñŸéîžêížêížéìèëœèëœèëœçê›æéšçê›èëœêížêížêížéìêëíìšíê™ëè—ëè—ëè—ìéšíê›îëœîëžîëžïìŸïë¡ðì¢ðì¢ñí£ðî¤òô«ðó¬îñªëñ«êï¬éð­êð°éò³çñ´åð´ãî´ßì´ÞëµÝë¶Ýë¶Úì¸×ëºÖî¾ØîÀÚðÂÛðÇÛðÉÚðÊÙïË×ìÍÖêÎÓçÎÎäÍÎáÍËàÍÊßÎÆáÐÁæÕ¾ç×»æÕºäÖ¸âÖ¶á׳àÙ²ßÚ®ÜÚ¬ÜܪÛߪÛà¨Úá§Ùâ¤Ùá¤Øå£Öé£×í¥Ùï§Ûó¨Ûö¨Ûö¨Ûø¨Ûú¨Úû¨Úý§Ùþ¦×ÿ¥Öþ¤Õþ£Ôý£Òü§Ôþ¨Óþ©Òþ¨Òü©Ðû§Î÷¦Ìó¥Ëð¡Ãè ÂåŸÀឿޞ½Ü˜·Ô’¯Í¨Æ‹ŸÂ‰›¿†–¸…”³…“°„«ƒŠ¦€‡¡{ƒš{ƒš{ƒš}…œ~ˆ¡ƒ¦†’¬‰”°Œ–¹‘™½–š½˜˜º›—¸”³”† ‰wƒm‚v]plP_jLXhIQaBH\=B]=>d>=f>?o;=p99l?:l?:l?:l?;j=:j<@n@BqCEsEHuGJvHJvFFvFFvFFxFGzHI}KLMO‚NP„PR‡PS†ORJMyADp8;i14f./j21h1.g0-g2.i31g41d1.`/+\+'Z*&W*'U(%U(%T(%U)&U)&Z**Z**Z),Z**Y))W*'V)&U)&Q%"S("V+%W/'Z2*[5,]5-\5.^93]:6_<6a@7aE:eK>gPBgTFl[Qsf^uuŒƒˆ”Œ—˜’ œ•§›˜­››³ŸŸ»¥¡Â§ É¨œÊª™Í¬šÎ®šÏœ„¶‹s£€i—l—n›~k˜€oœ‡w¨’ƒº›ŒÃ§”˯—˰“Á´¸»‘µÂ”°Á¦¼‰˜¶…‹²„„³ˆ°ˆ|«†v¦n¤{gŸv`˜oY‘hTdRŠdQŒeTŒgU‘l\iY„cR{ZIsSDpPAqTDtXJjODdKD_D=X=6T71Q40P20O1/M//K/.J-/E--B,.?+,>*,=*,@01?/2A.2A,3A*2B(1B&2D&2? /?#1?%2=&0;&/:'-9(.;*0@-1C.5D/8B-6?)5='3?*3A,3E05J68O9).;(,6&)2"%.$,")!()*-" 2'%9+*>0/D44G77H66G55F23D01D.0C-/B,.B-,@-)>+'<)%:'#9&":'#;($=*&@-)>+'=*&?,(B/+D1-C0,@.,8-+5+*3)(2('1'&3)(4*)6,+E<7D;6D;6C:5C:5B94B94B94@72@72@72@72A83A83A83A83B73B73D63D63D63D63E63E63F42F42F42F42G32G32G32G34F24E13D01C/0D.0E/1H00H00N43N43R63T85V:6X<8Z=9\=:`=9d?9iA7oE5xK8€P9‡T9U:W:”Y;–[;˜^9™b9žh:¦r@­y?¹‚?ÅBÑ™NןRןRÔŸOÖ¢OÙ¥RؤPؤNØ¥LاKÚ§KÜ«N߬Pà®Oá®Rà®Oà­QÞ­PݯQݱRÞ³UݵVÞ·XÛ·WÙ·VØ·XØ·XÖ¸X×¹Y׺\×¼a×¾d×¾b×Àb×À`ÖÂ_ÕÃ_ÓÄ]ÑÂ]ÐÂ_ÎÂ`ÌÂaËÀdÊ¿eÊ¿fȾgÄ¿m¿n¿¾l¿¾l¿¾l¿¾lÁÀn¿Án¿Án¾Ân¾Ân¾Ân½Ân¼Ám¼ÁmºÂm¶ÄoµÃn¸Áp½ÂrÁ¿tºr¿²l½«i¬˜[¢T•€IŒxC†vCƒvB~rB{nA}nC|mBxm?vo;yr>|w@{G…~J€xGˆMˆQ‘‘UŸ¤a¶ÂxÊÜŠÔè“Üê•Üê•Üè”Ûé”Ýé•Þì—áí™âð›àì˜ßí˜áí™àî™âîšáïšãï›âð›åñäòäðœãñšäñ™ãò—äñ—ãò•åò˜äó˜æó™åó›çóçõ èô éõ£éð êî¡êî¡éí éí èìŸèìŸèìŸæêçëžéí ëï¢ëï¢ëï¢êî¡êížíìœìéšéæ—æã”æã”èå˜ëè›íêìèžíéŸíéŸîê¡îê¡ïë¢ïë¢îë¤ëì¦éï©éï©èï«çî«äí¬ãì­âì¯åð´áï´ßì´Üë´Úè³ØéµÙê¶×ë¸Ñç¶Ïé¹Óê¼Õì¾×îÄØîÇ×íÇ×íÉØíÎÖêÎÓçÎÐãÍÏàÍÍàÍÌÞÎÈàÐÁãÓ»äÖºãÕ·áÕµßÕ²ÝÔ¯Ü×®ÛØªØØ¨ØÚ¦×ܦ×Þ¥×à¥×â¥×â£×å Óè¢Ôë¤Öï¦Øñ§Ùô¨Ù÷§Øø§Øø§×û¦Öü¥Õû¤Ôü¢Ñû¢Ñý¡Ðü¡Ðü¤Ðý¦Ñü¦Ïû¥Ïù¦Íø£Êó¢Èï ÆëžÀå¿â¾ßœ½Üœ»Ú–µÒ¬Ê‹¦Ä‰À‡™½„”¶ƒ’³‚¯€‹§†¢z›y—z€˜|„›‡ž€Š£ƒ¦„ª…¬Œ•¶‘—»”—º—–¸œ—·Ÿ”²–ˆ¢Œx‘†n„z_rpQ`mMXjKSeDKaAFcABh@@jA=mA>oB?p>=p::m56k34o46m24j/1f./e//d10e32f64k;7j;5j;5j;5j:6k;7l<8l<:i97j:8l<>p@@rADtCFtCFvDEvDCwEDyFE{HG~KJƒMM…OOƒMMƒKLGHw?@p57i.0g,.g-,h1.g0+f1+h3-j51g40d1-_.)[*&Y)%V)&U(%S'$T(%T(%U)&Y)'Z('[)*[)(\*)[+)\,*Z-(R% T)"W,%[0'^3*]5+`5,^6.a97`:7b<9c@:fE+@ -A#/>#,9"*8#(;&+=*.=(-?*1A,5@*6<(4;'2;'0=*0C.3F24J47K4:M3L9;H<+'>+'=*&=*&=*&=*&A.*?,(?,(A.*D1-F3/F3/C1/:/-7-,4*)2('1'&2('4*)5+*E<7E<7D;6D;6C:5C:5B94B94>50?61?61@72A83B94B94D95C84E74E74E74E74E74F74F74F42F42F42F40F42F40G40G32G34F23D0/C/.D/.E0/G//H0.N43O54P73T85V:6X<8Y=9[>:`=9c>6f@5lB4uH5|N7„R9‹U9V9‘X:–[;—]8™_7g;¤n?¬u?´}=ÁˆEÏ–QÖVןUÖžQÙ¢RÜ¥RÛ¤QÙ¥OÙ¦MÚ§LÛ¨MݬPß®Rá®Sâ¯Tá®Rá®Rß®QÞ¯SÞ±Tß´VÞ¶Wà¹ZݹYÚ¸WØ·VØ·X×¹YÙ»[Ù¼^Ù¾cØ¿eØ¿cØÁcØÁa×ÃbÖÄ`ÔÅ`ÑÁ_ÐÂ_ÎÂ`ËÁ`ÊÁdÉÀeȾeƾiÂÀmÁÀn½¿l½¿l½¿l½¾n¾Áp¾Áp½Âp½Âr½Âr¼ÁqºÁqºÁqºÁq¸Ár´Âs³ÁtµÀt¸Àu½¿v¾»t½¶p»±l«^¡‘U“‚JŠyC†vC„tCqB{m@{nBxk?uj=rj;umm69j25g/2i14h03f.1c,/b.0d23f66h88k;7h;6h84f94i95k;7m=;o?=g75g75i99k;;m==o??p@@qAAvDCwDAxEByFC|IFLK„NN…OOII}GGyABp89g/0c+,d,-g/0f0.e0,f1-g40i63i63d3/`/+Y)%X(&W'%T'$T'$T'$T(%V)&Y'&[(%\)&]*'^+(_,)_.*_.)T%W("[,$]1(b3+a5,d5-b5/^51^64a:5e>9jE=mKAoNEnQIsXQu][~jlŽz…œ‹›¤•ª¦–°¢•±¥œ»¤š¼¡•»š‹´‘~«‹t ˆo™ˆn•r”‚e|`v~fv|dru]jzdpˆq…–~¢„®¨Œµ¯´´Œ¯³ˆ¤³ƒ™´’¥pzžjn•ba_[Œ`Wˆ^R€YJzRFSJPJzMGwJDtGBrGAqF@oFBpGCpIDnICiD>_<6Y60V4+U4-bFB[B=S:6L3/J.+J.+L0/N21M//L/1K.0G-.D,,@+*=)(<('C.-B-,A+-B),B',B$,A#+B"-<(?!+?$+=$*8!'7#%9&(=*,9$)<'.?*3?)5<&29%0:%.;&-A,1C.3E.4F/5I/8K1>O4CS9FV=CN8;I57F67D:;KEG`[aspwŒ‰’–š›‘š—Š“‘~„‡qsw_]iPL`CE\?CV9=O58J14G.1B,/>*,9&*8%)5"&1!$/".!.#-!(*0 !5%%;))=++?+,?+,E/1F02H/2I/2G-0D*+D'+?''@,+@.,@.,@.,@.,?-+?-+>,*A/-@.,?-+?0-E31E63E63B41;1080.5+,1)'1'(0(&3)*3+)J?9I>8H=7G<6E:4D93C82B71B71B71B71C82C82C82D93D95G96H88H88H88H96H96H96H96I:5I:5I:5I:3I:5G81G6/F5.F40E3/E2.E2.E2.F3/I41I4/M51N62O73R95T;7V=9W>:[>:_=4d>3h@6kA3mB1rE0yI3M4W;Y;”\;™^£h>¦i<©p;¶~EÊU×^Ü¡]Ú WמOÕJܤQÛ¥OÙ¥OÙ¥OÙ§RبTÙ©UÚªVÞ¬Wà®Wã±Zäµ]å¶\ã¶[ÞµYܵXÙµWÛ¸ZÜ»\غZÔ·YÓ¶XÖ¹[×½`Ø¿eØ¿e׿e×ÀcÕÀcÔÁbÒÂbÑÃbÎÂ`ÌÂaËÂcÈÂdÇÂgÆÀhÅÁhÂÀi½¿k¼Àk¼Àl»¿kº¿mº¿o¸¿q¸¿q¹Às¹¿u¹Áx¹Áx¶Ày´¾w³½v±¼w±½{±½{²½y³¾y´¾w·½u¹½sº¼s­ªc¦¡_œ’U’ƒLˆvD…pAƒlB€mCwj@sg=pd:oc9rf(*=)*=)*;))9)):**:**:*+B-4A*4?(2<%/:#-8#,9",9",=&.?(0A*2A*2B+5D-7J2?P6AQ80/<.-<.-;0.<1/>31?53@53?53?53>64:127117.12,,2),.((0'*-''I>8I>8H=7G<6E:4D93C82C82B71B71B71B71B71C82C82E82H88H88H88H88H96H96H96H96I:5I:5J;4J;4I:3H92F8/E7.G6/F5.F3-F3-F3-G4.I4/J50M51N62O73Q95T;7U<8W>:Z=9^<3d>3h@6iA5kA1oD3wH4|L6†R:‹U9Y:•]<›a<žb=¢d?¢d=£h<®tD¾…PÏ”Z×]ÚŸYÚŸSØŸNÚ¢OØ¢LÖ¢NÕ£NÕ¢OÓ£QÒ£UÒ£SÕ¥SØ¥RÙ©UܬXݯYݱZÛ²ZسXÛ¶[Ú¹\Ûº]Ö¹[Ô·YÒ¸YÖ¼]Ø¿b×¾dÖ¾fÖ¾fÔ¿dÓÀdÑÁbÐÁbÏÂbÌÂaËÂcÈÂdÇÂfÅÁfÃÂhÂÀiÁÁk»¿jº¿kº¿kº¿m·¾n·¾p¶¾q¶¾q´¼sµ½t´¾yµ¿z´¿{´¿{³¾|²¼}°¼~°¼~°¼|±¾y²½x³¿u´¿s¶¾q®²h©©c£›\—‹QŽ|J‡rEƒjAi@sfsB>zEA}FA~GB€ID€IF~IE|FDyFCo<9k85d21^,+[)*Y))[++\,,_-._-.`./`./^,-\*+Z()X&'[)*Y'(W%&U#$U#$W%&Y'(\)(a,(c,'d-(f/*f/*f/*e.)e.)d-(f/*h1,j3.l50m61m61l73f71d92g:4j>5oC:uI@zMG|QK€XX‚[`ƒbmŒm”z“›„¡œ†ª‡«¢ˆ«žƒ¤“x™…g‰vYxqRquWs}\w†d}„bz~[qxUi~Xm‡btˆcu…^s‡_z˜m‰£w¡t‰›l|–hr“dj‘`c‡WU€SPzMJsGFnBCd:<\26T-2N.3M.3M/1L.0K.0K.0J.-J.-L21K10I1-H0,G/+H0,F1,I1-U<8S:6N94J71G6/E4-E2,F1,F.*G.*I+)H,)E,(B*&?*%?*%F/)G.)G.*F.*F.*D/*C.+B/+=+)=+):+(:+(:,+<.->0/@01D/6C,6@)3=&0;$.9",9",9",:#-<%/>'1?(2@)3C,6H1;M6>O49O58K25D.0B,.H45VDDbPPkYYlZZp\]s_`u\_oVYfLO`CG_@FY:@Q49J/4H-2C-0@*-=)+:')8%'6"$3!201/.#,%-&.'2'5!*9$+;&-B-4B-4B+1A*0A(,@'+?&*='*>./>00?11?11=11<00;//9/.;10<21=53>64?75?75<74<748248246025/12,.0*,.(*-')K>8J=7I<6I<6G:4G:4F93E82D71D71D71D71D71D71D71D71H88H88H88H88H96H96H96H96I:5I:5J;4J;4J;4I:3G90F8/I81H70H5/G4.G4.H5/J50J50M51N62O73P84S:6U<8V=9Y<8]:4b=4e?6g?5hA2lB2tG4xI5M6„Q6ŒW8’[<—_>›`>›`>š`:œc8£k<¯wDÀ‡PÏ”Xמ[Ú WÙ SמMÕžKÓŸLÑžKÐLÌœJÊ›MÊ›MɘIÌ™JÌ›LÎNÑ¢RÔ§TÕ«WÔ®YÙ´\ض]Ù·]Ö¹[Õ¸ZÔºY׿]ÚÂbÖ¾dÔ¿fÔ¿fÓÀdÑÀdÐÁdÏÂbÍÃbÊÁbÈÂbÆÁcÅÂeÂÁeÁÁgÀÀh¾Áj»¿kº¿m·¿l·¿l¶½mµ¼n´¼o´¼o®¸o¯¹p±»v³½x³¾z³¾z³¾|²¼}®º|­»}­¼{®½z°½w²¾t³¾r¶¾s¶¹r±²n«¦f –[”„Q‰tG€g>xb9l_5g`6f]6e\5f\8j`=tA@vC@|EB€FBGEGEECyB?t>8sD>yJD{NK„XYƒZ`‡anŒj{’rŠ”w•’w˜w—”w•rŽ„gƒvXrjLfhH`mMduTi^q‚`q€[lzVd|Ve‚\i…_l‚\k‚Xlˆ\sŠ_r‡[j…Wb„W\„VXSSzMJtGDl>>d89]37V-3O'/H#*D$)C%'C%'D&(C&(C&(B('B('E+*D*)B*(B*(A,'B-(C.)D/*Q95Q95N94M:4J92F70G6/G4.H0,H/+J,*H,)E,(B*&@+&?*%F/)H/*J2.K3/L40I4/G2/E2.>,*=+):+(:+(;-,?10D65H89G27F/7B+3?(0<%-:#+8!)8!)7 (9"*<%-=&.>'/@)1E.6H17K05L25J14E/1D.0G34P>>XFF]KK\JJ\HI]IJ`GJ^EHZ@CW:>Y:@U6)0>)0?(.?(.?),?),A(,?),>./>00=11=11>22=11;10:0/<21<42>64?75=85=85<74<748249359358246023-//)+-')J=7J=7I<6H;5H;5G:4F93F93D71D71D71D71C60C60C60B5/I99I99I99I99I:7I:7I:7I:5I:5J;6K<5K<5K<5J;4I;2H:1K:3J92J71I60H5/I60J50K61N62N62O73P84R95T;7U<8W;7[:3^<3c>6d>5d>1g@1oD4uH5xI5}M6‡T9Ž[<•^@–_@–^=•]:–_8™c7¡k=±yFÁ‰PΔUÓšUÓ›PÓ›NÑœLЛKΛJÊšHǘHÄ–HÄ•G¾A¾A¿ŽBÀDÄ–IÇœNÍ¢TΨWѬ[Ò¯[Ô´]Ö¹]Ö¼]×½\׿[×À`Ó¾eÒ¾gÒ¾gпeÏÀeÎÁcÌÂcËÂcÇÁaÆÁcÄÁdÂÁeÀÀf¾Áh½Ài½¿k¹¾l¹¾l¶½mµ¼l´»m²ºm²ºm±¹n­·n®¸q°ºu°»v±¼x±¼x°»y®ºz«¹{«¹{¬º|­¼y°½w±¾v²¾t´¿s¸¾v·¸t±­n§žcšŠWˆvH{d:o\2eY1bZ3cZ3dZ6f\8j`>wAAzBACBDA‚EDCB{?>u;9m54f30`.-]-+W*'S'$R&%Q(&S*(V*)V((V((X((V((W''T&&U%%S%%Y))V((V&&S%%U%%T&&X((Y)'\&$]($a*'c.*f/,g2.h1.g2.l52l73o85p;7r;8r=9s<9o<9h86e85e53f62j95p?;uEAyIG‚TV…X_‡]iŠcu‹h~Šhƒ…f…ƒe†f~axwWljJ_bATa@QfEVmK[vTb~Zf~ZdyT\wRZ{V]~Y`~V_€Vd~Tb{O\yNW{NS|PQ{MMxKHtGDmA@c78Z02T+1P(0I$,E")A"'A#%B$&B$&B%'C&(B('B('C)(A)'@(&?'%=(#>)$?*%@+&J50K61L93L;4J;4I:3I81H5/J2.J1-K-+I+)G+(D+'C+'B*&J3-L5/N62N94N94K61G40E2.<*(;)'7(%8)&:,+@21F87K;'/A*0I.3K14L36I35G13H45L::P>>UCCSAAR>?S?@W>AV=@T:=Q7:R39O06J-2E*/C*.A+.@,.@-/=*,;(*8%'4!#1/0-+ )")"*#.#0%2%4!':%,:%,<%+=&,>(+?),A(,?+-=-.=//=11>22>22>22<21;10=53>64?75@86>96>96=85<74935:46;57;579355/11+-.(*I<6I<6I<6H;5H;5G:4G:4G:4F93F93E82D71D71C60B5/B5/I99K99K97K97K97K97K95K95K95L;4M<5N=6N=5N=5M<4L;3M<4L;3L92J70J70J70K70L81N71N71O82P93R94S:5S:5V:6X94\;4_<6_=4a<3d>1iB3oF4rG4yL5‚R;‰Z>]B’_B“^?’]=’];”^8˜c;£m?²{E¿‡LÅŽMÇ‘KÍ—M͘L͘JÌ™JɘIÅ–F”FÁ‘E¹‡>¸†?·…@·†Aº‹E¾’KĘQÄœTÄžSÇ£UÍ­ZÓµ]×½`ؾ_Õ½[Ó¼\мcμfμfͽe̾eÊ¿cÉÀcÇÁcÅÀbÄÁdÁÀdÀÀf½Àg¼Ài»¿jº¿k¸½m¶½mµ¼n´»m²»l°¸k¯·l­·n¯¹p°ºs°»v°»w¯ºx­¹w«·uª¶vª¸zª¸z«¹{­¼y®½x±¾v³¿u´¾u¹¿y¸»v´³sª¤jœ[ˆwIvc8iX-`W0^Y3bZ5e]9ia=ld@ogCojDtpJwuL~RŒ”aŸ©t¯¾ƒ¸ÊŽ»Ï¼Õ”»Õ”½×˜¼Ù—ÀÚ™ÀÝ›ÁÞœÁàÇæ¢Æç¢Èç£Çè£Èé¤Çë¥Éê¥Êé¥Ìå¤Ïå¥Ðä¥Ïå¥Ïã¤Ìâ¢Ëß ÉߟÌà¡Íã£Ðä¥Ïå¥Ïã¤Ïå¥Ôè©×í¬×ñ¨Ûõ«àú°äþµèÿ·çþ¶åü´ãú²ãù±ãù°åú¯åú­åû©åû¨æù§äú§áö§Þõ§Ùð¢Õë ÒèÒèŸÒè Óè£Õê¥Õê§Öëª×ì«Ùí®Úî¯Ûï°Üî°ßï°ßï°Þî°Üî°Ûí±Úî³Øí´ÖíµÒéµÑé·Ïé¹ÎêºÎêºÍê¼Íê¾ÍéÁÇâÁÆàÃÆàÃÅßÄÅßÄÄÞÃÃÝÄÃÝÄÁÛÂÁÚÄÀÙþ×Á¼ÕÀ»Ô¿¹Ò½·Ò¿³ÒòÒųÓÈ´Ó˳ÔͲÒͯÑЭÑÑ©ÏÒ©ÎÔ§ÍÖ¥Í×¤ÌØ¡ËÙ ÊØŸÊÚÍÛœÍÛÎÜÎÝÎßžÎâžÎäžÎåÌæÌèÌêËìËíËïÊñÊñÉîžÊïŸÉïŸÉï¢Éð¢Êî£Éî¤Êï¥Çì£Åê¢Ãæ£Äç¦Äè¥Ã碿ᢺܠ°Ñž¬É˜¦Á·‰•­„¦ƒŽ „ž€‰š€‡™†™†™„‡š†‰œˆ‹ž‡Œ Š•«ˆ”¬‹’¯’±—“´š²›Œ©† t……do|S[|NQ}IKzBCx=?w?Bg58]/2V(+P#&N!&M#'K"&J!%I"'G#'G$*G$*E%*F&+F%,F&+C!"F$#K(&M*(P*)S++X/-^21b52d42h54l66p87t<;z@?}AA~A@€@@??{>=u99m32e-,_,)Z('X(&R&%O&$M%#N&$N('P((S'&S'&S%%Q%$R$$Q%$R$$Q%$V((T('U''S'&T&&T('U''V)&X%"Z'$_)'`-*e/-e2/g1/f30k53j74n86n;8q;9o<9p:8n;:h88d68d44c31f64j:8q?>sCCNQ€QW„Va…[i„ZnYp|UpxUmzXitTalLYcCP^=H]'-=&,:#)8!'9"(;$*G,1J03L36K57J46I56I77K99L::K99L89N:;R9(+>*,?,.=*,9)*7$&3 "0.-,('!(!(!*!,#0#1$6!(7")8#(:%*='*>(+?),?+-=-.;//=11>22>43>43=32=32?75@86?:7?:7?:7>96<85;74:46;57<68<68:466022,./)+H;5H;5H;5H;5H;5H;5H;5H;5H;5G:4G:4F93E82D71C60D50L:8L:8L:8L:8L:8L:6L:6L;4L;4L;4N=6O>6P?7O>6O>6N=5P?7O>6N;4L92K81K81L81M92N71N71O82O82Q83R94R94T84V95Y:5Z;6\;4];2`;2e?4jC4nD4qH4{N9T=‡YA‹\B[B[@Ž[>Ž\;“_:še=¤n?¯xB¶€Dº„DÅŽKÅ‘HÇ“HÇ–IÅ–HÕGÁ“E¿‘D¸ˆ@·…@µ„A´ƒAµ…E·ŠIºŽMº‘O¸‘Lº˜P¡TÌ­[Ó¸aÕ¼`Ô¼\Ѻ\Ï»e̼g̼g˽eɾeÈ¿dÆ¿dÅÀdÃÀcÁÀd¿¿e½Àg»¿hºÀj¹¾j·¿l¶½oµ¼o´»n±¹l°¸k®¶k«µl«µl°ºs°»v°»w°»w®ºx¬¸vª¶t§¶uª¸z«¹{¬»z­¼y¯¾y°Ày³ÀxµÁy¸¿y·¼yµµw­¨nž”_Š|Kxg;iZ1_W2_Y5c];ga?lcBmgEoiEnjEtrLtvNyR‡“a›©t©¼„²Æ‹²ÊŽ¶Ï•µÑ–¶Ò—·Õ™¹×›»Ù›½Û½ÝžÄä£Ãæ¤Äç¥Æé¥Èë§Èí¨Éî©ÍíªÎè©Ïç©ÐèªÐèªÎæ¨Íå§Ëã¥Êâ¤Ëã¥Íå§Ïç©Ïç©Îæ¨ÐèªÔì®×ï±Øó°Ûö³ßú·âýºåþ¼äý»âû¹àùµæý¹çþ¸êÿ¸ëÿ¸ëÿ´ëÿ²ëÿ±êÿ±ÞöªÙó©Ôî¤ÏéŸÍçžÍç Îç£Ïè¤Ðé§Ñê¨Ñé«Òê¬Óë¯Ôì°Ôì°Õí±×ì±Øì¯Øì±×ì±×ì³ÖíµÕî·Õí¹Ñì¹ÐêºÏë»Íê¼Ìé½Êé½Éè¾ÉçÁÂßÁÂÞÅÃÝÄÀÜÃÁÚľÚÿØÃ½ÙüÕÀºÖÀ»ÔÁ¸ÓÀ¹ÑÁ¶ÑÀ·Ï¿µÐÁ³ÑŲÒdzÓȳÔ˳ÔͰÓÍ­ÑϬÐШÎϧÎÓ¥ÎÔ¤ÌÔ¡ÌÕ ÊÖŸÉמÊלÌÚœÍÛœÍÛœÍÛœÍÜœÍÞœÌàœÌâœÌãœËåœËçœËéœÊëœÊìœÊìœÊìÉîÉîžÈîžÈî Èì¡Éí¢Èí¢Èí¤Æë£Åê£Äç¤Åè§Åé§Åé¥Á椼ऴ֢¯Ï«È—¥À“Ÿ¹™±Š’©‡¤‚‰œƒˆ›„‡š„…™„…™†„™‡…š…ˆ›‰”ª†’ª‰¬‘®”±˜®šŠ§…’s……amzOXzIOyEIt;Ao4:k28\.1U+-P&(M#%L#'M$(J#&G#%D!%D!%B"'B#(B#(A$(A$)A$(> A#!F'%J(&K(&O)(T,,Z.-^1.b0/g11j21p65u99y==|>?|<<{;;y99s65m11g-,_)'[(%W%$S&#P$#M$"L$"K%"L&%M'&P'%Q%$P$#O#"O#"P$#Q%$Q%$T('T('T('T('T('T('T('U''W%$Y($]*'_.*b/,c2.d1.d3/g41g62i63i84k85j95j74i76e79b58a35`22b44e85k;9m==vEHxIO|OV|Q[yN_vM_uKarK^qMYmJQgDKa>E]:@]:@`<@b>@c?AnGHsMLpJGmGDnICnFDkCAi?Ac9;d7:k?@pC@nA>h;6e:4`41X/-O)(H$&D$)B#)?!+> (= "=! =! =! >"!<"!<"!;#!D,*B*(>)&<'$:%"9$!9$!9&"?,&@/(@1*B5-B8/D:1H92L93K3/J1-J.+I+)H,)G.*I0,I1-P<5P=6Q<7N;5L93H5/D1-A/+;)':(&7(%7(%9))>..A32E55G35F/5B+1?(.<%+:#)8!'8!'<%+>'-@)/>'-;$*8!'8!'9#&C),F,/I03J46J46I56G55F44C11B00D01F23J14H/2D*-@&)C&+C&+@%*<#'8"%8$&:')=*,8()6&'5"$1 /--,('!' (!) +"/"0#4&5 '7"'8#(;%(='*>(+>*,<..;//=11?33?54?54>43=53A97B:8@;8A<9@;8?:7<85<85;57<68<68;579356023-/0*,I:3I:3I:3I:3I:3I:3I:3I:3K<5J;4J;4H92G81F70E6/E61L:8L:8L:8L:6L:6L:6L:6L;4L;4M<4N=5P?7Q@8P?5P?5O>4RA7P?5O=3M;1L:0L:0M90M90N7/O80O80O80Q81Q81Q81Q83T84W:6X;7Y:5X94[:1`>4fB6f@3iD2qH6wN:}S=€V>…XA‡YA‡X>‰Z>\<’`=™e=¡m>ªuA¯{Aº„F»ˆF¾ŒEÀFÂ’HÀ’E¿‘D½D»‹Cº‰F·†DµƒD³ƒE²„H²…J±‡K°ˆK°K·•NÁ¡VË®^Ñ·bÔ»aлbÍ»g˼i˼iɽgȾgÆ¿eÅÀeÄÀeÀ¿c¿¿e¼¿f»¿h¹¿i·¿j¶¾kµ¾m´¼o³»p²ºo°¸m¯·l«µlª´k©³l­¸s®¹t¯ºv¯¼w®ºx­¹wª¹v©¸wª¸zªº{«»z­¾z¯Àz²Â{³Ã|¶Ã}µÀ{¸¿|·¹z°®u¡œe…R|oBoc9c[7b^;e`@hdAkeCkgDjgDggAoqJotKvR…“b˜ªx¦½‡®Å­È‘¯Ì–°Í—²Ï™³Ò™µÔ›µÖ·Ù¸Úž¾à£¿ã¥Áå¥Áè§ÄëªÇî«Éð­Ìñ®Ïí­Òì¯Òì¯Òì¯Ñë®Ïé¬ÍçªÌæ©Îè«Ðê­Ñë®Ñë®Ðê­Òì¯Öð³Ùó¶ÙõºÚö¼Üø¾ÞúÀáúÀàù¿àú½ßùºåþ½æÿ½éÿ¼êÿ»éÿ¸èÿ¶çý´åý³Ùõ«Òò©Íí¤Éé Çæ Çæ¢Êé¦Ëê§Ëé©Ëé©Ëé­Ëé­Ìé¯Ìé¯Ìé±Íé¯Íæ­Íæ­Îç°Ïè±Ðè´ÏêµÏë¸ÏëºÎë»Íê¼Êé½Èç½Çæ½Ää»ÃãºÃ㾿ÝþÛžÚļÙüØÂº×ÁºÕ¸ÕÁµÐ¿´Ñ¿µÐÁ´ÐÁµÐÁ´ÐÁµÐÁ´Ð´ÒÈ´Ó˳Ô˳Ô˳ÔͯÒÌ­ÑϬÐЧÍΦÍÒ¤ÍÓ£ËÓ ËÔŸÊÓÉÔ›ÉÖœÌÚ›ÌÚ›ÌÚ›ÌÚšËÚšËÜšÊÞšÊàšÊášÉãšÉåšÉçšÉçšÈéšÈéšÈéœÈëœÈëÈëÈëŸÇëŸÇëŸÅêŸÅê¤Æë¢Äé¢Âè¤Äê¨Æì¨Æì¦Â馾䥷ۤ²ÕŸ®ÏªÊœ§Å–¡½–²‰§ˆ£‡‰ž„…™ƒ–ƒ€“„”‡‚–‡†˜Š¦…¦‡§‹Œ¨“Œ­˜‹©›‡£œƒ™–u††`mwLUtCIq@oBEsFKtFPpEOnDRoDUqGUkCKgCGc?A_;=]9;[79]67]76]76g?=lDBjC>iB=jC%+<#'?"$?# <#<#<#;";! :" ?'%<'$:%$8#"7#"7#"7#"8%!;(";*#:-%:0'>4+A7.H92K:3H3.I0,I-*I+)I-*I0,L3/K61O<5M<4M:4J92H70F5.D2.C1-?-+<-*<-*<-*=-->..A11D22D02C-0@*-='*;%(9#&9#&9#&:$'='*@*-@*-='*;%(;%(<&)>$'@&)C*-E/1G13F23C11A//?-->,,>*+?+,C*-A(+>$';!$?"'?"'="'9 $4!3!6#%8()5%&4$%1!".-,,+('!'!'!( )!,!-"3 &3 &6!&7"'9%':&(<(*;(*<..;//<21>43?54@65>64>64B:8A<9A<9B=:@<9>:7=96<85=79<68;579357135/13-/2,.H92H92I:3I:3I:3I:3J;4J;4L=6L=6K<5I:3H92G81F70E6/L:6L:8L:6L:6L:6L:6L;4L;4L;3M<4O>6P?7Q@6Q@6Q@6P?5SB8Q@6P>4N<2M;1L:0M90M90O80O80O80O80P70P70Q81Q83S74U96X:8W:6V95X94^=4b@6_=1c?1iD2nI6tN;yS>~UAWA‚U>†X@Š[AŽ]?’`=šf>¤pA«xC°}D³D¸‡E»ŒH½ŽH¼G»FºŽE½ŽH½ŒGº‰G¶†H±ƒG¯‚I¬J«‚L¬…L«‡K®ŒM¶—Tç]Í´dÓºhÒ½j˺jȼjȼjǽhŽhľfÿfÁÀf¿¿e¼¿f»¿h¹¿i·¿j¶¾kµ¾mµ¾o´¼q³»r²ºq°·q¬¶oª´m©³l§²m«¶q¬·s­ºu®»v¯»y¯»y­¼y¬»zªº{«»|¬¼{¬¿}°Á}²Ã}³Ä~µÄµÂ}¶Á¶¼~±²x£ i‘‹WwHsj?d^:da@gbBheDifCheBdd@ac>joGjrIp}Q“c•«z¤¿Œ«È’¬Ê–¬Ê˜«Ëš­Í›¯Ï±Ó ³Ö µØ¢´Ú¡¸Þ¥¹ß¤»ã¥¾æ¨Âê«Äî®Çñ¯Êñ°Ðð±Òð²Òð´Òð²Ñï³Ïí¯Íë¯Ìê¬Íë¯Ïí¯Ñï³Ðî°Ðî²Ñï±Õó·Ùö¼ÛöÁÛöÃÜ÷ÄÜ÷Âß÷ÃßøÁßø¿Þø»áù½âú¼äúºäú¹ãú¶à÷±Þó®Úô­Ôó¯Íð¬Èë§Äç£Âå£Äç§Æé©Èê­Çé¬Çé­Çè¯Çè±Æç°Æç²Æç²Æç²Ãá­Äà­Æâ±Çã²ÈåµÉæ¶ÉéºÉè¼Éê¿Èè¿Çç¾Ãæ¾À⽾໽ߺ¼Þ½»ÛÄ»ÚȺÙǸ×Å·ÖĶÕõÔÄ´Óïο¯Î¿¯ÍÁ°Î±ÏñÏñÏÃ²ÐÆ´ÓË´ÕδÕβÕαÔήÒάÐЩÏЦÎÐ¥ÎÒ¤ÍÓ¡ÌÓ ËÔžÊÓÉÔšÈÕœÌÚ›ÌÚšËÙšËÙšËÚ™ÊÛ™ÉÝ™ÉÝšÊášÊášÉãšÉåšÉçšÉçšÉçšÉçœÉêœÈëÈëœÇêžÆêÅéžÄéžÄé£Åê¢Äé¢Âè¤Äê¨Æì¨Æì§Ãꦿ祹ޤ´Ø °Ò ¯Ð ­Ïœ§Å‘š·‰Ž«Œ©ŠŠ¢…ƒ™€}’zŽƒ|Žˆ“‰…–‹Ž¡†Œ¢ˆŠ£Œ‰¤”‰§˜ˆ¥›„žž—šxˆ‰altIRl=Ci6=c.6_'0Z'.I#D D "E#$G%&E%&B"%> ">!%<"%<"%;"%:!%8"%8"%8"$9!!=#"@&%D('F'%J&&P((V*)Z**]*)a+)g-+m0/t44y78z::s77n43i/.d*)_'&\&$Z'&Y'&T$$S##P"$N"#L"#J""J""J""O&$N%#L#!L#!L#!M$"O&$Q(&Q(&R)'R)'S*(S*(R)'R)'S'&V((W*'[++\/,_//^1.`00^1.]--\/,`00_2/a11^1._//\01^59\5:\5:\58]56^66_56_64d:;g=>kAClBFk@Ik@JnBOqFPg>Dd=@c;<_89^67[45Z22Y11Z20b:8g?=f?:f?:g@9b;6Z3.\23X,-Y-,b63g;8d85b63b95U.)Q+(J(&G(&F*)D,,@*,>(*B('C'$A($@'#?&">&"=%#=%#7"7"6! 4 5! 6"!7#"8$#8&"6' 6)!7-$:1(@6-F91L;4G2-H0,I-*H,)I-*J1-M51M83L;3I;2I81F70G6/F5.F40F40A2/@1.@1.@1.@00@00@00C11B./A+-?),<&(:$'9#%9#&9#%7!$;%'?),A+-?),>(*?),@*,9";!$>%(@*,C-/C/0@..>,,B00?--=)*<()@'*@'*>$';!$<$; %; %7"204!#6&'3#$2"#/ ,-+,+) ("'!'!( )!,!-"3 &3 &5 %7"'8$&9%':&(:')<..:0/<21>43?54?75?75=85A<9B=:B=:A=:@<9?;8=96<85>8:=79:468246024.03-/3-/L;3L;3L;3M<4M<4M<4M<4M<4O>6O>6O>6O>6N=5K:2I80H70J73K84L95M:6N;5P=7Q>8Q>8P=6Q>7R@6SA7TB8VD:WE9WE9RA7RA7R@6P>4N<2M;1M90L8/S<4R;3Q:2P91Q81Q81Q81Q83O62P65R65S74T84V93W91Z90`@5b@4cB3iE5nI9rM;vQ?zTAVB‚XB†YBŠ\BŽ_A“c?—f=šg8§uB¬{C²F¶†F¸ˆF·ŠGºI½LÀ‘K¾H»‹I¼ŒL»R¸‹T±†Q«‚N¨€M£~I¡~F¤„G¯’P» Yé_ůdųgǺk˾oÊ¿mŽjÁ»eÀ¼e¿½fººb¹¼e¹½h¹¾j·¿lµ¾m³¼m²ºm²ºq²¹s¯¹r®¸s­·r­·r«¶q«¶r©´p©µsª¶t«·u«ºw­¼y®½|®½|°À¯Â‚¯Â€¯Ä°Ä±Å€±Å€´Å³Â²¾~±¹}¯´zªªtš™c†‚RvrEljDeeCfcBggEffB_a<]_8_d!< <":!7!7"7"6 #7 &6!&7"'7#%8"$;##=#$@$#D%#H&%L&%N%#Z**\)(`('e+)k.-q1/v53w75l20f0.c--_))Z'&X&%X&'W''U$'U$'Q#%P$%P#&N$&P&(P&'P'%P'%P'%P'%Q(&Q(&Q(&Q(&O&$Q(&S*(V-+W.,V-+T+)S*(\0/Z.-Y+-V*)U')S'&T&(S'&U')S'&T&(S'&U')V*)Y+-W-/U.3V26Y59Z68Z68Z66\97^;9`:9b<;e=>g>Bh?Ch?Ei>Gh=De;?a9:_57\45]35Y12V,-Q))R**V.,\42a97b:8a:5]53[31T,-V,.X.0Y/0Z01Z1/Z1/X1,R-'O,&J+&H+'D+'C+'A,)B-*C*&@'"?&!@'"A)%B*&A)'<'$8#"5 103 3!!2 16$ 5&6)!7-$:1(?5,D7/F70I60K3/M1.L0-L3/N62O:5P=7N@7K>5I:3E80E6/E6/F72G83H96I:7H96D52@00?//B22G55K78I43E/1@+*=')<'&<&(<'&9#%9$#:$&=('?)+?*)<&(8"$?%(>$'=$'>(*B,.C/0@..>,,A//?--<()9%&:!$9 #: #: #6 6 6 5 3 1 1 / 2$$1##/!!--++*&%!'#($+#,$,","/$1 &5"&8%):');(*<(*;(*9--9/.;10;31=53>64>64<74>96?;8B>;C?;>=9;:6;749359357136024.02,.1+-0*,L;3L;3M<4M<4M<4N=5N=5N=5P?7P?7P?7P?7N=5M<4K:2I80K82K84L95N;5O<6P=7Q>8Q>7Q>7R@6SA7TB8UC9VD8WE9XF:SB8SB8SA7Q?5O=3N<2N:1M90S<4S<4R;3Q:2Q81Q81Q81Q83O62P65R65S74T84T84V93W91]<3^>3_?2bA2fE6jI8oK;qN;wR@zTA~UA‚X@ˆZ@Œ]?‘a=“b9 pB¥uD­{F°‚G±ƒG±…F´ˆI¶‹G¼Gº‹E¹‰G¹ŒK¹ŒQ¶‹T²‰U­…R£}LžzH›zEžH¦‰M°”U¶[¸¡]½­bÀ³eǺlɾnŽl¼hÀ»g¿½hººd¹»g¹½i¸½k¶½m´½n²ºm±¹p±¸t±¸u®·t®·t­¶s«¶r«¶t«¶t¨´r©µsª¶tª¹v«ºw­¼y®½|®¾}®Á­Â®Ã€¯Ä¯Ä°Å€±Æƒ²Åƒ²Â±¿±»°¸}¬¯xŸŸkŒŠW}zMllFefDeeCfhCdfA\a9[`8]f;gtIk|Ow^ˆ¢r𷇢Ē¢Ç”ŸÅ” Å™¡Æ›£È¥ÌŸ¨Ï¢«Ò¥­Ô¥¬Ö¦°Ú¨°Ü©±Ý¨³à©¶ã¬¶æ¬·æ¯ºç®Àé¯Âê®Åë°Çï³Éï´Êò¶Ëñ¶Êò¶Ðö»Ðø¼Òø½Òú¾Ôú¿ÔüÀÖüÁ×ýÄÓóÁÔòÀÓñ¿Óñ½Õò¼Öó»ÙõºÛ÷ºÝúºÞû»âü»ãý¼ãüºßø¶Ûô²Öó³Æì¯Âî³À챾鱼篻氽貾鴻峻嵻嵻巹ⶸᵶ߳¶Ü³ºÞ¸¹Ý·¹Ý·¹Ý·¸Ü¸¸Ü¸·Üº·Üº¸Ý¼¸Ý¾·Ü½´Û¾µÙ½²Ù¼³×»±×¾³ÕıÕdzÔɱÕɲÓÈ®ÒÆ®ÏÆ«ÏÅ¬ÍÆªÍÆ­ÎÇ«ÎÇ®ÎɬÏɯÏʯÏʲÒϲÒϯÑЯÑЭÑÑ­ÐÒªÐÓ©ÑÓ¥ÎÒ¤ÍÓ¢ÍÔ ÌÕ ÌןËÖÌÖœÌØžÍÝÎßÎßÎßœÍÞšÊÞ˜ÈÜ—ÇÝ™Éà˜Èß—Æà•ÄÞ•Äà•Äà–Åá–Åá—Äã˜ÅæšÅç›ÆèÅèœÄçœÂæ›Áå Âè Âè¡Áè¢Âé¤Áé¥Âê¦Âê©Â맾覼妹㥷ߥ³ÚŸ«Ñ™¡Æ•›½’±ŽŽªŠ†Ÿ‡–ƒz„yŠ…x‰„y‰…~…}’‰}“‹{•Žz“’x‘—wŽ™wˆ”n{„[cmDJ^48Y.5W,5R'1L#+E!%A!"A!$?!#=!; ;"8!7"5"5"4 "5 %4!%4!%4!%7!#:""<"#@#%C#$G%$K%$N%#Y))\)&a)(g+*k.+q2-v2/t42e.+`/+^+*Z('W%$U%#U%%V&&U$'U$'Q#%Q#%P#&P#&R%(R%(R&'P'%P'%P'%Q(&Q(&Q(&Q(&O&$Q(&T+)V-+W.,V-+T+)S*(X./W-.W+,R()S'(P&'R&'P&'R&'P&'Q%&P&'S'(S)*V*+U-.Q-1S04U26V37U34T45Y76\:8];9_<:`<f?@h?Ci?Cj@Dg=Ac9;_57\24[13Y/1U+-Q))P()S++W//Z22[33Y32X00U./S,/S,1U,0V-1V./U--S++Q+(O,(M,'J+&G,%E,%C/(D0)D0)E.(D+&B)$B+%D,(E-)A,)?*'8#"4 113!!4""3 "2 7$ 7&7(!8+#:0'>4+C6.F70H5/I4/K2.L3/N62Q<7TA;SD=RE)(>)(>)(?*)>)(>)(>)(@+*B-,A,+=(':%$>$'=#&<#&<&(@*,B./@..>,,@..?--=)*:&';"%9 #9"8!7!6 5 3 10.-1##0"". -,--+( &"'#'#*"+#,"-#/$0%5"&7$(:');(*<(*9)*:..:0/;31=53>64>64=85=85<85>:7@<9B>;@?;>=9<;7:959569358246024.02,.1+-0*,L;1M<2M<2N=3N=3O>4O>4O>4Q@6Q@6Q@6Q@6P?5N=3M<2K:2L93N94N94O:5P;6Q=6R>7S?8T@9T@7UA8VB7WC8XD9YE:XF8UE8TD7TB6SA5Q?3O=1O;0O;0S=2S=2S=2R<1S;1R:0R:0Q81P73P65R63S74S73T84U82U80Y;1Y;0Y;0]=0_?2bB3eD5gF5pLU=„X=ˆY;Œ\8•e=šk?£sC§yGª}F«~E­€G°„G¸‰E·ˆB·‡E¶ˆJ·ŠOµŠS²‰U®†S¡{JyI˜wD˜xEI¢ˆO§T©‘S³ [·©^À²gÆ»lƽnükÁ¼j¾¼iº¹f¸ºg¸»j·¼l´»m³ºm±¹n°·q®·t®·v­¶u­¶u«¶t«¶t«µv©µu©µuª¶v©¸w«ºy¬»z­½|®¾}¯¿~­À~¬Á~­Â­Ä€¯Æ‚°Çƒ±Ç†²Ç†°Å„¯Áƒ°¾±¼‚®µ¢§q‘”_ƒ…TqsLimJhjEhlGfkC_f<^g=f?@iABkACi?Cf9>^48Z04X.2V,0R)-P()N%)N'(P)*Q*+Q*+N**O()L(*N)0N)1P(0P(0O(-M&)L%(H$$M*(L+&I*%H-&G.'E1(G3*H4+J3+G0(E.&F/'G0*E1*C.)A,)8$#5! 3 2 4!#6#%3#&4!#8# 9$8' 8)"8.%<2)A4,E6/F5.H3.J50M83P=7UD=YJC[NFWMCSK@OE;M>;M;;K99L::M;;H43G2/D/,A,)@+(@+(B-*C.+D/,C.+C.+D/,E0-D/,?*';&%<"%;!$9 #:$&>(*@,->,,=++@..?--?+,<()<#&9 #7 57!6 5 20.,*/!!, . -.-.,)#'$%"%"& (","-#-#.$2"%5%(9&(;(*;(*9)*<00;31=53?75>96>96=85=85:63<85<;7?>:@?;?>:=>9=<8;78;579357135/13-/1+-0*,M<2M<2N=3N=3O>4P?5Q@6Q@6RA7RA7SB8SB8RA7Q@6O>4O=3O:5O:5P;6Q<7Q=6R>7R>7S?6UA8VB9VB7WC8XD9XD9YF8XF8WE9VF9UC7TB6R@4Q?3Q=2P<1S=2T>3T>3T>3U=3T<2R:0R92Q84S74S74S74S73S73U82U80Y;3X:0X:/X:/\iAAkABj@Bf9<\26W-1U+/R)-P'+M&)M&)M&)L%(I%'H$&G%&H$&G$(E$+E$-H%,H%,G$*G#'E!%D "I'&G(%H)&G,%G.'I3(I5*K7,L6+I3(G0(F/'E1*E1*B-(?,&9%$6"!2 3!!6#%8%'5%(6#%;#!;#8%9(!8+#5D:1E82D71F85H:7K<9M>;N<,,>,,?+,=)*=$'8"536 5 20.+*)++. /!!0 !/ 1 .!,&)&&#$!$& +!-#+!-#1!$4$'9&(;(*;(*9)*<21=53?75A97@;8?:7>96<85841:63;:6=<8?>:?>:>?:?>:<89<68;578246023-/1+-0*,N<2N<2O=3P>4R@6SA7TB8TB8TB8UC9VD:VD:VD:UC9SA7R@6Q<7Q<7R>7R>7R>7S?8S?6S?6VB9WC8WC8WC8XE7XE7XE7WE7XF8VF7VD6TB4SA3Q?1Q>0P=/T>1U?2V@3V@3W?3U=1S;/R:0U95V86U75U84U84U84U82U80[=5Z<2Y;0Y;0Y;0[>0\?1]@0dG5gH6kJ9pM:uO?g=>a78Z02T*,Q)*O'(M%&J#$M&'J&&I%'F$%E#$C#$E#$C#&=$='? (@!'B!(D!'C &C $F#'D$%E&$E)%F-&H1)K4,M7,L6+I3&D0%C/$C/&B.'>+%;("8$#5#!2 3 "4$'7'*7&,8$&>$#=$ 9$9& 8)")&=#$: #7!6 "9#%;'(:((:((;))<**<();'(;"%7!524420.,*(*+-!!/##1##0""0 !.".!(*''$$!#$( )!* ,"0 #4$'6&'8()9)*9++=32>64>96@;8A<9?:7<85;74841762984<;7=>9>?:?@;@?;>:;>8:<68:467134.02,.1+-N<2O=3P>4Q?5SA7TB8UC9VD:VD:VD:WE;XF9S>9S?8S?8S?8S?8S?6S?6VB7VB7VB7VB7WD6WD6WD6WD6WE7VF7VD6TB4R@2Q?1Q>0P=/T>1U?2WA4XB5X@4V>2T<0R:0X;7X:8X;7W:6W:6V93V93V91[=3[=3Z<1Y;0Z<1[=2\?1]@0aD4bE3gH6kJ9qL:uO<{Q;~Q:{M3€Q5†X7Œ^:‘d=˜kBŸtI¦zK¯‚K°‚G¯€H«~E¥zC¢yC£zD¡|G©†P§†Q¤…O¡ƒO‚MžƒN ‡Q£ŠQ¡ŒM£L©–R± Z¸ªc½±g¾µj½¶h½·kº¶l¶´j²²j°±k®±l®±n«²o¨°t§±u¨²v¨²v¨³w¨´v¨´v©µwª¸z«¹{«»z­½|®¾}°À¯Â€¯Ä®Ã€­Ä€­Ã‚¬Åƒ¬Å„­Æ…¬Æ‡¬Æ‡¯Ç‰®Ä†¬À…«½ƒ©¸Ÿ¬t›c…Zv}QovLlsInwJqzKq}Kw…R}[Š¡k­uš»„ŸÆŸÊ•œË—šÊ˜™Ëš›ÊžÊ¡žË¢ŸÎ¤ Î§¡Ñ©¢Òª£Ó­¤Ô®£Õ°¤Ö±¥Ù³¨Ü¸ªÞº«ß»ªáº¬ã»«ä¹ªãº«ä¹«ä»¬åº­æ½®ç¼®ç¾®ç¼°éÀ²ëÀ´íĵî÷ðǹðƹìûëÁ¼íÀ¼í¾¼î½¼ìººê¶¹ê³»ê¶¸ç³µã²³Þ°±Ü¯±Ü±²Ü´³Ý·¬Úµ«Ùµ«Ùµ«Ùµ«Ø·ª×¸§Ô·¥Òµ¥Ñ¶¦Ò·§Óº§Ó¼§Ò¾¦Ñ½¥Ð½£Ï¾¤ÓãÓŤÒŤÒŤÒŤÒŤÒǦÑÇ£ÎÄ£ÎĤÏÅ¥ÐÆ¦ÏǧÐȨÑɨÑÉ¥ÌɦÍʧÎ˧Î˧Î˧ÎÍ¥ÌË¥ËÌ¢ÈÉ£ÉÊ¥ËΧÍЪÐÓ¬ÒÕ®ÓÙ¯ÔÚ¯ÑÛ°ÐÝ®ÐÜ®ÐÜ«ÏÛ«ÏÝ©ÏܨÏÞ¥ÏÝ¥ÏߤÏß¡Ïß¡Ïß ÍàŸÎàŸÎâŸÏæŸÎèŸÎêŸÎèžÍéœËçšÉå™Èä™Èä˜Çã—Æä•Äâ•Äâ•Äâ–Åã–Åã˜Åâ—Äá—Ãà—Ãà™Ââ™Ââ›ÁåœÂæžÀæžÀ柿è À颿ë£À줿ì¤Àï¡Âï Âï¡Âï£Âð©Áñ¨½ê¥¶á£¯×œ¡Ç˜›º”‘¬ˆžˆ„z…„wƒv†w~ˆt}‰t}u€”t“oy‹cl…[_vJKmA>_62U/,O++L)-G&-D%+B"'A!$A!&@ %=#;"9#8"7$5$5$4$2%2%0%3%9%<&>%A!&D!'I"%K#$O#"Y)'],(c.*g0)i.(g+#c'_$^&%\(*])+])+\*+[)*Y(+V(*R%(P&(N$(M$(M$(L%(N'*O'(P"$R""S##U%%V&&X((Y))Y))Y))[++]--^..]--[++Y))U')M&'J&(H$&E!#D "C!C!C!E!#E!#D "E!#F"$H$&I%'M&)T()V(*V),T*,Q*+Q--U32Y76Y76[98^;9b<;d<6ND;RKATRFXVJVRFTNBOH>IB8E<3A8/A60A60C52B41C41D52G55G55E33D0/D/,B-(A,'@+&A,'C.)F1,H3.C.)C.)D/*G2-J50J50G2-D/,@&'=#&8"5!8"$9%&8&&7%%8&&8&&8$%7#$8"6 4333100--++, /##0$$3%%1##1!".".!(+ ((%&#$$&&)+!/"3#&6&'8():*+9++<21>64?:7A<9A<9?:7;74952651762984:95;<7=>9>?:@?;@<=@:<>8:;577134.02,.1+-N<2O=3P>4R@6TB8UC9WE;WE;VD:WE;YG=YG=ZH>YG=XF:V?9V?9V?9V?9U>6U>6XB7XB7XB7XB7WA4WA4WA4UB4WE7UE6UC5SA3R@2P>0P=/O<.T>1V@3XB5YC6ZB6W?3T<0R:0[>8Z=9[<9Z;8Z;6Y:5X94X:2Z<2Y;1X:/X:/Y;0Z<1[>0\?/\A0]B/cD2gF5mH6qK8vK8zM8{M6}O5€Q5‚T3†X6_;•iBpF©{I«|Hª|H¦xD¡vAžu?¡xB¡|E¤I£‚L£„M ‚LœJ‚K¡ˆP¥ŒS¤P¢K£L¨—Q°¢[¸¬b»²g¼´i½·m¹µkµ³i±±i®¯i¬¯j¬¯l«°n§¯s¦¯v§°w§±u§²v¨³w¦´w¦´w«¹{¬º|¬¼{®¾}­À~¯Â€°Ã°Å‚°Å‚¯Æ‚­Æ„¬Åƒ¬Å„ªÄƒªÄ…ªÄ…®ÆŠ­Â‡¬À…¬¾„«º£°x–¡i‹•a~…Yw~Tt}Ry‚U~‡X€Ž[ˆ™c‘¦n›´{º‚ŸÂŠ É‘ŸË–œÌ˜šÌ™šÌ›Ì Ì¢žÌ¥ŸÏ§ Ðª¢Ò¬£Ó­¡Ó®¢Ô¯¢Ö²£×³¥Ùµ¨Ûº¨Þ¼©ß½ªà¾¨á¾¨â¼©â¿ªä¾«äÁªä¾ªãÀªä¾ªãÀ«å¿¬å­çÁ®çįéÃ°éÆ±êÇ®æÃ°æÂ±çñèÁ±è¾±æº¯ä¸®ãµ­àµ¬ß´«Þµ«Ú¶©Ø¶©Ø¸©×º©×º§Ö¶¨×µªÙ¹ªÙ¹§Õ¸¥Ó¶£Ñµ£Ñ·¢Ï¸¢Ï¸¤Ñ¼¥Ò½¥Ò¾¤Ñ½£Ï¾¢Î¿ ÐÄžÐÅ¡ÐÆ¢ÑÇ£ÒȤÓÉ¥ÔʦÔÊ¡ÏÅ¡ÏÅ¡ÎÇ¡ÎǤÏȤÏȤÏÈ¥ÏË¢ËÇ£ËʤÌË¥ÍÌ¥ÍÌ¥ÍͤÌÌ£ËÍ¢ÊÌ£ËÍ¥ÌѦÍÒ©ÐÕªÑÖ¬ÓÚ®ÓÛ¯ÑݯÐß®ÏÞ®ÏÞ«ÏÝ«Ïß©ÎÞ¨Ïà§Ñá§Ðâ¦Ñâ£Ðã£Ðã¡Ðä¡Ðä¡ÏæŸÎèŸÎê Ïí ÏëžÍëÌê›ÊèšÉç™Èæ˜Çå—Æä•Äâ•Ãä•Ãä–Äå–Åã˜Åâ—Åß—Ãà–ÂߘÁß™Ââ›ÁåœÂæ¿åžÀ柿è À颿ë£À줿î¡ÃñŸÄñ¢Äò¥ÆóªÅô«Áð©ºæ§µÜ£«Ð¡¤Å𷔥ޅ–‹ŒŠ}†‰|ƒ‰z†u{‡ry‹qzp{jr‡^fUWrFEk@:_60V/*P*)J()F&+D#*B"'A!&A!&@ %=$;#9#8"7$5$5&4&4!'4!'4 )5 ':&>'@&B"'E"(J#&L$%P$#Y,)^-)c.*e.'f-&d)!a%^#_%$^&)^&)^'*['+X&)V%(R$&R%(P&(M$(L%(J&(J&(K(,N'*O!#S!"T"#V$%W%&Y'(Z()[)*[)*]+,^,-_-.^,-\*+Z()U')M&)H%)F#'D!%B#A"A"A"D!%D!%C $D!%E"&G$(H%)M&)X'*[)*],/[-/X.0X01Z34[77Z66\88a:;e=>f<=e9:b65`43[20W.,S*(P'%N&$L$$G! BE" D" D"!B#!B#!@" ?!>"!7!8#9 &; '='>'>&=#>$>#?"@""A%$C*&F-)G0*N8-I6(E1&C/$B.%@,#;("8%5#!3!/ 0 !4$'6%+7&,9%'D')C%#@$!=%!<)#=.'B3,E6/J;4I:3I:3G=4I@7JF;KK?NNBOM@MI=HD9C?4A:0@7.@5/@5/F85C52A2/@1.D22E33D01B.-C.)B.'@,%?+$@,%B.'D0)F2+B.'B.'E1*J6/O;4P<5O;4L72D*+@&):!$6 "7!#7#$6$$5##6$$5##4 !3 445522111 /!!0"".""+! -#"0$$2&&4&&2$$0 !-!,!'* (*'(%&!$$#(* -!1"%6&'8():*+9++;31;63?:7A<9@<9=969527307628738949:5:;6<=8<>9>?:B>?A;=?9;<688245/12,.1+-O;4O=3Q=4R@6UA8VD:XD;XF0P<1O<.T>3V@3XB7ZD7YC8WA4U=3S;1[@7\?9\=8\=8[=5Z<4Y;1Y;1X:0W9.W9.W9.W9.Y;0Z=/Z?.Y>+Z?,]@.bC/gF3mH5pJ5sJ4zP8|P7{O4{N1|O.ƒW4‹`=”hA¤uI¦xG¦xG¢vEžrAt@ xD¢}Hœ{E~Gž€J›€IšH›‚J ‡O¢ŒS¨V¢ŒP ‹L¤‘O¬šXµ¦a»¯g½³k½·m¹µlµ²k°°h­®j«®i¬¯l©¯o¦®r¥®u¦¯v§°w§²v§²v¦´w¦´w¬º|¬º|­»}®¾°À¯Â‚²Âƒ±Ä„²Ç†±Æ…°Æ…¯Å…­ÃƒªÂ„ªÂ„©Á…­Å‹ªÂˆ«À‡¬¿‡«¾†¤µ~™§rŽœi…’dŒ`{‹^‘b‡™i¡n—®z¢»„¥ÂŒ£Ä¡È“ Ë– Ì™œÌš›ÍœšËœÍ£Í£œÏ¦žÑ¨ŸÑ« Ò¬ Ô®¡Õ±ŸÕ± Ö´¢Ø¶¤Úº¥Ü¼§Þ¿¨ßÀ©àÁ¦ß¿¦âÀ¨ãéäÄ©äĨãçâÂ¥àÀ¤ß¿¤ß¿¥àÀ¦áÁ¦áÁ§â¨ãèãÅ®æÉ¯çʱèɱèɰçÇ®æÃ­ã¿«á½¦Ú¶§Ú¹¨Û¼¨Ú½¨Ø¾¦Ö¾¤Ô¾£Ó»¤Ò¸¨Öº«Ù¿ªØ¾¦Ó¼¢Ï¸¢Ï¸£Ð»¡Îº¡Îº£Ï¾¤Ð¿¤ÐÁ¤ÐÁ£Ï ÎÞÍÞÍÅŸÎÆ¡ÐÈ£ÒʤÓÍ¥ÔΦÕÏ ÍÈ ÍÊ ÍÊ ÌË ÌË ÌË ÌË¢ÌË ÊÉ¡ËÊ£ËË£ÍÌ¥ÍÏ£ÌΣÊÏ¢ËÏ£ÊÏ£ÌÒ¥ÌÓ¦ÎÖ¨ÎÙ©ÑÛ«ÑܬÒ߬Ñá¬Ñã«Ðâ«Ðâ©Ïâ©Ïâ¦Ïã¥Ðã§Ñç¥Òé¤Òé£Ñé¢Òé¡Ðê¡Ðê¡ÐêŸÎì Îï Îï ÎïŸÍîËì›ÉêšÉç™Çè˜Çå—Æä•Äâ•Ãä•Ãä–Äå–Åã˜Åâ—Äá–Âß•Àà•Àà˜ÁášÂåœÂçœ¿åœ¿çž¿èž¿ê ¿ë ¿í£¿î Àï ÆóžÇó¢Çô§Çö¬Èú®Äö­½î«¸å©²Û¦¬Î ¡¿˜–®“‹ Ž†•Ž‚€ŠŒ{ƒŠu|…nv‡lu‹jsŠem„[a}SUpDEj>;_64V.,N**J()E%*C")A"(@!'@!'? &<&9%8%5$4%4&4&4!'5"(5"(6#)7"'; '>!&@!&B"%F$%I%%N$%P$!]-)`-)c.*d-(c,'`)"]&Z# Z$$[$'Z&*Z&*X&)U$'R!$O!#R%(P&(M$(L%(J&(J&(K)*N'*N"#Q!!S##U%%W%&Y'&\)(\)(]*)]+,_-.^..^..Y+-V(*R(*K')F&)D$'B"%@ #?"?"?"B"%B"%B"%B"%C#&E%(G'*M&)Y(+^*,a/2a03^03]03]35_78\45^78c;?e==b::]53Y1/W.,T+'P(&N&$M'$J$!D!?@? @!A" @!@!==; %; ' (='<%:#9";";"<"> "?"$@&%C)(D,(O;2J8.F4*D1*C0)A.(=*$8&"4" 2 ./ 3#&6&)7'*9%'D*+D('?%&;&#<)%@.*C4/F72K<7J;4H;3F<3F=4FB7HF:KI=NG=KD:F?7B;3@70@5/@5/B41J;8F74C1/A/-C11E12D01C.-C.)A-&B+%>*#A*$A-&E.(E1*D-'C/(H1+L81T=7UA8V?9T=7F.,B();##8 6! 6"#6"#5!"5!"4 "1123 5!5"100 12!2"#2$$3%%-!!/##3%%5''5%&3#$0 !-,!'+"'+ ()$'"$#!')-!1##6&'8():*+9++;10;63>96@<9>=9;:676243/873873984984:95;<7<=8==;@>?A=>>9=;788265/13-11+-Q95P<5S<6S?8XA9XD;[E:ZF;\F9[H:^H:\I:_J9\I8^I8^I8YD3YB4XA3W@2V?1T=/S;/S;/YA5YA5X@4W?3X@6YA7ZB8ZD9XD9WC8VB9T@5R>5P<1O;2N:/M90O;0Q=4T@5UA8UA6W@8V@5Y>3[?3[?3[?3Z>2W;/U9-S7+R6*T8*W;-Z>0]A3^B4]A3]B1^C0^C.^C.`D/eF2iI4nK5rN6qM3rM2vO2yR3~U7‚Y9†]=ˆ`<’f?”i>–k@”k?”k?•o@›wGŸ}M}Jœ~JšJ˜I•~H—‚KˆQ£ŒV§Z¦ŠX¤‰T¢‰Q¤S­›[·ªf¿µnº³k·³j²²j¯±hª°j§®h¥¬h¢«j¡«n¡¬p¢­q¤¯s¦±u§²v©´xªµyªµyª¸{¬º}¯½€±¿‚±Áƒ²Àƒ±Áƒ³Ã…³Ã…³Ã…°Â†°Â†®Â‡®Á‰¬Áˆ©¾†©ÀŠ«ÂŒ«Âލ¿‹¢¹…œ²–®|Š¢rФu©y’®~–³ƒ›¸ˆ½Žž¿Á“œÃ”œÆ˜žÉœÊŸžË Ì¢œÌ¢ŸÒ©žÓ©žÒ«ŸÓ¬Ô­žÕ®Õ°žÖ±Õ²ŸÖ¶ Ù¸£Ü¼£Þ¾¤ßÁ¤ßÁ¤ßÁ¥ÝÀ¥Þ¾¤Ü¿¤Ü¿£Û¾£Û¾¢Ú½¢Ú½£ÛÀ£ÛÀ£Û£Û£Û£Û£Û£Û¦Þŧ߯§ßÆ§ßÆ©ßÅªàÆ«àÆ«àÆ¤Ù¿¤Ù¿¦Ø¿¦×Á§×Á¨ØÂ¨×è×ãҾ£Ò¾¢Ñ½ Ï»ŸÎ¼žÍ»ÌºœË»Ì¼Ë¾ËÀËÀËÀËÀËÁËÁ¡ÌÅ¡ËÇ ÊÆ ÊÆ¡ËÇ¡ÎË¢ÎÍ£ÏÎ¥ÑÒ¥ÑÒ£ÐÓ¢ÏÔ¢ÏÔ¡ÎÓ ÍÒ ÍÒ ÌÍ ÌÍ¢ËÍ ÌÍ¢ËÏ ËÑ¢ÊÒ ËÒ ÈÒŸÉբɨ¢ÌÚ¦ÍÞ¦Ðà©Ïâ¨Ñã¡ÌߣÍã£Ðå¥Òç§Ôë§Õí§Õï¦Õï¨×ó¥Öô¤Õõ£Ôõ¡ÓôŸÑôžÐóžÐó Ðô ÑòŸÐñÎï›ÌíšËì™Êë˜Éé“Äå”Åå”Å啯æ”Åå“Ää’Ãá’Ãá–Åã–Åã—Äã—Äå—Äå˜Ãæ˜ÃæšÁè™Àç›ÀêœÁëÂî Âï¡Ãñ¢Äò ÅòœÉòÊóŸÈö¤Åø¨Ãú«Àù®½ö°½ñ©´â¦¯Ö¢¨Ê¡¾›™±•§…Ž|’’yŒt‚n}‹kx‹gs…`h|T\sJPh?Ca9:V/2M)+I'(F&)D$)A"(?!)> (; )9(6)3'2(1(2'/&/$1$2#4!#7#%8$%:$&<$$<"!?# C$!I&"P'#W'#_,(b+(d*(a)(_)'[)(W*'U)(S%'S%'S%(R$'Q$'P#&P#&O"%L"$L"$L"$K#$K#$K#$K#$K#$O%&O#"N"Q$!Y'&^+(a+)a)(\&$[('[)*X**S)*P()L%(G%&B$$A%$A%$A%$?#"=! ;:>"!>"!?#"A%$B&%D('E)(I'(X*,\*-`.1c14e36e36d36c25b67a78b::_<:^<:Y<8W:6V72[52X0.R,+M*(J(&G%#@!<>>>>@@A!@!?'>(='<&;#9"879!73359$#?*)B/+F40F40G51F42C1/?-+;)'7(%1!!0 /// / 0 !3 "5!#5!#6!&6#%:')<,,@00C41K<9K<7J;6H;5G:2E;2E;1F<3K>8J<9G96D63C41B30A2/A11@..A//C/0C/0B./B,.A+-B**@(&@($A($A)%B)%A)%C*%B+%C*#C,$H/(M6.T;4U?4T;4Q:2I2,F.*A)'<$"8 4334!3"2#3"2#2%3&4'/ .-.// 1"2#5"$4!#4""3!!3!!2 2 /+#*#+ &*#)!&#!((*. 3#$8((<,,=/.>22=53=85;:69:5794572350873873<74=85=96>:7=<8<<:@@B>>@=;@97:8394/33,32,0Q95R:6T=7V?9XA9ZC;\F;\F9\F9\F8]H7^I8^I6^I6^I4^I4]F4]F4\E3ZC1YB2XA1W@2W@2YB4YB4X@4W?3W?5X@6YA7YC8ZC;WC:VB9T@7R>5P<3O;2N:1L8/N:1P<3R>5T@7T@7S?6U?4W=0Y=/Z>0Z>0Y=/W;-U9+T8*S7)T8*W;-Z>0[?1\@2[?1[@/]B/]B-]B-^C.aE/dH2hJ2kK2oM2oM2qN2tO2yR5|U6X9‚Y9‹`=Žb;Žd<Žd<Œe<Ži=’pC–vGš{L™}Mš~N–K•~J•€K™…Pž‰T¢†W£‡X£‡W¡ˆR¡ŒS¨–X³¤cº°k¹²lµ³i²²j®±jª°j§®h¤®i¢­k¢®p¢­q£®r¤¯s¦±u§²v¨³w©´x«¶zª¸{¬º¯½‚±¿„²À…²À…²À…´Â‡´Â‡³Á†²Á†±À‡¯À‰­À‰¬Á‰©½ˆ©ÀŒªÂ©Ä‘¨Â’¤¾Ž ºŠœ¸‡–³ƒ•µ„–¸†™»‰š¾ŽÁ“žÃ—žÅ˜œÃ—›ÄšœÆžŸÉ¡žË¤ŸÌ¥žÌ¥Í¥žÓ©œÓ«Ô¬Ô­Õ®Õ°œÖ°Ö³Öµž×·ŸÚº¡Ü¾¢ßÀ£ßãßãßäÜÁ¤ÜÁ¤ÜÁ£ÛÀ£ÛÀ¢ÚÁ¢ÚÁ¢ÚÁ¢Ù¢Ù¢Ù¢ÙÄ¢ÙÄ¢ÙÄ¢ÙÄ¢ÙÄ¥ÜÇ¥ÜÇ¥ÜǦÝȧÜȨÝÉ©ÜÉ©ÜÉ¥ØÅ¥ØÅ¦×Ħ×ħÖħÖħÖħÖÄ£Ò¢ÑÁ¡ÐÀ ÎÁŸÍÀžÌ¿Ë¾œÊ¿ËÀËÁËÁËÁËÁÊÃÊÃÊáËÇ¡ËÇ¡ÊÆ ÊÈ¡ËÉ ÌË¢ÎÏ£ÏÒ¥ÑÔ¤ÑÖ£ÐÖ ÏÕ ÏןÎÖžÍÕžÍÕ ÍÒ¡ÍСÍСÌÒ¡ÌÒ¡ÌÓ¡ÌÕ¡Ë× ÊØ ÊÚ¡ÊÜ£Ìà¤Íá¥Îä¦Ïå¦Ðè¡Îå¡Ïæ¢Òè¥Õì¦Õï§Öò¥Öô¥Öô¦Øù¥×ø¤Öû£Õú ÔûŸÓúžÒúÑø£Õú£Ó÷¢Òø ÐôŸÏóÍñœÌð›Ìí˜Èì—È镯ç“Ää’Ãä“Ää”Åå”Åå–Äå–Äå—Äå—Ãæ—Ãæ—Ãè˜Âè˜Âê™ÀéšÁìšÁì›ÁîžÃðŸÃóŸÃóÆôšÊòšÊòžÇõ£Äù§Áú«¿ü­½ù°½ô®¼í«¸â§±Õ£¨ÈŸž½›”³—Œª˜…¡™}“•t…Žl|ˆft…amZbwOXoGOd=B[7;R.2K(,F&)C%'B#(?"'$#=#";! 9<"!=#">$#?%$@&%A'&B('G'(X+.^,/a/2d25f26g37g37f47d36a56_77]:8[<9X<8V=8X<8W42U/.N+)J(&G(%C%#> :<<<= ? @ @ @"?%<&>&<&;#:#8 6 6 4325 9%$>*)@.,B22C33D44D44B22?//;++9))3##2""1!!///0 0 !3#&3"(3"(4$'6&)9)*<,,>..F74F74F72F72F70F70F8/F70I:7H88E55C33D22C11C11C11>*+?+,@*,A+-@*,?)+?&)>%(@&'A'&A'&A($A($A($A($A(#A(#B)"E,%K2+Q81T<2R:0O6/F/)C,&?'#:"766 6 5"4!3$2#1$1%2(1'."---.0 2"3#6"$6"$5!"4 !4 !3 21* *#*#)"(%#!**+-1!!4$$7''8*);//;10:5287368338216024/561952;63>64>96>:7?;8>=;@@B=>B<;@:8=8395063,32+2P;6P;6R>7T@9VB9XD;ZF;[H:YF8YF7ZG6ZG6[I5[I5\J4^I4`I7`I7_H6^G5]F6\E5\E5[D4YB4XA3W?3V>2V>2W?3X@6XB7YB:VB9UA8T@7R>5Q=4P<3O;2L8/M90O;2P<3Q=4Q=4Q=4S=2S;/U;.V1Z@3Z@3Z@3Z@1\B1\C/]B-]B-`D.bF0eG/hH/nL1nL1oL0pM/rM0uP3yR3{R2ƒX5„Z4…[5…[5ƒ\5…`6ˆe;Ši>“tH”xI–zK”}K“|J“}K–€NšƒQšPŸƒT¡‡VŸˆTˆQ T«^³ªe¶²k²²j°±k®±jª°j¨¯i¥¯j£®j¤°p¤°r£±t¤²u¤²u¥³v¦´w¦´w©·|ª¹~¬»€®½‚°¿„°¿„°¿„°¿„²Á†²Á†±À‡¯Á‡®¿ˆ­Àˆ¬¿ˆ«¿Š¨¿‹¨ÀŒ©Á©Ä‘©Ã“§Ã“¦Â’¤Á‘¡Á’¡Á’ Á’¡Â“ŸÃ•ŸÃ•žÃ—žÅ™ÃšÆœžÈ  Ê¤ Ì¨¡Í© Î©ŸÏ©žÒ«Ô­Ô­Ó¯Õ°žÖ³ÖµÖ¶ž×·Ÿ×ºŸÚ¼¢ÝÁ¢ÞÄ£ßÅ£ßÅ£ßÅ£Û£Û£Û¢ÚÁ¢ÚÁ¡ØÁ¡ØÁ ×À × × × ×Ä ×Ä ×Ä ×Ä ×Ä¡ØÅ¢ÙÆ¢ÙÆ£ÚǤÙÇ¥ÚÈ¥ÚÈ¥ÚȦÙȦÙȧ×Ç¦ÖÆ¥ÕŤÔÄ¥ÔĤÓàРПÏÁžÎÂÍÁœÌÀ›Ë¿›ÊÀÌÂÌÄÌÄÌÄÌÄÌÆÌÆžËÆŸÌÉŸÌÉ ÊÈžÊÉžÊÉŸËÌ¡ÍΡÎÑ£ÐÕ¡ÐÖ¡ÐÖŸÐןÏÙžÎØžÎØŸÎØ ÍÓ ÍÒ ÍÒ ÍÓ ÌÕ Ì× Ì× ÌÙ¡ÌÜ¡ÌÝ¢Íà¢Ìâ£Íã¤Îæ¤Îæ£Ïè¢Ðè¢Òé¤Ôë¦Öí¦Øñ§Ùô§Øö§Øö§Ùú§Ùú¤Øý£×ü¢Öý¡ÕüŸÔü Ôü¦×ÿ¦Øý¤Õý£Õú¡Óø Ò÷ŸÑöžÐóÏôšÌï–Èë’Äå‘Ãæ’Ä唯ç—Èé•Ãå•Ãå•Ãå•Ãç–Âç–Âé–Âé–Áë—Áë˜Áí›ÁîœÂñÃòžÄõŸÃõÆô™Èò™ÈòÅö Äø¤Áù©¿û«¾ù®¿÷¯¿ò¯¼é¬µÞ§«Ð¢¡ÁŸ˜¹Ÿ‘²¢Žª—–w‡‰ix€^l{WcuRYmHPfAH^:>X48O+/I&*D$)B#(@!'= %:&:(8)5(3)1(.(.(0 *0!(0'1!$4!%6"#9#%;&%>$#@$!@#B#H%P)"Y,&_.)`+'a*'`('^((Z(+V(+R(*Q(,P&(O%'O%'O%'N$&M#%M#%M#%L"$L"$L"$L"$L"$L"$L"$L"#N&&L$"N"R%"[*&b,*e.+d-*b*)]*'Z()T&&M%&I%%G$(C%'C'&C'&C'&C'&B&%@$#?#"=! ?#"?#"@$#A%$B&%C'&D('F&'W-/^-1`/3b15d16e27e27e27a04_14\24Z34X65X97X:8Y;9S//R+,K''H&%E&$A##=8999: ; = = =!:"9$:$9$:#9#9#8$6 5 55!7!#:&'=)(>,*@00A11C33D44C33A11>..<,,7''5%%3##1!!0 /// 5%(4#)3#&3#&3#&4$%6&&6&&<-*>/,@1,B3.C4-C4-B3,A2-D52C33A11@00A//A//B00C11;'(;'(=')=')<&(;%'<#&;"%?%&?%&?%&?%$?%$?%$?%$?&"?&"?&!B)$G.)M4/O6/N5.K2+B+%>)$:% 6!434 4 2!1 /".!.#.#/%/$-!---.0 2"3#7#%7#%6"#5!"3 210,* ))'%#"+*++-/!!1#"3%$7++7-,50-43/24/05/05/24/34/730941=53=85>:7?;8>=;??A>=B=;@:8=94:7076,45+3O:5P;6R>7T@9VB9XD;ZF;ZG9XE7XE6XE4XE4YG3[I5\J4]K5aJ8aJ8`I7`I7_H8^G7^G7]F6ZC5YB4W?3V>2V>2V>2W?5WA6XA9VB9UA8T@7R>5Q=4P<3P<3L8/L8/M90N:1O;2O;2O;2Q;0P8,P9+S8-Q:,T9.R;-S8-Q:,R7,R;-V;0V?1Z?4ZC5^C8_E8^D3^E1_D1`E0bF1cG1fG2fH0jJ1lJ/mI/nK/qL1sN1xQ4yR3|S3~S1~S1|T1|V1|Y3~\6€^8ˆh?ŠmCŽsFuHwIzK“}L—O”yL›€SŸ‡WžˆVš‡OœŒQ¥š\¯¦c´¯k±±k¯°j«±iª±k§±j¥°k¥°l¦²r¦²t¥³v¥³v¥³v¥³v¦´w¥µw©¸}ª¹~¬»€¬¾‚¯¾ƒ®À„®À„­¿ƒ¯Á…¯Á‡®À†­Àˆ¬¿‡«Àˆª¾‰¨¿‹¨ÀŒ¦ÁަÁŽ¥Á¦Â’¦Ã“§Ä”¥Å–£Ã”¢Ã”¡Â“žÂ”Á“œÁ•›À•šÀ—ƜǟŸÉ£ Í¦¡Í©¡Ïª¡Ïª Ï«ŸÓ¯Ó¯Ó±žÔ²Ô´žÕµÖ¶žÖ¹žÖ» Ø½ ÚÁ¢ÜâÞÅ¢ÝÇ¢ÝÇ¢ÝÇ Ú¡ØÁ¡ØÃ¡ØÃ × ×ŸÖßÖÞÔÄžÔÄžÔÄžÔÄžÔÆžÔÆžÔÆžÔÆžÔÆžÔÆŸÕÇŸÕÇ¡ÕÈ¡ÕÈ¢ÖÉ¢ÖɦØÌ¥×˦ÖÊ¥ÕɤÔÈ¢ÒÆ£ÑÆ¢ÐŞΞΞÎÂÌœËÁœËÁ›Ê›ÊÂÌÄÌÆÌÆÌÆËÈËÈËÈËÈŸÍËžÌÊžÊÉœÊÊËËÊÍŸÌÏžÎÒ ÏÕŸÐןÐמÐÙŸÏÛžÐÛžÐÛŸÏÛŸÎØŸÎÖŸÎÖŸÎØŸÍÚŸÍÚŸÍÜŸÍÝ Íà¡Îá¡Îã¡Îå¡Íæ¢Îç¢Îé¢Îé£Ñë¤Ôë¦Õï¨×ñ¨Úõ©Úø©Úø¨Ûú¨Úû¨Úý¥Ùþ¥Ùþ¤Øÿ£×þ¢×ÿ¡Öþ§Øÿ¦×ÿ¥Öÿ¤Õý¢Óû¡ÒúŸÐøŸÐøŸÐøÎö™Ëð•Çì“Åê“Åê”Æë•Çì“Ãé•Âé•Âé•Âé•Âë–Áë–Áì–Áì˜Áï™Âð›ÁðœÂóÃôžÄõŸÄøžÆ÷›ÇôšÆõœÄ÷ŸÂø¢Áø¦ÀûªÀú­Àú«¼ò¬ºë«³á§ªÓ£¡Æ¢˜»¢’¶¤¬œ€–’s‚‚bqtTanMXjGNd?G_:AY59R/3K(,D$'A"'?"&= %9%9%7&5(3'2(1(.(.'1!+1")1 &4!%6"$7#$:%$>&$B&#C$!E$H%O& W*%_.)d1-_*&`(']''Y%'V%)T%+Q'+P'+O%'O%'O%'N$&N$&M#%M#%L"$L"$L"$L"$L"$L"$L"$L"$L"$N&&L$"N"!S&#[*&a.+d/+d/+b,*^+*Y'(R$&K#$F"$E"&C#&D&&D('E''D('D&&B&%A##?#"A##@$#A##A%$C%%C'&D&&E%&U+-X*-Z,/],0^-1`-2a.3a.3^-1[-0X+.U+-S,-S//T21U32O++K')F$%C#$A##>!#:555578899!6!5!6"7#8$7#8$8%5 3 5"5!"8$%9'';)'=+)=-->..A11C33C33B22@00?//:**9))6&&3##1!!/// 6&)6&)5%(3#&2"#1!"0 0 3$!6'$:+&>/*?0+?0)=.'<-(?0->..=--<,,>,,?--@..A//:&':&'<&(<&(<&(:$&;"%:!$=#&=#$=#&=#$<"#<"#<"#;! <"!<#>%!B)$G.*J1,I0+F/)<'":% 7"42234!1 0.!- ,!-"-#.#-!,,,./1!2"8$&7#%6"#5!"3 21/+)('&%$#))))*,/! 0"!2&&2('0+(/.*/1,.3-/4.24/34/62/941=53=85>:7?;8>=;??A>=B=;@:8=:3:8187-56,4N94O:5Q=6S?8UA8WC:XD9YF8WD6VC4VC2VC2WE1ZH4\J4]K5_I4_I4_I4_I4^G5^G5^G7^G7[D4ZC3XA3W@2V>2V>2W?3V@3WA6UA6T@5S?4S?4R>3Q=2Q=2L8-L8-L8-L8-L8-M9.N:/N:/N8-N8+N6,M7*O7-N8+P8.O9,N6,N8+R:0T>1X@6[E8_G=aI=^G7^H3aH4bI3dI4eK4fJ4hJ2iI0iJ.lJ/mK/qN2tQ3xS6|U8zQ3yP2yP2xQ2yR1yU3yW2yW2{[5~`:ƒg?‡kCˆpD‹sGŽwK’{OwK–S‡XœˆV˜‡Sš‹R£™\­¥f²®n®¯k­°k«±kª±m¨²m§²m¦±m§³q¥´s¦´v¦´v¥µv¥µv¦¶x¦¶xª¹~©»«½«¿‚­¿…¬À…¬À…¬À…­Á†¬Áˆ«À‡©Àˆ¨¿‡§À‰¦¿ˆ¤¿Š¥ÁŽ£Á¢ÀŽŸ¿ŽŸ¿ŽŸÀ‘ Á’ Á” Á” Á” Á”žÂ–žÂ–œÁ–œÁ–›Á˜ÆžžÈ¢ Ê¤ Ì¨¢Î«¡Ï«¢Ð¬žÐ­ŸÒ±žÔ´žÔ´ŸÕµžÕ¶ŸÖ¹žÖ»žÖ»žÖ½ŸÖ¿ŸÙáÛÅ¡ÜÈ¡ÜÈ ÛÇ ÛÇž×Äž×ÄÖÃÖÜÕÄœÕÄœÕÆ›ÔÅšÓÄšÓÄšÒÅšÒÅšÒÇšÒÇšÒÇšÒÇ™ÑÆšÒÇšÒÇ›ÓÈÒÈžÓÉŸÒÉŸÒÉ£ÖÍ¢ÕÌ¢ÔË¡ÓÊ¢ÑÉ ÏÇŸÎÆŸÎÆœËÁœËÁœËÁœËÛʛʛÊÄšÉÞÍÇžÌÉžÌÉžÌÉžÌÊžÌÊžÌÊžÌÊŸÍÍœÌÌËËšÊÌšÊÌšÊΛÊЛÌÓŸÐמÐÙžÐÛœÐÛžÏÝœÐÝœÐÝœÐÝŸÑÜ ÐÜ ÐÞ ÐÞ Ïß Ïß Ïá Ïã Îå Îå Îæ¡Ïé¡Îë¡Îë¡Îë¢Ïì£Òî¥Ôî¥×ò§Ùô©ÛöªÛù©Üû©Ûü¨Úû¦Ûý¦Úÿ¦Úÿ¤Ùÿ¤Ùÿ¤Ùÿ£Øÿ¦×ÿ¥Öÿ¤Õÿ£Ôý¡ÒûŸÐùžÏøžÏøÎ÷œÍö›ÌõšËô˜Éò–Çð”Åî“Äí“Ãë“Ãë“Âì“Âì“Âì•Âì•Áî•Áî™Ãó™Ãó›ÃôœÄ÷ÅøžÆùŸÇûŸÇú›Çø›ÇøœÄøÂ÷¡Âø¥Âú©Ãü­Ãüª½÷¬»ò­·ê­¯ßª¤Ð¥šÂ¢’·¡Œ«‘v‰…iwvWfiIVcBM_>E[8?V39S04N+/H%)B"%@!&>!&<&8$8$6#4%3%2&1&/(/(3",3"*4!'5"&7#%:$&=%%@'#E&!H%M&!P'!Y)%^-(e0,g2._)']''Y%'U$'R$'Q$)P%,P%,O%)N$&N$&M#%M#%L"$L"$L"$L"$L"$L"$L"$L"$L"$L"$L"$N&&L$"N"!R%"Y)%`-*c-+c-+a++\*)W''P$%J"#E!#D!%B"%E%(D&(F&)F(*F&)D&(D$'B$&C#&B$&C#&B$&D$'C%'D$'F$%N&'R%(R%(T&)V%)X'+Y(,Y(,Z)-Y(,T&)Q$'M#%L$%L%&K''J&(F#'B#?"= "9"5222223355!11!2"3"4#4%5$5$3"2 3!4!#6$$6&&8((9)):**<,,?//A11B22B22A11@00=--;++8((5%%2""1!!0 / 9&*9&*8%)6#%4!#2!1003!7%#;)%=+'=+'<*&;)%:+(9))8((8((:((<**=++>,,;'(;'(=')=')=')<&(<#&;"%:!$:!$:!%9 #8"8"7!79!!8 9!=%!B*(D,(D,(B*&:%"8# 5 31234!0/.!,,!,!-"-", ,,,-/1!2"7#%7#%6"#5!"3 210-+*)('''&&&'),. /!!/##.$#-(%,+'-/*.3-05/350450841:52>64=85>:7?;8>=;??A>=B=;@;9>;4;9299/78.6L72M83O;4Q=6S?6UA8WC8XE7VC5UB3TA0TA0VD0YG3\J4^L6]H3^H3^H3^H3^G5^G5^G7^G7]F6\E5ZC5XA3W?3W?3X@4WA4WA6T@5T@5S?4S?4R>3R>3Q=2M9.M9.L8-K7,K7,L8-M9.N:/L8-K7,L6+I5*K5*I5*L6+J6+K5*I5*M7,N:/S=2UA6[E:]G:\G6_H6`I7dK7fM9gL7gL7hL6hJ2iI0jJ1mK0qM3uR6xU9zU:xP6wO5vN4tO4vQ4vS5uR2rQ0pR0tV4x\7|`;~e=‚iA‡pGŒuL‹tK{P–T–„T•…R˜‹V£˜`©£g°¬m­®l¬¯l«°mª±m©³n©³n¨³o§³q¥´s¦´v§µw§µw§·x¨¸z¨¸z©»©½€ª¾«¿‚¬À…«À…ª¿„ª¿†©Á‡©Àˆ¨¿‡§À‰¦¿ˆ¤¿Š£¾‰¢¾‹¤Â¡Á Àž¿¾›¿‘›¿‘›¿‘ Ä˜¢Ã˜ Ä˜¡Äš Åš¡Æ ÆžÇŸœÆ Ç£É¥ŸÍ© Îª¡Î­ Ï­žÏ¯ ÒµžÓ·žÓ·ŸÔ¸ŸÕ»ŸÕ»žÖ½ŸÖ¿Ô¿žÕÀž×ÄŸØÇŸÙÊžØÉžØÉ×ÈÖÇœÕÆœÕÆ›ÔśӯšÒÅšÒÇšÒÇ™ÑÆ™ÑÆ™ÑÈ™ÑÈ™ÐÊ™ÐÊ™ÐÊ™ÐʘÏɘÏɘÏÉ™ÐÊ›ÐÊœÑËÐËÐËŸÒÍžÑÌŸÐÌžÏËŸÍÊžÌÉžÌÉËÈ›ÊÄ›ÊÄ›ÊÄšÉÚÈÅšÈÅšÈÆšÈÆžÌÊžÌÊžÌÌžÌÌžËΞËΞËΜÌÎÍÑ›ÌЛËÏ™ÊΘÉΗÊΙÊÑ™ËÔÏÚ›ÏÚ›ÏÜ›ÐÞœÏàœÑáœÑáœÑážÑâžÑâžÑâžÑâžÑäžÑæžÐçžÐçœÎçÏèÏêžÐëŸÐîŸÐð Ññ Ñï¤Óñ¥Ôò¥Öô¨Ù÷©ÚøªÛû©Ûü©Ûü¦Ûý¦Úÿ¦Úÿ¦Úÿ¥Úÿ¥Úÿ¤Ùÿ¤Ùÿ£Öÿ¥Öÿ£Ôÿ¢Óþ ÑüŸÐûžÎüÍû›Ëù›Ëù›Ëù›Ëù™É÷—Çõ•Åó”Äò”Åð•Äð•Äò•Äò•Äò•Äò—Ãô—Ãô›Å÷›Å÷œÅùžÆúŸÇû Èü¡Éý¡ÊÿžÇýÆüœÄøžÃø Ãù¤Åû©Æþ­Çÿ²Æÿ´Ãüµ¾õ¶¸ë´®Ü«žÉžŒ²˜ždwtXdhJV^@J[U28P-3O,0I),D$'A"'?"'&$C'$H' N(T)"[,&`-)e.+f/,f.-^((Z&(U$'Q#&O"'O")N#,O$+N$(N$&N$&M#%L"$L"$L"$K!#L"$L"$L"$L"$L"$L"$L"$L"$O''N$%N"!Q##X(&\+'^+(]*'\)(Y'&T&(P#&J!%E!#C $A!$D$'D$'E%(F&)F&)E%(D$'C#&C#&C#&C#&C#&D$'D$'D$'F#'I"%K!#J "L"N #O!$P"%S"&V%)U$(Q#&N #K!J GF!E!%A$<!: :"6!1/... / / / 1"1"/ - .!0#1"1#2$2#3#1"1 0 !1!"4$$7''8((8((:**=--?//A11@00?//>..>..<,,9))6&&4$$2""2""1!!9&(9&(9&(8%'7$&5"$2 1/14" 7%#9'#:($9'#9'%7''6&&5%%5%%7%%8&&9'':((<()<()>(*>(*=')<&(=$'<#&9 $8#8%7"6#5 437!669!>&&A)'A))?'%:%"8# 5 2113 4!0/.- ,!,!-".!,+++,.0 1!5!#5!#5!"4 !4 !3 32 .,+))))*&%&&()-, -!!-#"+&#+*&-/*/4.271683783;74<74?75>96>:7?;8=<:??A>=B=;@=8><5<:3::089/7J71J71L92N;4P>4R@6TB6UC5TB4SB2RA/RA/TC/WF2[K4^L6_K3`J3`J5`J5`J5`J5`I7`I7_H8^G7\E5ZC3YB4XA3YB4XB5V@5T@5T@5S?4S?4R>3R>3R>3O;0N:/L8-K7,K7,L8-M9.N:/L8/J8.I5,F4*F2)E3)G3*G5+G3*E3)F2)F4*I5,K9/O;2Q=2YC5[F5]H7aJ8cL:fM9gL7hL6fJ4hJ2iI0jK/nL1pN3sQ6uQ7uO8sM6qK4qM5sO5tP6qN2mK/lM0oP3qT4sV6sY6x^;eBƒkGˆpJŠtKŽxOŽ{P‘€R—‰X¡•a§ i¯ªp¬¬n¬®m«°mª±m©³nª´o©´p¦²p§³q¨´t§¶u©·yª¸zªº|ªº|©»©½€«¿„«À…«À‡©Á‡¨À†§¾†§À‡¥À‰¤¿ˆ£ÀŠ¢¿‰¡¿‹ ¾Šž¾ŒŸÁÁ‘Á‘œÂ“œÂ“šÁ”šÁ”™À“ŸÂ˜ Ã™ Ã™¡Äœ Åœ¡ÅŸ ÆŸžÆ¡›Å¡Æ¤É¦žËª Í¬ Ï¯ Ï¯Î° Ò·ŸÔºŸÓ¼ŸÓ¼ŸÕ¾ŸÕ¾ŸÖÁŸÖÜÒÂÓÃœÕÆÖÇ×ÉœÖÈ›ÕÉ›ÕÉ›ÓÈ›ÓÈ›ÓÈšÒÇšÒÉ™ÑÈ™ÐÊ™ÐÊ™ÐÊ™ÐÊ™ÐË™ÐË™ÐÍ™ÐÍ™ÐÍ™ÐÍ–ÎÍ–ÎÍ—Í͘ÎΘÎΙÏÏ›ÎÏœÏКÌÍšÌÍšÌÍšÌÍ›ËÍšÊÌšÊÌšÊÊ—ÈÅ—ÈÅ—ÈÅ˜ÉÆ˜ÉÆ˜ÉÆ˜ÈȘÈÈÍÏÍÏÍÑÍÑÍÑÍÑÍÑÍÑœÍÒšÍÑšËÒ—ÉЗÉÒ•ÊÒ—ÉÔ–ÊךÎÜ™ÎÜšÏß™Ñà›ÐâšÒã›Òæ›Òæ›ÒæÑçÑçÑçÑéÑéÐëÐëšÍê›ÎëœÏîÐïžÐñ Òó¡Óô¡Óô¡Òò£Ôô¥Öö§Øø¨Ûú©Ûü©Ûü©Ûþ¥Ùþ¥Ùþ¤Úÿ¤Úÿ¤Ùÿ¥Úÿ¤Ûÿ¥Úÿ¥Øÿ¤×ÿ£Öÿ¡Ôÿ ÓÿžÑþÐÿœÏþ™Ìû˜Ëú—Êù–Éø•È÷•È÷•Çø•Çø“Æõ•Åõ•Åõ•Åõ•Åö•Åö–Äö–ÄöœÇúÈûÈý Éÿ¡Êÿ¢Ëÿ¢Ëÿ£ÌÿŸÇÿžÇÿÄûÄû Åú¤Çý©Éÿ­Êÿ¸Îÿ¸Èÿ»Áû¼¼ò¸°áª›Æ”~¥ƒjˆjObbHSZ>JV8BV7?T5;O/4J*-K+.G'*C#(@!&?"'="):(6%7$7$5$4&5 )4 )4 )4 )7#,7$*7"'8"%<#&>$%@&%D'#K&S(\+$d/+i/-j.-h,,d,+]''X&'R$&N!$K!%L!(O!+Q#-N$(M#%M#%M#%L"$L"$K!#K!#L"$L"$L"$L"$L"$L"$L"$L"$P&'N$%N"!P""V&$Y'&Z('Y'&V$#U%#S%'N$&L#'F"&C &B%D!%E"&F#'G$(H%)G$(F#'E"&F#'F#'F#'F#'E"&E"&E"&E"&H!$H#G"G!H"K#M %O &P!'P!'R!'Q &N%L#J!F C#>"976"5"0,- - -"."."."/$.$,"-#-!-".#/"0#.#3 $/"- -.0""4&&7))6&&8((;++>..?//>..=--<,,>..<,,:**7''5%%4$$4$$4$$9'':((:((;)):((8&&6$$5##12 3!5#!6$"7%#8&$9'%5%%4$$3##2""4""5##5##6$$:&';'(<&(=')<&(;%';"%:!%7$7$6%5"3"2117"557<#&?''?&)>&&<'&9%$5! 20012 0 /. ,, , -!-!++++,.0 1!3!3!3 4 !4 !5!"5! 4" /.-+**,,'&%%%&()-!!,"!+&#+*&.0+1605:4:<7;<7>:7?:7A97?:7>:7>:7<;9?=@?=B?:@=8><5<<2:<19;08H5/I60K81M:3O=3Q?5SA5SA3TB4RA1Q@.Q@.SB.WF2[K4_M7`L4aK4bL7bL7bL7cM8cL:cL:aJ:_H8]F6[D4ZC5YB4YB4XB4V@3T@5S?4S?4S?4S?4R>3R>3P<1O;0M9.K7,K7,L8-M9.N:/L:0J8.H6,E3)D2(D2(D2(E3)E3)D2(B0&A/%B0&D2(F4*G5)S@1XC2[F5^I8bK;cL:eL8fK6gL7gK5hJ2iI0iI0lJ/nL1oM4rN8pK8nI6oK5qM7pM7mK2hH/lL3mN2nP4nP4mR4qV8x]?|dB„nIƒpH…rJˆwLŒ~Q”ˆXŸ“a¤g®©q­«p¬¬n¬®m¬±o¬³o¬³o«µp¦±m¦²p¨´t©µu«·y«¹{¬º}¬¼~ª¼€©½€ª¿„«À…©Á‡¨À†§¾†¦¿ˆ¥À‰£ÀŠ£ÀŠ¡¿‹¡¿‹ž¾Œž¾Œ¿œÀœÂ“ÔėžÅ˜›Ä˜šÃ—œÂ™œÁ˜À˜À˜œÀšœÀš›ÁœšÂšÂŸ›Ä¢šÆ¥›È§žË¬žÌ¯ŸÍ°ŸÍ°Î± Ñ»ŸÓ½ŸÓ½ ÓÀŸÔÀ ÕßÖßÕÅ›ÑÜÒśӯœÔÉ›ÕÉ›ÔËšÓÊ™ÒË›ÒÌ›ÒÌšÑËšÑË™ÐË™Ð˘Ï̘ÏÌ™ÐÍ™ÐÍ™ÏÏ™ÏÏ™ÏÑ™ÏÑ™ÏÑ™ÏÑ•ÌÏ–ÍЗÌИÍјÍÑ™ÎÒ›ÎÒ›ÎÒ˜ÉΘÉΘÉΘÉΙÈΚÉÏšÉÏšÊΖÆÈ—ÇÉ—ÇÉ—ÇÉ—ÇɘÈʘÈ̘ÈÌÌÒÌÒÌÔÌÔÌÔÌÔÌÔœÍÔœÎ×›ÍÖ™ËÖ—ÉÔ”ÈÕ”ÈÕ•É×”É×™Îà—Ïà˜Ïã™Ðä™ÐåšÑæšÒéšÒéœÒìœÒìœÒìœÒìœÒîœÒîœÑðœÑð—Ìì˜Íí™Îî›ÐòÒôŸÔö Õ÷¡Öø Òó¢Óô¥Ö÷¦Øû¨Úý¨Úý¨Úý¦Úÿ¤Øý£Ùÿ¤Úÿ¤Úÿ¤Ùÿ£Úÿ¤Ûÿ¤Ûÿ¥Úÿ¦Ùÿ¥Øÿ£Öÿ¡Ôÿ ÓÿŸÒÿžÑÿšÌý˜Êû•Çø“Åø’Ä÷”Æù—Éü™Ëþ”Æù”Æù”Æù–Åù–Åù–Åù–Åû—ÅùœÊþžÉþŸÊÿ Ëÿ¡Ìÿ£Ìÿ¤Íÿ¤Ìÿ Èÿ ÇÿžÅþÄû¡Æû¤Éþ«Ëÿ¯Ìÿ¹Ïÿ¹Èÿ»Àú½ºï¹­Ý¤“½‡n•pVs\DTW=FQ7@P5#*<#)9(7&8%6%6%5 %4!'5!*5!*5!*7$*8#*9"(;"&=#&A$&C'&H&$N&W(`.'h1,m10l/.h,,b*+[')W&)P#&K!%J&K 'O!+P",N$(M#%M#%L"$L"$K!#K!#K!#L"$L"$L"$L"$L"$L"$L"$L"$Q'(N$%N"#O#"R$$W'%V&$U%#S#!Q##Q%&O%'M$(G#'D&B%D!'D!%F#'G$(G$(G$(F#'E"&F#'F#'F#'F#'E"&E"&E"&E"&F"&G #F"F!F!G"J $N!&M %O &P!'S"(R!'Q &O$J$B#: 8 6 5!2!. ++"+"+"-"-$-$-$-$,#*#,!+",#,#-"-"1 &/",*+/!!4&&7))5%%7'':**=--=--=--;++:**>..<,,:**8((6&&5%%5%%5%%8&&9'';))<**<**;))9''8&&3!!3!!3!4" 5#!6$"8&$9'%4$$3##2""1!!2 3!!3!!4""8$%9%&;%';%':$&9#%:!$9 $7$6%5$4#2!1 007$5 46 :!$>%(>%(;%'<(':&%6"!200111!0 . -,-!-!."++++,.0 1!12 23 5!"6"#6"!7#"2 /-,,+-. * )'%$$$%-!#-#"+&#+*&.0+2717<6<>9>?:@<9A<9B:8@;8>:7>:7<;9?=@>7>>4<=3;<19<19H70H70H7/I80K:0M<2O?2P@1TD5RB2QB/SD1XI4ZK6YJ3XH1bN6dN7eO8fP9eO:dN9bL7`J5eN0O<.O<.O<.P=/P<1N<2K:0J9/H7-G6,F5+G6,G6,C2(B1'@/%>-#=,">-#?.$A/#I7)M:+S@1XE4_J9bK9cL:eL8iN9iM7gK5hJ2gI1iI0kK2nK5nK7pM:qN;rOM4:N38O26N13L/1J,.G*,E(,?$)<#)8!)8!+7 (7 &7!$7 &7"'6#)7$*7#,8$-7")7")7 &:!%>!%A#%C%%I&"Q&Z*d/'l2.n21l/.e))^&'T "P"$L"$J!%J!'L!(O")P#*M#'M#%M#%L"$L"$L"$L"$L"$J "J "K!#K!#L"$M#%N$&N$&L"$M#$P$%Q%$Q%$Q##P# O"R$$P$#N$%L$%K$'H$(H#*G$*G$*G$*G$*G$*F#)F#)F#)F#)B%B%B%B%B%B%B%B#F"&F"&E!%G %F$F$F#F#F"J$M&O (O&L#IC=8 8 6 4"0!/!.!/&-%+%*#)")")#*$,%*$+$*$*",$.&/ %/ %.$.!.!0 #2"%5%&7'(7''7''8((9));++=--=--=--D44C33A11>..;++8((6&&5%%>,*@,+A-,B.-@,+>*);'(9%&<():&'8$%6"#6"#9%&<()=++7''6&&4$$2""3!!2 116"#7#$9#%:$&:$&8"$8"7"3$2%1$/"/ / 0!03"4!5"6 #7!$8"%9#%9#%;'(8&&4""1.---.....- ,+--,++,./12 23 5!"6"#6"!7#"4" 3!2 / -,**-!#+!(!%#!!"* ,"!-(%-,(.0+05/6;5<>9AB=C?;D<:A<9>:7=96;:8?:>AED:B@5=;.78+4H70H70H7/I80K:0M<2O?2P@1TD5RB2QB/TE2XI4ZK6YJ3YI2bN6dN7eO8fP9eO:dN9bL7aK6eN0P=/P=/Q>0Q?1O=1M<2K:0I8.H7-H7-H7-H7-E4*D3)B1'@/%?.$?.$@/%@0#D2&G5'L:,R?0XE6^I8aL;dM;gN:gL7fK6fJ4gH3gI1gI1iI2kJ9kJ9mI9kJ9jI8iH5gF3fE2eF2gH3hI4iK3gK3jN6pT%+:#+8#*7"+7")7 &7!$7"'7"'7$*7$*7#,8%+7")8!':!%<"%@"$C#$E&$L&#W+"^,!d/'h1,i/-e+*`%'Y"%S!$P"%L"$J!%K"&M#'N$(Q$)N$&N$&N$&M#%M#%M#%M#%M#%J "J "K!#K!#L"$M#%M#%N$&L"$M#%P#&P$%P$%P$#O#"N"P$#N$%L$%K$'J#(H#*G"*F#*H%,G$*G$*F#)E"(E"(D!'D!'B%B%B%B%B%B%B%B%D $D $D $B#C#B"B"D"ABH"J$K$L#J!G"A"=#9!7 2 / . - -$+#*$)#*#*#+%+&+%+%*$)#*$+#,$-%-#-#.#.!0 #3#&6&'7'(8((8((9)):**;++<,,<,,<,,E55D44C33@00>..;++:**;))?+*@,+A-,A-,@,+=)(:&'7#$:&'9%&6"#5!"5!"7#$9%&;'(:((8((7''6&&6$$5##3!!3!!5!"6"#8"$9#%9#%8"$8"7"3$2%0#/"/ / 0!02!3"4!5"6 #7!$8"$7#$8&&6$$4""1///// / .--,,,. -,+*+,-0023 4 !6"#7#"7#"6$"5#!4" 2 0,*), "* ' #"! !(+! +&#+*&,.)/4.6;5=?:CD?FB?FA>G?=C>;A=:@<9>=;?:>A.!?/"C3&I7)O=/VC4]H7aJ8bK9eL8fK6fL5fJ4eI3dH2eF1iI:hH9gF7dD5cC4bC1bC1bC/bC/dE1fG3fG2fG2iJ5oP;rV>v]?vbAydE{hGlKƒsO‹{WƒYœ‘d ˜g©¢l±¬t¸´w¹¸xº¹x¸¹uµ¸u´¹v´¹w´»xµ»{³¼}³½€²½®½‚¬¾„«¾†©¾†©½ˆ¦½‡¦½‰¤¼Šžº‰ºŠž»‹Ÿ¼Žž¾Ÿ¾’ŸÀ•À–œÁ–œÁ˜›Áš˜Á™˜À›–Àš–Àš—¿œ˜½›š½œ›¾žœÁ Â¡Ä¥žÅ¨žÆ«È¬œÈ­É°Ê³žË´ÍµÍ·Î¸Ð½Ð¿žÑŸÒÞÒÅÑÄ›ÑÄšÐ×Ì–ËÔËÅ”ËÅ’ËÅ’Ëőɯ‘ÉÆ“ÎÌ”ÎÏ”ÎÏ•ÏЖÐÑ—ÑÓ—ÑÓ˜ÒÔ–ÐÔ–ÐÔ—ÑÕ—Ð×—Ð×–ÏÖ”ÍÔ“ÌÕ”ÍØ“Ì×“ËØ’ËÖ“ÈÖ’ÈÔ“ÇÕ’ÆÓÄÒÃÐÁÐÀοϑÁÏ’ÁÑ“ÃÑ’ÂÎ’ÂΓÃÏ”ÄЕÅÓ–ÆÔ—ÇÕ—ÇÕœËÛœËÛœËÝÌÞÌÞÌÞÌàžÍá›Ëß›Ëß›Ëá›Ëá™Ëâ™Ëä˜Ëæ˜Ëæ˜Ëè–Ìè—Ìë˜Íí™ÏñšÐò›Ñó›Ñó™Ñô™Ñô™Ñô™Ñô™Ñô™Ñô™Ñö™Ñö•Íò•Íò–Îó˜Ðõ™Ñö›ÓøœÔùÓùžÒú¡Òû Ôü¡Õý£×ÿ¤Øÿ¤Ùÿ¥Úÿ£Øÿ¢Ùÿ¢Ùÿ¢Ùÿ Úÿ Úÿ Úÿ Úÿ¢×ÿ¢×ÿ¢×ÿ¢×ÿ¡ÕÿŸÓÿÑÿœÐÿ™Íÿ˜Ëÿ˜Ëÿ˜Ëÿ—Êÿ–Éÿ–Éÿ–Éÿ”Èÿ“Çÿ’Æÿ”Èÿ˜Ìÿ›ÎÿšÍÿ™Ìÿ›Íÿ›Íÿ›ÍÿžÍÿžÍÿŸÎÿŸÎÿ¢Íÿ¡Çÿ ÄÿŸÆÿ¤Ëÿ¨Íÿ§ÊÿªÈþ²Çü¹Æû¶¹ì©£Ñ‘…­xe…cLfY@UU=KN9BJ7;G27G14J14K33J01H./F,/E+.B',>%+:#+8#,7!-7"+7!$8"$7#%7#%7$(8%)9$+9$+9"*9"($>$>$>$>$>$>$>#A"A"A">!@!? ? >9:?BF H!J#I%F&A$=#73/-,) ) ( ( )#+%-'.(,')&(%'#)#)#*"+#,#,!/"1$3 $6#'9&*;(*:**:**;++;++;++:**;++<,,E55E55C33B22@00>..=-->,,?+*A,)B-*B-*@+*=('9$#7"!9#%7!#5"4!4!5"7!$7#%9''8((9))9)):((8&&6$$4""4 !5!"7!#8"$8"$8"$9 #8#2#0$/!. --./0 012 3 4 !5!"6"#5"$4!#3 "1 1 1 1 2!1 0.,+,./ /!. ,**)**//124 !6"#7#"8$#9&"8%!7$ 3!1,*)* )&#! %((# '&")+&-2,6;5>@;AB=D@=D?9=?:@B;BB;BC8@?4<;.78+4H70H70H7/I80K:0M<2O?2P@1RB3RB2SD1UF3XI4ZK6[L5\L3eQ8fP8fP8eO7eO8dN7cM8cM8fP;eO:dM;cL:aJ:`I9`I9_J9[E7ZG8ZG8ZG8[H9[H9[H9\I:XE6WD5UB3TA2TA2TA2UB3UB3TB4QA2P>2N>/N<0L<-N<0M=.L:.J:+I7+G7(F4(D4%D2&C3&>.!>.!?/"A1$G5)N<.TA2ZE4]F6_H6cJ6fK6gK6gK5eI3dH3fI9eH:dD5aA2`@1_?0`A/aB0`A-aB.cD0bC/bC.eF1kL7mQ9sY>v_@zbF{fG}hK~kKƒpO„tP‚X–‹]£™f¯¨q¸²v»·x»·w¸·t»¼z»¼zº¼{º¼{·¼|¶¼|´¼€³½¯½‚­¼ƒ«¼†ª½†©»‡§»†§»ˆ¤¼ŠŸ»‹ž»ž»Ÿ¼ž½‘Ÿ¾”ž¾•œ¿—œ¿—›¿™šÀ›˜À›˜À—Á—Á˜Àž˜½œš½š¿žœÁ¢›Â£Ä§ÅªœÇ¬žÊ¯žÊ±Ê³œÌ´Í·žÎ¸Î¸Î¹œÏ¼Ð¿ÐÁžÑœÐÛϙϘÎÁ•ʕʓÊÄ“ÊÄ‘ÊÄ‘Êđɯ‘ÉÆÊË‘ËÌ’ÌÍ“ÍΔÎЖÐÒ—ÑÓ—ÑÓ–ÐÔ—ÑÕ—Ð×˜ÑØ—Ð×–ÏÖ”ÍÖ“Ì×”ÌÙ“ËØ“ËØ‘ÉÖ’ÇÕ‘ÆÔ‘ÅÓÄÒÃÑŽÂÐÀÏŽ¿Î¾Î¿Ï‘ÀÐ’ÁÑ“ÂÒ“ÂÒ“ÂÒ”ÃÓ•ÄÔ–Å×–Å×–Å×›ÊÞ›ÊÞ›Éà›Éà›Éà›ÉàœÊáœÊâšÊášÊášÉã›Êä›ÊæšÌçšËé™Ìë—Êé˜Êë™Ëî˜ÍïšÎóšÐö›Ñ÷œÒøšÐö™Ñö™Ñö™Ñö™Ñö™Ñö™Ñö™Ñö•Íò–Îó—Ïô˜Ðõ™ÑöšÒ÷›ÓøÓùžÑü ÑüŸÒÿ Óþ¢Õÿ£Öÿ£Øÿ£Øÿ¡Øÿ¡Øÿ¡Øÿ¡ØÿŸÙÿŸÙÿŸÙÿŸÙÿ ×ÿ¢×ÿ¢×ÿ¢×ÿ¡ÖÿŸÓÿÑÿœÐÿ˜Ìþ˜Ëÿ˜Ëÿ—Êÿ—Êÿ–Éÿ–Èÿ”Èÿ’ÉÿÇÿ’Æÿ•Éÿ™ÍÿœÑÿœÏÿ›ÎÿœÎÿœÎÿœÎÿœÎÿžÍÿžÎÿžÍÿ Îÿ¢Éÿ¢Æÿ£Çÿ¦ÊÿªÏÿ­Îÿ±Êÿ·Èü´¼í©¨Ô“ˆ°{jŠgSl\EWX=LSBG!H$I (E&?$8 40-,)''( *$-'/)1!+*')&(%&#'!'!(") *!-"/"1$5 '8#(;&+<',=*,<,,=--<,,:**9)):**<,,C33C33B22@00?//>..=-->,*@-)A,)B-*B-*?*)<'&8#"6! 7!#6 "4!3 23 4#4$6#%6&&8((:**<**9''6$$4""4 !4 !6 "7!#7!#7!#9 #7!$2#0"/!---..//0123 4 !4 !2!2!2!2!3 "3 "4!#4!#4!#2!.,+-/1 1!/!-+*))*./13 5!"7#$8$#9%$;($:'#8%!5"1-*()&$! #%% %$ ')$,1+5:4>@;<=8?;8?:7A97>96<85<85986<7;=8>@9@B8@A6>=2:;.78+4F70F70F8/G90I;0K=2M?2NA1OB2PC2RE2TG4VJ4XL6ZN6^P6fR9gR7fP8eO7eO7dN6dN7dN7gQ.P=/P?/N;-M<,N;-L;+K8*I8(I6(G5'C3&?1&>0%>0#B2%G5'M:+P=,VA0YB0^E1aH2eJ5eJ5eJ5eJ7dI8bF8`C5^A3]@0]@0^A/_B0\?-]@.`A-`A-`A,bC.gH3jN8qW>u[@z`G|dH|dJ{fI}hK~kJ‹yS“„Y£•f±¥q¼±yÀ¸zÀ¸y½¸vÀ½zÀ½z¾½|½¼|¼¼~»½~·½µ½‚±º°»ƒ­»†ª»…¨º†§»ˆ§»Š¤º‹¡»Ž » »Ÿ»’ž½“ž½”½”›¾–œ¾™›¿›šÀ›˜À˜Àž˜Àž—Àž˜¿ š¿ š¿ ›À¡Á¥Ä§žÅªžÆ«È­ŸË²ŸË´ŸÌµÍ·Ì¸Î¹Î¹Î»›Î½œÏ¾œÏÀœÏÀ›Ï™ÍÀ—ÍÀ–Ì¿•ʕʔËÅ”ËÅ“ÌÆ“ÌÆ“ËÈ“ËÈÉÊÊË‘ËÌ’ÌÍ“ÍÏ•ÏÑ–ÐÔ–ÐÔ–ÐÔ–ÐÔ—Ð×—Ð×—ÐÙ•Î×”ÍÖ“Ì×’ÌØ‘ËÙ‘ÉØÈ×ÇÖÅÔÄÔŽÃÓŽÁÒÀÑŒ¿ÐŒ¿ÐŽ¿ÐŽ¿ÐÀÑÁÒ“ÄÕ“ÄÕ“ÄÕ“ÄÕ”Å֔Ĩ”ÄØ”ÄØ˜ÈÞ˜ÈÞ˜ÈߘÈß™Éà™ÉàšÊášÉãšÈâšÈâ›Èå›Êæ›ÊèœÊëËì›Ìí™Éí˜Êí™ËðšËóœÍõ›Ï÷œÐø›Ðø™Îö™Îö™Îö™Îö™Îö™Îö™Îö™Îö—Íó˜Îô˜Îô™ÏõšÐö›Ñ÷›ÑõœÒøžÑüžÑþŸÒÿŸÒÿŸÔÿ Õÿ¡Öÿ¡ÖÿŸÕÿŸÕÿ×ÿ×ÿ×ÿ×ÿœ×ÿ×ÿ ×þ ×þ ×þ ×ÿŸÕÿÓÿ›ÑÿšÐÿ—Ìþ–Ëÿ–Ëÿ•Êÿ•Éÿ”Èÿ”Èÿ”Èÿ’ÉÿÇÿÇÿ“Êÿ—ÎÿšÑÿ›ÐÿšÏÿ›Îÿ›Ïÿ›Ïÿ›Ïÿ›Íþ›Îý›ÍþžÌþ£Êÿ¤Èÿ¤Èÿ¥Éÿ­Íÿ³Ñÿ¸ÍÿºÈù±´áŸ™¿ƒv”o\reN^`FQV=CN59I68E56E24F23I43H32H00E--D+.B),@'-<%-9$-8$/8$08$-7#%8$%8$%9%'8%)9&*:%*:%*<%+>%)B%)D&(I'(M))R,+V-+_/+^-(Z+%V)$T&&R&'Q%&R%(Q$)P#&O"%O#$N%#O&"P)$Q)'O%&O%'P&(P&(Q')R(*R(*R(*K!#K!#J "J "J "J "J "J "L$M %L"$M#%M#$K##J""H"!H"!G! G #D $D&C&C(B(B#)@#(@!'= %<#9!9 7:!9!:!9!:!9!:!:!; = ; 9875454467<?B H&E$A";630-)'')*"-%0'1!+)&(')$'"&!& (!(!+ -!0$3%7 (9"*;$,<%+<)+=--?//=--:**9));++=--A11@00?//>..=--;++:**<*(?,(A,'B-(B-(@+(=(%:%$7"!6 "6 "4!3 2!2!2#2"2!2""6&&8((:((9''6$$4""6"#6"#7!#7!#7!#7!#9 #8"%1 /.-,,-..//01234 !0/"0 #1!$2"%3#&4$'4$'4$%2"#/ ,,-0 3 "3#1#/!-,,,,0124 !6"#7#$8$#9%$<'$;&!9$5"1-*('$# !$$%$ ')$+0*493<>9;<7>:7>96@86>96<85<85:97948;4;>4<>4<=2:fO=eN/Q>/Q>/Q>/O<-O<-P=.P=.P=.O<-M:+L:,I9,E7,B4)@2'B2%D4'H6(K8)P;*Q<+U>,Y@,]B/_D/_D/`E2^C2^B4]A3\@2\?/\?/]@.]@.[>,\?-_@,^?+^?*`A,eF1iJ5mQ9pV=u[Bx^Ey_Fx`FzbHzeF‰uR’€X£’f²¥q¿²{ĺ}Å»}ûzļ{Á¼zÁ¼|À¼|¾½}½½¹½€¸½ƒ²º¯º‚­º…«¹„©¹ˆ§¹‡§¹‰¤º‹¡»Ž » »’ »’ ¼”ž½”ž¼–½˜›½š›½šš½œš¿š¿ž™ÁŸ™À¡™À¡›À¡œÁ¢Á¥Ä§žÅªŸÇ¬žÉ®ŸÉ± ÌµŸÌµÍ·Í·œÍ¸œÍ¸œÍºœÍºšÍ¼›Î½›Î¿›Î¿™ÍÀ—˾”ʽ“ɼ•ÊÀ•Ê”ËÅ”ËÅ”ÍÇ”ÍÇ”ÌÉ•ÍÊËÉ‘ËÌ‘ËÌ’ÌÍ“ÍÏ”ÎДÎÒ•ÏÓ”ÎÒ•ÏÓ–ÏÖ–ÏÖ•Î×”ÍÖ“ÌÕ’ËÖÊÖÉ×È×ÇÖŽÆÕÅÔÄÔŽÃÓŽÁÒŽÁÒÀÑŒ¿ÐŽ¿ÐÀÑÁÒÁÒ“ÃדÃדÃדÃהĨ”ÄÚ”ÄÚ”ÄÛ”ÄÛ”ÄÛ•ÄÞ—Æà˜Çá™ÈâšÉåšÉ噯ãšÇæ›Èç›ÈçÊëœÊìËížÌðÊñ›Ëó›Ëó›Ìõ›ÌõœÍøœÍøšÍøšÍø™Îö™Îö™Îö™Îö™Îö™Îö™Îö˜Îô˜Îô™Ïõ™ÏõšÐöšÐö›Ñõ›Ñ÷ÐýžÑÿžÑÿŸÒÿžÒÿŸÔÿŸÔÿžÔÿžÔÿžÔÿœÖþœÖþœÖþœÖþ›Öþ›×üŸ×ü Øý ×þ ×þžÕþÓÿ›ÑÿšÐþ–Ëý–Ëý–Ëÿ•Êÿ”Èÿ”Èÿ”Èÿ‘Èÿ’ÉÿÈÿÇÿ’Éÿ–Íÿ˜Ïÿ™Îÿ˜ÍÿšÎÿšÎÿšÎþ™ÍüšÍüšÍü™ÌûœÊû¢Êþ¦Éÿ¤Èÿ¥Èÿ­Ìÿ´ÍÿµÆú´¼ë©¨Ð–Œ®|j‚jScdJU^CHS9:H0.K99G77G55H66J65J54H00E--C*-@*,>'-;&-9%.6%/7%17&07$&8$%8$%9%&9&(9&*:%*;&+?&*@%*C&*G'*L*+R+,V..Y0.]-)\,(W*%T(%P&'O''P()Q')P&*Q$'P$%O#"O# M$M&N' N$%N$&O%'P&(Q')R(*S)+S)+K!#K!#J "J "I!I!I!I!L$M %L"&M#%L$$K##I#"H"!F F C!C#B$B%A&@&>%= %<$;#9!8 768 8 8 8 8 8 8 9 :::75333333257;=D"C!B">!962/,+)))!+#.%/()$&%'"&!% &!(!*!, ."2%5(7 (;!*<"+:#);(*=--@00>..:**9))<,,@00A11@00?//=--;++:**8((:(&?,(A,'B-(C.)B-*?*'=(';&%7!#7!#6 #5"4#3"2#1!2!1!!4$$6&&9''9''7%%6$$:&'9%&9#%7!#7!#7!#9 #8"$0/-,,,--./01234 3!!-/"0 #2"%4$'4$'4$'4$'6&'4$%2"#0 !0 !0 !2""3#$5 %4&2$1#0 0 0 1!4 "5!#5!"6"#7#$8$%9%$9&":% 9$8#4!2.+)%#  $&!'&"(*%+0*2719;6;<7>:7?:7A97?:7>:7>:7<;9715818:08:08;.79,59)37'1F70F70F8/G90I;0K=2M?2NA1M@0PC2TG4VI6VJ4XL6\P8aS9hT;hS8fQ6eP5dN6eO7fP9gQ:gQ:hR;iS>jT?jSAhQ?gP>eP=eP?bO>aN=`M<^K:\I8[H7[H7YF5XE4WD3UB1UB1UB1VC2VC2YD3XC2VA0T?.S>-S>-S>-T?.P;*Q<+S>-U@/U@/U@/S>-Q>/J<1H;2G9.E7,F6)G7*I7)K8)K6%K6%L5#M7"P7#Q8$T9$U:'U;*V<-X<.Y=/Z?.Y>-Z=+Z=+[>,\?-_@,]>*]>)_@+cD/hI4fJ4jN8oS=qW@rXAs[Cv^DwbE~jIˆvNš‰]­l»¬u¶zĹ{Ä»zÄ»xüxûzÁ¼|¾½}½½¼½º½„±¹€°¹‚¯¹…«¹„©¹ˆ§¹‡§¹‰¥¸‹¤»‘¢»“¡»”¡»”Ÿ»•»•»—œ¼—š¼™š¼›š½š¿žš¿ ™À¡šÁ¤šÁ¤Á¥žÂ¦Ä©ŸÆ« Æ­¡É¯ Ê²¡Ë³ ÌµžË¶œË·œË·›Ì¹›Ì¹™Ì»™Ì»šÍ¼šÍ¼šÍ¼šÍ¼˜Í½–ʽ“ɼ‘Ǻ“Ⱦ”ÉÁ’ÉÓÊÄ’ËÅ“ÌÆ”ÍÇ”ÌÉ’ÍË‘ÍÍ‘ÍÍ’ÎÎ’ÎÏ’ÎÏ’ÍÑ’ÍÑ’ÍÑ’ÍÑ“ÎÔ“ÎÔ“ÎÖ’ÍÕËÓÉÔÇÓÇÕÇÕÇÕŽÆÕÅÔÄÔÄÔŽÃÓÂÒÀÑÀÑÀÑÀÑÁÒ‘ÂӔĨ”ÄÚ”ÄÚ”ÄÚ“ÃÙ“ÃÚ“ÃÚ“ÂÜ‘ÀÚ‘ÀÚ“ÂÞ•Äà—Æâ™Èä›Êè›Êè™ÆåšÅç›Æè›ÈéÉìžÊíŸËðžËòŸÌóÍõÌöœË÷œË÷šÊøšÊø˜Ëö™Ì÷™Ì÷™Íõ™Íõ™Íõ™Íõ™Íõ™ÍõšÎõšÎõšÎóšÎó›Ïô›Ïô›Ïô›ÏöÐýÏÿÑÿÑÿÑÿžÒÿÓÿÓÿžÔÿœÕÿœÕÿœÕÿ›Öþ›Öþ›Öþ›×üŸ×üŸ×úŸ×üŸÖýžÕþœÒþšÐþ™Ïý–Ëý•Êü•Êÿ•Êÿ”Èÿ”Èÿ“Çÿ‘Èÿ“ÊÿÈÿÈÿÉÿ”Íÿ•Îÿ•Íÿ“Ëþ™Îÿ˜Íÿ™Íý˜Ìû—Ëú—Ìø–Ë÷™ÉùžÆú¥Èÿ¦Éÿ¨Èÿ¬Éÿ°Æÿ©¹í¡¨Ö”µ‰|˜xcvhNY]BGV<;Q83L5/N<:I;:I99K97L87J65G21C.-@*,?)+=&,;&-9%.7&07%17&07$&9%$9%&9%&9&(9&(;&+;&+@'+B',E(,H(+N*,T-.X00]10^.*]-)W+(S*(O)(L((N'*N'*Q'+R%(P$%N"!M"K#J$K%L#!M#%N$&O%'P&(Q')R(*S)+K!#K!#J "J "I!H H GL$L$K!%L"$K##J""H"!H"!CCB B"A#A$@%?%:$8$7#7#6"5!5!4 4 4 4 4 4 4 4 6:::75311/./0347;>AA B"?";!6 30 .+***+ ,#'"&#%"%"& '!*!+".$0%5&8): ); ); ):!'9&(<,,@00?//;++:**>..C33D44C33B22?//=--:**9)):(&?*%B+%D,(F.*F.,D,*B**A));"%;"%:!%9 &8'7&6%3"4!#3##4$$6&&9'';));))<**?+,=)*;%'9#%7!#7!#9 #7!#0.,+**+,.//012 3!4" .!/$1 &3"(4$'4$'4$'3#&7'(6&'5%&5%&4$$4$$4$$4$%7"'6!(5 '4&4$4$5 %6!&8$&8$&8$%8$%8$%8$%8$#8%!8#9"6!3 1.+)#"  $(# *)%*,',1+05/572561841941;319418418416534.24-46,46,47*36)26&05%/F70F70F8/G90I;0K=2M?4N@3L?/PC2UH7VI6VI6XK8\P:bS-Q>-S>-Q>-O:)O<+T?.TA0WB1UB1VA0S@1M=0J)\@+aE0eI4_D/dI4iN9lQ*,<',:'-9%07%17%18'18$&:$&:$&:&(:%*;&+;&-<%-A(.D',F(*K)*R**W.,\1+a1-a0,_.*Z-*T+)P*)L)'J&&L%&Q)*P&(P$%N"!L K I!H!L"#L"$M#%N$&P&(Q')R(*S)+K!#J"#I $I $H#G"F!G!K#L$K!%L"$L"$J""H"!G! BB B"@!@#?#?#<$8"6"6"6"5!5!5!5!4 4 4 4 4 4 4 6: 9975310,,/135586;=@#>$<#8"5 3"1!.*((('!##""%& ) ,!."0$4%6': ):!'9(6%7%%;,)@1.?0-;,):+(?0-D52H96G85E63B30>0-;-*9+(9*%=*$@,%B.'E0+E0+D/*B-*A,)=%%<$$<#&;"%:!%8#6!38$%7%#8&$9'%;)'=+)@,+A-.A-.?+,='):$&8"$7!#9 #7!#/-,+**+,//0/ 2 1"2#2# .!0%2!'4#)4%(4%(2#&2$$6((6('6('6('7''6'$5$$7$&8$&7#%6"$6"$7#$9%':&';'(;'(:&%:&%9%$9%$9$!9$!8 7630.-+#! $)%$,+',.+,1+.3/350++),+'0**0+(0**1,)0,+0,+2,04*24*25*24)14'03&/2%.H92H92H:1I;2I;2J<1J<1JhT;hTfQ-Q@.TA0TC1VC4UD4UB3SB2Q@0PA.O@-P?-O>.N=-M<,M<,H7'H5&H5&H5&G4%G4%F3$H3"E0H1K4"N7%O8&P9'O8&O8&R;)R;)S<*T>)T>)U?*V@+V?-YB2[D4]F6`I9cL:fO=iS>iU=iU:n[=wdD„rN“[¢h®œtµ¤x´¢t·¥uºªy½¯~À´„Á·†¿¹‰½»‹¸·‰µ¸‹³¹±¸Œ®·ŒªµŠ§´‰¢³‰£¸ ¹‘ ¹‘Ÿ¹’ º• ¼–Ÿ½™ž½›œ»›˜¹š•¸š“µš”¸œ•¼¡™À¥œÃ¨¡È­¡É®¢Ê°£Ë±£Ë³¢Ê²¡È³žÈ´¡Êº Ê¼ Ê¾ Ê¾ ÊÀ ÊÀ ÉÁŸÊÁšÈ½™É½˜È¼–ȼ•Ǽ•Ǿ”Å¿“Æ¿”ÇÂ’ÆÂÄÂÃÁÂÃŽÄÄÆÆ‘ÇÉ’ÈÊ’ÇË’ÇË’ÇË’ÇË’ÇË’ÇÍ’ÇÍ“ÈГÈГÇÒ“ÇÒ“ÇÒ“ÇÒ“ÇÒ“ÇÔÅÓÅÔÄÔŽÃÓÂÔŒÁÓŒÁÓ‹ÀÒÁÖÁÖŽÂ×ÃØÄÚÄÚ’ÄÛ’ÄÛ“ÂÜ“ÂÜ•ÃÝ•ÃÝ•ÃÝ•Âß”ÁÞ•ÁÞ”ÀÝ•ÁÞ–Âß—ÃàšÃá›ÄâœÅãšÅå™Æç˜Æç—Åç—Åç˜Æê›ÉížËòŸÌó¤Ïù£Îø¢Íú¡Ìù ËøžÉöžÆ÷œÈ÷›Ëü˜Ìü˜Êû˜Êû™Ëü›ÍþžÎþ ÐÿŸÏýžÎüœÌúšÊø›Êø›ËùžÍùžÏú›ÐüšÐüšÐüšÐüšÐüšÑúšÐüšÑú™ÐùšÑúœÓüžÕþžÕþœÖþžÕþÔýŸÕÿžÔÿÓÿœÒÿšÐÿ™Ïþ˜Íÿ˜Íÿ—Ìÿ–Ëÿ–Ëÿ–Êÿ•Éÿ”Èÿ”Èÿ”ÈÿÆÿÆþŽÇþŽÇþŒÈüŒÈüŒÈüŽÇü’Ëÿ’Éÿ“Èþ“Æÿ“Æÿ•Æÿ˜Æÿ™Çÿ™ÆýÈÿ£Çÿ§Æÿ®Âýªµë™™Ë†~§zkŠr_scMYU@EO;VFFXFFWEEUCCQ??K8:E24B/3@+2>+1<(1;'2:&1;'3;'3<(3;%(<#&<#):#+;$.<$1>&3A'2L.8M.4Q-1T,,Z-(_.'c1&f2'd/)^+'X'#S&!R&#O(#M'$K%"I#"K##L$%M#$O"%M!"KIJ !K!"M#%O%'P&(O%'M$(L#'H#G #F$F$E#E#D"E"H K!L"K!#L"$J"#H!"H!"D "C!A"= ;9868 6 7!7!6 4323456 53105555444200/./.--+.38 ;"%;"%9 $7"1 .,'$"!" $' %#!&*/"2#5 %8#(:#):$':#)9%'7(%8+%;,'>/*@1,A2-B3,B3,J;4J;4H;3F91B8/?5,<2)0'A0&B1'C2*D1*D1*D1*D1*C/(B.'@+&>)$>&"<$ ;#;#<'";(";($;($<)%=*&@+(A,+>)(>)(=('<'&9#%6 "31/. -+**+ + .%.#- +-,. /! 2#2%0%0!&0$&1'(4*)4,*5-*7.)8/*:/)=0*>/*?-)>,(;)%:($9'#9'#:($<+$?,(A.(F1,C.)@+&@+&@+&>)$;#6: : !9"7!3 0 - *!& %!%"" ! %!"'#"(&'**(+-,+-*)-,(-)+-,,,*-+,/+*0*,/))1(+1(+2).3(03(02'/1&.0%-0%-/$,G81G81H:1H:1I;2I;2J<1J<1L>1OA4SE8VH;WJ:YL<]P@cSCeS=hTiU=gS;eQ9dP8cO7aM5aM5`L4_K3]I1\H0ZF.XF.VF-UE,TD-SC,RB+P@)O>*O>*Q@.Q@.Q@.RA/RA1RA1SB2SB2RA/RA-Q@,Q@,P?-O>,O>,N=+K:*J9)I8(H7'G5'E3%D2$D3#B/F1H3 K6#L7$M8%L7$L7$O:'O:'P;(R=*S>+T?,U@-VA0V@2WA4YC5\F8_J9aL9cN;dP8eQ9iU>NBBPDD]MM]KK[IIVDDQ>@K8:F37D15?+4>*3<(3;'2:&29%1:&2;%1=$*=$*<"+;$.;#0=%3A'4C'3G)3L)/Q*-W+(_.'g1%m3%o5'i0)c.*^)%Z)$Y)%W,&S*&P)$K#!K##N$&N$&P#(P!'P%M"N"#M#$N$&O%'O%'N$&K"&J!%G %G %D $D $C%C%B$D"H K L !K!"K!#J"#H!"G !C!A >!<98656 6 7!7!6 53234555310333333330//.--,*((.36 "7!#9 $6 #1 /,'$"!!!$&'''*, /!!0 !2"#5"$6#%8$&9%'8&&7(#8+#<-&?0)B3,D5.D5.E7.K=4J=4J=4G=3E=2C;0@8-@6,>2&?1&@2'@2'B1'B1'C1'C1'@.$@.$@,#?+"@)!?( ?( ?( >*#=)"<'":% 9$9$:%":%";&%;&%;&%:%$8"$5!21/. , +*!*!+#+#-&,#+#*+,+ . 3 $3 &1 &1"%1%'3)(4,*4/+4/)70*:1*<1+?2*?0)A0)@/(;-$:,#;*";*"<+#>-%B/(D1*F2+C/(@,%?+$B+%A*$=& :": 9 8"5 1". ,"(!& %"&"#  !$ &"#%#$(&')))****,+)+*)+*)+*+++,*+.*+/)+1(+3(,3(,4)/3(03(02'/1&.0%-/$,/$,F70G81G90G90H:1H:1I;0I;0L>1OA4SE8UG:WJ:YL<\O?aQAdT=eS;fT,N=+N=-O>.Q@0RA1SB0SB0RA/RA/Q@.Q@.Q@.P?-N=-M<,L;+J9)H7'F5%D2$D3#B/C1D2F4 G5!G5!G5!G5!J8$J8$L:&N<(P>*Q?+SA-TA0S@1S@2UB3VC4XE4ZH4[I5\J2_M5aP6fU9l[=scB{kJqP‡uQ”Y–ƒYš‡]ŒaŸg¡”j¢–nŸ˜n§¢z¨¥|«©‚­­‡°²‹°µ±·‘±·‘«³Ž©³©´’ªµ“¨¶•§¶•¥¸š£¸™¢»žž»›¹˜¹ž™½£Á§ Ç¬¤Ë°¢É®£Ê¯£Ë±¤Ì²¤Ì´£Êµ Ê¶ŸÈ¶ŸÈ¸žÈºžÈ¾žÈ¾žÇ¿ÈÁžÇÃÈÁ›É¿šÈ¾™È¾˜Ç½˜Ç¿—ƾ•ÆÂ•ÆÂ”ÆÃ“ÅÂ’ÄÅ’ÄÅ‘ÄÇ‘ÄÇ’ÅÈ“ÆÉ”ÇË”ÇË”ÇË”ÇË”ÆÍ”ÆÍ”ÆÏ”ÆÏ“ÅΓÅΓÅГÅГÄÒ“ÄÒ“ÄÒ‘ÅÒÃÔÄÖÄÖŽÃÕŽÃÕŽÃÕÁÖÁÖÃÙÃÙÃÛÃÛÄÜÄÜ‘ÅÝ‘ÅÝ”Æá“Äâ“Äâ”Ãá“Âà’Áß’Áß“Àß•Âá–Áá—Ââ˜Ãã™ÄäœÅåÆæÆæÈêœÈë›ÇêœÈëžÈîŸÉï¡Ëó¢Ìô¥Ì÷¥Ì÷¥Ê÷¤Éö£Ç÷¢Æö¤Æö Æ÷šÈú—Éú˜Èù—Çø˜Èù™Éú›ËüœÌý™ÇøšÈù›ÉúËüËüžÌýžÌýœÌüœÐÿ›Ñý›Ñÿ›Ñý›Ñÿ›Ñý›Ñÿ›ÑýšÐþ›ÑýœÒÿœÒþœÒÿ›ÑýšÐþ™ÏýœÒÿœÒÿ›ÑÿšÐÿ™Îÿ˜Íÿ—Ìÿ—Ìÿ•Êÿ•Êÿ•Éÿ”Èÿ”Èÿ“Çÿ“Çÿ“ÇÿŽÅþŽÅýŽÅýÆýÆýÆý‹Çý‹ÇýÈÿÆþÄþÂý‘Âý”Âþ–Âÿ—Ãÿ›Èÿ Éÿ£Ãü¢¸ñž«à“—Ç|w h]_QjYHZN>HH9>I:=NBDSIJXLLhVVeQR`LNYEGR>@M9;I49G27@+4?*3='3;%1:$09#/9#0:$0<%/<%-<%/<%/=%2?'4C)4E*3H)/M+,U+,^/)f2'n4(s5&v7(k/'f,(b(&^)%\)&Z*&V)&S'$O#"N%#Q%&S%'S%(U$(T#'S"&P$%N$%O%'N$&M#%L"$I $H#G %G %D $D $C%C%B$D"H K J "J "J "I!"F"F"B"@!= ;9755556 7!6 532334442101///////-,,,++*)*)-03 5"6 #7!$1 /-)&%#$ %% % (# .&$1)'2('2&&.""0""0""1!"2"#6#%7$&8&&8)&9,&*#;&!8#5 4337"!7"!7"!7"!5!310.-, +) ) *"+#+$*!)!))+*-2"%4!'3#&3$'4(*5+*7/-91.92,:3-=4-?4.B5-B3,D3,C2+?0)>/(<-&<-&?.'B1*E4-H70G4.D1+B-(@+&@+&?*%?'#=%!986 3/ ,* && %"&"$!!"$ '!#(""($#)%$)(&((&((&((&((&((&)(&,('.((0'(2()3)*4(,4)/3(02'/1&.0%-/$,.#+.#+F70F70G90G90H:1H:1I;0I;0M?2OA4RD7TF9VI9YL<[N>_O?cSgU=fT*R@,S@/R?0S@2TA2TA2UB3VC2WE1XF0\J2]L2_N4cR6hW9m]'1>)2A*4F-3J-2O/2V0/^2/g5.o6+u7*y6&y5(n/(h+(c'&a'%^(&[(%W%$S#!R%"R$$U%%V%(X&)X&)Z%+Y'*R&'P&'O%'N$&L"$J "G"F!G %G %D $D $C%C%B$D"H HI!I!"H !F E!B ? <;98652456 6 6 5433333221/........,,,,,++*,*+,/3 5"7!$1!/ .*)) ) !(""*%"'"% *%"4,*91/9/.6,+.$#."".""0""1##3#$4$%5%%7)&:-'>0-C60H:7J?9NA;MC:RE=PF=OE*#<(!9$6!310034444 20/.-, *) ) *"*")") ''(*)-4$'4$'5%(5''6**8.-;1/<41=60>71@70B71E80F70G6/E6/D5.B3,@1*?0)B1*E4-I81K:3L93I60G2-C.)@+&>)$>&"=%!8 64/,)'%$$!&"%"#$ %!)#%("")##)##)%$'&$'&$'&$'&$'&$)%$+%%/&'1'(3')4(*5)-4)/3(02'/1&.0%-.#+-"*-"*G81G81G90H:1H:1I;2I;0I;0OA4OA4QC6SE8VI9YLgU=gU=fT,P@0P@0P@0P@0P@0P@0P@0P@0I9)I9)I9)I9)J:*J:*J:*K:*D1 D2C1B0B0B0B0B0D2E3G5!I7#L:&N<(P>*Q>-R?0S@2S@2TA2TA2UB1UC/VD.ZH2[I1]L2_N2cR6gV8kZ>m]<{iE|jD~lF‚pJƒtM‡wS‰{VŠ}Zƒ`†c’Šf–l˜’pš”rœ–tœ–t¨¦›¢˜} ™}¢žƒ§¦Š­°•°¶œ¥²˜£³˜¢¶›¡¹Ÿ¢¼¡¢À¦£Ä©¤Æ­¥É¯¦É±§Ê´¦Ìµ¦Ì·¤Ë¸¡Ê¸ É¹Ç¹Ç»œÇ½šÈ¾šÇÀ™ÈšÇĚǜɛɿ›É¿›É¿™ÈÀ˜Ç¿˜ÆÃ–ÇÖÇÄ–ÇÄ•ÇÈ•ÇÈ•ÆÊ•ÆÊ”ÇÊ”ÇÊ”ÇË”ÆÍ”ÆÍ”ÆÍ”ÆÏ”ÆÏ”ÆÑ”ÆÑ’ÄÏ’ÄÏ’ÃÑ’ÃÑ’ÃÒ’ÃÒ’ÃÒÄÒÃÖÃØÃØÃØÃØÄÚÄÚÄÚ‘ÅÝ‘ÅÝ‘Äß‘Äß‘Äß‘ÄßÃÞÃà”Ç䓯å‘ÄãÂáŽÁàÁá‘Ââ’Ãã–Äå–Äå—Åæ™ÆçšÇè›ÈéœÉêÈê¢Èí¢Èï£Éð£Éð¤Éó¦Éó¦Éó¦Éó§Èõ§Èõ§Æõ§Æõ§Æõ¦Åô¦Äö¤ÅøœÆø˜Æ÷—Åö–Äõ–Äõ–Äõ—Åö˜Æ÷”Âó–Äõ™Çø›ÉúËüËüœÊûšÊú›ÍþšÎþšÎÿšÎþšÎÿšÎþšÎÿšÎþ™ÍÿšÎþšÎÿšÎþšÎÿ˜Ìü–Êü•Éû—Ìþ—Ìþ—Ìþ–Ëÿ–Ëÿ–Ëÿ•Êÿ•Êÿ“Çÿ“Çÿ“Çÿ’Æÿ’Æÿ‘Åÿ‘Åÿ‘ÅÿÃüÃüÄüÄüŒÄýŒÄýŒÄýŒÄýÄýŽÂüÀû¾ú‘¾ù”¾ú–¾û˜¾ü›¿ý¤Âþ¨¾÷¡¯à•˜Å‚~£i`UIaJ?PH=KF?GJCJULQ^UXe[\j[^mZ\hTV`LNVBDO:?J5:H3:G29@+2?*1=(1;&/:$0:$0:$0:$0>(4>(4>(4?*3B+3D-3J03N00T20\50g82q:3x<1~<0:+~8.s2,m0-j-*g,(e+)a*'\&$W$!W&"W%$X%$Y%'\%(]&)^',\(,T&(P&'O%'L"$J "I!F!F!G %G %D $D $C%C%B$D"F!H I!H !G"D C@=::875423345 5 5 4332110000--------,,-----,-+,+.1!4 "6"$10/,+,"!-%#,'$,'$'# %!*2-:52:206.,-%#.$#.$#/##0$$2$$3%%3%%6+)9.*>31E:6K@>OFASHDTKDVKETKDRI@OF=LB9G=4C90@6,B6*A5'@2%?1$?1$@2%C3&D4'K9-K9-K9-K9-J6+G3(E1&C/&<(!:&8#5 32223344310/-,+*(()!*"(!'&&(**-5%&5%&6&'7))8,,:0.=31?53@72A83D93E:4H;5H;5H92G81H92E80B5-@3+A2+D5.H92K<5O>7N=6K82F3-A.(<)#;&!:% 6! 41-*'&$$$!&"%"#$ '!+"%) !)!)!'"'"'# '# ($!)%"*%"-%#0&%2&&5''7'(7(+5(/4)12'/1&./$,-"*,!)+ (H92H92H:1I;2J<3J<3J<1K=2PB5OA4OA4RD7VI9YLhV>dR:eS;fT.N>.O?/O?/G7'G7'H8(I9)J:*K;+K;+L=*F5!F4 E3C1B0B0B0B0C1D2F4 G5!I7#K9%M;'M:)P=.P=/Q>0Q>0R?0S@1TA0TB.XF2XF0ZH0]L2`O5eT:hW=kZ>s`@ta@vcByfE{kIoMsP„uT‹|[Œ}^€`ƒc„d…e…e’„gš‰o™…l•ƒk“ƒj•‰q“z£…¥¥‹«¯–ª²šª¸Ÿª¼¢«¿¦ªÁ§¨À¦¤À§§Ç¯§É±¨É´¨Ëµ¨Ë·¥Ê¸£Ê¸ É¹ŸÈºžÈ¼È¿›É¿šÉÁšÉÚÈÅšÉÜÉœÊÀœÊÀ›É¿šÉÁ™ÈÀ™ÇĘÆÃ–ÇÄ—ÈÅ—ÉÊ—ÉÊ—ÈÌ—ÈÌ•ÈË”ÇË”ÆÍ”ÆÍ”ÆÏ”ÆÏ”ÆÏ”ÆÏ”ÆÑ”ÆÑ“ÅГÄÒ“ÄÒ“ÄÓ“ÄÓ“ÄÓ“ÄÓ‘ÄÕÃØÃØÃØÄÙÄÚÄÚ‘ÅÛ‘ÅÝ’ÆÞ’ÆÞ’Åà’Åà‘Äß‘ÄáÃàÃà‘ÆåÄãÂáŽÁàŽÁàÃâ’Åä”Å啯æ—Åæ˜Æç™ÇèšÈéœÉêÊëžÉì¡Çî¤Çï¥Èð¦Éñ¦Éó¥Èò¥Æñ¥Æñ¦Åó¦Åó¨Äô¨Äô¨Äô¨Äô¨Äô¥ÅöÅöšÆõ™Åö˜Äõ—Ãô˜Äõ˜Äõ—Åö˜Äõ—Åö˜Æ÷™ÇøšÈù›ÉúšÈù™Éú™Ëþ˜Ìþ˜Ëÿ˜Ìþ˜Ëÿ˜Ìþ˜Ëÿ˜Ìþ—Êÿ—Ëý˜Ëÿ™Íÿ˜Ëÿ—Ëý–Éþ•Éû•Êþ•Êþ•Êþ•Êþ•Êþ•Êÿ•Êÿ”Éÿ’Æÿ’Æÿ’Æÿ‘Åþ‘ÅÿÄþÄþÄþÃüÃüÄüÄüŒÄýŒÄýŒÄýÄýÃýÁü‘¿û‘¾ù“½ù•½ú—½û›½ü›¹ù¢ºö¡²è–žÍ††¬unaWoRGXG?NGAKIFOQNU\W]f]bi^bl]`eRVbNPZFHR>@K6;G27E07D/6@+2?*1=(1<'0<&2<&2='3>(4?)5?)5@+4B+3F-3J03O11T20W2,`5.k92v=4}>5€>2;1~:1t50o40m2.l2.l20i2/d.,a+)[(%Z'$[%%\$%\$%]%&a&*^'*T&(P&'M#%K!#I!H G"G"G %G %D $D $C%C%B$D"F!G G F E!A?=987653221245 6!5 44321///00........-.../ / 0!/!/ ,--/1!4 "5!#2 0./ 0"0%!1(#1)&-(%($!%!*-*72/6.,2*(-%#.&$0(&2('2('1'&0&%/%$5+*9/-@44G=;NDBSKHWOLYRLYRJXOHVMDRI@MC:H>5C90@6,B6*A5'A3&@2%@2%C5(G7*I9,N<0O=1P>2O=1N:/J6+G3(E1&=)";' 9$7"6!5 5 6!5 5 6! 5 4 20.-,*)(()!)!' '&'(*+ ,!4&%5%%5''7)(9.,<1/?53A83B94C:5F;5G<6J=7I<6J;4H;3K>6H;3D7/@3+?2*C4-F70I:3O>7P?8O>7K82D1+>+%:'!9&"7"!4 0+(%#"% %"%"$!!"& ) !((('''"(# )$!,'$.&$0&%2&&4&&6&'9&(7'*6)04)12'/0%-.#+,!)+ (*'I:3J;4J<3J<3K=4L>5L>3L>3QC6OA4OA4RD7VI9YL*K:&H7#H7#I8&J9'I9)I9*J:+J:+K;+L<,L<,L<,H9&H9&H9&H9&I:'I:'I:'J;&J9%H7#F5!C2B1B1B1B1B1C2D3E4 F5!H7#I8$I8&J9)J8*K9+L:,M<,O>.P?-P?+SB.TD-UE.XH/[K2_O6cS:eU;iX:jZ9k[:n^=qa@vfEzjI}lN‚qSƒrV„sW…tX†uY…tX„sW†rWŠrZŠoZˆoY‡qZˆv`}fƒmˆqž™ƒŸ¡‰§«”­µ²¼¤±¿¦¯¿¥«¿¦­Æ°«È²ªÊµªÊµªÉ·©Ê¹¥Ê¹£Éº É»ŸÉ½žÉÀœÊÀ›Ê›Ê™ÊÄ›ÊÄÊÞÉÀœÊÀ›É¿›ÈÁšÇÀ™ÇÄ™ÇÄ–ÇÄ—ÈÅ™ÉËšÊÌ™ÊΘÉÍ–ÇË•ÆË”ÆÏ”ÆÏ”ÆÑ”ÆÑ”ÆÑ”ÆÑ”ÅÓ”ÅÓ”ÅÓ”ÅÔ”ÅÔ”ÅÖ”ÅÖ”ÅÖ”ÅÖ’ÅÖÂ×ÃÙÃÙÄÚ‘ÅÝ‘ÅÝ’ÆÞ’Åà”Çâ“Æá“Æã’Åâ‘Äá‘ÄãÃâÃâÄäŒÃâ‹Âá‹ÀàŒÁáÄä’Çç–Èé•Çè–Çè—Èé˜Éê™ÊëœÊìËížÊí Çî¢Çñ£Èò¤Éó¦Éó¥Èò¤Åð£Äï¤Åò¤Åò¦Åó¦Åó¨Äó¨Äó¨Äó¥Åô ÆõœÇô›Åõ™Ãó™Ãó™Ãó™Ãó™Åô›Å÷šÆ÷™Åö™Åö™ÅöšÆ÷›ÆùšÈú˜Êÿ—Êÿ—Êÿ—Êÿ—Êÿ—Êÿ—Êÿ—Êÿ”Çþ•Èý–Éÿ—Êÿ—Êÿ—Êÿ–Éÿ•Èý“Èþ“Èþ“Èþ“Èþ”Éÿ”Èÿ”Èÿ”Èÿ’Æÿ‘Åþ‘ÅþÄýÄþÃýÃýÃýŽÂûŽÂûŒÃüŒÃüŒÂþŒÂþŒÂþŒÂþÂÿÁü’¾û“½ù•»ù˜¼øš¼ùž¼ú›´ôž±ì–¢Öƒ†±qlŒdZrYN_ODRF@JGFNMMWXVab_hhahj]djZ]\GLZCIT=CN7=H19E.6C,4B+3@)1?(0>'/>'/?(2@)3A*4B+5@+4@+4B+3E,0K.0P1/U2.Z3.a6/h91q<4w>5y=5w8/s3*n/(f/*d/+d/+g2.j51j51f3/c0,_)'^(&]%$\$#^$#^$#a%']''S%%O%&L"$J "H H G"H#G %G %D $D $C%C%B$B"E!EF"E!D @=:865321111245 6!6!5 5 320.../0.-------.../0 0 1!1!/"-"-"-"0!2#3 "4!#11/ 0!1$4'!5*$5,','#($!&"($!-)&/+(.)&+&#+&#-(%1,)5-+5-+2*(/'%,$"4,*80.@67H@>PHFUPLZUQ]XRZVM[TLXQGULCQG=LB8I<3G:1B6*A5'@4&@4&A5'D8*I;.L>1M=0O?2Q?3R@4Q?3N<0J8,H6*A-&@,%=(#;&!9$8#8# 8# 9$#9$#8#"7"!5!30/-,*)''( )!' '&')+,!-"3%"4'&7)&9.*=2.@51C84D95E:4G<6H=7J=7J=7I<6I<6LA;H=7B71=2,<1+?2,C60E82I:5L=8N?:N<8G51A/+<*&;)%8$#4" 0*&##"% %"%"# !!#'''&&'( +#!,$"0(&2('3''5''6&'8%':&(9&*6)04)12'/0%-.#++ (*')&J;4K<5K=4K=4L>5L>5M?4M?4QC6OA4N@3QC6VI9YLgW>bR8aQ7`P6^N4\L3[K2YI0YI0WG0UE.Q@,L;'J9%H7#I8&I8&F6'G7(G7(H8)I9*J:*J:*K;+J;(I:'I:'H9&H9&G8#G8#G8#L;'J9%G6"E4 C2B1C2C2C2C2D3E4 E4 F5!G6"G6$E4$F4&G5'I7)J9)L;+M<,M<*Q@.Q@,RA-TC/WF2[K4^N7`P7cR8dS7eT8gV:kZ>p_CtcGwfJyeJyeJ{gN|hM|hM{gL{fK|dL~bMcNdO€gQ€jU‚mXo[€q\ˆ}iŽˆr˜‚ª¨“³µŸ¸¼¥¹¾¨µ¿§±Ä°¯Æ²¯È³®É¶®É¶¬É·¨É¸¦È¸¤È¼¡É¾ ÊÀŸÊÁËÁœËÜËÅœËßÊÁŸÊÁžÉÀœÊÀ›ÈÁ›ÈÁšÇÄ™ÇĘÆÄ—ÈÅ™ÉËšÊÌšÊΘÉÍ–ÇË•ÆË”ÆÏ”ÆÑ”ÆÑ”ÆÑ”ÆÑ”ÅÓ”ÅÓ”ÅÔ•ÆÕ•ÆÕ•Æ×•Æ×•Æ×•Æ×•ÅÙ“ÆÙÁØÃÙÃÛÄÜ‘ÅÝ’ÆÞ’Åà“Æá”Çâ”Ç䓯ã’Åä‘Äã‘ÄãÃâŽÃãŽÃã‹ÂáŠÀâ‰ÀߌÁãÄä“Èê–Ëë•Çê•Çè—Çë˜Éê™ÉíšËìËïŸËðŸÆï Çð£Èò¤Éó£Èò¤Çñ¢Åï¡Äî£Åò¤Åò¤Åò¥Äò¦Åó¦Åó¦Åó¥Æó¢Çô ÆóžÄóÃòœÂñšÂóšÂóšÄôÇùœÆøšÄö˜Äõ—Ãô˜ÄõšÅø™Çû–Èý•Èÿ•Èÿ•Èÿ•Èÿ•Èÿ•Èÿ•Èÿ’Åü“Æý•Èÿ–Éÿ—Êÿ—Êÿ—Êÿ–Éÿ’Çý’Çý’Æÿ“Çÿ“Çÿ“Çÿ”Èÿ”Èÿ‘Åþ‘Åþ‘ÅþÄýÃýÃýÃýŽÂüŽÂûŽÂûŒÃüŒÃüŒÂþŒÂþŒÂþŽÂþ‘Áÿ“Áÿ”½û•½ú˜¼ø™¼ö½øŸ¼öž²ñžªæŽ”Æuu›_YsWL]QGRJCKEBIHHPOQ][[gebmibjh[bfU[U@GT=CO8@K47p92i/+`&"W"T%Q&T'"Y,&a2,c4.c2-a0+^+(_)']'%\$#]#"^""_##]%&S%%N$%K!#I!H H H#I $G %G %D $D $C%C%B$B"E!EE!C!A>:8653111111235 6!6!5 5 320.-./..........//0 1!2"2"2#-".#.#/"2#2!3 "3!!110!1"3$5( 9*#8-'-%"'# &"'# )%"*&#)$!'"+&#.)&2-*50-50-2-*-(%)$!4+,901>88GAAPKHWSP\YT\\TZWNZVKYUJWQETLAQG;OB9L@4B6(A5'@4&@4&B6(F:,L>1OA4L1Q?3SA5SA5Q?3N<0L:.E1(C/(A,'=(#;&!9$8# 8# ;&%;&%:%$9$#6 "30/,+*)''( )!' ''(*,-" .#3%"3& 5'$7*$9.*=2.A62C84D93E:4G<6H=7K>8J=7J=7G<6MD=H?8B92=2,:/);0*?4.C60C60I:5N?:N?:H94D2.@.*>,(8&$3$!/($""#$!%"%"#  !%(''%&)+#!-%#3)(4((6((7'(9&(9%':$'8%)8)04)12'/0%--"*+ ()&(%K<5K<5K=4L>5L>5M?6M?4N@5QC6QC6SE8TF9VI9WJ:XK;YL;]N7_Q7`R8bT:cU;dVfX>i[Ai[Ai[Ai[Ai[Ai[Ai[Ai[Aj\Bi[Ai[AhZ@gY?fX>fX>eW=fV.M=-M>+O@-QB/SD1TE0VG2VG2XH1ZJ1^M3aP6dS9eT:hT;hT;lV>pZBu_HycKzdLwaIu]ErZBuYDuYDuZGw\Ix_KycN{fQ{iSp\„u`‹i˜y¨‰¶®™À¹¦ÂÁ¬½Æ³µÄ±®¿¬­À­¯Ä³°Ç·«Æ·¥Äµ¬Ì¿¨ÌÀ¤Ê¿¡ÉÀžÉÀËÁžËÄ ÍÆŸÊÁŸÊÁŸÊÁŸÊÁŸÊÃÊÃÊÇœÊÇËÉËÉÊÍšÊÌšÊΙÉÍ™ÉÍ—ÈÍ’ÄÏ’ÃÑ“ÄÒ“ÄÒ”ÅÓ”ÅÔ•ÆÕ•Æ×—ÈÙ—ÈÙ–ÆÚ”ÄØ“Ã×’ÂÖ‘Á׎ÁÖ‘ÃÜÄÜÃÞÃÞ‘Äß‘Äß‘Äá‘Äá“Æã“Æå“Æå’Äå’Äå‘Ãä‘ÃäŽÃãŒÁã‹ÁãŒÂæÃåÃèÅç‘Åê‘Æè–Èí•Çê•Åë•Åé•Åë˜ÈìœÉðŸËò›ÅíœÆð Çò¡Èó¡Èó¡ÆòŸÄðžÃï›ÀêžÁëŸÂì¢Ãî¤Åð¥Æñ§Èó§Èõ£Åò¡Æò ÅòŸÄñžÃðœÂñ›Áð˜ÁïšÂó˜Âò˜Âô—Áó–Áô•Àó•Àó“Áõ”Ãû“Äþ“Äþ”Åÿ”Åÿ•Æÿ•Æÿ•Æÿ”Åÿ”Åÿ•Æÿ•Æÿ–Çÿ–Çÿ—Èÿ–Éÿ‘Åþ‘Åþ‘Åÿ‘Åÿ‘Åÿ‘Åÿ‘Åÿ‘ÅÿÄþÄþ‘Åþ’Æÿ’Æÿ‘ÅþÄýÄýŽÂûÃüÃýÄþÃÿŽÁÿŒ¿þŒ¾ýŒ¼ü‘½ü–¾ü—¾ù™¼ö™¹ò›¸ðŸ¸ñ ¯ê¤Û…†´c_€OF[NDORHPOIMURYXX`\^j`bnc`kaYd]PY]IRU>HT:CO5@J09F,5D*3C)2C)2D*3C)2C)2C)2C)2E,2G-6H/5F-1J01P22T20W1.]4.h93n=6q?8q<6m84d1-\+'S#!KDC B!D!G"K$O& T)#X($S"U"Y#![#"^$#^$#^"![#"P""L"#K!#J "H GE E H!&H!&E!%D $C%B$A#A!E!#D "C#@!>:9742211///111111114!3 0.-,---,,,++++1 1 2!2!1 0/.1 &.#*+.!0 !0 !./ 0!4% 8)$;,%=.'?.&;.&3+(,'$'"% '"(# '"% '"-(%3/,62/51.2.+1-*0,)5//;57C?>IHFONJUVQ]^Xcd\__U\\P[WL[UIYQDVM>QE9L@2B6(B9(D;*G>-J>.I=-H<,H<,M@0K>.M=.O?0RB3SC4Q?1O=1J6-F2+A,'?*%@+&@+&>)&<'$?*)?*)?*)=('9#%3.*-,*)'''( ' '( *-!0"!0%#1&"6+%:0'=2,>4+>1+>1+?2,A4.B5/H;5NA;QD>NC=LA;LA;MB8C:5A83@72@72A62D95H:7K=:L>;J<9E63>/,:+(7(%3%"/ +)&"!!  "$&'(()(),"!/%$0&%4((4((6((6&'8%'9%'9#&7$(2#*.#+-"*,!)+ ()&(%(%K<5K<5L>5L>5M?6M?6M?4N@5QC6QC6RD7TF9VI9WJ:XK;YL;]N7_Q7`R8bT:cU;dVfX>i[Ai[Ai[Ai[Ai[Ai[Ai[Ai[Aj\Bi[Ai[AhZ@gY?gY?fX>fX=gX;eV9bS6`Q4^N4^N4^N5^N5ZJ1VF-P@)L<%K:&J9%G6"C4!@3#?1$?1$@2%A3&C6&E8'F9(I<)I<)I='J>&J>&J>&J>&J>&L=(K<'J;&H9$G8#F7"E6!E6!H9$G8#G8#F7"E6!D5 C4C4!F6'F6)F6'G7(G7(H8)H8)H8)K;,K;+M=.N>.P@0RB2SC3TE2TC/VE1YG1\J4_M7`N8cN9cO7iS>lV?pZCs]Fw^Hv^Fs[CqYAqVAqVApWCrYEt[Gv]IwaLxbMwbO|gT‚p\Ž|hžŒx±Ÿ‹Á°žÇ¼¨¿À®ºÁ¯¹Â¯¹Ä³ºÇ¶¸É¹µÊ»±É»­É»«É½©Ê¿¦ÌÁ£Ë¡ËÁŸÊÁŸÊÁ ÉÁ ÉÁŸÊÁŸÊÁŸÊßÊÃÊÇÊÇžÊÉËÉœÉÌœÉÌ™ÉÍ™ÉÍ™ÉÍ—ÈÍ“ÃÏ“ÄÒ“ÄÒ”ÅÔ”ÅÔ•ÆÕ•Æ×•Æ×—ÈÙ—ÇÛ–ÆÚ•ÅÙ”ÄÚ’ÂØ‘Á×ÁØ‘ÃÞÃÞÃÞÃÞ‘Äß‘Äá‘Äá‘Äã“Æå“Æå’Äå’Äå‘Ãä‘Ãä‘ÃæÂåŒÀå‹ÁåŒÂæŽÂçÃèÄé‘Åê“Åê”Æë–Æì—Çí˜Èî˜Èî›Èï›ÈïœÇñšÅïœÆðÇñÇñŸÆñŸÆñžÅðÄïžÃížÃí¡Äî¡Äî¢Åï¢Åï£Äï¤Åð£Äï£Äñ¢Ãð ÂïŸÁïœÁïšÀï›Áò™Áò˜Àó—Áó–¿ó•Àó”¿ò’Àô“Âú‘Âü‘Âü’Ãý“Äþ“Äþ“Äþ”Åÿ“Äþ”Åÿ”Åÿ”Åÿ•Æÿ–Çÿ–Çÿ–Çÿ‘ÃþÄþÄÿÄþÄÿÄþÄþÄþÃýÄþ‘Åþ’Æÿ’Æÿ‘ÅþÄýÃüŽÂûÃüÃýÄÿÂÿŽÁÿ¾ÿ½ÿŽ»þ¼û•»ú—»÷šºõ›ºñž¹ð¡¶í¡ªã–˜ËywŸ[UqJARJ@HNEJNIMQPUUU]Y[g``la]k_U`[KUXDMT=GS9DN4?I/:E+6D*3C)2C)2F,5E+4E+4E,2F-3H/5I06K05M02O1/S1/W1.]2,d5/k:5r=7o:4k62a0,X(&M#$F B >;9 !C"G$M&!R'!R" U$ X%"[%#\$#\$#\" X" P""L"#K!#J "I!H F!E H!&G %D $C#B$A#@"@"D $B !A"= <986211//...111111114!20.---,,,++++++01 2!2!2!1 /.1!$/".!1!"4$%4&%2$#/!0!1"4% 8)$>-&@/(C0*@1*5+)/'%*" ( )!'"&!% &!,'$2-*51.40-2.+0,)0,)3/.954A@>HIDNOJSVOZ]T_bW[_QY[MYWJZTFYRBXL-H?.JA0L@0L@0L@0L@0NA1M@0P@1RB3UE6TD5Q?1M;/M90H4-B-(?*%?*%?*%>)&=(%?*)?*)?*)=('9#%3.+-,*)'''( ' '( +."1#"3(&4)#8.%;1'>4+>4+?2*=0(>1+@3-C60H;5NA;QD>NC=LA;LA;LC8B;5@93A83A83A83D95G<8J?;M?5L>5M?6N@7N@5N@5PB5QC6RD7SE8UH8WJ:XK;XK:]N7_Q7`R8bT:cU;dVfX>hZ@hZ@hZ@hZ@hZ@hZ@hZ@hZ@i[Ai[Ai[AhZ@hZ@hZ@gY?gY>hY2"@5#A6$H=)H=)H='I?&J@'J@%KA&L@(O@+N?*M>)K<'I:%G8#F7"E6!I:%I:%H9$F7"E6!D5 C4B3 D4%D4'D4'C3&C3&C3&B2%B2%G7*H8)I9,K;,L<-N>/O?0O?0N=-P?-S@/VC2XF2ZH4ZH4ZH2bM:dO:fQ!<; 86321/..-- -000000002 1/-,,,-++++++++01 2 3!!3!!2 112""3#$5''9+*<.-8-)4)%0%!1# 3& 6'"9*%>,(C0*G2-I629+*2('-#"* )( '&( +,)3.+2.+0,)0,)1-*1-,653@@>HJEMRLQXPU]PX`QW^NVZIUVDWTAYR?YN)$=(#>)$>)&>)&>)(>)(>)(<'&8"$3.+,+*(''( )!' (( +0!$4&%7,*9.(91&<4'@6,@6,?2)=0'?0)@1*D5.I:3M@:PC=NC?MB>KB=KB=GB:D95>3/;0,6+'2)$.""* ( $  "$&(''$$&& '/$(0$&1"'2"%3 &3#4%1$.&+ (+ (+ (+ (*'*'*'L=6L=6L>5M?6M?6N@7N@5OA6PB5PB5QC6SE8UH8VI9WJ:XK:]N7_Q7`R8bT:cU;dVfX>hZ@hZ@hZ@hZ@hZ@hZ@hZ@hZ@i[Ai[Ai[Ai[Ai[AhZ@hZ@hZ?iZ=hY:gX;eV9cT7bS6aQ7aQ7[K2WG.RB)O?&M=&J:#F6A2;- 9-!9-!9-!9-;/!<0 =2 F;'G<&H='I?&J@%KA&LB'MC(PD,RC.QB-O@+L=(I:%G8#F7"H9$H9$G8#G8#F7"E6!E6!D5"E5&D4'D4'B2%A1$@0#?/"?/"D4'D4'E5(F6)H8+I9,J9/J:-K9+L;+O<.R?0TA2UB1UB1UC/YG3YG3]H5_J5aL7dP8fR:gS;fQlS?nUAoTAsXEv[Hy\J}`NˆkY›|j¤‹w°¡Ž·¯œÆ½¬ÌÇ´ÉÆµÂó¾Â³¹Ä´·Å¸²Æº²È¼°Ê½¬Ê¾ªÊ½§È½£É¾¢ÊÁ¡Ê¡Ê¡Ê ËÄ ËÄ ÊÈ ÊÈÉÈÉÈœÉÌ›ÈË›ÈÍšÇ̘ÈÌ—ÆÎ”ÄÒ”ÅÖ”ÅÖ”ÅÖ•Æ×–ÇØ–ÆÚ–ÆÚ˜ÈÞ—ÇÝ—ÇÝ–ÆÝ–ÆÝ•ÅÜ”ÄÛ’ÄÝ’Ãá‘Äá‘Äá‘ÄáÃâÃâÂãÂã’Äå’Äå’Äç‘Ãæ‘ÃèÂçÂçÁ掿玿çÀèÁé‘Âê“Ãë”Äì”Äì—Äí˜Åî™Æï›Æð›Æð›Æð™ÄîšÃïÆô›ÄòšÃïšÀíšÀíœÂïžÃï ÅñŸÄî Ãí Ãí Ãë Áê Áê ÁêŸÀé¤Áë£Àꢿ韾ꞽ霽꛻ꚼ꙽혾ñ•½ð”½ñ“¼ð’½ò½ñŽ»ò޽õ޽õ¾ö¾ö¿÷¿÷¿÷’Áù’Áù’Áù“Âú“Âú”Ãû”Ãû’ÃýÂÿÂÿÂÿÂÿÂÿÂÿÂÿÃÿŽÂüÃýÄý‘Åþ‘ÅþÄýÃüŽÂûŽÂûÃüÃÿÃÿÂÿÀÿ޽ÿ¼ÿ¸ý¶ù‘´ô–¶ó·òž·ïœ³ç­Þ“–Ãxr˜XRnNGYKCNE?CFBCMKLPOTSS[ZXe^ZhaVd[MZVBMQ:DQ7DO5BK1>G-:D*5C)4D*5D*3F,5F-3F-3F-3H/3J15L37P35V22Y1/\31b63j:6l;7h73d3/Z('S&#I ?854!5!#1136<? D!I!!M#$Q%$T&&X(&W'%T$ P LN"!L"#L"$K!#J "J "H#H#F$E#C#B"A#?!?!= = = <986321/.---- -0 000000010.-,,--**+++,,,01 3!!4""5##5##4" 4" 8)&;,)?1.C52A62=2.6+'1&"5("6)#9*%=+'?,(D/,K31M85;++7))2$$, *('&( ,$"1)'1,)1,)/+(1-*2.+0/-672?A)&>)&>)(=('<'&:%$7!#3/,+*)('()!)!' ()!, 1"%7)(:/->3-=5*?7*B8,A7+?2)=0'>/(?0)D5.H92L=8OBJA8B=7A<6C<6C<6E<7G>9I@;JA:E:6@51<3.7.)3*%.$#+! (!%  !"$%$#!!!"",!'+ &,&-%.%/$0$/$+'*'*'*'*'+ (+ (+ (L=6M>7M?6N@7N@7OA8OA6OA6OA4PB5QC6RD7TG7VI9WJ:WJ9[O7]Q7^R8`T:aU;bVdX>eY?eY?eY?eY?eY?eY?eY?eY?g[Ag[Ag[Ag[Ag[Ah\Bh\Bj\Aj[>j[%J@%LB'MD'ND)RF.RF0RF0PD.NB,K?)G;%E9#D8"D8"E9#E9#E9#E9#E9#E8%D7'D6)C5(A3&@2%>0#=/$=/$?1&?1&@2'A3(B4)C5*C5,F5+I7+K8*M9.O<.Q>0R?0Q>/Q>-R?.Q@,SA-TB,WE/ZH2]K5^L6aO9aO9`N8`N8cN9fP;iP>h;8_2/W*'L#!J""D >; 7!5"4 "4 !5 78>!B !G #I!"K!#O#$Q%&R&%Q%$L#I GK!"K!"K!#J "J "I!H#H#E#D"B"@ ?!> > <;99875211/.-- + + -0 00000000/.---..*) ) *+ + ,,/ 0 !3##5%%6'$7(%7(%6'$@1,D50H;5I<6E:4=4-7.'2)"7,&;.(>/,?-+A,+E--K12O77>*+9)*5%&/!!,())),$"0(&/*'/*'0+(3.+51.32.894AC>KPIR\QWcUYfTZgSZfPYaJX\CXX>[U;[Q8[M3WH1QI4OH5NG4MF3NG4OH5RJ7TL9OD2LA/J=,K>-OB1RE4TG6UE6R@6L81C.)=(#;&!=(#=(%=(%=('=(';&%9$#6 "2/-**)('()!*"(!) )!, 2#&8*)=20@5/@8+B<,D=-C:+@4(=/$>-%?.&E4-F70J;6M@:MB>KB=I@;D?9C@;A@;DA:C>:D<9F>;G?4290+4-'/'%+#!("$  !"##!&$'$($*$+$-$.$.%*&)&)&*'*'*'*'*'M>7M>7M?6N@7OA8OA8OA6PB7OA4OA4PB5RD7TG7UH8VI9WJ9[O7]Q7^R8`T:aU;bVdX>eY?eY?eY?eY?eY?eY?eY?eY?g[Ag[Ag[Ah\Bh\Bh\Bi]Ci^Bl]@l]>k\=k\=iZ=gX;eV9cT7_O5\L2XH/UE,RB)N>%H8!B3 ;- 9,#8+"7*!7+8,9-:/A6$B7!D9#F<#I?$LC&MD'ND)RF.SG1TH2SG1QE/NB,K?)I='F:$F:$F:$E9#E9#E9#E9#E8%D7'D6)C5(A3&@2%?1$>0%=/$=/$=/$>0%>0%?1(?1(@2)B1)G5+I5*K7,M9.N:/N;-N;-M<,K:*L;)L;)N=)P?+QB+TD-UE.\J4[I3[I3\J4_J5aL7dN9gN:cH3hM8nR=qR>sR?vUB|\G€aM†kX•{j©’€¸¥”ò É¼«ÎǵÑÐ¾ÄÆ¸¾Æ·¸Ä¶³Ã¶°Å¶¯Ç¹¯É¼­Ë¿¦É£ËâËâËâËÅ¢ËÅ¡ËÉ¡ËÉžÈÇœÈÇœÈË›ÇÊ™ÆË™ÆË™ÆË–ÅÍ•ÄÔ•ÅÙ•ÅÙ–ÆÚ–ÆÚ—ÇÛ—ÇÝ—ÇݘÈߘÈߘÇá˜Çá˜Çá˜Çá˜Çá–Èã”Å哯å’Åä‘ÄãÂãÁâŽÀãŽÀã‘Ãæ‘Ãæ‘ÃèÂçÀèÀèÀ莿ç¾è¾è¿é“Àê”Áë•Âì–Ãí—ÂíšÅð™Â딽锽闽ꙿì›ÀíœÀðžÀð¿ï¿ïž¾íž¾í ¿í ¿íž½éž½é¡¾è¡¾è£¿ç£¿ç¤Àè¤À裼䣼䢻䟻ãºäš¹å™¸æ—¹æ˜ºê•»ê”¹í’ºí¹í¹íŽ¹îŽ¹î‹¸ïŠ¹ï‹ºð‹ºðŒ»ñŒ»ñŒ»ñ¼ò¼ò޽ó޽ó¾ô¾ô¿õ¿õŽ¿ù¿þŒ¿ÿŒ¿ÿŒ¿ÿŒ¿ÿŒ¿ÿŒ¿þŒ¿þÁýŽÂüÃüÄýÄýÃüŽÃùÂøŽÂûÃýÃÿÃÿÁÿÀÿ¼ÿºÿ‘¹ÿ´ø‘°ñ—´ð¶ï›°åŒ Ó…’¾qp’bZrSK`TN\ROVJJLJJJSSU`_ea^gc]kcXh^P_XFTRH,:E)7D(6D(6E)5F+4C(1C(/D).E*/G,1J/4L25R25X.2a04f8;k=?j<>a56T*+K##C C! A!"?"$<"#9 #5!4 8#9";#<"@#E#H%J $K#L"L"K!"I!!G!F F H I I!I!I!I!H#H#D"C!A!?> ==;87754200/.--+ + + + / 0000000//.---..)*!+",#-".#.!/"1!"2"#5%%8((:+(;,);,);,'F70I;2K>6I?6D:1>5,:1*8/(;0*@3-C41D0/A,+C)*H+/J03='*;(*8%'1!"-+,, , .$#0&%0(&1)'1,)50-841873;>7BG@MUJXcU^l[ap]bqZbpW`jQ^bG\\@]X;]T7[M2XJ0OG0NG4NG4OH5PI6RK8TL9UM:UJ8QF4OB1NA0QD3SF5TG6UE6N<2I5.A,'<'"<'"<'"=(%<'$=('<'&:%$7"!4 20.*)((') *"+#*#*!)!, 1"%8*)=20@70C=/E?/F?/D;,A5)=/$=,$>-%D3,E4-F72J=7K@;F>;F<:D:8@64>42:3-6/)0(&,$") #%   " "!"!$"&#)$+%.&/'+'*'*')&)&)&)&)&M>7N?8N@7N@7OA8OA8PB7PB7N@3OA4PB5QC6SF6UH8VI9VI8[O7]Q7^R8`T:aU;bVdX>dX>dX>dX>dX>dX>dX>dX>dX>fZ@g[Ag[Ah\Bi]Ci]Cj^Dj_Cm^Am^?m^?m^?k\=iZ;fW:dU8bR8^N4[K2XH/UE,P@'I9 C4;/#8.%7-#6,"6, 7.8/80<4!>6@8!C<"F?#IB%KD'NE(RF.SG1UI3VJ4TH2QE/NB,L@*K?)J>(H<&G;%E9#C7!A5A4!A4$A3&@2%?1$>0%>0%=/$=/$<.%<.%<.%=/&=.'=.'>/(@/'C0)E1(G3*I5*I7+I7)H6(H7'G6&G8%H9&J;&K<'J>(M>'M>'SB.TB.UC-VD.ZE0\G2`J3cJ4aF1cH3gK5iM7mN9pQK/>I-> >"!=#$<"#: !77 <#<"<$?"B#D#G%J$I!IFDBB C!D" FGGGGH G"G"C!C!@ ?> =<:65443100/.- - + + *"+ / ///////.-,,,-./ +"+$,#-$/$0%1!$1!$3#$4$%7'':+(=.+?0-?0+@1,G90I;0J=4F<2C9/?7,>7-A8/?4.E82H96H45A+-@&)B%*D).<&);')9%'4!#/,/ 1##.""/%$1'&0(&1)'4,*91/<74=>8?B;EJCNXM\hZfubkzel{dky_fsWcjKabC`[=^U6\N1XJ/NF/MH2PJ4SM7UO9VP:XP;YQ<]R>[P+$C0*C2+C4/G:4I>:I@;D<9>95A>9@?:BAGD?GD?FC>EB=@;7A<8D<9E=:D<9B:7@64>42;4.50*/*'+&#*!$%   !!$#)&,(0*/),(+ (*')&(%(%'$'$M?6N@7N@5OA6OA6PB7PB7PB5N@3OA4PB5QC6SF6TG7XH9VI8[O9]Q7^R:`T:aU;bVdX>dX>dX>fX>dX>dX>dX>dX>dX>fZ@g\@g[Ah]Ai^Bj_Cj_Ck`Dl^Am`@n_Bm`@l]@i[>gX;dV9cS9_Q6\L3XJ0WG.PB(J:!D5 >0#6B;!E>"HA$KD'LE(RF,SG/VJ2WK3VJ2SG/PD,MA)OC-NB,K?)H<&D8"A5>2=0>1!>0#>0#=/"=/$<.#<.#;-";-$<.%<.%<.%<-&<-&=.'=.'?.&A.'C1'D2(D4'D4'D4'C3$D4%E5&G7'I9)J;(H;(I:'I:%O<+O=)R=*S>)VA.ZD/]G2`G1eJ5cH3cG2dH2iJ5lM8nO:oP;xUBxWD{\J€cQ‹p_›„t¬›‹·ªšÆ¿¯Ä³ÂĶ¿Ç¸»È··È¸³Å·¯Å¸«ÉÁ©ÊçÊħÊÄ¦ÊÆ¤ËȤÊË£ËÍžÇÉÆÊ›ÆÌ™ÆË™ÆÌ˜ÅË–ÅË–ÅÍ–ÅÕ•Æ×–ÇØ–ÆÚ—ÇÛ—ÇݘÈÞ˜Èß™Éà™Éà™Èâ™Èâ™Èä˜ÊåšÉå˜Éç”Çæ”Æç“Åæ‘ÃäÂãŽÀá¿â¿â‘ÃèÂçÁéÀèÀ莿玿玿瑽ꑽ꒾듿ì”Àí•Áî—Âï—Âꔽ땾옾헽얺ꓷ甶曻î»ïŸ½ï¢¾ð¢¾ð¢¼ï¢¹ë£·é¬¾î¬¼í«¼ê©ºè§¸ä¦·â¤µà£¶à£ºã¡ºâ ¹â¹á›¸â˜·ã–·ä•·å–¸è”¸è“¸ì¸ë¸ìŽ·ëŽ·íŒ·ìŒ·ê¸ë¸ë¸ë޹ì»í»í»íŒºîŒºî»ï»ï޼ð޼ð½ñ޽õ½ý¼ÿ¼ÿŒ½ÿŒ½ÿŒ½ÿŒ¾ý‹¾ýÀÿŽÂþÃýÂýÃüÃüÂûŽÁúÂûÂýÂÿ‘Ãÿ‘Àÿ’¾ÿ¼ÿ’¹ÿ”ºÿ‘³ú’±ôš³ó ´ï—¨ÜÀqy YVqXQcRN\NMUHINHIMPQU[\ajgphbneZj^P_XFTQ=HL5?J09I/0-@2/A4.A4,F8/F:.G;/D:.@8-?9-A=2EA6?80E:4J<9I77A+.<#'?"'A$):$':&(9%'5!#0-0 !3%%/##/%$0(&0(%/*&2-)940;:5@A;?D=EMBPZO_k]jxgq€ksjr~fox]hlQccGb]@]V9YP3UK0KG.LJ3QL6UP:XS=ZT)$<'"=(#=(#; $!<'&;&%8#"6! 3100)'('()+",#,#+")+/!!6((=/.?4.GA3HB2IB2F=.B4'?.$=*#=*#B/)B/)D3,G83H=7H?8B;5<71@=8@?:DA?:6@;7C;8C;8C;8A96?74=52<4180-2*(.&$*!"& ! !  $!)$,'/)0*- ),!),()&)%'$'#%"K?1K?1L@2MA3OC5PD6RD7SF6RB3QA2P@1P@1RB3UE6[I;\L<]Q;^R:^R<_S;`T<`TdY=cXgY?hZ@i[Aj\Aj\Aj_Cj_Ai`Ci`Ai`Ai`Ai`Ai`Ak`Bk`Bm_Dk`Bk]Bg\@gY>dY=`R7]R6^P5YN2VH-NC'J.>-#?.$@/%>0%>0#>1!=0C6%B7#C8"E;"G=$I?$JC'KD(TI-UJ.VK/VK/VJ0UI/TH.SG-NB*L@(I=%F:"C7!B6 A5@3 >1 >1!>1!=0 =/"<.!<.!;- ;-";-";-$;-$;-$;-$;,%;,%:-$;/#>0%@2'@2'@2'>0%@0#C3&D4'E5(G7*H8+J:-L:.M;-Q;-P;*P9)P9'R;+X>-\B1`E2dI6cH5cF4cG2fG3iJ6kL8mN:oL9rO(4@*6D/8F/7H/5J03N13R44V75[97b95n72t72s95k62^.,Q(&K$%G%&@""= "9"7 8 77978899<<==>>??@ ? @ DFFFDDC B A!> <987651 .!,+*+++++,-./ 0!2"////////3 2/---..-+ + -./11.4%":,)>0-<1-=2.?61C82B6*>2$=6&D>.EB3B@1BC5HH5C?6F=8D63?+,;"%:!7!6!6%5 %3#0/ 1#"2'%0(%0+'0-(/,%++#,-%12*58/CHAFMEISHR^Rbpar€ovpr{huzfop^ifSc^J^XBXR:PL3IG0BA,GI3RR:WW?XV=XW;[W:]X;e^Bh^Ci]EhYDbS@[J:R@2N:/D0'F/)F.*E-)C+'A)%@(&>&$<$$;##:""9!!7!42/(%'%&')*- - - / 3#$8()=-.?1.H>5LB6MC7J>2B4)>-%@-&C0)A.'C0)D3+D5.D7/B8/B8/A81B=9C?HC@IDAHC@GB?FA>C>;C>;B=:@;8>96=85<74=53;10;//8,,3''-!#(!%#"#$!$"&"'!)#.(2",-%+%,$)#)!& '$I@/JA0L@0NB2OC3PD4RE5SF6RB3QA2P@1P@1SA3VD6ZH:\L<_P=]Q;^R<^R<_S;`TdX>dY=cXhX?hZ@i[Aj\Ak]Bi^@i^@h_@h_@h_>h_>f`>f`>k`Dk`DlaEk`Dj_Ch]Af[?eZ>_T8_T8]R6YN2TI-NC'H=!D8 @. @.$A/%A/#@0#@0!@0!@0 C6#C6#D9#E:$H>%J@'JC)KD(TI-UJ,UJ,VK-VK/UJ.TH.SG-NB(L@&I=%F:"C7!B6 A5@3 >1 >1!=0 =0 <.!<.!;- ;- ;-";-";-$;-$;-$;-$;,%:-$9,#9/#<0$>2&?3'>2&>0%=/$C2(D3)E4*F5+I7-J8.L:0M9.Q;.Q:,P9)P9)T:+X>/]B1`E4cH5cH5cF4cF4fG3hI5jK7lM9sR?xUB}YIƒ_O‹gY”sdŸr¤ˆz¾§™Ã²¢Ë¿¯ÍÇ·ÇȶÁƲ½Ä²ºÅµ·Ç¼´Å¿±Ä°ÆÄ°ÈʬȨ̀ÅÏ¡ÃÍÃМÃÒ™ÅÒ—ÅÒ–ÆÐ•ÇЕÇЕÇИÈÖ™ÇÖ—ÆÖ—ÆÖ—ÆØ—ÆÚ–ÆÜ–ÆÜ—Éà—Éà—Éâ—Éä–Éæ–Éæ–Éæ–Éæ“Æå–Éè—Êé•Èç‘ÃäŽÀá¿âŽÀãŽÀãŽÀãŽÀåŽÀ县玿玿ç¿ç’¿é’¾ë‘½êŽ½éŽ½éŽ¿êÀëÀ뎿ꎽé¼é»è’»é•»ê˜¼ì›½í Àñ½î›»ìŸ»ë¥¼î«½ï¯¹î²µê½¸î¹îĺïÁ·ë¼´å¶³à²³ß¯¸ã¥ºå »æºäœ¹ã˜·ã˜·ã˜¹æ—¹ç•·ç“·ç“¹ê“¸ì‘¹í·ë¶êŒ¶èµæ¶äŒµãŒµã‹µå·ç¹êŽºë‹·èŒ¸é‹¹ëŒºìŒ»ï¼ð޽ñ½ö’¹ú’¹þ‘¸ý·ü¸üºýŒ¼þ‹¼þ‹¼þŒ½ÿ¿ÿÀÿ“Àÿ’¿ÿ“¾ÿ’¾ÿ‘¿ý‘¿û”½ý”½ý•¼ÿ•»ÿ•»ÿ•ºÿ”¸ÿ’´þ•¯ùœ±ô¢®ê˜žÒƒ²pl‘TTlRTcRTaSUaNQZKNWTT```lgesf_o`XgZN\TDNL;AH66F24C.7D.:D.;B,9>*6=)5@,7D/8F/7H/5L/3O11U32Y62^85e82s:1x90u91l5._.)S'$J$#F$%?!#= $9#7!7788778899; ; <= > > ?!?!@"B E!GGEEDC!C!> = : 97654.!,"+!* ))*+,,--./01/1111111421//01/-+ + . / 0!2 2 / 3$!9+(<1-=4/=60>71>7/C9/?6'?9+C@1DB3>@2?C4DH:<>3@=4D=7B73@..<&(=#&FNCJTIR^Pbpas€ow‚qu|lvwgro^jdTb[I[TATO;KJ5DF0AE.GK4OS:TW./@21H;3KA7OB9K>5F5-@/'A.'C0)C0)D1*E4,D6-E7.D7.B8.@7.C;8C>;FA>HC@IDAHC@GB?FA>D?;B=:A<9?:7>96<74>64<00<..8**2&&-!#(%"  "## !$ ("*"-%0!(-',&+%*$)#("'!& JA0KB1MA1NB2OC3PD4RE5RE5RB3RB3QA2QA2SA3VD6YG9ZJ:]N;\P:\P:]Q;_S;`TdX>cXh_>f`>f`>k`DlaElaElaEk`Di^Bg\@f[?aV:`U9^S7[P4UJ.NC'H=!D8 B1!B0$B0$B0$A1$A1"A1"A1!C6#C6#D9#F;%H>%J@'JC)KD(SH,TI+UJ.VK/VK/UJ.TH.SG-NB*L@(I=%F:"C7!B6 A5@3 =0=0 /[A0^D3bG6bG6cF4cF4dH3fJ5iJ6jK7nM*5A+7C.7G08I04M04P22U32Z73_96e82v=4x<2t91j3.],(R&%I#"C#$=!;"7!6 77887799: : ; <!<<<= ?!?!?!B E!GEEE!D!C!C!=<986531.!,"+!)))**--..............//.../00.. . 0 0 3!!3!!4""1!!4$$9+*=20@85@;7=84;60B90@8+A;/CA4CD6AC6BF8FI>@B7AA9C>:B75?/0<(*<#';"(5$4&4$1"-. 2$#4)'6-(4-'0+%-*!,) --!33'79.AG=FNCKUJR^Pao`q~mw‚qw~nvwgro^jdTa\IYT@QO:KK3EG/EK1IO5OU;TX=VY)&=(%;&%:%$8#"6! 4 20/)'&&&')*)*+.2"#8()>./@21F93I?6OB:M@8J92D3,C0*D1+E2,F3-F5.E6/E6/C6.A7.?6/B:7A<9D?E@=E@=E@=C>;B=:@;8?:7>96?75;10:..6**2&&-!#($!!"##$$$!&")%*&*&)&)&(%'$&#%"$!$!KB1LC2NB2OC3PD4PD4RE5RE5SC4RB3QA2RB3TB4VD6XF8YI9[L9ZN8[O9\P:^R<_S;`TgW@hX?iY@i[Aj\Bk]Bk]Bh]?h]?g^?g^?g^=g^=e_=e_=k`BlaEmbFmbFlaEj_Ci^Bh]AcX"E9F5%E3'D2&C1#B2#B2"B2"C3#B5"D7$E:$H='J@'KA(JC)JC'RG+RG)TI-UJ.UJ.UJ.TH.SG-NB*L@(I=%F:"C7!B6 A5@3 /[A2]C2`E4`E4bE3cF4dH3eI4hI5iJ6iH7kJ9mL;nM ?!?!AE!EEDD!C!C!A!;9865320- +!* )(()*. . ///.-,........--../010.//2 3!!4""5##5##6&&6('9.,@64E@B?:>;4B;3B;1B>3DB6DF;EH=GJAILCGHBFE@E@=A76<..8%)5$4#0"0#0!/ .1!"6('9.,:/+7.'3,$0)/+ 2.#73(88,AD9FNALWIR_N_l[n{ivpxmyzhut`mjWcaL[YDTT;FA>GB?GB?FA>E@=FA>E@=D?;A<9?:7>96@86?54;108,,3)(/%&+"#'""!#%'$$" %#*&)%&#('(''&'&&%%$%$%$MD3MD3MD3NE4PD4PD4QE5QE5QD4PC3RB3SC4TD5UE6WE7WG7YJ7XK8YL9[O9]Q;_S=`TbVh_>f`>f`>laClaCmbDncEmbDlaCk`Bj_AeZ(KA(LB)JC)JC'PE)QF*SH,TI-UI/UI/TH0TH0NB*L@(I='F:$C6#B5"A4!@3 ;.;.:-:-9+9+8*8*8*8*8*!8*!8*!8*!8)"7*!7*!5+7+8, 8, 9-!;-";-"?.$?.$@/%B1'E3)F4*G5+I5*M7*M7)N8*P:,S<.U>.Z@1[A2]C2^D3`E2aF3cF4dG5eH6eH6iI:kK7t93i2-^+'S&#J""C!=!9 6 4 3557877789: : : 99;<<= > AC DD C C B B"@":875421., *!('''((,- ./ /-,,----------./001 00013 4 !6"#7#$6$$9)):,+<20D<9IFAKJEHICDE?IF?JG@JG@GG?FGAEHAEHABG@EGBCD?@<;<347+-4#)2$. *)+,.4$%;-,B43@2/;0*7,&5+"6,#9/%=3)=7+AC6HN@OWHQ^L[hVivbskwj{~izydrq\iiQaaI[^CX^BW`AWa?T_=T^/N<2M92I4/E0+A,'?*%=(%=(%<'&:%$7"!42110,)('''()((),0 !6&';+,=/.A30B71I<6J=7J84E3/C0,A.*E2.E2.E3/D50C4/A4.>3-<3.>63@86C;9G?=H@>IA?H@>G?=H@>G?=F>649/.5-+3*+-'') %#!!$&(%$" &&(&'%$"''')')&(&(%'%'%'NE4NE4NE4NE4PD4PD4PD4PD4QD4QD4SC4TD5TD5UE6VD6VF7VI8VI6XK8ZM:\P:^R<_S=`ThXAhXAiY@jZAj\Bk]Cl^Cm_Dj_Aj_Ai`Ai`Ai`?i`?ga?ga?laCmbDncEncEncEncElaClaCf[=f[=eZ0Y?0Z@1\B3]C2_D3aF3cF4cF4cF4cF4cC4eE6hH9iI:kI=nL@rREvVIuWLz^Rƒh]‘ym¤Ž¸¥—̺¬ÔȺÉÌ»ÅνÁ̼»Ç»¶Á»°¿¼­¿Á¬ÁÆ¥¾Å¢¾ÉŸ¿ÌœÀΚÁИÂЗÂÒ•ÃÓ“ÂÔ“ÂÖ”ÃוĨ–ÄÛ–ÆÝ–Åß—Æà•Çâ•Æä•Ææ”Çæ”Æç”Æç’Çç”Æç•Ææ“Ää“Ää”Å啯ç”Åæ‘Áå¿ã¿ã¿ã¿å¿å¿ç¿ç¿ç‘¾ç”½é•»è”ºç‘ºæ‘ºæ‘¼ç’½è’¿é‘¼ç‘ºæ“¹æ“¸å–¸æ˜¸ç›ºéœ»é™ºç𻿡½å«¾æºÂéÎÊïãÓøóÙþÿíÿÿèÿÿÝÿóÑôÞÅå̻۹ַºÙ¤¸Ûœ¸Ý™·Ý˜¶Ü•µÜ”´Û”µÞ“¶à•·ä“¸ä“¹æ“¹æ‘ºè·è·çŒ¶æŽ¶é޶éµèµèŒµé¶ê޹ìºïºïºïºñºñŒ»ñŒ»óŒ»óŒºõºûŒ¹ü‰¹û‡¸ú‡¸ú‡ºû†¼ü‡½ýˆ¾þ‰¿ÿ¾ÿŽ¿ÿÀÿ’¿ÿ’½ÿ‘¼ÿ’½ÿ’½ÿ•¼ÿ•¼ÿ–»ÿ–»ÿ–»ÿ˜ºÿ—¹ÿ—¸ûš¶÷ž´îœ¬ßŽ™Æ{€¦kn_axY\oVYjX[jY]iY]iacpikzon€ni}lewh]m`R_XIPP@CM:>H3:E09C-9B,8C-9D/8D-7E+4K07M05P03U11[33_62d93i:4r;6m3/a,(V%!M! E?: 532125785666899989;;<= > > AAA@@>> = 76532/.-+) ('&&'(*,./ 0.,+,--------./000/./0124 !5!"6"#6$$:**<.->42C>:JGBLMGMPIMPIVUQWVRTSOKLGFHEDFC?D@:?;<>=9996235,/3&-2#*2'/$&')*.5%&>0/E74B5/@1*=.'<.%>0'@2'A3(>4(DB5JN?QXHQ]IWcOdpZpydt|e|€iz|dvv^mpUgjOdiKclMepNbnJ^jDXd>V`;Xb=]e>`f@bfAffDifEjeHhaEb[A[P:TG4NA0R@6P<5K61E0+A,'>)$=(%=(%=(';&%7"!41111-*)('(())))+/ 4$%8():,+?1.@5/D71D71E3/B0,?,(=*&B/+B/+C1-B3.B3.@3-=2,=2.=31>64B:8E=;H@>H@>G?=G?=G?=G?=E=;D<:B:8A97@86?75D<:?7580.3.+2,,/)))#'"!"&*&# "%&''&$%#''''''''''''''''NG5NG5NG5NG5OF5NE4NE4NE4PD4PD4RE5RE5SF6SF6UE6UE6TG6UH7WJ7YL9[N;^R<_S=`T>aU=aU=aU=bVdX>dX>hXAiYBjZAk[Bk]Cl^Dm_Dm_DlaClaCkbCkbCkbAkbAicAicAlaCmbDncEodFodFodFncEmbDg\>g\>g\>dY;aV8[P2WL.SH,N=)L;)I8(F5#C4!D5"F7$G8%B6 D8"G<&K@*MB,NC-KC,JC)NB(OC)QE+SG-TH0UI1TH0TH0NB,L@*I<)F9&C6#B5"A4#@3"9,9,8+8+7)7)6(6(6(6(6(6(6(6(6' 5( 6) 3)4'3&4'6) 8*!:,#<+#<+#>-%?.&B/(C0)D1*E3)I5*J7)N8+P:-R<.T>0V?1W@0Z@1\B1^D3`F5bG6bG6aF3aF3]@0_B4bE7cF8eE8hH;lL?pPCtTIuWL{]R‚dYqeŸ…xµ›ŽÀ­ŸÄ½«ÂñÅÈ·ÄȺÀú¹À¹´¾½±¿À¨»Á¤½Ä¡½È¿ËšÀÍ—ÁÏ–ÁÑ”ÂÒ“ÀÓ“ÀÕ”ÁØ”ÂÙ•ÃÛ—ÅÝ—Æà—Æà—Æâ•Æä•Ææ•Ææ”Æç”Æç”Æé”Æç•Ææ•Ãä”Âã•Ãä—Åç—Åç”Âæ‘¿ã‘¿ã‘¿ã‘¾å‘¾å‘¾ç‘¾ç‘¾ç’½ç”»æ“ºå’¹ä¹ã¹ãºä»å‘¼æ“½ç’¼æ”»æ”¹å—¹æ™ºçœ»é¼ê˜¹æ›ºè¢ºæ«½å»ÀèÐÈïèÔùúÚÿÿïÿÿíÿÿâÿùÔöáÆçнÝøָ»Ú£·Úœ¸Ý™·Ý—µÛ”´Û”´Û“´Ý’µß•·ä“¸ä“¹æ“¹æ‘ºè¸æ·çŒ¶æ¸ë·ëŽ¶êŽ¶êŽ·í¸îºï»ò‘¼ó‘¼ó¼õ¼õ޽õ»ö»ö»÷Œ¹ú‰¹ûˆ¸ú‡¸ú†¹ú„ºú…»û†¼ü†¼ü‡½ýŒ½ÿ¾ÿ޾ÿ½ÿ»ÿ»ÿ’½ÿ’½ÿ•¼ÿ•¼ÿ–»ÿ˜»ÿ˜»ÿ™ºÿ™ºÿ™¸ù™·õœµí›­ßLJ¬sx–cg€]`sU[kW]kY_m[aoehwop‚sr„ro‚qi~mbseYg]MWUDJR?CI4;F/9B-6B-6E.8F/9G-8E+4N08O05S04X12\31b63h84j94l73f/,Y&#M F@;732101477422366787799<<<> >>>>><;96530/-,*+) (&&&''(*-0!00.,++++++++-. /!0"0". -+-/024!6 #6"$6#%6&'8,,<42@<9ED@KLGNSMSXR[[Y]]]YYYNPOHJIEIHAED;?>679224-+.,&*-"*- ),%) ( &)),2$$=--E63E61D3,B1*C2*F4*G5)E3'@2%EB3LO>SWFRZES_I^jRku]qyayey}bvy^psVjoQjqPlwUo}YkzQdsJ[jAXd7K82E2,@-'=*$<)%<)%=)(:&%6"!20011.+*(((()***+-2"#6&'7)(?1.=2.?1.?1.@.,>,*<(':&%>*)?+*@.,?0-@1.?1.=2.<1-<20>43B87F<;H>=I?>H>=H>=G=64C;9:523.+1,)1++-)(&!%  $(&%   "!&%&%&&&'%'&'&'&('('('('('OH6OH6NG5NG5OF5NE4NE4NE4PD4PD4RE5SF6SF6SF6TD5TD5SF5TG6VI6XK8[N;]P=_S=`T>`T>aU=aU=bV>cW=dX>dX>eY?iYBiYBjZAk[Bk]Cl^Dm_Dm_DmbDmbDlcDlcDlcBlcBjdBjdBlaCmbDncEodFpeGodFncEncEg\>h]?h]?f[=cX:^S5ZO1WL0P@)M<(I8&F5!D5"D5 F7$G8#A5D8"H='LA+NC-NC-KC,JC)MA)OC)QE+SG-TH0UI1UI1TH0NB,L@*I<)F9&C6#B5"A4#@3"9,8+8+7*7)6(6(6(6(6(6(6(6(6(6' 5( 5(3)3&3&3&5(8*!9+";*"<+#=,$?.&A.'C0)D1*E3)H4)J7)N8+P:-R0V?1V?1Y?0[A2]C4`F5bG6bG6aF3`E4eH:gJbhBciEijHijJlhKjfIf_E]V,,>/,?//?1.=20=20;10=32A76E;:H>=H>=H>=G=cW?dX>eY?gW@hXAiY@k[Bk]Cm_En`EoaFodFodFneFofGofEpgFnhFnhFncCncCncCodDodDpeEpeEpeElaAk`@i^>j_?k`@j_?g\(K@*MB,NC-ME.MF,L@(L@&MA)NB*OC+PD,QE/RF0L?,J=*F9&C6#@3">1 =0+%?,&?,&?,%H4+J6+M9.P=/S=0T>1S=/S=/V?1W@0[A2]C4^D3^D3_D3_D3dH:dHH19G08G08G08H.7I+3Q07R/3W.2[12c55h73h52f30[('W%&N "E>7522!1#2#4#5!5!8!7101111339764578<==<:9654/.//.*(&(%$""#$$()+,--,,0#,('),- - .!- - ,+***/./0/1 3#4!%5%(2&(2)*510=<:GIFQVRX\[abf]^cXY^XY]WZ_SWZKLQCDI54:+*0(#*(!))'$!#%!& &!' (+!2$$;++A2-E4-F5-I7-N:/T>1T>0P:,I8(E9)LG4VUAZ^G[`I]fKdmRlrVrwYqtUloPflJdkIhtNrZz‹ayŠ]n€PbrC\l?alBepFhnHflHabB_`Aa]@a]Bc[D_W@[P:WJ7SB8N=5I81E4-C2+A0)=+':($>,*;)'6$"1../0****))))++,-./ 0 !0"":,,9.,;--:,+<)+:((9%'8$%8$&8$%9&(<,,A12A32;//7++7-,;10A76F<;I?>J@?H>=F<;@65A76A76@65?54=32;1091/3+),'$&!"  "!!!!!!" $"$!%&(* !,"#.$%/%&0&'OJ7OJ7PI7QJ8QJ8RK9SJ9SJ9UI9TH8TH8SG7SF6SF6RE5RE5UH7UH7VI8WJ9YL;ZM:[N;[N;\P:]Q;^R<`TeY?gW@hXAiY@k[Bk]Cm_En`EoaFodFodFneFofGofEpgFnhFnhFodDodDodDodDpeEpeEpeEpeEncClaAj_?k`@laAk`@h]=eZ<\L3WG.QA*M=&K<%K<%I:#H9"H<&I='J?)LA+LA+MB,JB+JB+L@(L@&MA)NB*NB*OC+PD.PD.K>+I<)F9&B5"?2!=01S=0S=/V?1W@2[A2]C4^D5^D3_D3_C5cG;cG;cG;dHiL>mM@qOCsQExRG}WL„^SˆdXm`—zl¨Œ€·œ‘À§ Ã¯¨Äµ°Â¸¶¼º»·¼¿°¿Ä¨¿Å ¾Æ™¾Ç—¿É•¿Ë™ÀÑ™¿Ô˜¾Ó˜¾Õ—ÀÖ˜ÀÙšÂÛ›ÅÞ›ÄàšÃá˜Äá—Ââ—Ââ–Áã•Âã•Âã–Äå–Äå•Ãä•Ãä”Âä”Âä“Áå“Áå¾â¾â½ä½ä½æ½æ½æ‘¼æ“ºã“ºã“ºã‘»ã‘»ã¼ã¼ã¼ã’¼ä‘»ã’¹â“¸â•¸â—¸ã™¸äš¹ç—·ê˜¶êœ¶ç£µå®¶ä¹¸äƹäйåßÀêçÆñçÆóÜ¿ëϺåŸ㻶߮³Ûž±Û˜´Û–³Û–³Û”´Û“³Ü’³Þ‘³à“µâ‘¶ã‘·æ‘·è¸é¸éºìºì’¹ð“ºó”»ô–½ö•¾ö•½ø“½÷“½ù”¾ú“½ù¼ù»ø»÷Œºö‹¹÷Џö‹»û‰ºüˆ¹û†¹ú…¸ù„ºú‡ºûˆ»üˆ»ü‰ºüŠºüºý¸ý’¹þ”¹ÿ”»ÿ”¼ÿ”¼ÿ•¼ÿ˜»ÿ™ºý›ºý›ºý›ºý˜·úºþžºûž¸ó µì¯áŸÊƒ±t{˜im†_dz_dxafych{insuŠvvŽ{y‘|wŽyp…vk|rfriYc]LTT?FP9AK4^X@_W@]U>ZO9WJ9SB8N=5I81E4-D3,B1*?-)<*&=+):(&7%#3!0///****))))++,-./ 0 !/!!8**6**9++9++;(*9&(9%'8$&7#%7#%8%':*+?/0?11:..6**5+*9/.>43C98F<;G=43?54@65@65>43<219/.7-,0(&*%"$! "%%# !"! !" $!%"% ))+ ," 0%#2(&6+)6,*MJ7MJ7OJ7PK8PK8QL9RK9RK9RI8RI8RI8QH7SG7SG7RF6RF6UH8VI9WJ:WJ9YL;YL;ZM:[N;[N;\P:]Q;_S=`TcW?dX@gW@hXAiY@k[Bk]Cm_En`EoaFodFodFneFofGofEpgFnhFnhFqgDqgDqgDqgDqgDpfCpfCpfCpfCndAmc@mc@oeBndAj`=g\&K?'K@*LA+LA-K@,H@+G?(L@(L@(L@(MA)MA+MA+NA.NA.I<)G:'D7&A4#>1!0T>1T>1U?1V@2YB4[D4^D5^D5^D5]C4aE:bF;cGoOBsQEwQDySF~VJ‚ZNYN‰cX—ri£x¯Ž…·š”½¦ ¿­©À´´¼º»¸ÀñÀŦ½Ã»Ã›½Æ›¿ËœÀМ¿Óš¿Ò™½Óš¾Ô›¿×›ÀÚ›ÀÛœÁÜšÁÞšÁÞ™Àß—Àà—Àà—Àà”¿á–Ãä–Ãä•Âã•Âã”Àã”À㓿䓿䑽⑽⑽䑽䑼摼摼摼攻䔻䔻䒼䒼䑽䑽ä½ä‘½ä’¼ä“ºã“¸â•¸â–·â˜·ã™¸æ—·è™·ë·è¢¸éª¸å±¸äº·äÁ¶áòßÍ·åÑ»ê̸éĶ绵岳ᨰ޲ݙµÝ—´Þ—´Þ”´Ý“²Þ’³à‘³á“µã‘µå‘·è‘¶ê¸ë¸ë¹í¹í“ºó”»ö•¼÷–½ø–¾ù–¾û”¾ú“¼ú“¼ú“¼ú¼û»ú»ùŒºø‹¸ù‹¸ùŠºü‰ºüˆ¹û‡¸ú‡¸ú‡ºû‰ºüŠ»ý‰ºü‹»ýºþ‘¹þ“¸þ•·þ–·þ•·þ”¼ÿ”¼ÿ•¼ÿ˜»ÿ›ºýœ¹ýœ¹ýœ¹ýš·ýž»ÿŸºý ¹ù¢¸ò¡µê–¦ÙŠ–ÀyŸpvŽhn„ho‚ho‚gnkp„suŒvvŽ|z’~x’|t‹|p„ym{qalfU]YDKT=CM6>I2:K1:L2;N3:Q2:Q.5V/4[13d66l98m75l20e-,T#&O"'H"@ : 7!4#2%0$/$0$1"3"4"7 610000011766556799887632/-,+**'&%%$#""#$%* * , -!. --- .!*&&(+ + *-"-",!,!+ + **+,,,-.0 0!1!$0!$.$%0**732>>;B2-4*#+$$'%'$$$%""%&)/$"9+*?2,=.'@/%C3&K9+TC3[H7]K7]K7SB0UF3WL8[U=a_FhhLmpStuV{|\xyWtuSmqLkqKmxNrVwˆ[‚’ax†UjwIfqFhsIltMjpNgjK]\@[W>XR:XP;XP;ZO;YL9WJ9RA7N=5I81F5.E4-D3,A/+?-)<*(:(&8&$5#!3!!0/.++**))((**+,-./ . 4%(3')6'*6'*9&*8%)8#(7"'5 %6!&6#'8(+;+.;,/7+-4(*4((7++<00A55D88D88C77B66<00=11?33?33>22:..6**2(',$"( #$(((!!" !""!#!%!&"'!)#'/! -"0"0%!6(%9.*?1.@51MJ7MJ7OJ7PK8PK8QL9RK9RK9RI8RI8RI8RI8TH8SG7SG7SG7VI9VI9WJ:XK;XK:YL;ZMcW?gW@hXAiY@k[Bk]Cm_En`EoaFodFodFneFofGofEpgFnhFnhFsiFsiFsiFrhErhErhEqgDqgDsiFqgDpfCqgDrhEqgDmc@j_?gX;bR8[K1UE+QC)N@&J;$G8!H<$I=%J?)K@*K@,K@,H@+H@+L@*L@(L@(K?'K?)K?)K>+K>+G:'E8%B5$?2!=0 ;.;.;.8+8+8+7*7)6(6(6(6(6(6(6(6(6(6' 5( 5("2'!3& 2%2%3& 5&!6'"7%!8&":($<*&A.*D1-G40I60I6/J8.K9-M;/P<1Q=2T>1T>1T>1U?1XA3ZC5]C4]C4]C4]C6_C8`C;bF;cH=eJ?gLAiOBjPCdJ;hL>nNApO@rN@tNAyQE~THƒXOˆ]V‘f_™qi¡zs¬‡³”·žš½©¨¿³³Á¿Â»ÃƱÀÅ¥¼Â¡¼Ã ¾È¢ÂÑ¢ÁÕ ÁÔ ÀÕŸ¿ÔÀÖ¿ØžÀÛœÀÚœ¿Û›¾Úš¿Ü™½Ý™½Ý˜¼Ü–½Þ–Áã•Âã”Áâ”Á⓿⓿Ⓘ㒾ã¼á¼á¼ã¼ã»å»å»å‘»å’¼ä’¼ä’¼ä‘½ä‘½ä½ä½ä½ä‘¾å‘½ä‘»ã’¹â“¸â•¸â—¸ã—¸å–¶å™·é¹é »ê¥ºç¨¹å®¶ä±´á·±ß¾µä¸êÀ¸ëº¶è´¶ç¯µç©·æ´àšµâ˜µá—´à”³á“²à’²á²â“µå‘µç‘¶ê‘¶ë¸ì·î¹ï¹ï“ºõ”»ö•¼÷—¾ù–¾û–¾û”½û”½û’»ù’»ù¼û»úºûŒ¹úŒ¹úŒ¹úŠºü‰¹û‰¹û‡¸úˆ¹û‰ºüŠ»ýŒ¼þ‹»ýŽ»þ’ºÿ”»ÿ—¹ÿ—¸ÿ˜¶þ•¶ý”ºÿ“»ÿ”»ÿ—ºþš¹ü›¸üœ·üœ·þœ¸ÿŸ»ÿŸºÿŸ¸û£¸÷¢µð™¨á™É|…¦w}—qwqwntŠjq„kp†pu‹vx‘}z•{–~vŽ~rˆ|o€serjYa\GNV?EN7?I2:J09M29Q3;R39R/5X/5`36h88p::n74k0,b*)Q $J&E#?":#6$3&2&/$/$0$1$3"4"6 61000001166666677877541/-,*)(''&#$##"#$%&+!,"-!.". . -, *)&&(**),!,!,!,!+ + + + ***,-....!-!+!"-$%1-,764>>aU?bV@gW@hXAiY@k[Bk]Cm_En`EoaFodFodFneFofGofEpgFnhFnhFtjGtjGtjGtjGtjGtjGtjGtjGvlIukHsiFtjGukHtjGqgDmbBj[>eV9^O2YJ-TF+PB'J<"F8E9!F:"G<&J?)K@,LA-JB-JB-L@*L@*K?)J>(I<)H;(H;(G:'D7&C6%@3#=0 ;.:-:,:,8+8+8+7*7)6(6(6(6(6(6(6(6(6(6' 5( 4'!1& 2%1$1$2%4% 5&!7%!8&"9'#;)%@-)D1-H51K82I80I8.K9/L:0N<0P>2R>3S@2T>1U?2WA3XB4[D6[D6[D4\B5^B7_B:aDeJ?eMAgPBhQCfO?iO@kN>lL=mI;pK;uN?{QEVO†YS‹^Xd]–kdžuo¨ƒ}­Œ‡¸œ™¿«ªÇ½¾ÉÇÊÁÆÊµÂȯÀǪÀ˨ÂѦÃÕ¦ÃÕ¦ÂפÃ×¤ÃØ£Â×¢ÂÙž¾×ž½Ùœ¾Ù›½Ù›½Ù™¼Ú™¼Ú˜¼Ü—Àà•À┿ᔿᓾᓾᒼⒼ⑻ᑻᑻ㑻㑻呻呻呻哽咾㒾㑿㑿ã¿ã¿ã¿ãÀä‘¿ã¼áºà‘¸ß’¸ß•¸à–·â•¶ã˜·å›ºèœ»çŸ¼æŸºå¡¶á¥³à­¸æ°¶æ³¶é²µè®´æ¨²ã¨¶ç©»ëµã›¶å™µä˜´ã•´ã“±ã’²ã±ä“´é‘´ê‘¶ë‘¶í·î·ð¹ñ¸ó’¹ô“¹÷•»ù–¼ú–¾ü•½û”½ý“¼ü‘ºú‘ºú»ü»üºýºýºýºýŒ¹ü‹¸û‹¸û‰¹û‰¹û‹»ýŒ¼þ¼ÿºþ’ºÿ•ºÿ—¹ÿ›¹ÿœ¸ÿ·ÿ›¹ÿ•»ÿ”¼ÿ–»ÿ™ºÿœ¹ý¸ýŸ·ÿ¸ÿ¹ÿŸ»ÿž¸ÿµýžµù ³õ—§åšÎ‚Š®~„žx€—v~“qyŽjr‡io‡osŒyz–~~˜€|—w|sˆ{nqcpgWa]HOW@FN7=I28K28M29Q3;S29U07Z15b47j89p87n42h+(_%$M"G&B$=#9#5$2&1(.%.%/#0#2!3!530...001133667766655320.,-*('&$$$$####%&',"-#.".". -,+) ' $%' (!' &)")")")"*#*#*#*!()),,,,,,!+!)!+ $,&(2./845:8;@?GCALGEPLITLIRGAK=6>7-61'/)&$ & ( #"# "$(.$"6-(>4+C9/E9+G;+OB1XL6`TaU?gW@hXAiY@k[Bk]Cm_En`EoaFodFodFneFofGofEpgFnhFnhFtjGtjGtjGukHvlIvlIwmJwmJyoLxnKvlIwmJxnKwmJtjGpfCm^?iZ=bS6]N1YK0TF+N@&I;!C7E9!F;%I>(K@,LA-KC.KC.L@*K?)J>(I='G:'F9&E8%D7$B5$@3">1!+'C0,H51J71I80I8.K9/L:0M;/O=1S?4T@5S=0T>1V@2XB4ZC5ZC5ZC3\B5]@8^A9`C;aF=aI=cM@eOAeOAiRBjSClQ@jM=jI8mI9rM=vNBwLE{NIRMƒVP‰\V‘d^™pjžys­‹‰µ›šÃ±±ËÁÂÈÆÉÂÅʺÃÊ´Â˪ÀΦÁÒ©ÃÔ¨ÃÖ©Ä×§ÃØ¦Â×¤ÃØ¢¾ÖŸ½×Ÿ½×¼Ø¼Ùš¼Øœ»Ø™¼Ú–¿ß”¿á“¾à“¾à’½à’½à‘»á‘»áºàºàºâºâºäºäºäºâ’¾å‘¿ã‘¿ã¿ã¿ãŽÀãŽÀãŽÀã‘ÁåÀä¾â»à¹ß‘¸ß’¸ß•¸à•¶ß—·à˜¹â™¼ä™¼ä˜»ã™¹âšµà£ºæ¤¶æ¤´å¦´å£±âž®á ²ä£¹êŸ·çœ·æš¶æ™µå•³å”²æ‘±ä±æ“´ê‘´ê‘¶í‘µï·ð·ò¸ó¸ó‘·õ’¸ö”ºø•»ù”¼ú”¼ú’»û’»û‘ºú‘ºú»ü»üºýºýºýºý‹¸û‹¸û‹¸û‹¸ûŒ¹üŽ»þ½ÿ’½ÿ”¼ÿ”»ÿ—¹ÿ˜¹ÿœ¸ÿŸ¹ÿ¤¼ÿ¢¾ÿ–¼ÿ•½ÿ—¼ÿš»ÿºþž¹þ ¸ÿ ¸ÿŸ¹ÿž¹ÿ·ÿ›²þ³üŸ³ø—©ëœÓ‰‘¶†‹¨€‡¡}…œu}’ksˆkq‰ou{|˜€€œ‚~™€w’}t‰zo€qcpfV`_JQZCIR;AO6&:&5&1'/&,%,%.%/#0!2!530...00112367876554410-,++)'%##$#####$&(),"-#-!."-,**) ' %&(!)"(!&(!(!)")"*#*#+$+"( )* ,!,!- ,++ + * )!*!$,&(1+-3.274=86A<9D@:F?9C;3>7-63(03(0+%'('#!! #%) /%#8/*>5,H@5I@1LC2SK6\T=b[Af\Ai[AqXDnQ?hO9dR:i[@neFsjKsmKtnJrlHplFmnDkqEjsDftCdrAkwEpyJs|Ot{QquRjkLa_F\WCXQ?TK1N>1N<0M;/K:0F8/C4-C4-E6/F70F72D50=.+<-*9*'7(%4$$1!!0 /--,*)'&&''()*+,++!)!,"-#/"/". -. 0"0#.#-",", $-!%6'*7)):,,<..>00>00>00>00=//<..;--9++6((3%%1##/!!-!!*(((%!"$"&'$'!&#!   !% )!)* ,!0!2#4$6!&6"$7#$8&&<()@..E12I77M9:M;;MJ7MJ7MJ7NK8PK8QL9QL9QL9PI7QJ8RI8SJ9TK:TK:WK;WK;XJ=XJ=XJ=XJ=XK;XK;XK:XK:WJ9XK:YL9[N;\P:^R<_S=`T>gW@hXAiY@k[Bk]Cm_En`EoaFodFodFneFofGofEpgFnhFnhFrhEsiEtjFvlHwmIyoKzpL{qM|rNzpLyoKyoKzpLzpLvlHsiFrcDn_@hY:dU6_Q4ZL/TF+OA'E9!F:"G<&I>(J?+K@,IA,H@+L@*K?)J>(H<&F9&D7$C6%B5$@3"?2!=0 :-9+8*8*9+8+8+8+7*7)6(6(6(6(6(6(6(6(6(6' 5( 3& 0%1$1$1$1$3$4% 8&"7%!7%!8&"=*&A.*F3/I60J91J9/I8.J9/M;1O=3S?4T@5Q>0R?1V@2XB4ZC5ZC5ZC5[A4]@8]@:_B:`E<`H>aK>bL>aN?iTClUEnTCmRAmNoG?tICyLG|OJRL…XRŒ_Zfb™sp ®––¸¨©¿´¸¾¹¿ººÂ²»Ä§ºÈ£½Ì¨¿Ï§ÁÒ¨ÂÓ§ÂÕ¦ÁÖ¥Á×£½Ô¢¾Ö¢½ØŸ½×Ÿ½Ù¼Øž¼Øš»Ú–½Þ“¾à’½ß’½ß‘¼ß‘¼ßºàºàºàºàºâºâºäºäºäºâ“¿æ’Àä’ÀäÀäÀäÁäÁäÂä‘ÃæÀä¾â»à¹ß‘¸ß’¸ß”·Ý”¶Ü•·Ü•¸Þ“»ß’½à’¼â‘»á”¹ã™ºå™µäµå¡·èž´å™¯à›³ã¢ºêž¸é·è›·é™µç•³ç”²æ‘°æ±ç“´ê‘´ì‘µï‘µï·ò¶ô¸õ¸õ¶õ‘·ö’¸÷“¹ø“»ù“»ù‘ºú¹ù¹û¹û޹ý޹ýŽ»þŽ»þŽ»þŽ»þŒ·ûŒ·ûŒ·ûŒ·û޹ýºþ‘¼ÿ“¾ÿ–¾ÿ—¼ÿ˜¹ÿš¸ÿž¸ÿ¤¼ÿªÀÿªÄÿ™¾ÿ—¿ÿ™¾ÿœ½ÿŸ¼ÿ »ÿ¢ºÿ¢ºÿž¸ÿž·ÿœµÿ›²ÿž´ÿ¢¶ÿ®ö”£Þ‘šÁŽ•±ˆ©ƒ‹¢y–nv‹ntŒsy‘}~šƒ€›€z”€wŒ}rƒtfujZdcNU^HKZAGV=CU:AW9AV7=X5;^6>`6:f58i65l21g,(a!UL#D'B(=&8&2%/%-%+%+$-$."/ 1 420...00002367766544210-+*+)&$"""##!!!#$&( )!*"+!+!*('(*!(!' (!*#+$)"&(!(!(!)"*#+$+$*"'!( )!,"-",!,++ *)'(!*!$-$'-'+/,5/-81.92,82*52(30$.0#,6)2.&( )(#!" !#%) !/'$81+?8.JD6LE3QJ7YS=a[Cf`FhaEl^Cx]HwXDpU@jV>jZ@m_BodFqhGnfBjd@hd>ig>ilAfn?am=\j7dnMJ7MJ7MJ7NK8NK8QL9QL9QL9PI7QJ8RI8SJ9TK:UL;UL;XLYK>XJ=XK;XK;XK;WJ9WJ9WJ9XK8YL9ZM:\P:^R(J?+I>*H=)G<(K@,K>+J=*G:'E8%C6%A4#A4#?2!>1 3TA3WA4XB5YC6XB5YA7\A:\A:[B;]D=^G?]I>^J?_L>fSEkUGoXJqWJmQCjM?hK;jJ=nLCsNFwPIxQJzRJ{SKVP‚[Vƒ`\‰jg—{z¤Ž±ž¢·¨­¶«±¯®¶ª´À§·Æ©¹É«¼Ì¬½Í«¾Ï¨½Ð§½Ò§½Ô¥¾Ô¤¼Ö£½Ö¡¼×¡¼× »Ö¼Ø˜½Ú•¼Û”½Û“¼Ü“»Þ»Ý»Þºàºàºà’¹à’¹à’¹à’¹à“¹à’¹à“¿ä’ÀäÀäÀäÀäÁäÁäÁä’Âæ‘Áå¾â»Þ¹ß޹ܑ¹Ý’¸Ý“·Û“·Û’¸ÝºÝ»à¼á¼ã’¼æ–»ç–¸å›ºé£¿ï¡½íš¶æ›·ç¢¾îž¸éž¸é›·é™µç•³ç“²è‘°ç°æ‘´ìµì‘µï¶ñ¶ô·ô¸õ¸õ޶ô·õ‘·ö‘¹÷’ºø’ºø¹ù¸ø¹û¹û޹ý޹ýºþŽ»þºþºþ޶û޶û޶ü޶û¸ý’ºÿ”¼ÿ•½ÿ˜¿ÿ—¼ÿ˜¹ÿ™·ÿ¹ÿ¤¿ÿ¬Äÿ­Éÿœ¾ÿš¿ÿœ¿ÿŸ½ÿ ½ÿ¡¼ÿ£»ÿ¡»ÿœ¶ÿ·ÿ›µÿš´ÿŸ·ÿ¤ºÿ ´ûšªè–¡Ï”š¾Ž”´ˆŽ¨}ƒ™ryŒrwx|•}~š‚‚ž„œ}”yŽu‰wj{n^kfQXdKO^EI\AF[AD\=BZ:=[79b9=d7:g56g43g11a)(Z NI%D!(@(=&8&4%/$-#-$-$."."/ 1 220.0000001368865322/.,+((*(&"!!"##!#!%%)( +!)!, * +(('*!) (!)"+$,%)"' ' (!(!)"*#+$+$+%(")!+#.$.#-"- ++ *((( *"+ $,#(-(.+(/,'.+$,+!*,!)/)0!(:)11 (*!*'"!!"& ' , "1'%:1,A81KC8MG9RLo`?qdAi_;f^7d_7ed8fi6M:3K81H4-D1*F5-A3*?1(@1*D5.F70F72E61A2/>/,9*'5""1!!2""3#$--,*)'%%'&'()***+ + + + ))''+. /!- (''+#/"0 !1!"3#$4$%5%&6&'6&'B23>009++5''2$$1##1##1##5%%3##2""1#"1##/ #+!%!$!(&(($$"  %!)!(&'(&'+.4 "7#%:$&<&(@'+D+/K26O9AS=@RYP?UL;XL&F:"F:$F:$E9#C8$E:(E:(D9'B7%A6$@4$?3#>2"<0 ;/;/:.:.9-9-9-6(6(6(6(6(6(6(6(4&4&4&4&4&4&4&3&4'2(2(1'1'0&0&2%2%3&4'5( 7*"8+#9,$;,%C2+D1*E2,F3,H5/K81N;4O<5Q>7Q>7Q>7S?8S?8T@9T@9T@9UA:UA:VB;XD=ZF?ZG@\IB\IB_LEdPGjVMnZQqZRnWOjSKhPFiQEjPCiOBiMAiMBkODmPHnQIz]W}`\eb‰on•{|¢‰Œ¯–™°Ÿ¥©£¯¤¦³¦¨·§ª¹©¯¿¬³Å®¶É­ºÍ®½Ò¬½Ñ§»Ó¥»Ò¢ºÒ¢ºÒ¡»ÔŸ»Ó›»Ò—¹Ò”¸Ò‘¶Ñ·Ô‘ºÚ•½à˜À䎶ڷۑ·Ü”¸Ü–ºÞ˜ºÝš»Þ˜¼à•Àã“Áå’Àä’Àä’Àä’Àä‘¿á‘¿á½ß¼ß»Þ»ÝºÝºÜ¸Û¸Û¶Û¶Ý¶ß·àޏà¹ã¹ã’¸å–¼é—¼é—»ë™»ë™»ë™»ë™»ëšºë¹ë·êšµê˜³è•³é“²è’³é‘´ê“¸ï‘¸ñ·òޏò·ó‹¸óжóжó‹µñŒ¶ò·ôºö‘ºø‘ºø¹ù¸øŽ·÷Ž·÷Ž·ùŽ·ùµú‹¶úµúµú‘·þµü޲ü²ù޳ú‘¶ý•ºÿ—¼ÿ–»ÿ—¹ÿ–¹ý—¸ý™ºÿ›¼ÿ ¾ÿ¢Àÿ¢¿ÿ¢¿ÿ¡¾ÿ ½ÿ¡¼ÿ »ÿŸºÿŸºÿœ·üœ¹ýœ¹ý›¸üš·ù˜¶ö—³ôš¯î›¥à“™Í¹‰Œ«ƒ…šyzŒvw‹z{ƒƒ‡‡¡††žƒ—ƒ~’ƒzymƒo^pmS^nQUkNRgKJeGEcDAeB>g@;h;8k98k87f24^,-S%'K!D!C '@(>';%9#5#3"2!0!0!/ .-,--112222226 6 5544330.-,+*)(*'%"!!!!""$%'(*).#-#/$.$.#*(&#%(+"-$-$,#+"%&(")#*$)#)#("+#+!+!,!,!,!,!,!&''('((&( )##-$%.$%, ","1$3 &1&0%,#)#$ !%&*- 5"$:*+@21D63J?9MD=OK@TRFVXJ[_PaeThiWqdSzeR~cP|]H|^D~cEye@pa8ia3jc5lh;ol?lmCch?V_4NV/VZ9VW8TT8VT;ZU?[TAXO>VJ0%>0%?1(A3*C5,E6/G83@1.>/,:**6&&2"#0 !.-+)*(('**)('(((')0 0-*'(),+,,,++, -!-2"5 %6!&4$5 %7$(:'+<)-9),8(+6&)4$'2"%1!$0 !8&"8' 9'#;)%=+):**5%&1!$.#)!%"# %$%$&#& *"-#0%1$/!,(,!&!#,6$$='*B),I/0L23P67S;;S>=T?>S?>R>=HG3IH4IH4JI5KJ6KJ6MJ7MJ7QL9QL9RK9RK9SL:UNXQ?VMZO=[P>\O>\O>[L9\M:\M8]N9_N:_N:`P9_P;bS@aTCbUDdWFgZGi\Ii^Hj_IiaJiaJhbHicIidGjeHjeHkdGseHufGxiJzkL{lM{lM{lMzkL}nO|mN{lMzkLyjKzkLzkLzmMwiLqfHlaEi^Bf[?aV:[O5VJ0UI1PD,K?'H<$H<&G;%E9#C6#E:(D8(C7'B6&@4$?3#>2"=1!;/:.:.9-9-8,8,8,6(6(6(6(6(6(6(6(4&4&4&4&4&4&4&4&4'2(2(1'1'0&0&0&1'1'2(3) 5+"6,#7-$9,$A0)B/)C0*D1+G4.J71M:4O<6P=7P=7Q>8Q>8R?9S@:S@:TA;TA;UBXE?ZGA[HB[HB^KEaNHeRLiVPkXRiVPgTNeRKgTFfSBgQCfPBfPCgQDjRHkSIsXQuYUy]Zeboo™{{¤††¦£–Ÿ ˜£¢š§£©¥¡¯§¥³¦¨·§ª»¬³ÅªµÇª·Ê¨¹Ë©ºÎ¨ºÎ¥ºÏ£¹Î »Î¹Î˜¶Î—·Ð”·Ó”¹Ö’¹Ú‘·Û¶Ú‘·Û”¸Ü•¹Û—ºÚ™ºÛœ»Úš½Ý•Àã“Áå“Áå’Àä’À䑿㒾ᒾá¼ß»Þ»ÝºÜºÜŽ¹Û¹Ù¸Û¶Ý¶ß·â·â‘¸ã‘¸ã‘·ä’¸å–¼ë–¼ë–¼ë–¼ë–¼í–¼í–¼í—»í›¹ëœ¸êšµê—µé•´ê”µê”µë’·ì“·ñ‘¸ñ·òޏò‹¸ó‹¸ó‰·ó‰·ó‹µñŒ¶òޏôºö¹÷¹÷¸øŽ·÷Ž·÷Ž·÷Ž·ùŽ·ùµúµúµú޵ú’¶ÿ“µÿ‘³ý²ü‘³û”¶þ—¹ÿ™»ÿ™»ÿ˜ºÿ—ºþ—ºþ˜»ýš½ÿœ¿ÿž¿ÿ£¾ÿ¤¼ÿ¢½ÿ¡¼ÿ »ÿ »ÿŸºýŸºýœºúœºúœ»û›ºú›»ø™¹ö—·ôš´ñ¨è–›ÕŒ¼‡ˆ§€–zy‹zx}“ƒƒ‡‡¡††žƒ–‚”‚zzn†ratrXctW\rUWoSRlOKkJCjE=lA:m<7m:6m75f32[-/P&(G %@#A '@!)>'<&:$8"7!4 4 210/,+-2222222255443321.-,+*)((('$"!!#$%&'()*-"-"-",!+ )('$&),!-$,#+"*!%&(")#*$)#)%("+"+ + + + + + + &&''(()()+# /%#/$"/!!.1"4$2&0%-&)#%"!&)+06"$<)+B00C54I;8JA8M:6J54G13E/1C/.?.&<.!=/$>0%@2)B4+D5.F70@1.>/,;++7''3#$1!"/"."+)*(()++***)()(*12-*('),*+,,))(*-1 4#4#3"4#6!&9$);(,:'+7'*5%(3#&2"%0 #0 9&"8%9& ;("<*(;)'7%%3 ".!*%#$&!$#&"*"/$2%4&5#4!/++"' %(2$#<**C-0H.1M34O54S98V>UB>UB>TA=HJ5HJ5JI5JI5KJ6KJ6MJ7MJ7QL9PK8PK8PK8SL:TM;VO=WP>XO@XO@ZN>[O?\P@\P@]P?^Q@]N;]N;]N;]N;_N:_N:`O;_P;`Q>_RA`SBbUDeXEgZGg\Fh]Gh`IiaJhbHicIidGjeHjeHleHqcFteFvgHxiJzkL|mN|mN|mN|mN{lMzkLxiJxiJxiJxiJxkKwiLrgIncGlaEi^BeZ>^R8YM3TH0QE-MA)K?'K?)I='F:$C6#D9'D8(B6&A5%?3#>2"<0 <0 9-9-9-8,7+7+7+6*6(6(6(6(6(6(6(6(5'5'5'5'5'5'5'5'4'4'4'3&3&2%2%2%3&4'5( 5( 7*"7*"8+#:+$=,%>+%?,&A.(D1+H5/K82M:4N;5O<6P=7Q>8R?9S@:TA;TA;UBXE?YF@YF@ZGA\IC]JD`MGcPJeRLfSMfSMfSLiVHhUFgTEfSDhREhREjRHjRHkRKlSLpTPuYU}_]‡igqq’x{–…‹“ˆŽ•Š’–Œ”—˜˜’œ—”—• Ÿ¡­¢¦²¥«¹§°¿ª³Äª¶Æª·È¨¸È¥¸É ·ÉœµËœ¶Í›¹Ó™»Ö”·Õ´Ô”¸Ú”¸Ú•¹Û–ºÜ˜»Ûš»Ü›¼Ûš½Ý–Áã”Àã”À㓿⓿Ⓘᒾᑽà»Ý»Ý»ÝºÜºÜŽ¹Û¹Ù·Ú¶Ý·à·â·â‘¸ã’¹ä’¸å’¸å–¼ë–¼ë–¼ë–¼ë–¼í–¼í–¼í—»íš¸êœ¸êšµê—µé–µë–·ì—¸î”¹î“·ñ‘¸ñ·òޏò‹¸ó‹¸ó‰·ó‰·ó‹µñŒ¶ò·óޏô¸ö¸öŽ·÷Ž·÷¶ö¶ö¶ø¶øŽ¶û޶û޶û¶û’¶ÿ“µÿ’´ü‘³û“µý•·ÿ˜ºÿš¼ÿš½ÿš½ÿ™¼ÿ˜»ÿ™¼þš½ÿ›¾ÿœ½ÿ¡¾ÿ¡¼ÿ¡¼ÿ¡¼ÿ »þ »þŸºýŸºý»û»ûž¼úŸ½ûŸ½ûž¼úœºö ¸ö¢­íšŸÙŒ¼‚ƒ¢z{xw‰}{„‚˜„„ž†† ††ž„‚—‚”yŽ{o‡vexwam{bhzady_`wYWtSNqJEqD?rA=ZB@ZEBXEAWD@UC?IK6IK6KJ6KJ6KJ6KJ6MJ7MJ7PK8PK8PK8PK8RK9TM;VO=WP>YPAYPA\P@\P@]QA]QA_RA_RA^N>^O<^O<^O<_N:_N:`O;_P;^N>]P?_RAaTCcVCeXEeZDf[Eh`Ih`IhbHicIidGjeHkfIleHpbErcDteFwhIyjK{lM}nO~oP|mNzkLyjKwhIvgHvgHwhIviIvkMshJqfJodHmbFi^BbV<]Q7UI1RF.OC+NB*MA+K?)G;%C6#D9'D8(B6&@4$>2"<0 ;/:.8,8,7+7+6*6*5)5)7)7)7)7)7)7)7)7)5'5'5'5'5'5'5'5'4'4'4'3&3&2%2%2%4'4'5( 6)!6)!7*"8+#9*#:)";("<)#>+%B/)E2,I60K82L93M:4N;5P=7R?9S@:UBWD>WD>XE?XE?YF@ZGAZGA\IC^KEaNHdQKfSLiVHiVGhUFhUFiSFiSFjRHjRHjQJjQJlPLnRNsUSz\Z€bbghŠvwˆxy‰{{Œ}€Œ€„Œ…ŒƒˆŠƒŠ‘Œ““—˜–¡§ ¢®¦¨´«¯»®´Â«·Ç¥µÅ¢³Ç¡¶Ë¢ºÒ¡¼×›¹Õ•·Ó—ºÚ˜»Û—»Û˜¼Üš½Ýš½Ý›¾Üš¾Þ˜Àã•Âã•Àã“Àá”¿â’¿à’½à’½ß»ÝºÜºÜºÜŽ¹Û¸Ú¸Ø·Ú·Þ·à·â‘¸ã‘¸ã’¹ä’¸å“¹æ–¼ë–¼ë–¼ë–¼ë–¼í–¼í–¼í—»íš¸ê™·é˜¶ê—·ê—¶ì—¸í–¹ï–»ð“·ñ‘¸ñ·ò·ò·ó‹¸óжóжóŒ¶òŒ¶òŒ¶ò·ó¶ô¶ô¶ö¶ö¶ö¶ö¶ø¶øŽ¶û޶û޶û¶û’·þ”¶ÿ“µý“µý”¶þ–¸ÿ˜ºÿš¼ÿ›¾ÿ›¾ÿš½ÿš½ÿš½ÿš½ÿš½ÿ›¼ÿ ½ÿ¡¼ÿ¡¼ÿ¡¼ÿ¡¼ÿ »þ »þ ¼ýž¼üŸ½ý ¾ü¡¿ý¢Àþ¡¿ý ¾ú¤¼ú§²òŸ¤ÞŽ‘¾¡uuwuŠ€~”‰‡Ÿ……¡†† ………ƒ™‚”€x}q‰zk€€lxƒnu…nt†mp„ff\ZzQMyIExEAv?0/B41B94C>8DD.SC3UE6VD6TB6R@4SA7R@6P<5M92I4/D/*@+&=*#:,!9-9-!9-!;.%=0'?2*@3+?1.=/,:,+6('3%%1##0!$0!$+)*)*)++--.-+***//-+))*,-/.,*'''*--./012 8$&6#%5"$4!#1!"0 !/ .8%!6#6#9&":(&;)'8&&5##/"*$"#$"#+"-"0!2!45!6"!5&!,!.%4)#=0*G51O:9U;>V<=Z@A[CA]EC]HE]JF[IEYGCVGBJK9JK9JK9JK9LK9LK9KJ8KJ8NK:MJ9OI9OI9PJ:RLVO?ZQBZQBZQB[RC]QA^RB^RB^SA]P?]P?_P=_P=_P=_P=_N:^O:]M=\O>^Q@`SBbUBdWDdYCeZDg_Hg_HgaGhbHjeHkfIlgJmfIncEqcFseHugJwiLzlO|nQ}oR{mPzlOxjMvhKtfItfItfIugJujLtiKrgKrgKpeIlaEfZ@`T:VJ2SG/PD,OC+OC-MA+I='E8%E:(D8(C7'@4$>2"<0 :.9-7+7+7+6*6*5)5)5)7)7)7)7)7)7)7)7)6(6(6(6(6(6(6(6(4'4'4'3&3&2%2%2%5(5(5(6) 6) 7*!7*!8*!8' :'!;("<)#?,&C0*F3-H5/J71K82M:4O<6Q>8TA;VC=WD>WD>WD>WD>VC=VC=VC=UBVC=WD>YF@]JDbOIdQJhTIhUGhUGhUGhTIhTIiSHiSHnUNlSLmQMlPLnRNsWSw[Xy`\€khnj‚pl…so‡us†wt†vv…wwƒwy…{|Š…„‰“‰‘›”›§ §­ª³¶¸Å±·Ç¬´ÇªµÉ©¸Ï§¹ÑŸ·ÑšµÐž»Ù›½Ùš½Û›¾Üš¿Üš¿Ü›ÀÝ™Àß™Ââ—Ââ˜Àã•Àà•½à’½Ý“»Þ“¼Ü‘ºÚ‘ºÚ‘ºÚ¹Ù¸Ø¸Ø¸ØŽ¶Ù·Þ‘¸á‘¸ã’¹ä’¹ä“ºå“¹æ“¹æ–¼ë–¼ë–¼ë–¼ë–¼í–¼í–¼í—»í™¹ê™·é˜¶ê—·ê—¶ì—¸í–¹ï–»ð“·ñ‘¸ñ·ò·ò·ó‹¸óжóжóŒ¶òŒ¶òŒ¶ò‹µñ‹´ò‹´ò‹´ô‹´ôŒµõŒµõŒµ÷¶øŽ¶û·ü·ü·ü“¸ÿ•·ÿ•·ÿ•·ÿ–¸ÿ˜ºÿ™»ÿš½ÿ›¾ÿ›¾ÿ›¾ÿ›¾ÿ›¾ÿ›¾þš½ý›½ý ½ÿ¡¼ÿ¢½ÿ¢½ÿ¢½ÿ¢½ÿ¢¾ÿ¢¾ÿ¡½þ¢¾ý¤Àÿ¥Áÿ¥Âþ¤Áý£Àü¨½üªµõ¤©ã’•Â~~ ss‹wuŠƒ—‹£††¢……¡……Ÿ…ƒ™‚”€xs‰€q††u…ŠyƒŽzƒyrtŠff…YXPL€KGxA>m54a.-Y))P&'G##B !A"A"@#= =";: :87632100//////////..--,,,+++****)(%$"" !&&&&'''')(&$$%&')+ ,!-",#) &$%&(")#*$)#)%("$$$$$$$$##$$%%&%* !*" -#"0$$3$'1"%/$-"-",!,#*"'#&#$"% * +-.2!6#%9));-,?1.@72B;5B?8EGG=4A4+B2%H5'L:,P>0R@2TA3T@5S?4T@5S?4R>5O;2K7.F2)B.%?-#<.!:. 9-!9-!9,#:-$;.&1)F70O<8V><\?A]@B`HH_KJ`LK`NL^OL[MJXJGWIFKL:KL:KL:KL:LK9LK9KJ8KJ8MJ9MJ9OI9OI9PJ:RLVO?YPAZQBZQB[RC]QA^RB^RB^RB^Q@^Q@`Q>`Q>_P=_P=_N:^O<[N=\O>]P?_RAaTAdWDdYCeZDf^Gg_HgaGhbHjeHkfIlgJngJpeIrdGrdGtfIvhKxjMzlO|nQ|nQ{mPxjMvhKugJtfItfItfItiKshJshLshLshLodHh\BbV+%@-'C0*D1+H5/I60K82N;5Q>8TA;WD>XE?XE?XE?WD>VC=UBVC=UBZGA^KEaNGdPEeRDfSEhUGiUJiUJjTIjTIpWPnUNmQMlPLmQMpTPtXUt[Vzc]zf]~ja€nd„pi„qkƒplƒpl}kimkoo€pqƒsv}€œŒ¤—ž·¯ºµ³Á¶µÅ³¶Ç¯¶É©´È£³ÌŸ³Ì£½Ö ¾ØŸ¾Úœ¿Û›ÀÛ›ÀÝ™ÀÝšÁÞ›Âá™Âà™Àá—ÀÞ–½Þ”½Ý“¼Ü’»Û‘ºÚ¹Ù¹Ù¸Ø¸ØŽ·×Ž·×Ž¶Ù‘¸ß‘¸á‘¸ã’¹ä“ºå“ºå“¹æ”ºç–¼ë–¼ë–¼ë–¼ë–¼í–¼í–¼í—»í™¹ê™¹ê—·ê–¶é•¶ë–·ì•¸î•¸î“·ñ‘¸ñ·ò·ò޶ó·óŒµóŒµó·óŒ¶ò‹µñŠ´ð‰²ð‰²ðгóгó‹´ô‹´ôŒµ÷¶øŽ¶û·ü¸ý‘¸ý“¸ÿ•·ÿ–¸ÿ—¹ÿ˜ºÿ™»ÿš½ÿš½ÿš½ÿš½ÿ›¾ÿœ¿ÿÀÿœ¿ÿ›¾þœ¾þ¡¾ÿ£¾ÿ£¾ÿ£¾ÿ¤¿ÿ¤¿ÿ¥Áÿ¥Áÿ¤Àÿ¥Áÿ¦Âÿ¦Âÿ¦Ãÿ¥Âþ¦Àý¨¾ú¬·÷¨­ç—šÇ¥ttŽzxކ„œŽ‹¦‡†¥…„£„„ž†„šƒ€•wŒu‹…xŒŠ}ŽŽ€”‚Ž˜‰—z‘moŒ`aŠWV„LK|B@k32^+(T&&M%#F#!A?? ? >;;:998652100//////////..--,*+**+*+++*)&$##!!&&&&'''''&&%%%&')*,!-",#) '%%&(")#*$)#)%("$$$$$$$$""##$$%$) ( +! .$#1%'1"%-#)*))!'!&#&#%#&!,",..1 5"$6&&8*)=/,?61B;5@=6AC8MPE_eYlwi~Œ{…’€‡Ž|lxs_uoYrlToiQokRmiPkcPi]MfUK\KCQ>:H5/D0'H5'L9+O<.P=/P>0SA5UC7TB6UB4UA6S@2P=/L9+G4&D2$?1$=1#;/#9-!8+"8+"8+#8+#;-*:,)7)(4&%2$$0""0!$0!$-,++++,,1//-,))),,,**()+12310.+,-,,.22216"$6"$5!#3 "3 "2!0 !2 9&"8%7$ 9&";)'=+)<**:((2"#- '%%%"!(*/4 !9$#>&$>)$?,%;-$A3*H:1Q@8WB=\BAbDFdFHdONcQOdRPbSP`RO[PLXMIULGLO>KN=KN=JM^Q@`SBbUBdWDdYCeZDe]Ff^Gf`FhbHjeHlgJmhKohKrgKseHseHseHtfIvhKykNzlO}oR|nQykNwiLugJtfItfItfIshJriJriLsjMsjMofIh^CcY>[Q8VL3QG.ND+NC-MB,K@*J?+H=+G;+E9)B6&@4$=1!;/:.8,8,8,7+7+6*6*5)8*8*8*8*8*8*8*8*7)7)7)7)7)7)7)7)5'5'5'4&4&3%3%3%7)7)7)7)7)7)7)7) ;*#;(";(";("=*$>+%@-'B/)F3-G4.J71M:4Q>8UBYF@YF@XE?WD>VC=UBVC=UB===<<:9999765430........//..---**)*+*+,,*)&$##!"''''&&&&%%&'''&&()+ ,!,#*!(&%&(")#*$)#)%("$$$$$$$$!!""##$#(() -#$0$(/#')!%'%%&% % &!&!-#, ,,.1!"4$$6('=/,?61B;5@=6@@6ILA[aUgrdyŠzƒ”„‹–†ˆŒ{~lwtarkXkeOnhRmeRm`Ol\MiULcJEZ>:S73I2*J6+M:,M;-M;-N>/SC4WG8TD5VE5WE7WF6VC4R?0P:,K8)C6&@4&=1%:."8+"6) 5( 5( 9+(8*'5'&2$#0""/!!/ #/ #..-,,-..210-,*)',--++))+/120/.-,0../36 317!#6"#5!"5!"4""3!!3!!3!!;($9&"8%!9&"<*(>,*>,,=++4$%/ )&&&#"). 6$"<)%A,'F/)E1(D2(I8.O>4UD:[HA`HDdHEiIJjLLhSRdUReVSdVS_TP[RMWNITMGLO>LO>KN=JM^Q@`SBbUBdWDeZDf[Ee]Ff^Gf`FhbHjeHlgJmhKohLshLtfIseHseHtfIugJxjMykN~pS}oRzlOxjMvhKugJtfIrgIqhIqhIriLsjMtkNpgJi_DcY>]S:XN5QG.MC*MB,MB,MB,K@,J?-H<,F:*C7'@4$=1!;/:.9-9-8,8,7+7+6*6*8*8*8*8*8*8*8*8*7)7)7)7)7)7)7)7)5'5'5'4&4&3%3%3%8*8*7)7)7)7)6(8'=*$=*$<)#<)#<)#=*$?,&@-'E2,G4.J71M:4Q>8UB8Q>8WD>VC=UBZGA[HA]KA_MAbPDeSGhTKiULiULiULiRJgPHfMFdKDdKDgNGmRKmTMoYNs]PxbU}gZk`‚la‚kcjb~e`hchd}d`y_^z`_‚hgˆorŒw~‰”±¡¬¾°½¿·Ä½¹Èº»Í¸¿Ñ°½Ðª¿Ò§ÀÖ¢ÁÖŸÂØžÂÚœÁÛšÂÛžÃÞžÁÝÀÜ›¾Ú™¼Ø–»Ø•º×’¹Ø‘¸×‘¸×·Ø¸ØŽ·×Ž·×¶ÖµØ‘¸ß’¹â’¹ä“ºå“ºå”»æ”ºç”ºç–¼ë–¼ë–¼ë–¼ë–¼í–¼í–¼í—»í™»ë˜ºê–·ê”µè“´é’³è³é‘´ê“·ñ“·ñ·ò·òµó޶óµóµó·óŒ¶òŠ´ðˆ²î‡°î‡°îˆ±ñ‰²òгóгó‹´ö¶øŽ¶û¸ý‘¹þ’¹þ“¸þ–¸ÿ˜ºÿ™»ÿš½ÿ›¾ÿ›¾ÿ›¾ÿ–¹û˜»ý›¾þÀÿŸÂÿŸÂÿžÂÿžÀÿ¢Áÿ¤Áÿ¥Àÿ¦Âÿ§Ãÿ¨Äÿ¨Äÿ©Åÿ©ÂÿªÄÿªÄÿªÂÿ©Áÿ§¿û§½ù¨ºø­·õ­²ì £Ðˆˆ¬zz”}•‰†£Ž‹ªˆ‡©„ƒ£„ƒ¢‡…ƒ€•~v‹ƒw‹“Ž…˜‡˜–ˆ—œ†“ž~‰›s{™hn—`eˆPQzBAg11X&%O#"I#"B =<<<;;99899765431........///..--+))*+*+,,*)&%$#""''''&&&&$%'()(&%')+ ,!,#+"('%&(")#*$)#)%("$$$$$$$$!!!""###'&(!,!%/$(-"&( "$#$$$%&!&, "-!-,.0 !3##4&%=/,@72C<6@=6??5HJ?Z]Rfnau…xƒ“†›Ž”†…†v{xgqjXh`Mg_Lh]KiYIiVGkPEfH>`=7X70M5+K9+M;-K;,K;,L?/RE5WL:SF5WG7XH8ZI7YF5VC2T?.O<-G7(B6(?3';/#8+"5(4'3&8*'6(%4&%1#"0""/!!."/"0..-.-//110/,*)(.--, +)*,-/// - - -,1/.157!6 27!#7!#6"#6"#5!"4""4""4" <)%:'#8%!:'#=+)?-+?-->,,5%&1!"*'''$",!2%9*%B/)G3,K4,L6+J6+SA5XF:^LBbNEfMIhLImMNoQQiUTfWTfXUcXT`UQ[RMVOITMGNRAMQ@MP?KN=IL;GJ9GH8FG7JH9JH9JH9JH9KH9KH9KH9KH9QK?RL>TL?VNAXPCZSC\SD]TC_SC_SC_SC_TB_RA_RA_RA_RA\O>]P?]P?^Q@aTAdWDeZDg\Fe]Ff^GhbHkeKmhKniLojMpiMqhKrgKrgKtiMujNxmQ{pT|qU~sW}rV|qU{pTzoSxmQwlPwlPulMrlLqjMrkNrkNngJhaEc\@b[A[T:SL2MF,KC,KC,JB+IA,I>,H<,F:*C7'A5%>2"<0 ;/9-9-9-9-9-9-9-9-8*8*8*8*8*8*8*8*7)7)7)7)7)7)7)7)6%6%7&7&8'8'9(9(;* ;* ;* ;* ;* ;* ;* ;* ;(";(":'!:'!:'!<)#=*$>+%F3-H5/J71L93N;5O<6O<6O<6S@:TA;UBcKAgOEjRHhTIiUJlXMo[Ps_VwcZ|e]}f^}d_{b]za\x_Zz^[|`]}a^}cd‚gnˆnw•~ˆ§“ž¸¨³À´À¾¸Æ¶¸Å²¹É±¾Ï¬¾Ò¢»Ï¡½Ò¢Â×ŸÂØ˜¼ÔŸÁÜŸÁܿڜ¾Ùš¼×˜»×—ºÖ•º×”¹Ö’¹Ö’¹Ø‘¸×¹Ù¸Ø¸Ø·Ú‘¸ß’¹â’¹ä“ºå“ºå”»æ”ºç”ºç‘·æ‘·æ’¸ç’¸ç“¹ê”ºë•»ì–ºì˜ºê–¸è”µè‘µç´è‘µé’µë“¶ì‘µï‘µï´ð޵ðŽ´òŽ´ò³òŒ´òŒ¶òŒ¶òŒ¶òŒ¶òŒµóŒµóŒµõŒµõ¶ö¶öŽ·ù¹û’ºÿ“»ÿ”¼ÿ–½ÿ—¼ÿ™»ÿš½ÿš½ÿ›¾ÿ›¾ÿœ¿ÿœ¿ÿ›¾ÿ›¾þ›¾þœ¿ÿœÀþÁÿÁÿŸÁÿ£Âÿ¤Âÿ¤Âÿ¤Âÿ¦Âÿ¨Äÿ¬Åÿ­Æÿ¨ÀÿªÂÿ­Åÿ°Æÿ¯Åÿ¬Âþ«¿ü«¾ù¯¹÷¯´îŸ¢Ï……©xx”‚šŠ©Œ­‹°‰ˆª‚¡~{–}zƒ{Œ€”„˜‰›š‘¤ ’£Ÿ‰–œ|‰›q{™gp•^dŠRUv@@a-/T&&L#!A;;<<998876: 8762100.,,,,,,,..-,++**()))))**(('''!'!%!%#$%&()**((''&&%%(((((((((!' '!& %$#" !!""###%$!  #&'& %&!*#.#',#&(!"   !"$$()+*+-3##6('>0->50@93B=7FC:KMBVXMZ`Vmzp€ƒ“’–œ‚„~pvm\k`Nk^KaR=fT@r[IsVFsOAtJ>gA6P9+M=-N>.J=,H=+IA.OG4UM8[P,*>,*@.,B0.;++7''0"!,*++,!0%!8+#@1*I6/P91U=3ZB8]G:^J?dPEkWNnZQpWSrTRsSTsUUjVUgWWfXWcXV`US\RPWOLUMJNRAMQ@MP?KN=IL;HK:GH8GH8JH9JH9JH9JH9KH9KH9KH9KH9QK?QK?TL?UM@WOBYQD[RC\SD_SE_SC^RB^RB_RA_RA_RA_RA\O>\O>]P?^Q@`S@bUBdYCeZDd\Ef^GhbHjdJmhKniLniLohLqhKrgKrgKshLujNwlPynR{pT|qU|qU{pTzoSynRynRxmQwnQsmMrlLqjMrkNrkNngJibFd]Ab[A\U;TM3NG-LD-LD-KC,IA,H=+G;+E9)C7'@4$=1!;/:.8,8,8,8,8,8,8,8,8*8*8*8*8*8*8*8*6(6(6(6(6(6(6(6(6%7&7&8'8'9(9(9(;* ;* ;* ;* ;* ;* ;* ;* ;(!;(":'!:'!:'!<)#=*$>+%C0*D1+F3-I60J71K82K82K82N;5O<6R?9TA;VC=WD>XE?WD>YF@YF@YF@YF@YF@YF@YF@YF@]LD^ME`OGbQGeSIgUKjVMkWNiULfRIdMEaK@aI?bJ@eMCfPEeQFfTHiULmYPp\St`WxaYzc[za\y`[x_Zw^Yy]Zz^[{_\|`_~afƒemryƒŒ­˜¡¼«µÄ¸ÂÆÀÌ»ºÈ¸Àͳ¿Ï©ºÊ¥¼Î¦ÁÔ¤ÀÕž½Ò¢ÀØ¢ÀØ¡¿×ž¾×œ¼Õ™»Ö˜ºÕ–¹Õ•¸Ô”¹Ö“·×‘¸×·Ø¸ØŽ·×Ž¶Ù‘¸ß‘¸á‘¸ã’¹ä’¹ä“ºå“¹æ“¹æ¶å¶å‘·æ’¸ç’¸é“¹ê”ºë”ºë•¹é“·ç’¶è´æ´è´è‘´ê’µë´î´î´ð´ðŽ´òŽ´òŽ´óŽ´óµòŒ¶òŒ¶òŒ¶òŒµóŒµóŒµõŒµõ¶öŽ·÷¸ú¹û’ºÿ”¼ÿ•½ÿ–½ÿ—¼ÿš¼ÿš½ÿ›¾ÿ›¾ÿœ¿ÿœ¿ÿœ¿ÿ›¾þ›¾þœ¿ÿœÀþÁÿÁÿÁÿŸÁÿ£Âÿ£Áÿ£Áÿ£Áÿ¥Áÿ§Ãÿ«Äÿ¬Æÿ¬Äÿ­Åÿ°Æÿ°Æÿ±Åÿ¯Ãÿ­Áü¯¿û®¸ö¨­ç—šÇ……©||˜„œŒ«•‘´“‘¸‹°„ƒ£€}š€|“…}’Œ€”Ž‚–’‰ž—Ž¡Œžš‚’™w…šp|˜fo’]eJOm9;Z),O#$F =89999786658 563200.++++++++-,,,,+++))****++))( ( ("("&"& %%&'(*+ + (((''&&%'''(() ) ) (!(!'!& %$## !!!""##%#!  #&'!&"% &!)$+"'*!$%"""#%&'(-!#-!#/!!,,.3##7)(@2/@51C:5C>8EB9JJ@QQGUXOeofw‚zŒ“‹‘”‰ŒŠ~ƒ}ovm^m`Ol]JbQ=iWAwaJz[FyTAzL+LA-ME0RJ5UO9[S>WO:VJ4VG2WF2VD0V?-R=,L:,G7*B1'>-#=,$;*"8' 5$3!3!4""3!!2!/-+/0/0/0//101/.,,+.0/ . +*.14301220.00/02589!!:""7"!5 434 5! 6"!>+'@-)B/+A.*>,*=+)?-+A/-<,,9))3%$. ---" /$"2'!:-$D3+K9/U=3\A8cH=fNBfPEhTImYPpYSpWSpTSrRSqTVkWXgWWeWVbWU_TR[QOXPMWOLNRCMQBLPAKO@IM>GK\O>\O>]P?^Q>aTAbWAcXBd\Ef^GgaGjdJlgJmhKniLohLpfKpfKpfKqgLrhMukPwmRxnSyoTyoTxnSxnSxnSxnSxnSwnQsmMqlLojLpkMpkMniKhcFd_Bb\B\V+%?,&@-'B/)E2,F3-G4.G4.G4.H5/K82N;5R?9VC=YF@ZGA[HB[HB[HB[HB[HB[HB[HB[HB[HB\KDZLC^ME`OGbQIdSKgUKgUKfRGdPEbNC`LA`J?`J=`J=aK@bNEbPFeRKhUNlXQo[Tq]Vr^Wu^Xt]Ws\Vr[UsZUt[Vu\Wx\YwX]z[abh‹muš‡®™ Ã²ºÎÃËýÇÃÃÍ¿ÃÏ´½Ì¬¼Ìª¿ÐªÁÓ¥¾Ò¦ÁÖ¤ÀÖ£¿Õ ¾Öž¼Ô›»ÔšºÓ˜ºÕ”·Ó“¸Ó’·Ô·Ô¶Õ¶ÕŽ·×µØ·Þ·à·â‘¸ã‘¸ã’¹ä’¸å’¸å¶å¶å¶å‘·æ‘·è’¸é’¸é’¸é’¸ç‘·æ¶çµæŽ³ç޳ç´é´é´î´î´ð´ð´ò´ò³óŽ´ó޶ó·ó·ó·ó¶ô¶ô¶ö¶öŽ·÷Ž·÷¹û‘ºü“»ÿ”¼ÿ•½ÿ—¾ÿ˜½ÿš½ÿš½ÿ›¾ÿ›¾ÿœ¿ÿœ¿ÿÀÿ›¾þœ¿ÿœÀþœÀþÁÿžÂþžÂþŸÁþ¢Áÿ¡Àÿ¢Àþ¢Àþ¤Àÿ¦ÂÿªÄÿ«Åÿ°Èÿ±Çÿ²Æÿ²Æÿ³Æÿ³Æÿ²Åÿ´Âÿ°¸÷ ¥ßŽ‘¾……©‚ ‡„¡‘®œ˜½š˜À’·‡†¨„ž…˜‹ƒ˜Ž‚–Ž•”ˆœ˜‹œ‡š™|Ž™uƒ™mz”bmŠW^r?Da03P#&G A857777 564414 3310-.,*))))))))****+++**++++,,+ + *"*"*$*$($("''()*+ + ,!)((''&&&&&'(() *!*!)")"("'!& %$ $   !"""#$#! !#%& &"%!%"'"'#$"!##$( * !+! , -!!0&'0&'/##, ,. 3%$8*)A30C84F=8HA;HD;HH>MMCOPH\aZmtm„}†‡…‚y€znxl^m`Oj[HaQ:jX@zdL€bJ€\DT=uJ7Z;'R;)P;(O>*SD/VJ4VN7XP9]U>YQ:WK5VG2VE1VD0XA/U@/N;-I7+C1'@.$>+$<)"9& 6#4 4 4 !3 1/-,.-..-./.320..-++/3 3 "1!".+,/4324442.1123569 9!!<$$;##7"!6! 5 5 5 5 >*)@,+B.-A-,=+)<*(=+)?-+>/,<-*7)&3%"1# 1# 2'#4)%8+#>0'H5.P<3[@7cF>kNFqTLmUKnXMnZQmYRnVTnTUqTVpVYlXYgWXdVV`TT^RR[QPYQOYQOMQBMQBLPAKO@JN?HL=HJOK?RL@SMATN@UOAWOBXPCZQBZQB[RA[RA]QA^RB^SA^SA]P?]P?\O>\O>]P=_R?`U?aV@c[De]FgaGicIlgJmhKmhKniLpfKpfKpfKpfKrhMsiNukPwmRvlQwmRwmRwmRwmRwmRxnSvoRslOpkKojLojLojLniKidGe`Cd^D^X>WQ7QK1OI1MG/KE-HB,G<*F:*D8(B6&?3#<0 ;/9-6*6*6*6*6*6*6*6*7)7)7)7)7)7)7)7)4&4&4&4&4&4&4&4&7'8(8(8(9):*:*:*;+;+;+;+;+;+;+;* ;(!;(":'!:'!:'!<)#=*$>+%=*$?,&A.(C0*E2,F3-F3-F3-G4.I60M:4Q>8UB_I<^H;]G<_KB`LEbNGdPIgSLiUNkWPlXQpYSoXRoXRoXRpWRpWRpWRqXTqRWuT[wX^|]cˆkpœƒ‡µ ¥Æµ»Ê½ÄÍÆÎËÉÔÀÄ϶À̳ÁΰÀϬ¿Ð©¿Ô¦ÁÖ¥ÀÕ¢¾Ô ¼Ò»ÓœºÒšºÓ•·Ò”·Ó’·Ô’·Ô¶Õ¶Õ¶ÖµØ¶Ý¶ß¶á·â·â‘¸ã‘·ä’¸å¶å¶å¶å¶å¶ç¶ç‘·è‘·è¶å¶åµæµæŽ³çŽ³çŽ³èŽ³è³í³í³ï´ð´ò‘µó‘´ôµô޶ó·ó·ó·ó¶ô¶ô¶ö¶ö¸ø¸ø‘ºü’»ý”¼ÿ•½ÿ–¾ÿ˜¿ÿ˜½ÿ›¾ÿ›¾ÿ›¾ÿœ¿ÿÀÿÀÿÀÿœ¿ÿœÀþœÀþÁÿÁýžÂþžÂþŸÃÿ¡Àÿ ¿ÿ¡¿ý¡¿ý£¿þ¥Áÿ©Ãÿ«Ãÿ²Èÿ±Çÿ±Åÿ´Æÿ¶Éÿ¹Éÿ¸ÈÿºÅÿ±¹øšŸÙˆ‹¸ˆˆ¬‰ˆ§Š‡¤’ޱ ›ÃŸœÇ•“»‹‰®‰†¥Œˆ¡’ŠŸ”ˆœ’…™–‰ŒŸŸˆœž‘œv…•iv†WawENd5;V),H#B <647!544 2310/1 ..-,++*(((((((((())*+, ,++,,,,,- ,!,!+#+#+%+%)%)#) ))*+ ,!,!,!)))('''&&&'(() *!*!)")"("'!& %$ $    !!"""#"! !"$$'!%!$!#!!# $ '!!)##-%#.$#0$$0$$0&'0&'/##, ,. 5'&:,+C52E:6K@)X?)ZF.]M6]Q9]S:^S=[P:WK5VG2TC/UC/VA.VA0R*)@,+A-,@,+<*(;)'<*(>,*@1.?0-<.+9+(6(%7*$8-);0*>1)F5-M92V=6^A;eG?mOGsUMrWNoVOnWQkVQkVUnUXqWZrY]lXZgWXdTU`RR\PP[QP[QP[SQKQCKQCJPBIOAJN@IM?JL?IK>GI^S=_T>c[Dd\Ef`FicIkfIlgJmhKmhKqgLqgLpfKpfKqgLsiNukPvlQukPukPvlQvlQvlQvlQvlQunQslOpkKniKniKojLniKjeHgbEf`F`Z@YS9TN4QK3OI1KE-HB,H=+G;+E9)B6&@4$=1!;/:.6*6*6*6*6*6*6*6*7)7)7)7)7)7)7)7)4&4&4&4&4&4&4&4&8(9'9':(;););)<*<*<*<*<*<*<*<*<*;(!;(":'!:'!:'!<)#=*$>+%>+%?,&B/)D1+F3-F3-G4.F3-I60K82N;5R?9UBXE?YF@]JD]JD]JD]JD]JD]JD]JD\KDZHDYJCZKD[LE_NF`OGaPFbQG`NB`NBaN@aN@`M?^K<^H:]G:`IC`HDbKEcLFeNHgPJhQKiRLkTLkTLkTLlUMlUMkTLkTLlSOoPUqRXtUZuV[{\aŠmqž…ˆ­—šÇ´¸ÏÃÇÕËÓÌÉÐÁÄÍ»Á͸ÀͲ¿Ï«ÀѧÀÔ¦¿Ó¤¿Ô¢½ÒŸ»ÑœºÒ›»Ô•·Ò”·Ó“¸Õ’·Ô·Ö¶ÕŽ·×Ž¶Ù¶Ý¶ß¶á·â·â‘¸ã‘·ä’¸å‘·æ‘·æ¶å¶å¶ç¶ç¶ç¶çŽ·åŽ·åŽ¶çµæ´è޳ç²ç²çŽ²ìŽ²ì²ï‘³ð‘³ò’´ó“µõ’µõ·ôޏôޏôޏôŽ·õŽ·õŽ·÷Ž·÷¹ù‘ºú’»ý“¼þ•½ÿ–¾ÿ˜Àÿ™Àÿ™¾ÿ›¾ÿ›¾ÿœ¿ÿÀÿÀÿÀÿžÁÿœÀþÁÿÁÿžÂþžÂþŸÃÿŸÃýŸÃý¡Áþ Àý¡¿ý¡¿ý£Àü¥Âþ©Ãÿ«Ãÿ±Çÿ°Äÿ±Äÿ´ÇÿºÊÿ½Ëÿ¼Ëÿ»Çÿ°¸ö—œÔ‡‰¹ŒŒ²Ž®Ž‹ª”µ¡œÅ Ê˜•À²Œ«“¨š’§œ¤›ŒŸ›Š£Ž¡§ŒŸ¤‚“t„anvGQ`19Z-2N%)B#?$;#6 4$7'1!10 //..+,++**)))((((((((''()* * +!+++,,,,,- -"-",$,$,&,&*&*$*!*+ + + ,!,!,!*)))('''&''(() ) *!)"(!("'!%$$ #     !!"!!!!!"##&!$!"!" !$#!)%$,'$0(&2('3(&2&&0&'.%&-#"* )-!!6('<.-B41F;7MB>PICPLCQNETQHTTLTSN_`Zjmfqrjvvlxtiqi\h\NbVFWJ7\Q;l^Dv`HcKdPŒ_J~O=vI6lC1gB/fG2gN8gS;eU<^R:]Q9ZN8XI4VE3UB1UB1WA3X@4S;1M4-I0)G.)D+&@'#=$ <"#;!"9"64210,,-///0196300../67!:!%8"%3!/-/5446772/34567:;! <"!?%$=%#=%#<$"8# 7"5 5 =)(?+*@,+?+*<*(;)'=+'?-)B3.C4/B5/@3-3-D7/F70M:3U>8\A:aB=gFAlKFqPKpSMlSNjRNhSPjTVmWZpZ]r\_kWYgWXdTU`RR]QQ\RQ\RQ]SRKQCKQCJPBJPBKOAJN@KM@KM@GI^S=^S=bZCd\Ef`FhbHkfIlgJlgJlgJqjNrhMrhMqgLrhMsiNukPvlQvlQukPukPukPukPukPtjOrkOrmOpkKmhJmhJniKniKkfIidGgaGb\B[U;VP6SM5PJ2LF.HB,I>,H<,F:*D8(A5%>2"<0 ;/7+7+7+7+7+7+7+7+6(6(6(6(6(6(6(6(5'5'5'5'5'5'5'5'9':(:(;);)<*<*<*<*<*<*<*<*<*<*<*;(!;(":'!:'!:'!<)#=*$>+%>+%@-'B/)D1+F3-G4.G4.G4.K82M:4P=7S@:VC=WD>XE?XE?\IC\IC\IC\IC\IC\IC\IC[JC[IEYJEZKD[LE^MF`OG`OGaPF^L@_MA`M?`M?`M>_L=`J<_I#<$8&3#3%8*/"..--**))((((&('()))))))((())))***++++,,,!,!+#+#+%+%)%)#+"+ + + + + + + ***))(('(((((((((!' & %$#""     !!!   !!"""$" !! %#$'&$-)&0,)5-+6.,7,*6,*3*+2)*/%$+! *-!!7)(=/.B41G96LA=QHCRKCSOFVSJYVMTTL\]Wdg^knessixulsk`g]Q_VGQH7SL9aYBk[Dx_I†cOŠ]JŠRAˆO>€K9zK9vM9rR=oU>lX@cS_P;[L9XG5XE6[E8_D;Z?6U82P5.N1-J.*G)'C'$B$&?"$=#9 7443..001244=!;6311017:!:$9 $3 /027654542045678;<"!=#">$#>$#=%#=%#:%"9$!7"6!:&%=)(?+*?+*<*(<*(>,(@.*D50G83H;5F93B5-B5-D:1K>6N=6T?:]D?cFBgFAiFBlIEmLGmPLhOKfNLdPOhTVlW\nY^nY^iTYgTVfSUbRS`RR]QQ]QQ\RQKQCJPBJPBJPBKOAKOAKOAKOAGIVNAVNAXO@YPAZQB\SD_SC_SCdWFcVEaTC_RA^Q>^Q>^S=^S=bZCd\Ee_EhbHjeHkfIlgJlgJrkQrkQqjPqjPqjPrkQslRtmStmStmSslRslRrkQqjPpiOpiMrmOojJmhJlgIniKniKlgJjeHhbHd^D]W=XR8UO7QK3LF.HB,K@.J>.H<,E9)B6&@4$>2"=1!8,8,8,8,8,8,8,8,6(6(6(6(6(6(6(6(6(6(6(6(6(6(6(6(:(:(:(;);)<*<*=+<*<*<*<*<*<*<*<*;(!;(":'!:'!:'!<)#=*$>+%<)#>+%@-'B/)D1+E2,E2,E2,K82M:4P=7TA;WD>YF@ZGAZGA\IC\IC\IC\IC\IC\IC\IC[JC\JFZKF[LG\MF]NG^PG`OGaPF^L@^L@_L>_L>`M>`M>aN=dN@dI@eHBeHBeJCfKDgLEgLEeMChMDgOEiQGjRFiSHhREfPEfMHgJNjMRnOToPUpRTtVX|^^df–~~¯›œÊº»ÓÇËÐÆÎÊÅÌÄÁʼÀ̰ÀϪÁÑ©ÀÒ¦ÀѤ½Ñ¡¼ÑŸ»Ñ»ÓšºÓ˜ºÕ—ºÖ•º×’¹Ø’¹Ø‘ºÚ¸Û‘¸ß‘¸á‘¸ã’¹ä’¹ä“ºå“¹æ“¹æ”ºé”ºé“¹è’¸ç’¸é‘·è¶ç¶ç޷叿¸é‘¹ê¸ë޶é´é²çŽ±ëŽ±ë±î²ï’´ó“µô–µö”¶ö¸õ¹õ¹õ¹õ¸ö¸ö¸ø¸ø’»û’»û“¼þ•¾ÿ—¿ÿ˜Àÿ™Áÿ›Âÿš¿ÿœ¿ÿœ¿ÿÀÿÀÿžÁÿžÂÿŸÃÿÁÿžÂÿžÂþžÂþŸÃýŸÃý Äþ Äþ£Ãÿ¢Âÿ£Áý£Áý¥Âþ§Äÿ¬Äÿ­Åÿ´Èÿ²Æÿ³Æÿ¸Èÿ¼Ëÿ¼Èÿ³¿û«µòŸ§å”™ÑŽÀ””º™˜¸›—¸ ›Ã§¡Í¦£Ð¢ŸÊ›Â›˜·›—°Ÿ—¬£—«§–©§¤ª¡£€”hz|P_l>I[-7K 'I"'>!9 8$5&0#1$5(- + + **(('&&&$%$%%) ) ) ) ) ) ) ) (((''''&))****++,!,!+#+#+%+%)%)#+"*******+ **))(((+ **)'&&%&&%$#"!!       !   !!""!#!!!"%%%)))-,*3/,730<41=52>31<20=459335-+0&%-!!/##7)(=/.B41F85J?;MD?OH@PLCSPGVSJTTLZ[Sad[hkbstlzzpwphjcY\VJNH:OL;\WCcVCmXEyZHQBN?”O@“TCWFˆXD€WCxXCrYCjU@jZCk\GiZGdTD_O?]K=`J=dI@`C;[<7U82S41O2.L-+H*(E%(B$&@ %;!967600223467@$=!8422259;!;#8"2147!:"84231/.56789< ?#"@$#<"!=#"=%#>&$>&$=%#9$!8# 7#":&%=)(>*)<*(=+)?-)B0,E61J;6L?7J=5F91F91I?5PC:RA:[C?eIEkLIoLJpJIpJIoLJlNLfMIbMJbNMfRThUYhU[gRYgRWfSWfSWdTWbSV_SU]QS\PRIQBIQBIQBIQBJPBJPBIOAIOAFJQK?QK?QK=UM@VNAXO@YPAZQB\SD]TC_SCeXGdWFdTD`SB_R?_R?_S=^S=dYCc[Df^GibHkdJkeKmfLmfLtmSukRtjQsiPtjQslRtmSunTunTunTtmSrkQqjPpiOohNmgMrmPnjMkgJkgJmiNmiNlhMieJhdKc_F]Y@XT;UP:QL6KF0HB,JA0I@/G>/D;*A8'?6%=4#<3"7.9-9-9-9-9.9-9-6(6(6(6(6(6(6(6(7)7)7)7)7)7)7)9(:(:(;);)<*<*=+=+<*<*<*<*<*<*<*<*;(!;(":'!:'!:'!<)#=*$>+%:'!<)#>+%@-'B/)C0*C0*C0*J71L93P=7TA;XE?[HB\IC]JD[HB[HB[HB[HB[HBZIB[HBZIB]KG]KG]KG^MF_NG`OG`OGaPF^L@^L@]K=]K=`M?`O?bQAgQCeJAgIAfICgJBgJDfKBgLCgLCgLCfNDhPDhREhREgQDeOBdMEbHIeKNjMQlOQoQSrTTwYYz^]gh¡‰‰Ã¯°ÔÁÃÔÅÊÏÄÊËÁÉÁÀȵ¾Í®¿Ï¬¿Ð©¾Ï§¼Ï£¼Ð »ÐŸ»Ñ›»Ò™»Ô—»Õ–»Ö“º×“º×’»Ù‘ºÚ‘¹Ý’¹à“¸â“ºã”¹ã•ºä•ºæ•ºæ–»è–»è•ºç”¸è“·ç“·é’¶è’¶æ’¶æ“·ç”¸è”ºë”¸ê’¶ê´è²è°èޱ鑱ì³í’´ñ“µò–µõ•·ö¸õ¹õ¸ö¸ö¸ö¸ö¸ø¸ø’»û“¼ü”½ÿ•¾ÿ—Àÿ™ÂÿšÂÿ›ÂÿšÀÿœ¿ÿÀÿÀÿžÂÿžÂÿŸÃÿŸÃÿÁýŸÁþŸÁþ Ãý Ãý¡Äþ¡Äþ¡Äþ£Ãþ£Ãþ¤Âþ¥Âü¦ÃÿªÄÿ­Åÿ±Åÿ¸Ëÿ¸Èÿ¸Æÿ¼Èÿ¿ÉÿºÃþ®¶ô¦¬èšŸ×•—Ê‘’¾–•½›™¾žœÁ£¡É©¦Ó©¦Õ¦£Ò¢ ÈŸ›¾–·ž•°¢•¯§•­­‘§¬‹ œv‹Xji?M\1;T)2L%*B#:55 2!--!2&+ * ))''&$%##$##$%+!+,!++!++!+* )(('&%%'()())**+ + *"*"*$*$*$*"*!***))))+ + **))((.#.#,!) )&$$%%$#"!       !!     $#(&).,-3/0843=77B9:C98B89A78F=>B9:=324*)/##0$$7)(<.-B41F85H=9K@RKCTPGSSIXZO^aVgj_twl}}syvmmi^ZVKLH“OBžXL£^OŸ\L“XF†VB|XBrXAp^HpdNobOk\IfUEeOAhNAhLAdF<^@8Y;3V72R5/N1-K,)G'(G%&D $@ =:9844446889D%B#>97457;> >!: 86: >#B$=7534108::;>>A!"B$"> >">$#@'#@&%>&"<$"9$!6"#8&&<()=)(=)(=+'@.*A2-F72K<7Q?;P>:L;4I:3M@7TF=UB<^FBiMJpRPqRPrPOoPNnPNiONeMK`LKaOOdQSeRVcPV`MSePUfQVhSXgTXdTWaRU_PS[OQEPBEPBFQCGRDIQDJREKSFKSFFL@FL@GJ?GJ?FI>EH=EGPM>QN?QK=RLXQAYR@ZSAZSA[RAeUEeVCeTBcTAcTAbS@aR?_R?cVCcXDeZFg\Fj_IkcLodNpeOthRuiSvjTwkUwkUujTtiSshRujTujTskTrjSoiQmgOjdLicKigPigPigPjhQjhSkiTkiTkiTigRfdO`^IYWBTR=OM8MK6LI6HB2E?/B<.A;+C<,B;+@9'=6$<5#;2!916.5-5-8-8-7*7*6)6)5(5(4'4&7)7)8*8*9+ 9+ :,!<+!<* =)=) =)=) =)=) =)?+">*>*!>*>*!=)=) =) ;' ;&!;&!;&!;&!;&!;&!;&!=(#>)$?*%@+&B-(C.)E0+E0+I5.M92S?8XD=\HA]IB[HAZG@\KC\KC[JB[JBZIAXJAYH@YH@]JD^KE_LF`MFaNGaNG`MF_MCaQDaQDaQDbRCcQCbRCbRCcQChMBhLAgJBfJ?fKBgLAjODiQEjRFkSGkSGiSFhREdQCbOA`LAdMGdLJdJIeKJjNMnRQsUUuWWx[]‘tv¬’“©¬Ñ»¾ÛÇÉØÅÉʿŻ»Ç·¾Î¸ÁÒ³ÀЬ½Í¦»Ì¢¼Í¡¾Ðœ½Ðš½Ñ˜¼Ò–¼Ó”¼Õ–¾Ø—¾Û˜¿Ü”»Ü”»Ü–ºÞ”ºÞ–¹ß–¹ß–¹á–¹ã—¸å—¸å—¸å—·æ—·è—·è—µç—µç•³å•´ã•´ã”´å•³å”´ç”´ç”´ç¯å±æ‘°ç‘²è’³é“´ê”´í“¶ð·ôŒ¸õŒ¸÷¹øŽºù»ú»ú¼û“¿þ”Àÿ•Áÿ–Âÿ–Âÿ•Áÿ”Àÿ•¾üšÁüÁûŸÃý Äþ¢Åÿ¢Åÿ¢Åÿ¡Äþ Ãý£Ãþ¤Äÿ¥Åþ¦Æÿ¥Åþ¥Äý¥Äý¥Äý¥Äý¦Ãý¦ÃûªÂþ­Ãý¯Ãþ³Ãþ·Æÿ½ÉÿÁÉÿÁÇÿ»½ú°²í¨¨æ¥¤Ýš˜Ç›ÃžœÄœšÂš™Ãœ›Ç ¡Ñ¥¥×¤¤Ö žÐ¢žÐ¨¢Ð§žÉ¡–¾¤•¼®›»¶•°¤~•†_tnGZa;JX2=O*2G$*> "= "9 631/ ,*!(!' ' &&%$"!!!!!!$/ 02 00 0/ /*('%$$%%'&)'''&%%%&'() *!*!.%.%-$-$,#+"+"*!) ) +"+"+") '()))'(&&%""""!!!!       ! ! !#% % %!'#-$)1(-;27@7?6;B7=GH<>J>>H<<=113%%/!!5'&>0/F85I;8L?9M@:I>8I>8J?9JC9II=PTE_cTosdy}o{}pvvjppdZXLUQFRL@TJ@]OFcPIfMHfH@tLB„NBTK³\U¿aY»_T§ZJ‘XD{Y@tcIngMkeMpdNvaNtWGlK3U:/P5,M0(R0.P((K!IH C8.5>!;:B(="6<@E!H!F>:68?CCDE F!G#I#M$O%O'K$D =;<BDBADH M%&P*)J&&F$"A" A$ B&#A(#>&"9$!8(+8'-;')8$%6#8' =.'B5/K<9N<]EAaGFfLKjPOkSQkSQhSPfSO]KIYGGVDDWDF\IKaNRdOTdOT^GM_KMaMObOQaQR_QQ]OO\NNDPBDPBEQCFRDGRDHSEITFITFEM@EM@FL@EK?DJ>DJ>EH=FH=HHPM>QN?RL/D>.C=-@;(>9&=6$<5#:2806.6.8-9.7*7*7*6)6)5(5(4'7)7)7)8*8*9+ 9+ <+!<* =) =) =) =) =) =) =) =) =) =) =) =) =) =) =) ;&!;&!;&!;&!;&!;&!;&!;&!=(#=(#>)$@+&B-(C.)D/*E0+K4.O82S?8YE>\HA^JC\IB[HA\KC\KC\KC[JBYKBXJAXJAZIA^KE`KFbNGcOHdPIcOHbPFaOEaQDaQDaQDbREbRCbRCaTDdRDhPDjNChLAgK@fK@gLAgOChPDjRFkSGjTGiSFfSEdQCbOAaMBbNEaMFbJFcKGhLIlPMpRRsUUuWY„fh—z|¬’“Å«®ÙÀÃÜÆÈÒÁÇýɽ¿ÎºÀζ¿Î°¾Ë©¼Ê¥¼Ì¡¾Îž½Ïš½Ð˜½Ð–¼Ñ—¼Ö–¾×—¿Ù˜ÀÚ—»Û—»Û—»Ý—»Ý—»ß—»ß˜ºà˜¹â™¸ä˜·ã˜·å˜·å—¶å—µç™µç™µç˜²ã˜²ã—³ã—³ã—³å—³å•³å•³å‘±ä’²å“²è”³é”µê•¶ë•¶ì”·ï¸õ¸ø¹ù¹ù‘ºú’»û“¼ü“¼ü–¿ÿ–¿ÿ—Àÿ˜Áÿ˜Áÿ—Àÿ–¿ÿ—¿ü—¾÷›À÷Âù Ãû¡Äü¡Äü¡Äü£Ãü¡Áú£Âû¤Ãü¥Äý¦Åþ¦Ãý¥Âü¤Áû¥Âü¥Äý§ÄüªÄý«Äý¯Ãþ°Ãþ²Âý´Àü¸Âý¼Âþ¶º÷¬®é¡¡Ý›šÖš—Λ˜ÅŸšÃŸÅžÇ›œÊ›ÍŸ¡Ò£¥Ø¨ªÝ¦£Ø¤ Óª¢Õ®¢Ô¬ŸÍ¬œÉ±›Âª‡¥›q‰|Tlf?RY5CR.8G&-@!&;":631.+)(!& & %%$$$"""""""%/2211//.*)'%$$%%$%&''&%$$$%&'() ) -$-$,#,#,#+"+"+"() *!+"*!('') * (('&%%!!!        !! !#&' '"*%/$*4)/9.6@5=D9AC8@D8BH>L>>C557))2$$7))>0/E76J<9OA>OBXZLgk\swhvzkrtfln`dbV[WLSJARE=WF?[HB\GD]F@jODzRF™VNµ^WÇa\ÇbX¶`Q¡`Lƒ[BzeJrhMlfLqeOweQv[JpPAoO@iLGI>II=II=JH;JH;KIPM>QN?SM=TN>VP@YSC[TB\UC\UC]TCbUDdTDdTDcSCcSCbRB`SB`SBbUDcVEeXGgZIi^Lk`NmbPncOqeOrfPsgQshRshRrgQqfPnfOqiRpjRpjRpjRnhPkgNieLgbLecNdcOedPedPfeQfeQfeQgfRa`L`_K^]I[ZFWVBSR>ON:ML8KH9HE6EB3DA2GA1F@0D>.A;+@9'>7%=5";3 9180:/:/8+7*7*6)6)5(5(5(6(7)7)8*8*9+ 9+ ;* <* =) =) =) =) =) =) =) <(<(<(<(<(<(<(<(:% :% :% :% :% :% :% :% <'"=(#>)$@+&A,'C.)D/*E0+L40O73S>9YD?]HC_JE]JD\IC^MF]LE]LE\KDZKDYJCYJC[JC`MGbMHcOHdPIdQJdQJcQGcQGbPDbPDaQDbREcSDcSDdTEeSEkSGmQFkODjNChMBgLAfNBfNBjRFjRFjTGjTGgTFeRDcPBbNCaMD`LEaIEaIEfJGhLImOOoQQtVXxZ\bdvw®”—ʱ´ÖÀÂÓÃÆÈÂÌÂÁϽÁÍ·¿Ì²¾Ì­¿Í¨½Î£¾Ï¡¾Ð¾Ñ™¾Ñ—½Ò—¼Ö˜½×™¾Ù™¾Ùš½Ýš½Ýš¼ßš¼ßš¼áš¼áš¼âš»ä™¸ä™¸ä˜·å˜·å—¶å–µä–´æ–´æ˜´ä˜´ä˜´ä˜´ä˜´æ˜´æ–´æ–´æ“³æ”´ç“´é”µê–·ì—¸í—¸î–¹ñ”¸ö“¹ø”ºù•»ú–¼û—½ü˜¾ý˜¾ý˜¾ý™¿þšÀÿ›Áÿ›ÁÿšÀÿ™¿þ˜¾ü—»õš½óœ¿õ¡Âø£Äú¤Åû¤Åû¥Äû£Âù¥Âú¦Ãû§Äü§Äü¨Âû§Áú¤Áù¥Âü¦Ãý«Åÿ¬Æÿ®Æÿ°Äÿ¯Âý°Àû±Àû´Àü³½øª³îœ¢Þ‘•ґΑʚšÎžœÍŸ ÐŸ¡Ñ¡Ð›¡Ñœ¢Ô£Õ§¨Þ¤¤Ø£ŸÒ¦žÑ¯£Óµ¥Ò±žË«’¹–s‘ˆ`xnF^[4GP+F;CE:BF;CI>FE9C>3;H9>M>AO@CI:=?039++;--?10E76L>;SEBSEBM?€NE›UM¯[Qµ]Q¬_Ož_M‹^G‚fNygQrfPsfSviVveSq\IoUDmP>iJ8hD6f@3b:0]5-Z/)X+&T$"PPS#U!%P"M IM#HFK K!I!O'W*Z+^)Y$RJCBKMO"N #N #L!I IGJL!J D?> B FLO"R!%O!$K!GAI!"E!!D"!C%#F(&H,)F-)E+*@%,?!+>&=$?"&?*)>/,?1.C41I54S68X89\88`=;bC>fICcGDcIHeKJdOLePObPNaOM]NKYKJUGFRBCP@AR?AS@BT?DS>CWCEXEG[HJ[KLZLLWKKUIISIHFRDFRDFRDFRDGRDGRDGRDGRDFNAFNAGMAGMAFL@FL@HK@HK@JJ>JJ>KIPM>QN?SM?UO?WQAYSC\UC]VD]VD^UDaTCcSCcSCcSCcSCcSCaTCaTCaTCbUDdWFfYHh]Kj_MlaOmbPncOodNpeOqfPqfPnfOmeNkeMnhPoiQoiQnjQlhOhfMhdKecLbaMbaMbaMcbNcbNdcOdcOdcO^]I^]I^]I\[GYXDVUARQ=ON.B;)A:(@8%>6#<4!:2;0;08+8+8+7*6)6)6)5(6(6(6(7)8*8*8*;* <* =) =) =) =) =) =) =) :&:&;';';'<(<(<(;&!;&!;&!;&!;&!;&!;&!;&!<'"=(#>)$@+&A,'C.)D/*E0+L40P84T?:ZE@^ID`KF_LF^KE_NG_NG^MF^MF[LE[LE[LE\KD_LFaLGcOHdPIcPIcPIbPFbPFbPFcQEbREcSFdTEeUFfVGhUGpUJpTIoSHmQFjODiNCfNBfNBkSGkSGkUHkUHhUGgTFeRDdPEbNEaMFaIEaHDdHEfJGiKKkMMtVXuWYwZ\„gi™‚´›žÈ²´ÐÀÃÍÆÎÆÄÑÁÁ͹¿Ë¶À̰Àͬ¿Î§¾Î£¾ÏŸ¾Ð›¾Ò™½Ó˜¼Ô˜½×˜½Ø™¾Ù›¾Ü›¾Þ›½à›½à›½â›½â›½ã›½ã™¹â™¸ä˜·å—¶ä–µä•´ã•³å”²ä—³ã—³ã—³ã—³ã—³å•³å•³å•³å•µè•µè•¶ë–·ì—¸í˜¹î™ºð˜»ó—¹ø—¹ù˜ºúš¼ü›½ý¿ÿžÀÿžÀÿœ¾þ¿ÿžÀÿŸÁÿŸÁÿžÀÿ¿ÿœ¾ý™¼ô¾ô Á÷£Äú§Æý¨Çþ©ÈÿªÇÿ¨Åý¨Åý«Åþ¬Æÿ«ÅþªÄýªÃü¨Âû§Áü§Äþ¬Æÿ®Èÿ¯Çÿ¯Åÿ®Âÿ­Àû±Áý³Âý±½ù¤°ê– Ý–Ñ–Ñ’˜Ôœž×ž¡Ø¡¤Ù¡§Û ¨Ùž¦×š¤×›¢ÖŸ¢Ù  Öž™Ï¡—ˬžÏµ¢Ð¨“¾™}£‚`{vNfa:OQ,>I$5C"-=&8 8 53/-+*(' %%%$##########&+,.,,++)*('%$$##!"#$$#"!!""#%&&' (!(!)"*#*#+$,%,%' ' ' &&%$$&'&%$"!!    !! "  "% )$,!'.#)1&,6+1:/5=2:C8@GFF:DA6>H9>N?BSDGPADH9KC8NA8TF;ZI?ZLAPF:YG9mG<€J>’NATEXHš]JŽ_KˆeQ€eRweQuhUynZvnYrgQo]GpU@nO;mH8mC5k<2e6.b1,c2-],(V$#R U!T RNAGR W&[)X)P$O#T'Y'_'`%\!SIEIJKJJ L"L$M$FHI HB><@BIO!S"&R$'O"%K!EDBB C$"E'%G+(I-*I-,H'.F",C&B&B#(B),>,*;,'D2.L40V75]76`75b97d?9dC>dFDbHGcIHaLIaLK^LJ\JHYJGVHGTFERBCP@AP=?P=?QJJ>LJ=MK>OM@PN?QN?SPAWQAYSC[UE\VF]VD^UD`UCaTCaTCaTCaTCaTCaTCaTC`SBaTCcVEeXGh[Jj]Ll_NlaOmbNldOmePnfQnfQlfPkeOidNkfPlgQlgQjhQigPggOfdMddL`_K`_Ma`Na`NbaObaOcbPcbP]\J]\J]\J\[IZYGWVDTSARQ?QN?NJ>KH9JG8MG9LF8JD4GA1D=+C<*C:)A8'>6#<4!<1;09,8+8+8+7*6)6)6)5'6(6(6(7)8*8*:)<* =) =) =) =) =) =) =) 9%:&:&;'<(<(=) =) <'"<'"<'"<'"<'"<'"<'"<'">)$>)$?*%A,'C.)D/*E0+F1,L40P84U@;[FA`KFbMHaNH`MGaPI`OH`OH`OH]NG]NG\MF^MF^KE_LF`MGbOIbOHbOHaNGaOEdRHdRHeSGfTHgUIiWKjXJkXJtYPtWOsVNqTLnSJlQHhPFgOElTJmUKlVKmWLjVKiUJhTIgSHeQHcOHcLFbIDcGDdHEgIGiJHoOPrTTx[]€ceŠpqŸ‡‡º¤¦Ï¼ÀÍÃÌÇÄÏÄÂÍ¿Á͹¿Ë´À̯¿ÎªÀÎ¥¿Ð¢¿Ñž¾Óš½Óš¼Õ™½Õ™½×š½Ù¾Ý¾ß¾ß¾ß¾á½ã½ä½ä™¹â™¸ä˜·å—¶ä–µä”³â“²á“²á–²â–²â–²ä–²ä”²ä”²ä”²æ“³æ–µë–µë–·ì—¸í–¹ï—ºð˜»ñ™¼ôšº÷š¹ùœ»û¼üŸ¾þ¡Àÿ¢Áÿ£Âÿ¡Àÿ¡Àÿ¢Áÿ£Âÿ£Âÿ¢Áÿ¡Àÿ¡ÁþŸ¿ø¢Áø¥Äû¨Çþ¬Éÿ­Êÿ®Ëÿ°Êÿ®Èÿ¯Éÿ°Éÿ°Éÿ¯Èÿ®Çÿ®Äþ«Ãÿ§Áþ©Ãÿ¬Åÿ®Èÿ®Æÿ®Ãÿ«Àÿª¾û¬Àý¬¿ú©¹õž®é“£ßžÙ‘ Û˜¤à¥æž¦å¡©ç¢­å¢­ãŸ¬áœ§Ýš£ÚšŸ×žŸ×ŸšÒ¢˜Ì¬šÊ­˜Ã›€©…g‰rNhhBWW1FK&8E 1A +=&9!9!6 41 /-,*&%%$###""""""""#)+,++)))*('$$$##!!"##"!!!!"#$%&&' ' (!)")"*#+$+$&&%$$###%%$$#!             " # !" &#+ (/$,1&.5*29.6=2:D9AH=EH=EC8@D9AI>FJ?GF;CI:AO@EVGLVGLQBGJ;>G8;F88G99OAAWIIWIHOA@F87A32>31G>9E>8E@:NJA[XOddZgg[gg[]^PZXKURCSM?TL?VM>YM?WN?VSDYR@dM=oJ8~K8ŠP<”WD–]J\KŠaOƒbQ{aPyhV{s^wu\tpUscJu]EsT?rM;qG7oA4k9.f4+e4-`1+X+%U%!T! TTPHLY 'b#,b ,Y'OE Q%X'd-k!0k#/e"+Y &R W %V$Q#N #L"$N$&Q'+R(,F I"I"G B<<>HKO!Q $Q#&O"%M #H !A@AB#!C%#E'%G)'I++O,2L'/G"*E")D%*B()=*&;("E,'N/*[2,d40g62g73e<6c@:cDB_ED_ED\GD\GFYGEXFDUFCSEDRDCRBCQABQ>@Q>@R=BS>CVCGVFIYILZKNXLNVLMTJKRIJGSEGSEGSEFRDGRDFQCFQCFQCFNAGOBHNBHNBIOCIOCLODLODLNALL@KK?JJ>MK?MK>NL?OM@QMARO@VPBYSCZTD[UE\UE\UC_SC_TB`SB`UCaTCbUDbUDbUD_RA`SBbUDdWFgZIi\Kk^Mk`NkcNldOmePmgQmgQkfPjeOidNjeOhfOigPhhPggOffNeeMdcN_^J_^L`_M`_Ma`Na`NbaObaO^]K^]K]\J\[IZYGWVDUTBTRCRNBPL@MJ;LI:OI;NH:KE7IC3E>.D=+D;*B9(@8%=5"<1:/9,9,9,8+8+7*7*6)5'5'5'6(6(7)7):)<* =) =) =) =) =) =) =) 9%:&:&;'<(=) >*!?+">)$>)$>)$>)$>)$>)$>)$>)$?*%@+&A,'C.)D/*F1,G2-H3.L40Q95U@;\GBaLGcNIbOIbOIbQJbQJbQJaPI_PI^OH^OH]NG^MF`MGaNHbOIcPJcPIbOHbOHfSLfTJgUKiWKjXLlZNm[Oo\Nv[RwZRwZRvYQsXOpULlTJkSInVLoWMoYNoYNmYNmYNkWLkWNiULiRLfMHdKFdHEeGEgHFhIGfFGmMNwY[}`bghvw­”—ı³É¼ÃÈÁÉÉÃÍÅÃξÀ̶¾É²ÀͰÂЩÀÐ¥ÀÑ¢¾Ó½Òœ¼Óš¼Õš¼×š¼×œ½Üœ½Þž¼Þœ½Þœ½àœ½àœ¼âœ¼ãšºã™¹â˜·ã—¶ä•´ã“²á’±à’±à”°à”°à”°â’°â’°â’°â‘±ä‘±ä–µë–·ì—¸í˜¹î—ºð˜»ñ˜»ñ™¼ôšº÷š¹ù»ûž½ý¡¿ÿ¢Áÿ¤Âÿ¤Ãÿ¤Âÿ¤Ãÿ¦Äÿ¦Åÿ§Åÿ¥Äÿ¥Ãÿ¤Âÿ¤Ãü¦Åü©Æþ¬Éÿ®Ëÿ¯Ìÿ±Ëÿ±Ëÿ±Êÿ±Êÿ²Ëÿ²Ëÿ²Èÿ±Çÿ¯Åÿ®Äÿ¨Áÿ©ÂÿªÃÿ«Äÿ«ÄÿªÂÿ¨Àÿ¦¾ü¥ºù¢¸ôœ²î•«å’¦ã‘¥à•©äš¬ê ¯ô¡®ô¡°ó¢²ð£³î¡²ê¬åœ¦áŸ¥á¢¢Þ¦ž×§šÏ¨•߆®‹m‘xWteBZ]8JP+=E#3@,>+;'7#6"5"2!0"/!. -+ &$$##"""!!!!!!!"())))()()(&$$$##!"####"!!!"#$%&&' ' ' (!(!(!)")"%$#"!!""$$#!                "!$"#" '$-"*2'/5*29.6=2:A6>I>FLAIJ?GD9AD9AJ?GLAIJ?EKAKOAATFFUGGPBAH:9A32>0/D97C97E;9JC=RMG[XOb_VccW^_Q]^N^\M^[J^XHZUBWP>TOsM:qF6m=/j8-b2(_0(Z/&X+%X'"X" YTM!KY!$c"*a&^'Y&OJQ]&g+m$/j#+a &X!]$*Z#(S %M"H EF!G"F"I#K$H!C?=AO#Q"S$S %Q $M #I!G BCD"!E#"C$"C%#G(&I)*P-1N+1J'-G',E(*E)(B)$D'N([+!j/'p4,q60n93i>7dB9_@>[A@Z@?WB?WBAUCATB@RC@OA@PBARBCQABQ>@P=?R=BS@DTDGTEHWHKWKMWMNULMSJKOIIHTFHTFGSEFRDGRDFQCEPBEPBGOBGOBHNBIOCJPDJPDMPEMPEMODLNCKMBJL?KK?KK?NL@OM@OM@PN?SPAURCYSEZTDZTD[TB\SB\SB_SC^UD`TDaUEbVFbVF]QA^RBaTDcVFfYIi\Lk^Nk`NkcNkeOlfPlgQlgQkfPjeOgeNfdMffNggOggOggOdfNbdLacM_^L_]N`^O`^Oa_Pa_Pb`Qb`Qa_P_]N][LZXIXVGWUFVTEVTESOCPL@NJ>MI=PJ>OI;LF8IC3E>.E>.E<+C:)@7&=4#;/9.:-9,9,8+8+7*7*7*4&5'5'6(6(7)7)9(<* =) =) =) =) =) =) =) :&:&;'<(>*!?+"@,#@,#?*%?*%?*%?*%?*%?*%?*%?*%A,'B-(C.)E0+F1,H3.I4/J50M53Q97VA>]HEbMJdOLdQMcPLcQMcQMcQMbPL`QL_PK_PK_PK_PKbPLdRNeTMfUNeTMeTMdSKhUNhVLjXNkYOnZQp\Qq]Rt^Sx]Vz]Wz]Wz]Ww\UuZSpWPoVOpWPqXQqZRr[Sp\Sp\So[RnZQoXPlUMjQJfMFfJFfIEhIFiJGfGEiJHnPPuYXw]\gf˜€€¬˜™Å´ºÊ½ÄÐÅÍËÆÍÁÀȸ¼Åµ¿ÉµÃЭÀϨ¿Ï£¾Ñ¡½Ò»Óœ¼Óœ¼Õœ»×ž½Üž½ÜŸ¼Þž¼Þž¼àž¼àž¼âž»ãšºã™¹â˜·ã–µá”³á“²à°ß°ß‘¯á‘¯á‘¯ã‘¯ã‘¯ã°ã¯å¯å•¶ì•¶ì–·í•¸î–¹ñ—ºò—¼ó™¼ö—¹ö˜ºùœ»ûœ¾ý ¿ÿ Âÿ¤Ãÿ£Åÿ¦Åÿ¥Çÿ¨Çÿ§Éÿ©Èÿ¦Èÿ§Æÿ¦Æÿ¥Äý¨ÅýªÇÿ¬Éÿ¯Éÿ¯Éÿ¯Éÿ¯Éÿ°Éÿ°Éÿ²Èÿ²Èÿ°Æÿ®Äþ­Áü«Áý©Âÿ§Ãÿ¦Áÿ¦Âÿ¥Áÿ¦¿ÿ¦¿ÿ¥¾þ¡ºúœ¶ó–°í‘®è“­ê—±ìš´ïœ¶ó¡·ÿ¡µþ ´û¡¶ù£·ö£µó °îŸªè¤©é¥£â§Ù¥—Êœ‡²ˆn‘uWskIa[8LS1BI'8@ /<):(9'6$3"0!0!."-!+ *($$$##""! )))))()(('&$""##!!"##"!!!!"#$% &!&!'"'"'"&!&!&!% % $"! !!!                      "!$#$" (&/#-4(28-5;08@5=C8@K@FODJNCII>DI>DMBHNCIJ?EM>ESDKZKR^OV[LQWHMRCHPADM>AN?BPBBRDDPBBK==C54=/.@22B44C77F<:KD>QMDYVM_]Q]^P_`PcdTfeSedPb`K_ZFZXAWW?ZV=^R8bM2fH.jF,qI0vL6yP>}SC~WFZH„dOoWqWˆoQ€kLzgIu`CrX?qS;oJ7oA1k;-b2&b3)`6*_4+\1([,&Y&"U& L'G!W!c!%b"d&d",Z&HJR]!g'j'f$^ Y$T $P#K!E><:E!J#L#K!H EEGP!R#S&T!(S"(O"'K!%H#H!$I%'J()I'(G%&E%&I'(I)*I-,I,.I,.F,+E,(H+%N,"V*i. w/#…3(‡4,6/r7/f;2^=4Y;9V<;V<;S>;S>=Q?=R@>PA>M?>OA@RBCP@AO<>M:MI=PJ>OI=MG9JD6E=0E>.E<-C:)@7&<3":.8-:-:-9,9,8+8+7*7*4&4&5'5'6(6(7)9(<* =) =) =) =) =) =) =) :&;'<(=) ?+"@,#A-$A-$A,'A,'A,'A,'A,'A,'A,'A,'B-(C.)D/*F1,G2-I4/J50K61M53Q97VA>]HEbMJePMdQMdQMdRNdRNcQMcQM`QL`QL_PK_PKcTOdUPgUQhVRiXQiXQhWPgVOiVOjWPkYOm[Qp\Sr^Us_Tv`Uy^W{^X|_Y|_Yz_Xw\UsZSqXQqXQrYRr[Ss\Tr^Uq]Tp\Sp\SqZRoXPlSLjOHhKGgJFiJGiJGnOMiJHiIJnPPqUTv\[‡mn•ï±ËºÀÔÅÌÑÆÎÅÀǺºÂ¹½È¹Ãͯ¿Î¬¿Î§¾Ð¢½ÐŸ»ÑŸ»ÓŸºÕ»Õ »Ùž»Û ºÝž»Ýžºß»ß»á»áœ¹á™¹â˜·ã–µá”³á’±ß°ß¯Þ­ß­ß­á­áŽ®áŽ®áŽ­ã®ã•¶ì“¶ì”·í•¸î–¹ñ—ºò—¼ó—»õ–ºö–ºø˜¼ú›¿ýÁÿŸÃÿ¡Åÿ¢Æÿ¥Éÿ¥Éÿ¦Êÿ§Ëÿ§Ëÿ¦Êÿ¥Éÿ¦Èÿ¤Äý¦Åü¨ÇþªÇÿ«Èÿ«Èÿ«Èÿ¬Æÿ¬Æÿ®Çÿ®Çÿ­Æÿ¬Åþ¬ÂüªÀú¦¾ü§Ãÿ¥Âÿ¥Àÿ£Àÿ¢¿ÿ¢¿ÿ¢¿ÿ¢Àÿ¢Àÿœºø”´ñ“³î—·ôœ¼÷ž¾ù¼ü¡½ÿ ºÿ·ÿŸ·ý¢¹ý£¸û¢±ö¡¬î¦©ì¤Ÿß£˜Ò ŽÀwŸvYweEZa@QU3DM-E:BJ?EODJQFLMBHMBHPEINCGI>BO@GTEL[LS_PW]NSYJOUFKSDGO@CN@@M??PBBQCCM??D65=/.<,/@03C55D97F<:KD>TPG[YMXYK]^NcdRhjUkjVihShfOfdK^]?c`Aj_Al[=mV7nP4pP7tQ;oL9uR?{TC‚WFŽ_KœhR¡iPšgLŒiM€gIx`Ds[?pT=N@?QABO?@L9;J79K6;L9=M>CMAENCGOFIPGJMGIJFGIEFEQCEQCEQCFRDGRDHSEHSEHSEKSFKSFLRFLRFLRFLRFNQFNQFORIORIOQFOQFNPENPENNBNNBSQDSQDTRETREVSDVSDWTEYSCYSCYSCZSC[TD\UE\UE]TE^UF[OA[OA]OB^PCaSFdVIiYLi\LiaNibOidPidPidPhcOecNdbMfePfePedOedObdNbdNbdNacNcbPb`Qb`Qa_P`^O_]N_]N^\M_]N_]N_]N^\M\ZKZXIXVGWUFQMAOK@LH=LH=OI=OI=MG;JD6JB5IB2G>/D;,@7(=4%<0 ;0*!?+"@,#A-$A-$C.)B-(A,'@+&@+&A,'C.)D/*D/*E0+F1,H3.J50L72M83N94W?=ZBB\GF_JI`KJbMLeQPhTSdRPdRPeSQfTReVSfWTgXUgXUcURdVSgXShYTj[Vj[Vl[TkZSn[To\Uq]Vr^Wv_Ww`XybZzaZ{`Y|_Y~a[b\~c\~c\{b[zaZu\UsZSpYQqZRq]Tr^Up\SnZQmWLmUKmRKlQJkNHjKFjHFjHFjHGiJHjKIkMKoSRu[Zgfˆpp¨’Á«®ÚÅÊÙÊÏËÂÇÁ¾ÅÀÀʾÅϳ¿Í¯ÁÏ«ÀÑ©¿Ô¦¾Ö¤¾Õ£½Ö¢½Ø¥¾Ý¤¿Ý£»Ý¡»ÜŸ¹Üœ¹Ûš¶Û™·Ý˜µÝ˜µÝ•µÞ”´Ý’³Þ‘²Ý±Þ°ß¯à¯â¯â¯â¯å¯å°å°å’³é³é³ëµìµì‘¶í‘µï¶ï‘¸ó‘¹ö’º÷”¼ù—¿ü™ÁþšÂÿ›Ãÿ›ÃÿœÄÿœÄÿÅÿÅÿžÆÿžÆÿŸÆÿ¥Èÿ¦Æÿ¦Æÿ¦Åþ¥Äý¤Ãü¤Ãü¥Âü§Äþ©Ãþ©ÃþªÄÿªÄÿ«Ãÿ«ÃÿªÄÿ¥Âÿ£Âÿ£Àÿ¡ÀÿŸ¾ÿ¼ÿš»þš¼ü›½ý›½üš¾üš¾ú˜¾ü˜¿ú˜¿úš½ý—¹ÿœ¼ÿž¼ÿœ¸ÿ ¸ÿ¦ºÿ§µþ£«ó©©ï®¨èŸÉi˜jPsgJ``@MR1:F&3@".:(6$5%3%0#,!.#-#+#(!' %$$!!!!!!!!    !!!""##########"   ! ! ! "!"!! ! !                 ##"!"# %#&""''.".3'18,6>2?L=BSDI\MRdUZfW\cTY^OR[LOWHKUGGRDDPBAOA@L>=G98C54@03@03B44E:8D:8D=7NJA[YMVWIY\KadQknYrt_qs]kkSedHebAb^9e[7k]:t_@v^BoW=hP8dK7pSA~YG‰XGž]I¶hRÊnYÆrZœdMŽfMƒdH{`Cv[@sS'!B)"P4)X4&^-w0—:)°:,Á;0Æ92µ1-–-)|/)`4+R5-V:7T:9S98O:7O:9M;9N<:M>;M?>N@?O?@L<=J79I68L7MI>PI?PJ>MG;KE9JB5IA4G=1D;,A8)>5&=1!<0 =0*!?+"@,#A-$B.%B.%A,'A,'?*%?*%?*%A,'B-(C.)E0+F1,G2-I4/J50L72M83N94X@@[CC]HG_JI`KJbMLeQPiUTeSQeSQfTRgUSfWTgXUhYVhYVeWTfXUiZWk\Wl]Xl]Xn\Xm\Uo\Vp]Vr^Wt`Yw`ZybZzc[|c\}b[b\€c]d^€e^d]|c\|c\v]Vt[TqZRr[Ss_Vt`Wr^Ur[SqYOpXNpUNoRLmNIkLGkIGjHFjHGkIHlJIkLJnPPuYXcb…kj¡„†¹Ÿ Ò¹¼ÕÂÄοÄÅ¿ÃÁÀƽÁʶÀ̳ÁίÀÒ«ÀÓ©¿Ö¦¾Ö¥½×£½Ö¦½Ü¥¾Ý£»Ý¢ºÜ ¸Üž¸Ûœ¶Ûš¶Û˜¶Ü˜µÝ•µÞ”´Ý’³Þ‘²Ý±Þ¯ÞŽ®ßŽ®áŽ®á¯â®äޝä°å±å²è³é´ë´ëµìµì‘µï¶ñޏôºõ»ø½ø’¾û”Áü–Âÿ–Ãþ—Ãÿ—Äÿ—Ãÿ˜Åÿ™Åÿ™Æÿ™ÅÿœÆÿ Çÿ¢Æÿ£Æÿ£Æÿ¢Åÿ¢Åÿ¤Äÿ¤Äÿ¦Äÿ¦Äÿ¦Äÿ¦Äÿ¦Ãÿ¦Ãÿ¦Ãÿ¥Ãÿ¡ÀÿŸÀÿž¿ÿ¾ÿ›½ÿš½ÿ—¼ÿ—½þ˜¾ÿ˜¾ý—¿ý—¿ý—¿ý–Àü–¿ý–¿ý—¾ÿ˜¾ÿ™»ÿ™·ÿ·ÿ§ºÿ«·ÿ«¯ù«¨ï§›Û}´r[…cFb`AQ\;BR27G(0A#/:(5%4&2%.#+",#+#($&!% $##!!!!!!!!   !"""######"    ! ! ! ! ! !                   ""!!"# %!&"#((.".3'37+7<0:B7?GATEH]NSeVYiZ_gX[cTW`RRYKKVHGRDCPB?OA@M?ia:ob?ueDvcEo[BgU=aO9hO;qN;„O=§ZHËhUãkZÜkYºgW¡dR‹[E~V=vT;rO9oF4m<-|B7}A9z?9q:3f7/[3)V2&V0%O[ku$}(.€%4|,9d +V!Y%b#+h +u#/}!0p&^$[$)W$)M EGJ!JT'Z)c!/i%4g 2b-e0l'9a!/S"T&Z"-Q'J#G#?E!%F"&I&*K(,F"&A!I"'S/1J-)D'!I(Z2&f5&s05#²>/ÚL@ìOHëIGÍ99¥/-„1-e6.Q6-T85Q76P65L74K65J86K97I:7J<;L>=M=>K;CL@DMAEMBFLCFHBDGACEABEQCEQCEQCFRDGRDHSEHSEHSEKSFKSFLRFLRFLRFLRFNQFNQFORIORINQHNQHMPGMPEMODMOBPPDQQESQETRETREUSFUSFUSDUTBUTBVSBWTCWTCZTD[TD[TDYPA[OA]OB^PCbREeUHgWJgYLi]Mh_Ni`OibPibPgbOfaNe`MgbOdaNdaNcbNbaMa`La`La`Lb`Qb`Sa_Ra_R`^Q`^Q_]P_]P_]P_]P_]P^\O\ZMZXKXVIWUHRNCPLCMI@MI>QJ@PI?NH2E;/B9*?6'?3%>2"?2!>1=0*!>*!?+"?+"@,#A-$B.%C/&D0'D0'A,'@+&@+&@+&@+&A,'C.)D/*G2-G2-H3.J50K61M83N94O:5X@@\DD^IH`KJaLKcNMfRQiUTfTRfTRgUShVTgXUhYViZWj[XhZYg\Xk]Zm_\o`]o`[q_[q`Yr_Ys^Yv^Zxa[{b]|c^}d_€d`d`‚eaƒfb„gcƒgc‚fbfa~e`x_Zv]Xt]Wu^XuaZvb[t`Yt]Uu]Sv[PuXPrUMpRJoNGnKGmJFkHFkIGlJHjKHkMKpTQy]Z€da•vt­ŽŒÅ©¨Í¸·Ï¼¾ËÀÄÅÀƽ½Å¹¿Ë´À̱ÁÑ®¿Ñª¿Ô¨¾Õ¨¾Ö¥½×¨½Ü¦½Ü¤»Û¢»Ú ¸Úž¸Ûœ¶Ûš¶Û˜¶Ü—µÛ”´Û“³Ü‘²Ý±ÜŽ±ÛŽ°Ý­à¬âŒ­â®ã®äޝ尿°æ²ê޳ê³í³íŽµîŽµî¶ñ޶ñ‹¹õ‰ºõŠºøŒ½ø½ûÀûÀþÁü‘Áÿ‘Âý’Âÿ’Ãþ“Ãÿ“Äÿ”Äÿ–ÄÿœÆÿÅÿÅÿÅÿŸÆÿŸÆÿŸÆÿŸÆÿ¡Åÿ¡Åÿ¡Ãÿ¡Ãÿ ÂÿŸÁþ ÀýžÀÿ™»ÿ—¼ÿ—¼ÿ—¼ÿ–¼ÿ•¼ÿ•¼ÿ•¼ÿ•¾ÿ•¾þ•¾þ“¿þ“¿þ“¿ü“¿þ“¿þ”Áÿ•Àÿ•»ÿ•µþžµÿªºÿ¯¶ÿ°®ù©Ÿä”…Àwa`FiV:PV8BU58P22F).?$-9'4%3&0%/%,%)#'#&$$!#            """###"              !   "$ &"'%(*,/#13'35)59-7>3;B7?LAGJ?EH=AI?@MCDPFEQGFPFEOAAUGG^ORgYYm^am__j\\gYX^POZLITFCQD>OA>M@:I;8F85C11@00C33D95D;6C<4JF=SSGZ[M]`OfgWpq_xyg{}h|{gyy_nnJmkDmhBrhDxiHvgHqaGk[BdT=aK6dA-{D0§TBÖfXói\ói_ápjÆib«^T“XH…XE|VAvP=tI8yE8{@8z=8y<7r;6j92`3-].&e.'s2,‚44ˆ17Œ,7‹+9„,:{-:_ )R!Q"W &^(k"-u!0o*d(a$+\#*T#NO R#R"U#Y$a)f-f-`)b+f1])T"V&Y!,S )L%E">A!>A"E"&F"&E#K"(T+/R,+O&"X)#l3*}7+6(«;-ËC7ý^Xÿdaÿ[\ÜAE¬14‰32i83R5/R63O54M32I41H32F42F42E63G98H:9J:;I9:I68J79M8=O<@N=CN?FN?FL?FJ?EH?DG>CD>BEQCEQCEQCFRDGRDHSEHSEHSEKSFKSFLRFLRFLRFLRFNQFNQFORKORKNQHNQHMPGMPGMODMODPPFPPDRPDSQETRETRETREUSFTRCTSATSAUTBVSBWTCYSCZSCYPAYPA]OB^PCaQDdTGfVIhXKg[Kf]Lh_Ni`Oi`OhaOg`Ne`Me`Me`Me`Mb_Lb_L`_Ka^K`_Ma_Pa_Ra_Ra_R`^Q`^Q`^Q`^Q_]P_]P_]P^\O\ZMZXKXVIWUISOFQMDNJANJARKAQJ@OH>LF:LD9JB7I?3G=1D;,A8)A5'@4$B5$A4!?2!>1 =0>1 >1!?2"=/"=/"=/"<.!<.#;-";-"=,";)<(=) =) >*!>*!?+"?+"@,#A-$B.%C/&D0'E1(F2)F2)C.)C.)C.)D/*D/*F1,G2-G2-I4/I4/J50L72M83N94O:5O:7YAA\DD^IH`KJaLKcNMfRQjVUgUShVThVTiWUiZWj[Xj[Xj\Yi^\j_]n`]pb_rc`rc`tb^tb^u`]u`[ya]zb^}d_~e`ea‚fb…hd…hd†ie‡jf…ie„hdhc€gb{b]y`[v_Yw`Zwc\xd]vb[v_WyaWz_Tx[SuXPtSLqPIoLHnKGkHFlIGkIGiJGiJHmOMsWTz\ZŒig }{¶—•Å«ªÏ¹»ÒÃÆÌÃÈ¿¾Æ¼À˸À͵ÁѰ¿Ò­¿Õª¾Öª¾×¨½Ø©¼Ú¨½Ü¦ºÛ£ºÚ¡¸ÚŸ·ÙµÙœ¶Û˜´Û—µÛ”´Û“³Ú‘²Û±ÜŽ±ÛŽ°ÝŒ¬ßŒ«áŒ­âŒ­â®äޝ尿°æŽ³ê޳ê³í³íŽµîŽµî¶ñ·óˆ¸öˆºùˆºù‰»úмû‹½üŒ¾ýŒ¾ý¿þŽÀÿŽÀÿÁÿÁÿÂÿÂÿÂÿ–Äÿ—Ãÿ˜Äÿ˜Äÿ›ÄÿœÅÿœÅÿÆÿÅÿœÄÿœÂÿ›Áÿ™¿þ˜¾ý™¼ü—½þ‘·þ¸ÿ‘¹ÿ‘¹ÿ»ÿ‘¼ÿ‘¼ÿ‘¼ÿ’½ÿ‘¾ÿ’¾ÿ‘¾ÿ‘¾ÿ‘¿ý‘¿ý¿ý¿ÿ“Àÿ•¼ÿ–¶ÿ ¶ÿ«¶ÿ¬®ûª£é—‰Ç{gš]DkO5PN2AM05M//O11D).>%+7&2%1&/&-&*&&$$##" !          !!"""!                    "%!'$)(+-!/1%33'55)57+7;/9?4M@8H;3E82C41A2/B41D93B;3@<3FD8NNBZ[M]_QefVmn^tuezyg{zh{zeopPnnJokHsjIwiLwhKscJn^GiXDbL7_?*q<*šI8Ê\Oïg[ûlföpqånpÌhf°bX•[MƒXE{VCzUCuIE -2ƒ13h84R5/S53O54M32H30G21E31F42D52E76E76F67F67I68K8:N9>P;BP2F<0C9-C7+B6(C6%B5"A4#@3"?2!?2!@3#A4$?1$?1$>0#>0#=/$=/$<.#>-#<* =) >*!>*!?+"?+"@,#@,#B.%B.%C/&D0'E1(F2)G3*G3*F1,G2-H3.I4/K61L72L72L72K61L72L72M83N94O:5P;6P;8X@@[BE]GI`JLaKMcMOfRSiUVhVVhVViWWjXXiYYjZZk[[j\[k`^ka_ncapecsebtebvdbuc_va^wb_zb^|d`~ea‚fc„gc…hd‡ig‡igˆjhˆjh†jg…ifhd€gc|c_za]x`\x`\yd_ze`xc^xa[zbX{`Uy]RvZOuTMrQJqNHoLFkHDlIEkIGhIFgHEiLHnROuVS†`]—omª‡…»›Í³´×ÄÆÑÆÊÆÁÈÀÀʺÀ̸ÁдÁÒ°ÁÕ­¿×­¾Øª¾Ù«¼Ú©¼Ü§ºÛ¥¹Ú¡¸ÚŸ·ÙµÙœ¶Û—³Ú–´Ú“³Ú’²Ù±Ú°Ù°Ú¯ÜŠ«Þ‹¬áŒ­ã®äŒ¯å°æŽ±é²ê³í´îŽµîŽµî¶ñ·ò·òޏô‰¹ù‡ºû‡ºûˆ»üˆ»üˆ»üˆ»üˆ»üнþнþ‹¾ÿ‹¾ÿŒ¿ÿŒ¿ÿÀÿÀÿÂÿÂÿ‘Ãÿ’Äÿ“Ãÿ”Äÿ•Åÿ•Åÿ•Ãÿ•Ãÿ•Áÿ”Àÿ’¾ý‘½ü’»û»üжýˆ·ÿ‰¸ÿйÿ¹ÿŽºÿ»ÿ¼ÿ½ÿ޾ÿ½ÿ޾ÿ޾ÿ޾þ޾þ޾þ‹½ú¿ÿ”¼ÿš¸ÿ¢µÿ§®ü œæ—‹Ë|jždKuK1NG,=K-7I,0H+-K.0B',<#)6%1$0%.%,%)%$$#$"#   !!!!"!                     !$!'$*&+-"21$54'86*86*67+7;/9>3;C8>C8dE1j=*ƒ>.§K<Ñ_TðlgõenõlvçpvÇhfžXP~M>rM;qR>rQ@pH®B@µ=<»97Â86ÑBDÚKOÎGN©1:…&,r,._30P3/T64P65N43J52I43H64H64G85D65D65D45E56I68L9;N9>O:AO;DL;EK:DI9CE8AC8@C8@C8@EQCEQCEQCFRDGRDHSEHSEHSEKSFKSFLRFLRFLRFLRFNQFNQFMRKMRKLQJLQJMPGMPGMNFMNFNPENPEOOCPPDRPDSQESQDRSEORAORAPQAQRBSQBTRCWQCWQCZPDZPD]OD]OD`OEbQGeSIfTJgWJfYIh[Kh\Li]Mi]Mi]Mg^Mg^Mf_Me^Le^Ld]Kc^Kc^Kb\L`\P_]Q`^R`^Ra_Sa_Sb`Tb`T_]Q_]Q_]Q^\P\ZNZXLXVJWUIVRISOFQMDPLCTMETMEQJ@OH>ME:LD9LB6I?3G=1E;/E9-E9+D7&C6#B5$@3"@3"@3"A4$A4$@2%@2%?1$?1$>0%>0%=/$?.$=+!>*!?+"?+"@,#@,#A-$A-$B.%B.%C/&D0'E1(F2)G3*G3*H3.I4/K61M83O:5P;6P;6P;6N94N94N94O:5P;6P;6Q<7Q<9W??ZAD\FH^HJ_IKaKMdPQhTUhVVhVViWWjXXiYYjZZk[[j\[k`^ka_ncapecsebsebvdbucawb_xc`{c_~eaebƒgd…hd†ie‡ig‡igˆjh‡ig…if„he€gcfb}d`{b^x`\ya]ze`ze`yd_yb\x`Vy^Sx\QvXNuTMrQJqNHpMGjGCkHDkIGiGEgHEhKGlPMrSPZUfb xv±Å©¨ÔÀÁÓÇËÊÃÊÂÀ˽ÁͺÁѵÂÓ²ÁÖ¯¿Ö¯¿Ø­¾Ú«¼Ú«»Ü§ºÛ¦¹Ú£·Ú ·ÙµÙœ¶Ù™³Ø–´Ú•²Ú’²Ù±Ú°Ù°ÚŒ®Û‹¬ß‹¬áŒ­ãŽ¯åŽ±ç²è³ë‘´ì‘µï‘µï·ð·ð‘¸ó‘¸ó‘¹ô¹÷Šºüˆ»ýˆ»ýˆ»ý‡ºü‡ºü†¹û†¹û‰¼þ‰¼þнÿнÿ‹¾ÿ‹¾ÿ‹¾ÿŒ¿ÿ‹Áÿ‹Áÿ‹Áÿ‹ÁÿŽÁÿŽÁÿŽÁÿŽÁÿŽ¿ÿŽÀÿ޾ÿ½ýŒ¼þŒ¼üºý‹»ý†·ü†¸ÿ‡·ÿˆ¸ÿ‰¹ÿ‰ºÿŠ»ÿ‹ºÿ¼ÿ¼ÿ¼ÿ½ÿ½ÿ½ÿ½ýŒ¾ýˆ»ú¿þ•½ÿš¸ÿŸ±ýž¢ì†Ê~oªcLzS8YE(B7;E:>KABPFEQGEMCAJA5,A:0@<1<:.==1CC7NOASTFZ[Ma_ReaUfbVjcYkeYkiZjiWlgSmgQrfNtdMwbMwaLv_MrYEkN}$:u2j*i,g.b,\'Z%Z(P G K"L'G&F!(P+2F#)@"A#G&K )V(2e08p*2-3–6:¬?DºAF»=@´45­/2¥,1¤18š18ƒ(/k#'^((U/,O2.R63O54N43K63K65J86K97J;8F87D65D45E56J79M:N9@O:CM9DK7BG6@D4>B5>A4=@5=EQCEQCEQCFRDGRDHSEHSEHSEKSFKSFLRFLRFLRFLRFNQFNQFMRKMRKLQJLQJMPGMPGLOFLOFMODNPEOOCPPDPPDQQESQDQRDNQ@MQ@NQ@PQARPASQBVPBWQCZPDZPD\NC]OD_NDaPFdRHeSIeUHfVIhXKhZMj\Oi]Oi]Oi]Oj^Ph_Pg^Of_Oe^Ne^Nd]Mc]O`\P_]Q_]Q`^Ra_Sb`Tb`Tb`T_]Q_]Q_]Q^\P\ZNZXLXVJWUIVRITOIQMDQMDTMETMERKAOH>NF;ME:LB8KA7I?3G=1G;/F:,D7&C6#B5$@3"@3"@3"A4$A4$@2%@2%?1$?1$>0%>0%=/$?.$>,"?+"@,#@,#A-$A-$B.%B.%B.%B.%C/&D0'E1(F2)G3*G3*G2-I4/K61N94P;6Q<7P;6P;6P;6P;6P;6P;6Q<7Q<7Q<7Q<9U==Y@C[EG]GI^HJ`JLcOPfRSgUUgUUhVViWWhXXiYYjZZi[Zi_]ia^lb`odbrdardaucatb`wb_xc`{c_~eaebƒgd…hd†ie†hf†hf‡ig†hf„he‚fc~ea}d`}d`{b^x`\ya]ze`{fayd_yb\u]Sv[PvZOtVLtSLrQJqNHrMGkEBkHDjHFjHFgHEgJFkOLqRO~UQŠ_Y–mi¤}¹šÌ·¶ÒÃÆÎÅÊÃÂʾÂͺÁѶÁÓ´ÁÔ°Àׯ¿Ø¯¿Ù«¼Ú«»Ü©¹Ú¦¹Ù£·Ø ·ÙµÙœ¶Ù™³Ø•³Ù”±Ù‘±Ø°ÙŽ¯ØŒ¯×Œ®ÛŒ­àŒ­âޝ尿²è‘´ê‘¶í’·î“·ñ“·ñ’¹ò’¹ò’ºõ’ºõ“»ö’»ùŒ¼þ‹¼ÿŠ»ÿ‰ºÿˆ¹þ‡¸ý‡¸ý†·ü‰ºÿŠ»ÿŠ»ÿ‹¼ÿ‹¼ÿŒ½ÿŒ½ÿ‹¾ÿˆ¿ÿ†Àÿˆ¿ÿˆ¿ÿ‡¾ÿ‡¾þˆ½ÿˆ¾þ‰¼þ‰¼ý‰¼þ‰¼ý‰ºý‰ºü‰ºý‰ºý†¸ÿ„¸ÿ†¸ÿ‡¹ÿ‡¹ÿ‡¹ÿˆºÿ‰ºÿ‹¼ÿ‹¼ÿ‹¼ÿ‹¼ÿŒ¼þŒ¼þŒ¼þ‹½ü‰¿ýŽÀÿ“»ÿ–´ü—§ò“Ú|q³hVŠR8_N0HH)8E(-D'+C&*A&+A(.>%)7!$1 -+!*#($$$#%#% $"     !                              "$ ($!,(%0,&24)98+=;.?=1=@4>C8@C8@C8?MCBNDBMCAJA;M@:SF@_RJl_Wsf^qd\m`Wk^Ui]Qg[OeYMbVJ\PBSG9MA5D:.?5)>6+A;/@<0<:-;<.?@2EE9LL@VTH\ZN_[PaZPd[Td]Ule]le]lfZneTteRvdN|cOcNy^KtYFnUAiN;fC/k@-ƒK:§UJábiõguõsåtzÃkj¢_W‡[N{\Jy_Nu[LvVKzTK‚UP…UQƒQP€OKzH?†PF‡LHx;:o14l47e27Z)/T)e(7q(;|*@†2I‚.Es((:%:ƒ'<„&>#;y4o-j.f/\'N \'`-T$G K"J%A > G")A$@"D&I (L!*V(2g/8u,3ˆ/5Ÿ4>³;E½>G»9Aª18™,1ˆ)-{)/o(.f+1[*-O)(J-)K2-O30M32L21I41K65J86L:8K<9H:9E76D45E56K8:M:M8?O:CM7CK5AG3>C2NF;ME:MC9KA7I?3G=1F<0G;-D7&C6%D4$@3"B2"@3"C3$A4$B2%@2%A1$?1$@0#>0#?.$?.$>,"@,#@,#A-$A-$B.%B.%B.%A-$B.%B.%C/&E1(F2)F2)G3*E0+G2-J50M83O:5P;6O:5O:5Q<7Q<7Q<7Q<7Q<7R=8R=8R=:R=$'=$(>$->'/:%*5 %. +) ("$"" $%#$!$#                                    !  !"%!)&#.,&2.(66+<9.?=0B>1B>1B?3AB6BE9CGLB@MCALC>H?:H?:NE>ZQJh]Wod^mcZh^UgZQfYPgZQh\Pg[OcUHZLARF8D;,>7'=7'?<-?=.9:,9:,==1??5IF=SPGZUO\WQ_XR`YS`[Wiebifamf\ofWsfSxfPfRfSz]KsXGmVDjSAeL8`C1lE6‡HA¾W[ÑWb×bkÖioÇkl±fa—aU„_M}bOybP{_Q~^S\T€WS{QRyML€QK‰WP‰MLw9:l.1m07e-6\$/b%4u0Bƒ0D‰0D“6Iˆ-?t2u!1ˆ*<1u+s.q/m.m.r3s3w2x1v/x!4x%7m/\#X#^,T%J P%N&E?9:B$P'/U'2U#/Y#1e%3}+9‹.93?ª:F²>K¬g)6\(4[09V26I++F*'J1-L0/L0/J0/J20I43K65M98M;;M;;H89G46H59K8O:CM7CJ4@F2=D0;A0:B1;A1;JREJREJREIQDIQDHPCIOCHNBJPDJPDJPDJPDJPDJPDJPDJPDIOCIOCIOEJPDJPDKQEKQEKQEJPDLODLODLODLODLODLODLPBKM@LL@MMAQOCRPDTRFVRGXRFVPDXPEXPCYQD[QE\RF]SG^TH]TE^UD`WFaXGcZIe\Kg^Mf_Me\Kd]Kd]Kd]Kd]Kd]Kd]Kc]M`]N`]N`\P`]N`\P`]Nb\Pb\Na[Oa[MaYN_WJ]UJ\TG\RHZRGYQFWQEVNCUMBTLAUMBWODXPCSK>RJ=QI*!>*!?+"@,#A-$A-$B.%C/&B.%B.%B.%C/&E1(G3*H4+H5/H5/I60J71K82L93M:4M:4N;5N;5O<6P=7Q>8R?9S@:S@:VC?VC?WCBWEC[GF]KI`NN_OOcSSbTSdTUdVVeWWcWWfWZdXXcXVdYWf[Yj\[m_^oa`rbbuccsaaua`wcbyed{fe|gf|gf|gf„olƒnk€kh~ifzebxc`u`]v^\w_]w_]x`^ya_x`^w_]w]\v]YtYPsXMrVKqUJoSHnPFmOEnMDjI@hG@fE>eD=gF?jIBmLEmOGpSMx]V|_Y…hd ‚€·›šÉ¯°ÝÄÈϼÂͽÇËÀÎÆÂѾ¿Ñµ¼Ï²½Ñ³¿Õ´¾Ù²¾Ø°»×«»Õ¨¹Õ¢·Ôž·Öœ¶×—µ×”´Ú‘³ÙŽ±Ù°Ú¯Ü¯ÜŽ°Ý‘²ß’³à’´â”¶æ–¸è–ºì—ºð˜»ó–ºô—»÷•»ù–¼û”»ü“ºý‘¸û·ü½ÿ‹¾ÿнþнþ‰¼ý‰¼ýˆ»ý†»ý†»ý†»ý…¼ÿ…¼ÿ…¼ÿ…¼ÿ…»ÿƒ¼ÿºþ~»ü~»þ~»üºþºüºþºü€»ÿ€»ý€»ÿºüºþ~¹û~¹ý~¹ý~¹ý¸ý·ý‚·ý…µý…µý†µý†µý‰¹ÿˆºÿˆºÿˆºÿ‰ºÿйÿŒ¸ÿŒ¸ÿ¼ÿ¶ý–®ô›¦èš”Јw«mT~Z=[G*>F,7C-0@,-=)+8#(5(1%+")")"(!("'!&#%"$!$!# !  !  !                             !$$  !""%& ,1)691@>5F>5F@5FA6FB7GD9GE;FF,A?*>=);<*:=,<>0>@3@B7;;3>;6D?=>—EI³X]ÇhlÇii´a[¢`T—fUpYƒkS|bQ~bV„c^…aa‚^bX^‚UX‚PQz?Ap/3w08‚:F{4Dk$6q(;~1Cˆ1AŒ0;Ž.9…$/„$0’4B‘0A} 2k'e)b.Z.X/\"1`,e&w-Ž+=˜1D)<~-p)Y"S&O!J PW%V%KD=>F#U-`5i!9s :‡+B’1E“5E6B9FŒ>N~8Po0Mn5Ud2O\,BV,:S.5T23R23O11L..K/.L/1K12L23M34M47L69L69N7=P9?R;CQ:BO8@K4>H3F2=D0;C/:A-8@,7=,6KQEKQEJPDJPDIOCIOCIOCHNBJPDJPDJPDJPDJPDJPDJPDJPDIOCIOCIOCJPDJPDKQEKQEKQEIOCIOCIOCIOCIOCIOCIOCKNCKMBMMCPMDQNEROFSPGUQFVRGVPDVPDWQCXRDZRE[SF\TG\UE]VF]VD_XF`YGb[Id]Ke^Lf_Me^Le^Le^Le^Le^Le^Le^Ld_La[M_\M_\M_\Ma[Ma[Ma[Ma[MbZMaYLaWK`VJ^TH\RF]QE[QEZPDXPCVNAUM@TL?UM@VNAWOBSK>SK>RJ=PH;ME8IA4F>1E<-H8+G5'F4&D2$C1#B0"C1#C1#@. @. @. @. @. @. @. @. >*!>*!?+"?+"@,#A-$A-$B.%C/&B.%B.%B.%C/&E1(G3*H4+H5/H5/I60J71K82L93M:4M:4M:4N;5N;5O<6P=7Q>8R?9S@:UB>UB>UC?VD@YGE\JH\LL^NNbRRaSRbTTcUUcWYdXZeY[eYYdXXeZXhZYj\[m_^oa`rbbsccr``saauccweezfgzfgzfgzfe~lj}kg|iezgcxeaub^u`]t_\w_]w_]x`^ya_z`_y_^x^]w^Zv[RuZOtXMrVKoSHmQFlNDkMCjI@iH?gF=eD;gElJAkMEhOHqZTt[V}d_—yw®ŽÅ§©Ü¿Ã×¾ÄÓ¿ÈÏ¿ÌÈÀÏÀ½Îº½Î¶½Ðµ½Òµ½Ôµ¼Ö±»Ö¬ºÔ¨¹Õ¤¹ÖŸ¸Ö›¸Ø™·Ù–¶Ü“µÛ³Û²Ü±Þ±ß±Þ’³Þ’³Ü“µâ”¶ã–¸è˜¹ì—»ï˜»ó–ºô—»÷–¼û–¼ý”»þ“ºÿ’¸ÿ޹þŒ½ÿнüнü‰¼û‰¼ýˆ»ü†¼ü†»ý…¼ý…¼ýƒ¼ÿƒ¼ÿƒ¼ÿƒ¼ÿƒ¼ÿ‚½ÿºþ~»þ~»þ~»þ~»þ~»þ~»þ~»þ¼ÿ¼ÿ¼ÿ~»þ~»þ}ºý}ºý}ºý}ºý}ºý¸ý‚·ý…µý†µý†µý†µý‡¹ÿ…ºÿ…ºÿ…ºÿ‡¹ÿ‰¸ÿ‹·ÿŒ¶ÿ´ÿ“³üœ¯óž¢á—ŠÀ€i•fHjT4KF*8E+4A-/>+-:'+6#)3'1')#(#'"'"&!&!% % $##""!!!!  !                                 "#&&#!!"#$$%#(*"/5-:<4CA8IB9LB9LC:KF;LGFG:AE9=D8:F::J<=CB@AC@EECPOM^ZYd`]g_]c[XaVR`UOcTOgXQhWPaPHZGATC9F=,B=)=:':9'9:*:<.>@3BB8A>9B=:FA>NHHQMLSSQ^`_foll}wtƒ|‚y‚|pxg„yg‚ub€o]wbQxaQwbOubQtaPs[OuRNwKJsC?~GB•OM§XT°XT¯ZS²h[¶yg p\•o\l[mbninlŠjoŠfjƒUX‰QTƒBFz26}-6ƒ1?|)=l/z&=,?‡/=‘7@œ?G•6>-8•5A ;K’1B&8p2`.Y.\#4g*:f.i#v"‰-‘"5‰/v!c S!N%O$MR Z$\&S!R&L%J%Q)a2m!;y$C$C*F.E‰0B~0>w4Es9Ok5U^/Sc5\_3W[.KW-CW.*5=)4KQEJPDJPDJPDIOCHNBHNBHNBIOCIOCIOCIOCIOCIOCIOCIOCIOCIOCIOCJPDJPDKQEKQEKQEIOCIOCIOCIOCIOCIOCIOCKNCLNCMMCPMDQNEROFSPGUQFUQFVPDVPDWQCXRDZRE[SF\TG\UE]VF]VD_XF`YGb[Ic\Jd]Ke^Le^Le^Le^Le^Le^Le^Le^Ld_La[M_\M_\M_\Ma[Ma[Ma[Ma[MaYLaYL`VJ_UI]SG\RF]QEZPDYOCWOBUM@TL?SK>SK>TL?TL?SK>RJ=QI8R?9R?9TA=TA=UB>VC?WECZHF\JH\MJ`PP`PPaSScUUeWWgYYfZ\g[[dXXeZXhZYj\[l^]n`_qaarbbq__r``tbbvddxdexdexdewcbwecweawd`vc_ta]s`\s^[s^[v^\w_]x`^ya_z`_y_^x^]w^Zx]Tw\QvZOsWLpTImQFlNDkMCkJAiH?gF=eD;fD;gEgIAbIDkSOoVRu\X‹mk ‚€ºœžÕ¸¼ÛÂÈÖÂËÐÀËÆ¾ËÀ¾Ì½¾Ð¸½Ñ´ºÐ¶¼Ô´»Õ²¼×¯»Õ«º×§ºØ£ºÙ ºÛœ¹Û˜¸Þ•·Ý”µÞ“´ß’³à“³â“´á“´ß”µÞ•¶ã–·ä—¹é˜¹ì—»ï˜»ó—»õ—»÷–¼û–¼ý•¼ÿ“ºÿ‘¹ÿ޹þ‹¼þнþнþ‰¼ý‰¼þˆ»ý†»ý…ºþ†½ÿ†½ÿ„½ÿ„½ÿ„½ÿ„½ÿ„½ÿƒ¾ÿºþ~»þ~»þ~»þ~»þ~»þ~»þ~»þ¼ÿ¼ÿ¼ÿ~»þ~»þ}ºý}ºý}ºý}¼ÿ¼ÿºÿƒ¹ÿ†¸ÿ‡·ÿ‡·ÿ‡·ÿ‡¹ÿ…ºÿ…ºÿ…ºÿ‡¹ÿ‰¸ÿ‹·ÿ޵ÿ‰­÷—±û¡®òššÖ…wªmT~W8XJ*AD(6B(1=*.8(+5%(4!'1%.%("'"&!&!% % $$###""!! !  !                               !!#$''%$%&% &#($)',.&3:/=A6FF=PG>QH?RI@QLARMBRNCQNDOQEOODLM@GJ>BH<@H<>K5$:3#85&<8,A?3EB9GC:FA;JE?QQIUXQU_V]j`cwnoˆ„{‘Š’”Ž‹Œ‡Œƒz‰s…yizjZyhVwhUviVxkXyfWy[PxSJqK@uI’7›6¢";›%;‡ 3k$WK K$O%O R W"W%U$N M!R"Y&h/w!<&E…'B•/E‘.B…,@x+?n.Fi4Nb3SY0R\2V\2V^2S[0LY/EW.@U/P6?M6@K4>I2(4='3='3JPDJPDJPDIOCIOCHNBHNBGMAIOCIOCIOCIOCIOCIOCIOCIOCIOCIOCIOCJPDJPDKQEKQEKQEHNBHNBHNBHNBHNBHNBHNBJMBMODNNDPMDQNEROFSPGTPETPEUOCUOCVPBWQCYQDZRE[SF\TG]VF^WE^WE`YGaZHb[Ic\Jc\Je^Le^Le^Le^Le^Le^Le^Ld^N`ZL^[L^[L^[L`ZL`ZL`ZL`ZL`XK`XK_UI^TH\RF[QE\PDYOCWMAUM@TL?SK>RJ=RJ=QI/H8+G5'F4&D2$C1#B0"C1#C1#A/!A/!A/!A/!A/!A/!A/!A/!@,#@,#@,#A-$A-$A-$A-$A-$C/&B.%B.%B.%C/&E1(G3*H4+H5/H5/I60J71K82L93M:4M:4L93M:4M:4N;5O<6P=7Q>8R?9TA=TA=TA=UB>VDBXFDZHF\JH]MM^NN_QQaSSdVVfXXfZ\g[[cXVdYWgYXi[Zk]\m_^o__p``o]]p^^r``saauabuabt`at`_p^\p^Zq^Zq^Zq^Zq^Zq\Yq\Yt\Zu][w_]x`^y_^y_^x^]w^Zz_Vy^Sw[PtXMqUJmQFlNDjLBkJAjI@hG>fECJ?CGCDDBCDBCJHIVRS^XXd[\f\[k__h][uee‡xuˆvtp^\]IHXFBM<2F8+@2';/#9/#>6)D>2IC7JC9HD9OMAY[N^fW]n\azed„ul“ŽzŸŒ §Ž›¡•—’Ž‹Œ„ˆ†y€yg}r`vkYujVwjWzhTz]MxTDnJ°6E¨7I•.A„);‚+>…,Bˆ&=ž.G¬0L¶4N´6N 0F‚&5f)U#I L#R&S"T TT"W %KT`#k){6‹&D,KŒ,G“0D.B+Hu+Nk.Wd4^_5]Z4[V.SY1T_3W_1U[.MW,GU.AV2>U4;U79V8:U79R59O26K.3G,1K07L18L2;L2;J3=H1;F/9E.8E/;D.:C-9B,8@*6?)5='3='3JPDIOCIOCHNBHNBGMAGMAGMAHNBHNBHNBHNBHNBHNBHNBHNBIOCIOCIOCJPDJPDKQEKQEKQEIOCIOCIOCIOCIOCIOCIOCKNCNPEOOEQNEQNEROFROFSODSODTNBUOCVPBWQCYQDZRE[SF[SF]VF^WG^WG_XH`YIaZJb[Kb[Kd]Md]Md]Md]Md]Md]Md]Mc]M^XJ\YJ^XJ^XJ^XJ^XJ_WJ_WJ`VJ_UI^TH]SG]QE\PDZNBXNBUK?TL?TL?SK>QI8R?9R?9U@;U@;TA=TA=VC?XEAYGEZHF[KK\LL^NN`PPaSSdVVeWWfXXbWUcXVfXWgYXhZYj\[l\\l\\lZZm[[n\\o]]q]^p\]p\]o[ZjXVjXTlYUlYUmZVn[WoZWoZWrZXs[Yt\Zv^\x^]x^]w]\v]Yz_Xy^UwZRtWOqTLmPHlNFjLDkJCjIBiHAgF?fC=eBaEAgNJjNKoSP{][†hf¡ƒ…ħ«×¼ÁØÃÊÓÂÌȼȼÊÄÁÒÀÁÓ¹¼Ï»½Ô¹½Ö¶½×³½Ø¯½Ø­¾Ú©¾Ý¦¿Þ£½àŸ½á»ášºá™¹â˜·ã™¸æ™¸æ˜·ã˜¸á˜¹æ™ºç™»ë™ºí˜¼ð˜»ó˜¼ö–½ø—½ü–½þ–½ÿ”¼ÿ’ºÿŽ»ÿŠ»þ‰¼þ‰»ÿˆºÿ‡¹þ‡¹ÿ…ºÿ„¹ÿ„ºÿ„ºÿ‚»ÿ‚ºÿ‚ºÿ‚ºÿ‚ºÿ»ÿºÿ~»þ~»þ~»þ~»þ~»þ~»þ~»þ¼ÿ¼ÿ¼ÿ~»þ~»þ}ºý}ºý{ºý|½ÿ|½ÿ¼ÿºÿ„¹ÿ„¹ÿ†¸ÿ„¹ÿ·ý¸ý¸ý·ý„¶ý†µý‰³ý±û•«÷Ÿ«õ™šÛ{r©[HuJ/RG&AD$9=!09!.5!,0)-'+"*) % #""!"!! !     !                 #%&"#%$##%"( %#(&+( -.#15*8>3AE:JNEZOF[SG]UI]VJ^VK\WJ\VIZYKZWIVUGTREOQALO?IN>HK>EF@DD?CE@DJEIRLPZTVaX[dZ[l`bh\\uef‡wx‡tvq___MM\JHQ@9K:2D3+<.%;.%A5)F<0KA5JC3MG7VSBbeRft]gekŽpn›„v²ª»¼»Ä’´¾­³Ž¦¨ˆ–†”‡„†x|kwp^ujXzkXkVˆeQ‡aNsOCnLBoO@zUC‰ZJ bWÂqp߀ˆáx‰ßyŽÎu‹´i} cr–docg‡Za}CR€@Q|8Gw-<{(8…-=“2F™2G¢7K¡6F™1<–2:˜9=49‹289CÂDPÉBQº=M¤1B“,?Ž0B‰,?‚$6‘*=›.A¡2E™.@…)8p#-\!'Q $N #R!$Y &\$Z!VU Z#_#p +‚3Ž 9œ&F¤1Rž3Q’.H…'9%>t%Rm)df/r^1tY2kW3cQ+TW/T^1X_1X\.SX,MU/HT2BQ28Q35R38S49R38O26M05L/4I.5I.5I06I06H.7G-6F,5C,4F1:E09D/8B-6A,5?*3>)2=(1IOCIOCIOCHNBGMAGMAGMAFL@HNBHNBHNBHNBHNBHNBHNBHNBIOCIOCIOCJPDJPDKQEKQEKQEJPDJPDJPDJPDJPDJPDJPDLODNPEOOEQNEQNEROFROFSODSODTNBTNBUOAVPBXPCYQDZREZRE^WG^WG^WG_XH`YI`YIaZJaZJb[Kb[Kb[Kb[Kb[Kb[Kb[Kb[K]WI[XI]WI]WI]WI]WI^VI^VI_UI^TH]SG\RF\PD[OCYMAYMATJ>SK>SK>RJ=QI1E<-H8+G5'F4&D2$C1#B0"C1#C1#B0"B0"B0"B0"B0"B0"B0"B0"C/&C/&B.%B.%B.%A-$A-$A-$C/&B.%B.%B.%C/&E1(G3*H4+H5/H5/I60J71K82L93M:4M:4N;5N;5O<6P=7Q>8R?9S@:TA;VAVC?XEAYGEZHF[IIZJJ\LL]MM^PP`RRbTTbTT`US`UScUTdVUeWVgYXhXXiYYiWWiWWjXXkYYlXYlXYkWXjVUgUSgUQiVRjWSjWSkXTmXUmXUoWUpXVrZXs[Yv\[v\[u[Zu\Xx]Vw\SvYQsVNpSKmPHlNFkMEkJCjIBiHAhG@hE?fC=fC=dC>bFCeLHgKHlPMvXV}_]”vv¶™›Í²·Ô½ÅÔÃÍʽÇÃ»ÊÆÂÑÅÂÓ¿¾Ð¿ÀÕ½¿Ö¹¿×·¾Ø³¿Ù®¾Ø«¾Ü§¾Ý¥¿à¢¿á ¼á»áœ¹áœ¹ãœ¹åœ¹åšºãšºãš¹çš»èšºëš»î˜¼ð˜½ô˜¼ö—¾ù—¿ý–¿ÿ•¾ÿ’½ÿ‘¼ÿ¼ÿŠ»ÿˆºÿˆºÿ‡¹þ‡¹ÿ†¸ÿ„¹ÿ„¸ÿ‚¸ÿ‚¸ÿ€¸ÿ€¸ÿ€¸ÿ€¸ÿ€¸ÿ¹ÿºÿ~»þ~»þ~»þ~»þ~»þ~»þ~»þ¼ÿ¼ÿ¼ÿ~»þ~»þ}ºý}ºý{ºý|½ÿ|½ÿ¼ÿ€»ÿƒ¹ÿƒ¹ÿ„¹ÿƒ¹ÿ~·ü~·ü~·ü€¶üƒµü…´üˆ²ü¯ú˜¨õœžè‡‚ÂcV‹J3]D'FD$IL?HD:BABHBFOIMWNS]RX`UYk_cfW\hW]qadtaeiVZbOScPRTEBN?:H62B1*?1(C5*I;.MA1NB2QI6[VBfjSk{^ok{¥ƒ¼œ—ÞÐãã©âë©Ùå¢ÎךÁƯ®†•‚Œ€s|tg{n^n]r]šq[r_g]]TtTGtSB~TD‘XO®bfÉkyæ{•é}ÚyšÂk‹±e©fx]kŽP]}9N}9P|7Jz1B},;ƒ+;Œ&;%9¥4H®;L¬>IªAH¦AG–5<Œ/7œ7?»AL¹:E§/;•%3‰#1ˆ'8ˆ*:‰(9*:)7‹"1*v +o&/e*0\(,X$(Z"%c 'j#)h!'e"b "h!%{%.):¢(A¦#Bª'I«.Pš,I„";s1h=b]a"{[(S)O)|N+mO)ZU*U[,V]-WZ-VW-QT0JS2CN/7N/4N/4N/4N/4N/4M05N16I+3G,3G,3F-3E+4D*3D*3D*3E.8D/8C.7A,5?*3>)2=(1<'0IOCHNBHNBHNBGMAGMAFL@FL@GMAGMAGMAGMAGMAGMAGMAGMAIOCIOCIOCJPDJPDKQEKQEKQELRFLRFLRFLRFLRFLRFLRFNQFOQFPPFROFROFQNEQNERNCRNCTNBTNBUOAVPBXPCYQDZREZRE^VI^VI^VI_WJ_WJ_WJ`XK`XK`XK`XK`XK`XK`XK`XK`XK`XK]WI]WI^VI^VI^VI^VI_UI_UI`TH`TH_SG]QE\NC[MBZLAXL@SI=SI=SI=SI=QG;ND8KA5J@4LB6LB6LB6KA5J@4H>2E;/F:,H8+G5'F4&D2$C1#B0"C1#C1#C1#C1#C1#C1#C1#C1#C1#C1#D0'D0'C/&C/&B.%A-$A-$@,#C/&B.%B.%B.%C/&E1(G3*H4+H5/H5/I60J71K82L93M:4M:4O<6P=7Q>8R?9S@:TA;UBXE?ZGCZHDZHF[IGZJJ[KK\LL^NN^PO^PO^SQ^SQaSRbTScUTdVUeUUfVVeSSfTTgUUhVVhTUhTUfRSeQPfTRfTPhUQhUQiVRiVRkVSkVSlTRmUSoWUqYWsYXtZYtZYsZVvZVuZStWQrUOoRLmPJlMHkLGkJEjIDjIDiHCiFBhEAgD@fE@cECdHGdFDiKIrTRtVT‡ii¨‹Á¦«Ï¸¾×ÃÌͽÇźÈÉÁÐËÄÔÄÁÒÄÂ×ÁÁÙ¼Á׺Àص¿Ø°¾Ø¬½Ù©¾Û¦¿Þ¤¾ß¢¼ážºá¹á¸ã¸ãž¹äºäºä¹èœ»é›»ìš»î™½ñ˜½ô™½÷—¾ù—¿ý–¿ÿ–¿ÿ’½ÿ‘¼ÿ¼ÿ‰ºÿˆºÿˆºÿ‡¹ÿ‡¹ÿ†¸ÿ„¸ÿƒ·ÿ·ÿ·ÿ·ÿ·ÿ·ÿ·ÿ·ÿ~¸ÿºÿ~»þ~»þ~»þ~»þ~»þ~»þ~»þ¼ÿ¼ÿ¼ÿ~»þ~»þ}ºý}ºý{ºýz»ÿz»ÿ{ºÿ~¹ÿ¸ÿ¸ÿ·ÿ¸ÿ~·þ}¸þ~·þ€¶þ„´þ‡³þбþ’­ú˜ ë”ŽÔuj¦P>n>&J@#?B"78-7-2+,*('&!##$! "!!            """!!    !"%) ," -) ( (&## &#)&+*"/0%34)79.<@5CI=KNCSNBXPD\UG^WI`YL`XK_WH]VGZXGYWFXVEWUDTTBRQ?MP>LN>IA6>@9@E;CI?GNDLUJRYNV]PWhY`cT[aPXcRXeTZeTZgTZeUXUIIPECK<9E61D3,G6,K;.N>/TE2VI6`U?ggMkzYu•nŒ½ Ü¸¶ûé½ÿýÇÿÿÆúÿ¿ñü¯Þæ˜Áň¦¦€Œˆ‚|wn‚pdˆn]‘q\ r[¥ua qiŠbZySFtO?yO?„OG•PS¥SaÌnˆ×s—Öt›Ím“ÉkÉl‡»]u§K`˜@V=Q‰8G…3A†0=Š.;”+<š);¦/C­6I­:K®?O¬CR8H‘0C™9G—49”14/3‰,4ƒ'2%2Š*8–1?4Bž2?–,8‹%0„)207v08k*0g&,g &q(|%.(1{&-x&,&/˜)9¬,C¹(G¶ C°#E«*I–%Ay5g8YKStTšP#´J!®H#•K'O'eS(VW&UY(UY,WW/TP2LO2DN.9M,3K*1I(/H)/J+1L-3M05H*2E*1E*1D)0C(/C(/B)/B)/B+3A*2@)1>'/=&.;$,:#+9"*IOCHNBHNBGMAGMAFL@FL@FL@GMAGMAGMAGMAGMAGMAGMAGMAIOCIOCIOCJPDJPDKQEKQEKQEMSGMSGMSGMSGMSGMSGMSGORGOQFPPFROFROFQNEQNERNCRNCSMATNBUOAVPBXPCYQDYQDZRE^VI^VI^VI_WJ_WJ_WJ_WJ_WJ_WJ_WJ_WJ_WJ_WJ_WJ_WJ_WJ\VH\VH]UH]UH]UH]UH^TH^TH`TH_SG^RF]QE\NCZLAYK@YK@TH2J@4J@4J@4J@4I?3G=1D:.E9+H8+G5'F4&D2$C1#B0"C1#C1#C1#C1#C1#C1#C1#C1#C1#C1#E1(D0'D0'C/&B.%A-$A-$@,#C/&B.%B.%B.%C/&E1(G3*H4+H5/H5/I60J71K82L93M:4M:4P=7Q>8R?9S@:TA;UBXC>WB=WB=XC>XE?ZGC[HD[GFZHF[IIZJJ[KK[KK\LL[ML]RP]RP`RQ`RQaSRbTScSSdTTcQQdRReSSeSSfRSeQRdPQcONfTRfTPgTPgTPhUQhUQiTQjURjRPkSQnVTpXVrXWsYXsYXrYUtXTsXQrUOqTNoRLmPJmNIlMHjIDjIDjIDjIDkHDjGCiFBgECbDBbDD`B@fHFoQOoQOaažƒ¹Ÿ¢Ì¶¹×ÄÊϾÈǹÆËÀÎÍÅÔÉÂÒÆÃØÄÂØÀÂ×»ÀÖ·¿Ö²¾Ö®¼×«¼Ø©¾Ý¥¾Ý£»ß ºß ·àŸ¸á ·ã ¸äŸºåž»åžºéžºéœºìœ¼ï›¼ñ™¼ô™½÷—¿ú—¿ý–¿ÿ”Àÿ’¿ÿ½ÿ¼ÿ‰¹ÿˆºÿ‡¹ÿ‡¹ÿ†¸ÿ†¸ÿƒ·ÿƒ·ÿµÿµÿ}µÿ}µÿ}µÿ}µÿ}µÿ|¶ÿºÿ~»þ~»þ~»þ~»þ~»þ~»þ~»þ¼ÿ¼ÿ¼ÿ~»þ~»þ}ºý}ºý{ºýz»ÿz»ÿ{ºÿ}¹ÿ~¹ÿ¸ÿ¸ÿ~¹ÿ|·ý|·ý}¶ý€´ýƒ³ý‡±ýНý”«÷•—áŒÃiZ‘C0]9 @?#:= 22%3+1,++%(#"""#  !!             #"""!     !"$'+" .$"/#-$!,# +!)%%"(%+*"/.&35*89.<>3AD9GMAOSFWNAUOCYTF]WI`XK_WJ^VG\TEXVEXVEWUDVTCUSAQQ?OO=MM=J>2<@6>E:BJ?GNCKSHPXKTZMVbR\bR\cR\cRZgV`jYakWbeT\WMNRHGN@?J86G6/H7-L:.O>.XG5[J6`T>dcGhwVwšr–Ë´ðÊÇÿíÓÿÿÝÿÿÞÿÿÔÿÿÁïü£ËÕŽ«³~‰…‚…xr…od…jYŒiU—jSœlX`R€REsH7xK8€Q?‡QEPM–NYNc°ZwÂdˆÌhŽÝq•éw˜ái…ËUmºMb©DV—7E0;0;™5A©:J³>P¨/B©/D¢,B£1H¨VH=TH2I=1H<0G;/H:-H8+H6(E3%B0"@. @. A/!A/!B0"B0"B0"B0"D2$F4&H6(I7)J6-I5,G3*E1(D0'C/&C/&C/&@,#A-$B.%C/&E1(F2)G3*H4+I60J71J71K82L93M:4N;5O<6Q>8Q>8R?9S@:TA;UBZC=XA;UA:U@;VAXE?\IE[IE[IG\JH]KI[LI[KK[MLWLJXMK\NM_QP`RQaSRbRRbRRgUUfTTfTTfTTgSTgSTfRSfRQgUSgUQgTPgTPgTPiVRkVSlWTkSQlTRnVTpXVqWVqWVqWVpWSrVRtYRvYSsVPoRLlOInOJpQLoNInMHlKFkJEjGChEAfC?eCAcDBcCDgGHlLMmNLpQO}__‹np­“–Á¨¬Ñ¼ÃÓ¿È̼Ç˽ÊʾÌÇ¼ÌÆ¾ÓÁ¾Ó¾¼Ò¹»Ò¶¼Ô³½Ö´¿Û²ÁÞ§ºÚ¦ºÛ¤»Ý£»ß¤ºã£ºã¤¹ä£ºä¡¹åŸºåž¹è¹èœºìœ¼ï¾óœ¿÷›¿ù˜Àû—¿ý”½ý‘½þ¼ÿŽ»ÿ‹ºþ‰¹ÿˆºÿ‡¹ÿ‡¹ÿ†¸ÿ†¸ÿƒ·ÿƒ·ÿ‚¸ÿ‚¸ÿ€¸ÿ€¸ÿ€¸ÿ€¸ÿ€¸ÿ¹ÿ¼ÿ€½ÿ€½ÿ€½ÿ€½ÿ€½ÿ€½ÿ€½ÿ}ºý}ºý~»þ~»þ~»þ¼ÿ¼ÿ}¼ÿ{¼ÿ{»ÿ|»ÿ~ºÿ¹ÿ¹ÿ~¸ÿ~¸ÿ{µþw±ú~¶ÿ„¸ÿ¯ü‡®ý±ÿ—ª÷™–Ý€p®]K}B-T489 5?$34*0).**+&)$%! !!                     !  !  """"""""!!      #%'%$$%(!-%#1(&3&"0(".'!-'!-',',&+&+,!//$25)7<0>D8FK?MQCRSFWOBVPCWQDXSFZUF[WH]XI\YJ]TCVUDWVCVUBUR?RN;NL7JG5E;.8>3;E8AL?HQDMTGPXHRXHRcS^bR]bP\aPZbP\cR\eS_fV`[NUSGKN>?N:;H51D1*L8-XE6bO>dR>dU@_]DctTyŸxšÕ§¼öÐÛýíïÿÿðÿÿëÿÿãÿÿÓ÷ÿ³Ôå—®¾„Š˜ƒ|„€pp†pe‰r`ŠnXiSfP„WB|N7~J2ŠR;V@R@ŠPEŠPNPX¡Zl¬Xr»XuÙf…ìk‰ïc~î`xÔOdÇJZ½GW§7Cœ.9 2=§3@¶=Nµ:N¥)A¤.H¸Ed·Hi¢6Z 3Z¶Df¿AYÄEXÀK]ª?O•0>—5B 7F™+8­4Cº¨4A´5FÀ.EØ9WÕ1S¾#C¬'B˜(>{/d1SCFdB›DÊH#íH&îC"ÇAœM&yP$_S!TS"OS%SN(OH)HD(>H(5K'1K'1H'0H'0H'0G(0G(0D%+C&+B%*B%*?$)?$)>#(=$*?%.<"+: )9(;!*;!*8'6%IOCHNBHNBHNBGMAGMAFL@FL@GMAGMAGMAHNBHNBIOCIOCJPDIOCIOCIOCJPDJPDKQEKQEKQENTHNTHNTHNTHNTHNTHNTHPSHQSHRRHTQHSPGSPGROFSODSODTNBTNBTN@TN@UM@UM@VNAVNA[SF[SF[SF\TG]UH]UH]UH^VI^VI^VI^VI^VI]UH]UH]UH]UH]UH]UH]UH]UH_UI_UI_UI_UI`TH_SG^PE\NCZLAXJ?XG=WF2I=1H<0I;.I9,H6(E3%C1#A/!A/!A/!A/!B0"B0"A/!B0"C1#E3%G5'H6(I5,H4+G3*F2)D0'D0'C/&C/&A-$A-$B.%C/&E1(F2)G3*G3*I60I60J71K82L93M:4N;5N;5P=7Q>8R?9S@:TA;UBZGCZGCYGEZHFZHF[IGYIIZJJXJIWLJ[ML^PO_QP`RQaQQaQQeSSeSSeSSfTTgSTgSTgSTgSRgUSgUQgTPgTPgTPhUQkVSlWTlTRmUSoWUpXVrXWrXWrXWrYUsWStYRvYSsVPoRLmPJnOJpQLoNInMHmLGkJEkHDiFBhEAgDBfDEdDEfFGkKLlMKnOMz\\‡kj¡„†²™œÅ®´Í¸¿Í¼ÆÏ¿ÊÐÀÍ˾ÏżÏ½ÑÁ¾Ó¾¿Ô¼¾Õ¶¾Õ³½Ø°¾Ùª»Ù¨»Û§»Ü¥¼Þ§ºâ¥»ä§ºä¥ºå£ºæ¢ºæ¡¹éŸºéŸ»íž¼ðŸ¾ôÀø›¿ù˜Àû–¿ý’¾ý½þ½ÿŒ»ÿ‹¼ÿˆºÿˆºÿ‡¹ÿ‡¹ÿ†¸ÿ†¸ÿƒ·ÿƒ·ÿ·ÿ·ÿ·ÿ·ÿ·ÿ·ÿ·ÿ~¸ÿ€»ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ~»þ~»þ~»þ~»þ~»þ¼ÿ¼ÿ}¼ÿ|¼ÿ{»ÿ~ºÿ~ºÿ~¸ÿ~¸ÿ~¸ÿ~¸ÿ{·ÿw±ú€¶ÿ†·ÿƒ®ü‰®þ“¯ÿ—§ô’‹ÎvcšS@n?)M47619#02).(,*'*%)#'!! !!                             """"""""!!     !#%'''&'*!-%#1)%3)#1)#/)#/(".)!.( -( -( -/$22'57+9>2@E9GK?MQCRSEVNASOBTPCWQDVTEZUFYWH[WH[UDWUDWVCVUBUR?RM:MK6IH3D=-8>18E5?IdUBa_HcvZx¢~˜Ù¯¿ûÙèÿô÷ÿÿôÿÿëþÿáÿÿÓôÿ²Ñ敪¿„‰œy„€pp‡sh‡ua‚lT€dN…bLW=„U9“W= ^F¢^G—VD‰QDƒQJ~LOŒR^™Nb°PkÙdòk‰ô_|òZsìYlÙL]Å@Q¬/=Ÿ)5¡-: *8¦0@´:O¦0H¡.K¥6W¢4Y—*S›,W®5^Æ9YÈ8S»9Q¨1Gœ/B®EV»O_µ@P³6DÀ>JÁ=J¼=H·BK¤9CŽ-6-8–0=™*:Ÿ$6£$7§*:­3B¶8F¿8IÆ)DÖ3PÒ1R¿/J¬5K0>r"/_ 3P"FF"lD£F!ÑF$ôG&óD$ÍC"¥EvGZLNNJN NL#MF$ED$#(?&,<"+: ): );!*;!*8'6%IOCIOCHNBHNBGMAGMAFL@FL@FL@GMAGMAHNBHNBIOCIOCIOCIOCIOCIOCJPDJPDKQEKQEKQENTHNTHNTHNTHNTHNTHNTHPSHQSHRRHTQHSPGSPGROFSODSODTNBTNBTN@TN@UM@UM@UM@UM@XPEXPEYQFYQFZRGZRG[SH[SH\TI\TI\TI\TI\TI\TI\TI]UJ^TH]SG]SG]SG_SG_SG_SG_SG^PE^PE^MC\KAZI?XG=WE;VE;RD9RD9QC8QC8QC8QC8QC8QC8PB7PB7OA6N@5M?4L>3K=2J8R?9S@:TA;UBWD@XEAWECXFDXFDVGDVHGVKIZLK\NM^PO_QP`PP`PPcQQcQQdRReSSgSThTUhTUhTSgUSfTPfSOfSOgTPhUQjURkVSlTRmUSoWUqYWsYXtZYsYXsZVtXTuYUvYUsVRpSOnQMoPMpQNpNLoMKnLJlJHlIGjGEiFDiFDhFGfCGhFGlJKjKIlMKuWU€dc‘tv¡‡Š¶£Ã¬´Í¸ÁÒ¾ÉÓ¿ËͼÌǼÍŽÒÄ¿ÓÃÁÖ¿ÀÕ¸¾Ô´»Õ¯»Õ®½Ú­¾Ü«¾ßª¾á«½ãª½å«½åª½ç¥¼æ¤¼è£»ë¡¼ë ¼îŸ½ñ ¿õžÁù›¿ù—¿ú–¿ý“¿þ‘¾ÿ޾ÿ¼ÿŒ½ÿˆºÿˆºÿ‡¹þ‡¹þ†¸ÿ†¸ÿƒ¸þƒ·ÿ·ÿ·ÿ·ÿ·ÿ·ÿ·ÿ·ÿ~¸ÿ€»ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ¼ÿ»ÿ}¼ÿ}»ÿ~ºÿ¹ÿ·ÿ~¶ÿ}·ÿ}·ÿ~¸ÿz²ý€´ÿ…´ÿ†¬ý­ÿ”¬ÿ”Ÿî‚z¶bND/X9&F252,2 ,-'*'()&*#(!& ! !##""!!!!!!!!!!            """"""""!!!   "$&' +*)*!,$ /'#2*&4,&4+%1,$1+#0+#0*"/,!/,!/3'55)79-;?3AE7FJ-7?05C2:G8?M3V@5\I;cSFa`Ndwaw¤‡—ߺ¿ÿãéÿýòÿÿñÿÿêÿÿâÿÿÑöÿ¬Ï厧½†˜zt~ynl…uhƒt_vfOr\Gy]HvR8ˆY?¡cL®gSª^N•PA„J?|IE~PR†S\‘L_«SlÛjˆös“ùjˆùc~ùavæSeÑGW¼9I¯5D©3Cž+:™)7ª;L¨;P¤9Uœ3R˜.Rœ2X«>g¿GmÏ?bÌ7Wº/L¢!=š$<°?S¾J]±;K·9EÂ@LÅANÅANÆCQº9K«.@¦-@ 0@ ->¦':«&;­,>¶7HÅBRÑFYÖ9TÕ5QÁ+H©(>‘,SK>UMBVNCVNCWODWODXPEXPEXPEZRGZRGZRG[SH[SH[SH\TI\TI]SG]SG\RF\RF^RF]QE]QE]QE\NC[MB\KAZI?XG=WF3L>1J8,I7)H6(F4&D2$C1#B0"B0"B0"A/!@. @. A/!C1#D2$E3%F2)G3*G3*G3*F2)E1(D0'C/&B.%B.%C/&D0'D0'E1(F2)F2)H5/H5/I60J71K82L93M:4N;5P=7P=7Q>8R?9S@:TA;UBMN@OQ@PSBRTCSUDTYFYYFYZEXXCVT?RO:ML5II2BA-6?/2A06D39J9?P?GWFN[JT\KU[JTYGSXFRVDRUCQTBPSAMUAMU>HY;EX9?U8:Q76O;4Q=6R>5ZF?aPI_[R^sds Œ“ÜÁ¸ÿëÔÿûæÿÿéÿÿåÿÿÖýÿ¼å÷˜»Ñ|•«u|Œojqod`zl_ylYl]HjUDvYGqK4‰W@£bP©aRœREˆD;zA:tD@}SU…V`ŽOb£SlÍf„åmîkûlŠûbv÷\lêWiÚObËHZº?Q¨5Dž/?¥:L¨@W§@]5X˜0U¢8`´GnÇOsÏBdÒ=]Ç6W²'F©"@»6QÃ=V²-B¼8FÀ®7JÃ=UÆSK>RJ=RJ=SK@SJATKBTKBULCULCVMDVMDWNEXOFXOFYPGZQHZQH[RI[SH\RF\RF]QE]QE\PD[OC\NC[MB\KA[J@ZI?YH>XF1J8,J8*I7)H6(F4&D2$C1#B0"A/!A/!@. ?-@. A/!B0"C1#E1(F2)G3*G3*G3*F2)D0'C/&C/&C/&C/&D0'D0'E1(E1(E1(G4.H5/I60J71K82L93M:4M:4O<6O<6P=7Q>8R?9S@:TA;UA:V?9X?8X?8X?8W@8W@8W@:T@9S>9S>9R?;S@KP@MQANSAOTBPZEVZEVZEVYDUV?QR;MM6HJ3CB/5B/1B/3D15I6:P=CUDJYHP[JRZIQYHRXGQUEPRBMQANQ?KS?KU>HY;EY:BX;?U==Q>:O<6S>;YDC]KKXRRVfcgˆ‚ɹ¡ïâ·÷÷ÈÿÿÒÿÿÈõÿ¯Üó‘¹Òs–¬f{Žko{e_ceXRo_Pn^NfUCiRDxVJ{L8tA>tHIxMTS`ˆNd•Li¬Uu½W|Ì\‚èg†ûduÿfrÿduòZoÙL_Á=R´;L¬;M¥;O¡;S5V™0X™.XŸ2\¤7`¯9\º3SÉ8WÖ@cÕ;_Ò2Xß=bèDgÚ;YÉ4J¿6F´:E¬=F¤:F¢9H¢7K¡4I¥6IºATÒHaÖF_ÇDJ>CI=CI=EK?EK?EK?FL@FL@GMAGMAHNBIOCIOCIOCJPDJPDKQEKQEKQEMSGMSGMSGMSGMSGMSGMSGORGQSHRRHTQHSPGSPGROFSODSODUOCTNBTN@SM?SK>RJ=QI3L>1K9-K9+J8*J8*H6(F4&D2$B0"A/!@. ?-?-?-?-A/!A/!C/&E1(G3*H4+H4+F2)D0'C/&D0'D0'D0'D0'D0'D0'D0'D0'G4.G4.H5/I60J71K82L93L93N;5O<6P=7Q>8R?9S@:TA;UA:V?7X?8Y@9ZA:YB:XA9W@:V?9S>9S>9R?;S@0?B4CF5EH8EH;EIIMU?AQ?=L:8Q=Tª5O¡0L ,Oª2X¶7`¸7^µ3W¶0Q°%B»*GÕ;]âBfå:dí/:w6>v7@m/O#:K%2H$.G!.H"1J$3L&5M)5O+7Q-7R.8G&-G&-F',E&+E')D&(C&(B%'B(+?$)="'="'>#(>#(; %9#DJ>DJ>CI=CI=BHEK?EK?FL@FL@GMAGMAGMAIOCIOCIOCJPDJPDKQEKQEKQEKQEKQEKQEKQEKQEKQEKQEMPEQSHRRHTQHSPGSPGROFSODSODUOCUOCTN@RL>RJ=QI[J@ZI?ZI?YH>YG=XF3K=0K9-K9+K9+K9+I7)G5'D2$B0"A/!@. ?->,>,>,?-@. B.%D0'G3*H4+I5,G3*E1(C/&D0'D0'D0'D0'D0'D0'D0'D0'G4.G4.H5/I60J71K82L93L93N;5N;5O<6P=7Q>8R?9S@:UA:X?8[@7ZA:[B;[B;ZA:XA;W@:T?:T?:T?:U@;TA=UB>UB>TB>UGFUJHYKJ[ML]ON^PO_OO_OOcQQcQQcQQcQQdPQeQReQReQPeSQdRNdQMdQMeRNfSOiTQjURhPNjRPmUSpXVsYXtZYu[Zu[Zy]ZvZWtVTsUStVTtVTrSQoPNkIHkIHkIHkIHkGGkGGkGGkGGpINiEIhDFkIJkLJiJHkMKqSQpTSqUTx^aŠot›€‡ª˜¾ ¬Ë±¾È¶ÆÃ¶È¶ʿ¸Ê½ºÏ»¼Ñ¹¾Ô·¾Ø·ÁÜ´Âß´Áá´Áã³Áä³Áæ³Áè²Áꬿꩾ맽졻ñž½óœ¿÷˜¿ø–Àú”Àý‘Áÿ‘ÁÿÁÿÃÿŽÃÿÂÿÂÿŽÁÿŽÁÿÀÿÀÿŠÀÿŠ¿ÿ„»ü„»ü‚»þ‚»þ‚»þ‚»ÿ‚»ÿ¼ÿ…Àÿ„Áÿ„Áÿ„Áÿ„Áÿ„Áÿ„Áÿ„Áÿ„ÁÿƒÀÿƒÀÿ¾ÿ€½ÿ¼ÿ~»þ~¹ÿ‚ºÿƒ¸ÿƒ·ÿµÿ²ÿ~²þ|°ü|°ü³ÿ|­úªùƒ¨ùФù¡ù~‡â]_ª8/Z. 9(2(2"*!)!'  " # %!&%$$$##"""                           """"""""""##$%%&(('''( )!*%.%.$-%.(!1,%5/(82,:1)81)63(62'52'51&42&42&45'67)89+:=/>C2BF5EI8HK;HH;DH;DLNR;KO9EG35G34G34H45J79N;=Q>BS@DTCITCKUDNTCMRBMO?JM=HK;FE8AJ9AL5?K28L69Q=>L<cã;^ã9Tá:TÍ0K¾(EË0PÜ<^à7^â3Zî:añ?cèA]Õ=TÇBU¹BU¦;O =R¤@\ 9T­=S´6LÃ.KÏ2QÑ;VÏ?XÁW'=W%>T"=R>P#(>#(DJ>EK?EK?FL@FL@GMAGMAIOEIOEIOEJPFJPFKQGKQGKQGJPFJPFJPFJPFJPFJPFJPFJPFQRJRRHRRJSPGSPGROFROFSODSODUOCTNBRL>QK?QIRJ?SI@RJ?TJATLAUKBTLASI@SK@UKBUMBXNEXPEZPGZPFZPDZPD[OCZNBXL@WK?VJ>VH=YK@XJ?XJ?WI>XG=WF4N>1M<2M=0K9+K9+L:,L:,J8*G5'D2$C1#A/!@. ?->,=+>,?-?-A-$C/&F2)I5,I5,G3*E1(C/&E1(E1(D0'D0'D0'D0'C/&C/&F3-G4.H5/I60J71K82K82L93N;5N;5O<6P=7Q>8R?9S@:T@9W@8Y@9ZC;[D<[D>ZC=XA;UA:U@;U@;U@;VAVC?VC?UC?WHEWIF[KK]NK_OO_PM_OOaOMdRRdRPcQQcQOdPQdPOdPQcONeSQdRNcQMcQMeQPfRQgSRhTSePOgRQjUTmXWqYYs[[t\\t\\w]\tZYsWVrVStXWtVTqSQnOMhIGjHGjHGjHGkGGjFFjFFjFFpILkDGhDFmIInLKjKImNLrSQxZZuWWx[]ƒfjpv›|„®Ž™½¡­Ä¯ÀòÄĵÈĸ̺Ͽ¼Ñ»»Ó·»Ô¹¿Ù¸¿Û¶¿ÞµÀà³Àâ³Àã²Àã±À笿騿륽뢽젼ì½ðœ½òš¿ö˜¿ú–Àü”Àý“Áÿ’Âÿ’Âÿ‘ÂÿÃÿÃÿÃÿÃÿÂÿÂÿŒÂÿŒÂÿ‹Âÿ…¼ýƒ½ýƒ¼ÿƒ¼ÿƒ¼ÿ‚½ÿƒ¼ÿ‚½ÿ†Áÿ…Âÿ…Âÿ…Âÿ…Âÿ…Âÿ…Âÿ…Âÿ„Áÿ„ÁÿƒÀÿ‚¿ÿ€½ÿ¼ÿ~»þ~¹ÿ‚ºÿ¹ÿ‚¸ÿµÿ³þ}±ü|°ûz°ú|±ýw¬úz«ú¨úˆ¤øŸöz€ÖWT›1)P+"7*!4' 0*!+"*  ! # %!&!&!&$#$"#!"!                       !!!!!!!!!!!"#$ % % %!( ( (&''"*"*%-#+$,%-) 1,&41(94,;3(63(64(63'53'52&43%42$38*99+:>-=B1AF5EI8HL;KN>KJ:EK;EMJRAKUAMUAMUAMWCOYBRZCSXAQV?OSQV¶>Z¶@b¯8XÂC^ÌB\Ú?^Ý>\Ó=XÆ;R·:L¯9IÀEWª1D¢3F¡@QŠZ&=V';S)7N*.H)$E&#K(/K'5K'3J&2H'2H'0G(0F'/F).F).E(,E(*D'+D')C&(C&(B(+?&*="'<#'?$)=$(CI=AG;@F:?E9@F:@F:AG;AG;AG;BHNJ?OI=OI=PH=QG=RHSI=VI@UK?WJAVL@VI@TJ>WJAVL@YLCWMAZMDXNBUK?UK?UK?UK?UK?UK?UK?WK?WK?VJ>UI=TH0Q;0O9,M7,J7)D2$D2$D2$D2$D2$E3%E3%E3%@. @. ?-?->,>,=+=+=+!>,"@.$B0&C1'D2(D2(D2(D2(C1'C1'B0&A/%@.$@.$?-#B/)C0*D1+F3-I60K82L93M:4O<6O<6P=7P=7Q>8Q>8R?9R?9VB;VB;VB;VB;VAWD>XE?XEAYGCYGCZHF[IE\JH]KG^LJ_LH^JI_LH`LKaNJbNMcPLcONdPOdRPbSPaROaROcQQcQQcQQbPPhUWhUWhUWhUWjW[lY]o\`q]_oY[rZZsYZrXWpVWnRQjNMhJJfGEfGEhFEhFEhECgDBhBAgA@hDDiEEjFFlHHnJJoMLqONrPOvTUxVWzW[~[_…bhmsž{‚¥…§Œ­–ªº¤¹Å²È̺ÐË½ÔÆ¼ÔÁ¼Ó¾¼Ô»½Ö¹½Ú¸¿Ü·Àß·Âà¶ÄáµÅ榼ᢾ墿é¡Àì¡ÁðŸÃõŸÄùÄû›Ãþ˜Âþ•Áþ“¿þ“¿þ”Àÿ•Áÿ“Ãÿ“ÆÿÆÿÆÿÆÿÅÿÅÿÄÿ‹Åÿ†Àÿ†Àÿ…¿ÿ„Àÿƒ¾ÿ‚¿ÿ‚½ÿ‚½ÿƒ¾ÿ„¿ÿ…Àÿ†ÁÿˆÄÿ‰ÅÿŠÆÿŠÆÿˆÄÿ†Âÿƒ¿þƒ¿þ„¿ÿ„¿ÿ‚½ÿºÿ¼ÿ€»ÿ¸ÿ}¶ý}³ù|²ø|³öz³øt°ùv´ÿv°ÿx¨ü¡ö‚“ålk¹ND-&G'#4 +'')!) (!(#("'#'"'#'"&"& $!# "!" !                        ! ! "!!!%(#(%*#($)"'$)"'',%*(-( -,!1+#0.#3/$24&56&36&36&36&37'47'47'49)6;+8>,:A/=E3AH6DJ8FK9GN9HO9FO9FP:GQ:JQ;HQ:JR;KXAQXAQZBRYAQX@PV>NT./?/2A14@16=49=;>@DGBKRNVkV[xd_e\{^ToZLeZI[_IUiJRtPTzWU|VSuRLsNFzMHOHŒSH‹SF‡SE‚RDSJ~SM~RSRWO[L]„MbŒQeLbEY“FZ¦J_²@YÏSwÑW”ÊN¤ÔOÂÛOÊßK»êP¦ãFsêCWñ=Hù:Iÿ8Uÿ6\ý6aû7_ÿAaò5Uð:búIuúJyúIwüFlø?^ûAVûDV÷HYîG[ãC_ÜAcÜAkÞCmâCiäDfá=_Ù:XÌ:Q²3D¡7A¤KQ“BHƒ8?9D|:Fd*8T!0U&6U+9^2Cd5Ge2Ea*=e*>n1Cq2Cl/?f->c.>_/=\0=Y19T04O-,K+,M,3M,5K,4I+3F+2D+/A+.@*-D.1B,/B,/C-/E/2E/1D+.A(+?&*='*>%):$':!%5"41DJ>CI=BH<@F:@F:@F:AG;AG;BHEK?FL@FL@GMCGNFGNGHOHHOHIPIIPIJQJJQJJQJJQJJQJJQJJQJJQJJQJKPJMPINOINOIOPJPPHQQIQQIRRJOLCNKBOK@OK@NJ?NJ?OI=PH=RHWK?WK?WK?VJ>WK?WK?WK?WK?XL@XL@XL@VL@VL@VL@VL@VL@VL@VL@VL@TJ>TJ>SI=RH,>,>,=+!>,"@.$B0&C1'D2(C1'C1'D2(C1'C1'B0&A/%A/%@.$@.$B/)C0*E2,G4.I60K82M:4M:4O<6O<6P=7P=7Q>8Q>8R?9R?9UBWD>XE?YFBZGC[HD\IE]JF^KG_LH_LH_LH_LH`MIaNJbOKcPLdQMcQMcQOaROaQQbRRbRRbRRbRSbRSgWZgWZgWZgWZhW]jY_l[ap]ao[]q[]s[[rZZqWXmSTkONiMLeGGfGEhFEgEDgDBfCAgA@gA@gDBhECjGElIGnJJpLLrNNrNNvRTxTV{W[~Z^„`dŽjnšu|¢~ˆ¡‚’¦Š ´˜®À¨¾Ê´É̺ÐȺѸÐļÔ¾׿¿Ù½ÁܼÁÞ¹ÃÞ¸ÄÞµÄᨿߤÁã¤Àç¢Âë¡ÂïŸÃóžÃ÷›Äú›Äü™Ãý—Àþ”Àý–¿ý—Àþ˜Áÿ—Ãÿ”Æÿ‘ÇÿÆÿÆÿÅÿŽÆÿÅÿ‹ÆÿˆÂÿˆÂÿˆÂÿ†Âÿ†Âÿ„Áÿ…Áÿ…Áÿ…Àÿ…Àÿ†Áÿ‡ÃÿˆÄÿŠÆÿ‹Çÿ‹ÇÿˆÄÿ…Áýƒ¿ýƒ¿ý„Àÿ„¿ÿ‚½ÿºÿ¼ÿ€»ÿ~¹ÿ}¶ý}³ù}²ö}²öz³ør°ùt³ÿt±ÿvªþ‚¥÷…•ãpj²PC{+%A%#1+(( )!) (#)#)#(#(#'#'$&"% $ " "!!                            """! !""##$$"%'$'$'%(%(%(%(%('*(+),*-,!/.#1/$20$26&37%37%37%38&48&48&49'5;)7<*8>,:A/=D2@G5CI7EL7FN7GP8HP8HQ9IQ9IR:JR:JR:JX@PX@PYAQYAQX@PV>NT00=//<..=11E77G:APEUWK_aOeaNbYHXRBOQ@JV?GdEKnKOwPQwQPsNHrKDzJF~MF‡XN†XK…UIƒSIƒRM„RS‡RXˆR_YlŒQgŒLd•Og›PeœK\FV£EU´GZÈVxÃSޏFžÈJÅßWÝí\Õûb¼îNzðJXôADú=Dÿ;Vÿ;cÿ=jÿkå;b×1UÌ1PÄ9P«5E’3;Ž?B‚BBn67l39k6>d08Q>8R?9R?9UBWD>WD>YFBYFBZGC[HD\IE]JF^KG_LH`MI`MIaNJbOKcPLdQMeRNdRNbPN`QNaQQbRRcSSdTTdTUeUViY\iY\hX[hX[iX^jY_l[ao\`p\^r\^s]_r\^rZZpVWnQSkONgIIgGHhFEgEDgCCfBBeB@eB@gDBgDBiEEkGGmIIoKKqMOrNPvRVwSWzVZ|X\€[bˆcj“nu™u˜wˆš}‘¥Š³š¯Â«¿É¶ÊȹÎĸÎÈ¾ÖÆÁØÅÃÛÃÅÞÁÅÞ¾ÄÞ»ÂÜ´ÂÝ®ÁߪÃâªÂæ¦Âç¥Âê¢ÃîžÂòÂöœÄø›Äú™Ãý˜Âü˜Âþ™Ãÿ›Ãÿ™Æÿ”Æÿ“Çÿ“ÇÿÇÿÇÿÆÿÆÿÅþÅÿÅÿŒÄÿŠÅÿ‰ÄþˆÅþˆÃý‡Ãÿ‡Ãÿ‡ÃÿˆÄÿ‰ÅÿŠÆÿ‹ÈÿŒÉÿŒÉÿˆÅþ†Ãüƒ¿ûƒ¿ý„Àÿ„¿ÿ‚½ÿºþ‚»ÿºÿ·ÿµÿ€±ý±ú±ú}±üu®ûv±ÿv®ÿ{«ÿ‡¦ø†’ÞmfªM?t)#?$"0 +) ) )'%#)#)#(#(#'#'"&"%!%!#!# " "!!!                   ##""!!! """##$$# $&$&%'&(')')(*(*)+)++-, .."0/#10$22$36&37%18&28&29'39'3:(4:(4;)5<*6>,8@.:C1=E3?G5AJ6BN8EO7EO7EP8FP8FQ9GQ9GQ9GU=KV>LW?MW?MW?MV>LU=KTJ39D/4B.0>*,;(*:')<)+>+-@-/=*,<,-;+,9)*7'(7))<,->/4HZ?DdFHmKLoMKmLGmJDuJDyLG„YR„WQƒTNƒRN…QSˆSYU`Ve—YnŽMeC\—E\¥I^©FX¦=K¢6E´DZ½Nn¸Hz³>…ÊHªé]ÆúiÆÿm±ó^~ôZdòOTôFPû@[ÿ@eÿAhÿ@eÿBcú6Zô8hõ@wñ?{óA}ûDzû?oÿBhþ@bù@`öAd÷Dn÷EwøE}øE|öFuêAjÓ3YÅ4UÂ@Z®=Q•3@‹5>DH~9CI=BH<@F:@F:@F:AG;AG;EK?EK?EK?DJ>DJ>DJ>DJ>DJ@ELDELEFMFFMFGNGGNGHOHHOHIPIIPIIPIIPIIPIIPIIPIJOINQJOPJOPJPQKQQIRRJRRJRRJPMDOLCPLAOK@OK@NJ?PJ>QI>SI=UI=UI=UI=VJ>VJ>VJ>VJ>WK?VJ>VJ>UI=THUI=TH,"@.$A/%B0&B0&A/%A/%B0&B0&B0&B0&B0&B0&A/%A/%B/)C0*E2,G4.I60K82M:4M:4N;5N;5O<6O<6P=7P=7Q>8Q>8TA;TA;TA;TA;TA;TA;TA;TA;TA;TA;TA;UBYFBYFBZGC[HD\IE]JF^KG^KG`MI`MIaNJbOKcPLdQMeRNdRNaOM`QNaQQbRRcSSeUUeUVfVWjZ]iY\iY\hX[iX^kZ`l[ao\`q]_s]_t^`t^`t\\qYYnTUnQShJJgIIfGEfDCfBBeAAeB@eB@fCAfCAhDDjFFlHHnJJpLNqMOtPTvRVxTXzVZ|W^‚]dŠelkup’s…˜{¦‹œ¶Ÿ±Ä¯Â˸ÌÊ»ÐË¿ÕÊÂ×ÊÅÜÉÇÝÆÆÞÂÄÛ½ÁÚ¹ÀÚµÅß±Åà¯Äã«Äã©Ãè¥Âê¡ÂížÂòŸÅöÅùœÅû›Æû›ÆýœÇþÆþ›Èÿ–Çÿ”Éÿ”Éÿ“Èþ‘ÈþÇýÇýÇýÆþŽÇþÆýÆýŒÅüŠÆú‹Äû‰Äü‹ÆÿŠÆÿŠÆÿ‹ÇÿŒÉÿŒÉÿÊÿÊÿ‰Æý†Ãü„Áú„Àü…Áÿ…Áÿ‚½ÿºÿ„ºÿƒ¹ÿ‚¶ÿ€´ÿ°þ¯ü¯ü€¯ýz¯ÿx¯ÿy­ÿ}ªÿ‡¢ó‹Óe\C5f'!;#!/ +*!* )&$#)#)#(#(#'#'"&"%"$"$"$!#!# " "!                ###""""""###$% % % $#$&%'&('))+*,*,*,*,, .-!//#10$21%33%27%17%18&29'3:(4;)5;)5<*6<*6=+7?-9@.:B0F4@H4@M7DN6DN6DO7EO7EP8FP8FP8FR:HS;ITLU=KTNV>NU=KU=KS;IR:HP8EO7DL5?J3=I2M±8G°>U°B_±=d¹=sÐIŽêY¤öc§ùfšúk‡þp€þi|÷YróGoô@o÷@lú?lÿAsü=sýD‡ýL”õF•òCõ?‰ï7wÿG|ÿEtúDmùFmúGqúFs÷Aró=mùHrîElÔ:^Á8V¼A]©=T•2D3?‰3<‚38‚7;:>~=A„GNCKg/c/W8>V7=S6;O49M27H25G14E13E24D13B/1D02G14F03D+/A(,;%(:$'9#&8"%7!$6 #7!$7!$CI?BH>@FTJ>VJ>VJ>VJ>UI=UI=UI=UI=VJ>VJ>UI=TH/P>0O=/N;-L9+J7)H5'H2%H2%E2$C1#C1#B0"A/!A/!@. @. A/!A/!@. @. ?-?->,>,=+!>,"@.$A/%A/%A/%@.$?-#@.$@.$A/%A/%A/%A/%A/%A/%A.(B/)D1+F3-H5/J71K82L93M:4M:4M:4N;5N;5O<6O<6O<6R?9R?9R?9R?9R?9R?9R?9R?9S@:TA;TA;TA;UB*6?+7@,8A-9A-9B.:C/;E1=F2>G3?G3?L6CM5CM5CN6DN6DO7EO7EO7EO7EP8FR:HS;IS;IR:HQ9GQ9GTH1;F/9F/9G08H19F/7D-3@)/>(+:$'7!$6 #6"$8"%9%'6 #7#%8$&8$&6"$6"$9%'<',K7BP@S9<[=?dBCjFFnGHqGHxGJxJJuMMsMLwJM|KQLVˆP]‹UeVl‘Sl•OkJf§Gb¶I^ÆM^ÐM[ÎN]ºF[®>V´F†BOu7Fi4Dg8Hg;JfZ0<\2<_4>b4>b4>[2:T04P03Q46U8:Y:@X9?V9>R7D:>D:AG=AG=AG=AG=BH>BH>BH>BH>CJCCJCDKDDKDELEELEFMFFMFHOHHOHHOHHOHHOHHOHHOHINHLOHMNHMNHNOIPPHPPHPPHQQIQNEPMDQMBQMBPLAOK@QK?RJ?UK?WK?VJ>VJ>UI=UI=TH/Q?1P>0O<.M:,K8*I6(H5'G4&E3%E3%D2$C1#B0"A/!@. @. @. ?-?-?->,=+=+=+>,"?-#@.$@.$A/%@.$?-#>,">,">,">,"?-#?-#@.$@.$@.$?,&@-'B/)D1+F3-H5/J71K82J71K82K82K82L93L93M:4M:4P=7P=7P=7P=7P=7P=7P=7P=7S@:S@:S@:TA;TA;UB*6@,8A-9B.:D0F2>G3?G3?L4BL4BL4BM5CM5CN6DN6DN6DM5CN6DO7EP8FO7EN6DM5CL4BQ9IR:JT%+H.7L2=S8AVDR=BP:=P7:T68[8V26O/2O24S68Y8?Y8?W8>U8=R7(+<&)9#&6 #5"5"6 #7!$?E;>D:=C9D:>D:?E;@FBIBBIBCJCCJCDKDDKDELEELEHOHHOHHOHHOHHOHHOHHOHINHJMFLMGLMGMNHNNFOOGOOGOOGQNEQNEQMBQMBPLAPLARL@RJ?UK?WK?WK?VJ>UI=THVJ>VH=VH=VH=VH=VH=VH=VH=VH=UG0O=/P>0O=/M;-K9+I7)G5'F4&E3%G5'F4&E3%D2$C1#B0"A/!@. >,>,>,=+=+<*<*;)>,"?-#@.$@.$@.$?-#>,"=+!;)<* <* =+!=+!>,"?-#?-#>+%>+%@-'B/)D1+F3-H5/I60H5/H5/I60I60J71J71K82K82N;5N;5N;5N;5N;5N;5N;5N;5R?9S@:S@:TA;TA;UBG3>G3>G3>G3>K3@K3@K3@L4AL4AM5BM5BN6CL4AL4AM5BM5BL4AJ2?I1>H0>L5EN7GP:GR)2?*1@+2?*1>'-:#)=$(<#';"&:!%7"5 3147!7!557!;#D',H)/N/5S4:U8=R8;Q48O13T15[28c6;k:@s;Dx^;B^?EY<@W8=Y9>_:Ae=Ei@HeX7>W8>V9>T9>S:>Q;>P<>P<>N:D:=C9D:?E;@FUI=THWK?WK?WK?UG0O=/N<.M;-L:,J8*H6(F4&D2$C1#H6(G5'F4&E3%D2$B0"A/!A/!=+=+=+<*<*;);):(>,"?-#@.$@.$@.$?-#=+!=+!:(:(;);)<* =+!>,">,"<)#=*$?,&A.(C0*E2,G4.G4.G4.G4.G4.H5/H5/I60I60I60M:4M:4M:4M:4M:4M:4M:4M:4R?9R?9S@:S@:TA;TA;UB_A?aCCcEEeGGgIIhJLiKMiJOlMRqRWsTYsTZsTZvW]xYapOX}Ye‹ju–u€|‡¥…’°’ž¸œªÈ®»É¯¼É±¿Ì¶ÃкÇÔÀÌØÃÒÕÇÖÇÃÒÃÅÔÂÅØ¾ÄÚºÄݶÅâ²Å宯ê¨Äë§Çð©ÊõªÌùªÏü©Ïü¨Îý¦Ïý¥Ñÿ¢Òÿ¡ÑÿŸÒÿžÑþžÑþÐýœÑûÒüÒüœÓü›Òù›Òù˜Òø˜Òø˜Òø—Ðû—Ðý—Ðý–Ïú–Ïú–Ïú•Îù•Îù•Îû’ÊùÇøÇú‘ÈÿÇÿŽÄÿ‹Áÿ‡¹ÿ†·ÿ„µÿ‚³ÿ°ÿƒ­ÿ„­ÿ„­ÿ€ªþƒ­ÿ†°ÿ‡«÷}–ØjvªWU}LB]3*=-%2&+"'"'$)$)$)!&!&"%"%!$!$ # # "!!                          !""$$% % &!&!'"'",&,&-&,&,%+%,%+%1 *1!+3",3#-6%/7'19(29(2:&1;'2<(3>*5@,7B.9C/:D0;H4?H4?H4?H4?H4?H4?H4?I3?J2?K3@K3@K3@L4AM5BM5BM5BK3@L4AL4AK3@J2?H0=F.;E-:J4AL5EO9FQ;HQ;HP:GM7CK5AG2;C.7>)2=(1>)0>)0=(/<',9"(<#'=$(=$(;"&7"5202764357D$)I&*O,0S36V69U58R25R01T-2Y/3b17i4GíFMÓ;H³+?§/J¡6R9U¢>X¾Th±ET³CO±FPš:E‡3@€9Gx;JyCPh9C]3=`;BbBG^?D[V9>U:?T;?S=@S=@P<>O9>C<C<>CUI=UI=THXG=VE;UD:TC9TC9UD:UD:TC9SB8RA7Q@6P?5P@3P>2P>0P>0O=/O=/N<.N<.N<.I7)I7)I9*I9*J:+J:+K;,K;,G5'H6(H6(G5'E3%C1#A/!?-=+=+<*<*;);):(:(<* <* <* <* <* <* <* <* >,">,">,"=+!=+!<* <* <* ;(";("<)#>+%?,&@-'A.(B/)C0*D1+E2,F3-H5/J71K82K82L93L93L93M:4N;5N;5N;5O<6P=7P=7P=7P=7Q>8Q>8Q>8Q>8VC?VC?VC?VC?VC?VC?VC?VC?[HD[HD[HD\IE\IE]JF]JF\JF_MK]NK^NN^NN^NN^NN_OP_OPaQTbRUcSVfVYhW]kZ`l[am\bm^am^an_bo_`m]^n[]mY[mWYfPRfNNdJKaGHaDF`DC_CB_CB\@?]A@^AC`CEbEGdGIeHLfIMkNSlOTmPUoRWpRZrT\sU]uV^zYb~Zdƒ_iŠir•t} €‹«‹–°’ž¶˜¤»©Á¥³Ç­ºÌ²¿Ò¸Å×½Ê×ÃÏÌÁÏÇÃÒÄÃÕÀÂ×½ÃÛ¸Ãß´Ãâ°Äç¬ÄêªÆí¬Éñ­Íö¯Ðû°Ñü±Òÿ®Óÿ­Öÿ¬×ÿ¬×ÿªÖÿªÖÿ¦Õÿ¥Ôÿ£Ôý¢Óü ÔüŸÔüžÖûŸ×ü Øý Úÿ ÚÿÔû›Òù™Ð÷šÑøÔûžÖûÔû›Òù™Ðù™Ïû—Íû•Ëú“Èü’ÇýÄýÄÿ‰»ÿˆºÿ†·ÿƒ´ÿƒ²ÿƒ±ÿ†¯ÿˆ®ÿƒ¬þ†¯ÿ„­ý¤ë|–Óuƒ²ffŠWOg90A+ .(+),!$"!&$$#"   !!!!!!                ""!!!#$% $$% % &!&!'"'".'.%0%.%0%.%0%.%1&1 (4 )2!)2'1 (7#,:&/;'0<'0>)2?*3A,5C.7D/8E09G2;F1:F1:F1:F1:F1:E09E09L5?L5?L5?L5?L5?L5?L5?L5?K4>J3=H1;F/9E.8E.8E.8F.;I3@I4CK7CM9EN:FN:FN:EN:EE1:B.7>*3;'09&,:'-;(.>).<%+<&)>%)=$(<#':!%9#8"68 :!8559<!?E!H$&J()K)*K)*N*,O++O&*X.0c58j7`ÿDYüGNðGLá>OÐFgV=AV@CQ;>P:=O9>C<C<>CE>?F?@G@AHABIBDKDELEFMFGNGHOHIPIJQJKPJLOHMNHNOINOIOOGNNFMMEMMESPGSPGSODSODRNCRNCSMATLATJ>VJ>VJ>UI=UI=TH4N=3M<2M=0N<0N<.M;-M;-L:,L:,K9+K9+I7)I7)I9*I9*J:+J:+K;,K;,H6(H6(H6(G5'E3%C1#A/!?-=+=+<*<*;);):(:(<* <* <* <* <* <* <* <* >,">,">,"=+!=+!<* <* <* ;(";("<)#>+%?,&@-'A.(A.(B/)C0*D1+F3-G4.I60J71K82K82L93L93M:4M:4N;5N;5N;5P=7P=7Q>8Q>8Q>8R?9R?9R?9VC?VC?VC?VC?VC?VC?VC?VC?YFBYFBZGCZGC[HD[HD\IE[IE[IGYJGZJJ[KK\LL\LL]MN]MN^NQ_ORaQTcSVeTZhW]iX^jY_j[^j[^k\_j[^jZ[hXYiVXhTVdPQcMOcKKaGH_EF_BD_CB_CBZ>=X>=\?A[AB_BD_EFbEIaGJhKPgLQjMRiNSmOWmRYpRZpRZzYb~Zd‚^h‰eooxšy‚£‚§‡’©ˆ“®Ž™·—¢À «É«·Ô¶ÀßÁÍäÊ×ÝÍÚØÍÝÕÌßÐËßÊÊâÆÊåÂÈè½ÊìµÅç´ÈíµËò·Ïõ¹Òú»Ôü»ÔýºÖþ·Øÿ¶Ùÿ¶Ùÿ´Ùÿ³Øÿ±Øÿ¯Ùÿ­Øÿ¬ÙÿªÚÿ©Ûÿ§Ûÿ¥Ûÿ¤Úþ¡Ùþ Øû¥Ùþ£×ü¡Õú¢Öû¥Úü¦Ûý¤Øý¢Öû ÔûŸÓûÐý›Îý™Ëþ–Èý•Æþ”ÅÿÀÿ¿ÿмÿ‡¸ÿ†¶ÿˆ´ÿбþ‹°þ·ÿ“ºÿ’¹ÿޱõУ܂¼pq`Xo<4C.#1*-+ .#&!$#(!&$#!   !!!!!              !!  !"#$$% % &!&!'"'"(!0%0#0%0#0%0#0%0#1&2%4 )3 &2'3 &6"+:&/<'0=(1>)2@+4B-6D/8F1:F1:J5>I4=I4=I4=H3J3=H1;F/9E.8E.8E.8E/;H2?H3BJ6BL8DM9EM9EM9DM9DF2;D09?+4<(19&,9&,:'-;(,:%*;%(<&)=$(<#':!%9#8"68 9 8669>!?BG !G##I"#J#$M%&O'(L$%V,.b58i8r;@uL¡DW­L`­Nd£Kc˜I_Š@W?UšJÅISÉMW«Iq?Jo=HjV5V;@W>BP:=O9C=C=>C=?D>?D>?D>>E>=D=VJ>UI=UI=UI=UI=TH4N=3M<2L;1K:0J9/K9-L8-L9+L9+K8*K8*J7)I7)I7)H8)H8)I9*I9*H;+H;+I<,K;,H6(H6(H6(G5'F4&C1#A/!@. =+=+<*<*;);):(:(<* <* <* <* <* <* <* <* >,">,">,"=+!=+!<* <* <* ;("<)#<)#=*$>+%?,&@-'@-'A.(B/)C0*E2,F3-H5/I60J71K82K82K82L93L93M:4M:4M:4P=7P=7Q>8R?9R?9S@:S@:S@:UB>UB>UB>UB>UB>UB>UB>UB>WD@WD@XEAXEAYFBYFBYFBYGCWECUFCVFFXHHYIIZJJ[KL\LM\LO]MP^NQ`PSbQWdSYfU[fW\dX\eY]eY[eY[fWZeUXcSTdQScOPbLN_IK_FI\DD\BC\BC\BCU;W??Z@C[BE]CF\CFbGLbIMdIPdKQgLSgNTjOXlNXuT]xT^{Wa€\f†blŽjt•q{—v™u|…¥„°˜½œ§Î­¶ß¾ÉéË×èÐÞãÑáàÏáÚÍáÔÊâÏÉãËÈåÅÈçÇÍíÇÐñÈÒõÉÖùÊØûËÙüÌÚýËÛÿÃ×üÀØþÀ×ÿ¿Øÿ½Ùÿ¼Úÿ¹Ûÿ¹Üÿ¶Üÿ¶Þÿ´àÿ³áÿ°àÿ¬Þÿ¨Üÿ¦Ûý¯àÿ¬Ýý«Üü¬Ýý®ßÿ¯àÿ­Þÿ«Üý©Ùý§×ý¥Ôþ¢ÑÿŸÍÿœÊþšÇþ™Æÿ—Äÿ“ÂÿÀÿŒ¼ÿ‹ºÿŒ¶þµüµü²ü”¶ÿ•·ÿ’±ò‘¦Ý‡“½ts’`XmB7G2&2, ,-!-$%"#&'#$! !!!!               !"#% % % &!&!'"'")"1$2"2$2"2$2"2$2"1#3#4&4$2$3#7"):%,>'1?(2A*4C,6E.8G0:I2K4>J3=L5?L5?L5?L5?L5?L5?L5?L5?K4>J3=H1;F/9E.8E.8E.8E/;G1>G2AI5AK7CL8DL8DL8CK7BH4=E1:A-6=)29&,8%+8%+8%)9$)9%':&(;%(:$':!%9#8"678888;> =@CDDEJ !M#$P((Y11d:;l@Al>@j<j>?h7=q5?„6Fš?Q«H]­J_žGZBR…H‡JR}AIw@Fp=Dl=CkBFnGJoKMpLNb>Bb;@c:BeV7=T9>U:?U<@R9=P7;O6:O6:P5:N38K.3D).C*.?),;%(7!$3 1//BGAAF@?D>=B<C=>C=?D>?D>?D>?F?>E>VJ>UI=TH4O>4N=3M<2L;1K:0J9/J8,N8-N8+N8+K8*K8*J7)I7)H6(H8)H8)I9*G:*H;+H;+I<,I<,H8)I7)I7)H6(F4&D2$B0"@. =+=+<*<*;);):(:(<* <* <* <* <* <* <* <* >,">,">,"=+!=+!<* <* <* ;("<)#<)#=*$>+%>+%?,&?,&@-'@-'A.(C0*E2,F3-G4.H5/J71J71J71K82K82L93L93L93P=7P=7Q>8R?9S@:S@:TA;TA;TA=TA=TA=TA=TA=TA=TA=TA=UB>UB>UB>VC?VC?WD@WD@VD@UCATEBUEEWGGYIIZJJ\LM\LM\LO]MP^NQ`PSbQWcRXeTZdUZcW[bW[cWYcWYdUXbSVaQR`PQ`MO`LM^HJ[EG[CCZBBZ@AYAAT<>W??X?BY@CZAD[BE_FJ_FJaHNbIOdKQeLRfLUhMVlMUnMVsOYwS]|Xb‚^h‡cmŠfpku“oyšv€£‰°Œ–Å¡«Ý·ÂìÈÔ÷׿ó׿ðÕæëÔèæÓéáÒéÝÐêÚÑì×Óî×ÔñÖÕô×ÖõÖ×õÖ×õÕÖôÒÕôÌÒòÉÔôÉÓöÆÕöÆÖøÆÙúÄÛýÃÝþÀÝÿ½Þÿ»ßÿ¸àÿ¶áÿ´àÿ³áÿ³áÿ´áÿ²ßü°Ýú°Ýú²ßü³àý±Þý¯Üý¯Ûþ®Úÿ«Öÿ¨Óþ¤Îÿ¡ÊþžÇýÅÿ™Âÿ–Áÿ“Àÿ‘¾ÿ‘¼ÿ“ºý–¹û™¸û›¸þŸ¼ÿ¢¿ÿ£¼þ£´êš¡Ë„žnexF:H3'3, ,, ,$$"#%&!"! !!!!               !"% &!&!&!'"(#(#)"1$2"2"2"2"2"2"2"1!3#4$3#2"3#6!&:%*?(0@)3A*4D-7F/9I2L5?N7AN7AM6@M6@L5?K4>J3=J3=L5?L5?L5?L5?L5?L5?L5?L5?K4>J3=H1;F/9E.8E.8E.8E/;D0G3*3:'-7$*6#)5"&7$(7$&8%'9%'8$&8"%8#8"567789:==@@A@EN T#&O!#V((_13f66f66d42a54b67a28k/;0A˜9M¯CZ±G[ BTŽ:GŠCm>DjAEkDGlEHlEJi@FeV9>T9>S:>R9=P7;N59N59O49M27J-2D).D+/@*-<&)7!$3 0.-BGAAF@?D>>C=C=>C=?D>?D>?D>?F?>E>VJ>UI=TH4O=3N<2M;1L:0K9/K9-P:/O9,O9,N8+L9+K8*J8*J8*H8)H8)G:*G:*H;+G;+H<,I<,H8)I7)I7)H6(G5'D2$B0"A/!=+=+<*<*;);):(:(<* <* <* <* <* <* <* <* >,">,">,"=+!=+!<* <* <* <)#<)#<)#=*$=*$=*$>+%>+%>+%?,&@-'A.(C0*E2,F3-F3-I60I60I60J71J71K82K82K82N;5O<6P=7Q>8R?9S@:TA;UBUB>VC?UC?VDBTEBVFFWGGYII[KK\LM]MN^NQ^NQ_ORaQTbQWcRXeTZdUZaVZaX[bW[bW[bVX`TV`QT`PQ_LN]JL[GHXDEWACV@BX@@W??V>>T?>U?AV@BWACXBDXBEYCF\EK]FL^GM_HNaJRbKSdMUfLUhJTkKVoNYsR]xWb~]h„`j†blŠfpku–p{žxƒ¬‡Ãž¦á¹ÂõÍØûÒàúÑáøÑãôÒãñÑæíÑçêÑçèÒéåÓëãÔëãÓíáÓìßÑêÜÎçÚÌã×ËãÖÍèÓÏêÓÎìÑÑíÒÓñÒ×õÒÛúÑßüÍàþÈßþÄßý¿Þý»ÞþºÞþ¹àÿ¹àÿ·àüµÞú³Üø³Üø´ÝùµÞú²Ûù°Ù÷³Ûþ²Úþ¯Öÿ¬Óþ¨Îÿ¥Êþ¢Çü¡Åÿ›¿ý™¿ÿ–½ÿ•¼ý–¼ûš¼ûž»÷¡»ø¥¼ÿ©ÀÿªÁÿ¬¾þ«¶ì¡¢Î‰€ŸpcwJ'/?(0A*2D-5G08J3;L5=M6>N7?N7?M6>L5=J3;I2:H19H19L5=L5=L5=L5=L5=L5=L5=L5=K4E4cÏFdÈCX¼4BÎFu>Dq@DqBHrEJxKRsFMm?Ih?GgBJeFLbGLbGLdAHd?Ga>E\;BY:@W:?T9>T9>S:>P7;O49N38P38N16L-3G*/D+/@*-<&)7!$3 0.-CHBBGA@E?>C==B<=B<=B<=B<=B<=B<=B<>C=>C=?D>?D>?D>>E>=D=VJ>UI=UI=UI=SG;SG;SG;RF:QE9QE9QE9QC8Q@6R@6R@6R@6R@6Q?5Q?5Q?5P>4P>4O=3N<2M;1L:0K9/K7,O9.P8,O9,N8+N8+K8*J8*J8*H8)H8)G:*G:*G;+G;+H<,I<,I9*J8*J8*I7)G5'E3%C1#A/!=+=+<*<*;);):(:(<* <* <* <* <* <* <* <* >,">,">,"=+!=+!<* <* <* <)#<)#<)#<)#<)#<)#<)#<)#<)#=*$>+%@-'A.(C0*D1+E2,H5/H5/H5/I60I60J71J71J71L93M:4N;5O<6Q>8S@:TA;TA;R?;R?;R?;R?;R?;R?;R?;R?;R?;R?;S@TB>VDBUFCVFFWGGXHHZJJ[KL[KL^NQ^NQ_OR`PSaPVbQWcRXcTY`UY_VY`UY`UY`TV^RT^OR]NQ[KL[HJZFGWCDV@BT>@V>>V>>T?>T?>U?AU?AV@BWACWADWADZCIZCI\EK]FL_HP`IQaJRdJSjLVlLWpP[tT_zYd~]h„`j†bl…akŠfp’lw›u€«ƒŒÄœ¥ä¼ÅûÑÛþÎÚþÎÚþÎÜúÎÝøÏáôÏáòÏãðÏäòÕéñÖéðÕèîÓæëÐãèÍÞåÊÛáÈÛÜÆÛØÆÜÖÇÞ×Éà×ÍæØÒìÛØóØÜ÷ØâýÓáüÍáüÇßûÃÞü¾Ýú¾Ýü»Üû½âýºßù¸Ýø¸Ý÷¹Þù¹Þù·Ü÷´Ùö·Ûý¶Úþ´×ÿ±Óÿ®Ðÿ«Ìÿ©Êÿ§Çÿ¡Áþ ¿ÿœ¾þ›½ü½ú ½÷¦¼ö¨»öª¼ú¬¾þ®½ÿ®¹÷­²é¢ŸÊ‰{œo]sOAP8+5- *+($"#!$# !!!!                     !"#&!'"'"(#(#)$)$*#3#4!4!4!4!4!4!4!4!5"7!$6 #5"6 #9#&='*=&.>'/A*2D-5G08J3;L5=M6>O8@N7?M6>L5=J3;I2:H19G08L5=L5=L5=L5=L5=L5=L5=L5=K4E^CH`EJdAHd?Gc>F^=D\;BX;@W:?T9>T;?Q8C?=B>=B>=B>>C?=B>=B>=B>>C?>C??D@?D@?D@E>?F?@G@AHABIBBIBBIBCJCDKDELEFMFGNGINHHKDJKELMGMNHPPHPPHPPHPPHSPGSPGSODSODRNCRNCSMATLATJ>VJ>VJ>UI=UI=TH4O=3N<2N<2M;1M;1M;1M;1L:0K9/J8.I7-H6,I5*M7,N6*M5)L6)K5(I6(G5'G5'H8)H8)G:*G:*G;+G;+F=,H<,I9*J8*J8*I7)H6(E3%C1#B0"=+=+<*<*;);):(:(<* <* <* <* <* <* <* <* >,">,">,"=+!=+!<* <* <* <)#<)#<)#<)#<)#<)#;(";(";("<)#=*$?,&@-'B/)C0*D1+G4.G4.G4.H5/H5/I60I60J71J71K82L93N;5P=7Q>8S@:S@:Q>:Q>:Q>:Q>:Q>:Q>:Q>:Q>:R?;R?;S@TB>UCASDATDDTDDUEEVFFWGHWGH\LO\LO]MP]MP^MS_NT`OU_PU\QW[RW\SV[RU[PT[OS[LOYJMZJKZGIYEGVBDU?AS=?S=?S=?R<>R<>R<>S=?S=@S=@T>AT>AV?EV?EW@HYBJ[DL\EM]FP`FQdHTgIUjLXnP\sS^vVayXczYd}Yc‚^h‰cn’južv¶Ž—Ö¬¶ðÂÌÿÊ×ÿÉÔÿÈÕüÈÕùÆÕõÆÖòÆ×ïÆØéÂÔèÃÔèÃÔçÃÑåÁÏâ¾Êá»ÈÞºÆÔ´ÃÑ´ÆÐµÈϸÊϼÐÒÃØÓÊßÒÏä×ÙðÖÜôÔàúÓäþÐåÿÌäÿÈáÿÃáýÅçÿÂæþ¿ãý¿ãûÀäþÀäþ½áûºÝùºÝý¹Ûþ¸ÚÿµÖÿ³Óÿ±Ñÿ¯Îÿ¯ÌÿªÇÿ©Åÿ¦Äÿ£Áÿ¢¿ù¥¾ö¨»ó«ºó²¾úµÀþ·ÀÿºÀþ¾¾ô·®Û ±†r‹WFV?/:0#-.!+(&'%'&! !" !!!!!                !!  !"#$'"'"'"(#(#)$)$+$5$7"7"7"7"7"7"7"7"9 $:!%:!%8#9 $=$(@'+>$-?%.B(1E+4H.7L2;N4=O5>T:CS9BR8AP6?O5>M3-5:)/6%+3"(2"%0!$/##2$$3%%4$%6#%6"$6 #5 22368788<=>C P f#w%1ejs#z(!,$,}&.|'.€*5(6¦'<½+@Ï/GÓ1FÅ0C¹/>³3B°-?¿/FÑ1Mß*Mò+Rÿ.Wü)Vñ%Z÷0kþ5{ü9ú@þOŠÿZ˜þ\¨óTºï_ÎÿöÿÁÿÿÛÿÿéÿýûÿüÿÿþþÿþþÿûÿÿüÿýþùýùâöò¾ïñ íó‡ìüyíÿrèÿgÙúYÁýX¶ýS«ñCˆóDmýJhýDmûApüFyñArã:eÞ=_ß?W×9HãALïKTæEMß?IÝANÕAQÂ6P¹9R®8P 6J’5GŠ6E‹:IŒ>N‡6I‡8K…:N}8Jn5Db4?Y8?Z;Ad?Gd?Gc>F_>E^=DZ=BX;@V;@V=AR9=P5:O49Q49P38N/5J-2A(,='*:$'7!$4!210BHDAGC?EA>D@=C?=C?=C?=B>>C?>C??D@?D@>D@;B;SG;SF=SG;SF=RF:RE,">,">,"=+!=+!<* <* <* <)#<)#<)#<)#;(";(";(";(";(";("<)#>+%@-'A.(B/)C0*F3-F5.G4.F5.H5/H70I60H70I60I81K82L;4O<6P?8R?9RA:P>:P>:P>:P>:P>:P>:P>:P>:Q?;Q?;R@TB>QB?PB?QCBQCBQCBQCBRDDRDDXJJXJJYJMZKNZKN[LO\MP\MPYNRYNRYNRYOPXMQWKMWHKVGJYIJXHIWDFTACS?@R>?Q=>Q=>N:;O;P<>QCU@EVAHXCJYDK[DL[AJ^CL`ENcHQgISiKSlLWlMUuT]{Wa€Zeƒ]hŒgo¢zƒÀ˜¡Ú¬¶ãª±æ§¯ã¦®à¤¬Û¢«Ö¡«Ò «Î ªÌ¡ªÌ£«Ì£«Ì£«Ë¢¨Ë¡¥Ëž£Èž¢Ê¡§Ç¢©Æ£ªÆ¥®É©´Ì°¼Î¸ÅϽËÕÈÙØÑãÞÛðãåúäêÿãêÿÝçÿ×åÿÖêÿÐèÿÍåÿÌæÿÍçÿËæÿÉäÿÄâþÂÜýÂÜÿÀÙÿÀ×ÿ¾Ôÿ½Ñÿ»Ïÿ½Îÿ¼ËÿºÉÿµÅÿ±Âú¯¿ó°¼ð±¹ê´·êª¬ß¯¯å³³é¼¸ëÄ»èóگ˜µ–}“`IYG1>9%14$/,)*(+)$#$#!"   !!!!                   "!!!#$% '"'!)")"*#*!+"- 5$7"7"7"7"7"7"7"8#:!%;"&;"&9 $:!%>%)A(,;$*<%+?(.B+1H.7K1:N4=O5>W=HVJ3;H19F/7E.6E.6G-6F/9F0-5=)29&,6#)2"%0!$0""3#$4$%4$%6#%6"$6 #5 1/1576448:;@P i%{#1|!0‚&3‹.9•5@ž:FZä<_ë0[÷-]ÿ1dÿ-dñ)jö2zü6ƒû7ƒû=ƒÿM’ÿ\§ÿc¾ÿ]ÍùeÝÿ‹ÿÿ³ÿüÂÿìÏîõëöþÿÿÿþÿüþýôûóüÿúÿýýÿõÿÿÊüô¡ñû‹÷ÿ|öÿuôÿlêþ_Öÿ_Ðÿ[ÈøK¥þOŠÿV„ÿOûI{ÿM÷K}íHrîPqèNfâI[êP\îT\åNSãNRìRZèR^àRjØSnÉQj¸Ma¦HZEUžGWžJZžGZ¡L_ Qd•L]COm:Ca8@^9@c>Fc>Fb?F`?F^=D\=CZ=BWQ6;O49Q49P38N16K.3A&+>%)<#'8#4!222?LC?LC@KC?JB>IA;F>:D<9C;;E=;E==D==D==D==D==D==D=?F?=G?>E>>E>?F?AHACHBDICDICDICFHCGIDHJEHJEHJEJKFKLFLKFLKFNKFNKDNKDNKDOJDQMDSLDSLBRKAQJ@QH?PH=PH=PH=PH=QG>PH=QG>QG=QG>QG=QD7L>5N>1M;-L:.J8*I7+H6(I7+I7)I7+I7)H6*H6(G5)G5'F4(F4&E2$E2$G1$E2$E2$E2$E2$E2$G4&F4&E3%E3%F4&H6(I7)J8*N;-N;-M:,L9+J7)I6(H5'G4&B/!A. ?,=*<)<)<)<)9%9%:&:&;'<(=) =) ;';';'<(=) =) =) >*!;(";(";(";(";(";(";(";(">+%=*$<)#;(";("=*$?,&A.(@.*>/*A/+A2-D2.C4/F40E61G51E61H62H94K95K<7N<8L=8K<7K<7L=8L=8M>9M>9N?:N?:L=8L=8M>9N?:O@;PALA?MB@NCAODBPECTIGTIGUIIUIIVJJVJJWKKWKKTHJTHJTHJSGGSGITFFTFFSEEOAAOAAO?@N>?M=>L<=K;M=>N>?N>?O?BO?BP@CR?CT?DU@EXAGZCI_FLaHLdIPgJOjKQmNTrQXxW^ƒ`g‘lt {ƒ°ƒŠË‘Ί‹É‡‰Åƒ…Á€„½ƒ¹‚…µ……¸Œ‹µ‹µ‹¶Š¸‹½’ŒÀ“ŽÃ”ŽÃ–ÖÁ–Ø’Æ›•ÈŸ›Ì¤¤Ë§©Ò²·ØºÂàÆÑçÑÞëÙéîßòóæúôêÿéæÿáåÿÝãýÙàüÖâüÔäþÓäÿÒåÿÒâÿÑáÿÏÝÿÐÙÿÐÔÿÐÒÿÐÐÿÒÐÿÏËþËÇúÄÀó¾·ê¸²à´­ÙµªÔµ©Ï­Â­œÀ¬›½±ž¼½¦ÂëÁ½¢µ±’¤vTeW5FC'6=%30*)$)&)&,!))&$!!                                  "! ! ! !""&%&&'),/3 6!6!7"7"8#8#8#<#'<#';"&:!%:!%;"&<#':$';');')=)+?+-D-3H19L5=N7AT:GU:IWM5BK4>K1\ÌH`ÆBWÊEXÓT_ÊVY»GG¾>?ÂDH¸BR¬?T©FX£KY—GR—KUœPZ—KW™MY–MXLU‡JQFLvBFoT7!&7!431,*KB>KB=JA;H?:E=9D<>E>>E>>E>>E>=G?=G?>E>>E>?F?@G@CHBDICEGBFHCFHCGIDHIDIJEIJEIJELKFLKFNKFNKFNKDNKDOJDOJDSLDRKCRKAQJ@QH?QH?PH=PH=PG>PG>PG>PG>PG>PG>QG>QG>QD7M>7L>5O=1M;-L:,J8*I7)H6(I7)I7)I7)I7)H6(H6(G5'G5'F4&F4&E2$E2$E2$E2$E2$E2$E2$E2$F3%F3%E2$E2$F3%G4&I6(J7)L9+L9+K8*J7)I6(G4&G4&F3%B/!A. ?,=*<)<)<)<)9%9%:&:&;'<(<(=) :&;';'<(<(=) =) =) <)#<)#<)#<)#<)#<)#<)#<)#;(":'!9& 9& 9& ;("=*$=,%<*&;,'<-(=.)>/*?0+@1,A2-A2-B3.C4/D50E61F72G83H94H;5H;5I<6I<6J=7J=7K>8K>8G:4G:4H;5I<6J=7K>8L?9K@:H=;H>KA?LB@MCAMCAQGEQGERHFRHFSIGSIGTJHTJHUGGUGGTFFTFFSEESEERDDRDDN@@N@@M??L>>K==J<>L>>L>>M??N@@N@@N@@R?AS@BVBDXDF\FI^HKaHLcHMiLQkNSoPVtU[{Zaˆel•ry£y}¼€€Á}zÀ|{¾zyºxy¶yx±zw­|w¬z©ƒz¨ƒz©„{®†|²‡~¸‰ºŠ€¿ƒ¿ƒÀ„Á‘…Ä”ˆÆ—Éš”È›–ʞ̤¥Ò­´×¶¿ÞÀÌåÊÙïÔçòÜñõçÿòéÿñëÿïìÿèìÿãêÿàéÿßêÿÙäÿÚâÿÜàÿÛÝÿÝ×ÿÚÑÿÙÍý×ÉúÐÀï̼éŶ΅ظ¨Ïµ¤È´¡Á´ ¼¯–³°–¯°”ª±”¦¹¬Á¢±¼œ©²ž‚Yka8JH&7A%35,,&- )+ (.!*+''!$$ !                         #!"!"! !""('((*,-.3 5 6!6!7"7"8#8#<#';"&:!%9 $9 $:!%;"&:$'9%&8&&:&'<(*?*/B-2F/9H1;P5DR7FT9JU:MV9OU8NR4LP4JM6HK6EJ5DI4CI3@I3@I1>I1>K3@J2?K1AoACpBDq@CnADkCKiFMhGNgFMeDKa@G\=CY:@YKB>KB=JA=H@>E>>E>>E>>E>=G?=G?>E>>E>>E>?F?BGACHBEGBEGBEGBFHCGHCHIDHIDHIDJIDJIDLIDLIDLIBLIBMHBMHBQJBQJBQJ@PI?QH?PG>PH=PH=PG>PG>PG>PG>PG>PG>QG>QG>QD7M>7L>5O=1M;-L:,J8*I7)H6(I7)I7)I7)I7)H6(H6(G5'G5'F4&F4&C0"C0"C0"C0"C0"C0"C0"C0"D1#D1#C0"C0"C0"D1#F3%G4&I6(I6(H5'G4&F3%E2$D1#D1#A. @->+=*;(;(;(<)9%9%:&:&;';';';':&:&:&;';'<(<(<(<)#<)#<)#<)#<)#<)#<)#<)#8%8%7$7$8%9& :'!:)"9'#8)$8)$9*%:+&;,'<-(<-(=.)>/*>/*?0+@1,A2-B3.B3.E82E82E82F93F93G:4G:4H;5C60C60D71E82F93G:4H;5F;5F;9E;9F<:G=;H>J@>NDBNDBNDBOECOECPFDPFDQGESEERDDRDDQCCQCCPBBPBBPBBM??M??L>>K==J<>L>>M??Q>@R?AT@BVBDZDG[EH_FJaFKgJOiLQlMSnOUtSZ|[bˆel•ko©on¯nl±pn²qo°pp«on¤okžoirkštk™tk›vmžxm£{q¨|s¬}u²ƒy´…{¶‡}¸‰º‹»Œ„¼‡¹Š¶‹·‘¹•™º™ ¾ ªÅ«¸Ñ¶ÇÕÀÓãÑëæÙóìâýìæÿèåÿãäÿáåÿâçÿÜáÿÝâÿßßÿßÚÿÚÑüÓÆôË»êÆµâ½­ÔºªÏµ¥É± Â°½¯š¹°™µ±™±©¦¬‘¤ªŸ©Š™®Ž›¶–¡·–Ÿ´œŒcsg>NJ(8A%17!-1 (3$+/")/"++''#%"%##$"                          ! ! #"#"#"!"##'()+--.-223 3 4!4!5"5"9#&8"%7!$6 #6 #7!$8"%9#&7#$6$$7#%8$&9$)<',?(2@)3K0?M2AP5FR7JT7MT7MR5KP4JM6HL7FL6CK5BI3@H2?H0=G/I1?I1AG0@G2AF1@C/;@,7?'4;$.;!*8!'7"'6#%7#%7#%8$&8$&9#&9#&;"&:!%8#42.,** , 07@J Q XZ RR VW`igl%o&otŽ(¬.<´+;§+œ%¤/³'AÃ/OË*SÍ#RÕ"Yß)dÏZÝ dï(k÷*mø&mö&t÷*…ù1œô3°ö@ÆôLÓûiåÿ”öó èîºèúÜôÿóÿÿúÿÿüûÿúýÿéøÿÙýÿ¼ÿúšüñ~÷ÿÿÿ}þùkãó`Èú_ºúW¦ñK‹øPùS{êFkÝ;`æDißIlÅDb²@Y¼Pg«DW¤=N¦EP¢KQ¡HJ°EM¶NY–FS€BMzEMtGLf?Bd@BjAEc:>`6:b9=c?AdDEfHHgIIgGHiFJhEKjGNjIPkJQiHOdCJ]>DY:@[>CZ=BY9I?=JA>KB?LC?LC?JB?JB=G?=G?=G?=G??F??F??F??F?>H@=G?>E>=D=>E>>E>AF@BGADFADFADFAEGBFGBGHCGHCGHCIHCIHCKHCKHCKHAKHALGALGAOH@OH@OH>OH>PG>PG>PH=PH=PG>PG>PG>PG>PG>PG>QG>QG>QD7M>7L>5O=1M;-L:,J8*I7)H6(I7)I7)I7)I7)H6(H6(G5'G5'F4&F4&C0"C0"C0"C0"C0"C0"C0"C0"C0"B/!A. A. A. B/!C0"D1#F3%E2$E2$D1#C0"C0"B/!B/!A. @->+<);(;(;(;(9%9%:&:&:&:&:&:&9%9%9%:&:&;';';'<)#<)#<)#<)#<)#<)#<)#<)#8%8%8%8%9& :'!:'!:)"9'#7(#7(#8)$9*%9*%:+&:+&<-(<-(<-(=.)>/*>/*?0+?0+A4.A4.B5/B5/C60C60D71D71A4.A4.B5/C60D71E82F93D93C86B86C97D:8E;9F<:G=;H>J@>KA?KA?LB@LB@MCAMCANBBOAAOAAN@@N@@M??M??M??L>>K==J<P=?R>@T@BWADXBE\CG\CGbGLfINiJPjKQnMTuT[€]d‹bh›ee£fc¨hh«kk¨kj¢hf˜ea‘d^h`jakamc”of˜rgžsl¡tn¦ys©|v®y±‚|³„~°ƒ}¯‚}¬€}®…ƒ¬…†ª†Š¦…Œ¤†¦Œ—®“¢±š¬¶¢»½­ÇȺÓÌÂÛÊÄÞÊÆßÍÍéÑÒîÒÑðÓÒñÖÐôÓËðÌÀèÀ¯Û²ŸÌª•¾¥’²¤‘­¢«¢ª¦©¨’©­”ª¯–©¦Š™ª‹š¨ˆ•£‚¦‚Œ¯Œ“µ˜¶Ž—“iujAOM)5D&0:#+6"+5&-/")- )*&&"$!%###"!                            !! ! #"#"!""##&(+-//.-11223 3 4!4!7!$6 #5"5"5"5"6 #6"$7#$6$$6"$6"$6!&8#(:#+;$.D*7G,;J/@N3DQ4HR5KQ4JO4GL5EK6EL6CK5BI3@G1=G/D-=E0?D0*5=&0:#+: )6%6"$6#%7#%8$&9%'9%';%(;%(<#';"&9 $6!3/,*$ * 3=GP T YS M MQZef!i&n*p)r!‚&¡+9²/?¦0ž*›)¢4±%@º D·?ÄHÚ%\ÏPÜWë _ö%fû)jü-sü1‚û5”ù8«üEÄõIÏðVØýíÿ£úÿ½úùÊôÿÝÿÿàþÿæüÿåüÿÝüÿËþÿ®ÿù”þèqñöwü÷rñëaÑë\¶ûd«ÿ`™úU€óNnüUoôMiíHhöUwï[}ÎSoµKbÆcw±Sc DO›DLšKN¤OR½U`ÄboŽJWvGQpHPhIN\BE\CF_EHZ=AfGLgJNhNQhOReOQbLNaHKbEIbAHhELjIPlKRkJQgFM`AG\=C\?D[>CZ=BX;@S8=O49K05I.3G(.C$*= %8"7!5 0-8G@9HA;JC=LE@MF@MF?LE?LE>IC>IC?HC?HC?HC?HCAGCAGC>H@=G?>E>=D==D==D=?D>@E?CE@CE@CE@DFAEFAFGBFGBFGBGFAGFAIFAIFAIF?IF?JE?JE?NG?NG?NG=NG=OF=OF=OGPG>PG>PG>PG>PG>QG>QG>QD7M>7L>5O=3M;/L:.J8,I7+H6*I7+I7+I7+I7+H6*H6*G5)G5)F4(F4(C0"C0"C0"C0"C0"C0"C0"C0"B/!A. @-?,?,@-A. A. C0"B/!B/!B/!A. A. A. A. @-?,=*;(:':':';(:&:&9%9%9%9%9%9%8$8$8$9%9%:&:&:&;(";(";(";(";(";(";(";("9& :'!:'!;("<)#<)#<)#;*#:($8)$8)$9*%9*%:+&:+&:+&<-(<-(<-(=.)=.)>/*>/*>/*>1+>1+>1+?2,?2,@3-@3-@3-A4.A4.B5/C60D71E82F93E:4A64@64A75B86C97D:8E;9E;9G=;G=;G=;H>>J>>J>>I==I==H<N;?O<@P=AS>CU>DX?EY@F^CJbDLfGOgHPkJSqPYyXa…^c“_aœb`¢ff¥ii£ihœfd’a\Š_X‹e\‰g]ˆg^‰h_kb’md–mgšoižro tq¥xs©|wª}x©|w§zw£zv¤|z¢~~¡€›|—y”zƒ—}ˆ—Ž˜€–‰¢¦”¬¨™°¨œ´«¡¹±«Å¸´Í»µÑ½·Ó·Ù´׼ªÐ°›Â£´œ„¨—€š–”–”–’›‚•Ÿ‡—¦Š™¨Œ˜£ƒŽ§†¦‚Œ {ƒ£{ƒ¬…Š´‹‘µŒ’•jslDMO+5H*2@'-:%,7&,2#(/ ',$&"# #"!"!                               "##! !"#"#"# # $$&(+-//.-0011223 3 5"5"4!3 3 4!5"4 "8$%7%%7#%6"$6!&6!&8!)9",?%2A'4F+:J/@N1CO2FN1EM2EK3CK5BK5BK5BK3@I1>H.;G-8D*5F,7I.7J/8K-7I+3E'/C%-D%-E&.F(2F*6G+9D,9C+9B,9B.:A-9?+7=)4<%/9"*9(6%6"$6#%7#%8$&9%'9%';%(;%(;"&;"&:!%8#6 1.+,,.07> E IUNC @ GQ[c"`#h+r$2o(qŠ+£&6ž-£ 2’##£3®<¯8¶:ÈFÏI×MäTí [ö&bù-jù2uõ6„ýC¦ÿPÅÿZÞ÷]ãöuìÿªÿÿÃÿ÷µõÿ¼ÿö¸ùï¸ñøÃûÿËÿÿ¿ÿü ÿö‰þñxùú{üõtêèdÉê`®ûg¥ÿc•ÿZ€úWlÿ]núTjñMhõUwãVxÀKh¦D[·^p§T^šHN–FG–KH¡PO¹S^½_mˆJYoESfEPaFOXAIYDK]FNW=F\AJ^CLaGPbKSbKS`IQ\EM]BI^=DdAHgFMkJQlKRiHOcDJ`AG[>C[>CZ=BW:?R7!&9#8"5 0.9HA:IBH@=G?>E>=D=C=?D>BD?BD?BD?CE@DE@EFAEFAEFAFE@FE@HE@HE@HE>HE>ID>ID>LE=LE=LE;MFPG>PG>PG>PG>PG>QG>QG>QD7M>7L>5O=3M;/L:.J8,I7+H6*I7+I7+I7+I7+H6*H6*G5)G5)F4(F4(C0"C0"C0"C0"C0"C0"C0"C0"B/!A. @-?,>+>+?,@-@-@-@-@-@-@-@-@-@-?,=*;(:':':':':&:&9%9%8$8$8$8$7#7#7#8$8$9%9%9%9& 9& 9& 9& 9& 9& 9& 9& 9& :'!;("<)#=*$=*$<)#;*#;)%9*%9*%9*%9*%9*%9*%9*%<-(<-(<-(<-(<-(<-(<-(<-(;.(1+>1+>1+A4.A4.B5/C60D71E82F93D93@53?53@64A75B86C97D:8D:8D:8E;9E;9E;9F<:G=;G=;G=;G;;G;;G;;F::F::E99E99D88F::F::E99D88C77B66A55A55@46@46@46@46@46@46@46@46A57B68B68C79C79D8:D8:D8:J:=L9=M:>N;?P;@Q$1B'6F+:J-?K.@K.@J/@H0>H2?J4AK5AK3@J2?I/:H.9D*5E+4G,5H-6I+3G)1E'/D&.D%-E&.F(2E*3F*6C+8B*8@*7>*6=)4<(3:&/;$,9"(:!'8!'7#%6#%7#%7#%8$&8$&9#&9#&:!%:!%:!%9 $8"40.0/./2 9 A E SN@< FPZe'b(e-s+9t&4m ~$›"50,Ÿ.§&:³-E°!=ª2º<Ö"QÜ RãTéYî!Zö'_ø-dú3jø7zò7ŽúIµÿ\Ýû`èîgçÿ”ÿÿ¡ýêŽåù›üêðÞŽãï¢òÿ¹ÿÿ¯ÿøÿô~ùÿŒÿÿˆÿÿõõsÕõk¸ûg¡ÿ_ŽýXxÿ]nÿ_nøUjñQmîWzÙSx¹Ll¬Pi§Re£R[£QS£RO£TO¨RQ·OZ´SdQbuJ[nJXiKWbHScLVfOY`FQ[?K^BNbFRdJUdJUaGR]CN[@I]MH>MH=LGJF>JF?JF?JF?JF?JF@IF@ID>H@=G?>E>C=AC>AC>AC>BD?CD?DE@DE@EFADC>DC>FC>FC>FCPG>PG>PG>PG>PG>QG>QG>QD7M>7L>5O=3M;1L:0J8.I7-H6,I7-I7-I7-I7-H6,H6,G5+G5+F4*F4(E2$E2$E2$E2$E2$E2$E2$E2$C0"B/!@-?,>+>+>+?,?,?,@-@-@-@-@-@-?,>+<);(9&9&:':':&:&9%9%8$7#7#6"6"6"6"7#7#8$8$9%7$7$7$7$7$7$7$7$6#7$9& ;(";(";(":'!8' :($8)$8)$8)$7(#7(#7(#7(#:+&:+&:+&:+&9*%9*%9*%9*%:-':-';.(;.(1+?2,@3-A4.B5/C60D71B71?42>42?53@64A75B86C97D:8C97C97D:8D:8E;9E;9F<:F<:D:9D:9C98C98B87B87A76A76D:9D:9C98B87A76@65?54?54?56?48?48?48?48?48?48?48?48?48?48@59A6:A6:A6:C7;H7=I8>K8>L9?N9@O:AQ:BS9BX=FZ?H^@J`BLbBMfFQmLWuPX|OR„TTŒZ[’`_•b_“b^Œ_Z†]W…`X‚aX~bW~bWaYƒb]…b^ˆbaeffj“kl—mošpq›rp›rpšrpŽhgŽlkŽno‹np‡mp…lp…or†qx‹sƒ‰r†ˆs†…r……t‡†wŠŠ}‘Œ€”‹•˜•…Ÿšˆ¢›‡£™‚Ÿ–}›”z“’x…w}ŽszŒqxowpv’qx•rx˜szŸv|Ÿt{ry¢u|ª}‚­~„©z€’ejqHL`<@^>AT7;H/2B.0<)-9(.4%,- )*&(&&$"# !!!                      ! $!!!""#%%#$"!$!$!$!$%%('((*,-.--..//002 10//012 4!#3 "3!2 2"3#5&6'9*;!,?%2D*7G+:H,;H,;G,;D,:F.;I1>L4AN4AM3>K1Gc@GcBIdCJdCJa@G]>D[U8=S6;M27J/4F+0D).G(.C$*= %8"7!40-:KE;LFMH=LGH@>E>AC>AC>CD?DE@DE@DE@DC>DC>FC>FC>FCPG>PG>PG>PG>PG>QG>QG>QD7M>7L>5O<5M;1L:0J8.I7-H6,I7-I7-I7-I7-H6,H6,G5+G5+F4*F4(E1&E2$E2$E2$E2$E2$E2$E2$C0"B/!@-?,>+>+>+?,?,?,?,@-@-@-@-A. ?,>+<):'9&9&9&:':&:&9%9%8$7#6"6"5!6"6"6"7#8$8$8$6#6#6#6#6#6#6#6#3 5"7$9& 9& 8%7$5$8&"6'"6'"6'"5&!5&!5&!5&!8)$8)$8)$7(#7(#7(#6'"6'":-':-':-';.(;.(1+@3-A4.A4.@5/?42>42?53@64A75B86C97D:8C97C97C97D:8D:8E;9E;9E;9C98B87B87A76A76@65@65@65D:9C98B87A76@65?54>43>43?48?48?48?48?48?48?48?48>37>37?48?48@59@59A6:B6:G8=H7=J7=K8>M8?N9@O8@P9AU;DY>G\>H]?I^>IaALgFQmJQpGKxLMSUŠZZŽ^\_[Š_Y†]W€^U|^Tz^Sx]Ty\V{\Y~\Z€\\…ae‰bgŒejil“lm•on—oo—qnŒigŒjhŠjk…ih€fg}giills}gt|euzevzhx|k{}o€rƒ€s„ƒvˆ„w‰‡xŠxŽ‹wŠs‰q‹ˆo„q}‹puŒotŠmrŒmrot“pv–qx”lt™pvoyœov¢s{©z‚«y‚¢sycftLMiBChFG\>>N45G13A-/>.18).1$+- )+ ()'&&##" !                         $!%"##$#%%%#$"!$!$$$%%('&&(*-/---..//010////011 0000 1!3$4%8): +>$/B(5F*8G+9F*9E+8D*7E-:H0=K3@O5@N4?L2=J09F+4E*3F(0F(0E'/F(0G(.G(.E&,F'-F(0E*1F*6B+5A)6?)57#.7#.7#,8%+:#+:#)=$(;%(8$&6#%7#%6"$5!#5!#5"5"6!8#:!%;"&; %8"41'&'+05< ? BG=> LRT\d/R "a.v->t 0€1œ%; 6¨7ž+–$›'©1·8ËAÚLßRßUßUáQåNñPý(Xÿ/hý9ƒúG¥òSÉó`äî^âëZÙìTÃÿtæÿmó÷gëéhÜù€çÿ™úÿ‹ôôpèùmòÿvÿüoûúrîÿ}äÿ|Éÿl£ü]…ýZwíQgíTiòXt÷f‡ìjÃS{¤Fk§Pr§Mg°Rb¸SY·MO³GG¶EIÁHW½RfŸQg‚H^yDXsDVkBRlFUmIWd@N]7Fa;JgAPlFUmIWiGUeERbBMbAJdAHcBIbAH`?F]U8=U8=S6;Q49L16H-2D).B',F'-B#)<$7!6 4/,7JD7JD:KE:KE;LF;LF=LG=LG?KG?KG?KG?KG@KG@KG@KG@KE@ID?IA?F?=D==D==D=>C=?D>?A<@B=AC>BD?EFAFGBGHCGHCDC>ED?GD?GD?GD=GD=ID>ID>KD7M?6L92L:0K9/K9/J8.J8.I7-I7-J8.J8.J8.I7-I7-H6,H6,G5)H4)H5'H5'G4&G4&F3%F3%E2$A. @->+=*<)=*=*>+?,>+>+=*<);(;(:'>+>+=*=*<)<);(;(;';':&:&9%9%8$8$8$8$7#7#6"6"5!5!6#6#6#6#6#6#6#6#8%8%8%8%8%8%8%7&7%!5&!5&!5&!5&!5&!5&!5&!7(#7(#7(#7(#7(#7(#7(#7(#7*$8+%8+%9,&9,&:-':-':-';.(1+?2,A4.B5/@5/A64@64@64@64@64@64@64@64@64@64A75A75B86B86C97C97@65@65@65@65@65@65@65@65@65@65@65@65@65@65@65@65<15<15<15<15<15<15<15<15<15<15<15=26>37>37>37@48B38C49D39E4:H5;I6P6?Q7@T9BWH_AKbBMdCLoKOuMN{QS‚VW‡ZWŠ]ZŠ_Y‡`Y€^U{]Sy\Tv[RwZVz[Y}[Z]^€]c‚]d„`d†bd‰eg‹ggihŽkiŠge‡ecƒcdcb}cd{eg|fi|glvbmucoucquervfsugvthvuiwyl}yl}zl}}l~}l~k~k‚k}„ir†in…hm„gl…fl‡fm‹hoŒgoŽfo‘hp—it™kuœmwžlwŸkwktcf…[\zRRqMMkKLcFHV=@K58I6:A279-14'.2%./"++('$" !                                # # ""##%%%#$!""#$' (!))))****)*+,--,+--------1 01!0 0 1!2!3"8'9(;!*>$/@$0A%1A%3@&3@&3?'4A'2C)4F,7I/:M2;N3C=>C=?A<@B=AC>BD?DE@FGBFGBGHCFE@FE@HE@HE@HE>GD=HC=HC=KD7M>7M>7L=6L92L:0L:0K9/K9/J8.J8.I7-J8.J8.I7-I7-H6,H6,G5+G5+H4)H5'G4&G4&F3%F3%E2$E2$A. @->+=*<)=*=*>+?,>+>+=*<)<);(;(>+=*=*<)<);(;(;(;':&:&9%9%8$8$8$8$8$8$7#7#6"6"5!6#6#6#6#6#6#6#6#8%8%8%8%8%8%8%7&7%!5&!5&!5&!5&!5&!5&!5&!7(#7(#7(#7(#7(#7(#7(#7(#7*$8+%8+%8+%9,&9,&:-':-';.(1+?2,@3-A4.@5/A64@64@64@64@64@64@64@64@64@64@64A75A75B86B86B86@65@65@65@65@65@65@65@65?54?54?54?54?54?54?54?56<15<15<15<15<15<15<15<15;04<15<15=26=26>37>37>37@48B38D39E4:H5;I6H_AKbBMcDLlIOpLNxOSUW…YXˆ[X‡\V„]V~\Sz\RwZRuZSvXVwYY|Z[}Z^}]b~]d_dƒ`d†de‰eg‹gg‹igˆfd„eccc~ac{abxbdxbewdhp_io_jp`knakoanpboocopdpsgssgstfuugvvhwyhxyhx}hwgpƒem‚dl‚dlƒdl…dm‰eo‹epŒdoeo’fs—itšjxœjvœixœju’ehˆ^_€VWySRsOOjJK^ACQ;=K8:D47<-05)-2%,1")-'*$$!"                                 """###%%## "!"#&' ))))****()+,--,+--------001!0 0 1!2!2!5$6%9(;!*>#,>#,>".>".?%0=%2@&1B(3E+6H.7L1:N3&3;%17#.7#,7#,7$*:#):$'<#':$'7#%6#%8$&9%'9%':&(;%(;%(=$(=$(<#';"&9#6 42.+))+. 4 7BHJHMYccX "Z(\(d-r2v*‡+¤">©: ,• š!«.Á=Ó!EÚ!KÙSÑQÏTÐRÚNë!Sü&Zÿ5sÿ@‹ÿaºÿõÿ ÿÿ„ôòUÀô:ÿ<šþB¡ÿ_¿ÿaÃû[ÅÿfÛÿcâôTÜøVßþ^Üû_ÍÿrÊÿ‚Êÿ~¼ÿw°ÿm©üašñYˆíZ„âT|ÙW}Ï_ƒ¹Uy¨Iq­Ms¹PqÄOjÕTfØN]Ì>NÉNoKd>Ia=Ga=Ge?JiCNlFQhGPcEM\CIY@F]!&9#6 2.,5JE6KF7JF8KG8KG9LH;KH;KH>MJ>MJ>MJ>MJ@LJ@LJ@LJALH@ID?IA?F?=D=BD?DE@EFAEFAFGBIHCHGBJGBIFAHE>GD=GB7L=6L=6K<5K<5K<5M:3L92L92K81K81J70J70J70I6/I6/H5.H5.G4-G4-F3,F4*G3(G4&F3%F3%E2$E2$D1#D1#A. @->+=*<)=*=*>+>+>+>+=*=*=*<)<)=*=*=*<)<);(;(:':&:&:&9%9%8$8$7#9%8$8$7#7#6"6"6"6#6#6#6#6#6#6#6#8%8%8%8%8%8%8%7&7%!5&!5&!5&!5&!5&!5&!5&!6'"6'"6'"6'"6'"6'"6'"6'"7*$7*$7*$8+%9,&9,&9,&:-';.(;.(1+?2,@3->3-?42>42>42>42>42>42>42>42>42?53?53@64@64A75A75A75>64>64>64>64>64>64>64>64<42<42<42<42<42<42<42<34:14:16:16:16:16:16:16:16:16:16:16;27;27<38<38=28@3:@3:C4;D5K6?K6?N7AO8BS9DV:F[=I]?K_AMaALhGNmJPuNS|RVUV„WT„YS‚YS}XPyXOvXPuXTuWWuWYyV\xX]yZ`z[a{\a~^a€`a„bc†dc‡ed†dcƒdbaa|_ax^as]`s]`q^diYcgZdh[eg[eh\fh\fh\fi]gj^hj^hk_kmamnbnqcprdqtdozcm}bk|aj~`j~`jalƒbm†bn‰`nŒbncr“er•fv—gu—gw—gs“fk‹ab…[\€XX|UVrPQfHJZADR>?I9:A339-/8),6%+3 &.%'#$"!                                  """###"! !"%&) ) ) ) * * * *()+,,,++,,,,,,,,/ / 0 0 0 0 1 1 3 4!6#8%; '$/@&1D)2H-6M/9O19L.6J,4G(.C$*A '@ %A!&A!&A"'C$)E(-F+2F+4@)1=&0:%.8$-8$-8$-7$*9"(9#&;"&9#%6"$5"$6"$7#%7#%8$&9#&:$'<#'<#';"&:!%9#6 425"0!,)*, 3 6 =EGIO\j!k%["['[&c*s3~3„,-š.™ (™ &ž)¥-®0»2Ã:ÏMÆJ»E² ;Â>à Sö%^û)jþ:†ÿc¸ÿ˜õÿªÿÿˆæóS«ó2ƒý0{ù4|ÿF”üH£øH´ÿSÑøLÔðAÊùKÇõJ°öS¢ÿg ÿo¡ük¤ÿl²ÿiÃù^¹ñZ¡íY“àR„ÔS|ÊX|¹Qt­Im±Kp¼MnÉQlÖQfÕDUÏ6JÏ;QÀOt:Io9Gn@Kh@I`;Cd?Ge@HiAJjBKfCJaBHZAEW>B]#(>#(>#(@!'? &= %8"6 3/.5JE5JE6IE7JF8KG8KG:JG;KH?NK?NK?NK?NKAMKAMKAMKAMI@ID?IA?F?=D=;B;;B;AC>CD?DE@DE@EFAJIDIHCKHCIFAHE>GD=GB+=*<)=*=*>+>+>+>+>+>+=*=*=*>+=*=*<)<);(;(;(;':&:&9%9%8$8$8$9%9%9%8$7#7#7#6"7$7$7$7$7$7$7$7$7$7$7$7$7$7$7$6%6$ 4% 4% 4% 4% 4% 4% 4% 6'"6'"6'"6'"6'"6'"6'"6'"6)#7*$7*$8+%8+%9,&9,&9,&;.(;.(1+>1+<1+>31=31=31=31=31=31=31=31=31=31>42>42?53?53?53@64=53=53=53=53=53=53=53=53:20:20:20:20:20:20:20:12:14:16:16:16:16:16:16:16905905905:16:16;27;27;27>39?29B3:C4;E4K6?N7AN7AR8CT:EXJ^@L_AMdEMjGNrJRxNR~RSSS€TQ~UOzUMxUOtUPsVRsUUtTYwT[uT[uX]uX\wZ^y[]{]]~^_`^€a_b`aa|_aw]`sZ^oX^lW\jW]dW`cWacWacWacWacWadWacWadWadXbfYcg[ei]gk_il`jp`jt^ju^hv\iv\gx\h|^j_l_m„^k‡^lŠ`n‹aoŽbqcr’cs“ep‘diŽbc‰\_„Z\WXvRTjJK_EFYEDQAAI;:D66B23@-/;')6#'*&'%#!                                 !!!!!   !$%) ) ) ) * * * *()*+,,+*,,,,,,,,..0 1!1!0 0024!6#8%; '$-B'0F+4K-5L.6L.6J-2G(.D%+A!&@ %?$?$@!&B#(D',C(-C(/?(0<%/9$-8$-7$*7$*7$(8"%8"$:!$8"$5!#3 "4 "4 "4 "6"$8"%8"%;"&;"&:!%:!%9#6 428&4#-((-37;>BGP\k$o)[ ](_(a'm-z3€.€$Ÿ9ž3 3¥6¡1ž 'ª ,½:Ð'NÉ"MÀIÀHÒ%Së/bú-hù(jð*uøF”ÿi¼ÿyÊÿhµñE÷.tÿ,nû-ný3}÷5Œù<£ÿD¼ô;ºí5­ùB¬ë8‰ðD~ùW€÷[ƒïWöb°ýgÒô^Êûcºõ`¤èWŽÚU€ÏXxÃUr½Po½Nn·Fd¿GbÈDYÍ@QÚBWÞLaÀEZ˜2G†4J…@S…BT{C]#(%=$;#8"6 4004HF5IG5IG5IG7JH8KI8KI8KI=ML=ML>LL>LL>LL>LL@LL@LJAJE?IA?F?AC>BC>CD?CD?CD?IHCIHCJGBIFAGD=FC+=*<)=*=*>+>+>+>+>+>+?,?,?,?,>+>+>+=*<)<)<)<(;';';':&9%9%9%:&9%9%9%8$7#7#7#7$7$7$7$7$7$7$7$7$7$7$7$7$7$7$6%6$ 4% 4% 4% 4% 4% 4% 4% 5&!5&!5&!5&!5&!5&!5&!5&!6)#6)#6)#7*$7*$8+%8+%9,&:-';.(;.(;.(42>42<42:52:52:52:52:52:52:5272/72/72/72/72/72/72/7117157077077077077077077076/66/66/6707707818818:08=2:?2;B2F5?I5@J4@M5BN6CR8ES9FV:HX!?!#A#%B%)A&+A&-=&,;$,8#*7$*7$*6#)5"&7!$6 "7!5!3!1 1113!6 #7!$9 $9 $9 $9 $8"6 436$3!+').6:89<DMXh#o+X^'c*`$a"m*x,y $©1Lž"<™7š6‘+‰ ,½(EÃAÁ<¼?Ì'OÞ1^ë1c÷-gú)jð$iì*qè7}ë@„í=}ï3pú(eÿ&fÿ+vþ+|ú+ƒý6‘ÿ=ô5”ï1‰ø<ˆô;uõ@møIpñJvéMŠøc·ÿxäÿxéÿmÌÿf²õ`˜èZ‚ÚUpÑShÊNfÀHaµC\°?S°:JÃCRâUhá\q¹Nb“89>8AC>AC>AC>AC>BC>BC>BC>BC>GFAGFAHE@GD?FC5G>5G>5G>5G>5G>5H>5H>5F91F91G81F70F70E6/E6/D5.I60I60I60H5/H5/G4.G4.G4.F3-F3-E2,E2,D1+D1+C0*C0)D0%D1#C0"C0"B/!B/!A. A. A. @->+=*<)=*=*>+>+>+>+?,?,?,@-@-@-@-@-?,?,>+>+>+=) =) =) <(<(;';';':&:&:&9%9%8$8$7#8%8%8%8%8%8%8%8%6#6#6#6#6#6#6#5$5#3$3$3$3$3$3$3$5&!5&!5&!5&!5&!5&!5&!5&!5("6)#6)#6)#7*$8+%8+%8+%:-':-':-':-':-';.(;.(9.(;0.:0.:0.:0.:0.:0.:0.:0.:0.:0.:0.;1/;1/<20<20<41;3194194194194194194194172/72/72/72/72/72/72/7117157077077077077077077075.55.55.56/66/67077079/7=2:>1:A1;B2H4?H4?L6BN6CQ7DS9FU9GW;IZ;J[Ï%L×#Ré'\ô*dó'dí&aç&]ç(^ê)^ï&Zõ"Wù[ÿ,tÿ'vü(uÿ1|ÿ7€ö3wò0o÷6kÿEqü>b÷?aðAjëI„ûgµÿ‡ëÿ÷ÿoÌÿg´ÿcšò[~àQcØOYÑHX¼=P¸IZ©@Q£9G¹FWÙXnÏUl¤G\Š?S‚=R€K_>G_#(; %:$:$<#<#:"6 530/3GE4HF4HF5IG6IG7JH7JH7JH:JI:JI;II;II;II;II=II=IGAJE?IA?F?AC>AC>@B=AB=AB=AB=AB=DC>DC>FC>EB=EB;EB;FA;FA;F?7F?7F?5F?5G>5G>5G?4G?4F=4F=4F=4F=4F=4F=4G=4G=4E80D7/E6/E6/D5.C4-C4-C4-G4.G4.G4.F3-F3-E2,E2,E2,E2,E2,D1+D1+C0*C0*B/)B/(C/$C0"B/!B/!A. A. @-@-A. @->+=*<)=*=*>+=*>+>+?,@-@-A. A. B/!B/!B/!A. A. @-@-@-?+"?+"?+">*!>*!=) =) =) ;':&:&9%9%8$8$8$8%8%8%8%8%8%8%8%6#6#6#6#6#6#6#5$5#3$3$3$3$3$3$3$4% 4% 4% 4% 4% 4% 4% 4% 5("5("6)#6)#7*$7*$7*$8+%:-':-':-':-':-'9,&9,&7,&9.,8.,8.,8.,8.,8.,8.,8.,9/-9/-9/-:0.:0.;1/;1/:2/:2083083083083083083083072/72/72/72/72/72/72/7116046/66/66/66/66/66/66/64-44-44-45.55.56/66/69/7=2:>1:?2;@3H4?H4?L6BM5BQ7DR8ET8FV:HW;IW;I`BNdDOlFQrIQyKN|LL|LJyLGyNHwPKxROvTSvSYuRYtN[pOZnTWlWVnVVpVUsWVtXUuWUvXVvZYvY[sY\qX\nT]iR\eO[bNZ_MY^N[^LZ^LZ]KW^JV^JV^JV`LW`LW`LW_NX`OW`QXaPX`PZgUafT`gUahVbkWboYer[ev\ey^gz\d|[d~[b€]d„_f†ahŠchbi‹^e…V^}NVvINnEIgEFbFE\GB\KD]NG^QI]NGYF@P84E0/5&-.",(&"                           ! "!"#&') ) ) ) *!*!*!) &%'(((''((((((((*,0 1!1!0 .,1257!: #: #;!$:$>#*="+ (@!'@!'B#)A"(B"'@ %@!><:?"?!#>!%=#&=")9"(9"*7")4!'3 &2#1 212/1.-,-/3 5"7"7"8#8#8"6 4531,)(-36522:BI Ye&X!U\"]"W ^ j)j%klmm i i q ‚ «,½3º4½;ÃAÍ#Jâ-Zé+Yê%Sê!MèHëGï"Mñ#Qï!RðTÿ)fÿ$dû%aü+dû0e÷1bö1^õ1Wÿ@^÷2Mñ3Mï<\æDsêX–òr¿ùwÍûfºÿ^¤ÿ`ü\vïT\êTUáNVÅAL´HU¥ES›=K¨CU¾Id¬>[ˆ:TCZ{@Vr7Ko4Jr9Lj7J^/?X/?\8Da;Jg=Ko>Qs@Qq@Sk?Nc=L]7@;7=97=98=7AC>AC>AC>@B=AB=AB<@A<@A;BA5G>5G?4G?4E<3E<3E<3E<3E<3E<3F<3H;3D7/E6/D5.F5-E4-E4,D3,D3+F3,F3,F3,E2+E2+D1*D1*D1*E2+D1*D1*C0)C0)B/(B/(B0&C/$B/!B.#A. A-"@-@,!@-A-"@->*=*<(=*=)>+?)@*@*?,B,!A. A-"B/!C/$C0"C/$B/!B.#A. A-"A-"@,#@,#@,%?+"?+$>*!>*#>*!;' ;':&:&9%9%8$8$8%8%8%8%8%8%8%8%6#5$5$5$5$5$5$5$3$3$3$!3$3$!3$3$!3$4%"4% 4%"4% 4%"4% 4%"3& 5("3("5("4)#6)#5*$7*$6+%:-'8-':-'7,&9,&7,&9,&6+'9.*8.,9.,8.,9.,8.,9.,8.,9.,8.,:/-9/-;0.:0.<1/;1/:20830:20830:20830:20830:20830:20830:20830:208226046/66/66/66/66/66/66/63,34-44-44-45.56/66/68.6<19>18?2;@3:C3=D5H4=L6BL7@N6CR8CT8FU9EV:HW;G`BNdDOjFPqIQvLPxLMyKKwKJwNLwOMxRQwSSwSWuRYtNYpOVpSWmUUnVTpVUpVUsWVtXWrXWrXYrX[rY]qX^lU]iR\fN[cMZ\JV\JX[IWZHVZHT[GSZFRZFR]IT]IT]IT\KU\KU\KS\KU]LVdT_dT_eUbgUakWcnXdr[es\dx]fz\dz[c|[b}\c‚_e…bhŠchdkŽ_g†W_~MSuFLmCGjCFdFDZB>ZGA\MF`QJaPIZGAP84D/.7&,0#*)%"                          "!""#$'())))* * * )&%&(((''(********,0110../1359 :!:!:!A$)@"*> (='<&<$=$= %<$<$;#:!9 763;!$; %;"&;"&9"(8#*7")6#)3 &2%1"0!//.-/.+++.2!4!6#7"7"8"8"6 6530,**-14723:>C R^#["P T[$W"[&b,^%^ i&o'n#t&~+ƒ-‰%¨+È$?Å"=¸5³2»<Ç%JÃAÎDÑ=Ô7Û:æ Dí&Oê&Vé Tû%Yû!Sø#Qö(Oõ,P÷1Tõ2Rï.Iï1Jà&=ß+Dä=[×@iËExÂN‹ÅMð\šùW‰ÿ^~ÿ_pþY]ÿ]^ø\`ÚMV³AK¦FR˜BO—@Sœ#(="'>!&= %<$8$6 3 /.-2HF2HF3IG3IG4JH4JH6JI6JI4HG5IH5IH6JI6JI7KJ7KJ8JJ;IJ=II>HI>HIFC>EB;DA:C@9C@9C?6C?6E>6E>4F=4F=4F>3F>3F>3F>3A:0A:2B92B92C82C82E80E80H:1J91I80J8.I6/H6,H4-H4+H4)G3(F2'E1&D0%D0%E1&F2'G3(G3(F2'F2'E1&E1&D0%D0%D.#D.#D-%C-"C,$B,!B+#B,!@)!@*@)!@*@)!@*@)!@*B)"B* C*#C-"E,%D.#E.&E/$B.%B.#B.%B.#A/%A/#A/%A/%@-&@-&@-'@-&@-'@-&@-'@-&=*$=*#=*$<)";(";(!;(":' 9&9&:' :' 9( 9( :)!:)!6%4&3%3%2$2$0#0#0"0"0"!0"0"!0"0"!0"2$#2$!2$#2$!2$#2$!2$#2$!0%!/&!0%!0'"1&"1(#2'#1(#5*&4+&5*&4+&5*&4+&5*&5*&5*&6+'8*'7,(9+(8-):,)8-):,)8-):,)8-):,)8-):,)8-+7-,7/-8.-80.9/.91/:0/91/;10:20:0/80.8.-7/-7-,6-.4.04.24.24.24.24.24.24.24.25/35/3604604715715905<17<15=28>37@3:C49E4ª+£.£7™0§<¦4°3Ä?Ô&K×&PÕ#SÜ Põ$Nö Fñ!Cì$Aì'Bé)Bå)BÜ)?â:QÍ/H½(EÂ6YÀAj¥4b“2e­DoÈ:TèFUüV`ÿ]dÿ[aýRXðISâJW¶6C§=K–BQˆ?P{5Mq/Ko/Qq5Qt9Kv>Is@Gk:@b15^-1c05h7;l>Ag=Ac;C^;B\;D^=H`>Lb@N^=F\=CZ;AV9>Q6;N38K26J15K26J15I04H-2F+0F).E(-D',9 &6%2#/,*)(2HF2HF2HF3IG3IG4JH4JH5KI3IG4JH4JH4JH5KI5KI6LJ7KJ:IL;IL=HJ=HJ;@<@;?AEB=EB;DA:C@9C@9C?6C?6E>6E>4F=4F=4F>3F>3F>3F>3A:2A:2B92B92C82C82E80E80J91J91J8.J8.J6-I5,K4,J4)I5*H5'F3%E2$E2$E2$F3%F3%G4&G4&F3%F3%E2$E2$D1#D1#D-%D-%D-%C,$C,$B+#B+#B+#A*"A*"A*"A*"A*"A*"A*"A*"B)"E*#C*#D+$E,%E,%E.&E.&B.%B.%B.%B.%A/%A/%A/%A/%@-'@-'@-'@-'@-'@-'@-'@-'>+%=*$=*$<)#<)#;(";(";(":' :' :' :' 9( 9( 9( 9( 4&4&2%2%1$1$.$.$1# 1#"1#"1#"1#"1#"1#"1#"2$#2$#2$#2$#2$#2$#2$#0%#0%!/&!/&!0'"0'"1(#1(#1(#4+&4+&4+&4+&4+&4+&4+&4+&7)&8*'8*'8*'9+(9+(:,):,):,):,):,):,):,):,):,)8-+8,,7-,8.-8.-9/.9/.:0/:0/:0/:0/9/.9/.8.-7-,7-,6-.6-04.24.24.24.24.24.24.24.24.25/35/3604604715715;25<15=26>37@48A59D5:E4:I6N7?Q7@R8AS9BS9BY>E\AFaDIfGMkKPoLRqLSsKStMRtMRtMPqMOqMOoMNoMLmMNrRUqSUoRTmSTmSVjTVkUXjVXgTVhUWjUZjUZiRZfOWdJS`ISYHRWGRVFQUEPTDOTDOUEPVFQRBMSCNTDOUEPVFQWGRXHSYITYGW\JZ_M]aL]aL[bLYeO\iQ^pVaqV_rW`vX`xY_z[a{\b\bˆZd^g‘^eŠU]ƒNT~MQvJKlFEdFD]D@VA>T@?VBCT>AN5;G.2@,.9''/ )$!    " $                          !##$$&&''((**+*)'''))))//0///1/100011335579;= >!@!B"B"A!? ="<":"8#6 #1 .(&%%%($($*"+#-%/ '3"(4#)3 $2#1"/ .-+*)' ' ' + ,!0!2#5$5$9#9#:!9 861/113368;A>CIA < G VQ I H H&E &I -P5G +S-^ )q+’8ž 8™/£2ª /¶4Ä!@Ä'B´ 8¬"9¨&@ž<•2š3¨6· AÀ"E¿ H¾"QÌ%QßDã9Ú7×!8Ù#:Ô 9Ë3¿0½#?«<¡>«/T´?i¦8e•4aª>`ÎBMâDEìKPøSZÿVaþRbñH]âD[¾6L¦9L‹:Kw:Lk7Mf4Mh/Pj.Js4Et7?o8>i59b03a-/h03k47h67b67Z68T5:Q6;S8AX8E[9GZ;CY:@W:?S8=Q6;N59K58J47H25G14H/3G.2H+0G*/G(.E(-8!)5 '2$/!,*))1GE2HF2HF3IG3IG4JH4JH4JH3IG3IG3IG4JH5KI5KI5KI7KJ:IL;IL;IJ=HJ=GH;EF:CB9B?;A=@;>@;@A;@A;BB:BB:BA8C?6C<4C<4C<2C<2D;2D;2D<1D<1B;3B;3C:3C:3D93D93F91F91J91J91J8.J8.J6-J6-L5-L6+J6+I6(G4&F3%E2$F3%F3%G4&G4&G4&F3%F3%E2$E2$D1#D1#B.%B.%B.%A-$A-$@,#@,#@,#?+"?+"?+"?+"?+"?+"?+"A*"D+$D+$D+$D+$D-%D-%E.&E.&@,#@,#?-#?-#?-#?-#>-#>-#@-'@-'@-'@-'@-'@-'@-'@-'>+%>+%>+%=*$=*$<)#<)#<)#:'!:'!:'!:'!9(!9(!9(!9(!4%4%2%2%1$1$.$.#1# 1#"1#"1#"1#"1#"1#"1#"2$#2$#2$#2$#2$#2$#2$#0%#0%#/%#/%#0&$0&$1'%1'%1'%4*(4*(4*(4*(4*(4*(4*(4*(7)(7)(7)(8*)9+*9+*9+*:,+9+*9+*9+*9+*9+*9+*9+*7,*7++6,+7-,7-,8.-8.-9/.9/.9/.9/.8.-8.-7-,7-,7-,5,-6-24-44-44-44-44-44-44-43,33,34-44-45.55.56/6604:14:14<15=26?37@48C49D39I6N7?O8@R8AS9BW>DZ?F_BGdEKhGNmJQoJQpKRsLQsLQqMQpLPpLNnLMnLMkKLoORnPRmPTkQTkQThRThRUgSUeRVfSWgTXhSXhQYeNVcIR_HRXGQVFQTDOSCNSCNSCNTDOTDOQALQALRBMSCNTDOUEPVFQVFQVEUYHX\K[]K[\JX_KWcMZgO\kT^mS\pU^qV]uX]wZ_x[`zZ_„Yb‹\d\c‹X_ŠW\‰X\~RSqIIjHF_C@T<:N:9O;?AGFHLC < BO M I G C@D&K.A 'J(V 'i)ˆ3—6˜/ž1©=§6¯8¹&@±$7ª2§7¡2¨7«7³;¹ ?°>£;œB¨EÄ!@Ã4¸2¶!5¿%?Å&DÇCÀC¸"H®#J¡#I¨0VºAl¶=j«1`³2YÍ@QÌ9CÎ:FÝDVíNdóNlíGkÜ@e½7ZŸ6U}3Lf0G_3J_5Mb-Ka%As.At-;m.9i-5f-3g.4k06k28f26_25V45Q48N59M6>R6BV8BW8@V7=T7?9>?9?@8AA9A@;A@;C@;C@;C@9C@9C>8C>8C<4C<4C<2C<2D;2D;2D<1D;2B;3B;3C:3C:3D93D93F91F91J91J91J8.J8.K7.K7.M6.M6.K7,J7)H5'G4&F3%G4&G4&H5'G4&G4&F3%F3%E2$E2$D1#D0%B.%B.%B.%A-$A-$@,#@,#@,#@,#@,#@,#@,#@,#@,#@,#@,#E,%E,%E,%E,%D-%D-%E.&C/&@,#@,#?-#?-#?-#?-#>-#>-#@-'@-'@-'@-'@-'@-'@-'@-'?,&?,&?,&>+%>+%=*$=*$=*$;(";(";(":'!9(!8' 8' 6' 4%4%2%2%1$1$.$.#2$!2$#2$#2$#2$#2$#2$#2$#2$#2$#2$#2$#2$#2$#2$#0%#/%#/%#/%#0&$0&$1'%1'%1'%3)'3)'3)'3)'3)'3)'3)'3)'4)'7)(7)(8*)8*)9+*9+*9+*8*)8*)8*)8*)8*)8*)8*)6+)5+*5+*6,+6,+7-,7-,8.-8.-7-,7-,7-,7-,6,+6,+6,+5,-5,13,33,33,33,33,33,33,32+22+23,33,34-44-45.55.5905903;04<15>26?37B38B38G6N7?O8@R8AR8AU;DW>DZ?F`CHdEKhGNlIPnIPrJRoKOoKOnKOmJNkKLjJKjJKkMOlNPkNRjPSiPSfPReQScPRcPTdQUeRVfSWePWdMUcIR^GQWFPUEPSCNRBMQALRBMRBMSCNP@KP@KQALQALRBMSCNSCNTDOTCSVEUYHXZIYZHV[IU`LXcMYfQZhQYlR[oT[qV[tW\tW\wV]€X`‡Za‹Z`‹Z`]b‘`d†XZwMNnKIaB?S:6L42J54K57H24E/2?*/7'*0 #( %#                              "##$%%''((**+*+)))++++..000133323333566899: : ; ; ? ? @#>#<":!7!5 .*($$#%&!&"%!'!(")!+#.%/$0#0#/ ..,,**' ' ' )+ ./ 2!2!5554215589=@BEIKJLLI DEL L KE @=B!F*; B "O !e %€/‘5˜5ž:°-O›6˜-¡1›*’#&&®(C¬"<­9¬9£:•8Š=‘<´%C¯3œ.˜/¥<µ%IÂ%RÃ%V¹'V²*X¡'P¢+Sµ;d¼=hº2`»0WÀ5L¸+<º/BÉ;SÔ?_ÙAgÛ@lÎ:jµ3aŸ5]2Rh,H]-E\/F]+D^$8;>7;>7=@9?@:@?;@?;@?:@?:B?:B?:C@9C@9A=4A=4C<4C<4C<2C<2D;2D;2C<4C<4D;4D;4E:4E:4G:2G:2I80I80K9/K9/L8/L8/N7/N7/L8-K7,I5*H4)G3(H4)H4)I5*G3(G3(F2'F2'E1&E1&D0%D0%B.%B.%B.%A-$A-$@,#@,#@,#B.%B.%B.%B.%B.%B.%B.%B.%F-&F-&E.&E.&E.&E.&B.%B.%@,#?-#?-#?-#>-#>-#>-#>-#?.'?.'?.'?.'?.'?.'?.'?.'?.'?.'?.'>-&>-&=,%=,%=,%<)#<)#:)"9(!9(!8' 5&5&4%3&2%2%/%/%.$.#/$ /$"/$"/$"/$"/$"/$"/$"0%#0%#0%#0%#0%#0%#0%#0%#/%#.&#.&#/'$/'$0(%0(%0(%2*'2*'2*'2*'2*'2*'2*'3)'4)'4)'4)'5*(5*(6+)6+)7,*5*(5*(5*(5*(5*(5*(5*(5*(4*)4*+5+,5+,6,-6,-7-.7-.5+,5+,5+,5+,6,-6,-6,-5,/5,13,33,33,33,33,33,33,31*11*12+22+23,33,34-44-48/48/4905:16<17>18A29A29F5=H4=J5>K6?M6@N7AO8BO8@Q:BT;AWF`AIeDKiFMkHNnIPnIPmHOlIMkHLiILiILgIKiJOjKPjMQiORhOSeORcNSaNR`MQ`PScPVdQWdOXaLU`IS]HQVEOTDOSCNQALQALQALRBMRBMP@KP@KP@KP@KQALQALQALRBMPBQSETVHWVHWXHUYGS\JVaMXcNWfOWhQYmTZoVZpUZpUZsTZ{V]X^…X]ˆY_‘`d•bg‹Z]{ONqIGdA?U75L21K31J54H24E/2?*/6%+0%("& $!                         !""#$%''((**+*+)))++++..001245 4 4 4 4 6 6 7 7 7 7 9 9 999:= = >!=";"9!5!3 ,(&"##$&!'#'#(")#*$+#.%/&/"/".--,,**' ' &)*-.4#4#7!7!6532589<?CFHN$M"N MKMONL OK!C ==A "E'E%G!U "e %z)ˆ07“8œ'B‚ &}ˆ&„"y w !x #82-“/1‰1…;!A©$C¢5Ž/ˆ0‘9 D¬L­P§Q¢Q’FŽA¡$L°.T¸-V¾1T¸.G­%;µ/H¾9X¶0U²+V·-`±+`ª+`¦4g—6a-Sm(Ee+C`+?]&9s3Dp->f)8d*6f,8i09l-8i*5o3=h5<^5;W7O4;K28I06E.4C.3A,1B+1D+1D+1D)0F(0G(0F(08!)5 '2$/!,+*).FF.FF.FF/GG/GG0HH0HH1II/GG0HH0HH0HH1II2JJ2JJ4IJ7IK9HK:IL;JM8>:7<67<6:=6;>7=@9>?:?>:?>9?>9B?:B?:C@9C@9A<6A=4C<4C<4C<2C<2D;2D;2C<4C<4D;4D;4E:4E:4G:2G:2I80I80K9/K9/M90M90O80O80M9.L8-J6+I5*H4)I5*I5*J6+G3(G3(F2'F2'E1&E1&D0%D0%B.%B.%B.%A-$A-$@,#@,#@,#C/&C/&C/&C/&C/&C/&C/&C/&F/'G.'F/'F/'E.&E.&B.%B.%?-#?-#?-#?-#>-#>-#>-#>-%?.'?.'?.'?.'?.'?.'?.'?.'@/(@/(@/(?.'?.'>-&>-&>-&=*$;*#:)":)"8' 6' 5&3&3&3&2%0&/%/%.$.#.#.#!.#!.#!.#!.#!.#!.#!0%#0%#0%#0%#0%#0%#0%#/%#.&#.&#.&#/'$/'$0(%0(%0(%1)&1)&1)&1)&1)&1)&1)&1)&2(&4)'4)'4)'5*(6+)6+)6+)4)'4)'4)'4)'4)'4)'4)'4((3)*3)*4*+4*+5+,5+,6,-6,-3)*3)*4*+4*+5+,5+,5+,5,/4*22+22+22+22+22+22+22+20)00)01*11*12+22+23,33,37.37.38/4905;06<17>18@18E4K6?M6@N7AO8BO8BO8@P9AS9BWFaBJeDMiFMlIPkHNkHNhHMhHMfHJfHJfHJgHMhKOhNQhORfPSdPRaNR_LP\LO]MPaNTbOUbMV`KT_HR\FRVDPTDOSCNRBMQALQALRBMSCNP@KP@KP@KP@KP@KP@KQALOBLNBPQESTHVUGVUGTWGRZJU^MW`LUcNUfQXjSYnUYnUYmTXpSXxU[}U]€U\„W\\`’`cŠY\}OOrFEf>ADFM#K MKG NT#PL NH @< ? D!G#S+V'd)q,x )€-0}-€.pr ~%v"i b ]o/r+|+„,„('0‹9”5•4‹6‹=“DœK£N£OŸO !T•I=—> ?©"C¹.Mº0J®&>¶1Nº9X $IC“M’N¡(]°5k´:m¢1]Œ+N,Fm->b(6n1Ag-<_)6])5`,8e-8h*7h)4k-:f.9^/9W/7R18S4:V5>W6?W8@U7?Q6=N3:J17E.4A,1@+0@+0@+0@)/B)/B'.A&-C%-B$,7 (4&1#. +)((,FG-GH-GH.HI.HI/IJ/IJ/IJ.HI.HI/IJ/IJ0JK0JK0JK2JL5HL7IM8JL9KM5>95<54;46;58=69=>9>?:@?:@?:C@;C@9B?8B?8C?6C?6E>6E>6E>4E>4D=5D=5E<5E<5F;5F;5H;3H;3I80I80K9/K9/M90N:1P91Q:2N:1M90K7.J6-I5,J6-J6-K7.G3*G3*F2)F2)E1(E1(D0'D0'A.'A.'A.'@-&@-&?,%?,%?,%B/(B/(B/(B/(B/(B/(B/(C/(H1+G0*G0*F/)C/(C/(B.'B.'A.'A.'@/'@/'@/'@/'>0'>0'?.'?.'?.'?.'?.'?.'?.'?.'A0)A0)A0)@/(@/(?.'?.'>-&<*&<*&;)%8)$6'"5&!4% 3& 3& 1& 0%0%/$.%-$-$+"+!+!+!+!+!+!+!/%#/%#/%#/%#/%#/%#/%#/%#.&$.&$.&$/'%/'%0(&0(&0(&1)'1)'1)'1)'1)'1)'1)'1)'2('2('3)(3)(4*)4*)4*)5+*2('2('2('2('2('2('2('2('2()2'+3(,3(,4)-4)-5*.5*.2'+2'+3(,3(,4)-5*.5*.4+.4*22+32+32+32+32+32+32+3/(0/(00)10)11*21*22+32+24.24.27.38/4:/5;06=07?07E4K6?L7@N7AO8BM8AN7AO8BS9BZ<^85Y75W97S98M53E12>).8%+0'+#'#$""!!                           !!""#$''((**+*)'''))))-.0124!6!7"8#8#8#8#9#9#9#9#:$:$9#7!8 6564578 7!3/+,*%#""$ %!%"%"&!% & '!)"*!-"- ,,-,,++ (!' &'(+,4#4#7!6 53103579;?ACIFIGAKQ!H HJ C9 6 ?FJ X$^ "u-„622x5m+q$h qx'l#`"X(R )\2a/q/ 3‰0†(„(ˆ/‡,‰3‹ <Ž%C”&I™%L #O "Q› N¥,W§*R¢$I¡C™7œ <²2K¾2L® 8µ*Gµ4R”!B€;€"F€E,Zº5jÏ8oÊ2e»0Z¨2Rƒ/?c$-a)6Y)5S(2R)1U*3]+6c)7g)6i)9f)8_)6Y*4U+5V.7Y/9Y1N3#,?!+5>;2;63955<58=79>7;=8<=8=>9>?:@?;@?:C@;C@;B?:B?8C>8C?6E>6E>6E>6E>4D=5D=5E<5E<5F;5F;5H;3H;3I80I80K9/K9/M90N:1Q:2Q:2N:1M90L8/J6-J6-J6-K7.K7.G3*G3*F2)F2)E1(E1(D0'D0'A.'A.'A.'@-&@-&?,%?,%?,%C0)C0)C0)C0)C0)C0)C0)C0)F2+H1+G0*D0)C/(C/(B.'A.'A.'@/'@/'@/'@/'>0'>0'>0'?.'?.'?.'?.'?.'?.'?.'?.'B1*A0)A0)A0)@/(?.'?.'?.'=+'<*&9*%8)$6'"5&!3& 2%1& 1& 0%0%.%.%-$-$* * * * * * * * /%#/%#/%#/%#/%#/%#/%#/%#.&$.&$.&$/'%/'%0(&0(&0(&1)'1)'1)'1)'1)'1)'1)'1)'2('2('2('3)(3)(4*)4*)5+*2('2('2('2('2('2('2('2()2'+2'+2'+3(,3(,4)-4)-5*.1&*1&*2'+3(,4)-4)-5*.4+04*22+32+32+32+32+32+32+3/(0/(0/(00)10)11*21*22+33,34.27.38/4:/5;06=07=07D5K6?L7@N7AM8AL7@L7@M8AP9CV:F\>H`BLdDOhGRhGPgFOfGMdGLdGLcFKcFKeHMeJOhMRiPTgPVcPT`MQ\LOYHN[JP]LT^MU`LU^JS]GSZFQXFRVFQTDOSCNRBMSCNSCNTDORBMRBMQALQALQALQALP@KNAKNBPPESSHVTIWTHTTHRZJU]MW]LT_NTfQXjUZlVYlVYjTWkRVrSXxU[{TYzQU€QW‡VY…SV}KLp@@i;;a86]:6[<9X<9P73G21>*,8%)2%+#("&##""                              !!"#$''((**+*)'''))))-.013 4!7"7"8#8#9#9#9#9#9#9#; %:$9#7!6 45413554 1+(,+&$#"$ %!# "###$&' ,!,!,!,-,,++ (!' %'(++3"3"6 541/. 12568:=>AAGD<CI<DF < 67 CLOa $l %…4“?‰7|4l2[#d` jp$f"b(e7c;V.Z+l.‡&9›.A)<– 63ƒ.‚3ƒ98‚5†7Œ:’>†4š$D©.M­.L¨'Fš8™#;´:O¼1H«1¯ <±/K‘#>!<~.I}*H›3X¼8gØ7mß2hÙ6eÆ9\™.Bl)],T"-N%-M%-O'/T)2^*6d*8i,;g*9`*7]+6Z,7Y.8]/:\2'/<%-=#,9>?:?>:@?:C@;C@9C@9C@9C>8C?6C?6C?6E>6E>6F=6E<5F;5E:4G:2G:2J91K:2M;1O=3P<3P<3Q:2Q:2L8/K7.K7.J6-J6-I5,I5,I5,I5,I5,H4+H4+G3*F2)E1(E1(A.'A0)A0)B1*C2+D3,D3,E4-B1*C2+C2+D3,D3,E4-E4-F3-I4/I4/H3.G2-E0+C0*B/)A.(E2,C2+C2+@1*@1*?0)?0)>1);,%<-&>/(?0)@1*@1*@1*@1*@1*@1*?0)?0)>/(>/(=.'=.';,';,);,):+(9+(8*'8*'7)&1&"0%!/&!.% ,#+"*#)"," ," ," ," ," ," ," ," -#!-#!-#!-#!-#!-#!-#!-#!-%#+%%+%%+%%+%%+%%+%%+%%-''-''-''-''-''-''-''/&'/%&/%&0&'1'(1'(0&'/%&/%&1'(1'(1'(1'(1'(1'(1'(1'(4)-3(,3(,2'+1&*0%)0%)/$(2'+2'+2'+2'+2'+2'+2'+1(-3)2/'2.&1,$/,$/.&1/'21)41)41)41)41)41)41)41)41*23.44/55.56/68.69/7:/7;.7A1;A1;C2I5@J6AL6BM7CL8CL8CM7CO7DS9FV:FZHaALbBMcCNbDLbDL_DK]BI]BG`EJbGLeJQfMSeNTbOS`MS]LR[LS\MT]NU_NV`LW^JU\FRZFQSAMRBMRBMQALQALP@KP@KO?JO?JP@KP@KQALQALRBMRBMPCMOCQPESSHVUJXXLXXLV[KVZJT_NV`OUdOVePUhRUhRUhRUjQUlMSqNTuQUzSVRWSU‚QT‚PQvDCrB@k?’8}.„%;s*g },…-ƒ&,”#5‹*Œ)!9¦(@œ";“#9'=µ'?½'B½*F°*E–&>~"7l#6j!50KŸ'KÀ'VÝ0eá5gÍ,V«&E‘'=n 0]!-X%.Y.5X16S*0T&0Y'2])6\(5X(4V(3T)3T)3W)4U+5K+6H-6G,5E+4A*2?*1>)0<)/<)/;(.:%,8!)9(8'9'8'2#/!,)'&&&,FG,FG,FG,FG,FG,FG,FG,FG.HI.HI.HI/IJ/IJ0JK0JK0JK2JN4IN4IN6IM6IM8JL8JJ:JJ8FF9EC8DB8C?7@;6?:5?76=66;79;8;;9<<:=>9>?:@?;@?;B?:B?:B?8B?8D?9D?9D@7D@7E>6E>6F=6E<5F;5E:4G:2G:2J91K:2M;1O=3P<3P<3Q:2Q:2L8/L8/K7.K7.J6-J6-I5,I5,I5,I5,I5,H4+G3*G3*F2)E2+B/)A0)B1*C2+C2+D3,E4-E4-C2+D3,D3,E4-E4-F5.F5.F5.J50J50I4/G2-E2,D1+C0*B1*D3,D3,A2+A2+@1*@1*>1)>1)<-&=.'=.'=.'>/(?0)@1*@1*@1*?0)?0)>/(>/(=.'=.'=.';,);,):+(9+(8*'8*'8*'5*&1&"/&!/&!.% ,#*#*#)"," ," ," ," ," ," ," ," -#!-#!-#!-#!-#!-#!-#!,$!+%%+%%+%%+%%+%%+%%+%%+%%-''-''-''-''-''-''-''-''-$%/%&0&'1'(1'(0&'/%&.$%1'(1'(1'(1'(1'(1'(1'(1'(4)-4)-3(,2'+2'+1&*1&*0%)2'+2'+2'+2'+2'+2'+2'+1(-2(1/'2.&1-%0-%0.&1/'20(31)41)41)41)41)41)41)41)43.53.45.55.58.68.6:/7:/7>1:A1;C2H4?J6AL6BL8CJ8DJ8DL8DM7CP8ET:GX (> ( FO Wdr'y+/‹4‰3{.g %P !F K V&_$k)v2m(`"h *|=„?ˆ6„+†).Ž4ˆ4t&"5t+p$†&1#-ˆ#&ˆŽ$›"3 %:—6’7#<°$?¹$A·&C­(C™'@ƒ&9o%4i"2{)?†<ŸCÀ)VÖ4e×5dÈ1Z·4V˜0G})9i#.b)2^/5Y.5W,3W,5W,6V+5R*3N)1L'/L'/O%/N&1J*5E+4D*3A*2?*1<)/;(.;(.:'-9&,8#*6!(6'8'9'8'4%1#-*'&&&*FI*FI*FI*FI*FI*FI*FI*FI,HK,HK,HK-IL-IL.JM.JM0IM2IO2JN2JN5JM5JM7KL8JJ:JJ9IH9HE:FD8D@7B<6A;4?94=86:98:99;8:<9<>;=?=8?>9A>9B?:C@9DA:DA:FA;E>6E>6F=6E<5F;5E:4G:2G:2J91K:2M;1O=3P<3P<3Q:2Q:2M92M92L81L81K70K70J6/J6/J6/I5.I5.I5.H4-H4-G3,F3,D1+C1-C1-D2.D2.E3/E3/E3/E3/E3/E3/F40G51G51G51H62K63J52I62H51G40F3/D2.D2.E3/C4/B3.B3.@3-@3-?2,?2,=0(1)@3+>1)>1)>1)=0(=0(G3?I5AJ6BK7CH6DH6DH6DK7CO7ES8GV:IX,,4$'*$# "%"                 ""   !"$%+*)*-/.++('%''((*+.03 5"9 $; %<&>'? (> (> (=':&:&8$8$7$6#4!0.--,+((()))'' ' &!&!&!&!! ! !%'!+",#-$-"."."-!+ (%"!#$)*)(* + ./.-, -./0123216:6-+/ 0 5 B P ]hv #.v(w+~/w*j$ZL DC"K%T"`'m-i'b"l,|8‡<:‹0…)‚ *0~1n x,q&r$Œ+2™*1œ(¦ +$” “$$3¢$:7œ6£<±&E°%D­&D§(Eš(B‡%'1<'09%.8$-5$,4#+3"*4 )4(5(5(8)9*5&2$/!,)'&%*FI*FI*FI*FI*FI*FI*FI*FI,HK,HK,HK-IL-IL.JM.JM.JM1JO2IO2JN3KO5JM6KN7KL8JJ;=?=8A>9B?:C@9DA:EB;FC6E>6F=6E<5F;5E:4G:2G:2J91K:2M;1O=3P<3P<3Q:2Q:2N:3N:3M92M92L81L81K70K70J6/J6/J6/J6/I5.I5.I5.H5/E3/E3/E3/F40F40F40F40F40F40F40G51G51H62H62I73I73J73K63J73I62H51G40F40F40D50D50C4/C4/A4.A4.@3-@3-?2*=0(:-%8+#9,$;.&>1)@3+>1)=0(=0(=0(H4@I5AH6BF6CF6CG5CH6DL5EP8FT9HV:IY=LZ>L[?M[AL\BMYBLYBLXAI]CL_FL_HN`KP_LR\KQYJQWHOUHOUHOWGQWGQXFRXFRYEQWEQQALQALQALP@KP@KO?JO?JN>IN>IO?JO?JP@KP@KQALQALQALN@OOAPPBQRDSVFSXFRYGS[GRaLUdMUfOWiPViPTiNSgLQhKPnMTqNUrOUtQUwSUzTS}TRSP€PL€OJ|KFyHCqD?h?9b;4\:0lL=jO>eK>XA9K61@..3$''!'&#$                    ""  !!!"%&+**+-..-+('%''(((),/25"9 $; %='>'? (? (> (='<&9%8$6#6#4!1 /-,,*)((())''' ' &!&!&!&#!" !%& +#+",#-$."-!, + '$#"$%()((* * + + + * ) * ,-//00. - 285- +/ 2 7 B Vm| %ƒ,ƒ0n&i%g$c "_WK D9? !F P _&\ Z!f+g )s,0…0†1„2~4y2o #r'g i‡&/›,5­)7½0@­%3Ÿ*–)$5¨(?©"@ª=¨>®'H¦'E %B›&A”(B†$=q1`)f&7`#3a 4r";’(Lµ3_Ø>tíGyçGkÍ:T¥*<… .l!(\#)T%+P).N.3K.3F-1A+.@*-A(,D',E&.C(1A'2>'1;&/9$-6"+2!)2!)/&/&0%0%2%4'7(6)6'3%1#-*(&%)FJ)FJ)FJ)FJ)FJ)FJ)FJ)FJ+HL+HL+HL,IM,IM-JN-JN.JN/KO1JO1JN2KO3KM6KN7KL7KJ;NL8C=8><9=<:>=:>=<>;=?<>><>?:<=8=>9?>9@?:C@;DA6E>6F=6E<5F;5E:4G:2G:2J91K:2M;1O=3P<3P<3Q:2Q:2O;4O:5N94N94M83M83L72L72J50J50J50J50K61K61K61J71H62F72F72E61E61E61E61E61E61E61E61F72F72G83G83I73J73J73J73I62H62H62G51G51E61E61C60C60B5/B5/?4.?4.@3+>1);.&9,$9,$;.&>1)?2*=0(=0(=0(KZ@MZ@MXAKXAKW@H]CL^DM^GO^IP]IRZIQVGNSFMRENRENREOREOTDOTDOVDRVDRQALP@KP@KO?JO?JN>IN>IN>IN>IN>IN>IO?JO?JP@KP@KQALP?OQ@PQ@PSBRUCQWEQ[GS\FR`KTcLThNWkPWlQVlOTjMRjKQpLVqLTqNTrOStRSwTR{SQ}TPTO„SNƒPLMFyHCqD>lA:gA6{[F~_Jy\JjPC[D@==?<>><==;=>9>?:?>9@?:C@;DA6E>6F=6E<5F;5E:4G:2G:2J91K:2M;1O=3P<3P<3Q:2Q:2P;6P;6O:5O:5N94N94M83M83J50K61K61K61L72L72M83L93J84H94H94G83G83F72F72F72D50E61E61F72F72G83G83G83I62I62I62I62H62H62H62F72F72F72D71D71C60C60@5/@5/A4,@3+>1)1)?2*=0(.9@0;B0G3?F4BC2BA3BC2BE3CH3BK4DO7GR7HS8GT9HVKW?LV@LVAJU@IZCK]CL]FN]HO\HQWHOTELPCJPCLPCLOBLOBLQALSCNUCQVDRP@KP@KP@KO?JN>IN>IN>IM=HM=HN>IN>IN>IO?JP@KP@KP@KQ@PQ@PQ@PSAQUCQYEQ\FS^FS`ISeKTjOXmRYpSXoRWmPUmLSqKVsKTqLTqNRqQRuSQzTQ~UO‚UO†UPˆVO‡RL€MI{JEvICsL=ŠfNpT‹lWz_LlQF]IBK787&,1!++(%#"!" !               ""!!"""$&'')****,,+('%''(((),.13 7"9#?*A +@ +@ +?*=(:&7%7%5$1"/ -,++)(''')() ' ' '!'!&!&!&#&#    #%!( ( *!*!+!+!)(&$##%%((()-+ ( & & '& ( * -//-, + * , 10+ , 8F U h-™$>š%@0^SG DI T"V&L#B <$A'D N!Y)U&Q'[1j)?]+V \ i"n)m-k+v1o+f*k-w5€4Œ4”8Ž2ƒ)| #„)—6¢$<¥ ;9†/|0t.t2x$;y'=s$:j!5[,]'5]-9Z&3e1$?©3VÍ;`ê9Vó?XÝDV¸:F,4t%+g&,^)/U&.P(0J)0G*/E*/E*/H+0I+3A%1?%2;#08".4 +1(.'-&)")"*!*!,"/$2%1$1$/!/!. ,)'%)FJ)FJ)FJ)FJ)FJ)FJ)FJ)FJ+HL+HL+HL,IM,IM-JN-JN-JN/KO/KO/KO2KO3KO4LN6KL6KL9ML:MK<>;;=:?@;?@;@?;@?;A@;A@;C@;C@9E>6E>6F=6E<5F;5E:4G:2G:2J91K:2M;1O=3P<3P<3Q:2Q:2Q<7Q<7P;6P;6O:5O:5N94N94K61K61K61L72M83M83N94M:4L:6J;6I:5H94H94G83F72F72D50D50D50E61E61F72F72G83H51H51G51G51G51G51E61F72G83F93E82E82B71B71A60A60?5,?5,>4+=3*<2)<2)<2)<2):0':0':0'9/&9/&8.%8.%7,&8*'7)(5*(5*(4)'4)'2(&2(&/'$.&#.&#-%")$ (#(#'")$ )$ )$ )$ )$ )$ )$ )$ '"'"'"'"'"'"'"'"($#&$%&$%&$%&$%&$%&$%&$%'%&'%&'%&'%&'%&'%&'%&)%&)#%*$&+%',&(,&(+%'*$&)#%,&(,&(,&(,&(,&(,&(,&(,&(.#+.#+/$,/$,0%-1&.1&.2'/2'/2'/2'/2'/2'/2'/2'/1'0/%0.&3/'40(50(5/'4.&3-%2/'4/'4/'4/'4/'4/'4/'4.(4.(2,)2-*3-*30*41)44*54*58,8:,9=-:?/KU?KU?KU@IYBJ\BK\EM\GNZFOUFMRBLOBKNCKMBJM@JM@JO?LQANTBPUCQP@KO?JO?JO?JN>IN>IM=HM=HM=HM=HN>IN>IO?JO?JO?JP@KSAQSAQSAQU@QWBQ[ER]GT`HU`FQeJSjOXpRZtU[sTZqRXrOVsKVsKTqLTpMQpPQrSPxUQ}VOVO‡XP‹YR‹VPˆSMƒQJRJUE•pUœ{Z™z^‡kUx\NjSKU@??,03$+- )(%%#$!#                """!""#$&'%(*)((*,+('%''((**-.025 7!@ +A +A +A +?*=(:&6$7%4#0!-+**+(%%%&')"*#' ' '!'!&#&#&#&#     #%!&'(())(&%#$$&&'')+.+ ( % % '%( + .0/- , - * + /- * - >Mc s(Š1‡3q)U @< AFMJA=?*E/J&S&a,[&T$Z/d%8V&Q W ` c#e*j-s2l,f-k5p9o6q3q3l -o/t0y.|+}({'z(v(o'f%c(g 0i%4l%7i$6^+c#1d(4a#0h .y&6.B¨*@Ò)@æ0F×LL?NK?MMAMKBKJCIIBHF@DC>BA=?><>=;=:@@>@A:E>8F=6F=8F;5F;5G:4G:4H92J92L92M:3P<3R;3R;3Q:2Q:2S<6S<6S<6R:6R:6Q95Q95N94K61K63L74L74M85M:6O:7N;7K<7J;6J;8I:5H96G83G85F72C41C4/D52D50E63E61F74F74F42F42F42F42G53E63E63D63F85F85F85C84C84B73B73A60@5/@6-@6-?5,?5,=3*<2);1(:0':0'9/&9/&8.%8.%7-$7,&6+'5*(5*(3)'4)'2(&2(&2(&/'$.&#.&#-%")$ (#(#'")$ )$ )$ )$ )$ )$ )$ )$ '"'"'"'"'"'"'"&"($#&%#($%&%#($%&%#($%&%#)%&'&$)%&'&$)%&'&$)%&)%&($%*$&+%'+%'+%'+%'*$&)#%,&(,&(,&(,&(,&(,&(,&(,&*,"*,"*-#+-#+.$,/%-0&.0&.1'/1'/1'/1'/1'/1'/1'/1'0,$/.&3/'41)61)6/'4.&3,$1/'4/'4/'4/'4/'4/'4/'4.(4.(2.(2.(2/)3/)31)43)44*58,8:,9;-:>.;A/=C1?D2@C3@?1@?1@A0@C1?D2@I4CL5EM7DN6DP8EQ;GS=IT>JT@IT@IT@IYBLZCK[FOZFOZFOUDLQAKNAJNAJM@IL?IK>HN>IP@KSCPTDOP@KO?JO?JN>IN>IM=HM=HM=HM=HM=HM=HN>IN>IO?JO?JP@KSCPTBRSAQTBPWBQZFR^HTaIV`FQdHTlNXrS[uV^vU\vR\vQYtLUsKTpKRpMQoPNtRPxUQ}VQVPˆWRŽYUXSŽUNŒSJ‹UIŒYF sR§€Y¤€`qU~cPqYMZGAA114%*.!()%'#&"%!"                     !"""$##"#$'($'))&%)++*)'(())+,-.0146 ?!+@ +A!,?!+> *:(7%5$4%1%."+ '''(%$$$%&("*#' ' '!'!&!&!&#&#  "%!#%&'('&%%%&&''')*,-*% ""$ "&* ./., + - * , / 1 .4 G` qt le`TF/ 7 B!F$B < 8<!>&F+K $S$_)Z "RX(O J O [e$d$h)n1m0b'])b2c5a4d5f6`/p;&B}!:o(b ^bn*j'c#^$^'`*c.e.f,j"0j"0h+l#.v*6v*4~*ª"6¼(>¶2G¨3E™0?Ž.<$/p%j'a)T!*K!+C"+B!*D'C)D$1@$0:$06"-1 *.'.%-$+!* ((&' +!+!)* +!,#+")!'!%,EL*EL,EL*EL,EL*EL,EL*EL-FM,GN.GN-HO/HO.IP0IP0IN1HN2JN2JN3KO5JO6KP7JP7JN7IM8JN>EA>D@=D?>M?=J<9I;:H:7G98F85E76E74E76E74E76E74E76F66J88I77G55C33B22C33D44D65H:9E:8E:8D97B75@64@64?53?6/?6/>5.>5.=4-=4-<3,<3,8/(7.'7.'6-&6-&5,%5,%5,%2)$2)$1(#0)#0'".'!-& -& /("/(".'!-& +$*#)"&!)$ ($!($!($!($!($!($!($!&"&"&"&"&"&"&"&"'# '# (""'# (""'# (""'# '!!&"(""'# )##($!*$$)%$)%&)%&)%&)%&)%&)%&)%&)%&+'(+'(+'(+'(+'(+'(+'(+&**#**#++$,+$,,%-,%--&.-&..'/.'/.'/.'/.'/.'/.'/.'/,&0,&2-'3-'3.(4.(4/)5/)5,&2,&2,&2,&2,&2,&2,&2,&2-'3.&3/'41)62*75*86+98,::,;:,;;-<<.=?.>@/?A0@A1>?/<@0=A1>D2>E3?G5AJ6BK7BM9DM9BO;DPGQ@FRAGUBHYDMYDMYCOWCNWCNTCMTCMRBLN>HN>HO?IO?INAJNAJOBLQALM=HNJP>JQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KP@KRBOSCPSCPTDOTDOUEPVEOXDO^GQcITkMYqQ\wS_yS^zQ_yQ\uMUrNRqMOqMMsOOxRQ|TT€VW‡Y[ŒXZ‘YX•ZV˜YP›\M¡`N¤dI³yQ´T­ZœxXˆlTt_N^MEK=::..."$%'*!' '' ""!!                        !"############$$%%&((*+++****+--.146!8#8&9'8'8'6)6!*6!*5!*/ '+'($$!! !#& )#)#*#*#)")")#(#!! !     "%$#"%&%%&)+,(' # "      ! $ & & ) ) * + .2 14 :K^"n"q i c ]RC 7966 5 8 ; ;"?$I'K "I M T Z "[ #Y#KPV\i%r+p+g'e*Y&S&U,T0R,Z0g!9r"=y >x7o+j (h*d+\#W^!h'l*h(f'i,m#0p$1w&5x$4p+k(i!,e*0d(0f1r$>},L‰2T™4V£2P§)?Ÿ%2‘&.t#V#K&-C(1N>?N@?M?>L>=K=5.>5.=4-=4-<3,<3,8/(8/(7.'7.'6-&6-&5,%5,%3,&2+%2+%0)#/(".'!-& ,%.'!-& -& ,%+$*#*#'"($!($!($!($!($!($!($!($!&"&"&"&"&"&"&"&"(# (# (# (# (# (# (# (# '"'"(# (# )$!)$!*%"*%")%&)%&)%&)%&)%&)%&)%&)%&+'(+'(+'(+'(+'(+'(+'(+&*)$*)$+*%,*%,+&-+&-,'.,'.-(/-(/-(/-(/-(/-(/-(/-(/,&2,&2,&2-'3-'3.(4.(4/)5,&2,&2,&2,&2,&2,&2,&2,&2.&3.&31&43(64)75*87+97+99+::,;:,;;-@/?@/?A0@?/<@0;B0G6@H7AH7AK:BK:BL;AN=CP?EQ@FTAEUBHYDMYCOWCNWCNVBMVBMSBLSBLO>HN>HN>HO?IM@INAJNAJOBKO=IO=IO=IP>JP>JQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KRBOQCPQDNQDNREOTDOVEOXDO\GPbHSjLXpN\uQ]yP^zP^yO[uMUrNPqMOqMMuONyQQ}SUTWŠW\X]”Y[™YWZQ£^O¬cP±jLÁUˆX¹ˆ]§\rXydQ`REMC:@533''*+- *((####!!!                          !!""%%#########$$$%%&(,-------.../025 6!6%6%4%4&5 )5!*3"*2#*- )+ ('&"#   #$ )#)#)")")")")"("! !     !##" ! %%%%'(++' $ "          # $ % ' * / 3 6 =FUc!p%n !c Y NC7 .962 238 !='D)J !P !O O QU[ !^'SQW c'r-z2{3y 6q5g3a2] 2W!1R-V-]0l6n4l.f (e+f0[,Q!Q^"j)o*j%h$g'j!,q%1z*7'7w/l(d(Y%)Q&-M$4R&?[%Gm'L‘/Vµ<]Î;UÎ7FÂ7>›(-j!K>&;+>(@&<&:&2%+#*$,#1"4!3!0 *!%  !'%('')*.+1'1#/ -,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL-FM-FM.GN.GN.GN1HN1HN3GN4HO5IP5IP6IP7JQ7HP8IQ9JR:KS=KT=KTB>;C?GB?LA?N@=N@=N@=O@=O@;R?;R?;R=8R=8U<8U<7W;7W;7W<5W<5X=6X=6W;7W;7V:7T;7S98R:8K65L76M9:O;P=?N>?N>?N@?N@?M?>L>=K=5.>5.=4-=4-<3,<3,90)90)8/(8/(7.'7.'6-&6-&5.(3.*1,(/*&-($,'#*%!)$ )$ )$ )$ )$ )$ (#(#(#($!($!($!($!($!($!($!($!'# '# '# '# '# '# '# '# &!&!&!&!&!&!&!&!'"'"(# (# )$!)$!*%"*%")%&)%&)%&)%&)%&)%&)%&)%&+'(+'(+'(+'(+'(+'(+'(+&*)$*)$+*%,*%,+&-+&-,'.,'.-(/-(/-(/-(/-(/-(/-(/-(/+%1,&2,&2-'3-'3.(4.(4.(4,&2,&2,&2,&2,&2,&2,&2,&2.&3/'4/'40(53(64)75*85*87+97+99+::,;;-<<.=?.>@/?@.<@.DS@FU@GU@GXCLXBNWAMWAMUALUALT@KRAKN=GO>HN>HO?IO?IP@JNAJNAJP>JP>JP>JQ?KQ?KR@LR@LR@LSAMSAMSAMSAMSAMSAMSAMSAMRBORBORBMSCNTDOTDOUDNXDO[FOaGReIUlLYrNZvM[wM[wMYuMUrNPsLOsLMuMNyQRRU‚TW‹V^W^–Z\›ZX¡\U«cU¶mZ¾wYÓbÓ•dÊ•i¶Šg›|`kVgWHREEA>GB?LA?N@=N@=N@=O@;O@;Q?;R?9T?:T?:U>8V=8X<8W;7W<5W<5Y>7W>9X<8V=8U<8T<8S;9Q<9K65L87O;R?AR?AO?@O?@N@?N@?M?>M?>L>=K=5.>5.=4-=4-<3,<3,:1*:1*90)90)8/(8/(7.'6/)61-50,3.*1,(.)%,'#*%!)$ (#(#(#(#)$ )$ )$ )$ ($!($!($!($!($!($!($!($!'# '# '# '# '# '# '# '# &!&!&!&!&!&!&!&!'"'"(# (# )$!)$!*%"*%")%&)%&)%&)%&)%&)%&)%&)%&+'(+'(+'(+'(+'(+'(+'(+&*)$*)$+*%,*%,+&-+&-,'.,'.,'.,'.,'.,'.,'.,'.,'.,'.+%1+%1+%1,&2-'3-'3-'3.(4,&2,&2,&2,&2,&2,&2,&2,&2.&3/'4/'40(53(63(64)74)76*86*88*99+::,;;-<>-=>-=?-;@.F4@I5@I5@L8CL8AM9BP;DR=DS>EU>FU@GWAMWAMV@LV@LT@KT@KS?JS?JN=GN=GM=GN>HO?IO?IM@IP@JP>JQ?KQ?KR@LR@LSAMSAMSAMSAMSAMSAMSAMSAMSAMSAMSAMQANRBORBMSCNSCNTDOUDNWCNZEN_EPcGSjJWoKWqKXsJXsKVtLTqMQrKNrKLuMNyOQQT„SW‹V^“W_˜Z]Ÿ[Z¥^X²h[Âwd΃fãœnå£qÜ£vÇ—s©†jŒq\mZKUG8=/,1"./+)*&%%$#"                          !!""""""""""##$$%%'*+,,,---//--,-././ 0!1#2'2!)3"*3$+.!*+ ()'%$"# "#!" !"& & (!(!(!)")"("$!# "           ! ! ! $ %&$ "    !")-5 ANV Y Y\#VM A82., ,19 = = = = B P%U%U$S"U Y !_%d+Y"TZ!e'r+u,v-v0u5s6j1]'Z'^.^.X(\)a,^)U"P!Q%O&N!X!g(u!1v0k'a!^#_ )]'n(3z,:w$4n+g(^%T$S!*R$/S$6_$8*?ª5HÖ:Hí9Eñ6?á1<²$2$\)N#49!.$'!'&(+ - ..*(# !  "!$#'#+!* )!)$*')'% %" ",EL,EL,EL,EL,EL,EL,EL,EL+DK+DK+DK,EL,EL-FM-FM.GN0GM0GM0GM1HN3GN4HO4HO5IP5HO6IP8IQ9JR:KS:KS;IR:IPIK?JL@LLBLMDMLDMLGMMEIJHJIHJIIIGGGEFECDCAEA>KA?LA=NA;NA;O@;O@;Q@9R?9U@;UA:V?9V?9V=6U<5W<5V;4X?:W?;W>:V>:U=;S>;R=:R=:L76M98P<=Q??R@@R@@O?@N>?M?>M?>M?>M?>L>=L>=L>=K=63>71>71=60=60<5/<5/;4.;4.:3-:3-92,92,81+81+70*70*72.61-4/+2-)/*&-($+&"*%!(#(#)$ )$ )$ )$ *%!*%!($!($!($!($!($!($!($!($!($!($!($!($!($!($!($!($!&!&!&!&!&!&!&!&!'"'"(# (# )$!)$!*%"*%")%&)%&)%&)%&)%&)%&)%&)%&+'(+'(+'(+'(+'(+'(+'(+&*)$*)$+*%,*%,+&-+&-,'.,'.,'.,'.,'.,'.,'.,'.,'.,'.*$0+%1+%1+%1,&2-'3-'3-'3,&2,&2,&2,&2,&2,&2,&2,&2.(4.(4/'40(50(50(53(63(64(64(65)76*88*99+::,;<+;?-;?-;@.F2>G3?I3@J4@L6BM7CN9BP9CR;ET=GW=FU>FW?LW?LU?KU?KT>JT>JR>IR>IMHO?IO?IO?IP>JQ?KQ?KR@LR@LSAMSAMSAMSAMSAMSAMSAMSAMSAMSAMSAMR@NR@NQALRBMRBMSCNTCMWCNZEN]FPbFRgGTjIToIVqHVrJUtLUsLQsJNsJNuKMxNPPV„QXU^•X`œ[a¢\^ªa[¸l_Ë|kØ‹oð£wó­zí°ƒÙ¥€»”w›|gvaP\J>O@9@1,3$2 0-+- ))(&#"                          !"""""""""""##$$')**+,---0/-,,,--+,-/!0%0'1 (1")- )+ ((&%$"#!"!$!"  !!%%' ' (!)")"*#(#'"% #!              " $%# !      &, 09 FR!X$WP J D <4. , .0/4 ; = < < ? F Y*U%NQ Z%a)b(`'Q S["e'q*w.t+g%X#T$N HN \ ,a#0]+d /g 0c+["Y ]%_'\#^#g+t#2s 0j(_"\$\ (Q_ )o%2r!0p,o,l,d)V$Q'Q!/Y#1k!0Œ#1¾,7ç9Cë-7ê4@É.>’.d(K06 -! !#%(*+-*%"  !$"(%+#.!,*))!)"&$ ,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL-FM-FM.GN.GN.GN/FL0GM0GM0GM3GN4HO4HO4HO4GN5HO7HP9JR9JR9JR:HQ:IP:IL;R?;N:9O;:O==P>>P>>P>>N>?M=>L>=L>=L>=L>=K=63>63>71=60=60<5/<5/;4.;4.;4.;4.:3-:3-92,92,81+81+72.61-4/+3.*1,(/*&-($-($+&"+&"+&"*%!*%!*%!*%!*%!($!($!($!($!($!($!($!($!($!($!($!($!($!($!($!($!&!&!&!&!&!&!&!&!'"'"(# (# )$!)$!*%"*%")%&)%&)%&)%&)%&)%&)%&)%&+'(+'(+'(+'(+'(+'(+'(+&*)$*)$+*%,*%,+&-+&-,'.,'.+&-+&-+&-+&-+&-+&-+&-+&-*$0*$0*$0+%1+%1,&2,&2-'3,&2,&2,&2,&2,&2,&2,&2,&2.(4.(4/'4/'4/'4/'41&41&42&43'54(65)77)88*99+:9+:=-:?-;@.KV>KT>JT>JS=IS=IQ=HQ=HO;FMHN>HO?IP>JP>JP>JQ?KQ?KR@LR@LR@LSAMSAMSAMSAMSAMSAMSAMSAMQ?MR@NR@LQALRBMSCNTCMTCM[FO]FPaEQeGSiHSlHTnHUqITsKTrJRrIOrIMuKOzMP€OUƒPWŽU^—Xa ]d¦^a¬a\ºlbÏ}oÞrõ¤wû²ü¹Œë´Ð¤‡­vˆn]jWIZIAH92;*#6$ 4" /-/ **)'#"!                       !!!!!!!!!"""#$$&'()*+,,-/.-,+,-,+,-- .#.%.&.&+'*&'%$##"!"!$#"" !  !$$&' (!)")"*#-%,$*"& %!            ! $$#      "&.5= HPT O F:4 1-( ( -0 7 9; 958B L$X+R#H K W%_*^'X"HP\$e)t/} 5y2j*KCDGT"`$,e&/d",j(2h$/c'] c#k)j'` b&e*m-m+e%^"Y#X&JV"d)i)o+v0v"2o!/n(3`"-U!.R+T"f–#Â+4Ô*5×1=½,=‹*\ "G'7**%& '()*))' !#"&#+'.%3"0+)*)'%,EL,EL,EL,EL,EL,EL,EL,EL-FM-FM-FM.GN.GN/HO/HO/HO.GN.GN/HO/HO1HP1HP3GP4HQ3GP4HQ6HR7IS9JT9JT8IS7HP8JN;JM;JM;JM=KN=KL?JL@JKCMNDMLGMMHLMHLMIKJIJLIIGMEBNE@NE>OD>OD>QD>RCR@>Q??P>>O==N<63>71=60=60<5/<5/;4.;4.<5/<5/;4.;4.:3-:3-92,92,61-40-3/,2.+1-*/+(/+(.*'-)&-)&,(%+'$*&#)%")%")%"($!($!($!($!($!($!($!($!)%")%")%")%")%")%")%")%"(# (# (# (# (# (# (# (# '"'"(# (# )$!)$!*%"*%")%&)%&)%&)%&)%&)%&)%&)%&+'(+'(+'(+'(+'(+'(+'(+&*)$*)$+*%,*%,+&-+&-,'.,'.+&-+&-+&-+&-+&-+&-+&-+&-)#/*$0*$0+%1+%1,&2,&2,&2,&2,&2,&2,&2,&2,&2,&2,&2.(4.(4.(4.(4/'4/'4.&3.&30%31&42&43'55)76*87)88*9=,<=,HN>HN>HO=IO=IO=IP>JP>JQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KS>MQ?MR@LR@LSAMSAMSBLTCM\GP^GQ`FQdFRhGRkGSnHUoITsKTrJRrIOrIMuKOzMR€NW„OYS_˜Yd£]gª_d¯a_ºjaÎ{m߉nóŸqþ±}ÿÀ’ýš嶘Ġˆ‚oi[iWMWF>G4-?,&:'#3/0,,)(&"!                       !!!!!!!!!!""###&%%&'(*++,,+**+,-,++,-",#+#+#*&($&$#""!"!#$#"#!"  ##%&' )"*#,#1'0&.$*!($        $%%!   !%3:B J LJ E;.* ) &% % +/ 7 ;>; 66? GO#J C D L S"V!S I MW"e*r0w 3t2k,RJP]"(i*2l)2h%.e"+f#,e$,c )b&g)o!.m)c a&a(d&d$`"\"V"S$M T$[%`%j*t2u"4q00Ao&7Z1O*I!P k…ž!) $/Ž/o%U !K%G(?&41/+*'%# !$#(%.(1'6%3-)(((%,EL,EL,EL,EL,EL,EL,EL,EL-FM.GN.GN/HO/HO0IP0IP0IP.GN.GN.GN/HO0GO1HP3GP4HQ2FO3GP6HR7IS9JT8IS8IS7HP9KO8LM9KO9KM9KM;JMIKEPRDNODLNEKKEKKFLLJNOMONNIFPICPICPIAQHARGATGATG?TE>UD5Q=4Q=6VC?UCAUCCRC@TB@QB?SA?R@>SAAQ??O==M;;I99J::K;;K;;I;:I;:I;:J<;J<;J<;J<;J<;H:9H:9H:9H:9H:9H:9H:9H:9I;;J<>I==G;;E99C98E;:C;9C;9B:8@86?75=85<74>63>71=60=60<5/<5/;4.;4.<5/<5/<5/;4.;4.:3-:3-72.40-40-3/,2.+1-*1-*0,)0,)/+(/+(.*',(%+'$*&#)%"($!($!($!($!($!($!($!($!($!)%")%")%")%")%")%")%")%"(# (# (# (# (# (# (# (# '"'"(# (# )$!)$!*%"*%")%&)%&)%&)%&)%&)%&)%&)%&+'(+'(+'(+'(+'(+'(+'(+&*)$*)$+*%,*%,+&-+&-,'.,'.+&-+&-+&-+&-+&-+&-+&-+&-)#/)#/*$0*$0+%1+%1,&2,&2,&2,&2,&2,&2,&2,&2,&2,&2.(4.(4.(4.(4.&3.&3.&3.&30%30%32&43'54(65)77)87)8:,;=,<>-=A/=B0>F1@G2AI3@L4BM5BP6CQ7DT8FU9EY;GW;GW=JTHN>HNJP>JQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KQ?KS>MS>MS?KR@LR@LSAMSBLVBM]HQ^GQ`FQbFRgGRiHSmIUoITsKTrJRrIOrIOtJNzKQ€NW„OYŽR^šXd¦^i«`e°`_¼iaÏylÞ‡lñšmÿ°{ÿÖÿË£ôãԯ•¬}witbVaPFO<5E2+>+%6#01-,*(&$#                       !!!!!!!!!!!""##$"$%&()**++***+-- +++**!*!)!*"($'#%##!" "!"##"#!"  "#%&' )"*#,#2(2'0%,")&# "      !$%$ !     % 6=D I H C ;3'% & &$ $ )-/8B!C"?9 7 ; CC? = @EK NMJQ_(i+j*g)d(^'Y!b!'u/7~7?v-6k"+e&\ b!'g&,e$*i#+l#,k(c"a%]#]] ^ ZT P T'T'V#W!a'l"1n$3k.y&8k0X*P+P,Q(W^hjb"Z"X%](_&X!G ? 71)$#! "!%#*%0)2(9'5"-)')''*CJ*CJ(AH(AH(AH(AH*CJ*CJ,EL,EL-FM-FM.GN.GN/HO/HO-HQ-HQ/GQ/GQ/GQ/GQ0FQ0FQ5IT5IT5IT6JU7IU8JV8JV9KU7JP7LO8KQ9LP9LP;MO=LO>LO?MPALNCMOEMOFNPGOQJORKONPOKSNJSNJSNHUNHTMGULGVKEVICUH@TE>TC>M==L<;J<;J<;J<;J<;J<;J<;J<;J<;I;:I;:I;:I;:J<;J<;J<;J<;I==I==I==I==I==I==H>=H>=F<;D<:C;9@;8>96=85<74;63;62;62;62;62;62;62;62;62<73;62;62:5194083/72.61-62/21/0/-10.54265343110.0/-/.,.-+,+)+*()(&('%'&$)%")%")%")%")%")%")%")%",(%+'$)%"'# '# '# )%"*&#)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!($%($%($%($%($%($%($%($%*&')%&)%&)%&)%&)%&($%(#'+&,*%,(#*'")'")(#**%,+&-)$+)$+)$+)$+)$+)$+)$+)$+'!-(".(".)#/)#/*$0*$0*$0*$0*$0*$0*$0*$0*$0*$0*$0*'2*'2*'2*'2,&2,&2,&2,&2.&3/'41&42'52'53(64(64(65(97)89+:=,<@/?C1?G2AI3@K3AL4BP5DR8EU9GW8GW8GU9GVJP>JP>JQ?KQ?KQ?KR@LR@LSAMSAMSAMU@OW@PWANWCOWCOXDPXDOXDOYDM[DN^DOaEQfFQiHSlHTmISlGOnIPrKPrIOrGNvIP|JS‚MWP_—Uc£[f­`fµce¿jeÍuk×gï™jü«tÿ¾ŽÿÈž÷Ʀߺ ½¡Œ£Œ|ˆugvdX_MCM:3D1+?,(9%$5!"1!0 . +)''%"!                          """"""""%&&''((('''''''')'''&%%%&"&"&#&$&$&$'''%&$%""   !!!"$' *#.%0#1$0#/", ($ #      !"" #       &0= B D B<864 ! #$" ! % (+.02 5 79<:=<?CB? <GFKU#a'b'Y Q e&f$k 's#,y(1x(1t$-l!(i$)d#'g),k/1i(,_!a i )c(^#_ e%h(a%X#T$U(P&R%Q#S#T$S%X$e(f+Y*M'J&K)J$DCE"E$M%f,ƒ'6–!1Ž-n+K520$%"& *$)#&#$"%"(#-&/%/4%1 &( #%*&*CJ*CJ(AH(AH(AH(AH*CJ*CJ,EL,EL,EL-FM-FM.GN.GN/HO-HQ-HQ/GQ/GQ/GQ/GQ0FQ0FQ4HS4HS4HS5IT6HT7IU7IU7KT6JQ5MQ5MQ7LQ8MR9LP;MQ=LO=LO?MPBMQCNPEOQFPQGQRJPPPPNQPLQPLQPKROJROJUMJUNHULGSJCUHBSF@SD?TE>UF?VGBTFERFFRFFRFFQEEQCBOA@OA@M?>M==L<=H>=G?=D<:D<:A<9@;8>96=85<74<74;62;62;62;62;62;62;62;62<73<73;62:5194083/72.62/43121/0/-10.43154232010.0/-/.,.-+-,*+*()(&('%('%)%")%")%")%")%")%")%")%",(%+'$)%"($!'# ($!)%")%")$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!($%($%($%($%($%($%($%($%($%($%($%)%&)%&)%&)%&)$(*%+)$+(#*'")'")(#*)$+*%,)$+)$+)$+)$+)$+)$+)$+)$+'!-(".(".(".)#/)#/*$0*$0*$0*$0*$0*$0*$0*$0*$0*$0)&1)&1)&1)&1+%1+%1+%1+%1.&3.&31&41&42'52'54(64(64)95*:8,:;-<=/>A0@D2@G2AJ3CL4BN6DS8GU9GX9HX9HW8GW;IVJP>JQ?KQ?KR@LR@LSAMSAMSAMVBNV?OW@PWANWANWCOWCOXDOXDOYDMZEN^DOaEQeGQgGRjITlHTkGQmJQoJQqJOqHNsHO|JS‚MW‹Q_•Uc£[f¬_e´bd¿jeÎvlØ€hì•hûªsÿ¿ŽÿÈžöȧ߻¡Á¥¨‘’q€nbhVLTA:H5/A.*;'&6"#3!1!/!,*)(($"!                           """"""""%%&&''((''''''''''''&&%%&"&"'$(%(%(&*))'&$%"# !  !!!"$' )"-$/"/"0#/", )&$%#   "##! $      *2= @ @ <4. , (  "# $ & ' (' ( *, . 0 26A @<896 641 8 DOTSNL Z[_ck$m&j%g#n'-k)-k*.l+/i'+c#`b"e*b'f(m.n/e)]&Y(S&N$M#J!I I H!L Z#_%X(Q&M(L*D'8!-.4"G#m,˜*7º&4¸#68c *C6 +%,#,#)#'"%"(#,&.$- 1$/&'%+ .+*CJ*CJ(AH(AH(AH(AH*CJ*CJ+DK,EL,EL-FM-FM.GN.GN.GN,GP,GP,GP,GP,GP,GP.FP.FP0FQ1GR3GR3GR4HS5IT5IT5IR3LQ3LQ3LQ5MQ6NR8MR8MR:MQ;MQ=LO>MP@NQCNRDOQEPRHPRMQPOQNOQNOQNQQOQRMTPMTQLSNJRMITJHSJESHDSHBTICTIESIHRHIPFGOEFMCDNBBNBBNBBK@>L>=K=0?A0@C1?H3BK4DN6DR7FU9HV:IX9HX9HW;IV:HU;HU;HT:GS9FQ9FQ9FN8DN8DN8DN8DM9DM9DM9DM9DL:FL:FM;GM;GNK==L>=K=:7=96<85<85;74;74;74;74;74;74;74;74<85<85;74:6395284173062/32021/10.10.21/10.10.0/-10.0/-/.,.-+,+)*)')(&)(&*&#*&#*&#*&#*&#*&#*&#*&#+'$*&#*&#)%"($!($!($!($!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!($%($%($%($%($%($%($%($%$ !%!"&"#'#$($%*&'+'(+&*(#)(#*(#*'")'")(#*(#*(#*(#*(#*(#*(#*(#*(#*(#*(#*& ,'!-'!-(".(".)#/)#/)#/)#/)#/)#/)#/)#/)#/)#/'$/(%0'%0(%0(%0(%0(%0*$0*$0,$1,$1-%2-%20%30%31&4/'40*8.*82,:4,;8-;;/==/>@/?E3AH3BL6CO7ES8GV:IV:HV:HV:HV:HU;HT:GT:GS9FQ9FP8EO7DN8DN8DN8DM9DM9DM9DM9DK9EK9EL:FL:FM;GM;GNNY>OW?MX@NWANWCOWCNWCNZENZEN\EO_EPaFOeGQgGRgGRdEMgHPiJPjJOmHOpINyKUMXˆP]’Ta Ze©^e³cdÀkhÑxpÛ…ní›lü±zÿÆ–ÿÌ£óƥݻ Ä©–¯™‹£‘…“w|hafQLU@=K65C-/?),9#&7 &4#1 .,++%%"!                           !!!!!!!!!!!!!##$$%%&&&&&&&&&$&&&'''( ( )#*$+&-(/*0 +2"/1$.*''$%""   "#$%' ) **+, , , + + ,!+ )'''(''%#%')'%" !       $,2 34 3 /' $ ""' ,. -*!!  "#' ) - 96.,-2786;@CI OS&[&,d)+c''b&&`&%`&%b&&e%&f$&i"&m%)n!'k$r#)w*0r%+d$VT Y$^'Z#O M Q!Q$M#J!E@<::EKMKO!P&G%94%."0Dl ™&Ã'Ë#4¤?x5O7%#-$-#-"*"'!$!%")%,$.#-!*!+ 1"9"BB*CJ*CJ(AH(AH(AH(AH*CJ*CJ*CJ+DK+DK+DK,EL-FM-FM-FM+FO*FQ*FQ*FQ+FQ+FQ-EQ-EQ.FR.FR/ER0FS2ES3FT3FT1GR0KR/LR/LR1LS1LS4MR5LR8MR8MR9LP;MQK=M?>L>=L>=K=:7>:7=96;:6;:6;74;74;74;74;74;74;74;74=96<85;74:63952841730730320333333222000//////000000000///---+++***))))(&+'$+'$+'$+'$+'$+'$+'$+'$*&#*&#*&#*&#)%"($!($!'# )$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!($%($%($%($%($%($%($%($%$ !$ !%!"'#$($%)%&*&'+&*'"('")'")(#*(#*'")'")'")'")'")'")'")'")'")'")'")& ,& ,& ,'!-'!-(".(".)#/)#/)#/)#/)#/)#/)#/)#/'$/&#.%#.%#.%#.&#.&#.&#.&#.*$0*$0,$1,$1-%2-%20%3.&3-)7-+9/+90,:3-;6.=9.<:.D2@I4CM6FP8FS8GT9HU9HV:HU9GU9GT8FS9FR8ER8EP8EN6CN6CM7CM7CM7CM7CL8CL8CJ8DJ8DK9EK9EL:FL:FM;GM;GP>JP>JP>JQ?KR@LR@LR@LUAMX=NX=NV>LW?MV@MWANVBMWCNYENZEN\EO_EPaFObGPdFPeGQaCKdFNfINhINkHNnIPvKU}MY‡N]‘SbžWe¨\f²beÀmiÒ{rÞˆqò¤vÿº„ÿΟÿÐ¨ïÆ¦×·žÀ¦•­šŒ¢†”zlglWR]ECP88H/2D+/=$(;"&6 #3 0.,+&%$#                           !!" """" !          !!""##########%$$%& & '!'!*$+%,'.)0 +2"-3#02%/+((%&##  "#$%%%'''()+,- . -,+**+++(&()*(&# # #!  $(+ ()) &#   " % #$( ,. -(" ! !"% ( * . 00, +/369889 @ KPN!MWZZ!X !U"!U"!X ![!g%)k$*k 'h$l#*r-2j)-\#QN N O!J C E J!O&M%K$H#C!?:9BEFDGN#J$>=(4#0= Zz›¦*Ž6n0N 9 *"$',"+!'!% # $!'$)#.%-",07AP!W"*CJ*CJ(AH(AH(AH(AH*CJ*CJ*CJ*CJ*CJ+DK+DK,EL,EL+FM+FQ*FQ*FQ*FQ+FQ+FQ-EQ-EQ.FR.FR/ER0FS2ES3FT3FT2HU/JS/LR/LR/LR1LS2MT4MR5LR7LQ8MR:MSK=:K=:L=:L=:L>=L>=L>=L>=L>=L>=L>=L>=N@?N@?M?>L>=K=:7>:7>:7>:7<;7<;7<85<85<85<85<85<85<85<85=96=96<85;74:63952841653444555555444111///000111111000///...,,,***)))))'+'&+'$+'$+'$+'$+'$+'$+'$)%"*&#*&#*&#*&#)%"'# &")$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!($%($%($%($%($%($%($%($%%!"%!"%!"&"#'#$($%)%&)$(&!'&!('")(#*(#*'")&!(&!('")'")'")'")'")'")'")'")%+& ,& ,& ,'!-(".(".(".(".(".(".(".(".(".(".&#.$"-$"-$"-$"-%"-%"-%"-%"-)#/)#/+#0+#0,$1,$1/$2,&2+)7+*8++7.,90,:3-;5-:7,:<.=@0=D2@I4CM7DP8FR7FS8GU9GU9GU9GT8FR8ER8ER8EQ7DN6CN6CM7CM7CM7CM7CL8CL8CI7CI7CJ8DJ8DK9EK9EL:FL:FNJP>JQ?KS?KWLV@MWANVBMVBMYENYEN\EO\EO`ENaFOcEOcEO^CJ`ELcHMeHMhHMmHOuKU|NY„N\Ra›Wd¥\e±beÁnjÓ|sß‹s÷ª|ÿÃŒÿÔ¥ÿÔ«ìŤӵ›½¦”­›žƒ”ƒ{…pkr]ZcKKT;>K05E*/>%)<#'7!$3 0-++&&%$!                         "##$ $$$#!          !!""#######"#$$%& '!("(",&,&-(.)0 +1!,2"/3#.,)*''$# ! "$$$$####&')+,--,-,,-+-)((***' % %&&$!  #$"   ! $ $&'(, - *' $! # % ( + ./0--002 3 ;;BM X&Y'M FNRTRO"P# U#"Y##k-0m(-j!(g%h#(e'*\$%P T'N#K I EA CJ#J#J#J#G#B!=87?A?=BH"H$? <#1- 5 E X o |$s.b+M#>2(#! +"*!&!# " #!%$(#+"+,3=Kb's/*CJ*CJ(AH(AH(AH(AH*CJ*CJ)BI*CJ*CJ+DK+DK,EL,EL*EL*EP)EP)EP)EP*EP*EP*EP*EP.FR/GS0FS1GT1GT2HU4GU2HU.KS-KS/LT/LT1LS1LS3LQ5LR7KR7LQ9LR:MS;M>9M>;L>=L>=L>=L>=L>=L>=L>=L>=OA@OA@N@?M?>L>=J<;I;:G<:F::E;:E;:E;:D<:D<:B=:B=:?:7?:7>:7>:7<;7<;7<;7<;7:97:97:97:97:97:97:97:97;:8;:8:97986875764653653555777888666222000111222111111000...,,,+++***))',(',(%,(%,(%,(%,(%,(%,(%)%")%"*&#+'$*&#)%"'# &")$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!($%($%($%($%($%($%($%($%&"#&"#&"#&"#&"#'#$'#$'"&% &&!('")(#*(#*'")&!(% '&!(&!(&!(&!(&!(&!(&!(&!(%+%+& ,& ,'!-'!-'!-(".(".(".(".(".(".(".(".&#.$"-##-$"-$"-$"-$"-%"-%"-(".(".)#/)#/+#0+#0,$1+%1*)7(*7)+8,+9-+8/+93+:5*89+:=,LV@MV@MUALVBMYENZFO\EO\EO`EN`ENbDN`EN[AJ^EKaHLcHMfGLlIOtLU|NY„N\ŽQ`šVc¤[d°adÁnjÒ~tßwø®ÿÇ‘ÿÙªÿÕ­êÆ¦Ð´œ¼§–°ž’ŸŽ†˜‡€ŒwtzebiQQX>AM05D)0>%)<#'9 $5 /-**''%$!                       ! " #$ $ & & & & $!    !!"""""""!#"#%'!(")#)#-'-'.).)0*1+1-1!,- **''$$!! "$$$""!! !"$)*+,,..--,-+)),,*& & &()'%!!% ' !%#"       $ #')**)' % !  "$'+.01. .003 3 =AK!T&Z'Z'Q$Q VXU!O!!J" L$"R&%Z()k04i&-g (h!)d#)[#&Q!!N "W*P$K J"H!BAD CCD B ?:54;A"=!:<B$@$:7!.(,14?M"S %Q $H"A":$2"+%(!& # " " " $#'"&(+6BVw.*@*CJ*CJ(AH(AH(AH(AH*CJ*CJ)BI)BI*CJ*CJ+DK+DK,EL,EL*EN)FN*EP*EN*EP*EN*EP*EN/GS/GQ1GT1GR2HU2HS3IV3IT/JS.KS/JS0KT2KR3LS4KQ5LR7KR8KR9LS:MS;J?=L>=J?=L>=J?=L>=J?=PBAMB@N@?K@>L>=H=;I;:G<:D<:D<:D<:D<:B=:B=:B=:B=:>96>96>:7>:7>:7<;7?;8=<8:97:97:97:97:97:97:97:97<;9;:8:9788686766466655557678:89;679124/10013333222111000...---+++****)',(%,)$-(%,)$-(%,)$-(%,)$)$!)&!,'$+(#,'$)&!(# '")$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!)$!($%($%($%($%($%($%($%($%'#$'#$&"#&"#&"#&"#&"#% $$%% ''")(#*(#*'")% '$&&!(&!(&!(&!(&!(&!(&!(&!(%)# )%)$!*& *%"+'!+&#,(",&#,(",&#,(",&#,(",&#,#"*""*#!,#"*#!,#"*$!,$!*&#.&#,(".)#-)#/*$.*$0)&1))5(*6*)7++7-+8.*81+94)97*;9+:?.>C1AF4DJ5FL7FM6FT9HT8GT8GS7FS7FR6DR6DQ7DO5BO5BO5BM5BM5BL6BL6BK7BH6BG7BG7DH8CH8EI9DI9FJ:EJ:GJ:EK;HK;FM;IM;GNLU>NUAMUAMVBMZFQ[FO\EO\EO^DO_DM`DP`DP[AL]CL`GMbGLfGLiINsKSzOX‚NZŒR^™Wa£\d®bd¿nkÒwߎy÷®ƒÿÈ“ÿÚ«ÿÖ®ëÄ¥Ò´œ¿¨–³ ’£‘‡œ‹ƒ}w€kfmUUZ@AK14C(-<&):$'7 &2!.+)('&%"!                 ! !##$ $ $ $ $ #!     !"""""""!#"$&'!(")#*$.&.(.(.(0)0)0*/)0 *,&)#%" ! !#$&#$!!  #%))*+,+*)(.,)*++(& ''*--+(', + * &"      "%) ( &$# %  !$%),./- - /378 :@FGH KPY '_ (^!(W %L CBH P"$b.2^#)]&b#+a&,U#&O#$S&)Q'J!EF!F"?;;<===;6327 ;#:#8"9%=';%36#-)*"( "$ 09 ? AB#C'B);&4"+'#!!" $!'""$*7G\!ƒ 5¢4M)BI)BI)BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ+DK+DK,EL,EL,EL*EL,DN,EL,DN,EL,DN,EL/GQ/HO0HR0IP1IS1JQ2JT2KR1JQ1JQ2IQ3JR3JR4KS6JS8JT8JT9JT9JT:KSLU@NWBOXBOXEOYEOYFPZGPYGPYJQYJQYKRXKRXNSYNSYOTZPSXRQVRRTRRTRRTSQTTPQTPQUOOTNNSNKSKIRJHQGFOECMCAMD?LC>KB=LA=KB=K@K@CB>DC?DC?EA>D@=B>;A=:@<9?;8?;8>:7>:7=96>96=96@<9@<9@<9@<9>=9>=9>=;>=;;;;;;;<<<;=<;;=8:967937827:27:37:37:269267269457013013/10/10//////..,/.,2-)1,&2*'/*$1)&/*$2*'1,&.&#,'!.&#,'!.&#,'!.&#,'#*%")%")%")%")%")%")%")%")%")%"($!($!'# '# &"&"($%($%($%($%($%($%($%($%&"#&"#&"#&"#&"#&"#&"#&!%'"('"('"('"('"('"('"('"('"('"('"('"('"('"('"('"(%")$#)%")$#)%")$#)%")$#)$!(#"($!(#"($!(#"($!(#"($#)$#)$#+$#)$#+$#)$#+$#)$#+$#)%"+%")%"+%")%"+%"+(%0)&1)%3*'2*'2-'3.&5.&56+;7*<9,>=.A?0CA2EC4GG4GN7IP8HR:JU:KV9KS7FO3BM1@M1@N2AP4BQ7DO8BN7AL7@J6AF8ED:ED9GD:EE9GE9EE9GE9EJOS>OS>OT?NT?PU@OU@OUAMYCPZDP[CP[CP\DQ^DO_ER_ER`FScGUdIReGOdEJhEIlHLsHO~LU‡OX’U\›Y]§_`¶kfÊ{tÖ‰uí¨~ÿÅ’ÿÖªÿÒ­ðæݹ£Çªšµž«™‹¡‘„‘€v}lbiVPWB=K31B-,8%'2"%/$-"-"+ '$%"                                !!            !#"%')+!,"-#,"+#*")!*"+#-%0%0%1"0!.,*)(&&%%%##"   !!""#$%%&(*,--.,*)'(*,01454 0* $      ! " $$) ) ) ( ) )),4 4 1 0 2 7>A?IQ"S!NIINTU S!R#N #K!H GO"%O!$Q $P#P#N #N #N!&E#D#A!?;9769:<;;9746 3!0../1!0"/!- *(()* .!/29E!Q*R*K$>.+(%" "%$)1"; M"e+ƒ9˜'E)BI)BI)BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ+DK+DK,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL/HO/HO0IP0IP1JQ1JQ2KR2KR2IQ2IQ5IR5IR6JS6JS7IS8JT9JT9JT:KU:KU=KV=KV=KV>LWAMYBNZDNZDNZEO[EO[GOZGOZJQ[JQ[JQYKRZMQZNR[NR[PSZRSWSSUSSUSSUSQTSQRUQRUQRTPQSONSMMQLIQIGPHFNFDNFCMCAMD?MD?LC>LC>KB=KB=KB=QHCPGBOFAMD?KB=JACD?CD?CD?CB>BA=@?;?>:@<9@<9?;8?;8?:7?:7>96>96@<9@<9@<9@<9>=9>=9>=;>=;;;;;;;;<>;<>:;=9:<59:38;38<19<38<27;27:27:269269124013021021000/////-0/+3.*4-'2+%1*$1*$1*$2+%3,&.'!.'!.'!.'!.'!.'!.'!,'#)%")%")%")%")%")%")%")%")%")%")%"($!($!'# '# &"($%($%($%($%($%($%($%($%&"#&"#&"#&"#&"#&"#&"#&"#'"('"('"('"('"('"('"('"('"('"('"('"('"('"('"(%#(%#($#($#($#($#($#($#($#(#"'#"'#"'#"'#"'#"'#"'#"'$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)(%0+%1+%1+%1,&2,&2.&5.&54):5*;8+?:-ALW>LW>LWAMYAMYCMYDNZEO[EO[FNYGOZIPZJQ[JQYKRZMQZNR[NR[ORYRSXSRWSRWSRWUSXUSVUSVUSTVRSUQRUOQTNNRLLQKKRIJQIGQGEPFDPFDOECOECNDBNDBNDBRHFQGEPFDOECMCALB@J@>IA>FB?ED@ED@ED@DC?BA=@?;?>:A=:A=:@<9@<9?;8?;8?:7?:7@<9@<9@<9@<9>=;>=;======<<<<<<<=?<=?:>A9=@7;>5:=5:>3:@5:>49=49=38<48;37:23523523512422211111110.3/,3.*1,(0+'/*&/*&0+'0+','#,'#,'#,'#,'#,'#,'#,'#*&#*&#*&#*&#*&#*&#*&#*&#*&#)%")%"($!($!'# '# '# ($%($%($%($%($%($%($%($%&"#&"#&"#&"#&"#&"#&"#&"#'"('"('"('"('"('"('"('"('"('"('"('"('"('"('"(%#(%#($#($#($#($#($#($#($#("!&"!&"!&"!&"!&"!&"!&"!&$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)$#)(%0(%0*$0+%1,&2,&2-%4.&52'83(95)=7+?:-A!<:865488777787,*) ( ' ())('%$$%%&'&+7B"I%H!E:94.&!""#%&)0 = O"Z()BI)BI)BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ+DK+DK,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL/HO/HO0IP0IP1JQ1JQ2KR2KR3JR3JR5IR6JS6JS7KT8JT9KU:KU:KU:KU;LV=KV>LW>LW?MX@LXAMYCMYDNZDNZEO[FNYFNYIPZIPZIPXJQYMQZMQZMQZOR[RRZTSYTSYTSYVSZVTYVTYVTWXSWWRVXRVVPRUOQTNNULOTKLTJITJHSIGSIGRHFRHFQGEQGESIGSIGRHFQGEOECNDBMCALDAIEBGFBGFBFEAED@CB>@?;?>:B>;B>;A=:A=:@<9@<9@;8?;8A=:A=:A=:A=:?><>>>>>><<<<>==>@>?A;?B:>A9=@7<@8=C6=C7<@6;?5:>5:>59<59<45945745734644433333343140-4/+2-)0+'/*&/*&0+'0+'-($-($-($-($-($-($-($-($*&#*&#*&#*&#*&#*&#*&#*&#*&#*&#*&#)%"($!($!($!'# ($%($%($%($%($%($%($%($%&"#&"#&"#&"#&"#&"#&"#&"#&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'$"'$"'#"'#"'#"'#"'#"'#"'#"'"!&"!&"!&"!&"!&"!&"!&"!&#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"('$/(%0*$0+%1+%1,&2-%4-%40%61&72&:4(<7*>8+?:-A;,?D1DG2CJ3EL5GO7GQ6GQ4FP3EO3BN3BN4AL4AK5AI5@I5>E5?B8C@8E@8E@8EB7EB7EB7EB7EB6DC7EE7FG9HI;JJB+39(.5&+1"'0!&/ '.&*"'%"                                                   ""#$%'((+!+!+!+!,","-#/"3 $4 "3!2 1/...-+)'$#!      !!!%)++,++)(+-0356770- ) $        "#% ' * ++, . 3 79?>BEKL KHJIGGEDCBBCF!H#J $M %N%K '?<;9754397644678,*) ) (()'('%$$%%&$"%,6?"B!DED@7,% !$$$& , 7>)BI)BI)BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ+DK+DK,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL/HO/HO0IP0IP1JQ1JQ2KR2KR3JR4KS6JS7KT7KT8LU9KU9KU:KU;LV;LVLW?MX?MX?MX@LX@LXBLXCMYCMYDNZEMXFNYHOYIPZIPXIPXLPYMQZMQZNQZQQ[RRZRRZSS[UT\UTZWT[WUZWUZWUZXSYWRVWQUWQSVPTVPRVNLUMKUMKTLJTLJSKISKISKISKISKIRJHRJHQIGPHFOGEOGELHGLHGKGFKGFIEDFBAD@?B>=C?>C?>B>=B>=A=?=>>>@>>@<=?=>@>?C=AD=@E=@ED7<@6;?69>6:=67;67;67956866855755565351.50,3.*1,(0+'/*&0+'0+'-($-($-($-($-($-($-($-($+'$+'$+'$+'$+'$+'$+'$+'$+'$*&#*&#*&#)%"($!($!($!($%($%($%($%($%($%($%($%&"#&"#&"#&"#&"#&"#&"#&"#&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'$"'$"'#"'#"'#"'#"'#"'#"'#"'! %! %! %! %! %! %! %! %#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"(#"('$/'$/'$/(%0*$0+%1+%3,&4-$5-$50$82&:3';5)=7*>8)6C>6C>6C@5C@5C@5C@5CA5CB6DD6EF8GH:IJMT?NT?NU@OV@MV@MV>LV>KW?LW?LZ@KZ@K[AL[AL]AOaCOcEOcEMdDIhEIoHMtIP~MSŠSY—Z_¡_a«d`¶lcÄxk΃lávø»ÿʥ「Ө—ÁŸ•¸›—°˜˜¬˜š¥’–š‡‰v|u`i^IRK3@?)5:)16',2#(0!&0!(.&+#'& "                                                        !!"#$%%&))* +!+!,","- 1"2 110/...-+)'$#!      #(**,**))-.045666. , ) % "         "$ & ' &(()- / 2 5 @ >@DK$N'L%I"DBB@?@>>=>C!F#H$I%J$H$=987543275422455-+++++((*('&%&'&!"+2:>N%O%M#D 4( "$$#$&,1)BI)BI)BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ+DK+DK,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL/HO/HO0IP0IP1JQ1JQ2KR2KR4KS4KS6JS7KT8LU8LU9KU:LV;LV;LV;LVC?>B>=B>=A=<@?=@?=@>?@>?@>??????A>?A=>@>?C=AD>AF?BG?BG>AFB8=A8;@7:?9:>89=89;78:88:77977787573061-4/+2-)0+'/*&/*&0+'.)%.)%.)%.)%.)%.)%.)%.)%+'$+'$+'$+'$+'$+'$+'$+'$+'$+'$+'$*&#*&#)%")%"($!($%($%($%($%($%($%($%($%&"#&"#&"#&"#&"#&"#&"#&"#% &% &% &% &% &% &% &% &% &% &% &% &% &% &% &#!&#!&"!&"!&"!&"!&"!&"!&"!&! %! %! %! %! %! %! %! %"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'&#.'$/'$/'$/*$0+%1+%3+%3,#4-$50$81%92&:3';5(<5(:<+>>+>A/?F1BJ3EN5HP7JQ9IP5FM5CL4BI3@G3>E4>E4>B5??5@=5B=5B=5B?4B?4B?4B?4BA5CB6DD6EF8GH:II;JMMT?NT?NUAMV@MV@MV>KW?LW?LW@JZ@KZ@K[AL\@L]>M`BNbDNcDJdCJhEKoHMuJQ€OU‹TZ—Z_¢`a¬e_¸ncÉ|lÒˆoç¦~ø½‘ýǣ淛ʣ’¼›’´›—­—™§”š¡–—ƒŒ†r}r\h\FSK3C?)6:)15&+2#(0!&0!(.&*"'& #                                                                 !!"###&')* * * * *./..--,,,+*(&$#!           "&**+**)(,-045431, * ' % "             ! " $ #$&') + / / 778;A C!B ??<;;::;<9<@C!E"E!CA9574412042313142-++,,+(()('&%&'& !)16K&Q&P%J!;.#!#&&$%%'()BI)BI)BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ+DK+DK,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL/HO/HO0IP0IP1JQ1JQ2KR2KR4KS5LT7KT7KT8LU8LU:LV:LV;LV?@>?@>?@>???A??A??A??A?>C>?C=>BAF?BI?DJ?DJ?DJ>CI>EM>EM>CI=BH;@F9>D999;99;99;97884362/40-1-*/+(/+(.*'.*'-)&-)&-)&-)&-)&-)&-)&-)&,(%,(%,(%,(%,(%,(%,(%,(%,(%+'$+'$*&#*&#)%")%")%"($%($%($%($%($%($%($%($%&"#&"#&"#&"#&"#&"#&"#&"#% &% &% &% &% &% &% &% &% &% &% &% &% &% &% &#!&#!&"!&"!&"!&"!&"!&"!&"!& $ $ $ $ $ $ $ $"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'%#.%#.&$/&$/(%0(%0*$2+%3,%5,%5.%8.%81%92&:3';4'98)<;*<=,>B/BG2EL5GO8JQ:JO7GM6FJ4AG3?D2>C3>C3>B5??5@=5B=5B=5B?4B?4B?4B?4BB6DB6DD6EF8GG9HH:IL;KL;KQ?MS>MS>MT?NU?LV@MW?MW?LW?LW?LZ@KZ@K\@L\AJ]BK]AM\=L_AMbBMbCIdCJiDKpGMwJQƒPWŒU[—[]¡`^¬f^ºpcÍ€n×pð¯…û•úơ߳–ġޏ›“³›™¬˜š¥‘šŒ–”€‹„p|q[h]GTL5EA-99(05&+1"'/ %/ '-%*"&'!#  !                                                         !!!!$%')))((++++****))('%$#"                %(*+++**,.24421/) ' ' % # !            $&' ) * , . - .0 2 5759765567979=AA@>;6332200/0/11200/( ()*('&% '&$##$#$"'. ?H!K"H!>2(%''&&&&%%)BI)BI)BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ+DK+DK,EL,EL,EL,EL,EL,EL,EL,EL,EL,EL/HO/HO0IP0IP1JQ1JQ2KR2KR4KS5LT7KT8LU8LU9MV:LV:LV;LVA@>A??A??A??A>?C>?C>?DAH?DJ@EK@EK?CL?CL@GO?FN?CL>CI::<99;99965373040-2.+0,)/+(.*'.*'-)&-)&-)&-)&-)&-)&-)&-)&,(%,(%,(%,(%,(%,(%,(%,(%,(%,(%+'$+'$*&#*&#)%")%"($%($%($%($%($%($%($%($%&"#&"#&"#&"#&"#&"#&"#&"#% &% &% &% &% &% &% &% &% &% &% &% &% &% &% &#!&#!&"!&"!&"!&"!&"!&"!&"!& $ $ $ $ $ $ $ $"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'%#.%#.%#.&$/'$/(%0*$2+%3,%5,%5.%8.%81%92&:2&:3';5(:7*;:,=?.@E2EI6IO:KQA5?>3A<4A<4A<4A>3A>3A>3A>3AB6DC7ED6EF8GG9HH:IK:JL:JS>MS>MS>MT@LU?LV@MW?LW?LX@MXAKZ@K[AL\AJ]BK]BK]BK\>J^@LbBMcBKeBIiDKpGOwJQ„QZŽU\˜Z]£_^®e^¾rdуmÛ’rõ¶ŠüÆ—õÅÙ°’¿ž·œ“±œ›«˜œ£’šŒ–”€‹ƒozq[h^HUN8ED0;8'/4%*0!&/ %.&-%)!&'!#  !                                                        "$&(((&&())))(((''&&%$##                %()+++**+-2342/-& & & $ " !            !#% ( ) * ..0013656322246748<===:6422100//-.0110.,% % ' &&% # ! %#"! !  !! #& 2:B C <4+(**'&##!  )BI)BI)BI)BI)BI)BI)BI)BI(AH(AH(AH)BI)BI*CJ*CJ+DK+DK+DK+DK,EL,EL-FM-FM.GN/HO/HO0IP0IP1JQ1JQ2KR2KR3JR3JR6JS6JS7KT7KT9KU9KU:KU:KU;LV;LV>LW>LW?MX?MX?KW?KWAKWBLXBLXCMYDLWDLWFMWFMWFMUGNVIMVJNWJNWJNYLN[LN]MO\NP]QP^RR^SS_SS_SQ\TR]UR]VS\WT]XU^[U_\W^\VZ[UWXRVVPRUOSUOQVPTVPRSMQTNPTNRUOQUOSUOQTNRTNPWNQXORYPSWQSUOQQKMLHIIEFGEFGEFEEEEEEDDDCEDBDCBDCAACA@EA@EA@EABFABGABG?BIBK@DMBFOAHPBISBISBISBIQDHQCGP@DM>CIC;C?>C=2><2=;1::0980=80=91>:2?=2@>3A?4B?4BD8FC7ED6EE7FG9HI;JMNT?NV@MV@MWANYAOZBO[CP\DQ[AL[AL\@L\AJ\AJ\AJ^@H^@J`@M_?L_>I`?HeBIlDLsHQyJR‚MWT[š\_¤`]­d[½qaÔ†oâ™xý¿ûÇ—òŜڶ–æ”´ž“«™—¤“™ŸŽ–›Š”’~‰€ktjT`XBNL8CE4<:+05&+.$* )!)!( &$#"!                                                                   !"$&'''(**(&%&'(&&%$#"! ! "!!           !!&&$$& (+,///..--,(%$ # !            "#&( ( () + .12.///-169="; :75554310//012..-+* ) ( % & % &((%$# " ! " !!"!%"$## "  ! " % +32.,272/(# !! )BI)BI)BI)BI)BI)BI)BI)BI(AH(AH)BI)BI*CJ*CJ*CJ+DK,EL,EL,EL-FM-FM.GN.GN.GN/HO/HO0IP0IP1JQ1JQ2KR2KR3JR3JR6JS6JS7KT7KT9KU9KU:KU:KU;LV;LV>LW>LW?MX?MX?KW?KWAKWBLXBLXCMYDLWDLWFMWFMWFMUGNVIMVJNWJNWJNYKMZLN]MO\NP]QP^RQ_SS_SS_SQ\SQ\UR]VS^WT]XU^[U_[V]\U\[UYYSWXRVVPTUOSUOSUOSSMQSMQTNRUOSUOSUOSUOSUOSWNSXORZQTZQTXORSMONJKLHIHFGHFGFFFEGFDFEDFECEDCDFBAFBAFBAFABGABGBCH@CJ@CJ=@G=AJ>BK@DM@GQAHRBISCJTCJTCJTDHQCGPAEN>BKE==E;=B?>C=:2=92:80;7/<80=91>:2?=2@>3A?4B?4BC7EC7ED6EE7FG9HI;JMLT@LU?LV@MWANYANZBO[CP[DN[AL[AJ\AJ\AJ\AJ\AJ^@H^@H`@K_?J`?Hb>HfAIlDMsHQyJTƒNXS[šY]¤_Z®dYÁt`Ø‹oèž{ÿ“ýËšóǠܹ›Ä©–³Ÿ–¨˜˜¡’——™ˆ’|…jsjU\WDJI8>D399*/4%*-#))!( '%##"!                                                                    !#$&'('())'%%%&'&&%$#"!                !!%%%$'(+,//..--,*%%$ # !             !!& & % & ) ).-,,00.047; 9965443300,-+.,.+,)* ' ( % % $ % &%$# ! ! !   ! !%!%!& %#" ! #***.5@ B!<.#")BI)BI)BI)BI)BI)BI)BI)BI(AH)BI)BI)BI*CJ+DK+DK+DK-FM-FM-FM.GN.GN/HO/HO/HO/HO/HO0IP0IP1JQ1JQ2KR2KR3JR3JR6JS6JS7KT7KT9KU9KU:KU:KU;LV;LV>LW>LW?MX?MX?KW?KWAKWBLXBLXCMYDLWDLWFMWFMWFMUGNVIMVJNWJNWJNYJNZJNZKO[LP\NP\OQ]RR^SS_RR\RR\TS[UT\WT]XU^YV]YV][V\[V\[V\YTZWRXUPVSNTRMSRMSRMSRMSSNTTOUUPVVQWWQUWNSYNT[PV[RWZQVVPTRMQQLPJHKJHKHHJGHJFGIDHICGHCGHCDHCDICDICCKCCKADKADMADM>BK>BM?CN>EO@FRBHTBJUCKVDKUDKUEITDHSBFO?CL=@I>F<=C?>D>=B<<><:;;:887565343143143143110.0/-0/-/.,.-+-,*,+),+)/+(/+(0,)0,)1-*1-*1-*2.+1-*1-*0,)0,)/+(/+(.*'.*',()+'(*&')%&)%&*&'+'(,()'#$'#$'#$'#$'#$'#$'#$'#$'"(&!'&!'% &% &$%$%$%$%$%$%$%$%$%$%" %!$ $ $ $ $ $ $ $"!&"!&"!&"!&"!&"!&"!&"!&"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'##-##-##-$$.%%/%%/&$1'%2($3($3*#5+$6,%7,%7,%7-&8.'9/(:1*<4+<9.?1B?2CA3D@4B?3A=2@:2=82<71;71;7/<7/<80=91><1?=2@>3A?4BC7EC7ED6EE7FF8GI;JMKW?LX@MYANZBO]CN]CN\@L\AJ^@J^@H^@H^@H^@H^@H`@K`?Jb>Hc?IgBJnDNsHRyJTƒNXŽRZ™YZ£^Y°fYÅybà‘s鹿ÿÄ—ýÍŸôɦݻ Ã¬œ³¢›¦—š™šŠ•–„y„}hoiTYVCGH89B448).3$)-#)( '%###"!                                                                   !#$&'('(''&$$$%%&%$#"!                 !!$$%%')-.//..,,)($$#" !            !  % % $ $ & '))*-111125984321210.,))'( '*))'' % % $ ! " " # # "        %&&&$ $  !#'/;G#V+N$:(   !)BI)BI)BI)BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ+DK+DK,EL-FM.GN.GN/HO/HO0IP0IP0IP/HO/HO0IP0IP1JQ1JQ2KR2KR3JR3JR6JS6JS7KT7KT9KU9KU:KU:KU;LV;LV>LW>LW?MX?MX?KW?KWAKWBLXBLXCMYDLWDLWFMWFMWFMUGNVIMVJNWJNWJNWJNYJNZKO[LP[NP\OQ]RR^RR\QQ[QQYSRZTS[VS\WT[XU\YV]\W]\W]\W]\W]ZU[VQWSNTQLRSNTRMSRMSSNTTOUUPVWRXYRYXNVZOU[PV\QW\SX[RWWQUUPTMKNKKMKKMIJLGKLFJKFJKFJMFGLFFNEEMEEMCFMBELBENAEN@DO@DO>EO?EQ@FRBHTCKVDLWEKWELVFJUEITCGP@DM>AJ=@I??G==E:;@;=C?>D?>C==?<:;;:887565343143143143143132021/10.0/-.-+.-+-,*1-*1-*1-*1-*2.+2.+2.+2.+3/,2.+2.+2.+1-*0,)0,)0,).*+-)*+'(*&'*&'*&'+'(,()'#$'#$'#$'#$'#$'#$'#$'#$'"('"('"(&!'% &% &% &$%$%$%$%$%$%$%$%" %!$ $ $ $ $ $ $ $"!&"!&"!&"!&"!&"!&"!&"!&"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"",##-##-$$.$$.%%/&$1&$1'#2($3*#5+$6+$6,%7,%7,%7,(9-):0);2+=5,=9.?;.@1B=2B=2@:2?82<63<52;52;60<7/<80=91><1?=2@>3A>3AB6DB6DC5DD6EF8GH:IL;KO=KT>KU=JV>KW?LX@MYBL\BM]CN\AJ\AJ^@H^@H^@H^@H^@H_@H`?Ja@Kc?IeAKjBKoEOsHRzHS…MZQY™WY¤_X³j[Ê~fæ—xôªƒüÁ—ùÊ ïÆ¦Ù»£Â¬Ÿ±£ ¥˜Ÿœœ•‡–’€Ž‡s~wbkePUTACG77@226'*2#(,")( '$"#"!                                                            !"$%&'&'%%%$####%%$#"!        !!"      !!##$%(*,-..--++( '$"" !                      % % % % % % & & )-1321145422101/+*('& & & ''''& % % $ "  !           $$&%%#$0= L']-W(B /!   )BI)BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ+DK+DK,EL,EL,EL-FM.GN.GN/HO/HO0IP0IP0IP/HO/HO0IP0IP1JQ1JQ2KR2KR3JR3JR6JS6JS7KT7KT9KU9KU:KU:KU;LV;LV>LW>LW?MX?MX?KW?KWAKWBLXBLXCMYDLWDLWFMWFMWFMUGNVIMVJNWJNWJNWGNXGNXJNYKOZLP[MQZOR[ORYPPXQQYRRZSTYUTZVUZWV[XV[\W^\W^]X_]X_[V]XSZUPWSNUUPWTOVSNUSNUSNUUPWWRYYRYZOW\OX]PY]RZ\RZ\RZYRYXSYOMRNMRNMRLMQJNQIMPHMPHLOIIQIISFIREHQEHQDGPCGRBFQCGS@FR@FR?ES?GTAIVCKXEMXFLXFLXGKVFJUDHSAEP?BK>AJAAI>>F::B::B>=C@?E?>D>=B::<888666444222111111222555444444222111000////.,3/,3/,3/,3/,2.+2.+2.+2.+40-40-3/,3/,2.+2.+1-*1-*0,-/+,-)*,()+'(+'(,(),()($%($%($%($%($%($%($%($%(#)'"('"('"(&!'% &% &% &% &% &% &% &% &% &% &#!&!$ $ $ $ $ $ $ $"!&"!&"!&"!&"!&"!&"!&"!&"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"", #, #,!$-##-$$.%#0&$1&$2&$2'#4($5*#5+$6+$6,%7,(9+(9-):1*<3*=4+<7,=7,=;0@;0@;0>91>71=52=52=41<5/;6.;7/<80=;0><1?=2@=2@B6DB6DC5DD6EE7FH:IL;KNKW?LZ@K[AL]AM]BK\AJ\AJ^@H^@H_@F_@F_@F_@H`?Ja@Kd@JfBLlDMpFPvHSzHS†N[ŽRZœZ\¨c\¹p_Ѓiè™xõ«„öº•ñÁ澤г¡½©¢­¡£¤˜¢šŸ’ƒ–ŒyŒjzqYf_JQQ>@D65=115&)1"',"* )!'$!""!                                                              "$%%%%#$$$$#""$$#"!        ! " " #    ! ! " !"#$&)*,-. . , , * * ' $" !            !"## $ $ $ % % $$$& )/3421132 200/--,% # " " # $&'# # # # " " " !           "##$" #-8G#W(U&E!6("   )BI)BI)BI)BI)BI)BI)BI)BI*CJ*CJ*CJ+DK,EL,EL,EL-FM-FM-FM-FM.GN.GN/HO/HO/HO/HO/HO0IP0IP1JQ1JQ2KR2KR3JR3JR6JS6JS7KT7KT9KU9KU:KU:KU;LV;LV>LW>LW?MX?MX?KW?KWAKWBLXBLXCMYDLWDLWFMWFMWFMUGNVIMVJNWJNWJNWFMWGNXJNYKOXLPYMRXORYORYPPXPQVQRWRSWTSXUTYVUZVUZZW^\W^\W^\W^[V]ZU\XSZWRYXSZWRYTOVSNUSNUTOVVQXXQY[PX\OX]PY]PY\QY\RZZSZYTZTOUQPUPOTOPTLPSKPSJORJOSJMTKKUILUHKTGJSFIRDHSDHSCIUBHTAGU@FT?GTAIVDLYFN[GMYGMYHLWGKVEITBFQ@CL?BKBBL>>F;;C::B>=C@?E@?E?>C::<99966644422222222222266666655544433322222211/51051.40-40-3/,3/,3/,2.+40-40-3/,3/,2.+2.+1-*1-*1-.0,-.*+-)*,(),(),(),()*&'*&'*&'*&'*&'*&'*&'*&'(#)(#)(#)'"('"(&!'&!'% &% &% &% &% &% &% &% &#!&!$ $ $ $ $ $ $ $"!&"!&"!&"!&"!&"!&"!&"!&"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'!"'!!+ #, #, #,##-$$.%#0%#0%#1&$2'#4'#4*#5+$6+$6)%6+(9+(9-):-):0);2)<4):4)::/?80?80=60<41<31<31<41<4.:6.;7/<80=;0><1?=2@=2@A5CA5CB4CC5DE7FG9HK:JNKY?JZ@K\AJ\AJ\AJ\AJ^@H^@H_@F_@F_@F_@F`?Ja@KeAKgCMmENqGQvHSzHT†N[‘T\ ^`°icÃwgÕˆlèšvï§ð´’縚ڴŸÆ¨³Ÿž¨›¤ž“£–Šž˜‡tˆybtgO]XCJM:>B44<005&)2#(.$+!*"( $!!!                                                              !##"##$%%%#"! $$#"!       ! ! ! !     ! ! " !! %'),-, - - + + ) ' % # !           !#% % % # $ % '%&%',03411 1 30 1 1/.+*(!  ! # %'(" " " ! ! ! ! !           !!!!  # *2<HG>3+$!  )BI)BI)BI)BI)BI)BI)BI)BI*CJ+DK+DK+DK,EL,EL-FM-FM,EL,EL,EL-FM-FM.GN.GN.GN/HO/HO0IP0IP1JQ1JQ2KR2KR3JR3JR6JS6JS7KT7KT9KU9KU:KU:KU;LV;LV>LW>LW?MX?MX?KW?KWAKWBLXBLXCMYDLWDLWFMWFMWFMUGNVIMVJNWJNWJNWFMUFMUGNVHOWKOXLQWNQXORWNQVNQVQRWRSWTSXUUWVVXVUZZW^ZW`YV_XU^XU^YV_ZW`ZW`YV_WT]TQZQNWPMVQNWSPYWPX]RZ_OY]PY\OX[PXZPXYRYXSYVQWSRWRQVQRVNRUMRULQTLQULOVKNWKNWILUHJVGIUEIUEIUEKWDJVAIV?GT@GWBIYDK[FN[HNZHNZIMYHLXFJUCGRACO?BKCCM??I;;C::B=;;;99966655544444444466666666655555555555555362162/51.51.40-3/,3/,3/,40-3/,3/,3/,2.+2.+1-*1-*3/02./0,-.*+,(),(),(),(),(),(),(),(),(),(),(),())$*(#)(#)'"('"(&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'$"'!$ $ $ $ $ $ $ $"!&"!&"!&"!&"!&"!&"!&"!&"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'"!'!"'!!+"+ #, #,##-##-##/$$0%#1%#1'#4'#4($5($5*#5)%6+(;*);+(9,(9/(:/(:0'80'86.=6.=6.=60>41<31<31<31<4.:5-:6.;7/<:/=;0><1?=2@A5CA5CB4CC5DD6EG9HK:JM;IS=JTIY?JZ@K\AJ\AJ^@H^@H^@H^@H_@F_@F_@F_@F`?Jc?KeAKhDNnFQqGSvHUzHT†N[“V^¥cd·qiÊlØ‹oå—qè xí°“â²›Ñ¬œ»ž˜©–šž’ ”‹ ƒœ™„p‰qYo_GWQLU>LU?MV?MVAKUAKUBJUCKVCKVDLWDLWELVFMWFMWFMUGNVIMVJNWJNWJNWHLUFMUIMXJNWKOXMPYNQXNQXOOWPPXQRWSRXTSYUTYVSZWT[ZW`YV_XU^WT]XU^ZW`\Yb]Zc[XaYV_UR[QNWRLVRLVTNXVNY\R]]Q[\PZZPYYOXYOWXQXXQXWRXURYSRXRSXORYNSYKRXKRZLPYMPYLOXJMVIKWHJVFJVEIUIMYEKWBHT@FTAGUCIWFLZHN\HN\JNZIMYHLXFJUCGRBDP@CLCCM??G;;C::B<C>=B;:?98=76;77977977955766866866866866677777753453462351240140/3/03/.3/.3/.3/.2.-2.-1-,1-,2,,5//3-/1+-/)+.(*-')-').(*.(*.(,.(,.(,.(,.(,.(,.(,)$*)$*(#)(#)'"('"(&!'&!'&!'&!'&!'&!'&!'&!'&!'&!'!$ $!$ $!$ $!$ $#!&"!&#!&"!&#!&"!&#!&"!&"!'!"'"!'!"'"!'!"'"!'!"'"!'!"'"!'!"'"!'!"'"!'!"'!!+!!+!!+"",#!,$"-$"/%#0%#0&"1&"1'#2'#2($3*#3)%4+(9+(9+)7,(7.'7.'7/&7/'65-<6.=6.=5/=5/;41<41<41<5-:7,:8-=9.<:/=;0><1?<1?A5CA5CB4CB4CF5EH7GL:JO:IRIZ>J[@I]?G^@H_@F_@F_@F_@F_@F_@F_@F_@H_@Ha@KdCLiEOlFQrHRvHSzHS†NW“X\§geºxlÉ…pÖqß—qßz籗ܱ Ì§ž´˜—£Ž—›Šœ’‚œ‹{–‘}™ƒlˆnUkZATM7CF37A12>006'*3$)0!&.$-%*"&"!                                                            #%'''%#! ##"!     #" " !         ! ! " " "#&(*++* * ) ' & % $ " ! !            ! # """!!!!# & )+++,0230 ..0 3 0 0 /.+($ " %$# " " # $ $  ! !  !             " " " ! ))(&&&))&>J&>H'?K'?I(@L(@J)AM)AK+CO+CM+CO+CM+CO+CM+CO+CM/GS.FP,DP+CM,BO-CN/ER0FQ0FS2FQ3FT3GR4GU4HS6HV5IT5IR3JR4KS4KS7KT7KT9LS9LS8KR8KQ9JQ:KRKSCLUDKUELVELVFMWFMWGNXIMVIMVIMVIMVIMVIMVIMVIMVIMVIMXIMXKMZKMYLNZNNZOO[OO[PN[QO\QO\SO]TP^UR]XR`WT_WT_WU`WU`XVaZWb[Xc\Yd]Ze]Wc]Wc]Wc]Wc\TaZR_XP]WO\XR`VR`VS^WQ]WQ[XQYXQYXQYXQYVPZSQ\RR^PR_ORaLRbLRbPT`PR^OQ]NP\MO[KMYJLXJLXHJVFJUEITEIUEIUFJVHLXHLXLO^KM\HJWEGTCERBDPACOADM@CL@CJ@CJ@CH@CH@DGBCGBCH?=H?=J?=H?=H=;F;:B98@87?98>87=76;76;76;88:::<::<98>98>96=85<74;6495295387286177157156045/35/17.15,-5,-5,-4+,3*-3*-3*/2).1(-1'/1'/1'/1'01'01'21'0*#**#**#**#*+$++$++$++$+*#**#*)"))")(!((!(' '&!''")%")'")$!(&!(# '% '# '#%!%#%!%#%!%#%!% !&!& %$$ % !&!&!"'"'!"'"'!"'"'!"'!"'" +# +# +$!,$!,%"-%"-&#.)&1+%3+%3+%3+%3+%3+%3+%3'#1($2)%3,&4-'5.(6/'60(55*86+96+97,:9.<:/=:/=;0>9,=:,=:-?:->;.?;.?;0@;0@A5CA5CB4AD4AG5CK6EO8HP:GR;KS;IVD_?D`@EdAEc@D`@E_?D^?E^?E^@H]BIZ?F]BIbDLfENjEMpGOyJR€MRVYœb`®ti¼oÁ‡oÇŒnΔoÒ}Ö­™Ò°¦Æ§¤´•š¤ˆ–ž‚˜•{–Žs’u”~adHaP7JI1>F18@,.:')7'*7&,5$*2!'-$("                                                        "####"###""! !  ! ! ! ! ! ! ! !      "$')++*)%"!       !"             ! ! ! $ % ' ( ),,20/- + + , , (' & ' ' ' &&" " " !     $$#" !                    %## ( /56 5 &>J&>J'?K'?K(@L(@L)AM)AM+CO+CO+CO+CO+CO+CO+CO+CO.FR.FR-EQ,DP-CP.DQ/ER/ER2ES2ES3ES4FT4FT5GU6FU6HT5IT3JR3JR4KS6JS7KT8KR9LS8KQ8KQ9KO:LPKQDKSFJSFJSGKTGKTHLUHLUIMVIMVIMVIMVIMVIMVIMVIMVIMVJLYJLYJLYKMZMLZNM[OM[PN\PN\PN\RN]SO^VO_WP`XQaVR`WSaVT_WU`XVaZWb[Xc\Yd\Yd]Wc]Wc^Vc^Vc\Ta[S`[P^WO^TR`SR`TR_TQ\VPZVPZVOWVOWVNYUOYSP[QP^OPbOReMRfMRePSbQS`PR_OQ^NP]LN[LN[KMZIKXIKXHJWGIVGIVHJWJLYJLYLN]JL[HJWEGTCERBDPADMADMADKADKADIADIAEHAEHAEFCDIB@MB?PB@NB@NA?L?=J=;F<:E:9A98@87=76<76;87<::<:9>;:B:8C:8C98@96?85>74=63:7297287077076/66047.37.16,-6,+6,-5+,5*.4)-4)/3(.4)14)14(24(24(44(44(63)4,"+*#**#*+$++$++$++$++$+*#**#*)"))")(!((!(' '' ''")'")&!(&!(% '% '% '$&#%#%#%#%#%#%#%!%!"'!& %$$ %!&"'"'"'"'"'"'"'"'!"'# +%+& ,& ,'!-'!-'!-(".+%1+%1+%1+%1+%1+%1+%1+%1(%0(%0+%1,&2-'3.(40(50(55*86+96+97,::.<;/=;/==/><+>=,?;,?<-@;.?A5CA5CB4AD4AG5CK6EO9FP:GQ:JRC`=Ca>Bd@Bd@Ba>B^>A^=D^?E^@H]BI]BI`CHbCIfCJlDLtJNQT‰WX™d`£mc®yi¶‚lº‡l¾‹lÆ”sÈœͬǪ¤½ŸŸ­Ž”£„“Ÿ”—y“rŽ‹l‹y[w`D[P5HH0=F/7A+.;')9&*6%+4#)1 &,#'"                                                       ! ###""##""! ! !  ! ! ! ! ! ! ! ! !   ! #%',,-*&$!      "! !                ! $ & * +-.1/-+ ) ) * * % % $ % & ' % %" ! !      #" " !                    !" ( 28: : &>J&>J'?K'?K(@L(@L)AM)AM,DP,DP,DP,DP,DP,DP,DP,DP,DP,DP-EQ.FR/ER.DQ-CP-CP1DR2ES3ES4FT4FT5GU6FU5GS4HS3JR5IR6JS6JS7KT8KR8KR9JQ9JQ9KO:LPKQCJRFJSFJSGKTGKTHLUHLUHLUHLUHLUHLUHLUHLUHLUHLUHLUIKXJLYJLYKMZMLZNM[OM[OM[PN\PN\RN]SO^VO_WP`XQaVR`WSaVT_WU`XVaZWb[Xc\Yd\Yd]Wc]Wc^Vc^Vc]Ub[S`[P^XP_TP_SQ_TP^SP[UOYUMXWMVVLUSLTSMWQNYQO]QP`ORcNSfNSfQTeRTcQSbPRaOQ`NP_NP_MO^LN]KM\JL[IKZIKZJL[KM\LN]LK[KJZIHVFESEEQDDPDDNDDNDDLDDLDEJDEJDEIDEIDEIDEJECPFBQGCRFBQEAOD@NB?JA>I<9B;8A:7>96=97<:8=;9<<:?<;A<;C<9B;8?:7>96=:5<:5;8188268267159058/28/27.17-.6,+6,+6,+5+,5+,4)-4)-6+16+36*46*46*46*46*65+4.$,,&*,&*,&*+%)+%)+%)+%)*$(*$()#')#'("&("&'!%' ''")'")&!(&!(% '% '$&$&$&$&$&$&$&$&$&"&!"'!& %$$ %!&"'"'"'"'"'"'"'"'!"'# +& ,& ,& ,'!-(".(".(".+%1+%1+%1+%1+%1+%1+%1+%1(%0(%0+%1,&2-'3.(40(50(55*86+96+97,::.<;/=;/==/>=,?=,?;-><.?;.?<1?@5CA5AA5AB4AF6AI7CL:FO;GP:GQ;HT:GV;DZB^>A^=D^?E^@H`AIdCJhCJjBJkBHrEJ|NP‹YX•b^¤og©uh®{h®~g²ƒi¸‹nÁ”uÛȨ¿¡Ÿ²”–¥†ŽŸ€œ}’tŒ‰k…a}oQkZ>TL1BF.;D-3@*-;')8%)5$*3"(/$+"&!                                                         ! "##"! #"""!    ! ! ! ! ! ! ! ! "! ! "#$&(,,,)&#       "#" ! !             # & * ,.//., * ( ( & & $ $ $ $ # # # $                               ! ' /6 8 : &>J&>J'?K'?K(@L(@L)AM)AM,DP,DP,DP,DP,DP,DP,DP,DP*BN+CO-EQ.FR/ER.DQ,BO+AN1DR1DR2DR3ES4FT4FT5ET5GS4HS2IQ4HQ5IR6JS6JS7JQ8KR9JQ9JQ9KO:LPKQCJREIREIRFJSGKTGKTGKTHLUHLUHLUHLUHLUHLUHLUHLUHLUIKXIKXIKXJLYMLZMLZNLZOM[OM[OM[QM\RN]UN^VO_WP`VR`VR`US^VT_WU`YVaZWb[Xc\Yd\Vb]Wc^Vc^Vc^Vc\Ta]R`ZR_UQ_TP^TQ\UOYUMXTMUUKTUKTRKSSKVRLXRN\QP^PRaPSdQTeSThSTfRSgQRdQRfPQcOPdOPbOPdNOaLMaKL^KL`KL^LMaMN`KJZJIYHGUFESEEQEEQFFPFFPFFPFFNFFNFGLFGLFGKFGKGFLGCQGCRHDSHDRGCQFCNDALC@K?;D<9@;8?;9>;9><:==;@<;A<;A<9@;8?:7>97<:5;:59937937937824:149039039018.-8.-7-,7-,6,-6,-5*.5*.6+16+16+36*46*46*46*45+4.(,.(,.(,.(,-'+-'+-'+,&*+%)+%)*$(*$()#')#'("&("&'"('")&!(&!(% '% '$&$&$&$&$&$&$&$&$&"&"#("'!& % %!&"' #( #( #( #( #( #( #( #("#($!,& ,& ,'!-'!-(".(".)#/+%1+%1+%1+%1+%1+%1+%1+%1(%0)&1,&2-'3.(4/)51)61)65*86+96+97,::.<;/=;/==/>=,>?,@>-?<.?B^>A^?D_@F_AIbAHkCKnCJqGKuHK}MMˆWS•c\k`¤se¨wf©ye§yb¬€g¶ŒsÁ˜|Àœ†Ã¢›¶˜š©Š €‹›|‹–w‰‡j~|_uqSkdG]S8KI.=C,6B+1?),:&(6#'3"(0%-") %!                                                         ! """! ! """! !    ! ! ! ! ! ! ! ! ""#$%&')+,*)&"       "##" "            " $ ' +./-, + * ( ' $ $ #"# # ! ! ! !                                & , 26 7 &>J&>J'?K'?K(@L(@L)AM)AM,DP,DP,DP,DP,DP,DP,DP,DP*BN+CO-EQ.FR/ER.DQ,BO+AN0CQ1DR2DR2DR3ES4FT5ET4FR3GR4HQ4HQ4HQ6HR7IS7JQ7JQ9JQ9JQ;JOKQ@KQBIQEIREIREIRFJSGKTGKTGKTGKTGKTGKTGKTGKTGKTGKTGKTHJWIKXIKXIKXLKYMLZNLZNLZNLZOM[QM\RN]UN^VO_WP`UQ_UQ_US^VT_WU`YVaZWb[Xc[Xc\Vb]Wc^Vc_Wd^Vc]Ub^Sa[S`YS_XR^WQ[WOZVNYWMVVLUUKSSLTSKVSMYRN\SQ_SRbRTcRSeSThRSgRShRSgQRgQRfQRgQRfPQfOPdNOdLMaLMbLMaLMbMNbJIYJHVIGUHFTHFSHFSIGTJHSJHSJIQJIQJIQJIQJIOJIOJIQFCNGCQHDRHDRHDRGDOEBMDAJB?HA>G@=D>;B=;@=;@><7;<6:;59<6:;57=47=45=34=34<23<2191/91/9018/08/07./7.16-05,15,15,15+35+35+35+35+32,02,.1+-0*,0*,/)+/)+.(*,&(,&(,&(+%'+%'*$&*$&*$((#)(#*(#*'")&!(&!(&!(% '% '% '% '% '% '% '% '# '#"(!"' !& % % !&!"'"#("#("#("#("#("#("#("#(#"($!,'!-'!-(".(".)#/)#/)#/+%1+%1+%1+%1+%1+%1+%1+%1)&1)&1,&2-'3.(4/)51)62*75*86+96+97,::.<;/=;/==/>>-??,?>-?=/@=1?<1?<1?;3@>6A>6A>7?@6?B8AE9CIB_?B_@E`AFbCIfCInCJuGJ|NPƒSQ‰ZT‘aWši[ o^Ÿo[£u^£v_¡w_ªk¸’{œ‡¿›ºš›¬• €‹šz‡•v…Šk{x[mkNbcFZZ=OM2AF,7A*2@)/='*9%'4!%1 &.#*&#                                                                   !!  !       ! ! ! ! ! ! ! ! "#$%&''()+)(%!       !$%$##"           " $ ' ( +,* * * ) ( ' ##""!                  " ( , / 2&>J&>J'?K'?K(@L(@L)AM)AM*BN*BN*BN*BN*BN*BN*BN*BN*BN+CO,DP,DP-CP-CP,BO+AN0CQ0CQ1CQ2DR2DR3ES4DS5ER4FR3GP3GP4HQ5GQ6HR6IP7JQ9JQ9JQ;JOKQ@KQBIQDHQDHQEIREIRFJSFJSGKTGKTGKTGKTGKTGKTGKTGKTGKTHJWHJWHJWIKXKJXLKYMKYNLZNLZNLZPL[QM\TM]UN^VO_TP^UQ_TR]US^VT_XU`YVaZWbZWb\Vb\Vb^Vc_Wd_Wd^Vc_Tb^Sa]U`\T_[S^ZR]ZPYYOXXNVWMUUNVUMXUO[VP\UQ_USaTScRTcQRfQRgQRgQRgQRgQRgQRgQRgRShPQfOPeMNcLMbLMbLMbNLaKHYKIWJHVJHVJHUKIVLJWMKXLJULJULJULKSLJULKSLKSLKSGDOHDRIESJFTJGRIFQHENGDMFCLEBKC@IB?FA>E@>CA>EA?DA?DA?D@>C?=B@;??:>?9=?9=>8:>8:@78?67@67?56?54?54<42<34;23;23:12:129039037.37.37.37.37-57-57-57.36026025/14.03-/2,.1+-1+-/)+.(*.(*.(*-')-'),&(,&**%+*%,)$+)$+(#*(#*'")'")% '% '% '% '% '% '% '# '$#)"#(!"' !& !&!"'"#(#$)#$)#$)#$)#$)#$)#$)#$)$#)%"-'!-'!-(".)#/)#/)#/*$0+%1+%1+%1+%1+%1+%1+%1+%1*'2*'2-'3.(4/)50*62*72*75*86+96+97,::.<;/=;/==/>>-?@-@?.@>0A=1?=2@;3@:4>=7A=7A>7?>7?B8AD:CH=EJ=FP:FR;ET:CV;BZ=B[>C\=B^>Ac@Dc@DaADaADaBGbCHdEJhEIrHJ}MM†VTŽ_Y“eX˜iYœmY r[œnV¢v]¤zb¦|f±ˆvÀ™ˆÄŽ»–Ž®”ŸŒ“s€Žn}‡hwz[kgKZ]APY=LR6DI/:D*3@)/>(+;%'7#%3 $/$+ ($"                                                                            ! ! ! ! ! ! ! ! ! "$%''''( )(&#!     !$%%$$#!             # $ & ' ' * * * * * ) % #!!!                ! # & * - &>J&>J'?K'?K(@L(@L)AM)AM)AM)AM)AM)AM)AM)AM)AM)AM,DP+CO*BN*BN+AN+AN,BO-CP/BP0CQ1CQ2DR2DR3ES4DS4DQ3EQ4FP4FP5GQ5GQ6HR7HP7HP;JQ;JQKQ>KQ@KQAHPDHQDHQEIREIRFJSFJSFJSFJSFJSFJSFJSFJSFJSFJSFJSGIVHJWHJWIKXKJXLKYMKYMKYNLZNLZPL[QM\TM]UN^VO_TP^UQ_TR]US^VT_XU`YVaZWbZWb[Ua\Vb^Vc_Wd`Xe_Wd`Uc_TbcYdbXaaW`_U^]S\[QZXQYWPXXP[XP[WQ]XR^VR`US`USaTScPQePQePQeQRfQRfQRfQRfQRfRSgQRfOPdMNbKL`KL`KL`ML^LIZLHWLHWLHWMIWOKYPLZRN\NJXNJXNJXNKVNJXNKVNKVNKVJFTKGULITMJUMJUMJULITKHSJGRIFQGDOEBKC@IC@GC@IDAHGDKFCJFDIECHFAGD?ED?CC>BA;=A;=C:=B958>58>58=47<36<36<36;27;27;27;27;27;27;27;27:469358247136025/14.03-/1+-1+-0*,0*,/)+/)+.(*.(,,'-,'.+&-+&-*%,*%,)$+)$+&!(&!(&!(&!(&!(&!(&!($!($#)#"("!'! &! &"!'#"($#)$#)$#)$#)$#)$#)$#)$#)$#)%"-(".(".(".)#/)#/*$0*$0+%1+%1+%1+%1+%1+%1+%1+%1*'2*'2-'3.(4/)50*62*72*75*86+96+97,::.<;/=;/==/>?.@@-@?.>>0?=1?=2@;3>;5?=7A;8?=8?=8?@9@B;BG=EJ=FQC\?D]>C^?DcCFbBEbBEbBEdDGfFIhHKkIJxOM‚UP‹^X’f[–kZšmVqX tY tY¨c­ƒm°…t»‘ƒÈ”Åš”´Œ£‹o€‚ar|\kuVehIXZ>LU9GR6BN3J&>J'?K'?K(@L(@L)AM)AM(@L(@L(@L(@L(@L(@L(@L(@L-EQ,DP*BN)AM*@M+AN-CP.DQ/BP/BP1CQ1CQ2DR2DR4DS4DQ3EQ3EO4FP4FP5GQ5GQ7HP7HP;JQ;JQKQ>KQ@KQAHPCGPDHQDHQEIREIRFJSFJSFJSFJSFJSFJSFJSFJSFJSFJSGIVGIVHJWHJWKJXKJXMKYMKYMKYNLZPL[QM\TM]UN^UN^TP^TP^TR]US^VT_XU`YVaYVaZWb[Ua\Vb^Vc`Xe`Xe_Wd`Uc`Vae[ddZccYbaW`_U^[T\ZS[YQ\ZR]YS_YS_WT_WSaVR`USaTSaQPbOPbPQcPQcPQcQRdQRdQRdRSeQRdNOaLM_KL^JK]JK]ML^LJXMIXMIXMIXNJXPLZRN\SO]OKYOKYOKYOKYOKYOKYOKYOKYMIWNJXOKYPMXQM[PMXOKYOLWLHVKHSIESGDOEBMEBMEBMEBMLIRKHOJGNIFMHELIDJHCIHCGC=AC=AB<@D;>C:=C:=B958>5:=49?6;?6;?6;?6;?6;?6;?6;?6;<6:;57:489358266025/35/12,02,.2,01+-1+/0*,0*.0*.-(.-(/,'.,'.+&-+&-*%,*%,&!(&!(&!(&!(&!(&!(&!($!(%")#"("!'"!'"!'"!'#"($#)$#)$#)$#)$#)$#)$#)$#)$#)'!-(".(".)#/)#/*$0*$0*$0+%1+%1+%1+%1+%1+%1+%1+%1*'2+(3-'3.(4/)50*62*73+85*86+96+97,::.<;/=;/==/>?.@?.>@/?>0?>2@=3><4?;6==8?=8?=8?>7>@9@D:BG=EJ=DR=DUC\?D^?D_@EbDFcCFcCFdDGeEHgGJiILmII~UQ†[TŽbW”iY—lY˜pW›tWžwZ£|_¯‡mµŒx¸Ž€Â—ʡט­„Œšu††exuTenM^fGV\>JS7CS8AO4=L18F-1C*.?),<&)8"$5!#1"-")%"                                                 !"!!                           ! ! ! ! ! ! ! !  #%&&%%''%$"      ! $&'&&%$"!              " " " " # # " " ( +**)& # "                              " &>J&>J&>J&>J&>J&>J&>J&>J)AM)AM)AM)AM)AM)AM)AM)AM)AM)AM*BN*BN,BO,BO-CP-CP0CQ1DR2DR2DR3ES3ES5ET5ER4FR5GQ6GQ7HR7HR8IS:HQ:HQ;HP8<=6=<6:;4;:3:;4;;4;:3::3::48<6:=7;>8<7158269299378187156/65/35.54.23,32,01*11+/2+23,3.)0-(/,'.+&-*%,)$+(#*(#*'")'")'")&!(&!(&!(&!($!($!("!'! & % %! &"!'#"(&%+&%+&%+&%+&%+&%+&%+&%+(".)#/)#/*$0+%1,&2,&2-'3)#/)#/*$0*$0+%1+%1,&2,&2-*5-*50*60*61+71+73+83+83(63(64)74)76*87+98,:9+:>-=>-=?.>=/<=1==3>;3><5=;4<<5<=6=A7?C9AGCZ?D[@E]@D^AEZ=A]>C_AC_AC`@AdDElJKqNL{SK„XMŠ`RŽdT‘hT“nT˜sYx^žy_¦€k­ˆxµ„Áš•É¡¢Ã˜Ÿ³‹–›y‰o‚`qtSdjKZcEQZ?HV;BT9>O49H/2C*-?),='*:$'6"$1"+ &$#"                                         "                           ! "##! "#$&'((%%$!       "$()&%$#!              '$!   ! # '' ' ' & % $ $ ! !                                  &>J&>J&>J&>J&>J&>J&>J&>J)AM)AM)AM)AM)AM)AM)AM)AM)AM)AM)AM*BN+AN,BO,BO-CP/BP0CQ1CQ1CQ2DR3ES4DS4DQ4FR5GQ6GQ6GQ7HR7HR:HQ:HQ;HP7?=6><5=?8@>7>=6==6=>7>?9=@9@A:A929:3;:3;;4<:3;92:7086/74-53,41*20)1/(0/(00)10)10+2/*1/*1.)0-(/,'.+&-*%,*%,*%,)$+)$+)$+(#*(#*(#*'$+%$*$#)#"(#"($#)%$*&%+&%+&%+&%+&%+&%+&%+&%+'$+)#/)#/)#/*$0+%1,&2,&2,&2)#/*$0*$0+%1+%1,&2,&2,&2,)4-*5/)50*60*61+72*72*75*85*86+96+98,:9-;:.<:.<9+::,;:,9:.::0;;1<:3;:3;?8?B8@C9AE:BH;BJ=DN?FQ>DW>BY>CZ?D[@E\AF\AF]CF_BF\?C^AEaCEbDDeEFiJHrPOzTQ†[R‹_RdW’hX”n[˜t^ž{e¤m©†s­Œ{²†³Š´±‘¥€‡•q{„br{ZkoN_eET^@LY;ES8?O49S8=N47G.1C*-@*->(+:$'7"'1$+ &$#"                                             !                           ! "##! "#$%''(&$#!     ! $'**&%$#!                 &$!   ! # $& ' & % $ $ ! ! !                              &>J&>J&>J&>J&>J&>J&>J&>J(@L(@L(@L(@L(@L(@L(@L(@L(@L)AM)AM*BN+AN,BO,BO,BO.AO.AO/AO0BP1CQ1CQ2BQ3CP5ER5FP5FP6GQ9GR9GR:GP;HQ;HP;HP=HN>IO@IP@IP@IPAJQAHPCGPDHQDHQEIREIRFJSFJSFJSFJSFJSFJSFJSFJSFJSFJSHJWHJWHJWIKXLKYLKYMKYNLZMKYNLZOKZPL[TM]UN^UN^TP^TP^SQ\TR]US^WT_XU`XU`YVa\Vb\Vb^Vc_Wd`XeaYfdYgdZedZce[dc[fa[e]ZeZXeWVdVUcZYiYXhWVfTScSRbRQ_SQ_RR^TT`RU^QS_QT]QS_PS\PR^PS\OQ]OR[OQ]OR[OQ]OR[OQ]OQ]KMYJLXJJVHJVKJXKMZPO]PR_QP`NP_PO_NP_POaNOaPOaNOaKL^KM\LN]LN]MN`NOaOPbOPbOPdNOcLMbKLaJK`IJ_JK`JK`KL`KL`LMaLM_LM_ML\KJZJIYIFWHFTHFTHDRGCQFBPEAOGAOF@LF@LF@LF@LD>JBDD?FE@G@8CA9DA9DB:EA9D@8C>6A=5@80;7/:5-83+62*52*52*52*52-42-41,30+2/*1.)0-(/-(/-(/-(/-(/,'.,'.+&-*%,*%,*'.)&-(%,'$+'$+(%,)&-*'.(%,(%,(%,(%,(%,(%,(%,(%,)#/)#/*$0*$0+%1+%1,&2,&2*$0*$0*$0+%1+%1,&2,&2-'3,)4,)4.(4/)5/)50*61)62*76+96+97,:8-;:.<;/=<0>=1?;-:;-:<.;<0<<2;>4=>4=?5>E;CF;CH;BL=DN=ER>GS>EU>D\BE^AE^AE^AE]CF]CF]BG]BG[AD`CGeGIgIIkLJsQO|YW„_Y“g\˜j]šnase yj¤€pª‰z¯‚¯‘†²•±”ŽªŒŠ ‚„“ty‚ciuV^kKXeER^>KX8CT6@R4(+;$*7"'0#*&##"                                                            ! "##""#$%&&'%%$"!  "#%),-'&%$"!                ! %#!    ! # % % $ $ # !                           &>J&>J&>J&>J&>J&>J&>J&>J(@L(@L(@L(@L(@L(@L(@L(@L(@L(@L(@L)AM+AN+AN+AN,BO-@N-@N.@N/AO/AO0BP1AP1AN4DQ5FP5FP6GQ8FQ9GR:GP:GP:GO;HP=HN>IO?HO@IP@IP@IPCGPCGPDHQDHQEIREIRFJSFJSFJSFJSFJSFJSFJSFJSFJSFJSGIVHJWHJWIKXKJXLKYMKYMKYMKYNLZOKZPL[TM]UN^UN^TP^TP^SQ\TR]TR]VS^WT_WT_XU`[Ua[Ua]Ub^Vc_Wd`XecXfdYgdZebZea[e_\g][hZYgVXgTWhVYlUXkSViRSeQRdSRbSRbSR`SUaSUaRT`RT`QS_PR^OQ]OQ]OQ]OQ]OQ]OQ]OQ]OQ]OQ]OQ]LNZJNYIKWHLWJLYLP\PR_PT`QSbPSbQRdPSdPQcORePQeNQdJM`IO_JObKPcMReNSfOThOThQVlPUkNRkMQjLPiLPiMQjMQjMQjMRhNSiOTjQSjPRgNPeNQdMNbLMaNLaML^LK]LK[LI\MIZNGWNGWNGWMFVKDTHBPF@NE?KF@LF@JE?IE?IE?IGBIHBLICMIANIANJBQJBOJBQH@MG?NF>KA9H@8E=5D;3@91@80=80?80=4.84/63.52-41,30+2/*1/*10+2/*1/*1.)0-(/,'.+&-+&-*'.)&-(%,(%,(%,(%,)&-*'.(%,(%,(%,(%,(%,(%,(%,(%,*$0*$0*$0*$0+%1+%1+%1+%1*$0+%1+%1+%1,&2-'3-'3-'3,)4,)4.(4/)5/)50*61)61)65*85*86+98-;:.<<0>=1?=1?@2?@2?@4@B6BB8AC9BD:CF;CF;CH;DMR4J&>J&>J&>J&>J&>J&>J&>J'?K'?K'?K'?K'?K'?K'?K'?K'?K(@L(@L(@L*@M+AN+AN+AN,?M,?M.@N.@N/AO/AO1AP1AN6DQ6DO6DO7EP7EP8FQ9FO:GPGN>GN?HO?HO@IPCGPCGPDHQDHQEIREIRFJSFJSFJSFJSFJSFJSFJSFJSFJSFJSGIVGIVGIVHJWJIWKJXLJXMKYMKYNLZOKZPL[TM]UN^UN^TP^TP^SQ\TR]TR]UR]VS^VS^VS^ZT`[Ua]Ub^Vc_Wd`XecXfcXfaYd`Zd^[f][hY[jWZkSXkRWjPWjOViOThOTgQTgSTfTVeTVeTVcTVcSUbSUbRTaQS`QS`PR_QS`QS`QS`QS`QS`QS`QS`QS`MQ\JQYKOZHOYKO[LR^QTcQWeSVgQWgSViPUhQTgOThPRgNSgJQdJQcKReLSfNUhOViPVlQWmRXpQWoPVpOUoOTqOTqPUsPUsOTrPUrQVsRWtSWtSWrRVqQUnQSlQSlRRlRRjQQiQRgSQiSOfTOeVNcVNcUMbSL^PI[NGYLEUKDTKESJDRJDPJDPLFPMGSNHTLDSMETNEVNFUMDULDSKBSJBQG>OE=LB9J?7F=4E;3B:1B:2A60:6185074/63.52-41,31,31,31,30+2/*1.)0,'.+&-+&-+&-+&-*%,)$+)$+*%,+&-+&-+&-+&-+&-+&-+&-+&-+&-+&-+%1+%1+%1+%1*$0*$0*$0*$0+%1+%1+%1,&2-'3-'3-'3.(4,)4,)4/)5/)50*60*62*72*73(64)75*87,::.<;/==1?=1??3?@4@A5?C7AE9CF:DH=EIT5;Q49P38O4;P5J&>J&>J&>J&>J&>J&>J&>J'?K'?K'?K'?K'?K'?K'?K'?K'?K'?K'?K(@L)?L*@M*@M+AN,?M-@N.@N.@N/AO/AO1AP1AN5CP6DO6DO6DO7EP8FQ9FO9FO;ENGN?HO?HO@GOCGPCGPDHQDHQEIREIRFJSFJSFJSFJSFJSFJSFJSFJSFJSFJSFHUGIVGIVGIVJIWKJXLJXLJXMKYNLZOKZPL[TM]UN^UN^TP^UQ_TR]TR]TR]UR]UR]UR]UR]ZT`ZT`\Ta]Ub^Vc_WdbWe`Xe^Xb\Yd\Zg[ZhXYkTYlQXkOWlNVkMUjMUjMTgOThRUhUVhVXgUWfUWfTUgTVeTUgTVeSTfSUdSTfSUdSTfSUdSTfSUdSTfRUdNU_LU\KR\JS\LR^NVaRXfRZgTZjSZjSXkQXjQVjOViOThNUhLTgJUgMUjLWkOWlMXnPXoNXqQXrOYtOVsMVsOUuMVuPVvOXyPVxOXyRXxSYyTZzUZzTYwSXvRWtSWtSWtUVtUVrUVrUVrXUpZTn\Tl\Tl\TkZRiXPeVNcUN`RK]RK[QJZQKYRLZSMYTNZUO]OFWPGXQH[QHYPGZOFWNEXMDULCVJARG>QC:K@7J>5F<3F<4C;5?:5<:5<94;83:7296185075074/63.52-40+2/*1.)0-(/,'.+&-*%,)$+)$+*%,+&-,'.+&-+&-+&-+&-+&-+&-+&-+&-,&2,&2+%1+%1*$0*$0)#/)#/+%1,&2,&2-'3-'3.(4.(4.(4-*5.+60*60*61+72,83+83+84)75*86+98-;;/==1??3A@4B>2>?3?A5?C7AE9CG;EIFS?H[AL`DPeEPgFQjDQhELcCDaCA^BA[AB[AD\CF^EI_FJeLOkQTsVXz\Z„b`lh›vp£~u«‡w­Œy´”‡»•¾¢¡¼¡¦¶œ§°˜¦¦Ÿ˜“…n~v^lhN[[?KT9@V9>U79U79S57P16K.2I,1H-4J/6H-4F+2C)2C*0B+1@)/<%+8#(/")$"!                                          ! "##########""  "$$%)+00*)('%$##!!         ! ! !     ! !       "                                   &>J&>J&>J&>J&>J&>J&>J&>J&>J&>J&>J&>J&>J&>J&>J&>J&>J'?K'?K(@L)?L*@M*@M*@M-@N-@N/AO/AO0BP0BP2BQ2BO5CP5CN6DO6DO8DP8DP8EN9FO;EN;EN=FM=FM>GN>GN?FN@GOCGPCGPDHQDHQEIREIRFJSFJSFJSFJSFJSFJSFJSFJSFJSFJSFHUFHUGIVGIVJIWJIWKIWLJXMKYNLZOKZPL[TM]UN^UN^TP^UQ_TR]TR]SQ\TQ\TQ\TQ\TQ\ZT`ZT`\Ta]Ub^Vc_WdbWe`Xe[UaZWbZXfWYhVYlSXlOWlMXnNYoMXnNVmNTjOThOTgRUfRUfUVhUVhUVjVWiVWkVWiWXlWXjVWkVWiVWkVWiVWkVWiVWkUXgPYbMX^MV_LV_NW`OYcS[hT^jU\lT]lT[mR[lRYlOWjOUkNVkMXlLYlMXnMYoNYoMYqNXqMYsNWtLWsLUtKVtLUvLWwNWxNX{NVzNX{QY}RZ~S\}U[}TZ|TZ|SYyTYyTYwUXwVYxVYxVZwYYu]Yt^Xr_Ys_Zq^Yp\Wm[VlZUiYThYUfXTcXTbXTbZVd[We^Xf[Re[Re\Sh\Sf\Sh[ReYPeXObWNcUL_QH]MDWI@UF=PE;6=:5<94;7295074/62-42-4/*1.)0-(/,'.,'.-(/.)0/*1,'.,'.,'.,'.,'.,'.,'.,'.,&2,&2,&2+%1*$0)#/)#/)#/,&2,&2,&2-'3-'3.(4.(4/)5/,7/,71+72,82,83-94,95-:7,:8-;:/=<1??3AB6DC7ED8FC9DD:CFGK@HNCKPCLSCM\HQ_JSfKTkKVoKWoIVpFRnFOhFGdFDaED^DE_EH`GJaKNcMPoVZtZ]}`b„fdmk™vr¦{«‰±”‚°—ƒ±šŒ´—³Ÿ¯š£¦‘ Ÿ‰ž”~•ƒkƒrYohM`aBRW7DR3;S38P22Q31P22M/1H+/E(-D)0G,3F+4D)2B(3C)2B+3A*2=&,8#(.!($!!                                               ! "#####""""" !#$%(+00+*)(&%$$""!       ! " ! ! ! !                                            '=J&>J'=J&>J'=J&>J'=J&>J'=J&>J'=J&>J'=J&>J'=J'=J'=J'=J(>K(>K)?L)?L,?M,?M.AO.AO/AO0BP0BP1CQ2BQ2BO5CP5CN5CN6DO7CO8DP8EN;EO;ENEM>EM?FNAENBFOCGPCGPDHQDHQEIREIRFJSFJSFJSFJSFJSFJSFJSFJSFJSGJSFHUFHUHGUIHVIHVJIWKIWLJXMKYNLZOKZPL[RN]SO^UN^TP^UQ_TR]UR]TQ\TQ\TQ\SP[SP[WT_ZTb[Uc\Vd]We^Xf^Xf_YgXTbXVdXWgVWiUXkRWkPVlNVmQ\rRZqPXoNTjNSiMRfORePSfTVkTVkUWlVXmVXmWYnXZoXZoVXmVXmVXmVXmVXoVXoVXoTYmQXhOYeNWfMVeNWfQZiT]nV_pV^qU]pT\qS[pQYnPXoOWnOWnOYrNZrNZrNZrMYsMYsMXtMXtKVtKVvJTwISvJTwIVyLVzMW{MW{NX|QY~RZS[S[U[TZ~TZ~TZ|UY|UY|VZ}VZ}WZ{YZy]Zy_Zx`[y`\w`\w_[v^Zs]Yr_[t^Zq^Zq]Zo^[p_\qa^sb_te`wh_zh_zi`{h_ze_ye\wb\v`Zt]WqZTnUOiQKeNHbMGaLG]EAPEBMF@LC@ID>JA>GB?5@B7EE9EG;IHK*=K*=K)L+>L-?M-?M-?M-?M.@N.@N/AO/AO0BP0BN1AN1BL4BM4BM6BN6BN9CM9CM?:A;6=A:BHAILEMNFQSIRXNY]Q][KX_M[dR`iWem]jqalucoveo|hq}fl|cg{^`xZZtUSsPNpOJoPKlOIiLHhLHkOLoVRv\[z`_ƒijŠpq”z{œ‚ƒ¡‡ˆ©ŒŽ°“•°šª ©Ÿ›©›•£œ”£ž“¤˜‹œ‹zŒ€k|jSecKYY?JQ6?O27M04L.0J.-H+-E+.G*.D*-C(-B',B',A&+>#*@%,D)0F+2E*1@'+="'7!$-($"!                                                          # ! # ! # ! # ! " " ! $ " $ # ! """ # $()++*(&%%&&'%$$###!                ! !                                             ':H':H':H':H':H':H':H':H':H(;I(;I(;I)L,>L-?M-?M-?M-?M.@N.@N/AO/AO0BP0BN2BO2CM4BM5CN6BN7CO9CM:DN=DN=DN?CL@DMADMBENDDNDDNDGPDGPDGPEHQEHQFIRFIRGJSGJSFIREHQDGPDGPEHQFIRGJSIGUIGUJHVKIWLJXMKYNLZNLZMKYNLZNLZOM[QO]RP^RP^SQ^UO]UO[VP\VP\UR]UR]US`US`TR`USaTScTScSUdSUdTVeTVeSVgSVgSViRUhRUhQTgQShQShRTkRTkQSjQSjPRkPRkOQjMQjNRkMSkNTlOUmPVpQWqRXrSYsSXuSXuSXvSXvSXvSXvSXxSXxPUuQVvRWwSXxTYyUZzV[{W\|V[{V[{UZzUZzTYyTYyTYySXxOUwOUwMVwMVwMUyMUyLVyLVyIVyIVyJV|JV|JX}JX}KY€LX~OW|QV|QV|RW}RW}SX~SX~SX~V[V[V[V[V[V[V[W[€[^]]]]^^‚^^‚__ƒ__…__…_^†`_‡`_‡`_‡a`Ša`Šba‹ba‹cbŒcbŠebdc‹edŽceŒedŽdfdfbfŒad_dŠ^aŠ\a‡Z_‡[_‚^^z_]s_[r\Zp[WnYWlXUhWVfWTeUTbSQ_OO[KIVEEQB@K@>I?9E?7B=5@;4<9297156026022,.2,00+10*4/)5/)7.'7,(7'*3&+1&+1'*1'*1))1*)1*)1,)2.(20(33)24*56*47+76,52/634967<87?98@;:B?>FDAJFCLMGSTNZYSa\VdaYhe]lk`psbtvcvzgz~m‚qƒƒu†…w†ˆx…ƒq}ƒoxjp}dgy_^vZWsVRrUOpTPmTOlSOmTPqWVw_]ef‚jjtw’|~œƒ‡ Š£Œ’¥Ž”¨‘™§•¡˜®””¬”§•¦—Ž£‚–n€s^mdLZ^DOT9@L25J-1I,.G+*F*)D*-C(-C(-B',A&+A&+@%*@%*>#(A&+C(-E*/D).A&+="'9 $-($"                                                         "#$ $ # # # # # # # ! " " # # $ $ $ ! ! ! ! ! ! ! ! # # " # $&'),+)''''(((%%$$##!               ! !    ! !                                  ':H':H':H':H':H':H':H':H':H':H':H(;I)L,>L-?M-?M-?M-?M.@N.@N/AO/AO0BP0BN2BO3DN5CN6DO7CO8DP:DN:DN=DN=DN?CL@DMADMBENDDNDDNCFODGPDGPEHQEHQFIRFIRFIRGJSFIREHQDGPDGPEHQFIRGJSIGUIGUJHVKIWLJXMKYNLZNLZMKYNLZNLZOM[QO]RP^RP^SQ^TN\TNZUO[UO[TQ\TQ\TR_TR_TR`TR`SRbTScSUdSUdSUdTVeSVgSVgSViRUhRUhQTgQShQShRTkRTkQSjQSjPRkPRkOQjMQjMQjMSkMSkOUmPVpQWqQWqRXrSXuSXuSXvSXvSXvSXvSXxSXxQVtQVtRWuSXvTYwUZxV[yV[yV[yUZxUZxUZxTYwSXvSXvSXxOUwOUwMVwMVwMVwMVwLVyLVyIVyIVyJV|JV|JX}JX}KY~LX~PX}RW}RW}SX~SX~TYTYTYV[V[V[V[V[V[V[W[€[^]]]]^^‚^^‚__ƒ__…__…_^†_^†_^ˆ`_‰a`Ša`Ša`Šba‹cbŒacŒdcbdcdbeŽde‘cfdg’chch’`haf_gŽ^e`e‹ef…ff‚gddd€fc€cc}eb}cc{b`x_`u_]s[\pYWlSTfRQcON`KGXKDTHBPE?KA;E>9@<7=;6:5045064/63-71+70*8/)7-)7**4(+2(+2**2*+0*+0+*0+*0/,31,31,33,34-56,47-64/611;46B:#(>#(>#(?$)@%*C(-D).C(-?$); %8#,'#!!                                              !               #%%"    ! ! ! ! ! ! ! ! ! ! ! # # " # $&')/.+)))))))((%%$$"!!                   ! " " !                                             &9G&9G&9G&9G&9G&9G&9G&9G&9G':H':H(;I(;I)L,>L-?M-?M-?M-?M.@N.@N/AO/AO0BP0BN3CP3DN5CN6DO7CO8DP:DN:DN=DN=DN?CL@DMADMBENDDNDDNCFOCFOCFODGPEHQEHQEHQFIRGJSFIREHQDGPDGPEHQFIRGJSIGUIGUJHVKIWLJXMKYNLZNLZMKYNLZNLZOM[QO]RP^RP^SQ^SM[TNZTNZTNZSP[SP[SQ^SQ^SQ_TR`SRbTScRTcSUdSUdSUdSVgSVgSViRUhRUhQTgQShQShRTkRTkQSjQSjPRkPRkOQjMQjLPiLRjLRjNTlOUoPVpPVpQWqRWtRWtRWuRWuRWuRWuRWwRWwRWuRWuRWuSXvTYwUZxUZxUZxUZxUZxUZxTYwTYwSXvSXvRWuPVvPVxNWxNWxNWxNWxMWzMWzKUyIVyJV|JV|JX}JX}KY~LX~PX}SX~SX~TYTYUZ€UZ€UZ€V[V[V[V[V[V[V[W[€[]ƒ]]]]^^‚^^‚__ƒ__…__…^]…_^†_^ˆ`_‰`_‰a`Ša`Š_`ŒabŽ`cŽad‘adbe’afbf“bg‘bf“`g‘`g“_h‘_h“_h‘_h“`heggg‹hhŒhhŒhhŠii‹ij‰ij‰gh†gh†fgƒef‚cd€`b{]_x\\vUSkVShURgRO`MKYGEPBAI?QCFYKMbRTiXZqaayff€ol‰roŽvr“{w˜€zžƒ}¡…£‡¥Œ…¦Ž‡¨Šª‘Œ¬‘Ž­’¬’«’Ž©Žˆ¢Œ„œ‡~“‚wˆq€ozmynxozozr|t~…w„Š|‰’„“™‹œœ ¡’¥£–¨¢“¦œ£˜‰ž“…œŒ‚›‡}–„w‘sŒ~l‚r_sbK_U=MT9HO3?G,3B(+@&)@&'?%$>$%=#&="'="'#(@%*A&+A&+@%*="'9#6!+%"!!                                                #"                $&%!             # # " # $&')//,+++**+)))&&%%###"!                     ! " " !                                                &9G&9G&9G&9G&9G&9G&9G&9G&9G&9G&9G':H':H(;I(;I)L,>L-?M-?M-?M-?M.@N.@N/AO/AO0BP0BN2BO2CM5CN5CN7CO7CO:DN:DN=DN=DN?CL@DMADMBENDDNDDNBENCFOCFOCFODGPEHQEHQEHQGJSFIREHQDGPDGPEHQFIRGJSIGUIGUJHVKIWLJXMKYNLZNLZMKYNLZNLZOM[QO]RP^RP^SQ^SM[TNZTNZTNZSP[SP[SQ^SQ^SQ_SQ_RQaSRbQSbRTcRTcSUdSVgSVgSViRUhRUhQTgQShQShRTkRTkQSjQSjPRkPRkOQjMQjKOhKQiKQiLRjMSmOUoOUoPVpRWtRWtRWuRWuRWuRWuRWwRWwSXvSXvSXvSXvTYwTYwTYwTYwUZxTYwTYwSXvSXvRWuRWuRWuOUuOUuOUuOUuMVwMVwMUyLVyKUxKUxJWzJWzKW}KW}KY~LX~PX}SX~SX~TYTYUZ€UZ€UZ€V[V[V[V[V[V[V[W[€[]ƒ[^[^\_‚\^„]_…]_†]_†\^…\^…\^‡]_ˆ]^Š^_‹^_‹_`Œ^b^b^b‘_c`d“^e‘^e“^g’\d’ZfZe’[g‘[f“\h’\g”^g’`eadbeŽcfdgeh‘fjgk‘gkhl‘hl‘hlgkŽeiŒcgŠcf‡[\{]^z^_{^`wZ[pQRdJIYDCQ@>K@=H=:E:7@93=60:4.:2,80-4/.3/.4/.30.3/.3/.3/.3/.30/410532765:87<9:>8;D?FYELhPUrZ_}bg…joru˜wyŸ{z¢|{¥~ª‚­…‚±‡ƒµ‡ƒµ†ƒ²ˆ‡±‡‰°‰‹²ŠŒ³‰³ˆŒ²ˆŒ²ˆŠ°ŠŠ®ˆ‡§…‚¡‚~™ƒ{“„{‡{‘ˆ|‰€•‰€•Š–Œƒ˜„™‡œ‘‡Ÿ’ˆ “‰¢”Œ¤™ªš‘¬š«”‹¨„¢Š€›‰{•‚rŒxh‚r`xnXodMa[@SS7FQ5CL1:E*1A'*?&)?''>&$<$$9 #9 $9 $9 $9 $9 $9 $:!%<#'=$(=$(=$(;"&8#5 1*&#"                                                  #"!               "%%                 # # " # $&')////,++)+*))((%%%%%$$$##                  ! ! ! !                                                 %8F%8F%8F%8F%8F%8F%8F%8F%8F&9G&9G&9G':H(;I(;I(;I*L,>L-?M-?M-?M-?M.@N.@N/AO/AO0BP0BN1AN1BL3AL4BM6BN6BN8BL9CM=DN=DN?CL@DMADMBENDDNDDNBENBENBENCFOCFODGPDGPEHQGJSFIREHQDGPDGPEHQFIRGJSIGUIGUJHVKIWLJXMKYNLZNLZMKYNLZNLZOM[QO]RP^RP^SQ^TN\TNZUO[UO[TQ\TQ\TR_TR_RP^SQ_RQaRQaQSbRTcRTcRTcSVgSVgSViRUhRUhQTgQShQShRTkRTkQSjQSjPRkPRkOQjMQjJNgJPhJPhKQiLRlNTnNTnOUoQVsQVsQVtQVtQVtQVtQVvQVvSXvSXvSXvSXvTYwTYwTYwTYwTYwTYwTYwSXvRWuRWuRWuQVtNTtNTtNTtNTtNTvLUvLTxLTxLTxKUxLVzJWzKW}KW}LX~LX~PX}RW}RW}SX~SX~TYTYTYV[V[V[V[V[V[V[V[Z^ƒZ^[^[_‚\^„\`…]_†\`†[]„[_…\^‡[^‡]^Š]`‹^_‹]`ZaYaZb‘Zb[c’[c‘\d“Ze’Xc‘WdWd‘VeWe’Wf‘We’Xe’Zb‘[a‘\c‘^e“_f”`g•ah”bi•dk—el–fm—gn˜gn˜go–fm—em”]bˆaeŠdh‹di‡ae‚X\uQSjKNaGFVEDRCAN@%(>&&<$$;##7!7"7"8#8#9 $9 $9 $;"&;"&:!%9 $7"41.)%"!                                               ""!              ! $"                      # # " # $&').////,*)**)(''$&%%&%&%&%# !     " "                                                             %8F%8F%8F%8F%8F%8F%8F%8F%8F%8F&9G&9G':H':H':H(;I*L,>L-?M-?M-?M-?M.@N.@N/AO/AO0BP0BN/?L0AK2@K3AL4@L5AM7AK7AK=DN=DN?CL@DMADMBENDDNDDNADMBENBENCFOCFODGPDGPDGPGJSFIREHQDGPDGPEHQFIRGJSIGUIGUJHVKIWLJXMKYNLZNLZMKYNLZNLZOM[QO]RP^RP^SQ^UO]UO[VP\VP\UR]UR]US`US`RP^RP^RQaRQaQSbQSbQSbRTcSVgSVgSViRUhRUhQTgQShQShRTkRTkQSjQSjPRkPRkOQjMQjIMfIOgJPhKQiLRlMSmNTnNTnQVsQVsQVtQVtQVtQVtQVvQVvTYwTYvTYvTYvSXuSXuSXuSXuTYvSXuSXuSXuRWtRWtQVsQVsMRpMRpMRrLRrLRrLRrLRtJStLTxKUxLVyLVyMW{KX{LY|NX|OW|QV|QV|RW}RW}SX~SX~SX~V[V[V[V[V[V[V[V[Y_ƒY_ƒZ^ƒZ`„[_…[`†\`†[`†Z]†Y^†[^‰Z_‰\_Š[`Š\_Œ\`W_ŽU`ŽV`‘VaWa’VcWc“Vd‘Vd“Vd‘Vd“Te‘Te“Te‘Te“Vd“Xd”Yc”Zd•[e–\f—]g˜^h™^h™`j›alšcnœepžfqŸfqžfqŸfqž_j—bk–cl•ck’bhŒ\b‚X]zTZrJLaHK^FGYCBP?=J;9D85@63<64983764764754954945:25<25>48A7>H=DNCKVJR]NVaNYm^kŽcpkv¤q|ªs}®u°y€´|ƒ·{€·z·z·|»‚„¿ƒ…ƒÀ|»~…»}‡º}‰½}‰½}‰½{ˆ¼z‡»z†¸z„µ|„³}„²„¯ƒ…®……«‡…ªˆ†«‡…ªˆ†«‰‡¬Šˆ­Šˆ­ˆ†«ˆ„©†‚§‰…ªˆƒ«‡‚ª‰„¬‹„®ˆƒ«„}§‚x‚nŠ}c|qUneI`_AY\J,6D&.?$)=$'<$$8#"5 6 6!6!7"8#8#9 $9 $9 $8#7"6!31.+(%!!"                                           !!                              # # " # $&')-/0//-)(*)((&&%%%%'%'%'&& " "   $ $ ! !                                          %8F%8F%8F%8F%8F%8F%8F%8F%8F%8F%8F&9G&9G':H':H(;I*L,>L-?M-?M-?M-?M.@N.@N/AO/AO0BP0BN.>K/@J1?J2@K3?K4@L6@J6@J=DN=DN?CL@DMADMBENDDNDDNADMADMBENBENCFOCFODGPDGPGJSFIREHQDGPDGPEHQFIRGJSIGUIGUJHVKIWLJXMKYNLZNLZMKYNLZNLZOM[QO]RP^RP^SQ^VP^VP\WQ]WQ]VS^VS^US`VTaRP^RP^QP`RQaPRaQSbQSbRTcSVgSVgSViRUhRUhQTgQShQShRTkRTkQSjQSjPRkPRkOQjMQjIMfHNfIOgJPhKQkLRlMSmMSmQVsQVsQVtQVtQVtQVtQVvQVtTYvTYvTYvTYvSXuSXuSXuSXuTYvSXuSXuRWtRWtQVsQVsQVsLQoLQoLQqLQqKQqKQqKQsKQsLTxLTxLVyLVyMW{MW{LY|NX|NV{PU{PU{QV|QV|RW}RW}SX~V[V[V[V[V[V[V[V[Y_ƒY_ƒY_ƒZ`„Z_…[`†[`†[`†Y^†Y^†Y^ˆZ_‰Z_‰[`Š[_ŒZaT_S_T`T`Ua‘Tb‘Uc’Sd’Vg•Vg•Uf”Tf”Se“Se“Se“Rd’Yg˜Yg˜Zh™[iš\j›]kœ]kœ^l]kœ_mžao dr¡es¤ft£ft¥ft¥bp¡ao `lœ^k—^g’\eŒ[c‡\b‚KPmJNgHJ_CFYA@P<;I87E75@86;86986976;76<66>47@37B39E5=J:CR@L\HSeO\oUbuVdhv£k{¯r´t¶s€µr´s~¶t·v¸t}¶t}¸x¼~„À€†Â~„À{½w‚ºvƒ¸w„¹x…ºv…¼u„»tƒºsƒ·w„¹y…¹}…¶…µ…´ƒ†±…„®…„®€ª‚©„ƒ­†…­…„®ƒ‚ª‚ª€~¦‡„¯‡­…«‡€¬ˆ­‡€¬‚{§‚vžh…|^vpRjgG^`@W\;PY8IW7FN.;I)4B$,="';"%7!#4 13 5 6!7"8#8#9 $9 $8#7"6!41.,)'%!!"!                                                                            # # " # $&'+-./0.-+'))''&%%%$ & & & '''''% "    " % %" !                                      $7E%8F%8F&9G&9G':H':H':H&9G&9G':H':H(;I(;I)L,>L-?M-?M,>L,>L,>L-?M-?M.@N.@N.@L0@M0AK2@K3AL4@L5AM7AK7AK=DN=DN@DMAENCFODGPGGQGGQADMADMBENBENCFOCFODGPDGPDGPDGPEHQEHQFIRFIRGJSGJSJHVJHVKIWKIWLJXLJXMKYMKYMKYNLZNLZOM[PN\QO]RP^SQ^UO]VP\XR^YS_WT_VS^SQ^RP]RP^OM[ML\PO_RTcUWfSUdQSbRUfRUfRUhQTgPSfOReOQfNPeRTkRTkQSjQSjPRkPRkOQjMQjKOhJPhKQiKQiLRlMSmNTnNTnKPmLQnMRpNSqPUsQVtRWwRWuPUrQWqQWqRXrRXrSYsSYsSYsQWqQWqRXrSYsSYsRXrQWqQVsORqORqNSqNSqNSqNSqMSsMSsLUvLUvMUyMUyMWzMWzNX{NX{OW|QV|QV|QV|QV|QV|QV|QV|TYTYTYTYTYTYTYTYU]‚U]‚U]‚V^ƒW_„W_„W_†X`‡X_‰X_‰X_‹X_‹X_‹X_‹X_‹W_T`Sa’Sa’Sa’Sa’Qa’Qa’Qa’Qa’Pb’Qc“Od“Pe”Pe”Qf•Qf•Se•Td•Ue–Vf—Wg˜Xh™YišZj›YišZj›\l^nŸaq¤cs¤eu¨fv©fvªfvªdt§br£coŸanšam—bk’X`„V\|PUrIOgEG\ADW@AS?AN=>C;:?87=77?8;D9=H8>L7>N=EX>I_COgJXrTb]l‰et“hwžq‚¶q¼q€»q€»pºpºq}·q}·r|·s}¸s~¶t·v¸w€¹w€¹w‚ºv¹u‚¹u‚¹s‚¹s‚»s‚»s‚»s‚¹vƒºw‚¸z·|‚´~‚²€‚²ƒ°ƒ‚®ƒ‚®ƒ‚¬ƒ€­ƒ€«‚¬‚ªƒ}«ƒ}©†€®…~ª„}©…|©†}ª„{¨€w¤r™|c€zZqnNeeC[^=RY6JT2CQ/?G%3D$/?!):$7!3233 5"7!$9#&:$':$'9#&8"%7!$6 #3 /+(%# %$$#!                                                                          ! " " # # $%&'(++../100/&'))))((&()('& $ # $ $ $ $ $ $ $ " !                                      $7E$7E$7E%8F%8F&9G&9G&9G&9G&9G':H':H(;I(;I)L,>L-?M-?M,>L,>L,>L-?M-?M.@N.@N.@L0@M0AK2@K3AL4@L5AM7AK7AKJ;?K=CQ@GWAI^@KaLWsN\yTc„[kas™hz¢k~¨m­o‚¼n€Àn€Ào½o½n~ºn~ºo~¹o~·q}·r¶r¶s€µu€¶u€¶v·r´r¶p¶p¶p¸p¸p¸p¸s€·tµu~µy³{~±}°€~¯®‚€¯‚­ƒ€­‚¬‚¬ƒ}«ƒ}«„|«„|«ƒz§„x¦…y§†y§„w£r m•{a|xXmmKccBW\9MW5FR0@N,:E$/B#+> (:$7!4 33 4!5"6 #7!$8"%8"%8"%8"%6 #5"2/+(%$%$$#!                                                                  ! ! # # $%&'(*+..///.-'&())(((()))(& $ # $ $ $ $ $ $ $ " "                                       #6D#6D#6D$7E$7E%8F%8F%8F&9G&9G':H':H(;I(;I)L,>L-?M-?M,>L,>L,>L-?M-?M.@N.@N.@L0@M0AK2@K3AL4@L5AM7AK7AKPW6IR1BM+;J(6A!,@!)='9#7!4 3 3 4 "3!3!3!3!4 "6"$6"$3!2 0-)'$#&%%$!                                                        "                " " # $%&'),//0/,+)&''()(('))))(& $ # $ $ $ $ $ $ $ " # !                                               "5C"5C"5C#6D#6D$7E$7E%8F&9G&9G':H':H(;I(;I)L,>L-?M-?M,>L,>L,>L-?M-?M.@N.@N.@L0@M0AK2@K3AL4@L5AM7AK7AK)=':$9#7!4 3 3 4 "3!10013!5!#00.+)&%$&%%$!                                                                      " # # ! ! !            ! ! " # $%&(-///.,( ' % &('(('&)***('% $ $ $ $ $ $ $ $ " " !                                              "5C"5C"5C#6D#6D$7E$7E%8F&9G&9G':H':H(;I(;I)L,>L-?M-?M,>L,>L,>L-?M-?M.@N.@N.@L0@M0AK2@K3AL4@L5AM7AK7AK;BL;BL>BK?CLADMBENEEOEEOADMADMBENBENCFOCFODGPDGPDGPDGPEHQEHQFIRFIRGJSGJSHFTIGUIGUIGUJHVKIWKIWKIWKIWLJXMKYNLZOM[PN\QO]QO\TN\TNZTNZTNZROZROZQO\QO\PN\QO]PO_PO_NP_NP_OQ`PRaMPaMPaNQdNQdORePSfPRgQShPRiPRiPRiOQhNPiNPiNPiKOhLPiKQiJPhJPhJPjJPjJPjJPjLQnLQnMRpMRpMRpNSqNSsNSqMSmMSkNTlNTlOUmOUmPVnPVnOUmPVnQWoRXpRXpQWoPVnOUmRSoRSoRSqRSqPTqPTqPSrOTrQVvQVvPVvQWwRXzRXzPYzQY}QV|QV|QV|QV|QV|QV|QV|QV|RW}RW}RW}RW}RW}RW}RW}PX}O[N\N\O]‚O]„P^…P^…P^…P]‡P]‡P]‰P]‰P]‰P]‰P]ŠP]ŠR_ŒR_ŒR_ŒQ_ŒQ_ŒQ_ŒO`ŒO`ŒO`ŒObObObNcŽOdOdOdMdMdNe‘Of’Pf•Qg–Rh™Rh™RhšRhšTjœUjŸVk Xm¢Yn¥Yn£[p¥\q¦\q¨]r©^s¬_s®`t¯at¯ex²hy±iz°iz®gy©bt¢]p›[l—\k”Yh‘WfVg’]nšcu£gy©g{®j´j¶h~¸f~ºf~¼f¿f¿f¿k€Ák€ÁlÁk¾j~½j~»k~¹j}¸jzµj{³j{³j{±kz±k{¯k{¯jz­l|¯l|¯l|°k|°k|´i|´k{¶k|´n}¶p}´s|µu|³w|³y|±{}°||®~|­{­~z¬€zª€x©€x§x§€w¦…x¦„w¥…u¢…t¡„qžl™yds]fNd_GUWL,>L-?M-?M,>L,>L,>L-?M-?M.@N.@N.@L0@M0AK2@K3AL4@L5AM7AK7AK:AK;BL>BK?CLADMBENEEOEEOADMADMBENBENCFOCFODGPDGPDGPDGPEHQEHQFIRFIRGJSGJSHFTHFTHFTIGUIGUJHVJHVKIWKIWKIWLJXMKYNLZOM[PN\PN[TN\SMYRLXRLXPMXPMXPN[QO\OM[QO]QP`QP`MO^LN]NP_OQ`MPaNQbNQdNQdNQdOReOQfOQfPRiOQhOQhNPgNPiMOhMOhKOhLPiKQiJPhJPhIOiIOiIOiIOiMRoMRoMRpMRpMRpMRpMRrMRpLRlLRjMSkMSkNTlNTlOUmOUmNTlOUmPVnQWoQWoPVnOUmNTlSTpSTpSTrSTrQUrQUrQTsQTsQVvRWwQWwRXxRXzSY{QZ{QZ{QV|QV|QV|QV|QV|QV|QV|QV|RW}RW}RW}RW}RW}RW}RW}PX}NZ€M[€M[€N\N\ƒO]„O]„O]„O\†O\†O\ˆO\ˆO\ˆO\ˆO\‰O\‰R_ŒR_ŒR_ŒR_ŒQ_ŒQ_ŒQ_ŒO`ŒO`ŒO`ŒNaŒObMbNcŽNcŽOdLcLcMdNd“Oe”Pf—Qg˜Qg™RhšShTižUj¡Vk¢Wl¥Xm¦Xm¤\r¤\r¤\q¦]r©]r«]q¬^r¯^r¯cw´dxµg{¶h}¶g|³dy®aw©_s¥bs§_p¤\p£^r§cw¬g|³i~·i¹mƒ¿j‚ÀiÁg€Àg€ÂfÄg‚ÅjƒÆiÁj¾k¾j~½j~»i}ºj}¸j}¸iyµiy´iy´hy±ix±hw°hw®hw®k{¯j|®j{¯h|±h{³h{³h{µh{µl|·n}¶q{¶r{´u|³w|³y|±z|¯}{­}y«}y«|xª~wª~v§~v§v¥„x¦„w¥„t¡„s n›yf“q\‡kUy\F[V@ML6BF.;C)6A%1>".> *;%;%9#8"6!40.0/.----.++*)'&%%&'%$" !                                                                                   $ & & % # #              ! " # $&/000-+ ' & ' ()*)(('()))(&$# " " " " " " " "                                         $7E$7E$7E%8F%8F&9G&9G&9G&9G&9G':H':H(;I(;I)L,>L-?M-?M,>L,>L,>L-?M-?M.@N.@N.@L0@M0AK2@K3AL4@L5AM7AK7AK:AK:AK=AJ>BK@CLADMDDNEEOADMADMBENBENCFOCFODGPDGPDGPDGPEHQEHQFIRFIRGJSGJSGESHFTHFTIGUIGUJHVJHVJHVKIWKIWLJXMKYNLZOM[PN\PN[TN\SMYQKWPJVNKVOLWPN[QO\OM[QO]RQaQP`LN]KM\LN]OQ`ORcORcNQdNQdNQdMPcMOdMOdOQhOQhOQhNPgNPiMOhMOhJNgLPiKQiJPhJPhIOiHNhHNhGMgMRoMRoMRpLQoLQoLQoLQqLQoKQkKQiLRjLRjMSkMSkNTlNTlNTlOUmPVnQWoQWoPVnOUmNTlSTpSTpSTpSTpQUrQUrQTsQTsRWuRWuQWwRXxRXzSY{QZ{R[|QV|QV|QV|QV|QV|QV|QV|QV|QV|QV|QV|QV|QV|QV|QV|OW|MYLZLZM[€M[‚N\ƒN[…O\†O\†O\†O\ˆO\ˆO\‰O\‰O\‰O\‰Q^ŠQ^ŠQ^ŠQ^ŠQ^ŠP_ŠP_ŠP_ŠN_ŠO`‹Na‹ObŒObŒPcPcNcŽKbŽKaLb‘Mc”Nd•Oe–Pf˜PešShTi Ti Uj£Vk¤Wk¦Xl§Xm¦]s¥]s¤^s¨^sª_t­`t±_t³_tµez»f{¼g|»h~ºg}·e{´cz°aw°cw²bv³au²bw¶f{ºg½f~¾c|¼g€ÂhÃi‚ÅhƒÆhƒÆh…Ég„ÈhƒÆh€Àj€¼k¼j~»j~»i}ºj|ºi{¹hx¶hx´gw³gw²gv±fu°fu°et­gx®ey¬ey®dy®dy°dy²dx³ex³gzµjzµmy³oz²ry°ty°ty°vy®yy«{y«{y«{w©{w©|v¦}u¦~u¤ƒw¥‚u£qžn›{h•r_ŒhR€_KpR?RK:DE1<@*6>'1>$/=!-; );%;%9#8"5 3.+-,--,+))((''&%%%&''& " !   !                                                                                  $ ' ' % $#   !         ! " # % .000.-+ * ( )*+,+)((((('%#" ! ! ! ! ! ! ! !                                            $7E%8F%8F&9G&9G':H':H':H&9G&9G':H':H(;I(;I)L,>L-?M-?M,>L,>L,>L-?M-?M.@N.@N.@L0@M0AK2@K3AL4@L5AM7AK7AK:@L:AK=AL>BM@BNACODDPDDPACOADMBDPBENCEQCFODFRDGPFFRFFPGGSGGQHHTHHRIIUIIUGESGESHFTHFTIGUIGUJHVJHVJHVKIWLJXMKYNLZOM[OM[PN\RN\QM[OKYNJXMKXNLYPN[PO]OM[PO]RQaQP`KM\JL[LN]OQ`QRdORcPQeNQdMPcLObLNcLNcOQhOQhNPgNPgMOhKOhLNgJNgKQiKQgJPhJPhIOgHNfGMeGMeMSmMSmMRoLQnLQnLQnKPmKPmLPkLPiNPiMQjOQjNRkPRkOSlQSlPTmSUnQUnSUnQUnRTmQSlSUnSTpSTpSTpQUrQUrQTsQTsRWuRWuRXxRXxSY{SY{R[|RZ~OW|OW|QV~OW|QV~OW|QV~OW|QV~OW|QV~OW|QV~OW|QV~OW~LX€LZMYLZNZ„N[…N[…N[…N[‡N[‡N[‡N[‡N[ˆN[ˆN[ˆN[ˆQ^ŠQ^ŠQ^ŠQ^ŠQ^ŠQ^ŠP_ŠP_ŠP_ŠN_ŠO`‹Na‹ObŒObŒPcŽNcŽK`KaLb“Mc”Nd•Oe–Pf˜PešTi Ti Uj£Vk¤Vk¤Wk¦Xl§Xm¦^r¥_s¥`t©at¬cv±cw´dw¹exºj}Ái~Ái~Áf~¾g|»c{¹ayµ`x´bzºax»cx»cz½f}Àg~Ác|¿az½^y¼`{ÀdÄhƒÊi„Ëg„ÊfÈe€Åh€Àh€¾i~½i~½i}¼i}¼i{»i{»fx¸ewµewµcw´bv³au°au²`t¯av­av«av­`w­`v°^w°`v²`v²dxµex³hw²lv±mv¯pw®qv­sv«xz­yy«zxª{w©zv¨|v¦|t¥}t£€t¢ržnš}j—ydnY„bKwYCgM:MI5@A-8='3<$1=#.<"-; )9%:&:$8"5 2,*++--,*(&''&&%%%&&%%$ !    !                                                                                 ! $ % % # # !    ! " !        ! " # % .0010., ) ))+,,*)()((('%#" ! ! ! ! !  ! !                                                     %8F%8F%8F&9G&9G':H':H':H(;I(;I(;I(;I(;I(;I(;I(;I,>L,>L+=K*L,>L-?M-?K0@M0AK2@K3AL4@L5AM7AM7AM;AO;AM>BN>BN@BO@BOCBPCBPACPACOBDQBDPEDREEQFESFFRGESHFSIGUJHUKGVJFTIETHDSHFTIGUIGUJHVJHVKIWKIWKIWMKYMKYMKYNLZOM[OM[OM[PN\MLZMLZMLZMLZMLZMLZMLZKM\ON^MO^MO^NP_OQ`OQ`OQ`PRaMN`MN`OMbMNbMNbMNbLNcLNcNPgOQhMRhMRhLPiJPhIMfGMeIOeHObHNdGMcHNdIOeKQgLRhLRhMSiMSiMSiMSiLRhJPfJNgNNhPMhQMhPMhQMhPMhQMhPMhSOjSPkVRmWToXToWToVRmTQlSSmRTmSUnSUnRVqRVqSWtSVuRWuRWwQWyQWyQW{QW{OW{OW|QY€PY€QX‚PY€QX‚PY€QX‚PY€OV€NW~OV€NW~OV€NW~OV€NW€LU€KVƒNV„MX…PX†P[ˆQ\‰Q\‰MZ‡N[ˆM[ˆN\‰O]ŠP^‹P^‹R_‹N[…O[…O[…O[…N[…N[…N[‡M\‡P^‹N_‹O`ŒO`ŒPaPaOaNcOd“Nd•Mc”Mc”Mc”Mc”Mc•Lb”RgœRgœShŸTi Uj¡Vk¤Wl¥Xk£\m¡_p¤ar¨arªaq­as±ew¹iz¿k|Âi|Ágz¿ez½ex¼dy¼ez»d|¼d|¼d}½e|¿e~ÀfÂfÂgÅgÅgÅgÇgÇh€Êh€Êf€Êi€ÌiËgÅg€Ãg~Âg~Âi~Ái~Ái|¾i|¾bu·`u´[s±Xr¯Tr®Rr«Rr­Ts¬Un§Xn§Wp©WqªXr¯Zt±[t´\t´^s²`t³dt²ht°lu°ov­qv­sv«rt§tt¦xv§yu§{t§zr£}qŸ}pœƒtŸƒrœƒn—}ft[ƒiOv`DlZ?`P7LN6DI1?D,9B(5?%0<"-;!*8%7$5 3211010/.-+**&&%%$$$#!!                                                                                      "%%#                        ! #'-03331.++))&&$ $ $ ***))('&                                                       %8F%8F%8F&9G&9G':H':H':H(;I(;I(;I(;I(;I(;I(;I(;I);I*L,>L-?M-?K0@M0AK2@K3AL4@L5AM7AM7AM;AO;AO=@O>AP?AP@BQBAQCBRACPACPACPBDQDCQEDRFDRGESGESHFTJFUJFULEULEUKDTHDSIETIGUIGUIGUJHVJHVKIWKIWLJXMKYMKYNLZNLZOM[OM[NM[ML\KM\KM\KM\KM\KM\KM\KM\LN]MO^MO^NP_NP_OQ`OQ`OQ`ON`ON`OMbOMbMNbMNbLNcLNcNPgNPgMRhMRhKQiJPhHNfGMcIOeHObHObGNaHObIPcKReLSfLSfLSfMTgMTgMTgKReJQdJOcPMhQMhRLhQMhRLhQMhRLhQMhTNjTPkWQmXToYSoXToXRnVRmSSkRTkRTmSUnQUpRVqRVsSWtSXxSXxRXzRXzRX|RX|PX}PX}PY€PY€PY‚PY€PY‚PY€PY‚PY€NW€NW~NW€NW~NW€NW~NW€NW€MUƒMU„NV…MX†PX‡P[‰Q\ŠP]ŠP]ŠO]ŠO]ŠO]ŠN\‰L]‰N\‰N]ˆN[…N\ƒN[…N[…N[…M\…M\‡M\‡O]ŠM^ŠN_‹M`‹N`ŽN`ŽOaMbNc’Mc”Mc”Mc”Mc”Nd•Nd–Nd–RgœShTi Uj¡Vk¢Wl£Wl£Ym¢^o¥ap§cr«cs®cs¯ds´ix»k|ÁizÀgz¿fy¾ex½dw¼cw¼dy¼by¼e~ÀcÀe~Àc~ÁfÂdÄf~ÄdÆf~ÆeÉgÉeÊg~ÊeÌg~ÌeÊc~Åc~Ãc~Åd|Âd{Áey¾ey¾ez½_t·\t´Ws²Tr°Pr¯Ls¬Ls¬Ot«Tn©Xn¨Wo«Wq¬Xr¯Ws²Xtµ[t´[s³_s²br°gr°js®mt«ot«qt©su¨tt¦vt¥ws¥xr¢ypŸ{o}n™o™l•}gŽw^…oSyfHl^>cY:YP5HN3BJ/>E*9A'4>$1<"-;!*7&6#42000./..,+*))%%%$###!!                                                                                          ""                          ! #'.03432.++))'&%$ $ *,))((&&                                                   %8F%8F%8F&9G&9G':H':H':H(;I(;I(;I(;I(;I(;I(;I(;I'9G(:H);I);I+=K+=K,>L-?M*L,>L-?M-?K0@M0AK2@K3AL4@L5AM7AM7AM:@N;AO=@O>AP?AP@BQBAQBAQ@BOACPACPBDQDCQEDRFDRFDRFDRGESIETJFULEUKDTJCSGCRIETHFTHFTIGUJHVJHVJHVKIWLJXLJXLJXMKYMKYNLZNLZMLZLK[JL[JL[JL[JL[JL[JL[JL[LN]LN]LN]MO^MO^NP_NP_NP_NM_NM_LMaLMaLMaLMaKMbKMbKPfKPfLQgLQgKQiJPhHNfGMcIOeHObHObGNaHObIPcKReLSfKReLSfMTgMTgLSfKReJQdJOcLLfNKfOKfNKfOKfNKfOKfNKfTPkTQlVRmVSnXToWToWSnVSnRRjRTkRTmSUnQUpRVqRVsRVsTYyTYySY{SY{SY}SY}QY~QY~QY~QY~QY€QY~QY€QY~QY€QY~NV}NV{NV}NV{NV}NV{NV}MV}NW‚LW„MX…MZ†OZ‡O\ˆO\ˆO^‰Q`‹O`‹N_ŠM^‰L]ˆJ]‡J[†J[†K]…M\ƒM\…M\…M\…K]…K\‡J]‡K^‰I^‰J_ŠJ_ŠK`K`LaŽLaŽMb‘Mb‘Mb‘Nc’Od“Pe”Qe—Qe—Th›Th›UižVjŸWk Xl¡Ym¢Zn£`q§bs©du­eu°eu±dv¶i{½m~ÃizÀgyÁew¿cw¾bv»cw¼cx»by¼dÂc€ÂdÂc€Äc~ÃbÅc~Åb~Çc}Çb~Èc}Èb}Êc}Êb}Ìc|Ìb}Ê`|Å_|Â^zÃ^yÀ_w¿^u»]tº]t¸ZqµXq³Tp±Qq®Mo¬Jq¬Kr«Mr©Tn©Wm§XnªWo«Wq®Xr¯Yr²Yr²Yq±\p¯^q¬bq¬fq©hq¨kr¨lr¦qs¦qq£rp¡rn tnžvmšyl˜|k—j“{eŒw]„oSyiInb@c[7[U4QM2EI1?E-:A)6=%2;#09",8!)4%3"0.,,+,,++*)('&$###"! !                                                                                                                       ! #'.23432.++**' & & & % ++((''%%                                                  %8F%8F%8F&9G&9G':H':H':H(;I(;I(;I(;I(;I(;I(;I(;I(:H);I);I*L*L,>L-?M-?K0@M0AK2@K3AL4@L5AM7AM7AM:@N:@N&3;#09",8!+7 (3$2!/,*)))((''&%%$"""! !                                                                                                                      ! #'.23442/-.++) ) & ( ( **''&&$$                                                   "! %8F%8F%8F&9G&9G':H':H':H(;I(;I(;I(;I(;I(;I(;I(;I,>L+=K+=K*L,>L-?M-?K0@M0AK2@K3AL4@L5AM7AM7AM9?M:@N@O?APA@PA@P?AN@BO@BO@BOCBPDCQECQECQECQFDRHDSIETKDTJCSIBRFBQHDSGESGESHFTHFTIGUIGUJHVJHVJHVJHVKIWKIWLJXLJXKJXJIYHJYHJYHJYHJYHJYHJYHJYJL[JL[JL[KM\KM\LN]LN]LN]KL^KL^KL`KL`JM`JM`JLaJLaHMcINdIOeJPfJPhJPhHPgGOdIOeHObHObGNaHObIPcKReLSfJQdKReLSfLSfKReJQdIPcINbKMdLLdLLdLLdLLdLLdLLdLLdQQiQQiQQiRRjRRjSSkTTlTTlPRiQSjOSlOSlPToQUpPUrPUrUZzTZzTZ|TZ|RZ~RZ~RZRZSY}SY}SY}SY}SY}SY}SY}SY}RX|RX|RX|RX|RX|RX|RX|PX}NZ‚M[‚N[…N\ƒM\…N]„N]†N]„K]…K]ƒK^†K_„L_‡L`…KaˆKa†H^ƒH^ƒJ]…H^…H^…H^…H^‡G^‡G^ˆG`‰G`‰Ea‰H`ŒFaŒGbIaLaŽOaPbQc‘Rd’Tf”Ug—Ug—VhšVhšWi›XiYjžZkŸ[l [l¢]q¦_rªat®au°au´cv¸gz¾j~Ãh|Ãe{ÄdzÃby¿by¿ay¿bzÀ`{ÀaÇ_€Ç^~Ç]}Æ]}Æ\|Å[{Æ[{Æ[{È[{È[{ÈZyÉYxÈYxÈXwÉWxÇVwÄVxÂUuÀSs¼Tr»So¸Rl¶Rm´Rm²Pm¯Nk­Lk«Jl«Im©HoªLo©Sm¨Wm©Wm©Wm©Xm¬Vn¬Xm¬XnªXnªYm¨\m¥]l£`m¢am¡dkŸflžgišge–fb”jd”pg”ti”wfuc‹v]„oUxhJlcBa_:[\5TW.LO,DF);A)6>&3;#09",7 *7 *6'3$1 /,)(''%$$###""!!                                                                                                                      "%.25442/. /..+ + ) * ( ))&&%%##                                                    !##!  %8F%8F%8F&9G&9G':H':H':H(;I(;I(;I(;I(;I(;I(;I(;I-?M,>L+=K+=K);I);I(:H'9G*L,>L-?M-?K0@M0AK2@K3AL4@L5AM7AM7AM9?M9?M;>M@O@?OA@P?AN?AN?AN@BOBAOCBPDBPECQECQFDRHDSIETKDTJCSIBRFBQGCRGESGESGESHFTIGUIGUIGUIGUIGUIGUJHVJHVKIWKIWJIWIHXGIXGIXGIXGIXGIXGIXGIXIKZIKZIKZJL[JL[KM\KM\KM\KL^KL^KL`KL`JM`JM`JLaHMaGLbGMcHNdIOeJPhIOgHPgGOdIOeHObHObGNaHObIPcKReLSfJQdJQdKReKReKReIPcHObHMaKMdKMdLLdKMdLLdKMdLLdKMdPPhOQhOOgNPgPPhPRiRRjRTkPRiNSiNRkOSlOSnOUoOTqOVrSYySYySY{QZ{QY}QY}QY~QY~SY}SY{SY}SY{SY}SY{SY}SY{TZ~TZ|TZ~TZ|TZ~TZ|TZ~RZ~R[‚P\„P\„O]„O]„O]„O]„N]„L[‚J\‚K]ƒL^„M_…Ma†Nb‡Nb‡H^ƒH^ƒH^…H^…H^…G_…G^‡G^‡H_‰G`‰HaŠFbŠGbGbHcŽJbŽNcŽPcŽQc‘Rd’Se“Tf”Tf–Tf–Tf˜Ug™VhšWi›XiYjžZkŸZk¡Yl¤[p©]q¬\r®]p²^s¶bv»d{ÁdzÃbzÂbxÁ_w¿_w¿]x½`x¾]zÀ\|ÅX|ÆX|ÈX|ÈX|ÈW{ÇW{ÉW{ÉW{ÉVzÈVyÊUxÉTwÈSvÇRuÆQtÅRvÄRvÂQuÁQs½Qq¼Oo¸Pn·Pn¶Nl²Ml¯Lk¬Ik«IkªIm«JnªLn«SmªVl¨VkªVkªVkªWl«Xl©Xl§Yl§[k¦^k¢_j `jŸbici›fh™hf—hb’g_jaŽpesdq_‡nZlTvfKj`A`\:UZ6RX2KS+EM'L,>L-?M-?K0@M0AK2@K3AL4@L5AM7AM7AM8>L9?M;>M@O@?O@?O>@M?AN?AN@BOBAOCBPDBPDBPECQECQGCRHDSJCSIBRHAQFBQGCRFDRGESGESHFTHFTHFTIGUHFTHFTHFTIGUIGUJHVJHVJIWHGWFHWFHWFHWFHWFHWFHWFHWHJYHJYHJYIKZIKZJL[JL[KM\IL]IL]IL_IL_IL_IL_GL`GL`FKaFLbGMcHPeHPgHPgHPgGOdIOeHObHObGNaHObIPcKReLSfIPcJQdKReKReJQdIPcHObGNaKPfKPfMOfKPfMOfKPfMOfKPfNPgKPfLNeJOeLNeLQgOQhOTjMRhNSiNRkNTlNTnOUoOTqNUqRXxPYxPYzPYzPX|OY|OY}PX|SY{SYySY{SYySY{SYySY{SYyU[}U[{U[}U[{U[}U[{U[}U[}T\S\ƒR[‚P\‚P\‚P\‚P\‚O]‚O]‚N^‚N^‚N^‚O_ƒM_ƒM_ƒM_ƒJ^ƒJ^ƒJ]…J]…J]…H^…H^‡G^‡I`ŠHaŠIb‹Ib‹JbŽJbŽKcLcReSdSdTe‘Te“Te“Te“Te“Td•Td•Ue˜Vf™WgšXh›YiYj Ti Uk¤Wm§VnªWl­Wn±\s¹^v¾^v¾[u¿\t¾Xr¼Xr¼WtºYt»Wu½UyÅTyÇTyÇTyÇUzÊUzÊUzÊUzÊTyÉTyÉSxÉRwÈPuÆOtÅNsÄNsÄPuÅOtÂOtÂNt¿Nr¾Pr¼Pp¹Pq¸Kl±Kl¯Jl¬Ik«IkªJl«KmªNn«Sl¬TlªVk¬VkªWkªVj©Wi§Yi¥\k¦^j¤`i¢bi ehŸfgegšhf˜me–mak_m`Œqbp^†iT{bLpaHh]@^V8RU3KU2JT.CM'L,>L*L,>L-?M-?K0@M0AK2@K3AL4@L5AM7AM7AM8>L8>L;>M;>M=?N=?N@?O@?O>@M>@M?AN?ANBAOBAODBPDBPDBPECQGCRHDSJCSIBRHAQEAPGCRFDRFDRGESGESHFTHFTIGUGESHFTHFTHFTIGUJHVJHVIHVHGWFHWFHWFHWFHWFHWFHWFHWGIXHJYHJYHJYIKZJL[JL[JL[IL]IL]IL_IL_IL_GL_GL`FM`DJ`EKaFNcHPeHPgHPgHPgGOdIOeHObHObGNaHObIPcKReLSfIPcJQdJQdKReJQdIPcGNaFM`KPfKPfKPfKPfKPfKPfKPfKPfKPfJOeINdHMcINdJOeLQgNSiMRhMRhMSkMSkNTnNTnNUqNUqOXwOXwOXyOXyNX{NX{NX|NX{QZ{SYySYySYySYySYySYySYyW]}W]}W]}W]}W]}W]}W]}W]V[V[ƒT\ƒT\ƒS[‚R[‚R[‚R[‚S_…R^„R^„P^ƒO]‚N\N\L\€K]ƒK]ƒK]…K]…K]…J]…J]‡H^‡K`‹Ja‹KbŒKbŒLcLcLcMdTg’Te‘Te‘Te‘Te“Te“Sd’Sd’Sc”Sc”Td—Ue˜Vf™WgšXhœXiŸPfŸPi¢Rj¦Rl©Rk­Sl¯Xp¸Zt¾Xr¼Vr»TpºSo¸Rn·Rp¸Rp¸QqºQvÄPvÇQwÈRxÉRxÉSyÊTzÍTzËSyÊRxÉQwÈPvÇNtÅMsÄLrÅLrÅNtÅNuÄNuÄMtÁNsÁOs¿Os½Pr¹Jl³Kl¯Jk®Kj«Lk«NlªOm«Qm¬Sl¬Vk¬Vk¬Vj©Wi©Yi§Zh¥\f£aj¥ch¢eg gfŸifidškdšmc—tg•tcq`Œr`Št_ˆnZcMqZBbY@]U9RO2HO/DO0BN->F&5?!-9",7")5 )4&3%3%3%3%4&2$/!+(&%$ !!!!""""""!!                                                                                !!    !!"""                           "$-/33430/ 000//. . , ( & $ # # " ! !                                                 #%#    &9G&9G&9G&9G&9G&9G&9G&9G(;I(;I(;I(;I(;I(;I(;I(;I+=K+=K+=K+=K+=K+=K+=K+=K,>L,>L,>L,>L,>L,>L,>L,>J0@M0AK2@K2@K2>J2>J4>J4>J8>L8>L;>M;>M=?N=?N@?O@?O?AN@BO@BOACPCBPDCQECQECQDBPDBPEAPEAPG@PG@PG@PEAPFBQECQECQECQECQECQECQECQECQFDRFDRGESGESHFTHFTGFTML\IKZFHWDFUCETDFUGIXIKZFHWFHWGIXHJYIKZJL[KM\KM\GJ[GJ[EJ]EJ]EJ]EJ]EJ^DK^DJ`DLaDLaEMbCNdDOeDOeFNcIOeIPcIPcIPcIPcIPcIPcIPcKReJQdIPcHObGNaHObIPcIPcJOcJOcJOcJOcJOcJOcJOcJOcHMaHMaINbINbJOcKPdLQeLQeIOeJPfLRjNTlNUoOVpOVrOVrLUtLUtKVvLWwMWzMWzKX{NX{OXyQWwQWwRXxSYySYySYyTZzTZzTZzTZzTZzTZzTZzTZzTZ|Y]ƒY\…Y\…Y\…X]…X]…X]…V^…T\ƒT\ƒR[‚R[‚R[‚P\‚O[O[Q_†P_†O^‡O^‡N]†N]†M\‡K\‡N_‹M`‹M`‹LaŒMbMbMbNcQc‘Qc‘Qc‘Qc‘Qc‘Qc‘Qc“Qc“VhšVhšUfšUfšTe™Sd˜Rc—Pd™MfžMg¢Nh¥Nj©Ok¬Ql¯Rm´Rn·So¹Rp¹QnºQo¸Qo¸Qr¹RsºRt¾KrÁLuÇNwÉNwÉLuÇMvÈPxÍT}ÏKtÆKtÆKtÆKtÆKtÆKtÆKtÆKtÆKtÄJsÃJsÃLsÂKr¿Kq¼KqºLq·Jl³Jk®Ij­JiªLjªOkªSl¬Tm­Nf¦TiªYl®Zl¬[i¨^h¦aj¥gl¦hi¢kh¡nfŸofpere›sd›vd˜{e“w`ŠpYƒlS{fMt]EgS:XL4NM3LL3HM2EK0?G-:B(3>$/;!*8#*4!%2%2%3 &3 &1$.!++)&$"     !"""#!                                                                            ! ! "! " " " " ###'&&%%$$#                           ' * . /2333- . ///. , + )' $ " !                                                     !!!! &9G&9G&9G&9G&9G&9G&9G&9G(;I(;I(;I(;I(;I(;I(;I(;I+=K+=K+=K+=K+=K+=K+=K+=K,>L,>L,>L,>L,>L,>L,>L,>J0@M0AK1?J1?J2>J2>J4>J4>J8>L8>L;>M;>M=?N=?N@?O@?O?AN@BO@BO@BOCBPCBPECQECQDBPDBPEAPEAPG@PG@PG@PEAPFBQECQECQECQECQECQECQECQECQFDRFDRFDRGESGESHFTGFTLK[HJYEGVCETBDSCETEGVGIXEGVFHWGIXHJYIKZJL[KM\KM\GJ[GJ[EJ]EJ]EJ]DK]DK^DK^CK`DLaDLaBMaCNdCNdDOeDOcGOdHObHObHObHObHObHObHObJQdJQdHObGNaGNaHObIPcJQdJOcJOcLNcJOcLNcJOcLNcJOcKMbINbKMbJOcLNcJOcLNcKPdIOeJPfLRjMUlNUoOVpNUqLVqKTsKVtKVvLWwLVyKXzKX{KXzNWxOXwQWyPYxRXzQZySY{QZySY{QZySY{QZySY{QZySY{SY{X\‚Y[„Y[„Y[„X[„X[„W\„W\„V[ƒW\„U]„U]„T]„T]„U^…U^…S_‡R`‡Q^ˆQ^ˆP]‡P]‡O\ˆN]ˆP^‹N_‹N_‹NaŒN`ŽOaOaPbRd’Pe’Rd”Pe’Rd”Pe”Rd”Pd–VhšTh›UfšSgšTe›Qe˜SdšOd›JdHf¢Jf¥Ki©Li«Ml¯Ok´Om¶Ol¸Ll·Ll·Jl¶Ll·Ln¶Np¸Mq»JpÁJrÇMuÊMuÊMuÊNvËOwÌQyÎJsÅJsÅJsÅJsÅJsÅJsÅJsÅJsÅItÃItÃJsÃIrÁKr¿Jq¼KqºKp¶Lo³Lm°Lk¬LjªMi¨Pj§Uj©VkªQe¤Vh¨[k©`k©`h¦ch¢hi¢mj¡ngoešqc˜ra•r^“q]’r[rZŠsXoSygKq`Eh[@aT9XM3NH/EH/DF/AE/J2>J4>J4>J8>L8>L;>M;>M=?N=?N@?O@?O?AN?AN?AN@BOCBPCBPDBPECQDBPDBPEAPEAPG@PG@PG@PEAPFBQECQECQECQECQECQECQECQECQECQECQFDRGESGESGESGFTIHXFHWCETACRACRBDSCETEGVEGVEGVFHWGIXHJYIKZJL[KM\GJ[EK[EJ]EJ]DK]DK]DK^CK^CK`CK`AL`BMaCNdBNdBNdDOcGOdHObHObHObHObHObHObHObIPcIPcHObGNaGNaHObIPcKPdMPcMPcNOcMPcNOcMPcNOcMPcMNbLObMNbKNaLMaKNaLMaJLaIOeIQfKSjMUlNUoLVoKUpKUpKTsJUsJUuIVvIVxJWyJWzJWzMWzMXxNVzNYyOW{OZzPX|OZzQY}P[{QY}P[{QY}P[{QY}QY}WZƒXY…XY…XY…WZ…WZ…V[…V[…V[…V[…U\†V]‡V_ˆW`‰W`‰W`‰V_ˆT`ˆS_‰S_‰R^ˆQ^ˆP]‰O^‰O]ŠP^‹P^‹N_‹O`ŽO`ŽPaOaPe”Oe”Pd–Oe”Pd–Oe–Pd–Oe—SgšRgœRf›Qf›QdœPešQdœNdGdžEe Ge£Hg§Ji¬Ij¯Lj³Kk¶Ii´Hi¶GhµEiµGhµGkµHl¶Hn¹JpÃIqÈJrÉMuÌOwÎOwÎMuÊKsÈJsÅJsÅJsÃJsÃJsÃJsÃJsÃJsÃHrÄHsÂHsÂGrÀHr¾Iq¹Jp·Kp¶Lo±Nm®Nl¬Pi©Qi¥Si£Vi¤Yi¥We¢]g¥bk¦fk¥gh ifmd™qe—qa’r^q[ŠnW…mQjO|gLygKtdFj_BaW:YQ4RM0LG-FD+AB)*5<(16%-3"(0%.!3 $1 ../ / - *)(&$"                                                                           ! ""! ! " $%&'(((('&&&$                           $ & ( *+++*-.//..-)' $ " !                                                      !!!   !&9G&9G&9G&9G&9G&9G&9G&9G(;I(;I(;I(;I(;I(;I(;I(;I*H0>I0>I1=I2>J4>J4>J8>L8>L;>M;>M=?N=?N@?O@?O>@M?AN?AN@BOBAOCBPDBPDBPDBPDBPEAPEAPG@PG@PG@PEAPEAPDBPDBPDBPDBPDBPDBPDBPDBPECQECQFDRFDRGESGESFESGFVDFUBDS@BQ@BQ@BQACRBDSEGVEGVFHWGIXHJYIKZJL[IL[DJZDJZDI\DI\CJ\CJ\BJ]BJ]BJ_AL`AL`BMaAMcBNdBNdCNbFNcGNaGNaGNaGNaGNaGNaGNaHObHObGNaFM`GNaHObIPcKPdMPcNOcNOcNOcNOcNOcNOcNOcNOcNOcMNbLMaKL`KL`JK_IL_IOeIQfKSjLTkKUnKUnJToIUoITrITrGTtHUuHUwIVxHVyHVyJWyJWyJWyKXzKXzLY{LY{LY{MZ|MZ|MZ|MZ|MZ|MZ|MZ|OY}TYƒUXƒUX…UXƒTX…TYƒRY…RYƒQX„QX‚QZ…R[„R^ˆS_‡T`ŠUa‰T`ˆT`ˆS_‰R_‰R^ˆQ^ˆP]‰O^‰N\‰L]‰M^ŠM^ŠN_M_O`ŽN`Nd•Me•Nd–Md–Nd–Md–Nd–Md˜PešOfœPeœNe›OdNdOdLežFežEe¢Gf¦Fh¨Hi®Ij±JjµJl¶GhµEiµDh´Dh´EiµEk¶Fl·FmºGoÄGoÆHpÇLtËPxÏOwÌKsÈFoÁIrÄIrÂIrÂIrÂIrÂIrÁIrÂIrÂGrÁGrÁGrÀFr½Gq»Fp¸Io¶Jo³Il¬Lk«Nj©Rj¨Vj¥Zj¥\k¦_i¤ej¤hi¢jj kfœld—l`l\‰m[…kT~lRyiMueGm`Bf\@'<>%8<%5;'39(27&.5$,2#(/ %-!, / .,,--+(&&$#!                                                                              ! "##! ! # $&(**)((''&&%!                            ! " %%%')+,/0/..)' $ " !                                                           !  &9G&9G&9G&9G&9G&9G&9G&9G(;I(;I(;I(;I(;I(;I(;I(;I*J4>J5?K8>L8>L;>M;>M=?N=?N@?O@?O>@M>@M>@M?ANA@NBAOCAODBPDBPDBPEAPEAPG@PG@PG@PEAPEAPDBPDBPDBPDBPDBPDBPDBPDBPDBPDBPECQECQFDRFDRFESEDTBDSACR@BQ?AP?AP@BQ@BQDFUDFUEGVFHWGIXHJYIKZHKZDJZCJZCJ\CJ\CJ\CJ\BJ]BJ]@K_@K_@K_@M`@LbAMcAMcCNbDLaEL_EL_EL_EL_EL_EL_EL_GNaFM`FM`FM`FM`HObIPcKPdOPdQOdQOdQOdQOdQOdQOdQOdOMbOMbNLaNLaMK`LJ_KI^IJ^IOeIQfITjJUkJTmJTmHTnGSmHSqFTqFSsGTtFUvGVwGUxGUxHVyHVyHVyIWzIWzJX{JX{JX{JX{JX{JX{JX{JX{JX{JX{KW}NW‚OV‚OV„OV‚NV„NW‚LW„LX‚ITJV€JWƒKX‚KZ…L[„M\‡N]†Q_†Q_†Q^ˆO^‡P]‡N]†N]ˆK\‡J[‡I\‡I\‡J]ˆJ\ŠI^‹K]‹J_ŽJa“Hb“Ja•Hb•Ja•Hb•Ja•Ha—Lc™Jc›Lb›Jc›LbœJcœMcJdŸFd Df£Eg¦Fi©Gj®Ik²Jl¶Im¹Gk¹Ej¸Di·Di·Ej¸El·Gn¹Ho¼GoÄFnÆGoÆJrÉNvËMuÊIqÆDm¿GpÂGpÀGpÀGp¿Gp¿Gq½Gp¿Gp¿GpÀGpÀGp¿Fp¼FpºEpµHo´Io°Gi¨Ki§Pj¥Vj¥[k¦_k¥ak¦fk£pk¡qg›oc“m]ŒjW„hQ{fLqeJk_Ba^@\\;XV5PP/JK*EG&AB$J4>J5?K8>L8>L;>M;>M=?N=?N@?O@?O=?L>@M>@M>@MA@NBAOCAOCAODBPDBPEAPEAPG@PG@PG@PEAPD@OCAOCAOCAOCAOCAOCAOCAOCAODBPDBPDBPECQFDRFDREDRDCSBDSACR@BQ@BQ@BQ?AP?APCETDFUEGVFHWGIXHJYIKZHKZCIYBIYBI[BI[BI[BI[AI\AI\?J^@K_?L_?L_@LbAMcAMcBMaCK`DK^DK^DK^DK^DK^DK^DK^EL_EL_EL_EL_FM`HObIPcLQeOPdQOdROdQOdROdQOdROdQOdOLaMK`NK`MK`NK`LJ_MJ_JK_JQdJRgITjITjJTmISlGSmFRlESpESpERrFSsETuFUvFTwFTwFVxFVxFVzGWyGW{HXzHX|HXzHX|HXzHX|HXzHX|HXzHX|HX|IV€JU‚JU‚JU‚IV‚IV‚HW‚HW‚ETETDU€DU€DWEX‚FYƒFYƒK]…K]ƒK]…J\„I[ƒI[ƒIZ…GZ„FY„DY„EZ…D[…E\ˆE\ˆF]‰F\‹D^C_‘D^‘C^“D]“C^“D]“C^•F_—E_˜G`™F`™HašGaœH`œFcŸDd¡Bf¤Cf¦Dg©Fh¯Fk²GkµFl·Fk¹Fk¹Ej¸Dk¸Dk¸FmºGn¹Ho¾FnÃFnÆGoÆIqÈJrÇIqÆGpÂDm¿Fo¿Fo¿Fo¾Fp¼Fp¼Fp¼Fp¼Fp¼Fo¾Fo¾Fp¼Eo¹Eo·Fn´Gn³Hn¯Gi¨Li¥Qi¥Xk¥]l¥al¤dj¤jj tf™s]‹kT€dKs`Dj]>^Z9VX6OR/EP-AL*;G&7B!2>.9*6)4)7!-:$0;%19#/6"-5!,5!*4#+3"*0!(/ '-#-#-#-!-*('))&$                                                                                    "#$$$% &'(*++*)))(''&$!                               "%(*,,,,(' $ " !                                                 &9G&9G&9G&9G&9G&9G&9G&9G(;I(;I(;I(;I(;I(;I(;I(;I);I);I);I);I);I);I);I);I*J5?K5?K8>L8>L;>M;>M=?N=?N@?O@?O=?L=?L>@M>@MA@NA@NB@NCAODBPDBPEAPEAPG@PG@PG@PEAPD@OCAOCAOCAOCAOCAOCAOCAOCAOCAODBPDBPECQECQECQEDRDCSBDSBDSACRACR@BQ?AP?APCETCETDFUEGVFHWGIXHJYHKZCIYBIYBI[BI[AJ[AJ[AI\AI\?J^?J^?L_?L_@Lb@Lb>MbANaCK`DK^DK^DK^DK^DK^DK^DK^DK^DK^DK^DK^FM`HObJQdLQeRPeSPcTOcSPcTOcSPcTOcSPcMH\MJ]NI]MJ]NI]NK^OJ^MK`KPdJRgITjITjISlHRkFRlEQkDRoDRoDQqERrDStETuESvFTwEUyCUyCU{DVzDV|EW{EW}FX|FX~FX|FX~FX|FX~FX|FX~FX~GVGU‚EV‚EV‚EV‚EV‚DW‚DW‚@U€@U€AVAV@W@W@WAW€GZ‚G[€FYFYEX€CY€BXAX@WAX‚AX‚@Y‚AY…BZ†BZ†@[ˆ?[=[?Z=[‘?Z‘=[‘?Z‘=Z’B\•@]—C]˜A^˜D^™C`œE_œCa>`>b ?b¢?e¦@e«Bg®Cg±Ci´Ej¸Cj¹Cj¹Cj¹Cj·Bl¸DnºEn½GmÂHmÆJoÇInÆHnÃGmÂGmÀHnÁHn¿Hn¿Ho¾Ho¼Ho¼HoºHoºHo¼Ho¾Gn½Eo»Dn¸Fn¶Em²Fm°Il¬Ll©Pm§Vl¦\l§_l£aj¡bgŸidšnX‡jNw_AgW5XR/MN*DM'>K$6G!.E*B(>$9 74/+- 0%0%.#+"-$0%0%/$-$+"+"+",#-"-*''))&#                                                                                    "#$$&))*++,,,,++***&%                               " %&****(' $ " !                                                 &9G$:G&9G$:G&9G$:G&9G$:G(;I&J3?K5?K7?L8>L9?M;>M=?N=?N>@O>@M?>L=?L?>L@?M@?MA@NB@NCAODBPDBPEAPEAPEAPEAPG@PEAPCAOCAOCAOCAOCAOCAOCAOCAOCAOCAOCAODBPDBPECQECQFCTDCSBDSBCUBDSABTACR@AS?APCDVBETDEWDGVEHYFIXGJ[GJ[BIYBI[BI[BI[AJ[AJ[AI\AI\?J^?J^?J^?L_@K_@M`@LbANaBJ]BJ]CJ]BJ]CJ]BJ]CJ]BJ]DK^CK^DK^DK^FM`HObJPfLQeSPeTOcTOcTOcTOcTOcTOcTOcLG[LG[MH\NJ[OK\QJ\RK]OL_KPdJRiITjITjISlGSmEQkCQlCQnCRqCRqBRsCStBUvDTvBTxBTxBV{CU{BV{DV|DX}EW}DX}EW}DX}EW}DX}EWDX}EWDWDU€CVCVCVCVCVAVAVAX‚AX‚AX‚AX‚@W?X@W@W€CY€BXBX@W€AW€?V?V€?V€>V‚>V‚>V‚?Wƒ=X…>Y†>Y†?Z‰:XŒ9XŽ:XŽ9X:W9X:W9X‘>[•=[—?\˜?]™A^š@^œB^A_;]œ8^9_ ;`¤=b¨=cª>d­>e°Bi¶Bi¶Ah·?h·?iµAk·Bl¸Cl»EnÀGoÄJpÅFnÃEk¾Bk½Fl¿HqÃGm¾En¾Gn½En½Gn»Eo»Gn»Gn»Gn»Gn»Gn»Fm¸EmµFl³Gl°Ij­Rn¯Ymª^m¨bk¤fi ffœfa—j^ŽhNucAbU4SJ(CE":B3B.@(>$<";!8642/&$%%#$)-"-",!*!***,!- - *(())&$                                                                                 ! "$%&***++++,***))((&%!                                         "$''''('&" !                                                !! "8F!8F"8F!8F"8F!8F"8F!8F$:H#:H$:H#:H$:H#:H$:H$:H)J;=J?>L?>N@=NA>OA>OB?PB?PB?PDARDARDARDARDARDAREARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARCBTCBTABVABTABVABT@CV@CTBEX@FVBEX@FV@EX@FV@EX?FXCJ\BJ]BJ]BJ]BJ]BJ]BJ]BJ]BJ]BJ]BJ]@K]BJ]@K]@K_@K]@K]@L\BK\@L\BJ]@K]BJ]@K]AI^@K_CK`DLaEMbGOdHPgJOeSPeVNeVQgVQgUPfSNdQLbOJ`PK_OJ^PI[OHXPIYSJ[UM\SO`OTjJQkEOhCMfAMgCOiCQlDSpBSo@Sq@Ss?St=TtT}=T}?V@W€AX‚AZƒBYƒ@Y‚?Wƒ>V‚>V„?W…AY‡BZˆBZŠAY‰?W‡\œ=\;^ž:`¡;a¢;b£h´?h·?j¸@k¹Alº?j¸@kºBk»Bm¼Dm½Do¾Fo¿Ep¿FoÁEoÁEn¾Do¾EnÀDnÀDm¿Dm½Di·Hl¸IoºFm¸Dk¶Dj³Kk´Snµ\m³`g«fd£ldŸpc™n]‘fRƒaKrX;WP0EC#8:/9,8+3&.2#2#2#2 2"33!0$  "#%()- - - . . . / .".%,$+%("& #"!                                                                           "$& & % $ ...-,,**()*+('%$%$$""                                      ##!!$($ % $ !                                                            !!!" !#$$$#!  !!##$##! !8F!8F!8F!8F!8F!8F!8F!8F#:H#:H#:H#:H#:H#:H#:H#:H(;I(;I':H&9G&9G':H(;I(;I':H':H':H':H':H':H':H':H*I;=I?>N@=N@=NA>OA>OB?PB?PB?PC@QC@QC@QC@QC@QC@QC@QC@QDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARCAVCAVABVABVABVABV@CV@CV@EX@EX@EX@EX?FX?FX?FX?FXAI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\@L\@L\@L\@L\@K]@K]@K]@K]?J^@K_AL`BMaEMdFNeGOfJOeQMdUMdTOeTOeSNdRMaRJ_OJ^QI^QJ\PIYPIYRJYSKZVN[TP_NSiJQkEOhCMfAMgAOjBQnBSoBSq?Ts?St=TtT}>T}>T}>T}>T}>T}>T}>T}?U~?U~?U~?U~?U~>T}>T}=T}>W€?X@X„AY…AY…@X„?W…>V„=U…>V†@XˆAY‰AXŠ@W‰>U‡;Uˆ8WŽ8X‘8X‘8X‘9Y”9Y”:Z•:Z•:Z—;[˜;Zš;Zš<[›<[›=\;]:]Ÿ9_ :a¢;b£h´>i·?j¸@k¹@k¹>jµ?k¶@k¹AlºBm»Cn¼Do¾Do¾DnÀDnÀDnÀDnÀDnÂDnÂDnÂEnÀGlºJnºJp»IoºFl·Fj´Mk´Tk±bl±cd¥dZ–gVŒhRƒdMy\CkW<]N1EE)7;-5(3(1'.$* +!+!,!,!.!/!2"/ &""!$%(),,---..-!+$)$(#% #!                                                                                      # $'' ' & ---,,*)(()()('%$%%$#"!                                           !&$ % $ "                                                                $%&&&%"!   !!!!"#$$#""!8F!8F!8F!8F!8F!8F!8F!8F"9G"9G"9G"9G"9G"9G"9G"9G(;I':H&9G%8F%8F&9G':H(;I':H':H':H':H':H':H':H':H);I*I;=I?>N@=N@=NA>OA>OB?PB?PB?PB?PB?PB?PB?PB?PB?PB?PB?PDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARCAVCAVABVABVABVABV@CV@CV@EX@EX@EX@EX?FX?FX?FX?FXAI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\AI\?K[?K[?J\?J\?J\?J\?J\?J\AI^AI^BJ_CK`DLaEMbFNcHMcNLbPKaSK`SK`SK`RK]QH[OHXQHYQHYQIXQIXRLZTN\VP^TQbLRhGQjEOjCMhBMi@NiAPmARnARp>Sr>RsV‚?Wƒ@X„@X†?W…>V„=Uƒ=U…=U…>U‡?Vˆ?Vˆ>U‡=Tˆ;TŠ8WŽ7W7W8X‘9Y”9Y”9Y”:Z•:Z—:Z—:Y™;Zš<[›<[›<[œ;]:]9_ž;a¢jµ?j¸?j¸=i´=i´>i·?j¸@k¹AlºBm¼Cn½DnÀDnÀDnÀDnÀDnÂDnÂDnÂEnÀJo½Kq¼Lq¿Kq¼Hn¹Jl´Oj±Vi«ck©_^—WO€TEpS>eO:[I2OC+C>#4:,3%0#0%.$+!&&&(*,- /!.) '&%%%''((***++*(!&!$"                                                                                   # %''' ' ,,+++))(()()('&&&&%$#"!!!                                    $$ % # " !                                                           %'(('&$#    !!"!"#$## 7E 7E 7E 7E 7E 7E 7E 7E"9G"9G"9G"9G"9G"9G"9G"9G(;I':H&9G%8F%8F&9G':H(;I&9G&9G&9G&9G&9G&9G&9G&9G);I);I);I*I;=I?>N@=N@=NA>OA>OB?PB?PB?PA>OA>OA>OA>OA>OA>OA>OA>ODARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARCAVCAVABVABVABVABV@CV@CV@EX@EX@EX@EX?FX?FX?FX?FX@H[@H[@H[@H[@H[@H[@H[@H[@H[@H[@H[@H[@H[@H[@H[@H[?K[?K[?J\?J\?J\?J\?J\?J\AI^AI^BJ_BJ_CK`DLaEKaFK_MJ_NI_PH]QH[QH[RGXRGWRGWRGUSHVQIXSKZSM[SO^TP_QRdKQgGQjEOjBNh@Ni?Oi@Ol@Qo>Qq=Rq;Rr;Rr:Rt:Rt9Sv9Sv:Rt:Rt:Rt:Rt:Rv:Rv:Rv:RvU~>UV‚?Wƒ?W…>V„=Uƒi·>i·i·?j¸@k¹Al»Al»Cm¿Cm¿Cm¿DnÀDnÂEoÃEoÃFoÁIp½Jq¼Kr¿Lr½Lp¼No¶Tm°[k§`gXV…LBgC4SA/I?,B:';6!24*3&0#-"-#*!&!!"%(+ ,!0#.#.#* )&%%&&&&&&&&&&%% #"                                                                                     "$''( ' *)*(()(())((((((''&%$#""#"!                            !$ $ # "                                                        '()))'%$ !  !""" !###"" 7E 7E 7E 7E 7E 7E 7E 7E!8F!8F!8F!8F!8F!8F!8F!8F':H&9G%8F$7E$7E%8F&9G':H&9G&9G&9G&9G&9G&9G&9G&9G(:H);I);I);I+;H,I;=I?>N?>N?>N@?O@?OA@PA@PA@P@?O@?O@?O@?O@?O@?O@?O@?ODARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARCAVCAVABVABVABVABV@CV@CV@EX@EX@EX@EX?FX?FX?FX?FX>FY>FY>FY>FY>FY>FY>FY>FY>FY>FY>FY>FY>FY>FY>FY>FY>I[=J[=J[=J[>I[>I[@H[@H[@H[AI\BI\BI\CJ]CJ]DI]FH]KH]NF]NEZNEXQFVRFTSERTFSTHTUIUUJXSM[RN]RO`RQcOReIQhEQkDPjAOi@Ni?Oi?Nk?Pn=PpU>U;S:U€;Vƒg¶>g¶h´?h·@i¸Aj¹BkºCl¼Cl¼Dm¿EnÀEnÀFoÁGoÄGpÂEo»HoºIp½Lr½Pq¾Tp¹Yn¯_l£Z^‹PLo@6O7(;7'48(34$.1 *2(0&.$,#)"%! !"$&*!-#0%/%/$,#+ '&%%%########## !                                                                                    "$%& & '%&''''(((&''(()(('&%$##$#"!                            " "                                                               '))*)(%$!! !"""#" !!!6D6D6D6D6D6D6D6D!8F!8F!8F!8F!8F!8F!8F!8F':H&9G%8F$7E$7E%8F&9G':H%8F%8F%8F%8F%8F%8F%8F%8F(:H(:H(:H);I*:G+;H.:H/;I3=I3=I6I:>I?>N?>N?>N@?O@?OA@PA@PA@PA@PA@PA@PA@PA@PA@PA@PA@PDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARCAVCAVABVABVABVABV@CV@CV@EX@EX@EX@EX?FX?FX?FX?FX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX;FX>I[=J[=J[=J[>I[>I[@H[@H[@H[AH[AH[BGZBG[CH[CH\FG[KF\MEZMDWODUPDRRDQVFQVFPYISVJTWMXUO]RO`QPbMPcJPfEOhBPjAOi@Pi?Oi>Ok>Om;Nl;Po;Op9Pr9Pr8Pt8Pt7Qt7Qt8Pt8Pr8Pt8Pt8Pt8Pt8Pv8Pv9Py9Py9Py9Py9Pz9Pz9Pz9Pz9Pz9Pz9Pz9Pz9Pz9Pz9Pz9Pz9Pz:Q{:Q{;R|U=V8S~9T:U‚;Vƒ;Vƒ:U‚9Tƒ8S‚8Rƒ8Rƒ7Q‚6P6Pƒ7Q„8R…7R‡6UŒ6V6V6V7W’8X“8X“8X“8X•9Y–9X˜9X˜:Y™;Zš;Z›9[›9\œ8^9_ž:`Ÿ;a¢;`¤9`¥8_¤;a¨:b¨;c«:d®;e±h´?iµ@i¸Aj¹BkºBkºBk»Cl¼Dm¿Dm¿FoÁFoÁGoÄHqÃFp¼FpºIp½Lr½Rr½Vq¸Zlª`g›RRxF@Z9,>2",4%*7(+5&+0!&1&/&-$)"& ! !%(!,#-$.%.#-"*('%%%!!!"!                                                                       # # % # # #$$%&''''$%&'()))('&%$$$##"!                                                                                                  !'()))(%$!"!""##"!!"! 6D6D6D6D6D6D6D6D 7E 7E 7E 7E 7E 7E 7E 7E&9G%8F$7E$7E$7E$7E%8F&9G%8F%8F%8F%8F%8F%8F%8F%8F'9G(:H(:H);I*:G+;H.:H.:H3=I3=I6I:>I?>N?>N?>N@?O@?OA@PA@PA@PBAQBAQBAQBAQBAQBAQBAQBAQDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARCAVCAVABVABVABVABV@CV@CV@EX@EX@EX@EX?FX?FX?FX?FX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX=EX;FX=HZOk=Nl;Nl:On:No8Oq8Oq7Os7Os7Ou7Os6Ps6Ps6Ps6Ps6Pu6Pu6Ow6Ow6Ow6Ow6Ox6Ox6Nz6Nz6Nz6Nz8P|8P|8P|8P|8P|8P|8P|8P|7O{8P|8P|:R~;SV‚7R8S€9T:U‚:U„9Tƒ8S‚7R8Rƒ7Q‚5O‚4N4N5O‚7P†7R‰6UŒ5UŽ6V6V7W’7W’7W’8X“8X•8X•9X˜9X˜:Y™:Y™:Yš9[›8\š9]›;^ž<_Ÿ:`¡:`¡9^¢8_¤:`§9a§:bª;c«I:>I=?N?>N?>N@?O@?OA@PA@PA@PCBRCBRCBRCBRCBRCBRCBRCBRDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARDARCAVCAVABVABVABVABV@CV@CV@EX@EX@EX@EX?FX?FX?FX?FX1E1!+.!4$%7))1%)+%'!' % "#$%**)&&$$$                                                                 ! #%&&""!!"%()+*)('&%%##"!                                                                                           !$&'(((&$#""""##$#   6D6D6D6D6D6D6D6D 7E 7E!8F!8F"9G"9G#:H#:H&9G&9G&9G&9G&9G&9G&9G&9G&9G%8F%8F$7E%8F&9G(;I)I:>I:M<>M<>M>@O>@O?AP?AP@BQ@BQACRCBRC@QC@QC@QDARDAREBSEBSEBSFCTFCTFCTFCTFCTFCTFCTFCTB@UB@UABVABVABVABVADWADW=BU=BU>CV>CV=DV=DV=DV>EWDT@CTBDSCETFESFEUGESHAQIAPLAONBNQDMUFMXGMYHN]PWZPYSP[NP_INbCNd>Lf=Mge°?g¯?f±@g²Bi´CjµCj·Dk¸Cj¹Cj¹DkºEl»Fl½Gm¾Hn¿Fo¾Is¿Jt¾Kr½NpºVpºZm¯S\•JIu;2Q:+>6%/3 $2#/$*&)&%&# !"$$$$$$$""!                                                                        "#%#!  #&('()))('&$$$$#!                                                                                   #%*+**)(''$%&''&$"!!""##$$6D6D6D6D6D6D6D6D 7E 7E 7E!8F!8F"9G"9G#:H&9G&9G&9G&9G&9G&9G&9G&9G&9G%8F%8F$7E%8F&9G(;I)I:M<>M<>M>@O>@O>@O?AP?AP@BQ@BQACRBAQC@QC@QDARDAREBSEBSEBSFCTFCTFCTFCTFCTFCTFCTFCTCAVCAVABVABVABVABV@CV@CV>CV>CV>CV>CV=DVDT@CRBDSDCQDCQFDQFDRGCQH@OK@NMAMOCMRENVGNXIPWJQ[PXVPZQP^JP`FNc?Mgf®?g¯?f±@g²Bi´CjµCj·Dk¸Cj¹Cj¹DkºEl»Fl½Gm¾Hn¿Ho¾Is¿Jt¾Lr½Mo·UpµYk«RYHEp=2P;->8$/4&1#-&'&%$% &$ !"#$!!#!!                                                                               !$" "%''(())('&$$$$#!                                    !                                             "$)**)))''$%%&&%$##!#"$#%$6D6D6D6D6D6D6D6D6D 7E 7E!8F!8F"9G"9G"9G%8F%8F%8F%8F%8F%8F%8F%8F&9G%8F%8F$7E%8F&9G(;I)M;>M;>MAP>AP?BQ?BQ@BQBAQC@QC@QDARDAREBSEBSEBSFCTFCTFCTFCTFCTFCTFCTFCTCAVCAVABVABVABVABV@CV@CV?DW?DW?DW>CVM;>M;>MAP>AP>AP@BQBAQC@QC@QDARDAREBSEBSEBSFCTFCTFCTFCTFCTFCTFCTFCTDBWDBWBCWABVABV@AU?BU?BU@EX@EX?DW=BU;BT:AS9@R8?Q;CV;CV;CV;CV;CV;CV;CV;CVEW@FVBETCERDDPECNEBMDALF@LF>IJ>JL@JOCMRFPTHRVJVTLWTNZPN\KN_GNaBNd>Nh9Mh6Ml4Mk5Mi5Mg5Mg5Mg5Mi5Lk5Ll5Ll6Mo6Lq6Ls6Ls6Lu6Lu6Lu5Lu1Jr/Kr/Kr/Kr/Kr/Kr/Ks/Ks/Ju0Kv0Kx1Ly1Ly2Mz2Mz2Mz2Mz2Mz2Mz2Mz2Mz2Mz2Mz2Mz2Mz3N{3N{4O|4O|5P}5P}4Q}1P~1P~1P1P1P1P1O1O2P„2P„2P„2P„2P†2P†2P†1P‡4SŒ3SŒ4T4T5U5U6V‘6V‘8X•8X•8W—9X˜9X˜:Y™:Yš:Y™;[˜;[˜9[˜:\™:\›;]œ:]:]Ÿ;^¢9^¢:_¥;`§;aª`9/G:);8".4'2'/&(&%#'!' &#  !!                                                                                                  "#%%%'((('&%%%%$"                                       !#$#                                        #&''())))#$#####"$$%%&&''6D6D6D6D6D6D6D6D5C6D6D6D 7E!8F!8F!8F$7E$7E$7E$7E$7E$7E$7E$7E&9G%8F%8F$7E%8F&9G(;I)M;>M;>M;>MAP>AP?APBAQC@QC@QDARDAREBSEBSEBSFCTFCTFCTFCTFCTFCTFCTFCTECXECXBCWABVABV@AU>AT>AT@EX?DW>CV=BU;BT9@R8?Q8?Q:BU:BU:BU:BU:BU:BU:BU:BU;CV;CV;CV;CV;CV;CV;CV9DV5DW5FZ6EX6EX:EW;GW>EW?EUBETBDQECPEBMDALF@JF>IF?GL@JNAKQEOTHRUKVTLYQM[ON^IL_EMbAMe=Mg9Mh5Lk4Ml2Mk3Mh3Mf3Mh3Mh3Lj3Lj3Lk3Lk6Mo6Lq6Ls6Ls6Lu6Lu6Kv5Lv/Kr.Lr.Lr.Lr.Ks.Ks.Ku.Ku.Ku.Ku.Kw/Lx/Kz0L{0L{1M|1M|1M|1M|1M|1M|1M|1M|1M|1M|1M|1M|2N}2N}3O~3O~4P1P1P1P1P1O1O1O1O2P„2P„2P†2P†2P†2P†2O‡1P‡4SŒ3SŒ4T4T5U5U6V‘6V‘8X•8X•8W—9X˜9X˜:Y™:Yš:Y™;[˜;[–;[˜<\™:\›;]œ;]:]Ÿ;^¢;^¢:_¥;`¦M;>M;>M;>M;>M;>MAT=@S>CV>CV=BUGOBKQDMSGQUKVTLYQM[NM]JM`DJ`?KcL8>L9?M9?M9?M8>L9?M9?M:@N:@N;AO;AO=@OBAQC@QC@QDARDAREBSEBSEBSFCTFCTFCTFCTFCTFCTFCTFCTFDYFDYCDXBCW@AU?@T=@S=@SDR>APAAMB@MDALF@JG@HJ@IJ@IQDMSFOUISWMXTN\PN\KL^EL_?J`b¬>b¬@e¬Af­Af­Bg®Dh²Ei³Ei³Fj´EiµEiµFj¸Gk¹HlºIm»Jm¾Jm¿JjÁNmÀPm¹Rn¯Xo£UhITp;>Q91><-4=(->%)?$)<#'7"2!, *!) &# !                                                                                                               ##$#!"$&'(''&&''%$"!#"                                   " ! !    $''&%#!                                        !#&(*+,'&$##$%'--/.0/ 1 / 6D7D6D7D6D7D6D7D4B5B5C6C6D7D 7E 7E!7D!7D!7D!7D!7D!7D!7D!7D&9G%8F%8F$7E%8F&9G(;I)L8>N9?M9?O9?M8>N8>L9?O9?M:@P:@N;AQ=@O@BQBAQBAQCBRCBRDCSDCSDCSEDTEDTEDTEDTEDTEDTEDTEDTGEZDEYCDXBCW@AU>AT=@S:?R:?R;@S;@S:AS:AS:AS;BT:CT9BS9BS9BS9BS9BS9BS9BS9BS6?P6?P6?P6?P6?P6?P6?P4?Q6CV4CV7DW7DU;CVDT@CR>@M@@LB?JE?IG@HHAHJ@HLAISFOTIQVLUVN[SO^MN`GL`CKb;Ic9Jf6Kh3Ji1Lj/Ll/Ll/Lj0Kh0Kh1Jh0Kh0Kh0Ki1Ik1Ik4Lp4Lr4Kt4Kt4Ku4Ku5Ju4Ku0Lt/Lt/Lv/Lv/Lv/Lv/Lv/Lx-Jv-Jv-Jv.Kw.Jy/Kz/Kz0L{1M|1M|1M|1M|1M|1M|1M|1M|0L{0L{0L{1M|1M|2N}2N}1P3R2Rƒ2Rƒ2Rƒ2Rƒ2Rƒ2R…2R…1P†1P†1P†1P†1P†1P†1P‡1P‡3SŒ3SŒ4T4T5U5U6V‘6V‘8X•8X•8W—9X˜9X˜:Y™:Y™:Y™9[˜9[˜9[˜:\™:\›;]œ:]:];^ 9^¢:_£;`¦cª>b¬?e®@f¯@f¯Ag°Ci²Ei³EiµFj¶EiµEiµFj¸Gk¹HlºIm»Jm¾Jm¾Jj½Ml¾Pn·Rn¯Xo¥Vi“JUs<>S=5D@0:@+0A(,?&*<#'5"1 - +* ($"                                                                                                               !!!#! "$&'(('&'''&$"!""!                                   !      %((&&$ # ! !                                         !#%(+,-*'%$$%'(..0!/ 1"0 !2#0 !5B6B5B6B5B6B5B6B6C7C6C7C6C7C6C6C8C8C8C8C7C7C7C7C!7D!7D"8E"8E%8F%8F&9G'9G)9H*:I,9I-:J-:J/;K/;K/;K1:K2;J3:J4;K4;K6P7>N8?Q8?O9@R9@P:AS;AQ=@O>@O?AP?AP@BQ@BQACRACRACRACRACRACRACRACRACRACRABV@CV@CV@CV@CV>CV>CV>CVN7>N9@P9@P8?O7>N7>N8?O9@P8AR3>P3>R6>S7?R:?R;AQ>AP?ANDBMEBKFCJHCIJDHLCHNCGNCIZPXXP[UO[OM[JK]EJ^AHb;Id8Ie5Jg2Ih0Kh/Jg-Kg,Jf,Jf0Ih0Ih1Hh0Ih0Ih0Hj/Ij/Il1Kp1Kp1Jr1Jr/Kr/Kr/Kr/Ks+Hr,Iu-Jv.Kw.Kw-Jv,Iu+Gv/Kz/Kz/Kz/Kz/Kz/Kz/Kz/Kz/N}/N}/N}0O~0O~1P1P2Q€/N}/N}0O~0O~1P1P2Q€2Q€2P‚2P„2P„2P„2P„2P„2P„2P„/M0N‚1Oƒ2P„3Q…4R†4Rˆ4S‰6V‘6V‘7W”7W”8X•8X•9Y–9Y–7W”8X•8X•9Y–9Y–:Z—:Z—8Z—5Y—3Y—3Y—4Z˜4Z™5[š5[œ6\7\ 7^¡8_¢9`£:a¦;b§;b§e°>e°?f±?f±@g²Ag²BgµBgµEj¸Ej¸Gk¹Gk¹JkºJkºKl»Im»Fj¶Hm´Mn³Rp°Tm¦Rb“LS}JIiG;SG5EF.;C)2@'-9"(2%- / .- )'#"                                                                                                                   """#$%&&$#"!                                      " " &&*)*(*' ' " "                               !""!    "%')*+*******-!-!/$/ #1 &1"%3"(2#&6B6B6B6B6B6B6B6B7C7C7C7C7C7C7C7C8C8C8C8C8C8C7C7C 8D 8D"8E"8E%8F%8F&9G'9G)9H,9I,9I,9I.:J.:J/;K/;K1:K2;L3:L3:L4;M4;M6;N6;N5P7>P7>P8?Q8?Q9@R9@R:AQ=@Q=@O=@O>AP>AP?BQ?BQ@CR@CR@CR@CR@CR@CR@CR@CR@CR@CT@CV@CV@CV>CV>CV>CV>CV;BT;BT:CT9BS9BS8AR6BR8AP:BO9AN9AN8@M8@M7?L7?L7?L9AN8@M7?L6>K6>K7?L8@M9@P6=P5=P7>Q9>QP7>P8?Q8?Q9@R9@R9@PAP>AP?BQ?BQ?BQ?BQ?BQ?BQ?BQ?BQ?BQ?BQ?BQ@AS@AS?BS?BS?BS?BS=CS=CS;BR;BR;BR:AQ9BQ8AP8AP8AP9AN:@L:@L9?K9?K8>J8>J7=I8>J7=I6Qf®>e°?f±?f±Ag²Ag²Bh³Bh³EiµFj¶Hi¶Ij·Ij·Jk¸Kk¸Jl¶JoµIn²Mn±Pn®Uk§Td˜SZˆUQvREaQ>RM5EH.9@)1:%,3(/$,.+*'&$"                                                                                                                     !!!"""""!                                        # %'())))(& $ "!                           #$%$!   "%'(),++*)(('++!,"-#.$/ %0!&1"'6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B8C8C8C8C8C8C7C7C 8D 8D"8E"8E%8F%8F&9G'9G(8G+8H+8H,9I,9I-:J.:J.:J09J1:K29K3:L3:L4;M4;M4;M4;M4;M4;M4;M4;M4;M4;M4;M6=O6=O6=O7>P8?Q8?Q8?Q9@P:@PAP>AP>AP?BQ?BQ?BQ?BQ?BQ?BQ?BQ?BQ?BQ@AS@AS?BS?BS?BS?BS?BS=CSJ7=I7=I7=I7=I6AP?ANGIVGIUIISJJTKJRLKSMJSLKSNNXLNZJL[FL\BJ]=I_9Ib7Hd4If1Hg1Hh0Ih/Hf.Ge.Ge.Gf/Fh/Fh.Fh.Fh.Fj.Fj-Gj-Gj.Jo.Jo.Jq.Jq-Kq-Kq-Jr-Jt.Kw/Kz0L{1M|1M|0L{/Kz.Jy.Jy.Jy.Jy.Jy.Jy.Jy.Jy.Jy+Jy+Jy,Kz,Kz-L{-L{.M|.M|/N}/N}0O~0O~1P1P2Q€2Q€/M/M/M/M/M/M/M/M0N‚1Oƒ2P„3Q…4R†5S‡6Tˆ5TŠ6T5U’5U’6V“7W”7W”7W”8X•5U’5U’5U’6V“6V“7W”7W”6X•6Z˜4Z˜4Z˜5[™5[š6\›6\7]ž8^Ÿ9_ :_£;`¤c©>c©?e®>f®?f±?g¯Ag²Ag°Bh³Bh±EiµEi³GhµHj´Ij·IkµJj·Kk´Mo¶Kn°Nm®Pl«Uk¥VfšY]ŒZV{VIeTAUN6FG-8>'18#*2'.#+-*)('%#                                                                                                                          !!                                       " $&()))))(& $ " !                               !#%&$"  ! !#$&'(++*)('&&** +!,"-#.$/ %/ %6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B6B8C8C8C8C8C8C7C7C 8D 8D"8E"8E%8F%8F&9G'9G(8G(8G(8G)9H+8H,9I-9I.:J.:J.:J09J1:K29K3:L3:L4;M4;M4;M4;M4;M4;M4;M4;M4;M5P8?Q8?Q8?O9?O:@N:@N:@N;AOAP?AP?AP?AP?AP?AP>AP>APJ9=I9=I9=I8N9?O:@P;AOAPCFUCGSEGTEGTFHUFHUGIVGIVIMYFLZEK[BK\>I]:I`7Ia4Hc3He1Hg1Hh0Gg/Ff/Ff/Ff.Ee.Eg-Eg-Ei-Ei,Fi,Fi,Fk,Fk-Ip-Ip,Jp,Jp,Iq,Iq*Jq*Js.Kw/Kz0L{1M|1M|0L{/Kz.Jy.Jy.Jy.Jy.Jy.Jy.Jy.Jy.Jy+Jy+Jy+Jy,Kz,Kz-L{-L{-L{/N}/N}0O~0O~1P1P2Q€2Q€/M/M/M/M/M/M/M/M1Oƒ1Oƒ2P„3Q…4R†5S‡6Tˆ6U‹5S5U’5U’5U’6V“7W”7W”7W”5U’5U’5U’6V“6V“7W”7W”6X•6Z˜5[™5[™6\š6\š7]›7]œ7]œ9_ 9_ :_£;`¤c§?dª?e¬?e¬@f¯@f­Bf°Bg®Cg±Ch¯Fh²Gi±Hh³Hh±Ii´Jj³LiµLj²Lm²Ml­Nk­QjªVj¥Xhœ\`^YYLjTBXL5EB+5;$.5 '0%-"+-*)('%#                                                                            ! !                                                                                    ! # %'()***)' & $ $ !                                 !#%&$"  " !#$&''))((''&&(()*+, -!-!6B6B6B6B6B6B6B6B5A5A5A5A5A5A5A5A8C8C8C8C8C8C7C7C 8D 8D"8E"8E%8F%8F&9G&9G&8F(8G(8G(8G+8H,9I-9I-9I-9I.:J09J09J29K3:L3:L3:L3:L3:L3:L3:L3:L3:L3:L3:L5P7>P8?O9?O9?M9?M:@N:@N;AO;AOAP>APJ:>J9=I9=I8N8?O:@N:BOc§?d¨?d¨@e«?f«@f­Af¬Bg®Bg­Ch¯Eg®Fh°Gh¯Gg°Hi°Hh±Ki±Ki²Lj°Li­LjªMiªRj¨Wk¦[hŸ]a‘^\ƒYNlUCYK4FA)6:#-4&0%.#,.+*'&$"                                                                              ! ""!                                    !!      !""! !                                        " $%&)**+*)' & ' % " !                                 #$%$!  #!"#$%&&&&&&''''&'()*+, , 6B6B6B6B6B6B6B6B5A5A5A5A5A5A5A5A8C8C8C8C8C8C7C7C 8D 8D"8E"8E%8F%8F&9G&9G&8F&8F(8G(8G)9H)9H+8H,9I-9I-9I.:J.:J1:K1:K1:K2;L2;L2;L2;L2;L2;L2;L2;L2;L3O5>O6?P6?P7>N8>N9?M9?M:@N:@N;AO;AO;AO;AO;AO;AO;AO;AO;AO;AO;AO>@M>@M>@M>@M=AM=AM=AM=AMJ8>J8>J7=I7=I6K7?L7AM9@P9BQ;BR:CT>GX>GX?GZ?GZ>I[>I[?J^?J^?J\=J[;J]9J^7I_4H`2H`0Hb0Hd/Hf0Gg/Ff1Eh1Cg1Cg/Cf+Cg*Dg*Dg*Dg*Di*Di(Dk(Dk,Ho+Io+Hp)Ip)Ir)Ir)Ir)Ir*Iu+Jx,Ky-Lz-Lz,Ky+Jx*Iw+Jx+Jx+Jx+Jx+Jx+Jx+Jx+Jx+Jy,Kz,Kz-L{-L{.M|.M|.M|/N}/N}0O~0O~1P1P2Q€2Q€1Oƒ1Oƒ1Oƒ1Oƒ1Oƒ1Oƒ1Oƒ1Oƒ2P„2P„3Q…4R†5S‡6Tˆ7U‰6U‹4RŽ4T‘4T‘5U’5U’6V“6V“6V“7W”7W”7W”8X•8X•9Y–9Y–7Y–7[—8\˜8\˜8\˜9]›9]›:^œ:^œ<_Ÿ<_Ÿ=`¢>a£?b¤@c¥Ad¨?d¨@e©@e©Af¬CfªDf­Dg«Eg®Fg¬Fg®Ig­Ig¯Jh®Jh°Li¯Lh±Li­Je¨Le¥Ng§Ti¨Yl§\i ^b’^\„\QqXF^M6JB*8;$.7"+3(3'./,*'%#                                                                                                                          !""!!      "$#!!"                                          ! "#()***)'(*' % $ % #                     "#$#  #""#$%%&##$%&'((%&&')**+6B6B6B6B6B6B6B6B5A5A5A5A5A5A5A5A8C8C8C8C8C8C7C7C 8D 8D"8E"8E%8F%8F&9G&9G&8F&8F'7F(8G(8G)9H+8H,9I-9I-9I-9I.:J09J1:K1:K2;L2;L2;L2;L2;L2;L2;L2;L2;L3O5>O6?P6?N7>N8>L9?M9?M:@N:@N;AO;AO;AO;AO;AO;AO;AO;AO;AO;AO=AM>@M>@M=AM=AM=AM=AM;AMJ7=I7=I6J7=I6K5?K6@L5AM6BP7CS8DT8CU>I[=J]=J]>J`>J`=La=Lc=Lc;J_:K_9I`7I_4H`3Ia0Hb/Ib/Hf/Hf/Ff/Ff0Dg1Cg2Bf0Bf+Cg*Dg*Dg*Dg*Di(Di(Dk'Ek+Io+Io)Ip)Ip)Ir)Ir)Ir)Ht)Hv*Iw+Jx,Ky,Ky+Jx*Iw)Hv+Jx+Jx+Jx+Jx+Jx+Jx+Jx+Jx,Kz,Kz-L{-L{.M|.M|/N}/N}/N}/N}0O~0O~1P1P2Q€2Q€2P„2P„2P„2P„2P„2P„2P„2P„2P„3Q…3Q…4R†5S‡6Tˆ7U‰7VŒ4RŽ3S4T‘4T‘5U’5U’6V“6V“7W”8X•8X•9Y–9Y–:Z—:Z—:Z—8Z—8\˜8\˜9]™9]›:^œ:^œ:^œ<_Ÿ=` =`¢>a£?b¤@c¥Ad¨Be©Be©Be§CfªCf¨Dg«Ef©Fg¬FgªHf¬HgªIg­Jg«Kh®Kh¬Li¯Mh«Ib¢Kc¡Nf¤Uk§Yl§\i ^b’][ƒ^SuXHbN9LD,:=%29$-8#,7"+/ 0-*'$"                                                                                                                  !!"!##"!       #%#""#                                             ! "))*+*)((** ' ' & % !                    !"#"  $""#$%%%!"#$&())%%&'()**4@4@4@4@4@4@4@4@3?3?4@4@5A5A6B6B6A6A7B7B8C8C 8D 8D 8D 8D!7D!7D#6D#6D#6D#6D%7E%7E%7E%7E%7E%7E&6E&6E(5E)6F,8H.:J/;K.:J-9I,8H1=M.:J+7G+7G.:J0N2>N1=M2>N3?O5AQ8AP5K6>K7?L8@M9AN9AN7?L7?L8@M8@M9AN9AN:BO;AO9?'49$-6!*3'/ 0,*''&$                                                                                                                          """          !""#                                            "$&())()) + * ) & $ !                             !!#%&()('&%%&'(&&&'(*,-4@4@4@4@4@4@4@4@3?3?3?4@4@5A5A6B6A6A6A7B7B8C7C 8D 8D 8D!7D!7D#6D#6D#6D#6D%7E%7E%7E%7E%7E%7E&6E&6E(5E)6F,8H.:J.:J.:J-9I,8H1=M.:J+7G+7G.:J/;K/;K-9I1=M1=M0K6>K7?L8@M8@M9AN7?L7?L7?L8@M8@M9AN9AN:BO8>L8>L9?O8@M9@P:BO:AQ:DP9BQ6BN5AO4@L4@N4BM5CP7CQ5>M5>M5>M5>M5>M5>M5>M5>M6?N6?N6?N6?N6?N6?N6?N4@N7ER4DS2DR2DR2CS4EU5FX7H\6G[6H^7G`6H`7Hb8Ic8Ic8Ie4Hc4Hc3Hc0Hb/Ib-Ia-Ia-Hc-He-He-Fe-Fe-Ch/Ch.Bg.Ai+Ci*Di(Di(Di(Dk'Ek'Ek'Ek'Gn'Gn(Hq'Hq(Ir(Ir)Ju)Ju*Kx)Jw(Iv'Hu'Hu(Iv)Jw*Kx(Iv)Jw)Jw*Kx*Kx+Ly+Ly+Ly-L{-L{-L{-L{-L{-L{,Kz,Kz.M|.M|/N}/N}0O~0O~0O~1P/M/M0N‚0N‚0N‚1Oƒ1Oƒ1Oƒ3Q…3Q…3Q…4R†4R†5S‡5S‡5TŠ6T5U’6V“6V“7W”7W”8X•8X•8X•8X•9Y–9Y–:Z—:Z—;[˜;[˜;^˜;^˜;^˜;^˜;]š;]š;]œ;]œ=_ž=_ž<^ž<^ž<] >_¢?`£@b¢@b¢@b¡Ac£Ac¢Dc¤Dc£Ed¥Fd¤Eb¤Fd¤Gb¥Hd¥Je¨Mf¨Mf©Og§Rf£Re Re Tg¢Yh£[fœ]`“^[ˆ\PtWGbP:OG0@A)6=&08#,5 ),-)'$$#!                                                                                                                     """"!         !"""                                       !#%'))()) , * ) & $ # !                        $"#$%%&&'&%%%%&'%&&'(*+,4@4@4@4@4@4@4@4@2>3?3?4@4@5A5A5A5@6A6A7B7B8C7C7C7C7C 6C 6C"5C"5C"5C"5C$7E$7E$7E$7E%7E%7E%7E%7E&6E'7F*7G,9I,9I,9I,8H,8H/N3?M4=L4>J5?K5?K6@L6@L6@L6@L5?K6@L6@L7AM7AM8BN8BN8BN8?O8?O8?Q8AP8AR9BQ9BS7CQ8DT6DQ5BR4BO4AQ3CP4DS5ET3@P4@P4@P4@P4@P4@P4@P4@P5AQ5AQ5AQ5AQ5AQ5AQ5AQ4AQ1DR/ES.DR.DR.CT0EX1FY2G\2G\2F^4F^3G`3Gb4Hc4Hc5Hf4Gg4Gg3He0Hd/Id-Hc-Hc+Ic*Hd*Hd+Fd,Ed+Cg,Bg+Ah+Aj*Ck(Dk(Dk(Dk'Ek'Ek'Dl%El&Fo&Fo&Gr&Gr'Hs&Is'Jt'Jt)Kx(Jw'Iv&Hu&Hu'Iv(Jw)Kx(Jw(Jw(Jw)Kx)Kx*Ly*Ly,Mz,Kz,Kz,Kz,Kz,Kz,Kz,Kz,Kz.M|.M|/N}/N}0O~0O~1P1P1Oƒ0N‚0N‚0N‚0N‚/M/M/M3Q…4R†4R†5S‡5S‡6Tˆ6Tˆ5TŠ7U‘6V“7W”7W”8X•8X•8X•9Y–9Y–9Y–:Z—:Z—;[˜;[˜;[˜<\™;^˜;^–;^˜;^˜;^˜;^˜;]š;]š>`Ÿ=_ž<^<^=_Ÿ>` ?a¡@b¢Ba¡BbŸCb¢Cc Ec£Ec¡Fd¤Gc¢Ea¢Ea Ha£Ib¢Jc¥Ld¤Md§Pe¤Sf¡TdŸTdŸVf¡Yh¡\eœ]`“^[ˆYOtWGdQ;RJ3ED,:?'49$-5 )**&$ !                                                            !               ! " ! !     !                              """"###"!          !"!                                          !#&())** , + * ' % $ "                    ! ! " ! '%%%%%%%&&%$$%&&%&&'()**3?3?3?3?3?3?3?3?2>2>2>3?4@4@4@5A5@5@5@6A7B7B6B7C7C7C 6C 6C"5C"5C"5C"5C#6D#6D#6D#6D$6D$6D$6D$6D&6E'7F*7G*7G+8H+8H,8H,8H.;K,9I+8H*7G+8H,9I,9I-:J0=M0=M/N2?O3AN4=L4>J5?K5?K5?K5?K5?K5?K5?K5?K5?K6@L7AM7AM7AM8AP5AQ5AQ6AS6BR6AS5BR5BS5BR7DU5ET4DT2DR2CS3ES4EU4EU2BR2AT2AT2AT2AT2AT2AT2AT1@S1@S1@S1@S1@S1@S1@S0AS,CS*DS*DU*DU+EV+DX,EY/E\/E\0D]0D]1E^1E`2Fa2Ec2Ee4Gh3Fg2Fg/Fe.Ge,Gb*Hb*Hb(Fb(Fb(Ec)Cd)Cf)Ag)@i(?h'Cj'Cj'Cj'Cj&Dj&Dj$Dk$Dk%En$En%Fq%Fq%Hr%Hr&Is&Is)Kx(Jw'Iv&Hu&Hu'Iv(Jw)Kx'Iv(Jw(Jw)Kx)Kx*Ly*Ly*Ly*Ix*Ix+Jy+Jy+Jy,Kz,Kz,Kz.M|.M|/N}/N}0O~0O~1P1P1Oƒ1Oƒ0N‚0N‚/M.L€.L€-K4R†4R†4R†5S‡5S‡6Tˆ6Tˆ5TŠ7U‘6V“7W”7W”8X•8X•9Y–9Y–9Y–9Y–:Z—:Z—;[˜;[˜<\™<\—:]—:]•:]—:]—:]—:]—:\™:\™=_ž=_ž<^<^<^ž>` ?a¡@b¡AažAaœBbŸBbDb DbžFb¡FcŸD`ŸDaG` HbŸJb¢Kc¡Ld¤Oc TdŸTcœTcœVe Zf [d›\_”]Z‰YNvVGfQ=VK4FE-;?'47"+3&,+&#                                                                     ! ! " " !    ! ! ! ! ! ! ! " " " " ! ! ! ! ! ! ! !                            !!!!"""!!          !! !""!                                  #%')*) * + ( ' % " "                  ! "#"&$$%%&&&%%$##$%%%%'())((3?3?3?3?3?3?3?3?1=2>2>2>3?4@4@4@4?5@5@5@6A7B6B6B6B6B5B5B!4B!4B!4B!4B!7D!7D#6D#6D#6D#6D$6D$6D'7F'7F'7F'7F*7G*7G+8H,9I,9I,9I+8H*7G*7G*7G,9I-:J2?O2?O1>N1>N1>N2?O4AQ5CP5>M5?K4>J4>J4>J4>J4>J4>J4>J5?K5?K5?K6@L7AM7AM5AO4AR4AR4AT2BR2AT2BR1@S0AQ3DV2ET1DU0CR0CT/ES0EV0EV0BV1BV1BV1BV1BV1BV1BV1BV/@T/@T/@T/@T/@T/@T/@T,AT&AT$CU'DV'DV)DW)DY)DY*BZ+C[-B]-B].C^/B`0Ca2Ca2Bc2Dh2Dj0Dg.Ee,Ec+Fc(F`'G`&Ea%D`%Da%Bb%Bd&@e&?g&?h%Ah$Bh$Bh$Bh$Ai$Ai"Bk"Bk#Dm#Dm$Ep#Fp$Fs$Fs%Gt%Gt(Jw'Iv&Hu%Gt%Gt&Hu'Iv(Jw&Hu'Iv'Iv'Iv(Jw)Kx)Kx)Kx(Gv(Gv)Hw*Ix*Ix+Jy+Jy,Kz-L{-L{-L{.M|/N}/N}/N}0O~1Oƒ0N‚0N‚/M.L€.L€-K-K3Q…3Q…4R†4R†5S‡5S‡6Tˆ5TŠ7U‘6V“6V“7W”7W”8X•8X•8X•9Y–9Y–9Y–:Z—:Z—;[˜;[˜;[–<\—<\•<\•<\•<\—<\—<\—<\—>^›>^›=\œ=\œ=\œ>]@_ A` A_›A`™A_›BašC`œDa›F`F`›D^›D^™F^œG_›J_žKaLa MaœVbœVa™Ua›WcXdžYb™Z]’ZX‡XPwWHgP2>2>2>2>2>2>2>1=1=1=2>2>3?3?4@4?4?4?5@5@6A5A6B6B6B5B5B!4B!4B!4B!4B 6C 6C"5C"5C"5C"5C#5C#5C'7F'7F&6E&6E(5E*7G+8H,9I+8H,9I,9I*7G)6F)6F+8H-:J2?O1>N1>N0=M1>N2?O4AQ5CP3?M5?K4>J4>J3=I3=I3=I3=I4>J4>J4>J5?K5?K6@L6@L5AO1AQ0AS1@U/@R/@T.?Q.?S-@Q0BV-BS,AT*AQ+@S+BR,CU-DV,AV.@V.@X.@V.@X.@V.@X.@V,>V,>T,>V,>T,>V,>T,>V)?V!@TBU"BW$EX%DY'CY&BX'AX'AZ)A[+@[,A\-@^.A_0A_0@a0Bh/Ai.Bg+Bd*Cb&D`&D^%E^"D_"D_!Ba#Ba"@d#?d">f">f#Ag#Ag#Ag#Ag#@h#@h!Aj!Aj"Cl"Cl"Eo"Eo#Er#Er$Fs$Fs&Hu%Gt$Fs#Er#Er$Fs%Gt&Hu%Gt%Gt%Gt&Hu&Hu'Iv'Iv'Iv&Et'Fu'Fu(Gv)Hw*Ix+Jy,Kz+Jy+Jy,Kz,Kz-L{-L{.M|.M|/M/M/M.L€.L€.L€.L€-K2P„2P„2P„3Q…4R†4R†4R†4S‰5S5U’5U’5U’6V“7W”7W”7W”7W”8X•8X•8X•9Y–:Z—:Z—:Z•;[–;[”;[”;[”;[–;[–;[–;[–<\™<\™;Zš;Zš;Zš=\œ>]ž?^ž>\˜?^—?^—?^—A^˜A^˜D^™D^™B\—C]˜E]™F^šI_›J`œKaM`šT_—T]”S^–T`šWaœW`™X[XV…UMtSDeL8QE.B?'79!.3&/"1 /*'#!                                                                        !!!"$ $ % % % # " !!!!!!!!!    ! ! " " " " " ! !                 ! ! " " " !             !##"! ###"!                                        $& ' & % $ #   " " !                ! " "  "$&()#"!!!!"#$%'))'%$2>2>2>2>2>2>2>2>0<1=1=2>2>3?3?3?3>4?4?5@5@6A5A5A5A5A4A4A 3A 3A 3A 3A 6C 6C 6C 6C"5C"5C#5C#5C&8F%7E%5D%5D'4D)6F+8H,9I*7G+8H,9I*7G(5E(5E*7G.;K/J2>J1=I0J2>J3?K3?K4@L4@L3AN/@R.@T.>U,>R,>T+=Q+=S(=P+@U)@R(>S%?P'=R&@Q'@T*@U)=U)=U)=V)=U)=V)=U)=V)=U)=V)=U)=V)=U)=V)=U)=V&>V>SBUBX!DX#CZ#CZ#AY$@X&@Y'?Y)>Y*?Z,@[.?[.?[/?`/>e-?g,?g)?d(A`$B^$B\#C\!C^ D^B` A`@c!?c =e =e#Ag#Ag#@h#@h!Ah!Ah!Aj!Aj!Bm!Bm!Dn!Dn"Dq"Dq!Fr!Fr$Fs#Er"Dq!Cp!Cp"Dq#Er$Fs#Er#Er#Er$Fs$Fs%Gt%Gt%Gt%Ds%Ds&Et(Gv)Hw*Ix+Jy+Jy)Hw)Hw*Ix*Ix+Jy+Jy,Kz,Kz-K-K-K.L€.L€.L€/M/M0N‚1Oƒ1Oƒ2P„2P„3Q…3Q…2Q‡4RŽ3S3S4T‘5U’5U’5U’6V“6V“6V“6V“7W”8X•8X•8X•9Y”;[–;[”;[”;[”;[”;[”;[–;[–;[˜:Z—9X˜9X˜:Y™;Zš<[›=]š<[”=Z’>[“>[“A[”A[”B\•B\•B[”C\•E[•F\–H^˜I_™J^™L_™R]•R[’Q\”S^–U_šU^—VYŽVTƒOGnM>_F2M?(<;#37,4'1$0/)&"                                                                             !!"$ % & & % $ # "           ! " # # # %$ $ # # " "               ! ! " " $ "               !!"!!%%%$"                                        # $ #"!    $ $ # " !         ! !  !"$%%""!  !""#%'))'$"2>2>2>2>2>2>2>2>0<0<1=1=2>2>3?3?3>3>4?4?5@5@5A5A5A5A4A4A4A4A 3A4A 6C 6C 6C 6C 6C"5C"5C"5C%8F%7E$6D$4C%5D)6F+8H,9I*6F,8H-9I+7G(4D(4D+7G.;K+8H+8H*7G*7G+8H,9I-:J.;K3?M3?K2>L2>J1=K0I2>L1?J2@M2@K3AN1AP-@Q+@S*?R)>Q(=P'=R&S'=R&R&?U'=T'=U'=U'=U'=U'=U'=U'=U&Y*?\+>\,?],?_+?d+>f(>c'?c%?`#@^!@\!@\ B^B^ A`@a@c?b >d=c"@f"@f"?g"?g @g @g @i @i!Bm!Bm!Bm!Dn"Cp"Dq"Dq#Er$Er#Do"Cp!Bm!Bo"Cn#Dq$Ep#Dq#Do#Dq$Ep$Er%Fq%Fs%Fs$Cq%Dr&Es&Gt'Hu*Iw+Jy+Jy*Fv(Gv)Hw(Hw)Ix*Ix+Jy+I{,J|,J|,J~-K.L€/M/M0N‚/M0N‚0N‚1Oƒ1Oƒ2P„2P„1P†3Q2R3S3SŽ4T‘4T4T‘5U5U’5U6V“6V‘7W”7W’7W”8X“<[”<[”X‘?Y’@Y’AZ“@Z“@[’A\“A\“C\”F\•G]–I^—K^˜M^–P]’P\P[‘R]“U^•U\UWˆUR}LBgH9X@.F:%87!.6 ,6)5&/-(#                                                                              "# % % & & & % # "         ! " $ $ & & % % $ # " " !              ! ! ! ! !               !!"&&%$"                                     " "" !     # " # " !                !"!  !"#%')'%",81=3?0<0<4@3?/;1=1=/;/;/;/;1=1=-:0=2@2@0>.</=0>1?2@3A4B4B3A2@1?3@0>0=1>4A6B5A3? 6C 6C"5C#5C$4C&3C&3C'3C*3D*3D+4E+4E,5F,5F-6G+7G-9I-9I,9I,9I,9I,9I,9I,9I.:J1:I0K-:J-=J0=M,L%M'AP#?M8I9J&@Q'S ?T ?T!?W!?W$@X$@X&A\&A\'A\'A\'@^'@^'@^'@^#>\$?]#@`#@`#@^"A^!@] ?\=\=\<^<^<`<`<`e>g>g?h?h!@l Al!@n An?l?l>j?h>j @i ?k!Aj!@l!Aj$Co$Dm"Am"Bk"Am"Bk$Co&Co&Co&Co"Cn!Dn!Dn$Ep(Ds)Et-Hw,Hw)Ix)Ky)Ky+Kz.J|/K}.L~-L{,J|+I{+I{,J|-K}.L~2P„0N‚.L‚0N„3Q‡4Rˆ3Q‡0O†3R‹2R‹2R2R‹2R2R‹2R2R‹4T0P‰0P‹5UŽ5U2R‹2R8W:W‘9V’8T“7S”7S”8T“9V:W:XŽ9VŽ9V’9U”9U”:W“X‘>W=VŽ?UŽ@V?X?Z=[>\A\‘C\’G\‘I]’L[’M]‘L\K[ŽM[ŒO[‹S[ŠUY†TS{TNrLA_=/H:)<<*86"-1$1!*-*#                                                                         ! " # %%%% # "            !##&' & ' & # !                                   !!""!!"!                        ! !        ! !" "!&# (4-9.:+7,80</;*61=1=/;/;/;/;1=1=,:/=2@2@0>.</=0>1?2@3A4B4B3A2@1?2@0>0=1>5A6B6A4?7C7C"5C"5C$4C$4C'3C'3C+2D+2D,3E,3E-4F-4F-6G-6G-9I-9I,9I,9I,9I,9I,9I,9I09J1:K0M,I;I6C5F!;L#8K$6J%4K$4K$4M!5M"6N 9O9L:L9N9N9N9N9O9O7O7O8P9Q9T:U ;V e>g>g?h?h!@l!@l!@n!@n>l>j!>j!>h!>h"?i"?i#@j#@j#@j&Cm&Cm$Ak$Ak$Ak$Ak&Cm&Cm'Bm&Cm!DlElDn#Fp(Eq*Er(Cr(Ds$Ft#Hu#Hu&Hv*Fx*Fx,Hx)Hw(Gv'Fu'Ew(Fx)Gy*Hz-K+I}*H~+I.L‚0N„.Kƒ+J/N‡.N‡.N‡.N‡.N‡.N‡.N‡.N‡4T0P‰0P‰5UŽ5UŽ2R‹2R‹8W6S7QŽ6O‘5N‘5N‘6O7QŒ8SŠ8Sˆ7R‰7QŽ6O7QŽ8R:UŠ;V‹;V:T$)AÛè2•XÄÓQ³Â‡ILhñìXÚÜ2‡™Î£¥mo%(滽…Œ•mÙé‰çë7BnIL p¦ªp–𩸸àûúºËÖu|…#Yi*uŠsX]¼¼Å—Êß_Š _¹ÏB›±—»Ñ`{QŠ ¨ÌàOš°qºÎˆùùNª¿P¸Íiæé@ËÊ#KV!l|¾¬¯¶ŒŽðÌÏõìî>»ºŒ|~ |†Y]»œŸXÌÙF2F@4IA4JB5KC6KC6MD5MD5OC3NB2OC3OC3PD4RE5R?1Y?2b@4nB5}E6‹H8™G9£F7¯G:¸G9¾E:ÅG;ÇG>ÊG?ËH@ÐE@çFLíCLëDKëEIîCIïBDñ>Bô=Aø;A÷:@ô:?ð×?<ËA7»=/µ@.µ@.´?-´?-³@-²?-¯@-­@,ªA,¦A-¢B,Ÿ@*›A)˜@*–A,”>-’?/’?/‘>.‘>,=+’<+’<+”?+”?+”=*”=*”=*•>+–?,–@/–?6•>5—=2Ÿ?1©B3³D3¼D4¿D4¹?0µA2¬F8žH;‡H9oA2T8*C3&=5295495473271160050-50-72/72/72/61.61-50,50,41,//-.0-//-//-0/-0/-2.-2.-5,-4+,4*+3)*7(+=.1E69P:0U?1^A3jC4xD6„E4’E5œC3§C4¯A4µA4¼B7ÀD:ÄE<ÅF=ÍC@áEIçBIèCIêDHíDGïBDó@Cö?Cø;A÷:@ô:?ðÕ@<Ê@6¹>/µ@.´?-´?-´?-²?,°?-¯@-­@,©@+¦A-¡A+Ÿ@*›A)˜@*–A,”>-’?/‘>.‘>.‘>,=+’<+’<+”?+“>*”=*”=*”=*•>+–?,–@/”@5•>5˜>3 >1«A3µD4½C4¿D5»A2·C6¬F8œI;…G:l@3S9*B4)>63:6595484382271161.61.72/72/72/61.61-50,50,41,//-.0-//-//-0/-0/-2.-2.-3--5,-4*+3)*5)+<-0C47N8:d>=vEA†JINLšTV¤aj¥l}rŽ‘{¢†€®…¹{„»ou©[[QHuOCiOFeOG_PH_RN_[Yfnotƒ‡ˆ”™•™ž—š ”™‘ƒ~ojkY][LVSJXSZVRaXQa/.,/.,0/-10.40-40-51.51.72.72.72.72.92,92,92,92,91.80.7/-7/-7/-7/-80.91/80.80.80.80.80.80.80.80.6.,5-+5-+5-+4,*4,*4,*4,*5-+5-+5-+5-+5-+5-+5-+3.*2-'1.'2/(30)30)41*41*52+63,63,63,74-85.96/96/:7.?8.@:.B<0D>2G?4H@5H@3H@3I@1I@1K?1K?1K?/L@0MA1NB2MA1QA1YB2dC2qC3|C2‡B2’A0˜<- :+§;.¯=2µ@6ºD:¿F=ÅD>ÙCEá@FãBGçBFêDFðCEôADø?Dú;@ù:?õ;@ð=@è@@ÜA=Ñ@;Æ@5·=.³@-³@-²?,²?-°?-¯>,­@,ª?-§@-¥@,¡A+A,š?*˜@*•@+”>-‘>.‘>.‘>.=+=+=+=+‘>,‘>,’<+’<+“=,“=,”?+•?.•A6–?5š>3£>2¯A4¹C5¿D5ÁC5ÀD8¸F;®I=™J=G;h@4Q:,B5,?74=77<66:4494183072/72/62/62/62/51.52-41,41,21,.0-,1-.0-.0-//-//-0/-2.-5//4..5,-4*+4*+9-/>24I56[97l?9|E@†IDOM˜[`›fv”mˆŒwžƒ}­}‚¹u~·fm¤TV‰MEvLAkMAeOFcQHcMH^NK\[[eqty…‰ˆ‡Œ†Šˆ…†Š|xzlfiXZ[MVSLZU[ZT`[S`.-+/.,/.,0/-3/,40-40-40-61-61-61-61-81+81+81+81+7/-7/-6.,6.,6.,6.,7/-7/-80.80.80.80.80.80.80.80.5-+5-+5-+4,*4,*4,*3+)3+)6.,6.,6.,6.,6.,6.,6.,4/,30+30)30)41*41*52+52+52+52+52+63,74-85.85.96/96->7-?9-@:.B<0E=2E=2F>1F>1G=1G>/H<.I=/I=/J>.L@0JA0KD2NE4UD4^D3iD2sB1~A/†?-Œ9)”9'9*£<-¬@3³E8¸H<ÁF>ÒDCÚACÞBCâDCçCDìBCó@C÷?Aú;@ù:?õ;@î>@åA@ÚB=Í@9Â@3µ=-°@,°@,°@,¯>,®?,®?,¬?+©@-¦?,£@+ @*œ@+˜@*–@)”?*‘>,‘>.‘>.=-=+=+<*<*=+=+<*<*’<+‘>,”>-’?-•A6–?5œ>2¦@4²B6¼C8ÁC7ÂB7ÂF<ºJ?¬L@—K>|F:b@4L:.A7-@85>96=77<74:5294183083062/62/62/32.52-21,21,12--2.-2./1./1.00.00.10.10.5106005//5,-4+,6,-:01D22T71c;3qA7{E;‚HD‰RU_l‹i‚ƒs˜}y«x}µowµ`f¢QR‹LEyL@pL@hPEgQFfLC^GBVMLZ^^fjnquyxx}wz€vwzokoa`bTWYLTTL]WY]V]]V^------.-+/.,0/-10.3/,40-3/,3/,4/+4/+4/+4/+6/)6/)4/,4/,3.+3.+3.+3.+4/,4/,50-50-50-50-50-50-50-50-3.+3.+2-*2-*2-*1,)1,)1,)4/,4/,4/,4/,4/,4/,4/,4/,41,41,41,41,41,52-52-52-52-52-63.63.74/85096196/<5-=6,?8.@9/B:/C;0C;0C;.D:.D:.F:.G;-H<.I=/J>0I@1JG6MH5RG5YF5bE3jD1uB/}>,‚;)‹:)“:*š=,£B2¬F8²J=»I?ÌGBÔDCØDBÝEBâBBéAAð=@ô<>ù:?ø:<ô<>í?>áB>ÓC:ÅA5¹?0²?-®?,®?,®?,­>-¬>-¬>-ª?-¨>.¤?- ?,ž?+š?,—?+•>*“>*‘>,?.>->->-Ž=,Ž=,Ž=,Ž=,Ž=,Ž=,Ž=,<,>-‘>.?.”B4—A4@1¨@3¶A7¿C9ÅB8ÄA7¾C;·H?¦LCJ@tE;Z>2E9-<5+@93@85?75>63=52<4194083/62/43/43/23.32.12-12-02--2.,2.-2.-2./1./1.00.10.3205105104..2,,4+,7./=/.N5.Y9.e=1n@3sB;yKK€Zeƒg€p—zxªu{·ks´_d¦TT”OGƒLBwNAmNBhMAeJA`GBYGFXKKWMPU]cc`fbbia`f\Z`TW[MUXMXXP^YV`WX`WZ,,,,,,.-+.-+/.,0/-3/,3/,2.+2.+3.*3.*3.*3.*5.(5-*3.+3.+2-*1,)1,)2-*3.+3.+3.+3.+3.+3.+3.+3.+3.+3.+2-*2-*2-*2-*1,)1,)1,)0+(3.+3.+3.+3.+3.+3.+3.+3.+41,41,41,41,41,41,41,41,41,52-52-63.74/85085085.;4,<5+=6,>7-@7.A9.A9.A9.C9/C9-E9-F:.G;/H<.J>0HA1JG6IH6NG5VF6\E3dC2n@0v>-{<+‚;)Œ;*”=,œ@1£F5ªJ:´J=ÄH@ÌEAÑFAÖE@ÞCAä@>ì>?ñ:<÷;<ô:;ð<=é@=ÜC=ÍC8¾@2±>,®?,«@,ª?+ª?+ª?-©>,©>,¨?,¥>-¢?, ?,›>,—?+•>*“>)‘?*>+>->->-Ž=,Ž=,Ž=,<+Ž=,‹<+<+‹<+‹<-Œ=,>/Ž?.”B4—A2 @2¬B5¹C9ÂC:ÅB:ÂA;ºA9±I@£NGNEoG=S?4A;/96-@93A75?74>63<4194083/74/43/43/34/23.23.02-02-.3--3/-3/.3/.3/02/02/11/11/21/32032040/2.-1-,4..8.,G4-O4)X8+`<0e?6mGFyYd‚k…€uŸ||²w|¼nu»dh¯[[¡RMLB~OArL@hI=cH>`HB^ECX@BO;@FBGJDMJJQJJQIIQFKQEOUIVWO^YS`YS`XU++++++,,,---/.,/.,0/-0/-1-*1-*1-*1-*2-)2-)2-)2-)2-*2,,1++1++1++1++2,,2,,1++1++1++1++1++1++1++1++2,,2,,2,,1++1++1++0**0**3--3--3--3--3--3--3--3.+41,41,41,30+30+30+30+30+41,41,52-63.74/74/85085.:3+;4,<5-=6.?6/?6-?6-?7,B8.B8.E8/E9-G;/H<0J>2H@3HE6GF4KE5QD4XC2_B2f?.n=,v=,|:*…9)Œ;*“=.›B2¢F7¬F8»F<ÂF>ÉF>ÐE>ÙD@âC?ê@@ð>>ò::ñ;:ì<<äA<ÖC;ÆD6µ@/ª=)ª?-©@-©@-¨?,¨>.¨>.§=-¥>-£=. ?.ž?-š?-–?,“>*‘?*>)>+>->-Œ=,Œ=.Œ=.‹<-‹<-‹<-Š=-Š;,‰<,Š.‹=0Œ?/’C2˜B1¡A1®B6¼C:ÂC<ÄC=ÀC=¹FA²QJ¥XRXQsRIWI>CC793@72>71=60:5/94.83/63.43.43.34/13.13..3-.3-.3--3/-3/-3/-3/.3/.3/02/02/00.11/22021/0/-/.,2.-4/,?0+D0)K3)T8-Z<4dFFu]jƒs‰€«…„¾~ƒÇtzÆmp½ce¯VSšLC‚K?qI_FB]DBW?AN;?H:BE>HGDMHGQIGQHJRGNVKUXM^ZOaYNaXO++++++,,,,,,.,-/.,0/-0/-1-*1-*1-*1-*2-)2-)2-)2-*2,,1++1++0**0**1++1++2,,0**0**0**0**0**0**0**0**2,,2,,2,,1++1++0**0**0**2,,2,,2,,2,,2,,2,,2,,2,,3/,30+30+30+30+30+30+30+41,41,52-63.63.74/85085092,:3+;4,<5->5.>5.>5.>5,B8/B8.E8/E8/G:1I=1J>2I?3FC4FC4JB5OA4TA2\@2b>0j<-q<.w9*}8)…8(Œ:,•=/›B4¤B5²F:ºE;ÁF>ÊG?ÔG@ÞFAçCAîB@í;;ë;;ç>;ßB;ÑD:¿D4¯@-¤>(¦A-¦A-¥@,¥@.¥@.¤?-¤?-¤>/¢>.Ÿ@.œ?.˜?-•>+‘?*>)>+>->->-Œ=,Œ=.‹<-‹<-Š=-Š=-ˆ<.ˆ<.ˆ<.ˆ/ˆ>1‹?1‘D2–C1¢B4­C6ºC;ÁD>ÁD>»EA¹PL²[T¥e\‘f]u_T[UIGMACI?<92?82>71;6094.74-63.43.43.34.24/13./4..3-.3-.3--3/-3/-3/-3/.3/.3/02/02///-00.22022010.0/-0/-3/,8,,;,)C0*K70S<6^IHtbn‡z”жŒÆ„ˆÏz€ÌrxÆik¶WWŸID„E=nG^CAY@CV@DP>EKGQRKWUQ^WU`XS_UR^TT^SY_S^[LaZJaZJ,-/,-/,-/,.-------.-+.-+/.,/.,1-*0,)0,)0,)/+(/+(/+*/+*/+*/+*/+*/+*/+*0,+/+*/+*/+*/+*/+*/+*/+*/+*/+*/+*/+*0,+0,+1-,1-,2.-1-,1-,1-,1-,1-,1-,1-,1-,0,)1-*2.+3/,3/,3/,3/,3/,3/,3/,3/,3/,40-51.62/74/80-92,:3-;4.=4/>5.>5.>5.?4.?5,B5-C6.D7/F90G:1F<2G?4H@5J@6P?5T>3X<1^90b6+m9.t8-|8+ƒ9,;/“=0˜?1ž>0§A3­A4µC8¾E:ÊG=ÔG>ÞE?åC@è@?êBAæDAÚE>ÈD8·B1ªA.¢B,¢A.¡@-¢?,¢>.¡=-¡=-¢>. ?/œ<,š=,˜<-•>-“=,=+Ž=*Œ>*‹<+‹<+Š=-‰<,‰<,‰<,ˆ:-‡;-‰=/†3ˆ@2‰A5‹A4‘E5—D4£E9±I>ºG@»D>»EA¸MG´ZR¯f_£qf‘sh~rdjj^V^SIQFLLBJF=B>5<8/95,74+63,33+43.34.14-14-02-/1,,1+,1+-2.-2.-2.-2./1./1./1./1.02/02/11/11/11/11/11/40/4+0;/3A32C4/J;6]OOymy‹…Ÿ“»”–ϕك‰ÓtzÆjn·_b§Z[”LItHBdA>]>>X?BUAIVLU\U`bbqnn}xv†|rulyoguh_k_W_P[ZF`ZDc]G,-/,-/,-/,-/------.,-.-+/.,.-+0,)0,)/+(/+(/+(/+(.*).*).*).*)/+*/+*/+*/+*/+*/+*/+*/+*/+*/+*/+*/+*/+*/+*/+*0,+0,+0,+1-,1-,1-,1-,1-,1-,1-,1-,1-,1-,0,+0,)1-*2.+3/,3/,2.+2.+2.+2.+2.+2.+3/,40-51.62/80.91.:2/;4.=4/>50>50=4-?4.?4.A4.B5-C6.E80G:2H;3H>5H>5L=6O>6Q=4V;2Z90_7/h70p7.w7-9-‰9.<1–<1›=1¢@3§A3¬B5´D8¾E:ÉF<ÔE=ÛD=ßD@àE@ÞFAÔG>ÄF8²C2¥B-žB-ŸC.žB-Ÿ@.ž?-ž?-ž?-ž>.ž>.š=,™>,–=-”=,=+>+Œ>*Œ=,‹<+Š=+‰<,‰<,‰<,‡;+‡;-…<-†2†@6‡A7ˆB6“G9—E7£G<¯J@¸IB¸GA·LF³TN±d\ªqfŸ~oo|mmseZfZNXMLNAKI=EC7@=4=:188.44,11)23-23-03,/2+/1,.0+.0+.0+/1.-2./1./1./1./1./1./1.02/02/11/11/11/11/11/2015+49-7<23?53H?:^VTxr|Šˆž““¹”—Ê–Ô„‹ÏyÂqy¸kt­hnž\_€XZqSUjRWjT^hZgmfvvr‚tˆ~’‡ƒ•‰~Žv†yr€qfteZeTYXC^X>a[C,-/,-/,-/,-/,-/,.-------.-+.-+.-+-,*/+(.*'.*'.*',+),*+,*+,*++)*+)*+)*+)*-+,-+,-+,-+,-+,-+,-+,-+,,*+,*+-+,-+,-+,.,-.,-.,-.,-.,-.,-/-./-./-./-./.,0,+0,+1-,2.-2.-2.-2.-1-,1-,1-,1-,1-,2.-3/.40/51.80.91.:2/;30=31=4/=4/=4/?40?4.A4.A4.C60D71F93G:4H;5J;6K<7N=6P;6S:5V72[6.c60k6.t5,}7/‡9/;0”<0–<1?3 @4¢@3¨@3±C6ºD8ÅE:ÍD:ÕF@×H@ÔIBÌI?¾E:®C3¡B.œA.B/œA.œ?.›>-›>-›>-›>/›?0˜<-–=-”<.“=.>-Œ=,‹<+Š=+‰<*‰<*‰<,‡;+‡;-…<-„:-ƒ;-„<0‚<0‚<2‚>3ƒ?4…A8‡C:ˆD9”J=—H; H>¬KD²KF³LG²SM®`V­sg¦qŒz‘Ž{‚‰ws€ocqbXcUNRDMN@HI;DD8@@49;.46+/1&01)01)/0*/0*./*./*//-//-//-.0-//-//-//-//-//-//-00.00.00.00.00.00.00.1/26+97+98/4;63HE>_^Yzz|‹š”±’—¿•Ç„ŽÃ}‰»{‰¶|‹²}Œ«}ˆšwƒq~‡n}‚n~~o‚~yŽ…ƒ™‹¡”‘¨˜¥”ˆŠƒ–ƒ|{j{i\hTVV>[W:]Y>-.0-.0-.0-.0-.0-.0.......-+.-+-,*-,*.*'.*'.*'.*),*++)*+)*+)*+)**()*()*(),*+,*+,*+,*+,*+,*+,*+,*+,*+,*+,*+,*+,*+-+,-+,-+,-+,.,-.,-.,-.,-/-./-./-./+*0,+1-,1-,1-,1-,0,+0,+0,+0,+0,+0,+1-,2.-3/.40/91/:20;31<41=31=31=31=4/>3/>3/@2/@3-A4.C60D71E82F93H94I:5J;6L:6N94Q83T50^72e60o6/x8/‚90Š:/<1”>1™?4›?4›?2Ÿ?1¥A2®B5¸D7¿E:ÇG>ËH@ÊJAÃI>¶F:ªB5žA0™@.™A-™A-˜?-—>,—>,™>,™=.—>.•<,”=,“=.=-Ž=,Š=+Š=-‰<,ˆ;)ˆ;)‡;+‡;+„;,„;,ƒ;-€;,;/€<1€<1>5ƒ@7ƒC:‡D<ˆE<”L@–H<žG>§JC®LI®QL­]Vªj^§€o¡yšš‚›ƒ†•€z‹xm{jbm]SZJQUFKO@EI:@D6;=057,13(01)/0(./).-(.-).-)/.,0/-/.,/.,/.,/.,/.,..,/.,..,0/-//-0/-//-//-//-//-2-17,:6*83-1961HJ?bfX{€z‹““£–°Œ•¶ƒ²¯…™²¤¶’¨³“¨«¤£Œ ž‡ž˜‚™}˜‰œ‹ˆ£”°š˜±›”­—‹£…›„’|k|iXfOSV;YU8ZV9+/2+/2+/2+/2-.0-.0......------.-+-,*-,*,+),+),+),*+,*+,*++)*+)**()*()*(),*+,*+,*+,*+,*+,*+,*+,*+,*+,*+,*+,*+,*++)*+)*+)*,*+-+,-+,.,-.,-/-./-./-./+*0,+0,+0,+0,+0,+/+*.*)/+*/+*/+*/+*0,+1-,3/.40/901:20;31<42=32=31<20<20=20=2.?1.?1.@2/A30B5/C60D63C84D95E:6G96H94K84N50X72_60i70r7/}:1†<1Œ>2>2—@6—?5—?5—?3œ@3£C5«C6³E8ºE;½G=¾H>¹G=°D8¦A5›?0—@/—@-—@-–?.•>-”=,•<,–=/–=/•<.“;-’0->0-?1.@2/A4.?4.@51@72@93A:4B94C84F74H5/Q51X5/a6/l8-u9.€0‹=1“?5•>5“?5“?4•B4šB4 C4¥D4¬B5°D8´E:±E;ªB7¡?4š>1–>0•?.”?+“=,“=,“<+“<+”<.”<.“;-’<-<.;-Š;,‰<,‡;+‡;+†:*†:*…9)ƒ:)ƒ:+9*9-9-€<1<3?6€A8‚C<…F?ˆIBŠICŽJAG>—HCŸNJ§VR§`Z©pe¤ƒrœ”}–¡ƒ¨Šˆ§ˆƒ „~–~yˆup{jdp\]iSR^JJS@BK:>E5:@29<134,22*1.)/,'/))0**1++2,,1++1++1++1++1++0,+0,+0,+1-,1-,1-,1-,/.,/.,/.,2,.8*75(13+(56&EK1\gGu‚d†“yޛБž”Ÿš‹ž˜¥——´ž¢Å¥©Î­¥É­¦Ê°§Ë±¤È¬—¾Ÿ‹³‘ˆ°²Ž²Ž²¬Š„¡‚€™{wŽrdx]Q_EMQ6QQ5RQ5,03,03,03,03./1./1./1./1/////////////.,/.,.-+.-+/-..,-.,--+,,*++)*+)**()+)*+)*+)*+)*+)*+)*+)*+)*+)*+)*+)**()*()*())'()'(+)*+)*,*+-+,.,-.,-/-./-./+*/+*/+*/+*/+*.*)-)(,('0,+0,+0,+0,+1-,2.-40/40/:12;23;23<34=32<21<21;10<1/<1/>0/=/.>0->0-?1.>3/=60;60;83<94=:5>93@72C60G4.O4+Y4+d5+n8,x:-;.…;.<4‘<5>3@3A2“B1—A2™@0 >1¦@4ªB7ªB9¥@6Ÿ>5—=2•?2’?-’?-‘>,=+‘;*‘;*’<-’<-‘;.‘;.Ž;-;-Š;.ˆ:-†:,„;,…9)…9)ƒ:)‚9(‚9*9*~8,~8,€<1€=4€@7B9„E>…IAˆKFŒMFŒIAŽH@˜JF¡SO¨]X©hb©{n¤Žy™œ’§†‰¬‹‚ªˆ€¡„™€~‹wxnjxadr[ZhQQ]IITCCL;>D60-?1.=2.>3-=6.<719919:2::2;81?6/C2+J1,T2)^3*h6+o9-v<.{;/‡=2‹=3‹?2Œ@2Ž@3@1’?1•=/˜2¢B6¡C7žB7™?4–>2”>1”>/“=.=-Ž=,Ž=,Œ=,Œ=.>/Ž<.Ž<.‹2>5€@6‚C:…F=…JBˆME‹OGŒICŽID“PJ˜\Th`uiž‡u™€“¢…ª‰‰¬‹©‡¢„}›zytˆog~bby]\pUUgON]HGRA@I8=A388.85.50,3+)2()2()3)*4*+2),0**0*,2)*2),2),2),2),3*-3*-1+-1+-0,-0,-0,-1+/4)/4*+4-%46!?F%T`8m|Qg‰™tžz¡~ˆ¡zЧ{‘¶‚›ÄˆŸËŸÉ™žÇÆš˜Á•Œ·Š‚­€…®‚Œµ‰„«‰®…‰©‚~œxvolƒfZnSJZ?FL2FJ/FH0/0+.0+/0+01,01,01,12-21-32.43/43/62/51.41,3/,4/,50-50-4/,3.+2,,1-,0,+0,+.,-.,---/--/,,.++-*).))+.)/.)-/(/.)-/)-.)-.*+.*+/+*/+*-,*.-)--+-.)./*./*------.,-/-./.,0/-2.+2.+2-*4,)5-*6.+8/*:1,:1*;2+=4-=4->50>50>50=4/<3.;2-=2.<1-<1/;0.=/.>0/>0/@1.B/)B1)<3*96-58-47.66.;2-@-)G)'O''V)&[.(a5,f<0m?0yA0@/†A1‹B3@3“=0“;/’8-“;/“=.”A1•B2”C2’A0‘>.‘;,—;0—:2’;1Œ=0ˆ?0„?/‚?.‚?.ˆ@1ˆ?0Š>1‰=0ˆ-v>-v;-}?2};/ƒ?4ˆD9‹H?ŠLA‡MB…OC‡NELI•TP“cYŽqaŠ}j†Šq‡—|ˆŸ‚‹¦‡Š§‰‹¨ŠŠ¨Œ„¥ˆ|¡‚r›{n—uhŽia…_[zXYtUZnSVeNOXEIK=B?6@93:0.5+*3')3'+3'+1&*/)--)*-(,-')/&+1&,3&-3&-4'.4'.3(02(00)1/*1/*1/*0/)-1++0-(//#A./0*01+01+01+12,12,21,32-43.43.74/74/63.52-50,50,7/,7/,6.,6.,3.+2-*0,+0,+0,-/-./-0--/-,1+*/)*.)(-.)//(//(//(//)-/)-.*+.*+/+*/+*.-).-)./*./*./)./*.....0....../.,/.,1-*3.+5-*5.(7.)8/(:/);0*<2)=3*>5,>5,>5.>5.>5.=4-<3.<3.=2.<1-;0.;0.=/.=/.>0/@1.D/*F/)C2+@3+=4-<3,;2->0-A,+F*)K)(P*'V-)\3-a91g=/pA/xA-€A0ˆ@2?4‘=3“:2“;19.‹.Œ@0A1A1ŽA/‘?1•;2•;2<2‹=0†>0ƒ@/?/@.…@1†>/‡=0ˆ<.…;.„;,‚:,<,w9,w=1p;-m9+r?.r?.q9*u:,=1„@5ŠD:ŒH=ŠJ@‡MA…OCˆMEJH•TR‘f]Šwfƒ‡p“w€Ÿƒ¦††§ˆ‹¨Š§§ˆ¥‰ ƒuœ}m™vd“i^‹`Y‚ZY{XZwXXoSRaJMVCEI;AA7;8350-3*+2)*1(+.(*1(+0',0',0',1&,3&-4'04'04'03(02(10)1/*1-*3,+3,+12-12.-0,)--%8:,SXBox]€‹i‡–o†™l†žnˆ£p†¤p„¥pŠ­w“¶€™¹‡–¶„“³Œ®{†«x‚¨w‚¨yƒ¨|ƒ¦|‚¤{x’uqˆnh{eYjWMZHFM;@D3;>-12,12,12,12,23-23-43.43.54/54/85085085074/72.61-80-80-7/,6.+4/,3.+2,,1-,1-./-.0.1/-0--/,,.+*/+)./(/1'//)-/)-/)-/)-.*+.*+0,+0,+/.*/.*/.)0/*0/*0/+//-///0./0./0/-/.,1-*2-*6.+70*90+:1*<1+=3*>4+?5,?6-?6-@7.@7.?6/>5.=4-=4-=2.<1-;0.;0.;0.;0.<1/?1.D1+G/+J.+L,-O+/N*.J*/G*.D,,A.*B-(F-(O.)Y0*c2-i4,k:,o;-w;0=4‡<6Œ<5:4:4Š<2‡=2†>2…?3†A2‰A3ŒB5C5Ž?2=/Œ>1Š>.‡>/…>,†=.†=,‰;.‰<,ˆ:-†:*„;,€<)~=+z=+|>1x<1u;/t@29:,23-23-34.34.34.45/54/54/650761961:72:72961940940:2/91.91.80-50-4/,4..4..3/03/01/01/20.1..0--/-+.0)02).0*.0*.0*.0*,/+,/+*1-,1-,0/+0/+10+10+10+10,11/1111/010.10.2.+3.+3.*92,92,;2+<3,>4+@6-@6-A7.B8/A8/B90A8/A81@70>5.>5.=2.=2.<1/;0.;0.<1/=20?1.B3.F1.M-.T)0X&/W%.Q&/K(.D/.>1+<2)@2)H/(T/)`-*e.)i9/k;/u<3}<6…;8‰;9Š;7ˆ:6‰>8†@8†B9…B9…C7†B7‡A7‰A5‰@1‰@/ˆ?.ˆ?.‡>-ˆ<,ˆ;+‰:+Š8*Š8*ˆ9*…9)‚;)}<(z=(x>*@1z7.x8.x<1u;-v>/{A3{@2€B7„D:‡G=‰I?ˆI@ŠKBŠNDŒPHQJ“ZQ”e[rb‰}g„ˆmƒ“vƒœ|‡¥ƒˆ§‡‹¨‰¨Š£‡‹ž‚ˆ˜~–yr”ol’ihŽgfŒeg‹gd†e`}_\v[QgPL]JBP?9D62:/.4*,/(-*%5%&8#(8#(7$(4%(3'+2),0,-,*+++-*+-(,-',/',/%-/(,-.*+1++0+'.+"88,PUAiqYv„c{Œhyh|–iœl}Ÿmyžkz m¥r‚§t€¥q}£p}£p}¥s~¥v~¥x}¤x|¡x}Ÿzz™wuqn‡je|bWkRN[GEG9?=097*45/45/45/560560560761761872872;83<94<94<94<73<73<41<41;30;3083072/61.61.5106216213122011/00./1-.2,04+.4+.4+.2,.2,,2,,2,,3/.3/,3/,3/,21,21,32-32.32032032032051051.61.61-;4.<5/=4-?6-A7.B8/E8/C9/D:1D:1E;2D:1C90B8/@5/@5/>3/>3/=2.=2.=20=20>31>31B41F21N02U,4Z(3Y'2S(1L,1D20<5-97+<6*D3)N1)Z/)^/)f:1j;3s<7z=:‚<:†<;‡;;†::‚;7>8A8B9ƒC:ƒC:…@9„@7„B2„C1…@0†>/ˆ<.‰;.‹9-Œ8-Š6+‰7+‡8+ƒ:+<+z=*w>*x>*9-z0'8/ƒ?4u5+q5*|B6}C7E:G<ƒI>„J?…JB‡LDŠOG‰UJ‚^NfQ†mY‡r]ˆyb‰ƒiuš|ŠŸ~ˆ£‚ˆ§…‰¨†‡¦„„¢€œ}—w}p}Žl{Œlx‹kx‹muˆlpƒgl~dcqX\hRSZHIK=B@4=6,9/&7*$9''9%'6&'4&&1'&.((,+),,*)+()+*)+*)+***,**,+),-)*,#$2*'50*86*BC5UZFfpWn}^tˆeqŠbuex˜iw›ks™htšiwŸkz¢nx lwŸmx ny£s{¥u{¥w|£wyžuzœww–tsŽom†hd{_WkPN\EDE7>:/84)560560671671782782872872983:94=:5>;6>;6>;6>95>95?74?74>63=52;63:5294194184184395484373243151240/6-06-.6-06-.4..4..4..4/,40-40-40-51.32-32-43.43.43/431542540841850940:5/=60>7/@7.A8/C90D:0G:1H;2F<3F<3F<3F<3E;2C90B71A60@51@51?40>3/>31?42@53@53A62D52K25Q16V.6U-5R/5K12D52?80=9-?9+C7)I6(S2)X2)]2+d3,l50v64}77‚87ƒ77‚66~75}:4}<6}>5€?9ƒ@8†?9…A8ƒA3ƒA1„A1„?0ˆ,~<,…5*Š3, ME¦YQŠA8|90‚F;€K={G:zJ<|L>}M?MB‚PE‰UJ†\LwiOupR‚rXu]–ubŸ|i¦‡s§‘z“z–™|’ ¥‹¥‚†¡~‚œyƒ–v†pˆo†ŒpƒŽpŽp~pzŠmv†km}bht\`hSWZGPM>H@3B6*@/'=+'<*(8*'5*(2*'/,',-'+-(+-(,-(-,*/+*3)*4(*6'*6((3($<3,E>4IG8QR@]bKgqVjyZn‚]k„\l‰]p‘bq•eo•do—eršfuŸmrœjq›itžnx¢rz¤vy¢vyŸvvštw™vu”rokj…fc|^UlON\ECD6@9/:3)671782782782893893983:94:94;:5>;6?<7?<7?<7@;7@;7B:7B:7A96@85=84=84<73<73<73<74<74<74;639529338308/09/.8/080.80.80.61.61-61-61-52-52-63.63.74/74/540540841952:63<94=84@93@70A8/C90D:0G:1H<0I=1I=1J=4J=4J=4I<3F<3D:1B8/A7.A81@70@72?61?61@72@72A83@64A75C86F87H96J86J86H94E80E8/E9-F8+I9,I9*L9+R6*Z/&d/'n3-z63ƒ98‰;9‹;:‹=;‹A>‡@:‚=6<3:3‚<4ˆ=7Š@7…?5„@3„>2†>2†<1…;0„:/ƒ;/€:.;.~<.=/=/€(+A&+E$+C&(F5-LC4VQ>[YD`bJgmQiwVj{Wl‚[g‚Wf†WlŽ\o”an”an–bršfsko›jo™irœnw ty¢xxžwu›vs—su—vs’rn‹li„cb{[TmMM]CHI;E<3?6-7827828938938939:4:94:94;:5<;6?<7@=8@=8@=8A<8A<8C;8C;8C;8B:7?:6>95>95=84>95>95>95>95=85<73:51;30:0.:0.91.91.91/91.91.72.61-61-63.63.63.74/74/74/540651952;83<94?:4B;5B;3A8/B:/C9/E;/H<0I=1J>2J>2K>5K>5J=4J=4F<3E;2C90B8/B92B92A83@72@72A83B94B94?82@93B;5E<7G<6I<6M<5N;4M6.N6,Q6+Q6+Q7*R8+P9)V6'g5*r6,~;3‰@9•D@›HDŸJGŸLF QJ™LDŽD;…;0„7-…7-Œ91<4‹<5Š=7‰<6ˆ;5ˆ;5„;4€<3}=3z>3z>3z>3}=3;3†93‹63’31–)&°?;ê}zü–’Ãhc•H@‰K@xH:pLjV>oV@vZE€_L‚fP|qQ†vU s\·k^Ë__ÖT\ÚQ[ÚR\æouÛyxÏ…|ÃŽ~¸“€®”}¥‘x¢ŽvŸ‰rŸ‰tœŒu˜Žu”us‰s…r‰n|…jwyapnWiaNbRBWD5S;/O4-M1-I0,D/*@/(;.&7.'6/'90):/)=.+A,+F)+H(+K'+H)'TB4YQ9B?:D?;D?;E@8E>8D=7B;5B;5B;5B;5B:7B;5A:4A:4A83A83A83@72@64>71>71>71<71<71;60:5/85.85.74/74/961961961:70<71=82A:2B;1C:1D<1F<2J>2K?3L@2N@3N@5N@7N@7L?6K>5I<3H;2E;2E;2B90A8/@91?80?80?80@93@93<5/MD=M@:K:3T@9R62Q0+_<6[4-^6._4+\0'^/%e6,m=1r<0‰I=G;—I?ŸKAŸF>›>7š=6žD;¦ND¤PE¨VJ«YK¥OB™A5—;0œ>6”98’8855‰32ˆ74‡>8?6u<1uA4s?2t;0y90…62Ž23•,1›&,ÆHIåcaÂFDÊYUàzv«VO†F<„VFmR=i[AibFkdHk_Eo^D}cLjT‘cL±n]ÐohÚY]Þ;Lå-Eñ,Hó1LóAYéJ\ã[eâorà||Ú}Ø…׊‚Ä~vÀ€w½ƒx¹…xµ‡x¯ˆw«Šy§Šx€p}nšyj–nb‘bZ‡UNHC{A?u:=8?>9>=8>=8A>9A>9B?:C@;D?;D?;FA=E@8E>8E>8E>8E>8D=5C<6C<4D;4C:1B92B92B92B92A83A83@93@93>71<71;60;6096/85.74/74/96196/96/:70<71>:1A:0B<0C;0E;/I=1J>0L@2L@2N@3N@3N@5N@7M?6J=4I<3H;2E;2E;2C:1B90@91@91@91@91A:4A:2C:3I81K/+V.,j76t:9{;;…ECD?ƒH@„IA„H>JB˜OH¡PL¢OG“D7”B4šB6ŸC8 >3œ7-œ7-Ÿ=0£C5›?0™@0 E3¤G6§F6®H:¶NEµKM°GL§@D›8;“78Ž=:…>8y=3r<0|H;‡KA…>8…++•(.µ9DÓKWÛLNÝOMÇ@=¾A?Ð`\³YQ„@5‚TDyaIe[@`\?khIulOwfJcK–cN¹fXÒa[àXZçCNî.Eù'Dÿ(Hÿ*Iÿ0Nó5Nì?RêLZæR^àT]ÞU]ÝZbÛbiØelÖinÕlqÐprÎttÌvwÉxwÌ|}Ëy{ËvyÊquÊksÉeoÇalÅ_lÃan±T_£LU™HQDK„FIk79HT1-M0*H1+J6/K81K:2O>6UE8[O5cZ9gaAifEnrOz‚]z‰bt†^r‰_p‰_p‹`qŽ`u’dw”dw”dw”fs’ix–rz—xy–x~˜}ƒ„…‡ƒ›…™ƒz’zr‰om„hhd`y[TmMNaERSCVPDVOE8938938939:4;<6<=7?>9@?:@?:@?:C@;C@;C@;C@;D?;D?;FA;FA;FA;E@:E@:E@:G@8F?7JA:I@9H?8G>5F=6E<3F<3E;1D:1D:1D:1D:1D;4D;4D;4C<4?80?80<71;60:5/:5/94.94.96/96/:5/;7.>7/@9/B90C;0E;1F<0I=1K?1M?2M@0NA1M@0P?5M?4L>3K=2I<3H;2E;1D:0C:1C:1A:0A:0?;2@<3@<3D;4SE–I?•MA›OB«RJ¾URËPSÄLK£A4B0 @0¥?1¥;.£7+¤8+§=/«E6¡>+˜7$:'¥>-¬A/²C2¸C:§02±9B¹DL¾KRºMR­KL–A>‚71{8/v6,z1*…0-œ37º8@?:A@;BA5G=3F<2E;1D:0D:0E;1E;2D;2E<3E<5E<5@91?80=82<71;60:5/:5/:5/96/96-;7.;7,?8.@:.C;0D0K?/M@0M@0M@/M@0O?2O>4L>3K=2J<3G:1E;1D:0D;2D;2B;1@<1@<3A=4B>5F<3Q81X+&‡;?½U`ØUeäVfâVcÉKO40”:/>0˜B3­F=ÄJGÔCHË?@±B7§F5©B3¬@3¯?3°>3³B4´D6²G5©B/£<)¤;(©<(«:(®6&­3(¶97º9=»8>º7<¾=BÅJLÄTS¾XS™?7‹4*‡-%61ÃHKÛPWàBQÚ4@Ý;9Ì/*Ñ94Æ84ÅF@È]U§XKWFwW@xdI~pS‚oQ…fJ‘cK¬m[ÕuiêUWöFPò>Jò/?@.;D/AF/QJ._T8g`CokN||`ˆŽr‡‘v}‹qzq|s|szozŠm}Œoƒ’uˆ—z•£Šœ©•£®¦±¡¬´§±¹®°·°«µ­¡«¢” ”ƒ‘‚s„qh|c]tXSlNPdHPXCVWEWXH671671782893:;5<=7?>9@?:BA/K?1M@0M@0NA0O?/O?0O?2N=3N=3J<1I;0G;/D:0D:0D<1D<1B;1@<1A=2A?3B?6K=4[6.t42¬MSÚ^iåN_âAQÕ7E¶'+§2)œ8(‘:&•=)«A3ÁE=Ó??Ì<;±?5¨B4ª@2­?2²@5¸C9¼H;»J<¬>/ª?/¨=+¦;)ª9)°:,·;/»=1ÈGAÌEAÎ@?Í99Ó8<ÜCEßMNÚSOÁD>ÃMCËTLÑUM×KJÚ@Bß5>à37Ù4.×9.Í3+Î;4¾94²A9µ[P–UC{N9‚bIˆjP…`F“ZF°dTÎpdèmhçFKíDãDHãIKäJLåIMðLSïDMï:Iò7Hõ4Gø1Fþ4Lÿ:Rÿ9Vý:Xü;Xú;Zû<]ü?_ýAbüCeýEiûEkúDlúDmúCoùDoùDqúCoÿHpÿBhÿJmýOpîKhæPkâ]rØcsº[cŒ@D`&$Q+"V@3VO=JL7AC-RJ3eYCujV€{gŽy™œ‹•œŒˆ“ƒ‚Ž€‰—ˆ›Œ™ˆ‡’‚Š“‚—žŽ¤¨™²¶§¸¼®¿Á¶ÀÁ¹ÂÃ½ÅÆÁÃÃþ¾¾°µ±¢©¢—Œy‡vi{e\sYTmORfJPZBTYCV[G560560671782893:;5=<7>=8@?:@?:C@;DAGB>GD=GD=HC=ID>IE2I=1G=1G=1F<0F<0E;1E;1D;2C:1A:0A:0@91@91=82<71;60;60;7.;7.;7,<8-?9-A;/D0L?/M@0NA0NA0O?/O?/O?2N=3M<2L;1I;0G;/F90C9/C;0B<0B;1@<1@>2A?3B?6N;4j94•GEÃZ_ÚXbÜDQÛ9FÑ4;¼,+¬2'Ÿ8%–:!”: ¡=&³@.Á;2½81§7,¢:-¥9-§7,¯:1¸B8ºE;·E:®>2­?0§<,¤6'ª6)¶>0ÃD;ÊG=¼:-ËA6ÝF?èDBï?Aï;>ç47Ú00Ø95ÞIBåULàPGØ?9Ö20à02ç77Ø1(Ý=/Ê."Í81½4,®7/Èh\¸l\ŽWC‡ZC„V?‹Q=ª[LÑjaâgbåSTðEKï>Fâ<@Ø>>ÑB>ÑHBÛPMéWWëORîDMï;Gõ6Fö2Fö/Dù2Gý7Nû9Sø:Tø:Vù;Wþ=\ÿ?aÿCeÿDkûhú?j÷@l÷@nô>nñ=lñ=8A>9C@;DAHC?HC?GD=HE>ID>ID>JF=JF=MF2@@4N:1o2/¥KK¾TVº?D¼16Á03¿1/·2)§2!¢9#›=!–=˜= ž?#¤;%¢7%ž6) 8-¢6,¥4,­81·@:¸C<²@6±B7­A4¨?Õ@<Ê?8È?7ÓEAåMLðJNõ?Kû8Hÿ6Hþ5Hù2Eù6Gú;M÷:Pö:Rö8Rù8Uû8Xþ;]ÿ=aÿ?gÿ@jÿ@lÿApÿCsûDtùCt÷CsôCoûImõDaùHeüMjúMkÿXtÿazò^tðk~åq~Óow¯]a„CAh6/iA7sUJye\Œ}v£–­£¡²®«¶¶¶²¶¹ª¯³°·½¶½Å½ÁÊÀÃÊÃÂÊÉÆÍÕÎÖÝ×ÛâÚØçÝÛéÝÝæÚÜåØßä×ààÔÞÙÏØÊÅ˺ºº¢§£ˆ’‡t‚qexb\sW[oS\jP\iO^hO561561561560561671872983<;6=<7@=8B?:DAHE>HE>HE2G=1E=2D;2C:1C:3A:2A:4@93?74<73<71>7/>7/<8/=90>:1A:2C<2D=3H@5I?3L@2MA1NA0P@0O@-O?/L>1L>3K=2L;3J91I81F70C82A8/>:/=;/<=/?=0@>/B?0S9,†=7Á][ÈZY®86ª/*±2+«/%«3#ª:&«C*©G,£F' B&¡B&¡=#ž:# 9*£;0¦:0¦7.­<4¶C<·E;°@5«=0¨9Ã=4¹6,»4.Ç84åGHê?Eò:Dù9Hü9Iú7Gú:Iû?NüCUûAVú?Tù;Tû:Uý:Zÿ;^ÿHHLC4J@4KA5MC9LB8F=4B90E<5C:5@93?74@85?75<74<42C:5B94A96>95?:7>:7?;8@<9B?:D@7G@6J@4L@0O@-O@+L?,F@2E>4H;3J84K65M47K79H::C>:7807;->B1>@+:8#C;$eB.½j\·KA¦7,¤6)§7+¤6'£8&¨=+¢9$¥<&©@*«A)¬=)¬9&®6%ª7%¤6'¡7)¢8*¦<.ª@2¬B4¬B2¬A1©>,«=,­<,³=/½C4ÄF8À>1¸2&Ç9+Ë9*Ï9+Õ9-Û7-á6.ç4/í2-ð.,ò/-ò1,ï2,ê5*ã7)Ý:)Ú;(Û:&Ô3Ï4 Î8'Å8'¾6(ÂB5ÏSIÈNCÏSKá\Wî]ZðPRí>Có8?ø?Gë@FáCDÖ@AÉ>9»<3³:/±;/´;0ÊL@ÔKCÞFCâ>?ëIù;GýEQúDQýDRÿDUý@VúHH>HH9H?:F=8B;5D:8A96?74?74@85@85=85;62=4/=4/=52<74=96>:9=<:>=9B?:D?9G@6J@4M@0O@-P?+L?,A@.?@2E<5H96J67J47F37C47A<9<;6==1E?1J:*P6%dA.…J:°PB«;- 2#¡6&£:'ž7$ž9%£>*¡;%§<(®?+³@-¶=,·9*¸6(µ7)ª9)¥:*¤9)¥;+¨>.«A1«B/«@.®?,«:(±<+¿E6ÆH9Á?1¼8+À6)Ë7+Ï7,Ð9.Ñ;-Ô8·;1®:-ª<-«=.¶E5ÆL?ÔNEÜGCã?>ï?Bú?Fþ@JøCJ÷CLúDPÿFTýBSù>Sü>XÿBaÿFhÿCiü?iù@jùBpüFvþJzÿK{ÿHxÿGsôJoòRtó]zö`{÷Xv÷OpúFkøDkîDhÜIfË\o¶jtsGH–ys´”‰Î°¥åÑÈïâÜëçæéèíìæòíâóöãùûáúÿãýÿæýÿìþÿòýþ÷þüúûýùöüùôûöóùôñ÷îïóêíðçìîåêæÝàÜÖØÊÆÅ³²®ž¡šŽ“Œ‰…ˆƒŽ”†‰€†Œ~/.,0/-10.21/43/540762761:94::2<<4>>6@@6BB8CC9DD:IF=IG;JH;LI8MJ7NL7NL7OL9KI:NKBTRS_^fihxmm…lkŠkhƒ`YiYQ\OGRH@KH>GG=EE93>:1=9083-94.;60<92=:3>;4?<5@<3E>4G?4I?3L@0O?0P?/P?-L?,<;':=*>.»<-¾:-¾-­>-­<,²?-°8(¹>.ËL=ËG:¼6*º2&É9.Ð6,Ô6+Ô8,Ö:.Ø:/Ü8.ã6/è3,ð0-ô.+ô.+ð1)ç2'Ý6&Ô8"Ò7!Ý8$Ü5#Ú9'Ú>/Ó=.È6)Å9,ËA7É<5Í>8ÙEAåKIêJJéCCì?AëCCÞCAÕD?ÍB=Â=4¶:.®8*«:*¬;+¬8)ÀD8ÔNEÝIEà@@è>A÷BIÿHPôAGô@IùCOýGTþEUú@Uû?XþA_ÿDfÿCiÿCkÿFpÿIwÿK{ÿL|ÿJzÿBtÿDtþHqúNtü[|ÿb€úWvìEcøMmþVwÚ@\ËG^Úy„»y{g@;—{p²Œ×±¦õØÐýêäúðïúõùùóýôìûûéÿÿéÿÿêÿÿíÿÿòÿÿöÿÿûÿÿþüÿýúÿüøÿù÷ÿ÷õþôõüòóúïóøïòðçêåßáÓÏξ½¹­®¨¢¥ž£™£—£«ž¥–™¡”/.,/.,0/-10,21-32.54/650880991;;3==5??5AA7BB8CC9HEQPL^]bmlzzz’‚¡€‚¨€€¦{u—rkŠe_{YSmTLdMEZG@PB;2?=1@<1?;/A;-F?/H?.K?/M@/O?0O?/P>0L?/B=*?>,@=.A:0A:2@93>95<94=84F85P41X,+k)+‡06¡7A®=A§6.¥7(¥:(ª?-¨?, 9&¡8#¤;&¥:&«<)³>,¹@/½>/Á=0Å=1Ä>2½?3¶=2²9.®8*¯9+°:,²:,³9*¶;,¹;-ÄB4ËE9È>3¾1'À2(Í9/Ö5+Ø4*Ú6-Û7-Þ7.á6,æ3,ì1*ó0,ô.+ô/)ï0(ä2&Û4$Ò6 Ð5×2Ú0Ú4$Ü<.Ö=/Ð9.Í=2ÒD:Ä5-Å60Ê;5ØD@âMIåKIÞC?Ö=8Ó@9ÎA8Ç>4¾UÜbqûœ¤Óh93qK@¦wmÒ£›÷ÒÊÿçâÿòñÿûþÿúÿùñþúíÿüíÿÿíÿÿðÿÿòýÿöþþúûÿûúÿüùÿû÷ÿù÷ÿøöÿõöþôõþó÷ýòööëïìãäÚÕÒÉÆÁº¹´³´¬±´©°¶ª·¿´¯·¬©±¦10,10,0/+0/+10,21,43.54/77/880991;;3==3??5AA7DA8IE:LF:NH:PJ:RK9RM:SL:QK=OJDVTUfdqwx††¨¹“ÃÆŽ‹À‡ƒ¶{w©pmšid_[~UPnNJaKGXEBM?=B;7895296/85,85,671783891;;1>3M?4L>5I:3C82?82<948;47<59<3@91H3.Z1/w78•>D§=G©8<ª;0ª<+«@.¬A/©@-¥<)¦;'«>*§8$­:'µ<+¼=.Á<-Å;.Ê<0Ê=3Å?6¾>3º:/·7,·7,¸8+º8+º8+»7+ÇA5ÍC8Å8.Á1&Æ3)Ë7-Ï5+Û4+ß3)á4-â6,ã5,ç5+ì1*ð/*õ/,ö/*ò/)ì0'â2#Ù4!Ð5Ï4Ö1Ù/Ø2"Ø6)×9-Ô:0Ö?6ØE=ÖF>Í@7É<5Ë@9ÖKDÙNGÒE>Å;1Å=1Â<0ÀCòBLûIUÿJYýFXúCYûC]û@_ûBdÿElÿJsÿNzÿO|ÿLyÿHvÿDrÿN|ÿPzûHoõJlýVtþWsóQiçG_àH]âXhÿ“žÿ²¸ï››ŒHEl/*¦jbΕŽóÆÀÿáÜÿðïÿûýÿýÿûöýüöÿýõÿÿõÿÿöÿÿøÿÿúþÿüûÿüùÿû÷ÿú÷ÿø÷ÿ÷öÿõ÷ÿôöÿó÷ÿó÷ýñóóéêäÜÚÖÑÍÍÊÃÉÉ¿ÊÊÀÊÍÂÉÐȾȿ¶À·65143.32.10+10+21,32-43.66.77/880::2<<2>>4@@6B@4JD8ME8OH8RK;TK:TM;SL*F@*G?*H@+IA,IB0IA4HB6HA9H?:L=:L::G77@65:65574181/907<574+C0)]82~BA•GG?@ž44§;/ª<+ª?-ª?-©>,©>*¬?+°?-«8%²9(¹:+¿9-Ã9,È:.Í:0Ï<4Ë>5Æ;4Â91Á8.Á8.Â9/Â8.Ã6,Å7-ÑC9Ð@7Ã0&Ã,#Ð7/Ö<4Ó2*à3,ä2(ç2+è3*ê3+í2+ð/*ó-*ö/*õ.)ñ0)ì1(á4$Ú5"Ñ6 Ð5Ø7#Ù3#Ö3$Õ3&Õ5)Ô8,Ô<1Ö?6ìYQáRJÓHAÌC;ÊE<ÌI?ÈE;À>1¼:*¼;(¼:*¹:)·:(¸:+¼>0¿A3ÁA6Á<3Å<6ÏA=×EEÝGHäIMëLPèBFê@CðCIùKTþNYüJZüF\üF_øA_ùBaýEiÿJpÿNwÿOzÿNxÿLvþMwÿOvüMtúOsÿWyÿ_{üUoéG^óVkçScðdqÿšþ‰‘삆Â_b¥ML³heΉð»·ÿÛ×ÿîíÿ÷÷ÿúýûùþýúÿüûÿýúÿÿúÿÿúþÿûüýüúÿûøÿû÷ÿûøÿúùÿúùÿ÷ùÿõ÷þòöüðòùíïòææçÝÛߨÒÛ×ÎÝÛÏàÞÒßáÖÝäÜÏØÓÅÎÉ<94;8185052+41*41*52+63,74-85.96/;81=:1?<3A>5C?4JB7MC7PG8SJ;WK;UL=UK?SJCSJK]Wcnl‚‚‚¦‘•Åš ÚŸ¦ê¢©ñ¡¥ïž ë™›å•˜Ý”•֑ʉ‰½‚ƒ±zy¡rq‘fc~XVkPN\IGRFCLCBJ??K==G;:@;9:<94?;/C=-E@,F@*FA+EB/EC4CC7BC;AC>AAAE;CG=FG@HGDKFGLCHK?HG>GBCHAA=4K:0fF;€PFŠJ@Œ?5’8-¤>/©>,«>*¬?+­@,¯@-°?-±<*±8'¶8)½9*Ã9,È8-Ì8.Ò91Ô;5Ï:4Í:3Ë81Ë81Ì92Í:2Ì70Ë6/Ó<5Õ>5Ò91Ì2(Î4*Ø;2Ú<3×3*ä1*é1'ì1*î2)ð1)ò/)ô-(ö,(÷-)ô/)ð1)é3(â5'Ù6%Ò7!Ï7 Ô9%Õ8%Ó6%Ñ4%Ò4(Ó7+Ò8.Ð7/ãNGèXPçZSÚQIÌG>ÄD9¿@7¹>/¹<*¹<&¹<(¹:'¸9(º;*À>0ÃA4ÉD;Æ@7É@:ÑFCÕIHÖHGØGJßIKæFHèBDíDIõLSüQZûO]ûL]ûK`öD^÷DaùFfýIlÿNuÿOxÿOxÿPwöUwòTuôTvúYxÿ]{ÿ\w÷SkìJ_öYjïWfãO]ï^kÚNYßV`ÞV`ÒY`¿cdÇ€|橦ÿÐÏÿéçÿñðÿö÷þüýûüÿùýÿøüÿúûýúúüùùùúù÷üøõÿúöÿú÷ÿûúÿúùÿ÷÷þòòüíðùêíðáäéÝÝäÙÕâÙÒæßÕëçÛñíáññåìóìÜçãÐÛ×@=6=:3:7074-52+52+52+63,74-74-96/;81=:1?<3@=4B>3JB7MC7RF8VJ:WK;XL?:6@<1A>/C@/CB0BC3BD7?D=>D@)¸>'¹<&¹;%º9&½9*À2ÊD9ÊA9ÎE?ÕKHÓLIÎGDÍEEÖHGãIIæCDèEHòMSøSZùR\÷O^úOaôH^õG`øGdûIiÿNrÿQxÿRyÿTzïTtïZwù`~ý`}ùVqòNgõQiýZmû]lÿftëP^óXfîSaöZhíO^ßS^¾\]¼roؘ–ùÆÃÿâáÿëéþòòÿÿýüÿÿûÿÿøÿÿùÿýùýüúüùüû÷ýùöýøôÿøõÿùøÿùøÿõõûïï÷èëóååëÝÝèÚÙäÙÓèÞÕðèÝùóåÿúìþþòôúöãíìÖàßB>5A=4@<3>:1<8/:6-84+73*62)62)73*84+;60>93A<6E>6I@7MC7RF8UI9WJ:XK;ZLA[NHTIMXR`gd|~§’Ê— ãžªö¥°ÿª³ÿ«²ÿ¬´ÿ¬²üª±ùª¯ó¨¬ì©«èŸ¡Ú™šÒÁ±tr¡he’]Z‡XR~XQzYQvVOnMH_C?M?:@?;:B?8>>4@B5BE:?D=:CB>FHAKTFUjUe~eq‰lrˆwu‹ƒw‹„o~€_j‰[eX[WW¤WQ¢NDšA3—:(ž;(§<*¬=*®?,±@.³@-´?-¶=,¹;,º6'¾6(Ä6*Ë7-Ñ7-Ö8/Ú91Ú83×84Ø95Ù:6Ø93Ø61Ø61Ú83Ý:3æC<à=6Ú70ã@7þ[Rÿlcÿ]Tç?6å3)í2)ñ2*ô/)ô*&õ(%ø(&ø+(÷-+ó0,í2+ã1'Ú0#Ô1"Ô4$Ó:(Ì;&Ê<(Í<)Ï<*Ò:,Ò9+Ò8,Ñ7-Ú@8Ï81ÜGAôc^åXQËB<Å@;·4*·:&¶<$¹<&º<&½:(¿:+Ä<0Æ>2Ç>4ÌC;ÙPJßXRÔOJÃ?:À?:ÏHDÞHGâGEæJKïPTñRWïNVíKXñL\ùRføOf÷Ke÷JfüMlÿQsÿRvýRvõXwïYvóYuû\xÿ]xÿ[sþXnüVjÿeu÷Ygý_mü^lêIXëIXûTeéXeÆfg­geËŽ‹èµ²ùÑÏÿêçþîîüø÷öúù÷ÿý÷ÿþöÿüøþüýÿüýüøû÷ôÿúöÿúöÿ÷ôýóñÿôôÿóóöèèçÙÙäÖÕßÑÎáÖÐñçÞüôçý÷çÿûèÿÿóùþøçðïÚãâC?6B>3A=4?;2=90;7.:6-95,73*73*73*84+:5/=82@;5D=5H?6LB6QE7TH8VI8WJ9YK>ZMEUJNWQ_eby{¤ŠÉ”⛦õ£®þ«´ÿ¬µÿ®¶ÿ¯·ÿ°·ÿ¯¶ü¯´ø¯²õ©ªë¢£ã˜˜ØŒŠÉ€»uq®ie c^˜`WŽ`Vˆ]TVPtMIbFCTBAIAAC<<:AB=FEACD?A?@DBEOMRXVcfgƒtt–‚}Š}›•|š |–¥qˆ¤`u¬Yk´Wb¹QXµIG­@9¨9ß<7ß<7á>9åB=èC=çB<æA;å@:æB9ä@7Ü8/Õ1(Ø6+ëI>ÿ[Oñ@6î6,ê+#î)#ø-)ÿ/-þ,+ö((ú0.õ4/ï61ç6.Þ3)Ö2&Ô2%Ï6&Ë:'È;'Ê<(Í:(Ï9*Ð7)Ñ5)Ð4(Ó9/Ï5-Ô=6åPJåTQÛLHÍB?·1(¼;(»=&½<'¾;'¾9(À8(Â:,Ä:/È>4ËB8ÕOFÜWPÒRIÃD=¿C;ÌHCÛLHßJFåMLëSRíTWëPVéNVìOZ÷VføUhùSiúRküRmÿSqÿStþSuñLlõTsÿ\yÿ`{ÿ[uýUnúRiùTeùWfòTbù]hù]hìR^ñWc÷]iÙV^¶`_™\W¹}Ú©¥ïÇÅþàÞûééýøõøú÷÷ÿý÷ÿþõÿüøþüýÿüþýûüøõýúõþùõü÷óüôñÿõôÿôôõééêÜÛå×ÔÞÑËßÕÌïåÛüõåÿùçÿüèÿÿïøýöèñîÝãáEA6EA5C?4A=2?;0=9.<8-;7,84+84+73*84+:5/=82?:4C<4G>5JB7ND8RF6TG6WG7YIBZEJpW]‚cs˜s•¥z¥¯§²{¢¸všÀp“ÂcƒÀTnÁG^ÏL\ÏIRÃ=>·60´:+²=)­='¯<)°;)²:)´;*·<,»<-À<-Ä<.Ä6*Ë8.Ó<1Ù?5ßA8á>7à<3ß:4Ü71Ù4.Ø3-Þ93æA;ìE?éB<ä=5ã<4Û4,Ø4+Û7-Ô2'Ì, Ö6*éG:õK>ò@6ï4-ð-)ö,*ú,,ü,,ø*,ð*)ì/+è2.ã5.Ü4+Ø1(Õ1'Ñ3'Í7(Ë:)Í:(Ð:)Ò;*Ó:*Ô8+Ô8,Ñ4+Ö<4Õ:5Õ<7åONíYWÙEEÂ3/À;,¿<(À;*¿:)Á9)À8(À8*À8,Æ=3ÇA6ÏJAØUKÒRGÆG>ÀD:ÇG>ÖKDØICÝLIäSPåSTâPSâMSåNWòXdöZhý[pþZrüVnúRlûQlÿQpøFjÿOtÿY{ÿZyÿVqüTkþWkÿ\múYh÷[høbmòbkç`gêinåjmÅ^_ ]W~MF›lfה߹¶ñÓÑôàßÿõôùù÷ùÿý÷ÿÿõÿüøþüýÿþÿüýüø÷üùôüùòú÷òûöòÿ÷ôÿöôùîìïäâæÛ×ÜÑËÝÓÉîäØýöäÿûèÿýçÿÿìøûòéïëàåáIE9HD8FB6D@4B>3@<1?;0>:/:6-95,95,95,:5/<71>93@;5E>6I@7LD7OF5RE4UE5WG8WI>XMKXNW^Zqpp–€†ºŒ–Ô•¡é©õ¨°ù©±ù­³ý°·ÿ±·ÿ²¹ÿ´¸ÿ´¸ÿ¯±ü«­ø¥§òŸžê—–⌋ׂÍ}yÅum¶pgªf`ž_ZYX„QQuGGcA>Q=5DH8BT=C`@EnCJ€OU–]dªgx½lÉn™Ëo˜ÉiÆaƒÇXxÆIgÄ;UÅ3HØAPßEOÐ<<Ã81Â@2ºA,¯;$­6"­5$®5$³5&¶7(¼8+Ã;-È/Û?0Ü@3Ü@3Ò6*æLBåJEÎ50ßGFóZ\ßIKÕA?È2ÈF9ÏOBÎPDÆH<¿C7ÁC7ÎH?ÑF?ÕJEÛPKÝROÙMLÚKMÜKPëX`ó[güaqÿauúXmõOgõMgýNkÿLpÿOtÿSsÿRnúTlüZoÿcuÿixÿfuúboôbmìelàglÔjjÈjh±ha^ThF<‚]U¬‡Î«©åÇÅïÚÙÿóóû÷öùýüøÿÿõÿþøþþÿÿÿÿûÿþøøûúõúúòùøóýúõÿû÷ÿú÷ýóñ÷ìèëàÚßÕÌÞÔÊíæÖþ÷äÿþèÿþåÿþé÷ùîêïèäçàNH:MG9LF8JD6HB6F@4D=3C<2?80>7/=6.=6.=60>71@93?:4C>8EA8KC8NE6QD3RE2VF6VH;ZMGVMR[Whlk‹~‚±Š“Î’Ÿãš¦î¦®÷©¯ù­°ý¯³ý°³ÿ°´þ°³ÿ¯³ý«®û¨«ø¤§ô ¢ïšœé“•⊌ن…уÉ{u»mk¬dež_a’Y[„RQsNHbWFY_CQmBLEM˜MT¬U]¼[bÊZhÖTpßSvÞTu×PnÐJcËCYÆ9JÂ/?Ó9EáDMäHK×?<Í>6ËG:ÂI4¶?)·>+¸=-º<-½>/Ã?0ÊB4ÐD7ÕE:ÙE9ÚB7Û>5Ù;2Ù6-Ù5,Ú3+×3*Ô1*×4-Ú7.Ý90ß80Þ7/Ý6.Ü5,Ö/&Ù5+×7+Ï2#Í1"Ò9)Õ>-Ô;)Ø<-æD7øJAýD?ù64õ*-ö*-÷/2÷67í55â30Ú1,×0*×/,Ù0-Ù0+ã81ä91â:1â;2à<0ß=0Ü?0Ú>1Ñ7+ïWLøaZÓ;6Ñ;:æPQÜFHæPQÏ<4Ê:/Æ8,Å9,Ä:-Ä<.Ã;-À;,¾:-¾<.ÃA3ÇH9ÇI;ÂD6¾@2¼>0ÉF<ÊE<ÎIBÕPI×RMÕNKÓKK×LOéZ`ð^hüfrÿhxü]qòPeóMeüOkÿSuÿRtþQoôRjó\oúgwýiwùesýetõ^mï^kìjrÝsuÀkf¨e\œnaeVYG9nVJ–{r¾ŸœßÁÁîÖÖþîïþõöüüüùÿÿöÿþùýþÿÿÿÿûÿþøúýþøúýôúûõþýøÿÿúÿýùÿúôÿöñòéâåÝÒáÙÌðé×ÿúäÿÿæÿþåÿþéöøêíðçèéáQK=PJ3Õ;1Ö8/Õ4,Ö3*Ø4+Û4,Ú6-Û81Ý<4à=4ß<3Ý90Ü5-Ü5,Û7-Ò.$Ý;0Ú=.Í1"Æ-Î7&Ò=)Í:&Ì9'Ô8)â:/ó=9ÿ@@ÿ<>þ37ó,/ê,.á+*Ø*)Ô+(×/,Þ44ä88é99ï75ð74î73è71ã7-Ü6*×5(Ñ5&Í5(çPEÿmcÛHAÈ42×CCÓ>BêVVÙA<Ò>4Ë8.Æ6+Æ:-Æ/Á=.»9+»<-¾?0ÀA2¿A2½@.¼=.»<-ÃC6ÄD9ÈH?ÐPGÓRLÐOIÒNLÕONé^cîagûitÿnzÿduõVjõQiþVoÿVsÿVqõWnî]nñmx÷uðjsãWbó_mõ^mñ`oñr}΀|©uh—zjujXRM:aUG„pg±•’Ý¿¿ïÕØýéëþôõüúûúþÿøþþüýÿÿþÿÿúÿÿùýÿÿûøþôúýöÿÿúÿÿúÿÿøÿüöÿýõúñèîæÛêâÕõðÝÿûåÿþåÿþâÿÿçùúêòôçîðåSM=RL4D=3B;3A:2@93A:4A96@;7A@;CC;IE9MG7OG2RF0UF1UH5WK?RHFXR^jg‚}§‰“Ä’žÚ˜¢ç¤§ö¦§ú«©ü«¬þ¬­ÿ­®þ¬®û¬®û¨¬ö¦ªô¤¨ñ£§ð¡¨î §í¤è›¢æ™žâ’šÛ‹“҆ʃ„ˆ·ƒ¨ˆyšmˆšcz©Xi»Q_ÏMYàIRèAIè>Aä>>ÞA<ØE=ÒJ<ÊK<ÂG5¿D2ÃA1âVIßH?Ù<7Ø63Ú85Ø;6Ò94È80À:.¾<.¿;.À:.Â8+Ã7*Æ4'Æ2&Î4*Ð3*Ñ3(Ô3)Ö3*Ù5,Ý6.Ü8/Þ=3Û=2Ü;1Û8/Û7-Ú6,Ø4*×3)Õ3&Ó3%Ð4%Ï6&Ò=)Ñ>*Ê9$À2È:&Ê4%Õ1'ç51ú<<ÿ=@ÿ7=÷37ê-1á-.Ù--×/.Ü43ã9:é;=ð9=ö26ø03ô01í1/ä1*Þ2(Õ1%Ï3$É1$Ñ=1új_äTLÈ95Ð@?Ë:=äRSäJHÜC=Ñ:3É6.Æ8.Å;0Â<0¿=/º;*¼?-½@.¼?-º;*º;(½;+¾<,¼>0¼>2ÀD8ÈLBÌPHÊNFÌLIÐNLèaeìaføhrÿo{ÿhx÷Zk÷Ujý[rù[rô_sébqãktê}€ò…ˆêvyÞ\döetÿk|÷buîjwù•ï¡ŸÄ”Š£Œ|jiUIQSK>PJç@:ßC7ØF7ÑJ7ÇJ4¿G/½C,Á@-áSEÝD<Ý97æ>=ìDCæ@@Û89Ï53ÍC9ÈD8ÉC8ÇA5Æ>2Ã9,Â6)Â2'Æ2(Ë3(Î4*Ó5,Ø5.Ù4.Û4.Û4,äB7Þ<1Ú6,Ú6,ß9-ß9-Û5)Õ1%Ø8(Î1 Ê1!Ð9(Î8'Ç4"Ê7%ÔC0È7&Î8*×6,Þ5.æ3/î53ö:9û?>ÿLKúHFòBBì>=ê<=ç7:å26æ,1ô+1ø)/ô,.ï/.è1+à4*Ù5)Ó7(Æ0!À.ôdYë]SÏ@:ÔDCË;;ßMMêRQàHEÓ;6É6/Æ8.Æ9/Ã;-¾:+¾<,Á@-ÀA.»<)·8%¸9&½<)¾?.µ7)³7+¸>1ÁG:ÅK@ÅIAÈIBËJEåa_æ^`ñdjþnwþkuó]iðXeö^møatñdtåhpßnréù‹÷ƒ„ïnsýpyÿx†õaqßXföˆ‘ÿ´´Ó­¢¤™‡`hPEQ9RT?kaUœˆÜÀ¿ô×Ùöàãÿñôÿøûýýÿûüÿüýÿÿýÿÿüÿþùýúÿùòþðòüñùÿôýÿ÷úüñþûòÿÿôÿÿóüöèøòâþùåÿýçýûâýüàÿÿéÿÿñüüðûûïXO@WP@WN?UN>TK2G?2H>2F@4GC:GE9JG8NI6RJ5UJ4UJ4VK9XNDULMZTbkhƒ{~§‰Ã‘™×˜Ÿç¦¢ö§¡ù¥ ü¤¡ü¢£ÿ£§ÿ¤ªÿ¤­ü¡ªõ¡©ñ¡¨ì¤©í§ªï¬ªó®ªö«ªö¡¨öœ¦î• Þ˜ŸÓ¦¤Ë´ ¼´‡›³ixºN]ÍFTÛAMã=Iä=Gã>Eß@Eß@Dâ=AÝ==ÛFBÈ;4ÊD;ÊE<º1)ÛJEæKIéCEë>Bè;?æÛ;;Ô<9ÏB;È?7ÊD;ÑMAÍK>¿=0¸6)½9,¿7+Ã6,È5-Ë2*Ñ/*Ô/+Û2/à5.çA5à8+Û1$Þ2&æ9+ç;-á7&×2Ñ2Î3Ë4!É3"É3"Ë3%Î5'Ï5)Ê0&Ï2)Ñ5)Ò6*Ò4(Õ3&×3'Ü4)à2)æ3.ë52ë33é/2ç-2è-4í.5ö-3ö+/ï+,ì/-ê5.ã9,Ù7(Ð4%Ã-Ä3"çXHéYNË;3ßNIÅ41ÚHHáOPÜJJÔC@Ì;6È80Æ8,Ç9+È<+Å<*Â;(¾9&¼;(»<)º=)º=+·<,´8,µ;0¹=1»?3»?3¾@4À@5ÄA7ïjaõpiêc_ômjûqqìadôgmÿpyÿkzûhxêgoâeiågjímnónoõmoÿw{ÿ~…ñ_lñiwÖgpø®¯½§š…uapQJY:MQ8snZ¥•ˆÍ¶°íÕÓÿîðÿôõÿõùü÷ûûûýýþÿþÿÿÿþÿûÿþïÿóåüèçùéðþíøÿõüÿôýÿòÿýðÿýñÿûîÿúêÿúæþùãüúáüúáûúåýýñÿÿúÿÿúYPAXO@XO@VM>UL=TKCÛ@DÚAFàÌLAÁC5¸:,·9+¹7*¿7+Æ6-Ë4-Ñ2.Ø3/á53ä84å=2â:-á5)á4&ä4'â5'Ý3"Õ2Ó8$Í8"É8%È:&Ì:+Î:,Ï7,Ð3*Õ3.Ö5-Ó7+Ï7)É6&Ç4"Ë4!Ï4"Ø2$Þ2&ã0+æ.,æ,-æ,/æ-2è.3ì+.í,-ì0.è2.à4*Û5'Õ8'Ò9'Õ?.»*ÖD5Ð>1ÙF>ëVPÚB?ØBAçUVâRRÜKHÔC>Í=5É9.È9+Ç8(È;*Ä;(¿:'½<)½>+º?-¹@/¶>.²:,´;0·=0¸>1º?0½?1ÁB3ÅC5ëi\òmdçb[ðkfõolèbañklþsxÿo~ÿn|òkräafä\`ïcfýnpÿwxýuwÿy~ëYdícp×cnò¨©²¢“v†k^rON_;SZ;us\©ÖĸöáÜÿõñÿøøÿøùýùúûûûúþýûÿþúþÿöÿúíÿòãÿèãûåëþêôÿðùÿñüÿñÿÿðÿýïÿýíÿûéþ÷åùôàøóÝúõßú÷äùùïûüöþýù\PB[OA[OAYM?XL>WK=VJ?á>Aá>Cß>Dß>FàBè;?ã9<Ü68Ö66Ñ96Ì;6ÕHAÄ;1¾5+ÅA5ÍK>ÆH:»=/·8)º6)¿7)Ç7,Ï6.×50Þ71æ95é=9Ù2*Ú3*Ý5*ß4*ß4*Þ6)Ü9*Ù>,Æ3!À3»4!º5"¿7)¿7)¿2(Á,%ã@;å>8Þ=3Õ<.Ì9)È7$È7"Ì7#Ò7%Õ3$×/&Ù.'Û.*Ü.-Û//Ü./Û,)ß0+à5-Ü5,Õ3&Ð4%Ð9&Ñ>*ÔA/Â1 çSEÒ;0ÚA;ÞC?èJIðTUíUTçSQãOMÝJCÖC;Ï<2Ê8+Å6&Ä7&À7%¼7&¹:'¹<*·>-µ=,²=,°:,±;/´<.µ=/·=.¹?0¾C4ÃE7Ü\Qêg]äaYðlgöpmça`ìfgõjqäP^ð^kðjqëhmëcgòfiþoqÿuwýruüouçQ]èZhÙamíž¡ª˜Šlz`YmHOd=W`Aww]­¥’áÑÂÿîæÿøñÿû÷ÿüøüýøúÿûûÿýûÿýùÿûôÿöéÿíÞüâÜöÝá÷àéûåïûçõüêüÿìýúéÿúêÿøæùòàñêØïèÕóìÙ÷òßûøïüüôÿþù\PB\PB[OAZN@YM?YM?XL>XL>UI;TH:SG9RF8RF8RF8RF8PF:LE;KGKÙDJÚDCÚEAÜDAÞBCá@Eå>Få>Fã?FÖ:>Ñ?@ÑEDÆA<º61Å>:êZYÝABã@Cæ=@ã:=Û89Ó97Ð<8ÎA8ÏE;Â:.»2(À/¸9(½8)Â9)Ë8.Ò:/Ù80à91è;7ë>8Ù0+Ú1*Þ3,à3,á4-á6.Ü8.Ù;/Ê6(Ç:)Ã;+À;,À:.Ã:0Æ;6Ð85ìC@í@<ä@7Ù=1Ï9*Ç9%È:&É;%Ï<(Ð7'Ï1%Ñ1%Ô1(Ö3,Ô1,Ñ/*Ó2*Ó5,Ó7+Ð7)Í5'Ê7%Ì;(Ì>*Ì;(Ï<,ô^PàF<Ò3/Ò.,æ@@ûWXÿusÿroÿjgö^YçPGÕA7Ç5(½. Ä8'À8(»8&¸;)·<,µ=-²=,°<-¯;.­<.°.¼B3ÀF7ËMAß`Wâa[ôpløtræ`aä]aè]dÚFTêXeïirìkoðhlùmpÿqvÿsvþosøgnåJXåRbÚ]kæ”–¨‘ƒjtYUjCSh?\gEy|_°ª”çÜÊÿõèÿùðÿùïüüòûþõúÿùùÿúöÿøòüóêûëÛ÷ÞÐñÒÍêÌÑëÎÙíÒßïÕéóÛò÷áôöáùöãûöãôíÛêãÑçÞÍëâÑðéÙûôêûöðþùó\PB\PB[OA[OAZN@YM?YM?YM?WK=VJHí=HæBI×>@Ð@?ÐIE¿>8³2,ÈC<àUPÜDCáACã?@á>?Ú?=Ô@<ÑD;ÏF<Ç=2À8*½5)½9*¿=-¿=-½;+½<)Â:*Ç;*Ï;/Õ;/Û8/à8/ç83ë95ç85æ42å10è21é32ç40Þ1+Ö/'Í0'Í6-É90Å6.Â3-Ä30Î9;Þ>@ë8;í76ä71Ø5,Ì4&Æ5"Ä7#Å:%Ë=)Ë8&Ì4&Î5'Ô8,Ô:0Ó9/Ð8-Ð>1Ê;-Å8'Ä7%Æ9'Ç<)Ç<)Ç:(Í>-Í:*Ø>2áC:Ô/-ä::à24ß56×53Ö;6ÞC>åKCêQIêSHèTHäUGË?0Ä?.¾<,¸=-·>-´?.°?/®>0¬<.¬<.¬<.¬=,­<,±=.·A3ºD6ÆLAÞbXâc]ðnlôrrå`cå`eè_gûivþmzñnvådhêbfümqÿu{ÿv|þksõ_jèGWäK]ÝZhâ‰¬Žƒsy]]rI^uIhwPˆf³²–èâÌÿúéÿýíþüíûÿðùÿò÷ÿóôÿñíûêãñàÚí×Éèȿ㽻ݺÀÞ¼ÈàÀÏâÄÙæÌãëÓëïØóòÞ÷òßòëÙêáÒçÛÍéÝÏîâÖñçÞðçàòéâ[OA[OA[OAZN@ZN@YM?YM?YM?XL>XL>WK=VJQI>QI>SK>UL;XM9XM7YL9XM;WK?ULGYSWe^nnjƒut–~}¥ƒ†±…Š´„‹¹‡Á‰ŽÈ‹ÏŒÔÕӔӋʃˆÀ~¸x{²rt­ln«ohœƒiŒ”b{¯XxËOqãAfï8Wó5Nô:HëBEáHBÙLB×MBÞIEåEGð?Ið>JäCH×CCÌA>ÎIDº;4°4,ÉI@ÕLFØBAÚ?=Û;;Ú<;Ø@=ÔE?ÍG<ËG:À8*Á8(À8*¾9(¼9'»8&½:(À;(Ä;)Ê=,Ò<.×;.Ü8.á6.ä6/è50ê22ê./ê+0ð/2ö37÷67ð45æ21Û.*Ø3/×52Ò22Ñ.1Ó.4Ü5=ë:Dí06î02æ3/Ü3,Ñ5)Ê7'È9(É<(Æ8$É6$Î6(Ó:,Ú>2ÝA5ÝA5ØA6ÓG8ÉA1Â;(À9&Ã<)Æ=*Å<*Å8&Ì:+Í7)Í0'æC<Û2/ï?Aã/2Ú*,Õ1/Ò5.Õ81Ö90Ò8.Ì5*Æ2&À1#ÎE5ÆA2¼=.µ:*±9)¯9+«:,ª:,«;/«=0¬>/¬<.«<+­<,²>/µA2ÉSGàg^àc_êjiînoæchðjqönxÿn{ÿr~ñpuçfkðgnÿtzÿu~ÿnuýgpôZfíHYåH[ÞWfÜ€ƒ´’†…ˆkq†]o‰ZyŠ`—r¶·˜ßÞÂùôÞüúåÿÿïúÿîôÿîîÿêæùãÜïÙÐãÍÅÞÁ²Õ­¬Ó§¬Ñ¨²Ò«¹Õ¯¾Ö²ÉÚºÒßÁàæÌèêÔðíÚñêØìãÔéÝÑèÚÏêÜÓèÛÓæÙÓåØÒ[N>[N>[N>[N>ZM=ZM=ZM=ZM=YLUL=XLÞJ@ÛKBàHEçDGð?Iï?JÝADÔFDÈA=ÉHB´:/±7,ÎOFÉB<Î=8Ð64Ï10Ð51Ó>8ÏE;ÈF9ÃD5¾9(Ã:(Â:*¿:'½8%¾9&¿:'Á:&Ä9&Ë:)Ó:,Ù9+Ý7+á5+ä3+ê3-ë*+ñ*-ø-3ý.4ÿ17ÿ27ÿ38ý58ú7;ö7<ó9>ó8Aö8D÷7Fü5Hþ5Eö*5ô-2í12ã4/Ù6-Ð8*Î;+Î=,Ë5&Ñ8*Ù;/ß=2â>4ä=4å>5ßA6ÙJ<ÏG7ÉA1Ä<,Â9)Â9'Æ8*È9)É2'Ó9/á@8ëD>Þ0/à..ë46è66Ø3-Õ7.×90×:1Õ;1Ò;0Í:0É;/ÖL?ÌF:¿@1´9*°6)¬6(«7*©8*¬;-­=/®>0­=/«<+«<+­<.±=0ÀKAÚdZÞc^èkiðosêinõrzýuñepøoyõtyíosøovÿxÿt}ÿeoübnòTbñH[çDYÞQaÙv{½•‰˜™z–k{—f‚•h‘u¬²ŽËÌ­ààÄéìÑìôÜãñ××ëÏÍäÇÄÝ¿»Ô¶´Ë®¬Ç¤œÁ•˜ÂœÃ”£ÉšªËž¯Ë¢¸Î¨ÂÓ±ÎÙ»ØÞÄäãÎëåÕìâÖéÛÒåÔÍâÑÊßÍÉÚËÆÕÆÁ[N>ZM=ZM=ZM=ZM=ZM=YLVJ>XL>YN=ëB;äE?áFAãEBæCFí?Hê@IÖ@AÑGDÅA<ÃG?²9.³:/ÑUKÃ>5É83Ç/,Å*&È/*Í:3ÌC9ÃC6¼>/À;*Ä;)Ã<)Á:'Â;(Ã<)Â;'Ã8%Ä5$Ê7%Ô8)Ù7*Ý5*á3*å3)ê2*õ33þ68ÿ8<ÿ4:ÿ-2ÿ(-ÿ(-þ+1þ-3ö)0ò&1÷)6ÿ,?ÿ*Aü 9ô/ö"0ó(.í,1æ0/Ú1,Ô3+Ñ5)Ð6*Ô6+Ý90æ=6ë>7ë:4è71è50â92ßH=×K<ÓE7Ë=/Ä6(Â3%È6)Ï8-Î4*Ô6-æC<ß82à21Ò ì89å63Õ1(Ò4)Ò4)Ï5)Î6+Ê6*È5+Å7+ãYNØRFÊH;¾@2·;/µ;.µ<1µ<1¯9-±;/±=0±=.¯;,­9*­9,®:-±<2ÐYQÜb]ìppôvyîmrõq|ør}ÿyƒÿ‰ú|€ëmqñhpÿr|ÿsÿitú\jóPaõG^è@WÜN^×ptĘ‹¤£„†œn~šg—hœq¡©‚´º–ÈÍ­ÕܽÊ×¹¿Ò²°Ê§¦Áž»—š¶–²Œ‘°†Œ´‚еº…˜ÀŒžÃ¢Ä’ªÅš³É¢¾ÎªÉÒµØÚÄãàÍèÞÒæØÏßÍÉÚÇÃÓÁ½Î¼¸È¶´ZM=ZM=ZM=ZM=ZM=ZM=ZM=ZM=XK;XK;XK;YLYM=WMCWLHXNOZPX]Ub`Yi`]rggjmŽpr›rt§xw³~Á‰ƒÉŠƒÇ‰~ÀŒ~¼Šx²‡p¨‹p§‘r«‹j£‰Z„GR¡B<³A@ÊDCÜ@Cç:>ó<>þDEö><ñ>:ì>=éA@éCCéDHéBIâCHÏ?>Å@9¾?6·>3°,º7%Á:'Ã<)Â;(À9%Â9&Å:'Ç:(Ë:'Ð9(Ö6(Ø2$Ú."à/%ì7.õ=5ö93÷61ø1.ù++ú()ü&(ü&(ü&(û&*÷!)ø".ÿ'7ÿ)>ÿ!;ÿ6ÿ1þ%6î"+å"*ã+-Ý--Ó*'Ñ,(Ú2/â62è64î66ò65ò12ï./î,,å/,Ü92Ñ:1Ò91ìSK»"Ä+#ßF>È.&Í.(Þ<7èE@â:7Ø/*Ú.*â51å<7ß>4Õ<.Ï5)Ë3&Ì5*Í;.Ë;0Å8.ìbXàZOÈC:¹6,º:/¸8-±3'´6*°0%°2&®2&¯4%°6'²:*´<.³=1°:0ºC;Ö\Wìppñsvöx|ûyƒõq|ÿz„ýw€òu{ôvzýt|ÿr|ÿkxÿdsÿ^nñJ\õE\ïF[ÙFVÐgk¾€ž›z†œm}™f~”c‡—j”Ÿwž¦ ¨ƒœ¨„’£Š£|€Ÿvzšqyšo|r vƒ¤u„¬w†±yŒ·“¼„•¾†˜½‡½Œ¢½§¼“¯½š½Ã§Î͹ÜÔÇàÓÊÚÈÄÓÀ¼Ë¹·À±®¸¨¨ZM=ZM=ZM=ZM=ZM=ZM=ZM=ZM=XK;XK;XK;YL]P@[OC[NFYNJZPQ\SX_U^^Xfa]tedƒki‘nluq¬z¼‡€Ä‹€Ä€Á‘}ºt«l¢šo¤¥s¨žgžšV}œ=E¦7.¯6.À=5ÐA;Ú?:ç@:óA=õ==õ;<ô<>ñ>AìBEçBFáBFØBCÇ<7½=4¶<1±;/«:,®:+½A5ÐJAÚG@ÜA=Ô63Ð51Õ@9ÍC8»9+²5#½8'Â;(Ä=*Ä=*Ä;(Æ;(Ç:(Ê9(Ï9(Ï6&Ô2%Ú2%ã5*ê8.ï80ð91ç2'ç1&ë/&ð-'ö,(ú-*þ.,ÿ./û*-ø%+ú$.ÿ'7ÿ%;ÿ7ÿ3ü0ô/õ-8ô2;ä)0Ú'+Û-/Ý/1Ú*-ñ:>ô7=÷4:ö26ö/4ø03ù25ô87Û2-Ú;5×82äE?äE?Î/+Ñ2.Á"Ô51á?:èE@à=8Ø3-Ù2,Ý60Ý:1Ô:.Ï9*É5'Ç5(È9+Ê<0Ê<2Æ9/ícYáXNÉ@8º4+Â91Ã:0¿6,Â9/¿5+¾4*½4*»5)¸6)µ5(´6(°6)´;0»B9ÓYTèljïqtöx|þ|„ùu€ÿz„ýw€ôw}õv}þu}ÿo{ÿhvÿaqÿ]nòK]öD\òF\ÝIYÐfh·Šw•’o“bu’\xŽ]cŠ•k˜p‹•p…”mp‡]l‰]h‰\g^k_q•ey›i|žk„«t…±v‹·|Žº}’»”»‚—¼†›»‰›µ†¡³‹¬·—¼¾¨ÍÇ·ÕÈ¿ÔüμºÅµµº¬¬±££\L<\L<\L<\L<\L<\L<\L<\L÷:>ù:?÷=Bï@EåBE×ABÍB?À;4¸90±9+­9*©8(­9*»?3ÏF<ÙD>×96Ù74Ú;7ÜC=ÝOEÎH<µ3#¾9(Á:'Ä;)Æ=+É=,È<+É:)Ì9)Ï7)Ï2#Ó/#ß4*î=3ô?6ñ91é4+à6'Ý6&â2%æ0%ê.%î-&ï,(ò,)ò,-ï(+ð'/÷)6ý%:ü7û3ø3ô%7ñ/:ò4@ï5@î9Bî:Cé5>å-7ð2<ó/;ö.9ö-7õ.3õ.1ó/1í42Ü0,â=9Ú64ß;9ÿmjåCAÑ/-Î/,Ù:7ß@<àA;Û<6Õ7.Ö5-Ö5+Ò6*È6'Ã6%Â6'Ä8)Å;.Æ<1Æ<1Å;1ë`YáTMÉ<3¿0(Ë;3Ñ>6Î;3Ò=6Ø=8×<7Ô=6Ï<2É;1Ã9.¼6*¶6)¹;/¼@6ÏTMãgeíorøz~ÿˆý{ƒÿzƒüyõzöyþuÿn|ÿcuÿ\oÿYmòI^õAZòF\àLZËaa§ze‚€Zn‚Qh…OmƒRt…X{ˆ]}ˆ^x„\q‚X`zM_Pa…UeYn•`uœg} j€£m„«r‡°t‹´xޏyŒ¸y¹z’º~”º“±•¬€šª†¨®’¸µ¢Äº®È¹²Æ·´·«­© ¥Ÿ–›[K;[K;[K;[K;[K;[K;[K;[K;ZJ:ZJ:ZJ:[K;[K;\L<\L<\L<]K=]K=]L<^M=^M;^O<^O<^O<^Q@^Q@]OB[OC\NE[NF\OI[OO^P_bTmdY{g^‰ohœzu­„|·ˆ{³›„º¦…´¯€ª¸z¡ÈxŸÓtœÌcŒÆMlØHRÙCBÑC?ËF=ÉI<ÌH;ÓE;ÞA<î@AõEðAHâBDÑA@Å@;¿?6¶<1¯9+«:*ª9)®8*¼>0ÎD:Õ<7Õ31à;9åA?áD?èSLßUJ¿:+Á9)¾7$À7%Ä;)É=,Ê=,Ë9*Î8)Í4&Ò2&Ù2)å9/ñ>7õ>6ð5.ä/&Þ6)Ý7)à4*ä2(ç.)é.)ì,)ì,+è*,æ',ê(1ð*9õ'<ö";ú=û%Aý8Jä(6å,:ÿMYÿ]iÿNZò;åGDÛ=:Ú<9Õ:5Ò80Ñ7-Ð6*Í4&Æ3#¾5#¹6$»8&¿;,À9é=9æ?9á@8Ù?5Ð<2È:.Á9-»9,»=1ËNHàc_ìnoú|ÿ„ˆÿ}…üvúwõz÷z€ÿv€ÿm{ÿbtþ[núThðG\ñ=VðDZáO\Ã[Z’hRomG_sB\yCdzIl}PtVvƒXrXoWm‡ZlŽ\o•buh{¤l¨o„ªq‡ªp†¬qˆ°t‹³uŒ¶vŠ·vŠ·v‹¸w¸z‘´|«{¥|š¥…ª¬–»´¤Å¸¯Æ¸µ±«¯¡ž¥—’™[K;[K;[K;[K;[K;[K;[K;[K;ZJ:ZJ:ZJ:[K;[K;\L<\L<\L<]L<^K<^K<^M=^M;_N<^O<^O<^O<^N>^N>\O?^NA]OB^PE^OJbNYcPdcTqeY}le‘xr¢w¨ƒv¤”}§¬†«Â‰©Î‚žÚw”ßl‰ÚYwØE_ìFTòINéMNÛLHÍG>ÊE<ÒE>ÛC>êBBò?Cø?GöAJíDIÞDFÍB?À?9½A7µ=/®:+«:*ª9)®8*»;.Ì?6áFAâ=;îBBëAAÞ;6ãJBæXLÕK>È@2À8(¼3#Á8(È<-É:*Ë7)Ð8+Î0%×3)à8/é;4í:5í60ë0+å,'ß0+ß2,å10ë20ñ35ô36ö58ô5:ë.5è-6ë/=ð1Cò.Fõ*Gü,Nÿ4Rõ:Må3?î>Kÿ\iÿhvÿUdõCS÷@Rî3Dí3Aí3>é6<ã99Û83Î4*Ç/$Ë2*Ç.(Ð72òYTö\ZòXVÛA?âHFÜB@Ô<7Î70Í6-Ï8-Ï9+Ê7'Â5#¹8#³9$µ:(¸=-¹;,¶6)¼7.Æ=5ÛNGÙEAÎ50Ð1-á>9ç@:ã81ç51ë20î21ë52ç83á:2Ø:/Ð9.È:.¾6*º8+ÈIBÜ_Yënlû}€ÿ…‰ÿ~ƒ÷t|øv~õzø{þtÿl|ÿauÿZp÷QeñH]ð>VîEZãS]¼VRƒ[Bbb<\p?[vCfyKn~QtVx…Zyˆ_wŒay•exšhz m|§qªr„«r…«p†©o‰¬r‹®tвtŠ´tˆµt‡¶r‰¸t‹¸w·{Œ­x¤x—¥‚ª®•¿º§ËÁµÏÆÁ¼º¿¨ª¶œœ¨ZJ:ZJ:ZJ:ZJ:ZJ:ZJ:ZJ:ZJ:ZJ:ZJ:ZJ:[K;[K;\L<\L<]L<^K<^K<^K<_L=^M;_N<^O<^O<]N;]N;^O<_O?_O?`P@aQAbPFeLPeM]aOebUsh`…to—{t}q—v–®ƒŸËŒ¡Úƒ–ãt…èeuæQdä?Pò7Hü@NôIQãGJÑA@ËB<ÑC?ÙCBæCFë@Fï@GïBHçDIÚDEÉB>¾?6º@5±;-©8(¨9(ª9)°8*¼:-Ê;3èIEé??ë=>å78Ú2/ÞA:îZPôh[ÚPCÉA3¾5%Â6'Ç9+È9+Ë7+Ò8,Ñ0&Ú6-æ;4é;4ê40è/,ê-+ë--ñ48ó4;÷3=ú2<û1=ý1=ú0<÷1>ô1Añ2Bò5Kó5Nò1Nô.Oþ1Xÿ>_æ3HøN[ÿ_lÿ\küTcúO_ôDXé8JóAQê:GÝ2:Ò/2Ê2-Â8-½;+¼:*Ä:/À2(ÙJBúkcÝLGáPKÏ;9Ï;9àLJÔ@<Ê70Ê7-Î-±9)¯3'º:/ÊD;ÖGAØC=Ô72×2.ç;7ì:6è2.í2-ò,-ô,,ò./ï31è71â:1Ú<1Ò>2Â6)º4)ÅB:×XRçjhú|}ÿ†‰ÿ„øu}ùwö{€÷z€ürýiyÿ^sÿYoõOcôK`ò@XïF[åU_¶SNyT:^`8`sEa|InSv†Y{ˆ]~‹`g‚—l€œl}Ÿm|¤o}¨p€©o‚ªnƒ©l…©l‰ªq‹­q‰¯rˆ²r…²o…´p‡¶r‰¸t‹µv‡­tŒ¦w™©„¯µ™ÆÄ¯ÕξÙÒÌÂÂʬ²À›¡¯ZK8ZK8ZK8ZK8ZK8ZK8ZK8ZK8ZK8ZK8ZK8[L9[L9\M:\M:]L:^K<`J<^K<_L=^M;_N<^O<^O<^O:_P;`O;aP>aP>aP>aPKø/Bÿ7KûAOë@IÛ?CÖBBÕCC×ABàAEã@Eæ?FäAFßCFÔBBÇ@<½>5¸>3¯9+¨7'©:)­<*´<,Á=1Ï?7ß=:å99ã03â/2à42Û94æMEülaòh[ÙQCÆÍD>Á63É;7äUQÕF@É91È8-É:,È9(È9(Ä=)±?'¦<&¨;&¬=*«7(¬3(¼=4ÓLFÖGAÝE@Û96Ü30é73ì51ë0+ô1-ý,/ÿ+-ú./ô1/í4/æ81ß;1Ø>2É9.½3(À;2ÏNHáa^÷yzÿˆŠÿƒ‡üyüz‚ø|„÷z‚ùo|ùeuüZoüVlîK`òJað@WìEYáT]®MGpM1\^6_rDf~Nuˆ[Žc„h†’jˆ—n‰žsˆ¤t„¦t§r}¨p¨n©mƒ©l†¨lˆ§nŠ©nˆ¬o†®o‚¯l‚±kƒµn…·r‡³t†­tŒ¨w›­…°¹šÇǯÖϽ×Ò̼ÀÉ¥®½“œ«[J8ZK8[J8ZK8[J8ZK8[J8ZK8[J8ZK8[J8[L9\K9\M:]L:]L:^K<^K<^K<^M=^M=^O<^O<\O<`Q>aR=aR?bQ?bQ?aP>aO;bL?kMKjLTeO\dWkkexu”}|œx—‘z”«•Æ„Ù~…îuzümoýZ[ùFL÷4Eÿ:Nû@Qî?LåAJáEIÝBF×<@Þ?Dß>Cá>CÞ@AÚBAÐA=Å>8¼=4µ?1¬;+©8(­<,´?.»@1ÊA7ØC=Ù74á85Þ..â30æ:6Ó0'Ï5)ëUGÿwjë[PÑC7Ê<0Ë;0É7*Í6+Ô:0Ú70ß82å63ç32ê01í12ô36ü5<ü%5ÿ#8ÿ"8ÿ!8ÿ 7ÿ5û4ö5í2ì 9í'Bî)Gí'Jï)Mý5\ÿFhÿ`sþ^j÷UbòP]òP]ðKYã>LÒ0;Ú=FÍ6;»/.¯.(¨4'¢;(›?&=%ª9'²8+ÒVJ»;2Ä?8¾41½2/ÎC@åWSÕHAÈ91Ä6*Å6(Ä5%Æ5$Ã:(±<(§:&¨7%­9*¬4&¯1%Â?5ÛRJÙIAáHBÞ;6Þ2.ê41í1/ï-+ü22þ,/ý+.ù+-ó++í-*æ1*ß4,Ö8,Ñ=1¿2(¼7.ÈIBÙ\Xówwÿ‰‹ÿ†Šý~…ÿ}…ü}†ýw‚ükzù`rùWlùSiêD\ðG^ì;UäAV×QZ¢ICfF-X]5Zm?b}JtŒ\€–g‡˜lˆ›nŠ r‹¥vŒ¬z†«wªr~§m|¥i}¥g¥gƒ¥iƒ¤k…¦m„ªm‚¬l€­h€¯i³j„¶o‰¶sˆ°rŒ­x™°„¬¼˜½Æ©É˵ËͶ¿ÄŸ«·Œ˜¤]K7\K7]K7\K7]K7\K7]K7\K7^L8]L8^L8]L8^L8]L8^L8]L:]J<]K=^L>\L<\L<[N=]P?^SA`SB_R?`P@bQAcRBdQBdNAdLBkKLhKPeO[f[lnk†x{œ…ª‰‰­„¦¥ˆ¦¾ˆŸÐ‚áy€ðrsùjfÿa`ôMWíAOç=JéBLëEOçAKä=Eå>Fâ;Bà;?Ý:=Ù;:Ô<9Ì;6Ä:0¹9,§6&¯A0­<,¬6(¿A5ÌF=Ì=5Ð72Ú85Ü71Þ5.Þ6-Þ8*Ý<*×:'Ó6%Ù;0ðSLòZOÙE9Ç8*Í>.ÔB3Ò:-Ó2*ðGBá//ï6;ô7>ï-8ÿBMð(3ú&2ÿ)2ÿ)2ù'ý"*ÿ'/þ'/ð&î)ø,7é!.ë&7ð,@ã!9ÿVpå+Bÿ\lÿ^iÿYcûT\öOWìGMÞ>@Ð64Ì=7Å@7¸>1§6&œ1!š5#:' ;)§8-®7/ÂE?¿;7½31Ä64Å54ÔDCÛLHÚKEÑD;È:0Ä4)Ç5(Ë4)Å5*¼1¹=3Ö_Yésqÿû„†ÿ‡Œÿ„ÿx‡ýh{ü_tþ\súVnóMeòHcë[àBYØ^i?;\C-S[6\tBg†Mw–]}œcg€¡jƒ¦n‚¨o€§n¦m~¥l}¥i|¤h}£f£e£f¥l¦m«l¬k~­g®f±gƒ³i‡µm‹´r‹±vŽ®|™´‰§½™¯Â¤²Á®£¯­˜ž|‡]K7]K7]K7]K7]K7]K7]K7]K7^L8^L8^L8^L8^L8^L8^L8^K:\K;^L>_M?^N>[N=[N=\Q?^RB_SC]QA]OB_OB`NDbPFcOHeMIiLNgNTeSag_tnoŽy~¦€ˆ·‡‹»ž–Ç£Œ¶« ¹xŽÓy…ê|}ôuoôidõ^cîQZéGRîJSóLVòGPî@Jê/Ç8(Ê8)Ó;.Ý:3õIEä01ñ7<ö6Añ.<ÿ?Mí%2ó$,÷%(û),ý+,ü*+ø((ö((÷+,ï$'í%(ê%,ý;DØ&î2Aú?PÕ#3ÿhuÿajÿZaýV]÷NSçACÚ;8Ò=6Á7,ÂB5¼G6¬=,š/“'’&“'ž-%°:6ÑTPÎHGÃ54Æ45Ñ==ëWUØGBÖG?ÐA9Ç9/Æ3)Ê6,Ð7/Î70Ç=3Â91Â5.Ã2-É4.Ñ83Ø?9ÞE=äJ@ÞA8Ú6-Ý0*ç0,ò21û03û03ô02ó12ô01ó/0ó0.î1-ç4-ß9-×=1¿3$¾aP@`P@]P?\O>[O?[RC[QE[QG\OG\OI_PMcQOfTTgTVgTXgV`h\pli†sv¡|ƒ¹‚ŠÉŠŽÎ˜’Ò ‹Äªƒ²¹}ŸÏ€“䃊î~zòsmøfiòU\êIQíHOóIRõGQòAKî=Eä7=à7:Û89Õ<7Ï?7É?4Á=0¸=-®=-ª<+«:,¸B6ÇH?À;2»0)Ê:2Í6/Ð6.Õ7,Ø8,Ù7(Ù8&Ü9&à:*Ý4-Û4.âA9éOCÞH:È5%È2#Ù@2â>5õHDç02ò5;ø6?õ1=ÿBPô.;ð)0ë#&ì$'ù13õ-/ï''ì&%õ12ê()õ79ç*0á(0ê2<ÿQ]í;IÿYeÿ^fòU\ïNTñLRëEIÞ:;Ö74Ö>9Â5,Â>2½A5µ<1­7-¨1)¢+#& ›$©/*ÇECÂ::¼,,È35×ABô^]Ð?:ÒC;ÐA9Ë=3Ì9/Ô=4Ú@8Û@;Û@<Ø=;Ý>;ãA?ä>>à::ã?=ëIDàB9Ý<4Ù5,Ý2+ç1-ð31õ12ø02ô02ô02ô01ó/0ó0.î1-ç4-ß9-Ø>2À4%º8+µ;0Ð[Tízwÿ“’û‡Šý‰ÿ|‰ÿqýdxþZrÿUoüOkúIfôA_î?\êGbßTg¥@Hu83XF2U_<_wEf‡Nr“Zu˜^tš_xžc{£g{£gy¢fy¢fy¡cx byŸby a| bz cz¢f{¤h{§h{¨e{©a{©`}«`®`‡²jеn‹²s‰¬t†¦w‚žuy“no†lQcW@OL2A>^M9^M9^M9^M9^M9^M9^M9^M9^M9^M9^M9^M9^M9^M9^M9^M9^L8`N:aP<`Q>]P?ZN>YOCXPEXOH[QO_UTbXYeX_iYcl\fk^hl`llctok†rt›y~µ‡È…֌܎‡ÔŸ‹Ð­ŠÂ³§½yÌ{‚Þ|ñ‚{þttýdgôX\òOTòIPòDMð?Gï-±=0¼F:ÌRGÇH?º5.º1)È91Í81Ó;0Ù=1Û;-Ù6'Ü6&à8+à5-Û2+à=4ìNBãK=Ò:,Ñ8*àB6Þ6-ð>:é/0ï05õ2:ø4>ÿJVÿFOý>Eò38â$&í/1ê,,ð22è**ë/.ñ99Ñå26Ü+1ç8?ïDLÿWbñKUÙAÞ9=Ü89Ú78Ô97É83Ã81¾92Á@:ÎMH×USÒMNÄB@²72¶95ÏKIÙMLãQRïYZêRQñYVÉ51Î>6ÒB9Ð@7Ó?5ÙB9àC<â@;é?@ç8=ì9=ò?Cï:?è58ì>=öMJÞ93Û60Ú3+Þ3,å4.ì30ò21ô01ô02ö/2ö01õ/0õ/.ð0-é4-à8-Ù?3Â6'·5(³9.ËVOï|yÿ“’þ‡‹ÿ€‰ÿy‡ün~úcvúXoüPjûHfúCbò=\ïB^åMd×Zhˆ25k90\M8[eCc{Kj‰Ps’Yt•\u˜^wby¡ez¢fw dv awŸavž`xŸ`xŸ`{Ÿaz cz¢fz£gz§fz§bz¨`z¨]|«]~­_†²g‹´nŒ³tŠ­s†¦u€qtŽii€dPbTCRK8G@^M;^M;^M;^M;^M;^M;^M;^M;^M;^M;^M;^M;^M;^M;^M;^M9]K5_M5`P9_P;\O>ZN@XOFXQKYPQ`W\g`hnfsshysg{sg}qgolppŠrv™v|¬z‚Á‡Ð„‹ÜŠŒá“ŽàÖ „¾žuŸ l‚¬ns¼uoÒvkðsmýmlþhiû_`ùSWôGMí3Û=1Ú6*Ü4'â6*à3,â70ä=5åE9âF9ÞB3ÞA2â>2Û0&ê72ì0/î-0ï,2ö3;ÿLTÿW^ÿZ_ÿOSá.1ã03à,-÷EEè66Ü,,Ú,-ê=?Û14Ø26ÿbhà=BÊ)1Ê-4Á&*Õ;=àAEÚ7:Ù37ß9=Ü7;Í/0Ì43Í;;ÓGFÝSSë`cõilôekê^aÄ@>ÆE@å^[øhgÿopÿjjåKK×=;É40Ñ>7×D<ÖC;Õ>5Õ<4Ø:1Ü41î5;ñ-7ð,6ò.8ï,4ë,3ó9<þJKß3/Ü3.Ú3+Ü3,ã5.ê40ï4/ò21ô02ö/2÷/1ö.0õ/.ð0-ê3-â7-Ù?3Æ8*´2%²8-ÃNGï|yÿ’‘ÿ‡Œÿ~‰ÿu„ùl|öatõUm÷Jfù@`ù;]ó:\íDaÛPeÁWar.+b>0`T>cjIf|Mk‰St’\u–_v™_xžcy¡cx buŸ`uŸ`u_vž_wž_xŸ`{Ÿaz¡bz¢d{¥e|¦d|§`y§^y¨Z{ª\}¬^€¬a…¯g‡®m‡ªp…¥sƒ r{•nrŠjdwd[k^QaT_N<_N<_N<_N<_N<_N<_N<_N<_N<_N<_N<_N<_N<_N<_N<_N:^L4_N4`N8^O:[N>YOEZSMZTT_ZahbprmzuŒ{u‘{q“zp“vp”qt•rwt|ªw€·zƒÄ~†Ï„ŠØ‹Ú–Ú™‹É›…´¢ƒ¢ª„‘«~{Ÿk]™R@ºNBÒRIáXRéXUïTRñKMì?Cå4:ë8<ç9;â:9Ú=8Ó@8ËA6Ã?0¼>/³9,ºA6«5+£.$¾I?Ùg\ÙdZËUI¸<2¸6)À3)Î:0Ù;0Ú6,Þ3)ä6-ß1*ä71ã;2Ý9/Þ>0ãF5äB3ß9+Þ0'é4-ð31ï-.ì)-ò/5ÿBGÿRWÿ]bÿ\aâ9<ã9<Õ+,ôJKâ89×//Ù35Ë'(Ê%)÷WYÜ=AÕ9=Ñ6:º#Ä(+Û=>åBEÛ59×,2Ü17Ù05Ì).Ð47âLNôbeúin÷dlö`iø`løbkÖLLÕNJê\ZêVTçMMãHFÏ42Î3/ÙA<àKDäOHßJCÙ@8×:3×6.Ü.-õ2:û-:ø*7õ'4õ)4ø0:ÿ>CÿJJà1.Þ3,Ü3,Ý5,á4-ç4/í4/ð3/ô02÷/2ù.1ø-0ö..ñ/-ë2-â7-Ù=1É;-³1$±7,ºC=ìyvÿÿˆÿ{‡ÿqöhxó`róSkôEbù:\ù7Zó:\ëHcÍP` JMf4+YB0_W@cjIf|NkˆRt‘[w•_x™`{ždz cvž`s›]rœ\s›\tœ]v^wž_{Ÿaz¡by¡bz¤b|§b{¦_x¦[x§Yz©Y{ªZ~ª_ƒ­e…¬k‡©m‰§s‰¥u„s|”ru‰po€mgxf_P=_P=_P=_P=_P=_P=_P=_P=^O<^O<^O<^O<^O<^O<^O<_N:aP6aP6aO9^O<[OA[RK\VV_Zakgvso†}z—‚~¡|¥}w£{u¥xv§sy«s}²x¸{„¿~†Ä„ŠÈŽÎ”“Íš“Æ –»«œ³¼§°É­©Å¦”ªˆmšgL›F2­A4µA4ÂB9ÖHDèNNîJKì?Cë=?é;=å;;à<:Ù@8Ò?5Ê>1Â<0½:0¾?6¯4,§1'»I?ÑcVÖh[ÕeWÃOBº>2º4)Ç7,Ö90Ù5,ß2+ç60â0,ã4/â7/Þ7.à>1åC4ä>0Þ4%å3)è/*ð3/ð..ï-.ñ03ò67ô@CöMRüY^éFKöQWØ37ëFJÝ8<æAEØ58Ì,.Ï.3âFIÒ7;Ð7:¹#%Õ;=Ù9;â<>è>Aæ7<ß.6Û*2à2;ä=DîMSú_eÿmsÿjsøajõ[göZhö\fôddèZVèWTØ@=Ï10Ô44Ó33áC@ãJEéRKêSLáJAÙ?7Ø93Û81ã33ó.7ÿ0>ÿ0=ú*7ü.:ÿ;EÿCHûABã1/ß4-Ý4-Ý5,â4-æ3,í4/ñ40ô02÷/2ù.1ø-0ö..ñ/-ë2-ã7-Ø:/Í>0µ1%±7,²;5ésqÿŠŠÿ‡ÿt„ýh|óatñ\pôRjõDaû7]ü8^õ=_èNf¼Q[}96^<0QD1[V@]dEewMj…RrŽ[v”^yša{ždxžas›]p˜Yp™WqšXqšXt›\uœ]y_xŸ`x¡_y¢^z¥^y¤\x¤Yx¤Wy¥V{§X©_‚¬d„«h†¨l‡¥o†¢q€šmx‘jp„hl€eey`_P=_P=_P=_P=_P=_P=_P=_P=^O<^O<^O<^O<^O<^O<^O<_N:cQ9cQ9aP<]P@ZPG\TR_Zaa_mtrŠyx˜€¨ƒ°~~°yy¯yu°wwµw|¾xÃ}…Ä‚ˆÄ…ŠÁ¿—–¾ ¼¬§»¶¬´¾³¯È¸©Ð¾¦ÖÁ¢Ñ»–Ьˆ¯oT®\G¤G5¨>0ÂG?àWQïWVñNOé@Cê=?æ<=â=;ß=:×=5Ï;1É90Á80Á<5¹:3¸=5ÁOEÇXMÇ]OÑeXÓcUÂL>¼:-Å8.Ò91×4-ß2,ç60æ40á2-à5.ã<3çC7æC4â:-ß3%é4+å-%ð0-ð0-ñ42ò65è./â24çBF÷X]öW\ÿouåDJëHMàñHKë;>í8?ö>Fð8Bæ.8ñ@Jÿ_gÿnwÿkrþdnõ^g÷_kýcoý_nöZeñ]]ãPIâJGÕ74Ò/0Ù54Ò0.Ø95ßD?ãJDâIAÙ@8Ó6/Ö4/Ü71è66ê'/ü0<þ2=÷+6ù0:ÿ>Eý?Aì44â3.à5.Þ6-ß4,á3*è3,ï4/ô41ö01÷/2ù.1ø-0ø..ò/-ë2-ã7-×9.Ñ?2¶0%²6,°61èpoÿ‡ˆÿ†Žÿn€ücxñ^qòZoõQjöCaý9_ý;`òCbáTg®RWb0'YD3JE/US`P@`P@_O?_O?_O?aQAbRB_O?]M=]M=aQAcSCbRB`Q>dS?aP>]P@^QI[QPZSZeapsq‰yxšz|¥~€±€¹}ºxz·rs´lo¶twÆv|Ê€ƒÊ‹Æ–—䤾²°»¼¹´ËŵÓ̰ÙϬÛÏ¥ÜÏ£Ýѡ٘٘Ѩˆ¸€g¡]FËzgØte½H?ØQN÷ccéKLå?Aá99ã;:â:9Û75Ø61Ö;6Ë81À5.ÇB;»<3¿I?ÆXK¹OAÎdVÑcTÌXIÅG9Ä:/Í6-Ø7/á6/ã4/ß0-ß2,à70ä=4à<0Ý7)ß5(å7,ä/$ê/&ì/)î1-î20ë40è51â64×79æJNõY]íNS×8=×6<ùX`ÿ~„ÿx€ÿkqÿckÿfmÿekõ\aòY\ü[`ÿWZÿFKù:Bø9Aó3>ë-9ê2>î>HüU_ÿaiÿhrþgpûdmþdnÿaoû^gíSSßF@Ö85Ö41×11×/.Ø31Û94áD=ÜB:Ù?7Ö<4×90Û81à93æ66ð7<ó4;ó4;ö4<õ6;ò59ë33ã1/Þ3,Þ5.ß7.à5+ä3+é2,ï2,õ20÷12ø03ú/2ù.1ù//ó0.ì3.å7.à?5Ì8,¿6,¯/&¸;7ÒXWÿ˜šþ{ƒÿm€ÿf|ö]rïQhñHeùDeý=dõ;`òOlÑTd‰=?P, E:&DF.MM5Z^C[iEcxMqˆZx’bx–`t•\r–Yq˜Yl•Sm–Rn—So˜Tr™Xt›Zuœ]uœ[t›XtWv Xw¡Wv¢Wv¢Uu¡Tt S{¥[{£]zž^u—[m‹Ub~MXrCSj>?U.?U/>T.[K;^N>`P@`P@`P@_O?`P@aQAbRB`P@_O?`P@bRBcSCbRB`P@fVG_QF\OG^TSaZad`omkƒvw–wy¢{}®}¸x|¹quµkp´lo¶nq¾uwÎ|~Ó‰‰Ñ˜˜Î¨§Ç¸¶ÁÉźÓαÛÖ¬âÛ§çÞ§æÝ¤äÛ¤âØ£ÛÑžÔÇšÔ¼š½›€ª|dÇŠwÊ}m¶VJÓ`[örpìZ[çKLâ?@ä>>é?@å;;à66Û64Ö=8É83Ê?8¹6.¸>3½K@¶H;È]MÝo`Ô`QÆH:½5)Ä0&Ô6-Ü5-Û0)â51å95ä=7à<3Ü8.Û5)ß4*ã5*ì7.í5+í2+ë0+ç0,ã2,á4.Ý52Ö87Ø>@äJLóW[ú^bü\dþ]eÿaiðOWëJRîNVü\dÿhoÿekôY_òOTì5:ï-5ñ,6ô/9î(5ä"-ã)6ê9CûQZý\dÿdlÿemÿfnÿemü\hòRZåEEÞ<7Û64Þ63ß55Ü30Ú2/Û62à>9Û>7Ø;4×:3Û81ß82å95ç:6é9;ê7:ë7:î79î79ì65å31ß2,Ü3,Ý6-ß7,â6,å2+ê1,ò1,õ20÷12÷03ú/2ù.1÷//ó0.ì3.å7.ß<3Ô=2Â8.¶1*·74ØZ[ÿ“ûs}þgzþ^v÷WoôPiöGföAbú=cñBcãQh·LVw<8L2#>9#=A(GG/PS8XcA`rJnƒXu_v“]t“Xq“Vp”Tk’Ok”Pl•Qm–Rp—Vr™Xsš[sšYt›XuWuŸWuŸWtžTržQqRpœQn˜Pl”NhŒLbFXu?Ni6F]/@W+@W-@W-@W-YL<[N>^QA^QA^QA^QA_RB`SCaTD`SC_RB`SCaTDaTD`SC^PCbUM\QM[QRcYbkdtqm„vu•y{¤y{¬y~¶x|»nsµei°`g¯jn¸ruÄ}}Õ‡…Ù—”Ù©§Ø»¹ÑËÉÊÜ×Áåà¸éä­íç©ðè§íå¦çá§âÛ¥×Ï ËÄš¹®ªšœ‚k«‚p¨n`žQG»]UÞmi÷uuî`_ãJLâBDêADë>@ç9:à66ß=:Ô;6ÔA:Â70·7,·>3®=/¶F8Ûj\ßi[Ù[MÊB6Å2(Ñ4+Ù6-Ù2,Þ52éA>ìGCà=6Õ2)Õ1'Ú2'Þ0%æ4*è1)ç.)æ/)ã2,â7/á=4àB9Æ-(Ê43ÜDCðVXú^b÷ZaóS[ñQ[çEPèFQíMWû[eÿktÿmsòW]áô,9ì(4ó7EÿLWõJSôPW÷W_ü_fÿdkÿaiöRYèCIÞ97Þ71ã75é<8ë;;æ95á51Ý60Ý:3Ù;2×90×90Ü71á83ç:6é<8ã99ã99å97ç98è88æ74á40Û2+Ú6-Û7-Þ8,â6,ç2)ë0)ó0,÷10õ12õ13ø02÷/1÷//ò0.î3.ç6.Ý90ÜD9Ç80»4.µ/.ä_bÿƒˆølwücxûXsøQmûNlúEfó;]ï=_éJfÒUg›DJk<4O>,><';?(FD/HH0Q\U'C]0D^1E_2WJ:ZM=\O?^QA]P@^QA_RBaTD`SC`SC`SCaTDaTD`SC_RB\PDZOMZQVbXcjcsqm†vu•xz£z|­w|´sy·mr´bi¯]d¬ag±lr¾x{ʉŠÝ•’ᤢᶵáÇÄÙÕÑÐáÜÆçã½ëå³îé¯îè®éâ«ãÛªÚÓ§ËÞ¼¶–¦¤‹˜„–†v›q›qcœbWµh`Ðqmû‹‰óvtè\]åLNåEGêADê=?è<<ß:8Û<8ÞE?ÓC;Ã:0º:/°6)§1#¿I;ÛaRêk\ÛSEÉ:,Ì4'Ô6+×4-Ù42ñMKþZXíKFÙ80Ö3*Û4+Þ2(ß.&á,%á,%Þ-%Ü1)Ú6,Ù;0×?4Â/'Ä4,Î:6ÙCBßFHàEIäGNêMVñQ]öVb÷Waø[dÿfoÿksñV^Û8=é27ð/4ñ.6ð+4ë%2ë)4ù>IÿS_í?IèAIêGLòQVÿZ`ÿX]ôGMã68á53ä73ê;8ò@>ô@?ï=;æ95à72Ý82Ú91Ù80Ù80Ü71ã73è96é:7â:7à;9ã:7æ:8ç:6å84à5.Ú3+Ú6,Û7-Þ8,â6,ç2)ë0)ò/+ö0/ô22ô23÷12ö01ö0/ò0.î3.ç6.Ü8/àF<É91¾3.¶,,îfjÿy€øgtýdyúVqûLkÿHjü@cï7Yè?^àRhÃYe‡CBeC7ZO;HF1AC-LG3FD-LU6Sc>btLlƒUp‹XnRkPiŽKgIhJh‘Kj“Mk”Pm–To–Wp—Vt›Xs›Uq™So—Pj“MgJeŽHdG`‡D]AWy=Rq8Mi6Lf6Ne7Of8Mg8Nh8Oi:UH8WJ:[N>\O?]P@]P@_RBaTD_RB`SCaTDaTD`SC_RB_RB^QIVMR_Xhnf{tp‰xt—xw¡xz«y{´sy·jr³`g­[c«_g°jr»v|Æ€„Γ•ßžŸà­®ä»½äËÉáÔÓÙÝÚÑáßÊåàÂæâ¿äÞ¼à×¶ÚÐµÎÆ¯¾¶£®§—›™Œ€Œ„y{q“ukri©me¼oi扄í~ðtrðfdîXYíONëEEéA@ã:7à;7äB=ÞE?Ì<3Æ=3ÄB5¯1#®0"ÇI;ÜXKÖN@Ì=/Î8*Ð6*Ñ3*Ö42õUUÿkhú]XãD>Ü;3ß;2ã80â4-ã2,â1+Ý0)Ô0'Í/$Æ/$Â0#Å9,À4'Á3)Ë:5×CAÛEGÛBGÚ@HáEPìP[òVaòVaù]hÿemñW_Þ?Dé;<í57í38ï28ò2=÷9CÿHSÿV_å5?Þ3;ß6;êADùJOýHMô;Aé13è51ë95ï<8ò<9ó;9ð:7é73â70ß;2Ü;1Û:0Ü90ß82ä73è64é75æ:8ä;8æ:8è:9è;7æ95á6/Ü3,Û7-Ü8.ß9-á7*å3)é1)ñ0)ô1-ó32ñ33ô22ô01ô1/ò0.î3.ç6.Þ7/àC:Ê70À1-À13÷jpÿqzùgtø_töRmüDfÿ?dÿ;cò:^äGdØ[m«V[wE>dJ=aYFTO;KI4PI6GE.GP3L\8ZlFf|Nm…SmŠRlŒMhJfŽHgHg‘Ii’Lj“Ol•Sn•Vo–Ut™Vs˜Un•Rj’LfKcŒHaŠF_ˆFZBX|?St;Pn8Ok:Rl=Wn@ZqCUo?Up=Uo?RE5UH8XK;ZM=[N>\O?^QA`SC`SCaTDaTDaTD`SC`SCbUEaVP^Vcje|yu}yšzy¡xy©vy°sw´jr³cj°[c«]e®hp¹v~LJшљܣ¦Ý¯³â»¿äÆÇãÏÎàÔÓÛ×ÕÖÙÖÑÙÕÌ×ÐÆÒÉÀÌþꏴ¨¨£›™‰†|yt|tqxke‚kenga[`[Àsm×zuí€{ù~yýspúdcóUTíIGíD?ê>:á<6àA;Ñ:1ÓC:ÝTJÂ>2¸6)½9,Â=.È?/ÏB1×C5Ö@1Ñ7-Ð2/êLMú_]òWSßD?Ù:4Û81à70æ93ç92ç92â:1Ú9/Ñ9,Ê8+Ä8)°(¸3"È@2ÓI>ÒD@Ë;:Ì7;Ï:@Ó9CãISíV_ðYbô]fö_hèSYÚ?Cå@>ì?;ó@CýFJÿLTÿQYÿT]ÿU^â3:Ý.5Ý.3ç7:õaÿ7^ÿ7bø@dãOiÈ\i‹GFjF:]L<]VCXQ>QJ7OG4ID.DJ.GU2Sc>^sHgMj‡OjŠKgŒGgŒFfŽGfHgJi’Nk”Rm”Um”Uq•Uo”Qj‘NgŽKcŒH`‰E_ˆF^†G\‚E[~DWxAVr?Uo@YpB]rG^uGZrBXs@Xs@NB2QE5UI9WK;XL\P@^RBaUEbVFbVFaUE_SCaUEfZJh]YngwupŽ|x™{y wx¦vw­pu¯jo¯ah¬^f®_g°em¶pxÀ}…͉ؗ֙¡Ò¡¨Òª²Ù´ºÞº¿ßÀÁàÃÃßÇÅÝÆÂÙÅÀÔÁºÌ¼³Ä»°Áµ¨º¦™ª–‹™‹„‹uoqwnoseezfe‰mj…^Y–c_›ZT·g`Öuní|vü}wÿxsþjfù\WüSNõHBæ=6çD=Ø;4ÛG=ê\RÅ;0Ä<0½7+¾6(Ç>.ÑD3ÔB3ÔA1×A3Ò86Ø>>ÝCCÜB@Ö=7Õ81Ø7/Þ7/å:3æ93å:3â;3Û>5ÕA5ÑE8ÌG6®-¼;%ÍJ8ÑL=Æ=5»0+À00Ê9>×AJâLUìVaðZeï\dìYaßLRÔ>@Ñ4/Ú5/ã99í?@õBH÷DJô@Iï>Fä3;á06æ16ð7<÷69ù14þ-2ý14ï20ð95ð74ì0.è,*ç0,æ3.à3,ä=5à=4à=4à<3ã:5æ95ê65ì65ì57ì57í57î68î66ë54ä2.Þ1+Þ7.Ý9-Ý:+ß7*á4&æ1&í1(ñ1,ð42î53ñ42ò21ó1/ñ1.ì3.ç6.â;3Ò4+Ò:5Æ20çUXÿpxùcnñZiãK`ïHfý:bÿ1]ÿ6býChÛMe±PYj5/^G7XK:UN;YQ>UJ8L@0ID0@F,AO.K[6Xj@bxGfJhˆIf‹FeŠDc‹BcEeŽHgLh‘Oi‘Rk’Sn’RlPhNd‹JaŠH_ˆF_‡H_‡H_…H_‚H]~G]yF]wH`wKcxOczN\tBZu@Zu@JC3MF6QH9TK.ÑE6Ë>-Á2"Ê7'ÛE7ÞE?Ó97Ì3.Í50Ô;5×=5Ý<4á=4ä;4ä92Þ5.×4+Ï5)Ê8+Å<,Â?-ÔS>ÈG2½<)¾:-Ã=2Ä;5Â74Â43ÜKNÝLQáPUåTYèY]åVXÜMOÔC@Ë4+Ô6+Ú5/à42ä14è16é08ç.6î3>í2;ô4?ý8Bÿ3>ý)5ÿ(3ÿ.9ø-3ù57ù59ð./ë*+é0.è51â5/ã<4à=4à=4á=4ä;6ç:6ë76î66ì46ë35ì25í34í55ê41ã1-Û0(Þ8,Ý:+Ý:+Þ8(à4&ã3$é3&ì4*î50î52ð42ð3/ò2/ï2,ë4,ç6.ä=4Í/&×>9Ê45ùbgÿpyö[iíPcäF]óHhÿ=eÿ2]ÿ7aõGhÉJ]”BFS+#XH8TK:OH6YP?SJ9E@-GF1=C'@J(IU1Sd:_rEe}Ig„JeˆHcˆCa‰BbŠCcEeŽHfMhPiQlPkMfJcŠIaˆG`‡F`‡H`†I^G^F_}G`|Ia{Kd{Mf|Nf~N]xC\y?]zBDB6FD8JF;PG>RH>WI>]M>_O?`Q>aR?`SB_VGbYRgb_ojnso~wq“zt |y¨yw©pp¦gg£`a¢\_¤`b­fhµopÀyzÌ„‚Ö‹ß–’眙蠞ߡ Ú£¢Û¤£Ü¦£Ü¥¢Û¥ Ø¤ŸÕ¥žÒ£œÏ¢šÉ¢™ÆŸ–Á™Ž¸Žƒ«ƒ|›qo|hglc_`fZZlYUsVP€UNVO–RI©YPµXPÀ[SØkdëzröƒ|ÿ‹†ùuqÿusí_]ßPLÙEAïZTÌ71Å2*Ä6*Ã7(À7'Ã7&Æ9(Ê;+Ð<.Õ?1Ò8.Ö<2×?4Ó;0Í5(Í3'Ø:/â@5à90á90Þ7.×7+Ï7)É:*Æ?,ÄA/Â=.Æ@4ËE:ÍG<ÌC;Å<4»2,¶+&Ç<7ÐEBÙOLàVSãYVáXRØOIÐC:Í:*Õ:(Ü8,ã5.è./í*2ð(3ô'6û,>ú+?û*?ý)?ÿ'?ÿ&?ÿ$<ÿ#<ÿ#7ÿ&8ÿ*;þ,9ô,6í.5é56è<:Ý84Ý:3Þ;4à;5ã:5æ95é73ë54ë35ì46ë54é54ç53â5/Ý5,Û5)Ü8,Û9*Ü9(Þ9&ß8&â7%ã6%æ4&ì5-í4/ð50ñ4.ñ5,í5+è6*ä8,Þ:0Ô7.Ó:5×>@ÿmuÿbqøUjñKc÷Oiì:Zù9^ÿ?gõ@cæPk²IWa$#G+ A8'KD4RL[K>]M=`O;`Q<^SA^VIc[Xhcinlyso†tp•vpžtp¢pm¢gfŸaaŸ]^¡\\¤ed°kjºtrÅ}{φ‚Ù‰à”Žæ˜“å›•Ýœ—Ù˜Úž™Ûž—Ú–Ùœ–Ö›•Óž–Òœ”Íœ“È›“Æš‘À“Š·ˆª€yšsm{keid^^e[YkZSqVM|TJTKTK²[R»XRÃXRÓfaÝrjàxoë~wûˆ…ÿ‡…÷usîgdãUSëZUÇ2,Â/%Å7)Ã7&À7%Á8&Ä8'È;*Ï;-Ó=/Õ9,Õ9,Ó:,Ò:,Ñ9+Ñ9+Ô8+Ø8,ß;1à90Ü8.Ö8,Ï9*È9(Á:&¾9&¾6*Á80Æ=5É@8ÊA9È?7Å<4Â91¿4-Ç>6ÑH@ØOGÚQI×NFÌC;Ã7*Ê7%Ó8$Ý7)å4,í//ô+3ù)7ý(:ÿ+@ÿ*Aÿ)Aÿ&Aÿ#@ÿ!<ÿ=ÿ:ÿ9ÿ8ÿ$:ÿ);÷-9ñ2:ê7:æ<<Ü94Ü:5Þ;4à;5ã:5æ95é73ë52ë35ì46ë54è64ä71ß6/Ü5,Ù5)Û9*Û9*Ü9(Ü9&Þ9&ß8%á8%ã6%ç5+ê3+ë4,ë5*ë5*è6(ä7)ß7*Ý=1Ñ4+Ï53ïTXÿfrÿ[oñIbùLhøEc÷@_ô8[ó>aïNmÍLb‹8@Y)%E3'<6(>;,C@1CB0=@-8D.:I,_„?b‡B69.:<1??7DA:KB;OE/Ô>/Î6(Ë/"Ú:.Ú8-Ù7,Ö8,Ð:+É:)Â9&¾7$½5)À6,Â8.Ä:0Ç=3Ê@6ËA7ÌB8Ç:1Ê@6ÏE;ÐF<ÒH>ÑG=Ê@6Å7+Ì6%Ö6&ß7,ç4/ñ03ö-5û+9ÿ*<ü';ü'=û%=ù#;û!:ú7ü7þ6ÿ7ÿ5þ#7ý*;÷2<ò7>ì9<å;;Ü94Ü:5Þ;4à;5å95ç85é73ë52í36î47í55ê65å61á6/Ü5,Ø4(Ú8)Ù9)Ú9'Û8%Ý8%Þ7$à7$á6%á5'â4)ã5*ã6(ã6(á7(Ý7)Ú8+Û=2Ì2*Ó86ÿlpÿ]lùQhí>[ÿKl÷;\ÿBdð8ZéAbãWq«@Re")Q.*A4+45'56&:;)?>*>=(<@)>E&>FXa4s~T€Œdw‡`hSa}La€G`ƒC`…?a‰@cŒ@hŽEjJkMl‘Nn“Mk‘HhHgŒGh‹Kh‹KfˆLd†Je„KdƒJc€FdGf‚Hf‚GeFb€Bc†DeŠEhH25*58-;<4A>7G@:KB;RE.Ñ>.Ë8(Ç/!Ò6)Ó5)Ò4(Ò6)Ñ9+Í<+È=*Ä;)Ä:-Ä:/Æ90Æ9/Ç:1È;1É<3Ë=3ÓD<ÓE;ÐA9Ë=3Ë<4ÏA7Ï@8Î;1Î5'Ù5)â5.ë31ò/5÷+6ù)7ü):ù&9÷&;÷&;ø'<û&<ý%:ÿ$:ÿ#:ÿ!6ý"6ú%7ù,;÷5>ò9?é9;á98Ü94Ü:5Þ;4à;5å95ç85é73ë54î47î47î66ê65æ72á6/Ü5,×5*Ø8*Ø8(Ø8(Ù8&Ú7&Ü7$Ý6$Ý6$Û5%Ü6(Ý7'Ü9(Ü9(Ú;(×:)Ö:+Õ;1Î3.çIJÿowþUhóE^ó>_ÿCfû7[üA.A@+?=$A@$EF$T]0p~MŸr—¨|ƒ˜mj„W_{J]~E_ƒCa†@bŠAfCkJl‘Lm’Om’Oo”Nl’IiŽIhHiŒLiŒLhŠNg‰Mf…LdƒJdGe‚HgƒHh„If‚Gd‚DgŠHiŽIl‘L-3'36+891<;6B=9G@:MD=QG=SI=SK>UNDZUQa^eigumklkŠjhb`XVˆPP†QQXYš`cªfj´orÁuxÉ|Ђ…Ö†‡Ù‡ˆØŠ‰Ù‹ŠÖ‹‹Ñ‹ŠÎŠˆÑ‰‡Ò‰…ÒˆƒÓŠƒÓ‰‚ÏŒ„Í‹„Ç…À†¹†¯‡‚¢~x’nƒZh}TZlWTc\R\`O[_HfZDzSB•JD»SRÑSWÛRYæ]dçfjàllãvqäunâoh÷~vÿ‚{ÿ‡~ôl`É?2Á8(À;(¿='¿='À<'Â;'Å:'Ç8(Í7)Ø:/Ù8.Ò8,Ï9+Ì:+É:*È9)É7(Ï9+Ñ7+Ò8,Ñ7+Ï7*Ì8*Ë<,Ë>-Ê<0É=0Ê<2É;/È:0Æ8,Å7-Å5*Ð@7Ð@5Í=4É9.Ë80Î;1Í:2Ì5,Ð/%Ù0)ä20ì25ô/8ù-9û+;ü,<ü-?û.?ü/@ü/@þ/Aÿ/?ÿ-?ÿ.@ÿ(8û(7÷+7õ0:ñ6=í8=ä88Ý54Ü94Ü:5Þ;6â:7å95ç85ê65ì44ñ48ñ48ï56í76æ72á6/Ú6,×5*Ø8*Ö9(Ö9(Ø9&Ø9&Ù8&Ú7&Ù8&Õ8%Õ:&Ö;'Õ=(Ô=(Ó>*Ó=,Ó=.Ð7/×<8ÿ]dÿ`oÿPgð/=PJ(^\5y…S£lª¾‹¨¾Ž¥wo‹[aK^F`„DcˆBeDj“Go”Np•Po“So“So”Nl’IiŽIgŒGiŒLiŒLi‹OhŠNf…Je„IdƒHe„Ig…Ih†Hg…Ge…DiŽIi‘Kl”N+1%.4*470893>:7B=:HA;KD1Î8*È4&Ê8)Ë<,É:,È:,É;/É;-Ê:/È9+È5+Ç5(Ê6,Ï;/Ò>4Ó?3Ö?6Õ>3Î7.É,#Ò+%Ü-*ç02ð39ö1;ú0<ý0?ý0?ù0@÷1@÷1@ö0=÷/<÷-9ú,9ú*7ü.;ø.:õ0:ð3:í6;ç7:à66Ú53Ü94Ý:5ß:6â:7å95ç85ê65ì44ò59ò59ð67í76æ74ß6/Ú6-Ö6*Õ7+Ô8)Ô8)Ô9'Õ8'Õ8%×7'Ô9%Ð9$Î<%Ï=&Ï?'Î@(Î@*Î?.Ð<0Ð71èHHÿgqþNbÿHdö8ZÿBlö1\ÿ9`ê7WÝSj¹Wfk29G)+G7:;23830:709;-5:#38BDfc:ƒTŸ®w©Á‡µÎ—¯Ç“’®}v”be†Q`‚F`…BcˆBgFm–Jr˜Or—Rq•Up”To”Nl‘KhHf‹Fh‹KiŒLi‹Ni‹Og†Kf…Je„If…IhˆIi‰Hi‡Gf†CjJk“Mn–P(0#+1'/4-350764<85@=8C>8IEù4>ù1>ú0@ø/?ò.<ï/<í/9í07ï-5ï,2ò+2ñ*1ô19ô2:ò5;ì59å57á55ß76Ý86Ü86Ý97ß:6ã:7æ87é77ê67ì46ô5:ô5:ñ7:î87æ74à70Ú6-Ô6*Ó7*Ñ8*Ð8*Ð9(Ð9(Ð9&Ñ8(Ð9&Ë9"È:"È>$Ç?%È@(È@*Ë>-Î;1Õ:6úU[ÿ^oÿGaý>_þ:`ÿ8fú5bô:_æGcÀP`‡@HT23C54D9=>37B36@51:8+6<"9CP\.}„PŸ¨q°ÅŠ¯ËŽ°Ì’¦Ã’®}{™egˆQ_E^ƒ@c‰@iDo•Js™Ps˜Sq•Uo“Sn“NkJgŒGeŠEgŠJh‹Ki‹Ni‹NfˆKd†Id†IeˆHgŠJh‹Ii‰Hf‰Ej’Ll–No™Q&.!(0%-2+13.331764:95<;6GD=DD*¾;'¼7$À4#ÑB2ãOAäN@ØB4Ë7)Ë7)Ð>/Ê;+É:*Ç8(Æ7'È6'Ê6(Î8*Ð8+Ó;.Õ;/Õ9-Ò6*Õ7,Ú<1Ý<2Ü71è88ñ8=÷:Aû9Bú4Aõ/<ò,;ï,:í/;ê19ê38ë48í57ñ56ô36ó57ï26î5:ì8;é69â45Þ44ß76á<:Ý86Þ97á96ã:7æ87é77ê67ì46ô5:ô5:ñ7:ì89æ95ß82Ø7/Ó7+Ð8+Í:*Í9+Ì;*Í:*Í:(Í:*Ì;(Å9"Â:"Ã=$Â>%Ã?(Æ?+É=.Í81Ü<>ÿ]fÿQgÿHdú8[ÿ?gö.\û>hä=[à]o¢LU[--G83FB?@7:C49G06F21@9)?D&EV*`t?‹aª¾±ËŒ«É‹¦Ã‹º„ެz{™ef‡PZ|@^?a‡>hŽCo•Jr˜Or—Rp”Tn’Rn“NjIf‹Fd‰Df‰Ih‹Ki‹Ni‹NfˆKe‡Jd‡GeˆFgŠHh‹Gh‹GeŠDk“Lm—OpšR(0!'/"(-&).(.0-3317839:4==5?@8DE@JLKORYVXeZ\s]^}YX‚[Y‹^]–ee£nn¶wxÈØ„…⌌ðŠŠì†‡ä‚‚Ü€€Ö‚€Óƒ‚΀ƒÆ…ŃƒÉ„„ΆƒÐˆƒÓ‹„ÒŒ„ÏŠ€ÅŠ€¼‰€¯‡} €xwozkegf]Xj\Ql\Mh\Lf^Ke_If`Hj`Gr^FrO;‡TA¦\OÁ`YÑYXÜQTíS[÷\`ùheæYPÔD<Î70Ñ7/×:1Ö=/Ô;+Ï9(Í:&Ï9(Ñ:)Ô8)Ø8*Ü5,Ü5,Ð/%Í3)Ì8,Ê>/Å@/Á@-¾=*¼9'Â9)¾0"éWJßK?Ã/#Ñ=1Î2Ü<0Ù7,Ú8-â>4ìC<õBEò9?ð2<ö4?ö2@ñ-;í-:í2=ì7>æ5;ä68å78ë99ð:9ñ78ï77ò;=î<<ê::æ87á85ß74Ü75Ü75Þ97á98ã99æ::é9;ì9<í9<ï8<ô7;ó6:ð8:í9:ç;9à;5×90Ï7,Ê8+È9)Ç9+Æ:)Ç:)Ç:(È;*Ç<)Á9#Ä='¾:#¶4¼9%ÉD3Î@6É1,ÿ_eÿWgÿKbü=\õ3Xò2Y÷8cðEiä[o«GQn43N3,C?6ABc‡AiDn”Im•Ll”Nk’Ol‘NiŽIfŠDc†Bc†Bf‰Ih‹KfŠLdˆJg‹MhŒNg‹Kf‹HeŠEf‹EjIk“Jq›QqRržS*0")/#).').(-/,130561782;<4>?7AD=HJGOPTSUaXYkZ\u\Z^]‰db”kj¤utº~·‡ß‹Œéð‰‰ë…„ ؀~Ҁς‚Ì…†Ç†‡Ç‡ˆÉ‰ˆÌ‹ˆÏŒ†Î†ÌŽ…ÈŠ€¼‰±†|¡‚x“{s‚tkplb`d]Sc`Ob`Ke^Kf^Ki\Il]Hn^Gq]Ey]G‚YC•XF­ZLÇVPÝSSóRXþY_ðUSãLEÙ>9Õ60Ù6/Ü90Û9,Ö9(Ó8&Ñ8&Ñ8(Ô8)×7)Ü6*ß4,Ý5,Î0'É5)È9+Æ=-ÄA/Á@-¿<*¾9(Ä8)Ë<.äREÜH<È4(Ì:-È:,Â4&Ê=,Ë<+Ê;*Ê;*Ë:)Ì9)Î8)Ï6(Ó7*Ö8,Ù7,×3)Õ1'Ø1(Þ7.ç<5øDGñ8>í/9ï/:ð0=î.;ë1<ë6?ä5:Ü36Ø22ß:8îEBøIFøDCó?>é:7ç98å97â96á85à85á98á98à87â88å99ç9:é9;ì9<í9<î7;ó6:ò59î68ê88ä;8Ü:5Ó9/Ë7+Æ8*Ã:*Â:*À;*À;*Á<)Á<+Á<)½9$Á?)»:%³5¹:'À_:2H:/;=0;=2I;:U==Q/.T7/WK5dhEw[Œ°pšÃ}ŸÇ˜º}š¹€š¶ƒ©xrŽ^YuETp=\{B_@b†@iCm“Hl”Kk“LiMiMgŒGe‰Cc†Bc†DgŠJiŒLhŒNg‹MiOiMiŽKgŒGgŒFfŽEl’Im•LpœQoRržS-1"-1#,/&,.)//-11/34/45-9;0<>1@B7EHAKMLQRWUUaVWi\Yt^]fdŒpn zx·…ƒÎ‹ßêŽïŽŒíŠ‰ç‡„ßÓ|Ë}È€ƆĈˆÄŠŠÆŒ‹ÇŒŠÉŒˆÅŒ„¿‹‚·‰€¯†|¡€v‘{pujrndci^Xc]Q]bL]bKa_Jg\JmZIp[Hr\Gr\Ez`I{W?‰R=¤UDÇXOàVSõPTüOSâ><Þ<7Ý84Þ71á6/á6.Ý7+Ú7(Ô7&Ó8$Ó8&Õ8'Ø6)Ý5*à3,Ý5,Ë3(Ä6(Â9)Á<+Â?-Â?-Á<+À8(Ã5'ÜJ=ÚF:ÕA5Îå84â62à72à72à72á85â96ä;8ä;8á77ä88æ8:è8;ë8<ë8<ë8<ì8;ï58î47ì57ç77â:7Ù:4Ï8/Ç7,Â8+¿:+½;+»<+»<+»<)»<+»<)¸9&½@*³9$±6$¶;+´1'Â40ëPTÿ\iþK`ó;Uí9VîA]ìIfãKdÊOa‚89f>6U?2G@0;<,86)A4+N7/H+#S<,g]Bˆ_’«t•¼{”Âz•À{’´xœ¸…š´…€šm\uKHb5Nh8[xB_}?cƒ@hŒDl’Gj’Ih’JgLfKd‰Dd‡Cc†DeˆFh‹KkŽNkOjŽNiOiOiMhJgHh’Hl”Ko™Ms¡Vs£Wu£X24&04&01)01+12-23.34.46+9;-;>-?A3DF9IJDMONRQWSS]XVd\Zoda~nl”zw¬„‚ÃŒ‰Ö‘㔑ê“뎋≅قÌ|Ã|¿€~½„ƒ½†…¾‰ˆÁŠÁ‹ˆ½‰…·‡®…}¦…{€vynrfpmack]ZiZSc[N\aKZbJa_Jg\JoYKsYJuZIw[FvVA{Q;‹Q=«XFÍ[PâTPíGIï?AÛ2/Ü5/á51ã60ã5.á5+à6)Û8)Ö7$Ó8$Ñ8&Ô9'Ø6)Ü6*à3,Ú6-È6)½8'¼7&½:(¿>+Â?-Ã;+Ä8)Æ4'éUIÓ<1Ì8,ÑB4¾5%À=+À=+À8(Ä8'Å9(Ç:)È9)Ë7)Ì6(Í3'Ò6*Ô3)Õ2)Û4,ã:3é>7ì?9ì=:è45ì59ï6;î5;ê2:æ39ä7=â<@óUVübbÿmjÿidóVQäA<ß63Ý4/ß61Þ71Þ71ß82á85â96å97æ:8å78æ89è8;é9<ë8<ë8<ë8<ì7<î5:î68ê67å97ß<7Ö<4Ì9/Å9,¾9*º;*¶;)µ<)µ<+´=)³;*³<(³:'·@,­8&­8'³;-«+"Á54üagýUdùH\î>Uè>XåI_ÜQdÎQ_±UZwFA\F9OB2JC1FC0@=*=6#=2A2QF*nkHŠ“f•¬t‘´t¸sºx»…¡¸Š§}l‚[K_:AW0Lc7Wr?_{@dƒ@iŠCk‘Fi‘Hg‘GdHeŽJb‡Bc†Bd‡EgŠHjMlOm‘Qn’Rj‘Pj‘Nj’Lh’Jg‘Gi“Gm—KpœOw¦Xv¦Zv¦Z78(68*66,56.56056067/68+;>-=@-@C.DG4IK>MNFQPNRRRVUSYX]a_lkius›€}²ˆ†ÇŒŠÓ•’ᔑâÜ‹‡Ó„Ä}º|µ|³~µ„¶‡…·‰†µŠ„°†€¦z›€w’s‡zn|relm__j[XiZSjYOfZLa`L_aLd_Li\Kn[LtZKzZK}ZGTAˆQ=QA¶VFÍSHØH@ß:8â43Ý1-ß3/â5/ã5.á3,ß3)Ý5(Ü9(Ó8$Ð9$Ï:&Ñ:'Ô8)Ù7*Ý5,Ø7-Ä;+¹:)µ6%·8'½;+Â=.Ç;.Ç7,Ð90õ\TÖ=5É5+ÏA5¸3$·:(¼?+¿:)Ã:*Æ:+È:,Ê;-Ì:-Ï8-Ñ7-Ð3*Ò1)Ö1+Þ71å<7ê>:è;7æ74é75ï;<ðë8>è7=ê7;î7;î79ê7:ä::ß=:Ö=7Ë;2Ã;/º8*µ:*³;*¯<)¯<*¬<(¬;)¬;)ª;(¬=*¦8'§9*ª8-«0)Ë@CÿiróN^ñH[ëEYâI[×P^ÇU]²VW™ZUgK?SJ9PD4NC1IC-B@'?B#AG#MU.^g.==1==3==5;<4;=2;=/?B/@D-CG.FJ3KL:NOAQQIRRHYWJZZN_^\gerqn‰{y¡ƒ€·‡…Čьӊϊ…ǃº~y¯zw¦yv¥{w©|z«€}ªƒ~¦ƒ}¡y•|t‰zrvksrfhm_^j[VkZRlZPlZNk[Ng^Mf_Mg^Mj]Mn]Mv\M|\MƒYI–^OUG©M@¹I=Å@7Ì8.Õ2+Ý2+á51á6/â5.â4-à2)Þ4'Ü6&Ú;(Ñ9$Í;$Ì;&Î;'Ñ:)Õ9*Ù7,Ó9-Á>,´;(°5#²5#»9)Ä<.É;/Ë7-Ù?7ø[TãIAÎ:0Ì@3¸6&¬3 µ<)¼9'¿7'À7'Ã7(Å7)É7*Î7,Ñ7-Ù<3Û:2Þ93å<7ê>:ê=9ç85ã41è96ë<9ì::è8:ì>@øPPÿbcÿppùheâTPÊ=6À1+É40Ö;7ß=:à;7â;5á:2â94á83ã73ä73å55æ66é69é69ê7;ë8<ë8>ê7=è7=é6:ï8<ì89è8:ã;:Ý>:Ó>7É<2À8ÛTXùfpíL\íJ]çL\ØN[ÆSZ±WVœ\RˆaRTG7MJ9SF5M>+?396AM%Nf6lŠTw”\„›e‰šd›f£k”­t˜°|ƒ•mn}\Q`Cg{HiƒFl‹Gm‘Gj“Gf’GbGcŽGhJlMo’Pn“PlMiŽKjJj’Ls›TsUsSržQržOs¢Rw¦Uz«Zw§[u¥[t¤ZRK;RK;RJ=RJ=RJ=RJ=RJ=RK;UNXQ?YR@[TD\UE\UEb[HaZHaYLbYRe][kaiqftuj{zn„|pˆs‹s‰|p„uj{mbre]jc`i`_e_]b_Z^^ZY^YUaZRbZOe[Og[Ki\Kk\Ik\Gm\Hm]Fj^HjbOreTqZJuOB‹WJœ\P¢ZLª[L¤N=¥F4¦<,°8(Â8-Ò80Ý41Þ1-ß6/Þ7.Þ7.Þ7.Þ7.Û7+Ø6)×7)Õ8)Ô8)Ò9)Ò9)Ò9+Ò9+Ô8+Í;,½;+¶>-®9(©1 «2!·9*ÀÔH9Â=,·2#ÝPFØJ@ÔF<ÓE;×I?ÛH@ÝD>ß=:ß74æ87ê::ê::å97à74Þ93Ü=7ÜE>ÑA9Ç9/¿2(¹0&º4)¿;/Ã?3Ã:0Ç=3Ð@7Ù@:à>;å<9é99ì::æ8:å8:å8:å99å97å97å95å95à40á51ä65å76æ89ç9:ç9:ç9;ë;>æ9;ß99Ü=:ÖA=ÍB;ÁA6·?1©:)£<+ =*›<(™:&–:%—8&‘8&A0‹<-‡/#‘/&¼LJämoåmoÍVZ½LNµNOªQM¢UO›XO–]R•aTŠjSXY/=K8EVa)P›°o¡¼yœ½x’µs~ah€L\mCYdBT]BHP9?D0:=,@C2<@1:>0]sBgƒHpKo“Kl’Gj’Ii“KgJlPm‘So“Sl“Pm’Mk“Jm–Jm˜IqœLqžMrŸNr¡Pt£Rv§UyªYzª^{¨eo›\e‘RWN?WN?WN?WN?WN?WN?WN?WN?XO@YPAYPA[RC\SD]TE^UF_VGd[JcZIcYMcYOf[Uj_]nbdpdhreltgpvirvirsfmm`gg[_bXY^[VZZRYVOWTKXTIXTH\VH^WGcZKcZIf[Ig\Hi]Gj^Fk_Gj_IfaMogTw[MSF™VM¨XO¯RJ´RE­I9ªC0«=,±9)¾8,Ì70Ø42Ü30Ý6.Ü8.Ü8.Ü8.Û7-Ú8-Ù7,×7+×7+Õ7+Õ7+Õ7+Ô8+Ô8+Ô8+Î:,¾<.¶>.®9(¦1 §2 ²:)¹>.¾<.Æ:-Ç4*Ë4)Ò;0ÜE:áOBßQCÝOCÛF?ÖA;Ñ<5Ð;4Ó>7×>8Ù:6Ú53æ87ê88ì89ê88æ87â:7á>9ÛB:Í@7Â=4»9,´4'²4&µ7)º<-¿@1Æ@4Í@6ÕA7Ü?8â:7æ87ë76ï8:é6:ç6<ç7:æ89æ87å95å95ã:5â92ã:3ã:5ä;6ä;8ä;8å99å99ä:;ã;;ß<=Ù?=ÐA;Ä?6·=2¬;-¥;+ =*œ=+—<)–;(’:&“8%Œ:%€9'€8)‰5*<5¿QP×eeÑ^a·MM¬NL¤TMYP˜\Q—^S—^S˜_VŒfQ`_/Sg*^r3zO™¯n¥¾|™²pˆ bj‚HauBTe;JX7FP7?H59?158-:^tEgƒHqMp”Ln’Hk”Hk“Lh‘Km‘Qn’Tm”Sm”Qk“Lk”Hl—Hm˜HpJpJp Ls¢Qu¦Tx©Xx©Xx¨^n˜YdSZƒI]TE]TE]TE]TE]TE]TE]TE]TE[RC\SD]TE^UF_VG`WHaXIaXGe]Je]Hd[Jd[Le[Qf[Uh]Yh][i]]j^^k__k__i^\f[YbWS_VQZVMWTKUQHRNCQMBSOCWQCXRB^WG^WEaYFc[Fg\Hi^Hk`JiaLe`MqeU{^PˆXN¢[U¯XQ±JE¶G@¶A7·?1¶0¶>.­:(£2 £3ª:&³>,¹>.Ä?0Ä8+Å2(È4*Ð<0ØF9ÜM?áNDØ;6×53Ò30Ó52Ø:7Þ?<ã><è<<ì9<í6:ê37ç36æ68ã99à<:Ù@:Á7-¸8+³5'¯4%¯4%²7(¶;+»=.ÈD5ÍC6ÕB8Ù?7ß:4å84ê65î79ê69é69é69ç77ç77æ95å95å:3ã:3ä;4ä;6ã<6ã;8â:9á99Þ88Ý9:Ü<<Ú@>ÓB=È?9¹:1­7+¥7(¡;,<+™<+”;)“:(9&7%Š9&z6#y6%ˆ9, F=¹SOÀWT¸PO«IF¢MHœSL™YP—^S—aW—aW˜_V‹ePsrFzV“¦n¤¹€«À‡ž³{|[[oaXIaXIaXIaXIaXIaXIaXIaXI_VG`WH`WHaXIbYJcZKd[Ld[Je]Hf^Gf^Ig_Lg^Of\Pf\Rf\Sh]Wh]Wh]Wh^Ug]Te[QdZPc[N]YMZVJVRFRNBPL@PM>TN@UO?WQAYTA[VC]XDaZGd]Jf_LfaMgaQocUw[OŠ[Q©b\¶[X´GD·=:Á=8Ã<6Ã:0Á9-½8)½9*Á=.Ê>/Õ9-Ù7,Ú8-Ù9-Ú8-Ø8,Ø8,Õ7+Õ7+Ô8+Ô8+Ô8+Ô8+Ô8+Ò9+Í;,Á?1¶>.¬9'¢3 3¢8"¬=)µ@.¼?-¿:+Ã7*Å5*Ë7+Î:.Î?ë=>ë8<ë48è16å25ä68à87Ù75Ì71¹3(±6'¯5&®6&®6&°8(³:)µ:*ÃA1ÊB4ÒB7Ù@8ß<5ã:5ê86ì87í68ë78ë78ê86ê86è94ç:4æ;4â92á:2ß:4à;7Þ:8Ü:8Û97Ù99Ö<:Õ@<ÒC=ÊA;»;2¯6+¤6'ž7(œ;*˜;)”;)’;(:&8$Œ7#‡9%€=*v5#5'™E:ªPH¬MG©LG¦QLPJ˜UL”ZO”^R•aV•aV—aWgT‰…_™©x­½Ž¦¸ˆ¡ts†YN`8/A->3B%:F.=F3;A3:=2:=4<=599-?@2<>39<1<@29B/?L2PbNK:NK:NK:PMTQ@VS@XWC[ZF]\H_\Kc`Qi]QpUJ†[R¬ic½d`¿OMÅCCÍ==Ò:9Ñ94Ë80Â8+»<)¸A+¾A+Ð:+×7)Ø8*×:+Ù9+Ö9*Ö9*Ô8)Ô8)Ô8)Ô8)Ò9)Ò9)Ò9)Ò9)Í;,Á?1¶>0«:(¡6"š4›7 £=&¯B-³;*º;,Â:,Ç9-Ë8.Î:0Ð<0Ø;4è:<ê5<ä39â38ß58ß58á48á35é6<è59ç4:æ8:â9<Ú86Î31¿0(µ5(®9(®9(­:(­:(­:(­8&¯7&¸:+Á;/Í?3×@7Ý>8á<8ç:6ë97í76î66î66í74ê84è:3ç:3ä<3á:2ß;2ß<5Ü=7Û=:Ù><×=;Ô>=Ï@<ËB<ÅB:¹=5­7-£5(ž7(š:*–;)“<)‘;*:(Š9&‰8%ˆ7$ƒ8%ƒ@-u4"{3%“G:¤QI¡NFžNG¡WN˜UL’XLZN\N]R”`U—aWhW‰f˜¥z©€Žj]kHDS42@&$2-:&0;*5=.9?3?1;=28;0;?18A.>K1PbÛ97Ò80È:.½>+²B*·@(Ì;*Ô7(Õ8)Õ9*Ö9*Õ9*Õ9*Ô8)Ô8)Ò9)Ò9)Ò9)Ò9)Ò9)Ò9)Í;,Á?1µ=/«<)¢9$™6•5›;"§A*²B.¹@/¿;,Ã7*Å2(Ë4+Ò;0ß=8é6:í4<ê7=è9>å;>ä;>á;=à:<ß58à7:â9>à=>Ù=>Ï:6Â3/µ0'±9+¬=*¬=*«>*ª=)©<(©:'«8%¯6%·8)Å;0Î>3Ö=5Þ<7ã;8è;7ì87ï75ï75î85ë:4é;4ç<4ä=4â>5à?7ÞA:ÚA;ÙA>ÕA?Ñ@=ÍB?Ã?:»@8³=3ª8-¡5(›5'˜8(•<*‘<(<)Š<(ˆ:&†9'„7%ƒ6$6%}:)t3!~9*—OA£YNœRG•OE˜VJ•YN[MŽZMŒ[MŽ\Q“_T™`W‘gW~xXyƒ^r|ZU`B;E,/;%0;*0<.3=24<16<2?1:<17:/:>07@-=J0Oa;bxIk‡Lu”Qu™Qt˜NqšNršSpšRršQsœPr›Op™Kn™Jp›LsžOv¡Ry¥X{§Zz¨]x¦]qŸWg”O]ŠEX‚B_†MW~GRyBg^Og^Og^Og^Og^Og^Og^Og^Og^Og^Og^Oh_Ph_Ph_Ph_Pi`OjaPjbOjbOjbOi`Oi`OiaNiaNiaNh`Kh`Kh`Ih`IhaGhaGhaGf_Le^Kb[I\WDWR?PM:LI8IH6IH6GH6GJ9GK:HL;IM-·@*´<$É:)Ó7(Ô8)Ó:*Õ9*Ó:*Ó:*Ó:*Ò9)Ñ:)Ñ:)Ñ:)Ñ:)Ñ:)Ñ:)Í;,Á=0µ=/¬=,£<)˜8 4•9 ¡A)­C-¶A/¿=/À6+Â/%Ç0'Ð6.Þ:8è59î6>ì;Aé@CåBEàBCÜ@AÙ??Ì22Ï76Ó:<Ï>;Ç<9½81´5.«5)ª<-§>+§>+¦?,¥>+¦=(¦;'©:'ª7%±8'¼8+Ã9.Ë80Ó:4Ü=9ä?;é:7ì95ì95ë:4é;4è;4å=4â>4àB7ÝC9ÚC<ÕB;ÏA=Ê?<Ç=;¿>9±<3©:/¢8+œ6(˜7'”8)‘:):(‹=)‰<*‡<)ƒ:'‚9(€7&6%}6$x3#x5%…B2˜UEWK”PCPD•ZL“YMZN\Q\Q’[T•\U˜[VŽbUkbEV`=JS4=G,6?*2=,4>35?66=68?8=B;CF=EG/;9*78*=>0:<17:/:>06?,=J0N`:awHk‡Lu”Qu™Qt˜Nr›OršSpšPq›OrNqœMp›LošKrNu¡Ty¥X«`~©az¥]qœUf‘L_‰G]‡E^ˆIaˆOY€IRyBh_Ph_Ph_Ph_Ph_Ph_Ph_Ph_Pg^Oh_Ph_Ph_Ph_Ph_Pi`Qi`QmdUlcTjaRi`Qh_Pg^Og^Mh`MiaNiaLiaLiaLh`Ih`IhaGh`IgaKf_Le^Kb[H\WDUR?PMTPDUOAYLÀ[S×SOÞFEß;:Ü75Õ;3Ì=/½<)¸7"Ë:)Ï8'Ð9(Ò;*Ò;*Ò;*Ò;*Ò;*Ñ:)Ñ:)Ñ:)Ñ:)Ñ:)Ñ:)Ñ:)Í;,Á;0¶:.­<,§>+™9#3“7Ÿ?'£9#°;)À>0Æ<1Ì8.Ð7/Ù<5ã?=ì=Bî?DéCEâDCÖ@?Ê;7À50»1.·0,»61¾:6»<6³:2©9.¤8, :+¡=-Ÿ>+ ?,¡@-¡@-£@+£>*¤=*©;*­:(²7(¸6)¿5+É90Ô?9àC>å<7è;5è;5ç<4å<5ä=4á>5Þ@5ÜD9ØD:ÒC;ÊA9Ä?:¼;6¸85°93¢7-™8(•5'“6'‘:)<*‹:)…8&ˆ=*…<+ƒ<*€<)~:'|8%{6&{6&y1#€8*ŒG8–SC’PB‹L=RE™_S‘WL’YN”[R–]T–]V—\V–YTŒ^QaX;EM(6@8A&>G26BE*;:&78(=>09;069.:>06?,+š?,›@-œA,žB-¡@-¢;*¥:(«7(°6)¶6+¾8-Å:3Ì<4Ú=6à=6â?8âA7âA9ÞB6Ú@6×@5ØH=ÒE;ÇA8»;2²5/ª3-¦1*Ÿ2+™9-’;*‘9+:*‹:)ˆ;)‡;+…<+€9'}8(|9(|9(|9({8'y6&x3$w- ‹A4—OC“MAŽL@‘QE“UJŽRG˜\R˜\R‘UMTL—ZU•XS”WT“gZ]T5IQ*AK(BK,>H/7@+2=-4?14<1HPCZ^PW[JMO:DF.AA'==%:;)>?1;=2:=2;?14=*;H.PbF7>F7=E6BF8AC5@E1HL5MI0RA'|R:¹ubÉdXÝ`ZêVTæHGâ@>â@=Û>9Ñ80Í9+Î=,Ï=.Ï>-Ï;-Î;+Í9+Í:*Î:,Ð:+Ð:,Ð:+Ð:,Ð:+Ð:,Í;.É?5ÅB:¼B7®=/Ÿ6#–1–1›2¨5#´6(Ã;/ÑA8ÞE?æIDéJFêKHàBAÛEDÐB>¾;3¯9/«=0¥?1Ÿ=0Ÿ?1œ>2—>0•=/=/‹>.‡@.ˆ?,Ž=*<*’<+‘>,”?+”?+–?,™>,Ÿ@.¡=-¤:,¨8,­7+²8-¸90½8/Ê<2Ð<2Ó?5ÕA7×C9ÖC9ÔD9ÑE8ÊB6ÃA4¹=3°:0©6/¤5.Ÿ4,™7,’:.Œ=,Š;,ˆ;+†:*„;*ƒ<*<,~;*|;){9)y:)x9(w8'u6'w4$€4'D7˜NC‘K?ŒJ>QD’TIRG“SJ˜XO˜UO—VPœ]X”WRŽSOŠcT]W5Xc9_jBZfBIT66C)4@*0:<19<1<@25>+;H.PbMKD6=C5>E5:>-BG1IK3E?%T@'„\Cµt`³WJÖdZïebìTSæFHëGHèBDÛ96Ë7+É:*É:,É:*Ë9,Ê8)È6)È6'Ê8+Ë7)Ë7+Ë7)Ë7+Ì8*Ì8,Ë8.Â3-¾5/¶6-­3(¡0"ž/ 1 §3$¼A2ÇC7ÖG?áLFçLGéJFåFBßD@ØBAÑCAÃ?:±;1¦3Å?3ÅA4ÃA3ÁA4¶;,²:,ª8-£7+ž6+›6,˜7.”:/;/ˆ<,‡;-„;,‚:+€;+€;+<,};+z;*z;,w9*v8)u7(t6)v4&ˆ;1”F<–NBŽJ=ˆHEI0?C(=@#:<$89';<.8:/9<1=A36?,MKB3?F44Ñ>4Ò>4Ò>4Ó?5Ó?5Ó?5Ó>7Ó?;ÑB>ËD>ÆF=ÂF<ÃI>ÇM@ÎPDÙSHÝPGâMGäIEäGBâC?àA=ÜA=ÖEBÊC?½>7­;0¡=.›B0—F3”I6ŽE4ŒE3ŠB3…B1‚@0}@.{@.|?-€;,ƒ9,ƒ:+„;,„;,…<-‡;+ˆ;+‰:+Œ9)7)“7*–8,œ:/ ;/£;0ª:/­8.¯9/°:.°:.°:,¯9+®8*¨7)¥7(ž6)›6*•7+’8-‘9/Ž<0ˆ<.…<-ƒ;,9*:*~9*}:*};+|:,z;,y;,w9*s8*q6(r7)u5)ŒD8’H=‘K?ŠH:‡I<‹OD“TK—TL–QL›TP˜QO”SO–\X_Xh^—~j””p…’fu‚WYh?CR+?O*P`B)=A(;='78(:;-79.9<1=A37@-NK+e>-”ZLª`S™?4›4+³@9ÖYUñjgõeeëRUèINéMPÙIAÓF<Í@6Ë>4Î@6ÒD:ÕG=×G>ÚJAÚJAÝJBÝJBÞKCÞKCàKDàKEëSRèTTãSRÜROØSLØSLÛULàUNàLHáIFãEBâC@äB@âC@äEBàFDÚIFËD@¼=7®<2£>2™B1“D3’G4D3ŠB3‰A3„?0‚>1€>0}>/}>/;.€:.€:.€:.€=-<-<-ƒ;-‚9*„8*†8+Š8*Œ9+:-’:.”:/›;/ž9-Ÿ9- :,¡9,¢8+¢8*¢8*Ÿ8)œ8)˜8(”8)9*Œ:,‰:-‡;-„:-‚:,9+€8*}8)}7+|8+{9+z8,y9-x:-v8+q5*o5)q7+t9+ŒH;I<‰I=„I;…K?ŒRF“WM˜XO˜QMœUQ˜RP“VQ’`YˆbWƒg[†zdnrQZi@JY0AR(IZ0Wi?dvNj|VXiEL[:?L.:D)C-B47@-;H.L^8_uFi…Jt“Pt˜Pt˜Nr›Os›TpœQnMmžLp¡Pw¨Y|ªaz¨`rXi“QZƒA\„EaˆIeŒMgŽMgŽKhJfŠLc†PY{IRtBi`Qi`Qi`Qi`Qi`Qi`Qi`Qi`QkbSkbSkbSkbSkbSkbSkbSkaUlbYlbYlbYlbVlbVlcRlcRldQldQldQlcRlcTlbVlbXlbXlbXocUnbRkbQlcRlcRkbQg`Pd]M^WGYSCSM?MJ;KH9GE6EB3@A/=G.BF-QB-b=-E:©YR²OJ›.+¯<9¸>;ÐTRòpnþvvódhíX^ò]_ãUQÚPFÔG@ÐC:ÑD=ÔG>ÖGAÖG?ÙHCÚJBÜHDÝJCÞJFÞKDàKGàKGâHHáGIÜHHÙGGÖHD×HDØGBÛFBàBAäABæBAèBBçCBäB@ßA>ÛA?ÝIGÍB?¼;6¯=3¥?3™@0’A0C3Œ@2‰@1ˆ>1†<1„<0;1;1€<1€<1=1<3=1=1=/=1=/€.™9)–9(“:*:+Š;,‡;+„;,‚:+‚:,9+7)~6({5){5){5)z6)x6*x8,w9,s8*p4)o5)r:-v<0‹M@‰K<„J<‚M=…QC‹VH’XM—WN“NI™TO—VR•\Ue\{^PfVF`^GEO->N)?O(J\2_rEk~QexKXj@M_7@Q-6E&7D*=F1=D4:>07;-8:,:;-68-8;0>B47@-9F,I[5[qBeFr‘Ns—Os—Mr›Os›TpœQmœLo Os¤Ux¨\z¨`s [i“Q`ŠHYB^†GeŒMgŽMfJeGgŒGhŒLa„NXzHQsAi`Qi`Qi`Qi`Qi`Qi`Qi`Qi`QkbSkbSkbSkbSkbSkbSkbSkbSlbXlbVlbVlcRlcRldOldOldMldMldMldOldQlcRlcTlbVlbVocUmaSkbSlcTmdUlcTi`Qf_Ob[K^WGXQARLÐB>Í@9ÒC?ÒC=ÔC@ÕD?×CAØD@ÙECÚDCÝADÝADÞDFÝGHßIHàJIãIIåGHçACêADìBEìBEçAAâ@>Û=:Ö<:ÛEFÌ<<¼63±:2©>4›=1“=0‘?1‹G]/AV-7H$1@!6B*=F5PK8MH5ID1EC.AE*GC(\A,‰SG¯\X©?A©13ËJNÃ@E½=>¹;<ÃGGØZ[åefÝX[ÍGHÑJGÏEBÍB?ÎC>ÒGBÒGBÎC>É>7ÏD=ÑD=ÒD@ÔEAÖEBÙECÜCEÞDFÞ?Cß@DÞBEßEEáGGàFFàBCá>?èBDê@Cè>Aç=>ä>>ä@?âC@ßEC×ABÈ88¸40±:4©>6›=3’)=C5$bI3‘gW¶xm»le·YW¹OO¶BE½BEÂDGÈFHÍHKÐJKÓKMÓKMÍEEÍEEÐFDÓHEÔFBÏD=ÎC<ÏF<ÈD8ÉE9ËE<ÏD?ÔC@ØBCÞ?DÞ=CáBFßCDßCDàDEàDEáFDáFDãEDãCCäB@ä@?ã?>ã?>ã?=ã?=àB?ÓB?Å>:¸93ª70 90—=2Ž>3†>2ƒ?2?3=2;3„93‡83ˆ81ˆ92…;0„<.„<.<-;/€:.€:.€:.~:-~:-~:-~:-~:/~:/~:/~:/}90}90~80~8.€7.€7.€7.~8,€8,~8,}9,|8-{9-z8,x8,x8,x8.x8.w7-v8-v6,t6+s5*q5+m1'r6,n4)m3(o6+m4)q8-I=…SH…SJ†RGˆRH‹PHQJ”QK•RL“TMTK‰[N‚cQo_HYU:MV7O_;j~YbxQYoHUjCRg@Mb;IY5CR17D&4>#2:#6;'<>0@B5@@6<>358-39-4:.7:/9=/;?.=B,%Q?)kP=XG„NBˆE=“D?±WV¸TT»QQÀPOÀNMÁMMÂLJÂLJÍUTÅIGÀ>>Ã=:ÍC@ÑFAÍB;Ç>4ÊD9ÊD9ÌF=ÐE>ÖEBÛBDß@Eà?EßCFßCDßCDßEEàECàFDáFDáFDàEAáC@àB?àA>â@=â@=â@=àB?ÕD?ÈC<º>6¬:0 90”:/Š<0‚<0€A2~@3~>4<3ƒ:3†91ˆ81‰90‡;.…<-„;,„;,ƒ;-‚:,‚:,‚:,9-9-9-9-~:/~:/~:/~:/}90}90}90}90}90}90|90|90|90z:0z:0y9/y9/y9/w9.w9.w8/w8/t8.s7-r6,r6,p6+p6+k1&q7,m4)l3(o6+l3(p7,~H>„RI…SLˆQJ‹PJQL”PM•QN”SOŠOG…SH€[K{ePsiPhkLfqQgxT^tMXnGPf?La:K_:K\:GV7CP4>2;=04:03;05;16<0:A,>D*Q[9^mDkRpŒRp“Sq™RsSsžVxŸ^|¢exžak‘T`†I]ƒF]ƒF\‚E`†Ia‡Jc‰Le‹NdŠMbˆK`†I^„I]LRtBIk9i`Qi`Qi`QjaRjaRkbSkbSkbSjaRjaRjaRjaRjaRjaRjaRjaRkbSkbSkbSkbSkbSkbSkbSkbSlcTlcTlcTlcTlcTlcTlcTnbTqdTo_Pm]Pm_RqeYog\ldYhbVfbWpl`{xi~{jyizubpiVe`JTT(MB.S@/U8(]7*l=3n70u91~;5‡@:’IB›PJ¥XP«[R¹^Y·TNµHEºC?ÆDBÎGCÒD@Ï@:ÐA;ÑB<ÓD>ÕF@×FCÛEFÞDFÞDFÞDDÞDDÞDDÝEDßEEÞFEßECßECÞDBÞDBÝD?ÜC>ÝB=ÝB=ÝB=ÜC>ÖE@ÎE?ÃB<³>5¢:1”8-ˆ9,ƒ;-‚@2@1~>2=1ƒ:1†91‡81ˆ:0‡;.„;,„;,„;,‚:,‚:,€:.€:.9-9-~:/~:/~:/~:/~:/~:/}90}90}90}90|90{8/{8/{8/{;1{;1z:0y;0x:/x:/x:/x:/t8.t8.s7-s7-r6,q5+o5*o5*j1&o6+m4)k2'l6*i3'm7+}G=‡PI‡PI‹PJŽQL‘RM’SN”UP‘VPŒWO‡[P~^OtbNoiQorUlwYfwUQeBK_:EY6DU3EV6GV9GT8ER8?I0*7;*:<.<>0;=/9;.6<25=26<26<0:0=@-=C)MW5Zi@f|MlˆNn‘Qq™RuŸUtŸWz¡`w`n”Wc‰L\‚E\‚E\‚EZ€C_…Ha‡JbˆKdŠMc‰La‡J_…H]ƒH[}JPqBFg8i`Qi`Qi`QjaRjaRkbSkbSkbSjaRjaRjaRjaRjaRjaRjaRjaRkbSkbSkbSkbSkbSkbSkbSkbSlcTlcTlcTlcTlcTlcTlcTnbTrdWoaTm_Rk_SkaWlcZle[jf]jf]xtiˆ„x‘•’Œ~‰‚r}zg`cNOT>DG2FE1HC0F=,L<,VC4P9+R6*V4*Y5)\6+a9/e=1m=1ˆLBSJ­VOµOK¼FDÄBBÐDCØFFÔ@>ÕA?ÖB>ØD@ÙECÛEDÛEDÝEDÞDDÝEDÝEDÝEDÝEDÝEDÝEBÜGCÛFBÚEAÙD>ÙD>ÚC<ÚC<ÛD=ÙD>ÖC<ÓF?ÉF>ºA8§;1˜8,Œ9+…<-ƒ@0@1~?0=/ƒ:1„:/‡9/ˆ:.„:-„;,„;,ƒ:+‚:,‚:,9-9-9-9-~:/~:/~:/~:/~:/~:/}90|90}90{8/{8/{8/{8/x8.{;1y;0y;0y;0x:/x:/x:/v:/s7-s7-s7-r6,q5+o5*o5*m4)j1&o6+l3(h2&k5)h2&l6*|F<ŠOGŒOJPKRMSN‘VPWPŒZQ‰]R…aUy_PiZGd_IdhO\fKN]@EU8AQ4=M0G2:A/9=,9=.9=.8<-7;-7=36=56;46<2:<1;=/bxIj†Ln‘Qs›Tw¡Wx¢Z{¢ar˜[e‹N\‚EZ€C\‚E\‚EZ€C_…H`†Ia‡JbˆKa‡J`†I^„G]ƒJZ|JNo@Ef7haQhaQhaQibRibRjcSjcSjcSibRibRibRibRibRibRibRibRkbSkbSkbSkbSkbSkbSkbSkbSlcTlcTlcTlcTlcTlcTlcTlcTrfXth\sg[mcYjaXle]snhzwp~w† ”¨¥œ«§œ¨¤™£‘™–‡z{kcfSOR?GJ7EH5BE2BE2EH5KL0A9,A7+@6*F4(U5*qB8ŽOH OK¯IG¿GIÌEIÓBEÕ@B×ABØBAÙCBÚEAÚEAÚEAÚEAÝEDÝDFÝDFÛEFÛEDÛEDÛEDÙECÚFBÙEAÖF>ÕE=ÕE=ÕE=ÕE=ÖF>ÔA:ÓC;ÎE=ÁB9®>3ž9-‘;.Š.€=-;/„:-†:-‡;.„:-ƒ;-‚:,‚:,‚:,9+9-9-~:/~:/~:/~:/}:1}:1}:1}:1|91z:1|91y90y90x8/x8/v7.y:1y:1x90v:0v:0u9/u9/t:/r7/q6.q6.p5-o4,n3+n3+m4+j1(m7-j4*h2(j4*f2'j6+}D;NGNHQJTLUOŽWPŠYRƒ[Q{YMv\OkZJ]UBYXDY^HOYA?K3:H/7E.4B+5A+8D.=I3CL7EN9BK6?H5.5<,4:,5<45<56;56;49;0:-;@)GP1Ra:`vGi…Ko’RuVy£Yy£[xŸ`n‘W`ƒIZ}C[~D^G^G]€F`ƒIa„Jb…Kb…Ka„J`ƒI_‚H^IW|ILpBBf8haQhaQhaQibRibRjcSjcSjcSibRibRibRibRibRibRibRibRkbSkbSkbSkbSkbSkbSkbSkbSlcTlcTlcTlcTlcTlcTlcTlcTkaUndZpf\lcZkd\rmg„|‘Œ§£ µ±®ÄÁ¼ÉÆÁÉľÅÀºÀ¹±¹²¨¤œˆ‚rfcTPQ?FI8>E3;D1:F28E38E38C2:B3/‚?/>.€=-<-ƒ;-„:-…;.‚:,‚:,‚:,‚:,9+:+9-~8,~:/~:/~:/~:/}:1}:1}:1}:1z:1z:1y90y90x8/v7.v7.t8.w8/u9/u9/s9.t8.s9.r8-r8-q6.q6.p5-o4,n3+m4+l3*j4*h2(l6,i3)f2'h4)e1&i5*{B9ŽMG’MH‘PJTLVO‡XNYO|\Qs\Nk[L`WFVSBPSBJQ?@I64@,3<+2;*09(09(2;*5>-9B1G4:F2:C25@/3>-1<,3:33954954928919;.;>-;@*CL/O^7]sDi„Mp“SwŸYy£Yw¡Yq˜Yf‰OZ}CX{A\E]€F]€F^G`ƒI`ƒI`ƒI`ƒI`ƒI_‚H^G]€JUyIJn@Ae9haQhaQhaQibRibRjcSjcSjcSibRibRibRibRibRibRibRibRkbSkbSkbSkbSkbSkbSkbSkbSlcTlcTlcTlcTlcTlcTlcTlbVj`VjaXkdZkg^upjˆ…€Ÿžš°°®ÃÂÀÓÒÐâáßçæäçãàãÞÚÞÖÓÙÎÈμ²¸¥——‡zym]_YIKL:@E1;D/>J6=H7=F5;C4;>5:;3983:70?<3E;2Q51c74‰GH±\_Ç`dÊWZÍQSÑOOÕNKØMJÛJGÝHDàEAßDBÞDDÝDFÝDFÜCEÜCEÛBDÛCBÙCBÚDCØD@ÕD?ÔE?ÓD<ÒE<ÓF=ÔE=Ù@:Ù@:ÑB:ÈC:¼C:¬@4™;/Œ9+‰=/ƒ>.>-€=,<,ƒ;,ƒ;,„<-‚:,‚:,‚:,9+9-9-~8.}9.~:/~:/}:1}:1}:1}:1}:1}:1z:1y:1x90x90w8/t8.s7-r8-t8.s9.r8-q8-r8-p7,p7,p7,o6-o6-n5,n5,m4+l3*k2)i3)g1'k7,h4)e1&h4)b0%f4)zA8MG’MH‘PJŽULˆXNYOxZOr\Nk^N^WGRPAKN=CJ:9B12:+08)17+17-06,/5+/5)08+2:+4<-9D4;F5=H7-.800621622717829;0:<.:?)?H+KY5[qChƒLq“Vwž[w¡YsœVgP^IUx@WzB[~F[~F[~F]€H_‚J_‚J_‚J_‚J^I^I]€H]€JUvIJk@@`7haQhaQhaQibRibRjcSjcSjcSibRibRibRibRibRibRibRibRkbSkbSkbSkbSkbSkbSkbSkbSlcTlcTlcTlcTlcTlcTlcTlbVpg^ng_lgatqj‡„¡ œ¼¼ºÎÐÏÏÏÏàààòòòúøùû÷ö÷óðñìéðâßèÐÆÝÁµÁ«¢‘}ub^\GKM7CH2AI2AI4@G5BD7AA7B=9C97A96;:5B=7G51L-+f66‘QRµfiÇmmÀ\\ÇZWÎWSÓTNØNKÞJHáFDâDCÝDFÛEFÛEFÜCEÜCEÛBDÛCBÛCBÜDCÙCB×C?ÔC>ÔC>ÓD<ÒE<ÕE=ÝB=ÛA9ÒB:ÊD;¿E:°A6œ:-‹5&ŠD69A208+/7*6<247058157247025.06,08-19,6A3:E5=J9>K9-,6..400511606718:/:<.:?+WzB[~FY|DY|D\G_‚J_‚J^I^I^I]€H]€H]LStIHhA?]7icSicSicSicSicSicSicSicSicSicSicSicSicSicSicSjcSkbSkbSkbSlcTlcTmdUmdUmdUmdUmdUmdUmdUmdUmdUmdUldWibZgd]vsn“’ޝ¯­ÄÆÅÚÜÛêîïóôöö÷ùüüþÿÿÿÿÿýÿûúü÷ôýòì÷áÔòØÇàʵƶŸª ‡ˆ„ibbFEH-DH/CG0FE1GD5F<3C60F42I99A<9B=:F87K65eEF“ijÆ“’鬩ӌˆÇwp¿`ZÃVQÒROÛMLáGIáEHÜFGÜJKÙDFÒ<>×>@áHJáGIØ>@Ú@@Ú@@ÙA@×B>×B>Ô@<Ñ@;Ó@9ÞC>ÛA9Ó@9ÊA9¾B8°@5Ÿ:.8*Œ=0‡>/ƒ>.>-€=,<+=*<,:+9-9-~8,~8.|8-|8-|8-|90|90|90|90z:1z:1z:1z:1y=5w<4w;3u:2t91q8/p7.p7.o6-m7-m7-l8-m7-l8-m7-m7-i2+m6/p92o81k4-g2*g2*h3+e0(i7.d2)]-#`0&_/%b2(s>6ŒOJPKˆQJRJ}YMv_QfYITN>DE5>E5:C25@04&DR1WlCh‚Rs”]wž_r›Wk”R[~DXyDTu@Tu@WxCZ{F[|GZ{F^JbƒNbƒN^J\}H_€K`L^~MSqKFdB=X7icSicSicSicSicSicSicSicSicSicSicSicSicSicSicSicSkbSkbSkbSlcTlcTmdUmdUmdUmdUmdUmdUmdUmdUmdUmdUldYgd]onj†…ƒ¤¤¢ÁÃÂÖÚÛêîï÷ûü÷ûþøüÿüýÿþþþÿÿýÿþúÿüùÿúóÿðàûëÔíßÅ×ͲÀ»¤£„‚ƒcgjKLQ3GJ/EC.GB/H>2I:3L95K<9B87G>?QEE`PP|hg¦Œ‹Ï²®èÅ¿ÿÕÏ걨Ƀ{¼c]ÇWUÕSSÛJMØCEÕGFÒFE×IHÛKKÚFFÔ>?Ö=?ÝCEÙ??Ù??Ú@@Ú@@ÙA>ÖA=Ô@<Ô?9ÜA<Û@;Ó@9ËB:¿C;±A6 ;1’8-Œ=0‡>/ƒ>.>-€=,<+<,<,:+9-9-~8,}9.|8-|8-|8-|90|90|90|90z:1{;2{;2z;2w<4u<3u:2s:1r90n8.o6-m7-m7-l8-l8-l8-l8-j8-l8-l8-k6.n70o81n91l7/i4,g2*e3*c1(d4*_/%^.$b2(^.$`0&p>5JE‡RL‡XR~XOrVKdRDQJ:>?/:A16A05@03>04<14<15;17:379477577557246116//6./7,.9+1<.4A08E49H58G44E24B1.8/.5..3--2+23+46+8:-9=,7?(DQ3WlEh‚Ut•`wbp˜YgPY|DWxCTu@Tu@VwBYzEYzEYzE[|G_€K_€K\}H[|G^J^J^{MRmJF_B;T7icSicSicSicSicSicSicSicSicSicSicSicSicSicSicSicSkbSkbSkbSlcTlcTmdUmdUmdUmdUmdUmdUmdUmdUneVneVlfZed_y{x—™˜²¶·ÍÑÒäéìôùüúÿÿûÿÿüÿÿýþÿþþþÿþüÿÿûÿÿúÿÿôþüçúùÝïðÑáåÄÒØ´¼ÄŸ ¨ƒ‡‘l`gEQX7DG,DC.JD4LD7KA8I>:D:9TJKk__‚vv’À²¯ÛÎÈêÜÓøäÙÿðåÿàÖê§Ÿ¾ea±CDÆHKÛVYØXUÏOLÊFBÌEBÒFEÖFFØDDÙCDÖ=?Ø>@Ù??Ù??ÙA@Ö@?ÕA=Õ@:Ù@:Ù@:ÒB:ËE<ÀD<²B7¡<2“9.Ž<0‰=0ƒ>/>.=-~<,€=-€=-9-9-~:/}9.}9.|8-{8/{8/}:1}:1{;2{;2{;2{;2z;4x<4t;2q;1r90o9/n8.l8-l6,k7,l8-j8-j8-j8-j8-i9-j8-j8-n91m80m80m80m80i7.f4+c1(d2)a1']-#_0&c4*\-#_0&sD<}PJVP~YQpTI^J?OC7?<-46(2;*0;+1<.2=/4<14<15;17:379479668357257227007/08-.9+0;-2?.6C27E48G48G49F54>33:2/4-,2(/0(13(57*6:)6>'DQ5YmJk„Zw—fwœfl“Z_‡KWxCWuCTr@Tr@VtBXvDYwEYwEZxF]{I_}K]{I]{I_}K^|JZwKNeHAW@6L5icSicSicSicSicSicSicSicSicSicSicSicSicSicSicSicSjcSkbSkbSlcTlcTmdUmdUmdUmdUmdUmdUneVneVneVneVmg[jkfƒ‡ˆ£§¨¹¾ÁÐÕØåíïóûýõýÿûÿÿûÿÿüÿÿüþûýþùþýøÿþ÷ÿÿóøýæôýÞî÷ØæòÎÝéÃÎÚ´¶Á™¡«†€‡efmLMQ6FH0HJ5KI:HD9D@7PFDj`_‹€¤š™·¯¬ËÆÂßÚÔêæÝ÷îåÿùïÿöëÿ×Ïõ²¬ãŒÈdd°DBÂSLÈUNÇRIÃHAÇHBÓMJÕJGÏ?>Ò>>Ô>?Õ?>Ø@?Ö@?Ö@?ÕA=ÕA=Ö>9Õ@:ÒC=ÌE?ÀE>²A9¢=5•;2Ž<1‰=0ƒ>/>.=/~<,€=-€=-9-9-~:/}9.}9.|8-{8/{8/~;2~;2|<3{;2{;2{;2z;4x<4r90o9/o9/m9.l8-k7,j6+h6+i7,i7,i7,h8,h8,h8,h8,h8,m;2l7/j5-i7.j8/j8/f4+a1'e5+a2(].$a2(b3)Y* a2(yNE\VvWRiNGWC:I<3@:.:;-8<.08)/:*3;.4Ñ??Ò@@ÓB?ÓB?ÓB?ÓB=Ó?;ÒA<ÐE@ÉE@½C>¯@9 >5•=3Ž<1‰<2ƒ=1=0=1~<.=/=/~:/~:/~:/}9.|90{8/{8/{8/|<3|<3|<3{;2z;4y:3y:3w;3n70m80l7/l7/k6.h6-h6-h6-i7.h8.h8.g8.g8.g8.g8.h8.k92h6/f4-g5.i70h70e4-b1*c2+b3+_0(]1(]1(V*!b6-{ULtYRaNHN?8A7.=6,;9-9;.9<139-3;.5;/6<06<07:/58-47.69049238139/39/2:/19.19,.9+.9+/:,0;-3>.6C2:E5Qn>Qn>Qn>Qn>Qn>Sp@Sp@WtD[xH]zJ]zJ_|L_|LZwGRlEAR?6C9+8.gdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSicSjcSkbSkbSlcTlcTmdUmdUmdUmdUmdUneVneVofWpgXpgXng]lnmz‚…“š «µ·ÄÎÐÜæèí÷ùôþÿõþýöÿüúÿúûÿùûþóøúíõöèñôãôýêôýèôüåóùßòöÛéìÍØ×¹ÅÄ¥±°’ŽregOMP;GK:FM=GOBJRGz{sž›”þ¸×ÏÌÞÔÓæÜÛóëéü÷ôóðëþûôÿÿöÿûñÿóêÿíåÿâÚÿÒÇÔµdQ¢K:²UF¾XJ¶G<¶?7ÇJDÇC>ÊC?ÍB?ÐB@ÐB>ÐB>ÐB>ÐA=ÒA<ÒC?ÎDAÅD?¸A=ª=8ž;5•<4Ž;3‰<2ƒ=3=2=1~<0=1=/~:/~:/~:/}9.|90{8/{8/{8/|<3{;2{;2z:1y:3x92w81u91n70l7/l7/j8/i7.i7.h6-g7-g7-g7-f7-f7-f7-f7-f7-f7-h70h6/g5.g5.g6/h70g6/f5.a2*e6.^2)\0'`4+a5,i=4uSJXG@E>6<5/95,;8/8:/57,36+69.5;/7:/69.69.58-57,36+28,19,28.19,19.19,19,19,.9+.9+.9+/:,0;+3>.6A17B2ex\umt’lf‰_RwKBh9KkVsCZwG]zJ^{K_|L_|LVsCNfB;I80;3&/*gdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSgdSicSjcSkbSkbSlcTlcTmdUmdUmdUmdUmdUneVneVofWpgXqhYoh^hikmtz…Œ”£¬±¿ÈÍÓÞâåðòðüüòüûõþùøÿ÷úÿöüÿòúýìøùçö÷çööê÷÷ëú÷èüöæýõâ÷ìÖçØÃÕÆ¯À±šž“}un[ZWFPQCSVK[bZcmd’𰳍ÒÏÆæßÙòäãùëëÿñôÿøùÿýûÿûøùøó÷÷íûùíÿüðÿýñÿùêÿàË꨷oY¨WD®UE·RF¹MA¿JAÃG?ÆE?ÊE@ËD@ÍD>ÌC=ËB<ÌA<ÑC?ÐE@ÌEAÂC=³=9¦;5œ;5•<6Œ<3‡=4…<5=4<3~<0=1=1~:/~:/~:/}9.|90{8/{8/{8/{;2{;2y:3x92w81v70v70s7/n70j8/j8/j8/j8/h8.h8.h8.g7-f7-f7-f7-d8-d8-d8-f7-g6/h70i81i81h70i81j;3l=5g80k<4b6-a5,oC:xLCtI@nMDC9056.45/8918;247.14+25,58-58-57,46+46+46+46)37)/7(.9)08+.9).9+.9)08)08)19*08)08+/7*08+19,3;.4<-9B1:C0;B0:A1:<.68*24&/3$29'IU?cu[m„gf„bWyTInE?d8Hg;Li;Nk=Nk=Li;Li;Mj